# HG changeset patch # User bebatut # Date 1460724160 14400 # Node ID 72633301cc0df7970d1a927340b57b6ee309739c planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/normalize_dataset commit 21b25425f77162c0edae4dd87b3a9e33608c5a95-dirty diff -r 000000000000 -r 72633301cc0d normalize_dataset.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/normalize_dataset.py Fri Apr 15 08:42:40 2016 -0400 @@ -0,0 +1,75 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import sys +import os +import argparse +import re + +def isfloat(value): + try: + float(value) + return True + except ValueError: + return False + +def normalize_dataset(args): + with open(args.input_file, 'r') as input_file: + input_file_content = input_file.readlines() + if args.normalization == 'column': + column_number = len(input_file_content[0][:-1].split('\t')) + column_sum = [0] * column_number + + with open(args.output_file, 'w') as output_file: + for line in input_file_content: + split_line = line[:-1].split('\t') + + if args.normalization == 'row': + row_sum = 0 + + for col in split_line: + if isfloat(col): + row_sum += float(col) + + sep = '' + for col in split_line: + if isfloat(col): + if args.format == 'percentage': + output_file.write(sep + str(100*float(col)/row_sum)) + else: + output_file.write(sep + str(float(col)/row_sum)) + else: + output_file.write(sep + col) + sep = '\t' + output_file.write('\n') + + elif args.normalization == 'column': + for i in range(len(split_line)): + if isfloat(split_line[i]): + column_sum[i] += float(split_line[i]) + + if args.normalization == 'column': + for line in input_file_content: + split_line = line[:-1].split('\t') + sep = '' + for i in range(len(split_line)): + if isfloat(split_line[i]): + if args.format == 'percentage': + output_file.write(sep + str(100*float(split_line[i])/column_sum[i])) + else: + output_file.write(sep + str(float(split_line[i])/column_sum[i])) + else: + output_file.write(sep + split_line[i]) + sep = '\t' + output_file.write('\n') + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--input_file', required=True) + parser.add_argument('--output_file', required=True) + parser.add_argument('--normalization', required=True, + choices= ['column','row']) + parser.add_argument('--format', required=True, + choices= ['proportion','percentage']) + args = parser.parse_args() + normalize_dataset(args) \ No newline at end of file diff -r 000000000000 -r 72633301cc0d normalize_dataset.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/normalize_dataset.xml Fri Apr 15 08:42:40 2016 -0400 @@ -0,0 +1,73 @@ + + row or column sum to obtain proportion or percentage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -r 000000000000 -r 72633301cc0d test-data/input_file.tabular --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/input_file.tabular Fri Apr 15 08:42:40 2016 -0400 @@ -0,0 +1,44933 @@ +UniRef50_F0RML5 Peptidoglycan glycosyltransferase 0.000181399063257 0.023462188863 0.0232807897997 +UniRef50_D9SMK5 4Fe 4S ferredoxin iron sulfur binding domain containing protein 0.000974298729943 0.00104942971233 7.5130982387e-05 +UniRef50_UPI000289C850 glutamine synthetase 3.02071076987e-06 1.13251396637e-05 8.30442889383e-06 +UniRef50_UPI0003344A46 PREDICTED 2.92448096954e-06 1.23166316876e-05 9.39215071806e-06 +UniRef50_A5MZ45 CheA2 0.000168607563575 0.00156010359401 0.00139149603044 +UniRef50_Q2LVL0 Lipid A export ATP binding permease protein MsbA 1.24797999013e-05 2.11666856208e-05 8.6868857195e-06 +UniRef50_P31134 Putrescine transport ATP binding protein PotG 0.00276274252245 0.0013215449275 -0.00144119759495 +UniRef50_T1T0E7 0.000113062785186 0.00014719447673 3.4131691544e-05 +UniRef50_B1ES30 4.65083689682e-05 7.40274272935e-05 2.75190583253e-05 +UniRef50_U5FV07 6.97112841074e-06 1.69093447272e-05 9.93821631646e-06 +UniRef50_UPI00037AE754 hypothetical protein 4.96975012537e-05 7.77591897983e-05 2.80616885446e-05 +UniRef50_E3EZF3 3.7834529758e-05 5.98806720443e-05 2.20461422863e-05 +UniRef50_UPI00040F4463 MULTISPECIES 0.000347916254551 0.000538916925611 0.00019100067106 +UniRef50_A6TTD6 Xanthine phosphoribosyltransferase 3.29952916783e-05 8.400468316e-05 5.10093914817e-05 +UniRef50_UPI00047775E1 osmotically inducible protein C 3.20342739866e-05 0.000143696613898 0.000111662339911 +UniRef50_UPI00035F4F82 hypothetical protein 1.38179068894e-05 2.13437062856e-05 7.5257993962e-06 +UniRef50_V6QDM9 0.00879068711831 0.000649365504839 -0.00814132161347 +UniRef50_UPI000366B462 hypothetical protein 8.96520934309e-06 5.13157979404e-06 -3.83362954905e-06 +UniRef50_UPI0003A50DF1 hypothetical protein 1.78941032845e-05 2.0766777608e-05 2.8726743235e-06 +UniRef50_A7X4V0 ATP synthase subunit c 0.00200926083898 0.00378523004621 0.00177596920723 +UniRef50_A6M004 Signal transduction histidine kinase, nitrogen specific, NtrB 0.00056455066055 0.00112908749909 0.00056453683854 +UniRef50_Q6G4Z3 Ribosomal RNA large subunit methyltransferase E 9.91937485213e-05 4.15778712915e-05 -5.76158772298e-05 +UniRef50_UPI00031D9BC6 hypothetical protein 1.21726134302e-05 5.23901784827e-06 -6.93359558193e-06 +UniRef50_K6GJU3 Pyridoxal phosphate dependent protein 5.22036525674e-06 7.45619049448e-06 2.23582523774e-06 +UniRef50_UPI0004781473 ppGpp synthetase 7.9055593981e-06 6.36800227798e-06 -1.53755712012e-06 +UniRef50_A7MGX5 tRNA methyltransferase TrmJ 0.00212961214357 0.000294172368815 -0.00183543977476 +UniRef50_Q4JXU5 Aminomethyltransferase 2.61473105294e-05 2.98878317567e-05 3.7405212273e-06 +UniRef50_G3A3C4 2.43165574186e-05 5.52071853911e-05 3.08906279725e-05 +UniRef50_L7WPW4 Cation efflux family protein 0.0220787994494 0.00729898175619 -0.0147798176932 +UniRef50_Q4JXJ2 Cysteine tRNA ligase 1.46406253943e-05 1.21697869621e-05 -2.4708384322e-06 +UniRef50_C1KWN7 GTPase Der 0.0221045853772 0.0112808239108 -0.0108237614664 +UniRef50_UPI0002003BFB transcriptional regulator, partial 7.87344330917e-06 1.02617563671e-05 2.38831305793e-06 +UniRef50_A6M2Q1 M18 family aminopeptidase 0.000278330413639 0.00197325854824 0.0016949281346 +UniRef50_UPI00037CE245 hypothetical protein 1.19456994074e-05 2.06099674676e-05 8.6642680602e-06 +UniRef50_Q8CTD2 0.00400791961979 0.000845403015075 -0.00316251660472 +UniRef50_N6UZ26 0.000184609644252 0.000174056997165 -1.0552647087e-05 +UniRef50_Q8CTD8 0.00467178630856 0.00176140084145 -0.00291038546711 +UniRef50_Q213B4 Aspartate racemase 0.00420809284222 0.00254295130469 -0.00166514153753 +UniRef50_S9QQA7 pH adaptation potassium efflux system a 8.62911388131e-06 8.32021938689e-06 -3.0889449442e-07 +UniRef50_L8PMS9 Putative secreted protein 6.8034549289e-07 9.4093242251e-06 8.72897873221e-06 +UniRef50_P0AFQ9 0.00385881354037 0.000873804337357 -0.00298500920301 +UniRef50_UPI000366BC2B MULTISPECIES 1.19391317174e-05 1.78601929922e-05 5.9210612748e-06 +UniRef50_Q49VL4 0.00958062041709 0.00687547851727 -0.00270514189982 +UniRef50_Q9ZFS6 Exotoxin 3 0.0134071014543 0.00367840610916 -0.00972869534514 +UniRef50_Q49VL2 0.0115447480988 0.00587318414106 -0.00567156395774 +UniRef50_U4W1Q6 1.65509910814e-05 5.0345135915e-05 3.37941448336e-05 +UniRef50_A0A023Y807 4.47259288811e-06 5.34024471886e-06 8.6765183075e-07 +UniRef50_P39380 RNA 2 phosphotransferase 0.00405186331914 0.00047889195437 -0.00357297136477 +UniRef50_F6D690 Metallophosphoesterase 0.00269501196954 0.001183685322 -0.00151132664754 +UniRef50_UPI0002558482 multidrug transporter 5.69408882215e-06 2.10785393429e-05 1.53844505207e-05 +UniRef50_B0VT73 0.000185513842053 0.00318682804429 0.00300131420224 +UniRef50_Q28UP9 Periplasmic sensor signal transduction histidine kinase 0.00228296634791 0.000435691148858 -0.00184727519905 +UniRef50_UPI0003667138 hypothetical protein 5.59750229755e-06 0.000137249322398 0.0001316518201 +UniRef50_C6SR58 0.00229496650516 0.000905494784279 -0.00138947172088 +UniRef50_UPI000369C54D hypothetical protein 4.45569141727e-05 3.39343449794e-05 -1.06225691933e-05 +UniRef50_UPI00036B1698 hypothetical protein 1.29140086902e-05 0.000553364217023 0.000540450208333 +UniRef50_UPI00046E1459 hypothetical protein 5.28399444941e-05 0.00179693810088 0.00174409815639 +UniRef50_I1ZLT1 Thiamine biosynthesis protein ApbE, putative 0.0049240598846 0.00147292172806 -0.00345113815654 +UniRef50_UPI0003B2E5CE quinone oxidoreductase 6.72862514147e-06 1.0147057367e-05 3.41843222553e-06 +UniRef50_Q1IC36 3.85170594679e-05 3.0445887783e-05 -8.0711716849e-06 +UniRef50_Q8RE57 Methionine tRNA ligase 6.85189237575e-06 1.23893578974e-05 5.53746552165e-06 +UniRef50_UPI0003620A0A hypothetical protein 7.60915619622e-05 0.000165413928944 8.93223669818e-05 +UniRef50_J3K6Q4 6.28763007674e-05 4.67621584372e-05 -1.61141423302e-05 +UniRef50_W8RQ92 Membrane protein 0.000709208969743 0.000106038314257 -0.000603170655486 +UniRef50_V4SQT0 0.000118993701262 0.000401124822048 0.000282131120786 +UniRef50_UPI000367FC54 hypothetical protein 1.65609129421e-05 2.4728863878e-05 8.1679509359e-06 +UniRef50_Q3JR57 8.27798318848e-05 9.56233260128e-05 1.2843494128e-05 +UniRef50_Q6A6J6 UPF0336 protein PPA1896 0.00026583520342 0.0323661355571 0.0321003003537 +UniRef50_UPI0002F2D647 hypothetical protein 0.000234623756597 8.17062694021e-05 -0.000152917487195 +UniRef50_UPI000344933C ABC transporter permease 4.6646117135e-06 5.44448818935e-05 4.978027018e-05 +UniRef50_P55573 0.000310201548483 0.00524951017719 0.00493930862871 +UniRef50_P77306 Inner membrane protein YqiK 0.00352192733794 0.000678998696655 -0.00284292864129 +UniRef50_UPI0004659A64 hypothetical protein 1.24064365563e-05 6.73323112003e-06 -5.67320543627e-06 +UniRef50_A0R6E0 Trehalose synthase amylase TreS 0.000179009657205 0.0422492777565 0.0420702680993 +UniRef50_Q1IZH7 Protein translocase subunit SecA 4.53164452374e-05 0.0375674284729 0.0375221120277 +UniRef50_P77806 Methionine aminotransferase 0.00129444171825 0.000166052228432 -0.00112838948982 +UniRef50_Q8CSN4 0.0139370888828 0.0040446271353 -0.0098924617475 +UniRef50_R7PW99 0.001769843077 0.000279479531722 -0.00149036354528 +UniRef50_B0SVK0 5.16114447607e-05 8.32823298463e-05 3.16708850856e-05 +UniRef50_UPI00047131A0 hypothetical protein, partial 6.18569422725e-05 4.1457876436e-05 -2.03990658365e-05 +UniRef50_W5ZFT8 Oxidoreductase, putative 0.00400137817428 0.00669233267561 0.00269095450133 +UniRef50_P76352 0.00377418782733 0.000482029585704 -0.00329215824163 +UniRef50_UPI0003B4CE11 glycosyl hydrolase family 20 8.67507024865e-07 1.25162269462e-06 3.84115669755e-07 +UniRef50_P94364 Cytochrome bd ubiquinol oxidase subunit 1 2.25221118163e-05 0.00133169031774 0.00130916820592 +UniRef50_U9N986 0.000155302086056 0.00026525452562 0.000109952439564 +UniRef50_P76359 0.00181112086248 0.00183681561418 2.56947517e-05 +UniRef50_B7MDB8 Cobalamin synthase 0.00359246200571 0.000511495595117 -0.00308096641059 +UniRef50_UPI0003B4027B MULTISPECIES 1.00508343406e-05 7.08990790867e-05 6.08482447461e-05 +UniRef50_F5ZLB8 Transglycosylase protein 0.00270264968209 0.0053301964375 0.00262754675541 +UniRef50_I1EV25 0.00024063742345 0.00213740376979 0.00189676634634 +UniRef50_Q1RJJ1 NADH quinone oxidoreductase subunit E 0.000295013468356 9.44377105531e-05 -0.000200575757803 +UniRef50_C1DH85 Deoxyribonuclease I 0.00397942135757 0.00245570704289 -0.00152371431468 +UniRef50_UPI0001CBBA36 PREDICTED 1.11577543041e-05 1.81078333964e-05 6.9500790923e-06 +UniRef50_Q9RRB5 Queuine tRNA ribosyltransferase 4.7592026773e-06 0.0605007602104 0.0604960010077 +UniRef50_UPI0003B6BA24 GTPase Era 1.71025038414e-05 9.74575415476e-05 8.03550377062e-05 +UniRef50_V7F7P6 0.000175809706843 1.09324706077e-05 -0.000164877236235 +UniRef50_Q2G5F9 Hemimethylated DNA binding region protein 0.000829121011225 0.00885950115586 0.00803038014464 +UniRef50_Q329H4 Phosphonate metabolism 0.00059910060023 0.000360546006472 -0.000238554593758 +UniRef50_UPI00036463CF hypothetical protein 7.50889669823e-06 1.6809831922e-05 9.30093522377e-06 +UniRef50_UPI000455DF56 2 isopropylmalate synthase 3.22585223506e-06 1.01056091831e-05 6.87975694804e-06 +UniRef50_D9SMY3 RNA polymerase sigma factor 0.000684801384175 0.000362351785524 -0.000322449598651 +UniRef50_P21865 Sensor protein KdpD 0.00391689714282 0.00121962454941 -0.00269727259341 +UniRef50_Q1GCD6 Flagellar fliL protein 0.00583205487323 0.000988723146173 -0.00484333172706 +UniRef50_Q6MJ09 DNA directed RNA polymerase subunit beta 1.0581793113e-05 6.537319961e-06 -4.044473152e-06 +UniRef50_Q2FH43 4 hydroxy tetrahydrodipicolinate synthase 0.0173611926901 0.00347989036311 -0.013881302327 +UniRef50_D2JBF4 DNA recombination protein RmuC 0.00013992100865 4.57428493162e-05 -9.41781593338e-05 +UniRef50_Q03K16 4 hydroxy tetrahydrodipicolinate synthase 0.00498099101573 0.00478988731751 -0.00019110369822 +UniRef50_UPI000475E634 leucine isoleucine valine transporter ATP binding subunit 1.09976698195e-05 0.000556803813077 0.000545806143257 +UniRef50_X4Z848 Short chain dehydrogenase family protein 0.012742667348 0.00478472358504 -0.00795794376296 +UniRef50_K0NAB4 Dehydrogenase 0.000877630524198 0.00484888309251 0.00397125256831 +UniRef50_Q58927 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 4.57160507878e-05 2.77788469619e-05 -1.79372038259e-05 +UniRef50_Q9RXT3 Phosphoribosylformylglycinamidine synthase 1 1.36728029777e-05 0.0320173365451 0.0320036637421 +UniRef50_UPI000375A953 hypothetical protein 2.20086869924e-05 1.29548291137e-05 -9.0538578787e-06 +UniRef50_P45768 Inner membrane amino acid ABC transporter permease protein YhdY 0.00282955632043 0.0019702558924 -0.00085930042803 +UniRef50_Q9CFC2 CCA adding enzyme 0.00640568999331 0.00351547025219 -0.00289021974112 +UniRef50_D7WL32 0.000538686170741 0.00241897746651 0.00188029129577 +UniRef50_L1KE49 0.000841676254502 0.00114316143946 0.000301485184958 +UniRef50_Q45604 9.92513555255e-05 3.25422896763e-05 -6.67090658492e-05 +UniRef50_M1MVG4 Transcriptional regulator, AraC family 0.000471857486069 0.00131840712176 0.000846549635691 +UniRef50_R1HR76 8.20621714942e-05 0.000179611818045 9.75496465508e-05 +UniRef50_L0LIX3 3.14292843872e-05 4.30251589219e-05 1.15958745347e-05 +UniRef50_UPI00038168DE hypothetical protein 5.54862983169e-05 3.21001600808e-05 -2.33861382361e-05 +UniRef50_W7SZX8 0.000113301462751 0.000168365443616 5.5063980865e-05 +UniRef50_UPI0003716923 hypothetical protein 2.03033141466e-05 0.00162556007734 0.00160525676319 +UniRef50_F2DTP4 Predicted protein 0.000293170380287 7.32390847827e-05 -0.000219931295504 +UniRef50_Q0SQN8 Mannose 1 phosphate guanylyltransferase 0.00043672968815 0.000192388733031 -0.000244340955119 +UniRef50_W0II99 C4 dicarboxylate ABC transporter permease 0.0136874572094 0.000353683605065 -0.0133337736043 +UniRef50_UPI00024843D9 LysR family transcriptional regulator 4.89372785742e-06 1.68415470048e-05 1.19478191474e-05 +UniRef50_J7Q3B6 4.84016146315e-06 6.70039663929e-06 1.86023517614e-06 +UniRef50_I0C2L0 FatD 0.0264162995858 0.00786869512614 -0.0185476044597 +UniRef50_UPI0003C17D4A 2.16087322599e-06 6.07646988507e-06 3.91559665908e-06 +UniRef50_UPI0001CB9AD0 PREDICTED 1.44847105293e-05 4.19227742584e-06 -1.02924331035e-05 +UniRef50_W8BRR9 1.61516869121e-05 2.22241800246e-06 -1.39292689096e-05 +UniRef50_P19480 Alkyl hydroperoxide reductase subunit F 0.0350548772664 0.0333419141668 -0.0017129630996 +UniRef50_F0RMK3 Peptidase S54, rhomboid domain protein 0.00022469404098 0.0175415869413 0.0173168929003 +UniRef50_F3U2Q5 0.0130278982207 0.00089754380941 -0.0121303544113 +UniRef50_N6U5R6 0.000990278853131 0.000388597505292 -0.000601681347839 +UniRef50_R7D6K7 0.000133702239266 0.00295374395045 0.00282004171118 +UniRef50_F9EYP6 2.27931254283e-06 4.10102522307e-05 3.87309396879e-05 +UniRef50_X3WVZ6 5.60797452027e-05 0.000134363742738 7.82839975353e-05 +UniRef50_A6LXH6 Na+ H+ antiporter 0.000429714616836 0.00127015885956 0.000840444242724 +UniRef50_Q5HGN0 Carbamoyl phosphate synthase small chain 0.0267902175384 0.0155625482972 -0.0112276692412 +UniRef50_P37454 Exodeoxyribonuclease 0.000160404811127 0.00165249028366 0.00149208547253 +UniRef50_A0A059LAI1 2.0835918992e-05 0.000103930779142 8.309486015e-05 +UniRef50_C3K6C6 0.000251744598828 0.000124156860881 -0.000127587737947 +UniRef50_H2DK93 Truncated internaline 3.67562850117e-05 1.5743253783e-05 -2.10130312287e-05 +UniRef50_A8I3Y9 NADH quinone oxidoreductase subunit C 2.4436044395e-05 9.21263150744e-05 6.76902706794e-05 +UniRef50_Q7UNC2 Imidazoleglycerol phosphate dehydratase 0.00515072657715 0.00147806793631 -0.00367265864084 +UniRef50_Q54HJ6 2.3522367206e-06 3.78920563213e-07 -1.97331615739e-06 +UniRef50_A6LUV0 2 dehydropantoate 2 reductase 0.000124173022652 0.00111610607976 0.000991933057108 +UniRef50_Q9RSM5 0.000263362317798 0.0361775510149 0.0359141886971 +UniRef50_E8SFA5 Glycerophosphoryl diester phosphodiesterase 0.0204621605844 0.00612862085794 -0.0143335397265 +UniRef50_B2ICY0 N acylglucosamine 2 epimerase 0.00289528374842 0.000200668202859 -0.00269461554556 +UniRef50_B1LZZ2 Electron transfer flavoprotein alpha subunit 4.99928052058e-05 4.22085162053e-05 -7.7842890005e-06 +UniRef50_I4SI86 Phenylacetate CoA ligase 0.00281670546175 0.0004124715484 -0.00240423391335 +UniRef50_Q57JH6 0.00042426137469 0.000161649871325 -0.000262611503365 +UniRef50_Q9L6Q3 Uroporphyrinogen III synthase 0.00179866140932 0.00186452732822 6.58659189e-05 +UniRef50_C8N6S7 Periplasmic binding protein 2.56273899946e-05 4.48586588393e-05 1.92312688447e-05 +UniRef50_UPI00035FDB03 hypothetical protein 2.75762575879e-05 4.71167135119e-05 1.9540455924e-05 +UniRef50_UPI000262CF7A proline iminopeptidase 5.95466499945e-06 1.06806379229e-05 4.72597292345e-06 +UniRef50_Q9RXD5 Outer membrane protein 4.51178472729e-05 0.0321202726649 0.0320751548176 +UniRef50_K1YE78 0.000354233414624 0.000554251272714 0.00020001785809 +UniRef50_S5YEK4 Transcriptional regulator, GntR family 0.00325086715779 0.000237202172853 -0.00301366498494 +UniRef50_Q4L460 Teichoic acid translocation permease protein 0.0918666683286 0.0371758073129 -0.0546908610157 +UniRef50_I7DPX0 5.98979718292e-05 0.000185349951005 0.000125451979176 +UniRef50_P52135 0.00605852267453 0.00427219732618 -0.00178632534835 +UniRef50_Q3IV29 Two component transcriptional regulator, LuxR family 0.0177157167515 0.00154566708624 -0.0161700496653 +UniRef50_P52131 0.00626593510651 0.000977705100014 -0.0052882300065 +UniRef50_D3DZN3 Heavy metal translocating P type ATPase 0.00438136307585 0.00237724597806 -0.00200411709779 +UniRef50_P52133 0.00284936732982 0.00026057356341 -0.00258879376641 +UniRef50_A0A023S217 0.000156201098833 0.00293825853796 0.00278205743913 +UniRef50_P52139 0.00161589807204 0.000147317340239 -0.0014685807318 +UniRef50_P52138 0.00198838666401 0.00120311256979 -0.00078527409422 +UniRef50_J7RFM5 Tpr protein 6.78656391744e-05 5.63066444877e-05 -1.15589946867e-05 +UniRef50_B3PWI5 Imidazoleglycerol phosphate dehydratase 0.000253082601495 4.61524086922e-05 -0.000206930192803 +UniRef50_W8ZDB9 1.99166633945e-05 6.93794274937e-05 4.94627640992e-05 +UniRef50_B7N578 Protein Ves 0.00133788147562 0.00297669744834 0.00163881597272 +UniRef50_UPI00047CFF00 hypothetical protein 1.10880818888e-05 5.73400275999e-05 4.62519457111e-05 +UniRef50_UPI00046CDEFF transposase 5.55776770298e-05 2.05808732025e-05 -3.49968038273e-05 +UniRef50_Q8CRI9 50S ribosomal protein L13 0.00766988732486 0.00161057477153 -0.00605931255333 +UniRef50_A6LYQ3 0.000134496195558 0.000660017440637 0.000525521245079 +UniRef50_UPI0002EBAF2D hypothetical protein 6.94285922604e-05 4.36910058409e-05 -2.57375864195e-05 +UniRef50_UPI0003750B35 hypothetical protein 7.88304917776e-05 1.7995378632e-05 -6.08351131456e-05 +UniRef50_A1B1I9 0.0098995977242 0.00210880302798 -0.00779079469622 +UniRef50_UPI00047BF436 histidine ammonia lyase, partial 1.26904510803e-05 4.06190243854e-05 2.79285733051e-05 +UniRef50_P96589 0.0197932069637 0.00713943178039 -0.0126537751833 +UniRef50_P85097 Respiratory nitrate reductase alpha chain 4.66672593325e-06 2.13421901947e-05 1.66754642614e-05 +UniRef50_J2K6A4 6 pyruvoyl tetrahydropterin synthase 8.90646920701e-05 0.00138182310047 0.0012927584084 +UniRef50_A0ZZF7 L asparaginase I 0.000202586398316 0.0093522834691 0.00914969707078 +UniRef50_X7Z663 PE PGRS family protein 1.41512795825e-05 0.000114150879588 9.99996000055e-05 +UniRef50_V8H036 0.000214625581086 0.000107716315346 -0.00010690926574 +UniRef50_C1CXX6 Non canonical purine NTP pyrophosphatase 1.01899098614e-05 0.00571844618173 0.00570825627187 +UniRef50_UPI0004776B86 hypothetical protein 5.00717425768e-06 7.18214312445e-06 2.17496886677e-06 +UniRef50_A6LU83 1 acyl sn glycerol 3 phosphate acyltransferase 0.000332587491469 0.00132277403927 0.000990186547801 +UniRef50_V5SGX2 C4 dicarboxylate ABC transporter 7.29056136163e-06 1.81117323743e-05 1.08211710127e-05 +UniRef50_Q8CTD3 0.00560786381026 0.000515087276506 -0.00509277653375 +UniRef50_Q8CP66 Heptaprenyl diphosphate syntase component II 0.0193791028179 0.00653627216723 -0.0128428306507 +UniRef50_UPI00046D37AA N succinylarginine dihydrolase 9.07071271714e-06 2.99347464476e-05 2.08640337305e-05 +UniRef50_Q2RM79 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.54680738702e-05 1.42873521305e-05 -1.1807217397e-06 +UniRef50_UPI000367B671 hypothetical protein 1.44487475485e-05 0.000100471185261 8.60224377125e-05 +UniRef50_L0A0T1 Putative phosphatase, C terminal domain of histone macro H2A1 like protein 1.92429788947e-05 0.000445745887049 0.000426502908154 +UniRef50_Q6ABS5 Formate tetrahydrofolate ligase 0.000588718773702 0.00551418981851 0.00492547104481 +UniRef50_UPI0003C1A241 PREDICTED 0.000521399776348 2.13602096581e-05 -0.00050003956669 +UniRef50_A9KJR8 Urease accessory protein UreE 0.00474796526595 0.0006396751737 -0.00410829009225 +UniRef50_P25605 Acetolactate synthase small subunit, mitochondrial 2.56525616588e-05 0.000166008437689 0.00014035587603 +UniRef50_UPI00036577C7 hypothetical protein 1.87237543234e-05 2.77323367249e-06 -1.59505206509e-05 +UniRef50_A6LSZ9 0.000424666948962 0.00147381176374 0.00104914481478 +UniRef50_A3W226 0.000491028485652 4.77973634881e-05 -0.000443231122164 +UniRef50_A6LSZ0 0.000415325951833 0.0010683790577 0.000653053105867 +UniRef50_A3W220 2.88169891019e-05 2.20689788937e-05 -6.7480102082e-06 +UniRef50_E6DRN3 0.000955354509541 0.00188365842032 0.000928303910779 +UniRef50_P80876 General stress protein 18 0.00843385255331 0.00582767273259 -0.00260617982072 +UniRef50_O32135 UPF0759 protein YunF 9.69853833149e-06 3.70558142974e-05 2.73572759659e-05 +UniRef50_UPI00046D55BC nitrate transporter 2.74516516297e-06 6.95817197617e-06 4.2130068132e-06 +UniRef50_J2MVR4 2.58420658952e-05 0.000131773563795 0.0001059314979 +UniRef50_UPI00016C4574 Catalase, partial 0.00031571789138 0.000919420520224 0.000603702628844 +UniRef50_UPI0003682E3B hypothetical protein 0.000185767870711 0.000109744822948 -7.6023047763e-05 +UniRef50_P06846 HTH type transcriptional regulator EbgR 0.00223657892649 0.000180437905414 -0.00205614102108 +UniRef50_Q8G7I0 Ribonuclease PH 1.99258830518e-05 0.00256106051173 0.00254113462868 +UniRef50_UPI0003767C06 hypothetical protein 0.000142841372682 2.73555479348e-05 -0.000115485824747 +UniRef50_L1NJN4 0.00018294959072 0.000657849952057 0.000474900361337 +UniRef50_F0MTL8 Carbonate dehydratase 0.00119776378691 0.00188897774361 0.0006912139567 +UniRef50_UPI000376F581 hypothetical protein 9.03808218655e-06 1.35204046595e-05 4.48232247295e-06 +UniRef50_P36556 Transcriptional regulatory protein BasR 0.00614644468857 0.00238502708738 -0.00376141760119 +UniRef50_UPI0004650D3F iron ABC transporter permease 1.1018809469e-05 1.62341271668e-05 5.2153176978e-06 +UniRef50_W4U8H5 TsaD Kae1 Qri7 protein 1.46809502519e-05 0.00010259391807 8.79129678181e-05 +UniRef50_UPI0003D768D4 PREDICTED 1.51984202496e-05 3.36542016879e-05 1.84557814383e-05 +UniRef50_D3QH01 Branched chain amino acid permease 5.18266232913e-05 2.09592878172e-05 -3.08673354741e-05 +UniRef50_A9M387 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.000112907075432 0.00258204649305 0.00246913941762 +UniRef50_UPI00037FC5AF hypothetical protein 9.14370214715e-06 6.88288721336e-05 5.96851699865e-05 +UniRef50_P29013 0.00273296266096 0.00158468312409 -0.00114827953687 +UniRef50_Q1GJ00 Aminodeoxychorismate synthase, subunit I 0.00168245053275 0.00033322120471 -0.00134922932804 +UniRef50_Q83Q93 Biosynthetic arginine decarboxylase 0.00382047035778 0.00547223014453 0.00165175978675 +UniRef50_UPI00038015E1 hypothetical protein 1.48147866146e-05 3.31670635407e-05 1.83522769261e-05 +UniRef50_Q4L4Q7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0151724224858 0.00170586946154 -0.0134665530243 +UniRef50_Q1GI12 Sarcosine oxidase alpha subunit family 0.00433596334087 0.00138701226791 -0.00294895107296 +UniRef50_UPI0003B6C2BF inosine uridine preferring nucleoside hydrolase 5.80032462471e-06 2.46730154963e-05 1.88726908716e-05 +UniRef50_A6VCM9 Oxidoreductase, FAD binding 0.000459669958711 0.000408651797653 -5.1018161058e-05 +UniRef50_UPI0003B30607 transcriptional regulator 1.31855150121e-05 4.02375460841e-05 2.7052031072e-05 +UniRef50_B9KPI4 0.00517023883235 0.00110332198569 -0.00406691684666 +UniRef50_P52616 Phase 2 flagellin 0.00347365908733 0.00117890532258 -0.00229475376475 +UniRef50_J9P338 0.000141384974083 0.000352859771623 0.00021147479754 +UniRef50_Q2P0J5 Thiazole synthase 0.0017478248921 0.00572216112251 0.00397433623041 +UniRef50_F8JVM5 LigA 0.000332142357587 0.000124313146858 -0.000207829210729 +UniRef50_P65769 Polyphosphate kinase 9.91740508531e-06 0.000528332132287 0.000518414727202 +UniRef50_B2TS76 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.000405478513173 0.00179132797507 0.0013858494619 +UniRef50_R6KLR0 Polysaccharide deacetylase 0.000158607558343 0.00246832381868 0.00230971626034 +UniRef50_M9VL85 0.00111479896583 0.00994431647601 0.00882951751018 +UniRef50_M2BGU5 0.000401580839207 0.00459991145523 0.00419833061602 +UniRef50_UPI0004726713 2 hydroxychromene 2 carboxylate isomerase 8.11696062435e-05 6.43211708804e-05 -1.68484353631e-05 +UniRef50_B4SQ60 DoxX family protein 8.86079142093e-05 3.49859424817e-05 -5.36219717276e-05 +UniRef50_Q0I3Q6 Glutamyl tRNA reductase 3.51516019594e-06 6.62623191235e-06 3.11107171641e-06 +UniRef50_A0A023NRD3 0.0112226755099 0.00134148928712 -0.00988118622278 +UniRef50_B6I2P2 Phosphoglycerol transferase I 0.00293177228019 0.000589520087834 -0.00234225219236 +UniRef50_Q9KCT8 NADPH dehydrogenase 1.02148070517e-05 8.51113263554e-06 -1.70367441616e-06 +UniRef50_A1T1H6 1.14774714567e-05 3.40976421885e-05 2.26201707318e-05 +UniRef50_R7UXT3 1.90887934969e-05 4.50735666292e-05 2.59847731323e-05 +UniRef50_A6LZQ9 0.000262143047812 0.000410162090547 0.000148019042735 +UniRef50_UPI000370658C hypothetical protein 5.52473277956e-06 6.58412176425e-06 1.05938898469e-06 +UniRef50_A6LZQ3 0.000174762031871 0.000362917224226 0.000188155192355 +UniRef50_UPI00037BAE23 mutator mutT protein, partial 8.48405241532e-05 8.24014448672e-06 -7.66003796665e-05 +UniRef50_Q1JUQ1 L arabonate dehydratase 0.000160209109763 0.0118967778257 0.0117365687159 +UniRef50_E9KNS2 Crp family transcriptional regulator 0.00820414834355 0.00428170386247 -0.00392244448108 +UniRef50_UPI000384168E PREDICTED 6.39356631133e-05 2.36831143021e-05 -4.02525488112e-05 +UniRef50_L7WTA8 LysM domain containing protein 0.0122281866817 0.00651630362905 -0.00571188305265 +UniRef50_Q6LUK6 Carbamoyl phosphate synthase small chain 2.26725165598e-05 7.51544078281e-06 -1.5157075777e-05 +UniRef50_Q8CNU4 Proline dehydrohenase like protein 0.0111986869792 0.00426772827281 -0.00693095870639 +UniRef50_A4WXA3 0.0129108795898 0.0034183021443 -0.0094925774455 +UniRef50_UPI0004418811 PREDICTED 3.77837194267e-06 0.000285237867215 0.000281459495272 +UniRef50_U2JRM5 0.000995598241079 7.44449176773e-05 -0.000921153323402 +UniRef50_Q9KNM9 K H(+) antiporter NhaP2 0.00282865702426 0.000826995252695 -0.00200166177156 +UniRef50_Q9KX08 Putative ribosome biogenesis GTPase RsgA 0.0160066737988 0.00310100882932 -0.0129056649695 +UniRef50_Q18A91 DNA polymerase IV 3.79355087699e-06 8.25998046682e-06 4.46642958983e-06 +UniRef50_B3W6P3 Divalent metal cation transporter MntH 0.00562368593445 0.00570844622845 8.4760294e-05 +UniRef50_D4HBR1 Mannose 6 phosphate isomerase, class I 0.000693339835125 0.00579753449531 0.00510419466018 +UniRef50_M1XIG8 SCCmec staphylococcal cassette region, isolate CMFT535 0.0133596767733 0.00136000526311 -0.0119996715102 +UniRef50_R6CBZ9 0.000376867282714 0.000311954266055 -6.4913016659e-05 +UniRef50_P17815 Malate synthase, glyoxysomal 1.39143681189e-05 0.0656070587306 0.0655931443625 +UniRef50_P23105 2 hydroxymuconic semialdehyde dehydrogenase 1.2812223153e-05 4.92800349914e-05 3.64678118384e-05 +UniRef50_B5EXV0 Uridine kinase 0.00481223996375 0.00265467130732 -0.00215756865643 +UniRef50_Q4K681 Spermidine putrescine import ATP binding protein PotA 0.000414588012089 0.000234914576457 -0.000179673435632 +UniRef50_W0BHE5 ABC type transport system involved in Fe S cluster assembly, ATPase component 1.48932592701e-05 0.000177125595354 0.000162232336084 +UniRef50_B7GXR8 0.000213671314441 0.0042112727081 0.00399760139366 +UniRef50_E0TNV6 Gp34 0.000535919048192 0.000141979185193 -0.000393939862999 +UniRef50_M7RDL9 5.8186488478e-05 0.0001334564237 7.5269935222e-05 +UniRef50_Q1IVV5 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 6.88424295821e-05 0.0385699683013 0.0385011258717 +UniRef50_O27661 DNA topoisomerase 1 0.0033327700218 0.00170153386149 -0.00163123616031 +UniRef50_Q37371 NADH ubiquinone oxidoreductase chain 6 6.90015632437e-05 8.51423307113e-06 -6.04873301726e-05 +UniRef50_B7I2D1 Glycerophosphoryl diester phosphodiesterase 0.000107037614984 0.00718031715919 0.00707327954421 +UniRef50_D8U6B8 4.16014276365e-06 1.2944692356e-05 8.78454959235e-06 +UniRef50_A0A022GZQ6 LacI family transcriptional regulator 8.95451841103e-05 2.74789644893e-05 -6.2066219621e-05 +UniRef50_UPI000471138D hypothetical protein 0.000192006834979 0.000165278410825 -2.6728424154e-05 +UniRef50_M4ZMN9 Gas vesicle structural protein 0.00110779387647 0.0161081839197 0.0150003900432 +UniRef50_Q11DH5 Holliday junction ATP dependent DNA helicase RuvA 2.25708882418e-05 1.01306997688e-05 -1.2440188473e-05 +UniRef50_F5ZH83 Phosphohydrolase 0.00722792978235 0.0075412615888 0.00031333180645 +UniRef50_O66976 Histidinol dehydrogenase 0.000191101505964 0.00233133236627 0.00214023086031 +UniRef50_A7GJ81 DNA directed RNA polymerase subunit beta 0.000354598993163 0.00116690458447 0.000812305591307 +UniRef50_R7HT16 0.000923180881063 0.00144218740724 0.000519006526177 +UniRef50_A0A024H9M2 HTH type transcriptional regulator HexR 0.000849730540512 0.000402476048286 -0.000447254492226 +UniRef50_UPI00036B500B hypothetical protein, partial 0.000111461199474 3.46523069927e-05 -7.68088924813e-05 +UniRef50_F6D5Z8 ABC type transporter, periplasmic subunit 0.00276253793539 0.000509021827504 -0.00225351610789 +UniRef50_Q6FEG1 Kinase sensor component of a two component signal transduction system 0.000331084856469 0.00762263271973 0.00729154786326 +UniRef50_Q7MN25 Methionine import ATP binding protein MetN 1.7418074601e-05 9.50659814573e-06 -7.91147645527e-06 +UniRef50_UPI00047C1764 hydrogenase maturation protease 8.59907463197e-05 0.000252634990795 0.000166644244475 +UniRef50_E1PW93 Transposase B 0.000102670713198 0.0181127847642 0.018010114051 +UniRef50_F0RJQ2 3 mercaptopyruvate sulfurtransferase 0.000144815596745 0.000456911748174 0.000312096151429 +UniRef50_P00887 Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive 0.00125492103727 0.00101086734115 -0.00024405369612 +UniRef50_G7ZT27 0.00657414280083 0.0108490850961 0.00427494229527 +UniRef50_Q9M315 3 methyl 2 oxobutanoate hydroxymethyltransferase 2, mitochondrial 2.51906096655e-05 1.45998657535e-05 -1.0590743912e-05 +UniRef50_Q46106 Ferritin 9.78757152452e-05 0.0017626841933 0.00166480847805 +UniRef50_P10996 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.000292838285346 0.00111331700517 0.000820478719824 +UniRef50_X5DZU0 NAD dependent epimerase dehydratase family protein 0.0135841464478 0.00275185034063 -0.0108322961072 +UniRef50_G7V8Z9 0.0129126186976 0.00943264208836 -0.00347997660924 +UniRef50_B2TN34 0.000317136869388 0.00112562002417 0.000808483154782 +UniRef50_Q4L6M0 DNA repair protein RecN 0.0175914822821 0.0072221969977 -0.0103692852844 +UniRef50_I6Y1G9 Putative membrane protein 1.51273736531e-05 0.000120716798603 0.00010558942495 +UniRef50_Q7VK73 UvrABC system protein C 7.33457232246e-05 0.00323513663939 0.00316179091617 +UniRef50_E2QNB6 Cystine transporter subunit 0.00152716231474 0.000293290139211 -0.00123387217553 +UniRef50_Q5WEL9 Glutamate racemase 0.00724095123122 0.00230557859273 -0.00493537263849 +UniRef50_C2X6L3 Alpha glucosidase 0.000153889795835 0.00238744855777 0.00223355876193 +UniRef50_UPI0002D7F533 succinyl CoA synthetase subunit alpha 2.47174097259e-05 4.80255943907e-05 2.33081846648e-05 +UniRef50_D2PWU8 ResB family protein 0.000190523329085 0.00534754501453 0.00515702168544 +UniRef50_X2MBD9 PTS mannitol transporter subunit IIBC 2.32234677225e-05 5.30091646653e-05 2.97856969428e-05 +UniRef50_P37646 Cyclic di GMP phosphodiesterase YhjH 0.00390400950836 0.00298051383061 -0.00092349567775 +UniRef50_Q8ZCA7 Copper exporting P type ATPase A 7.58973237456e-06 2.12246169774e-05 1.36348846028e-05 +UniRef50_P23378 Glycine dehydrogenase , mitochondrial 0.000368651209684 0.00350154872658 0.0031328975169 +UniRef50_Q3IUX7 Acyltransferase 3 family 0.00859084275982 0.00247993089834 -0.00611091186148 +UniRef50_A3PFZ9 DNA translocase FtsK 0.00448200008599 0.000633924089602 -0.00384807599639 +UniRef50_Q5HNA3 Signal transduction protein TRAP 0.00704223430034 0.00567898452593 -0.00136324977441 +UniRef50_P25527 GABA permease 0.00359210397676 0.00189679345445 -0.00169531052231 +UniRef50_UPI0003C7ED51 hypothetical protein 0.00013576584553 0.00254517422546 0.00240940837993 +UniRef50_UPI000289BAFB deoxyguanosinetriphosphate triphosphohydrolase 7.56074420363e-05 9.33353704351e-05 1.77279283988e-05 +UniRef50_M1MT32 Two component transcriptional regulator, AraC family 0.000370221366583 0.00119519449111 0.000824973124527 +UniRef50_K6GMQ5 0.000549455248371 0.000279515271677 -0.000269939976694 +UniRef50_UPI00032893EC 4.0790492991e-05 0.000293933399063 0.000253142906072 +UniRef50_W4JVY5 0.000196396323594 0.000321759177124 0.00012536285353 +UniRef50_F1UED2 0.000152622367462 0.00856112650074 0.00840850413328 +UniRef50_UPI000299DF64 tRNA 2 selenouridine synthase 1.22727410263e-05 9.82810556222e-06 -2.44463546408e-06 +UniRef50_A5UP39 0.00325280687339 0.000157782745423 -0.00309502412797 +UniRef50_E0UH66 Amine oxidase 1.17218339161e-05 5.62502700467e-06 -6.09680691143e-06 +UniRef50_A5UP37 0.000310262456591 0.000600644146164 0.000290381689573 +UniRef50_A5UP34 0.00193596381494 0.000580950895467 -0.00135501291947 +UniRef50_A1B0E4 Membrane protein insertase YidC 0.00725385144355 0.0021378463581 -0.00511600508545 +UniRef50_A9HRV7 Trigger factor 6.77679702012e-05 2.35810042456e-05 -4.41869659556e-05 +UniRef50_P39149 Uracil phosphoribosyltransferase 5.54699389765e-05 0.00384097674364 0.00378550680466 +UniRef50_UPI00047EB418 amino acid ABC transporter permease 5.48649509851e-06 3.06939847882e-05 2.52074896897e-05 +UniRef50_D3E0M0 Calcineurin like phosphoesterase 0.00234522392032 0.000739604659451 -0.00160561926087 +UniRef50_S1FKD9 0.000288063929283 0.000616850746259 0.000328786816976 +UniRef50_A5UJ82 3 dehydroquinate synthase 0.00324360433651 0.000442885821655 -0.00280071851485 +UniRef50_B7LJH6 4.00815766368e-05 4.90701128327e-05 8.9885361959e-06 +UniRef50_F9Y4V0 6.53863805325e-05 3.80381106198e-05 -2.73482699127e-05 +UniRef50_I7JVN9 2.2242637305e-05 8.36343804463e-05 6.13917431413e-05 +UniRef50_A8I6P0 Predicted protein 3.64132072445e-06 2.86750750026e-06 -7.7381322419e-07 +UniRef50_Q890U2 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.000177436903749 0.000350804061526 0.000173367157777 +UniRef50_Q0D831 Os07g0187900 protein 0.000172067918298 0.000399034535673 0.000226966617375 +UniRef50_A1B1L1 0.00516213074887 0.00168645087742 -0.00347567987145 +UniRef50_C6CW74 Sulfate ABC transporter, ATPase subunit 0.000184740288181 0.00096579111761 0.000781050829429 +UniRef50_F7KI55 Excinuclease ABC subunit A 8.61720574606e-06 6.03327691101e-05 5.1715563364e-05 +UniRef50_G0ICQ4 Transposase like protein, IS1381 ISSpn7 5.00565686819e-05 8.56113752942e-05 3.55548066123e-05 +UniRef50_K0HZ43 Transporter, major facilitator family protein 0.000190836185841 0.0075868043089 0.00739596812306 +UniRef50_Q7A441 Molybdopterin synthase sulfur carrier subunit 9.62329973805e-05 0.0081433898321 0.00804715683472 +UniRef50_A1U404 Type II secretion system protein E 0.000526333702828 0.000660285866956 0.000133952164128 +UniRef50_B2UX09 0.000233016042498 0.00204275857248 0.00180974252998 +UniRef50_A6VAG5 Haloacid dehalogenase, type II 0.000161548925324 0.000403621920536 0.000242072995212 +UniRef50_UPI0003735394 hypothetical protein 1.09421026098e-05 1.71205596291e-05 6.1784570193e-06 +UniRef50_Q9KSC2 Methylisocitrate lyase 0.0031894638228 0.0127252157453 0.0095357519225 +UniRef50_Q06172 Flagellar basal body rod protein FlgG 0.00726670960472 0.00171086309173 -0.00555584651299 +UniRef50_A9C1V3 1.01312670431e-05 3.06718235967e-05 2.05405565536e-05 +UniRef50_X5IXK7 IS431mec, transposase 3.24643977845e-05 3.97666395352e-05 7.3022417507e-06 +UniRef50_UPI000225B431 dTDP glucose 4,6 dehydratase 5.910974035e-06 8.17960333362e-06 2.26862929862e-06 +UniRef50_P0ACS8 HTH type transcriptional regulator RpiR 0.0034413698919 0.000809449387504 -0.0026319205044 +UniRef50_W5X9M8 Type I phosphodiesterase nucleotide pyrophosphatase 1.26652104041e-05 0.000106135991692 9.34707812879e-05 +UniRef50_W9H4Y7 ABC transporter permease 2.72008265724e-06 4.35452320697e-06 1.63444054973e-06 +UniRef50_Q7V3R5 Phosphoribosylformylglycinamidine synthase 2 6.95673629689e-06 2.58160813765e-06 -4.37512815924e-06 +UniRef50_P45743 Isochorismatase 2.27169953979e-05 3.91111870967e-05 1.63941916988e-05 +UniRef50_UPI00036B0594 hypothetical protein 2.56793189679e-05 2.99345808814e-05 4.2552619135e-06 +UniRef50_UPI000478FCEB alkyl hydroperoxide reductase 1.51010878429e-05 0.000729572356491 0.000714471268648 +UniRef50_UPI00037BF563 hypothetical protein 0.000241287367666 5.07249500475e-05 -0.000190562417618 +UniRef50_UPI0002D56393 hypothetical protein 2.16036598222e-05 7.5871107522e-05 5.42674476998e-05 +UniRef50_C9M6I7 5.83225699386e-05 3.76409876268e-05 -2.06815823118e-05 +UniRef50_UPI0003822EF9 hypothetical protein 2.06208242519e-05 9.25352878274e-05 7.19144635755e-05 +UniRef50_Q9JV11 UPF0307 protein NMA1049 0.000247802618498 0.000353672700827 0.000105870082329 +UniRef50_Q5FPZ9 Holo [acyl carrier protein] synthase 2.04172189206e-05 4.28458375686e-05 2.2428618648e-05 +UniRef50_P27303 Multidrug export protein EmrA 0.00389260861418 0.000960432850044 -0.00293217576414 +UniRef50_P14532 Cytochrome c551 peroxidase 0.00030970212708 0.000172196329551 -0.000137505797529 +UniRef50_A0A016QQV6 2.87280869728e-05 0.000408089066644 0.000379360979671 +UniRef50_D4H9H0 0.000294230502286 0.00260978332472 0.00231555282243 +UniRef50_D0K339 0.000158013571195 4.58857290075e-05 -0.000112127842188 +UniRef50_UPI00037E8439 iron transporter FeoB 7.66538554955e-06 9.46109048526e-06 1.79570493571e-06 +UniRef50_K0LZX2 0.0152168515458 0.00221487528896 -0.0130019762568 +UniRef50_UPI0001CC3EEF hypothetical protein 5.37969314622e-06 1.17278568293e-05 6.34816368308e-06 +UniRef50_Q4L4W4 Na+ H+ antiporter, MnhD subunit 0.0171138321528 0.00418039142987 -0.0129334407229 +UniRef50_UPI00037D2BB8 hypothetical protein 3.8027169578e-06 1.47447747489e-05 1.09420577911e-05 +UniRef50_A3PS55 0.0234428653813 0.00253304662746 -0.0209098187538 +UniRef50_K6YKE1 8.64205710921e-05 4.3202245342e-05 -4.32183257501e-05 +UniRef50_P0A2J0 Histidine transport system permease protein HisQ 0.00615811942655 0.000790280777913 -0.00536783864864 +UniRef50_Q8X6V3 0.00274385337905 0.00013842970556 -0.00260542367349 +UniRef50_J9P815 2.07291676946e-05 7.50827592702e-06 -1.32208917676e-05 +UniRef50_Q9ZKV9 IS606 TRANSPOSASE 0.000175329979574 0.00339728423799 0.00322195425842 +UniRef50_W4UM07 TsaD Kae1 Qri7 protein 1.46809502519e-05 0.000117506156474 0.000102825206222 +UniRef50_W4TJV2 Transcription termination protein NusB 0.000636212340763 0.00101251441781 0.000376302077047 +UniRef50_G7M0Z9 Type II secretion system F domain containing protein 0.000102857217666 0.000479183477566 0.0003763262599 +UniRef50_Q6YWZ7 0.00011708624299 1.1097513351e-05 -0.000105988729639 +UniRef50_A5UNC4 Predicted coenzyme PQQ synthesis protein 0.0037799615595 0.00274871176414 -0.00103124979536 +UniRef50_UPI00036D5C8E hypothetical protein 3.57566335505e-05 3.9744882142e-05 3.9882485915e-06 +UniRef50_M1MYX8 Methyl accepting chemotaxis protein 0.000379124979432 0.00413025994186 0.00375113496243 +UniRef50_UPI000360D29B hypothetical protein 5.86441218768e-06 4.93857835919e-05 4.35213714042e-05 +UniRef50_B9KUN2 Oxidoreductase domain protein 0.0053418468593 0.00288618486724 -0.00245566199206 +UniRef50_Q51700 Nitrite reductase 0.000982429626756 0.000739220709474 -0.000243208917282 +UniRef50_R6AHC9 8.42472741453e-06 0.000223911196739 0.000215486469324 +UniRef50_J9NWS4 2.60340323218e-05 7.28447638374e-05 4.68107315156e-05 +UniRef50_UPI000373A5D7 hypothetical protein 4.48555982627e-06 0.000306265621011 0.000301780061185 +UniRef50_K4YWM5 4.41601516807e-05 0.000116105547305 7.19453956243e-05 +UniRef50_P76090 Inner membrane protein YnbA 0.00119147640467 0.000966677545342 -0.000224798859328 +UniRef50_Q6FEM6 Dual specificity RNA methyltransferase RlmN 0.00117003443421 0.00609768359198 0.00492764915777 +UniRef50_F0HFQ0 1.73959396342e-05 1.91182023772e-05 1.722262743e-06 +UniRef50_I2DWY9 MotA TolQ ExbB proton channel family protein 0.000287756739867 0.000498632401153 0.000210875661286 +UniRef50_P0ADB2 Osmotically inducible lipoprotein E 0.000449388081972 0.00191676530768 0.00146737722571 +UniRef50_F3U4S4 Blue light receptor BLUF domain containing protein 0.00527954765308 0.00050770780263 -0.00477183985045 +UniRef50_UPI0003FEC0C1 hypothetical protein 3.18312182146e-06 8.24968335214e-06 5.06656153068e-06 +UniRef50_UPI0003656647 hypothetical protein 0.000270582155676 0.000114409524502 -0.000156172631174 +UniRef50_Q9RSV9 0.000127672825993 0.0194578190858 0.0193301462598 +UniRef50_UPI0003B6AB5A ABC transporter permease 1.55436298576e-05 0.000186338019594 0.000170794389736 +UniRef50_UPI0004120031 glycerol 3 phosphate ABC transporter substrate binding protein 2.58580869479e-05 9.84088138813e-06 -1.60172055598e-05 +UniRef50_UPI0003713513 hypothetical protein 0.000134469093019 1.84741208071e-05 -0.000115994972212 +UniRef50_Q45592 Probable peptide export permease protein YydJ 0.0107566520619 0.00226054613848 -0.00849610592342 +UniRef50_E8SHI1 Predicted oxidoreductase 0.00849377236132 0.000395788692335 -0.00809798366899 +UniRef50_Q1IUD5 Potassium transporting ATPase A chain 3.49290054553e-06 0.00184081997239 0.00183732707184 +UniRef50_S3DA11 FAD NAD binding protein 3.22068775111e-06 0.000766965658036 0.000763744970285 +UniRef50_M2EZJ0 0.00279912750829 0.000303927998483 -0.00249519950981 +UniRef50_B3PS08 Bacterioferritin 0.00815992141695 0.0007130383224 -0.00744688309455 +UniRef50_UPI0003598731 PREDICTED 8.41918166822e-05 7.15202028187e-05 -1.26716138635e-05 +UniRef50_UPI0002626701 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.58362261254e-05 1.88770077385e-05 3.0407816131e-06 +UniRef50_Q8CNC7 Urease accessory protein UreF 0.008283002803 0.00673125712415 -0.00155174567885 +UniRef50_Q9RSI9 Phosphopentomutase 1.2584233918e-05 0.0235201359659 0.023507551732 +UniRef50_Q5HKJ8 Glycerol dehydrogenase 0.0122438563176 0.0057312047889 -0.0065126515287 +UniRef50_Q11190 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 0.000795720613581 0.000266870491225 -0.000528850122356 +UniRef50_B0CG85 1.59704254521e-05 1.64620885281e-05 4.91663076e-07 +UniRef50_G8VFK8 Biotin carboxylase 0.000346986305232 0.00610201571927 0.00575502941404 +UniRef50_Q6GER8 Mannitol 1 phosphate 5 dehydrogenase 0.0107364848067 0.00218374082753 -0.00855274397917 +UniRef50_C5N1D9 0.000935915674838 0.00172029148658 0.000784375811742 +UniRef50_C6B577 Peptidase S8 and S53, subtilisin, kexin, sedolisin 0.00273207134254 0.000572852811789 -0.00215921853075 +UniRef50_A1B2H5 Flagellin domain protein 0.00471763552964 0.0016595672718 -0.00305806825784 +UniRef50_Q6FF20 Polyphosphate AMP phosphotransferase 8.00323651255e-05 0.00627597523877 0.00619594287364 +UniRef50_Q5HPK8 Catalase 0.0097405230881 0.00160855096368 -0.00813197212442 +UniRef50_D3QEW8 0.013834812556 0.00334070707763 -0.0104941054784 +UniRef50_O34645 Alpha galactosidase 0.000302118604617 0.00151596541635 0.00121384681173 +UniRef50_UPI0003B72D82 hypothetical protein 2.43270322244e-05 0.000648835250992 0.000624508218768 +UniRef50_A4SUD8 TraN protein 6.7680655042e-06 4.3483147875e-06 -2.4197507167e-06 +UniRef50_Q9JZD0 5.99501305782e-05 0.00282028712693 0.00276033699635 +UniRef50_Q2G6V6 Thymidylate synthase 0.0085838222656 0.00188852209428 -0.00669530017132 +UniRef50_Q5HFZ7 Dihydrofolate reductase 0.0205051196372 0.00361133348255 -0.0168937861546 +UniRef50_Q6A812 N acetyl gamma glutamyl phosphate reductase 0.00043324502106 0.00257786299378 0.00214461797272 +UniRef50_A6LY45 0.000312833692416 0.0032365364023 0.00292370270988 +UniRef50_UPI0002F39B78 hypothetical protein 3.60419074469e-05 3.15640897746e-05 -4.4778176723e-06 +UniRef50_UPI0001BF786C hypothetical protein SMAC_11506, partial 0.000274250362674 1.08738361078e-05 -0.000263376526566 +UniRef50_A5ISU2 0.0114435979021 0.000482930776554 -0.0109606671255 +UniRef50_F3J2W3 AsmA family protein 1.31034739134e-05 1.57702505258e-05 2.6667766124e-06 +UniRef50_UPI00047EDDA8 ACGS family amino acid carrier protein 1.93977796476e-06 0.000538148330432 0.000536208552467 +UniRef50_B7GJM7 2 oxoglutarate ferredoxin oxidoreductase, beta subunit 0.0127508646162 0.00325310898128 -0.00949775563492 +UniRef50_UPI000262500B dihydropteroate synthase 1.52809991299e-05 1.15182885366e-05 -3.7627105933e-06 +UniRef50_F7ZT52 ABC type transporter, duplicate ATPase component 0.000498898971513 0.00212976963129 0.00163087065978 +UniRef50_U5NN33 0.0418522193713 0.00480877260914 -0.0370434467622 +UniRef50_Q7VFA9 ATP dependent RNA helicase DeaD 0.000159480178144 0.00443469579344 0.0042752156153 +UniRef50_F2U351 1.36382083913e-06 5.5543749636e-06 4.19055412447e-06 +UniRef50_UPI000369F682 hypothetical protein 0.000180204914258 9.35406129701e-06 -0.000170850852961 +UniRef50_B9KZ43 GTPase Der 0.000766566470157 0.00086915135331 0.000102584883153 +UniRef50_B8HHC7 Formyltetrahydrofolate deformylase 0.000601677278104 0.000230116913138 -0.000371560364966 +UniRef50_D1BX90 Transcriptional regulator, LysR family 6.18396851872e-05 3.52262837378e-05 -2.66134014494e-05 +UniRef50_B4S6J0 UDP N acetylglucosamine 1 carboxyvinyltransferase 9.46832203863e-06 6.89920504126e-05 5.9523728374e-05 +UniRef50_P76117 0.00350581838882 0.000812398710068 -0.00269341967875 +UniRef50_I0C7E7 NikE 0.0254935710989 0.00297588058451 -0.0225176905144 +UniRef50_G7MCM7 Aminodeoxychorismate lyase 0.000189058091245 0.00105208141205 0.000863023320805 +UniRef50_A6LSA1 0.000143167884525 0.000433757706537 0.000290589822012 +UniRef50_I9LBA0 Alkaline phosphatase 0.000118017386351 0.0159990893513 0.0158810719649 +UniRef50_C5WFH4 UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase 0.00434467724944 0.00367750703236 -0.00066717021708 +UniRef50_Q55S44 1.1702548157e-05 4.02060549517e-05 2.85035067947e-05 +UniRef50_U5MVS9 Cytochrome b5 0.00201948088615 0.00129565060247 -0.00072383028368 +UniRef50_Q6GEQ8 Probable uridylyltransferase SAR2262 0.0208410287977 0.00445415142352 -0.0163868773742 +UniRef50_I0C5M6 Acyl CoA hydrolase 0.0164633051779 0.00155654286643 -0.0149067623115 +UniRef50_P39197 Phosphate acetyltransferase 2.39105784739e-05 6.40813151249e-06 -1.75024469614e-05 +UniRef50_X2N154 Glutamate synthase 0.00258080008632 0.000177929259451 -0.00240287082687 +UniRef50_P33315 Transketolase 2 5.28172458124e-06 4.38479513016e-06 -8.9692945108e-07 +UniRef50_P23354 1 phosphofructokinase 8.01266000219e-06 0.000182959842845 0.000174947182843 +UniRef50_P0AD42 Phosphatidylglycerophosphatase C 0.00296350704177 0.00136144382608 -0.00160206321569 +UniRef50_P0CB40 Phosphoethanolamine transferase EptC 0.0037319946603 0.00172392246925 -0.00200807219105 +UniRef50_UPI0003653436 hypothetical protein 0.000226927368029 4.5416144615e-05 -0.000181511223414 +UniRef50_T1A1M3 Cobyrinic acid a,c diamide synthase 2.44515119022e-05 7.7565575713e-05 5.31140638108e-05 +UniRef50_Q9HU82 0.000142447542961 0.000360875810829 0.000218428267868 +UniRef50_Q0T052 Malate dehydrogenase 0.00213015398234 0.000189103546545 -0.00194105043579 +UniRef50_UPI00047042B3 protoheme IX farnesyltransferase, partial 1.83988975329e-05 8.811365902e-05 6.97147614871e-05 +UniRef50_I3KYK8 0.00123456361474 0.000245625701145 -0.000988937913595 +UniRef50_B9E056 DNA repair protein RecO 0.000478397722615 0.000247472099328 -0.000230925623287 +UniRef50_W8UX70 Pirin 8.53728172102e-06 8.72226812083e-06 1.8498639981e-07 +UniRef50_A4WV68 0.00115905678836 0.00053693946399 -0.00062211732437 +UniRef50_UPI00047437FE 30S ribosomal protein S15, partial 0.00036668433021 0.000475094805256 0.000108410475046 +UniRef50_A4X0K4 0.0300055571713 0.00436688331536 -0.0256386738559 +UniRef50_UPI0003B358DD phytoene desaturase 6.30617128896e-06 3.13531484542e-05 2.50469771652e-05 +UniRef50_G7U9F5 0.00020046288771 0.0041452329292 0.00394477004149 +UniRef50_A4X0K2 0.0114331359002 0.00272021454746 -0.00871292135274 +UniRef50_V9W010 0.000216487923241 1.55822723944e-05 -0.000200905650847 +UniRef50_Q8A8R5 ATP dependent 6 phosphofructokinase 1 1.6131739956e-05 0.0140149105755 0.0139987788355 +UniRef50_E4RMY1 CoA substrate specific enzyme activase 0.000429789246994 0.00255939253788 0.00212960329089 +UniRef50_A0A031IYL1 0.000125689338356 0.000127654570816 1.96523246e-06 +UniRef50_P00358 Glyceraldehyde 3 phosphate dehydrogenase 2 1.08008182864e-05 8.2187355376e-06 -2.5820827488e-06 +UniRef50_W6TF97 Outer membrane protein assembly factor BamD 8.52202351465e-06 2.16384639622e-05 1.31164404475e-05 +UniRef50_UPI00016C52B2 potassium transporting ATPase subunit A 4.87815568839e-06 0.000386021959834 0.000381143804146 +UniRef50_P0AFR0 NTE family protein RssA 0.00317174674159 0.00215136218476 -0.00102038455683 +UniRef50_P0A9R0 Aspartate semialdehyde dehydrogenase 0.00411128250197 0.0118431750768 0.00773189257483 +UniRef50_Q8DU04 0.00202187564251 0.00117085918359 -0.00085101645892 +UniRef50_R9YS20 Phage portal family protein 0.0024987985815 0.000379421891038 -0.00211937669046 +UniRef50_V8EVN4 0.00124347018405 0.00089040212621 -0.00035306805784 +UniRef50_G8LI42 0.00142978596829 0.000614749501921 -0.000815036466369 +UniRef50_Q8DU03 0.00793800496678 0.000412069821193 -0.00752593514559 +UniRef50_A6LTA9 0.000976256867724 0.00935926788773 0.00838301102001 +UniRef50_UPI000402B508 peptide deformylase 2.87131447448e-05 1.93873141191e-05 -9.3258306257e-06 +UniRef50_W7U2M8 1.3349098486e-05 5.367577662e-06 -7.981520824e-06 +UniRef50_E8QFC4 0.000301988791085 0.00260166041199 0.0022996716209 +UniRef50_P45303 2 oxoglutarate dehydrogenase E1 component 4.8595850617e-05 0.0104775174901 0.0104289216395 +UniRef50_A6LQ67 GntR domain protein 0.000477830365635 0.00339045928521 0.00291262891957 +UniRef50_A0A036I5S3 8.81176511406e-05 0.000145671086782 5.75534356414e-05 +UniRef50_P45240 Sodium glutamate symport carrier protein 0.0036658949996 0.0100387145615 0.0063728195619 +UniRef50_UPI00047875CB hypothetical protein 7.94316094354e-06 6.19839150672e-05 5.40407541237e-05 +UniRef50_A6TGA9 HTH type transcriptional activator RhaS 0.00211730969928 0.000219838738361 -0.00189747096092 +UniRef50_B7V1B6 0.00132391861385 0.00043858916614 -0.00088532944771 +UniRef50_L9BSL0 Penicillin binding protein activator LpoA 0.00107250441969 0.000190734858542 -0.000881769561148 +UniRef50_A0A043WFQ4 2.83124416727e-05 2.2149529354e-05 -6.1629123187e-06 +UniRef50_P73426 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00329222940049 0.000401679048146 -0.00289055035234 +UniRef50_P71239 Putative colanic acid biosynthesis glycosyl transferase WcaE 0.000866590360751 0.000795244486817 -7.1345873934e-05 +UniRef50_UPI000410C3F5 bacitracin ABC transporter ATP binding protein 1.10225717888e-05 1.27685304248e-05 1.745958636e-06 +UniRef50_UPI0002D5F775 ATPase 4.9885532083e-05 4.4625668772e-05 -5.259863311e-06 +UniRef50_UPI00037CF9B5 hypothetical protein 7.45201199033e-05 4.87106337714e-05 -2.58094861319e-05 +UniRef50_UPI000405E993 acetyltransferase 5.37854786543e-05 0.000299012328242 0.000245226849588 +UniRef50_I7B8G3 Poly 0.000637231987322 0.000826821320576 0.000189589333254 +UniRef50_B4RA53 3.03222068082e-05 3.16480523303e-05 1.3258455221e-06 +UniRef50_UPI000373244E hypothetical protein 9.52816567006e-06 6.1216679113e-05 5.16885134429e-05 +UniRef50_P35482 Alkaline phosphatase L 0.00215315467719 0.000382286997012 -0.00177086768018 +UniRef50_B9KJR5 Binding protein dependent transport systems inner membrane component 0.0012975591023 0.000461259753837 -0.000836299348463 +UniRef50_UPI0003B5FEB1 sulfate transporter 5.66195050081e-05 1.2972346332e-05 -4.36471586761e-05 +UniRef50_UPI0004657597 hypothetical protein 2.32343274735e-05 7.35403034455e-05 5.0305975972e-05 +UniRef50_Q5F8F6 tRNA lysidine synthase 0.00036905839131 0.00294703239931 0.002577974008 +UniRef50_UPI00047939C9 Fis family transcriptional regulator 0.000360070132245 0.000146950401638 -0.000213119730607 +UniRef50_D6AYQ3 0.000437027514448 0.000217448020881 -0.000219579493567 +UniRef50_C7RP31 0.000410149103732 0.00111166927105 0.000701520167318 +UniRef50_UPI000347473B ABC transporter permease 4.17237915091e-05 6.96944164614e-05 2.79706249523e-05 +UniRef50_H6PD14 Oxidoreductase,pyridinenucleotide disulfide, class I 0.0022202328079 0.00182498836633 -0.00039524444157 +UniRef50_Q99WQ6 Lipase 2 0.014421842654 0.0028858997087 -0.0115359429453 +UniRef50_A3PMS2 Chromosome partition protein Smc 0.00106247713254 0.00043733494839 -0.00062514218415 +UniRef50_UPI00046813B7 hypothetical protein 8.61351368169e-05 1.73546326286e-05 -6.87805041883e-05 +UniRef50_Q9K0Y6 Phospho N acetylmuramoyl pentapeptide transferase 0.00280896417523 0.010830892556 0.00802192838077 +UniRef50_UPI000248DDD1 sugar ABC transporter permease 1.77521528267e-05 0.000202410115945 0.000184657963118 +UniRef50_P49433 Glyceraldehyde 3 phosphate dehydrogenase 1 2.49020807337e-05 2.75708028578e-05 2.6687221241e-06 +UniRef50_Q99Y18 6 phospho beta galactosidase 0.0264831448372 0.0073104365963 -0.0191727082409 +UniRef50_P14953 Anthranilate synthase component 1 1.04165324688e-05 1.56973389576e-05 5.2808064888e-06 +UniRef50_U5RY54 0.000197208268834 0.00172746271754 0.00153025444871 +UniRef50_Q97GY4 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000640548442558 0.00209242508865 0.00145187664609 +UniRef50_P0DC56 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.00778206562738 0.00601532214999 -0.00176674347739 +UniRef50_UPI0003C7A2A0 hypothetical protein 7.77195970112e-05 0.000577900624486 0.000500181027475 +UniRef50_K2JJ46 NAD specific glutamate dehydrogenase 7.19633193391e-05 5.9241299866e-05 -1.27220194731e-05 +UniRef50_M9B494 7.78576930011e-05 8.63214005412e-05 8.4637075401e-06 +UniRef50_Q9RSU0 Glutamine synthase 9.75631551138e-05 0.0499112496199 0.0498136864648 +UniRef50_UPI000375E388 hypothetical protein, partial 7.4192639978e-05 2.57091751582e-05 -4.84834648198e-05 +UniRef50_W4TMV5 2.22941369635e-05 0.000136458157977 0.000114164021013 +UniRef50_Q46267 Pyruvate formate lyase activating enzyme 5.20290834472e-05 0.00229710190775 0.0022450728243 +UniRef50_F8JI17 0.000282171367632 1.25680876309e-05 -0.000269603280001 +UniRef50_A7INU8 Anhydro N acetylmuramic acid kinase 4.50929574888e-06 2.44405435681e-05 1.99312478192e-05 +UniRef50_D0D2I8 ArsC family protein 0.000120915942346 7.22677741709e-05 -4.86481681751e-05 +UniRef50_B2Y834 Abortive phage resistance protein like protein 0.00867933720424 0.00352586565796 -0.00515347154628 +UniRef50_P0AA69 Threonine homoserine exporter RhtA 0.00303146107685 0.00183958609873 -0.00119187497812 +UniRef50_UPI00047DFAFF hypothetical protein 3.39537933543e-06 2.79241872734e-06 -6.0296060809e-07 +UniRef50_M4NGT3 Arsenical resistance protein ArsH 0.000296067442241 0.00812320374969 0.00782713630745 +UniRef50_Q47539 Taurine transport system permease protein TauC 0.00266478013264 0.00814200202826 0.00547722189562 +UniRef50_W4UB64 Menaquinone specific isochorismate synthase 0.00036296729697 0.00135047144752 0.00098750415055 +UniRef50_C2W144 Cell wall surface anchor 3.40130826249e-06 0.000299474824448 0.000296073516186 +UniRef50_UPI00035CC609 hypothetical protein 0.000121836328929 9.02753853642e-05 -3.15609435648e-05 +UniRef50_Q2RP22 Dual specificity RNA methyltransferase RlmN 0.0107307669935 0.00214281541268 -0.00858795158082 +UniRef50_UPI0003C16468 PREDICTED 7.89544409101e-06 4.72636564893e-06 -3.16907844208e-06 +UniRef50_UPI000476C674 hypothetical protein 9.69708710926e-06 1.56551135474e-05 5.95802643814e-06 +UniRef50_Z5XDL4 Glutamate synthase 3.23186144207e-06 3.06062049218e-06 -1.7124094989e-07 +UniRef50_UPI0004774B62 hypothetical protein, partial 4.06777620211e-05 3.20489455372e-05 -8.6288164839e-06 +UniRef50_A1IRN6 8.90841136789e-05 0.00130722608256 0.00121814196888 +UniRef50_UPI000477DB28 NrdR family transcriptional regulator 9.34125128345e-05 0.000133689831989 4.02773191545e-05 +UniRef50_UPI0002E108A4 hypothetical protein 3.17006815175e-05 0.000212236204661 0.000180535523144 +UniRef50_C3YD63 1.52303062457e-06 4.07171857443e-06 2.54868794986e-06 +UniRef50_UPI00037451D4 hypothetical protein 8.28759168097e-06 9.29504144432e-06 1.00744976335e-06 +UniRef50_P0A585 Glucose 6 phosphate 1 dehydrogenase 2 1.17362633558e-05 0.00740612531387 0.00739438905051 +UniRef50_A5UNF6 Putative Zn peptidase 0.00466781943369 0.000254218110649 -0.00441360132304 +UniRef50_Q46820 0.00213469435242 0.000465842697415 -0.00166885165501 +UniRef50_G0LV16 CAAX amino terminal protease family protein 0.00752090649818 0.00149350521893 -0.00602740127925 +UniRef50_K0HMU2 Polysaccharide deacetylase 0.000493834622703 0.00530509906634 0.00481126444364 +UniRef50_A6LYX7 0.000461536301295 0.000255317036191 -0.000206219265104 +UniRef50_UPI0003795D86 hypothetical protein 4.33034926066e-05 0.000318144203592 0.000274840710985 +UniRef50_UPI00046281E4 PREDICTED 0.000141084058665 0.000712975280051 0.000571891221386 +UniRef50_O25242 DNA polymerase III subunit beta 0.000101112318447 0.00403959574074 0.00393848342229 +UniRef50_Q8D5U6 0.000159434593721 0.00230683569368 0.00214740109996 +UniRef50_B9KJP6 NADH hydrate epimerase 7.31925595303e-05 7.15655687981e-05 -1.6269907322e-06 +UniRef50_M9B696 Bifunctional glmU domain protein 0.00165646172412 0.000851875111142 -0.000804586612978 +UniRef50_Q820V5 Enoyl [acyl carrier protein] reductase [NADH] FabI 1.25395055315e-05 0.00189832920819 0.00188578970266 +UniRef50_Q1CG91 Methionine import ATP binding protein MetN 1 1.82552416953e-05 2.23241459225e-05 4.0689042272e-06 +UniRef50_Q186R1 Thiazole synthase 0.000837528356113 0.00297397047942 0.00213644212331 +UniRef50_H6LJB5 Chemotaxis protein methyltransferase CheR2 0.000300788024613 0.0016249039914 0.00132411596679 +UniRef50_UPI000328B359 PREDICTED 4.09183807218e-05 4.40997348515e-05 3.1813541297e-06 +UniRef50_Q8K9N2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.62645836624e-05 2.52217190258e-05 8.9571353634e-06 +UniRef50_D2AAC8 Biotin sulfoxide reductase 0.00133387709286 8.05043267146e-05 -0.00125337276615 +UniRef50_B8CY71 Lon protease 6.7944948875e-06 1.5359773394e-05 8.5652785065e-06 +UniRef50_R9SL42 0.0031431773612 0.000815840095442 -0.00232733726576 +UniRef50_M1FGU0 0.00042825448039 0.00236253364156 0.00193427916117 +UniRef50_P19496 Coenzyme F420 hydrogenase subunit alpha 0.00165309763648 0.000367596858647 -0.00128550077783 +UniRef50_A7ZU67 Der GTPase activating protein YihI 0.00304624412835 0.000714075750017 -0.00233216837833 +UniRef50_Q8TX50 50S ribosomal protein L10 0.00165989492411 0.000797251355547 -0.000862643568563 +UniRef50_A6LX70 MukB N terminal domain M protein repeat protein 0.00065873309663 0.00143271639743 0.0007739833008 +UniRef50_E3DSX1 KdgR1 0.000818368301181 0.00129675182196 0.000478383520779 +UniRef50_UPI000464DA5F ABC transporter 5.59939890418e-06 1.38348009265e-05 8.23540202232e-06 +UniRef50_UPI0003FDD6FE FAD containing monooxygenase EthA 1.17356455547e-05 0.00238205925472 0.00237032360917 +UniRef50_A0A022LQG6 Glyoxalase 2.9420058585e-05 3.7942528545e-05 8.52246996e-06 +UniRef50_Q3J3Q2 0.00326318618142 0.00112057516709 -0.00214261101433 +UniRef50_UPI0003F48E9A hypothetical protein TREMEDRAFT_26315 2.69750014306e-06 3.42607698797e-06 7.2857684491e-07 +UniRef50_S5RL61 ATP dependent DNA helicase 0.0056491774676 0.00253834531831 -0.00311083214929 +UniRef50_B8FP23 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.53507860593e-05 8.37965866608e-06 -6.97112739322e-06 +UniRef50_A4EPQ9 0.00681816818623 0.00361091044288 -0.00320725774335 +UniRef50_UPI000329816A PREDICTED 5.08374541215e-05 0.00018976776119 0.000138930307068 +UniRef50_G1XX87 0.000181024986141 0.00131706190063 0.00113603691449 +UniRef50_A0A024L1D8 Antirestriction protein 4.98892606782e-05 0.000391147953907 0.000341258693229 +UniRef50_U5MT98 0.000590476353155 0.00166053057755 0.00107005422439 +UniRef50_Q1RK88 0.00456424049103 0.00488387348001 0.00031963298898 +UniRef50_X0PNW8 DNA gyrase subunit B 1.62962300532e-05 0.000137760030061 0.000121463800008 +UniRef50_UPI0003752FD7 hypothetical protein, partial 0.000239535396236 0.000101061680298 -0.000138473715938 +UniRef50_Q03KB7 ATP dependent 6 phosphofructokinase 0.00478124301285 0.00382948422281 -0.00095175879004 +UniRef50_Q2FH56 Putative oligopeptide transport system permease protein oppC2 0.0205963816924 0.00237620889639 -0.018220172796 +UniRef50_A1SW90 Beta hexosaminidase 4.07470685053e-06 2.49014504511e-05 2.08267436006e-05 +UniRef50_UPI0001B664E4 Os08g0187500 8.10315376137e-05 0.00044673363675 0.000365702099136 +UniRef50_B2UZH1 Cyanophycinase 0.00119936410372 0.00292835996884 0.00172899586512 +UniRef50_A6M0N2 Signal transduction histidine kinase, LytS 0.000932503262961 0.000970362057043 3.7858794082e-05 +UniRef50_A6LYP0 PTS system, mannose fructose sorbose family, IIA subunit 0.000286698219379 0.00254783039777 0.00226113217839 +UniRef50_A0A023KNT6 0.000150395407342 0.000215814277023 6.5418869681e-05 +UniRef50_Q2YU28 0.00161615964863 0.000153332570187 -0.00146282707844 +UniRef50_UPI0001FFEA10 ABC transporter 9.42562944799e-05 2.49498033757e-05 -6.93064911042e-05 +UniRef50_G5J8I8 Transposase, Tn3 family 2.55846774511e-05 0.00128569724911 0.00126011257166 +UniRef50_UPI000361DFBB hypothetical protein 4.81947407208e-06 8.02953902992e-06 3.21006495784e-06 +UniRef50_A3PNG9 Transferase hexapeptide repeat containing protein 0.0104750361539 0.0018630623084 -0.0086119738455 +UniRef50_B9NR02 0.00377552927356 0.000428149721403 -0.00334737955216 +UniRef50_P39916 Thioredoxin reductase 0.0101142581658 0.0101379492084 2.36910426e-05 +UniRef50_B0VT23 Erythronate 4 phosphate dehydrogenase 0.000420854951058 0.00871508239562 0.00829422744456 +UniRef50_Q02RB8 UDP 3 O acylglucosamine N acyltransferase 0.0015265059377 0.000982087922008 -0.000544418015692 +UniRef50_A0LM36 Macrolide export ATP binding permease protein MacB 3.17051649979e-06 1.41139116432e-05 1.09433951434e-05 +UniRef50_UPI0004713629 hypothetical protein 0.000299420651106 0.00028588446127 -1.3536189836e-05 +UniRef50_Q3V7R9 4 hydroxythreonine 4 phosphate dehydrogenase 0.000926690746418 7.09958081303e-06 -0.000919591165605 +UniRef50_A3M2D7 DNA primase 0.000191933123357 0.0103129813918 0.0101210482684 +UniRef50_G3GPU6 9.52024639151e-06 2.19460337709e-05 1.24257873794e-05 +UniRef50_Q5HRQ3 Peptidyl tRNA hydrolase 0.00964635371193 0.00245405725638 -0.00719229645555 +UniRef50_Q4L4Y2 ATP dependent helicase deoxyribonuclease subunit B 0.0115570726846 0.00263892526894 -0.00891814741566 +UniRef50_A3SHH8 5.73401723464e-05 3.61154484524e-05 -2.1224723894e-05 +UniRef50_UPI00045E8170 hypothetical protein 6.09339181379e-06 1.01273537124e-05 4.03396189861e-06 +UniRef50_UPI000371708D hypothetical protein 0.000101912128211 5.48238585019e-05 -4.70882697091e-05 +UniRef50_R8S9D2 9.50442621984e-05 0.011640101584 0.0115450573218 +UniRef50_C1DIU1 Response regulator 0.00309420256021 0.00130341252148 -0.00179079003873 +UniRef50_R7MTU6 0.00503446074007 0.00147724168973 -0.00355721905034 +UniRef50_P77768 0.00192106833763 0.00040664849239 -0.00151441984524 +UniRef50_UPI00046ADC84 transposase 3.91429399837e-06 8.86595122707e-06 4.9516572287e-06 +UniRef50_UPI00047D345D hypothetical protein 3.17999080168e-05 2.37858741144e-05 -8.0140339024e-06 +UniRef50_B2TQ47 Shikimate kinase 0.000235928743029 0.00130787911857 0.00107195037554 +UniRef50_P50852 PTS system mannitol specific EIICB component 7.99085938229e-06 9.66299220863e-06 1.67213282634e-06 +UniRef50_UPI000368B6A3 hypothetical protein, partial 3.07655091778e-05 3.1218179004e-05 4.526698262e-07 +UniRef50_A6LU00 Baseplate J family protein 0.000357453725764 0.00246599753734 0.00210854381158 +UniRef50_UPI0003B708C3 DNA glycosylase, partial 5.75759874775e-05 0.000161466798753 0.000103890811275 +UniRef50_A0A011PVV2 0.000162938363087 0.000666152906117 0.00050321454303 +UniRef50_G7M9T7 0.00088114942308 0.00141687953598 0.0005357301129 +UniRef50_A4VN57 Oxidoreductase, molybdopterin binding 0.000241258907866 9.62989256126e-05 -0.000144959982253 +UniRef50_Q9I0H4 Flavohemoprotein 0.00101717425989 5.11872506009e-05 -0.000965987009289 +UniRef50_UPI00026306CB ubiquinol cytochrome C reductase 0.000109625419348 4.49333072065e-05 -6.46921121415e-05 +UniRef50_Q9RZD6 Ferredoxin nitrite reductase 0.000301421464354 0.0344282270331 0.0341268055687 +UniRef50_U3T069 Nicotinamide nucleotide adenylyltransferase 0.000382587150866 0.00277462359093 0.00239203644006 +UniRef50_A5UJ97 0.00394226652981 0.000346988903649 -0.00359527762616 +UniRef50_A8L7A1 Putative transcriptional regulator 6.43992197656e-05 2.27393772044e-05 -4.16598425612e-05 +UniRef50_UPI0004729065 membrane protein 3.05030440267e-05 1.04666874197e-05 -2.0036356607e-05 +UniRef50_M4VIT1 MotA TolQ ExbB proton channel family protein 0.00298165438002 0.0019559822084 -0.00102567217162 +UniRef50_Q5HKI1 Probable succinyl diaminopimelate desuccinylase 0.0202955628631 0.00582029046095 -0.0144752724022 +UniRef50_UPI0003620D57 hypothetical protein 1.65138140605e-06 9.06269473625e-06 7.4113133302e-06 +UniRef50_G4QII0 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein 0.00499633516867 0.0060963709524 0.00110003578373 +UniRef50_UPI0001FFF2A8 putative hydrolase 1.01513511738e-05 7.81778520282e-05 6.80265008544e-05 +UniRef50_UPI0003D0D2FE PREDICTED 2.78207475169e-05 2.46269420503e-05 -3.1938054666e-06 +UniRef50_V9U2A1 Thioesterase PvdG involved in non ribosomal peptide biosynthesis 0.000719562651032 0.000681500088921 -3.8062562111e-05 +UniRef50_E4CZ61 0.000589821857578 0.00184572940748 0.0012559075499 +UniRef50_A6TRD7 0.000202711978108 0.00120527589669 0.00100256391858 +UniRef50_UPI0002D6A2EC deoxyguanosinetriphosphate triphosphohydrolase 7.32536050167e-05 5.6176240941e-06 -6.76359809226e-05 +UniRef50_P9WGC6 Succinyl CoA ligase [ADP forming] subunit alpha 0.011603345089 0.00796659258257 -0.00363675250643 +UniRef50_UPI00037FF954 hypothetical protein 1.35283566279e-05 7.86820024732e-05 6.51536458453e-05 +UniRef50_UPI0003B73915 potassium transporter TrkA 8.12097968596e-06 1.34428828904e-05 5.32190320444e-06 +UniRef50_UPI000463E242 hypothetical protein 5.12334019912e-06 3.41577203972e-05 2.90343801981e-05 +UniRef50_A3PH06 0.0138328769499 0.00357363137893 -0.010259245571 +UniRef50_P23630 Diaminopimelate decarboxylase 9.09729700937e-06 0.00148169990653 0.00147260260952 +UniRef50_A8F7Z9 Ornithine carbamoyltransferase 6.04205672409e-06 8.36436123122e-06 2.32230450713e-06 +UniRef50_P0AFS5 AI 2 transport protein TqsA 0.00334426124009 0.00144804104504 -0.00189622019505 +UniRef50_UPI0003449BF9 acetolactate synthase 3.29398305574e-05 0.000984241736536 0.000951301905979 +UniRef50_UPI0003B58311 citrate synthase, partial 2.32538742189e-05 5.71442172265e-05 3.38903430076e-05 +UniRef50_A0A023RXS3 Magnesium transporter 0.000337842557968 0.00644628195509 0.00610843939712 +UniRef50_A9NAA5 Phosphoheptose isomerase 0.00637758434682 0.00281154134615 -0.00356604300067 +UniRef50_UPI000249446F cellobiose phosphorylase 0.000114378563817 0.000150705006754 3.6326442937e-05 +UniRef50_A9M3I8 dTDP 4 dehydrorhamnose reductase 0.00110523249462 0.00216042348677 0.00105519099215 +UniRef50_Q46851 L glyceraldehyde 3 phosphate reductase 0.00442795078185 0.00598245808684 0.00155450730499 +UniRef50_UPI000300C9AC heme ABC transporter ATP binding protein 2.01490003621e-05 8.0258825366e-05 6.01098250039e-05 +UniRef50_K4NDS6 0.000120989098994 0.00198480952046 0.00186382042147 +UniRef50_T0ZCE6 Thiamine biosynthesis protein ThiC 2.04562772034e-05 8.12653630909e-05 6.08090858875e-05 +UniRef50_A8FEQ2 Pseudouridine synthase 0.0071191407092 0.00283095504139 -0.00428818566781 +UniRef50_A6M2V9 Methyl accepting chemotaxis sensory transducer 7.84794155617e-05 0.00150074286437 0.00142226344881 +UniRef50_P64434 Inner membrane protein YpjD 0.00293604828794 0.000208213893202 -0.00272783439474 +UniRef50_D3E0C1 0.00420301781789 0.000428129877289 -0.0037748879406 +UniRef50_UPI0002196E63 amino acid ABC transporter periplasmic protein 6.73356453807e-06 9.21004062606e-06 2.47647608799e-06 +UniRef50_I6D8C7 Sensor atoS domain protein 0.00237183370661 0.000404543431768 -0.00196729027484 +UniRef50_E6MU88 DNA binding response regulator, Fis family 0.000215115103052 0.00451759698677 0.00430248188372 +UniRef50_B8DW19 30S ribosomal protein S3 0.00161659948589 0.00409237941937 0.00247577993348 +UniRef50_Q83BS0 Transcription termination antitermination protein NusA 0.00395200935005 0.00915030030039 0.00519829095034 +UniRef50_P02924 L arabinose binding periplasmic protein 0.00148123092923 0.00021848338239 -0.00126274754684 +UniRef50_E5WAH0 0.000432235865095 0.000215284477612 -0.000216951387483 +UniRef50_UPI000477EDEC hypothetical protein 9.95893161909e-05 6.26745704145e-05 -3.69147457764e-05 +UniRef50_UPI00036184DA hypothetical protein 1.81090887652e-05 3.91604677352e-06 -1.41930419917e-05 +UniRef50_Q0ASX6 1.93664009927e-05 4.16074123058e-05 2.22410113131e-05 +UniRef50_A9BTA7 Non canonical purine NTP pyrophosphatase 3.31090980871e-05 1.34930922527e-05 -1.96160058344e-05 +UniRef50_C7Q8K8 6.33023679082e-06 0.00071063468417 0.000704304447379 +UniRef50_U5AI32 DNA polymerase III subunit beta 0.0015099439554 0.000188500024587 -0.00132144393081 +UniRef50_G5MH51 3.47493861839e-05 3.6410037568e-05 1.6606513841e-06 +UniRef50_UPI000475DCB4 ATPase, partial 0.000181680432359 0.00316450718534 0.00298282675298 +UniRef50_UPI0003B5589D hypothetical protein 2.45949660491e-06 1.50185023973e-05 1.25590057924e-05 +UniRef50_UPI000363404F MULTISPECIES 1.78925068132e-05 1.79820425666e-05 8.95357534e-08 +UniRef50_S1SPS9 PTS system transporter subunit IIA 0.00572303066785 0.000957783908741 -0.00476524675911 +UniRef50_UPI00037ACE4F hypothetical protein 5.24489057051e-06 7.48844184284e-06 2.24355127233e-06 +UniRef50_A5UJD7 Predicted transposase 0.00360697537197 0.000713394269692 -0.00289358110228 +UniRef50_A9B4Z7 NADH quinone oxidoreductase subunit D 1 6.21073167249e-06 7.42080091766e-05 6.79972775041e-05 +UniRef50_F3SFL5 0.000309270081671 7.20353275986e-05 -0.000237234754072 +UniRef50_UPI00036E2F89 hypothetical protein 0.000492745695945 2.14110756335e-05 -0.000471334620312 +UniRef50_UPI000469CEC8 hypothetical protein 1.82046109492e-05 3.98851393146e-06 -1.42160970177e-05 +UniRef50_A8GE31 PTS system, maltose and glucose specific IIAbc component 0.000191602065363 5.95596999188e-05 -0.000132042365444 +UniRef50_K7TAU7 0.000786184567758 0.000110712867877 -0.000675471699881 +UniRef50_Q1C1E0 Glycogen debranching enzyme 0.00298322902965 0.000241700997045 -0.0027415280326 +UniRef50_Q2RRM4 N acetyl gamma glutamyl phosphate reductase 5.85980225593e-05 2.24794465634e-05 -3.61185759959e-05 +UniRef50_T2DXA7 0.00105603699885 0.00268469731995 0.0016286603211 +UniRef50_UPI00035EBF42 hypothetical protein 0.000341046528148 0.000128732906505 -0.000212313621643 +UniRef50_P52146 Arsenical pump membrane protein 0.0226288889207 0.00655159883118 -0.0160772900895 +UniRef50_B9DN29 6,7 dimethyl 8 ribityllumazine synthase 1.60933768439e-05 6.21860919488e-05 4.60927151049e-05 +UniRef50_UPI0002D3715C hypothetical protein 0.00164033516518 8.51871004283e-06 -0.00163181645514 +UniRef50_Q55038 Amidophosphoribosyltransferase 4.3283230997e-06 6.73673434576e-05 6.30390203579e-05 +UniRef50_M4KMH2 Cysteine desulfurase 0.00336005900066 0.00473844407918 0.00137838507852 +UniRef50_UPI000476ECF5 hypothetical protein 0.000207713318283 5.93918699409e-05 -0.000148321448342 +UniRef50_Q9UZU7 Phosphate import ATP binding protein PstB 0.00729162451769 0.0105844478216 0.00329282330391 +UniRef50_UPI0003C1AD3B PREDICTED 3.37736341156e-05 6.45326877495e-06 -2.73203653406e-05 +UniRef50_S6B705 0.00811158127318 0.00294201310697 -0.00516956816621 +UniRef50_A6M0A3 0.00023349648795 0.000335587164987 0.000102090677037 +UniRef50_Q38451 C repressor 0.00155293136979 0.00272362141742 0.00117069004763 +UniRef50_Q88VD4 30S ribosomal protein S20 0.0022117862046 0.00133225581291 -0.00087953039169 +UniRef50_B0CHX9 Adenine phosphoribosyltransferase 0.00757968032653 0.000798046467691 -0.00678163385884 +UniRef50_A3WPC3 0.000190849599432 0.000272116370809 8.1266771377e-05 +UniRef50_UPI00028995EB 6 pyruvoyl tetrahydropterin synthase 0.000107300780255 0.00083595193852 0.000728651158265 +UniRef50_A0A022NGW7 2.10984624753e-05 0.000273676672327 0.000252578209852 +UniRef50_Q890R5 tRNA pseudouridine synthase A 2 0.000471857486069 0.00275353749934 0.00228168001327 +UniRef50_UPI000464C09A GntR family transcriptional regulator, partial 2.24152182028e-05 3.00769829037e-05 7.6617647009e-06 +UniRef50_H3V9W4 0.00129230863228 0.000211763948756 -0.00108054468352 +UniRef50_A6LSW5 Cobalamin synthase 0.000151398123869 0.00051088667735 0.000359488553481 +UniRef50_U5MTT1 Transcriptional regulator, AraC family 0.000135949335724 0.00156429884676 0.00142834951104 +UniRef50_A9IYN9 Elongation factor P 0.0203834695393 0.00372004565284 -0.0166634238865 +UniRef50_B5QX24 Protein TolB 0.00317935108626 0.00183648513329 -0.00134286595297 +UniRef50_P0A9D0 Fructose 1,6 bisphosphatase class 2 0.00265203254394 0.00224914685275 -0.00040288569119 +UniRef50_K2EHJ4 5.01000550452e-06 0.000686783035329 0.000681773029824 +UniRef50_O25582 Protease HtpX homolog 0.000132451224162 0.00208228370361 0.00194983247945 +UniRef50_Q2IGL4 Bifunctional protein GlmU 5.86563372479e-06 6.48345017174e-06 6.1781644695e-07 +UniRef50_D3E2G7 0.000636573839715 0.000316410755563 -0.000320163084152 +UniRef50_W1TXW2 Prophage LambdaSa04, terminase, large subunit 1.07736379702e-05 0.000108341431842 9.75677938718e-05 +UniRef50_D5ZU02 Modular polyketide synthase 0.000118450535691 0.000436624021654 0.000318173485963 +UniRef50_UPI00047270A3 ribosome associated protein IOJAP 5.07169856552e-05 4.30986570067e-05 -7.6183286485e-06 +UniRef50_UPI00042AA310 PREDICTED 1.12532928975e-05 4.17376532099e-06 -7.07952757651e-06 +UniRef50_D8GM15 Membrane associated dicarboxylate carrier protein 0.00039875280513 0.00604089305011 0.00564214024498 +UniRef50_UPI0003B419EF serine threonine protein phosphatase 1.55083930543e-05 2.05315042169e-05 5.0231111626e-06 +UniRef50_A0A011PK79 Glucose inhibited division protein A 1.3425977207e-05 1.92770218348e-05 5.8510446278e-06 +UniRef50_D9CIX9 SAD1f 2.41047234099e-07 9.02138052573e-06 8.78033329163e-06 +UniRef50_Q3IXN3 Phosphatidylethanolamine 0.00406268926363 0.00155421583442 -0.00250847342921 +UniRef50_G8VAR4 Bacterial extracellular solute binding protein 0.000114621251678 0.00681250589398 0.0066978846423 +UniRef50_Q5HL87 Ribokinase 0.0215121393573 0.00457780099036 -0.0169343383669 +UniRef50_V8R0S4 Peptidase M16 0.000469493692399 0.000351568890229 -0.00011792480217 +UniRef50_UPI0002EDB6DA hypothetical protein 7.7083630768e-05 0.000144628714395 6.7545083627e-05 +UniRef50_C0P8W3 2.30967847119e-05 2.80874434628e-05 4.9906587509e-06 +UniRef50_M4WUF5 0.000148426917094 0.000117084282232 -3.1342634862e-05 +UniRef50_UPI00037D4258 hypothetical protein 0.004240520582 0.00236773269547 -0.00187278788653 +UniRef50_UPI000380CC39 hypothetical protein 2.24558682685e-05 0.000224591615183 0.000202135746915 +UniRef50_B9T8B0 4.12408609019e-05 8.60050235732e-06 -3.26403585446e-05 +UniRef50_Q8ZBY6 Acyl coenzyme A dehydrogenase 0.00201516242167 0.000318566984978 -0.00169659543669 +UniRef50_UPI000476F4CB ATPase P 4.09500726938e-06 0.000153035889006 0.000148940881737 +UniRef50_UPI0002DC070B hypothetical protein 1.30842289681e-05 0.000700175960592 0.000687091731624 +UniRef50_A6TLH7 Electron transfer flavoprotein, alpha subunit like protein 4.72161977211e-06 7.61534739281e-06 2.8937276207e-06 +UniRef50_W5X2T3 PAS PAC sensor signal transduction histidine kinase 0.000130823131346 8.4483527255e-05 -4.6339604091e-05 +UniRef50_Q88GV8 0.000192573175068 4.66856678433e-05 -0.000145887507225 +UniRef50_F4AJ46 Peptidase M24 0.000185953689091 0.000392488313224 0.000206534624133 +UniRef50_UPI000367681C hypothetical protein 1.73858808707e-05 8.20919341188e-06 -9.17668745882e-06 +UniRef50_A9M0F1 Lipoprotein 1.00069625113e-05 0.00262745013248 0.00261744316997 +UniRef50_A5UN02 Predicted RNA binding protein 0.00345593901787 0.000298802737126 -0.00315713628074 +UniRef50_L8ME45 2.45392808487e-05 2.43777178331e-05 -1.615630156e-07 +UniRef50_UPI0001FFE55B large conductance mechanosensitive channel, partial 3.03324270148e-05 2.33083961723e-05 -7.0240308425e-06 +UniRef50_B9EB85 Signal peptidase I 0.0700970244098 0.0233782198032 -0.0467188046066 +UniRef50_R5TSV1 Phosphoglucomutase phosphomannomutase family protein 8.04302533035e-05 0.00578139942827 0.00570096917497 +UniRef50_E3DAW5 Transposase of insertion element IS911A 2.94643236828e-05 6.97937974018e-05 4.0329473719e-05 +UniRef50_M9S895 Glycosyl transferase 0.00071670502361 0.000147535406424 -0.000569169617186 +UniRef50_S5DC92 0.000159501122048 0.00568037415438 0.00552087303233 +UniRef50_Q53554 Citrate synthase 1.97364103883e-05 2.67283437677e-05 6.9919333794e-06 +UniRef50_A0A011R9T0 Cyclolysin 2.15217698048e-05 4.71279253878e-06 -1.6808977266e-05 +UniRef50_I1ZNE0 SpoU rRNA methylase family protein 0.00949442730922 0.00444242804509 -0.00505199926413 +UniRef50_UPI000289013C enoyl CoA hydratase 1.14525905737e-05 1.88313456746e-05 7.3787551009e-06 +UniRef50_R7D190 6 phosphogluconate dehydrogenase 0.00012796135215 0.000731948967574 0.000603987615424 +UniRef50_A0A016QRP5 4.43528600823e-06 0.0005974070917 0.000592971805692 +UniRef50_P13510 Cobalt zinc cadmium resistance protein CzcB 0.000106134767253 0.000417998563486 0.000311863796233 +UniRef50_A4WRH7 0.000333931582955 0.000157447247136 -0.000176484335819 +UniRef50_F2E7K1 Predicted protein 6.7904108613e-05 7.48491993067e-05 6.9450906937e-06 +UniRef50_P34107 Superoxide dismutase [Fe] 1.03293699876e-05 1.16852801753e-05 1.3559101877e-06 +UniRef50_UPI0004423401 PREDICTED 0.000557195265686 0.0012944890027 0.000737293737014 +UniRef50_C9LYG0 Lipoprotein 0.000335266072023 0.00064281895211 0.000307552880087 +UniRef50_Q9HXK5 2 isopropylmalate synthase 0.00200916904916 0.00874221048132 0.00673304143216 +UniRef50_UPI00047437D2 hypothetical protein 5.57461330627e-06 8.00865325031e-05 7.45119191968e-05 +UniRef50_A6M2U6 Response regulator receiver protein 0.0157892387145 0.000805409195995 -0.0149838295185 +UniRef50_UPI0001FFE930 peptide ABC transporter ATP binding protein 6.93823201299e-06 1.29976423518e-05 6.05941033881e-06 +UniRef50_M0QW80 Protein Gm26571 5.9704915627e-05 0.00013691602474 7.7211109113e-05 +UniRef50_F8H984 Two component sensor 0.000796705380501 0.000765641599191 -3.106378131e-05 +UniRef50_L8NI67 0.000880181536158 2.48026924754e-05 -0.000855378843683 +UniRef50_P45868 Probable NAD dependent malic enzyme 2 6.70093471299e-05 0.00813897742778 0.00807196808065 +UniRef50_A5I0L6 Cyclic nucleotide binding domain protein 0.000329682086335 0.00082334917808 0.000493667091745 +UniRef50_X2H6U2 Two component system histidine kinase 0.000170231443998 0.00157595063205 0.00140571918805 +UniRef50_B6J695 NADH quinone oxidoreductase subunit B 4.69843950471e-05 0.000149777612459 0.000102793217412 +UniRef50_V4YKS4 DNA directed RNA polymerase 0.000201189692619 0.00859336482555 0.00839217513293 +UniRef50_L9TGP7 Exonuclease V subunit beta 0.00308265853862 0.00118325238587 -0.00189940615275 +UniRef50_Q6GE63 0.0151652193927 0.0010687929148 -0.0140964264779 +UniRef50_D4HD09 7.75125233802e-05 0.00058085561343 0.00050334309005 +UniRef50_UPI0003635A0A hypothetical protein 1.59214330895e-05 1.63979885134e-05 4.765554239e-07 +UniRef50_C0QFA3 PstS1 8.17862377826e-06 8.98200190359e-06 8.0337812533e-07 +UniRef50_A6M264 Lantibiotic modifying like protein 0.000117093750791 0.00152073231466 0.00140363856387 +UniRef50_UPI0001850C5F exsB protein 0.000105394585716 1.93409763765e-05 -8.60536093395e-05 +UniRef50_B4U3E4 Histidine protein kinase 0.00325160366933 0.00148515355014 -0.00176645011919 +UniRef50_R4QKT1 Fibronectin 0.000137434219241 0.00218021209411 0.00204277787487 +UniRef50_F2UJQ2 3.11738797491e-05 4.33162780722e-05 1.21423983231e-05 +UniRef50_UPI0003B71026 MerR family transcriptional regulator 8.57997512137e-05 0.000921781003275 0.000835981252061 +UniRef50_M4S432 LysR family transcriptional regulator 0.000354053911814 0.00874173380978 0.00838767989797 +UniRef50_V4PX87 2.59364552135e-05 2.69536001639e-05 1.0171449504e-06 +UniRef50_A6LXR1 0.000431554443823 0.000562278508468 0.000130724064645 +UniRef50_A6LX56 PAS PAC sensor signal transduction histidine kinase 0.000242967424109 0.000695364885176 0.000452397461067 +UniRef50_G8V9G8 Luciferase family oxidoreductase, group 1 0.000163886825841 0.00491061912461 0.00474673229877 +UniRef50_B9DIP6 Pseudouridine synthase 0.0110775720678 0.00844545331001 -0.00263211875779 +UniRef50_UPI00034DB930 hypothetical protein 2.57171408444e-06 1.12304112018e-05 8.65869711736e-06 +UniRef50_Q0FVR8 7.29873637411e-05 0.000131633456649 5.86460929079e-05 +UniRef50_Q7V5R2 Fumarate hydratase class II 7.30019021005e-06 1.31343062525e-05 5.83411604245e-06 +UniRef50_B2IAX9 Tyrosine tRNA ligase 0.00761203348401 0.00244901056399 -0.00516302292002 +UniRef50_D3A3L2 1.26825838155e-05 7.11301881401e-05 5.84476043246e-05 +UniRef50_H1KT40 0.00290318737689 0.00105163999278 -0.00185154738411 +UniRef50_Q2JKE8 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 3.64322486192e-06 3.70735589038e-06 6.413102846e-08 +UniRef50_A3VLI2 Replication initiator RepC 0.000230453306088 7.71870186729e-05 -0.000153266287415 +UniRef50_UPI00035F5471 hypothetical protein 1.27245397751e-05 5.60399985577e-05 4.33154587826e-05 +UniRef50_P44270 0.000264592982837 0.0029445705021 0.00267997751926 +UniRef50_N6WGS6 Glycolate oxidase iron sulfur subunit 5.94651311854e-05 0.000180123734392 0.000120658603207 +UniRef50_UPI0003637414 hypothetical protein 2.90185171882e-06 9.13743986684e-06 6.23558814802e-06 +UniRef50_B9ADC4 CRISPR associated endonuclease Cas1 0.00228873926688 0.000319261302914 -0.00196947796397 +UniRef50_Q28KP2 N acetylmuramic acid 6 phosphate etherase 0.00321927078461 0.000947854742547 -0.00227141604206 +UniRef50_O32507 Succinate semialdehyde dehydrogenase [NADP] 4.0595132169e-06 0.0369246351424 0.0369205756292 +UniRef50_Q8KBK4 50S ribosomal protein L13 0.00061383806848 0.00266548780668 0.0020516497382 +UniRef50_UPI0002378E6D type II secretion system protein E 3.92166305184e-05 1.83717811655e-05 -2.08448493529e-05 +UniRef50_P32135 Inner membrane protein YihN 0.00179553623626 0.00113263184739 -0.00066290438887 +UniRef50_B7GVD0 LysR substrate binding domain protein 0.000247638574341 0.0118613511056 0.0116137125313 +UniRef50_A6M010 GCN5 related N acetyltransferase 0.000226491593311 0.00166791829766 0.00144142670435 +UniRef50_F8G3F6 TetR family transcriptional regulator 0.000965146910892 0.000284414162307 -0.000680732748585 +UniRef50_UPI00047242E7 3 hydroxybutyryl CoA dehydrogenase 1.47167077255e-05 3.03264893491e-05 1.56097816236e-05 +UniRef50_A8B6F6 3.55149838826e-05 2.53285854649e-05 -1.01863984177e-05 +UniRef50_C5L3X3 Cysteine synthase, putative 0.00807227220333 0.00120342180401 -0.00686885039932 +UniRef50_UPI0002EB3FDF hypothetical protein 6.69042830817e-06 3.16499317672e-05 2.4959503459e-05 +UniRef50_Q6F7U5 0.000200790419604 0.00458029509603 0.00437950467643 +UniRef50_Q9I676 D hydantoinase dihydropyrimidinase 0.00511537562015 0.00130846340369 -0.00380691221646 +UniRef50_UPI00041336EE alkylhydroperoxidase 6.76031610453e-05 5.01882416977e-05 -1.74149193476e-05 +UniRef50_Q3BPQ5 0.0016517012413 1.94127552044e-05 -0.0016322884861 +UniRef50_F7W5G6 WGS project CABT00000000 data, contig 2.30 9.08206131398e-05 2.532379795e-05 -6.54968151898e-05 +UniRef50_O34808 Uronate isomerase 0.000377522927091 0.00134205138309 0.000964528455999 +UniRef50_UPI000362A126 hypothetical protein 2.03913702504e-05 2.79775292489e-05 7.5861589985e-06 +UniRef50_UPI000373C086 hypothetical protein 9.60690850746e-06 0.000191478854448 0.000181871945941 +UniRef50_A6M385 Response regulator receiver protein 0.000279243089872 0.00160011816692 0.00132087507705 +UniRef50_UPI0004560391 hypothetical protein PFL1_05761 9.48782743802e-06 1.03893234915e-05 9.0149605348e-07 +UniRef50_D6SI05 9.45418269506e-05 7.19506100539e-05 -2.25912168967e-05 +UniRef50_W7VQI3 Basic proline rich protein 0.000324458933387 0.000233759924953 -9.0699008434e-05 +UniRef50_C1AFW3 Cobyrinic acid a,c diamide adenosyltransferase 0.000420988091661 0.00615147218567 0.00573048409401 +UniRef50_UPI000474482D hypothetical protein, partial 4.8799441215e-05 7.01148922844e-05 2.13154510694e-05 +UniRef50_Q97IA9 UPF0348 protein CA_C1741 0.000530770698644 0.00136149150242 0.000830720803776 +UniRef50_UPI00042BA8AC PREDICTED 4.20936786899e-06 8.03451239949e-06 3.8251445305e-06 +UniRef50_UPI0001BC2D00 helicase 1.83468362206e-05 1.72958481906e-05 -1.05098803e-06 +UniRef50_P21517 Maltodextrin glucosidase 0.00128397278196 0.000468616028117 -0.000815356753843 +UniRef50_H3VA72 PF04394 family protein 0.0034541003871 0.001163868767 -0.0022902316201 +UniRef50_UPI00044163EB hypothetical protein PUNSTDRAFT_130809 3.15292419561e-06 1.42937091592e-05 1.11407849636e-05 +UniRef50_E3CRS2 6.67433513938e-05 0.000100156663863 3.34133124692e-05 +UniRef50_Q6FC54 DNA mismatch repair protein MutS 4.44101163304e-05 0.00707147443315 0.00702706431682 +UniRef50_UPI00032905A5 PREDICTED 3.68416892952e-05 2.85016180189e-06 -3.39915274933e-05 +UniRef50_E5API3 Transposase 0.000221659388509 1.12396165602e-05 -0.000210419771949 +UniRef50_Q3IUX0 0.00886254944158 0.0308796085115 0.0220170590699 +UniRef50_UPI00047647D3 hypothetical protein 0.00910473193407 0.00054309287487 -0.0085616390592 +UniRef50_O27047 tRNA 2 agmatinylcytidine synthetase TiaS 0.00282869476521 0.000669285643586 -0.00215940912162 +UniRef50_E3A3J4 Fimbrial subunit CupA4 0.000657234504483 0.000662817636785 5.583132302e-06 +UniRef50_UPI00047BE124 sulfite oxidase 5.79121391884e-05 1.67979497185e-05 -4.11141894699e-05 +UniRef50_P54954 Probable amino acid import ATP binding protein YxeO 8.15265684097e-05 0.00382811443517 0.00374658786676 +UniRef50_Q9X3Y6 DNA gyrase subunit B 0.000214882968851 0.00511277747173 0.00489789450288 +UniRef50_UPI000381C95D hypothetical protein 1.96172913023e-05 1.16112093236e-05 -8.0060819787e-06 +UniRef50_N8PPS0 0.000383372504894 0.00848735799787 0.00810398549298 +UniRef50_Q2S2A1 Imidazoleglycerol phosphate dehydratase 0.0062062804444 0.00280114894422 -0.00340513150018 +UniRef50_F2F5B1 Predicted acetamidase formamidase 0.00142387186085 0.000770110546665 -0.000653761314185 +UniRef50_P75859 0.00240530100595 0.000393755606923 -0.00201154539903 +UniRef50_C6SRL3 0.00495608320902 0.00113958131605 -0.00381650189297 +UniRef50_P58356 Sensor protein TorS 0.00366918755646 0.000363692462295 -0.00330549509416 +UniRef50_M2HZ79 Putative transposase, IS150 like protein 0.00109552298365 0.00127724543838 0.00018172245473 +UniRef50_A0A017HPG3 0.000904025779242 0.000356942450676 -0.000547083328566 +UniRef50_P20712 Bifunctional dihydrofolate reductase thymidylate synthase 5.12073118583e-06 2.4129427053e-05 1.90086958672e-05 +UniRef50_Q48BK0 Glucans biosynthesis protein D 1.53915406961e-05 1.52418596176e-05 -1.496810785e-07 +UniRef50_K7S7X3 1.48883121388e-05 2.02888098596e-05 5.4004977208e-06 +UniRef50_C8RX73 Flagellar FlaF family protein 0.000167318378477 0.000165757425253 -1.560953224e-06 +UniRef50_Q5FUN5 50S ribosomal protein L32 0.00209714438251 0.000978950403971 -0.00111819397854 +UniRef50_Q3JHB3 3.27857395839e-05 7.34097109433e-05 4.06239713594e-05 +UniRef50_C6S564 ATPase involved in chromosome partitioning 0.00011257037441 0.00416988611967 0.00405731574526 +UniRef50_B0VRQ2 7.1000499465e-05 0.00646945647554 0.00639845597608 +UniRef50_F9WBG1 WGS project CAEQ00000000 data, annotated contig 2102 6.10418093335e-07 1.18630956615e-06 5.75891472815e-07 +UniRef50_M9VFS0 Beta galactosidase 0.000123862344655 0.00633195477416 0.00620809242951 +UniRef50_UPI00038210EB hypothetical protein 0.000237210850672 4.61895850905e-05 -0.000191021265582 +UniRef50_Q5XAF5 PTS system mannose specific EIIAB component 0.00552220298693 0.00554790947272 2.570648579e-05 +UniRef50_UPI0003B66035 preprotein translocase subunit TatA 9.55732753513e-05 6.86300217818e-05 -2.69432535695e-05 +UniRef50_A8LLI4 Transcriptional regulator 0.0143903698112 0.000388574612093 -0.0140017951991 +UniRef50_UPI00036B21D8 hypothetical protein 1.18102176627e-05 8.63653118435e-06 -3.17368647835e-06 +UniRef50_P0A9G7 Isocitrate lyase 0.00406611707766 0.0364770124365 0.0324108953588 +UniRef50_Q726S7 Phosphate acetyltransferase 3.82973365645e-06 1.31027200223e-05 9.27298636585e-06 +UniRef50_Q57083 HTH type transcriptional regulator PerR 0.00330879058509 0.0015641985692 -0.00174459201589 +UniRef50_N4K7E1 Intergenic region domain protein 0.000526200647601 0.0006396751737 0.000113474526099 +UniRef50_UPI00029A45C7 alkyl hydroperoxide reductase thiol specific antioxidant mal allergen 6.75623760359e-06 0.00033362896853 0.000326872730926 +UniRef50_P0AEX1 1 phosphofructokinase 0.00166472052111 0.000496883622962 -0.00116783689815 +UniRef50_J9CDN0 2.25505843576e-05 0.000186497259647 0.000163946675289 +UniRef50_Q9I399 0.000228569321711 0.000416917701458 0.000188348379747 +UniRef50_D8JJR4 Indoleacetamide hydrolase (Indole 3 acetamidehydrolase) 9.92513555255e-05 0.00832622448222 0.00822697312669 +UniRef50_UPI00039D5255 cation 5.28631549336e-05 9.35584788275e-05 4.06953238939e-05 +UniRef50_UPI000369419C hypothetical protein 3.05585062349e-07 4.39177225311e-06 4.08618719076e-06 +UniRef50_UPI00040205B3 hypothetical protein 1.77045770218e-05 2.59565185919e-05 8.2519415701e-06 +UniRef50_UPI0002DD9DEF hypothetical protein 1.98681123168e-06 0.000397944536964 0.000395957725732 +UniRef50_Q3A6U9 Flotillin band_7_stomatin like domain protein 0.000379446938613 0.00388060305515 0.00350115611654 +UniRef50_H2J1V2 ABC type dipeptide oligopeptide nickel transport system, permease component 0.0104684002547 0.00154426802674 -0.00892413222796 +UniRef50_B0R6S2 Glycerol kinase 9.40084142776e-06 8.94217569414e-05 8.00209155136e-05 +UniRef50_UPI000345EF10 hypothetical protein 2.09841306288e-05 4.23716354448e-05 2.1387504816e-05 +UniRef50_UPI00035FBF65 hypothetical protein 9.62833370623e-06 0.000311324140237 0.000301695806531 +UniRef50_R9SJL7 Precorrin 6y C5,15 methyltransferase CbiE 0.00276703466835 0.00220302988858 -0.00056400477977 +UniRef50_UPI0004714D3A NADH dehydrogenase 0.000240732262149 0.000191502405819 -4.922985633e-05 +UniRef50_W9A1H3 0.000141607432314 0.000161604499835 1.9997067521e-05 +UniRef50_Q0RAT5 Spermidine putrescine import ATP binding protein PotA 5.54537504897e-05 6.35948160311e-05 8.1410655414e-06 +UniRef50_W7HYY6 2.89944484927e-06 3.5577540296e-05 3.26780954467e-05 +UniRef50_UPI000470BDCC ABC transporter permease 9.59655943502e-05 2.47907956537e-05 -7.11747986965e-05 +UniRef50_M9VFR5 D alanine D alanine ligase 0.000434178863226 0.00404067806697 0.00360649920374 +UniRef50_I0EM51 Zinc protease 8.75160715986e-05 0.00355021791245 0.00346270184085 +UniRef50_A6LYZ9 Peptidase C45, acyl coenzyme A 0.000103610060989 0.00103244253139 0.000928832470401 +UniRef50_B0I1W2 0.00738657644376 0.00877093063844 0.00138435419468 +UniRef50_Q8CS09 DNA topoisomerase 0.0100096381826 0.00315384583435 -0.00685579234825 +UniRef50_A9CR98 0.005501777326 0.000939029469613 -0.00456274785639 +UniRef50_D4U0U9 Cell wall binding repeat protein 2.16064499154e-05 0.000867345646852 0.000845739196937 +UniRef50_A9CR91 0.000775656141478 0.00158205377784 0.000806397636362 +UniRef50_A0A023S1K2 ABC transporter substrate binding protein 0.000487586068939 0.00813239015291 0.00764480408397 +UniRef50_UPI0003B30E52 organic solvent ABC transporter ATP binding protein 9.79427308235e-05 2.7827318037e-05 -7.01154127865e-05 +UniRef50_Q9I024 7.95767266761e-06 0.000267427461059 0.000259469788391 +UniRef50_Q52282 Putative protein KleG 8.69561404066e-05 0.00111536420528 0.00102840806487 +UniRef50_UPI0004784EFD hypothetical protein, partial 1.40560501389e-05 2.03070045285e-06 -1.20253496861e-05 +UniRef50_UPI000478461E zinc binding protein 1.27069862803e-05 4.33439134787e-05 3.06369271984e-05 +UniRef50_D8JNP8 Xylanase chitin deacetylase 0.0003945667096 0.00837177758103 0.00797721087143 +UniRef50_UPI000248C70B chemotaxis protein CheY 5.89487244187e-06 2.24819804161e-05 1.65871079742e-05 +UniRef50_P76056 Putative lambdoid prophage Rac integrase 0.00315295215498 0.00456038663251 0.00140743447753 +UniRef50_A6QIJ7 Endodeoxyribonuclease RusA 0.00974354191081 0.00101310797225 -0.00873043393856 +UniRef50_D3JD05 Spermidine N acetyltransferase 0.0114905674303 0.00963653962298 -0.00185402780732 +UniRef50_UPI00047076F4 hypothetical protein, partial 5.73127305683e-06 7.8917831603e-06 2.16051010347e-06 +UniRef50_Q7XUN3 OSJNBa0064M23.10 protein 8.87556271456e-05 1.04342488347e-05 -7.83213783109e-05 +UniRef50_A0A059DVD1 0.0001409944013 3.12750485673e-05 -0.000109719352733 +UniRef50_UPI000288E019 sulfate ABC transporter membrane protein 7.79318589304e-05 0.0011003091503 0.00102237729137 +UniRef50_UPI0003B6935E hypothetical protein, partial 9.32422163195e-06 1.93674835256e-05 1.00432618937e-05 +UniRef50_Q0C1E4 NADH quinone oxidoreductase subunit D 3.79463021475e-05 7.18210537235e-05 3.3874751576e-05 +UniRef50_UPI000373A2A8 hypothetical protein 6.69850194074e-06 1.41749897706e-05 7.47648782986e-06 +UniRef50_S2TS61 Hydantoin utilization protein A 7.10570824329e-06 1.5850383438e-05 8.74467519471e-06 +UniRef50_W4PJR5 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.000213624823735 0.00019947411488 -1.4150708855e-05 +UniRef50_Q5SJB6 Membrane lipoprotein 0.000104374006137 0.0404368926637 0.0403325186576 +UniRef50_UPI0004702CE7 hypothetical protein, partial 1.06970698258e-05 0.000129899702666 0.00011920263284 +UniRef50_O07084 Cadmium, cobalt and zinc H K(+) antiporter 0.0140655539784 0.00468497082314 -0.00938058315526 +UniRef50_UPI0003F0E976 PREDICTED 4.71417691862e-06 7.29928382084e-07 -3.98424853654e-06 +UniRef50_UPI00037CFCEC hypothetical protein 2.56147191602e-05 2.98218650096e-05 4.2071458494e-06 +UniRef50_UPI00047A74FB hypothetical protein 1.26699819705e-05 2.39003794814e-05 1.12303975109e-05 +UniRef50_F4CWU8 Cell envelope related transcriptional attenuator 7.91737377942e-05 7.25037726058e-05 -6.6699651884e-06 +UniRef50_UPI0003724082 hypothetical protein 3.12326353603e-06 1.11746234723e-05 8.05135993627e-06 +UniRef50_A4X015 0.00231209691715 0.000518600874398 -0.00179349604275 +UniRef50_A5IQC1 LmbE family protein 0.0188806080329 0.00618837815922 -0.0126922298737 +UniRef50_A5ZX27 0.000150624019712 0.000228650594716 7.8026575004e-05 +UniRef50_Q989X5 Msl6246 protein 0.000211870472886 0.000311680074788 9.9809601902e-05 +UniRef50_P27241 Lipopolysaccharide core biosynthesis protein RfaZ 0.000976340616286 0.00178001823852 0.000803677622234 +UniRef50_UPI000468A625 ABC transporter ATP binding protein 2.96059481515e-05 1.26753101335e-05 -1.6930638018e-05 +UniRef50_L7WYU2 Aldo keto reductase 0.0153542038489 0.00637945666426 -0.00897474718464 +UniRef50_UPI0002ED3852 hypothetical protein 4.51884115782e-06 1.50426395766e-05 1.05237984188e-05 +UniRef50_B3HH44 Tail protein 1.67314421091e-05 1.9682711682e-05 2.9512695729e-06 +UniRef50_F5M3A2 Transposase IS116 IS110 IS902 0.00219003295135 0.00233164559305 0.0001416126417 +UniRef50_Q2NHQ3 Probable cobyrinic acid A,C diamide synthase 0.00289056898019 0.00111411570605 -0.00177645327414 +UniRef50_UPI000237D266 carboxymuconolactone decarboxylase 4.28729914398e-05 0.000110021053441 6.71480620012e-05 +UniRef50_D7CX06 Lysine biosynthesis enzyme LysX 0.000134977111625 0.0169099333639 0.0167749562523 +UniRef50_U1QU88 Rhamnan synthesis protein F 1.18882098503e-05 0.00332921994334 0.00331733173349 +UniRef50_W0R6T6 Glutamine tRNA ligase 0.000118488940003 9.26726062326e-05 -2.58163337704e-05 +UniRef50_D6SHR9 C4 dicarboxylate transporter malic acid transport protein 0.00746210946698 0.000668772824989 -0.00679333664199 +UniRef50_UPI00036FEF96 hypothetical protein 2.65945332647e-06 5.4307625168e-05 5.16481718415e-05 +UniRef50_Q3JJE8 Oxidoreductase, short chain dehydrogenase reductase family 0.000931631409754 0.0090824130777 0.00815078166795 +UniRef50_UPI0004663F41 calcium binding protein, partial 4.65340251205e-05 6.45410108432e-05 1.80069857227e-05 +UniRef50_M2C9Y4 0.0046359595579 0.000702739344115 -0.00393322021378 +UniRef50_Q2CH95 ISSpo7, transposase 8.65420751798e-05 3.98931533181e-05 -4.66489218617e-05 +UniRef50_A8LQ48 3.28438982311e-05 9.46479144264e-05 6.18040161953e-05 +UniRef50_D4HAW2 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.000312156767467 0.00669283984319 0.00638068307572 +UniRef50_E8SJ70 Organic hydroperoxide resistance protein 0.00845402222539 0.00194442281051 -0.00650959941488 +UniRef50_Q8CRU1 0.0208980376172 0.00535415623644 -0.0155438813808 +UniRef50_R9YKU7 Na+ dependent nucleoside transporter family protein 0.0130965931634 0.00130294767671 -0.0117936454867 +UniRef50_UPI0004681F99 hypothetical protein 2.18201349041e-05 4.52877878434e-05 2.34676529393e-05 +UniRef50_Q83JF8 0.000770725451415 0.000617459040989 -0.000153266410426 +UniRef50_E8RC09 1.21507807391e-05 3.30418598477e-05 2.08910791086e-05 +UniRef50_Q8CRU7 0.00905912877877 0.00250111982835 -0.00655800895042 +UniRef50_Q8CRU6 0.0202551760532 0.00700439190925 -0.0132507841439 +UniRef50_UPI000468FB82 ATPase 8.09673416179e-05 4.98072205115e-06 -7.59866195667e-05 +UniRef50_Q6AAE4 Thiazole synthase 0.000294910928794 0.00589684684204 0.00560193591325 +UniRef50_F8DI84 ABC transporter, ATP binding protein 0.0078696013055 0.00512919794881 -0.00274040335669 +UniRef50_J9P994 0.000151128403931 0.000345113394584 0.000193984990653 +UniRef50_B0N8M0 5.72681403756e-05 2.67043850895e-05 -3.05637552861e-05 +UniRef50_P37353 2 succinylbenzoate CoA ligase 0.00220631883784 0.00094224191637 -0.00126407692147 +UniRef50_D3H4R6 0.000318106170376 0.000481494628027 0.000163388457651 +UniRef50_A3K475 7.80425843399e-05 6.56087725053e-06 -7.14817070894e-05 +UniRef50_P76037 Putrescine importer PuuP 0.00300800385047 0.000710053935861 -0.00229794991461 +UniRef50_Q2W0K2 ATPase involved in chromosome partitioning 0.0132786698995 0.00169783033703 -0.0115808395625 +UniRef50_A0A017HBN8 Polyhydroxyalkanoate depolymerase, intracellular 0.000184538549911 3.13817029099e-05 -0.000153156847001 +UniRef50_A6LXH8 MORN repeat containing protein 0.000164601448628 0.00221318432562 0.00204858287699 +UniRef50_UPI00004C2754 COG1063 0.000118682454114 0.000251270480125 0.000132588026011 +UniRef50_P22825 PTS system sucrose specific EIIBC component 0.0179015994423 0.00437863971091 -0.0135229597314 +UniRef50_M9VJF8 Phosphate transport system permease protein PstA 0.000214480675479 0.00454799722793 0.00433351655245 +UniRef50_V6ZI12 Pyridoxal phosphate dependent enzyme family protein 7.90139290404e-06 8.64466728953e-06 7.4327438549e-07 +UniRef50_O58855 Orotate phosphoribosyltransferase 0.00328111795697 0.000348113994329 -0.00293300396264 +UniRef50_A5N2B2 Phage related protein 0.000495367129679 0.00143118211249 0.000935814982811 +UniRef50_B5YH68 3 phosphoshikimate 1 carboxyvinyltransferase 3.98276657448e-06 7.01631016675e-06 3.03354359227e-06 +UniRef50_A6LZC1 AraC type transcriptional regulator domain protein 0.00035687200642 0.00221010326777 0.00185323126135 +UniRef50_D6SEI0 Mannose 6 phosphate isomerase, class I 0.0220032198485 0.00870628829274 -0.0132969315558 +UniRef50_P15428 15 hydroxyprostaglandin dehydrogenase [NAD] 5.21341958627e-06 0.000270365116228 0.000265151696642 +UniRef50_Q4DJ07 Prostaglandin F synthase 0.00394190405067 0.00155506705056 -0.00238683700011 +UniRef50_Q53151 Flagellar M ring protein 0.000725442927608 0.000350083318107 -0.000375359609501 +UniRef50_J3M9R4 0.000175032143208 1.98746334431e-05 -0.000155157509765 +UniRef50_M8HET6 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.000794453930614 0.00218137384537 0.00138691991476 +UniRef50_D5RKR4 0.000153893664641 0.000484679163936 0.000330785499295 +UniRef50_A1KRZ2 Phosphate acyltransferase 0.000453526844223 0.00364821947194 0.00319469262772 +UniRef50_A0A014H8V3 Thi4 family protein 2.99328774418e-05 0.000540495024715 0.000510562147273 +UniRef50_O83092 Ribonucleoside diphosphate reductase subunit beta 0.000109734299089 0.00697558362287 0.00686584932378 +UniRef50_B4RLX4 DNA mismatch repair protein MutL 0.000133621742511 0.00283707314926 0.00270345140675 +UniRef50_X8C7Q8 Cell envelope related transcriptional attenuator domain protein 2.11802092254e-05 3.41231306189e-05 1.29429213935e-05 +UniRef50_F2E943 Predicted protein 0.000101244853536 0.000569742839604 0.000468497986068 +UniRef50_Q3J0Q8 Multisensor hybrid histidine kinase 0.00481944327022 0.00110707413718 -0.00371236913304 +UniRef50_Q57565 Signal recognition particle 54 kDa protein 0.00298199030185 0.000437834133528 -0.00254415616832 +UniRef50_UPI000474AE61 TetR family transcriptional regulator 1.82501648975e-05 8.07373830509e-05 6.24872181534e-05 +UniRef50_M7DFK4 2 hydroxyglutaryl CoA dehydratase activator related protein 0.00589427502809 0.00350227862284 -0.00239199640525 +UniRef50_A0A038G1M9 0.000294123975044 0.00201150523929 0.00171738126425 +UniRef50_UPI00037E7CFC hypothetical protein 1.1237851448e-05 5.65156145869e-06 -5.58628998931e-06 +UniRef50_UPI000424F639 hypothetical protein 1.28284449339e-05 2.02716643682e-05 7.4432194343e-06 +UniRef50_UPI0003B51DAD aconitate hydratase 2.23554105722e-05 7.41590195195e-05 5.18036089473e-05 +UniRef50_UPI00047DF06C RNA polymerase subunit sigma 24 9.49034262603e-05 6.90599778205e-05 -2.58434484398e-05 +UniRef50_J1B9G8 0.00164774944455 2.9344579425e-05 -0.00161840486512 +UniRef50_S4RE69 0.00013570348689 3.72843634866e-05 -9.84191234034e-05 +UniRef50_V9U3F4 Penicillin binding protein 0.000419767396092 0.00104802450963 0.000628257113538 +UniRef50_P26946 0.0100390637737 0.0039875222856 -0.0060515414881 +UniRef50_UPI0001B42DB2 3 methyl 2 oxobutanoate hydroxymethyltransferase, partial 0.000162202918645 4.98364829831e-05 -0.000112366435662 +UniRef50_G7ZME4 Acetyltransferase family protein 0.00271225571149 0.00105470251856 -0.00165755319293 +UniRef50_I6SXG2 0.000680652124152 0.000992661193941 0.000312009069789 +UniRef50_J9P1W0 8.59253110526e-05 0.000181733357036 9.58080459834e-05 +UniRef50_UPI000478FE81 ATP dependent DNA helicase PcrA 1.23646480308e-05 1.18578432176e-05 -5.068048132e-07 +UniRef50_D4HCQ0 0.000569895014224 0.00193210233564 0.00136220732142 +UniRef50_R1DZ31 5.32492756502e-05 3.0180203605e-05 -2.30690720452e-05 +UniRef50_W4ZID1 9.96005247615e-05 0.00583932096293 0.00573972043817 +UniRef50_Q3IUV9 TraU 0.023698888244 0.00727457943765 -0.0164243088063 +UniRef50_A0A017SU62 0.000212497233934 0.00019642443403 -1.6072799904e-05 +UniRef50_R5RCL0 Chromosomal replication initiator 4.9091866844e-05 8.91886753909e-06 -4.01729993049e-05 +UniRef50_UPI0003738950 hypothetical protein 0.00014720435024 0.000174121796513 2.6917446273e-05 +UniRef50_UPI0003B5CBF4 thioredoxin 0.000295694953917 0.000181200916148 -0.000114494037769 +UniRef50_A7IGI6 Appr 1 p processing domain protein 1.21413645436e-05 0.000179107407591 0.000166966043047 +UniRef50_A0A059LGP9 6.09503749491e-05 0.0005346945478 0.000473744172851 +UniRef50_P35886 DNA gyrase subunit B 0.000452024604441 0.00932271560414 0.0088706909997 +UniRef50_Q6C7L4 Thioredoxin reductase 5.86665245226e-05 2.81184696662e-05 -3.05480548564e-05 +UniRef50_K0B2S0 0.000245120771981 0.00511086831627 0.00486574754429 +UniRef50_UPI000360C821 MULTISPECIES 1.68230764177e-05 4.81168088911e-05 3.12937324734e-05 +UniRef50_UPI00036ED5A7 hypothetical protein 3.41519815276e-05 7.73957714307e-06 -2.64124043845e-05 +UniRef50_W0IKU6 5.52633853587e-05 6.6461075653e-05 1.11976902943e-05 +UniRef50_I4MVU8 Membrane protein 0.000214690793282 5.948567076e-05 -0.000155205122522 +UniRef50_V4R951 0.000126073244041 0.000273128680499 0.000147055436458 +UniRef50_Q8FJC7 DNA translocase FtsK 2.97780164762e-05 9.53302382989e-05 6.55522218227e-05 +UniRef50_UPI00040EF117 hypothetical protein 0.000151860625829 2.49074582914e-05 -0.000126953167538 +UniRef50_M4X643 SAM dependent methyltransferase 0.000391946617829 0.000298059150193 -9.3887467636e-05 +UniRef50_H6VX66 0.000157625183536 0.0109747634241 0.0108171382406 +UniRef50_B8IA33 Fumarylacetoacetate hydrolase 0.0160042483505 0.00130551539799 -0.0146987329525 +UniRef50_A1T726 2.28465553048e-05 4.17149733653e-05 1.88684180605e-05 +UniRef50_T1YCU2 Siderophore synthase 0.00412571744192 0.000995686157226 -0.00313003128469 +UniRef50_Q85FX6 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 4.55765306074e-05 2.6282608798e-05 -1.92939218094e-05 +UniRef50_I1ZJT5 Competence protein ComYD 1.12681524106e-05 4.25625392314e-05 3.12943868208e-05 +UniRef50_P45857 Acyl CoA dehydrogenase 0.00120863770361 0.00612752978245 0.00491889207884 +UniRef50_Q3JIW0 2.14590229815e-05 0.000110696815719 8.92377927375e-05 +UniRef50_F8M7U6 PE PGRS family protein 5.8006759245e-06 6.03249372757e-05 5.45242613512e-05 +UniRef50_F4D588 Type I restriction modification system, M subunit 0.000139486422152 0.00297363532628 0.00283414890413 +UniRef50_UPI0002484AC1 patatin family phospholipase 1.07279676391e-05 3.65023817433e-05 2.57744141042e-05 +UniRef50_Q57609 GTP cyclohydrolase III 0.00191365931277 0.00186878444584 -4.487486693e-05 +UniRef50_S5XQ93 8.56010614182e-05 3.01400843818e-05 -5.54609770364e-05 +UniRef50_Q8DBE9 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 0.00388600185752 0.0030267787823 -0.00085922307522 +UniRef50_J1LSW8 0.000252349393555 0.0111318420207 0.0108794926271 +UniRef50_U4UXP2 8.67849896899e-06 2.58459573864e-06 -6.09390323035e-06 +UniRef50_A4VYZ2 ABC type sugar transport system, periplasmic component 0.00011005422415 0.000588996451395 0.000478942227245 +UniRef50_Q73WG1 Serine hydroxymethyltransferase 0.0388325848407 0.0808033939056 0.0419708090649 +UniRef50_Q4A0F8 ABC type transport system involved in lipoprotein release permease component 0.0229243076733 0.00431996528257 -0.0186043423907 +UniRef50_D9RM99 Phage N acetylglucosaminidase 0.0149220238362 0.00100972494741 -0.0139122988888 +UniRef50_A1A081 50S ribosomal protein L5 0.0167610836704 0.00301571026798 -0.0137453734024 +UniRef50_P44839 RutC family protein HI_0719 0.00146867967203 0.000217259795995 -0.00125141987604 +UniRef50_V7EMQ8 1.48617681167e-05 6.96244050155e-06 -7.89932761515e-06 +UniRef50_UPI0002653244 PREDICTED 0.000204309426951 0.00015149470491 -5.2814722041e-05 +UniRef50_UPI000362C6BE hypothetical protein 7.01205917876e-06 0.000135489938019 0.00012847787884 +UniRef50_Q6D734 Fe ions import ATP binding protein FbpC 1 0.00397103455162 0.00144373426971 -0.00252730028191 +UniRef50_P08064 Succinate dehydrogenase cytochrome b558 subunit 0.0195262250668 0.00478029374548 -0.0147459313213 +UniRef50_Q59638 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.0006128088198 0.000124714807971 -0.000488094011829 +UniRef50_UPI0003C1126B PREDICTED 1.37646937881e-05 6.01738145983e-06 -7.74731232827e-06 +UniRef50_Q3ACC4 LexA repressor 9.14673504851e-05 1.92803224066e-05 -7.21870280785e-05 +UniRef50_Q48QB2 Fatty acid desaturase 0.000398314730706 0.000394708023921 -3.606706785e-06 +UniRef50_UPI0003B5C4DC 30S ribosomal protein S3 0.000340321676898 0.000595262499083 0.000254940822185 +UniRef50_O31632 Cystathionine beta lyase MetC 6.96312354554e-05 0.000509088227462 0.000439456992007 +UniRef50_Q2G2P8 ADP dependent NAD(P)H hydrate dehydratase 0.0213170531994 0.0063032729479 -0.0150137802515 +UniRef50_K7SJI3 Transporter, major facilitator family protein 8.4574904144e-05 0.00721192155396 0.00712734664982 +UniRef50_UPI00035DD1FA diaminopimelate decarboxylase, partial 5.61477189877e-05 0.0024698542888 0.00241370656981 +UniRef50_Q58094 Putative transketolase N terminal section 0.000206005975062 0.000481678458582 0.00027567248352 +UniRef50_A1WVC8 DNA directed RNA polymerase subunit beta 6.58293198928e-06 1.33242092168e-05 6.74127722752e-06 +UniRef50_UPI000347C25A hypothetical protein 2.93161369941e-06 1.1913038087e-06 -1.74030989071e-06 +UniRef50_Q9ZLS9 Transcription termination factor Rho 0.0131763709854 0.0153368314818 0.0021604604964 +UniRef50_T1Y682 Transporter 0.0248764651984 0.00655874741448 -0.0183177177839 +UniRef50_H1Z450 AMP dependent synthetase and ligase 0.00229690689784 0.000842616402564 -0.00145429049528 +UniRef50_Q58575 Chorismate synthase 4.79627776568e-06 2.53921610327e-05 2.0595883267e-05 +UniRef50_B9KRV4 Outer membrane protein 0.0107642216899 0.000738291762994 -0.0100259299269 +UniRef50_I4D2I9 Calcium proton exchanger Cax 0.00011257037441 0.000955485161652 0.000842914787242 +UniRef50_F3WH46 Pertactin family protein 0.00179063917586 0.000228337658653 -0.00156230151721 +UniRef50_F8G2I2 ppGpp synthetase I, SpoT RelA 0.000935885431234 0.00106640765046 0.000130522219226 +UniRef50_Q45223 3 hydroxybutyryl CoA dehydrogenase 0.000174933492712 0.00357056113726 0.00339562764455 +UniRef50_Q9RYC5 0.000116030529356 0.0574548466078 0.0573388160784 +UniRef50_F9Y8G5 4 hydroxybenzoate polyprenyl transferase 0.0061269702069 0.00173893788458 -0.00438803232232 +UniRef50_Q8DW77 0.00526456765524 0.00175934535362 -0.00350522230162 +UniRef50_Q8DW75 0.00246584663068 0.000965087271884 -0.0015007593588 +UniRef50_Q6FF92 50S ribosomal protein L10 0.00453623678777 0.012840420261 0.00830418347323 +UniRef50_Q8DW79 0.000462227741456 0.00101251441781 0.000550286676354 +UniRef50_P18416 Transposase for transposon Tn552 0.103830460453 0.0242464343416 -0.0795840261114 +UniRef50_R7B660 Dihydrodipicolinate reductase domain protein 0.00520935606531 0.00241088508415 -0.00279847098116 +UniRef50_UPI00046F0297 hypothetical protein 2.62615157897e-05 1.22483568634e-05 -1.40131589263e-05 +UniRef50_UPI000475E0B3 hypothetical protein 2.32746264998e-05 5.84427383992e-05 3.51681118994e-05 +UniRef50_UPI000382CD04 hypothetical protein, partial 0.000103012012927 1.63515756245e-05 -8.66604373025e-05 +UniRef50_Q7VFL0 Lysine tRNA ligase 0.00016873147673 0.00404087269238 0.00387214121565 +UniRef50_Q9ZKB2 Glucose 6 phosphate 1 dehydrogenase 3.16108344428e-05 0.00338097321378 0.00334936237934 +UniRef50_P21264 Phosphoribosylaminoimidazole carboxylase 2.02610606337e-05 2.54830741858e-05 5.2220135521e-06 +UniRef50_P96060 2 aminoethylphosphonate pyruvate transaminase 1.7863811812e-05 0.000632711060134 0.000614847248322 +UniRef50_L7ZNE5 ABC transporter ATP binding protein 0.000214374214012 0.000996377327045 0.000782003113033 +UniRef50_A8Z2F6 0.000920697533784 0.00135524898288 0.000434551449096 +UniRef50_T9L0J3 0.00179108882815 0.000199589497337 -0.00159149933081 +UniRef50_I4EST6 0.000500203806966 5.82184256462e-05 -0.00044198538132 +UniRef50_R5P601 Anthranilate synthase component II 1.33740539413e-05 4.2797390804e-05 2.94233368627e-05 +UniRef50_B1ZAH8 Binding protein dependent transport systems inner membrane component 0.000290181611547 0.00618268683156 0.00589250522001 +UniRef50_A3PS89 Alpha beta hydrolase fold 0.0325916959504 0.00400769519733 -0.0285840007531 +UniRef50_A0A011M2C2 Lipopolysaccharide export system ATP binding protein LptB 1.22354986738e-05 5.78794618054e-05 4.56439631316e-05 +UniRef50_D3V7P3 Multidrug resistance protein MdtB 0.000847193707175 0.00018700475792 -0.000660188949255 +UniRef50_B7M9X6 Adenosine deaminase 0.00293612082579 0.00760526813175 0.00466914730596 +UniRef50_UPI000370A178 hypothetical protein 1.11099132776e-05 2.63773023535e-05 1.52673890759e-05 +UniRef50_J9YXD5 Amino acid amide ABC transporter membrane protein, 2, HAAT family 0.0055638105715 0.00135565897634 -0.00420815159516 +UniRef50_E9UN53 0.000163716853074 4.09078992645e-06 -0.000159626063148 +UniRef50_O83658 Spermidine putrescine import ATP binding protein PotA 1.03368087302e-05 9.12794824028e-06 -1.20886048992e-06 +UniRef50_E1W4Y0 1.51741188907e-05 0.000554940802781 0.00053976668389 +UniRef50_E1W4Y6 0.000210203892207 0.000266183633431 5.5979741224e-05 +UniRef50_Q8E4F9 Probable tRNA sulfurtransferase 0.00742815332759 0.00726385694108 -0.00016429638651 +UniRef50_B7GPE3 Ribosomal RNA small subunit methyltransferase A 0.000370070964026 0.00452618126687 0.00415611030284 +UniRef50_UPI000359998F PREDICTED 2.54441259526e-06 5.0551769622e-07 -2.03889489904e-06 +UniRef50_R1DHJ6 0.000369869795461 0.000226485232255 -0.000143384563206 +UniRef50_Q97FC1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 2 0.000546908666088 0.00142168546925 0.000874776803162 +UniRef50_H1C309 Cellulose synthase operon protein C 0.000566772463717 0.000637374183882 7.0601720165e-05 +UniRef50_U6KCN1 4.6561534076e-06 4.27020120015e-05 3.80458585939e-05 +UniRef50_UPI000371DD5B hypothetical protein 2.47538444773e-05 8.34763287353e-05 5.8722484258e-05 +UniRef50_E8XUV9 Lysozyme 0.000406508886758 8.70284985912e-05 -0.000319480388167 +UniRef50_U5SV18 5.33913109406e-05 0.000121300913257 6.79096023164e-05 +UniRef50_R7CJA9 Binding protein dependent transport system inner membrane component 0.000514506176723 0.000902026531548 0.000387520354825 +UniRef50_UPI00037382D8 ABC transporter permease 3.97907249998e-05 0.000190860152584 0.000151069427584 +UniRef50_M9R962 0.000165550127556 3.60480907106e-05 -0.000129502036845 +UniRef50_Q9RS94 0.000152212092278 0.0209032626466 0.0207510505543 +UniRef50_B0BPX9 DNA polymerase IV 0.00252879355514 0.000232519409964 -0.00229627414518 +UniRef50_Q9RS99 0.000137751984987 0.0415124518216 0.0413746998366 +UniRef50_UPI0004753E7E polyamine ABC transporter substrate binding protein 2.62758037287e-05 1.768057318e-05 -8.5952305487e-06 +UniRef50_Q5FL50 Phosphoglycerate kinase 3.68887929331e-06 3.6694862858e-05 3.30059835647e-05 +UniRef50_B7H3D4 FhuE receptor 6.69697200815e-05 0.00362576379561 0.00355879407553 +UniRef50_G0VME5 Citrate transporter 0.000784722294375 0.00262078420304 0.00183606190866 +UniRef50_A5UMK8 Arginine tRNA ligase 0.00315356095886 0.00115189207294 -0.00200166888592 +UniRef50_Q3JUL5 Benzoate transport protein 0.000231770764675 0.000954764302493 0.000722993537818 +UniRef50_Q9JZR3 23S rRNA methyltransferase RlmB 0.000153034860351 0.00294028169751 0.00278724683716 +UniRef50_UPI0003810BBD hypothetical protein 0.000116379072422 3.26480020593e-05 -8.37310703627e-05 +UniRef50_P63342 Inner membrane transport protein YqeG 0.00295335552993 0.00138752174296 -0.00156583378697 +UniRef50_V6LYC7 0.000219895167655 0.000403932776796 0.000184037609141 +UniRef50_Q55905 Phosphoenolpyruvate synthase 9.60800511635e-05 0.0500040139396 0.0499079338884 +UniRef50_M4X1W1 5.41292857132e-05 0.00506257208906 0.00500844280335 +UniRef50_F2A9W7 0.000431543014717 0.000124333182531 -0.000307209832186 +UniRef50_F2A9W6 0.000485496315761 0.000265229639724 -0.000220266676037 +UniRef50_K7A9D1 Inner membrane transport permease 0.000248346045292 0.00349636270585 0.00324801666056 +UniRef50_UPI00035C805A hypothetical protein 5.97272120369e-06 7.34791364041e-06 1.37519243672e-06 +UniRef50_UPI000369165B hypothetical protein 5.08913105609e-06 6.90038095399e-06 1.8112498979e-06 +UniRef50_P76002 Inhibitor of g type lysozyme 0.00125555758451 0.000456675317307 -0.000798882267203 +UniRef50_R5T4K7 Basic membrane protein A immunodominant antigen P39 0.000518420611702 0.00234080195559 0.00182238134389 +UniRef50_K2GDX3 0.000255532586744 7.5076281894e-05 -0.00018045630485 +UniRef50_Q487E8 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.43705646096e-05 0.000118606543196 0.000104235978586 +UniRef50_P46139 Probable diguanylate cyclase YfiN 0.00282136737505 8.83149217962e-06 -0.00281253588287 +UniRef50_UPI00046CFF5C sodium 1.12647131358e-05 0.000852755529669 0.000841490816533 +UniRef50_UPI00046EF3B8 hypothetical protein, partial 6.96024129732e-05 0.000169024971301 9.94225583278e-05 +UniRef50_A3PQB2 Transcriptional regulator, LacI family 0.00379763213736 0.000542727143109 -0.00325490499425 +UniRef50_UPI0004632850 LysR family transcriptional regulator 4.40900824294e-05 1.86738286168e-05 -2.54162538126e-05 +UniRef50_Q6DB92 Low affinity potassium transport system protein kup 6.68116794457e-05 0.00314883151536 0.00308201983591 +UniRef50_UPI000287F836 transposon Tn917 resolvase 1.08478437167e-05 7.32555037242e-05 6.24076600075e-05 +UniRef50_C1DCE3 Probable chemoreceptor glutamine deamidase CheD 0.000124801105618 1.62496523971e-05 -0.000108551453221 +UniRef50_U5MLL1 3 methylornithine synthase PylB 0.000209326796037 0.00209783918011 0.00188851238407 +UniRef50_UPI0003B7B4C4 ABC transporter 1.04254286395e-05 1.73081239331e-05 6.8826952936e-06 +UniRef50_Q1AU97 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.61268729234e-05 2.73529827372e-05 1.12261098138e-05 +UniRef50_K8B033 3.05646799428e-05 6.87953323833e-05 3.82306524405e-05 +UniRef50_C5N619 Hydrolase, HD family 0.0297202808879 0.00287591532902 -0.0268443655589 +UniRef50_UPI00036B8F43 hypothetical protein 0.000120879174583 0.00232444794617 0.00220356877159 +UniRef50_P24893 Cytochrome c oxidase subunit 1 1.71276514181e-05 3.06467247363e-05 1.35190733182e-05 +UniRef50_A1UR85 Holliday junction ATP dependent DNA helicase RuvA 2.34458687644e-05 1.11701225268e-05 -1.22757462376e-05 +UniRef50_R4QAT2 Membrane protein required for colicin V production 0.000166783205682 0.00130056671512 0.00113378350944 +UniRef50_P96676 0.00139541660183 0.000307621567909 -0.00108779503392 +UniRef50_A4WVS1 0.000346808505299 0.000172410817933 -0.000174397687366 +UniRef50_A6U922 8.29481660539e-05 3.63042056884e-05 -4.66439603655e-05 +UniRef50_X1YLX5 1.18094687116e-05 3.27676245146e-05 2.0958155803e-05 +UniRef50_Q5HKG8 Conserved domain protein 0.00485406931504 0.000415939021406 -0.00443813029363 +UniRef50_Q8CP81 Maltose maltodextrin transport permease 0.00745959039993 0.00578483868586 -0.00167475171407 +UniRef50_M4ZKD5 ADP heptose lps heptosyltransferase II 0.000221139773364 0.00299946755119 0.00277832777783 +UniRef50_B4RNI0 0.000149203948168 0.0058996704105 0.00575046646233 +UniRef50_F4MUN4 DnaK suppressor protein 0.000147134128787 0.000195380462006 4.8246333219e-05 +UniRef50_E4RMK3 Molybdenum cofactor synthesis domain protein 0.000486569551453 0.00179745599668 0.00131088644523 +UniRef50_P52235 Thiol 0.00294465705472 0.00221978428959 -0.00072487276513 +UniRef50_A7Z1S6 Cadmium, cobalt and zinc H K(+) antiporter 0.00829467770501 0.000836793205583 -0.00745788449943 +UniRef50_G2J491 Formate dehydrogenase, alpha subunit 0.00628879025298 0.0030187419961 -0.00327004825688 +UniRef50_O54408 GTP pyrophosphokinase 2.67326664106e-05 0.00130467029473 0.00127793762832 +UniRef50_D2NTC3 Threonine dehydrogenase 0.000402659675209 0.0113946600073 0.0109920003321 +UniRef50_G3XN37 0.00101731439954 0.00258903289983 0.00157171850029 +UniRef50_T2EB50 AAA domain family protein 0.000625066984903 0.000129430257935 -0.000495636726968 +UniRef50_B0T9Q7 Cobyrinic acid ac diamide synthase 7.23954200121e-06 9.66289236382e-05 8.9389381637e-05 +UniRef50_F9Y9C1 0.00010417855499 2.57524749425e-06 -0.000101603307496 +UniRef50_A3SVY2 0.000420892033417 0.00014234586935 -0.000278546164067 +UniRef50_Q6FEG4 Acyl CoA dehydrogenase 0.00044092189141 0.00131965177566 0.00087872988425 +UniRef50_F5X205 GNAT family acetyltransferase 0.00287310901502 0.000333063953224 -0.0025400450618 +UniRef50_Q8TQ68 Aspartate tRNA ligase 0.00287598294181 0.0019677597241 -0.00090822321771 +UniRef50_W4K1D0 4.2231207862e-05 8.58672097447e-05 4.36360018827e-05 +UniRef50_B5EXE3 UPF0758 protein YicR 0.00254445436623 0.000877821463386 -0.00166663290284 +UniRef50_D0S9A9 Excinuclease ABC, A subunit family protein 6.20494840218e-07 3.40172926792e-05 3.3396797839e-05 +UniRef50_A2BXS2 0.000167762912531 6.03940638348e-05 -0.000107368848696 +UniRef50_G8PGZ1 Rubrerythrin 0.00114742725143 0.000399411518114 -0.000748015733316 +UniRef50_H3WY71 0.000154899397491 0.000101151284814 -5.3748112677e-05 +UniRef50_Q8X6C4 Xanthine dehydrogenase iron sulfur binding subunit 0.0057262632188 9.55719785765e-06 -0.00571670602094 +UniRef50_UPI0001AF2B31 LysR family transcriptional regulator 0.000455807503724 0.000280865905817 -0.000174941597907 +UniRef50_F8DHP6 ABC transporter, permease protein 0.00601260649746 0.00554254826549 -0.00047005823197 +UniRef50_C9LYN2 Diaminopimelate decarboxylase 0.00798364433565 0.00147871398556 -0.00650493035009 +UniRef50_Q3JLX9 6.13355565863e-06 7.83798525705e-06 1.70442959842e-06 +UniRef50_F6AGQ7 HemY domain protein 0.000314791769769 0.000382754946241 6.7963176472e-05 +UniRef50_Q61503 5 nucleotidase 2.7313881346e-05 2.68261863265e-05 -4.876950195e-07 +UniRef50_G7SHI8 Phosphatase 0.0073741049642 0.00261223632849 -0.00476186863571 +UniRef50_C4RLJ2 4.33797350561e-05 6.13989249169e-05 1.80191898608e-05 +UniRef50_W0H5K7 Serine threonine protein kinase 0.00075092718418 0.000179160791827 -0.000571766392353 +UniRef50_A0A055F483 PE PGRS family protein PE_PGRS6 5.24269515353e-06 4.69783558164e-05 4.17356606629e-05 +UniRef50_H1LB61 6.89648139183e-05 1.01050670348e-05 -5.88597468835e-05 +UniRef50_W4UK26 0.000235222506455 0.00449592019857 0.00426069769212 +UniRef50_UPI000470BCA6 RNA polymerase sigma 70 factor, partial 0.00024508163787 7.43715148851e-05 -0.000170710122985 +UniRef50_A7K529 Trap transporter solute receptor, taxi family 0.0152917753311 0.00103865457336 -0.0142531207577 +UniRef50_Q9SIB9 Aconitate hydratase 2, mitochondrial 0.000149202737921 0.0442865745655 0.0441373718276 +UniRef50_UPI000375E9C9 hypothetical protein 5.10851337995e-06 1.05968755035e-05 5.48836212355e-06 +UniRef50_O29757 Exosome complex component Rrp41 0.00392500596221 0.00157441357557 -0.00235059238664 +UniRef50_Q9JRT1 Phosphoadenosine phosphosulfate reductase 9.09720862102e-06 0.00508060624088 0.00507150903226 +UniRef50_UPI000467A91C alkaline phosphatase, partial 2.40574183757e-05 0.000139525093504 0.000115467675128 +UniRef50_Q3IWD8 0.00383402105623 0.000366853049924 -0.00346716800631 +UniRef50_UPI000255A89F type IV pilus biogenesis stability protein PilW 4.7897552721e-06 1.81736912425e-05 1.33839359704e-05 +UniRef50_UPI0003B2F6BE aspartyl glutamyl tRNA amidotransferase subunit B 1.71966044055e-05 4.56949446645e-05 2.8498340259e-05 +UniRef50_UPI000376A46D hypothetical protein 6.40214219808e-06 3.80909968804e-05 3.16888546823e-05 +UniRef50_P44914 dTDP glucose 4,6 dehydratase 7.79676901949e-06 1.66338729443e-05 8.83710392481e-06 +UniRef50_UPI000472A285 multidrug ABC transporter ATP binding protein, partial 4.05435192647e-06 1.36816707216e-05 9.62731879513e-06 +UniRef50_Q8XQG4 L aspartate oxidase 2 4.19091525915e-06 8.74353739104e-06 4.55262213189e-06 +UniRef50_UPI000379010F hypothetical protein 2.1441090736e-05 2.80008316861e-05 6.5597409501e-06 +UniRef50_G7U9P9 Transcriptional regulator 0.00036296729697 0.00405385045661 0.00369088315964 +UniRef50_R4ZW20 YfaA 0.0044119407745 0.000971962899638 -0.00343997787486 +UniRef50_F0J5L6 L sorbosone dehydrogenase 0.000275497146315 0.000149653735742 -0.000125843410573 +UniRef50_P0A9A0 Ferritin 1 0.00193749913548 0.000794522227467 -0.00114297690801 +UniRef50_UPI000399D476 hemolysin expression modulating protein 1.32598977617e-05 7.96395584613e-06 -5.29594191557e-06 +UniRef50_A5UP13 Permease, xanthine uracil vitamin C permease family 0.00240171134475 0.000957182627863 -0.00144452871689 +UniRef50_UPI000383E553 PREDICTED 1.27221266204e-05 8.72306524738e-05 7.45085258534e-05 +UniRef50_H9K4X2 5.15271053613e-05 4.54424579714e-05 -6.0846473899e-06 +UniRef50_Q5HN24 UPF0316 protein SERP1448 0.0108582554337 0.000978121816698 -0.009880133617 +UniRef50_A0A029IUD7 Major Facilitator Superfamily protein 0.00224504877258 0.00131251868976 -0.00093253008282 +UniRef50_Q1J3T7 5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit 0.000704658589914 0.0406231344061 0.0399184758162 +UniRef50_P07129 Beta xylosidase 0.0026141908774 0.0037643316804 0.001150140803 +UniRef50_D4HBL6 0.000669794694541 0.0069232613565 0.00625346666196 +UniRef50_F7V2B8 Serine pyruvate aminotransferase 0.000180327701681 0.00052725835155 0.000346930649869 +UniRef50_A0A024HIN5 Transcriptional regulator 0.000647506031278 0.0072190967899 0.00657159075862 +UniRef50_K0M4V6 0.00953326852359 0.000566102310275 -0.00896716621331 +UniRef50_A7X232 Anthranilate phosphoribosyltransferase 0.00761748851797 0.000371347250307 -0.00724614126766 +UniRef50_B9JGE0 1.72308081581e-05 7.29267359996e-05 5.56959278415e-05 +UniRef50_W5YGZ9 0.000137818167212 3.31353646709e-05 -0.000104682802541 +UniRef50_Q3JSJ3 5.1064696557e-06 0.000102540522637 9.74340529813e-05 +UniRef50_F0KG04 0.000792453281958 0.00394549588024 0.00315304259828 +UniRef50_UPI00029A2946 endo 1,4 D glucanase 7.5788551158e-06 2.73733660396e-05 1.97945109238e-05 +UniRef50_UPI0003714199 hypothetical protein 2.97164246694e-05 0.000391409332385 0.000361692907716 +UniRef50_A5UK18 0.00554873160905 0.000475040276462 -0.00507369133259 +UniRef50_UPI0002485E7A gluconate transporter 4.03587723368e-06 0.000150138213788 0.000146102336554 +UniRef50_G8SGJ4 6.16819921255e-06 0.000143594943857 0.000137426744644 +UniRef50_UPI0003C0FE99 PREDICTED 0.00010035359504 6.19967052099e-05 -3.83568898301e-05 +UniRef50_Q3J099 Transcriptional regulator, HxlR family 0.00321777376035 0.00186405141247 -0.00135372234788 +UniRef50_Q9RVW0 DNA directed RNA polymerase subunit beta 0.000159427368944 0.0434378002333 0.0432783728644 +UniRef50_D0CTG3 1.69566472415e-05 6.07952414494e-06 -1.08771230966e-05 +UniRef50_U6EYS7 Chemotaxis protein CheW 0.000252780796101 0.000399977478817 0.000147196682716 +UniRef50_F0N6L8 0.000413305827211 0.00141126752413 0.000997961696919 +UniRef50_Q9RRC4 Arginine tRNA ligase 0.000104914971274 0.0334171756495 0.0333122606782 +UniRef50_N0B321 2.25281628562e-05 1.1530579234e-05 -1.09975836222e-05 +UniRef50_U6A8Y3 Non ribosomal peptide synthetase modules related protein 6.59857201406e-05 0.000104571512175 3.85857920344e-05 +UniRef50_UPI00028904E4 two component response regulator 1.29835264004e-05 1.26506539823e-05 -3.328724181e-07 +UniRef50_F8JIF2 Recombination protein 0.000613275378259 0.000207969510703 -0.000405305867556 +UniRef50_UPI0002482319 hypothetical protein 7.74158406986e-05 8.42704791274e-05 6.8546384288e-06 +UniRef50_U6EZC2 Transcriptional regulatory component of sensorytransduction system 0.000737916887843 0.00227179404699 0.00153387715915 +UniRef50_A9MHF6 0.0025991799967 0.000964300264889 -0.00163487973181 +UniRef50_Q895P9 16S rRNA MC 967 methyltransferase 9.91644454127e-05 0.000273020066435 0.000173855621022 +UniRef50_UPI00047BB63F ABC transporter ATP binding protein 0.00018354529618 0.000106550970726 -7.6994325454e-05 +UniRef50_H0DJE3 HTH domain protein 2.12496381283e-05 2.92288399119e-05 7.9792017836e-06 +UniRef50_Q5HRV3 PAP2 family protein 0.0135542815494 0.00238987762634 -0.0111644039231 +UniRef50_A6VPG7 Hydroxyethylthiazole kinase 7.18508108971e-06 0.000865156529641 0.000857971448551 +UniRef50_UPI0003A5B886 chaperonin 9.09640796191e-06 9.35234104767e-06 2.5593308576e-07 +UniRef50_U5NV97 0.00302969116022 0.000112162173241 -0.00291752898698 +UniRef50_E3EXD3 Flagellar protein, putative 0.000241902573871 9.85308938737e-05 -0.000143371679997 +UniRef50_R5K4V5 Indole 3 glycerol phosphate synthase 0.00327655201467 0.000234688772347 -0.00304186324232 +UniRef50_UPI00034C05DA hypothetical protein 2.55809434088e-06 2.21093917207e-06 -3.4715516881e-07 +UniRef50_Q9I6Q3 4 hydroxybenzoate transporter PcaK 0.000645601310283 0.00699666111386 0.00635105980358 +UniRef50_V8HPC0 Transposase 6.81747919664e-05 2.38226382092e-05 -4.43521537572e-05 +UniRef50_R5VPY7 Phosphorylase 0.000242213525199 0.00171388127012 0.00147166774492 +UniRef50_Q57PU8 Phenylalanine tRNA ligase beta subunit 0.00407795171589 0.000640808398073 -0.00343714331782 +UniRef50_A6M2B6 PTS system, lactose cellobiose family IIC subunit 0.000229627019321 0.00150964229402 0.0012800152747 +UniRef50_F5X5Y4 Oxidoreductase dehydrogenase 0.00289657565217 0.0029074440528 1.086840063e-05 +UniRef50_UPI000363AE14 hypothetical protein 1.34266488905e-05 3.37036676317e-05 2.02770187412e-05 +UniRef50_A6TSP5 DEAD DEAH box helicase domain protein 0.00317438306632 0.00045691072329 -0.00271747234303 +UniRef50_UPI00041C3470 major facilitator transporter 3.84117167443e-06 0.000139013172337 0.000135172000663 +UniRef50_UPI00046337D4 histidine ammonia lyase, partial 4.30376647347e-06 2.65539469503e-05 2.22501804768e-05 +UniRef50_V6F9W2 0.000243016731023 0.00109990021337 0.000856883482347 +UniRef50_A8LMR7 6.33456340649e-05 2.87558541267e-05 -3.45897799382e-05 +UniRef50_I6S1H3 5.66972802055e-06 0.00119862096242 0.0011929512344 +UniRef50_UPI0003292D89 PREDICTED 5.29761665494e-05 6.49921351006e-05 1.20159685512e-05 +UniRef50_N8PWN0 DNA ligase 0.000227360656141 0.00392176688639 0.00369440623025 +UniRef50_Q72R38 Lysine tRNA ligase 8.84648468082e-06 9.72346927208e-06 8.7698459126e-07 +UniRef50_W5Y8Y3 Polyprenyl synthetase 0.00113283138747 0.000970455382071 -0.000162376005399 +UniRef50_R7IF91 Lipoprotein 7.85533926989e-06 5.51382765986e-05 4.72829373287e-05 +UniRef50_Q5HRB4 0.000519476131447 0.000798153257284 0.000278677125837 +UniRef50_UPI00037CCB39 hypothetical protein 8.42188390204e-05 1.1021743814e-05 -7.31970952064e-05 +UniRef50_P35163 Transcriptional regulatory protein ResD 0.0151705998784 0.00554784862343 -0.00962275125497 +UniRef50_A5IRW7 0.00614297103839 0.00152607960721 -0.00461689143118 +UniRef50_P57355 UPF0056 membrane protein BU267 0.002142525006 0.000336863161818 -0.00180566184418 +UniRef50_G7M6S5 Peptidase M16 domain protein 0.000746490515554 0.000864431519168 0.000117941003614 +UniRef50_A4WPQ5 Periplasmic protein thiol disulphide oxidoreductase DsbE 0.00230846799262 0.000816543885337 -0.00149192410728 +UniRef50_X5E5J7 Lipoprotein 0.0252470232476 0.00301273581933 -0.0222342874283 +UniRef50_P40892 Putative acetyltransferase YJL218W 0.000517104094322 0.000288583099537 -0.000228520994785 +UniRef50_E3A496 0.000198756851854 0.000606424305037 0.000407667453183 +UniRef50_I6E2A6 Inner membrane protein yghQ 0.00178740284979 0.000393755606923 -0.00139364724287 +UniRef50_Q8U3B8 Arsenical resistance protein acr3 0.0169055493578 0.00134877350399 -0.0155567758538 +UniRef50_I6TZW1 ATP binding protein 0.00685592074412 0.00189858921362 -0.0049573315305 +UniRef50_X6L6R2 MFS transporter 1.44688777476e-05 2.76764163509e-05 1.32075386033e-05 +UniRef50_K6PSM8 ATPase component of an ABC superfamily transporter 0.022146934598 0.0109078405415 -0.0112390940565 +UniRef50_A6M2B1 Beta lactamase domain protein 0.000142963258193 0.00223607035037 0.00209310709218 +UniRef50_UPI0003FB35D8 chemotaxis protein CheY 1.12722596319e-05 1.4905301397e-05 3.6330417651e-06 +UniRef50_F7ZEB4 TatD family deoxyribonuclease 0.00104734834323 0.000660803075986 -0.000386545267244 +UniRef50_UPI0003B3F7AD phosphoribosylaminoimidazole carboxylase 5.88989665937e-06 7.38341770147e-06 1.4935210421e-06 +UniRef50_A5UKF2 0.0014215734479 0.000302888928405 -0.00111868451949 +UniRef50_S5CXQ6 0.000119613739235 0.00621412458414 0.00609451084491 +UniRef50_L7WXI7 CorA like Mg2+ transporter protein 0.0181109598927 0.00555523275515 -0.0125557271376 +UniRef50_G0DRH6 6.07672236434e-05 0.00873991007228 0.00867914284864 +UniRef50_A5WG42 NADH quinone oxidoreductase subunit H 0.00270402425458 0.00884178449282 0.00613776023824 +UniRef50_G9Z7C4 Amine oxidase 0.00408617393598 0.000768521484726 -0.00331765245125 +UniRef50_UPI0003B6CB25 GTPase Era 8.97370131697e-06 0.000109569257421 0.000100595556104 +UniRef50_B9KRR2 ATP dependent DNA ligase 0.00259902429154 0.000426730544845 -0.0021722937467 +UniRef50_S3X9I7 1.29251208434e-05 8.25629609088e-05 6.96378400654e-05 +UniRef50_P06744 Glucose 6 phosphate isomerase 0.00233553106705 0.00356994827639 0.00123441720934 +UniRef50_D8JHR5 0.000241462252992 0.00454613680704 0.00430467455405 +UniRef50_B9KPJ0 Ribose phosphate pyrophosphokinase 0.0120963824909 0.0139462796982 0.0018498972073 +UniRef50_P08555 DsdX permease 0.00263963721621 0.00209838004817 -0.00054125716804 +UniRef50_P0ABU8 Biopolymer transport protein ExbB 0.00332545517822 0.00108791572777 -0.00223753945045 +UniRef50_S5XVE4 Type VI secretion system ATPase 0.00091007064607 7.02856101231e-05 -0.000839785035947 +UniRef50_E0RCX2 2.04353808852e-05 3.59588519144e-05 1.55234710292e-05 +UniRef50_T0USP0 VanZF related protein 0.00363962522306 0.000668641596675 -0.00297098362638 +UniRef50_D2N5R5 Kinase associated protein B 0.00777254753491 0.00122597899592 -0.00654656853899 +UniRef50_Q0C5T7 Peptide ABC transporter, ATP binding protein 0.00603051808392 0.00175573516821 -0.00427478291571 +UniRef50_Q4L7E3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0161186311388 0.00249863880463 -0.0136199923342 +UniRef50_D2ABX7 0.00171584540388 0.000159914152712 -0.00155593125117 +UniRef50_UPI00037710EA hypothetical protein 2.35365370977e-05 1.12322138445e-05 -1.23043232532e-05 +UniRef50_B2V422 7.73008850942e-05 0.00261002638502 0.00253272549993 +UniRef50_Q03MZ6 Bifunctional purine biosynthesis protein PurH 0.000641718181199 0.00518262115673 0.00454090297553 +UniRef50_P42915 Outer membrane usher protein YraJ 0.00217130659328 0.00121422452384 -0.00095708206944 +UniRef50_Q49775 Methionine synthase 1.06033349663e-06 7.09635890482e-05 6.99032555516e-05 +UniRef50_UPI0003B44CF0 streptomycin 3 kinase 2.68776543359e-05 4.31263542171e-05 1.62486998812e-05 +UniRef50_UPI0004639093 hypothetical protein 4.57172883606e-06 7.8368142082e-06 3.26508537214e-06 +UniRef50_F0RPF2 0.000743242554228 0.0731273562321 0.0723841136779 +UniRef50_F0RPF3 0.000299592054644 0.0549428872926 0.054643295238 +UniRef50_UPI0002002483 hypothetical protein 7.99985027071e-05 2.38248331151e-05 -5.6173669592e-05 +UniRef50_S5FCX8 Carboxylate amine ligase 0.00502558112002 0.00259492638056 -0.00243065473946 +UniRef50_A5D1A4 Dihydroorotase 5.30457669969e-06 2.61393843482e-05 2.08348076485e-05 +UniRef50_W8TQE0 Pili assembly chaperone 0.00321978963707 0.000835801995839 -0.00238398764123 +UniRef50_UPI000364022E hypothetical protein 0.000686235417419 5.82756857009e-05 -0.000627959731718 +UniRef50_R5UAJ8 0.000323590301479 0.000978075620281 0.000654485318802 +UniRef50_UPI000262CCDC Mutator MutT protein 1.6192284341e-05 6.63987735146e-06 -9.55240698954e-06 +UniRef50_UPI00036EE512 hypothetical protein 6.18832522155e-06 1.48418233902e-05 8.65349816865e-06 +UniRef50_UPI0003B63CEB molybdopterin biosynthesis protein MoeA 4.70409997922e-06 6.52810499892e-06 1.8240050197e-06 +UniRef50_Q98E39 Msr4423 protein 0.000228260779246 0.000171625714296 -5.663506495e-05 +UniRef50_UPI0003615A32 hypothetical protein 7.16885277453e-06 9.94518622662e-06 2.77633345209e-06 +UniRef50_C9CVV7 0.00183469183877 3.05974496968e-05 -0.00180409438907 +UniRef50_UPI00035A01D7 PREDICTED 5.97540589915e-06 2.5749973728e-06 -3.40040852635e-06 +UniRef50_UPI00047B26FB glyoxalase 1.78391682808e-05 6.48510055506e-06 -1.13540677257e-05 +UniRef50_B9KU28 Transcriptional regulator 0.00254934295449 0.00103109280248 -0.00151825015201 +UniRef50_UPI00036F2709 LysR family transcriptional regulator 2.38286186519e-05 1.26865360074e-05 -1.11420826445e-05 +UniRef50_S2L5Z7 Alkaline phosphatase 2.47608820128e-05 5.33231287834e-06 -1.94285691345e-05 +UniRef50_A3MFR5 NADH quinone oxidoreductase subunit B 2 1.68268890753e-05 3.94110923383e-05 2.2584203263e-05 +UniRef50_Q28RF2 Anhydro N acetylmuramic acid kinase 1 0.000219977504789 6.01735922779e-05 -0.000159803912511 +UniRef50_UPI00044199D7 PREDICTED 8.96143697272e-05 3.38607804837e-05 -5.57535892435e-05 +UniRef50_P61676 UDP N acetylmuramate L alanine ligase 3.91961596194e-06 7.01197188165e-06 3.09235591971e-06 +UniRef50_B9KT87 Periplasmic sensor signal transduction histidine kinase 0.00725706855587 0.00256896710157 -0.0046881014543 +UniRef50_A5WG85 0.000139982443328 0.00483058577809 0.00469060333476 +UniRef50_H9JZZ5 4.09301926887e-05 6.89294317242e-06 -3.40372495163e-05 +UniRef50_U5SUC1 Protein co occurring with transport systems 0.0205793186279 0.00609787688609 -0.0144814417418 +UniRef50_UPI000368DF15 hypothetical protein 3.21418074842e-05 3.44409141213e-05 2.2991066371e-06 +UniRef50_D4GE62 Fcy21 0.000617548560134 0.000172196329551 -0.000445352230583 +UniRef50_P28905 DNA polymerase III subunit chi 0.00102659177871 0.000906606316307 -0.000119985462403 +UniRef50_UPI0002493F0F sugar transporter 5.92872628753e-06 2.42033782658e-05 1.82746519783e-05 +UniRef50_X1IEE0 Marine sediment metagenome DNA, contig 8.16988967355e-06 0.000563977337749 0.000555807448075 +UniRef50_I1ZKN3 1.32932482751e-05 7.39323493242e-06 -5.90001334268e-06 +UniRef50_UPI000287D4FC ribose phosphate diphosphokinase 7.23853254403e-05 0.000112823302299 4.04379768587e-05 +UniRef50_Q9RTM5 0.00018874299443 0.0404617512149 0.0402730082205 +UniRef50_P0A9A4 Ferritin like protein 2 0.000754424998393 0.000767668081954 1.3243083561e-05 +UniRef50_Q08Z31 6.23625198308e-05 0.000225364770328 0.000163002250497 +UniRef50_B9E9S0 0.00370260526954 0.00101068384146 -0.00269192142808 +UniRef50_Q9RZI4 8.72272203127e-05 0.0171631502825 0.0170759230622 +UniRef50_UPI00030FEE7F AsnC family transcriptional regulator 0.000106045450984 1.61533359405e-05 -8.98921150435e-05 +UniRef50_UPI0003B3D4FC purine nucleoside phosphorylase 1.39977150548e-05 5.70636982172e-05 4.30659831624e-05 +UniRef50_C5X3F1 0.000111708386012 9.36938504283e-05 -1.80145355837e-05 +UniRef50_A4YXJ9 Cobyric acid synthase 0.000319064178391 6.46553154361e-05 -0.000254408862955 +UniRef50_A6LUJ6 0.000117558934525 0.00101587414635 0.000898315211825 +UniRef50_I1HS37 0.000280311377865 0.000187638168363 -9.2673209502e-05 +UniRef50_Q5LI72 Lipoprotein releasing system ATP binding protein LolD 0.000263766443623 0.00733216708209 0.00706840063847 +UniRef50_UPI0004715EC0 hypothetical protein 4.63349699827e-05 3.40102172866e-05 -1.23247526961e-05 +UniRef50_P77467 1,2 epoxyphenylacetyl CoA isomerase 0.00386228291096 0.000956518227577 -0.00290576468338 +UniRef50_Q9L6X9 DNA replication terminus site binding protein 0.00167109980127 0.00106795401294 -0.00060314578833 +UniRef50_UPI0002C2EB05 4.35911761018e-06 6.6063254106e-06 2.24720780042e-06 +UniRef50_F2MXH3 Hydrolase 0.000209326796037 0.000936724490257 0.00072739769422 +UniRef50_C7M9T6 Cation diffusion facilitator family transporter 0.000387180070617 0.00758046665167 0.00719328658105 +UniRef50_Q6GJ30 Putative glycosyltransferase TagX 0.0133445251833 0.00171439082339 -0.0116301343599 +UniRef50_J1H1W6 Putative transposase 2.84709620404e-05 0.00176922074009 0.00174074977805 +UniRef50_W6KCI0 Putative chaC like cation transporter 4.14539079995e-06 3.57896173158e-06 -5.6642906837e-07 +UniRef50_Q4L9R4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0118303588053 0.00109366960582 -0.0107366891995 +UniRef50_UPI00037EBF23 hypothetical protein 1.15796857651e-05 1.07844693274e-05 -7.952164377e-07 +UniRef50_Q9V2R2 Quinolinate synthase A 0.00504431959733 0.000193227942332 -0.004851091655 +UniRef50_Q9RU50 Acyl CoA dehydrogenase 0.000179471373386 0.0379073307501 0.0377278593767 +UniRef50_UPI0002D896B4 hypothetical protein 5.96124217941e-06 0.000151184646095 0.000145223403916 +UniRef50_UPI0003731541 hypothetical protein 3.23776645162e-06 0.000542962673159 0.000539724906707 +UniRef50_UPI00047C50BA hypothetical protein 4.57091440853e-05 0.000172937752693 0.000127228608608 +UniRef50_A3PHA2 0.00528896316931 0.000548575922964 -0.00474038724635 +UniRef50_A3PHA5 0.00119658113546 0.000354841190446 -0.000841739945014 +UniRef50_K1TC59 Branched chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein 4.07214265313e-05 0.000113297149972 7.25757234407e-05 +UniRef50_A3PHA6 0.00497949806314 5.58452792495e-05 -0.00492365278389 +UniRef50_A3PHA9 0.00577566646291 0.000740200596614 -0.0050354658663 +UniRef50_A3PHA8 0.00812423433082 0.00599107607165 -0.00213315825917 +UniRef50_H0YUU4 2.36512539798e-05 5.48232768401e-05 3.11720228603e-05 +UniRef50_A1AZJ2 UPF0173 metal dependent hydrolase Pden_0574 0.0121511147485 0.0014224080271 -0.0107287067214 +UniRef50_Q9RXG0 Ribonuclease R 5.52418520216e-05 0.0481502799253 0.0480950380733 +UniRef50_Q8P0D6 0.000134481635014 5.38353182688e-05 -8.06463167452e-05 +UniRef50_P44023 0.0145922422725 0.00803075455965 -0.00656148771285 +UniRef50_R7CLA1 0.000213268920259 0.00151776782542 0.00130449890516 +UniRef50_A4WSE9 IS66 Orf2 family protein 9.36151616917e-05 4.17979058444e-05 -5.18172558473e-05 +UniRef50_J2PZW7 0.000664270819961 0.00231459153056 0.0016503207106 +UniRef50_A0A017HSQ6 Transport protein 2.59697993965e-05 7.30076489908e-06 -1.86690344974e-05 +UniRef50_P0AEC3 Aerobic respiration control sensor protein ArcB 0.00375703801352 0.000408005870559 -0.00334903214296 +UniRef50_UPI0003698849 DNA glycosylase 8.22525092424e-05 4.70710103576e-05 -3.51814988848e-05 +UniRef50_UPI00035C8219 hypothetical protein 4.90660247307e-05 4.86524241201e-05 -4.136006106e-07 +UniRef50_P0ABD0 High affinity choline transport protein 0.0031724971962 0.00443552315145 0.00126302595525 +UniRef50_E0TF91 Prephenate dehydrogenase 0.00296500306601 0.000227166696312 -0.0027378363697 +UniRef50_J1E0S9 0.00480727184423 0.000230815250453 -0.00457645659378 +UniRef50_UPI00037D56C5 hypothetical protein, partial 2.98378584541e-06 5.35593608257e-06 2.37215023716e-06 +UniRef50_P13794 Outer membrane porin F 0.00100611509587 0.0013240281445 0.00031791304863 +UniRef50_Q5HQN6 0.00224826876127 0.00098995752842 -0.00125831123285 +UniRef50_UPI00047A7DC3 sodium 3.5253327397e-05 3.92722179035e-05 4.0188905065e-06 +UniRef50_UPI0003480247 membrane protein 6.85792997348e-06 7.78987254177e-05 7.10407954442e-05 +UniRef50_X4QYD5 Ribonucleotide reductase 1.39779348191e-05 5.43807193306e-05 4.04027845115e-05 +UniRef50_T2EHJ1 Hpt domain protein 0.000626118777209 9.56749584945e-05 -0.000530443818714 +UniRef50_A1B2U2 ABC polyamine opine transporter, periplasmic substrate binding protein 0.0200368239311 0.00627577632576 -0.0137610476053 +UniRef50_Q89AP8 Acetolactate synthase small subunit 8.62318649553e-05 0.000298353382378 0.000212121517423 +UniRef50_V4JFT6 0.000449520935758 0.000324999072492 -0.000124521863266 +UniRef50_K2R125 Insertion sequence transposase 8.18980895121e-05 5.44436216117e-05 -2.74544679004e-05 +UniRef50_B9K5L2 0.000599094993713 0.00111352392269 0.000514428928977 +UniRef50_Q9RVK2 MutT nudix family protein 0.000385189784541 0.0270357674711 0.0266505776866 +UniRef50_P49058 Inosine 5 monophosphate dehydrogenase 3.71012071226e-05 0.000125736386471 8.86351793484e-05 +UniRef50_T2EMC8 0.000579345115376 0.00113920109527 0.000559855979894 +UniRef50_N9ANA5 0.000134496195558 0.00722662622128 0.00709213002572 +UniRef50_S9RPX9 Integral membrane protein 1.22371556864e-05 8.31062832128e-06 -3.92652736512e-06 +UniRef50_V3H5M7 1.75775724271e-05 2.90463776173e-05 1.14688051902e-05 +UniRef50_E8SI82 0.00639120747705 0.00148456803506 -0.00490663944199 +UniRef50_A8L741 Putative glyoxalase family protein 2.04615741509e-05 4.8396485535e-05 2.79349113841e-05 +UniRef50_UPI0002E43044 hypothetical protein 1.33103668495e-05 1.66952516746e-05 3.3848848251e-06 +UniRef50_UPI000366CBF5 hypothetical protein 9.45196917233e-05 2.92934850871e-05 -6.52262066362e-05 +UniRef50_UPI000368F6D6 hypothetical protein 6.65688152847e-06 1.37525744079e-05 7.09569287943e-06 +UniRef50_UPI0003777C13 hypothetical protein 8.18571119849e-06 1.49005647356e-05 6.71485353711e-06 +UniRef50_UPI00047CBCB4 C4 dicarboxylate ABC transporter substrate binding protein 0.000181236696587 5.38413564618e-05 -0.000127395340125 +UniRef50_UPI0003446A8D PREDICTED 8.8862908388e-06 5.11361579109e-06 -3.77267504771e-06 +UniRef50_UPI0003A59A55 chorismate synthase 1.6986118373e-05 0.000113943713425 9.6957595052e-05 +UniRef50_UPI0003B6EE3B diguanylate cyclase, partial 0.000145257274841 0.000115571782826 -2.9685492015e-05 +UniRef50_U3ASA7 1.84666518703e-06 3.32757774516e-06 1.48091255813e-06 +UniRef50_Q0TRI9 MTA SAH nucleosidase 0.000214887659684 0.00126097901204 0.00104609135236 +UniRef50_C7NKD3 2.7372526667e-05 0.0101278999495 0.0101005274228 +UniRef50_Q5HLN7 Membrane associated protein TcaA 0.0210737201956 0.00622385896204 -0.0148498612336 +UniRef50_Q7NLT7 Leucyl phenylalanyl tRNA protein transferase 1.91321353472e-05 9.47108371906e-05 7.55787018434e-05 +UniRef50_Q2II05 LigA 0.000120024294193 0.000125184506651 5.160212458e-06 +UniRef50_Q15UL9 Deoxycytidine triphosphate deaminase 0.00471563737819 0.0020244395898 -0.00269119778839 +UniRef50_G2L306 Two component sensor EnvZ 0.000506403057564 0.00013536289008 -0.000371040167484 +UniRef50_A1JKQ0 tRNA methyltransferase TrmJ 0.00268542258647 0.00143373181154 -0.00125169077493 +UniRef50_G2KD33 7.26400235152e-05 0.00363100634327 0.00355836631975 +UniRef50_P39334 HTH type transcriptional repressor BdcR 0.000971755101824 0.0036535801658 0.00268182506398 +UniRef50_UPI0001744E68 hypothetical protein 0.000763607740057 0.0087906150325 0.00802700729244 +UniRef50_UPI000469DAE1 hypothetical protein 0.000651446342605 8.25540506605e-05 -0.000568892291945 +UniRef50_UPI000474FED4 response regulator receiver protein 0.000109206605601 0.00249825532604 0.00238904872044 +UniRef50_Q0RCK1 N acetylglucosamine 6 phosphate deacetylase 0.000298801574284 0.00145297309222 0.00115417151794 +UniRef50_P75908 Probable diguanylate cyclase YcdT 0.0026302912369 0.000568847564351 -0.00206144367255 +UniRef50_Q46I59 Phosphoribosylformylglycinamidine synthase 2 1.02701295032e-05 2.8966734919e-06 -7.3734560113e-06 +UniRef50_D6Y938 Binding protein dependent transport systems inner membrane component 0.000128688405295 0.00569369801193 0.00556500960664 +UniRef50_Q9RVJ3 Branched chain amino acid ABC transporter, ATP binding protein 0.000171584540393 0.0426391594977 0.0424675749573 +UniRef50_Q8CR74 0.0105912759731 0.00168928151801 -0.00890199445509 +UniRef50_X1SN69 Marine sediment metagenome DNA, contig 4.84133274969e-05 0.0082493986287 0.0082009853012 +UniRef50_Q3J097 Acetyltransferase 0.0138220763884 0.00306056003084 -0.0107615163576 +UniRef50_UPI00045E8316 ribose ABC transporter permease 7.24140710852e-05 2.99689809244e-05 -4.24450901608e-05 +UniRef50_X5DRJ8 Phosphate ABC transporter, permease protein PstA 0.00720423078315 0.00159667186083 -0.00560755892232 +UniRef50_B1B3J5 0.00389429937343 0.00466289534518 0.00076859597175 +UniRef50_H6PD11 Ion transport protein 0.00389017138533 0.0017940217818 -0.00209614960353 +UniRef50_Q8DUD5 0.0017953761144 0.00126564302227 -0.00052973309213 +UniRef50_B9KWI5 0.00186189251815 0.0002365687892 -0.00162532372895 +UniRef50_UPI0003765EEA hypothetical protein 1.90713493748e-05 6.18247837019e-06 -1.28888710046e-05 +UniRef50_UPI00037DF3B3 MULTISPECIES 1.1026280147e-05 0.000375998452924 0.000364972172777 +UniRef50_C2Z2I2 ATPase 2.85439985693e-05 0.000214515766481 0.000185971767912 +UniRef50_K0CB29 0.000131681158905 0.00780161198911 0.0076699308302 +UniRef50_P33590 Nickel binding periplasmic protein 0.00308633580725 0.000139081650806 -0.00294725415644 +UniRef50_Q3IXY3 0.0100315788801 0.0020453797212 -0.0079861991589 +UniRef50_W4MVL4 Phosphoenolpyruvate protein phosphotransferase 8.84394027992e-05 0.00566500633226 0.00557656692946 +UniRef50_I9L186 Transposase 0.000268252701597 0.000100874665903 -0.000167378035694 +UniRef50_A3MMQ8 Glutamate 1 semialdehyde 2,1 aminomutase 1.01704747537e-05 0.00209939595549 0.00208922548074 +UniRef50_UPI000382D4BD hypothetical protein 3.16324837096e-05 2.58408976722e-05 -5.7915860374e-06 +UniRef50_Q3IUW7 TraK protein 0.0270197165389 0.00613296556956 -0.0208867509693 +UniRef50_UPI0003F107C2 2.08705570988e-05 1.59810680259e-05 -4.8894890729e-06 +UniRef50_Q91TW1 T2 3.849585135e-06 0.000112002814878 0.000108153229743 +UniRef50_B5Y1K1 Elongation factor Ts 0.00341785048679 0.00363727122243 0.00021942073564 +UniRef50_UPI00047479E9 hypothetical protein 0.000149745182071 0.000598902432132 0.000449157250061 +UniRef50_UPI000412A15D hypothetical protein 1.85038909385e-06 1.12116690157e-05 9.36127992185e-06 +UniRef50_S5AVG1 MazG protein 9.85236584997e-06 9.19402427812e-06 -6.5834157185e-07 +UniRef50_P27876 Triosephosphate isomerase 0.000636483511888 7.07672886736e-05 -0.000565716223214 +UniRef50_UPI00031DE78E hypothetical protein 7.67795590093e-06 8.65493879494e-05 7.88714320485e-05 +UniRef50_UPI000363D58E protein meaA, partial 0.000436129319092 0.000169330583355 -0.000266798735737 +UniRef50_M4N5D5 0.000625117970063 0.000304433363087 -0.000320684606976 +UniRef50_E2Q9I1 Prevent host death family protein 6.79113370469e-05 4.48144983192e-05 -2.30968387277e-05 +UniRef50_F2MT10 HD domain protein 0.00575005918993 0.00342255767114 -0.00232750151879 +UniRef50_B9KPZ0 Potassium transporting ATPase C chain 4.37640569085e-06 0.000338042128949 0.000333665723258 +UniRef50_J8EJF8 LPXTG domain containing protein cell wall anchor domain 1.73579669935e-05 3.5876061967e-05 1.85180949735e-05 +UniRef50_E0J5J4 2 dehydro 3 deoxygluconokinase 0.00268762105149 0.00109599367054 -0.00159162738095 +UniRef50_A0A028QNK4 0.00535510596134 0.000747637228341 -0.004607468733 +UniRef50_F0RNA5 ATPase AAA 2 domain protein 0.000316657994906 0.0272149981083 0.0268983401134 +UniRef50_A6LUR0 Transcriptional regulator, RpiR family 0.000146123608583 0.00219104229317 0.00204491868459 +UniRef50_UPI000477413F regulator 9.9232886914e-06 1.95382552831e-05 9.6149665917e-06 +UniRef50_A8FXN6 8.91868556561e-05 3.25860433506e-05 -5.66008123055e-05 +UniRef50_A4WWH1 Glycosyl transferase, group 1 0.000409200429515 0.00064435333893 0.000235152909415 +UniRef50_K7S6T7 Glycosyltransferase, group 1 family protein 0.000341622791841 0.00350980706601 0.00316818427417 +UniRef50_UPI0003B3B81F indole 3 glycerol phosphate synthase 7.58102927655e-06 1.34523656752e-05 5.87133639865e-06 +UniRef50_C4ZXX6 PKHD type hydroxylase YbiX 0.00397935412408 0.000911282999557 -0.00306807112452 +UniRef50_Q6A5N5 Undecaprenyl diphosphatase 0.000209714438257 0.00588217807873 0.00567246364047 +UniRef50_X5ENW5 ABC transporter family protein 0.0121317188201 0.00169002397752 -0.0104416948426 +UniRef50_UPI00047B3063 ABC transporter ATP binding protein 0.000119824536116 4.6367389077e-05 -7.3457147039e-05 +UniRef50_Q9RYM8 Probable subtilase type serine protease DR_A0283 0.000490388316337 0.0553858390182 0.0548954507019 +UniRef50_E0MS58 Molecular chaperone, DnaJ family 8.95990221473e-06 1.07998695502e-05 1.83996733547e-06 +UniRef50_A1B8N7 ATP synthase subunit delta 0.000975711642676 0.000361612292071 -0.000614099350605 +UniRef50_P0AE26 L arabinose transport system permease protein AraH 0.00244277036179 0.00203201800685 -0.00041075235494 +UniRef50_C2LZ77 1.4368761125e-05 3.91382597653e-05 2.47694986403e-05 +UniRef50_UPI000382715E hypothetical protein 6.39860316502e-06 1.01609084706e-05 3.76230530558e-06 +UniRef50_W4UHC4 Helicase 4.18189795614e-05 0.00461271207283 0.00457089309327 +UniRef50_A0A011Q8A5 2.10665604662e-05 8.70133191825e-05 6.59467587163e-05 +UniRef50_P27675 Glutamine transport ATP binding protein GlnQ 0.00353196235531 0.00589444925253 0.00236248689722 +UniRef50_N6UYQ4 2.72408954719e-05 7.79436149862e-06 -1.94465339733e-05 +UniRef50_A6LWG5 7 carboxy 7 deazaguanine synthase 0.000185345002706 0.000603410104149 0.000418065101443 +UniRef50_A0A023RTQ5 GntR family transcriptional regulator 8.21812747825e-05 0.00417395668058 0.0040917754058 +UniRef50_UPI00029DA75A PREDICTED 4.21568476482e-06 8.68822477888e-06 4.47254001406e-06 +UniRef50_D0SBY2 Oxidoreductase alpha subunit 4.74427300602e-05 0.00500766804199 0.00496022531193 +UniRef50_X1SF25 Marine sediment metagenome DNA, contig 1.24128541504e-05 3.99621678043e-05 2.75493136539e-05 +UniRef50_Q7TUT1 Glutamyl Q tRNA synthetase 4.64230348064e-06 8.57262829356e-06 3.93032481292e-06 +UniRef50_L5R254 Replication initiation factor domain protein 0.0003380471542 0.00114957157856 0.00081152442436 +UniRef50_A6SXI6 Tricarboxylate transport protein TctA 2.92389927118e-06 1.83808000136e-05 1.54569007424e-05 +UniRef50_A6KYS6 S ribosylhomocysteine lyase 0.000236915892584 0.00671094847844 0.00647403258586 +UniRef50_S5UDS6 0.0125828662951 4.78899414478e-05 -0.0125349763537 +UniRef50_C7PD55 Chitinase 6.3380173546e-06 1.27918525655e-05 6.4538352109e-06 +UniRef50_Q9ZDH5 NADH quinone oxidoreductase subunit E 0.000269817055093 8.66908802427e-05 -0.00018312617485 +UniRef50_X1TNP8 Marine sediment metagenome DNA, contig 5.84861665717e-05 0.00188040248669 0.00182191632012 +UniRef50_P16926 Cell shape determining protein MreC 0.00399894980063 0.00243699442131 -0.00156195537932 +UniRef50_S1T2A2 0.000143897943507 0.000383111194313 0.000239213250806 +UniRef50_UPI00038199B5 hypothetical protein 0.00113065314754 0.000274345876413 -0.000856307271127 +UniRef50_B0VLQ7 General secretion pathway protein F 0.00030006202761 0.00894105033112 0.00864098830351 +UniRef50_A0KKZ8 Fumarate hydratase, class I 0.000994349423305 0.0114826175936 0.0104882681703 +UniRef50_S1T2A8 0.000113691658697 0.000900225191442 0.000786533532745 +UniRef50_J3NR99 0.000514380360552 8.0431240632e-05 -0.00043394911992 +UniRef50_UPI0003FEFECF hypothetical protein 2.66619999237e-05 1.62775802912e-05 -1.03844196325e-05 +UniRef50_A4WQ31 Signal transduction histidine kinase 0.00300998224502 0.00170884813059 -0.00130113411443 +UniRef50_A6M1A3 MotA TolQ ExbB proton channel 0.000321887277318 0.00118861898917 0.000866731711852 +UniRef50_Q08SF7 0.00083594031154 0.00248449545256 0.00164855514102 +UniRef50_A0A031D1F0 0.000658183592274 0.000457199374696 -0.000200984217578 +UniRef50_A6LRT2 Resolvase, N terminal domain 0.00017087408573 0.000961856027269 0.000790981941539 +UniRef50_X6C1Q7 0.000374759710808 7.48860906593e-05 -0.000299873620149 +UniRef50_Q43768 Glutamate tRNA ligase, chloroplastic mitochondrial 3.68853550172e-06 1.49986084406e-05 1.13100729389e-05 +UniRef50_P45015 Protein NrfC homolog 0.00378982437037 0.000895571743794 -0.00289425262658 +UniRef50_UPI0004408DA8 ribosomal protein S5 domain 2 like protein 1.80614508677e-05 1.53391085013e-05 -2.7223423664e-06 +UniRef50_Q57E96 4 hydroxy tetrahydrodipicolinate synthase 5.39320107088e-06 2.52128569731e-05 1.98196559022e-05 +UniRef50_L0GKZ5 Asparagine synthetase 0.000241981424281 0.000221786687866 -2.0194736415e-05 +UniRef50_G2JGA5 Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA 0.00043472474724 0.00774091839019 0.00730619364295 +UniRef50_P41504 Probable tRNA dihydrouridine synthase 0.000138442294196 6.55268931905e-05 -7.29154010055e-05 +UniRef50_F7Y0P1 Binding protein dependent transport systems inner membrane component 0.0137820788626 0.00324446720485 -0.0105376116577 +UniRef50_A6LSC4 Malonyl CoA acyl carrier protein transacylase 0.000351095044177 0.000187701295675 -0.000163393748502 +UniRef50_X3EYH3 DNA mismatch repair protein MutL 0.00382169413602 0.000136090647547 -0.00368560348847 +UniRef50_Q9ZMK8 Peptide methionine sulfoxide reductase MsrA MsrB 5.18477651944e-06 0.00189459144901 0.00188940667249 +UniRef50_O27156 CRISPR associated endonuclease Cas1 0.00206935928118 0.000439551067004 -0.00162980821418 +UniRef50_F0KK42 0.000823043613343 0.00482213573608 0.00399909212274 +UniRef50_P40420 Glucose uptake protein GlcU 0.0214172740005 0.00697255889135 -0.0144447151091 +UniRef50_F0YA24 0.000222576249581 0.000177848630087 -4.4727619494e-05 +UniRef50_P77554 0.00312453658081 0.000749099544771 -0.00237543703604 +UniRef50_Q887Q4 Alginate biosynthesis protein AlgX 0.000166774630257 0.000191143498515 2.4368868258e-05 +UniRef50_A4VKL4 Cbb3 type cytochrome c oxidase subunit CcoP 0.00351646903291 0.000972469033247 -0.00254399999966 +UniRef50_M2QHJ0 9.3826335217e-05 2.92471506049e-05 -6.45791846121e-05 +UniRef50_P77559 0.00249228701283 0.000532084065573 -0.00196020294726 +UniRef50_B8EN54 Ribonuclease D 7.88377952255e-05 1.36867311269e-05 -6.51510640986e-05 +UniRef50_Q8NXR4 ABC transporter permease 0.0168686296564 0.00303371433348 -0.0138349153229 +UniRef50_D3E2D0 0.00203919020356 0.000422762417725 -0.00161642778584 +UniRef50_Q2YNG3 Phosphoribosylformylglycinamidine synthase 1 2.56275835543e-05 1.63884622108e-05 -9.2391213435e-06 +UniRef50_A6U9U3 Cyclic pyranopterin monophosphate synthase 0.00500703146175 0.000987594615084 -0.00401943684667 +UniRef50_K4NN39 Type I restriction enzyme R protein 3.70205284955e-05 0.00345600286235 0.00341898233385 +UniRef50_UPI0003B6F790 50S ribosomal protein L9 5.81509672466e-05 2.30492772212e-05 -3.51016900254e-05 +UniRef50_UPI00029A559A acetate CoA ligase 1.46979324671e-05 0.000314681606359 0.000299983673892 +UniRef50_B4U7T6 Acyl carrier protein 3.06045015022e-05 0.000389791843337 0.000359187341835 +UniRef50_Q9M5K2-2 Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial 9.00511491391e-05 0.000187334446076 9.72832969369e-05 +UniRef50_UPI0003B5C4DF UDP N acetylglucosamine 2 epimerase 6.74493295519e-06 1.91877371643e-05 1.24428042091e-05 +UniRef50_Q4L7F0 UPF0754 membrane protein SH1116 0.0190769105313 0.00825999096347 -0.0108169195678 +UniRef50_UPI00025578B3 3 oxoacyl ACP reductase 1.64407145895e-05 2.10454509844e-05 4.6047363949e-06 +UniRef50_G4QEZ4 2 nitropropane dioxygenase family protein 0.00361548512267 0.000383629288373 -0.0032318558343 +UniRef50_D5ARQ6 Lipoprotein, putative 5.99493976514e-05 3.32617827532e-05 -2.66876148982e-05 +UniRef50_Q2S2L8 ATP dependent Clp protease proteolytic subunit 1 6.9064334766e-06 3.75906691686e-05 3.0684235692e-05 +UniRef50_UPI0003A2476A hypothetical protein 5.04477507042e-05 1.2665813457e-05 -3.77819372472e-05 +UniRef50_E6J991 Metallophosphoesterase 8.97830776414e-05 0.000518576168439 0.000428793090798 +UniRef50_UPI0003F99510 hypothetical protein 6.51156150194e-05 3.26137602645e-05 -3.25018547549e-05 +UniRef50_E3GC98 Multidrug resistance protein MdtG 0.00116203125828 0.000227750672386 -0.000934280585894 +UniRef50_E8JLX0 0.000370333918682 0.000792842493087 0.000422508574405 +UniRef50_Q6LMV3 S ribosylhomocysteine lyase 0.00155607427943 0.000351463317331 -0.0012046109621 +UniRef50_UPI0002C376D2 PREDICTED 6.32028421002e-05 0.000240579075657 0.000177376233557 +UniRef50_UPI000319E332 hypothetical protein 6.93645771181e-06 5.92772717087e-06 -1.00873054094e-06 +UniRef50_UPI00035F7937 hypothetical protein 7.26162069617e-07 8.85054628926e-05 8.7779300823e-05 +UniRef50_Q8LK02 5.08306137583e-05 3.67716347234e-06 -4.7153450286e-05 +UniRef50_UPI00045E23DB PREDICTED 1.10079216784e-05 1.11334202005e-05 1.254985221e-07 +UniRef50_P76318 Putative SOS response associated peptidase YedK 0.00316381574327 0.00133772994399 -0.00182608579928 +UniRef50_O31019 Carbamate kinase 0.000316356056823 0.00342545872957 0.00310910267275 +UniRef50_J7Q543 0.0123097419915 0.00315180457104 -0.00915793742046 +UniRef50_Q7NZ19 Phosphopantetheine adenylyltransferase 2.6903143847e-05 0.000119709202044 9.2806058197e-05 +UniRef50_I1PC32 3.70569975378e-05 3.9326509848e-05 2.2695123102e-06 +UniRef50_A5V3M9 N succinylarginine dihydrolase 1.43662811328e-05 4.73381871135e-05 3.29719059807e-05 +UniRef50_F3GLY7 Periplasmic binding protein LacI transcriptional regulator 0.000268176307705 5.50062197804e-05 -0.000213170087925 +UniRef50_UPI00016A69C6 hypothetical protein 0.00435234330555 0.00141279077093 -0.00293955253462 +UniRef50_Q49016 Arabinose transport protein 1.59395040383e-05 4.85963194684e-05 3.26568154301e-05 +UniRef50_O28733 Succinyl CoA ligase [ADP forming] subunit alpha 1 3.95267603724e-05 4.76327467094e-05 8.105986337e-06 +UniRef50_V6FRW4 Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein 0.000524889416796 0.00304846731061 0.00252357789381 +UniRef50_P95785 ATP synthase subunit b 0.00604819541684 0.000737678309092 -0.00531051710775 +UniRef50_H2ITE9 1.75146934346e-05 2.0699160779e-05 3.1844673444e-06 +UniRef50_A6W759 3.38994915078e-05 1.1077853675e-05 -2.28216378328e-05 +UniRef50_F9XKQ7 0.000342067777326 0.000410180933783 6.8113156457e-05 +UniRef50_A8LS45 Glycine tRNA ligase beta subunit 0.0014829288782 9.40000122672e-05 -0.00138892886593 +UniRef50_J9GQF0 Heat shock protein 70 0.000114428572481 0.000113230775014 -1.197797467e-06 +UniRef50_B0C3D3 2 isopropylmalate synthase homocitrate synthase family protein 0.000391951961456 0.000768012456789 0.000376060495333 +UniRef50_B3PE41 Rrf2 family protein 2.11573155118e-05 0.00910391602823 0.00908275871272 +UniRef50_B7LNX4 UPF0319 protein YccT 0.00905270177581 0.00303640627508 -0.00601629550073 +UniRef50_A0KTT2 4 hydroxy tetrahydrodipicolinate reductase 0.00286565120064 0.00843442358593 0.00556877238529 +UniRef50_UPI00029A5235 molybdenum cofactor biosynthesis protein A, partial 8.20232448143e-06 4.56917032921e-05 3.74893788107e-05 +UniRef50_F0VSK8 Complete chromosome sequence, strain ATCC BAA 2069 0.00173843772901 0.00281618893625 0.00107775120724 +UniRef50_UPI000475CB6C methionine synthase 1.76655782045e-05 2.76983408875e-05 1.0032762683e-05 +UniRef50_F8HCE7 0.0022828177701 0.000782295907797 -0.0015005218623 +UniRef50_UPI00035E8FBB hypothetical protein 0.000475130985215 2.0171079404e-05 -0.000454959905811 +UniRef50_Q9RY78 0.000274202897477 0.00278498984103 0.00251078694355 +UniRef50_A3JAP6 0.000100630534148 7.29030957143e-06 -9.33402245766e-05 +UniRef50_UPI0003B4F317 ABC transporter ATP binding protein, partial 1.27565215432e-05 2.45005391177e-05 1.17440175745e-05 +UniRef50_Q5XD15 Zinc binding protein AdcA 0.00463993307252 0.00600987054649 0.00136993747397 +UniRef50_Q5F8G9 ADP dependent NAD(P)H hydrate dehydratase 0.000149400787142 0.00234077256309 0.00219137177595 +UniRef50_Q21YB9 NADH quinone oxidoreductase subunit I 5.97710367334e-05 0.00831890020682 0.00825912917009 +UniRef50_D7GI06 Proline specific permease proY 0.000643983504138 0.00348807417514 0.002844090671 +UniRef50_A7MY01 Ribonuclease HII 2.55677494469e-05 1.15731896604e-05 -1.39945597865e-05 +UniRef50_W1GG79 CFA I fimbrial auxiliary subunit 0.000735362315945 0.00403944670667 0.00330408439072 +UniRef50_R7EZG6 1.3906840331e-05 1.83055392069e-05 4.3986988759e-06 +UniRef50_F7V4L9 L lactate permease 0.000106134767253 0.00204241926651 0.00193628449926 +UniRef50_UPI0003483AFA hypothetical protein 5.41856301628e-05 1.71110510454e-05 -3.70745791174e-05 +UniRef50_Q8CSV4 0.018113792202 0.00751950250096 -0.010594289701 +UniRef50_UPI000362C8FC hypothetical protein 1.34677635697e-05 1.86676787232e-05 5.1999151535e-06 +UniRef50_G9EJ55 1.08910196392e-05 1.79799905998e-05 7.0889709606e-06 +UniRef50_D3QEL4 ComF operon protein A, DNA transporter ATPase 0.0162273314327 0.010714810302 -0.0055125211307 +UniRef50_S9R468 Mobile element protein 5.17178942919e-05 2.32665657187e-05 -2.84513285732e-05 +UniRef50_K7RQ95 Integral membrane protein MviN 0.00013827325599 0.00537598928512 0.00523771602913 +UniRef50_S5E1S4 Chromosome partitioning protein ParB 9.90664722385e-05 2.10305892066e-05 -7.80358830319e-05 +UniRef50_Q89B29 Ribosomal RNA small subunit methyltransferase D 2.02605062616e-05 1.70557319127e-05 -3.2047743489e-06 +UniRef50_UPI000370F5E4 hypothetical protein, partial 1.4348701999e-05 2.46322225257e-05 1.02835205267e-05 +UniRef50_R8ZG28 Putative glucosyl transferase 0.000407276519902 0.000150347381809 -0.000256929138093 +UniRef50_G7U5G6 3.40462405978e-05 0.000169336258575 0.000135290017977 +UniRef50_UPI000366A264 hypothetical protein 2.7558138804e-06 5.04891132806e-06 2.29309744766e-06 +UniRef50_B1ES29 Inner membrane protein YeaI 0.000939128150774 0.00046506567747 -0.000474062473304 +UniRef50_J9UQW7 0.0019194202823 0.00285790359866 0.00093848331636 +UniRef50_A0A011NUN7 N5 carboxyaminoimidazole ribonucleotide synthase 8.02895683107e-06 5.55983778517e-06 -2.4691190459e-06 +UniRef50_Q6FDQ7 0.000155771384668 0.0060001545221 0.00584438313743 +UniRef50_UPI00036983C7 hypothetical protein 2.61384873002e-05 2.99715415684e-05 3.8330542682e-06 +UniRef50_B5HTP9 0.00023884679799 0.000333691192315 9.4844394325e-05 +UniRef50_UPI00046A99F4 spermidine putrescine ABC transporter permease 6.64952969062e-06 0.000192814297149 0.000186164767458 +UniRef50_A6M301 Carbohydrate kinase, YjeF related protein 0.00056353282674 0.000745740636852 0.000182207810112 +UniRef50_Q2NFN1 Predicted peptidase 0.00349579322556 0.000837596861015 -0.00265819636454 +UniRef50_U5UFJ6 0.0043371692672 0.00273190259626 -0.00160526667094 +UniRef50_UPI0002D512F5 hypothetical protein 3.32791509763e-05 3.50532334761e-05 1.7740824998e-06 +UniRef50_P32016 Capsule polysaccharide export ATP binding protein CtrD 0.000225017016282 0.00115893900599 0.000933921989708 +UniRef50_UPI000368193C hypothetical protein 3.69599017695e-05 1.13431851564e-05 -2.56167166131e-05 +UniRef50_A9MZ05 0.000102086107456 1.33424453305e-05 -8.87436621255e-05 +UniRef50_A6LSS4 0.000202586398316 0.000963847612847 0.000761261214531 +UniRef50_Q5F4W7 0.000159951690188 0.00196362532888 0.00180367363869 +UniRef50_W1Y671 Protein AraJ 0.000213065782269 4.56883817763e-05 -0.000167377400493 +UniRef50_R6V897 Extracellular solute binding protein family 1 0.00014334910969 0.00138396398987 0.00124061488018 +UniRef50_U5V3F5 8.6798602231e-05 0.000287678953141 0.00020088035091 +UniRef50_K7UNN0 8.32368429412e-06 8.94230568605e-06 6.1862139193e-07 +UniRef50_K2H9R9 0.000196599667576 0.000157452455265 -3.9147212311e-05 +UniRef50_UPI00036568A9 hypothetical protein 2.34182749085e-05 7.37526142144e-05 5.03343393059e-05 +UniRef50_P77334 Cyclic di GMP phosphodiesterase Gmr 0.00202340489233 0.000119480797778 -0.00190392409455 +UniRef50_UPI000377D288 hypothetical protein 6.49821045329e-06 2.06404001375e-06 -4.43417043954e-06 +UniRef50_K3YVC5 0.000169529635709 5.09174919915e-05 -0.000118612143718 +UniRef50_Q4L8M6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00739820577065 0.00357050478837 -0.00382770098228 +UniRef50_X1E4N0 Marine sediment metagenome DNA, contig 2.00750935732e-05 0.000530990699226 0.000510915605653 +UniRef50_A3JZY7 0.000650837911816 0.000957783908741 0.000306945996925 +UniRef50_Q8K986 7 cyano 7 deazaguanine synthase 8.64329073757e-06 2.35766420221e-05 1.49333512845e-05 +UniRef50_Q9RXF1 D alanine D alanine ligase 0.000599084280798 0.023093455771 0.0224943714902 +UniRef50_Q06986 E3 ubiquitin protein ligase SIAH2 1.2255282069e-05 1.34837897587e-05 1.2285076897e-06 +UniRef50_A4WPA7 0.000349360394337 0.00016070796965 -0.000188652424687 +UniRef50_B7RMN2 Flagellar protein, putative 6.7206946878e-05 7.57132292623e-05 8.5062823843e-06 +UniRef50_A4WPA8 0.00100442351114 0.00049611907576 -0.00050830443538 +UniRef50_K6TWJ0 0.0018759738336 0.000372247947718 -0.00150372588588 +UniRef50_UPI00037DF98D hypothetical protein 5.20660431834e-06 3.41393670369e-05 2.89327627186e-05 +UniRef50_Q5HPV8 Ribonuclease 3 0.0156286721779 0.00478453119349 -0.0108441409844 +UniRef50_B8DTT6 Phosphoribosylformylglycinamidine cyclo ligase 0.00809619427983 0.0036342108669 -0.00446198341293 +UniRef50_Q6CX30 FK506 binding protein 1 2.31808009757e-05 3.05153377848e-05 7.3345368091e-06 +UniRef50_UPI000466CF90 nitrate reductase, partial 9.32738393023e-07 2.96004615928e-06 2.02730776626e-06 +UniRef50_UPI0003B7B122 malonyl CoA ACP transacylase 7.95515606289e-06 1.18188858294e-05 3.86372976651e-06 +UniRef50_Q18DZ3 Probable cell surface glycoprotein 1.12428152944e-05 6.41919392861e-06 -4.82362136579e-06 +UniRef50_A6M1K6 0.000361302641379 0.000541224463645 0.000179921822266 +UniRef50_F0YBF5 Expressed protein 7.48433102705e-05 7.52481930542e-05 4.048827837e-07 +UniRef50_UPI0004210B91 thioredoxin 0.000493178159571 0.000349524690767 -0.000143653468804 +UniRef50_UPI00037B4F64 hypothetical protein 0.00011587387323 1.89234699748e-05 -9.69504032552e-05 +UniRef50_J7Q7A9 0.00082632854156 0.000412069821193 -0.000414258720367 +UniRef50_UPI000423006B antiporter 5.31157010441e-05 4.43559775125e-05 -8.7597235316e-06 +UniRef50_E8PEU6 4.10151771361e-06 0.00604117135677 0.00603706983906 +UniRef50_Z2D7Y6 0.000556147481478 3.0053561448e-05 -0.00052609392003 +UniRef50_UPI0003B393A2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 5.69890129287e-06 0.000184221216962 0.000178522315669 +UniRef50_P77694 Fimbria adhesin EcpD 0.00328011894763 0.00182262096975 -0.00145749797788 +UniRef50_R9SL72 DNA primase large subunit PriL 0.00218222646683 0.000420188348721 -0.00176203811811 +UniRef50_UPI0003D007CA hypothetical protein 1.01259721453e-05 2.18846110266e-05 1.17586388813e-05 +UniRef50_UPI0002EC7A35 hypothetical protein 8.02518868703e-05 0.000218773200257 0.000138521313387 +UniRef50_UPI00036B4C2E hypothetical protein 3.80383581835e-05 3.4335038192e-05 -3.7033199915e-06 +UniRef50_UPI0004669DE9 malate dehydrogenase 5.51636765796e-05 2.00708246155e-05 -3.50928519641e-05 +UniRef50_A3PJ14 Lipopolysaccharide biosynthesis 0.00528967320725 0.00103965213058 -0.00425002107667 +UniRef50_D6SDA6 0.00241154845084 0.00123784804092 -0.00117370040992 +UniRef50_Q5LP30 Valine tRNA ligase 2.11234786303e-05 2.04317590448e-05 -6.917195855e-07 +UniRef50_Q0K7S4 Undecaprenyl diphosphatase 0.000120728080037 2.28565910625e-05 -9.78714889745e-05 +UniRef50_B9KU47 0.00118668487779 0.0015542984484 0.00036761357061 +UniRef50_B8NDP1 Putative glutathione dependent formaldehyde activating enzyme 0.000115760293108 3.13745345103e-05 -8.43857585977e-05 +UniRef50_UPI0000393886 peptidase 4.90776077713e-05 2.4850801693e-05 -2.42268060783e-05 +UniRef50_D8HS39 9.4121642657e-05 2.51938920415e-05 -6.89277506155e-05 +UniRef50_N3DVV4 0.000900524150175 0.000626113155893 -0.000274410994282 +UniRef50_F6HHF0 6.73770234243e-05 9.26216610533e-05 2.5244637629e-05 +UniRef50_UPI0002483870 rod shape determining protein MreB 4.75216239676e-05 8.39423738277e-06 -3.91273865848e-05 +UniRef50_P21108 Ribose phosphate pyrophosphokinase 3 1.4225941132e-05 8.3466995995e-05 6.9241054863e-05 +UniRef50_UPI0003B4201A transcriptional regulator 6.09487069631e-05 6.56004784885e-05 4.6517715254e-06 +UniRef50_D3QI08 Autolysin 0.0215291072408 0.00749875433849 -0.0140303529023 +UniRef50_C1DNK0 0.000383990500841 0.00127536273223 0.000891372231389 +UniRef50_A7K6E8 Aconitase family 0.00163977241011 0.00140708530747 -0.00023268710264 +UniRef50_I0C2F4 0.0152122343978 0.00460380080298 -0.0106084335948 +UniRef50_Q753M0 Phosphoenolpyruvate carboxykinase [ATP] 8.20230582985e-06 9.66170692182e-05 8.84147633884e-05 +UniRef50_F3ZB33 Putative ABC transporter substrate binding protein 0.000135864358377 0.000119425219434 -1.6439138943e-05 +UniRef50_UPI00040A2517 hypothetical protein 0.00033213772076 4.02931165964e-05 -0.000291844604164 +UniRef50_A0A059IKZ4 0.000161471986946 9.44430084815e-05 -6.70289784645e-05 +UniRef50_UPI000289D94C aspartyl glutamyl tRNA amidotransferase subunit B 4.93947260234e-05 1.52029134454e-05 -3.4191812578e-05 +UniRef50_T1YAV1 Transposase 0.0183137785987 0.00785360256338 -0.0104601760353 +UniRef50_B4SDX3 Leucine tRNA ligase 6.79643785696e-06 0.00192147086118 0.00191467442332 +UniRef50_Q0C3D1 Protoheme IX farnesyltransferase 1.19822319692e-05 3.44526903829e-05 2.24704584137e-05 +UniRef50_X5QZB1 0.0033688443945 0.00291068386847 -0.00045816052603 +UniRef50_H9UQR5 0.000585195313439 0.000314724730229 -0.00027047058321 +UniRef50_W4SVT3 7.34010055984e-05 9.2401462068e-05 1.90004564696e-05 +UniRef50_M9VDN7 DeoR family transcriptional regulator 0.00019226790604 0.00403398612018 0.00384171821414 +UniRef50_UPI00037E4101 polyamine ABC transporter substrate binding protein 1.01306117802e-05 0.000318600146338 0.000308469534558 +UniRef50_UPI00038013D7 hypothetical protein 7.62767558371e-05 1.1081647278e-05 -6.51951085591e-05 +UniRef50_K7RSS9 Pseudouridine synthase 0.000348448605091 0.00376961961972 0.00342117101463 +UniRef50_Q9KRL3 Carboxynorspermidine synthase 0.000107410806881 0.000193611674065 8.6200867184e-05 +UniRef50_J3I1E6 2.0642442648e-05 1.70940173787e-05 -3.5484252693e-06 +UniRef50_UPI00037A3195 hypothetical protein, partial 1.70893235369e-05 0.00826822692035 0.00825113759681 +UniRef50_A3PIJ7 NUDIX hydrolase 0.00361605067409 0.000413030356916 -0.00320302031717 +UniRef50_A0A010IZE0 5.08699593909e-05 0.000261784107254 0.000210914147863 +UniRef50_Q82K60 6.96230609209e-05 2.25346633513e-05 -4.70883975696e-05 +UniRef50_A7BWG5 1.73354793907e-05 2.07158598045e-05 3.3803804138e-06 +UniRef50_D7REY5 Caffeine dehydrogenase subunit gamma 8.22779693662e-05 0.000133646217534 5.13682481678e-05 +UniRef50_Q033L0 tRNA modification GTPase MnmE 0.0353775648642 0.0121140186976 -0.0232635461666 +UniRef50_UPI000365C459 hypothetical protein 8.19106581083e-06 1.39278241648e-05 5.73675835397e-06 +UniRef50_F7X9S0 Phosphosugar isomerase 0.0130800191909 0.00164423422159 -0.0114357849693 +UniRef50_E3H2R2 PTS system, mannose fructose sorbose family, IIC component 0.000692040185662 0.00467764090842 0.00398560072276 +UniRef50_X8C840 Transketolase, thiamine diphosphate binding domain protein 5.76837509771e-05 4.93859767822e-05 -8.2977741949e-06 +UniRef50_A5UJG6 0.0013213779871 0.00123047226354 -9.090572356e-05 +UniRef50_L1INE5 7.41488434345e-05 9.81322363619e-05 2.39833929274e-05 +UniRef50_Q8YNF7 Aminomethyltransferase 4.69890776135e-06 4.68138184012e-05 4.21149106399e-05 +UniRef50_UPI000287F8C3 50S ribosomal protein L18 0.00142954482967 0.000370945629594 -0.00105859920008 +UniRef50_E2XNC4 Oligopeptidase B 0.000374127080514 9.44006516318e-05 -0.000279726428882 +UniRef50_A8FKX4 Elongation factor P 0.000268744403058 0.0042707649781 0.00400202057504 +UniRef50_A3TSE6 ISSfl4 5.06874471652e-05 3.25863489324e-05 -1.81010982328e-05 +UniRef50_K0SGI4 0.000283169731715 3.51964995301e-05 -0.000247973232185 +UniRef50_K9DHZ5 Inner membrane transporter YhaO 1.33070237883e-05 2.63503906619e-05 1.30433668736e-05 +UniRef50_K2CR97 0.000163478186016 1.85231234168e-05 -0.000144955062599 +UniRef50_UPI000382A7B2 hypothetical protein 0.00011633839862 4.2650992739e-05 -7.3687405881e-05 +UniRef50_I0C1L9 0.0077424418145 0.00334918325015 -0.00439325856435 +UniRef50_M9RMB0 Amino acid ABC transporter permease protein 0.00701602023124 0.000463680559831 -0.00655233967141 +UniRef50_B9KWA6 0.000175128358184 0.00053133981494 0.000356211456756 +UniRef50_A0A058T6Z9 0.000251726533089 0.000801008046243 0.000549281513154 +UniRef50_D6K2W1 0.000636009757362 0.000217267557662 -0.0004187421997 +UniRef50_A0RR59 Uracil phosphoribosyltransferase 8.99994128535e-06 8.49884162279e-05 7.59884749426e-05 +UniRef50_UPI00037904B4 amino acid ABC transporter ATP binding protein, partial 2.87801029189e-05 0.000282599717884 0.000253819614965 +UniRef50_Q1GHA7 Ferredoxin 0.00294303938972 0.000973185433509 -0.00196985395621 +UniRef50_UPI00036F7268 MULTISPECIES 5.38517757108e-05 0.00113687333978 0.00108302156407 +UniRef50_UPI00047D88C2 stage V sporulation protein D 1.83584615925e-06 4.9107949299e-06 3.07494877065e-06 +UniRef50_UPI000287A5C2 organic hydroperoxide resistance protein 3.46390341799e-05 6.13599021632e-05 2.67208679833e-05 +UniRef50_A9ALK8 FAD dependent oxidoreductase 0.000650079717867 0.000428578711365 -0.000221501006502 +UniRef50_UPI00045EB579 hypothetical protein 5.88422342093e-05 7.42582458616e-05 1.54160116523e-05 +UniRef50_Q69XT0 8.6758480038e-05 0.000265019951527 0.000178261471489 +UniRef50_UPI00047E74A6 hypothetical protein 2.95534504691e-06 4.17079818546e-06 1.21545313855e-06 +UniRef50_B9KQD9 Phage phi C31 gp36 major capsid like protein 0.00597959573684 0.00146385166116 -0.00451574407568 +UniRef50_A5W9S9 GTPase HflX 0.00117001585493 0.000578585926887 -0.000591429928043 +UniRef50_C8S226 Endoribonuclease L PSP 0.000553065015373 0.000200968105726 -0.000352096909647 +UniRef50_UPI000475C0DD iron ABC transporter 3.64264635142e-05 0.000705786027797 0.000669359564283 +UniRef50_P56861 Adenylyl sulfate kinase 0.000611933435908 0.0653218668405 0.0647099334046 +UniRef50_Q6GJM1 UPF0753 protein SAR0453 0.0144999723743 0.00283211721259 -0.0116678551617 +UniRef50_E1PY57 Riboflavin biosynthesis protein 0.000150392824239 0.00336462745012 0.00321423462588 +UniRef50_E8P9Z6 DNA repair protein RecN 0.000230261577886 0.00553840728224 0.00530814570435 +UniRef50_UPI0003FA1CD0 leucyl tRNA synthase 9.2068801765e-06 3.39818458505e-06 -5.80869559145e-06 +UniRef50_E4PYJ4 Thiol disulfide isomerase and thioredoxin 0.00410369278631 0.00161921754179 -0.00248447524452 +UniRef50_F0YAU6 3.78888960073e-05 1.70909184492e-05 -2.07979775581e-05 +UniRef50_V9QPJ8 7.64386143059e-06 2.53199315928e-05 1.76760701622e-05 +UniRef50_UPI0001745568 4 alpha glucanotransferase 1.30591475721e-05 0.000661971863283 0.000648912715711 +UniRef50_J2F940 Multidrug efflux RND transporter, membrane fusion protein MexE 0.000226293248633 0.000814365563854 0.000588072315221 +UniRef50_UPI0003090BBE chemotaxis protein CheY 3.35779407133e-05 2.87905011906e-06 -3.06988905942e-05 +UniRef50_Q50784 Polyferredoxin protein MvhB 0.00845645231742 0.0014811835677 -0.00697526874972 +UniRef50_C0HHH0 2.07205774913e-05 1.20713337178e-05 -8.6492437735e-06 +UniRef50_P75853 Putative aliphatic sulfonates binding protein 0.0037666796059 0.000806757493532 -0.00295992211237 +UniRef50_Q2KTS9 Phosphoribosyl ATP pyrophosphatase 4.92649040658e-05 0.000151076227879 0.000101811323813 +UniRef50_Q3IXK5 0.0154678049422 0.0018331334815 -0.0136346714607 +UniRef50_Q9KUI0 Sulfate thiosulfate import ATP binding protein CysA 0.00438973686944 0.00143047372762 -0.00295926314182 +UniRef50_Q3J5B1 0.0019020657152 0.00020627476498 -0.00169579095022 +UniRef50_F3ZY36 MATE efflux family protein 0.000206000862184 0.00208388289696 0.00187788203478 +UniRef50_Q891I6 Xanthine phosphoribosyltransferase 4.04198800632e-05 2.20562928676e-05 -1.83635871956e-05 +UniRef50_R7TBI6 8.53117590403e-06 3.43876879217e-05 2.58565120177e-05 +UniRef50_UPI00037EC417 hypothetical protein, partial 1.82849133624e-05 7.48610044857e-05 5.65760911233e-05 +UniRef50_UPI000469EAA1 hypothetical protein 4.88133817726e-05 2.52310769979e-05 -2.35823047747e-05 +UniRef50_W7S895 3.82067070859e-05 0.000133325826272 9.51191191861e-05 +UniRef50_UPI00037EBED1 hypothetical protein 0.000167229533186 0.000134465473679 -3.2764059507e-05 +UniRef50_F0PBM9 7.40846026952e-06 0.000815496488974 0.000808088028704 +UniRef50_X1YAY8 4.08789242554e-05 0.000115833198071 7.49542738156e-05 +UniRef50_UPI0003B33944 ATPase 1.716573376e-06 5.12628069606e-05 4.95462335846e-05 +UniRef50_H3FTW8 2.38567656569e-05 6.64804947937e-06 -1.72087161775e-05 +UniRef50_S4RAN5 2.1530352262e-05 1.4302145318e-05 -7.228206944e-06 +UniRef50_UPI0003658A58 hypothetical protein 7.22472887346e-06 0.000107583958687 0.000100359229814 +UniRef50_V5VE79 AdaA 0.000223805922247 0.00753602561511 0.00731221969286 +UniRef50_Y5XPW9 Serine aspartate repeat containing protein C 0.0016538351933 0.00106540301821 -0.00058843217509 +UniRef50_P64588 Transcriptional regulator YqjI 0.00261544531006 0.00135707150627 -0.00125837380379 +UniRef50_Q5XHA8 CTP synthase 1 A 2.86620627935e-06 0.000119156222015 0.000116290015736 +UniRef50_Q3JNW3 0.000134073408106 0.00030006777835 0.000165994370244 +UniRef50_Q93R93 Acetylornithine acetyl lysine aminotransferase 4.89927379852e-06 0.000146790872994 0.000141891599195 +UniRef50_UPI0003B5FA5F arginyl tRNA synthetase 4.75176717345e-06 8.32268108788e-06 3.57091391443e-06 +UniRef50_P37325 0.0019003511684 0.000216613720186 -0.00168373744821 +UniRef50_B4U1Q9 CRISPR associated endoribonuclease Cas2 0.00223485324481 0.000606815147654 -0.00162803809716 +UniRef50_UPI00047540FD ATP dependent DNA helicase RecQ 2.31410617912e-05 8.05548872144e-06 -1.50855730698e-05 +UniRef50_Q9HWZ6 Inorganic pyrophosphatase 0.00484351747574 6.28111270444e-05 -0.0047807063487 +UniRef50_UPI00041DD57B hypothetical protein 2.39299532104e-05 1.25557180309e-05 -1.13742351795e-05 +UniRef50_I0CNI8 1.26247943044e-05 0.00250134510197 0.00248872030767 +UniRef50_P19072 Branched chain amino acid transport system 2 carrier protein 0.00434696734427 0.000991417624319 -0.00335554971995 +UniRef50_UPI00037B9617 hypothetical protein 3.77235867806e-05 1.75025607471e-05 -2.02210260335e-05 +UniRef50_C9YGV0 4.6389785614e-06 2.43927506878e-05 1.97537721264e-05 +UniRef50_P44555 0.00016740442782 0.0109087080578 0.01074130363 +UniRef50_UPI0004408592 acyl CoA dehydrogenase NM domain like protein 6.31859110269e-06 0.0001148399398 0.000108521348697 +UniRef50_L8DV59 Pyrimidine nucleoside phosphorylase 0.000334058397217 0.000864341576184 0.000530283178967 +UniRef50_I7DAX1 2.10783956259e-06 9.06653965343e-06 6.95870009084e-06 +UniRef50_X2HWT2 Membrane protein 7.14034026878e-05 0.00536752917368 0.00529612577099 +UniRef50_R6H7C0 0.000188165395862 7.52651739008e-05 -0.000112900221961 +UniRef50_A5ZTX7 TRAP transporter, DctM like membrane protein 7.85583173735e-05 4.36826055632e-05 -3.48757118103e-05 +UniRef50_A8ACU9 0.000187226529253 0.00232250559567 0.00213527906642 +UniRef50_O87014 USG 1 protein homolog 0.000235438501092 0.000756893320425 0.000521454819333 +UniRef50_B9KU14 Transcriptional regulator, AraC family with amidase like domain 0.00234364589398 0.000186712353132 -0.00215693354085 +UniRef50_A6LR19 Nitrogenase 0.000620235931743 0.00178315933054 0.0011629233988 +UniRef50_UPI0003FC1CC9 DNA mismatch repair protein MutS 2.77612010877e-06 5.88477466318e-05 5.6071626523e-05 +UniRef50_UPI0002B472DF PREDICTED 2.19545220715e-06 1.48459877987e-05 1.26505355915e-05 +UniRef50_G3XDA7 Cell division protein FtsQ 0.000537898391826 0.000262115418808 -0.000275782973018 +UniRef50_A8EWJ4 Dihydroxy acid dehydratase 6.11296593526e-05 8.60642524568e-05 2.49345931042e-05 +UniRef50_UPI0002FFF8E0 hypothetical protein 2.34090951023e-05 0.00332985445807 0.00330644536297 +UniRef50_C3KCS9 Lipid II flippase FtsW 0.000751130258207 0.000308584917056 -0.000442545341151 +UniRef50_W1DNY7 Acyl CoA dehydrogenases 0.000110096073692 6.47603733676e-05 -4.53357003244e-05 +UniRef50_UPI0000164CF4 4 alpha glucanotransferase 3.97163360216e-05 0.00655871213079 0.00651899579477 +UniRef50_S9ULD0 1.2989500354e-05 0.000218990911885 0.000206001411531 +UniRef50_R6NN79 Asparagine synthetase 0.000626936148384 0.00116536040765 0.000538424259266 +UniRef50_UPI000362C4BE hypothetical protein 1.14666147068e-05 1.60418720227e-05 4.5752573159e-06 +UniRef50_A7MGN4 5.64816940918e-05 6.82246386152e-05 1.17429445234e-05 +UniRef50_UPI00036F08F2 hypothetical protein 8.52882913404e-06 1.33446315541e-05 4.81580242006e-06 +UniRef50_Q8EQK9 GTP cyclohydrolase FolE2 0.0117798639933 0.0017554060213 -0.010024457972 +UniRef50_UPI0001FFEE83 carbohydrate kinase, FGGY 0.000251991762604 0.000123649702104 -0.0001283420605 +UniRef50_G7M6Z6 SNF2 related protein 8.65915149539e-05 0.000809803939848 0.000723212424894 +UniRef50_A0A016QN06 Peptidase like protein 9.40362566627e-06 0.00167036143697 0.0016609578113 +UniRef50_O87050 Z47f protein 9.4060435331e-05 1.24002184055e-05 -8.16602169255e-05 +UniRef50_Q5HQ44 0.0233144648132 0.00896620202729 -0.0143482627859 +UniRef50_UPI0003B47736 ABC transporter 5.48534508744e-05 1.50137789542e-05 -3.98396719202e-05 +UniRef50_Q9RYX6 Xanthine dehydrogenase, C terminal subunit 0.00018969919819 0.0154462706107 0.0152565714125 +UniRef50_A5N5A2 Predicted methyl accepting chemotaxis protein 0.000711431388129 0.00209672976631 0.00138529837818 +UniRef50_Q896Z8 2 hydroxyacid dehydrogenase 0.000888222259522 0.000890936513813 2.714254291e-06 +UniRef50_A0A023L6S3 AraC family transcriptional regulator 0.00369649322654 0.00111975540808 -0.00257673781846 +UniRef50_S6AEX2 0.000872536361223 0.000342307869233 -0.00053022849199 +UniRef50_UPI000374E005 hypothetical protein 8.01029820221e-05 1.30437963661e-05 -6.7059185656e-05 +UniRef50_A4BQV7 0.000225601952872 3.43161175401e-05 -0.000191285835332 +UniRef50_B2I1F3 GGDEF domain protein 7.8588339106e-05 0.00734373196011 0.007265143621 +UniRef50_Q9RZ34 0.000512598112666 0.066926493974 0.0664138958613 +UniRef50_P32053 Prophage CP4 57 integrase 0.00108704608187 0.00117557706547 8.85309836e-05 +UniRef50_P53579 Methionine aminopeptidase A 6.51516167641e-05 3.98612518492e-05 -2.52903649149e-05 +UniRef50_X1SD71 Marine sediment metagenome DNA, contig 5.37499953376e-05 0.000848859192237 0.000795109196899 +UniRef50_UPI0002483124 anaerobic glycerol 3 phosphate dehydrogenase subunit B, partial 8.25213401889e-05 0.000121782328858 3.92609886691e-05 +UniRef50_UPI0002EC7919 citrate lyase 6.96986107929e-05 4.19627471405e-05 -2.77358636524e-05 +UniRef50_N6U9J3 6.0213976558e-06 8.99072720102e-06 2.96932954522e-06 +UniRef50_UPI000219384C amino acid transport protein, partial 8.58069097523e-05 0.000362302042933 0.000276495133181 +UniRef50_UPI0003488777 hypothetical protein 0.000169971883727 4.52986058613e-05 -0.000124673277866 +UniRef50_UPI000477CFFE hypothetical protein, partial 0.000187598409299 0.000169494629795 -1.8103779504e-05 +UniRef50_A7IPN7 TRAP dicarboxylate transporter, DctM subunit 4.81515137809e-06 8.57893005674e-06 3.76377867865e-06 +UniRef50_P76537 0.00209079907652 0.000312504449935 -0.00177829462658 +UniRef50_Q02SV2 Tyrosine tRNA ligase 0.000143811297212 0.000149492989024 5.681691812e-06 +UniRef50_UPI000379976F hypothetical protein 1.7442224856e-05 6.7817546433e-06 -1.06604702127e-05 +UniRef50_D3E3L7 Ribonuclease III Rnc 0.00349403387883 0.00236911011144 -0.00112492376739 +UniRef50_Q8FAM3 0.00199452606254 0.000922864703728 -0.00107166135881 +UniRef50_E3H102 0.00318779069318 0.00162760157032 -0.00156018912286 +UniRef50_B7A940 Carbamoyl phosphate synthase small chain 3.61833149931e-05 1.85070185093e-05 -1.76762964838e-05 +UniRef50_P0A0V1 LPP20 lipoprotein 0.000898776163933 0.00486273282123 0.0039639566573 +UniRef50_A0A023RX60 Membrane protein insertase 0.000287097672285 0.00858287455781 0.00829577688553 +UniRef50_Q1CSU8 tRNA pseudouridine synthase D 0.000121638879333 0.00365313791682 0.00353149903749 +UniRef50_B3PB14 2.94241870736e-06 9.06645050914e-06 6.12403180178e-06 +UniRef50_U5QR95 ATPase 0.000104676274751 0.000148014819033 4.3338544282e-05 +UniRef50_UPI00036F0DA2 hypothetical protein 1.68735068094e-05 4.6403893996e-06 -1.22331174098e-05 +UniRef50_UPI00046FF35E hypothetical protein, partial 0.000131904504881 0.00199314374117 0.00186123923629 +UniRef50_K7VAT5 1.03650276802e-05 3.39550108645e-05 2.35899831843e-05 +UniRef50_A0A024BZJ6 Peptide ABC transporter ATP binding protein 7.63111837258e-05 0.00561826297187 0.00554195178814 +UniRef50_W0YTU6 Aminoglycoside response regulator 0.00139879654241 0.00292403335831 0.0015252368159 +UniRef50_Q38YN7 Putative Holliday junction resolvase 0.0159539920915 0.00871287441779 -0.00724111767371 +UniRef50_D3V3Z5 2.59352942516e-05 3.64886123068e-05 1.05533180552e-05 +UniRef50_S0JG44 0.00277490168795 0.000630240733497 -0.00214466095445 +UniRef50_UPI00041DC2F9 ABC transporter 6.6377822421e-05 1.9381710839e-05 -4.6996111582e-05 +UniRef50_A7MUU9 Glutamate 1 semialdehyde 2,1 aminomutase 0.00448710573816 4.0387479338e-05 -0.00444671825882 +UniRef50_C1DQZ5 Transcriptional regulator PsrA 0.00133353279737 0.00050698146814 -0.00082655132923 +UniRef50_UPI0003A41BA8 succinate semialdehyde dehdyrogenase 1.04463163511e-05 0.000110295071468 9.98487551169e-05 +UniRef50_K8E2T1 3.88114116683e-05 0.000107844034216 6.90326225477e-05 +UniRef50_UPI00047B06D7 acetyltransferase 2.63064605777e-05 5.72319419515e-05 3.09254813738e-05 +UniRef50_UPI0003673946 hypothetical protein 0.00047650590164 0.000255513215777 -0.000220992685863 +UniRef50_Q1R4J9 0.00410762933058 0.00182939648424 -0.00227823284634 +UniRef50_F9Z1V7 0.000130784016554 0.00155387354433 0.00142308952778 +UniRef50_P31058 0.00195010595022 0.00087323945645 -0.00107686649377 +UniRef50_L0GJH1 0.00182700804616 0.00158234372656 -0.0002446643196 +UniRef50_UPI00047B6853 NAD binding oxidoreductase 1.62431559609e-05 2.65279926873e-05 1.02848367264e-05 +UniRef50_M1MHE2 Glycosyl transferase, family 2 7.44059110757e-05 0.00109975658954 0.00102535067846 +UniRef50_UPI00029A566E glycoside hydrolase family protein 1.85400331874e-05 2.42365246543e-05 5.6964914669e-06 +UniRef50_UPI00030D2211 hypothetical protein 6.06044624924e-05 9.06308093076e-05 3.00263468152e-05 +UniRef50_Q67KH8 Imidazole glycerol phosphate synthase subunit HisH 1.14195399126e-05 1.16149392268e-05 1.953993142e-07 +UniRef50_P39794 PTS system trehalose specific EIIBC component 0.0126677351851 0.00419699302187 -0.00847074216323 +UniRef50_A4EHJ0 AzlC family protein 6.29202129575e-05 2.23128649955e-05 -4.0607347962e-05 +UniRef50_U6ED29 Ferrous iron transport protein B 0.0037477827622 0.000722463488991 -0.00302531927321 +UniRef50_Q21SX1 D alanine D alanine ligase 0.00486232265292 0.00134949699205 -0.00351282566087 +UniRef50_X7X2Q6 2.99192168505e-05 1.04641759106e-05 -1.94550409399e-05 +UniRef50_A6M1J5 0.000186720699949 0.000479394136731 0.000292673436782 +UniRef50_A6M1J9 0.000784941123248 0.0030897850838 0.00230484396055 +UniRef50_Q98IL5 Mlr2349 protein 0.000102756812312 5.51135375225e-05 -4.76432747895e-05 +UniRef50_B2IM62 Cmp binding factor 1 0.00685109997428 0.00481311565228 -0.002037984322 +UniRef50_U3SS19 0.00483975215599 0.000342065681693 -0.0044976864743 +UniRef50_UPI0003D32881 hypothetical protein 0.00101020864089 1.04850860876e-05 -0.000999723554802 +UniRef50_R5ZJK5 Pyruvate dehydrogenase complex repressor 0.000165564030199 0.000565809443022 0.000400245412823 +UniRef50_P23173 Low affinity tryptophan permease 0.00385371302162 0.000605733083301 -0.00324797993832 +UniRef50_E0TBL9 3.47367607272e-05 1.1184156012e-05 -2.35526047152e-05 +UniRef50_J3KZC6 0.000108190273645 0.00046189898304 0.000353708709395 +UniRef50_P08987 Glucosyltransferase I 0.00469119221995 0.0019732121045 -0.00271798011545 +UniRef50_S5N864 Molecular chaperone GroES 0.00762707122606 0.00231030505892 -0.00531676616714 +UniRef50_UPI0001FFE2F2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridin epyrophosphokinase 0.000111894335927 0.000115583837648 3.689501721e-06 +UniRef50_E8P8Z7 Transposase 5.35260825662e-05 1.8088448861e-05 -3.54376337052e-05 +UniRef50_B7H383 Fumarate reductase flavoprotein subunit 7.09115821271e-05 0.00957584426058 0.00950493267845 +UniRef50_UPI0003B789C4 DNA mismatch repair protein MutS 2.01800429941e-06 7.38274774422e-05 7.18094731428e-05 +UniRef50_Q49WG0 Organic hydroperoxide resistance protein like 2 0.00925329932551 0.0074116136236 -0.00184168570191 +UniRef50_X5MDF7 Thioesterase family protein domain protein 1.04842235922e-05 1.14341128037e-05 9.498892115e-07 +UniRef50_A4WNH8 Major facilitator superfamily MFS_1 0.00635630223941 0.000293368202811 -0.0060629340366 +UniRef50_A2SMC9 Phosphoheptose isomerase 2.06739875477e-05 1.97260897133e-05 -9.478978344e-07 +UniRef50_A8F5R0 Holliday junction ATP dependent DNA helicase RuvB 1.03102797246e-05 1.07474888836e-05 4.37209159e-07 +UniRef50_Q6MAC7 Glutamate 1 semialdehyde 2,1 aminomutase 3.8063877297e-06 6.88982650623e-06 3.08343877653e-06 +UniRef50_Q9JSQ9 Dihydrofolate reductase 1.37734124348e-05 0.00831015680389 0.00829638339146 +UniRef50_Q8UEB0 Phosphoribosylformylglycinamidine synthase 2 6.73114358529e-05 1.61416090264e-05 -5.11698268265e-05 +UniRef50_A5UKW8 Prephenate dehydrogenase 0.00241892254872 0.00027871060906 -0.00214021193966 +UniRef50_I1VJZ3 PhoH 0.000228938364882 0.00688393220252 0.00665499383764 +UniRef50_A3M2Y1 Pseudouridine synthase 0.000127385598041 0.00302870484292 0.00290131924488 +UniRef50_C7MCQ3 Pseudouridine synthase 0.000154075913818 0.00713291459184 0.00697883867802 +UniRef50_UPI0002F44DE1 amino acid dehydrogenase 2.04340808687e-05 1.10657337888e-05 -9.3683470799e-06 +UniRef50_D2SFI0 SAF domain protein 0.000149165601091 2.45476866008e-05 -0.00012461791449 +UniRef50_Q041N3 1.13739241886e-05 1.92577607478e-05 7.8838365592e-06 +UniRef50_Q2NEB6 Phosphoribosylformylglycinamidine synthase 2 0.00404265552258 0.000690512270379 -0.0033521432522 +UniRef50_UPI000472CD1A anhydro N acetylmuramic acid kinase 2.59910544547e-06 2.59577889735e-05 2.3358683528e-05 +UniRef50_F0S3X5 4.39325474021e-05 6.14604192458e-05 1.75278718437e-05 +UniRef50_UPI00035C5DE1 hypothetical protein 0.00028201575767 9.02944725924e-05 -0.000191721285078 +UniRef50_K9SGR1 Transposase IS4 family protein 6.4290731221e-05 1.72704547517e-05 -4.70202764693e-05 +UniRef50_A0A022S5M2 NAD binding domain of 6 phosphogluconate dehydrogenase family protein 8.1839675541e-05 0.000277514886541 0.000195675211 +UniRef50_P77211 Cation efflux system protein CusC 0.00627290823104 0.00341711104428 -0.00285579718676 +UniRef50_Q3IUV3 TraH 0.0366612917254 0.00983177993298 -0.0268295117924 +UniRef50_UPI0003B5C889 6 phosphofructokinase 2.27206508363e-05 9.3115154918e-06 -1.34091353445e-05 +UniRef50_E4BA85 8.43449572516e-06 6.02015836948e-05 5.17670879696e-05 +UniRef50_UPI00016A5A20 ABC type spermidine putrescine transport system, permease component II 3.96802204763e-05 0.000114820200813 7.51399803367e-05 +UniRef50_A3M530 Phage tail tape meausure protein lambda family 6.15466286206e-05 0.00534266354363 0.00528111691501 +UniRef50_G1UVN7 8.49230890476e-05 2.60476582826e-05 -5.8875430765e-05 +UniRef50_D5AUR3 Tyrosine protein kinase Wzc 0.0019106135318 0.000895621616885 -0.00101499191491 +UniRef50_UPI00040C0F6B hypothetical protein 3.70014875625e-06 8.71714428149e-06 5.01699552524e-06 +UniRef50_Q6A666 9.89046258984e-05 0.00627880106146 0.00617989643556 +UniRef50_A8AQ52 0.00278632419218 0.00131338164962 -0.00147294254256 +UniRef50_Q2GCH6 Malate dehydrogenase 3.42967318858e-05 1.76359014312e-05 -1.66608304546e-05 +UniRef50_E2ZRH0 0.000320621656529 0.000622844134027 0.000302222477498 +UniRef50_UPI00047014CA hypothetical protein 0.000186307243351 7.40277057652e-05 -0.000112279537586 +UniRef50_UPI000161E9D3 2 methyl branched chain enoyl CoA reductase isoform I 3.74463278101e-06 3.06672046248e-05 2.69225718438e-05 +UniRef50_P0ADV7 Probable phospholipid binding protein MlaC 0.00607319025028 0.00186853258617 -0.00420465766411 +UniRef50_UPI00039F6CD4 glutathione ABC transporter permease 1.53736692184e-05 2.6495755142e-05 1.11220859236e-05 +UniRef50_Q47NN7 Uroporphyrinogen decarboxylase 1.03579746867e-05 1.00471023132e-05 -3.108723735e-07 +UniRef50_Q9RXX4 0.000405898912746 0.0188208162243 0.0184149173116 +UniRef50_A4WS74 0.000330741114618 8.7435946252e-05 -0.000243305168366 +UniRef50_P39310 0.00114051067353 0.00275961606811 0.00161910539458 +UniRef50_B3DX01 Aspartate tRNA ligase 2.75347321435e-06 3.92312955488e-06 1.16965634053e-06 +UniRef50_M9RV27 UPF0301 protein OA238_c37660 5.05275766811e-05 0.000110945811078 6.04182343969e-05 +UniRef50_P0AE13 AMP nucleosidase 0.00458100208324 0.00066283845966 -0.00391816362358 +UniRef50_UPI00046665BD hypothetical protein 6.18100265434e-05 2.85437845488e-05 -3.32662419946e-05 +UniRef50_UPI000473A39B 30S ribosomal protein S15, partial 0.000164852158096 0.000133539151667 -3.1313006429e-05 +UniRef50_UPI00026CDD90 putative esterase 0.000182992757039 0.000113772798055 -6.9219958984e-05 +UniRef50_M2JJ86 Aryl alcohol dehydrogenase 0.00035985959882 0.00175435666453 0.00139449706571 +UniRef50_M9RIF3 5.95076213481e-05 0.000227692871371 0.000168185250023 +UniRef50_UPI000467C7F7 hypothetical protein 1.49539822438e-05 0.00010157590637 8.66219241262e-05 +UniRef50_Q4L8I6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0277376706018 0.00566421499871 -0.0220734556031 +UniRef50_G7M6V2 Cof like hydrolase 0.0012355547902 0.00142666982638 0.00019111503618 +UniRef50_UPI0003B6B463 protein phosphatase 8.57644775715e-06 1.0581766776e-05 2.00531901885e-06 +UniRef50_Q9RS72 0.000129720271086 0.0445737677852 0.0444440475141 +UniRef50_L0LHI9 8.82023075829e-05 7.20336255997e-05 -1.61686819832e-05 +UniRef50_Q3IVA7 Phosphoglucomutase phosphomannomutase 0.000802297378384 0.000376567163405 -0.000425730214979 +UniRef50_W5X4J6 Glycoside hydrolase family protein 7.48994529727e-06 0.000100935265689 9.34453203917e-05 +UniRef50_P0A635 Cysteine tRNA ligase 4.56035083835e-06 1.15090948905e-05 6.94874405215e-06 +UniRef50_Q838S5 Glyoxalase 4.20870301763e-05 0.00119523348917 0.00115314645899 +UniRef50_K7RWW8 3 5 exonuclease 0.000543019546019 0.003928756062 0.00338573651598 +UniRef50_Q1GDK6 Uroporphyrinogen decarboxylase 0.0142716639859 0.00348555649866 -0.0107861074872 +UniRef50_B0RVK3 Succinyl CoA 0.0133136531123 0.0399481304585 0.0266344773462 +UniRef50_A8ACZ6 Xaa Pro dipeptidase 0.00451495223133 0.00080613097734 -0.00370882125399 +UniRef50_A8LRK2 0.000437041328714 0.000204775113178 -0.000232266215536 +UniRef50_R7S2B2 HD domain PDEase like protein 2.41597887256e-06 6.70515302197e-06 4.28917414941e-06 +UniRef50_F0XZC7 0.000269520191837 0.000535785712312 0.000266265520475 +UniRef50_Q6GBA6 Histidinol phosphate aminotransferase 0.0186552743932 0.00669131202621 -0.011963962367 +UniRef50_UPI00037E8A1E hypothetical protein 1.17587631553e-05 0.000174776342465 0.00016301757931 +UniRef50_UPI000255621F hypothetical protein 3.3329442087e-05 3.02511250281e-05 -3.0783170589e-06 +UniRef50_G2RRU8 Glycerol uptake facilitator Permease 0.0148307840887 0.000525786418738 -0.01430499767 +UniRef50_UPI0003FB737F DNA gyrase subunit A 6.87623927077e-06 1.39678457209e-05 7.09160645013e-06 +UniRef50_J3I8M6 3.09107475349e-05 0.000591634499551 0.000560723752016 +UniRef50_Q8XBT3 Universal stress protein G 0.00657223082255 0.000566102310275 -0.00600612851228 +UniRef50_M9VBX6 0.000224004066923 0.00475112126189 0.00452711719497 +UniRef50_M4WZP2 0.000238412203486 0.000661156802679 0.000422744599193 +UniRef50_UPI00016C466B Extracellular ligand binding receptor 7.59667976638e-06 2.38021061735e-05 1.62054264071e-05 +UniRef50_Q1IL91 NADH quinone oxidoreductase subunit B 2 2.91782887407e-05 0.000134068517014 0.000104890228273 +UniRef50_A6VB56 0.00140130727096 0.000383528188565 -0.0010177790824 +UniRef50_T1A5J7 1.08886392692e-05 4.41908693859e-05 3.33022301167e-05 +UniRef50_UPI0003B56320 DNA repair protein RadA 8.88224326416e-06 2.19455277163e-05 1.30632844521e-05 +UniRef50_UPI000382943F hypothetical protein, partial 0.00013233442521 2.71424058965e-05 -0.000105192019314 +UniRef50_S8UV07 0.000149500838014 4.5608757559e-05 -0.000103892080455 +UniRef50_UPI0001913D8E hypothetical protein, partial 5.60626694013e-05 6.13547616856e-05 5.2920922843e-06 +UniRef50_W4TLW8 ABC type multidrug transport system 0.000416344840642 0.000714475899663 0.000298131059021 +UniRef50_Q93K67 Arginine deiminase 0.00034531198059 0.00609572905263 0.00575041707204 +UniRef50_UPI00036FB25E GMP synthase 1.35509705451e-05 1.07792058092e-05 -2.7717647359e-06 +UniRef50_V9U0L1 Transcriptional regulator 0.000238387123302 0.00026057356341 2.2186440108e-05 +UniRef50_F8FR22 ABC transporter permease protein 0.0245589962513 0.00768157444921 -0.0168774218021 +UniRef50_UPI00035D0F9F hypothetical protein, partial 1.50770599952e-05 0.000144315739263 0.000129238679268 +UniRef50_S5S114 CarD family transcriptional regulator protein 0.00476040117614 0.00083803972742 -0.00392236144872 +UniRef50_UPI00037BA794 hypothetical protein 1.33490158393e-05 1.64159890884e-05 3.0669732491e-06 +UniRef50_E8SJL6 Manganese ABC transporter, ATP binding protein SitB 0.0194900015167 0.00492071690459 -0.0145692846121 +UniRef50_E1W2A8 Deoxyribose phosphate aldolase 0.000393113982 0.0012902373158 0.0008971233338 +UniRef50_UPI0003175B32 hypothetical protein 1.88641176413e-05 2.55057759843e-05 6.641658343e-06 +UniRef50_A6LZB7 0.000672355115255 0.0044009909253 0.00372863581005 +UniRef50_A6LZB6 0.000216945970609 0.000301856938874 8.4910968265e-05 +UniRef50_Q6GB21 0.00295060832698 0.000896840665248 -0.00205376766173 +UniRef50_UPI0003B57978 siderophore interacting protein 1.14355928213e-05 0.000610495452829 0.000599059860008 +UniRef50_C1N717 Predicted protein 6.18829489886e-05 0.000157460542253 9.55775932644e-05 +UniRef50_Q5HIS8 Single stranded DNA binding protein 1 0.055049965532 0.0245721877675 -0.0304777777645 +UniRef50_UPI00046AB08C hypothetical protein 8.68352887165e-06 0.000109258858791 0.000100575329919 +UniRef50_U7I8Y0 0.00129634534954 0.000474642211084 -0.000821703138456 +UniRef50_Q8DW20 AguR protein 0.00545234688493 0.00100319420213 -0.0044491526828 +UniRef50_UPI00046CE535 hypothetical protein 5.24391124012e-05 9.07922112568e-06 -4.33598912755e-05 +UniRef50_Q4EE14 0.000283498777876 0.000438160392755 0.000154661614879 +UniRef50_A6M0G1 Extracellular solute binding protein, family 5 0.000834814193266 0.00194451863003 0.00110970443676 +UniRef50_M1Y549 0.000165011658617 4.22318236215e-05 -0.000122779834996 +UniRef50_P37597 Inner membrane transport protein YdhC 0.00314854546762 0.000317902734364 -0.00283064273326 +UniRef50_UPI00046FDF41 hypothetical protein 1.16432129652e-05 2.66589005524e-05 1.50156875872e-05 +UniRef50_M3EIH0 Alkaline phosphatase 8.92785718753e-06 0.000371051242698 0.00036212338551 +UniRef50_Q88FX9 Nicotinate dehydrogenase subunit A 0.000249085644463 0.00101493398536 0.000765848340897 +UniRef50_P77923 Delta aminolevulinic acid dehydratase 0.000279099075769 0.00633465280423 0.00605555372846 +UniRef50_K5YXR4 2.56515961025e-06 1.58673936802e-05 1.330223407e-05 +UniRef50_Q6FED0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.000373009181642 0.00588864850608 0.00551563932444 +UniRef50_B0KA54 GTPase Era 0.00169028099822 0.000719824693411 -0.000970456304809 +UniRef50_UPI00037E38E9 hypothetical protein, partial 1.93050692661e-05 0.000132412544879 0.000113107475613 +UniRef50_B9DIA5 Methylenetetrahydrofolate reductase 0.0237864330294 0.00515324347738 -0.018633189552 +UniRef50_W5XBY9 Sugar ABC transporter permease 3.88534849052e-05 7.3502942433e-05 3.46494575278e-05 +UniRef50_P71348 Glutamate pyruvate aminotransferase AlaA 0.000716282105868 0.00231379459493 0.00159751248906 +UniRef50_UPI00036FDD71 hypothetical protein 5.21628421797e-06 9.220967669e-06 4.00468345103e-06 +UniRef50_Q8CVL1 Multidrug resistance protein MdtE 0.00404971879983 0.0018552535062 -0.00219446529363 +UniRef50_A6LTI4 0.000150592814697 0.0013614924166 0.0012108996019 +UniRef50_A6LTI6 0.000152416953778 0.00374207894439 0.00358966199061 +UniRef50_A6LTI7 0.000138803792491 0.00162901646139 0.0014902126689 +UniRef50_Q98QY9 Glycerol kinase 2.17158329999e-06 8.02616276262e-05 7.80900443262e-05 +UniRef50_Q03ZA4 Ribosomal RNA small subunit methyltransferase G 0.0147534322414 0.0128532572221 -0.0019001750193 +UniRef50_X6FLX7 C4 dicarboxylate ABC transporter 1.28831672507e-05 2.86776151455e-05 1.57944478948e-05 +UniRef50_X0T626 Marine sediment metagenome DNA, contig 3.95622022752e-05 1.29442402025e-05 -2.66179620727e-05 +UniRef50_A4WNY5 0.0150506381063 0.00980029789019 -0.00525034021611 +UniRef50_F2D9R2 Predicted protein 5.16745400073e-06 0.000122148700345 0.000116981246344 +UniRef50_O25042 0.000182360381085 0.00698167885197 0.00679931847088 +UniRef50_UPI000377F130 hypothetical protein 0.000121574936125 8.00361562986e-05 -4.15387798264e-05 +UniRef50_Q2LUS9 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.73045032e-05 8.36942852922e-06 -8.93507467078e-06 +UniRef50_B7V621 0.000657658069571 0.00109985116255 0.000442193092979 +UniRef50_Q18CF3 DNA directed RNA polymerase subunit beta 4.24912972522e-06 3.0088349183e-06 -1.24029480692e-06 +UniRef50_X4QVT5 Antitoxin HicB 5.99138378937e-05 0.000176523274017 0.000116609436123 +UniRef50_R0U5E9 3.26576008664e-05 1.08033761939e-05 -2.18542246725e-05 +UniRef50_H7CZX2 DNA replication protein DnaC 0.000246086316459 0.00157599001565 0.00132990369919 +UniRef50_X5K1L0 0.000247832284945 0.000462096708163 0.000214264423218 +UniRef50_B1LXW0 0.00254370283955 0.00117886895209 -0.00136483388746 +UniRef50_UPI0003ACEF34 dihydrofolate synthase 2.00470741962e-06 2.02209855765e-05 1.82162781569e-05 +UniRef50_B2UX43 Chromosomal replication initiator protein DnaA 0.0112623430536 0.00456642502132 -0.00669591803228 +UniRef50_Q6G904 DNA primase 0.0190406576145 0.00471023152792 -0.0143304260866 +UniRef50_Q0TMX8 Threonine tRNA ligase 0.000204451528796 0.000833818936025 0.000629367407229 +UniRef50_D0CZU1 2 oxoglutarate dehydrogenase E1 component 0.00835458268566 0.0021186019053 -0.00623598078036 +UniRef50_A5UN27 Putative antimicrobial peptide ABC transporter, permease component 0.00123730632132 0.000673240753426 -0.000564065567894 +UniRef50_UPI0003093DAF hypothetical protein 8.82278766945e-06 5.10323507815e-06 -3.7195525913e-06 +UniRef50_Q9HZS1 Histidine transport ATP binding protein HisP 0.00054202023741 0.000244737600989 -0.000297282636421 +UniRef50_Q02F58 Phosphoserine phosphatase 0.00039839037489 0.00577165786004 0.00537326748515 +UniRef50_Q04849 Nitrogen assimilation regulatory protein NtrX 0.0042029536618 0.00092009278594 -0.00328286087586 +UniRef50_UPI0002378F3D ABC transporter 3.81340870863e-06 3.00118447326e-06 -8.1222423537e-07 +UniRef50_A0M4U6 Phosphopantetheine adenylyltransferase 1.26616957756e-05 1.68303758117e-05 4.1686800361e-06 +UniRef50_Q9CHW5 Phosphoserine aminotransferase 0.00447947331171 0.00131520116333 -0.00316427214838 +UniRef50_UPI0002E6BDE4 hypothetical protein 7.77256900993e-05 1.06899487625e-05 -6.70357413368e-05 +UniRef50_P66901 Diaminopropionate ammonia lyase 0.00335974377099 0.00232366285866 -0.00103608091233 +UniRef50_P0A2E0 Nitrogen regulation protein NR 0.00350135714236 0.000418586134499 -0.00308277100786 +UniRef50_B9KU76 Gas vesicle protein 0.0012505997281 0.00081279827118 -0.00043780145692 +UniRef50_A6M095 Pentapeptide repeat protein 0.000342525236349 0.00135590410539 0.00101337886904 +UniRef50_Q8D653 Sulfate thiosulfate import ATP binding protein CysA 0.000116661898341 4.376729536e-05 -7.2894602981e-05 +UniRef50_A5UM14 Proteasome subunit beta 0.00158955364513 0.00216260462366 0.00057305097853 +UniRef50_P68209 Succinyl CoA ligase [ADP forming] subunit alpha 1, mitochondrial 5.60996344374e-05 3.62113745594e-05 -1.9888259878e-05 +UniRef50_Q9RZP0 Potassium transporting ATPase B chain 1.38425487671e-05 0.00784244833036 0.00782860578159 +UniRef50_V9ZQ34 0.000223384954315 0.000315846743525 9.246178921e-05 +UniRef50_B0K4D2 N acetyl gamma glutamyl phosphate reductase 5.3310024025e-06 1.70557550182e-05 1.17247526157e-05 +UniRef50_UPI0003B7561B transposase, partial 9.69707931002e-05 8.32649203064e-05 -1.37058727938e-05 +UniRef50_UPI00029A0E68 dgpfaetke family protein 2.63646142194e-05 1.51699170307e-05 -1.11946971887e-05 +UniRef50_Q2CH80 2.78907460348e-05 0.000326119481191 0.000298228735156 +UniRef50_UPI000467FCE1 ABC transporter ATP binding protein 2.5975302123e-05 4.54469068407e-05 1.94716047177e-05 +UniRef50_L2Q9X2 9.66958834137e-05 1.61625606657e-05 -8.0533322748e-05 +UniRef50_UPI000361DBC6 hypothetical protein 6.53103590256e-06 6.82083735101e-05 6.16773376075e-05 +UniRef50_D8J0Q1 2 isopropylmalate synthase 3.21998901321e-06 1.2083083206e-05 8.86309419279e-06 +UniRef50_A0A014L0D1 Polyketide cyclase 2.79246277729e-05 4.74736117826e-05 1.95489840097e-05 +UniRef50_UPI00031B5027 hypothetical protein 8.94809452849e-06 2.11444371808e-06 -6.83365081041e-06 +UniRef50_B0CEH5 0.000116660721695 4.58869325352e-05 -7.07737891598e-05 +UniRef50_P0AA79 Hexuronate transporter 0.0034566739948 0.00069089442604 -0.00276577956876 +UniRef50_X2GRS8 FAD dependent pyridine nucleotide disulfide oxidoreductase 0.0158425986149 0.00172405589693 -0.014118542718 +UniRef50_A4W853 Negative modulator of initiation of replication 0.00269488381753 0.000326316801329 -0.0023685670162 +UniRef50_Q2NUD2 Cytidine deaminase 0.00291438493102 0.000755369253966 -0.00215901567705 +UniRef50_F0Y8N9 6.72786260995e-05 4.58191542328e-05 -2.14594718667e-05 +UniRef50_T1YB06 Ribosomal RNA small subunit methyltransferase E 0.0200712432531 0.00498183350878 -0.0150894097443 +UniRef50_Q8DWK3 0.00605372499495 0.00204170473111 -0.00401202026384 +UniRef50_M1XHY8 Membrane protein, putative 0.0048650516939 0.00205254462429 -0.00281250706961 +UniRef50_Q9RVM4 Transcriptional regulator 0.000436232529273 0.0420832337783 0.041647001249 +UniRef50_D7AF64 NADPH Fe oxidoreductase subunit beta 3.03344909874e-06 3.92985887758e-06 8.9640977884e-07 +UniRef50_UPI000427FE74 hypothetical protein 6.26062635493e-06 8.81401445695e-06 2.55338810202e-06 +UniRef50_A1WXT0 Zinc import ATP binding protein ZnuC 2.19873152004e-05 3.53139133472e-05 1.33265981468e-05 +UniRef50_UPI000380220D hypothetical protein, partial 3.97351870416e-05 0.000198504469146 0.000158769282104 +UniRef50_P35630 NADP dependent isopropanol dehydrogenase 0.00220148601437 0.00137493197121 -0.00082655404316 +UniRef50_UPI0003641C87 hypothetical protein 1.00212644815e-06 1.75723760438e-05 1.65702495957e-05 +UniRef50_Q47152 0.00549178776369 0.00403200465087 -0.00145978311282 +UniRef50_UPI00036884C8 hypothetical protein 0.000200884117885 6.63884889273e-05 -0.000134495628958 +UniRef50_Q8KA76 RNA polymerase sigma factor RpoH 0.0022789234777 0.000414479586229 -0.00186444389147 +UniRef50_W4KQX7 1.72670631544e-06 9.4363042766e-06 7.70959796116e-06 +UniRef50_UPI0003734279 hypothetical protein 2.74371199291e-06 2.59455287883e-06 -1.4915911408e-07 +UniRef50_UPI000395CB52 2.44573020013e-05 4.11891037648e-05 1.67318017635e-05 +UniRef50_C5N1M7 0.000761034404067 2.45897694793e-05 -0.000736444634588 +UniRef50_UPI0003F148E4 glutamate rich protein 2 isoform 3 3.49335774146e-06 0.000598228434046 0.000594735076305 +UniRef50_UPI0003A99930 hypothetical protein 3.4046696582e-06 1.13995932104e-05 7.9949235522e-06 +UniRef50_B1M288 1.97176912657e-05 9.95149945399e-06 -9.76619181171e-06 +UniRef50_Q5Y0N1 RNA binding tegument protein 0.000124384520751 0.00013493960599 1.0555085239e-05 +UniRef50_A9M0X9 0.00108390792412 0.00386389038262 0.0027799824585 +UniRef50_W5V8H5 O methyltransferase 0.000137267632307 0.000497740449558 0.000360472817251 +UniRef50_Q8E7H4 Sensor protein LytS 0.00577726689744 0.00158359786283 -0.00419366903461 +UniRef50_UPI00021977F6 DNA repair ATPase 3.0831970033e-06 5.20041056974e-06 2.11721356644e-06 +UniRef50_A0LBS6 Plasmid pRiA4b ORF 3 family protein 0.000121394663855 1.01435046007e-05 -0.000111251159254 +UniRef50_Q5PJK8 sn glycerol 3 phosphate binding periplasmic protein UgpB 0.00223863487834 0.000543540262579 -0.00169509461576 +UniRef50_Q58400 Putative hydrogenase expression formation protein MJ0993 0.00450158673608 0.000933629868734 -0.00356795686735 +UniRef50_Q3IF99 Twitching motility protein PilU 0.000245428490074 0.00494108344441 0.00469565495434 +UniRef50_B9KX88 0.0358514246382 0.00541999804001 -0.0304314265982 +UniRef50_UPI0003B52C75 ATP binding protein 4.92991863429e-05 1.65065199187e-05 -3.27926664242e-05 +UniRef50_UPI00037FF3F7 hypothetical protein 9.33313758677e-06 5.01751984567e-05 4.08420608699e-05 +UniRef50_Q3JNU0 NAD transhydrogenase subunit beta 0.000935208884628 0.0101613367368 0.00922612785217 +UniRef50_Q87NA5 Probable intracellular septation protein A 0.00331967903984 0.0010287948211 -0.00229088421874 +UniRef50_A4WC00 Protein MtfA 0.00172841700889 0.000516954293387 -0.0012114627155 +UniRef50_V6USS0 Leucyl tRNA synthetase 0.000331184007446 0.000205214057872 -0.000125969949574 +UniRef50_P25131 0.00457780669233 0.00186285211532 -0.00271495457701 +UniRef50_A4XZS6 GCN5 related N acetyltransferase 0.000768644479962 0.000575292282856 -0.000193352197106 +UniRef50_I6SSZ2 Transcriptional regulator 0.00666524396169 0.00288034041398 -0.00378490354771 +UniRef50_UPI0004777E62 molecular chaperone GroES 1.23073522032e-05 0.000134086356488 0.000121779004285 +UniRef50_L7WXY9 0.120662254724 0.0336332433747 -0.0870290113493 +UniRef50_X1NEY9 Marine sediment metagenome DNA, contig 0.000230812002296 5.86934495774e-05 -0.000172118552719 +UniRef50_Q4L9U1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0108801536274 0.00283087359372 -0.00804928003368 +UniRef50_A3PS34 Methyltransferase type 11 0.000201864165162 0.000299813913899 9.7949748737e-05 +UniRef50_F2DK91 Predicted protein 7.83506406181e-05 4.48228842268e-05 -3.35277563913e-05 +UniRef50_Q9RUN0 UvrABC system protein C 6.14131218259e-05 0.0159052575331 0.0158438444113 +UniRef50_A6Q9M2 Imidazoleglycerol phosphate dehydratase 1.14988276095e-05 2.39261597791e-05 1.24273321696e-05 +UniRef50_B0VKB6 Type II secretion system protein L 0.000315693634753 0.0100234597846 0.00970776614985 +UniRef50_W8T948 3.73374070743e-05 0.000135562049752 9.82246426777e-05 +UniRef50_Q1CHM2 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 6.12250743721e-05 2.020250005e-05 -4.10225743221e-05 +UniRef50_D2ATJ4 2 isopropylmalate synthase 2.35739608585e-06 1.17798286299e-05 9.42243254405e-06 +UniRef50_UPI000349D801 hypothetical protein 1.09341186113e-05 0.00159030631402 0.00157937219541 +UniRef50_L7VSY8 0.000100800241366 0.00270507731418 0.00260427707281 +UniRef50_UPI00035C1945 hypothetical protein, partial 2.55300425828e-05 1.00574178025e-05 -1.54726247803e-05 +UniRef50_F5XRW0 0.000781403775608 0.00447389694955 0.00369249317394 +UniRef50_E9USM4 3.23090073268e-06 4.03717959656e-06 8.0627886388e-07 +UniRef50_B8A2U2 0.000124141865608 2.29945034618e-05 -0.000101147362146 +UniRef50_D8JJP8 8.95931935559e-05 0.0064113700103 0.00632177681674 +UniRef50_L7VTK0 0.00013198810799 0.000978427621959 0.000846439513969 +UniRef50_A0A017HMR2 0.000481737024421 8.39305871475e-05 -0.000397806437273 +UniRef50_UPI0003F79B23 N anthranilate isomerase 7.6025546299e-06 8.23527065541e-05 7.47501519242e-05 +UniRef50_B9KL86 0.00228494165222 0.00157007379245 -0.00071486785977 +UniRef50_Q2YXZ9 Probable CtpA like serine protease 0.0159507206765 0.00423847117099 -0.0117122495055 +UniRef50_C5MZV6 0.00200184172698 0.00212563122969 0.00012378950271 +UniRef50_A3PGB9 Two component, sigma54 specific, transcriptional regulator, Fis family 8.90297143505e-05 0.000134438560782 4.54088464315e-05 +UniRef50_UPI000308CCAF hypothetical protein 1.15697317314e-05 1.08862330483e-05 -6.834986831e-07 +UniRef50_I6SVD2 ABC transporter permease 0.0054905474429 0.00137523189429 -0.00411531554861 +UniRef50_X5NVN5 Oxidoreductase 6.60304303512e-05 4.78625120955e-05 -1.81679182557e-05 +UniRef50_E5ANB9 Transposase 8.41450708557e-05 4.46984999313e-05 -3.94465709244e-05 +UniRef50_UPI00035E5C37 hypothetical protein 1.90399327373e-05 0.000590036323223 0.000570996390486 +UniRef50_B0VTM3 Signal peptidase I 0.000380643142163 0.00462802623346 0.0042473830913 +UniRef50_Q6ASN4 GMP synthase [glutamine hydrolyzing] 2.58234881714e-05 3.22168882966e-05 6.3934001252e-06 +UniRef50_Q8RBE5 Dephospho CoA kinase 1.59608343145e-05 1.35740187458e-05 -2.3868155687e-06 +UniRef50_A6LWC7 Glycerol 1 phosphate dehydrogenase (+)) 0.000119206101737 0.000718768717791 0.000599562616054 +UniRef50_W1GFB3 ABC peptide transporter, inner membrane subunit 0.000672732690309 0.000285336752184 -0.000387395938125 +UniRef50_U5UCP9 Putative transposase 0.000399030676636 0.000192226710349 -0.000206803966287 +UniRef50_UPI000255CD61 peptidase M24 5.11554200297e-06 2.17259459547e-05 1.66104039517e-05 +UniRef50_U3TGB3 ATPase components of ABC transporters 0.00564049648223 0.000637189910954 -0.00500330657128 +UniRef50_F8ACN4 TraU family protein 0.000105155868877 1.56713989583e-05 -8.94844699187e-05 +UniRef50_UPI0003710E05 hypothetical protein 5.48727988055e-06 8.86800168774e-06 3.38072180719e-06 +UniRef50_UPI000287BD0C iron siderophore uptake system transmembrane protein 1.85570698396e-05 2.46666861624e-05 6.1096163228e-06 +UniRef50_U2SDU2 Macro domain protein 1.86379009635e-05 0.000170827956918 0.000152190055955 +UniRef50_P21362 Protein YciF 0.00246758976008 0.000392882534625 -0.00207470722546 +UniRef50_L8FTT7 0.000174130730822 0.000293779615222 0.0001196488844 +UniRef50_Q1GEB3 0.000428390235975 7.15630141786e-05 -0.000356827221796 +UniRef50_D8JLE3 Cell division protein FtsQ 0.00014334910969 0.0052397511638 0.00509640205411 +UniRef50_Q1GEB7 0.000144532557278 8.38466394581e-05 -6.06859178199e-05 +UniRef50_G9F1Y9 2 enoate reductase FldZ 0.00033784934993 0.00168181456954 0.00134396521961 +UniRef50_J3PLS0 1.76417593292e-05 6.45814050655e-05 4.69396457363e-05 +UniRef50_Q01V55 Dihydroorotase 1.89253211283e-05 7.18785523468e-06 -1.17374658936e-05 +UniRef50_R0VGG6 6.24316632184e-05 1.11943812053e-05 -5.12372820131e-05 +UniRef50_UPI00021958FB inosine 5 monophosphate dehydrogenase 1.16221459969e-05 6.74000538166e-05 5.57779078197e-05 +UniRef50_C5N5S9 Streptolysin associated protein SagD 0.0065610370904 0.00158912095191 -0.00497191613849 +UniRef50_UPI000472128D hypothetical protein, partial 8.55214457501e-06 1.20275982234e-05 3.47545364839e-06 +UniRef50_P36647 Prepilin peptidase dependent protein D 0.000267089143052 0.000404543431768 0.000137454288716 +UniRef50_Q3KIW4 Nicotinate phosphoribosyltransferase 0.00184569590458 0.000481871637809 -0.00136382426677 +UniRef50_UPI00040FE5F8 hypothetical protein 0.000140245922481 0.000111898014332 -2.8347908149e-05 +UniRef50_P45394 Inner membrane protein YrbG 0.00248425803855 0.000438650232183 -0.00204560780637 +UniRef50_Q8PWQ2 UPF0107 protein MM_1524 0.000687448771559 0.0221487528896 0.021461304118 +UniRef50_P25718 Alpha amylase 0.00293335089222 0.000944551521626 -0.00198879937059 +UniRef50_UPI00047A8026 D ribose transporter ATP binding protein 3.1122563277e-06 1.14662674595e-05 8.3540111318e-06 +UniRef50_Q3IV67 0.00452853633036 0.00113110222496 -0.0033974341054 +UniRef50_Q5FL71 Prolipoprotein diacylglyceryl transferase 7.28625190608e-06 0.000677372903543 0.000670086651637 +UniRef50_K7RVZ0 TIGR01777 family protein 0.000126249494601 0.00810572466251 0.00797947516791 +UniRef50_B0VR24 9.03442746157e-06 0.00300645552726 0.0029974210998 +UniRef50_Q17ZN4 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000451427665587 0.00765920185557 0.00720777418998 +UniRef50_A0A017TGF9 0.000117392175095 5.00305302093e-05 -6.73616448857e-05 +UniRef50_R7C015 ABC transporter permease protein 0.000658106748512 0.000983244159752 0.00032513741124 +UniRef50_P23874 Serine threonine protein kinase HipA 0.00188077423819 0.00165633768778 -0.00022443655041 +UniRef50_P54385 Glutamate dehydrogenase, mitochondrial 6.52898490794e-06 1.27182257874e-05 6.18924087946e-06 +UniRef50_V9T176 Phage tail length tape measure protein 0.000690280184256 0.000828016336657 0.000137736152401 +UniRef50_UPI0004690011 hypothetical protein 1.4585432813e-06 3.19258010404e-06 1.73403682274e-06 +UniRef50_Q729V5 1,4 alpha glucan branching enzyme GlgB 3.77878698851e-06 7.6275014235e-06 3.84871443499e-06 +UniRef50_P76251 D malate dehydrogenase [decarboxylating] 0.00279773383952 0.00723658526859 0.00443885142907 +UniRef50_M4QX58 0.000154919010474 0.00433940503256 0.00418448602209 +UniRef50_P05417 Ubiquinol cytochrome c reductase iron sulfur subunit 0.0039820486114 0.000602687153456 -0.00337936145794 +UniRef50_B4V7N1 Integral membrane protein 3.56200252365e-05 3.51090316775e-05 -5.10993559e-07 +UniRef50_S5XTF2 0.000275438385494 6.99930109575e-05 -0.000205445374536 +UniRef50_P76418 0.00334559105602 0.0014774852516 -0.00186810580442 +UniRef50_P65264 Lipoprotein signal peptidase 0.000678118542849 7.33652145062e-05 -0.000604753328343 +UniRef50_Q8NXI7 MW0768 protein 0.0165691126842 0.000600644146164 -0.015968468538 +UniRef50_J7M936 Competence protein 9.31772114203e-06 2.36436077487e-05 1.43258866067e-05 +UniRef50_UPI000466F951 hypothetical protein 1.11235640618e-05 4.83065357461e-05 3.71829716843e-05 +UniRef50_A0A023S2A4 Anhydratase 0.000226319551871 0.0104032284435 0.0101769088916 +UniRef50_UPI00036D0961 hypothetical protein 1.08090106798e-05 6.91415519432e-05 5.83325412634e-05 +UniRef50_F4AWZ4 Acetyl CoA acetyltransferase 0.0119538864178 0.00416581225511 -0.00778807416269 +UniRef50_UPI0004692135 cell division protein 2.41999729773e-06 2.92030284286e-05 2.67830311309e-05 +UniRef50_I6T6L1 0.00490303065892 0.00115237180559 -0.00375065885333 +UniRef50_F9YRZ6 HD domain containing protein 2 2.69534117763e-05 2.25242321922e-05 -4.4291795841e-06 +UniRef50_X1T676 Marine sediment metagenome DNA, contig 1.63419450484e-05 0.00021614616051 0.000199804215462 +UniRef50_I0I0B9 2.982452067e-05 1.82535131153e-05 -1.15710075547e-05 +UniRef50_Q8CPM1 Protoheme IX farnesyltransferase 0.0209683406444 0.00601370238337 -0.014954638261 +UniRef50_UPI0003613269 hypothetical protein 9.33464011615e-05 8.58097414564e-05 -7.5366597051e-06 +UniRef50_A5UJC1 Predicted transcription regulator 0.00308898325174 0.000303407573826 -0.00278557567791 +UniRef50_Q9HSC3 Archaeal Lon protease 0.00252692122893 0.000281117718886 -0.00224580351004 +UniRef50_A3I3T9 0.000214034627228 0.000197007803564 -1.7026823664e-05 +UniRef50_D6SE14 4 phosphopantetheinyl transferase family protein 0.0172477035074 0.000998060263055 -0.0162496432443 +UniRef50_O26872 0.00220884133646 0.00154178300083 -0.00066705833563 +UniRef50_F6DA35 2.36597432698e-05 1.36035498907e-05 -1.00561933791e-05 +UniRef50_A0A016QP53 0.000369661543406 0.000100050246086 -0.00026961129732 +UniRef50_C6D6V1 Extradiol ring cleavage dioxygenase class III protein subunit B 0.000964540787351 0.00192377730863 0.000959236521279 +UniRef50_Q9RX31 0.000409285711357 0.0576873507816 0.0572780650702 +UniRef50_Q5HH87 Regulatory protein Spx 0.0108788541575 0.0120331991202 0.0011543449627 +UniRef50_UPI0003641212 hypothetical protein 1.82340779019e-05 9.99261487502e-06 -8.24146302688e-06 +UniRef50_UPI00034C12E9 hypothetical protein 6.9637076968e-07 1.39642356514e-05 1.32678648817e-05 +UniRef50_Q9RX39 0.000230044792465 0.0220865498423 0.0218565050498 +UniRef50_UPI00026C7577 oxidoreductase 1.38659649176e-05 1.86974401265e-05 4.8314752089e-06 +UniRef50_UPI000428654A hypothetical protein 4.47392491801e-05 2.09588827432e-05 -2.37803664369e-05 +UniRef50_A8LTG8 NADH dehydrogenase 0.00934019849585 0.00102085984401 -0.00831933865184 +UniRef50_E3I8L4 0.00611876282111 0.00200808416269 -0.00411067865842 +UniRef50_J0XSF7 0.0513049709221 0.00233144767259 -0.0489735232495 +UniRef50_UPI000454614C 1.66461712178e-06 1.64901363444e-05 1.48255192226e-05 +UniRef50_E7EWU3 Acetyl coenzyme A synthetase, cytoplasmic 3.81541307996e-06 2.14397251516e-05 1.76243120716e-05 +UniRef50_D0C8Q0 0.000117110441217 0.00563391484364 0.00551680440242 +UniRef50_A3U071 1.47238885055e-05 3.25295088891e-05 1.78056203836e-05 +UniRef50_M1MFW2 Cobalamin biosynthesis protein CobD 0.000779562398727 0.00031361066038 -0.000465951738347 +UniRef50_P19318 Respiratory nitrate reductase 2 beta chain 0.00288732484574 0.00143133738948 -0.00145598745626 +UniRef50_UPI000376E605 hypothetical protein 2.6674446554e-05 2.61901875984e-05 -4.842589556e-07 +UniRef50_X5EIL9 Tandem five TM family protein 0.00795500277792 0.00106777734317 -0.00688722543475 +UniRef50_H0PXP7 0.000786677190994 0.000118144031415 -0.000668533159579 +UniRef50_Q4L3J2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0206001290036 0.00575165995132 -0.0148484690523 +UniRef50_B9KQG2 Chemotaxis MotB protein 0.0142613161985 0.00325941138405 -0.0110019048145 +UniRef50_Q3J6K8 Transcriptional regulator AcuR 0.010457243851 0.00266519052993 -0.00779205332107 +UniRef50_D5BS88 Aerobic glycerol 3 phosphate dehydrogenase 0.00123740947687 0.000654333801122 -0.000583075675748 +UniRef50_A6M2L9 Capsular exopolysaccharide family 0.000170038733717 0.00146291508511 0.00129287635139 +UniRef50_J9DL69 1.61626434882e-05 5.78101069547e-06 -1.03816327927e-05 +UniRef50_UPI0003EFB221 hypothetical protein 4.53211126404e-05 5.01662530361e-05 4.8451403957e-06 +UniRef50_UPI00046939D9 hypothetical protein 1.74752379989e-05 1.01333503721e-05 -7.3418876268e-06 +UniRef50_UPI00038308DC hypothetical protein M271_48570 9.66337255591e-06 4.15433201229e-05 3.1879947567e-05 +UniRef50_A6M0I9 0.00016508133623 0.000708465746741 0.000543384410511 +UniRef50_R9YNN7 ABC 2 transporter family protein 0.00546480751441 0.00722300561842 0.00175819810401 +UniRef50_P0A1A6 Branched chain amino acid aminotransferase 0.0020358755766 0.000993391537532 -0.00104248403907 +UniRef50_R7PVV7 Conserved hypothetical membrane protein Msm_1770 0.00139895125516 0.00053693946399 -0.00086201179117 +UniRef50_T0MQ15 2.07086548719e-05 4.62836384938e-06 -1.60802910225e-05 +UniRef50_UPI000364254B hypothetical protein 1.81432309913e-05 6.19993327076e-06 -1.19432977205e-05 +UniRef50_UPI0003B3327B 16S rRNA methyltransferase 7.16663046167e-06 1.09414866562e-05 3.77485619453e-06 +UniRef50_Q9ZKX6 Putative 0.000521395803504 0.00245194622331 0.00193055041981 +UniRef50_UPI000469FF0C hypothetical protein 7.41243022549e-06 1.08800575862e-05 3.46762736071e-06 +UniRef50_P39829 D galactarate dehydratase 0.00292883297348 0.00618345656555 0.00325462359207 +UniRef50_UPI00035E2496 hypothetical protein 5.44078358104e-05 3.22410668852e-05 -2.21667689252e-05 +UniRef50_A3PPP4 0.000114161201013 1.13822235914e-05 -0.000102778977422 +UniRef50_Q74IL5 50S ribosomal protein L27 0.00662760749953 0.0024620569401 -0.00416555055943 +UniRef50_UPI000379C346 hypothetical protein 3.16654567748e-05 0.000414242237802 0.000382576781027 +UniRef50_UPI0003FF1625 hypothetical protein 3.5415317548e-05 3.0683708334e-05 -4.731609214e-06 +UniRef50_B4QTQ4 GD21117 3.60705131652e-05 2.22494684607e-05 -1.38210447045e-05 +UniRef50_S4GRW5 Polyphosphate kinase 0.000292512079526 0.0233776446907 0.0230851326112 +UniRef50_UPI000380F5C4 hypothetical protein 9.00158313422e-07 8.46389058594e-07 -5.3769254828e-08 +UniRef50_Q6F8V1 2,3 dihydroxybenzoate AMP ligase 0.00019719975882 0.00670947507743 0.00651227531861 +UniRef50_O34987 Guanine hypoxanthine permease PbuG 0.0210958936531 0.0105009596311 -0.010594934022 +UniRef50_X4UKI9 Membrane protein 7.80810490109e-06 8.24156514316e-06 4.3346024207e-07 +UniRef50_U5PB64 Uroporphyrinogen decarboxylase 0.00291163590113 0.00189291625163 -0.0010187196495 +UniRef50_N2JS66 Cyanate hydratase 0.00238476753563 0.000345399655201 -0.00203936788043 +UniRef50_UPI00031EB597 hypothetical protein 3.44031671482e-05 7.15982024871e-05 3.71950353389e-05 +UniRef50_Q9KN37 Ribose import ATP binding protein RbsA 1.76644650209e-05 1.82101642495e-05 5.456992286e-07 +UniRef50_Q1XDM0 Pyruvate dehydrogenase E1 component subunit alpha 5.09700187677e-06 1.57494231675e-05 1.06524212907e-05 +UniRef50_UPI0001FFE0CA DEAD DEAH box helicase 2.14073724003e-06 0.00010708786431 0.00010494712707 +UniRef50_UPI0003175780 hypothetical protein 5.15056249552e-06 1.00541843327e-05 4.90362183718e-06 +UniRef50_G7M2K8 YibE F family protein 0.000104277897476 0.00139816367086 0.00129388577338 +UniRef50_A6LWW9 0.000229707498285 0.000569742839604 0.000340035341319 +UniRef50_Q1QA11 Ribosomal protein S12 methylthiotransferase RimO 0.00315974778708 0.0577544898855 0.0545947420984 +UniRef50_Q03224 Fructose 1,6 bisphosphatase class 2 0.00274947101137 0.00149352001702 -0.00125595099435 +UniRef50_B2TBY2 VRR NUC domain protein 0.000810055288423 0.000107453015844 -0.000702602272579 +UniRef50_Q160T4 Histidine tRNA ligase 0.00123608981799 0.000126473963685 -0.0011096158543 +UniRef50_Q8VQS9 MntC 0.0118001290659 0.000459207073564 -0.0113409219923 +UniRef50_A6LW09 Response regulator receiver protein 8.48283121002e-05 0.00153786222414 0.00145303391204 +UniRef50_E4GYP5 Phenylalanine tRNA ligase beta subunit 0.000156956296637 0.00433814918197 0.00418119288533 +UniRef50_Q05756 Glutamate synthase [NADPH] small chain 0.00182548531874 0.000385792153819 -0.00143969316492 +UniRef50_Q58569 Protein FwdA 0.00372795827053 0.000448156465229 -0.0032798018053 +UniRef50_W0RSQ0 1.94683583351e-05 5.80051521861e-05 3.8536793851e-05 +UniRef50_UPI00045E8969 hypothetical protein 1.30023489956e-05 1.77161130512e-05 4.7137640556e-06 +UniRef50_UPI00035A2281 PREDICTED 1.05773835482e-05 4.84319633896e-05 3.78545798414e-05 +UniRef50_X6ZDD4 0.000158557191652 4.64836144275e-05 -0.000112073577224 +UniRef50_U6ED09 ATP dependent RNA helicase, DEAD DEAH box family 0.00276072421958 0.00085373104716 -0.00190699317242 +UniRef50_V6EN15 Oligopeptidase A 0.00537317263568 0.00241130511707 -0.00296186751861 +UniRef50_UPI0003761157 hypothetical protein 6.19705686204e-05 9.0598183929e-06 -5.29107502275e-05 +UniRef50_W9EJG3 Tandem lipoprotein 5.52826268501e-05 8.12209023577e-05 2.59382755076e-05 +UniRef50_Q8XDN0 Septum site determining protein MinC 0.00295121637515 0.00147212539437 -0.00147909098078 +UniRef50_A9B6J1 DNA directed RNA polymerase subunit beta 9.42652847353e-07 3.60212737802e-06 2.65947453067e-06 +UniRef50_UPI0003AB99D7 0.000405189863182 1.20865445599e-05 -0.000393103318622 +UniRef50_A3DEM3 4 hydroxy tetrahydrodipicolinate reductase 0.000281705961835 0.000631980646712 0.000350274684877 +UniRef50_B5YHP1 Adenylate kinase 2.87008915949e-05 5.48688779862e-05 2.61679863913e-05 +UniRef50_A0A024L5Z4 Glycyl radical enzyme activating protein family 0.000726139519627 0.00154078280971 0.000814643290083 +UniRef50_Q1Q8C1 Sec independent protein translocase protein TatC 0.000347379744345 0.00446130776241 0.00411392801807 +UniRef50_R4LTT1 2.53735323054e-05 6.16975961362e-05 3.63240638308e-05 +UniRef50_Q7BQS4 Se3 9.5563583074e-05 6.47729163482e-05 -3.07906667258e-05 +UniRef50_A0A013GNM0 Penicillin binding transpeptidase domain protein 0.000452675413254 0.00697751451027 0.00652483909702 +UniRef50_W7T589 4.8865870735e-05 1.45747900163e-05 -3.42910807187e-05 +UniRef50_U3SVP2 Signal peptidase type IV 0.00346104486116 0.00239060605953 -0.00107043880163 +UniRef50_UPI000463AB2B proline iminopeptidase 6.90262166838e-06 9.19897813907e-06 2.29635647069e-06 +UniRef50_UPI00046A179B dihydropteroate synthase 5.19730628353e-06 9.26754626421e-05 8.74781563586e-05 +UniRef50_UPI0003A95978 hypothetical protein 3.87422294827e-05 3.85563551135e-05 -1.858743692e-07 +UniRef50_F3ZGB9 Putative AraC family transcription regulator 1.92649951006e-06 0.000156722388568 0.000154795889058 +UniRef50_A0A011NPY8 Phosphofructokinase 1.13278885152e-05 0.000329593880414 0.000318265991899 +UniRef50_D3DJ42 2 oxoglutarate carboxylase small subunit 0.0357993525907 0.0158055817562 -0.0199937708345 +UniRef50_UPI00037C16F6 ABC transporter permease 5.13008799522e-06 2.08503899299e-05 1.57203019347e-05 +UniRef50_UPI0003B5FDE5 PREDICTED 1.12113284331e-06 8.81558939275e-07 -2.39573904035e-07 +UniRef50_L2Y6Z3 Inner membrane ABC transporter ATP binding protein YddA 0.00158184742444 0.00174776241254 0.0001659149881 +UniRef50_UPI0003B5FA7B diacylglycerol kinase 1.11200722409e-05 8.94418242077e-05 7.83217519668e-05 +UniRef50_UPI00035D784B hypothetical protein 1.07665698244e-05 3.42478378076e-05 2.34812679832e-05 +UniRef50_C8KCZ1 1.63128915561e-06 9.31824982898e-06 7.68696067337e-06 +UniRef50_A4WTQ5 Cytochrome c biogenesis factor like protein 0.000308658515242 0.000269526413726 -3.9132101516e-05 +UniRef50_UPI00026CD046 cell wall hydrolase 4.63368908805e-06 6.81650702886e-06 2.18281794081e-06 +UniRef50_M3K7Q0 Replication initiation protein RepC 8.41080854467e-05 3.34422769452e-05 -5.06658085015e-05 +UniRef50_W0ISJ9 Sulfate thiosulfate transporter subunit 0.00695766637868 0.00237123855438 -0.0045864278243 +UniRef50_UPI000378F5B1 hypothetical protein, partial 9.77547095748e-06 4.15153315766e-05 3.17398606191e-05 +UniRef50_N7TQJ5 0.000239646540089 0.000365166229343 0.000125519689254 +UniRef50_C9R5I1 Lipopolysaccharide biosynthesis protein 3.12894684428e-06 5.41625872492e-06 2.28731188064e-06 +UniRef50_A5D5F2 1.78563270122e-06 2.46849605136e-06 6.8286335014e-07 +UniRef50_A0A023L0Z2 Tail assembly protein 0.000519235789519 0.000538571498834 1.9335709315e-05 +UniRef50_UPI0003799A1D hypothetical protein 2.02649546358e-05 0.00039076128183 0.000370496327194 +UniRef50_UPI0003836BE8 1.16835891119e-06 5.25259459081e-06 4.08423567962e-06 +UniRef50_P23101 Toluate 1,2 dioxygenase electron transfer component 0.00105164845735 0.000221408825359 -0.000830239631991 +UniRef50_X7EHW6 0.000387392749395 0.000301386165342 -8.6006584053e-05 +UniRef50_UPI0003646727 hypothetical protein 6.93350505529e-05 6.85112377367e-05 -8.238128162e-07 +UniRef50_A5N1Z0 0.000158997433803 0.00225674895649 0.00209775152269 +UniRef50_H0PW14 Transcriptional regulator, LuxR family 0.00050800391874 0.00130151586895 0.00079351195021 +UniRef50_B1LE56 Cysteine desulfurase 0.000623482142684 0.00101949863082 0.000396016488136 +UniRef50_E3G1U2 Alpha L rhamnosidase 0.000799906236806 0.000248148876585 -0.000551757360221 +UniRef50_UPI000265785F PREDICTED 5.01642342693e-06 8.08781842324e-06 3.07139499631e-06 +UniRef50_Q9ZS97 UPF0051 protein ABCI8, chloroplastic 0.0123884638089 0.00359875269364 -0.00878971111526 +UniRef50_UPI00047644EC glycogen debranching protein 3.25812123978e-06 1.07034997416e-05 7.44537850182e-06 +UniRef50_UPI0003B33C48 hypothetical protein 0.000154015127585 0.000321355637372 0.000167340509787 +UniRef50_Q3J226 Phage protein, HK97 gp10 family 0.00508585783294 0.0011743897636 -0.00391146806934 +UniRef50_Q8DRY1 0.00558598359346 0.000750590748787 -0.00483539284467 +UniRef50_UPI0003B70F3D multidrug ABC transporter ATP binding protein 1.06783807927e-05 2.32430738122e-05 1.25646930195e-05 +UniRef50_UPI00042929E4 hypothetical protein 3.65831068215e-05 2.74822333085e-05 -9.100873513e-06 +UniRef50_P37056 Probable endopeptidase YaeF 0.002005502287 0.000316976785549 -0.00168852550145 +UniRef50_A7IM59 Pyridoxine 5 phosphate synthase 0.000482003584857 0.00764284989672 0.00716084631186 +UniRef50_Q8TQ79 Enolase 8.58745161339e-06 7.43581556257e-05 6.57707040123e-05 +UniRef50_UPI0002DF017A hypothetical protein 7.00675146039e-05 1.26460936427e-05 -5.74214209612e-05 +UniRef50_UPI00038FD033 KDP operon transcriptional regulatory protein KdpE 2.41348165212e-05 3.97396415166e-05 1.56048249954e-05 +UniRef50_E8U6Y9 3.38849076462e-05 0.00022134952232 0.000187464614674 +UniRef50_Q7CJM5 Outer membrane protein assembly factor BamB 0.002310704462 0.00183072346489 -0.00047998099711 +UniRef50_UPI000370F145 hypothetical protein 7.15946695159e-06 4.33823841614e-06 -2.82122853545e-06 +UniRef50_K8C533 2 ketogluconate transporter 4.81146857949e-05 6.1138344272e-05 1.30236584771e-05 +UniRef50_UPI00046A53B5 nickel transporter permease NikC 7.83920258189e-06 8.73067670882e-06 8.9147412693e-07 +UniRef50_Q3IWB5 Zinc import ATP binding protein ZnuC 0.00017861401246 1.05175051994e-05 -0.000168096507261 +UniRef50_F4DWP9 Methyl accepting chemotaxis sensory transducer 0.000468115415633 0.000285984355477 -0.000182131060156 +UniRef50_D9UC41 Membrane protein 4.48853793592e-05 2.63910373091e-06 -4.22462756283e-05 +UniRef50_X8APG4 FeS assembly SufB domain protein 3.01690121525e-06 3.94588810191e-05 3.64419798038e-05 +UniRef50_E6WPS1 Appr 1 p processing domain protein 1.25609106857e-05 0.000207488831115 0.000194927920429 +UniRef50_UPI00047CA54F chemotaxis protein CheY 0.000829526474472 9.55028964568e-05 -0.000734023578015 +UniRef50_P10482 Beta glucosidase A 3.15703538041e-06 7.68800377198e-06 4.53096839157e-06 +UniRef50_Q7UF84 Biotin synthase 6.61076097737e-06 0.000882401865048 0.000875791104071 +UniRef50_A9M323 0.00169228986145 0.0104597686755 0.00876747881405 +UniRef50_A3CP26 0.000519476131447 0.00124580779575 0.000726331664303 +UniRef50_UPI000374A30D hypothetical protein 0.000269299040371 4.11904180894e-05 -0.000228108622282 +UniRef50_S0RSE8 1.48469144131e-05 0.000130806730846 0.000115959816433 +UniRef50_UPI000474435D Phyllosphere induced regulator PhyR 0.000331370467465 5.24076867529e-05 -0.000278962780712 +UniRef50_UPI0003A55370 tRNA synthetase RNA binding protein 6.33410463306e-06 1.28190600404e-05 6.48495540734e-06 +UniRef50_F2EPT9 Transporting ATPase YfcM 0.000281164778654 9.88859968553e-05 -0.000182278781799 +UniRef50_UPI00047D26C2 branched chain amino acid ABC transporter ATP binding protein 1.09777596683e-05 1.83477044788e-05 7.3699448105e-06 +UniRef50_A3PJ45 Histidine kinase 0.00304653473166 0.000693604921494 -0.00235292981017 +UniRef50_UPI00047C6448 ribosomal protein S3 3.01173807326e-05 4.4705426059e-05 1.45880453264e-05 +UniRef50_UPI000421C8B5 cation 0.000249817127137 0.000514471137146 0.000264654010009 +UniRef50_UPI0004792DA6 DSBA oxidoreductase 2.50302560182e-05 1.05228545308e-05 -1.45074014874e-05 +UniRef50_F4BY74 Acyl coenzyme A synthetase 0.0028741246228 0.000356919098857 -0.00251720552394 +UniRef50_P34897 Serine hydroxymethyltransferase, mitochondrial 7.05503156805e-05 0.000100935017392 3.03847017115e-05 +UniRef50_B7MGN9 Cyclic pyranopterin monophosphate synthase 0.00330987781524 0.0013184955654 -0.00199138224984 +UniRef50_V9WDD5 Deacetylase 0.00123122913801 0.000440311476324 -0.000790917661686 +UniRef50_UPI0003819A1B hypothetical protein 8.02084964377e-06 6.73676450172e-06 -1.28408514205e-06 +UniRef50_A1A1W2 Tyrosine tRNA ligase 0.000643103339528 0.00682843678021 0.00618533344068 +UniRef50_Q1GTK0 NADH quinone oxidoreductase subunit D 0.0116929002798 0.00363099731956 -0.00806190296024 +UniRef50_D9PVP5 F420 dependent NADP reductase 0.00151987522171 0.000680202050891 -0.000839673170819 +UniRef50_I4E028 Hydrolase homolog 0.00731864863656 0.0014992249874 -0.00581942364916 +UniRef50_UPI000379680D hypothetical protein 1.96280875449e-05 0.00644027175759 0.00642064367005 +UniRef50_Q890M8 Tetracycline resistance protein 0.000247802618498 0.00117216524735 0.000924362628852 +UniRef50_F0YEB9 0.000541332395452 0.000199584384148 -0.000341748011304 +UniRef50_Q1QIW5 Prolipoprotein diacylglyceryl transferase 7.700206674e-05 1.26862258717e-05 -6.43158408683e-05 +UniRef50_Q5HL74 Abortive infection family protein 0.0115231647495 0.00195733636432 -0.00956582838518 +UniRef50_Q3J4Z5 Valine tRNA ligase 0.00826419911155 0.00162811758998 -0.00663608152157 +UniRef50_UPI0004731B78 4 alpha glucanotransferase, partial 1.6272736737e-05 0.000442375209303 0.000426102472566 +UniRef50_W2GPF9 8.58381750483e-05 2.94628994452e-05 -5.63752756031e-05 +UniRef50_UPI0004724CFB hypothetical protein 1.08151292936e-05 1.62936773492e-05 5.4785480556e-06 +UniRef50_S9S8F9 3.20913733553e-05 5.07126284481e-05 1.86212550928e-05 +UniRef50_UPI0003B55E14 ammonium transporter 5.0134854799e-06 4.66810920171e-06 -3.4537627819e-07 +UniRef50_UPI00040CCFDE Fur family transcriptional regulator 7.56307758571e-05 0.000115599588495 3.99688126379e-05 +UniRef50_UPI00037BF338 hypothetical protein 4.01029163123e-05 0.000303534761746 0.000263431845434 +UniRef50_UPI0004410CB8 ClpX, ATPase regulatory subunit 1.68281664312e-05 1.35535079021e-05 -3.2746585291e-06 +UniRef50_Y0KNL3 Hemagglutinin 3.59107075597e-07 1.02330906184e-06 6.64201986243e-07 +UniRef50_V5VFP2 OsmC family protein 0.000213671314441 0.00636314923485 0.00614947792041 +UniRef50_Q57NA5 Zinc import ATP binding protein ZnuC 0.000863080774716 7.80432315716e-05 -0.000785037543144 +UniRef50_F6EKX3 Tartrate dehydrogenase 0.00197523441112 0.000382020315467 -0.00159321409565 +UniRef50_B2HMS4 3.67369319959e-05 8.75781235443e-05 5.08411915484e-05 +UniRef50_G1Q986 3.28684299998e-05 1.46296030058e-05 -1.8238826994e-05 +UniRef50_Q7G491 Transposon protein, putative, CACTA, En Spm sub class 2.3308408978e-06 2.41658807462e-06 8.574717682e-08 +UniRef50_L8P6V5 Putative Non ribosomal peptide synthetase 0.000208926916398 0.000268257275904 5.9330359506e-05 +UniRef50_X6G717 Transposase 0.000241860069485 9.85911331836e-05 -0.000143268936301 +UniRef50_P45508 0.00304124058859 0.000995689179185 -0.0020455514094 +UniRef50_C1MS99 Predicted protein 8.6270624122e-05 7.39140245093e-06 -7.88792216711e-05 +UniRef50_B6IWR2 2.34744647776e-05 3.75418278904e-05 1.40673631128e-05 +UniRef50_F3U250 McpJ 0.00315581788163 0.00168306035032 -0.00147275753131 +UniRef50_UPI00036970FF hypothetical protein 3.88987340299e-06 1.30163996522e-06 -2.58823343777e-06 +UniRef50_D4HBY8 Alanine racemase domain protein 0.000461377385892 0.00448844410466 0.00402706671877 +UniRef50_UPI00031FC917 hypothetical protein 1.3266108784e-05 2.17266184439e-05 8.4605096599e-06 +UniRef50_Q5F8E8 Chaperone protein HscA homolog 0.00347263625001 0.0134614546163 0.00998881836629 +UniRef50_J9PAT3 5.63630486903e-05 6.44451526532e-05 8.0821039629e-06 +UniRef50_UPI0003B753D6 glutamyl tRNA amidotransferase 2.33925093268e-05 4.81914533953e-06 -1.85733639873e-05 +UniRef50_I6TW73 Putative transcriptional regulator 0.00813667244045 0.000840358355689 -0.00729631408476 +UniRef50_Q3HKF1 Transcriptional regulator, AraC family 0.0016145544307 0.000232532838735 -0.00138202159197 +UniRef50_K7SJ58 Cof like hydrolase 0.000257376810578 0.0110258101865 0.0107684333759 +UniRef50_U3U4T1 1.31718641598e-05 2.53051877882e-05 1.21333236284e-05 +UniRef50_UPI00047935B6 cytochrome C oxidase 3.75058053632e-05 0.000118017700935 8.05118955718e-05 +UniRef50_UPI00045E9BEE hypothetical protein 0.000151010198331 4.34258095203e-05 -0.000107584388811 +UniRef50_X1UXC6 Marine sediment metagenome DNA, contig 5.94114739228e-06 4.16462256031e-05 3.57050782108e-05 +UniRef50_UPI0001BF6223 hypothetical protein SMAC_10415, partial 7.89868783907e-05 3.36444731406e-05 -4.53424052501e-05 +UniRef50_P05704 Methyl accepting chemotaxis protein III 0.0035633590764 0.00152065099726 -0.00204270807914 +UniRef50_A0A013Y7Z1 His Kinase A domain protein 0.000238626828392 0.00683471039618 0.00659608356779 +UniRef50_B8EMX2 Alpha,alpha trehalose phosphate synthase 0.00842480781385 0.000861012552018 -0.00756379526183 +UniRef50_A8AQY2 Glycogen debranching enzyme 3.13527384277e-05 5.54389298125e-05 2.40861913848e-05 +UniRef50_Q88NS8 Hydrolase, putative 0.000176281644805 0.000196878046531 2.0596401726e-05 +UniRef50_B2TH59 7.48322539702e-05 2.17626178751e-05 -5.30696360951e-05 +UniRef50_Q7N3N2 ProP effector 0.00358148557637 0.000816580961978 -0.00276490461439 +UniRef50_UPI00036B28F1 hypothetical protein 0.000127872616119 0.00027120266627 0.000143330050151 +UniRef50_Q9RX36 Penicillin binding protein 1 5.25258797111e-05 0.0342474652614 0.0341949393817 +UniRef50_F3U3S2 Serine threonine protein kinase 0.00422230041635 0.000316411007811 -0.00390588940854 +UniRef50_Q0P9X7 Probable ABC transporter ATP binding protein PEB1C 0.00153510308042 0.00226073373775 0.00072563065733 +UniRef50_UPI000363DE89 hypothetical protein 0.000403606592508 0.00036439927948 -3.9207313028e-05 +UniRef50_UPI00047A233F hypothetical protein 5.81258633147e-05 3.28293989457e-05 -2.5296464369e-05 +UniRef50_Q837R5 UPF0042 nucleotide binding protein EF_0766 0.00514746982934 0.00833648927281 0.00318901944347 +UniRef50_K7S1A1 Membrane associated protein 0.000160404811127 0.00442794777195 0.00426754296082 +UniRef50_UPI0002F99648 MFS transporter 5.29925797496e-06 8.55827313752e-06 3.25901516256e-06 +UniRef50_Q9RVG7 FemA related protein 0.000220752040266 0.021228711111 0.0210079590707 +UniRef50_C6SQR5 0.00341999350939 0.00171121230295 -0.00170878120644 +UniRef50_W5X8X9 30S ribosomal protein S2 2.1572894563e-05 0.000170829856554 0.000149256961991 +UniRef50_H4SSE2 Putative MFS family efflux protein 2.25848739051e-05 2.23581836828e-05 -2.266902223e-07 +UniRef50_UPI0001AF2B76 hypothetical protein 9.23443831462e-06 6.08285203936e-06 -3.15158627526e-06 +UniRef50_Q6FD60 9.3437125959e-05 0.00474711118343 0.00465367405747 +UniRef50_UPI0003ABA7EF PREDICTED 8.59890718334e-05 0.000107416870798 2.14277989646e-05 +UniRef50_UPI0003FBECCD flagellin 1.2604370674e-05 5.37014252303e-06 -7.23422815097e-06 +UniRef50_R7PVE4 Glycosyltransferase GT2 family 0.00270820645013 0.000924321479 -0.00178388497113 +UniRef50_A1WI30 Endoribonuclease L PSP 0.000170936059991 9.53615163247e-05 -7.55745436663e-05 +UniRef50_P46855 0.00275224374224 0.000401405775434 -0.00235083796681 +UniRef50_P46854 0.00219214000515 0.000635089688595 -0.00155705031656 +UniRef50_P46853 0.00428164554385 0.00395698224055 -0.0003246633033 +UniRef50_B8DKX1 4Fe 4S ferredoxin iron sulfur binding domain protein 0.000547375962807 0.000431561830731 -0.000115814132076 +UniRef50_Q0C1N8 Macrolide export ATP binding permease protein MacB 2.21376173093e-06 2.54554451051e-05 2.32416833742e-05 +UniRef50_Q9RS60 DNA modification methyltransferase related protein 0.00014454168712 0.0503735329407 0.0502289912536 +UniRef50_X2HAY5 SUN family protein 0.000100752488128 0.00400374723183 0.0039029947437 +UniRef50_A8ESW7 Aspartate tRNA ligase 8.14968288292e-05 0.00407133114359 0.00398983431476 +UniRef50_B2HZZ5 0.000125410627529 0.00510458401914 0.00497917339161 +UniRef50_E7B4R3 Trap type C4 dicarboxylate transport system,large permease component 0.00777087935318 0.000474065069405 -0.00729681428377 +UniRef50_O34319 0.000137601211005 0.00393670200305 0.00379910079204 +UniRef50_Q8EUY3 Orotidine 5 phosphate decarboxylase 1.06615424111e-05 1.54805640986e-05 4.8190216875e-06 +UniRef50_C0MHK2 Phosphoglycerate mutase family protein 0.0115743545876 0.0037713592142 -0.0078029953734 +UniRef50_UPI00035C8FD2 hypothetical protein 4.92197646649e-06 1.21681034265e-05 7.24612696001e-06 +UniRef50_UPI000328B62B PREDICTED 2.0173282605e-05 2.54648761325e-05 5.2915935275e-06 +UniRef50_P76536 Probable deferrochelatase peroxidase YfeX 0.00333416638731 0.00235903236722 -0.00097513402009 +UniRef50_Q97BK5 Nucleoside diphosphate kinase 2.81504836949e-05 3.75766775356e-05 9.4261938407e-06 +UniRef50_Q2UJU5 Mannose 1 phosphate guanyltransferase 9.84461536427e-06 7.66521394558e-06 -2.17940141869e-06 +UniRef50_M2HJP8 0.00695934136265 0.0018015002488 -0.00515784111385 +UniRef50_E8R1M1 2.44265059733e-05 3.81229987629e-05 1.36964927896e-05 +UniRef50_A0A023YKE2 LemA family protein 2.26448279738e-05 1.02951584584e-05 -1.23496695154e-05 +UniRef50_Q6HHL1 0.00226573241326 0.00142036661101 -0.00084536580225 +UniRef50_B2II06 1.59348905292e-05 4.28487924601e-05 2.69139019309e-05 +UniRef50_N6V6H2 0.000308351183352 0.0001735505138 -0.000134800669552 +UniRef50_A3PM06 RNA polymerase, sigma 24 subunit, ECF subfamily 0.0102226334813 0.00200723177373 -0.00821540170757 +UniRef50_UPI00023B21D9 7.15054746349e-06 0.000208923299366 0.000201772751903 +UniRef50_UPI0004769BB2 hypothetical protein 0.000100441420779 2.05126701755e-05 -7.99287506035e-05 +UniRef50_D3FUC5 [Ni Fe] hydrogenase, large subunit 0.000280410616358 0.000545173065257 0.000264762448899 +UniRef50_V9VZS0 0.000500169377934 0.000168627845899 -0.000331541532035 +UniRef50_G8PG31 Ferric anguibactin binding protein 1.70370806914e-05 1.62704178984e-05 -7.66662793e-07 +UniRef50_C5B1E9 5.21456768009e-05 2.75908403208e-05 -2.45548364801e-05 +UniRef50_UPI0003C186B8 PREDICTED 1.02776111547e-05 4.24145935179e-06 -6.03615180291e-06 +UniRef50_UPI000255891A TonB dependent siderophore receptor 4.62854555117e-05 4.1016051802e-06 -4.21838503315e-05 +UniRef50_Q9K4U8 Nitric oxide reductase transcription regulator NorR2 2.99105009897e-06 1.29539098696e-05 9.96285977063e-06 +UniRef50_Q9RYH2 Serine protease, subtilase family 8.4574904144e-05 0.0454124818458 0.0453279069417 +UniRef50_W9QZ02 F box like WD repeat containing protein 1.13155663193e-06 4.20467610281e-06 3.07311947088e-06 +UniRef50_UPI0003C12BAB PREDICTED 9.07965576036e-06 8.92600083377e-05 8.01803525773e-05 +UniRef50_D3E2Y7 Poly gamma glutamate biosynthesis protein 0.00304871459303 0.000163913064863 -0.00288480152817 +UniRef50_Q4L8D2 Cyclic pyranopterin monophosphate synthase 0.00762540631274 0.00149539706111 -0.00613000925163 +UniRef50_A6M1L8 Putative cell wall binding repeat containing protein 0.000622251968849 0.0018278829389 0.00120563097005 +UniRef50_UPI0003697AAB hypothetical protein 5.7114235397e-05 6.22075283093e-05 5.0932929123e-06 +UniRef50_U5NMN3 0.0170444915299 0.00217022691981 -0.0148742646101 +UniRef50_O26778 Exosome complex component Rrp42 0.00323624141242 0.000225719774668 -0.00301052163775 +UniRef50_I6T2I9 Type 4 fimbrial biogenesis protein PilW 0.00132306618415 0.00141295791279 8.989172864e-05 +UniRef50_F2AE29 0.00196794277604 0.000605867311565 -0.00136207546448 +UniRef50_UPI00036B7282 hypothetical protein 8.89218531649e-07 6.56024477075e-06 5.6710262391e-06 +UniRef50_A5WCX2 30S ribosomal protein S2 0.000157285828689 0.00591025012365 0.00575296429496 +UniRef50_UPI0002377ACD calcium binding hemolysin protein 1.04799702387e-05 3.38662181974e-06 -7.09334841896e-06 +UniRef50_Q8CPR8 Alcohol dehydrogenase 0.00145936560009 0.00220477513343 0.00074540953334 +UniRef50_UPI0003A88A02 molecular chaperone Hsp33 1.82202718123e-05 2.38751615669e-05 5.6548897546e-06 +UniRef50_Q4V2F4 3.0002725422e-05 2.7532756244e-05 -2.469969178e-06 +UniRef50_UPI0003B71C77 dihydrolipoamide dehydrogenase 3.156344649e-06 3.50913682242e-05 3.19350235752e-05 +UniRef50_S9S2N5 Transposase 0.000110209404129 5.34852280284e-05 -5.67241761006e-05 +UniRef50_M9VCM8 2 amino 3 ketobutyrate coenzyme A ligase 0.0001033264568 0.00492676877642 0.00482344231962 +UniRef50_B2ICH3 6,7 dimethyl 8 ribityllumazine synthase 1.69136773131e-05 1.5991001086e-05 -9.226762271e-07 +UniRef50_E3EYN7 Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC 0.00909006346632 0.00228761020337 -0.00680245326295 +UniRef50_UPI00047B3379 hypothetical protein 2.50696880234e-05 4.78101163677e-06 -2.02886763866e-05 +UniRef50_R6HE72 0.000225140748821 0.0027347963805 0.00250965563168 +UniRef50_C5WEU2 Aminodeoxychorismate lyase family 0.00590731015886 0.00119507734092 -0.00471223281794 +UniRef50_A1W8H0 Ribosomal RNA large subunit methyltransferase E 1.85884378042e-05 2.35304656643e-05 4.9420278601e-06 +UniRef50_A0A009NBC4 5.52891319945e-05 0.000432940504095 0.0003776513721 +UniRef50_T5E2V5 ThiC associated domain protein 2.83767197944e-05 8.00205248783e-05 5.16438050839e-05 +UniRef50_C7ZS16 Membrane protein 0.00418141283125 0.00148157246071 -0.00269984037054 +UniRef50_A5UN23 Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE 0.00324282049437 0.00150330185974 -0.00173951863463 +UniRef50_B0X4X0 6.93196604378e-06 1.55370600211e-05 8.60509397732e-06 +UniRef50_UPI000479C781 hypothetical protein 1.56698517994e-05 7.2933346853e-05 5.72634950536e-05 +UniRef50_Q033R5 Fructosamine 3 kinase 0.030538318404 0.00840488775066 -0.0221334306533 +UniRef50_K0T107 5.29590301274e-05 8.39412795021e-05 3.09822493747e-05 +UniRef50_H3VZC8 0.00887478403467 0.000515087276506 -0.00835969675816 +UniRef50_G2DQA0 Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase 0.000124754625602 0.00489309030068 0.00476833567508 +UniRef50_E3CJI9 DNA ligase 0.00755478665068 0.00244522764585 -0.00510955900483 +UniRef50_Q2YUD5 Membrane anchored Ser Asp rich fibrinogen binding protein 0.00577887054116 0.00116652747034 -0.00461234307082 +UniRef50_UPI0003B7AB15 magnesium chelatase 1.41012549505e-05 0.000133419077023 0.000119317822073 +UniRef50_J0D169 6.0545117233e-06 8.37630268351e-05 7.77085151118e-05 +UniRef50_W8RQ15 Type IV secretion protein Rhs 0.000347486809367 0.00025841069091 -8.9076118457e-05 +UniRef50_W5WGU1 0.000630677394866 0.0037037786916 0.00307310129673 +UniRef50_J9YS58 0.00442215143228 0.00295773816031 -0.00146441327197 +UniRef50_P18775 Dimethyl sulfoxide reductase DmsA 0.00210598937471 0.000802724450294 -0.00130326492442 +UniRef50_O27719 0.00351147148896 0.000304911461639 -0.00320656002732 +UniRef50_Q4MQ56 0.000351837842848 0.000680131471693 0.000328293628845 +UniRef50_UPI000379EBC4 hypothetical protein 3.11620229595e-05 1.98658488225e-05 -1.1296174137e-05 +UniRef50_Q54Z26 Serine hydroxymethyltransferase 1 5.30607948274e-05 0.000132265373628 7.92045788006e-05 +UniRef50_Q9RJ16 Cobyrinic acid A,C diamide synthase 5.82417625057e-06 0.000261579339181 0.00025575516293 +UniRef50_V9XXT7 0.000125121145634 0.00091717389817 0.000792052752536 +UniRef50_T9IBZ3 Protein icc 0.000153866571546 0.000239122838212 8.5256266666e-05 +UniRef50_B9DIE1 MarR family regulatory protein 0.0133926798052 0.000435356322155 -0.012957323483 +UniRef50_Q8DZB5 Membrane protein, putative 0.000530719837873 0.000303282243973 -0.0002274375939 +UniRef50_P37837 Transaldolase 0.00257630553125 0.00165758168455 -0.0009187238467 +UniRef50_A1TL16 9.81663276505e-05 0.00118731633383 0.00108915000618 +UniRef50_Q9RTF6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 0.000610475865724 0.0501739544973 0.0495634786316 +UniRef50_UPI00021A5788 PREDICTED 1.51872319612e-05 4.89913529305e-05 3.38041209693e-05 +UniRef50_UPI0004692177 hypothetical protein 1.10348698633e-05 1.1486159662e-05 4.512897987e-07 +UniRef50_B2TPF4 Cobyrinic acid a,c diamide adenosyltransferase 0.0021301041578 0.0013120439764 -0.0008180601814 +UniRef50_Q3J098 RhtB family transporter 0.0105711746592 0.00158619998401 -0.00898497467519 +UniRef50_UPI0004113202 hypothetical protein 6.06304949379e-06 0.000405428611373 0.000399365561879 +UniRef50_N4EZP0 FAD binding domain protein 0.00417910734816 0.000421324643037 -0.00375778270512 +UniRef50_R9SH54 Oxidoreductase aldo keto reductase family 0.00300334438134 0.000640983350009 -0.00236236103133 +UniRef50_P58991 Polyphosphate kinase 1 2.39656085362e-06 0.000229690377311 0.000227293816457 +UniRef50_UPI0003790149 hypothetical protein, partial 0.000113849986966 4.73061642873e-05 -6.65438226787e-05 +UniRef50_I1EEC9 7.36732126513e-07 5.2525319187e-06 4.51579979219e-06 +UniRef50_N9BDB1 2.55479678749e-05 6.87607483993e-05 4.32127805244e-05 +UniRef50_E6CCB2 4.78597595523e-05 0.00051797088769 0.000470111128138 +UniRef50_A5UKL7 Predicted transcriptional regulator 0.00176074857349 0.000122031696369 -0.00163871687712 +UniRef50_K9ZE84 0.000187319166319 4.3782624813e-05 -0.000143536541506 +UniRef50_UPI0001BF6909 hypothetical protein SMAC_10569, partial 3.00559933004e-06 2.97060291052e-06 -3.499641952e-08 +UniRef50_Q2LQU2 Porphobilinogen deaminase 1.33147676378e-05 8.12304812327e-06 -5.19171951453e-06 +UniRef50_A3PR63 Glyoxalase bleomycin resistance protein dioxygenase 0.00577103534748 0.00113296871704 -0.00463806663044 +UniRef50_P07464 Galactoside O acetyltransferase 0.00464807711369 0.00131964205227 -0.00332843506142 +UniRef50_R5UMD4 1.63756008612e-05 9.77521791956e-06 -6.60038294164e-06 +UniRef50_UPI000371DE88 hypothetical protein 1.2015283944e-05 7.0178312545e-06 -4.9974526895e-06 +UniRef50_UPI00021965CD 3 keto L gulonate 6 phosphate decarboxylase 2.54844520333e-05 4.20939699962e-05 1.66095179629e-05 +UniRef50_Q1M6X3 0.000144424149999 5.43066362882e-05 -9.01175137108e-05 +UniRef50_UPI000225B96A conjugal transfer protein TraW 0.000258207304041 8.70345144229e-05 -0.000171172789618 +UniRef50_UPI00036AEC1C hypothetical protein 1.95649152685e-06 7.36908635977e-06 5.41259483292e-06 +UniRef50_Q53222 2 vinyl bacteriochlorophyllide hydratase 0.0147498326847 0.000406399135599 -0.0143434335491 +UniRef50_B5SDA9 Hemagglutinin related protein 2.18206417582e-07 6.56922672792e-07 4.3871625521e-07 +UniRef50_UPI00037FDE39 histidinol phosphate aminotransferase, partial 1.52951537333e-05 1.66619200518e-05 1.3667663185e-06 +UniRef50_UPI00047119F6 hypothetical protein, partial 0.000421332458301 8.59123338065e-05 -0.000335420124495 +UniRef50_P45499 Cell division protein FtsZ 0.000334031035322 0.0101610578236 0.00982702678828 +UniRef50_Q3A7A3 Cobyrinic acid A,C diamide synthase 1.1700405388e-05 0.00041160707049 0.000399906665102 +UniRef50_A2RE15 Cell envelope related transcriptional attenuator domain protein 0.00561918856303 0.00144889657695 -0.00417029198608 +UniRef50_UPI00037A3F8A hypothetical protein 6.5907662429e-06 2.72100577207e-05 2.06192914778e-05 +UniRef50_R5A8C5 0.000146107889251 7.6780599671e-05 -6.932728958e-05 +UniRef50_UPI0003B46C21 alcohol dehydrogenase 0.000237494452879 1.02903150932e-05 -0.000227204137786 +UniRef50_O32068 0.0123955048755 0.00336562588311 -0.00902987899239 +UniRef50_Q02LX8 Adenylate cyclase ExoY 0.000185042151398 0.000255685459043 7.0643307645e-05 +UniRef50_H4F527 Na+ H+ antiporter MnhB subunit related protein 6.80010327006e-05 1.89452033056e-05 -4.9055829395e-05 +UniRef50_Q48662 Malolactic enzyme 0.00561092101531 0.00208791204426 -0.00352300897105 +UniRef50_K2LWC9 4.27573799271e-05 1.45601143058e-05 -2.81972656213e-05 +UniRef50_I4SXS6 Choline transport protein BetT 0.00122560859231 0.000353672700827 -0.000871935891483 +UniRef50_UPI00035D7CEB hypothetical protein 9.22314525125e-07 2.26169241915e-06 1.33937789402e-06 +UniRef50_UPI0004713CDC methionine synthase, partial 1.41229752451e-05 9.23927996375e-05 7.82698243924e-05 +UniRef50_L0FJC9 Sodium 0.00175006015661 0.000814238824702 -0.000935821331908 +UniRef50_UPI000362C162 hypothetical protein 0.000321089500135 2.67582292394e-05 -0.000294331270896 +UniRef50_O26134 Protein translocase subunit SecY 0.00187712737577 0.000662687738033 -0.00121443963774 +UniRef50_D3DZ14 ABC transporter ATP binding protein 0.00279780477395 0.00140993158868 -0.00138787318527 +UniRef50_R9ZEH0 Ring hydroxylating dioxygenase subunit 0.000594079514485 0.000490861889379 -0.000103217625106 +UniRef50_I6S279 Flagellar hook associated protein FlgL 0.00107143407317 0.000334845143421 -0.000736588929749 +UniRef50_UPI0004719539 hypothetical protein 4.20462934777e-06 2.92203904107e-06 -1.2825903067e-06 +UniRef50_UPI0004779E49 quinone oxidoreductase 1.00768143419e-05 6.89046016435e-05 5.88277873016e-05 +UniRef50_A6UJ92 0.0159920560835 0.00276490553281 -0.0132271505507 +UniRef50_Q8X800 D methionine transport system permease protein MetI 0.00382312818186 0.00112408288806 -0.0026990452938 +UniRef50_F9YY95 0.000241264145619 0.00443288701656 0.00419162287094 +UniRef50_UPI000252BB00 PREDICTED 1.64506806726e-05 1.3274986484e-05 -3.1756941886e-06 +UniRef50_Q2YKR3 Adenine deaminase 0.00572208066794 0.00152790838885 -0.00419417227909 +UniRef50_S8F394 1.23076400401e-06 2.81704741406e-06 1.58628341005e-06 +UniRef50_P26899 Aspartate ammonia lyase 0.000675772979986 0.00159342285875 0.000917649878764 +UniRef50_UPI000479F1A9 peptidase S1 and S6 chymotrypsin Hap 4.62201385411e-06 3.43204678563e-05 2.96984540022e-05 +UniRef50_G7MCG2 7TM receptor with intracellular metal dependent phosphohydrolase 0.000340611285754 0.000535336256847 0.000194724971093 +UniRef50_UPI0003B66F39 DNA gyrase subunit A 2.06424301116e-06 3.53656793769e-06 1.47232492653e-06 +UniRef50_UPI0002EC0588 hypothetical protein 1.78121241201e-06 4.22113064167e-06 2.43991822966e-06 +UniRef50_T2ERE8 Zinc binding dehydrogenase family protein 0.000719664581671 0.000491015202922 -0.000228649378749 +UniRef50_E7BGF6 6.12563604033e-06 4.6068281598e-05 3.99426455577e-05 +UniRef50_UPI00034FCB25 PREDICTED 0.000122663424055 3.35909124416e-05 -8.90725116134e-05 +UniRef50_UPI00036E0F49 hypothetical protein 4.29316048369e-06 9.48551141668e-06 5.19235093299e-06 +UniRef50_UPI00042B506F Translation initiation factor 3 family protein, putative isoform 1 6.62549461791e-06 1.65244132582e-05 9.89891864029e-06 +UniRef50_UPI0003EB658E hypothetical protein 8.23250858574e-06 2.71011056132e-05 1.88685970275e-05 +UniRef50_X0TKS1 Marine sediment metagenome DNA, contig 2.42855635616e-05 4.83692113125e-05 2.40836477509e-05 +UniRef50_Q9KP38 Probable aromatic acid decarboxylase 5.62598240481e-05 9.44809975973e-05 3.82211735492e-05 +UniRef50_K9DMW3 3.10742435378e-05 1.21846747513e-05 -1.88895687865e-05 +UniRef50_P67586 Tryptophan tRNA ligase 0.00918688837973 0.000566246187334 -0.0086206421924 +UniRef50_A0AK10 CCA adding enzyme 1.52165488179e-05 0.00172677118275 0.00171155463393 +UniRef50_O83796 1 deoxy D xylulose 5 phosphate synthase 2.29782747183e-06 0.000151587334786 0.000149289507314 +UniRef50_B2TPF9 Precorrin 6x reductase 0.000299592054644 0.00136898659386 0.00106939453922 +UniRef50_A0A011N6I9 1.51918001834e-07 4.01161738419e-07 2.49243736585e-07 +UniRef50_P23485 Protein FecR 0.00483654908614 0.000612226884417 -0.00422432220172 +UniRef50_Q839D4 Energy coupling factor transporter ATP binding protein EcfA2 5.09868159505e-06 0.00171026528269 0.00170516660109 +UniRef50_A8I2E1 Ribonuclease R 0.00330884834172 0.000996243787342 -0.00231260455438 +UniRef50_C7QFW5 Nucleic acid binding OB fold tRNA helicase type 7.45038135845e-05 0.00641402011208 0.0063395162985 +UniRef50_Q1JBS9 Short chain dehydrogenase 0.00438029932662 0.014920154065 0.0105398547384 +UniRef50_G0DT71 0.000113814871007 0.0059984507223 0.00588463585129 +UniRef50_Q8U5S6 ABC transporter, membrane spanning protein 0.0169268753561 0.0053760734939 -0.0115508018622 +UniRef50_A0AKE9 UPF0348 protein lwe2063 2.67265019322e-05 0.000918633020216 0.000891906518284 +UniRef50_O08437 FKBP type peptidyl prolyl cis trans isomerase FkpA 6.17831122416e-06 1.35240788541e-05 7.34576762994e-06 +UniRef50_UPI00034BD3ED hypothetical protein 1.24081759212e-05 0.00310949114955 0.00309708297363 +UniRef50_B0SXA7 Acetyl CoA carboxylase, biotin carboxyl carrier protein 0.000785653419287 0.000361612292071 -0.000424041127216 +UniRef50_C9U024 Replication initiation protein RepC 6.93384818212e-05 2.5306105349e-05 -4.40323764722e-05 +UniRef50_T2GFI0 Putative anti sigma regulatory factor 1.86958375698e-05 0.000946909395129 0.000928213557559 +UniRef50_UPI00030A24CF hypothetical protein 1.01600470694e-05 0.000216523365891 0.000206363318822 +UniRef50_A0A024PW13 0.000658240640477 0.005562001892 0.00490376125152 +UniRef50_J0USZ4 ABC transporter permease protein 2.48782464005e-05 5.93865535669e-05 3.45083071664e-05 +UniRef50_Q5WKY5 6 phospho 5 dehydro 2 deoxy D gluconate aldolase 1.58775035275e-05 2.40454216882e-05 8.1679181607e-06 +UniRef50_Q82WT5 Sulfate thiosulfate import ATP binding protein CysA 0.000128625228738 0.00693231697643 0.00680369174769 +UniRef50_P77031 Inner membrane protein YqcE 0.00170148971795 0.000510394988325 -0.00119109472962 +UniRef50_U6JNN9 9.72836141953e-05 8.17941718665e-05 -1.54894423288e-05 +UniRef50_UPI00047CF42A aldo keto reductase 8.03032126173e-06 5.96560617539e-05 5.16257404922e-05 +UniRef50_UPI0003608BB9 hypothetical protein 5.24213951303e-06 5.34062704177e-06 9.848752874e-08 +UniRef50_Q9CL63 Ribose import ATP binding protein RbsA 2 4.6283280377e-05 5.31932586317e-05 6.9099782547e-06 +UniRef50_P23886 ATP binding permease protein CydC 0.00250865488251 0.000483041824818 -0.00202561305769 +UniRef50_F0YQI4 0.000325214207009 0.00183319522719 0.00150798102018 +UniRef50_Q3KFI9 Methylthioribulose 1 phosphate dehydratase 0.000562887990554 0.000602730735611 3.9842745057e-05 +UniRef50_L8A867 Glycerol dehydrogenase 0.000107853139674 0.000534689303488 0.000426836163814 +UniRef50_M1IWL8 0.00438653516404 0.000452015365101 -0.00393451979894 +UniRef50_V7ZHE5 Potassium transporting ATPase A chain 0.000185837285921 0.00526789577783 0.00508205849191 +UniRef50_C1CAY3 Transposase protein B 6.20231587339e-05 4.52339138902e-05 -1.67892448437e-05 +UniRef50_UPI0002DC9866 hypothetical protein 1.30826781236e-05 2.20847933335e-05 9.0021152099e-06 +UniRef50_Q09AD1 6.8364900086e-05 3.4696640663e-05 -3.3668259423e-05 +UniRef50_UPI00031EE013 hypothetical protein 3.86313915974e-05 5.78540911886e-06 -3.28459824785e-05 +UniRef50_UPI0003F0CAAC PREDICTED 2.40743436396e-06 1.82455789359e-05 1.58381445719e-05 +UniRef50_UPI0003B6428F prolipoprotein diacylglyceryl transferase 2.66348963769e-05 7.40145033012e-06 -1.92334460468e-05 +UniRef50_P59952 Methionine tRNA ligase 5.7947118686e-06 1.91434482877e-05 1.33487364191e-05 +UniRef50_P16256 Sodium pantothenate symporter 0.00149268364943 0.00232568396625 0.00083300031682 +UniRef50_V9TIA6 FAD linked oxidoreductase 0.000540846487693 0.000141525577565 -0.000399320910128 +UniRef50_Q1GE40 0.000103418820932 3.78457387961e-05 -6.55730821359e-05 +UniRef50_Q1GE41 0.000133876601203 4.05184742565e-05 -9.33581269465e-05 +UniRef50_UPI00029A1476 large conductance mechanosensitive channel protein MscL 0.000302968559292 8.70364239287e-05 -0.000215932135363 +UniRef50_Q28UC9 ATP synthase F0 subunit I 3.99963057228e-05 7.53271278961e-05 3.53308221733e-05 +UniRef50_Q2FK78 N acetyl gamma glutamyl phosphate reductase 0.0123017086062 0.00473288708206 -0.00756882152414 +UniRef50_A3UCX1 3.21156217719e-05 5.15375710997e-06 -2.69618646619e-05 +UniRef50_Q57714 Pyruvate synthase subunit PorB 0.00261614267694 0.00023688505764 -0.0023792576193 +UniRef50_B1LDG8 0.0151668477663 0.00177190023117 -0.0133949475351 +UniRef50_UPI00041FFD36 hypothetical protein 0.000138953488655 0.00112396107969 0.000985007591035 +UniRef50_D3DZ23 GMC oxidoreductase family protein 0.00283513583057 0.000506879780025 -0.00232825605054 +UniRef50_P31806 Bifunctional NADH hydrate repair enzyme Nnr 0.00349387460562 0.00151515902239 -0.00197871558323 +UniRef50_W8KGC4 Flagellar biosynthesis protein FlhB 0.000411009779397 0.000204135971329 -0.000206873808068 +UniRef50_F8LHA2 Acetyltransferase, including N acetylase of ribosomal protein 0.000530495328908 0.000559613457528 2.911812862e-05 +UniRef50_A1B2J7 0.0017627622719 0.00160826934277 -0.00015449292913 +UniRef50_I7ZAU8 7.05686831409e-05 6.64167214818e-05 -4.1519616591e-06 +UniRef50_F9YXK8 0.000190649489319 0.0013119871208 0.00112133763148 +UniRef50_UPI0002377E10 FAD dependent oxidoreductase, partial 1.13758206593e-05 1.47236602542e-05 3.3478395949e-06 +UniRef50_R6BDT2 0.000943433287974 0.00232425162529 0.00138081833732 +UniRef50_A9N4N9 0.000263348335306 0.000215708090639 -4.7640244667e-05 +UniRef50_C3KDN7 Ferrochelatase 0.000569083175843 0.000189710945528 -0.000379372230315 +UniRef50_UPI00041EEA6A hypothetical protein 3.51542205647e-05 9.27948146877e-05 5.7640594123e-05 +UniRef50_UPI0002F4135C hypothetical protein 7.66941211709e-06 2.22294511089e-05 1.45600389918e-05 +UniRef50_B9KWR6 ABC sugar transporter, periplasmic lignad binding protein 0.00562456176975 0.000961188052067 -0.00466337371768 +UniRef50_UPI000200107B putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 2.08668255253e-05 5.95367829764e-06 -1.49131472277e-05 +UniRef50_F2QGL0 Competence protein 0.000169923786482 0.00103424912004 0.000864325333558 +UniRef50_Q1D8I9 Triosephosphate isomerase 0.000705086242439 0.00312883228154 0.0024237460391 +UniRef50_E2Q677 Transcriptional regulator 1.7574079134e-05 2.56652457115e-06 -1.50075545628e-05 +UniRef50_P18256 Threonine tRNA ligase 2 8.81188665171e-06 8.72380200171e-06 -8.808465e-08 +UniRef50_UPI0003B50469 MULTISPECIES 5.35970811351e-05 0.000639088190285 0.00058549110915 +UniRef50_P39187 0.00263109519152 0.000656766108858 -0.00197432908266 +UniRef50_G4LES1 AsmA family protein 4.64053046482e-05 5.3554876288e-05 7.1495716398e-06 +UniRef50_A4WX29 NH dependent NAD(+) synthetase 0.0027661491707 0.00247867042243 -0.00028747874827 +UniRef50_Q46906 0.00155107167279 0.000316410755563 -0.00123466091723 +UniRef50_UPI00034690F7 hypothetical protein 3.87141437211e-06 1.7480214073e-05 1.36087997009e-05 +UniRef50_Q60759 Glutaryl CoA dehydrogenase, mitochondrial 0.00122127935186 0.0222356432992 0.0210143639473 +UniRef50_B6TP29 0.000955660731271 4.5942225497e-05 -0.000909718505774 +UniRef50_E8SI80 Disulfide bond regulator 0.00744334668654 0.00519267137046 -0.00225067531608 +UniRef50_I4E0I3 Arabinose efflux permease homolog 0.0039646496868 0.000841015482165 -0.00312363420464 +UniRef50_UPI0004758598 hypothetical protein 0.000103322863703 0.00012014684595 1.6823982247e-05 +UniRef50_S9QAC1 Mobile element protein 1.75690414174e-05 1.29538176776e-05 -4.6152237398e-06 +UniRef50_UPI00036AF80F hypothetical protein 3.3492886665e-05 2.43792539112e-05 -9.1136327538e-06 +UniRef50_UPI00036D58A4 hypothetical protein 1.71947717262e-05 0.000153584672502 0.000136389900776 +UniRef50_Q3JVF3 0.000133507487321 0.000453350341598 0.000319842854277 +UniRef50_C8PGN6 NLPA lipoprotein 9.3853897817e-05 8.98200582303e-05 -4.0338395867e-06 +UniRef50_Q6FFC1 Lipid II flippase FtsW 9.48457258396e-05 0.00742819281348 0.00733334708764 +UniRef50_D9VLM5 Predicted protein 2.72881676196e-06 0.000233759924953 0.000231031108191 +UniRef50_UPI0003B4E250 phosphohydrolase 5.05283365151e-05 0.000446014519245 0.00039548618273 +UniRef50_P56431 Thioredoxin reductase 0.000293352938116 0.00297950758623 0.00268615464811 +UniRef50_V4R4P9 Amino acid ABC transporter substrate binding protein 0.000528592450262 0.000311954266055 -0.000216638184207 +UniRef50_Q5L0Z2 UPF0348 protein GK1103 5.33717073118e-06 0.000603177239407 0.000597840068676 +UniRef50_V9W180 Transposase 0.000208172420321 0.028190081614 0.0279819091937 +UniRef50_UPI000476CA5A hypothetical protein 0.000108159826629 2.11898835158e-05 -8.69699431132e-05 +UniRef50_Q47129 Transcriptional activator FeaR 0.0057719588533 0.000431006693396 -0.0053409521599 +UniRef50_B0VAR2 0.000310262456591 0.00824925253297 0.00793899007638 +UniRef50_UPI0003C12F22 PREDICTED 1.00212523302e-05 1.38971306711e-05 3.8758783409e-06 +UniRef50_K9AD18 Putative relaxase 0.000165116274744 2.45830705802e-05 -0.000140533204164 +UniRef50_F0P9I7 Conserved integral membrane protein, putative 0.0214175323826 0.00553038332947 -0.0158871490531 +UniRef50_UPI00035F08CC hypothetical protein 7.11423311508e-06 6.12048326664e-06 -9.9374984844e-07 +UniRef50_UPI0004692399 spermidine putrescine ABC transporter ATPase 4.65941328524e-05 2.25009538529e-05 -2.40931789995e-05 +UniRef50_A5FZW4 50S ribosomal protein L4 0.0161045284736 0.000861087213001 -0.0152434412606 +UniRef50_C5CJ75 Glycogen synthase 0.00485630786845 0.000485998855931 -0.00437030901252 +UniRef50_UPI0003600771 hypothetical protein 1.40228097457e-05 9.96411839586e-06 -4.05869134984e-06 +UniRef50_V4R4P8 Phosphoribosylformylglycinamidine cyclo ligase 0.000133702129055 0.000214104543468 8.0402414413e-05 +UniRef50_U6R7W5 4.98625704559e-06 8.04118694745e-05 7.54256124289e-05 +UniRef50_E8U4E2 8.23413949508e-05 0.0709306429242 0.0708483015292 +UniRef50_H9KEJ9 2.12844644722e-06 2.21847098839e-06 9.002454117e-08 +UniRef50_L1BUX8 2.08156706662e-05 0.000513217935299 0.000492402264633 +UniRef50_Q8SDJ9 Amidase 0.0185940463825 0.00485060747131 -0.0137434389112 +UniRef50_A8ARE5 0.000260040996763 3.45971725452e-05 -0.000225443824218 +UniRef50_P0AFV6 Murein DD endopeptidase MepS Murein LD carboxypeptidase 0.00245758881366 0.00290730719629 0.00044971838263 +UniRef50_M9RIA5 0.0286609732276 0.00175862905252 -0.0269023441751 +UniRef50_F8ETX3 ParB like partition protein 0.00508878308153 0.00194378626674 -0.00314499681479 +UniRef50_I0P9H0 Cellobiose phosphorylase 5.59718780152e-05 1.75678653173e-05 -3.84040126979e-05 +UniRef50_UPI000380D689 hypothetical protein 7.53590808564e-06 1.8465251277e-05 1.09293431914e-05 +UniRef50_UPI000362D231 hypothetical protein 1.84505432559e-05 9.22579209264e-06 -9.22475116326e-06 +UniRef50_Q50245 ORF492 1.81400632233e-05 5.57851705111e-06 -1.25615461722e-05 +UniRef50_UPI00037B94E6 hypothetical protein 5.80896567536e-06 2.37692786564e-05 1.7960312981e-05 +UniRef50_UPI0003B6AEBD ATPase AAA 4.28792879967e-06 3.89942195503e-06 -3.8850684464e-07 +UniRef50_A3VC61 0.000575193348679 0.000148939998204 -0.000426253350475 +UniRef50_UPI0004785D9F hypothetical protein 2.11763211688e-05 0.000306866241995 0.000285689920826 +UniRef50_A4WUP0 30S ribosomal protein S4 0.0223286660813 0.00766989852299 -0.0146587675583 +UniRef50_L9IWH1 CarD like TRCF domain protein 0.00197320793986 0.000668998565575 -0.00130420937428 +UniRef50_A1APL2 Carbonic anhydrase 0.00210305619399 0.00255540773338 0.00045235153939 +UniRef50_UPI00036630BD hypothetical protein, partial 2.18362737097e-05 0.00080044626609 0.00077860999238 +UniRef50_A3K318 Flagellar protein FlaF, putative 0.000110318707228 0.000215945770765 0.000105627063537 +UniRef50_B9KP57 0.00167077292697 0.00123961789519 -0.00043115503178 +UniRef50_G9RRJ9 2.70857963504e-05 1.92731318228e-05 -7.8126645276e-06 +UniRef50_V5SXS6 Multidrug transporter 0.000924099335345 0.000680228272872 -0.000243871062473 +UniRef50_L1K935 0.000717974040016 0.000782531669559 6.4557629543e-05 +UniRef50_K4TPI5 LysE family efflux protein 0.000723683791117 0.000824584446383 0.000100900655266 +UniRef50_UPI0003B59697 transketolase 2.31652842518e-05 1.12423272131e-05 -1.19229570387e-05 +UniRef50_UPI000376937D hypothetical protein 8.54503017963e-06 1.87584368174e-05 1.02134066378e-05 +UniRef50_UPI0004561BB0 hypothetical protein PFL1_05640 1.86796112704e-06 7.45079128412e-06 5.58283015708e-06 +UniRef50_Q7VHW3 Dihydroxy acid dehydratase 7.02203490247e-05 9.78701946437e-05 2.7649845619e-05 +UniRef50_X5DHG9 Membrane protein 5.82886316341e-05 2.70248089712e-05 -3.12638226629e-05 +UniRef50_M9R6L8 0.00122880219295 0.000244063392719 -0.000984738800231 +UniRef50_O27115 Succinyl CoA ligase [ADP forming] subunit beta 0.00255977515612 3.26764381874e-05 -0.00252709871793 +UniRef50_Q0FGA1 ArsC family protein 3.36816800802e-05 6.32920284748e-05 2.96103483946e-05 +UniRef50_M0LR14 1.56671892774e-06 1.26040490372e-05 1.10373301095e-05 +UniRef50_Q2G6B7 9.04922605423e-05 1.96758324388e-05 -7.08164281035e-05 +UniRef50_G7ZM83 LysR family regulatory protein 0.0100596731468 0.00132789202267 -0.00873178112413 +UniRef50_UPI0003737615 hypothetical protein 4.88062952016e-06 2.68209586006e-06 -2.1985336601e-06 +UniRef50_UPI000225B453 superfamily II DNA RNA helicase 2.10154509848e-05 4.25262794549e-05 2.15108284701e-05 +UniRef50_R0DQJ6 9.81542836656e-06 8.84457661741e-06 -9.7085174915e-07 +UniRef50_Q2G6B8 0.000260032384171 7.36737421688e-05 -0.000186358642002 +UniRef50_UPI000470B11D hypothetical protein, partial 9.05990986426e-05 0.000119472416867 2.88733182244e-05 +UniRef50_U5UEE2 Putative transposase 0.000794579813612 0.000425549426858 -0.000369030386754 +UniRef50_D5APM3 Response regulator receiver protein 0.00573606833002 0.00152859377045 -0.00420747455957 +UniRef50_Q89LH6 UPF0271 protein blr4568 0.00334743294007 0.00178581042589 -0.00156162251418 +UniRef50_UPI00035D3C47 MULTISPECIES 3.76546728857e-05 0.000412827848174 0.000375173175288 +UniRef50_UPI000470BC53 4 alpha glucanotransferase, partial 1.17772791602e-05 0.000513795743814 0.000502018464654 +UniRef50_UPI000255652B arginyl tRNA synthetase 2.48446608002e-06 5.20173887474e-06 2.71727279472e-06 +UniRef50_G7M9U0 Flagellar hook length control protein 0.000477484479373 0.00175016469241 0.00127268021304 +UniRef50_Q7NNG3 Phosphate import ATP binding protein PstB 2 0.00284611287239 0.000374294022347 -0.00247181885004 +UniRef50_T0UHU4 4 carboxymuconolactone decarboxylase 0.00362610164857 0.000945013456618 -0.00268108819195 +UniRef50_D3LR53 0.000153190505464 0.00021067185738 5.7481351916e-05 +UniRef50_F8DFL1 DHHA1 domain protein 0.000269332731969 0.00266160559166 0.00239227285969 +UniRef50_A6M0Z6 0.000429176598265 0.00130610906882 0.000876932470555 +UniRef50_Q9RY66 GTPase Obg 0.000487021664979 0.0483118291317 0.0478248074667 +UniRef50_D4HCN2 0.000372519067945 0.00180833181262 0.00143581274467 +UniRef50_UPI000367C16B MULTISPECIES 3.13205186056e-05 3.91998659723e-05 7.8793473667e-06 +UniRef50_A0A058ZKH3 HupH hydrogenase expression protein 0.000210498323396 9.15873718623e-05 -0.000118910951534 +UniRef50_E6JKQ2 0.00278306881583 0.000770391404865 -0.00201267741096 +UniRef50_S5MQR6 3.35196496251e-05 5.68746720068e-05 2.33550223817e-05 +UniRef50_Q6A9F2 0.000284117166548 0.00544885458829 0.00516473742174 +UniRef50_UPI00035E22E6 hypothetical protein 1.03103298132e-06 1.62102524768e-06 5.8999226636e-07 +UniRef50_O07319 Transcriptional regulator MraZ 0.011630499547 0.00242971734755 -0.00920078219945 +UniRef50_B9KXA3 2 dehydro 3 deoxyphosphooctonate aldolase 0.00680399872152 0.000436429290281 -0.00636756943124 +UniRef50_F0KLN9 Alkanesulfonate monooxygenase 0.000498067367165 0.00747921768352 0.00698115031635 +UniRef50_Q9X6A2 0.00157310789199 0.00037755569733 -0.00119555219466 +UniRef50_UPI00047341A0 3 isopropylmalate dehydrogenase, partial 1.70827308988e-05 4.28890039641e-05 2.58062730653e-05 +UniRef50_A5CW53 UDP N acetylmuramate L alanine ligase 3.93384244249e-06 6.08193954618e-06 2.14809710369e-06 +UniRef50_Q9ZN31 ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT 0.000104080915098 0.00477422529246 0.00467014437736 +UniRef50_Q92UW6 Probable sulfoacetaldehyde acetyltransferase 0.0035996341033 0.00123617120207 -0.00236346290123 +UniRef50_UPI00047B8BC4 hypothetical protein 1.48984379325e-05 1.28767861933e-05 -2.0216517392e-06 +UniRef50_Q5HLP5 0.0243081285757 0.00089040212621 -0.0234177264495 +UniRef50_W1MLM9 5.76377878717e-05 0.000185932252757 0.000128294464885 +UniRef50_UPI0002651735 6.29648843361e-06 9.61603403342e-05 8.98638519006e-05 +UniRef50_P0ACM1 Pyruvate dehydrogenase complex repressor 0.00276770458698 0.000996507867737 -0.00177119671924 +UniRef50_R6M784 9.70700149224e-05 6.12839599899e-05 -3.57860549325e-05 +UniRef50_C3DTJ7 Carbon starvation protein A 0.000236560785725 0.0111471603305 0.0109105995448 +UniRef50_Q3KFU0 3.07103943511e-05 2.62924668182e-05 -4.4179275329e-06 +UniRef50_Q3J1W1 Chemotaxis histidine protein kinase, CheA4 0.00029177334441 0.000314237246508 2.2463902098e-05 +UniRef50_UPI00036536A6 hypothetical protein 3.62750760237e-05 5.10358019115e-06 -3.11714958325e-05 +UniRef50_UPI0004672B34 molecular chaperone 0.000384233683506 0.000121421235011 -0.000262812448495 +UniRef50_F9NYD0 Cobalt transport protein 0.000205155428724 0.00926790208234 0.00906274665362 +UniRef50_Q3JP97 3.06003056662e-05 2.27326996034e-05 -7.8676060628e-06 +UniRef50_A7MKS2 0.000220341252157 2.92718630493e-05 -0.000191069389108 +UniRef50_V9VW16 Short chain dehydrogenase 0.00210200881844 0.00114123418586 -0.00096077463258 +UniRef50_UPI0004792999 hypothetical protein 7.91885140831e-06 0.000211191922662 0.000203273071254 +UniRef50_Q7N3Z6 D amino acid dehydrogenase small subunit 2.66758935861e-05 2.5544815252e-05 -1.1310783341e-06 +UniRef50_P0A1I8 Flagellar basal body rod protein FlgC 0.00729981178358 0.000558959063463 -0.00674085272012 +UniRef50_Q166G1 Oligopeptide ABC transporter, permease protein, putative 0.000335162883982 0.000434289272355 9.9126388373e-05 +UniRef50_B9KSM2 Alcohol dehydrogenase GroES domain protein 0.00381265161128 0.000463339605172 -0.00334931200611 +UniRef50_Q8CQN2 0.0122954271695 0.00157026861228 -0.0107251585572 +UniRef50_UPI0003FD0CB4 ribonucleotide diphosphate reductase subunit alpha 5.1041979337e-06 2.84045098594e-05 2.33003119257e-05 +UniRef50_I1ZLL6 Glutamine amidotransferase 0.00329992149264 0.00113718275107 -0.00216273874157 +UniRef50_C5WGZ9 0.000195423301531 0.000128136437524 -6.7286864007e-05 +UniRef50_A0A016ULG1 1.0334150104e-05 1.02480028067e-05 -8.61472973e-08 +UniRef50_A0A023RVX8 Protein TniQ 0.000754492273666 0.0250971120869 0.0243426198132 +UniRef50_A0NZT5 0.000164870192273 3.54631234886e-05 -0.000129407068784 +UniRef50_A0A017HEA9 Transport protein 4.58034513117e-05 6.34801634195e-06 -3.94554349698e-05 +UniRef50_P44595 S adenosylmethionine 0.00220367576955 0.00821909583901 0.00601542006946 +UniRef50_E3EXK7 Peptidase, M48 family, putative 0.00904542431408 0.00442658819906 -0.00461883611502 +UniRef50_P65742 Phosphate acyltransferase 0.0198432634069 0.0101572824026 -0.0096859810043 +UniRef50_G0DTI5 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.000997700502833 0.00367843500875 0.00268073450592 +UniRef50_P0ACL7 Putative L lactate dehydrogenase operon regulatory protein 0.00257106029993 0.00391159728505 0.00134053698512 +UniRef50_UPI00047E9930 ABC transporter permease 0.000149820153733 5.85388505556e-05 -9.12813031774e-05 +UniRef50_UPI0002D53BE1 hypothetical protein 3.55164984885e-05 0.000125481695144 8.99651966555e-05 +UniRef50_A5UKI1 0.00112241721228 0.000499126825692 -0.000623290386588 +UniRef50_UPI000380963E hypothetical protein 2.69994222525e-05 1.75395288762e-05 -9.4598933763e-06 +UniRef50_C1DH36 0.000134930295167 0.000184335031093 4.9404735926e-05 +UniRef50_A0A010D0D1 Ribonuclease R 0.000405239932148 0.00590488475736 0.00549964482521 +UniRef50_UPI0002630D1B hypothetical protein 1.31392680446e-05 0.000107984511547 9.48452435024e-05 +UniRef50_UPI00035EED6C hypothetical protein 9.26224322665e-05 7.49295799483e-05 -1.76928523182e-05 +UniRef50_E6YJ75 8.1286825971e-06 0.00101445041805 0.00100632173545 +UniRef50_UPI000315AE23 hypothetical protein 0.000278627140287 8.02381318748e-05 -0.000198389008412 +UniRef50_A6LR92 AMP dependent synthetase and ligase 8.41976183323e-05 0.00133383467156 0.00124963705323 +UniRef50_Q4L3C7 Transcription activator of glutamate synthase operon 0.0181089007795 0.00469507687983 -0.0134138238997 +UniRef50_O05267 NADH dehydrogenase like protein YumB 0.0108935172027 0.00384170912194 -0.00705180808076 +UniRef50_UPI0003AEB97B PREDICTED 1.67041915013e-05 0.000345399655201 0.0003286954637 +UniRef50_P0ABU3 Ribosome binding ATPase YchF 0.00403226623261 0.051238621047 0.0472063548144 +UniRef50_Q59829 Putative cystathionine gamma lyase 2.20070183609e-05 3.11388734628e-05 9.1318551019e-06 +UniRef50_E6PJS8 7.60253689221e-05 0.000117472433191 4.14470642689e-05 +UniRef50_T2GDK5 2.30137774795e-05 6.51203412961e-06 -1.65017433499e-05 +UniRef50_UPI00036891D5 hypothetical protein 2.17302023173e-05 6.07627279662e-06 -1.56539295207e-05 +UniRef50_Q2GKK2 Ribosomal RNA large subunit methyltransferase E 9.39633076161e-05 4.26220018819e-05 -5.13413057342e-05 +UniRef50_P72622 Peptide methionine sulfoxide reductase MsrA 1 8.82127461275e-05 9.02387653957e-05 2.0260192682e-06 +UniRef50_UPI0003F87E98 hypothetical protein 6.48121695892e-07 1.48504368275e-05 1.42023151316e-05 +UniRef50_UPI0003AA29AA flagellar basal body P ring protein 2.97679158004e-05 1.7232214983e-05 -1.25357008174e-05 +UniRef50_G8SD75 2.87613702974e-06 8.22785508283e-06 5.35171805309e-06 +UniRef50_UPI00046737F8 hypothetical protein 2.6625117591e-05 2.925875198e-05 2.633634389e-06 +UniRef50_V4NZE7 0.000297816355649 0.000107483552135 -0.000190332803514 +UniRef50_UPI000469A681 hypothetical protein 1.42772106637e-05 5.80756907016e-05 4.37984800379e-05 +UniRef50_UPI00029A7A9B 30S ribosomal protein S17 1.82272082306e-05 0.000203679016919 0.000185451808688 +UniRef50_UPI0003608DE6 hypothetical protein 0.000109147639092 9.34767852255e-06 -9.97999605695e-05 +UniRef50_K2I8R3 3.28297044332e-05 1.89365796444e-05 -1.38931247888e-05 +UniRef50_A6UWL8 N acetyl gamma glutamyl phosphate reductase 0.00318066399445 0.000292444432406 -0.00288821956204 +UniRef50_UPI0003EC17DE PREDICTED 1.57166635462e-05 4.0899559249e-05 2.51828957028e-05 +UniRef50_D3EJM2 Peptidyl prolyl cis trans isomerase 0.000541845917011 0.00130467347959 0.000762827562579 +UniRef50_M4ZCL2 DNA polymerase III subunit delta 0.00424997687245 0.00191617420191 -0.00233380267054 +UniRef50_Q1REU7 0.000272607979711 0.000127200303739 -0.000145407675972 +UniRef50_UPI000444942A GIDA domain containing protein 9.28899600597e-06 9.21096842847e-06 -7.80275775e-08 +UniRef50_N1MZ98 8.2577830148e-05 5.68391109791e-05 -2.57387191689e-05 +UniRef50_Q9RYF7 Cation transporter, putative 0.000108058966276 0.0542342682921 0.0541262093258 +UniRef50_A5ULI1 0.00172036473231 0.00293105347974 0.00121068874743 +UniRef50_B8GZV6 Prolipoprotein diacylglyceryl transferase 0.000123644673244 8.70299119297e-06 -0.000114941682051 +UniRef50_Q9RV78 3 hydroxybutyryl CoA dehydratase 0.000268992391105 0.0177578846902 0.0174888922991 +UniRef50_A3PPE9 0.00596690696791 0.00087054853906 -0.00509635842885 +UniRef50_U1J219 2.87447238108e-05 4.90123661611e-05 2.02676423503e-05 +UniRef50_UPI00047A7925 nitrate reductase 2.5192530971e-05 9.30408375773e-05 6.78483066063e-05 +UniRef50_D8JNU4 Patatin like phospholipase family protein 0.000136770285816 0.00759635910017 0.00745958881435 +UniRef50_B9KX78 0.00091851766883 0.000379293370738 -0.000539224298092 +UniRef50_D3SQB6 Urea ABC transporter, urea binding protein 0.000128688405295 0.0618487860277 0.0617200976224 +UniRef50_B9KX77 0.00109867249485 0.000282515018784 -0.000816157476066 +UniRef50_UPI000360A512 single stranded DNA binding protein, partial 2.07733649357e-05 0.000476190512958 0.000455417148022 +UniRef50_A8Z136 0.00772150459114 0.00433666362347 -0.00338484096767 +UniRef50_R7CC37 2.56217476247e-05 2.29716559246e-05 -2.6500917001e-06 +UniRef50_Q9HYQ2 0.000767475317639 0.000737121468519 -3.035384912e-05 +UniRef50_J5K8F9 Phosphate starvation inducible E 5.72100298805e-05 3.74015636479e-05 -1.98084662326e-05 +UniRef50_UPI0003C1568F PREDICTED 5.9952218072e-06 6.31849921281e-06 3.2327740561e-07 +UniRef50_J8G7J1 4.35950683145e-05 3.88036940467e-05 -4.7913742678e-06 +UniRef50_H5UTL4 1.86714398839e-05 2.66000917684e-05 7.9286518845e-06 +UniRef50_A9D8H9 3.25946618424e-05 5.55862262664e-05 2.2991564424e-05 +UniRef50_Q5HNG8 FtsK SpoIIIE family protein 0.00923194586035 0.0054246635279 -0.00380728233245 +UniRef50_F4CQG8 Amidohydrolase 2 0.0147318179917 0.00283234314216 -0.0118994748495 +UniRef50_M7ECE4 NADH dehydrogenase subunit B 0.000413355379642 5.91969440825e-05 -0.000354158435559 +UniRef50_U5W2D0 Cellulose synthesis regulatory protein 2.60578034524e-06 6.01811832403e-05 5.75754028951e-05 +UniRef50_UPI0003B6414D polynucleotide phosphorylase, partial 3.9454300695e-06 1.2730723301e-05 8.7852932315e-06 +UniRef50_B2TMR9 0.000264236791467 0.00234978666762 0.00208554987615 +UniRef50_UPI000393CC0B 1.62757991185e-05 2.40881767194e-06 -1.38669814466e-05 +UniRef50_UPI000472C56D ABC transporter permease 6.56644040707e-05 4.31914850348e-05 -2.24729190359e-05 +UniRef50_A6LYF9 HAD superfamily hydrolase, subfamily IA, variant 1 0.000754168816027 0.00114580788056 0.000391639064533 +UniRef50_UPI00035D9B42 hypothetical protein 6.85547744323e-06 8.10728450146e-06 1.25180705823e-06 +UniRef50_M1MIG9 Methyl accepting chemotaxis protein 0.00028552964153 0.00153995975188 0.00125443011035 +UniRef50_Q5FAD3 Shikimate kinase 1.50716256125e-05 0.0038363489849 0.00382127735929 +UniRef50_Q6A8V3 1 deoxy D xylulose 5 phosphate synthase 0.000139932985774 0.00541676813877 0.005276835153 +UniRef50_Q60AI1 Spermidine putrescine import ATP binding protein PotA 0.00372957701979 0.000914842873652 -0.00281473414614 +UniRef50_M0WIY9 4.6876150298e-05 0.000537528435832 0.000490652285534 +UniRef50_A6LRS1 0.000715813189066 0.00150598707512 0.000790173886054 +UniRef50_J7MB25 Transposase 0.00235590746396 0.00187721445581 -0.00047869300815 +UniRef50_UPI00037C3240 hypothetical protein 5.48597857197e-05 1.28356194049e-05 -4.20241663148e-05 +UniRef50_UPI0003A6B902 calcium binding protein 5.78782445176e-05 2.02561946162e-05 -3.76220499014e-05 +UniRef50_Q8CS10 0.00823331486545 0.00387249481842 -0.00436082004703 +UniRef50_Q8CS11 0.00194400419344 0.00111440266111 -0.00082960153233 +UniRef50_I0GNK9 8.81444873594e-06 1.18734742659e-05 3.05902552996e-06 +UniRef50_Q8CS13 0.00815329953045 0.00230065736676 -0.00585264216369 +UniRef50_Q8CS14 0.00804306199481 0.00165604434775 -0.00638701764706 +UniRef50_A1VUK8 4.8776090849e-06 7.23005814175e-06 2.35244905685e-06 +UniRef50_Q98FZ6 Mlr3554 protein 0.00440984587446 0.000941128479584 -0.00346871739488 +UniRef50_B5EPN2 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.000463284621103 0.000348113994329 -0.000115170626774 +UniRef50_D3QJ51 Rhodanese like domain protein 0.00507984219759 0.00141752018494 -0.00366232201265 +UniRef50_Q9RTE5 0.000159276788545 0.0356110179335 0.035451741145 +UniRef50_UPI00037196F6 hypothetical protein 8.12062391296e-06 5.12016024434e-05 4.30809785304e-05 +UniRef50_Q9CBQ2 Ribonucleoside diphosphate reductase subunit beta 0.000113221590412 0.000571729163774 0.000458507573362 +UniRef50_Q8BIG7 Catechol O methyltransferase domain containing protein 1 1.46444276445e-05 1.81569509493e-05 3.5125233048e-06 +UniRef50_Q8CPK8 Penicillin binding protein 1 0.0199481914462 0.00494624654849 -0.0150019448977 +UniRef50_T1XRT4 Competence protein ComGF, putative 0.0118698365882 0.00105790219461 -0.0108119343936 +UniRef50_B8DMV4 Integral membrane protein MviN 5.00164091291e-05 3.90412577959e-05 -1.09751513332e-05 +UniRef50_A6M167 0.000207983258652 0.00228430180642 0.00207631854777 +UniRef50_A6M161 0.000383140797233 0.000940410881359 0.000557270084126 +UniRef50_A6LUR8 0.000155771384668 0.00174260392332 0.00158683253865 +UniRef50_UPI000366A76F hypothetical protein, partial 1.09585347221e-05 1.99912497457e-05 9.0327150236e-06 +UniRef50_O05253 0.000797613011656 0.00272358384753 0.00192597083587 +UniRef50_O05255 0.00282833464044 0.00468627791081 0.00185794327037 +UniRef50_Q1IZU9 Serine tRNA ligase 9.25967266145e-05 0.0200639303506 0.019971333624 +UniRef50_M9VH54 Transporter, major facilitator family protein 0.000139809625497 0.00386088035741 0.00372107073191 +UniRef50_Q9PEV8 DNA topoisomerase 1 5.62756909166e-05 0.00437707701427 0.00432080132335 +UniRef50_D7CV09 ATP dependent zinc metalloprotease FtsH 0.000192775420736 0.0620828788116 0.0618901033909 +UniRef50_F5X6L2 Thiamine transporter protein 0.0026632988611 0.00286202509202 0.00019872623092 +UniRef50_Q7NMY2 Gsl0633 protein 2.30903238694e-05 0.000141420698737 0.000118330374868 +UniRef50_UPI000225C104 PhoP family transcriptional regulator 1.63473903479e-05 6.03633039479e-05 4.40159136e-05 +UniRef50_UPI00037A9D80 hypothetical protein 8.45543840624e-06 8.04193253294e-06 -4.135058733e-07 +UniRef50_UPI0003626827 hypothetical protein 5.27403769438e-06 1.66955763931e-05 1.14215386987e-05 +UniRef50_Q2YYZ3 0.00460131953246 0.0020366669324 -0.00256465260006 +UniRef50_UPI0002490914 transcriptional regulator 1.59367230047e-05 2.26936951888e-05 6.7569721841e-06 +UniRef50_I0C454 Nitrogen regulation protein NIFR3 0.000110831171716 4.14853337665e-05 -6.93458379495e-05 +UniRef50_E7C5A1 MoxR like ATPases 2.69302501344e-05 4.79892533018e-05 2.10590031674e-05 +UniRef50_D2ZNN2 0.00204929816724 0.00100428328925 -0.00104501487799 +UniRef50_B2ITM7 30S ribosomal protein S9 0.0288692210003 0.000477601140485 -0.0283916198598 +UniRef50_A4WTC5 0.000717761607152 0.000333691192315 -0.000384070414837 +UniRef50_M4YY80 Ribose ABC transporter permease 0.000649422652878 0.000579920873349 -6.9501779529e-05 +UniRef50_P77453 Hydrogenase 4 component J 0.000462229666611 0.000392013325476 -7.0216341135e-05 +UniRef50_P06225 DNA polymerase 1.89393207435e-05 9.31201518538e-06 -9.62730555812e-06 +UniRef50_R8T1N5 3.2742992727e-05 0.000972204752947 0.00093946176022 +UniRef50_E8SF08 N acetyl L,L diaminopimelate deacetylase like protein 0.0243524177879 0.0061210757926 -0.0182313419953 +UniRef50_UPI00037C81CE hypothetical protein 1.34195091168e-05 4.10166321171e-05 2.75971230003e-05 +UniRef50_K6VNK5 Putative ABC transporter substrate binding protein 4.07047724799e-05 1.21350655317e-05 -2.85697069482e-05 +UniRef50_UPI00046779B7 secretin 2.69256767708e-06 4.71974861155e-06 2.02718093447e-06 +UniRef50_L7WTQ2 Serine threonine rich antigen 0.000441576898586 5.8362985223e-05 -0.000383213913363 +UniRef50_UPI0003B4AC14 general secretion pathway protein I 3.97486276189e-05 2.64272190157e-05 -1.33214086032e-05 +UniRef50_A6TVR2 Aspartate carbamoyltransferase 0.000362658213269 0.000652725909678 0.000290067696409 +UniRef50_P10151 HTH type transcriptional regulator LeuO 0.000914623912942 0.000213225057899 -0.000701398855043 +UniRef50_D8JPC9 NUDIX domain protein 0.000345261575169 0.00631925724759 0.00597399567242 +UniRef50_Q6GGG1 Shikimate kinase 0.0115576285403 0.000365340253849 -0.0111922882865 +UniRef50_I9PDN2 0.000359510465573 0.000558959063463 0.00019944859789 +UniRef50_UPI000470E9F4 uroporphyrinogen decarboxylase 4.02946166679e-06 1.06858031716e-05 6.65634150481e-06 +UniRef50_Q43923 Putative porin QuiX 8.86811250236e-05 0.00584402323672 0.0057553421117 +UniRef50_A5UNK1 Nitroreductase, NfnB 0.00203394135176 0.00039907662865 -0.00163486472311 +UniRef50_F0MEP6 Acetyltransferase PglI 6.46380117888e-05 0.00338773567771 0.00332309766592 +UniRef50_H4G9C2 0.00634882130816 0.00334320798334 -0.00300561332482 +UniRef50_UPI000429B909 ribonucleotide diphosphate reductase subunit alpha 3.98872813898e-06 3.34971783169e-05 2.95084501779e-05 +UniRef50_Q0TPV7 Stage V sporulation protein B 0.000156905386118 0.0017071025982 0.00155019721208 +UniRef50_UPI00024917F8 transcriptional regulator 1.99986538608e-05 2.67748715997e-05 6.7762177389e-06 +UniRef50_UPI000377B35F hypothetical protein 7.93661496278e-06 1.31248640088e-05 5.18824904602e-06 +UniRef50_UPI00037AAF89 hypothetical protein 8.45833243654e-06 2.66927805075e-05 1.8234448071e-05 +UniRef50_J4KJZ5 TonB dependent siderophore receptor 0.000235085127254 0.00972025109182 0.00948516596457 +UniRef50_P75824 NADH oxidoreductase hcr 0.00334663307471 0.00115202491063 -0.00219460816408 +UniRef50_Q0F3C9 2.09997779138e-05 0.000336168293794 0.00031516851588 +UniRef50_P74241 Sulfate adenylyltransferase 0.0116975100777 0.00261589694111 -0.00908161313659 +UniRef50_B2TX82 0.00327154021598 0.000369916540948 -0.00290162367503 +UniRef50_A3PNK5 PTS IIA like nitrogen regulatory protein PtsN 0.00672088823442 0.00156998050926 -0.00515090772516 +UniRef50_Q73TT9 2.35365498718e-05 0.000791026888919 0.000767490339047 +UniRef50_P76552 Ethanolamine utilization protein EutH 0.0024427510306 0.000756495595641 -0.00168625543496 +UniRef50_Q73TT2 0.000115216776329 0.000165137306153 4.9920529824e-05 +UniRef50_A6LRT3 0.00147072463189 0.00108996252638 -0.00038076210551 +UniRef50_A8IJV0 BioY family protein 0.000506559858125 0.000671825604273 0.000165265746148 +UniRef50_B2AGC3 0.000148329850475 3.28531998182e-05 -0.000115476650657 +UniRef50_I4W6U8 Putative NAD specific glutamate dehydrogenase 2.52732430622e-05 1.43516863018e-05 -1.09215567604e-05 +UniRef50_R7N6I4 Amino acid transporters Alcohol dehydrogenase class IV 0.000204647714421 0.00247340480424 0.00226875708982 +UniRef50_A6LR22 Binding protein dependent transport systems inner membrane component 0.000433338977621 0.000226296325824 -0.000207042651797 +UniRef50_UPI0002F61CB0 hypothetical protein 0.00014733738634 8.25342595979e-06 -0.00013908396038 +UniRef50_UPI00034BD8C9 hypothetical protein 3.43273522016e-05 3.62213920152e-06 -3.07052130001e-05 +UniRef50_UPI00047221AF bifunctional glyoxylate hydroxypyruvate reductase B 3.73201983903e-05 9.3457149736e-06 -2.79744834167e-05 +UniRef50_P13511 Cobalt zinc cadmium resistance protein CzcA 0.000636812986412 0.00687374501912 0.00623693203271 +UniRef50_E8SJT4 Lipid A export ATP binding permease protein MsbA 0.0168473947198 0.00572730624667 -0.0111200884731 +UniRef50_A3PG03 Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03 0.00245506229071 0.001308352585 -0.00114670970571 +UniRef50_UPI00046F85CB L threonine 3 dehydrogenase 7.17556608728e-06 5.79518336705e-05 5.07762675832e-05 +UniRef50_S1T400 3.36401700486e-05 4.23304245184e-05 8.6902544698e-06 +UniRef50_X7DMX2 0.00362287185685 0.000540213485111 -0.00308265837174 +UniRef50_A6LRT8 0.00014334910969 0.00201882224934 0.00187547313965 +UniRef50_P76134 Anaerobic sulfatase maturating enzyme homolog YdeM 0.00136385636199 0.000245755926652 -0.00111810043534 +UniRef50_A6LZF4 Virginiamycin B lyase 0.000748679098248 0.000533675014833 -0.000215004083415 +UniRef50_P16431 Formate hydrogenlyase subunit 5 0.00687312360461 0.0026984294597 -0.00417469414491 +UniRef50_A8FP74 Methionyl tRNA formyltransferase 0.003521665815 0.00168539264391 -0.00183627317109 +UniRef50_B0V5A3 0.000142987116986 0.00666431884964 0.00652133173265 +UniRef50_F8I069 Spermidine putrescine binding periplasmic protein 0.00709307934009 0.00331790905842 -0.00377517028167 +UniRef50_UPI000464AFE5 hypothetical protein 2.52303004713e-05 2.65922321505e-05 1.3619316792e-06 +UniRef50_UPI0002491C94 N 6 DNA methylase 3.26698126137e-05 2.15029564568e-05 -1.11668561569e-05 +UniRef50_A6M1E5 Transposase, IS4 family protein 0.000209079791089 0.00147778559951 0.00126870580842 +UniRef50_UPI0003781939 30S ribosomal protein S2 2.01132048946e-05 1.63961366473e-05 -3.7170682473e-06 +UniRef50_Q2JFL7 NADH quinone oxidoreductase subunit D 0.000248631699718 0.0491417942289 0.0488931625292 +UniRef50_C3A9F0 Beta glucosidase 0.000406286439817 0.00161150897409 0.00120522253427 +UniRef50_UPI00037F85FD hypothetical protein 0.000251272699936 1.50580758753e-05 -0.000236214624061 +UniRef50_A3K670 NADP dependent isocitrate dehydrogenase protein 0.000419709008393 9.9184753374e-05 -0.000320524255019 +UniRef50_B7MFR7 Pyrimidine specific ribonucleoside hydrolase RihA 0.00244733732991 0.000792212748529 -0.00165512458138 +UniRef50_Q925Z1 Lin1243 protein 0.000120499050039 7.4057380629e-06 -0.000113093311976 +UniRef50_UPI000366F76E hypothetical protein 7.68153527215e-06 5.82544259988e-06 -1.85609267227e-06 +UniRef50_Q8NUG3 0.0075844509417 0.001072666723 -0.0065117842187 +UniRef50_P11961 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 7.0615459272e-06 8.66837023811e-05 7.96221564539e-05 +UniRef50_D2SAY9 ATPase involved in chromosome partitioning like protein 0.000171676391487 6.00223650408e-05 -0.000111654026446 +UniRef50_F3R5J1 8.99494302583e-05 1.63425567409e-05 -7.36068735174e-05 +UniRef50_Q3JPV0 7.62582162546e-05 1.09256542847e-05 -6.53325619699e-05 +UniRef50_Q036S8 Glucose 1 phosphate adenylyltransferase 4.49378779022e-06 0.00364863359982 0.00364413981203 +UniRef50_B6JGW9 Replicative DNA helicase 0.00650011849208 0.00107466508921 -0.00542545340287 +UniRef50_Q8CNU7 Multidrug resistance protein like protein 0.00983015157263 0.0037811319924 -0.00604901958023 +UniRef50_H3UQK1 0.000435495026938 0.000301349651069 -0.000134145375869 +UniRef50_UPI000475A83D hypothetical protein 2.47063053415e-05 1.8397109239e-05 -6.3091961025e-06 +UniRef50_P0AA74 0.00153943678432 0.000332439067766 -0.00120699771655 +UniRef50_Q9RYX0 Pyridoxamine kinase 5.47434663642e-05 0.00268819853244 0.00263345506608 +UniRef50_N1N3N6 Mobile element protein 0.0063255603062 0.000593074004909 -0.00573248630129 +UniRef50_V9W2G7 Nitrate reductase 0.00693561683809 0.000899406346395 -0.0060362104917 +UniRef50_P52196 Thiosulfate sulfurtransferase 3.6146229101e-05 1.15355356642e-05 -2.46106934368e-05 +UniRef50_Q9NJP9 Glycerol kinase, glycosomal 2.81083823504e-06 5.36105207239e-06 2.55021383735e-06 +UniRef50_R6CPB8 Methionine tRNA ligase 7.61572270731e-05 0.00102081946198 0.000944662234907 +UniRef50_P24252 0.00300040104459 0.000349487225087 -0.0026509138195 +UniRef50_Q2YX94 Iron regulated surface determinant protein C 0.00812975078207 0.00346241069239 -0.00466734008968 +UniRef50_B7V9D9 Glutamate 1 semialdehyde 2,1 aminomutase 0.00168314435661 0.000589807824604 -0.00109333653201 +UniRef50_E0NC84 9.14851879891e-05 0.000184940509885 9.34553218959e-05 +UniRef50_P33913 0.00107561712744 0.000874731953247 -0.000200885174193 +UniRef50_Q3IWW9 0.0155892846467 0.00113153930161 -0.0144577453451 +UniRef50_B9DJK9 UPF0042 nucleotide binding protein Sca_0414 0.0105302911569 0.00311176490031 -0.00741852625659 +UniRef50_P33916 0.00251994775363 0.00204350723066 -0.00047644052297 +UniRef50_D8HEB7 0.0173873045571 0.00476957997903 -0.0126177245781 +UniRef50_UPI000375905C hypothetical protein 4.61692733082e-05 4.51763639174e-05 -9.929093908e-07 +UniRef50_R4XS51 ABC transporter, periplasmic spermidine putrescine binding protein PotD 0.00793009865866 0.00202095332423 -0.00590914533443 +UniRef50_E6VA72 ABC transporter related protein 0.000145186918795 0.000744084444311 0.000598897525516 +UniRef50_E3GWS4 Oxidoreductase domain protein 0.00288791918355 0.000685884161275 -0.00220203502228 +UniRef50_UPI00035E9C46 hypothetical protein 1.41237259742e-05 5.60530703086e-06 -8.51841894334e-06 +UniRef50_UPI00032913FE PREDICTED 2.22371218383e-05 1.13306078541e-05 -1.09065139842e-05 +UniRef50_F2A5X0 6 pyruvoyl tetrahydropterin synthase 2.21458549105e-05 8.21690040535e-05 6.0023149143e-05 +UniRef50_UPI00016A2F14 potassium transporting ATPase subunit A, partial 2.99809487876e-05 0.00569127869408 0.00566129774529 +UniRef50_A4WNG3 Histidine kinase 0.00135006226483 0.0001488060628 -0.00120125620203 +UniRef50_A4WWM3 Outer membrane lipoprotein carrier protein LolA 0.00710456835784 0.00886214222692 0.00175757386908 +UniRef50_P28249 Protein AsmA 0.00281614356189 0.000434798932434 -0.00238134462946 +UniRef50_Q8DFM1 Adenylate kinase 2.57944081683e-05 2.86360223214e-05 2.8416141531e-06 +UniRef50_B0K5G6 50S ribosomal protein L10 0.0114714954327 0.000879203595179 -0.0105922918375 +UniRef50_R5P840 3.30488570308e-05 0.000132681864341 9.96330073102e-05 +UniRef50_Q1R7P6 0.00303365266544 0.00107718886632 -0.00195646379912 +UniRef50_B4KEQ1 GI22193 2.02625207005e-06 8.66083866101e-06 6.63458659096e-06 +UniRef50_Q3JSW3 7.85643680285e-05 3.68012859322e-05 -4.17630820963e-05 +UniRef50_A5UNT1 Putative Gp40 related protein, ERF family single strand annealing protein 0.00265479455166 0.00031983758685 -0.00233495696481 +UniRef50_UPI0004686FFD hypothetical protein 1.82261617715e-05 2.81943627224e-05 9.9682009509e-06 +UniRef50_Q48RL4 Xaa Pro dipeptidase 0.00631110062102 0.00824579642618 0.00193469580516 +UniRef50_I2FE21 Riboflavin synthase subunit alpha 0.00018294959072 0.00850610275909 0.00832315316837 +UniRef50_UPI0003761549 hypothetical protein 5.36408134229e-05 2.61282928728e-05 -2.75125205501e-05 +UniRef50_M9R9R9 Methylenetetrahydrofolate reductase 0.00610159751872 0.000744368906608 -0.00535722861211 +UniRef50_K2CW16 Short chain dehydrogenase reductase SDR 4.8865538721e-06 5.14684494134e-05 4.65818955413e-05 +UniRef50_F6AYF9 ABC type transporter, integral membrane subunit 0.000469001381553 0.00402249145926 0.00355349007771 +UniRef50_Q28TZ9 Protein MurJ homolog 0.0024160809991 0.000611732986985 -0.00180434801211 +UniRef50_K4SH63 6.57297906535e-05 4.5472997044e-05 -2.02567936095e-05 +UniRef50_J8ST30 3.19164994001e-05 0.00480553833288 0.00477362183348 +UniRef50_E7S6W5 0.000491028659405 0.000780379842539 0.000289351183134 +UniRef50_U0CZ19 7.10808439944e-05 0.000626113155893 0.000555032311899 +UniRef50_UPI000368BB4B hypothetical protein 1.00566704627e-05 2.60486945075e-05 1.59920240448e-05 +UniRef50_Q8CQ95 Histidinol dehydrogenase 0.00969720235544 0.00468322482678 -0.00501397752866 +UniRef50_P15713 Non hemolytic phospholipase C 0.000681265816543 0.000625523251695 -5.5742564848e-05 +UniRef50_D0K1D5 0.000111792494231 0.00346006906629 0.00334827657206 +UniRef50_A4VLC1 Rad3 related DNA helicase 0.000174621930468 0.000162376611368 -1.22453191e-05 +UniRef50_S5Y961 Phage terminase 0.00109174991792 0.000350875569572 -0.000740874348348 +UniRef50_UPI000289E091 6 pyruvoyl tetrahydropterin synthase 0.000522431132873 0.000623523758693 0.00010109262582 +UniRef50_O24990 Enoyl [acyl carrier protein] reductase [NADH] FabI 2.41213351301e-05 0.00244947618799 0.00242535485286 +UniRef50_A6LX16 Zinc finger, SWIM domain protein 0.000167692230552 0.00121534271162 0.00104765048107 +UniRef50_B2VB14 TraU protein 9.35781268509e-05 8.1059802057e-06 -8.54721466452e-05 +UniRef50_UPI0003943901 PREDICTED 1.59857054583e-05 0.000272425337655 0.000256439632197 +UniRef50_Q58811 0.0040673964371 0.000585546207708 -0.00348185022939 +UniRef50_X7ZA42 Integral membrane nitrite extrusion NarU domain protein 2.21214070116e-05 1.83188997953e-05 -3.8025072163e-06 +UniRef50_Q5HYK3 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 6.68709754544e-06 7.0573538081e-06 3.7025626266e-07 +UniRef50_Q59659 Succinate dehydrogenase cytochrome b556 subunit 0.00581920965314 0.000463848228053 -0.00535536142509 +UniRef50_M3H3A2 CRISPR associated helicase Cas3 3.18408876843e-05 1.02760345164e-05 -2.15648531679e-05 +UniRef50_UPI0003347ABB PREDICTED 2.59274261715e-06 4.75901200702e-06 2.16626938987e-06 +UniRef50_UPI0003697ED9 hypothetical protein, partial 9.87500695752e-06 2.22133773691e-05 1.23383704116e-05 +UniRef50_D3E1C7 Xylose isomerase like TIM barrel domain containing protein 0.0022864169283 0.000283958370386 -0.00200245855791 +UniRef50_F1U7I1 2.96049839993e-05 5.40870788903e-05 2.4482094891e-05 +UniRef50_UPI0004727931 hypothetical protein 4.98240243046e-05 1.13157059074e-05 -3.85083183972e-05 +UniRef50_UPI000468C176 hypothetical protein 6.07452314229e-05 7.94187198909e-05 1.8673488468e-05 +UniRef50_P0AGH4 Peptide transport system permease protein SapB 0.00202190115476 0.000643645314655 -0.0013782558401 +UniRef50_A6M060 PfkB domain protein 0.00100356483133 0.00175371248917 0.00075014765784 +UniRef50_B1GYM8 UDP N acetylmuramate L alanine ligase 1.25775450324e-05 6.36184159349e-06 -6.21570343891e-06 +UniRef50_Q9I0K4 Isocitrate lyase 0.000498819853153 0.00901115400854 0.00851233415539 +UniRef50_Q21KT5 Tetratricopeptide TPR_2 7.72789238238e-06 1.99831961578e-05 1.22553037754e-05 +UniRef50_D6DNI5 Cation multidrug efflux pump 0.00158890227015 0.00036874383908 -0.00122015843107 +UniRef50_UPI000023E6F1 hypothetical protein FG03809.1 1.14531060573e-06 3.32584107032e-06 2.18053046459e-06 +UniRef50_H7CZP9 ABC transporter, ATP binding protein 0.000186871904876 0.000723172021518 0.000536300116642 +UniRef50_UPI0003650601 30S ribosomal protein S4 5.03937248265e-05 0.000155151661348 0.000104757936522 +UniRef50_C7NH75 Chromosome segregation ATPase 1.0720748933e-05 4.06528973413e-05 2.99321484083e-05 +UniRef50_U7G8A4 2.12763906924e-05 1.36856425068e-05 -7.5907481856e-06 +UniRef50_L7WSV6 0.0208110411396 0.00294384330578 -0.0178671978338 +UniRef50_E0QAI5 TQXA domain protein 8.26423419184e-06 0.000105450547113 9.71863129212e-05 +UniRef50_Q9L883 0.000684137332974 0.000538345552708 -0.000145791780266 +UniRef50_H6SQS4 Cyclic nucleotide binding 0.000110903970089 0.000675509359373 0.000564605389284 +UniRef50_B5XNE4 3 dehydroquinate dehydratase 0.00106066752266 1.47115546141e-05 -0.00104595596805 +UniRef50_P38135 Short chain fatty acid CoA ligase 0.00309957241856 0.000814990096881 -0.00228458232168 +UniRef50_Q9RNH6 Glycogen synthase 0.00296091135405 0.0008706735064 -0.00209023784765 +UniRef50_R4R8F1 Transcriptional regulator, LysR family 0.000279619251005 0.000297798358178 1.8179107173e-05 +UniRef50_Q5HR55 0.00874170233776 0.00155512799746 -0.0071865743403 +UniRef50_Q97QF9 Putative 3 isopropylmalate dehydratase small subunit 2.13626211155e-05 0.0027431953502 0.00272183272908 +UniRef50_P76524 Aminopeptidase YpdF 0.00573786613051 0.0012032102586 -0.00453465587191 +UniRef50_UPI0004663E5A spermidine putrescine ABC transporter permease 6.79019900333e-05 0.000289056145141 0.000221154155108 +UniRef50_M7D3U9 0.00554402087679 0.00208121531034 -0.00346280556645 +UniRef50_UPI00044496EC mannitol 1 phosphate dehydrogenase M1PDH1 2.22039048191e-05 1.18965866313e-05 -1.03073181878e-05 +UniRef50_A0A058ZQ19 Putative cation transport protein 7.76279430658e-06 3.45729977485e-05 2.68102034419e-05 +UniRef50_F4FMY2 Group 2 glycosyl transferase 0.0113482289735 0.000954524416758 -0.0103937045567 +UniRef50_Q9I4G8 Arachidonate 15 lipoxygenase 0.000548856310141 0.000492696825262 -5.6159484879e-05 +UniRef50_D4HAN6 ABC transporter, ATP binding protein 0.000157504585052 0.00340993991455 0.0032524353295 +UniRef50_I3GFM4 0.0012368876137 0.00144401183055 0.00020712421685 +UniRef50_UPI0002F4F624 hypothetical protein 2.99466639964e-05 2.41311659071e-05 -5.8154980893e-06 +UniRef50_D9XXK0 0.000237412571605 0.000727669038904 0.000490256467299 +UniRef50_UPI000382A772 hypothetical protein 4.76973672202e-05 4.62804987576e-05 -1.4168684626e-06 +UniRef50_A7HVG2 7.36637439323e-05 3.96149586029e-05 -3.40487853294e-05 +UniRef50_UPI00042B174B Beta carbonic anhydrase 5, putative isoform 3 1.1733833101e-05 1.52502201871e-05 3.5163870861e-06 +UniRef50_Q9KAF4 BH2333 protein 0.012144786948 0.000632821511128 -0.0115119654369 +UniRef50_M7MZC8 Cytoplasmic protein 3.22471803311e-06 9.68828248747e-06 6.46356445436e-06 +UniRef50_U5UPA0 Transcription termination factor NusA 0.0246171850219 0.00358436003725 -0.0210328249846 +UniRef50_S6AFF6 8.92401864878e-05 0.000114168829327 2.49286428392e-05 +UniRef50_A6LUU0 8.14132254934e-05 0.000630980644676 0.000549567419183 +UniRef50_Q9JZ56 Aspartate 1 decarboxylase 0.000302796247737 0.00621472997773 0.00591193372999 +UniRef50_A7ZI94 3 propionate 3 hydroxycinnamic acid hydroxylase 0.000879836348917 0.000116419200473 -0.000763417148444 +UniRef50_Q830B9 Probable nicotinate nucleotide adenylyltransferase 0.00439049541418 0.00617097548013 0.00178048006595 +UniRef50_UPI0003637298 hypothetical protein 3.08735039141e-05 1.32229969289e-05 -1.76505069852e-05 +UniRef50_UPI0002F798B9 hypothetical protein 4.14840343257e-06 6.32428485689e-06 2.17588142432e-06 +UniRef50_UPI0003680D49 hypothetical protein 8.83531079733e-06 0.00010668911023 9.78537994327e-05 +UniRef50_F9YXS7 Tyrosine recombinase XerC 0.000405192966456 0.00493891817861 0.00453372521215 +UniRef50_I3XDQ4 TOP1E 0.00015344958896 0.000656139274964 0.000502689686004 +UniRef50_Q00518 Type II secretion system protein K 0.000689954749221 0.00019218006846 -0.000497774680761 +UniRef50_A6LUU6 0.000290373837578 0.00228147001429 0.00199109617671 +UniRef50_P0AFY4 Protein SanA 0.00413161446614 0.00259867378184 -0.0015329406843 +UniRef50_P34896 Serine hydroxymethyltransferase, cytosolic 8.00527001523e-05 0.00012054364263 4.04909424777e-05 +UniRef50_F4DTG1 TetR family transcriptional regulator 0.000160632335681 0.000499126825692 0.000338494490011 +UniRef50_M5JL13 YaeC family lipoprotein 6.47576439463e-05 2.08769302488e-05 -4.38807136975e-05 +UniRef50_UPI0003A8766A hypothetical protein 3.1051190023e-05 2.66290425096e-05 -4.4221475134e-06 +UniRef50_A0RGM3 7.37601891602e-06 0.000349487225087 0.000342111206171 +UniRef50_U6I6N8 Mechanosensory protein 2 4.44830441661e-06 7.70382742575e-06 3.25552300914e-06 +UniRef50_D5SMQ9 0.000231767657539 9.27589780055e-05 -0.000139008679533 +UniRef50_UPI00035E630D hypothetical protein 9.6952148618e-06 5.69142231235e-05 4.72190082617e-05 +UniRef50_D6AZ23 Integral membrane protein 9.02898588779e-06 6.60884833075e-06 -2.42013755704e-06 +UniRef50_D2NRU7 Cytosine deaminase 1.94734193464e-06 3.86462821333e-05 3.66989401987e-05 +UniRef50_UPI00041D1FA9 hypothetical protein 3.86153910082e-06 6.03383241947e-06 2.17229331865e-06 +UniRef50_S5VIT0 Relaxase mobilization nuclease domain protein 0.000457819746427 5.90424993402e-05 -0.000398777247087 +UniRef50_P77339 0.0012013631812 0.000468445833732 -0.000732917347468 +UniRef50_UPI00047C5809 short chain dehydrogenase 1.87741603106e-05 4.18647560786e-05 2.3090595768e-05 +UniRef50_UPI000441CA6F PREDICTED 0.000187705338427 7.48656594271e-05 -0.000112839679 +UniRef50_P71015 HTH type transcriptional repressor GbsR 0.0267089046572 0.00386938121516 -0.022839523442 +UniRef50_A3JNE7 0.000149229721474 8.52516392897e-05 -6.39780821843e-05 +UniRef50_A0REF7 DNA binding response regulator 0.000977727025268 0.00992519376363 0.00894746673836 +UniRef50_Q6NCE2 3.52595635827e-05 1.18003008639e-05 -2.34592627188e-05 +UniRef50_A7ZJJ2 Cyclic pyranopterin monophosphate synthase accessory protein 0.000987988099604 0.000673726323636 -0.000314261775968 +UniRef50_Q888H1 Uronate dehydrogenase 6.96161873087e-06 5.0203135352e-05 4.32415166211e-05 +UniRef50_A6LV74 Integral membrane sensor signal transduction histidine kinase 0.000199475307231 0.000724256541209 0.000524781233978 +UniRef50_C8VDQ3 Putative glutathione dependent formaldehyde activating enzyme 8.91023047476e-05 2.49646046077e-05 -6.41377001399e-05 +UniRef50_K8B5X1 3.83331743519e-05 0.0001182843946 7.99512202481e-05 +UniRef50_F4H898 CRISPR associated HD domain protein 1.42027855374e-05 6.96184103225e-06 -7.24094450515e-06 +UniRef50_M4UMY3 Transcriptional regulator, Crp Fnr family 0.000183542620181 0.000322163678398 0.000138621058217 +UniRef50_I1AQG2 IS5 family transposase OrfA 9.62907484674e-05 7.80155010848e-05 -1.82752473826e-05 +UniRef50_UPI0003B76181 hypothetical protein 2.92105033648e-05 3.17162967487e-05 2.5057933839e-06 +UniRef50_UPI000474B984 sugar ABC transporter ATP binding protein 1.37329812279e-05 4.65897606602e-05 3.28567794323e-05 +UniRef50_W4UB24 L xylulose 5 phosphate 3 epimerase 1.12346353354e-05 0.000252765520183 0.000241530884848 +UniRef50_UPI0002BA5A10 MerR family transcriptional regulator 0.00144268123538 0.00249045105171 0.00104776981633 +UniRef50_Q893S7 Chemotaxis protein methyltransferase cheR 0.000368878816464 0.00162061810776 0.0012517392913 +UniRef50_S5Y8D8 DNA topoisomerase 1 0.005545819188 0.00124078986083 -0.00430502932717 +UniRef50_D4MGJ2 Cyclopropane fatty acyl phospholipid synthase 0.000115087191723 0.000956930029311 0.000841842837588 +UniRef50_UPI00036A03D0 hypothetical protein, partial 0.000153215269274 0.000232182404569 7.8967135295e-05 +UniRef50_UPI000473270B hypothetical protein 8.94454828167e-06 1.57686001425e-05 6.82405186083e-06 +UniRef50_G7M9J3 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.000940292506537 0.00074930822433 -0.000190984282207 +UniRef50_UPI0003595AF6 0.000112942660081 0.000121114164807 8.171504726e-06 +UniRef50_B4SRW3 Acetyl CoA acetyltransferase 0.000106035390125 0.00568825099663 0.0055822156065 +UniRef50_A6LX32 0.000255097986351 0.000384774759058 0.000129676772707 +UniRef50_B5GLS3 9.90513790878e-05 0.000324318294177 0.000225266915089 +UniRef50_X4QTL9 0.000209565552343 0.0135372652476 0.0133276996953 +UniRef50_V8R9C6 Cytochrome C assembly protein 0.000622310584964 0.000268877121583 -0.000353433463381 +UniRef50_UPI000470A12B hypothetical protein 4.98012429875e-06 1.83618579394e-05 1.33817336406e-05 +UniRef50_C5C6A7 2.30846910008e-06 1.83656647608e-05 1.60571956607e-05 +UniRef50_U2Z7C1 6.67267421198e-05 4.03016204772e-05 -2.64251216426e-05 +UniRef50_F8LKD4 0.00615826928226 0.00107432749897 -0.00508394178329 +UniRef50_I0C2E4 Hydrogen peroxide inducible genes activator 0.0157288754141 0.00311570116055 -0.0126131742536 +UniRef50_UPI0004728112 shikimate dehydrogenase, partial 3.85580903565e-05 3.38828718271e-05 -4.6752185294e-06 +UniRef50_UPI0003B52B26 ABC transporter 1.89613097026e-05 7.15774437721e-06 -1.18035653254e-05 +UniRef50_M7DCE8 Anticodon nuclease 0.00333468321886 0.0021962252729 -0.00113845794596 +UniRef50_UPI0004773C4C peptidylprolyl isomerase 6.44559936658e-06 2.53633220983e-05 1.89177227317e-05 +UniRef50_L8N8P7 HflK protein 0.00116066238137 0.00156205134455 0.00040138896318 +UniRef50_B2TPA5 Cell division protein FtsA 0.000380561247775 0.00150451390765 0.00112395265987 +UniRef50_N0AQS7 D 3 phosphoglycerate dehydrogenase 0.00367858797636 0.00222687901887 -0.00145170895749 +UniRef50_U3TMH1 Chloride channel protein 0.0115080046447 0.00162874223364 -0.00987926241106 +UniRef50_UPI00022337B0 PREDICTED 4.97875541753e-07 7.7248953018e-06 7.22701976005e-06 +UniRef50_UPI000370CB23 hypothetical protein 0.000151167679488 8.93179447265e-05 -6.18497347615e-05 +UniRef50_F4DXM1 Short chain dehydrogenase 0.000281705961835 0.000234068722742 -4.7637239093e-05 +UniRef50_E1R075 FAD dependent oxidoreductase 0.000734509607042 0.000597391113129 -0.000137118493913 +UniRef50_UPI0003A40543 hypothetical protein 0.000192532944305 5.45928348185e-05 -0.000137940109486 +UniRef50_B9KSE8 FAD dependent oxidoreductase 0.00302282200461 0.000529762607153 -0.00249305939746 +UniRef50_Q11NV4 Isoleucine tRNA ligase 2.61784077345e-06 4.13882837431e-06 1.52098760086e-06 +UniRef50_X0YWS3 Marine sediment metagenome DNA, contig 1.12947381864e-05 2.11295975518e-05 9.8348593654e-06 +UniRef50_U3STL6 0.00335445708426 0.0019635407469 -0.00139091633736 +UniRef50_D9VBW9 Predicted protein 3.32320876086e-05 4.69074606352e-05 1.36753730266e-05 +UniRef50_B9KLG3 Membrane protein 0.000129571849717 0.000273864023365 0.000144292173648 +UniRef50_S5YCD9 6.49824300693e-05 1.15094696474e-05 -5.34729604219e-05 +UniRef50_K5RU55 0.000406513133883 0.00793056907271 0.00752405593883 +UniRef50_L8P717 Putative UPF0225 protein 8.11625701915e-06 5.30623068058e-05 4.49460497866e-05 +UniRef50_P97089 Electron transfer flavoprotein subunit beta 0.00123269506041 0.00502244926693 0.00378975420652 +UniRef50_D3P6N7 Peptide nickel transport system ATP binding protein 0.000190434500872 0.000385158373492 0.00019472387262 +UniRef50_J2GHT5 5.17778347599e-05 1.23377137212e-05 -3.94401210387e-05 +UniRef50_D7I331 Phenylalanine hydroxylase transcriptional activator PhhR 0.000338415015832 0.000159630651457 -0.000178784364375 +UniRef50_Q8DSP8 Membrane protein insertase YidC 2 0.00653334374049 0.00699150135768 0.00045815761719 +UniRef50_D2JDJ5 Replication initiator protein 0.000152293368515 3.15623109994e-05 -0.000120731057516 +UniRef50_UPI000273B72B PREDICTED 9.5420187226e-06 4.42176667899e-05 3.46756480673e-05 +UniRef50_F0RNI2 0.000467147949714 0.0186302563141 0.0181631083644 +UniRef50_Q9I4X3 Anthranilate CoA ligase 0.000896382203803 0.000155566306503 -0.0007408158973 +UniRef50_UPI000477551D acetyl CoA hydrolase 6.45123520899e-05 4.09232928958e-05 -2.35890591941e-05 +UniRef50_E8SEC6 Acid phosphatase 0.0197872925081 0.00652914356851 -0.0132581489396 +UniRef50_Q2W0I4 0.000628173082596 0.000168201568715 -0.000459971513881 +UniRef50_Q0D8N0-3 Isoform 3 of DEAD box ATP dependent RNA helicase 53 1.06555769396e-05 0.00017226997901 0.00016161440207 +UniRef50_UPI0003700CC6 hypothetical protein, partial 7.60524286994e-07 1.03685676294e-05 9.60804334241e-06 +UniRef50_I6T7T0 Transposase 0.00042896135097 0.000311670146086 -0.000117291204884 +UniRef50_F7YG57 7.09008418504e-06 5.57908908074e-05 4.87008066224e-05 +UniRef50_A3PRI3 0.000427809343597 0.000219498346369 -0.000208310997228 +UniRef50_UPI00046735F8 methionine gamma lyase, partial 5.56661806243e-06 8.90237086444e-06 3.33575280201e-06 +UniRef50_UPI0004753FFF hypothetical protein 3.12109510551e-06 2.36978900896e-05 2.05767949841e-05 +UniRef50_UPI0002883A7C phosphoribosylaminoimidazole carboxylase 3.64934125607e-06 6.46133519128e-06 2.81199393521e-06 +UniRef50_Q8CPQ1 Bifunctional autolysin 0.0187552720207 0.00469974413244 -0.0140555278883 +UniRef50_UPI000225B6E8 flagellar biosynthesis protein FliQ 0.000468296934658 0.000149756290545 -0.000318540644113 +UniRef50_F2FNL1 0.000171385230033 9.42515328672e-05 -7.71336971658e-05 +UniRef50_R9VQB8 Major facilitator transporter 0.000375773105201 0.00227920907105 0.00190343596585 +UniRef50_Q56318 3.09902032432e-05 0.00043845233274 0.000407462129497 +UniRef50_A7FAU5 0.000650837911816 0.015686549076 0.0150357111642 +UniRef50_U5P8L4 Membrane protein 0.00558026408043 0.00255596465028 -0.00302429943015 +UniRef50_Q826Q0 Peptide deformylase 2 1.40409634433e-05 4.75203004678e-05 3.34793370245e-05 +UniRef50_Q7UJL3 Inosine 5 monophosphate dehydrogenase 0.00867871221614 0.00255875222324 -0.0061199599929 +UniRef50_A3K7K9 0.000288438103518 0.000160638752866 -0.000127799350652 +UniRef50_E3JT91 2.37562605899e-05 9.3430345138e-06 -1.44132260761e-05 +UniRef50_Q89ZA3 6.53597731495e-06 0.00374432355559 0.00373778757828 +UniRef50_Q9HXE9 Phosphatidylcholine synthase 0.00263114249638 6.41905360119e-05 -0.00256695196037 +UniRef50_UPI0003D71460 PREDICTED 6.00943169724e-06 3.86548482433e-05 3.26454165461e-05 +UniRef50_Q3J224 Phage related protein, putative DNA packing 0.000333075872518 0.000522684433979 0.000189608561461 +UniRef50_P43671 Paraquat inducible protein B 0.00405579005205 0.000767517498713 -0.00328827255334 +UniRef50_UPI00006CBA16 Carbonic anhydrase family protein 1.81786432917e-05 9.50550847316e-05 7.68764414399e-05 +UniRef50_W7WVT2 0.000386805509454 0.000102319047865 -0.000284486461589 +UniRef50_UPI000362D292 hypothetical protein 1.27606570305e-05 1.89459236717e-05 6.1852666412e-06 +UniRef50_P37906 Gamma glutamylputrescine oxidoreductase 0.00448105289624 0.000728979094331 -0.00375207380191 +UniRef50_UPI0001FFEB3E acyltransferase 3, partial 6.39145599516e-05 1.44080514404e-05 -4.95065085112e-05 +UniRef50_UPI00037F5E94 hypothetical protein 1.363233158e-05 1.23792924587e-05 -1.2530391213e-06 +UniRef50_P0ADP7 0.00291741151191 0.000294335586571 -0.00262307592534 +UniRef50_G9E7X5 Protein fecR 2.95138286299e-05 1.36285921389e-05 -1.5885236491e-05 +UniRef50_A6LS23 Helix turn helix domain protein 0.000145001020044 0.00119249429921 0.00104749327917 +UniRef50_UPI0003A885D5 translation initiation factor IF 2 2.63013036585e-06 7.58688947198e-05 7.32387643539e-05 +UniRef50_E6C679 0.000752976542231 0.00687258354044 0.00611960699821 +UniRef50_W4TI22 Lysophospholipase L2 3.95370910729e-05 0.00035402877194 0.000314491680867 +UniRef50_E7T8A0 Mg chelatase subunit ChlD 0.00490348905408 0.00154027580513 -0.00336321324895 +UniRef50_Q1IVF1 Queuine tRNA ribosyltransferase 6.46852211643e-06 4.6756597222e-05 4.02880751056e-05 +UniRef50_P23910 Protein AraJ 0.00246757895168 0.00143330075411 -0.00103427819757 +UniRef50_A6LPC4 ATP dependent helicase nuclease subunit A 0.00041999196467 0.00115353815113 0.00073354618646 +UniRef50_UPI000379410F hypothetical protein 0.000262342987558 1.46378192363e-05 -0.000247705168322 +UniRef50_N2DXX0 Dihydrouridine synthase family protein 0.000400802427531 0.000553718822241 0.00015291639471 +UniRef50_M9RF98 Peptidyl prolyl cis trans isomerase 0.00401723530971 0.000623153372152 -0.00339408193756 +UniRef50_Q9L6V4 Transposase 1.00184098154e-05 3.26347939783e-05 2.26163841629e-05 +UniRef50_Q1IQY5 Bifunctional protein GlmU 4.10585882136e-06 5.30013897974e-06 1.19428015838e-06 +UniRef50_A0A011NHH5 Periplasmic [NiFeSe] hydrogenase small subunit 0.00010971566267 1.10355598163e-05 -9.86801028537e-05 +UniRef50_D4HEK1 Bacterial type II secretion system domain protein F 0.00106312334069 0.00613748913487 0.00507436579418 +UniRef50_V9VZ19 Membrane protein 0.00466072222998 4.65498952615e-05 -0.00461417233472 +UniRef50_Q9I3X4 0.00139341763647 0.000242172737698 -0.00115124489877 +UniRef50_A5IV60 Molybdate ABC transporter, inner membrane subunit 0.0209006427244 0.00357607465006 -0.0173245680743 +UniRef50_UPI0004625430 PREDICTED 1.26918562342e-05 4.41524394923e-05 3.14605832581e-05 +UniRef50_UPI000376710A hypothetical protein, partial 2.30396987402e-05 2.55688421838e-05 2.5291434436e-06 +UniRef50_Q6F6X6 0.000391769482445 0.00819260071316 0.00780083123071 +UniRef50_B7V4B9 0.00208375718604 0.000424916122588 -0.00165884106345 +UniRef50_O31766 1.42187698079e-05 0.00029460116961 0.000280382399802 +UniRef50_W0Z2F6 Putative major facilitator superfamily transporter 0.000268773044517 0.00037631903353 0.000107545989013 +UniRef50_P0A6G4 Nicotinamide nucleotide amidohydrolase PncC 0.00413301879053 0.000971841663992 -0.00316117712654 +UniRef50_A6LT79 Periplasmic binding protein LacI transcriptional regulator 0.000259959046035 0.000905519268575 0.00064556022254 +UniRef50_UPI00046F3756 50S ribosomal protein L3 3.18885010302e-05 9.83781746433e-05 6.64896736131e-05 +UniRef50_M2GKY0 0.00232349308678 0.000712771551959 -0.00161072153482 +UniRef50_UPI0003B5DDE6 ATPase 5.02070069802e-05 2.0190129812e-05 -3.00168771682e-05 +UniRef50_Q8F4Q4 Inosine 5 monophosphate dehydrogenase 2.58031064534e-05 4.35773474071e-06 -2.14453717127e-05 +UniRef50_J9YME8 ABC superfamily ATP binding cassette transporter, membrane protein 0.000421485147643 0.000258671566595 -0.000162813581048 +UniRef50_UPI00039B3F34 aldehyde activating protein 6.24089332808e-05 0.000102345566425 3.99366331442e-05 +UniRef50_A0A017SYI4 9.76617089557e-06 4.08607911706e-06 -5.68009177851e-06 +UniRef50_G1WMK0 1.13022738335e-05 7.26703929428e-05 6.13681191093e-05 +UniRef50_Q5LMW0 Ribonuclease HII 1.34569502043e-05 3.029848459e-05 1.68415343857e-05 +UniRef50_P39814 DNA topoisomerase 1 0.0220510460708 0.0049457739908 -0.01710527208 +UniRef50_A0A023KT22 DNA polymerase II 0.000792370158037 0.000162782198958 -0.000629587959079 +UniRef50_A0A014PEH8 3.46158632631e-05 8.12425598867e-05 4.66266966236e-05 +UniRef50_B9KJL3 0.0103562773928 0.00141752018494 -0.00893875720786 +UniRef50_UPI000350C992 PREDICTED 9.3073579535e-05 1.40336191537e-05 -7.90399603813e-05 +UniRef50_A8HYP6 3.95861867723e-05 9.14682872319e-06 -3.04393580491e-05 +UniRef50_UPI00042B224B Tubulin FtsZ family protein, putative isoform 4 3.20329347985e-06 1.33144282389e-05 1.01111347591e-05 +UniRef50_I2C5T3 Ribonucleoside diphosphate reductase 0.010004639477 0.0042595998408 -0.0057450396362 +UniRef50_G9EUU6 0.000470454097827 0.0239414267189 0.0234709726211 +UniRef50_I4CQD2 5.48359523491e-05 7.90088972637e-05 2.41729449146e-05 +UniRef50_Q5HR38 Cys tRNA Cys tRNA(Cys) deacylase 0.014542394519 0.00211327855548 -0.0124291159635 +UniRef50_Q9HVZ2 0.000520626827673 0.000131935981468 -0.000388690846205 +UniRef50_UPI000363B12A NADH dehydrogenase, partial 0.000114582432049 4.73088528801e-06 -0.000109851546761 +UniRef50_Z5X6G1 2.79755658908e-05 3.90549550631e-05 1.10793891723e-05 +UniRef50_P0AG42 Riboflavin biosynthesis protein RibF 0.00400826467786 0.000861049857057 -0.0031472148208 +UniRef50_C6S7Y9 0.000222924796565 0.00504770345406 0.0048247786575 +UniRef50_P76422 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.00415509071857 0.000454909502082 -0.00370018121649 +UniRef50_B8H627 Ribonuclease 3 1.99106079718e-05 1.41145614699e-05 -5.7960465019e-06 +UniRef50_P49376 ATP synthase subunit beta, mitochondrial 2.37544018979e-05 0.000977517537553 0.000953763135655 +UniRef50_W0YWB6 Protein PelB 1.32995650804e-05 1.65574701479e-05 3.2579050675e-06 +UniRef50_UPI00036635D2 hypothetical protein 0.000423636293519 0.000392324677706 -3.1311615813e-05 +UniRef50_Q2T4E0 DNA binding response regulator 0.000171584540393 0.00643806753779 0.0062664829974 +UniRef50_UPI0003ACD19D PREDICTED 0.000139972127338 9.28995362949e-05 -4.70725910431e-05 +UniRef50_UPI0003711349 hypothetical protein 0.00036627084632 0.000122071493478 -0.000244199352842 +UniRef50_UPI000378A2B6 hypothetical protein 1.47202043254e-05 1.48936210484e-05 1.73416723e-07 +UniRef50_UPI0004253BDC phosphopentomutase 8.92103776348e-06 1.60697768643e-05 7.14873910082e-06 +UniRef50_UPI00034DE29F hypothetical protein 2.92713625505e-05 0.000100444004967 7.11726424165e-05 +UniRef50_Q8CU58 0.00582953518667 0.00577027629805 -5.925888862e-05 +UniRef50_Q8CU59 0.00708778879664 0.00270396869368 -0.00438382010296 +UniRef50_X8BCV4 FAD binding domain protein 4.26204407769e-05 0.00175477472867 0.00171215428789 +UniRef50_UPI0004769DD4 hypothetical protein, partial 0.000250241001873 0.000198427422761 -5.1813579112e-05 +UniRef50_P94132 Probable electron transfer flavoprotein ubiquinone oxidoreductase 8.94942108975e-06 0.00606438667237 0.00605543725128 +UniRef50_Q8CU51 0.0153658943739 0.0028005218736 -0.0125653725003 +UniRef50_UPI0003074F79 hypothetical protein 7.72744111147e-05 2.76852406622e-05 -4.95891704525e-05 +UniRef50_A6LT48 0.0002881572434 0.000357959642661 6.9802399261e-05 +UniRef50_O67610 3 oxoacyl [acyl carrier protein] reductase FabG 1.29087399635e-05 3.73124738155e-05 2.4403733852e-05 +UniRef50_A6LT46 0.000246186514471 0.00037540259135 0.000129216076879 +UniRef50_B4REX9 UPF0301 protein PHZ_c0553 4.84866925293e-05 9.12973086759e-05 4.28106161466e-05 +UniRef50_Q0IS03 Os11g0579700 protein 5.19157162963e-06 0.000179631578807 0.000174440007177 +UniRef50_A6LT42 8.2002749205e-05 0.000250990709374 0.000168987960169 +UniRef50_Q2NGX9 Phenylalanine tRNA ligase beta subunit 0.00360382400105 0.000216098972538 -0.00338772502851 +UniRef50_UPI00016C0C74 DNA mismatch repair protein MutS 2.14564311589e-06 3.31929308211e-05 3.10472877052e-05 +UniRef50_UPI0004723041 hypothetical protein 0.00197739518055 0.000261811851881 -0.00171558332867 +UniRef50_F2JLI9 MATE efflux family protein 0.000464833609578 0.000442080971927 -2.2752637651e-05 +UniRef50_UPI000464D0AC hypothetical protein 4.29365125812e-05 3.40182117107e-05 -8.9183008705e-06 +UniRef50_UPI0003B58353 preprotein translocase subunit SecB 5.21614936035e-05 9.16598403316e-05 3.94983467281e-05 +UniRef50_Q8FT41 Carbamoyl phosphate synthase small chain 4.86765306937e-06 7.95470631431e-06 3.08705324494e-06 +UniRef50_F5XZV5 Candidate signal transduction protein , STAS domain protein 2.50703971573e-05 0.00556343690481 0.00553836650765 +UniRef50_A6VBI2 Membrane protein, putative 0.00055774807656 0.000469477201255 -8.8270875305e-05 +UniRef50_UPI00030DD393 hypothetical protein 3.49878184027e-05 0.000212340242704 0.000177352424301 +UniRef50_P0AFT0 Murein DD endopeptidase MepM 0.00277489039148 0.000420682623693 -0.00235420776779 +UniRef50_Q2FK43 Pyruvate formate lyase activating enzyme 0.0249632559056 0.00427335225639 -0.0206899036492 +UniRef50_I7L6K8 Rhodanese like domain protein 2.10893064847e-05 2.89865110268e-05 7.8972045421e-06 +UniRef50_O33367 DNA gyrase subunit B 1.4741424855e-05 1.20167081245e-05 -2.7247167305e-06 +UniRef50_J9ZQJ4 0.000251099327394 0.000490831088969 0.000239731761575 +UniRef50_B2HGA4 Isopentenyl diphosphate delta isomerase 0.000142806805364 0.00587166537189 0.00572885856653 +UniRef50_UPI0002626EA5 hypothetical protein 1.15228457292e-05 5.11895670415e-05 3.96667213123e-05 +UniRef50_A4EG23 6.37334960829e-05 2.57806518948e-05 -3.79528441881e-05 +UniRef50_O33818 4 hydroxybenzoyl CoA reductase subunit gamma 0.000615068737902 0.000227424037889 -0.000387644700013 +UniRef50_F0QNA7 0.000243539347646 0.00237210857846 0.00212856923081 +UniRef50_UPI000467E119 hypothetical protein 7.27970005919e-06 1.28422223556e-05 5.56252229641e-06 +UniRef50_W1K4B0 ABC transporter glycerol 3 phosphate binding protein 7.75238429883e-05 2.9140143902e-05 -4.83836990863e-05 +UniRef50_Q65GR3 Histidine tRNA ligase 0.0106715233029 0.00109291647713 -0.00957860682577 +UniRef50_UPI00047342DF hypothetical protein, partial 2.63105914219e-05 2.56093625476e-05 -7.012288743e-07 +UniRef50_F0MV13 CoA binding domain acetyltransferase, GNAT family 9.69868945575e-05 0.00424945530025 0.00415246840569 +UniRef50_Q3JS21 EutG protein 0.00014842175184 0.00306474867415 0.00291632692231 +UniRef50_A9IBR9 6.4386472309e-05 6.29141111262e-05 -1.4723611828e-06 +UniRef50_P0ABI1 ATP dependent Clp protease ATP binding subunit ClpA 0.00302631730226 0.0110599480006 0.00803363069834 +UniRef50_UPI000347EC3A cell division protein FtsW 1.03774201338e-05 6.71910728558e-06 -3.65831284822e-06 +UniRef50_I0C1D1 0.0152956111508 0.00245054159883 -0.012845069552 +UniRef50_Q5F4X8 Lipid A export ATP binding permease protein MsbA 6.3301171976e-05 0.00411609759999 0.00405279642801 +UniRef50_V5VD21 0.000291120299886 0.00445790363574 0.00416678333585 +UniRef50_A6LW40 NUDIX hydrolase 0.000215296191359 0.0011734438617 0.000958147670341 +UniRef50_A0A011R4M2 N formylmethionyl tRNA deformylase 1.25143292356e-05 0.00130466144873 0.00129214711949 +UniRef50_Q31N84 3 oxoacyl [acyl carrier protein] synthase 3 1.81201588023e-05 2.34286401925e-05 5.3084813902e-06 +UniRef50_F9YZY2 0.000119457591412 0.00565632369959 0.00553686610818 +UniRef50_B6B233 PucC protein 0.000147214940286 3.79736872511e-05 -0.000109241253035 +UniRef50_A6LYW0 Lysine exporter protein 0.000643443565143 0.000528925442146 -0.000114518122997 +UniRef50_P77733 Probable formate transporter 2 0.00296658010794 0.00023688505764 -0.0027296950503 +UniRef50_K0C8T6 Oxidoreductase, short chain dehydrogenase reductase family 0.000348954021977 0.00778331598507 0.00743436196309 +UniRef50_UPI0003B430E0 preprotein translocase subunit SecA 8.92039028064e-06 1.93822003087e-05 1.04618100281e-05 +UniRef50_Q9RR67 Thymidylate synthase 0.000196266545327 0.0399768523249 0.0397805857796 +UniRef50_X0TUW0 Marine sediment metagenome DNA, contig 9.00394108045e-05 5.56900715447e-05 -3.43493392598e-05 +UniRef50_A6LRF1 Glycosyl hydrolase, BNR repeat containing protein 0.000398289525115 0.000352146686695 -4.614283842e-05 +UniRef50_Q8XU08 2.09185418909e-05 5.74538965356e-06 -1.51731522373e-05 +UniRef50_A5UJG2 Coenzyme F420 reducing hydrogenase, beta subunit 0.00230374770485 0.00189654404796 -0.00040720365689 +UniRef50_A3CX71 Glycerol 1 phosphate dehydrogenase [NAD+] 0.00192676720314 0.000366887969667 -0.00155987923347 +UniRef50_Q5HM56 Heme degrading monooxygenase 0.000703390041336 0.000567916740756 -0.00013547330058 +UniRef50_D9UMJ7 Secreted protein 4.08137245055e-05 1.15734616825e-05 -2.9240262823e-05 +UniRef50_UPI0001FFDC99 DEAD DEAH box helicase domain protein, partial 3.39560496635e-05 0.000162512728265 0.000128556678601 +UniRef50_A6LWX4 Efflux transporter, RND family, MFP subunit 0.000443601321544 0.000367539916684 -7.606140486e-05 +UniRef50_Z6ADI2 5.84187962169e-05 5.87645765409e-05 3.45780324e-07 +UniRef50_A9M186 Imidazoleglycerol phosphate dehydratase 0.000186819427941 0.00237721283452 0.00219039340658 +UniRef50_Q31TM6 5.88070452071e-06 1.25539138289e-05 6.67320930819e-06 +UniRef50_UPI00035E404B ABC transporter 5.99677005843e-06 2.00761006079e-05 1.40793305495e-05 +UniRef50_G1Y0V7 0.000152418055466 4.84870768046e-05 -0.000103930978661 +UniRef50_G8R9K4 0.00939670421942 0.00196907053381 -0.00742763368561 +UniRef50_M7MVN0 5 formyltetrahydrofolate cyclo ligase 0.0045721643028 0.00995763014749 0.00538546584469 +UniRef50_A1KSK9 Sec independent protein translocase protein TatB 0.000165564030199 0.00153817002584 0.00137260599564 +UniRef50_L1KLU3 0.000207433296092 9.79651469675e-05 -0.000109468149124 +UniRef50_UPI00042C20EE PREDICTED 9.29036540359e-05 8.54121402629e-05 -7.491513773e-06 +UniRef50_A5UP53 TPR repeat protein 0.00138543198662 0.00107331649067 -0.00031211549595 +UniRef50_UPI000474AE63 MerR family transcriptional regulator 1.05167551913e-05 8.72318063174e-06 -1.79357455956e-06 +UniRef50_A6QHZ9 Lantibiotic ABC transporter protein 0.000431172703782 0.00031361066038 -0.000117562043402 +UniRef50_Q3IV58 Site specific recombinase and resolvase superfamily 0.00724804969167 0.00134246987694 -0.00590557981473 +UniRef50_S1FXN2 1.51986187015e-05 0.000100072425741 8.48738070395e-05 +UniRef50_Q2CBI1 ISxac3 transposase 0.000656962133133 0.000650449797428 -6.512335705e-06 +UniRef50_UPI000311BF3E hypothetical protein 3.9527842787e-05 4.60580464467e-05 6.5302036597e-06 +UniRef50_G7ZQ52 Ammonium transporter family protein 0.0222808854984 0.00500572796551 -0.0172751575329 +UniRef50_A5IR30 0.0111682032066 0.00165544625296 -0.00951275695364 +UniRef50_UPI000381D79B hypothetical protein 1.4144977386e-05 1.93099320289e-05 5.1649546429e-06 +UniRef50_F0M765 GAF domain containing protein 4.4005151332e-05 4.02309753996e-05 -3.7741759324e-06 +UniRef50_Q8XLH3 3 oxoacyl [acyl carrier protein] synthase 3 0.000217979243354 4.56963730996e-05 -0.000172282870254 +UniRef50_UPI0001FFE008 error prone DNA polymerase 1.52768092279e-05 5.78849924198e-05 4.26081831919e-05 +UniRef50_Q9RYV3 Oxidoreductase, putative 0.000227594145271 0.0295205947652 0.0292930006199 +UniRef50_A7INL3 Integration host factor subunit alpha 0.00104757946018 0.00204141256406 0.00099383310388 +UniRef50_A5IR39 0.000536709936758 0.000787511213846 0.000250801277088 +UniRef50_B9KKS1 Non homologous end joining protein Ku 0.000481303355044 0.000221211015129 -0.000260092339915 +UniRef50_D8J4V6 1.05481019223e-05 3.76767781686e-05 2.71286762463e-05 +UniRef50_Q8H8U0 Cardiolipin synthase, mitochondrial 6.63792098858e-06 2.69286954149e-05 2.02907744263e-05 +UniRef50_H0ABG8 9.34537072161e-05 4.9973405404e-05 -4.34803018121e-05 +UniRef50_W7QLC2 0.000318272232416 0.000328215428467 9.943196051e-06 +UniRef50_B9R471 Transporter, major facilitator family 2.98026445605e-05 1.52720242345e-05 -1.4530620326e-05 +UniRef50_L3RWN4 Transcriptional regulator 0.000353070979283 0.000275996920751 -7.7074058532e-05 +UniRef50_P42912 Putative galactosamine 6 phosphate isomerase 0.00245010903402 0.00193981339456 -0.00051029563946 +UniRef50_Q97J66 Protein CA_C1420 0.000177657439292 0.00153125434169 0.0013535969024 +UniRef50_UPI0001BF5ACC hypothetical protein SMAC_10820, partial 0.00101409996284 9.31851078381e-05 -0.000920914855002 +UniRef50_Z6NK79 ABC transporter, permease 0.0107142757125 0.0012531601458 -0.0094611155667 +UniRef50_R9PQX7 1.89631882126e-05 2.80422996974e-05 9.0791114848e-06 +UniRef50_Q9F7B2 Low molecular weight protein tyrosine phosphatase wzb 0.00132208368756 0.00210014848429 0.00077806479673 +UniRef50_I4W6D9 4.26788677261e-05 5.72908213811e-05 1.4611953655e-05 +UniRef50_Q9X0C4 Putative UDP N acetylglucosamine 2 epimerase 8.09625970267e-06 5.91659604223e-05 5.10697007196e-05 +UniRef50_B9E6S4 Exogenous DNA binding protein comGC homolog 0.00207900680528 0.0010361989656 -0.00104280783968 +UniRef50_UPI00037DFA06 hypothetical protein 2.66427995971e-05 2.6532199958e-05 -1.105996391e-07 +UniRef50_C9QWV1 Autotransporter family porin 0.000496110121037 0.000224893517213 -0.000271216603824 +UniRef50_G0DVD7 CBS domain protein 0.000416324534108 0.00631040328758 0.00589407875347 +UniRef50_F8J6S6 Dihydrodipicolinate synthase 0.000471378691141 0.000342727317444 -0.000128651373697 +UniRef50_UPI0003782A09 hypothetical protein 1.83687879783e-05 8.65825767569e-06 -9.71053030261e-06 +UniRef50_E0SUZ8 0.00251747209223 0.00182930011172 -0.00068817198051 +UniRef50_D8TJ66 1.99097777103e-06 4.4221469465e-06 2.43116917547e-06 +UniRef50_P00892 Acetolactate synthase isozyme 2 large subunit 0.00443890317642 0.000687836501052 -0.00375106667537 +UniRef50_UPI0003B4985D lipase 1.09039583792e-05 0.000140566138454 0.000129662180075 +UniRef50_F4CKZ8 PE PGRS family protein 0.000155872867906 0.000134448460885 -2.1424407021e-05 +UniRef50_A4WYR6 Alcohol dehydrogenase, zinc binding domain protein 0.00029224246766 0.00036878919223 7.654672457e-05 +UniRef50_I3TIJ2 Ornithine cyclodeaminase mu crystallin 0.00391273889278 0.000689406569852 -0.00322333232293 +UniRef50_UPI00047B0B98 hypothetical protein 6.84476966812e-06 1.17697263002e-05 4.92495663208e-06 +UniRef50_K9BMT1 Alkyl hydroperoxide reductase subunit F domain protein 4.02806911721e-05 0.000388964060348 0.000348683369176 +UniRef50_R6LGJ5 Methionine synthase vitamin B12 independent 0.000105639735687 0.000173715708945 6.8075973258e-05 +UniRef50_A1B479 NADH quinone oxidoreductase subunit N 0.00934928840233 0.001790344957 -0.00755894344533 +UniRef50_UPI0003B7991F hypothetical protein 8.12225280766e-05 0.000343424025975 0.000262201497898 +UniRef50_M9XAR7 2 nitropropane dioxygenase 0.000112013646546 0.0132666431113 0.0131546294648 +UniRef50_UPI0003B68CBF isomerase 8.64166534329e-06 2.42152662458e-05 1.55736009025e-05 +UniRef50_V9WST0 Phage terminase like protein, large subunit 0.0112989734633 0.00397970376628 -0.00731926969702 +UniRef50_A6M1B5 0.000999154317139 0.000994116719189 -5.03759795e-06 +UniRef50_A6M1B4 0.000367658467971 0.000669289904245 0.000301631436274 +UniRef50_UPI000371C67C hypothetical protein 3.74374854311e-05 4.50404923928e-05 7.6030069617e-06 +UniRef50_UPI000412F481 hypothetical protein 1.78940174216e-05 7.25445671181e-06 -1.06395607098e-05 +UniRef50_B2VDT9 0.000517104094322 0.0020526704875 0.00153556639318 +UniRef50_UPI0001C39674 dehydrogenase 2.3038297867e-05 4.29774687056e-05 1.99391708386e-05 +UniRef50_P57041 Major outer membrane protein P.IA 0.000464408840608 0.00247659906486 0.00201219022425 +UniRef50_R9SN55 Phosphopantothenate cysteine ligase CoaB 0.00263989396921 0.000632917699228 -0.00200697626998 +UniRef50_J9UQD4 0.00161042853938 0.00141721158092 -0.00019321695846 +UniRef50_UPI000467BC4C type I secretion protein 2.88135520354e-06 8.53324359379e-06 5.65188839025e-06 +UniRef50_Q5LSU1 Lipid A disaccharide synthase 0.000151398123869 0.000466698919528 0.000315300795659 +UniRef50_Q9RRX9 Probable L asparaginase 1.74774173576e-05 0.00443193311577 0.00441445569841 +UniRef50_Q0ARD7 Pyridoxine pyridoxamine 5 phosphate oxidase 0.00184372989813 0.000777267929574 -0.00106646196856 +UniRef50_W0YV34 0.000272293666138 0.00170375022228 0.00143145655614 +UniRef50_Q2GCI6 Uridylate kinase 8.24467954184e-06 1.1261468821e-05 3.01678927916e-06 +UniRef50_B9KJE9 Flagellar hook associated 2 domain protein 0.00474307812168 0.00129889310699 -0.00344418501469 +UniRef50_S5CLC3 0.000300643564515 0.00640348392577 0.00610284036126 +UniRef50_UPI000381DE4F hypothetical protein 5.59717388927e-05 0.000278542166094 0.000222570427201 +UniRef50_Q9RSN5 Ferripyochelin binding protein 4.4387673018e-05 0.00791450170799 0.00787011403497 +UniRef50_Q1YEW0 0.00108999629045 0.00317769596398 0.00208769967353 +UniRef50_A8J5U5 Predicted protein 7.53136887589e-05 9.72072263005e-05 2.18935375416e-05 +UniRef50_U5MSZ1 0.00018874299443 0.000756904160379 0.000568161165949 +UniRef50_UPI000248490E Resolvase 2.51124537924e-05 5.80101009795e-06 -1.93114436944e-05 +UniRef50_E0Y0D2 Nuclease subunit of the excinuclease complex 0.000361232877188 7.72536841864e-05 -0.000283979193002 +UniRef50_Q2NF24 Predicted thioesterase 0.000900868386582 0.00174976876848 0.000848900381898 +UniRef50_B1JX98 Serine tRNA ligase 0.00429866099047 0.0126044756765 0.00830581468603 +UniRef50_UPI00047A8CC8 hypothetical protein 0.000305089044288 3.92740496053e-05 -0.000265814994683 +UniRef50_A6UY58 0.000256832733503 0.000933243904903 0.0006764111714 +UniRef50_G0JNN6 Integral membrane protein MviN 4.03294040779e-05 3.42751020719e-05 -6.054302006e-06 +UniRef50_Q8ZH57 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.0021139604217 0.000784600436967 -0.00132935998473 +UniRef50_I0GCY5 0.000695993328778 0.00024920390399 -0.000446789424788 +UniRef50_W1MH71 4.3951530342e-06 0.00037932076754 0.000374925614506 +UniRef50_UPI00035C5743 hypothetical protein 2.71462072187e-06 1.14907084665e-05 8.77608774463e-06 +UniRef50_A3UG89 1.27368875872e-06 2.49056560031e-06 1.21687684159e-06 +UniRef50_B6J655 Methionyl tRNA formyltransferase 6.32262001443e-06 5.47331691219e-05 4.84105491075e-05 +UniRef50_F5XDX0 Diaminopimelate epimerase 0.000138442294196 0.00672061300365 0.00658217070945 +UniRef50_UPI0003B3BC3C acetoacetate metabolism regulatory protein AtoC 5.05151450558e-06 9.50665823088e-06 4.4551437253e-06 +UniRef50_UPI0002E4BD4A hypothetical protein 4.21855300906e-06 9.37878150949e-05 8.95692620858e-05 +UniRef50_A5UJF5 0.00370809153955 0.000460233826278 -0.00324785771327 +UniRef50_A5UJF0 0.00309672956657 0.000533718096869 -0.0025630114697 +UniRef50_D2P269 4.0240429698e-05 0.00115831433797 0.00111807390827 +UniRef50_W4UBC8 0.000343108868539 0.00459337104676 0.00425026217822 +UniRef50_A5IPS9 Phage envelope protein like protein 0.00298810917937 0.00160236626432 -0.00138574291505 +UniRef50_UPI000234E1DF PREDICTED 5.35348652987e-05 2.87153219976e-05 -2.48195433011e-05 +UniRef50_N5MF41 0.00125023751016 0.00045699401107 -0.00079324349909 +UniRef50_Q6GIN8 Protein translocase subunit SecA 1 0.0263615777707 0.00668538907199 -0.0196761886987 +UniRef50_UPI00037BBD41 hypothetical protein 1.07820983598e-05 6.3752980063e-06 -4.4068003535e-06 +UniRef50_P56690 Isoleucine tRNA ligase 3.6271550682e-06 7.46995573177e-06 3.84280066357e-06 +UniRef50_B7I7J4 Gp12 6.43697788028e-05 1.67973178235e-05 -4.75724609793e-05 +UniRef50_A4XRT9 0.000209714438257 0.000524235426359 0.000314520988102 +UniRef50_Q5KYA3 Glutamate 5 kinase 4.50948462023e-06 1.30324641959e-05 8.52297957567e-06 +UniRef50_D2ZQE3 Topoisomerase DNA binding C4 zinc finger domain protein 0.00312598734959 0.00105311394093 -0.00207287340866 +UniRef50_UPI00047AE2E4 hypothetical protein 1.55301952936e-05 2.41081799138e-05 8.5779846202e-06 +UniRef50_Q9RSF1 0.000532889630565 0.0426798148613 0.0421469252307 +UniRef50_R7E1V4 2.72131888346e-05 8.5021082059e-06 -1.87110806287e-05 +UniRef50_Q650K4 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.000146570997778 0.00848172218468 0.0083351511869 +UniRef50_O23404 Pyruvate, phosphate dikinase 1, chloroplastic 5.3450631818e-06 1.51984399466e-05 9.8533767648e-06 +UniRef50_UPI000262D9D9 ABC transporter ATP binding protein, partial 0.00232173908504 0.00024231643939 -0.00207942264565 +UniRef50_A6LZA1 Transcriptional regulator like protein 0.000177262648794 0.00163319366473 0.00145593101594 +UniRef50_C6AUH7 Acriflavin resistance protein 0.00606721395648 0.0012301847637 -0.00483702919278 +UniRef50_S9R213 TRAP type mannitol chloroaromatic compound transport system, large permease component 4.27747540973e-05 0.000105814169692 6.30394155947e-05 +UniRef50_A8IC01 Aminotransferase 0.000940435703163 0.000151186026547 -0.000789249676616 +UniRef50_R7II06 Oligopeptide transport ATP binding protein OppD 0.000131375634168 0.00305765515478 0.00292627952061 +UniRef50_C5N1T5 0.00998338770953 0.00598672507348 -0.00399666263605 +UniRef50_C5N1T1 0.00930784972031 0.00121973853774 -0.00808811118257 +UniRef50_Q6A6S6 ABC transporter associated permease 0.000182825274275 0.00744661276013 0.00726378748586 +UniRef50_A0A023S256 LysR family transcriptional regulator 0.00025844995223 0.0121824555466 0.0119240055944 +UniRef50_Q6FFA8 Uroporphyrinogen III synthase (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing]) 0.000223805922247 0.00710997283463 0.00688616691238 +UniRef50_Q9R9D5 Lipopolysaccharide core heptosyltransferase RfaQ 0.00323524453727 0.000331661323203 -0.00290358321407 +UniRef50_R0DKH2 Binding protein dependent transport systems inner membrane component 1.86320994153e-05 4.99971063768e-05 3.13650069615e-05 +UniRef50_UPI00036FA71C hypothetical protein 5.92837316449e-06 9.27582841116e-06 3.34745524667e-06 +UniRef50_UPI00037E9002 hypothetical protein 0.0423848837478 0.000608194912561 -0.0417766888352 +UniRef50_A0A023B3E8 1.70853790725e-06 4.41606052237e-07 -1.26693185501e-06 +UniRef50_I0C5P0 CobB CobQ like glutamine amidotransferase domain protein 0.0215385728682 0.00442743007176 -0.0171111427964 +UniRef50_A8L8V5 Cobyrinic acid ac diamide synthase 9.11023536428e-06 1.45874398602e-05 5.47720449592e-06 +UniRef50_P32712 Formate dependent nitrite reductase complex subunit NrfG 0.0036331233913 0.000298299702217 -0.00333482368908 +UniRef50_UPI0003B66B13 hypothetical protein 4.08610093254e-05 1.95525529941e-05 -2.13084563313e-05 +UniRef50_UPI0004672483 hypothetical protein 0.00042384777163 0.000632821511128 0.000208973739498 +UniRef50_Q5F629 NADH quinone oxidoreductase subunit N 7.86429143391e-05 0.00106878018414 0.000990137269801 +UniRef50_W4UKK8 DNA binding protein 0.000187383008162 0.00539007325924 0.00520269025108 +UniRef50_Q87LZ7 Phosphoglucosamine mutase 4.17461772813e-06 8.10450830413e-05 7.68704653132e-05 +UniRef50_Q8XMU3 Diaminopimelate decarboxylase 0.000207257297833 0.00150093142864 0.00129367413081 +UniRef50_Q58197 0.00446884734839 0.00103472934489 -0.0034341180035 +UniRef50_UPI00037BD840 hypothetical protein 7.96841393742e-05 2.96158090307e-05 -5.00683303435e-05 +UniRef50_Q1IS93 DNA directed RNA polymerase subunit alpha 0.0128356428086 0.00440918622334 -0.00842645658526 +UniRef50_UPI00026CC0A8 cell wall hydrolase 2.45775202057e-05 1.78947830185e-05 -6.6827371872e-06 +UniRef50_UPI000377CCD2 hypothetical protein 1.95951013886e-06 6.05348479528e-06 4.09397465642e-06 +UniRef50_UPI000380B7CD hypothetical protein 7.46249120938e-06 3.56681407973e-05 2.82056495879e-05 +UniRef50_UPI0003450375 hypothetical protein 7.93213199202e-06 4.89403613806e-06 -3.03809585396e-06 +UniRef50_B9KW49 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.00308357767643 0.000243059016624 -0.00284051865981 +UniRef50_Q1G991 Orotidine 5 phosphate decarboxylase 1.647912984e-05 1.85393006001e-05 2.0601707601e-06 +UniRef50_A0LDR9 NADH quinone oxidoreductase subunit I 3.81039098334e-05 1.57425800357e-05 -2.23613297977e-05 +UniRef50_F1BCI2 0.000281032373911 0.000409091265907 0.000128058891996 +UniRef50_Q9RXP2 0.00017184491147 0.0640882879768 0.0639164430653 +UniRef50_Q9RXP3 7.43570562389e-05 0.00589429468746 0.00581993763122 +UniRef50_M5JML7 Inner membrane translocator 6.21868805603e-05 0.000450152708175 0.000387965827615 +UniRef50_W9V4Y7 4.37646018133e-05 3.87564821193e-05 -5.008119694e-06 +UniRef50_Y9M1E8 Nitrate reductase, alpha subunit 0.013263697848 0.00231696803401 -0.010946729814 +UniRef50_A3K427 Possible phenol degradation enzyme 0.00615001607609 0.00139959996445 -0.00475041611164 +UniRef50_UPI00017453E0 probable helicase 5.51662841208e-06 0.000627575390458 0.000622058762046 +UniRef50_UPI00046FF946 hypothetical protein 0.000148753252773 8.41800360771e-05 -6.45732166959e-05 +UniRef50_B2JWI7 Major facilitator superfamily MFS_1 9.4766357036e-05 0.00489354478327 0.00479877842623 +UniRef50_E3NTU6 0.000438069876142 0.000420800787856 -1.7269088286e-05 +UniRef50_UPI00046C1753 PREDICTED 1.4031919668e-05 6.07647541518e-05 4.67328344838e-05 +UniRef50_G2AN26 4 alpha L fucosyltransferase family protein 0.000833797486433 0.000318114942752 -0.000515682543681 +UniRef50_P24169 Ornithine decarboxylase, inducible 0.00417644607316 0.000819058828315 -0.00335738724485 +UniRef50_G4KST8 Aminopeptidase 0.000261064235557 0.000147045662343 -0.000114018573214 +UniRef50_Q21VQ3 Transposase, IS4 family 7.88169233005e-05 1.65997815307e-05 -6.22171417698e-05 +UniRef50_X4YVT9 Nitronate monooxygenase family protein 0.00743873686032 0.00801951731881 0.00058078045849 +UniRef50_A5F974 Pantothenate synthetase 0.00268498612858 0.00116905671335 -0.00151592941523 +UniRef50_UPI0003C1ACBA PREDICTED 1.42532056124e-05 1.9025709132e-05 4.7725035196e-06 +UniRef50_B7UFR8 Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD 0.00347182694892 0.000852848478275 -0.00261897847065 +UniRef50_UPI0002555659 inner membrane translocator 1.7451607157e-05 2.09116261108e-05 3.4600189538e-06 +UniRef50_P76017 0.00246487907319 0.000315089770205 -0.00214978930298 +UniRef50_UPI000380A70F hypothetical protein 0.000171168184271 5.88902687112e-05 -0.00011227791556 +UniRef50_UPI00035FC337 general secretion pathway protein I, partial 0.00067380566763 9.17955376606e-05 -0.000582010129969 +UniRef50_P0DD78 DNA repair protein RadA homolog 9.85603103999e-05 0.00308994113823 0.00299138082783 +UniRef50_P9WPR0 7.9806762976e-05 0.00738719073985 0.00730738397687 +UniRef50_A7WYY2 Ribulokinase 0.0220242009424 0.00394761243042 -0.018076588512 +UniRef50_D3ZPT0 Protein RGD1566084 1.98648664883e-05 1.51384834852e-05 -4.7263830031e-06 +UniRef50_S1S766 0.000115374790714 2.83473428829e-05 -8.70274478311e-05 +UniRef50_Q5HFZ9 Glucose specific phosphotransferase enzyme IIA component 0.0237000252558 0.000741680068775 -0.022958345187 +UniRef50_G4L4Q8 Cation transporting ATPase 0.00947563118184 0.00373889441871 -0.00573673676313 +UniRef50_D5V8P7 23S ribosomal RNA G745 methyltransferase 0.000297092631875 0.00807238626402 0.00777529363214 +UniRef50_F3U2V4 Heat shock protein Hsp20 0.0100007569525 0.00894115872954 -0.00105959822296 +UniRef50_I7EN44 Acetylornithine deacetylase ArgE 0.0014200836406 0.000525503072435 -0.000894580568165 +UniRef50_Q0A8Z1 Ribonuclease 3 2.30263064621e-05 5.41485144986e-05 3.11222080365e-05 +UniRef50_O59469 3 hydroxy 3 methylglutaryl coenzyme A reductase 0.0029299139847 0.000967870203856 -0.00196204378084 +UniRef50_B1Y4X6 Mg2 transporter protein CorA family protein 0.000839843190883 0.000470811396981 -0.000369031793902 +UniRef50_J8V3X8 0.000162737238304 0.000920726248106 0.000757989009802 +UniRef50_F2QCR4 ABC transporter, ATP binding permease protein 0.00414869679308 0.0039511032403 -0.00019759355278 +UniRef50_UPI0003799B60 hypothetical protein 4.95041079867e-06 1.1217148564e-05 6.26673776533e-06 +UniRef50_D7T3T0 5.91356721652e-06 6.9181370599e-06 1.00456984338e-06 +UniRef50_UPI00037A9531 hypothetical protein, partial 5.48281957028e-06 7.89531889862e-06 2.41249932834e-06 +UniRef50_Q5VJ09 3.95221564212e-05 8.85744192428e-06 -3.06647144969e-05 +UniRef50_A4WGI4 Transcriptional regulator, MarR family 0.00134850994534 0.000664423667769 -0.000684086277571 +UniRef50_R9SJH6 Energy converting hydrogenase A subunit J EhaJ 0.00214704736384 0.000211443941661 -0.00193560342218 +UniRef50_UPI0001BF5D71 hypothetical protein SMAC_11478, partial 0.00100550959349 0.000123354759653 -0.000882154833837 +UniRef50_G7UA16 UDP glucose 4 epimerase 0.000136935667056 0.00461290382191 0.00447596815485 +UniRef50_UPI00046386D9 aldehyde activating protein 0.000259727270574 8.96305328935e-05 -0.000170096737681 +UniRef50_A4ACP7 Arabinose efflux permease 6.87495341457e-05 1.64830945294e-05 -5.22664396163e-05 +UniRef50_T9BKP2 0.00196144680482 0.00113549836751 -0.00082594843731 +UniRef50_T1ZVL8 TetR AcrR family transcriptional regulator 0.00288938029336 0.00216098845638 -0.00072839183698 +UniRef50_B2I6G9 Beta hexosaminidase 4.71467724987e-06 1.14975335073e-05 6.78285625743e-06 +UniRef50_P19940 RNA polymerase sigma G factor 0.000146312398781 0.00182856844879 0.00168225605001 +UniRef50_M9RAR4 3.25873353263e-05 1.11332846147e-05 -2.14540507116e-05 +UniRef50_D7CI61 Two component system response regulator 0.00182774032426 0.00509338498578 0.00326564466152 +UniRef50_P39336 0.00233050519877 0.00045698479377 -0.001873520405 +UniRef50_UPI000373730F hypothetical protein 1.68660482147e-05 7.17189443581e-06 -9.69415377889e-06 +UniRef50_M9VFS5 0.000136276530269 0.00479390722486 0.00465763069459 +UniRef50_UPI000479ED1E 50S ribosomal protein L4 1.49263388996e-05 4.48869899116e-05 2.9960651012e-05 +UniRef50_E6U991 Cys Met metabolism pyridoxal phosphate dependent protein 0.000217848032856 0.00162473756342 0.00140688953056 +UniRef50_E3QJF9 THO complex subunit 2 9.53890596936e-06 2.09871419826e-05 1.14482360132e-05 +UniRef50_Q2JDK2 Elongation factor 4 0.0275981586261 0.068332859228 0.0407347006019 +UniRef50_UPI000262AF83 anhydrase 2.64089175491e-05 8.42254449895e-06 -1.79863730502e-05 +UniRef50_P42403 Aryl phospho beta D glucosidase BglC 0.00121746087969 0.00680641567764 0.00558895479795 +UniRef50_B0JXE8 N acetyl gamma glutamyl phosphate reductase 1.17499261781e-05 2.5407562425e-05 1.36576362469e-05 +UniRef50_B9DV71 ABC transporter ATP binding protein 0.00444841646062 0.000952587404094 -0.00349582905653 +UniRef50_UPI000469FAB8 MULTISPECIES 2.77093944878e-05 2.87288784341e-05 1.0194839463e-06 +UniRef50_UPI00036048A6 hypothetical protein 9.49489645015e-05 5.99640612838e-05 -3.49849032177e-05 +UniRef50_R4Q5Z5 Phosphoribosylglycinamide formyltransferase 0.0102107997844 0.00575428048635 -0.00445651929805 +UniRef50_V5PK16 Response regulator receiver protein ExsF 2.43007156907e-05 4.97213616151e-05 2.54206459244e-05 +UniRef50_UPI000361FBB1 hypothetical protein 7.79901561225e-06 5.82155248329e-05 5.04165092206e-05 +UniRef50_UPI00047CDCB7 ABC transporter permease 3.78768270404e-05 9.13657493146e-06 -2.87402521089e-05 +UniRef50_UPI00041FB107 symporter 8.06112057043e-05 0.000210052302028 0.000129441096324 +UniRef50_G7LZ27 Transcriptional regulator, TetR family 0.00121454345351 0.00134412873477 0.00012958528126 +UniRef50_A5F649 Glutamate tRNA ligase 0.00224585750647 0.000462977585948 -0.00178287992052 +UniRef50_B1MB87 Urease accessory protein UreG 0.0252455685787 0.0464607963299 0.0212152277512 +UniRef50_A5UN12 Predicted acyltransferase 0.000560904700247 0.000244063392719 -0.000316841307528 +UniRef50_Q6GFH6 Low molecular weight protein tyrosine phosphatase PtpA 0.0602798153093 0.000937329667736 -0.0593424856416 +UniRef50_P20580 Anthranilate synthase component 1 0.00107137371998 0.000478253038084 -0.000593120681896 +UniRef50_G3TAD7 0.000386599249733 3.60085752092e-05 -0.000350590674524 +UniRef50_K0DH79 Alpha beta hydrolase fold protein 0.000818432918586 0.000716026379468 -0.000102406539118 +UniRef50_B9EBX9 DNA damage repair protein homolog 0.0167956175137 0.00732120057833 -0.00947441693537 +UniRef50_U6IMY1 Growth factor receptor bound protein 1.15911126283e-05 7.07463750768e-06 -4.51647512062e-06 +UniRef50_D4KGU1 Transcriptional regulator, LacI family 0.00111127647533 0.00124935010227 0.00013807362694 +UniRef50_Q2YXL5 ATP dependent protease subunit HslV 0.032602442122 0.0130957267463 -0.0195067153757 +UniRef50_Q5LFB0 0.000146312398781 0.00403402987726 0.00388771747848 +UniRef50_UPI000248515B hypothetical protein 5.26650162827e-06 2.52907117708e-05 2.00242101425e-05 +UniRef50_E8RRB9 Fe S metabolism associated SufE 0.000178665097311 2.63449781625e-05 -0.000152320119148 +UniRef50_Q54J34 Adenylosuccinate lyase 2.71477811088e-06 0.00362350523105 0.00362079045294 +UniRef50_Q6GC63 Exotoxin 0.0139026155469 0.00306395030568 -0.0108386652412 +UniRef50_Q8ZJR1 UPF0761 membrane protein YPO0028 y3801 YP_0029 0.00197095925607 0.000247472099328 -0.00172348715674 +UniRef50_UPI000372EDA6 hypothetical protein 5.05846124056e-06 4.56076928064e-05 4.05492315658e-05 +UniRef50_A5UN19 Formate dehydrogenase accessory protein FdhD, FdhD 0.00442383343158 0.000367614155849 -0.00405621927573 +UniRef50_Q89ZL8 Alpha N acetylglucosaminidase 3.65321426232e-06 0.00409620997556 0.0040925567613 +UniRef50_W8RNU6 PhbF 0.00037519764091 4.47892959973e-05 -0.000330408344913 +UniRef50_P57099 Glycerate kinase 0.00585627605924 0.0102439860954 0.00438771003616 +UniRef50_X2HW61 Iron ABC transporter substrate binding protein 0.000112347020496 0.0121133877849 0.0120010407644 +UniRef50_UPI00047EF55F amidohydrolase 1.39886147811e-05 2.37297030521e-05 9.741088271e-06 +UniRef50_Q5HM69 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0261802491718 0.013839224818 -0.0123410243538 +UniRef50_UPI0002886FB4 histidine ammonia lyase 0.000114158806351 2.1406582573e-05 -9.2752223778e-05 +UniRef50_B0V4X0 Type IV pilus biogenesis protein 0.000122028536353 0.00750919244064 0.00738716390429 +UniRef50_D3QJ04 DNA repair exonuclease family protein YhaO 0.0195842396823 0.00282669271731 -0.016757546965 +UniRef50_Q1GKI8 Peptidase M16 like protein 0.00419620753013 0.000749823240174 -0.00344638428996 +UniRef50_A6LXP5 NADH quinone oxidoreductase subunit N 0.000108369183398 0.00178184843867 0.00167347925527 +UniRef50_E0NA78 0.000299988912829 0.000510357041009 0.00021036812818 +UniRef50_E2XU95 Transcription factor jumonji 0.000443949146643 0.000346074588866 -9.7874557777e-05 +UniRef50_V9WFJ2 0.0463255626377 0.00443972613021 -0.0418858365075 +UniRef50_UPI0003958BDE endonuclease 7.78154268047e-07 0.000327438093957 0.000326659939689 +UniRef50_Q5GWI0 Phenol hydroxylase 0.000147065317888 2.17133020999e-05 -0.000125352015788 +UniRef50_Q49YF5 OsmC like protein 0.00707660991824 0.00199538314321 -0.00508122677503 +UniRef50_A4T2T4 Peptide deformylase 9.64759829975e-06 5.32643944902e-05 4.36167961904e-05 +UniRef50_U5NRQ9 0.00109248292142 0.00448469382986 0.00339221090844 +UniRef50_G2JHQ9 Histone acetyltransferase HPA2 0.000231586496233 0.00183692709911 0.00160534060288 +UniRef50_UPI00036803C3 hypothetical protein 4.07414486826e-06 0.000190993644128 0.00018691949926 +UniRef50_Q3IV36 0.0163512920163 0.000575947224952 -0.0157753447913 +UniRef50_R9SMB0 Dihydropteroate synthase related protein 0.00275224760895 0.00219908147813 -0.00055316613082 +UniRef50_Q8R7B8 N acetyl gamma glutamyl phosphate reductase 5.98860314529e-06 2.91103422057e-05 2.31217390604e-05 +UniRef50_UPI0003721DDA hypothetical protein 2.85847882784e-06 5.64687380804e-06 2.7883949802e-06 +UniRef50_P0AFD8 NADH quinone oxidoreductase subunit I 0.0153623825534 0.00662627301432 -0.00873610953908 +UniRef50_F8DZR5 Pyruvate 0.000191850396126 0.00862315452881 0.00843130413268 +UniRef50_K7RJP7 Molybdenum cofactor synthesis domain containing protein 0.00290972546522 0.0100150474729 0.00710532200768 +UniRef50_R9ZCH5 NADH dehydrogenase 2.30268795425e-05 0.000199059997274 0.000176033117732 +UniRef50_B1KCA5 Transcriptional regulator, LysR family 0.000610688476316 0.00583035794767 0.00521966947135 +UniRef50_UPI00039CA1F9 hypothetical protein 5.62031342102e-06 0.000105329796542 9.9709483121e-05 +UniRef50_C1CY21 0.000151393573381 0.00257986490857 0.00242847133519 +UniRef50_A1AZ65 0.000148899910315 3.28399845965e-05 -0.000116059925718 +UniRef50_H8FQH1 0.000466864224341 0.000131805538018 -0.000335058686323 +UniRef50_X2HD61 Phosphopantothenoylcysteine decarboxylase Phosphopantothenoylcysteine synthetase 0.000240620241729 0.0045521835064 0.00431156326467 +UniRef50_UPI0003503787 PREDICTED 6.6815079696e-05 0.000255008737831 0.000188193658135 +UniRef50_L0A294 1.68250939369e-05 0.00061020541397 0.000593380320033 +UniRef50_M4YWX8 Acetyl transferase GNAT family 0.0101882247088 0.0113517936388 0.00116356893 +UniRef50_UPI0003B796E5 hydrolase 1.00451697405e-05 5.33177551417e-06 -4.71339422633e-06 +UniRef50_R5QRF5 5.0122610437e-06 2.91026892623e-05 2.40904282186e-05 +UniRef50_E1ZM28 Expressed protein 1.93707655196e-05 0.000766271832032 0.000746901066512 +UniRef50_F8KP37 Phospholipase A1 0.00015344958896 0.0032847708167 0.00313132122774 +UniRef50_E4CH69 0.00036296729697 0.00339511860912 0.00303215131215 +UniRef50_B2TQB7 LicD family protein 0.000974408304798 0.00139840642983 0.000423998125032 +UniRef50_F2A4B5 0.000107138880474 5.06931692096e-06 -0.000102069563553 +UniRef50_B9TM50 0.000190576807068 0.000899441741714 0.000708864934646 +UniRef50_T1IZI3 5.16367131933e-06 1.68537003267e-06 -3.47830128666e-06 +UniRef50_Q8Y489 Lipoyl [GcvH] 6.42906118825e-06 0.00104936613748 0.00104293707629 +UniRef50_UPI00047DCDB5 hypothetical protein 8.70414937975e-06 1.1451826951e-05 2.74767757125e-06 +UniRef50_UPI0003668AD0 hypothetical protein 8.018520941e-05 0.000116964075422 3.6778866012e-05 +UniRef50_R7KQ82 ABC type antimicrobial peptide transport system ATPase component 0.000835092905202 0.00185230689413 0.00101721398893 +UniRef50_UPI00035D87E2 hypothetical protein, partial 0.000110036544522 6.94733390921e-05 -4.05632054299e-05 +UniRef50_Q08WK0 6.63170275248e-06 2.41908881056e-06 -4.21261394192e-06 +UniRef50_C6VMG4 Bifunctional protein 0.00599672343014 0.00396685622436 -0.00202986720578 +UniRef50_UPI0003800150 hypothetical protein 2.88067384887e-06 1.47620535935e-05 1.18813797446e-05 +UniRef50_A5UJI5 Type I restriction modification system methylase, subunit S 0.00165950697979 0.000302372053093 -0.0013571349267 +UniRef50_UPI0003C11576 PREDICTED 0.000153373935604 9.96009123698e-05 -5.37730232342e-05 +UniRef50_UPI00037C0DCF MULTISPECIES 6.18036895804e-05 9.63828935724e-05 3.4579203992e-05 +UniRef50_B5YFK5 Queuine tRNA ribosyltransferase 4.97834995228e-06 6.70574443087e-05 6.20790943564e-05 +UniRef50_Q5HKG6 Diacetyl reductase [ acetoin forming] 0.0118060912709 0.00326473860871 -0.00854135266219 +UniRef50_D4H9E3 0.000142447542961 0.00724002882446 0.0070975812815 +UniRef50_Q5HKY5 0.0126351677471 0.00154011986029 -0.0110950478868 +UniRef50_UPI00046A628C PAS sensor protein 0.000237981553299 7.59611350085e-05 -0.00016202041829 +UniRef50_A5UP86 0.000270922958506 0.000801764810481 0.000530841851975 +UniRef50_B9KX55 AcrB AcrD AcrF family protein 0.00196494400835 0.000353186430201 -0.00161175757815 +UniRef50_Q8XS05 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.04790631602e-06 3.59592143921e-06 -5.45198487681e-06 +UniRef50_E8QNX4 Type II adenine specific DNA methyltransferase 0.000137267632307 0.00312030774909 0.00298304011678 +UniRef50_K7E6V3 4.5867758379e-05 2.6470728522e-05 -1.9397029857e-05 +UniRef50_X0UE20 Marine sediment metagenome DNA, contig 2.11539601747e-05 3.95847297191e-05 1.84307695444e-05 +UniRef50_Q1GLI8 Inner membrane protein 0.0223609477621 0.000553718822241 -0.0218072289399 +UniRef50_E5QR95 0.00243688858955 0.00172957573403 -0.00070731285552 +UniRef50_O32037 tRNA threonylcarbamoyladenosine dehydratase 0.00872754530524 0.00147079260956 -0.00725675269568 +UniRef50_UPI0002375EA2 ABC transporter like protein 3.09280551505e-05 6.32267070895e-06 -2.46053844415e-05 +UniRef50_Q9ZK41 Putative glucose galactose transporter 9.42929197787e-05 0.00546910420443 0.00537481128465 +UniRef50_U6MX87 3.95121475878e-05 3.02166697193e-05 -9.2954778685e-06 +UniRef50_UPI000478606A phosphodiesterase 2.85727387897e-05 1.56260222767e-05 -1.2946716513e-05 +UniRef50_Q5HRH5 Hydrolase, haloacid dehalogenase like family 0.00806485397718 0.00364355297745 -0.00442130099973 +UniRef50_P19581 Capsule biosynthesis protein CapC 0.0260090826627 0.00526870309618 -0.0207403795665 +UniRef50_B3E8Z1 Glucose 1 phosphate adenylyltransferase 4.41758046959e-06 2.63465882349e-05 2.19290077653e-05 +UniRef50_H8H606 4.85408472581e-05 0.00343647983281 0.00338793898555 +UniRef50_Q5HKS4 IS1272 like transposase, degenerate 0.00560407353273 0.00327916601224 -0.00232490752049 +UniRef50_Q72PA7 Adenylosuccinate synthetase 4.8197237564e-06 9.02609937956e-06 4.20637562316e-06 +UniRef50_UPI0003B5996F coproporphyrinogen III oxidase 4.32175726922e-05 1.27271392252e-05 -3.0490433467e-05 +UniRef50_A6U4R9 PTS system glucoside specific EIICBA component 0.0405297631219 0.00692904236015 -0.0336007207617 +UniRef50_Q2FEB2 HTH type transcriptional regulator SarZ 0.00853992392461 0.000798153257284 -0.00774177066733 +UniRef50_T2FXM3 Sulfatase 0.00179932205866 0.000401791435631 -0.00139753062303 +UniRef50_UPI000372A769 hypothetical protein 7.4136398718e-06 7.86772038307e-06 4.5408051127e-07 +UniRef50_F5ZKR4 Oxidoreductase 0.000181774954504 0.000922098481126 0.000740323526622 +UniRef50_N9B926 9.07418242453e-05 0.00614008279025 0.006049340966 +UniRef50_UPI00047A6086 AMP binding protein 6.76094308422e-05 0.000239991459267 0.000172382028425 +UniRef50_A7WXZ6 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.0125288834037 0.00540050450354 -0.00712837890016 +UniRef50_UPI00046EFEDF ABC transporter substrate binding protein 7.01895217862e-06 4.82083142133e-05 4.11893620347e-05 +UniRef50_C1N027 Predicted protein 0.000209495082077 0.000463177670129 0.000253682588052 +UniRef50_F0XWK7 Expressed protein 3.05331708627e-05 0.000237157257432 0.000206624086569 +UniRef50_UPI000455FDEB hypothetical protein CONPUDRAFT_131066 1.58456162517e-05 2.33181913963e-05 7.4725751446e-06 +UniRef50_L8MS48 1.72015231234e-05 1.26613840431e-05 -4.5401390803e-06 +UniRef50_A9GPH2 Serine hydroxymethyltransferase 7.55849061455e-05 7.94781646276e-05 3.8932584821e-06 +UniRef50_C3A4D2 Permease, probably tetracycline resistance protein 0.000712165429876 0.00215620013285 0.00144403470297 +UniRef50_U4QA39 Xanthine dehydrogenase, iron sulfur binding subunit 0.00997156568122 0.00272763895826 -0.00724392672296 +UniRef50_B1LL17 D galactonate dehydratase 2 0.00211680353613 0.000839149493093 -0.00127765404304 +UniRef50_Q6GIA3 3 oxoacyl [acyl carrier protein] synthase 2 0.0142773923639 0.00712598335296 -0.00715140901094 +UniRef50_Q9Z913 Putative GMP synthase [glutamine hydrolyzing] 1.34882106984e-05 2.18266354433e-05 8.3384247449e-06 +UniRef50_UPI00035C8380 hypothetical protein 0.00185071072853 0.000478850859645 -0.00137185986888 +UniRef50_A5UMB3 0.00139143036675 0.00133321449211 -5.821587464e-05 +UniRef50_UPI000370ED97 hypothetical protein, partial 2.32651918679e-05 3.69070203753e-05 1.36418285074e-05 +UniRef50_P27243 O antigen ligase 0.00263937895003 0.000972610698141 -0.00166676825189 +UniRef50_A0A014MKE4 0.000548811665997 0.0154443280694 0.0148955164034 +UniRef50_UPI000350731C PREDICTED 2.3073715705e-05 3.61022867067e-05 1.30285710017e-05 +UniRef50_M4WZV5 Dicarboxylate transporter 0.000599184109289 0.000647861144854 4.8677035565e-05 +UniRef50_K1X7T9 1.22774148162e-05 7.92890767729e-06 -4.34850713891e-06 +UniRef50_A5UM90 Adhesin like protein 0.00379875505127 0.000323189022329 -0.00347556602894 +UniRef50_UPI00037FBFF6 hypothetical protein 7.9962931421e-06 0.00100297576993 0.000994979476788 +UniRef50_L7WZN3 0.00737517567007 0.0025899977473 -0.00478517792277 +UniRef50_B1N6N2 Putative hemolysin activator related protein 2.51414277974e-05 0.000255082714311 0.000229941286514 +UniRef50_Q2KWY0 Ribonuclease 3 6.91259732074e-06 5.15514829972e-05 4.46388856765e-05 +UniRef50_A5IT97 Diacylglycerol kinase 0.00421577180547 0.0017730616839 -0.00244271012157 +UniRef50_K6ZP91 3.22896389661e-05 1.44504775538e-05 -1.78391614123e-05 +UniRef50_UPI00037C95EF hypothetical protein, partial 0.000268083552852 2.75735429243e-05 -0.000240510009928 +UniRef50_P77228 Putative inner membrane metabolite transport protein YdfJ 0.00305053395198 0.000909304605775 -0.0021412293462 +UniRef50_UPI00042356A9 exodeoxyribonuclease III 8.45882300374e-05 2.46361785765e-05 -5.99520514609e-05 +UniRef50_B5E2W4 Acetate kinase 0.00700227893116 0.00810106834429 0.00109878941313 +UniRef50_R4YDZ3 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.000436770336414 0.000137569893719 -0.000299200442695 +UniRef50_B9DND6 Pyrrolidone carboxylate peptidase 3.30425434305e-05 5.832169449e-05 2.52791510595e-05 +UniRef50_UPI0004754876 shikimate kinase 1.84592757073e-05 1.45019687619e-05 -3.9573069454e-06 +UniRef50_UPI000252B25E PREDICTED 0.000215375695616 0.000234678585836 1.930289022e-05 +UniRef50_I3UA32 Transketolase 0.000121813938717 3.07901362632e-05 -9.10238024538e-05 +UniRef50_A0A024J8E7 Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit 3.36976957085e-05 6.54536719473e-05 3.17559762388e-05 +UniRef50_G4KZ65 ATP dependent zinc metalloprotease FtsH 0.000282389844379 0.00184294018492 0.00156055034054 +UniRef50_UPI00046FC736 hypothetical protein 1.33169101916e-05 9.24807512013e-06 -4.06883507147e-06 +UniRef50_Q7W2B7 Shikimate kinase 1.51015677332e-05 1.41973602414e-05 -9.042074918e-07 +UniRef50_R9SIK3 2 5 RNA ligase LigT 0.00299703261793 0.000660899396553 -0.00233613322138 +UniRef50_P33924 0.00390289729606 0.000481982532273 -0.00342091476379 +UniRef50_UPI00047E33F6 ABC transporter ATP binding protein 9.75603447948e-06 3.0628788109e-05 2.08727536295e-05 +UniRef50_UPI0004649A94 hypothetical protein 4.78784669426e-05 4.58787879958e-06 -4.3290588143e-05 +UniRef50_UPI000471C14A tryptophan synthase subunit alpha, partial 9.70385336441e-06 1.94486019864e-05 9.74474862199e-06 +UniRef50_UPI000225DE65 nitrogen regulatory IIA 1.4768953368e-05 3.66114899909e-05 2.18425366229e-05 +UniRef50_UPI0002558CA8 membrane protein 1.65377251517e-05 3.94865898355e-05 2.29488646838e-05 +UniRef50_Q4K9S7 NADH quinone oxidoreductase subunit K 6.37780455637e-05 0.00524558314715 0.00518180510159 +UniRef50_A4XGW8 0.000342914982539 0.00026134221699 -8.1572765549e-05 +UniRef50_B4RKU4 Drug resistance translocase family protein 0.000126390398057 0.00283004940982 0.00270365901176 +UniRef50_G3GQA9 2.2672675387e-06 1.4187648155e-05 1.19203806163e-05 +UniRef50_Q9JPD1 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 7.09666095732e-06 1.73053226474e-05 1.02086616901e-05 +UniRef50_Q9LV91 4 alpha glucanotransferase DPE1, chloroplastic amyloplastic 8.6937134172e-06 0.000490259193479 0.000481565480062 +UniRef50_UPI0002491571 tRNA delta isopentenylpyrophosphate transferase 2.56385431654e-05 9.62958256908e-06 -1.60089605963e-05 +UniRef50_Q6BSU5 Sulfate adenylyltransferase 6.64377924913e-05 4.05552810896e-05 -2.58825114017e-05 +UniRef50_I3TNE9 5.85087720182e-05 1.67487468487e-05 -4.17600251695e-05 +UniRef50_UPI00036C6220 MULTISPECIES 3.31066369954e-06 1.1749367326e-05 8.43870362646e-06 +UniRef50_UPI00046D83DE hypothetical protein 1.92573511679e-05 2.59776496185e-06 -1.66595862061e-05 +UniRef50_UPI00036A4575 hypothetical protein 6.06509876934e-05 1.15977455752e-05 -4.90532421182e-05 +UniRef50_G2LQE7 6.88290388782e-06 2.8311956795e-05 2.14290529072e-05 +UniRef50_UPI0003619428 Cro Cl family transcriptional regulator 0.000170891160263 2.21229077935e-05 -0.00014876825247 +UniRef50_A7HCR8 tRNA dimethylallyltransferase 2.40210377898e-05 9.24970101577e-06 -1.4771336774e-05 +UniRef50_UPI00044020B0 PREDICTED 1.95561353559e-05 1.48932452284e-05 -4.6628901275e-06 +UniRef50_A6LRG0 ErfK YbiS YcfS YnhG family protein 0.000265765921374 0.00309480315259 0.00282903723122 +UniRef50_UPI0004724C7E 30S ribosomal protein S15, partial 0.000267370777035 0.000409628047311 0.000142257270276 +UniRef50_UPI0004545041 PREDICTED 1.66897971451e-05 8.74826914429e-06 -7.94152800081e-06 +UniRef50_UPI00047AA68A protein phosphatase 9.28596304572e-06 1.32390658846e-05 3.95310283888e-06 +UniRef50_A5UX75 Dihydroorotate dehydrogenase 8.97886785067e-06 1.58302236431e-05 6.85135579243e-06 +UniRef50_UPI000365F67B hypothetical protein 4.35313762625e-05 1.24329168043e-05 -3.10984594582e-05 +UniRef50_V6U9N7 LacI family transcriptional regulator 5.64343859773e-06 1.26471651462e-05 7.00372654847e-06 +UniRef50_P76498 0.000931155044788 0.000746871350035 -0.000184283694753 +UniRef50_P76499 0.00353293480451 0.000720284646817 -0.00281265015769 +UniRef50_W8EV27 1.07989108761e-05 2.08548832562e-05 1.00559723801e-05 +UniRef50_Q5HGC3 Glutamine synthetase 0.0142097980388 0.0309080522931 0.0166982542543 +UniRef50_Q2FEH9 Phosphosugar binding transcriptional regulator, RpiR family 0.0272650312859 0.0111762501149 -0.016088781171 +UniRef50_P33361 Putative osmoprotectant uptake system permease protein YehY 0.00290695454741 0.000163459430921 -0.00274349511649 +UniRef50_E8LCX8 Lipoprotein 7.88247515973e-06 1.11570387623e-05 3.27456360257e-06 +UniRef50_A0A059FU98 Dehydrogenase 1.41400017054e-05 8.29958870596e-05 6.88558853542e-05 +UniRef50_Q82BB8 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 1.51288475812e-05 2.31623581222e-05 8.033510541e-06 +UniRef50_UPI0003C18AE4 PREDICTED 4.4369607437e-06 9.48666853842e-06 5.04970779472e-06 +UniRef50_Q2FH00 Alanine dehydrogenase 1 0.00756553594373 0.000724035293526 -0.0068415006502 +UniRef50_A5UKT6 Ferredoxin, iron sulfur binding 0.00178225761195 0.00024781821415 -0.0015344393978 +UniRef50_A6M115 Metal dependent phosphohydrolase 0.00021049404583 0.00442526318907 0.00421476914324 +UniRef50_D8TH60 4.544817456e-06 1.14394249783e-05 6.8946075223e-06 +UniRef50_UPI000479FA8A hypothetical protein 0.000107765987204 3.9621945613e-05 -6.8144041591e-05 +UniRef50_P0AET6 Protein HdeD 0.000198676836237 0.000348113994329 0.000149437158092 +UniRef50_Q1GSN3 DNA mismatch repair protein MutL 7.22230845972e-05 0.000230657339484 0.000158434254887 +UniRef50_UPI000378A614 hypothetical protein 2.00347906511e-07 1.1435229597e-06 9.43175053189e-07 +UniRef50_R5A3J3 0.000968393999545 0.000253128604458 -0.000715265395087 +UniRef50_U5MM11 Response regulator GtcR 0.000553650214931 0.00203291194923 0.0014792617343 +UniRef50_Q9RT94 Chloromuconate cycloisomerase, putative 0.000133387275209 0.00283701782407 0.00270363054886 +UniRef50_UPI00046B9072 PREDICTED 1.76117037477e-06 8.88867178989e-06 7.12750141512e-06 +UniRef50_UPI00036EA45A hypothetical protein 0.000385778194956 0.000113987488734 -0.000271790706222 +UniRef50_UPI00046E002C hypothetical protein 2.02372731164e-06 0.000414552208057 0.000412528480745 +UniRef50_UPI0003ABC022 PREDICTED 2.61479896871e-06 6.4089809969e-06 3.79418202819e-06 +UniRef50_B8H9Q5 Pyridoxal 5 phosphate dependent protein beta subunit 1.10386635635e-05 6.57305468802e-06 -4.46560887548e-06 +UniRef50_Q2FIE3 D alanine poly ligase subunit 1 0.0198247832664 0.00794660540071 -0.0118781778657 +UniRef50_Q9RXK8 8.11797825447e-05 0.0331584097141 0.0330772299316 +UniRef50_O27113 2 oxoglutarate synthase subunit KorB 0.0034485042802 0.000207725701201 -0.003240778579 +UniRef50_I3USW1 Multi sensor signal transduction histidine kinase 0.000878779187298 0.000389056146569 -0.000489723040729 +UniRef50_B2VKE4 Cation acetate symporter ActP 0.0127578199634 0.0133974896044 0.000639669641 +UniRef50_A7HME6 Cytidylate kinase 1.06297795698e-05 1.18826781713e-05 1.2528986015e-06 +UniRef50_UPI0003B60C69 translation factor Sua5 3.03886109838e-05 8.61776802427e-05 5.57890692589e-05 +UniRef50_B0RVB2 Ribosomal RNA small subunit methyltransferase H 1.88894591176e-05 8.8755190985e-06 -1.00139400191e-05 +UniRef50_F7U1Y8 Ribonucleoside diphosphate reductase subunit alpha 8.63849769869e-05 0.0126447878802 0.0125584029032 +UniRef50_P19642 PTS system maltose and glucose specific EIICB component 0.00348452658119 0.00166961774741 -0.00181490883378 +UniRef50_K7S7B0 Peptidase dimerization domain containing protein 0.000316725541448 0.00545668026469 0.00513995472324 +UniRef50_G0LRP3 Haloacid dehalogenase like hydrolase 0.016471640274 0.00856123556742 -0.00791040470658 +UniRef50_W0YRX8 0.00369081143881 0.00122264372525 -0.00246816771356 +UniRef50_UPI0003506C1B PREDICTED 3.03414288326e-05 0.000111238744476 8.08973156434e-05 +UniRef50_A0A011R518 CRISPR associated endonuclease helicase Cas3 6.24966168059e-05 6.28857904726e-06 -5.62080377586e-05 +UniRef50_UPI000366C818 hypothetical protein 1.39762740695e-05 1.66702496839e-05 2.6939756144e-06 +UniRef50_P09143 Succinyl CoA ligase [ADP forming] subunit alpha 2.82939774891e-05 5.19471214745e-05 2.36531439854e-05 +UniRef50_Q24TX4 Guanylate kinase 1.03385757157e-05 1.28003960305e-05 2.4618203148e-06 +UniRef50_A3TWR1 Phenol hydroxylase, putative 0.000105973706805 3.05164321458e-05 -7.54572746592e-05 +UniRef50_UPI0003513255 2.93176517926e-05 0.000149664378147 0.000120346726354 +UniRef50_P26840 Probable macrolide acetyltransferase 1.65438521456e-05 0.00103210362294 0.00101555977079 +UniRef50_P05823 Transposon Tn2501 resolvase 0.00108912845703 0.00100676149498 -8.236696205e-05 +UniRef50_F0YCT2 Expressed protein 0.000146918110199 0.000230887322796 8.3969212597e-05 +UniRef50_F0GIC2 Putative exported alkaline phosphatase 6.78439904738e-06 0.000153485379855 0.000146700980808 +UniRef50_D9UFT2 0.000240294930518 4.20372328648e-05 -0.000198257697653 +UniRef50_Q1AS32 N acetyl gamma glutamyl phosphate reductase 6.7926635784e-06 9.30933885413e-06 2.51667527573e-06 +UniRef50_UPI00046F7B75 hypothetical protein 8.49556580971e-05 6.64925818111e-05 -1.8463076286e-05 +UniRef50_A0A022NVZ1 0.00103148076066 0.000341443648143 -0.000690037112517 +UniRef50_R5W852 5.90257362713e-05 3.22493384344e-05 -2.67763978369e-05 +UniRef50_A3LL65 Aflatoxin B1 aldehyde reductase member 1 0.000397428711086 0.00122890830151 0.000831479590424 +UniRef50_UPI000258F562 PREDICTED 3.0344593645e-06 5.97989015065e-05 5.6764442142e-05 +UniRef50_M9UY12 2.95247270203e-05 7.32099277214e-05 4.36852007011e-05 +UniRef50_F0RLX6 0.00026583520342 0.0081147119939 0.00784887679048 +UniRef50_B1ZI45 2.09287667406e-05 0.000184853831095 0.000163925064354 +UniRef50_V1UZX9 Thiamine biosynthesis protein ThiC 1.07333557156e-05 3.40260234162e-05 2.32926677006e-05 +UniRef50_G6XLM0 8.9289854724e-05 5.63414591201e-05 -3.29483956039e-05 +UniRef50_I0C0X1 AmrA 0.0137990897548 0.00150732073288 -0.0122917690219 +UniRef50_Q2RMS9 Endoribonuclease YbeY 0.00167024032482 0.00265295787897 0.00098271755415 +UniRef50_P21822 Methyl accepting chemotaxis serine transducer 0.00418358039712 0.000487685969885 -0.00369589442724 +UniRef50_A3PPX9 0.00218610505484 0.00117681285142 -0.00100929220342 +UniRef50_W2F2K9 8.2334764183e-06 9.52877283924e-06 1.29529642094e-06 +UniRef50_D2ZRM1 0.00312684121942 0.000117111713888 -0.00300972950553 +UniRef50_A3M9B5 0.000180615305666 0.00610091303075 0.00592029772508 +UniRef50_D3AVG0 RNase P protein subunit, RNase MRP protein subunit 9.73415350036e-06 6.18609152283e-06 -3.54806197753e-06 +UniRef50_A3M9B3 0.000101687329291 0.00862773406449 0.0085260467352 +UniRef50_Q1GY83 Outer membrane autotransporter barrel 3.78876780148e-05 9.83510447954e-06 -2.80525735353e-05 +UniRef50_M5Y1W9 3.96247105123e-05 0.000310224891056 0.000270600180544 +UniRef50_U7DKX9 Glutathione S transferase 0.000888899502794 0.00495683034939 0.0040679308466 +UniRef50_Q1D0T1 UDP N acetylmuramate L alanine ligase 1.63212475218e-05 4.91353669745e-06 -1.14077108244e-05 +UniRef50_G9G286 IS5 transposase 0.00205405338176 0.000424407240993 -0.00162964614077 +UniRef50_V6ET42 0.000344259763556 0.000492558914032 0.000148299150476 +UniRef50_R7PSW3 0.00284162898078 0.000202974864068 -0.00263865411671 +UniRef50_I6TY91 Phosphoglycerate mutase 0.00924846529452 0.00159563255196 -0.00765283274256 +UniRef50_Q3J3M8 Alpha 1,4 glucan 0.0105803303394 0.0029891816198 -0.0075911487196 +UniRef50_F4RCY2 3.33201057751e-06 0.000448078451278 0.0004447464407 +UniRef50_E2ZZ10 Peptide chain release factor 3 0.000943714972126 0.000678888977457 -0.000264825994669 +UniRef50_UPI00036CAA44 hypothetical protein 6.78214739253e-06 1.12233578694e-05 4.44121047687e-06 +UniRef50_D3QD86 0.00356563985316 0.000486785777803 -0.00307885407536 +UniRef50_D4J7S8 FAD FMN containing dehydrogenases 0.000905017179151 0.00326654113725 0.0023615239581 +UniRef50_B0D259 Predicted protein 0.000275120487342 0.000112004748003 -0.000163115739339 +UniRef50_M9VAJ1 0.000227401198102 0.00556040137569 0.00533300017759 +UniRef50_Q6G9H0 Conserved virulence factor B 0.0208976058795 0.00395898866511 -0.0169386172144 +UniRef50_K9Z9U6 Plasmid maintenance system killer 0.000416344840642 0.00149336463372 0.00107701979308 +UniRef50_M5A5P1 Geranyltranstransferase 0.000357120404745 0.00359702477028 0.00323990436553 +UniRef50_Q5WAG0 Ribonuclease P protein component 0.00263897056914 0.000513594269898 -0.00212537629924 +UniRef50_UPI00021A4D09 PREDICTED 1.75518316009e-06 4.3719775937e-07 -1.31798540072e-06 +UniRef50_C3I9I9 0.000175303090798 0.00275645982594 0.00258115673514 +UniRef50_I2QLC8 4.09622871137e-05 5.11715971912e-05 1.02093100775e-05 +UniRef50_UPI0003C1A367 PREDICTED 7.08418270876e-06 6.15747714143e-06 -9.2670556733e-07 +UniRef50_UPI0001E2AEC5 hypothetical protein, partial 1.37657663957e-05 0.000140475453415 0.000126709687019 +UniRef50_Q3B4Y6 Imidazoleglycerol phosphate dehydratase 0.000181219588941 3.07671247899e-05 -0.000150452464151 +UniRef50_V9WJV3 2 polyprenyl 6 methoxyphenol hydroxylase 0.0014458717797 0.000183236838799 -0.0012626349409 +UniRef50_H5SYI3 1.49917534994e-05 2.38810135155e-05 8.8892600161e-06 +UniRef50_UPI00035C6608 hypothetical protein 4.88519287279e-06 5.74876753327e-06 8.6357466048e-07 +UniRef50_J9YRR4 0.000314454583716 0.000202271715884 -0.000112182867832 +UniRef50_U6EZ18 Rubrerythrin 0.00681176625195 0.00043007287164 -0.00638169338031 +UniRef50_UPI0004670A8C hypothetical protein 1.11817872931e-05 6.12794977072e-06 -5.05383752238e-06 +UniRef50_P23382 Immune inhibitor A 2.35666150226e-05 0.000545681492822 0.000522114877799 +UniRef50_Q897Q2 NH3 dependent NAD+ synthetase 7.28737430216e-05 0.00137088377339 0.00129801003037 +UniRef50_F6G8K0 Lipoprotein 2.70807099381e-05 8.00106308709e-06 -1.9079646851e-05 +UniRef50_A4WT68 NADH quinone oxidoreductase subunit 0.000706824376332 0.00113772993221 0.000430905555878 +UniRef50_Q9RU53 0.00014842175184 0.0123773187149 0.0122288969631 +UniRef50_D2ZUU5 2.62699209946e-05 0.000656259344878 0.000629989423883 +UniRef50_UPI0003B370CA taurine ABC transporter substrate binding protein 2.72756881027e-05 5.65361333867e-05 2.9260445284e-05 +UniRef50_Q9RU59 0.000103610060989 0.00808585709169 0.0079822470307 +UniRef50_P25888 ATP dependent RNA helicase RhlE 0.00111619192147 0.000630647411922 -0.000485544509548 +UniRef50_S6ETI6 2.02243322926e-05 3.26281289402e-05 1.24037966476e-05 +UniRef50_F9Y8Y0 Oxidoreductase, aldo keto reductase family protein 0.000149203948168 0.00438106733407 0.0042318633859 +UniRef50_F0XZ87 1.65566406425e-05 8.19945478244e-06 -8.35718586006e-06 +UniRef50_G8VGA8 Protease 0.000163649995166 0.00354839161829 0.00338474162312 +UniRef50_S1SW71 0.000142626947925 0.000137256393928 -5.370553997e-06 +UniRef50_A8LI88 Rhomboid family protein 0.00276595968193 0.000758258887237 -0.00200770079469 +UniRef50_Q1MFZ6 Pseudouridine 5 phosphate glycosidase 1 0.000120859975083 0.00926146026174 0.00914060028666 +UniRef50_UPI00047858B2 hypothetical protein 9.64586650427e-05 8.64005586956e-05 -1.00581063471e-05 +UniRef50_UPI0003B760AC citrate synthase, partial 1.76923480839e-05 9.83189193583e-06 -7.86045614807e-06 +UniRef50_P56902 3 oxoacyl [acyl carrier protein] synthase 2 0.00283841465137 0.00037366579436 -0.00246474885701 +UniRef50_Q5HQM9 DltB protein 0.0193753840766 0.00905398509003 -0.0103213989866 +UniRef50_Q57RM6 Dipeptide permease D 0.00476377060849 0.00111918718808 -0.00364458342041 +UniRef50_P26612 Cytoplasmic alpha amylase 0.00303487843724 0.000946361467673 -0.00208851696957 +UniRef50_UPI0002625B7F glutaredoxin 0.000151639177376 0.000202333961764 5.0694784388e-05 +UniRef50_P10423 Alkaline phosphatase isozyme conversion protein 0.00584935992427 0.00390921693153 -0.00194014299274 +UniRef50_U3KIJ5 0.000100306285793 1.23362746369e-05 -8.79700111561e-05 +UniRef50_G8UQE5 FAD dependent oxidoreductase 3.49797191879e-06 7.13931193699e-06 3.6413400182e-06 +UniRef50_W1WTC0 0.00115184492656 0.00157531237624 0.00042346744968 +UniRef50_Q9I3D2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.000210546186166 0.000640976225501 0.000430430039335 +UniRef50_W4STC6 0.000245551154116 0.000168645251753 -7.6905902363e-05 +UniRef50_F0YPY3 Expressed protein 0.000506178427924 0.00033384129576 -0.000172337132164 +UniRef50_W4MCA9 0.000230194937626 0.000100274026064 -0.000129920911562 +UniRef50_UPI000225AF78 chemotaxis protein CheY 6.55886830048e-05 5.99686926589e-05 -5.6199903459e-06 +UniRef50_UPI000367F02C hypothetical protein 4.65259054762e-06 6.65222150704e-06 1.99963095942e-06 +UniRef50_C6W4P9 Aldehyde Dehydrogenase 0.0040503937086 0.00088213402259 -0.00316825968601 +UniRef50_R9BZ13 ABC transporter periplasmic protein 1.17805336745e-05 1.97220940783e-05 7.9415604038e-06 +UniRef50_UPI00037C0FB7 hypothetical protein, partial 1.52338356982e-05 2.65965170129e-05 1.13626813147e-05 +UniRef50_B5YEP5 Glutamate tRNA ligase 4.40635389283e-06 6.27205104542e-06 1.86569715259e-06 +UniRef50_Q9KYS1 1 deoxy D xylulose 5 phosphate reductoisomerase 0.000578357361836 0.00410091389546 0.00352255653362 +UniRef50_A8AXV1 Transporter 0.00497484296298 0.00269751357433 -0.00227732938865 +UniRef50_L5N6N7 Transducer protein Htr38 1.49849224224e-05 0.000218371924905 0.000203387002483 +UniRef50_Q49WX1 Cell division protein SepF 0.0160646866225 0.00554511218203 -0.0105195744405 +UniRef50_UPI0004769219 glycerophosphodiester phosphodiesterase 9.39608466264e-06 0.00159814949027 0.00158875340561 +UniRef50_UPI0002F2BD70 hypothetical protein 6.35060328633e-05 0.00011850954975 5.50035168867e-05 +UniRef50_Q2YUG1 4.86188445306e-05 2.21961210099e-05 -2.64227235207e-05 +UniRef50_I6SW45 Enoyl ACP reductase 0.0071489070075 0.00158560160088 -0.00556330540662 +UniRef50_H8LF45 Xanthine uracil vitamin C permease 0.00574149914444 0.0057639337417 2.243459726e-05 +UniRef50_UPI0003B35348 amino acid ABC transporter permease 6.49304400225e-05 1.51459404032e-05 -4.97844996193e-05 +UniRef50_UPI0002487593 citrate lyase, partial 0.000146180603765 2.36873484171e-05 -0.000122493255348 +UniRef50_UPI0004418637 hypothetical protein PUNSTDRAFT_120887 4.28253670298e-06 7.50487179661e-05 7.07661812631e-05 +UniRef50_D4HBG9 Zinc binding alcohol dehydrogenase family protein 0.000112347020496 0.00362778240351 0.00351543538301 +UniRef50_UPI000477DEB8 hypothetical protein 6.00198442829e-05 5.10850563969e-05 -8.934787886e-06 +UniRef50_Q89BK7 Phosphoenolpyruvate carboxykinase [ATP] 0.0110368987713 0.00215068283114 -0.00888621594016 +UniRef50_B5YHP2 Non canonical purine NTP pyrophosphatase 7.7502729793e-06 4.16827437049e-05 3.39324707256e-05 +UniRef50_W1DH05 Shikimate transporter 0.00191943054766 0.000486118033249 -0.00143331251441 +UniRef50_Q57242 ABC transporter ATP binding protein uup 1 0.00209485243691 0.00022039632969 -0.00187445610722 +UniRef50_Q1QVP8 2.05437352787e-05 0.000186996043467 0.000166452308188 +UniRef50_C3JXG2 0.000367029645114 9.32854758332e-05 -0.000273744169281 +UniRef50_Q28S78 YjeF related protein like protein 1.94738188209e-05 1.96375041106e-05 1.636852897e-07 +UniRef50_A0A011QSB3 Multiple resistance and pH homeostasis protein B 7.76284445182e-06 2.17945365846e-05 1.40316921328e-05 +UniRef50_M2L7K7 Putative type I restriction modification system, specificity determinant 0.00056693040472 0.000929334277671 0.000362403872951 +UniRef50_Q5HLR4 Formimidoylglutamase 0.0148528999508 0.00174109860626 -0.0131118013445 +UniRef50_P45793 Type IV pilus assembly protein TapC 0.000277393359766 0.00566652306322 0.00538912970345 +UniRef50_H9K906 4.31069336779e-05 4.45779258594e-05 1.4709921815e-06 +UniRef50_P00632 3 oxoadipate enol lactonase 2 0.000340077467434 0.0151477871992 0.0148077097318 +UniRef50_Q0W662 Pyruvate carboxylase, subunit B 0.00369344684918 0.00108716449443 -0.00260628235475 +UniRef50_D0D597 9.51258804145e-05 0.00013426422327 3.91383428555e-05 +UniRef50_Q0JR18 Os01g0126200 protein 6.51045149722e-06 6.98515090606e-05 6.33410575634e-05 +UniRef50_Q87CM2 Ketol acid reductoisomerase 2.04759517127e-05 3.84332302317e-05 1.7957278519e-05 +UniRef50_W5X9Y1 50S ribosomal protein L21 0.000357865914587 0.000525751207925 0.000167885293338 +UniRef50_UPI000383BB6B PREDICTED 4.24659264566e-06 0.000109931348706 0.00010568475606 +UniRef50_Q9JZG4 DNA translocase FtsK 2 0.000157592301055 0.00285431975419 0.00269672745313 +UniRef50_I3Y8S8 Alkyl sulfatase like hydrolase 0.000462216033901 0.000290441846676 -0.000171774187225 +UniRef50_D3E4K2 MFS transporter 0.00242142277609 0.000281052812108 -0.00214036996398 +UniRef50_B2TIE4 Putative ATP 0.000480976230066 0.00141885111969 0.000937874889624 +UniRef50_A3NQD4 Multifunctional CCA protein 0.00557373180286 0.0150195145802 0.00944578277734 +UniRef50_C7LD35 0.000223597114788 7.5308575835e-05 -0.000148288538953 +UniRef50_E7SW38 0.000255385853633 3.92555272236e-05 -0.000216130326409 +UniRef50_A0A023XLY7 0.000196664983143 4.82817041415e-05 -0.000148383279001 +UniRef50_E7GLY7 6.06707874525e-06 7.95678243208e-06 1.88970368683e-06 +UniRef50_D3B9J3 Electron transfer flavoprotein ubiquinone oxidoreductase 1.16378622033e-05 3.07168523126e-05 1.90789901093e-05 +UniRef50_I2GQ39 UvrABC system protein A Short=UvrA protein 5.71015212688e-06 0.000188076002093 0.000182365849966 +UniRef50_UPI00047D4973 hypothetical protein 4.04682651678e-06 6.6167702185e-05 6.21208756682e-05 +UniRef50_UPI00046D0079 hypothetical protein 1.8215671519e-05 0.000211146574471 0.000192930902952 +UniRef50_H7CVL3 Beta lactamase 0.000632231981035 0.000565151631228 -6.7080349807e-05 +UniRef50_Q48838 Probable L serine dehydratase, alpha chain 2.07811754869e-05 1.4119558831e-05 -6.6616166559e-06 +UniRef50_L0FK70 5.05580598562e-05 6.52156998636e-05 1.46576400074e-05 +UniRef50_Q24UB9 NADH quinone oxidoreductase subunit H 0.000158164520469 0.00317611604452 0.00301795152405 +UniRef50_A3SBX3 4.47365814602e-06 2.3998701605e-06 -2.07378798552e-06 +UniRef50_UPI000255C58A amino acid permease associated protein, partial 1.58186036073e-05 8.03473744677e-05 6.45287708604e-05 +UniRef50_Q38XW7 Phosphoribosylformylglycinamidine synthase 2 1.51032290944e-05 3.41735658098e-06 -1.16858725134e-05 +UniRef50_E8WDB2 Prevent host death family protein 8.13551367075e-05 8.86099895376e-05 7.2548528301e-06 +UniRef50_UPI0003B627AC NAD dependent epimerase 1.00581306653e-05 2.43261656893e-05 1.4268035024e-05 +UniRef50_UPI00046A94A2 MFS transporter permease 3.26918874016e-06 0.000164364515663 0.000161095326923 +UniRef50_UPI0003FD0D46 peptide ABC transporter permease 6.16355774297e-06 6.01695993539e-05 5.40060416109e-05 +UniRef50_A3JZB9 0.000983654153861 0.000148302226566 -0.000835351927295 +UniRef50_P51601 GTP cyclohydrolase 1 3.2640448862e-05 1.30504462899e-05 -1.95900025721e-05 +UniRef50_A0A037YFV8 Transposase 0.00275561179728 0.00120435106898 -0.0015512607283 +UniRef50_B9KT97 ABC transporter related 0.0077655580059 0.000648041933358 -0.00711751607254 +UniRef50_UPI0002DCE8E8 hypothetical protein 4.68985942221e-06 1.06959485762e-05 6.00608915399e-06 +UniRef50_B9KQ64 0.00168577660971 0.000609880727552 -0.00107589588216 +UniRef50_B2V2R9 0.000299592054644 0.000919741390482 0.000620149335838 +UniRef50_A6WC54 Triosephosphate isomerase 6.50666978973e-06 0.00659893916741 0.00659243249762 +UniRef50_UPI0003615D0A 30S ribosomal protein S15, partial 0.000375016582941 7.39062837505e-05 -0.000301110299191 +UniRef50_P0C0C8 S ribosylhomocysteine lyase 0.0026854542958 0.00932380943447 0.00663835513867 +UniRef50_UPI00037B7B2D hypothetical protein 6.08925832862e-05 1.03799398977e-05 -5.05126433885e-05 +UniRef50_B9AFV8 Transcriptional regulator, MarR family 0.00128360092158 0.000705178068698 -0.000578422852882 +UniRef50_UPI000375A8C0 hypothetical protein 7.60377006306e-06 2.29213778303e-05 1.53176077672e-05 +UniRef50_Q3JHR7 3.5088691428e-06 5.61300070671e-05 5.26211379243e-05 +UniRef50_Q9CI68 DegV domain containing protein YejH 0.00406596168558 0.00722095005853 0.00315498837295 +UniRef50_Q3JHR1 6.26504097732e-05 7.73080380057e-05 1.46576282325e-05 +UniRef50_Q8EBR2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.6229333059e-06 7.77056158277e-06 2.14762827687e-06 +UniRef50_D6B6K5 Deaminase 0.000257341602245 0.000353771381212 9.6429778967e-05 +UniRef50_Q8UDF7 Carbamoyl phosphate synthase small chain 0.00238562670839 0.00965060876847 0.00726498206008 +UniRef50_UPI00047BA94E hypothetical protein 7.08238053779e-06 2.52217165451e-05 1.81393360073e-05 +UniRef50_B7GJX4 Predicted dithiol disulfide isomerase involved in polyketide biosynthesis 0.000177779900556 0.000564193826766 0.00038641392621 +UniRef50_W1CVX6 Potassium efflux system KefA protein Small conductance mechanosensitive channel 0.00269667925213 0.000811633639819 -0.00188504561231 +UniRef50_O69762 Hydroxycinnamoyl CoA hydratase lyase 0.000423018810486 0.0101261400964 0.00970312128591 +UniRef50_UPI00047E8386 hypothetical protein 5.01224808839e-06 2.66863896531e-05 2.16741415647e-05 +UniRef50_Q6A5D0 Uronate isomerase 0.000115729023204 0.00466194750909 0.00454621848589 +UniRef50_A4KKZ2 Integral membrane protein 3.73569140138e-05 2.94512025292e-05 -7.9057114846e-06 +UniRef50_L8A4F6 ATP dependent DNA helicase RecG 5.62013879147e-05 0.00211363286974 0.00205743148183 +UniRef50_B5FHH0 Protein FixA 0.000848634949623 0.000500982907698 -0.000347652041925 +UniRef50_K7RV74 2.77022252248e-05 0.000132839462127 0.000105137236902 +UniRef50_Q7N253 Complete genome; segment 12 17 1.80785787962e-06 1.10319243023e-05 9.22406642268e-06 +UniRef50_F1WXM9 8.04793256855e-05 0.0019896929736 0.00190921364791 +UniRef50_B7UXK4 0.000416344840642 0.000410162090547 -6.182750095e-06 +UniRef50_T1Y6Z9 Transcription antiterminator, BglG family 0.0119335605342 0.00275654756203 -0.00917701297217 +UniRef50_A0A011NCB6 Endonuclease III 6.28370743373e-06 1.33601972724e-05 7.07648983867e-06 +UniRef50_P61653 2 dehydro 3 deoxyphosphooctonate aldolase 0.00348581006844 0.0146052026306 0.0111193925622 +UniRef50_UPI0003760644 hypothetical protein 0.000471702405281 0.000191841128628 -0.000279861276653 +UniRef50_F7WSN7 PE PGRS family protein 6.69981599401e-05 0.000172787419362 0.000105789259422 +UniRef50_V6ICR3 Peptidase 0.000504079082691 0.000300220762586 -0.000203858320105 +UniRef50_UPI0002ED547D hypothetical protein 2.6163040914e-05 1.88445620658e-05 -7.3184788482e-06 +UniRef50_UPI00037F3F52 hypothetical protein 0.000405034301632 6.4274643633e-05 -0.000340759657999 +UniRef50_UPI000473CF45 magnesium transporter 0.000172991116152 2.37795079427e-05 -0.000149211608209 +UniRef50_W2ELZ6 4.64690927099e-05 6.02498720692e-05 1.37807793593e-05 +UniRef50_A1KAD0 GTPase Obg 0.00107324554186 0.00361806054868 0.00254481500682 +UniRef50_R9SJH3 MATE efflux family protein 0.00712111820969 0.000924117333518 -0.00619700087617 +UniRef50_V5SG04 NAD NADP transhydrogenase subunit alpha 2.04776273881e-05 1.6000457558e-05 -4.4771698301e-06 +UniRef50_UPI000289DD7B protein export cytoplasm protein SecA ATPase RNA helicase 2.36371257514e-05 5.60627129897e-05 3.24255872383e-05 +UniRef50_A5IQ87 RNA polymerase, sigma 24 subunit, ECF subfamily 0.00631954881368 0.00178840449647 -0.00453114431721 +UniRef50_Q51368 Protein TonB 0.000184439408233 0.000548982512883 0.00036454310465 +UniRef50_UPI0002FEF856 hypothetical protein 1.22128516096e-05 1.10156253539e-05 -1.1972262557e-06 +UniRef50_U5NMV6 0.0032428446394 0.00215298537194 -0.00108985926746 +UniRef50_U5UNI0 0.0211711439897 0.00436810590223 -0.0168030380875 +UniRef50_Q4FBH4 Superfamily I DNA helicase 0.000133408830187 0.000154274456624 2.0865626437e-05 +UniRef50_UPI000371EB10 hypothetical protein 1.13742843895e-05 4.39721540659e-06 -6.97706898291e-06 +UniRef50_Q03U25 4 deoxy L threo 5 hexosulose uronate ketol isomerase 4.34639281418e-06 7.45230684356e-06 3.10591402938e-06 +UniRef50_L7MHU7 Putative glycine rich protein 1.1455558112e-05 2.21939040262e-05 1.07383459142e-05 +UniRef50_UPI00047BE3BA hypothetical protein 1.07937967412e-05 8.38168699571e-06 -2.41210974549e-06 +UniRef50_P45207 Stringent starvation protein A homolog 1.22137164791e-05 5.4876164855e-05 4.26624483759e-05 +UniRef50_T2E6P2 Outer membrane autotransporter barrel domain protein 0.000454809645883 0.000415994549764 -3.8815096119e-05 +UniRef50_Q87UP6 Polyphosphate kinase 0.00105330587512 0.0119892544016 0.0109359485265 +UniRef50_UPI0001B412E7 histidine transporter permease 8.99426628706e-05 0.000175833604537 8.58909416664e-05 +UniRef50_A3M5I7 AdeS 0.00148370731676 0.00603766790133 0.00455396058457 +UniRef50_A8GDW2 Isopentenyl diphosphate Delta isomerase 4.02743418312e-05 9.54498119029e-06 -3.07293606409e-05 +UniRef50_P76014 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 0.00143125628549 0.00181553184676 0.00038427556127 +UniRef50_R7PTX8 Hydrolase TatD family 0.00245137427705 0.000827443186981 -0.00162393109007 +UniRef50_UPI00047C0852 glycine cleavage system protein H 8.75776946726e-05 3.16549518795e-05 -5.59227427931e-05 +UniRef50_Q839B2 Hypoxanthine guanine phosphoribosyltransferase 3.12911457716e-05 0.000352784343301 0.000321493197529 +UniRef50_B2UYP0 WblI protein 0.000297444520913 0.00239951448613 0.00210206996522 +UniRef50_Q1PY54 2.64981722691e-05 2.22005871553e-05 -4.2975851138e-06 +UniRef50_P40727 Flagellar biosynthetic protein FlhB 0.00303280264224 0.00374753857016 0.00071473592792 +UniRef50_B9KW14 Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32 0.0031099238158 0.000547988466506 -0.00256193534929 +UniRef50_UPI00036FCE04 50S ribosomal protein L13 0.00016025339571 7.38949428271e-05 -8.63584528829e-05 +UniRef50_O29458 Diaminopimelate decarboxylase 5.13512760304e-06 0.000133052340701 0.000127917213098 +UniRef50_B1YMX6 Transposase, IS4 6.33869285446e-05 5.81391298683e-06 -5.75730155578e-05 +UniRef50_U3SU32 0.00329413616876 0.000673726323636 -0.00262040984512 +UniRef50_Q4ZX12 Exodeoxyribonuclease 7 large subunit 0.000173823172146 0.000171363658722 -2.459513424e-06 +UniRef50_UPI0002F5B1BD hypothetical protein 1.6393428139e-05 0.000175602855711 0.000159209427572 +UniRef50_I3TX99 Sulfite reductase 0.00828798106504 0.0059691824769 -0.00231879858814 +UniRef50_UPI0003EBBF6F PREDICTED 3.16307625095e-06 1.50963772352e-05 1.19333009842e-05 +UniRef50_Q8CUD0 0.00271715603282 0.000487605167142 -0.00222955086568 +UniRef50_Q8CUD7 0.0337973615811 0.0095621073783 -0.0242352542028 +UniRef50_M0FQF4 0.000522032318356 9.62021548053e-05 -0.000425830163551 +UniRef50_Q1QVC8 UPF0042 nucleotide binding protein Csal_2229 0.000700876816112 0.0012380459907 0.000537169174588 +UniRef50_H6CMH0 0.000189003079664 0.00128094471297 0.00109194163331 +UniRef50_UPI00035CA530 hypothetical protein 8.33271950809e-06 1.22703095555e-05 3.93759004741e-06 +UniRef50_UPI0004777D24 phosphate starvation inducible E 2.62183551667e-05 2.83260904812e-05 2.1077353145e-06 +UniRef50_Q7VRW1 NADH quinone oxidoreductase subunit K 4.59366177349e-05 5.50764921917e-05 9.1398744568e-06 +UniRef50_G4LBC3 2.53890301285e-05 0.000231335216862 0.000205946186734 +UniRef50_F3U4G5 0.00211872700608 0.000122014787727 -0.00199671221835 +UniRef50_G7M1G9 Calcium transporting ATPase 0.000278428181941 0.000966798628852 0.000688370446911 +UniRef50_UPI00034DCD19 hypothetical protein 1.30549585875e-05 0.000232300114808 0.00021924515622 +UniRef50_M9VKR8 0.000147678170721 0.00145338287171 0.00130570470099 +UniRef50_H4WKP6 Conjugal transfer pilus assembly protein TraU 0.000450409544857 8.12128046143e-05 -0.000369196740243 +UniRef50_V8GU79 Transposase 0.000351418873432 0.000399810952284 4.8392078852e-05 +UniRef50_UPI0004697DC4 hypothetical protein 1.7691636017e-05 0.000414934456923 0.000397242820906 +UniRef50_W0YRC1 5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase 0.000466319169037 0.000582433654521 0.000116114485484 +UniRef50_G7LZV6 Xenobiotic transporting ATPase 0.000312669926367 0.000358171905251 4.5501978884e-05 +UniRef50_Q9S7G6 Polyribonucleotide nucleotidyltransferase 2, mitochondrial 1.76896391652e-06 8.43792677239e-06 6.66896285587e-06 +UniRef50_UPI00039AB780 elongation factor P 1.98234833713e-05 3.38986798349e-05 1.40751964636e-05 +UniRef50_D3E3L9 0.000678672588022 0.000435356322155 -0.000243316265867 +UniRef50_M1MSP8 Lactose binding protein LacE 8.90297143505e-05 0.000790265526973 0.000701235812623 +UniRef50_W5X7C7 Dihydrolipoyl dehydrogenase 3.18576357751e-05 3.03595849903e-05 -1.4980507848e-06 +UniRef50_B2UX27 ATP phosphoribosyltransferase regulatory subunit 0.000369265408737 0.000343168439732 -2.6096969005e-05 +UniRef50_E4G4A0 8.87490624453e-05 0.00073257481342 0.000643825750975 +UniRef50_UPI0004628EFB hypothetical protein 0.000843817974988 0.00048327235487 -0.000360545620118 +UniRef50_F5M013 Phage integrase family protein 0.0163883479143 0.000279039406483 -0.0161093085078 +UniRef50_Q8FP97 Proline tRNA ligase 0.000155119067611 0.00519760659706 0.00504248752945 +UniRef50_B2TK67 Sterol regulatory element binding protein 0.00055678913232 0.00069033799591 0.00013354886359 +UniRef50_UPI00029B24E7 30S ribosomal protein S10 0.000121661376437 0.000967470368209 0.000845808991772 +UniRef50_Q02MJ3 Pyoverdine synthetase D 0.000264286330954 0.000391171544172 0.000126885213218 +UniRef50_A6LWJ6 0.000128251185346 0.000367867372334 0.000239616186988 +UniRef50_C1DKJ6 Type III pantothenate kinase 0.000724902498396 0.00124986842306 0.000524965924664 +UniRef50_Q0C348 Histidinol phosphate aminotransferase 2.01922765412e-05 2.57565274909e-05 5.5642509497e-06 +UniRef50_Q6F755 0.000252498989202 0.00784201618484 0.00758951719564 +UniRef50_UPI0003B54DE9 peptide chain release factor 3 2.10761379011e-05 9.10066435929e-05 6.99305056918e-05 +UniRef50_Q1J276 Acyl CoA dehydrogenase like protein 0.000672350459777 0.000204315377964 -0.000468035081813 +UniRef50_K5VLJ3 0.000286555936363 0.000137814154189 -0.000148741782174 +UniRef50_UPI000468B1D5 hypothetical protein 2.15993982242e-05 9.171725463e-06 -1.24276727612e-05 +UniRef50_UPI0003687009 hypothetical protein, partial 4.10014439316e-06 9.83316820012e-06 5.73302380696e-06 +UniRef50_R9VAP8 LysR family transcriptional regulator 0.000654260306819 0.00524283480283 0.00458857449601 +UniRef50_Q6GHY8 UPF0223 protein SAR1071 0.004844023293 0.0042067884795 -0.0006372348135 +UniRef50_D4I0J4 Protein CreA 2.30783372321e-05 1.59493724517e-05 -7.1289647804e-06 +UniRef50_Q6NAB4 1.23627546063e-05 3.80045506522e-05 2.56417960459e-05 +UniRef50_UPI0003664B75 hypothetical protein 0.000242451652096 1.43914308745e-05 -0.000228060221222 +UniRef50_I6TNU2 0.00135483613969 0.00207278156552 0.00071794542583 +UniRef50_A0A011NYR8 1.37240791457e-05 0.000364486060402 0.000350761981256 +UniRef50_A0A022NSH9 0.000277603564518 0.000134442192823 -0.000143161371695 +UniRef50_Q4FPU1 Imidazole glycerol phosphate synthase subunit HisH 0.000506182081834 1.05711113831e-05 -0.000495610970451 +UniRef50_A3M4F0 Transporter LysE family 0.000190649489319 0.00727538407615 0.00708473458683 +UniRef50_I0C381 1,4 dihydroxy 2 naphthoate polyprenyltransferase 0.0165060182837 0.00548337201447 -0.0110226462692 +UniRef50_UPI0003794EB4 hypothetical protein 0.000182562347908 2.90823985241e-05 -0.000153479949384 +UniRef50_Q8CQA3 Dihydrolipoyl dehydrogenase 0.0102468733009 0.00232993945533 -0.00791693384557 +UniRef50_UPI000363BDDF hypothetical protein 7.54909502641e-06 6.42635912814e-05 5.6714496255e-05 +UniRef50_Q9WYD1 Transaldolase 0.000191665019551 0.00156688825397 0.00137522323442 +UniRef50_F0S5S6 3.81689562598e-06 0.00016771912419 0.000163902228564 +UniRef50_A9A450 Malate dehydrogenase 2.86800635299e-05 7.82078191315e-06 -2.08592816167e-05 +UniRef50_R0DXB9 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 0.000819836513727 3.92725078927e-05 -0.000780564005834 +UniRef50_Q3HKN1 Hemolysin type calcium binding protein 0.00592265129916 0.00115913371379 -0.00476351758537 +UniRef50_UPI00046A80FC anthranilate synthase 6.87777030864e-06 1.40677714852e-05 7.19000117656e-06 +UniRef50_I6TXL9 0.00380837574833 0.00147658352597 -0.00233179222236 +UniRef50_UPI0003704CF4 hypothetical protein 1.56774465267e-05 0.000193727418557 0.00017804997203 +UniRef50_G3VGY4 0.000344884622118 3.87205276236e-05 -0.000306164094494 +UniRef50_Q9KNK2 33 kDa chaperonin 0.00218167187132 0.000808164301569 -0.00137350756975 +UniRef50_A0A023S0I7 Rod shape determining protein MreD 0.0012506844993 0.00123239839793 -1.828610137e-05 +UniRef50_Q9KVL7 Diaminopimelate decarboxylase 0.000489289122748 0.00743741344272 0.00694812431997 +UniRef50_B1LBM8 50S ribosomal protein L5 0.000727592398308 0.0482839205738 0.0475563281755 +UniRef50_UPI0003739253 hypothetical protein, partial 0.000316088626613 4.73148021591e-05 -0.000268773824454 +UniRef50_UPI0003EDF954 PREDICTED 2.86292100406e-05 2.77297029724e-05 -8.995070682e-07 +UniRef50_Q74LG2 CTP synthase 8.59428914546e-06 0.000167714476779 0.000159120187634 +UniRef50_Q6F9J2 Coenzyme PQQ synthesis protein B 0.000178777062219 0.00568493917273 0.00550616211051 +UniRef50_UPI0003679109 hypothetical protein 3.49580104331e-05 6.0754970392e-05 2.57969599589e-05 +UniRef50_P31049 Probable fatty acid methyltransferase 0.00104239874653 0.000698168724668 -0.000344230021862 +UniRef50_Q1IYR1 NH dependent NAD(+) synthetase 0.000170968813824 0.00563738763957 0.00546641882575 +UniRef50_P39671 Phosphoglucomutase 0.00551805352326 0.000275775041881 -0.00524227848138 +UniRef50_UPI00036E3AFC hypothetical protein 4.49338876866e-06 0.000270740211807 0.000266246823038 +UniRef50_Q0IAT1 Two component response regulator 0.000503434517162 0.00606694230887 0.00556350779171 +UniRef50_W1WM64 0.00106453343623 0.000250064482336 -0.000814468953894 +UniRef50_G5LNV5 Respiratory nitrate reductase alpha chain 4.90081520632e-05 1.71178924762e-05 -3.1890259587e-05 +UniRef50_M4YXM6 0.00396904435117 0.00415223072005 0.00018318636888 +UniRef50_Q2NQH3 Rhomboid protease GlpG 0.00478841872084 0.00124037835444 -0.0035480403664 +UniRef50_N0GIW3 1.14716156977e-05 1.78567583231e-05 6.3851426254e-06 +UniRef50_F2NB99 Nucleoside ABC transporter membrane protein 0.00147087608227 0.00330624730476 0.00183537122249 +UniRef50_UPI00046AD244 carbonic anhydrase 9.04369490869e-06 9.66183071032e-06 6.1813580163e-07 +UniRef50_UPI0004626526 hypothetical protein 5.84583158743e-06 4.62241011753e-05 4.03782695879e-05 +UniRef50_P27897 UTP glucose 1 phosphate uridylyltransferase 0.000383970746052 0.00026117075777 -0.000122799988282 +UniRef50_P22256 4 aminobutyrate aminotransferase GabT 0.0122335533159 0.00539273839892 -0.00684081491698 +UniRef50_Q9RU94 NADH quinone oxidoreductase subunit H 9.52825487377e-06 0.0260376145002 0.0260280862453 +UniRef50_A6TI09 Probable phosphoglycerate mutase GpmB 0.00277235416766 0.000329024001791 -0.00244333016587 +UniRef50_A6F5Z7 NAD dependent 4 hydroxybutyrate dehydrogenase 0.00567942515837 0.000130722835427 -0.00554870232294 +UniRef50_E8SH67 Zn peptidase with DNA binding domain 0.0111030342812 0.00207493502593 -0.00902809925527 +UniRef50_UPI0003B5F4E2 N acetyl gamma glutamyl phosphate reductase 1.966641144e-05 2.27919884659e-05 3.1255770259e-06 +UniRef50_Q89WH6 Blr0711 protein 0.000112884760857 1.66103549201e-05 -9.62744059369e-05 +UniRef50_G9MRN8 0.000472227014612 9.87080454821e-06 -0.000462356210064 +UniRef50_I0C7B0 ATP dependent dethiobiotin synthetase BioD 0.0147915496597 0.00128502006866 -0.013506529591 +UniRef50_UPI000328AD5C 2.88292949224e-05 4.18144497047e-05 1.29851547823e-05 +UniRef50_UPI0003A730C5 pyruvate kinase 1.67044562134e-05 6.745549335e-06 -9.9589068784e-06 +UniRef50_UPI00044428D0 PREDICTED 5.30260981272e-06 4.45303386968e-05 3.92277288841e-05 +UniRef50_F9I1V8 0.00300182514456 0.000787002116894 -0.00221482302767 +UniRef50_UPI0003B495EE exonuclease subunit SbcD 8.0532360051e-06 1.79453086473e-05 9.8920726422e-06 +UniRef50_Q5WHY0 Glucosamine 6 phosphate deaminase 6.28482314263e-06 0.00419083756032 0.00418455273718 +UniRef50_I3U5U5 Mobilization protein C 0.113317013222 0.0618804861852 -0.0514365270368 +UniRef50_UPI0003734C10 hypothetical protein 0.0011202885584 0.000180420100493 -0.000939868457907 +UniRef50_UPI00047099BD hypothetical protein 7.58028491194e-06 3.43928733877e-05 2.68125884758e-05 +UniRef50_A4XUQ2 0.000641980769516 0.00112508861926 0.000483107849744 +UniRef50_P48812 Glyceraldehyde 3 phosphate dehydrogenase 9.55543030906e-06 8.1817438777e-06 -1.37368643136e-06 +UniRef50_K9NNF0 LysR family transcriptional regulator 0.000275537218136 0.000398179827223 0.000122642609087 +UniRef50_Q8X5L9 Endoglucanase 0.0044222616687 0.0006994108916 -0.0037228507771 +UniRef50_O54537 Glucose 6 phosphate 1 dehydrogenase 1.06819159075e-05 0.00436204469986 0.00435136278395 +UniRef50_Q2CB82 7.55593300012e-06 1.47404604022e-05 7.18452740208e-06 +UniRef50_H3NTE5 3.239869152e-05 2.62876213621e-05 -6.1110701579e-06 +UniRef50_Q8DWT2 Membrane protein, putative 0.000195790967962 7.13038322365e-05 -0.000124487135725 +UniRef50_Q6GFS7 RNA polymerase sigma factor SigS 0.0115843250797 0.0021644985149 -0.0094198265648 +UniRef50_X4ZMG7 Enoyl reductase family protein 6.46704411723e-05 0.00015791583324 9.32453920677e-05 +UniRef50_Q3HKI6 TraI 0.0282669681769 0.00664516987275 -0.0216217983042 +UniRef50_A9FGM6 PhoH family protein 0.00679385006258 0.00406179090732 -0.00273205915526 +UniRef50_U5MSH8 Signal transduction and transcriptional control protein Stc 0.000628883106539 0.0014520799739 0.000823196867361 +UniRef50_P0CF89 Transposase InsI for insertion sequence element IS30C 0.00484720797524 0.00184781077051 -0.00299939720473 +UniRef50_Q9RSL3 50S ribosomal protein L6 0.000220752040266 0.0500645173627 0.0498437653224 +UniRef50_U3AK46 Hypotheical conserved protein 0.000597651633194 0.000303079901881 -0.000294571731313 +UniRef50_P0ABH6 Rod shape determining protein MreD 0.00103727625684 0.00154491510429 0.00050763884745 +UniRef50_S5XQY4 Cytochrome b561 0.00116432762227 0.0011852192031 2.089158083e-05 +UniRef50_UPI0003825EF9 hypothetical protein 7.04998149293e-06 1.14304381484e-05 4.38045665547e-06 +UniRef50_Q6A834 8.16151459085e-05 0.00140275108861 0.0013211359427 +UniRef50_UPI0004744DBC hypothetical protein 3.91432963682e-05 9.22235361923e-05 5.30802398241e-05 +UniRef50_A4VSE4 3 methyladenine DNA glycosylase 0.00910898931407 0.00336191686088 -0.00574707245319 +UniRef50_A6L4N0 2 aminoethylphosphonate pyruvate transaminase 1.77471256079e-05 0.0018467462766 0.00182899915099 +UniRef50_Q9L6R5 UDP N acetylglucosamine 2 epimerase 6.08051888097e-06 5.33762701444e-05 4.72957512634e-05 +UniRef50_G9ZVF4 7.09681836332e-05 6.4194085199e-05 -6.7740984342e-06 +UniRef50_J9JHL4 0.000372691554418 0.000355465398277 -1.7226156141e-05 +UniRef50_D8TYM2 4.28697862213e-06 5.15758783423e-06 8.706092121e-07 +UniRef50_UPI00036C70D3 hypothetical protein 1.91671464743e-05 5.66684041263e-06 -1.35003060617e-05 +UniRef50_F0N5W3 Rhodanese domain protein 0.000185648846977 0.000272175910237 8.652706326e-05 +UniRef50_B9GC78 Os12g0188566 protein 6.34711525125e-05 0.000133008534525 6.95373820125e-05 +UniRef50_W8ZGJ2 0.000183245625651 0.000286715247755 0.000103469622104 +UniRef50_A6M046 Transcriptional regulator, TetR family 0.000183840578989 0.00111398945006 0.000930148871071 +UniRef50_Q8DRN9 0.00207808048828 0.00371757178312 0.00163949129484 +UniRef50_UPI000475D486 pseudouridine synthase 0.0001224482672 5.48829504709e-05 -6.75653167291e-05 +UniRef50_B2S7V7 Glyoxalase Bleomycin resistance protein 0.00591721865607 0.000450865198773 -0.0054663534573 +UniRef50_UPI00035ECC54 hypothetical protein 1.00138563831e-05 1.39230182398e-05 3.9091618567e-06 +UniRef50_UPI00037E3E52 hypothetical protein 5.40514946274e-05 3.91999289988e-05 -1.48515656286e-05 +UniRef50_Q9HXZ1 DNA polymerase III subunit alpha 0.000709095521666 0.000674647887156 -3.444763451e-05 +UniRef50_A6M0Z1 Methyl accepting chemotaxis sensory transducer 0.00108619768978 0.00114994972905 6.375203927e-05 +UniRef50_C7IW70 Os01g0561500 protein 0.00013129895143 0.000251946170197 0.000120647218767 +UniRef50_B2TPI9 0.00043543623929 0.000204371422282 -0.000231064817008 +UniRef50_P75883 0.00177561483703 6.40590329834e-05 -0.00171155580405 +UniRef50_V4REQ5 Bacteriophytochrome heme oxygenase BphO 2.89382400061e-05 2.79350992374e-05 -1.0031407687e-06 +UniRef50_UPI0002000915 NRPS siderophore biosynthesis protein 3.22637597309e-05 0.000106962200756 7.46984410251e-05 +UniRef50_Q54430 Sucrose operon repressor 0.00405992107902 0.00178205600625 -0.00227786507277 +UniRef50_A6LTD5 Lipoprotein, putative 0.000113359155811 0.00172308340428 0.00160972424847 +UniRef50_Q2FJI0 Methionine import ATP binding protein MetN 1 0.0247257056837 0.00673051906752 -0.0179951866162 +UniRef50_UPI000470E6C8 hypothetical protein 1.11705950525e-05 3.42235449316e-05 2.30529498791e-05 +UniRef50_P39636 Amino acid permease RocC 0.00122384584998 0.00162295916673 0.00039911331675 +UniRef50_A7GKI0 Phosphoribosylformylglycinamidine cyclo ligase 2.43998777417e-06 9.46726695737e-06 7.0272791832e-06 +UniRef50_P22608 Type 4 fimbrial assembly protein PilB 0.00169203240639 0.00096174613359 -0.0007302862728 +UniRef50_UPI0003627506 Cro Cl family transcriptional regulator 0.000171136209819 2.18980312572e-05 -0.000149238178562 +UniRef50_C1D205 Putative diguanylate cyclase 3.16548291664e-06 0.00013168081389 0.000128515330973 +UniRef50_Q9KU46 Lipoprotein signal peptidase 1.86195772501e-05 1.70684160959e-05 -1.5511611542e-06 +UniRef50_I6Y4U3 NAD dependent malic enzyme 1.37917729531e-05 1.28807427933e-05 -9.110301598e-07 +UniRef50_E0DCF6 0.00051445369767 0.0182942495379 0.0177797958402 +UniRef50_K0WMD7 Glycosyltransferase 0.00151054400983 0.000208213893202 -0.00130233011663 +UniRef50_W7VMD9 Peptidase M23 0.000146481743545 0.000227616506777 8.1134763232e-05 +UniRef50_UPI0004724D89 hypothetical protein 3.92340660451e-06 4.95742120871e-06 1.0340146042e-06 +UniRef50_C6S911 Deoxyribodipyrimidine photolyase 8.87506243427e-05 0.0025977328384 0.00250898221406 +UniRef50_X5MKP4 FIG003603 1.67802005625e-06 4.41277098959e-06 2.73475093334e-06 +UniRef50_UPI00047E4FB4 hypothetical protein 0.000164687805049 0.000166464014484 1.776209435e-06 +UniRef50_A6LX64 ABC transporter related 0.000584154764232 0.00139860132819 0.000814446563958 +UniRef50_U4VGY9 0.000106436640526 2.16645479638e-05 -8.47720925622e-05 +UniRef50_A0A024E6B6 Cytochrome B561 0.00174259606357 0.00137356607068 -0.00036902999289 +UniRef50_UPI00046BD92F PREDICTED 6.17918487358e-05 7.85352274896e-06 -5.39383259868e-05 +UniRef50_A9M1B3 Potassium uptake protein 0.000381960850639 0.00310080548537 0.00271884463473 +UniRef50_P0A9J2 Ribonuclease G 0.00426004794361 0.00792478167688 0.00366473373327 +UniRef50_C7ZY18 0.0049096229059 0.00112567615605 -0.00378394674985 +UniRef50_P69955 Low calcium response locus protein D 0.000410352372292 0.000549664559346 0.000139312187054 +UniRef50_T1JU83 7.86192350507e-06 1.88855631107e-05 1.10236396056e-05 +UniRef50_B0TEJ5 1 deoxy D xylulose 5 phosphate synthase 1.98501182392e-06 0.000357841472046 0.000355856460222 +UniRef50_R6STG9 Putative glutamate binding periplasmic protein 8.94101527327e-06 0.000357524488061 0.000348583472788 +UniRef50_O67546 Succinyl CoA ligase [ADP forming] subunit beta 8.42002469031e-06 3.66883338309e-05 2.82683091406e-05 +UniRef50_F0YAV0 Expressed protein 8.76257844775e-05 3.23736101786e-05 -5.52521742989e-05 +UniRef50_UPI00016C49DC histidinol phosphate phosphatase, putative 6.01969953508e-06 0.000152555607759 0.000146535908224 +UniRef50_Q08653 Anthranilate synthase component 1 7.72206193387e-06 0.000312795323146 0.000305073261212 +UniRef50_A6M2V0 Methyl accepting chemotaxis sensory transducer 0.00041346384146 0.00150171352841 0.00108824968695 +UniRef50_UPI0003AE1EC3 PREDICTED 3.15622314758e-06 7.54000098382e-05 7.22437866906e-05 +UniRef50_Q2FIM4 Epimerase family protein SAUSA300_0753 0.0219596516598 0.00538802337317 -0.0165716282866 +UniRef50_UPI0003752D61 hypothetical protein 0.00150102311343 0.000644566176804 -0.000856456936626 +UniRef50_Q9HWF9 Bacterioferritin 0.00289881212598 0.000322489892283 -0.0025763222337 +UniRef50_F9Z1G0 DNA primase 6.05592495497e-05 0.00698334080533 0.00692278155578 +UniRef50_K4RZ48 5.02644459164e-05 4.72510527858e-06 -4.55393406378e-05 +UniRef50_V9U4M1 0.000129534797437 0.000738291762994 0.000608756965557 +UniRef50_C7ZTX4 SSS sodium solute transporter superfamily protein 0.00955989008909 0.00604764664588 -0.00351224344321 +UniRef50_UPI0002F68D16 hypothetical protein 8.30130371985e-06 3.52691292777e-05 2.69678255579e-05 +UniRef50_A3DK16 Diaminopimelate epimerase 4.77606624477e-06 1.75014019244e-05 1.27253356796e-05 +UniRef50_F9YXC7 0.000199381964576 0.0057706712088 0.00557128924422 +UniRef50_P69740 Hydrogenase 1 small chain 0.00353433071634 4.85548468854e-05 -0.00348577586945 +UniRef50_J9NRS4 8.86811250236e-05 1.11866619574e-05 -7.74944630662e-05 +UniRef50_A1VYJ5 DNA directed RNA polymerase subunit beta 3.35481735234e-06 1.46557461534e-06 -1.889242737e-06 +UniRef50_Q28M41 Kef type potassium proton antiporter, CPA2 family 0.00171619171337 0.000991779207053 -0.000724412506317 +UniRef50_P0A9H6 Cobyrinic acid a,c diamide adenosyltransferase 0.00494984621138 0.00188839693665 -0.00306144927473 +UniRef50_UPI000466B185 hydrolase 1.15889222849e-05 8.06826111519e-05 6.9093688867e-05 +UniRef50_UPI0004738B15 MFS transporter 1.00781317642e-05 4.12420822351e-05 3.11639504709e-05 +UniRef50_Q9RCA1 DNA polymerase III subunit beta 0.0188437795847 0.00767141116464 -0.0111723684201 +UniRef50_A8GHR1 Putative multidrug resistance protein MdtD 0.0010995547975 0.000178439096792 -0.000921115700708 +UniRef50_UPI00016A58F4 hypothetical protein, partial 7.11546619533e-05 0.000219928727789 0.000148774065836 +UniRef50_P76345 Cytochrome b561 homolog 1 0.00496316258967 0.000364588524928 -0.00459857406474 +UniRef50_A0A023VMN5 DNA polymerase III subunit epsilon 0.000386834771105 0.00410034998887 0.00371351521777 +UniRef50_UPI00036CE3D7 hypothetical protein, partial 3.86987674786e-05 7.71998788235e-06 -3.09787795963e-05 +UniRef50_A0A024GR22 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763 0.000518041383486 0.00256615948379 0.0020481181003 +UniRef50_Q7VGX8 Isoleucine tRNA ligase 8.22413465362e-05 0.00245674715692 0.00237450581038 +UniRef50_G1P8T6 7.97070917265e-06 5.21797079207e-06 -2.75273838058e-06 +UniRef50_B1ZT49 Tryptophan synthase alpha chain 6.67968532493e-06 9.08665724165e-06 2.40697191672e-06 +UniRef50_C9X0B4 Cystathionine beta lyase 0.000177501248674 0.00252986390946 0.00235236266079 +UniRef50_UPI0004680597 hypothetical protein 1.52544471013e-05 1.56314532927e-05 3.770061914e-07 +UniRef50_P59019 3 isopropylmalate dehydratase small subunit 1.04805145886e-05 1.53438588772e-05 4.8633442886e-06 +UniRef50_G7D6B1 0.00102521133079 0.000435895748475 -0.000589315582315 +UniRef50_D0K7S8 0.00558332118742 5.59379743674e-05 -0.00552738321305 +UniRef50_A8WP91 Probable medium chain specific acyl CoA dehydrogenase 2, mitochondrial 3.03142666471e-06 2.21974185725e-05 1.91659919078e-05 +UniRef50_P07654 Phosphate transport system permease protein PstA 0.00228669852005 0.000292392777421 -0.00199430574263 +UniRef50_UPI00046BF57D PREDICTED 1.38818464288e-05 1.00907034622e-05 -3.7911429666e-06 +UniRef50_D5AUV7 1.60777963965e-05 1.24047297343e-05 -3.6730666622e-06 +UniRef50_E6WAB3 Thymidine phosphorylase 0.000428519336342 0.00066356430709 0.000235044970748 +UniRef50_P16919 Protein RhsD 0.00484954582135 0.000996077702367 -0.00385346811898 +UniRef50_Q8CNS3 Integrase 0.00785160938702 0.00179204034191 -0.00605956904511 +UniRef50_UPI00038257CA hypothetical protein 6.83880852264e-06 2.36795046223e-05 1.68406960997e-05 +UniRef50_B3E616 Phosphoribosyl ATP pyrophosphatase 0.000111853768214 4.81819890207e-05 -6.36717791933e-05 +UniRef50_UPI000255D14E uracil xanthine permease 2.53026562798e-05 6.7637007731e-05 4.23343514512e-05 +UniRef50_A0A011PEE7 0.00424676589076 0.000595872852833 -0.00365089303793 +UniRef50_Q2J8T7 NAD NADP transhydrogenase alpha subunit like 1.83450686689e-05 2.68237798202e-05 8.4787111513e-06 +UniRef50_X1LFP4 Marine sediment metagenome DNA, contig 1.92213537492e-05 8.89434529748e-05 6.97220992256e-05 +UniRef50_F5H1R7 Protein FLJ22184 1.07167977419e-06 3.61869434395e-06 2.54701456976e-06 +UniRef50_B5YJV0 GTP cyclohydrolase 1 0.000212070780251 0.00259996471084 0.00238789393059 +UniRef50_I6SZZ6 Glutathione synthase 0.00107632511589 0.000671756349428 -0.000404568766462 +UniRef50_A4IWK9 Ribonuclease 3 7.55124492991e-06 1.45028689935e-05 6.95162406359e-06 +UniRef50_P0AAD4 Tyrosine specific transport protein 0.00198736736912 0.000242394012474 -0.00174497335665 +UniRef50_UPI0004573F1D PREDICTED 0.000165041695185 1.74606595238e-05 -0.000147581035661 +UniRef50_UPI0003805ECB hypothetical protein 2.79384434769e-05 2.26324843107e-05 -5.3059591662e-06 +UniRef50_G5LNP8 Glucans biosynthesis protein G 3.93808099937e-05 0.000217783843728 0.000178403033734 +UniRef50_A6LZ85 O acetylhomoserine aminocarboxypropyltransferase 0.000867498566062 0.00192631588812 0.00105881732206 +UniRef50_Q04LT6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.38650992893e-06 0.00346756180107 0.00346617529114 +UniRef50_I6U4A9 0.00263590785676 4.48588694827e-05 -0.00259104898728 +UniRef50_A0A017HQJ0 Mobile element protein 0.000104471362314 3.02093758868e-05 -7.42619864272e-05 +UniRef50_Q49UU5 UPF0355 protein SSP2326 0.00296687845538 0.000437506229925 -0.00252937222545 +UniRef50_Q1JF79 ComE operon protein 2 0.00635302784126 0.00582690077184 -0.00052612706942 +UniRef50_Q93GF3 Rep 0.410004761703 0.131513750747 -0.278491010956 +UniRef50_A1U4H5 D 3 phosphoglycerate dehydrogenase 0.000159726088367 0.0076288399733 0.00746911388493 +UniRef50_B6VK40 Type iii secretion component protein sctt 0.000472631611028 0.000519520793169 4.6889182141e-05 +UniRef50_UPI00036474E6 hypothetical protein 2.34510016302e-06 1.77062695784e-05 1.53611694154e-05 +UniRef50_P0ADM6 0.00285776723549 0.000336863161818 -0.00252090407367 +UniRef50_U7R6W7 4.19126630413e-05 2.4592809316e-05 -1.73198537253e-05 +UniRef50_E3I502 Oligoendopeptidase, pepF M3 family 0.00998412673087 0.00221708312703 -0.00776704360384 +UniRef50_R6WGW0 Macro domain protein 3.80640496571e-06 1.72239453829e-05 1.34175404172e-05 +UniRef50_UPI0003661C28 hypothetical protein, partial 1.14581658908e-05 2.56216461218e-05 1.4163480231e-05 +UniRef50_A0YRN0 Putative transposase 1.08015430708e-05 0.00101446595357 0.0010036644105 +UniRef50_Q1GHV9 YjeF related protein like protein 1.9045333418e-05 1.73331521479e-05 -1.7121812701e-06 +UniRef50_A0A023YXN9 Type 1 fimbriae anchoring protein FimD 0.000403664049756 6.78369154289e-05 -0.000335827134327 +UniRef50_Q4L8X8 Ppx GppA, Ppx GppA phosphatase family protein 0.00819689273811 0.00144506122901 -0.0067518315091 +UniRef50_B0V1R4 Novel protein 0.000316928750669 0.000185173704217 -0.000131755046452 +UniRef50_B9KPX1 Periplasmic binding protein LacI transcriptional regulator 0.0127659845375 0.00165325258792 -0.0111127319496 +UniRef50_C7ZSW5 ABC transporter 0.0122512577802 0.00142808143217 -0.010823176348 +UniRef50_D8JP76 0.000129720271086 0.00593238323664 0.00580266296555 +UniRef50_I6TX73 Acetyltransferase 0.00215644753586 0.000596599404435 -0.00155984813143 +UniRef50_P51995 NAD transhydrogenase subunit alpha part 2 2.01399775711e-05 0.000791140163099 0.000771000185528 +UniRef50_C5N4H6 0.0152087068687 0.00326213299753 -0.0119465738712 +UniRef50_R6RWM5 Prophage LambdaSa04 DNA polymerase 0.00017104095588 0.00499753408088 0.004826493125 +UniRef50_Q9JY85 0.000267431008715 0.0021931560169 0.00192572500819 +UniRef50_A4WW73 0.00491223134508 0.00109832298906 -0.00381390835602 +UniRef50_UPI00016AAA4C MFS transporter 5.30389645485e-06 8.14194767184e-06 2.83805121699e-06 +UniRef50_Q46915 Glucarate dehydratase related protein 0.00468365670371 0.000743707890032 -0.00393994881368 +UniRef50_Q5HRD9 AIR carboxylase, putative 0.0103709130938 0.00367530658485 -0.00669560650895 +UniRef50_Q3IW48 0.00535357754704 0.000816543885337 -0.0045370336617 +UniRef50_J9NUI2 4.69515057499e-05 5.01796159812e-05 3.2281102313e-06 +UniRef50_UPI0003B47644 ABC transporter 1.83672405538e-05 0.000103730443885 8.53632033312e-05 +UniRef50_A8LE21 Peptide deformylase 1.696153339e-05 0.000193122815757 0.000176161282367 +UniRef50_UPI0003B50607 MarR family transcriptional regulator, partial 3.0900146007e-05 8.12584791168e-05 5.03583331098e-05 +UniRef50_A0A023L4E6 Multidrug transporter membrane component ATP binding component 0.00117657751455 0.000145356868839 -0.00103122064571 +UniRef50_G8AI77 0.00229120217543 0.00129545146294 -0.00099575071249 +UniRef50_W7WQX4 0.000798181908449 0.000330170971717 -0.000468010936732 +UniRef50_UPI00036C7DC7 hypothetical protein 6.15263919252e-05 9.07270591586e-05 2.92006672334e-05 +UniRef50_UPI0003B4B204 hypothetical protein 1.84678636003e-05 2.95382614627e-05 1.10703978624e-05 +UniRef50_P76518 0.00334107914555 0.000762727160681 -0.00257835198487 +UniRef50_O32177 3 ketoacyl CoA thiolase 0.000121238847423 0.0342031515765 0.0340819127291 +UniRef50_Q6MGU4 Nucleoside diphosphate kinase 7.25805057486e-05 4.44787777822e-05 -2.81017279664e-05 +UniRef50_P76514 0.00182054674941 0.000716176659606 -0.0011043700898 +UniRef50_Q7P1W4 7.6165503042e-05 7.23003177589e-06 -6.89354712661e-05 +UniRef50_E0SN31 Oxidoreductase 0.000315976689791 0.000193650298495 -0.000122326391296 +UniRef50_B4EH82 Catalase related peroxidase 0.000335375767292 0.00475938632788 0.00442401056059 +UniRef50_H8FXV9 0.000810729358581 0.00447904146487 0.00366831210629 +UniRef50_M9VA45 0.000159138626748 0.00593386507711 0.00577472645036 +UniRef50_B7V4I1 LPS assembly protein LptD 0.000511203357662 0.000488725577381 -2.2477780281e-05 +UniRef50_Q8CU34 ABC transporter 0.0106969552657 0.00372461379786 -0.00697234146784 +UniRef50_C6B907 NAD dependent epimerase dehydratase 0.00221361893687 0.000365877338409 -0.00184774159846 +UniRef50_Q88EH6 Acetyl coenzyme A synthetase 1 0.0151427980615 0.00319060675343 -0.0119521913081 +UniRef50_A0A059LIS0 7.28405287655e-06 7.52696297692e-05 6.79855768927e-05 +UniRef50_Q00X46 WGS project CAID00000000 data, contig chromosome 13 7.27289578742e-07 6.60833575544e-07 -6.6456003198e-08 +UniRef50_S6ASW9 0.000215831558213 3.58999369761e-05 -0.000179931621237 +UniRef50_UPI0002D680F8 hydroxymethylglutaryl CoA lyase 2.5264454022e-06 1.56204284232e-05 1.3093983021e-05 +UniRef50_G4MEB0 Protein containing domains DUF404, DUF407 5.63163527146e-06 1.66738390577e-05 1.10422037862e-05 +UniRef50_A1AYY2 Phage major capsid protein, HK97 family 0.0103398344141 0.00274959383635 -0.00759024057775 +UniRef50_I0C4W3 Enterotoxin 0.00835627548538 0.00133541063328 -0.0070208648521 +UniRef50_B2GK44 2.24052420409e-06 1.46040817952e-05 1.23635575911e-05 +UniRef50_A8ZUK6 Tyrosine tRNA ligase 3.48333187251e-05 2.39419345286e-05 -1.08913841965e-05 +UniRef50_UPI00047522DD hypothetical protein 6.79500627155e-06 5.34219322439e-05 4.66269259723e-05 +UniRef50_F9PNH7 RDD family protein 4.20792043256e-05 3.98273878766e-05 -2.251816449e-06 +UniRef50_R6Q8V3 O 6 methylguanine DNA methyltransferase 0.00397910536368 0.000592608772976 -0.0033864965907 +UniRef50_A7X782 Pyrrolidone carboxylate peptidase 0.012958682208 0.00377134784834 -0.00918733435966 +UniRef50_A7HQ81 Thioesterase superfamily protein 6.61333752309e-06 9.71734329914e-06 3.10400577605e-06 +UniRef50_Q722V6 Homoserine O acetyltransferase 3.23983775801e-05 0.000650659733354 0.000618261355774 +UniRef50_E5S583 Glycine cleavage system H protein 1.1053599948e-05 7.95195916018e-06 -3.10164078782e-06 +UniRef50_W8Z324 0.000178596510549 0.000107780104746 -7.0816405803e-05 +UniRef50_D3HCJ2 2 isopropylmalate synthase 0.0325299845153 0.0102834088525 -0.0222465756628 +UniRef50_A3DJH8 30S ribosomal protein S3 0.000237412571605 0.00110541003727 0.000867997465665 +UniRef50_T2E8G6 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 0.000711361824182 0.000272181295113 -0.000439180529069 +UniRef50_U7JH15 2.85594305966e-05 9.55191819211e-05 6.69597513245e-05 +UniRef50_S9Q8I1 3.18800240954e-06 1.44620329834e-06 -1.7417991112e-06 +UniRef50_UPI0003497FAE hypothetical protein 4.60002496307e-06 2.35791847876e-05 1.89791598245e-05 +UniRef50_A7GB27 Transcriptional regulator, AraC family 0.00100509758833 0.000385195702433 -0.000619901885897 +UniRef50_UPI0004687B18 hypothetical protein 3.4445770466e-06 4.0115550257e-05 3.66709732104e-05 +UniRef50_D2UWK2 Probable membrane protein 0.00103126608158 0.000412069821193 -0.000619196260387 +UniRef50_P23862 Primosomal replication protein N 0.0010358695633 0.00067500961187 -0.00036085995143 +UniRef50_L1KG88 0.0103058147219 0.000199340585259 -0.0101064741366 +UniRef50_U8CNV5 0.000303339457655 0.000451305691949 0.000147966234294 +UniRef50_Q88U22 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00789963687168 0.00533031842319 -0.00256931844849 +UniRef50_G0DXB0 0.000128834808487 0.00402822417894 0.00389938937045 +UniRef50_UPI0004548C9D 7.26695443163e-05 0.000172100242396 9.94306980797e-05 +UniRef50_P0A232 Phospholipase A1 0.00180049533662 9.0168451203e-05 -0.00171032688542 +UniRef50_F3LPE7 Outer membrane autotransporter 0.000152372987829 0.00010047976645 -5.1893221379e-05 +UniRef50_O26834 Putative nickel responsive regulator 2 0.000561939947183 0.000387724339418 -0.000174215607765 +UniRef50_UPI00037DF050 hypothetical protein 2.65827695857e-05 6.02606020945e-06 -2.05567093762e-05 +UniRef50_Q9ZJU5 Anthranilate synthase component 1 3.17734809777e-06 0.00700497237441 0.00700179502631 +UniRef50_U5RZU5 0.000118210643688 0.00227849388766 0.00216028324397 +UniRef50_M4MKF6 0.000132993263525 4.86892572658e-05 -8.43040062592e-05 +UniRef50_G4STG9 Pyrophosphate fructose 6 phosphate 1 phosphotransferase 0.000484937658063 0.00694317847354 0.00645824081548 +UniRef50_F3WSY6 MazG family protein 1.71453090991e-05 1.43330302478e-05 -2.8122788513e-06 +UniRef50_UPI00047EE3D3 hypothetical protein 1.3724154624e-05 4.2644265968e-05 2.8920111344e-05 +UniRef50_UPI00047A45E7 hypothetical protein 3.1945837796e-06 4.54948336944e-06 1.35489958984e-06 +UniRef50_Q92GE0 3 oxoacyl [acyl carrier protein] reductase FabG 0.00563328565342 0.00190110756164 -0.00373217809178 +UniRef50_UPI000366025E MULTISPECIES 6.0343034299e-06 1.17576622643e-05 5.7233588344e-06 +UniRef50_O07329 Catabolite control protein A 0.00775324485625 0.00143682834209 -0.00631641651416 +UniRef50_Q03UU4 Ketol acid reductoisomerase 1.61763794219e-05 4.76643938576e-05 3.14880144357e-05 +UniRef50_C6PR80 8.59958840324e-06 0.000837314712711 0.000828715124308 +UniRef50_G4B1K2 Transcription repair coupling factor 7.67656962516e-06 2.51827087108e-05 1.75061390856e-05 +UniRef50_A4IS03 S ribosylhomocysteine lyase 1.37257987945e-05 0.00149446556353 0.00148073976474 +UniRef50_A0A011NLS4 2.65868900793e-06 0.000162134824985 0.000159476135977 +UniRef50_Q59094 Superoxide dismutase [Mn] 1.11953640826e-05 7.67772889463e-05 6.55819248637e-05 +UniRef50_A4WT79 Proton translocating NADH quinone oxidoreductase, chain M 0.00322850470546 0.000520835782613 -0.00270766892285 +UniRef50_P23621 Phosphate regulon sensor protein PhoR 0.000993159616954 0.00105765974777 6.4500130816e-05 +UniRef50_B9E752 1.47793850838e-05 1.7308604313e-05 2.5292192292e-06 +UniRef50_S5YGB9 0.00757046076543 0.00443825608546 -0.00313220467997 +UniRef50_B9E750 0.0100627651212 0.00291008267101 -0.00715268245019 +UniRef50_A3NT46 Oxygen dependent coproporphyrinogen III oxidase 0.00076262879123 0.000206756152991 -0.000555872638239 +UniRef50_UPI00034B714A hypothetical protein 1.99770194631e-05 6.26937490907e-06 -1.3707644554e-05 +UniRef50_I6STQ9 0.00960206659121 0.00405190869683 -0.00555015789438 +UniRef50_U4TS42 Phosphorylase 0.00233377451391 0.00171165407588 -0.00062212043803 +UniRef50_G4LBK7 Two component sensor 0.00038118130373 0.000244184573207 -0.000136996730523 +UniRef50_UPI0003F8C513 acetolactate synthase 1.24514609108e-05 0.000331298606118 0.000318847145207 +UniRef50_S0L1H4 Diphosphomevalonate decarboxylase 0.0224097743413 0.00827111886757 -0.0141386554737 +UniRef50_UPI00037B22BE hypothetical protein 5.60411553498e-06 2.28570770593e-05 1.72529615243e-05 +UniRef50_A6TQQ4 2.41172753023e-05 3.71459436328e-05 1.30286683305e-05 +UniRef50_G7SBD4 0.00528946620781 0.00519678615034 -9.268005747e-05 +UniRef50_J9NTF4 3.48785187238e-05 0.000126663710155 9.17851914312e-05 +UniRef50_P31440 Adenine permease AdeQ 0.003833588985 0.00112276001969 -0.00271082896531 +UniRef50_UPI00037ECA28 hypothetical protein, partial 0.000150557666723 4.11869905611e-05 -0.000109370676162 +UniRef50_UPI00035E1B99 hypothetical protein 1.41812304231e-05 2.08689040547e-05 6.6876736316e-06 +UniRef50_A4T5H7 7.58097985609e-06 0.000152733662239 0.000145152682383 +UniRef50_P15977 4 alpha glucanotransferase 0.00302820226699 0.00118934239425 -0.00183885987274 +UniRef50_I4N9F9 Lipoprotein 0.000169982398226 0.000225488709275 5.5506311049e-05 +UniRef50_A0KCX4 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.000134336650837 0.00020994078568 7.5604134843e-05 +UniRef50_D3H3M8 0.00187379828837 0.000337504805945 -0.00153629348243 +UniRef50_E8U8Y0 Oligoendopeptidase F 6.4971770888e-05 0.0283176471771 0.0282526754062 +UniRef50_W4TXL6 Iron ABC transporter 0.000493445737057 0.00179578795789 0.00130234222083 +UniRef50_A1B3M6 0.00215590058288 0.000359858680012 -0.00179604190287 +UniRef50_Q9I5L2 0.00249770293208 0.00122523496665 -0.00127246796543 +UniRef50_Q9I5L3 0.0025091048076 0.0015206475195 -0.0009884572881 +UniRef50_A6LZM7 ABC transporter related 0.000612118787511 0.00176004050141 0.0011479217139 +UniRef50_UPI00047CD6DA hypothetical protein 0.000161038052937 0.000521836076233 0.000360798023296 +UniRef50_Q9TKX3 Sulfate thiosulfate import ATP binding protein CysA 1.48581398574e-05 3.79247889356e-05 2.30666490782e-05 +UniRef50_D5AUK2 Transcriptional regulator, GntR family 0.000113245796655 0.000161669729117 4.8423932462e-05 +UniRef50_Q14VU5 ORF13 1.93518972071e-06 1.94596379658e-05 1.75244482451e-05 +UniRef50_UPI0003B67745 exonuclease, partial 2.50358626704e-05 1.97468816337e-05 -5.2889810367e-06 +UniRef50_D5ANZ3 Cytochrome b 0.0126426079407 0.0033334568963 -0.0093091510444 +UniRef50_Q5HQP3 0.00121954699548 0.000916896867559 -0.000302650127921 +UniRef50_C8NEG6 ABC transporter, substrate binding protein, family 3 0.00229294731724 0.000443700710633 -0.00184924660661 +UniRef50_A6LW01 0.000841611976392 0.000676307631791 -0.000165304344601 +UniRef50_UPI00047A328A ABC transporter substrate binding protein 7.32498305569e-06 3.73056864454e-05 2.99807033897e-05 +UniRef50_O83668 Fructose bisphosphate aldolase 1.39281752955e-05 0.0057998256801 0.0057858975048 +UniRef50_X6KYL5 ATPase 4.06935588584e-05 4.00442577627e-05 -6.493010957e-07 +UniRef50_Q2CBA4 0.000523034630674 0.000527351259279 4.316628605e-06 +UniRef50_I6T7T2 Permease 0.00392482061747 0.000879043425551 -0.00304577719192 +UniRef50_P0ACQ6 Hydrogen peroxide inducible genes activator 0.00443159449783 0.00116770140896 -0.00326389308887 +UniRef50_Q8D0W8 Sulfate thiosulfate import ATP binding protein CysA 0.000259261559997 0.000437233491368 0.000177971931371 +UniRef50_R9SKE9 Radical SAM domain containing protein 0.00308670795166 0.000279971292315 -0.00280673665935 +UniRef50_G9ZYG4 ABC transporter, solute binding protein 8.28349461792e-06 1.86651188944e-05 1.03816242765e-05 +UniRef50_UPI0003B488FD histidinol dehydrogenase 4.17337978171e-06 6.66248458354e-06 2.48910480183e-06 +UniRef50_W5X7W3 Preprotein translocase subunit SecA 3.37029915123e-05 6.82188862652e-06 -2.68811028858e-05 +UniRef50_Q8YMN9 All4894 protein 6.81247790327e-05 1.55701436842e-05 -5.25546353485e-05 +UniRef50_P76407 Lipid kinase YegS 0.00185186760525 0.000547872620502 -0.00130399498475 +UniRef50_UPI00046E91F0 ATP dependent DNA helicase RuvB 7.69870648316e-06 1.26859993343e-05 4.98729285114e-06 +UniRef50_F2KCE9 Protein tldE, 9.13769319381e-05 0.000149780239319 5.84033073809e-05 +UniRef50_R7CNB5 0.000424838133132 0.00174538209066 0.00132054395753 +UniRef50_A4W3H4 Ribosomal RNA small subunit methyltransferase H 1.72877259824e-05 0.00238205449579 0.00236476676981 +UniRef50_B4UFY0 Holliday junction ATP dependent DNA helicase RuvA 1.26924115802e-05 8.83077160094e-06 -3.86163997926e-06 +UniRef50_Q089C0 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.19221837037e-05 5.62072362602e-06 -1.63014600777e-05 +UniRef50_UPI0003B490B8 ArsR family transcriptional regulator 0.000104827875076 6.71874375898e-05 -3.76404374862e-05 +UniRef50_UPI0002003580 Rhamnan synthesis F, partial 9.34932539392e-06 1.05091762229e-05 1.15985082898e-06 +UniRef50_A2BPB2 S adenosylmethionine synthase 0.0135892131308 0.00741983032761 -0.00616938280319 +UniRef50_A5I6S3 0.000216226306108 0.000164674742667 -5.1551563441e-05 +UniRef50_Q1JDC3 SAM dependent methyltransferase 0.00675928954462 0.00534677932484 -0.00141251021978 +UniRef50_UPI0002555D97 glutamine ABC transporter ATP binding protein 0.000160097709647 0.000131743554077 -2.835415557e-05 +UniRef50_A6TC48 Cell division protein ZipA homolog 0.00205184445951 0.00295328780334 0.00090144334383 +UniRef50_UPI00021940CD 3 phosphoshikimate 1 carboxyvinyltransferase 4.45028863019e-06 7.3057439033e-06 2.85545527311e-06 +UniRef50_UPI00016C05A2 alpha amylase, catalytic region 4.05949264013e-06 6.26836083283e-06 2.2088681927e-06 +UniRef50_Q5JCY6 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.04570743768e-05 1.95754533339e-05 -2.08816210429e-05 +UniRef50_M8VH72 Mechanosensitive ion channel family protein 0.0015737790242 0.000759188153723 -0.000814590870477 +UniRef50_F0YHZ1 6.07856218612e-06 3.85281084015e-05 3.24495462154e-05 +UniRef50_Q251B6 Nitrate reductase gamma chain 0.0063023160944 0.00235881727735 -0.00394349881705 +UniRef50_UPI00047789D2 hypothetical protein, partial 0.000449010851424 4.7884433868e-05 -0.000401126417556 +UniRef50_UPI00046CC1E2 hypothetical protein 0.000134674404318 7.71772579833e-05 -5.74971463347e-05 +UniRef50_D1CT73 Replication protein RepA 0.000272968042264 8.45758248116e-05 -0.000188392217452 +UniRef50_Q7W0R9 DNA directed RNA polymerase subunit beta 7.60029842256e-06 6.92035962524e-06 -6.7993879732e-07 +UniRef50_B2TQ13 Thiamine phosphate synthase 0.00022248683036 0.00231163709501 0.00208915026465 +UniRef50_Q6LQV5 1.63350827495e-05 0.000157920637463 0.000141585554714 +UniRef50_U6LL89 3.99386249955e-06 1.749187447e-06 -2.24467505255e-06 +UniRef50_I6TNX3 0.00523875341133 0.00288666764683 -0.0023520857645 +UniRef50_UPI000371A755 hypothetical protein 4.14615818744e-06 0.000282952112497 0.00027880595431 +UniRef50_Q9RY41 Putative GTP cyclohydrolase 1 type 2 0.000334058397217 0.0377857979011 0.0374517395039 +UniRef50_B7UYR5 0.000526851875572 0.000460233826278 -6.6618049294e-05 +UniRef50_M9VDI6 0.00027565167683 0.000486423162389 0.000210771485559 +UniRef50_Q097V6 NTR 1.67351199363e-05 0.000114500822689 9.77657027527e-05 +UniRef50_P77301 0.00185344238781 0.000606428443274 -0.00124701394454 +UniRef50_Q3JVY5 0.000106960636822 0.000354108125162 0.00024714748834 +UniRef50_W7CT60 XRE family transcriptional regulator 4.03886623871e-05 5.64007903666e-05 1.60121279795e-05 +UniRef50_UPI0004707E78 hypothetical protein 0.000116165537314 3.40778121796e-05 -8.20877251344e-05 +UniRef50_M5U388 5.5510866732e-06 2.12902135391e-06 -3.42206531929e-06 +UniRef50_UPI0003738D5A hypothetical protein 0.000174775047618 6.98364877408e-05 -0.000104938559877 +UniRef50_Q167I1 0.000197397444238 4.69496575001e-05 -0.000150447786738 +UniRef50_A3M3F4 Urease accessory protein UreF 0.000302796247737 0.00470890023083 0.00440610398309 +UniRef50_Q63060 Glycerol kinase 4.18707507153e-06 4.56472314666e-06 3.7764807513e-07 +UniRef50_UPI00042B2928 Chloroplast heat shock protein 70 isoform 1 1.65512041081e-05 9.37853173534e-06 -7.17267237276e-06 +UniRef50_M9VEF8 Glucoamylase S1 S2 0.000283767961447 0.000911239439799 0.000627471478352 +UniRef50_A5V2F8 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.000119399629891 3.62130472155e-05 -8.31865826755e-05 +UniRef50_UPI00036140A6 hypothetical protein 2.8346551216e-05 2.55882409651e-05 -2.7583102509e-06 +UniRef50_W8S0L8 Flagellar protein FlgJ, putative 0.000137968433853 0.000115718910595 -2.2249523258e-05 +UniRef50_W0PCE9 5.09321514118e-06 1.37532608598e-05 8.66004571862e-06 +UniRef50_UPI0002EE0684 hypothetical protein 1.2069164233e-05 2.47984120959e-06 -9.58932302341e-06 +UniRef50_B9KPQ7 Ribonuclease BN 0.00257933656796 0.000979770789844 -0.00159956577812 +UniRef50_Q9RS22 0.000486033462046 0.0400403389859 0.0395543055239 +UniRef50_Q2A1U9 Lipid A export ATP binding permease protein MsbA 3.31853988807e-06 4.57945793233e-06 1.26091804426e-06 +UniRef50_Q83QP2 Fructose like permease IIC component 0.00155343295917 0.000369439691128 -0.00118399326804 +UniRef50_Q4L8U4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0106294602453 0.00321301323198 -0.00741644701332 +UniRef50_H8GX31 9.79096584758e-06 0.00306632169627 0.00305653073042 +UniRef50_U1KQC4 Branched chain amino acid transport 3.82393626324e-05 3.90854927715e-05 8.461301391e-07 +UniRef50_UPI0004709E67 membrane protein 1.14674010968e-05 1.34000682525e-05 1.9326671557e-06 +UniRef50_UPI000407D6C0 MULTISPECIES 3.60985479097e-05 5.04164491759e-05 1.43179012662e-05 +UniRef50_K9QPP2 Mannose 1 phosphate guanylyltransferase 0.00047469097309 0.0571037799429 0.0566290889698 +UniRef50_UPI0003F78AFE serine protease 8.5754265292e-06 4.00950421952e-05 3.1519615666e-05 +UniRef50_UPI0004714520 hypothetical protein 2.06772670667e-05 1.25788225822e-05 -8.0984444845e-06 +UniRef50_E7Q0E7 9.69401391164e-05 1.69128734311e-05 -8.00272656853e-05 +UniRef50_T1UAW5 CobW HypB UreG, nucleotide binding domain protein 0.000118581986021 0.00511122365075 0.00499264166473 +UniRef50_Q9UTM8 Putative succinate semialdehyde dehydrogenase C139.05 [NADP] 3.82118012215e-06 6.86081670759e-06 3.03963658544e-06 +UniRef50_UPI0003B349C5 2 hydroxy acid oxidase, partial 1.20057820554e-05 1.8338811223e-05 6.3330291676e-06 +UniRef50_S5SX20 Amino acid ABC transporter ATP binding protein 0.000815351264251 0.000687397337742 -0.000127953926509 +UniRef50_Q3IUW9 TraL 0.00666372010756 0.0030291105647 -0.00363460954286 +UniRef50_I2B6D3 5.86381905036e-05 9.35600269367e-05 3.49218364331e-05 +UniRef50_G2JEX5 0.000119331714078 0.00714952761314 0.00703019589906 +UniRef50_R1DUC8 4.2229519084e-05 0.000102341758949 6.0112239865e-05 +UniRef50_C8S343 2.06150960869e-05 6.69573156264e-06 -1.39193645243e-05 +UniRef50_W0ACQ7 4.55814597666e-06 7.98606375673e-06 3.42791778007e-06 +UniRef50_J4SHG0 PTS system N acetylmuramic acid transporter subunits EIIBC 3.18136347097e-05 5.49032302234e-05 2.30895955137e-05 +UniRef50_UPI00047B5F70 iron ABC transporter ATP binding protein 0.000181664410594 1.18999859333e-05 -0.000169764424661 +UniRef50_A6QJP6 Zn binding lipoprotein adcA like protein 0.0132101779348 0.00230858690386 -0.0109015910309 +UniRef50_E6SMQ6 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein 0.0348640666911 0.0103510307359 -0.0245130359552 +UniRef50_C0M7M5 Thymidylate kinase 0.00375126159729 0.00730833487767 0.00355707328038 +UniRef50_Q1J230 TatD related deoxyribonuclease 0.000210103518845 0.0302188966039 0.0300087930851 +UniRef50_UPI00041E2B86 hypothetical protein 1.91921822435e-06 2.42544412233e-05 2.23352229989e-05 +UniRef50_S9SAD7 0.000218405197906 2.71388424458e-05 -0.00019126635546 +UniRef50_UPI00037D7D9D hypothetical protein 4.45902826129e-06 0.000935053533002 0.000930594504741 +UniRef50_UPI0003648262 hypothetical protein 6.83420315356e-05 1.83896522323e-05 -4.99523793033e-05 +UniRef50_B8GAP1 1.1262094893e-05 2.44379317871e-05 1.31758368941e-05 +UniRef50_C3KRZ1 1.16653090434e-05 1.89902066833e-05 7.3248976399e-06 +UniRef50_K0AWK4 Signal transduction response regulator 0.00034485110672 0.000309772767695 -3.5078339025e-05 +UniRef50_F2MTK1 Cysteine synthase 0.00404609803256 0.00165486259673 -0.00239123543583 +UniRef50_A5WC68 Short chain dehydrogenase reductase SDR 0.000413215248013 0.000475040276462 6.1825028449e-05 +UniRef50_E3EXD1 Flagellar biosynthesis regulatory protein FlaF 9.92641436033e-05 0.000106292919008 7.0287754047e-06 +UniRef50_UPI0003713DCA hypothetical protein 8.73847807637e-06 0.000498005929809 0.000489267451733 +UniRef50_T2H287 0.000535853192817 0.000103104535349 -0.000432748657468 +UniRef50_P0ACK4 Putative aga operon transcriptional repressor 0.00386527900076 0.000564228969712 -0.00330105003105 +UniRef50_X5ET90 M23 peptidase domain protein 0.000126673150626 0.00191181472931 0.00178514157868 +UniRef50_P46333 Probable metabolite transport protein CsbC 0.0121403459608 0.00207179873112 -0.0100685472297 +UniRef50_I0TGY1 0.00307319972126 0.00120888942708 -0.00186431029418 +UniRef50_P76268 Transcriptional regulator KdgR 0.00448900218816 0.000675749033314 -0.00381325315485 +UniRef50_UPI0004410E83 hypothetical protein AURDEDRAFT_58877, partial 3.37857074765e-05 2.12392714251e-05 -1.25464360514e-05 +UniRef50_H8GVU2 ABC transporter, ATP binding protein 0.000124173022652 0.0129759961736 0.0128518231509 +UniRef50_B2AGK5 5.12890227549e-05 2.05391591804e-05 -3.07498635745e-05 +UniRef50_UPI000473B328 ABC transporter ATP binding protein, partial 8.79557546893e-05 6.31648074203e-05 -2.4790947269e-05 +UniRef50_Q3IXI2 0.00323927395556 0.00160749233432 -0.00163178162124 +UniRef50_W8S015 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 9.89335753291e-06 3.95055436573e-05 2.96121861244e-05 +UniRef50_B9KSK5 0.0013938905445 0.000175262139585 -0.00121862840491 +UniRef50_H2PRE9 6.636561201e-05 0.000151399236449 8.5033624439e-05 +UniRef50_K7E9E4 6.36125515652e-05 0.00213885938448 0.00207524683291 +UniRef50_A7X538 0.00447993564031 0.000509166733097 -0.00397076890721 +UniRef50_B2UUZ0 RNA pyrophosphohydrolase 0.000381298978638 0.00310228041941 0.00272098144077 +UniRef50_UPI00036109FB hypothetical protein 4.04573095656e-05 3.84114796426e-05 -2.045829923e-06 +UniRef50_UPI00037C9F7B hypothetical protein 1.90335792403e-06 4.55954634524e-06 2.65618842121e-06 +UniRef50_UPI00037F00C2 hypothetical protein 8.74258589778e-06 5.63583277875e-06 -3.10675311903e-06 +UniRef50_UPI0003A983A5 amidophosphoribosyltransferase 8.17854053128e-06 6.03716547012e-05 5.21931141699e-05 +UniRef50_B8GWS6 DNA polymerase III subunit alpha 1.11023881397e-05 5.60117892858e-06 -5.50120921112e-06 +UniRef50_W1JGI9 0.000116744393623 4.91756503465e-05 -6.75687432765e-05 +UniRef50_D2T8K9 Aromatic amino acid transaminase 0.000160177930206 0.0118484525728 0.0116882746426 +UniRef50_UPI00046FDA71 acyl transferase 0.00019679621671 1.90938039666e-05 -0.000177702412743 +UniRef50_M9VAR4 Response regulator MprA 0.000215706279348 0.00881764770999 0.00860194143064 +UniRef50_A0A016QSU1 5.61820336645e-05 0.00815484568749 0.00809866365383 +UniRef50_UPI000379C227 dehydrogenase 3.62774354659e-05 2.08413466472e-05 -1.54360888187e-05 +UniRef50_A6QIG0 GntR family regulatory protein 0.0105588467751 0.00325332184047 -0.00730552493463 +UniRef50_I6SY16 0.000240760195392 6.04125547655e-05 -0.000180347640626 +UniRef50_D2PY67 ABC transporter related protein 0.000301988791085 0.00680960494108 0.00650761614999 +UniRef50_P22344 0.0351935426953 0.00642975647167 -0.0287637862236 +UniRef50_H4CJE2 Bacterial regulatory s, gntR family protein 0.00389415190696 0.000456675317307 -0.00343747658965 +UniRef50_UPI00021A48D6 PREDICTED 8.32206896854e-05 8.6570499113e-05 3.3498094276e-06 +UniRef50_A6VAY7 Membrane protein, putative 0.00183908970067 0.00254914428892 0.00071005458825 +UniRef50_P17802 A G specific adenine glycosylase 0.00541156774029 0.00141551153993 -0.00399605620036 +UniRef50_Q8ET44 2 hydroxypenta 2,4 dienoate hydratase 0.00815080018727 0.00491796919772 -0.00323283098955 +UniRef50_G2JI07 Transcriptional regulator 0.000784345074076 0.00361623073966 0.00283188566558 +UniRef50_Q2NFZ8 50S ribosomal protein L13 0.00189180433271 0.0274751738243 0.0255833694916 +UniRef50_P47385 Ribonuclease J 4.55987292977e-06 3.11483224045e-06 -1.44504068932e-06 +UniRef50_C1CA92 Mobile genetic element 2.6428768201e-05 0.00012287974001 9.6450971809e-05 +UniRef50_UPI00037DF719 hypothetical protein, partial 5.76331182378e-05 2.03944170625e-05 -3.72387011753e-05 +UniRef50_Q8DUT9 0.00551095360208 0.00208127453603 -0.00342967906605 +UniRef50_UPI00037DF44A molybdate ABC transporter permease 4.24050906562e-05 4.48225756857e-05 2.4174850295e-06 +UniRef50_Q21RX2 0.000381076924197 0.000107670793581 -0.000273406130616 +UniRef50_A0A024HLH2 9.21628968707e-05 2.31199679607e-05 -6.904292891e-05 +UniRef50_A3X988 0.00023671967473 1.80090402131e-05 -0.000218710634517 +UniRef50_C4ZT30 Endoribonuclease SymE 0.000666157507638 0.0010361989656 0.000370041457962 +UniRef50_K1LFR3 1.87187419284e-05 9.06098124848e-05 7.18910705564e-05 +UniRef50_A0Q196 DNA gyrase, A subunit 0.000454878417847 0.000705479092612 0.000250600674765 +UniRef50_P25748 HTH type transcriptional regulator GalS 0.00906802042389 0.00125388142012 -0.00781413900377 +UniRef50_D6AT21 0.000121900749898 9.99867107053e-05 -2.19140391927e-05 +UniRef50_UPI000367E513 hypothetical protein 0.000142653801834 3.14117731554e-05 -0.000111242028679 +UniRef50_Q5HGH1 Isoprenyl transferase 0.00639455120327 0.0030854806892 -0.00330907051407 +UniRef50_A0A058ZPK5 2.86432061453e-05 5.89014362011e-05 3.02582300558e-05 +UniRef50_UPI000466E6FA 3 oxoacyl ACP synthase, partial 3.39841490146e-05 3.26659521527e-05 -1.3181968619e-06 +UniRef50_O26091 RlpA like lipoprotein 0.000340685847228 0.00355536265083 0.0032146768036 +UniRef50_UPI000380CA6B hypothetical protein 4.68509779545e-05 4.07735366546e-05 -6.0774412999e-06 +UniRef50_A8MM09 Diguanylate cyclase 0.000477780525616 0.000165443532329 -0.000312336993287 +UniRef50_P33772 N acetylmuramoyl L alanine amidase AmiA 0.0017278024531 0.000619934767226 -0.00110786768587 +UniRef50_UPI00036F5D2F hypothetical protein, partial 8.00072190209e-06 3.48437832804e-05 2.68430613783e-05 +UniRef50_UPI000416A546 hypothetical protein 3.22802967201e-05 9.06029141938e-06 -2.32200053007e-05 +UniRef50_B5FV81 KLLA0D19929p 0.00264584140756 0.00522324190859 0.00257740050103 +UniRef50_Q6MIR4 NADH quinone oxidoreductase subunit B 1.03992571282e-05 3.35844194903e-05 2.31851623621e-05 +UniRef50_I0C718 Integral membrane protein 0.01477288785 0.000477601140485 -0.0142952867095 +UniRef50_UPI0004640768 hypothetical protein 5.40357463613e-05 2.45202074406e-05 -2.95155389207e-05 +UniRef50_UPI0003B6DF5B hemin receptor 1.15137464635e-05 5.52635647935e-05 4.374981833e-05 +UniRef50_D4X8Q2 ParB like protein 4.16891923588e-05 1.54690481469e-05 -2.62201442119e-05 +UniRef50_G7EHM5 0.00010656326808 0.000195590001222 8.9026733142e-05 +UniRef50_P45563 Purine nucleoside phosphorylase 2 0.0028885442046 0.000218753114953 -0.00266979108965 +UniRef50_B6TQL9 6.96584544903e-06 0.000151517577573 0.000144551732124 +UniRef50_Q9C550 2 isopropylmalate synthase 2, chloroplastic 1.15794674952e-05 5.14381570425e-06 -6.43565179095e-06 +UniRef50_A5EYT7 NH dependent NAD(+) synthetase 1.44185027218e-05 0.000106878215892 9.24597131702e-05 +UniRef50_I8HVI3 0.00131681158902 3.62998440141e-05 -0.00128051174501 +UniRef50_R7BPR1 D amino acid transaminase 0.000358628526425 0.00221779501072 0.00185916648429 +UniRef50_P59872 Acetyl coenzyme A synthetase 0.000273613063041 0.0468117745856 0.0465381615226 +UniRef50_UPI000474B8D5 ABC transporter ATP binding protein 2.62477395065e-05 1.51588743181e-05 -1.10888651884e-05 +UniRef50_UPI0004772A28 phospholipase 3.32334991836e-05 4.04094670606e-05 7.175967877e-06 +UniRef50_UPI0003806FFB hypothetical protein 0.000203647012719 3.11288361973e-05 -0.000172518176522 +UniRef50_X5PNE7 0.00139836171138 0.000278010385417 -0.00112035132596 +UniRef50_C5C445 YCII related protein 3.86717879019e-05 1.93713029451e-05 -1.93004849568e-05 +UniRef50_S5XXL2 3.22692709622e-06 6.46454656554e-06 3.23761946932e-06 +UniRef50_Q9LCJ9 FmtB 0.000670591900274 0.000121159347838 -0.000549432552436 +UniRef50_UPI00041BC991 mechanosensitive ion channel protein MscL 1.33203356731e-05 1.98705563716e-05 6.5502206985e-06 +UniRef50_A0A017HRC2 0.00026345740223 2.74169289687e-05 -0.000236040473261 +UniRef50_UPI00037F91DA hypothetical protein 2.52918923461e-06 1.17066579213e-05 9.17746868669e-06 +UniRef50_Q1GDV5 4.50863202773e-05 6.20203134595e-05 1.69339931822e-05 +UniRef50_F8UHK9 IS4 family transposase 1.4757032753e-05 3.03000379087e-05 1.55430051557e-05 +UniRef50_A2SD53 8 amino 7 oxononanoate synthase 2.78247957257e-05 5.42821088302e-06 -2.23965848427e-05 +UniRef50_UPI000479CA29 ABC transporter permease 5.14586969163e-06 5.59848395694e-05 5.08389698778e-05 +UniRef50_Q5SJ45 Valine tRNA ligase 2.01663350434e-06 4.20065913411e-06 2.18402562977e-06 +UniRef50_P37127 Protein AegA 0.00559429278276 0.00384082208818 -0.00175347069458 +UniRef50_P45537 0.00230285736921 0.000480143836312 -0.0018227135329 +UniRef50_UPI0003730FF4 hypothetical protein 2.0507725822e-06 6.87904131277e-05 6.67396405455e-05 +UniRef50_UPI0003792FEF thioredoxin, partial 0.000241897474492 7.1392197663e-05 -0.000170505276829 +UniRef50_UPI00039C7ED5 UDP N acetylglucosamine 1 carboxyvinyltransferase 8.46256784066e-06 1.33416252064e-05 4.87905736574e-06 +UniRef50_P0ACN0 0.00165098908463 0.000546882787401 -0.00110410629723 +UniRef50_Q83GA7 Oligoribonuclease 4.64134230695e-05 1.8172971284e-05 -2.82404517855e-05 +UniRef50_UPI00037DBB4D hypothetical protein 4.94693563624e-06 7.82835838134e-06 2.8814227451e-06 +UniRef50_E1VBT7 Na H(+) antiporter NhaD 0.0129402022105 0.00213583080506 -0.0108043714054 +UniRef50_Q3M8C8 Lysine tRNA ligase 3.70186612876e-06 1.46029912792e-05 1.09011251504e-05 +UniRef50_UPI00037733AF hypothetical protein, partial 6.90420791812e-05 0.000196108699003 0.000127066619822 +UniRef50_UPI000364EBAA hypothetical protein 1.13175177822e-05 3.01349704651e-05 1.88174526829e-05 +UniRef50_A4EBS8 5.85008665216e-05 1.68311918781e-06 -5.68177473338e-05 +UniRef50_D8LTU3 0.000218438073365 2.36353112865e-05 -0.000194802762078 +UniRef50_Q5HEZ3 Putative fluoride ion transporter CrcB 1 0.0039885252192 0.00147963431839 -0.00250889090081 +UniRef50_W2EZB5 6.44563408774e-06 9.85697653249e-06 3.41134244475e-06 +UniRef50_B1YHH7 Na+ H+ antiporter MnhB subunit related protein 7.97976087521e-06 7.49897557177e-05 6.70099948425e-05 +UniRef50_F0P908 Transcriptional regulator, GntR family 0.00521188900623 0.0015092310375 -0.00370265796873 +UniRef50_V9W7G7 2.97935388736e-05 0.000182954545271 0.000153161006397 +UniRef50_A0A038GMN1 0.000413305827211 0.000256425503788 -0.000156880323423 +UniRef50_U4QJA4 Extracellular ligand binding receptor 0.000695194900568 0.00200064694203 0.00130545204146 +UniRef50_UPI00045E1D0A PREDICTED 3.02749735265e-06 7.14136420501e-06 4.11386685236e-06 +UniRef50_A9KHS7 Radical SAM domain protein 8.57273252495e-05 0.000282527757878 0.000196800432629 +UniRef50_Q9KWU8 DNA directed RNA polymerase subunit alpha 1.66600072268e-05 0.0001094389646 9.27789573732e-05 +UniRef50_P46707 Probable acetyl CoA acetyltransferase 6.26475621396e-06 6.09770284373e-05 5.47122722233e-05 +UniRef50_D9X888 Integral membrane protein 1.42132163247e-05 6.13919298622e-05 4.71787135375e-05 +UniRef50_Q3IV17 Putative threonine efflux protein 0.00991865729053 0.00238140564875 -0.00753725164178 +UniRef50_P31126 0.00319862055069 0.000832040179338 -0.00236658037135 +UniRef50_UPI000475237F hypothetical protein 0.000154174154842 5.68930370085e-05 -9.72811178335e-05 +UniRef50_Q6MBY2 Protoheme IX farnesyltransferase 5.4557248113e-06 1.59576093072e-05 1.05018844959e-05 +UniRef50_UPI0002558CFD HD superfamily hydrolase like protein, partial 0.000185163183024 0.000291960368577 0.000106797185553 +UniRef50_UPI00016C46AD probable chromosome partitioning protein parB 7.56617608243e-06 0.000592340631102 0.00058477445502 +UniRef50_UPI00037F23A8 hypothetical protein 3.81823609609e-05 4.05665449352e-05 2.3841839743e-06 +UniRef50_B2ICS4 Putative DNA topology modulation protein FlaR 1.08381131848e-05 2.174523502e-05 1.09071218352e-05 +UniRef50_E3A1I0 Putative transcriptional accessory protein 0.000513718119008 0.000697316913152 0.000183598794144 +UniRef50_B1GZT3 Chorismate synthase 1.63136524433e-05 0.000158076098603 0.00014176244616 +UniRef50_UPI0002B47979 PREDICTED 6.35580399989e-06 4.18161164959e-05 3.5460312496e-05 +UniRef50_Q02C42 Allantoinase 9.99641442404e-06 3.97076371003e-05 2.97112226763e-05 +UniRef50_A0A011PY56 Putative acetyltransferase 0.000255571688864 5.1126970555e-05 -0.000204444718309 +UniRef50_UPI0003B33483 MULTISPECIES 4.9594058738e-05 2.7088950413e-05 -2.2505108325e-05 +UniRef50_A4WVT7 Lytic transglycosylase, catalytic 0.00354223458085 0.00026134221699 -0.00328089236386 +UniRef50_A6FVD1 4.71569952194e-05 2.46568339008e-05 -2.25001613186e-05 +UniRef50_W4YP60 3.62713540647e-05 8.74686114986e-05 5.11972574339e-05 +UniRef50_W4YP61 2.9119806403e-05 2.61324401648e-06 -2.65065623865e-05 +UniRef50_A0A024HY78 7.33608045297e-06 7.29619251054e-05 6.56258446524e-05 +UniRef50_A0A024HY79 4.28769904659e-06 6.44825016876e-06 2.16055112217e-06 +UniRef50_L6T5N5 CRISPR associated helicase Cas3 1.99475568817e-05 3.18868695041e-05 1.19393126224e-05 +UniRef50_UPI000368B121 hypothetical protein 6.66846154536e-06 5.97946071645e-05 5.31261456191e-05 +UniRef50_Q2FDY2 Putative NADH nitroreductase SAUSA300_2462 0.0163025235974 0.00437974558027 -0.0119227780171 +UniRef50_UPI000471156C MULTISPECIES 0.000157818309519 1.55737033255e-05 -0.000142244606193 +UniRef50_UPI0003683BB9 hypothetical protein 7.64237766151e-06 0.00089575464249 0.000888112264828 +UniRef50_Z9JK63 Transposase 6.03336371628e-06 0.000908198255688 0.000902164891972 +UniRef50_A0A023Y025 Multidrug transporter 0.00584173558641 0.001378610379 -0.00446312520741 +UniRef50_UPI000474A653 guanine permease 2.25674243247e-05 5.92086387479e-06 -1.66465604499e-05 +UniRef50_D0K5S8 Ftsk spoiiie family protein 0.00854272438723 0.000912030060158 -0.00763069432707 +UniRef50_UPI00036ED578 hypothetical protein, partial 4.36651411896e-05 4.2235817148e-05 -1.4293240416e-06 +UniRef50_J7N103 Cell wall surface anchor family protein 1.77054004094e-05 8.71998145347e-05 6.94944141253e-05 +UniRef50_P77828 10 kDa chaperonin 1 0.00040300995251 0.0100291862261 0.00962617627359 +UniRef50_R5QB36 0.0060207087997 0.00518220577343 -0.00083850302627 +UniRef50_UPI00040C1A22 succinate semialdehyde dehydrogenase 9.88462858088e-06 2.81851516231e-05 1.83005230422e-05 +UniRef50_O54151 3 oxoacyl [acyl carrier protein] synthase 3 protein 3 4.45758900914e-06 7.47580764492e-06 3.01821863578e-06 +UniRef50_E3DNN6 Binding protein dependent transport systems inner membrane component 0.000136605303564 0.0563983677778 0.0562617624742 +UniRef50_Q46834 Putative type II secretion system C type protein YghF 0.00413750315515 0.00193058979619 -0.00220691335896 +UniRef50_UPI0003677725 hypothetical protein 1.45210897562e-05 2.09982697464e-05 6.4771799902e-06 +UniRef50_R9K990 0.000141367985016 7.68845884024e-05 -6.44833966136e-05 +UniRef50_Q6GJM8 0.0755007529771 0.01629437357 -0.0592063794071 +UniRef50_Q9LXS6 Citrate synthase 2, peroxisomal 9.69541613356e-06 4.03679563109e-05 3.06725401773e-05 +UniRef50_R6ND25 N acetylmannosamine kinase 0.000985350082675 0.00164154672689 0.000656196644215 +UniRef50_G2JIZ7 Methionine import ATP binding protein MetN 0.000438987184999 0.00327827958547 0.00283929240047 +UniRef50_A5IQI8 0.0125731150065 0.00442567338981 -0.00814744161669 +UniRef50_Q9I1X7 Multifunctional non homologous end joining protein LigD 9.36179702101e-05 0.000238244598237 0.000144626628027 +UniRef50_C9WZF0 0.000996210958277 0.000832357385113 -0.000163853573164 +UniRef50_L1ITB2 0.000206659019779 6.49339461628e-05 -0.000141725073616 +UniRef50_UPI00036D7E16 hypothetical protein 5.24416439317e-06 6.60785268229e-06 1.36368828912e-06 +UniRef50_G2U6X6 0.000201603468197 0.000109936523364 -9.1666944833e-05 +UniRef50_Y1DKJ6 Alpha glucosidase yihQ 0.00224037425686 0.000481869487784 -0.00175850476908 +UniRef50_UPI0003762D52 hypothetical protein 2.36734195231e-05 1.6921106725e-05 -6.7523127981e-06 +UniRef50_P78285 Lysozyme RrrD 0.000845679486144 0.00234885877881 0.00150317929267 +UniRef50_O26565 0.00297764657233 0.000436386296078 -0.00254126027625 +UniRef50_Q8XAS8 Ferrous iron permease EfeU 0.0033069104539 0.000232228077477 -0.00307468237642 +UniRef50_A5UMC5 Predicted metal dependent membrane protease 0.00395799030476 0.000711609072484 -0.00324638123228 +UniRef50_Q05762 Bifunctional dihydrofolate reductase thymidylate synthase 1 9.39046864504e-06 1.98891741525e-05 1.04987055075e-05 +UniRef50_P76065 0.00144194394776 0.000913545328939 -0.000528398618821 +UniRef50_UPI0003F08F9D PREDICTED 1.41126510563e-05 2.10916002321e-05 6.9789491758e-06 +UniRef50_Q2NBI6 0.000289726178842 8.42070123898e-05 -0.000205519166452 +UniRef50_E3A6K9 5.35868456969e-05 4.02338835485e-05 -1.33529621484e-05 +UniRef50_UPI00031A8C2B hypothetical protein 5.2269522121e-05 3.28552967736e-05 -1.94142253474e-05 +UniRef50_Q8P013 0.000235142866621 0.00023455441151 -5.88455111e-07 +UniRef50_A0LH56 Bifunctional protein PyrR 1.97230956949e-05 7.88110498961e-05 5.90879542012e-05 +UniRef50_C9A4C5 Universal bacterial protein YeaZ 0.00475317918058 0.00300126290854 -0.00175191627204 +UniRef50_UPI00036C9E20 hypothetical protein 2.35852343077e-05 2.48210644939e-05 1.2358301862e-06 +UniRef50_P0AEA0 Curli production assembly transport component CsgF 0.00185648846977 0.000866454880764 -0.000990033589006 +UniRef50_UPI00035005CE PREDICTED 0.000242659520452 0.000363094309672 0.00012043478922 +UniRef50_E2CI08 Membrane bound lytic murein transglycosylase A 0.000256230695123 0.000336626033459 8.0395338336e-05 +UniRef50_UPI000299DD27 signal recognition particle protein, partial 1.3826971185e-05 7.07536180026e-05 5.69266468176e-05 +UniRef50_P32701 Putative cyclic di GMP phosphodiesterase YjcC 0.00115728853815 0.00102980320599 -0.00012748533216 +UniRef50_G9RRR3 1.11519059968e-05 0.000349501736738 0.000338349830741 +UniRef50_UPI00047ACFC0 glutamyl tRNA amidotransferase 1.29682592136e-05 5.49689336837e-06 -7.47136584523e-06 +UniRef50_J1CAV3 0.0004438756278 8.72091777161e-05 -0.000356666450084 +UniRef50_Q5HL30 Transcriptional regulator, LysR family 0.00785878644397 0.00256951626669 -0.00528927017728 +UniRef50_UPI00046AB4F5 hypothetical protein 0.000371846177253 2.06689908995e-05 -0.000351177186354 +UniRef50_A6LTS7 Stage V sporulation protein E 0.000124582834604 0.00124398430982 0.00111940147522 +UniRef50_R7EZW8 6.66559876749e-05 5.44434779106e-05 -1.22125097643e-05 +UniRef50_U8X5K1 7.54222420008e-06 0.00310507668615 0.00309753446195 +UniRef50_D7A419 ABC transporter related protein 0.00269122528164 0.00139676538112 -0.00129445990052 +UniRef50_Q2NRT0 0.00059968629877 0.000138537938329 -0.000461148360441 +UniRef50_Q0AW39 Imidazoleglycerol phosphate dehydratase 1.0143461962e-05 1.53887614515e-05 5.2452994895e-06 +UniRef50_J4J838 Proline glycine betaine ABC transporter periplasmic protein 5.39796058107e-05 7.94777510129e-06 -4.60318307094e-05 +UniRef50_Q8CUB7 0.037625246692 0.0112208022931 -0.0264044443989 +UniRef50_Q9RV62 NADH pyrophosphatase 0.000141028389365 0.0311817471377 0.0310407187483 +UniRef50_Q52664 Glutamate glutamine aspartate asparagine transport system permease protein BztB 0.00901788248812 0.00299393813178 -0.00602394435634 +UniRef50_A3MLT7 Histidine ammonia lyase 0.000813483937471 0.0078150551855 0.00700157124803 +UniRef50_M4WY62 Non specific serine threonine protein kinase 5.83741219845e-05 7.64079444229e-05 1.80338224384e-05 +UniRef50_UPI0003123F96 hypothetical protein 2.077372337e-05 2.09310507443e-05 1.573273743e-07 +UniRef50_UPI00036BA2FA hypothetical protein 1.87425802593e-05 0.000587294078934 0.000568551498675 +UniRef50_UPI0004279204 ABC transporter substrate binding protein 9.93880033057e-06 4.8305296426e-05 3.83664960954e-05 +UniRef50_I0C5Y5 0.0127271333544 0.0170454250119 0.0043182916575 +UniRef50_V9VWJ8 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 7.30273036311e-05 4.63605909159e-05 -2.66667127152e-05 +UniRef50_W4TIC1 Lysophospholipase L2 1.37000918514e-05 7.36587209376e-05 5.99586290862e-05 +UniRef50_UPI000475C78C hypothetical protein 4.05272102845e-06 4.51399431638e-06 4.6127328793e-07 +UniRef50_UPI000478596D hypothetical protein, partial 5.46589816024e-05 0.000179831154806 0.000125172173204 +UniRef50_UPI0004776897 50S ribosomal protein L21 1.75735937399e-05 0.000427376557539 0.000409802963799 +UniRef50_Q57725 Probable acetolactate synthase large subunit 0.00317878869786 0.000755076734394 -0.00242371196347 +UniRef50_I0DU68 Pirin like protein 6.40012533574e-06 9.73732670135e-06 3.33720136561e-06 +UniRef50_G4RE73 Glutaredoxin 0.00321116601003 0.00195250714179 -0.00125865886824 +UniRef50_B5EZL8 UPF0208 membrane protein YfbV 0.00319075492974 0.000473770115279 -0.00271698481446 +UniRef50_UPI0003792331 hypothetical protein 0.000122042895546 2.60174489607e-05 -9.60254465853e-05 +UniRef50_P63482 Alanine racemase 2 0.0194382773403 0.00493593055764 -0.0145023467827 +UniRef50_U9FP56 0.000345281634012 0.000271763839138 -7.3517794874e-05 +UniRef50_B4UAT5 MJ0042 family finger like protein 1.93000214367e-05 0.000140330047224 0.000121030025787 +UniRef50_A7FBU7 0.000612830389931 0.0091483827415 0.00853555235157 +UniRef50_Q8FDG8 L tartrate dehydratase subunit alpha 0.00474467535037 0.000147448845305 -0.00459722650506 +UniRef50_G5Q5Z8 Outer membrane protein NlpB 0.0016344332665 0.000649697949665 -0.000984735316835 +UniRef50_A5IPG6 0.0137905195811 0.00246252002941 -0.0113279995517 +UniRef50_UPI0002ADAB72 0.000357916926859 0.000107403963639 -0.00025051296322 +UniRef50_A5IPG3 0.0140582363333 0.000300831957759 -0.0137574043755 +UniRef50_D0LXH2 1.12636842298e-05 7.26125288652e-05 6.13488446354e-05 +UniRef50_A6M239 PTS system fructose subfamily IIA component 0.000268354968373 0.000420878914765 0.000152523946392 +UniRef50_Q6MBM7 Succinyl CoA ligase [ADP forming] subunit beta 8.02649982762e-06 1.88494142906e-05 1.0822914463e-05 +UniRef50_UPI000463ADD2 hypothetical protein 3.13657862573e-06 3.92441346315e-05 3.61075560058e-05 +UniRef50_P24735 Beta lactamase 0.00159601701204 0.000224575441206 -0.00137144157083 +UniRef50_UPI00036198F2 hypothetical protein 2.11409597385e-06 1.74394885941e-05 1.53253926203e-05 +UniRef50_UPI0003B66134 deoxyguanosinetriphosphate triphosphohydrolase 7.86416237334e-05 2.10119971713e-05 -5.76296265621e-05 +UniRef50_Q4KJK0 Arginine tRNA ligase 0.00645536126859 0.00196814494161 -0.00448721632698 +UniRef50_A5UMU3 Glycosyltransferase, GT2 family 0.00466841516088 0.000531396657464 -0.00413701850342 +UniRef50_Q8XE72 2 dehydropantoate 2 reductase 0.00502073030654 0.00109589483159 -0.00392483547495 +UniRef50_B5YKP8 Phenylacrylic acid decarboxylase 0.000846406121886 0.000324523851863 -0.000521882270023 +UniRef50_Q0SR44 Cell division topological specificity factor 0.000477830365635 0.0011734438617 0.000695613496065 +UniRef50_S4X915 Beta hemolysin 0.00343307767155 0.00089489910665 -0.0025381785649 +UniRef50_W6M0A7 0.000192414723598 0.00325572043706 0.00306330571346 +UniRef50_G0DV19 Efflux ABC transporter, permease protein 0.00024066891731 0.00457644486667 0.00433577594936 +UniRef50_UPI000362EEF4 hypothetical protein 2.58021666945e-06 5.27664686068e-06 2.69643019123e-06 +UniRef50_Q0A4X2 DNA polymerase IV 3.56584603617e-06 8.80782033673e-06 5.24197430056e-06 +UniRef50_UPI0003736343 hypothetical protein, partial 2.87496441029e-05 9.98253651381e-05 7.10757210352e-05 +UniRef50_U5MKI7 Subtilisin like serine protease 0.000317632099203 0.00152716326649 0.00120953116729 +UniRef50_Q2GEH7 Adenylosuccinate synthetase 3.83765424865e-06 1.31342562849e-05 9.29660203625e-06 +UniRef50_I1Q3T9 7.45960385152e-05 0.000127305251015 5.27092124998e-05 +UniRef50_R5PZK9 Aldo keto reductase 0.000299371166668 0.0015931120747 0.00129374090803 +UniRef50_Q4UUD9 Flagellar biosynthesis switch protein 0.000852955945528 0.000212968777781 -0.000639987167747 +UniRef50_Q9I3P5 0.000145560149942 0.000183807077915 3.8246927973e-05 +UniRef50_A4WCP8 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 0.00244889870577 0.000262893209369 -0.0021860054964 +UniRef50_A9LZI0 ABC transporter ATP binding protein 0.000183542620181 0.00240146314219 0.00221792052201 +UniRef50_F4FKW9 0.005389676597 0.00242726059064 -0.00296241600636 +UniRef50_B5EZK0 NADH quinone oxidoreductase subunit K 6.16442237463e-05 8.22490148817e-05 2.06047911354e-05 +UniRef50_U5MVT4 Nodulation protein NolG 0.000624701597215 0.00248638227097 0.00186168067376 +UniRef50_A5G6M1 Tryptophan synthase alpha chain 1.46743032333e-05 8.24713619239e-06 -6.42716704091e-06 +UniRef50_UPI000372C358 hypothetical protein 4.38937431636e-06 1.17332775682e-05 7.34390325184e-06 +UniRef50_K7RNR2 Succinate dehydrogenase subunit C 0.00117113257725 0.00761459230597 0.00644345972872 +UniRef50_M1CWG1 2.34057918923e-05 0.000209732892648 0.000186327100756 +UniRef50_P28304 Quinone oxidoreductase 1 0.00388343496321 0.000794674597738 -0.00308876036547 +UniRef50_T0V3S5 8.55779831705e-05 1.5291291665e-05 -7.02866915055e-05 +UniRef50_UPI0003291247 PREDICTED 1.20396535447e-05 0.000880102260044 0.000868062606499 +UniRef50_Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 2.74739080526e-06 4.4004260012e-06 1.65303519594e-06 +UniRef50_Q46832 Putative type II secretion system M type protein YghD 0.00474062141734 0.00191710303513 -0.00282351838221 +UniRef50_UPI000378EA8F hypothetical protein 1.77333219193e-06 2.82764477725e-06 1.05431258532e-06 +UniRef50_I1ZM50 Cytosine specific methyltransferase 0.000813507857067 0.00486354440158 0.00405003654451 +UniRef50_D8JGN7 Surface antigen family protein 0.000129127810593 0.00618591702472 0.00605678921413 +UniRef50_UPI0002BA2677 hypothetical protein, partial 1.9838755858e-05 0.000655513760179 0.000635675004321 +UniRef50_A6M2Z1 Membrane protein containing C terminal PDZ domain 0.000102392221207 0.000961970691309 0.000859578470102 +UniRef50_A0JW97 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 0.000188307819643 0.000348748837992 0.000160441018349 +UniRef50_UPI000255C63D FhuG, partial 0.00012800735402 3.39194000109e-05 -9.40879540091e-05 +UniRef50_UPI0002653F14 PREDICTED 4.25237102377e-05 4.65983926492e-07 -4.20577263112e-05 +UniRef50_UPI0003B5B2C4 NADH dehydrogenase subunit L, partial 9.34724069736e-06 7.78127528894e-06 -1.56596540842e-06 +UniRef50_X7EC41 0.000118063471479 0.000379988849641 0.000261925378162 +UniRef50_U5W2Y7 1.14247247241e-05 7.7444781128e-06 -3.6802466113e-06 +UniRef50_B9KUD4 0.00108890189092 0.0015542984484 0.00046539655748 +UniRef50_F0RMA7 Polyphosphate 0.000448502806262 0.0500165458335 0.0495680430272 +UniRef50_R6CQ31 1.84534311822e-05 0.000129756681949 0.000111303250767 +UniRef50_U6LIN1 TPR domain containing protein, putative 2.37272158289e-06 3.20404851566e-06 8.3132693277e-07 +UniRef50_I0THL6 Branched chain amino acid transport protein AzlD 0.000250918091595 8.21251801589e-05 -0.000168792911436 +UniRef50_Q2FX83 0.00295250778181 0.000258463341208 -0.0026940444406 +UniRef50_Q2FX82 0.00600738176552 0.000282186342579 -0.00572519542294 +UniRef50_Q87VA4 Glutathione synthetase 0.00250477832542 1.47756337913e-05 -0.00249000269163 +UniRef50_Q92W60 Ribose import ATP binding protein RbsA 2 2.85111657138e-05 1.43370311099e-05 -1.41741346039e-05 +UniRef50_G7LXK1 0.000382028850527 0.00101946315988 0.000637434309353 +UniRef50_Q8ZP50 Outer membrane protein W 0.00214371774459 0.00265284403128 0.00050912628669 +UniRef50_A9M0L0 ATP dependent RNA helicase HrpA 8.21669762549e-05 0.00291963578525 0.002837468809 +UniRef50_W4TIL7 0.000431371003163 0.00335523347021 0.00292386246705 +UniRef50_E1HJW0 Pertactin 0.00228474159094 0.000276362630948 -0.00200837895999 +UniRef50_U5US72 0.00160775083463 0.0113542326449 0.00974648181027 +UniRef50_UPI00036A56E1 hypothetical protein 2.7243295977e-05 9.33061411336e-06 -1.79126818636e-05 +UniRef50_S9SLK2 9.9059743932e-05 2.9423694168e-05 -6.9636049764e-05 +UniRef50_UPI0004203E19 hypothetical protein 8.30973138143e-06 1.08022290303e-05 2.49249764887e-06 +UniRef50_UPI0003C154AA PREDICTED 1.8195759318e-06 2.75172738936e-05 2.56976979618e-05 +UniRef50_G7U653 0.000146123608583 0.00168723475994 0.00154111115136 +UniRef50_C6W3G1 Aminotransferase class I and II 0.00058010425734 0.00277925056774 0.0021991463104 +UniRef50_UPI00042431D1 hypothetical protein 2.08164410094e-05 7.53906005341e-06 -1.3277380956e-05 +UniRef50_T2HSJ7 F pilus assembly protein 8.75712949714e-05 2.40291068814e-05 -6.354218809e-05 +UniRef50_I0C7C9 dTDP glucose 4,6 dehydratase 0.0106241732942 0.00110387198207 -0.00952030131213 +UniRef50_R7PW61 Type IV leader peptidase 0.000518067696928 0.00107603825425 0.000557970557322 +UniRef50_E8SGS1 0.0118104355609 0.00184705884496 -0.00996337671594 +UniRef50_Q8DUK2 0.0108637471843 0.00300698495088 -0.00785676223342 +UniRef50_A8GY42 ATP synthase subunit alpha 4.03695507321e-06 1.0537664197e-05 6.50070912379e-06 +UniRef50_Q6FUF3 GMP synthase [glutamine hydrolyzing] 3.01478731712e-05 3.14852876128e-05 1.3374144416e-06 +UniRef50_G4Q6V2 Carbamoyl phosphate synthase large chain 0.0053950695308 0.00909900178838 0.00370393225758 +UniRef50_K4PQ99 Clostridial hydrophobic W 0.000370043538567 0.000180502254133 -0.000189541284434 +UniRef50_UPI00035C4E3D hypothetical protein 8.62094795342e-06 0.000166166518087 0.000157545570134 +UniRef50_P13570 Bacterioferritin 0.000121118115786 4.95380389212e-05 -7.15800768648e-05 +UniRef50_G7M0S1 Lysine tRNA ligase 0.000498355565453 0.000534690105858 3.6334540405e-05 +UniRef50_R9YJ81 Thioester reductase domain protein 0.0139008014083 0.00316885958878 -0.0107319418195 +UniRef50_UPI0003B42AEE C4 dicarboxylate ABC transporter 1.21380618432e-05 5.35186028148e-05 4.13805409716e-05 +UniRef50_B3QR98 DNA directed RNA polymerase subunit alpha 1.70546956108e-05 5.2309565297e-05 3.52548696862e-05 +UniRef50_C4LJ74 Polyribonucleotide nucleotidyltransferase 2.43187919393e-06 7.08024576682e-06 4.64836657289e-06 +UniRef50_UPI0003B4EE97 helicase SNF2 1.57710266133e-06 0.000145822703997 0.000144245601336 +UniRef50_UPI00036D95BA hypothetical protein 1.24205654077e-05 1.57224219241e-05 3.3018565164e-06 +UniRef50_B4RQR5 MafB5 7.73008850942e-05 0.0112981725091 0.011220871624 +UniRef50_S2WYG7 4.4949093766e-06 1.39708656945e-05 9.4759563179e-06 +UniRef50_Q2NFU2 Glutamate tRNA ligase 0.00417260545942 0.00025223600293 -0.00392036945649 +UniRef50_C5N0Q7 Transition metal uptake transporter, Ni2+ Co2+ transporter family 0.0119055975031 0.00189995209721 -0.0100056454059 +UniRef50_P0A084 Peptide methionine sulfoxide reductase MsrA 1 0.00359161530083 0.00157319561264 -0.00201841968819 +UniRef50_J9P4P6 0.000187498079265 0.000366771152395 0.00017927307313 +UniRef50_F0Y4U2 0.000248090074845 0.000406830410055 0.00015874033521 +UniRef50_UPI0002652BE7 PREDICTED 2.43837977446e-05 1.37315801897e-05 -1.06522175549e-05 +UniRef50_A6LTC6 Methyl accepting chemotaxis sensory transducer 0.000376434544841 0.00169311165696 0.00131667711212 +UniRef50_P0AGG1 Thiamine monophosphate kinase 0.00213029514292 0.00128822028526 -0.00084207485766 +UniRef50_O31875 Ribonucleoside diphosphate reductase NrdEB subunit alpha 1.32583882405e-05 0.00618116651266 0.00616790812442 +UniRef50_W4FVH2 5.9417141252e-05 4.83822280636e-05 -1.10349131884e-05 +UniRef50_A5UKG7 SAM dependent methyltransferase, UbiE CobQ family 0.00233279535001 0.000406399135599 -0.00192639621441 +UniRef50_UPI0002629825 monosaccharide ABC transporter ATP binding protein 1.98586295553e-05 5.45882800605e-05 3.47296505052e-05 +UniRef50_J3LY38 0.00336713743001 0.00220120321928 -0.00116593421073 +UniRef50_O85673 Anthranilate 1,2 dioxygenase large subunit 0.000551156015442 0.00752400659321 0.00697285057777 +UniRef50_Q1GKJ0 2.9560558398e-05 2.35686286387e-05 -5.9919297593e-06 +UniRef50_O24457 Pyruvate dehydrogenase E1 component subunit alpha 3, chloroplastic 4.11267291154e-06 1.48091951232e-05 1.06965222117e-05 +UniRef50_UPI0002FF342B hypothetical protein 1.32109089438e-05 4.07281135847e-06 -9.13809758533e-06 +UniRef50_I0JK96 Hit like protein involved in cell cycle regulation 0.00788202306286 0.00492513605913 -0.00295688700373 +UniRef50_A4G1V2 Valine tRNA ligase 3.32539668324e-06 1.84665725121e-06 -1.47873943203e-06 +UniRef50_W7VMY1 3.61027535641e-05 0.00235043235336 0.0023143295998 +UniRef50_UPI000262925E hypothetical protein 6.33125089561e-06 2.10032995687e-05 1.46720486731e-05 +UniRef50_Q53143 Diheme cytochrome c type 0.00414200089627 0.000362351785524 -0.00377964911075 +UniRef50_UPI0003760E73 hypothetical protein 0.000206083504335 1.87444355275e-05 -0.000187339068807 +UniRef50_P36547 HTH type transcriptional regulator eutR 0.00467455047681 0.00100464669488 -0.00366990378193 +UniRef50_UPI0003C7FEAE cation 0.000194262517925 0.000875624012626 0.000681361494701 +UniRef50_M7DZA1 Transcriptional regulator 0.00706374476827 0.00194175979174 -0.00512198497653 +UniRef50_UPI00046569ED MULTISPECIES 8.68274969527e-06 0.000104171394334 9.54886446387e-05 +UniRef50_S9S8N1 2.55010418744e-05 1.64202098079e-05 -9.0808320665e-06 +UniRef50_A3SJL5 3.73345220017e-05 4.82590790839e-05 1.09245570822e-05 +UniRef50_P0AAP2 Protein AdrA 0.00174797592104 0.00156902743598 -0.00017894848506 +UniRef50_E8SHK7 0.0060322112258 0.00229383215423 -0.00373837907157 +UniRef50_Q4K5Z7 Hemin import ATP binding protein HmuV 1.15190688688e-05 0.00228224289719 0.00227072382832 +UniRef50_A6DX59 FlgJ 7.35022472387e-05 3.94961655918e-05 -3.40060816469e-05 +UniRef50_E6DXQ9 0.000218621229065 0.00298319847351 0.00276457724445 +UniRef50_A3NGC1 3.58875481148e-05 0.00015255365112 0.000116666103005 +UniRef50_C3P501 ATP phosphoribosyltransferase 0.00301331552906 0.00202051483892 -0.00099280069014 +UniRef50_P58939 Carbamoyl phosphate synthase large chain 1.22039021227e-05 1.0202939716e-05 -2.0009624067e-06 +UniRef50_O52058 Biotin carboxylase 0.000292925225503 0.00203149462811 0.00173856940261 +UniRef50_D3QZW7 0.00980680125511 0.00345261939479 -0.00635418186032 +UniRef50_B9JEG2 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.00771781921498 0.00174667507939 -0.00597114413559 +UniRef50_A0A031JSK7 FAD dependent oxidoreductase 1.89086488443e-05 3.71663561538e-06 -1.51920132289e-05 +UniRef50_UPI00025555DE ribose transport ATP binding protein RbsA 3.39473502347e-06 4.75876652797e-06 1.3640315045e-06 +UniRef50_UPI0003C17A60 PREDICTED 6.85570190773e-06 3.39654147539e-05 2.71097128462e-05 +UniRef50_Q6A948 Pyridoxal biosynthesis lyase PdxS 0.000163763416959 0.00308210759861 0.00291834418165 +UniRef50_C6D7D6 3.21318552284e-06 5.81024279496e-05 5.48892424268e-05 +UniRef50_Q9VMC6 CG9547 0.00568403392361 0.00624238946759 0.00055835554398 +UniRef50_Q04D50 Dipeptidase A, Cysteine peptidase, MEROPS family C69 0.00625520797827 0.00131196366206 -0.00494324431621 +UniRef50_X1BPY3 Marine sediment metagenome DNA, contig 1.56859376853e-05 1.13933600198e-05 -4.2925776655e-06 +UniRef50_UPI0003DEC72F PREDICTED 1.03534241082e-05 9.52733061877e-06 -8.2609348943e-07 +UniRef50_A3M193 Transposition Helper 0.000160404811127 0.0102587095515 0.0100983047404 +UniRef50_UPI000471875A TetR family transcriptional regulator 9.26285140189e-06 1.75328009356e-05 8.26994953371e-06 +UniRef50_UPI00037E1773 DeoR family transcripitonal regulator 3.59992831786e-05 7.5506123645e-06 -2.84486708141e-05 +UniRef50_UPI00036F7656 MULTISPECIES 6.38815966369e-05 1.62419008121e-05 -4.76396958248e-05 +UniRef50_A9B436 30S ribosomal protein S4 0.0168491938428 0.00825516082248 -0.00859403302032 +UniRef50_J7TT99 Transport protein SgaT, putative 0.000199049651704 0.000738472278661 0.000539422626957 +UniRef50_A5UNM1 Glycosyltransferase CDP glycerol 0.00329511126452 0.000256960016771 -0.00303815124775 +UniRef50_C4S247 Hydrogenase nickel incorporation protein 0.000658094955333 0.000123668170407 -0.000534426784926 +UniRef50_W7CHL0 4.11514823816e-06 1.20703088507e-05 7.95516061254e-06 +UniRef50_F2U144 7.35776316135e-05 2.53679291629e-05 -4.82097024506e-05 +UniRef50_J0ZPP4 0.000104784471121 0.00100107357693 0.000896289105809 +UniRef50_W4U3A3 Valyl tRNA synthetase 0.000197807464495 0.00480105231662 0.00460324485213 +UniRef50_P05096 DNA primase 4.15172593969e-06 3.45062285609e-06 -7.011030836e-07 +UniRef50_P44808 0.0010815860551 0.000699858047475 -0.000381728007625 +UniRef50_Q9ZSS6 Threonine dehydratase biosynthetic, chloroplastic 2.12151621216e-06 2.07767117667e-05 1.86551955545e-05 +UniRef50_Q8RLE0 Thymidine kinase 1.20864204236e-05 2.690913555e-05 1.48227151264e-05 +UniRef50_UPI000377E217 hypothetical protein 9.70316545848e-05 0.00111759193717 0.00102056028259 +UniRef50_UPI000467D001 hypothetical protein 7.54851052634e-05 5.24087867663e-05 -2.30763184971e-05 +UniRef50_X7U6C1 PPE family protein 0.000174808702695 4.20955336095e-05 -0.000132713169085 +UniRef50_A3PGB8 Histidine kinase 0.000765268017034 9.94890640735e-05 -0.000665778952961 +UniRef50_G8R7R2 Methyltransferase family protein 0.000565439845776 0.00179088111745 0.00122544127167 +UniRef50_O86564 L serine dehydratase 0.000957011210521 0.000226770720448 -0.000730240490073 +UniRef50_Q040L6 Pyrrolidone carboxylate peptidase 1.79060036398e-05 0.0047394824134 0.00472157640976 +UniRef50_UPI0003F05B0E PREDICTED 1.19402384799e-05 1.85724110366e-05 6.6321725567e-06 +UniRef50_V4HTY9 0.000283061874041 0.000386506188734 0.000103444314693 +UniRef50_A4XXI2 AzlC family protein 3.45280353157e-05 1.25711181296e-05 -2.19569171861e-05 +UniRef50_F8JSP7 9.36826702177e-07 0.000445451068846 0.000444514242144 +UniRef50_E8UAV0 Ferripyochelin binding protein 6.39937393516e-05 2.70821797696e-05 -3.6911559582e-05 +UniRef50_UPI00047643BC hypothetical protein 1.34814383621e-05 2.57719857434e-05 1.22905473813e-05 +UniRef50_A6LZP3 LuxR family transcriptional regulator 0.000248772061791 0.000556971100481 0.00030819903869 +UniRef50_UPI00045EBBEF hypothetical protein 0.000104358822424 8.85737719854e-05 -1.57850504386e-05 +UniRef50_UPI0003799247 hypothetical protein 2.66700391635e-05 3.74003767051e-05 1.07303375416e-05 +UniRef50_F5TD70 Type I site specific deoxyribonuclease, HsdR family 0.00559880477804 0.00146444714773 -0.00413435763031 +UniRef50_UPI00036F6A1E hypothetical protein 1.38135283087e-05 6.97845353602e-06 -6.83507477268e-06 +UniRef50_H3W5C9 0.000323244902479 0.0016406483622 0.00131740345972 +UniRef50_UPI000479F12E hypothetical protein 6.12922761945e-06 1.06620708538e-05 4.53284323435e-06 +UniRef50_P0AEV5 Formate hydrogenlyase regulatory protein HycA 0.00312321793233 0.00162559654236 -0.00149762138997 +UniRef50_UPI0004766E4B hemolysin secretion protein D 1.63186940329e-05 2.74038489784e-05 1.10851549455e-05 +UniRef50_UPI000441FC52 PREDICTED 8.09156270868e-06 1.13267357206e-05 3.23517301192e-06 +UniRef50_A5VUC7 Tetracycline resistance protein 8.65696593872e-05 7.56746574395e-05 -1.08950019477e-05 +UniRef50_UPI0002DF600A hypothetical protein 2.67984579038e-05 3.77087794666e-06 -2.30275799571e-05 +UniRef50_E0RHV7 Predicted transcriptional regulator 0.000323112341457 0.000883943065643 0.000560830724186 +UniRef50_Q9RY38 Oxidoreductase, short chain dehydrogenase reductase family 0.000118830846434 0.00854821222625 0.00842938137982 +UniRef50_E1VLU5 Short chain dehydrogenase reductase SDR 0.000312396270696 0.00682340946668 0.00651101319598 +UniRef50_W7X1H4 0.00179053598994 0.00023000036649 -0.00156053562345 +UniRef50_UPI000289460A xanthine permease 7.57070346026e-05 0.000216710396056 0.000141003361453 +UniRef50_H8H074 Phosphoglucomutase phosphomannomutase alpha beta alpha domain I 0.000320127685782 0.0611466447986 0.0608265171128 +UniRef50_R9SM76 CDP glycerol 0.00320596217537 0.00065750923437 -0.002548452941 +UniRef50_Q9YAS0 UPF0219 protein APE_1873.1 0.00309430619939 0.00149517423546 -0.00159913196393 +UniRef50_P0A9E1 Arabinose operon regulatory protein 0.00503968012991 0.000661023478047 -0.00437865665186 +UniRef50_Q3JGP6 5.6645440651e-05 1.70727389123e-06 -5.49381667598e-05 +UniRef50_Q99ZP1 Serine hydroxymethyltransferase 0.000127483777174 0.00851200866412 0.00838452488695 +UniRef50_Q8XMJ3 3 dehydroquinate synthase 0.000147840465605 0.00195151448496 0.00180367401935 +UniRef50_UPI000362B451 PTS fructose transporter subunit IIA 5.68516927744e-06 0.000465761661879 0.000460076492602 +UniRef50_I7DVA3 0.0112495100977 0.00375996269249 -0.00748954740521 +UniRef50_UPI000473C32B branched chain amino acid aminotransferase, partial 0.000531434996234 5.37079496503e-05 -0.000477727046584 +UniRef50_C4RR63 Secreted protein 1.35657630168e-06 0.000162933354593 0.000161576778291 +UniRef50_Q4UTD4 Serine tRNA ligase 2.78132886957e-05 1.19513497594e-05 -1.58619389363e-05 +UniRef50_Q97DA2 3 oxoacyl [acyl carrier protein] synthase 3 0.000367413304853 0.000132802062717 -0.000234611242136 +UniRef50_Q5HQF6 Transposase, putative, truncation 0.000608848369114 4.87380049521e-05 -0.000560110364162 +UniRef50_P11901 Transposase for insertion sequence element IS421 0.0121123026975 0.00351301569196 -0.00859928700554 +UniRef50_UPI000467ECCA hypothetical protein 1.10996397435e-05 2.46013044436e-05 1.35016647001e-05 +UniRef50_Q04JH1 Adenine phosphoribosyltransferase 0.000864296606538 0.00456015581562 0.00369585920908 +UniRef50_A6M3C4 ATPase like protein 0.000477774808878 0.000422284350448 -5.549045843e-05 +UniRef50_Q4PJD9 Predicted acetyl CoA carboxylase 2.52208017196e-05 4.17310028785e-05 1.65102011589e-05 +UniRef50_W5XBC3 50S ribosomal protein L24 7.23894009866e-05 9.32581063359e-06 -6.3063590353e-05 +UniRef50_E8PH61 AdeT, RND type efflux pump 0.000255663786733 0.0150266631524 0.0147709993657 +UniRef50_B9M8U3 8 amino 7 oxononanoate synthase 2.50071097098e-05 5.85229974351e-05 3.35158877253e-05 +UniRef50_Q1GGF9 Endoribonuclease L PSP 0.000114021392599 1.91445928643e-05 -9.48767997347e-05 +UniRef50_X1CCA7 Marine sediment metagenome DNA, contig 0.000138381650314 4.62192843001e-05 -9.21623660139e-05 +UniRef50_A6LSR6 Ribosomal protein S12 methylthiotransferase RimO 0.000750680178348 0.00214731201104 0.00139663183269 +UniRef50_UPI00030C0032 hypothetical protein 7.73314708927e-05 2.86575260671e-05 -4.86739448256e-05 +UniRef50_UPI0003B76375 acetyl CoA carboxylase biotin carboxylase subunit 2.6273768849e-06 1.93268379593e-05 1.66994610744e-05 +UniRef50_S4XY12 0.000335619750061 0.000165135156678 -0.000170484593383 +UniRef50_A6LY74 Resolvase helix turn helix domain protein 0.000283114491639 0.00358695557167 0.00330384108003 +UniRef50_UPI00035E0C27 hypothetical protein 3.96740022967e-06 6.17925468122e-06 2.21185445155e-06 +UniRef50_A7FB80 0.000115556935367 0.00604809169925 0.00593253476388 +UniRef50_A6LR67 Accessory gene regulator B 0.00110247393114 0.000652642456561 -0.000449831474579 +UniRef50_Q8CP92 Membrane spanning protein 0.00744565362627 0.00483684485023 -0.00260880877604 +UniRef50_Q47482 ORF114 0.000493688641771 0.00057158071973 7.7892077959e-05 +UniRef50_C7ZV35 II DNA RNA helicase ComFC 0.0210091560338 0.00754229594776 -0.013466860086 +UniRef50_M3ID57 E1 E2 ATPase 0.000249990721098 0.000789265136377 0.000539274415279 +UniRef50_A0A023FF30 3.62139561122e-05 0.00142827675171 0.0013920627956 +UniRef50_H0DLY7 Surface protein G 0.00157394557062 0.000319912896401 -0.00125403267422 +UniRef50_UPI00046D439D hypothetical protein 2.38020122541e-05 9.0603070688e-05 6.68010584339e-05 +UniRef50_UPI0003B4EBBD nitrogen regulatory protein P II 1 0.00159542406813 0.00135634088186 -0.00023908318627 +UniRef50_M1MAL1 Glycosyltransferase 0.000250972966228 0.00160676762963 0.0013557946634 +UniRef50_P55294 dTDP glucose 4,6 dehydratase 0.030414237891 0.0248018092279 -0.0056124286631 +UniRef50_G1Y1D6 9.64896299881e-05 2.63589067334e-06 -9.38537393148e-05 +UniRef50_A1U6L0 Acetylglutamate kinase 5.78979809045e-05 2.84418948458e-05 -2.94560860587e-05 +UniRef50_D2J655 Replication initiation protein 0.0122474735701 0.00604259091261 -0.00620488265749 +UniRef50_A8LJQ4 Pyrophosphate phospho hydrolase 0.0163185787048 0.00175023911835 -0.0145683395864 +UniRef50_R6VGJ2 Transcriptional regulator 3.43311342375e-06 4.50064458968e-06 1.06753116593e-06 +UniRef50_P34750 Fimbrial assembly protein PilQ 0.000762210711383 0.000636221986797 -0.000125988724586 +UniRef50_Q4L4Y3 ATP dependent helicase nuclease subunit A 0.010431432022 0.00238436368062 -0.00804706834138 +UniRef50_UPI00037D8E01 hypothetical protein 2.33980037298e-05 5.80809211738e-06 -1.75899116124e-05 +UniRef50_Q46PF7 Flagellar P ring protein 0.00153967282916 0.000247472099328 -0.00129220072983 +UniRef50_UPI0003B3AA9D alpha amylase 1.93087461307e-05 2.18815178027e-05 2.572771672e-06 +UniRef50_Q88BP2 3.39033404267e-05 8.75099966028e-06 -2.51523407664e-05 +UniRef50_F2EDD7 Predicted protein 2.80319485155e-05 3.2441954798e-05 4.4100062825e-06 +UniRef50_Q89DX7 Arginine deiminase 0.000510375683227 0.00699897750424 0.00648860182101 +UniRef50_Q9PBX0 Ribose 5 phosphate isomerase A 0.000715213027021 0.00381047271182 0.0030952596848 +UniRef50_P0A925 Phosphatidylglycerophosphatase B 0.00137073378749 0.00313813200463 0.00176739821714 +UniRef50_UPI00037F38F9 hypothetical protein 1.2004610822e-06 3.86118987638e-06 2.66072879418e-06 +UniRef50_D8JJE0 0.000334568976163 0.0108057389389 0.0104711699627 +UniRef50_UPI00046934E1 hypothetical protein 0.000266495917335 2.3411680485e-05 -0.00024308423685 +UniRef50_Q8ZPK6 ATP dependent dethiobiotin synthetase BioD 2 0.00209755211865 0.00198044188274 -0.00011711023591 +UniRef50_B9KRH6 CBR SDC 3 protein 0.00210983179633 0.0018639736818 -0.00024585811453 +UniRef50_UPI0002EB1E79 hypothetical protein 4.64891720504e-06 2.72914598628e-05 2.26425426578e-05 +UniRef50_Q0C397 Intracellular protease, PfpI family 0.00662979260241 0.00136300017782 -0.00526679242459 +UniRef50_K2EJR9 1.10642568531e-05 3.11507874188e-05 2.00865305657e-05 +UniRef50_O48917 UDP sulfoquinovose synthase, chloroplastic 0.000374055007741 3.74532390097e-05 -0.000336601768731 +UniRef50_A5UJN9 0.00133111087142 0.000859534186694 -0.000471576684726 +UniRef50_A9U6J3 Predicted protein 2.79313676191e-06 6.25435518412e-06 3.46121842221e-06 +UniRef50_UPI00035E9CFE 50S ribosomal protein L24 0.000110607488233 0.000271515398775 0.000160907910542 +UniRef50_UPI000472DFA0 hypothetical protein, partial 2.74092417244e-05 1.75612436021e-05 -9.8479981223e-06 +UniRef50_UPI00040078F0 hypothetical protein 0.000135155001406 9.24941621294e-05 -4.26608392766e-05 +UniRef50_W5V1P4 Type II secretion system protein E 0.00086047314663 0.000302051193502 -0.000558421953128 +UniRef50_P65904 Phosphoribosylformylglycinamidine synthase 1 0.0241475662707 0.00262203693888 -0.0215255293318 +UniRef50_Q7MAB8 GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE 0.000252851661188 0.0037854676914 0.00353261603021 +UniRef50_K1Y7A4 3.3965001404e-06 4.97122702253e-06 1.57472688213e-06 +UniRef50_T1Y669 Multidrug resistance protein B 0.0136958739464 0.00174634284999 -0.0119495310964 +UniRef50_Q8RHI7 DNA directed RNA polymerase subunit beta 2.4971001548e-06 2.13760256041e-06 -3.5949759439e-07 +UniRef50_C3AKR0 Cobalamin synthesis protein 4.05000960698e-06 6.67603705106e-06 2.62602744408e-06 +UniRef50_Q9VLJ8 Adenylyltransferase and sulfurtransferase MOCS3 9.47662301215e-06 1.59556152992e-05 6.47899228705e-06 +UniRef50_Q9RSN4 9.05242179512e-05 0.00757152767279 0.00748100345484 +UniRef50_A3CP54 ABC transporter membrane spanning permease, arginine histidine transport, putative 0.00353588336533 0.00386679912588 0.00033091576055 +UniRef50_UPI000345D7AA diaminopimelate decarboxylase 4.34609108208e-06 2.39633102191e-05 1.9617219137e-05 +UniRef50_I6TNC0 Serine acetyltransferase 0.00851035619071 0.0063426358078 -0.00216772038291 +UniRef50_G7U472 Membrane spanning protein 0.000110161280792 0.00601291757033 0.00590275628954 +UniRef50_UPI000374B781 hypothetical protein, partial 0.000214689757061 2.24315485918e-05 -0.000192258208469 +UniRef50_M9VCZ7 1.71256856409e-05 9.66367756369e-05 7.9511089996e-05 +UniRef50_Q2GW43 Predicted protein 4.3477166281e-05 0.000177385147269 0.000133907980988 +UniRef50_UPI00029AD767 Gnt II system L idonate transporter IdnT 1.72851080794e-05 7.85614078471e-06 -9.42896729469e-06 +UniRef50_A5UDU8 0.000524025360031 0.000135881919561 -0.00038814344047 +UniRef50_UPI0003718E98 30S ribosomal protein S1 2.18921912679e-05 7.2780034869e-05 5.08878436011e-05 +UniRef50_R9SII2 Hmd co occurring protein HcgC 0.00172424918664 0.000460542401304 -0.00126370678534 +UniRef50_K4ADF5 1.25559604402e-05 0.000442420454189 0.000429864493749 +UniRef50_UPI0002195D49 NADPH 9.73611157681e-06 6.47032043887e-05 5.49670928119e-05 +UniRef50_Q0TM34 Pyridine nucleotide disulphide oxidoreductase 0.00033207216226 0.00170295475624 0.00137088259398 +UniRef50_A5W887 0.000241705488396 0.000898421567906 0.00065671607951 +UniRef50_A1AT17 Cobyrinic acid A,C diamide synthase 1.51923968868e-05 0.000219469456068 0.000204277059181 +UniRef50_W9AMV1 3 oxoadipate enol lactonase 2.28444236225e-06 1.4579366498e-05 1.22949241358e-05 +UniRef50_P31469 UPF0167 protein CbrC 0.00216536828323 0.00171556918863 -0.0004497990946 +UniRef50_A6D355 1.74580398694e-05 8.23222475182e-05 6.48642076488e-05 +UniRef50_E3B8X8 CobQ CobB MinD ParA nucleotide binding domain protein 2.61866800002e-06 7.4442877724e-06 4.82561977238e-06 +UniRef50_B2TKG7 0.000216399407732 0.00086928381685 0.000652884409118 +UniRef50_UPI000289DAB7 ABC transporter 0.000113413739141 2.64098519837e-05 -8.70038871573e-05 +UniRef50_B2TKG9 0.00102643486032 0.000993315951759 -3.3118908561e-05 +UniRef50_A6LPH0 0.000750394818849 0.00128100895609 0.000530614137241 +UniRef50_Q2YTW8 0.000439193115912 0.000753213285907 0.000314020169995 +UniRef50_Q39242 Thioredoxin reductase 2 6.00663567777e-05 2.0663385369e-05 -3.94029714087e-05 +UniRef50_U6ZY01 0.00020564138946 8.17945692505e-05 -0.00012384682021 +UniRef50_A0RWW0 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 6.32058527058e-06 3.50662434408e-05 2.87456581702e-05 +UniRef50_Q6LLR8 UPF0761 membrane protein PBPRA3489 0.00177760099104 0.000808242823505 -0.000969358167535 +UniRef50_B5XXZ2 4 hydroxybenzoate octaprenyltransferase 0.000596847879521 0.000324082819905 -0.000272765059616 +UniRef50_UPI000406F7B4 MULTISPECIES 1.58434904583e-05 2.49197695075e-05 9.0762790492e-06 +UniRef50_I6ST36 Transcriptional regulator MutR 0.00624037941467 0.00443695388435 -0.00180342553032 +UniRef50_O34453 Nitric oxide synthase oxygenase 0.017196129162 0.00620526817423 -0.0109908609878 +UniRef50_UPI0003B677CD streptomycin 3 kinase 4.04359492681e-05 3.30317809956e-05 -7.4041682725e-06 +UniRef50_D9RG71 Colicin V production protein 0.00672710458867 0.00273586636745 -0.00399123822122 +UniRef50_P57067 Outer membrane lipoprotein carrier protein 0.000841162307276 0.00507186423073 0.00423070192345 +UniRef50_A9LZF1 P type cation transporting ATPase 4.68344899327e-05 7.25891123e-05 2.57546223673e-05 +UniRef50_A7HZX6 Serine tRNA ligase 0.000104893050104 0.00256121763324 0.00245632458314 +UniRef50_A9TBR6 Predicted protein 0.0145760983376 0.00435395015742 -0.0102221481802 +UniRef50_F6D6D0 Peptidyl tRNA hydrolase 0.000337041061476 0.00290475447734 0.00256771341586 +UniRef50_UPI0003B5DDB2 ABC transporter ATP binding protein, partial 6.78812102337e-05 0.000125750896615 5.78696863813e-05 +UniRef50_E2BKF3 3.96643296335e-06 0.000136438871888 0.000132472438925 +UniRef50_K4A2U8 0.000304970727084 4.61271704896e-06 -0.000300358010035 +UniRef50_F4FN41 Transcriptional regulator, AraC family 0.0155775375806 0.00293833408134 -0.0126392034993 +UniRef50_E3A746 0.000140156412891 5.64479207156e-05 -8.37084921754e-05 +UniRef50_F2D3N2 Predicted protein 0.000133567755941 0.000259395788164 0.000125828032223 +UniRef50_Q7WFR5 Ribosomal RNA small subunit methyltransferase H 1.36602863729e-05 0.0038174383672 0.00380377808083 +UniRef50_UPI000475712A MFS transporter 1.75256842449e-05 7.44057420618e-06 -1.00851100387e-05 +UniRef50_UPI0002FE50F2 ABC transporter ATP binding protein 1.85584804407e-05 3.70529158408e-05 1.84944354001e-05 +UniRef50_I0C492 Transposase 0.00130975222434 0.000231620945253 -0.00107813127909 +UniRef50_P37105 Signal recognition particle protein 0.0224193313677 0.00663389889878 -0.0157854324689 +UniRef50_Q9HU72 Lactoylglutathione lyase 0.000680299541495 0.00241787225508 0.00173757271358 +UniRef50_Q49VK4 Sensor histidine kinase GraS 0.0220620443689 0.00195780223641 -0.0201042421325 +UniRef50_U6LXV1 1.27464680231e-05 1.0041373937e-05 -2.7050940861e-06 +UniRef50_UPI0004712B82 deoxyguanosinetriphosphate triphosphohydrolase 7.23374901893e-05 5.49917380398e-06 -6.68383163853e-05 +UniRef50_X7ECQ0 2.99058323184e-06 4.02256535327e-06 1.03198212143e-06 +UniRef50_C7J660 Os08g0537001 protein 7.25487460329e-05 0.00186602925987 0.00179348051384 +UniRef50_UPI0003B571D7 NAD synthetase 1.39661225465e-05 5.49529399806e-06 -8.47082854844e-06 +UniRef50_A6QIL3 0.00287740971635 0.00171699017539 -0.00116041954096 +UniRef50_Q8CR15 0.00316949491293 0.00255735160822 -0.00061214330471 +UniRef50_O03077 ATP synthase subunit beta, chloroplastic 2.17568855978e-05 1.33017848625e-05 -8.4551007353e-06 +UniRef50_UPI000359A7EA PREDICTED 1.04670684848e-05 2.64353075984e-05 1.59682391136e-05 +UniRef50_Q8H107 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2, mitochondrial 6.03303344623e-06 5.79615092735e-06 -2.3688251888e-07 +UniRef50_R4LTE6 4.53103929857e-05 7.91328701238e-05 3.38224771381e-05 +UniRef50_A6LZR2 0.00042555437847 0.000629305670241 0.000203751291771 +UniRef50_A6LZR6 0.000260727048894 0.00160567895302 0.00134495190413 +UniRef50_Q2Y639 UDP N acetylmuramate L alanine ligase 0.00018293613576 0.00731875406767 0.00713581793191 +UniRef50_V8B5L5 0.000863045765934 0.000156252224977 -0.000706793540957 +UniRef50_F3SUZ8 Radical SAM domain protein 0.00201568528409 0.000629795527281 -0.00138588975681 +UniRef50_Y1QUK6 8.13734964445e-05 3.69775393467e-05 -4.43959570978e-05 +UniRef50_UPI00047377E9 hypothetical protein, partial 3.94525681701e-05 8.87784107276e-05 4.93258425575e-05 +UniRef50_A3M2I8 Histidinol phosphate aminotransferase 0.00046885235971 0.00567610350902 0.00520725114931 +UniRef50_A4WVN9 0.00290065566427 0.000323945366127 -0.00257671029814 +UniRef50_UPI000237EED8 CP4 like integrase 7.58327646046e-05 5.910362196e-05 -1.67291426446e-05 +UniRef50_UPI000463B864 lysine transporter LysE 5.39093855123e-05 7.24673588335e-05 1.85579733212e-05 +UniRef50_Q89KP5 Uridylate kinase 8.17442297073e-06 2.76865616493e-05 1.95121386786e-05 +UniRef50_B1M0V9 1.3377247099e-05 2.36096310302e-05 1.02323839312e-05 +UniRef50_B1M0V4 4.05579581943e-05 6.49182479773e-05 2.4360289783e-05 +UniRef50_UPI0003C18CC4 6.59008925046e-05 2.15749481963e-05 -4.43259443083e-05 +UniRef50_G5RK09 Membrane bound lytic murein transglycosylase A 0.000277436384188 0.000141726147669 -0.000135710236519 +UniRef50_UPI0003B301C3 transcriptional regulator 4.51441636142e-06 8.83461974299e-06 4.32020338157e-06 +UniRef50_T1Y750 IolE protein like protein 0.0135275379538 0.00604186639642 -0.00748567155738 +UniRef50_A6M054 Glycosyl hydrolase family 32, N terminal domain protein 0.000296335201666 0.00221755969591 0.00192122449424 +UniRef50_U5MWS1 Cna B domain protein 0.00147754306325 0.000986657194776 -0.000490885868474 +UniRef50_Q8E2K7 DNA replication and repair protein RecF 0.000688625625614 0.00317949993775 0.00249087431214 +UniRef50_UPI00047CBDF2 hypothetical protein 0.000240575889047 0.000278700690247 3.81248012e-05 +UniRef50_Q92PH0 Glutaminase 0.000395056542981 3.31770832467e-05 -0.000361879459734 +UniRef50_UPI0004777D5E competence protein 1.67227393961e-05 4.62272983391e-05 2.9504558943e-05 +UniRef50_A6LTY9 0.000403648665065 0.00086916539709 0.000465516732025 +UniRef50_Q8NZX4 Transketolase 0.0100067845775 0.0089052511478 -0.0011015334297 +UniRef50_UPI0003FFF64C hypothetical protein 4.05869280772e-06 9.74515360993e-06 5.68646080221e-06 +UniRef50_A4WVF5 L malyl CoA beta methylmalyl CoA lyase 0.0110867481252 0.00625155815433 -0.00483518997087 +UniRef50_Q9SR52 Urease 2.73049017245e-06 2.21385589703e-05 1.94080687979e-05 +UniRef50_UPI00040A8344 potassium ABC transporter ATPase 6.70967284587e-06 1.02219574503e-05 3.51228460443e-06 +UniRef50_UPI000380F703 hypothetical protein 2.47089203454e-05 1.46005608877e-05 -1.01083594577e-05 +UniRef50_D6SH06 0.0183974481137 0.00231373795736 -0.0160837101563 +UniRef50_Q892X8 Oligoendopeptidase F 0.000226404643234 0.00157831737671 0.00135191273348 +UniRef50_F7Y3H5 Enoyl CoA hydratase 0.000246186514471 0.0590711926567 0.0588250061422 +UniRef50_A1VBP9 Binding protein dependent transport systems inner membrane component 0.000154075913818 0.00997984902347 0.00982577310965 +UniRef50_A4WQT8 Membrane protein like protein 0.00595654681931 0.000169416164506 -0.0057871306548 +UniRef50_UPI0004686834 glycoside hydrolase family 13 1.39139135503e-06 0.000133664790574 0.000132273399219 +UniRef50_P37182 Hydrogenase 2 maturation protease 0.0012659285297 0.0159027051226 0.0146367765929 +UniRef50_Q93SE0 Vitamin B12 transporter BtuB 0.00289727394483 0.000389327202494 -0.00250794674234 +UniRef50_R7PWN2 0.00335139666452 0.000526319731719 -0.0028250769328 +UniRef50_A0A009DJS4 7.55210588108e-05 0.000216302604238 0.000140781545427 +UniRef50_UPI000467756F N succinylarginine dihydrolase, partial 1.73659323971e-05 6.10571141461e-05 4.3691181749e-05 +UniRef50_A0A011P1Z9 Inner membrane protein YgaZ 2.79496348456e-05 1.4148988127e-05 -1.38006467186e-05 +UniRef50_Q126M1 Tryptophan synthase beta chain 0.0390244254185 0.034919170447 -0.0041052549715 +UniRef50_Q87EJ9 Divalent metal cation transporter MntH 0.000533505103497 0.00169933831719 0.00116583321369 +UniRef50_UPI00045E71E0 hypothetical protein 6.35215729272e-06 9.87891253154e-05 9.24369680227e-05 +UniRef50_Q9RYV0 Oligoendopeptidase F, putative 6.53844091497e-05 0.042862623316 0.0427972389069 +UniRef50_UPI000299DE22 insertion element transposase 2.13229361984e-05 4.98160277947e-05 2.84930915963e-05 +UniRef50_UPI0002C37426 PREDICTED 8.2749926433e-05 6.47373315948e-05 -1.80125948382e-05 +UniRef50_UPI00032A12CA PREDICTED 8.21602733608e-05 0.000113563759223 3.14034858622e-05 +UniRef50_N6V3L4 0.000599909796145 0.000267276486635 -0.00033263330951 +UniRef50_Q46793 0.000685965317271 0.000270932757067 -0.000415032560204 +UniRef50_UPI000470AE3D phage infection protein 2.15417488433e-06 1.50393423538e-06 -6.5024064895e-07 +UniRef50_UPI00037632C6 hypothetical protein 9.33547047284e-07 4.0935953938e-06 3.16004834652e-06 +UniRef50_UPI00037FBEB2 hypothetical protein 4.27434906246e-05 5.85990885898e-06 -3.68835817656e-05 +UniRef50_V5VD88 0.000378420750072 0.00438671684144 0.00400829609137 +UniRef50_UPI0003C0FBBA PREDICTED 7.48071362449e-06 6.66086152294e-06 -8.1985210155e-07 +UniRef50_P0A9X5 Rod shape determining protein MreB 0.00330849815233 0.000474401201749 -0.00283409695058 +UniRef50_Q2YWJ9 3 dehydroquinate dehydratase 0.0129695489765 0.00174171401473 -0.0112278349618 +UniRef50_Q2LRC2 UDP N acetylglucosamine pyrophosphorylase 0.000157723950778 0.00465736058541 0.00449963663463 +UniRef50_Q9KDA5 DNA binding protein HU 1 0.0013591268233 0.000656259344878 -0.000702867478422 +UniRef50_A0A017SZJ0 7.69620674074e-06 0.000230694069895 0.000222997863154 +UniRef50_D3P3K9 Transposase 0.000197329598523 0.000319289732468 0.000121960133945 +UniRef50_Q9RWI1 2.54771196058e-05 0.0111339034122 0.0111084262926 +UniRef50_UPI0004650D81 DNA polymerase III subunit alpha 3.28332557535e-06 2.04905317529e-06 -1.23427240006e-06 +UniRef50_A5N5C6 Redox sensing transcriptional repressor Rex 0.000593527946053 0.000372247947718 -0.000221279998335 +UniRef50_A6LXW2 FMN binding domain protein 0.000407947092057 0.000839336190158 0.000431389098101 +UniRef50_W5X9T1 Capsule biosynthesis protein, putative 4.89792640796e-05 0.00226521937824 0.00221624011416 +UniRef50_Q5HJ91 Virulence factor EsxA 0.00372004184177 0.00340750044457 -0.0003125413972 +UniRef50_UPI00035D6DF9 hypothetical protein 3.73643105384e-05 2.04757585346e-05 -1.68885520038e-05 +UniRef50_A6LUC6 HIRAN 0.00104182623438 0.000375130960621 -0.000666695273759 +UniRef50_O34760 Probable quorum quenching lactonase YtnP 0.00764133599172 0.00479555153508 -0.00284578445664 +UniRef50_P32709 Protein NrfD 0.0016338349976 0.000375802375719 -0.00125803262188 +UniRef50_A8LAR7 Pyrimidine nucleoside phosphorylase 0.000212341184589 0.00447234074609 0.0042599995615 +UniRef50_W5FVF8 6.9311237827e-05 0.00023199549927 0.000162684261443 +UniRef50_UPI00040BC8B6 hypothetical protein 8.16253013499e-06 2.05466357489e-05 1.23841056139e-05 +UniRef50_UPI00036FB676 hypothetical protein 0.000610333952445 4.84818932346e-05 -0.00056185205921 +UniRef50_R7PY44 0.00116355851109 0.000153752720228 -0.00100980579086 +UniRef50_Q8NSL1 2 methylcitrate synthase 2 1.41759844362e-05 1.19090337343e-05 -2.2669507019e-06 +UniRef50_A9FRC1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.22092137243e-05 8.4996594575e-06 -3.7095542668e-06 +UniRef50_Q74GU4 Acetylglutamate kinase 5.65200365026e-05 1.94846213692e-05 -3.70354151334e-05 +UniRef50_A1B414 General secretory system II, protein E domain protein 0.00210708305497 0.00034781511842 -0.00175926793655 +UniRef50_O34990 Formyltetrahydrofolate deformylase 9.69478794779e-06 0.0420678430526 0.0420581482647 +UniRef50_UPI0003B4C8ED 3 5 exonuclease, partial 0.000486049074949 0.000615903480777 0.000129854405828 +UniRef50_D3E1K6 Cytidyltransferase related domain containing protein 0.00300214912185 0.000313833281181 -0.00268831584067 +UniRef50_M9RAZ0 5.05876655689e-05 5.34024642696e-05 2.8147987007e-06 +UniRef50_P32144 0.00199228377555 0.00110530096434 -0.00088698281121 +UniRef50_C2ZP74 Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein 0.0103726473532 0.00303941058357 -0.00733323676963 +UniRef50_UPI00047AA5CF hypothetical protein, partial 1.64180391911e-05 8.53622670478e-05 6.89442278567e-05 +UniRef50_V4QYP1 HupE UreJ family metal transporter 0.000142095862126 1.90912916601e-05 -0.000123004570466 +UniRef50_A5IUJ4 DNA mismatch repair protein MutS domain protein 0.0107425217306 0.00215060550812 -0.00859191622248 +UniRef50_I1ZMC2 Multidrug ABC transporter, ATPase and permease component 0.00558132555468 0.00526401058772 -0.00031731496696 +UniRef50_A3JX48 0.000159893359667 9.91594747543e-05 -6.07338849127e-05 +UniRef50_UPI0003B4645F hypothetical protein 9.41212324581e-06 3.7632110885e-05 2.82199876392e-05 +UniRef50_UPI00047B8895 DNA primase 3.25774208154e-06 7.41038416249e-06 4.15264208095e-06 +UniRef50_P37662 0.00492642113745 0.000784772776271 -0.00414164836118 +UniRef50_P37663 0.00286626541508 0.00104841250564 -0.00181785290944 +UniRef50_P37664 0.000258552047156 0.00194714311118 0.00168859106402 +UniRef50_Q28WI0 Chromosomal replication initiator protein DnaA 0.00835778969479 0.00197801508343 -0.00637977461136 +UniRef50_Q31DK9 Ribosomal RNA small subunit methyltransferase G 3.29002600525e-05 3.93699810458e-05 6.4697209933e-06 +UniRef50_B0SXH8 Transglutaminase domain protein 7.13480526043e-05 6.95608355963e-05 -1.787217008e-06 +UniRef50_U4GBY1 Putative signal peptide protein 0.000165295635543 0.000235417567459 7.0121931916e-05 +UniRef50_Q4ZUG2 Phenylalanine tRNA ligase beta subunit 0.000210874217451 0.000170239220598 -4.0634996853e-05 +UniRef50_C5WFX1 Ribosomal protein L21 0.00130175416232 0.00089040212621 -0.00041135203611 +UniRef50_Q51392 Probable alginate O acetylase AlgI 0.000747853101288 0.000968536553959 0.000220683452671 +UniRef50_C7ZXN9 Peptidase A24A 0.0124913439708 0.000874758491299 -0.0116165854795 +UniRef50_U5NRI8 0.000492737936354 0.00210146179404 0.00160872385769 +UniRef50_A4WPL6 0.0167966931418 0.0069845382664 -0.0098121548754 +UniRef50_A3ZQR3 0.000151110456182 3.40474006485e-05 -0.000117063055534 +UniRef50_W1JLJ8 0.000247076569867 4.10305972424e-05 -0.000206045972625 +UniRef50_B2V4B1 Peptide deformylase 1.50756821902e-05 2.68779406796e-05 1.18022584894e-05 +UniRef50_A9GXK1 Peptidyl tRNA hydrolase 4.41622785726e-05 2.15409242388e-05 -2.26213543338e-05 +UniRef50_P0A4K2 Cystathionine beta lyase 7.72438350101e-05 0.00490272783015 0.00482548399514 +UniRef50_A6LWY3 Transcriptional antiterminator, BglG 0.000220351590581 0.000998516514623 0.000778164924042 +UniRef50_A5UN38 Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD 0.00210743012443 0.00103745359071 -0.00106997653372 +UniRef50_UPI0003A61C77 hypothetical protein 4.04609101818e-05 0.000161322566286 0.000120861656104 +UniRef50_Q72L31 Uroporphyrinogen decarboxylase 1.58948273712e-05 2.51241192528e-05 9.2292918816e-06 +UniRef50_E6NII4 Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase 9.87321679628e-05 0.00301672439636 0.0029179922284 +UniRef50_A5IPW8 Uracil xanthine permease 0.0144146479779 0.00319911161925 -0.0112155363587 +UniRef50_UPI0003B7912D D ribose transporter ATP binding protein 4.23903796195e-06 6.0308726196e-06 1.79183465765e-06 +UniRef50_Q5HRP0 Dihydropteroate synthase 0.0286146329528 0.00601408980101 -0.0226005431518 +UniRef50_R9ZGA8 AraC family transcriptional regulator 0.000382300568732 0.000598390490412 0.00021608992168 +UniRef50_C5DAG0 Extracellular solute binding protein family 1 2.2219893676e-05 0.000797002201073 0.000774782307397 +UniRef50_K9NKD1 NAD dependent epimerase dehydratase 0.00459788822913 0.00359675538793 -0.0010011328412 +UniRef50_I1ZK66 Oligoendopeptidase F 0.000153928255183 0.00507883314062 0.00492490488544 +UniRef50_F4EDJ1 Phosphatidate cytidylyltransferase 0.00643715005119 0.00576353629175 -0.00067361375944 +UniRef50_R6UCD8 Aminotransferase class I and II 0.00674578927021 0.00367682280454 -0.00306896646567 +UniRef50_W8EXQ8 2.83637118726e-06 4.1713364533e-06 1.33496526604e-06 +UniRef50_UPI0001584DF8 conserved hypothetical protein 2.59693270029e-06 1.1985325149e-05 9.38839244871e-06 +UniRef50_R7PWY7 0.00396490603807 0.000661420965292 -0.00330348507278 +UniRef50_P19317 Probable nitrate reductase molybdenum cofactor assembly chaperone NarW 0.00444603370354 0.000303407573826 -0.00414262612971 +UniRef50_Q18JB5 Formate tetrahydrofolate ligase 0.0331755428504 0.0230001547629 -0.0101753880875 +UniRef50_Q7VL09 8 amino 7 oxononanoate synthase 0.000258702422127 0.0146959408894 0.0144372384673 +UniRef50_E2XWM2 Amidotransferase 0.000949809775798 0.000390286394531 -0.000559523381267 +UniRef50_B7RLJ4 0.00114523459095 0.000109458496327 -0.00103577609462 +UniRef50_R4R6C5 HlyD family secretion protein domain protein 0.000463043204404 0.000588437754967 0.000125394550563 +UniRef50_Q9XAQ9 NADH quinone oxidoreductase subunit F 0.000129720271086 0.00613986998772 0.00601014971663 +UniRef50_T5JDW5 8.47623822773e-06 0.000268710233989 0.000260233995761 +UniRef50_Q6LTY5 Na translocating NADH quinone reductase subunit E 0.000117706487853 0.00010927429796 -8.432189893e-06 +UniRef50_Q2NEW4 Alanine tRNA ligase 0.00330038608059 0.00200041518123 -0.00129997089936 +UniRef50_Q5HNU8 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.0106082168038 0.00338301680929 -0.00722519999451 +UniRef50_Q6GGZ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.0105951139712 3.94944358452e-05 -0.0105556195354 +UniRef50_C7NZH8 Chorismate synthase 4.20192635179e-06 1.94741746707e-05 1.52722483189e-05 +UniRef50_A5UP06 0.00223265652286 0.000953286768366 -0.00127936975449 +UniRef50_UPI000361F275 hypothetical protein 3.36439162762e-06 6.18237852361e-06 2.81798689599e-06 +UniRef50_A6LQ11 Erythronolide synthase., Aspartate racemase 0.000438115619619 0.0011981649277 0.000760049308081 +UniRef50_A0A023X8X0 0.000181149506258 0.000195319865074 1.4170358816e-05 +UniRef50_Q6A7E9 ATP dependent Clp protease proteolytic subunit 2 0.000208555794952 0.0102651487825 0.0100565929875 +UniRef50_A1R5F0 Ribosomal RNA small subunit methyltransferase H 6.80470288626e-06 0.00359082503308 0.00358402033019 +UniRef50_A5UP09 0.00195575710316 0.000835757948297 -0.00111999915486 +UniRef50_X2H8Z5 0.000185042151398 0.0040240633382 0.0038390211868 +UniRef50_V7FG71 5.00727469764e-05 0.000270369689397 0.000220296942421 +UniRef50_UPI00032911E8 PREDICTED 1.96502606983e-06 2.92197862106e-05 2.72547601408e-05 +UniRef50_R7B346 0.0045825992868 0.000926976715102 -0.0036556225717 +UniRef50_K0TNG1 7.23799936697e-06 5.26275926482e-05 4.53895932812e-05 +UniRef50_UPI0003604578 hypothetical protein 9.7420849302e-06 8.23942497118e-06 -1.50265995902e-06 +UniRef50_UPI0003A753CE hypothetical protein 0.000341496392274 9.87091553117e-05 -0.000242787236962 +UniRef50_UPI00037FE958 hypothetical protein 4.8793045217e-06 2.04239654656e-05 1.55446609439e-05 +UniRef50_B7UR12 Purine nucleoside phosphorylase DeoD type 0.00439971004135 0.00241404502703 -0.00198566501432 +UniRef50_C7ZTK0 0.0109440861639 0.00403931476013 -0.00690477140377 +UniRef50_UPI0004704B3B ABC transporter permease 2.40406699e-05 4.70773513151e-05 2.30366814151e-05 +UniRef50_B9KCQ6 Polyphosphate kinase 6.0591651505e-05 0.00240530526739 0.00234471361588 +UniRef50_C5X9K2 9.90454725722e-05 0.000953050437718 0.000854004965146 +UniRef50_G7M2R9 ABC type transporter, periplasmic subunit family 3 0.000279619251005 0.000739837358076 0.000460218107071 +UniRef50_I0E8W5 8.53397111153e-05 0.00219286963168 0.00210752992056 +UniRef50_UPI000470B5F1 hypothetical protein, partial 0.000165226214149 0.000180399754985 1.5173540836e-05 +UniRef50_Q41805 Extensin like protein 3.466733666e-06 1.8099495206e-06 -1.6567841454e-06 +UniRef50_Q5X5I2 Ribonuclease H 4.95919986044e-05 2.73818670852e-05 -2.22101315192e-05 +UniRef50_G8VGX4 0.000412722542063 0.00686393774067 0.00645121519861 +UniRef50_A3PR71 Transcriptional regulator, GntR family 0.00476397688187 0.000670022927747 -0.00409395395412 +UniRef50_A1W649 Membrane lipoprotein lipid attachment site 0.000125389147293 9.51908017289e-06 -0.00011587006712 +UniRef50_U3B280 1.05079898647e-05 7.10833080719e-05 6.05753182072e-05 +UniRef50_A6M1W5 Periplasmic binding protein LacI transcriptional regulator 0.000475383202959 0.0015816981088 0.00110631490584 +UniRef50_C4RK38 Polyketide synthase 0.000133860279732 0.000226353014903 9.2492735171e-05 +UniRef50_A7HH59 Ribosomal RNA small subunit methyltransferase H 6.13104205493e-06 0.00017040101598 0.000164269973925 +UniRef50_UPI00038ED75B PREDICTED 9.8600309257e-06 1.10516635721e-05 1.1916326464e-06 +UniRef50_UPI00037D470D hypothetical protein 0.000169069567209 7.80030842106e-06 -0.000161269258788 +UniRef50_A9GG06 3.64478080255e-06 0.000228597461204 0.000224952680401 +UniRef50_Q03283 Urease subunit beta 2.19499168179e-05 0.00353325343717 0.00351130352035 +UniRef50_R7H8U8 Nitroreductase 0.000555126454193 0.000341406595601 -0.000213719858592 +UniRef50_P75858 0.00467126415092 0.000856589379178 -0.00381467477174 +UniRef50_Q0ST10 Transcriptional regulator, Crp Fnr family 0.00306264660003 0.00103939205231 -0.00202325454772 +UniRef50_G8VPJ1 NAD specific glutamate dehydrogenase 9.62826894095e-06 0.00316864463512 0.00315901636618 +UniRef50_F0P4A3 Acetyltransferase, GNAT family 0.0229276700966 0.00649948025381 -0.0164281898428 +UniRef50_UPI000365B96C cytochrome C oxidase subunit I, partial 3.76491108749e-05 5.55042274723e-05 1.78551165974e-05 +UniRef50_Q5HW32 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.000191711901895 0.00422387100072 0.00403215909882 +UniRef50_Q129M4 Ribosomal RNA large subunit methyltransferase E 4.52416574076e-05 4.01809671834e-05 -5.0606902242e-06 +UniRef50_Q9SFH9 Delta aminolevulinic acid dehydratase 1, chloroplastic 1.27871054051e-05 2.35862525078e-05 1.07991471027e-05 +UniRef50_UPI00036BED26 hypothetical protein 5.66051980098e-06 1.52793417572e-05 9.61882195622e-06 +UniRef50_E8SNN7 Ribosomal protein 8.46591860258e-06 0.000221052354027 0.000212586435424 +UniRef50_UPI000379BCC8 hypothetical protein 8.4442287031e-06 2.78851101755e-05 1.94408814724e-05 +UniRef50_Q92947 Glutaryl CoA dehydrogenase, mitochondrial 2.53509656796e-05 0.000240517076478 0.000215166110798 +UniRef50_Q5HS21 Lipase, putative 0.0124046045783 0.00518442855378 -0.00722017602452 +UniRef50_I2HEM4 3.6544216505e-05 0.000644327253476 0.000607783036971 +UniRef50_A0RIM4 L cystine uptake protein TcyP 0.00851916075504 0.0102571248938 0.00173796413876 +UniRef50_UPI0003C1735E PREDICTED 8.21900938102e-07 1.33362698152e-06 5.11726043418e-07 +UniRef50_Q49ZB9 0.0233936410807 0.00597432165255 -0.0174193194281 +UniRef50_W1WJ70 4.95299346306e-05 3.63500087069e-05 -1.31799259237e-05 +UniRef50_C5N256 Bacteriocin, lactococcin 972 family 0.0109756638068 0.000608900423076 -0.0103667633837 +UniRef50_Q1R4E5 0.000865327217169 0.000294335586571 -0.000570991630598 +UniRef50_Q9X5W3 Cyclic pyranopterin monophosphate synthase 1.06380096741e-05 7.97185750055e-05 6.90805653314e-05 +UniRef50_UPI0003B792B2 FAD dependent oxidoreductase 1.42125134306e-05 1.69452598868e-05 2.7327464562e-06 +UniRef50_M9VD00 0.0006738233878 0.00566662922101 0.00499280583321 +UniRef50_A7IJF9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding 0.00202519472778 0.000487002524188 -0.00153819220359 +UniRef50_UPI000373BD8F hypothetical protein 0.000199730517482 4.13157993623e-05 -0.00015841471812 +UniRef50_Q2G607 Phosphate import ATP binding protein PstB 1.9246639282e-05 0.000193023861011 0.000173777221729 +UniRef50_G0A719 Type VI secretion protein, VC_A0114 family 3.57544057112e-06 6.3434105708e-06 2.76796999968e-06 +UniRef50_Q9I696 Component of chemotactic signal transduction system 0.000193068430848 0.000285978824189 9.2910393341e-05 +UniRef50_M1FEG3 Sporulation initiation inhibitor protein soj 0.000648522788994 2.30725731556e-05 -0.000625450215838 +UniRef50_C0ERG4 0.00027008406986 0.000316902353442 4.6818283582e-05 +UniRef50_UPI0003B646B9 hypothetical protein 3.66028307627e-06 4.50495268159e-06 8.4466960532e-07 +UniRef50_B9KQI0 Type III secretion system inner membrane R protein 0.0146759790381 0.00319868674853 -0.0114772922896 +UniRef50_P44614 Tryptophan specific transport protein 0.00485095542886 0.000963352338842 -0.00388760309002 +UniRef50_G2JMU8 0.000243016731023 0.0133790551135 0.0131360383825 +UniRef50_B1J5I1 6.89853022232e-06 1.18341773461e-05 4.93564712378e-06 +UniRef50_B4VCX3 3.8983717979e-05 5.41642554932e-06 -3.35672924297e-05 +UniRef50_UPI0003B55D0D CTP synthetase 3.30068040309e-06 1.95316094877e-05 1.62309290846e-05 +UniRef50_P56860 Phosphoadenosine phosphosulfate reductase 1.18425721906e-05 0.0139365158458 0.0139246732736 +UniRef50_Q03T56 Ribosomal RNA small subunit methyltransferase A 2.72266313712e-05 3.76328447706e-05 1.04062133994e-05 +UniRef50_W6KBC4 3.2801619204e-05 5.87263941285e-06 -2.69289797911e-05 +UniRef50_P42628 Inner membrane transport protein YhaO 0.002577755407 0.00441545478478 0.00183769937778 +UniRef50_R4KE37 0.00104523293712 0.000561183422741 -0.000484049514379 +UniRef50_A4WUY8 Substrate binding region of ABC type glycine betaine transport system 0.00920759330504 0.00069423888041 -0.00851335442463 +UniRef50_UPI00026C5B6F transcriptional regulator 6.84447946218e-05 0.000374176062183 0.000305731267561 +UniRef50_UPI00035D359F hypothetical protein, partial 3.56834704693e-06 2.51514632171e-06 -1.05320072522e-06 +UniRef50_UPI0004648BE1 chemotaxis protein CheW 2.82681472667e-05 4.79417105607e-05 1.9673563294e-05 +UniRef50_UPI0002B4606A PREDICTED 0.000117872905744 7.0167976165e-06 -0.000110856108127 +UniRef50_P30177 0.00536453528811 0.00128311148592 -0.00408142380219 +UniRef50_UPI0004723693 PTS system lactose specific transporter subunit IIA 5.06920177655e-05 4.63991260427e-05 -4.2928917228e-06 +UniRef50_Q04804 Sensor protein PfeS 0.000942034586082 0.00020632363615 -0.000735710949932 +UniRef50_O33566 ORF700 protein 0.00256060600159 5.80317228756e-05 -0.00250257427871 +UniRef50_UPI0004678A2B cystathionine beta lyase, partial 2.93689426824e-05 0.000101260101921 7.18911592386e-05 +UniRef50_UPI00037D0482 50S ribosomal protein L6 8.61366620339e-06 0.000269362574228 0.000260748908025 +UniRef50_F0VF06 1.06869509062e-06 1.68125183531e-06 6.1255674469e-07 +UniRef50_P37047 Carbohydrate diacid regulator 0.0026678854304 0.00055877126603 -0.00210911416437 +UniRef50_UPI000475D4DC hypothetical protein 3.67780271062e-06 4.85887077572e-06 1.1810680651e-06 +UniRef50_UPI0003124421 hypothetical protein 2.05663687536e-05 5.50077780602e-05 3.44414093066e-05 +UniRef50_P50735 Cryptic catabolic NAD specific glutamate dehydrogenase GudB 4.96965260715e-06 0.000377390158577 0.00037242050597 +UniRef50_A4XNZ9 Lysine exporter protein 0.000501087595826 0.00478388132025 0.00428279372442 +UniRef50_U4V580 UPF0301 protein HIMB11_01782 3.76897860925e-05 7.26699372455e-05 3.4980151153e-05 +UniRef50_UPI00036AF0AB hypothetical protein 1.51049159358e-05 5.07284145377e-05 3.56234986019e-05 +UniRef50_B8D1K3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.54160793162e-05 0.00346950774597 0.00345409166665 +UniRef50_A5UJ58 Adhesin like protein 0.00229880269678 0.000476317266442 -0.00182248543034 +UniRef50_UPI0003703272 hypothetical protein 1.61316082511e-06 8.23581394483e-06 6.62265311972e-06 +UniRef50_E2ZSG3 Glycolate oxidase, iron sulfur subunit 1.31330069224e-05 2.24412737548e-05 9.3082668324e-06 +UniRef50_L6WWY8 0.000302396989976 0.000137044480224 -0.000165352509752 +UniRef50_UPI000225FE4D coenzyme PQQ biosynthesis protein D 0.000106206693939 7.11232719528e-05 -3.50834219862e-05 +UniRef50_UPI0004700C7A hypothetical protein, partial 5.57525325827e-06 1.6687846053e-05 1.11125927947e-05 +UniRef50_K1ZX87 1.78410397243e-05 3.86097305425e-05 2.07686908182e-05 +UniRef50_D3QET9 0.0137331681876 0.00329273510606 -0.0104404330815 +UniRef50_M5X9E3 3.44256423507e-05 2.68035573355e-05 -7.6220850152e-06 +UniRef50_A0A024HK83 DNA polymerase III subunit epsilon 0.000220752040266 0.00072121761978 0.000500465579514 +UniRef50_Q0FDU0 2.19411619326e-05 2.26554242169e-05 7.142622843e-07 +UniRef50_O34591 Acetoin 0.0116559460306 0.0115344620238 -0.0001214840068 +UniRef50_UPI00034B0D3D hypothetical protein 1.99674784254e-05 6.36726592939e-06 -1.3600212496e-05 +UniRef50_A7ZKH0 Multidrug resistance protein MdtH 0.00279545926657 0.00149043239446 -0.00130502687211 +UniRef50_A6M3F8 Metal dependent phosphohydrolase 0.000262143047812 0.00207258329605 0.00181044024824 +UniRef50_A7ZMQ9 UPF0756 membrane protein YeaL 0.00514753621162 0.000407333386473 -0.00474020282515 +UniRef50_A4WXX3 Transcriptional regulator, DeoR family 0.00138947465983 0.000233144767263 -0.00115632989257 +UniRef50_F6AYF6 TonB dependent siderophore receptor 0.000213304303761 0.0096243078876 0.00941100358384 +UniRef50_UPI00037C438D hypothetical protein 1.24226973165e-06 2.03582519587e-06 7.9355546422e-07 +UniRef50_UPI00047806EC hypothetical protein 3.68664442149e-06 2.51068396993e-05 2.14201952778e-05 +UniRef50_D6B3T3 Polyketide synthase 0.000380166456054 6.73002942567e-05 -0.000312866161797 +UniRef50_L8UIS8 8.76434499951e-05 4.95871227016e-05 -3.80563272935e-05 +UniRef50_Q9RXC5 0.000209496058222 0.0390166753048 0.0388071792466 +UniRef50_C1D4B9 Recombination associated protein RdgC 0.000851879013176 0.00344743405807 0.00259555504489 +UniRef50_Q71YN8 Peptidase T 0.0323403818888 0.0188104559663 -0.0135299259225 +UniRef50_Q2RMC1 Peptidyl tRNA hydrolase 4.53925548609e-05 1.30148930409e-05 -3.237766182e-05 +UniRef50_A0A009R5V4 TetR family transcriptional regulator domain protein 0.000216014603453 8.7780808855e-05 -0.000128233794598 +UniRef50_UPI000466D206 50S ribosomal protein L17 7.04515482458e-05 9.68359430347e-05 2.63843947889e-05 +UniRef50_R7PX92 Chlamydial polymorphic outer membrane protein repeat containing domain protein 7.13851464801e-05 4.91934179698e-06 -6.64658046831e-05 +UniRef50_Q5H1S4 Acyl CoA dehydrogenase 0.00518503437907 0.00270163367077 -0.0024834007083 +UniRef50_Q2NGB7 Transporter 0.00443202770759 0.00101835446879 -0.0034136732388 +UniRef50_A5UNH0 0.0022498671239 0.000896201212874 -0.00135366591103 +UniRef50_A5UNH3 0.0019004762106 0.0021572463838 0.0002567701732 +UniRef50_E6UB19 Arginine biosynthesis bifunctional protein ArgJ 0.000434972063444 0.00113807229048 0.000703100227036 +UniRef50_UPI00036661AC hypothetical protein 3.44615632153e-05 4.88145171633e-05 1.4352953948e-05 +UniRef50_K2EUH3 5.69023122866e-05 1.85209847686e-05 -3.8381327518e-05 +UniRef50_P06971 Ferrichrome iron receptor 0.00295515708199 0.000350439699142 -0.00260471738285 +UniRef50_Q04CP4 Fhu operon transcription regulator 0.00497367021258 0.00112074036404 -0.00385292984854 +UniRef50_O19889 Uroporphyrinogen III C methyltransferase 2.11040011233e-05 3.01510580434e-05 9.0470569201e-06 +UniRef50_Q47427 Tail fiber assembly protein homolog 0.00205524027409 2.27201665278e-05 -0.00203252010756 +UniRef50_Q04G79 30S ribosomal protein S3 0.00481408644045 0.00521175482733 0.00039766838688 +UniRef50_A4WDR5 Anaerobic nitric oxide reductase transcription regulator NorR 0.00330482542509 0.000200291431097 -0.00310453399399 +UniRef50_I2JKJ5 Bifunctional adenylate cyclase hybrid sensor diguanylate cyclase response regulator 1.96575340115e-05 9.81945340175e-05 7.8537000006e-05 +UniRef50_K7Y9Y7 Outer membrane protein 0.000154707372483 0.00417709019422 0.00402238282174 +UniRef50_Q4L6H4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0198217411377 0.0228644933931 0.0030427522554 +UniRef50_UPI0003B53166 hypothetical protein 0.00025846962913 0.000339476459576 8.1006830446e-05 +UniRef50_UPI00046E53C7 hypothetical protein 1.36957664735e-06 2.28230021775e-05 2.14534255301e-05 +UniRef50_U3SZE2 0.000295172210686 0.00449701408499 0.0042018418743 +UniRef50_A6LP67 Aminomethyltransferase 3.7794114564e-05 1.43697569023e-05 -2.34243576617e-05 +UniRef50_C3K475 Acetylglutamate kinase 0.000879493298011 0.00833109184008 0.00745159854207 +UniRef50_UPI0003677E0E hypothetical protein 1.00606321404e-05 0.000156532233852 0.000146471601712 +UniRef50_UPI0002BC90CC PREDICTED 3.58747273317e-06 1.37844349105e-05 1.01969621773e-05 +UniRef50_Q1M667 Blue light activated histidine kinase 3.50797147394e-05 3.28226154736e-05 -2.2570992658e-06 +UniRef50_E3A0D4 0.000926455114066 0.000304974222238 -0.000621480891828 +UniRef50_Q3J430 ATP synthase epsilon chain 1 0.00648982891585 0.000760472202226 -0.00572935671362 +UniRef50_R0TGF0 0.000228140541416 0.000632821511128 0.000404680969712 +UniRef50_E3HHW2 Pirin C terminal cupin domain protein 2 1.9741991764e-05 4.82260231688e-06 -1.49193894471e-05 +UniRef50_UPI0003B4B661 hypothetical protein, partial 0.0001321497423 4.16887110219e-05 -9.04610312781e-05 +UniRef50_C6BYG5 UDP N acetylmuramate L alanine ligase 3.94110094315e-06 7.09810001829e-06 3.15699907514e-06 +UniRef50_Q2J728 Translation initiation factor IF 2 0.0003308209786 0.0105939275634 0.0102631065848 +UniRef50_W8SB38 Pe pgrs family protein 7.43773360583e-06 6.66474944059e-05 5.92097608001e-05 +UniRef50_A0A009HBV1 Ferrous iron transport protein B 0.000153768728707 0.0110218444381 0.0108680757094 +UniRef50_UPI000382BA5B DNA glycosylase 6.91541118095e-05 4.88608850105e-05 -2.0293226799e-05 +UniRef50_E2PFC0 4.14773871599e-05 0.000219345176899 0.000177867789739 +UniRef50_D6SIZ2 Luciferase family oxidoreductase, FMN dependent, PP_0088 family 0.0264795109874 0.00766559231302 -0.0188139186744 +UniRef50_E8SJV4 Secretory antigen SsaA 0.0105223202959 0.000222880532219 -0.0102994397637 +UniRef50_Q8FJN9 Cardiolipin synthase B 0.00269441546301 0.000796215476306 -0.0018981999867 +UniRef50_A8TW43 Beta lactamase like protein 4.44002558944e-05 9.32076139124e-06 -3.50794945032e-05 +UniRef50_UPI0004652B1C hypothetical protein 1.12853808788e-05 7.37062759403e-06 -3.91475328477e-06 +UniRef50_UPI00031CBF3C hypothetical protein 2.7158762497e-05 3.12182724186e-06 -2.40369352551e-05 +UniRef50_UPI000310C5E8 hypothetical protein 7.92521408376e-05 0.000109597617659 3.03454768214e-05 +UniRef50_F5M2T1 Diguanylate cyclase 0.0091085131109 0.000725118959036 -0.00838339415186 +UniRef50_UPI0003769589 hypothetical protein 8.12213480441e-06 5.6289108381e-05 4.81669735766e-05 +UniRef50_P26276 Phosphomannomutase phosphoglucomutase 0.000394684521467 0.000364709898942 -2.9974622525e-05 +UniRef50_C8RWL5 0.000203803755852 0.000103253912421 -0.000100549843431 +UniRef50_Q3Z396 Deferrochelatase peroxidase EfeB 0.00426707625365 0.000313407946967 -0.00395366830668 +UniRef50_A9UTR3 Predicted protein 8.24993790657e-06 1.29082644261e-05 4.65832651953e-06 +UniRef50_T0I6W5 2.58476803046e-05 2.00381440775e-05 -5.8095362271e-06 +UniRef50_P0AC04 Outer membrane protein assembly factor BamD 0.00367800029486 0.00119036375135 -0.00248763654351 +UniRef50_A0A022S625 UvrD REP helicase N terminal domain protein 6.73652114688e-05 0.00815320498135 0.00808583976988 +UniRef50_A1B5D2 0.00153811082933 0.000710995997344 -0.000827114831986 +UniRef50_A1B5D1 6.37106323794e-05 2.6083315932e-05 -3.76273164474e-05 +UniRef50_C1A399 Arginine deiminase 6.52745271495e-06 1.17929395753e-05 5.26548686035e-06 +UniRef50_W5XHV0 Glycosyltransferase 36 0.000147953364439 0.000291414085125 0.000143460720686 +UniRef50_C4Z0Q8 Galactose 6 phosphate isomerase 0.000537362878444 0.00427524006556 0.00373787718712 +UniRef50_Q3IX62 0.00138206341026 0.000101729979102 -0.00128033343116 +UniRef50_Q3IX61 0.00759564519592 0.00224270375944 -0.00535294143648 +UniRef50_A3YTK8 MazG 1.46690931906e-05 9.38683732276e-06 -5.28225586784e-06 +UniRef50_W5X9I3 UDP glucose pyrophosphorylase 4.93940207852e-05 1.41117955691e-05 -3.52822252161e-05 +UniRef50_A3CQV0 33 kDa chaperonin 0.00347770362184 0.00409774080656 0.00062003718472 +UniRef50_UPI0003666D5F hypothetical protein 5.19693405252e-05 4.26306526711e-05 -9.3386878541e-06 +UniRef50_L0DXM3 ADP heptose lipooligosaccharide heptosyltransferase II 0.000161548925324 0.00399347606755 0.00383192714223 +UniRef50_UPI000370C5F4 MULTISPECIES 6.85062166732e-06 0.000197348534025 0.000190497912358 +UniRef50_Q8DV84 0.00565142415826 0.00216863125405 -0.00348279290421 +UniRef50_G0EVT1 D lactate dehydrogenase 0.00124223561794 0.000190118050557 -0.00105211756738 +UniRef50_F4BQ82 NADH peroxidase 0.00867277368233 0.00169250067474 -0.00698027300759 +UniRef50_A4WXA2 Sulfotransferase 0.000925636674667 8.38967912513e-05 -0.000841739883416 +UniRef50_W0Z1I7 0.000329279650037 0.000195263113306 -0.000134016536731 +UniRef50_W7JJV3 0.000248346045292 8.0920393093e-05 -0.000167425652199 +UniRef50_Q5XAQ1 Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase 0.00463445492129 0.00441034321433 -0.00022411170696 +UniRef50_Q9MA93 Glucose and ribitol dehydrogenase homolog 2 2.59182594791e-05 6.19301784008e-05 3.60119189217e-05 +UniRef50_UPI000255EED3 acetolactate synthase 3 regulatory subunit 1.25558028247e-05 0.000225534882495 0.00021297907967 +UniRef50_UPI0003B75ED8 3 hydroxyacyl CoA dehydrogenase 2.37520368161e-06 4.9808186197e-06 2.60561493809e-06 +UniRef50_I6TX78 Competence protein transcription factor 0.00562646504624 0.00262115587353 -0.00300530917271 +UniRef50_A9FDL0 tRNA N6 adenosine threonylcarbamoyltransferase 5.88576930307e-06 1.28147942615e-05 6.92902495843e-06 +UniRef50_D3DZK4 Sortase family protein 0.00546430550572 0.00105267516554 -0.00441163034018 +UniRef50_Q9RWY1 Serine threonine protein kinase related protein 0.000239043627327 0.0579704021936 0.0577313585663 +UniRef50_Q47153 Putative protein FhiA 0.00547909844496 0.000411373672018 -0.00506772477294 +UniRef50_U6GAH2 6.61143300058e-06 3.22046580918e-06 -3.3909671914e-06 +UniRef50_I4YVM4 3.00215148816e-05 1.8691572408e-05 -1.13299424736e-05 +UniRef50_V9XXU2 0.000417092972124 0.00053921152176 0.000122118549636 +UniRef50_P77766 Protein TrpH 0.00240220542502 0.00129411112873 -0.00110809429629 +UniRef50_P69827 PTS system mannitol specific cryptic EIICB component 0.00168743322254 0.00127301288228 -0.00041442034026 +UniRef50_T2EKM2 Fic DOC family protein 0.000345092107772 0.000357341313693 1.2249205921e-05 +UniRef50_UPI000309099A hypothetical protein 8.04936175202e-05 0.000201972825941 0.000121479208421 +UniRef50_S5Y902 2.73905820559e-05 2.67366148739e-05 -6.53967182e-07 +UniRef50_UPI0003B7338D proline iminopeptidase 8.27447744401e-06 1.2374039873e-05 4.09956242899e-06 +UniRef50_Q3IWE2 Integrase family protein 0.012260760857 0.00277028221382 -0.00949047864318 +UniRef50_P0DH75 Orotate phosphoribosyltransferase 0.0214324677234 0.00643371012611 -0.0149987575973 +UniRef50_A0A037X3F6 Sodium 0.000638143883878 0.000128959259902 -0.000509184623976 +UniRef50_X1CKD2 Marine sediment metagenome DNA, contig 2.43074058672e-05 1.04917836046e-05 -1.38156222626e-05 +UniRef50_UPI000382C157 MULTISPECIES 1.16472740954e-05 6.30917958462e-06 -5.33809451078e-06 +UniRef50_Q8PY83 CoB CoM heterodisulfide reductase 1 subunit B 0.00316998445477 0.000360875810829 -0.00280910864394 +UniRef50_P58253 Stage 0 sporulation protein A homolog 0.00013827325599 0.00116843210215 0.00103015884616 +UniRef50_Q06400 UPF0394 inner membrane protein YedE 0.00239822768777 0.000350907583857 -0.00204732010391 +UniRef50_A6L2R5 L arabinose isomerase 1.56083842572e-05 0.00583986046704 0.00582425208278 +UniRef50_UPI000382BAEE hypothetical protein, partial 7.69763534325e-05 2.22378650835e-05 -5.4738488349e-05 +UniRef50_Q12SM7 Argininosuccinate synthase 4.28170401796e-06 6.36284076096e-05 5.93467035916e-05 +UniRef50_UPI0003760F37 hypothetical protein 7.75438859203e-06 1.31032623301e-05 5.34887373807e-06 +UniRef50_G7U6J5 Transporter, major facilitator family protein 0.000189834543044 0.00796609843678 0.00777626389374 +UniRef50_UPI00040DB596 hypothetical protein 8.94430757772e-06 5.13048862245e-06 -3.81381895527e-06 +UniRef50_P31446 Inner membrane protein YidI 0.0021773525917 0.00212403689804 -5.331569366e-05 +UniRef50_G2QV25 0.000149994432661 0.000226875829852 7.6881397191e-05 +UniRef50_UPI0003B518FF glycerophosphoryl diester phosphodiesterase 6.36631692428e-06 1.32402635297e-05 6.87394660542e-06 +UniRef50_D5ATD5 Flagellar protein, putative 0.000149956634045 5.75843959422e-05 -9.23722381028e-05 +UniRef50_UPI00046CA2CA hypothetical protein 1.8191231751e-06 0.000297830893155 0.00029601176998 +UniRef50_UPI0003C18CFE PREDICTED 6.73724572859e-06 2.29166212526e-05 1.6179375524e-05 +UniRef50_P57487 Endonuclease 1 0.00237116977459 0.00195932616735 -0.00041184360724 +UniRef50_P0C0R4 Lipase 0.0228640233925 0.00621830992186 -0.0166457134706 +UniRef50_Q5QKR8 UDP N acetylglucosamine 4,6 dehydratase 0.00529579086442 0.00437979518392 -0.0009159956805 +UniRef50_L7LQU6 Putative monotil peptide 0.0001081934572 0.000111490969176 3.297511976e-06 +UniRef50_U6MR10 2.09210782683e-05 7.51430106113e-06 -1.34067772072e-05 +UniRef50_W4TVZ8 Heme ABC transporter 0.000147698784763 0.00063988827649 0.000492189491727 +UniRef50_E1PY25 0.000115793248112 0.0030632883327 0.00294749508459 +UniRef50_W6R6D1 3.66191644304e-06 5.24363577465e-06 1.58171933161e-06 +UniRef50_M0DCT7 ABC transporter 0.000170001773494 0.000220143564313 5.0141790819e-05 +UniRef50_A1TM37 Adenylosuccinate synthetase 8.4201052194e-06 1.48190700826e-05 6.3989648632e-06 +UniRef50_C7ND01 Diphosphomevalonate decarboxylase 0.000465935712518 0.000188099812232 -0.000277835900286 +UniRef50_A6LU62 0.00025679318969 0.000417900997911 0.000161107808221 +UniRef50_A3PMY6 ABC transporter related 0.00227250364417 0.000837480395854 -0.00143502324832 +UniRef50_R6SI27 MATE family multi antimicrobial extrusion protein 0.000323989112238 0.00126778811233 0.000943799000092 +UniRef50_K9GVE2 Flp pilus assembly protein TadB 0.000104393563199 2.08546251968e-05 -8.35389380022e-05 +UniRef50_UPI000464BD2D hypothetical protein 9.46996333261e-06 5.1657024994e-06 -4.30426083321e-06 +UniRef50_UPI0004702CEA UDP diphosphatase 3.5680475922e-05 2.49229883237e-05 -1.07574875983e-05 +UniRef50_K6DGD7 0.000144486421937 4.85375355443e-05 -9.59488863927e-05 +UniRef50_Q6GIU7 Quinolone resistance protein NorA 0.0179421536492 0.00516981772652 -0.0127723359227 +UniRef50_D9SRN1 Cation diffusion facilitator family transporter 0.000294339764276 0.00128103038671 0.000986690622434 +UniRef50_B0BXC2 Holliday junction ATP dependent DNA helicase RuvA 1.39302050565e-05 1.10428037697e-05 -2.8874012868e-06 +UniRef50_UPI0003592A52 PREDICTED 3.64537532825e-05 5.72209603517e-05 2.07672070692e-05 +UniRef50_F8LQS7 0.00369522145188 0.00256434807235 -0.00113087337953 +UniRef50_UPI00047D9DA7 membrane protein 2.80203427805e-05 1.99766895275e-05 -8.043653253e-06 +UniRef50_G7M6Q3 Lysophospholipase 0.000115556935367 0.00086050984064 0.000744952905273 +UniRef50_UPI00034C319E hypothetical protein 0.00150171477598 0.000548501996132 -0.000953212779848 +UniRef50_B0KR46 N succinylarginine dihydrolase 0.00548156161458 0.0100844671499 0.00460290553532 +UniRef50_UPI000360EE81 hypothetical protein, partial 0.00476070088473 0.000993782766318 -0.00376691811841 +UniRef50_UPI000373527A hypothetical protein, partial 6.57580309844e-06 0.000180891701378 0.00017431589828 +UniRef50_UPI000273E344 1.75723901069e-05 0.000206515178457 0.00018894278835 +UniRef50_UPI0003B4641B tRNA delta isopentenylpyrophosphate transferase 5.85922950512e-06 6.47617179033e-06 6.1694228521e-07 +UniRef50_P65858 tRNA pseudouridine synthase B 0.00472598894426 0.00228511505579 -0.00244087388847 +UniRef50_A6LF29 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.12815880732e-05 4.85591010407e-05 3.72775129675e-05 +UniRef50_W0Z6N6 Rhs element Vgr protein 1.3950637452e-05 2.8895959412e-05 1.494532196e-05 +UniRef50_Q49UP7 0.000986091429104 0.000107946332005 -0.000878145097099 +UniRef50_E4A2Y9 0.000120843330125 0.000333756487901 0.000212913157776 +UniRef50_Q3JRD1 4.77007516841e-06 1.3897682051e-06 -3.38030696331e-06 +UniRef50_Q65UG3 Zinc import ATP binding protein ZnuC 1.83482592107e-05 6.27546989148e-06 -1.20727893192e-05 +UniRef50_C6SJL2 Glutaminyl tRNA synthetase 0.000101839745189 0.000938655064242 0.000836815319053 +UniRef50_Q6FFB2 Argininosuccinate lyase 0.000276989087549 0.0091263797547 0.00884939066715 +UniRef50_O67691 Phosphoribosylformylglycinamidine synthase 2 1.32131126277e-05 2.42464281413e-06 -1.07884698136e-05 +UniRef50_Q1I3E4 4.01668764398e-05 9.58809611391e-05 5.57140846993e-05 +UniRef50_I3DVS9 Ribosylpyrimidine nucleosidase 8.61534528749e-06 4.07296790408e-05 3.21143337533e-05 +UniRef50_A5UKN8 Formate dehydrogenase, iron sulfur subunit 0.00278333064957 0.000353672700827 -0.00242965794874 +UniRef50_A0A029LKQ2 Transposase IS66 family protein 1.65370147268e-05 3.4898894268e-05 1.83618795412e-05 +UniRef50_I0BK74 Transcriptional regulator 0.000147647714023 0.000767527508587 0.000619879794564 +UniRef50_UPI0004281C6D hypothetical protein 8.78828452901e-06 2.66158836521e-06 -6.1266961638e-06 +UniRef50_UPI0004776DB1 hypothetical protein, partial 2.51637073451e-05 0.000101320463775 7.61567564299e-05 +UniRef50_Q3JKK7 9.83702684725e-05 0.000351928292478 0.000253558024005 +UniRef50_Q5F973 Phosphoribosylformylglycinamidine cyclo ligase 0.0258141219175 0.0179972795609 -0.0078168423566 +UniRef50_M9S656 Short chain dehydrogenase 0.000189691451679 0.00145539612703 0.00126570467535 +UniRef50_Q48P72 Acyl CoA dehydrogenase family protein 0.000327102125375 0.000523577800771 0.000196475675396 +UniRef50_J1KAC8 0.00773985994521 0.00272877465217 -0.00501108529304 +UniRef50_D3E112 Polysaccharide biosynthesis protein 0.00135832960428 0.00166877178344 0.00031044217916 +UniRef50_UPI000443C5AC PREDICTED 5.08267091565e-06 5.92579757507e-05 5.4175304835e-05 +UniRef50_P64634 Putative DNA utilization protein HofN 0.000212070780251 0.00292405338383 0.00271198260358 +UniRef50_UPI0003B6BEF2 3 dehydroquinate dehydratase 7.33240170063e-05 6.43211608159e-05 -9.0028561904e-06 +UniRef50_X6KT46 7.1725400588e-05 8.1206852571e-05 9.481451983e-06 +UniRef50_A7FFL7 Protein NrdI 2.00179836386e-05 6.50117522155e-05 4.49937685769e-05 +UniRef50_UPI000381D661 hypothetical protein 5.20169759313e-06 3.01022016333e-05 2.49005040402e-05 +UniRef50_UPI00031610FF hypothetical protein 6.30823079966e-06 3.16510609459e-05 2.53428301462e-05 +UniRef50_W8AT56 Putative transposase, IS630 family 3.33182604122e-05 0.000464386041358 0.000431067780946 +UniRef50_UPI0003B5E3DD GTPase Era 6.86347782843e-06 8.35234719837e-05 7.66599941553e-05 +UniRef50_A3VZS1 1.84528921436e-05 6.18775269702e-06 -1.22651394466e-05 +UniRef50_P21893 Single stranded DNA specific exonuclease RecJ 0.00341374718866 0.000626122744708 -0.00278762444395 +UniRef50_W6RJG6 8.70158500796e-06 1.69582412709e-05 8.25665626294e-06 +UniRef50_Q5HDD6 Gamma hemolysin component A 0.0287295199174 0.00455629671131 -0.0241732232061 +UniRef50_UPI0002F9333F hypothetical protein 4.14411895905e-06 1.20072126175e-05 7.86309365845e-06 +UniRef50_Q3IV09 O acetylhomoserine sulfhydrylase 0.022417953824 0.00400494112946 -0.0184130126945 +UniRef50_A4VNQ6 Long chain fatty acid CoA ligase 0.000844313373164 0.000728833268361 -0.000115480104803 +UniRef50_UPI00046FBE0E purine nucleoside phosphorylase 2.07941840203e-05 9.29909893461e-05 7.21968053258e-05 +UniRef50_UPI00016C0F2D oligopeptide transport system permease protein 4.9244683723e-06 4.50967561077e-06 -4.1479276153e-07 +UniRef50_V4RCH7 2.08972145252e-05 2.84080852529e-05 7.5108707277e-06 +UniRef50_W8RY81 ATP phosphoribosyltransferase regulatory subunit 0.000376530714836 0.000259429023591 -0.000117101691245 +UniRef50_F9JWB9 Tandem lipoprotein 4.10940930017e-05 5.05991465309e-05 9.5050535292e-06 +UniRef50_W7Q3C9 2.5314171067e-05 9.84306664612e-05 7.31164953942e-05 +UniRef50_Q9RSL6 Molybdate metabolism regulator related protein 0.000118581986021 0.0339540040705 0.0338354220845 +UniRef50_Q89DJ1 Ribose phosphate pyrophosphokinase 0.00783753989287 0.00262088552144 -0.00521665437143 +UniRef50_V5SZD4 Chemotaxis protein 0.000713818312355 0.000667165698207 -4.6652614148e-05 +UniRef50_P31069 Voltage gated potassium channel Kch 0.00270026405514 0.00176148646986 -0.00093877758528 +UniRef50_UPI00037DB293 glutaredoxin, partial 0.000154490156105 0.000129934472292 -2.4555683813e-05 +UniRef50_X3EPV1 1.74051061113e-05 2.42703907175e-05 6.8652846062e-06 +UniRef50_N6UFE0 4.08838834928e-05 0.000347020118898 0.000306136235405 +UniRef50_A5ULK1 Adenine deaminase 0.00301534187372 0.000549811784091 -0.00246553008963 +UniRef50_K8EIP5 Radical SAM superfamily protein 0.00506574266553 0.00122666056066 -0.00383908210487 +UniRef50_UPI0001CE17CF PREDICTED 4.57914633382e-06 3.7486955631e-06 -8.3045077072e-07 +UniRef50_A8LML0 Major facilitator superfamiy transporter 0.00804211490641 0.00248969110144 -0.00555242380497 +UniRef50_D8UEV7 3.77171590964e-06 4.8541817855e-05 4.47701019454e-05 +UniRef50_Q49ZY7 0.00228693613597 0.00419304919855 0.00190611306258 +UniRef50_Q8FP91 Probable malate 3.07473975058e-06 1.03634110099e-05 7.28867125932e-06 +UniRef50_D3E2A1 Adhesin like protein 9.04497122279e-08 2.28645810921e-07 1.38196098693e-07 +UniRef50_C6M427 0.0001771428932 0.00131784323675 0.00114070034355 +UniRef50_B0VBR0 1.22767796998e-05 0.0054060114159 0.0053937346362 +UniRef50_F2HSU2 0.000205600681968 0.000289162496845 8.3561814877e-05 +UniRef50_UPI00037460BA hypothetical protein 0.000344723354045 0.000311406016025 -3.331733802e-05 +UniRef50_UPI00046ED203 hypothetical protein 3.42862577594e-06 2.7790672943e-05 2.43620471671e-05 +UniRef50_Q5HHH0 Probable cysteine desulfurase 0.0135115519945 0.00325912101124 -0.0102524309833 +UniRef50_K0LZ01 Aminoacylase 0.0154030767049 0.00126939282875 -0.0141336838761 +UniRef50_O05158 PAGS 5 0.00542398282029 0.000453379909403 -0.00497060291089 +UniRef50_UPI00036B729E hypothetical protein 1.31138581793e-05 1.63627005533e-05 3.248842374e-06 +UniRef50_UPI0001CBAA68 PREDICTED 1.35280573419e-05 1.11812774006e-05 -2.3467799413e-06 +UniRef50_UPI000476A0F0 hypothetical protein 8.08136948849e-06 0.000126264849105 0.000118183479617 +UniRef50_UPI000225A96D DNA replication and repair protein 6.77785150383e-06 9.36341710742e-06 2.58556560359e-06 +UniRef50_I3TRT4 1.27970421916e-05 4.0302512434e-05 2.75054702424e-05 +UniRef50_A3PS72 0.0321057999872 0.0247517978237 -0.0073540021635 +UniRef50_D0D1V0 ISSpo9, transposase 0.000322852848804 5.27379461516e-06 -0.000317579054189 +UniRef50_E1RJD9 Radical SAM domain protein 0.00366313905256 0.0011019615324 -0.00256117752016 +UniRef50_P56480 ATP synthase subunit beta, mitochondrial 2.10459577151e-05 6.5573744164e-06 -1.44885832987e-05 +UniRef50_UPI0003663FE6 hypothetical protein 7.5032212379e-06 3.04894990675e-05 2.29862778296e-05 +UniRef50_Q1CT84 Outer membrane lipoprotein carrier protein 0.000205155428724 0.0014441743997 0.00123901897098 +UniRef50_UPI0003B62AA1 MULTISPECIES 6.75688760049e-06 5.76319452037e-05 5.08750576032e-05 +UniRef50_Q74I98 tRNA ) methyltransferase 0.0174224187073 0.00594022313677 -0.0114821955705 +UniRef50_UPI0002629E92 molybdenum cofactor biosynthesis protein 7.3835195362e-06 2.64159803486e-06 -4.74192150134e-06 +UniRef50_R4ZNC7 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 0.000477843286018 0.000144644916828 -0.00033319836919 +UniRef50_UPI00036F9B44 hypothetical protein, partial 6.15284834845e-06 1.22263262076e-05 6.07347785915e-06 +UniRef50_Q0BGD7 Putative ribose galactose methyl galactoside import ATP binding protein 1 1.24595346227e-05 1.93302950253e-05 6.8707604026e-06 +UniRef50_T2EKK2 Type I restriction modification DNA specificity domain protein 0.00111828402562 0.000170211357467 -0.000948072668153 +UniRef50_B4RVP1 Lipoprotein signal peptidase 8.20562129306e-06 3.22802041214e-05 2.40745828283e-05 +UniRef50_Q2YYZ8 UPF0060 membrane protein SAB2216c 0.00305000736918 0.0019978107061 -0.00105219666308 +UniRef50_B5F8H0 Glutathione regulated potassium efflux system ancillary protein KefG 0.00688455291034 0.00096825149244 -0.0059163014179 +UniRef50_UPI000374D55A MULTISPECIES 3.59359338876e-05 0.00153745336461 0.00150151743072 +UniRef50_A0A024JQ60 Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Fragment) 2.30009104127e-05 5.05836967834e-05 2.75827863707e-05 +UniRef50_A6LWE1 Multi sensor hybrid histidine kinase 0.00034557873077 0.000586993701942 0.000241414971172 +UniRef50_G7LY47 Multi sensor signal transduction histidine kinase 6.45275194619e-05 0.00194883387429 0.00188430635483 +UniRef50_D3P6U6 ATP dependent helicase Lhr and Lhr like helicase 0.0143689982943 0.00473817093866 -0.00963082735564 +UniRef50_C4ZIQ5 Transcriptional regulator, BadM Rrf2 family 1.8870070735e-05 2.5112341999e-05 6.242271264e-06 +UniRef50_UPI0003B7698F hypothetical protein 1.08765144268e-05 2.0407747564e-05 9.5312331372e-06 +UniRef50_UPI00046423BB MULTISPECIES 5.87092710625e-05 2.23733678578e-05 -3.63359032047e-05 +UniRef50_P0AAC5 Inner membrane protein YbhL 0.00218575393679 0.00278728730773 0.00060153337094 +UniRef50_Q67JV0 50S ribosomal protein L16 0.0206450779195 0.0136209186424 -0.0070241592771 +UniRef50_S3XCS7 5.50306351345e-06 7.55404738801e-05 7.00374103666e-05 +UniRef50_Q89AM3 Adenylosuccinate lyase 2.75143678314e-06 9.59641371305e-06 6.84497692991e-06 +UniRef50_K0RMT8 2.3883482039e-05 4.35249437589e-05 1.96414617199e-05 +UniRef50_C7ZXZ9 0.0146302537775 0.0017738603728 -0.0128563934047 +UniRef50_UPI0002D7A7D9 hypothetical protein 4.75934573618e-05 9.43348172102e-05 4.67413598484e-05 +UniRef50_Q6G7M7 D alanine D alanine ligase 0.0183743927206 0.00529793732398 -0.0130764553966 +UniRef50_A5ULE1 Phosphoribosylformylglycinamidine synthase related protein 0.00252084535205 0.000437318496723 -0.00208352685533 +UniRef50_Q46856 Alcohol dehydrogenase YqhD 0.00164692097917 0.00330937667248 0.00166245569331 +UniRef50_Q4JIU1 0.00011083265784 1.27192495205e-05 -9.81134083195e-05 +UniRef50_B6YWH0 Glyoxylate reductase 0.0108289555712 0.000888291245996 -0.0099406643252 +UniRef50_T2HA74 Polysaccharide biosynthesis protein WbpM 0.000740280554145 0.000182443948742 -0.000557836605403 +UniRef50_Q9I4V0 Nitronate monooxygenase 0.000382129693134 0.000271763839138 -0.000110365853996 +UniRef50_UPI00021A5C77 PREDICTED 1.06611313742e-05 5.88649092397e-06 -4.77464045023e-06 +UniRef50_UPI0001AF28DC putative NRPS 8.88131607553e-06 0.000170972538076 0.000162091222 +UniRef50_P0AC61 Glutaredoxin 2 0.00271683729835 0.00074138084986 -0.00197545644849 +UniRef50_B2THH4 HDIG domain HD domain protein 0.00059784359491 0.00444841180885 0.00385056821394 +UniRef50_H7QP44 Thioesterase superfamily protein 0.000755819453827 0.000332508871333 -0.000423310582494 +UniRef50_F7ZCY2 High affinity branched chain amino acid transport system permease protein 0.00615122281328 0.00249991667745 -0.00365130613583 +UniRef50_A5IQI7 Iron dependent repressor 0.0232660925804 0.00768758985763 -0.0155785027228 +UniRef50_UPI000479C12C hypothetical protein 6.02602611344e-06 6.90276423422e-05 6.30016162288e-05 +UniRef50_U3QQX1 C4 dicarboxylate ABC transporter 3.8443589434e-06 1.00981124681e-05 6.2537535247e-06 +UniRef50_Q8XHH1 Prolipoprotein diacylglyceryl transferase 2 0.000925760004832 0.00164255456126 0.000716794556428 +UniRef50_UPI000371D403 hypothetical protein 1.4740653753e-05 2.14141258889e-05 6.6734721359e-06 +UniRef50_UPI00036A9BE8 hypothetical protein, partial 2.94180246904e-06 1.6815662466e-05 1.3873859997e-05 +UniRef50_T5YMK1 Putrescine aminotransferase 0.000272278290666 0.000154886383839 -0.000117391906827 +UniRef50_A6X0F3 Glutathione S transferase domain protein 0.00264457427067 0.000854494036845 -0.00179008023383 +UniRef50_P0AAS6 0.00301479302705 0.000770104003268 -0.00224468902378 +UniRef50_A1B5Z0 UPF0042 nucleotide binding protein Pden_2850 0.00700874022664 0.000794654133621 -0.00621408609302 +UniRef50_P76221 TVP38 TMEM64 family inner membrane protein YdjZ 0.00155573092963 0.000510634072383 -0.00104509685725 +UniRef50_UPI000464FB5D hypothetical protein 0.000237132667756 4.09555212804e-05 -0.000196177146476 +UniRef50_E7I7N1 Cryptic beta glucoside bgl operon antiterminator 0.000954801304345 0.000400882405239 -0.000553918899106 +UniRef50_V4JK35 0.00197016763895 0.000173886185593 -0.00179628145336 +UniRef50_UPI00040B5335 peptide ABC transporter ATP binding protein 8.69241183796e-06 3.43539528549e-05 2.56615410169e-05 +UniRef50_Q49UZ0 Orn Lys Arg decarboxylase family protein 0.0202895657818 0.00587962248506 -0.0144099432967 +UniRef50_J7GCQ9 0.00256455449198 0.000957397270738 -0.00160715722124 +UniRef50_V5V9H0 SAM dependent methyltransferase 0.000259143699447 0.00588214827094 0.00562300457149 +UniRef50_Q8ESX1 Rhamnulokinase 0.000280994464564 0.00164436613851 0.00136337167395 +UniRef50_Q7MDH6 Sugar phosphate permease 0.0238094070165 0.00486401042311 -0.0189453965934 +UniRef50_U5T5B4 0.000864431759734 0.00296617766466 0.00210174590493 +UniRef50_L5TAD4 9.98448045177e-05 0.000535886123772 0.000436041319254 +UniRef50_T9KFG8 Phage protein 0.00104748831144 0.000625584547041 -0.000421903764399 +UniRef50_Q0TD54 Glutamate ammonia ligase adenylyltransferase 0.0012656267177 0.000133808174176 -0.00113181854352 +UniRef50_D5AQD8 6.7804990909e-05 2.21095397275e-05 -4.56954511815e-05 +UniRef50_K1YSK2 6.12396331385e-05 0.00011110249862 4.98628654815e-05 +UniRef50_W0H8V7 GGDEF domain EAL domain protein 0.000782519312829 0.000442905096598 -0.000339614216231 +UniRef50_Q9HXI1 Protein translocase subunit SecD 0.000643077416886 0.00265285813075 0.00200978071386 +UniRef50_UPI0003B4F453 uridine cytidine kinase 1.18723353037e-05 3.85310012767e-05 2.6658665973e-05 +UniRef50_UPI00037F9CB9 hypothetical protein 3.87295067252e-05 0.000216620761222 0.000177891254497 +UniRef50_UPI00047891B3 hypothetical protein 0.000157924934525 6.08227769029e-05 -9.71021576221e-05 +UniRef50_G2FHS7 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 5.40513820837e-06 8.43963892416e-06 3.03450071579e-06 +UniRef50_Q6GEF4 Protein FdhD homolog 0.016648549859 0.00292836153648 -0.0137201883225 +UniRef50_D2QKI4 AMP dependent synthetase and ligase 0.000913356729407 0.000242506213982 -0.000670850515425 +UniRef50_UPI000377E954 hypothetical protein 6.0421387367e-06 3.28961181655e-05 2.68539794288e-05 +UniRef50_S9SK01 1.61523697842e-05 2.53453578297e-05 9.1929880455e-06 +UniRef50_Q8NMT1 Uronate isomerase 1.03021610202e-05 2.22559137301e-05 1.19537527099e-05 +UniRef50_Q8DSG4 Aspartyl glutamyl tRNA amidotransferase subunit C 0.00124987846965 0.00074138084986 -0.00050849761979 +UniRef50_B4F1G9 Argininosuccinate lyase 4.75591485511e-05 1.20014105834e-05 -3.55577379677e-05 +UniRef50_UPI0003592D1E PREDICTED 4.77048258149e-06 1.15095785661e-05 6.73909598461e-06 +UniRef50_UPI000317A305 hypothetical protein 0.000321737431657 0.000135637366249 -0.000186100065408 +UniRef50_Q6FEF0 0.000225589236365 0.00633991003753 0.00611432080117 +UniRef50_P07024 Protein UshA 0.0015439512631 0.000227167628864 -0.00131678363424 +UniRef50_UPI000381BCCD hypothetical protein 2.88109959191e-05 6.66095275099e-05 3.77985315908e-05 +UniRef50_A1WG04 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.0149789830921 0.00315943209358 -0.0118195509985 +UniRef50_Q6FEF8 7.86429143391e-05 0.00579589388412 0.00571725096978 +UniRef50_M1MKU0 0.000513241402379 0.00093852908226 0.000425287679881 +UniRef50_D5AT19 4.63438560633e-06 4.73956676633e-06 1.0518116e-07 +UniRef50_W0M3M5 RNA pseudouridine synthase family protein 1.74322341986e-05 9.11896896221e-05 7.37574554235e-05 +UniRef50_UPI000472066C hypothetical protein 2.77891824027e-05 1.15261445221e-05 -1.62630378806e-05 +UniRef50_R7N6I1 Thiamine pyrophosphate protein domain protein TPP binding 6.86754376362e-05 0.00103036665919 0.000961691221554 +UniRef50_W5LSB3 3.75221782819e-05 9.3547261122e-05 5.60250828401e-05 +UniRef50_UPI00047AC46D hypothetical protein 3.80168977992e-05 7.45856714779e-05 3.65687736787e-05 +UniRef50_A3W953 0.000190085568398 0.000122538051944 -6.7547516454e-05 +UniRef50_G2T956 Thioesterase superfamily protein 9.66680118566e-06 0.000604595219791 0.000594928418605 +UniRef50_A4WT88 Autoinducer binding domain protein 0.00448971747239 0.00158544849517 -0.00290426897722 +UniRef50_Q883F3 Urease subunit gamma beta 0.000207467420505 0.0257169777574 0.0255095103369 +UniRef50_G8VJT5 Lysophospholipase 1.93823857275e-05 0.000153978666532 0.000134596280804 +UniRef50_UPI0004638C41 D alanyl D alanine carboxypeptidase 7.93593623542e-06 1.24220730052e-05 4.48613676978e-06 +UniRef50_UPI00038F7D5E Allantoinase 9.98666050696e-06 1.39260278478e-05 3.93936734084e-06 +UniRef50_B4T534 Isopentenyl diphosphate Delta isomerase 0.000903556888214 0.00117107907278 0.000267522184566 +UniRef50_M1MET0 Cell wall binding repeat containing protein 0.00036550513354 0.00139822002058 0.00103271488704 +UniRef50_W6M800 1.84503154394e-05 3.54459088754e-05 1.6995593436e-05 +UniRef50_Q9RYT6 TDP glucose 4,6 dehydratase related protein 0.000440012030796 0.0311743831295 0.0307343710987 +UniRef50_O85342 Mannose 1 phosphate guanylyltransferase 2 2.13623819176e-05 1.10212775562e-05 -1.03411043614e-05 +UniRef50_F0QHU9 Lipid A phosphoethanolamine transferase, associated with polymyxin resistance 0.000306490256408 0.0054900629274 0.00518357267099 +UniRef50_W8V286 Beta hydroxyacyl ACP dehydratase 1.08741288248e-05 3.23312192553e-05 2.14570904305e-05 +UniRef50_Q8XRC2 UPF0271 protein RSp0936 0.0012512724306 0.00835377675494 0.00710250432434 +UniRef50_UPI000470CB6A hypothetical protein, partial 1.26733500137e-05 3.1825497064e-05 1.91521470503e-05 +UniRef50_V9QR17 GntR family transcriptional regulator 0.00190857951352 0.000509166733097 -0.00139941278042 +UniRef50_S5XZH4 Replication protein C 0.000184642246177 3.13422065627e-05 -0.000153300039614 +UniRef50_S2ZMR6 1.02866352819e-05 3.0152447036e-05 1.98658117541e-05 +UniRef50_P42604 Altronate dehydratase 0.00313392792794 0.00640670936184 0.0032727814339 +UniRef50_UPI0004081C8A ABC transporter ATP binding protein 1.20953506588e-05 9.49766499023e-05 8.28812992435e-05 +UniRef50_UPI00037C4CDF hypothetical protein 2.53745218018e-05 2.88784410243e-05 3.5039192225e-06 +UniRef50_A0A035VXH8 0.000967583739845 0.000198724759845 -0.00076885898 +UniRef50_UPI0002F80216 ABC transporter ATP binding protein 2.08447367061e-06 5.05992499922e-06 2.97545132861e-06 +UniRef50_UPI00036DADFE hypothetical protein 0.000697208023748 0.000251333366122 -0.000445874657626 +UniRef50_UPI0003FA02C9 hypothetical protein 1.97810536707e-05 7.8648812496e-05 5.88677588253e-05 +UniRef50_Q67N85 L threonine 3 dehydrogenase 7.19269073162e-06 5.21037960824e-05 4.49111053508e-05 +UniRef50_P70971 2.20248668497e-05 6.30162755622e-05 4.09914087125e-05 +UniRef50_Q6SSE6 Plus agglutinin 3.68410569987e-06 2.91717431202e-05 2.54876374203e-05 +UniRef50_Q8YI99 Pyrazinamidase nicotinamidase 0.00133796852055 0.00135133707812 1.336855757e-05 +UniRef50_B7V5U6 0.000259035845508 0.000427013063902 0.000167977218394 +UniRef50_M3VMM8 Insoluble matrix protein 1.43744135852e-05 2.9879449446e-05 1.55050358608e-05 +UniRef50_Q8CT01 0.00902546522588 0.00417425620137 -0.00485120902451 +UniRef50_T5MN46 Inner membrane amino acid ABC transporter permease yhdY 0.000154496311943 0.000233451940873 7.895562893e-05 +UniRef50_G7ZNW2 0.0154060712507 0.00475080998459 -0.0106552612661 +UniRef50_Q28RH4 0.000454887226161 0.00177734319615 0.00132245596999 +UniRef50_Q2W825 Predicted transcriptional regulator 0.000148174061495 2.25362641568e-05 -0.000125637797338 +UniRef50_C6S923 Thiol 0.00175606438739 0.00450851826651 0.00275245387912 +UniRef50_UPI0004449CBD SKN1 domain containing protein 1.43157328522e-06 1.00999994179e-05 8.66842613268e-06 +UniRef50_B2J5F8 Malate dehydrogenase 2.88278501439e-05 7.66585811992e-06 -2.1161992024e-05 +UniRef50_UPI00036B8B42 hypothetical protein 4.34231434949e-05 1.20113109164e-05 -3.14118325785e-05 +UniRef50_P30847 Signal transduction histidine protein kinase BaeS 0.00283913936315 0.00110697990601 -0.00173215945714 +UniRef50_N4UTL9 0.000523658787645 0.000227775885127 -0.000295882902518 +UniRef50_UPI0002375E1A epimerase 0.0001376674116 3.05813491483e-05 -0.000107086062452 +UniRef50_H8GXK1 Coenzyme F390 synthetase FtsA 2.00579423501e-05 0.000346570489416 0.000326512547066 +UniRef50_A5IVA2 Bile acid 0.00795558545244 0.00335820270768 -0.00459738274476 +UniRef50_Q83MN8 Chromosome partitioning protein ParA 5.55397165518e-06 7.68949897227e-06 2.13552731709e-06 +UniRef50_Q1IWN0 Carbamoyl phosphate synthase small chain 0.000301118567589 0.0550800785935 0.0547789600259 +UniRef50_P0AFN8 Inner membrane transport permease YadH 0.00244864436126 0.00123289537138 -0.00121574898988 +UniRef50_P0AD69 Peptidoglycan synthase FtsI 0.00261793849627 0.000567080351345 -0.00205085814492 +UniRef50_Q931T2 0.0122302880241 0.0025435732345 -0.0096867147896 +UniRef50_UPI0004769FCE hypothetical protein 4.97505730809e-06 1.57074115725e-05 1.07323542644e-05 +UniRef50_Q7UKI3 Succinyl CoA ligase [ADP forming] subunit beta 0.0014845285354 0.000606322096462 -0.000878206438938 +UniRef50_Q9PQK7 CTP synthase 2.94704100442e-06 4.09975345587e-06 1.15271245145e-06 +UniRef50_Y1DSI1 Nitrite extrusion protein 1 6.58300129118e-05 3.9422910718e-05 -2.64071021938e-05 +UniRef50_W0RI86 von Willebrand factor type A 0.000143895548483 0.0610781603149 0.0609342647664 +UniRef50_Q6GDQ8 Holin like protein CidB 0.0259488486569 0.00796754149783 -0.0179813071591 +UniRef50_Q9RVB8 Transcriptional regulator, MerR family 0.00198676836238 0.0381449868971 0.0361582185347 +UniRef50_D0IUG7 Type III R M system restriction enzyme 0.0001707555879 0.00475460780327 0.00458385221537 +UniRef50_N1M5F6 0.000147343818849 0.000266370749727 0.000119026930878 +UniRef50_U3SRF9 0.000666151745035 0.00167160399168 0.00100545224664 +UniRef50_X3EWC3 1.32467294272e-05 6.33690691732e-06 -6.90982250988e-06 +UniRef50_D7A0M4 Short chain dehydrogenase reductase SDR 0.00877924111885 0.000872234390519 -0.00790700672833 +UniRef50_Q1NBV4 0.00110871202587 4.34268147368e-05 -0.00106528521113 +UniRef50_C0MBF3 Energy coupling factor transporter transmembrane protein EcfT 0.00564031534735 0.00452306164188 -0.00111725370547 +UniRef50_D4HEP8 Sugar binding domain protein 0.000111572213456 0.00486377036047 0.00475219814701 +UniRef50_UPI000363A6EC hypothetical protein 2.98388335005e-06 3.6893903618e-05 3.3910020268e-05 +UniRef50_UPI00037796C2 hypothetical protein 2.89873871077e-05 1.03616020415e-05 -1.86257850662e-05 +UniRef50_Q58158 Type A flavoprotein FprA 0.00697409339168 0.00128788814155 -0.00568620525013 +UniRef50_C2R4M4 Phage infection protein 2.700486933e-06 1.8829256746e-06 -8.175612584e-07 +UniRef50_M9VCW9 Proteasome subunit beta 0.000352790643786 0.00241366787056 0.00206087722677 +UniRef50_U5VGF8 0.000142987116986 0.000581565935203 0.000438578818217 +UniRef50_Q2JLL9 LL diaminopimelate aminotransferase 0.00420088824962 0.00487632106739 0.00067543281777 +UniRef50_Q8FMN9 Phosphate import ATP binding protein PstB 1.38779177283e-05 0.000332644324494 0.000318766406766 +UniRef50_Q2G260 0.0111926408092 0.00310509037974 -0.00808755042946 +UniRef50_W4S5W1 Translation initiation inhibitor 0.000101692942466 0.000165651161136 6.395821867e-05 +UniRef50_M5T1U6 Permease large protein, C4 dicarboxylate transport system 4.41260130784e-05 1.60643652507e-05 -2.80616478277e-05 +UniRef50_Q0TNA9 Protein methyltransferase, release factor specific 0.000265022765889 0.00104215524505 0.000777132479161 +UniRef50_P0A2C8 Spermidine putrescine binding periplasmic protein 0.00299187353789 0.000234688772347 -0.00275718476554 +UniRef50_G6CLR5 1.35237877262e-05 4.41822506859e-05 3.06584629597e-05 +UniRef50_D8U8L9 2.56811730167e-05 7.825235028e-05 5.25711772633e-05 +UniRef50_B7H0C7 AraC like ligand binding domain protein 0.000280936493587 0.0055995603536 0.00531862386001 +UniRef50_UPI0004671146 hypothetical protein 2.64411489676e-05 5.35062801878e-06 -2.10905209488e-05 +UniRef50_Q47163 Type I restriction enzyme EcoprrI M protein 0.00489734158324 0.00579547465568 0.00089813307244 +UniRef50_Q4L635 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0198611736033 0.00473540929011 -0.0151257643132 +UniRef50_U3SR89 Tellurite resistance protein TehB 0.00366285990988 0.00133839258884 -0.00232446732104 +UniRef50_UPI00047D168D amino acid permease 2.46105033951e-05 5.28461779285e-05 2.82356745334e-05 +UniRef50_UPI00046D0817 hypothetical protein 5.10636954303e-05 3.66510568241e-05 -1.44126386062e-05 +UniRef50_Q4L3Y7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00564789907553 0.000983595794895 -0.00466430328064 +UniRef50_T2EA26 Methyltransferase domain protein 0.00283945806736 0.00239439423374 -0.00044506383362 +UniRef50_X1QW39 Marine sediment metagenome DNA, contig 0.000105202302099 0.000246626196089 0.00014142389399 +UniRef50_E0NML2 Transcriptional regulator, PadR family 8.66901159514e-05 2.35070981275e-05 -6.31830178239e-05 +UniRef50_D0JDL8 Ribonucleoside diphosphate reductase 2 alpha chain 3.81348963068e-05 0.00602952176116 0.00599138686485 +UniRef50_UPI0003B62F85 damage inducible protein CinA 1.99272415598e-05 8.16656957218e-06 -1.17606719876e-05 +UniRef50_Q6N6K5 Aliphatic sulfonates import ATP binding protein SsuB 0.00389664261975 0.00177473358414 -0.00212190903561 +UniRef50_Q3K2F6 Fructose 1,6 bisphosphatase class 3 0.000178127109519 0.000103317797734 -7.4809311785e-05 +UniRef50_UPI0004158481 multidrug transporter 3.45771356581e-05 5.76813688346e-06 -2.88089987746e-05 +UniRef50_Q6GAW6 Argininosuccinate lyase 0.0122654042128 0.00536687885828 -0.00689852535452 +UniRef50_Q07QW9 NADH quinone oxidoreductase subunit H 1 0.00233150045958 0.000801684589787 -0.00152981586979 +UniRef50_F0Y0E3 Expressed protein 1.78850695994e-05 0.000159963203925 0.000142078134326 +UniRef50_W4UDN2 Maltose phosphorylase 0.000472441474382 0.00760944279293 0.00713700131855 +UniRef50_M7TQJ9 2.89254899563e-06 1.00572915369e-06 -1.88681984194e-06 +UniRef50_UPI000287CF8F thioredoxin 2.02419041673e-05 2.74146982525e-05 7.1727940852e-06 +UniRef50_UPI00036E2E8C hypothetical protein, partial 0.000489337402342 4.83465119948e-05 -0.000440990890347 +UniRef50_UPI0003800615 hypothetical protein, partial 0.000475890717744 0.000325584313987 -0.000150306403757 +UniRef50_UPI000479B301 hypothetical protein 7.36339304023e-06 2.13900097419e-05 1.40266167017e-05 +UniRef50_I5ASV0 Anthranilate synthase component I 0.00172051101113 0.000981332947463 -0.000739178063667 +UniRef50_F8FZ21 Acyl CoA synthetase 0.000332794437405 0.000366523901933 3.3729464528e-05 +UniRef50_J8HFC8 0.000491411054244 6.45934746829e-05 -0.000426817579561 +UniRef50_U7JJA9 1.55021816583e-05 6.57876117424e-05 5.02854300841e-05 +UniRef50_UPI0003710DBF hypothetical protein 6.32855892977e-06 3.96347081498e-06 -2.36508811479e-06 +UniRef50_Q71YR0 DNA ligase 0.0220782850341 0.00652495408817 -0.0155533309459 +UniRef50_F0KGW3 0.00323559419016 0.00391656799256 0.0006809738024 +UniRef50_Q3SMI5 Phosphoheptose isomerase 2.39696147082e-05 2.35092708847e-05 -4.603438235e-07 +UniRef50_Q05825 ATP synthase subunit beta, mitochondrial 0.000283631546115 0.00564877390879 0.00536514236268 +UniRef50_UPI00047AF754 2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase 1.11076657223e-05 3.10322575173e-05 1.9924591795e-05 +UniRef50_B4F0Z5 Cell division protein ZapD 0.0019909416466 0.00393537816325 0.00194443651665 +UniRef50_R6FIZ1 0.000262143047812 0.00345435819611 0.0031922151483 +UniRef50_UPI0001BF61D0 hypothetical protein SMAC_10790, partial 5.79136296957e-05 3.05510581239e-05 -2.73625715718e-05 +UniRef50_E2NSK7 1.44700467954e-05 0.000535678710623 0.000521208663828 +UniRef50_A6F174 0.000497127201061 9.5440856542e-06 -0.000487583115407 +UniRef50_Q75LR2 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 9.23534473397e-05 0.0067368257392 0.00664447229186 +UniRef50_L0BJA1 0.000261584803461 0.00132084978881 0.00105926498535 +UniRef50_E0R9G5 ABC type multidrug transport system protein 0.000507023896072 0.000492565949362 -1.445794671e-05 +UniRef50_UPI0003B6C406 3 oxoacyl ACP synthase, partial 1.86953739527e-05 5.83344361892e-05 3.96390622365e-05 +UniRef50_H5MQG0 Putative transport domain protein 0.00108575814295 0.000604744106207 -0.000481014036743 +UniRef50_UPI0003665115 hypothetical protein 2.33658479595e-05 1.18268482351e-05 -1.15389997244e-05 +UniRef50_E8SES7 0.0214601544789 0.00951057482903 -0.0119495796499 +UniRef50_F4GHR3 Glutamate synthase 0.000333686259254 0.000740169443101 0.000406483183847 +UniRef50_UPI0001744B3D possible HAD superfamily hydrolase 1.30415176251e-05 0.00015114801142 0.000138106493795 +UniRef50_E3EXE9 1.67253200754e-05 7.34209255833e-06 -9.38322751707e-06 +UniRef50_UPI00037D9792 hypothetical protein 3.86101563685e-05 5.45383300156e-05 1.59281736471e-05 +UniRef50_P55785 Heptaprenyl diphosphate synthase component 2 3.85552455315e-05 4.23101809126e-05 3.7549353811e-06 +UniRef50_U5WDI7 0.000116628008914 1.13408568086e-05 -0.000105287152105 +UniRef50_A1B739 3.99393433136e-06 5.96230132098e-06 1.96836698962e-06 +UniRef50_A6LT02 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000836046935096 0.000333063953224 -0.000502982981872 +UniRef50_I4E1N1 0.00362766682043 0.00337731875774 -0.00025034806269 +UniRef50_P36646 Protein transport protein HofC homolog 0.0022147536356 0.000812052714213 -0.00140270092139 +UniRef50_UPI00018167BC putative redox regulated molecular chaperone heat shock like protein 1.65209891556e-05 1.43595343314e-05 -2.1614548242e-06 +UniRef50_P55393 Putative replication protein A 0.0358742848444 0.00531238549544 -0.030561899349 +UniRef50_UPI000363A7D4 hypothetical protein 2.45180147715e-05 2.54075172947e-05 8.895025232e-07 +UniRef50_B9KRZ0 AMP dependent synthetase and ligase 0.000281051579798 0.000291053422665 1.0001842867e-05 +UniRef50_F9Z1W7 Acyl CoA thioesterase 2 0.000486214821984 0.00761211321461 0.00712589839263 +UniRef50_Q9I692 7.73536862413e-05 0.000297369481369 0.000220015795128 +UniRef50_G2I8Q0 4.21980094491e-05 2.83023336403e-05 -1.38956758088e-05 +UniRef50_UPI00046CEC40 hypothetical protein 0.000271171961937 0.000164573219357 -0.00010659874258 +UniRef50_O05103 HTH type transcriptional regulator MalR 0.000183245625651 0.00170092504709 0.00151767942144 +UniRef50_P27294 Protein InaA 0.00328990296069 0.00351022651577 0.00022032355508 +UniRef50_UPI00037C8975 hypothetical protein 1.94321941732e-05 0.000143256513695 0.000123824319522 +UniRef50_Q3J6L3 Putative Pre type recombination enzyme 0.00178065259978 0.000658668145238 -0.00112198445454 +UniRef50_C6KV56 UDP glucose pyrophosphorylase 0.00283650970942 0.000426963911123 -0.0024095457983 +UniRef50_UPI0002880FB3 FAD dependent oxidoreductase 2.11162533447e-05 1.24399616847e-05 -8.67629166e-06 +UniRef50_UPI000362260F hypothetical protein 3.25354219129e-06 0.000158916484676 0.000155662942485 +UniRef50_A5UJF1 Geranylgeranylglyceryl phosphate synthase 0.00119219032156 0.00120760424101 1.541391945e-05 +UniRef50_Q0A6T1 Phosphoadenosine phosphosulfate reductase 3.86156438181e-05 2.08068915864e-05 -1.78087522317e-05 +UniRef50_C3PFR3 ATP synthase subunit alpha 0.0240277761545 0.0153294774359 -0.0086982987186 +UniRef50_UPI0003F0E940 PREDICTED 4.51425535422e-05 4.42171335188e-05 -9.254200234e-07 +UniRef50_A4ELE1 Transcriptional regulator, LuxR family protein 0.000103901544877 0.00014787896365 4.3977418773e-05 +UniRef50_Q54431 Signal recognition particle protein 0.00426226049327 0.0108936639526 0.00663140345933 +UniRef50_Q6N143 Acetate kinase 0.00174198349438 0.000396684881891 -0.00134529861249 +UniRef50_UPI0003B5831F 3 phosphoshikimate 1 carboxyvinyltransferase 6.69884612869e-06 5.41171029246e-06 -1.28713583623e-06 +UniRef50_UPI00046A2E06 hypothetical protein 1.1848347715e-05 0.000197294892723 0.000185446545008 +UniRef50_B8HW51 Urease subunit beta 8.33232234602e-05 4.10671373868e-05 -4.22560860734e-05 +UniRef50_UPI0004743F92 GMP synthase, partial 1.77844166674e-05 3.21860592347e-05 1.44016425673e-05 +UniRef50_G8AZ63 0.000101843620483 0.000159263612335 5.7419991852e-05 +UniRef50_UPI00047CA294 ATP dependent DNA helicase PcrA 1.87357624206e-05 9.93293968501e-06 -8.80282273559e-06 +UniRef50_A7ZV50 4.11475880512e-05 9.03496939694e-05 4.92021059182e-05 +UniRef50_R5EU95 Serine type site specific recombinase 5.34563921787e-06 0.000122193134571 0.000116847495353 +UniRef50_Q928B5 Thioredoxin reductase 0.0292537242529 0.0145177471353 -0.0147359771176 +UniRef50_G0J229 Carbohydrate binding CenC domain protein 5.57223722826e-07 1.07856417584e-05 1.02284180356e-05 +UniRef50_UPI00046D1393 transcription elongation factor GreA 1.83144151382e-05 3.04884210611e-05 1.21740059229e-05 +UniRef50_Q8XCB3 Valine tRNA ligase 0.00117339827899 0.00079733562092 -0.00037606265807 +UniRef50_A0A017SM38 1.97398119636e-05 6.29731471563e-05 4.32333351927e-05 +UniRef50_F9D1U7 Saccharopine dehydrogenase 0.000506281391558 0.0550079101617 0.0545016287701 +UniRef50_UPI000367DEE0 hypothetical protein 8.95315899716e-05 8.70618213898e-05 -2.4697685818e-06 +UniRef50_Q07806 Penicillin binding protein 1A 0.000790534358864 0.000300828421596 -0.000489705937268 +UniRef50_P11557 Protein DamX 0.00361087114036 0.00125955078296 -0.0023513203574 +UniRef50_A1U6F9 4 hydroxythreonine 4 phosphate dehydrogenase 3.35240707976e-05 6.56985467164e-05 3.21744759188e-05 +UniRef50_UPI00035C0B1A hypothetical protein 5.67599645851e-06 2.81706251065e-06 -2.85893394786e-06 +UniRef50_Q9FN42 ATP dependent Clp protease proteolytic subunit 2, mitochondrial 6.21149074774e-06 6.44156327244e-05 5.82041419767e-05 +UniRef50_Q49YA8 0.0119785947914 0.00395184140683 -0.00802675338457 +UniRef50_F8K305 8.64963227569e-06 0.000243773621366 0.00023512398909 +UniRef50_A0A023YXD9 Anaerobic dimethyl sulfoxide reductase chain A 6.92634841923e-05 0.000317587236346 0.000248323752154 +UniRef50_C4K9M3 NADH 0.00018641364977 0.00822295439131 0.00803654074154 +UniRef50_UPI0004655D13 type VI secretion protein 6.13110916438e-06 8.61008234854e-06 2.47897318416e-06 +UniRef50_UPI000479C70C hypothetical protein 4.58629542771e-06 1.5694018328e-05 1.11077229003e-05 +UniRef50_P06131 Formate dehydrogenase subunit alpha 0.00281948850349 0.00110971446987 -0.00170977403362 +UniRef50_D2U3Z3 1.98364621323e-05 8.58033498578e-05 6.59668877255e-05 +UniRef50_U5NMC4 0.0310048799419 0.0042970219004 -0.0267078580415 +UniRef50_A0A020LY90 4.02836358685e-05 0.000267947791132 0.000227664155264 +UniRef50_A5UL75 50S ribosomal protein L5 0.000935517168202 0.000347431417872 -0.00058808575033 +UniRef50_Q9RSR5 Glycine tRNA ligase 7.56484947587e-05 0.0416666311895 0.0415909826947 +UniRef50_F0J7L0 0.00015401192538 7.17237333259e-05 -8.22881920541e-05 +UniRef50_P56900 Transketolase 0.00753905414224 0.0102792807092 0.00274022656696 +UniRef50_M5FH04 4.20263226947e-05 7.04266987598e-06 -3.49836528187e-05 +UniRef50_D7AH61 4.21471842938e-05 1.97145795203e-05 -2.24326047735e-05 +UniRef50_P39270 Inner membrane protein YjdF 0.00329065740032 0.000950638432417 -0.0023400189679 +UniRef50_F4TUJ1 NADH quinone oxidoreductase subunit I 0.000541797588994 0.000100946852693 -0.000440850736301 +UniRef50_I6S3Y4 0.000417683559236 9.3964145764e-05 -0.000323719413472 +UniRef50_F5LY46 0.007336089401 0.000339444488737 -0.00699664491226 +UniRef50_Q6A651 Putative pyruvate, phosphate dikinase regulatory protein 0.000173689872173 0.00234292480256 0.00216923493039 +UniRef50_D9UMS0 Lipoprotein 3.77704423875e-05 0.000181375126013 0.000143604683626 +UniRef50_UPI00029A9C68 phenylacetate CoA ligase 9.43775428021e-06 0.000146757795143 0.000137320040863 +UniRef50_A6T5Z2 Putative glutamate cysteine ligase 2 0.00503022649029 0.000452867913463 -0.00457735857683 +UniRef50_I0C5L3 Integral membrane protein 0.0178260243422 0.00382954969333 -0.0139964746489 +UniRef50_UPI0003B39740 50S ribosomal protein L5 0.000135128879021 0.000105622043206 -2.9506835815e-05 +UniRef50_P77510 Sensor histidine kinase DpiB 0.00390216362572 0.00175754268296 -0.00214462094276 +UniRef50_P37710 Autolysin 5.05033084919e-06 0.000593141447913 0.000588091117064 +UniRef50_B1HUK4 Alanine tRNA ligase 0.0112107694589 0.00192283739056 -0.00928793206834 +UniRef50_Q9K6G3 UPF0340 protein BH3766 0.0284885260525 0.00630060159755 -0.0221879244549 +UniRef50_Q1GJP7 Urease subunit beta 8.73352489095e-05 3.16158949634e-05 -5.57193539461e-05 +UniRef50_UPI0000164CD8 hypothetical protein DR_0251 0.000284598252313 0.00383419427424 0.00354959602193 +UniRef50_F0F251 2.39069405547e-05 3.09198785015e-05 7.0129379468e-06 +UniRef50_H7CPK2 0.0190035357371 0.00804454476465 -0.0109589909725 +UniRef50_V8RAR8 0.0161475072447 0.00705792891766 -0.00908957832704 +UniRef50_H9KEV5 3.96739753443e-06 6.16428373669e-06 2.19688620226e-06 +UniRef50_Q7UNZ2 Isoleucine tRNA ligase 1.2034398317e-06 2.88278181182e-06 1.67934198012e-06 +UniRef50_UPI00034D189F aldehyde activating protein 0.000106080760536 0.000412414924368 0.000306334163832 +UniRef50_Q8ZRW8 Ferredoxin like protein FixX 0.00196693702436 0.000137676785639 -0.00182926023872 +UniRef50_Q8XCN6 Long chain fatty acid transport protein 0.0030173134943 0.000487377034738 -0.00252993645956 +UniRef50_F0RM21 Serine threonine protein kinase 0.00034952981194 0.0316877879209 0.031338258109 +UniRef50_P0AAC2 Universal stress protein E 0.00251558309524 0.00206528111656 -0.00045030197868 +UniRef50_T2S877 0.000138822232327 9.25675644253e-05 -4.62546679017e-05 +UniRef50_Q7N4I9 Complete genome; segment 8 17 0.000440645123179 0.00861901001715 0.00817836489397 +UniRef50_Q5JGR7 Nucleoside diphosphate kinase 0.021381397079 0.00104824877617 -0.0203331483028 +UniRef50_UPI0003C11FE8 PREDICTED 5.71180374095e-05 6.56421888604e-05 8.5241514509e-06 +UniRef50_UPI000417E643 hypothetical protein 0.000120045833248 0.000411043995059 0.000290998161811 +UniRef50_M1XGX9 0.000100788929923 0.000140153652767 3.9364722844e-05 +UniRef50_Q7N3U5 Cysteine desulfurase 0.000471357894479 0.000606637450263 0.000135279555784 +UniRef50_UPI000379DB36 hypothetical protein, partial 6.49868853174e-06 0.000219373194044 0.000212874505512 +UniRef50_UPI00046F039B DNA gyrase subunit B 1.24684212581e-05 4.21721120721e-05 2.9703690814e-05 +UniRef50_Q8CUA4 Mobilization protein 0.00590071374576 0.00106740977781 -0.00483330396795 +UniRef50_Q3J611 Putative sensor histidine protein kinase 0.0189560659285 0.00414201157734 -0.0148140543512 +UniRef50_W9T208 AsmA family protein 2.54539119975e-05 2.79687171638e-05 2.5148051663e-06 +UniRef50_B9MJY9 Ribosomal protein L11 methyltransferase 6.5834730777e-06 2.15463652128e-05 1.49628921351e-05 +UniRef50_A6LZQ4 Methyltransferase type 11 0.000285074490886 0.000843882759885 0.000558808268999 +UniRef50_UPI0003EC04D4 PREDICTED 5.2206804198e-06 2.43613867957e-05 1.91407063759e-05 +UniRef50_UPI0002EC1250 patatin 2.11122327112e-05 2.72975723515e-05 6.1853396403e-06 +UniRef50_UPI0002493F15 oxidoreductase 1.29891624285e-05 2.75393679302e-05 1.45502055017e-05 +UniRef50_G2PAE6 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.000235295251898 0.00383254128439 0.00359724603249 +UniRef50_UPI0003AE4F02 PREDICTED 4.13886492145e-05 0.000469069334647 0.000427680685433 +UniRef50_V2EDG8 Porin thermoregulatory protein EnvY 2.31831780843e-05 5.88423127631e-05 3.56591346788e-05 +UniRef50_B5EWS4 Recombination associated protein RdgC 0.00191341840512 0.000465050509721 -0.0014483678954 +UniRef50_UPI000467B16B hypothetical protein 7.85765155653e-06 1.01093559547e-05 2.25170439817e-06 +UniRef50_UPI000050FD81 peptide ABC transporter permease 1.04094897579e-05 0.00010351556379 9.31060740321e-05 +UniRef50_P0A9L3 FKBP type 22 kDa peptidyl prolyl cis trans isomerase 0.00422851125853 0.00214978026674 -0.00207873099179 +UniRef50_UPI00036605E2 hypothetical protein 1.36485500088e-05 2.95295507657e-05 1.58810007569e-05 +UniRef50_C4JA46 1.05578835166e-05 0.000942733670122 0.000932175786605 +UniRef50_P30149 Inner membrane protein YabI 0.0046284194217 0.000930131354942 -0.00369828806676 +UniRef50_Q89B04 Phosphoenolpyruvate protein phosphotransferase 0.00309963184691 0.000523884471679 -0.00257574737523 +UniRef50_Q3J217 Putative Endonuclease 0.0177400029565 0.00434655175628 -0.0133934512002 +UniRef50_B7GQS6 Phosphoribosyl AMP cyclohydrolase 1.33029630545e-05 6.23335768974e-05 4.90306138429e-05 +UniRef50_C0ZZE5 Riboflavin biosynthesis protein RibBA 1.00873968671e-05 7.851320401e-06 -2.2360764661e-06 +UniRef50_C1N2I9 Predicted protein 2.84236666888e-06 4.2044413969e-06 1.36207472802e-06 +UniRef50_Q5HMG3 Dihydroxy acid dehydratase 0.0278417200064 0.00997571700595 -0.0178660030004 +UniRef50_R6V2L6 YhgE Pip domain protein 1.37149606168e-06 1.94437019558e-06 5.728741339e-07 +UniRef50_Q5XA33 0.00897848608486 0.00733581451576 -0.0016426715691 +UniRef50_F8KRE5 Chemotaxis protein Che 0.000117474892792 0.00393178877904 0.00381431388625 +UniRef50_D4MWH4 Lysophospholipase 0.000252674474934 0.000612637372854 0.00035996289792 +UniRef50_A6M2R6 4.62394367686e-05 0.000674694394134 0.000628454957365 +UniRef50_UPI00037C1A9F hypothetical protein 7.62932694411e-06 0.000372918563175 0.000365289236231 +UniRef50_Q6ABL2 DNA replication and repair protein RecF 0.00109947375394 0.0169823561784 0.0158828824245 +UniRef50_Q983N4 Isoleucine tRNA ligase 3.81298978638e-05 5.69672735505e-06 -3.24331705088e-05 +UniRef50_UPI00037926CF hypothetical protein 3.82243688097e-05 1.03420626775e-05 -2.78823061322e-05 +UniRef50_D6GPL1 RNA polymerase sigma factor, sigma 70 family 0.00877626901761 0.000419881571359 -0.00835638744625 +UniRef50_O25751 Protein TolB 9.07418242453e-05 0.0021652883405 0.00207454651625 +UniRef50_N0B087 Transporter 2.43820164448e-05 3.98234848235e-05 1.54414683787e-05 +UniRef50_UPI000378CCBF hypothetical protein 2.04076438527e-05 5.74602985705e-05 3.70526547178e-05 +UniRef50_L9BMS0 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 0.000156850133866 0.000777570127407 0.000620719993541 +UniRef50_J0HGY2 0.000610118134256 0.000152448715308 -0.000457669418948 +UniRef50_D2SC05 2.43321325773e-05 6.58648433981e-05 4.15327108208e-05 +UniRef50_T0T191 1.48976615759e-05 2.32681182578e-05 8.3704566819e-06 +UniRef50_Q11IE7 Putative 3 methyladenine DNA glycosylase 4.52369476735e-05 1.35206731201e-05 -3.17162745534e-05 +UniRef50_Q6A923 Endo beta N acetylglucosaminidase H 0.000540130200985 0.00334218049256 0.00280205029157 +UniRef50_V6EZI7 2.80061647579e-05 2.19185043949e-05 -6.087660363e-06 +UniRef50_Q4A0N2 Ornithine aminotransferase 1 5.15106177358e-06 1.4151613144e-05 9.00055137042e-06 +UniRef50_O26837 Phenylalanine tRNA ligase alpha subunit 0.00215766086932 0.00139550726349 -0.00076215360583 +UniRef50_Q9CGF7 Oxygen independent coproporphyrinogen III oxidase like protein LL1139 0.00696048032706 0.00821433143512 0.00125385110806 +UniRef50_UPI00037C546A hypothetical protein 0.0001030943203 1.7867677357e-05 -8.5226642943e-05 +UniRef50_C5B1H6 Amidase, hydantoinase carbamoylase 0.000707200560896 0.000283512927957 -0.000423687632939 +UniRef50_G8YPB5 Piso0_001875 protein 4.24551452304e-06 0.000120594920288 0.000116349405765 +UniRef50_I5C3W2 6 pyruvoyl tetrahydropterin synthase 5.22148831758e-05 0.000415042995505 0.000362828112329 +UniRef50_Q58787 citramalate synthase CimA 9.32536865333e-06 5.59145360609e-06 -3.73391504724e-06 +UniRef50_Q9I0J1 NADH quinone oxidoreductase subunit L 0.000511070398343 0.000154018909841 -0.000357051488502 +UniRef50_Q27527-2 Isoform b of Enolase 1.0736412095e-05 5.84563935484e-05 4.77199814534e-05 +UniRef50_F3T921 DoxX family protein 0.000302989164364 0.000487523180539 0.000184534016175 +UniRef50_E0Y1Z2 0.00633631576555 0.000510634072383 -0.00582568169317 +UniRef50_I1AXI9 Transposase IS4 family protein 6.84369146396e-05 2.55404883603e-05 -4.28964262793e-05 +UniRef50_C3MZM4 Nucleoside diphosphate kinase 1.69572866386e-05 0.000109297174681 9.23398880424e-05 +UniRef50_L1JUV8 6.31120983793e-05 3.80735356896e-05 -2.50385626897e-05 +UniRef50_U2YT78 0.000201741583823 0.000284371308104 8.2629724281e-05 +UniRef50_A9V5N5 Predicted protein 0.000427428881343 6.06545267013e-06 -0.000421363428673 +UniRef50_E6JPP5 Sodium 7.41137412691e-05 0.000115358087973 4.12443467039e-05 +UniRef50_Q1IZ16 Acyl CoA dehydrogenase like protein 0.000101839745189 0.0261731496901 0.0260713099449 +UniRef50_Q8K9X9 NADH quinone oxidoreductase subunit J 5.42235242221e-05 0.000135933735682 8.17102114599e-05 +UniRef50_UPI000467B0DE arginine ABC transporter ATP binding protein 2.41270846872e-05 2.70264831867e-05 2.8993984995e-06 +UniRef50_A3PRL7 ABC transporter related 0.00405176363618 0.000623379548785 -0.0034283840874 +UniRef50_G5SBT2 Respiratory nitrate reductase alpha chain 4.46055850191e-05 4.44199046251e-05 -1.85680394e-07 +UniRef50_Q72HC1 Probable dual specificity RNA methyltransferase RlmN 0.000128106104819 0.0370130584752 0.0368849523704 +UniRef50_UPI000470C939 5 nucleotidase 1.60836945321e-05 8.64254946121e-06 -7.44114507089e-06 +UniRef50_UPI00045EBAFF hypothetical protein 1.49409141998e-05 8.8222923673e-06 -6.1186218325e-06 +UniRef50_C5N3B0 0.0221744339752 0.00814028246988 -0.0140341515053 +UniRef50_O43414 ERI1 exoribonuclease 3 1.31640634156e-05 0.000200911759369 0.000187747695953 +UniRef50_P37049 Phosphodiesterase YaeI 0.00221819713783 0.00202961135234 -0.00018858578549 +UniRef50_D8JDR3 NADH 0.000678474817046 0.0216023908292 0.0209239160122 +UniRef50_V9TSS5 Thymidylate synthase 0.000106449664279 2.51028653802e-05 -8.13467988988e-05 +UniRef50_UPI0004401CD8 PREDICTED 4.38379304258e-06 8.78184286181e-06 4.39804981923e-06 +UniRef50_B1HZV3 HTH type transcriptional regulator 0.00755730833363 0.000470000061318 -0.00708730827231 +UniRef50_Q5ZVR0 Histidine ammonia lyase 5.94715228461e-06 1.35496058943e-05 7.60245360969e-06 +UniRef50_R5Y1H5 Cassette chromosome recombinase B 7.16434922814e-05 4.27836966907e-05 -2.88597955907e-05 +UniRef50_B2N3Y4 Transketolase 2 0.00249971598778 0.000571819965561 -0.00192789602222 +UniRef50_UPI0002E7F1BB hypothetical protein 0.000126801541191 4.37895592331e-05 -8.30119819579e-05 +UniRef50_Q6A7E7 Trigger factor 0.000322508423853 0.00671194017356 0.00638943174971 +UniRef50_UPI00046F5CB6 hypothetical protein 4.45340343316e-06 8.18667704286e-06 3.7332736097e-06 +UniRef50_P45059 Peptidoglycan synthase FtsI 3.90992342407e-06 7.03408016436e-06 3.12415674029e-06 +UniRef50_UPI00034B1305 MULTISPECIES 3.77718131373e-05 0.0042946509886 0.00425687917546 +UniRef50_UPI0002193AE6 excinuclease ABC subunit A 2.09848798857e-05 3.37778503435e-05 1.27929704578e-05 +UniRef50_G8VI88 Molybdopterin guanine dinucleotide biosynthesis protein A 3.04687093507e-05 0.00556136170989 0.00553089300054 +UniRef50_F0RNI0 DEAD DEAH box helicase domain protein 0.000202104336689 0.00869243819248 0.00849033385579 +UniRef50_UPI00035D0365 hypothetical protein 0.000918423020553 0.00018077021033 -0.000737652810223 +UniRef50_F7WRG0 2.51793568383e-05 2.90534813073e-06 -2.22740087076e-05 +UniRef50_Q8T6Z1 Thioredoxin reductase 3.2709694737e-05 1.8004269797e-05 -1.470542494e-05 +UniRef50_Q7MU65 Lipoprotein releasing system ATP binding protein LolD 7.6507873374e-05 5.55574264911e-05 -2.09504468829e-05 +UniRef50_UPI000465AFEA GABA permease 1.93310624153e-05 2.92272062554e-05 9.8961438401e-06 +UniRef50_K0HE29 9.93384181239e-05 0.00808485284325 0.00798551442513 +UniRef50_D3S8T8 Flagellar hook capping protein 8.93857676286e-06 1.23236670352e-05 3.38509027234e-06 +UniRef50_F0PEG3 Maltose Maltotriose maltodextrin ABC transporter, MalX subunit 7.76010824086e-06 0.000344508200748 0.000336748092507 +UniRef50_D3QGU6 Cystathionine gamma lyase 0.0115934488544 0.00175972216375 -0.00983372669065 +UniRef50_Q32FA3 0.00025679318969 0.000870703284919 0.000613910095229 +UniRef50_Q9RVF4 0.000327401032446 0.00984087094509 0.00951346991264 +UniRef50_G8V619 HMGL like family protein 0.00972349490448 0.00332747917869 -0.00639601572579 +UniRef50_A6LQC0 0.0102950724232 0.00158337032744 -0.00871170209576 +UniRef50_Q5JGT7 Thymidine kinase 1.54529703237e-05 3.34862514866e-05 1.80332811629e-05 +UniRef50_Q00853 Homocitrate synthase subunit alpha 0.000379517719931 0.000578487596381 0.00019896987645 +UniRef50_Q5HMY5 Accessory gene regulator protein B 0.0071665246348 0.000308156561946 -0.00685836807285 +UniRef50_UPI00036F3EF0 hypothetical protein 7.58243675421e-05 8.32581504958e-05 7.4337829537e-06 +UniRef50_Q9I509 NADH dehydrogenase (quinone) 0.000761851590707 0.00831087570182 0.00754902411111 +UniRef50_P97532 3 mercaptopyruvate sulfurtransferase 3.979460334e-05 1.28988716716e-05 -2.68957316684e-05 +UniRef50_UPI00025564EE bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase, partial 7.87835450758e-06 2.4515723399e-05 1.66373688914e-05 +UniRef50_W0YLC7 0.000387510204934 0.000203208475363 -0.000184301729571 +UniRef50_A9IQX3 Single stranded DNA specific exonuclease 0.000507530772989 0.00303570739452 0.00252817662153 +UniRef50_A7ZNH9 UPF0265 protein YeeX 0.000344212147888 0.000102674584023 -0.000241537563865 +UniRef50_J3RWH0 WbhQ 0.00100479921392 0.00114518323135 0.00014038401743 +UniRef50_A9M4D7 Lipoprotein 0.000135786326927 0.00187558179737 0.00173979547044 +UniRef50_A5UNI6 Polysaccharide biosynthesis protein, MviN like family 0.00655439402026 0.00154505000471 -0.00500934401555 +UniRef50_P76016 PTS dependent dihydroxyacetone kinase operon regulatory protein 0.00385106209914 0.000653816933714 -0.00319724516543 +UniRef50_M9TX56 0.000175258571181 1.42422395861e-05 -0.000161016331595 +UniRef50_P53381 Protein mrp homolog 0.000426487092165 0.00170765807063 0.00128117097847 +UniRef50_A6V8Q7 Signal peptidase I 0.00380241208883 0.000357959642661 -0.00344445244617 +UniRef50_Q6MN06 Adenylosuccinate synthetase 1.20895064055e-05 1.29133177616e-05 8.238113561e-07 +UniRef50_Q8Y303 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.12081588883e-05 1.73534510015e-05 -3.8547078868e-06 +UniRef50_V6K8C7 9.3477188766e-05 5.61697358523e-05 -3.73074529137e-05 +UniRef50_A8LJB0 NADH 0.00204417660808 0.00398153074428 0.0019373541362 +UniRef50_UPI000328E67C PREDICTED 7.13449271789e-05 9.99960886291e-05 2.86511614502e-05 +UniRef50_T1DQZ2 0.000189023937943 0.000111658158719 -7.7365779224e-05 +UniRef50_P36999 23S rRNA N(1)) methyltransferase 0.00277424420379 0.00148655894267 -0.00128768526112 +UniRef50_A1VRZ2 LPS biosynthesis protein WbpG 0.00172103585868 0.000157362365106 -0.00156367349357 +UniRef50_P51776 Pyruvate, phosphate dikinase 5.84735500387e-06 1.42729671888e-05 8.42561218493e-06 +UniRef50_UPI000288452E heme peroxidase 7.39790400596e-06 1.70871873412e-06 -5.68918527184e-06 +UniRef50_M4QXM9 Tetraacyldisaccharide 4 kinase 0.00103721523468 0.00725125543768 0.006214040203 +UniRef50_UPI0002625F2D dipeptide transport system permease, partial 1.00642983485e-05 1.64529143729e-05 6.3886160244e-06 +UniRef50_A0A011PAY1 ATP dependent Clp protease ATP binding subunit ClpX 7.35471580755e-06 2.08586526197e-05 1.35039368121e-05 +UniRef50_A7Z4X0 L threonine 3 dehydrogenase 5.45376253231e-05 4.40860151698e-05 -1.04516101533e-05 +UniRef50_B5SL97 Choline dehydrogenase lipoprotein 0.00431846814926 0.00123787649314 -0.00308059165612 +UniRef50_UPI0004216EAC tRNA delta isopentenylpyrophosphate transferase 1.04837980938e-05 1.58579744889e-05 5.3741763951e-06 +UniRef50_Q8DW27 0.00458769054685 0.00120134029755 -0.0033863502493 +UniRef50_Q5FAC7 Penicillin binding protein 1A 0.000115491267187 0.00302519999064 0.00290970872345 +UniRef50_Q24751 ATP synthase subunit beta, mitochondrial 2.44156839332e-05 2.34600763429e-05 -9.556075903e-07 +UniRef50_UPI00047ECC3E 4 alpha glucanotransferase 1.15540305867e-05 0.000633452529062 0.000621898498475 +UniRef50_F4WQV6 U6 snRNA associated Sm like protein LSm6 6.6654913799e-06 7.1168373848e-06 4.513460049e-07 +UniRef50_A0B2R8 1.54204126213e-05 0.000968628250913 0.000953207838292 +UniRef50_R7WKM5 9.54483149226e-05 4.42265085189e-05 -5.12218064037e-05 +UniRef50_V8G079 0.000194546412126 0.0011885662969 0.000994019884774 +UniRef50_T3G6D1 Bacterial regulatory s, gntR family protein 0.00017132495712 0.00168080571582 0.0015094807587 +UniRef50_A3QD88 Leucyl phenylalanyl tRNA protein transferase 9.254905805e-06 5.76925125987e-05 4.84376067937e-05 +UniRef50_Q8CMQ4 NADPH dependent oxidoreductase 0.0316362653507 0.00534895192664 -0.0262873134241 +UniRef50_B7V2Q5 Thymidylate synthase 0.00216837010033 0.00308090504584 0.00091253494551 +UniRef50_UPI000476F303 transcriptional regulator 4.36391684813e-05 0.000144916941397 0.000101277772916 +UniRef50_Q9RZ67 0.00162969107833 0.045601538748 0.0439718476697 +UniRef50_UPI0002194D92 SSU ribosomal protein S1P 4.73045478222e-05 0.000284983197772 0.00023767864995 +UniRef50_G7M597 Peptidase M56 BlaR1 6.72480977733e-05 0.000956863553371 0.000889615455598 +UniRef50_UPI0003B6979D thioredoxin reductase 1.56655545743e-05 7.93480484476e-06 -7.73074972954e-06 +UniRef50_Q0SRR9 Polysaccharide deacetylase family protein 0.000148811822151 0.00079108261465 0.000642270792499 +UniRef50_A0A024C6Z7 HrgA like protein 0.000374279108692 0.00338853478266 0.00301425567397 +UniRef50_UPI0003B569E4 hypothetical protein 2.32953878291e-05 7.41844540488e-06 -1.58769424242e-05 +UniRef50_J0NAX3 Glucose 6 phosphate 1 dehydrogenase 0.00293462497108 0.000801764810481 -0.0021328601606 +UniRef50_UPI00047D6EDF fasciclin 5.45626444904e-05 1.69978680831e-05 -3.75647764073e-05 +UniRef50_P15567 Phosphoribosylaminoimidazole carboxylase 2.68727365352e-05 2.42878655697e-05 -2.5848709655e-06 +UniRef50_Q6AJM7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.13908644359e-05 3.33120995991e-05 1.19212351632e-05 +UniRef50_UPI000470F989 argininosuccinate lyase 4.38501341778e-05 2.55665682688e-05 -1.8283565909e-05 +UniRef50_A0A024KA53 Auxin binding protein, putative 0.000198139791579 8.23669582666e-05 -0.000115772833312 +UniRef50_G4CKE5 YjbE family integral membrane protein 1.05698215261e-05 1.44526983295e-05 3.8828768034e-06 +UniRef50_A4FE07 0.000110210020356 0.000244063392719 0.000133853372363 +UniRef50_C1MUY0 Predicted protein 5.83548789303e-05 8.08825747708e-05 2.25276958405e-05 +UniRef50_I1QZW6 2.32345039331e-05 3.18141933328e-05 8.5796893997e-06 +UniRef50_A3PL14 Regulatory protein, PpaA 0.00286739884442 0.000231016979293 -0.00263638186513 +UniRef50_UPI000361C323 hypothetical protein 2.47260219103e-05 6.4747931102e-05 4.00219091917e-05 +UniRef50_O67258 Lysine tRNA ligase 2.70904922119e-06 3.06091537182e-06 3.5186615063e-07 +UniRef50_X0U279 Marine sediment metagenome DNA, contig 5.45576066492e-06 5.34497397728e-05 4.79939791079e-05 +UniRef50_O83833 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.61499445359e-05 1.58240461965e-05 -1.03258983394e-05 +UniRef50_D3E1H7 DNA polymerase II small subunit 0.00247488635045 0.00025035956941 -0.00222452678104 +UniRef50_X7FC77 Flagellar protein FlgJ 0.000157369054181 8.7725751042e-05 -6.9643303139e-05 +UniRef50_P07771 Benzoate 1,2 dioxygenase electron transfer component 0.000234949785595 0.00717333129157 0.00693838150598 +UniRef50_E0TD47 0.000162033811619 2.40515488838e-05 -0.000137982262735 +UniRef50_B2TQ92 Ser Thr protein phosphatase family protein 0.000221183196593 0.000778459318204 0.000557276121611 +UniRef50_E3HVR7 Aspartate aminotransferase 9.58897516131e-05 0.000762006286372 0.000666116534759 +UniRef50_A1B2A8 0.000491432385076 3.37332386089e-05 -0.000457699146467 +UniRef50_UPI0004688DE5 hypothetical protein 0.000137706740517 4.10380736337e-05 -9.66686668833e-05 +UniRef50_UPI00045E7101 hypothetical protein 9.325894329e-05 1.80681130102e-05 -7.51908302798e-05 +UniRef50_UPI00046779A8 UGMP family protein 4.95734977632e-06 8.66876355568e-06 3.71141377936e-06 +UniRef50_W7W844 0.00025135219425 0.000219192199981 -3.2159994269e-05 +UniRef50_UPI00047A6C43 hypothetical protein, partial 5.06747060277e-05 9.53815124139e-06 -4.11365547863e-05 +UniRef50_A6LPV7 Tetratricopeptide TPR_2 repeat protein 0.000390547980192 0.000346369534932 -4.417844526e-05 +UniRef50_R6IK84 Lipoprotein 1.93685426405e-05 2.1724875461e-05 2.3563328205e-06 +UniRef50_UPI00046A2248 integrase 0.00194862242842 0.000870903832291 -0.00107771859613 +UniRef50_N1U5S5 Winged helix turn helix 7.22168025357e-05 0.00128248186273 0.00121026506019 +UniRef50_C3K6N0 Succinyl CoA ligase [ADP forming] subunit beta 0.00201538613998 0.00263212067666 0.00061673453668 +UniRef50_I6TXK4 Prephenate dehydrogenase 0.00381289350851 0.00416541324067 0.00035251973216 +UniRef50_UPI00041D4010 hypothetical protein 3.18315926619e-05 1.6129962716e-05 -1.57016299459e-05 +UniRef50_UPI00037D201C hypothetical protein 1.09445413241e-05 0.000369322158221 0.000358377616897 +UniRef50_M5RF68 Glutamate binding periplasmic protein 0.000269567345224 7.92089737881e-05 -0.000190358371436 +UniRef50_Q7N0A6 Isopentenyl diphosphate Delta isomerase 2 5.15215713675e-05 9.63827124133e-06 -4.18833001262e-05 +UniRef50_Q8X4L9 Ribosomal large subunit pseudouridine synthase F 0.00252454833992 0.000231923123861 -0.00229262521606 +UniRef50_D8JG12 Copper resistance protein A 0.000524241950828 0.00883711014326 0.00831286819243 +UniRef50_UPI000366B651 hypothetical protein 1.45759240617e-05 5.53260661999e-06 -9.04331744171e-06 +UniRef50_Q3BZD0 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.48859370868e-06 1.06587181173e-05 3.17012440862e-06 +UniRef50_Q8DJY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.8322802131e-06 4.00790791106e-06 -5.82437230204e-06 +UniRef50_UPI00034D05EE hypothetical protein 0.000163833346204 7.55068960341e-05 -8.83264501699e-05 +UniRef50_L0A753 PRPP binding protein, adenine guanine phosphoribosyltransferase 0.00138104630068 0.0188960615746 0.0175150152739 +UniRef50_G0D380 5.76774076497e-05 1.30380961276e-05 -4.46393115221e-05 +UniRef50_P77268 Probable D,D dipeptide transport ATP binding protein DdpD 0.00196116113863 0.00169090038935 -0.00027026074928 +UniRef50_P61614 LexA repressor 0.00157319010669 0.00131885519435 -0.00025433491234 +UniRef50_UPI0002653AC6 PREDICTED 2.74726729261e-05 1.46052986122e-05 -1.28673743139e-05 +UniRef50_K9ZKB4 SNARE associated Golgi family protein 0.00114536214939 0.0374541272953 0.0363087651459 +UniRef50_UPI000413BC23 hypothetical protein 0.000383890031311 0.000533581829112 0.000149691797801 +UniRef50_F0K2U2 Phosphate starvation inducible protein family 0.000127099659549 0.00438062943966 0.00425352978011 +UniRef50_UPI00040DC67E hypothetical protein 1.46794670038e-05 4.15109483206e-05 2.68314813168e-05 +UniRef50_A6TUT9 Membrane spanning protein 0.000177223468942 0.00140837775611 0.00123115428717 +UniRef50_T1A735 UDP N acetylglucosamine pyrophosphorylase 1.00855106338e-05 1.361318171e-05 3.5276710762e-06 +UniRef50_Q5HPS0 tRNA pseudouridine synthase B 0.0155060684356 0.00275916333653 -0.0127469050991 +UniRef50_W5XJD4 Translation initiation factor IF 2 8.51931272736e-06 1.20923669355e-05 3.57305420814e-06 +UniRef50_A5UL38 Ribonuclease P protein component 4 0.000311971891609 0.00150249699774 0.00119052510613 +UniRef50_UPI0002491B34 amino acid 0.000128136857337 0.000118720032609 -9.416824728e-06 +UniRef50_UPI000368B66A hypothetical protein 2.95170288089e-06 9.76114674597e-06 6.80944386508e-06 +UniRef50_P11460 Ferric anguibactin binding protein 0.000303826063881 0.00590062806842 0.00559680200454 +UniRef50_P19906 Nitrogen regulation protein NtrB 1.62978715283e-05 2.34660104544e-05 7.1681389261e-06 +UniRef50_B5XYC7 Isocitrate dehydrogenase kinase phosphatase 0.000992593992974 0.000330575863979 -0.000662018128995 +UniRef50_A5EV79 Dihydroorotate dehydrogenase 9.47349283038e-06 1.63944322388e-05 6.92093940842e-06 +UniRef50_B9J9J5 0.00458344520386 0.00315692339651 -0.00142652180735 +UniRef50_G7M6P0 0.000286995034155 0.00159784731786 0.0013108522837 +UniRef50_A6L1E7 Thymidine kinase 2.01187252421e-05 0.00124542289424 0.001225304169 +UniRef50_C1D5X5 Protein export membrane protein SecF 0.000423496731925 0.00479101777982 0.00436752104789 +UniRef50_S5YUZ3 Homoserine dehydrogenase 0.00115924945427 0.000622501869013 -0.000536747585257 +UniRef50_R9P548 Glycoside hydrolase 0.000136734263788 0.0011051466973 0.000968412433512 +UniRef50_D0K2M7 0.0226619215243 0.000476317266442 -0.0221856042579 +UniRef50_P32057 Putative colanic acid biosynthesis glycosyl transferase WcaI 0.00343250562133 0.000472761530975 -0.00295974409035 +UniRef50_F1VXE0 Structural constituent of cell wall 1.98840147218e-05 7.41527650307e-06 -1.24687382187e-05 +UniRef50_V5UK09 Formate dehydrogenase subunit beta 0.00210430502271 0.000550945453515 -0.00155335956919 +UniRef50_X1RXD5 Marine sediment metagenome DNA, contig 6.51937653887e-05 0.00010577378169 4.05800163013e-05 +UniRef50_UPI000465978A hypothetical protein 4.09615569275e-05 6.62596708413e-06 -3.43355898434e-05 +UniRef50_S1SMM7 0.000147087991781 0.000110175365929 -3.6912625852e-05 +UniRef50_B5YZ54 0.000820621714897 3.62156086568e-05 -0.00078440610624 +UniRef50_Q7TUK9 Glutathione synthetase 4.65311950741e-06 8.40970938525e-06 3.75658987784e-06 +UniRef50_UPI000377FA81 hypothetical protein 3.48602426756e-05 1.49144849256e-05 -1.994575775e-05 +UniRef50_A2D765 1.1771103176e-05 2.49951883145e-05 1.32240851385e-05 +UniRef50_G3VCD6 3.2992866078e-05 3.27425355059e-05 -2.503305721e-07 +UniRef50_N0C6M2 Integrase recombinase, phage associated protein 0.000597651544228 0.000358018986097 -0.000239632558131 +UniRef50_Q4L884 Energy coupling factor transporter ATP binding protein EcfA2 0.00739544804854 0.000901613223168 -0.00649383482537 +UniRef50_K0YRV5 7.24120891139e-06 4.44751703172e-05 3.72339614058e-05 +UniRef50_P26277 Chlorophyllide reductase subunit Z 0.00968912381287 0.00337752784376 -0.00631159596911 +UniRef50_UPI00028A2E90 glycoside hydrolase family 3 domain containing protein 4.31965219746e-06 2.00158425337e-05 1.56961903362e-05 +UniRef50_A6WZN8 Glycoside hydrolase family 25 0.00407202681989 0.000536159497837 -0.00353586732205 +UniRef50_A6V3Q5 Major facilitator superfamily MFS_1 0.000522225000813 0.000130191052996 -0.000392033947817 +UniRef50_A4XKS9 Bifunctional protein PyrR 0.0116595986579 0.00311958449445 -0.00854001416345 +UniRef50_UPI00046FC8FA 5 hydroxymethyluracil DNA glycosylase 6.85011326164e-06 0.000101781477911 9.49313646494e-05 +UniRef50_Q1RKI0 Transcription elongation factor GreA 0.0038920506607 0.00355890695659 -0.00033314370411 +UniRef50_X7FDX5 0.000151899243654 7.5198281885e-05 -7.6700961769e-05 +UniRef50_B9DNY9 Peptide methionine sulfoxide reductase MsrB 2.70405509402e-05 9.72982012043e-05 7.02576502641e-05 +UniRef50_P0A0Q1 0.00953817216138 0.00458823744912 -0.00494993471226 +UniRef50_B0V512 0.000177779900556 0.00424091626018 0.00406313635962 +UniRef50_R7PVB1 Formate dehydrogenase alpha subunit FdhA 0.00380454465566 0.00162457344837 -0.00217997120729 +UniRef50_F0YC19 4.75003182884e-05 5.83417328566e-05 1.08414145682e-05 +UniRef50_UPI00036B39EC hypothetical protein 6.81075721039e-06 0.000387313116175 0.000380502358965 +UniRef50_F3N0H6 TPR repeats containing protein 1.72560709512e-05 2.48489921398e-05 7.5929211886e-06 +UniRef50_A0A024HEL1 0.00128419923616 0.000359581890218 -0.000924617345942 +UniRef50_Q4JT56 30S ribosomal protein S17 0.0199426560148 0.0182401494385 -0.0017025065763 +UniRef50_UPI0004707041 flagellar motor protein MotA 3.84695688012e-05 0.00010844084613 6.99712773288e-05 +UniRef50_P15005 5 methylcytosine specific restriction enzyme B 0.00301289823091 0.000429364413392 -0.00258353381752 +UniRef50_K2JGI2 4.0016631271e-05 1.1436053566e-05 -2.8580577705e-05 +UniRef50_UPI0003B70013 phytoene dehydrogenase 1.07987814814e-05 8.63453572346e-06 -2.16424575794e-06 +UniRef50_P37769 2 dehydro 3 deoxy D gluconate 5 dehydrogenase 0.00430956673109 0.00234193606269 -0.0019676306684 +UniRef50_M4R3K2 0.000292852633973 0.00641654026862 0.00612368763465 +UniRef50_G3XD01 UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase 0.00290533867476 8.04837182746e-05 -0.00282485495649 +UniRef50_K0JWH3 Putative membrane protein 8.5362456375e-05 8.78827532743e-05 2.5202968993e-06 +UniRef50_A8IMX0 Ribonuclease VapC 0.00396939063587 0.0165862952757 0.0126169046398 +UniRef50_I1PF78 0.000152416953778 2.73265051256e-06 -0.000149684303265 +UniRef50_UPI000466F096 hypothetical protein 0.00115780608925 0.000203956712401 -0.000953849376849 +UniRef50_B7LNV2 Alkanesulfonate monooxygenase 0.00162112557046 0.000780887635834 -0.000840237934626 +UniRef50_D0J2L9 Transcriptional regulator, LysR family 0.000120218467792 0.000223161238178 0.000102942770386 +UniRef50_F5M0P1 Gifsy 1 prophage protein 0.0114219327633 0.00480379288109 -0.00661813988221 +UniRef50_UPI00037B280F lysyl tRNA synthetase 6.98866724026e-06 9.08185225577e-06 2.09318501551e-06 +UniRef50_UPI0003754233 hypothetical protein 0.000120140696659 6.05602076369e-05 -5.95804890221e-05 +UniRef50_Q03G75 tRNA dimethylallyltransferase 2.57213951039e-05 9.49414686105e-06 -1.62272482429e-05 +UniRef50_P59588 Lysophospholipase L2 0.0029489420786 0.0021366537172 -0.0008122883614 +UniRef50_T1C6H9 Acyl CoA dehydrogenase domain containing protein 0.000875520798991 0.000886758559896 1.1237760905e-05 +UniRef50_UPI00047960F2 PTS mannose transporter subunit IID 1.02498666254e-05 4.00148300791e-05 2.97649634537e-05 +UniRef50_P26381 Fructose permease IIC component 0.0026701964215 0.00192592937028 -0.00074426705122 +UniRef50_B2TLW3 Flagellar biosynthetic protein FliR FlhB 0.000481169260526 0.000750222775946 0.00026905351542 +UniRef50_UPI0004720299 hypothetical protein 2.94636820662e-05 3.22703334321e-05 2.8066513659e-06 +UniRef50_D5ZRU0 Predicted protein 0.000161311165684 0.00017522198666 1.3910820976e-05 +UniRef50_UPI0003605DC7 hypothetical protein 9.87806786005e-05 2.03280359034e-05 -7.84526426971e-05 +UniRef50_W6RN06 0.000333507365367 7.5307103758e-05 -0.000258200261609 +UniRef50_UPI00047B8AE5 acetylornithine aminotransferase 1.99972552186e-05 2.84572483613e-05 8.4599931427e-06 +UniRef50_B4RRC4 7.59020084865e-05 0.00302427920053 0.00294837719204 +UniRef50_X0ZZA4 Marine sediment metagenome DNA, contig 4.01387658661e-05 2.89942342969e-05 -1.11445315692e-05 +UniRef50_P62087 0.0327288898215 0.00128509363861 -0.0314437961829 +UniRef50_A8AZX9 0.00840303727242 0.00232336340322 -0.0060796738692 +UniRef50_UPI0002E4B515 hypothetical protein 2.94503811662e-06 8.86958468569e-06 5.92454656907e-06 +UniRef50_UPI00036DD363 hypothetical protein 7.38496337481e-06 4.74455424024e-06 -2.64040913457e-06 +UniRef50_B3CLB3 Lon protease 6.08164819071e-06 3.09102364229e-06 -2.99062454842e-06 +UniRef50_P32719 D allulose 6 phosphate 3 epimerase 0.00324611413719 0.000435356322155 -0.00281075781503 +UniRef50_Q4A0X5 Probable transglycosylase SceD 1 0.031396573588 0.00806031017998 -0.023336263408 +UniRef50_U5MQS6 0.000203157967427 0.00028647152185 8.3313554423e-05 +UniRef50_D9SWT2 Peptidase S8 and S53 subtilisin kexin sedolisin 0.00126380276027 0.00338026991817 0.0021164671579 +UniRef50_F3U1Z7 0.000750245327852 0.00022745116196 -0.000522794165892 +UniRef50_T2E5I8 Aminotransferase 0.000618819791379 0.000725770298117 0.000106950506738 +UniRef50_B1N6N5 0.000175882948698 9.98160252925e-05 -7.60669234055e-05 +UniRef50_E3NW25 2.33661547537e-05 0.000119457122285 9.60909675313e-05 +UniRef50_UPI00047D9B65 diaminopimelate decarboxylase 4.09545332192e-06 1.92779447645e-05 1.51824914426e-05 +UniRef50_W8S2N5 Transamidase GatB domain protein 0.00544791810618 0.000777149224201 -0.00467076888198 +UniRef50_UPI0004762BB1 hypothetical protein 7.65220972952e-06 1.17290669309e-05 4.07685720138e-06 +UniRef50_UPI00035C4CBC hypothetical protein 1.21541344001e-05 1.28816090754e-05 7.274746753e-07 +UniRef50_B8ET52 Major facilitator superfamily MFS_1 0.000335604557333 0.00706067967682 0.00672507511949 +UniRef50_X2MTV9 ABC transporter ATP binding protein 0.000181672056531 0.000194429484835 1.2757428304e-05 +UniRef50_P45543 Fructoselysine kinase 0.00466679239644 0.00100465188097 -0.00366214051547 +UniRef50_P36634 Peptide transport periplasmic protein SapA 0.00370878016206 0.00146986070418 -0.00223891945788 +UniRef50_F0PCZ7 Purine catabolism regulatory protein family protein 3.29575012276e-06 0.000668192687577 0.000664896937454 +UniRef50_W8H188 0.0164734291377 0.00325138839181 -0.0132220407459 +UniRef50_A0A024H2L6 0.000732171040279 0.0033313356393 0.00259916459902 +UniRef50_A5UNJ9 ADP ribosylglycohydrolase 0.00232805861492 0.000429073490513 -0.00189898512441 +UniRef50_O67589 Aspartate tRNA ligase 4.30621813173e-06 8.59134643497e-06 4.28512830324e-06 +UniRef50_B7N653 Succinyl diaminopimelate desuccinylase 0.00363875712286 0.000874884065336 -0.00276387305752 +UniRef50_H0AAM1 FeS assembly ATPase SufC 2.87776688251e-05 0.000160934711767 0.000132157042942 +UniRef50_Q59787 Sorbitol dehydrogenase 0.00250653198203 0.000893052862394 -0.00161347911964 +UniRef50_D0UZ77 PCQ3_28 4.15623592636e-05 5.39601139639e-05 1.23977547003e-05 +UniRef50_V1SPC6 Pheromone autoinducer 2 transporter 8.5909099192e-05 5.99226595592e-05 -2.59864396328e-05 +UniRef50_UPI000478598D hypothetical protein 7.10373662491e-05 6.73410119392e-06 -6.43032650552e-05 +UniRef50_Q74JW2 Peptide deformylase 2.41731385704e-05 2.23474274156e-05 -1.8257111548e-06 +UniRef50_F2E297 Predicted protein 4.86956681008e-05 0.000523252489599 0.000474556821498 +UniRef50_UPI0004752275 hypothetical protein 0.00114028249723 0.000459041510662 -0.000681240986568 +UniRef50_C6EBU6 Protein phosphatase CheZ 0.000723433061809 0.000678888977457 -4.4544084352e-05 +UniRef50_A4WNW7 IS66 Orf2 family protein 0.0070523954477 0.000780792468577 -0.00627160297912 +UniRef50_A7Z5S1 Peptide methionine sulfoxide reductase MsrB 1.56517462426e-05 6.19181240749e-05 4.62663778323e-05 +UniRef50_R5XIL5 Lactate dehydrogenase and related dehydrogenases 0.00022248683036 0.00216256098738 0.00194007415702 +UniRef50_Q1QYW1 NADH 0.000455243224798 0.000482544212137 2.7300987339e-05 +UniRef50_UPI000463660C enolase 0.000280812897045 0.000497759078396 0.000216946181351 +UniRef50_UPI000376E944 hypothetical protein 0.00043877914092 6.63507474169e-05 -0.000372428393503 +UniRef50_Q98DS8 Mll4564 protein 0.00676823217318 0.00112745575856 -0.00564077641462 +UniRef50_R4K6M8 Glucose inhibited division protein A 0.00171984288714 0.00242275307553 0.00070291018839 +UniRef50_B3CL83 Adenylosuccinate synthetase 1.93766977761e-05 1.48099357066e-05 -4.5667620695e-06 +UniRef50_A4SQR5 Short chain dehydrogenase reductase 0.000982568100816 0.000224860435429 -0.000757707665387 +UniRef50_UPI0003695FD7 D alanyl D alanine carboxypeptidase, partial 2.36203726778e-05 0.000104757275838 8.11369031602e-05 +UniRef50_O34113 LctF 0.00581812747746 0.000846471370218 -0.00497165610724 +UniRef50_S4P7C3 8.85163895114e-05 0.000308156561946 0.000219640172435 +UniRef50_UPI00036089CB hypothetical protein 1.6381062638e-05 3.2229661057e-05 1.5848598419e-05 +UniRef50_Q03075 Cbb3 type cytochrome c oxidase subunit FixP 5.14392962691e-05 3.31098721828e-05 -1.83294240863e-05 +UniRef50_UPI0003658182 hypothetical protein, partial 2.41254644682e-05 1.50789038183e-05 -9.0465606499e-06 +UniRef50_UPI0004674DF5 amino acid permease 1.33139121903e-05 6.32123518271e-05 4.98984396368e-05 +UniRef50_L1K8T7 0.00378891467489 0.00226151214981 -0.00152740252508 +UniRef50_Q9RUV1 0.000517104094322 0.0242074170036 0.0236903129093 +UniRef50_Q3J2V7 Cysteine tRNA ligase 0.013321024907 0.00366749135977 -0.00965353354723 +UniRef50_Q7UDG1 IS150 orfB 2.15112910013e-05 3.79095398557e-05 1.63982488544e-05 +UniRef50_UPI00047119E7 hypothetical protein 1.3482816269e-05 1.72602988575e-05 3.7774825885e-06 +UniRef50_U5P9Q9 PTS sorbitol transporter subunit IIB 0.00455599138761 0.00137658153812 -0.00317940984949 +UniRef50_UPI000377D2DD hypothetical protein 1.32659532636e-06 1.58533270959e-06 2.5873738323e-07 +UniRef50_P76015 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 0.00222489802156 0.00126748420619 -0.00095741381537 +UniRef50_UPI00037EA2E6 50S ribosomal protein L22 2.44714247261e-05 0.000485340727426 0.0004608693027 +UniRef50_M4RZJ4 0.00805921539269 0.00283257047125 -0.00522664492144 +UniRef50_Q9K1M2 Putative outer membrane protein NMB0088 0.000182584478593 0.0042871878156 0.00410460333701 +UniRef50_E3GXS5 0.00207712611303 0.000461491420949 -0.00161563469208 +UniRef50_Q2YY67 L threonine dehydratase catabolic TdcB 0.00955045652567 0.00271362620379 -0.00683683032188 +UniRef50_A6LZV8 Glycoside hydrolase, family 3 domain protein 0.000108375534935 0.0012283847382 0.00112000920327 +UniRef50_Q4V182 L carnitine dehydrogenase 0.0101480539402 0.00356905336446 -0.00657900057574 +UniRef50_Q0TTK8 ATP dependent zinc metalloprotease FtsH 0.00018612263233 0.00126585669549 0.00107973406316 +UniRef50_Q493R1 3 isopropylmalate dehydrogenase 4.7371828611e-05 5.00492365676e-06 -4.23669049542e-05 +UniRef50_I1P669 0.00101280628442 0.000336931000897 -0.000675875283523 +UniRef50_Q97PA9 Serine threonine protein kinase StkP 0.00696820233415 0.00270429604159 -0.00426390629256 +UniRef50_Q601J1 30S ribosomal protein S13 0.000496692090597 0.000584785554841 8.8093464244e-05 +UniRef50_P08967 Phosphoglycerate kinase, glycosomal 1.06910205071e-05 7.47959375274e-06 -3.21142675436e-06 +UniRef50_O62584 Thymidylate synthase 1 2 2.9258513422e-05 0.000205602591933 0.000176344078511 +UniRef50_S5CQF3 0.000399553315002 0.00715075457254 0.00675120125754 +UniRef50_A7MER9 Outer membrane lipoprotein carrier protein 0.00202636880284 0.000368378426439 -0.0016579903764 +UniRef50_A6TF99 Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase 0.00210514683691 0.000472480396285 -0.00163266644063 +UniRef50_B2GGG9 Serine tRNA ligase 0.000512995877055 0.0122645969753 0.0117516010982 +UniRef50_A0A023RZA8 Membrane protein 0.000190433602957 0.00864352207243 0.00845308846947 +UniRef50_Q8X4V6 0.00179725305493 0.000337282909284 -0.00145997014565 +UniRef50_P0ABG6 Lipid II flippase FtsW 0.00235333090038 0.000385869110511 -0.00196746178987 +UniRef50_Q5HP96 UPF0398 protein SERP1017 0.0267946354678 0.00399158954331 -0.0228030459245 +UniRef50_A3PIJ2 0.0159060543423 0.00940274233268 -0.00650331200962 +UniRef50_UPI00047E8C89 hypothetical protein 0.000102988680736 1.14711632553e-05 -9.15175174807e-05 +UniRef50_R5IVN1 0.000755024440023 0.0012043787995 0.000449354359477 +UniRef50_U5MNN1 ABC transporter permease protein YtlD 0.0007072841997 0.00129521100198 0.00058792680228 +UniRef50_Q0TLV3 Carnitinyl CoA dehydratase 0.00279965172778 0.000997654519112 -0.00180199720867 +UniRef50_UPI0003B62712 dihydropteroate synthase 9.18529581076e-06 9.25593165488e-06 7.063584412e-08 +UniRef50_P36204 Bifunctional PGK TIM 2.72064941961e-05 5.97239697416e-05 3.25174755455e-05 +UniRef50_Q040Z6 PTS system IIC component, Glc family PTS system IIA component, Glc family PTS system IIB component, Glc family 7.77253237152e-05 0.0058361120881 0.00575838676438 +UniRef50_UPI0003791F03 hypothetical protein 3.72904934968e-05 4.38467538158e-05 6.556260319e-06 +UniRef50_E2XKU2 Amino acid ABC transporter, permease protein 0.000189691451679 0.000306027673785 0.000116336222106 +UniRef50_Q9HYZ2 0.000935915674838 0.000412069821193 -0.000523845853645 +UniRef50_UPI00035E2D1C hypothetical protein, partial 0.000140661884157 9.18979706105e-05 -4.87639135465e-05 +UniRef50_J3X3P8 9.61872981717e-06 0.00185844440888 0.00184882567906 +UniRef50_B4RBF7 Shikimate dehydrogenase 7.14829064464e-06 3.51008448781e-05 2.79525542335e-05 +UniRef50_Q1QDQ1 DNA polymerase I 0.000126294524063 0.00652444139612 0.00639814687206 +UniRef50_UPI000237E1F7 glutathione S transferase domain containing protein 0.000189719968907 0.00015044558316 -3.9274385747e-05 +UniRef50_Q9RZD1 0.000181785552974 0.0390509033601 0.0388691178071 +UniRef50_UPI000368F5E5 hypothetical protein 3.621121288e-05 0.000361975321753 0.000325764108873 +UniRef50_UPI0003B79537 ArsR family transcriptional regulator 0.000298520184878 0.000650198267348 0.00035167808247 +UniRef50_A5V938 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.00359135230845 0.00282243281589 -0.00076891949256 +UniRef50_W6I678 ThiJ PfpI family protein 0.000309414744966 0.00473497887393 0.00442556412896 +UniRef50_X2HDH4 Prolyl endopeptidase 0.000192831070286 0.00297778804545 0.00278495697516 +UniRef50_UPI00037D6405 hypothetical protein 8.09772237406e-06 0.000606515826502 0.000598418104128 +UniRef50_UPI0000557872 hemolysin E 1.85850226055e-05 0.000126798194406 0.0001082131718 +UniRef50_P09432 Nitrogen regulation protein NtrC 0.00238181079388 0.000129524870691 -0.00225228592319 +UniRef50_D5AL29 Two component response regulator receiver protein 0.0084743438328 0.00154412879824 -0.00693021503456 +UniRef50_UPI00036494B1 hypothetical protein 1.14520053082e-05 1.33906661955e-05 1.9386608873e-06 +UniRef50_Q052H7 Phosphoglycerate kinase 4.16179339248e-05 8.1299334423e-05 3.96814004982e-05 +UniRef50_UPI0003EABFC2 PREDICTED 7.10896622294e-06 1.53219417471e-05 8.21297552416e-06 +UniRef50_Q9RSL1 30S ribosomal protein S5 0.00104045668665 0.0333469280332 0.0323064713466 +UniRef50_K1UC05 Protein containing DUF939, bacterial 0.000269290506802 0.000769210317071 0.000499919810269 +UniRef50_A4A5I0 Transcriptional regulator, LysR family 0.000115439140317 0.00900198469442 0.0088865455541 +UniRef50_E0SZL8 Transposase like protein, IS1381 ISSpn7 0.000322620719948 0.0125389865674 0.0122163658475 +UniRef50_E4ZDR8 0.000134816424593 0.00165133884099 0.0015165224164 +UniRef50_N1UYX5 Phenol hydroxylase 5.89116420825e-06 0.000155200713376 0.000149309549168 +UniRef50_S9SLF7 Autoinducer binding domain protein 0.00093932713066 0.000191993246635 -0.000747333884025 +UniRef50_D2NRK7 3.3230263015e-06 9.39544695055e-06 6.07242064905e-06 +UniRef50_A0A023RRK9 Threonine transporter 0.000184139506761 0.00828312346459 0.00809898395783 +UniRef50_B8D184 Undecaprenyl phosphate galactose phosphotransferase 0.0178802662006 0.00203197898556 -0.015848287215 +UniRef50_B8GW31 Chromosome partitioning protein ParA 0.00164223749933 0.00270776806683 0.0010655305675 +UniRef50_Q2YX06 Serine protease HtrA like 0.00719860748447 0.00169102115768 -0.00550758632679 +UniRef50_R1DBW6 2.43095049914e-05 0.00220676144991 0.00218245194492 +UniRef50_F0KH23 Leucine responsive regulatory protein 0.000357242260744 0.0157264629202 0.0153692206595 +UniRef50_UPI00037AFA99 hypothetical protein 1.61645342173e-05 2.68569374246e-05 1.06924032073e-05 +UniRef50_F6BRI2 ABC transporter related protein 0.00458187885437 0.00136207816973 -0.00321980068464 +UniRef50_UPI000475B74E thioredoxin 6.44921637278e-05 3.00267419484e-05 -3.44654217794e-05 +UniRef50_UPI0003B651BF hypothetical protein 3.59877954457e-06 1.51365858863e-05 1.15378063417e-05 +UniRef50_E8SGD2 Histidinol phosphate aminotransferase 0.0113688942098 0.00288484775792 -0.00848404645188 +UniRef50_UPI00035E63FD hypothetical protein 2.26884410251e-05 5.66026617906e-05 3.39142207655e-05 +UniRef50_Q6G9C7 0.0569236867706 0.00719891760732 -0.0497247691633 +UniRef50_D7ZSZ7 PAS domain S box protein 0.00125882278881 0.0002365687892 -0.00102225399961 +UniRef50_UPI00036BE173 hypothetical protein 0.000213194056304 0.0166347881054 0.0164215940491 +UniRef50_X0ZMI1 Marine sediment metagenome DNA, contig 1.09933861727e-05 1.37482681765e-05 2.7548820038e-06 +UniRef50_B9TQ51 2.34613584905e-05 2.38969980578e-05 4.356395673e-07 +UniRef50_UPI000361BC07 hypothetical protein 8.18239258705e-06 1.2240346634e-05 4.05795404695e-06 +UniRef50_D4GML0 2.92979205697e-05 0.00016259441306 0.00013329649249 +UniRef50_UPI0003B5D96D isoleucyl tRNA synthase 1.30225950678e-06 9.47509600995e-06 8.17283650317e-06 +UniRef50_P21979 Cell surface antigen I II 0.00168513266848 0.000558986200168 -0.00112614646831 +UniRef50_U6JYK1 1.18503624596e-06 9.5229616426e-05 9.404458018e-05 +UniRef50_UPI000388F8F9 PREDICTED 3.95096325119e-05 3.74273189267e-05 -2.0823135852e-06 +UniRef50_Q83I82 Ribonuclease 3 1.36958573419e-05 3.17529083359e-05 1.8057050994e-05 +UniRef50_A0A010CBA8 Sensory box protein 0.000126314455301 0.00407593419031 0.00394961973501 +UniRef50_UPI00036F9D46 hypothetical protein 0.00128250611703 0.000286046940196 -0.000996459176834 +UniRef50_I3URK7 0.000357242260744 0.000166419186879 -0.000190823073865 +UniRef50_UPI0003840A4F 4.26474190853e-05 2.6737376543e-05 -1.59100425423e-05 +UniRef50_Q046F5 Ribose xylose arabinose galactoside ABC type transport system, permease component 0.00497908598323 0.000711740139129 -0.0042673458441 +UniRef50_UPI00047D7A3C hypothetical protein 4.26630180822e-06 9.73429077711e-05 9.30766059629e-05 +UniRef50_UPI00047EF134 hypothetical protein 1.42436275094e-05 5.48506620011e-06 -8.75856130929e-06 +UniRef50_M0E9W2 ABC transporter 3.71357906449e-05 8.37799471534e-05 4.66441565085e-05 +UniRef50_Q4JX51 Glucose 6 phosphate isomerase 0.000353900328692 0.0586143601304 0.0582604598017 +UniRef50_E0WQQ5 Methionine import ATP binding protein MetN 0.00122423816102 0.00107365529275 -0.00015058286827 +UniRef50_Q02UV9 C4 dicarboxylate transport protein 1 0.00148177567685 0.00648072472859 0.00499894905174 +UniRef50_M4RCM3 Transcriptional regulator, LysR family 0.000135623708568 0.00628328739222 0.00614766368365 +UniRef50_F0K514 PTS cellobiose specific component IIC 0.000591433385354 0.00134115428163 0.000749720896276 +UniRef50_Q1QEI9 Ubiquinone biosynthesis O methyltransferase 0.000834226009116 0.00611269719309 0.00527847118397 +UniRef50_Q8GFF3 Putative PHA synthase 7.85591894568e-05 0.00016609176027 8.75325708132e-05 +UniRef50_P37690 Murein hydrolase activator EnvC 0.00302434250169 0.000771325695306 -0.00225301680638 +UniRef50_E4PQ84 1.2040700253e-05 9.92077130194e-06 -2.11992895106e-06 +UniRef50_J0QIU8 5.85101560969e-05 5.21675004671e-05 -6.3426556298e-06 +UniRef50_A6TEB9 Transcriptional regulator LsrR 0.00175953018171 0.000336223952777 -0.00142330622893 +UniRef50_UPI00047D6083 hypothetical protein 0.000189691451679 0.000727618187069 0.00053792673539 +UniRef50_R9SM88 Cell wall biosynthesis glycosyl transferase GT2 family 0.00168402716208 0.00162444142754 -5.958573454e-05 +UniRef50_A1B0F4 Trigger factor 0.01941329768 0.00572273330803 -0.013690564372 +UniRef50_A5UMS8 Predicted Fe S oxidoreductase 0.00363183121526 0.000271347661734 -0.00336048355353 +UniRef50_Q9KVQ7 DNA recombination protein RmuC homolog 0.00256967020238 0.000729789765887 -0.00183988043649 +UniRef50_UPI0003940AB8 PREDICTED 0.000179755232787 7.60655666265e-05 -0.00010368966616 +UniRef50_A6LVE6 0.000611295128081 0.000166531976621 -0.00044476315146 +UniRef50_UPI00045EBD23 ribonuclease 1.19504333421e-05 6.88081965385e-06 -5.06961368825e-06 +UniRef50_UPI00037A1E81 hypothetical protein 8.87392739883e-06 2.06787931047e-05 1.18048657059e-05 +UniRef50_UPI00034A9AF9 hypothetical protein 3.26363488318e-06 8.04327478279e-07 -2.4593074049e-06 +UniRef50_A0A046SME3 2.96200792677e-05 1.44724594823e-05 -1.51476197854e-05 +UniRef50_F9EX65 4.73639024017e-06 0.000106345959956 0.000101609569716 +UniRef50_UPI0004420089 PREDICTED 6.45264576919e-06 1.31355339313e-05 6.68288816211e-06 +UniRef50_B2TRU1 0.000227401198102 0.000355090226682 0.00012768902858 +UniRef50_UPI0004713B45 molecular chaperone GroEL 1.41056271895e-05 7.91225073426e-06 -6.19337645524e-06 +UniRef50_A3VY81 0.000198337229906 9.01256656242e-05 -0.000108211564282 +UniRef50_UPI0002192600 putative ATP dependent DNA helicase 0.000232984283383 0.000728006461457 0.000495022178074 +UniRef50_Q4FNX4 Argininosuccinate synthase 4.60417650868e-06 0.000115503887791 0.000110899711282 +UniRef50_D7GFL4 Permease 0.000303017887677 0.00422676574533 0.00392374785765 +UniRef50_UPI00047891E2 phytoene desaturase 5.3667327197e-06 7.2543480766e-06 1.8876153569e-06 +UniRef50_A3U7R8 O acetylhomoserine sulfhydrylase 0.00365375674043 0.00106991692891 -0.00258383981152 +UniRef50_UPI0004412677 hypothetical protein DICSQDRAFT_154134 5.55126454158e-05 1.99279368089e-05 -3.55847086069e-05 +UniRef50_Z3FT61 Fructose 1,6 bisphosphatase class 3 0.00921474306472 0.00581094762015 -0.00340379544457 +UniRef50_M7TDD9 1.71223410963e-05 0.000211344316552 0.000194221975456 +UniRef50_UPI00036A8806 hypothetical protein 1.47694365878e-05 1.20058522411e-05 -2.7635843467e-06 +UniRef50_X0VQS5 Marine sediment metagenome DNA, contig 6.85867987582e-06 2.2722108619e-05 1.58634287432e-05 +UniRef50_UPI0003B398BB UDP N acetylglucosamine 1 carboxyvinyltransferase 3.77740652225e-06 5.39125423055e-05 5.01351357833e-05 +UniRef50_P20708 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.68746688471e-05 0.000219307359587 0.00020243269074 +UniRef50_UPI000464E54F MULTISPECIES 4.820905431e-06 0.000130193572939 0.000125372667508 +UniRef50_B1JTI2 Probable chemoreceptor glutamine deamidase CheD 0.000109289381948 2.20349851648e-05 -8.72543967832e-05 +UniRef50_E4BFD9 0.00061631723639 5.80557912342e-05 -0.000558261445156 +UniRef50_UPI000466A1C5 sugar ABC transporter 3.91315781462e-06 2.76754962563e-05 2.37623384417e-05 +UniRef50_F0J4U6 0.0111589484345 0.000773554567154 -0.0103853938673 +UniRef50_P22348 Probable N5 carboxyaminoimidazole ribonucleotide mutase 0.00218475570302 0.000402932550225 -0.00178182315279 +UniRef50_UPI00034A55E9 hypothetical protein 7.05684739646e-05 9.35797057316e-05 2.3011231767e-05 +UniRef50_R4Q3N6 Membrane protein 0.000182123770809 0.00472225207694 0.00454012830613 +UniRef50_UPI0004634E35 hypothetical protein, partial 3.7630948582e-07 1.76644394791e-06 1.39013446209e-06 +UniRef50_Q39189 DEAD box ATP dependent RNA helicase 7 9.34927762685e-07 7.86056544817e-05 7.7670726719e-05 +UniRef50_T0YWI9 Molecular chaperone DnaK 0.000161053846977 6.58745568312e-05 -9.51792901458e-05 +UniRef50_W6K8T3 Putative TRAP_TAXI 0.000114743225202 2.26318262268e-05 -9.21113989752e-05 +UniRef50_A4WWQ1 Lipoprotein signal peptidase 0.00371567398925 0.00272756744012 -0.00098810654913 +UniRef50_Q4L4B4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.39971236081e-05 7.46491246428e-05 4.06520010347e-05 +UniRef50_A4WY58 CobB CobQ domain protein glutamine amidotransferase 0.000246320457081 0.000196877803461 -4.944265362e-05 +UniRef50_D8GTF6 0.000422402401927 0.000260190929686 -0.000162211472241 +UniRef50_A6LQW7 ExsB family protein 0.000373206855759 0.00068955586235 0.000316349006591 +UniRef50_P28297 Isocitrate lyase 4.26335849334e-06 2.36275284275e-05 1.93641699342e-05 +UniRef50_P42597 0.00631196308603 0.000812811340909 -0.00549915174512 +UniRef50_C6STB3 0.0107871716727 0.00206669624854 -0.00872047542416 +UniRef50_P42591 0.00193054519094 0.00320678251048 0.00127623731954 +UniRef50_Q8X7Z7 2,5 diketo D gluconic acid reductase B 0.00313150716317 0.00760622112409 0.00447471396092 +UniRef50_P28629 Biodegradative arginine decarboxylase 0.00409763984274 0.00085685515374 -0.003240784689 +UniRef50_Q12S01 4 hydroxybenzoate octaprenyltransferase 0.0042587374413 0.0011077741925 -0.0031509632488 +UniRef50_P42599 0.004950465828 0.001822522206 -0.003127943622 +UniRef50_O26899 Cobalt precorrin 5B C methyltransferase 0.00260262151464 0.0012322035567 -0.00137041795794 +UniRef50_V5VH70 Phosphatase 5.77897974214e-05 0.00572430436815 0.00566651457073 +UniRef50_Q3AAW2 Homoserine O acetyltransferase 1.08403569238e-05 3.86216739475e-05 2.77813170237e-05 +UniRef50_UPI0003B4A61E DEAD DEAH box helicase 3.38437072626e-05 3.77751647364e-05 3.9314574738e-06 +UniRef50_A0A023XYH0 Chromosome partitioning protein ParB 0.000260335164724 0.00039551344445 0.000135178279726 +UniRef50_Q28TB6 Amino acid ABC transporter membrane protein 2, PAAT family 0.0187706893392 0.00522536824028 -0.0135453210989 +UniRef50_UPI00046853C2 riboflavin synthase subunit alpha 1.67601060698e-05 1.82718435472e-05 1.5117374774e-06 +UniRef50_G9ETY0 1.11146514251e-05 6.48812752766e-06 -4.62652389744e-06 +UniRef50_K2HGL3 0.000243492123435 7.08970167188e-05 -0.000172595106716 +UniRef50_A7ZPD3 tRNA pseudouridine synthase A 0.00290047114457 0.000392013325476 -0.00250845781909 +UniRef50_UPI000288F464 putative sugar permease 5.30496442386e-05 2.92260381479e-05 -2.38236060907e-05 +UniRef50_A6LW08 Signal transduction histidine kinase, LytS 0.000451598522543 0.000149653735742 -0.000301944786801 +UniRef50_UPI00017458E1 hypothetical protein 5.17666048763e-06 0.000215387750992 0.000210211090504 +UniRef50_D0LK45 1.52058451083e-05 1.33784034764e-05 -1.8274416319e-06 +UniRef50_UPI00037DE0EA hypothetical protein 3.35671865527e-05 0.00360582251116 0.00357225532461 +UniRef50_D2G3Z9 FemAB family protein 0.00296593495892 0.00090988641634 -0.00205604854258 +UniRef50_N8EHW1 0.00034027458933 3.87422662346e-05 -0.000301532323095 +UniRef50_UPI000429DAEA LamB YcsF family protein 0.000194408159709 7.36805082408e-05 -0.000120727651468 +UniRef50_Q2S6G3 N acetylmuramic acid 6 phosphate etherase 6.34452877274e-06 1.19211350155e-05 5.57660624276e-06 +UniRef50_U3KRA1 2.01935365818e-05 5.93521871013e-05 3.91586505195e-05 +UniRef50_UPI0004002A98 peroxiredoxin 2.14039525811e-05 0.00146770844706 0.00144630449448 +UniRef50_O26293 Putative glutamine amidotransferase MTH_191 0.00246585552814 0.000631636943427 -0.00183421858471 +UniRef50_M9REL9 0.000120005114013 2.49764231824e-05 -9.50286908306e-05 +UniRef50_UPI000262CE83 molybdopterin biosynthesis protein MoeB 3.08415629599e-05 3.93587812719e-05 8.517218312e-06 +UniRef50_M9R8D3 0.00149498981563 0.000257918519823 -0.00123707129581 +UniRef50_M0XFB3 6.75989933849e-06 4.94023284623e-05 4.26424291238e-05 +UniRef50_Q8DUC6 0.000124417927162 0.000658698970703 0.000534281043541 +UniRef50_N6YKC6 ISPsy6, transposase 0.000202453183491 2.62525826019e-05 -0.000176200600889 +UniRef50_UPI00029CD3E9 cation transport ATPase, partial 3.66033828133e-05 2.00560950748e-05 -1.65472877385e-05 +UniRef50_UPI0003B71BA4 ABC transporter permease, partial 2.95187469514e-05 0.000111775702274 8.22569553226e-05 +UniRef50_O27280 Probable dihydroorotate dehydrogenase B ), electron transfer subunit 0.00327646536977 0.000701064507089 -0.00257540086268 +UniRef50_W0YRK3 Putative thioesterase 7.1434913512e-05 0.000122569586611 5.1134673099e-05 +UniRef50_P50456 Protein mlc 0.00450629227192 0.00192374181264 -0.00258255045928 +UniRef50_UPI0001CB956C PREDICTED 7.42741603044e-06 3.6137647226e-06 -3.81365130784e-06 +UniRef50_A3UCU0 5.89282781618e-05 1.64214993614e-05 -4.25067788004e-05 +UniRef50_G3XCV3 Pseudaminidase 0.000894680172104 0.000348423188776 -0.000546256983328 +UniRef50_UPI00046CA980 hypothetical protein 0.000103134540428 0.000830384340167 0.000727249799739 +UniRef50_UPI0000222793 Hypothetical protein CBG15144 4.76798104979e-06 7.43423387758e-05 6.9574357726e-05 +UniRef50_UPI000475010A CoA transferase 1.77751223697e-05 1.03484718355e-05 -7.4266505342e-06 +UniRef50_B4D594 4.8185079133e-05 4.41455210369e-06 -4.37705270293e-05 +UniRef50_F4LXR7 PTS system transcriptional activator 0.000258344947161 0.00115214692699 0.000893801979829 +UniRef50_UPI000362454E hypothetical protein, partial 0.000279195077368 7.40173396883e-05 -0.00020517773768 +UniRef50_UPI00047529B6 XRE family transcriptional regulator 0.000134734766548 0.00209618877371 0.00196145400716 +UniRef50_I1ZJL0 Nicotinate phosphoribosyltransferase 0.00887987135156 0.00801017535971 -0.00086969599185 +UniRef50_F8HYA2 Nucleoside permease 0.0119047796699 0.00354020740774 -0.00836457226216 +UniRef50_J9P4X2 0.000166866507466 0.000895894213725 0.000729027706259 +UniRef50_A0A058Z6X5 2.32379403655e-05 2.89762915922e-05 5.7383512267e-06 +UniRef50_A6M027 YCII related 0.00283495056924 0.00124343875871 -0.00159151181053 +UniRef50_P65213 Potassium transporting ATPase C chain 1 0.00553997013872 0.00309685078509 -0.00244311935363 +UniRef50_Q6FE54 0.000512424419253 0.0132589333071 0.0127465088878 +UniRef50_J0MDM2 0.000269631637761 7.1028548275e-05 -0.000198603089486 +UniRef50_A6LW35 0.000547508094968 0.000713710053181 0.000166201958213 +UniRef50_A6LW34 0.000436399987111 0.000885387665832 0.000448987678721 +UniRef50_P23504 Cell surface antigen I II 0.00181275939383 0.000650220892318 -0.00116253850151 +UniRef50_A5UL13 Acetolactate synthase , large subunit, IlvB 0.00279597425515 0.000584644573848 -0.0022113296813 +UniRef50_P76655 Putative outer membrane usher protein YqiG 0.00162472913007 0.000645227681151 -0.000979501448919 +UniRef50_UPI00035C946D hypothetical protein 2.47893644858e-05 0.000340754936465 0.000315965571979 +UniRef50_UPI000377D66B hypothetical protein 1.31790862294e-05 8.04769440166e-05 6.72978577872e-05 +UniRef50_E8SK78 ABC transporter ATP binding protein 0.0217874363306 0.00634562869259 -0.015441807638 +UniRef50_P43085 Phosphoenolpyruvate carboxykinase [ATP] 0.00676049522965 0.00353198982013 -0.00322850540952 +UniRef50_F5HTK1 Alcaligin biosynthesis enzyme family protein 0.000337213365454 0.0086628498287 0.00832563646325 +UniRef50_Q48KB4 Tat pathway signal sequence domain protein 0.00117050282886 0.00050992959632 -0.00066057323254 +UniRef50_W4THQ3 Exodeoxyribonuclease V alpha chain 8.82891222297e-05 0.000184990175522 9.67010532923e-05 +UniRef50_UPI0003604119 hypothetical protein 1.13143981663e-05 1.54021950422e-05 4.0877968759e-06 +UniRef50_UPI0003B700CE molybdopterin biosynthesis MoeZ 3.57262595896e-05 5.10606179944e-05 1.53343584048e-05 +UniRef50_B6BAZ3 2.23612922757e-05 1.41637150277e-05 -8.197577248e-06 +UniRef50_A0A058T111 Glycerol 3 phosphate acyltransferase 0.00333973788365 0.000701930699578 -0.00263780718407 +UniRef50_Q1QVF5 Phosphoheptose isomerase 2.80360261003e-05 0.000996154590681 0.000968118564581 +UniRef50_UPI0002BA0065 hypothetical protein, partial 0.000365959281483 0.000368773989167 2.814707684e-06 +UniRef50_B5Y0W4 UPF0234 protein KPK_4305 0.000771382803832 0.000809076916587 3.7694112755e-05 +UniRef50_UPI0003B69561 IMP cyclohydrolase 3.64198487707e-06 1.13631075166e-05 7.72112263953e-06 +UniRef50_UPI0001744350 glycine hydroxymethyltransferase 5.43278517763e-05 0.00011810801453 6.37801627537e-05 +UniRef50_UPI000470759E ATP dependent DNA helicase PcrA 2.2767975394e-05 3.54729822884e-06 -1.92206771652e-05 +UniRef50_Q2G1Q2 1 phosphatidylinositol phosphodiesterase 0.0122526986999 0.000767549261549 -0.0114851494384 +UniRef50_B9KLG1 Membrane anchored oxidoreductase 0.00316724992267 0.000923417572624 -0.00224383235005 +UniRef50_UPI00047BB328 phosphoenolpyruvate carboxykinase 3.70943559105e-06 3.01753922579e-05 2.64659566669e-05 +UniRef50_P03014 DNA invertase from lambdoid prophage e14 0.00383349400254 0.00212528194228 -0.00170821206026 +UniRef50_Q5L3T0 Type III pantothenate kinase 0.000587109070158 0.00280214634288 0.00221503727272 +UniRef50_G8LV00 Transposase 0.000284407251873 0.000671530690386 0.000387123438513 +UniRef50_D0KD36 Lipid A palmitoyltransferase PagP 0.0014690437816 0.000319261302914 -0.00114978247869 +UniRef50_UPI00047780D2 alanine dehydrogenase 1.27751402393e-05 1.35502889441e-05 7.751487048e-07 +UniRef50_D6CRU4 2.54366637794e-05 7.21115035386e-06 -1.82255134255e-05 +UniRef50_B9JWD9 5.9942485479e-05 4.89198339163e-05 -1.10226515627e-05 +UniRef50_UPI0003479767 hypothetical protein 2.21732765988e-06 0.000101266775305 9.90494476451e-05 +UniRef50_UPI0003605B2B hydrogenase nickel incorporation protein HypA 0.000864059133047 0.000349089772983 -0.000514969360064 +UniRef50_A4WW77 Ribosome maturation factor RimP 0.0117719189282 0.00247377764146 -0.00929814128674 +UniRef50_E3EZC8 0.00176408721327 0.000459099731777 -0.00130498748149 +UniRef50_W7DGX3 Bleomycin resistance protein 0.00025492751768 0.000186448281897 -6.8479235783e-05 +UniRef50_B2TRM3 NAD kinase 0.000135786326927 0.000586882801755 0.000451096474828 +UniRef50_C1A7Q5 0.00932520563225 0.00179019189762 -0.00753501373463 +UniRef50_N6UYT1 2.25987607162e-05 3.62094898069e-06 -1.89778117355e-05 +UniRef50_Q3ABL6 Dephospho CoA kinase 1.20243908199e-05 2.08714931199e-05 8.8471023e-06 +UniRef50_UPI0003C0FD63 PREDICTED 1.92332436971e-06 6.0561121335e-06 4.13278776379e-06 +UniRef50_O34011 Fructose 1,6 bisphosphatase class 1 0.014432083949 0.00263944714889 -0.0117926368001 +UniRef50_UPI00046969A6 glutamine amidotransferase 2.42198891871e-05 0.000193209237267 0.00016898934808 +UniRef50_UPI000191383D hypothetical protein, partial 0.000219393285239 0.000570092336986 0.000350699051747 +UniRef50_D2J6T4 0.0146825025136 0.0184641894148 0.0037816869012 +UniRef50_H8L0H5 Plasmid stabilization system protein 0.000786429143437 0.00133388549242 0.000547456348983 +UniRef50_D5MJN8 3.4300926193e-05 2.01767967235e-05 -1.41241294695e-05 +UniRef50_U5ULW6 0.000200748310105 1.91019005938e-05 -0.000181646409511 +UniRef50_Q57QS3 Ribosomal RNA large subunit methyltransferase I 0.00379190236464 0.00175416308921 -0.00203773927543 +UniRef50_J3CV04 0.0011256696039 0.000345886947823 -0.000779782656077 +UniRef50_S5KGZ8 2.44073701629e-05 0.00277223710451 0.00274782973435 +UniRef50_Q66FE1 Thiol 0.000696968325316 0.000272439138384 -0.000424529186932 +UniRef50_B4U9I4 Cysteine tRNA ligase 2.53322269882e-06 1.05301970904e-05 7.99697439158e-06 +UniRef50_A0A038GF87 Plasmid pRiA4b ORF 3 family protein 5.63196768525e-05 1.35083780639e-05 -4.28112987886e-05 +UniRef50_R4QCF3 Membrane protein 0.000171703875971 0.00616852914197 0.005996825266 +UniRef50_Q8CTK1 0.0324925758293 0.00518341774847 -0.0273091580808 +UniRef50_P77935 Amidophosphoribosyltransferase 0.00644337706952 0.00276435319734 -0.00367902387218 +UniRef50_UPI00030EA43E hypothetical protein 3.03099895798e-06 5.64913886355e-06 2.61813990557e-06 +UniRef50_B3R9A8 YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal 0.00313301799874 0.0411856486794 0.0380526306807 +UniRef50_UPI00040764A3 amidohydrolase 4.027611842e-06 6.82205019724e-05 6.41928901304e-05 +UniRef50_B2K1F3 0.000312549922843 0.000485734848502 0.000173184925659 +UniRef50_E0TI30 0.000143836894815 5.26031724255e-05 -9.12337223895e-05 +UniRef50_UPI000471B390 hypothetical protein, partial 3.29708045511e-06 6.5103841184e-06 3.21330366329e-06 +UniRef50_F3IHL1 Transcriptional regulator, AsnC family protein 7.158995421e-05 0.000112538268527 4.0948314317e-05 +UniRef50_UPI000288AE42 MarR family transcriptional regulator 1.50946792519e-05 3.70789004918e-05 2.19842212399e-05 +UniRef50_Q8D2C5 Oligoribonuclease 0.00199303131102 5.14815856262e-05 -0.00194154972539 +UniRef50_Q6M0B4 UDP N acetylglucosamine 2 epimerase homolog 0.000961199021542 0.00133927003941 0.000378071017868 +UniRef50_P77562 0.00143411795248 0.000335732882396 -0.00109838507008 +UniRef50_Q8CWZ2 0.000555126454193 0.0015542984484 0.000999171994207 +UniRef50_F6D1U5 Sulfate transporting ATPase 0.00423660680077 0.00149112131277 -0.002745485488 +UniRef50_Q70AC7 Methylmalonyl CoA carboxyltransferase 5S subunit 0.00554549785474 0.00183141626312 -0.00371408159162 +UniRef50_UPI000380FAC7 hypothetical protein, partial 1.08593169994e-05 6.49801391588e-06 -4.36130308352e-06 +UniRef50_O25369 Outer membrane protein assembly factor BamA 0.000366470436589 0.00418504270778 0.00381857227119 +UniRef50_G5P5B1 Potassium transporting ATPase B chain 8.00975621009e-06 0.000824558971844 0.000816549215634 +UniRef50_C5N6G1 0.0027401988873 0.000588847750693 -0.00215135113661 +UniRef50_A9M2U6 Oxygen independent coproporphyrinogen III oxidase 0.000131681158905 0.00244451735921 0.0023128362003 +UniRef50_B9L274 Ribosomal RNA small subunit methyltransferase H 1.14168869486e-05 0.0321372181383 0.0321258012514 +UniRef50_P35159 Ribosomal large subunit pseudouridine synthase B 1.53937981152e-05 0.0066519374124 0.00663654361428 +UniRef50_A7ZIN4 Adenylate kinase 0.00274337209643 0.00155478157458 -0.00118859052185 +UniRef50_I4CR94 6.01972024774e-06 1.29901047237e-05 6.97038447596e-06 +UniRef50_U3HDX0 4.34886805021e-05 6.23068150023e-05 1.88181345002e-05 +UniRef50_M9S9D1 0.000102642635941 0.000320511788102 0.000217869152161 +UniRef50_A8LU40 Replication protein C 0.00238194922091 0.000292132676889 -0.00208981654402 +UniRef50_S5XWE5 Sarcosine oxidase 0.000405759707163 0.000132034294431 -0.000273725412732 +UniRef50_R7D072 6.78633164352e-06 1.19527736585e-05 5.16644201498e-06 +UniRef50_Q895M3 Ribosome maturation factor RimM 0.000905966373245 0.000455501344774 -0.000450465028471 +UniRef50_P78271 0.00298557451354 0.00124006736609 -0.00174550714745 +UniRef50_Q5M3Y0 Cell division protein 0.0042033385397 0.00310893202238 -0.00109440651732 +UniRef50_Q3JY00 CarR 6.30810512401e-05 0.000707586644453 0.000644505593213 +UniRef50_R4K7H3 DNA repair protein RecN 0.000372408169587 0.000923721794552 0.000551313624965 +UniRef50_A3PGQ0 ErfK YbiS YcfS YnhG family protein 0.00548844726795 0.00095184917707 -0.00453659809088 +UniRef50_B9KM31 0.000811676282119 0.000915562800384 0.000103886518265 +UniRef50_A4WW68 Flagellar M ring protein 0.00135440902046 0.000436405557855 -0.000918003462605 +UniRef50_UPI000467700F hypothetical protein 2.10324750216e-06 2.8180648569e-06 7.1481735474e-07 +UniRef50_I6U0E0 Stress response protein 0.0050821074154 0.00137879705175 -0.00370331036365 +UniRef50_UPI0003653B40 hypothetical protein 0.000118262841564 2.08634390892e-05 -9.73994024748e-05 +UniRef50_A4J700 Endoribonuclease L PSP 0.00683772871804 0.00472523032654 -0.0021124983915 +UniRef50_L5RDB7 Putative gluconolactonase domain protein 0.000294144926378 0.00212555573097 0.00183141080459 +UniRef50_Q4JVZ1 Thiamine phosphate synthase 0.00210065254141 0.00600514836908 0.00390449582767 +UniRef50_UPI0003318BBF 2.60408591974e-05 2.24369714747e-05 -3.6038877227e-06 +UniRef50_J0CD84 3.39176229073e-05 0.000189403013897 0.00015548539099 +UniRef50_C5YXG0 1.23072411431e-05 1.78250453312e-05 5.5178041881e-06 +UniRef50_UPI0003B2FF21 hydantoinase 3.77970207116e-06 6.94631480963e-06 3.16661273847e-06 +UniRef50_I4KQZ4 1.01044746277e-05 1.73338582147e-05 7.229383587e-06 +UniRef50_UPI0003595520 PREDICTED 3.81360134766e-05 0.00012552185264 8.73858391634e-05 +UniRef50_I6RQF7 0.00143349109691 0.00224291168503 0.00080942058812 +UniRef50_UPI00047616F1 hypothetical protein 4.2441254048e-06 3.45654141749e-05 3.03212887701e-05 +UniRef50_D8JKH6 Acyl CoA dehydrogenase 0.000298272492969 0.00607280268115 0.00577453018818 +UniRef50_E8SH59 Chromosome replication initiation protein dnaD 0.0153268633487 0.0033208542881 -0.0120060090606 +UniRef50_Q4LA96 0.00175064309322 0.000360065744148 -0.00139057734907 +UniRef50_F6EZI7 Diguanylate cyclase with GAF sensor 0.00262519084803 0.00105644592491 -0.00156874492312 +UniRef50_P77381 0.00336650823539 0.000719478523288 -0.0026470297121 +UniRef50_A1WPN7 Peptidase C39, bacteriocin processing 0.00120873094671 0.00969341301591 0.0084846820692 +UniRef50_Q2T3A1 Transcriptional regulator, LysR family 0.0001909709893 0.000223161238178 3.2190248878e-05 +UniRef50_C6SR09 0.00387280221803 0.000719678751628 -0.0031531234664 +UniRef50_E4PKD1 Adenylate guanylate cyclase 0.00103831307265 0.000560886954259 -0.000477426118391 +UniRef50_Q4L4W9 Putative peptidyl prolyl cis trans isomerase 7.77862301132e-06 0.000297577405515 0.000289798782504 +UniRef50_Q9RZC3 Glucose 1 phosphate thymidylyltransferase, putative 0.000487500640715 0.0653683785222 0.0648808778815 +UniRef50_UPI00046624C5 ribonuclease E 2.15714332845e-06 2.80005668047e-06 6.4291335202e-07 +UniRef50_P45092 Arginine transport ATP binding protein ArtP 0.00253248980406 0.002121031902 -0.00041145790206 +UniRef50_Q1YHY0 0.000321687752459 4.10844560814e-05 -0.000280603296378 +UniRef50_X2HE44 DNA polymerase III delta prime subunit 0.000709831890636 0.00252572322166 0.00181589133102 +UniRef50_Q890R3 Energy coupling factor transporter ATP binding protein EcfA2 0.000292525046714 0.00317174375859 0.00287921871188 +UniRef50_UPI00047DDBCA molecular chaperone DnaJ 1.04507773522e-05 2.13350803741e-05 1.08843030219e-05 +UniRef50_UPI000476F810 alkylhydroperoxidase 4.12207709729e-05 0.000254622433705 0.000213401662732 +UniRef50_Q81L09 S adenosylmethionine decarboxylase proenzyme 1 1.29976962468e-05 0.00250575289812 0.00249275520187 +UniRef50_UPI0003B4E07A peptide deformylase 2.48539670114e-05 8.77124661315e-05 6.28584991201e-05 +UniRef50_A5IW20 LPXTG motif cell wall anchor domain 0.00581041161264 0.0025407396483 -0.00326967196434 +UniRef50_A6W2Y5 Short chain dehydrogenase reductase SDR 0.00698268786814 0.00302390183661 -0.00395878603153 +UniRef50_P70720 3 oxoacyl [acyl carrier protein] reductase FabG 0.00166978133217 0.0193489412926 0.0176791599604 +UniRef50_UPI000363345A hypothetical protein 0.000155330571043 0.000157250349826 1.919778783e-06 +UniRef50_R5PT01 6 pyruvoyl tetrahydropterin synthase 0.000165703016709 0.000105785492798 -5.9917523911e-05 +UniRef50_E1S9J4 Signal transduction histidine kinase 0.00021821731031 0.00518512110986 0.00496690379955 +UniRef50_A3IDC9 0.000707315649066 0.000456403040261 -0.000250912608805 +UniRef50_M4K0X3 0.000775693449478 0.000553299269543 -0.000222394179935 +UniRef50_J9M4I5 6.25602599357e-06 1.50104862497e-06 -4.7549773686e-06 +UniRef50_O31440 Fatty acid peroxygenase 7.22193721735e-06 1.29426314057e-05 5.72069418835e-06 +UniRef50_UPI000371B5AE hypothetical protein 5.37853417855e-05 1.70369201795e-05 -3.6748421606e-05 +UniRef50_S5YFU3 SMP 30 Gluconolaconase LRE domain protein 0.000223400713147 0.000215297719466 -8.102993681e-06 +UniRef50_UPI000225EF72 magnesium transporter 0.000106497184209 7.85751203881e-05 -2.79220638209e-05 +UniRef50_B2V488 Metallo beta lactamase family protein 0.000366794708838 0.000604560087828 0.00023776537899 +UniRef50_G7RAI1 0.000370084302795 0.00159456500466 0.00122448070187 +UniRef50_U6LJB2 1.70234329309e-05 3.49829073229e-05 1.7959474392e-05 +UniRef50_UPI0003B686A2 AraC family transcriptional regulator 8.52065457567e-05 1.16493741055e-05 -7.35571716512e-05 +UniRef50_P09394 Glycerophosphoryl diester phosphodiesterase 0.00394757382618 0.00104354922623 -0.00290402459995 +UniRef50_D7GCV1 Folylpolyglutamate synthase 0.000118087379206 0.00523841012773 0.00512032274852 +UniRef50_X9G8K3 Surface protein G 0.00158805050229 0.000167793582503 -0.00142025691979 +UniRef50_G8VA48 Lactate malate dehydrogenase, NAD binding domain protein 0.000228779387182 0.00631749488628 0.0060887154991 +UniRef50_Q21DG3 Ribosomal RNA small subunit methyltransferase G 2.29568351826e-05 3.55005037617e-05 1.25436685791e-05 +UniRef50_UPI0002D3A901 transaldolase 0.000101589045223 6.94478239413e-05 -3.21412212817e-05 +UniRef50_W1BA41 Chromosome partition protein MukF 0.000449241696888 0.000322676294362 -0.000126565402526 +UniRef50_F3U217 GntR family transcriptional regulator 0.00630367019057 0.00225580969172 -0.00404786049885 +UniRef50_V9XEY4 Glutaminase 0.000196622159211 0.00620868217029 0.00601206001108 +UniRef50_D9XFH8 0.000654978288092 0.00220493869669 0.0015499604086 +UniRef50_UPI00035F6847 cold shock protein 2.57376312444e-05 1.96995627722e-05 -6.0380684722e-06 +UniRef50_D5WIA8 Acyl CoA dehydrogenase domain protein 0.000578069824507 0.00862829250615 0.00805022268164 +UniRef50_A0A013SXP0 Phosphoenolpyruvate protein phosphotransferase 8.25829468874e-05 0.00253833850772 0.00245575556083 +UniRef50_U3T0Z6 dGTP pyrophosphohydrolase thiamine phosphate synthase 0.000547145136573 0.00313359720103 0.00258645206446 +UniRef50_P50600 Protein TolA 0.00126554723212 0.000294335586571 -0.000971211645549 +UniRef50_Q6GK25 Protein EssB 0.0119329809133 0.00254262469166 -0.00939035622164 +UniRef50_C8UCL7 0.00100072855528 0.000355803259269 -0.000644925296011 +UniRef50_X5J954 Transposase ISCca5, IS5 ssgr IS5 family 4.45942749009e-05 1.31710752731e-05 -3.14231996278e-05 +UniRef50_A0QL30 1.49369550588e-05 6.96787679778e-05 5.4741812919e-05 +UniRef50_Q892Q8 Heat inducible transcription repressor HrcA 0.000142806805364 0.000742270567195 0.000599463761831 +UniRef50_UPI000370A1E5 hypothetical protein 6.44574868682e-05 9.22253716506e-06 -5.52349497031e-05 +UniRef50_Q9FDM1 Prolipoprotein diacylglyceryl transferase 9.18026690241e-05 1.12085412574e-05 -8.05941277667e-05 +UniRef50_P36638 Peptide transport system ATP binding protein SapF 0.00424071720815 0.00119102980072 -0.00304968740743 +UniRef50_UPI00037F8A46 hypothetical protein 4.30682170917e-06 5.63542892726e-06 1.32860721809e-06 +UniRef50_P75905 Poly beta 1,6 N acetyl D glucosamine synthase 0.002431219069 0.00599056576316 0.00355934669416 +UniRef50_I1FPH4 2.60639077406e-06 7.03007481933e-06 4.42368404527e-06 +UniRef50_S1EVH2 Transcriptional regulator 0.00134492173059 0.000630291045772 -0.000714630684818 +UniRef50_P25519 GTPase HflX 0.00370532114766 0.000506708949174 -0.00319861219849 +UniRef50_F3J1W5 0.000503119092704 0.00305500039855 0.00255188130585 +UniRef50_UPI0004286E00 hypothetical protein 5.49754718614e-06 6.52530133892e-06 1.02775415278e-06 +UniRef50_Q9A2A6 9.22732239607e-05 2.50293809212e-05 -6.72438430395e-05 +UniRef50_UPI0003B41A8E MerR family transcriptional regulator 0.000518794096916 0.000130833047108 -0.000387961049808 +UniRef50_UPI00047DA8A6 transcriptional regulator 3.37829415838e-05 1.44823157659e-05 -1.93006258179e-05 +UniRef50_UPI000380DF8A hypothetical protein 4.67356673812e-06 1.10739915172e-05 6.40042477908e-06 +UniRef50_A0A023RW94 Acyltransferase 0.000492253223462 0.00753322163417 0.00704096841071 +UniRef50_UPI0004074116 hypothetical protein 1.81753631272e-05 2.3802491491e-05 5.6271283638e-06 +UniRef50_A7IK15 Chromosomal replication initiator, DnaA 4.50718373516e-05 1.21896824604e-05 -3.28821548912e-05 +UniRef50_Q0AMH8 UPF0301 protein Mmar10_2223 3.07703332223e-05 2.3100879244e-05 -7.6694539783e-06 +UniRef50_Q8DY37 UPF0348 protein SAG1656 0.00596244851989 0.00239852503203 -0.00356392348786 +UniRef50_UPI00038154C1 hypothetical protein 1.57646450315e-05 1.41896326655e-05 -1.575012366e-06 +UniRef50_G7D6S7 0.000201932427667 6.04803049477e-05 -0.000141452122719 +UniRef50_F7U6Q0 3.81006170307e-05 4.56870186004e-06 -3.35319151707e-05 +UniRef50_D7FE46 RBL01243 0.000112309283497 0.00612568863742 0.00601337935392 +UniRef50_A5UNG5 CMP sialic acid synthetase, NeuA 0.00406270603338 0.000707610763133 -0.00335509527025 +UniRef50_UPI0001745DFF Response regulator consisting of a CheY like receiver domain and a winged helix DNA binding domain 9.54160152509e-06 0.000124488313335 0.00011494671181 +UniRef50_C5WGS2 Amino acid ABC transporter extracellular binding protein 0.00380953621996 0.00183643653005 -0.00197309968991 +UniRef50_P13716 Delta aminolevulinic acid dehydratase 1.75799955361e-05 8.07306120531e-06 -9.50693433079e-06 +UniRef50_F7ZTM8 Riboflavin biosynthesis protein RibD 0.000314684211198 0.000679962167477 0.000365277956279 +UniRef50_Q6G7T8 0.00671469129317 0.00223391417608 -0.00448077711709 +UniRef50_UPI00037BBACA hypothetical protein, partial 4.11444894537e-06 6.01750962138e-06 1.90306067601e-06 +UniRef50_R9ZHE0 Type II secretion system protein 0.00156136021166 0.00222017253215 0.00065881232049 +UniRef50_P46354 Purine nucleoside phosphorylase 1 0.00940296002323 0.0059824157719 -0.00342054425133 +UniRef50_A1VVY8 LemA family protein 2.69446105961e-05 1.39501559727e-05 -1.29944546234e-05 +UniRef50_UPI0002490C4B DeoR faimly transcriptional regulator 0.000162474778373 1.22968628094e-05 -0.000150177915564 +UniRef50_H2A790 Amino acid ABC transporter, amino acid binding permease protein 0.00779444803455 0.00754774716137 -0.00024670087318 +UniRef50_UPI0003C13A29 PREDICTED 1.8100239229e-05 5.30812739702e-06 -1.2792111832e-05 +UniRef50_UPI000360760D hypothetical protein 2.35823071417e-05 8.52589376936e-06 -1.50564133723e-05 +UniRef50_UPI0001FFDEF3 hypothetical protein 2.60430978063e-06 0.000124112749991 0.00012150844021 +UniRef50_UPI00036476ED hypothetical protein 1.82202713707e-05 2.82817237649e-05 1.00614523942e-05 +UniRef50_UPI0002555726 macrolide ABC transporter ATP binding protein 5.29845423556e-06 3.96332700578e-05 3.43348158222e-05 +UniRef50_UPI000287EE3A rhizobiocin RTX toxin and hemolysin type calcium binding protein 2.79745432699e-05 4.18818086338e-06 -2.37863624065e-05 +UniRef50_U3SUU9 0.00525092837966 0.00194749894873 -0.00330342943093 +UniRef50_P10249 Sucrose phosphorylase 0.00499788296314 0.00848982805772 0.00349194509458 +UniRef50_C3Z7Q3 6.93080651327e-05 5.49170719359e-06 -6.38163579391e-05 +UniRef50_Q09067 Urease accessory protein UreH 0.000255633852495 0.00418986501494 0.00393423116244 +UniRef50_UPI000464113C multidrug ABC transporter 6.2276009702e-06 3.46831031503e-05 2.84555021801e-05 +UniRef50_I2BZM7 Transcriptional regulator, AraC family 0.000332530554699 0.000790316694578 0.000457786139879 +UniRef50_UPI00047C04E2 diguanylate cyclase 5.45297305169e-06 8.51236180273e-06 3.05938875104e-06 +UniRef50_A0KL52 Adenylate kinase 8.53103151564e-06 1.44153518997e-05 5.88432038406e-06 +UniRef50_UPI000262D071 pyrroline 5 carboxylate reductase 1.10598522484e-05 1.53571852148e-05 4.2973329664e-06 +UniRef50_L7WZS3 Lipase 0.00779010151918 0.00311786590358 -0.0046722356156 +UniRef50_A6LR40 Ribonuclease R 0.000279850845443 0.00186752537675 0.00158767453131 +UniRef50_U6HJZ8 Succinate dehydrogenase iron sulfur protein 3.7476923495e-05 0.000136065769359 9.8588845864e-05 +UniRef50_Q9B6E7 Cytochrome c oxidase subunit 1 2.07046673402e-05 1.03680969772e-05 -1.0336570363e-05 +UniRef50_UPI000288E3B9 DNA polymerase I, partial 0.000121075766092 6.88984415082e-05 -5.21773245838e-05 +UniRef50_Q87U89 0.000558983172193 0.000320771188731 -0.000238211983462 +UniRef50_UPI0001BF7861 hypothetical protein SMAC_10214, partial 5.08393907492e-05 0.000150504638575 9.96652478258e-05 +UniRef50_Q97K95 L aspartate oxidase 0.000288047013599 0.000743680229215 0.000455633215616 +UniRef50_O31462 0.00640013399744 0.00343945847283 -0.00296067552461 +UniRef50_A6QIT1 0.00153908507774 0.00146283289675 -7.625218099e-05 +UniRef50_D0CS40 Outer membrane transporter, ompp1 fadl todx family 1.42236894092e-05 5.62289464677e-06 -8.60079476243e-06 +UniRef50_G9PLE0 3.56914126801e-05 0.000179815884782 0.000144124472102 +UniRef50_B9KU12 0.000124016601692 0.000518889107334 0.000394872505642 +UniRef50_UPI0003B6C6DF histidine kinase 0.000383086464505 7.33909615101e-05 -0.000309695502995 +UniRef50_Q9Z4W7 Anthranilate synthase component 1 2.87569026375e-06 6.6070863e-06 3.73139603625e-06 +UniRef50_K0I5D9 Protease 0.000233016042498 0.000209692335056 -2.3323707442e-05 +UniRef50_Q3J615 0.0110028199121 0.00300144665437 -0.00800137325773 +UniRef50_Q3J617 0.0145977411356 0.00627458025541 -0.00832316088019 +UniRef50_Q9RWA3 0.000200793136132 0.01954974652 0.0193489533839 +UniRef50_B7GLM2 ABC type oligopeptide transport system, permease component 0.0234645505474 0.00643591413794 -0.0170286364095 +UniRef50_A6LYT7 0.00084818820978 0.0019924469491 0.00114425873932 +UniRef50_Q9RWA8 0.000367416162542 0.00773262416766 0.00736520800512 +UniRef50_A6LYT5 0.000322637597309 0.000252048397039 -7.058920027e-05 +UniRef50_R7LD69 1.46581612115e-05 0.000308718426884 0.000294060265673 +UniRef50_UPI0003B71B68 molybdopterin dehydrogenase, partial 1.47504267633e-05 4.24301559936e-05 2.76797292303e-05 +UniRef50_UPI0004679659 hypothetical protein 0.000164377266094 3.16029364193e-05 -0.000132774329675 +UniRef50_UPI0003604091 hypothetical protein 3.12885741974e-05 7.63406363828e-06 -2.36545105591e-05 +UniRef50_UPI000367D1C3 hypothetical protein 3.14901085121e-05 4.6210633582e-05 1.47205250699e-05 +UniRef50_U5MT62 Nodulation protein NolG 0.000397447769323 0.00246574377197 0.00206829600265 +UniRef50_A0KEB8 Tetratricopeptide repeat family 4.50246784272e-06 8.23583706457e-05 7.7855902803e-05 +UniRef50_H6NKR1 6.75751366856e-06 0.000796761159791 0.000790003646122 +UniRef50_A5UMM4 Serine threonine protein kinase related protein 0.00371371749971 0.000854600463143 -0.00285911703657 +UniRef50_C5YW74 9.9400863872e-05 5.99955498646e-05 -3.94053140074e-05 +UniRef50_Q8D954 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00113757837482 6.91402132548e-06 -0.00113066435349 +UniRef50_E6US82 TROVE domain containing protein 0.000584131469492 0.00161814837078 0.00103401690129 +UniRef50_O32168 Methionine import system permease protein MetP 0.0205838245752 0.0113935068067 -0.0091903177685 +UniRef50_UPI0003B3F610 peptidylprolyl isomerase 8.87647443269e-06 1.4272946369e-05 5.39647193631e-06 +UniRef50_A5INZ6 0.00838553059702 0.00452688570361 -0.00385864489341 +UniRef50_U3QUF7 Chemotaxis protein 0.00175134628674 0.000884700872465 -0.000866645414275 +UniRef50_D4HF48 8.75670734285e-06 0.00281789063998 0.00280913393264 +UniRef50_UPI0003B6D344 MarR family transcriptional regulator 1.98043609353e-05 0.000117973947863 9.81695869277e-05 +UniRef50_G8VM83 Serine threonine protein kinase 0.00013214499857 0.00629469775834 0.00616255275977 +UniRef50_Q9RSR9 Oligoendopeptidase F, putative 0.000245113602402 0.0167108129191 0.0164656993167 +UniRef50_J3L6D3 0.000160804316036 0.000259699546669 9.8895230633e-05 +UniRef50_Q6F8Q1 Protease HtpX 0.000228779387182 0.0094073233205 0.00917854393332 +UniRef50_W1EDI8 Error prone, lesion bypass DNA polymerase V 0.00328856517855 0.000885735765023 -0.00240282941353 +UniRef50_F1XKP7 0.000266221352618 0.00020319956779 -6.3021784828e-05 +UniRef50_N2GZC1 Inner membrane transport protein YhjV 0.00126002025586 0.000217945907889 -0.00104207434797 +UniRef50_UPI00036F024D hypothetical protein 2.11663099346e-05 2.21282658602e-05 9.619559256e-07 +UniRef50_A4X0E7 Transport system permease protein 6.10599482752e-05 5.34558720004e-05 -7.6040762748e-06 +UniRef50_B9KGQ3 Transcriptional activator protein 0.00968448593373 0.0023318276558 -0.00735265827793 +UniRef50_Q9PB21 3 phosphoshikimate 1 carboxyvinyltransferase 1.1719286871e-05 5.41456039399e-06 -6.30472647701e-06 +UniRef50_UPI0003F0BF74 PREDICTED 4.47457613344e-05 3.42524106214e-05 -1.0493350713e-05 +UniRef50_A4WX47 Heat shock protein DnaJ domain protein 0.0124123753124 0.00333487280647 -0.00907750250593 +UniRef50_R9ZG29 Chemotaxis protein CheY 0.000873554667212 0.00162470352679 0.000751148859578 +UniRef50_A8LHQ6 Protein TolB 0.00335261676944 0.000867576778374 -0.00248503999107 +UniRef50_D4HB86 ABC transporter, ATP binding protein 0.000122693170804 0.00582952625621 0.00570683308541 +UniRef50_Q2NAE1 Bifunctional enzyme IspD IspF 4.21011749954e-06 8.94643206959e-05 8.52542031964e-05 +UniRef50_UPI000478A42E peptide ABC transporter permease 1.08031624291e-05 3.21643854929e-05 2.13612230638e-05 +UniRef50_Q12BS8 Prolipoprotein diacylglyceryl transferase 2.29538173633e-05 2.82769538627e-05 5.3231364994e-06 +UniRef50_L0WHY8 Ppx GppA phosphatase 0.000102763880809 0.00752989454377 0.00742713066296 +UniRef50_P0A2J6 Peptide transport system permease protein SapC 0.00162156892181 0.000826934852159 -0.000794634069651 +UniRef50_A9WJ95 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.32847458146e-05 9.21340891981e-06 -4.07133689479e-06 +UniRef50_U4V848 2.67494990054e-05 4.01361224971e-05 1.33866234917e-05 +UniRef50_M9VBD0 2 dehydropantoate 2 reductase 0.000450336783549 0.00308168074534 0.00263134396179 +UniRef50_UPI000349B178 hypothetical protein 4.55180592093e-05 4.76336786757e-05 2.1156194664e-06 +UniRef50_UPI00046469DD competence protein 1.28414290628e-05 4.33445910534e-05 3.05031619906e-05 +UniRef50_P02915 Histidine transport ATP binding protein HisP 0.00685999148608 0.0134109215993 0.00655093011322 +UniRef50_M9VL55 0.000160154949157 0.00633562160272 0.00617546665356 +UniRef50_UPI0002C58260 1.26261422577e-06 0.000149683041838 0.000148420427612 +UniRef50_A1ARJ7 3 dehydroquinate dehydratase 1.45604886031e-05 0.000106337860936 9.17773723329e-05 +UniRef50_P0A9N6 Pyruvate formate lyase 1 activating enzyme 0.00601868320962 0.000231620945253 -0.00578706226437 +UniRef50_B7K5B1 Adenylyl sulfate kinase 9.75498311682e-06 0.000353388667842 0.000343633684725 +UniRef50_A7ZSR5 Shikimate kinase 1 0.00525713490787 0.00163677609501 -0.00362035881286 +UniRef50_S0U1N3 0.000499834642214 0.000472886993363 -2.6947648851e-05 +UniRef50_P42199 L cystine binding protein TcyA 0.0114896460309 0.00629208601573 -0.00519756001517 +UniRef50_UPI0004292B6B hypothetical protein 2.41984150549e-05 4.46471776208e-05 2.04487625659e-05 +UniRef50_G1XC43 0.00114017675518 0.000279301707413 -0.000860875047767 +UniRef50_P65942 Bifunctional protein PyrR 9.21955804342e-06 4.22062422726e-05 3.29866842292e-05 +UniRef50_UPI0002D9966A hypothetical protein 0.000103519685204 0.000590574614253 0.000487054929049 +UniRef50_W5XD81 UDP N acetylglucosamine 2 epimerase 7.18094234088e-06 3.40355660737e-05 2.68546237328e-05 +UniRef50_R6V945 ATP dependent protease La 0.0021754033241 0.00029101479221 -0.00188438853189 +UniRef50_E2PXX4 Putative regulator 1.51124735866e-05 4.0498032003e-05 2.53855584164e-05 +UniRef50_Q57947 0.00414096473853 0.000715197592501 -0.00342576714603 +UniRef50_P0AF33 Respiratory nitrate reductase 2 gamma chain 0.0044851366167 0.00276428664807 -0.00172084996863 +UniRef50_Q57942 0.00175042492011 0.000836424207519 -0.000914000712591 +UniRef50_O27477 UPF0284 protein MTH_1426 0.00357850911503 0.000566488133949 -0.00301202098108 +UniRef50_V8FR31 Histidine kinase 0.00039372983494 0.000540373763642 0.000146643928702 +UniRef50_K2AHW0 0.000588733301473 0.000389092338127 -0.000199640963346 +UniRef50_A4TIY8 Alkaline phosphatase 0.00132590129434 0.00183950852537 0.00051360723103 +UniRef50_I3X7J2 0.00011437196751 5.26123058271e-05 -6.17596616829e-05 +UniRef50_C6SPX6 0.00930701633793 0.00224596537411 -0.00706105096382 +UniRef50_C6SPX8 8.47767079612e-05 5.04814880674e-05 -3.42952198938e-05 +UniRef50_UPI000361A3EB hypothetical protein 1.64371302355e-05 3.99193813927e-05 2.34822511572e-05 +UniRef50_Q6A9R6 Aminomethyltransferase 0.000251627241247 0.0048984124473 0.00464678520605 +UniRef50_A4WVB3 CDP alcohol phosphatidyltransferase 0.00918299573764 0.00315883965281 -0.00602415608483 +UniRef50_UPI0003B32207 adenosylcobinamide kinase 3.05216719863e-05 4.12456694471e-05 1.07239974608e-05 +UniRef50_UPI00047017D2 hypothetical protein 1.35133781385e-05 1.05584870192e-05 -2.9548911193e-06 +UniRef50_Q6F856 UPF0042 nucleotide binding protein ACIAD3059 0.000133387275209 0.00675668462065 0.00662329734544 +UniRef50_UPI00047859F1 hypothetical protein 1.98337833257e-06 7.89900020386e-05 7.7006623706e-05 +UniRef50_A4ZNV6 Truncated internalin A 2.1781502233e-05 9.61514581704e-06 -1.2166356416e-05 +UniRef50_E9C0L1 Cobalamin synthesis protein P47K 5.04717407731e-06 9.20136414449e-06 4.15419006718e-06 +UniRef50_UPI0003C13F84 PREDICTED 1.37984256e-05 1.10826202284e-05 -2.7158053716e-06 +UniRef50_A6LXV4 Methyl accepting chemotaxis sensory transducer 0.000383207940757 0.000510109131453 0.000126901190696 +UniRef50_N6U8E6 0.000792875117908 0.00016988496944 -0.000622990148468 +UniRef50_Q0SNA5 Proline tRNA ligase 4.2240035066e-06 2.86562140638e-05 2.44322105572e-05 +UniRef50_UPI00029A8E4B MFS transporter 3.38944857379e-06 4.89725397974e-06 1.50780540595e-06 +UniRef50_UPI00021A5132 PREDICTED 3.65016156333e-06 6.64635600343e-06 2.9961944401e-06 +UniRef50_UPI0002B43A90 PREDICTED 7.19553211168e-05 0.000513608747989 0.000441653426872 +UniRef50_B1J909 Peptidase C39 bacteriocin processing 0.00233852197222 0.00152261998247 -0.00081590198975 +UniRef50_A6V4I6 Transcriptional regulator, LuxR family 0.000176946557275 0.00157769544621 0.00140074888894 +UniRef50_Q8ZBZ2 Na translocating NADH quinone reductase subunit C 0.000376231882575 0.00256640646819 0.00219017458562 +UniRef50_F7XFJ7 0.000316597803972 0.000136976954789 -0.000179620849183 +UniRef50_J9ZMG3 Sulfatase 0.00106336595782 0.000349487225087 -0.000713878732733 +UniRef50_UPI00025561EE acetyl transferase 1.36337218307e-05 2.03879841079e-05 6.7542622772e-06 +UniRef50_H1XS41 UDP N acetylglucosamine 2 epimerase 0.0142640826506 0.00132368405204 -0.0129403985986 +UniRef50_UPI000440B669 GTP binding protein TypA 4.40734722834e-06 1.05360835202e-05 6.12873629186e-06 +UniRef50_O34996 DNA polymerase I 0.00982209783596 0.00381261050911 -0.00600948732685 +UniRef50_UPI0003C8E764 PREDICTED 1.53252988244e-05 1.23413255449e-05 -2.9839732795e-06 +UniRef50_A1A1J0 Prolipoprotein diacylglyceryl transferase 1.23395672917e-05 5.45854487587e-06 -6.88102241583e-06 +UniRef50_UPI000422F3ED selenocysteine specific elongation factor 8.61093315199e-07 7.85166322825e-06 6.99056991305e-06 +UniRef50_Q6AL48 DNA polymerase IV 4.21910786817e-06 8.2810095914e-06 4.06190172323e-06 +UniRef50_D8ULE3 6.05268669368e-05 0.00107170768154 0.0010111808146 +UniRef50_F0J3V7 Spermidine putrescine ABC transporter ATP binding protein 0.000159053085188 0.0298462876047 0.0296872345195 +UniRef50_W6B709 Polyketide synthase module 7.43089220076e-06 3.58533568197e-06 -3.84555651879e-06 +UniRef50_A5UMQ8 Sirohydrochlorin cobaltochelatase 0.000976860718184 0.000830350615323 -0.000146510102861 +UniRef50_I0C110 ABC transporter ATP binding protein 0.0127319458355 0.00399872566427 -0.00873322017123 +UniRef50_W9R7E8 0.000197460722377 6.26499385029e-05 -0.000134810783874 +UniRef50_Q0AQ30 Cupin 2, conserved barrel domain protein 0.000179654636704 6.64589877522e-05 -0.000113195648952 +UniRef50_Q7R6Z1 4.03418588281e-05 4.09073072904e-05 5.654484623e-07 +UniRef50_W4UBI3 Methionine aminopeptidase 0.000505419007863 0.00323559328821 0.00273017428035 +UniRef50_UPI00036C6884 hypothetical protein 1.50251759691e-05 1.33356450077e-05 -1.6895309614e-06 +UniRef50_UPI0004773996 glutathione dependent formaldehyde activating protein 0.000106449046546 2.51234401897e-05 -8.13256063563e-05 +UniRef50_L0GI71 3.12763205378e-05 0.000123181196302 9.19048757642e-05 +UniRef50_L3S9H3 Ribonucleoside diphosphate reductase subunit beta 3.11647079041e-05 3.1755083627e-05 5.903757229e-07 +UniRef50_A5UMT8 Glycosyltransferase, GT2 family 0.00207778081188 0.00073274760759 -0.00134503320429 +UniRef50_UPI0002D9EB50 hypothetical protein 0.000165823926834 0.00017304324272 7.219315886e-06 +UniRef50_Q4QN88 Autotransported protein Lav 5.88289852779e-05 0.00332850886158 0.0032696798763 +UniRef50_UPI0003C7D864 glutamine ABC transporter permease, partial 0.000115141974253 6.24198187368e-05 -5.27221555162e-05 +UniRef50_Q3JNJ8 7.75502670264e-05 1.40137015244e-05 -6.3536565502e-05 +UniRef50_Q2YUE8 L threonine dehydratase biosynthetic IlvA 0.018827011969 0.00724451459336 -0.0115824973756 +UniRef50_F7ZM05 Transcriptional repressor protein, GntR family 0.00445347944015 0.00138381121022 -0.00306966822993 +UniRef50_A7ZR72 Putative Holliday junction resolvase 0.0006505796702 2.07034705365e-05 -0.000629876199663 +UniRef50_A0A023RUU7 Amino acid transporter LysE 0.000213268920259 0.00696996595112 0.00675669703086 +UniRef50_P0C2U0 Ornithine carbamoyltransferase, catabolic 0.0295050067199 0.00999124110298 -0.0195137656169 +UniRef50_UPI0003819001 hypothetical protein 0.000204966655252 0.000120043324752 -8.49233305e-05 +UniRef50_D8JNQ8 TonB dependent receptor family protein 5.7397768196e-05 0.00939099981864 0.00933360205044 +UniRef50_P00927 Threonine dehydratase, mitochondrial 8.80547639605e-06 1.37606657017e-05 4.95518930565e-06 +UniRef50_B1JZ61 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.03356108728e-05 1.25732171049e-05 2.2376062321e-06 +UniRef50_UPI0004763D11 phospholipase C 3.43978032837e-06 5.41026465223e-06 1.97048432386e-06 +UniRef50_UPI0003C19153 2.87191293888e-06 3.25073466698e-06 3.788217281e-07 +UniRef50_UPI0004775FF2 hypothetical protein 0.000103673245258 4.85830007678e-05 -5.50902444902e-05 +UniRef50_A0A011QW65 Peroxiredoxin OsmC 1.74850914136e-05 0.0022598909459 0.00224240585449 +UniRef50_A0A059IQB9 Intracellular septation protein 0.00812817760958 0.0013563348077 -0.00677184280188 +UniRef50_K8EXK1 0.00355880363919 0.00360660255706 4.779891787e-05 +UniRef50_UPI0003632065 hypothetical protein 0.000142597570754 0.00061673910237 0.000474141531616 +UniRef50_A6LZ50 Type I phosphodiesterase nucleotide pyrophosphatase 0.00058711732273 0.000830234785445 0.000243117462715 +UniRef50_L9LRB5 Phage like baseplate assembly protein 0.000237333191273 0.00663186863478 0.00639453544351 +UniRef50_B7K765 tRNA N6 adenosine threonylcarbamoyltransferase 5.34433307483e-06 4.21542372312e-06 -1.12890935171e-06 +UniRef50_J9GQJ1 0.000110425064815 0.000157625480542 4.7200415727e-05 +UniRef50_C1DCA4 NADH quinone oxidoreductase subunit B 3.29010767813e-05 3.15816401984e-05 -1.3194365829e-06 +UniRef50_A0A024HWH6 6.56748887516e-06 1.53868259162e-05 8.81933704104e-06 +UniRef50_UPI0003B3FB93 phosphoglyceromutase, partial 2.72469684363e-05 1.72497032308e-05 -9.9972652055e-06 +UniRef50_K0LDS3 0.117476636053 0.0364053648054 -0.0810712712476 +UniRef50_UPI00047CA582 hypothetical protein, partial 4.13977621038e-05 5.83649452105e-05 1.69671831067e-05 +UniRef50_G7W9E1 0.000117353157162 0.00105347548955 0.000936122332388 +UniRef50_UPI0003678819 30S ribosomal protein S4 4.49903194599e-05 0.000145600803013 0.000100610483553 +UniRef50_Q74M23 50S ribosomal protein L9 0.00248180294505 0.0105642783415 0.00808247539645 +UniRef50_R1FCU5 5.85484551006e-05 0.000356195151825 0.000297646696724 +UniRef50_UPI0002F40D47 hypothetical protein 7.89521503667e-05 8.32518483605e-06 -7.06269655307e-05 +UniRef50_UPI0003B5C775 serine hydroxymethyltransferase 5.11351828926e-06 5.75250346088e-06 6.3898517162e-07 +UniRef50_P04424 Argininosuccinate lyase 3.64537628291e-06 1.13340510461e-05 7.68867476319e-06 +UniRef50_F0MZR9 Division cluster competence associated protein Dca 0.000395175533181 0.00308298142422 0.00268780589104 +UniRef50_UPI00046E5BF5 molybdopterin converting factor 2.85198526403e-05 0.000153393233725 0.000124873381085 +UniRef50_UPI0004285813 LysR family transcriptional regulator 4.06204007828e-05 0.000334446640774 0.000293826239991 +UniRef50_E1UN96 Acetoin utilization protein AcuA 0.0109976347622 0.00143462369291 -0.00956301106929 +UniRef50_UPI00047EB5DF GTP binding protein Der 3.92410933432e-05 8.15770978929e-05 4.23360045497e-05 +UniRef50_G7LY49 Transcriptional regulator, GntR family with LacI sensor 0.000107138880474 0.00216360782098 0.00205646894051 +UniRef50_UPI00037C0A9E hypothetical protein 4.84249425861e-06 1.65707148363e-05 1.17282205777e-05 +UniRef50_D7A512 Phosphoesterase PA phosphatase related protein 0.00938876887294 0.00107784142672 -0.00831092744622 +UniRef50_Q18DL1 Imidazoleglycerol phosphate dehydratase 0.00249770903956 0.000339750673168 -0.00215795836639 +UniRef50_D4HC08 Acetyltransferase, GNAT family 0.000454802396205 0.00358749940603 0.00313269700983 +UniRef50_C7ZRN4 Ferrichrome ABC transporter lipoprotein 0.0174759500666 0.00526883332903 -0.0122071167376 +UniRef50_B1GZJ8 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.64299537135e-05 1.38398800962e-05 -2.5900736173e-06 +UniRef50_R7PT43 0.0026658983673 0.00100878681768 -0.00165711154962 +UniRef50_UPI00037A8649 hypothetical protein 3.8983062535e-05 6.46594232678e-06 -3.25171202082e-05 +UniRef50_UPI00035EAC91 hypothetical protein 7.41049517192e-06 1.46466068515e-05 7.23611167958e-06 +UniRef50_P58115 Pirin like protein YhaK 0.00320708062047 0.000643648938937 -0.00256343168153 +UniRef50_UPI000255F0AC hypothetical protein 0.000248537621893 0.000420917449006 0.000172379827113 +UniRef50_A0L4V9 Holliday junction ATP dependent DNA helicase RuvA 1.19688803803e-05 9.31464856579e-06 -2.65423181451e-06 +UniRef50_UPI0002195D67 branched chain amino acid transporter II carrier protein 1.18329702381e-05 8.20476773667e-06 -3.62820250143e-06 +UniRef50_UPI000466B529 hypothetical protein 4.08420978095e-06 1.64574307339e-05 1.23732209529e-05 +UniRef50_W4UAD6 0.000128525962353 0.000415548640033 0.00028702267768 +UniRef50_T1UCZ0 5.56276600439e-05 0.00192575512206 0.00187012746202 +UniRef50_R5EMC4 High affinity branched chain amino acid ABC transporter permease protein 0.000304424184557 0.0020662400917 0.00176181590714 +UniRef50_T2J2D2 1.44973390097e-05 0.00132613907844 0.00131164173943 +UniRef50_P39399 Probable HTH type transcriptional regulator YjjM 0.00260266046293 0.00101931496087 -0.00158334550206 +UniRef50_M1MSH2 0.00016508133623 0.00055267694285 0.00038759560662 +UniRef50_UPI0002F5C7CD alpha beta hydrolase 1.51696291932e-05 0.000102605566348 8.74359371548e-05 +UniRef50_Q93PU4 Toluene efflux pump membrane transporter TtgH 0.00250666853077 0.00059345301947 -0.0019132155113 +UniRef50_D9SQU7 Integral membrane sensor signal transduction histidine kinase 0.000144033330159 0.000841740202064 0.000697706871905 +UniRef50_E6MUI2 9.80794368573e-05 0.000656747023401 0.000558667586544 +UniRef50_UPI00047B6725 hypothetical protein 1.06633597457e-05 8.77705209188e-05 7.71071611731e-05 +UniRef50_D2N524 0.017992293918 0.00455666665755 -0.0134356272604 +UniRef50_A6LT70 Phage portal protein, SPP1 8.55977298968e-05 0.00188320343794 0.00179760570804 +UniRef50_Q9HZX3 Protein glutamine gamma glutamyltransferase 0.000129612184348 0.000211277513186 8.1665328838e-05 +UniRef50_UPI0003B4BDBC ammonia channel protein, partial 5.56072361872e-06 1.97273490028e-05 1.41666253841e-05 +UniRef50_UPI0003825C93 hypothetical protein 4.21165474215e-05 2.60926426477e-05 -1.60239047738e-05 +UniRef50_A6E305 0.00117001108687 0.000440141575438 -0.000729869511432 +UniRef50_B7VHW1 4.40053634301e-05 4.42692030221e-05 2.63839592e-07 +UniRef50_Q8RFZ3 UPF0324 membrane protein FN0533 0.00510608146403 0.0064889686054 0.00138288714137 +UniRef50_UPI00046D88F2 chemotaxis protein CheY 0.000212329841369 0.000124014358267 -8.8315483102e-05 +UniRef50_J9NWV1 0.000146619056202 1.38566019263e-05 -0.000132762454276 +UniRef50_UPI0004656FEC exodeoxyribonuclease III, partial 0.000115242140884 3.31921655198e-05 -8.20499753642e-05 +UniRef50_J9NWV5 0.000186367862954 0.000131385092849 -5.4982770105e-05 +UniRef50_G7LHS1 50S ribosomal protein L11 0.000127966030119 0.00107634812363 0.000948382093511 +UniRef50_Q1GI13 Sarcosine oxidase delta subunit heterotetrameric 0.0013059350353 0.000584785554841 -0.000721149480459 +UniRef50_P0AEZ1 5,10 methylenetetrahydrofolate reductase 0.003265715104 0.00496821647135 0.00170250136735 +UniRef50_UPI000371CC88 hypothetical protein 5.92390921903e-06 1.44421765379e-05 8.51826731887e-06 +UniRef50_UPI00046F08F9 hypothetical protein 6.22515870003e-06 1.65123695283e-05 1.02872108283e-05 +UniRef50_O24339 Catalase 1.28731583493e-05 3.99030818598e-05 2.70299235105e-05 +UniRef50_U1WYS6 3.14411773589e-05 3.27789641976e-05 1.3377868387e-06 +UniRef50_Q0PAB6 Methionine import ATP binding protein MetN 5.05238817765e-05 7.07785350661e-06 -4.34460282699e-05 +UniRef50_P76340 Probable transcriptional regulatory protein YedW 0.00314392418503 0.000652742079738 -0.00249118210529 +UniRef50_Q7CYZ1 0.00588388808465 0.000691259520325 -0.00519262856433 +UniRef50_UPI0003653AAE hypothetical protein 2.09634422185e-05 3.7200749198e-05 1.62373069795e-05 +UniRef50_UPI00036708EA hypothetical protein 1.08760833453e-05 4.13817692101e-05 3.05056858648e-05 +UniRef50_Q5HP06 ComG operon protein 2, putative 0.00761373105567 0.00427481076298 -0.00333892029269 +UniRef50_U3SS47 0.00613601895476 0.00276704045436 -0.0033689785004 +UniRef50_X5X320 0.000803209253459 3.62952899294e-05 -0.00076691396353 +UniRef50_X1XW63 8.61472439476e-07 3.72888720691e-05 3.64273996296e-05 +UniRef50_P31904 Hydrogenase expression formation protein hypD2 0.00238867649176 0.000673703378874 -0.00171497311289 +UniRef50_UPI00038BE2EA PREDICTED 9.97878154277e-05 6.96934046356e-05 -3.00944107921e-05 +UniRef50_UPI00037774DA hypothetical protein, partial 1.13094008105e-05 6.90680109783e-06 -4.40259971267e-06 +UniRef50_C6X1R3 9.0582828132e-06 1.2863918831e-05 3.8056360178e-06 +UniRef50_UPI0003B3A17D diguanylate cyclase 3.51950136031e-06 6.03642121887e-06 2.51691985856e-06 +UniRef50_F3NZ35 DeaD DeaH box helicase 0.000107893232944 0.00522110099308 0.00511320776014 +UniRef50_A5UMR2 0.0033681173745 0.000438012851869 -0.00293010452263 +UniRef50_A4WV08 Diguanylate cyclase 0.000927445709589 0.000262893209369 -0.00066455250022 +UniRef50_A0A011T5F4 Endoribonuclease L PSP 0.000260275134305 0.000101977974932 -0.000158297159373 +UniRef50_B0S9J5 Phosphopantetheine adenylyltransferase 1.18176026702e-05 3.51256386528e-05 2.33080359826e-05 +UniRef50_B9JJI7 Taurine uptake ABC transporter 0.0112127263255 0.00172877541624 -0.00948395090926 +UniRef50_P50933 L lactate dehydrogenase 0.000127529050285 0.0132898486497 0.0131623195994 +UniRef50_V9WHB8 Glycosidase 0.00807762967539 0.00207450535687 -0.00600312431852 +UniRef50_V4XDY8 0.000373886772526 0.0021251265856 0.00175123981307 +UniRef50_R5PCX4 Exo poly alpha D galacturonosidase 4.50593096713e-06 9.67740039764e-06 5.17146943051e-06 +UniRef50_UPI0003B768A4 recombinase 4.5199645901e-06 5.74372865655e-06 1.22376406645e-06 +UniRef50_UPI00036E0818 hypothetical protein 0.000205790536235 5.03367443727e-05 -0.000155453791862 +UniRef50_W5PP12 0.000138810376398 0.000115327315612 -2.3483060786e-05 +UniRef50_M5D5M6 Sel1 repeat protein 8.2360579389e-05 0.00409570297522 0.00401334239583 +UniRef50_UPI000440198D PREDICTED 7.00474893723e-05 4.8471628333e-05 -2.15758610393e-05 +UniRef50_UPI000161C024 Centromere kinetochore Zw10 family protein 2.3199443646e-06 1.12713598516e-05 8.951415487e-06 +UniRef50_S5Y0K2 0.00169391620219 8.05878861274e-05 -0.00161332831606 +UniRef50_UPI0003760BC3 MULTISPECIES 4.89424047585e-06 2.31013675797e-05 1.82071271038e-05 +UniRef50_Q9I190 Macrolide export ATP binding permease protein MacB 0.000455447095804 0.000135034294035 -0.000320412801769 +UniRef50_R6EZ78 3.81873320664e-05 0.00100869720292 0.000970509870854 +UniRef50_UPI00047838E9 hypothetical protein 6.98116780916e-06 0.00119247077706 0.00118548960925 +UniRef50_Y0F5P3 4.56871183667e-05 9.36827734116e-05 4.79956550449e-05 +UniRef50_UPI000289CB1A major facilitator superfamily protein, partial 1.07816483097e-05 1.48881112715e-05 4.1064629618e-06 +UniRef50_A3PSA8 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.00736660458483 0.000985693114313 -0.00638091147052 +UniRef50_UPI0003C1628B PREDICTED 7.98279663603e-05 5.66855738396e-06 -7.41594089763e-05 +UniRef50_UPI0002B4638C PREDICTED 2.9622551027e-05 1.85519084676e-05 -1.10706425594e-05 +UniRef50_I1QQ05 1.64209631864e-05 0.000244059077488 0.000227638114302 +UniRef50_UPI0002D42EAE hypothetical protein 1.27617033424e-05 0.000127253073745 0.000114491370403 +UniRef50_P33218 Inner membrane protein YebE 0.00718146866408 0.000284871419803 -0.00689659724428 +UniRef50_Q2FEZ8 Type II pantothenate kinase 0.00837728495441 0.00498212897562 -0.00339515597879 +UniRef50_W0A724 9.65574988622e-05 3.11998371079e-05 -6.53576617543e-05 +UniRef50_Q2NAY0 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.00247660068201 0.000937907685442 -0.00153869299657 +UniRef50_Q08T18 3.95785337346e-05 0.000147654682969 0.000108076149234 +UniRef50_UPI000379B915 hypothetical protein 1.28128443628e-05 1.34702476568e-05 6.57403294e-07 +UniRef50_Q83P86 Multidrug resistance protein MdtN 0.00349633074957 0.000224575441206 -0.00327175530836 +UniRef50_J0S1W5 0.0100519370973 0.00825894786802 -0.00179298922928 +UniRef50_X0Y200 Marine sediment metagenome DNA, contig 0.000257872450093 0.000519784693273 0.00026191224318 +UniRef50_F9NYE7 8.95461295654e-06 6.40177234507e-05 5.50631104942e-05 +UniRef50_Q929Y1 UDP N acetylmuramoylalanine D glutamate ligase 0.00769029302553 0.00752038726644 -0.00016990575909 +UniRef50_UPI00035EF123 RNA helicase, partial 0.00508005154185 0.00129224588278 -0.00378780565907 +UniRef50_D8JM33 Transcriptional regulator 0.000161318798655 0.00576074415175 0.00559942535309 +UniRef50_UPI0004642A6F hypothetical protein 4.44720228586e-06 2.53742864399e-05 2.0927084154e-05 +UniRef50_Q2RPX0 Bifunctional protein GlmU 4.02604257234e-06 8.94799120005e-06 4.92194862771e-06 +UniRef50_P0ACS3 Redox sensitive transcriptional activator SoxR 0.0109616726199 0.00486518883354 -0.00609648378636 +UniRef50_O27492 Probable acetolactate synthase small subunit 4.16845121931e-05 0.000476732928314 0.000435048416121 +UniRef50_Q5HKP7 Probable poly beta 1,6 N acetyl D glucosamine export protein 0.0140034374031 0.00187437927169 -0.0121290581314 +UniRef50_E4PHF9 Acyl CoA dehydrogenase domain protein 0.00210715970442 0.00899283327745 0.00688567357303 +UniRef50_Q4FRE8 0.000148811822151 0.00378412614624 0.00363531432409 +UniRef50_Q7F1Y2 B1065G12.2 protein 6.18880855235e-05 0.000101020537696 3.91324521725e-05 +UniRef50_Q9KG60 Urease subunit beta 4.75823324231e-05 2.45806091628e-05 -2.30017232603e-05 +UniRef50_Q8ERU3 UPF0736 protein OB1207 3.32028304098e-05 0.00023815863322 0.00020495580281 +UniRef50_C5N1I8 0.00834218501901 0.000447449553334 -0.00789473546568 +UniRef50_UPI000381384D hypothetical protein 3.51619133743e-05 2.06081518015e-05 -1.45537615728e-05 +UniRef50_UPI0003618EAB hypothetical protein, partial 5.43648348073e-05 9.71650887234e-05 4.28002539161e-05 +UniRef50_Q9RXH3 Folyl polyglutamate synthetase 9.20697533807e-05 0.00168304273219 0.00159097297881 +UniRef50_Q1B677 Methionine import ATP binding protein MetN 5.01470944613e-05 8.14555327617e-06 -4.20015411851e-05 +UniRef50_P45756 Putative general secretion pathway protein A 0.00306506657814 0.000490316835839 -0.0025747497423 +UniRef50_M0X8Z7 7.53570987378e-05 0.00173711773053 0.00166176063179 +UniRef50_S5XST5 Apolipoprotein N acyltransferase 0.00131256940276 0.000413993030489 -0.000898576372271 +UniRef50_P77775 Epimerase family protein YfcH 0.00462617505083 0.00238109626062 -0.00224507879021 +UniRef50_B3E5B6 Carbon starvation protein CstA 0.00016823606177 0.000792005695395 0.000623769633625 +UniRef50_U9LZ47 0.000778813866117 0.000297551213411 -0.000481262652706 +UniRef50_D9RBR2 7.08175081756e-05 5.29053836182e-05 -1.79121245574e-05 +UniRef50_Q0AAE8 Choline carnitine betaine transporter 0.00746092788761 0.00307461818209 -0.00438630970552 +UniRef50_P43924 Pyruvate kinase 0.00084739262491 0.00185659826242 0.00100920563751 +UniRef50_Q98NZ9 Mll9669 protein 0.00813232557983 0.00104703439739 -0.00708529118244 +UniRef50_P31459 2 dehydro 3 deoxygalactonokinase 0.00964904222789 0.000905922907199 -0.00874311932069 +UniRef50_A3M531 0.000319488031859 0.00842750609 0.00810801805814 +UniRef50_A3M532 0.000322542287064 0.0164587911412 0.0161362488541 +UniRef50_UPI0003B75002 NAD synthetase, partial 6.8785157491e-06 6.02225722074e-05 5.33440564583e-05 +UniRef50_UPI000369E819 hypothetical protein 0.00235928743033 0.000770391404865 -0.00158889602547 +UniRef50_UPI0003B3957E 50S ribosomal protein L21 0.000354746208623 0.00018040743114 -0.000174338777483 +UniRef50_B5XIZ5 0.000231586496233 0.00780749523569 0.00757590873946 +UniRef50_Q747W9 Cyclic pyranopterin monophosphate synthase 9.90184247422e-06 0.000158802993864 0.00014890115139 +UniRef50_Q82ZQ1 Allantoinase 5.7814671419e-05 0.000925703107414 0.000867888435995 +UniRef50_A6LYV3 Putative cell wall binding repeat containing protein 0.000253888640807 0.00304546633062 0.00279157768981 +UniRef50_D8R6N5 7.02068109087e-07 3.42717333352e-06 2.72510522443e-06 +UniRef50_Q8DU77 0.00334807762799 0.00194832319792 -0.00139975443007 +UniRef50_B5QY15 Glucans biosynthesis protein G 0.0036080294815 0.000374663143364 -0.00323336633814 +UniRef50_B2SD76 Leu Ile Val binding protein family 0.0145561061685 0.00413918022378 -0.0104169259447 +UniRef50_E8QKJ5 0.000179755232787 0.000654329403602 0.000474574170815 +UniRef50_B4TUR5 tRNA modifying protein YgfZ 0.00469172810982 0.000926099184118 -0.0037656289257 +UniRef50_Q8FAD6 Ornithine carbamoyltransferase 0.0293808554165 0.0156584006965 -0.01372245472 +UniRef50_C7ZTG4 Polysaccharide biosynthesis protein 0.00837963379925 0.00328607708217 -0.00509355671708 +UniRef50_X0Z8U3 Marine sediment metagenome DNA, contig 5.12435074799e-06 1.84918151269e-05 1.33674643789e-05 +UniRef50_E8TLE8 0.0016795067491 0.000259595204728 -0.00141991154437 +UniRef50_I4YKM8 4.87422842948e-05 2.7754541718e-05 -2.09877425768e-05 +UniRef50_A5V3U6 Trigger factor 9.24320539651e-06 3.74457668001e-05 2.82025614036e-05 +UniRef50_C7J1D9 Os04g0448000 protein 6.13138236987e-06 1.31758419328e-05 7.04445956293e-06 +UniRef50_L7WY02 Aldo keto reductase 0.00937115843088 0.00485654776626 -0.00451461066462 +UniRef50_B1GZ10 Peptide deformylase 9.38659618238e-06 4.33917978598e-05 3.40052016774e-05 +UniRef50_C1N707 Predicted protein 1.7997358605e-05 0.000299289718371 0.000281292359766 +UniRef50_O98946 Ribulose bisphosphate carboxylase small chain 0.000510700580774 6.52632221923e-05 -0.000445437358582 +UniRef50_Q83RQ0 Endo type membrane bound lytic murein transglycosylase A like protein 0.00247605709102 0.00250503445938 2.897736836e-05 +UniRef50_Q7VF52 Phosphoribosylformylglycinamidine synthase 2 2.39814681004e-05 6.2925027963e-06 -1.76889653041e-05 +UniRef50_A6LZG6 0.000133230349002 0.000941179045577 0.000807948696575 +UniRef50_Q21CR1 4.10145374898e-05 2.23737053871e-05 -1.86408321027e-05 +UniRef50_UPI000477F471 hypothetical protein 2.90615170702e-06 1.03856858866e-05 7.47953417958e-06 +UniRef50_UPI0003B5D675 peptide chain release factor 1 3.24051018211e-06 3.57622475881e-05 3.2521737406e-05 +UniRef50_UPI0002558465 threonine dehydratase 1.01564200217e-05 3.8635999938e-05 2.84795799163e-05 +UniRef50_I6L918 0.0054388088772 0.00368939077079 -0.00174941810641 +UniRef50_B9JG36 2.87870076623e-05 1.41714137393e-05 -1.4615593923e-05 +UniRef50_UPI000248E5FB phenazine biosynthesis protein PhzF 1.08909207077e-05 2.10203693822e-05 1.01294486745e-05 +UniRef50_B8A1Z2 0.000700083609837 0.00134847935489 0.000648395745053 +UniRef50_B6VA55 Nitrite oxidoreductase 6.46893964235e-05 5.16987403629e-05 -1.29906560606e-05 +UniRef50_P54932 Protein RdxB 0.0215385073674 0.00460038668437 -0.016938120683 +UniRef50_A0A023SBI8 5.10693985452e-05 2.41645725522e-05 -2.6904825993e-05 +UniRef50_UPI000328C02F PREDICTED 7.84896938634e-06 1.2727671947e-05 4.87870256066e-06 +UniRef50_W9GJ48 Sugar ABC transporter substrate binding protein 0.00012785591139 2.74210266296e-05 -0.00010043488476 +UniRef50_Q5HRJ0 Deoxynucleoside kinase family protein 0.019953037022 0.00263820951177 -0.0173148275102 +UniRef50_UPI0003B78493 5 hydroxyisourate hydrolase 2.51682042903e-05 3.39041629979e-05 8.7359587076e-06 +UniRef50_F7ZII7 0.00106249025572 9.62020478533e-05 -0.000966288207867 +UniRef50_A0A034TUN2 Excinuclease ABC subunit B 4.37431623795e-05 0.00167173109308 0.0016279879307 +UniRef50_V4R3G1 Mucoidy inhibitor A 7.39916989239e-05 0.00018248200115 0.000108490302226 +UniRef50_UPI0003712D73 MULTISPECIES 3.38903913587e-05 1.1634377876e-05 -2.22560134827e-05 +UniRef50_P75857 Probable outer membrane usher protein ElfC 0.00192456015529 0.000592241177033 -0.00133231897826 +UniRef50_UPI0003B39972 LuxR family transcriptional regulator 6.96695990318e-05 1.80647820858e-05 -5.1604816946e-05 +UniRef50_Q2S5J0 NADH quinone oxidoreductase subunit D 7.65477497331e-06 1.40351332424e-05 6.38035826909e-06 +UniRef50_P76173 Anaerobic dimethyl sulfoxide reductase chain YnfH 0.000816390205017 0.000214775785594 -0.000601614419423 +UniRef50_Q97FQ5 DNA ligase 2 0.000433010862591 0.000704647954935 0.000271637092344 +UniRef50_T2QCI3 2.27418815467e-05 7.11468063849e-05 4.84049248382e-05 +UniRef50_A4VMJ3 Transcriptional regulator FleQ 0.000702497623611 0.000648446879999 -5.4050743612e-05 +UniRef50_Q7DDH4 Putative lipoprotein NMB1126 NMB1164 0.00313094532513 0.00274762591159 -0.00038331941354 +UniRef50_Q5FQD6 Bifunctional enzyme IspD IspF 5.76549021767e-06 1.88766602511e-05 1.31111700334e-05 +UniRef50_L7WZU8 0.00881179534533 0.00266189880022 -0.00614989654511 +UniRef50_K2AF52 0.000704701485112 0.00059112148686 -0.000113579998252 +UniRef50_F0KP57 Phospholipase D 0.000108681186813 0.00470513163512 0.00459645044831 +UniRef50_B1ERT8 0.000120346239139 0.00137356607068 0.00125321983154 +UniRef50_Q4A047 Imidazole glycerol phosphate synthase subunit HisH 0.0413805192798 0.00649619394876 -0.034884325331 +UniRef50_P0CZ69 Arginine regulator 0.00496270249132 0.00388427336852 -0.0010784291228 +UniRef50_P80480 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 2.93073393585e-05 4.66582837276e-05 1.73509443691e-05 +UniRef50_D9SZV9 PKD domain containing protein 2.80676642579e-06 2.7807121103e-05 2.50003546772e-05 +UniRef50_A5FW26 MaoC domain protein dehydratase 1.63492746221e-05 2.41295965706e-05 7.7803219485e-06 +UniRef50_Q42565 Anthranilate synthase beta subunit 1, chloroplastic 6.86365626983e-06 9.51794943474e-06 2.65429316491e-06 +UniRef50_A5UMG8 Cell wall biosynthesis protein, MurD like peptide ligase family 0.00415382107225 0.0011493684761 -0.00300445259615 +UniRef50_F5LZS4 Hemolysin type calcium binding region RTX toxin 0.00253565646349 0.000717798532973 -0.00181785793052 +UniRef50_A7FX06 Aminotransferase, class IV 0.000154496311943 0.00121200914548 0.00105751283354 +UniRef50_R8A4W3 3.538727371e-05 3.42998225786e-05 -1.0874511314e-06 +UniRef50_UPI0003785F11 hypothetical protein 1.09495978848e-05 1.9242845689e-05 8.2932478042e-06 +UniRef50_UPI00047E325C AsnC family transcriptional regulator 0.000175254310477 5.93208242369e-05 -0.00011593348624 +UniRef50_UPI0003C1951F PREDICTED 3.10570402783e-06 1.60796633943e-05 1.29739593665e-05 +UniRef50_C3F9W4 UTP glucose 1 phosphate uridylyltransferase 0.0268080905321 0.00522621891568 -0.0215818716164 +UniRef50_A0A023S292 Lysozyme 0.000159276788545 0.0046453489691 0.00448607218056 +UniRef50_UPI00047B031E hypothetical protein 2.93037015638e-05 7.30223488702e-05 4.37186473064e-05 +UniRef50_Q9PE70 30S ribosomal protein S3 0.00396026569084 0.0054993372217 0.00153907153086 +UniRef50_Q3SSY2 50S ribosomal protein L10 0.0220554035469 0.00906485510652 -0.0129905484404 +UniRef50_A6LYQ4 Integral membrane sensor signal transduction histidine kinase 0.00055024423871 0.00184962317073 0.00129937893202 +UniRef50_Q9UYX0 Probable L threonine 3 dehydrogenase 1.755425112e-05 4.73576510301e-05 2.98033999101e-05 +UniRef50_P04993 RecBCD enzyme subunit RecD 0.0036139973315 0.000946272575355 -0.00266772475615 +UniRef50_A9MFX7 Anaerobic nitric oxide reductase transcription regulator NorR 9.04691662704e-05 3.90320603757e-05 -5.14371058947e-05 +UniRef50_B9E7Y2 0.00472022732158 0.000818843617088 -0.00390138370449 +UniRef50_E8QJ87 0.000177693370281 0.00408584807692 0.00390815470664 +UniRef50_UPI000475BC46 hypothetical protein 4.41665249955e-06 1.98309544545e-05 1.5414301955e-05 +UniRef50_F2AHK1 0.000356204434747 5.35614800893e-05 -0.000302642954658 +UniRef50_UPI0004757A91 hypothetical protein, partial 6.29486685346e-05 0.000105471167815 4.25224992804e-05 +UniRef50_Q8X613 Transcriptional regulatory protein ZraR 0.00280972716817 0.00142828352556 -0.00138144364261 +UniRef50_UPI0003B659FC ribose ABC transporter permease 9.68496902309e-05 1.23103396877e-05 -8.45393505432e-05 +UniRef50_E1VQY8 Transcriptional regulator, ArsR family 0.000201147063333 0.000184380877328 -1.6766186005e-05 +UniRef50_E0TTE0 Alpha,alpha phosphotrehalase 0.000217572516048 0.00404261283732 0.00382504032127 +UniRef50_UPI00046F1189 acriflavine resistance protein B 3.70692306318e-06 7.74186057319e-06 4.03493751001e-06 +UniRef50_UPI00018172F7 putative 3 oxoadipate coa transferase subunit b protein 4.29546475366e-05 7.18146875696e-05 2.8860040033e-05 +UniRef50_V5SS13 0.00166234588963 0.00105014791021 -0.00061219797942 +UniRef50_A0A023RZV0 0.000316093099584 0.005587631498 0.00527153839842 +UniRef50_T5ME54 Cysteine and O acetyl L serine efflux system protein 0.00017055089858 0.000322750497486 0.000152199598906 +UniRef50_M1XIF6 7.6549315979e-05 0.000167211608127 9.0662292148e-05 +UniRef50_Q2T6R3 1,4 alpha glucan branching enzyme GlgB 2.21986409392e-06 2.38353364791e-06 1.6366955399e-07 +UniRef50_L0A7U4 ATPase involved in chromosome partitioning 1.64498616111e-05 0.00176178405531 0.0017453341937 +UniRef50_I0BSQ6 Diguanylate cyclase 3.20243605063e-06 4.38854943236e-06 1.18611338173e-06 +UniRef50_B9KLX0 Class I monoheme cytochrome c 0.00234342667449 0.000541865514113 -0.00180156116038 +UniRef50_Q9X7Q6 Isopentenyl diphosphate Delta isomerase 6.73496260952e-05 1.48061081009e-05 -5.25435179943e-05 +UniRef50_UPI0001744EBE organic solvent ABC transporter ATP binding protein 0.000281047071947 5.64196916871e-05 -0.00022462738026 +UniRef50_U3SSQ2 Two component sensor histidine kinase 0.00692994102605 0.00200782120446 -0.00492211982159 +UniRef50_P71229 Hydrogenase 4 transcriptional activator 0.003178199986 0.000271301274573 -0.00290689871143 +UniRef50_UPI000368F50B hypothetical protein 1.10865871462e-05 1.63199368221e-05 5.2333496759e-06 +UniRef50_J8V9R1 Monovalent cation H+ antiporter subunit C 0.00147101440344 9.34814084677e-05 -0.00137753299497 +UniRef50_H9USG2 0.000505624573592 0.000389428622235 -0.000116195951357 +UniRef50_Q09BZ8 2.00828485434e-05 0.000230280437258 0.000210197588715 +UniRef50_G7MBG2 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 0.000517529831499 0.000719557700774 0.000202027869275 +UniRef50_O26010 Phosphopantetheine adenylyltransferase 0.000335797090271 0.00135841420174 0.00102261711147 +UniRef50_K9NP10 L glutamine synthetase 0.000780105026029 0.000132034294431 -0.000648070731598 +UniRef50_R5CIR9 0.00405337209432 0.000999760285355 -0.00305361180897 +UniRef50_Q4BUD1 1.67334413844e-05 5.82590430039e-05 4.15256016195e-05 +UniRef50_F0MM85 Hemagglutinin hemolysin family protein 3.43846694326e-05 0.00322654577832 0.00319216110889 +UniRef50_UPI0004127258 patatin 5.19166647299e-06 1.87730061253e-05 1.35813396523e-05 +UniRef50_A0A056S3J4 Integral membrane protein 5.77598128449e-05 4.44386686764e-05 -1.33211441685e-05 +UniRef50_Q6A8D2 0.000100117637944 0.00249533088139 0.00239521324345 +UniRef50_B9KV10 0.017709685862 0.00491575854061 -0.0127939273214 +UniRef50_A6LRB3 Uroporphyrinogen decarboxylase 0.000963312257075 0.00151073541187 0.000547423154795 +UniRef50_Q6FEM0 Outer membrane protein assembly factor BamB 0.000883306680243 0.00642988052296 0.00554657384272 +UniRef50_W4KYJ2 Transposase IS861 0.000328412050456 4.09367210291e-05 -0.000287475329427 +UniRef50_UPI0002558C10 AsmA family protein 2.81577533277e-06 4.37578616922e-06 1.56001083645e-06 +UniRef50_UPI000288B7A4 ATP binding protein 4.32932306348e-05 2.92501517255e-05 -1.40430789093e-05 +UniRef50_Q8NXM4 DegV domain containing protein MW0711 0.0205929689154 0.00674372845395 -0.0138492404614 +UniRef50_F2GB41 EVE domain containing protein 5.29068628397e-05 0.000178979865362 0.000126073002522 +UniRef50_B9DRS8 Glycogen synthase 0.000532436456921 0.00389091343246 0.00335847697554 +UniRef50_B9KRQ9 Response regulator receiver protein 0.0217574078598 0.00174357519639 -0.0200138326634 +UniRef50_K3Z8U3 4.76745608984e-05 7.2735352914e-05 2.50607920156e-05 +UniRef50_B0VCR0 0.000323811248118 0.00683531573359 0.00651150448547 +UniRef50_UPI00037D7B24 hypothetical protein 1.9090268999e-05 1.02833438706e-05 -8.8069251284e-06 +UniRef50_U6JY85 3.29528794402e-06 5.79917821711e-05 5.46964942271e-05 +UniRef50_B9KU70 Periplasmic solute binding protein 0.000737660930939 0.000431977079183 -0.000305683851756 +UniRef50_D7AAV7 1.23953317528e-05 7.56672215716e-05 6.32718898188e-05 +UniRef50_Q3J682 2 dehydropantoate 2 reductase 0.00160426901248 0.00100349392811 -0.00060077508437 +UniRef50_U5MW40 SpoIIIAH like protein 0.00100051496729 0.000344727671428 -0.000655787295862 +UniRef50_UPI0002D3A5FE hypothetical protein 1.0900914955e-05 2.76984442957e-05 1.67975293407e-05 +UniRef50_A5UKH3 Homoserine O acetyltransferase 0.00164405679011 0.000888144225338 -0.000755912564772 +UniRef50_G9A115 3.86500948995e-05 1.79882755269e-05 -2.06618193726e-05 +UniRef50_UPI0003C1A4EF PREDICTED 1.7173856009e-05 3.74289079136e-05 2.02550519046e-05 +UniRef50_A4IT51 Anthranilate 3 monooxygenase oxygenase component 7.81544490361e-05 5.59852545483e-06 -7.25559235813e-05 +UniRef50_UPI000343F89B PREDICTED 5.10851661878e-06 3.99563521443e-05 3.48478355255e-05 +UniRef50_UPI00037F4E3B hypothetical protein, partial 4.01591105753e-05 0.000227460387961 0.000187301277386 +UniRef50_P22996 Resolvase 0.00061407918475 0.0130000128978 0.012385933713 +UniRef50_P57286 Superoxide dismutase [Mn] 1.0941028632e-05 4.93483594644e-05 3.84073308324e-05 +UniRef50_D3UZU9 9.63058280965e-05 0.000102416584098 6.1107560015e-06 +UniRef50_C5LZC5 9.85623182366e-06 1.46790110439e-05 4.82277922024e-06 +UniRef50_M1MI36 0.000404652752376 0.000280808277526 -0.00012384447485 +UniRef50_P15931 Peptidoglycan hydrolase FlgJ 0.000378460096157 0.000782246461611 0.000403786365454 +UniRef50_UPI00029A0F96 PfkB domain containing protein 3.22806675209e-05 2.74435806161e-05 -4.8370869048e-06 +UniRef50_E5QV40 0.00673936198574 0.00343759260094 -0.0033017693848 +UniRef50_A4WQH8 Plasmid pRiA4b ORF 3 family protein 0.00445558787576 0.00204495150905 -0.00241063636671 +UniRef50_UPI00036A1A43 hypothetical protein 4.32102011609e-06 2.86406489301e-05 2.4319628814e-05 +UniRef50_Q795R8 0.0155327439546 0.00498980199346 -0.0105429419611 +UniRef50_UPI0002D2C86E hypothetical protein 0.000203419303959 6.4634999714e-05 -0.000138784304245 +UniRef50_UPI000346B9B9 hypothetical protein 6.53120525372e-05 0.0101908430781 0.0101255310256 +UniRef50_P77739 0.00188448308011 0.00155104680679 -0.00033343627332 +UniRef50_X8FNE2 HD domain protein 7.20469324592e-06 4.49658595652e-05 3.77611663193e-05 +UniRef50_UPI00024935CA phosphoenolpyruvate dependent sugar phosphotransferase system EIIABC, glucose specific 2.48118930723e-05 0.000262704621208 0.000237892728136 +UniRef50_P77732 0.00421043158161 0.00127290286732 -0.00293752871429 +UniRef50_P77730 0.00358234604254 0.0017976311909 -0.00178471485164 +UniRef50_O26944 Metalloprotease MTH_856 0.00504742613661 0.002557156869 -0.00249026926761 +UniRef50_F0XYT4 0.000172188496817 0.000831996789275 0.000659808292458 +UniRef50_Q46871 NADPH dependent ferric chelate reductase 0.00142465992177 0.000331816522686 -0.00109284339908 +UniRef50_P37686 Probable alcohol dehydrogenase 0.000424285620785 0.000759885353708 0.000335599732923 +UniRef50_F4PD55 Expressed protein 5.70557914837e-05 3.9377370667e-05 -1.76784208167e-05 +UniRef50_A9M1Y3 0.000367681157978 0.00968872378748 0.0093210426295 +UniRef50_D0J3S0 TRAP dicarboxylate transporter, DctM subunit 4.99694444778e-06 8.59844440151e-06 3.60149995373e-06 +UniRef50_UPI00037FD144 hypothetical protein 4.90348117431e-06 7.08551366165e-06 2.18203248734e-06 +UniRef50_M9VHU4 DNA gyrase topoisomerase IV, A subunit 0.000240810985871 0.00560413711113 0.00536332612526 +UniRef50_A3TUW7 1.74106393237e-05 5.50073954361e-06 -1.19098997801e-05 +UniRef50_Q28UZ5 Hypoxia induced protein conserved protein 2.59828273401e-05 4.74217819644e-05 2.14389546243e-05 +UniRef50_A3M3B5 Arylsulfatase 0.000138543760154 0.005251665161 0.00511312140085 +UniRef50_M4XE09 0.000782669319412 0.000911542503506 0.000128873184094 +UniRef50_UPI00037E95DD MULTISPECIES 0.000129059943961 3.69465814678e-05 -9.21133624932e-05 +UniRef50_O27566 0.00137966418622 0.000714501112457 -0.000665163073763 +UniRef50_A4WFL4 Glycogen debranching enzyme 3.03229246733e-05 7.26431331438e-05 4.23202084705e-05 +UniRef50_UPI0003BBA1AF PREDICTED 3.56568970714e-05 1.25392858888e-05 -2.31176111826e-05 +UniRef50_Q891J7 ATP dependent Clp protease proteolytic subunit 1.03375895373e-05 0.000111712450451 0.000101374860914 +UniRef50_D4JWQ1 Seryl tRNA synthetase 8.89597774156e-05 0.00085699369107 0.000768033913654 +UniRef50_UPI000376DE1E TonB dependent receptor, partial 7.79071648464e-06 0.000202769149232 0.000194978432747 +UniRef50_UPI00046628D5 hypothetical protein 3.62445038034e-05 1.08889903377e-05 -2.53555134657e-05 +UniRef50_Q984K6 Phosphoribosylformylglycinamidine cyclo ligase 0.00110366838633 0.000714085834325 -0.000389582552005 +UniRef50_R7QBK2 Stackhouse genomic scaffold, scaffold_21 0.000282814053813 0.000119603647342 -0.000163210406471 +UniRef50_UPI0003B66A9A magnesium transporter MgtC 7.37222419999e-05 4.57252778069e-05 -2.7996964193e-05 +UniRef50_G2WVV9 DUF814 domain containing protein 1.83852447782e-05 2.15086773379e-05 3.1234325597e-06 +UniRef50_E4AYJ6 0.000154939573793 0.00450665566965 0.00435171609586 +UniRef50_P63412 Acetate kinase 0.00216801849266 0.000797908860343 -0.00137010963232 +UniRef50_UPI0002BC6437 hypothetical protein 0.000943714972126 0.0142410437294 0.0132973287573 +UniRef50_UPI0003FE028E hypothetical protein 2.30551906406e-05 8.96698187744e-06 -1.40882087632e-05 +UniRef50_V7GTL1 0.000910814090943 0.000348435704399 -0.000562378386544 +UniRef50_Q1MMP4 50S ribosomal protein L20 0.0076848228418 0.00162466788691 -0.00606015495489 +UniRef50_Q3IV37 0.0063481836455 0.00203595035782 -0.00431223328768 +UniRef50_Q3IV35 0.00959974209065 0.00289784039355 -0.0067019016971 +UniRef50_Q3IV32 0.0146959023823 0.00332398067358 -0.0113719217087 +UniRef50_A6LSR7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.00117224678083 0.000300831957759 -0.000871414823071 +UniRef50_P71310 0.000213164314041 0.000630569477283 0.000417405163242 +UniRef50_Q3JQ29 5.20829069546e-06 2.39254677281e-06 -2.81574392265e-06 +UniRef50_A1B962 Ribosomal RNA large subunit methyltransferase E 0.00660613515998 0.000839555925897 -0.00576657923408 +UniRef50_A6LTV3 0.000703719542133 0.000951450308472 0.000247730766339 +UniRef50_Q034X6 30S ribosomal protein S12 0.000268354968373 0.0250706489643 0.0248022939959 +UniRef50_E4D6N2 0.000327299990334 0.00508258515809 0.00475528516776 +UniRef50_X1MDA3 Marine sediment metagenome DNA, contig 3.14479091987e-05 0.00113583348153 0.00110438557233 +UniRef50_C0RJC1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.00429592993492 0.00267961871454 -0.00161631122038 +UniRef50_R6IDY7 0.000139396577579 0.000306037845981 0.000166641268402 +UniRef50_Q6BA81 4.92758610609e-05 1.00823769841e-05 -3.91934840768e-05 +UniRef50_Q8CQ58 ATP utilizing enzyme of the PP loop superfamily 0.0077979601101 0.00390104029723 -0.00389691981287 +UniRef50_P37659 Protein BcsG homolog 0.0039883975772 0.000631616288139 -0.00335678128906 +UniRef50_E6DXU7 ABC transporter, solute binding protein 0.000285912243473 0.00705307519839 0.00676716295492 +UniRef50_Q2SVU4 Ribose import ATP binding protein RbsA 1 1.25968014835e-05 5.54673924839e-05 4.28705910004e-05 +UniRef50_Q98FL3 Phosphate transport system permease protein PstC 0.00367890663263 0.000364588524928 -0.0033143181077 +UniRef50_A1BBE0 Alkylhydroperoxidase like protein, AhpD family 0.012539891893 0.000750808552819 -0.0117890833402 +UniRef50_P76463 0.00296083119914 0.000708964037068 -0.00225186716207 +UniRef50_P76462 0.00336093646212 0.000228927678448 -0.00313200878367 +UniRef50_P76466 0.00374512144197 0.00157109976358 -0.00217402167839 +UniRef50_UPI0004753B4A sugar ABC transporter permease 4.33409094142e-05 1.26550092953e-05 -3.06859001189e-05 +UniRef50_P0ABE5 Cytochrome b561 0.00233723534335 0.00347431417878 0.00113707883543 +UniRef50_D4H299 2.42215105498e-05 1.85149550807e-05 -5.7065554691e-06 +UniRef50_UPI0003C78158 hypothetical protein, partial 8.27601264253e-05 3.39050645762e-05 -4.88550618491e-05 +UniRef50_UPI00046770C1 hypothetical protein 2.2937290419e-05 3.62747432931e-05 1.33374528741e-05 +UniRef50_UPI0003B4B937 ribonuclease D 5.64863518462e-05 9.8832521296e-06 -4.66030997166e-05 +UniRef50_Q3IV99 HipA domain containing protein 0.013053203913 0.00437044951208 -0.00868275440092 +UniRef50_V9WGZ8 Di and tricarboxylate transporter 0.0145184687072 0.00456846683289 -0.00995000187431 +UniRef50_A0PKQ3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.66419759311e-05 7.08394712289e-05 4.1974952978e-06 +UniRef50_I3VIL5 Exodeoxyribonuclease V beta subunit 0.000569426275479 0.000253853901306 -0.000315572374173 +UniRef50_C4LGQ2 Putative lysophospholipase 1.66219999784e-05 2.8086347897e-05 1.14643479186e-05 +UniRef50_P21627 High affinity branched chain amino acid transport system permease protein BraD 0.00333223303574 0.00138478674986 -0.00194744628588 +UniRef50_UPI0001CC0C54 phosphogluconate dehydratase 7.38538367525e-05 3.75032691266e-05 -3.63505676259e-05 +UniRef50_UPI000479E1B9 biotin biosynthesis protein BioY 1.46785979329e-05 4.47382777095e-05 3.00596797766e-05 +UniRef50_B0TGJ1 6.66112406707e-06 7.4066114148e-06 7.4548734773e-07 +UniRef50_K7SIM7 Phosphoglycerate mutase family protein 0.000169783803081 0.00302176993236 0.00285198612928 +UniRef50_G8P2V7 Integral membrane protein 2.30898615207e-05 1.85342808422e-05 -4.5555806785e-06 +UniRef50_X2NCX1 3.21882041851e-05 1.19660531471e-05 -2.0222151038e-05 +UniRef50_UPI00034D1C35 hypothetical protein 1.47512589275e-05 1.61161441976e-06 -1.31396445077e-05 +UniRef50_G9ZD87 1.23629562631e-05 0.000144930957181 0.000132568000918 +UniRef50_UPI0003EC446E PREDICTED 3.85481968413e-06 5.94359184417e-06 2.08877216004e-06 +UniRef50_U5X589 Dehydrogenase 1.53040119441e-05 0.000128074170541 0.000112770158597 +UniRef50_D7G0G3 0.000201371754319 4.72848563011e-05 -0.000154086898018 +UniRef50_UPI0003695FD6 membrane protein 1.77855156612e-05 4.54280430137e-05 2.76425273525e-05 +UniRef50_P0AFF3 Nucleoside permease NupC 0.00403773622393 0.00207682670989 -0.00196090951404 +UniRef50_UPI00047A3E0B MarR family transcriptional regulator 0.000145732613926 2.14726889456e-05 -0.00012425992498 +UniRef50_A5UNU3 0.00276225339721 0.00350490937895 0.00074265598174 +UniRef50_UPI000422F603 organic hydroperoxide resistance protein 2.43903343146e-05 0.000299027730413 0.000274637396098 +UniRef50_T2A3R6 0.000456636276836 0.00201923160101 0.00156259532417 +UniRef50_O33517 Protein translocase subunit SecD 0.00732020902115 0.00131898771393 -0.00600122130722 +UniRef50_B5FUN9 Zinc transport protein ZntB 0.00395122011708 0.00125944441878 -0.0026917756983 +UniRef50_P77445 Ethanolamine utilization protein EutE 0.00288630781035 0.00133069157337 -0.00155561623698 +UniRef50_B5YU52 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 0.002511540717 0.00212586237943 -0.00038567833757 +UniRef50_V5T2Q4 Diguanylate cyclase 0.000321028785553 0.000132703086319 -0.000188325699234 +UniRef50_C7MC16 ATP dependent zinc metalloprotease FtsH 2.96219661011e-06 0.0030749185114 0.00307195631479 +UniRef50_Q7W4T9 Holliday junction ATP dependent DNA helicase RuvA 1.33380848001e-05 1.10694518557e-05 -2.2686329444e-06 +UniRef50_P00946 Mannose 6 phosphate isomerase 0.0014161205321 0.000309532785374 -0.00110658774673 +UniRef50_V5T4B0 Pilus assembly protein PilV 3.68236392742e-05 0.000165908261343 0.000129084622069 +UniRef50_T0VJG1 PTS fructose IIC component 4.21560749834e-05 4.2395120547e-05 2.390455636e-07 +UniRef50_J2DPW6 8.11797825447e-05 0.000125134197123 4.39544145783e-05 +UniRef50_Q3Z5U2 HTH type transcriptional regulator SgrR 0.00295981232245 0.000763393652057 -0.00219641867039 +UniRef50_F9Z280 0.000519384184784 0.0057716621663 0.00525227798152 +UniRef50_R7H8U6 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.000172374420867 0.000602794437515 0.000430420016648 +UniRef50_K1CPP9 0.00102360880271 0.000514025013599 -0.000509583789111 +UniRef50_P04995 Exodeoxyribonuclease I 0.00392816663246 0.00087217593902 -0.00305599069344 +UniRef50_UPI00031469E2 hypothetical protein 3.49009310975e-05 6.01597668139e-05 2.52588357164e-05 +UniRef50_A6LY50 MATE efflux family protein 0.00037798493582 0.000563503679245 0.000185518743425 +UniRef50_B7H068 Histidine tRNA ligase 0.000374389062106 0.00904860851041 0.0086742194483 +UniRef50_UPI000419FBF3 ABC transporter permease 7.80845981907e-05 0.000168010086243 8.99254880523e-05 +UniRef50_UPI00035EE3E6 hypothetical protein 2.74712410009e-06 3.41102951508e-06 6.6390541499e-07 +UniRef50_G8VDA6 0.000448895982328 0.00490907479145 0.00446017880912 +UniRef50_U2BA89 3.92571083939e-06 5.29196420108e-05 4.89939311714e-05 +UniRef50_W7AYX4 5.23157566426e-05 2.96255125765e-05 -2.26902440661e-05 +UniRef50_A6M0D8 0.000300123651783 0.00068386931676 0.000383745664977 +UniRef50_Q1IYN7 Amidase 0.000234592456886 0.0204267990746 0.0201922066177 +UniRef50_T2I810 Structural constituent of cell wall 9.22268625471e-05 9.84040141582e-06 -8.23864611313e-05 +UniRef50_Q4L769 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0204604245464 0.00184905888 -0.0186113656664 +UniRef50_UPI0004684CB5 ABC transporter permease 0.000200441101256 3.27098046281e-05 -0.000167731296628 +UniRef50_Q5HRJ5 Teichoic acid biosynthesis protein, putative 0.0114316634903 0.00397435734213 -0.00745730614817 +UniRef50_Q5HRF7 Phosphate acetyltransferase 0.0271715617175 0.0112751940874 -0.0158963676301 +UniRef50_X7YDZ8 PE family protein 7.39202328085e-05 0.00186277812405 0.00178885789124 +UniRef50_O63849 NADH ubiquinone oxidoreductase chain 6 5.29330056772e-05 2.52769032283e-05 -2.76561024489e-05 +UniRef50_UPI0004677159 hypothetical protein 2.17046249955e-05 1.24248791991e-05 -9.2797457964e-06 +UniRef50_L1K787 0.000285764715954 7.7621197061e-05 -0.000208143518893 +UniRef50_Q2JTU3 Phosphate import ATP binding protein PstB 2 0.000190695323778 0.0464865260573 0.0462958307335 +UniRef50_UPI000301C2E3 ATPase 3.51689445339e-06 3.48435988965e-06 -3.253456374e-08 +UniRef50_A4SCS1 50S ribosomal protein L5 0.0402813495798 0.0147537626564 -0.0255275869234 +UniRef50_Q3J2X2 Phosphatidate cytidylyltransferase 0.00212396514788 0.000224575441206 -0.00189938970667 +UniRef50_B2TLQ4 Chemotaxis response regulator protein glutamate methylesterase 0.000456830830374 0.00147085245052 0.00101402162015 +UniRef50_UPI00016C54E3 chromosomal replication initiator protein DnaA 4.28705816598e-06 1.1215174862e-05 6.92811669602e-06 +UniRef50_A3PKA4 0.000781005494173 0.00105437295796 0.000273367463787 +UniRef50_P32674 Formate acetyltransferase 2 0.00148411209976 0.000634397885357 -0.000849714214403 +UniRef50_J9NZ66 2.22094461737e-05 5.79639580396e-06 -1.64130503697e-05 +UniRef50_Q69K37 3.80841636054e-05 5.82548264305e-05 2.01706628251e-05 +UniRef50_P39342 0.0036098702294 0.00121821897793 -0.00239165125147 +UniRef50_UPI00045609F1 hypothetical protein PFL1_01799 4.4142479742e-06 0.000919040928678 0.000914626680704 +UniRef50_UPI0000397F81 COG2931 4.51495142517e-06 7.49232890291e-05 7.04083376039e-05 +UniRef50_P18813 Maltose maltodextrin import ATP binding protein MalK 0.000142140131912 6.38562559059e-05 -7.82838760061e-05 +UniRef50_UPI00044149CA hypothetical protein AURDEDRAFT_115522 1.8375825344e-05 6.81805591241e-05 4.98047337801e-05 +UniRef50_I0C4L0 ADP ribose pyrophosphatase 0.0165638621705 0.00363257969083 -0.0129312824797 +UniRef50_UPI000467F222 hypothetical protein 0.00577056911532 0.000480668924539 -0.00528990019078 +UniRef50_Q167S3 TRAP dicarboxylate transporter, DctM subunit, putative 0.00542344358016 0.00108249148096 -0.0043409520992 +UniRef50_Q2CDM9 8.85199201869e-05 5.57072014965e-05 -3.28127186904e-05 +UniRef50_J8KBH6 YhgE Pip domain containing protein 4.49647113805e-06 3.6152658056e-06 -8.8120533245e-07 +UniRef50_UPI000365A141 hypothetical protein 1.50867437226e-05 3.48843562518e-05 1.97976125292e-05 +UniRef50_C2W425 PTS system Galactitol specific IIC component 0.000644178679882 0.00244353021746 0.00179935153758 +UniRef50_UPI00037AE12F hypothetical protein 0.000785966462809 0.00461097340622 0.00382500694341 +UniRef50_UPI0003330970 0.000414980052152 4.55420185115e-05 -0.000369438033641 +UniRef50_Q64467 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 4.71370048222e-06 5.83309207037e-06 1.11939158815e-06 +UniRef50_B5R9D9 Probable L ascorbate 6 phosphate lactonase UlaG 0.0107357100235 0.00482892053753 -0.00590678948597 +UniRef50_Q1C790 Pyridoxine pyridoxamine 5 phosphate oxidase 0.0024336708678 0.00315913364256 0.00072546277476 +UniRef50_UPI00046FFDD3 iron dicitrate transporter subunit FecD 1.28998321397e-05 3.18896870912e-05 1.89898549515e-05 +UniRef50_P0AE25 Arabinose proton symporter 0.0022554369045 0.00287828429602 0.00062284739152 +UniRef50_Q8DTN8 Adenosine deaminase 0.00632842057744 0.00134913633666 -0.00497928424078 +UniRef50_UPI0002554E0F xylose ABC transporter ATP binding protein 8.29221375268e-05 2.9654600144e-05 -5.32675373828e-05 +UniRef50_W5X630 Putative OsmC like protein 1.23875489354e-05 2.72621155647e-05 1.48745666293e-05 +UniRef50_A7X3N8 Putative membrane protein insertion efficiency factor 0.00153034860346 0.00162603529987 9.568669641e-05 +UniRef50_Q4L3G1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0202080149535 0.00702342394128 -0.0131845910122 +UniRef50_P77473 Putative cyclic di GMP phosphodiesterase YlaB 0.0023238699253 0.000920959635185 -0.00140291029011 +UniRef50_Q1NHL2 Transposase and inactivated derivative 2.24138856622e-05 1.8650724916e-05 -3.7631607462e-06 +UniRef50_P32717 Putative alkyl aryl sulfatase YjcS 0.00370648146794 0.00142195500035 -0.00228452646759 +UniRef50_Q16DL2 Ubiquinone biosynthesis protein UbiB 0.00871008014206 0.00104534339287 -0.00766473674919 +UniRef50_E1WIS2 Intracellular growth attenuator protein igaA 0.00328148520949 0.00073376257054 -0.00254772263895 +UniRef50_G7M8Q2 Methyl accepting chemotaxis sensory transducer 0.000237172727924 0.000947387498409 0.000710214770485 +UniRef50_UPI000255D9DF Fis family transcriptional regulator 0.000650273458482 0.000314217101544 -0.000336056356938 +UniRef50_B0V742 0.000248982830032 0.00554039407662 0.00529141124659 +UniRef50_Q2FH57 Putative oligopeptide transport ATP binding protein oppD2 0.0187761479194 0.00490642295408 -0.0138697249653 +UniRef50_U6J469 NADH dehydrogenase ubiquinone iron sulfur 1.25651045625e-05 2.42665101498e-05 1.17014055873e-05 +UniRef50_UPI000474822F isocitrate dehydrogenase 3.0908914629e-05 3.20114300149e-05 1.1025153859e-06 +UniRef50_Q8DRQ7 Ribosomal RNA large subunit methyltransferase H 0.00369798114721 0.00408781651296 0.00038983536575 +UniRef50_Q2YVJ6 0.0101380138573 0.00399533692147 -0.00614267693583 +UniRef50_B9MKG1 Adenylate kinase 1.94525324048e-05 1.43448036743e-05 -5.1077287305e-06 +UniRef50_A6M277 0.000170294816142 0.000180806146044 1.0511329902e-05 +UniRef50_D4HBC2 Transporter, CPA2 family 0.000240950646623 0.00453879779371 0.00429784714709 +UniRef50_P04890 Integrase 0.00445318883312 0.00161219516575 -0.00284099366737 +UniRef50_A6LSE2 0.000324244096982 0.00104731022023 0.000723066123248 +UniRef50_UPI00046606A2 hypothetical protein, partial 9.74285308776e-06 6.74204026379e-06 -3.00081282397e-06 +UniRef50_A6M2U1 Multi sensor hybrid histidine kinase 0.000250147082537 0.00154457549261 0.00129442841007 +UniRef50_UPI000476D31F DNA gyrase subunit A 8.78633060868e-06 2.07521458052e-05 1.19658151965e-05 +UniRef50_UPI0001CC0D72 hypothetical protein 4.60593486597e-05 0.000103767812091 5.77084634313e-05 +UniRef50_R4ZZW8 Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage 0.0053146838526 0.00129205251708 -0.00402263133552 +UniRef50_Q9K8F8 Glutamyl tRNA reductase 7.16692055211e-06 0.000192649038552 0.000185482118 +UniRef50_I0C5E6 Endonuclease 0.0087040249981 0.000290952418913 -0.00841307257919 +UniRef50_UPI000472AF7A hypothetical protein 3.65716987911e-05 1.0528778702e-05 -2.60429200891e-05 +UniRef50_B4FAT0 Adenylyltransferase and sulfurtransferase MOCS3 2 2.21194887522e-05 2.59044250973e-05 3.7849363451e-06 +UniRef50_D6M307 Transcriptional regulator, CdaR 0.000567075770637 0.000224875198353 -0.000342200572284 +UniRef50_M9VJY1 Transporter, lactate permease family protein 0.000166316340848 0.00305029152082 0.00288397517997 +UniRef50_UPI00046A82C0 3 methyladenine DNA glycosylase 2.92974829087e-05 2.0863241983e-05 -8.4342409257e-06 +UniRef50_UPI0004700FE4 hypothetical protein 3.24210305445e-05 1.10755738241e-05 -2.13454567204e-05 +UniRef50_F0KN05 Multiple inositol polyphosphate histidine phosphatase 0.000282906878879 0.00787989829104 0.00759699141216 +UniRef50_E8PIM3 9.61339530144e-05 0.00644670102974 0.00635056707673 +UniRef50_P52129 mRNA endoribonuclease LS 0.00203536311624 0.00100783115063 -0.00102753196561 +UniRef50_UPI000237AE14 spermidine putrescine ABC transporter ATPase subunit 1.88827311168e-05 9.17371961268e-06 -9.70901150412e-06 +UniRef50_A5WHV0 Isochorismatase hydrolase 0.000442102597091 0.000553718822241 0.00011161622515 +UniRef50_Q4K629 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 4.74951535326e-05 0.000157146415598 0.000109651262065 +UniRef50_UPI0003718DF7 hypothetical protein 5.62021540451e-05 3.76715755861e-05 -1.8530578459e-05 +UniRef50_UPI00036AD976 hypothetical protein 0.000619319100806 0.0001322913359 -0.000487027764906 +UniRef50_C1HZT4 9.17574154035e-05 0.000695110090512 0.000603352675108 +UniRef50_UPI0003690E18 hypothetical protein 1.6176108017e-05 0.000398381790308 0.000382205682291 +UniRef50_UPI00036650E1 ATPase AAA 5.25092471424e-06 5.50431275763e-05 4.97922028621e-05 +UniRef50_F9VEN7 Epoxyqueuosine reductase 0.00650717554635 0.00510777796414 -0.00139939758221 +UniRef50_X1PDI0 Marine sediment metagenome DNA, contig 3.34307163761e-05 3.72821857681e-05 3.851469392e-06 +UniRef50_G7DLE2 0.0148808206506 0.00124348655432 -0.0136373340963 +UniRef50_E2PHB7 8.40654494121e-06 1.63992346377e-05 7.99268969649e-06 +UniRef50_R5GC07 8.10956618569e-06 0.000166020903008 0.000157911336822 +UniRef50_F0YDY4 0.000295396329632 0.000726157018034 0.000430760688402 +UniRef50_UPI0003802080 hypothetical protein 3.38066816286e-05 0.000978799899314 0.000944993217685 +UniRef50_UPI00029AFE54 RNA directed DNA polymerase 5.54738597044e-06 9.86150040641e-06 4.31411443597e-06 +UniRef50_W7WC52 0.000887671126056 0.00190168520771 0.00101401408165 +UniRef50_X1XUX4 Uroporphyrinogen decarboxylase 1.74450051423e-06 5.97598035533e-06 4.2314798411e-06 +UniRef50_UPI0001CBC083 PREDICTED 2.68898682801e-05 5.0277683341e-05 2.33878150609e-05 +UniRef50_P54746 Mannosylglycerate hydrolase 0.00420434891043 0.000679071365828 -0.0035252775446 +UniRef50_E4BG02 Dinuclear metal center protein, YbgI family 0.000260626612691 0.00609232392082 0.00583169730813 +UniRef50_A1VMA0 50S ribosomal protein L19 0.000690683649031 0.00262869624505 0.00193801259602 +UniRef50_T1YBG5 Opine dehydrogenase 0.0236598526903 0.00283989804219 -0.0208199546481 +UniRef50_X1B9K9 Marine sediment metagenome DNA, contig 1.40942159089e-05 3.06857897143e-05 1.65915738054e-05 +UniRef50_A5WGQ7 Periplasmic protein like protein 1.04450235258e-05 4.16444173436e-05 3.11993938178e-05 +UniRef50_X2N5D2 Outer membrane specific lipoprotein transporter subunit LolC 8.18662840339e-05 4.53783390152e-05 -3.64879450187e-05 +UniRef50_X1D3Z2 Marine sediment metagenome DNA, contig 2.12937360642e-05 6.48408761285e-05 4.35471400643e-05 +UniRef50_Q97D80 4 hydroxy tetrahydrodipicolinate synthase 2 0.000133073791603 0.00228148147829 0.00214840768669 +UniRef50_P40720 Fumarate hydratase class I, aerobic 0.00293029697924 0.000602324560901 -0.00232797241834 +UniRef50_B6IUC1 Methylthioribose 1 phosphate isomerase 0.00278372224471 0.00127142668247 -0.00151229556224 +UniRef50_Q02425 Putative transcriptional regulator MtlR 0.00503092610053 0.00319147800609 -0.00183944809444 +UniRef50_B4M1F9 GJ18858 1.01981263875e-05 5.10213154577e-05 4.08231890702e-05 +UniRef50_B2IU46 Phosphoribosylformylglycinamidine synthase 2 2.53327206266e-05 6.02501613495e-06 -1.93077044916e-05 +UniRef50_R4GH13 1.11755566566e-05 1.84542428861e-05 7.2786862295e-06 +UniRef50_C1FA47 Potassium transporting ATPase A chain 9.22300757834e-06 0.00202210674766 0.00201288374008 +UniRef50_Q1I3T3 Polyhydroxyalkanoate synthesis protein PhaF 0.000166783205682 5.05074079735e-05 -0.000116275797708 +UniRef50_Q3HKH1 0.0228404875845 0.00685987989442 -0.0159806076901 +UniRef50_Q3HKH3 0.00237788050164 0.00157805054865 -0.00079982995299 +UniRef50_UPI000370C63A hypothetical protein 0.000319690775232 0.000941514765672 0.00062182399044 +UniRef50_W4TJY2 0.000191976595905 0.000508845783457 0.000316869187552 +UniRef50_UPI000441F8F0 PREDICTED 0.000563058661583 1.75801197262e-05 -0.000545478541857 +UniRef50_G2IS79 Hypothetical membrane protein 0.00019534428448 5.24911101547e-05 -0.000142853174325 +UniRef50_A5UM67 Sugar fermentation stimulation protein homolog 0.00298102486338 0.000658810500783 -0.0023222143626 +UniRef50_R7PWU8 0.00159021358448 0.00105843839075 -0.00053177519373 +UniRef50_Q2AC94 3.52250371022e-05 4.2520321529e-05 7.2952844268e-06 +UniRef50_F7Z4K9 TnpA 0.000605284995007 0.00024372767966 -0.000361557315347 +UniRef50_R7PWU3 0.00292339228816 0.000795294053104 -0.00212809823506 +UniRef50_C0QUK8 Methionyl tRNA formyltransferase 4.58608148375e-06 1.44176175045e-05 9.83153602075e-06 +UniRef50_UPI000375AFE0 hypothetical protein 4.71469669417e-06 3.14629291909e-05 2.67482324967e-05 +UniRef50_UPI00046A12DF hypothetical protein 1.44834385524e-05 2.41145096021e-05 9.6310710497e-06 +UniRef50_A6LX98 Glycoside hydrolase, family 18 0.000418275602248 0.00157164378084 0.00115336817859 +UniRef50_P22102 Trifunctional purine biosynthetic protein adenosine 3 4.45304472711e-06 2.46798581498e-06 -1.98505891213e-06 +UniRef50_Q5KXU4 Chorismate synthase 0.0271011618318 0.0413090051106 0.0142078432788 +UniRef50_UPI000474B63A hypothetical protein 5.22419775497e-06 1.01118569742e-05 4.88765921923e-06 +UniRef50_F8IFU6 LmbE family protein 1.76078834687e-05 1.68551746895e-05 -7.527087792e-07 +UniRef50_UPI000289F8D3 methionine aminotransferase 1.00075520236e-05 2.0148592413e-05 1.01410403894e-05 +UniRef50_M9RJP3 0.00205562130125 0.000225719774668 -0.00182990152658 +UniRef50_F4NWK8 0.000311887641968 0.000860145743281 0.000548258101313 +UniRef50_UPI00041A4561 hypothetical protein 3.38778996678e-05 2.77703241396e-06 -3.11008672538e-05 +UniRef50_Q9PD69 Proline iminopeptidase 0.000212520408214 0.00398316716448 0.00377064675627 +UniRef50_G7M2T0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000219779183948 0.000776722638459 0.000556943454511 +UniRef50_Q8R9V7 3 oxoacyl [acyl carrier protein] synthase 3 0.000157914310134 2.7250793335e-05 -0.000130663516799 +UniRef50_UPI0002888835 glycerol 3 phosphatase 7.71932335607e-06 1.63930098813e-05 8.67368652523e-06 +UniRef50_UPI0003722744 hypothetical protein 1.04025515617e-05 3.46914523088e-05 2.42889007471e-05 +UniRef50_B7GZ54 Actinomycin synthetase II 0.000128516514653 0.00651273320248 0.00638421668783 +UniRef50_D7CWU8 Type IV pilus assembly protein PilM 9.93384181239e-05 0.0332070981776 0.0331077597595 +UniRef50_E8SJI8 0.0553151876156 0.00337179861667 -0.0519433889989 +UniRef50_UPI0003C10230 PREDICTED 9.09044766577e-06 5.28224137874e-05 4.37319661216e-05 +UniRef50_UPI000470BFD5 amino acid ABC transporter permease 2.29932477038e-05 4.0599114889e-05 1.76058671852e-05 +UniRef50_P45579 0.00288042369488 0.000588227214469 -0.00229219648041 +UniRef50_UPI000464E9C2 hypothetical protein 2.84290080852e-05 4.16968803504e-05 1.32678722652e-05 +UniRef50_Q8GAI8 Succinate semialdehyde dehydrogenase 0.000453639892396 0.00521119836773 0.00475755847533 +UniRef50_Q3IV11 Isopropylmalate homocitrate synthase 0.0216534286559 0.00419992717389 -0.017453501482 +UniRef50_A1JS01 DNA directed RNA polymerase subunit alpha 0.00373896874347 0.000825341309138 -0.00291362743433 +UniRef50_UPI0003B67DBA hypothetical protein 0.000252524233072 9.10681211951e-05 -0.000161456111877 +UniRef50_P06574 RNA polymerase sigma B factor 0.0211631505799 0.00970995263341 -0.0114531979465 +UniRef50_UPI00046D6464 translation factor Sua5 3.13026905236e-05 4.5684901782e-05 1.43822112584e-05 +UniRef50_UPI000476E6E7 lysyl tRNA synthetase 1.43452792468e-05 7.34868156425e-06 -6.99659768255e-06 +UniRef50_Q88IQ4 Sensor histidine kinase response regulator 0.00206724935994 0.00139408796776 -0.00067316139218 +UniRef50_A8LKQ2 Sulfurtransferase 0.000542881465951 0.000967612096378 0.000424730630427 +UniRef50_P44874 Acetate CoA transferase subunit beta 0.00105755590958 0.000821770939953 -0.000235784969627 +UniRef50_Q3KA14 LysR family regulatory protein 0.000690365605888 0.00117353917808 0.000483173572192 +UniRef50_E9LLQ7 IS2 ORFB transposase 0.0084388634471 0.00290687309535 -0.00553199035175 +UniRef50_P0AB08 0.00189595411636 0.00180806146039 -8.789265597e-05 +UniRef50_Q5LS56 Acrylyl CoA reductase AcuI 6.03987495323e-06 7.49737680391e-05 6.89338930859e-05 +UniRef50_UPI000462E49A hypothetical protein 1.59645827957e-05 2.72691258045e-05 1.13045430088e-05 +UniRef50_M3DK36 0.000342413966477 0.000497906368169 0.000155492401692 +UniRef50_P56072 L serine dehydratase 0.000197575715726 0.00505622141995 0.00485864570422 +UniRef50_UPI00040107BB glycosyl transferase family 39 1.4853430044e-05 3.30138052097e-05 1.81603751657e-05 +UniRef50_Q6A5R4 Sodium 0.000309795425739 0.0060915922918 0.00578179686606 +UniRef50_U5NYY0 Lysophospholipase 6.8074712477e-06 2.00212996851e-05 1.32138284374e-05 +UniRef50_B5GT91 WD 40 repeat containing protein 4.3740327724e-05 0.000172628374944 0.00012888804722 +UniRef50_UPI00034B152D hypothetical protein 1.85478690037e-05 7.97076189213e-06 -1.05771071116e-05 +UniRef50_Q58321 Magnesium chelatase subunit ChlI homolog 0.000224249102288 0.00499835185524 0.00477410275295 +UniRef50_G8VJV8 Allantoate amidohydrolase 0.000233057399309 0.00747163948279 0.00723858208348 +UniRef50_Q2NEU9 Serine tRNA ligase 0.00210232037425 0.000360861888495 -0.00174145848576 +UniRef50_Q8DSX1 0.0118005192322 0.000112434754364 -0.0116880844778 +UniRef50_Q92QK5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.0153994559258 0.0118880197218 -0.003511436204 +UniRef50_R9ZCZ8 Sensor histidine kinase 0.000194241405987 0.000397771607208 0.000203530201221 +UniRef50_UPI0003466363 hypothetical protein 2.38896737416e-05 5.79119070527e-06 -1.80984830363e-05 +UniRef50_P32672 Fructose like permease IIC component 2 0.002681293934 0.00162091535389 -0.00106037858011 +UniRef50_Q88YG1 Uracil DNA glycosylase 0.000326356762696 0.000110336177835 -0.000216020584861 +UniRef50_A0A034KNE5 8.64222206077e-05 1.34740399132e-05 -7.29481806945e-05 +UniRef50_A6LZY6 Molybdopterin guanine dinucleotide biosynthesis protein B 0.000196266545327 0.000673726323636 0.000477459778309 +UniRef50_UPI0003AB5CEA PREDICTED 7.66873094363e-06 3.77712998854e-05 3.01025689418e-05 +UniRef50_Q81MS2 Arginine decarboxylase 5.52701098489e-05 0.000745339683826 0.000690069573977 +UniRef50_A7WWP7 0.0216012122227 0.008990303014 -0.0126109092087 +UniRef50_F8HFP7 Transcriptional regulator, LysR family 0.00289515616722 0.00132425560493 -0.00157090056229 +UniRef50_R0PPD5 0.000447611844493 0.000686783035329 0.000239171190836 +UniRef50_D5BRX6 Inner membrane translocator 0.00947113544009 0.00135590935082 -0.00811522608927 +UniRef50_UPI000477A269 hypothetical protein 0.000123418692673 4.16655726982e-05 -8.17531199748e-05 +UniRef50_K7E2E5 0.000123633010252 5.81792965431e-05 -6.54537137089e-05 +UniRef50_X8A453 Putative MAGNESIUM CHELATASE domain protein 6.11602089238e-05 0.000505798388056 0.000444638179132 +UniRef50_B5XSS1 50S ribosomal protein L13 0.0205362311082 0.00433760089894 -0.0161986302093 +UniRef50_P57576 50S ribosomal protein L6 0.00521325399623 0.013601878598 0.00838862460177 +UniRef50_A0A011QAN2 1.45434840898e-05 2.13895666075e-05 6.8460825177e-06 +UniRef50_S5XRJ3 Proline iminopeptidase 0.00825244928637 0.0011871127075 -0.00706533657887 +UniRef50_UPI0002557E64 C4 dicarboxylate transport transcriptional regulatory protein DctD, partial 0.000211674386272 0.000340750044459 0.000129075658187 +UniRef50_Q7N4V9 3 phenylpropionate cinnamic acid dioxygenase subunit beta 0.00885263164251 0.00561413586235 -0.00323849578016 +UniRef50_B2UTG2 UPF0763 protein HPSH_03535 0.000276884588405 0.00308317070629 0.00280628611789 +UniRef50_I4KRZ7 Transcriptional regulator, GntR family aminotransferase, classes I and II family protein 0.00241310971238 0.000972480837877 -0.0014406288745 +UniRef50_A0A016QN34 3.09411129684e-05 0.0137680408713 0.0137370997583 +UniRef50_UPI00041C20AD hypothetical protein 1.61369483793e-05 2.31241246083e-05 6.987176229e-06 +UniRef50_J8VH78 Coproporphyrinogen III oxidase 0.000491074042262 0.000346389145314 -0.000144684896948 +UniRef50_UPI00047EB041 hypothetical protein 6.65757192014e-06 7.50426515997e-06 8.4669323983e-07 +UniRef50_UPI0002490BAD competence damage inducible protein A 1.76719284851e-05 7.73404174448e-06 -9.93788674062e-06 +UniRef50_UPI0004296EAD ribosome binding factor A 5.55379054118e-05 9.96046652012e-05 4.40667597894e-05 +UniRef50_P0AAJ6 Formate dehydrogenase O iron sulfur subunit 0.00360230513717 0.000774000796025 -0.00282830434114 +UniRef50_B7LQ20 Glyceraldehyde 3 phosphate dehydrogenase A 8.71097073012e-05 0.0033096727597 0.0032225630524 +UniRef50_UPI00035D6F39 hypothetical protein 5.39956237266e-05 9.78389571234e-06 -4.42117280143e-05 +UniRef50_A6M0J9 CheA signal transduction histidine kinase 0.000593520920681 0.00227722642946 0.00168370550878 +UniRef50_UPI00023759DD acyltransferase family protein 5.051735618e-06 6.96612311266e-06 1.91438749466e-06 +UniRef50_R7PX72 0.00291878355791 0.000167793582503 -0.00275098997541 +UniRef50_F0TA01 Archaeal glutamate synthase [NADPH] 0.00335978709607 0.000908907900225 -0.00245087919584 +UniRef50_Q492F5 4 hydroxy tetrahydrodipicolinate synthase 0.000457785272765 0.000436231104301 -2.1554168464e-05 +UniRef50_J7QKX2 Transposase domain protein 0.00025323968039 6.98625941747e-05 -0.000183377086215 +UniRef50_K0S542 0.00075993358359 0.000116450193223 -0.000643483390367 +UniRef50_W9UW01 0.000171349736015 0.000668853702205 0.00049750396619 +UniRef50_A6T6Q1 Ribosomal RNA large subunit methyltransferase F 0.00147449936296 0.0022172617736 0.00074276241064 +UniRef50_K0Q3E4 3.29473244734e-05 0.00152890744609 0.00149596012162 +UniRef50_Q8G5F0 Arginine biosynthesis bifunctional protein ArgJ 2.65281971498e-05 0.00155475033706 0.00152822213991 +UniRef50_Q9I702 Putative 3 oxopropanoate dehydrogenase 0.000507491012843 0.000337427410476 -0.000170063602367 +UniRef50_A4WZZ2 0.0103968082553 0.00689422299157 -0.00350258526373 +UniRef50_UPI00047EFBD1 glycine betaine ABC transporter ATPase 1.1710862618e-05 1.71980703415e-05 5.4872077235e-06 +UniRef50_B9ADV3 Putative methyl coenzyme M reductase, alpha subunit 0.000975849308718 0.000207529576475 -0.000768319732243 +UniRef50_UPI000463E516 hypothetical protein 1.88009409823e-05 2.67283216012e-05 7.9273806189e-06 +UniRef50_P0AAT4 Miniconductance mechanosensitive channel YbdG 0.00339433753035 0.00068528512706 -0.00270905240329 +UniRef50_Q6F1M4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1 7.06306053309e-06 5.23063929398e-06 -1.83242123911e-06 +UniRef50_S5D395 Enoyl CoA hydratase carnithine racemase 0.000301185629405 0.00479981320846 0.00449862757905 +UniRef50_P33216 Mannitol 2 dehydrogenase 0.00356331307469 0.000248429943479 -0.00331488313121 +UniRef50_Q57354 Putative GTP cyclohydrolase 1 type 2 0.00229396527318 0.00114583637709 -0.00114812889609 +UniRef50_UPI0004769B76 hypothetical protein 4.95041552103e-06 2.73149234365e-05 2.23645079155e-05 +UniRef50_X0TRL2 Marine sediment metagenome DNA, contig 1.48422532501e-05 2.09258070182e-05 6.0835537681e-06 +UniRef50_F2ECU7 Predicted protein 7.26248281037e-05 0.000156293586922 8.36687588183e-05 +UniRef50_Q98BM2 ABC transporter, periplasmic oligopeptide binding protein 0.0114872341155 0.00324263744093 -0.00824459667457 +UniRef50_Q28L99 50S ribosomal protein L25 0.00941637606505 0.000290475447734 -0.00912590061732 +UniRef50_A6LVP1 Sterol 3 beta glucosyltransferase 0.000759093165696 0.00133456418674 0.000575471021044 +UniRef50_M1MJB2 0.000337510870599 0.00490051855895 0.00456300768835 +UniRef50_UPI0004677D66 DNA 3 methyladenine glycosylase 2.49540027311e-05 2.71568465645e-05 2.2028438334e-06 +UniRef50_P76114 HTH type transcriptional regulator McbR 0.00307691554737 0.000286715247755 -0.00279020029961 +UniRef50_Q62KW5 Valine tRNA ligase 2.08206059521e-06 2.05786926489e-06 -2.419133032e-08 +UniRef50_F2AE12 0.000107263013971 6.11273463885e-05 -4.61356675825e-05 +UniRef50_UPI00032A5C01 PREDICTED 3.40784356417e-06 3.94420191026e-05 3.60341755384e-05 +UniRef50_S2ZSD0 9.43330332404e-06 2.00887778985e-05 1.06554745745e-05 +UniRef50_O25130 UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase 0.000315938107649 0.00424031087024 0.00392437276259 +UniRef50_UPI0003638962 hypothetical protein 4.7301544623e-06 2.6577930683e-05 2.18477762207e-05 +UniRef50_I1F566 2.61112152096e-05 4.2120478864e-05 1.60092636544e-05 +UniRef50_F8JEF7 0.000492326331845 0.000123143204724 -0.000369183127121 +UniRef50_UPI0003B4FCE0 MFS transporter 9.84172686036e-06 5.81622566746e-05 4.83205298142e-05 +UniRef50_P56909 NADH quinone oxidoreductase subunit E 1 0.000449124236004 9.58863052789e-05 -0.000353237930725 +UniRef50_P0AC17 Dihydroneopterin aldolase 0.000315447901544 0.00571580719732 0.00540035929578 +UniRef50_P02918 Penicillin binding protein 1A 0.00448575270956 0.00157263967788 -0.00291311303168 +UniRef50_Q08NZ6 1.08318646895e-05 0.000217627086816 0.000206795222126 +UniRef50_X1G2K5 Marine sediment metagenome DNA, contig 0.000235674185933 1.53004192369e-05 -0.000220373766696 +UniRef50_UPI00023787D7 hypothetical protein 0.000499091345749 0.000125763373362 -0.000373327972387 +UniRef50_A9CFS9 Small heat shock protein 0.0186393422623 0.000735228311697 -0.0179041139506 +UniRef50_D9W0X8 Predicted protein 4.27135503951e-06 8.93453564839e-05 8.50740014444e-05 +UniRef50_G8VLV0 tRNA processing ribonuclease 0.000116989459351 0.00529547348195 0.0051784840226 +UniRef50_UPI00046F8633 cation transporter 6.29543610837e-06 2.361819854e-05 1.73227624316e-05 +UniRef50_P29961 Heme exporter protein C 0.00633667996483 0.00271023970454 -0.00362644026029 +UniRef50_E8W5Y1 0.000134656119687 4.89480567786e-05 -8.57080629084e-05 +UniRef50_P77131 0.00344899601103 0.000368343680309 -0.00308065233072 +UniRef50_A1B054 Transcriptional regulator, LuxR family 0.00452533864009 0.000881114093073 -0.00364422454702 +UniRef50_B8CSC0 Lipoprotein signal peptidase 0.00377962892304 0.00221170440102 -0.00156792452202 +UniRef50_B9KM78 OmpA MotB domain protein 0.00637571353268 0.00237011799051 -0.00400559554217 +UniRef50_P71481 DNA primase 2.93534722082e-06 7.03535756268e-06 4.10001034186e-06 +UniRef50_W4TGX7 Substrate specific component BL0695 of predicted ECF transporter 5.09848768654e-05 0.00534909430196 0.00529810942509 +UniRef50_K6XJA6 5.02975019455e-05 0.000519320411239 0.000469022909293 +UniRef50_R5KG87 AAA domain AAA domain multi domain protein 1.87039670551e-05 0.00616536482589 0.00614666085883 +UniRef50_UPI00037A76B2 hypothetical protein 5.17462644591e-06 1.30416144481e-05 7.86698800219e-06 +UniRef50_UPI0004632E52 hypothetical protein 4.33786031756e-05 3.12809515996e-05 -1.2097651576e-05 +UniRef50_F3X0N5 4.15154658099e-06 1.54479119641e-05 1.12963653831e-05 +UniRef50_M5AFG5 ABC type transporter ATP binding protein EcsA 0.0154175206791 0.00197886890385 -0.0134386517753 +UniRef50_Q6K4U0 0.000194246649494 1.79109969865e-05 -0.000176335652508 +UniRef50_W4UAN6 Excinuclease 0.000106068022332 0.000413362203352 0.00030729418102 +UniRef50_F9YZU0 Transcriptional regulator, GntR family 0.000155985945804 0.00642747758696 0.00627149164116 +UniRef50_P35667 Glutathione synthetase 2.27515903807e-06 2.64124727127e-05 2.41373136746e-05 +UniRef50_D2FKD3 0.000119606505727 1.84393460425e-05 -0.000101167159685 +UniRef50_P12282 Molybdopterin synthase adenylyltransferase 0.00332547296515 0.000281964877713 -0.00304350808744 +UniRef50_B3QXJ4 Beta lactamase domain protein 5.39586293597e-06 0.000105973540902 0.000100577677966 +UniRef50_UPI0004403F5A PREDICTED 2.91580616825e-05 1.6289602209e-05 -1.28684594735e-05 +UniRef50_Q8TJT7 Translation initiation factor 2 subunit gamma 0.00243638092775 0.00106270768987 -0.00137367323788 +UniRef50_I5ARC3 Acetolactate synthase 0.000574579168958 0.00103966230042 0.000465083131462 +UniRef50_Q55484 Diaminopimelate decarboxylase 4.40923585114e-06 1.0666126503e-05 6.25689065186e-06 +UniRef50_D9QTB8 Oxidoreductase domain protein 0.000685196686045 0.000330117129143 -0.000355079556902 +UniRef50_P0CF79 Transposase InsF for insertion sequence IS3A 0.017169727372 0.0135475406738 -0.0036221866982 +UniRef50_Q9RR46 Glycine betaine carnitine transport ATP binding protein GbuA 0.000454241519897 0.00714149790813 0.00668725638823 +UniRef50_UPI00036AA55A hypothetical protein 2.9896390201e-05 3.37635228468e-05 3.8671326458e-06 +UniRef50_Q3IUW0 TraW 0.0353646108748 0.00991003465552 -0.0254545762193 +UniRef50_UPI00021A7398 PREDICTED 9.39645183949e-06 0.000125422156461 0.000116025704622 +UniRef50_E5QWQ2 Aspartokinase 0.016771635149 0.00406066863886 -0.0127109665101 +UniRef50_Q7F759 P0044F08.26 protein 0.00021365921671 3.1756166524e-05 -0.000181903050186 +UniRef50_Q73C41 S layer protein, putative 1.07044019362e-05 0.00153251193883 0.00152180753689 +UniRef50_V4QD05 Fimbrial protein 1.80435176483e-05 5.63528409567e-05 3.83093233084e-05 +UniRef50_A5GUA9 Light independent protochlorophyllide reductase subunit B 0.003416250867 0.00187319756362 -0.00154305330338 +UniRef50_E6V099 Formiminoglutamate deiminase 0.000123630782379 0.000135673830875 1.2043048496e-05 +UniRef50_P06710 DNA polymerase III subunit tau 0.00361403521213 0.00153686321157 -0.00207717200056 +UniRef50_R1CZX5 1.09915370727e-05 0.000427198990526 0.000416207453453 +UniRef50_A0A009JRB9 9.516453501e-05 0.000930631852543 0.000835467317533 +UniRef50_UPI0002FFBB25 hypothetical protein 3.40387450623e-05 9.43353330814e-06 -2.46052117542e-05 +UniRef50_UPI000423190C O succinylbenzoate synthase 4.74122658651e-05 0.00239671351469 0.00234930124882 +UniRef50_B9DX48 0.000317921175202 0.000860944452576 0.000543023277374 +UniRef50_B3DW88 1 deoxy D xylulose 5 phosphate synthase 2.03849139264e-06 0.000115345236983 0.00011330674559 +UniRef50_X8CKI5 CobQ CobB MinD ParA nucleotide binding domain protein 1.90480569793e-05 3.06313692361e-05 1.15833122568e-05 +UniRef50_Q9ZIS7 Lipopolysaccharide core heptose kinase RfaY 0.00145952977339 0.00430534724948 0.00284581747609 +UniRef50_U3SVH6 0.00411971759937 0.00152737945226 -0.00259233814711 +UniRef50_P76269 0.00297558337707 0.00341140322832 0.00043581985125 +UniRef50_G2P8Z9 Transposase, IS605 OrfB family 5.25746502591e-05 0.000657172083892 0.000604597433633 +UniRef50_UPI000471D0D3 hypothetical protein 1.16142176247e-05 0.00128805767409 0.00127644345647 +UniRef50_Q6A9L6 Periplasmic binding protein 6.85383946735e-06 0.000128119932557 0.00012126609309 +UniRef50_UPI0003B48E1B ADP ribose pyrophosphatase 1.62582808545e-05 5.24238006971e-05 3.61655198426e-05 +UniRef50_UPI00036CF9CE hypothetical protein 2.88882160989e-05 5.160244687e-05 2.27142307711e-05 +UniRef50_D3E124 UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU 0.00508425213691 0.000738244923591 -0.00434600721332 +UniRef50_K8DBK5 8.66183062595e-06 2.1885100833e-05 1.32232702071e-05 +UniRef50_N4W5E7 C4 dicarboxylate transport protein 0.000678825717177 0.00158704335806 0.000908217640883 +UniRef50_U2ACI4 0.000116290430102 3.84411020048e-05 -7.78493280972e-05 +UniRef50_K2FH00 4.7796071396e-05 2.33245156449e-05 -2.44715557511e-05 +UniRef50_B2UY31 Two component sensor kinase 0.000154399678523 0.00133854775684 0.00118414807832 +UniRef50_F4REI7 1.60069797117e-05 0.00091835394336 0.000902346963648 +UniRef50_C4I344 Permease, major facilitator superfamily 7.83707935342e-05 0.00496204063851 0.00488366984498 +UniRef50_O29196 5,10 methylenetetrahydromethanopterin reductase 0.00315080848301 0.00147149504184 -0.00167931344117 +UniRef50_E1AHU5 Major ampullate spidroin 2.1339163449e-05 3.8833938913e-05 1.7494775464e-05 +UniRef50_X6L226 0.000219357096152 4.16479026535e-05 -0.000177709193499 +UniRef50_UPI000463A149 hypothetical protein 0.000129035681842 4.07845116098e-05 -8.82511702322e-05 +UniRef50_Q9RVN4 0.000394584657338 0.00476556492744 0.0043709802701 +UniRef50_A6LSZ3 Threonine synthase 0.000426553682165 0.00130053169259 0.000873978010425 +UniRef50_B9DZE4 UPF0229 protein CKR_0568 0.000526595575761 0.0011177295849 0.000591134009139 +UniRef50_UPI0003801F95 hypothetical protein, partial 8.53641470782e-05 0.00019001100271 0.000104646855632 +UniRef50_C6DYM5 Anthranilate phosphoribosyltransferase 0.00113144129872 0.000604337002985 -0.000527104295735 +UniRef50_A0A023AZW8 2.3530760305e-06 9.96751789277e-06 7.61444186227e-06 +UniRef50_G7M887 Histidine kinase 0.000173163669973 0.00141383795177 0.0012406742818 +UniRef50_K7UKE5 1.72755064213e-06 7.74244214627e-06 6.01489150414e-06 +UniRef50_P37461 Sensor protein ZraS 0.00409880859986 0.000284535068841 -0.00381427353102 +UniRef50_I0HXP3 1.3593932535e-05 2.0697344156e-05 7.103411621e-06 +UniRef50_F2U1N7 9.12400761595e-06 2.04847771348e-05 1.13607695188e-05 +UniRef50_Q28JK1 Flagellar basal body rod protein FlgF 0.00126604214778 0.000883894509959 -0.000382147637821 +UniRef50_UPI000471EEAE ABC transporter 6.84982214067e-06 4.65473080569e-06 -2.19509133498e-06 +UniRef50_D3DZ81 Cytochrome C type biogenesis protein DsbD 0.00193448622294 0.0016160376759 -0.00031844854704 +UniRef50_W7TIW7 0.000759020084819 3.57265052596e-05 -0.000723293579559 +UniRef50_Q831X4 Asparagine tRNA ligase 0.0214473088796 0.0109057559629 -0.0105415529167 +UniRef50_Q6GFB8 Protein map 0.00094238539189 0.000100905480134 -0.000841479911756 +UniRef50_H8LBN6 PTS system, mannose fructose sorbose specific IID component 0.000694806124124 0.00198310413586 0.00128829801174 +UniRef50_Q834K3 ATP dependent protease subunit HslV 0.000497806097777 0.00135781391616 0.000860007818383 +UniRef50_B4I0B4 GM12486 0.000132451224162 7.03709289089e-06 -0.000125414131271 +UniRef50_UPI0003B5BA4B NUDIX hydrolase 1.47884352236e-05 3.349763226e-05 1.87091970364e-05 +UniRef50_I3LMH8 7.40077960891e-05 2.48832882789e-05 -4.91245078102e-05 +UniRef50_A0A021VVK4 2.65841477191e-06 8.26260108954e-06 5.60418631763e-06 +UniRef50_A6M053 Glycoside hydrolase, family 3 domain protein 0.000758181198292 0.00156297277158 0.000804791573288 +UniRef50_D8LRQ2 Beta ketoacyl synthase 0.000191774211861 0.000144174144111 -4.760006775e-05 +UniRef50_P45745 Dimodular nonribosomal peptide synthase 2.21808706353e-06 1.16238890594e-05 9.40580199587e-06 +UniRef50_I7ABN6 Outer membrane protein assembly factor BamA 0.000907638321741 9.4906279115e-05 -0.000812732042626 +UniRef50_E3A4Y7 0.000539706274914 0.00064036596488 0.000100659689966 +UniRef50_Q02250 Delta aminolevulinic acid dehydratase 2.33444451268e-05 0.00841714073871 0.00839379629358 +UniRef50_UPI0000D55548 PREDICTED 2.75573480086e-06 7.08173496038e-06 4.32600015952e-06 +UniRef50_Q0HVJ1 Drug resistance transporter, EmrB QacA subfamily 0.00870291764808 0.00285199219863 -0.00585092544945 +UniRef50_B2FNN8 UDP N acetylmuramate L alanine ligase 1.15516502959e-05 5.61291383399e-06 -5.93873646191e-06 +UniRef50_UPI0003B77170 30S ribosomal protein S2 6.5492103241e-06 2.75489572239e-05 2.09997468998e-05 +UniRef50_UPI0003487C99 hypothetical protein 5.61039732462e-06 4.13875595675e-06 -1.47164136787e-06 +UniRef50_A6LYV1 Response regulator receiver sensor signal transduction histidine kinase 0.000313140775278 0.00241920271969 0.00210606194441 +UniRef50_P63299 0.00184223001507 0.00284095021236 0.00099872019729 +UniRef50_Q2P3J8 Imidazole glycerol phosphate synthase subunit HisF 0.00418281453446 0.000425937555561 -0.0037568769789 +UniRef50_U5ML33 Lipolytic protein, G D S L family 0.000268354968373 0.000326316801329 5.7961832956e-05 +UniRef50_UPI0002EFC2F2 hypothetical protein 2.61498447778e-05 5.62267873896e-05 3.00769426118e-05 +UniRef50_L8NGT0 Membrane bound lytic murein transglycosylase 0.000166537936259 0.00050629301762 0.000339755081361 +UniRef50_UPI00035C696E hypothetical protein 7.81340086341e-06 0.000588962461015 0.000581149060152 +UniRef50_G7ZMW5 0.0263759012329 0.00709231792006 -0.0192835833128 +UniRef50_UPI0002DDE0E6 hypothetical protein 4.90692127245e-05 1.92973063892e-05 -2.97719063353e-05 +UniRef50_P77219 0.000235928743029 0.000369145881487 0.000133217138458 +UniRef50_UPI000479998B formyltetrahydrofolate deformylase 0.000110152351383 1.8331698461e-05 -9.1820652922e-05 +UniRef50_K0RS76 0.000115051310845 0.000244018463567 0.000128967152722 +UniRef50_B9E3T3 0.0002244449559 0.000635031079717 0.000410586123817 +UniRef50_K9ZYR5 Tape measure domain protein 7.35748824585e-07 0.000113882577338 0.000113146828513 +UniRef50_UPI000310DE08 hypothetical protein 2.74073611534e-05 1.72515254352e-05 -1.01558357182e-05 +UniRef50_UPI0003C7F041 urea ABC transporter ATP binding protein 2.27818087306e-05 0.000156173507228 0.000133391698497 +UniRef50_UPI00040937D6 hypothetical protein 2.33884331237e-05 8.42865847614e-06 -1.49597746476e-05 +UniRef50_T2E4I0 Permease for cytosine purine, uracil, thiamine, allantoin family protein 8.96641303719e-05 0.000745243612211 0.000655579481839 +UniRef50_T1Y8J8 Short chain dehydrogenase reductase family protein 0.00988957441041 0.000470624231391 -0.00941895017902 +UniRef50_I3FPW3 0.00072020383981 0.000248165298485 -0.000472038541325 +UniRef50_Q9N0B4 Unnamed protein product 1.41053975044e-05 0.000147218287845 0.000133112890341 +UniRef50_S5RNF0 0.00495810183326 0.000533327763568 -0.00442477406969 +UniRef50_UPI00035FB164 hypothetical protein 0.000101714975048 3.98063155353e-05 -6.19086595127e-05 +UniRef50_I6Y0P6 5.83011243669e-06 2.7429444095e-05 2.15993316583e-05 +UniRef50_K7V3T8 1.5822093503e-05 6.12651644519e-06 -9.69557705781e-06 +UniRef50_A5UNP7 Cobalt ABC transporter, permease component, CbiQ 0.00393749434818 0.00051596932013 -0.00342152502805 +UniRef50_K8BCX2 PTS system, mannitol specific IIC component PTS system, mannitol specific IIB component PTS system,mannitol specific IIA component 0.00245833826772 0.00185465262813 -0.00060368563959 +UniRef50_K1V9J2 7.7586904216e-05 0.000130125762441 5.2538858225e-05 +UniRef50_UPI0003824623 hypothetical protein 1.7836132229e-05 0.000596438517221 0.000578602384992 +UniRef50_L7WUR4 ABC transporter substrate binding protein 0.0165695757995 0.00405478319022 -0.0125147926093 +UniRef50_V1D3F0 0.000482486561748 0.000118413399551 -0.000364073162197 +UniRef50_A5ITY3 0.00541289166865 0.0010199735881 -0.00439291808055 +UniRef50_A5ZJT5 0.00101484736238 0.000668882039958 -0.000345965322422 +UniRef50_D8TVV3 Metalloproteinase, extracellular matrix glycoprotein VMP22 4.58572590328e-06 1.0922377988e-05 6.33665208472e-06 +UniRef50_H8FWI4 Putative transposase IS66 family 4.61013001007e-06 1.7371959598e-05 1.27618295879e-05 +UniRef50_UPI00047CB6D2 hypothetical protein, partial 3.20670544773e-05 4.43394205753e-05 1.2272366098e-05 +UniRef50_I0C181 PTS system, galactitol specific IIB component 0.00115534899334 0.000729177049855 -0.000426171943485 +UniRef50_I4XYD4 0.000128209819713 0.000196886002487 6.8676182774e-05 +UniRef50_Q165A6 Molybdate ABC transporter, periplasmic molybdate binding protein 0.00184129343403 0.00223202173189 0.00039072829786 +UniRef50_P48261 Anthranilate synthase component 2 1.96215309984e-05 1.53756294027e-05 -4.2459015957e-06 +UniRef50_U2YVN6 0.000148288099254 5.64074088393e-05 -9.18806904147e-05 +UniRef50_Q4SV06 Chromosome undetermined SCAF13832, whole genome shotgun sequence 5.28288961889e-05 1.95949180832e-05 -3.32339781057e-05 +UniRef50_Q5VRS0 6.31229118241e-05 6.49564446533e-05 1.8335328292e-06 +UniRef50_C9A4P2 Phosphorylase 0.00566072481381 0.00213946924431 -0.0035212555695 +UniRef50_UPI0003DF7732 PREDICTED 1.34800324382e-05 2.28127081282e-05 9.33267569e-06 +UniRef50_D3QCK9 Late competence protein ComGA 0.0220451892958 0.00661979921968 -0.0154253900761 +UniRef50_E2ZYI5 0.000217780378186 0.00101794773381 0.000800167355624 +UniRef50_L9P8Z2 Putative glycin rich signal peptide protein 3.67660281365e-05 8.00399423533e-06 -2.87620339012e-05 +UniRef50_Q985R5 Mlr7561 protein 2.58092950644e-06 4.04626451887e-06 1.46533501243e-06 +UniRef50_W0AF71 9.79926806907e-05 6.33057600639e-05 -3.46869206268e-05 +UniRef50_UPI0004573A07 PREDICTED 7.83291576413e-06 3.93432708724e-05 3.15103551083e-05 +UniRef50_A6LZF1 0.000772284289432 0.00027685941112 -0.000495424878312 +UniRef50_B9E8Q8 50S ribosomal protein L10 0.0215147270362 0.00191740295706 -0.0195973240791 +UniRef50_Q9I0J3 NADH quinone oxidoreductase subunit J 0.000808691009357 0.000554793754376 -0.000253897254981 +UniRef50_UPI000444A579 hypothetical protein STEHIDRAFT_80731 3.300956938e-06 3.64684049008e-05 3.31674479628e-05 +UniRef50_UPI000479C855 hypothetical protein 1.11523881181e-05 2.99177571316e-05 1.87653690135e-05 +UniRef50_UPI000416282A dihydroorotase 4.11615113161e-06 5.7326959942e-05 5.32108088104e-05 +UniRef50_S3MQQ9 BASS family bile acid 0.000438625383761 0.00485945185808 0.00442082647432 +UniRef50_O58888 Probable aminomethyltransferase 6.92695761253e-06 6.02185472828e-06 -9.0510288425e-07 +UniRef50_F0KLK8 LysR family transcriptional regulatory protein 0.000127529050285 0.00331039012365 0.00318286107336 +UniRef50_A1KVW4 Multidrug resistance translocase 0.000263706978085 0.00223145302191 0.00196774604382 +UniRef50_A6LZ84 Binding protein dependent transport systems inner membrane component 0.000185042151398 0.000545200071126 0.000360157919728 +UniRef50_M1N6G4 Signal peptidase I 0.000311971891609 0.00103837585418 0.000726403962571 +UniRef50_Q1M8E0 Methionine import ATP binding protein MetN 2.51665618526e-05 3.43210735272e-05 9.1545116746e-06 +UniRef50_I6U0Z0 0.00457416180151 0.00095912415244 -0.00361503764907 +UniRef50_UPI0002F158F5 hypothetical protein 1.38537865438e-05 5.43371233202e-06 -8.42007421178e-06 +UniRef50_O66646 Lipoprotein releasing system ATP binding protein LolD 1.06055089798e-05 2.70610951845e-05 1.64555862047e-05 +UniRef50_D4M6I9 0.0131192652553 0.00299388119984 -0.0101253840555 +UniRef50_H0I183 4.21746446555e-05 5.95137274357e-05 1.73390827802e-05 +UniRef50_Q5YVA5 2 isopropylmalate synthase 3.5429807812e-06 1.32324547654e-05 9.6894739842e-06 +UniRef50_Q5XCA7 Dihydroneopterin aldolase 0.000628271925124 0.00169001702024 0.00106174509512 +UniRef50_A5UNB1 Multidrug ABC transporter, permease component 0.00211054162806 0.000380102774321 -0.00173043885374 +UniRef50_C2MXE0 Phage infection protein 3.07313621275e-06 0.000284324842713 0.0002812517065 +UniRef50_A6LWC3 Sigma 54 factor, interaction domain containing protein 0.000202345068466 0.00122489058755 0.00102254551908 +UniRef50_Q7W4T6 Holliday junction ATP dependent DNA helicase RuvB 0.0171086000908 0.0335187720211 0.0164101719303 +UniRef50_F5LXC8 0.00461330872905 0.000672698455794 -0.00394061027326 +UniRef50_F3CNA8 Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family 0.000104667778825 0.00585929007876 0.00575462229993 +UniRef50_C5N5T3 ABC 2 type transporter 0.00830264815402 0.00104951229289 -0.00725313586113 +UniRef50_UPI000455DA16 glutaredoxin 6.5007381108e-06 4.40060170106e-05 3.75052788998e-05 +UniRef50_A3M105 Acyl CoA synthetase AMP acid ligases II 0.000213301651782 0.0061998970914 0.00598659543962 +UniRef50_W7Q7T2 7.63153127241e-05 4.61480144152e-05 -3.01672983089e-05 +UniRef50_UPI00024907AC sugar ABC transporterATPase 4.78284726152e-05 8.02367861166e-05 3.24083135014e-05 +UniRef50_P54575 Riboflavin biosynthesis protein RibC 9.09030453441e-06 0.000209444471765 0.000200354167231 +UniRef50_H0C7J0 Single stranded DNA specific exonuclease RecJ 0.00937460457052 0.00117558171318 -0.00819902285734 +UniRef50_E3HWF4 0.000220218003144 0.000561954728218 0.000341736725074 +UniRef50_Q31C00 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 4.30325382334e-05 1.75931709586e-05 -2.54393672748e-05 +UniRef50_Q796Q6 0.000284677420468 0.00178747455273 0.00150279713226 +UniRef50_UPI0004707FBC hypothetical protein 1.06413607531e-05 7.04879028693e-05 5.98465421162e-05 +UniRef50_UPI00037C6C2F hypothetical protein 1.38461124877e-05 1.26658272601e-05 -1.1802852276e-06 +UniRef50_V4RDS5 RsbR, positive regulator of sigma B 2.51259726906e-05 0.00131958374197 0.00129445776928 +UniRef50_A7ZHD9 Glutathione regulated potassium efflux system ancillary protein KefF 0.00580613384242 2.14249049249e-05 -0.0057847089375 +UniRef50_UPI00046D8A91 hypothetical protein, partial 0.00015529352173 0.000467413024309 0.000312119502579 +UniRef50_UPI0003B35384 hypothetical protein 6.63946008955e-06 1.95681212462e-06 -4.68264796493e-06 +UniRef50_X1LC15 Marine sediment metagenome DNA, contig 3.30202914128e-05 5.9891760454e-05 2.68714690412e-05 +UniRef50_H0Z2E2 0.000644026757158 0.000316443753626 -0.000327583003532 +UniRef50_E3F521 ABC transporter, inner membrane subunit 0.00818930250718 0.00261854293068 -0.0055707595765 +UniRef50_A4VS30 Radical SAM domain protein 0.00118326503208 0.000341521022969 -0.000841744009111 +UniRef50_U6PNF3 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752 4.33524741202e-06 3.67319262976e-05 3.23966788856e-05 +UniRef50_C1FKU5 Dipeptidase family protein 0.000410514741036 0.000726853743859 0.000316339002823 +UniRef50_G5PHU3 Carbamoyl phosphate synthase small chain 0.000203943213215 0.000274113606978 7.0170393763e-05 +UniRef50_P17411 6 phospho beta glucosidase 0.00328557830803 0.0021020483664 -0.00118352994163 +UniRef50_UPI00035D7ED2 hypothetical protein 0.00119032649914 8.64696445363e-05 -0.0011038568546 +UniRef50_Q0B261 MaoC domain protein dehydratase 0.00747185637879 0.00442097298147 -0.00305088339732 +UniRef50_A6LWB4 SEC C motif domain protein 0.000375209077807 0.000762209805397 0.00038700072759 +UniRef50_UPI0002D6628B hypothetical protein 2.16320823767e-05 1.30169383631e-05 -8.6151440136e-06 +UniRef50_P50863 Protein mrp homolog SalA 0.0301749264577 0.00877638967263 -0.0213985367851 +UniRef50_A9B5M8 6.20970439722e-06 0.000266958747697 0.0002607490433 +UniRef50_Q9KDV3 UDP glucose 4 epimerase 0.00689550785016 0.00314836124039 -0.00374714660977 +UniRef50_Q2K6Q4 Zinc import ATP binding protein ZnuC 1.68878845071e-05 7.96219583535e-06 -8.92568867175e-06 +UniRef50_B8DU64 Tyrosine tRNA ligase 4.13686848752e-06 7.230428841e-05 6.81674199225e-05 +UniRef50_A3VHM4 7.35022931598e-05 1.39405286718e-05 -5.9561764488e-05 +UniRef50_UPI00037AF9BE hypothetical protein 1.42529060094e-05 4.1711924368e-05 2.74590183586e-05 +UniRef50_P04043 Modification methylase DpnIIA 0.00482911064817 0.000824600185978 -0.00400451046219 +UniRef50_C6W622 7.5258739758e-05 3.2736190774e-05 -4.2522548984e-05 +UniRef50_UPI00036DC86C peptide ABC transporter permease 2.29320203334e-05 9.61813969053e-06 -1.33138806429e-05 +UniRef50_F4GXS4 DNA 3 methyladenine glycosidase I 0.000206276496643 0.00162559654236 0.00141932004572 +UniRef50_E6YU01 2.29363489161e-05 4.4064272873e-05 2.11279239569e-05 +UniRef50_E8SEA5 General stress protein 13 0.00446045252914 0.00177178771359 -0.00268866481555 +UniRef50_P28635 D methionine binding lipoprotein MetQ 0.00464171252436 0.00080895964282 -0.00383275288154 +UniRef50_I4WI90 Putative thioesterase 1.54327418272e-06 0.00086781584673 0.000866272572547 +UniRef50_X7FDP3 0.000291741751631 5.01911798096e-05 -0.000241550571821 +UniRef50_A0A023SGI9 CAAX protease 0.000851275264569 0.000301343576728 -0.000549931687841 +UniRef50_K4L3Q5 D serine D alanine glycine transporter 0.000785716709317 0.00028620019828 -0.000499516511037 +UniRef50_M8AG73 3.68334091703e-05 1.46074368174e-05 -2.22259723529e-05 +UniRef50_G4UTF3 1.77385028013e-06 1.59680190438e-05 1.41941687637e-05 +UniRef50_A7MGZ5 Membrane bound lytic murein transglycosylase F 0.00269266048106 0.000802903458375 -0.00188975702268 +UniRef50_U1Y4T1 8.49502983546e-05 3.4671457531e-05 -5.02788408236e-05 +UniRef50_S9S5F9 Malate synthase G 0.00282575308059 0.00043871990663 -0.00238703317396 +UniRef50_I0E6L1 0.000983793532167 0.00147501773872 0.000491224206553 +UniRef50_UPI0003A51EC3 hypothetical protein 0.000336236043652 0.000259239243773 -7.6996799879e-05 +UniRef50_B9KP07 0.00494288382512 0.00126620616702 -0.0036766776581 +UniRef50_M1XHM6 Universal stress protein family protein 0.00502028774384 0.0020844896286 -0.00293579811524 +UniRef50_Q5P082 Holo [acyl carrier protein] synthase 2.09828006362e-05 2.01149911956e-05 -8.678094406e-07 +UniRef50_Q9I472 Cobyrinic acid a,c diamide adenosyltransferase 0.000148660742826 9.65942474268e-05 -5.20664953992e-05 +UniRef50_P0ABE0 Biotin carboxyl carrier protein of acetyl CoA carboxylase 0.00165506342382 0.00042288788334 -0.00123217554048 +UniRef50_UPI00037E3D20 50S ribosomal protein L13 0.000633454175379 7.7100665753e-05 -0.000556353509626 +UniRef50_X1H5Y2 Marine sediment metagenome DNA, contig 2.141424223e-05 4.1065703565e-05 1.9651461335e-05 +UniRef50_W5X593 Carbohydrate esterase, family 1 1.96546723015e-06 1.25202187362e-05 1.05547515061e-05 +UniRef50_UPI0003B6353B MerR family transcriptional regulator 2.50443556522e-05 2.60511440178e-05 1.0067883656e-06 +UniRef50_UPI00036BDAA2 hypothetical protein, partial 4.05244406434e-05 0.000134912913712 9.43884730686e-05 +UniRef50_Q5M0P7 Bifunctional protein FolD 2.00406885489e-05 3.41436444395e-06 -1.6626324105e-05 +UniRef50_Q8P5Q4 Acetylornithine aminotransferase 1.23800413167e-05 3.91710610939e-05 2.67910197772e-05 +UniRef50_P20170 Anthranilate synthase component 1 1.25712203452e-05 1.82844323845e-05 5.7132120393e-06 +UniRef50_A0A058V0Y9 0.000186840445771 0.00028946924178 0.000102628796009 +UniRef50_UPI0003B715FE branched chain amino acid aminotransferase 0.000146317082017 2.57000146822e-05 -0.000120617067335 +UniRef50_L1KZM9 8.06549814219e-05 0.000809326023078 0.000728671041656 +UniRef50_B8D0U9 Phosphoglucosamine mutase 4.84837432011e-06 2.96122257878e-05 2.47638514677e-05 +UniRef50_D1DII4 Ferredoxin 0.000184527919256 0.00282591860403 0.00264139068477 +UniRef50_A7FWJ9 Cysteine desulfurase IscS 0.000303476986329 0.00130673092403 0.0010032539377 +UniRef50_E1SA68 LPS assembly protein LptD 0.000171141815044 0.00456060117513 0.00438945936009 +UniRef50_J3H4T2 Transposase 0.000177811779191 2.93750856466e-05 -0.000148436693544 +UniRef50_A0A059IPF2 FlaF protein 2.51534210708e-05 3.98785369308e-05 1.472511586e-05 +UniRef50_UPI0004784587 hypothetical protein 6.4768102071e-05 6.52550023471e-06 -5.82426018363e-05 +UniRef50_UPI00046D4969 hypothetical protein 3.42969315155e-06 8.42584593889e-06 4.99615278734e-06 +UniRef50_A1B1F4 3 oxoacyl [acyl carrier protein] synthase II 0.00551625001789 0.00210957637674 -0.00340667364115 +UniRef50_UPI0003B5466F peroxiredoxin 1.83334141024e-05 0.00019129329372 0.000172959879618 +UniRef50_P44978 0.00397289545936 0.000231620945253 -0.00374127451411 +UniRef50_A5UK42 0.00267146974361 0.00193076025189 -0.00074070949172 +UniRef50_UPI000388D459 PREDICTED 3.47144547592e-05 0.000569742839604 0.000535028384845 +UniRef50_A9GRA4 50S ribosomal protein L1 0.00502704756661 0.00926843335913 0.00424138579252 +UniRef50_W2BRM3 1.09532163711e-05 4.98773605088e-05 3.89241441377e-05 +UniRef50_C3YW49 3.79652007759e-05 1.51298871289e-05 -2.2835313647e-05 +UniRef50_X1A8H4 Marine sediment metagenome DNA, contig 0.000147598886649 7.96131890244e-05 -6.79856976246e-05 +UniRef50_M2QYI1 0.000138633464709 0.00014893423944 1.0300774731e-05 +UniRef50_Q1WQZ0 Fructose 1,6 bisphosphatase class 3 0.0124838474982 0.00293824537343 -0.00954560212477 +UniRef50_A0A011PL09 Fatty acid oxidation complex subunit alpha 5.85157687511e-06 1.15012731205e-05 5.64969624539e-06 +UniRef50_Q6A8B2 Homoserine kinase 0.000264592982837 0.00660338950525 0.00633879652241 +UniRef50_W7SMQ0 PE PGRS family protein 1.47296256509e-05 0.000123404235254 0.000108674609603 +UniRef50_UPI0003726300 hypothetical protein 4.09551538968e-05 1.84903252954e-05 -2.24648286014e-05 +UniRef50_UPI00040B37CB hypothetical protein 2.21532000554e-05 9.42888038672e-06 -1.27243196687e-05 +UniRef50_C1DFE7 Anti sigma factor, FecR family 2.41785134084e-05 1.0202629155e-05 -1.39758842534e-05 +UniRef50_O34744 Uroporphyrinogen III C methyltransferase 7.00882112811e-05 9.03855550152e-06 -6.10496557796e-05 +UniRef50_P48027 Sensor protein GacS 2.48318411495e-06 5.1181506508e-06 2.63496653585e-06 +UniRef50_UPI000468EA55 hypothetical protein 2.95787550158e-06 1.52562386234e-05 1.22983631218e-05 +UniRef50_UPI00047248BA delta aminolevulinic acid dehydratase 4.52208587525e-05 3.55751592873e-05 -9.6456994652e-06 +UniRef50_Q0AKG2 Two component transcriptional regulator, winged helix family 0.0111900466073 0.00229351544746 -0.00889653115984 +UniRef50_G7M0N1 0.000648653022939 0.000630049294243 -1.8603728696e-05 +UniRef50_R5LUL7 Flagellar biosynthesis type III secretory pathway ATPase FliI 0.000539961738701 0.000571989025895 3.2027287194e-05 +UniRef50_G7M7Z8 0.000213671314441 0.00076233948289 0.000548668168449 +UniRef50_UPI0003750432 hypothetical protein, partial 2.01743962303e-05 9.09480121407e-06 -1.10795950162e-05 +UniRef50_A0A059G6X4 Beta gamma crystallin domain containing protein 1.2945824406e-05 1.6871395054e-05 3.925570648e-06 +UniRef50_T1B8D6 Thiamine biosynthesis protein ThiC 8.24307113444e-06 3.10481406714e-05 2.2805069537e-05 +UniRef50_UPI0004788CA9 hypothetical protein 2.18058087671e-05 3.58614882825e-05 1.40556795154e-05 +UniRef50_UPI000476817E Clp protease ClpS 0.000919082434485 0.000417599445546 -0.000501482988939 +UniRef50_Q28VD6 DNA polymerase III, delta subunit 0.000724313627751 0.000181361333789 -0.000542952293962 +UniRef50_UPI0003B2FE9D osmotically inducible protein OsmC 1.40084936199e-05 0.000234031341406 0.000220022847786 +UniRef50_C2PG19 Phosphinothricin N acetyltransferase 0.0237516419707 0.00633065195597 -0.0174209900147 +UniRef50_Q82JT9 Ribonuclease 3 2.39662532332e-05 6.7664828567e-05 4.36985753338e-05 +UniRef50_UPI000373DA51 hypothetical protein 2.15149136438e-05 1.97564077591e-05 -1.7585058847e-06 +UniRef50_F8G053 Inosine uridine preferring nucleoside hydrolase 0.000279184857886 0.000436950284461 0.000157765426575 +UniRef50_Q7VIB6 Bifunctional protein GlmU 9.84746057885e-05 0.00278275756518 0.00268428295939 +UniRef50_C5BKK1 ATP synthase subunit a 0.000938268004148 0.00574004909186 0.00480178108771 +UniRef50_UPI0004785186 ATPase P 3.58274660104e-06 1.60207591935e-05 1.24380125925e-05 +UniRef50_UPI000378BB5D hypothetical protein 3.81936517707e-06 5.45770653671e-06 1.63834135964e-06 +UniRef50_U3T2I1 0.000251371370659 0.00704620782878 0.00679483645812 +UniRef50_UPI000378F946 hypothetical protein 0.000132455923941 2.90184227904e-05 -0.000103437501151 +UniRef50_A5ITB1 Coproporphyrinogen III oxidase, anaerobic 0.0175518210439 0.00122752642058 -0.0163242946233 +UniRef50_UPI00047ACB4C amino acid permease, partial 3.39300477265e-05 8.40792595348e-05 5.01492118083e-05 +UniRef50_Q9RX79 Cytochrome B6 0.000213809857265 0.0453867582823 0.045172948425 +UniRef50_UPI000468517A potassium transporter 5.89251203707e-06 0.00366828276945 0.00366239025741 +UniRef50_D2QXC4 Magnesium protoporphyrin chelatase, putative 1.04859875314e-05 0.000114536901378 0.000104050913847 +UniRef50_UPI00037FEB36 hypothetical protein 0.00132582249142 0.000204421796698 -0.00112140069472 +UniRef50_I3UM32 0.000209370048605 0.000237961180793 2.8591132188e-05 +UniRef50_D2ZQ55 0.000829439943426 0.00074138084986 -8.8059093566e-05 +UniRef50_W8U544 Putative secreted protein 4.6899033242e-05 7.58096882506e-06 -3.93180644169e-05 +UniRef50_UPI00046F47C7 hypothetical protein, partial 0.000298369729944 3.94611317754e-05 -0.000258908598169 +UniRef50_Q49Z66 Thymidine kinase 4.76174571811e-05 3.37765706948e-05 -1.38408864863e-05 +UniRef50_Q9KLJ6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.22759252388e-05 3.57946141101e-05 1.35186888713e-05 +UniRef50_G4R5C5 6.25629541099e-05 7.23209396121e-05 9.7579855022e-06 +UniRef50_P93313 NADH ubiquinone oxidoreductase chain 4 2.58551834503e-05 1.06790272302e-05 -1.51761562201e-05 +UniRef50_T1Y5K7 0.00868969142307 0.00443157993189 -0.00425811149118 +UniRef50_A3M7V0 Putative non ribosomal peptide synthetase 0.000189689980004 0.00628771955273 0.00609802957273 +UniRef50_Q2RYK8 1.03626842736e-05 0.00090287302008 0.000892510335806 +UniRef50_U6LIK5 2.51950556389e-06 3.57139865895e-06 1.05189309506e-06 +UniRef50_P37313 Dipeptide transport ATP binding protein DppF 0.00345263844561 0.0016243711828 -0.00182826726281 +UniRef50_M0RKR1 0.000230252885681 0.000419295225794 0.000189042340113 +UniRef50_UPI0004749E59 uroporphyrinogen decarboxylase 9.6497517252e-06 1.04106151408e-05 7.608634156e-07 +UniRef50_A0A031ANR6 Paraquat inducible protein B 0.00112674940017 0.000363792886954 -0.000762956513216 +UniRef50_UPI000470B75A cupin, partial 0.000170196623747 3.97804233774e-05 -0.00013041620037 +UniRef50_UPI000401DB47 ABC transporter substrate binding protein 8.23616356778e-05 2.82560856798e-05 -5.4105549998e-05 +UniRef50_Q9KET5 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.00149357144433 0.000751343145592 -0.000742228298738 +UniRef50_D4HFG5 ABC transporter, solute binding protein 0.000228034547552 0.00361520294968 0.00338716840213 +UniRef50_Q9RZB4 First mannosyl transferase 0.000322102715567 0.0674679991308 0.0671458964152 +UniRef50_Q0TGS5 UvrC excinuclease ABC subunit C 0.00377190982747 0.000837743031037 -0.00293416679643 +UniRef50_UPI000470078C hypothetical protein 5.75435958615e-05 8.08310623353e-05 2.32874664738e-05 +UniRef50_P27848 Pyridoxal phosphate phosphatase YigL 0.00248802542152 0.000224291168501 -0.00226373425302 +UniRef50_W6L595 Genomic scaffold, scaffold_6 2.91214739134e-05 0.000466630290518 0.000437508816605 +UniRef50_UPI00047C3E54 diguanylate cyclase 3.14617089577e-06 1.3035781388e-05 9.88961049223e-06 +UniRef50_P52005 Cytochrome c type protein TorY 0.00273097470716 0.000539693356593 -0.00219128135057 +UniRef50_Q1AU26 Elongation factor G 0.023164579351 0.0660409396751 0.0428763603241 +UniRef50_Q1AVD3 Ribose import ATP binding protein RbsA 2 0.00013868378267 8.77532589782e-05 -5.09305236918e-05 +UniRef50_UPI00037465BE hypothetical protein 0.000159342110239 3.58039396208e-05 -0.000123538170618 +UniRef50_G8AWA2 ATPase like protein 0.0109362639058 0.00276313915005 -0.00817312475575 +UniRef50_E3FF38 0.000239593606252 0.000433311397738 0.000193717791486 +UniRef50_UPI0003D0828F PREDICTED 9.19716683423e-05 8.2638310842e-05 -9.3333575003e-06 +UniRef50_I0ECM2 Flagellar motor switch protein FliY 0.000185042151398 0.00340679482314 0.00322175267174 +UniRef50_P77716 Inner membrane ABC transporter permease protein YcjP 0.0031717284922 0.000297798358178 -0.00287393013402 +UniRef50_UPI00047949F3 hypothetical protein 9.64971563377e-06 0.00138616020237 0.00137651048674 +UniRef50_C5N0V3 0.0145834745611 0.00204960639252 -0.0125338681686 +UniRef50_A7GMX2 Na+ antiporter NhaC 0.0207522519701 0.00704507963392 -0.0137071723362 +UniRef50_O32332 Glucitol sorbitol permease IIC component 0.00562360585454 0.0144563315511 0.00883272569656 +UniRef50_F5TRU1 5.77395494687e-05 0.000132073324857 7.43337753883e-05 +UniRef50_UPI00046CFD0F acetyl CoA acetyltransferase 7.40805091993e-06 0.000188676223604 0.000181268172684 +UniRef50_P33342 Probable fimbrial chaperone YehC 0.00579241303265 0.000293847467856 -0.00549856556479 +UniRef50_F0LCD7 3.80821447047e-05 8.57784341234e-05 4.76962894187e-05 +UniRef50_UPI0001BF5AF2 hypothetical protein SMAC_10608, partial 0.00055548909105 0.000215758393734 -0.000339730697316 +UniRef50_P0A2T5 Multiple antibiotic resistance protein MarR 0.00101544422367 0.00549727676627 0.0044818325426 +UniRef50_D8UG15 9.72730037436e-06 5.99624104221e-06 -3.73105933215e-06 +UniRef50_F2DLE5 Predicted protein 9.84541520235e-05 3.13788701908e-06 -9.53162650044e-05 +UniRef50_O34580 ATP dependent DNA helicase PcrA 0.0209111507909 0.00713806633559 -0.0137730844553 +UniRef50_Q03EL2 ATP synthase subunit alpha 6.03108358011e-06 1.96243594282e-05 1.35932758481e-05 +UniRef50_UPI00040FB89F glutathione dependent formaldehyde activating protein 9.5661752435e-05 3.25227362611e-05 -6.31390161739e-05 +UniRef50_K4RNE1 Outer membrane protein 0.000101839745189 0.00577236514584 0.00567052540065 +UniRef50_A0A024L3Z4 N acetylneuraminic acid outer membrane channel 0.000743910886573 0.000252286707733 -0.00049162417884 +UniRef50_G9A5Y6 2.20574570762e-05 1.56489052165e-05 -6.4085518597e-06 +UniRef50_UPI000476B9E7 cytochrome C 0.000680636781735 0.00013111684124 -0.000549519940495 +UniRef50_UPI000344CCAD hypothetical protein 0.00126023458199 0.000116534021132 -0.00114370056086 +UniRef50_P0AEY4 Nucleoside triphosphate pyrophosphohydrolase 0.00337665976676 0.000414964925331 -0.00296169484143 +UniRef50_T1Y562 Biotin synthesis protein bioC 0.0217796860131 0.00369673225548 -0.0180829537576 +UniRef50_G0DU60 Triacylglycerol lipase 0.000293767863174 0.00402379245706 0.00373002459389 +UniRef50_A5UJN4 Predicted DNA binding protein 0.00172531580641 0.00138003621827 -0.00034527958814 +UniRef50_Q9HYR3 0.000283824051773 0.000540213485111 0.000256389433338 +UniRef50_R7EGC5 1.79979459883e-05 2.27367621807e-05 4.7388161924e-06 +UniRef50_E1V915 Transcriptional regulator, XRE family 0.000479729618263 0.000701119545607 0.000221389927344 +UniRef50_UPI00046D7AC9 ABC transporter permease 6.67537524654e-06 9.52452148357e-06 2.84914623703e-06 +UniRef50_UPI000477BE6D ABC transporter 1.03496119263e-05 7.29545245869e-06 -3.05415946761e-06 +UniRef50_UPI00046A3121 hypothetical protein 0.000156035826524 0.000141216034798 -1.4819791726e-05 +UniRef50_E4ZBP3 Aminopeptidase N 4.35058765479e-05 0.00372357812775 0.0036800722512 +UniRef50_G8TQ95 7.29213836596e-06 0.000734095934398 0.000726803796032 +UniRef50_C5N3Z5 0.00736953609273 0.00103850008464 -0.00633103600809 +UniRef50_A3PGB1 Tripartite ATP independent periplasmic transporter, DctQ component 0.0087014620406 0.00221733603717 -0.00648412600343 +UniRef50_H4ER30 Phage minor structural, N terminal region domain protein 0.01963767 0.00387506580372 -0.0157626041963 +UniRef50_Q0S8U9 4.26791291087e-05 2.29873868016e-05 -1.96917423071e-05 +UniRef50_Q8CP32 Truncated transposase 0.00199764260132 0.00277130045931 0.00077365785799 +UniRef50_A0A023XH87 2.9029945501e-05 2.07587411369e-05 -8.2712043641e-06 +UniRef50_I6TVV9 0.010020834747 0.00311208730094 -0.00690874744606 +UniRef50_Q4KED8 Phenazine biosynthesis protein, PhzF family 0.000372044995957 0.00187619004443 0.00150414504847 +UniRef50_A0A017HN56 Short chain dehydrogenase reductase SDR 9.65159254695e-06 3.67139013589e-05 2.70623088119e-05 +UniRef50_UPI0004628D47 PREDICTED 5.89136578577e-06 9.98611069883e-05 9.39697412025e-05 +UniRef50_O86034 D beta hydroxybutyrate dehydrogenase 0.00594044244 0.00399506683634 -0.00194537560366 +UniRef50_UPI000382D87E hypothetical protein 0.0213162101903 0.00216524668711 -0.0191509635032 +UniRef50_A5UN78 Predicted O linked GlcNAc transferase 0.00227068625061 0.000369726089793 -0.00190096016082 +UniRef50_UPI0004076B6B hypothetical protein 2.51103647358e-05 1.58982874163e-05 -9.2120773195e-06 +UniRef50_A3M684 Molybdenum cofactor guanylyltransferase 0.000569178097632 0.00765349706662 0.00708431896899 +UniRef50_J0D4G5 1.67530680361e-05 9.41890405508e-05 7.74359725147e-05 +UniRef50_Q5LSI2 ABC transporter, permease protein 0.00751048025744 0.00180202699428 -0.00570845326316 +UniRef50_T1JDG9 1.04693207965e-05 5.70835380246e-05 4.66142172281e-05 +UniRef50_UPI000344A1E2 hypothetical protein 4.33324216869e-06 0.000930963900888 0.000926630658719 +UniRef50_A6LRT5 0.000180903828528 0.00186567504472 0.00168477121619 +UniRef50_A6LRT4 0.00023872307185 0.00207087052896 0.00183214745711 +UniRef50_A6LRT6 0.000594103274483 0.00112604128418 0.000531938009697 +UniRef50_UPI00047D7735 hypothetical protein 8.98623087721e-06 0.000247719542784 0.000238733311907 +UniRef50_G2P517 8.17359689927e-06 0.000534261895618 0.000526088298719 +UniRef50_A3PIB1 0.000827470400457 0.00125853190095 0.000431061500493 +UniRef50_Q2YSP8 Undecaprenyl diphosphatase 0.0232878381716 0.00239190723502 -0.0208959309366 +UniRef50_Q5HQE2 Serine protease HtrA like 0.00855169550037 0.0020474736011 -0.00650422189927 +UniRef50_UPI000466061A DEAD DEAH box helicase 1.68590895097e-06 0.000193590040917 0.000191904131966 +UniRef50_A5UJH6 Predicted acetylesterase 0.00116217052223 0.000575619595141 -0.000586550927089 +UniRef50_Q1LU78 Nucleoside diphosphate kinase 4.61365363831e-05 1.90042768647e-05 -2.71322595184e-05 +UniRef50_B9J455 9.58514673654e-05 0.00148587021482 0.00139001874745 +UniRef50_UPI000185E45C hypothetical protein, conserved 6.16976772345e-06 5.05647695225e-06 -1.1132907712e-06 +UniRef50_P0AGJ3 tRNA 2 O) methyltransferase 0.00317865269963 0.0243761470242 0.0211974943246 +UniRef50_UPI00037ACD1B hypothetical protein 2.74207890925e-05 0.000366668204726 0.000339247415633 +UniRef50_W9T2S8 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.00057718263415 0.000425474117023 -0.000151708517127 +UniRef50_UPI0002BA6E86 hypothetical protein 1.45438491376e-05 8.56936443916e-05 7.1149795254e-05 +UniRef50_B9MQS8 FMN dependent NADH azoreductase 0.000381298978638 0.000636743185244 0.000255444206606 +UniRef50_D3E172 Sua5 YciO YrdC YwlC family translation factor 0.00267049450413 0.00419903976289 0.00152854525876 +UniRef50_M9VHD2 Ion channel 0.00045465034883 0.0049631123106 0.00450846196177 +UniRef50_UPI0003F7B6B3 hypothetical protein 1.64338598102e-06 9.7364418445e-05 9.5721032464e-05 +UniRef50_Q9RZL0 0.000178903312256 0.023507939258 0.0233290359457 +UniRef50_Q05763 Bifunctional dihydrofolate reductase thymidylate synthase 2 2.03542407135e-05 4.05693523518e-05 2.02151116383e-05 +UniRef50_J7PC82 Leucine rich repeat domain protein 2.92290662647e-07 0.00176797023224 0.00176767794158 +UniRef50_Q9RZL3 0.000243539347646 0.0658165891974 0.0655730498498 +UniRef50_D3A510 9.96980162559e-05 9.61183920315e-06 -9.00861770527e-05 +UniRef50_Q4FSU1 Siroheme synthase 2.91241781211e-06 2.10917332665e-05 1.81793154544e-05 +UniRef50_B1ZRT0 NADH quinone oxidoreductase subunit D 1 1.03869559395e-05 2.70617594523e-05 1.66748035128e-05 +UniRef50_A0A036LTT5 0.0180312841599 0.00932579069039 -0.00870549346951 +UniRef50_Q8X5V6 tRNA dihydrouridine synthase A 0.00286694373131 0.0290238222897 0.0261568785584 +UniRef50_F6AH52 Acylglycerol lipase 0.000502408375245 0.00054813939725 4.5731022005e-05 +UniRef50_UPI00040794A2 hypothetical protein 2.30105097267e-05 7.95373070604e-06 -1.50567790207e-05 +UniRef50_A8IGC9 Fibrocystin L like protein 6.87544467031e-06 1.61575720401e-05 9.28212736979e-06 +UniRef50_UPI000418CD46 hypothetical protein 0.000119080364194 5.04368595885e-05 -6.86435046055e-05 +UniRef50_E1XQA2 0.00390117840267 0.00323491156172 -0.00066626684095 +UniRef50_Q8XQ89 3 dehydroquinate dehydratase 2 9.75401700561e-05 0.000149590784113 5.20506140569e-05 +UniRef50_P42357 Histidine ammonia lyase 4.95592082953e-06 6.12671094668e-06 1.17079011715e-06 +UniRef50_A0A029J2G1 Sodium hydrogen exchanger family protein 0.00315056673229 0.000702998674595 -0.0024475680577 +UniRef50_Q9RYX3 GGDEF family protein 0.000418832202133 0.0954436430073 0.0950248108052 +UniRef50_H9KM06 0.000204342617279 0.000138415881957 -6.5926735322e-05 +UniRef50_B6XVC7 3.99374194147e-05 0.00147920717299 0.00143926975358 +UniRef50_Q38XQ8 Ribosome maturation factor RimM 0.0016867464081 0.00126604185097 -0.00042070455713 +UniRef50_B0K2T9 Tryptophan synthase beta chain 0.000418006216396 0.00135154173018 0.000933535513784 +UniRef50_UPI000474CD31 LamB YcsF family protein 0.000236491868839 5.7468587892e-05 -0.000179023280947 +UniRef50_UPI0003781C56 50S ribosomal protein L22 2.27026531461e-05 0.000208406181536 0.00018570352839 +UniRef50_Q2NE88 Methionine aminopeptidase 0.00269742172208 0.000300831957759 -0.00239658976432 +UniRef50_B5F4F0 Periplasmic trehalase 0.00310821292862 0.000672296066341 -0.00243591686228 +UniRef50_UPI00041F5D41 uridine kinase 8.55041207287e-06 0.000570881146976 0.000562330734903 +UniRef50_UPI0003637A82 hypothetical protein 1.15495358044e-05 1.24176342888e-05 8.680984844e-07 +UniRef50_UPI000365DDE9 hypothetical protein 0.000675126330168 0.000475988694477 -0.000199137635691 +UniRef50_P28997 NAD specific glutamate dehydrogenase 3.16649493771e-06 0.000313230427619 0.000310063932681 +UniRef50_A7HY57 Trigger factor 3.14603600418e-05 1.74440692574e-05 -1.40162907844e-05 +UniRef50_B2GCR2 Chorismate synthase 2.40083114425e-05 0.000208794174032 0.00018478586259 +UniRef50_P32166 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.00127387212935 0.00131045436144 3.658223209e-05 +UniRef50_UPI00029ABD4E ATP dependent DNA helicase RecQ 7.28383848074e-05 4.0401960299e-05 -3.24364245084e-05 +UniRef50_P24532 Argininosuccinate synthase 0.00383395831919 0.0176343562006 0.0138003978814 +UniRef50_UPI000466FB72 nitrogen regulation protein NR 1.36823686917e-05 1.89384656373e-05 5.2560969456e-06 +UniRef50_UPI0004188538 hypothetical protein 7.64577631509e-06 7.70201057242e-06 5.623425733e-08 +UniRef50_B9V2B9 0.00811031244356 0.0124382159085 0.00432790346494 +UniRef50_Q7U5G1 Acetolactate synthase large subunit 1.34620664341e-05 0.00111638909018 0.00110292702375 +UniRef50_UPI0004780BEC alpha beta hydrolase 2.83145589501e-05 3.88523724162e-05 1.05378134661e-05 +UniRef50_UPI0002558939 TadC family type II IV secretion system protein, partial 0.00225179067217 0.00130808588777 -0.0009437047844 +UniRef50_W8WRJ5 Ribulose 5 phosphate 3 epimerase 0.000345788692078 0.002292527167 0.00194673847492 +UniRef50_Q46185 Diaminopimelate epimerase 0.00057769569789 0.000449983037122 -0.000127712660768 +UniRef50_O87278 Probable N methylproline demethylase 0.00456724865054 0.000769943270814 -0.00379730537973 +UniRef50_D6K1U6 LuxR family transcriptional regulator 2.95306384962e-05 0.000135930809867 0.000106400171371 +UniRef50_A4WWE4 Peptidase U35, phage prohead HK97 1.62269314735e-05 2.16834002913e-05 5.4564688178e-06 +UniRef50_M9RCR3 1.91390076797e-05 5.2100414836e-05 3.29614071563e-05 +UniRef50_Q1QBI6 Aminoglycoside phosphotransferase 0.00142037892693 0.00572302671179 0.00430264778486 +UniRef50_G7Z5T4 2.47405459669e-05 3.7429315114e-05 1.26887691471e-05 +UniRef50_Q58409 Methanogen homoaconitase large subunit 0.0022181315827 0.000864675947631 -0.00135345563507 +UniRef50_W5SE24 Glycerol 3 phosphate transporter 0.0220409797202 0.00537133991688 -0.0166696398033 +UniRef50_F2U516 8.7347317129e-05 4.98178742387e-06 -8.23655297051e-05 +UniRef50_V6QC91 0.000157441484222 6.69576242383e-05 -9.04838599837e-05 +UniRef50_Q9CKP2 FKBP type peptidyl prolyl cis trans isomerase SlyD 7.34486223077e-05 1.93510993134e-05 -5.40975229943e-05 +UniRef50_Q8DTK1 0.00281101294406 0.000707742688884 -0.00210327025518 +UniRef50_UPI0004011CB7 hypothetical protein 3.10665549637e-06 1.93916891711e-05 1.62850336747e-05 +UniRef50_K7RYE1 Band 7 stomatin like protein 0.0004787206693 0.00179930522595 0.00132058455665 +UniRef50_Q3KK80 Carbonic anhydrase 0.000829159217481 0.00051238147558 -0.000316777741901 +UniRef50_Q17YP3 Major facilitator family transporter 9.7373857834e-05 0.003403435026 0.00330606116817 +UniRef50_F8DH56 NmrA family protein 0.00741595555069 0.00169988751171 -0.00571606803898 +UniRef50_UPI00045602FF hypothetical protein PFL1_03008 0.000103950384811 0.000104627146121 6.7676131e-07 +UniRef50_P0A2M0 Protein sirB1 0.00153443933971 0.000221211015129 -0.00131322832458 +UniRef50_UPI00034AAE41 hypothetical protein 2.51644218468e-05 0.000493180644338 0.000468016222491 +UniRef50_B5EHD3 TRAP proton dicarboxylate symporter, large membrane protein component 0.00862946285234 0.00301747736325 -0.00561198548909 +UniRef50_A6LTN2 Protein translocase subunit SecD 0.000152212092278 0.000457791257273 0.000305579164995 +UniRef50_B9DQ89 ATP phosphoribosyltransferase 0.0153208103155 0.00517155505528 -0.0101492552602 +UniRef50_B9KLF6 0.00461146873898 0.00183202081075 -0.00277944792823 +UniRef50_A7A2K7 0.000407487040984 1.09838255389e-05 -0.000396503215445 +UniRef50_B9KLF4 0.00157130282882 0.000188500024587 -0.00138280280423 +UniRef50_UPI00029AF728 30S ribosomal protein S3 0.000847326021898 0.00186401251544 0.00101668649354 +UniRef50_UPI000479EB25 hypothetical protein 1.2928359979e-05 3.73671725352e-05 2.44388125562e-05 +UniRef50_A1AH06 0.00315038199815 0.000349907286252 -0.0028004747119 +UniRef50_K7RXC5 Transporter, small conductance mechanosensitive ion channel family protein 0.000831585096335 0.00608376999007 0.00525218489374 +UniRef50_UPI000361E642 hypothetical protein 9.59133516068e-06 1.49187934427e-05 5.32745828202e-06 +UniRef50_V5ERF8 1.9402305346e-05 1.31153117301e-05 -6.2869936159e-06 +UniRef50_Q1QJR5 S adenosylmethionine synthase 0.00744469999927 0.00123424684439 -0.00621045315488 +UniRef50_P58894 Carbamoyl phosphate synthase small chain 1.03049203107e-05 0.000686984970524 0.000676680050213 +UniRef50_H4VVH3 MpaA family protein 0.00108289701627 0.000413030356916 -0.000669866659354 +UniRef50_UPI000475B05E lysyl tRNA synthetase 3.88614468321e-06 3.04271908336e-05 2.65410461504e-05 +UniRef50_R6V5M5 Radical SAM domain protein 0.00507590323745 0.00975137652696 0.00467547328951 +UniRef50_UPI000393F4A9 PREDICTED 4.23118060619e-05 4.16382829364e-05 -6.735231255e-07 +UniRef50_Q8XD89 DNA ligase B 0.00312678283065 0.00046494930119 -0.00266183352946 +UniRef50_A9CEU9 GGDEF family protein 0.0111451750856 0.00923306002996 -0.00191211505564 +UniRef50_Q5LYF9 0.0050603114479 0.0029411924999 -0.002119118948 +UniRef50_X1NF57 Marine sediment metagenome DNA, contig 0.000457588709443 5.98966998918e-05 -0.000397692009551 +UniRef50_UPI0004720041 hypothetical protein, partial 9.08733535419e-06 9.55654045788e-05 8.64780692246e-05 +UniRef50_UPI0003D34C26 transposase and inactivated derivatives 0.000220293767402 0.000133435399519 -8.6858367883e-05 +UniRef50_Q9ZB62 Ornithine carbamoyltransferase 0.000282670050232 0.000815075370855 0.000532405320623 +UniRef50_D8U4W8 9.43608139066e-06 2.35808508521e-06 -7.07799630545e-06 +UniRef50_B9TE37 5.2904521381e-05 0.000117044549992 6.4140028611e-05 +UniRef50_A5UMT9 Glycosyltransferase, GT2 family 0.00429768274217 0.000782350451192 -0.00351533229098 +UniRef50_Q82TB9 3 dehydroquinate synthase 0.00301419263178 0.00938088108676 0.00636668845498 +UniRef50_W8RUR9 Iron binding protein SufA for iron sulfur cluster assembly 0.00945856580985 0.000519618836113 -0.00893894697374 +UniRef50_U3AME1 0.000164069545703 9.56066153988e-05 -6.84629303042e-05 +UniRef50_A6QAR3 Probable transcriptional regulatory protein SUN_1622 0.000176670509603 0.00183125175383 0.00165458124423 +UniRef50_UPI000477BAB8 transcriptional regulator 4.85780548668e-06 4.55575110858e-05 4.06997055991e-05 +UniRef50_A7MQ64 Secretion monitor 0.0020566817819 0.00390723498687 0.00185055320497 +UniRef50_B9KRG8 0.0122833043157 0.00124801973752 -0.0110352845782 +UniRef50_P43334 Phenylalanine 4 hydroxylase 0.00114711944073 0.000231318568035 -0.000915800872695 +UniRef50_Q3J1E7 0.0182143887178 0.00457288746754 -0.0136415012503 +UniRef50_Q98P43 Msr9765 protein 2.57137025321e-05 3.07840869605e-05 5.0703844284e-06 +UniRef50_Q094Z8 7.06840819553e-05 9.29807331267e-05 2.22966511714e-05 +UniRef50_Q3J1E8 0.000670093471334 0.00152750019929 0.000857406727956 +UniRef50_UPI000469C857 hypothetical protein 0.00117979860099 0.000171246011404 -0.00100855258959 +UniRef50_UPI000380F48F hypothetical protein, partial 0.000174984270575 9.29962728159e-06 -0.000165684643293 +UniRef50_C9AC53 His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region 0.00536846382667 0.00240200840033 -0.00296645542634 +UniRef50_J9SGG8 Transcriptional regulator 5.56140130421e-06 2.18466882508e-05 1.62852869466e-05 +UniRef50_UPI0003B37E29 acetyltransferase 9.92315765809e-05 0.0002189735375 0.000119741960919 +UniRef50_A0A016TVG0 5.53460263769e-06 1.65688408392e-05 1.10342382015e-05 +UniRef50_Q88PE8 Sensor histidine kinase 0.00092565746271 0.000286558373967 -0.000639099088743 +UniRef50_UPI000465A9FC ArsR family transcriptional regulator 2.29313381634e-05 1.23666290953e-05 -1.05647090681e-05 +UniRef50_UPI0003338868 PREDICTED 2.86127081236e-06 5.3256280835e-06 2.46435727114e-06 +UniRef50_UPI000366BC80 hypothetical protein 5.32221151294e-05 1.67993177673e-05 -3.64227973621e-05 +UniRef50_A0A024J4K6 Transposase 2.07638918343e-05 1.59791563227e-05 -4.7847355116e-06 +UniRef50_P39328 Inner membrane ABC transporter permease protein YtfT 0.00162181968124 0.00167711524295 5.529556171e-05 +UniRef50_Q4FPS9 Chaperone protein DnaK 0.000397749549214 0.0162548128326 0.0158570632834 +UniRef50_I0C5G1 0.0113236480702 0.00247062266416 -0.00885302540604 +UniRef50_B9KUT5 0.000521199508258 0.000436265580396 -8.4933927862e-05 +UniRef50_Q5HMF5 L threonine dehydratase biosynthetic IlvA 0.00935151266836 0.00766427457168 -0.00168723809668 +UniRef50_R9ZNY2 Paraquat inducible protein A 0.00254532604165 0.000633254204115 -0.00191207183753 +UniRef50_UPI00037ED0B2 hypothetical protein 0.000100597498084 6.84798350221e-05 -3.21176630619e-05 +UniRef50_A5UJB5 UPF0280 protein Msm_0088 0.00246974999468 0.000759665090296 -0.00171008490438 +UniRef50_Q2G0L5 Serine aspartate repeat containing protein C 0.00629022714757 0.00281800987835 -0.00347221726922 +UniRef50_F9YWF3 0.00150822763527 0.00630456882887 0.0047963411936 +UniRef50_Q3IW26 DNA topology modulation kinase FlaR, putative 0.0162208188428 0.00456000613515 -0.0116608127077 +UniRef50_UPI0003B577FD ATP dependent DNA helicase PcrA 2.45114974533e-05 1.08418654993e-05 -1.3669631954e-05 +UniRef50_P50351 Transcriptional regulatory protein ChvI 0.00585320222869 0.000890938557008 -0.00496226367168 +UniRef50_F9YWF9 0.0003380471542 0.0192141123194 0.0188760651652 +UniRef50_Q82Z75 Sensor protein LytS 1.58089448959e-05 0.00145994586201 0.00144413691711 +UniRef50_D2ZQR5 0.00266606869964 0.000440156149458 -0.00222591255018 +UniRef50_UPI000471299E hypothetical protein 1.1643930785e-05 4.21811596073e-05 3.05372288223e-05 +UniRef50_F7ZF49 SPFH domain band 7 family protein 0.00485607401415 0.0014802184217 -0.00337585559245 +UniRef50_D2N911 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.0192996205021 0.0062515864109 -0.0130480340912 +UniRef50_Q9KPE3 Dephospho CoA kinase 0.00339698939991 0.000295316705201 -0.00310167269471 +UniRef50_E6V5R9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 0.00979932843947 0.00211487333471 -0.00768445510476 +UniRef50_Q28FD1 Alcohol dehydrogenase [NADP] 6.88976363871e-06 1.29546042773e-05 6.06484063859e-06 +UniRef50_Q9KT69 Methionine tRNA ligase 0.00460355028949 0.00346890030383 -0.00113464998566 +UniRef50_Q4FQB2 tRNA methyltransferase 0.00319314059569 0.0027111249858 -0.00048201560989 +UniRef50_I0C0P4 AzlD 0.00410522171464 4.65901746469e-05 -0.00405863153999 +UniRef50_B5XXI0 Phosphate acyltransferase 0.00249338397329 0.000475467875111 -0.00201791609818 +UniRef50_D6XNE0 Molybdenum cofactor synthesis domain containing protein 0.000348034802494 0.00229714957582 0.00194911477333 +UniRef50_UPI00045607F1 hypothetical protein PFL1_05669 1.99540548916e-06 0.000296425488266 0.000294430082777 +UniRef50_S5R225 Ribosomal protein alanine acetyltransferase 0.00365719755574 0.0009803513018 -0.00267684625394 +UniRef50_C5N425 0.0172968129285 0.00333493053524 -0.0139618823933 +UniRef50_UPI0004727AC2 hypothetical protein 3.36941772522e-06 1.12033516097e-05 7.83393388448e-06 +UniRef50_UPI00035D95F2 putrescine spermidine ABC transporter substrate binding protein 3.75736058821e-05 0.000250348787787 0.000212775181905 +UniRef50_Q8DN13 D alanine transfer from undecaprenol phosphate to the poly chain 0.00010544301365 0.00326941484581 0.00316397183216 +UniRef50_A3PNG2 Hemolysin type calcium binding toxin 0.00136638593906 0.000511309036438 -0.000855076902622 +UniRef50_UPI0003715F65 hypothetical protein, partial 3.92920096159e-06 1.71192144733e-05 1.31900135117e-05 +UniRef50_UPI000347561C hypothetical protein 2.99927756463e-05 1.47996010276e-05 -1.51931746187e-05 +UniRef50_Q7M7C0 Biopolymer transport exbD transmembrane protein 0.00105837193136 0.00232087601977 0.00126250408841 +UniRef50_P16681 Protein PhnB 0.00337951455394 0.000653837723686 -0.00272567683025 +UniRef50_Q47098 4 hydroxy 2 oxo heptane 1,7 dioate aldolase 9.54071793269e-05 0.000526289050167 0.00043088187084 +UniRef50_E2ZTL2 Type 4 fimbrial biogenesis protein PilV 0.000552487925847 0.000624949772005 7.2461846158e-05 +UniRef50_UPI000474C4AE hypothetical protein, partial 1.36385525906e-05 1.42680508036e-05 6.29498213e-07 +UniRef50_Q47534 0.00318054924359 0.000484734087685 -0.00269581515591 +UniRef50_Q47536 0.00185816274961 0.000450368108252 -0.00140779464136 +UniRef50_UPI00046F326A TetR family transcriptional regulator 1.02255927399e-05 1.3955715416e-05 3.7301226761e-06 +UniRef50_UPI0003B387E8 hypothetical protein, partial 0.000165077851725 0.000104649368071 -6.0428483654e-05 +UniRef50_O21042 Cytochrome c oxidase subunit 1+2 1.1587315678e-05 1.29271343131e-05 1.3398186351e-06 +UniRef50_G0DVK6 ROK family transcriptional regulator 0.000505778315157 0.00470921764459 0.00420343932943 +UniRef50_UPI0004743039 hypothetical protein 1.5187478588e-05 9.72630698803e-06 -5.46117159997e-06 +UniRef50_B8DVS6 Non canonical purine NTP pyrophosphatase 5.28946283753e-05 2.46078635043e-05 -2.8286764871e-05 +UniRef50_A3D954 Methyltransferase type 11 0.00160465134741 0.000269285749417 -0.00133536559799 +UniRef50_UPI00047D5DD0 hypothetical protein 3.1864111702e-06 1.6039892881e-05 1.28534817108e-05 +UniRef50_P16429 Formate hydrogenlyase subunit 3 0.00228402712176 0.00018690930709 -0.00209711781467 +UniRef50_K6PYD7 2.46259667349e-05 9.26416400966e-06 -1.53618027252e-05 +UniRef50_U5MSS6 Single stranded DNA specific exonuclease RecJ 0.000922710761013 0.00157849959223 0.000655788831217 +UniRef50_UPI00036E07C4 hypothetical protein 2.13819387533e-05 2.60025528257e-05 4.6206140724e-06 +UniRef50_UPI00047BD8AE ATPase 3.97736669779e-06 4.47989765086e-05 4.08216098108e-05 +UniRef50_UPI0003628A16 hypothetical protein 8.60462520709e-05 6.9674726291e-05 -1.63715257799e-05 +UniRef50_A3P6S9 NH dependent NAD(+) synthetase 1.55495211984e-05 9.60409169519e-05 8.04913957535e-05 +UniRef50_UPI00036BA0C6 terminase 3.23904163326e-06 4.23743232403e-05 3.9135281607e-05 +UniRef50_UPI0004663C80 coproporphyrinogen III oxidase 1.64160984753e-05 2.37816051816e-05 7.3655067063e-06 +UniRef50_V8DSA2 0.000159267225617 0.000343679671965 0.000184412446348 +UniRef50_A6LTC5 Glutamate tRNA ligase 6.83851429081e-05 0.00134374128923 0.00127535614632 +UniRef50_F0Y8N4 Expressed protein 0.000181348197232 8.23925590177e-05 -9.89556382143e-05 +UniRef50_F5TR17 Ribonucleoside diphosphate reductase 0.000140343136026 0.00586917680036 0.00572883366433 +UniRef50_P53638 Superoxide dismutase [Fe] 1.06436004832e-05 0.00330258466078 0.0032919410603 +UniRef50_F0Y270 0.000410422576975 4.34398476833e-05 -0.000366982729292 +UniRef50_UPI0003B51F21 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.82616804244e-06 1.14504774895e-05 6.62430944706e-06 +UniRef50_Q2YQ27 Xanthine phosphoribosyltransferase 0.00354965653043 0.00089489910665 -0.00265475742378 +UniRef50_I4PWM5 0.000721904867617 0.000155000317024 -0.000566904550593 +UniRef50_C4UW54 LemA family protein 8.31961747902e-06 1.04263024823e-05 2.10668500328e-06 +UniRef50_UPI000369BDEC hypothetical protein 1.4626627104e-06 2.34451146121e-06 8.8184875081e-07 +UniRef50_B0RUI2 4 hydroxythreonine 4 phosphate dehydrogenase 3.03938516822e-05 4.23275864657e-05 1.19337347835e-05 +UniRef50_P19924 Phosphoribulokinase, plasmid 0.02835424052 0.00436178544222 -0.0239924550778 +UniRef50_UPI0003615A4F hypothetical protein 7.34926705399e-07 2.65974080837e-05 2.58624813783e-05 +UniRef50_S1T2D6 7.43837002795e-05 4.55553847169e-05 -2.88283155626e-05 +UniRef50_UPI00041AFFF6 50S ribosomal protein L35 0.000244256145839 0.000156023127083 -8.8233018756e-05 +UniRef50_A5UP66 Predicted ATPase, AAA+ superfamily 0.00164729562854 0.000438208255361 -0.00120908737318 +UniRef50_P14175 Glycine betaine L proline transport ATP binding protein ProV 0.00334509895935 0.00051588295564 -0.00282921600371 +UniRef50_UPI0000165EEC peptide ABC transporter, periplasmic peptide binding protein 0.000112568571708 0.0456290163813 0.0455164478096 +UniRef50_O33405 Uptake hydrogenase small subunit 0.0105990600932 0.00240200790297 -0.00819705219023 +UniRef50_C6SSY8 0.00326471705183 0.00129441373828 -0.00197030331355 +UniRef50_A0A058Z0V6 2.37574931118e-06 7.29348230054e-06 4.91773298936e-06 +UniRef50_G2JE53 MFS family transporter 0.000185399755385 0.00783599923819 0.00765059948281 +UniRef50_B2SB72 Bifunctional protein GlmU 0.00234952573296 0.000969054573812 -0.00138047115915 +UniRef50_O30808 NADP dependent malic enzyme 0.00830981036743 0.00190049023065 -0.00640932013678 +UniRef50_UPI00036C5BBF heme ABC transporter ATP binding protein, partial 9.27082591042e-06 7.58382278931e-06 -1.68700312111e-06 +UniRef50_C6VKW6 ATP dependent zinc metalloprotease FtsH 0.00763991423382 0.00955935602461 0.00191944179079 +UniRef50_Q14IC9 Polyribonucleotide nucleotidyltransferase 2.92695506178e-06 9.58865962957e-06 6.66170456779e-06 +UniRef50_UPI0003B4D897 rod shape determining protein MreB 4.19202183818e-05 8.94133408228e-06 -3.29788842995e-05 +UniRef50_A7HVB6 0.00747594531106 0.000339444488737 -0.00713650082232 +UniRef50_Q8FSA6 0.000287796326475 0.00116624306874 0.000878446742265 +UniRef50_Q6F6Q6 Phosphoenolpyruvate carboxylase 4.25736077625e-05 0.00731335699779 0.00727078339003 +UniRef50_UPI0002E62F3E cold shock protein 2.16127814766e-05 1.31790288017e-05 -8.4337526749e-06 +UniRef50_UPI00039FBFD3 hypothetical protein 2.21393918709e-06 2.30432015703e-05 2.08292623832e-05 +UniRef50_UPI00029AC084 UDP N acetylglucosamine enolpyruvyl transferase 0.000125856078081 0.000789154014932 0.000663297936851 +UniRef50_R6LR95 Hydrogenase Fe only 0.00022406400482 0.00156655383193 0.00134248982711 +UniRef50_G0I8I1 0.000769960884537 0.000441447109578 -0.000328513774959 +UniRef50_Q7N0W9 Complete genome; segment 13 17 0.000300386728529 0.000799352878588 0.000498966150059 +UniRef50_V4RTL0 0.000130005794678 2.37930944484e-05 -0.00010621270023 +UniRef50_P0ACA2 0.00228727950268 0.000292392777421 -0.00199488672526 +UniRef50_Q9Y315 Putative deoxyribose phosphate aldolase 0.00237545092662 0.0013052114341 -0.00107023949252 +UniRef50_U6A8S2 Benzoate specific porin 0.000237369152544 0.000200895717825 -3.6473434719e-05 +UniRef50_UPI000419623B hypothetical protein 4.14161368005e-05 1.16804864764e-05 -2.97356503241e-05 +UniRef50_UPI0003B3D40C ABC transporter 8.98336750254e-06 9.91540200125e-06 9.3203449871e-07 +UniRef50_A6M3M5 tRNA modification GTPase MnmE 0.000435420687731 0.000823451297226 0.000388030609495 +UniRef50_UPI0004652D96 hypothetical protein, partial 5.54788337995e-06 9.28197031349e-06 3.73408693354e-06 +UniRef50_G2S6S7 2.11462479774e-06 1.366286822e-05 1.15482434223e-05 +UniRef50_A5IGK7 L threonine 3 dehydrogenase 0.0109460872938 0.027770994464 0.0168249071702 +UniRef50_P68999 tRNA specific adenosine deaminase 0.00451198637887 0.00594760187378 0.00143561549491 +UniRef50_Q6A9M5 Dephospho CoA kinase 0.000877634570777 0.00851632893163 0.00763869436085 +UniRef50_UPI0003EDD9CA hypothetical protein, partial 8.93374805608e-05 0.00416510288676 0.0040757654062 +UniRef50_P0AEZ8 Membrane bound lytic murein transglycosylase D 0.00372892300374 0.00123522022426 -0.00249370277948 +UniRef50_U6ALT5 Ferrichrome iron receptor 0.00099965911474 0.00101192458637 1.226547163e-05 +UniRef50_D9SVV0 Phosphoribosyltransferase 0.00022248683036 0.00031983758685 9.735075649e-05 +UniRef50_UPI000382B2B6 hypothetical protein 0.000185496800419 3.39692722692e-06 -0.000182099873192 +UniRef50_UPI000383F2C7 PREDICTED 2.52607782786e-05 0.000174980778094 0.000149719999815 +UniRef50_T0TUM6 5 nucleotidase 0.00554377009227 0.00180402924441 -0.00373974084786 +UniRef50_F7X228 Putative prophage terminase large subunit 7.32580664594e-05 8.7857023263e-06 -6.44723641331e-05 +UniRef50_U5MTY5 Alanine racemase 0.000328111682661 0.000517882317184 0.000189770634523 +UniRef50_K7EE87 0.000424819712083 0.000465892377811 4.1072665728e-05 +UniRef50_A1RRZ8 Ketol acid reductoisomerase 6.73433450757e-06 2.73775284458e-05 2.06431939382e-05 +UniRef50_Q6LQB9 HTH type transcriptional repressor PurR 0.00282078638807 0.000554679836748 -0.00226610655132 +UniRef50_UPI0004107246 iron sulfur protein 7.71236354119e-06 2.50917833137e-05 1.73794197725e-05 +UniRef50_U4V1N1 8.89160692605e-05 1.50280581489e-05 -7.38880111116e-05 +UniRef50_UPI00037A4D1B hypothetical protein 7.31937361767e-06 2.05814448883e-05 1.32620712706e-05 +UniRef50_G8VAV8 Cytochrome oxidase assembly protein 0.000478682584092 0.00484317913154 0.00436449654745 +UniRef50_UPI000372EB59 hypothetical protein 6.44125174947e-05 3.34621575416e-05 -3.09503599531e-05 +UniRef50_R6CH89 Peptidase M23 family 6.97585373883e-06 0.00342020799504 0.0034132321413 +UniRef50_UPI000422DB1A hypothetical protein 0.000130462057666 8.19383863656e-05 -4.85236713004e-05 +UniRef50_Q2P047 Phosphoribosylglycinamide formyltransferase 2 0.00043485880852 0.00052052954956 8.567074104e-05 +UniRef50_UPI000372AF58 hypothetical protein 0.000128952266947 8.78366130987e-06 -0.000120168605637 +UniRef50_A6LZV7 Transcriptional antiterminator, BglG 0.00024714937072 0.000867556071504 0.000620406700784 +UniRef50_P24218 Prophage DLP12 integrase 0.00291944751528 0.0014929594363 -0.00142648807898 +UniRef50_UPI000472A485 antitermination protein NusG 5.73752878069e-05 0.000404867467722 0.000347492179915 +UniRef50_P77309 0.00309844458265 0.000204135971329 -0.00289430861132 +UniRef50_M1R499 Response regulator aspartate phosphatase 1.0925229156e-05 0.000187502669965 0.000176577440809 +UniRef50_G0DWP5 Dihydrodipicolinate reductase 0.000119457591412 0.00300350484336 0.00288404725195 +UniRef50_C6SR85 0.00500184662863 0.00275230182958 -0.00224954479905 +UniRef50_UPI0003F14796 PREDICTED 9.41913294093e-05 0.00055327287459 0.000459081545181 +UniRef50_Q92BQ5 DNA primase 3.26262416446e-06 0.000907574641781 0.000904312017617 +UniRef50_O33587 AgrC 0.0153384746134 0.00748283513536 -0.00785563947804 +UniRef50_UPI0003F68F3A magnesium chelatase 7.20972736131e-06 2.8177696158e-05 2.09679687967e-05 +UniRef50_P76656 0.0039113258808 0.0021408926102 -0.0017704332706 +UniRef50_C1CWV4 0.000416507354951 0.0199387771743 0.0195222698193 +UniRef50_UPI00036962AD hypothetical protein 8.05784596969e-06 6.21251169283e-05 5.40672709586e-05 +UniRef50_A0A059LMT5 4.02039529891e-06 1.22937273965e-05 8.27333209759e-06 +UniRef50_UPI000469E0E3 hypothetical protein 6.80059847581e-05 4.36527755519e-05 -2.43532092062e-05 +UniRef50_D2NAN7 0.00759354629076 0.00362803130558 -0.00396551498518 +UniRef50_UPI0003680D68 hypothetical protein 1.02003607271e-05 8.18170050159e-06 -2.01866022551e-06 +UniRef50_Q21YT7 Bifunctional enzyme IspD IspF 1.17530518074e-05 0.000155646174056 0.000143893122249 +UniRef50_UPI00047088D8 hypothetical protein 2.3860175601e-05 2.03599305505e-05 -3.5002450505e-06 +UniRef50_Q3B6P1 CTP synthase 7.26820804561e-06 0.000132912896919 0.000125644688873 +UniRef50_C0QRW6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 6.73878747951e-06 5.08352412863e-05 4.40964538068e-05 +UniRef50_Q2YZ93 0.0192733458364 0.00681513935148 -0.0124582064849 +UniRef50_Q3IV77 TPR repeat containing Spindly family protein 0.0109752312306 0.00175911824595 -0.00921611298465 +UniRef50_UPI00035EB53D hypothetical protein 9.17286307682e-05 9.66525522645e-06 -8.20633755418e-05 +UniRef50_UPI0004635DEB UDP diphosphatase 4.0409431938e-05 5.50096028163e-05 1.46001708783e-05 +UniRef50_P00393 NADH dehydrogenase 0.00197523170256 0.000738458307458 -0.0012367733951 +UniRef50_A6LX04 0.000200066307735 0.0009544978323 0.000754431524565 +UniRef50_V8CG00 0.000136548482576 0.000151925663702 1.5377181126e-05 +UniRef50_Q9RZS8 0.000130282873893 0.0434122738625 0.0432819909886 +UniRef50_A4WP65 0.00443508490918 0.00110447434579 -0.00333061056339 +UniRef50_UPI00046AD605 PTS fructose transporter subunit IIA 2.33014511563e-06 0.000281050986838 0.000278720841722 +UniRef50_M4RDX0 Lipopolysaccharide core biosynthesis glycosyl transferase LpsC 0.000330162672461 0.00418152164944 0.00385135897698 +UniRef50_Q9RZS7 0.000174507927611 0.0356400610041 0.0354655530765 +UniRef50_UPI000315D670 hypothetical protein 8.59155326291e-06 6.82287940224e-06 -1.76867386067e-06 +UniRef50_P33020 0.00214155286556 0.000203901062277 -0.00193765180328 +UniRef50_UPI0003C112FE PREDICTED 4.49197616324e-06 1.23034421407e-05 7.81146597746e-06 +UniRef50_P0AE93 Protein CreA 0.0042472500127 1.82446284886e-05 -0.00422900538421 +UniRef50_UPI000369C4E2 hypothetical protein 4.70876318065e-06 8.34577874118e-05 7.87490242311e-05 +UniRef50_D4HBB1 Cell envelope like function transcriptional attenuator common domain protein 0.00031016839256 0.00475544485178 0.00444527645922 +UniRef50_UPI0002DA7A52 hypothetical protein 3.58502809616e-06 1.16890998607e-05 8.10407176454e-06 +UniRef50_X1BI40 Marine sediment metagenome DNA, contig 0.000136205069987 1.27060666537e-05 -0.000123499003333 +UniRef50_Q6CZ33 sn glycerol 3 phosphate transport system permease protein UgpE 0.00350067160729 0.000434072454899 -0.00306659915239 +UniRef50_R4K219 0.000715782943978 0.000574102774054 -0.000141680169924 +UniRef50_UPI0004794A3D hypothetical protein 1.48203848752e-05 3.69120686786e-05 2.20916838034e-05 +UniRef50_B8GTL2 Chromosome partition protein Smc 0.000180357792912 0.000271041392853 9.0683599941e-05 +UniRef50_UPI00036F03E5 hypothetical protein 2.20197792371e-05 4.6876341531e-05 2.48565622939e-05 +UniRef50_UPI00038F73EB Bifunctional protein PyrR 1.88358630869e-05 3.98923648756e-05 2.10565017887e-05 +UniRef50_U5MN80 0.000225140748821 0.00175333049149 0.00152818974267 +UniRef50_UPI0003F56C41 hypothetical protein 1.16314649369e-05 1.15437588937e-05 -8.77060432e-08 +UniRef50_N0C6R0 Competence protein ComYD 1.73469279858e-05 6.06222838581e-05 4.32753558723e-05 +UniRef50_P13989 Transposon Tn7 transposition protein TnsB 5.67648103501e-05 0.00971951098215 0.0096627461718 +UniRef50_I4F3M5 Putative Diguanylate cyclase 6.27399650474e-06 0.000147279368559 0.000141005372054 +UniRef50_G1Y149 0.00208627124413 0.000490884585046 -0.00159538665908 +UniRef50_P0A9V0 Probable acyl CoA dehydrogenase YdiO 0.00316922740278 0.000586319777141 -0.00258290762564 +UniRef50_P21345 Proton glutamate symport protein 0.0232896308072 0.0736227739158 0.0503331431086 +UniRef50_Q3IMV2 Dihydroxy acid dehydratase 1.74854197019e-05 2.42925144866e-05 6.8070947847e-06 +UniRef50_UPI0003A1A703 membrane protein 8.40978995082e-05 2.20730082125e-05 -6.20248912957e-05 +UniRef50_UPI0004659468 hypothetical protein, partial 4.0013669848e-05 5.90906851569e-05 1.90770153089e-05 +UniRef50_T1Y8Z5 0.012309756643 0.00339866817172 -0.00891108847128 +UniRef50_S5CR26 Xaa Pro aminopeptidase 0.000123495961457 0.00332785405822 0.00320435809676 +UniRef50_UPI000378FCC9 MULTISPECIES 4.67670755367e-06 4.18400601838e-06 -4.9270153529e-07 +UniRef50_A8LIR2 Chorismate mutase related enzyme 0.000358372774223 0.0015016103654 0.00114323759118 +UniRef50_P39404 Transcriptional activator protein BglJ 0.00386728885526 0.000262115418808 -0.00360517343645 +UniRef50_I4KME6 DNA binding response regulator 0.000510297907168 0.000253128604458 -0.00025716930271 +UniRef50_A0A023WST9 MerR family transcriptional regulator 0.00166613139288 0.000404798746769 -0.00126133264611 +UniRef50_UPI00036CE626 hypothetical protein 2.80265683323e-05 4.86409382375e-05 2.06143699052e-05 +UniRef50_UPI0003763AA0 hypothetical protein 3.60819457361e-06 0.000135432000284 0.00013182380571 +UniRef50_A4WR49 Cellulose synthase 0.00367764845393 0.000968748435805 -0.00270890001812 +UniRef50_G0EC83 Threonine synthase 0.00402773603257 0.000994959960484 -0.00303277607209 +UniRef50_B7UVS6 Exoenzyme S 0.00120784726092 0.000439472771075 -0.000768374489845 +UniRef50_Q0W1R5 Predicted NADPH 0.00563245679478 0.000585311276542 -0.00504714551824 +UniRef50_F9YX94 DNA processing uptake protein 0.000105149300518 0.00754238016232 0.0074372308618 +UniRef50_UPI0003F687BA deoxyguanosinetriphosphate triphosphohydrolase 0.000461311254254 6.36745539692e-05 -0.000397636700285 +UniRef50_X1R4V0 Marine sediment metagenome DNA, contig 1.90561041237e-05 0.000694519048296 0.000675462944172 +UniRef50_A7FAV9 0.000665216537137 0.00750027595768 0.00683505942054 +UniRef50_P0AD71 D alanyl D alanine carboxypeptidase endopeptidase AmpH 0.00306090547773 0.00145317541859 -0.00160773005914 +UniRef50_A7FAV7 5.78966240613e-05 0.0101207507572 0.0100628541331 +UniRef50_A7FAV5 0.000228731728267 0.0136905188742 0.0134617871459 +UniRef50_Q46577 UvrABC system protein A 0.000275514293858 0.0422169047044 0.0419413904105 +UniRef50_Q9RW78 Chloride peroxidase, putative 0.000138611746215 0.0326111270417 0.0324725152955 +UniRef50_Q8EBC3 Sulfate thiosulfate import ATP binding protein CysA 1 5.74540070098e-05 3.29083557236e-05 -2.45456512862e-05 +UniRef50_Q9R3J0 Transposase, putative 0.00225014042765 1.10930408506 1.10705394463 +UniRef50_M5B2K9 Probable transposase 0.000514747553423 0.000197147640548 -0.000317599912875 +UniRef50_A7ZTZ7 Putative ECA polymerase 0.00343875001613 0.000757370639339 -0.00268137937679 +UniRef50_D3DZE6 Transcriptional regulator LysR family 0.00383295084273 0.000206515178457 -0.00362643566427 +UniRef50_UPI0004644785 transcriptional regulator 1.89114291646e-05 0.000157283344486 0.000138371915321 +UniRef50_B2SBI3 Tetracycline resistance protein 3.58781836501e-05 3.22524519289e-05 -3.6257317212e-06 +UniRef50_U3SUM1 0.0045423079898 0.00185975426552 -0.00268255372428 +UniRef50_A3SI31 2.35324190275e-05 2.3377099442e-05 -1.553195855e-07 +UniRef50_Q1R311 0.00063427917855 0.000827613459542 0.000193334280992 +UniRef50_UPI0003640CCC hypothetical protein 0.000312846685026 1.86820904028e-05 -0.000294164594623 +UniRef50_B7UUY0 0.000398636542623 0.000187106677001 -0.000211529865622 +UniRef50_UPI000289D6F0 cation 0.000200154635176 0.000732952117496 0.00053279748232 +UniRef50_H2JHD1 Integral membrane protein, TerC family 0.000617822663454 0.00354271710219 0.00292489443874 +UniRef50_R1D0M5 1.52177945557e-05 6.08255754423e-05 4.56077808866e-05 +UniRef50_R1DLZ1 3.85699246329e-06 4.20937970055e-06 3.5238723726e-07 +UniRef50_W7WJF0 Neu5Ac permease 5.49370437122e-06 9.57142308025e-06 4.07771870903e-06 +UniRef50_F2JL25 DNA topoisomerase 0.000701403615934 0.0010535479445 0.000352144328566 +UniRef50_D8JXK3 Oxygen independent coproporphyrinogen III oxidase 0.0041952557901 0.00104652153922 -0.00314873425088 +UniRef50_UPI0003B32353 potassium transporter 4.59412832238e-06 4.2563211827e-06 -3.3780713968e-07 +UniRef50_Q9X2I3 Septum site determining protein MinD 0.00024406421693 0.00182168003647 0.00157761581954 +UniRef50_B4SI67 2 isopropylmalate synthase 3.47531659889e-06 5.71049479482e-05 5.36296313493e-05 +UniRef50_P76072 Side tail fiber protein homolog from lambdoid prophage Rac 0.0037001223461 0.00115155349363 -0.00254856885247 +UniRef50_A4WZC5 Phosphoribosylanthranilate isomerase like protein 0.00300491985318 0.00140134220231 -0.00160357765087 +UniRef50_Q9RWI2 8.32357271643e-05 0.0294678301364 0.0293845944092 +UniRef50_Q9RWI3 0.000357401016629 0.0367800289279 0.0364226279113 +UniRef50_Q9RWI0 0.000280859412564 0.0335937732232 0.0333129138106 +UniRef50_UPI00046EF909 transketolase, partial 1.31139220386e-05 4.91095815735e-06 -8.20296388125e-06 +UniRef50_Q5FKZ1 Thymidine kinase 0.00574917178408 0.00909928354571 0.00335011176163 +UniRef50_A3KBE5 0.000272348508473 0.000163814346524 -0.000108534161949 +UniRef50_F7YHP7 Short chain dehydrogenase reductase SDR 1.03944301847e-05 3.49966371753e-05 2.46022069906e-05 +UniRef50_Q0TR80 Amidohydrolase family protein 0.000198100583414 0.00155126679116 0.00135316620775 +UniRef50_UPI00036450DC hypothetical protein 3.57960349679e-05 3.74447550096e-05 1.6487200417e-06 +UniRef50_D4MHB3 Predicted flavoprotein 0.00444910873957 0.008714382788 0.00426527404843 +UniRef50_F2F126 Lactoylglutathione lyase 0.0102058915229 0.0039363660062 -0.0062695255167 +UniRef50_A1B1F7 7.4805173163e-05 4.32164501699e-05 -3.15887229931e-05 +UniRef50_D0DBX3 Integrase, catalytic region 0.00059234538228 0.000279921047585 -0.000312424334695 +UniRef50_UPI0003B7524F multidrug ABC transporter ATPase 9.53029424938e-06 4.98265887808e-05 4.02962945314e-05 +UniRef50_UPI000376921C hypothetical protein 1.23151919719e-05 1.49952623487e-05 2.6800703768e-06 +UniRef50_Q199U5 Thiamine biosynthesis protein 8.53600732078e-06 9.3605362652e-05 8.50693553312e-05 +UniRef50_UPI0003B774DC MFS transporter 1.65770614302e-05 5.58930023346e-06 -1.09877611967e-05 +UniRef50_UPI00036C63C0 hypothetical protein 8.63285406157e-06 1.20939303362e-05 3.46107627463e-06 +UniRef50_A4ILI2 UDP N acetylenolpyruvoylglucosamine reductase 0.000160094497565 0.00273424475628 0.00257415025871 +UniRef50_UPI000475759F flagellar hook capping protein 7.80949697504e-06 1.14013002414e-05 3.59180326636e-06 +UniRef50_UPI0004761474 3 hydroxymyristoyl ACP dehydratase 1.15898810917e-05 1.91958617167e-05 7.605980625e-06 +UniRef50_Q2T2J9 Cobalamin synthesis protein P47K family protein 0.000505279854973 0.0064026996263 0.00589741977133 +UniRef50_UPI00035A08C7 PREDICTED 2.86082580168e-06 8.19548615118e-06 5.3346603495e-06 +UniRef50_X6L0P1 0.00059664972334 0.000148272738939 -0.000448376984401 +UniRef50_A6LRQ4 Spore coat protein CotS 0.000608482858113 0.00179614722228 0.00118766436417 +UniRef50_W6LXS6 7.15381411777e-06 2.84406857365e-06 -4.30974554412e-06 +UniRef50_U7RK39 7.76296065333e-06 1.35249780049e-05 5.76201735157e-06 +UniRef50_D1Q2W4 Transcriptional activator of maltose regulon,MalT 0.00394144239854 0.000861924851744 -0.0030795175468 +UniRef50_W4KGM2 0.000184664054554 0.000273154731383 8.8490676829e-05 +UniRef50_UPI0004636D05 hypothetical protein 1.05312871977e-05 1.13763469779e-05 8.450597802e-07 +UniRef50_O58058 N5 carboxyaminoimidazole ribonucleotide mutase 7.87077991978e-05 7.91198913975e-05 4.120921997e-07 +UniRef50_UPI0004178882 hypothetical protein 9.57880683481e-06 6.37973423849e-05 5.42185355501e-05 +UniRef50_UPI0004632840 hypothetical protein 1.72722188731e-05 8.76610557044e-06 -8.50611330266e-06 +UniRef50_A0A059IKA9 9.58964535559e-05 2.64905296133e-05 -6.94059239426e-05 +UniRef50_Q6LMJ9 Glutamyl Q tRNA synthetase 0.00296523371137 0.00104414108313 -0.00192109262824 +UniRef50_R8ZHF6 0.000121248176295 0.000222880532219 0.000101632355924 +UniRef50_Q5HRC6 Iron compound ABC transporter, permease protein 0.0185653727979 0.00315738116444 -0.0154079916335 +UniRef50_H7G193 5.32344121847e-06 4.91475298293e-06 -4.0868823554e-07 +UniRef50_Q8R8R7 Galactokinase 0.00736064165285 0.00800125538871 0.00064061373586 +UniRef50_Q839C1 L lactate dehydrogenase 1 0.00489049421416 0.00698306790767 0.00209257369351 +UniRef50_Q466U8 ABC transporter ATP binding protein 0.000559948635213 0.00125794035482 0.000697991719607 +UniRef50_P51008 Oxygen independent coproporphyrinogen III oxidase 0.00478305266746 0.000540253459819 -0.00424279920764 +UniRef50_Q57493 0.000373347090645 0.00072254144002 0.000349194349375 +UniRef50_UPI0003703812 hypothetical protein 3.79256122197e-06 2.5919695989e-05 2.2127134767e-05 +UniRef50_UPI00037C1F67 hypothetical protein 6.31642291e-06 8.02695217963e-06 1.71052926963e-06 +UniRef50_E8TBW5 Sugar ABC transporter 0.00286840768933 0.0015909405566 -0.00127746713273 +UniRef50_E8S544 Diguanylate cyclase phosphodiesterase 4.74286289427e-06 3.17034683152e-06 -1.57251606275e-06 +UniRef50_UPI000377E8D6 MULTISPECIES 6.57616777255e-06 1.0335564003e-05 3.75939623045e-06 +UniRef50_B6A550 0.00990058944227 0.00222624966511 -0.00767433977716 +UniRef50_A4WT86 Autoinducer binding domain protein 0.0153664146047 0.0012108093431 -0.0141556052616 +UniRef50_UPI0003F8AF13 hypothetical protein 3.02939280418e-06 0.000254222971079 0.000251193578275 +UniRef50_Q00751 Multiple sugar binding transport system permease protein MsmG 0.0016372638374 0.00638458090591 0.00474731706851 +UniRef50_A4WZL0 Two component transcriptional regulator, winged helix family 8.50193668641e-05 0.000321693885011 0.000236674518147 +UniRef50_Q4L8E5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00883954889827 0.00235586399151 -0.00648368490676 +UniRef50_A3PRQ8 ABC cobalt transporter, periplasmic binding protein CbiN 0.00236585238954 0.000241732637264 -0.00212411975228 +UniRef50_A9AH86 Glutamine amidotransferase class II 0.000196949211577 0.00802327972552 0.00782633051394 +UniRef50_UPI0003B6246C sodium hydrogen exchanger 1.68130853073e-05 1.75668214377e-05 7.537361304e-07 +UniRef50_UPI000262878B cold shock DNA binding protein family 1.01615152445e-05 2.06919761488e-05 1.05304609043e-05 +UniRef50_Q8EHK0 Purine nucleoside phosphorylase DeoD type 2 0.0208451723747 0.00816833999165 -0.012676832383 +UniRef50_Q6F7Y6 1.16461775817e-05 0.0164693540329 0.0164577078553 +UniRef50_B0V7N3 0.000312390478933 0.00606622410119 0.00575383362226 +UniRef50_V7CVS8 5.07163059765e-05 6.65576911002e-05 1.58413851237e-05 +UniRef50_UPI000470AFA8 oligo 1,6 glucosidase 1.68383857092e-05 1.39250971926e-05 -2.9132885166e-06 +UniRef50_UPI000255E45E metallophosphoesterase, partial 6.23475967867e-05 0.000154727743981 9.23801471943e-05 +UniRef50_UPI00047A285C heme response regulator HssR 1.12155372018e-05 1.83258493121e-05 7.1103121103e-06 +UniRef50_Q9XAS7 BPS protein 0.000255093362129 6.35317400864e-05 -0.000191561622043 +UniRef50_B8HEC3 Transketolase central region 0.000207409883985 0.00602557341406 0.00581816353007 +UniRef50_UPI0003A4A480 tRNA dihydrouridine synthase 1.18172314959e-05 5.74299994664e-05 4.56127679705e-05 +UniRef50_UPI00016C3AC8 Na+ H+ antiporter 2.08598947693e-05 0.00804844997972 0.00802759008495 +UniRef50_F8K072 4.809387654e-06 8.31866791814e-05 7.83772915274e-05 +UniRef50_Q4L5P2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0186096750468 0.00269309078164 -0.0159165842652 +UniRef50_UPI0003B7B948 methyltransferase, partial 2.58986106652e-05 3.34032812305e-05 7.5046705653e-06 +UniRef50_Q6GK24 Protein EssC 0.00965064559135 0.00181453518338 -0.00783611040797 +UniRef50_U5MYI0 Chitinase A1 0.000385318623933 0.00201076581697 0.00162544719304 +UniRef50_A1AZK8 Membrane protein involved in aromatic hydrocarbon degradation 7.68579075474e-06 9.81972555499e-06 2.13393480025e-06 +UniRef50_R7ZYU2 1.41253765657e-05 0.000388418729187 0.000374293352621 +UniRef50_G8S2D3 0.000818440704699 2.30598079434e-05 -0.000795380896756 +UniRef50_A0A021VU42 0.000185742547003 2.02938913328e-05 -0.00016544865567 +UniRef50_J9NU01 0.000307239156151 0.000534107586109 0.000226868429958 +UniRef50_UPI0004720155 hypothetical protein, partial 3.09295833233e-05 1.94188072359e-05 -1.15107760874e-05 +UniRef50_Q492J8 Methionine tRNA ligase 0.000248927160357 7.04664850075e-06 -0.000241880511856 +UniRef50_I6TCA9 Tagatose 6 phosphate kinase 0.00559327991277 0.00717113682593 0.00157785691316 +UniRef50_Q2T0M6 Pyridoxine pyridoxamine 5 phosphate oxidase 9.30060372278e-06 0.000785273573395 0.000775972969672 +UniRef50_O34994 Transcriptional repressor CcpN 0.00871711821258 0.00194366606991 -0.00677345214267 +UniRef50_Q9R3J8 Transposase, putative 0.000248891860782 0.157984325125 0.157735433264 +UniRef50_UPI000252B349 PREDICTED 1.58747674524e-05 2.88613889653e-05 1.29866215129e-05 +UniRef50_A6V0F0 0.000332633415052 0.000437506229925 0.000104872814873 +UniRef50_X0YAI8 Marine sediment metagenome DNA, contig 2.34621924666e-05 4.42238394701e-05 2.07616470035e-05 +UniRef50_UPI00046F5931 potassium transporter 7.54345615467e-05 0.000106541544695 3.11069831483e-05 +UniRef50_P64309 Non canonical purine NTP pyrophosphatase 0.0118334637817 0.0041931517565 -0.0076403120252 +UniRef50_UPI0003B4DFFC 50S ribosomal protein L18 1.77248733072e-05 0.000137609540412 0.000119884667105 +UniRef50_D8JIL7 Chromosome partitioning protein parA 0.000293382892887 0.00654576821856 0.00625238532567 +UniRef50_R4XZT5 FIG002261 0.000273911749374 0.000964093717331 0.000690181967957 +UniRef50_M1G0P3 Sulfatase family protein 0.00154905739093 0.000430519970655 -0.00111853742027 +UniRef50_B5FIB5 9.58916007924e-05 0.000426227630195 0.000330336029403 +UniRef50_O31677 7 carboxy 7 deazaguanine synthase 0.0240009856615 0.00503520628472 -0.0189657793768 +UniRef50_UPI00035C09C2 hypothetical protein 0.000150267347738 0.000125174737899 -2.5092609839e-05 +UniRef50_R5WTT7 Acriflavine resistance protein B 0.00288474627455 0.000475600700207 -0.00240914557434 +UniRef50_X1S582 Marine sediment metagenome DNA, contig 0.000275130815381 1.56072237265e-05 -0.000259523591655 +UniRef50_Q3Y3U4 Mobilization protein MobC 0.100397045076 0.016396133989 -0.084000911087 +UniRef50_UPI000346E2F6 hypothetical protein 0.000112084951252 4.37362711233e-05 -6.83486801287e-05 +UniRef50_A6TED5 Modulator protein MzrA 0.00669444310005 0.000590633410385 -0.00610380968967 +UniRef50_D5WQ35 Restriction endonuclease 0.000684088317397 0.0444201299269 0.0437360416095 +UniRef50_P21866 KDP operon transcriptional regulatory protein KdpE 0.0026665865741 0.000881961527785 -0.00178462504632 +UniRef50_B4SKP9 Transcriptional regulator, LysR family 0.000125828662949 0.000600030371903 0.000474201708954 +UniRef50_UPI00036C1571 hypothetical protein 1.40385424181e-05 2.43478199934e-06 -1.16037604188e-05 +UniRef50_UPI00047D9616 helicase Cas3 1.38963203627e-05 5.39796164015e-06 -8.49835872255e-06 +UniRef50_A0A037ZGX3 6.45298322694e-05 0.000772912688482 0.000708382856213 +UniRef50_B9E8E5 ATP synthase epsilon chain 0.0270073681465 0.00245786505807 -0.0245495030884 +UniRef50_UPI00040D8CBE potassium transporter KefB 1.91538957762e-05 2.00980643923e-05 9.441686161e-07 +UniRef50_Q5SJ70 Acetyl Coenzyme A dehydrogenase, medium chain 0.00019922537711 0.0422491606696 0.0420499352925 +UniRef50_UPI0004650AF8 hypothetical protein 3.39519110053e-05 2.04306190041e-05 -1.35212920012e-05 +UniRef50_UPI000362104F hypothetical protein 1.7770873059e-05 1.34002050254e-05 -4.3706680336e-06 +UniRef50_D8FF08 7.37992346122e-06 2.22076776976e-05 1.48277542364e-05 +UniRef50_UPI0003674A12 hypothetical protein 1.09958014564e-05 2.34514304973e-05 1.24556290409e-05 +UniRef50_UPI0003D7284B PREDICTED 9.32987043421e-06 0.00017354960028 0.000164219729846 +UniRef50_F8JIY3 5.10305182736e-05 0.000208102023342 0.000157071505068 +UniRef50_Q3JNR9 6.59515124924e-05 2.89691018058e-05 -3.69824106866e-05 +UniRef50_UPI0003C10C25 1.50267482852e-06 8.29951023206e-06 6.79683540354e-06 +UniRef50_E2ZSP5 0.00251565412695 0.00130286781704 -0.00121278630991 +UniRef50_UPI000371A3CA hypothetical protein, partial 0.000419855891476 0.000251588547025 -0.000168267344451 +UniRef50_B9KR70 0.000990114861485 0.000147213305846 -0.000842901555639 +UniRef50_Q47319 DTW domain containing protein YfiP 0.00116246534144 0.000320415955001 -0.000842049386439 +UniRef50_T0TT19 Putative NagD like phosphatase 2.06627730317e-05 2.9083670837e-05 8.4208978053e-06 +UniRef50_B0KIU6 Transposase like protein TnpA3 0.000606882820403 0.0017510543461 0.0011441715257 +UniRef50_UPI000161E3FF Elongation factor G C terminus family protein 2.88020314273e-06 2.28746050684e-05 1.99944019257e-05 +UniRef50_J7QW46 Precorrin 2 C20 methyltransferase 0.00146733893681 0.00127024268214 -0.00019709625467 +UniRef50_F0Y525 0.00101447499336 0.0012339590795 0.00021948408614 +UniRef50_UPI000365C1D0 hypothetical protein 5.50159718423e-06 5.31584140012e-05 4.7656816817e-05 +UniRef50_P59011 Bifunctional protein PyrR 1.1562119145e-05 5.10553787866e-05 3.94932596416e-05 +UniRef50_U3SYD5 MATE family drug transporter 8.8611734477e-05 0.00631502039798 0.0062264086635 +UniRef50_Q43922 3 dehydroshikimate dehydratase 0.000284412955181 0.00827871609782 0.00799430314264 +UniRef50_Q2RI74 Shikimate kinase 3.0003127003e-05 1.67252382864e-05 -1.32778887166e-05 +UniRef50_C1CX80 Bifunctional protein PyrR 0.000271649277704 0.0487918494453 0.0485202001676 +UniRef50_Z4VVL5 8.99096630229e-05 0.000405621034812 0.000315711371789 +UniRef50_B3QX75 UDP N acetylglucosamine 1 carboxyvinyltransferase 5.01326456e-06 1.48117103533e-05 9.7984457933e-06 +UniRef50_P96121 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 6.41817386193e-06 1.12101483178e-05 4.79197445587e-06 +UniRef50_UPI0002191618 6 phospho beta glucosidase 1.28061688515e-05 8.29851919407e-05 7.01790230892e-05 +UniRef50_UPI0003C10787 2.13320734582e-06 3.86253448286e-06 1.72932713704e-06 +UniRef50_R5RKK3 L serine dehydratase 7.76652188257e-06 7.10729121916e-06 -6.5923066341e-07 +UniRef50_Q5HKH4 Peptide ABC transporter, permease protein, putative 0.0178878785625 0.00573722472797 -0.0121506538345 +UniRef50_A0A011QZG0 Respiratory nitrate reductase 2 beta chain 0.00015539250397 0.000148961367109 -6.431136861e-06 +UniRef50_UPI000345A202 hypothetical protein 9.38782444629e-06 2.62416707265e-06 -6.76365737364e-06 +UniRef50_J2LQ54 NADH dehydrogenase subunit I 0.000394919220244 7.20281013641e-05 -0.00032289111888 +UniRef50_UPI000463660E hypothetical protein 1.56168695155e-05 0.000854418747387 0.000838801877872 +UniRef50_Q5WBL0 Aliphatic sulfonates import ATP binding protein SsuB 3 8.49010026632e-05 5.95484270717e-05 -2.53525755915e-05 +UniRef50_UPI000382981C hypothetical protein, partial 3.99208832295e-06 1.33233595906e-05 9.33127126765e-06 +UniRef50_UPI00047CCC4C 3 oxoacyl ACP synthase 8.63192262621e-06 5.54157124799e-06 -3.09035137822e-06 +UniRef50_Q9RZ68 0.000298015254361 0.0644308817478 0.0641328664934 +UniRef50_Q53L87 0.000129081869843 0.000291911075976 0.000162829206133 +UniRef50_Q4SKB1 Chromosome 13 SCAF14566, whole genome shotgun sequence 5.76961613574e-06 4.41026913378e-05 3.83330752021e-05 +UniRef50_Q9RZ60 0.00018118184526 0.0533760108616 0.0531948290163 +UniRef50_Q9RZ61 0.000219044094112 0.071962552528 0.0717435084339 +UniRef50_O32167 Methionine binding lipoprotein MetQ 0.00702591580323 0.00137607541567 -0.00564984038756 +UniRef50_A9MAP0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 0.000112458586552 6.73221330511e-06 -0.000105726373247 +UniRef50_A3CMH9 DEAD RNA helicase, putative 0.00453937262651 0.0046021351709 6.276254439e-05 +UniRef50_Q01WB8 30S ribosomal protein S11 0.00235139072764 0.000541865514113 -0.00180952521353 +UniRef50_Q5L310 Histidine ammonia lyase 6.76002416932e-06 8.13615769014e-05 7.46015527321e-05 +UniRef50_D5AP19 Sterol binding domain protein 0.000470675757076 0.000732190178178 0.000261514421102 +UniRef50_UPI0003123919 hypothetical protein 7.56580344714e-05 0.000193247371873 0.000117589337402 +UniRef50_UPI0004650B6E MULTISPECIES 0.000405812157848 0.000159774592534 -0.000246037565314 +UniRef50_UPI00047AC749 hypothetical protein 3.03735484888e-05 2.65824489754e-05 -3.7910995134e-06 +UniRef50_A8XU33 Protein CBG18769 0.000614234829976 0.00018282278413 -0.000431412045846 +UniRef50_UPI0003758259 MULTISPECIES 2.79291145147e-05 6.7229590919e-05 3.93004764043e-05 +UniRef50_Q04FM1 Energy coupling factor transporter ATP binding protein EcfA2 5.34462857841e-06 2.80669502317e-05 2.27223216533e-05 +UniRef50_V7WX89 9.47414561313e-06 0.00239994213896 0.00239046799335 +UniRef50_UPI000328F9A1 PREDICTED 0.00029187552607 0.00030620004922 1.432452315e-05 +UniRef50_UPI000372F683 hypothetical protein 3.86971354254e-05 5.33802906394e-06 -3.33591063615e-05 +UniRef50_M4YYR0 Phosphoglycerate mutase 0.0109513373982 0.0116527547182 0.00070141732 +UniRef50_Q0BVP4 Ribonuclease D 7.70237035159e-05 1.12117477589e-05 -6.5811955757e-05 +UniRef50_A6V1L5 6.71707534196e-05 0.00044600829835 0.00037883754493 +UniRef50_Q114I1 1,4 alpha glucan branching enzyme GlgB 2.39034889134e-06 5.73854117056e-06 3.34819227922e-06 +UniRef50_F4DWN5 Alpha beta hydrolase fold protein 0.000965784605402 0.000464472090682 -0.00050131251472 +UniRef50_D3QGJ7 Nitrilotriacetate monooxygenase 0.00842831225876 0.00172274158185 -0.00670557067691 +UniRef50_A6LYY8 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000305371577499 0.00299227858065 0.00268690700315 +UniRef50_UPI0003C8E201 PREDICTED 7.69125557788e-06 6.2079985708e-06 -1.48325700708e-06 +UniRef50_A3M465 TPR domain protein 0.000283338109982 0.00546352566663 0.00518018755665 +UniRef50_A7X204 Large conductance mechanosensitive channel 0.00502319458014 0.000516588988672 -0.00450660559147 +UniRef50_UPI00035D3D92 hypothetical protein 9.23145898757e-06 3.05588372267e-05 2.13273782391e-05 +UniRef50_UPI00036ED9BB thymidylate synthase 1.33726439632e-05 0.000211377445363 0.0001980048014 +UniRef50_UPI00037D216E hypothetical protein 9.54857822265e-05 4.48109577257e-05 -5.06748245008e-05 +UniRef50_P43784 Dihydrolipoyl dehydrogenase 2.05779231995e-05 1.41774247159e-05 -6.4004984836e-06 +UniRef50_C3LL78 Peptidase, M23 M37 family protein 1.61141349003e-05 0.000839673891573 0.000823559756673 +UniRef50_UPI000255ED81 hypothetical protein 4.71477510557e-06 3.32393602419e-05 2.85245851363e-05 +UniRef50_Q5HRN3 ISSep1 like transposase 0.162660368355 0.0569568075052 -0.10570356085 +UniRef50_W8UYM6 S formylglutathione hydrolase 0.000262143047812 0.000423899576834 0.000161756529022 +UniRef50_I0ETM1 Bifunctional riboflavin kinase FMN adenylyltransferase 0.000778375684485 0.00290620120329 0.00212782551881 +UniRef50_Q1AU56 DNA directed RNA polymerase subunit alpha 1.57829938855e-05 1.71589910642e-05 1.3759971787e-06 +UniRef50_P0A6M3 Disulfide bond formation protein B 0.00102499185968 0.00100549512832 -1.949673136e-05 +UniRef50_R9SIZ9 Xylose isomerase like TIM barrel domain containing protein 0.00147517184205 0.000605134294071 -0.000870037547979 +UniRef50_A0A011MST9 Putative ATP dependent protease 2.79051309802e-05 3.93561972567e-05 1.14510662765e-05 +UniRef50_UPI000364852F hypothetical protein 3.39126099349e-06 5.504038875e-06 2.11277788151e-06 +UniRef50_A4XNC3 Transcriptional regulator, LysR family 0.000508384579447 0.000316976785549 -0.000191407793898 +UniRef50_Q9RZI9 2.7257021696e-05 0.0130150080886 0.0129877510669 +UniRef50_Q2GBU1 4.383639402e-06 7.11078441415e-06 2.72714501215e-06 +UniRef50_E2XNR6 Chemotaxis sensory transducer 0.000497878784558 0.000140181980313 -0.000357696804245 +UniRef50_A3NNI6 S glutathione dehydrogenase 0.000561701081925 0.0488434325168 0.0482817314349 +UniRef50_UPI00035F7621 hypothetical protein 1.72453365293e-05 1.35091004499e-05 -3.7362360794e-06 +UniRef50_Q8CMX9 Anaerobic dicarboxylate transport 0.0115710421362 0.00255051752957 -0.00902052460663 +UniRef50_A7ZTG3 Protein export protein SecB 0.00446848391137 0.0015542984484 -0.00291418546297 +UniRef50_P76128 Probable D,D dipeptide binding periplasmic protein DdpA 0.0025594162188 0.00142025843111 -0.00113915778769 +UniRef50_A6LU60 Prophage ps3 protein 01, putative 0.000555753370172 0.00100746934582 0.000451715975648 +UniRef50_Q5W6S1 Os05g0345700 protein 5.31381233381e-05 0.000201506388763 0.000148368265425 +UniRef50_C5CB84 Branched chain amino acid uptake carrier 0.000878916813692 0.00507134232279 0.0041924255091 +UniRef50_UPI00036BAC4E hypothetical protein 2.81712449789e-06 6.24621491499e-06 3.4290904171e-06 +UniRef50_S4X9U7 LysR family HTH type transcriptional regulator 0.0130423086757 0.00255565808974 -0.010486650586 +UniRef50_UPI0003B52A97 ribonuclease 1.36489157588e-05 8.1126805224e-06 -5.5362352364e-06 +UniRef50_UPI00037423BF hypothetical protein, partial 1.61602833551e-05 1.84856649675e-05 2.3253816124e-06 +UniRef50_UPI000378F32E hypothetical protein 0.000108785587569 0.000170867910433 6.2082322864e-05 +UniRef50_F0MS68 Outer membrane protein OpcA 0.000744767324648 0.00692864029776 0.00618387297311 +UniRef50_A0KET1 Membrane lipoprotein 0.0100993880784 0.00179518666923 -0.00830420140917 +UniRef50_W0WHZ7 0.000870790384845 0.000314350228147 -0.000556440156698 +UniRef50_P45871 0.000929409016622 0.000954095218597 2.4686201975e-05 +UniRef50_R4ZVH1 Hydroxymethylglutaryl CoA reductase 0.00673236480112 0.00320897001124 -0.00352339478988 +UniRef50_UPI000262730A exodeoxyribonuclease III 3.38239713514e-05 2.46626750941e-05 -9.1612962573e-06 +UniRef50_Q4FQI2 Shikimate kinase 2.55544336663e-05 1.97435744349e-05 -5.8108592314e-06 +UniRef50_Q016J7 GTP binding protein 1.8438679864e-05 5.11889461323e-05 3.27502662683e-05 +UniRef50_UPI00046A74CA quinone oxidoreductase 1.15443544695e-05 5.16803319141e-05 4.01359774446e-05 +UniRef50_UPI0003632653 hypothetical protein 1.89180758887e-06 1.86737712604e-06 -2.443046283e-08 +UniRef50_I2ICF5 Transposase 3.83851941257e-05 1.1955022253e-05 -2.64301718727e-05 +UniRef50_H6NN00 MerR family transcriptional regulator 0.000542836388043 0.00063279120141 8.9954813367e-05 +UniRef50_E6MYF0 Bacterial lipid A biosynthesis acyltransferase family protein 0.000133860279732 0.00231722102721 0.00218336074748 +UniRef50_UPI000478CD68 translation initiation factor IF 2 1.90604359e-05 3.67254870349e-05 1.76650511349e-05 +UniRef50_V5VE92 MFS transporter 0.000318873788606 0.00369439791441 0.0033755241258 +UniRef50_Q5F5X0 1 deoxy D xylulose 5 phosphate reductoisomerase 9.67912791928e-05 0.00253456153785 0.00243777025866 +UniRef50_B7UXA3 Flagellar hook associated protein 1 FlgK 0.000799672924193 0.000181190511586 -0.000618482412607 +UniRef50_U6LVU1 2.40837415685e-06 2.31651226409e-05 2.07567484841e-05 +UniRef50_UPI0004678984 MULTISPECIES 1.15077446288e-05 5.18475920666e-05 4.03398474378e-05 +UniRef50_UPI00046E9450 hypothetical protein 1.94754915065e-05 4.97781282663e-05 3.03026367598e-05 +UniRef50_P39298 Esterase YjfP 0.00296936979984 0.00289711675144 -7.22530484e-05 +UniRef50_E3RE87 7.94081805221e-05 1.25631732125e-05 -6.68450073096e-05 +UniRef50_Q2NAN4 DNA topology modulation protein 8.39850631177e-05 9.30574894704e-05 9.0724263527e-06 +UniRef50_UPI00040DCB53 hypothetical protein 6.24216967163e-05 8.62870801449e-05 2.38653834286e-05 +UniRef50_F2KZY9 Metal ion transporter, metal ion transporter (Nramp) family 0.000380001546041 0.00385864129047 0.00347863974443 +UniRef50_UPI000288BAAB dihydroorotate dehydrogenase 3.9974577365e-06 7.60779140777e-06 3.61033367127e-06 +UniRef50_P18159 Phosphoglucomutase 0.00437280385273 0.00625526445618 0.00188246060345 +UniRef50_UPI0002B94CAD hypothetical protein, partial 3.53081199829e-05 0.00105855203594 0.00102324391596 +UniRef50_A6M1D1 Phage replisome organizer, putative 0.000535833594103 0.00239377294046 0.00185793934636 +UniRef50_S5XSU0 Segregation and condensation protein A 0.00536530565577 0.000673745730992 -0.00469155992478 +UniRef50_M1TQL6 Fe S cluster redox enzyme 3.84156782408e-05 0.000134090394489 9.56747162482e-05 +UniRef50_E8NHR5 WGS CADB00000000 data, contig 91 0.000195084056806 0.00166098900411 0.0014659049473 +UniRef50_A6LY06 Helix turn helix domain containing protein, AraC type 0.000130167582368 0.000894178874746 0.000764011292378 +UniRef50_A7MN74 NAD dependent malic enzyme 0.00206226248975 0.00860573130965 0.0065434688199 +UniRef50_E1VPQ4 8.24558837221e-05 2.30317669311e-05 -5.9424116791e-05 +UniRef50_Q634K1 Transposase 2.9552887343e-05 5.49133062935e-05 2.53604189505e-05 +UniRef50_Q9RTE1 Glucose 1 phosphate adenylyltransferase 0.000125133476969 0.0167281546121 0.0166030211351 +UniRef50_C9RUW3 ComE operon protein 2 0.0242556342098 0.00131182032925 -0.0229438138805 +UniRef50_F2LGK2 7.05768351849e-05 7.46636977426e-05 4.0868625577e-06 +UniRef50_UPI0003656D72 hypothetical protein 1.00847457151e-05 2.52439286613e-05 1.51591829462e-05 +UniRef50_E6N0Q8 1.68892903177e-05 0.00075960414343 0.000742714853112 +UniRef50_E6N0Q9 6.50804683823e-05 6.84755813808e-05 3.3951129985e-06 +UniRef50_Q3IXH2 Fumarase alpha subunit 0.00331664784033 0.00140122742581 -0.00191542041452 +UniRef50_UPI00036E7B4E hypothetical protein 0.000259433481261 0.000113028729164 -0.000146404752097 +UniRef50_F4M9A1 Dimethyl sulfoxide reductase chain YnfE 0.000844221360706 0.000130767544741 -0.000713453815965 +UniRef50_G8UZQ2 Bacterial low temperature requirement A family protein 0.0099436691627 0.00171580529653 -0.00822786386617 +UniRef50_UPI00047AD872 2 oxoglutarate dehydrogenase 1.72877016346e-06 4.32659097173e-06 2.59782080827e-06 +UniRef50_U2YEL7 7.1407943731e-05 0.000139081650806 6.7673707075e-05 +UniRef50_UPI00037E762B MULTISPECIES 5.18437813206e-06 4.30876186354e-06 -8.7561626852e-07 +UniRef50_UPI00040E4B39 NADH 4.34555887214e-06 8.84156192407e-06 4.49600305193e-06 +UniRef50_UPI000289FCDF shikimate kinase 3.10049756705e-05 5.69110187128e-05 2.59060430423e-05 +UniRef50_T0Y894 GMP synthase, large subunit 9.69100820059e-05 5.13850580653e-05 -4.55250239406e-05 +UniRef50_S9P8Y7 3.08121250774e-05 7.23983655037e-06 -2.3572288527e-05 +UniRef50_A3RSV8 Hypothetical membrane spanning protein 0.000231728375811 6.18666073691e-05 -0.000169861768442 +UniRef50_Q1IKG7 Phospho N acetylmuramoyl pentapeptide transferase 5.67648652969e-06 4.0076306317e-05 3.43998197873e-05 +UniRef50_B7MKP4 0.000215706279348 0.00143080589023 0.00121509961088 +UniRef50_Q5HQ23 Non canonical purine NTP pyrophosphatase 0.000233545619095 1.90353477199e-05 -0.000214510271375 +UniRef50_UPI0003FD107E phosphoglycerate mutase 1.63873274633e-05 5.07613549427e-06 -1.1311191969e-05 +UniRef50_I0C7R8 Short chain dehydrogenase 0.0107410127745 0.000269695621179 -0.0104713171533 +UniRef50_P0ABM0 Heme exporter protein B 0.00377884517882 0.0013756825053 -0.00240316267352 +UniRef50_P0ABG2 Phosphatidate cytidylyltransferase 0.00278837864127 0.000231016979293 -0.00255736166198 +UniRef50_A6LYG5 0.000711119602238 0.00205031328656 0.00133919368432 +UniRef50_Q9JZS9 0.000264592982837 0.00248471339488 0.00222012041204 +UniRef50_A0A011UDJ9 2.87665304554e-06 4.4001486687e-05 4.11248336415e-05 +UniRef50_UPI000292A56C 0.000237109124476 6.59988238092e-05 -0.000171110300667 +UniRef50_UPI00037DD48E hypothetical protein 1.63373388322e-05 2.64640287723e-05 1.01266899401e-05 +UniRef50_E8SJM7 Siderophore staphylobactin biosynthesis protein SbnG 0.0188802880594 0.00574820079201 -0.0131320872674 +UniRef50_T1AK40 NAD dependent dehydrogenase 4.49554345454e-05 7.78466614959e-05 3.28912269505e-05 +UniRef50_UPI0003775605 hypothetical protein 3.61640014434e-05 0.000359849577725 0.000323685576282 +UniRef50_Q1QUR0 3 isopropylmalate dehydrogenase 0.00474960145902 0.00802717770631 0.00327757624729 +UniRef50_B2TNA6 D galactose binding periplasmic protein 0.000194246649494 0.00281581643978 0.00262156979029 +UniRef50_C5WII8 Amino acid ABC transporter extracellular binding protein 0.0032230246027 0.00134631170266 -0.00187671290004 +UniRef50_Q88A48 Bis tetraphosphatase, symmetrical 5.34552866733e-06 0.000429946379616 0.000424600850949 +UniRef50_K6LY10 Amidohydrolase family protein 0.000144150269287 0.00175997078212 0.00161582051283 +UniRef50_UPI000470129B hypothetical protein 2.50157726056e-05 0.000130135014401 0.000105119241795 +UniRef50_A3K1G7 5.89512277509e-05 6.71648157749e-06 -5.22347461734e-05 +UniRef50_P37692 ADP heptose LPS heptosyltransferase 2 0.00296909206967 0.000469696835465 -0.0024993952342 +UniRef50_UPI00035FB32E hypothetical protein, partial 1.71460308485e-05 2.92151984951e-05 1.20691676466e-05 +UniRef50_A6M0G3 PAS PAC sensor signal transduction histidine kinase 0.000103971976311 0.00231714059976 0.00221316862345 +UniRef50_Q1LFE8 Transcriptional regulator, LysR family 0.000355681077713 0.000298299702217 -5.7381375496e-05 +UniRef50_UPI00042AF78A PREDICTED 0.000121462610869 9.5023230289e-05 -2.643938058e-05 +UniRef50_R6FZX0 Helicase domain protein 0.000322815277223 0.000809300307508 0.000486485030285 +UniRef50_C1E796 Predicted protein 1.62537979177e-05 7.94771902066e-05 6.32233922889e-05 +UniRef50_UPI000262E85E nucleoside diphosphate sugar epimerase 3.10887003377e-05 2.61471842884e-05 -4.9415160493e-06 +UniRef50_Q9RRK0 0.000111792494231 0.00751174617461 0.00739995368038 +UniRef50_Q9RRK5 0.000152416953778 0.0634805286484 0.0633281116946 +UniRef50_B2SC15 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase 0.0135659153742 0.0116515829745 -0.0019143323997 +UniRef50_Q9RRK7 9.54050519479e-05 0.0573174387728 0.0572220337209 +UniRef50_UPI0001850CC8 3 oxoacyl synthase II 3.09206400083e-05 1.77371437705e-05 -1.31834962378e-05 +UniRef50_I1QER0 4.85161341716e-05 8.04782773361e-06 -4.0468306438e-05 +UniRef50_UPI0002481C5F transposase Tn3 family protein, partial 1.47980167239e-05 0.00119269567781 0.00117789766109 +UniRef50_Q0B3Q1 Flavin containing monooxygenase FMO 0.000121248176295 0.000164981399557 4.3733223262e-05 +UniRef50_UPI00037EC779 hypothetical protein 1.72108907705e-05 0.000100362015175 8.31511244045e-05 +UniRef50_G0A2X8 DoxX family protein 5.19106947738e-05 3.23061681652e-05 -1.96045266086e-05 +UniRef50_A5UN92 Multidrug efflux permease, AraJ 0.00499330669844 0.000660491105875 -0.00433281559256 +UniRef50_I6T783 Transporter trans membrane domain bacteriocin immunity protein 0.00528990544634 0.00111570251362 -0.00417420293272 +UniRef50_UPI000185DB7C zinc finger protein, putative 1.86905365454e-06 1.20834195835e-06 -6.6071169619e-07 +UniRef50_G7U3Z0 0.000261248490195 0.00374910812187 0.00348785963167 +UniRef50_F5XMJ8 Oxygen independent coproporphyrinogen III oxidase 0.000670184801124 0.00403723084843 0.00336704604731 +UniRef50_P46322 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.0118903804173 0.00289457153231 -0.00899580888499 +UniRef50_UPI00030144E8 hypothetical protein 5.81721261139e-05 4.3112322486e-05 -1.50598036279e-05 +UniRef50_F0YGY7 0.000208909977261 0.000938888504514 0.000729978527253 +UniRef50_M4YXB8 Uracil DNA glycosylase superfamily protein 0.00393128589723 0.000468347099909 -0.00346293879732 +UniRef50_UPI00015FB2F9 hypothetical protein 1.02942774367e-05 4.09954815465e-05 3.07012041098e-05 +UniRef50_L0FIE0 Diguanylate cyclase 0.000827675890719 0.000307621567909 -0.00052005432281 +UniRef50_Q8CXD9 Aminomethyltransferase 0.013798275744 0.00334196968425 -0.0104563060597 +UniRef50_M2TAB3 PhbF 2.42702630465e-05 1.09695176395e-05 -1.3300745407e-05 +UniRef50_D8HDV1 M23 M37 peptidase domain protein 0.0083790307085 0.00205669576719 -0.00632233494131 +UniRef50_P25795 Aldehyde dehydrogenase family 7 member A1 0.0004753712871 0.000151444464203 -0.000323926822897 +UniRef50_M4YX01 RNA binding protein 0.000378748483804 0.00132683276549 0.000948084281686 +UniRef50_X5HG80 Long chain fatty acid ABC transporter 0.000313226783592 0.00864951645332 0.00833628966973 +UniRef50_Q04IA2 Glucose 6 phosphate isomerase 0.00755913876272 0.0132656405619 0.00570650179918 +UniRef50_B9DNP9 Exodeoxyribonuclease 7 large subunit 0.0167506456871 0.00535867599622 -0.0113919696909 +UniRef50_U3QR56 ABC transporter permease 0.011218659388 0.00344294749294 -0.00777571189506 +UniRef50_UPI00035EC4D9 hypothetical protein, partial 3.34355112823e-05 7.75672291262e-05 4.41317178439e-05 +UniRef50_E6UXA3 Phosphate transporter 0.000673742806667 0.00626742758178 0.00559368477511 +UniRef50_Q3JJ67 1.07446117589e-05 2.75409824326e-05 1.67963706737e-05 +UniRef50_P44640 0.000773684025405 0.00109586299042 0.000322178965015 +UniRef50_W5X6D8 Membrane fusion protein 9.7952605925e-06 4.23607431311e-05 3.25654825386e-05 +UniRef50_Q67NU0 Cytidylate kinase 1.56078945597e-05 9.79170741271e-05 8.23091795674e-05 +UniRef50_Q3JUL3 0.000325798783623 4.34656975814e-05 -0.000282333086042 +UniRef50_Q5HJ85 Protein EsaC 0.00244670532156 0.00933649726201 0.00688979194045 +UniRef50_J0NSU5 8.62704005634e-06 0.00263764999154 0.00262902295148 +UniRef50_UPI00038115B9 hypothetical protein 2.9001460378e-05 3.08101198604e-05 1.8086594824e-06 +UniRef50_G0AJ20 Glycosyltransferase 0.000513366419918 0.000192597851207 -0.000320768568711 +UniRef50_A3CLG7 Hydrolase, HAD superfamily, putative 0.00672611293986 0.00437715119931 -0.00234896174055 +UniRef50_N6V947 0.00015543327308 7.96235495201e-06 -0.000147470918128 +UniRef50_A6LTV8 0.000228063123226 0.00211488160148 0.00188681847825 +UniRef50_UPI00038028F6 hypothetical protein 2.13183228138e-06 6.7449088285e-06 4.61307654712e-06 +UniRef50_T0U2I3 0.00449714639591 0.00209252893689 -0.00240461745902 +UniRef50_I4CVC3 0.000158116322005 0.000125601466297 -3.2514855708e-05 +UniRef50_B9KU56 Xanthine oxidase 0.00125725716397 0.000149889273766 -0.0011073678902 +UniRef50_P0A4H7 Transcriptional regulatory protein CiaR 0.00433244991405 0.00252589195558 -0.00180655795847 +UniRef50_G2TKZ3 NUDIX hydrolase 0.00586860552378 0.00272822786562 -0.00314037765816 +UniRef50_I0EMS0 Bifunctional cytochrome c biogenesis protein 0.000132980846837 0.00253757003084 0.002404589184 +UniRef50_A6LTV7 0.000164961452225 0.000778726237326 0.000613764785101 +UniRef50_I6SU15 0.00372190360222 0.000789327781131 -0.00293257582109 +UniRef50_UPI0001BF70A9 hypothetical protein SMAC_07598 1.71013035831e-06 1.71938442177e-06 9.25406346e-09 +UniRef50_B9E4Q8 0.000578960336452 0.000667914415714 8.8954079262e-05 +UniRef50_M4RAV2 Phosphoglycerate mutase related protein 0.000784342631636 0.00295856741404 0.0021742247824 +UniRef50_UPI0003B511AF histidine kinase 2.74884117816e-06 0.000937515472934 0.000934766631756 +UniRef50_B4U2B4 Septation ring formation regulator EzrA 0.00399886672741 0.00252696380952 -0.00147190291789 +UniRef50_L0F3J6 Phosphoenolpyruvate synthase pyruvate phosphate dikinase 0.000515707073111 0.000831395614021 0.00031568854091 +UniRef50_V5BIM4 1.13713726136e-05 1.01970923034e-05 -1.1742803102e-06 +UniRef50_UPI0002556319 pseudouridine synthase 6.27942338826e-05 1.74609432759e-05 -4.53332906067e-05 +UniRef50_B7RP52 3.23826134708e-06 1.73468874933e-06 -1.50357259775e-06 +UniRef50_UPI0003B48412 thiamine biosynthesis protein ThiF 1.32517865654e-05 1.46138445934e-05 1.362058028e-06 +UniRef50_UPI0003AD5F31 hypothetical protein 0.000128641671529 7.2843266741e-05 -5.5798404788e-05 +UniRef50_T2E0C1 0.00108392420378 0.000912838346346 -0.000171085857434 +UniRef50_B8FZA5 Peptidyl tRNA hydrolase 2.56673091153e-05 2.6934613225e-05 1.2673041097e-06 +UniRef50_UPI0004219762 hypothetical protein 6.62809261238e-06 1.15495995198e-05 4.92150690742e-06 +UniRef50_E1Q396 Thioredoxin reductase 0.000122826243664 0.00274272612365 0.00261989987999 +UniRef50_UPI00035FB5C7 hypothetical protein 2.05794651769e-05 6.43295565754e-05 4.37500913985e-05 +UniRef50_A1UAG5 Phosphatidylserine decarboxylase proenzyme 0.00169245538422 0.00152360062867 -0.00016885475555 +UniRef50_I2SYF8 Cation efflux system protein CusA 0.00221422078921 0.000494414398836 -0.00171980639037 +UniRef50_UPI000371FCD3 hypothetical protein 0.000372149705715 5.81297397007e-05 -0.000314019966014 +UniRef50_U5MS66 Glycerol 1 phosphate dehydrogenase 0.000216223505426 0.00357206639684 0.00335584289141 +UniRef50_UPI0003B530FD peptidase M22 1.09168716841e-05 1.24132030499e-05 1.4963313658e-06 +UniRef50_J5IRB2 0.000348448605091 0.000798153257284 0.000449704652193 +UniRef50_F7QFG7 Glycolate dehydrogenase 0.000446621098025 0.000460095914695 1.347481667e-05 +UniRef50_R9SLR7 0.00343357677766 0.00131006220993 -0.00212351456773 +UniRef50_P32143 Sulfofructose kinase 0.00315059511625 0.000754956916339 -0.00239563819991 +UniRef50_D1DJP5 Phage repressor protein 0.000327138881892 0.0024063925346 0.00207925365271 +UniRef50_S2W2I7 9.34522870458e-06 2.4647748766e-05 1.53025200614e-05 +UniRef50_UPI0003C15FB0 PREDICTED 2.98995411747e-06 1.05361930591e-05 7.54623894163e-06 +UniRef50_C5QVZ6 0.0675603476614 0.0168618448495 -0.0506985028119 +UniRef50_UPI00037F1AC8 nucleoside triphosphate diphosphatase 8.11840148686e-06 1.95566828506e-05 1.14382813637e-05 +UniRef50_UPI0002ED2583 hypothetical protein 0.000577589887891 0.000310364408692 -0.000267225479199 +UniRef50_U5NRT4 0.00641945956696 0.00137175746838 -0.00504770209858 +UniRef50_A4VM51 Nitrate binding protein NasS 0.00046479100412 0.000340574032415 -0.000124216971705 +UniRef50_UPI0002000C91 iron ABC transporter, partial 2.15146298045e-05 5.8371068437e-05 3.68564386325e-05 +UniRef50_M9SAW1 0.000890814129841 0.000276121722171 -0.00061469240767 +UniRef50_C5ZXL6 Hydrogenase expression formation protein HypE 0.000177223468942 0.00197976362333 0.00180254015439 +UniRef50_UPI0003B79B45 branched chain amino acid aminotransferase 0.000177788742358 1.76075990283e-05 -0.00016018114333 +UniRef50_A6TG52 D ribose pyranase 0.000672914187671 0.00753479441464 0.00686188022697 +UniRef50_B1TES8 2.10447092255e-05 3.38664450361e-05 1.28217358106e-05 +UniRef50_P76222 0.00117991395255 0.00200214715387 0.00082223320132 +UniRef50_UPI000462ED7D hypothetical protein 2.42413041712e-05 1.85850282597e-05 -5.6562759115e-06 +UniRef50_J2YES6 Outer membrane protein, OMP85 family 0.000536677906781 0.00135128209951 0.000814604192729 +UniRef50_A1WN39 Mg chelatase, subunit ChlI 0.000528594704658 0.00237036917522 0.00184177447056 +UniRef50_K4NKR5 7.95265425939e-05 0.00288139197258 0.00280186542999 +UniRef50_P39370 Probable 9 O acetyl N acetylneuraminic acid deacetylase 0.0022812811489 0.000698276012413 -0.00158300513649 +UniRef50_UPI000255E8AD membrane protein 2.61516693488e-05 1.98835490073e-05 -6.2681203415e-06 +UniRef50_Q81II2 Arginine regulator 1.66919242749e-05 0.000450865198773 0.000434173274498 +UniRef50_W1W6K4 0.278232683798 0.0628932216423 -0.215339462156 +UniRef50_M8EPJ5 0.00154224705879 0.00950688063661 0.00796463357782 +UniRef50_Q74KF8 Phosphate import ATP binding protein PstB 2 1.44136027914e-05 8.76171550334e-05 7.3203552242e-05 +UniRef50_A3CQK2 0.000494947520188 0.000308661081921 -0.000186286438267 +UniRef50_UPI0003F5C642 hypothetical protein 0.000177049738148 0.000117297177427 -5.9752560721e-05 +UniRef50_Q2RK39 Orotidine 5 phosphate decarboxylase 1.6604602774e-05 1.12583196581e-05 -5.3462831159e-06 +UniRef50_A1B425 0.000346896234112 5.29678126955e-05 -0.000293928421416 +UniRef50_UPI0004685071 MerR family transcriptional regulator 0.000149936702514 0.000505444574344 0.00035550787183 +UniRef50_W5X8A1 9.35804544484e-06 2.51745733853e-05 1.58165279405e-05 +UniRef50_UPI000313CECC hypothetical protein 2.81735408109e-05 1.764738175e-05 -1.05261590609e-05 +UniRef50_Q06067 Signal transduction histidine protein kinase AtoS 0.00216749963779 0.00100916423452 -0.00115833540327 +UniRef50_I6TW33 TetR AcrR family transcriptional regulator 0.00540857432152 0.00300034340971 -0.00240823091181 +UniRef50_G7M6N7 GTP binding protein HSR1 related protein 0.000567404543524 0.00178434334723 0.00121693880371 +UniRef50_F0Y8S9 0.000325542511239 0.000705310250772 0.000379767739533 +UniRef50_M9RGW8 23S rRNA [guanosine 2 O ] methyltransferase RlmB 0.000677705566004 0.00023815863322 -0.000439546932784 +UniRef50_G7M469 Drug resistance transporter, EmrB QacA subfamily 0.000241703444048 0.000137143980732 -0.000104559463316 +UniRef50_A4YX93 L fuculose 1 phosphate aldolase 0.0190900166282 0.00458073408353 -0.0145092825447 +UniRef50_F8GTL5 4.08247297547e-06 7.01989868998e-06 2.93742571451e-06 +UniRef50_UPI0003C177A0 PREDICTED 5.36708198106e-06 1.50951682323e-05 9.72808625124e-06 +UniRef50_C0P4G8 0.0112494467024 0.00294751619946 -0.00830193050294 +UniRef50_U9LDC5 0.000813497390879 0.00248978824375 0.00167629085287 +UniRef50_B5WFL3 6.16655879961e-05 1.14519699256e-05 -5.02136180705e-05 +UniRef50_Q8PMG5 Phospholipase 0.000173423884613 0.00461088783385 0.00443746394924 +UniRef50_V6F503 Transposase 3.42541856891e-05 2.94738262753e-05 -4.7803594138e-06 +UniRef50_Q2IIK2 0.000448099697328 7.23643585034e-05 -0.000375735338825 +UniRef50_L7BUG1 GTP binding protein TypA, BipA 2.52404285411e-05 3.72369119099e-05 1.19964833688e-05 +UniRef50_O67550 5 3 exonuclease 2.18406213857e-05 0.000144018203619 0.000122177582233 +UniRef50_B7M371 Flagellar protein FliT 0.00154698890717 0.00224291168503 0.00069592277786 +UniRef50_D5X8K2 NADH quinone oxidoreductase subunit I 0.000294910928794 0.000509166733097 0.000214255804303 +UniRef50_Q664W4 Isocitrate dehydrogenase kinase phosphatase 0.00191288313022 0.000777803056041 -0.00113508007418 +UniRef50_F4D3L6 0.000159951690188 0.00777026334343 0.00761031165324 +UniRef50_V8GXC4 Protein pucC 7.67674993625e-05 1.57911827097e-05 -6.09763166528e-05 +UniRef50_T2A3K0 MafB family adhesin protein 0.00012724246815 0.000820324892546 0.000693082424396 +UniRef50_L7LVI6 Putative mucin 5ac 0.000220938017744 4.87562597947e-05 -0.000172181757949 +UniRef50_G2JRU4 Phosphoglycerate mutase 0.00622917444087 0.00184144765348 -0.00438772678739 +UniRef50_UPI000465BD7B hypothetical protein 3.04236007301e-05 2.51399115261e-05 -5.283689204e-06 +UniRef50_Q5LXZ9 Argininosuccinate lyase 1.27976925509e-05 1.144906346e-05 -1.3486290909e-06 +UniRef50_Q6F9Z8 Malate synthase G 0.000105051962823 0.00656462835221 0.00645957638939 +UniRef50_B8ENG4 Leucyl aminopeptidase 0.0013810856392 0.00041418495179 -0.00096690068741 +UniRef50_N6V8H7 5.75301892126e-05 0.000282327328127 0.000224797138914 +UniRef50_R5F4E6 0.000567517826046 0.000923490986135 0.000355973160089 +UniRef50_V5C579 Non hemolytic phospholipase C 4.04407779216e-06 6.13832692213e-06 2.09424912997e-06 +UniRef50_UPI00036632DA hypothetical protein 4.352594419e-05 1.80764929642e-05 -2.54494512258e-05 +UniRef50_A0A010PG87 Ribonuclease E 0.00026914567433 0.0074217681721 0.00715262249777 +UniRef50_D6A365 Predicted protein 0.000114853749147 0.000180071161704 6.5217412557e-05 +UniRef50_UPI00037534FD resolvase 6.59230971402e-05 3.92493499541e-05 -2.66737471861e-05 +UniRef50_A5USR7 DNA directed RNA polymerase subunit beta 7.0317390333e-06 2.49028911299e-06 -4.54144992031e-06 +UniRef50_UPI00035ECFEE hypothetical protein 6.47118838e-05 0.00378942047778 0.00372470859398 +UniRef50_F3P5V2 Rhamnan synthesis protein F 3.78204593075e-06 4.8669151496e-06 1.08486921885e-06 +UniRef50_J9NVA3 0.000421064291552 0.000383891384436 -3.7172907116e-05 +UniRef50_E6K098 ABC transporter, substrate binding protein, QAT family 0.00946019015066 0.0020472585303 -0.00741293162036 +UniRef50_F2HK99 Branched chain amino acid 0.0210753069266 0.00491245691468 -0.0161628500119 +UniRef50_UPI00047B7ECA peroxiredoxin 1.61437673729e-05 0.000324609618691 0.000308465851318 +UniRef50_UPI000463E58D adenylyltransferase, partial 0.000129081843162 8.03393705995e-05 -4.87424725625e-05 +UniRef50_UPI0003B6A60F hypothetical protein 2.09759041937e-05 1.84725480685e-06 -1.91286493869e-05 +UniRef50_D9R3W0 PTS system, lactose cellobiose family IIC subunit 0.000224355402255 0.000917770612685 0.00069341521043 +UniRef50_A4X0D6 SH3, type 3 domain protein 0.0148435338747 0.00508563810486 -0.00975789576984 +UniRef50_Z3GHL3 0.000136388142802 0.00016720651992 3.0818377118e-05 +UniRef50_Q02EP8 tRNA sulfurtransferase 0.00110709311621 0.000162708928474 -0.000944384187736 +UniRef50_R0E2F9 5.69211773263e-05 0.000167318246575 0.000110397069249 +UniRef50_UPI000467973F hypothetical protein 1.79305637653e-05 1.47569500956e-05 -3.1736136697e-06 +UniRef50_UPI0004255353 hypothetical protein 2.75271342113e-05 2.45645595031e-05 -2.9625747082e-06 +UniRef50_UPI0003B4F400 iron ABC transporter ATP binding protein 0.000140683180198 0.00013296368261 -7.719497588e-06 +UniRef50_R5JER5 RelA SpoT domain protein 0.0112390811602 0.0018593475661 -0.0093797335941 +UniRef50_Q8DSQ9 Tyrosine recombinase XerD like 0.00467178762674 0.00132748160413 -0.00334430602261 +UniRef50_Q46339 Formyltetrahydrofolate deformylase 0.00947395186985 0.00121113964559 -0.00826281222426 +UniRef50_UPI0003B771E7 MULTISPECIES 5.33769074795e-05 2.33578311611e-05 -3.00190763184e-05 +UniRef50_Q47702 0.00332402332451 0.00048412574623 -0.00283989757828 +UniRef50_X7F5H4 1.77280294336e-05 1.39526738961e-05 -3.7753555375e-06 +UniRef50_P0ABV0 Protein TolQ 0.00103429585003 0.00254676684895 0.00151247099892 +UniRef50_UPI00047C65E6 hypothetical protein 5.98776590438e-05 6.5786544066e-06 -5.32990046372e-05 +UniRef50_A6LWR5 Phage integrase family protein 0.000118334165783 0.00116810239152 0.00104976822574 +UniRef50_Q3IV24 0.000913314869208 0.00116499844958 0.000251683580372 +UniRef50_UPI0003B5337E PREDICTED 2.7093055757e-06 9.8884150925e-07 -1.72046406645e-06 +UniRef50_UPI00046923C9 hypothetical protein 5.12194945014e-06 8.0418094213e-07 -4.31776850801e-06 +UniRef50_S2VZ33 3.6590588892e-06 1.25948707357e-05 8.9358118465e-06 +UniRef50_B4RKT2 0.000208172420321 0.00199207513225 0.00178390271193 +UniRef50_A5ULP1 Predicted O linked GlcNAc transferase 0.00233157039354 0.000602576365377 -0.00172899402816 +UniRef50_C4ZJC7 NADH ubiquinone oxidoreductase chain 4L 0.000442366393186 0.000532102171523 8.9735778337e-05 +UniRef50_B1GYY9 Bifunctional protein PyrR 1.02426217482e-05 7.42280115737e-05 6.39853898255e-05 +UniRef50_D4HDS2 Alpha 1,4 glucan 0.000151486876401 0.00369988131658 0.00354839444018 +UniRef50_B7GF12 Ferrochelatase 0.0190140428472 0.00922770042343 -0.00978634242377 +UniRef50_A3NIS0 Proline specific permease 0.00113345877002 0.000421420729944 -0.000712038040076 +UniRef50_A5UMI6 Multimeric flavodoxin 0.00488906345484 0.000557201330567 -0.00433186212427 +UniRef50_P0AGN1 Xanthine permease XanP 0.00383213711656 0.000463470800048 -0.00336866631651 +UniRef50_Q05069 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.000429377403536 0.00617931298426 0.00574993558072 +UniRef50_UPI0002627F1B glycerol 3 phosphate ABC transporter ATP binding protein 6.47145975203e-05 2.06782192039e-05 -4.40363783164e-05 +UniRef50_B6AV02 2.37650687121e-05 2.06739229483e-05 -3.0911457638e-06 +UniRef50_UPI000364DCAC hypothetical protein, partial 4.29005252867e-05 6.42111121326e-06 -3.64794140734e-05 +UniRef50_A1UTL7 0.0016253456944 0.000640115254802 -0.000985230439598 +UniRef50_M9S1E1 Transcriptional regulator 0.000666167515011 0.000300079144647 -0.000366088370364 +UniRef50_UPI0003ADE5F5 PREDICTED 4.77187343126e-05 0.000132801246403 8.50825120904e-05 +UniRef50_A5UJE0 DNA helicase 0.00186221625627 0.00107611436036 -0.00078610189591 +UniRef50_Q9X9H7 0.000905966373245 0.00141752018494 0.000511553811695 +UniRef50_A0A037XIK8 0.000507334039039 4.76697335853e-05 -0.000459664305454 +UniRef50_Q9RSR1 Polyribonucleotide nucleotidyltransferase 0.000162875462885 0.0304022303206 0.0302393548577 +UniRef50_A6M132 Abortive infection protein 0.000199376402564 0.00128363920806 0.0010842628055 +UniRef50_UPI0002558D3C LysR 1.42883882164e-05 9.48110066088e-06 -4.80728755552e-06 +UniRef50_UPI0003B5E137 glycine betaine ABC transporter ATP binding protein 8.07624538799e-05 7.99437717595e-06 -7.2768076704e-05 +UniRef50_C6D465 1.67310214576e-05 7.75914866708e-06 -8.97187279052e-06 +UniRef50_C5BDM9 DNA mismatch repair protein MutL 0.0011076466316 0.00109649993582 -1.114669578e-05 +UniRef50_W7BGX2 Transposase IS3 IS911 family protein 0.000121723477295 3.45418879291e-05 -8.71815893659e-05 +UniRef50_Q0VLT2 Transcriptional regulator, TetR family 0.000544450945461 0.000420878914765 -0.000123572030696 +UniRef50_K3ZVN5 5.92841818649e-05 0.000112759703998 5.34755221331e-05 +UniRef50_A0A031GP16 0.0013441135221 0.000128970358093 -0.00121514316401 +UniRef50_UPI00046D89CC hypothetical protein 2.0191198611e-05 3.60134836562e-05 1.58222850452e-05 +UniRef50_G8V9S2 Protease 0.0002543345315 0.00496750136738 0.00471316683588 +UniRef50_A1V469 Sulfate thiosulfate ABC transporter, permease protein CysW 0.0100773852527 0.0105149379671 0.0004375527144 +UniRef50_A0A024C0E9 LPS biosynthesis protein 0.000228608457182 0.00347101861158 0.0032424101544 +UniRef50_U5MSD8 0.000351960316455 0.00184114596569 0.00148918564924 +UniRef50_UPI0003B32410 chromosomal replication initiation protein 3.80627563901e-06 6.80753602202e-06 3.00126038301e-06 +UniRef50_M7MCD8 Oxidoreductase, NAD binding domain protein 0.00451531069022 0.00279832499157 -0.00171698569865 +UniRef50_D8FRN8 Putative ATPase 5.91562490057e-05 7.69451275178e-05 1.77888785121e-05 +UniRef50_UPI0003B386D0 hypothetical protein 7.58766210551e-06 7.8373832008e-05 7.07861699025e-05 +UniRef50_J9NYR7 0.000218158351966 0.000160809126406 -5.734922556e-05 +UniRef50_D7GEU1 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000512032424987 0.00544187412311 0.00492984169812 +UniRef50_Q8FE39 0.000165813843133 9.40320589966e-05 -7.17817841364e-05 +UniRef50_V9T419 Glycosyl transferase family 1 0.000404096640229 0.00031065924589 -9.3437394339e-05 +UniRef50_G2JD62 Ferric acinetobactin transport system ATP binding protein 0.000263362317798 0.00652700183684 0.00626363951904 +UniRef50_UPI0004723CF7 succinate dehydrogenase 1.67323239428e-05 1.48880665664e-05 -1.8442573764e-06 +UniRef50_UPI00046F8708 hypothetical protein, partial 6.23659772023e-05 8.23590439148e-05 1.99930667125e-05 +UniRef50_UPI0003822266 MULTISPECIES 9.92661790266e-06 7.46188880691e-05 6.46922701664e-05 +UniRef50_P0AES0 Bifunctional glutathionylspermidine synthetase amidase 0.00371462892728 0.0005715327638 -0.00314309616348 +UniRef50_F4DAR6 ABC type oligopeptide transport system,, ATPase component 0.000116989459351 0.000798322565575 0.000681333106224 +UniRef50_UPI00035D1F28 geranylgeranyl pyrophosphate synthase 1.86018471598e-05 7.58077872142e-05 5.72059400544e-05 +UniRef50_B6W8Z1 PTS system mannitol specific EIICBA component family protein 1.26797297383e-05 2.88917299039e-05 1.62120001656e-05 +UniRef50_P32720 D allose transport system permease protein AlsC 0.00393245458961 0.000184958270474 -0.00374749631914 +UniRef50_UPI0003816203 hypothetical protein 8.68786011569e-07 1.18777221132e-05 1.10089361016e-05 +UniRef50_P80907 Ketoisovalerate oxidoreductase subunit VorA 0.00252814161026 0.000299796171242 -0.00222834543902 +UniRef50_Q53046 Pyruvate flavodoxin oxidoreductase 0.00027294852691 0.000115077820506 -0.000157870706404 +UniRef50_L0GRI3 3 carboxymuconate cyclase 9.96882012767e-05 0.000649452702637 0.00054976450136 +UniRef50_A6VA52 0.000655262270873 0.000637374183882 -1.7888086991e-05 +UniRef50_C5N145 Cation diffusion facilitator family transporter 0.0183080787696 0.0078446420129 -0.0104634367567 +UniRef50_K1GVU9 6.76911650447e-06 6.57765558645e-06 -1.9146091802e-07 +UniRef50_Q5KWI6 Non canonical purine NTP pyrophosphatase 1.59028529763e-05 1.17534496601e-05 -4.1494033162e-06 +UniRef50_D3DZD8 Anaerobic ribonucleoside triphosphate reductase NrdD 0.00346869179519 0.00214927555976 -0.00131941623543 +UniRef50_B6JN53 Polyribonucleotide nucleotidyltransferase 7.00345062854e-05 0.00447354196908 0.00440350746279 +UniRef50_E1Q5C2 VirB8 type IV secretion protein 0.0001033264568 0.00271805591537 0.00261472945857 +UniRef50_P52022 DNA polymerase III subunit alpha 0.00237362210782 0.00063231300459 -0.00174130910323 +UniRef50_Q27713 Bifunctional dihydrofolate reductase thymidylate synthase 2.61266200919e-06 4.21916477152e-06 1.60650276233e-06 +UniRef50_Q7WP11 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.000552418520273 0.00840363349219 0.00785121497192 +UniRef50_F0RPA5 Chlorite dismutase 3.21079789716e-05 0.0341682476641 0.0341361396851 +UniRef50_Q168Q1 Integral membrane protein, putative 0.00351592644435 0.00176307214235 -0.001752854302 +UniRef50_C6SLW0 Transposase for insertion sequence element IS1106 2.93736969561e-05 0.000269855370033 0.000240481673077 +UniRef50_A0LHK5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.41544990132e-05 4.52206519257e-05 3.10661529125e-05 +UniRef50_P02976 Immunoglobulin G binding protein A 0.00554539476996 0.000786620594933 -0.00475877417503 +UniRef50_UPI0002896994 LuxR family transcriptional regulator 3.33371929351e-05 2.03276784758e-05 -1.30095144593e-05 +UniRef50_G7M646 Nitroreductase 0.000432836196781 0.0019403069489 0.00150747075212 +UniRef50_UPI0003B4D6A8 hypothetical protein 4.26803234555e-05 0.000236650372058 0.000193970048602 +UniRef50_F3FWR5 Potassium transporting ATPase subunit B 2.00165447942e-05 0.00247967190376 0.00245965535897 +UniRef50_G2Y3Z8 1.46026142387e-06 0.00011252462929 0.000111064367866 +UniRef50_UPI00035116CC PREDICTED 1.66703074983e-05 0.000180179251446 0.000163508943948 +UniRef50_UPI0003C1260B PREDICTED 7.3191774986e-06 1.93850002655e-05 1.20658227669e-05 +UniRef50_Q2S1Q5 DNA directed RNA polymerase subunit beta 2.79375212825e-06 2.20965399511e-06 -5.8409813314e-07 +UniRef50_UPI00036CDFBA hypothetical protein 7.65849106278e-05 8.24636151407e-05 5.8787045129e-06 +UniRef50_B5Y9Z4 8 amino 7 oxononanoate synthase 5.00131869351e-05 5.77264307382e-05 7.7132438031e-06 +UniRef50_A6LZ45 Histidine kinase internal region 6.6458800855e-05 0.00142736796171 0.00136090916085 +UniRef50_Q6FEP2 Phosphate acetyltransferase 2.94607897006e-06 0.00825726049868 0.00825431441971 +UniRef50_P37902 Glutamate aspartate periplasmic binding protein 0.00251860257979 0.000970762709875 -0.00154783986991 +UniRef50_UPI00039CF033 preprotein translocase subunit SecD 2.8093933206e-06 4.36129165322e-06 1.55189833262e-06 +UniRef50_Q99MR8 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.54440795218e-06 6.23421057443e-06 3.68980262225e-06 +UniRef50_UPI000393D46E PREDICTED 0.000109857785715 3.0775421323e-05 -7.9082364392e-05 +UniRef50_M9VH28 Actinobacterial surface anchored protein domain protein 0.00020008091282 0.00440924485909 0.00420916394627 +UniRef50_P09785 Anthranilate synthase component 1, pyocyanine specific 0.000633844114087 0.000124431196007 -0.00050941291808 +UniRef50_B9EAP7 ATP dependent Clp protease ATP binding subunit ClpB 0.0138398508012 0.00724704027832 -0.00659281052288 +UniRef50_W0V3Q1 0.000265148125521 7.37219644158e-05 -0.000191426161105 +UniRef50_O83046 Pca operon regulatory protein 0.000158830009337 0.0181862426983 0.018027412689 +UniRef50_U3BC68 1.28600982439e-05 1.88200115908e-05 5.9599133469e-06 +UniRef50_P0AFU4 Transcriptional regulatory protein GlrR 0.0045025149252 0.00264019154533 -0.00186232337987 +UniRef50_A0A011Q2M3 1.97604543621e-05 9.46803593016e-05 7.49199049395e-05 +UniRef50_A6M0L8 0.000217086447274 0.00119571447971 0.000978628032436 +UniRef50_Q01269 Cyclohexadienyl dehydratase 0.00145493165335 0.000220385600888 -0.00123454605246 +UniRef50_R5XL07 0.000770336116499 0.00247436253623 0.00170402641973 +UniRef50_UPI00036FF49D hypothetical protein 4.03114214381e-06 4.82949743807e-05 4.42638322369e-05 +UniRef50_UPI00046F97B3 chemotaxis protein CheD 0.000430288081365 4.75785249677e-05 -0.000382709556397 +UniRef50_B7V438 0.00018294959072 0.00117899545856 0.00099604586784 +UniRef50_UPI00035D66E8 hypothetical protein 2.157612764e-05 1.00620777761e-05 -1.15140498639e-05 +UniRef50_UPI00047161E6 hypothetical protein 3.93232781167e-05 1.66961206854e-05 -2.26271574313e-05 +UniRef50_K9BU68 Molybdopterin binding domain of aldehyde dehydrogenase protein 0.000187803974553 0.000895264483447 0.000707460508894 +UniRef50_W5DRR2 0.00122725174571 0.000132802986763 -0.00109444875895 +UniRef50_F8FTQ8 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 0.000599532538633 0.000724868250766 0.000125335712133 +UniRef50_UPI000377D28B hypothetical protein 7.81173319448e-06 1.33168472371e-05 5.50511404262e-06 +UniRef50_P17315 Colicin I receptor 0.00241340696956 0.00127821718159 -0.00113518978797 +UniRef50_F0Y056 4.67042002586e-05 0.000625139648833 0.000578435448574 +UniRef50_X0P3U7 3.25494911064e-05 0.00144608252367 0.00141353303256 +UniRef50_UPI00046FA0D1 23S rRNA pseudouridylate synthase 1.11928739094e-05 2.92628595635e-05 1.80699856541e-05 +UniRef50_UPI0003761003 hypothetical protein 9.72459370922e-06 6.08449476805e-06 -3.64009894117e-06 +UniRef50_H7D699 UvrABC system protein C 1.49269374036e-05 5.7979767961e-05 4.30528305574e-05 +UniRef50_UPI000255DA26 glycosyltransferase, partial 0.000224821406003 1.32579029382e-05 -0.000211563503065 +UniRef50_Q3JHX4 3.39011936941e-05 0.000263076122505 0.000229174928811 +UniRef50_R7D4E7 0.000167529885896 2.66119264318e-05 -0.000140917959464 +UniRef50_O65989 PTS system mannitol specific EIICB component 0.000371207316991 0.000622065290213 0.000250857973222 +UniRef50_Q11K56 Cupin 2, conserved barrel 0.000223364490448 0.0240723214356 0.0238489569452 +UniRef50_A8LRD0 3 hydroxyacyl CoA dehydrogenase NAD binding 0.00611089237967 0.00178212048875 -0.00432877189092 +UniRef50_J2ES16 Diguanylate cyclase domain protein 0.00012369556219 0.000511440952763 0.000387745390573 +UniRef50_UPI00035E59D2 hypothetical protein 8.11323404945e-05 2.7125583582e-05 -5.40067569125e-05 +UniRef50_F7ZLE6 TRAP transporter subunit DctP 0.00525374948067 0.000288583099537 -0.00496516638113 +UniRef50_UPI000470DE86 hypothetical protein 1.2591159159e-05 3.39505597092e-05 2.13594005502e-05 +UniRef50_Q9I0K9 Adenylosuccinate lyase 0.000904119522844 0.0103944697447 0.00949035022186 +UniRef50_N6RCJ7 RpiR family transcriptional regulator 0.00319863682334 0.00187712542477 -0.00132151139857 +UniRef50_S5XYI0 Membrane protease subunit HflK 0.00597155626821 0.00130391710234 -0.00466763916587 +UniRef50_C3K0N3 Acyl carrier protein 4.67813349378e-05 0.000180353659284 0.000133572324346 +UniRef50_Q56841 2 hydroxypropyl CoM dehydrogenase 6.78020574805e-06 1.47441361915e-05 7.96393044345e-06 +UniRef50_Q1JJ05 tRNA binding domain protein 0.00987683572221 0.00673294895636 -0.00314388676585 +UniRef50_UPI00016A8267 200 kDa antigen p200, putative 4.04764381849e-05 6.51503689629e-05 2.4673930778e-05 +UniRef50_UPI0004788EAB ABC transporter permease 4.74140650917e-05 4.77377737214e-05 3.237086297e-07 +UniRef50_UPI0003B710E4 cell division protein FtsE 5.25224570381e-06 2.60590823259e-05 2.08068366221e-05 +UniRef50_Q5HRH0 Putative proline betaine transporter 0.0106044747624 0.00295210003071 -0.00765237473169 +UniRef50_B7V1I5 S adenosylmethionine decarboxylase proenzyme 0.000302988852055 0.000245628829824 -5.7360022231e-05 +UniRef50_R5AXK8 0.000170552324163 0.000452502517123 0.00028195019296 +UniRef50_UPI0003B4A2CD malate 2.54942038101e-06 8.30538828073e-06 5.75596789972e-06 +UniRef50_A6LWR4 0.000294910928794 0.000597153298126 0.000302242369332 +UniRef50_Q117Z9 Urease subunit gamma 6.30590054317e-05 0.000301230619932 0.0002381716145 +UniRef50_C4RQ17 2.50504730316e-06 5.04240247938e-05 4.79189774906e-05 +UniRef50_A5UNG0 Adhesin like protein 0.00125873468737 0.000197204604465 -0.0010615300829 +UniRef50_Q8R7X4 Adenylate kinase 2.57098751413e-05 2.32835156277e-05 -2.4263595136e-06 +UniRef50_P64431 0.00331600042713 0.00188963547567 -0.00142636495146 +UniRef50_Q1JUP4 Alpha ketoglutaric semialdehyde dehydrogenase 3.87733130644e-06 0.000217231615782 0.000213354284476 +UniRef50_S4MLD0 9.74171285999e-05 0.000122977495711 2.55603671111e-05 +UniRef50_Q5HR73 Transcriptional regulator, AraC family 0.011413428387 0.00470203394701 -0.00671139443999 +UniRef50_UPI0004213A8C peptidase A8 2.13353404522e-05 3.93123750277e-05 1.79770345755e-05 +UniRef50_A5D374 3 dehydroquinate synthase 7.16800415583e-06 8.24463255052e-06 1.07662839469e-06 +UniRef50_R7FWE0 0.000194734272667 9.53517459074e-06 -0.000185199098076 +UniRef50_UPI00046C2C33 PREDICTED 7.70441504522e-07 3.32486112089e-06 2.55441961637e-06 +UniRef50_C1MJW7 Predicted protein 2.51638470224e-05 1.37523272278e-05 -1.14115197946e-05 +UniRef50_J2ERM5 Lipid A biosynthesis lauroyl acyltransferase, putative 0.00107463562395 0.00175174970381 0.00067711407986 +UniRef50_R9SHL8 NIF3 family protein HcgD 0.00168158460299 0.00061738684013 -0.00106419776286 +UniRef50_G7LXR2 ABC type transporter, periplasmic subunit 0.000574731400072 0.00173186548858 0.00115713408851 +UniRef50_UPI00046EDA0B hypothetical protein 2.30892756435e-06 1.76813920814e-05 1.5372464517e-05 +UniRef50_U6A8G4 7.73241885198e-05 0.000157700559074 8.03763705542e-05 +UniRef50_UPI00047EFD61 16S rRNA methyltransferase 5.05310554108e-06 2.67056119001e-05 2.1652506359e-05 +UniRef50_A3PH04 Peptidoglycan binding domain 1 protein 0.000654494611194 0.00021062066472 -0.000443873946474 +UniRef50_D9SWT0 Glycoside hydrolase family 25 0.000438614058638 0.000229520755339 -0.000209093303299 +UniRef50_G8VBC9 Adhesion protein associated protein 2.02724100369e-05 0.00112918932164 0.0011089169116 +UniRef50_Q0STL9 UPF0313 protein CPR_1216 0.000543588191351 0.00346246438639 0.00291887619504 +UniRef50_UPI0003ADD74A PREDICTED 6.50635033466e-06 6.0462818029e-05 5.39564676943e-05 +UniRef50_G7M2T3 Polypeptide transport associated domain protein FtsQ type 0.000435868790852 0.00175127044922 0.00131540165837 +UniRef50_J7M2N5 Dipeptide binding protein 0.00138219464662 0.000111370221954 -0.00127082442467 +UniRef50_F7Y2V0 3.8513870353e-05 1.2156179353e-05 -2.6357691e-05 +UniRef50_U4TGN7 Flagellar hook capping domain protein 9.22735781369e-06 1.27196950471e-05 3.49233723341e-06 +UniRef50_Q9CJ30 Deoxyuridine 5 triphosphate nucleotidohydrolase 0.00358737846247 0.00777911931586 0.00419174085339 +UniRef50_UPI00037A20A6 hypothetical protein 5.86399775903e-05 1.27828825155e-05 -4.58570950748e-05 +UniRef50_A9WSA8 Carbamoyl phosphate synthase large chain 1.7903862796e-05 1.28707693694e-05 -5.0330934266e-06 +UniRef50_A1WY04 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.00321483652709 0.00255638889886 -0.00065844762823 +UniRef50_E2CNB5 5.23277799828e-05 1.75406498866e-05 -3.47871300962e-05 +UniRef50_UPI0003B6AB3A aspartyl glutamyl tRNA amidotransferase subunit B 6.84635372768e-06 4.92178919875e-06 -1.92456452893e-06 +UniRef50_UPI00037A3B64 primase 7.38559934055e-06 4.13141244382e-05 3.39285250976e-05 +UniRef50_E7AA86 Iron sulfur cluster binding protein 0.00066050630372 0.00310791581001 0.00244740950629 +UniRef50_K7ABS1 Outer membrane porin 2.76743889324e-05 1.25472025264e-05 -1.5127186406e-05 +UniRef50_Q5HJP2 Diacetyl reductase [ acetoin forming] 0.0407539317131 0.0116645142498 -0.0290894174633 +UniRef50_B7UPF3 Endonuclease V 0.00529424507325 0.00152209418782 -0.00377215088543 +UniRef50_UPI0003773FBD hypothetical protein 3.88781014384e-06 1.15485073028e-05 7.66069715896e-06 +UniRef50_Q3K0J6 Hydroxymethylglutaryl CoA synthase 0.00367270616483 0.00206097234666 -0.00161173381817 +UniRef50_J0QZG9 1.44213013312e-05 4.29641696374e-06 -1.01248843675e-05 +UniRef50_UPI0003F49121 hypothetical protein TREMEDRAFT_73008 2.50428558928e-06 8.01616600275e-06 5.51188041347e-06 +UniRef50_Q6F9W5 0.000174492752936 0.005488365364 0.00531387261106 +UniRef50_P23917 Fructokinase 0.0044001890309 0.00120696168346 -0.00319322734744 +UniRef50_Q8R6A7 Phosphoglucosamine mutase 4.81213232443e-06 2.45168419463e-05 1.97047096219e-05 +UniRef50_A6VA35 Chain length determinant protein 0.000781129981653 0.000273232029468 -0.000507897952185 +UniRef50_Q9RW71 Acetyltransferase, putative 0.000185953689091 0.0293529362252 0.0291669825361 +UniRef50_Q57048 0.000850477203954 0.000124343875878 -0.000726133328076 +UniRef50_Q2FD92 RND family drug transporter 0.000414303096162 0.00721502732448 0.00680072422832 +UniRef50_R0NCH4 4.3975539085e-05 4.65782748484e-05 2.6027357634e-06 +UniRef50_Q6SJ08 Conjugal transfer mating pair stabilization protein 1.47250638384e-05 5.99658829922e-06 -8.72847553918e-06 +UniRef50_UPI000362B2C8 hypothetical protein 1.01559307998e-05 0.00141400066872 0.00140384473792 +UniRef50_UPI0001B41070 amino acid ABC transporter, ATP binding protein 0.000129390426984 6.04634648434e-05 -6.89269621406e-05 +UniRef50_X5KFC2 0.000789365746259 0.000194714311118 -0.000594651435141 +UniRef50_R5SPQ8 Chaperone protein DnaK 1 0.000201531775885 7.58984150561e-05 -0.000125633360829 +UniRef50_S4P442 Electron transfer flavoprotein ubiquinone oxidoreductase 2.83256789965e-05 1.60572241206e-05 -1.22684548759e-05 +UniRef50_A8LI45 0.0165957897851 0.00434299393816 -0.0122527958469 +UniRef50_B0UAY7 Extracellular solute binding protein family 1 1.08503489289e-05 5.10770219809e-06 -5.74264673081e-06 +UniRef50_F0YKH0 0.000199733727808 0.000230522189833 3.0788462025e-05 +UniRef50_Q9APM5 Taurine pyruvate aminotransferase 0.0083904931814 0.00162058439364 -0.00676990878776 +UniRef50_G7T9W9 Sulfate transporter 9.56467877165e-05 0.000150671788373 5.50250006565e-05 +UniRef50_UPI00037F5A09 hypothetical protein 1.84208287026e-05 1.16958653124e-05 -6.7249633902e-06 +UniRef50_B9KRK1 0.00310017541237 0.00253637094856 -0.00056380446381 +UniRef50_Q9WZG8 Ribosomal RNA small subunit methyltransferase I 2.05686903717e-05 3.19064316194e-05 1.13377412477e-05 +UniRef50_UPI00028822B1 hydrolase 2.48736718932e-05 7.06244252838e-06 -1.78112293648e-05 +UniRef50_F5M323 Membrane bound O acyl transferase, MBOAT family protein 0.0102927601028 0.00154852242795 -0.00874423767485 +UniRef50_P17994 0.00325909053489 0.00156894185148 -0.00169014868341 +UniRef50_P28812 0.00975403314738 0.00272376260833 -0.00703027053905 +UniRef50_C5Q6U5 0.000152350288831 0.00010003164567 -5.2318643161e-05 +UniRef50_UPI00036A99F9 hypothetical protein 8.87388077666e-05 0.0001179895762 2.92507684334e-05 +UniRef50_Q9ZHY3 P protein 1.16069173476e-05 0.00332056243583 0.00330895551848 +UniRef50_P39172 High affinity zinc uptake system protein ZnuA 0.00271996381117 0.00132254518611 -0.00139741862506 +UniRef50_M9VFY7 Penicillin binding protein, transpeptidase domain protein 7.94150046685e-05 0.00700982622691 0.00693041122224 +UniRef50_A5UNT4 0.00258901453086 0.00042903153298 -0.00215998299788 +UniRef50_D5QG08 Phosphoribosylformylglycinamidine synthase, purS 0.000114349883209 3.3886271005e-05 -8.0463612204e-05 +UniRef50_UPI00046DCA03 PilS cassette, partial 9.65754206323e-05 0.000193890322085 9.73149014527e-05 +UniRef50_G5ZXS6 UPF0301 protein HIMB100_00008270 1.69252303548e-05 2.49509351062e-05 8.0257047514e-06 +UniRef50_UPI0003654549 hypothetical protein 0.000432500213705 0.000150929213104 -0.000281571000601 +UniRef50_F0KGG0 4.40438359604e-05 0.00862258232802 0.00857853849206 +UniRef50_O66534 Riboflavin biosynthesis protein RibD 7.99008982048e-06 0.000149397405478 0.000141407315658 +UniRef50_P0AEC9 Sensor histidine kinase DcuS 0.00319039390462 0.000515131843978 -0.00267526206064 +UniRef50_Q58633 0.00265981376781 0.00149151887943 -0.00116829488838 +UniRef50_P55717 Probable ATP synthase y4yI 0.000700693356076 0.000190322258993 -0.000510371097083 +UniRef50_UPI00036C881F hypothetical protein 3.80133611782e-06 2.89019007353e-05 2.51005646175e-05 +UniRef50_Q1MM06 Glucose 6 phosphate isomerase 0.00320092349052 0.00182371178004 -0.00137721171048 +UniRef50_Q5LXV7 Late competence protein, ABC transporter subunit 0.00695358199347 0.000973913268815 -0.00597966872466 +UniRef50_Q58639 0.00395508565504 0.00219761601247 -0.00175746964257 +UniRef50_F7XUY9 Putative polyhydroxyalkanoate synthesis repressor PhaR 1.17159934907e-05 1.57622196361e-05 4.0462261454e-06 +UniRef50_Q5HKM3 Immunodominant antigen B, putative 0.00675371370149 0.00411738827427 -0.00263632542722 +UniRef50_B4U552 Zinc binding lipoprotein LraI, laminin binding protein 0.000232061058724 0.00690599172841 0.00667393066969 +UniRef50_B9E943 0.0268514967504 0.00547305927367 -0.0213784374767 +UniRef50_F5XY47 Xanthine and CO dehydrogenases maturation factor like protein 6.61640802432e-06 2.18635623757e-05 1.52471543514e-05 +UniRef50_Q49X88 DNA mismatch repair protein MutS 0.0232366489346 0.00446585496443 -0.0187707939702 +UniRef50_A0A022L535 5.53050374006e-06 1.90659496241e-05 1.3535445884e-05 +UniRef50_Q097G2 4.17972315101e-05 9.85045064166e-06 -3.19467808684e-05 +UniRef50_C9LYM2 ATP dependent protease, Lon family 0.000502178351593 0.00200766925822 0.00150549090663 +UniRef50_T4JEK7 N 6 DNA Methylase family protein 0.00050499592194 0.00188522985676 0.00138023393482 +UniRef50_Q7VM29 GTPase Der 0.00464102051613 0.000977635539588 -0.00366338497654 +UniRef50_Q4EKV3 0.000605592495486 0.000932204239129 0.000326611743643 +UniRef50_R6C033 Thiazole biosynthesis protein ThiH 3.00393758387e-05 5.27926625725e-05 2.27532867338e-05 +UniRef50_A6T533 UPF0255 protein KPN78578_02430 0.00460145529896 0.00106798316623 -0.00353347213273 +UniRef50_UPI000219720B hypothetical protein 0.00011176315459 7.20723728053e-05 -3.96907817847e-05 +UniRef50_C4RDJ1 0.0006601387699 3.47549539175e-05 -0.000625383815982 +UniRef50_UPI00046600C4 branched chain amino acid ABC transporter ATPase 2.75307179198e-05 1.24895016408e-05 -1.5041216279e-05 +UniRef50_UPI0002BA38E1 hypothetical protein, partial 0.000765174301733 0.00935200985958 0.00858683555785 +UniRef50_P37751 Putative glycosyltransferase WbbK 0.00124242801533 0.00127474790833 3.2319893e-05 +UniRef50_UPI0003605B6F hypothetical protein 7.32014649759e-06 0.000128039337073 0.000120719190575 +UniRef50_A5WHU9 0.000166537936259 0.00426099378549 0.00409445584923 +UniRef50_C5N5T1 SagB type dehydrogenase domain protein 0.00826640204784 0.00158178013846 -0.00668462190938 +UniRef50_B0SHK4 Argininosuccinate lyase 1.79443471265e-05 1.18705643804e-05 -6.0737827461e-06 +UniRef50_D8JF32 Lon protease C terminal proteolytic domain protein 9.25463766047e-05 0.0083599719159 0.0082674255393 +UniRef50_UPI0002626C4E Tagatose bisphosphate aldolase 1.37592967312e-05 8.17206239203e-06 -5.58723433917e-06 +UniRef50_UPI0000164C98 putative transposase, partial 8.90646083249e-05 0.022534112041 0.0224450474327 +UniRef50_B2IIK5 tRNA 2 methylthio N dimethylallyladenosine synthase 0.00283529462655 0.000343206776653 -0.0024920878499 +UniRef50_UPI000360793E hypothetical protein 3.27990943662e-06 4.39839517319e-06 1.11848573657e-06 +UniRef50_UPI0002FF7139 hypothetical protein 4.57962792289e-06 5.94186673981e-06 1.36223881692e-06 +UniRef50_E4R7C5 2 dehydropantoate 2 reductase 0.00128325717802 0.000187502669965 -0.00109575450806 +UniRef50_Q9Z4J7 Quinoprotein ethanol dehydrogenase 0.000658076984911 0.000410896603562 -0.000247180381349 +UniRef50_X6FMB7 Chromosome partitioning protein ParA 0.000180493864917 7.3105313456e-05 -0.000107388551461 +UniRef50_UPI00039DA7C1 amino acid carrier protein 1.00886320051e-05 0.0010270824368 0.00101699380479 +UniRef50_P92514 Cytochrome c oxidase subunit 3 0.0176488810023 0.00365712121956 -0.0139917597827 +UniRef50_A0A014M9H7 Delta 1 pyrroline 5 carboxylate dehydrogenase 0.000103356143755 0.00652886886295 0.00642551271919 +UniRef50_G0LQ70 0.0160834247792 0.00240467853155 -0.0136787462476 +UniRef50_A0A057ZZ67 Oxidoreductase 3.51587918784e-05 0.00128729154829 0.00125213275641 +UniRef50_Q59102 Ribulose bisphosphate carboxylase small chain, plasmid 0.000616978232434 7.2922485264e-05 -0.00054405574717 +UniRef50_X8CBL8 1.34184975827e-05 0.000106464503483 9.30460059003e-05 +UniRef50_Q8Q0F9 Macro domain containing protein MM_0177 0.00336768677592 0.0241323868818 0.0207647001059 +UniRef50_UPI0003C1AFD0 PREDICTED 7.65688706517e-05 0.000105876166497 2.93072958453e-05 +UniRef50_A0A023WMU7 Diguanylate cyclase 6.8395287659e-06 2.47341182178e-05 1.78945894519e-05 +UniRef50_Q1GFH6 Ppx GppA phosphatase 0.000887298551983 0.00122727254959 0.000339973997607 +UniRef50_A6V2C1 0.000199728036426 0.000276420460614 7.6692424188e-05 +UniRef50_P23847 Periplasmic dipeptide transport protein 0.0195928634865 0.00463529660483 -0.0149575668817 +UniRef50_Q6FEQ6 Non canonical purine NTP pyrophosphatase 6.91280530797e-06 1.95580226552e-05 1.26452173472e-05 +UniRef50_Q8DSP3 0.00345208400235 0.000322750497486 -0.00312933350486 +UniRef50_S6D6U3 0.000561117856197 4.70724959189e-06 -0.000556410606605 +UniRef50_V5ES07 9.15720396785e-06 1.15091343153e-05 2.35193034745e-06 +UniRef50_D3QI46 0.0111450922195 0.00152642008399 -0.00961867213551 +UniRef50_Q1IWL4 Chaperone protein DnaK 0.000121557148449 0.0538468163581 0.0537252592097 +UniRef50_UPI00047938D7 hypothetical protein, partial 2.33121490903e-05 5.24018868805e-05 2.90897377902e-05 +UniRef50_R0RZA1 Sterol O acyltransferase 2 domain protein 0.000302796247737 0.000550279574895 0.000247483327158 +UniRef50_M9VB96 Enoyl CoA hydratase isomerase family protein 0.000584976996731 0.01037028875 0.00978531175327 +UniRef50_Q4L4I8 Prolipoprotein diacylglyceryl transferase 0.00990272145363 0.00578867130651 -0.00411405014712 +UniRef50_UPI00042857FF exodeoxyribonuclease III 4.81492674034e-05 1.88977653902e-05 -2.92515020132e-05 +UniRef50_Q3IUW3 0.0410016311801 0.00299746071371 -0.0380041704664 +UniRef50_UPI00047DBE48 methionine ABC transporter substrate binding protein 3.96821010926e-05 1.3901883067e-05 -2.57802180256e-05 +UniRef50_D4MBK3 TraX protein 9.23220574168e-06 0.00115119549306 0.00114196328732 +UniRef50_K2HST1 ATP synthase F0, subunit I 2.70549741286e-05 3.12669875198e-05 4.2120133912e-06 +UniRef50_UPI000466EE81 hypothetical protein 4.66222063836e-05 0.000187304464177 0.000140682257793 +UniRef50_UPI0003808063 hypothetical protein 6.02084529942e-06 1.74391398486e-05 1.14182945492e-05 +UniRef50_UPI000415D4ED theronine dehydrogenase 9.52748937748e-06 6.29519064491e-06 -3.23229873257e-06 +UniRef50_T0V4W6 Proteinase 0.00463076684351 0.00167356114966 -0.00295720569385 +UniRef50_A0A024E6L7 Carbamoyl phosphate synthase L chain, ATP binding 7.65691660987e-05 0.00830563612971 0.00822906696361 +UniRef50_K0TJQ0 7.06404297436e-06 5.62341495465e-05 4.91701065721e-05 +UniRef50_O27367 DNA polymerase sliding clamp 0.0031317904777 0.00123649489093 -0.00189529558677 +UniRef50_I6U069 0.00673800652318 0.00109003907911 -0.00564796744407 +UniRef50_Q8NUV0 Putative surface protein MW2416 0.000773623452992 9.74642591402e-05 -0.000676159193852 +UniRef50_X1T4G6 Marine sediment metagenome DNA, contig 1.68114861294e-05 2.09747308137e-05 4.1632446843e-06 +UniRef50_P00467 Nitrogenase molybdenum iron protein alpha chain 0.00042309152877 0.00172405904234 0.00130096751357 +UniRef50_W0IE40 0.000212864626162 0.000170227055688 -4.2637570474e-05 +UniRef50_A7ZJG7 Crossover junction endodeoxyribonuclease RusA 0.000326356762696 0.000492194508663 0.000165837745967 +UniRef50_K0S630 5.91789781506e-06 0.000143363018454 0.000137445120639 +UniRef50_Q8U2H9 Isopentenyl diphosphate delta isomerase 0.004508833734 0.0015458476992 -0.0029629860348 +UniRef50_UPI0003B41990 GTP binding protein YchF 2.15016928992e-05 9.04287016718e-06 -1.2458822732e-05 +UniRef50_UPI0003732AC1 hypothetical protein 1.46148649425e-05 3.16576806943e-05 1.70428157518e-05 +UniRef50_F8JWN1 3.84843147402e-05 0.000129201723771 9.07174090308e-05 +UniRef50_UPI0003FF1B10 hypothetical protein 1.23645744096e-05 9.88919137972e-06 -2.47538302988e-06 +UniRef50_Q8ZQU2 Succinate dehydrogenase iron sulfur subunit 0.00161719350543 0.00113956999643 -0.000477623509 +UniRef50_UPI00036FEB03 hypothetical protein 1.35284103629e-05 7.8437785203e-05 6.49093748401e-05 +UniRef50_UPI000368F721 hypothetical protein 1.74090409951e-06 3.28644557969e-06 1.54554148018e-06 +UniRef50_I2BRJ1 UPF0125 protein PflA506_4569 2.24397623493e-05 4.52297385313e-05 2.2789976182e-05 +UniRef50_V5SY76 ATPase AAA 0.000244111058178 7.7409359159e-05 -0.000166701699019 +UniRef50_A0A011Q9T7 0.000148706334406 8.44122010235e-05 -6.42941333825e-05 +UniRef50_A0P1B5 Putative translation initiation inhibitor 2.3315335057e-05 1.82799545977e-05 -5.0353804593e-06 +UniRef50_G6YUN6 Cytochrome c type biogenesis protein CcmF 0.00013766298652 9.20500511064e-05 -4.56129354136e-05 +UniRef50_UPI000478A554 ABC transporter substrate binding protein 7.3499068248e-06 8.0111036962e-05 7.27611301372e-05 +UniRef50_F0Y1G4 3.12626116811e-05 0.000188399131595 0.000157136519914 +UniRef50_UPI000471C311 UTP glucose 1 phosphate uridylyltransferase 2.76002970659e-05 1.43531404295e-05 -1.32471566364e-05 +UniRef50_A3CM87 Cation transporting ATPase, E1 E 2 family, putative 0.00720835645868 0.00692071125386 -0.00028764520482 +UniRef50_A6M1C8 Flagellar hook associated protein FlgK 0.000246441205932 0.0015373521008 0.00129091089487 +UniRef50_X1U0Y9 Marine sediment metagenome DNA, contig 3.77882028504e-05 2.96750603822e-05 -8.1131424682e-06 +UniRef50_Q2T3V8 Aminotransferase, class III 0.000752700280662 0.000324896022302 -0.00042780425836 +UniRef50_H2K108 9.21752031102e-05 8.05969091573e-05 -1.15782939529e-05 +UniRef50_Q2JU97 Sulfate adenylyltransferase 5.95862455945e-05 7.9547655755e-05 1.99614101605e-05 +UniRef50_UPI0003B4D9C2 acetyl CoA carboxylase 7.05390615059e-06 3.5669885056e-06 -3.48691764499e-06 +UniRef50_P46187 Protein RseC 0.0012343533184 0.000406399135599 -0.000827954182801 +UniRef50_A5D508 Carbamoyl phosphate synthase large chain 1.72081788734e-05 0.00569042962533 0.00567322144646 +UniRef50_UPI00034916BB hypothetical protein 0.000166919528265 3.57968464385e-05 -0.000131122681826 +UniRef50_UPI0002889211 glucosamine fructose 6 phosphate aminotransferase , partial 1.72980137856e-05 1.97563564627e-05 2.4583426771e-06 +UniRef50_UPI00046F52F1 hypothetical protein 9.8041609194e-06 0.000951085657322 0.000941281496403 +UniRef50_U5QPT0 Prolyl endopeptidase 5.567639954e-05 0.0236144077809 0.0235587313814 +UniRef50_D3BJZ9 9.55283921125e-07 1.86227912101e-05 1.7667507289e-05 +UniRef50_UPI0003727191 peptidase 4.68671657956e-06 8.5660168731e-06 3.87930029354e-06 +UniRef50_X3EY52 GTPase 1.85551999817e-05 0.00371958909161 0.00370103389163 +UniRef50_T1XPL8 Cobalamin synthesis protein, putative 0.0250367200924 0.00676092840125 -0.0182757916911 +UniRef50_UPI0004157C13 hypothetical protein 7.5336730949e-05 5.15102625556e-05 -2.38264683934e-05 +UniRef50_E9Z893 Alpha beta hydrolase 0.00241721944042 0.000242394012474 -0.00217482542795 +UniRef50_UPI000473D50C DNA repair protein RadA, partial 7.31417375573e-06 5.94751522108e-06 -1.36665853465e-06 +UniRef50_A5VPL4 2 isopropylmalate synthase homocitrate synthase family protein 0.00132719388278 0.000637491800334 -0.000689702082446 +UniRef50_UPI00047A1CF1 ATP synthase 5.60844725465e-06 4.09497577497e-06 -1.51347147968e-06 +UniRef50_F9YYK5 Conserved membrane spanning protein 9.01638508349e-05 0.00610975119033 0.0060195873395 +UniRef50_F6C514 Transcriptional regulator, DeoR family 0.00300216551627 0.000259429023591 -0.00274273649268 +UniRef50_O27552 Leucine tRNA ligase 0.00267861994676 0.000714457971558 -0.0019641619752 +UniRef50_Q9A0T3 Unsaturated chondroitin disaccharide hydrolase 0.000643818558623 0.00257507307191 0.00193125451329 +UniRef50_F7ZZ02 RDD domain containing protein 1.79405089546e-06 7.93660222491e-06 6.14255132945e-06 +UniRef50_Q6GEA0 Lysostaphin resistance protein A 0.0227527989668 0.0048733510195 -0.0178794479473 +UniRef50_Q9ZLE4 Succinyl CoA 3.43924757258e-05 0.00352688937974 0.00349249690401 +UniRef50_L0EXZ6 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 7.86372397735e-06 6.96159948682e-06 -9.0212449053e-07 +UniRef50_B9KTS5 Animal heme peroxidase 0.00353532906952 0.00168598660914 -0.00184934246038 +UniRef50_Q82AZ8 1.00361758047e-05 0.00177395645239 0.00176392027659 +UniRef50_UPI000360375D hypothetical protein 5.84862412686e-06 4.37368570907e-05 3.78882329638e-05 +UniRef50_G7FVR9 6.09316557814e-05 9.0232831922e-06 -5.19083725892e-05 +UniRef50_B9UQA9 PI 1 ancillary protein 2 0.0001566331904 0.0016533890873 0.0014967558969 +UniRef50_A6FPM7 PhoH like protein 0.000451463530496 0.000434289272355 -1.7174258141e-05 +UniRef50_UPI00030E455E hypothetical protein 0.000647203370722 0.00205773594541 0.00141053257469 +UniRef50_O27218 UPF0051 protein MTH_1150 0.00428358712802 0.000737031421257 -0.00354655570676 +UniRef50_UPI0003C165C4 PREDICTED 5.19766086743e-06 7.44205604633e-06 2.2443951789e-06 +UniRef50_UPI0001B4101D thiamine biosynthesis protein ThiC 2.24393917865e-05 6.20239017523e-05 3.95845099658e-05 +UniRef50_F8IMU7 0.0050777731058 0.00141599298021 -0.00366178012559 +UniRef50_A6M039 0.000560947588265 0.00216165267926 0.00160070509099 +UniRef50_UPI00016C0F03 peptidyl tRNA hydrolase 1.79470699405e-05 2.65281089949e-05 8.5810390544e-06 +UniRef50_UPI0004783915 hypothetical protein, partial 3.88341451504e-05 0.000721223717473 0.000682389572323 +UniRef50_Q4L6U2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00992061313661 0.00485236752012 -0.00506824561649 +UniRef50_UPI00036584C7 hypothetical protein 8.62862655521e-05 8.20961013802e-05 -4.1901641719e-06 +UniRef50_UPI0003808BC7 hypothetical protein 6.39959282003e-06 6.87295760849e-06 4.7336478846e-07 +UniRef50_UPI000382E998 hypothetical protein 0.000256050975403 1.4443545189e-05 -0.000241607430214 +UniRef50_B9EA42 0.0248866993053 0.00455613756771 -0.0203305617376 +UniRef50_UPI000376BE3D hypothetical protein 3.64016639192e-05 2.36890137376e-05 -1.27126501816e-05 +UniRef50_B2TI02 Ser Thr protein phosphatase family protein 0.000389678553867 0.000270932757067 -0.0001187457968 +UniRef50_E8SHY9 Metallo beta lactamase superfamily domain protein in prophage 0.000695211309805 4.12851736792e-05 -0.000653926136126 +UniRef50_P50867 Cysteine synthase 2.4239608372e-05 8.10625176713e-06 -1.61333566049e-05 +UniRef50_UPI00036B0358 hypothetical protein 4.25096495263e-06 5.52649156193e-06 1.2755266093e-06 +UniRef50_W4UBJ6 Sodium dependent galactose transporter 0.000191942028225 0.00059994151876 0.000407999490535 +UniRef50_Q8IJN7 Enolase 8.02815177803e-06 6.42764108378e-05 5.62482590598e-05 +UniRef50_J1AHN1 ZIP zinc transporter family protein 0.00417208768651 0.0020013292859 -0.00217075840061 +UniRef50_T9Q7C2 0.000345261575169 0.000540213485111 0.000194951909942 +UniRef50_UPI00045DD854 PREDICTED 1.09538273435e-05 0.00024372767966 0.000232773852316 +UniRef50_G0IAR7 Multidrug resistance protein MdtG 0.00338938191841 0.000629765856829 -0.00275961606158 +UniRef50_A3PPJ6 Binding protein dependent transport systems inner membrane component 0.00392895131657 0.000659004409589 -0.00326994690698 +UniRef50_A0A009I7P3 LPXTG motif cell wall anchor domain protein 7.87645652842e-05 1.88907928919e-06 -7.6875485995e-05 +UniRef50_A0A024L4S5 Tail protein 0.00277268909009 0.000662888120069 -0.00210980097002 +UniRef50_K6PZY4 Putative esterase 6.36020606784e-06 9.88775311058e-06 3.52754704274e-06 +UniRef50_D4YR40 5.59072811518e-07 2.46747619874e-06 1.90840338722e-06 +UniRef50_R7CKR0 Replicative DNA helicase 8.46381140973e-05 0.00181144651105 0.00172680839695 +UniRef50_UPI0003503BD0 0.000375491549437 8.74895344331e-05 -0.000288002015004 +UniRef50_Q9RU95 NADH quinone oxidoreductase subunit I 0.000218556774031 0.00447972561343 0.0042611688394 +UniRef50_P42640 Putative phosphoethanolamine transferase YhbX 0.00257770462092 0.000790124915864 -0.00178757970506 +UniRef50_UPI00037DFCBE hypothetical protein 3.28965499843e-05 2.12793455181e-05 -1.16172044662e-05 +UniRef50_M4WUT5 0.000917940422378 0.00076518964315 -0.000152750779228 +UniRef50_U6EDC0 Methyl viologen reducing hydrogenase subunit delta 0.0028685346852 0.000669905769279 -0.00219862891592 +UniRef50_Q47005 Nitrogen assimilation regulatory protein nac 0.00152553151237 0.00271491215676 0.00118938064439 +UniRef50_E4SRK6 Mannose specific phosphotransferase system component IIC low 0.000288899858702 0.00359824066688 0.00330934080818 +UniRef50_Q8CQI0 Lipoprotein signal peptidase 0.00128656128959 0.000584785554841 -0.000701775734749 +UniRef50_UPI00047E217B hypothetical protein 4.97748094594e-05 4.58167545483e-05 -3.9580549111e-06 +UniRef50_B9EC33 0.0169155692712 0.00324424518435 -0.0136713240868 +UniRef50_UPI0003B68BAD single stranded DNA binding protein 5.44704308844e-05 0.000704227432158 0.000649757001274 +UniRef50_A5D3C3 Putative Holliday junction resolvase 0.00813952435013 0.00426032143025 -0.00387920291988 +UniRef50_E3F446 Nickel import ATP binding protein NikD, putative 0.0002881572434 0.000404543431768 0.000116386188368 +UniRef50_A0A022NSU8 6.22571724302e-05 9.42500122933e-05 3.19928398631e-05 +UniRef50_E6NXI7 0.00263083411785 0.000839364231826 -0.00179146988602 +UniRef50_UPI0002FB146F 30S ribosomal protein S2 1.30516516969e-05 2.45014243412e-05 1.14497726443e-05 +UniRef50_Q9RV68 Transcription elongation factor GreA 0.000353893114548 0.0235796829397 0.0232257898252 +UniRef50_UPI00037DDB96 hypothetical protein 4.60648636281e-05 7.35995463982e-05 2.75346827701e-05 +UniRef50_E1QYV1 8.70776810049e-05 0.000621869897831 0.000534792216826 +UniRef50_D3RCC6 Carbohydrate kinase, FGGY like protein 7.9192864794e-05 0.00016988496944 9.0692104646e-05 +UniRef50_L5SRM4 0.00048349259828 0.000926404782403 0.000442912184123 +UniRef50_R5B4R5 Inner membrane translocator 0.000264903897812 0.00232392702337 0.00205902312556 +UniRef50_Q6LWG7 Regulator of arsenical resistance 0.00136971087067 0.000608900423076 -0.000760810447594 +UniRef50_A6X5J7 TonB dependent receptor 0.00767163280476 0.00235195784382 -0.00531967496094 +UniRef50_F7YB26 0.000222368129536 0.000170713615168 -5.1654514368e-05 +UniRef50_A6LV07 Patatin 0.000136605303564 0.000981663178563 0.000845057874999 +UniRef50_A3NHB2 Aldehyde dehydrogenase family protein 0.0101330109423 0.00141861501652 -0.00871439592578 +UniRef50_UPI00044220DD 1.15795303126e-05 2.08746068447e-05 9.2950765321e-06 +UniRef50_G8WCV6 PTS system ascorbate specific transporter subunit IIC 0.0122881312311 0.00442292935069 -0.00786520188041 +UniRef50_Q6GCL3 Iron sulfur cluster repair protein ScdA 0.0199967513722 0.0103892598351 -0.0096074915371 +UniRef50_B7V6M6 Homoprotocatechuate 2,3 dioxygenase 0.000433597120441 0.000711151043628 0.000277553923187 +UniRef50_UPI00036F8CD4 hypothetical protein 3.07093601679e-06 1.16778055914e-05 8.60686957461e-06 +UniRef50_Q5SHB3 Ribonuclease Y 0.000132957542596 0.0203274198332 0.0201944622906 +UniRef50_B1BJN1 Oxidoreductase, NAD binding 0.000152251361085 0.00108405933916 0.000931807978075 +UniRef50_X5Z4Q0 0.000899528168626 0.000223988699868 -0.000675539468758 +UniRef50_G0K1E8 Oxygen independent coproporphyrinogen III oxidase 0.000525080414167 0.00862928535389 0.00810420493972 +UniRef50_C0MDU1 Response regulator protein 0.00727253398637 0.00154935168946 -0.00572318229691 +UniRef50_X5WX27 Transposase IS66 8.41465536282e-05 3.11518779172e-05 -5.2994675711e-05 +UniRef50_V7EIE7 6.28255376595e-05 3.3174602923e-05 -2.96509347365e-05 +UniRef50_Q9FMT1 3 isopropylmalate dehydrogenase 3, chloroplastic 5.80806512214e-05 2.996207124e-05 -2.81185799814e-05 +UniRef50_UPI00047729DA chemotaxis protein CheA 2.70733427215e-06 2.47272575441e-06 -2.3460851774e-07 +UniRef50_B0V429 Transcriptional repressor, antitoxin for RelE like 0.000492373028943 0.00460953071179 0.00411715768285 +UniRef50_U5MLW0 Methyl accepting chemotaxis protein McpC 0.000273663191735 0.00579324530124 0.0055195821095 +UniRef50_UPI0003C19C40 PREDICTED 4.62351372674e-06 8.47917844901e-05 8.01682707634e-05 +UniRef50_I6TP65 LrgA family protein 0.00431722220459 0.00131736270931 -0.00299985949528 +UniRef50_C5N355 Periplasmic binding protein 0.0128128432588 0.00401267492067 -0.00880016833813 +UniRef50_E6C9E2 0.000141204235229 0.00425275696547 0.00411155273024 +UniRef50_UPI000477A2AE hypothetical protein 7.80320327194e-05 3.85214965911e-05 -3.95105361283e-05 +UniRef50_UPI0004747D71 hypothetical protein 2.36310013734e-05 4.01999064757e-05 1.65689051023e-05 +UniRef50_F9YY68 0.000200704150891 0.00738218097302 0.00718147682213 +UniRef50_UPI0003B2F873 glycerol 3 phosphate ABC transporter ATP binding protein 1.03493182799e-05 6.50970468326e-06 -3.83961359664e-06 +UniRef50_P59831 Ribosomal large subunit pseudouridine synthase A 2.60599231646e-05 1.55795477789e-05 -1.04803753857e-05 +UniRef50_B2VHD6 Protein RecA 0.000108058966276 0.0050027122078 0.00489465324152 +UniRef50_F0KP29 Amidohydrolase 0.000203283510393 0.00487650544172 0.00467322193133 +UniRef50_R7PW09 CAAX amino protease family protein 0.00299477336982 0.0011068705684 -0.00188790280142 +UniRef50_UPI00036E74BD hypothetical protein 8.79705986538e-05 4.55135523497e-05 -4.24570463041e-05 +UniRef50_P23877 Ferric enterobactin transport system permease protein FepG 0.00532642038654 0.00159375413827 -0.00373266624827 +UniRef50_B0BWD8 Ribosomal RNA large subunit methyltransferase E 0.000124945826939 5.18465737379e-05 -7.30992532011e-05 +UniRef50_F6GSD7 Autotransporter 0.000607321802197 0.000169213110428 -0.000438108691769 +UniRef50_Q72PF1 Pyridoxine pyridoxamine 5 phosphate oxidase 9.33853636496e-06 0.000373912910547 0.000364574374182 +UniRef50_UPI00034575CD hypothetical protein 1.92509328944e-05 1.00061342966e-05 -9.2447985978e-06 +UniRef50_C5QLR6 2.39841092416e-05 2.71768287441e-05 3.1927195025e-06 +UniRef50_Q74KU4 Non canonical purine NTP pyrophosphatase 1.1272020185e-05 1.12717309761e-05 -2.89208899999e-10 +UniRef50_G8VH89 ABC transporter, permease protein 0.000441004202645 0.00392006677388 0.00347906257124 +UniRef50_A3PPU7 ATPase associated with various cellular activities, AAA_5 0.00107045890889 0.000204135971329 -0.000866322937561 +UniRef50_Q2S3M6 Nucleoside diphosphate kinase 5.77542370069e-05 4.01697906924e-05 -1.75844463145e-05 +UniRef50_X5TWB1 C4 dicarboxylate ABC transporter 1.12210619093e-05 2.50499291876e-05 1.38288672783e-05 +UniRef50_F4A6D4 Flagellar motor switch protein FliN 9.49252277069e-05 0.000913079275518 0.000818154047811 +UniRef50_UPI000470A84B hypothetical protein 9.41830120038e-06 0.000108799955024 9.93816538236e-05 +UniRef50_G8LJ33 0.000114816422054 0.000583599546428 0.000468783124374 +UniRef50_M3I579 Valine tRNA ligase 0.00698043904907 0.00501779259376 -0.00196264645531 +UniRef50_G8UTA5 2.85974742877e-05 1.56993437741e-05 -1.28981305136e-05 +UniRef50_A1B9B4 0.00587970630977 0.00206454511261 -0.00381516119716 +UniRef50_F3V8H4 Hca operon transcriptional activator 0.000462951182693 0.00100948486478 0.000546533682087 +UniRef50_Q2T0P7 Mannitol ABC transporter, permease protein 0.0136900734705 0.00161526647422 -0.0120748069963 +UniRef50_UPI0002F85C08 hypothetical protein 1.67061966088e-05 3.49298615559e-06 -1.32132104532e-05 +UniRef50_UPI0000306491 50S ribosomal protein L18 7.02461102125e-05 0.000174799719393 0.000104553609181 +UniRef50_Q9RZA5 Response regulator 0.000251657325899 0.0705064913023 0.0702548339764 +UniRef50_R9YN56 0.00741481341688 0.00063464210059 -0.00678017131629 +UniRef50_Q7UX39 Histidinol dehydrogenase 3.82207423169e-06 1.25702241528e-05 8.74814992111e-06 +UniRef50_UPI000248C060 NH dependent NAD+ synthetase 0.000373972066032 4.05022317255e-05 -0.000333469834306 +UniRef50_E6G860 Replication initiator protein A domain protein 9.51041850226e-06 4.61987531327e-06 -4.89054318899e-06 +UniRef50_R5YAM0 Glycogen debranching enzyme GlgX 0.000340261614046 0.00157570981013 0.00123544819608 +UniRef50_G8VHB4 FecCD family membrane transport protein 0.000116030529356 0.0050974001078 0.00498136957844 +UniRef50_A0NUH2 0.000439912729906 0.0001114207344 -0.000328491995506 +UniRef50_A7AXT8 8.70555691176e-06 2.12106591877e-05 1.25051022759e-05 +UniRef50_K2FH80 0.000163861306694 0.000250578460538 8.6717153844e-05 +UniRef50_W8AHC9 3.89580662207e-06 0.000875479774968 0.000871583968346 +UniRef50_UPI0002F0BE77 hypothetical protein 3.35242926121e-05 0.000125844786224 9.23204936119e-05 +UniRef50_F7ZQR5 S adenosylmethionine dependent methyltransferase 0.000438904700045 0.00150395304405 0.001065048344 +UniRef50_D3DZP8 CMP N acetylneuraminic acid synthetase NeuA 0.00439305989831 0.000447838032911 -0.0039452218654 +UniRef50_UPI000470F84C ribonuclease D 6.86492659097e-05 1.09504522765e-05 -5.76988136332e-05 +UniRef50_Q87F08 Anhydro N acetylmuramic acid kinase 0.00108153594866 0.00042664543238 -0.00065489051628 +UniRef50_B8ZKS3 Probable fructose 6 phosphate aldolase 6.84538805133e-05 0.00349222278758 0.00342376890707 +UniRef50_UPI00037A15A0 hypothetical protein 2.03752893926e-06 0.000673532459873 0.000671494930934 +UniRef50_Q64RT0 Imidazole glycerol phosphate synthase subunit HisH 3.67476873568e-05 0.00430887165149 0.00427212396413 +UniRef50_P0AER7 Glutamate aspartate transport system permease protein GltK 0.00257815953794 0.000264858031563 -0.00231330150638 +UniRef50_P56109 Fructose bisphosphate aldolase 1.51898573612e-05 0.0456819197685 0.0456667299111 +UniRef50_F0RL15 Diaminopimelate decarboxylase 0.00894698375312 0.00456109854004 -0.00438588521308 +UniRef50_Q46UT4 0.000184860117103 6.22839389907e-05 -0.000122576178112 +UniRef50_A0A011GQD3 0.000768213020928 0.007802134474 0.00703392145307 +UniRef50_O32544 TraN 1.47000494953e-05 5.98631430783e-06 -8.71373518747e-06 +UniRef50_F0KLF9 0.000113132663991 0.00827646225431 0.00816332959032 +UniRef50_E3NVW5 4.2257762563e-05 9.40346986673e-06 -3.28542926963e-05 +UniRef50_Q9I0J6 NADH quinone oxidoreductase subunit G 0.000448092981434 0.000535738089464 8.764510803e-05 +UniRef50_U2R557 Raf like protein 1.32049346164e-05 2.10131069834e-05 7.808172367e-06 +UniRef50_UPI00016A6D7F hypothetical protein 7.95557562271e-05 0.000681470711115 0.000601914954888 +UniRef50_A0A034SNG1 3 methyladenine DNA glycosylase 0.0117117826086 0.00344069083943 -0.00827109176917 +UniRef50_UPI00034D9920 hypothetical protein 8.11865254147e-07 2.45046876323e-05 2.36928223782e-05 +UniRef50_B9EAD9 0.0195819537959 0.00663787893714 -0.0129440748588 +UniRef50_A4VU30 DNA uptake protein and related DNA binding proteins 0.00506819446202 0.00211965937365 -0.00294853508837 +UniRef50_UPI0003B4988B glycine cleavage system aminomethyltransferase T 4.66187999727e-05 3.55044779566e-05 -1.11143220161e-05 +UniRef50_Q48G15 Transcriptional regulator ArgR 0.0011148163917 0.00031361066038 -0.00080120573132 +UniRef50_UPI00035C402E hypothetical protein, partial 4.39876969726e-06 6.79998137654e-05 6.36010440681e-05 +UniRef50_P45119 Pyruvate dehydrogenase E1 component 8.85961965422e-05 3.56238375328e-05 -5.29723590094e-05 +UniRef50_P26905 Dipeptide transport ATP binding protein DppD 0.000763159440762 0.0033377514052 0.00257459196444 +UniRef50_B7GK36 Fatty acid desaturase 0.000129128616484 0.00131432195755 0.00118519334107 +UniRef50_Q0RPF6 GTPase Obg 0.000112235675575 0.00861007139272 0.00849783571715 +UniRef50_N6VD20 1.94561651828e-05 1.2963368716e-05 -6.4927964668e-06 +UniRef50_UPI0003742A66 ABC transporter 6.71424855361e-06 9.70552736473e-06 2.99127881112e-06 +UniRef50_P64632 4.77493015614e-05 0.00053693946399 0.000489190162429 +UniRef50_A6LWW1 GCN5 related N acetyltransferase 0.00100217519164 0.00118845240429 0.00018627721265 +UniRef50_F0Y0N8 Expressed protein 0.000153139824143 0.00102939743285 0.000876257608707 +UniRef50_P52043 Propionyl CoA 0.00304292038607 0.00700024654844 0.00395732616237 +UniRef50_UPI00040C8409 hypothetical protein 0.000518686615852 4.75883016221e-05 -0.00047109831423 +UniRef50_Q9RYP5 7.32034884631e-05 0.00383347948403 0.00376027599557 +UniRef50_UPI00046FD691 precorrin 2 C20 methyltransferase 5.30532566322e-05 1.83032141903e-05 -3.47500424419e-05 +UniRef50_H0E6G7 5.41094633615e-06 8.38697284166e-05 7.84587820805e-05 +UniRef50_UPI0003B6E2B1 serine 3 dehydrogenase 1.04893032777e-05 3.41723805857e-06 -7.07206521913e-06 +UniRef50_UPI0002F6B5AC hypothetical protein 4.57044822994e-06 6.86275181754e-06 2.2923035876e-06 +UniRef50_Q9ZDF1 CTP synthase 4.72019483423e-06 0.000109112578132 0.000104392383298 +UniRef50_R9ZG59 Oxidoreductase 0.000389874525162 0.000207239793125 -0.000182634732037 +UniRef50_F5YTP1 6.10867641777e-06 5.63451295406e-05 5.02364531228e-05 +UniRef50_W5XAY0 SsrA binding protein 2.0032081053e-05 0.00093060189795 0.000910569816897 +UniRef50_B7QX02 8.50684875116e-05 4.49369833323e-05 -4.01315041793e-05 +UniRef50_E8P9C7 0.000326670751027 0.00688654471952 0.00655987396849 +UniRef50_E6S2B8 9.66261063593e-05 0.00313873438461 0.00304210827825 +UniRef50_B2S553 NADH quinone oxidoreductase subunit K 3.6858137681e-05 3.50093034092e-05 -1.8488342718e-06 +UniRef50_UPI00029A5DDB F0F1 ATP synthase subunit beta 2.98253993782e-05 3.6776749916e-05 6.9513505378e-06 +UniRef50_UPI000406B82B 2 dehydro 3 deoxygluconokinase 2.2197034944e-05 1.20422575083e-05 -1.01547774357e-05 +UniRef50_B1W1Y7 Putative 3 methyladenine DNA glycosylase 1.67943166284e-05 3.54140289705e-05 1.86197123421e-05 +UniRef50_K2A0T9 Membrane protein involved in aromatic hydrocarbon degradation 1.11404832896e-05 2.66285225987e-05 1.54880393091e-05 +UniRef50_T0XUL7 4.22411920983e-06 0.00256650663099 0.00256228251178 +UniRef50_Q2RZV3 ATP synthase subunit beta 1.71169545259e-05 1.27775817519e-05 -4.339372774e-06 +UniRef50_Q1QYW0 0.000270635817945 0.000533282456823 0.000262646638878 +UniRef50_UPI000395C02F hypothetical protein, partial 2.29241707236e-05 0.000219923044684 0.00019699887396 +UniRef50_A6LU81 UPF0246 protein Cbei_1739 0.000365416778094 0.000434289272355 6.8872494261e-05 +UniRef50_Q8DSK3 0.00648618937898 0.00855774666994 0.00207155729096 +UniRef50_W4Q487 Carboxynorspermidine decarboxylase 7.71769419071e-05 0.000150577321798 7.34003798909e-05 +UniRef50_UPI0003B66FA9 FAD dependent pyridine nucleotide disulfide oxidoreductase, partial 0.00024310258778 3.38030597174e-05 -0.000209299528063 +UniRef50_UPI000309F09E cytochrome P450 6.54463190979e-06 1.05247366787e-05 3.98010476891e-06 +UniRef50_Q9RQP9 Poly beta 1,6 N acetyl D glucosamine synthase 0.0180961403701 0.00138838769974 -0.0167077526704 +UniRef50_UPI0003B680A3 hypothetical protein 8.6299925328e-07 1.96896066242e-06 1.10596140914e-06 +UniRef50_Q8DSK9 0.0012510119925 0.00554755219991 0.00429654020741 +UniRef50_H3USC3 0.00682171677364 0.0557818322076 0.048960115434 +UniRef50_UPI000378FFA7 hypothetical protein 1.79402434838e-05 1.13203208925e-05 -6.6199225913e-06 +UniRef50_UPI0003B3F8F7 transposase, partial 0.00215274246182 0.00056970795275 -0.00158303450907 +UniRef50_P71285 0.0002529352368 0.00118158112352 0.00092864588672 +UniRef50_M9VD34 Tat pathway signal sequence 0.00019226790604 0.00591982717186 0.00572755926582 +UniRef50_I6RIQ3 Two component sensor 0.000380404368056 0.000382267957271 1.863589215e-06 +UniRef50_D7A0A5 Phage head tail adaptor 3.27690035765e-05 3.41322921404e-05 1.3632885639e-06 +UniRef50_W1ETW9 Trimethylamine N oxide reductase 0.000867698665337 0.000265975169299 -0.000601723496038 +UniRef50_F7ZH46 Glutamate dehydrogenase 0.00731393513344 0.00260982313338 -0.00470411200006 +UniRef50_U6H7V4 1.81558407862e-05 2.55661703e-05 7.4103295138e-06 +UniRef50_W4TZ21 Protein translocase subunit SecA 9.69655795694e-05 0.00525543040194 0.00515846482237 +UniRef50_UPI000367E627 hypothetical protein 0.0006605624953 0.00030615834861 -0.00035440414669 +UniRef50_R7N4P8 1.04818739005e-05 1.08885809047e-05 4.067070042e-07 +UniRef50_Q98D26 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 0.0102405404887 0.00139937014502 -0.00884117034368 +UniRef50_G0DVP7 Triacylglycerol lipase 0.000201504976255 0.00762077026376 0.0074192652875 +UniRef50_Z5A0E9 9.1334271635e-06 1.57413183541e-05 6.6078911906e-06 +UniRef50_UPI000474C581 sodium 8.72742393899e-06 1.04257740839e-05 1.69835014491e-06 +UniRef50_H8MJ08 3.01628678885e-06 4.06755274841e-06 1.05126595956e-06 +UniRef50_Y6XNC4 0.00326036085579 0.000431119277652 -0.00282924157814 +UniRef50_B0V6T3 0.000413122987161 0.00588389988141 0.00547077689425 +UniRef50_UPI00035C1E4A hypothetical protein, partial 0.000217035231015 6.46516329668e-05 -0.000152383598048 +UniRef50_A6LWL8 0.000502712400051 0.00115531923181 0.000652606831759 +UniRef50_UPI000150A602 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein 2.99555503941e-06 1.35958129592e-05 1.06002579198e-05 +UniRef50_UPI00036D39A9 hypothetical protein 8.47443115323e-06 1.25187770827e-05 4.04434592947e-06 +UniRef50_A5IRS8 Isochorismate synthase 0.0167247503395 0.00449483479116 -0.0122299155483 +UniRef50_Q9KNG7 Probable chromosome partitioning protein ParB 0.000558134755183 0.00591177273773 0.00535363798255 +UniRef50_UPI00035F0102 hypothetical protein 0.000147125258368 1.53987812638e-05 -0.000131726477104 +UniRef50_UPI0002D8E4B0 hypothetical protein 3.87150273327e-05 5.24316948847e-05 1.3716667552e-05 +UniRef50_E3D3B9 0.000411158700507 0.00179892574703 0.00138776704652 +UniRef50_Q52967 0.000185010250068 2.59378315652e-05 -0.000159072418503 +UniRef50_UPI0003B70D90 heptaprenyl diphosphate synthase subunit II 3.80107002644e-05 3.76805535388e-05 -3.301467256e-07 +UniRef50_Q02500 NADH ubiquinone oxidoreductase chain 6 0.000111020452156 2.90525313383e-05 -8.19679208177e-05 +UniRef50_Q2JTQ1 0.000423570121724 0.000872313169363 0.000448743047639 +UniRef50_UPI00046A3E00 PTS beta glucoside transporter subunit IIABC 5.56264755156e-06 5.32175970636e-06 -2.408878452e-07 +UniRef50_UPI000365A17E hypothetical protein 5.52446008369e-05 0.000174399629052 0.000119155028215 +UniRef50_E8PAF3 Glycerate kinase 0.000379110464253 0.00540498261899 0.00502587215474 +UniRef50_Q67P14 NADH quinone oxidoreductase subunit I 1 6.61586523722e-06 5.90748662164e-05 5.24590009792e-05 +UniRef50_M5DVC6 UPF0234 protein TOL_2827 1.4293609142e-05 5.63016835392e-05 4.20080743972e-05 +UniRef50_UPI0003955A36 biotin synthase 9.70603932537e-06 2.17311368072e-05 1.20250974818e-05 +UniRef50_A4WT84 Cytochrome c, monohaem 0.00196551470832 0.00056929866878 -0.00139621603954 +UniRef50_H9GTR8 8.80144926453e-05 4.00046662999e-05 -4.80098263454e-05 +UniRef50_Q9X051 Ribose import ATP binding protein RbsA 2 2.54153971927e-06 3.77109179729e-06 1.22955207802e-06 +UniRef50_Q8CRJ6 Alkanal monooxygenase alpha chain 0.00916218122751 0.00515684252718 -0.00400533870033 +UniRef50_A0A013LFH7 0.000240055289649 0.00311473372933 0.00287467843968 +UniRef50_G6G0I0 Proteophosphoglycan ppg4 0.000158850899008 0.0003551640284 0.000196313129392 +UniRef50_J9V068 0.000536709936758 0.000668641596675 0.000131931659917 +UniRef50_C2GIT9 2.9804454217e-05 2.90417226937e-05 -7.627315233e-07 +UniRef50_A6LV04 0.000976277779387 0.0016175401785 0.000641262399113 +UniRef50_UPI000367DAA4 hypothetical protein 2.47465777097e-06 4.03227315166e-06 1.55761538069e-06 +UniRef50_F2EEA5 Predicted protein 7.36124602676e-05 0.00261151012451 0.00253789766424 +UniRef50_K0X1N1 0.000339326745919 7.96050889419e-05 -0.000259721656977 +UniRef50_Q4L574 N5 carboxyaminoimidazole ribonucleotide synthase 0.0210438628288 0.00715224371664 -0.0138916191122 +UniRef50_UPI0004766F31 hypothetical protein, partial 2.91968702582e-06 1.30214390605e-05 1.01017520347e-05 +UniRef50_X5E0Q9 Triose phosphate Transporter family protein 0.0141145967891 0.00484991494416 -0.00926468184494 +UniRef50_Q3M1P1 Binding protein dependent transport systems inner membrane component 0.0019416260242 0.00069041534662 -0.00125121067758 +UniRef50_P02919 Penicillin binding protein 1B 0.00317002982213 0.000921889924818 -0.00224813989731 +UniRef50_R4LWQ6 5.79327844407e-05 3.83720698526e-05 -1.95607145881e-05 +UniRef50_Q4L860 Alkaline shock protein 23 0.00614141851528 0.00332041588497 -0.00282100263031 +UniRef50_Q5HK19 Sensor protein kinase WalK 0.0257024238417 0.00626586213568 -0.019436561706 +UniRef50_W9HAI5 3.57669145021e-06 1.52063023641e-05 1.16296109139e-05 +UniRef50_Q49WL3 Ribonuclease J 1 0.0238306703688 0.0134859834118 -0.010344686957 +UniRef50_B4EWA1 Purine nucleoside phosphorylase DeoD type 4.90951776641e-05 0.0683740606187 0.068324965441 +UniRef50_I6T7P3 Flavodoxin 0.0100471277956 0.00505614657222 -0.00499098122338 +UniRef50_Q49UP4 UPF0753 protein SSP2379 0.0106759006095 0.00412049237136 -0.00655540823814 +UniRef50_UPI0003B5EE25 ABC transporter permease 3.59893980663e-05 2.93798327623e-05 -6.609565304e-06 +UniRef50_UPI0002F44B36 hypothetical protein 3.63529986671e-05 0.000162896683754 0.000126543685087 +UniRef50_P44758 Hybrid peroxiredoxin hyPrx5 1.70848174752e-05 0.00162525811508 0.0016081732976 +UniRef50_UPI0003613AE0 hypothetical protein 0.000115174482534 9.14419955105e-05 -2.37324870235e-05 +UniRef50_B2UZY6 Penicillin binding protein 0.000257891648992 0.00295676336253 0.00269887171354 +UniRef50_Q8QZT1 Acetyl CoA acetyltransferase, mitochondrial 5.21214968188e-06 4.21961817776e-05 3.69840320957e-05 +UniRef50_P44624 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 3.31388473841e-05 7.75350065714e-05 4.43961591873e-05 +UniRef50_UPI0004032490 hypothetical protein 4.7350740862e-06 2.30985112234e-05 1.83634371372e-05 +UniRef50_Q04RS9 Biotin synthase 4.52331156961e-06 1.39601880466e-05 9.43687647699e-06 +UniRef50_D7CVJ1 Transcriptional regulator, BadM Rrf2 family 2.96269119189e-05 0.00019205421953 0.000162427307611 +UniRef50_G6ES00 Transposase 0.00192783092086 0.000473770115279 -0.00145406080558 +UniRef50_S9R1C4 Enoyl [acyl carrier protein] reductase 2.55352243368e-05 1.92631404318e-05 -6.272083905e-06 +UniRef50_G8RE63 ABC transporter ATP binding protein 0.0105803422739 0.00140154196912 -0.00917880030478 +UniRef50_Q5KUX3 Ribose import ATP binding protein RbsA 4.15182200609e-06 4.80633108111e-06 6.5450907502e-07 +UniRef50_UPI00037AE633 hypothetical protein 1.5059497486e-05 1.53262620828e-06 -1.35268712777e-05 +UniRef50_Z9VYD6 3.13582981848e-05 4.90501219884e-05 1.76918238036e-05 +UniRef50_UPI00016C5052 large conductance mechanosensitive channel protein MscL 0.000362649120809 8.02820309689e-05 -0.00028236708984 +UniRef50_K9D9U6 Diguanylate cyclase domain containing protein 5.26048406939e-05 0.000332500823929 0.000279895983235 +UniRef50_I6U2X8 0.00525914523442 0.00114225995907 -0.00411688527535 +UniRef50_A6VYP9 Oxidoreductase FAD binding domain protein 0.000503272830884 0.000195790080794 -0.00030748275009 +UniRef50_Q2WGJ0 ATP synthase subunit alpha, chloroplastic 3.37791407038e-06 5.92420757458e-06 2.5462935042e-06 +UniRef50_UPI0003625BDB hypothetical protein 5.0359112619e-05 8.78177491299e-05 3.74586365109e-05 +UniRef50_Q6F8I3 UPF0176 protein ACIAD2917 4.45131580353e-06 1.22507488224e-05 7.79943301887e-06 +UniRef50_Q02CT4 NADH quinone oxidoreductase subunit K 1 1.61533904911e-05 0.00122797460772 0.00121182121723 +UniRef50_UPI0004714BA7 hypothetical protein 1.19347282906e-05 6.85173669344e-06 -5.08299159716e-06 +UniRef50_P42237 Probable glucarate transporter 0.00441753169118 0.00813680608618 0.003719274395 +UniRef50_M9S4A5 0.000663274622552 0.000528303811067 -0.000134970811485 +UniRef50_B9JZN3 1.12571250333e-06 5.38093069683e-05 5.2683594465e-05 +UniRef50_H0HWX8 0.000223946280706 0.000181371008949 -4.2575271757e-05 +UniRef50_UPI0003289C1D 7.88293713464e-06 3.30623185799e-06 -4.57670527665e-06 +UniRef50_P75919 Cardiolipin synthase C 0.00400665440205 0.000575579195728 -0.00343107520632 +UniRef50_W1K3X1 LysR family transcriptional regulator 6.70635132853e-05 2.97591070676e-05 -3.73044062177e-05 +UniRef50_B6I424 Glutamate ammonia ligase adenylyltransferase 0.000393291897783 0.000204501509084 -0.000188790388699 +UniRef50_B7GXG8 Short chain dehydrogenase family protein 0.000234949785595 0.00584000340349 0.00560505361789 +UniRef50_UPI0003B70587 hypothetical protein 2.55713156476e-05 1.99118279678e-05 -5.6594876798e-06 +UniRef50_UPI0003FE3085 chemotaxis protein CheA 1.74072366045e-05 1.67949492536e-06 -1.57277416791e-05 +UniRef50_D5AKE9 4.85780251964e-06 2.64231847178e-06 -2.21548404786e-06 +UniRef50_Q02GV4 0.00132980279419 0.000464996096738 -0.000864806697452 +UniRef50_A5ULP3 Hydroxyethylthiazole kinase 0.00171930475128 0.000298299702217 -0.00142100504906 +UniRef50_Q49XX5 0.0160252370759 0.00290269639789 -0.013122540678 +UniRef50_M9R1S6 4.9734300396e-05 8.14292138594e-05 3.16949134634e-05 +UniRef50_U8A0B9 8.97008121123e-06 1.92801075814e-05 1.03100263702e-05 +UniRef50_Q9HW54 0.000217154172112 0.000173375756472 -4.377841564e-05 +UniRef50_B1MCA4 Riboflavin biosynthesis protein RibBA 7.40731323682e-06 1.70311565424e-05 9.62384330558e-06 +UniRef50_B0VME8 Thiol 0.000556563245085 0.00630040511786 0.00574384187277 +UniRef50_N9N018 8.37672113294e-05 1.73468886804e-05 -6.6420322649e-05 +UniRef50_Q9RVZ5 Zinc metalloprotease, putative 8.52754492897e-05 0.0114766869112 0.0113914114619 +UniRef50_UPI00045E7E19 uroporphyrin III methyltransferase 2.98178600166e-05 1.12371780888e-05 -1.85806819278e-05 +UniRef50_W2C810 9.05293113847e-05 1.64159061812e-05 -7.41134052035e-05 +UniRef50_A4WN46 Dihydroxy acid dehydratase 2.10199807601e-05 1.03939223345e-05 -1.06260584256e-05 +UniRef50_Q2YWD0 HTH type transcriptional regulator SAB2452 0.0144201868865 0.00261994393215 -0.0118002429544 +UniRef50_Q9RME4 Phosphopantetheine adenylyltransferase 6.16851469722e-05 1.27911579097e-05 -4.88939890625e-05 +UniRef50_Q46482 Phosphoribosylamine glycine ligase 0.000487883062122 0.000200895717825 -0.000286987344297 +UniRef50_UPI000376F60F hypothetical protein 1.55247787925e-05 8.63297731949e-06 -6.89180147301e-06 +UniRef50_UPI0004666ABA hypothetical protein 6.01243905262e-06 1.62607307604e-05 1.02482917078e-05 +UniRef50_A7X198 0.000370043574149 1.45798313737e-05 -0.000355463742775 +UniRef50_UPI00036FAB93 MULTISPECIES 0.00190077304021 0.000598005961359 -0.00130276707885 +UniRef50_M1V095 A G specific adenine glycosylase 0.000148227482538 0.00647141028911 0.00632318280657 +UniRef50_A4XQ45 Urease subunit beta 8.60701513733e-05 3.71996505491e-05 -4.88705008242e-05 +UniRef50_UPI00030D86CE flagellar biosynthetic protein FlhB 9.91249402959e-05 2.36404942187e-05 -7.54844460772e-05 +UniRef50_P76545 0.00133622411715 0.000777149224201 -0.000559074892949 +UniRef50_R1EB69 2.43300382662e-06 4.23658433687e-05 3.99328395421e-05 +UniRef50_UPI00028A03C4 beta N acetylhexosaminidase 8.09530786042e-06 1.24279897522e-05 4.33268189178e-06 +UniRef50_D3F063 BolA family protein 3.78345731424e-05 0.000111795426022 7.39608528796e-05 +UniRef50_D7CQX7 0.000120859975083 0.0416186949894 0.0414978350143 +UniRef50_W6EXE3 Raffinose transport system permease protein 0.000525204600731 0.00167692972345 0.00115172512272 +UniRef50_E3I496 Polyhydroxyalkonate synthesis repressor, PhaR 3.16480465812e-05 1.10626507001e-05 -2.05853958811e-05 +UniRef50_UPI000225AC36 RNAse E 1.32467800821e-05 7.65325501882e-06 -5.59352506328e-06 +UniRef50_A5UKL3 0.00398188714036 0.00171675281453 -0.00226513432583 +UniRef50_U5UJL0 0.0220308311157 0.00638544889348 -0.0156453822222 +UniRef50_UPI00047BF1EC excinuclease ABC subunit A 7.87508068484e-06 2.00602043417e-05 1.21851236569e-05 +UniRef50_V4ZVN5 4.38018958171e-05 8.8669105693e-05 4.48672098759e-05 +UniRef50_Q9RW93 Shikimate kinase 0.000507828684551 0.020336275748 0.0198284470634 +UniRef50_UPI0003B51C56 homoserine dehydrogenase 4.51647330146e-06 3.64723241846e-05 3.19558508831e-05 +UniRef50_Q5HRU9 0.00413223016883 0.00216607353705 -0.00196615663178 +UniRef50_Q27828 Bifunctional dihydrofolate reductase thymidylate synthase 2.28788741942e-05 8.83341961194e-05 6.54553219252e-05 +UniRef50_G7M1X8 0.00016604955521 0.00059236275891 0.0004263132037 +UniRef50_C5KZL8 9.69760616004e-06 5.36348956922e-06 -4.33411659082e-06 +UniRef50_UPI0002555E19 hydrolases of HD superfamily protein 1.86084292886e-05 0.000102252056623 8.36436273344e-05 +UniRef50_D7GDS1 0.000555127442285 0.00238034160775 0.00182521416546 +UniRef50_E4BHA0 4 phosphoerythronate dehydrogenase 0.000238412203486 0.00607172090438 0.00583330870089 +UniRef50_B4F2G7 Prolipoprotein diacylglyceryl transferase 0.00128756849185 0.000233065040062 -0.00105450345179 +UniRef50_A9KSS0 UvrABC system protein C 0.000372256634095 0.00159225960061 0.00122000296651 +UniRef50_Q2FW88 0.000500897000195 0.000553816090173 5.2919089978e-05 +UniRef50_P17855 Staphylocoagulase 0.0132376312781 0.00265877636947 -0.0105788549086 +UniRef50_Q6A6L8 Conserved membrane spanning protein 0.000117277378725 0.00560292978463 0.00548565240591 +UniRef50_B6ASY9 4.31546223661e-05 3.52506632775e-05 -7.9039590886e-06 +UniRef50_K7KA74 2.13245459195e-05 2.07889820164e-05 -5.355639031e-07 +UniRef50_B0S1E5 Translation initiation factor IF 2 0.000500509660907 0.00114409778029 0.000643588119383 +UniRef50_I6T4B3 6.33706676712e-05 6.36533679428e-05 2.827002716e-07 +UniRef50_G8QKA4 6.87620772728e-05 2.06995529004e-05 -4.80625243724e-05 +UniRef50_G2A420 Prepilin type N terminal cleavage methylation domain protein 5.71346966362e-05 7.39380445127e-05 1.68033478765e-05 +UniRef50_B8FRJ8 Proton translocating NADH quinone oxidoreductase, chain M 0.0001538141831 0.000776576743153 0.000622762560053 +UniRef50_A9E7Y1 0.000896849751893 0.00011975785162 -0.000777091900273 +UniRef50_C4JB45 6.58096548847e-05 6.11950423154e-05 -4.6146125693e-06 +UniRef50_P0A4I5 Sensor protein CiaH 0.00354618237767 0.00297614907758 -0.00057003330009 +UniRef50_D8JKU2 0.000695619257029 0.00969717804176 0.00900155878473 +UniRef50_UPI000307CD30 hypothetical protein 5.05932232876e-05 9.04697160414e-05 3.98764927538e-05 +UniRef50_O33832 Fructose 1,6 bisphosphatase inositol 1 monophosphatase 7.21098269097e-06 2.57826292291e-05 1.85716465381e-05 +UniRef50_M9VC77 Methylmalonyl CoA mutase, small subunit 7.64657641136e-05 0.00769249042903 0.00761602466492 +UniRef50_I4KUA6 Iron ABC transporter, periplasmic iron binding protein 0.000575712232199 0.000249563412836 -0.000326148819363 +UniRef50_A3SN26 4.22036483988e-06 7.77131779435e-06 3.55095295447e-06 +UniRef50_A6LX02 NADH 0.000138189354568 0.00160228524652 0.00146409589195 +UniRef50_UPI0000165EF1 hypothetical protein DR_A0286, partial 9.39185305452e-05 0.0352218831095 0.035127964579 +UniRef50_E2PX18 Sugar kinase 0.000119457591412 0.00521751341722 0.00509805582581 +UniRef50_UPI0003673178 hypothetical protein 1.94303615504e-05 3.46953521549e-06 -1.59608263349e-05 +UniRef50_UPI0001FFDF12 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 9.08334799347e-05 1.57589244687e-05 -7.5074555466e-05 +UniRef50_E3HCS4 TRAP transporter solute receptor, TAXI family 1.40683717345e-05 2.56442763708e-05 1.15759046363e-05 +UniRef50_E2SCH3 Ribonucleoside diphosphate reductase subunit beta 0.000570026814461 0.00437711343014 0.00380708661568 +UniRef50_UPI0003EA9CC0 PREDICTED 2.65273054864e-05 7.05734689415e-05 4.40461634551e-05 +UniRef50_J1K020 2.06627742094e-05 3.74426508071e-05 1.67798765977e-05 +UniRef50_UPI00037CD073 hypothetical protein, partial 1.18738267055e-05 3.46023470964e-05 2.27285203909e-05 +UniRef50_A5UJU7 Serine acetyltransferase, CysE 0.00261350542105 0.000557201330567 -0.00205630409048 +UniRef50_UPI000395575D signal peptide protein 2.20514565551e-05 9.65755770203e-06 -1.23938988531e-05 +UniRef50_Q16B11 Membrane protein, putative 0.00743414003025 2.04927068313e-05 -0.00741364732342 +UniRef50_UPI00036A093B hypothetical protein 0.000449485524703 0.000275313896873 -0.00017417162783 +UniRef50_B9KVZ4 DoxX family protein 0.00144484181353 0.000204350017516 -0.00124049179601 +UniRef50_L6P508 DNA topoisomerase IV subunit A 0.00353284008632 0.000899602066631 -0.00263323801969 +UniRef50_A6LYN3 Drug resistance transporter, EmrB QacA subfamily 0.000109522047056 0.00158495094711 0.00147542890005 +UniRef50_P12045 N5 carboxyaminoimidazole ribonucleotide synthase 4.01472980422e-06 0.000864585509472 0.000860570779668 +UniRef50_W0YU10 Phosphatidylethanolamine 0.00120031983903 0.000151444464203 -0.00104887537483 +UniRef50_Q9JSN0 Pimeloyl [acyl carrier protein] methyl ester esterase 0.000692993024142 0.00480896423553 0.00411597121139 +UniRef50_J1AY66 0.000227131568354 0.0138707980335 0.0136436664651 +UniRef50_A4WX23 0.0002609505722 0.000403408097292 0.000142457525092 +UniRef50_UPI00035E0126 hypothetical protein 2.30383464608e-05 1.48941801892e-05 -8.1441662716e-06 +UniRef50_I1ZJ75 N acetylneuraminate lyase 0.000379469604023 0.00300509355431 0.00262562395029 +UniRef50_UPI000374FB7B hypothetical protein 2.716693052e-06 4.24508526211e-06 1.52839221011e-06 +UniRef50_A0A024JM61 Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2 3 protein complex that nucleates branched actin filaments 9.10167578266e-06 1.68957908953e-05 7.79411511264e-06 +UniRef50_C7J807 Os10g0561000 protein 5.8700968243e-05 0.000314223304134 0.000255522335891 +UniRef50_UPI0004673F99 transposase, partial 0.000155122375566 3.28414597034e-05 -0.000122280915863 +UniRef50_Q9RS38 Guanylate kinase 0.000665668358082 0.0387675489486 0.0381018805905 +UniRef50_UPI00046A1E34 hypothetical protein 8.0416508865e-05 0.000260671293239 0.000180254784374 +UniRef50_Q9RTJ0 0.000313700267745 0.100472575923 0.100158875655 +UniRef50_N6YR38 Proline glycine betaine ABC transporter periplasmic protein 0.0001959397886 5.45655276388e-06 -0.000190483235836 +UniRef50_K9VMS4 UDP galactopyranose mutase 0.000238664680596 0.0547696078905 0.0545309432099 +UniRef50_Q5LX45 Membrane protein 0.00416133359018 0.000978281425483 -0.0031830521647 +UniRef50_Q5HXL7 0.00137535638915 0.000848947598611 -0.000526408790539 +UniRef50_Q83L33 UPF0061 protein YdiU 0.0039166675244 0.000328726023827 -0.00358794150057 +UniRef50_UPI00042B6AB1 GMP synthase 3.0600809089e-06 3.81968825197e-06 7.5960734307e-07 +UniRef50_I0ZPZ0 Hydrogenase 1 large subunit 0.00141060494847 0.000760707140905 -0.000649897807565 +UniRef50_B2TCX7 Periplasmic binding protein LacI transcriptional regulator 9.93134968576e-06 9.35612586909e-05 8.36299090051e-05 +UniRef50_P42765 3 ketoacyl CoA thiolase, mitochondrial 7.97204612988e-06 1.64645272475e-05 8.49248111762e-06 +UniRef50_A4VJJ6 RNA binding S1 0.000682174827427 0.000211191922662 -0.000470982904765 +UniRef50_U6HHG3 Thymidylate synthase 1.22132270647e-05 5.65571551578e-05 4.43439280931e-05 +UniRef50_K8WD83 3.05824656255e-05 1.45608493609e-05 -1.60216162646e-05 +UniRef50_I0QGZ0 Putative polysaccharide biosynthesis protein 1.12857081252e-05 6.64808613997e-06 -4.63762198523e-06 +UniRef50_P52052 0.00347043158911 0.000182670126934 -0.00328776146218 +UniRef50_Q6ADC9 50S ribosomal protein L20 0.033961800351 0.0172376889532 -0.0167241113978 +UniRef50_P21332 Oligo 1,6 glucosidase 2.7498218324e-05 0.000900706111549 0.000873207893225 +UniRef50_A0A024HC94 LysR family transcriptional regulator 0.000194246649494 0.000600667478795 0.000406420829301 +UniRef50_Q8CSM8 Aspartokinase 0.0153412784405 0.00491240024303 -0.0104288781975 +UniRef50_C7LDR5 Glutamine amidotransferase, putative 0.00511390510548 0.000972852655583 -0.0041410524499 +UniRef50_UPI0003467BCD hypothetical protein 7.21337449315e-05 3.83870064577e-05 -3.37467384738e-05 +UniRef50_Q30SK1 Polysaccharide deacetylase 0.000185004913382 0.00874764169265 0.00856263677927 +UniRef50_UPI0003C7F3E1 protein tyrosine kinase 1.87733561182e-05 3.15141895913e-05 1.27408334731e-05 +UniRef50_R5PQB3 AmiC protein 1.40974905583e-05 3.60753415439e-05 2.19778509856e-05 +UniRef50_Q4KC87 Fe ions import ATP binding protein FbpC 1.92586739354e-05 1.65824878376e-05 -2.6761860978e-06 +UniRef50_Q49Y71 D tyrosyl tRNA deacylase 8.96476724282e-06 4.17489335343e-05 3.27841662915e-05 +UniRef50_UPI00029CB5BC L carnitine dehydratase bile acid inducible protein F, partial 9.5283238065e-06 0.000165939169361 0.000156410845555 +UniRef50_Q5HR28 Response regulator SaeR 0.0145538576158 0.00254241007237 -0.0120114475434 +UniRef50_UPI000411F9DF hypothetical protein 1.90760319639e-05 0.000110758449319 9.16824173551e-05 +UniRef50_M1WNQ8 0.00031151163683 0.000361085846407 4.9574209577e-05 +UniRef50_K7YE63 0.000179755232787 0.00132069569557 0.00114094046278 +UniRef50_Q8EDH1 3 oxoacyl [acyl carrier protein] synthase 3 2.7716453189e-05 1.80745131138e-05 -9.6419400752e-06 +UniRef50_UPI000411E306 indole 3 glycerol phosphate synthase 2.29060948712e-05 1.16354238464e-05 -1.12706710248e-05 +UniRef50_UPI000464983B histidine kinase 0.000105025276587 7.27094247687e-05 -3.23158518183e-05 +UniRef50_P77599 Probable fimbrial chaperone YfcS 0.00259997291813 0.000520391958389 -0.00207958095974 +UniRef50_Q9Z6P2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.8338745651e-05 3.44847885327e-05 -2.38539571183e-05 +UniRef50_Q6LWM9 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 5.55563764806e-06 1.1446013559e-05 5.89037591094e-06 +UniRef50_M2XTQ6 2.94835901563e-06 9.9100522092e-06 6.96169319357e-06 +UniRef50_D2ZNU9 0.00270032530065 0.000113220462059 -0.00258710483859 +UniRef50_O33925 Methionine tRNA ligase 8.59994846826e-06 1.62269579521e-05 7.62700948384e-06 +UniRef50_A3DIZ4 DNA directed RNA polymerase subunit beta 0.000108622261922 0.00177434470421 0.00166572244229 +UniRef50_D2ZNU3 0.00230319135532 0.000509483617324 -0.001793707738 +UniRef50_Q6GJ92 Protein VraC 0.00538301300108 0.00252408789129 -0.00285892510979 +UniRef50_D2ZNU0 0.00408801440118 0.00151644061144 -0.00257157378974 +UniRef50_F3U4T8 Aldehyde dehydrogenase EutE 0.000211160489009 0.00886505932093 0.00865389883192 +UniRef50_G8AVK1 5.74268745739e-05 6.18563059841e-05 4.4294314102e-06 +UniRef50_X6CFN2 Transposase 3.54010595625e-05 3.5415083322e-05 1.40237595e-08 +UniRef50_W4HGN2 6.58086108151e-05 4.14145599604e-05 -2.43940508547e-05 +UniRef50_Q8DWZ2 Pseudouridine synthase 0.00601695535068 0.0108420113307 0.00482505598002 +UniRef50_UPI0002F4B1FA hypothetical protein 3.0170871773e-05 4.57207759576e-05 1.55499041846e-05 +UniRef50_L0GPC8 Acyl CoA dehydrogenase 0.000704723695002 0.000332704819631 -0.000372018875371 +UniRef50_E4R6V3 ATP dependent helicase HrpB 5.22833779594e-05 9.07735774225e-05 3.84901994631e-05 +UniRef50_B9KQM1 Major facilitator superfamily MFS_1 0.00062687744687 0.00043385957659 -0.00019301787028 +UniRef50_Q72M00 Ketol acid reductoisomerase 0.000193989710217 0.00511738440251 0.00492339469229 +UniRef50_UPI000369FF3F hypothetical protein 1.06934374895e-05 3.47331607848e-06 -7.22012141102e-06 +UniRef50_R7U816 9.01592520477e-06 2.65831131546e-05 1.75671879498e-05 +UniRef50_UPI00035CB92A hypothetical protein 7.77805858294e-06 1.63246722254e-05 8.54661364246e-06 +UniRef50_UPI000464C182 hypothetical protein 2.58302114497e-06 3.39968459782e-05 3.14138248332e-05 +UniRef50_UPI000379A4AF hypothetical protein 1.95337917903e-05 6.11270902781e-05 4.15932984878e-05 +UniRef50_Q3J4T6 ThiF family protein 0.0146518265403 0.00292045267691 -0.0117313738634 +UniRef50_W7X462 3.66599653055e-06 0.000258895280269 0.000255229283738 +UniRef50_UPI00035D977C hypothetical protein 9.15942036928e-06 2.2224132396e-05 1.30647120267e-05 +UniRef50_I4VTW8 0.00013296511865 6.65102560551e-05 -6.64548625949e-05 +UniRef50_G4P1D7 6.71920246833e-06 0.00143375068931 0.00142703148684 +UniRef50_J8V4X4 0.000133075796983 9.50465709992e-06 -0.000123571139883 +UniRef50_Q9K3C5 B type flagellar hook associated protein 2 0.00118983305001 0.00026679866902 -0.00092303438099 +UniRef50_Q3JGP3 V4R domain protein 0.000250543797907 0.000835801995839 0.000585258197932 +UniRef50_S5S8C8 Aldo keto reductase protein 0.00429067220178 0.000668854683766 -0.00362181751801 +UniRef50_G0D373 4.16234263799e-05 1.07187798473e-05 -3.09046465326e-05 +UniRef50_P31449 0.00132715307768 0.00155111395961 0.00022396088193 +UniRef50_UPI0004715D35 hypothetical protein, partial 4.01598140582e-05 0.000167549333427 0.000127389519369 +UniRef50_W4SJE9 0.000113276190287 3.91412388612e-05 -7.41349514258e-05 +UniRef50_Q9KPW2 UDP 3 O acylglucosamine N acyltransferase 0.00324577631464 0.000646210240034 -0.00259956607461 +UniRef50_UPI0003ACD77D 1.64466244913e-05 4.44052004578e-06 -1.20061044455e-05 +UniRef50_J9YSZ8 Transcriptional regulator RofA 0.000247944520113 0.000249037400741 1.092880628e-06 +UniRef50_Q7VJB6 Phosphoglycerate kinase 5.24292543885e-06 0.00536357131581 0.00535832839037 +UniRef50_B0UVX7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.0217650896e-05 5.07997876713e-05 5.821367753e-07 +UniRef50_UPI00037525E2 hypothetical protein 0.00011260505332 4.39055975949e-05 -6.86994557251e-05 +UniRef50_A6V9P7 Conserved exported protein 4.3849392214e-05 1.65787259339e-05 -2.72706662801e-05 +UniRef50_B7V5G9 Diaminopimelate epimerase 0.00433347813722 0.014378396602 0.0100449184648 +UniRef50_Q4JUY7 Ribonuclease 3 1.7361772528e-05 6.14774878368e-05 4.41157153088e-05 +UniRef50_Q5HLV2 Staphylococcal secretory antigen SsaA 0.037140013015 0.00966400716106 -0.0274760058539 +UniRef50_B3PJA9 tRNA pseudouridine synthase D 5.38255502605e-06 7.38968624151e-06 2.00713121546e-06 +UniRef50_UPI00016A3B06 nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial 5.63671260145e-06 2.51609597342e-05 1.95242471327e-05 +UniRef50_A6GVN8 Uroporphyrinogen decarboxylase 9.83420976293e-06 1.01164115729e-05 2.8220180997e-07 +UniRef50_A5UM22 Possible glycosyltransferase 0.0043846249373 0.00030923215204 -0.00407539278526 +UniRef50_Q31YX9 Elongation factor P like protein 0.00390680773216 0.00107780422863 -0.00282900350353 +UniRef50_U5MSB5 Stage V sporulation protein D 0.000399610756021 0.00150644936997 0.00110683861395 +UniRef50_M4MR97 Ribonuclease J 0.000171159783699 4.62956254521e-05 -0.000124864158247 +UniRef50_UPI000363EEDE hypothetical protein 0.000141220999367 0.000102523335063 -3.8697664304e-05 +UniRef50_A6M3E8 0.000465858794105 0.00259423366875 0.00212837487464 +UniRef50_P50360 6.78975678529e-06 6.87673967639e-06 8.69828911e-08 +UniRef50_P50361 0.000414994839979 7.28571198646e-05 -0.000342137720114 +UniRef50_T1XMS1 High affinity iron permease 0.0128122881096 0.0044895675244 -0.0083227205852 +UniRef50_D8HC44 0.00183352507788 0.000172029148656 -0.00166149592922 +UniRef50_D3E0N8 Dolichol kinase 0.00225569794777 0.000773755559468 -0.0014819423883 +UniRef50_UPI0002558256 3 hydroxyacyl CoA dehydrogenase NAD binding protein, partial 5.09684253994e-06 8.52092167556e-06 3.42407913562e-06 +UniRef50_Q8XCJ6 Glucose 6 phosphate 1 dehydrogenase 0.00302398627218 0.002064214654 -0.00095977161818 +UniRef50_O53553 1.2618632476e-06 5.79145262757e-06 4.52958937997e-06 +UniRef50_D3R582 Glycosyltransferase 0.000453766970837 0.0108386291823 0.0103848622115 +UniRef50_UPI0003DE98F5 7.656692621e-06 0.000627041524768 0.000619384832147 +UniRef50_Q9T4F6 Light independent protochlorophyllide reductase subunit N 5.96604285672e-05 2.72096305511e-05 -3.24507980161e-05 +UniRef50_UPI000262CF64 shikimate kinase 1.67483645531e-05 1.65260915312e-05 -2.222730219e-07 +UniRef50_O26249 Probable cobalt precorrin 6B C methyltransferase (decarboxylating) 0.0027494184603 0.000341406595601 -0.0024080118647 +UniRef50_Q9A1B6 Non canonical purine NTP pyrophosphatase 0.00619033570964 0.00920366996397 0.00301333425433 +UniRef50_Q6AIT3 1.44839375134e-05 0.00026804462307 0.000253560685557 +UniRef50_Q1IZX0 NADH quinone oxidoreductase subunit D 1.36418783139e-05 0.000112195006889 9.85531285751e-05 +UniRef50_M1LR90 Pleiotropic regulatory protein DegT 0.000526039296542 0.00154851677335 0.00102247747681 +UniRef50_Q881N5 TonB dependent receptor, putative 0.00129327083135 0.000453655687352 -0.000839615143998 +UniRef50_R6GWD9 GTP binding protein TypA 1.70688504294e-05 2.05476873716e-05 3.4788369422e-06 +UniRef50_UPI000361993A molybdenum metabolism regulator 4.4226573398e-05 3.09072792455e-05 -1.33192941525e-05 +UniRef50_C6S8I9 8.21812747825e-05 0.0049085116792 0.00482633040442 +UniRef50_UPI000365A3DC hypothetical protein 0.000115712334465 2.63589003369e-05 -8.93534341281e-05 +UniRef50_I3ZMM6 Endopolygalacturonase 7.1040862917e-06 1.03087780987e-05 3.204691807e-06 +UniRef50_A4BHS1 Phenol hydroxylase, putative 5.4750490027e-05 7.51635541821e-05 2.04130641551e-05 +UniRef50_UPI000362A7CA hypothetical protein, partial 1.10319819596e-05 8.24373726249e-06 -2.78824469711e-06 +UniRef50_W0NLZ2 Replication protein RepA 0.000140659120767 3.39387252408e-05 -0.000106720395526 +UniRef50_U7J5E9 1.23230321256e-05 1.22181263849e-05 -1.049057407e-07 +UniRef50_M0YA73 0.000595056610429 0.000324523851863 -0.000270532758566 +UniRef50_I6T572 Integrase 0.00770168863285 0.00224185936166 -0.00545982927119 +UniRef50_Q5LNW6 Bacterial type II III secretion system protein 0.0112812311519 0.00277581706003 -0.00850541409187 +UniRef50_F0YCD9 0.000338615323502 0.000666692651771 0.000328077328269 +UniRef50_E2LMJ8 1.67675642795e-05 3.7307595473e-05 2.05400311935e-05 +UniRef50_UPI00047D6BC3 hypothetical protein 1.81867098803e-05 1.91875867654e-05 1.0008768851e-06 +UniRef50_Q8XE94 Pyrimidine specific ribonucleoside hydrolase RihB 0.00365556008667 0.000508312631116 -0.00314724745555 +UniRef50_UPI0003B5EAE5 branched chain amino acid ABC transporter permease 4.80785666029e-05 1.22299618811e-05 -3.58486047218e-05 +UniRef50_Q9KF57 Phosphoribosylformylglycinamidine synthase 2 1.89818054931e-05 0.00384261638498 0.00382363457949 +UniRef50_Q9K0Y9 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000451398238643 0.00288592028218 0.00243452204354 +UniRef50_K7RRN0 Integral membrane protein 0.0012832687334 0.0208896770386 0.0196064083052 +UniRef50_J5III2 0.000651031440774 0.00184259116595 0.00119155972518 +UniRef50_B9KQG4 Flagellar hook associated protein FlgK 0.0013213104412 0.000918990110348 -0.000402320330852 +UniRef50_F8JV08 0.000173433224809 2.46948653296e-05 -0.000148738359479 +UniRef50_Q9KXU5 60 kDa chaperonin 2 0.00232197681639 0.00287579608967 0.00055381927328 +UniRef50_UPI00045DE6E8 PREDICTED 0.000130365761628 0.000344360207441 0.000213994445813 +UniRef50_M9RHS9 0.000192168524892 0.000363327048997 0.000171158524105 +UniRef50_E8U7S3 0.000988097606963 0.0286343634284 0.0276462658214 +UniRef50_G0AF05 Methionine ABC transporter substrate binding protein 4.34134383867e-05 1.03656729646e-05 -3.30477654221e-05 +UniRef50_UPI00037AFDDF hypothetical protein 4.67174722923e-06 7.05812295456e-06 2.38637572533e-06 +UniRef50_UPI000319862A hypothetical protein 0.000663921895969 6.11436615497e-05 -0.000602778234419 +UniRef50_B1VYS6 9.14009658218e-05 4.2858431686e-05 -4.85425341358e-05 +UniRef50_P77552 0.00264027280994 0.000146559158908 -0.00249371365103 +UniRef50_C6STR4 0.00156939618896 0.000637374183882 -0.000932022005078 +UniRef50_K0TBE2 0.000105296157079 8.22609206691e-05 -2.30352364099e-05 +UniRef50_UPI0004786C6A hypothetical protein 1.16300484585e-05 0.000119978472902 0.000108348424444 +UniRef50_UPI0003AE56AA PREDICTED 3.43240621507e-06 0.000155449651556 0.000152017245341 +UniRef50_Q0BTM6 3 oxoacyl [acyl carrier protein] reductase 0.000173689872173 0.000229818447619 5.6128575446e-05 +UniRef50_Q797S1 Putative PTS system EIIBC component YbbF 1.2339034572e-05 1.3736655603e-05 1.397621031e-06 +UniRef50_P19994 Methionine aminopeptidase 1 1.19577634368e-05 0.000851264625898 0.000839306862461 +UniRef50_UPI000369A8C8 MULTISPECIES 3.82774819717e-06 1.02967645974e-05 6.46901640023e-06 +UniRef50_A5UMG5 Adhesin like protein 0.00348806394214 0.00114594488543 -0.00234211905671 +UniRef50_UPI00036FF434 hypothetical protein 5.12717286721e-06 8.1166132018e-07 -4.31551154703e-06 +UniRef50_A9KCZ5 Uroporphyrinogen decarboxylase 5.18063270852e-06 9.1211091838e-06 3.94047647528e-06 +UniRef50_A0A023S0A3 LysR family transcriptional regulator 0.000492640676188 0.00855461688721 0.00806197621102 +UniRef50_UPI000370F363 hypothetical protein 3.06108513412e-05 1.52506782587e-05 -1.53601730825e-05 +UniRef50_Q3JUP4 7.42262273789e-05 0.000223996547545 0.000149770320166 +UniRef50_E6K2Y0 Carbohydrate kinase, FGGY family protein 0.000400509962594 0.00404560303575 0.00364509307316 +UniRef50_UPI00035EBFF4 hypothetical protein 4.51553951965e-05 0.000524776383849 0.000479620988653 +UniRef50_UPI0001C39734 geranylgeranyl pyrophosphate synthase 0.000512486443546 0.000193466065931 -0.000319020377615 +UniRef50_UPI0003ABA403 PREDICTED 3.884304285e-05 4.77654846108e-05 8.9224417608e-06 +UniRef50_UPI000359FA90 PREDICTED 2.51507806092e-05 2.53861897644e-05 2.354091552e-07 +UniRef50_UPI00036A2ED5 50S ribosomal protein L22 2.00311241373e-05 0.000267576776929 0.000247545652792 +UniRef50_UPI0003AB3C4C hypothetical protein 1.15419330705e-05 3.69382909768e-05 2.53963579063e-05 +UniRef50_Q3J1M2 0.0084781763127 0.00379929130798 -0.00467888500472 +UniRef50_Q3J1M3 0.0111713945957 0.00443200657402 -0.00673938802168 +UniRef50_X2GZX1 rRNA methyltransferase 0.00778223829134 0.00126900973086 -0.00651322856048 +UniRef50_A0A017HLL9 0.000621987396137 0.000254478279452 -0.000367509116685 +UniRef50_G4ZKG2 3.9310066092e-06 3.96287593136e-05 3.56977527044e-05 +UniRef50_UPI0003B5AE6D magnesium transporter MgtC 3.68884408859e-05 2.99766504351e-05 -6.9117904508e-06 +UniRef50_Q5XD38 PTS system, N acetylgalactosamine specific IID component 0.000145186918795 0.00350361006186 0.00335842314307 +UniRef50_UPI0003664D62 hypothetical protein 3.75627410691e-05 1.03087919726e-05 -2.72539490965e-05 +UniRef50_A3MWA6 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.4761761234e-05 3.46627179166e-05 -2.00990433174e-05 +UniRef50_S9QMF6 Flagellar protein FlaF 7.88625487296e-05 0.000126739334149 4.78767854194e-05 +UniRef50_UPI000190F922 leucyl phenylalanyl tRNA protein transferase 1.23126621967e-05 1.56043956143e-05 3.2917334176e-06 +UniRef50_UPI000372C446 hypothetical protein 2.77812997365e-05 9.79024586966e-05 7.01211589601e-05 +UniRef50_G8R9S1 ATP dependent RNA helicase YqfR 0.00683359776063 0.000962295054923 -0.00587130270571 +UniRef50_Q8EA37 Ribosomal protein S12 methylthiotransferase RimO 0.00472247166933 0.00177545839701 -0.00294701327232 +UniRef50_Q9X0N9 Glucose 6 phosphate 1 dehydrogenase 3.72852330483e-05 6.08325691857e-06 -3.12019761297e-05 +UniRef50_G1LNR6 0.000175215747882 0.000313728366028 0.000138512618146 +UniRef50_Q5M1U0 Heat inducible transcription repressor HrcA 0.00480432146388 0.00547582336896 0.00067150190508 +UniRef50_UPI000369E51E hypothetical protein, partial 0.00101992099789 0.00110743764448 8.751664659e-05 +UniRef50_UPI000219386D riboflavin synthase subunit alpha 1.08504547571e-05 2.43771243706e-05 1.35266696135e-05 +UniRef50_UPI0003B6FF8D fructose 1,6 bisphosphatase 1.82252392599e-05 8.78650333153e-06 -9.43873592837e-06 +UniRef50_Q8DYP7 DNA primase 0.0057853992887 0.00518434594258 -0.00060105334612 +UniRef50_A7ZUE4 Regulator of ribonuclease activity A 0.00459994995714 0.00115810472625 -0.00344184523089 +UniRef50_Q6A8H1 Methionyl tRNA formyltransferase 0.000645753413816 0.00501209604202 0.0043663426282 +UniRef50_P31827 0.00260776453685 0.00032868268965 -0.0022790818472 +UniRef50_B8EJY2 Chromosomal replication initiator DnaA 1.11306320944e-05 7.06116979016e-06 -4.06946230424e-06 +UniRef50_UPI00036188FB hypothetical protein 2.16687420003e-06 1.26171858346e-05 1.04503116346e-05 +UniRef50_Q9RZE7 Probable chromosome 2 partitioning protein ParB 0.00105174340572 0.0688892658729 0.0678375224672 +UniRef50_F2IXW0 0.000103248970526 3.7202208411e-05 -6.6046762115e-05 +UniRef50_Q5LQ23 Paraquat inducible protein A, putative 0.00549384836872 0.000403675941204 -0.00509017242752 +UniRef50_A5UL46 Phosphoserine phosphatase, HAD family, SerB 0.00398212833509 0.0009030078007 -0.00307912053439 +UniRef50_Q72GT4 Adenylosuccinate synthetase 3.22196207208e-06 0.018358241974 0.0183550200119 +UniRef50_B9TIG4 0.000231463038226 7.54532104517e-05 -0.000156009827774 +UniRef50_Z1ADI7 Gluconate permease 0.00449956918919 0.00033189428584 -0.00416767490335 +UniRef50_E1CJT9 Iron responsive element binding protein 2 variant 5.41648192658e-06 0.000196735958347 0.00019131947642 +UniRef50_P37025 2 5 RNA ligase 0.00620023403597 0.00335633958389 -0.00284389445208 +UniRef50_Q53075 UvrC protein 0.000633200204603 0.0011505845657 0.000517384361097 +UniRef50_UPI00016C40E6 nitrogen regulatory protein P II 6.16548274712e-05 0.00015595679295 9.43019654788e-05 +UniRef50_Q6D108 Lysophospholipid transporter LplT 0.00278474003868 0.00137515475267 -0.00140958528601 +UniRef50_D6ZIN1 ABC transporter, permease protein 0.000659590373902 0.00410860970857 0.00344901933467 +UniRef50_K0HR37 FGGY family pentulose kinase 7.53465047635e-05 0.00528944597554 0.00521409947078 +UniRef50_U4V4Z3 Beta barrel assembly machine subunit BamF 2.16898364873e-05 2.04290860271e-05 -1.2607504602e-06 +UniRef50_E1TCG3 ABC transporter related protein 0.00120758768849 0.000850484406558 -0.000357103281932 +UniRef50_UPI00046669DC hypothetical protein 1.67271051802e-05 9.56954393577e-05 7.89683341775e-05 +UniRef50_UPI0003B73A84 cation 1.62468764931e-05 9.60888883334e-05 7.98420118403e-05 +UniRef50_O67221 Aspartokinase 0.000478463991519 0.0146951138716 0.0142166498801 +UniRef50_F5X3Q6 PTS system, ascorbate specific IIA component 0.00696618626906 0.00169100897242 -0.00527517729664 +UniRef50_G2JDJ5 Metal dependent hydrolase 0.00031787927103 0.00398611418686 0.00366823491583 +UniRef50_H4XIK4 0.00142908435036 0.000350871332905 -0.00107821301746 +UniRef50_F8H8U4 Molybdopterin oxidoreductase, alpha subunit 0.000312890358937 0.000241487819835 -7.1402539102e-05 +UniRef50_I7DHA8 0.00729821620769 0.000727581512224 -0.00657063469547 +UniRef50_B7V4R0 3 oxoacyl [acyl carrier protein] synthase 3 0.000339599830546 1.63959458137e-05 -0.000323203884732 +UniRef50_UPI00046E82BD aldehyde reductase 1.23381501676e-05 1.78737578453e-05 5.5356076777e-06 +UniRef50_UPI0002DD2F26 hypothetical protein 9.721842731e-06 3.83368244004e-05 2.86149816694e-05 +UniRef50_W6RY62 0.000105307844385 8.17297154518e-05 -2.35781289332e-05 +UniRef50_B8EK13 Ribonuclease 3 1.62580458921e-05 1.10043198863e-05 -5.2537260058e-06 +UniRef50_UPI00036C7A0B hypothetical protein, partial 2.90121310539e-05 5.69591923211e-05 2.79470612672e-05 +UniRef50_P08722 PTS system beta glucoside specific EIIBCA component 0.00317674987716 0.000835476250198 -0.00234127362696 +UniRef50_P33129 Outer membrane usher protein HtrE 0.00340121723708 0.00160651236238 -0.0017947048747 +UniRef50_J9W5M6 Dihydroxyacetone kinase like protein 0.00609524465966 0.00403337492469 -0.00206186973497 +UniRef50_D0K567 0.00786277116182 0.00149253474715 -0.00637023641467 +UniRef50_A0A059DS58 7.42126342029e-06 2.70479018812e-05 1.96266384609e-05 +UniRef50_UPI000345DC68 hypothetical protein 3.04155881709e-05 0.00154131839423 0.00151090280606 +UniRef50_I0IQG7 0.00277973394983 0.000492194508663 -0.00228753944117 +UniRef50_UPI0003955356 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.00384652055e-05 5.39176298386e-06 -1.46467022216e-05 +UniRef50_A3PRH2 0.00209010455792 0.00142712026016 -0.00066298429776 +UniRef50_W9VLN3 0.000299409999387 0.000114163445567 -0.00018524655382 +UniRef50_C5NXP6 0.000139329468257 2.71893151479e-05 -0.000112140153109 +UniRef50_Q4L3R2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0210289624462 0.00576617765803 -0.0152627847882 +UniRef50_A1T8W3 Imidazoleglycerol phosphate dehydratase 0.000197729040071 5.6728808985e-05 -0.000141000231086 +UniRef50_P0ABQ1 Coenzyme A biosynthesis bifunctional protein CoaBC 0.00339552680294 0.00047370016204 -0.0029218266409 +UniRef50_UPI00037505DF hypothetical protein 9.14717318743e-06 3.87908318052e-06 -5.26809000691e-06 +UniRef50_D7BBF8 6.61600542306e-05 0.00201738535236 0.00195122529813 +UniRef50_G2JJD3 Tartrate ABC transporter permease 0.000172704518955 0.0101441416207 0.00997143710175 +UniRef50_D3QMJ7 0.00190419958755 0.0009859610215 -0.00091823856605 +UniRef50_Q12LS2 Phenylacetic acid degradation related protein 1.79330039519e-05 1.7590328866e-05 -3.426750859e-07 +UniRef50_UPI00036A4E56 hypothetical protein 1.73829551202e-05 1.45991973041e-05 -2.7837578161e-06 +UniRef50_C5C1Y1 Tryptophanyl tRNA synthetase 0.000361448329027 0.00528067435261 0.00491922602358 +UniRef50_UPI000378A2EB MULTISPECIES 0.000324782051752 0.000105207235497 -0.000219574816255 +UniRef50_B0S2Q1 Phosphoglucosamine mutase 4.26567203703e-06 4.93799597279e-06 6.7232393576e-07 +UniRef50_UPI000300932B hypothetical protein 1.47026792325e-05 6.1828537951e-05 4.71258587185e-05 +UniRef50_G0DWG7 1.43641601296e-05 4.9688902033e-05 3.53247419034e-05 +UniRef50_Q4J6M5 Glyceraldehyde dehydrogenase small chain 4.15104147303e-05 6.96146839455e-05 2.81042692152e-05 +UniRef50_D4HCV7 ABC transporter, ATP binding protein 0.000325418955908 0.00558689604923 0.00526147709332 +UniRef50_G2JE23 Pilus assembly protein tip associated adhesin PilY1 0.000311663915056 0.0099456786112 0.00963401469614 +UniRef50_UPI0003B58E0A peptide ABC transporter ATPase 8.404532654e-05 1.91264296289e-05 -6.49188969111e-05 +UniRef50_UPI00047856FC hypothetical protein 4.82051192337e-05 0.00183969061925 0.00179148550002 +UniRef50_P00894 Acetolactate synthase isozyme 3 small subunit 0.00129027817478 0.00674204447632 0.00545176630154 +UniRef50_V9WQS7 Acetyltransferase 0.000609620367238 0.000425162143439 -0.000184458223799 +UniRef50_P25535 2 octaprenylphenol hydroxylase 0.00358980571024 0.00206286269928 -0.00152694301096 +UniRef50_D3RW29 0.00022288257911 8.53142991038e-05 -0.000137568280006 +UniRef50_A0A032NY89 3.41301759814e-05 5.78740269445e-05 2.37438509631e-05 +UniRef50_F4QWW5 Major Facilitator Superfamily protein 8.36700636039e-06 1.55304285251e-05 7.16342216471e-06 +UniRef50_J2VJJ9 Replication protein C C terminal region Replication protein C N terminal domain containing protein 7.33101607037e-05 3.42804282268e-05 -3.90297324769e-05 +UniRef50_F0N8C1 RNA polymerase sigma 54 factor 0.000133230349002 0.000981366542265 0.000848136193263 +UniRef50_UPI0000167295 COG2986 8.49978967294e-06 0.000202731999643 0.00019423220997 +UniRef50_A3M4V3 Transketolase 4.13187269337e-05 3.20712919809e-05 -9.2474349528e-06 +UniRef50_UPI00029ADE1C hypothetical protein, partial 6.40974846752e-05 5.26422996327e-05 -1.14551850425e-05 +UniRef50_M4JVT9 4.95488878208e-05 7.48297263889e-05 2.52808385681e-05 +UniRef50_Q1WTX2 Orotidine 5 phosphate decarboxylase 0.00985968067363 0.000809153548648 -0.00905052712498 +UniRef50_P52636 Putative electron transport protein YccM 0.00338180255861 0.000756378500466 -0.00262542405814 +UniRef50_A0A022J9C0 LysM domain protein 9.88012857229e-05 0.00545749684895 0.00535869556323 +UniRef50_UPI0003717E93 phosphoribosylglycinamide synthetase 3.80104609535e-06 1.85205881819e-06 -1.94898727716e-06 +UniRef50_Q477A8 UPF0225 protein Reut_A0143 1.06365357121e-05 4.09504417917e-05 3.03139060796e-05 +UniRef50_J9GTB9 0.000216988050358 6.62234888158e-05 -0.000150764561542 +UniRef50_B2IQJ8 ABC transporter, ATP binding protein 0.00651252059147 0.0080417205855 0.00152919999403 +UniRef50_UPI00037869C0 hypothetical protein 5.27263515652e-06 2.02890891998e-06 -3.24372623654e-06 +UniRef50_UPI0003B48C4E oligoendopeptidase F 6.89702668053e-06 2.3308920584e-05 1.64118939035e-05 +UniRef50_V9VRW6 1.01024317528e-05 8.06657674151e-06 -2.03585501129e-06 +UniRef50_P69000 Methionine aminopeptidase 3.21085758449e-05 1.46511363955e-05 -1.74574394494e-05 +UniRef50_W3XFA1 6.56847886425e-05 3.34728779988e-05 -3.22119106437e-05 +UniRef50_G2DTB6 2.91432466295e-05 3.76755951594e-05 8.5323485299e-06 +UniRef50_UPI000476FFD2 ABC transporter permease 3.71039723924e-05 0.000308177028173 0.000271073055781 +UniRef50_R5AEA5 Mg chelatase subunit ChlI 0.00010984073391 0.000123219765733 1.3379031823e-05 +UniRef50_A3PN05 AAA ATPase 0.00359766749321 0.00102517479797 -0.00257249269524 +UniRef50_Q8CPF5 Competence damage inducible protein cinA 0.0107119571584 0.00328177633201 -0.00743018082639 +UniRef50_Q62JH0 Probable allantoicase 1 0.000561652021897 0.00019218006846 -0.000369471953437 +UniRef50_UPI00029A69ED cytochrome D ubiquinol oxidase subunit I 5.41843034317e-06 4.6270300692e-06 -7.9140027397e-07 +UniRef50_Q163Q7 NADH quinone oxidoreductase chain E 0.0019474412232 0.00019492851828 -0.00175251270492 +UniRef50_L8UAB9 0.000596236424086 0.000461585564471 -0.000134650859615 +UniRef50_E4ZDG9 0.000177779900556 0.00298042064289 0.00280264074233 +UniRef50_Q9RWD6 Histidine biosynthesis bifunctional protein HisIE 7.86921459788e-06 0.0383623957438 0.0383545265292 +UniRef50_L0DG52 Plasmid pRiA4b ORF 3 like protein 5.61486672853e-06 8.48735501021e-06 2.87248828168e-06 +UniRef50_A0A038HZQ1 TRAP transporter, DctM like membrane domain protein 1.63473293198e-05 2.99788110195e-05 1.36314816997e-05 +UniRef50_D3PQT0 GntR family transcriptional regulator 9.98640182185e-05 0.0193876752654 0.0192878112472 +UniRef50_UPI000252BB4B PREDICTED 2.71327722017e-05 1.02713576566e-05 -1.68614145451e-05 +UniRef50_W5P358 0.000446052229735 0.000914278031195 0.00046822580146 +UniRef50_UPI000248DC75 coenzyme PQQ synthesis D 0.000165677315042 9.31906359365e-05 -7.24866791055e-05 +UniRef50_D6X9W8 7.48074100732e-06 0.000431119277652 0.000423638536645 +UniRef50_H7PTJ4 1.10769098286e-05 8.91828124211e-05 7.81059025925e-05 +UniRef50_F3P3J8 ABC transport system, ATP binding protein 7.78856923336e-05 0.00528017904842 0.00520229335609 +UniRef50_A1W4G0 Peptidyl tRNA hydrolase 0.00177296057255 0.00397638065773 0.00220342008518 +UniRef50_B2VGJ3 Undecaprenyl diphosphatase 0.000136398723153 1.63111161787e-05 -0.000120087606974 +UniRef50_Q5LI12 Orotate phosphoribosyltransferase 2.35182702902e-05 0.00373377385895 0.00371025558866 +UniRef50_C6SU74 0.00139217855268 0.000553718822241 -0.000838459730439 +UniRef50_P13254 Methionine gamma lyase 2.48121756659e-05 1.81668953318e-05 -6.6452803341e-06 +UniRef50_UPI00047299A3 ribose ABC transporter permease 0.000105887828451 0.000396398262003 0.000290510433552 +UniRef50_UPI0003A95AEA outer membrane specific lipoprotein transporter subunit LolC 5.55947455382e-05 3.21292874096e-05 -2.34654581286e-05 +UniRef50_J9P159 0.000144794009571 0.000199774452129 5.4980442558e-05 +UniRef50_J9P154 4.41084522678e-05 6.90142849256e-05 2.49058326578e-05 +UniRef50_V4IPG8 4.85868155729e-05 0.000990246758972 0.000941659943399 +UniRef50_A8LRM2 Cyclopropane fatty acyl phospholipid synthase 0.0065076016993 0.00359761266482 -0.00290998903448 +UniRef50_A0A024C3E3 Chemotaxis protein 0.0002575136657 0.00357581125079 0.00331829758509 +UniRef50_A6LX83 0.000963235291789 0.0089036895237 0.00794045423191 +UniRef50_Q6ACB0 Adenylosuccinate synthetase 8.81393748779e-06 0.00157007814884 0.00156126421135 +UniRef50_Q1GPC0 Adenylate kinase 0.00430389203933 0.000343107303681 -0.00396078473565 +UniRef50_Q9CG80 DNA topoisomerase 1 0.000403560207721 0.00631382858999 0.00591026838227 +UniRef50_UPI0004777C32 glutamine amidotransferase 1.29548783282e-05 0.000137053244503 0.000124098366175 +UniRef50_X1EYE5 Marine sediment metagenome DNA, contig 5.79846479806e-05 3.00052660746e-05 -2.7979381906e-05 +UniRef50_Q98I87 Carbamoyl phosphate synthase large chain 1.98996469225e-05 1.521406373e-05 -4.6855831925e-06 +UniRef50_I3THI3 1.48045422185e-05 1.50694436784e-05 2.649014599e-07 +UniRef50_A7HQ34 Phosphate ABC transporter, periplasmic binding protein 4.78744612236e-06 6.87137539019e-06 2.08392926783e-06 +UniRef50_P0A966 Chemotaxis protein CheW 0.000778781722001 0.000352968173539 -0.000425813548462 +UniRef50_UPI000237708B glycerol 3 phosphate ABC transporter ATP binding protein 5.42349780944e-06 8.10033014743e-06 2.67683233799e-06 +UniRef50_Q54EW1 Serine hydroxymethyltransferase 2 4.23086521099e-05 0.000107918778212 6.56101261021e-05 +UniRef50_Q9KBM8 Cobyrinic acid A,C diamide synthase 1.15566399624e-05 0.000148468090337 0.000136911450375 +UniRef50_K0CGP1 TENA THI 4 family 0.000710501875895 0.00415082416175 0.00344032228585 +UniRef50_Q8DX74 ABC transporter, ATP binding protein 0.000959954177836 0.000196877803461 -0.000763076374375 +UniRef50_UPI00036C4041 hypothetical protein 2.7053667057e-06 4.49030705795e-06 1.78494035225e-06 +UniRef50_Q54GJ2 Bifunctional purine biosynthetic protein purD 2.41840108691e-06 3.49880062847e-06 1.08039954156e-06 +UniRef50_R4REY9 Pyrazinamidase nicotinamidase PncA 0.000302796247737 0.000279921047585 -2.2875200152e-05 +UniRef50_A6LRA0 Guanine specific ribonuclease N1 and T1 0.000475793368374 0.00115194776431 0.000676154395936 +UniRef50_P76034 0.00302023652592 0.00109856163522 -0.0019216748907 +UniRef50_P76035 0.00320916495316 0.000867475708581 -0.00234168924458 +UniRef50_Q6GDM0 0.00843707371088 0.00362532752967 -0.00481174618121 +UniRef50_Q5HF86 Glyceraldehyde 3 phosphate dehydrogenase 2 0.015148917976 0.00363234353107 -0.0115165744449 +UniRef50_O26931 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0013846452866 2.88738954623e-05 -0.00135577139114 +UniRef50_U3T7G8 6.96040544937e-05 0.00443472101866 0.00436511696417 +UniRef50_A6LTU9 Resolvase, N terminal domain 0.000431327811601 0.00138625298257 0.000954925170969 +UniRef50_UPI0004792045 DEAD DEAH box helicase 1.91180646816e-06 1.82407005756e-05 1.63288941074e-05 +UniRef50_B2HTJ9 Anti anti sigma regulatory factor 0.00145210786441 0.00428830275183 0.00283619488742 +UniRef50_B2A4R9 Phosphoglucosamine mutase 5.06990621184e-06 3.1508121524e-05 2.64382153122e-05 +UniRef50_Q3IVD4 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.00171005078159 0.000472246814405 -0.00123780396719 +UniRef50_UPI000427273C preprotein translocase subunit SecA 3.17802617962e-06 1.32644384505e-05 1.00864122709e-05 +UniRef50_A6LXB8 SCP like extracellular 0.000229707498285 0.00239302949961 0.00216332200133 +UniRef50_R5XB78 0.000157943928393 0.00211937101687 0.00196142708848 +UniRef50_D8U956 3.46347446329e-05 5.97579878872e-06 -2.86589458442e-05 +UniRef50_A7N2M2 Protoheme IX farnesyltransferase 1 6.49452486883e-06 1.40306366026e-05 7.53611173377e-06 +UniRef50_M9RPB0 UPF0393 family membrane protein 0.00618906983395 0.00188156913798 -0.00430750069597 +UniRef50_Q9FW53 Putative protoporphyrinogen oxidase 0.000201803437217 0.000157222735682 -4.4580701535e-05 +UniRef50_C4J5G1 0.000128132175077 3.93460475287e-06 -0.000124197570324 +UniRef50_Q28JJ5 Flagellar protein putative 1.87063791113e-05 1.17073489624e-05 -6.9990301489e-06 +UniRef50_P41363 Thermostable alkaline protease 6.97273449661e-06 2.21005485033e-05 1.51278140067e-05 +UniRef50_X5RU17 0.000210295734616 5.93260802245e-05 -0.000150969654392 +UniRef50_S9S7R4 1.77902844191e-05 2.28206127345e-05 5.0303283154e-06 +UniRef50_A6LVN7 0.000677586919957 0.00651350316593 0.00583591624597 +UniRef50_R7XG30 5.04541110072e-05 5.4659955746e-06 -4.49881154326e-05 +UniRef50_X0Y3X4 Marine sediment metagenome DNA, contig 5.23268742543e-05 4.71128011562e-05 -5.2140730981e-06 +UniRef50_I3TQH5 HNH endonuclease family protein 0.00717696135887 0.000642599110623 -0.00653436224825 +UniRef50_Q5HPH6 Prephenate dehydrogenase 0.0106608536183 0.00118536247938 -0.00947549113892 +UniRef50_C6XPM3 2.81851876881e-06 4.30707256929e-06 1.48855380048e-06 +UniRef50_B1KWF3 0.00123313566923 0.00142895179933 0.0001958161301 +UniRef50_UPI000262970F alpha L arabinofuranosidase 0.000205586593601 6.25504836567e-05 -0.000143036109944 +UniRef50_UPI00047AAC54 DNA polymerase I 1.61536737415e-06 4.44410997059e-05 4.28257323318e-05 +UniRef50_UPI00038323B5 PREDICTED 2.61652226623e-05 1.90923152515e-05 -7.0729074108e-06 +UniRef50_M9REP5 Penicillin binding protein2 0.00692969959659 0.00304192457112 -0.00388777502547 +UniRef50_A3M202 Carboxy terminal protease 0.000191164758928 0.00725662379234 0.00706545903341 +UniRef50_J9P1D4 1.01014888344e-05 5.77504459399e-05 4.76489571055e-05 +UniRef50_Q8XJK8 Guanylate kinase 0.00109420642018 0.000560437882784 -0.000533768537396 +UniRef50_Q8X844 Fructoselysine 6 phosphate deglycase 0.00301774382229 0.00177232106249 -0.0012454227598 +UniRef50_F4D464 Heavy metal translocating P type ATPase 0.000197621084868 0.00530656042986 0.00510893934499 +UniRef50_Q2W3H2 D amino acid dehydrogenase small subunit 3.2048686598e-05 2.29979031713e-05 -9.0507834267e-06 +UniRef50_K2A0P8 Inner membrane translocator 0.00145959006237 9.80412732766e-05 -0.00136154878909 +UniRef50_UPI00022CA89F PREDICTED 4.4807435369e-05 2.68123339471e-05 -1.79951014219e-05 +UniRef50_A7ZMR8 Transposase, IS605 family 0.00147908675058 0.000779519785449 -0.000699566965131 +UniRef50_Q8XCY9 Protease ElaD 0.00191455696406 0.000779165884896 -0.00113539107916 +UniRef50_U7DMJ8 Flagellar basal body rod modification protein FlgD 0.000898381617774 0.000260190929686 -0.000638190688088 +UniRef50_A0A023XN60 Spermidine putrescine transport system permease protein potC 0.000223805922247 0.000921838309754 0.000698032387507 +UniRef50_UPI0003C103D9 PREDICTED 0.000393390152011 4.02979356687e-05 -0.000353092216342 +UniRef50_W5X8M6 Homoserine dehydrogenase 1.87872585912e-05 3.20703056351e-05 1.32830470439e-05 +UniRef50_M9VAR2 0.000503978548825 0.00340049884426 0.00289652029543 +UniRef50_UPI0003670873 hypothetical protein, partial 0.000136683675816 0.00119712724519 0.00106044356937 +UniRef50_UPI000366ECCB MULTISPECIES 8.97967102383e-06 0.000133153633221 0.000124173962197 +UniRef50_Q3IUU7 DNA directed RNA polymerase specialized sigma subunit, sigma24 0.0331832228284 0.00430754949409 -0.0288756733343 +UniRef50_UPI00046D0748 2 keto 3 deoxy L rhamnonate aldolase, partial 0.000126711935884 0.000889012628662 0.000762300692778 +UniRef50_Q3HKE5 FecR protein 0.0039955992715 0.00163938384075 -0.00235621543075 +UniRef50_P0A0L2 Enterotoxin type A 0.0134150014143 0.00180499944881 -0.0116100019655 +UniRef50_S1K712 IS605 OrfB family transposase 0.00103226971812 0.000415939021406 -0.000616330696714 +UniRef50_W0PEX2 Dihydrodipicolinate synthase 0.00332419542578 0.000366853049924 -0.00295734237586 +UniRef50_G2I013 Transposase 0.000248725108225 0.000175312648115 -7.341246011e-05 +UniRef50_Q5SJP8 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 0.000102763880809 0.0523816249099 0.0522788610291 +UniRef50_D5ASB3 Membrane transport family protein 0.00741319360621 0.000663861639426 -0.00674933196678 +UniRef50_UPI000423B5F5 sarcosine oxidase subunit delta 0.000217300255826 0.000356387295322 0.000139087039496 +UniRef50_E4N4A3 1.10427116251e-05 0.000103345610278 9.23028986529e-05 +UniRef50_UPI0003B50367 hypothetical protein 9.7281574412e-06 5.33618109601e-05 4.36336535189e-05 +UniRef50_Q2FHH3 Ribosome maturation factor RimP 0.0295147241547 0.00491573670386 -0.0245989874508 +UniRef50_UPI0001C39687 ATPase component of various ABC type transport systems with duplicated ATPase domain, partial 1.86385471893e-05 5.68551590441e-06 -1.29530312849e-05 +UniRef50_UPI00041FE5DE zinc ABC transporter ATPase 3.96439769857e-06 1.20107658091e-05 8.04636811053e-06 +UniRef50_K7RPT1 4.96212687019e-05 0.00177307050577 0.00172344923707 +UniRef50_X0YLP3 Marine sediment metagenome DNA, contig 1.65434284138e-05 1.64830512418e-05 -6.0377172e-08 +UniRef50_UPI0003717CC9 sodium 0.000132606319274 2.32823287027e-05 -0.000109323990571 +UniRef50_A3M2F0 0.000352916143661 0.0102049948914 0.00985207874774 +UniRef50_T1W7J5 4.91546036791e-05 3.65218684466e-05 -1.26327352325e-05 +UniRef50_J0NEL3 0.00724673523958 0.000287048845821 -0.00695968639376 +UniRef50_UPI00036B01E6 hypothetical protein 2.85559061836e-06 4.2522445045e-05 3.96668544266e-05 +UniRef50_M2LA35 0.000583741219879 0.000297785752846 -0.000285955467033 +UniRef50_UPI0004689ED6 ferrichrome ABC transporter permease 1.34359639122e-05 1.0258765559e-05 -3.1771983532e-06 +UniRef50_Q5LWE9 Rhomboid family protein 0.000695668002448 0.000272600035571 -0.000423067966877 +UniRef50_C3NGW2 Ketol acid reductoisomerase 1.12143726387e-05 2.77345684509e-05 1.65201958122e-05 +UniRef50_X7EDB2 1.09586650227e-05 5.02648355404e-06 -5.93218146866e-06 +UniRef50_F5M536 XRE family transcriptional regulator 0.00654946333606 0.00107807450414 -0.00547138883192 +UniRef50_Q55463 Bicarbonate transport ATP binding protein CmpD 6.74821944333e-05 8.6515654743e-06 -5.8830628959e-05 +UniRef50_S5K777 Internalin 9.20789354518e-06 0.0012792767261 0.00127006883255 +UniRef50_I6TW59 0.0056589045175 0.00276568241958 -0.00289322209792 +UniRef50_A5VNN0 1.08926191229e-05 1.54761375906e-05 4.5835184677e-06 +UniRef50_P76077 1,2 phenylacetyl CoA epoxidase, subunit A 0.00223156413766 0.00117109599435 -0.00106046814331 +UniRef50_A4VFR5 Ribonucleoside diphosphate reductase 0.000523215879325 0.000903939209908 0.000380723330583 +UniRef50_UPI00034B41D8 Fe S cluster assembly protein HesB 0.000449473779471 9.32497872641e-05 -0.000356223992207 +UniRef50_A6LWE7 Transcriptional regulator, Fis family 9.4766357036e-05 0.00228344123682 0.00218867487978 +UniRef50_P0AC51 Zinc uptake regulation protein 0.00102610931706 0.00275904829679 0.00173293897973 +UniRef50_P9WKE4 Pyruvate kinase 1.68732539655e-05 5.29097634188e-06 -1.15822776236e-05 +UniRef50_P39812 Glutamate synthase [NADPH] large chain 3.21189432824e-06 3.19832033431e-06 -1.357399393e-08 +UniRef50_UPI00046F30F3 hypothetical protein 0.000212340287376 3.01161751574e-05 -0.000182224112219 +UniRef50_H3UK96 ATP dependent deoxyribonuclease subunit A domain protein 0.00915378255813 0.00379707691317 -0.00535670564496 +UniRef50_A0A017SWC8 6.63376112847e-05 0.00015379963033 8.74620190453e-05 +UniRef50_Q650K7 Tyrosine tRNA ligase 3.47768127985e-05 0.00418568700696 0.00415091019416 +UniRef50_Q0FMK9 Replication protein C 5.68714750485e-05 1.75529785026e-05 -3.93184965459e-05 +UniRef50_UPI00047EEBF5 hypothetical protein 9.50468846879e-06 3.33140443482e-05 2.38093558794e-05 +UniRef50_U5RNQ9 Glucokinase 0.000464573712241 0.00404395658423 0.00357938287199 +UniRef50_L0ILT4 ABC type nitrate sulfonate bicarbonate transport system, permease component 0.000700434859726 0.000982329007516 0.00028189414779 +UniRef50_Q6FFD0 D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8 0.00123899075913 0.00560665563993 0.0043676648808 +UniRef50_F8HF16 Thiamine diphosphokinase 0.00466504872973 0.00123614442986 -0.00342890429987 +UniRef50_UPI000471BA5D ATPase 3.66818722405e-05 3.09256867018e-05 -5.7561855387e-06 +UniRef50_UPI000476F7F2 hypothetical protein 9.71264773401e-05 2.08448792847e-05 -7.62815980554e-05 +UniRef50_Q3Z8B4 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0157006901158 0.00517860614175 -0.0105220839741 +UniRef50_A6U6I4 FAD dependent pyridine nucleotide disulphide oxidoreductase 0.000209527392088 0.000206997690564 -2.529701524e-06 +UniRef50_Q6A735 Cell envelope related transcriptional attenuator 2.39212767365e-05 0.00128477962199 0.00126085834525 +UniRef50_A0A023RXV8 0.000261537636621 0.00543796499884 0.00517642736222 +UniRef50_F0Y4U6 Expressed protein 0.000169469990813 0.00129169055534 0.00112222056453 +UniRef50_R7G9F0 4.87530206984e-05 4.2980751452e-05 -5.7722692464e-06 +UniRef50_A0A023RXV6 0.000481897007041 0.0118230982726 0.0113412012656 +UniRef50_J9V1L0 0.00888473726768 0.000854272419507 -0.00803046484817 +UniRef50_UPI0003774EF4 hypothetical protein 3.58450949836e-06 4.62002643863e-06 1.03551694027e-06 +UniRef50_UPI0003AED3B9 PREDICTED 0.000470921408125 0.000778683596671 0.000307762188546 +UniRef50_A0A052J8X7 Oligopeptide ABC transporter, oligopeptide binding protein 4.40249420429e-06 1.04738650332e-05 6.07137082891e-06 +UniRef50_UPI00047E2B61 DNA methyltransferase 0.000104128870322 9.89941772117e-05 -5.1346931103e-06 +UniRef50_A5ULF2 Adenosylcobinamide amidohydrolase, CbiZ 0.0032148583585 0.0016112140852 -0.0016036442733 +UniRef50_UPI00037A1445 hypothetical protein 6.06315828902e-06 1.63005067134e-05 1.02373484244e-05 +UniRef50_UPI00036E83CD hypothetical protein, partial 3.97587398231e-05 9.73890199152e-06 -3.00198378316e-05 +UniRef50_A6LZS8 HAD superfamily hydrolase, subfamily IA, variant 1 0.000171584540393 0.00180043716586 0.00162885262547 +UniRef50_UPI000474ABAF isoleucine tRNA ligase 0.00170448257242 0.000418971848154 -0.00128551072427 +UniRef50_E8SJH3 Integral membrane protein 0.00970067557819 0.00695476385959 -0.0027459117186 +UniRef50_P0AC95 High affinity gluconate transporter 0.00192261196755 0.000578223225695 -0.00134438874185 +UniRef50_M4QUJ5 0.000139637233856 0.00375005775006 0.0036104205162 +UniRef50_UPI0003B7B681 nickel ABC transporter permease 0.000180603845939 7.03989240464e-05 -0.000110204921893 +UniRef50_UPI000475E454 MFS transporter 5.61145248101e-06 3.51726206583e-05 2.95611681773e-05 +UniRef50_Q9RWM7 0.000148901320747 0.0835845588562 0.0834356575355 +UniRef50_A0M024 Protein containing DUF124 0.00153354645499 0.00220309121995 0.00066954476496 +UniRef50_N8UCZ7 Magnesium translocating P type ATPase 0.000240911600266 0.00480856830784 0.00456765670757 +UniRef50_J9NU89 3.80233552218e-05 2.08262775748e-05 -1.7197077647e-05 +UniRef50_I4E0M5 Cation efflux family protein 0.00989111317363 0.00316904290592 -0.00672207026771 +UniRef50_A4VFK3 0.000596401883601 0.000279310896275 -0.000317090987326 +UniRef50_A0A016YJN0 MMPL family protein 8.33336319946e-05 0.00526023515738 0.00517690152539 +UniRef50_Q6ZD75 0.000308571653009 0.000114411747794 -0.000194159905215 +UniRef50_Q65H34 Shikimate dehydrogenase 3.23717772976e-05 0.0004165349257 0.000384163148402 +UniRef50_Q6MDR3 NADH quinone oxidoreductase subunit D 3.00233580135e-06 4.62083855544e-05 4.32060497531e-05 +UniRef50_UPI0004716349 integrase 4.87535767353e-05 2.73742658281e-05 -2.13793109072e-05 +UniRef50_G2HS60 TRAP transporter solute receptor 9.2928636489e-05 7.96227161421e-05 -1.33059203469e-05 +UniRef50_Q8DV44 Acetylglutamate kinase 0.00590988317307 0.00285018489997 -0.0030596982731 +UniRef50_Q9RVJ0 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 9.60524144667e-05 0.0570177969991 0.0569217445846 +UniRef50_B9KTM7 0.00193582558386 0.00359511164324 0.00165928605938 +UniRef50_K7E0S8 8.35110920989e-06 1.40408776366e-06 -6.94702144623e-06 +UniRef50_UPI000478D511 hypothetical protein 1.59958586913e-05 0.00454152294339 0.0045255270847 +UniRef50_Q1QTL2 Nucleoside diphosphate kinase 0.000130003765777 6.56278573416e-05 -6.43759084354e-05 +UniRef50_UPI000262552F EmrB QacA subfamily drug resistance transporter, partial 5.59845985871e-05 2.64946395537e-05 -2.94899590334e-05 +UniRef50_B9KW42 FAD dependent oxidoreductase 0.0138820631196 0.00538884799663 -0.00849321512297 +UniRef50_G7M1F6 Multi sensor signal transduction histidine kinase 0.000331847588427 0.00116321261494 0.000831365026513 +UniRef50_Y6NBB6 0.0112281191747 0.0012828956409 -0.0099452235338 +UniRef50_J9P4U3 8.2326250783e-05 1.17224873692e-05 -7.06037634138e-05 +UniRef50_UPI0004025C8B tagatose bisphosphate aldolase 5.05361071925e-06 3.63184993948e-05 3.12648886756e-05 +UniRef50_Q2KCH9 Probable chemotaxis protein methyltransferase 0.000174270673217 2.29105165071e-05 -0.00015136015671 +UniRef50_UPI00035F1E2E MULTISPECIES 0.00119580509536 4.72875564998e-05 -0.00114851753886 +UniRef50_Q6GHU5 Ribonuclease HIII 0.0155484360532 0.00534914040731 -0.0101992956459 +UniRef50_K0M0Z9 Iron regulated ABC transporter siderophore binding protein SirA 0.0143220182205 0.00145866881421 -0.0128633494063 +UniRef50_V4YZI7 4.15925829585e-05 0.00012579255787 8.41999749115e-05 +UniRef50_W5X9U5 Bifunctional protein GlmU 4.28751065089e-06 5.28955456913e-06 1.00204391824e-06 +UniRef50_P33644 Laccase domain protein YfiH 0.00219962930994 0.00240875810745 0.00020912879751 +UniRef50_C1E811 Predicted protein 0.000202807507518 6.80745068375e-05 -0.000134733000681 +UniRef50_UPI0003B61251 elongation factor P 1.58724389716e-05 2.11280382619e-05 5.2555992903e-06 +UniRef50_A1B9F5 DNA ligase 0.0020740888864 0.000207431210266 -0.00186665767613 +UniRef50_UPI0003B49C22 MarR family transcriptional regulator 0.000272038672753 4.43950858665e-05 -0.000227643586887 +UniRef50_B2V232 Flagellar export protein FliJ 0.000520670329449 0.00184844583174 0.00132777550229 +UniRef50_M1N377 Diguanylate cyclase 0.000102763880809 0.00139753529895 0.00129477141814 +UniRef50_I6SW52 Malonyl CoA ACP transacylase 0.00398381262397 0.00140631424058 -0.00257749838339 +UniRef50_Q9RUC2 Oxidoreductase, short chain dehydrogenase reductase family 0.000147840465605 0.0371434521586 0.036995611693 +UniRef50_B2HZE4 Cytidylate kinase 0.000492373028943 0.00754560511986 0.00705323209092 +UniRef50_D4Z2Y4 0.000339368421561 1.5468409678e-05 -0.000323900011883 +UniRef50_I0C3R4 Thiamin pyrophosphokinase 0.00619857081149 0.00107041456035 -0.00512815625114 +UniRef50_E9V1P4 PE PGRS family protein 0.000217582561448 0.000191329122411 -2.6253439037e-05 +UniRef50_P07954 Fumarate hydratase, mitochondrial 9.83162756624e-06 2.58259661878e-05 1.59943386216e-05 +UniRef50_A0A023RUB5 0.000374986081636 0.00874433124731 0.00836934516567 +UniRef50_Q2JL74 DNA directed RNA polymerase subunit alpha 1.07020396063e-05 3.7823781249e-05 2.71217416427e-05 +UniRef50_Q71ZI2 Probable nicotinate nucleotide adenylyltransferase 3.85385033408e-06 0.00373354447161 0.00372969062128 +UniRef50_UPI00046F1475 transcriptional regulator, partial 2.77794326871e-05 5.73429372194e-05 2.95635045323e-05 +UniRef50_M4X2C4 Vanillate porin OpdK 0.00100150367391 0.0014137892635 0.00041228558959 +UniRef50_I2DV60 Transcriptional regulator, GntR family 0.00063300503657 0.00012399581744 -0.00050900921913 +UniRef50_UPI0004725EBD chromosomal replication initiator protein DnaA, partial 8.82450172386e-06 1.03073482638e-05 1.48284653994e-06 +UniRef50_Q8RFY7 Glutamate 1 semialdehyde 2,1 aminomutase 8.65374496666e-06 1.657530443e-05 7.92155946334e-06 +UniRef50_L8E176 Internalin A 1.2878114461e-05 5.79033643673e-06 -7.08777802427e-06 +UniRef50_Q3JWB4 3.81322595143e-05 9.6418348109e-05 5.82860885947e-05 +UniRef50_W1Y5T8 Nitrate reductase, beta subunit 1.60649382197e-05 2.83156370672e-05 1.22506988475e-05 +UniRef50_Q83GV1 Glycine dehydrogenase 1.79240803869e-06 5.3784220458e-06 3.58601400711e-06 +UniRef50_UPI00036AFA97 hypothetical protein 1.94826634309e-05 2.65435474198e-07 -1.92172279567e-05 +UniRef50_G3XD94 UDP N acetyl D glucosamine 6 dehydrogenase 0.000887602463171 0.000569783997995 -0.000317818465176 +UniRef50_B2I0W8 8.93105651832e-05 0.00570271395887 0.00561340339369 +UniRef50_P0A2J2 High affinity branched chain amino acid transport system permease protein LivH 0.00353589679667 0.00063169348705 -0.00290420330962 +UniRef50_A3PJL0 Peptidoglycan binding domain 1 protein 0.00576297306678 0.000675954613344 -0.00508701845344 +UniRef50_UPI00037D66CB coproporphyrinogen III oxidase, partial 4.96210856061e-05 2.99837410483e-05 -1.96373445578e-05 +UniRef50_R6FXK3 0.000252484805529 0.00124248860634 0.000990003800811 +UniRef50_N6UDA5 6.24997613586e-05 4.34583201684e-05 -1.90414411902e-05 +UniRef50_P52667 HTH type transcriptional regulator EstR 0.000135461479253 0.00699604199659 0.00686058051734 +UniRef50_K2BGA3 1.05155749776e-05 1.60302056189e-05 5.5146306413e-06 +UniRef50_B1ZP10 Urea ABC transporter, ATP binding protein UrtD 0.00680865658134 0.000861470399378 -0.00594718618196 +UniRef50_UPI0003B52280 diguanylate cyclase 1.91885940505e-05 0.000204871374582 0.000185682780532 +UniRef50_Q8K9W2 DNA gyrase subunit A 6.49157712605e-06 1.04124992023e-05 3.92092207625e-06 +UniRef50_B0V5B6 Phenylacetaldehyde dehydrogenase 8.87506243427e-05 0.00636146319684 0.0062727125725 +UniRef50_UPI00037B050D MULTISPECIES 1.74275664786e-05 6.1506398533e-05 4.40788320544e-05 +UniRef50_K4NDV9 0.000115556935367 0.00372855498616 0.00361299805079 +UniRef50_A5UL24 0.00367194247487 0.000463848228053 -0.00320809424682 +UniRef50_A6LXE2 Efflux transporter, RND family, MFP subunit 0.000546340833125 0.000374157674571 -0.000172183158554 +UniRef50_B0VDR8 0.000118706285809 0.00514079455936 0.00502208827355 +UniRef50_A8LHW6 Penicillin binding protein 0.00772621587514 0.0014045097778 -0.00632170609734 +UniRef50_UPI000305920B biotin biosynthesis protein BioY 1.09816038195e-05 3.63753007754e-05 2.53936969559e-05 +UniRef50_I4E1E6 0.00376732518322 0.00480682951834 0.00103950433512 +UniRef50_UPI0003503D61 PREDICTED 0.00017335053984 0.000170760246426 -2.590293414e-06 +UniRef50_D2NTN6 Signal transduction histidine kinase 0.000366491251313 0.00145566027763 0.00108916902632 +UniRef50_UPI0003FCDB23 membrane protein 8.94989750349e-06 2.23826321673e-05 1.34327346638e-05 +UniRef50_Q5HQ98 Phosphoribosylglycinamide formyltransferase 0.0168769251885 0.00308700566957 -0.0137899195189 +UniRef50_B8F444 0.000152007780746 0.00820662875421 0.00805462097346 +UniRef50_D8LK39 Short chain dehydrogenase 6.10521025838e-06 0.00062102422602 0.000614919015762 +UniRef50_UPI00016C0059 50S ribosomal protein L24 0.000127631864592 8.0886410988e-05 -4.6745453604e-05 +UniRef50_UPI000467D444 phosphate transporter 5.80489080848e-06 7.72914086334e-06 1.92425005486e-06 +UniRef50_Q39F07 Glutamate tRNA ligase 2.94854661862e-06 1.20306438364e-05 9.08209721778e-06 +UniRef50_A0A017HAI8 0.00331007571179 0.000279463723626 -0.00303061198816 +UniRef50_K7T243 0.000238973645218 9.40621126571e-05 -0.000144911532561 +UniRef50_A0A058ZA26 8.7249768219e-06 4.91238425354e-06 -3.81259256836e-06 +UniRef50_P0ABU1 1,4 Dihydroxy 2 naphthoyl CoA synthase 0.0284493235425 0.0158134331444 -0.0126358903981 +UniRef50_R6ZTJ7 1.21105370786e-05 1.03273943381e-05 -1.7831427405e-06 +UniRef50_T1ZU11 0.000838857753003 0.00549669112408 0.00465783337108 +UniRef50_Q8REM9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.36757193968e-05 1.07800999455e-05 -2.8956194513e-06 +UniRef50_Q97GH9 Acetylornithine aminotransferase 1.37897579593e-05 1.98676281647e-05 6.0778702054e-06 +UniRef50_A0A023RVA0 Haloacid dehalogenase 5.67648103501e-05 0.00870508072153 0.00864831591118 +UniRef50_C1DJ65 0.000154090873203 0.000140942059456 -1.3148813747e-05 +UniRef50_R3SKR3 0.000111743399427 3.19255147367e-05 -7.98178846903e-05 +UniRef50_Q48B49 ISPsy24, transposase orfB 0.00295081850723 0.00440344626986 0.00145262776263 +UniRef50_UPI000381307B hypothetical protein 5.35315466872e-05 4.55572061241e-05 -7.9743405631e-06 +UniRef50_B9KRJ2 Transcriptional regulator, IclR family 0.000576539595526 0.000237202172853 -0.000339337422673 +UniRef50_B2JYC2 HesB YadR YfhF family protein 0.000248651475888 6.58688227141e-05 -0.000182782653174 +UniRef50_UPI00047A2796 hypothetical protein, partial 0.000105183743514 2.81257607522e-05 -7.70579827618e-05 +UniRef50_UPI0003C18538 4.56708677195e-05 0.000105822004043 6.01511363235e-05 +UniRef50_W6A6C9 Citrate lyase subunit alpha 0.00378005267608 0.00215968666905 -0.00162036600703 +UniRef50_F5M379 CheW3 0.0137547842426 0.00587248523315 -0.00788229900945 +UniRef50_D5DEH5 Bacillolysin 2.11429473721e-05 0.000618056605518 0.000596913658146 +UniRef50_P77348 Periplasmic murein peptide binding protein 0.00304652406031 0.00103832243292 -0.00200820162739 +UniRef50_Q2FJW9 0.00192998406323 0.00013520840531 -0.00179477565792 +UniRef50_P11347 Nitrogenase molybdenum iron protein beta chain 0.000307784916058 0.000325276748412 1.7491832354e-05 +UniRef50_W1YLG1 0.000803161678413 0.00228861378296 0.00148545210455 +UniRef50_UPI00016C3D30 hypothetical protein 7.46074339526e-05 0.0139935765673 0.0139189691333 +UniRef50_G4VUH5 Conjugative transfer pilus assembly protein 0.000107873417274 9.41871668195e-05 -1.36862504545e-05 +UniRef50_G5QPS2 0.000266397317583 0.000425430010191 0.000159032692608 +UniRef50_J3IPS9 2.62487114046e-05 0.000297021000812 0.000270772289407 +UniRef50_P45545 0.00146575482499 0.000193862169709 -0.00127189265528 +UniRef50_A4VWT1 0.00061233099668 0.0134107443322 0.0127984133355 +UniRef50_P23890 Transcriptional activator CadC 0.0027910002098 0.000687654369234 -0.00210334584057 +UniRef50_UPI00046617E5 thioredoxin 3.64438299837e-05 5.25195713553e-05 1.60757413716e-05 +UniRef50_Q9ZG89 GTP binding protein EngB 0.0129923233676 0.00390450770705 -0.00908781566055 +UniRef50_B7I5N1 Zn dependent oligopeptidase 0.000116597664465 0.00474002723601 0.00462342957154 +UniRef50_UPI0003F09CB7 PREDICTED 4.43740609412e-06 1.49376492962e-05 1.05002432021e-05 +UniRef50_P0ADN4 UPF0438 protein YifE 0.000775656141478 0.000952634532885 0.000176978391407 +UniRef50_A0A031QGZ5 0.000143029209883 0.00025614396695 0.000113114757067 +UniRef50_B4RZS0 Succinyl diaminopimelate desuccinylase 1 3.0300776468e-06 5.70110616351e-06 2.67102851671e-06 +UniRef50_O33465 Methionine synthase 4.19296118488e-05 6.27561480633e-05 2.08265362145e-05 +UniRef50_K2FJE0 Response regulator receiver protein 0.000285162524193 0.000504480373429 0.000219317849236 +UniRef50_Q1QTJ4 Methionyl tRNA formyltransferase 8.12685624816e-06 1.83195841386e-05 1.01927278904e-05 +UniRef50_M1MD21 Lytic transglycosylase catalytic 0.000345032049687 0.00117049807793 0.000825466028243 +UniRef50_P76446 Protein Rtn 0.0034793960324 0.00115444812543 -0.00232494790697 +UniRef50_G8PUC6 9.93817398958e-05 2.11659674342e-05 -7.82157724616e-05 +UniRef50_UPI000360A87F hypothetical protein 4.50141121414e-06 8.45077293744e-05 8.00063181603e-05 +UniRef50_Q9JTW6 Co chaperone protein HscB homolog 0.000270922958506 0.00424704449976 0.00397612154125 +UniRef50_P0A9H4 Lysine decarboxylase, inducible 0.0031341605595 0.000812816271453 -0.00232134428805 +UniRef50_Q5QX02 N acetyl gamma glutamyl phosphate reductase 6.01250188139e-06 6.4573558223e-06 4.4485394091e-07 +UniRef50_Q9RVG1 Probable 3 hydroxybutyryl CoA dehydrogenase 0.000185868265068 0.0454626415195 0.0452767732544 +UniRef50_U2Z7R5 Anti sigma B factor RsbT 5.08938903002e-06 5.9289118935e-05 5.4199729905e-05 +UniRef50_X5DTS0 PTS system sugar specific permease protein 8.36379591226e-05 0.00362617651137 0.00354253855225 +UniRef50_P57936 Triosephosphate isomerase 0.00349031231559 0.000251341071176 -0.00323897124441 +UniRef50_G0N365 9.20869373998e-06 5.38041414007e-06 -3.82827959991e-06 +UniRef50_Q2W170 3.11094831836e-05 1.07241739723e-05 -2.03853092113e-05 +UniRef50_B7V9E6 AMP nucleosidase 0.000157311310104 0.00013262726281 -2.4684047294e-05 +UniRef50_A0A037Z329 Flagellar biosynthesis protein FlhA 0.000480361863589 0.00148183985915 0.00100147799556 +UniRef50_A0B4T1 Short chain dehydrogenase reductase SDR 0.00018718313497 0.0176674296057 0.0174802464707 +UniRef50_UPI000478334E hypothetical protein, partial 0.000730618042937 0.000569742839604 -0.000160875203333 +UniRef50_A5IR45 0.0194020970852 0.000942845180321 -0.0184592519049 +UniRef50_S5XW27 0.0135101236397 0.00421239778872 -0.00929772585098 +UniRef50_UPI00046741CB quinone oxidoreductase, partial 7.43954424757e-06 2.29844826571e-05 1.55449384095e-05 +UniRef50_A5IR41 0.0130205193123 0.00202136259761 -0.0109991567147 +UniRef50_C7BXR1 0.000381298978638 0.00351945167646 0.00313815269782 +UniRef50_UPI000373FE9D hypothetical protein 1.64721712368e-05 1.79851952024e-05 1.5130239656e-06 +UniRef50_UPI00037D3E99 hypothetical protein 0.00012963808578 4.69243360357e-05 -8.27137497443e-05 +UniRef50_A4VYJ7 DNA repair protein RecO 0.00374232310789 0.00477747202929 0.0010351489214 +UniRef50_UPI00046FC1BE PTS mannose transporter subunit IIB 3.41280788618e-06 4.61560606141e-06 1.20279817523e-06 +UniRef50_A7X1C4 UDP N acetylmuramoylalanine D glutamate ligase 0.0187003351303 0.00713813388701 -0.0115622012433 +UniRef50_A3M783 Putative TonB dependent receptor 0.000178548589662 0.00598956145748 0.00581101286782 +UniRef50_I6TYR1 0.00247867012715 0.000363094309672 -0.00211557581748 +UniRef50_K0H8L8 Formimidoylglutamase 0.000136276530269 0.00616160535403 0.00602532882376 +UniRef50_P29930 Cobyrinic acid a,c diamide adenosyltransferase 0.0107103019029 0.00543566601178 -0.00527463589112 +UniRef50_D7GDB8 Permease protein of oligopeptide ABC transporter 0.000151398123869 0.00516861980168 0.00501722167781 +UniRef50_UPI000410414C hypothetical protein 0.000247731283068 3.04122785391e-05 -0.000217319004529 +UniRef50_D5X7D2 Stage V sporulation protein AD 0.00011124341518 0.00109489584666 0.00098365243148 +UniRef50_W9B8I4 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.00417001517855 0.00222924469132 -0.00194077048723 +UniRef50_S5YWN2 0.00512898554626 0.00177271701881 -0.00335626852745 +UniRef50_Q2NHM9 MtaC2 0.00247211625146 0.000239122838212 -0.00223299341325 +UniRef50_R6JPB3 0.00606382333827 0.00383666240486 -0.00222716093341 +UniRef50_Q9RY97 0.000229707498285 0.0420353587575 0.0418056512592 +UniRef50_K8B5J6 Sulfate permease 2.60644245378e-05 2.20963084702e-05 -3.9681160676e-06 +UniRef50_U6HCK7 Mitochondrial ribosomal protein l11 3.18321071149e-05 5.97194916889e-05 2.7887384574e-05 +UniRef50_A7HM68 Lysine tRNA ligase 7.23706188429e-06 9.69866522038e-06 2.46160333609e-06 +UniRef50_B3T0J2 4.43387943768e-05 5.09903875063e-05 6.6515931295e-06 +UniRef50_B1ZBH9 Binding protein dependent transport systems inner membrane component 0.0141605404619 0.00312199786369 -0.0110385425982 +UniRef50_UPI000203B2C5 PREDICTED 5.05078463076e-05 9.66116689802e-05 4.61038226726e-05 +UniRef50_A6M0R6 Methyl accepting chemotaxis sensory transducer 0.000459410793836 0.000434512545817 -2.4898248019e-05 +UniRef50_UPI00046D564F hypothetical protein 2.23194304348e-05 2.44025601401e-05 2.0831297053e-06 +UniRef50_A3PLS6 Nitrogenase molybdenum iron cofactor biosynthesis protein NifN 0.00224021747818 0.000209284767297 -0.00203093271088 +UniRef50_Q9JV28 UDP N acetylenolpyruvoylglucosamine reductase 0.000271471385544 0.00479985929473 0.00452838790919 +UniRef50_F0RNS6 0.000135623708568 0.00498379983779 0.00484817612922 +UniRef50_B1JXR9 3 phosphoshikimate 1 carboxyvinyltransferase 0.0030300075275 0.00460180913716 0.00157180160966 +UniRef50_D0B1T7 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 0.00276624981786 0.000778583906055 -0.0019876659118 +UniRef50_F8HBY9 D alanyl D alanine carboxypeptidase DacA 0.00854188152757 0.00470414064406 -0.00383774088351 +UniRef50_P75838 Ribosomal protein S12 methylthiotransferase accessory factor YcaO 0.00201328583389 0.00011649574169 -0.0018967900922 +UniRef50_UPI0003710A9E hypothetical protein 3.42738362583e-05 1.63026133433e-05 -1.7971222915e-05 +UniRef50_Q49YE0 Putative universal stress protein SSP1056 0.0381019594888 0.00113785739709 -0.0369641020917 +UniRef50_UPI00046F5838 hypothetical protein 4.65396573663e-06 2.34356433979e-05 1.87816776613e-05 +UniRef50_A4VNP3 Ribosomal RNA large subunit methyltransferase E 2.22403600905e-05 0.000451756992669 0.000429516632579 +UniRef50_Q3JEP4 Adenine phosphoribosyltransferase 3.73398606577e-05 3.921092488e-05 1.8710642223e-06 +UniRef50_S6BAJ6 Phosphoenolpyruvate protein phosphotransferase 0.000352476453436 0.000175519136561 -0.000176957316875 +UniRef50_UPI0003634116 hypothetical protein 2.12455709734e-05 0.000133357914252 0.000112112343279 +UniRef50_P45416 2 dehydro 3 deoxygluconokinase 4.03380285381e-05 3.62147446783e-05 -4.1232838598e-06 +UniRef50_D8JN46 Ribosomal RNA large subunit methyltransferase J 0.000403968359059 0.0119263250846 0.0115223567255 +UniRef50_UPI0003F071E0 PREDICTED 1.55681318201e-06 2.12201541809e-05 1.96633409989e-05 +UniRef50_UPI000473748C RNA polymerase sigma factor RpoE, partial 0.000306928638757 0.000274115238615 -3.2813400142e-05 +UniRef50_UPI000364A43A hypothetical protein 0.000389899138683 0.000108419002321 -0.000281480136362 +UniRef50_S0FU34 0.000142906913618 3.25735682869e-05 -0.000110333345331 +UniRef50_UPI0002628B07 chemotaxis protein 8.22664398117e-05 8.71160732363e-06 -7.35548324881e-05 +UniRef50_W4UBF2 0.000775656141478 0.00146438035634 0.000688724214862 +UniRef50_Q72NI2 Adenylate kinase 1.0109307041e-05 1.68689048786e-05 6.7595978376e-06 +UniRef50_B2V5F8 ABC transporter, permease protein 0.000150392824239 0.00097236700679 0.000821974182551 +UniRef50_A7GM37 ATP dependent helicase nuclease subunit A 1.34646912792e-05 0.00020920589456 0.000195741203281 +UniRef50_UPI00047B0772 hypothetical protein 1.64317328389e-05 3.80240703305e-06 -1.26293258058e-05 +UniRef50_UPI000023CB21 hypothetical protein FG03961.1 1.99796886439e-06 1.28710248065e-05 1.08730559421e-05 +UniRef50_G2DUQ1 0.00116748243974 0.00188500024592 0.00071751780618 +UniRef50_U4V185 3.29660119324e-05 3.97646479548e-05 6.7986360224e-06 +UniRef50_UPI00037D808D hypothetical protein 5.55384818328e-06 6.63333306831e-06 1.07948488503e-06 +UniRef50_Q4SPK5 Chromosome 16 SCAF14537, whole genome shotgun sequence 4.18268952613e-06 5.65921504708e-05 5.24094609447e-05 +UniRef50_UPI000378DA6C Cro Cl family transcriptional regulator 0.000127632568505 1.91813356963e-05 -0.000108451232809 +UniRef50_V8G168 0.000387094723116 0.000240747314022 -0.000146347409094 +UniRef50_I7DG40 Glutaredoxin like protein 0.000321727580236 9.77340382507e-05 -0.000223993541985 +UniRef50_Q7TUW5 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.49276014882e-05 1.30625408202e-05 -1.865060668e-06 +UniRef50_D2S8K3 4.90348795094e-05 0.000171963377846 0.000122928498337 +UniRef50_UPI0004561009 hypothetical protein PFL1_01934 8.73329464073e-05 4.58156026005e-05 -4.15173438068e-05 +UniRef50_UPI00036D6D03 hypothetical protein 0.000213424083342 0.000108427538078 -0.000104996545264 +UniRef50_Q2FZ95 Cell division protein FtsL 0.00750719668041 0.00488082571781 -0.0026263709626 +UniRef50_O26874 Conserved protein 0.00293914635062 0.000705699444334 -0.00223344690629 +UniRef50_C6B1R5 0.000906793591697 0.000260760956937 -0.00064603263476 +UniRef50_Q9RXD2 S layer like array related protein 0.000134496195558 0.0405853643418 0.0404508681462 +UniRef50_K2KNE0 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 5.64234542586e-05 5.38749785522e-05 -2.5484757064e-06 +UniRef50_A0A031H669 0.000361218689857 0.000338659683702 -2.2559006155e-05 +UniRef50_UPI00046687D5 hypothetical protein 2.26460989201e-05 4.07280291537e-05 1.80819302336e-05 +UniRef50_Q8CR42 0.0127424614757 0.00269513482299 -0.0100473266527 +UniRef50_D8TXA0 8.32366856429e-06 6.64450417279e-06 -1.6791643915e-06 +UniRef50_Q5UWH2 Dihydrolipoyl dehydrogenase 3 9.07273082519e-06 2.17368376482e-05 1.2664106823e-05 +UniRef50_D3HEP6 Glycosyl hydrolases family 25 0.00504380359101 0.0018616814278 -0.00318212216321 +UniRef50_UPI00036358BA MULTISPECIES 0.000102127141165 0.000106583978818 4.456837653e-06 +UniRef50_R7PXM1 0.00323537694379 0.000373112658173 -0.00286226428562 +UniRef50_F0MJV4 Fic family protein 0.000169557089412 0.00484363764456 0.00467408055515 +UniRef50_G7M7B2 Cell wall hydrolase autolysin 0.00058757237032 0.00171835300373 0.00113078063341 +UniRef50_UPI0002C378DF 3.77392201137e-05 2.99508845251e-05 -7.7883355886e-06 +UniRef50_UPI000474191D hypothetical protein, partial 8.76669476145e-06 2.80333822198e-05 1.92666874583e-05 +UniRef50_X6GHK4 0.000712364125459 2.13512444986e-05 -0.00069101288096 +UniRef50_A1B939 SufBD protein 0.00851433314888 0.000202966807698 -0.00831136634118 +UniRef50_UPI0003B6276B heme oxygenase 0.000222522502208 2.67531080934e-05 -0.000195769394115 +UniRef50_UPI00047A5C79 hypothetical protein 0.000330887514775 4.13576907693e-05 -0.000289529824006 +UniRef50_Q9X4A7 Aminopeptidase PepS 0.00082040041286 0.00574308618846 0.0049226857756 +UniRef50_Q59258 Citrate synthase 6.56313169784e-06 2.9250951951e-05 2.26878202532e-05 +UniRef50_G3VAE4 9.6521684811e-06 3.14443169206e-07 -9.33772531189e-06 +UniRef50_UPI0003675D9F hypothetical protein 7.64423464683e-05 8.86073252375e-05 1.21649787692e-05 +UniRef50_I6TZP9 0.00173375642168 0.00135661747762 -0.00037713894406 +UniRef50_C0AXX7 1.63315694798e-05 7.59499667569e-05 5.96183972771e-05 +UniRef50_UPI000470AA89 excinuclease ABC subunit C 3.67047242345e-06 1.67893737923e-06 -1.99153504422e-06 +UniRef50_V9QTM2 Sugar ABC transporter substrate binding protein 0.000142626947925 0.000449157376054 0.000306530428129 +UniRef50_B8F6Y2 L fucose mutarotase 0.00118738011748 0.00199089913615 0.00080351901867 +UniRef50_I4DZ32 Transcriptional regulator homolog 0.00596871315487 0.0021603313054 -0.00380838184947 +UniRef50_UPI0003B5B687 hypothetical protein 4.34049711344e-06 7.58934387096e-06 3.24884675752e-06 +UniRef50_I1ES83 0.000189472225223 3.02285984705e-05 -0.000159243626752 +UniRef50_UPI000375CE7A hypothetical protein 1.19127155952e-05 2.19714098983e-05 1.00586943031e-05 +UniRef50_UPI00037C6964 hypothetical protein 5.92612019032e-05 0.000157094111867 9.78329099638e-05 +UniRef50_P67661 0.00197101421588 0.000268877121583 -0.0017021370943 +UniRef50_UPI0004656A3F hypothetical protein 8.9779180208e-05 1.1341217727e-05 -7.8437962481e-05 +UniRef50_Q8E6C2 0.000188115941288 0.000448423643278 0.00026030770199 +UniRef50_UPI00039C9CFD endoribonuclease L PSP 5.72403086017e-05 7.11883674033e-05 1.39480588016e-05 +UniRef50_G7M0U9 Short chain dehydrogenase reductase SDR 0.000154075913818 0.00122799088034 0.00107391496652 +UniRef50_I0H6C5 7.84765897393e-06 7.68029581106e-06 -1.6736316287e-07 +UniRef50_Q87JM4 Macrolide export ATP binding permease protein MacB 2.07128529163e-06 1.90765594437e-05 1.70052741521e-05 +UniRef50_K1E5Y4 2.07527503164e-06 2.17400149488e-05 1.96647399172e-05 +UniRef50_A6M300 0.000181483648491 0.00202722999723 0.00184574634874 +UniRef50_Q9HVX2 Putative GTP cyclohydrolase 1 type 2 0.0012498306902 3.02005793768e-05 -0.00121963011082 +UniRef50_A0A018D403 0.00024832531728 6.03674852426e-05 -0.000187957832037 +UniRef50_O69077 Aspartokinase 0.0073249904786 0.00291967624779 -0.00440531423081 +UniRef50_UPI00038109FF hypothetical protein 2.36473710193e-05 5.65197891308e-05 3.28724181115e-05 +UniRef50_R6JM85 L serine dehydratase 1.58609077523e-05 3.72512533336e-05 2.13903455813e-05 +UniRef50_UPI0003B79E51 ATPase P 2.26840390365e-06 3.41247446427e-06 1.14407056062e-06 +UniRef50_UPI0003B531E1 cell division protein FtsE 3.28760655411e-05 8.61413447351e-05 5.3265279194e-05 +UniRef50_B9AD59 0.00173290851276 0.000605119126568 -0.00112778938619 +UniRef50_A6QII5 0.00481197339144 0.00188500024592 -0.00292697314552 +UniRef50_D8JRT9 Peptidase S15 2.40311109468e-05 3.57069913224e-05 1.16758803756e-05 +UniRef50_UPI0003C1B2C2 PREDICTED 4.02743669605e-06 2.76399753623e-06 -1.26343915982e-06 +UniRef50_U5MNB4 ComEC Rec2 like protein 0.000526061031377 0.000994448960014 0.000468387928637 +UniRef50_M1MHX3 Transcriptional regulator 0.000291120299886 0.000396398262003 0.000105277962117 +UniRef50_Q8CN85 Copper export proteins 0.00416544358147 0.00665150916532 0.00248606558385 +UniRef50_Q8Z9C3 Poly polymerase I 0.00214416578597 0.000305177775745 -0.00183898801023 +UniRef50_Q4A263 Putative membrane protein 5.64316707281e-05 1.59997834917e-05 -4.04318872364e-05 +UniRef50_UPI0003162EAB hypothetical protein 4.62102484459e-06 1.55582707478e-05 1.09372459032e-05 +UniRef50_C0QR28 Biotin synthase 3.06764826482e-06 2.72090432723e-05 2.41413950075e-05 +UniRef50_Q1LF13 Putrescine transporter subunit 0.000343217592092 0.000596599404435 0.000253381812343 +UniRef50_A6E2L5 0.00147090805718 0.00275892599174 0.00128801793456 +UniRef50_T0UNE5 8.35859699479e-05 1.89216650818e-05 -6.46643048661e-05 +UniRef50_P30851 Ribonuclease R 0.00341109340536 0.00183637485414 -0.00157471855122 +UniRef50_Q6GDQ0 ATP dependent Clp protease ATP binding subunit ClpL 0.0170446599511 0.00917682097626 -0.00786783897484 +UniRef50_Q9Z9G7 Glutamyl tRNA amidotransferase subunit A 4.65439644437e-06 3.62192851195e-05 3.15648886751e-05 +UniRef50_D8TTJ3 1.66348275902e-05 2.18216501135e-05 5.1868225233e-06 +UniRef50_W1DFX7 Aspartokinase 0.001629644029 0.000334116956942 -0.00129552707206 +UniRef50_UPI000477F71F aldehyde dehydrogenase 3.08882068764e-05 2.31301082623e-05 -7.7580986141e-06 +UniRef50_UPI00037E43F6 hypothetical protein 4.3590913564e-05 3.14085481731e-05 -1.21823653909e-05 +UniRef50_P08394 RecBCD enzyme subunit RecB 0.000131076499281 0.000108972851112 -2.2103648169e-05 +UniRef50_A0A037ZMW4 0.000283210444089 3.86806325102e-05 -0.000244529811579 +UniRef50_Q89XW7 Shikimate kinase 3.79222910602e-05 1.24182022537e-05 -2.55040888065e-05 +UniRef50_V5EQM5 2.96594350358e-05 1.19258481106e-05 -1.77335869252e-05 +UniRef50_R1DWA7 9.51419286462e-05 1.0576705467e-05 -8.45652231792e-05 +UniRef50_W8S8B2 Pe pgrs family protein 1.50431372622e-05 4.08294216261e-05 2.57862843639e-05 +UniRef50_R6BXV0 0.000112013646546 0.00208188669737 0.00196987305082 +UniRef50_UPI00047A0085 6 phospho beta glucosidase 2.99715528178e-06 1.47404777137e-06 -1.52310751041e-06 +UniRef50_N9KV58 0.000174762031871 0.00797836606036 0.00780360402849 +UniRef50_Q6AAJ1 DNA or RNA helicase of superfamily II 0.000229794868266 0.00488398295725 0.00465418808898 +UniRef50_UPI0004796361 hypothetical protein 0.000107217101758 6.27243221659e-05 -4.44927795921e-05 +UniRef50_A6LYE4 Peptidoglycan binding domain 1 protein 0.000165898485148 0.00042213379478 0.000256235309632 +UniRef50_UPI000477452D histidine kinase 4.60630914106e-05 6.86164329904e-05 2.25533415798e-05 +UniRef50_A0A024C8M9 Membrane protein 5.85552206083e-05 0.00422318771014 0.00416463248953 +UniRef50_A4FWA2 50S ribosomal protein L18P 0.00232842271831 0.0015226509923 -0.00080577172601 +UniRef50_P31826 Inner membrane ABC transporter ATP binding protein YddA 0.00179919530112 0.000328421544177 -0.00147077375694 +UniRef50_UPI00036700D3 hypothetical protein 0.000301297876521 0.000224584673373 -7.6713203148e-05 +UniRef50_A4W3M3 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.00260361561351 0.00285951972995 0.00025590411644 +UniRef50_Q5NNR3 7 cyano 7 deazaguanine synthase 0.0080830832241 0.00391654925827 -0.00416653396583 +UniRef50_A0A017T5I2 EBNA 1 protein 1.21079502275e-05 1.11053149746e-05 -1.0026352529e-06 +UniRef50_UPI000414E366 sodium 6.93968831996e-06 7.96343345451e-06 1.02374513455e-06 +UniRef50_Q6FA05 0.00014964889036 0.00559641518848 0.00544676629812 +UniRef50_R7Q4F8 Stackhouse genomic scaffold, scaffold_111 2.75747092235e-05 0.000147622324686 0.000120047615462 +UniRef50_G4RGP8 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components 0.00463444876936 0.00027685941112 -0.00435758935824 +UniRef50_UPI00037A37E9 hypothetical protein 0.000150223176476 8.87730943536e-05 -6.14500821224e-05 +UniRef50_F5LFP9 Topology modulation protein 5.56789919968e-05 0.000207914723689 0.000152235731692 +UniRef50_E9AEM9 Proteophosphoglycan 5 7.07725029937e-06 3.21608774848e-05 2.50836271854e-05 +UniRef50_K8G8E5 3.155270097e-05 2.63855588771e-05 -5.1671420929e-06 +UniRef50_I2BVX5 0.000498236840259 6.07647541518e-05 -0.000437472086107 +UniRef50_UPI00036A1C3B hypothetical protein 1.02715912234e-05 1.63877532203e-05 6.1161619969e-06 +UniRef50_Q2LWY9 Ribonuclease H 1.34815721732e-05 1.66990883702e-05 3.217516197e-06 +UniRef50_Q3IW30 PreQ biosynthesis protein QueC 0.00984280689209 0.000705936347077 -0.00913687054501 +UniRef50_M3G510 Hemolysin 1.88898297824e-06 1.40381891147e-05 1.21492061365e-05 +UniRef50_U6JRA6 1.27667208899e-05 1.68595127265e-05 4.0927918366e-06 +UniRef50_Q5HL91 Perfringolysin O regulator protein, putative 0.0247394349782 0.0060734506343 -0.0186659843439 +UniRef50_Q2S3M1 4 hydroxy tetrahydrodipicolinate synthase 4.99095830441e-05 1.93398663342e-05 -3.05697167099e-05 +UniRef50_UPI00046FF4AE leucine isoleucine valine transporter ATP binding subunit, partial 4.90987283162e-05 3.49846683613e-05 -1.41140599549e-05 +UniRef50_UPI000370E248 hypothetical protein 0.000239486552724 3.04307807035e-05 -0.000209055772021 +UniRef50_D8U8Q0 2.57057052498e-05 1.9713910309e-05 -5.9917949408e-06 +UniRef50_Q8NYT6 0.0129668763468 0.00197234011225 -0.0109945362346 +UniRef50_B9KNI6 0.00293656106939 0.00388149210305 0.00094493103366 +UniRef50_Q9RWM5 0.000862679536592 0.0561989170929 0.0553362375563 +UniRef50_UPI00046849C9 ABC transporter ATP binding protein 5.98464756926e-05 2.41602845182e-05 -3.56861911744e-05 +UniRef50_D3SC43 UPF0125 protein TK90_2052 3.17473757718e-05 2.66451856724e-05 -5.1021900994e-06 +UniRef50_R6PLE5 1.81447450763e-05 3.10154520357e-06 -1.50431998727e-05 +UniRef50_A8FDI9 tRNA dimethylallyltransferase 2.58976472945e-05 8.74841575132e-06 -1.71492315432e-05 +UniRef50_UPI00047E1B1C ribokinase, partial 8.04344230477e-06 1.28483066712e-05 4.80486436643e-06 +UniRef50_C6NRJ9 Amino acid permease family protein 1.3939614933e-05 2.50653179639e-05 1.11257030309e-05 +UniRef50_Q8DWY0 UPF0246 protein SAG2081 0.00637544225428 0.00476749063115 -0.00160795162313 +UniRef50_X5ENZ1 0.000184139506761 0.00181463993961 0.00163050043285 +UniRef50_UPI0002558C15 response regulator receiver GGDEF EAL domain containing protein 5.78013895782e-06 3.03772821982e-05 2.45971432404e-05 +UniRef50_Q3JNE0 4.39325825196e-05 0.000229669505017 0.000185736922497 +UniRef50_D2PRN7 CutC family protein 0.00053926569836 0.00483246819892 0.00429320250056 +UniRef50_F0NB13 Transporter, gluconate 0.000167731530739 0.00256544701727 0.00239771548653 +UniRef50_UPI00040B5085 phosphodiesterase 3.45327995097e-05 4.05214587922e-05 5.9886592825e-06 +UniRef50_W0AGC9 8.1788704378e-05 4.22660245031e-05 -3.95226798749e-05 +UniRef50_P76553 Ethanolamine utilization protein EutG 0.00341954089383 0.00141422918387 -0.00200531170996 +UniRef50_G8AHE6 0.00025861854033 0.000250150935068 -8.467605262e-06 +UniRef50_Q5HQB1 Probable quinol oxidase subunit 3 0.026089914596 0.00830162082321 -0.0177882937728 +UniRef50_F2ABA7 0.000379458296193 0.000151722601437 -0.000227735694756 +UniRef50_Q59409 RNA polymerase sigma factor RpoS 0.0030099296252 0.000476036188385 -0.00253389343682 +UniRef50_F9V7A7 Mannose specific PTS system IID component 0.000230174383446 0.00121154800667 0.000981373623224 +UniRef50_UPI00046D26DA hypothetical protein 7.5891429302e-06 0.000118805795911 0.000111216652981 +UniRef50_Q11CZ9 0.00015076949652 3.10485181216e-05 -0.000119720978398 +UniRef50_W7E2M1 Heme oxygenase 2.81695210041e-05 3.8599369285e-05 1.04298482809e-05 +UniRef50_A2RGD6 0.00775884795102 0.00573497447903 -0.00202387347199 +UniRef50_P75978 0.00381771462607 0.000733528486484 -0.00308418613959 +UniRef50_W8YNB5 8.82664042509e-05 0.00221881559628 0.00213054919203 +UniRef50_J3L401 1.98207177051e-06 6.97986207268e-06 4.99779030217e-06 +UniRef50_E8SGA0 Teichoic acid biosynthesis protein F 0.0101883950395 0.00286820365136 -0.00732019138814 +UniRef50_U4T249 3.54624377764e-06 1.26727904205e-05 9.12654664286e-06 +UniRef50_UPI00029A6F6B transporter, MFS family protein, partial 2.28895641105e-05 4.37178314891e-05 2.08282673786e-05 +UniRef50_UPI00047C75A1 elongation factor G 6.09933070649e-06 0.000146199541709 0.000140100211003 +UniRef50_H9UTM9 0.00129476304864 0.00130189609489 7.13304625e-06 +UniRef50_Q9LEU8 Argininosuccinate lyase, chloroplastic 2.86177146523e-05 2.7868395681e-05 -7.493189713e-07 +UniRef50_M0RG67 8.73173073326e-06 6.49664027681e-05 5.62346720348e-05 +UniRef50_UPI0004784289 mannose 1 phosphate guanyltransferase 3.65642446357e-06 1.8896222136e-05 1.52397976724e-05 +UniRef50_C6SR62 0.00749738775457 0.00402304148061 -0.00347434627396 +UniRef50_D7GIE6 Thiamine phosphate synthase 0.000294910928794 0.0015824862537 0.00128757532491 +UniRef50_P37615 0.00063023747704 0.000471250061484 -0.000158987415556 +UniRef50_F9YWL1 ABC transporter 0.000243371238756 0.0023474869462 0.00210411570744 +UniRef50_P37661 Phosphoethanolamine transferase EptB 0.00315040508671 0.00097207538931 -0.0021783296974 +UniRef50_P77817 Cell division protein FtsZ 0.00146984599825 0.000212203620496 -0.00125764237775 +UniRef50_UPI0003703469 ATP binding protein, partial 6.9598139847e-05 2.06367990516e-05 -4.89613407954e-05 +UniRef50_F0RP27 Peptidyl prolyl cis trans isomerase 0.00169032990832 0.0530693842426 0.0513790543343 +UniRef50_Q8CNF4 NAD dependent protein deacetylase 0.0210545623379 0.00530952965244 -0.0157450326855 +UniRef50_UPI00035FE3BB Fis family transcriptional regulator 0.000101379527657 5.10400329082e-05 -5.03394947488e-05 +UniRef50_B9KQH1 Flagellar biosynthesis type III secretory pathway protein 0.00671231089254 0.00219384551172 -0.00451846538082 +UniRef50_UPI0003A911E9 adenylosuccinate lyase 1.75474775265e-06 1.34847889156e-05 1.1730041163e-05 +UniRef50_UPI000366B7BC MULTISPECIES 1.97966992908e-06 7.11720013531e-05 6.9192331424e-05 +UniRef50_O27441 3 isopropylmalate dehydrogenase 0.00507077720367 0.00183143830067 -0.003239338903 +UniRef50_X8AYJ2 0.000137520711262 0.000337504805945 0.000199984094683 +UniRef50_N6UCK5 0.000465790714061 7.08506573235e-05 -0.000394940056737 +UniRef50_A0A059IK34 0.000121897231714 8.92010571816e-05 -3.26961745324e-05 +UniRef50_UPI0003C19D83 1.41152600356e-05 3.65389414495e-05 2.24236814139e-05 +UniRef50_I0ET87 0.000257376810578 0.002972252228 0.00271487541742 +UniRef50_UPI00036DA55D hypothetical protein 3.38578179153e-05 6.1097135649e-05 2.72393177337e-05 +UniRef50_F8GLJ2 Putrescine binding periplasmic protein 0.000453363943361 0.000839896880292 0.000386532936931 +UniRef50_W0RQV3 3.17299169844e-05 4.33429224372e-05 1.16130054528e-05 +UniRef50_A6LS21 Sugar isomerase 0.000269023209136 0.00177287635887 0.00150385314973 +UniRef50_V5G7G2 8.27762082457e-05 3.67719352379e-06 -7.90990147219e-05 +UniRef50_Q6DQL1 Succinyl CoA ligase [ADP forming] subunit alpha 2, mitochondrial 5.5605163404e-05 3.80183606123e-05 -1.75868027917e-05 +UniRef50_UPI000366E5C2 hypothetical protein 6.60771543552e-06 1.04174098821e-05 3.80969444658e-06 +UniRef50_P0AFA6 Bacteriophage N4 adsorption protein B 0.00059198201005 0.000447270583598 -0.000144711426452 +UniRef50_UPI000376010F hypothetical protein 2.87691265587e-05 0.000313246839383 0.000284477712824 +UniRef50_I1PTF2 0.000757323628834 7.55384323853e-05 -0.000681785196449 +UniRef50_D9SVI0 DEAD DEAH box helicase domain protein 0.000504894929871 0.00126323618435 0.000758341254479 +UniRef50_A9EWC9 Probable PE_PGRS family protein 1.3268122317e-05 7.01498942776e-06 -6.25313288924e-06 +UniRef50_UPI0002556201 beta ketoacyl synthase 1.91078720841e-05 9.25191804214e-05 7.34113083373e-05 +UniRef50_A6V1S7 0.000369641128892 0.000530757093494 0.000161115964602 +UniRef50_UPI0004645B86 hypothetical protein 1.50797276133e-05 5.10099643814e-05 3.59302367681e-05 +UniRef50_W8AF54 6.76094308422e-05 0.000202633648692 0.00013502421785 +UniRef50_G7ZTD1 Fibrinogen and keratin 10 binding surface anchored protein 0.00271866640193 0.000337282541898 -0.00238138386003 +UniRef50_Q16AI7 Signal peptidase I, putative 0.0111845892746 0.00452837821333 -0.00665621106127 +UniRef50_UPI00035D6F7F hypothetical protein 6.79353137527e-05 2.95117110084e-05 -3.84236027443e-05 +UniRef50_M3YNX9 1.56185009798e-05 2.44374858176e-05 8.8189848378e-06 +UniRef50_UPI0004636F37 ABC transporter permease 6.52577239647e-06 0.000227147471354 0.000220621698958 +UniRef50_Q9RUH1 Ornithine aminotransferase, putative 8.69115860788e-05 0.0362836088562 0.0361966972701 +UniRef50_I6TPB9 GntR family transcriptional regulator 0.00361201470119 0.00253081550946 -0.00108119919173 +UniRef50_G5MQF2 0.000223792707901 0.00260482806462 0.00238103535672 +UniRef50_UPI00046D6B05 hypothetical protein 8.43040171975e-06 1.57015612718e-05 7.27115955205e-06 +UniRef50_P80885 Pyruvate kinase 0.0162808234147 0.0097943942454 -0.0064864291693 +UniRef50_A0RMD0 NADH quinone oxidoreductase subunit B 9.47304045872e-06 0.000141267578419 0.00013179453796 +UniRef50_M1L621 ABC transport system permease protein 7.88813562631e-06 1.96448601012e-05 1.17567244749e-05 +UniRef50_G7U7Q7 PAS domain S box 0.000121769673823 0.00522266260856 0.00510089293474 +UniRef50_X8JCV2 1.9258538301e-05 1.05896425536e-05 -8.6688957474e-06 +UniRef50_B8D004 2.27865914968e-05 3.04972289643e-05 7.7106374675e-06 +UniRef50_D6SDZ2 Gamma glutamyltransferase 0.0146082198817 0.0016882235684 -0.0129199963133 +UniRef50_UPI0004728A87 5 amino 6 uracil reductase, partial 1.08023243422e-05 1.9557852978e-05 8.7555286358e-06 +UniRef50_UPI00046350E3 DNA primase 3.69449663589e-06 4.07880808902e-06 3.8431145313e-07 +UniRef50_P26394 dTDP 4 dehydrorhamnose 3,5 epimerase 0.00321656205519 0.00272320374059 -0.0004933583146 +UniRef50_O25396 Ferrous iron transport protein B 5.98234530714e-05 0.00312630829952 0.00306648484645 +UniRef50_UPI0004766C33 NTP pyrophosphohydrolase 0.000827448867561 6.81759308144e-05 -0.000759272936747 +UniRef50_UPI0002FD23FE hypothetical protein 0.000108723016096 0.000183768788391 7.5045772295e-05 +UniRef50_U5NN27 Antitoxin of type II toxin antitoxin system 0.00139402406234 0.000816629530436 -0.000577394531904 +UniRef50_UPI00036547B5 hypothetical protein 0.00111005594313 0.000300971465453 -0.000809084477677 +UniRef50_D8LJ34 3.92171160258e-05 8.84112993479e-06 -3.0375986091e-05 +UniRef50_C1D1L2 Glutamyl tRNA amidotransferase subunit A 2.97430987881e-06 0.000482427303381 0.000479452993502 +UniRef50_J7M137 Adenine specific methyltransferase 0.00655952188607 0.00441224264668 -0.00214727923939 +UniRef50_A6LWI4 0.00115546442156 0.00102363418921 -0.00013183023235 +UniRef50_Q0RS03 Glutamate 1 semialdehyde 2,1 aminomutase 0.000584505817458 0.00282402259035 0.00223951677289 +UniRef50_J9YUJ8 Sensor histidine kinase 0.000459054732756 0.000905474431312 0.000446419698556 +UniRef50_UPI0003804843 hypothetical protein 3.22293065206e-06 5.95066829984e-06 2.72773764778e-06 +UniRef50_H2IGF7 4.3954923605e-05 0.000247695625001 0.000203740701396 +UniRef50_Q83MA0 Taurine import ATP binding protein TauB 0.00493379543622 0.00134704237088 -0.00358675306534 +UniRef50_W7W7I1 0.000569050295571 0.000140276079485 -0.000428774216086 +UniRef50_Q46786 0.00161031644449 0.000984389017326 -0.000625927427164 +UniRef50_Q46787 0.00650425965803 0.0029913578176 -0.00351290184043 +UniRef50_L2TVA4 Sugar transporter family protein 9.90950248786e-06 6.80398639023e-05 5.81303614144e-05 +UniRef50_UPI000478BD3D hypothetical protein 1.02797732095e-05 1.07134500423e-05 4.336768328e-07 +UniRef50_D4HA38 OmpA family protein 0.00010673496386 0.00398974969212 0.00388301472826 +UniRef50_Q839B0 33 kDa chaperonin 0.0293312593117 0.0076271929072 -0.0217040664045 +UniRef50_T2EL78 0.000178628719397 6.69905569354e-05 -0.000111638162462 +UniRef50_Q83H98 Glutamate 1 semialdehyde 2,1 aminomutase 5.11846138901e-06 0.000552786434325 0.000547667972936 +UniRef50_M2M947 Putative 40K cell wall protein 0.00188587855053 0.000744226661808 -0.00114165188872 +UniRef50_Q9ZLC0 Anaerobic C4 dicarboxylate transporter DcuA 0.00282890113091 0.00337844555296 0.00054954442205 +UniRef50_W1CHR3 Tripeptide aminopeptidase 0.000768365044158 0.000279921047585 -0.000488443996573 +UniRef50_UPI000470943C biopolymer transporter ExbD 3.79343583738e-05 5.93132699173e-05 2.13789115435e-05 +UniRef50_UPI000364FFFE hypothetical protein, partial 0.000288187227331 0.000158625800386 -0.000129561426945 +UniRef50_UPI00046D09E1 hypothetical protein 2.41636368177e-05 2.07351545933e-05 -3.4284822244e-06 +UniRef50_Q8XAF1 Propionate kinase 0.00402044731908 0.00195492503895 -0.00206552228013 +UniRef50_UPI000328F876 PREDICTED 2.28980102878e-06 8.08557099813e-06 5.79576996935e-06 +UniRef50_W8WCZ2 0.000176015318437 0.00140252969254 0.0012265143741 +UniRef50_D8JKZ8 AFG1 like ATPase family protein 0.00051599525936 0.00643922794644 0.00592323268708 +UniRef50_UPI00046AD3AE dihydroxy acid dehydratase 3.33977139462e-05 3.0743133119e-06 -3.03234006343e-05 +UniRef50_UPI0003EA9F92 PREDICTED 2.11094360157e-05 0.000107885088205 8.67756521893e-05 +UniRef50_UPI000475069F ribose ABC transporter permease 7.94549786454e-05 0.00011023475423 3.07797755846e-05 +UniRef50_Q6F700 0.000112438909664 7.98248313796e-05 -3.26140782844e-05 +UniRef50_UPI00016C4E46 4 alpha glucanotransferase 1.17715046097e-05 0.000646693377851 0.000634921873241 +UniRef50_O84917 Ribulose bisphosphate carboxylase 0.0110841365328 0.0024996159848 -0.008584520548 +UniRef50_UPI000329D36D PREDICTED 5.49703877593e-05 3.44139745399e-05 -2.05564132194e-05 +UniRef50_E6VFF6 Diguanylate cyclase 5.81069090713e-06 0.000769272881805 0.000763462190898 +UniRef50_Q8XJR3 DNA polymerase III PolC type 3.54555825554e-06 1.71413548628e-06 -1.83142276926e-06 +UniRef50_Q9RS27 Alanine tRNA ligase 0.000381266927201 0.0329410323152 0.032559765388 +UniRef50_K2HSX3 5.26887385253e-05 1.82775281575e-05 -3.44112103678e-05 +UniRef50_M1MML8 0.00106375922176 0.00356867642859 0.00250491720683 +UniRef50_S2ZVN1 1.68302866869e-06 2.4819222001e-06 7.9889353141e-07 +UniRef50_K4MTL7 Minor ampullate spidroin 9.13467432813e-06 2.91167304553e-05 1.99820561272e-05 +UniRef50_Q67K77 Holo [acyl carrier protein] synthase 1.34932167629e-05 3.67226116839e-05 2.3229394921e-05 +UniRef50_UPI0003C1325D PREDICTED 6.83247894327e-05 8.71670665404e-05 1.88422771077e-05 +UniRef50_U3U4J5 AraC family transcriptional regulator 1.53487891056e-05 2.30361681009e-05 7.6873789953e-06 +UniRef50_H5WT01 Activator of osmoprotectant transporter ProP 0.000269493140269 0.000120535730883 -0.000148957409386 +UniRef50_A6TYC4 0.011906716984 0.00302557061513 -0.00888114636887 +UniRef50_P77221 0.00312616327745 0.00307564013901 -5.052313844e-05 +UniRef50_P75821 0.00524809261963 0.000459881820649 -0.00478821079898 +UniRef50_F0DGH5 Metallo beta lactamase superfamily protein 0.00208253136272 1.22273265162e-05 -0.0020703040362 +UniRef50_P75822 0.00274132403307 0.000281865394675 -0.0024594586384 +UniRef50_V6UL61 3.37180843685e-05 8.71173012871e-05 5.33992169186e-05 +UniRef50_Q8G692 Prolipoprotein diacylglyceryl transferase 1.05381430643e-05 5.46566520379e-06 -5.07247786051e-06 +UniRef50_Q51547 Phosphate specific transport system accessory protein PhoU homolog 0.00220280175432 0.0134273784804 0.0112245767261 +UniRef50_L5MQQ0 4.47422346904e-06 5.49539336623e-06 1.02116989719e-06 +UniRef50_Q9JV93 4 hydroxybenzoate octaprenyltransferase 0.000140852980911 0.00203775650639 0.00189690352548 +UniRef50_UPI000467BA9A glycogen debranching protein 4.06588507317e-05 0.000133848801421 9.31899506893e-05 +UniRef50_UPI00046F258D bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial 0.000489119721737 0.0093854875063 0.00889636778456 +UniRef50_C6AA47 N acetylmuramoyl L alanine amidase 0.000176946557275 0.000329962799096 0.000153016241821 +UniRef50_UPI0003B42974 ABC transporter ATP binding protein 3.37840811763e-05 3.96684421356e-05 5.8843609593e-06 +UniRef50_UPI0004075F22 hypothetical protein 1.56260016227e-05 5.83697657181e-06 -9.78902505089e-06 +UniRef50_Q1LZ65 RpiR like protein 0.00480414684853 0.0010339510549 -0.00377019579363 +UniRef50_UPI0003808D6C hypothetical protein 3.9472056073e-05 4.0607070225e-05 1.135014152e-06 +UniRef50_G0DU58 Triacylglycerol lipase 0.000184439408233 0.00760196822075 0.00741752881252 +UniRef50_R4NRW2 Late competence protein ComGD, access of DNA to ComEA 1.18278288562e-05 4.32858633692e-05 3.1458034513e-05 +UniRef50_UPI00037397C6 hypothetical protein 6.77359588533e-06 2.29059705552e-06 -4.48299882981e-06 +UniRef50_P39708 NADP specific glutamate dehydrogenase 2 7.82741812236e-06 3.50298410794e-05 2.7202422957e-05 +UniRef50_UPI0004645BC1 type III secretion system protein InvA 1.50568089289e-06 3.24586139206e-06 1.74018049917e-06 +UniRef50_X1BI18 Marine sediment metagenome DNA, contig 1.8536218514e-05 7.07761006701e-05 5.22398821561e-05 +UniRef50_I5QRE7 Transcriptional regulator, LysR family 0.000231031039916 5.41879770379e-05 -0.000176843062878 +UniRef50_I0W3J8 Transposase, IS4 like family protein 7.41643275549e-05 6.22202366967e-05 -1.19440908582e-05 +UniRef50_UPI0003B748CE hypothetical protein 0.00110426172816 2.54991658574e-06 -0.00110171181157 +UniRef50_A6M3G1 Aminoglycoside phosphotransferase 0.000118210643688 0.00214028413028 0.00202207348659 +UniRef50_D3QEQ2 0.0205609255763 0.0031036663864 -0.0174572591899 +UniRef50_I1EWK9 8.78541112076e-06 4.99101052959e-05 4.11246941751e-05 +UniRef50_P67734 Coenzyme A biosynthesis bifunctional protein CoaBC 0.000448609717032 0.00715588406959 0.00670727435256 +UniRef50_UPI0003735E21 hypothetical protein 7.69874388257e-05 2.29304389204e-05 -5.40569999053e-05 +UniRef50_B9MRP4 Argininosuccinate lyase 1.03449003462e-05 4.92613811524e-06 -5.41876223096e-06 +UniRef50_UPI0003762CE6 MULTISPECIES 1.32684620204e-05 0.000107420369167 9.41519071466e-05 +UniRef50_T9DD40 Hydrolase 0.000491596219502 0.000878310896958 0.000386714677456 +UniRef50_UPI0003C14BCE PREDICTED 4.18855225649e-05 0.000753107502809 0.000711221980244 +UniRef50_UPI0003A2FE59 hypothetical protein 6.89801096769e-06 1.01875626519e-05 3.28955168421e-06 +UniRef50_G0NWR7 6.21658168988e-07 7.95263326013e-05 7.89046744323e-05 +UniRef50_UPI000255BEAA ferrochelatase, partial 8.41272598739e-06 4.23104912254e-05 3.3897765238e-05 +UniRef50_Q6GEY2 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.0250145942039 0.00429808574613 -0.0207165084578 +UniRef50_UPI00022CA988 PREDICTED 0.00154565977503 0.000144089832261 -0.00140156994277 +UniRef50_UPI00037E7536 hypothetical protein 4.24485965656e-06 5.02530908542e-06 7.8044942886e-07 +UniRef50_Q1H2B5 Dihydroxyacetone kinase DhaK subunit 0.000173423884613 0.00873054076727 0.00855711688266 +UniRef50_R9ZDS5 LysR family transcriptional regulator 0.000437265287315 0.00172304548347 0.00128578019616 +UniRef50_Q7UFW4 Argininosuccinate synthase 8.49139270096e-06 5.07727025993e-05 4.22813098983e-05 +UniRef50_UPI0004076A57 polyhydroxyalkanoate synthesis repressor 3.21861359658e-05 1.08785324585e-05 -2.13076035073e-05 +UniRef50_R5I2I4 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00724827343602 0.00890513007173 0.00165685663571 +UniRef50_A5UNE8 0.00878160099278 0.000466289534524 -0.00831531145826 +UniRef50_E0NCD7 0.000555302392987 0.00400995073122 0.00345464833823 +UniRef50_A5UK92 Uridylate kinase 0.00311337724788 0.00132865377874 -0.00178472346914 +UniRef50_UPI0003C11674 PREDICTED 5.2213613294e-05 4.46291662904e-05 -7.5844470036e-06 +UniRef50_UPI0002492155 penicillin binding protein 2B 3.25657145973e-06 1.53861627826e-05 1.21295913229e-05 +UniRef50_C3PHK3 Aminomethyltransferase 1.04093688114e-05 5.55398258339e-05 4.51304570225e-05 +UniRef50_R1HV07 DNA repair protein RadA 5.16891827567e-05 0.000594204639029 0.000542515456272 +UniRef50_UPI00039EAFFC secretion protein HylD 2.18010124453e-05 4.92560984091e-06 -1.68754026044e-05 +UniRef50_R7PRX3 0.000103854126869 3.58872699094e-05 -6.79668569596e-05 +UniRef50_Q5HPN8 tRNA dimethylallyltransferase 0.0166145798109 0.0082930809458 -0.0083214988651 +UniRef50_D4HD87 Histidine kinase 0.000231592880319 0.00473638938392 0.0045047965036 +UniRef50_Q0C093 Guanylate kinase 9.74120548599e-06 2.6746171033e-05 1.7004965547e-05 +UniRef50_Q11SW8 Lipoprotein releasing system ATP binding protein LolD 1.58468233952e-05 5.4641967468e-05 3.87951440728e-05 +UniRef50_P37317 Integrase 0.00525644915044 0.00206325489827 -0.00319319425217 +UniRef50_A3CQT5 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase 0.0257959937502 0.0121493355844 -0.0136466581658 +UniRef50_Q5PHV8 Gamma aminobutyraldehyde dehydrogenase 0.00249124149289 0.000490281934934 -0.00200095955796 +UniRef50_A5IU13 Transcriptional regulator, XRE family 0.0122434679821 0.00801157507904 -0.00423189290306 +UniRef50_Q83CY8 Putative peroxiredoxin bcp 1.84484904834e-05 0.00119281998397 0.00117437149349 +UniRef50_G2JM28 Permease 0.000132761778031 0.00575878201728 0.00562602023925 +UniRef50_P33363 Periplasmic beta glucosidase 0.00357985835018 0.0143838529115 0.0108039945613 +UniRef50_O32142 5 hydroxyisourate hydrolase 2.61692489581e-05 2.95768796738e-05 3.4076307157e-06 +UniRef50_P16326 Flagellar hook associated protein 3 0.00379644108501 0.000423374303 -0.00337306678201 +UniRef50_U6A8Z3 0.000766471207329 0.000285614530751 -0.000480856676578 +UniRef50_A6QES9 0.000251095123551 0.00120537430691 0.000954279183359 +UniRef50_K0AB23 Nucleotide sugar dehydrogenase 0.00219106800022 0.00221636856195 2.530056173e-05 +UniRef50_R7PW62 MATE efflux family protein 0.0025136377989 0.000632264113912 -0.00188137368499 +UniRef50_UPI0004783D2F molybdenum cofactor guanylyltransferase 8.97221555477e-06 9.29830367211e-06 3.2608811734e-07 +UniRef50_UPI000301FF6F hypothetical protein 0.000117297559195 4.60145239169e-05 -7.12830352781e-05 +UniRef50_F0Y6Y0 Expressed protein 0.00029157606303 0.000398381148276 0.000106805085246 +UniRef50_Q1IWZ8 Glutamate 1 semialdehyde 2,1 aminomutase 4.75853129959e-06 0.00247228368533 0.00246752515403 +UniRef50_Q2YVY3 Peptidyl tRNA hydrolase 0.0154799837399 0.00234690984458 -0.0131330738953 +UniRef50_Q2LQB0 50S ribosomal protein L14 0.00451633953667 0.000490831088969 -0.0040255084477 +UniRef50_A1VJH7 0.000291531235519 7.69637849186e-05 -0.0002145674506 +UniRef50_R1FK72 3.05783364798e-06 2.44440456934e-06 -6.1342907864e-07 +UniRef50_UPI000395C119 PREDICTED 0.000189745892444 0.000260000033926 7.0254141482e-05 +UniRef50_B7V4B3 Transcriptional regulator Dnr 0.00165232545465 0.000604744106207 -0.00104758134844 +UniRef50_P06988 Histidinol dehydrogenase 0.00347506293447 0.000531840696352 -0.00294322223812 +UniRef50_E1VIL5 6.63420015524e-05 0.00823102858277 0.00816468658122 +UniRef50_A9WHT8 Histidine ammonia lyase 3.09460586049e-06 1.12075691929e-05 8.11296333241e-06 +UniRef50_UPI00035DFFA6 hypothetical protein 0.000574886937602 9.11671722432e-05 -0.000483719765359 +UniRef50_M2XUJ5 9.30417190192e-05 6.09537409373e-06 -8.69463449255e-05 +UniRef50_D2ZRP6 0.00390956596191 0.000499435917173 -0.00341013004474 +UniRef50_P26426 Lactose specific phosphotransferase enzyme IIA component 0.00678077848386 0.00407497936645 -0.00270579911741 +UniRef50_UPI0003824A7E sarcosine oxidase subunit alpha 5.78506571621e-06 3.82133223873e-06 -1.96373347748e-06 +UniRef50_Q45493 Ribonuclease J1 4.82676023189e-05 0.00261141566327 0.00256314806095 +UniRef50_B9KU62 Sulfide quinone reductase 0.00793928130123 0.00402738092392 -0.00391190037731 +UniRef50_A4WNN0 NnrU family protein 0.000926814471448 0.000350177911301 -0.000576636560147 +UniRef50_UPI00037A9B52 hypothetical protein 3.39084576645e-06 0.000219137753758 0.000215746907992 +UniRef50_Q97FS6 Dihydroorotate dehydrogenase B ), electron transfer subunit 0.000166783205682 0.00240060236153 0.00223381915585 +UniRef50_UPI0004105041 hypothetical protein 2.51322636758e-06 4.91563638151e-06 2.40241001393e-06 +UniRef50_F5M5N5 0.00275893496775 0.000164088591142 -0.00259484637661 +UniRef50_F5M5N4 0.0018796929063 0.00271214057326 0.00083244766696 +UniRef50_J7L4H8 7.62216088599e-06 0.000805805738426 0.00079818357754 +UniRef50_P15082 Glucitol operon repressor 0.00180615107751 0.000951420880895 -0.000854730196615 +UniRef50_UPI00037CACA0 hypothetical protein 6.62896518257e-06 1.02566296573e-05 3.62766447473e-06 +UniRef50_Q3J0U8 0.000673825664755 0.000105157283751 -0.000568668381004 +UniRef50_J0ZLP6 Putative formate dehydrogenase accessory protein 0.00277693719433 0.00181213127968 -0.00096480591465 +UniRef50_UPI00035F0280 hypothetical protein 2.81564641374e-06 7.0593260943e-05 6.77776145293e-05 +UniRef50_D3E016 Tungsten formylmethanofuran dehydrogenase subunit F FwdF 0.00529528123682 0.000815682455238 -0.00447959878158 +UniRef50_M4QXD0 Transcriptional regulator, LysR family 0.000548029113216 0.0140299073356 0.0134818782224 +UniRef50_UPI00034978EE MULTISPECIES 0.000183127355807 5.8402496082e-06 -0.000177287106199 +UniRef50_A5IVE5 0.00179802891376 0.00299713470719 0.00119910579343 +UniRef50_UPI0003B6AAEA aldehyde oxidase 1.72594315201e-06 2.38808014899e-06 6.6213699698e-07 +UniRef50_P73471 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.34059865189e-05 1.38697583032e-05 -2.95362282157e-05 +UniRef50_UPI00035ED296 hypothetical protein 2.86345886837e-06 7.62847965418e-06 4.76502078581e-06 +UniRef50_Q5XAK0 Alpha glycerophosphate oxidase 1.51342322376e-05 0.00562912893038 0.00561399469814 +UniRef50_V1SNF4 0.000725675592536 0.000411734172721 -0.000313941419815 +UniRef50_UPI0003B6CE87 pseudouridylate synthase 2.97154900291e-06 6.85951639861e-06 3.8879673957e-06 +UniRef50_UPI00037F0084 hypothetical protein 1.42740595201e-05 0.00109721347852 0.001082939419 +UniRef50_P42913 0.000466032084997 0.000665326022367 0.00019929393737 +UniRef50_Q5HRP5 tRNA lysidine synthase 0.0226257314678 0.00680934264638 -0.0158163888214 +UniRef50_Q7VK48 GTP cyclohydrolase 2 0.000989908216082 0.00364217494039 0.00265226672431 +UniRef50_M7XY21 5.18195898667e-05 5.13766652118e-05 -4.429246549e-07 +UniRef50_A5UKS5 SAM dependent methyltransferase 0.00165391898123 0.000186123973868 -0.00146779500736 +UniRef50_UPI000380CF2F hypothetical protein 3.05805837408e-05 3.3013586947e-05 2.4330032062e-06 +UniRef50_UPI00037F7F53 hypothetical protein 3.11230370635e-05 4.0957922843e-06 -2.70272447792e-05 +UniRef50_X2LKW6 Acetyltransferase component of pyruvate dehydrogenase complex 0.00312451601784 0.000970873939229 -0.00215364207861 +UniRef50_Q8KBE8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.11231398091e-05 2.95962832748e-06 -8.16351148162e-06 +UniRef50_A5UP32 Purine pyrimidine phosphoribosyl transferase 0.00393878852312 0.00132035291974 -0.00261843560338 +UniRef50_UPI000466F53C hypothetical protein 8.95979252485e-06 6.98561133964e-06 -1.97418118521e-06 +UniRef50_UPI00042740A6 hypothetical protein 1.07380289279e-05 0.000697176066274 0.000686438037346 +UniRef50_Q0FV17 Phenol hydroxylase, putative 0.000735321092641 7.04164799808e-05 -0.00066490461266 +UniRef50_Q9RU29 0.000238915182824 0.0203799318796 0.0201410166968 +UniRef50_Q81FQ1 Histidinol phosphate aminotransferase 1 1.19672659482e-05 0.000421603393774 0.000409636127826 +UniRef50_B3RB46 Acyl CoA dehydrogenase 0.000968319752328 0.000561095839466 -0.000407223912862 +UniRef50_C5N5E1 0.00134885703018 0.000532102171523 -0.000816754858657 +UniRef50_A3M7M4 0.000291870609934 0.00832744322765 0.00803557261772 +UniRef50_Q606N2 Beta hexosaminidase 5.06181037175e-06 2.82679540271e-05 2.32061436554e-05 +UniRef50_UPI0004720773 50S ribosomal protein L7 L12 4.26340475426e-06 0.000493316098297 0.000489052693543 +UniRef50_Q82YY1 Ribosomal RNA small subunit methyltransferase G 0.013684831101 0.00241676617498 -0.011268064926 +UniRef50_UPI00034CCF2C hypothetical protein 7.67870740343e-05 1.22247515731e-05 -6.45623224612e-05 +UniRef50_UPI00040B1DFA hypothetical protein 4.64183765538e-06 5.47473993412e-05 5.01055616858e-05 +UniRef50_P00497 Amidophosphoribosyltransferase 0.00555099191055 0.0462611873891 0.0407101954785 +UniRef50_UPI00022CA5D5 PREDICTED 0.00120368947609 0.000112373727427 -0.00109131574866 +UniRef50_UPI00047094BE hypothetical protein 1.24567744489e-06 3.76754720125e-05 3.64297945676e-05 +UniRef50_J8VE04 Lipoprotein 0.000715700771594 0.000382835600961 -0.000332865170633 +UniRef50_A3MYE6 Recombination protein RecR 0.00395369667265 0.00081279827118 -0.00314089840147 +UniRef50_G7M4Z3 Transglutaminase domain containing protein 0.000257779220751 0.000856845342623 0.000599066121872 +UniRef50_Q8IV48 3 5 exoribonuclease 1 2.34321586507e-05 0.000517043579261 0.00049361142061 +UniRef50_E3EXY1 1.98983739718e-05 2.43887343038e-05 4.490360332e-06 +UniRef50_Q3J3W5 Putative head portal protein, HK97 family 0.00556215547599 0.00142642938993 -0.00413572608606 +UniRef50_Q4A2Z7 Putative membrane protein 5.94569914853e-06 1.54232498593e-05 9.47755071077e-06 +UniRef50_A6LQS5 Transcriptional regulator, LysR family 0.000303264442948 0.00282938679964 0.00252612235669 +UniRef50_A6LWU9 Aldo keto reductase 0.00012724246815 0.00128603683676 0.00115879436861 +UniRef50_UPI000474A99F porin 0.000256753754978 2.37349649579e-05 -0.00023301879002 +UniRef50_F2MU03 3.62933948903e-06 0.000368518953737 0.000364889614248 +UniRef50_A3MA77 A G specific adenine glycosylase 0.00011268238473 0.0040098921305 0.00389720974577 +UniRef50_F5X4A4 Ribose transport system substrate binding protein 0.00461500840068 0.00137665514854 -0.00323835325214 +UniRef50_R4LSC2 PE PGRS family protein PE_PGRS6 2.52289320997e-06 2.26069552683e-05 2.00840620583e-05 +UniRef50_UPI0004726635 hypothetical protein, partial 7.37838882327e-05 0.000344207147226 0.000270423258993 +UniRef50_Q46844 0.00206827819258 0.00136837902621 -0.00069989916637 +UniRef50_Q46843 0.00368475511095 0.00128232918258 -0.00240242592837 +UniRef50_Q07H98 Holliday junction ATP dependent DNA helicase RuvB 1.52802951599e-05 0.00239818044027 0.00238290014511 +UniRef50_Q0BZG8 RND transporter, hydrophobe amphiphile efflux 1 family, permease protein 0.00285297522603 0.00106432138039 -0.00178865384564 +UniRef50_Q46840 0.00289466897656 0.00215531915208 -0.00073934982448 +UniRef50_UPI000225AFF4 sulfurase 6.55505892138e-05 4.37609442669e-05 -2.17896449469e-05 +UniRef50_Q28UI8 tRNA ) methyltransferase 0.00514430069696 0.00102433923134 -0.00411996146562 +UniRef50_Q1IS59 NADH quinone oxidoreductase subunit D 1 5.42922279216e-06 2.46715008583e-05 1.92422780661e-05 +UniRef50_UPI0004148AB3 alpha amylase 2.58192284534e-05 2.81786574138e-05 2.3594289604e-06 +UniRef50_U3TAS5 0.000256212209626 0.00629951800019 0.00604330579056 +UniRef50_E8PJ04 BasH 0.000222924796565 0.00889855179741 0.00867562700084 +UniRef50_UPI000468284E hypothetical protein 0.000187493040823 0.00029336096543 0.000105867924607 +UniRef50_A6U170 Tyrosine recombinase XerC 0.016258464164 0.00338040907669 -0.0128780550873 +UniRef50_U7DEQ6 2 ketogluconate reductase 0.000446374300033 0.000198199131011 -0.000248175169022 +UniRef50_UPI000475888A membane protease HflC 2.86378670363e-05 1.51367561659e-05 -1.35011108704e-05 +UniRef50_J9NV26 0.000339289254085 4.9893217492e-05 -0.000289396036593 +UniRef50_H8LI74 0.00750729999877 0.000676223742219 -0.00683107625655 +UniRef50_Q3HKK3 Succinylglutamatedesuccinylase aspartoacylase 0.023105240929 0.0069131780117 -0.0161920629173 +UniRef50_Q31HL9 Chemotaxis response regulator protein glutamate methylesterase 0.000112484484167 8.28806875331e-06 -0.000104196415414 +UniRef50_C4LJY5 Ribonuclease PH 0.00112714861585 0.000263312523783 -0.000863836092067 +UniRef50_Q2G1Q1 0.0329801511633 0.00603819836705 -0.0269419527962 +UniRef50_P0AEK1 Exodeoxyribonuclease 10 0.00165532498826 0.000391147953907 -0.00126417703435 +UniRef50_G7U431 0.000684006200684 0.006133977976 0.00544997177532 +UniRef50_A0YEQ1 9.29445176944e-06 5.24804751917e-05 4.31860234223e-05 +UniRef50_Q2CHG7 Parallel beta helix repeat protein 4.12764306705e-05 0.000420152864452 0.000378876433782 +UniRef50_UPI000368D551 alkanesulfonate monooxygenase 5.63527772059e-06 1.38525554731e-05 8.21727775251e-06 +UniRef50_Q47688 0.00199756433364 0.00097080589856 -0.00102675843508 +UniRef50_A4VVE0 FAD synthase 0.00871594355611 0.0042171190003 -0.00449882455581 +UniRef50_E8SJY5 1.72854384061e-05 3.02721565979e-05 1.29867181918e-05 +UniRef50_A8YUN6 Ribosomal RNA small subunit methyltransferase H 1.11908357795e-05 9.20391048914e-06 -1.98692529036e-06 +UniRef50_Q8D5J3 Alkaline phosphatase 0.00352999417902 0.000922598428747 -0.00260739575027 +UniRef50_U5MT37 0.000171584540393 0.000910527938347 0.000738943397954 +UniRef50_D5AQC4 MotA TolQ ExbB proton channel family protein 0.00656617300245 0.000829117996951 -0.0057370550055 +UniRef50_UPI000470CBD2 hypothetical protein 3.03178991193e-06 1.05985619272e-05 7.56677201527e-06 +UniRef50_P77308 Probable D,D dipeptide transport system permease protein DdpB 0.00209729507335 0.00101245211862 -0.00108484295473 +UniRef50_F0Y304 Expressed protein 0.000204477754541 9.39116048467e-05 -0.000110566149694 +UniRef50_Q7UM39 3 methyl 2 oxobutanoate hydroxymethyltransferase 3.64178676713e-05 1.83797136616e-05 -1.80381540097e-05 +UniRef50_A9FXE7 No similarity 4.77154150896e-06 0.000474204148495 0.000469432606986 +UniRef50_P44843 Trk system potassium uptake protein TrkH 0.00251016239535 0.00100802323769 -0.00150213915766 +UniRef50_P59329 D cysteine desulfhydrase 0.00241818623843 0.00141635484783 -0.0010018313906 +UniRef50_A6TGL3 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 0.00520026705572 0.00228083892918 -0.00291942812654 +UniRef50_F0VS50 Peptide nickel transport system substrate binding protein 0.00725581772865 0.00135748706684 -0.00589833066181 +UniRef50_I3YBQ0 4.78968712417e-05 0.00015250166603 0.000104604794788 +UniRef50_B2IE93 0.000130530966624 4.3037055088e-05 -8.7493911536e-05 +UniRef50_Q67KZ3 Glutamyl Q tRNA synthetase 6.58070022039e-06 8.83652820358e-06 2.25582798319e-06 +UniRef50_UPI000366ED99 MULTISPECIES 8.64574909997e-06 1.47681816219e-05 6.12243252193e-06 +UniRef50_C9M6U4 Putative phage terminase, large subunit 6.92296885776e-06 2.07796102587e-05 1.38566414009e-05 +UniRef50_T4ZWD9 Membrane protein 0.000232526344051 0.0032589726196 0.00302644627555 +UniRef50_UPI000381DE04 hypothetical protein 1.06550541517e-05 1.51480562825e-05 4.4930021308e-06 +UniRef50_UPI00036B1851 LysR family transcriptional regulator 2.24835442955e-05 3.61934439568e-05 1.37098996613e-05 +UniRef50_UPI00037FC311 hypothetical protein 1.01897531971e-05 3.49482402365e-06 -6.69492917345e-06 +UniRef50_UPI0003AE2DCF PREDICTED 1.39334019854e-05 0.000636522670983 0.000622589268998 +UniRef50_P0AB69 NAD transhydrogenase subunit beta 0.00362116327788 0.000894307349721 -0.00272685592816 +UniRef50_F9ZV31 Flagellar hook capping protein 9.35428475578e-06 1.29068386312e-05 3.55255387542e-06 +UniRef50_Q2NHM6 MapA 0.00228802299293 0.00104403102834 -0.00124399196459 +UniRef50_E9W328 Phosphate acetyl butaryl transferase 0.000142626947925 0.000549347140785 0.00040672019286 +UniRef50_B2GBA3 Peptide deformylase 2.37200505522e-05 1.68733729908e-05 -6.8466775614e-06 +UniRef50_A8JGC3 Predicted protein 0.000105252668779 3.02516190871e-05 -7.50010496919e-05 +UniRef50_Q49173 Methyl coenzyme M reductase II subunit gamma 0.00387799133453 0.000855237893514 -0.00302275344102 +UniRef50_UPI000361E906 hypothetical protein 2.96855103562e-05 6.59761982555e-05 3.62906878993e-05 +UniRef50_L8NJL2 Cytochrome B561 0.00157972313691 0.00281076953675 0.00123104639984 +UniRef50_Q1JAC5 Copper exporting ATPase 0.000447346463614 8.98074116114e-05 -0.000357539052003 +UniRef50_Q11F32 Amino acid amide ABC transporter substrate binding protein, HAAT family 1.15836347479e-06 6.35449079452e-06 5.19612731973e-06 +UniRef50_A0REB6 3D trihydroxycyclohexane 1,2 dione hydrolase 0.000411339492031 0.00210185439583 0.0016905149038 +UniRef50_D7CVL6 Deoxynucleoside kinase 0.000701842788693 0.0242798360958 0.0235779933071 +UniRef50_Q3J2S9 0.00557270180862 0.00257777325994 -0.00299492854868 +UniRef50_Q3J2S8 0.00641035887819 0.00286261222142 -0.00354774665677 +UniRef50_UPI000476165E hypothetical protein 0.000191591116465 0.00112349860719 0.000931907490725 +UniRef50_Q7SI97 L lactate dehydrogenase 3.19466869469e-05 1.06749404309e-05 -2.1271746516e-05 +UniRef50_Q3J2S1 0.00721434999927 0.000952634532885 -0.00626171546639 +UniRef50_UPI0003B6C4C4 xylose ABC transporter ATP binding protein 1.69174407767e-05 5.75342548688e-06 -1.11640152898e-05 +UniRef50_UPI0003650D17 hypothetical protein 0.000271115895833 3.63928097898e-05 -0.000234723086043 +UniRef50_D2ZS96 0.0027314996991 0.000228927678448 -0.00250257202065 +UniRef50_Q03XZ5 Glutamate synthase small subunit 0.00453381627276 0.00165018018909 -0.00288363608367 +UniRef50_E2ZP88 Proline dehydrogenase PutA 0.00055786630609 0.000233669384873 -0.000324196921217 +UniRef50_Q6GH28 Putative oligopeptide transport ATP binding protein oppF2 0.0159832188481 0.00485786999076 -0.0111253488573 +UniRef50_D3E040 GTP 0.00209915604565 0.00236031861271 0.00026116256706 +UniRef50_M5E5J2 Genomic scaffold, msy_sf_2 2.39568169253e-06 1.44536223223e-05 1.20579406298e-05 +UniRef50_X2H7M9 Carboxyl terminal protease 0.000593751110802 0.00376025418072 0.00316650306992 +UniRef50_D0K3P5 0.0101121164405 0.000710876732369 -0.00940123970813 +UniRef50_A6LZI7 Isoprenylcysteine carboxyl methyltransferase 0.000504286531449 0.00100763635911 0.000503349827661 +UniRef50_P42305 ATP dependent RNA helicase DbpA 0.000516147317335 0.00429655576993 0.00378040845259 +UniRef50_X1UZY5 Marine sediment metagenome DNA, contig 3.8681665155e-05 0.000111234353761 7.2552688606e-05 +UniRef50_M1M078 4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH 0.00039701205416 0.000867929573028 0.000470917518868 +UniRef50_UPI0003C4395A 0.000452488469495 3.28962133344e-05 -0.000419592256161 +UniRef50_UPI0004709BDA branched chain amino acid ABC transporter permease 1.16553798445e-05 0.000178154032844 0.000166498653 +UniRef50_UPI00045D6596 PREDICTED 4.23185904477e-05 0.000289053871314 0.000246735280866 +UniRef50_U3T459 0.000419947329994 0.00577932919495 0.00535938186496 +UniRef50_Q6FDS2 Putative arginyl tRNA protein transferase 0.000408829590809 0.00413523746678 0.00372640787597 +UniRef50_UPI000373DE43 MULTISPECIES 8.15471974226e-06 3.77944125518e-05 2.96396928095e-05 +UniRef50_G8VBC3 Binding protein dependent transport system inner membrane component 0.000135138182163 0.00557722151863 0.00544208333647 +UniRef50_Q8CSG3 Geranyltranstransferase 0.021515370693 0.00377007912881 -0.0177452915642 +UniRef50_F3GGP2 Short chain dehydrogenase reductase SDR 6.70887799513e-05 0.000258201916057 0.000191113136106 +UniRef50_UPI00037791F6 hypothetical protein 1.5487134576e-05 1.25779307848e-05 -2.9092037912e-06 +UniRef50_B5SHS9 Fad dependent oxidoreductase protein 0.000340524435457 0.000649583350954 0.000309058915497 +UniRef50_T1ZTW1 ABC transporter, permease protein 0.00431967932683 0.00156167924536 -0.00275800008147 +UniRef50_UPI00035E6C4D hypothetical protein 7.24030586676e-06 2.18043469406e-05 1.45640410738e-05 +UniRef50_F1YW63 2.66217506349e-05 6.73662350099e-05 4.0744484375e-05 +UniRef50_A5UMU7 Possible glycosyltransferase 0.00418571991734 0.000303927998483 -0.00388179191886 +UniRef50_A8ACB1 Ornithine carbamoyltransferase 5.40992865279e-06 2.87034524277e-05 2.32935237749e-05 +UniRef50_A0A024HXE7 4.4577813458e-06 0.000116817340537 0.000112359559191 +UniRef50_I6TYS5 Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon 0.00641046739814 0.00189188678805 -0.00451858061009 +UniRef50_A6M012 ABC transporter related 0.000128688405295 0.00125784448352 0.00112915607822 +UniRef50_K8CD77 Outer Membrane Siderophore Receptor IroN 0.000235928743029 0.000735228311697 0.000499299568668 +UniRef50_Q1MJF1 5.33981543274e-05 4.34234919632e-05 -9.9746623642e-06 +UniRef50_UPI00042B7372 Cold shock domain protein 1 6.04312895795e-06 9.38100502455e-06 3.3378760666e-06 +UniRef50_UPI00046CFC16 hypothetical protein 3.39993364764e-05 0.000154773680814 0.000120774344338 +UniRef50_F1LHT5 GTP binding protein lepA 1.79015100806e-05 9.05517855343e-05 7.26502754537e-05 +UniRef50_UPI00045D782A PREDICTED 5.25332619329e-06 7.90367128193e-06 2.65034508864e-06 +UniRef50_C6RGK7 3.0881773394e-05 5.51377414138e-05 2.42559680198e-05 +UniRef50_Q6AB49 tRNA lysidine synthase 0.000222924796565 0.00517750791996 0.0049545831234 +UniRef50_K0HED9 ABC transporter ATP binding protein 0.000597070322555 0.00293013506612 0.00233306474357 +UniRef50_I4YTY9 TIGR00370 family protein 0.000268086682557 9.81854777999e-05 -0.000169901204757 +UniRef50_P31453 0.00205069344819 0.000248165298485 -0.0018025281497 +UniRef50_Q30TW1 50S ribosomal protein L2 0.00701152964066 0.0146653985542 0.00765386891354 +UniRef50_P31455 0.00310397802391 0.000477528513661 -0.00262644951025 +UniRef50_UPI0004666336 DNA mismatch repair protein MutS 2.23303198675e-06 9.17926033228e-05 8.9559571336e-05 +UniRef50_E2XJC4 N acetyl anhydromuramyl L alanine amidase 0.000726906226409 0.00102392753932 0.000297021312911 +UniRef50_Q03AI1 Uracil DNA glycosylase 0.000167771550603 9.46857209832e-05 -7.30858296198e-05 +UniRef50_V1MAY9 Nitrate reductase Z subunit beta 3.62124936786e-05 6.12941589944e-05 2.50816653158e-05 +UniRef50_Q8E3B1 Probable transaldolase 0.000866339044841 0.000631026796388 -0.000235312248453 +UniRef50_Q6LPL4 Chromosome partition protein MukE 0.00260321304055 0.000253490734069 -0.00234972230648 +UniRef50_Q5HGC7 Glutathione peroxidase homolog BsaA 0.00400299160089 0.00283021975904 -0.00117277184185 +UniRef50_UPI00037249D5 hypothetical protein 0.000200931688345 8.7653327349e-05 -0.000113278360996 +UniRef50_Q1GIW0 0.00190128606805 0.00180806146039 -9.322460766e-05 +UniRef50_T0V4T9 ABC transporter, ATP binding protein 0.00905415927444 0.00145554838179 -0.00759861089265 +UniRef50_I9CB55 4.81886748116e-05 5.72803929332e-05 9.0917181216e-06 +UniRef50_D3E4P0 Valine tRNA ligase 0.00329054582896 0.00131480671426 -0.0019757391147 +UniRef50_P0CL50 Trehalose phosphate phosphatase 0.00251473980109 0.00172685404999 -0.0007878857511 +UniRef50_F2E3C9 Predicted protein 8.62615371094e-05 2.92694623017e-05 -5.69920748077e-05 +UniRef50_P63699 Putative bacterioferritin B 0.00262802001527 0.00392639667628 0.00129837666101 +UniRef50_H2I4X3 DNA double strand break repair rad50 ATPase 0.00014174858218 0.00709057317207 0.00694882458989 +UniRef50_Q15RF6 Chemotaxis response regulator protein glutamate methylesterase 0.000115674971054 9.5370542934e-06 -0.000106137916761 +UniRef50_F6DH03 Menaquinone biosynthesis protein 9.5244572462e-05 0.0266261704024 0.0265309258299 +UniRef50_D3E0I7 0.00229304723541 0.000568565588045 -0.00172448164737 +UniRef50_Q5HM27 Energy coupling factor transporter ATP binding protein EcfA1 0.0227042559244 0.00461999135108 -0.0180842645733 +UniRef50_Q28Q52 Cation transporter 0.00256014111547 0.000402956119847 -0.00215718499562 +UniRef50_N9BB91 0.000362600876435 0.00475547965534 0.0043928787789 +UniRef50_UPI0004781DCE hypothetical protein 7.48068148534e-06 5.14077062992e-05 4.39270248139e-05 +UniRef50_I6T5E5 Transcriptional regulator 0.00714282133055 0.00102434242353 -0.00611847890702 +UniRef50_Q8FQB2 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 5.49502981135e-06 4.37229021006e-06 -1.12273960129e-06 +UniRef50_G0DVU1 0.00114806489261 0.00282568143088 0.00167761653827 +UniRef50_UPI00038FD62D Potassium transporting ATPase B chain 5.85040490569e-06 0.000912114197139 0.000906263792233 +UniRef50_Q6GE73 Heme response regulator HssR 0.0269970489547 0.00542696883388 -0.0215700801208 +UniRef50_Q8CUA1 0.00403179036756 0.00221573811535 -0.00181605225221 +UniRef50_Q8CUA7 0.0259202410274 0.0136261668034 -0.012294074224 +UniRef50_A4WNZ4 PfkB domain protein 0.00407048121114 0.00119327668482 -0.00287720452632 +UniRef50_S5XU40 Major facilitator transporter 0.000546570082299 0.000161081839199 -0.0003854882431 +UniRef50_UPI0004791DBF serine acetyltransferase 7.42503667962e-06 1.58940801633e-05 8.46904348368e-06 +UniRef50_UPI0003688AA7 hypothetical protein 0.000268532123949 1.27201746473e-05 -0.000255811949302 +UniRef50_P25819 Catalase 2 1.25790729447e-05 3.13343067228e-05 1.87552337781e-05 +UniRef50_Q4L5F0 Thioredoxin 0.00273056758376 0.00480531770678 0.00207475012302 +UniRef50_B1FAB2 0.000482678892713 0.000380352419825 -0.000102326472888 +UniRef50_A6L4L7 ATP synthase subunit beta 1.42953619831e-05 0.00270745190365 0.00269315654167 +UniRef50_UPI00046D5EE9 3 oxoacyl ACP synthase 1.52336802909e-05 2.58177931918e-05 1.05841129009e-05 +UniRef50_H3YRV9 0.000997615253831 0.00116572383629 0.000168108582459 +UniRef50_F5I377 1.58193877551e-05 2.2448452272e-05 6.6290645169e-06 +UniRef50_D3DZA3 Heavy metal translocating P type ATPase 0.00309782140002 0.000156682270301 -0.00294113912972 +UniRef50_Q2FV54 O acetyltransferase OatA 0.0362100731917 0.00666087038352 -0.0295492028082 +UniRef50_UPI00047BDC90 MFS transporter 5.0236606487e-06 1.42658846024e-05 9.2422239537e-06 +UniRef50_UPI000464A202 hypothetical protein 2.62444929986e-06 9.03906919312e-06 6.41461989326e-06 +UniRef50_M1MPB4 ABC 2 family transporter protein 0.000319515739074 0.000544726952555 0.000225211213481 +UniRef50_B0RBL8 Putative heme synthetase 4.65391921638e-05 0.000131057709404 8.45185172402e-05 +UniRef50_M9R255 6.91807709459e-05 7.50826157109e-05 5.901844765e-06 +UniRef50_A0A025H559 Peptide ABC transporter permease 0.000111242382095 5.77697043161e-05 -5.34726777789e-05 +UniRef50_V9DII8 1.14969513078e-05 1.19836590135e-05 4.867077057e-07 +UniRef50_UPI0004757F7D aminotransferase class IV 0.000110535061352 2.35422880129e-05 -8.69927733391e-05 +UniRef50_A3CKK8 UPF0310 protein SSA_0254 0.0128640077891 0.00091808302134 -0.0119459247678 +UniRef50_X7TXC3 PE family protein 0.000241331768728 0.000432311901296 0.000190980132568 +UniRef50_UPI000471111A hypothetical protein 0.000140988201263 9.95764449968e-05 -4.14117562662e-05 +UniRef50_G2G9I6 0.000281654108963 0.000113124013348 -0.000168530095615 +UniRef50_P75059 Spermidine putrescine import ATP binding protein PotA 1.59965985262e-05 5.10557584694e-06 -1.08910226793e-05 +UniRef50_E8U7B0 Cytochrome P450 0.000220028185941 0.016413563606 0.0161935354201 +UniRef50_P0AEP2 Galactose proton symporter 0.00243885767374 0.00150121080195 -0.00093764687179 +UniRef50_Q6FEE9 0.000321739177092 0.00698290124442 0.00666116206733 +UniRef50_Q2YYE7 Truncated methicillin resistance related surface protein 0.00234153872901 0.00102143556822 -0.00132010316079 +UniRef50_UPI00032A143E PREDICTED 5.38021232498e-05 3.99964394557e-05 -1.38056837941e-05 +UniRef50_UPI0003F48FDB hypothetical protein TREMEDRAFT_63328 8.65847279748e-06 5.5075939979e-06 -3.15087879958e-06 +UniRef50_E3LBP8 1.75000730059e-05 1.53818706909e-06 -1.59618859368e-05 +UniRef50_A0A012NRC3 0.0093344085556 0.00139176347189 -0.00794264508371 +UniRef50_I4CV16 0.000356597260487 0.000393755606923 3.7158346436e-05 +UniRef50_B2TLB0 Diguanylate cyclase phosphodiesterase domain 2 0.000248493829393 0.00231238885482 0.00206389502543 +UniRef50_M4INN6 Rrf2 family protein 2.32624354312e-05 3.17846011815e-05 8.5221657503e-06 +UniRef50_UPI00047AF807 hypothetical protein 4.12713220281e-06 5.40447153074e-05 4.99175831046e-05 +UniRef50_Q5HKL4 Thiamine biosynthesis protein, putative 0.0090055498503 0.00429080734419 -0.00471474250611 +UniRef50_Q1YIF1 0.000610973374032 0.000391295899974 -0.000219677474058 +UniRef50_B2TMF1 Site specific recombinase 0.0002066529136 0.00157067885137 0.00136402593777 +UniRef50_F2MQN5 3.70045074655e-05 3.61516064688e-05 -8.529009967e-07 +UniRef50_UPI00041B00FC hypothetical protein 1.10607830722e-05 2.83854097673e-05 1.73246266951e-05 +UniRef50_UPI00029A8D4F methylmalonyl CoA mutase 6.36543805084e-05 5.45652209051e-05 -9.0891596033e-06 +UniRef50_C1KZA0 5 deoxy glucuronate isomerase 5.30764382281e-05 0.00213503687376 0.00208196043553 +UniRef50_Q73S23 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.32620925116e-05 4.09412590959e-05 1.76791665843e-05 +UniRef50_UPI000474601B branched chain amino acid ABC transporter ATP binding protein 0.000102666257451 6.08632424973e-05 -4.18030149537e-05 +UniRef50_W4TYR9 Excinuclease 9.2096340991e-06 0.000236006803135 0.000226797169036 +UniRef50_Q8DT53 Glucose 1 phosphate adenylyltransferase 0.00372927227052 0.00176626221435 -0.00196301005617 +UniRef50_D3DYR5 ATP dependent DNA helicase 0.00355779524266 0.000427518492966 -0.00313027674969 +UniRef50_UPI0003A7C5DF hypothetical protein 9.61576586212e-05 0.000436855325546 0.000340697666925 +UniRef50_UPI00037226A5 hypothetical protein 3.98159323817e-05 2.50472935392e-05 -1.47686388425e-05 +UniRef50_K1ZGV2 0.000114044902302 0.000306505510537 0.000192460608235 +UniRef50_B9TBU0 2.25752788605e-05 0.000100848049587 7.82727707265e-05 +UniRef50_A6LWA9 0.000546743370497 0.000274287961482 -0.000272455409015 +UniRef50_A6TG48 Aspartate ammonia ligase 0.00327719420505 0.00348725676534 0.00021006256029 +UniRef50_A5F4D2 Phosphomethylpyrimidine synthase 0.00315592818976 0.00586377024192 0.00270784205216 +UniRef50_R5X951 0.0017848759856 0.00103916192879 -0.00074571405681 +UniRef50_A5D654 4 diphosphocytidyl 2 C methyl D erythritol kinase 7.95459431843e-06 9.05863134377e-06 1.10403702534e-06 +UniRef50_Q5HLI3 Amino acid ABC transporter, permease protein 0.0226405286452 0.00479868385436 -0.0178418447908 +UniRef50_E1SVE3 Rhodanese domain protein 2.87651919353e-05 1.09752266311e-05 -1.77899653042e-05 +UniRef50_A6QDV1 0.0111824237392 0.00413780450569 -0.00704461923351 +UniRef50_W8T476 Pe pgrs family protein 6.39865258548e-06 2.6132570754e-06 -3.78539551008e-06 +UniRef50_E6MZ19 Periplasmic protein 0.00014842175184 0.00207449855273 0.00192607680089 +UniRef50_V6U561 4.21551589043e-05 0.000102416579916 6.02614210117e-05 +UniRef50_I1WGW6 8.34530557572e-05 0.00446246289985 0.00437900984409 +UniRef50_UPI000472273F aspartate ammonia lyase 2.39021220366e-06 5.19345903303e-06 2.80324682937e-06 +UniRef50_UPI000372D1EE cold shock protein 7.38621989468e-05 8.7187408965e-05 1.33252100182e-05 +UniRef50_L0LNW6 0.000639695633728 0.000274627427356 -0.000365068206372 +UniRef50_D3E1A2 ATPase 0.00319507884737 0.000934729371988 -0.00226034947538 +UniRef50_N6Y413 5.04529658204e-05 1.38833484413e-05 -3.65696173791e-05 +UniRef50_C6DIM3 p hydroxybenzoic acid efflux pump subunit AaeB 0.00250918122334 0.00124337077283 -0.00126581045051 +UniRef50_UPI00047D54B2 DSBA oxidoreductase 2.15050988684e-05 1.09826398542e-05 -1.05224590142e-05 +UniRef50_UPI00046ED66D aminotransferase 1.28082499582e-05 0.000354387395651 0.000341579145693 +UniRef50_UPI000474BB68 O sialoglycoprotein endopeptidase, partial 1.31084401493e-05 1.36668293738e-05 5.583892245e-07 +UniRef50_D8HG20 Probable membrane protein 0.00205098719367 0.000809828614498 -0.00124115857917 +UniRef50_UPI0003601444 hypothetical protein 5.43161980025e-05 1.72281173397e-05 -3.70880806628e-05 +UniRef50_P43270 Thermonuclease 0.00976498114362 0.00663537280379 -0.00312960833983 +UniRef50_H0TU43 0.000128710248891 0.000237520138222 0.000108809889331 +UniRef50_P33346 0.00470375312309 0.00123258267525 -0.00347117044784 +UniRef50_Q2GCS7 Phosphoribosylaminoimidazole succinocarboxamide synthase 7.5679467235e-05 0.00254981444005 0.00247413497281 +UniRef50_P44299 8.72430943044e-06 0.00099818399825 0.00098945968882 +UniRef50_Q8TK95 Bifunctional protein FolD 1.29437233906e-05 2.68682720579e-06 -1.02568961848e-05 +UniRef50_B4U336 Glutamine amidotransferase 0.00517032751371 0.00292831621464 -0.00224201129907 +UniRef50_R4K1J7 Iron only hydrogenase large subunit 0.000354850001566 0.00175430014147 0.0013994501399 +UniRef50_UPI00031BEDB0 hypothetical protein 1.09863127949e-05 0.000111865046445 0.00010087873365 +UniRef50_B7M4N2 Bifunctional protein FolD 0.00360609107273 0.000220021779253 -0.00338606929348 +UniRef50_C6SLX9 0.000473783882208 0.000660305050415 0.000186521168207 +UniRef50_B9KRV7 0.00787936393408 0.00194040537606 -0.00593895855802 +UniRef50_U0BIJ8 Protein UshA 0.00247365967226 0.000510934398752 -0.00196272527351 +UniRef50_A6LWU4 Non specific serine threonine protein kinase 0.000422068317642 0.000515594114356 9.3525796714e-05 +UniRef50_E3FEG1 4.92537471239e-06 1.14961805906e-05 6.57080587821e-06 +UniRef50_H3ZXZ3 0.000581104572138 4.41373054089e-05 -0.000536967266729 +UniRef50_Q6FZE7 50S ribosomal protein L17 0.00240629427813 0.000492194508663 -0.00191409976947 +UniRef50_UPI000362A66F hypothetical protein 6.48779034289e-05 1.30160438547e-06 -6.35762990434e-05 +UniRef50_UPI0001FFE9A8 diguanylate cyclase 3.32914985619e-05 3.39382423095e-05 6.467437476e-07 +UniRef50_UPI00035037FE PREDICTED 5.46873487573e-05 7.57796938602e-05 2.10923451029e-05 +UniRef50_U7PB07 0.000257314118328 0.000340279518339 8.2965400011e-05 +UniRef50_A5U0Z1 Succinyl CoA ligase [ADP forming] subunit beta 0.000406619125096 0.00479580865036 0.00438918952526 +UniRef50_W4U4M2 Heme ABC transporter 6.43298972005e-05 0.000244755104297 0.000180425207097 +UniRef50_P76458 Acetate CoA transferase subunit alpha 0.00324359388849 0.000283958370386 -0.0029596355181 +UniRef50_A6LYU9 Integral membrane sensor hybrid histidine kinase 0.000103945619926 0.00155925042433 0.0014553048044 +UniRef50_Q3JI08 7.59977215689e-05 3.55802925887e-05 -4.04174289802e-05 +UniRef50_UPI000475B85D hypothetical protein 9.48367204319e-05 0.00172013453417 0.00162529781374 +UniRef50_UPI00039FFF6C NrdR family transcriptional regulator 0.000162438266037 0.000100179945374 -6.2258320663e-05 +UniRef50_Q1GI98 Glutamate ammonia ligase adenylyltransferase 0.0010261631559 0.000485259949455 -0.000540903206445 +UniRef50_G7M6U6 Integral membrane sensor signal transduction histidine kinase 0.000307141870174 0.000432126768835 0.000124984898661 +UniRef50_G9ZVA2 6.9707653617e-05 3.48146600093e-05 -3.48929936077e-05 +UniRef50_Q9RZN0 GGDEF family protein 0.000168490163255 0.0432835645102 0.0431150743469 +UniRef50_Q72GQ7 Tripartite transporter, large subunit 6.00615134022e-06 1.32050747074e-05 7.19892336718e-06 +UniRef50_UPI0003707BF1 nucleoside hydrolase, partial 2.83652759102e-05 1.35701973595e-05 -1.47950785507e-05 +UniRef50_J9YTR5 Sensor histidine kinase CsrS 0.000251882602535 0.000118919478603 -0.000132963123932 +UniRef50_UPI000472729B hypothetical protein 7.05533790587e-05 8.38352582416e-05 1.32818791829e-05 +UniRef50_UPI0003791242 phosphoenolpyruvate synthase 2.4420823571e-06 6.28472670581e-07 -1.81360968652e-06 +UniRef50_Q2FJB8 Transcriptional regulator CtsR 0.0207619291095 0.000825712385463 -0.019936216724 +UniRef50_E3F288 1.71865603074e-05 1.62592244503e-05 -9.273358571e-07 +UniRef50_A3MQP5 Aminomethyltransferase 4.56235562189e-05 0.0036498446816 0.00360422112538 +UniRef50_A0PZ54 Mur ligase family protein 0.000469687904841 0.000987821403005 0.000518133498164 +UniRef50_UPI000375510C hypothetical protein 4.12995409554e-06 1.74569528325e-05 1.3326998737e-05 +UniRef50_UPI00037D1824 hypothetical protein 0.000686230069954 0.00024011623735 -0.000446113832604 +UniRef50_Q8UEY5 CTP synthase 0.0149246419771 0.0693609245991 0.054436282622 +UniRef50_E4PL62 Secreted protein containing YkuD domain 3.03028094565e-06 0.000242111782486 0.00023908150154 +UniRef50_UPI0002FE793C betaine aldehyde dehydrogenase 6.36842699923e-06 2.05168448965e-05 1.41484178973e-05 +UniRef50_T1Y8A8 Acetyltransferase 0.0213377725131 0.0047424226744 -0.0165953498387 +UniRef50_F0P4Z6 Oligopeptide transport ATP binding protein 0.010130143973 0.00354298663843 -0.00658715733457 +UniRef50_UPI0003728158 hypothetical protein 1.53038424264e-05 0.00122815258107 0.00121284873864 +UniRef50_UPI00016C46F4 hypothetical protein 2.92677527275e-05 0.00456849423887 0.00453922648614 +UniRef50_F1SCK4 7.13475604041e-05 6.30261314385e-05 -8.3214289656e-06 +UniRef50_P75836 0.00165334418126 0.00123996266424 -0.00041338151702 +UniRef50_C7IYG9 Os02g0192900 protein 9.08724943007e-05 5.90548653255e-05 -3.18176289752e-05 +UniRef50_Q9RZ97 TerF related protein 0.00021181362866 0.0509594167764 0.0507476031477 +UniRef50_UPI00047811D4 leucine isoleucine valine transporter ATP binding subunit 0.000153137871706 3.79816943265e-05 -0.000115156177379 +UniRef50_A6VVT1 Isochorismatase 0.000404344041288 0.0059556549115 0.00555131087021 +UniRef50_UPI0001E92D34 DNA gyrase subunit B 6.17057410147e-06 3.59677165188e-05 2.97971424173e-05 +UniRef50_C6SEB8 0.000438937196334 0.00104410403273 0.000605166836396 +UniRef50_C6SRB4 0.00346895339921 0.00440102668756 0.00093207328835 +UniRef50_P0AGD2 Superoxide dismutase [Cu Zn] 0.00129506510486 0.0017472228371 0.00045215773224 +UniRef50_U3ST50 0.00773292438433 0.00107386885985 -0.00665905552448 +UniRef50_UPI000364FC3A hypothetical protein 0.000330050274218 0.000119089844559 -0.000210960429659 +UniRef50_Q1GKH0 AMP dependent synthetase and ligase 0.0108787101069 0.00301697327454 -0.00786173683236 +UniRef50_Q2NIM1 Thymidine kinase 1.31424068445e-05 2.29823983355e-05 9.839991491e-06 +UniRef50_E0RBR7 Periplasmic [Fe] hydrogenase large subunit 0.000171847384623 0.00263450322562 0.002462655841 +UniRef50_A4W401 Polyribonucleotide nucleotidyltransferase 0.000238965045288 2.01014961378e-05 -0.00021886354915 +UniRef50_K7JKT8 0.000229648434056 1.22301169047e-05 -0.000217418317151 +UniRef50_UPI0003B4FA18 membrane protein 3.35947674872e-06 2.01704023608e-06 -1.34243651264e-06 +UniRef50_UPI0003607215 hypothetical protein, partial 0.000198769168897 5.23081817619e-05 -0.000146460987135 +UniRef50_M9S617 ABC transporter permease 0.000283824051773 0.000663633045389 0.000379808993616 +UniRef50_R9SMZ9 Cysteine tRNA ligase 0.00308882240295 0.000540837269867 -0.00254798513308 +UniRef50_UPI00047912C6 hypothetical protein 5.12398274445e-05 6.40095765546e-05 1.27697491101e-05 +UniRef50_Q3HKE0 0.0205628439732 0.00203825318709 -0.0185245907861 +UniRef50_E4Z9V1 SUN family protein 0.000305980378466 0.00422439254261 0.00391841216414 +UniRef50_B9KKY7 0.0025345487823 0.0043217078809 0.0017871590986 +UniRef50_Q2VZ24 Peptidyl tRNA hydrolase 5.74846326368e-05 2.91483509187e-05 -2.83362817181e-05 +UniRef50_A0A015J1B9 1.82988861497e-05 1.94441213823e-05 1.1452352326e-06 +UniRef50_Q8X5L7 Cellulose synthase catalytic subunit [UDP forming] 0.00259368540632 0.000930100673266 -0.00166358473305 +UniRef50_X5PU41 0.000134901540474 2.70683094764e-05 -0.000107833230998 +UniRef50_I6ZGW2 Type IV pilus biogenesis stability protein PilW 2.01261722517e-05 8.92100626696e-05 6.90838904179e-05 +UniRef50_B9KK81 Methyltransferase type 12 0.00174002928411 0.000311954266055 -0.00142807501805 +UniRef50_I3X0I9 0.000176405419619 2.48154224269e-05 -0.000151589997192 +UniRef50_K2J734 1.15612518295e-05 3.30030067357e-05 2.14417549062e-05 +UniRef50_UPI00035FADFC hypothetical protein 0.000786974983318 0.000211042121785 -0.000575932861533 +UniRef50_UPI0002B9D075 hypothetical protein 0.000204420778622 8.45790641995e-05 -0.000119841714422 +UniRef50_A3XC42 4.13019570544e-06 3.82624274127e-05 3.41322317073e-05 +UniRef50_A4WWJ4 0.000663580031506 0.00147843996562 0.000814859934114 +UniRef50_A1S9Z4 Oxidoreductase, GMC family 0.000526152228409 0.000383525781208 -0.000142626447201 +UniRef50_UPI0003B34D06 DNA topoisomerase I 2.55820535574e-06 4.92927019695e-06 2.37106484121e-06 +UniRef50_R1EBF4 4.52545448584e-06 2.20506901545e-05 1.75252356687e-05 +UniRef50_G0LQE0 Capsular polysaccharide synthesis enzyme 0.013501218799 0.000981233109992 -0.012519985689 +UniRef50_Q2FHD8 Aerobic glycerol 3 phosphate dehydrogenase 0.0204808430227 0.00543007428102 -0.0150507687417 +UniRef50_D9R3D4 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 5.58686712658e-05 0.00137604761137 0.0013201789401 +UniRef50_Q896N6 Thymidylate kinase 0.000227227001991 0.000831550133378 0.000604323131387 +UniRef50_UPI00016A3FE0 spermidine putrescine ABC transporter ATPase subunit, partial 0.00021706102784 8.42731383421e-05 -0.000132787889498 +UniRef50_A7WYE6 0.000965440689355 5.53156467708e-05 -0.000910125042584 +UniRef50_UPI000472C988 hypothetical protein, partial 0.000175980139253 0.00222773468081 0.00205175454156 +UniRef50_K2ADN8 Putative insertion sequence transposase protein 0.00014787166933 8.60840797902e-05 -6.17875895398e-05 +UniRef50_A6LPZ0 Extracellular solute binding protein, family 1 0.00117647242485 0.00163230122652 0.00045582880167 +UniRef50_G6DGM2 9.22862415084e-06 1.02087904951e-05 9.8016634426e-07 +UniRef50_Q9HNI0 Thermosome subunit beta 0.00351395688958 0.000725356003674 -0.00278860088591 +UniRef50_U5UQ99 Peptidase M16 domain containing protein 0.0175938953812 0.00380765055708 -0.0137862448241 +UniRef50_E0S0F8 Ornithine cyclodeaminase 0.00239817583446 0.000620952845356 -0.0017772229891 +UniRef50_C7NCR9 Nickel ABC transporter, periplasmic nickel binding protein 7.31561993853e-05 0.000357336078491 0.000284179879106 +UniRef50_Q8CNS7 Replication associated protein 0.00985967378344 0.00888201851496 -0.00097765526848 +UniRef50_Q6A969 DNA repair protein RecO 0.00040735898078 0.00700444070391 0.00659708172313 +UniRef50_Q6AKT0 0.00268281462992 0.0036569196789 0.00097410504898 +UniRef50_Q88DY1 Hemin import ATP binding protein HmuV 1.01990828502e-05 0.00184356926955 0.0018333701867 +UniRef50_Q6MML0 Threonine tRNA ligase 4.54569158898e-06 0.000566088529588 0.000561542837999 +UniRef50_T7GQG4 Inner membrane transporter ygjI 0.00197573266341 0.000244400031881 -0.00173133263153 +UniRef50_Q9KRQ1 Catalase 1.04820572794e-05 1.84259493427e-05 7.9438920633e-06 +UniRef50_UPI0003698FB7 hypothetical protein 0.000200219400437 0.00015130413626 -4.8915264177e-05 +UniRef50_UPI00040AA97B hypothetical protein 2.15774835998e-05 7.00422327691e-05 4.84647491693e-05 +UniRef50_P9WH42 30S ribosomal protein S1 0.000197195646366 0.009651750944 0.00945455529763 +UniRef50_T1Y598 Transporter, drug metabolite exporter family protein 0.0111822240768 0.00214934800238 -0.00903287607442 +UniRef50_E7MYR2 0.000487296204386 0.000410150858771 -7.7145345615e-05 +UniRef50_Q3JSR8 Alkanesulfonate monooxygenase 2.451784505e-05 3.23152498095e-05 7.7974047595e-06 +UniRef50_W5X5Q8 3.55721134767e-05 3.10624836014e-05 -4.5096298753e-06 +UniRef50_Q5F6G1 UPF0213 protein NGO1598 1.55648948476e-05 0.000787511213846 0.000771946318998 +UniRef50_B2TIV3 Phospholipase, patatin family 0.000524117785486 0.00248484360979 0.0019607258243 +UniRef50_R5XTT8 AMP binding enzyme 0.00041188844411 0.00204270112881 0.0016308126847 +UniRef50_UPI00037CADCD hypothetical protein 2.81945583588e-05 0.00271745625739 0.00268926169903 +UniRef50_Q72C18 Acetylglutamate kinase 3.14443004401e-05 1.46829392759e-05 -1.67613611642e-05 +UniRef50_D4HAH0 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.000213615565721 0.00442855000265 0.00421493443693 +UniRef50_UPI000329D795 PREDICTED 0.00313326402326 0.00846883626048 0.00533557223722 +UniRef50_F7Y006 0.00018436034628 7.79354544998e-05 -0.00010642489178 +UniRef50_O67501 Inorganic pyrophosphatase 0.00078165386211 0.00686565159652 0.00608399773441 +UniRef50_UPI00041A51D0 hypothetical protein 0.000172267658381 0.000100916247582 -7.1351410799e-05 +UniRef50_B7I3M9 Peptidase M24 6.44907725824e-05 0.00335431983008 0.0032898290575 +UniRef50_UPI000361F1B4 hypothetical protein 3.56997845568e-05 2.57131333885e-05 -9.9866511683e-06 +UniRef50_P0A5L7 Glutamine dependent NAD synthetase 0.000129113099896 0.00434460270108 0.00421548960118 +UniRef50_D5BPQ5 RNA polymerase sigma factor RpoH 0.0127247515463 0.00651547956737 -0.00620927197893 +UniRef50_R4K8M3 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.00038801659254 0.00230151386389 0.00191349727135 +UniRef50_UPI0002558C92 helix turn helix domain containing protein 8.68067067684e-05 1.27279246909e-05 -7.40787820775e-05 +UniRef50_K7YS10 0.000110268545919 0.00382407404587 0.00371380549995 +UniRef50_D8JIS8 0.000392228991138 0.00469957169232 0.00430734270118 +UniRef50_F8KHK9 Response regulator protein 0.0105888132497 0.00447273461377 -0.00611607863593 +UniRef50_P76230 Putative metabolite transport protein YdjK 0.00230555362504 0.000547835986836 -0.0017577176382 +UniRef50_P52610 Flagellar motor switch protein FliG 0.000114505355566 0.000714172508987 0.000599667153421 +UniRef50_F0N1J6 Sensor histidine kinase 0.000224718965463 0.0070532597898 0.00682854082434 +UniRef50_G8PSK7 Short chain dehydrogenase reductase SDR 0.00116272706244 0.00127810915673 0.00011538209429 +UniRef50_W8UIH3 Stage V sporulation protein R 0.000738160104607 0.000812000262474 7.3840157867e-05 +UniRef50_UPI000373430C 30S ribosomal protein S17 3.56223020432e-05 0.000325710261417 0.000290087959374 +UniRef50_D4HFJ3 8.86813425461e-05 0.00103483409075 0.000946152748204 +UniRef50_E1NZW5 PspA related protein 6.92211471039e-05 0.000837372458833 0.000768151311729 +UniRef50_B9KQ43 Fatty acid beta hydroxylase 0.00333030122227 0.00127368269576 -0.00205661852651 +UniRef50_D4Z694 Ribonuclease D 5.92448613162e-05 1.08310663521e-05 -4.84137949641e-05 +UniRef50_UPI00047C78E3 RNA polymerase sigma factor RpoE 0.000564738195589 4.16521812256e-05 -0.000523086014363 +UniRef50_B4U3I6 Phosphoglucosamine mutase 0.0321541484765 0.0186199097666 -0.0135342387099 +UniRef50_A4VZG9 Transcriptional regulator 0.00406062414036 0.0024146277593 -0.00164599638106 +UniRef50_UPI0003056218 hypothetical protein 0.000123303630096 8.07794198247e-05 -4.25242102713e-05 +UniRef50_UPI00046F7510 hypothetical protein 1.7605409365e-05 9.5686865664e-05 7.8081456299e-05 +UniRef50_Q49V01 Ribonuclease M5 0.00741152213516 0.00340834525099 -0.00400317688417 +UniRef50_UPI000367E0A5 hypothetical protein 5.68488687639e-06 7.89096547797e-05 7.32247679033e-05 +UniRef50_Q8CMV9 Succinyl diaminopimelate desuccinylase 0.0113088813103 0.00585785448005 -0.00545102683025 +UniRef50_F2A6D1 0.00038328227668 7.93281095377e-05 -0.000303954167142 +UniRef50_UPI00045E4C42 PREDICTED 1.0723083665e-05 6.08342735764e-06 -4.63965630736e-06 +UniRef50_W3ZDR5 NLPA lipofamily protein 5.11046067427e-05 3.9741229972e-05 -1.13633767707e-05 +UniRef50_G9WJ36 Ribonucleoside diphosphate reductase subunit beta 0.00520883524132 0.00475779832854 -0.00045103691278 +UniRef50_F0Y9Q8 8.36626966138e-05 0.000113438503525 2.97758069112e-05 +UniRef50_UPI00035FAC18 hypothetical protein 1.95072744038e-06 3.00499659258e-06 1.0542691522e-06 +UniRef50_I4XUK4 Outer membrane porin, OprD family 0.00139703590694 0.00062531609542 -0.00077171981152 +UniRef50_Q8UII5 Glutathione synthetase 0.0090507001568 0.00478608089535 -0.00426461926145 +UniRef50_Q6ME50 30S ribosomal protein S8 0.000283824051773 0.0414143439189 0.0411305198671 +UniRef50_UPI0003692650 hypothetical protein, partial 3.33669563539e-05 1.5889263412e-05 -1.74776929419e-05 +UniRef50_A4WSD1 Haemin degrading family protein 0.000174224302552 0.000295316705201 0.000121092402649 +UniRef50_Q5NP09 Leucyl phenylalanyl tRNA protein transferase 1.75444608397e-05 1.42915105323e-05 -3.2529503074e-06 +UniRef50_A5UNB6 Formylmethanofuran dehydrogenase subunit E, metal binding 0.00640596899918 0.00188767038702 -0.00451829861216 +UniRef50_Q9JZ25 8.21812747825e-05 0.00409415096393 0.00401196968915 +UniRef50_A1WR07 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.11573132684e-05 0.000231671029202 0.000220513715934 +UniRef50_Q9JZ20 6.46749267023e-05 0.00468628230578 0.00462160737908 +UniRef50_V8UNT0 0.000247103275661 0.000182858640994 -6.4244634667e-05 +UniRef50_UPI0003730FD4 MULTISPECIES 0.000405658192578 7.19590933629e-05 -0.000333699099215 +UniRef50_P77328 Putative purine permease YbbY 0.00192780444417 0.0011862522077 -0.00074155223647 +UniRef50_H5NY39 8.25925185355e-05 2.12801456374e-05 -6.13123728981e-05 +UniRef50_Q20719 Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 0.000172463416446 5.27799997407e-05 -0.000119683416705 +UniRef50_UPI00036C23C8 hypothetical protein, partial 0.0018228730035 0.000707256978392 -0.00111561602511 +UniRef50_R0B9U9 2.82392150721e-05 0.000102565027804 7.43258127319e-05 +UniRef50_Q59637 Pyruvate dehydrogenase E1 component 0.000960617195579 0.0113516571623 0.0103910399667 +UniRef50_P32140 Sulfoquinovose isomerase 0.00383661120243 0.00106210480799 -0.00277450639444 +UniRef50_I0C1T3 Phosphohydrolase 0.00392995092711 0.00585045773662 0.00192050680951 +UniRef50_Q7AHT0 Protein FixC 0.0015551025886 0.00104516001548 -0.00050994257312 +UniRef50_A0A023RTX7 3 oxoacyl ACP reductase 0.000167029198609 0.00312366322429 0.00295663402568 +UniRef50_P0ABQ3 2 hydroxy 3 oxopropionate reductase 0.00340693925121 0.00020044120263 -0.00320649804858 +UniRef50_Q132J0 1.81498142186e-05 3.18516102133e-05 1.37017959947e-05 +UniRef50_UPI00035C36AF hypothetical protein 8.95694072163e-05 1.6931379476e-05 -7.26380277403e-05 +UniRef50_F8DK82 Bacterial capsule synthesis protein 0.00538991828681 0.00250829743023 -0.00288162085658 +UniRef50_Q9HU78 Histidine utilization repressor 0.00161030237273 0.00696790273987 0.00535760036714 +UniRef50_Q67FW7 DeoX 0.000372901818082 0.00610401970517 0.00573111788709 +UniRef50_UPI0004737BA1 hypothetical protein, partial 0.000214438723608 0.000129729889967 -8.4708833641e-05 +UniRef50_R4NT35 Bipolar DNA helicase 0.000833639002711 0.000732574829828 -0.000101064172883 +UniRef50_P39629 Glucose 1 phosphate thymidylyltransferase 0.000134484457948 1.82363283586e-05 -0.000116248129589 +UniRef50_A4XS92 Multisubunit potassium proton antiporter, PhaD subunit 0.000186081699149 0.000121114164807 -6.4967534342e-05 +UniRef50_UPI00047D80A6 DNA gyrase subunit A 5.43624143822e-06 8.94022097455e-06 3.50397953633e-06 +UniRef50_F0KNK5 Two component system response regulator 0.000388914210183 0.00655936810024 0.00617045389006 +UniRef50_X1C4Y0 Marine sediment metagenome DNA, contig 0.000428779610345 0.000176686933668 -0.000252092676677 +UniRef50_N3AGF2 Cytochrome c type protein TorY 0.00199625858811 0.000962100964089 -0.00103415762402 +UniRef50_V0HZJ9 Cysteine desulfurase ATPase component 2.90311699825e-05 4.32427377806e-05 1.42115677981e-05 +UniRef50_UPI00047B2607 pyrroloquinoline quinone biosynthesis protein PqqD 0.000568164998459 0.0004786165479 -8.9548450559e-05 +UniRef50_Q5HR89 Nucleoside permease NupC, putative 0.00922752397086 0.00297410986471 -0.00625341410615 +UniRef50_A6X846 2.06784488205e-05 3.56971296522e-05 1.50186808317e-05 +UniRef50_Q8X5R9 Multidrug resistance outer membrane protein MdtP 0.00628031205658 0.000834369175775 -0.0054459428808 +UniRef50_R7PWL5 Tetrahydromethanopterin S methyltransferase subunit D 0.00185388268482 0.00175107661102 -0.0001028060738 +UniRef50_UPI000381633B hypothetical protein 8.35102652347e-05 0.000346544146433 0.000263033881198 +UniRef50_O28392 DNA directed RNA polymerase subunit B 0.00357461536165 0.00145920216293 -0.00211541319872 +UniRef50_UPI000471C680 hypothetical protein 0.000214021699552 3.86798106142e-05 -0.000175341888938 +UniRef50_C6C0W1 Flagellar hook capping protein 6.25011979495e-06 8.53687735363e-06 2.28675755868e-06 +UniRef50_C5ZYT0 Flagellar biosynthetic protein fliR 0.000329918202451 0.0037714211467 0.00344150294425 +UniRef50_A3M994 Glycerol 3 phosphate acyltransferase 0.000100296958099 0.00654940272376 0.00644910576566 +UniRef50_O27221 0.00381901260513 0.000564871506842 -0.00325414109829 +UniRef50_UPI00046F1A00 PTS lactose transporter subunit IIC, partial 2.35694247981e-05 5.12340255421e-05 2.7664600744e-05 +UniRef50_Q8X852 Anaerobic nitric oxide reductase flavorubredoxin homolog 0.000906004697287 0.00067171309201 -0.000234291605277 +UniRef50_N1QCI2 3.47431612211e-05 1.97791547763e-05 -1.49640064448e-05 +UniRef50_UPI000346EB07 hypothetical protein 6.84484538426e-06 0.000575029185245 0.000568184339861 +UniRef50_C2TQQ2 Peptidase, M23 M37 4.72809257569e-05 0.00036012092922 0.000312840003463 +UniRef50_Q31J61 tRNA pseudouridine synthase D 1.36551539828e-05 1.44006784927e-05 7.455245099e-07 +UniRef50_Q82X69 DNA directed RNA polymerase subunit alpha 0.000301970573484 0.00248231436974 0.00218034379626 +UniRef50_A5FRB6 Triosephosphate isomerase 6.32048671276e-06 1.10248192836e-05 4.70433257084e-06 +UniRef50_E3EYC8 0.000204316364208 7.7206553359e-05 -0.000127109810849 +UniRef50_UPI000383025F hypothetical protein 5.79978541618e-06 0.000111025359298 0.000105225573882 +UniRef50_B9KX89 Lipopolysaccharide biosynthesis protein like protein 0.00653475087511 0.00167991242651 -0.0048548384486 +UniRef50_UPI0004799F87 hypothetical protein 5.08306769381e-05 0.000161228410485 0.000110397733547 +UniRef50_Q5HMA0 Putative aldehyde dehydrogenase SERP1729 0.00993051916199 0.00362160397685 -0.00630891518514 +UniRef50_J7Q688 0.00588770481722 0.00173715708938 -0.00415054772784 +UniRef50_B7GSP5 UPF0145 protein Blon_0093 BLIJ_0092 0.00626760354376 0.00089489910665 -0.00537270443711 +UniRef50_P0A080 Methionine aminopeptidase 0.0184456943461 0.00612905183714 -0.012316642509 +UniRef50_UPI00029AD8DA MgtC family protein 9.76279424565e-06 2.37583207115e-05 1.39955264658e-05 +UniRef50_E4RH84 0.000319002244105 0.000121789178688 -0.000197213065417 +UniRef50_UPI0002E94BF6 hypothetical protein 1.80643877389e-05 8.4698820894e-06 -9.5945056495e-06 +UniRef50_I6D5L2 DNA mismatch repair endonuclease MutH 0.00157544674083 0.000676297798153 -0.000899148942677 +UniRef50_V6J5F5 0.00029699405655 9.24832007824e-05 -0.000204510855768 +UniRef50_N3N816 2.23763877706e-05 1.07733713138e-05 -1.16030164568e-05 +UniRef50_UPI00046883B3 hypothetical protein 6.08898639376e-06 3.91170731897e-06 -2.17727907479e-06 +UniRef50_O26311 0.00252666245388 0.000252407440337 -0.00227425501354 +UniRef50_R9GEA9 0.000118797513848 5.49949343175e-05 -6.38025795305e-05 +UniRef50_F2MRI9 PTS family mannose fructose sorbose porter component IIB 0.00211397282274 0.0114010743195 0.00928710149676 +UniRef50_Q2IXV2 Transglutaminase like 0.00587363564302 0.000187308078712 -0.00568632756431 +UniRef50_R4RQ23 0.00225032262051 0.00108583484632 -0.00116448777419 +UniRef50_A4WT49 Flagellar hook capping protein 0.000373500608085 2.91475161056e-05 -0.000344353091979 +UniRef50_W4KX88 0.000182360381085 0.00440664585546 0.00422428547438 +UniRef50_UPI0003822DD9 hypothetical protein 3.26953949297e-05 3.99070481698e-05 7.2116532401e-06 +UniRef50_UPI0003599277 PREDICTED 8.75011433112e-06 1.77644757568e-05 9.01436142568e-06 +UniRef50_B1HQN9 Oxidoreductase 3.09811814829e-05 3.60951961111e-05 5.1140146282e-06 +UniRef50_A6LQN9 0.000220752040266 0.00114727635005 0.000926524309784 +UniRef50_A4VWU0 Oxidoreductase, aldo keto reductase family 0.00531654410109 0.00469659214923 -0.00061995195186 +UniRef50_Q71ZB6 Valine tRNA ligase 0.011607580159 0.00670740818618 -0.00490017197282 +UniRef50_UPI0001745DE2 iojap like protein 1.57311865608e-05 1.54185978416e-05 -3.125887192e-07 +UniRef50_X2D8N8 CCR4 NOT transcription complex subunit 1 like protein 2.073948527e-07 1.64110422442e-05 1.62036473915e-05 +UniRef50_UPI000288BDB9 hypothetical protein 4.23818883364e-05 0.000675120098089 0.000632738209753 +UniRef50_A8TYU1 0.000181654248277 3.98131953456e-05 -0.000141841052931 +UniRef50_B1M8V2 ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein 0.0110482934425 0.00098272298877 -0.0100655704537 +UniRef50_A8TJK3 4.64977491737e-05 3.30064999485e-05 -1.34912492252e-05 +UniRef50_A6M2M8 ABC 2 type transporter 0.000374970592476 0.00184698361002 0.00147201301754 +UniRef50_D7GD90 DEAD DEAH box helicase domain protein 0.000126390398057 0.0056542384263 0.00552784802824 +UniRef50_UPI00036142F7 hypothetical protein 1.49991024948e-06 1.48577346644e-05 1.33578244149e-05 +UniRef50_UPI0003804935 hypothetical protein 1.64102526707e-05 2.04195223195e-05 4.0092696488e-06 +UniRef50_P54569 0.00992392698782 0.0044337418747 -0.00549018511312 +UniRef50_G3N5H8 0.000342844569056 0.000177368301016 -0.00016547626804 +UniRef50_Q5HKG1 0.013345753669 0.00526656333702 -0.00807919033198 +UniRef50_UPI00036B826D hypothetical protein, partial 5.50766493932e-06 4.3426136046e-05 3.79184711067e-05 +UniRef50_UPI0003B72BA0 hydrogenase 3.12086082261e-06 9.57761927362e-06 6.45675845101e-06 +UniRef50_B5R316 UPF0304 protein YfbU 0.00166624954215 0.000397287047353 -0.0012689624948 +UniRef50_F0MMC4 Amine oxidase, flavin containing 0.0003478177114 0.00395127882311 0.00360346111171 +UniRef50_V9QXD6 Porin 0.000665291397705 0.000425943697766 -0.000239347699939 +UniRef50_A6LW94 Transcriptional regulator, DeoR family 0.000176946557275 0.00161628231504 0.00143933575776 +UniRef50_U3SVU2 0.000568801182077 0.000586309163956 1.7507981879e-05 +UniRef50_B1YGB5 DNA replication and repair protein RecF 0.0184665548133 0.00336847218 -0.0150980826333 +UniRef50_I6STT7 0.00334666335117 0.00602675346134 0.00268009011017 +UniRef50_UPI0002BC6165 bacterioferritin comigratory protein 1.84825304258e-05 0.00022017092355 0.000201688393124 +UniRef50_M0V7T6 9.84516834463e-05 0.000347431417872 0.000248979734426 +UniRef50_F9YYL3 Ferrous iron transport protein B 0.000269549589222 0.00366827884652 0.0033987292573 +UniRef50_UPI00030260F1 cation 0.000166083424888 0.000132603447 -3.3479977888e-05 +UniRef50_N1MTR3 Type I restriction modification system,specificity subunit S 0.0127677238355 0.00250175631683 -0.0102659675187 +UniRef50_A0A024EBR0 LmbE like protein 0.000765594314752 0.000136404944659 -0.000629189370093 +UniRef50_L2D926 Fimbrial like adhesin protein 0.0014121910621 0.000274287961482 -0.00113790310062 +UniRef50_V5A3C8 0.000528198678434 3.33846493983e-05 -0.000494814029036 +UniRef50_F3U4M4 GntR family transcriptional regulator 0.000190835953959 0.00016988496944 -2.0950984519e-05 +UniRef50_UPI0004695BC6 leucyl tRNA synthetase 4.75422282929e-06 1.5562105193e-06 -3.19801230999e-06 +UniRef50_Q5FPX3 tRNA pseudouridine synthase A 0.000233016042498 7.47651250683e-06 -0.000225539529991 +UniRef50_Q5LI89 N acetylmuramic acid 6 phosphate etherase 6.90100093984e-06 0.00210289577065 0.00209599476971 +UniRef50_UPI00037D2323 alpha glucosidase 4.53041820766e-06 3.04100759075e-05 2.58796576998e-05 +UniRef50_E3F031 Beta glucosidase 0.00295037214071 0.00110858584528 -0.00184178629543 +UniRef50_P0AES3 Glucarate dehydratase 0.00702954799968 0.00878875403996 0.00175920604028 +UniRef50_UPI000370BA4E hypothetical protein 7.20502329626e-05 5.82777945811e-05 -1.37724383815e-05 +UniRef50_I6SW42 Transposase 0.000129800417186 0.00183934280053 0.00170954238334 +UniRef50_UPI000360A0FF phosphoribosylglycinamide synthetase 1.86467445882e-05 8.87922415961e-06 -9.76752042859e-06 +UniRef50_X5F4A5 0.00114128498685 0.000655180477956 -0.000486104508894 +UniRef50_UPI0003630547 hypothetical protein 7.60039227276e-05 1.05280356734e-05 -6.54758870542e-05 +UniRef50_Q5HQB3 Inosine uridine preferring nucleoside hydrolase family protein 0.0110896238537 0.00173346835175 -0.00935615550195 +UniRef50_T1AIV4 Multidrug transporter 3.30373060728e-05 0.000589183652317 0.000556146346244 +UniRef50_O86567 Aminomethyltransferase 2.09158158154e-05 6.90653761094e-05 4.8149560294e-05 +UniRef50_D2VSM7 Predicted protein 6.36531801708e-06 0.000193201807955 0.000186836489938 +UniRef50_G7ZTG3 0.00948107114663 0.00458052852016 -0.00490054262647 +UniRef50_A6TGA6 Rhamnulose 1 phosphate aldolase 0.00320383182012 0.00129427310983 -0.00190955871029 +UniRef50_UPI0004763CF3 pseudouridine synthase 5.81392126613e-06 2.42057008727e-05 1.83917796066e-05 +UniRef50_Q0SRF8 Endoribonuclease YbeY 0.000225589236365 0.000387724339418 0.000162135103053 +UniRef50_R1C5J1 5.24229248771e-05 7.90221917779e-05 2.65992669008e-05 +UniRef50_V5P4D6 PTS fructose transporter subunit IIB 0.00564687527535 0.0025995800943 -0.00304729518105 +UniRef50_Q9HYB2 0.00180932536709 0.000402041979561 -0.00140728338753 +UniRef50_H8GCV6 Putative transcriptional regulator 5.90744896513e-05 1.11794729683e-05 -4.7895016683e-05 +UniRef50_Q1J3U3 Transcriptional regulator, MerR family 0.0012868840529 0.0314781732444 0.0301912891915 +UniRef50_A1B304 Heat shock protein DnaJ domain protein 0.000207030706866 0.000333691192315 0.000126660485449 +UniRef50_A0A022H4X6 GntR family transcriptional regulator 3.34616244267e-05 4.40145301052e-05 1.05529056785e-05 +UniRef50_O34677 Glutamine transport ATP binding protein GlnQ 0.00181155000652 0.00901977646216 0.00720822645564 +UniRef50_Q98L75 Hemin import ATP binding protein HmuV 9.660166239e-06 0.000554022556773 0.000544362390534 +UniRef50_G7U407 O antigen polymerase 0.000107037614984 0.00739729341918 0.0072902558042 +UniRef50_O67604 Riboflavin synthase 1.8922804886e-05 2.95569233109e-05 1.06341184249e-05 +UniRef50_UPI00035CB0C6 hypothetical protein 7.26520480106e-06 1.02498671824e-05 2.98466238134e-06 +UniRef50_UPI000441B666 PREDICTED 1.84541740747e-05 1.4969606456e-05 -3.4845676187e-06 +UniRef50_F9K9S6 Glyoxylate reductase 0.000294680013299 0.00021848338239 -7.6196630909e-05 +UniRef50_Q9RW09 Sensor histidine kinase 0.00013827325599 0.00502788511845 0.00488961186246 +UniRef50_W4U410 Lysophospholipase L2 7.00358479649e-05 0.000643304216154 0.000573268368189 +UniRef50_UPI0003B5FE88 RNA polymerase sigma factor RpoE 0.000808418463745 7.72663091172e-05 -0.000731152154628 +UniRef50_I6T5F3 Deoxyribonuclease 0.00695652230996 0.00143992609936 -0.0055165962106 +UniRef50_F7NPL8 4.342524562e-05 1.21262356921e-05 -3.12990099279e-05 +UniRef50_F0Y846 0.00015185373942 0.000307109306929 0.000155255567509 +UniRef50_K8C5J6 Translation initiation factor IF 2 0.00253454226222 0.00151853782466 -0.00101600443756 +UniRef50_UPI0003DE73F4 PREDICTED 8.77149972398e-07 1.32507892727e-06 4.47928954872e-07 +UniRef50_J3QFT9 4.38535395469e-06 8.10167048895e-05 7.66313509348e-05 +UniRef50_W8GMX2 Antitoxin 0.000385189784541 0.000509166733097 0.000123976948556 +UniRef50_UPI000476B5A8 hypothetical protein 8.51870467217e-05 0.0129108730146 0.0128256859679 +UniRef50_F3Z514 Putative cold shock protein 0.00182576859218 0.000411289866682 -0.0014144787255 +UniRef50_Q56632 Vibriobactin specific 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 8.22624134819e-06 2.29917180878e-05 1.47654767396e-05 +UniRef50_Q9RYM5 8.81976609493e-05 0.00752036892396 0.00743217126301 +UniRef50_Q9RYM9 1.55774901697e-05 0.0653801981306 0.0653646206404 +UniRef50_UPI000399284A PREDICTED 1.04118684972e-05 0.000109546543662 9.91346751648e-05 +UniRef50_C5N1J7 Kinase, PfkB family 0.0100911004936 0.00153477095771 -0.00855632953589 +UniRef50_A5FZN2 Galactarate dehydratase 0.00570192735234 0.00131200101454 -0.0043899263378 +UniRef50_UPI0003B3B04C MFS transporter 1.61280413142e-05 7.06417222195e-06 -9.06386909225e-06 +UniRef50_UPI000262C1BF adenosylcobinamide phosphate synthase 2.50670606869e-05 1.16874545804e-05 -1.33796061065e-05 +UniRef50_D5K8E6 UbiC transcription regulator associated protein 0.0148399742338 0.00393272239083 -0.010907251843 +UniRef50_E6MWT7 Peptidyl prolyl cis trans isomerase 0.000164223720365 0.00354114655461 0.00337692283424 +UniRef50_Q5HGL7 Peptide deformylase like 0.0134900540338 0.00507273647925 -0.00841731755455 +UniRef50_A9LZP7 0.00028453717753 0.00189524027011 0.00161070309258 +UniRef50_Q1QLF3 0.00244035780859 0.0008972954244 -0.00154306238419 +UniRef50_Q5HRJ2 3 oxoacyl reductase, putative 0.0128128992334 0.00360653980476 -0.00920635942864 +UniRef50_B6YRP0 S adenosylmethionine synthase 3.94428814984e-05 0.000260829952447 0.000221387070949 +UniRef50_Q9RT82 0.000246722868534 0.0175185642636 0.0172718413951 +UniRef50_P05827 HTH type transcriptional regulator IlvY 0.00345398178848 0.00175605343953 -0.00169792834895 +UniRef50_W1PW22 3.87021954854e-05 5.18001643751e-05 1.30979688897e-05 +UniRef50_UPI0004098CB0 sugar ABC transporter 9.2286988138e-06 3.92979250041e-05 3.00692261903e-05 +UniRef50_UPI00046A1978 ABC transporter permease 3.63723394977e-05 8.51849342804e-06 -2.78538460697e-05 +UniRef50_D2NQB1 5.96808617329e-05 8.52588449168e-05 2.55779831839e-05 +UniRef50_F0QNU4 1 acyl sn glycerol 3 phosphate acyltransferase 0.000737415830084 0.01070026496 0.00996284912992 +UniRef50_F4GUZ8 9.129319897e-06 1.16422553192e-05 2.5129354222e-06 +UniRef50_Q2CBD6 9.94205564893e-06 4.60123433811e-06 -5.34082131082e-06 +UniRef50_P45095 Dipeptide transport ATP binding protein DppD 0.00468100251102 0.00035156750618 -0.00432943500484 +UniRef50_A3PSS2 Dihydroxy acid dehydratase 3.81342339775e-05 3.62860237416e-05 -1.8482102359e-06 +UniRef50_P08179 Phosphoribosylglycinamide formyltransferase 0.00225177271537 0.0013762973617 -0.00087547535367 +UniRef50_UPI000360F7E6 hypothetical protein 1.26381634915e-05 1.07746639859e-05 -1.8634995056e-06 +UniRef50_W1BDM8 Chaperone protein HscA 0.000164323167059 0.000188851131809 2.452796475e-05 +UniRef50_W0Z408 0.000339695659152 0.00201058619745 0.0016708905383 +UniRef50_A7X763 Imidazole glycerol phosphate synthase subunit HisF 0.00952121310255 0.00132884434372 -0.00819236875883 +UniRef50_D3E067 Nitroreductase family protein 0.00677472677209 0.000985488178211 -0.00578923859388 +UniRef50_R0F7I9 0.000165179960443 4.64698622668e-05 -0.000118710098176 +UniRef50_UPI000465952B membane protease HflC 1.57205836514e-05 1.5985058735e-05 2.644750836e-07 +UniRef50_C5N6C9 Universal stress family protein 0.00908686348549 0.00332179350531 -0.00576506998018 +UniRef50_UPI000427AC9A porin 0.000217635528263 2.32216974661e-05 -0.000194413830797 +UniRef50_V5V9L8 Glycine cleavage T protein 0.000685657105098 0.00763927675394 0.00695361964884 +UniRef50_A0A027RVP4 0.00436581542328 0.000954032941423 -0.00341178248186 +UniRef50_UPI00034A9B47 hypothetical protein 1.52334783284e-05 2.0309632292e-05 5.0761539636e-06 +UniRef50_Q98KP1 Cobyrinic acid A,C diamide synthase 1.22576643302e-05 0.000343154630125 0.000330896965795 +UniRef50_D5ZNQ6 Transposase IS204 family protein 0.0001909709893 1.19647901543e-05 -0.000179006199146 +UniRef50_A6MVW4 ATP synthase subunit alpha, chloroplastic 4.1065778982e-06 2.21958633047e-05 1.80892854065e-05 +UniRef50_U1GGK9 Cell envelope related transcriptional attenuator 6.61732240486e-06 3.06203938204e-05 2.40030714155e-05 +UniRef50_UPI0002BBA067 hypothetical protein 1.49804369715e-05 0.00261693872819 0.00260195829122 +UniRef50_L8PB26 Putative Linear gramicidin synthetase LgrC 0.00037919427142 0.000402523088356 2.3328816936e-05 +UniRef50_V7H7E4 6.84277782178e-05 2.66717731417e-05 -4.17560050761e-05 +UniRef50_B1VXS1 1.19949661193e-05 4.84109939426e-05 3.64160278233e-05 +UniRef50_Q9ZMV6 UPF0026 protein jhp_0109 0.000124720040369 0.00324524857148 0.00312052853111 +UniRef50_UPI00037A38D7 hypothetical protein 8.6506383219e-05 0.000121794085894 3.5287702675e-05 +UniRef50_P58409 0.00359326384759 0.00178334174832 -0.00180992209927 +UniRef50_D1BK43 0.000243133426411 0.00437035060887 0.00412721718246 +UniRef50_B8EIF0 4.80681564945e-06 6.53496296159e-06 1.72814731214e-06 +UniRef50_C9XTA5 Tat linked quality control protein TatD 0.00441268379763 0.00144278582111 -0.00296989797652 +UniRef50_P38392 Superinfection exclusion protein B 0.00548301099577 0.00255946801891 -0.00292354297686 +UniRef50_B2V3W1 Permease 0.000746371472637 0.000539703075147 -0.00020666839749 +UniRef50_X2M6Z7 7.15590225249e-05 1.93074159483e-05 -5.22516065766e-05 +UniRef50_D3QD71 FemC, factor involved in methicillin resistance Glutamine synthetase repressor 0.0170980775984 0.00304282279934 -0.0140552547991 +UniRef50_Q2KBF3 Tetracycline efflux transporter protein 0.000233310615449 0.00579657557487 0.00556326495942 +UniRef50_Q9WYG0 8.08941454917e-06 9.01169592152e-06 9.2228137235e-07 +UniRef50_Q2FDT8 Probable transglycosylase IsaA 0.0328414448291 0.00115594250238 -0.0316855023267 +UniRef50_UPI00036FC7C5 hypothetical protein 5.6408117369e-06 3.57081443686e-05 3.00673326317e-05 +UniRef50_Q2T0X3 Cholesterol oxidase 0.000914801495341 0.000201697732584 -0.000713103762757 +UniRef50_UPI0003C1A958 PREDICTED 3.89790669515e-05 0.000120858745548 8.18796785965e-05 +UniRef50_V6Q9U1 0.00397280200999 0.0126841599267 0.00871135791671 +UniRef50_A6LU63 Metallophosphoesterase 0.000255917559997 0.0010489383901 0.000793020830103 +UniRef50_Q9L6I1 Histidinol dehydrogenase 7.05974743672e-06 1.20703889761e-05 5.01064153938e-06 +UniRef50_D2GME6 Uro adherence factor A 0.00329769427568 0.00143742187303 -0.00186027240265 +UniRef50_R0ENU8 KxYKxGKxW signal peptide 2.33582500386e-06 4.87554345321e-06 2.53971844935e-06 +UniRef50_F0RIT9 NHL repeat containing protein 9.516453501e-05 0.0177993019726 0.0177041374376 +UniRef50_C0ZS23 9.95018329976e-06 1.9073865801e-05 9.12368250124e-06 +UniRef50_Q8DSK8 0.00600553873078 0.00152541645479 -0.00448012227599 +UniRef50_P27278 Trifunctional NAD biosynthesis regulator protein NadR 0.0035173203564 0.000432221507771 -0.00308509884863 +UniRef50_UPI0003C16102 PREDICTED 2.78906870337e-05 2.6043153439e-05 -1.8475335947e-06 +UniRef50_P0A2E9 RNA polymerase sigma factor FliA 0.00241848291011 0.00123800534721 -0.0011804775629 +UniRef50_A6T4E6 UPF0246 protein KPN78578_00060 0.00503051663173 0.00468393018195 -0.00034658644978 +UniRef50_Q72J47 Ribose 5 phosphate isomerase A 0.000344530447282 0.0489469828717 0.0486024524244 +UniRef50_UPI0003B500DC hypothetical protein, partial 0.000155603472713 4.14670566688e-05 -0.000114136416044 +UniRef50_R4MBB3 2.12778856842e-06 1.13723586609e-05 9.24457009248e-06 +UniRef50_Q9ZJ57 Transcription repair coupling factor 8.11257640167e-05 0.00516084735742 0.0050797215934 +UniRef50_R4ZYK3 CAAX amino terminal protease family 0.00490800216882 0.000202966807698 -0.00470503536112 +UniRef50_D7CXC6 Thioesterase superfamily protein 1.20829146056e-05 0.00201604776964 0.00200396485503 +UniRef50_UPI0002D421A9 hypothetical protein 9.90130692353e-05 2.09998907161e-05 -7.80131785192e-05 +UniRef50_UPI0004666DD2 NAD dependent dehydratase 5.32794220664e-06 1.70370488017e-05 1.17091065951e-05 +UniRef50_P76149 Succinate semialdehyde dehydrogenase [NAD+] Sad 0.00335644075898 0.00164821501142 -0.00170822574756 +UniRef50_N0B4C8 0.000129842145169 3.04863580198e-05 -9.93557871492e-05 +UniRef50_P77495 Propionate CoA ligase 0.000784977629583 0.000726440129384 -5.8537500199e-05 +UniRef50_A1AXZ2 S formylglutathione hydrolase 0.00799509560498 0.00229799387586 -0.00569710172912 +UniRef50_C6STZ5 0.00438895302526 0.00535973898332 0.00097078595806 +UniRef50_A9W4X6 Sulfite reductase [NADPH] hemoprotein beta component 0.0118305531116 0.00312359921694 -0.00870695389466 +UniRef50_Q6SSJ3 Acetolactate synthase, mitochondrial 8.05417734946e-06 1.03221992684e-05 2.26802191894e-06 +UniRef50_K7S2B2 Sirohydrochlorin cobaltochelatase 0.000147647714023 0.00244399968812 0.0022963519741 +UniRef50_X2ME11 Glutathione ABC transporter permease 0.000480482699606 0.000952549918961 0.000472067219355 +UniRef50_UPI000373BE38 hypothetical protein 9.75822269403e-06 1.52240829576e-05 5.46586026357e-06 +UniRef50_L0EAK7 O glycosyl hydrolase 0.000467692782591 0.000454705383499 -1.2987399092e-05 +UniRef50_Q97P97 Ribosomal silencing factor RsfS 0.00969642706325 0.0105902859345 0.00089385887125 +UniRef50_UPI000360CFF1 hypothetical protein 1.7054782912e-05 7.93992166737e-05 6.23444337617e-05 +UniRef50_F5XDU3 1.68610186858e-05 9.56200205152e-05 7.87590018294e-05 +UniRef50_D1BRB3 3.13114066676e-05 1.14386016294e-05 -1.98728050382e-05 +UniRef50_Q2J3W0 0.000115721926882 8.34949584588e-05 -3.22269684232e-05 +UniRef50_Q8XJS1 tRNA pseudouridine synthase B 0.000126249494601 0.000852464311664 0.000726214817063 +UniRef50_B7UQI7 HTH type transcriptional repressor NsrR 0.000716731215833 0.000416917701458 -0.000299813514375 +UniRef50_UPI00016BFAFA hypothetical protein, partial 1.11489569517e-06 3.19757907757e-06 2.0826833824e-06 +UniRef50_W7WQV3 9.90065263461e-06 4.09142866282e-05 3.10136339936e-05 +UniRef50_UPI000395618F 6.06890657318e-05 9.56749584945e-05 3.49858927627e-05 +UniRef50_N8K6N9 0.000108778229038 2.31996144509e-05 -8.55786145871e-05 +UniRef50_UPI000185D852 hypothetical protein TGME49_026320 9.33756431966e-06 9.28750881292e-06 -5.005550674e-08 +UniRef50_M4ZG31 Drug metabolite transporter superfamily protein 0.00607313242201 0.000809912853241 -0.00526321956877 +UniRef50_UPI00036A115E hypothetical protein 8.33257015501e-05 4.37909185109e-05 -3.95347830392e-05 +UniRef50_A5UMF7 Predicted metal dependent membrane protease 0.0025047657686 0.00111802674918 -0.00138673901942 +UniRef50_E6YL73 0.0010354972995 0.000376904128365 -0.000658593171135 +UniRef50_R6M763 0.000775656141478 0.00516070661491 0.00438505047343 +UniRef50_M1PJ51 1.21765464228e-05 3.11879104652e-05 1.90113640424e-05 +UniRef50_K2JGL6 0.000145221832666 4.50277002653e-05 -0.000100194132401 +UniRef50_UPI000262543A preprotein translocase subunit SecB 5.04877266856e-05 9.82587918199e-05 4.77710651343e-05 +UniRef50_H5YAU3 ABC type spermidine putrescine transport system, permease component II 0.0152167393029 0.00503649065513 -0.0101802486478 +UniRef50_UPI00037F1EED hypothetical protein 8.89378651807e-05 3.51108947596e-05 -5.38269704211e-05 +UniRef50_A0LA39 Indole 3 glycerol phosphate synthase 2.06278774831e-05 1.29145794963e-05 -7.7132979868e-06 +UniRef50_P19319 Respiratory nitrate reductase 2 alpha chain 2.86593473857e-06 2.99052009327e-05 2.70392661941e-05 +UniRef50_W6RYK9 Alpha dextran endo 1,6 alpha glucosidase 0.000116598614574 0.00174833938943 0.00163174077486 +UniRef50_K2M7A1 0.000206281715712 9.03429730277e-05 -0.000115938742684 +UniRef50_F3P2W5 5.82841619358e-05 3.46101525294e-05 -2.36740094064e-05 +UniRef50_B0VAL5 Ribosomal RNA large subunit methyltransferase K L 0.000193357553506 0.00580169637857 0.00560833882506 +UniRef50_P0ACQ8 HTH type transcriptional regulator TdcA 0.00291857139325 0.000858157022104 -0.00206041437115 +UniRef50_R9SMW6 0.00510560160835 0.000619540423194 -0.00448606118516 +UniRef50_UPI00037472A8 hypothetical protein 0.0108452909333 0.00323656694733 -0.00760872398597 +UniRef50_UPI00036CDC12 hypothetical protein 4.89548727809e-06 3.86852179044e-05 3.37897306263e-05 +UniRef50_Q6GK63 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 0.0312873402737 0.00893735192555 -0.0223499883481 +UniRef50_UPI00046235B0 hypothetical protein TRAVEDRAFT_69016 0.000480786716452 0.000167081587097 -0.000313705129355 +UniRef50_UPI0001632402 hypothetical protein 8.64528789287e-05 0.000844257606478 0.000757804727549 +UniRef50_UPI0003B5E791 excinuclease ABC subunit B 3.15399214197e-05 0.0038764317956 0.00384489187418 +UniRef50_W7D397 PadR family transcriptional regulator 0.000118540365383 3.63671798199e-05 -8.21731855631e-05 +UniRef50_Q9RRD7 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000175995025254 0.0502267896033 0.050050794578 +UniRef50_D2J8F1 0.00558292746484 6.98624072391e-05 -0.0055130650576 +UniRef50_UPI000474D7ED hypothetical protein, partial 6.5713985504e-05 5.94009960422e-05 -6.3129894618e-06 +UniRef50_UPI0003694619 hypothetical protein 7.62576349525e-06 2.90555804597e-05 2.14298169644e-05 +UniRef50_Q7VUN5 Prolipoprotein diacylglyceryl transferase 6.51701276842e-05 3.24150931095e-05 -3.27550345747e-05 +UniRef50_P11908 Ribose phosphate pyrophosphokinase 2 1.98175225429e-05 6.52788241283e-05 4.54613015854e-05 +UniRef50_E3NW74 4.41376074096e-05 3.41831142436e-05 -9.954493166e-06 +UniRef50_F3PMN2 5.99016490107e-05 0.000248949448219 0.000189047799208 +UniRef50_P67176 Probable transcriptional regulatory protein YebC 0.00374263658625 0.000492736667377 -0.00324989991887 +UniRef50_UPI0003C1377F PREDICTED 1.51730767463e-05 7.8561869427e-06 -7.3168898036e-06 +UniRef50_UPI00035E1742 hypothetical protein 3.88606070013e-06 7.75539927303e-06 3.8693385729e-06 +UniRef50_I0C568 Cysteine desulfurase 0.017650146737 0.00488476506883 -0.0127653816682 +UniRef50_Q9CIS4 N acetyldiaminopimelate deacetylase 0.00795316598662 0.00741225728289 -0.00054090870373 +UniRef50_H9JHD1 1.20980512765e-05 5.41582488401e-05 4.20601975636e-05 +UniRef50_A3M3L5 Dichlorophenol hydroxylase 0.000255813375982 0.00779631108392 0.00754049770794 +UniRef50_A2SL87 ABC transporter permease protein 0.0154917996742 0.00325811325903 -0.0122336864152 +UniRef50_A3PG71 Multi sensor hybrid histidine kinase 0.00100641208363 7.87861374395e-05 -0.000927625946191 +UniRef50_R4K8M4 ABC type nitrate sulfonate bicarbonate transport system, ATPase component 0.00109096454872 0.000874808301326 -0.000216156247394 +UniRef50_K7ECB4 7.34617983995e-05 0.000117351804686 4.38900062865e-05 +UniRef50_P15043 ATP dependent DNA helicase RecQ 0.00209738780536 0.000523819557883 -0.00157356824748 +UniRef50_P52331 RNA polymerase sigma factor SigA 0.0238943328062 0.012142180399 -0.0117521524072 +UniRef50_Q31GL1 5.96917282558e-05 2.20291924508e-05 -3.7662535805e-05 +UniRef50_X2HGW8 Alkaline protease secretion protein AprE 0.000176079988287 0.00196390953199 0.0017878295437 +UniRef50_O84834 Ribonucleoside diphosphate reductase subunit alpha 2.8791927524e-06 5.21165629071e-05 4.92373701547e-05 +UniRef50_F8KIL6 NADH oxidase family protein 0.00992899441259 0.0032548485395 -0.00667414587309 +UniRef50_Q67N11 Pseudouridine 5 phosphate glycosidase 0.0182214047341 0.00246025530664 -0.0157611494275 +UniRef50_Q28R93 Toxic anion resistance 0.00418208358637 0.000863714470269 -0.0033183691161 +UniRef50_P37683 Inner membrane protein YiaV 0.00558544802753 0.00131810113006 -0.00426734689747 +UniRef50_B7ULC6 Xylose isomerase 0.00577521267828 0.0021378458552 -0.00363736682308 +UniRef50_W6M578 0.000373503326426 0.000195989782119 -0.000177513544307 +UniRef50_UPI00037B97F0 hypothetical protein 1.19153769054e-05 2.64256493778e-05 1.45102724724e-05 +UniRef50_X6MYI2 5.91433015345e-06 0.000176947537862 0.000171033207709 +UniRef50_UPI00042541FF hypothetical protein 1.96438993307e-05 1.9530376192e-05 -1.135231387e-07 +UniRef50_UPI0003B727B1 50S ribosomal protein L24 3.39707220721e-05 1.68139900757e-05 -1.71567319964e-05 +UniRef50_UPI00046D149F hypothetical protein 1.21720508364e-05 1.30294836648e-05 8.574328284e-07 +UniRef50_Q7W6C6 Non canonical purine NTP pyrophosphatase 0.00010555702073 3.39980568062e-05 -7.15589639238e-05 +UniRef50_W5WYX4 Alkaline phosphatase 0.000348207865387 0.000383922051208 3.5714185821e-05 +UniRef50_P02983 Tetracycline resistance protein 0.573449640169 0.199788693154 -0.373660947015 +UniRef50_U3T3X0 O methyltransferase 0.000382587150866 0.00387493521807 0.0034923480672 +UniRef50_UPI00046FEA8D GntR family transcriptional regulator 6.30660519476e-05 2.27910646503e-05 -4.02749872973e-05 +UniRef50_Q97MM1 N acetylmuramic acid 6 phosphate etherase 7.38837239037e-06 9.57256916304e-06 2.18419677267e-06 +UniRef50_L7WQT3 Prephenate dehydratase 0.0193261519228 0.00827844693206 -0.0110477049907 +UniRef50_UPI00047E31BE methionine aminopeptidase 2.0896686494e-05 1.59942222588e-05 -4.9024642352e-06 +UniRef50_UPI0003B46743 hypothetical protein 0.000146105377266 0.00119396794301 0.00104786256574 +UniRef50_P72479 Oligopeptide transport ATP binding protein OppF 0.0068082495341 0.00243256978593 -0.00437567974817 +UniRef50_A4WNF9 Metallophosphoesterase 0.00293243478848 0.00127031100512 -0.00166212378336 +UniRef50_Q9AHJ5 Interrupted beta D glucuronidase 0.00757471850256 0.000716382241939 -0.00685833626062 +UniRef50_E9B5T6 Proteophosphoglycan ppg1 2.90697901286e-06 7.08370068878e-06 4.17672167592e-06 +UniRef50_Q02431 Chlorophyllide reductase 35.5 kDa chain 0.0113805442473 0.000981479729588 -0.0103990645177 +UniRef50_A0A034HVJ8 0.00407005541126 0.000416917701458 -0.0036531377098 +UniRef50_N0CE78 Snf2 family protein 7.44673737484e-05 0.00218026279815 0.0021057954244 +UniRef50_UPI000473A49C hypothetical protein, partial 3.28072894097e-05 0.000448726946494 0.000415919657084 +UniRef50_UPI000475C363 GntR family transcriptional regulator 2.0549375882e-05 2.30055457136e-05 2.4561698316e-06 +UniRef50_UPI000255B851 thiamine biosynthesis adenylyltransferase 6.82402891564e-06 1.23479565094e-05 5.52392759376e-06 +UniRef50_UPI0003C17DF0 PREDICTED 1.38774497287e-05 9.96542419774e-06 -3.91202553096e-06 +UniRef50_Y9YFG1 Serine aspartate repeat containing protein D 0.00271732010744 0.000301856938874 -0.00241546316857 +UniRef50_UPI0002556FCA major facilitator family transporter, partial 1.42961203675e-05 5.32509012927e-05 3.89547809252e-05 +UniRef50_I1ALS6 Flp pilus assembly protein TadG 0.000686443205609 0.000136404944659 -0.00055003826095 +UniRef50_UPI00035E72D8 hypothetical protein 5.76164371093e-06 2.77658124031e-05 2.20041686922e-05 +UniRef50_UPI0004243274 hypothetical protein 2.54895606645e-05 1.67707422968e-05 -8.7188183677e-06 +UniRef50_UPI0003942A9F 7.43765265774e-06 3.24246547439e-06 -4.19518718335e-06 +UniRef50_A5UMV2 Predicted polysaccharide polyol phosphate ABC transporter, permease component 0.00241752645776 0.000564082114019 -0.00185344434374 +UniRef50_A3DIP6 UDP N acetylmuramate L alanine ligase 0.000182885775899 0.000770614094769 0.00058772831887 +UniRef50_UPI0000164CF6 hypothetical protein DR_1761 0.000366361200249 0.367022323052 0.366655961852 +UniRef50_Q13SY1 Probable chemoreceptor glutamine deamidase CheD 0.000129908418105 2.30232681357e-05 -0.000106885149969 +UniRef50_F0L781 Permeases of the major facilitator superfamily 0.000180337174001 4.96584957997e-05 -0.000130678678201 +UniRef50_G0DRF3 0.000120731126496 0.00722314475428 0.00710241362778 +UniRef50_A1WQY3 Alanine racemase 0.000852684738129 3.67152253227e-05 -0.000815969512806 +UniRef50_A5WHX2 Superfamily I DNA and RNA helicase like protein 0.000183064294941 0.00852290629596 0.00833984200102 +UniRef50_R7PS51 0.0038721516281 0.000674033673906 -0.00319811795419 +UniRef50_J9U7Y2 0.0122401822874 0.00397473189481 -0.00826545039259 +UniRef50_J7QB56 0.000714598300831 0.000611000079721 -0.00010359822111 +UniRef50_Q8ZMH3 Serine threonine protein phosphatase 2 0.0025254015282 0.00217160279463 -0.00035379873357 +UniRef50_P67760 UPF0302 protein SA1295 0.0187015404039 0.00275045431704 -0.0159510860869 +UniRef50_A3PR59 Flavin reductase domain protein, FMN binding 0.0117203284293 0.00406809538251 -0.00765223304679 +UniRef50_Q66FG9 Glycerol 3 phosphate acyltransferase 0.000106288818658 7.85765069176e-05 -2.77123117404e-05 +UniRef50_A6TWG5 30S ribosomal protein S5 0.0378096039141 0.0134995983289 -0.0243100055852 +UniRef50_P37168 Putative oxidoreductase YceM 0.00140302182391 0.000576335613062 -0.000826686210848 +UniRef50_UPI000255C7E1 uroporphyrin III C tetrapyrrole methyltransferase 1.68773922273e-05 6.94331487445e-05 5.25557565172e-05 +UniRef50_A0A028XDJ1 Ornithine cyclodeaminase mu crystallin domain protein 0.000226262281297 8.8121208325e-05 -0.000138141072972 +UniRef50_UPI000477AE3E hypothetical protein 2.54620588548e-05 1.26555052857e-05 -1.28065535691e-05 +UniRef50_UPI0003B3FFE1 zinc binding dehydrogenase 1.37085843461e-05 1.04423237738e-05 -3.2662605723e-06 +UniRef50_UPI0001913AE8 oligopeptide ABC transporter, permease protein OppC, partial 3.80250395831e-05 7.26280782821e-05 3.4603038699e-05 +UniRef50_Q5PMJ4 tRNA specific 2 thiouridylase MnmA 0.00480990039616 0.00274157870841 -0.00206832168775 +UniRef50_Q9Y7M1 Putative 2 hydroxyacyl CoA lyase 1.84997417258e-06 6.58362972527e-06 4.73365555269e-06 +UniRef50_UPI0003B30236 3 oxoacyl ACP synthase 3.69149421803e-06 5.28013571983e-05 4.91098629803e-05 +UniRef50_V6G3R8 ABC transporter, substrate binding protein, family 5 domain protein 0.00138594828447 0.000432170788082 -0.000953777496388 +UniRef50_A9H9A8 ATP synthase subunit beta 0.0444593269575 0.0222112927959 -0.0222480341616 +UniRef50_B8EPL9 UPF0301 protein Msil_1255 2.59320771537e-05 5.10107863836e-05 2.50787092299e-05 +UniRef50_U3T6B1 Iron ABC transporter substrate binding protein 0.000655969071909 0.00718793021978 0.00653196114787 +UniRef50_A4XX95 NADH dehydrogenase (Quinone) 0.000387828070733 0.000282599717884 -0.000105228352849 +UniRef50_B9KX15 Short chain dehydrogenase reductase SDR 0.00647332187081 0.00175159066935 -0.00472173120146 +UniRef50_UPI00047DFFFB hypothetical protein 6.5665246778e-06 7.87478303564e-06 1.30825835784e-06 +UniRef50_Q72AR4 Lipoprotein signal peptidase 1.11565359832e-05 1.95860291508e-05 8.4294931676e-06 +UniRef50_Q9RZC9 0.000223364490448 0.0292671559215 0.0290437914311 +UniRef50_Q6A8Z5 tRNA dimethylallyltransferase 2.78857484072e-05 0.0076636112687 0.00763572552029 +UniRef50_C0Z6T1 N acetyl gamma glutamyl phosphate reductase 1.90839953744e-05 1.11661445576e-05 -7.9178508168e-06 +UniRef50_Q6G723 Staphylococcal secretory antigen ssaA2 0.00798019925823 0.00184745821938 -0.00613274103885 +UniRef50_Q9RZC7 0.000386043983463 0.0484883359355 0.048102291952 +UniRef50_T0GNN5 0.000707299404308 0.000436215245423 -0.000271084158885 +UniRef50_D3PKE0 PepSY associated TM helix domain protein 0.000208940584237 0.0334656105796 0.0332566699954 +UniRef50_UPI000441E5AE PREDICTED 1.6772561522e-05 2.42505295588e-05 7.4779680368e-06 +UniRef50_Q9L730 SanE 1.99648333434e-05 1.27435112644e-05 -7.221322079e-06 +UniRef50_UPI00030945F6 cation transporter 3.64740059683e-06 1.39182477174e-05 1.02708471206e-05 +UniRef50_Q3IVJ0 Replication protein C 0.00372978215305 0.000964121750937 -0.00276566040211 +UniRef50_UPI0002556222 ATP dependent DNA helicase Rep 7.68236512601e-06 1.08236932095e-05 3.14132808349e-06 +UniRef50_Q13IW9 ATP synthase subunit alpha 3 0.000451165384017 0.000119480797778 -0.000331684586239 +UniRef50_A3X0R4 Terminase, large subunit, putative 4.14720543927e-06 6.30294093475e-05 5.88822039082e-05 +UniRef50_D6SEC7 DHHA1 domain protein 0.0247525822377 0.00689627481478 -0.0178563074229 +UniRef50_A5PL98 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 3.41815213199e-05 3.9204812533e-05 5.0232912131e-06 +UniRef50_UPI0003C19C73 PREDICTED 0.000197205281455 2.49722981808e-05 -0.000172232983274 +UniRef50_I6WVI5 4.97598354546e-06 2.24101060476e-05 1.74341225021e-05 +UniRef50_P13063 Periplasmic [NiFeSe] hydrogenase small subunit 5.24442222101e-05 1.59699051607e-05 -3.64743170494e-05 +UniRef50_Q9KC26 Biotin synthase 7.14569877676e-06 6.05228430452e-05 5.33771442684e-05 +UniRef50_O87131 Chemotaxis protein methyltransferase 1 0.0016388114327 0.000691043885684 -0.000947767547016 +UniRef50_D2SGL3 Gm3773 predicted gene 3773 0.000121324768436 6.26293008265e-06 -0.000115061838353 +UniRef50_UPI0004662606 glycolate oxidase 4.23784533649e-06 4.21141587262e-05 3.78763133897e-05 +UniRef50_B5Z805 0.000144815596745 0.00715425937683 0.00700944378008 +UniRef50_D2NRN3 3.70575723281e-05 0.00141066330516 0.00137360573283 +UniRef50_A4WT54 0.00465049659479 0.00142054429477 -0.00322995230002 +UniRef50_R0TNR1 0.000622998670332 0.00224396514433 0.001620966474 +UniRef50_Q9JSZ8 UDP N acetylmuramate L alanine ligase 0.000209900531417 0.00259349446361 0.00238359393219 +UniRef50_D3E0J9 Putative adenylate kinase 0.00335745966688 0.000334952784714 -0.00302250688217 +UniRef50_B4WIG2 8.40574045213e-05 5.58851510447e-05 -2.81722534766e-05 +UniRef50_UPI0004625279 transposase 3.72161937676e-05 7.30425775741e-06 -2.99119360102e-05 +UniRef50_K9WHG2 0.000746002410406 0.000264071577242 -0.000481930833164 +UniRef50_A4XVS8 0.000164841786411 8.28377854697e-05 -8.20040009413e-05 +UniRef50_F8DJ84 CBS domain protein 0.00872700155911 0.00474469116367 -0.00398231039544 +UniRef50_P45694 Transketolase 0.00947111820625 0.00601062620824 -0.00346049199801 +UniRef50_A0A023S1I9 TetR family transcriptional regulator 0.000189374241902 0.00773465104895 0.00754527680705 +UniRef50_UPI0003B3BF67 XRE family transcriptional regulator 0.000187146692914 0.000127589480149 -5.9557212765e-05 +UniRef50_Q2FWV6 Staphylococcal complement inhibitor 0.00516536007076 0.00152458233835 -0.00364077773241 +UniRef50_UPI000467D6E6 TetR family transcriptional regulator 1.16109909575e-05 0.00012939868751 0.000117787696552 +UniRef50_R6HDW3 GTP binding protein TypA BipA 2.2782885732e-05 1.3698761851e-05 -9.084123881e-06 +UniRef50_B9TQ05 0.00013180762642 0.00140187240404 0.00127006477762 +UniRef50_A3KAM8 3.02719387657e-06 1.51836475033e-06 -1.50882912624e-06 +UniRef50_Q8CN73 Nitrate reductase delta chain 0.00713593379273 0.00385581745535 -0.00328011633738 +UniRef50_Q52987 Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase 9.82336510762e-06 0.000327420208308 0.0003175968432 +UniRef50_Q3IXI3 PpkA related protein 0.00262877973882 0.000118047983419 -0.0025107317554 +UniRef50_UPI00036E1A30 hypothetical protein 3.17035993747e-05 1.13123622431e-05 -2.03912371316e-05 +UniRef50_G7U5R3 0.000426746542044 0.00443392384377 0.00400717730173 +UniRef50_W5MN69 0.000231278677658 0.000396655489892 0.000165376812234 +UniRef50_D6SYK4 7.1596117703e-06 1.74672386071e-05 1.03076268368e-05 +UniRef50_UPI00046AEB65 hypothetical protein 2.69320792352e-06 3.48979496326e-05 3.22047417091e-05 +UniRef50_I6TN35 Sorbose PTS system, IIB component 0.0033372978259 0.00284993292385 -0.00048736490205 +UniRef50_O83990 Uridine phosphorylase 0.000643158280444 0.00103059849607 0.000387440215626 +UniRef50_UPI0003B525E9 hypothetical protein 1.18207404621e-05 2.17880159387e-05 9.9672754766e-06 +UniRef50_H2A6W4 0.00669538019649 0.00150643971074 -0.00518894048575 +UniRef50_E6QN76 0.000137122972376 3.96223096322e-06 -0.000133160741413 +UniRef50_F3KCS8 Cysteine synthase 0.00010573523435 1.19851987062e-05 -9.37500356438e-05 +UniRef50_UPI000368CD4B hypothetical protein 1.88895212442e-05 6.1893098642e-05 4.30035773978e-05 +UniRef50_UPI0004729707 hypothetical protein, partial 0.00135438127587 0.000295354954343 -0.00105902632153 +UniRef50_UPI00035DAFDB hypothetical protein 0.00379166314568 0.00108124888397 -0.00271041426171 +UniRef50_Q2S8H5 3 hydroxydecanoyl [acyl carrier protein] dehydratase 0.00717237319785 0.000698286483191 -0.00647408671466 +UniRef50_A5B2H7 1.20342200341e-05 1.65082092483e-05 4.4739892142e-06 +UniRef50_UPI000376B264 hypothetical protein 0.000110251964968 7.88259231026e-05 -3.14260418654e-05 +UniRef50_Q5ZWE4 Spermidine putrescine import ATP binding protein PotA 4.96429357371e-05 3.49551241576e-05 -1.46878115795e-05 +UniRef50_UPI00046F3C43 ribonuclease D, partial 8.79070324519e-05 1.3769196604e-05 -7.41378358479e-05 +UniRef50_S3H5L3 PilT protein domain protein 0.00054942620498 0.000119840242305 -0.000429585962675 +UniRef50_E4TMS6 Beta Ig H3 fasciclin 0.0116460778107 0.00401052476565 -0.00763555304505 +UniRef50_C4K3W9 Orotate phosphoribosyltransferase 0.000490241543964 0.00116743227381 0.000677190729846 +UniRef50_UPI00036A0C85 resolvase 3.53176549166e-05 8.23740338362e-05 4.70563789196e-05 +UniRef50_B9KLM6 0.00476381361066 0.000377627333572 -0.00438618627709 +UniRef50_UPI000467F2DE general secretion pathway protein GspI 2.23911480805e-05 2.63891448843e-05 3.9979968038e-06 +UniRef50_E6SM17 3 deoxy D arabinoheptulosonate 7 phosphate synthase 0.000591334570185 0.00273683368096 0.00214549911077 +UniRef50_UPI000479ECD0 hypothetical protein 0.000124660660219 9.5340641639e-05 -2.932001858e-05 +UniRef50_B9KLM0 0.000292721757663 6.56745823328e-05 -0.00022704717533 +UniRef50_UPI000378DE23 hypothetical protein 8.29278703574e-06 2.38830464876e-05 1.55902594519e-05 +UniRef50_F0JDW5 7.30163678129e-05 1.99437590808e-05 -5.30726087321e-05 +UniRef50_P32668 0.00240001581757 0.00344702288856 0.00104700707099 +UniRef50_UPI0004245E45 GTP binding protein Der 1.26351798838e-05 2.12177951439e-05 8.5826152601e-06 +UniRef50_Q00934 Type 4 fimbriae expression regulatory protein PilR 9.16970013417e-05 0.00038189101397 0.000290194012628 +UniRef50_UPI000347AC3B preprotein translocase subunit SecG 9.27143145381e-05 4.42900581283e-05 -4.84242564098e-05 +UniRef50_Q2YX72 Spermidine putrescine binding periplasmic protein 0.0169425122362 0.00277199200835 -0.0141705202278 +UniRef50_S1F8T4 Autoinducer 2 binding protein lsrB 0.000596660609908 0.00118126682079 0.000584606210882 +UniRef50_P03018 DNA helicase II 0.00397843345986 0.00147207137797 -0.00250636208189 +UniRef50_Q9ZJF9 DNA polymerase III subunit alpha 0.000103789063173 0.00470812725949 0.00460433819632 +UniRef50_A1A8T2 0.000926231145826 0.00248697266489 0.00156074151906 +UniRef50_A1T8W5 Phosphoribosyl isomerase A 0.000169529635709 0.00481179859287 0.00464226895716 +UniRef50_P9WQ72 Phosphoserine aminotransferase 0.000114274265039 0.00725271195211 0.00713843768707 +UniRef50_Q3HKJ3 Putative Mrr restriction system protein 0.0161897001833 0.00405171681669 -0.0121379833666 +UniRef50_M4WVA9 0.000525495878852 0.00030982973583 -0.000215666143022 +UniRef50_Z5RZH0 5.16780348179e-05 9.38350877983e-05 4.21570529804e-05 +UniRef50_UPI000466DA55 hypothetical protein 0.000171846019479 1.38173192879e-05 -0.000158028700191 +UniRef50_B1KVH1 0.000976366212543 0.000729632970983 -0.00024673324156 +UniRef50_Q46927 tRNA threonylcarbamoyladenosine dehydratase 0.00299619451546 0.000481079758001 -0.00251511475746 +UniRef50_A3PNX1 0.0208635824021 0.0107095207813 -0.0101540616208 +UniRef50_P29925 NADH quinone oxidoreductase chain 13 0.0143929375044 0.00325589838462 -0.0111370391198 +UniRef50_UPI0004786466 ABC transporter permease 0.000237021761595 3.74271854671e-05 -0.000199594576128 +UniRef50_UPI0003DE8355 1.33528961612e-05 1.27413807493e-05 -6.115154119e-07 +UniRef50_H9UVW0 Terminase large subunit 0.00115556935363 0.0053693946399 0.00421382528627 +UniRef50_D4HFJ6 UvrD REP helicase 0.00011025013016 0.00408726912287 0.00397701899271 +UniRef50_P39364 Putative sgc region protein SgcQ 0.00339500214433 0.0011224463398 -0.00227255580453 +UniRef50_P64576 0.000566228983278 0.00062390853211 5.7679548832e-05 +UniRef50_F3Z838 Putative hydrogen peroxide sensitive repressor 4.71575469076e-05 9.37600567007e-05 4.66025097931e-05 +UniRef50_D3E4D6 SsDNA exonuclease RecJ2 0.00165747351221 0.00183720509598 0.00017973158377 +UniRef50_M4Z3L2 Hemolysin type calcium binding region 3.84912071399e-06 3.7852385247e-07 -3.47059686152e-06 +UniRef50_P77489 Putative xanthine dehydrogenase YagR molybdenum binding subunit 0.00198624417188 0.00850137343474 0.00651512926286 +UniRef50_A8LJB4 Leucyl phenylalanyl tRNA protein transferase 4.30865795692e-05 9.81287621085e-05 5.50421825393e-05 +UniRef50_P38489 Oxygen insensitive NADH nitroreductase 0.00376415550857 0.000919243779006 -0.00284491172956 +UniRef50_UPI00037EE3C9 hypothetical protein 4.99571239014e-06 6.96394220472e-06 1.96822981458e-06 +UniRef50_I6SUP0 Transcriptional regulator 0.0015266794879 0.0023493896728 0.0008227101849 +UniRef50_P45288 Peptide transport system ATP binding protein SapD 0.00172967329798 0.00118498928349 -0.00054468401449 +UniRef50_D9V463 Predicted protein 8.46307662005e-06 0.000152933496934 0.000144470420314 +UniRef50_G7UA10 0.00020367949039 0.0061900896824 0.00598641019201 +UniRef50_P56129 Diaminopimelate decarboxylase 5.24192377978e-06 0.00392790381971 0.00392266189593 +UniRef50_A0A024EEF7 2.98405486193e-05 7.51578552726e-05 4.53173066533e-05 +UniRef50_J2JCG0 Integral membrane protein MviN 0.000219464277035 0.00021518847278 -4.275804255e-06 +UniRef50_P0AE47 UPF0053 inner membrane protein YtfL 0.00284518162001 0.000141299858951 -0.00270388176106 +UniRef50_A0A016QTH6 Cobyrinic acid a,c diamide synthase 3.08690896043e-05 0.0032333437336 0.003202474644 +UniRef50_M9VHF6 0.000517104094322 0.00578687684106 0.00526977274674 +UniRef50_Q9RYL5 GGDEF family protein 0.000101383882411 0.0712625759797 0.0711611920973 +UniRef50_UPI00036176A4 hypothetical protein 0.000216506263816 0.000116387735334 -0.000100118528482 +UniRef50_W6S1I7 0.000274868438483 0.000885493293889 0.000610624855406 +UniRef50_UPI000393F498 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.34161660567e-05 6.71379977105e-06 -1.67023662857e-05 +UniRef50_A0A023KSK6 5 carboxymethyl 2 hydroxymuconate isomerase 0.0017527603519 0.000298299702217 -0.00145446064968 +UniRef50_Q3IUW4 TraC 0.0277604115257 0.00937690913022 -0.0183835023955 +UniRef50_B9KUI7 0.000517104094322 0.000868578544689 0.000351474450367 +UniRef50_UPI00047C294C hypoxanthine oxidase, partial 0.000670118467104 0.000140411859739 -0.000529706607365 +UniRef50_UPI0003B6C29E translation initiation factor IF 2 4.23445283216e-06 1.65413061475e-05 1.23068533153e-05 +UniRef50_P0AFH9 Osmotically inducible protein Y 0.00145033779083 0.00125188603289 -0.00019845175794 +UniRef50_Q5HDU6 Lipid II 0.0206521660372 0.00453141329982 -0.0161207527374 +UniRef50_Q830B5 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00410032668933 0.00824753206725 0.00414720537792 +UniRef50_UPI000470A41D hypothetical protein, partial 4.20935635529e-05 2.70794615507e-05 -1.50141020022e-05 +UniRef50_P16433 Formate hydrogenlyase subunit 7 0.00635297994815 0.00142067042035 -0.0049323095278 +UniRef50_P30015 Probable ATP dependent helicase lhr 0.000904611299874 0.00026137601689 -0.000643235282984 +UniRef50_F1L3M9 DnaJ subfamily B member 5 2.69457156372e-05 3.12842592944e-05 4.3385436572e-06 +UniRef50_D5VJS0 DEAD DEAH box helicase domain protein 0.00857871031162 0.00120315003348 -0.00737556027814 +UniRef50_UPI000328CE6B PREDICTED 5.52896489843e-05 0.000654431368487 0.000599141719503 +UniRef50_UPI00016C3888 hypothetical protein, partial 0.000657285768533 6.93136155931e-05 -0.00058797215294 +UniRef50_J7TL98 Transcriptional regulator, AraC family 0.000137768609074 0.00517636769948 0.00503859909041 +UniRef50_J1JW34 3.51555549172e-06 5.74902577001e-06 2.23347027829e-06 +UniRef50_UPI000475758B transcriptional regulator 6.34518683161e-05 1.51723937043e-05 -4.82794746118e-05 +UniRef50_A3VVX0 Hypothetical BRO family protein 6.7986583443e-05 1.95269826664e-05 -4.84596007766e-05 +UniRef50_Q2S1E4 Adenylate kinase 8.61989643222e-06 1.29537756304e-05 4.33387919818e-06 +UniRef50_F0XZ32 0.000434095718637 0.000537535220615 0.000103439501978 +UniRef50_M5S0G6 4.69017598951e-06 0.000464377522965 0.000459687346975 +UniRef50_P24230 ATP dependent DNA helicase RecG 0.00335057673804 0.000723451422294 -0.00262712531575 +UniRef50_B9KTP4 Extracellular solute binding protein, family 1 0.0134620523319 0.0040452722241 -0.0094167801078 +UniRef50_D9R0R8 Flavodoxin nitric oxide synthase 0.000254154753991 0.00151380784867 0.00125965309468 +UniRef50_P59784 Glucitol sorbitol specific phosphotransferase enzyme IIA component 0.000643940239408 0.000299953013384 -0.000343987226024 +UniRef50_P08499 Homoserine dehydrogenase 4.70307769808e-06 0.0050849799937 0.005080276916 +UniRef50_A1A9I1 Formate transporter 0.00283524516485 0.000639653250757 -0.00219559191409 +UniRef50_I0C2Q1 0.00816467778568 0.00259787033201 -0.00556680745367 +UniRef50_UPI0003B4C7B5 cell division protein FtsZ 1.15218060536e-05 6.32685785094e-06 -5.19494820266e-06 +UniRef50_P0AD18 Inner membrane protein YohC 0.000973600556889 0.000302888928405 -0.000670711628484 +UniRef50_UPI0002EF456C hypothetical protein 9.24946147709e-05 2.51706882459e-05 -6.7323926525e-05 +UniRef50_E8PF29 CzcI 0.000285974233984 0.0112898425668 0.0110038683328 +UniRef50_P0AA97 0.00363257556419 0.000777182862646 -0.00285539270154 +UniRef50_P0AA96 0.00765778321076 0.000485470022509 -0.00717231318825 +UniRef50_M9LX88 2.7187555071e-06 6.27168658326e-06 3.55293107616e-06 +UniRef50_P0AA92 0.00429645963326 0.00224295988859 -0.00205349974467 +UniRef50_Q74JL8 Cytidylate kinase 0.024990154944 0.0160876781113 -0.0089024768327 +UniRef50_A5UM81 Acetyltransferase, GNAT family 0.00271569874457 0.000683326407362 -0.00203237233721 +UniRef50_E8TMU8 Glycine betaine L proline ABC transporter, ATPase subunit 0.00879839690642 0.00118681896647 -0.00761157793995 +UniRef50_UPI000476F019 molybdenum ABC transporter permease 3.43136925389e-05 1.93900870012e-05 -1.49236055377e-05 +UniRef50_X2LU18 Alanine tRNA ligase 0.00112081805244 0.000452015365101 -0.000668802687339 +UniRef50_UPI00035EFE25 alkaline phosphatase 5.62959423681e-05 1.26600957653e-05 -4.36358466028e-05 +UniRef50_Q92GH4 Endonuclease III 7.00771523987e-06 2.7912165444e-05 2.09044502041e-05 +UniRef50_P29931 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.000162932803002 0.00014137994893 -2.1552854072e-05 +UniRef50_A9I0E6 Homoserine O acetyltransferase 0.000930397416083 0.00203523609641 0.00110483868033 +UniRef50_UPI0003C1A8F4 3.09302768745e-05 2.83814097557e-05 -2.5488671188e-06 +UniRef50_P0AFA3 Nitrate nitrite sensor protein NarX 0.00315741353269 0.000830352093904 -0.00232706143879 +UniRef50_A0K8T5 Transcriptional regulator, LysR family 0.000527955305017 0.000200214715383 -0.000327740589634 +UniRef50_A5N540 Predicted transport protein, ATPase and permease component 0.000591932455978 0.000597879828799 5.947372821e-06 +UniRef50_E4P0V7 SerB Phosphoserine phosphatase 0.00417245417395 0.00534621407545 0.0011737599015 +UniRef50_UPI000372888C hypothetical protein 0.0003553990243 0.000129825487262 -0.000225573537038 +UniRef50_C6SSA3 0.00256522953562 0.00328672121577 0.00072149168015 +UniRef50_V5VG42 0.000152456503581 0.00543118984223 0.00527873333865 +UniRef50_UPI00037ACEC3 hypothetical protein 0.000209952483934 9.63181437841e-05 -0.00011363434015 +UniRef50_C3KCK1 0.00181427059854 0.00111440266111 -0.00069986793743 +UniRef50_B4V1W5 ATP GTP binding protein 0.000113251599211 0.000308999237138 0.000195747637927 +UniRef50_F8DGR4 LytTr DNA binding domain protein 0.00292743394964 0.00209681547148 -0.00083061847816 +UniRef50_Q2NEM0 DNA primase DnaG 0.00376127202245 0.000913598474871 -0.00284767354758 +UniRef50_P31129 Diguanylate cyclase YdeH 0.00038105261841 0.000576321497731 0.000195268879321 +UniRef50_A0A014MJV1 Crp Fnr family transcriptional regulator 0.000700364262885 0.000670372827031 -2.9991435854e-05 +UniRef50_V6V4N6 0.000259468118757 0.000205081045272 -5.4387073485e-05 +UniRef50_E5U2A7 0.000281168445056 3.46171740739e-05 -0.000246551270982 +UniRef50_A6LR99 RNA directed DNA polymerase 0.00056739479511 0.000738061676362 0.000170666881252 +UniRef50_Q8PFF8 tRNA dihydrouridine synthase A 0.00441417746843 0.00108775174182 -0.00332642572661 +UniRef50_Q71ZA3 Formamidopyrimidine DNA glycosylase 9.6156528043e-06 0.00152251484292 0.00151289919012 +UniRef50_UPI000373BE1A hypothetical protein 1.48296141811e-05 0.000301587793325 0.000286758179144 +UniRef50_UPI0003697F83 GntR family transcriptional regulator 3.15122030162e-05 5.82111843685e-05 2.66989813523e-05 +UniRef50_Q2FUU3 Imidazole glycerol phosphate synthase subunit hisF 0.0235879424055 0.000963990284409 -0.0226239521211 +UniRef50_A5UJC4 Mg dependent DNase, TatD 0.000835422876638 0.000959088594497 0.000123665717859 +UniRef50_A0YFJ4 1.47573268184e-05 2.78411406661e-05 1.30838138477e-05 +UniRef50_J9GKH0 3.23340125988e-05 0.000899440004669 0.00086710599207 +UniRef50_A1WXH5 Isopentenyl diphosphate Delta isomerase 5.21703982337e-05 1.55470069552e-05 -3.66233912785e-05 +UniRef50_UPI000347F8B1 hypothetical protein 0.00026681693268 0.000276643283554 9.826350874e-06 +UniRef50_UPI000370761B hypothetical protein 0.000291989238949 7.35350453669e-05 -0.000218454193582 +UniRef50_W4LMW8 7.13522568092e-06 1.61363960427e-05 9.00117036178e-06 +UniRef50_UPI0004786463 hypothetical protein 1.87009017859e-05 0.00021632630259 0.000197625400804 +UniRef50_UPI00042CD0F4 3.15797343158e-05 5.7717939686e-05 2.61382053702e-05 +UniRef50_A6LZW0 Sucrose 6 phosphate hydrolase 0.000176940514229 0.00152285643221 0.00134591591798 +UniRef50_UPI0001BF7CE9 hypothetical protein SMAC_10228, partial 0.000430879983092 0.00043856158219 7.681599098e-06 +UniRef50_A0A038G2P2 0.000354616383698 0.000176779365854 -0.000177837017844 +UniRef50_UPI00037E17BF hypothetical protein 5.94720583856e-06 2.87808556213e-05 2.28336497827e-05 +UniRef50_B5XU27 Urease subunit alpha 6.65189799997e-06 2.85320095808e-05 2.18801115808e-05 +UniRef50_P16692 Phosphoribosyl 1,2 cyclic phosphodiesterase 0.00555114873329 0.000703135012379 -0.00484801372091 +UniRef50_E0WIK7 CagY protein 3.98194924671e-05 0.00225664517523 0.00221682568276 +UniRef50_B1X1Y0 1.89607543679e-05 0.000728451871176 0.000709491116808 +UniRef50_A0A009UCL1 Phenylalanine tRNA ligase beta subunit 0.00033756129987 0.00887585344474 0.00853829214487 +UniRef50_UPI0004708F1B hypothetical protein, partial 0.000233267980536 7.76381852963e-05 -0.00015562979524 +UniRef50_F0YFT4 Expressed protein 0.000214744203046 0.000388874357509 0.000174130154463 +UniRef50_D9VSA1 Predicted protein 1.82460999737e-05 1.74833498934e-05 -7.627500803e-07 +UniRef50_UPI000471C706 UDP pyrophosphate synthase 6.77985808345e-06 1.33718933909e-05 6.59203530745e-06 +UniRef50_Q5F8C3 Fructose 1,6 bisphosphatase class 1 0.00168556143408 0.0143284658499 0.0126429044158 +UniRef50_UPI00037A84AA hypothetical protein 6.11579618101e-06 1.62399270392e-05 1.01241308582e-05 +UniRef50_UPI0004193DB1 chemotaxis protein CheY 0.000158701271107 6.16029292302e-05 -9.70983418768e-05 +UniRef50_P77536 0.00322561483687 0.000511726875567 -0.0027138879613 +UniRef50_A6M0P7 Xanthine uracil vitamin C permease 0.000505536038142 0.000755916704798 0.000250380666656 +UniRef50_Q8ZM06 2,5 diketo D gluconic acid reductase A 2.86797981497e-05 2.28514282236e-05 -5.8283699261e-06 +UniRef50_I4Y2U3 DJ 1 PfpI family protein 0.000200435038326 0.00404279054257 0.00384235550424 +UniRef50_I2DEY3 Flagellar hook associated protein FlgL 0.000154571438899 0.00345060467491 0.00329603323601 +UniRef50_V8RB85 ATP dependent DNA helicase DinG 0.00099338201923 0.000285078622058 -0.000708303397172 +UniRef50_UPI0003B331D4 glycosyl transferase 5.01490861379e-05 9.23942438424e-06 -4.09096617537e-05 +UniRef50_D3E1W2 Lactaldehyde dehydrogenase CofA 0.00427353391694 0.00094303020948 -0.00333050370746 +UniRef50_O27126 DNA directed RNA polymerase subunit A 0.0028679800619 0.00191570535193 -0.00095227470997 +UniRef50_B4EEY8 ATP synthase gamma chain 0.000337892691407 0.00151709817266 0.00117920548125 +UniRef50_UPI00037BC6DA hypothetical protein, partial 0.000482460297262 4.09637911995e-05 -0.000441496506062 +UniRef50_UPI00046F61F0 hypothetical protein 2.47944358703e-05 2.92248318735e-05 4.4303960032e-06 +UniRef50_K9XMG5 Amidohydrolase 0.000113245796655 0.00203689237047 0.00192364657381 +UniRef50_B2JFL4 1.81603730981e-05 0.00124291479716 0.00122475442406 +UniRef50_H8FVE2 0.00016455396676 9.06725379656e-05 -7.38814287944e-05 +UniRef50_A9MKD9 0.0001176895491 0.00340750044457 0.00328981089547 +UniRef50_UPI0002FBDCEC hypothetical protein 1.18344793515e-05 9.9936240165e-05 8.81017608135e-05 +UniRef50_P0AAS3 Inner membrane protein YbbJ 0.00401458533509 0.00209715036358 -0.00191743497151 +UniRef50_U6L2Z7 1.06228311814e-05 3.5263682598e-06 -7.0964629216e-06 +UniRef50_UPI00034D6EDA hypothetical protein 2.57158685051e-05 1.29982240489e-05 -1.27176444562e-05 +UniRef50_A9KF61 Thymidylate synthase 2.30220265864e-05 0.000427417888971 0.000404395862385 +UniRef50_Q7TYA6 Aspartate tRNA ligase 0.0002118964789 0.00876516605444 0.00855326957554 +UniRef50_M2E542 Transposase 0.00154719695554 0.000417900997911 -0.00112929595763 +UniRef50_C5A8E0 HlyD family secretion protein 0.000546547263645 0.000206997690564 -0.000339549573081 +UniRef50_UPI000367DB79 hypothetical protein 0.000406130547828 5.28102564255e-05 -0.000353320291403 +UniRef50_UPI000374E007 hypothetical protein 4.11538164794e-05 0.000122487540065 8.13337235856e-05 +UniRef50_W0RJM9 Beta lactamase domain protein 3.72059952023e-06 0.000102671691006 9.89510914858e-05 +UniRef50_UPI0003B6EABF sodium 0.000863715532786 0.000603938283687 -0.000259777249099 +UniRef50_A5V5W9 DGPFAETKE family protein 8.04809849176e-05 5.17448613311e-05 -2.87361235865e-05 +UniRef50_D8S962 1.54829508233e-05 3.91208012679e-06 -1.15708706965e-05 +UniRef50_D0KZ58 0.000166381021286 7.48150405963e-05 -9.15659806897e-05 +UniRef50_A3UE08 Chemotactic signal response protein CheL 4.29843346164e-05 2.13232606832e-05 -2.16610739332e-05 +UniRef50_B3PH50 Probable protein kinase UbiB 0.000284945965412 0.00288945121091 0.0026045052455 +UniRef50_Q8FJC0 0.00360664518398 0.00132190279688 -0.0022847423871 +UniRef50_O08399 DNA gyrase subunit B 1.78035763387e-05 2.36347690143e-05 5.8311926756e-06 +UniRef50_Q1GKH2 Two component transcriptional regulator, winged helix family 0.00163990936494 0.000280808277526 -0.00135910108741 +UniRef50_UPI00036B452D hypothetical protein 5.23966803562e-05 4.00043543745e-05 -1.23923259817e-05 +UniRef50_Q49VN6 0.00311269382701 0.000630569477283 -0.00248212434973 +UniRef50_B2T8C3 Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein 0.000654993953678 0.000602145066982 -5.2848886696e-05 +UniRef50_D8JMP7 0.000381428188728 0.00668671283619 0.00630528464746 +UniRef50_Q2KUE4 Adenine phosphoribosyltransferase 3.51504566142e-05 4.04812010417e-05 5.3307444275e-06 +UniRef50_Q79BD2 0.000254028799716 0.000282118972221 2.8090172505e-05 +UniRef50_J7M139 tRNA dihydrouridine synthase 0.00621367007383 0.00871038446305 0.00249671438922 +UniRef50_Q49VN9 4.42400744827e-05 8.03943406679e-05 3.61542661852e-05 +UniRef50_UPI00045E99AE hypothetical protein 8.74677100605e-05 3.07146160859e-05 -5.67530939746e-05 +UniRef50_Q6AEL0 Non canonical purine NTP pyrophosphatase 1.05122938618e-05 3.51712355109e-05 2.46589416491e-05 +UniRef50_S2XCJ5 1.81611189462e-05 1.38158704406e-05 -4.3452485056e-06 +UniRef50_A6TCB0 Uracil phosphoribosyltransferase 0.00149062647365 0.000956587277784 -0.000534039195866 +UniRef50_UPI000370FC7C hypothetical protein 5.17754904813e-06 3.24659021006e-06 -1.93095883807e-06 +UniRef50_C6SR38 0.00634342651441 0.0017641878581 -0.00457923865631 +UniRef50_B9KLG8 PTS system, fructose subfamily, IIC subunit 0.00016640096454 0.000458588926713 0.000292187962173 +UniRef50_Q2P7B5 Acyl carrier protein 3.56444229336e-05 0.000369144372112 0.000333499949178 +UniRef50_A6M0D3 Methyl accepting chemotaxis sensory transducer 0.000133703404078 0.000682229754441 0.000548526350363 +UniRef50_K6GS41 Winged helix turn helix 2.40375247472e-05 0.00248611384827 0.00246207632352 +UniRef50_Q893F0 Transcriptional regulatory protein 0.000168270128756 0.00215370168918 0.00198543156042 +UniRef50_A9A5Y7 Inosine 5 monophosphate dehydrogenase 3.19369639347e-05 1.83456370965e-05 -1.35913268382e-05 +UniRef50_B9Y1T7 4.29612278649e-05 0.0041227701572 0.00407980892934 +UniRef50_Q8CUE7 Mobilization protein 0.0987639562808 0.0188168783081 -0.0799470779727 +UniRef50_Q5WIL7 Phosphonates import ATP binding protein PhnC 0.0235221402945 0.00418770186016 -0.0193344384343 +UniRef50_D8JEB9 Group A colicins tolerance protein 9.58086266163e-05 0.00562620018955 0.00553039156293 +UniRef50_P31549 Thiamine transport system permease protein ThiP 0.00137996738335 0.000577177384265 -0.000802789999085 +UniRef50_A9M106 Soluble lytic murein transglycosylase, putative 6.5535761953e-05 0.00213845859126 0.00207292282931 +UniRef50_F5XRT1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000261020783112 0.00673121512812 0.00647019434501 +UniRef50_UPI0004416A22 hypothetical protein PUNSTDRAFT_135060 4.57150299449e-05 3.59923096788e-05 -9.7227202661e-06 +UniRef50_B9DLR4 Putative 3 methyladenine DNA glycosylase 0.0138339191912 0.00449136237476 -0.00934255681644 +UniRef50_F0Y296 0.000231220551491 0.000286783945567 5.5563394076e-05 +UniRef50_F2F9R8 9.58202634487e-06 0.00113313806009 0.00112355603375 +UniRef50_Q8DUW3 Shikimate dehydrogenase 0.00601597034097 0.00190597270867 -0.0041099976323 +UniRef50_T2H9Z7 0.000487078695291 1.63349573798e-05 -0.000470743737911 +UniRef50_UPI000380D55F hypothetical protein 2.23292768737e-06 5.9270877984e-06 3.69416011103e-06 +UniRef50_Q14GX0 Chaperone protein DnaJ 0.000300102990212 0.0119400894871 0.0116399864969 +UniRef50_UPI0003748B7D hypothetical protein 6.54290175183e-05 0.000152183888198 8.67548706797e-05 +UniRef50_Q321Q6 0.00178658809424 0.00123048627164 -0.0005561018226 +UniRef50_K6QCW0 1.22405574203e-06 1.53775289329e-05 1.41534731909e-05 +UniRef50_U5MWF2 0.000142268588759 0.000952055870118 0.000809787281359 +UniRef50_UPI00037BD3FB hypothetical protein 5.25160465333e-06 0.00033190746488 0.000326655860227 +UniRef50_UPI00046FDA02 hypothetical protein 2.928915761e-05 5.16439819125e-05 2.23548243025e-05 +UniRef50_J3N3W4 3.91062260815e-05 2.39646303557e-05 -1.51415957258e-05 +UniRef50_UPI0003B5133D ATP dependent DNA helicase 3.30862244406e-06 2.02432010591e-06 -1.28430233815e-06 +UniRef50_UPI00041A4387 DNA polymerase I 1.57536321722e-06 6.15412892863e-05 5.99659260691e-05 +UniRef50_UPI0002378CB3 X Pro dipeptidase 3.22057043186e-05 0.000147716852781 0.000115511148462 +UniRef50_A6M378 Thymidylate synthase 0.000147647714023 0.000645371747058 0.000497724033035 +UniRef50_I1EHP5 7.89662067181e-05 3.70886171851e-05 -4.1877589533e-05 +UniRef50_W4UBB6 Succinate dehydrogenase flavoprotein subunit 0.00017995460448 0.000112280805381 -6.7673799099e-05 +UniRef50_D6SC84 4.8361627099e-05 5.43655856903e-05 6.0039585913e-06 +UniRef50_UPI000405366E FAD dependent oxidoreductase 2.96448090241e-06 2.3203813872e-06 -6.4409951521e-07 +UniRef50_B0KAL7 4 hydroxy tetrahydrodipicolinate synthase 5.97784568924e-06 1.8036932173e-05 1.20590864838e-05 +UniRef50_K0LQD7 Hydrolase 0.0122914495443 0.00490998691538 -0.00738146262892 +UniRef50_G7M6G8 Heavy metal transport detoxification protein 0.000514885202036 0.000896094834824 0.000381209632788 +UniRef50_UPI00046934BB peptidase C39, partial 6.11281053486e-06 6.79207316255e-06 6.7926262769e-07 +UniRef50_Q3IV33 Putative outer membrane protein 0.0170931104728 0.00106694591196 -0.0160261645608 +UniRef50_Q9RY14 0.000199411718742 0.0640754425057 0.063876030787 +UniRef50_F5ZHL1 Sulfatase 0.00530889712404 0.00170459691558 -0.00360430020846 +UniRef50_Q9RY17 0.000369978654976 0.0236431454019 0.0232731667469 +UniRef50_Q9RY11 0.000137542217499 0.0553038078123 0.0551662655948 +UniRef50_Q9RY12 0.000355002497348 0.061963462388 0.0616084598907 +UniRef50_UPI0003B667B4 ABC transporter ATP binding protein, partial 2.30512268792e-05 1.2825181176e-05 -1.02260457032e-05 +UniRef50_UPI0004716B86 hypothetical protein 3.56721232518e-05 3.21787942666e-05 -3.4933289852e-06 +UniRef50_UPI0004171A57 histidinol phosphate aminotransferase 2.79771440503e-05 4.51678160048e-05 1.71906719545e-05 +UniRef50_H9UQE9 Putative inner membrane protein 0.000102810975195 0.000658047361923 0.000555236386728 +UniRef50_D4L1E1 ABC type Fe3+ siderophore transport system, permease component 0.000123765897988 0.000634942285827 0.000511176387839 +UniRef50_H7BW27 0.000162147576229 2.24367302482e-05 -0.000139710845981 +UniRef50_UPI000363A648 hypothetical protein 0.00027915766877 0.000177803270398 -0.000101354398372 +UniRef50_K3QZQ8 5.28790071369e-05 7.2492932705e-05 1.96139255681e-05 +UniRef50_P28912 H repeat associated protein YhhI 0.0113327221472 0.00375876133986 -0.00757396080734 +UniRef50_UPI00036D582C hypothetical protein 1.21235111286e-05 9.65051508965e-06 -2.47299603895e-06 +UniRef50_A6LR25 Binding protein dependent transport systems inner membrane component 0.000146881707723 0.000296304386488 0.000149422678765 +UniRef50_U1RDC8 6.27711886123e-06 3.45241724351e-05 2.82470535739e-05 +UniRef50_A3DE29 Phospho N acetylmuramoyl pentapeptide transferase 0.000126067679064 0.00131138332516 0.0011853156461 +UniRef50_A5UJY3 Polyferredoxin, iron sulfur binding 0.00265909277526 0.000235625030732 -0.00242346774453 +UniRef50_A0A011MBA1 DNA repair protein RecN 2.96742333397e-06 1.24193068563e-05 9.45188352233e-06 +UniRef50_Q9ZK62 Signal recognition particle protein 8.55977298968e-05 0.00446159414824 0.00437599641834 +UniRef50_L0M8C5 2.44868198239e-06 1.26535245847e-05 1.02048426023e-05 +UniRef50_A3MYR6 Shikimate kinase 4.45026430385e-05 2.07890259772e-05 -2.37136170613e-05 +UniRef50_O06005 Amino acid permease AapA 0.00228669174344 0.0440274873293 0.0417407955859 +UniRef50_B5YFV7 DNA directed RNA polymerase subunit beta 5.50881958214e-06 2.00081365218e-06 -3.50800592996e-06 +UniRef50_UPI0003632FFE hypothetical protein 6.5704492222e-06 2.26755003781e-05 1.61050511559e-05 +UniRef50_D7AA03 Binding protein dependent transport systems inner membrane component 0.00319346349473 0.000226296325824 -0.00296716716891 +UniRef50_A8HWS0 0.000225588136781 4.24574040983e-05 -0.000183130732683 +UniRef50_I4Z4F5 Lipoprotein 1.23756171431e-05 9.93211142797e-06 -2.44350571513e-06 +UniRef50_Q06951 Phosphomannomutase 0.000626595358918 1.47140849762e-05 -0.000611881273942 +UniRef50_E6MZK3 Binding dependent transport system inner membrane component family protein 0.000102484883855 0.0017916050868 0.00168912020295 +UniRef50_G8LF66 Nitrate nitrite response regulator protein narL 0.00154843126171 0.00125720710985 -0.00029122415186 +UniRef50_A5UJK6 0.000306184394528 0.000985600759453 0.000679416364925 +UniRef50_A5UJK7 0.00654557828834 0.00134234865999 -0.00520322962835 +UniRef50_R6G3H3 FAD binding domain protein 0.00105821437006 0.00215985290146 0.0011016385314 +UniRef50_UPI00041B7937 hypothetical protein 2.72306940301e-05 3.84786692664e-05 1.12479752363e-05 +UniRef50_Q9RR63 Tyrosine tRNA ligase 0.000294370041344 0.0495082877112 0.0492139176699 +UniRef50_Q5HQF1 Membrane protein, putative 0.0181286169811 0.00492225299925 -0.0132063639818 +UniRef50_A0LSS7 Glutamate tRNA ligase 7.99758450996e-05 0.00588717592932 0.00580720008422 +UniRef50_O26156 Short chain isoprenyl diphosphate synthase 0.00218969545983 0.00259453418919 0.00040483872936 +UniRef50_UPI0003FDB9A0 SAM dependent methyltransferase 7.21140879526e-05 0.000163482681424 9.13685934714e-05 +UniRef50_V6FKX1 Glycosyl hydrolase family 3, C terminal domain protein 5.04660412934e-05 0.000180865233991 0.000130399192698 +UniRef50_Q49W95 NADH 0.0257099135579 0.00399790632269 -0.0217120072352 +UniRef50_B1LKC4 Ureidoglycolate lyase 0.000850713037148 0.00123048627164 0.000379773234492 +UniRef50_UPI000287FF7D RpoD subfamily RNA polymerase sigma 70 subunit 2.99283969964e-06 8.44556219171e-06 5.45272249207e-06 +UniRef50_UPI0003AE35A2 PREDICTED 3.44693767788e-06 8.82066133314e-05 8.47596756535e-05 +UniRef50_A8LIE1 Transcriptional regulator 0.0135529915772 0.00366788753144 -0.00988510404576 +UniRef50_M9VCG5 0.000393214571719 0.0131740293678 0.0127808147961 +UniRef50_UPI0003B648D0 peptidase M20 5.38732851757e-06 1.92435972759e-05 1.38562687583e-05 +UniRef50_D4HCS1 0.000295968389143 0.00195517955798 0.00165921116884 +UniRef50_Q5HRF8 Putative heme dependent peroxidase SERP0235 0.0206740315406 0.0102621144865 -0.0104119170541 +UniRef50_UPI0002FAB494 hypothetical protein 6.97110111851e-06 9.67053975942e-06 2.69943864091e-06 +UniRef50_Q52463 Glycosyltransferase alg8 0.000750105353216 0.000611875348484 -0.000138230004732 +UniRef50_F0T7F9 Precorrin 2 C20 methyltransferase 0.00476997407374 0.00137695930489 -0.00339301476885 +UniRef50_D5USJ5 ABC transporter related protein 0.000432978035884 0.00086586486756 0.000432886831676 +UniRef50_A0A015A762 Aminopeptidase N 0.00042716687238 0.00890449614552 0.00847732927314 +UniRef50_R1EVW7 0.000163286015872 4.45637327258e-05 -0.000118722283146 +UniRef50_P0DA58 DegV domain containing protein SpyM3_1667 0.0104488647604 0.00123837039137 -0.00921049436903 +UniRef50_Q12GA2 Glycerol kinase 0.00014708390166 0.00816102012439 0.00801393622273 +UniRef50_UPI0003C10A99 PREDICTED 5.99613517984e-06 2.00694672513e-05 1.40733320715e-05 +UniRef50_C6XRP6 Transcriptional regulator, XRE family 0.00129486390965 0.000492194508663 -0.000802669400987 +UniRef50_UPI0002A4AECE PREDICTED 4.67200040153e-06 1.45603029423e-05 9.88830254077e-06 +UniRef50_Q7VZ77 Siroheme synthase 4.39172397526e-05 1.37933628956e-05 -3.0123876857e-05 +UniRef50_G7M8Y2 Site determining protein 0.000652623181394 0.00148002523243 0.000827402051036 +UniRef50_Q8YHH4 Uridylate kinase 1.70263504483e-05 1.61839524629e-05 -8.423979854e-07 +UniRef50_UPI00047C4E72 chemotaxis protein CheD 0.00020276325328 2.89218839602e-05 -0.00017384136932 +UniRef50_UPI00041519E4 leucyl phenylalanyl tRNA protein transferase 7.38231529172e-06 1.65311811729e-05 9.14886588118e-06 +UniRef50_A0A031GMI8 4.71509237386e-05 0.000198218532928 0.000151067609189 +UniRef50_UPI00037BE049 hypothetical protein 6.28873954468e-06 1.18230523819e-05 5.53431283722e-06 +UniRef50_I1XZ29 0.000251099327394 0.00261894073583 0.00236784140844 +UniRef50_A6LYW5 0.000526202772398 0.000337504805945 -0.000188697966453 +UniRef50_Q3J464 Pseudouridine synthase 0.00287549256723 0.000166375608569 -0.00270911695866 +UniRef50_G4LRU0 0.000443319659724 0.000760347587795 0.000317027928071 +UniRef50_M3BKE3 ComEC Rec2 like protein 3.56947917989e-05 0.000181726035154 0.000146031243355 +UniRef50_R6XPK5 2.73347059684e-05 0.00072299974251 0.000695665036542 +UniRef50_A6LX94 Beta and gamma crystallin 0.000343324042664 0.000429795997823 8.6471955159e-05 +UniRef50_UPI000470DD33 cell division protein FtsZ 3.1521196182e-06 1.45456930579e-05 1.13935734397e-05 +UniRef50_P0A4G4 Metal ABC transporter substrate binding lipoprotein 0.000122560385996 0.000196877803461 7.4317417465e-05 +UniRef50_UPI00035EA533 hypothetical protein 0.000382769625642 0.00026125181921 -0.000121517806432 +UniRef50_UPI00046E5D21 glycosyl transferase 7.43874515805e-05 5.26403439511e-05 -2.17471076294e-05 +UniRef50_UPI0003740A8D hypothetical protein 4.31667869126e-06 0.000106007427732 0.000101690749041 +UniRef50_UPI0002FEF2A0 hypothetical protein 7.56346483311e-05 1.14153747461e-05 -6.4219273585e-05 +UniRef50_UPI0003AF1E76 PREDICTED 1.77037912205e-05 2.74714807446e-05 9.7676895241e-06 +UniRef50_D0C6D9 Molybdopterin oxidoreductase 0.000101429468035 0.0083212736265 0.00821984415847 +UniRef50_B1YJY5 Endonuclease MutS2 9.5020740786e-05 0.00137461888686 0.00127959814607 +UniRef50_UPI00016C0B60 ABC transporter related protein 3.58425753778e-06 4.99791947691e-06 1.41366193913e-06 +UniRef50_A6W7W9 Probable dual specificity RNA methyltransferase RlmN 1.93583159675e-05 4.45597765157e-05 2.52014605482e-05 +UniRef50_Q9RTP8 Divalent metal cation transporter MntH 0.00250724661576 0.0436649685415 0.0411577219257 +UniRef50_Q48C82 0.00595387803284 0.00049861814253 -0.00545525989031 +UniRef50_Q8FKC6 Acyl carrier protein phosphodiesterase 0.00192341798447 0.0030397701913 0.00111635220683 +UniRef50_UPI00030FC743 hypothetical protein 6.05353282664e-06 6.0339787607e-06 -1.955406594e-08 +UniRef50_A0A059IQC1 5.10211352025e-06 0.000174294358049 0.000169192244529 +UniRef50_UPI000376E9E0 hypothetical protein 0.000365755081973 0.000165316730772 -0.000200438351201 +UniRef50_C6SKJ8 0.000295498238766 0.00644920986333 0.00615371162456 +UniRef50_UPI00047BE00A molecular chaperone GroES, partial 8.97646224949e-06 0.000141157476738 0.000132181014489 +UniRef50_UPI0004710755 ribonucleoside diphosphate reductase 7.11092069817e-06 3.55843350727e-05 2.84734143745e-05 +UniRef50_Q9FIW4 Beta glucosidase 42 3.05116665277e-06 7.07440856046e-06 4.02324190769e-06 +UniRef50_UPI0003C13A93 PREDICTED 1.06102682363e-05 0.000144082302323 0.000133472034087 +UniRef50_Q67KG3 Bifunctional purine biosynthesis protein PurH 2.88639037212e-06 5.26748770462e-05 4.97884866741e-05 +UniRef50_UPI000368145E hypothetical protein 0.000125679784114 6.8875781509e-05 -5.6804002605e-05 +UniRef50_F9PTR8 Rhodanese like protein 3.7447654394e-05 7.38633159141e-05 3.64156615201e-05 +UniRef50_Q2NEX9 PurB 0.00374381580472 0.00113393308348 -0.00260988272124 +UniRef50_Q6GFZ2 Probable tRNA sulfurtransferase 0.0164988607614 0.00544887921562 -0.0110499815458 +UniRef50_UPI00037CBB5C hypothetical protein 7.90616379317e-05 8.45088659599e-05 5.4472280282e-06 +UniRef50_J9NS14 0.000368984340064 0.000296852719885 -7.2131620179e-05 +UniRef50_UPI000388FD53 PREDICTED 1.61452306446e-05 0.000143775058047 0.000127629827402 +UniRef50_H5Y8S2 Transposase 5.95434908784e-05 7.71025517105e-06 -5.18332357074e-05 +UniRef50_Q5ZKW0 Mitochondrial tRNA specific 2 thiouridylase 1 3.15061528369e-06 6.05214431731e-06 2.90152903362e-06 +UniRef50_B4RQI7 Anhydro N acetylmuramic acid kinase 0.000226886514461 0.00462326549008 0.00439637897562 +UniRef50_Q9I5U5 Ribosomal RNA small subunit methyltransferase A 0.000351521530011 0.00061636658951 0.000264845059499 +UniRef50_B9KU25 0.00425644010162 0.00151444464203 -0.00274199545959 +UniRef50_Q9RSF6 Sun protein, putative 0.000111902961123 0.00413688226887 0.00402497930775 +UniRef50_B9KJR9 0.00720315401988 0.00233964945029 -0.00486350456959 +UniRef50_S5CP44 Kef type K+ transport systems, predicted NAD binding component 0.000331206182048 0.00537861063859 0.00504740445654 +UniRef50_UPI0003B6E634 histidine kinase 2.08743145831e-06 2.55577989042e-05 2.34703674459e-05 +UniRef50_M9VMF8 DNase 0.00205665848165 0.00500696673867 0.00295030825702 +UniRef50_A0A022GYN4 tRNA specific adenosine deaminase 1.15806186047e-05 5.01982929259e-05 3.86176743212e-05 +UniRef50_U5MYV0 ATP dependent Clp protease ATP binding subunit ClpA 0.00040258132726 0.00153107697118 0.00112849564392 +UniRef50_P76261 Putative cyclic di GMP phosphodiesterase AdrB 0.00235056994584 0.00058878245484 -0.001761787491 +UniRef50_U5UNN1 GNAT family acetyltransferase 0.0495902076576 0.00168249775809 -0.0479077098995 +UniRef50_U5NRK2 0.0101216849031 0.000476317266442 -0.00964536763666 +UniRef50_Q1C1V1 NADH pyrophosphatase 0.00346126201676 0.00124016872509 -0.00222109329167 +UniRef50_U5RUZ1 DNA polymerase III, subunits gamma and tau 0.000443053973874 0.00223188865696 0.00178883468309 +UniRef50_UPI00037D5F1A hypothetical protein 6.38653174517e-05 2.9690216703e-05 -3.41751007487e-05 +UniRef50_UPI00047224C9 hypothetical protein 5.45901062337e-05 3.58816180791e-05 -1.87084881546e-05 +UniRef50_P36678 Putative type II secretion system protein M 0.000492373028943 0.000405469160461 -8.6903868482e-05 +UniRef50_G7MCP1 Multi sensor signal transduction histidine kinase 0.000210002449553 0.00116028735321 0.000950284903657 +UniRef50_Q6GIN0 Prolipoprotein diacylglyceryl transferase 0.0105972029372 0.00507576790829 -0.00552143502891 +UniRef50_B8FQ92 Chorismate synthase 2.85402163636e-05 0.000190240792814 0.00016170057645 +UniRef50_Q2WBD9 Phosphoheptose isomerase 9.1405626226e-06 1.01349043109e-05 9.943416883e-07 +UniRef50_W8RXY9 Arsenate reductase related protein 0.000368841721434 0.000113798139364 -0.00025504358207 +UniRef50_A9M3Z6 Periplasmic protein 0.000161548925324 0.000786746897966 0.000625197972642 +UniRef50_UPI00036A03CE hypothetical protein 8.306192824e-06 9.18686727185e-06 8.8067444785e-07 +UniRef50_UPI0003486CF4 hypothetical protein 2.29960488726e-06 1.78314182361e-05 1.55318133488e-05 +UniRef50_Q6A8Q7 1,4 alpha glucan branching enzyme GlgB 6.17119008952e-05 0.00453141931206 0.00446970741116 +UniRef50_G4B6N4 3.40841583254e-05 0.000661156802679 0.000627072644354 +UniRef50_UPI000477A19D ribose ABC transporter permease 0.000154420901092 4.89726624129e-05 -0.000105448238679 +UniRef50_A1U1A4 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00371807032243 0.00602806619236 0.00230999586993 +UniRef50_Q167T4 Branched chain amino acid ABC transporter, permease protein, putative 0.00430897010205 0.00125570071271 -0.00305326938934 +UniRef50_V5ZX98 4.95644558563e-05 2.79599573674e-05 -2.16044984889e-05 +UniRef50_C6M2N2 RND transporter, HAE1 family 0.000223229365711 0.00241051587766 0.00218728651195 +UniRef50_UPI0004796185 16S rRNA methyltransferase 1.40724902464e-05 1.34581645376e-05 -6.143257088e-07 +UniRef50_UPI000472B33B ABC transporter 7.0927191316e-06 3.5710719737e-05 2.86180006054e-05 +UniRef50_P56396 Tryptophan tRNA ligase 0.000129276023577 0.00311161665558 0.002982340632 +UniRef50_Q5L8Z8 Malate dehydrogenase 2.00655358317e-05 0.00165653799243 0.0016364724566 +UniRef50_UPI000377FC08 LuxR family transcriptional regulator 1.56374866602e-05 0.000107442246713 9.18047600528e-05 +UniRef50_A8LPC2 tRNA modification GTPase MnmE 0.0125165324807 0.00298818501522 -0.00952834746548 +UniRef50_O26480 UDP glucose 4 epimerase homolog 0.00209067147479 0.000387747082661 -0.00170292439213 +UniRef50_Q1J391 Allantoinase 9.23119800131e-06 0.0268731679347 0.0268639367367 +UniRef50_UPI00046FE227 multidrug ABC transporter ATP binding protein 7.258158976e-06 3.15866285051e-06 -4.09949612549e-06 +UniRef50_V6EI61 Lactose permease 0.00118566426436 0.000854798692905 -0.000330865571455 +UniRef50_D7DKW7 Short chain dehydrogenase reductase SDR 0.0126894301501 0.00373978163359 -0.00894964851651 +UniRef50_I5C147 0.000238828691517 2.79726104894e-05 -0.000210856081028 +UniRef50_Q7VW21 UPF0246 protein BP2452 5.14985772163e-06 2.00245918226e-05 1.4874734101e-05 +UniRef50_M3Z864 7.19906160945e-05 0.00024574569857 0.000173755082476 +UniRef50_UPI00035D274E hypothetical protein 3.96158641696e-06 3.11015111038e-06 -8.5143530658e-07 +UniRef50_O25722 DNA translocase FtsK 0.000226871427991 0.00403104154073 0.00380417011274 +UniRef50_Q1C3L9 Lipoprotein NlpI 0.00403851570185 0.00126833725072 -0.00277017845113 +UniRef50_UPI0004650975 hypothetical protein 0.00111458637407 5.61012122887e-05 -0.00105848516178 +UniRef50_UPI00037DD9E3 hypothetical protein, partial 2.41924525391e-05 1.73042036393e-05 -6.8882488998e-06 +UniRef50_UPI0004630A02 hypothetical protein 8.81556363741e-05 9.54443822869e-05 7.2887459128e-06 +UniRef50_UPI00037AA24F 30S ribosomal protein S19, partial 4.01454567108e-05 3.14358549628e-05 -8.709601748e-06 +UniRef50_A0A023Y3Z5 0.000152298661952 3.97361055833e-05 -0.000112562556369 +UniRef50_UPI00036F824A MULTISPECIES 9.48243289863e-05 1.47712176666e-05 -8.00531113197e-05 +UniRef50_UPI00034D7E89 hypothetical protein 0.000494244962007 0.0196344434232 0.0191401984612 +UniRef50_UPI000369A9BC hypothetical protein 0.000602001831384 1.6053349471e-05 -0.000585948481913 +UniRef50_K4A616 5.58349256945e-06 5.06604191774e-06 -5.1745065171e-07 +UniRef50_UPI0003B739B2 glutamyl tRNA synthetase 1.09299255498e-05 1.01322515281e-05 -7.976740217e-07 +UniRef50_Q8CPM6 Divalent metal cation transporter MntH 0.0221096787854 0.00457056392758 -0.0175391148578 +UniRef50_A0A011R0M1 Dual specificity phosphatase, catalytic domain protein 7.71207796926e-06 2.04918086196e-05 1.27797306503e-05 +UniRef50_P42590 Inner membrane transporter YgjI 0.00116527148351 0.000138754912385 -0.00102651657113 +UniRef50_A3DDS7 Indole 3 glycerol phosphate synthase 9.19758723774e-06 1.40020088611e-05 4.80442162336e-06 +UniRef50_R5TME3 Xylulokinase 0.000272914524022 0.00236394809975 0.00209103357573 +UniRef50_A3PQ77 Tripartite ATP independent periplasmic transporter, DctQ component 0.0103874200994 0.000390286394531 -0.00999713370487 +UniRef50_P47650 Phosphate import ATP binding protein PstB 6.15621484022e-06 8.16942178227e-06 2.01320694205e-06 +UniRef50_X1GFV3 Marine sediment metagenome DNA, contig 5.36665218042e-05 0.000395379210763 0.000341712688959 +UniRef50_UPI00029A5C6F protein narU, partial 0.000125218775265 6.40898778506e-05 -6.11288974144e-05 +UniRef50_Q732P6 Isoprenyl transferase 0.0120946865437 0.00458843631451 -0.00750625022919 +UniRef50_Q6F7N0 Ferrochelatase 0.000116628008914 0.00835371788803 0.00823708987912 +UniRef50_F4D5J0 0.000397899487961 0.00288484624104 0.00248694675308 +UniRef50_UPI00039E983D acetylglutamate kinase 2.47295414425e-05 1.78389434255e-05 -6.890598017e-06 +UniRef50_U2ZS91 9.10756380874e-05 4.66657809918e-05 -4.44098570956e-05 +UniRef50_A5UKG8 Nicotinate nucleotide pyrophosphorylase [carboxylating] 0.00526829712196 0.00115936138889 -0.00410893573307 +UniRef50_H0Q5F2 Short chain dehydrogenase reductase SDR 0.000670152785609 0.00553696274512 0.00486680995951 +UniRef50_UPI0003629198 hypothetical protein 5.40451313235e-05 8.08216720438e-05 2.67765407203e-05 +UniRef50_Q5HKK3 0.00117144561385 0.00220764947592 0.00103620386207 +UniRef50_UPI000475640B pilus assembly protein CpaF 2.01270551046e-05 1.09115462201e-05 -9.2155088845e-06 +UniRef50_UPI0003C1219C 6.90528861822e-05 1.33914266773e-05 -5.56614595049e-05 +UniRef50_I6STQ4 Oxidoreductase 0.00618896009767 0.00382245614644 -0.00236650395123 +UniRef50_Q6GHV6 Iron regulated surface determinant protein A 0.00867254853466 0.00279298823315 -0.00587956030151 +UniRef50_Q3JF19 Glycerol 3 phosphate dehydrogenase [NAD+] 0.00276109504078 0.00109084395363 -0.00167025108715 +UniRef50_UPI00037482BD hypothetical protein 6.63505100035e-06 9.67354623114e-06 3.03849523079e-06 +UniRef50_UPI00037267AF hypothetical protein 1.30395726511e-05 0.000109901296729 9.68617240779e-05 +UniRef50_UPI000370F5C3 hypothetical protein 0.00169473000577 0.000193865511885 -0.00150086449388 +UniRef50_D6M286 Tat pathway signal sequence 1.65769767111e-05 3.51908837227e-06 -1.30578883388e-05 +UniRef50_M0J3W1 dGTPase 4.44787922733e-05 0.000143382782849 9.89039905757e-05 +UniRef50_W5B0U3 0.000281390506213 0.000228454725321 -5.2935780892e-05 +UniRef50_P37342 0.00667125602372 0.000617766556792 -0.00605348946693 +UniRef50_S6AVL7 1.47497606063e-05 0.000317675601259 0.000302925840653 +UniRef50_UPI000371A11E MULTISPECIES 4.33308300852e-05 2.74957425416e-05 -1.58350875436e-05 +UniRef50_Q0FDE4 FoF1 ATP synthase, subunit I 3.82888192802e-05 5.96823002297e-05 2.13934809495e-05 +UniRef50_L7WPL2 0.0245130820171 0.00404202220921 -0.0204710598079 +UniRef50_Q5HQZ3 Transferrin receptor 0.0237877892632 0.00253906836159 -0.0212487209016 +UniRef50_Q8DR58 UPF0398 protein spr0331 0.00632476987774 0.00326002910713 -0.00306474077061 +UniRef50_K1BXA7 Two component sensor 2.03203359071e-05 6.87794058176e-06 -1.34423953253e-05 +UniRef50_B7VS71 Phosphomethylpyrimidine kinase 0.000152416953778 0.00710306438132 0.00695064742754 +UniRef50_P23530 Phosphoenolpyruvate protein phosphotransferase 0.0221800378512 0.0129521821897 -0.0092278556615 +UniRef50_UPI000472C798 pseudouridine synthase 8.75617696749e-06 2.17366360059e-05 1.29804590384e-05 +UniRef50_M3BD66 0.00014900762718 5.35363960773e-05 -9.54712311027e-05 +UniRef50_K9NR38 Peptidase M23B 0.000631013623811 0.000123219765733 -0.000507793858078 +UniRef50_Q6FA84 0.00103063238685 0.00209298925569 0.00106235686884 +UniRef50_Q3D4U8 0.000451929963161 0.000299504756839 -0.000152425206322 +UniRef50_UPI00046FB65C hypothetical protein 0.000218411519558 8.79082342097e-05 -0.000130503285348 +UniRef50_Q7UR11 Ferripyochelin binding protein 4.05860529477e-05 2.68459257558e-05 -1.37401271919e-05 +UniRef50_UPI00047CB9DF 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 2.24727465012e-05 5.81587834312e-06 -1.66568681581e-05 +UniRef50_Q5LUR8 Zinc import ATP binding protein ZnuC 1.89531359833e-05 8.59805111053e-06 -1.03550848728e-05 +UniRef50_Q3ZAD5 Cysteine tRNA ligase 2.80851782866e-06 9.8902911096e-06 7.08177328094e-06 +UniRef50_Q8DVX1 0.00237308217495 0.000597688758296 -0.00177539341665 +UniRef50_I0C0T2 Trp repressor binding protein 0.004925432984 0.00343340857958 -0.00149202440442 +UniRef50_I5C5U6 2.35491798924e-05 4.47973598977e-05 2.12481800053e-05 +UniRef50_A4WUQ1 7.31285504014e-05 0.000288583099537 0.000215454549136 +UniRef50_P37691 0.00191472851882 0.000701268525188 -0.00121345999363 +UniRef50_U5MLQ3 Processive diacylglycerol glucosyltransferase UgtP 0.000104374006137 0.00084737572678 0.000743001720643 +UniRef50_Q9P9A1 Nitrate reductase beta subunit 3.75088367833e-05 5.7001067285e-05 1.94922305017e-05 +UniRef50_UPI000379A03B malyl CoA thiolesterase 0.000181792102623 0.000102123619372 -7.9668483251e-05 +UniRef50_I0EPP7 Periplasmic dipeptide transport substrate binding protein 7.71954987484e-05 0.0038468247406 0.00376962924185 +UniRef50_Q8CU41 Ornithine carbamoyltransferase 1, catabolic 0.00918007512207 0.00291215003988 -0.00626792508219 +UniRef50_E4BBW7 0.000492373028943 0.000891918096963 0.00039954506802 +UniRef50_Q2NI05 MvhA 0.00248091175236 0.00104205943273 -0.00143885231963 +UniRef50_A0A058Z3Q5 4.91326820447e-06 3.6605424989e-06 -1.25272570557e-06 +UniRef50_D3QHG0 Phosphonate ABC transporter permease protein phnE1 0.0180733284964 0.00594815457642 -0.01212517392 +UniRef50_G7M9K8 Methyl accepting chemotaxis sensory transducer 0.000177186764338 0.00112167501092 0.000944488246582 +UniRef50_UPI00047CAA92 polynucleotide phosphorylase polyadenylase 2.29777499373e-06 7.69070512246e-06 5.39293012873e-06 +UniRef50_V6ZFX5 HD domain protein 9.82612533802e-06 4.71871036838e-05 3.73609783458e-05 +UniRef50_C5B9D9 Phosphopantetheine adenylyltransferase 6.88279506994e-05 1.3664686544e-05 -5.51632641554e-05 +UniRef50_P0AEV2 Regulator of RpoS 0.00213000696558 0.000572594360419 -0.00155741260516 +UniRef50_I3U2F8 DAACS family dicarboxylate amino acid 0.0114407456588 0.00371867171704 -0.00772207394176 +UniRef50_UPI0004673090 DNA mismatch repair protein Vsr 5.86686998499e-05 1.73235082443e-05 -4.13451916056e-05 +UniRef50_I6TRJ5 Arsenate reductase 0.000322637597309 0.00884656194236 0.00852392434505 +UniRef50_A6DYW3 6.83398416337e-05 0.000117086547199 4.87467055653e-05 +UniRef50_Q6A7D5 Conserved protein 0.000151225107133 0.00533161724659 0.00518039213946 +UniRef50_A5ULE4 Predicted transcriptional regulator 0.0023480850545 0.000476320701537 -0.00187176435296 +UniRef50_UPI0003820AE4 hypothetical protein 5.24925683015e-06 9.36139093951e-06 4.11213410936e-06 +UniRef50_Q5ZUH9 Lipid A export ATP binding permease protein MsbA 2.84228847265e-06 1.31226486019e-05 1.02803601292e-05 +UniRef50_A4VGV6 6.16382153773e-05 9.47568682882e-05 3.31186529109e-05 +UniRef50_UPI000382EBAF hypothetical protein 4.51447282579e-06 6.3114295258e-06 1.79695670001e-06 +UniRef50_M4KI13 Fibrinogen binding family protein 0.00492951353366 0.00197905751414 -0.00295045601952 +UniRef50_Q07V02 RNA pyrophosphohydrolase 0.00180984491917 0.000363839883189 -0.00144600503598 +UniRef50_Q3JWW0 7.07167025995e-06 0.000178562985876 0.000171491315616 +UniRef50_A4H7G2 1.20992946588e-05 4.73039387273e-05 3.52046440685e-05 +UniRef50_Q2NES1 FrhB 0.00601520135248 0.000206997690564 -0.00580820366192 +UniRef50_Q1IIL2 Chorismate synthase 1.34969087571e-05 0.000137628670627 0.00012413176187 +UniRef50_R6RW73 ABC type multidrug transport system ATPase component 0.00451688047017 0.00205885697092 -0.00245802349925 +UniRef50_A0A009VZS8 Penicillin binding protein 2 0.000502439376712 0.00365152270583 0.00314908332912 +UniRef50_UPI0003768F8C hypothetical protein 0.000142595853597 2.72833478731e-05 -0.000115312505724 +UniRef50_O27054 Probable L aspartate dehydrogenase 0.00295361127864 0.000812545082389 -0.00214106619625 +UniRef50_B9KQJ4 Chemotactic signal response protein CheL 0.000336628781603 0.000156292400883 -0.00018033638072 +UniRef50_E3J2U0 Transcriptional regulator 1.21461799588e-06 4.32245540975e-06 3.10783741387e-06 +UniRef50_F9YZS9 Integral membrane protein 9.85603103999e-05 0.00547473889006 0.00537617857966 +UniRef50_K9F564 Putative extracellular nuclease 8.29399664806e-06 0.000391903296689 0.000383609300041 +UniRef50_L8GHN9 8.69029961134e-06 2.53118430987e-05 1.66215434874e-05 +UniRef50_UPI00047883C6 hypothetical protein 7.89395715898e-05 9.38139482134e-05 1.48743766236e-05 +UniRef50_UPI00047EF6F7 ABC transporter ATP binding protein 1.43136006603e-06 3.983383226e-05 3.8402472194e-05 +UniRef50_UPI000463035D hypothetical protein 1.56201292732e-05 3.78053587313e-05 2.21852294581e-05 +UniRef50_A0A024KYL9 ATP dependent Clp protease ATP binding subunit 0.000677387439752 0.000146123419104 -0.000531264020648 +UniRef50_D5AP52 0.000441034906072 4.56787198172e-05 -0.000395356186255 +UniRef50_UPI0004764AED hypothetical protein, partial 9.65298372967e-05 3.45941518806e-05 -6.19356854161e-05 +UniRef50_Q9KUD9 Ribosomal RNA small subunit methyltransferase I 0.000934712335195 0.00762446709139 0.00668975475619 +UniRef50_F0XYP3 9.59058469323e-05 6.02197890836e-05 -3.56860578487e-05 +UniRef50_N1UE46 0.000396284333773 7.71001954907e-05 -0.000319184138282 +UniRef50_A0A020CJ31 0.00184113194658 0.00081530611061 -0.00102582583597 +UniRef50_S4MU14 0.000696037155729 0.000122870912669 -0.00057316624306 +UniRef50_A5UP58 0.00148823998097 0.00037381861418 -0.00111442136679 +UniRef50_D4X8Q1 RepB plasmid partitioning protein 2.21690314668e-06 1.52736801638e-05 1.30567770171e-05 +UniRef50_U5P983 Macrolide ABC transporter ATP binding protein 0.0170793751473 0.0135919331389 -0.0034874420084 +UniRef50_Q5GTU8 MFS transporter 0.000407451108489 0.000307277022654 -0.000100174085835 +UniRef50_O67528 Nucleoside diphosphate kinase 6.31315290138e-05 2.12191187001e-05 -4.19124103137e-05 +UniRef50_K9PAV6 Lysophospholipase 3.18644691057e-06 5.32239269999e-05 5.00374800893e-05 +UniRef50_Q4L7V6 Holo [acyl carrier protein] synthase 0.000987010760655 0.000989888397308 2.877636653e-06 +UniRef50_F2EXR6 0.000309399622654 0.000179477512951 -0.000129922109703 +UniRef50_UPI000395608F 3 hydroxyacyl CoA dehydrogenase 4.76993298832e-06 1.53966938412e-05 1.06267608529e-05 +UniRef50_B8DYK8 Deoxycytidine triphosphate deaminase 0.003689859716 0.00125972786555 -0.00243013185045 +UniRef50_UPI000349DE0E hypothetical protein 9.99809887487e-05 8.20237210275e-05 -1.79572677212e-05 +UniRef50_P35594 ATP dependent Clp protease ATP binding subunit ClpE 0.00492293723292 0.00772174082563 0.00279880359271 +UniRef50_UPI00037BD53F hypothetical protein 0.000265320614451 0.000233807340986 -3.1513273465e-05 +UniRef50_A1TRG1 Glucose 1 phosphate adenylyltransferase 3.3949996336e-06 6.69859413834e-06 3.30359450474e-06 +UniRef50_UPI00037AD344 hypothetical protein 1.58800428606e-05 6.15847179054e-05 4.57046750448e-05 +UniRef50_UPI0003A602B5 AraC family transcriptional regulator 7.06959859571e-05 2.77248884182e-05 -4.29710975389e-05 +UniRef50_A5WFS0 NADPH dependent FMN reductase 0.000210886027289 0.00693147625564 0.00672059022835 +UniRef50_Q7VGA7 Tryptophan synthase beta chain 8.6585679919e-06 6.08346550665e-06 -2.57510248525e-06 +UniRef50_Q0W484 Homoserine O acetyltransferase 0.00285297943164 0.0004101825575 -0.00244279687414 +UniRef50_U6AE16 Methyl accepting chemotaxis protein 0.00029863052609 0.000126024198511 -0.000172606327579 +UniRef50_UPI0003B4EF9E ATPase, partial 5.98981719684e-06 0.00142709522154 0.00142110540434 +UniRef50_UPI0003B31E86 TDP glucose 4,6 dehydratase 9.70979713799e-06 8.11743906323e-05 7.14645934943e-05 +UniRef50_Q93XI4 N carbamoylputrescine amidase 1.50826140901e-05 4.74045564541e-05 3.2321942364e-05 +UniRef50_R7BPT0 2 nitropropane dioxygenase NPD 0.00794218209023 0.00821712105957 0.00027493896934 +UniRef50_D3JTG7 AqsR 0.000466249049448 0.00810117225065 0.0076349232012 +UniRef50_A5UNG9 4 diphosphocytidyl 2 methyl D erithritol synthase, IspD 0.00244998893946 0.00163873099669 -0.00081125794277 +UniRef50_UPI000360F677 hypothetical protein 1.24175452782e-05 0.000131523179408 0.00011910563413 +UniRef50_Q602K3 Porphobilinogen deaminase 0.00458430222764 0.00816445063979 0.00358014841215 +UniRef50_X2IT45 DNA polymerase III subunit gamma tau 6.53089946062e-05 0.00384528620669 0.00377997721208 +UniRef50_UPI0004720C75 hypothetical protein 7.13781306086e-05 5.80535079812e-05 -1.33246226274e-05 +UniRef50_A0A031H7A6 0.000138295112599 5.29728216803e-05 -8.53222909187e-05 +UniRef50_Q6L178 Probable transaldolase 0.000134972447664 0.000296027925133 0.000161055477469 +UniRef50_A7FBR2 0.000144630647073 0.00565007774088 0.00550544709381 +UniRef50_L8E566 4.88916841405e-05 6.78369154289e-05 1.89452312884e-05 +UniRef50_UPI000382D4E3 hypothetical protein 3.10393995049e-05 4.10198597573e-05 9.9804602524e-06 +UniRef50_A0ALU1 50S ribosomal protein L17 0.00673562969454 0.00048412574623 -0.00625150394831 +UniRef50_P38448 KHG KDPG aldolase 0.0004102076266 0.00186531208394 0.00145510445734 +UniRef50_W0YS94 0.000178813354213 0.000140962379147 -3.7850975066e-05 +UniRef50_A3QDX8 Dihydroorotate dehydrogenase 1.18287687058e-05 1.55927388319e-05 3.7639701261e-06 +UniRef50_B4RKY8 Succinyl diaminopimelate desuccinylase 2.398422422e-06 0.00385531378795 0.00385291536553 +UniRef50_UPI0003F8D5B0 hypothetical protein 6.85723904955e-06 0.000945415471652 0.000938558232602 +UniRef50_B8ERB2 Ppx GppA phosphatase 6.87839942301e-06 2.91728963083e-05 2.22944968853e-05 +UniRef50_R6FSB9 Peptidase M24 0.000761020158855 0.000810877416917 4.9857258062e-05 +UniRef50_F0MEQ3 Ferripyoverdine receptor 0.000177354267045 0.0025266318187 0.00234927755165 +UniRef50_F6IIV1 Flagellum specific ATP synthase 0.00133422502872 0.000360016503715 -0.000974208525005 +UniRef50_W4TT30 0.000751234492661 0.00539494557245 0.00464371107979 +UniRef50_Q8CQA8 Surfactin synthetase 0.00962540073976 0.00397915581325 -0.00564624492651 +UniRef50_P0A5I3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 2 4.64482292556e-05 3.85192943849e-05 -7.9289348707e-06 +UniRef50_W7NBP5 2.11383489586e-05 0.000318114942752 0.000296976593793 +UniRef50_Q3KF35 Glutamate tRNA ligase 0.00105423141434 0.00656662282771 0.00551239141337 +UniRef50_P56926 Glutamine tRNA ligase 1.93909041555e-06 0.0126773244597 0.0126753853693 +UniRef50_V4R1X6 2.82098885216e-05 4.43318414138e-05 1.61219528922e-05 +UniRef50_Q9JU31 DNA translocase FtsK 1 4.70289853191e-05 0.00203440217694 0.00198737319162 +UniRef50_H6PB78 DNA polymerase III, gamma and tau subunits 0.00592492324569 0.00817703044934 0.00225210720365 +UniRef50_O04974 2 isopropylmalate synthase B 4.70187523157e-06 4.70913104871e-06 7.25581714e-09 +UniRef50_Q5HNB7 Phosphoenolpyruvate carboxykinase [ATP] 0.0118403635591 0.00299584449305 -0.00884451906605 +UniRef50_F8GU00 Oxygenase subunit protein 0.000142090083634 0.00543835290458 0.00529626282095 +UniRef50_H8GWF1 5` nucleotidase family protein 0.000138740161886 0.0273677064928 0.0272289663309 +UniRef50_H2GZD2 Ascorbate specific PTS system enzyme IIC 7.61572270731e-05 0.0066490887205 0.00657293149343 +UniRef50_UPI00028A25D3 peptide ABC transporter 5.92132773013e-05 3.83700498509e-05 -2.08432274504e-05 +UniRef50_UPI0003EE1B84 PREDICTED 1.12147007457e-05 9.57835282258e-06 -1.63634792312e-06 +UniRef50_J7QTA8 Putative DNA transposase 2.51936735985e-05 4.3751403736e-05 1.85577301375e-05 +UniRef50_W0YJI7 PAAR motif containing protein 8.83352547962e-05 0.000820648616609 0.000732313361813 +UniRef50_Q8CUS7 Adenine deaminase 8.63744683545e-06 4.78729018806e-06 -3.85015664739e-06 +UniRef50_Q73E41 Calcium transporting ATPase 1 0.000107207093479 0.00229921075542 0.00219200366194 +UniRef50_UPI0002558955 Recombinase A 0.000132800858871 3.42008510535e-05 -9.86000078175e-05 +UniRef50_F0Y1K3 Expressed protein 9.52885099739e-05 6.66095799403e-05 -2.86789300336e-05 +UniRef50_UPI00035D9122 hypothetical protein 3.05103912668e-06 5.29293150975e-06 2.24189238307e-06 +UniRef50_G0BED7 Transcriptional regulator, LysR family 0.000129423767612 0.00436082382471 0.0042314000571 +UniRef50_A8Q1C8 9.01251171146e-05 2.74154003149e-05 -6.27097167997e-05 +UniRef50_K8WCA6 Heme lyase subunit CcmF 0.00220513850352 0.000371523020117 -0.0018336154834 +UniRef50_Q88GW8 5 dehydro 4 deoxyglucarate dehydratase 0.00770050255588 0.00231704651166 -0.00538345604422 +UniRef50_B4SMK1 L lactate dehydrogenase [cytochrome] 0.00277210987986 0.00262865136642 -0.00014345851344 +UniRef50_UPI00041BD20B hypothetical protein 1.32891695578e-06 4.5827002794e-05 4.44980858382e-05 +UniRef50_W5WU40 Anion transporter 0.0210276947909 0.00373099895869 -0.0172966958322 +UniRef50_A7HYE5 Ribonuclease D 0.00924728637223 0.00125879626387 -0.00798849010836 +UniRef50_UPI0003C1900C PREDICTED 3.13755984393e-06 3.39190520098e-06 2.5434535705e-07 +UniRef50_Q99W51 tRNA specific adenosine deaminase 0.0202522098981 3.95425598226e-05 -0.0202126673383 +UniRef50_UPI00029AF092 multidrug transport protein, mfs family 3.88513290337e-05 0.000633024066718 0.000594172737684 +UniRef50_Q9RST5 0.000296454965064 0.0417999624277 0.0415035074626 +UniRef50_A7MS74 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1 4.31431904861e-05 1.83229040418e-05 -2.48202864443e-05 +UniRef50_I7DGD4 Signal transduction histidine kinase 0.00347921956898 0.00165245819299 -0.00182676137599 +UniRef50_Q5HKI9 Amino acid ABC transporter, amino acid binding protein 0.0230334074624 0.00685984263755 -0.0161735648248 +UniRef50_UPI00036BE230 macrolide ABC transporter ATP binding protein 6.69141287844e-06 0.000286127260701 0.000279435847823 +UniRef50_A0A010IHG0 Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein 0.000133891072498 0.00906966592504 0.00893577485254 +UniRef50_A4IMP7 Large conductance mechanosensitive channel 0.00367620778118 0.00414035375839 0.00046414597721 +UniRef50_UPI00046537F1 transcriptional repressor NemR 9.39571494456e-05 1.25056543719e-05 -8.14514950737e-05 +UniRef50_V5VGM0 Flavoprotein 0.000183607815991 0.0150071067903 0.0148234989743 +UniRef50_A5UKL2 0.00290499744237 0.0022961427241 -0.00060885471827 +UniRef50_G8RFW9 0.00688792732076 0.00596578305292 -0.00092214426784 +UniRef50_Q5HNR9 D tyrosyl tRNA deacylase 0.0139391373688 0.00252205486821 -0.0114170825006 +UniRef50_M1MJA7 rRNA ) methyltransferase 0.000101383882411 0.00152348984033 0.00142210595792 +UniRef50_UPI0003DF781B PREDICTED 1.11775366575e-05 1.67425559888e-05 5.5650193313e-06 +UniRef50_F9Z1V2 RlpA like protein 0.000111682245224 0.00578194086106 0.00567025861584 +UniRef50_A4WWS4 RecB family exonuclease like protein 0.00016707953513 6.76297798135e-05 -9.94497553165e-05 +UniRef50_Q98DE8 Glutathione synthetase 4.31723771781e-06 0.000133553936137 0.000129236698419 +UniRef50_A5ISW4 0.00215950377238 9.00158792352e-05 -0.00206948789314 +UniRef50_O68575 Pyruvate formate lyase activating enzyme 0.00704961433762 0.00272038973301 -0.00432922460461 +UniRef50_Q31RQ5 3 phosphoshikimate 1 carboxyvinyltransferase 4.52737935863e-06 6.45684138652e-06 1.92946202789e-06 +UniRef50_UPI00040D856B hypothetical protein 1.21493199249e-05 5.18917884856e-06 -6.96014107634e-06 +UniRef50_UPI000372D278 hypothetical protein 2.50165427223e-05 5.26118362912e-06 -1.97553590932e-05 +UniRef50_UPI0004771B3E hypothetical protein 0.000184640417686 6.73823514703e-05 -0.000117258066216 +UniRef50_F0KEU3 0.000288289456304 0.00517607074455 0.00488778128825 +UniRef50_X0VX75 Marine sediment metagenome DNA, contig 2.16090317724e-05 1.95148313822e-05 -2.0942003902e-06 +UniRef50_B5H827 Cobalamin synthesis protein 5.05351778975e-06 5.60114698122e-06 5.4762919147e-07 +UniRef50_P76176 0.00525499730588 0.00155430262312 -0.00370069468276 +UniRef50_Q5HLI8 Glutaredoxin, putative 0.0087297678033 0.00182389667053 -0.00690587113277 +UniRef50_B9JSI7 Cation efflux system protein 0.00388056037886 0.00131421248571 -0.00256634789315 +UniRef50_Q5NPR4 UvrABC system protein C 0.00669941446558 0.00120527037857 -0.00549414408701 +UniRef50_UPI00035DA52C hypothetical protein 6.45038736489e-06 3.13980733543e-05 2.49476859894e-05 +UniRef50_A5UP28 0.00303238272507 0.000100405171648 -0.00293197755342 +UniRef50_V0RK41 0.000595032319047 9.14854355937e-05 -0.000503546883453 +UniRef50_R5A601 Recombination inhibitory protein MutS2 0.000386331609746 7.65069184465e-05 -0.0003098246913 +UniRef50_S5EBY8 0.000176120990128 0.000365008306628 0.0001888873165 +UniRef50_UPI0003C16983 1.19964392659e-05 3.94468704414e-05 2.74504311755e-05 +UniRef50_Q71ZJ9 Ribosomal protein L11 methyltransferase 6.66235456645e-05 0.00120069374481 0.00113407019915 +UniRef50_UPI000378771A hypothetical protein 1.7979876806e-05 1.67992073956e-05 -1.1806694104e-06 +UniRef50_UPI00037134C7 hypothetical protein 3.06261081886e-05 1.11955556385e-05 -1.94305525501e-05 +UniRef50_UPI000359481D 8.27968252772e-05 8.0650685532e-05 -2.1461397452e-06 +UniRef50_UPI0002F538D8 hypothetical protein 1.71774714716e-05 2.33352722666e-05 6.157800795e-06 +UniRef50_U6JB04 Nucleoside diphosphate kinase 1.17967957142e-05 2.00469007731e-05 8.2501050589e-06 +UniRef50_A4WQY8 Cytochrome c type biogenesis protein CcmE 0.0149494223252 0.000391147953907 -0.0145582743713 +UniRef50_A0A037VGU7 3.37989937905e-05 3.95544668504e-05 5.7554730599e-06 +UniRef50_I2DHK5 0.000287337202072 0.00152710815726 0.00123977095519 +UniRef50_Q6A7A2 DNA ligase 0.000175600789695 0.00709209616305 0.00691649537335 +UniRef50_Q9RX88 50S ribosomal protein L25 0.000616239474805 0.0429377561976 0.0423215167228 +UniRef50_O26759 Putative ammonium transporter MTH_663 0.00480368899843 0.00123159635083 -0.0035720926476 +UniRef50_H5UZW1 Glutathione regulated potassium efflux system protein KefC 4.04339727665e-05 0.000147829676633 0.000107395703866 +UniRef50_UPI0001DD0CDF flagellar hook capping protein 1.51730140987e-05 2.06417453818e-05 5.4687312831e-06 +UniRef50_A5UMU8 Predicted glycosyltransferase, GT2 family 0.00296254886061 0.000688358025688 -0.00227419083492 +UniRef50_UPI00047A6BB5 hypothetical protein 1.23789306359e-05 7.21040565962e-06 -5.16852497628e-06 +UniRef50_Q2G1X0 Alpha hemolysin 0.00648580380612 0.00114264692675 -0.00534315687937 +UniRef50_N0DZB3 Secreted protein 1.19498070023e-05 1.50350936205e-05 3.0852866182e-06 +UniRef50_P78029 Thymidylate synthase 3.8548459764e-05 0.00852720452937 0.00848865606961 +UniRef50_Q5HGH0 Phosphatidate cytidylyltransferase 0.0184719120561 0.00504977001717 -0.0134221420389 +UniRef50_P76177 Protein YdgH 0.00235769784607 0.0013608850701 -0.00099681277597 +UniRef50_UPI0003298C8F PREDICTED 1.96475787207e-05 2.78264532256e-05 8.1788745049e-06 +UniRef50_G2LAK2 Adhesive protein CupB5 0.000482258208054 0.000256391175579 -0.000225867032475 +UniRef50_V5VBD8 3 beta hydroxysteroid dehydrogenase isomerase 0.000111462398283 0.00764059230108 0.0075291299028 +UniRef50_P54453 0.00686910554002 0.00574858231545 -0.00112052322457 +UniRef50_F8A5M8 Alpha amylase catalytic region 0.00028025620662 0.00471421802667 0.00443396182005 +UniRef50_X7E7E5 5.26488520307e-06 0.000134729805773 0.00012946492057 +UniRef50_R7PTU8 ATP grasp domain protein 0.000976597802733 0.00233664674245 0.00136004893972 +UniRef50_R9SNU8 Radical SAM domain containing protein 0.00201507769668 0.000499830812745 -0.00151524688393 +UniRef50_J7QY26 Escherichia coli IMT2125 genomic chromosome, IMT2125 8.19714139912e-05 0.000176699944005 9.47285300138e-05 +UniRef50_A5UKF9 ATP utilizing enzyme, PP loop superfamily 0.00221254987031 0.000964668235747 -0.00124788163456 +UniRef50_D4Z726 3 oxoadipate CoA transferase alpha subunit LinG 0.000346131478079 0.0069862639622 0.00664013248412 +UniRef50_R7PXC4 Probable ribosomal RNA small subunit methyltransferase A 0.0022628322228 0.00086853452686 -0.00139429769594 +UniRef50_A1WY69 DNA polymerase IV 3.71722698113e-06 9.40816423289e-06 5.69093725176e-06 +UniRef50_L7UII0 1.09586682955e-05 3.94038589455e-05 2.844519065e-05 +UniRef50_F6CGX7 Quaternary amine transporting ATPase 0.00167128534877 0.000842962997786 -0.000828322350984 +UniRef50_UPI00037ED53F hypothetical protein 7.07624706278e-05 5.96541915487e-05 -1.11082790791e-05 +UniRef50_Q9ZJN2 Probable nicotinate nucleotide pyrophosphorylase [carboxylating] 0.00013827325599 0.00193479666262 0.00179652340663 +UniRef50_D9SQ35 Integrase family protein 0.000668939685117 0.000317853276605 -0.000351086408512 +UniRef50_UPI0003C17A16 PREDICTED 6.41208210667e-05 3.29794479577e-05 -3.1141373109e-05 +UniRef50_UPI000476CF1F pyridine nucleotide disulfide oxidoreductase 0.000154577500539 1.23689917825e-05 -0.000142208508757 +UniRef50_V8HJS7 tRNA ) methyltransferase 0.00196011383086 0.000241074861385 -0.00171903896948 +UniRef50_S2KIU7 Membrane protein 0.00013207073705 1.32938103015e-05 -0.000118776926749 +UniRef50_J1SZC4 0.000145270202608 6.22955009409e-05 -8.29747016671e-05 +UniRef50_C1DKJ3 Phospholipid glycerol acyltransferase 0.00133185126148 0.000717368514652 -0.000614482746828 +UniRef50_S5QXV6 Maltose maltodextrin binding protein 0.00455381029461 0.00149662323974 -0.00305718705487 +UniRef50_F0Y553 Expressed protein 0.000180238616139 0.000195964807575 1.5726191436e-05 +UniRef50_B9KWV4 TRAP T family transporter, large inner membrane subunit DctM 0.0063494666167 0.00121023550967 -0.00513923110703 +UniRef50_B0U620 Uracil DNA glycosylase 0.00422517521247 0.0070304080696 0.00280523285713 +UniRef50_P26170 Bacteriochlorophyll synthase 33 kDa chain 0.00204032909728 0.000303927998483 -0.0017364010988 +UniRef50_D3QCC1 Preprotein translocase subunit YajC 0.00569370490703 0.00518537313347 -0.00050833177356 +UniRef50_Q6FFG0 0.000285604591901 0.00521362805372 0.00492802346182 +UniRef50_UPI00034A058C hypothetical protein 9.53117149662e-06 1.4765715686e-05 5.23454418938e-06 +UniRef50_T0T503 Purine nucleoside phosphorylase 0.00411549997476 0.00173154365099 -0.00238395632377 +UniRef50_B1JPZ9 4 alpha L fucosyltransferase 0.00371269019079 0.000887072848379 -0.00282561734241 +UniRef50_Q3B1T5 0.000230385735401 0.000129744782966 -0.000100640952435 +UniRef50_M9VFM2 0.000215524649217 0.00531896826566 0.00510344361644 +UniRef50_Q82TC0 Shikimate kinase 1.09338540238e-05 2.53385884619e-05 1.44047344381e-05 +UniRef50_A0A037ZNE7 3.70585659355e-06 2.04860647923e-06 -1.65725011432e-06 +UniRef50_W0Z1T3 3.52420304268e-05 0.000324823701201 0.000289581670774 +UniRef50_B9L1J9 Glucose 1 phosphate adenylyltransferase 7.55557345605e-06 1.89216434114e-05 1.13660699553e-05 +UniRef50_A6UGW8 Replication protein C 6.71343246363e-05 2.68288280527e-05 -4.03054965836e-05 +UniRef50_X0VZY3 Marine sediment metagenome DNA, contig 3.34146686086e-05 4.45341773945e-05 1.11195087859e-05 +UniRef50_Q9LM59 Serine hydroxymethyltransferase 6 3.44136896306e-06 3.23871969501e-06 -2.0264926805e-07 +UniRef50_S4VW07 9.36517494721e-06 2.90803191283e-05 1.97151441811e-05 +UniRef50_Z0L1U0 0.000117466241311 6.5680157546e-05 -5.1786083765e-05 +UniRef50_F9EXE3 ABC superfamily ATP binding cassette transporter, ABC protein 7.65691660987e-05 0.00335121404494 0.00327464487884 +UniRef50_V5CIF7 0.000163649995166 0.00601329423573 0.00584964424056 +UniRef50_UPI0004721200 hypothetical protein, partial 0.00285905847589 0.0015243830532 -0.00133467542269 +UniRef50_C0Y0T7 Outer membrane efflux protein OprC 0.000185333083145 0.00710912580023 0.00692379271709 +UniRef50_R5IJ86 7.86499230762e-06 7.00435779071e-05 6.21785855995e-05 +UniRef50_UPI0003777D9D hypothetical protein 8.63280112709e-05 4.39392337897e-05 -4.23887774812e-05 +UniRef50_B5Z6I2 Dihydroorotate dehydrogenase 0.000124001033475 0.00238168731617 0.00225768628269 +UniRef50_UPI00038229EA hypothetical protein 3.20161328594e-06 5.51067962041e-06 2.30906633447e-06 +UniRef50_A3NUG3 Chorismate synthase 7.72970542494e-06 1.69391159645e-05 9.20941053956e-06 +UniRef50_A7X623 Oxygen regulatory protein NreC 0.0191920643873 0.00745583850442 -0.0117362258829 +UniRef50_F0K7S4 RNA polymerase factor sigma 54 0.000175244481727 0.00111433118879 0.000939086707063 +UniRef50_UPI000360F77D MULTISPECIES 5.047558275e-06 9.4472002404e-06 4.3996419654e-06 +UniRef50_UPI0003710793 hypothetical protein 8.16869670835e-06 2.98703780256e-05 2.17016813173e-05 +UniRef50_M4UM17 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic component 1.1490588321e-05 3.47515069336e-05 2.32609186126e-05 +UniRef50_J7LCE3 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 4.91334432829e-06 2.38654599701e-05 1.89521156418e-05 +UniRef50_I6U2S8 Bacitracin synthetase 0.00472041947654 0.00235910958567 -0.00236130989087 +UniRef50_Q5HRM1 Putative TrmH family tRNA rRNA methyltransferase 0.00721007724781 0.00264665943441 -0.0045634178134 +UniRef50_B9E7Z8 6.95629033494e-06 0.000287531179674 0.000280574889339 +UniRef50_P57000 Glutamine tRNA ligase 0.000248509410305 0.0012208501096 0.000972340699295 +UniRef50_I9WK52 Putative transcriptional regulator 8.51456544092e-06 1.27067839189e-05 4.19221847798e-06 +UniRef50_UPI00029AF772 multidrug ABC transporter ATPase 4.86783439853e-06 9.5230203864e-05 9.03623694655e-05 +UniRef50_UPI00037E28CC hypothetical protein 3.89083575445e-06 1.95965088421e-05 1.57056730877e-05 +UniRef50_A4WNG7 0.00139834225467 0.000336863161818 -0.00106147909285 +UniRef50_D4LM41 Nicotinate phosphoribosyltransferase 0.000791401467116 0.00180016746281 0.00100876599569 +UniRef50_UPI00036CD6B7 hypothetical protein 9.0346964645e-05 0.000226747481763 0.000136400517118 +UniRef50_V9VSG3 Membrane protein 3.6845904938e-06 4.30672761399e-05 3.93826856461e-05 +UniRef50_UPI0003C84C0F PREDICTED 2.52184894783e-06 7.09465849191e-06 4.57280954408e-06 +UniRef50_U4V017 Putative ATPase 3.86884472306e-06 6.64978452407e-06 2.78093980101e-06 +UniRef50_P29848 Cysteine synthase B 0.00351775511621 0.00408884432719 0.00057108921098 +UniRef50_W1JGD7 Putative virulence factor 0.000106762749124 0.000137088518217 3.0325769093e-05 +UniRef50_A0A010CAY1 Transposase DDE domain protein 5.80194012131e-06 4.01875688407e-05 3.43856287194e-05 +UniRef50_M4XIX4 Segregation and condensation protein B 0.000115793248112 0.000177901629643 6.2108381531e-05 +UniRef50_Q46899 CRISPR system Cascade subunit CasC 0.00255589136 0.000164827928474 -0.00239106343153 +UniRef50_D8JDE7 Patatin like phospholipase family protein 0.0001909709893 0.00653380607089 0.00634283508159 +UniRef50_UPI0002F963E4 hypothetical protein 3.87494576108e-06 0.000227321488507 0.000223446542746 +UniRef50_Q8ECQ4 50S ribosomal protein L3 glutamine methyltransferase 0.00341275751966 0.000927533107508 -0.00248522441215 +UniRef50_O30992 Cell division protein FtsZ 0.00143288102719 0.000600376854765 -0.000832504172425 +UniRef50_Q8CSE1 ABC transporter ATP binding protein 0.0199279445589 0.00439782279374 -0.0155301217652 +UniRef50_UPI000375F7D3 hypothetical protein 9.33658091582e-06 3.03375255766e-05 2.10009446608e-05 +UniRef50_A3V315 3.385428348e-06 1.48212097408e-06 -1.90330737392e-06 +UniRef50_UPI0002F27B8E hypothetical protein 0.000379342389799 7.87116615847e-05 -0.000300630728214 +UniRef50_A4WQP1 Transposase, IS4 family 0.00258542675962 0.000287883786207 -0.00229754297341 +UniRef50_S4YCA7 3.98388373067e-05 5.84933959813e-06 -3.39894977086e-05 +UniRef50_I0JRX2 Oxidoreductase domain protein 0.0148029266812 0.00220034071325 -0.012602585968 +UniRef50_A0A023RY49 Amino acid transporter 0.000568639067231 0.0136865253765 0.0131178863093 +UniRef50_UPI000375F92B hypothetical protein 3.1333447312e-05 0.000145241268137 0.000113907820825 +UniRef50_K9NRT8 GntR family transcriptional regulator 0.00104598797416 0.000839023511855 -0.000206964462305 +UniRef50_U5L6I9 Peptide ABC transporter permease 0.00629083227261 0.000273441393692 -0.00601739087892 +UniRef50_K1CTK9 Exoribonuclease RNase R 0.000522684215462 0.000211953477904 -0.000310730737558 +UniRef50_P0A1U3 0.0022620912671 0.000679857449786 -0.00158223381731 +UniRef50_P0A1U5 0.00488689229256 0.00121363029532 -0.00367326199724 +UniRef50_F4D676 P type DNA transfer ATPase VirB11 0.000134336650837 0.00169894981947 0.00156461316863 +UniRef50_G6KV35 Leucyl tRNA synthetase 0.00709242505753 0.00180765180825 -0.00528477324928 +UniRef50_UPI00036AAC2D hypothetical protein 0.000725934593951 0.0016196406101 0.000893706016149 +UniRef50_UPI000363377B preprotein translocase subunit TatA 0.000167500209846 9.72262109357e-05 -7.02739989103e-05 +UniRef50_B4U203 DNA polymerase III subunit delta 0.00616056940915 0.00569712387738 -0.00046344553177 +UniRef50_U6LS15 2.09773158479e-05 2.58965322209e-05 4.919216373e-06 +UniRef50_P26281 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000710753886239 0.00582121212928 0.00511045824304 +UniRef50_G2JD06 Nitrate nitrite transporter 0.000391686871608 0.00496913304419 0.00457744617258 +UniRef50_W5XIV0 GTPase Obg 6.00124661948e-06 0.000180507408786 0.000174506162167 +UniRef50_D9SXB9 RNA methyltransferase, TrmH family, group 3 0.000813453900834 0.000562217853028 -0.000251236047806 +UniRef50_UPI00036CFE43 30S ribosomal protein S4 1.15099667491e-05 3.60512278245e-05 2.45412610754e-05 +UniRef50_UPI0003B544A3 sugar ABC transporter permease, partial 0.000116524994308 7.76142098383e-05 -3.89107844697e-05 +UniRef50_UPI0003820942 hypothetical protein 9.33889904595e-06 4.24841504538e-05 3.31452514079e-05 +UniRef50_A4X3E5 Peptide methionine sulfoxide reductase MsrA 8.95770439919e-05 7.41605483327e-05 -1.54164956592e-05 +UniRef50_P0CD78 Phosphoglycerate kinase 1.80786667541e-05 1.75598438896e-05 -5.188228645e-07 +UniRef50_A2SKF9 Transaldolase 0.000398596981438 0.000426021204917 2.7424223479e-05 +UniRef50_P28822 Dihydropteroate synthase 0.000162486569322 0.00690670643479 0.00674421986547 +UniRef50_A3M7P6 Ribosomal protein alanine acetyltransferase 0.00115556935363 0.00409314126729 0.00293757191366 +UniRef50_P75793 Putative formate acetyltransferase 3 0.00115775014527 8.78918765406e-05 -0.00106985826873 +UniRef50_B3ENQ2 Nucleoside diphosphate kinase 5.80555086048e-05 1.8373728785e-05 -3.96817798198e-05 +UniRef50_E6MZF0 Type III restriction enzyme, res subunit 4.89817459631e-05 0.00317073546965 0.00312175372369 +UniRef50_F0Y8H7 7.63187752143e-05 5.73782623539e-05 -1.89405128604e-05 +UniRef50_Q4KCW6 Putrescine binding periplasmic protein 0.00044131905324 0.000333087785229 -0.000108231268011 +UniRef50_UPI000311B789 hypothetical protein 0.000125671681966 9.28300095699e-06 -0.000116388681009 +UniRef50_B9KTG2 MCPG protein 0.00200485808078 0.00104179859644 -0.00096305948434 +UniRef50_A6V3S1 Aminoglycoside response regulator 0.00113790648718 0.000840350550291 -0.000297555936889 +UniRef50_S4ZTI3 Transcriptional regulator, ArsR family 0.00991548164412 0.00100232567726 -0.00891315596686 +UniRef50_U3T6X9 0.000313123746508 0.0065888410654 0.00627571731889 +UniRef50_Q2FIS2 Lipoteichoic acid synthase 0.0180724999167 0.00516016299855 -0.0129123369182 +UniRef50_UPI000429916D auxin binding protein 0.000156945894524 5.92073176546e-05 -9.77385768694e-05 +UniRef50_I7E3Y1 Dimethylglycine dehydrogenase DmgdH 0.00841124977796 0.00176503145128 -0.00664621832668 +UniRef50_Q5HG72 Nuclease SbcCD subunit C 0.0086932971381 0.00180414432606 -0.00688915281204 +UniRef50_D3QDA5 Transcriptional regulator in cluster with Zn dependent hydrolase 0.025965632517 0.00306885720355 -0.0228967753134 +UniRef50_J3C3Q8 ABC type transport system, involved in lipoprotein release, permease component 1.24131949863e-05 4.17031886517e-05 2.92899936654e-05 +UniRef50_Q2SFK9 Fatty acid desaturase 0.0003130537226 0.00475427407142 0.00444122034882 +UniRef50_T1XM99 IS1272 transposase, putative 0.0228006144587 0.00168799914101 -0.0211126153177 +UniRef50_Q8DWA7 0.00536707854546 0.00125727906036 -0.0041097994851 +UniRef50_O86428 Branched chain amino acid aminotransferase 0.00150456749969 0.0119892711355 0.0104847036358 +UniRef50_T0JJ14 4.95164365017e-05 0.000109893909305 6.03774728033e-05 +UniRef50_UPI0003C7D7D4 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase, partial 0.00332468007405 0.000248367509973 -0.00307631256408 +UniRef50_J9NXA3 3.23522183442e-05 1.5131295134e-05 -1.72209232102e-05 +UniRef50_Q28KF2 Beta lactamase like protein 0.000827968992086 0.000710101187567 -0.000117867804519 +UniRef50_U3TA62 Protein MurJ homolog 7.67768112925e-05 0.0090091469018 0.00893237009051 +UniRef50_UPI0003B2ED70 hypothetical protein 0.000302872276979 0.0001055617237 -0.000197310553279 +UniRef50_UPI00037CE74D hypothetical protein 0.000167380120109 0.000495960199955 0.000328580079846 +UniRef50_A1VKF6 Non canonical purine NTP pyrophosphatase 0.000100766131415 1.84583176897e-05 -8.23078137253e-05 +UniRef50_M9S4Z2 Two component response regulator 0.00350680113038 0.000854724191782 -0.0026520769386 +UniRef50_X0TYQ9 Marine sediment metagenome DNA, contig 6.20870052873e-05 0.000464887789744 0.000402800784457 +UniRef50_Q1D759 50S ribosomal protein L18 0.00209067900516 0.00209383972068 3.16071552e-06 +UniRef50_Q8NW76 0.0163248401662 0.0043390240362 -0.01198581613 +UniRef50_Q2YKR5 sn glycerol 3 phosphate binding periplasmic protein UgpB 0.0113020420264 0.00512885430337 -0.00617318772303 +UniRef50_I9IAK6 3.03430917226e-05 9.66231899287e-05 6.62800982061e-05 +UniRef50_D7GF04 Methyltransferase 0.000173689872173 0.00852799974273 0.00835430987056 +UniRef50_E2BF63 6.72498732409e-06 4.43825240331e-05 3.7657536709e-05 +UniRef50_UPI000288A745 acetyltransferase, putative 0.000139910219213 6.70255690994e-05 -7.28846501136e-05 +UniRef50_G4BY47 6.47740175785e-05 0.000138814252332 7.40402347535e-05 +UniRef50_Q2FVV8 Transcriptional regulator, putative 0.026366630511 0.00277394652152 -0.0235926839895 +UniRef50_A6LU14 0.000130768818311 0.00266526098055 0.00253449216224 +UniRef50_UPI00034519AC hypothetical protein 4.36631388227e-06 8.24783063907e-05 7.81119925084e-05 +UniRef50_Q0BYA7 DNA directed RNA polymerase subunit beta 1.15219613476e-05 4.63090441765e-06 -6.89105692995e-06 +UniRef50_A4WZ35 0.00277714744825 0.0126064353227 0.00982928787445 +UniRef50_L7WUA4 0.0184286427331 0.0014207531913 -0.0170078895418 +UniRef50_A3ZLI5 ISxac3 transposase 0.000124124491925 0.000203265995497 7.9141503572e-05 +UniRef50_A5EBB8 0.000360331763738 8.08771114885e-05 -0.00027945465225 +UniRef50_UPI0003B3E24D malto oligosyltrehalose synthase 5.0609168511e-06 3.16133170435e-06 -1.89958514675e-06 +UniRef50_X5WY92 0.00012126006511 5.57941274668e-05 -6.54659376432e-05 +UniRef50_Q6GH07 Protein msa 0.00157833778173 0.000456675317307 -0.00112166246442 +UniRef50_B9JUA7 0.000126336048397 2.67411298706e-05 -9.95949185264e-05 +UniRef50_Q09DS6 2.12191796861e-05 2.18025664112e-05 5.833867251e-07 +UniRef50_A6TFR2 Glycerol kinase 2.14436358673e-05 0.00012704193748 0.000105598301613 +UniRef50_I0EP78 Flagellar hook protein FlgE 6.31599535162e-05 0.00536453959754 0.00530137964402 +UniRef50_UPI000477B830 hypothetical protein 5.75087152162e-06 0.000103431977904 9.76811063824e-05 +UniRef50_B7V0M2 Carbonic anhydrase 0.00209662629996 0.00114413722499 -0.00095248907497 +UniRef50_M4WR94 0.00371033858129 0.000449720870858 -0.00326061771043 +UniRef50_P0CL53 S glutathione dehydrogenase 0.0130080083911 0.00351594955543 -0.00949205883567 +UniRef50_M4Z4L3 0.000417673142503 7.79680827666e-05 -0.000339705059736 +UniRef50_Q87TS4 Ribosomal RNA small subunit methyltransferase G 7.79932963265e-05 5.37886474976e-05 -2.42046488289e-05 +UniRef50_A6QFI0 UPF0344 protein NWMN_0840 0.0289202551681 0.000937519911225 -0.0279827352569 +UniRef50_A8ZR93 Lytic transglycosylase catalytic 2.97601723133e-05 8.84723989154e-05 5.87122266021e-05 +UniRef50_A3PHM8 DHC, diheme cytochrome c 0.00913202011268 0.00047889195437 -0.00865312815831 +UniRef50_UPI0003B2EC71 phosphoadenosine phosphosulfate reductase 6.73205937687e-06 1.25100918125e-05 5.77803243563e-06 +UniRef50_P13669 Mannosyl D glycerate transport metabolism system repressor MngR 0.0054728774589 0.00114997848139 -0.00432289897751 +UniRef50_UPI00030F326B sulfate transporter 0.000180490136582 6.12976705108e-05 -0.000119192466071 +UniRef50_N2UC59 Sodium symporter family protein 0.000692441652498 0.000294825329643 -0.000397616322855 +UniRef50_P77704 0.00344755244063 0.0014625824099 -0.00198497003073 +UniRef50_UPI0003C17542 PREDICTED 1.81867901376e-06 3.1535644911e-06 1.33488547734e-06 +UniRef50_Q9CGB9 0.00516425235081 0.00132289030539 -0.00384136204542 +UniRef50_Q4JXF0 Phosphoribosylformylglycinamidine synthase 2 1.73257023036e-05 6.01630676691e-06 -1.13093955367e-05 +UniRef50_S5CWK9 AraC type DNA binding domain containing protein 0.00148293832789 0.00824484400211 0.00676190567422 +UniRef50_D3QCA4 Dihydrofolate synthase Folylpolyglutamate synthase 0.0201196334422 0.00412168169721 -0.015997951745 +UniRef50_T2DYR1 Tryptophan tyrosine permease family protein 0.0014251671524 0.000706107667681 -0.000719059484719 +UniRef50_UPI00039563BC PREDICTED 5.85183578897e-06 3.66242968249e-05 3.07724610359e-05 +UniRef50_Q4FVL5 Translation initiation factor IF 2 4.34058247019e-05 0.00902234339293 0.00897893756823 +UniRef50_UPI0003C10D8C 6.76318873025e-05 0.000163179302655 9.55474153525e-05 +UniRef50_UPI00016A626E Rh like protein ammonium transporter, partial 0.000275204463811 0.000313272223095 3.8067759284e-05 +UniRef50_A6LYM0 Antibiotic transport associated permease SpaG MutG 0.000531745078117 0.00257384886395 0.00204210378583 +UniRef50_A3DGF9 Urease subunit beta 1.80321748928e-05 3.1768406545e-05 1.37362316522e-05 +UniRef50_UPI0003B4EA64 isoleucyl tRNA synthase 2.00830835284e-06 3.04566037397e-06 1.03735202113e-06 +UniRef50_F8J5A0 0.00293149173819 0.000446333078449 -0.00248515865974 +UniRef50_T1CKH0 Coproporphyrinogen dehydrogenase 4.47468511666e-05 5.6907307202e-05 1.21604560354e-05 +UniRef50_UPI0003B37585 ABC transporter 7.69810493281e-06 1.32400392425e-05 5.54193430969e-06 +UniRef50_UPI000478F27B ATP dependent DNA helicase Rep 6.29530469794e-06 8.40662190226e-06 2.11131720432e-06 +UniRef50_UPI00047A6B84 PadR family transcriptional regulator 2.25093244406e-05 2.39900369951e-05 1.4807125545e-06 +UniRef50_Q5N127 Transaldolase 0.000121508365511 0.0055793832765 0.00545787491099 +UniRef50_G8PPN5 UbiD family decarboxylase 0.00146189227519 0.000119884995349 -0.00134200727984 +UniRef50_L9MQV1 FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate pyruvate transaminase multi domain protein 0.000294357056807 0.00528564095441 0.0049912838976 +UniRef50_P0A0A1 Pyruvate dehydrogenase E1 component subunit beta 0.027235855687 0.0083852322454 -0.0188506234416 +UniRef50_M7E6J0 Endonuclease 0.00333752629278 0.00293235882669 -0.00040516746609 +UniRef50_UPI00046FABF2 chromosome partitioning protein ParB 2.83665935138e-05 0.000649798958965 0.000621432365451 +UniRef50_UPI000265461A PREDICTED 5.87021771306e-05 6.7981617608e-05 9.2794404774e-06 +UniRef50_UPI00034878D9 hypothetical protein 4.03583456268e-06 9.79875988216e-06 5.76292531948e-06 +UniRef50_D2ZS12 0.00364633829529 0.000609482152274 -0.00303685614302 +UniRef50_I6U1N8 Transaminase 0.00573008636484 0.00212094796351 -0.00360913840133 +UniRef50_UPI000368E802 hypothetical protein 2.51454239698e-05 0.000110367353569 8.52219295992e-05 +UniRef50_O27494 Phosphoribosylamine glycine ligase 0.00498736372117 0.00183601707575 -0.00315134664542 +UniRef50_Q3IV08 0.0153764965306 0.0050293378544 -0.0103471586762 +UniRef50_A3PH60 0.00235191963759 0.000886585562473 -0.00146533407512 +UniRef50_Q3IV03 0.0159279989687 0.00291149116383 -0.0130165078049 +UniRef50_Q3IV02 0.00532889663779 0.0162254832996 0.0108965866618 +UniRef50_A2BMY4 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.25650800834e-05 2.5614875124e-05 -2.69502049594e-05 +UniRef50_F8IMM6 Glycosyl transferase 0.000223678625035 0.000215559638834 -8.118986201e-06 +UniRef50_N1M6P3 0.000104187818542 0.000551472896438 0.000447285077896 +UniRef50_Q46829 6 phospho beta glucosidase BglA 0.0136640566702 0.0120670958378 -0.0015969608324 +UniRef50_UPI0003F4B23B oligo 1,6 glucosidase 1.52507641215e-05 5.32197915619e-06 -9.92878496531e-06 +UniRef50_UPI0004675CB0 hypothetical protein 5.45412939885e-05 0.000450865198773 0.000396323904785 +UniRef50_UPI000375AE50 hypothetical protein 0.000254819395972 3.80319130444e-05 -0.000216787482928 +UniRef50_A6LW27 Integral membrane sensor signal transduction histidine kinase 0.000355358735704 0.000663328099287 0.000307969363583 +UniRef50_P77689 FeS cluster assembly protein SufD 0.00273507311466 0.00020250288357 -0.00253257023109 +UniRef50_A7HC61 LexA repressor 2.02832151921e-05 9.69431146661e-06 -1.05889037255e-05 +UniRef50_UPI0004675E29 transcriptional regulator 9.96341376088e-06 1.65405843639e-05 6.57717060302e-06 +UniRef50_P22045 Prostaglandin F synthase 2.0691278754e-05 0.001564887201 0.00154419592225 +UniRef50_W1N7X0 9.03548969582e-06 7.02850365767e-06 -2.00698603815e-06 +UniRef50_UPI0002631758 branched chain alpha keto acid dehydrogenase subunit E2, partial 1.24809066412e-05 0.000179047083301 0.00016656617666 +UniRef50_UPI0002194DF2 fructose bisphosphate aldolase 6.75158688524e-05 0.000157608002341 9.00921334886e-05 +UniRef50_UPI0003A0B379 MULTISPECIES 1.59667648836e-05 1.76370728167e-05 1.6703079331e-06 +UniRef50_E2XTA7 0.000393295952549 0.00068527932143 0.000291983368881 +UniRef50_UPI0003B324DC flagellar protein FlgJ 3.70782152816e-05 3.52032581246e-05 -1.874957157e-06 +UniRef50_P0AEE1 Protein DcrB 0.00102445001406 0.000344727671428 -0.000679722342632 +UniRef50_U7G0Z6 1.3034313471e-05 1.06968708503e-05 -2.3374426207e-06 +UniRef50_Q6D2R7 NADH quinone oxidoreductase subunit A 0.00789799848317 0.00089377202969 -0.00700422645348 +UniRef50_A6LW63 PAS PAC sensor signal transduction histidine kinase 0.00046856308741 0.000300764331946 -0.000167798755464 +UniRef50_UPI0003B301E5 molybdopterin biosynthesis protein MoeB 1.69975706373e-05 1.31031838172e-05 -3.8943868201e-06 +UniRef50_UPI00034D4353 hypothetical protein 5.78149379656e-06 5.66294015901e-06 -1.1855363755e-07 +UniRef50_A8HYF7 Lon protease 0.0111072949751 0.00241915861826 -0.00868813635684 +UniRef50_W5X361 Dienelactone hydrolase 4.43675117782e-05 3.61936935467e-05 -8.1738182315e-06 +UniRef50_M2PIC6 6.96815720682e-05 0.000411224001447 0.000341542429379 +UniRef50_UPI0003B51C8D 16S rRNA methyltransferase 1.05152665753e-05 1.71144974622e-05 6.5992308869e-06 +UniRef50_A0A031MCT4 4.0036943105e-05 0.000110894076056 7.0857132951e-05 +UniRef50_Q8YUR4 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.42216898055e-05 1.4829435575e-05 6.077457695e-07 +UniRef50_C5AMM3 0.000228628747941 6.5227972966e-05 -0.000163400774975 +UniRef50_UPI0003776EC3 hypothetical protein 0.000177610244321 2.53321278833e-05 -0.000152278116438 +UniRef50_P0AAV5 0.00190242462631 0.00137766548012 -0.00052475914619 +UniRef50_UPI000395E276 LysR family transcriptional regulator 1.46936121625e-05 1.17722083781e-05 -2.9214037844e-06 +UniRef50_F2IZR6 Multiple antibiotic resistance related protein 0.00265442287033 0.000350871332905 -0.00230355153742 +UniRef50_A5UNV0 0.00287233501005 0.00180400463203 -0.00106833037802 +UniRef50_A5UNV7 0.00542790877622 0.00159882599776 -0.00382908277846 +UniRef50_A5UNV5 0.00980444271529 0.000488126785439 -0.00931631592985 +UniRef50_F0RJD3 0.000107750520127 0.00930458482624 0.00919683430611 +UniRef50_A5UNV8 0.00300616083539 0.000949653838629 -0.00205650699676 +UniRef50_UPI00037EDF68 hypothetical protein, partial 5.76687252304e-05 5.32863231909e-05 -4.3824020395e-06 +UniRef50_UPI0002D3C59D hypothetical protein 0.00133156812096 0.000573344948768 -0.000758223172192 +UniRef50_UPI0003C02B7D 9.63208605814e-05 7.31032179182e-05 -2.32176426632e-05 +UniRef50_I0C596 0.0202072204813 0.00545577216337 -0.0147514483179 +UniRef50_P37758 Nitrate nitrite transporter NarU 0.00833438456861 0.00216513945137 -0.00616924511724 +UniRef50_R6IJD9 7.40681185352e-05 0.000239769990679 0.000165701872144 +UniRef50_M5ABJ7 Glucuronide carrier protein 0.000177208115904 0.00495765368167 0.00478044556577 +UniRef50_V4QZ84 Acyl homoserine lactone synthase 7.09270963142e-05 0.000203083603901 0.000132156507587 +UniRef50_P21911 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.44462913503e-05 5.48653476874e-05 3.04190563371e-05 +UniRef50_UPI0003B43349 cell division protein FtsZ 1.27285567621e-05 2.25802472034e-05 9.8516904413e-06 +UniRef50_F4CS06 Plasmid pRiA4b ORF 3 family protein 0.000265941673947 3.04960475146e-05 -0.000235445626432 +UniRef50_UPI0003B37305 damage inducible protein 2.61719226007e-05 6.35754604664e-06 -1.98143765541e-05 +UniRef50_G5JU10 Beta lactamase 0.00443754564099 0.00308141360359 -0.0013561320374 +UniRef50_F8IME6 0.00905793374031 0.000751148010347 -0.00830678572996 +UniRef50_M9VFD9 Osmosensitive K+ channel histidine kinase KdpD 0.000245182008446 0.00494545778568 0.00470027577723 +UniRef50_C5XM13 0.000749407395544 0.000400823450487 -0.000348583945057 +UniRef50_Q9RR86 BrkB protein, putative 0.000187060606053 0.0342890663283 0.0341020057222 +UniRef50_A3VLJ6 0.00047719809492 2.54901036153e-05 -0.000451707991305 +UniRef50_F3BY18 0.000228318138423 0.00159630134707 0.00136798320865 +UniRef50_A4X0R2 0.000159010434035 2.04158501804e-05 -0.000138594583855 +UniRef50_E2RL98 1.47268616834e-05 4.4154153345e-05 2.94272916616e-05 +UniRef50_D1AC29 6.53362091906e-06 0.000773342287819 0.0007668086669 +UniRef50_UPI000379F62F hypothetical protein 0.00029866656003 0.000615537706897 0.000316871146867 +UniRef50_Q1BYF5 Undecaprenyl diphosphatase 1 0.000549105265091 0.00438135360418 0.00383224833909 +UniRef50_UPI000377866C hypothetical protein 7.52066092071e-06 4.14762725698e-05 3.39556116491e-05 +UniRef50_P41775 Cytochrome c oxidase subunit 3 5.00812724938e-05 9.41640014919e-06 -4.06648723446e-05 +UniRef50_P39410 Putative kinase YjjJ 0.00223067840763 0.000660017290752 -0.00157066111688 +UniRef50_C5N358 Hydrolase, alpha beta domain protein 0.00582963178402 0.00313047566386 -0.00269915612016 +UniRef50_UPI00047026FA hypothetical protein 1.56940472848e-05 4.93060925209e-05 3.36120452361e-05 +UniRef50_Q966L6 Protein LET 504 1.81714790342e-05 2.90095512934e-06 -1.52705239049e-05 +UniRef50_E8U6I4 Agmatine deiminase 0.000495573374271 0.0385572948963 0.038061721522 +UniRef50_P0AAR2 Hha toxicity modulator TomB 0.000608032218492 0.000551993841485 -5.6038377007e-05 +UniRef50_Q2NEH1 Glutamyl tRNA amidotransferase subunit D 0.00213125651245 0.000504942135218 -0.00162631437723 +UniRef50_G2TGN8 Two component transcriptional regulator 0.000659194591949 0.00292783470225 0.0022686401103 +UniRef50_E3F3T4 1.07515869185e-05 1.242524235e-05 1.6736554315e-06 +UniRef50_X2N7K6 Formate acetyltransferase 0.00252833398727 0.00071441402613 -0.00181391996114 +UniRef50_UPI0003B58C95 multidrug ABC transporter 7.1695294091e-05 5.65920786557e-05 -1.51032154353e-05 +UniRef50_K1Z738 2.03233561387e-05 0.000271320891048 0.000250997534909 +UniRef50_Q5KUG7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.0294520290361 0.0131984826963 -0.0162535463398 +UniRef50_Q46BI1 Acetate kinase 0.000289521512523 0.00638616684389 0.00609664533137 +UniRef50_P61607 LexA repressor 2.97750009218e-05 1.42987522354e-05 -1.54762486864e-05 +UniRef50_D3QDU9 Flavohemoprotein 0.0196931207744 0.00782813611027 -0.0118649846641 +UniRef50_D4MG24 Transcriptional regulator, GntR family 0.0050247159323 0.00245699003735 -0.00256772589495 +UniRef50_Q02R92 DNA mismatch repair protein MutS 0.000611512581595 0.000153992808546 -0.000457519773049 +UniRef50_UPI0003F9F77C D ribose transporter ATP binding protein 3.09489530768e-05 9.48403315576e-06 -2.1464919921e-05 +UniRef50_Q8KFI9 1 deoxy D xylulose 5 phosphate synthase 2.62120232771e-06 0.000102190534174 9.95693318463e-05 +UniRef50_A5WDL1 Peptidoglycan glycosyltransferase 0.000128251185346 0.00459016966253 0.00446191847718 +UniRef50_P76052 p aminobenzoyl glutamate hydrolase subunit B 0.00183645087652 0.000896748700845 -0.000939702175675 +UniRef50_X5K0B8 Hydrolase, haloacid dehalogenase like family 0.000387407004267 0.00163530484638 0.00124789784211 +UniRef50_V9VVE0 Gene transfer agent protein 0.00427054470096 0.00073988869109 -0.00353065600987 +UniRef50_Q9CH00 Ribonuclease R 1 4.76824406995e-05 0.00241957351765 0.00237189107695 +UniRef50_Q1AVY9 Carbamoyl phosphate synthase large chain 1.74263682928e-05 1.5494813862e-05 -1.9315544308e-06 +UniRef50_O33812 0.00953393811414 0.00386583175167 -0.00566810636247 +UniRef50_Q2L0A6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 9.31242206544e-06 1.24614551712e-05 3.14903310576e-06 +UniRef50_A0LK05 2 dehydro 3 deoxyphosphooctonate aldolase 0.000227401198102 0.00312148464555 0.00289408344745 +UniRef50_UPI0003811395 hypothetical protein 1.5088151062e-06 3.59373027195e-06 2.08491516575e-06 +UniRef50_C5BMI1 Alkaline phosphatase like protein 1.4521173139e-05 1.44685133896e-05 -5.26597494e-08 +UniRef50_UPI0004713F18 2 hydroxy acid oxidase 2.58571442446e-06 1.39020477297e-05 1.13163333052e-05 +UniRef50_UPI000174498F hypothetical protein 4.91817154362e-06 0.000467813347424 0.00046289517588 +UniRef50_P0AA48 Low affinity putrescine importer PlaP 0.00298804690311 0.00771712965479 0.00472908275168 +UniRef50_UPI0004575852 PREDICTED 2.62061346541e-05 6.00618934063e-06 -2.01999453135e-05 +UniRef50_UPI00036CD191 hypothetical protein 0.00011193928794 0.000106409936877 -5.529351063e-06 +UniRef50_S4NIZ2 0.000193173714911 0.000176071780584 -1.7101934327e-05 +UniRef50_UPI00036F2A19 hypothetical protein 0.000147837305029 4.63322216062e-05 -0.000101505083423 +UniRef50_C5WG14 Two component system histidine kinase 0.00570253580177 0.00252506789771 -0.00317746790406 +UniRef50_H1FIN1 UPF0047 protein yjbQ 1.85040215336e-05 2.43758145819e-05 5.8717930483e-06 +UniRef50_T2END3 0.00158086830529 0.000632418901693 -0.000948449403597 +UniRef50_Q6G082 Ribonuclease 3 1.24015136143e-05 1.00536314289e-05 -2.3478821854e-06 +UniRef50_R4ZTI0 0.000459605628995 0.000103559335537 -0.000356046293458 +UniRef50_UPI00037740DE hypothetical protein 0.0010601998134 0.000870423298282 -0.000189776515118 +UniRef50_A1U1Z4 Glyceraldehyde 3 phosphate dehydrogenase, type I 0.000449277468427 0.00747387965536 0.00702460218693 +UniRef50_A9CJZ7 Ring hydroxylating dioxygenase, alpha subunit 0.00273621293444 0.00131599437598 -0.00142021855846 +UniRef50_B9JQX1 Methionyl tRNA formyltransferase 0.0014316480394 1.91209035328e-05 -0.00141252713587 +UniRef50_UPI000471E6E8 phosphoenolpyruvate protein phosphotransferase, partial 3.38525803765e-06 0.000158695280669 0.000155310022631 +UniRef50_Q8YBF1 Respiratory nitrate reductase 1 alpha chain 0.00137673749167 0.000432457356817 -0.000944280134853 +UniRef50_T1BJ38 Cysteine desulfurase activator complex subunit SufB 5.39266585426e-05 0.000118777381046 6.48507225034e-05 +UniRef50_A5CSL4 tRNA dimethylallyltransferase 4.82717611123e-06 1.67596101918e-05 1.19324340806e-05 +UniRef50_UPI0003F913CD hypothetical protein 5.48414557777e-05 1.37381098193e-05 -4.11033459584e-05 +UniRef50_D4H9Q4 Hydrolase, P loop family 0.000188115941288 0.00261631902662 0.00242820308533 +UniRef50_F4ALX4 4.92851437283e-05 2.18202381571e-05 -2.74649055712e-05 +UniRef50_UPI00036E3CC6 hypothetical protein 8.41164703013e-05 7.26797543879e-05 -1.14367159134e-05 +UniRef50_UPI00035E6B92 transcriptional regulator 2.43289991114e-05 1.87278587453e-05 -5.6011403661e-06 +UniRef50_D3SBH7 TRAP transporter, 4TM 12TM fusion protein 0.00229904214979 0.000487298686803 -0.00181174346299 +UniRef50_G7M624 Aryl alcohol dehydrogenase ) 0.000470454886268 0.000375827733933 -9.4627152335e-05 +UniRef50_R0X4D2 0.000603455780612 0.000557529779188 -4.5926001424e-05 +UniRef50_P36881 Putative phosphotransferase enzyme IIA component YadI 0.000258552047156 0.000404543431768 0.000145991384612 +UniRef50_UPI00036FCC75 MULTISPECIES 1.80703048317e-06 3.33633624269e-05 3.15563319437e-05 +UniRef50_Q3J385 0.00203284515019 0.000312592202392 -0.0017202529478 +UniRef50_Q7VJ82 Bifunctional DNA directed RNA polymerase subunit beta beta 2.3719071078e-06 0.00170375022228 0.00170137831517 +UniRef50_D9UIB7 Predicted protein 9.05477073264e-06 6.26399583813e-05 5.35851876487e-05 +UniRef50_Q9KPG5 UDP N acetylmuramoylalanine D glutamate ligase 0.00290066441263 0.000393770134503 -0.00250689427813 +UniRef50_E6MXZ0 TonB dependent receptor family protein 0.000190730608132 0.00301469983085 0.00282396922272 +UniRef50_UPI00047DE0AF hypothetical protein 1.32339094595e-06 4.57882141793e-05 4.44648232333e-05 +UniRef50_UPI00030CFC56 hypothetical protein 4.51741230956e-05 6.87548365251e-05 2.35807134295e-05 +UniRef50_I7GUS8 0.000129436364315 0.00678139646627 0.00665196010196 +UniRef50_G7U596 Metal binding protein 0.000148616531043 0.00341042366722 0.00326180713618 +UniRef50_UPI0003B7B946 polyvinylalcohol dehydrogenase, partial 3.35797499055e-05 0.0014815281276 0.00144794837769 +UniRef50_A6LQD9 ABC type sugar transport system periplasmic component like protein 9.83036429352e-05 0.00201469412853 0.00191639048559 +UniRef50_UPI0003B45615 thioesterase 1.75349542967e-05 4.18046653071e-05 2.42697110104e-05 +UniRef50_Q5LSN8 Polyphosphate kinase 2, putative 0.00668041147604 0.00197688909845 -0.00470352237759 +UniRef50_Q71X09 Methionine import ATP binding protein MetN 2 0.0167797351048 0.00608480506723 -0.0106949300376 +UniRef50_Q6F9B4 0.000176946557275 0.00500790138682 0.00483095482954 +UniRef50_Q8CT75 0.0111303634878 0.00575541861743 -0.00537494487037 +UniRef50_P74038 Ribosomal RNA small subunit methyltransferase I 3.19758083414e-05 3.69930940437e-05 5.0172857023e-06 +UniRef50_UPI000466458A DNA gyrase subunit B 1.37382358216e-05 1.63970136493e-05 2.6587778277e-06 +UniRef50_O26310 DNA polymerase PolB subunit 2 0.00139160805613 0.000763520081072 -0.000628087975058 +UniRef50_UPI0003C19B5B 1.41493308036e-05 2.04089604829e-05 6.2596296793e-06 +UniRef50_UPI00035B52D5 hypothetical protein 1.62168177859e-06 2.16345178519e-06 5.417700066e-07 +UniRef50_A0A024EA09 0.000179908605589 4.18531149599e-05 -0.000138055490629 +UniRef50_G7LZT7 0.00107182521116 0.00152511516917 0.00045328995801 +UniRef50_B1L5U5 Inosine 5 monophosphate dehydrogenase 2.54568501145e-05 4.69966367946e-06 -2.0757186435e-05 +UniRef50_L1K6E3 0.00117968006452 0.000123077783314 -0.00105660228121 +UniRef50_UPI000455F431 GroES like protein 5.47771392884e-06 4.56625864528e-05 4.0184872524e-05 +UniRef50_UPI000476EB30 hypothetical protein 1.45388363124e-05 1.44258233517e-05 -1.130129607e-07 +UniRef50_K0HYU8 M13 family metallopeptidase 6.04622512861e-05 0.00513701151942 0.00507654926813 +UniRef50_U7NU39 9.86552238538e-05 0.000121799384922 2.31441610682e-05 +UniRef50_A8EQW9 Glutamate tRNA ligase 1 3.98890354539e-06 0.00781350416051 0.00780951525696 +UniRef50_Q899J9 Methyl accepting chemotaxis protein 0.000433924224537 0.00150575952633 0.00107183530179 +UniRef50_M5RGX7 0.00097789166152 0.000232774572528 -0.000745117088992 +UniRef50_UPI0003B60AC8 glycine betaine ABC transporter permease 4.51321383489e-05 1.41719597858e-05 -3.09601785631e-05 +UniRef50_F0XWS6 1.1056035514e-05 0.000185317500743 0.000174261465229 +UniRef50_UPI0003EF099D cytochrome d terminal oxidase subunit 1 9.25375555611e-06 1.25964721614e-05 3.34271660529e-06 +UniRef50_B4U5I2 Cationic amino acid transporter APC superfamily 0.00710541293312 0.00415860430499 -0.00294680862813 +UniRef50_D7UQD7 Nitrogenase reductase 0.000511223512481 4.59303523303e-05 -0.000465293160151 +UniRef50_A6LZK3 Histidine kinase 0.000128834808487 0.00198130399334 0.00185246918485 +UniRef50_UPI0003F7F30F alpha amylase 2.64116661265e-05 1.58503773781e-05 -1.05612887484e-05 +UniRef50_Q1IYB4 ATPase AAA 2 0.000167731323782 0.0196485216957 0.0194807903719 +UniRef50_UPI0003646AB7 hypothetical protein 1.90261930325e-05 6.83758730463e-05 4.93496800138e-05 +UniRef50_A7HQ39 Two component transcriptional regulator, winged helix family 0.0063573841682 0.00087734414176 -0.00548004002644 +UniRef50_Q9RZT2 Chromosome partitioning ATPase, putative, ParA family 0.000109416228655 0.0193749325695 0.0192655163408 +UniRef50_UPI0003724B15 hypothetical protein 8.27464267755e-05 2.76826928114e-05 -5.50637339641e-05 +UniRef50_A8LMF7 Glutamate racemase 0.00182214234583 0.000834012586967 -0.000988129758863 +UniRef50_UPI00045E66ED branched chain amino acid ABC transporter substrate binding protein 0.000140867393682 3.78025807639e-05 -0.000103064812918 +UniRef50_P39398 L galactonate transporter 0.00467330142122 0.000570364215017 -0.0041029372062 +UniRef50_Q3JG68 0.000129740521982 1.86745122691e-06 -0.000127873070755 +UniRef50_P49988 RNA polymerase sigma 54 factor 0.00043980907313 0.000618918254377 0.000179109181247 +UniRef50_F2ZMW7 1.6764429749e-05 2.33164659022e-05 6.5520361532e-06 +UniRef50_I7FLW8 General substrate transporter 0.000130768818311 0.00314693467617 0.00301616585786 +UniRef50_UPI00035EEFC1 hypothetical protein 4.25659903294e-06 7.22230953345e-06 2.96571050051e-06 +UniRef50_M9VER6 Tat pathway signal sequence 0.000144446169206 0.00499899998622 0.00485455381701 +UniRef50_T0T7Z3 0.00406131978331 0.00199754532221 -0.0020637744611 +UniRef50_UPI00036133DB hypothetical protein 3.06535260265e-06 9.97980540071e-06 6.91445279806e-06 +UniRef50_Q5F507 0.000255058100582 0.00119633308451 0.000941274983928 +UniRef50_UPI0004118E6E hypothetical protein 9.72576520301e-07 5.91021113973e-06 4.93763461943e-06 +UniRef50_A7IES2 Ribonuclease HII 0.00373555808006 0.00309268650577 -0.00064287157429 +UniRef50_A3PSB1 Flagellar FlbT family protein 0.017075922513 0.000528925442146 -0.0165469970709 +UniRef50_Q6D6Y6 Putrescine aminotransferase 0.00207276499816 0.000641721214839 -0.00143104378332 +UniRef50_A3W182 Membrane protein, putative 0.000299936445893 4.08797015277e-05 -0.000259056744365 +UniRef50_C4I8A2 Hydrolase, isochorismatase family 0.000355090537122 0.00664255795222 0.0062874674151 +UniRef50_F8LGD6 0.00741275880412 0.00179824250136 -0.00561451630276 +UniRef50_P0AG29 0.000585328109888 0.00412069821203 0.00353537010214 +UniRef50_A3PNN1 0.000459032163423 0.000301963469432 -0.000157068693991 +UniRef50_UPI000374CA9B hypothetical protein 6.78669976031e-07 3.94068635212e-05 3.87281935452e-05 +UniRef50_Q28JJ3 Flagellar protein FlaF putative 7.54072651422e-05 7.87711804044e-05 3.3639152622e-06 +UniRef50_A3M4L6 0.000100484291618 0.00831216837324 0.00821168408162 +UniRef50_Q3IUZ0 0.0222175813563 0.00345301351331 -0.018764567843 +UniRef50_E6SBU2 1.15663865864e-05 6.90167445712e-05 5.74503579848e-05 +UniRef50_R7I998 6.84144707043e-06 1.68875394217e-05 1.00460923513e-05 +UniRef50_UPI000350D37B PREDICTED 1.00740244864e-05 0.000121197006228 0.000111122981742 +UniRef50_L0GGI8 Lytic murein transglycosylase B 0.000859989451478 0.000196441267312 -0.000663548184166 +UniRef50_B9DJG9 3 dehydroquinate dehydratase 0.00654507941753 0.0037527257455 -0.00279235367203 +UniRef50_X0RZM7 Marine sediment metagenome DNA, contig 2.69476050868e-05 0.000807289499169 0.000780341894082 +UniRef50_X5JHV8 Protein serine threonine phosphatase 9.38611690351e-06 9.07818527811e-05 8.13957358776e-05 +UniRef50_A7NB32 3 methyl 2 oxobutanoate hydroxymethyltransferase 7.28978314783e-06 1.21393645337e-05 4.84958138587e-06 +UniRef50_UPI0003068E5B hypothetical protein 4.90837323417e-06 1.04605030627e-05 5.55212982853e-06 +UniRef50_R0FLE9 6.41070643976e-05 4.10112958624e-05 -2.30957685352e-05 +UniRef50_UPI0003767355 hypothetical protein, partial 4.48491287115e-05 5.27730978526e-05 7.9239691411e-06 +UniRef50_M9RMU0 9.07621379592e-05 5.95721723422e-05 -3.1189965617e-05 +UniRef50_A3DHY6 Ribosomal RNA small subunit methyltransferase G 0.000622587460836 0.000246782762008 -0.000375804698828 +UniRef50_UPI00026579B9 PREDICTED 2.25301498103e-05 6.50686619832e-05 4.25385121729e-05 +UniRef50_E7KDY4 Muc1p 1.23892750845e-06 6.04787386056e-06 4.80894635211e-06 +UniRef50_A9ALI4 ABC transporter related 7.59191295635e-05 7.04084354474e-05 -5.5106941161e-06 +UniRef50_Q0T0I4 Ribosomal RNA large subunit methyltransferase G 0.00408789992152 0.000982584687032 -0.00310531523449 +UniRef50_Q5ZWB8 UPF0234 protein lpg1167 1.24908262142e-05 3.60989349979e-05 2.36081087837e-05 +UniRef50_Q9KGL2 Ribosomal RNA small subunit methyltransferase I 0.0214639256792 0.0077635756028 -0.0137003500764 +UniRef50_Q5LWK7 ABC transporter, periplasmic substrate binding protein 0.00957077247162 0.00197503810121 -0.00759573437041 +UniRef50_Q3JQP4 7.00859601585e-05 0.000464327058432 0.000394241098274 +UniRef50_Q62IJ6 Potassium transporting ATPase A chain 4.14644576382e-06 0.00202179610521 0.00201764965945 +UniRef50_X1YF14 1.26257820794e-05 1.01928529081e-05 -2.4329291713e-06 +UniRef50_L2FGS4 Cvnh domain containing protein 4.28018492752e-06 7.62611124375e-06 3.34592631623e-06 +UniRef50_S9TEG5 General secretory system II protein E domain containing protein 1.84888007097e-05 0.00016967481339 0.00015118601268 +UniRef50_O24982 Apolipoprotein N acyltransferase 0.000113245796655 0.00367326214924 0.00356001635259 +UniRef50_D0IRT5 Arginine permease 0.000181606908375 0.00392159166488 0.00373998475651 +UniRef50_P21179 Catalase HPII 0.0017848975057 0.000419664454578 -0.00136523305112 +UniRef50_U5MNZ4 Beta glucanase BglA 0.000216207672803 0.0013536222542 0.0011374145814 +UniRef50_UPI00037A554B hypothetical protein 9.89219590283e-06 3.29521771553e-05 2.30599812525e-05 +UniRef50_UPI0003812998 hypothetical protein 9.71982559687e-06 6.82464114948e-06 -2.89518444739e-06 +UniRef50_G3XD19 O antigen translocase 0.000886066839104 0.000427856611132 -0.000458210227972 +UniRef50_Q899R2 Single stranded DNA binding protein 0.00213964775418 0.000427995224921 -0.00171165252926 +UniRef50_A6LVD4 Sigma54 specific transcriptional regulator, Fis family 0.000187718240781 0.00124374752613 0.00105602928535 +UniRef50_UPI0004670897 shikimate kinase 1.64633438742e-05 1.08366573707e-05 -5.6266865035e-06 +UniRef50_D7FNC8 Enoyl ACP reductase enoyl ACP reductase 3.27163544958e-06 1.32154529751e-05 9.94381752552e-06 +UniRef50_A5UJH5 Predicted oxidoreductase, aldo keto reductase family 0.00322905691019 0.00106201328855 -0.00216704362164 +UniRef50_A7ZV86 0.000679645073595 0.000582062964133 -9.7582109462e-05 +UniRef50_V9B8V8 8.50114917741e-05 1.02605227702e-05 -7.47509690039e-05 +UniRef50_B2SBZ3 Dihydrodipicolinate synthetase 0.000135623708568 0.00700149345088 0.00686586974231 +UniRef50_UPI000381E70F hypothetical protein 8.30922862673e-06 8.82190144358e-05 7.99097858091e-05 +UniRef50_UPI00047BCB0B hypothetical protein 1.35353296698e-05 3.41242698621e-05 2.05889401923e-05 +UniRef50_J1HZ40 Cadherin like beta sandwich domain protein 1.16612248791e-06 0.00419162527075 0.00419045914826 +UniRef50_UPI0003B309D3 hypothetical protein 4.16993268157e-06 1.4136630948e-05 9.96669826643e-06 +UniRef50_L0F2G6 ABC type dipeptide oligopeptide nickel transport system, permease component 0.000233057731141 0.0021381223713 0.00190506464016 +UniRef50_A4ISF0 Pyridine nucleotide disulphide oxidoreductase 0.0165629540166 0.00377611408859 -0.012786839928 +UniRef50_U2KRP8 1.94888647933e-05 2.42300413421e-05 4.7411765488e-06 +UniRef50_Q2NHY4 Predicted ATPase 0.00382887286818 0.000199988739417 -0.00362888412876 +UniRef50_Q6D8C5 tRNA lysidine synthase 0.00302900314121 0.000675223259911 -0.0023537798813 +UniRef50_W1DNL9 DNA directed RNA polymerase beta subunit 0.00406228226842 0.00088098536748 -0.00318129690094 +UniRef50_K7RSJ8 Exonuclease SbcCD, D subunit 0.000163413847988 0.00622265587767 0.00605924202968 +UniRef50_Q03CD2 Purine nucleoside phosphorylase DeoD type 0.000379393076353 0.00208193084354 0.00170253776719 +UniRef50_C5MYT2 0.0125791057334 0.00548996463905 -0.00708914109435 +UniRef50_UPI00046D19BF hypothetical protein 2.89673566329e-05 6.91443616986e-05 4.01770050657e-05 +UniRef50_U5N005 Signaling protein 0.000108681812416 0.000624724328459 0.000516042516043 +UniRef50_UPI0003B67EAC phosphate ABC transporter ATP binding protein 3.35606946241e-05 3.30970357223e-05 -4.636589018e-07 +UniRef50_W5V0N3 Hemagglutinin 7.17199544052e-05 0.000107327531323 3.56075769178e-05 +UniRef50_UPI000456105B hypothetical protein PFL1_03954 8.89617587187e-07 2.01543969632e-06 1.12582210913e-06 +UniRef50_UPI0003B77756 deoxyribonucleotide triphosphate pyrophosphatase 8.29728254281e-06 1.43285283986e-05 6.03124585579e-06 +UniRef50_V5SVZ8 0.000753385261022 0.000703309526921 -5.0075734101e-05 +UniRef50_D9PYS9 Non canonical purine NTP pyrophosphatase 0.00530260494129 0.000364588524928 -0.00493801641636 +UniRef50_UPI0001745D89 molecular chaperone DnaK 4.5667210503e-06 4.18052047799e-06 -3.8620057231e-07 +UniRef50_UPI000475F618 branched chain amino acid ABC transporter substrate binding protein 2.45825393727e-05 1.17489412903e-05 -1.28335980824e-05 +UniRef50_Q8ZIQ1 Protein smp 0.00304648696503 0.00106668777444 -0.00197979919059 +UniRef50_A5UNL4 Adhesin like protein 0.00398338911148 0.000681338801524 -0.00330205030996 +UniRef50_UPI00029A29A8 oligo 1,6 glucosidase, partial 3.24052610787e-05 1.60670471457e-05 -1.6338213933e-05 +UniRef50_W9EH11 0.0010496863607 1.85212077268e-05 -0.00103116515297 +UniRef50_UPI0003B4600B ribonuclease, partial 1.81638168575e-05 1.05755312996e-05 -7.5882855579e-06 +UniRef50_G5EL93 Cassette chromosome recombinase A 0.0104698623699 0.00244512102572 -0.00802474134418 +UniRef50_P00803 Signal peptidase I 0.00195666393901 0.000189914279868 -0.00176674965914 +UniRef50_B0T4C1 Probable chemoreceptor glutamine deamidase CheD 0.000352722653841 5.39374125376e-05 -0.000298785241303 +UniRef50_B0KFB1 Rhomboid family protein 0.000272225472725 0.00037381861418 0.000101593141455 +UniRef50_Q2G4D3 UPF0260 protein Saro_2854 4.80345035694e-05 0.00438327409636 0.00433523959279 +UniRef50_Q3J6E0 0.002300973382 0.000557201330567 -0.00174377205143 +UniRef50_Q9BWD1 Acetyl CoA acetyltransferase, cytosolic 0.00220170063826 0.00055481328387 -0.00164688735439 +UniRef50_O07347 Signal recognition particle protein 0.000382165846742 0.0422930778145 0.0419109119678 +UniRef50_A4VVR6 Predicted O methyltransferase 0.00276202504291 0.000633208415943 -0.00212881662697 +UniRef50_K2AGU5 Chemotactic signal response protein CheL 0.000149030613609 7.8714263939e-05 -7.031634967e-05 +UniRef50_A8AJ27 6 phosphogluconolactonase 0.00256905283308 0.000969142138925 -0.00159991069415 +UniRef50_M0BHI2 Nucleolar protein like protein 0.000196172275359 0.000150241749445 -4.5930525914e-05 +UniRef50_K7VJY6 8.8074586029e-05 7.2516455212e-06 -8.08229405078e-05 +UniRef50_O34814 Cell division ATP binding protein FtsE 0.00123560043394 0.00458784620661 0.00335224577267 +UniRef50_UPI00035D2A1B hypothetical protein 7.89764087148e-05 0.000168873036155 8.98966274402e-05 +UniRef50_UPI00037863B5 hypothetical protein 7.82343401066e-06 1.64437450904e-05 8.62031107974e-06 +UniRef50_B3DQ29 Elongation factor P 2.22099773758e-05 0.000150779216079 0.000128569238703 +UniRef50_P43735 Chaperone protein DnaJ 0.000221118008496 0.000627846374938 0.000406728366442 +UniRef50_UPI000161E2A8 40S ribosomal protein S15 5.81127111971e-05 8.63690741194e-06 -4.94758037852e-05 +UniRef50_Q66L51 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 6.09941732819e-06 7.0573538081e-06 9.5793647991e-07 +UniRef50_A0A023RVS9 Diguanylate cyclase 0.000168892758539 0.00668143410448 0.00651254134594 +UniRef50_Q8ZLF2 sn glycerol 3 phosphate transport system permease protein UgpA 0.0138041268746 0.00332104060678 -0.0104830862678 +UniRef50_A4J8U4 Putative sporulation transcription regulator WhiA 0.000391916088574 0.0017903847323 0.00139846864373 +UniRef50_J9P3B1 2.80546862557e-05 1.04512852124e-05 -1.76034010433e-05 +UniRef50_E1TE96 Type VI secretion protein, VC_A0114 family 0.000201443674674 5.00699553971e-06 -0.000196436679134 +UniRef50_UPI000329034B 0.000124094987895 4.49290005853e-05 -7.91659873097e-05 +UniRef50_A5VR36 Lactoylglutathione lyase 0.0198644838985 0.00763548079145 -0.012229003107 +UniRef50_Q88QC7 Biosynthetic arginine decarboxylase 0.00184062484814 0.00165574416389 -0.00018488068425 +UniRef50_P27111 HTH type transcriptional regulator CynR 0.00294885230787 0.000207239793125 -0.00274161251475 +UniRef50_G7ZTG5 Acetyltransferase, GNAT family protein 0.0268501424234 0.00194003674946 -0.0249101056739 +UniRef50_K3X5U2 0.000268993196135 0.000449948474827 0.000180955278692 +UniRef50_UPI0003B45AF6 NADPH 1.85984550178e-05 4.86706083171e-05 3.00721532993e-05 +UniRef50_UPI00047C5895 hypothetical protein 2.06525235057e-05 0.000137384059676 0.00011673153617 +UniRef50_A4VWF3 ATPase component of ABC transporters with duplicated ATPase domains 0.000252774519159 0.00369728200893 0.00344450748977 +UniRef50_S6AW99 0.00018874299443 0.000929474887452 0.000740731893022 +UniRef50_P29365 Homoserine dehydrogenase 0.00110097239842 0.00876753784591 0.00766656544749 +UniRef50_A1W5W7 SwissProt accession number P19593 like protein 1.66141246844e-05 8.61006658394e-05 6.9486541155e-05 +UniRef50_H8LDC1 Helix turn helix domain protein 0.0159450795251 0.00247573110905 -0.013469348416 +UniRef50_E8ZZT0 DNA translocase ftsK 0.000763769552922 0.000176267975336 -0.000587501577586 +UniRef50_A1K314 Holliday junction ATP dependent DNA helicase RuvA 0.000891225204156 0.00174070991595 0.000849484711794 +UniRef50_UPI00037585D1 hypothetical protein 0.000930259738955 0.000232587799164 -0.000697671939791 +UniRef50_G2SM74 Fe S cluster oxidoreductase 0.0014330291612 0.00200736627624 0.00057433711504 +UniRef50_UPI00037560BA hypothetical protein 3.91240623283e-05 0.000121584547317 8.24604849887e-05 +UniRef50_B0SAP0 Succinyl CoA ligase [ADP forming] subunit beta 0.0283667051049 0.0157212646391 -0.0126454404658 +UniRef50_Q8CRS1 0.00154760209082 0.000694862835762 -0.000852739255058 +UniRef50_R0DRQ8 4.04277746655e-05 3.85371388555e-05 -1.89063581e-06 +UniRef50_F5HTJ7 Phosphopantetheine attachment domain protein 0.000259011908145 0.00874682130595 0.0084878093978 +UniRef50_W5X2Q0 3.24360640712e-05 5.14850515515e-05 1.90489874803e-05 +UniRef50_E8TF05 Tetracycline transcriptional regulator YcdC domain containing protein 0.0138723937395 0.00327619614812 -0.0105961975914 +UniRef50_E9WHJ2 NrdB protein 0.00331685042019 0.000261506160374 -0.00305534425982 +UniRef50_A3PP90 TRAP T family transporter, small inner membrane subunit 0.00750675992924 0.00076705637713 -0.00673970355211 +UniRef50_UPI000469C97C riboflavin biosynthesis protein RibF 1.01646333543e-05 3.25578803253e-05 2.2393246971e-05 +UniRef50_UPI00036BA29A MULTISPECIES 4.11342129639e-06 1.0918889205e-05 6.80546790861e-06 +UniRef50_Q9I2Y2 Phosphoserine phosphatase ThrH 0.00127558324272 0.00778029930595 0.00650471606323 +UniRef50_Q8Y2I3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.10306154339e-05 1.13609574929e-05 3.30342059e-07 +UniRef50_UPI0003A4B73E hypothetical protein 8.57944021391e-05 3.29810928129e-05 -5.28133093262e-05 +UniRef50_UPI00047210DD hypothetical protein 2.21033978269e-06 3.86564413234e-06 1.65530434965e-06 +UniRef50_A6WP83 Thioesterase superfamily protein 2.82593347166e-05 0.00165805292136 0.00162979358664 +UniRef50_M9VE12 Transglutaminase 0.0002886712045 0.00622188005373 0.00593320884923 +UniRef50_D4GJ64 MocR 0.000481572578875 0.00624600701246 0.00576443443359 +UniRef50_E3D421 CinA related protein 0.000292624797564 0.00298809786679 0.00269547306923 +UniRef50_UPI000367AB3B hypothetical protein, partial 0.000362834922283 0.00014408741025 -0.000218747512033 +UniRef50_P65809 0.00206052734383 0.000413024238847 -0.00164750310498 +UniRef50_Q65GI9 3 isopropylmalate dehydrogenase 0.0140957481444 0.0085783591506 -0.0055173889938 +UniRef50_UPI0003B44979 glutamate 2.61282004371e-06 6.50309340455e-06 3.89027336084e-06 +UniRef50_P77148 0.00347966007136 0.00484628288441 0.00136662281305 +UniRef50_J3M3U5 8.13619359059e-06 1.02590282255e-05 2.12283463491e-06 +UniRef50_UPI000381BF29 hypothetical protein, partial 9.97976061044e-06 2.82313543114e-05 1.8251593701e-05 +UniRef50_F8GT79 Major facilitator superfamily MFS 0.000359008507951 0.00576619246276 0.00540718395481 +UniRef50_W1MCV7 0.000171793908893 9.71413014233e-05 -7.46526074697e-05 +UniRef50_R4GHX9 3.14658741268e-05 6.33687172028e-05 3.1902843076e-05 +UniRef50_UPI0003709C0F hypothetical protein 2.05862338216e-05 1.2381832389e-05 -8.2044014326e-06 +UniRef50_A5FN12 Enolase 1.12111216576e-05 0.000105029776287 9.38186546294e-05 +UniRef50_F5ZL84 Membrane protein 0.00486350970635 0.00430233906122 -0.00056117064513 +UniRef50_P08681 Cytochrome c oxidase subunit 1 3.70999527329e-05 8.73934730239e-05 5.0293520291e-05 +UniRef50_UPI00046D95AC multidrug MFS transporter 6.43481412002e-06 0.000105903095801 9.9468281681e-05 +UniRef50_B9DJU7 Choline transporter 0.0255059405985 0.00694334932208 -0.0185625912764 +UniRef50_UPI0004689981 hypothetical protein 2.62629672384e-06 5.50421434629e-06 2.87791762245e-06 +UniRef50_UPI000467699E cytochrome d ubiquinol oxidase subunit 2 8.23976149206e-06 4.17029213606e-05 3.34631598685e-05 +UniRef50_UPI000471B371 hydrogenase accessory protein HypB 7.13043337588e-05 2.38707582884e-05 -4.74335754704e-05 +UniRef50_I4EB76 Replication protein C 3.50582929947e-05 1.62774934681e-05 -1.87807995266e-05 +UniRef50_B1HXC5 Sulfate binding protein (SSI2) 0.00272673160454 0.0140375010985 0.011310769494 +UniRef50_UPI00022CA98C PREDICTED 5.30155865392e-06 2.61451584749e-05 2.0843599821e-05 +UniRef50_U5MVB3 Phage like element PBSX protein XkdC 0.00221781543851 0.00422483187002 0.00200701643151 +UniRef50_Q0C5Z7 Transcription termination factor NusA 0.0118103189586 0.00416775709548 -0.00764256186312 +UniRef50_UPI00027F529F 0.000128141787143 4.07753557583e-05 -8.73664313847e-05 +UniRef50_A6LQD4 Endodeoxyribonuclease RusA 0.000172368031437 0.00360762116849 0.00343525313705 +UniRef50_E8JNG4 0.000208981395112 0.000254003249514 4.5021854402e-05 +UniRef50_UPI0003B5B5B4 heme biosynthesis protein HemY 1.15118155548e-05 1.47712451311e-05 3.2594295763e-06 +UniRef50_G8VCT1 Lysophospholipase 0.000245155838441 0.00718549230707 0.00694033646863 +UniRef50_A4XPP9 Pilus assembly protein, PilQ 0.000724448320794 0.0011734438617 0.000448995540906 +UniRef50_R5TNT7 NAD utilizing dehydrogenase 0.000717705019224 0.00247094121843 0.00175323619921 +UniRef50_Q4L389 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000920697533784 0.00347431417878 0.002553616645 +UniRef50_W8RPJ3 Hydroxymethylpyrimidine ABC transporter, transmembrane component 0.0102570971573 0.00048282094133 -0.00977427621597 +UniRef50_Q6A5L3 Putative 3 methyladenine DNA glycosylase 3.3914245091e-05 0.00430465682641 0.00427074258132 +UniRef50_H1QEQ5 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.000333154900203 0.000114757551134 -0.000218397349069 +UniRef50_P58336 Fructose bisphosphate aldolase 0.0239386073392 0.0123999599233 -0.0115386474159 +UniRef50_Q8RG98 ATP dependent 6 phosphofructokinase 2.32973473664e-05 8.08072284876e-06 -1.52166245176e-05 +UniRef50_G8VQK9 0.000127385598041 0.00814239523744 0.0080150096394 +UniRef50_Q49776 ATP phosphoribosyltransferase 0.000176946557275 0.00414532915254 0.00396838259526 +UniRef50_P33014 UPF0033 protein YeeD 0.00332037911719 0.00157502242771 -0.00174535668948 +UniRef50_F2A7T6 0.00197551032108 0.000444085270977 -0.0015314250501 +UniRef50_Q6AB77 Na H(+) antiporter NhaA 0.000469518101512 0.00771765885817 0.00724814075666 +UniRef50_A4WUL7 GumN family protein 5.23940067928e-05 2.56706957933e-05 -2.67233109995e-05 +UniRef50_P59302 Acetylglutamate kinase 0.00300304466644 0.00136470963071 -0.00163833503573 +UniRef50_Q983F8 Ribosomal RNA large subunit methyltransferase E 8.51447409346e-05 5.46070363154e-05 -3.05377046192e-05 +UniRef50_P24136 Oligopeptide transport ATP binding protein OppD 0.0221541893521 0.0097517292003 -0.0124024601518 +UniRef50_G2T6W5 Ppx GppA phosphatase 6.53811048072e-06 9.89612849316e-06 3.35801801244e-06 +UniRef50_A7X5U0 Formimidoylglutamase 0.0115835693576 0.00265165455367 -0.00893191480393 +UniRef50_U5MNC9 PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase 0.000839748939815 0.00150202000155 0.000662271061735 +UniRef50_Q6FBR2 0.000225362771271 0.00755250152421 0.00732713875294 +UniRef50_UPI000465E9D3 glycine betaine ABC transporter ATP binding protein 5.25652461244e-05 9.18632962417e-06 -4.33789165002e-05 +UniRef50_UPI0004662A15 peptide ABC transporter 8.40070407747e-05 1.25187976368e-05 -7.14882431379e-05 +UniRef50_UPI00037198AA hypothetical protein 4.17846103001e-06 2.54510188982e-06 -1.63335914019e-06 +UniRef50_P12999 Malonyl [acyl carrier protein] O methyltransferase 0.00245488402021 0.000894163728117 -0.00156072029209 +UniRef50_UPI000380847F hypothetical protein 1.3087802258e-05 7.78263290118e-06 -5.30516935682e-06 +UniRef50_UPI0004706833 hypothetical protein 0.000123918657882 2.68315157062e-05 -9.70871421758e-05 +UniRef50_F9YZ80 9.79772395697e-05 0.00880478320372 0.00870680596415 +UniRef50_B5EXN2 Ferrochelatase 4.58661850665e-06 2.99701124777e-05 2.53834939711e-05 +UniRef50_S9TGH7 PE PGRS family protein 0.000149689023164 0.000428629564389 0.000278940541225 +UniRef50_F0KI57 Transcription activator of glutamate synthase operon GltC 0.000125828662949 0.00844905359922 0.00832322493627 +UniRef50_P60065 Arginine agmatine antiporter 0.00256547106817 0.000920283166503 -0.00164518790167 +UniRef50_Z5XA58 2.565575288e-05 9.73032376359e-05 7.16474847559e-05 +UniRef50_Q2K5E7 Xylose ABC transporter, permease protein 0.00321647948603 0.00104481321218 -0.00217166627385 +UniRef50_F0P396 Betaine aldehyde dehydrogenase 0.0255927792008 0.00489463994243 -0.0206981392584 +UniRef50_G2L6P6 0.00027437713379 0.000372247947718 9.7870813928e-05 +UniRef50_A4XTI2 4.29199852858e-05 0.000240883522049 0.000197963536763 +UniRef50_A1R8N0 tRNA N6 adenosine threonylcarbamoyltransferase 1.33005836697e-05 2.070484484e-05 7.4042611703e-06 +UniRef50_W8KIM2 Protein pucC 0.00235621148982 0.000963482805149 -0.00139272868467 +UniRef50_D9S1W5 0.00066116281873 0.000531659119422 -0.000129503699308 +UniRef50_M1MXN6 ABC type multidrug transport system, ATPase and permease component 0.000157150917647 0.00024505606956 8.7905151913e-05 +UniRef50_Q54MI4 2.56113791227e-06 5.0041442333e-06 2.44300632103e-06 +UniRef50_Q6GJ93 Putative acetyl CoA C acetyltransferase VraB 0.0265041112598 0.00567172044024 -0.0208323908196 +UniRef50_V7EMW9 0.000108029211079 7.86540864863e-05 -2.93751245927e-05 +UniRef50_A3PLM1 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.00410652278597 0.000281745691794 -0.00382477709418 +UniRef50_C3F739 VrrA protein product 4.45713313932e-05 0.000240094882266 0.000195523550873 +UniRef50_UPI000465695E ABC transporter 4.61893401462e-05 7.16246059976e-05 2.54352658514e-05 +UniRef50_P75785 Phosphoethanolamine transferase OpgE 0.00389579338034 0.000990958143816 -0.00290483523652 +UniRef50_UPI0003C14A7B PREDICTED 0.000102817151383 8.56006357713e-05 -1.72165156117e-05 +UniRef50_A0A011RZV2 2.17230326694e-05 1.12932642771e-05 -1.04297683923e-05 +UniRef50_W7TIH3 3.90478390628e-05 1.89707109081e-05 -2.00771281547e-05 +UniRef50_B0RVK4 Succinyl CoA 0.0177168520838 0.048230540948 0.0305136888642 +UniRef50_UPI000370484E hypothetical protein 9.26381603864e-05 3.99214597254e-05 -5.2716700661e-05 +UniRef50_Q5HP94 Holliday junction resolvase RecU 0.0111475699299 0.00352703783427 -0.00762053209563 +UniRef50_A0A009FMX4 BCCT transporter family protein 0.0001457366432 0.00490425601012 0.00475851936692 +UniRef50_UPI000347806D MULTISPECIES 0.000130749637327 0.0103674193301 0.0102366696928 +UniRef50_A9MIT8 0.00728267475651 0.000399977478817 -0.00688269727769 +UniRef50_Q1IUF1 tRNA N6 adenosine threonylcarbamoyltransferase 1.41105572094e-05 1.67277942171e-05 2.6172370077e-06 +UniRef50_E3A4Z7 0.00142557375498 0.000319415385196 -0.00110615836978 +UniRef50_UPI00035F7B5B hypothetical protein 3.82748951546e-05 6.50687237516e-05 2.6793828597e-05 +UniRef50_D4FIU1 0.0032653585442 0.00230116913138 -0.00096418941282 +UniRef50_UPI00034D20EA cytochrome BD ubiquinol oxidase subunit I 3.52769276739e-05 4.73393745702e-05 1.20624468963e-05 +UniRef50_A6YP79 Minor ampullate spidroin like protein 7.27119805174e-06 7.55820201919e-05 6.83108221402e-05 +UniRef50_C8W984 M20 DapE family protein YgeY 0.000101383882411 0.00371370956182 0.00361232567941 +UniRef50_G8VJJ1 Poly depolymerase 0.000239420288917 0.00604986671084 0.00581044642192 +UniRef50_P39295 0.00296320994259 0.00387693058873 0.00091372064614 +UniRef50_R5TI31 9.8218383912e-05 0.00557489537163 0.00547667698772 +UniRef50_P60811 Foldase protein PrsA 1 0.00693660902889 0.00301147269684 -0.00392513633205 +UniRef50_UPI0002374DF8 30S ribosomal protein S2, partial 1.61400898517e-05 4.14271465827e-05 2.5287056731e-05 +UniRef50_S9QQX6 0.000213370067565 3.01725737495e-05 -0.000183197493816 +UniRef50_C0Z6S0 Argininosuccinate synthase 0.00596177150828 0.00656272100111 0.00060094949283 +UniRef50_A6V127 7.00919968729e-05 0.00170852227089 0.00163843027402 +UniRef50_Q9RYE9 0.00034334209452 0.0630712477059 0.0627279056114 +UniRef50_A7X3Q8 Serine protease SplB 0.0422240117743 0.00920475457339 -0.0330192572009 +UniRef50_Q8DW55 0.00337266740265 0.00275911397125 -0.0006135534314 +UniRef50_G2L1N4 0.000890725467284 0.00110429301976 0.000213567552476 +UniRef50_UPI00047D67F7 branched chain amino acid ABC transporter 0.00010533388264 3.32307128548e-05 -7.21031697852e-05 +UniRef50_UPI0003B4B808 amino acid ABC transporter ATPase, partial 0.000108782376507 0.00012282603841 1.4043661903e-05 +UniRef50_UPI00039C5902 RNA polymerase sigma 70 factor 2.82096910209e-06 0.000205017498746 0.000202196529644 +UniRef50_UPI00047B598A hypothetical protein 9.76766908537e-05 0.000154947751158 5.72710603043e-05 +UniRef50_D4L1E0 ABC type Fe3+ siderophore transport system, permease component 0.000173956676891 0.000564935962282 0.000390979285391 +UniRef50_Q73HV5 Glutamate tRNA ligase 1 1.7730002753e-05 1.12259265932e-05 -6.5040761598e-06 +UniRef50_B7GXS6 5 formyltetrahydrofolate cyclo ligase 0.00022469404098 0.00645502134425 0.00623032730327 +UniRef50_UPI00045717A3 PREDICTED 3.63477146069e-05 7.64151362825e-06 -2.87062009786e-05 +UniRef50_UPI000373B187 hypothetical protein 1.07911833566e-06 0.00360127507502 0.00360019595668 +UniRef50_Q9HXH7 0.00102547270045 0.000871829155164 -0.000153643545286 +UniRef50_UPI0001A42D32 hypothetical protein, partial 7.32293615491e-05 9.92363614566e-06 -6.33057254034e-05 +UniRef50_UPI000255AEF1 30S ribosomal protein S3, partial 0.00104052323866 0.00212063935744 0.00108011611878 +UniRef50_Q57926 Probable homocitrate synthase AksA 0.00288106902442 0.000660299059958 -0.00222076996446 +UniRef50_Q08386 Molybdenum pterin binding protein MopB 0.000664229229173 0.000436428628368 -0.000227800600805 +UniRef50_D6SC26 6 O methylguanine DNA methyltransferase, DNA binding domain protein 0.02075651314 0.0139455710319 -0.0068109421081 +UniRef50_P9WP73 Oxygen independent coproporphyrinogen III oxidase like protein Rv2388c 2.90892723579e-05 9.87929676988e-06 -1.9209975588e-05 +UniRef50_UPI0002195D79 glutamate ABC transporter permease 4.2087898851e-06 3.75810942451e-05 3.337230436e-05 +UniRef50_UPI0004005367 hypothetical protein 9.56849057307e-07 3.52347192764e-05 3.42778702191e-05 +UniRef50_K2EGX4 1.48755743195e-05 2.243154542e-05 7.5559711005e-06 +UniRef50_F0RN24 Polyprenyl synthetase 0.000436181283126 0.0149904263223 0.0145542450392 +UniRef50_C0SPB0 0.0246011155853 0.0095773021065 -0.0150238134788 +UniRef50_S9QSJ4 Flagellar protein FlgJ, putative 0.00015887993754 8.34309335018e-05 -7.54490040382e-05 +UniRef50_O27701 Conserved protein 0.00411142667759 0.0011994202057 -0.00291200647189 +UniRef50_P55218 O succinylhomoserine sulfhydrylase 0.000127877077879 0.00358814672543 0.00346026964755 +UniRef50_M6VVW5 PF12769 domain protein 1.51106598646e-05 2.21126714194e-05 7.0020115548e-06 +UniRef50_I2C019 Transcriptional regulator, LysR family 0.00012724246815 0.00024372767966 0.00011648521151 +UniRef50_P76041 Putative sucrose phosphorylase 0.00241551511253 0.00309527410767 0.00067975899514 +UniRef50_D5SSZ9 ATP dependent DNA ligase 0.00329630904573 0.00142846993173 -0.001867839114 +UniRef50_UPI00036A77AE hypothetical protein 0.00010410526564 4.21904332903e-05 -6.19148323497e-05 +UniRef50_P75806 Putative undecaprenyl diphosphatase YbjG 0.00462832454494 0.000763750099644 -0.0038645744453 +UniRef50_UPI0003315352 PREDICTED 6.28350314963e-06 1.10917133368e-05 4.80821018717e-06 +UniRef50_Q7MLR5 Cysteine tRNA ligase 0.00363200825655 0.00267506755859 -0.00095694069796 +UniRef50_UPI00035CB1C3 hypothetical protein 0.000815417938926 0.000158977782821 -0.000656440156105 +UniRef50_G8VCB9 BNR Asp box repeat protein 4.97346493856e-05 0.00594654115279 0.0058968065034 +UniRef50_Q2YYG7 0.00981645463155 0.00109501517897 -0.00872143945258 +UniRef50_Q7XIT3 0.000142187289557 4.09232375594e-05 -0.000101264051998 +UniRef50_I2ZRW4 Maltose regulon activator MalT domain protein 0.000486033462046 0.000763750099644 0.000277716637598 +UniRef50_UPI000471FD97 hypothetical protein 1.17569589233e-05 6.50708255442e-06 -5.24987636888e-06 +UniRef50_UPI0004708D1E hypothetical protein, partial 4.66630180737e-05 1.80091754091e-05 -2.86538426646e-05 +UniRef50_C3A4M2 2.94806683128e-05 0.000316679981629 0.000287199313316 +UniRef50_Q9I6G4 0.00176061521709 0.000570486930501 -0.00119012828659 +UniRef50_UPI0003B7884C ABC transporter, partial 5.77407588545e-05 4.46509388158e-05 -1.30898200387e-05 +UniRef50_E7RTI9 6.42884078815e-05 4.73284262469e-05 -1.69599816346e-05 +UniRef50_Q17WZ6 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.000337742289358 0.00240830352697 0.00207056123761 +UniRef50_Q8FTK5 GTPase Der 0.000215072761739 0.00638554106664 0.0061704683049 +UniRef50_F8LLX7 Restriction enzyme BgcI subunit alpha 5.77195701583e-05 0.00273308358704 0.00267536401688 +UniRef50_Q03024 Alkaline protease secretion ATP binding protein AprD 0.000140155688933 0.000451830836878 0.000311675147945 +UniRef50_K1Z0I8 Integral membrane protein MviN 1.03844479641e-05 5.72972818178e-06 -4.65471978232e-06 +UniRef50_A4WTG8 Methyl accepting chemotaxis sensory transducer 0.0075025241691 0.00172406183607 -0.00577846233303 +UniRef50_Q9I291 UTP glucose 1 phosphate uridylyltransferase 0.00113118770972 0.00381534734807 0.00268415963835 +UniRef50_UPI00036E1A9D hypothetical protein 7.29867649879e-05 4.63821158892e-05 -2.66046490987e-05 +UniRef50_UPI0003B744A6 3 isopropylmalate dehydrogenase, partial 9.76979808143e-05 6.82386717994e-05 -2.94593090149e-05 +UniRef50_B2TRH5 Stage 0 sporulation protein J 0.000320880170342 0.000931007452033 0.000610127281691 +UniRef50_P32710 Cytochrome c type biogenesis protein NrfE 0.00319485752797 0.000134336636173 -0.0030605208918 +UniRef50_C4ZJP0 9.29650548197e-06 5.70012137326e-05 4.77047082506e-05 +UniRef50_H8GU51 4.84598329819e-05 0.0270148656537 0.0269664058207 +UniRef50_Q5HLG5 2 dehydropantoate 2 reductase 0.0227177054231 0.00591282879499 -0.0168048766281 +UniRef50_UPI00035D0467 hypothetical protein, partial 8.91869282127e-05 0.000303130514812 0.000213943586599 +UniRef50_UPI00037FF715 hypothetical protein, partial 4.80843884675e-05 2.25801279014e-05 -2.55042605661e-05 +UniRef50_Q3JVL6 9.42464790477e-05 0.000425267659107 0.000331021180059 +UniRef50_F3AA10 4.25086823392e-05 0.000120952680004 7.84439976648e-05 +UniRef50_P0AFA0 Lipopolysaccharide export system permease protein LptF 0.00240791721303 0.000970096487667 -0.00143782072536 +UniRef50_E6UL31 Endonuclease V 0.000716557019404 0.00257366686037 0.00185710984097 +UniRef50_D3NUN5 MoxR like ATPase 0.00142095566427 0.000496391823051 -0.000924563841219 +UniRef50_UPI000287BC3E dehydrogenase 0.000181967543204 9.89025262923e-05 -8.30650169117e-05 +UniRef50_E8WHV5 Pseudouridine synthase 0.0184380855957 0.00578534865681 -0.0126527369389 +UniRef50_UPI00036DC256 MULTISPECIES 1.689186615e-05 2.53168803984e-05 8.4250142484e-06 +UniRef50_K9VRD1 Beta Ig H3 fasciclin 1.83638776293e-05 7.76113964505e-06 -1.06027379842e-05 +UniRef50_A7X6Y1 L lactate dehydrogenase 2 0.0113637896733 0.00257100424888 -0.00879278542442 +UniRef50_Q7NFA1 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 5.10865906161e-05 7.87632195402e-05 2.76766289241e-05 +UniRef50_Q92S04 Probable chemoreceptor glutamine deamidase CheD 0.000322024224996 4.90276064698e-05 -0.000272996618526 +UniRef50_A6LS08 Sigma 54 factor, interaction domain containing protein 0.00027119847468 0.00148149879002 0.00121030031534 +UniRef50_Q3AC58 Ribonuclease 3 1.6544121716e-05 3.61432717689e-05 1.95991500529e-05 +UniRef50_Q5XAQ3 Cysteine synthase 4.31447704802e-05 2.21102536439e-05 -2.10345168363e-05 +UniRef50_UPI00037792DA hypothetical protein 2.5113761249e-05 9.04688890778e-06 -1.60668723412e-05 +UniRef50_V8MVT8 0.000491110646101 0.000119192334299 -0.000371918311802 +UniRef50_A1JIY2 UPF0597 protein YE0448 0.00225620146682 0.00050327951502 -0.0017529219518 +UniRef50_Q28NP7 Outer membrane protein assembly factor BamD 0.0117342406979 0.000254218110649 -0.0114800225873 +UniRef50_A0A011PJY3 1.08699556153e-05 3.26404758599e-05 2.17705202446e-05 +UniRef50_Y8CPG9 0.0103233081845 0.00386004495548 -0.00646326322902 +UniRef50_P0AER2 Glycerol uptake facilitator protein 0.00298183911859 0.000647114433421 -0.00233472468517 +UniRef50_UPI000470D0F7 hypothetical protein 1.91968451844e-05 4.64953143023e-06 -1.45473137542e-05 +UniRef50_UPI0002626B82 polyphosphate kinase 2.09929978766e-06 4.78013359288e-05 4.57020361411e-05 +UniRef50_K9NFY1 Glutamine synthetase 0.00053914798445 0.000262811667087 -0.000276336317363 +UniRef50_K9ZXW7 Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase 0.000686742949725 0.0628162628375 0.0621295198878 +UniRef50_B9KK79 Metallophosphoesterase 0.0021281930188 0.000680060908247 -0.00144813211055 +UniRef50_F0YF94 7.90391610646e-05 7.07842138823e-05 -8.2549471823e-06 +UniRef50_Q094I2 2.02795097443e-05 2.74804662455e-06 -1.75314631197e-05 +UniRef50_F0YF93 0.00015107809751 0.00032038779653 0.00016930969902 +UniRef50_Q1MRW8 Adenylosuccinate synthetase 1.65005056636e-05 1.30462172425e-05 -3.4542884211e-06 +UniRef50_UPI00035FD138 hypothetical protein 1.44636125882e-05 7.33050379924e-06 -7.13310878896e-06 +UniRef50_R8A2V2 Glucose 6 phosphate 1 dehydrogenase 0.00312621773303 0.00567097323646 0.00254475550343 +UniRef50_F9Z2P0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.000729131821759 0.00507468031638 0.00434554849462 +UniRef50_A6W2T4 Shikimate kinase 2.14680216284e-05 1.55154426966e-05 -5.9525789318e-06 +UniRef50_A6TLP6 PfkB domain protein 0.000119836821857 0.00203441012935 0.00191457330749 +UniRef50_F3Z6R0 Putative integral membrane efflux protein 3.31942852557e-05 0.000290975365729 0.000257781080473 +UniRef50_V6DRE9 6.47158158752e-06 0.000861189093241 0.000854717511653 +UniRef50_UPI00034D4B82 hypothetical protein 3.3622882455e-06 2.00954327305e-06 -1.35274497245e-06 +UniRef50_S7S4W9 6.11350722752e-05 0.000252512296149 0.000191377223874 +UniRef50_A3M0Z0 D amino acid dehydrogenase small subunit 0.000289428171261 0.0193160652379 0.0190266370666 +UniRef50_D3D3X9 3.09973062122e-05 1.33131506811e-05 -1.76841555311e-05 +UniRef50_H3UKE3 Extracellular matrix binding protein ebh 5.35177800072e-06 7.17035546959e-06 1.81857746887e-06 +UniRef50_Q1GFQ2 ABC transporter related 0.0047798594192 0.00125408931148 -0.00352577010772 +UniRef50_S9W022 5.10678907906e-05 0.000266425526039 0.000215357635248 +UniRef50_A6LY02 Helix turn helix domain containing protein, AraC type 0.000116868727202 0.00251269304711 0.00239582431991 +UniRef50_A0AIL5 Internalin family protein 7.82278085421e-06 2.65042622654e-06 -5.17235462767e-06 +UniRef50_Q895J2 Zinc protease 0.000503034975845 0.000289572475008 -0.000213462500837 +UniRef50_R7P2I4 6.11642427956e-05 0.00348292025347 0.00342175601067 +UniRef50_I0I041 4.45654810474e-05 1.19573314289e-05 -3.26081496185e-05 +UniRef50_UPI00046CFACA hypothetical protein 2.7440232773e-05 0.000108129225208 8.0688992435e-05 +UniRef50_P00471 Thymidylate synthase 2.06647526927e-05 4.63079529341e-05 2.56432002414e-05 +UniRef50_W0ZC25 1.35968026591e-05 0.000113328227613 9.97314249539e-05 +UniRef50_F3Z8L2 6.14263179056e-05 0.0003608291896 0.000299402871694 +UniRef50_Q3J618 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.0161721799674 0.00813564202775 -0.00803653793965 +UniRef50_N0BBG7 0.000157764823439 3.26390777774e-05 -0.000125125745662 +UniRef50_D9SVN6 N5 carboxyaminoimidazole ribonucleotide mutase 0.00897809892755 0.00189442478255 -0.007083674145 +UniRef50_Q2GA52 Leucyl phenylalanyl tRNA protein transferase 3.28832742589e-05 3.60948794371e-05 3.2116051782e-06 +UniRef50_D7URR5 Cell shape determining protein MreC 0.0154879651767 0.00854406769689 -0.00694389747981 +UniRef50_A3QB39 Glucosamine 6 phosphate deaminase 6.21185281721e-06 1.80487179497e-05 1.18368651325e-05 +UniRef50_N1MJG8 Mobile element protein 0.000298110860607 0.000129563394921 -0.000168547465686 +UniRef50_P10486 Type I restriction enzyme EcoR124II R protein 8.47275942557e-05 0.00385684795796 0.0037721203637 +UniRef50_Q182T5 Bifunctional protein PyrR 4.97004879077e-05 0.000136228026481 8.65275385733e-05 +UniRef50_Q8CN80 General stress protein 26 0.0220491902999 0.0113467538626 -0.0107024364373 +UniRef50_B7IWC4 BclA protein 1.6097127488e-05 3.29208307163e-05 1.68237032283e-05 +UniRef50_Q9RSF0 Leucine tRNA ligase 0.000188076434133 0.0568513162789 0.0566632398448 +UniRef50_Q9JXK3 Serine type peptidase 8.29026316517e-05 0.00135497375587 0.00127207112422 +UniRef50_P32155 Fructose like phosphotransferase enzyme IIA component 0.00107325419803 0.0011694680335 9.621383547e-05 +UniRef50_R1DRR6 6.92360762181e-05 2.56121929279e-05 -4.36238832902e-05 +UniRef50_G5RNH3 Phosphoenolpyruvate carboxylase 0.000511531491819 6.63384586687e-05 -0.00044519303315 +UniRef50_UPI0003C14DD4 PREDICTED 6.3720968312e-06 5.00305579928e-05 4.36584611616e-05 +UniRef50_B9KS86 0.00639347783215 0.00414892201075 -0.0022445558214 +UniRef50_U6LIW8 Sybindin like family domain containing protein, putative 9.34183665324e-06 3.8565248334e-05 2.92234116808e-05 +UniRef50_W5X3E8 Methyltransferase family protein 1.30470760912e-05 5.30350133583e-05 3.99879372671e-05 +UniRef50_UPI000475A333 PA phosphatase 0.000224926556458 6.52432806778e-05 -0.00015968327578 +UniRef50_B9KS80 0.00703235595499 0.000407333386473 -0.00662502256852 +UniRef50_Q2FH51 Phosphate import ATP binding protein PstB 0.00787024600936 0.00108270900115 -0.00678753700821 +UniRef50_UPI00045EA79E hypothetical protein, partial 1.79235714263e-05 0.000121214110293 0.000103290538867 +UniRef50_Q48PX1 Glutamate cysteine ligase 0.000475791730614 0.000240891396338 -0.000234900334276 +UniRef50_UPI0002F819F8 hypothetical protein 3.12634365069e-05 0.000352962884221 0.000321699447714 +UniRef50_A0A059E2E8 0.000246163086532 0.000124995935748 -0.000121167150784 +UniRef50_W4MLS6 6.45409019781e-05 0.000189669847082 0.000125128945104 +UniRef50_B0VS92 Paraquat inducible protein 8.02024055691e-05 0.00428871463285 0.00420851222728 +UniRef50_UPI00028A3C04 FAD linked oxidase like protein, partial 0.000775731751936 0.000714475899663 -6.1255852273e-05 +UniRef50_P39805 Transcription antiterminator LicT 0.00145512233392 0.00137668687578 -7.843545814e-05 +UniRef50_Q1R7E0 0.000108576986252 0.000126745367044 1.8168380792e-05 +UniRef50_P26496 Poly polymerase 2 0.00141303140726 0.000213507059454 -0.00119952434781 +UniRef50_UPI000367451B acyl CoA dehydrogenase 4.78743894258e-06 2.37041328306e-05 1.8916693888e-05 +UniRef50_UPI0003628C72 hypothetical protein 5.21809100936e-06 7.01728386137e-06 1.79919285201e-06 +UniRef50_P44941 0.000518489289229 0.000161677799396 -0.000356811489833 +UniRef50_F8HFC0 Conserved domain protein 0.000371297693954 0.00133630840149 0.000965010707536 +UniRef50_UPI0003B3ED87 hypothetical protein 0.000953143210034 0.000558704644371 -0.000394438565663 +UniRef50_E8SRI9 0.000407912024397 0.00259786560303 0.00218995357863 +UniRef50_A6VD60 N acetylmuramoyl L alanine amidase 0.000355382828736 0.000125222631175 -0.000230160197561 +UniRef50_A7ZZW4 Porin, autotransporter family 6.22032132315e-05 9.43015851861e-05 3.20983719546e-05 +UniRef50_UPI00035F5AB5 hypothetical protein 1.34190554654e-06 6.75895101381e-06 5.41704546727e-06 +UniRef50_Q5HLZ6 0.00293215270654 0.0012478170642 -0.00168433564234 +UniRef50_UPI00035EE7D2 hypothetical protein 2.363075033e-05 5.09463641842e-06 -1.85361139116e-05 +UniRef50_P76350 Shikimate transporter 0.00228881105161 0.000685347587023 -0.00160346346459 +UniRef50_A0A023RZ85 Acyltransferase 0.000225140748821 0.0053679891519 0.00514284840308 +UniRef50_O67505 Enoyl [acyl carrier protein] reductase [NADH] FabI 1.4607661015e-05 5.96734323828e-05 4.50657713678e-05 +UniRef50_Q1II13 Lipoyl synthase 4.97205632845e-06 2.73497131206e-05 2.23776567922e-05 +UniRef50_U5SRV6 Integrase 0.00090916436775 2.06787907482e-05 -0.000888485577002 +UniRef50_UPI0002F99873 hypothetical protein 7.52879708649e-05 8.34725419364e-05 8.1845710715e-06 +UniRef50_B1GZG8 Polyribonucleotide nucleotidyltransferase 2.30560306413e-06 3.80074383713e-05 3.57018353072e-05 +UniRef50_G8V046 Abi like family protein 0.00835641333997 0.00104839086085 -0.00730802247912 +UniRef50_A3ZYM8 Nicotinamide nucleotide transhydrogenase, subunit alpha 1.10398154318e-05 1.89988615123e-05 7.9590460805e-06 +UniRef50_A5VJ31 Phospho N acetylmuramoyl pentapeptide transferase 6.74440336122e-06 0.00204020552325 0.00203346111989 +UniRef50_UPI00034DE442 hypothetical protein 3.9097075572e-05 0.00452408141216 0.00448498433659 +UniRef50_A4W1C0 Predicted Rossmann fold nucleotide binding protein involved in DNA uptake 0.00539156754003 0.00656411191415 0.00117254437412 +UniRef50_A6LV77 Binding protein dependent transport systems inner membrane component 0.000156416846208 0.00139052893388 0.00123411208767 +UniRef50_Q2YV12 PTS system EIIBC component SAB0132 0.021023638325 0.00870503714079 -0.0123186011842 +UniRef50_Q8YYY4 All0708 protein 0.000212885467771 8.38575360774e-05 -0.000129027931694 +UniRef50_K2ALU5 3.91705537255e-06 0.00142303603638 0.00141911898101 +UniRef50_UPI00047EB60C hypothetical protein 5.72361017808e-05 2.95780504924e-05 -2.76580512884e-05 +UniRef50_H1QFS1 Thiamine biosynthesis protein ThiC 2.1938479151e-05 6.51561855976e-05 4.32177064466e-05 +UniRef50_UPI00036E98A9 hypothetical protein 1.03885614478e-05 6.39887312116e-06 -3.98968832664e-06 +UniRef50_UPI00036F5F0F hypothetical protein 2.7394400557e-06 4.92754466736e-06 2.18810461166e-06 +UniRef50_UPI000404FF04 hypothetical protein 3.08754379598e-06 2.25302279305e-05 1.94426841345e-05 +UniRef50_P37440 Oxidoreductase UcpA 0.0054153728881 0.00150233736391 -0.00391303552419 +UniRef50_R6ZPD9 0.00677923950005 0.00491091209574 -0.00186832740431 +UniRef50_D6B3U1 Short chain dehydrogenase 0.000181774954504 0.00283994053042 0.00265816557592 +UniRef50_B9KNU0 Helicase 0.000319903380388 0.000473770115279 0.000153866734891 +UniRef50_I6U2T1 Polyketide synthase 0.00577455840596 0.00144824836425 -0.00432631004171 +UniRef50_A0ADL6 Putative iron sulfur protein 5.07174074505e-05 0.000631331941209 0.000580614533758 +UniRef50_F2AG83 0.00018977159471 0.000817257867503 0.000627486272793 +UniRef50_UPI00037E75DF histidine kinase, partial 0.00284505651714 0.00174441730222 -0.00110063921492 +UniRef50_G4YB17 4.70258307442e-06 2.24652926066e-05 1.77627095322e-05 +UniRef50_E0N9M8 0.000626131496841 0.000458147135763 -0.000167984361078 +UniRef50_P0AB72 Fructose bisphosphate aldolase class 2 0.00378322417834 0.000493273927992 -0.00328995025035 +UniRef50_D7GD43 Deoxyguanosinetriphosphate triphosphohydrolase 0.000525546411233 0.00660908776213 0.0060835413509 +UniRef50_G0HCK4 3.58224928212e-06 4.55392289206e-05 4.19569796385e-05 +UniRef50_Q5HKT7 0.0216374404631 0.00529847990038 -0.0163389605627 +UniRef50_C5N3T1 0.00897661188533 0.00166933286249 -0.00730727902284 +UniRef50_UPI0002BBFDEB hypothetical protein 6.24591617212e-05 4.11716574579e-05 -2.12875042633e-05 +UniRef50_UPI00035D07EB hypothetical protein 4.49479173686e-06 1.74029835511e-05 1.29081918142e-05 +UniRef50_UPI00016A9C60 major facilitator family transporter, partial 8.42368939224e-06 1.50562473805e-05 6.63255798826e-06 +UniRef50_C5N3T8 0.00729184147672 0.000942500122969 -0.00634934135375 +UniRef50_D4HAP5 Transcriptional regulatory protein, C terminal domain protein 0.000536709936758 0.00106967040494 0.000532960468182 +UniRef50_Q9CET9 Prephenate dehydrogenase 8.10984246014e-06 3.84845746202e-06 -4.26138499812e-06 +UniRef50_UPI000316C479 histidine ammonia lyase 5.06609875226e-06 8.08897763226e-05 7.58236775703e-05 +UniRef50_P06612 DNA topoisomerase 1 0.00349475483362 0.00747985834648 0.00398510351286 +UniRef50_UPI00029A4174 ABC transporter ATP binding protein 1.68667053234e-05 9.6584792319e-06 -7.2082260915e-06 +UniRef50_P57699 Potassium transporting ATPase B chain 9.35950550024e-06 0.0016336054402 0.0016242459347 +UniRef50_I0C7Y1 Arginine repressor 0.00459183311569 0.00251631113437 -0.00207552198132 +UniRef50_L7WV22 4.26525117713e-05 6.80119551092e-05 2.53594433379e-05 +UniRef50_UPI0003B500DF ribosomal large subunit pseudouridine synthase C 1.89887291712e-05 7.49621047186e-05 5.59733755474e-05 +UniRef50_G2TQW7 Phosphotransferase system PTS sorbose specific IIC subunit 0.000238915182824 0.00144446736115 0.00120555217833 +UniRef50_A6LU65 Methyl accepting chemotaxis sensory transducer 0.00116399664264 0.00105391538354 -0.0001100812591 +UniRef50_Q3J3Y0 0.0137870328616 0.00144316847222 -0.0123438643894 +UniRef50_W7BZR4 4.5227939446e-05 0.000101906148032 5.6678208586e-05 +UniRef50_Q02137 Acetolactate synthase large subunit 0.0182537510425 0.00359286795449 -0.014660883088 +UniRef50_E4HVL3 YD repeat protein 0.000337041061476 0.00304144366761 0.00270440260613 +UniRef50_P19931 Hydrogenase 1 operon protein HyaE 0.0127630668451 0.00444756432589 -0.00831550251921 +UniRef50_UPI000378C27D hypothetical protein 7.09333524536e-06 3.3841638734e-05 2.67483034886e-05 +UniRef50_B8D1K5 ATP dependent 6 phosphofructokinase 2.39707260798e-05 1.86394317985e-05 -5.3312942813e-06 +UniRef50_UPI000382BE75 hypothetical protein 7.02483270442e-06 3.44558736015e-05 2.74310408971e-05 +UniRef50_UPI0003675045 ABC transporter substrate binding protein, partial 0.000129395736412 1.44321772973e-05 -0.000114963559115 +UniRef50_Q9RSM8 Endopeptidase IV related protein 9.25210757045e-05 0.00938826557001 0.00929574449431 +UniRef50_B7LSY4 0.000555126454193 0.000868578544689 0.000313452090496 +UniRef50_Q9CKJ2 L threonine dehydratase biosynthetic IlvA 1.73510491816e-05 2.38083568351e-05 6.4573076535e-06 +UniRef50_A0A022CKG6 9.82600088995e-05 0.00686595573602 0.00676769572712 +UniRef50_P0ACY5 0.00428644086102 0.00202858248083 -0.00225785838019 +UniRef50_R1F809 0.000216484833159 0.000234521922266 1.8037089107e-05 +UniRef50_B4U058 ComG operon protein 6 0.00608943842376 0.0027915956023 -0.00329784282146 +UniRef50_UPI00047620B0 SAM dependent methyltransferase 2.70355211621e-05 2.01355413933e-05 -6.8999797688e-06 +UniRef50_UPI00047183CB MFS transporter 4.31449464414e-06 7.38389117094e-06 3.0693965268e-06 +UniRef50_M1M9U7 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.000963563047049 0.00102530598105 6.1742934001e-05 +UniRef50_F0N593 Transcriptional regulator, AraC family 0.000118706285809 0.00155821497554 0.00143950868973 +UniRef50_J9NX06 2.77554231966e-05 1.31843849903e-05 -1.45710382063e-05 +UniRef50_Q04R37 Pyridoxine pyridoxamine 5 phosphate oxidase 7.44961960154e-06 9.74130718131e-05 8.99634522116e-05 +UniRef50_A0A020HGX4 0.000315062796313 6.06898327703e-05 -0.000254372963543 +UniRef50_Q06473 Cytochrome c oxidase subunit 1 3.09093765927e-05 1.48315340541e-05 -1.60778425386e-05 +UniRef50_K7RQC1 Amino acid or sugar ABC transport system, permease protein 0.000295809976439 0.00402565066785 0.00372984069141 +UniRef50_P07251 ATP synthase subunit alpha, mitochondrial 3.77122466069e-06 1.01922977186e-05 6.42107305791e-06 +UniRef50_K1C2I8 0.000495970707103 2.45669966279e-05 -0.000471403710475 +UniRef50_UPI000383E572 0.000588446714186 0.000703135012379 0.000114688298193 +UniRef50_UPI00037611BB hypothetical protein, partial 1.05334996469e-05 1.34057154757e-05 2.8722158288e-06 +UniRef50_B7UXU5 Homologous to beta keto acyl acyl carrier protein synthase 0.000566905531537 0.000172029148656 -0.000394876382881 +UniRef50_B0VV71 0.000138442294196 0.0136793413741 0.0135408990799 +UniRef50_D3E1B0 0.00215947299551 0.000436315164312 -0.0017231578312 +UniRef50_UPI00044349DC PREDICTED 0.00018347800315 0.000187370153073 3.892149923e-06 +UniRef50_F5XE67 UTP glucose 1 phosphate uridylyltransferase 0.000180436896891 0.00417632150567 0.00399588460878 +UniRef50_A7FAZ2 0.000353924589576 0.0100950231556 0.00974109856602 +UniRef50_Q47158 0.00202667483436 0.000814901208814 -0.00121177362555 +UniRef50_UPI0002000B64 antigen penicillin binding protein, partial 6.05063382824e-05 3.05470589451e-05 -2.99592793373e-05 +UniRef50_P37940 2 oxoisovalerate dehydrogenase subunit alpha 0.00946781057598 0.00310497870178 -0.0063628318742 +UniRef50_A6LRN8 Ribosomal protein L11 methyltransferase 0.000120218467792 0.00116480138946 0.00104458292167 +UniRef50_Q9KQH7 3 oxoacyl [acyl carrier protein] reductase FabG 0.00198383928536 0.0138883337855 0.0119044945001 +UniRef50_S9Q6A0 6.84346628827e-06 1.3970785959e-05 7.12731967073e-06 +UniRef50_UPI0003B3866E hypothetical protein 1.86541014542e-05 3.0843389201e-05 1.21892877468e-05 +UniRef50_X6HEY2 2.68428930064e-05 2.85100372737e-05 1.6671442673e-06 +UniRef50_A5G0R5 Polyhydroxyalkonate synthesis repressor, PhaR 3.3241252976e-05 1.03331811693e-05 -2.29080718067e-05 +UniRef50_R4ZBL9 Cro Cl family transcriptional regulator 0.000250543797907 0.000644638687976 0.000394094890069 +UniRef50_UPI0003B54D0C hypothetical protein 2.12599264863e-06 0.00128924004324 0.00128711405059 +UniRef50_H8H715 0.00023759807224 0.00532154663681 0.00508394856457 +UniRef50_Q3IVM9 Bacteriophage protein gp37 0.00583826168783 0.00117747944019 -0.00466078224764 +UniRef50_B7UXM6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.00029142976758 0.000611207066372 0.000319777298792 +UniRef50_Q6F8A1 Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase) 0.000143530794236 0.00750666565866 0.00736313486442 +UniRef50_P58740 Undecaprenyl diphosphatase 1 0.00733814090902 0.000239834579225 -0.00709830632979 +UniRef50_P18275 Arginine ornithine antiporter 0.000867813967949 0.000375652305693 -0.000492161662256 +UniRef50_UPI0003AB78DA PREDICTED 0.000161245912958 0.000101935041895 -5.9310871063e-05 +UniRef50_UPI000380609D hypothetical protein 8.92280642614e-05 0.000130690972798 4.14629085366e-05 +UniRef50_UPI0004715FA9 hypothetical protein 9.76727475219e-05 0.000175958515938 7.82857684161e-05 +UniRef50_Q7MP85 4 hydroxythreonine 4 phosphate dehydrogenase 0.0017757419229 0.00926628884416 0.00749054692126 +UniRef50_UPI00037E8BAF cell envelope biogenesis protein TonB, partial 5.91093917794e-05 5.15297484259e-05 -7.5796433535e-06 +UniRef50_A6LRY0 0.000260467644753 0.00121531400606 0.000954846361307 +UniRef50_A3PPF7 0.00188119675583 0.000389519309542 -0.00149167744629 +UniRef50_G7MD13 Cell wall binding repeat containing protein 0.000549895586566 0.000479115938453 -7.0779648113e-05 +UniRef50_UPI000478557C carbon monoxide dehydrogenase 9.04413972119e-05 7.48029729103e-05 -1.56384243016e-05 +UniRef50_B2RKJ1 NAD specific glutamate dehydrogenase 0.0125424250654 0.0218666685197 0.0093242434543 +UniRef50_UPI000237AD1B aldehyde dehydrogenase 5.47673103459e-06 7.90669588018e-06 2.42996484559e-06 +UniRef50_D2N4B3 Ribosomal protein serine N acetyltransferase 0.0203915143028 0.00413540880737 -0.0162561054954 +UniRef50_D3R7P0 Queuine tRNA ribosyltransferase 0.000322364335723 0.00558184202023 0.00525947768451 +UniRef50_Q4L8F8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0273878041441 0.00537498131452 -0.0220128228296 +UniRef50_F3Y5B2 Putative fluoride ion transporter CrcB 4.64198979205e-05 3.88054017154e-05 -7.6144962051e-06 +UniRef50_Q3IVD1 3 oxoadipate enol lactonase 0.00441496941689 0.00135887031112 -0.00305609910577 +UniRef50_X5F4R0 0.00379324233336 0.00146438035634 -0.00232886197702 +UniRef50_UPI0004636ECE hypothetical protein 0.000209386709031 0.00012569312457 -8.3693584461e-05 +UniRef50_C6S6X2 Gamma glutamyltranspeptidase 0.000341155720662 0.0032292752057 0.00288811948504 +UniRef50_Q49Y11 Cytidine deaminase 0.0118382093491 0.000898626558672 -0.0109395827904 +UniRef50_P38051 Menaquinone specific isochorismate synthase 0.00267667547568 0.000565095116097 -0.00211158035958 +UniRef50_D4H9R3 YjeF domain protein 0.000275194618029 0.00373096243432 0.00345576781629 +UniRef50_UPI00035965D6 PREDICTED 7.43026692316e-05 2.48392921378e-05 -4.94633770938e-05 +UniRef50_A0A011PJV1 Dihydrofolate reductase 1.14782154589e-05 6.87603095704e-05 5.72820941115e-05 +UniRef50_Q9RTK3 0.000216945970609 0.0466683950739 0.0464514491033 +UniRef50_A1WST0 Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding 4.8333673348e-05 0.00165824350589 0.00160990983254 +UniRef50_O33655 Lactate 2 monooxygenase 2.16823602716e-05 0.00125427085928 0.00123258849901 +UniRef50_J3BE74 Metallo beta lactamase superfamily enzyme 0.000190335031064 3.58392100569e-05 -0.000154495821007 +UniRef50_UPI0001745109 peptide ABC transporter permease 4.32249417887e-05 2.95853640993e-05 -1.36395776894e-05 +UniRef50_Q89AT8 NADH quinone oxidoreductase subunit J 1.82704594843e-05 2.95249777038e-05 1.12545182195e-05 +UniRef50_Q9RZK0 0.000378748483804 0.00625384889509 0.00587510041129 +UniRef50_F4FQW3 Recombinational DNA repair protein RecT 0.0176772474001 0.0031979146898 -0.0144793327103 +UniRef50_Q8YIY0 Phosphoglycerate kinase 0.00480601230375 0.000956686164383 -0.00384932613937 +UniRef50_UPI0004258808 hypothetical protein 1.52245565301e-06 8.5240506919e-06 7.00159503889e-06 +UniRef50_UPI000225F0D6 hypothetical protein 6.66327452548e-06 0.000735228311697 0.000728565037172 +UniRef50_UPI000362EC3A hypothetical protein 5.21964361489e-05 1.3820252403e-05 -3.83761837459e-05 +UniRef50_Q17XQ8 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000286808815281 0.00649398675032 0.00620717793504 +UniRef50_Q9RSF5 Drug transport protein 0.000181283923867 0.02800437642 0.0278230924961 +UniRef50_UPI0003B73A04 AsnC family transcriptional regulator 0.000237792613004 6.48074969304e-05 -0.000172985116074 +UniRef50_UPI00035D1A94 hypothetical protein 0.000181559160811 3.04466972403e-05 -0.000151112463571 +UniRef50_Q6APZ3 Prolipoprotein diacylglyceryl transferase 2.44203682889e-05 1.40973977457e-05 -1.03229705432e-05 +UniRef50_R7N4H0 Pyridine nucleotide disulfide oxidoreductase 0.00032310301134 0.000914172891312 0.000591069879972 +UniRef50_A9WA88 Xanthine phosphoribosyltransferase 1.37793206945e-05 3.01307503126e-05 1.63514296181e-05 +UniRef50_B3E7C1 5.03082333324e-05 1.9323718653e-05 -3.09845146794e-05 +UniRef50_D8U7R0 9.49365771667e-06 1.11125673445e-05 1.61890962783e-06 +UniRef50_Q9ZJ75 Ribulose phosphate 3 epimerase 1.66035744343e-05 0.00231493607223 0.0022983324978 +UniRef50_Q3J229 0.0126149558799 0.00439772592246 -0.00821722995744 +UniRef50_Q3J227 0.0292566891742 0.000482806602495 -0.0287738825717 +UniRef50_UPI00038131B7 hypothetical protein 1.0023417839e-05 1.38110033496e-05 3.7875855106e-06 +UniRef50_UPI0001F85C49 biotin synthase like protein 2.48935217411e-05 4.38051141605e-05 1.89115924194e-05 +UniRef50_M4ZJP4 0.000117474892792 0.00139895567705 0.00128148078426 +UniRef50_G7U4I0 Uroporphyrinogen III synthase 0.000370760693428 0.00478929559332 0.00441853489989 +UniRef50_M1NMK8 1.46499384341e-05 8.34672844958e-05 6.88173460617e-05 +UniRef50_X0U0K9 Marine sediment metagenome DNA, contig 9.19524785138e-06 0.00270521399083 0.00269601874298 +UniRef50_Q3JUG7 Xanthine uracil permease family protein 0.0009215419328 0.00994122766295 0.00901968573015 +UniRef50_UPI0002627BB0 50S ribosomal protein L15, partial 0.000179456420581 0.000603213224877 0.000423756804296 +UniRef50_R9SMQ4 Phosphate ABC transporter permease protein PstA 0.000834233270323 0.00126105161592 0.000426818345597 +UniRef50_K0T1H0 7.25005100276e-05 2.11926619617e-05 -5.13078480659e-05 +UniRef50_K0WK29 0.000779260799929 0.00509042750724 0.00431116670731 +UniRef50_A4WTM8 0.00149837666892 0.000117168609764 -0.00138120805916 +UniRef50_A1BAY3 2.89063807021e-05 1.55651349652e-05 -1.33412457369e-05 +UniRef50_Q3IZ78 Mesaconyl CoA hydratase 0.00573205588246 0.00159479613416 -0.0041372597483 +UniRef50_P19366 ATP synthase subunit beta, chloroplastic 1.9666321806e-05 4.51583984968e-05 2.54920766908e-05 +UniRef50_P49189 4 trimethylaminobutyraldehyde dehydrogenase 8.71099199654e-06 1.18016311535e-05 3.09063915696e-06 +UniRef50_UPI0003627DD4 30S ribosomal protein S4 5.28344492532e-05 3.64703627265e-05 -1.63640865267e-05 +UniRef50_UPI000455E0E7 ribosomal protein S12 6.22918789034e-05 7.00941753509e-05 7.8022964475e-06 +UniRef50_F2I9T6 Endoribonuclease L PSP 0.000156375456285 6.00301912227e-05 -9.63452650623e-05 +UniRef50_UPI000370459E hypothetical protein, partial 8.18503056861e-06 0.000704640774292 0.000696455743723 +UniRef50_Q03SV2 Ribose 5 phosphate isomerase A 0.00352133774432 0.00086749659062 -0.0026538411537 +UniRef50_UPI0002EFA82A nucleoside triphosphate pyrophosphohydrolase 8.65653773257e-06 6.02953775856e-06 -2.62699997401e-06 +UniRef50_Q9Z670 Gluconate permease 1.45790358184e-05 1.31290205501e-05 -1.4500152683e-06 +UniRef50_UPI00036A5335 CRISPR associated protein Csd1, partial 0.000709507604288 0.000386541654168 -0.00032296595012 +UniRef50_K0S333 2.47427271148e-05 8.58985428236e-06 -1.61528728324e-05 +UniRef50_A3T0X3 0.000163630822506 0.000182507353108 1.8876530602e-05 +UniRef50_Q21VW6 NADPH dependent 7 cyano 7 deazaguanine reductase 9.69594158272e-06 0.000280363960626 0.000270668019043 +UniRef50_A7ZQ55 NAD kinase 0.00275759212725 0.00110914761965 -0.0016484445076 +UniRef50_A6LZN3 Hydrogenase accessory protein HypB 0.00228151517949 0.000559695659009 -0.00172181952048 +UniRef50_Q2FJN4 Alkyl hydroperoxide reductase subunit C 0.00919021265587 0.00278387878248 -0.00640633387339 +UniRef50_UPI0004658AD9 saccharopine dehydrogenase 4.82890507104e-05 0.000254659291322 0.000206370240612 +UniRef50_UPI0003F63AFE GntR family transcriptional regulator 3.27638487637e-06 4.90224030191e-06 1.62585542554e-06 +UniRef50_V8FYN5 CoA activase 0.000340082618917 0.00145180639083 0.00111172377191 +UniRef50_E3D490 0.000672386425058 0.00354651672606 0.002874130301 +UniRef50_Q2FH66 Indole 3 glycerol phosphate synthase 0.017500966047 0.00569041151961 -0.0118105545274 +UniRef50_B7V4W8 0.000712657001806 0.00117375640368 0.000461099401874 +UniRef50_Q53135 Chemotaxis protein CheA 0.0128211307401 0.00467647995935 -0.00814465078075 +UniRef50_A5IVV5 Sortase family protein 0.0205420931422 0.00453185729897 -0.0160102358432 +UniRef50_E9JFX9 Dimethyl sulfide monooxygenase 0.000683977558455 0.0086723544519 0.00798837689345 +UniRef50_C4K6C1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.0152517677422 0.00132444778914 -0.0139273199531 +UniRef50_B4R8Q8 Peptidyl tRNA hydrolase 5.11134021247e-05 3.22681257508e-05 -1.88452763739e-05 +UniRef50_P29968 Putative dehydrogenase XoxF 0.0118453384729 0.00237847082998 -0.00946686764292 +UniRef50_U4V1U2 0.00633472291306 0.000387423167729 -0.00594729974533 +UniRef50_Q74I62 Putative ABC transporter ATP binding protein LJ_1704 0.00723965592388 0.00235200600469 -0.00488764991919 +UniRef50_D4MDT9 3.15002144198e-05 0.000626113155893 0.000594612941473 +UniRef50_Q60177 Proteasome subunit alpha 0.00200234204499 0.000239769990679 -0.00176257205431 +UniRef50_Q2FS70 30S ribosomal protein S7 0.00356484645398 0.000525786418738 -0.00303906003524 +UniRef50_P44432 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.00334713666784 0.0053045623206 0.00195742565276 +UniRef50_P28274 CTP synthase 1 5.24020755106e-06 0.000110182567853 0.000104942360302 +UniRef50_A6LZD7 Flavin reductase domain protein, FMN binding 0.000199026004668 0.00101165996604 0.000812633961372 +UniRef50_W8W2G5 0.000105165722563 0.00057035452857 0.000465188806007 +UniRef50_C6XI98 Fe S metabolism associated SufE 9.45299442955e-05 1.78229946224e-05 -7.67069496731e-05 +UniRef50_P33352 0.00223248240016 0.000508538814678 -0.00172394358548 +UniRef50_P33353 0.00251378733583 0.000729354687196 -0.00178443264863 +UniRef50_F8JL19 4.4952903581e-06 0.000462145704483 0.000457650414125 +UniRef50_G7ZSB9 Nucleoside permease 0.0205288050156 0.00598075778161 -0.014548047234 +UniRef50_UPI0003676E77 hypothetical protein 1.50654716095e-05 2.43731711017e-05 9.3076994922e-06 +UniRef50_B7LSZ0 Cytoplasmic trehalase 0.00318869190526 0.00152090322351 -0.00166778868175 +UniRef50_W1MRE5 General secretion pathway protein D 0.000242676423441 0.000293763150069 5.1086726628e-05 +UniRef50_Q1NCJ9 3.79238905892e-05 5.13775231482e-05 1.3453632559e-05 +UniRef50_O34481 ATP dependent RecD like DNA helicase 1.20263455103e-05 0.000902363051583 0.000890336706073 +UniRef50_I1QUN8 0.000226823941402 8.75678654467e-06 -0.000218067154857 +UniRef50_D6EJV1 Transcriptional regulatory protein 4.53291282004e-05 0.000116149010866 7.08198826656e-05 +UniRef50_Q8E7K5 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0030708834998 0.00330322027954 0.00023233677974 +UniRef50_M4QZK0 Alpha beta hydrolase family protein 0.000296661826224 0.00741991463758 0.00712325281136 +UniRef50_UPI000262F232 cytochrome c oxidase subunit I, partial 0.000155931085724 0.00055506090193 0.000399129816206 +UniRef50_P61429 Periplasmic [NiFe] hydrogenase small subunit 2 6.37963548497e-05 1.89667285623e-05 -4.48296262874e-05 +UniRef50_H7CVU9 FliB family protein 0.000205602390439 0.00147753393576 0.00127193154532 +UniRef50_U5MR93 Sensor histidine kinase YvrG 0.000463777779289 0.00111517935784 0.000651401578551 +UniRef50_M9VFE8 Low molecular weight phosphotyrosine protein phosphatase 0.000275537218136 0.00787924822684 0.0076037110087 +UniRef50_A3LER3 0.00441446232265 0.00100676149498 -0.00340770082767 +UniRef50_F1UR15 BNR Asp box repeat protein 0.000226491593311 0.00267074677529 0.00244425518198 +UniRef50_Q5FQE8 Leucyl phenylalanyl tRNA protein transferase 1.89966206479e-05 5.67102383896e-05 3.77136177417e-05 +UniRef50_D9SN85 Glutathione peroxidase 0.000475856278317 0.00130645942102 0.000830603142703 +UniRef50_H2CHQ0 Magnesium protoporphyrin chelatase 1.15894856147e-05 0.000109151275654 9.75617900393e-05 +UniRef50_R6QPN1 MaoC domain containing protein 3.43644226243e-05 3.4959274639e-05 5.948520147e-07 +UniRef50_UPI000378EE65 hypothetical protein 0.000157251568903 2.23593159626e-05 -0.00013489225294 +UniRef50_A0A023RUE3 0.000301988791085 0.00315417711711 0.00285218832602 +UniRef50_Q3J1F8 0.000410310857448 0.00197510419034 0.00156479333289 +UniRef50_Q3J1F7 0.0208445033174 0.00976986721725 -0.0110746361001 +UniRef50_Q3J1F6 0.00315502747031 0.00137635270273 -0.00177867476758 +UniRef50_U5T8A8 9.94971920716e-06 4.05608903942e-05 3.0611171187e-05 +UniRef50_K0HDE0 tRNA rRNA cytosine C5 methylase 0.000372333068099 0.00541006285113 0.00503772978303 +UniRef50_A8AMK7 0.000762632540255 0.0010227035599 0.000260071019645 +UniRef50_B2TKI7 Serine type D Ala D Ala carboxypeptidase 0.000102299725981 0.00123582843999 0.00113352871401 +UniRef50_UPI000474D5BE ABC transporter substrate binding protein 6.25768387806e-06 9.45205436108e-06 3.19437048302e-06 +UniRef50_P20966 PTS system fructose specific EIIBC component 0.00209107048136 0.00736726751083 0.00527619702947 +UniRef50_Q6AFY0 Glutamate 5 kinase 6.1677719135e-06 2.65550382283e-05 2.03872663148e-05 +UniRef50_W1DU15 4.65667300084e-05 3.38951472329e-05 -1.26715827755e-05 +UniRef50_Q9TM10 1,4 Dihydroxy 2 naphthoyl CoA synthase 3.28202013443e-05 0.00178517585979 0.00175235565845 +UniRef50_UPI0004704F45 hypothetical protein, partial 0.00127064575081 0.000141957669611 -0.0011286880812 +UniRef50_Q4L3X4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0149898624179 0.00271817457813 -0.0122716878398 +UniRef50_W8RT27 Cation transport protein chaC 0.00227651293274 0.00044485747603 -0.00183165545671 +UniRef50_P9WPD4 Citrate synthase 1 0.0113707570175 0.0167683093421 0.0053975523246 +UniRef50_A9U864 Predicted protein 4.04835219587e-05 2.16077389641e-05 -1.88757829946e-05 +UniRef50_A3MR63 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000262084502793 0.00344372305919 0.0031816385564 +UniRef50_I0C5H5 0.0221089196473 0.00369081817815 -0.0184181014691 +UniRef50_A7MHJ0 Multidrug resistance protein MdtC 0.000326253936736 6.54079081232e-05 -0.000260846028613 +UniRef50_Q9ZKU4 Phosphate acetyltransferase 8.3957196985e-05 0.00176656159321 0.00168260439622 +UniRef50_A6M1S0 Glycoside hydrolase, clan GH D 0.000228178381989 0.00191982715527 0.00169164877328 +UniRef50_Q6AA51 L fucose isomerase 0.000215706279348 0.00417994543444 0.00396423915509 +UniRef50_UPI000299F06B amino acid carrier protein 2.85858601498e-06 0.000344522100366 0.000341663514351 +UniRef50_UPI0003FD6D14 preprotein translocase subunit SecY 3.66921986831e-06 0.000323183384054 0.000319514164186 +UniRef50_Q3KE48 Macrolide export ATP binding permease protein MacB 2 2.63709742845e-06 5.44853369273e-06 2.81143626428e-06 +UniRef50_UPI00037DAE2C hypothetical protein 0.000114269289755 6.06010743363e-05 -5.36682154187e-05 +UniRef50_UPI00044207B4 PREDICTED 1.40318390029e-05 2.50539843762e-05 1.10221453733e-05 +UniRef50_UPI000427E2A8 MULTISPECIES 5.1160787201e-06 1.93947936289e-05 1.42787149088e-05 +UniRef50_D2J8Q0 0.0273548738913 0.00492647470874 -0.0224283991826 +UniRef50_UPI00047CFA7B transcriptional regulatory protein LPC_0711 1.23483993087e-05 2.70832667065e-05 1.47348673978e-05 +UniRef50_D2J8Q4 0.0234684508688 0.0124695349464 -0.0109989159224 +UniRef50_A0A023X187 Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain 0.00973972226156 0.00414868564779 -0.00559103661377 +UniRef50_UPI00035F5A7F MULTISPECIES 0.00021572836793 7.54532659831e-05 -0.000140275101947 +UniRef50_Q97LP2 Putative gluconeogenesis factor 0.000388762706854 0.00303045189421 0.00264168918736 +UniRef50_P25130 0.00540355463117 0.00394615334061 -0.00145740129056 +UniRef50_K7SFI0 MMPL family protein 9.37474133492e-05 0.00428479540653 0.00419104799318 +UniRef50_UPI0003B3F8CA cysteine desulfurase 6.8598991231e-05 6.35554557128e-06 -6.22434456597e-05 +UniRef50_UPI000455DBA8 alcohol oxidase 9.08362744899e-06 3.81624592824e-06 -5.26738152075e-06 +UniRef50_F2I8T3 PTS system mannose fructose sorbose family IID component 0.000427266965028 0.00107137923123 0.000644112266202 +UniRef50_E5QSU8 Transcriptional regulator, AraC family 0.00903538083312 0.00170685068881 -0.00732853014431 +UniRef50_A0A011QY39 3 isopropylmalate dehydrogenase 2.13506550549e-05 4.0241419582e-05 1.88907645271e-05 +UniRef50_A3V9P5 1.61520221422e-05 3.22505371603e-05 1.60985150181e-05 +UniRef50_UPI0003C140C5 PREDICTED 4.86692983414e-05 1.88666389327e-05 -2.98026594087e-05 +UniRef50_Q56200 UPF0045 protein in glkA 3region 0.00349552586281 0.00148899179089 -0.00200653407192 +UniRef50_P43340 0.00546998098416 0.00125325329887 -0.00421672768529 +UniRef50_Q03638 Glutamine dependent NAD synthetase 0.0034038778168 0.00120856425564 -0.00219531356116 +UniRef50_X1F3U5 Marine sediment metagenome DNA, contig 1.49113208648e-05 4.18034837332e-06 -1.07309724915e-05 +UniRef50_UPI00035E72A3 hypothetical protein 7.52799755192e-05 7.73908187746e-05 2.1108432554e-06 +UniRef50_Q1LT55 Threonylcarbamoyl AMP synthase 0.00219234459655 0.000425937555561 -0.00176640704099 +UniRef50_X1SY05 Marine sediment metagenome DNA, contig 0.000341847846401 0.000127314394853 -0.000214533451548 +UniRef50_Q12EY5 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.64825334368e-05 5.35633793892e-05 -1.29191540476e-05 +UniRef50_I6T636 MutG 0.00500147752383 0.00104286629288 -0.00395861123095 +UniRef50_D7DI05 1.18529861155e-05 0.000113447712445 0.000101594726329 +UniRef50_S5YTV6 TRAP type C4 dicarboxylate transport system, periplasmic component 0.0133092081594 0.00537253844266 -0.00793666971674 +UniRef50_UPI0002EB61A9 hypothetical protein 1.24129652105e-05 6.26385048384e-05 5.02255396279e-05 +UniRef50_J9YRQ7 ABC transporter ATP binding protein 0.000240948503526 0.000782164227135 0.000541215723609 +UniRef50_A8AVU5 Cell cycle protein GpsB 0.00166450129044 0.00204299602631 0.00037849473587 +UniRef50_UPI0002887069 aldehyde dehydrogenase 2.04492784773e-05 5.6382479142e-06 -1.48110305631e-05 +UniRef50_B1XZ42 40 residue YVTN family beta propeller repeat protein 5.34439096609e-06 9.18979337018e-06 3.84540240409e-06 +UniRef50_F9Y8T0 2.59859155757e-05 8.18775957644e-05 5.58916801887e-05 +UniRef50_E4N2K8 5.05809124277e-05 1.0865013728e-05 -3.97158986997e-05 +UniRef50_K7WGH8 0.000185885899069 2.81399618593e-05 -0.00015774593721 +UniRef50_UPI00041077BF hypothetical protein 0.000103339225354 2.57742082024e-05 -7.75650171516e-05 +UniRef50_I6R4V1 Putative outer membrane protein 1.71386461242e-05 5.22012740727e-05 3.50626279485e-05 +UniRef50_Q3SF48 DEAD DEAH box helicase 8.92401864878e-05 0.00292054196691 0.00283130178042 +UniRef50_W6RFV5 0.000205505349017 9.64489166481e-05 -0.000109056432369 +UniRef50_D3PQJ8 Thioesterase superfamily protein 1.2651837593e-05 0.00232909892151 0.00231644708392 +UniRef50_P39852 Putative tyrosine protein phosphatase CapC 0.0228677104357 0.00538371027409 -0.0174840001616 +UniRef50_Q1JBZ2 Xaa His dipeptidase 0.0048986855135 0.00573969953438 0.00084101402088 +UniRef50_R5EHV3 0.00012095598812 5.02489268354e-05 -7.07070612846e-05 +UniRef50_T1ZCM0 Endonuclease, putative 0.00368165158001 0.00154354284959 -0.00213810873042 +UniRef50_J1RUT9 Dehydrogenase 0.000103409468992 7.29107979874e-06 -9.61183891933e-05 +UniRef50_W6ELT6 Glutathionylspermidine synthetase 0.000234463347108 0.00306372437279 0.00282926102568 +UniRef50_Q97K94 Quinolinate synthase A 0.000463736915189 0.000385005668224 -7.8731246965e-05 +UniRef50_P39438 Undecaprenyl diphosphatase 0.000280239581447 2.28631823718e-05 -0.000257376399075 +UniRef50_R7LCT1 2.1712008157e-05 9.73644342857e-05 7.56524261287e-05 +UniRef50_O34546 0.00955950544247 0.00230176246689 -0.00725774297558 +UniRef50_D0W2S1 0.000718295583812 0.00869862414418 0.00798032856037 +UniRef50_I3U2U9 Iron ABC superfamily ATP binding cassette transporter, ABC protein 0.0100270564082 0.00672196088517 -0.00330509552303 +UniRef50_Q5X449 1.51498074756e-05 0.00115278825886 0.00113763845138 +UniRef50_L1K8B7 0.012753794904 0.00298438446265 -0.00976941044135 +UniRef50_A6LYL7 Methyl accepting chemotaxis sensory transducer 0.000448253835515 0.00151624221087 0.00106798837535 +UniRef50_UPI000185085B tyrosyl tRNA synthetase 2.31211636328e-05 5.77033695808e-05 3.4582205948e-05 +UniRef50_P45767 Putative amino acid ABC transporter permease protein YhdX 0.00203992669816 0.00146380685304 -0.00057611984512 +UniRef50_UPI0003B66746 RNA polymerase sigma factor RpoD, partial 2.09647679644e-05 9.98240321908e-06 -1.09823647453e-05 +UniRef50_Q5HNC9 ISSep1 like transposase 0.00511786813867 0.00349963448291 -0.00161823365576 +UniRef50_G8AR28 9.83890500953e-05 0.000323045027969 0.000224655977874 +UniRef50_Q2S9Q5 Shikimate kinase 2.16171300586e-05 1.31698154875e-05 -8.4473145711e-06 +UniRef50_W7QBC1 4.18554950343e-06 4.50381329481e-05 4.08525834447e-05 +UniRef50_Q03Z27 Methionine import ATP binding protein MetN 0.0034926307475 0.00395606905278 0.00046343830528 +UniRef50_UPI0004782D1F crotonyl CoA reductase 0.00038665213185 4.64929529619e-05 -0.000340159178888 +UniRef50_Q6GF03 Alanine racemase 1 0.0212928500092 0.0048768586199 -0.0164159913893 +UniRef50_A8FHJ2 Triosephosphate isomerase 0.0104497424988 0.00105810507073 -0.00939163742807 +UniRef50_Q73GH4 NADH quinone oxidoreductase subunit I 0.00846826360213 0.00674887412809 -0.00171938947404 +UniRef50_A1JK30 Fatty acid oxidation complex subunit alpha 0.00113191549265 0.000478620154531 -0.000653295338119 +UniRef50_UPI00045D739F 1.83426520829e-05 6.35401538127e-05 4.51975017298e-05 +UniRef50_B9KWI6 ABC 2 type transporter 0.00269422808131 0.000918886451209 -0.0017753416301 +UniRef50_Q1GCN0 MltA 0.00180681039408 0.000355804693941 -0.00145100570014 +UniRef50_O29777 Probable copper exporting P type ATPase A 3.66428805917e-06 7.11730660171e-06 3.45301854254e-06 +UniRef50_Q9RRB7 Probable manganese dependent inorganic pyrophosphatase 0.000434634491936 0.0568105207464 0.0563758862545 +UniRef50_R9SLB3 0.00378520327101 0.000569981332219 -0.00321522193879 +UniRef50_B4RR70 Acyl CoA dehydrogenase, C terminal 0.000209668340276 8.91002373343e-05 -0.000120568102942 +UniRef50_A3PQF0 Extracellular solute binding protein, family 3 0.00971884680711 0.00292279899301 -0.0067960478141 +UniRef50_D7GG00 Na+ H+ antiporter 0.000107955954865 0.00379881285644 0.00369085690158 +UniRef50_Q6A7Y1 Glutamyl Q tRNA synthetase 3.11726804988e-05 0.00740338958482 0.00737221690432 +UniRef50_A0YH35 0.000234404390814 0.000649864447795 0.000415460056981 +UniRef50_A0A023RSS6 rRNA methyltransferase 0.000173158710486 0.00651787625754 0.00634471754705 +UniRef50_N6UYS2 0.000124252569829 0.000242571279646 0.000118318709817 +UniRef50_UPI0003B3CC7C methyltransferase 1.70914943342e-05 5.52876165317e-05 3.81961221975e-05 +UniRef50_UPI000477CA46 alcohol dehydrogenase 7.58175173943e-06 5.8261944898e-05 5.06801931586e-05 +UniRef50_A9B3R2 Lon protease 2 1.63816700317e-06 7.89429011562e-06 6.25612311245e-06 +UniRef50_J0ZPJ9 0.000370084302795 0.000501954739708 0.000131870436913 +UniRef50_UPI000473C272 hypothetical protein, partial 4.15273859945e-05 2.55607838118e-05 -1.59666021827e-05 +UniRef50_T8WTI4 Arylsulfatase 0.00185705705839 0.000951413314313 -0.000905643744077 +UniRef50_M5F699 0.00174714412176 2.91997297174e-05 -0.00171794439204 +UniRef50_J7IM71 Drug resistance transporter, EmrB QacA subfamily 0.000830074092833 0.00250460938908 0.00167453529625 +UniRef50_Q7AJV9 Na+ H+ antiporter 8.5755593552e-06 7.22041787934e-05 6.36286194382e-05 +UniRef50_A4IRH3 Trigger factor 0.0196593345938 0.006899484045 -0.0127598505488 +UniRef50_Q8XCW6 Protein SprT 0.00417188256124 0.00230889098632 -0.00186299157492 +UniRef50_UPI0004656097 hypothetical protein 6.14098489997e-06 7.68714239811e-06 1.54615749814e-06 +UniRef50_B2TPE7 Cobyric acid synthase 7.64657641136e-05 0.000921124198382 0.000844658434268 +UniRef50_A0A023RH98 Immunogenic protein 4.17796295122e-05 1.27082182012e-05 -2.9071411311e-05 +UniRef50_B9KM49 0.00146637509717 7.40046318501e-05 -0.00139237046532 +UniRef50_M9R6A5 Ribose 5 phosphate isomerase A 0.00539829053595 0.00023815863322 -0.00516013190273 +UniRef50_Q1CUH3 Tetraacyldisaccharide 4 kinase 0.000175032143208 0.0034728619872 0.00329782984399 +UniRef50_M7WMK4 1.20177663598e-06 2.19029291616e-05 2.07011525256e-05 +UniRef50_Q8CTN4 0.00607940714894 0.00224217023839 -0.00383723691055 +UniRef50_Q5HQC2 Aminotransferase, class I 0.0175013265377 0.00304322508701 -0.0144581014507 +UniRef50_X1ED13 Marine sediment metagenome DNA, contig 5.97144146278e-05 4.22119354768e-05 -1.7502479151e-05 +UniRef50_UPI0003B41E95 beta hexosaminidase 2.54937698522e-05 3.53412127659e-05 9.8474429137e-06 +UniRef50_Q89FK3 Bll6696 protein 0.000383234506454 0.00592418895915 0.0055409544527 +UniRef50_A9M2J7 Nicotinate nucleotide pyrophosphorylase 0.000658498470807 0.00222283271526 0.00156433424445 +UniRef50_W1I511 Uncultured bacterium extrachromosomal DNA RGI02237 9.11825855719e-06 7.4326048067e-05 6.52077895098e-05 +UniRef50_G0HG32 Short chain dehydrogenase 0.00033631284139 0.00891836598299 0.0085820531416 +UniRef50_Q4L8L0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0232927222927 0.0071746016286 -0.0161181206641 +UniRef50_R4KHK5 ADP forming acetyl coenzyme A synthetase 0.00288203896426 0.00028576736418 -0.00259627160008 +UniRef50_T7WH30 Electron transfer flavoprotein beta subunit 0.00143420076665 0.000304450211538 -0.00112975055511 +UniRef50_UPI00047D95CB hypothetical protein 4.95016765882e-05 2.51119688013e-05 -2.43897077869e-05 +UniRef50_A5UZH7 NADH quinone oxidoreductase subunit D 2 3.61454906705e-06 0.000107086419769 0.000103471870702 +UniRef50_UPI0003627E6E hypothetical protein 1.45387369845e-05 2.43940855843e-05 9.8553485998e-06 +UniRef50_UPI000477A59D MFS transporter 2.13041021088e-05 8.01154522184e-05 5.88113501096e-05 +UniRef50_UPI000248D54F phosphofructokinase 1.48605882201e-05 8.45283208573e-06 -6.40775613437e-06 +UniRef50_UPI000379B3FC hypothetical protein 8.50231617535e-06 1.44756458196e-05 5.97332964425e-06 +UniRef50_G7M6V5 Drug resistance transporter, EmrB QacA subfamily 0.000203396142896 0.00134039016278 0.00113699401988 +UniRef50_UPI0002FCF501 hypothetical protein 0.000108354607452 2.54234371448e-05 -8.29311703072e-05 +UniRef50_C1D381 4.80159593664e-05 3.62389027128e-05 -1.17770566536e-05 +UniRef50_R4RP03 0.00103577717835 0.000380907636008 -0.000654869542342 +UniRef50_UPI0004721298 GTP pyrophosphokinase, partial 3.43618786593e-06 7.60515974612e-06 4.16897188019e-06 +UniRef50_UPI0004798C74 hypothetical protein, partial 0.000157031175346 6.89419956487e-05 -8.80891796973e-05 +UniRef50_UPI00017465EA acetylornithine aminotransferase 2.76712976279e-06 5.71974596922e-06 2.95261620643e-06 +UniRef50_I5AX29 ABC type multidrug transport system, ATPase and permease component 0.00423121384711 0.00148688250167 -0.00274433134544 +UniRef50_E0TQE3 0.000141080003062 3.9259219208e-05 -0.000101820783854 +UniRef50_R7SQ97 7.72375205943e-05 0.000357682137179 0.000280444616585 +UniRef50_W0YYF5 0.00020076192379 0.000322328747082 0.000121566823292 +UniRef50_Q18C09 Methionine import ATP binding protein MetN 0.000289049725947 0.00129822842007 0.00100917869412 +UniRef50_UPI0003F12680 PREDICTED 1.18324974822e-06 6.52831408315e-07 -5.30418339905e-07 +UniRef50_B8FI62 Phosphopantetheine adenylyltransferase 3.6175700425e-05 1.5669971108e-05 -2.0505729317e-05 +UniRef50_P38527 Transcription termination factor Rho 0.0249334743059 0.00587133716058 -0.0190621371453 +UniRef50_R6FSL2 0.000125828662949 0.00185680017089 0.00173097150794 +UniRef50_UPI000344160C 0.000304190551264 7.21331912429e-06 -0.00029697723214 +UniRef50_D2JFR4 0.000547407329753 0.000255043684328 -0.000292363645425 +UniRef50_Q6G5A9 Shikimate dehydrogenase 4.71452623886e-05 3.6562461352e-05 -1.05828010366e-05 +UniRef50_D2JFR8 0.0479451247822 0.0103019864525 -0.0376431383297 +UniRef50_G4Q931 0.00031512990344 0.000837598391883 0.000522468488443 +UniRef50_F2IXV2 GfdT protein 8.39978823267e-06 5.92213840265e-06 -2.47764983002e-06 +UniRef50_Q5HM63 Drug resistance transporter, EmrB QacA family 0.021279683306 0.00748211429318 -0.0137975690128 +UniRef50_UPI0003651980 hypothetical protein 2.03368464082e-06 4.37435610398e-06 2.34067146316e-06 +UniRef50_UPI00037DFBE2 hypothetical protein 4.66491567994e-05 4.49004538372e-06 -4.21591114157e-05 +UniRef50_Q2G3T3 ATP dependent Clp protease proteolytic subunit 7.93737242993e-06 9.69724582376e-05 8.90350858077e-05 +UniRef50_T9PRX2 0.000865790300272 0.000233791671239 -0.000631998629033 +UniRef50_UPI00036A03C0 hypothetical protein 0.000174687767135 0.000147026249191 -2.7661517944e-05 +UniRef50_C3MFX0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.00112899308735 0.000196397728304 -0.000932595359046 +UniRef50_R9SIP9 CoB CoM heterodisulfide reductase subunit B HdrB1 0.00257696771695 0.000987743006891 -0.00158922471006 +UniRef50_O26278 tRNA guanine transglycosylase 0.00302238591038 0.000801940633003 -0.00222044527738 +UniRef50_S6QJ91 Aryldialkylphosphatase 0.000146410463029 0.000112143810897 -3.4266652132e-05 +UniRef50_UPI000225F8FA hemolysin type calcium binding region, partial 7.20421798275e-05 1.44163431893e-05 -5.76258366382e-05 +UniRef50_B8G821 Uroporphyrinogen decarboxylase 5.83464720606e-06 2.22582805103e-05 1.64236333042e-05 +UniRef50_X2X8I7 2.67565145032e-06 0.000864895295165 0.000862219643715 +UniRef50_O32163 Zinc dependent sulfurtransferase SufU 0.0212547428349 0.00168829802687 -0.019566444808 +UniRef50_D1BE57 1.54224767752e-06 7.16607796421e-05 7.01185319646e-05 +UniRef50_A5ULR8 Digeranylgeranylglyceryl phosphate synthase 0.00306668390493 0.000295316705201 -0.00277136719973 +UniRef50_UPI00036E0F7E hypothetical protein 5.58624884417e-05 2.58509876162e-05 -3.00115008255e-05 +UniRef50_Q6A9W7 Octanoyltransferase 0.00039596432397 0.00215124378731 0.00175527946334 +UniRef50_G0DV78 Periplasmic binding protein of proline glycine betaine transport system 0.000444908224649 0.00574970021227 0.00530479198762 +UniRef50_UPI0003602E81 hypothetical protein 4.04173779427e-06 4.86354770637e-06 8.218099121e-07 +UniRef50_A5VKN4 tRNA ) methyltransferase 7.157573731e-06 0.00251422178024 0.00250706420651 +UniRef50_UPI000382652B hypothetical protein 0.0002861928382 0.000270558550679 -1.5634287521e-05 +UniRef50_F2A8G4 6 pyruvoyl tetrahydropterin synthase 2.02275703184e-05 8.78434346665e-05 6.76158643481e-05 +UniRef50_UPI0003F15D37 PREDICTED 9.14271541388e-06 1.93575295039e-05 1.021481409e-05 +UniRef50_Q5X9T1 Exodeoxyribonuclease III 0.00607719623749 0.00170721726123 -0.00436997897626 +UniRef50_UPI000376C1CF hypothetical protein 4.16385585551e-06 1.08756417096e-05 6.71178585409e-06 +UniRef50_UPI000378C003 hypothetical protein 5.66607979588e-06 0.00082466359116 0.000818997511364 +UniRef50_UPI00046E84D4 ketose bisphosphate aldolase 6.19133215792e-06 4.67309895605e-05 4.05396574026e-05 +UniRef50_UPI0002F33BF1 hypothetical protein 7.04903871034e-06 7.42977690177e-06 3.8073819143e-07 +UniRef50_P94377 Catalase X 2.77831196531e-05 0.00197992963749 0.00195214651784 +UniRef50_A6LV05 Exonuclease, RNase T and DNA polymerase III 0.000320312412053 0.00087637398625 0.000556061574197 +UniRef50_O33787 0.00376286315274 0.000397733437288 -0.00336512971545 +UniRef50_M1LPD5 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 0.000560550920582 0.000725441959403 0.000164891038821 +UniRef50_Q2FZ91 Cell division protein DivIB 0.00994162116391 0.000840142817013 -0.0091014783469 +UniRef50_P58118 Protein translocase subunit SecY 0.00725951649411 0.00382392025051 -0.0034355962436 +UniRef50_UPI00045E6DF6 hypothetical protein 1.46224963276e-05 2.16522867508e-05 7.0297904232e-06 +UniRef50_Q3IUV4 0.00212848609272 0.000938051819408 -0.00119043427331 +UniRef50_E8SGK9 Lysophospholipase Monoglyceride lipase putative 0.0166632011849 0.00346310829758 -0.0132000928873 +UniRef50_UPI00036F909A hypothetical protein 6.0034821368e-06 1.13632694683e-05 5.3597873315e-06 +UniRef50_F2AHF5 Malate dehydrogenase 5.01669294399e-05 0.000685469743188 0.000635302813748 +UniRef50_F7MMY8 Cobyric acid synthase 0.00055786106727 0.000825593223702 0.000267732156432 +UniRef50_A6M2F6 Binding protein dependent transport systems inner membrane component 0.000514281316583 0.00134289198762 0.000828610671037 +UniRef50_UPI00016C3B4E SsrA binding protein 2.76248503853e-05 0.000848037806993 0.000820412956608 +UniRef50_UPI00036A82E7 hypothetical protein, partial 5.15138778558e-06 2.54653713965e-05 2.03139836109e-05 +UniRef50_S5KBE3 Amidohydrolase 0.0331869513768 0.0125968329541 -0.0205901184227 +UniRef50_UPI0003287F61 PREDICTED 0.000352030517433 1.94721610124e-05 -0.000332558356421 +UniRef50_C6L8Z7 9.68423329232e-06 3.34331923063e-05 2.3748959014e-05 +UniRef50_A7MHL5 0.000752340979993 0.000607804745002 -0.000144536234991 +UniRef50_A0A038GLZ5 Peptide ABC transporter substrate binding protein 0.0141163817249 0.00383241149435 -0.0102839702305 +UniRef50_L7WZ77 Sugar isomerase 0.0210677496253 0.00998763257537 -0.0110801170499 +UniRef50_E2QQY4 Guanine deaminase 0.00489641297609 0.000558048389704 -0.00433836458639 +UniRef50_E6U1U1 Cys Met metabolism pyridoxal phosphate dependent protein 0.000338829335329 0.00183661026808 0.00149778093275 +UniRef50_D3E047 Tetrahydromethanopterin S methyltransferase subunit C 0.00308479186582 0.000973314769449 -0.00211147709637 +UniRef50_F3SP64 Techoic acid ABC transporter, permease family protein 0.107255534459 0.0430502288653 -0.0642053055937 +UniRef50_A0B9A2 Adenylate kinase 2.60415975826e-05 2.85588120524e-05 2.5172144698e-06 +UniRef50_UPI00036A2D06 hypothetical protein 4.70721430657e-06 0.000114662227385 0.000109955013078 +UniRef50_P20083 DNA topoisomerase 4 subunit B 0.00493895283309 0.00863585602378 0.00369690319069 +UniRef50_A6LRZ8 0.000428734051029 0.00130619644257 0.000877462391541 +UniRef50_U3TMR9 Replication protein 0.000789675232922 0.000263283838205 -0.000526391394717 +UniRef50_H1QFU3 Putative oxygen independent coproporphyrinogen III oxidase 0.000212423155214 5.51040052664e-05 -0.000157319149948 +UniRef50_G7ZPE9 LPXTG surface protein 0.011073152598 0.00177710019379 -0.00929605240421 +UniRef50_Q6GGX9 UPF0403 protein SAR1441 0.052290588439 0.00589323571765 -0.0463973527214 +UniRef50_W0YTR9 0.000211821592591 7.44317151069e-06 -0.00020437842108 +UniRef50_Q8RXU4 Probable low specificity L threonine aldolase 1 5.56418205475e-06 7.86794195919e-06 2.30375990444e-06 +UniRef50_UPI000377D666 hypothetical protein 7.74976302216e-06 1.70586202872e-05 9.30885726504e-06 +UniRef50_UPI0002FDDFF5 hypothetical protein 5.69652769495e-06 1.15319855735e-05 5.83545787855e-06 +UniRef50_Q07RP5 Ribosome binding ATPase YchF 0.00297222024655 0.00285872884884 -0.00011349139771 +UniRef50_Q3K1I5 ATP dependent helicase deoxyribonuclease subunit B 0.00031870148823 0.000241896029146 -7.6805459084e-05 +UniRef50_B9E1R4 8.52112841647e-05 0.00045010088936 0.000364889605195 +UniRef50_B0VKL3 23S rRNA C(5)) methyltransferase RlmD 8.27215461305e-05 0.00824181972749 0.00815909818136 +UniRef50_S3NQR8 C4 dicarboxylate transport two component sensor histidine kinase 0.000416549139603 0.000101367290119 -0.000315181849484 +UniRef50_B9KEN0 Enolase 3.89757075376e-06 8.88105366609e-05 8.49129659071e-05 +UniRef50_A5UMV8 Sugar transferase, WcaJ 0.00350552210029 0.000662277161534 -0.00284324493876 +UniRef50_D3QC63 Multiple CBS domains containing cytosolic protein 0.0279882033589 0.00612255242314 -0.0218656509358 +UniRef50_UPI00046A5C9E branched chain amino acid ABC transporter substrate binding protein 1.59101215897e-05 2.01154302193e-05 4.2053086296e-06 +UniRef50_K2EEA8 2.99460993188e-05 3.30145650004e-05 3.0684656816e-06 +UniRef50_U5P8L5 0.00592963560428 0.00346923589493 -0.00246039970935 +UniRef50_S5CQE4 GGDEF domain protein 0.000123361434261 0.00153103634601 0.00140767491175 +UniRef50_C5ZZ07 ABC transporter, periplasmic binding protein 6.35498297692e-05 0.00331125536224 0.00324770553247 +UniRef50_UPI0001D2E14D trehalose phosphatase 2.46760839906e-05 2.74253567994e-05 2.7492728088e-06 +UniRef50_E1XJQ2 0.00268249291483 0.000515087276506 -0.00216740563832 +UniRef50_K6ZAZ0 0.000947965160733 0.000738788658589 -0.000209176502144 +UniRef50_UPI00046287B9 glucosamine fructose 6 phosphate aminotransferase 3.2869600633e-06 2.41679989466e-05 2.08810388833e-05 +UniRef50_S4P3V2 UPF0047 protein C4A8.02c 1.71227161324e-05 9.91757326299e-05 8.20530164975e-05 +UniRef50_UPI00021A5D5B PREDICTED 1.12082399598e-05 9.238539515e-06 -1.9697004448e-06 +UniRef50_UPI0003B2F6F8 cytidine deaminase 7.15181483118e-06 3.00340415394e-05 2.28822267082e-05 +UniRef50_UPI000361B9B7 hypothetical protein 0.000120433258568 0.00452055014322 0.00440011688465 +UniRef50_Q73UK5 0.000461995861197 3.91122696922e-05 -0.000422883591505 +UniRef50_UPI0002E36D1B ketosteroid isomerase 5.11572370585e-06 3.78914167362e-05 3.27756930303e-05 +UniRef50_X6L0W1 2.44797013856e-05 3.56484707025e-05 1.11687693169e-05 +UniRef50_Q04BY7 Energy coupling factor transporter ATP binding protein EcfA1 3.74166416929e-05 9.45249453653e-06 -2.79641471564e-05 +UniRef50_Q03MR7 Protein GrpE 0.000198676836237 0.00531400603965 0.00511532920341 +UniRef50_Q1IW96 Probable transcriptional regulatory protein Dgeo_2194 0.000438013253516 0.0655899800272 0.0651519667737 +UniRef50_A6LXG6 PTS system mannose fructose sorbose family IID component 9.46080172615e-05 0.00242080432721 0.00232619630995 +UniRef50_B9KWM5 Short chain alcohol dehydrogenase 0.00492304580028 0.000901463409552 -0.00402158239073 +UniRef50_A6LWF9 NLP P60 protein 0.000173158710486 0.000562653850715 0.000389495140229 +UniRef50_N0A5S9 GtrOC2 0.000110591598297 0.00419839599358 0.00408780439528 +UniRef50_N7PIW9 0.00025028915385 2.90924397763e-05 -0.000221196714074 +UniRef50_C1I079 Predicted protein 4.79884625283e-05 0.000386595817526 0.000338607354998 +UniRef50_D8JMR4 HTH type transcriptional activator aaeR 0.000143530794236 0.00640273614812 0.00625920535388 +UniRef50_UPI00035DBD0C hypothetical protein 1.54058487816e-05 3.97987131975e-05 2.43928644159e-05 +UniRef50_Z5XJ24 50S ribosomal protein L23 8.08416388515e-06 0.000694093959702 0.000686009795817 +UniRef50_UPI00037F9208 hypothetical protein 6.57516210684e-05 3.77326494255e-05 -2.80189716429e-05 +UniRef50_C7RSG7 Large exoprotein involved in heme utilization or adhesion 4.80914022326e-06 3.24708848612e-06 -1.56205173714e-06 +UniRef50_UPI0003B5E1C5 GntR family transcriptional regulator 8.14473881831e-05 2.2346062574e-05 -5.91013256091e-05 +UniRef50_A5UNJ4 Adhesin like protein 1.51399633016e-05 5.44170055438e-06 -9.69826274722e-06 +UniRef50_F0KJQ4 0.000158309167649 0.00636985844556 0.00621154927791 +UniRef50_E1KWK7 Metallo beta lactamase domain protein 6.7181393972e-05 2.72263718188e-05 -3.99550221532e-05 +UniRef50_UPI00047A5202 hypothetical protein 2.72569473049e-05 0.000273785446501 0.000246528499196 +UniRef50_Q02419 Protein PhnA 0.00546521060756 0.00206096603461 -0.00340424457295 +UniRef50_U6A9U4 tRNA specific adenosine deaminase 0.00104857219126 0.00046506567747 -0.00058350651379 +UniRef50_B2N6M8 Molybdate metabolism regulator 0.00202426857316 0.000831595356419 -0.00119267321674 +UniRef50_UPI0004639C57 di tricarboxylate transporter 2.6631961612e-05 2.55505381709e-05 -1.0814234411e-06 +UniRef50_UPI0003C16451 PREDICTED 4.5512269869e-06 7.86534669237e-06 3.31411970547e-06 +UniRef50_Q8XL57 ATP dependent 6 phosphofructokinase 2 0.000777751594215 0.00149601963207 0.000718268037855 +UniRef50_M4WU84 2.26287417368e-05 1.77661061354e-05 -4.8626356014e-06 +UniRef50_B8D9X0 Putative Holliday junction resolvase 2.57146202194e-05 1.73499896653e-05 -8.3646305541e-06 +UniRef50_A0A011Q708 Acetyl coenzyme A synthetase 9.82448756598e-06 5.7449327868e-06 -4.07955477918e-06 +UniRef50_Q8P2Z1 0.000709877126964 0.000107449954763 -0.000602427172201 +UniRef50_Q817Z6 Transcription elongation factor GreA 0.026859291999 0.00113288515053 -0.0257264068485 +UniRef50_P50736 0.0146656015655 0.00426933410543 -0.0103962674601 +UniRef50_F2JYX7 Peptidase M75, Imelysin 0.00473705558211 0.000610485194111 -0.004126570388 +UniRef50_Q1CBF6 Sec independent protein translocase protein TatB 0.00616301302537 0.00188072544648 -0.00428228757889 +UniRef50_O07046 FKBP type peptidyl prolyl cis trans isomerase SlyD 5.10262093503e-05 1.46797585378e-05 -3.63464508125e-05 +UniRef50_A6UZF9 Oxidoreductase, short chain dehydrogenase reductase family 0.000149994432661 0.00130469223246 0.0011546977998 +UniRef50_Q57935 0.00444175919899 0.0012952044531 -0.00314655474589 +UniRef50_Q57936 0.0010248106264 0.00039551344445 -0.00062929718195 +UniRef50_B8CVY1 1,4 alpha glucan branching enzyme GlgB 2.76815835171e-06 7.52455827263e-06 4.75639992092e-06 +UniRef50_UPI0003C1A6D9 PREDICTED 1.30690836564e-05 0.000124271209736 0.00011120212608 +UniRef50_W6LVB0 0.000153902013573 0.000518363230274 0.000364461216701 +UniRef50_B2AP02 Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3 1.3883046789e-05 1.01700192803e-05 -3.7130275087e-06 +UniRef50_UPI0002E1B7CA hypothetical protein 2.53920393298e-05 8.07058248876e-05 5.53137855578e-05 +UniRef50_UPI0002FA5E7B peptide ABC transporter permease 8.99051379927e-06 4.06698190416e-05 3.16793052423e-05 +UniRef50_P0C0F3 DNA polymerase III subunit alpha 0.00403955672508 0.00543157348254 0.00139201675746 +UniRef50_R1DWQ7 0.000152212092278 0.000227166696312 7.4954604034e-05 +UniRef50_B0S155 Phosphopantetheine adenylyltransferase 1.59580192052e-05 1.56736017847e-05 -2.844174205e-07 +UniRef50_P96719 2.6890512592e-06 1.05979177706e-05 7.9088665114e-06 +UniRef50_UPI0004673C65 thioredoxin 0.000511667610096 0.000513386765923 1.719155827e-06 +UniRef50_UPI00036804AF 30S ribosomal protein S17 4.5536945392e-05 0.000256717381648 0.000211180436256 +UniRef50_UPI0004656BE4 DNA mismatch repair protein MutS 1.9360784624e-06 7.13687344081e-05 6.94326559457e-05 +UniRef50_Q1LNF6 Uridylate kinase 1.95301116416e-05 0.00274782399356 0.00272829388192 +UniRef50_UPI00037C0023 hypothetical protein 8.46465175809e-05 2.99487191037e-05 -5.46977984772e-05 +UniRef50_G0LV60 Integrase 0.00709967810563 0.00156983278354 -0.00552984532209 +UniRef50_UPI00035F36BD hypothetical protein 0.000197312630293 0.000164603691984 -3.2708938309e-05 +UniRef50_M0P4U3 AzlC family protein 1.36802251639e-05 1.02476841127e-05 -3.4325410512e-06 +UniRef50_A0A023LDQ6 0.000622399962998 0.000437506229925 -0.000184893733073 +UniRef50_E2BB01 4.64763531924e-06 0.000149384472733 0.000144736837414 +UniRef50_P00362 Glyceraldehyde 3 phosphate dehydrogenase 0.000103248004053 6.02489228975e-05 -4.29990811555e-05 +UniRef50_F9YYR4 0.000422918965471 0.00570734467149 0.00528442570602 +UniRef50_UPI0003607034 hypothetical protein 8.91577732635e-06 1.32181840581e-05 4.30240673175e-06 +UniRef50_A5IT33 Glucose 6 phosphate 1 dehydrogenase 0.00991318648846 0.00197115582353 -0.00794203066493 +UniRef50_E3GES0 0.000498601239345 0.00199817465828 0.00149957341894 +UniRef50_L2V487 4.80002939282e-05 7.88401678338e-05 3.08398739056e-05 +UniRef50_F5M5L4 LysR family transcriptional regulator 0.00321436045767 0.00099421530855 -0.00222014514912 +UniRef50_A5IJ44 Phosphopantetheine adenylyltransferase 4.41194375632e-05 1.71286059875e-05 -2.69908315757e-05 +UniRef50_G8NQU3 6.09429167621e-06 7.75085909763e-06 1.65656742142e-06 +UniRef50_A6M0K2 Glycoside hydrolase, family 3 domain protein 0.000343894292271 0.00121728994799 0.000873395655719 +UniRef50_Q8DUS0 0.00551687426025 0.000964545626275 -0.00455232863398 +UniRef50_UPI000381094E hypothetical protein 0.000100373507366 7.80193778431e-05 -2.23541295229e-05 +UniRef50_S5YT45 Uracil xanthine permease 0.000663021385688 0.000383698085163 -0.000279323300525 +UniRef50_G7PJ01 6.8374547133e-05 2.3843835239e-05 -4.4530711894e-05 +UniRef50_K0K3W4 6.08789120499e-07 2.18818150567e-06 1.57939238517e-06 +UniRef50_C5B8V8 UDP 2,3 diacylglucosamine hydrolase 0.000327323213955 0.00346603014458 0.00313870693063 +UniRef50_D6Y589 Periplasmic binding protein LacI transcriptional regulator 0.000124206954434 1.79884537446e-05 -0.000106218500689 +UniRef50_Z2DT28 1.28477477479e-05 0.000281254004947 0.000268406257199 +UniRef50_B2U084 Protein CsiD 0.00378232897311 0.000380644957133 -0.00340168401598 +UniRef50_UPI0004791B4F autoinducer 2 import system permease LsrD 1.40550313005e-05 2.8338767364e-05 1.42837360635e-05 +UniRef50_F2MNJ9 PTS family mannose fructose sorbose porter component IID 0.00671886744182 0.000212458061294 -0.00650640938053 +UniRef50_S9QQP6 Glycine oxidase ThiO 5.5269610718e-06 1.23879322796e-05 6.8609712078e-06 +UniRef50_Q47216 E. coli fhuB gene involved in transport of ferrichrome 0.000158476947481 8.33839720682e-05 -7.50929754128e-05 +UniRef50_G8LJW2 0.000101502798572 9.4182195523e-05 -7.320603049e-06 +UniRef50_A0A023KKD3 0.00279908675214 0.00192583539548 -0.00087325135666 +UniRef50_Q2KXF0 N carbamoyl D amino acid hydrolase 0.0135926663573 0.00175350891091 -0.0118391574464 +UniRef50_Q3J1R1 TRAP T family sorbitol mannitol transporter, DctM subunit 0.00460836859799 0.00159615529929 -0.0030122132987 +UniRef50_Q892B0 Hydroxyacylglutathione hydrolase 0.000189691451679 0.00157327773814 0.00138358628646 +UniRef50_U1LA38 3.34243355643e-05 3.3969477544e-05 5.451419797e-07 +UniRef50_UPI00046894CE hypothetical protein 4.99000735682e-05 1.51613890166e-05 -3.47386845516e-05 +UniRef50_UPI00037DFDE1 hypothetical protein 3.40576462048e-06 8.71654064824e-06 5.31077602776e-06 +UniRef50_B7ITF9 NADPH dehydrogenase 0.0002539700886 0.0014440581311 0.0011900880425 +UniRef50_I0E927 0.000214543665657 0.00306015871257 0.00284561504691 +UniRef50_U9RLL1 Maltose mannitol ABC transporter substrate binding protein 0.00063274990576 0.000476620107794 -0.000156129797966 +UniRef50_UPI0003728BB6 hypothetical protein 1.05923838599e-05 5.77718092803e-06 -4.81520293187e-06 +UniRef50_P77256 0.00532841290473 0.00123418609915 -0.00409422680558 +UniRef50_A0A024KCD9 0.000194524647099 7.18116698463e-05 -0.000122712977253 +UniRef50_W5XBZ3 Chromate transporter, chromate ion transporter family 2.7294379831e-06 2.40491621873e-05 2.13197242042e-05 +UniRef50_UPI00047AFC40 hypothetical protein 2.05073103231e-05 6.03428216318e-06 -1.44730281599e-05 +UniRef50_B3EDX3 Imidazoleglycerol phosphate dehydratase 9.25601848686e-05 2.91117623306e-05 -6.3448422538e-05 +UniRef50_N5CGV2 Transcriptional regulator 0.0115770194233 0.00291668482813 -0.00866033459517 +UniRef50_W7X8F4 0.000350455617991 3.69670006157e-05 -0.000313488617375 +UniRef50_C0D0V3 1.24295220517e-05 5.10608533914e-06 -7.32343671256e-06 +UniRef50_UPI000347DE1F hypothetical protein 3.81726620699e-05 6.90409511558e-05 3.08682890859e-05 +UniRef50_G7M5H1 0.000754949114049 0.000871098999181 0.000116149885132 +UniRef50_W5XD42 Dihydroorotase 4.40008531897e-06 9.10497032667e-06 4.7048850077e-06 +UniRef50_Q3IV21 N6 adenine specific DNA methyltransferase, N12 class 0.0165812545704 0.00507050053199 -0.0115107540384 +UniRef50_Q39ZC5 NADH quinone oxidoreductase subunit A 1 4.62522914802e-05 4.44215931042e-05 -1.830698376e-06 +UniRef50_G8UZP9 0.0134306090933 0.00403468268305 -0.00939592641025 +UniRef50_A0RBY2 0.0159004223149 0.0046612526039 -0.011239169711 +UniRef50_UPI00036FBBFE hypothetical protein 0.00027447599129 4.30121294129e-05 -0.000231463861877 +UniRef50_S6APH0 Peptidase M48 family protein 0.000425353168933 0.000416497333721 -8.855835212e-06 +UniRef50_Q87VB5 Potassium efflux system protein KefA, putative 0.000610803913599 0.000175165874053 -0.000435638039546 +UniRef50_Q2J3C8 OmpA MotB 8.11821913621e-05 4.95173330266e-05 -3.16648583355e-05 +UniRef50_Q9HK17 Carbamoyl phosphate synthase large chain 9.10722347907e-06 9.83605864781e-06 7.2883516874e-07 +UniRef50_P0AB87 L fuculose phosphate aldolase 0.00427417352777 0.000615139433657 -0.00365903409411 +UniRef50_T1W827 0.000152233338572 3.70960768497e-05 -0.000115137261722 +UniRef50_H6LQV6 0.0112425565678 0.00204461248786 -0.00919794407994 +UniRef50_Q9HZP7 Electron transfer flavoprotein subunit alpha 0.000496095647861 0.0023740628518 0.00187796720394 +UniRef50_UPI0004775C52 hypothetical protein 0.000751770529546 0.000218287655351 -0.000533482874195 +UniRef50_A6W0A1 Inorganic pyrophosphatase 0.000215706279348 0.00529664710818 0.00508094082883 +UniRef50_F0A853 PilS cassette 0.000106840008192 0.000232761615507 0.000125921607315 +UniRef50_F0RP81 Cation diffusion facilitator family transporter 0.00488194346733 0.00113878465233 -0.003743158815 +UniRef50_Q9JZN9 Probable TonB dependent receptor NMB0964 5.90129216602e-05 0.00262291942531 0.00256390650365 +UniRef50_A9KTR8 Tryptophan synthase alpha chain 0.00199487122625 0.000528283829082 -0.00146658739717 +UniRef50_D3E165 0.00235713963251 0.000800604432177 -0.00155653520033 +UniRef50_W5XBF7 Peptidase like protein 3.13669057599e-05 1.6651319765e-05 -1.47155859949e-05 +UniRef50_UPI0003B77CF1 hypothetical protein, partial 5.03544542531e-05 0.000227047124605 0.000176692670352 +UniRef50_UPI0002E07778 hypothetical protein 0.000554597022607 3.99912489397e-05 -0.000514605773667 +UniRef50_UPI0002BA99C0 hypothetical protein, partial 7.68482350088e-05 0.000258658809639 0.00018181057463 +UniRef50_G7M4N9 Transcriptional antiterminator, BglG 0.000175032143208 0.000811958139445 0.000636925996237 +UniRef50_H2CA16 CRISPR associated helicase, Cas3 family 1.44040577788e-05 1.08220438007e-05 -3.5820139781e-06 +UniRef50_F2IZL0 9.76622834857e-05 0.000108488287448 1.08260039623e-05 +UniRef50_Q9RZ59 7.00520362817e-05 0.0304117243333 0.030341672297 +UniRef50_Q9RZ58 3.42528244293e-05 0.0533424050132 0.0533081521888 +UniRef50_A6LPF3 Integral membrane sensor signal transduction histidine kinase 0.000112124551144 0.00124417146252 0.00113204691138 +UniRef50_S6A3I5 Hemolysin 0.000615537272691 0.00370509438458 0.00308955711189 +UniRef50_D0CXH4 Amino acid regulated cytosolic protein 2.25801457911e-05 3.56440718362e-05 1.30639260451e-05 +UniRef50_S3YVB6 Electron transfer flavoprotein ubiquinone oxidoreductase 3.77152019826e-05 7.84494188088e-05 4.07342168262e-05 +UniRef50_E8SIG3 O methyltransferase family protein 0.02264696582 0.0047149315001 -0.0179320343199 +UniRef50_E8YMA7 Xanthine dehydrogenase, small subunit 0.000186409148895 0.00012399581744 -6.2413331455e-05 +UniRef50_UPI0003647621 hypothetical protein 2.50779277876e-05 7.89949248558e-06 -1.7178435302e-05 +UniRef50_A0A023RWB5 Metal binding protein 0.000156416846208 0.00637636778578 0.00621995093957 +UniRef50_UPI000319D40D hypothetical protein 9.53850439977e-06 1.27663457427e-05 3.22784134293e-06 +UniRef50_P42911 N acetylgalactosamine permease IID component 0.00306029094691 0.00210672751595 -0.00095356343096 +UniRef50_G8LUB7 8.26008728365e-05 0.00139002476547 0.00130742389263 +UniRef50_UPI00037F105A hypothetical protein 5.2687232277e-06 1.00903505351e-05 4.8216273074e-06 +UniRef50_F7ZMZ2 LacI family transcription regulator 0.000640731819857 0.000688177974312 4.7446154455e-05 +UniRef50_P25269 Tryptophan synthase beta chain 2, chloroplastic 4.58346393174e-06 8.19696540435e-06 3.61350147261e-06 +UniRef50_S9V0M4 6.06192166757e-06 3.36491821603e-05 2.75872604927e-05 +UniRef50_K7EAU2 0.000437159826715 0.000900507522357 0.000463347695642 +UniRef50_UPI0003B55347 prolipoprotein diacylglyceryl transferase 1.40764828288e-05 6.90296424277e-06 -7.17351858603e-06 +UniRef50_B0K282 tRNA dihydrouridine synthase 0.000595677865387 0.00160390404092 0.00100822617553 +UniRef50_Q1IZ39 Maltodextrin phosphorylase 4.98221718638e-05 0.0222759272569 0.022226105085 +UniRef50_A0A023S035 Tail fiber protein 0.000315533843529 0.00812357297385 0.00780803913032 +UniRef50_A7MJM9 DNA gyrase inhibitor 0.00121071966282 0.00327638827753 0.00206566861471 +UniRef50_UPI00036379E0 hypothetical protein 1.80794992353e-05 2.38863713166e-05 5.8068720813e-06 +UniRef50_V5T0I0 0.000716665155766 0.000576956873815 -0.000139708281951 +UniRef50_P44842 IMPACT family member HI_0722 0.00125048069074 0.00103896068992 -0.00021152000082 +UniRef50_G8B031 0.000522539218953 3.54234975447e-06 -0.000518996869199 +UniRef50_A6QGY4 Extracellular matrix binding protein EbhA 0.0020773190929 0.000512423531082 -0.00156489556182 +UniRef50_A9H0U5 Enoyl [acyl carrier protein] reductase [NADH] 5.54047457835e-05 6.38142512567e-05 8.4095054732e-06 +UniRef50_UPI0004764CEE transcription termination factor Rho, partial 4.69282743033e-05 2.34045515101e-05 -2.35237227932e-05 +UniRef50_UPI00047511DF peptide ABC transporter permease 2.85927890939e-05 8.34779079235e-06 -2.02449983015e-05 +UniRef50_Q7UI51 2 isopropylmalate synthase 6.47594652218e-06 0.0343864822305 0.034380006284 +UniRef50_UPI0003B5C125 acetyltransferase 0.000160716782674 0.000404988543012 0.000244271760338 +UniRef50_F5ZCF3 7.63395797809e-05 3.31823633499e-05 -4.3157216431e-05 +UniRef50_UPI0003645D29 hypothetical protein 4.54228990041e-06 3.98385066922e-05 3.52962167918e-05 +UniRef50_O28912 Phosphate import ATP binding protein PstB 1.50604124894e-05 0.00379722369929 0.0037821632868 +UniRef50_P29363 Threonine synthase 0.00933688136905 0.00299646473025 -0.0063404166388 +UniRef50_C6ST49 0.00360502231645 0.000533704888912 -0.00307131742754 +UniRef50_UPI00037764D1 hypothetical protein 1.66606024128e-05 0.000409516667683 0.00039285606527 +UniRef50_A0PY95 Alanine racemase 0.000267165698207 0.000389286479141 0.000122120780934 +UniRef50_L0DZY5 Sulfur acceptor protein SufE for iron sulfur cluster assembly 6.77801292892e-05 1.8667942506e-05 -4.91121867832e-05 +UniRef50_B9DJF9 Phage integrase 0.0107219308589 0.00326305564071 -0.00745887521819 +UniRef50_B2ICL0 Imidazole glycerol phosphate synthase subunit HisF 0.000204211896297 0.0201143693452 0.0199101574489 +UniRef50_A4X095 Superfamily II helicase and inactivated derivatives like protein 0.0134706402096 0.00331794353231 -0.0101526966773 +UniRef50_B2TJ36 Mg chelatase family protein 0.000518618002432 0.00127770544968 0.000759087447248 +UniRef50_D5UED6 7.27136282436e-06 2.42194271992e-05 1.69480643748e-05 +UniRef50_G4LNF0 Aldehyde dehydrogenase 0.000426104795691 0.000167634837394 -0.000258469958297 +UniRef50_D5ARZ1 Electron transport complex subunit RnfC 0.00164965107969 0.00055525880437 -0.00109439227532 +UniRef50_UPI0004720CF2 peptide ABC transporter substrate binding protein 2.60716251133e-05 7.96361611971e-06 -1.81080089936e-05 +UniRef50_A6M1H1 0.000193914035367 0.000853333778341 0.000659419742974 +UniRef50_A6M1H0 0.000827594611256 0.00340907198311 0.00258147737185 +UniRef50_UPI000383B0B4 PREDICTED 1.70642706901e-05 0.00025870213811 0.00024163786742 +UniRef50_Q54VM1 4.98855334194e-06 1.35179973381e-05 8.52944399616e-06 +UniRef50_UPI0003901246 hypothetical protein 2.89759281393e-05 4.02380714703e-05 1.1262143331e-05 +UniRef50_E6NBZ7 Proline permease 9.62156301183e-05 0.00518199229748 0.00508577666736 +UniRef50_UPI000456035A hypothetical protein PFL1_03912 3.52471675958e-06 4.75871392024e-05 4.40624224428e-05 +UniRef50_Q2YXC0 FPRL1 inhibitory protein 0.00550214554178 0.000490831088969 -0.00501131445281 +UniRef50_UPI0001D2F4B5 histidine kinase 3.5476217876e-05 2.70764983841e-05 -8.3997194919e-06 +UniRef50_Q03UC7 50S ribosomal protein L9 0.0118871414312 0.00209340196429 -0.00979373946691 +UniRef50_K7RW71 TadB domain containing protein 0.000170294431062 0.00909554062244 0.00892524619138 +UniRef50_UPI0004002975 hypothetical protein 5.98979435064e-05 1.45077112247e-05 -4.53902322817e-05 +UniRef50_B3QQR6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000108363496658 1.03656893724e-05 -9.79978072856e-05 +UniRef50_I0ESN2 Outer membrane protein 33 0.000347603199025 0.00225848650557 0.00191088330655 +UniRef50_Q3J228 Putative endonuclease 0.0105861549508 0.00216151707463 -0.00842463787617 +UniRef50_G8PN37 sn glycerol 3 phosphate binding periplasmic protein UgpB 2.05842115461e-05 8.06909218425e-06 -1.25151193618e-05 +UniRef50_UPI00037ED898 hypothetical protein 3.59788027216e-05 5.24796957861e-05 1.65008930645e-05 +UniRef50_UPI0003B58F6D biotin synthase 4.30209052628e-06 6.0004686367e-06 1.69837811042e-06 +UniRef50_O27651 Conserved protein 0.00681850901043 0.000606816926888 -0.00621169208354 +UniRef50_U3SS39 0.00336155849069 0.00257997276607 -0.00078158572462 +UniRef50_Q60182 Glutamine synthetase 0.00299720748729 0.000586499750377 -0.00241070773691 +UniRef50_A3PHJ7 Transcriptional regulator, AsnC family 0.00884853255404 0.00317550171157 -0.00567303084247 +UniRef50_UPI000475DE05 hypothetical protein 1.13965823962e-05 2.52237527598e-05 1.38271703636e-05 +UniRef50_P76419 0.00496310939566 0.00104886350313 -0.00391424589253 +UniRef50_K2JKB1 0.000555686780374 6.52839893415e-05 -0.000490402791033 +UniRef50_Q2CHF8 Probable replication protein C 0.000153091088781 4.55496562521e-05 -0.000107541432529 +UniRef50_O28664 Proline tRNA ligase 0.00315064372401 0.000625242653487 -0.00252540107052 +UniRef50_UPI00035071FD PREDICTED 5.65946010231e-05 2.84868833395e-05 -2.81077176836e-05 +UniRef50_UPI0004754290 UDP glucose 6 dehydrogenase 5.64026840622e-06 1.19316178785e-05 6.29134947228e-06 +UniRef50_UPI0003B57BB8 membrane protein 6.88774752379e-06 9.29449942003e-06 2.40675189624e-06 +UniRef50_UPI00047CCE00 hypothetical protein 0.000436512327463 7.8337441607e-05 -0.000358174885856 +UniRef50_Q8FBC3 Glycerol kinase 0.00237929505766 0.0052991980645 0.00291990300684 +UniRef50_UPI000381A4A2 hypothetical protein 5.15866412245e-06 3.68912904372e-06 -1.46953507873e-06 +UniRef50_UPI0003606567 hypothetical protein, partial 1.21970337878e-05 2.59095258664e-05 1.37124920786e-05 +UniRef50_P50601 Protein TolB 0.00149700819261 0.00186146020581 0.0003644520132 +UniRef50_V9VVJ4 0.000371788446086 8.18552895249e-05 -0.000289933156561 +UniRef50_Q7VJY3 Chaperone protein ClpB 4.60723338757e-05 0.00327916035117 0.00323308801729 +UniRef50_O04904 Dihydroorotase, mitochondrial 0.00517236012849 0.0036977933925 -0.00147456673599 +UniRef50_C9XK28 L lactate dehydrogenase 0.00012796135215 0.000270932757067 0.000142971404917 +UniRef50_Q88V07 DNA polymerase IV 0.00569787752989 0.0034659574793 -0.00223192005059 +UniRef50_UPI000371CF62 hypothetical protein, partial 0.00192038535618 9.75412828813e-05 -0.0018228440733 +UniRef50_UPI0003610B2B hypothetical protein 2.59687111723e-06 3.18766683733e-06 5.907957201e-07 +UniRef50_I6Q203 Transposase 0.00496437948703 0.00329532643394 -0.00166905305309 +UniRef50_UPI0003D737B1 PREDICTED 8.38030809842e-06 3.44352202793e-05 2.60549121809e-05 +UniRef50_K0RGV2 4.25968946429e-05 0.00112381707865 0.00108122018401 +UniRef50_O32254 0.0025676045596 0.000936837083141 -0.00163076747646 +UniRef50_C6S5N2 Putrescine transport system permease protein 0.000159276788545 0.00297556511136 0.00281628832282 +UniRef50_A0A020D651 0.0213032093534 0.00561240815551 -0.0156908011979 +UniRef50_A5D5I2 DNA directed RNA polymerase subunit beta 1.04033581322e-05 3.26996720875e-06 -7.13339092345e-06 +UniRef50_B4F1A3 Agmatinase 0.00544420955793 0.000449584654698 -0.00499462490323 +UniRef50_UPI0003B405D9 thioredoxin 7.78079844495e-05 6.83596029092e-05 -9.4483815403e-06 +UniRef50_A6LX09 Transcriptional antiterminator, BglG 0.00022816252255 0.000433267641104 0.000205105118554 +UniRef50_A3LGV5 0.000260092704284 0.000377183128249 0.000117090423965 +UniRef50_UPI0003733DDF hypothetical protein 7.3568494784e-05 1.63391069575e-05 -5.72293878265e-05 +UniRef50_Q9FCA2 Peptide deformylase 2 1.38463124345e-05 2.49879297961e-05 1.11416173616e-05 +UniRef50_Q2YZB2 ATP phosphoribosyltransferase regulatory subunit 0.0140074319147 0.000307629553598 -0.0136998023611 +UniRef50_B8DEF0 0.000209075886147 0.00188500024592 0.00167592435977 +UniRef50_S5CRU7 SAM dependent methyltransferase 0.000468836268581 0.00367357662885 0.00320474036027 +UniRef50_P22805 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.00138475483567 0.00107706619502 -0.00030768864065 +UniRef50_UPI00047CAE83 hypothetical protein 5.19572729738e-06 1.5994005963e-05 1.07982786656e-05 +UniRef50_UPI000350E4F1 2.39444829859e-06 3.38247087766e-06 9.8802257907e-07 +UniRef50_I0C1B5 Choloylglycine hydrolase 0.0186428479189 0.00136303506354 -0.0172798128554 +UniRef50_Q167Y1 Type II IV secretion system protein, TadC subfamily, putative 0.0123155190766 0.00248805686397 -0.00982746221263 +UniRef50_A3CPS1 Two component response transcriptional regulator , putative 0.00615559436315 0.000300322073074 -0.00585527229008 +UniRef50_UPI0003D2A318 homoserine dehydrogenase 2.94256321806e-05 1.80752638502e-05 -1.13503683304e-05 +UniRef50_V5NWP2 0.000810564671074 0.00108717819923 0.000276613528156 +UniRef50_UPI0002886C73 serine hydroxymethyltransferase 0.000237607770406 0.000176778506093 -6.0829264313e-05 +UniRef50_J4KJN9 8.21507253925e-05 0.00667490968747 0.00659275896208 +UniRef50_W8KL45 3.10969681189e-05 4.47817586173e-05 1.36847904984e-05 +UniRef50_D9QPC0 Alpha beta hydrolase fold protein 0.00307593293264 0.00123409477568 -0.00184183815696 +UniRef50_A8LNH2 UPF0246 protein Dshi_3333 0.0012659159289 0.000252407440337 -0.00101350848856 +UniRef50_A3PP80 Diguanylate cyclase 0.0050811662508 0.00100252219781 -0.00407864405299 +UniRef50_W4KSI3 PcsB protein 0.000331825966611 0.000194714311118 -0.000137111655493 +UniRef50_UPI00016A907F benzoate transport protein 3.00503137859e-05 4.02652328935e-05 1.02149191076e-05 +UniRef50_G2KZ81 0.00127771316163 0.000345399655201 -0.000932313506429 +UniRef50_W7Y3S8 0.000166386071404 7.31920402115e-05 -9.31940311925e-05 +UniRef50_UPI000300A99C hypothetical protein 1.80561189384e-05 4.08884415141e-05 2.28323225757e-05 +UniRef50_UPI000379A26D hypothetical protein 8.80181069756e-06 1.59747719328e-05 7.17296123524e-06 +UniRef50_G0AE82 Aldo keto reductase 0.00112078862208 0.0463085556365 0.0451877670144 +UniRef50_UPI00037FCE78 hypothetical protein 0.000911927885878 0.000360406895028 -0.00055152099085 +UniRef50_A6LRX7 Baseplate J family protein 0.000462978571857 0.000977872926926 0.000514894355069 +UniRef50_P15031 Fe dicitrate transport ATP binding protein FecE 0.00195630393934 0.00204161228397 8.530834463e-05 +UniRef50_E1HL74 Transcriptional regulatory protein, C terminal domain protein 0.00163338450892 0.000412069821193 -0.00122131468773 +UniRef50_D4GIS9 RbsA 0.00402054897309 0.000470764545228 -0.00354978442786 +UniRef50_UPI0003B790C8 FAD dependent oxidoreductase 2.48950564028e-05 1.41882864998e-05 -1.0706769903e-05 +UniRef50_U5PBB0 Glycine betaine ABC transporter ATP binding protein 0.00305662688827 0.000246097254331 -0.00281052963394 +UniRef50_U5MMF7 Penicillin amidase 0.000739171852123 0.0021283687312 0.00138919687908 +UniRef50_W0I1A1 Aspartate ammonia lyase 0.000552364180171 0.00528418870072 0.00473182452055 +UniRef50_UPI000469D137 hypothetical protein 0.000875748391323 8.4851249639e-05 -0.000790897141684 +UniRef50_UPI0002D7F2D9 hypothetical protein 1.34945408328e-05 6.42443200236e-06 -7.07010883044e-06 +UniRef50_A6LPZ8 0.000659765809036 0.00223297072634 0.0015732049173 +UniRef50_P0AEW5 3,5 cyclic adenosine monophosphate phosphodiesterase CpdA 0.00409990380215 0.00112958503343 -0.00297031876872 +UniRef50_A1B9K8 Zinc import ATP binding protein ZnuC 2.19900774693e-05 9.56369444126e-06 -1.2426383028e-05 +UniRef50_A6LYB4 0.000330712852793 0.00256431475951 0.00223360190672 +UniRef50_S4YWC9 Iron ABC transporter permease 0.000135138182163 0.00283508849182 0.00269995030966 +UniRef50_Q4L6B1 TelA like protein SH1505 0.0187432331894 0.00455140681341 -0.014191826376 +UniRef50_UPI0003783264 hypothetical protein, partial 4.22093496452e-06 6.50113556112e-06 2.2802005966e-06 +UniRef50_M3GAZ5 HlyD family secretion protein 0.00186485961184 0.000199313861778 -0.00166554575006 +UniRef50_W4HIJ8 1.18330014599e-05 1.37715502368e-05 1.9385487769e-06 +UniRef50_D2ARI1 tRNA rRNA methyltransferase 0.000611314455616 0.00706777702778 0.00645646257216 +UniRef50_UPI0003B31E13 hydroxyethylthiazole kinase, partial 1.0763358989e-05 1.79152951735e-05 7.1519361845e-06 +UniRef50_Q609Q1 Sulfate thiosulfate import ATP binding protein CysA 0.00032857737624 0.000125864433691 -0.000202712942549 +UniRef50_R4QLQ3 0.000221708073658 0.00956079298081 0.00933908490715 +UniRef50_Q51548 L ornithine 5 monooxygenase 0.000235703912728 0.000196223724387 -3.9480188341e-05 +UniRef50_Q12UL5 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00457709714287 0.00119144818953 -0.00338564895334 +UniRef50_P0AER4 Glutamate aspartate transport system permease protein GltJ 0.000875827504994 0.000501841048263 -0.000373986456731 +UniRef50_P39630 dTDP glucose 4,6 dehydratase 5.26965582947e-06 6.62787774188e-06 1.35822191241e-06 +UniRef50_Q9HZR2 0.00220681518524 0.00155472883806 -0.00065208634718 +UniRef50_T1AU58 Acyl CoA dehydrogenase domain protein 0.000142649012091 0.000407490987201 0.00026484197511 +UniRef50_J8RY92 0.00042896135097 0.000422463899101 -6.497451869e-06 +UniRef50_UPI0003AD3D4A hypothetical protein 8.11489912278e-07 2.90834720298e-05 2.82719821175e-05 +UniRef50_I4Y2X2 TonB dependent outermembrane receptor 4.44624250735e-05 0.00030757372313 0.000263111298057 +UniRef50_UPI0003B34776 LysR family transcriptional regulator 5.27717123956e-06 8.21500999334e-06 2.93783875378e-06 +UniRef50_Q9RRV3 0.00127130206267 0.0566096031802 0.0553383011175 +UniRef50_W5XB81 DNA directed RNA polymerase subunit beta 4.40177373453e-06 1.57075868843e-06 -2.8310150461e-06 +UniRef50_G5PWF6 L xylulose 5 phosphate 3 epimerase 0.000104342533273 3.65714196011e-05 -6.77711136719e-05 +UniRef50_A8F740 Periplasmic binding protein LacI transcriptional regulator 7.40956127913e-06 3.31153674299e-05 2.57058061508e-05 +UniRef50_UPI00046961AC transcriptional regulator 1.71761455105e-05 6.90778528386e-05 5.19017073281e-05 +UniRef50_UPI0003A13922 ABC transporter 3.76200876646e-05 6.34489099345e-06 -3.12751966712e-05 +UniRef50_UPI00042B18AB Proline iminopeptidase isoform 3 7.56568137949e-06 1.00441475278e-05 2.47846614831e-06 +UniRef50_UPI00046F35A8 hypothetical protein, partial 3.45872847578e-05 4.09013656304e-05 6.3140808726e-06 +UniRef50_X1RXQ4 Marine sediment metagenome DNA, contig 0.000422697437022 7.63722139661e-05 -0.000346325223056 +UniRef50_A8LHX0 0.00476693106279 0.00285613655247 -0.00191079451032 +UniRef50_C1N038 Predicted protein 5.37254368201e-05 1.65793304886e-05 -3.71461063315e-05 +UniRef50_Q5HLE0 Polyphosphate kinase 0.0111692876278 0.00347613759979 -0.00769315002801 +UniRef50_UPI0003B428E6 branched chain amino acid ABC transporter permease 7.97417099361e-05 0.000289420935971 0.000209679226035 +UniRef50_F0KJN4 0.000353733377151 0.00727334262613 0.00691960924898 +UniRef50_G7U3Y8 0.00064619232184 0.0065661311498 0.00591993882796 +UniRef50_B9QYQ7 0.000366633845086 0.000338850348176 -2.778349691e-05 +UniRef50_A0A023RT23 LysR family transcriptional regulator 0.000159501122048 0.00613738168926 0.00597788056721 +UniRef50_P16689 Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase 0.00366142965681 0.000424494813777 -0.00323693484303 +UniRef50_C2SK84 Transposase for insertion sequence element IS257 in transposon Tn4003 0.00476974077466 0.00144964613488 -0.00332009463978 +UniRef50_P32703 0.00283790093713 0.0010116014054 -0.00182629953173 +UniRef50_P32704 0.00269547653981 0.00135784633589 -0.00133763020392 +UniRef50_B1ME21 Protein NrdI 1.57867696249e-05 4.73310388074e-05 3.15442691825e-05 +UniRef50_P08189 Protein FimF 0.00149532564932 0.000335587164987 -0.00115973848433 +UniRef50_UPI0003621B16 hypothetical protein 3.37671428779e-06 3.99574415264e-06 6.1902986485e-07 +UniRef50_UPI0003AA87E8 hypothetical protein 0.000196792047996 0.000184817699091 -1.1974348905e-05 +UniRef50_Q2LUP9 Bifunctional protein FolD 0.0113979612122 0.00497712229982 -0.00642083891238 +UniRef50_E6JRH7 0.00150424330657 6.42280882479e-05 -0.00144001521832 +UniRef50_UPI00035EC48D metallophosphoesterase 2.91306129511e-05 5.69229973607e-05 2.77923844096e-05 +UniRef50_K2CFL6 2.10888702392e-05 9.41839499346e-05 7.30950796954e-05 +UniRef50_UPI00041B2B13 ATP dependent DNA helicase RuvA 7.37862446398e-06 5.46389032146e-05 4.72602787506e-05 +UniRef50_F0L985 0.00740829580323 0.00189738373436 -0.00551091206887 +UniRef50_UPI0003686526 hypothetical protein 7.82439291492e-05 5.8785184662e-05 -1.94587444872e-05 +UniRef50_A6LY24 Amino acid permease associated region 0.000229256886544 0.000513160263102 0.000283903376558 +UniRef50_D0L5P3 0.000151187237433 0.00602420639923 0.0058730191618 +UniRef50_UPI000476F8E5 hypothetical protein 1.20422675296e-05 1.51987042787e-05 3.1564367491e-06 +UniRef50_UPI0004421CDD PREDICTED 5.04832280869e-06 1.66785084755e-06 -3.38047196114e-06 +UniRef50_F0P387 Signal peptidase I 0.0108914027252 0.00206609360669 -0.00882530911851 +UniRef50_Q6L2D8 Pyridoxal biosynthesis lyase PdxS 1.5806335407e-05 1.04155553404e-05 -5.3907800666e-06 +UniRef50_P37649 Protein YhjK 0.00755568256295 0.000979625313929 -0.00657605724902 +UniRef50_G7U7J9 Haloacid dehalogenase like hydrolase 0.000157285828689 0.000719185659773 0.000561899831084 +UniRef50_UPI000390127B Transcriptional regulatory protein LiaR 0.000233256017827 0.00295786848942 0.00272461247159 +UniRef50_K1SRL1 Adhesin like protein 3.99857154855e-05 2.74405140594e-05 -1.25452014261e-05 +UniRef50_UPI00047A852C hypothetical protein 4.49279546827e-05 1.73751476718e-05 -2.75528070109e-05 +UniRef50_A6LY09 RNA polymerase, sigma 24 subunit, ECF subfamily 0.00106835657223 0.000666127906449 -0.000402228665781 +UniRef50_A6LTK4 0.000672425677579 0.00155904222972 0.000886616552141 +UniRef50_A7HN65 Glucose 1 phosphate adenylyltransferase 7.25516331892e-06 1.35400264878e-05 6.28486316888e-06 +UniRef50_UPI000377BA4D hypothetical protein 8.72144248627e-05 2.46644594685e-05 -6.25499653942e-05 +UniRef50_UPI0003A503E2 hypothetical protein 8.72547786887e-05 5.64451931057e-05 -3.0809585583e-05 +UniRef50_A3PP31 0.00700559017192 0.00335348715825 -0.00365210301367 +UniRef50_X2XBL9 2.28646296284e-05 4.63387178885e-05 2.34740882601e-05 +UniRef50_UPI0004759CFA L iditol 2 dehydrogenase 4.84612896173e-06 2.31343228509e-05 1.82881938892e-05 +UniRef50_Q1GD82 0.000253264392922 4.13832290256e-05 -0.000211881163896 +UniRef50_Q67KH9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.85494127818e-05 9.03198554352e-06 -9.51742723828e-06 +UniRef50_O26346 Histidine tRNA ligase 0.00302034650922 0.00213877165269 -0.00088157485653 +UniRef50_U3SYS1 Gamma aminobutyrate permease 0.000264075443635 0.00419501029901 0.00393093485537 +UniRef50_Q8DYM7 Protein translocase subunit SecA 2 0.000203308687323 0.00278889185501 0.00258558316769 +UniRef50_Q87C91 Phosphate binding protein PstS 0.00380103938268 0.00187764177255 -0.00192339761013 +UniRef50_R6P001 1.07984047693e-05 1.51640521827e-05 4.3656474134e-06 +UniRef50_UPI000361C657 hypothetical protein 9.63270075858e-06 1.50718041685e-05 5.43910340992e-06 +UniRef50_A5IWE0 0.0489763846154 0.00976123020229 -0.0392151544131 +UniRef50_K2AF05 0.00189667906072 0.000820793165379 -0.00107588589534 +UniRef50_UPI0003C10267 5.21784097736e-05 0.000164200068792 0.000112021659018 +UniRef50_P39393 0.00163744657209 0.000790884139125 -0.000846562432965 +UniRef50_Q1BTH0 Formamidopyrimidine DNA glycosylase 7.79070973519e-06 5.55792664548e-05 4.77885567196e-05 +UniRef50_D8JEM9 0.000107545865766 0.00390871732591 0.00380117146014 +UniRef50_F3GHC1 Putative monovalent cation H+ antiporter subunit A 4.09319752908e-05 1.40792035729e-05 -2.68527717179e-05 +UniRef50_F9KEG1 0.000149485901325 0.000152088875647 2.602974322e-06 +UniRef50_R4VNY3 Membrane protein 0.00323164852676 0.00139537731812 -0.00183627120864 +UniRef50_P22874 Mercuric resistance operon regulatory protein 0.0112728209962 0.00335899893494 -0.00791382206126 +UniRef50_P0AGB8 ECF RNA polymerase sigma E factor 0.0087249418895 0.000973191973255 -0.00775174991624 +UniRef50_UPI00037E5BDF hypothetical protein 3.40392583036e-05 1.93289904637e-05 -1.47102678399e-05 +UniRef50_Q4SV05 Chromosome undetermined SCAF13832, whole genome shotgun sequence 3.17490956244e-05 1.17616036438e-05 -1.99874919806e-05 +UniRef50_A3Q0W3 4.12182937325e-05 4.49159110089e-06 -3.67267026316e-05 +UniRef50_A2RM05 Queuosine precursor transporter QueT 0.00616344963098 0.00245359464467 -0.00370985498631 +UniRef50_Q6LLQ5 Probable GTP binding protein EngB 0.0014291691902 0.00240178032016 0.00097261112996 +UniRef50_UPI00041CCB11 sugar ABC transporter permease 0.00025376264264 0.000416512762488 0.000162750119848 +UniRef50_A6V513 2.00968583281e-05 1.40968321374e-05 -6.0000261907e-06 +UniRef50_A0A026BBH0 Aldo keto reductase 0.00511998073964 0.00374396197367 -0.00137601876597 +UniRef50_A4WXV7 Transcriptional regulator, GntR family 0.000846924300327 0.000253490734069 -0.000593433566258 +UniRef50_M9R7V5 Cold shock protein 0.0043138275906 0.00285376436176 -0.00146006322884 +UniRef50_O58411 Pyruvate ketoisovalerate oxidoreductases common subunit gamma 0.00506756246733 0.00167160399168 -0.00339595847565 +UniRef50_A0A023RSV7 Reverse transcriptase 0.000190569586946 0.00647196514987 0.00628139556292 +UniRef50_D4HAZ8 0.000200256312201 0.00456455867613 0.00436430236393 +UniRef50_I6X2N5 0.000133860279732 0.00348944429041 0.00335558401068 +UniRef50_P25960 Type 4 prepilin like proteins leader peptide processing enzyme 0.0024017910303 0.000643557551107 -0.00175823347919 +UniRef50_D5WUG2 5.30583811632e-05 0.00107859269588 0.00102553431472 +UniRef50_Q6D201 Sulfate thiosulfate import ATP binding protein CysA 0.000210110867828 9.15364530134e-05 -0.000118574414815 +UniRef50_Q04DG6 1.13014809771e-05 5.06179038489e-06 -6.23969059221e-06 +UniRef50_UPI0003756849 succinylarginine dihydrolase 1.14191926217e-05 3.90398405948e-05 2.76206479731e-05 +UniRef50_UPI000473959B 3 oxoacyl ACP synthase, partial 1.01030393279e-05 2.64550794357e-05 1.63520401078e-05 +UniRef50_C4XLK3 DNA directed RNA polymerase subunit alpha 8.76701431844e-06 1.4299277781e-05 5.53226346256e-06 +UniRef50_O33641 Outer membrane protease IcsP 0.00396340291988 0.000823282908657 -0.00314012001122 +UniRef50_UPI0002197747 haloacid dehalogenase 5.4464920978e-05 0.000138764290221 8.4299369243e-05 +UniRef50_P49778 Elongation factor P 0.0243691113653 0.00281104347607 -0.0215580678892 +UniRef50_P0AD45 Quorum sensing regulator protein G 0.00276463240917 0.000283051155147 -0.00248158125402 +UniRef50_B9JX75 1.18971460875e-05 1.95629989661e-05 7.6658528786e-06 +UniRef50_UPI00046CD0D4 ABC transporter permease 0.000289851814929 2.60264482471e-05 -0.000263825366682 +UniRef50_F0Y8P3 6.36920694229e-05 0.000120610750605 5.69186811821e-05 +UniRef50_V7EH29 2.13034294627e-05 4.23040068502e-05 2.10005773875e-05 +UniRef50_Q5HN04 0.0103739905284 0.00490301659956 -0.00547097392884 +UniRef50_Q6GJF6 Dihydroneopterin aldolase 0.00232431798977 0.000494944198654 -0.00182937379112 +UniRef50_Q5HN02 0.00511203516334 0.00151265278619 -0.00359938237715 +UniRef50_UPI00046B8737 3.20490075933e-05 1.87948343769e-05 -1.32541732164e-05 +UniRef50_UPI00037E9D63 hypothetical protein 1.50319541718e-05 1.22409268427e-05 -2.7910273291e-06 +UniRef50_C0HG71 3.13634432924e-05 5.03385356753e-05 1.89750923829e-05 +UniRef50_P32929 Cystathionine gamma lyase 0.000319565139608 0.000212968777781 -0.000106596361827 +UniRef50_UPI00046313F5 translation initiation factor IF 3 2.20513827302e-05 2.3759145088e-05 1.7077623578e-06 +UniRef50_B7KEP3 Bifunctional protein FolD 2.36352233125e-05 2.81908793437e-06 -2.08161353781e-05 +UniRef50_V4Q726 0.000164972710783 3.58789719943e-05 -0.000129093738789 +UniRef50_H9KRJ0 8.65056717976e-05 0.000108560576405 2.20549046074e-05 +UniRef50_A0A031F6L1 Porin O 0.000936219727163 0.000395428249963 -0.0005407914772 +UniRef50_UPI0003B54A55 chemotaxis protein 0.000110740462558 1.11214277493e-05 -9.96190348087e-05 +UniRef50_P0A2Y1 Arginase 0.00219165048988 0.000946983052827 -0.00124466743705 +UniRef50_S9RRM6 High affinity K+ transport system, ATPase chain B 1.5874461802e-05 3.8665645654e-05 2.2791183852e-05 +UniRef50_UPI0004745E14 hypothetical protein 8.41849552099e-06 1.16685248209e-05 3.25002929991e-06 +UniRef50_B9KUL3 GCN5 related N acetyltransferase 0.043070442519 0.00133126895675 -0.0417391735623 +UniRef50_Q98H85 Cation efflux system protein 0.00724470395197 0.000916990353245 -0.00632771359873 +UniRef50_I7EYE9 0.000325030721334 7.38653142985e-05 -0.000251165407036 +UniRef50_W8S3E2 0.000180059545 4.07898024684e-05 -0.000139269742532 +UniRef50_UPI000376F465 hypothetical protein 1.71213333445e-05 1.28125491575e-05 -4.308784187e-06 +UniRef50_J5HWF5 7.28087787662e-05 0.00031492698931 0.000242118210544 +UniRef50_Q9JS61 Dihydroxy acid dehydratase 0.00762570552755 0.0748872952463 0.0672615897188 +UniRef50_B1Y6A6 Periplasmic nitrate reductase 0.0113032890575 0.00224511089736 -0.00905817816014 +UniRef50_K4VY87 0.00106921300841 0.000777149224201 -0.000292063784209 +UniRef50_UPI000363A65E ABC transporter ATP binding protein 2.80029543414e-05 8.39860800505e-06 -1.96043463364e-05 +UniRef50_M1MNB9 Transcriptional regulator, RpiR family 0.000159276788545 0.00128182932957 0.00112255254102 +UniRef50_P75980 Putative protein BeeE from lambdoid prophage e14 region 0.00426428940886 0.000440771201791 -0.00382351820707 +UniRef50_D2J7Y2 0.0501460901656 0.0110872105218 -0.0390588796438 +UniRef50_L0EBD3 Lipoprotein, YaeC family 0.000233604285751 0.000994010170098 0.000760405884347 +UniRef50_A4EAB4 1.24116549453e-06 0.00031575802666 0.000314516861165 +UniRef50_A0A017HMY7 0.00288134441751 0.000277129587083 -0.00260421483043 +UniRef50_UPI0003700BFB hypothetical protein 0.000109587993289 3.17183709175e-05 -7.78696223715e-05 +UniRef50_UPI000373B788 hypothetical protein 7.24868328232e-05 1.4988848442e-05 -5.74979843812e-05 +UniRef50_A0A011PBV4 0.000430592382719 0.000126941167813 -0.000303651214906 +UniRef50_F7R3U3 Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein 0.00265905521061 0.000725277465772 -0.00193377774484 +UniRef50_P51007 Transcriptional activator protein FnrL 0.010924379198 0.00336039348192 -0.00756398571608 +UniRef50_V9AR48 2.9854908243e-05 0.000116380461046 8.6525552803e-05 +UniRef50_UPI00035F62EF hypothetical protein 0.000302054295602 0.000210047016396 -9.2007279206e-05 +UniRef50_B9KX33 FlaF protein 0.0219735267976 0.00427982755914 -0.0176936992385 +UniRef50_Q2JHF7 Acetylglutamate kinase 6.19591189608e-05 2.22433417259e-05 -3.97157772349e-05 +UniRef50_UPI000262920F ATP dependent Clp protease adapter protein clpS 0.000750503540748 4.59388084051e-05 -0.000704564732343 +UniRef50_UPI0002D72F69 hypothetical protein 1.29567753991e-05 3.85614977173e-05 2.56047223182e-05 +UniRef50_A1AVM5 DNA directed RNA polymerase subunit alpha 1.16934550292e-05 8.6884601404e-06 -3.0049948888e-06 +UniRef50_Q3IZ91 Crotonyl CoA reductase 0.0108533022874 0.00290603747031 -0.00794726481709 +UniRef50_B5F3L0 Protein YebF 0.000319903380388 0.000989888397308 0.00066998501692 +UniRef50_D9SWY9 Phosphofructokinase 0.00108413797722 0.000982013686033 -0.000102124291187 +UniRef50_M9RJL9 0.000379127393571 4.86416934213e-05 -0.00033048570015 +UniRef50_B5YDB0 Thymidine kinase 1.91510515853e-05 2.88785795692e-05 9.7275279839e-06 +UniRef50_UPI00023772DA putative transmembrane efflux protein of the MFS type 1.40065594042e-05 6.94387244008e-06 -7.06268696412e-06 +UniRef50_UPI00038F2DE3 1.62392071367e-05 6.95892921192e-05 5.33500849825e-05 +UniRef50_Q5Z8D5 Os01g0349000 protein 1.134658825e-05 6.76041932905e-05 5.62576050405e-05 +UniRef50_UPI000361B676 hypothetical protein 4.93829784593e-05 5.05574345641e-06 -4.43272350029e-05 +UniRef50_A6U352 0.000857922701941 0.000550279574895 -0.000307643127046 +UniRef50_UPI0003681885 hypothetical protein, partial 1.87512100193e-06 2.47073470555e-06 5.9561370362e-07 +UniRef50_X1XJA7 0.00414672156631 0.00429582582897 0.00014910426266 +UniRef50_Q5HK08 Beta hemolysin 0.00913599284771 0.00540851226132 -0.00372748058639 +UniRef50_UPI000237AA65 binding protein dependent transporter inner membrane component 6.1846068264e-05 9.91302653334e-05 3.72841970694e-05 +UniRef50_Q3J7A3 Adenylate kinase 7.92539999372e-06 2.42494351445e-05 1.63240351508e-05 +UniRef50_Q2FFI7 Adenylosuccinate lyase 0.0421063992613 0.0492150615458 0.0071086622845 +UniRef50_K1PM14 Threonine synthase like 2 3.34492692877e-06 7.32800194701e-06 3.98307501824e-06 +UniRef50_P14789 Protease LasA 0.000346160743749 0.000233451940873 -0.000112708802876 +UniRef50_Q9RXH7 Fatty acid CoA ligase, putative 7.50966821352e-05 0.017791347335 0.0177162506529 +UniRef50_Q17VI1 Carbamoyl phosphate synthase small chain 0.000111572213456 0.00312544472898 0.00301387251552 +UniRef50_G2QDG1 1.5801699577e-06 1.35536304113e-06 -2.2480691657e-07 +UniRef50_Q47AK8 Transcriptional regulator, BolA protein family 2.64940892145e-05 8.13834753557e-05 5.48893861412e-05 +UniRef50_A6UYT5 0.000274048041324 0.000738448811562 0.000464400770238 +UniRef50_A6LPC3 ATP dependent helicase deoxyribonuclease subunit B 0.000494562618109 0.00173729230968 0.00124272969157 +UniRef50_I6U222 ABC transporter permease 0.00401912504961 0.00180066840691 -0.0022184566427 +UniRef50_P05804 Beta glucuronidase 0.00113750019631 0.000206055348713 -0.000931444847597 +UniRef50_E0TN47 4.99100029369e-05 9.12410005749e-05 4.1330997638e-05 +UniRef50_Q09677 0.000647118838034 0.00276447848459 0.00211735964656 +UniRef50_D3QCP0 0.0173476716169 0.00572999287322 -0.0116176787437 +UniRef50_P58342 Copper transporting ATPase 2 4.40081108864e-06 0.00012453931293 0.000120138501841 +UniRef50_Q3JV89 4.40752835366e-06 1.72728233748e-05 1.28652950211e-05 +UniRef50_F2AIV2 0.00260719677038 0.000232413915278 -0.0023747828551 +UniRef50_UPI00040366D8 cardiolipin synthetase 2.33762738432e-05 3.62849061332e-06 -1.97477832299e-05 +UniRef50_UPI000477CEDC competence protein ComL 0.000490759753637 0.000192020709849 -0.000298739043788 +UniRef50_E4TDW5 DNA methylase N 4 N 6 domain protein 0.000207030706866 0.00576410520652 0.00555707449965 +UniRef50_A5IR33 Prophage antirepressor 0.00741134670854 0.00384056768113 -0.00357077902741 +UniRef50_Q5HEW0 Serine protease SplA 0.00734905356531 0.000507047884434 -0.00684200568088 +UniRef50_A6LV33 AAA ATPase 0.000206348090817 0.00143659586125 0.00123024777043 +UniRef50_B1M3E9 Binding protein dependent transport systems inner membrane component 0.00668225323777 0.00138481947429 -0.00529743376348 +UniRef50_UPI0002C36421 PREDICTED 5.21652074428e-05 6.27352751496e-05 1.05700677068e-05 +UniRef50_Q2FGH0 Superoxide dismutase [Mn Fe] 1 0.00747540721377 0.00037720515265 -0.00709820206112 +UniRef50_UPI0003B79D68 peptide ABC transporter permease 0.000205176288339 0.000113131587831 -9.2044700508e-05 +UniRef50_X0RZB2 Marine sediment metagenome DNA, contig 1.7601830662e-05 1.93984529218e-05 1.7966222598e-06 +UniRef50_UPI00036B0C57 hypothetical protein, partial 0.000113381181349 0.0625668048801 0.0624534236988 +UniRef50_UPI000362FAB4 hypothetical protein 0.000125823749883 1.9383129883e-05 -0.00010644062 +UniRef50_Q73X87 Ribonuclease PH 0.00667418467342 0.00421694454862 -0.0024572401248 +UniRef50_UPI00037598D9 hypothetical protein 9.71883093639e-06 1.37287971546e-05 4.00996621821e-06 +UniRef50_V4Z1T8 4.4276361754e-06 3.63074346043e-06 -7.9689271497e-07 +UniRef50_W7WAI9 2.31705772358e-05 6.49857500581e-06 -1.667200223e-05 +UniRef50_D0K7A4 IucC family siderophore biosynthesis protein 0.01365102113 0.00393519815943 -0.00971582297057 +UniRef50_I1ZP85 1.11177068986e-05 0.00470009831517 0.00468898060827 +UniRef50_Q3IV82 0.0254352988171 0.00648290318177 -0.0189523956353 +UniRef50_Q3IV81 0.00702869045209 0.000846077209436 -0.00618261324265 +UniRef50_A6M1G7 Thiamine pyrophosphate protein domain protein TPP binding 0.000685745318784 0.00120017689762 0.000514431578836 +UniRef50_F6D2B8 ABC transporter related protein 0.00368202428849 0.000246439531448 -0.00343558475704 +UniRef50_A5UMH6 0.00337213048898 0.000635089688595 -0.00273704080039 +UniRef50_C4J6F8 8.09529774758e-06 0.000146767206662 0.000138671908914 +UniRef50_Q3IV88 0.0101713007153 0.00049731587432 -0.00967398484098 +UniRef50_UPI00037A900D hypothetical protein, partial 7.8402376145e-05 1.73955881179e-05 -6.10067880271e-05 +UniRef50_O31678 NADPH dependent 7 cyano 7 deazaguanine reductase 0.0165607479755 0.0115988485796 -0.0049618993959 +UniRef50_UPI0003707B6D hypothetical protein 1.53325344607e-05 7.68099452447e-06 -7.65153993623e-06 +UniRef50_W0H2V6 Hemolysin activator protein 0.000552041371149 0.000146559158908 -0.000405482212241 +UniRef50_O26230 Probable deoxyhypusine synthase 0.00262093867135 0.00236227762256 -0.00025866104879 +UniRef50_UPI0003B47108 PREDICTED 4.84672197334e-06 9.24871027547e-06 4.40198830213e-06 +UniRef50_Q8KA28 3 oxoacyl [acyl carrier protein] synthase 1 0.0103911558271 0.0119304306329 0.0015392748058 +UniRef50_P0A2X7 Carbamate kinase 1 0.0176563649554 0.0140878144938 -0.0035685504616 +UniRef50_E4N8R6 1.31310347922e-05 5.85092373542e-05 4.5378202562e-05 +UniRef50_UPI0003B30ABB sodium 3.24893264685e-05 1.33350963211e-05 -1.91542301474e-05 +UniRef50_R0F7E9 Molybdopterin guanine dinucleotide biosynthesis protein MobA 2.7449217049e-05 2.74497453582e-05 5.283092e-10 +UniRef50_UPI0002F30145 50S ribosomal protein L3 5.08462694234e-06 7.21831173316e-05 6.70984903893e-05 +UniRef50_F0MZ05 0.000493613804407 0.000289053871314 -0.000204559933093 +UniRef50_C6WR75 Short chain dehydrogenase reductase SDR 0.000111134245983 0.00831285132515 0.00820171707917 +UniRef50_UPI00037F0FC3 hypothetical protein 1.18623493346e-05 0.00226315081611 0.00225128846678 +UniRef50_R5WF49 1.98798999584e-06 3.82966355237e-05 3.63086455279e-05 +UniRef50_UPI000255E7F9 MerR family transcriptional regulator 0.000926711715395 0.000120373524491 -0.000806338190904 +UniRef50_Q5E4V6 Ribose import ATP binding protein RbsA 0.00031862893321 0.00146875485522 0.00115012592201 +UniRef50_G7SI90 8.79531428448e-06 1.55116645269e-05 6.71635024242e-06 +UniRef50_Q837G3 Formamidopyrimidine DNA glycosylase 8.60554416956e-06 0.00835777457458 0.00834916903041 +UniRef50_Q9KPS2 Na translocating NADH quinone reductase subunit B 0.000833720765893 0.00287670683851 0.00204298607262 +UniRef50_A1WG05 Dimethylmenaquinone methyltransferase 0.00530308289461 0.00136944030877 -0.00393364258584 +UniRef50_D0KX67 6.16053119243e-06 0.000247837433278 0.000241676902086 +UniRef50_E6K041 GTPase HflX 0.000343165745867 0.00449558393003 0.00415241818416 +UniRef50_Q54277 Dihydrofolate reductase 2.40732337741e-05 0.000779643301974 0.0007555700682 +UniRef50_UPI00046CCCAD hypothetical protein 3.1077415077e-05 1.01431396247e-05 -2.09342754523e-05 +UniRef50_UPI0003A0652D peptidase C60 2.28290831091e-05 9.38643106147e-06 -1.34426520476e-05 +UniRef50_G7M701 NAD dependent epimerase dehydratase 0.000148811822151 0.00127586044159 0.00112704861944 +UniRef50_E0NNQ0 0.000247274649087 0.00254914725009 0.002301872601 +UniRef50_O26325 Cyclic 2,3 diphosphoglycerate synthetase 0.00388200704292 0.000669868465534 -0.00321213857739 +UniRef50_Q9RX12 0.00025873805213 0.0428070649503 0.0425483268982 +UniRef50_UPI0004757A78 replication initiation protein RepC 4.82053261111e-05 1.27556738889e-05 -3.54496522222e-05 +UniRef50_Q4FUR4 Homoserine O acetyltransferase 0.000106053140962 0.00807706923074 0.00797101608978 +UniRef50_Q5HP79 3 phosphoshikimate 1 carboxyvinyltransferase 0.0171545815073 0.00545575553442 -0.0116988259729 +UniRef50_A4VYG8 Ribosomal RNA large subunit methyltransferase H 0.000894311910907 0.00230722898052 0.00141291706961 +UniRef50_UPI00046C9F03 hypothetical protein 2.78223735227e-06 4.78966086832e-05 4.51143713309e-05 +UniRef50_A6M2J1 Glycosyl transferase, group 1 0.000145631731206 0.00213450270197 0.00198887097076 +UniRef50_I1ENI9 3.03647275924e-05 3.20077048074e-05 1.642977215e-06 +UniRef50_A1WY05 Tryptophan synthase alpha chain 6.03454238986e-06 1.31086651197e-05 7.07412272984e-06 +UniRef50_UPI00047CE877 hypothetical protein, partial 2.50591108207e-05 0.000595332465114 0.000570273354293 +UniRef50_J7TB42 Oxygen insensitive NADH nitroreductase 0.00018874299443 0.00193124074851 0.00174249775408 +UniRef50_Q6A6Y6 6,7 dimethyl 8 ribityllumazine synthase 0.00164124342979 0.00473539781693 0.00309415438714 +UniRef50_X9LDU8 0.00437869009959 0.00115108929725 -0.00322760080234 +UniRef50_UPI000252BAC1 PREDICTED 2.35467222547e-05 4.04005921262e-05 1.68538698715e-05 +UniRef50_A8LU41 Replication protein B 0.0206527645079 0.00590632862231 -0.0147464358856 +UniRef50_C6ST62 0.00360577688688 0.000482031831339 -0.00312374505554 +UniRef50_C6ST67 0.00476603538458 0.00155231870474 -0.00321371667984 +UniRef50_P37780 dTDP 4 dehydrorhamnose 3,5 epimerase 1.03869520212e-05 3.445025868e-05 2.40633066588e-05 +UniRef50_UPI00037518CF hypothetical protein 9.46331512487e-07 1.14617432135e-05 1.0515411701e-05 +UniRef50_I7EP81 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.00424443357646 0.000649656259564 -0.0035947773169 +UniRef50_B2TS08 PHP domain protein 0.00163691463422 0.000256797134949 -0.00138011749927 +UniRef50_S9R0I2 9.93267750971e-05 2.3320126524e-05 -7.60066485731e-05 +UniRef50_K7VG66 4.12409083971e-06 2.49041144677e-05 2.0780023628e-05 +UniRef50_E3I2I3 PUCC protein 8.43480735608e-05 4.78283012381e-05 -3.65197723227e-05 +UniRef50_UPI00032A201E PREDICTED 1.26166630636e-05 1.67823392421e-05 4.1656761785e-06 +UniRef50_M2WAS0 4.87801433499e-07 2.152918866e-06 1.6651174325e-06 +UniRef50_D4H9P2 Amine oxidase 0.000217266859686 0.00649614133503 0.00627887447534 +UniRef50_R6G969 Hypoxanthine phosphoribosyltransferase 0.000592488113511 0.000708822406533 0.000116334293022 +UniRef50_P75684 0.00110954780239 0.000131624549324 -0.000977923253066 +UniRef50_A6L4U5 Altronate oxidoreductase 0.000150156451202 0.00429462944642 0.00414447299522 +UniRef50_Q5HNN3 Porphobilinogen deaminase 0.0122699608397 0.00392796608385 -0.00834199475585 +UniRef50_UPI00034C244F hypothetical protein 6.38888048112e-06 9.91684319403e-06 3.52796271291e-06 +UniRef50_UPI000467C74C hypothetical protein, partial 0.000135683874576 7.14726709925e-05 -6.42112035835e-05 +UniRef50_B0KQA4 Lipoprotein 0.000497180446663 0.000242726059064 -0.000254454387599 +UniRef50_B5Y813 7.13439341265e-05 5.48643350466e-06 -6.58575006218e-05 +UniRef50_Q46ZM0 sn glycerol 3 phosphate import ATP binding protein UgpC 0.0168706248213 0.00384318185498 -0.0130274429663 +UniRef50_UPI00041C29D4 acyl CoA dehydrogenase 5.54462639687e-06 2.71780250604e-05 2.16333986635e-05 +UniRef50_Q1MA75 Glutamate 5 kinase 0.000664940069619 0.00138435390009 0.000719413830471 +UniRef50_W2DD36 Pirin family protein 9.56373699016e-06 7.50921228771e-06 -2.05452470245e-06 +UniRef50_UPI000374B537 hypothetical protein 6.88597937187e-06 1.0470590916e-05 3.58461154413e-06 +UniRef50_D8JIN7 Diguanylate cyclase domain protein 5.62851871995e-05 0.00508647495217 0.00503018976497 +UniRef50_Q838L2 L rhamnose isomerase 0.00246771786606 0.00600039425772 0.00353267639166 +UniRef50_Q95XX1-3 Isoform c of Nicotinate phosphoribosyltransferase 8.96024584777e-06 1.66253822996e-05 7.66513645183e-06 +UniRef50_UPI0002558ADA RNA binding protein 5.75973883736e-06 6.03255532236e-06 2.72816485e-07 +UniRef50_E5QTA2 0.000107230539787 7.60645733524e-05 -3.11659664346e-05 +UniRef50_D8BS45 0.000114506174628 0.000473770115279 0.000359263940651 +UniRef50_F4GQ68 Acetolactate synthase 2 catalytic subunit 6.83851429081e-05 0.000387097362143 0.000318712219235 +UniRef50_U3SQS3 0.0050800647338 0.00159667324045 -0.00348339149335 +UniRef50_A6LWQ9 0.000369702478148 0.0017084374783 0.00133873500015 +UniRef50_A6LWQ8 0.0001909709893 0.00138984395529 0.00119887296599 +UniRef50_P55478 UPF0721 transmembrane protein y4hK 0.00136672589222 0.000716724846167 -0.000650001046053 +UniRef50_Q4PDQ3 1.23787024116e-05 1.34261010992e-05 1.0473986876e-06 +UniRef50_A6LWQ2 0.000187803974553 0.000315846743525 0.000128042768972 +UniRef50_UPI00035D39C5 MULTISPECIES 5.21231885978e-06 8.54319736737e-06 3.33087850759e-06 +UniRef50_UPI0002375F1F hypothetical protein 0.00143434354276 0.00048733713943 -0.00094700640333 +UniRef50_UPI00037B7293 hypothetical protein 3.01668644459e-06 4.56323211034e-06 1.54654566575e-06 +UniRef50_Q0ZKT3 ChrA 9.60524144667e-05 0.00138625496421 0.00129020254974 +UniRef50_Q5PGP5 Glutathione transport system permease protein GsiC 0.00187193432061 0.000193227942332 -0.00167870637828 +UniRef50_A1ISE9 SpoU methylase family protein 0.000263362317798 0.00350267031795 0.00323930800015 +UniRef50_B4V0E4 1.85448134736e-05 0.000178948633104 0.00016040381963 +UniRef50_A1WDW4 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000186955026974 5.36971005001e-05 -0.000133257926474 +UniRef50_UPI0003B33BE3 excinuclease ABC subunit A, partial 9.31159610723e-07 6.20396998906e-05 6.11085402799e-05 +UniRef50_UPI0003C7EA97 protein tyrosine kinase 2.17318396365e-05 2.44158850603e-05 2.6840454238e-06 +UniRef50_A0A023RVY2 Peroxidase 0.000225589236365 0.003209128431 0.00298353919463 +UniRef50_UPI0003B6B16C GumN family protein 2.72622024195e-05 1.2011127702e-05 -1.52510747175e-05 +UniRef50_UPI0003814F56 hypothetical protein, partial 0.00301368815027 0.000274683593385 -0.00273900455689 +UniRef50_K0SL40 1.16112264068e-05 3.79649919873e-06 -7.81472720807e-06 +UniRef50_UPI00035D3F59 hypothetical protein 0.000179290988471 7.7564287329e-05 -0.000101726701142 +UniRef50_E3EY41 0.000626528039592 2.06189650528e-05 -0.000605909074539 +UniRef50_UPI000371CC4C hypothetical protein, partial 3.17404198979e-05 2.03245374636e-05 -1.14158824343e-05 +UniRef50_UPI000471DA2C hypothetical protein, partial 6.66322239618e-05 5.16705616031e-05 -1.49616623587e-05 +UniRef50_R9ZP34 GntR family transcriptional regulator 0.000291120299886 0.000588671173145 0.000297550873259 +UniRef50_A5UJX8 Peptide nickel ABC transporter, permease component, DppB 0.00281784679336 0.00106670196846 -0.0017511448249 +UniRef50_Q47AM5 Phosphoribosyl ATP pyrophosphatase 9.53970735437e-05 5.17276217342e-05 -4.36694518095e-05 +UniRef50_A1B4P8 0.000582087481806 0.000100337529268 -0.000481749952538 +UniRef50_UPI000468F104 hypothetical protein 3.28664846183e-05 2.03183631001e-05 -1.25481215182e-05 +UniRef50_A0KXX9 Ion transport protein 0.00117690198404 0.000703051887205 -0.000473850096835 +UniRef50_B0VBT1 0.000222320577909 0.00616611339217 0.00594379281426 +UniRef50_UPI000366C56B hypothetical protein 2.82101963236e-05 2.43181287929e-05 -3.8920675307e-06 +UniRef50_UPI000463A6B8 carbonic anhydrase 1.66895300323e-05 2.37532247619e-05 7.0636947296e-06 +UniRef50_UPI0004791861 chemotaxis protein CheW 0.000165289930707 0.000105008894531 -6.0281036176e-05 +UniRef50_Q8CS22 Putative membrane protein insertion efficiency factor 0.0023666020019 0.00260573563408 0.00023913363218 +UniRef50_A8LHU2 Processing peptidase 0.0061055635639 0.000560812462369 -0.00554475110153 +UniRef50_D5WZX2 Poly beta hydroxybutyrate polymerase domain protein 0.00783147632262 0.00187480032019 -0.00595667600243 +UniRef50_UPI0003B3160E beta lactamase 2.68061958871e-06 3.62947109964e-05 3.36140914077e-05 +UniRef50_W4UEC1 0.000139898634813 0.000826457488646 0.000686558853833 +UniRef50_R7I9W9 Val start codon 3.99378741759e-05 5.96224488951e-05 1.96845747192e-05 +UniRef50_Q07QX1 NADH dehydrogenase 0.000255943443219 0.000780138338526 0.000524194895307 +UniRef50_A5E8J0 Heat inducible transcription repressor HrcA 0.00824710879027 0.00134813141531 -0.00689897737496 +UniRef50_A4VKS4 Lipoprotein, putative 0.000502826985466 0.000166219533874 -0.000336607451592 +UniRef50_Q2CAF3 Transposase orfA IS5 family element 0.000273300472288 0.000229676447605 -4.3624024683e-05 +UniRef50_L7VRM1 OadB 0.00414564638548 0.00197845163906 -0.00216719474642 +UniRef50_N6U3D2 Transposase 0.000359584983277 0.000159048564335 -0.000200536418942 +UniRef50_C1D0K2 0.00068931561726 0.0314794093342 0.0307900937169 +UniRef50_X5K3C1 Phosphoglucomutase phosphomannomutase family protein 0.000347179042659 0.000257411427881 -8.9767614778e-05 +UniRef50_UPI00026C6979 ABC type enterochelin transporter permease, partial 9.17249552513e-06 2.66222643533e-05 1.74497688282e-05 +UniRef50_A3PNM9 ROK family protein 0.00382484297307 0.000500338884245 -0.00332450408883 +UniRef50_P31675 Sugar efflux transporter A 0.00389116332432 0.00061441903723 -0.00327674428709 +UniRef50_P30417 Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase 0.000552919022573 0.000331816522686 -0.000221102499887 +UniRef50_Q9SH30 Probable copper transporting ATPase HMA5 1.53007726499e-06 5.07037312941e-05 4.91736540291e-05 +UniRef50_F6AYB7 Lipoprotein 3.06286651881e-05 1.21952881679e-05 -1.84333770202e-05 +UniRef50_Q8X7X9 Probable ATP dependent helicase DinG 0.00322257779892 0.000669475517634 -0.00255310228129 +UniRef50_P0AA62 Inner membrane protein YghB 0.00267941591725 0.000338148899085 -0.00234126701817 +UniRef50_A4VZ41 ATP dependent exoDNAse , alpha subunit helicase superfamily I member 0.000255591490141 0.00304429359698 0.00278870210684 +UniRef50_R9ZFU1 Ammonium transporter 0.00128362274926 0.00707748390358 0.00579386115432 +UniRef50_A5IQG6 Alpha beta hydrolase fold 0.00948232904894 0.000469190946785 -0.00901313810216 +UniRef50_A1VLE6 3.62644118822e-05 2.85316569017e-05 -7.7327549805e-06 +UniRef50_G7ZLK6 Galactosyl transferase 0.0107618562079 0.00255673810335 -0.00820511810455 +UniRef50_K2DS47 1.89413224876e-05 8.86269994962e-06 -1.0078622538e-05 +UniRef50_H6RPX4 6.35842519842e-06 0.000119884995349 0.000113526570151 +UniRef50_UPI00047AC889 ATPase P 3.17054757443e-06 4.53287265882e-05 4.21581790138e-05 +UniRef50_G7LZ49 Alpha beta hydrolase fold protein 0.000919843985708 0.00159953975806 0.000679695772352 +UniRef50_UPI000370CAD4 50S ribosomal protein L5 0.000987380905901 0.000560586160108 -0.000426794745793 +UniRef50_Q44290 Homocitrate synthase 1 5.82103379182e-05 9.73875440996e-06 -4.84715835082e-05 +UniRef50_K0TM89 0.000120319073387 2.28695027754e-05 -9.74495706116e-05 +UniRef50_UPI0003C7F990 histidine kinase 2.49103995888e-05 6.18451536442e-06 -1.87258842244e-05 +UniRef50_D7GFC8 Ppx GppA phosphatase family 0.000417042333463 0.00524774921477 0.00483070688131 +UniRef50_R6TT37 1.39623065708e-05 0.00059704367748 0.000583081370909 +UniRef50_H9UYD8 0.000269632849186 0.000506257208899 0.000236624359713 +UniRef50_P58586 Putative gluconeogenesis factor 0.00284581245179 0.000774722274249 -0.00207109017754 +UniRef50_UPI000473FA3F hypothetical protein, partial 0.000168743292593 0.000106953155524 -6.1790137069e-05 +UniRef50_F5YM75 ABC transporter, permease protein 0.000479988007449 0.000810661186474 0.000330673179025 +UniRef50_UPI0003619046 hypothetical protein 1.06745767645e-05 1.6010795515e-06 -9.073497213e-06 +UniRef50_UPI0003B69332 NADH dehydrogenase 1.77800789571e-06 5.70114121169e-06 3.92313331598e-06 +UniRef50_A6QE51 0.000865998240698 0.00124135629171 0.000375358051012 +UniRef50_Q7A528 UPF0354 protein SA1564 0.0195903990573 0.00930101942891 -0.0102893796284 +UniRef50_B9KRF2 0.00207758440124 6.59574698727e-05 -0.00201162693137 +UniRef50_Q5XAE3 Malonyl CoA acyl carrier protein transacylase 0.00550770081011 0.00301956989197 -0.00248813091814 +UniRef50_UPI00036445B6 MFS transporter 8.83300502232e-06 7.74061772693e-06 -1.09238729539e-06 +UniRef50_I7DEQ4 Trk system potassium uptake protein TrkA 0.00628145457055 0.00110415262574 -0.00517730194481 +UniRef50_UPI0003A5CBBE hypothetical protein 3.08863079482e-05 1.62378174148e-05 -1.46484905334e-05 +UniRef50_T1Y9W9 Regulator of kinase autophosphorylation inhibitor 0.0172299258589 0.00159841561035 -0.0156315102486 +UniRef50_R5QQK6 UPF0301 protein BN682_00876 3.75241223158e-05 7.38462311456e-05 3.63221088298e-05 +UniRef50_W4U2A1 5.0527468837e-05 0.00128758607023 0.00123705860139 +UniRef50_M9VDD9 Periplasmic binding protein 2.06951071981e-05 0.00149263552215 0.00147194041495 +UniRef50_Q2RS90 1.54913580894e-05 1.34892721421e-05 -2.0020859473e-06 +UniRef50_UPI00046448EA deaminase 9.09807857523e-06 6.89789078035e-05 5.98808292283e-05 +UniRef50_Q54TJ4 Probable ATP dependent RNA helicase ddx27 2.00718153452e-06 4.3864287513e-06 2.37924721678e-06 +UniRef50_W7K686 0.000391120335048 0.000217822850854 -0.000173297484194 +UniRef50_W5X6I0 Metallophosphoesterase 2.42185029341e-06 3.77254746648e-06 1.35069717307e-06 +UniRef50_D3QEQ6 Para aminobenzoate synthase, amidotransferase component PabAb 0.0110624267328 0.000955852892789 -0.01010657384 +UniRef50_A4SR46 Short chain dehydrogenase reductase 1.49224925967e-05 0.00418584934359 0.00417092685099 +UniRef50_U3TK30 Iron sulfur cluster assembly ATPase protein 2.96772838078e-05 0.000147004646892 0.000117327363084 +UniRef50_UPI0004412958 ribosomal protein S12 7.28483175509e-05 0.000178830794421 0.00010598247687 +UniRef50_Q92263 Glyceraldehyde 3 phosphate dehydrogenase 4.69732337339e-06 2.80583112081e-05 2.33609878347e-05 +UniRef50_R7PWP6 0.00289705369113 0.00202838482117 -0.00086866886996 +UniRef50_Q92PC8 5,6 dimethylbenzimidazole synthase 0.00214208927053 1.32389155389e-05 -0.00212885035499 +UniRef50_Q49W91 Na H(+) antiporter subunit A1 0.0186862266216 0.00660006311788 -0.0120861635037 +UniRef50_Q8RGJ4 Aspartate tRNA ligase 7.61572270731e-05 0.0312513917784 0.0311752345513 +UniRef50_Q0TBG1 Guanylate kinase 0.00198413837299 0.000796882842116 -0.00118725553087 +UniRef50_P08369 Inner membrane protein CreD 0.00325321608528 0.000421017665556 -0.00283219841972 +UniRef50_G7M6S6 Radical SAM domain protein 8.33302403623e-05 0.000720310090259 0.000636979849897 +UniRef50_B9T7I1 5.6460130937e-06 1.9875074788e-05 1.42290616943e-05 +UniRef50_A6LYI7 Polysaccharide deacetylase 0.000251099327394 0.00225574198931 0.00200464266192 +UniRef50_Q5LW47 50S ribosomal protein L24 0.00144776128338 0.0011983377356 -0.00024942354778 +UniRef50_UPI0003EAF802 PREDICTED 6.17504325624e-06 1.48888081776e-05 8.71376492136e-06 +UniRef50_F8WKJ0 0.0121834634069 0.0024411288099 -0.009742334597 +UniRef50_B3FTP2 Putative membrane protein 0.000219882923169 8.75166569277e-05 -0.000132366266241 +UniRef50_UPI0003BB74C6 PREDICTED 1.36041627187e-05 8.67984253906e-06 -4.92432017964e-06 +UniRef50_C4LL84 Sialic acid transporter 0.000180840546199 0.00827658309472 0.00809574254852 +UniRef50_UPI0003746324 hypothetical protein 3.6849670474e-06 1.0368839811e-05 6.6838727636e-06 +UniRef50_E8PBY1 AdiY 9.96005247615e-05 0.00674620957393 0.00664660904917 +UniRef50_B9KQL5 0.00175213030668 0.000470555047793 -0.00128157525889 +UniRef50_L0KL03 ABC type sugar transport system, periplasmic component 0.00772323312431 0.0038227277368 -0.00390050538751 +UniRef50_M3Y9H2 0.000103133635481 1.87017501852e-05 -8.44318852958e-05 +UniRef50_Q8YPE1 Acetyl coenzyme A synthetase 2.01613725332e-05 0.000231077632785 0.000210916260252 +UniRef50_B8FRY4 Periplasmic binding protein 0.0004592283376 0.0011664232256 0.000707194888 +UniRef50_UPI00016C42F5 drug resistance transporter, EmrB QacA subfamily protein, partial 2.61599585786e-05 3.21370098824e-05 5.9770513038e-06 +UniRef50_P0AC82 Lactoylglutathione lyase 0.00592452041641 0.00041506704306 -0.00550945337335 +UniRef50_Q8ZXL4 NH dependent NAD(+) synthetase 2.50654519738e-05 7.12486380937e-06 -1.79405881644e-05 +UniRef50_UPI00046D6304 hypothetical protein 3.3564706617e-06 3.820267938e-05 3.48462087183e-05 +UniRef50_P9WGB4 O succinylhomoserine sulfhydrylase 1.569442599e-05 1.36860564936e-05 -2.0083694964e-06 +UniRef50_A0A024HB78 Rod shape determining protein RodA 0.000387096275183 0.00486576159628 0.0044786653211 +UniRef50_UPI00047E14BB alpha amylase 5.58695593168e-06 4.23477883964e-05 3.67608324647e-05 +UniRef50_U5MX52 Macrolide export ATP binding permease protein MacB 5.85855130096e-05 0.000601686345668 0.000543100832658 +UniRef50_A5V3U8 3.56792049985e-05 0.000363613511276 0.000327934306277 +UniRef50_R1DQP4 3.80192761535e-05 2.38555019617e-05 -1.41637741918e-05 +UniRef50_A5ULR1 Predicted phosphatidylglycerophosphatase A related protein 0.00425209515452 0.000164674742667 -0.00408742041185 +UniRef50_I7BLG8 0.000308530298509 7.00973198006e-05 -0.000238432978708 +UniRef50_K7SKZ4 Glycosyl transferase, group 2 family 0.00906985349168 0.000712474767724 -0.00835737872396 +UniRef50_A0A018R4T4 Nitrate reductase Z subunit alpha 2.69275765937e-05 1.82185042295e-05 -8.7090723642e-06 +UniRef50_F3TY15 Serine aspartate repeat protein F 0.00332587517771 0.00117876559106 -0.00214710958665 +UniRef50_Q8DCB9 Non canonical purine NTP pyrophosphatase 3.35659091628e-05 3.25069822608e-05 -1.058926902e-06 +UniRef50_Z9KIC6 8.59889079894e-05 1.13356456323e-05 -7.46532623571e-05 +UniRef50_Q8E5U9 ATP synthase gamma chain 0.000411243278946 0.00309938393463 0.00268814065568 +UniRef50_UPI00047577E0 hypothetical protein 2.54964350921e-06 3.43698964308e-06 8.8734613387e-07 +UniRef50_K0LW41 0.00453083806435 0.000456899562284 -0.00407393850207 +UniRef50_P58205 Flagellar L ring protein 0.00405409179738 0.00161568316105 -0.00243840863633 +UniRef50_V5V8K7 Thiamine monophosphate kinase 0.000346412610349 0.00918996773844 0.00884355512809 +UniRef50_V8NK60 Octapeptide repeat protein T2 2.80105138267e-05 2.58497145237e-05 -2.160799303e-06 +UniRef50_L4WM60 Starvation sensing protein RspB 0.00149302501322 0.000947512667497 -0.000545512345723 +UniRef50_UPI00036B0F2C hypothetical protein 1.55923852647e-05 2.61928364828e-05 1.06004512181e-05 +UniRef50_UPI00046310F9 pseudoazurin 0.000523955257203 0.000193842457496 -0.000330112799707 +UniRef50_A0RKF7 Lipoyl synthase 1.42655462901e-05 4.81571787673e-05 3.38916324772e-05 +UniRef50_B5FM40 ATP phosphoribosyltransferase 0.00289929044295 0.00260195691064 -0.00029733353231 +UniRef50_Q0A4M5 ATP synthase subunit delta 0.000212070780251 0.00191295717107 0.00170088639082 +UniRef50_Q8DSS6 0.0072460574956 0.00418685173549 -0.00305920576011 +UniRef50_UPI0003B3C008 hypothetical protein 2.24330132509e-05 7.06496690325e-05 4.82166557816e-05 +UniRef50_E2QHF8 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.000529230083303 0.000553718822241 2.4488738938e-05 +UniRef50_UPI000364343F hypothetical protein 6.75603350749e-05 2.32268264439e-05 -4.4333508631e-05 +UniRef50_UPI000479AAE0 hypothetical protein 1.44325942474e-05 7.06273563612e-06 -7.36985861128e-06 +UniRef50_UPI0003F0EEE2 PREDICTED 1.81394895088e-05 2.70127568248e-05 8.873267316e-06 +UniRef50_Q2CE09 0.000819219773903 0.000795243444249 -2.3976329654e-05 +UniRef50_Q16DQ1 Flagellar protein, putative 0.000106478118328 7.00449518916e-05 -3.64331664364e-05 +UniRef50_UPI0002DE5CBD hypothetical protein 0.00023660206564 2.11247094991e-05 -0.000215477356141 +UniRef50_Q9I3V2 0.000894920666348 0.000386955719131 -0.000507964947217 +UniRef50_I0EM06 Metalloendopeptidase related membrane protein 0.000663009076357 0.00459924750868 0.00393623843232 +UniRef50_R4ZBM2 0.000523942770178 0.000116725970428 -0.00040721679975 +UniRef50_P37604 D alanyl D alanine carboxypeptidase DacD 0.00283004851349 0.000538205133743 -0.00229184337975 +UniRef50_M3Z6H8 1.52963633229e-05 3.69297165746e-06 -1.16033916654e-05 +UniRef50_B0V4K0 Phosphoenolpyruvate protein phosphotransferase 5.2893879798e-05 0.00587787347158 0.00582497959178 +UniRef50_Q02LX5 Putative glutamate cysteine ligase 2 0.000395695830542 0.000145955537989 -0.000249740292553 +UniRef50_UPI0003FA526E trehalose synthase 8.16898465844e-06 4.96299308366e-05 4.14609461782e-05 +UniRef50_UPI00046A3CDD hypothetical protein 4.33853032839e-06 4.58677694342e-06 2.4824661503e-07 +UniRef50_R6Q6V2 Cytosine specific methyltransferase 4.73633612113e-05 0.00392354288315 0.00387617952194 +UniRef50_P39119 Citrate synthase 1 2.87032122391e-06 1.97519364397e-05 1.68816152158e-05 +UniRef50_I1JAZ8 0.000603475278435 0.000308693420057 -0.000294781858378 +UniRef50_UPI000362AC26 hypothetical protein 1.73383949038e-05 3.15740207617e-05 1.42356258579e-05 +UniRef50_UPI0002377E25 binding protein dependent transport systems inner membrane component, partial 0.00044875436205 0.000281171989782 -0.000167582372268 +UniRef50_UPI00046A4CBA hypothetical protein 2.30682586959e-06 2.50221029829e-06 1.953844287e-07 +UniRef50_Q0QEP2 ATP synthase subunit beta, mitochondrial 1.32370562884e-05 7.32487831724e-06 -5.91217797116e-06 +UniRef50_Q62KZ5 5.23989252616e-05 0.000313031088522 0.00026063216326 +UniRef50_C3PHK6 Lipoyl synthase 0.000197636643381 0.0113645633529 0.0111669267095 +UniRef50_I0C1U2 Trehalose operon transcriptional repressor 0.0174496358606 0.00252373966088 -0.0149258961997 +UniRef50_B4UIY8 3.64300386614e-05 2.52435933999e-05 -1.11864452615e-05 +UniRef50_Z5X3R4 Aconitate hydratase 1.34556872871e-05 0.000125426235039 0.000111970547752 +UniRef50_UPI000375B6D1 hypothetical protein 3.48540891708e-06 1.99367856433e-05 1.64513767262e-05 +UniRef50_F8HFF8 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.0123873869598 0.00780000724527 -0.00458737971453 +UniRef50_W5X5A5 0.000983116396219 3.61237502835e-05 -0.000946992645935 +UniRef50_I6U3N4 0.000730618042937 0.000851875111142 0.000121257068205 +UniRef50_W8YU14 0.00164587608939 0.000229814125973 -0.00141606196342 +UniRef50_UPI00035E9EF0 hypothetical protein 2.27321010622e-05 2.58446608692e-05 3.112559807e-06 +UniRef50_D7BMZ3 ABC transporter related protein 0.000139680305184 0.0060305719843 0.00589089167912 +UniRef50_UPI000255BEE2 transcriptional activator, partial 3.06117049653e-05 6.21453211802e-05 3.15336162149e-05 +UniRef50_D4HBV2 Transporter, major facilitator family protein 9.80483087926e-05 0.00286593275075 0.00276788444196 +UniRef50_Q1C8B1 Succinylornithine transaminase 0.0075443137861 0.0209197814473 0.0133754676612 +UniRef50_O34206 Alginate biosynthesis sensor protein KinB 0.00139144155009 0.000598076575463 -0.000793364974627 +UniRef50_W8RVI9 Iron sulfur cluster assembly ATPase protein SufC 1.42773010451e-05 0.000235689132928 0.000221411831883 +UniRef50_A7H1C4 GTP binding protein LepA 5.68718678529e-06 2.42084518542e-05 1.85212650689e-05 +UniRef50_UPI00046A28BD ABC transporter permease 6.65388561092e-06 6.75104204853e-06 9.715643761e-08 +UniRef50_Q3ADL9 Acetyl CoA carboxylase, biotin carboxylase 0.00312797972953 0.00135634583452 -0.00177163389501 +UniRef50_A2RED4 GntR family regulatory protein 0.00411125111341 0.00757022240469 0.00345897129128 +UniRef50_B7IBN3 Thiol 0.000183245625651 0.0180189703715 0.0178357247458 +UniRef50_UPI00047E966E cobinamide kinase 4.08956546798e-05 0.000119238621968 7.83429672882e-05 +UniRef50_W5X9G4 Methylthioadenosine phosphorylase 2.0325324158e-05 2.05286628687e-05 2.033387107e-07 +UniRef50_UPI000456030C hypothetical protein PFL1_02724 6.13871297414e-07 2.58194996202e-05 2.52056283228e-05 +UniRef50_I6TWK1 0.00475068834251 0.000820831638329 -0.00392985670418 +UniRef50_I0C256 0.00511584105806 0.00089489910665 -0.00422094195141 +UniRef50_P64549 0.0014181526131 3.87631026651e-05 -0.00137938951043 +UniRef50_UPI000477C3DA MULTISPECIES 1.66872935978e-05 9.3336860745e-06 -7.3536075233e-06 +UniRef50_UPI00047DA574 hypothetical protein 5.73782744043e-06 1.08651239756e-05 5.12729653517e-06 +UniRef50_F3WYB3 Phasin family domain protein 6.63778872882e-06 4.60061014549e-05 3.93683127261e-05 +UniRef50_A9CRC0 0.00023862256351 0.000122169320374 -0.000116453243136 +UniRef50_U5NMP2 0.0164672440999 0.00535497467104 -0.0111122694289 +UniRef50_UPI000262D125 DNA mismatch repair protein MutS 2.25112512046e-06 3.52247198232e-05 3.29735947027e-05 +UniRef50_Q6FZZ7 Threonine tRNA ligase 7.85472199989e-05 9.28668884306e-05 1.43196684317e-05 +UniRef50_UPI00036D1788 MULTISPECIES 2.50591866615e-05 0.000649490890808 0.000624431704147 +UniRef50_L7WQ34 0.00687790937647 0.00039551344445 -0.00648239593202 +UniRef50_P37748 O antigen polymerase 0.00260381567713 0.000816252516064 -0.00178756316107 +UniRef50_UPI0004672B4A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 3.42028284485e-06 3.66508832666e-06 2.4480548181e-07 +UniRef50_B9DK04 3.24042441426e-05 3.94060188209e-05 7.0017746783e-06 +UniRef50_A0A032Y4K4 8.79229969723e-05 0.000149934025056 6.20110280837e-05 +UniRef50_Q027L3 Ribonuclease 3 1.16301406405e-05 1.9867985309e-05 8.2378446685e-06 +UniRef50_F4DYP4 Adenylate cyclase 0.00123182095919 0.000327440563791 -0.000904380395399 +UniRef50_A0A024HYE6 4.52311897248e-06 6.84041908825e-06 2.31730011577e-06 +UniRef50_UPI0003B4674E peptide ABC transporter permease 6.79283804487e-06 2.55365825428e-05 1.87437444979e-05 +UniRef50_A6LR23 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 0.000393001645363 0.00131267784945 0.000919676204087 +UniRef50_F2MN23 Decarboxylase 1.61382631969e-05 0.00208772156579 0.00207158330259 +UniRef50_P11553 L fuculokinase 0.00291583361068 0.00154302324365 -0.00137281036703 +UniRef50_P46126 0.000109457885986 0.000127861071825 1.8403185839e-05 +UniRef50_P46122 0.0028053497348 0.00135820763149 -0.00144714210331 +UniRef50_Q88QE3 MORN domain protein 9.43714972093e-05 0.000151444464203 5.70729669937e-05 +UniRef50_A6LX93 NERD domain protein 0.000273110124948 0.00175084395613 0.00147773383118 +UniRef50_Q5F6R3 Agmatinase 0.000128688405295 0.00188687368667 0.00175818528137 +UniRef50_Q8XE09 2 keto 3 deoxy L rhamnonate aldolase 0.00142077779903 0.0087399968234 0.00731921902437 +UniRef50_A7FFQ7 Potassium transporting ATPase C chain 0.0015904658901 0.000475838802792 -0.00111462708731 +UniRef50_UPI0002197648 orotidine 5 phosphate decarboxylase 2.78390542434e-05 1.45259209371e-05 -1.33131333063e-05 +UniRef50_A6LX07 Na+ H+ antiporter 0.000212414153 0.000961485196865 0.000749071043865 +UniRef50_A7ZMU2 UPF0266 membrane protein YobD 0.000247802618498 0.00095359163165 0.000705789013152 +UniRef50_UPI000262832B transcriptional regulator 7.19489360017e-06 2.6826275205e-05 1.96313816048e-05 +UniRef50_UPI000378C8E7 hypothetical protein 1.69556494328e-05 1.96334875494e-05 2.6778381166e-06 +UniRef50_Q57MZ8 0.000222032794259 0.000250902743813 2.8869949554e-05 +UniRef50_UPI0004720DD8 hypothetical protein 6.00366868773e-05 4.04298216227e-05 -1.96068652546e-05 +UniRef50_Q1J0J9 DinB YfiT family metal binding protein 0.000808898547544 0.00543247240164 0.0046235738541 +UniRef50_UPI0003EDF3DD PREDICTED 3.9644834698e-05 0.00197850890829 0.00193886407359 +UniRef50_Q5HKZ8 Uroporphyrin III C methyltransferase, putative 0.00935563207926 0.00467699437783 -0.00467863770143 +UniRef50_UPI0003B7617D hypothetical protein 3.34897986333e-05 2.05205875927e-05 -1.29692110406e-05 +UniRef50_P37766 Acetate CoA transferase YdiF 0.00345693267139 0.000858467472737 -0.00259846519865 +UniRef50_I3TTL9 0.00172663849265 0.0017926301725 6.599167985e-05 +UniRef50_A6FD16 1.29186557541e-05 2.15364452649e-05 8.6177895108e-06 +UniRef50_UPI00040EB463 ATP synthase F0 subunit I 2.71472807436e-05 4.36824589561e-05 1.65351782125e-05 +UniRef50_Q49W05 0.0174443588119 0.0362409750643 0.0187966162524 +UniRef50_Q9I1M2 2 oxoisovalerate dehydrogenase subunit alpha 0.00077956081639 0.000324797928185 -0.000454762888205 +UniRef50_M1EBV1 ADAM metallopeptidase with thrombospondin type 1 motif, 4 5.92049981843e-05 0.000593789837823 0.000534584839639 +UniRef50_K0HKR5 Cobyrinic acid a,c diamide synthase 0.00016556013101 0.00608946784961 0.0059239077186 +UniRef50_M9VNR8 NAD glutamate dehydrogenase 0.000132143150579 0.0058982657746 0.00576612262402 +UniRef50_Q3J792 D alanine D alanine ligase 7.18377474282e-06 7.85341744493e-06 6.6964270211e-07 +UniRef50_B8JBE1 Sporulation domain protein 4.2692743156e-05 3.53387120655e-05 -7.3540310905e-06 +UniRef50_G7LIJ8 1 Deoxy D xylulose 5 phosphate synthase 1.13061556956e-05 0.000335981390994 0.000324675235298 +UniRef50_X2HFM3 Integral membrane protein 0.000589727450661 0.00403315293669 0.00344342548603 +UniRef50_A3PNQ6 Response regulator receiver protein 0.000927874677158 0.000428700176898 -0.00049917450026 +UniRef50_E8SGT7 Enoyl CoA hydratase Enoyl CoA hydratase [valine degradation] 3 hydroxyacyl CoA dehydrogenase 0.0144019718007 0.00220842313314 -0.0121935486676 +UniRef50_L8WI83 4.47946352985e-05 3.94861592991e-06 -4.08460193686e-05 +UniRef50_UPI0002000A30 amino acid decarboxylase, partial 0.000205620752056 7.3412754802e-05 -0.000132207997254 +UniRef50_D8JGA5 0.000444015505135 0.00524724665621 0.00480323115108 +UniRef50_A3ACF3 Adenylyltransferase and sulfurtransferase MOCS3 2.03815475252e-05 3.51526921673e-05 1.47711446421e-05 +UniRef50_UPI000382D11F MULTISPECIES 5.46540777085e-05 3.53461762128e-05 -1.93079014957e-05 +UniRef50_UPI0003720140 hypothetical protein 9.35847889313e-06 4.26616774038e-05 3.33031985107e-05 +UniRef50_I6SLY5 0.00194989782703 0.000649620490267 -0.00130027733676 +UniRef50_R9SLL8 Aspartate aminotransferase 0.00249365054423 0.000578852918232 -0.001914797626 +UniRef50_C6V3U5 ABC type phosphate transport system, periplasmic component 3.59437849583e-06 4.79451807033e-06 1.2001395745e-06 +UniRef50_UPI00041F446B ABC transporter 2.96185800746e-05 3.22887723043e-05 2.6701922297e-06 +UniRef50_UPI0001F27501 alcohol dehydrogenase 4.71691930261e-05 5.42434502021e-05 7.074257176e-06 +UniRef50_U2Z8B8 1.63216128414e-06 4.46073110882e-05 4.29751498041e-05 +UniRef50_UPI0003731013 hypothetical protein 1.01153540721e-05 7.58317783359e-05 6.57164242638e-05 +UniRef50_D7CNA1 Radical SAM domain protein 0.000117841619826 0.00156968829045 0.00145184667062 +UniRef50_Q494C7 ATP synthase subunit b 0.00262066954041 0.000499126825692 -0.00212154271472 +UniRef50_UPI00037C704A hypothetical protein 2.50653797004e-05 9.85449544691e-06 -1.52108842535e-05 +UniRef50_Q6F739 0.000126673150626 0.00747987013875 0.00735319698812 +UniRef50_W0GX12 0.000495724791456 0.000212521002504 -0.000283203788952 +UniRef50_UPI0003B6FA07 D ribose transporter ATP binding protein 3.87867719423e-05 5.65972031506e-06 -3.31270516272e-05 +UniRef50_Q3JRC8 4.39136378455e-06 9.37500967433e-05 8.93587329588e-05 +UniRef50_A4WVY8 Ribosomal RNA small subunit methyltransferase G 0.0240767955736 0.00436688197425 -0.0197099135993 +UniRef50_A0KE20 Alcohol dehydrogenase GroES domain protein 0.00202293022897 0.000702330283654 -0.00132059994532 +UniRef50_Q11KE0 1 deoxy D xylulose 5 phosphate synthase 0.00622679773782 0.00117900647749 -0.00504779126033 +UniRef50_H6PBH3 Thioredoxin 0.00144698730955 0.000513594269898 -0.000933393039652 +UniRef50_K0RB57 2.01287110526e-06 1.11410714606e-05 9.12820035534e-06 +UniRef50_N6UWS6 4.35010318814e-06 0.000137295685886 0.000132945582698 +UniRef50_P76234 0.00301443593152 0.000455507334399 -0.00255892859712 +UniRef50_P25696 Bifunctional enolase 2 transcriptional activator 3.37449354904e-06 6.92209598824e-05 6.58464663334e-05 +UniRef50_Q1D5H7 Mutator mutT protein 0.000237911337508 0.00850735990299 0.00826944856548 +UniRef50_S5YFQ1 3.12157187824e-05 2.45235243492e-05 -6.6921944332e-06 +UniRef50_A6M2M5 0.000369282072402 0.00105984744347 0.000690565371068 +UniRef50_UPI0002BA0B17 TetR family transcriptional regulator 0.000149705522759 0.000902517945504 0.000752812422745 +UniRef50_Q2G0B1 HTH type transcriptional regulator MgrA 0.0164022935074 0.000801768914466 -0.0156005245929 +UniRef50_UPI000288E524 OsmC like protein 4.00164027975e-05 3.78553577514e-05 -2.1610450461e-06 +UniRef50_UPI000382593D hypothetical protein 6.09282285559e-06 1.52354208688e-05 9.14259801321e-06 +UniRef50_X6KWY4 2.43899690743e-06 1.27279396103e-06 -1.1662029464e-06 +UniRef50_O27390 Diaminopimelate decarboxylase 0.00285997928363 0.00147257428961 -0.00138740499402 +UniRef50_UPI0003C19995 PREDICTED 0.000872134924636 0.00024459578201 -0.000627539142626 +UniRef50_UPI00030C3B7B hypothetical protein 1.09422601574e-06 4.41221369153e-06 3.31798767579e-06 +UniRef50_Q1GIB5 Peptide chain release factor 2 0.0100595482915 0.00234010565783 -0.00771944263367 +UniRef50_F0YJ84 8.6442833483e-06 1.39787530604e-05 5.3344697121e-06 +UniRef50_M1MBM8 ATP dependent DNA helicase, UvrD REP family 0.000407959711828 0.00037658250092 -3.1377210908e-05 +UniRef50_K7SJM7 PAC2 family protein 0.000610178886572 0.00802420346497 0.0074140245784 +UniRef50_M4UY53 Cytochrome c type biogenesis protein CcsA ResC 9.7123324747e-05 0.0022740105291 0.00217688720435 +UniRef50_UPI000197AB5D isopentenyldiphosphate isomerase 4.93267720338e-05 1.38231088656e-05 -3.55036631682e-05 +UniRef50_Q58131 Acetylornithine aminotransferase 0.00485537942714 0.00021837299274 -0.0046370064344 +UniRef50_A8L3S1 Malate dehydrogenase 0.000576661933149 0.000638388505671 6.1726572522e-05 +UniRef50_Q4MN04 0.000171527494283 0.000111284204402 -6.0243289881e-05 +UniRef50_D3E3T4 4Fe 4S binding domain containing protein 0.00236446726417 0.000331196304892 -0.00203327095928 +UniRef50_Q9RVU1 0.000190649489319 0.00476045311068 0.00456980362136 +UniRef50_UPI000329107E 7.21440624164e-05 0.000101739584679 2.95955222626e-05 +UniRef50_U5MZL4 Alpha amylase 0.000216560863261 0.00127994028691 0.00106337942365 +UniRef50_F2MMN9 Dihydroorotate dehydrogenase B ), catalytic subunit 1.39501414241e-05 0.000287179940213 0.000273229798789 +UniRef50_Q4L5S4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0124028405294 0.000755093583571 -0.0116477469458 +UniRef50_Q17Z65 NADH quinone oxidoreductase subunit N 9.516453501e-05 0.00328289703581 0.0031877325008 +UniRef50_Q3J1R9 Operon regulator SmoC 0.00533030401594 0.000450810953732 -0.00487949306221 +UniRef50_Q4KIS2 Adenine deaminase 0.00134927681215 0.00111450938242 -0.00023476742973 +UniRef50_Q9CE42 Peptide methionine sulfoxide reductase MsrA 2 0.00351285164222 0.000592608772976 -0.00292024286924 +UniRef50_A6WVY1 Dihydroorotate dehydrogenase 1.20612851113e-05 1.5325461556e-05 3.2641764447e-06 +UniRef50_P76083 3 hydroxyadipyl CoA dehydrogenase 0.00309784360577 0.000478713889632 -0.00261912971614 +UniRef50_P70996 0.0426866550656 0.00506606071203 -0.0376205943536 +UniRef50_UPI00036C37A7 hypothetical protein 2.11199299261e-05 5.05095807128e-05 2.93896507867e-05 +UniRef50_C7NA93 0.000538793590574 0.000998081432814 0.00045928784224 +UniRef50_V4QCD9 0.000646526870252 0.00031021711541 -0.000336309754842 +UniRef50_UPI00047938D1 hypothetical protein 3.03315233813e-06 6.05230968877e-06 3.01915735064e-06 +UniRef50_UPI0001C4F313 putative helicase 4.24803505171e-05 9.9185004842e-05 5.67046543249e-05 +UniRef50_A7IGG7 ABC transporter related 0.00779791569064 0.00173905375874 -0.0060588619319 +UniRef50_Q5FP90 Probable malate 4.16972529455e-06 9.93483164922e-06 5.76510635467e-06 +UniRef50_E7BHI6 8.83701660744e-07 7.85808497388e-05 7.76971480781e-05 +UniRef50_E3A2J2 4.16919151502e-05 3.48670506162e-05 -6.824864534e-06 +UniRef50_Q2NYD6 Anthranilate phosphoribosyltransferase 0.000214176878489 0.00261765960356 0.00240348272507 +UniRef50_F2R2E2 4.57840340516e-05 0.000113232821364 6.74487873124e-05 +UniRef50_Q9HV34 Polyamine aminopropyl transferase 2 0.000569849011664 0.000322497521783 -0.000247351489881 +UniRef50_UPI000412C9C3 hypothetical protein 1.62388212176e-05 3.92887577417e-06 -1.23099454434e-05 +UniRef50_UPI000441854A ribosomal protein L17 2.9683244738e-05 2.47146419333e-05 -4.9686028047e-06 +UniRef50_A6LWA6 Transcriptional regulator, TetR family 0.000207409883985 0.000294335586571 8.6925702586e-05 +UniRef50_G8VIN9 0.00121073743518 0.00614597913596 0.00493524170078 +UniRef50_R9NMN5 2.83677383042e-05 1.20619805475e-05 -1.63057577567e-05 +UniRef50_E8TFY3 Amidohydrolase 3 0.000155042993445 0.000124693893825 -3.034909962e-05 +UniRef50_Q8D5H0 GlpM protein 0.000334058397217 0.000215929365716 -0.000118129031501 +UniRef50_Q9HTQ5 0.000190716528408 0.000682134547142 0.000491418018734 +UniRef50_A1B622 5 Nucleotidase domain protein 0.00640888659583 0.00158584245693 -0.0048230441389 +UniRef50_Q1QJ95 Uroporphyrinogen decarboxylase 6.69044594053e-06 1.42202539897e-05 7.52980804917e-06 +UniRef50_Q9HTQ9 0.000176264881143 0.000781335519178 0.000605070638035 +UniRef50_B0V5K4 Copper resistance protein A 0.000150805228456 0.00075744076626 0.000606635537804 +UniRef50_P45608 Phosphate regulon sensor protein PhoR 0.00227528250855 0.000854057946967 -0.00142122456158 +UniRef50_UPI00046CFE04 hypothetical protein 7.60972741481e-06 0.000139169582542 0.000131559855127 +UniRef50_A6M0G0 Binding protein dependent transport systems inner membrane component 0.000706389033691 0.00155361507679 0.000847226043099 +UniRef50_UPI0003B46DF8 ABC transporter permease 1.59364282712e-05 6.08051972252e-06 -9.85590854868e-06 +UniRef50_R9YPY4 Phage head morphogenesis , SPP1 gp7 family domain protein 0.0139603270343 0.00471300658733 -0.00924732044697 +UniRef50_UPI000380AB63 hypothetical protein 5.26941983996e-05 8.09234629456e-05 2.8229264546e-05 +UniRef50_A3PNV6 0.0148451012947 0.00494378795455 -0.00990131334015 +UniRef50_S1QWB9 1.02865257393e-05 1.71250170744e-05 6.8384913351e-06 +UniRef50_I9JNX9 Porin thermoregulatory protein EnvY 4.09119656305e-05 8.12048913078e-05 4.02929256773e-05 +UniRef50_Q2G0P2 Transcription termination antitermination protein NusG 0.0263663657674 0.0101872215524 -0.016179144215 +UniRef50_M4U471 4.27247693051e-05 3.00532080249e-05 -1.26715612802e-05 +UniRef50_UPI0003B52E8B IMP cyclohydrolase 3.08576334557e-06 2.38934856731e-05 2.08077223275e-05 +UniRef50_E7BFN4 2.28169365574e-05 0.000130382821062 0.000107565884505 +UniRef50_I6SU84 Transcriptional regulator 0.00734380315265 0.000839763142736 -0.00650404000991 +UniRef50_B9E705 0.00648356407064 0.00392490771333 -0.00255865635731 +UniRef50_K0HLL2 Peptidase, M24 family protein 0.000156025094469 0.00673229242752 0.00657626733305 +UniRef50_Q6A853 0.000119080753577 0.00530947884678 0.0051903980932 +UniRef50_UPI0003D397E3 transposase and inactivated derivatives 0.000408077558847 9.8634351797e-06 -0.000398214123667 +UniRef50_H4F795 Replication protein C 4.00228073909e-05 1.63041745115e-05 -2.37186328794e-05 +UniRef50_A0A023V7M1 ATPase 5.44450945494e-05 0.000140599553994 8.61544594446e-05 +UniRef50_Q9RX33 B cell receptor associated protein related protein 0.000327642012594 0.0230900943312 0.0227624523186 +UniRef50_UPI0003809CA6 hypothetical protein 2.3402440349e-05 5.15660562564e-05 2.81636159074e-05 +UniRef50_U2Z2K4 Transport protein 3.99948549423e-05 5.05348403557e-06 -3.49413709067e-05 +UniRef50_D3NUN2 0.0016449334074 0.000298835689723 -0.00134609771768 +UniRef50_D3NUN3 1.471661312e-06 2.66865624488e-06 1.19699493288e-06 +UniRef50_P39691 Thiol 0.00365153706276 0.00148789561695 -0.00216364144581 +UniRef50_Q67NS9 GTPase Der 0.00743604047995 0.00634249394181 -0.00109354653814 +UniRef50_UPI00037AD157 hypothetical protein 7.5655071882e-05 6.99221551835e-05 -5.7329166985e-06 +UniRef50_K8DSJ2 Membrane bound lytic murein transglycosylase A 0.000317277698396 0.000180757876328 -0.000136519822068 +UniRef50_F0YBW7 Expressed protein 0.000522108220195 0.000128594438527 -0.000393513781668 +UniRef50_J7QRA8 8.67103188316e-05 0.000111803973882 2.50936550504e-05 +UniRef50_D5AP78 Demethylspheroidene O methyltransferase 0.00020770500424 0.000337667515113 0.000129962510873 +UniRef50_UPI0001470FF7 MULTISPECIES 7.38766856209e-05 9.6134393708e-05 2.22577080871e-05 +UniRef50_UPI0001D30F07 hypothetical protein 7.13673484763e-05 0.000132864797961 6.14974494847e-05 +UniRef50_M1E6A4 1 deoxy D xylulose 5 phosphate synthase 0.000184139506761 0.0022015890492 0.00201744954244 +UniRef50_Q9I526 Cysteine synthase B 0.00069099022376 0.000580029984042 -0.000110960239718 +UniRef50_R6W8A5 0.000529933773748 0.0003347703962 -0.000195163377548 +UniRef50_D2NRM9 Aldehyde 6.79757246772e-05 0.000605690335146 0.000537714610469 +UniRef50_R7A897 0.00558391170876 0.00238390863839 -0.00320000307037 +UniRef50_UPI00046644F9 putrescine spermidine ABC transporter substrate binding protein 8.0372269168e-05 9.01821666322e-05 9.8098974642e-06 +UniRef50_A6TCE8 Co chaperone protein HscB 0.00401154701226 0.000504814880674 -0.00350673213159 +UniRef50_R4ZXB5 Cation transporting ATPase, E1 E2 family 0.000438929265414 6.47151289761e-05 -0.000374214136438 +UniRef50_D5AR83 L malyl CoA beta methylmalyl CoA lyase 0.00064197505878 0.000127432953743 -0.000514542105037 +UniRef50_UPI0003B31758 ABC transporter 5.22741265592e-06 1.28805645933e-05 7.65315193738e-06 +UniRef50_Q16AG3 5.37899681481e-05 4.42596271592e-05 -9.5303409889e-06 +UniRef50_T6HYQ6 Nitrite extrusion protein 2 3.17997983496e-05 0.000208185671918 0.000176385873568 +UniRef50_A5ULE7 Molybdenum cofactor biosynthesis protein, MoaB 0.0025215740989 0.000516588988672 -0.00200498511023 +UniRef50_Q0BSD5 Alanine tRNA ligase 0.00465398982997 0.00066776266642 -0.00398622716355 +UniRef50_P30140 2 iminoacetate synthase 0.00298106424815 0.00395450283353 0.00097343858538 +UniRef50_Q0TP59 33 kDa chaperonin 0.000644755983331 0.000201352299003 -0.000443403684328 +UniRef50_A6VEM4 0.00140893465845 0.000714475899663 -0.000694458758787 +UniRef50_D5ASM9 Peptide deformylase 0.00539474585891 0.00358180394578 -0.00181294191313 +UniRef50_C3A4E4 1.70733353367e-05 0.00136087930306 0.00134380596772 +UniRef50_V4R261 3.9940756406e-05 0.000661083774165 0.000621143017759 +UniRef50_M1MAA9 0.000458723791042 0.00321992904974 0.0027612052587 +UniRef50_A3LL40 0.000835057454897 0.00153775614067 0.000702698685773 +UniRef50_UPI000288786A cold shock DNA binding domain containing protein 1.15488475871e-05 1.75845180787e-05 6.0356704916e-06 +UniRef50_UPI0002E3DB0E gluconokinase 4.89956767137e-06 8.44727118948e-06 3.54770351811e-06 +UniRef50_H0A701 2.60070996402e-05 6.73294989643e-05 4.13223993241e-05 +UniRef50_Q6F9S8 Molybdopterin biosynthesis protein OR thiamin thiazole moiety synthesis (ThiF) 0.000149994432661 0.00937785229708 0.00922785786442 +UniRef50_U3T3B6 Phospholipase D protein 8.03161678458e-05 0.0104105833421 0.0103302671743 +UniRef50_S5YCI7 Transcriptional regulator, AraC family 0.00470200888382 0.00129604341177 -0.00340596547205 +UniRef50_Q9HXP6 0.000921063138383 0.000571934624678 -0.000349128513705 +UniRef50_S1SXR1 2.12666424717e-05 2.19930995697e-05 7.26457098e-07 +UniRef50_F9YZQ4 Endoglycoceramidase 0.000159974748255 0.00445180887178 0.00429183412353 +UniRef50_UPI0003B3872E branched chain alpha keto acid dehydrogenase subunit E2 2.95263394253e-06 4.47205310125e-05 4.176789707e-05 +UniRef50_A0A023RTZ1 LysR family transcriptional regulator 0.000145373294809 0.00765189714499 0.00750652385018 +UniRef50_A7X0P1 0.0126994949812 0.00495432766069 -0.00774516732051 +UniRef50_Q8TSH7 Malate dehydrogenase 3.36721762892e-05 2.29198624303e-05 -1.07523138589e-05 +UniRef50_I3USA0 MscS mechanosensitive ion channel 0.000428825071817 0.000462884184163 3.4059112346e-05 +UniRef50_P0AFL2 Putrescine transport system permease protein PotI 0.0048033144817 0.00152779026972 -0.00327552421198 +UniRef50_M4RDZ6 Taurine transporting AtPase 0.00518407122581 0.000725006767648 -0.00445906445816 +UniRef50_UPI0003769FA7 Fis family transcriptional regulator 0.000370982215796 8.40235108226e-05 -0.000286958704973 +UniRef50_UPI00040692FE hypothetical protein 0.00109592088202 0.00017407043818 -0.00092185044384 +UniRef50_I7GKU7 Macaca fascicularis brain cDNA clone 0.00054724709113 0.000157610867894 -0.000389636223236 +UniRef50_D6CV88 5.46821913738e-05 6.46317546914e-06 -4.82190159047e-05 +UniRef50_UPI000383163D hypothetical protein 1.28656944095e-05 1.1566140492e-05 -1.2995539175e-06 +UniRef50_K5XT53 Phenol hydroxylase 0.000463705622737 8.50982958896e-05 -0.000378607326847 +UniRef50_UPI00041A7C16 hypothetical protein 0.000208689054711 2.21127656313e-05 -0.00018657628908 +UniRef50_UPI00047AECEE KaiC 1 6.6801917341e-05 1.57463598178e-05 -5.10555575232e-05 +UniRef50_UPI00046F4CAF hypothetical protein 0.000128727988822 4.73308083187e-06 -0.00012399490799 +UniRef50_UPI00034D1E75 membrane protein 6.0957428407e-05 6.72765568889e-05 6.3191284819e-06 +UniRef50_D8QF05 7.5261986515e-06 3.10393741772e-05 2.35131755257e-05 +UniRef50_Q890Q5 Adenylate kinase 3.07471464059e-05 5.01868623798e-05 1.94397159739e-05 +UniRef50_M2ATY2 ParB like partition protein 0.000110746234673 1.90927581379e-05 -9.16534765351e-05 +UniRef50_S1DY96 0.000220752040266 0.000688801581344 0.000468049541078 +UniRef50_UPI0001D2F09B permease 0.000111682245224 6.73035601169e-05 -4.43786851071e-05 +UniRef50_UPI000405BEEA hypothetical protein 0.000388697556286 0.000114475683802 -0.000274221872484 +UniRef50_K2M4Q0 1.6077165776e-05 3.98030026135e-05 2.37258368375e-05 +UniRef50_Q2FYR2 Aminoacyltransferase FemA 0.011135692331 0.0051071952313 -0.0060284970997 +UniRef50_P77156 Inner membrane ABC transporter permease protein YdcU 0.00323822838589 0.000765446218327 -0.00247278216756 +UniRef50_E6KQ43 Membrane protein 5.70223613131e-05 0.00198423527639 0.00192721291508 +UniRef50_H8Z7W7 TPR repeat containing protein 7.24293702526e-05 0.000148191079659 7.57617094064e-05 +UniRef50_UPI000381814C hypothetical protein 3.39811820766e-05 0.000155437356269 0.000121456174192 +UniRef50_UPI0003805D01 hypothetical protein, partial 9.00059496839e-05 5.76874723045e-05 -3.23184773794e-05 +UniRef50_R9CBP1 Flagellar hook capping protein 7.18622264131e-06 9.80959760362e-06 2.62337496231e-06 +UniRef50_A4XQY6 0.00251190961573 0.000284871419803 -0.00222703819593 +UniRef50_UPI00037FD9F7 hypothetical protein 6.65464009971e-06 8.46252077595e-05 7.79705676598e-05 +UniRef50_UPI00036C7A2E hypothetical protein 0.000504360152915 0.000343369018749 -0.000160991134166 +UniRef50_Q9I5G7 Signal peptidase I 0.0017974718109 0.00161638550281 -0.00018108630809 +UniRef50_F8FZW4 0.00055993062886 0.00177190023117 0.00121196960231 +UniRef50_Q6I286 S layer protein, putative 3.63606040056e-06 0.000182294262473 0.000178658202072 +UniRef50_A7Z463 Adenine deaminase 2.49410813405e-05 7.29058589927e-06 -1.76504954412e-05 +UniRef50_D7C3J3 2.47199927154e-05 0.000833340845804 0.000808620853089 +UniRef50_Q3JVB5 Integral membrane protein MviN 0.000642524753402 0.000336923429018 -0.000305601324384 +UniRef50_UPI00036BA72B hypothetical protein 2.90294906379e-05 2.11551516842e-05 -7.8743389537e-06 +UniRef50_UPI00045EA377 secondary thiamine phosphate synthase 1.40765007896e-05 2.18094184913e-05 7.7329177017e-06 +UniRef50_Q36837 Cytochrome c oxidase subunit 3 5.3619740226e-05 9.27134647813e-06 -4.43483937479e-05 +UniRef50_UPI000470F200 ATP dependent DNA helicase RuvA 1.14379975392e-05 9.52487719255e-06 -1.91312034665e-06 +UniRef50_P33360 Putative osmoprotectant uptake system ATP binding protein YehX 0.00229441744607 0.00186013466824 -0.00043428277783 +UniRef50_N6UWC7 0.000112037220334 0.000111200440193 -8.36780141e-07 +UniRef50_I0LGS3 1.19366816673e-05 1.7233769223e-05 5.2970875557e-06 +UniRef50_U5MX92 Sensory transduction protein LytT 0.000160177930206 0.00151373553468 0.00135355760447 +UniRef50_L1K958 0.0116649515268 0.00196877803463 -0.00969617349217 +UniRef50_UPI00047330EC hypothetical protein 7.84308987749e-05 2.60188507818e-05 -5.24120479931e-05 +UniRef50_D3E3Z6 Energy converting hydrogenase A subunit F EhaF 0.00245728272015 0.00121739049281 -0.00123989222734 +UniRef50_UPI0004658BC5 hypothetical protein 8.20177982917e-05 2.15381476889e-05 -6.04796506028e-05 +UniRef50_B6ZYE2 Galactosamine 6 phosphate isomerase 0.00283557550311 0.0053693946399 0.00253381913679 +UniRef50_UPI00036A070A hypothetical protein 6.30303883095e-06 2.25926211624e-05 1.62895823315e-05 +UniRef50_UPI00046F612F hypothetical protein 2.70783179717e-05 8.58364276205e-06 -1.84946752097e-05 +UniRef50_R9XSB4 UvrABC system protein A 0.0103670523245 0.0106993021497 0.0003322498252 +UniRef50_D5UV60 Acyl CoA dehydrogenase domain protein 0.000248690634903 0.000147904860699 -0.000100785774204 +UniRef50_B8ZJM7 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.0154259178572 0.0116201430628 -0.0038057747944 +UniRef50_R5W2L7 4.91558913517e-05 0.00106037211725 0.0010112162259 +UniRef50_A5UP24 Predicted type II restriction enzyme, methylase subunit 0.00571239918668 0.000622645576659 -0.00508975361002 +UniRef50_A6LY51 Type IV pilus assembly PilZ 0.000178621130367 0.000581777986442 0.000403156856075 +UniRef50_B5ZUG3 NAD NADP dependent betaine aldehyde dehydrogenase 4.01633545861e-05 5.40940287083e-06 -3.47539517153e-05 +UniRef50_Q7NYS3 0.000800239257418 8.77596660985e-05 -0.00071247959132 +UniRef50_P18777 Anaerobic dimethyl sulfoxide reductase chain C 0.00169577682731 0.00127704546544 -0.00041873136187 +UniRef50_A0Q197 DNA topoisomerase IV subunit B 0.000447719235006 0.00144705415837 0.000999334923364 +UniRef50_UPI00036632E6 hypothetical protein 5.6804085272e-05 0.000270436554763 0.000213632469491 +UniRef50_P30335 Nitrogen regulatory protein 2.02137028157e-05 3.01835435662e-05 9.9698407505e-06 +UniRef50_Q1KVX6 Light independent protochlorophyllide reductase subunit N 6.39004752321e-05 2.2064792602e-05 -4.18356826301e-05 +UniRef50_UPI00046F1C42 nitrogen regulatory protein P II 1 7.94134092391e-05 2.7066201996e-05 -5.23472072431e-05 +UniRef50_D9WR73 Anti sigma B factor RsbT 1.91413551744e-05 0.002289249135 0.00227010777983 +UniRef50_E6PC05 6.80027503223e-06 6.67503231275e-06 -1.2524271948e-07 +UniRef50_UPI0003FFD344 membrane protein 7.98681944041e-06 1.16533113742e-05 3.66649193379e-06 +UniRef50_UPI00047C9EAC ABC transporter 3.72548403793e-06 2.62710856702e-05 2.25456016323e-05 +UniRef50_Q9RW70 Glucose fructose oxidoreductase 0.000210678124336 0.0446305814316 0.0444199033073 +UniRef50_O27472 0.00359294404307 0.000834580791197 -0.00275836325187 +UniRef50_R5YRU3 dTDP 4 dehydrorhamnose reductase 0.00130684485638 0.000459020769276 -0.000847824087104 +UniRef50_A6LVM3 Drug resistance transporter, EmrB QacA subfamily 0.000501527410384 0.000860646422696 0.000359119012312 +UniRef50_UPI00020D92F9 hypothetical protein 0.0001927664463 0.000275203086573 8.2436640273e-05 +UniRef50_K4NLN5 9.29005714967e-05 0.00507050331034 0.00497760273884 +UniRef50_H3YKG2 0.000182932151423 0.00025992651504 7.6994363617e-05 +UniRef50_O27911 2 phosphoglycerate kinase 0.00319545789272 0.00193555370491 -0.00125990418781 +UniRef50_H8E733 NAD synthase 6.81028030856e-05 0.000322644548697 0.000254541745611 +UniRef50_Q04FF6 Arginine tRNA ligase 0.00666142559359 0.00369513435055 -0.00296629124304 +UniRef50_UPI000374A709 hypothetical protein 4.56451660763e-06 0.000101217520766 9.66530041584e-05 +UniRef50_UPI000163236E hypothetical protein 7.18027228022e-05 9.5999092877e-05 2.41963700748e-05 +UniRef50_Q5HLR8 0.0190217967023 0.00460042344378 -0.0144213732585 +UniRef50_UPI0003B7A728 sulfate ABC transporter permease, partial 4.14091149609e-05 1.88569275728e-05 -2.25521873881e-05 +UniRef50_Q9JY28 8.61184765483e-05 0.00336588824012 0.00327976976357 +UniRef50_I6L8N6 Capsular polysaccharide biosynthesis protein Cps4E 9.63001478345e-06 0.000856549777224 0.000846919762441 +UniRef50_Q5E480 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.55419664366e-05 6.38432321557e-06 -1.9157643221e-05 +UniRef50_U5PDI4 Glycosyltransferase 0.00112661195705 0.000386191837597 -0.000740420119453 +UniRef50_UPI00035ED085 hypothetical protein 2.33533006989e-05 9.63858034933e-06 -1.37147203496e-05 +UniRef50_R7E7K8 2.75054464409e-05 1.620848086e-05 -1.12969655809e-05 +UniRef50_E8SGJ9 Substrate specific component ThiW of predicted thiazole ECF transporter 0.019026468509 0.00755329890095 -0.011473169608 +UniRef50_B2I1P2 Ankyrin repeat protein 6.84749714784e-06 0.00604147151498 0.00603462401783 +UniRef50_Q3IW29 0.0174840726416 0.00039551344445 -0.0170885591971 +UniRef50_Q3IW25 0.00369401701208 0.00056755629592 -0.00312646071616 +UniRef50_A7MPG3 0.00273119930883 0.0025353570905 -0.00019584221833 +UniRef50_Q3IW20 0.00535649612679 0.00227351283164 -0.00308298329515 +UniRef50_P57162 Serine acetyltransferase 0.00308328241511 0.000999697682294 -0.00208358473282 +UniRef50_UPI00016A72E3 oxidoreductase, 2 nitropropane dioxygenase family protein 8.97127414246e-07 1.72373567894e-05 1.63402293752e-05 +UniRef50_UPI0004726F0A hypothetical protein 1.33510692687e-05 1.20225056935e-05 -1.3285635752e-06 +UniRef50_Q8XWD0 Tyrosine recombinase XerD 0.000126815001857 0.0004565620435 0.000329747041643 +UniRef50_D6M3V3 Peptidase C14, caspase catalytic subunit p20 1.26868311671e-05 0.000105534669122 9.28478379549e-05 +UniRef50_Q9HU63 0.000240670000018 0.000184709877544 -5.5960122474e-05 +UniRef50_A8YWB0 50S ribosomal protein L33 1 0.00156743463762 0.00140627002474 -0.00016116461288 +UniRef50_Q5HS39 Replication associated protein RepA 0.025417336461 0.00818699879198 -0.017230337669 +UniRef50_UPI0001C2FA1D 4E10_S0_1TJLC_004_N 0.000133266175114 0.000166550217731 3.3284042617e-05 +UniRef50_P76573 0.00769096647034 0.000916440040902 -0.00677452642944 +UniRef50_UPI00037E947E hypothetical protein 5.77321491391e-05 2.00040319149e-05 -3.77281172242e-05 +UniRef50_UPI00035F6D48 hypothetical protein 0.000820284232333 0.000209359529456 -0.000610924702877 +UniRef50_S3X0W6 6.51088027977e-06 3.04763390403e-05 2.39654587605e-05 +UniRef50_Q4KG00 0.000923329572432 0.000339772494473 -0.000583557077959 +UniRef50_B5GRY7 4.25500514704e-05 2.88811285539e-05 -1.36689229165e-05 +UniRef50_R4GKT3 3.52494659532e-05 1.8059539033e-05 -1.71899269202e-05 +UniRef50_A8TTI0 1.46332217464e-06 3.36890958609e-06 1.90558741145e-06 +UniRef50_F7X525 ABC transporter, periplasmic solute binding protein 0.000638843415655 0.000349487225087 -0.000289356190568 +UniRef50_I3TJX2 1.60309072009e-05 3.78424117522e-05 2.18115045513e-05 +UniRef50_P75748 0.00208196697646 0.000773199169791 -0.00130876780667 +UniRef50_A5UKK3 0.00215978115111 0.000402295603158 -0.00175748554795 +UniRef50_Q5HFR9 Pyrroline 5 carboxylate reductase 0.015465942895 0.00785982338574 -0.00760611950926 +UniRef50_UPI0002880C2A histidine kinase 7.46191608947e-05 9.99737242183e-05 2.53545633236e-05 +UniRef50_UPI0003822CF6 hypothetical protein 0.000938840241999 0.000212984067508 -0.000725856174491 +UniRef50_A5UKK6 0.00198986127852 0.000891139026363 -0.00109872225216 +UniRef50_U3T1P2 Sulfate permease 0.000224843203383 0.00827015472162 0.00804531151824 +UniRef50_UPI00005C81F5 hypothetical protein RSP_4057 0.00357165250681 0.00188687714513 -0.00168477536168 +UniRef50_A9M1Y8 UPF0761 membrane protein NMCC_0461 0.000335172110003 0.00266714919876 0.00233197708876 +UniRef50_Q5HRH1 0.00267921557103 0.000684131363387 -0.00199508420764 +UniRef50_Q1JQN1 Cell division inhibitor SulA 0.00405955035841 0.000360875810829 -0.00369867454758 +UniRef50_D7CUB2 RNA binding S1 domain protein 0.000283797246844 0.0428681815905 0.0425843843437 +UniRef50_I2F4T7 2.3913519524e-05 4.06600351579e-05 1.67465156339e-05 +UniRef50_UPI0003806E6C hypothetical protein 0.00194286607366 0.0015121642335 -0.00043070184016 +UniRef50_I0ZAW9 2.19256141454e-05 3.43059097292e-05 1.23802955838e-05 +UniRef50_T1Y9B2 Phosphotransferase enzyme family protein 0.0198823509712 0.00339603757511 -0.0164863133961 +UniRef50_T2HS98 9.32595855861e-05 5.81690109812e-05 -3.50905746049e-05 +UniRef50_E1I6F8 0.000243016731023 0.000379421891038 0.000136405160015 +UniRef50_UPI00031BE1DB hypothetical protein 5.36152916367e-05 4.79238412482e-05 -5.6914503885e-06 +UniRef50_Q1QAV9 0.000184740288181 0.00409903442619 0.00391429413801 +UniRef50_A3CLN3 GTP binding protein TypA BipA, putative 0.00618062368975 0.00593646694468 -0.00024415674507 +UniRef50_Q92GC1 3 oxoacyl [acyl carrier protein] synthase 3 7.80367086837e-05 9.80186907094e-06 -6.82348396128e-05 +UniRef50_O27543 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.00451635338729 0.000538634897921 -0.00397771848937 +UniRef50_UPI000428CAD9 hypothetical protein 0.000266067466551 0.000108825318996 -0.000157242147555 +UniRef50_P06709 Bifunctional ligase repressor BirA 0.00319018773032 0.000964974485437 -0.00222521324488 +UniRef50_Q1R618 0.00340947933089 3.51018360083e-05 -0.00337437749488 +UniRef50_UPI000373C739 hypothetical protein 1.15681812832e-05 2.26238386779e-05 1.10556573947e-05 +UniRef50_Q8X534 Enterobactin exporter EntS 0.00282061523415 0.000143823070714 -0.00267679216344 +UniRef50_C2XMN3 1.38681549327e-05 0.000929709101565 0.000915840946632 +UniRef50_B1LTL1 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.56505691476e-05 2.30578093285e-05 -3.25927598191e-05 +UniRef50_A0A021WYQ6 Plasmid partitioning protein RepA 0.000264076099192 0.000103697631606 -0.000160378467586 +UniRef50_Q1R614 0.00134827948699 0.00295479459378 0.00160651510679 +UniRef50_A5UEK8 Chromosome partition protein MukB 0.000400246125301 7.95204385348e-05 -0.000320725686766 +UniRef50_UPI0002375359 EmrB QacA family drug resistance transporter 9.80511757459e-06 1.42533922805e-05 4.44827470591e-06 +UniRef50_UPI000472C1EF amino acid ABC transporter ATPase 9.11357425806e-06 0.000266958198497 0.000257844624239 +UniRef50_A3PMP8 UPF0178 protein Rsph17029_2512 0.00580864190109 0.000398896083535 -0.00540974581755 +UniRef50_Q2W200 Hypothetical 217 kDa protein Y4HQ 0.000133778463822 1.26082917637e-05 -0.000121170172058 +UniRef50_UPI00006CFE7F glutaredoxin related protein 1.13776612886e-05 5.91477225901e-06 -5.46288902959e-06 +UniRef50_UPI0002ED7898 hypothetical protein 9.36504408604e-05 3.66239648949e-05 -5.70264759655e-05 +UniRef50_E1Z4K9 1.13565887032e-06 2.58451531208e-06 1.44885644176e-06 +UniRef50_R4RE02 Amino acid permease YtnA 0.000107443829842 0.00724343145687 0.00713598762703 +UniRef50_A5FSB7 Ribosomal RNA small subunit methyltransferase H 5.65049875971e-06 9.59984942759e-06 3.94935066788e-06 +UniRef50_P44726 UPF0701 protein HI_0467 0.00138742685556 0.00105412928032 -0.00033329757524 +UniRef50_B0V531 Bifunctional protein 0.000361058951565 0.00747390057552 0.00711284162396 +UniRef50_Q9DC70 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 4.06128049003e-05 8.50999937422e-05 4.44871888419e-05 +UniRef50_T3GII0 Zinc binding dehydrogenase family protein 0.000725208802479 0.000687511771931 -3.7697030548e-05 +UniRef50_B2JHN6 Integral membrane sensor signal transduction histidine kinase 0.000241919844332 0.000158346758826 -8.3573085506e-05 +UniRef50_UPI00037A6516 hypothetical protein 5.78326045817e-05 1.73754954781e-05 -4.04571091036e-05 +UniRef50_B9KX95 0.00145761087894 0.0011034274802 -0.00035418339874 +UniRef50_B2TIX9 FliB domain protein 0.000407711998086 0.000482394886397 7.4682888311e-05 +UniRef50_I0C729 0.0189407042374 0.00608159226964 -0.0128591119678 +UniRef50_K1ZPS1 0.000230547562139 0.00087147259575 0.000640925033611 +UniRef50_UPI0004792537 hypothetical protein 1.83307769362e-05 1.21189243179e-05 -6.2118526183e-06 +UniRef50_UPI00047030B9 hypothetical protein 0.000560381874278 7.08899220657e-05 -0.000489491952212 +UniRef50_Q2FG85 Holliday junction ATP dependent DNA helicase RuvA 0.0236249924709 0.00323044432134 -0.0203945481496 +UniRef50_Q5M0X3 Bifunctional protein PyrR 6.50069945208e-05 0.0103211051259 0.0102560981314 +UniRef50_UPI000409D13D alpha beta hydrolase 6.41361882608e-05 1.20837045582e-05 -5.20524837026e-05 +UniRef50_A1YZ52 PdmP3 0.000151878650913 0.000169199709511 1.7321058598e-05 +UniRef50_A5V451 7.80952571682e-06 4.9162649454e-06 -2.89326077142e-06 +UniRef50_UPI00037F3B9E transcriptional regulator 1.17585692332e-05 1.43405700731e-05 2.5820008399e-06 +UniRef50_UPI00028A17CA serine threonine protein kinase like protein 6.89009589622e-05 1.92807193654e-05 -4.96202395968e-05 +UniRef50_UPI000360B53A hypothetical protein, partial 2.58916829103e-05 9.18807787131e-05 6.59890958028e-05 +UniRef50_C5N461 MAP domain protein 0.00869550707414 0.000999848244378 -0.00769565882976 +UniRef50_R9T5B9 2.52936081332e-06 4.63955663484e-05 4.38662055351e-05 +UniRef50_UPI0004765C33 translation initiation factor IF 3 0.000264398967397 0.000363345303131 9.8946335734e-05 +UniRef50_C1DAI5 Glucose 6 phosphate isomerase 0.000310064867964 0.00330607927114 0.00299601440318 +UniRef50_E3F1U6 Integrase 0.00373196662839 0.000901286543999 -0.00283068008439 +UniRef50_UPI00036EA793 hypothetical protein 0.000647128617963 0.000352958287488 -0.000294170330475 +UniRef50_UPI0004749630 phosphate starvation inducible protein PhoH, partial 9.40954921415e-05 6.43000888292e-05 -2.97954033123e-05 +UniRef50_A6M2K0 Cell wall surface repeat protein 0.000421184097339 0.00186046617006 0.00143928207272 +UniRef50_Q6FFQ0 Alpha ketoglutaric semialdehyde dehydrogenase 0.000948194373057 0.0288863009899 0.0279381066168 +UniRef50_I1AWS6 Replication initiation protein RepC 0.000698886232709 0.000139103140501 -0.000559783092208 +UniRef50_P46384 Protein PilG 0.00563938135712 0.000519618836113 -0.00511976252101 +UniRef50_Q9I6C8 Probable coniferyl aldehyde dehydrogenase 0.000612537579742 0.000124781706418 -0.000487755873324 +UniRef50_A7BCW8 Cell wall binding repeat protein 1.4038904646e-05 0.00115034896945 0.0011363100648 +UniRef50_P09996 0.00399855746522 0.000771860473809 -0.00322669699141 +UniRef50_A6UCT4 Glycosyl transferase family 8 0.00525517494143 0.000653405823801 -0.00460176911763 +UniRef50_P0ADI5 Isochorismatase 0.00243856681338 0.00445811552881 0.00201954871543 +UniRef50_A3PIG7 0.000935150784869 0.00148761318134 0.000552462396471 +UniRef50_S5VV73 5.12668948094e-05 0.00112647892034 0.00107521202553 +UniRef50_B5ZE82 Two component transcriptional regulator, winged helix family 0.00257188327451 0.00108089486213 -0.00149098841238 +UniRef50_S9TC28 8.67225771908e-05 5.0204108267e-06 -8.17021663641e-05 +UniRef50_E3EDG6 Ser Thr phosphatase family protein 1.90295918558e-06 1.1626455905e-05 9.72349671942e-06 +UniRef50_UPI0003AE0E04 2.9608183363e-05 7.63859535642e-05 4.67777702012e-05 +UniRef50_F0RM84 Long chain fatty acid CoA ligase 0.000154071465819 0.0332449894845 0.0330909180187 +UniRef50_Q8X8F2 Porin OmpL 0.00144171989344 0.000872857256737 -0.000568862636703 +UniRef50_UPI0003A831EB hypothetical protein 3.49724034642e-05 8.79131000071e-06 -2.61810934635e-05 +UniRef50_Q9HJ59 Nucleoside diphosphate kinase 7.36954840226e-06 5.90102437569e-05 5.16406953546e-05 +UniRef50_I0C0Q8 5 nucleotidase 0.0151697109078 0.00465806006527 -0.0105116508425 +UniRef50_A6M0I0 Ferredoxin hydrogenase 0.000778025972439 0.00093722331786 0.000159197345421 +UniRef50_Q9RTC8 7.25378449133e-05 0.0839262786282 0.0838537407833 +UniRef50_P77265 Multidrug resistance like ATP binding protein MdlA 0.00385648946198 0.00164049592669 -0.00221599353529 +UniRef50_A6M2M2 NLP P60 protein 0.000114970351935 0.000761169794935 0.000646199443 +UniRef50_H6NSQ0 2 deoxy D gluconate 3 dehydrogenase 0.000975362759137 0.00072609895258 -0.000249263806557 +UniRef50_F9PRQ2 6.09555212911e-05 0.000136603736556 7.56482152649e-05 +UniRef50_Q9RTC4 0.00198676836238 0.0564260709447 0.0544393025823 +UniRef50_A5D144 UDP N acetylmuramate L alanine ligase 8.18801145845e-06 1.29532227798e-05 4.76521132135e-06 +UniRef50_A0A035VZJ1 0.000287400821238 8.2028703044e-05 -0.000205372118194 +UniRef50_Q9I2J9 Phenazine biosynthesis protein PhzA 2 0.000451178472729 0.0200923237782 0.0196411453055 +UniRef50_A0A010YSV0 Bifunctional uridylyltransferase uridylyl removing enzyme 0.000240474674121 0.00368797344723 0.00344749877311 +UniRef50_O31727 UPF0001 protein YlmE 0.0120364583646 0.00963136180418 -0.00240509656042 +UniRef50_A6M141 0.000216297815573 0.00140173417325 0.00118543635768 +UniRef50_A6M140 0.000512424419253 0.00184295217498 0.00133052775573 +UniRef50_A0A031SXK0 Ferrienterobactin receptor 0.00339026891811 0.00069013376552 -0.00270013515259 +UniRef50_A6M142 0.000279566792415 0.00133094626545 0.00105137947303 +UniRef50_H4TYE9 Citrate synthase 0.00090537615536 0.000468595360248 -0.000436780795112 +UniRef50_R1BPA7 1.05518659521e-05 2.31742579915e-05 1.26223920394e-05 +UniRef50_UPI000478D81C hypothetical protein 3.58717549693e-06 1.19427292699e-05 8.35555377297e-06 +UniRef50_Q9AS52 0.000384512543987 0.00090629029659 0.000521777752603 +UniRef50_UPI00046DCEE5 4.07230498645e-06 1.11445442256e-05 7.07223923915e-06 +UniRef50_UPI0003B553F2 hypothetical protein, partial 1.70861488608e-05 0.000175888915271 0.00015880276641 +UniRef50_UPI0003484775 hypothetical protein 4.79181047947e-05 2.47040483974e-05 -2.32140563973e-05 +UniRef50_K7U8Q8 1.6559285985e-05 1.99403205312e-05 3.3810345462e-06 +UniRef50_Q4FU55 NADH quinone oxidoreductase subunit K 1.71764143561e-05 7.86213304476e-05 6.14449160915e-05 +UniRef50_D4GU70 Low salt glycan biosynthesis nucleotidyltransferase Agl11 6.85587217958e-05 1.62490157888e-05 -5.2309706007e-05 +UniRef50_H3UC52 Nitrate reductase delta subunit 2.23708306862e-05 0.000119447905534 9.70770748478e-05 +UniRef50_Y1QWF2 9.62969332507e-05 7.68054972259e-05 -1.94914360248e-05 +UniRef50_UPI00042B2256 ATP dependent clp protease ATP binding subunit clpx isoform 1 1.06998716627e-05 2.2305241448e-05 1.16053697853e-05 +UniRef50_W1MRY7 Type VI secretion protein ImpA 0.00048634807273 0.000429932305819 -5.6415766911e-05 +UniRef50_UPI000255EFAA hypothetical protein 8.53179218313e-05 4.81681159278e-05 -3.71498059035e-05 +UniRef50_M2K3R6 0.00138104630068 0.00230116913138 0.0009201228307 +UniRef50_D1DKC6 0.000170689752864 0.0043756635958 0.00420497384294 +UniRef50_Q27331 V type proton ATPase catalytic subunit A isoform 2 0.00397891523898 0.0011900794122 -0.00278883582678 +UniRef50_N0CAR1 Integrase core subunit 0.000195802779351 3.49293255914e-05 -0.00016087345376 +UniRef50_A6LWI8 Aluminium resistance family protein 9.01638508349e-05 0.00123844741915 0.00114828356832 +UniRef50_A4TTX4 1.71214161499e-06 4.73580713071e-06 3.02366551572e-06 +UniRef50_Q2SGE5 Predicted Zn dependent Hydrolase of the beta lactamase fold 0.00012986903286 0.00795272053143 0.00782285149857 +UniRef50_Q32IF4 IS911 ORF2 3.73531537098e-05 6.44599225047e-05 2.71067687949e-05 +UniRef50_A6L5D3 9.40310433924e-06 0.00587141578068 0.00586201267634 +UniRef50_Q8CS32 0.00507059330353 0.00215877801089 -0.00291181529264 +UniRef50_A8LE49 2.73543194722e-05 2.23738428689e-05 -4.9804766033e-06 +UniRef50_Q8CS31 0.00261137035218 0.0016970716737 -0.00091429867848 +UniRef50_A5WG67 0.000143138173142 0.00587637987598 0.00573324170284 +UniRef50_S4MJP1 Putative Bifunctional P 450 NADPH P450 reductase 1.17277293112e-05 0.000308073085034 0.000296345355723 +UniRef50_UPI0001D2F0E2 putrescine spermidine ABC transporter permease 0.000102351966369 0.000368811149972 0.000266459183603 +UniRef50_UPI00037EBD36 hypothetical protein 1.14697349568e-06 7.10922271444e-07 -4.36051224236e-07 +UniRef50_UPI000379E27A hypothetical protein 0.000167024448298 2.97192656605e-05 -0.000137305182638 +UniRef50_F3QCE5 7.10073205765e-05 5.590441502e-05 -1.51029055565e-05 +UniRef50_A4WXK9 0.000505301835925 9.53146977416e-05 -0.000409987138183 +UniRef50_Q53229 UPF0093 membrane protein RHOS4_28450 0.0186366404271 0.00478458192289 -0.0138520585042 +UniRef50_UPI0004799C0B hemolysin type calcium binding protein 2.78164163521e-05 1.05819652643e-05 -1.72344510878e-05 +UniRef50_K0KQ95 Transfer complex protein TraG 0.00779954557169 0.000549313771403 -0.00725023180029 +UniRef50_UPI0001850DBE tRNA delta isopentenylpyrophosphate transferase 8.20218257539e-05 3.27036607943e-05 -4.93181649596e-05 +UniRef50_UPI0003B64D78 oxidoreductase 5.58982324617e-05 4.51071162312e-05 -1.07911162305e-05 +UniRef50_K7S8U6 CvpA family protein 0.000231603217983 0.00451711980247 0.00428551658449 +UniRef50_UPI000288B21D MarR family transcriptional regulator 5.99630715491e-06 4.97804406137e-05 4.37841334588e-05 +UniRef50_W5X7H9 Xylose isomerase domain containing protein 0.000350137500119 7.17416091415e-05 -0.000278395890978 +UniRef50_P32125 Molybdopterin guanine dinucleotide biosynthesis adapter protein 0.00419774307651 0.000337504805945 -0.00386023827056 +UniRef50_E2ZPK4 0.000683345546031 0.000312502803434 -0.000370842742597 +UniRef50_U3T6E5 Penicillin acylase 0.00021239765088 0.010276487344 0.0100640896931 +UniRef50_E9BW21 2.06676953281e-05 4.87490227695e-05 2.80813274414e-05 +UniRef50_W1F8X3 Predicted chaperone lipoprotein YacC, potentially involved in protein secretion 4.43389776651e-05 0.000170138653494 0.000125799675829 +UniRef50_Q9RZB9 O antigen transporter RfbX, putative 0.000235630189093 0.0670898059928 0.0668541758037 +UniRef50_I8QM64 4.03374544498e-05 0.000457022685378 0.000416685230928 +UniRef50_P58965 DNA polymerase IV 0.000135949335724 0.000894437178693 0.000758487842969 +UniRef50_Q1QE36 Pseudouridine synthase 0.000369058012367 0.00569937233198 0.00533031431961 +UniRef50_UPI0003B59F61 malonyl CoA ACP transacylase 9.20650070116e-06 1.11156775256e-05 1.90917682444e-06 +UniRef50_Q6A917 Aspartate carbamoyltransferase 0.00019226790604 0.00613076482023 0.00593849691419 +UniRef50_Q4L6U5 Probable nicotinate nucleotide adenylyltransferase 0.0241363756856 0.00219308994628 -0.0219432857393 +UniRef50_P27745 Acetoin 9.42412138883e-06 0.00317621801477 0.00316679389338 +UniRef50_UPI000470A616 diaminopimelate epimerase 5.11128083543e-06 1.11699317286e-05 6.05865089317e-06 +UniRef50_UPI00046FCCA9 exodeoxyribonuclease III, partial 6.54042001776e-05 6.65926608979e-05 1.1884607203e-06 +UniRef50_A0A014CIJ3 CDP alcohol phosphatidyltransferase family protein 0.000615138654713 0.00312333695628 0.00250819830157 +UniRef50_Q3J0W1 0.00957202734504 0.000657860518606 -0.00891416682643 +UniRef50_UPI00035D50AD hypothetical protein 0.000100264388925 6.4657198027e-05 -3.5607190898e-05 +UniRef50_A6LU07 Ig domain protein, group 2 domain protein 0.000290474798357 0.00092785968256 0.000637384884203 +UniRef50_Q1QKV0 30S ribosomal protein S6 0.00178487366724 0.0164761114242 0.014691237757 +UniRef50_UPI00037AC352 hypothetical protein 0.000407117419931 2.75586272809e-05 -0.00037955879265 +UniRef50_UPI000023D2B8 hypothetical protein FG07361.1 1.27453716225e-06 5.89122164952e-06 4.61668448727e-06 +UniRef50_Q9I1M1 2 oxoisovalerate dehydrogenase subunit beta 0.000566624753669 0.00094680247688 0.000380177723211 +UniRef50_A3M3E9 Urease accessory protein UreD 0.000200790419604 0.00748360181685 0.00728281139725 +UniRef50_E6W7Q1 Spore coat U domain protein 0.00103528740712 0.000393755606923 -0.000641531800197 +UniRef50_UPI0003004A80 hypothetical protein 9.22588801802e-05 0.000124662568542 3.24036883618e-05 +UniRef50_Q57843 2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase 0.00215657122054 0.000244737600989 -0.00191183361955 +UniRef50_F6T9R8 3.45352564678e-05 0.000157083353828 0.00012254809736 +UniRef50_A1B620 2.74361413156e-05 4.95133741054e-05 2.20772327898e-05 +UniRef50_UPI0003B333E4 hypothetical protein 1.25370823432e-05 2.00856217367e-05 7.5485393935e-06 +UniRef50_UPI000262ABB1 hypothetical protein 2.44067715683e-05 0.000111352251342 8.69454797737e-05 +UniRef50_B1XSD3 ATP synthase gamma chain 0.000415671670561 0.00697590221049 0.00656023053993 +UniRef50_UPI00030C054C hypothetical protein 4.51990743494e-06 4.55800135455e-06 3.809391961e-08 +UniRef50_Q89M20 Blr4373 protein 0.000267107240035 0.000119159396853 -0.000147947843182 +UniRef50_UPI0003A26AF5 TetR family transcriptional regulator 8.69457795147e-05 1.46755927472e-05 -7.22701867675e-05 +UniRef50_Q16B12 0.00023679412853 3.15506652737e-05 -0.000205243463256 +UniRef50_A5GFZ6 Adenylyltransferase and sulfurtransferase MOCS3 3.71578805739e-06 7.0054469831e-06 3.28965892571e-06 +UniRef50_Q2NQZ7 Glutamate racemase 0.00232051230025 0.00165808516631 -0.00066242713394 +UniRef50_D5HEW0 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.000231586496233 0.000757339894904 0.000525753398671 +UniRef50_Q8CPV5 NADH dehydrogenase like protein SE_0635 0.009543192535 0.00378481599275 -0.00575837654225 +UniRef50_UPI0004214BAF phospho 2 dehydro 3 deoxyheptonate aldolase 1.34096920764e-05 5.47277991479e-06 -7.93691216161e-06 +UniRef50_P56190 Carbon starvation protein A homolog 6.87588322145e-05 0.00250647568551 0.0024377168533 +UniRef50_Q8G564 Cystathionine beta synthase 1.62652633298e-05 7.40565733512e-06 -8.85960599468e-06 +UniRef50_F9JRR2 Cupin domain protein 0.00016141884725 0.000132747334655 -2.8671512595e-05 +UniRef50_V5VHC2 0.000351170859825 0.00683394620625 0.00648277534643 +UniRef50_K5X3B2 5.96013846323e-06 1.02732519243e-05 4.31311346107e-06 +UniRef50_P09323 PTS system N acetylglucosamine specific EIICBA component 0.00217963361092 0.000206924071316 -0.0019727095396 +UniRef50_Q3IYY7 Diguanylate cyclase phosphodiesterase 0.00180369563764 0.000750125073367 -0.00105357056427 +UniRef50_J7LDC8 1.11320365348e-05 1.87883491866e-05 7.6563126518e-06 +UniRef50_UPI00037F6FB0 hypothetical protein 3.4182197352e-05 2.47281398794e-05 -9.4540574726e-06 +UniRef50_A3PG69 BLUF domain protein 0.00292281593319 0.000402397633834 -0.00252041829936 +UniRef50_Q3ST27 0.000114233427619 3.8692361338e-05 -7.5541066281e-05 +UniRef50_UPI00036B67AF hypothetical protein 6.01340204957e-06 3.6811562422e-05 3.07981603724e-05 +UniRef50_UPI0003C19F7E PREDICTED 8.31785524532e-05 1.03988898391e-05 -7.27796626141e-05 +UniRef50_P94428 Succinate semialdehyde dehydrogenase [NADP] 2.01603608067e-05 1.80714660656e-05 -2.0888947411e-06 +UniRef50_M3YVF8 0.000104937647918 6.45995111217e-05 -4.03381367963e-05 +UniRef50_F5M325 FkbH like protein 0.0031036684353 0.000644358554147 -0.00245930988115 +UniRef50_R7PQ72 GMP synthase [glutamine hydrolyzing] 0.000125932708907 0.000151245658361 2.5312949454e-05 +UniRef50_A3M428 0.000797906460359 0.00680691250646 0.0060090060461 +UniRef50_X6MXZ9 2.08751446181e-05 2.91195210387e-05 8.2443764206e-06 +UniRef50_D6SIU1 Primosomal protein DnaI 0.0128068421652 0.00217052159296 -0.0106363205722 +UniRef50_M7D0G7 Type II restriction endonuclease 0.00487205552345 0.000741991069584 -0.00413006445387 +UniRef50_A6M2D9 Helix turn helix domain containing protein, AraC type 0.000347872127907 0.000205556871361 -0.000142315256546 +UniRef50_D4HBM5 Glycerate kinase 0.000405539303652 0.00591814088249 0.00551260157884 +UniRef50_F3U2F5 Acetamidase Formamidase 0.000548242008848 0.000520667526457 -2.7574482391e-05 +UniRef50_A3DL27 Ornithine carbamoyltransferase 4.09662916435e-06 5.22971725381e-05 4.82005433737e-05 +UniRef50_Q895G1 Cytidylate kinase 0.000515295005982 0.00221094521757 0.00169565021159 +UniRef50_Q9ZLT4 CAG pathogenicity island protein 23 0.000336897781558 0.00271601145037 0.00237911366881 +UniRef50_H6RWI5 Metalloendopeptidase like membrane protein 0.000415591239195 1.233713089e-05 -0.000403254108305 +UniRef50_D3I9D0 Pyruvate formate lyase 1 activating enzyme 0.000389921967949 0.00110622807017 0.000716306102221 +UniRef50_L8BL77 CFA I fimbrial subunit C usher protein 0.00247581118278 0.000647217936617 -0.00182859324616 +UniRef50_O22567-2 Isoform 2 of 1 deoxy D xylulose 5 phosphate synthase 1, chloroplastic 8.73996318175e-06 0.000148822179419 0.000140082216237 +UniRef50_UPI00036BEC99 phosphoheptose isomerase 1.058613088e-05 1.92055511936e-05 8.6194203136e-06 +UniRef50_K2K0X8 Putative phenol degradation enzyme 0.000109997988054 2.48280451251e-05 -8.51699429289e-05 +UniRef50_W7WR24 0.00221306104746 0.000203688670267 -0.00200937237719 +UniRef50_P37767 0.0019678653801 0.000256425503788 -0.00171143987631 +UniRef50_F2AAA0 0.000216329207388 0.000153944416267 -6.2384791121e-05 +UniRef50_Q3J0V4 Periplasmic sensor diguanylate cyclase 0.00129608834843 0.00040385203566 -0.00089223631277 +UniRef50_I7A0G4 Two component transcriptional regulator 0.000404449273767 0.00026725493682 -0.000137194336947 +UniRef50_Q88RC0 Glutarate semialdehyde dehydrogenase DavD 0.00649809056459 0.000784787218906 -0.00571330334568 +UniRef50_Q47HI2 Ribosomal RNA large subunit methyltransferase E 8.0612304902e-06 4.90648773812e-05 4.1003646891e-05 +UniRef50_E8PGL4 Endonuclease III 0.000184439408233 0.00119026819571 0.00100582878748 +UniRef50_B7V5R0 Phosphate ABC transporter, periplasmic phosphate binding protein, PstS 0.000293217609458 0.000185345212465 -0.000107872396993 +UniRef50_UPI0003B56757 GTPase Der 7.5643144008e-06 1.35288343331e-05 5.9645199323e-06 +UniRef50_UPI0003720F40 hypothetical protein, partial 1.64267410548e-05 4.57513295422e-05 2.93245884874e-05 +UniRef50_G2MDU0 Outer membrane protein HopG 8.55330790492e-05 0.00431605133087 0.00423051825182 +UniRef50_Q98R27 Proline tRNA ligase 4.3546771066e-06 1.42143359139e-05 9.8596588073e-06 +UniRef50_UPI0003B722EC MULTISPECIES 4.50569830364e-06 6.09960114423e-05 5.64903131387e-05 +UniRef50_B8IMD9 2.74923853954e-05 4.30159577452e-05 1.55235723498e-05 +UniRef50_A6LV83 AMP dependent synthetase and ligase 0.000503276724829 0.00214217014057 0.00163889341574 +UniRef50_Q8XXC7 Uracil phosphoribosyltransferase 0.0330519847249 0.0418314798117 0.0087794950868 +UniRef50_G8V724 Hsp20 alpha crystallin family protein 0.00443669326528 0.000902070771962 -0.00353462249332 +UniRef50_UPI00047E563E hypothetical protein 0.000352863258056 5.83389133913e-05 -0.000294524344665 +UniRef50_G9AD09 7.1091251068e-05 2.95713639078e-05 -4.15198871602e-05 +UniRef50_T0TCE5 SWF SNF family helicase 0.00496202037088 0.000779683570711 -0.00418233680017 +UniRef50_Q5NRL6 Ribonuclease PH 0.000231554356069 0.00269966535878 0.00246811100271 +UniRef50_Q9ZFE4 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.000657956894381 0.000675428086475 1.7471192094e-05 +UniRef50_J9NZP9 0.000109629092634 4.45139921906e-05 -6.51151004434e-05 +UniRef50_Q1LSV5 Uridylate kinase 0.00459938297139 0.00283152187767 -0.00176786109372 +UniRef50_U5MWW8 Glycosyltransferase EpsJ 0.000476616735539 0.000957538252297 0.000480921516758 +UniRef50_D5ATD7 Flagellar FlaF family protein 0.000211779833475 0.00019748674593 -1.4293087545e-05 +UniRef50_UPI0004796392 hypothetical protein 5.43227945589e-05 1.49193751044e-05 -3.94034194545e-05 +UniRef50_P0A864 Thiol peroxidase 0.00265074463916 0.000368378426439 -0.00228236621272 +UniRef50_UPI0003B588F0 short chain dehydrogenase 5.21285975907e-05 0.000114635469689 6.25068720983e-05 +UniRef50_T1Y9K8 0.0275965373987 0.0072606605409 -0.0203358768578 +UniRef50_UPI0003C0FD80 0.000123543006275 9.90670756146e-05 -2.44759306604e-05 +UniRef50_D2VX44 Predicted protein 3.77689752769e-06 6.22920192632e-06 2.45230439863e-06 +UniRef50_I6T5F7 NADH dehydrogenase, NADH nitroreductase 0.00627654715147 0.00091211631635 -0.00536443083512 +UniRef50_D3QJ09 0.0126784396694 0.00183257517624 -0.0108458644932 +UniRef50_C6SS70 Negative transcriptional regulator, CopY 0.0029531216815 0.000401791435631 -0.00255133024587 +UniRef50_P90463 Thymidylate synthase 3.26739210013e-05 0.000112741223415 8.00673024137e-05 +UniRef50_UPI0004431E21 0.000121115443649 0.000107573535165 -1.3541908484e-05 +UniRef50_A6M1I3 Amino acid permease associated region 0.000391124305208 0.000744986203214 0.000353861898006 +UniRef50_UPI00036E2C46 hypothetical protein, partial 1.45062615441e-06 9.96545910418e-06 8.51483294977e-06 +UniRef50_Q9EXU9 Coenzyme PQQ synthesis protein D 0.000273975813664 0.000108185021513 -0.000165790792151 +UniRef50_O67876 Delta aminolevulinic acid dehydratase 0.0107239450185 0.00228644127843 -0.00843750374007 +UniRef50_Q9KPA4 L aspartate oxidase 0.00411234210087 0.00226329826876 -0.00184904383211 +UniRef50_P28345 Malate synthase, glyoxysomal 1.68469118833e-05 2.11578055833e-05 4.3108937e-06 +UniRef50_C4ZXQ4 Purine ribonucleoside efflux pump NepI 0.0022833015857 0.000715917265196 -0.0015673843205 +UniRef50_Q93A70 RecA like protein 4.55492456182e-05 0.000409436768006 0.000363887522388 +UniRef50_UPI000318A15A hypothetical protein 4.5278120142e-06 7.58869198888e-06 3.06087997468e-06 +UniRef50_UPI00046CE89C hypothetical protein 1.84548559956e-05 3.06125494054e-05 1.21576934098e-05 +UniRef50_Q4A0J9 Urease accessory protein UreD 0.0175186019734 0.00374555935937 -0.013773042614 +UniRef50_UPI00022CAA48 PREDICTED 1.17462909427e-05 7.14789923884e-06 -4.59839170386e-06 +UniRef50_Q03S48 Bifunctional protein PyrR 0.000413808905559 0.00361615485319 0.00320234594763 +UniRef50_UPI000479DE62 hypothetical protein 3.08497327948e-05 0.000178641638844 0.000147791906049 +UniRef50_Q5NYP6 Ribonuclease H 6.1266895422e-05 2.46391940494e-05 -3.66277013726e-05 +UniRef50_P45089 Arginine ABC transporter permease protein ArtM 0.00258251456848 0.000336223952777 -0.0022462906157 +UniRef50_W1TYY5 0.000325542642809 0.00137356607068 0.00104802342787 +UniRef50_Q6MI59 Aspartate tRNA ligase 3.61092171359e-06 1.5633044973e-05 1.20221232594e-05 +UniRef50_A8J7P6 Predicted protein 5.72794768461e-06 3.76941830841e-06 -1.9585293762e-06 +UniRef50_UPI00046612DA cation transporter 3.85077449897e-06 7.60941393681e-06 3.75863943784e-06 +UniRef50_B3QS41 Adenylate kinase 0.000413140952451 0.00179072055359 0.00137757960114 +UniRef50_P44779 L fucose isomerase 0.00289135481291 0.00080332345031 -0.0020880313626 +UniRef50_P77504 0.0036282451888 0.00165980289022 -0.00196844229858 +UniRef50_P77986 Cysteine tRNA ligase 0.00012330998408 0.000111327062593 -1.1982921487e-05 +UniRef50_G7U7R4 2.45182122722e-05 0.00738814227419 0.00736362406192 +UniRef50_Q5HR39 0.00797227539995 0.00204750500429 -0.00592477039566 +UniRef50_C5VW20 Metal dependent transcriptional regulator 0.0129344480131 0.00447480784315 -0.00845964016995 +UniRef50_UPI00046F9A55 UDP N acetylenolpyruvoylglucosamine reductase, partial 1.71945440455e-05 4.7039362607e-05 2.98448185615e-05 +UniRef50_UPI000462C1F9 ATPase, partial 2.66909568512e-06 0.000138424063777 0.000135754968092 +UniRef50_F2N7I9 2 keto 3 deoxy phosphogluconate aldolase 0.00064080596504 0.000819488032608 0.000178682067568 +UniRef50_B9EBC6 Ribonuclease HII 0.00819303649257 0.00436977133179 -0.00382326516078 +UniRef50_UPI000255BC43 gamma aminobutyrate permease, partial 2.06406608613e-05 9.8153134667e-05 7.75124738057e-05 +UniRef50_A8F524 Peptide deformylase 8.24705332096e-06 1.09165816062e-05 2.66952828524e-06 +UniRef50_Q9RW75 Acetylornithine acetyl lysine aminotransferase 0.000190820085505 0.0238562079432 0.0236653878577 +UniRef50_M1MR71 PGA biosynthesis protein CapA 0.000235086360003 0.00166747316035 0.00143238680035 +UniRef50_UPI00037D52AC hypothetical protein 3.31892970276e-06 1.30771084448e-05 9.75817874204e-06 +UniRef50_M9S1L9 Periplasmic aliphatic sulfonate binding protein 0.00011723167356 0.000206515178457 8.9283504897e-05 +UniRef50_UPI000471FB75 hypothetical protein 4.49377133561e-05 1.50076730746e-05 -2.99300402815e-05 +UniRef50_UPI000462F0A6 sodium 1.03591151059e-05 1.58246256433e-05 5.4655105374e-06 +UniRef50_UPI00035E3397 hypothetical protein 4.98101853286e-06 4.43604775189e-06 -5.4497078097e-07 +UniRef50_P39616 Probable aldehyde dehydrogenase YwdH 0.0194139667238 0.00558740262145 -0.0138265641023 +UniRef50_G8PQT7 0.000125694085677 2.99009741532e-05 -9.57931115238e-05 +UniRef50_UPI00037BE06D hypothetical protein 4.91446441076e-05 4.36490099097e-05 -5.4956341979e-06 +UniRef50_A6QK31 Transcriptional regulator LysR family protein 0.0161689411847 0.00253536025748 -0.0136335809272 +UniRef50_M4WZ70 PpiC type peptidyl prolyl cis trans isomerase 0.000905175697333 0.000220136373534 -0.000685039323799 +UniRef50_UPI00042CF608 PREDICTED 2.37841347631e-05 7.75791639907e-06 -1.6026218364e-05 +UniRef50_T0T7J2 Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily 0.00685942780203 0.000520399813437 -0.00633902798859 +UniRef50_UPI0003B3103D exodeoxyribonuclease III 3.43071150191e-05 3.94456160424e-05 5.1385010233e-06 +UniRef50_Q165N2 Long chain fatty acid protein, putative 8.93028677418e-06 2.63790951444e-05 1.74488083702e-05 +UniRef50_G6XX97 Putative NAD specific glutamate dehydrogenase 3.06399391356e-05 1.84306468806e-05 -1.2209292255e-05 +UniRef50_A6LQ40 0.000177779900556 0.0017150363486 0.00153725644804 +UniRef50_W5X5Z9 Putative bile acid beta glucosidase 1.61688279091e-05 2.51197896676e-05 8.9509617585e-06 +UniRef50_D8LTS8 0.000175839565378 1.83249429851e-05 -0.000157514622393 +UniRef50_UPI0002F66B6C hypothetical protein 1.98773034701e-05 0.000208016767033 0.000188139463563 +UniRef50_P68825 Peptide deformylase 0.0217730230778 0.00749985794964 -0.0142731651282 +UniRef50_A5IR31 Transcriptional regulator, XRE family 0.00379222337175 0.0016043492418 -0.00218787412995 +UniRef50_UPI0003616553 hypothetical protein 7.57605633654e-06 5.1969860412e-05 4.43938040755e-05 +UniRef50_X0YG76 Marine sediment metagenome DNA, contig 4.26828283053e-05 4.11363328195e-05 -1.5464954858e-06 +UniRef50_D4DSS6 Delta 1 pyrroline 5 carboxylate dehydrogenase 0.000103804687933 0.00399454279466 0.00389073810673 +UniRef50_A1W398 7.09189678027e-05 1.26304447337e-05 -5.8288523069e-05 +UniRef50_Q2J878 CTP synthase 0.0330242988951 0.0201113824007 -0.0129129164944 +UniRef50_P76250 HTH type transcriptional regulator DmlR 0.00379065996074 0.00113218794398 -0.00265847201676 +UniRef50_B9K420 Transposase 5.95511907884e-05 2.41594836547e-05 -3.53917071337e-05 +UniRef50_B6ZTT1 Outer membrane usher protein fimD homolog 0.00105743945506 0.000227881224986 -0.000829558230074 +UniRef50_A7X2C6 Quinolone resistance protein NorB 0.0390686653492 0.00852713261777 -0.0305415327314 +UniRef50_R5GDG8 3.91682345988e-05 7.10651504003e-05 3.18969158015e-05 +UniRef50_UPI0003B34194 sodium hydrogen exchanger 4.78498507603e-06 6.53951437083e-06 1.7545292948e-06 +UniRef50_UPI0003817F52 hypothetical protein 4.05713568254e-05 7.36506362885e-05 3.30792794631e-05 +UniRef50_UPI00046E6BB7 hypothetical protein 1.15777710732e-05 5.78754043134e-06 -5.79023064186e-06 +UniRef50_Q8CTV4 0.00119540366331 0.00224291168503 0.00104750802172 +UniRef50_F6D239 0.00334318576125 0.000787528349983 -0.00255565741127 +UniRef50_K7EGU5 2.17273602896e-05 8.90976590777e-05 6.73702987881e-05 +UniRef50_A5UNG7 Glycerol 3 phosphate dehydrogenase 0.00626499091887 0.00196408671005 -0.00430090420882 +UniRef50_A9GC83 Undecaprenyl diphosphatase 0.000122990638441 1.30028232995e-05 -0.000109987815142 +UniRef50_B4S8V7 Phosphoribosylformylglycinamidine synthase, purS 2.21651754361e-05 9.06759005361e-05 6.85107251e-05 +UniRef50_UPI00036BB70C resolvase 8.33391543127e-05 1.70213090651e-05 -6.63178452476e-05 +UniRef50_W5XH95 Phosphoesterase PA phosphatase related protein 5.38579351157e-05 0.000356077462921 0.000302219527805 +UniRef50_P77359 0.00264891137119 0.00135567202294 -0.00129323934825 +UniRef50_F4CYV0 8.42740092923e-05 3.56441836254e-05 -4.86298256669e-05 +UniRef50_UPI00047AE18A hypothetical protein, partial 2.99313145365e-05 2.04362215755e-05 -9.495092961e-06 +UniRef50_A8F453 Carbamoyl phosphate synthase large chain 1.82268666246e-05 6.0205370901e-06 -1.22063295345e-05 +UniRef50_T0VIT8 Malate Na symporter 0.000976156905217 0.000765048428885 -0.000211108476332 +UniRef50_A7H5L7 Adenylosuccinate synthetase 0.00010984073391 0.00386607538677 0.00375623465286 +UniRef50_D6B724 Prevent host death family protein 7.30738217767e-05 8.233612396e-05 9.2623021833e-06 +UniRef50_Q8MIF7 Phosphoglycerate kinase 2 9.27601131087e-06 1.16763387061e-05 2.40032739523e-06 +UniRef50_UPI000311B4DE hypothetical protein 9.35246362747e-06 0.000117506816915 0.000108154353288 +UniRef50_M1XHI0 Transposon tn552 dna invertase binr 0.0189122510776 0.00447277879416 -0.0144394722834 +UniRef50_UPI0003B5BE6D hypothetical protein 8.67931948009e-06 8.35018562184e-06 -3.2913385825e-07 +UniRef50_Q87JE8 Catalase 1.65898213438e-05 0.000171343229368 0.000154753408024 +UniRef50_P37757 0.00393126609127 0.00213799522707 -0.0017932708642 +UniRef50_R4RDL8 Methyl accepting chemotaxis transducer 0.00058697529377 0.000456106233222 -0.000130869060548 +UniRef50_UPI00035DEE56 hypothetical protein 7.5771237699e-05 8.7390494867e-06 -6.70321882123e-05 +UniRef50_L1K5S4 0.000747389671087 0.000398866114553 -0.000348523556534 +UniRef50_A4WQH5 Transposase IS66 0.000279728387848 0.000167812472678 -0.00011191591517 +UniRef50_F1VLT5 Response regulator receiver domain protein 0.000406197823147 0.00520001739019 0.00479381956704 +UniRef50_A0A013RJA0 Type I secretion C terminal target domain protein 0.000358880309145 0.00442544502898 0.00406656471983 +UniRef50_K4PTK7 PTS system, IIC component 0.000624103821781 0.000277727308957 -0.000346376512824 +UniRef50_Q04GD7 Xanthine phosphoribosyltransferase 5.30754470895e-05 6.31192561358e-05 1.00438090463e-05 +UniRef50_UPI0003315B6B PREDICTED 7.36209050973e-06 3.67141406364e-06 -3.69067644609e-06 +UniRef50_W0WCB8 0.000328248685954 0.000902892285473 0.000574643599519 +UniRef50_Q321F0 3 dehydroquinate dehydratase 0.00275388128753 0.00522436148021 0.00247048019268 +UniRef50_Q8DYV7 Lipoprotein signal peptidase 0.00265322243263 0.00180732187811 -0.00084590055452 +UniRef50_A9MFF7 0.00222503161389 0.0010982946248 -0.00112673698909 +UniRef50_P44645 Molybdopterin adenylyltransferase 0.0051956389732 7.16715768756e-05 -0.00512396739632 +UniRef50_C6S4K8 Purine cytosine transport protein 0.000158164520469 0.00444988520001 0.00429172067954 +UniRef50_D8JKV6 0.000237412571605 0.000800499086684 0.000563086515079 +UniRef50_W8TU36 Membrane protein 0.00984974911871 0.0010150982042 -0.00883465091451 +UniRef50_UPI000477BC75 transcriptional regulator 1.5991911645e-05 2.51531499952e-05 9.1612383502e-06 +UniRef50_Q9RZV6 0.000137521770903 0.0451475265823 0.0450100048114 +UniRef50_Q9RZV7 0.000250441106358 0.0382929505919 0.0380425094855 +UniRef50_P46850 RNA splicing ligase RtcB 0.00398192575317 0.00453617319524 0.00055424744207 +UniRef50_B7MDM9 Phosphoenolpyruvate carboxykinase [ATP] 0.0028417889623 0.00086961481196 -0.00197217415034 +UniRef50_UPI00030354CC hypothetical protein 0.00907473298052 0.00118469498658 -0.00789003799394 +UniRef50_P33030 0.00160226702734 0.000815506776343 -0.000786760250997 +UniRef50_G8AF41 1.31817498045e-06 3.51368098637e-05 3.38186348832e-05 +UniRef50_Q1GBR1 Ribosomal RNA small subunit methyltransferase A 1.11260728979e-05 7.96308160828e-06 -3.16299128962e-06 +UniRef50_A7FBS8 0.000248346045292 0.0064329912625 0.00618464521721 +UniRef50_B9M627 Transcriptional regulator, BadM Rrf2 family 2.99841538362e-05 1.25041522789e-05 -1.74800015573e-05 +UniRef50_Q6FDG7 9.62156301183e-05 0.0038749210444 0.00377870541428 +UniRef50_UPI00036AD763 hypothetical protein 5.46847041056e-06 1.02593939812e-05 4.79092357064e-06 +UniRef50_O28206 Formylmethanofuran tetrahydromethanopterin formyltransferase like protein 0.00236046979148 0.000693745465837 -0.00166672432564 +UniRef50_C4XMN4 NADH quinone oxidoreductase subunit K 5.76325106515e-05 3.21245532997e-05 -2.55079573518e-05 +UniRef50_P76004 0.00482600932099 0.00216778491095 -0.00265822441004 +UniRef50_G7M0B3 Subtilisin 0.000205474200728 0.00174374743354 0.00153827323281 +UniRef50_F8KSC7 Phosphoglycerol transferase 5.63131758642e-05 0.003587724873 0.00353141169714 +UniRef50_P76001 0.000589223248134 0.000681500088921 9.2276840787e-05 +UniRef50_A0A023NX12 Potassium transporter KefB 0.00030953723359 0.000418158035251 0.000108620801661 +UniRef50_UPI00037CB356 hypothetical protein, partial 0.000120437315781 4.13460486406e-05 -7.90912671404e-05 +UniRef50_C7NGM8 Signal recognition particle receptor FtsY 0.000451318327698 0.00442336987928 0.00397205155158 +UniRef50_Q5HIG5 Hypoxanthine guanine phosphoribosyltransferase 0.0128282598958 0.000439635506556 -0.0123886243892 +UniRef50_A3PHR5 0.00522720533929 0.00505944341422 -0.00016776192507 +UniRef50_W5X521 Virulence associated protein 0.000107873082055 2.97260019468e-05 -7.81470801082e-05 +UniRef50_UPI00037FC1A9 hypothetical protein, partial 2.88056684859e-05 7.97338811406e-06 -2.08322803718e-05 +UniRef50_UPI000255A713 type I secretion target repeat containing protein 6.27722461015e-06 2.83605402261e-05 2.20833156159e-05 +UniRef50_E3A6M0 0.00283583071926 0.000250471777561 -0.0025853589417 +UniRef50_Q88FA1 Transcriptional regulator, GntR family 0.000838634628888 0.00112570317778 0.000287068548892 +UniRef50_D8JEZ3 Adenylate cyclase 9.11801905478e-05 0.00723698906544 0.00714580887489 +UniRef50_Q8DWH1 tRNA pseudouridine synthase A 0.0050902451797 0.00237802669005 -0.00271221848965 +UniRef50_C0QPF4 3 oxoacyl [acyl carrier protein] synthase 3 0.000111042431648 0.000731991240064 0.000620948808416 +UniRef50_UPI0003F94ECB CMP deaminase 5.66141317442e-06 2.35332448012e-05 1.78718316268e-05 +UniRef50_UPI0004090BEE hypothetical protein 2.0240844232e-05 5.51027619416e-06 -1.47305680378e-05 +UniRef50_Q16DB6 0.0102853770731 0.00266764307649 -0.00761773399661 +UniRef50_Q16DB7 0.000205443592801 5.57566899613e-05 -0.00014968690284 +UniRef50_B9KX58 ISSpo9, transposase 0.00180396028647 0.000777321580853 -0.00102663870562 +UniRef50_UPI0004785315 hypothetical protein 3.45807084951e-06 6.87049441911e-06 3.4124235696e-06 +UniRef50_UPI0002DCF3B2 sugar ABC transporter ATP binding protein 8.07537297295e-05 0.0001221988905 4.14451607705e-05 +UniRef50_P26158 0.00852295504189 0.00259825798934 -0.00592469705255 +UniRef50_U6N1Q3 Mitochondrial carrier domain containing protein, putative 3.4151325891e-05 1.49985599791e-05 -1.91527659119e-05 +UniRef50_UPI00047CE8B7 ABC transporter 4.53443613342e-05 4.33751977949e-05 -1.9691635393e-06 +UniRef50_UPI0001D2E721 TonB dependent siderophore receptor 5.21219542073e-05 4.77981645463e-06 -4.73421377527e-05 +UniRef50_Q97EZ4 Galactose 1 phosphate uridylyltransferase 0.000571267340116 0.00051661003385 -5.4657306266e-05 +UniRef50_U7IBM4 8.97675076014e-05 1.78850446549e-05 -7.18824629465e-05 +UniRef50_P02992 Elongation factor Tu, mitochondrial 0.00792274382853 0.0170887639404 0.00916602011187 +UniRef50_E3Z0Y0 Ion transport protein, putative 0.00017135921283 0.000256795985818 8.5436772988e-05 +UniRef50_UPI0003A9A8D3 16S rRNA methyltransferase 5.80842023151e-05 1.93292658702e-05 -3.87549364449e-05 +UniRef50_W4TI17 Excinuclease ABC subunit A 5.06618167083e-06 0.0001153514594 0.000110285277729 +UniRef50_X4FS17 0.000116381944324 6.3101791844e-06 -0.00011007176514 +UniRef50_Q82F74 Probable M18 family aminopeptidase 2 8.98776163989e-05 0.00393773782772 0.00384786021132 +UniRef50_R5E350 Phospholipase patatin family 0.000552497353447 0.000463045368397 -8.945198505e-05 +UniRef50_Q04513 L threonine dehydratase biosynthetic IlvA 1.20853596503e-05 5.75814818574e-06 -6.32721146456e-06 +UniRef50_Q51688 0.000227491299583 0.000818694928362 0.000591203628779 +UniRef50_UPI0003732A38 hypothetical protein 1.85037008442e-05 8.05166134607e-06 -1.04520394981e-05 +UniRef50_K7T001 Transposase 0.00013047781796 5.91597526763e-05 -7.13180652837e-05 +UniRef50_UPI0003814692 hypothetical protein 4.28024181088e-06 1.57205370652e-05 1.14402952543e-05 +UniRef50_T2EQP3 AAA ATPase domain protein 0.000775213591037 0.00130682417084 0.000531610579803 +UniRef50_G7M265 Precorrin 2 dehydrogenase 0.000311971891609 0.0026524671094 0.00234049521779 +UniRef50_B9KM23 Trk system potassium uptake protein 0.0107478175445 0.00308468724863 -0.00766313029587 +UniRef50_Q9UW15 Ribonucleoside diphosphate reductase large chain 2.66085096079e-06 3.92353091686e-05 3.65744582078e-05 +UniRef50_A0A031JPA4 Short chain dehydrogenase 4.84173914696e-06 2.57569600472e-05 2.09152209002e-05 +UniRef50_Q8DT19 0.00589679267316 0.00256591766107 -0.00333087501209 +UniRef50_UPI00034AF93B hypothetical protein 1.20324646676e-05 1.34992354662e-05 1.4667707986e-06 +UniRef50_Q2L2E4 Phage protein 1.58402342792e-05 5.0220130852e-06 -1.0818221194e-05 +UniRef50_Q8UEN6 Valine tRNA ligase 2.15842189615e-06 2.74458036245e-06 5.861584663e-07 +UniRef50_D9SQP5 Metal dependent phosphohydrolase 0.000688759767944 0.00235844050013 0.00166968073219 +UniRef50_M1MG21 0.000250563420697 0.000492194508663 0.000241631087966 +UniRef50_D6LAV3 PTS system, mannose fructose sorbose family, IID component 0.00055789152799 0.00429288760443 0.00373499607644 +UniRef50_UPI0003B68CA0 ABC transporter 1.57938418023e-05 2.94897299128e-05 1.36958881105e-05 +UniRef50_A1SM04 5 carboxymethyl 2 hydroxymuconate delta isomerase 0.000170294431062 0.00402855519095 0.00385826075989 +UniRef50_X5F517 Ribonuclease G 0.000390020452734 0.00399395211082 0.00360393165809 +UniRef50_UPI0004670206 NADH 0.000114020594284 2.2944313289e-05 -9.1076280995e-05 +UniRef50_X5PZN2 Transposase 0.00501311883519 0.00124140747518 -0.00377171136001 +UniRef50_G5JV69 Mannosyl glycoprotein endo beta N acetylglucosaminidase 0.00699697848433 0.000302888928405 -0.00669408955592 +UniRef50_UPI00036BD2FB hypothetical protein 4.00831103359e-05 2.25780162039e-05 -1.7505094132e-05 +UniRef50_B4U0E8 Transcriptional regulator AraC family 0.00069489168283 0.000755977475005 6.1085792175e-05 +UniRef50_Q9HTH5 HTH type transcriptional regulator CdhR 0.0001159117673 0.000190731994744 7.4820227444e-05 +UniRef50_O26979 Probable tyrosine recombinase XerC like 0.00224004279447 0.000492123507468 -0.001747919287 +UniRef50_B2UYR1 Surface protein PspC 0.00090537242023 0.0016474393278 0.00074206690757 +UniRef50_Q16DI2 Transcriptional regulator, LacI family, putative 0.0064036640893 0.000997109696131 -0.00540655439317 +UniRef50_UPI000365A6F0 hypothetical protein 2.35466749406e-05 2.14222778525e-05 -2.1243970881e-06 +UniRef50_T2EHK8 0.0103053082357 0.0216231310167 0.011317822781 +UniRef50_UPI00024849FE RTX toxins and related Ca2+ binding protein like protein 1.31074119341e-05 4.76051440121e-06 -8.34689753289e-06 +UniRef50_UPI00047564FA hypothetical protein 0.000134398643058 6.76827814778e-05 -6.67158615802e-05 +UniRef50_A5VBC0 Aldehyde dehydrogenase 0.000182674588784 0.00982813362649 0.00964545903771 +UniRef50_Q5F691 Dephospho CoA kinase 0.000820660205591 0.00287076001064 0.00205009980505 +UniRef50_R9YSL1 Thermolysin metallopeptidase, catalytic domain protein 0.0064132952579 0.000372053464676 -0.00604124179322 +UniRef50_UPI00037991D0 hypothetical protein 0.00032768904637 0.000115867403879 -0.000211821642491 +UniRef50_UPI00030D7518 hypothetical protein 0.0001646841461 2.56621220818e-05 -0.000139022024018 +UniRef50_UPI0004649A8B MULTISPECIES 7.10232066516e-07 4.50521382424e-06 3.79498175772e-06 +UniRef50_F0TFK9 Cysteine synthase 5.02033113056e-05 2.69693317851e-05 -2.32339795205e-05 +UniRef50_Q68Y13 Zinc import ATP binding protein ZnuC 2.49795121395e-05 8.14253085734e-06 -1.68369812822e-05 +UniRef50_P23620 Phosphate regulon transcriptional regulatory protein PhoB 0.0033625437503 0.00596943731749 0.00260689356719 +UniRef50_Q04KA9 Uridine kinase 0.000272734724215 0.0360577192806 0.0357849845564 +UniRef50_K0L612 0.00424865104263 0.00233144767259 -0.00191720337004 +UniRef50_W4UDR2 Glucoamylase S1 S2 5.38508959721e-05 0.000155825829253 0.000101974933281 +UniRef50_Q57H69 DNA directed RNA polymerase subunit beta 5.20007446378e-06 4.98038951864e-06 -2.1968494514e-07 +UniRef50_G7LYD5 0.00129796819429 0.000383656151266 -0.000914312043024 +UniRef50_T9UYG2 0.000145186918795 0.000784601211943 0.000639414293148 +UniRef50_UPI00035F619C hypothetical protein 2.23662314799e-05 7.53698296108e-06 -1.48292485188e-05 +UniRef50_Q897P8 D alanine D alanine ligase A 0.00117346074632 0.00299032158069 0.00181686083437 +UniRef50_P64579 mRNA interferase HigB 0.000389160813245 0.000567916740756 0.000178755927511 +UniRef50_Q67KN9 NADH quinone oxidoreductase subunit D 2 0.000245166867811 0.00272469419497 0.00247952732716 +UniRef50_S9TMR0 LigA 9.01638508349e-05 0.000150662779873 6.04989290381e-05 +UniRef50_UPI00047706B6 hypothetical protein 4.91446625101e-05 2.9536463799e-05 -1.96081987111e-05 +UniRef50_UPI00036FBC1B hypothetical protein 4.95459410972e-06 9.87819307095e-06 4.92359896123e-06 +UniRef50_J7QVF5 Conserved domain protein 0.00237397525437 0.000684615572919 -0.00168935968145 +UniRef50_B0VQE3 Transposase of ISAba7, IS5 family 4.3940266949e-05 4.35835014646e-05 -3.567654844e-07 +UniRef50_Q2SHM4 Phosphonoacetaldehyde hydrolase 0.000703753734855 0.00561755029929 0.00491379656443 +UniRef50_W8ADW9 NagD like phosphatase 2.81127906129e-05 1.21517477243e-05 -1.59610428886e-05 +UniRef50_Q2CIA8 1.71654394907e-05 0.000255408814794 0.000238243375303 +UniRef50_J7L244 Zinc binding dehydrogenase family protein 0.000557169284122 0.00798172167059 0.00742455238647 +UniRef50_I0EVS2 Cysteine rich protein C 0.000865001265076 0.000918397231504 5.3395966428e-05 +UniRef50_S5CUQ4 Folate dependent phosphoribosylglycinamide formyltransferase PurN 0.000209326796037 0.0118992480668 0.0116899212708 +UniRef50_A0A024HP52 Mig 14 0.000545682177815 0.000648017911051 0.000102335733236 +UniRef50_A1SEI7 50S ribosomal protein L1 0.0314538045871 0.0154660186077 -0.0159877859794 +UniRef50_B9KUB3 0.00151527662611 0.000755440359541 -0.000759836266569 +UniRef50_B5XK69 Oleate hydratase 0.0290207911557 0.00733131786053 -0.0216894732952 +UniRef50_Q9Z9J0 tRNA pseudouridine synthase A 6.61221346797e-06 1.01326898431e-05 3.52047637513e-06 +UniRef50_UPI000475A5BB arabinose transporter permease 5.41907773541e-06 1.34564354996e-05 8.03735776419e-06 +UniRef50_UPI000470CEEA hypothetical protein 0.000111675017345 3.68358643526e-05 -7.48391529924e-05 +UniRef50_Q13LX0 Ribose import ATP binding protein RbsA 3.77552860117e-06 0.00483226880594 0.00482849327734 +UniRef50_UPI0004413371 ribosomal protein S12 7.64926842815e-05 0.000110522871853 3.40301875715e-05 +UniRef50_F0KGI1 DNA directed DNA polymerase 0.000170743780995 0.00537394772967 0.00520320394868 +UniRef50_B8JA02 1.06211682348e-05 3.54175367128e-05 2.4796368478e-05 +UniRef50_R1GXI1 0.00019233625596 0.00546438875869 0.00527205250273 +UniRef50_Q03XB9 5.80872096252e-06 6.1328696289e-06 3.2414866638e-07 +UniRef50_R9HYC8 7.88729265857e-06 1.14454841506e-05 3.55819149203e-06 +UniRef50_UPI0003941003 PREDICTED 3.87265982673e-07 5.14957937677e-06 4.7623133941e-06 +UniRef50_UPI00047CE519 hypothetical protein 1.83136536847e-05 8.8381366584e-05 7.00677128993e-05 +UniRef50_UPI00035FDF95 acetylornithine aminotransferase 4.00023544073e-06 0.000204305853894 0.000200305618453 +UniRef50_Q56066 Molybdopterin molybdenumtransferase 0.00351663700722 0.0019003417703 -0.00161629523692 +UniRef50_UPI0003B4081B biotin biosynthesis protein BioY 1.54784338901e-05 0.000224899355305 0.000209420921415 +UniRef50_Q62FS7 Ribosomal RNA small subunit methyltransferase G 4.48865217827e-05 1.04708773968e-05 -3.44156443859e-05 +UniRef50_UPI000477EC64 glycogen debranching protein, partial 6.20727357053e-05 0.000226370140902 0.000164297405197 +UniRef50_Q8YFU1 5 hydroxyisourate hydrolase 3.20998236775e-05 3.73443174851e-05 5.2444938076e-06 +UniRef50_B2HX69 Predicted hydrolase 0.000175303090798 0.0049614658533 0.0047861627625 +UniRef50_Q8CU33 0.00573538598731 0.00409177570223 -0.00164361028508 +UniRef50_UPI00037B3020 hypothetical protein 0.000115750686468 5.19467639051e-05 -6.38039225629e-05 +UniRef50_Q74CZ3 Adenine phosphoribosyltransferase 1.18204234757e-05 3.31118484539e-05 2.12914249782e-05 +UniRef50_Q5PJI9 Arginine exporter protein ArgO 0.000985810997847 0.000279479531722 -0.000706331466125 +UniRef50_A5U672 LexA repressor 9.4561414589e-05 1.53493071337e-05 -7.92121074553e-05 +UniRef50_UPI0004743595 hypothetical protein, partial 1.89681409268e-05 4.24404208244e-05 2.34722798976e-05 +UniRef50_A6LT65 0.00013122340285 0.0019463580868 0.00181513468395 +UniRef50_UPI000361C034 hypothetical protein 2.36858367208e-06 5.8270716318e-06 3.45848795972e-06 +UniRef50_W0NSJ7 Transcriptional regulator ICP4 0.00011182888895 0.000264567152027 0.000152738263077 +UniRef50_Q67JB9 Ribosomal RNA small subunit methyltransferase A 1.94254594117e-05 2.82999621999e-05 8.8745027882e-06 +UniRef50_UPI00035FFF58 hypothetical protein 5.35079479959e-05 9.7596061496e-06 -4.37483418463e-05 +UniRef50_Q6A6S0 0.000230174383446 0.0014869168625 0.00125674247905 +UniRef50_Q99ZV9 CRISPR associated protein Csn2 0.00227792300668 0.0040999716039 0.00182204859722 +UniRef50_G2AB04 7.26642884203e-05 0.000181284462981 0.000108620174561 +UniRef50_H2K8K5 0.000290718097575 0.000121321463739 -0.000169396633836 +UniRef50_A3PIQ0 Methyl accepting chemotaxis sensory transducer 0.00469801662557 0.000584161428482 -0.00411385519709 +UniRef50_D6ENI5 Integral membrane protein 0.000764388923005 0.000897250128943 0.000132861205938 +UniRef50_B8GW41 Uroporphyrinogen decarboxylase 5.20347657135e-06 2.5576022455e-05 2.03725458837e-05 +UniRef50_B1XUJ9 NADH quinone oxidoreductase subunit B 0.00028931674222 0.00422249043955 0.00393317369733 +UniRef50_W1H531 5 methyltetrahydrofolate homocysteine methyltransferase 0.00237371339422 0.000904395817222 -0.001469317577 +UniRef50_J9P4V0 4.30365266484e-05 0.000210439457392 0.000167402930744 +UniRef50_P20691 3 phosphoshikimate 1 carboxyvinyltransferase 3.63590790378e-06 8.36104054843e-06 4.72513264465e-06 +UniRef50_UPI0003B3BE35 ABC transporter ATPase 8.07693593821e-06 1.13298816763e-05 3.25294573809e-06 +UniRef50_UPI00046F4B95 histidinol phosphatase, partial 4.72393444711e-05 6.32207055392e-05 1.59813610681e-05 +UniRef50_UPI0002626B3F ABC transporter 1.03560664837e-05 7.88304556944e-05 6.84743892107e-05 +UniRef50_Q42682 Delta aminolevulinic acid dehydratase, chloroplastic 0.000152510220819 0.00477515458711 0.00462264436629 +UniRef50_Q8X1P0 Catalase 1.85663514085e-05 3.40677501607e-05 1.55013987522e-05 +UniRef50_D8HFS0 0.0126449300249 0.001220095075 -0.0114248349499 +UniRef50_Q18J88 Thymidine kinase 1.81511447887e-05 2.62090641476e-05 8.0579193589e-06 +UniRef50_P42449 Isocitrate lyase 1.70064558798e-05 5.26911653276e-05 3.56847094478e-05 +UniRef50_P58813 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.0040352589527 0.00101247164942 -0.00302278730328 +UniRef50_C5QCS1 Mobilization protein 0.0875318015942 0.0342188277512 -0.053312973843 +UniRef50_W8X1S4 Tricarboxylate transport membrane protein TctA 0.000689138537299 0.000449138734104 -0.000239999803195 +UniRef50_P0ADW1 Lipopolysaccharide export system protein LptC 0.00218863110446 0.000618464304081 -0.00157016680038 +UniRef50_W5XB53 Putative hydrolase 1.27537116092e-05 1.11444624346e-05 -1.6092491746e-06 +UniRef50_Q9RR99 Oxidoreductase, short chain dehydrogenase reductase family 0.000120346223862 0.0183382945385 0.0182179483146 +UniRef50_UPI0004781063 peptide ABC transporter substrate binding protein 1.89618527615e-05 5.88922205479e-05 3.99303677864e-05 +UniRef50_A5WBZ4 Transporter, NhaC family 0.000217049728402 0.00352758977622 0.00331054004782 +UniRef50_Q87BX0 Phage related protein 1.67989450747e-05 0.000785026350168 0.000768227405093 +UniRef50_Q5N353 Phosphoribosylaminoimidazole carboxylase 0.00146760948304 0.00217830873862 0.00071069925558 +UniRef50_Q3DCS0 0.000258451294737 0.000169534363488 -8.8916931249e-05 +UniRef50_Q165N5 Trimethylamine methyltransferase family protein 0.00443649361198 0.00121763763818 -0.0032188559738 +UniRef50_I0C2I1 0.0194899647681 0.00707429789861 -0.0124156668695 +UniRef50_A1AXZ6 Rhodanese 0.00270982103251 0.000377803887234 -0.00233201714528 +UniRef50_A7GYU4 Porphobilinogen deaminase 0.00012527189896 0.00291086474774 0.00278559284878 +UniRef50_UPI0003667454 hypothetical protein 1.74307832821e-06 3.65107663576e-06 1.90799830755e-06 +UniRef50_Q8CPM3 Pyruvate carboxylase 0.0121790928414 0.0060183262941 -0.0061607665473 +UniRef50_Q88V19 Glutamate racemase 0.0038429661046 0.00833734215477 0.00449437605017 +UniRef50_Q6GDE9 Serine rich adhesin for platelets 0.00260334308793 0.000705089503951 -0.00189825358398 +UniRef50_I9MZI2 1 5 phosphoribosyl 5 methylideneamino imidazole 4 carboxamide isomerase (Fragment) 1.14772186354e-05 1.73308744056e-05 5.8536557702e-06 +UniRef50_K4S416 4.85316733861e-05 3.33283795348e-05 -1.52032938513e-05 +UniRef50_V8G5H9 GntR family transcriptional regulator 0.000307686483864 0.00105007392707 0.000742387443206 +UniRef50_F3U2E4 McpE 0.00257786582352 0.00011476037767 -0.00246310544585 +UniRef50_Q8A251 Ribosomal RNA small subunit methyltransferase H 1.08304589241e-05 8.31335042072e-06 -2.51710850338e-06 +UniRef50_A6TD39 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.00545261978953 0.000732179251613 -0.00472044053792 +UniRef50_K0R9Z2 3.83954374459e-05 2.65533665821e-05 -1.18420708638e-05 +UniRef50_W7Q6R7 4.49091447258e-06 1.17340504534e-05 7.24313598082e-06 +UniRef50_A1BFY3 Lipoyl synthase 5.32397974754e-06 1.84138208097e-05 1.30898410622e-05 +UniRef50_UPI000479C2FE hypothetical protein 3.0216536204e-06 8.35530152306e-06 5.33364790266e-06 +UniRef50_K2J3T1 0.00032810833849 4.05986804015e-05 -0.000287509658089 +UniRef50_X1ENU3 Marine sediment metagenome DNA, contig 0.000294849077439 3.19329884348e-05 -0.000262916089004 +UniRef50_Q5YSJ6 6.07818701413e-06 9.29505863175e-06 3.21687161762e-06 +UniRef50_A5ULM3 Precorrin 6X reductase, CbiJ 0.00162152371903 0.00144901602335 -0.00017250769568 +UniRef50_P0ADC7 Lipopolysaccharide export system permease protein LptG 0.00507535732097 0.00152992744476 -0.00354542987621 +UniRef50_B0VDU9 0.000358372774223 0.00333465903083 0.00297628625661 +UniRef50_Q3IIQ9 8.24371133558e-06 1.88770220023e-05 1.06333106667e-05 +UniRef50_A3PI11 0.00244467066402 0.000309651305176 -0.00213501935884 +UniRef50_UPI000467E1F1 hypothetical protein 1.29715854578e-05 1.06017928987e-05 -2.3697925591e-06 +UniRef50_U5MMP4 Methyl accepting chemotaxis protein 0.000899702522952 0.000836685586281 -6.3016936671e-05 +UniRef50_E8U5H6 0.000246186514471 0.0296667468942 0.0294205603797 +UniRef50_Q07422 Bifunctional dihydrofolate reductase thymidylate synthase 1.46732144429e-05 4.04652124949e-06 -1.06266931934e-05 +UniRef50_Q9CEG3 Aminopeptidase C 0.00760447669273 0.0100572788924 0.00245280219967 +UniRef50_A6LZZ3 AAA ATPase, central domain protein 0.000137652287579 0.00158274042109 0.00144508813351 +UniRef50_UPI00035E7781 hypothetical protein, partial 2.24083408422e-05 1.99916577965e-05 -2.4166830457e-06 +UniRef50_UPI00045E7C5F translation initiation factor 2 0.000184628970971 7.258344268e-05 -0.000112045528291 +UniRef50_UPI000372ADBA actetate permease 7.68225458453e-05 9.3721532223e-05 1.68989863777e-05 +UniRef50_UPI000468220F hypothetical protein 1.58028421252e-05 7.72634080029e-06 -8.07650132491e-06 +UniRef50_L5JBS3 0.000275537218136 0.000440771201791 0.000165233983655 +UniRef50_UPI000300E129 hypothetical protein 5.16279100313e-06 2.76738796632e-05 2.25110886601e-05 +UniRef50_V9Z4G9 Replication protein 0.000724774954015 0.000855990449842 0.000131215495827 +UniRef50_D5ZZ05 7.5521921438e-05 6.47679894733e-05 -1.07539319647e-05 +UniRef50_G1X3P0 2.89121107581e-06 4.53691439515e-07 -2.4375196363e-06 +UniRef50_UPI0003C1128E 2.42641119652e-05 3.43199304391e-06 -2.08321189213e-05 +UniRef50_UPI0002000005 ATP dependent DNA helicase 5.58497019608e-05 0.000159255925212 0.000103406223251 +UniRef50_P54533 Dihydrolipoyl dehydrogenase 0.000181910555678 0.000835781594323 0.000653871038645 +UniRef50_A4W0T3 Endonuclease III 0.00593074057537 0.00171630963205 -0.00421443094332 +UniRef50_Q8FEF9 tRNA pseudouridine synthase C 0.00185429715988 0.000816930640887 -0.00103736651899 +UniRef50_A7ZPF5 0.00124168853918 0.000331816522686 -0.000909872016494 +UniRef50_A7X2C5 Extracellular matrix binding protein EbhB 0.00441803677974 0.00119794234017 -0.00322009443957 +UniRef50_UPI00039B42F6 3 dehydroquinate dehydratase 7.34189326571e-05 2.60355557787e-05 -4.73833768784e-05 +UniRef50_P24582 Modification methylase NlaIII 0.000314465419062 0.0057057551513 0.00539128973224 +UniRef50_Q5NRF0 Probable chemoreceptor glutamine deamidase CheD 0.000203181978107 5.17014581743e-05 -0.000151480519933 +UniRef50_UPI000376D860 hypothetical protein 8.58458814813e-06 3.64197684721e-06 -4.94261130092e-06 +UniRef50_A5UJQ2 0.00347819576324 0.000789332381461 -0.00268886338178 +UniRef50_UPI0002192D8C peptide ABC transporter ATP binding protein 5.01171623516e-05 1.21005130696e-05 -3.8016649282e-05 +UniRef50_C7BZT5 Cytoplasmic pump proteins of the hefABC efflux system 0.000318110756219 0.00293283953496 0.00261472877874 +UniRef50_UPI0002B9F68A hypothetical protein 6.18815898012e-05 0.000244902149441 0.00018302055964 +UniRef50_C5N6U7 0.0715481724334 0.000726188619325 -0.0708219838141 +UniRef50_E4ZD91 0.000286632948998 0.0050863424825 0.0047997095335 +UniRef50_UPI0003176417 hypothetical protein 1.64024443277e-05 7.95226633326e-05 6.31202190049e-05 +UniRef50_UPI00017444A4 lactate permease 7.40662163341e-06 3.88498798487e-05 3.14432582153e-05 +UniRef50_B8I6U9 Phosphatidylserine decarboxylase proenzyme 0.000141380520171 0.000207969510703 6.6588990532e-05 +UniRef50_O34318 0.0138738905858 0.00263926191736 -0.0112346286684 +UniRef50_UPI0002FA030F hypothetical protein 6.10226680761e-06 7.87884375256e-06 1.77657694495e-06 +UniRef50_D4H9Z1 0.000289153712066 0.00368588003269 0.00339672632062 +UniRef50_H2EPJ7 Acyl CoA synthetase 7.72311769725e-05 8.30172333899e-05 5.7860564174e-06 +UniRef50_UPI00035F5072 hypothetical protein 1.39302969329e-06 2.2976221438e-06 9.0459245051e-07 +UniRef50_U2YKU9 Penicillin binding protein 2 0.00226273070915 0.000547598462688 -0.00171513224646 +UniRef50_UPI0003D25F22 4.13109145931e-05 3.4393318365e-05 -6.9175962281e-06 +UniRef50_UPI0003FE0ED1 hypothetical protein 1.78147400641e-05 9.12974863266e-06 -8.68499143144e-06 +UniRef50_D0UWA8 0.00156954141561 0.000854893855216 -0.000714647560394 +UniRef50_X0U2P0 Marine sediment metagenome DNA, contig 4.83257007873e-05 3.49786319579e-05 -1.33470688294e-05 +UniRef50_E0SXX7 Collagenase like protease 0.00626204089565 0.0093663121422 0.00310427124655 +UniRef50_UPI0003722924 hypothetical protein 6.40414374959e-05 2.28901557965e-05 -4.11512816994e-05 +UniRef50_E3J760 2.94963867728e-05 2.32061522841e-05 -6.2902344887e-06 +UniRef50_P31909 Hydrogenase expression formation protein HoxM 0.000915342883711 0.000286715247755 -0.000628627635956 +UniRef50_UPI0003C16579 PREDICTED 1.43437042808e-05 3.53754994253e-05 2.10317951445e-05 +UniRef50_I0LEQ3 0.000127012166912 0.000168544062146 4.1531895234e-05 +UniRef50_UPI0003FB6811 hypothetical protein 8.12482465594e-05 1.06964394103e-05 -7.05518071491e-05 +UniRef50_UPI0003C7E616 hypothetical protein 4.35852553171e-05 4.76949935468e-05 4.1097382297e-06 +UniRef50_A6UEM2 0.00376572124478 0.000576635328994 -0.00318908591579 +UniRef50_V6QFC6 Recombinase 0.020923534863 0.0148267651036 -0.0060967697594 +UniRef50_UPI00047624DC hypothetical protein 0.000190017999071 0.00012478481605 -6.5233183021e-05 +UniRef50_I3TRE3 Lipoprotein 5.5189098585e-05 1.49090116143e-05 -4.02800869707e-05 +UniRef50_E3RRY8 4.73261104675e-05 1.52876557611e-05 -3.20384547064e-05 +UniRef50_L2LUI2 1.23983557214e-05 1.66074034659e-05 4.2090477445e-06 +UniRef50_S1HVV1 0.00125040625089 0.000223448032776 -0.00102695821811 +UniRef50_UPI0004638CB3 50S ribosomal protein L3 8.40080403615e-06 0.000313178303453 0.000304777499417 +UniRef50_Q3K3G9 Polyribonucleotide nucleotidyltransferase 0.00678262960423 0.00655278929019 -0.00022984031404 +UniRef50_P45804 0.00246801760607 0.00100625796452 -0.00146175964155 +UniRef50_Q47WT5 Lysine tRNA ligase 7.64063478605e-06 9.37983991156e-06 1.73920512551e-06 +UniRef50_UPI0002377EE6 transposase 6.18990646015e-05 1.5470622179e-05 -4.64284424225e-05 +UniRef50_Q71ZM1 Probable endonuclease 4 0.0270973192318 0.00376535372977 -0.023331965502 +UniRef50_Q5HKZ3 Glutathione peroxidase homolog BsaA 0.00910768029996 0.0011710426068 -0.00793663769316 +UniRef50_UPI00046FCB34 carbon nitrogen hydrolase, partial 1.76324554057e-05 0.000323930572427 0.000306298117021 +UniRef50_W8YQ25 0.000389093993118 0.000161545937717 -0.000227548055401 +UniRef50_Q4L8I4 PTS system, arbutin like IIBC component 0.0105118790475 0.00337699435432 -0.00713488469318 +UniRef50_Q2G9M5 Guanylate kinase 0.00598015744794 0.00233708418992 -0.00364307325802 +UniRef50_UPI000477407F peroxiredoxin, partial 1.1319983483e-05 2.75641953533e-05 1.62442118703e-05 +UniRef50_Q1N9Q9 3.06774988141e-05 1.60452825408e-06 -2.907297056e-05 +UniRef50_UPI000262D08E hypothetical protein 9.39309256147e-05 5.50807120963e-05 -3.88502135184e-05 +UniRef50_I7DPQ7 8.30883883469e-06 5.15037915936e-06 -3.15845967533e-06 +UniRef50_N6VQS5 5.25293821999e-05 1.11134209575e-05 -4.14159612424e-05 +UniRef50_Q8KED5 Probable thiol peroxidase 0.000227858745785 3.38902059169e-05 -0.000193968539868 +UniRef50_Q1R155 Zinc import ATP binding protein ZnuC 2.14320683415e-05 9.68968778155e-06 -1.174238056e-05 +UniRef50_M1LWV2 Response regulator receiver protein 0.000250013402159 0.000210439457392 -3.9573944767e-05 +UniRef50_UPI0003B796C7 arginine ABC transporter ATP binding protein 0.000117971420867 4.65885312803e-05 -7.13828895867e-05 +UniRef50_F7PVM3 ABC type metal ion transport system protein 4.27427192848e-05 1.05945669124e-05 -3.21481523724e-05 +UniRef50_I0C688 0.00144663931089 0.000619545535373 -0.000827093775517 +UniRef50_W4NY50 9.5258590978e-05 1.9948830082e-05 -7.5309760896e-05 +UniRef50_UPI0004722448 hypothetical protein 6.15298949801e-06 1.1221811727e-05 5.06882222899e-06 +UniRef50_V5SBZ4 Phosphonate ABC transporter substrate binding protein 0.0129567124513 0.00280175016809 -0.0101549622832 +UniRef50_UPI00037B6D80 hypothetical protein 7.83542461151e-06 1.07166983607e-05 2.88127374919e-06 +UniRef50_B1GZJ0 Elongation factor P 1.11372934613e-05 3.87658587319e-05 2.76285652706e-05 +UniRef50_X1WW26 0.000311971891609 0.000488126785439 0.00017615489383 +UniRef50_F0PCL5 Amino acid ABC transporter, amino acid binding protein 0.00422798830317 0.00200063883992 -0.00222734946325 +UniRef50_UPI000378F8D9 hypothetical protein 9.43360177201e-06 4.35891507963e-05 3.41555490243e-05 +UniRef50_P30147 Hydroxypyruvate isomerase 0.00440676220297 0.00142076925352 -0.00298599294945 +UniRef50_UPI0004717369 amidohydrolase, partial 7.87065909331e-06 3.39558760833e-05 2.608521699e-05 +UniRef50_UPI0003B62CCC electron transporter RnfB 1.38032260102e-05 2.88461883825e-05 1.50429623723e-05 +UniRef50_P68799 Fibrinogen binding protein 0.0109734696463 0.0015281408062 -0.0094453288401 +UniRef50_Q0TQG4 Porphobilinogen deaminase 0.00101842793199 0.0025549867956 0.00153655886361 +UniRef50_B7GQA5 Binding protein dependent transport systems inner membrane component 0.000128834808487 0.00722222076274 0.00709338595425 +UniRef50_C6M8K8 0.000199728036426 0.000175526786315 -2.4201250111e-05 +UniRef50_F3GKC7 RelA SpoT protein 5.96074809253e-05 5.24433094958e-05 -7.1641714295e-06 +UniRef50_A6Q5D2 Cytochrome b 0.000114159069206 0.00229266878621 0.002178509717 +UniRef50_Q9F6X6 Light independent protochlorophyllide reductase subunit N 0.000102979068275 3.17531593788e-05 -7.12259088962e-05 +UniRef50_A5UMA2 Predicted endoglucanase 0.00305274403381 0.000759595418098 -0.00229314861571 +UniRef50_UPI000301BD84 hypothetical protein 5.86119973284e-06 9.78741102064e-06 3.9262112878e-06 +UniRef50_Q8XVE6 Indole 3 glycerol phosphate synthase 1 2.10650835712e-05 2.02795980161e-05 -7.854855551e-07 +UniRef50_P0C8J9 D tagatose 1,6 bisphosphate aldolase subunit GatZ 0.00345888469187 0.00260400595107 -0.0008548787408 +UniRef50_UPI00047A0456 hypothetical protein, partial 6.0172973743e-05 0.000190977889755 0.000130804916012 +UniRef50_Q2NXB3 0.000289146491173 0.000455501344774 0.000166354853601 +UniRef50_W7T1C4 5.12403933111e-05 4.54557949759e-05 -5.7845983352e-06 +UniRef50_U3SSK6 0.001439770278 0.000785156013645 -0.000654614264355 +UniRef50_A1SJC3 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.000335251212962 0.0420744160778 0.0417391648648 +UniRef50_UPI0004785ED3 hypothetical protein 6.27263882353e-05 8.01976594409e-05 1.74712712056e-05 +UniRef50_R0WUD1 3.33488508537e-05 0.000274824462041 0.000241475611187 +UniRef50_I1H6Y1 0.000106066813943 3.32024226604e-05 -7.28643912826e-05 +UniRef50_A6YPV7 Recombination protein A 0.00026108339293 0.00312578275834 0.00286469936541 +UniRef50_P58388 3 mercaptopyruvate sulfurtransferase 0.00223923146161 0.000533901715896 -0.00170532974571 +UniRef50_A6QIJ6 0.0176597259472 0.00249293899277 -0.0151667869544 +UniRef50_C1DBX8 BolA YrbA family protein 3.66962346387e-05 0.000119207497317 8.25112626783e-05 +UniRef50_A6QIJ0 0.0044150135555 0.000566102310275 -0.00384891124523 +UniRef50_R0MK27 Phenylacetic acid degradation protein paaD 8.62938628955e-05 6.66707113487e-05 -1.96231515468e-05 +UniRef50_UPI0003450573 hypothetical protein 3.35952872855e-05 3.27562973411e-05 -8.389899444e-07 +UniRef50_UPI0004785992 DNA polymerase III subunit alpha 8.52207281053e-06 5.48121768598e-06 -3.04085512455e-06 +UniRef50_P0A2K8 UTP glucose 1 phosphate uridylyltransferase 0.00285622713346 0.00060714572454 -0.00224908140892 +UniRef50_Q9JWE5 Homoserine kinase 0.000233978918713 0.00297605788981 0.0027420789711 +UniRef50_P30011 Nicotinate nucleotide pyrophosphorylase [carboxylating] 0.00302929863069 0.000635391554286 -0.0023939070764 +UniRef50_C3FD24 9.6885402055e-05 0.000159774592534 6.2889190479e-05 +UniRef50_J7QJP1 0.000221797528993 0.00103184081319 0.000810043284197 +UniRef50_L2YG78 Tat pathway signal sequence 0.000481897007041 0.0017897982133 0.00130790120626 +UniRef50_UPI0002891AB1 MsbA 1.92037343567e-05 3.10785006581e-05 1.18747663014e-05 +UniRef50_UPI0003B3A4A3 adenine permease 7.21095974737e-06 7.16694302008e-06 -4.401672729e-08 +UniRef50_A6M229 5 dehydro 2 deoxygluconokinase 0.00038735209993 0.000778536942637 0.000391184842707 +UniRef50_A4WSW4 ErfK YbiS YcfS YnhG family protein 0.00497223729314 0.00186291773393 -0.00310931955921 +UniRef50_UPI0004786723 hypothetical protein 4.79637031014e-06 3.78467758894e-05 3.30504055793e-05 +UniRef50_UPI0003656635 hypothetical protein, partial 6.68600152884e-05 3.80047068984e-05 -2.885530839e-05 +UniRef50_A6LYJ9 0.000124037017145 0.000144056929367 2.0019912222e-05 +UniRef50_W8ZDM8 2.19473187102e-05 7.57753201192e-06 -1.43697866983e-05 +UniRef50_UPI000225ACBB acetyl CoA carboxylase, biotin carboxylase 2.90490113369e-06 8.26464798869e-06 5.359746855e-06 +UniRef50_A3PGH2 0.00331466318752 0.000825750117316 -0.0024889130702 +UniRef50_C7RCC8 Serine O acetyltransferase 0.000151600798739 0.0050508999965 0.00489929919776 +UniRef50_UPI00037A1089 hypothetical protein 2.74466850089e-05 4.67270467813e-06 -2.27739803308e-05 +UniRef50_A5UMY5 Diphthamide synthase, subunit DPH2 0.00299401549467 0.000457459555424 -0.00253655593925 +UniRef50_Q9RYI7 N glycosidase F, putative 0.000580187185277 0.0589466853033 0.058366498118 +UniRef50_P07001 NAD transhydrogenase subunit alpha 0.0108030737621 0.00521694842415 -0.00558612533795 +UniRef50_V0AI23 0.0029703780783 0.00142104546197 -0.00154933261633 +UniRef50_V7ENM8 6.85992596688e-05 6.8972088663e-05 3.728289942e-07 +UniRef50_UPI00037DEAAC hypothetical protein 0.00106358508853 0.00612062605704 0.00505704096851 +UniRef50_F0PHP0 Diacylglycerol kinase catalytic domain family protein 0.00804005244648 0.00250302163142 -0.00553703081506 +UniRef50_Q9CE10 UDP N acetylmuramate L alanine ligase 0.024599496981 0.013772860967 -0.010826636014 +UniRef50_W4TIG8 Cytoplasmic axial filament protein CafA and Ribonuclease G 0.000247802618498 0.001156713887 0.000908911268502 +UniRef50_Q9RRN1 0.000574237126031 0.0347013330602 0.0341270959342 +UniRef50_R4ZVK8 Transcriptional repressor of the fructose operon, DeoR family 1.46559310506e-05 8.52056889553e-05 7.05497579047e-05 +UniRef50_UPI00037A56E2 hypothetical protein 1.26163853057e-05 9.08868592567e-06 -3.52769938003e-06 +UniRef50_Q4UPB2 1.16977323908e-05 0.0017785783706 0.00176688063821 +UniRef50_P34001 0.0054515887153 0.001104010369 -0.0043475783463 +UniRef50_V2I282 FAD linked oxidase 0.00282648428852 0.000554216021574 -0.00227226826695 +UniRef50_Q4L978 Diapolycopene oxygenase 0.0124513397721 0.000695954853552 -0.0117553849185 +UniRef50_M9S180 0.000754971977708 0.000214831016484 -0.000540140961224 +UniRef50_B3QZ51 Homoserine O acetyltransferase 5.16418688215e-06 3.77547628999e-05 3.25905760178e-05 +UniRef50_R4KG93 ATPase family protein associated with various cellular activities 0.00130894519976 0.000635678428034 -0.000673266771726 +UniRef50_D8HI57 Hydrolase, haloacid dehalogenase like family 0.0126007549563 0.00429262324198 -0.00830813171432 +UniRef50_I6SDA8 Bacteriophage protein 0.000394961689434 0.00020695538306 -0.000188006306374 +UniRef50_K2NZ38 2.36924944638e-05 2.12520074187e-05 -2.4404870451e-06 +UniRef50_J7Q8S5 4.47380076552e-05 5.75682638892e-05 1.2830256234e-05 +UniRef50_A0YFR7 8.12687326901e-06 3.7419986077e-05 2.9293112808e-05 +UniRef50_A6LSK3 Protein kinase 0.00013632738744 0.000589779386703 0.000453451999263 +UniRef50_F4BWI8 Conserved domain protein 3.51065970154e-05 9.91024067913e-05 6.39958097759e-05 +UniRef50_R4MJG0 4.13894382772e-05 0.000102629832362 6.12403940848e-05 +UniRef50_UPI00037EA4BC hypothetical protein, partial 5.34863809114e-06 2.54672631479e-06 -2.80191177635e-06 +UniRef50_D1DK94 ATP dependent DNA helicase RecQ 5.00865973677e-05 0.00353859272693 0.00348850612956 +UniRef50_Q0FEL8 0.000135782170466 1.64346354678e-05 -0.000119347534998 +UniRef50_A6LV27 Sigma54 specific transcriptional regulator, Fis family 0.000700697298445 0.000542155538194 -0.000158541760251 +UniRef50_B1I194 Bifunctional protein GlmU 4.76723660589e-06 6.12497682335e-06 1.35774021746e-06 +UniRef50_F0XY59 Expressed protein 6.14927635066e-05 5.36822208263e-05 -7.8105426803e-06 +UniRef50_K0S277 3.17970254583e-06 9.36923462798e-06 6.18953208215e-06 +UniRef50_A7Z7B8 2 isopropylmalate synthase 7.09490263514e-06 0.000426278163124 0.000419183260489 +UniRef50_Q75SP7 stereoselective amidase 0.00106490205464 0.000798871513982 -0.000266030540658 +UniRef50_Q9SA96 Arogenate dehydratase prephenate dehydratase 1, chloroplastic 7.77782506218e-05 2.13388504107e-05 -5.64394002111e-05 +UniRef50_P43741 DNA polymerase I 0.000260186226321 0.00267274970556 0.00241256347924 +UniRef50_O34635 Probable L serine dehydratase, beta chain 1.07338604181e-05 0.000708779098295 0.000698045237877 +UniRef50_E8MF10 UDP glucose 4 epimerase 0.00489001330252 0.00586586604472 0.0009758527422 +UniRef50_UPI0003787A5F hypothetical protein 1.17109777891e-05 2.89817468477e-05 1.72707690586e-05 +UniRef50_A7GC03 Anaerobic sulfite reductase, subunit A 0.000470348727971 0.000874050051263 0.000403701323292 +UniRef50_Q83HF6 Ribonuclease PH 1.93677605877e-05 4.09959468119e-05 2.16281862242e-05 +UniRef50_U5MQT4 Pentapeptide repeat protein 0.000108785587569 0.000557075586851 0.000448289999282 +UniRef50_UPI00030D3128 glycerol 3 phosphate ABC transporter permease 1.29788743877e-05 9.86742807537e-05 8.5695406366e-05 +UniRef50_UPI000366A20C MULTISPECIES 3.90031063163e-05 5.11675185958e-06 -3.38863544567e-05 +UniRef50_U9FGT0 0.00059290993013 0.00203313821883 0.0014402282887 +UniRef50_UPI0003B3E71E long chain fatty acid CoA ligase 7.80020776208e-06 4.13067198089e-06 -3.66953578119e-06 +UniRef50_UPI0003C26616 5.649602272e-06 0.000100214806997 9.4565204725e-05 +UniRef50_D5WFZ7 Type VI secretion protein, EvpB VC_A0108 family 0.000549154804951 0.00765489975813 0.00710574495318 +UniRef50_A3PNW5 Signal transduction histidine kinase 0.00221656644866 0.00186282065564 -0.00035374579302 +UniRef50_Q5P6B9 0.00155231174962 0.000597716433233 -0.000954595316387 +UniRef50_W5XA80 Vacuolar iron transporter 1.13981361739e-05 7.03893036915e-06 -4.35920580475e-06 +UniRef50_UPI00047633B9 transcriptional regulator 0.000161950088945 3.52724197317e-05 -0.000126677669213 +UniRef50_A0A059LC79 2.25871861578e-05 0.00070424699888 0.000681659812722 +UniRef50_D5W932 Sua5 YciO YrdC YwlC family protein 0.000184139506761 0.00389866545092 0.00371452594416 +UniRef50_UPI00035D05BC hypothetical protein 3.10832502252e-06 4.85420394489e-06 1.74587892237e-06 +UniRef50_P41367 Medium chain specific acyl CoA dehydrogenase, mitochondrial 4.61407805298e-06 4.60819020001e-05 4.14678239471e-05 +UniRef50_Q59042 Phosphoribosylformylglycinamidine synthase 1 0.00285060398872 0.00118716033294 -0.00166344365578 +UniRef50_UPI0004283D87 hypothetical protein 0.000290935596716 0.000167887162047 -0.000123048434669 +UniRef50_Q897B2 Phosphomethylpyrimidine synthase 0.000666468985673 0.00100992685535 0.000343457869677 +UniRef50_Q83B06 Aminomethyltransferase 5.53014101491e-05 1.21592082216e-05 -4.31422019275e-05 +UniRef50_Q8CTQ7 Putative pyridoxine kinase 0.0200966551082 0.0103619900941 -0.0097346650141 +UniRef50_UPI00047B361F hypothetical protein 4.6292380628e-05 1.75751300551e-05 -2.87172505729e-05 +UniRef50_A7X2E3 Holliday junction resolvase RecU 0.00798009649387 0.00190918494549 -0.00607091154838 +UniRef50_Q46866 Probable transcriptional regulator YgiV 0.00344227865087 0.00199089913615 -0.00145137951472 +UniRef50_R9LSU9 1.55257274073e-05 8.28017246776e-05 6.72759972703e-05 +UniRef50_W0F5B5 Phospholipid binding protein 9.66139171706e-06 1.99706191569e-05 1.03092274398e-05 +UniRef50_P70787 Probable tartrate dehydrogenase decarboxylase TtuC 0.00337935341214 0.000404077058733 -0.00297527635341 +UniRef50_Q886D0 Autotransporter, putative 0.000283014658313 0.000128485192585 -0.000154529465728 +UniRef50_P32128 0.00213658569127 0.00037242356339 -0.00176416212788 +UniRef50_W4VEN6 TRAP type C4 dicarboxylate transport system 0.000616914972404 0.000118208389294 -0.00049870658311 +UniRef50_UPI0004691530 hypothetical protein 3.83550796902e-06 8.03963861318e-06 4.20413064416e-06 +UniRef50_M1MML4 Transcriptional regulator, TetR family 0.00044977616363 0.00224998713684 0.00180021097321 +UniRef50_A0L5I2 Arginine tRNA ligase 4.13660095565e-06 8.81731557796e-06 4.68071462231e-06 +UniRef50_S5U768 2.49673018419e-05 0.000109210383499 8.42430816571e-05 +UniRef50_UPI000255F373 hypothetical protein 1.33456158041e-05 0.00015762093289 0.000144275317086 +UniRef50_Q1GRQ0 30S ribosomal protein S2 0.0150328087202 0.002044863042 -0.0129879456782 +UniRef50_A0A015AL57 AcrB AcrD AcrF family protein 0.000152295547092 0.00814405451824 0.00799175897115 +UniRef50_UPI0004761E95 ligand binding protein SH3 0.000396942621906 9.60365693821e-05 -0.000300906052524 +UniRef50_U5MYJ1 Multidrug resistance protein MdtA 0.000877490138922 0.00262253119356 0.00174504105464 +UniRef50_W0HG73 Malonyl CoA acyl carrier protein transacylase 0.00012796135215 0.0104496691721 0.0103217078199 +UniRef50_R9V4R9 Pili assembly chaperone 0.000825288777521 0.000279491347657 -0.000545797429864 +UniRef50_Q08432 Cystathionine beta lyase PatB 2.12687162399e-05 4.09775960387e-05 1.97088797988e-05 +UniRef50_A6LZ60 ROK family protein 0.000568930430525 0.00396342131848 0.00339449088796 +UniRef50_Q9I427 Cytochrome bo ubiquinol oxidase subunit 2 0.00178020987535 0.000365340253849 -0.0014148696215 +UniRef50_C2PBH1 Phage infection protein 1.08454649208e-05 7.53726095451e-06 -3.30820396629e-06 +UniRef50_L0NF86 0.000160422811399 3.14194170622e-05 -0.000129003394337 +UniRef50_UPI00037B865B hypothetical protein 0.00021303686448 4.46255309713e-05 -0.000168411333509 +UniRef50_A0AJ06 Glutamyl tRNA reductase 7.46753239132e-06 0.00155338981674 0.00154592228435 +UniRef50_Q49X25 Ribosome maturation factor RimM 0.0154063703103 0.0035612370028 -0.0118451333075 +UniRef50_U6M5K1 2.16993904463e-05 0.00025231773796 0.000230618347514 +UniRef50_J3HRH0 TRAP type C4 dicarboxylate transport system, small permease component 5.46876242616e-05 3.13853608562e-05 -2.33022634054e-05 +UniRef50_O27098 Coenzyme F420 0.00466664812955 0.000978940275044 -0.00368770785451 +UniRef50_UPI0004658FC6 hypothetical protein 0.000244991572185 2.36747205981e-05 -0.000221316851587 +UniRef50_A9W6R8 Chaperone protein DnaJ 0.00411259041248 0.00126748186121 -0.00284510855127 +UniRef50_A6T4V9 H Cl( ) exchange transporter ClcA 0.00102667276549 0.000553606431265 -0.000473066334225 +UniRef50_UPI000372F0D2 hypothetical protein 8.06057609936e-06 9.65594137464e-06 1.59536527528e-06 +UniRef50_R4YES8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.000948294020264 0.000433454011891 -0.000514840008373 +UniRef50_Q8YN97 Ribose phosphate pyrophosphokinase 2.90153811629e-05 5.79161763932e-05 2.89007952303e-05 +UniRef50_UPI00030B21C2 hypothetical protein 6.84529572883e-06 2.52134056951e-05 1.83681099663e-05 +UniRef50_UPI00016C3D7A elongation factor Tu 2.76528749943e-05 2.10550155247e-05 -6.5978594696e-06 +UniRef50_Q52812 General L amino acid binding periplasmic protein AapJ 0.0110852885914 0.00381903345192 -0.00726625513948 +UniRef50_A0LXJ9 Phosphoenolpyruvate carboxykinase [ATP] 2.5441323255e-05 0.000275792919131 0.000250351595876 +UniRef50_UPI0004776C78 PTS mannose transporter subunit IID 7.76124829762e-06 5.3198648522e-05 4.54374002244e-05 +UniRef50_UPI000472F6DD hypothetical protein 6.0873802626e-06 0.000132735251447 0.000126647871184 +UniRef50_B2TQB8 Minor teichoic acid biosynthesis protein GgaB 0.000301941178804 0.000347431417872 4.5490239068e-05 +UniRef50_T2DYB6 Major Facilitator Superfamily protein 0.000186352833447 0.000582552576561 0.000396199743114 +UniRef50_A6LZ67 Methyl accepting chemotaxis sensory transducer 0.000254036331322 0.00119222142727 0.000938185095948 +UniRef50_D8U6Y2 8.48919015402e-05 2.65652208605e-05 -5.83266806797e-05 +UniRef50_Q3IRZ4 Urease subunit gamma 7.16128937202e-05 0.000263218196035 0.000191605302315 +UniRef50_Q9RYE3 UPF0173 metal dependent hydrolase DR_0006 0.000347379744345 0.0301466529734 0.0297992732291 +UniRef50_C5WIU5 0.000449083595315 0.000264578499311 -0.000184505096004 +UniRef50_K4SQW1 Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA 0.00140245005999 0.000417037689385 -0.000985412370605 +UniRef50_X4RBB0 3 dehydroquinate synthase 0.000478961058927 0.00570918213422 0.00523022107529 +UniRef50_R9JUE8 0.000190649489319 1.74801271967e-05 -0.000173169362122 +UniRef50_I6WWP7 Cell division protein FtsX 0.00026397621598 0.00258600715958 0.0023220309436 +UniRef50_B1IMR9 Integrase 0.000317032032568 0.00135153126155 0.00103449922898 +UniRef50_P43790 0.00308910692396 0.000566102310275 -0.00252300461369 +UniRef50_W4JVP7 0.000495605237007 0.000103458245741 -0.000392146991266 +UniRef50_UPI00038FA156 Urease subunit gamma beta 3.87775750133e-05 0.000227513459244 0.000188735884231 +UniRef50_F8GG26 2.95479126251e-05 2.68787644182e-05 -2.6691482069e-06 +UniRef50_G1Y156 0.000142821755973 0.000499126825692 0.000356305069719 +UniRef50_U5UI30 ATP dependent DNA helicase RecQ 0.00745318740602 0.00450171194787 -0.00295147545815 +UniRef50_B9KMZ8 0.0136561561427 0.00293953147563 -0.0107166246671 +UniRef50_B9KMZ6 0.00132609932222 0.000338459997828 -0.000987639324392 +UniRef50_W4U8Z0 Serine transporter 4.07286252948e-06 6.37877636163e-05 5.97149010868e-05 +UniRef50_P44598 Non canonical purine NTP pyrophosphatase 3.86401335727e-05 4.37484205648e-05 5.1082869921e-06 +UniRef50_D3HF85 0.0101118624827 0.0053260213334 -0.0047858411493 +UniRef50_F3KAS3 K+ transporting ATPase, subunit B 9.42833683903e-06 0.000293593595164 0.000284165258325 +UniRef50_Q8EP56 Oligopeptide ABC transporter permease 0.00836817739095 0.00127012273101 -0.00709805465994 +UniRef50_A3U2G6 1.0042237603e-06 1.64945643231e-06 6.4523267201e-07 +UniRef50_UPI000424FB0D 50S ribosomal protein L35 0.000420231122862 0.000343290664489 -7.6940458373e-05 +UniRef50_C7D895 1.42591869837e-05 7.31491949374e-06 -6.94426748996e-06 +UniRef50_M4YX49 Cystathionine beta lyase 0.00348376936746 0.00178777927056 -0.0016959900969 +UniRef50_P50319 Phosphoglycerate kinase, chromosomal 0.0039052711004 0.00788458094338 0.00397930984298 +UniRef50_UPI00034DE802 peptide ABC transporter ATPase 3.85327023475e-05 3.67689252222e-05 -1.7637771253e-06 +UniRef50_Q6GJB5 0.0257041395827 0.0113228913842 -0.0143812481985 +UniRef50_B8CX90 Diaminopimelate epimerase 5.32676922932e-06 1.00550755099e-05 4.72830628058e-06 +UniRef50_K0RYW3 5.13549785225e-05 1.12765038728e-05 -4.00784746497e-05 +UniRef50_F3C2H3 3.37793083643e-05 7.52222354246e-05 4.14429270603e-05 +UniRef50_D4GIS8 RbsC 0.00327897282923 0.00111112934313 -0.0021678434861 +UniRef50_Q6LP67 Putative reductase PBPRA2527 0.00106108867978 0.00259760542494 0.00153651674516 +UniRef50_P0AD32 UPF0721 transmembrane protein YfcA 0.00312206719215 0.0010314978874 -0.00209056930475 +UniRef50_P29683 Light independent protochlorophyllide reductase subunit N 7.83016320161e-05 2.26965696363e-05 -5.56050623798e-05 +UniRef50_B9KQA6 CheX protein 0.00122071845545 0.000350267609694 -0.000870450845756 +UniRef50_R9SKF6 HEAT repeat containing protein 0.00422454410956 0.00175381310806 -0.0024707310015 +UniRef50_UPI0004793211 peptidase 0.00023256796435 6.77634736726e-05 -0.000164804490677 +UniRef50_L5ME78 Transforming acidic coiled coil containing protein 3 3.26544973088e-05 2.0560652968e-05 -1.20938443408e-05 +UniRef50_UPI000467A92B hypothetical protein 5.06899637246e-06 1.93208625979e-05 1.42518662254e-05 +UniRef50_A5W1N9 0.000294357056807 0.00570514544943 0.00541078839262 +UniRef50_Q6AAL7 Phosphotransferase system protein, mannitol fructose specific IIA subunit 0.000252780796101 0.00561083792077 0.00535805712467 +UniRef50_B9KL54 Tripartite ATP independent periplasmic transporter, DctQ component 0.0355585645976 0.00684016796028 -0.0287183966373 +UniRef50_D4HCV9 ABC transporter, ATP binding protein 8.75837561086e-05 0.00222064107781 0.0021330573217 +UniRef50_U5Q1X8 Urease subunit gamma 1.49533600261e-05 2.24976527674e-05 7.5442927413e-06 +UniRef50_A6M1Q7 D galactose binding periplasmic protein 0.000747524204557 0.000714294896405 -3.3229308152e-05 +UniRef50_Q97KN0 Adenine deaminase 1.92713786756e-05 6.28074097571e-06 -1.29906376999e-05 +UniRef50_P80866 Vegetative protein 296 0.0218990119521 0.055922570925 0.0340235589729 +UniRef50_R4GHY1 1.31180576506e-05 0.000332127503491 0.00031900944584 +UniRef50_A0LZ82 Aldose 1 epimerase 0.000849987475304 0.00165503735787 0.000805049882566 +UniRef50_Q49UM3 0.00813379673982 0.00271463101389 -0.00541916572593 +UniRef50_B8DCV0 Transcriptional regulator, GntR family 0.000691422147927 0.00291192008868 0.00222049794075 +UniRef50_Q2YVT4 N acetylmuramoyl L alanine amidase sle1 0.0209698096105 0.00309222449035 -0.0178775851201 +UniRef50_D7C1Q5 8.68667197477e-05 0.00011754329141 3.06765716623e-05 +UniRef50_A0A024R8N7 HCG1776376, isoform CRA_a 0.000154666100132 6.69067397644e-05 -8.77593603676e-05 +UniRef50_Q5HNA1 ABC transporter, permease protein 0.0081955424068 0.0028084783298 -0.005387064077 +UniRef50_F0KFX3 0.000375512750092 0.00736210724278 0.00698659449269 +UniRef50_UPI00035DDF13 hypothetical protein, partial 2.88087794044e-05 9.35092631292e-05 6.47004837248e-05 +UniRef50_UPI0002D43593 multidrug transporter 6.91378482183e-05 0.00012614497054 5.70071223217e-05 +UniRef50_UPI0003EA94D2 PREDICTED 5.66792409427e-06 3.70790415883e-05 3.1411117494e-05 +UniRef50_F5X5K2 Predicted membrane protein 0.00681093680208 0.00143457585611 -0.00537636094597 +UniRef50_X0XNE1 Marine sediment metagenome DNA, contig 0.000327936002374 0.000200716054885 -0.000127219947489 +UniRef50_W4HQ00 0.000122902387329 5.00876399004e-05 -7.28147474286e-05 +UniRef50_R9YPL9 Host cell surface exposed lipofamily protein 0.0085495957931 0.00646450341434 -0.00208509237876 +UniRef50_Q9ZUC2 Beta carbonic anhydrase 3 3.12571044249e-05 1.13359499384e-05 -1.99211544865e-05 +UniRef50_E1V7W0 N alpha acetyl L 2,4 diaminobutyric acid deacetylase 0.000289367419874 0.000185461818189 -0.000103905601685 +UniRef50_R4Z8G3 Glycogen debranching protein 0.00718522976828 0.00202078940391 -0.00516444036437 +UniRef50_Q3V7G7 Alanine racemase 0.000328248685954 0.00326173694451 0.00293348825856 +UniRef50_P75860 0.00170509440298 0.00428941170745 0.00258431730447 +UniRef50_UPI00039BF8F5 hypothetical protein 0.000254694360043 0.000138440663452 -0.000116253696591 +UniRef50_A6LYW2 0.000598575634063 0.000952682763956 0.000354107129893 +UniRef50_J0H573 0.00246951809358 0.00110735193613 -0.00136216615745 +UniRef50_P08190 Protein FimG 0.00982874166741 0.000352266447552 -0.00947647521986 +UniRef50_A7MNJ8 0.000686689484448 0.000230016182029 -0.000456673302419 +UniRef50_D7B2I8 8.82414327827e-05 0.000110316269632 2.20748368493e-05 +UniRef50_A6V7D9 0.000449438717542 0.000621719379354 0.000172280661812 +UniRef50_UPI0002558E19 chemotaxis protein CheY 1.41432047155e-05 3.79743458309e-05 2.38311411154e-05 +UniRef50_A6LYX0 Phosphoglycerate mutase 0.000368878816464 0.00106205359972 0.000693174783256 +UniRef50_K7RNA7 SAM dependent methyltransferase related to tRNA 0.000151398123869 0.00430453211495 0.00415313399108 +UniRef50_UPI000350FEA2 PREDICTED 9.0302573244e-05 3.10005473249e-05 -5.93020259191e-05 +UniRef50_G0A8S2 0.000121769673823 0.000191143498515 6.9373824692e-05 +UniRef50_M9R9T3 0.00265034441592 0.000422639471078 -0.00222770494484 +UniRef50_UPI000377BD8B hypothetical protein, partial 9.17848841115e-05 0.000124916073688 3.31311895765e-05 +UniRef50_D7GV59 4.49119619641e-05 6.68535487723e-05 2.19415868082e-05 +UniRef50_A1AYV3 Tryptophan synthase alpha chain 2.16461123079e-05 1.09213120305e-05 -1.07248002774e-05 +UniRef50_R5A036 Transcriptional regulator, MerR family 0.00858152773414 0.00369088433617 -0.00489064339797 +UniRef50_UPI00046400FC branched chain amino acid ABC transporter substrate binding protein 1.21369417063e-06 8.2736786377e-06 7.05998446707e-06 +UniRef50_I1ZP03 0.00819017497212 0.00596474873702 -0.0022254262351 +UniRef50_J9HV03 Sigma 70 factor, ECF subfamily 0.000216945970609 0.00132774966207 0.00111080369146 +UniRef50_P55373 Putative transposase y4bF 0.0299957711967 0.00934349055752 -0.0206522806392 +UniRef50_P0AEJ7 Ethanolamine ammonia lyase heavy chain 0.00275860833969 0.00153511879688 -0.00122348954281 +UniRef50_A6LTI9 Transcriptional regulator, XRE family 0.000775245960967 0.000377000049191 -0.000398245911776 +UniRef50_P0A9H8 Cyclopropane fatty acyl phospholipid synthase 0.00187372168646 0.000364039045076 -0.00150968264138 +UniRef50_UPI000416C7B3 hypothetical protein 8.67042972356e-05 1.94449950177e-05 -6.72593022179e-05 +UniRef50_K2ADQ8 0.000206847041854 8.15881425901e-05 -0.000125258899264 +UniRef50_C5N2G7 0.0037690859581 0.000801764810481 -0.00296732114762 +UniRef50_B2HNE5 Bifunctional protein PyrR 9.31785572333e-06 8.04670643615e-05 7.11492086382e-05 +UniRef50_U3NTD9 IS1272 like transposase, degenerate 0.0193920707337 0.00198432095911 -0.0174077497746 +UniRef50_B9DM46 tRNA pseudouridine synthase A 0.0216339481163 0.00786699973341 -0.0137669483829 +UniRef50_I6G9X5 Na H(+) antiporter NhaB 0.000553101365644 0.000171862292072 -0.000381239073572 +UniRef50_Q6YWQ5 5.74693819727e-05 0.000519618836113 0.00046214945414 +UniRef50_Q5HJG9 0.0156672149103 0.000723312524878 -0.0149439023854 +UniRef50_I6SJA3 0.00169432849153 0.000627243021205 -0.00106708547033 +UniRef50_Q12PW9 7.6427788121e-06 0.00108705535655 0.00107941257774 +UniRef50_Q2NFV5 0.0034815703794 0.000805936444134 -0.00267563393527 +UniRef50_Q8YH17 Methionine tRNA ligase 1.1485699885e-05 2.29990702511e-05 1.15133703661e-05 +UniRef50_A6LUK3 Glutathione biosynthesis bifunctional protein GshAB 0.000378442815358 0.000665166762273 0.000286723946915 +UniRef50_UPI00041F4DD3 cytochrome B562 0.000121740290412 2.858500981e-05 -9.3155280602e-05 +UniRef50_P0AB92 Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive 0.00351257010042 0.00103667722213 -0.00247589287829 +UniRef50_M5D5S2 Capsule assembly, only in sialic acid capsules 2.91285864515e-05 0.0024857769314 0.00245664834495 +UniRef50_P26389 Colanic acid biosynthesis protein WcaM 0.00287000931399 0.000275861932129 -0.00259414738186 +UniRef50_T1VWC8 ABC transporter ATP binding protein permease 0.000152610203936 0.00740103628683 0.00724842608289 +UniRef50_Q5FLS6 Alcohol acetaldehyde dehydrogenase 0.00844332053398 0.00175415449414 -0.00668916603984 +UniRef50_UPI000191169A hypothetical protein 2.11546762959e-06 0.000111421844868 0.000109306377238 +UniRef50_Q89IP8 Serine acetyltransferase 0.0127054222658 0.004822155231 -0.0078832670348 +UniRef50_G7M4A2 0.0001780594287 0.000779431600775 0.000601372172075 +UniRef50_UPI000395B0F7 streptomycin 3 kinase 3.36731791826e-05 5.15851569864e-05 1.79119778038e-05 +UniRef50_F9UF35 4.12324945742e-06 9.03139535901e-06 4.90814590159e-06 +UniRef50_Q5HMZ8 ABC transporter, ATP binding protein 0.0177988087783 0.00461640262814 -0.0131824061502 +UniRef50_Q71Y59 Tyrosine recombinase XerD 0.00916725544038 0.00233120304932 -0.00683605239106 +UniRef50_P71238 Putative colanic acid polymerase 0.00433712665536 0.0016269188484 -0.00271020780696 +UniRef50_J1A645 0.0880639364827 0.0365636711504 -0.0515002653323 +UniRef50_Q6F9X3 DNA polymerase III, delta prime subunit 0.000471806134049 0.00362265843199 0.00315085229794 +UniRef50_UPI00036E0FA5 hypothetical protein, partial 1.95260974406e-06 6.64520368355e-06 4.69259393949e-06 +UniRef50_R5NMQ5 0.000383884056462 0.00271684180617 0.00233295774971 +UniRef50_A5UNF2 0.00345024546518 0.000239445977193 -0.00321079948799 +UniRef50_A5UNF1 0.00468184967718 0.000853593791268 -0.00382825588591 +UniRef50_UPI000478864C cell division protein FtsW 6.15300540904e-06 0.000118672934863 0.000112519929454 +UniRef50_UPI00047B937D DEAD DEAH box helicase 4.73477176522e-07 0.000108267066625 0.000107793589448 +UniRef50_A0A059LEJ0 8.36997758017e-05 0.000134785410465 5.10856346633e-05 +UniRef50_N6VGA3 Putative transcriptional regulator 0.000144209633311 3.21620963218e-05 -0.000112047536989 +UniRef50_P25885 0.00656613469629 0.0099806225267 0.00341448783041 +UniRef50_UPI0003B5626D sodium 1.23599759508e-05 0.00432833813136 0.00431597815541 +UniRef50_Q3A9Q7 DNA directed RNA polymerase subunit beta 8.03165151481e-06 3.53833204156e-06 -4.49331947325e-06 +UniRef50_UPI00036DB2E6 hypothetical protein 5.99994622818e-05 6.130590221e-06 -5.38688720608e-05 +UniRef50_UPI000362123D hypothetical protein 0.000171532437202 0.000992077370817 0.000820544933615 +UniRef50_S3YIQ8 1.21062467503e-05 0.000327276887326 0.000315170640576 +UniRef50_UPI00046C8BA3 hypothetical protein 1.75510078284e-05 2.26466570318e-05 5.0956492034e-06 +UniRef50_W1EYJ0 Ferredoxin like protein YgcO 0.000198724496172 0.000469151757403 0.000270427261231 +UniRef50_P46448 Formate dehydrogenase major subunit 0.00223558997434 0.000927536097449 -0.00130805387689 +UniRef50_UPI000262829F rhodanese related sulfurtransferase 3.317868567e-05 1.27639102127e-05 -2.04147754573e-05 +UniRef50_UPI00047C1110 hypothetical protein 4.13394102706e-06 3.52305047408e-05 3.10965637137e-05 +UniRef50_A4VSJ2 ABC type Mn2+ Zn2+ transport system, permease component 0.00442380914091 0.0101847633373 0.00576095419639 +UniRef50_D3QEN2 0.0204616867683 0.00995614005708 -0.0105055467112 +UniRef50_UPI000377656B hypothetical protein 1.53477556131e-06 1.2271856389e-05 1.07370808277e-05 +UniRef50_S5YYN3 Protein L isoaspartate O methyltransferase 0.00747174736479 0.00335435460619 -0.0041173927586 +UniRef50_Q6F7L8 Glycine tRNA ligase beta subunit 6.78118542838e-05 0.00694957406664 0.00688176221236 +UniRef50_Q6N372 0.000123989885729 3.64342573535e-05 -8.75556283755e-05 +UniRef50_V8HFR8 2.78930533612e-05 9.75671986588e-06 -1.81363334953e-05 +UniRef50_P35818 Type II secretion system protein D 0.000367135319987 0.000351921638834 -1.5213681153e-05 +UniRef50_P00272 Rubredoxin 2 0.000175652976076 3.07637264446e-05 -0.000144889249631 +UniRef50_W7WXT6 0.000484648755024 0.00150973160647 0.00102508285145 +UniRef50_UPI0004680DA6 hypothetical protein, partial 8.65185667228e-07 1.17740603327e-06 3.12220366042e-07 +UniRef50_UPI00046D684B hypothetical protein 1.75662583001e-05 3.795212583e-05 2.03858675299e-05 +UniRef50_A8MLB2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.80317358274e-05 5.32593099871e-05 3.52275741597e-05 +UniRef50_UPI0004712276 hypothetical protein 0.000145148225617 1.18919555928e-05 -0.000133256270024 +UniRef50_Q54F10 NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 0.000106659074828 3.15541440277e-05 -7.51049308003e-05 +UniRef50_U6BPG2 Sulfide 0.000904583198461 0.000151737212916 -0.000752845985545 +UniRef50_A6QIL0 Phage transcriptional regulator 0.00186672001569 0.000784026650967 -0.00108269336472 +UniRef50_B2V042 Acetobutylicum phosphotransbutyrylase 0.000714665915355 0.000999317087393 0.000284651172038 +UniRef50_B0VU19 0.000180041012167 0.00331442310062 0.00313438208845 +UniRef50_C7NAK8 PP loop domain protein 0.0012506929996 0.00108102916097 -0.00016966383863 +UniRef50_UPI00046FF5CF glycerol 3 phosphate ABC transporter substrate binding protein 1.42205785471e-05 5.82943828806e-06 -8.39114025904e-06 +UniRef50_G7M5U8 Type III restriction protein res subunit 0.000390435426871 0.00284407874193 0.00245364331506 +UniRef50_UPI0004770856 hypothetical protein 7.66754084355e-06 2.68481280329e-05 1.91805871894e-05 +UniRef50_Q88FX7 HTH type transcriptional repressor NicS 0.000106596061616 0.000106134180544 -4.61881072e-07 +UniRef50_UPI00038194DC 30S ribosomal protein S5 7.50639924337e-06 1.26197190849e-05 5.11331984153e-06 +UniRef50_UPI0003B76623 coproporphyrinogen III oxidase 4.99071300156e-05 1.15261886601e-05 -3.83809413555e-05 +UniRef50_Q56232 Aspartate aminotransferase 0.000510735844043 0.0341239739702 0.0336132381262 +UniRef50_R9SJX9 ABC transporter ATP binding protein 0.00392107418223 0.00186180023549 -0.00205927394674 +UniRef50_M1MQF5 Response regulator receiver protein 0.000340673678683 0.00139860928457 0.00105793560589 +UniRef50_V5SVS2 Membrane protein 0.000538024202165 0.000341406595601 -0.000196617606564 +UniRef50_Q9RXI1 7.70903993561e-05 0.0265189828195 0.0264418924201 +UniRef50_Q9RXI0 0.000297233062088 0.0412710739285 0.0409738408664 +UniRef50_Q9RXI3 0.000148618834644 0.0193078869303 0.0191592680957 +UniRef50_P0AEW2 Hydrogenase 4 component E 0.00211387184902 0.000273441393692 -0.00184043045533 +UniRef50_UPI0004630DB7 hypothetical protein 5.85645579847e-06 1.31434214566e-05 7.28696565813e-06 +UniRef50_UPI000361E4A2 hypothetical protein 1.27906103966e-05 7.49600025538e-06 -5.29461014122e-06 +UniRef50_Q4ZY83 Two component response regulator CbrB 0.000632095262601 0.000826584728306 0.000194489465705 +UniRef50_A6X6K2 Extracellular solute binding protein family 1 1.49781440385e-05 1.55204975913e-05 5.423535528e-07 +UniRef50_I7ER35 Signal transduction protein, FIST domain protein 0.00118528813216 0.000155021892496 -0.00103026623966 +UniRef50_P00934 Threonine synthase 0.00435048689627 0.000692603560001 -0.00365788333627 +UniRef50_UPI00040DCB98 hypothetical protein 2.20946403709e-05 6.54914422332e-06 -1.55454961476e-05 +UniRef50_UPI00046815CA branched chain amino acid ABC transporter permease 1.12889454714e-05 1.39904750132e-05 2.7015295418e-06 +UniRef50_UPI0003C1A0D8 PREDICTED 0.000155662833724 4.60360207523e-05 -0.000109626812972 +UniRef50_A6LZT6 Transcriptional regulator, XRE family 0.000154707372483 0.00147805601357 0.00132334864109 +UniRef50_C1CVB0 0.00131681158902 0.0830196173726 0.0817028057836 +UniRef50_UPI00047588DA hypothetical protein, partial 0.000114392138376 4.60357834771e-05 -6.83563548989e-05 +UniRef50_Q43844 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.59224934122e-05 5.11133207216e-05 1.51908273094e-05 +UniRef50_Q56224 NADH quinone oxidoreductase subunit 9 5.47820906211e-06 5.61375581617e-05 5.06593490996e-05 +UniRef50_Q4RS53 Chromosome 13 SCAF15000, whole genome shotgun sequence 6.69003106456e-06 2.23710464737e-05 1.56810154091e-05 +UniRef50_D6SFZ4 Tetratricopeptide repeat protein 0.0212894254182 0.00417217374569 -0.0171172516725 +UniRef50_UPI0002554EAB ribose ABC transporter permease 0.00012555511544 4.52013999995e-05 -8.03537154405e-05 +UniRef50_Q43931 Muconate cycloisomerase 1 0.000102950724233 0.010368195223 0.0102652444988 +UniRef50_D2ZXF5 8.32283723821e-06 0.000860760158686 0.000852437321448 +UniRef50_B7V7C6 Fimbrial subunit CupB6 0.000516368653549 0.000225146153897 -0.000291222499652 +UniRef50_P77295 Probable HTH type transcriptional regulator YgaV 0.000381298978638 0.000594597393014 0.000213298414376 +UniRef50_E3EZG9 2.08730323462e-05 2.77114751335e-05 6.8384427873e-06 +UniRef50_UPI00046E86F5 cell division protein FtsY 4.44790215621e-06 5.50714115337e-06 1.05923899716e-06 +UniRef50_UPI0003B5A40E hypothetical protein 8.23966199431e-06 8.62091613637e-06 3.8125414206e-07 +UniRef50_Q4QLL8 Cytochrome c 552 0.00218347187021 0.00120498270762 -0.00097848916259 +UniRef50_UPI00046632A0 long chain fatty acid CoA ligase 9.46841611191e-06 3.27533901489e-05 2.3284974037e-05 +UniRef50_W0A5F8 Transposase 2.98796429823e-06 9.58315507976e-06 6.59519078153e-06 +UniRef50_I0C313 Hydrolase 0.0173053302443 0.0079398166645 -0.0093655135798 +UniRef50_UPI0004631CAE hypothetical protein 5.27090708228e-06 8.19935238432e-06 2.92844530204e-06 +UniRef50_Q5HRP8 Cell division protein DivIC, putative 0.00295581924139 0.000533704888912 -0.00242211435248 +UniRef50_B6VMG8 1.98030914159e-05 8.14106868882e-05 6.16075954723e-05 +UniRef50_UPI00047BC877 phosphoribosylaminoimidazole succinocarboxamide synthase 3.968487207e-05 1.92206285762e-05 -2.04642434938e-05 +UniRef50_UPI0003B45BBB biotin synthase 5.45801998651e-06 8.17450971758e-05 7.62870771893e-05 +UniRef50_L1K758 0.00116301362774 0.000390022291365 -0.000772991336375 +UniRef50_UPI0001BF7A81 hypothetical protein SMAC_09967, partial 4.85903190355e-05 8.48538313153e-05 3.62635122798e-05 +UniRef50_UPI000288416E winged helix family two component transcriptional regulator 0.000110488407764 1.73936633382e-05 -9.30947444258e-05 +UniRef50_UPI0002DF8C9A hypothetical protein 6.0836202983e-05 8.25663329766e-05 2.17301299936e-05 +UniRef50_Q30Q90 0.000484080713473 0.00305942859384 0.00257534788037 +UniRef50_Q56198 Glucokinase 0.024352163825 0.00390251198507 -0.0204496518399 +UniRef50_UPI00047A54E3 hypothetical protein 2.15048363986e-05 9.90193915469e-05 7.75145551483e-05 +UniRef50_Q3IYC6 Phosphoglycolate phosphatase 0.000270444877355 0.00091484620082 0.000644401323465 +UniRef50_V4R363 Tyrosyl tRNA synthetase 5.13564343198e-05 6.80541548978e-05 1.6697720578e-05 +UniRef50_D3V593 0.00020669008805 0.000283621214504 7.6931126454e-05 +UniRef50_B8DKL2 Appr 1 p processing domain protein 1.17890619663e-05 9.91570128406e-05 8.73679508743e-05 +UniRef50_UPI0002F80699 hypothetical protein 1.2837390593e-05 4.79105544061e-06 -8.04633515239e-06 +UniRef50_W4TMK3 Biotin synthase 0.0011131705313 0.000817163828026 -0.000296006703274 +UniRef50_H2JJL8 Anaerobic ribonucleoside triphosphate reductase activating protein 0.000692572461665 0.00258627886643 0.00189370640476 +UniRef50_F0DFZ2 1.85850148934e-05 2.96531180556e-05 1.10681031622e-05 +UniRef50_S4YYU9 Enoyl CoA hydratase 0.000487463689438 0.0103449588408 0.00985749515136 +UniRef50_B0RDR3 Serine hydroxymethyltransferase 0.000126714033796 0.000160056343506 3.334230971e-05 +UniRef50_A0A011QYI3 Leucine responsive regulatory protein 0.000590351127073 0.000214254722414 -0.000376096404659 +UniRef50_F0Y7D5 Expressed protein 3.74097293279e-05 0.000222510081729 0.000185100352401 +UniRef50_B7NFU7 Bifunctional purine biosynthesis protein PurH 0.00621224802591 0.0119636472151 0.00575139918919 +UniRef50_UPI0002B4A5BA 3.55858144288e-06 1.16272400062e-05 8.06865856332e-06 +UniRef50_UPI0003593C55 PREDICTED 0.000263077113763 6.29258832946e-05 -0.000200151230468 +UniRef50_W5XHW0 Translation initiation factor IF 3 0.00013192011305 0.000378205675359 0.000246285562309 +UniRef50_M1LW12 Sensor histidine kinase AruS 0.000458017796203 0.00148956556954 0.00103154777334 +UniRef50_F8EJQ6 3 oxoacyl reductase 0.000173158710486 0.00739270232583 0.00721954361534 +UniRef50_UPI000462EF2C hypothetical protein 6.96201178551e-05 8.68564900473e-05 1.72363721922e-05 +UniRef50_F2JY03 0.00695153070535 0.00223720146784 -0.00471432923751 +UniRef50_D8JE80 Tyrosine recombinase XerC 0.000145935304967 0.00333522998216 0.00318929467719 +UniRef50_UPI00037E2E56 polyphosphate kinase 1.0098537128e-05 0.000553647801007 0.000543549263879 +UniRef50_P18956 Gamma glutamyltranspeptidase 0.00169593245734 0.00114273199784 -0.0005532004595 +UniRef50_Q213M9 C4 dicarboxylate transport protein 0.00417381924491 0.00192652873253 -0.00224729051238 +UniRef50_UPI000050FB19 ABC transporter related protein 6.25418431682e-05 9.05268998511e-06 -5.34891531831e-05 +UniRef50_UPI00047A7902 mechanosensitive ion channel protein MscL 3.5849646117e-05 6.41013825507e-05 2.82517364337e-05 +UniRef50_UPI0003B393FA RNA pseudouridine synthase 5.4139451358e-05 4.43021179824e-05 -9.8373333756e-06 +UniRef50_UPI00036D2E60 hypothetical protein 0.000124252444931 1.10249772662e-05 -0.000113227467665 +UniRef50_H6SJP6 2.29604561717e-06 3.93410373036e-06 1.63805811319e-06 +UniRef50_P37677 L xylulose 3 keto L gulonate kinase 0.00221679626234 0.000691400347411 -0.00152539591493 +UniRef50_Q0WM29 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 0.00059524269573 0.000499054988108 -9.6187707622e-05 +UniRef50_UPI0003C767D3 hypothetical protein 2.7080872695e-05 0.00017330243097 0.000146221558275 +UniRef50_Q1IPE7 NADH quinone oxidoreductase subunit B 1 1.88901547525e-05 0.000205587040479 0.000186696885727 +UniRef50_UPI0003317A65 PREDICTED 0.0001381659917 4.17124883106e-05 -9.64535033894e-05 +UniRef50_B3PI58 Undecaprenyl diphosphatase 0.000163413847988 0.0029298532658 0.00276643941781 +UniRef50_UPI00036B3249 hypothetical protein 0.00024988564816 0.000114564381389 -0.000135321266771 +UniRef50_UPI0003A8BB10 zinc transporter ZitB 5.27299305854e-06 3.43458129047e-05 2.90728198462e-05 +UniRef50_UPI0004722EB3 hypothetical protein 1.62121452756e-05 4.07005194457e-05 2.44883741701e-05 +UniRef50_Q9RVR0 0.000319903380388 0.00759033111478 0.00727042773439 +UniRef50_B9KV19 0.000863717370006 0.000949745525536 8.602815553e-05 +UniRef50_UPI00035D3125 hypothetical protein 1.62332179968e-05 0.000172107308788 0.000155874090791 +UniRef50_F3L538 Putative exported protein 3.4193914385e-05 2.69215068335e-05 -7.2724075515e-06 +UniRef50_C8RX76 Flagellar protein FlgJ, putative 0.000244553912208 0.000125315924203 -0.000119237988005 +UniRef50_Q8CNW5 Septation ring formation regulator EzrA 0.0166278275511 0.00470385102223 -0.0119239765289 +UniRef50_Q89V93 Bll1154 protein 0.00290941049928 0.000226296325824 -0.00268311417346 +UniRef50_P44051 Short chain fatty acids transporter 0.00110968494846 0.000953764636463 -0.000155920311997 +UniRef50_UPI0004773F07 ATPase P 4.0735915493e-06 6.51819254606e-06 2.44460099676e-06 +UniRef50_A9S9Z8 7.18878781716e-06 3.33509712628e-05 2.61621834456e-05 +UniRef50_UPI0003494CA9 hypothetical protein 1.74357057825e-05 2.79859692705e-05 1.0550263488e-05 +UniRef50_A5UMD9 0.0027838263795 0.00647208543853 0.00368825905903 +UniRef50_J7RHN4 Aconitate hydratase 4.70289853191e-05 0.00335293530358 0.00330590631826 +UniRef50_UPI00046E29A5 dihydroxy acid dehydratase, partial 0.00123234505389 0.000157053056886 -0.001075291997 +UniRef50_M5AGE8 1.10802681553e-05 1.7698987033e-05 6.6187188777e-06 +UniRef50_B3DS65 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 6.49275752096e-06 3.64335107987e-06 -2.84940644109e-06 +UniRef50_A4JK78 Phospholipase C 2.19570434892e-05 4.22780073683e-05 2.03209638791e-05 +UniRef50_Q9RX49 Sensory box GGDEF family protein 4.71857486102e-05 0.0088516869521 0.00880450120349 +UniRef50_Q0F2B8 Stringent starvation protein A 1.09269686454e-05 3.7497929576e-05 2.65709609306e-05 +UniRef50_UPI0003B6D1EF LysR family transcriptional regulator 1.19850650505e-05 2.0873804794e-05 8.8887397435e-06 +UniRef50_A7FKP6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 7.17603803914e-06 1.44166319382e-05 7.24059389906e-06 +UniRef50_UPI0002628ACD parB like partition proteins 2.40489727307e-05 0.000511234315636 0.000487185342905 +UniRef50_UPI0003601EED hypothetical protein, partial 0.000379018403745 0.00055520098629 0.000176182582545 +UniRef50_A3M7V2 23 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.000155557412985 0.00607131945209 0.00591576203911 +UniRef50_UPI000372E28D gamma aminobutyrate transporter, partial 4.0625742168e-05 9.72517135413e-05 5.66259713733e-05 +UniRef50_I0JLF4 Lactoylglutathione lyase 0.00276714417874 0.0116519516335 0.00888480745476 +UniRef50_B5ZZ54 Hydrolase of the alpha beta superfamily like protein 0.00160959866733 0.000253490734069 -0.00135610793326 +UniRef50_B7UVW2 0.00115431596661 0.000413957071086 -0.000740358895524 +UniRef50_UPI00036095F7 hypothetical protein 0.0189776969503 0.0052050143498 -0.0137726826005 +UniRef50_UPI00046CE9BB hypothetical protein 0.000122170699499 0.000209197193767 8.7026494268e-05 +UniRef50_F0KJR3 Membrane alanyl aminopeptidase 4.93445737068e-05 0.00594282895461 0.0058934843809 +UniRef50_A2S1L9 0.000101116894552 8.84926248375e-05 -1.26242697145e-05 +UniRef50_A1VT74 Transposase, IS4 family 0.0010922193153 0.000626074002833 -0.000466145312467 +UniRef50_UPI0003C150A0 PREDICTED 9.0702000874e-06 1.32328999553e-05 4.1626998679e-06 +UniRef50_UPI00041D4C0B hypothetical protein 0.000150740037596 0.000214478331209 6.3738293613e-05 +UniRef50_A3PJ68 SmpA OmlA domain protein 0.0134579703028 0.00419037778553 -0.00926759251727 +UniRef50_Q99ZQ6 Pseudouridine synthase 0.00311925984556 0.00332065650863 0.00020139666307 +UniRef50_Q5HQT9 Sodium transport family protein 0.0172259539806 0.00627233786729 -0.0109536161133 +UniRef50_G7M9D2 Pseudouridine synthase, RluA family 0.000127385598041 0.000396186713523 0.000268801115482 +UniRef50_P13036 Fe dicitrate transport protein FecA 0.00527385381521 0.00151267925277 -0.00376117456244 +UniRef50_UPI000366DA96 hypothetical protein 1.64334603922e-06 2.06483535067e-05 1.90050074675e-05 +UniRef50_UPI000475FEFF FAD binding protein 1.57298077253e-05 0.00199718969537 0.00198145988764 +UniRef50_B4FJG3 4.46867420191e-05 0.000143220448845 9.85337068259e-05 +UniRef50_R7PWX3 9.54213507134e-06 7.58759236532e-07 -8.78337583481e-06 +UniRef50_P39522 Dihydroxy acid dehydratase, mitochondrial 6.36373341395e-06 6.90635110603e-06 5.4261769208e-07 +UniRef50_A2SLT0 tRNA specific 2 thiouridylase MnmA 5.67432646804e-06 1.05186865962e-05 4.84436012816e-06 +UniRef50_X2NG16 Lysine decarboxylase LdcC 0.00398208653109 0.00119116233895 -0.00279092419214 +UniRef50_Q9RY06 Valine tRNA ligase 9.10160645133e-05 0.0558427482078 0.0557517321433 +UniRef50_Q0RRW7 NADH quinone oxidoreductase subunit B 2.00544750015e-05 0.000152527191493 0.000132472716491 +UniRef50_P37813 ATP synthase subunit a 0.0198051196505 0.00280035257875 -0.0170047670717 +UniRef50_U3T5D5 0.000556985325125 0.0159011099792 0.0153441246541 +UniRef50_S9XSX4 2.22283320959e-05 0.00100222821775 0.000979999885654 +UniRef50_J7D104 0.0040751905466 0.000500503771397 -0.0035746867752 +UniRef50_B0K6Q8 0.000152129137978 0.000201478912314 4.9349774336e-05 +UniRef50_UPI00020009E9 hypothetical protein, partial 0.000179880619506 0.00351812395118 0.00333824333167 +UniRef50_A0A058ZAA4 6.36876267111e-06 1.95527719833e-07 -6.17323495128e-06 +UniRef50_D2NQQ7 ATP dependent zinc metalloprotease FtsH 0.000887127455704 0.00693694989277 0.00604982243707 +UniRef50_UPI00035F9DDC hypothetical protein 1.05874954465e-05 1.98829983183e-05 9.2955028718e-06 +UniRef50_B2E956 NADP dependent isocitrate dehydrogenase protein 0.000217423631052 0.00011901517842 -9.8408452632e-05 +UniRef50_UPI000349B827 hypothetical protein 4.48040620258e-06 1.05718895839e-05 6.09148338132e-06 +UniRef50_I9CFE3 Transposase IS66 2.53042661254e-05 3.46215107465e-05 9.3172446211e-06 +UniRef50_C6SRZ7 0.00456627355165 0.000972119515738 -0.00359415403591 +UniRef50_G0LSH0 Pathogenicity island protein 6.13422155185e-05 0.000553718822241 0.000492376606723 +UniRef50_X2HYB2 Sodium 0.000220272022714 0.00221249711021 0.0019922250875 +UniRef50_Q7MNQ6 UPF0246 protein VV0659 0.000894087280541 0.00428649462857 0.00339240734803 +UniRef50_A5WGK5 Aspartate carbamoyltransferase 0.00141432264821 0.00667240784141 0.0052580851932 +UniRef50_Q1GID4 Extracellular solute binding protein family 1 2.53537525793e-05 9.52938635971e-06 -1.58243662196e-05 +UniRef50_A6LVW3 RelA SpoT domain protein 0.000206276496643 0.00219321560862 0.00198693911198 +UniRef50_UPI000471FC6E glyoxalase 6.59220560604e-05 0.000180390790446 0.000114468734386 +UniRef50_Q8XKQ2 Galactose methyl galactoside import ATP binding protein MglA 0.00275979847426 0.00114593119087 -0.00161386728339 +UniRef50_UPI00016C49DE phosphoribosylanthranilate isomerase 9.07174811214e-06 1.31269812347e-05 4.05523312256e-06 +UniRef50_B0TGQ8 Dihydroorotate dehydrogenase B ), catalytic subunit 5.99704070456e-06 0.00199560677332 0.00198960973262 +UniRef50_B9KKA8 6.71606810779e-06 0.000195288060882 0.000188571992774 +UniRef50_UPI000472AD58 tryptophan synthase alpha chain 1.21211111217e-05 7.77844699951e-06 -4.34266412219e-06 +UniRef50_UPI00046ADEBA ABC transporter ATP binding protein 5.27740504682e-06 4.72610002336e-06 -5.5130502346e-07 +UniRef50_A7IEL6 Binding protein dependent transport systems inner membrane component 0.000428338800051 0.00386680080175 0.0034384620017 +UniRef50_E8SEV3 Molybdopterin biosynthesis protein MoeB 0.0300974810281 0.00721240646572 -0.0228850745624 +UniRef50_UPI0002B45AB9 3.46835315563e-05 1.28551612318e-05 -2.18283703245e-05 +UniRef50_Q5WE04 L lactate dehydrogenase 0.0260637510171 0.0120648692818 -0.0139988817353 +UniRef50_A6LYL8 Integral membrane sensor signal transduction histidine kinase 0.000537243471011 0.00282380541781 0.0022865619468 +UniRef50_K8B662 0.000130734681622 0.000150671788373 1.9937106751e-05 +UniRef50_UPI0001FFDAEB transcriptional regulator 0.000171316082874 9.86803785002e-06 -0.000161448045024 +UniRef50_K0FMM2 BclA protein 2.34817760961e-05 5.24767756059e-05 2.89949995098e-05 +UniRef50_B2VIE6 UPF0294 protein ETA_26410 0.00301966390065 0.000453966749505 -0.00256569715115 +UniRef50_Q0H8X2 Probable intron encoded endonuclease bI1 0.000292458690724 0.000111821289617 -0.000180637401107 +UniRef50_W0EIH2 UvrABC system protein A 1.09550659468e-05 8.55301548604e-05 7.45750889136e-05 +UniRef50_D2NRU1 Archaeal DNA polymerase II, large subunit 2.80803766649e-06 7.16939560287e-05 6.88859183622e-05 +UniRef50_UPI0001E7AE98 putative ribonucleotide reductase large subunit 2.68750178491e-06 0.000141807699165 0.00013912019738 +UniRef50_UPI0003614ECF hypothetical protein 6.52380861244e-06 1.1080691072e-05 4.55688245956e-06 +UniRef50_Q2CJ82 Short chain dehydrogenase reductase SDR 1.03388304735e-05 1.39999671359e-05 3.6611366624e-06 +UniRef50_P0A936 Membrane bound lytic murein transglycosylase A 0.00426115866906 0.00130205066746 -0.0029591080016 +UniRef50_UPI000443285E PREDICTED 5.01741881218e-06 6.89723717774e-05 6.39549529652e-05 +UniRef50_A5IW55 Transcriptional regulator, MarR family 0.0106057167506 0.00646839995983 -0.00413731679077 +UniRef50_UPI000350F61A PREDICTED 2.10044736394e-06 1.1637722001e-06 -9.3667516384e-07 +UniRef50_UPI0003B45CE3 arabinose ABC transporter permease 2.9532503847e-06 4.40416752801e-06 1.45091714331e-06 +UniRef50_A0A022P145 0.000588111278528 1.88654342355e-05 -0.000569245844293 +UniRef50_UPI00026276EB preprotein translocase subunit SecA 5.14905668541e-05 2.16180960222e-05 -2.98724708319e-05 +UniRef50_Q9RY70 Ornithine carbamoyltransferase 0.000163886825841 0.0521575567979 0.0519936699721 +UniRef50_P24520 Nicotinamide riboside transporter PnuC 0.00230166498542 0.000567916740756 -0.00173374824466 +UniRef50_A0Q6K3 Malate dehydrogenase 0.0264608191773 0.00755789098362 -0.0189029281937 +UniRef50_B9KQ46 0.00183519778278 0.000399977478817 -0.00143522030396 +UniRef50_Q5XD24 Probable metallo hydrolase M6_Spy0554 0.00515971547456 0.00881165215888 0.00365193668432 +UniRef50_V6URT8 Membrane protein 4.55952041033e-05 8.21353738476e-06 -3.73816667185e-05 +UniRef50_Q5HR11 ATP dependent DNA helicase RecQ 0.00970656817334 0.00173184456588 -0.00797472360746 +UniRef50_UPI000471C72D NAD dependent malic enzyme 1 2.50828407752e-05 1.64211519981e-05 -8.6616887771e-06 +UniRef50_C1CXG7 30S ribosomal protein S10 0.00074260337074 0.00398784410932 0.00324524073858 +UniRef50_UPI00046A2C95 histidine phosphotransferase 6.46251895901e-05 2.43624324826e-05 -4.02627571075e-05 +UniRef50_V5VBC4 Acinetobactin biosynthesis protein 7.7287698312e-05 0.00499994087583 0.00492265317752 +UniRef50_A0A031C6N4 0.000205901448467 6.42452596268e-05 -0.00014165618884 +UniRef50_A8LPB3 Import inner membrane translocase 0.00502587011153 0.000566246806702 -0.00445962330483 +UniRef50_Q6D6A4 UPF0176 protein ECA1781 0.00298869328346 0.00161361166763 -0.00137508161583 +UniRef50_D3DZB3 MatE efflux family protein 0.00350056434364 0.000651809326294 -0.00284875501735 +UniRef50_F8G4X8 Citrate synthase 0.00134989097874 0.000677906461153 -0.000671984517587 +UniRef50_UPI0003B63C52 peptide permease BMEII0860 8.77093862504e-06 1.151309756e-05 2.74215893496e-06 +UniRef50_P20839 Inosine 5 monophosphate dehydrogenase 1 2.26505895462e-05 9.593921748e-06 -1.30566677982e-05 +UniRef50_J3TFE7 Arabinose efflux permease family protein 0.000113359155811 0.00417289592959 0.00405953677378 +UniRef50_UPI00034B9571 hypothetical protein 2.70868313263e-05 3.33910883421e-05 6.3042570158e-06 +UniRef50_U2Z938 Initiation of plasmid replication 0.000729942375831 0.000151255992455 -0.000578686383376 +UniRef50_T2KQZ5 Lipoyltransferase and lipoate protein ligase 0.0202426221139 0.00349773755939 -0.0167448845545 +UniRef50_S6AU95 Transcriptional regulators 0.0041192970673 0.00412656654739 7.26948009e-06 +UniRef50_F4CWF2 0.000124632804606 6.12755474683e-05 -6.33572571377e-05 +UniRef50_N0AYY4 Aromatic amino acid transport protein AroP 0.031394896346 0.00776212371052 -0.0236327726355 +UniRef50_A6U7Z3 Proline tRNA ligase 0.0145095164521 0.00293635628332 -0.0115731601688 +UniRef50_F0Y346 0.000226814149978 0.000242567299515 1.5753149537e-05 +UniRef50_V9VJ25 0.000252123087322 0.0100227027858 0.00977057969848 +UniRef50_X2HPT1 Membrane protein 0.000139122600314 0.0048499777673 0.00471085516699 +UniRef50_C4ZU18 Fructose 1 phosphate kinase 0.00238540650076 0.000586721930844 -0.00179868456992 +UniRef50_S5SQS1 Oligopeptide ABC transporter ATP binding protein 0.00115727141235 0.000811442799272 -0.000345828613078 +UniRef50_C1DMJ1 TonB dependent siderophore receptor 0.00067187626896 0.000551484416891 -0.000120391852069 +UniRef50_D9VJK2 5.70526502717e-07 0.000169579680527 0.000169009154024 +UniRef50_Q8NQ46 Peptide deformylase 1 1.29258374628e-05 9.66405089067e-05 8.37146714439e-05 +UniRef50_F6DQM1 FAD linked oxidase domain protein 0.000603719017794 0.000163158400665 -0.000440560617129 +UniRef50_Q49ZH2 DNA topoisomerase 3 0.0102579146244 0.00346160852263 -0.00679630610177 +UniRef50_I0I0F8 Putative major facilitator superfamily transporter 6.13343134872e-06 3.79350676046e-06 -2.33992458826e-06 +UniRef50_Q3JPX4 Val start codon 3.32897357665e-05 5.87624370776e-05 2.54727013111e-05 +UniRef50_O32867 Tetrahydromethanopterin S methyltransferase subunit A 0.00283651439477 0.000508322774466 -0.0023281916203 +UniRef50_B8DWF1 ATP binding protein of ABC transporter 7.9806762976e-05 0.00134443644192 0.00126462967894 +UniRef50_D9RCU3 ABC type nitrate sulfonate bicarbonate transporter, TauA 0.00954138805413 0.00428885633426 -0.00525253171987 +UniRef50_H6P8S4 Acetoin dehydrogenase E1 component 0.00951654849752 0.00467300993691 -0.00484353856061 +UniRef50_C5D403 Anti sigma F factor 0.000514753621167 0.000826060713832 0.000311307092665 +UniRef50_UPI0003A374B9 ribonuclease 3 1.31455330626e-05 7.53506305934e-05 6.22050975308e-05 +UniRef50_A3PP97 Transcriptional regulator, AraC family 0.00427920469186 0.000302372053093 -0.00397683263877 +UniRef50_P06130 Formate dehydrogenase subunit beta 0.00368426348646 0.000690020470573 -0.00299424301589 +UniRef50_H3VE51 0.000399513634297 0.00031220860807 -8.7305026227e-05 +UniRef50_B9JCY0 8.21216023673e-05 5.04302581437e-05 -3.16913442236e-05 +UniRef50_U5NMX6 0.0157060533738 0.00490140401226 -0.0108046493615 +UniRef50_X1RXJ8 Marine sediment metagenome DNA, contig 1.18064935746e-05 1.19259609452e-05 1.194673706e-07 +UniRef50_M8R009 0.00766369264197 0.000694862835762 -0.00696882980621 +UniRef50_Q8FDH0 HTH type transcriptional activator TtdR 0.00245791682665 0.000473622087543 -0.00198429473911 +UniRef50_UPI0002DC6DF0 hypothetical protein 0.000233296747131 0.000369135180841 0.00013583843371 +UniRef50_UPI000363C9B5 hypothetical protein 3.27460368986e-06 0.000227585010365 0.000224310406675 +UniRef50_B2TGR6 NADH 0.00344866680628 0.00033063479302 -0.00311803201326 +UniRef50_P39773 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.0257656392718 0.00374224139949 -0.0220233978723 +UniRef50_Q932I8 Tetracycline resistance protein TetM 0.000142381891009 9.44509718088e-05 -4.79309192002e-05 +UniRef50_S4X5W3 0.000173996884551 0.000110186878266 -6.3810006285e-05 +UniRef50_UPI000473EC6D MFS transporter 1.65180832232e-05 0.000111677830249 9.51597470258e-05 +UniRef50_P36682 0.00347600416181 0.00248154314239 -0.00099446101942 +UniRef50_Q5X5E0 Orotidine 5 phosphate decarboxylase 3.61623490513e-05 1.20477939878e-05 -2.41145550635e-05 +UniRef50_P08005 Oligopeptide transport system permease protein OppB 0.00259948196924 0.00039323216977 -0.00220624979947 +UniRef50_A8BSP6 0.000113443423855 0.000221487528896 0.000108044105041 +UniRef50_R4ZI73 Hydrolase, haloacid dehalogenase like family 0.00571378903837 0.00247512991375 -0.00323865912462 +UniRef50_Q9RWJ0 Argininosuccinate lyase 0.00733429383423 0.0195192635832 0.012184969749 +UniRef50_K7EGT5 3.48781643324e-05 0.000604341161777 0.000569462997445 +UniRef50_B6JLQ7 Type II R M system protein 4.07799051658e-05 0.00472811258922 0.00468733268405 +UniRef50_UPI0004225DED isoleucine tRNA ligase 1.37531687293e-06 6.51499332703e-06 5.1396764541e-06 +UniRef50_A6E257 3.19333387442e-06 8.39392038982e-06 5.2005865154e-06 +UniRef50_Q3IMY5 50S ribosomal protein L2 0.00589840543537 0.000860667332413 -0.00503773810296 +UniRef50_G8VA00 Adhesion protein associated protein 0.000657845574193 0.00707684035524 0.00641899478105 +UniRef50_Q8IQF1 Molybdenum cofactor biosynthesis protein 1 3.13539564882e-06 7.87906153327e-05 7.56552196839e-05 +UniRef50_Q4L770 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0176000195049 0.0033443335214 -0.0142556859835 +UniRef50_I3UHD0 Spermidine putrescine ABC transporter ATPase 0.00104881287132 0.0014188488577 0.00037003598638 +UniRef50_B5X4Z4 Probable amino acid acetyltransferase NAGS2, chloroplastic 2.86314551725e-06 5.34244005008e-06 2.47929453283e-06 +UniRef50_W5XJA7 Primary replicative DNA helicase 4.65083201026e-06 7.24343625428e-06 2.59260424402e-06 +UniRef50_P23325 Ankyrin repeat protein A 0.000867212605624 0.000185200651719 -0.000682011953905 +UniRef50_Q8CUB3 0.0523263044 0.0116723163284 -0.0406539880716 +UniRef50_D0K767 0.00792308556173 0.000654638500648 -0.00726844706108 +UniRef50_Q8CUB1 0.00527565012877 0.00187196196748 -0.00340368816129 +UniRef50_Q8CUB0 0.000688045255084 0.000384496984105 -0.000303548270979 +UniRef50_Q9I576 4 hydroxyphenylpyruvate dioxygenase 0.00137192810219 0.00035389785821 -0.00101803024398 +UniRef50_Q8CUB6 0.00820714297245 0.00769431180473 -0.00051283116772 +UniRef50_Q8CUB4 0.0345894628862 0.0110947264562 -0.02349473643 +UniRef50_D4YZ36 9.68704126262e-05 4.18345603648e-05 -5.50358522614e-05 +UniRef50_G7M679 D galactose binding protein 0.000970125095041 0.00461549273457 0.00364536763953 +UniRef50_B5GNG9 2.88642298465e-05 0.000220890571829 0.000192026341983 +UniRef50_UPI00042A099E MULTISPECIES 9.34986347e-06 1.15428299218e-05 2.1929664518e-06 +UniRef50_A6M2R3 Signal peptidase I 0.00101191085796 0.00193112350419 0.00091921264623 +UniRef50_UPI00036D23D9 hypothetical protein, partial 8.98441945633e-05 1.32615502885e-05 -7.65826442748e-05 +UniRef50_UPI0003802981 30S ribosomal protein S13 0.000188688016778 0.0010173289622 0.000828640945422 +UniRef50_UPI00046643A7 uracil phosphoribosyltransferase 8.90699868207e-06 2.47122974436e-05 1.58052987615e-05 +UniRef50_U5SG79 Rlx protein 0.000395483171821 4.9834431849e-05 -0.000345648739972 +UniRef50_Q9RUU7 6.74333839322e-05 0.0828867124478 0.0828192790639 +UniRef50_S4EU42 5.23117741504e-05 8.35624719508e-05 3.12506978004e-05 +UniRef50_UPI00046CF290 molecular chaperone DnaJ, partial 1.34954366863e-05 1.79363806799e-05 4.4409439936e-06 +UniRef50_R9ZBV1 Membrane protein 0.00022251613143 0.000296455743287 7.3939611857e-05 +UniRef50_H9K042 6.5437293272e-05 0.00013694047349 7.1503180218e-05 +UniRef50_P0ACQ2 Ribose operon repressor 0.00555451981669 0.0018868803424 -0.00366763947429 +UniRef50_Q6F9I9 Coenzyme PQQ synthesis protein E 0.000297733211355 0.00343423304362 0.00313649983227 +UniRef50_U3SUW9 0.0215533751035 0.00412069821203 -0.0174326768915 +UniRef50_UPI000478E845 acetyl CoA acetyltransferase 3.94063304549e-06 4.00508842265e-05 3.6110251181e-05 +UniRef50_E8QA77 Exported protein 0.00485836768309 0.0051253203629 0.00026695267981 +UniRef50_UPI000478CDB6 hypothetical protein 2.41767984707e-06 1.22124213446e-05 9.79474149753e-06 +UniRef50_A6LWY2 Peptidase M42 family protein 0.000119457591412 0.00131237308102 0.00119291548961 +UniRef50_Q898F3 DNA binding protein iolR 0.000208555794952 0.000522798163873 0.000314242368921 +UniRef50_U9DSS6 4.21643106482e-05 1.99254841624e-05 -2.22388264858e-05 +UniRef50_E5U235 0.000546347376875 0.000270118386102 -0.000276228990773 +UniRef50_G5N0A7 DNA ligase 0.00278720758274 0.00102131526159 -0.00176589232115 +UniRef50_UPI000375E551 hypothetical protein, partial 1.60300389907e-05 3.04770917789e-05 1.44470527882e-05 +UniRef50_UPI00037AE230 hypothetical protein 1.46798656517e-05 0.000301841269429 0.000287161403777 +UniRef50_UPI00047B09DF hypothetical protein 4.14914404877e-06 2.80054536879e-05 2.38563096391e-05 +UniRef50_UPI00047229B1 hypothetical protein 0.000180557851816 2.25868571e-05 -0.000157970994716 +UniRef50_M2ZV09 1.64591066016e-06 1.54888495218e-06 -9.702570798e-08 +UniRef50_C7QH34 Thioesterase superfamily protein 6.7636987712e-05 0.00100434415332 0.000936707165608 +UniRef50_M8ZKF1 TraU family protein 0.000223775273993 4.09111443757e-05 -0.000182864129617 +UniRef50_A4J903 UPF0042 nucleotide binding protein Dred_3054 0.000569338702742 0.00413888113767 0.00356954243493 +UniRef50_UPI000429F6B2 hypothetical protein 3.6542628731e-06 1.74606430983e-05 1.38063802252e-05 +UniRef50_X1F770 Marine sediment metagenome DNA, contig 8.08838336464e-05 6.07813619599e-05 -2.01024716865e-05 +UniRef50_UPI000219576D homoserine dehydrogenase 4.89841567849e-06 0.000159486969502 0.000154588553824 +UniRef50_Q9RYT7 Glucan synthase 1 related protein 0.000694443904091 0.0417365707965 0.0410421268924 +UniRef50_G8WNN7 2.88831785182e-05 1.77726240881e-05 -1.11105544301e-05 +UniRef50_S5STQ7 Fasciclin domain containing protein 0.000118444829756 2.09622244584e-05 -9.74826052976e-05 +UniRef50_P67431 HTH type transcriptional repressor NemR 0.00144142290001 0.000643261798562 -0.000798161101448 +UniRef50_Q92UB9 0.000213689721651 0.000101976277451 -0.0001117134442 +UniRef50_UPI000373D358 ferredoxin 7.87599171331e-06 8.69597216458e-06 8.1998045127e-07 +UniRef50_T1ZVD1 Two component system response regulator 0.00303100255673 0.00109195141113 -0.0019390511456 +UniRef50_Q7MUW1 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.09593099145e-05 0.00708961575346 0.00705865644355 +UniRef50_A1KL82 Phosphoadenosine phosphosulfate reductase 8.67140763045e-06 1.08911020707e-05 2.21969444025e-06 +UniRef50_U9V3J0 0.000105983478365 0.000183511548505 7.752807014e-05 +UniRef50_Q5HNJ1 0.00920845685419 0.00274938243779 -0.0064590744164 +UniRef50_P40131 Flagella basal body P ring formation protein FlgA 0.00301986461335 0.00294140362215 -7.84609912e-05 +UniRef50_F0LTE4 2.80164479065e-05 3.32849731e-05 5.2685251935e-06 +UniRef50_M7CYB4 40K cell wall protein 0.00251880346255 0.00167084964205 -0.0008479538205 +UniRef50_A6M2E1 0.000549133561104 0.000460076405293 -8.9057155811e-05 +UniRef50_Q1RF99 0.00366473942394 0.000346814498151 -0.00331792492579 +UniRef50_UPI0003771A5E hypothetical protein 5.32801363756e-05 1.95735016213e-05 -3.37066347543e-05 +UniRef50_Q9I2Q2 Methionine synthase 0.00096728335384 0.00367943663333 0.00271215327949 +UniRef50_P52690 HTH type transcriptional regulator CbbR 0.00241162990167 0.000438140473143 -0.00197348942853 +UniRef50_O05508 6 phospho beta glucosidase GmuD 0.000595633453839 0.00703651462641 0.00644088117257 +UniRef50_Q9K8D9 Non canonical purine NTP pyrophosphatase 1.14005894289e-05 1.1083631629e-05 -3.169577999e-07 +UniRef50_F3U3U4 Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein 0.0120934555519 0.0029230151804 -0.0091704403715 +UniRef50_A0AZ30 Extracellular solute binding protein, family 1 0.000235638738697 0.000277292680931 4.1653942234e-05 +UniRef50_UPI000373D0A7 Cro Cl family transcriptional regulator 0.000263274183169 3.08135301128e-05 -0.000232460653056 +UniRef50_S8AV33 4.483542443e-06 1.00492511852e-05 5.5657087422e-06 +UniRef50_A0ZA13 Putative restriction modification enzyme 4.40571262719e-06 0.00106757328176 0.00106316756913 +UniRef50_Q8CSP4 UPF0291 protein SE_1024 0.00281641523841 0.000757222321012 -0.0020591929174 +UniRef50_B4RJ27 0.0113245796655 0.000418888943548 -0.010905690722 +UniRef50_D5WAU2 PTS system, N acetylglucosamine specific IIBC subunit 0.000712163215026 0.000380211470956 -0.00033195174407 +UniRef50_A0A014MC25 2.87616065281e-06 3.9996132031e-06 1.12345255029e-06 +UniRef50_UPI0003A406BC hemolysin expression modulating protein 5.170654259e-06 1.67924535321e-06 -3.49140890579e-06 +UniRef50_B2IN54 Transketolase, N terminal subunit 0.000136276530269 0.00516618448885 0.00502990795858 +UniRef50_UPI0002481BB1 IS21 family transposase 1.05492138374e-05 2.0882851266e-05 1.03336374286e-05 +UniRef50_UPI00036B09EF hypothetical protein, partial 3.69651666798e-05 0.000102180903294 6.52157366142e-05 +UniRef50_Q1R597 Hemin import ATP binding protein HmuV 9.53441855938e-06 0.000264640029823 0.000255105611264 +UniRef50_G7WK52 6.71158065137e-05 1.81039186132e-05 -4.90118879005e-05 +UniRef50_X5MEU2 6.64915406564e-06 1.12089597094e-05 4.55980564376e-06 +UniRef50_E8SKH8 Sucrose 6 phosphate hydrolase 0.012245056035 0.00357003316047 -0.00867502287453 +UniRef50_A0A011MXQ2 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.14087161398e-05 8.13246242588e-05 6.9915908119e-05 +UniRef50_A6LVK7 MATE efflux family protein 0.000165165424372 0.00109878632124 0.000933620896868 +UniRef50_Q03MN5 Adapter protein MecA 0.00396535296489 0.00113808286303 -0.00282727010186 +UniRef50_UPI0003629460 hypothetical protein, partial 3.23843943629e-05 0.000102480998873 7.00966045101e-05 +UniRef50_B7V3W3 6.41374026635e-06 0.000611000079721 0.000604586339455 +UniRef50_UPI00037C96DC hypothetical protein 1.41818810768e-05 0.00246742207071 0.00245324018963 +UniRef50_R5QE34 0.000774967509291 0.00175508227294 0.000980114763649 +UniRef50_UPI00037C173A hypothetical protein 5.92563212473e-05 1.93384438881e-05 -3.99178773592e-05 +UniRef50_UPI000440CBE5 PREDICTED 2.82233774435e-05 2.72593175217e-05 -9.640599218e-07 +UniRef50_G7U7Z2 8.93105651832e-05 0.00519012666675 0.00510081610157 +UniRef50_R5DNX0 0.000391212435035 0.00278794453153 0.00239673209649 +UniRef50_Q6MLR5 Ribonuclease 3 1.35811221478e-05 2.82851882375e-05 1.47040660897e-05 +UniRef50_UPI0003693C86 hypothetical protein 6.35675969136e-05 2.30734208503e-05 -4.04941760633e-05 +UniRef50_F5LZD2 Acetyltransferase 0.00332971789401 0.000381875049823 -0.00294784284419 +UniRef50_W8VP54 UPF0246 protein NMS_0251 1.09554499746e-05 2.08872897523e-05 9.9318397777e-06 +UniRef50_U6MRR8 6.21887955241e-05 9.73036919865e-05 3.51148964624e-05 +UniRef50_Q9RZC4 1 pyrroline 5 carboxylate dehydrogenase, putative 0.000546758895691 0.0523921647194 0.0518454058237 +UniRef50_P0AGI6 Xylose transport system permease protein XylH 0.00378210868293 0.000412792137545 -0.00336931654538 +UniRef50_U5PB97 Glutamyl tRNA synthetase 0.00432578052004 0.000871814643229 -0.00345396587681 +UniRef50_A8AYG2 ATP synthase gamma chain 0.00439785881599 0.00283511350248 -0.00156274531351 +UniRef50_A0A038G154 1.16109959176e-05 7.04091700241e-05 5.87981741065e-05 +UniRef50_M7DT58 Deacetylase 0.00492163425208 0.00109610117315 -0.00382553307893 +UniRef50_D3QIY9 Glutamate ABC transporter, periplasmic glutamine binding protein 0.0158632106534 0.00295388358511 -0.0129093270683 +UniRef50_A6LR18 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 0.000526565872226 0.000758452088735 0.000231886216509 +UniRef50_A0A025E7F4 0.000120966951921 8.27654050994e-05 -3.82015468216e-05 +UniRef50_Q9LU86 Peroxiredoxin Q, chloroplastic 1.19782465211e-05 0.000916667406568 0.000904689160047 +UniRef50_A5E987 Fructose 1,6 bisphosphatase class 1 1 0.000128056370821 3.72406398993e-05 -9.08157309217e-05 +UniRef50_C4LJK5 ABC type transport system, ATP binding protein 0.000393362768441 0.00629190023714 0.0058985374687 +UniRef50_UPI00046997D0 hypothetical protein 1.7446033867e-06 1.49778236965e-05 1.32332203098e-05 +UniRef50_A6LSX7 Adenine deaminase 0.000390590005447 0.000646741153082 0.000256151147635 +UniRef50_UPI00034A4595 hypothetical protein 2.04866504055e-05 3.46718720494e-05 1.41852216439e-05 +UniRef50_UPI0004696A10 tRNA hydroxylase 1.56556273912e-05 2.18607988315e-05 6.2051714403e-06 +UniRef50_T6AKZ2 5.00290209738e-05 0.000101547192284 5.15181713102e-05 +UniRef50_A3K6W1 3.77386141128e-05 2.96290545696e-05 -8.1095595432e-06 +UniRef50_D6XR13 5.23075273197e-05 0.00398883695534 0.00393652942802 +UniRef50_F5M2N9 0.000118986889085 5.24528466247e-05 -6.65340424603e-05 +UniRef50_I7E227 Uroporphyrinogen III C methyltransferase CobA 0.000982777380713 0.000267658645188 -0.000715118735525 +UniRef50_A0A026W2G8 Activating molecule in BECN1 regulated autophagy protein 1.76344471275e-06 6.99891317187e-05 6.8225687006e-05 +UniRef50_UPI000402E7C3 oxidoreductase 2.77480007274e-05 0.00706136052445 0.00703361252372 +UniRef50_UPI00036AC882 hypothetical protein 9.75021042822e-05 3.95773845017e-05 -5.79247197805e-05 +UniRef50_I3TXU6 TRAP type bacterial extracellular solute binding protein 0.0111613860287 0.0016406262168 -0.0095207598119 +UniRef50_W1WFT4 Replication initiation protein 0.00014243337495 9.92567952405e-05 -4.31765797095e-05 +UniRef50_Q1GIZ8 Aspartate tRNA ligase 0.00662754870603 0.00193816653781 -0.00468938216822 +UniRef50_UPI000464CCF6 resolvase 5.30985347139e-05 1.12095490788e-05 -4.18889856351e-05 +UniRef50_UPI0003B3855E DNA polymerase I 1.65221542737e-06 2.21415119839e-05 2.04892965565e-05 +UniRef50_A6U4E8 Immunoglobulin binding protein sbi 0.00909314306788 0.00221084047587 -0.00688230259201 +UniRef50_Q5HPB4 Peptide methionine sulfoxide reductase MsrB 0.00314368509729 0.0011824198187 -0.00196126527859 +UniRef50_O85746 Tyrosine aminotransferase 0.00118397839161 0.000616044718624 -0.000567933672986 +UniRef50_UPI00041C01EF peptidase M24 5.68186963466e-06 2.3489824758e-05 1.78079551233e-05 +UniRef50_UPI00022CAD53 PREDICTED 1.70320619322e-06 1.18721135705e-06 -5.1599483617e-07 +UniRef50_A7ZJI0 Tail fiber assembly protein 0.0108648743134 0.0018719813004 -0.008992893013 +UniRef50_A6LXY5 PAS PAC sensor hybrid histidine kinase 0.000710881334768 0.000690490674175 -2.0390660593e-05 +UniRef50_O83716 Purine nucleoside phosphorylase DeoD type 3.80737109731e-05 0.000228463138887 0.000190389427914 +UniRef50_UPI000273D5E4 8.06047579756e-06 0.00021674505538 0.000208684579582 +UniRef50_Q6FAN6 0.000116030529356 0.00706817677985 0.00695214625049 +UniRef50_C8N6A0 LemA family protein 2.37146347418e-05 1.50537493024e-05 -8.6608854394e-06 +UniRef50_C0SP91 Putative metallo hydrolase YycJ 0.0059701333986 0.00472848586651 -0.00124164753209 +UniRef50_UPI0004009357 ABC transporter permease 5.61307505546e-05 4.02772636529e-05 -1.58534869017e-05 +UniRef50_D6SHS5 Superantigen like protein 0.0294014747932 0.00469776743425 -0.024703707359 +UniRef50_A5UP87 N acetyltransferase, GNAT family 0.00328994806436 0.000827990762236 -0.00246195730212 +UniRef50_I3X1B7 0.000341657291347 0.000145268216702 -0.000196389074645 +UniRef50_B9KU34 0.00506972607126 0.00113375529374 -0.00393597077752 +UniRef50_Q8CQE1 Galactosamine containing minor teichoic acid biosynthesis protein 0.00731330278401 0.00413177683041 -0.0031815259536 +UniRef50_A1B9G9 0.00103895226289 0.000932579069031 -0.000106373193859 +UniRef50_A1WWL1 Diguanylate cyclase 2.37141620992e-06 4.7065936787e-05 4.46945205771e-05 +UniRef50_F0RQZ8 Xanthine dehydrogenase 0.000132347230999 0.0518109109646 0.0516785637336 +UniRef50_UPI00036CA33F hypothetical protein 1.29876350145e-05 6.12867001272e-05 4.82990651127e-05 +UniRef50_A3PS71 0.0164538242589 0.00453308888517 -0.0119207353737 +UniRef50_UPI00045DD9A4 PREDICTED 0.000105400200103 1.44018756062e-05 -9.09983244968e-05 +UniRef50_UPI00035DAB70 hypothetical protein 1.70543161241e-05 2.62506918605e-05 9.1963757364e-06 +UniRef50_W7VIZ6 Basic proline rich protein 8.27424182141e-05 1.11261341999e-05 -7.16162840142e-05 +UniRef50_UPI0003681CA6 hypothetical protein 1.4334545561e-05 1.85063630302e-05 4.1718174692e-06 +UniRef50_D2YBW7 Diheme cytochrome c napB 0.000253269676065 6.93418983279e-05 -0.000183927777737 +UniRef50_G7MCB1 Transcriptional regulator, TrmB 0.000314326432122 0.00190502167396 0.00159069524184 +UniRef50_C6SRE9 0.00839404669527 0.00167206291721 -0.00672198377806 +UniRef50_N0AYA8 Two component system histidine kinase 0.00045504421599 0.00247691041382 0.00202186619783 +UniRef50_UPI0003A4D539 single stranded DNA binding protein 2.03435711702e-05 0.000627041220709 0.000606697649539 +UniRef50_UPI000473EB9F mannose 1 phosphate guanyltransferase 1.18458435673e-05 1.74095454824e-05 5.5637019151e-06 +UniRef50_Q9ZKQ7 0.000404984233366 0.00392456101917 0.0035195767858 +UniRef50_Q0STN1 Undecaprenyl diphosphatase 4.68307320182e-06 0.00255352352906 0.00254884045586 +UniRef50_UPI000471BD1E hypothetical protein, partial 0.000101889926055 0.000125993715289 2.4103789234e-05 +UniRef50_UPI000368EF4F hypothetical protein 1.11711766716e-05 5.04437662606e-05 3.9272589589e-05 +UniRef50_Q9HJD0 30S ribosomal protein S8e 0.0140865472567 0.000653837723686 -0.013432709533 +UniRef50_UPI00045E5CBA hypothetical protein 8.36411397894e-05 7.0054188276e-06 -7.66357209618e-05 +UniRef50_B2A3L9 Ribosomal RNA small subunit methyltransferase A 3.92596257346e-06 2.14329643068e-05 1.75070017333e-05 +UniRef50_UPI000375EF4E hypothetical protein, partial 1.15158799917e-05 1.47314053896e-05 3.2155253979e-06 +UniRef50_Q2FXB1 Leucotoxin LukDv 0.0179290368545 0.00202877877544 -0.0159002580791 +UniRef50_P25306 Threonine dehydratase biosynthetic, chloroplastic 2.49259204348e-06 2.18103275469e-05 1.93177355034e-05 +UniRef50_U5MTT7 Cobalamin biosynthesis CbiG protein 0.000202590450364 0.000507184923003 0.000304594472639 +UniRef50_UPI00031889A3 hypothetical protein 7.69021900174e-05 3.45626194629e-05 -4.23395705545e-05 +UniRef50_A1A025 Response regulator of two component system 0.000289631193489 0.00526341721738 0.00497378602389 +UniRef50_P75870 Inner membrane protein YccS 0.00340103413391 0.00157170744406 -0.00182932668985 +UniRef50_D1JNF2 6.60965481282e-05 1.18849786294e-05 -5.42115694988e-05 +UniRef50_I3X1L2 Transposase IS4 family protein 9.85580828551e-05 2.25051506874e-05 -7.60529321677e-05 +UniRef50_S5XKW1 Spermidine putrescine transport system, permease protein 0.00543322661624 0.000957848300693 -0.00447537831555 +UniRef50_P75750 0.00216783657664 0.00122312783156 -0.00094470874508 +UniRef50_A0A059LQ22 7.37708033943e-05 2.23090742277e-05 -5.14617291666e-05 +UniRef50_UPI00047BA782 major facilitator transporter 1.56422557579e-05 9.26174175117e-06 -6.38051400673e-06 +UniRef50_Q6FB59 0.000725934593951 0.00254128430164 0.00181534970769 +UniRef50_B7KX11 Alkanesulfonate monooxygenase 2.45750219016e-05 3.23122850483e-05 7.7372631467e-06 +UniRef50_K6S6A5 FliK family flagellar hook length control protein 4.923749642e-05 0.000221764734821 0.000172527238401 +UniRef50_UPI000476116B 50S ribosomal protein L35 0.000397915029565 0.00117914589748 0.000781230867915 +UniRef50_Q63IW3 ATP synthase subunit beta 2 1.7290998333e-06 1.11845092581e-05 9.4554094248e-06 +UniRef50_W1GG81 0.000296919065399 0.000535085236243 0.000238166170844 +UniRef50_A3KA49 0.000210034677438 4.00546546175e-05 -0.000169980022821 +UniRef50_B7RRM5 Cobyrinic Acid a,c diamide synthase 2.83039208439e-05 5.10816816179e-05 2.2777760774e-05 +UniRef50_Q67JT3 DNA directed RNA polymerase subunit beta 9.13658208948e-06 7.23888808761e-06 -1.89769400187e-06 +UniRef50_C7RN78 0.000948100370406 0.00117933524061 0.000231234870204 +UniRef50_M4R3U4 Metal dependent hydrolase 0.0003380471542 0.00710377809483 0.00676573094063 +UniRef50_V3BAW5 Anhydro N acetylmuramic acid kinase 0.000388720110795 0.000322163678398 -6.6556432397e-05 +UniRef50_UPI000364C8A1 hypothetical protein 3.60467761102e-05 1.61039445405e-05 -1.99428315697e-05 +UniRef50_A0A009MS46 0.000199536650972 5.4874074367e-05 -0.000144662576605 +UniRef50_P0AE22 Class B acid phosphatase 0.00194943127979 0.00128648064215 -0.00066295063764 +UniRef50_A1B792 0.000352210275884 0.000154892117939 -0.000197318157945 +UniRef50_Q75ZQ6 Urease subunit beta 4.28949757783e-05 3.34697297219e-05 -9.4252460564e-06 +UniRef50_A6W1Y7 0.00158403141371 0.000222773839728 -0.00136125757398 +UniRef50_UPI000373FA13 hypothetical protein 3.08929098158e-05 1.39816766072e-05 -1.69112332086e-05 +UniRef50_P0DMC6 Sensor histidine kinase RcsC 0.00338164222019 0.000960718495971 -0.00242092372422 +UniRef50_D4HFJ2 Helicase C terminal domain protein 0.000213016647942 0.00530437620506 0.00509135955712 +UniRef50_E1Q5C1 DNA topoisomerase I 0.000117383764465 0.00181639739265 0.00169901362818 +UniRef50_Q9HJX7 ATP dependent DNA helicase Hel308 1.88132706411e-06 2.64834497024e-06 7.6701790613e-07 +UniRef50_I4D6H8 Multimeric flavodoxin WrbA 0.00179506995036 0.00121082539983 -0.00058424455053 +UniRef50_C6SQM5 0.00407628133728 0.00146563362355 -0.00261064771373 +UniRef50_B0V6S4 0.00437947145346 0.00972876671746 0.005349295264 +UniRef50_F7QL87 ATPase 0.000718037339298 0.00772760155004 0.00700956421074 +UniRef50_A3PPZ7 Peptidase S14, ClpP 0.00306368231745 0.000227458309521 -0.00283622400793 +UniRef50_R1G067 5.12577568022e-05 9.09519488068e-05 3.96941920046e-05 +UniRef50_D1BEK3 2.82563433063e-05 1.60802066943e-05 -1.2176136612e-05 +UniRef50_A1B788 0.000130713680585 5.28374117003e-05 -7.78762688847e-05 +UniRef50_A6VEE0 0.000729141860105 2.28337855193e-05 -0.000706308074586 +UniRef50_P23524 Glycerate 2 kinase 0.00610913276015 0.0012034699133 -0.00490566284685 +UniRef50_W1VWR4 0.00439283413576 0.00111401656501 -0.00327881757075 +UniRef50_UPI0003A482DB hypothetical protein 7.76121257196e-05 6.68300777921e-05 -1.07820479275e-05 +UniRef50_UPI00035CB5E5 hypothetical protein 1.04888995338e-05 8.37631530297e-06 -2.11258423083e-06 +UniRef50_B4EXS5 UPF0225 protein PMI1492 2.45986825836e-05 0.00210466639836 0.00208006771578 +UniRef50_F0VYF6 0.000424141560512 0.000535317290393 0.000111175729881 +UniRef50_P0AEH2 Regulator of sigma E protease 0.00154921740244 0.00112850136484 -0.0004207160376 +UniRef50_Q1QMX7 0.000227430106357 0.000133764284384 -9.3665821973e-05 +UniRef50_I0C4V2 ComE operon protein 1 0.00411442192742 0.000262503737955 -0.00385191818947 +UniRef50_Q1H4N6 50S ribosomal protein L4 0.000377485988848 0.00735884208256 0.00698135609371 +UniRef50_P00873 Ribulose bisphosphate carboxylase small chain 1, chloroplastic 4.56176261594e-05 2.43032277143e-05 -2.13143984451e-05 +UniRef50_N8WZK4 5.35845233426e-06 2.30277162078e-05 1.76692638735e-05 +UniRef50_B5XSA9 Oxidoreductase, short chain dehydrogenase reductase family 7.59666807941e-06 1.13641394713e-05 3.76747139189e-06 +UniRef50_Q4L8E8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0111238944366 0.00335348774375 -0.00777040669285 +UniRef50_F6BZ95 0.00011248480378 0.000238086708974 0.000125601905194 +UniRef50_K0C6H8 DoxX subfamily, putative 2.14604877026e-05 1.26213188628e-05 -8.8391688398e-06 +UniRef50_Q49WX9 Bifunctional protein PyrR 0.0183868583325 0.000382525994494 -0.018004332338 +UniRef50_M9RDG8 Monovalent cation proton antiporter subunit E 0.00426433096322 0.0049701414203 0.00070581045708 +UniRef50_O26901 ATP dependent DNA helicase Hel308 0.00321383427874 0.000355311866629 -0.00285852241211 +UniRef50_UPI00036A3BE1 hypothetical protein 1.93616255419e-05 4.08537668264e-06 -1.52762488593e-05 +UniRef50_S6B942 0.00439287586572 0.00233420865266 -0.00205866721306 +UniRef50_D5ARY7 Ferredoxin 4 0.00670905393495 0.00828435332543 0.00157529939048 +UniRef50_R3N2B8 0.000807874812632 0.000285102694652 -0.00052277211798 +UniRef50_UPI000308B01A hypothetical protein 2.0075470761e-05 6.21853001399e-05 4.21098293789e-05 +UniRef50_P0CZ01 Hyaluronate lyase 0.000229678701724 0.00554886435555 0.00531918565383 +UniRef50_U5WBY0 8.41171942477e-06 0.000566174241381 0.000557762521956 +UniRef50_UPI0003144775 hypothetical protein 4.02352715105e-05 4.79159962661e-06 -3.54436718839e-05 +UniRef50_F6IG84 Cytochrome bd I oxidase subunit II 0.0075591224677 0.000496724435711 -0.00706239803199 +UniRef50_UPI00037B64B8 MULTISPECIES 1.38279815526e-05 0.000115141254818 0.000101313273265 +UniRef50_V5UAT4 1.53903132023e-05 0.00105492658608 0.00103953627288 +UniRef50_B9DSE2 Nucleoside diphosphate kinase 0.000641639841415 0.00228384599567 0.00164220615426 +UniRef50_UPI00045E79E3 hypothetical protein 5.37228520641e-05 2.90685023434e-05 -2.46543497207e-05 +UniRef50_A7ZSB8 N acetylneuraminate lyase 0.00343359952519 0.000704998718977 -0.00272860080621 +UniRef50_UPI0003B7208F D alanyl D alanine carboxypeptidase 5.76401753535e-06 7.05048030589e-06 1.28646277054e-06 +UniRef50_X7XV22 Carbon starvation CstA family protein 0.00172810748046 0.000962989256073 -0.000765118224387 +UniRef50_UPI00036BCED8 hypothetical protein, partial 4.7738885768e-05 8.96246704021e-06 -3.87764187278e-05 +UniRef50_UPI0004775FD4 hypothetical protein 1.98354945263e-05 5.90370745081e-05 3.92015799818e-05 +UniRef50_UPI00036B23BD hypothetical protein 1.20327556528e-05 0.000155772354544 0.000143739598891 +UniRef50_I1ELS0 1.43578379565e-05 4.95685120259e-05 3.52106740694e-05 +UniRef50_F0KJ61 Triacylglycerol lipase 0.000408341505389 0.00589555088389 0.0054872093785 +UniRef50_UPI0003B4CFA2 organic solvent ABC transporter ATP binding protein 0.000134952951007 4.63545033225e-05 -8.85984476845e-05 +UniRef50_Q6LPK7 Tetraacyldisaccharide 4 kinase 0.00191029905011 0.000378611160516 -0.00153168788959 +UniRef50_E8SFD5 Glycosyl transferase, group 1 family protein 0.00855406148252 0.00322640850895 -0.00532765297357 +UniRef50_B4U3U9 CRISPR associated endonuclease Cas9 0.00202458637509 0.00102306632804 -0.00100152004705 +UniRef50_H6PCS0 Transcriptional regulator CtsR 0.0103867646377 0.00690546396424 -0.00348130067346 +UniRef50_UPI0001E45F6A ribonucleoside diphosphate reductase large subunit 1.54834830785e-06 9.90408488689e-05 9.74925005611e-05 +UniRef50_Q0BVI1 0.000143449969431 5.03850937891e-05 -9.30648756419e-05 +UniRef50_UPI00047AB688 acetylglutamate kinase 1.50471081807e-05 7.76887581462e-06 -7.27823236608e-06 +UniRef50_Q49YR8 Regulatory protein RecX 0.0178162515421 0.00237197770734 -0.0154442738348 +UniRef50_P0ABL2 Cytochrome c type protein NrfB 0.00739411113053 0.000338148899085 -0.00705596223145 +UniRef50_E3GWD7 Protease HtpX homolog 0.0031517637598 0.00200922138604 -0.00114254237376 +UniRef50_UPI00045E5DCC potassium transporter 9.84963377248e-06 7.95375046273e-06 -1.89588330975e-06 +UniRef50_Q89A97 Multidrug resistance like ATP binding protein MdlA 3.27774448276e-06 1.22093464067e-05 8.93160192394e-06 +UniRef50_F0P8I6 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.0218235052572 0.0053872846236 -0.0164362206336 +UniRef50_A0A021ZS12 Sigma 54 interaction domain protein 9.53233844019e-05 0.00444882215008 0.00435349876568 +UniRef50_Q9RVT7 Phosphatase, putative 0.000154919010474 0.0062461825796 0.00609126356913 +UniRef50_UPI00037BA24E hypothetical protein 4.05189770433e-05 1.06670386595e-05 -2.98519383838e-05 +UniRef50_X2HYV0 Membrane protein 0.000227443927303 0.00801624657513 0.00778880264783 +UniRef50_UPI0004765AD1 uracil phosphoribosyltransferase 1.64612520206e-05 1.29993797886e-05 -3.461872232e-06 +UniRef50_P33011 Inner membrane protein YeeA 0.00191924795484 0.000939887594835 -0.000979360360005 +UniRef50_D4J5A0 Diaminopropionate ammonia lyase 0.000148616531043 0.00231589532608 0.00216727879504 +UniRef50_V9X5Q7 0.000320686713861 0.000495848722607 0.000175162008746 +UniRef50_Q08NT1 0.000278663593588 0.000125879134208 -0.00015278445938 +UniRef50_S9QSJ6 Flagellar basal body rod protein FlgF 2.55431284064e-05 9.62544174455e-06 -1.59176866618e-05 +UniRef50_E8PDG9 Malonyl CoA acyl carrier protein transacylase 0.000631245598596 0.00894979405408 0.00831854845548 +UniRef50_Q2P2V7 Uracil phosphoribosyltransferase 3.74603305623e-05 0.00011386551743 7.64051868677e-05 +UniRef50_T2A0W0 Relaxase mobilization nuclease family protein 0.000435596809792 0.00364149178266 0.00320589497287 +UniRef50_Q9RWN1 ATP dependent 6 phosphofructokinase 0.000362976996892 0.0190868843352 0.0187239073383 +UniRef50_E3GYU4 Aspartokinase 0.00219809712539 0.00139061755471 -0.00080747957068 +UniRef50_C7QHR1 0.0001496380278 0.00013069160053 -1.894642727e-05 +UniRef50_C3L0M2 0.000122826243664 0.00107381524158 0.000950988997916 +UniRef50_Q2JMP1 N acetylmuramic acid 6 phosphate etherase 7.11773760817e-06 1.25219884039e-05 5.40425079573e-06 +UniRef50_C5MZE1 Transporter, major facilitator family protein 0.0213299595402 0.00574093319301 -0.0155890263472 +UniRef50_C1DMN0 TonB dependent receptor 0.00048222452949 0.000478324356414 -3.900173076e-06 +UniRef50_UPI00036664BA hypothetical protein 0.000244697046844 3.51077178488e-05 -0.000209589328995 +UniRef50_E3YDC7 Cell surface protein 5.69376769557e-05 0.000722171784474 0.000665234107518 +UniRef50_P14657 NADP specific glutamate dehydrogenase 9.6529513493e-05 0.00078652287375 0.000689993360257 +UniRef50_Q836R3 ATP dependent 6 phosphofructokinase 2.21380964635e-05 0.00101718699878 0.000995048902316 +UniRef50_Q0SHI1 0.00017498239613 0.00130357638981 0.00112859399368 +UniRef50_F5WYS7 ICESt1 ORFJ phage replication initiation factor 0.00783328810583 0.00238044796904 -0.00545284013679 +UniRef50_UPI000365D96C hypothetical protein, partial 5.69037695561e-05 3.03873040304e-05 -2.65164655257e-05 +UniRef50_B8RD42 Cell wall surface anchor family protein,putative 0.000275354258771 0.00424143432964 0.00396608007087 +UniRef50_H1UU45 Dehydrogenase 0.000303306343316 4.40802117711e-05 -0.000259226131545 +UniRef50_L2ZHW9 3 propionate 3 hydroxycinnamic acid hydroxylase 0.00270627328175 0.000844980506742 -0.00186129277501 +UniRef50_UPI0001FFE295 hypothetical protein, partial 1.1163660231e-05 0.000129314284034 0.000118150623803 +UniRef50_M9R1X4 0.000113904183495 9.38082347389e-05 -2.00959487561e-05 +UniRef50_G7U5K4 6 phosphogluconate dehydrogenase, decarboxylating 8.19434129148e-05 0.00501170805201 0.0049297646391 +UniRef50_F5XWG5 1 aminocyclopropane 1 carboxylate deaminase like protein 7.94135899906e-06 0.000181547154827 0.000173605795828 +UniRef50_G7M6Z9 Nitroreductase 0.000202224636884 0.00110486271177 0.000902638074886 +UniRef50_S9RGW6 Flagellar protein FlgJ, putative 0.000109133365762 7.21534205673e-05 -3.69799451947e-05 +UniRef50_J7Q7T7 Escherichia coli IMT2125 genomic chromosome, IMT2125 0.00279812969814 0.000290475447734 -0.00250765425041 +UniRef50_X1YKD9 1.03915442628e-06 6.49158211296e-06 5.45242768668e-06 +UniRef50_C4ZPZ7 2 isopropylmalate synthase 0.00174834644778 0.00381975267088 0.0020714062231 +UniRef50_UPI0003FD05D8 methyltransferase 8.2566666434e-06 1.37996021107e-05 5.5429354673e-06 +UniRef50_P73283 3 oxoacyl [acyl carrier protein] synthase 2 1.06163200464e-05 0.00373554944781 0.00372493312776 +UniRef50_UPI00047C3DCE hypothetical protein 1.19588774697e-05 2.07111890933e-05 8.7523116236e-06 +UniRef50_T0U8G3 ABC transporter membrane spanning permease,Pepexport, Vex3 0.000315339163609 0.00693141239577 0.00661607323216 +UniRef50_P38487 Creatinase 0.00560204074941 0.0035867774779 -0.00201526327151 +UniRef50_UPI0002DD21FE hypothetical protein 4.3163189773e-06 7.6953031504e-06 3.3789841731e-06 +UniRef50_O26938 Aspartate carbamoyltransferase regulatory chain 0.00382011835841 0.000828545781828 -0.00299157257658 +UniRef50_UPI0003F6906F chromosome partitioning protein ParB 4.97853629937e-05 0.000562060687001 0.000512275324007 +UniRef50_B4U896 Glutamate tRNA ligase 2.73440161091e-05 5.19232175659e-06 -2.21516943525e-05 +UniRef50_Q7W4F7 Exported protein, conserved 0.00071109708681 0.000417382025963 -0.000293715060847 +UniRef50_D5BUA3 ABC transporter related protein 0.00326787070476 0.000976162663273 -0.00229170804149 +UniRef50_UPI00046CCD8A ABC transporter permease 2.19728964625e-05 5.93436676277e-05 3.73707711652e-05 +UniRef50_F5XE95 0.00041120503439 0.00517475755317 0.00476355251878 +UniRef50_W2RQC0 5.03301536757e-05 1.87905659224e-05 -3.15395877533e-05 +UniRef50_UPI0002FFACA2 hypothetical protein 0.000154590807554 9.04086232071e-06 -0.000145549945233 +UniRef50_P09155 Ribonuclease D 0.00310989566436 0.000894509407104 -0.00221538625726 +UniRef50_F7TB61 9.23717369889e-06 7.94762672591e-05 7.02390935602e-05 +UniRef50_U5UU73 1.31476483582e-05 3.70007523029e-05 2.38531039447e-05 +UniRef50_UPI000420A761 hypothetical protein 9.63526148386e-06 1.50608592116e-05 5.42559772774e-06 +UniRef50_D1ZK87 Putative glutathione dependent formaldehyde activating enzyme 5.37317947109e-05 1.58691702405e-05 -3.78626244704e-05 +UniRef50_P46883 Primary amine oxidase 0.000430447438042 0.00834939671573 0.00791894927769 +UniRef50_UPI000350E610 PREDICTED 0.000510631361184 0.000138984926458 -0.000371646434726 +UniRef50_A3VBF6 0.000115721545935 0.000130353387106 1.4631841171e-05 +UniRef50_Q9K5Z9 L lactate permease 0.0178858488396 0.00371892939163 -0.014166919448 +UniRef50_UPI00041F2A30 hypothetical protein 4.07855854392e-06 6.02067076227e-06 1.94211221835e-06 +UniRef50_F2JYP7 ABC type transporter, integral membrane subunit 0.0119315065095 0.00330279874024 -0.00862870776926 +UniRef50_I0JKD6 PTS system subunit IIBC, sucrose specific 0.000362061334526 0.00113514792284 0.000773086588314 +UniRef50_W5XHN2 Transcriptional regulator, TetR family protein 9.84179333564e-06 9.81540364225e-05 8.83122430869e-05 +UniRef50_UPI00045D68F4 PREDICTED 4.60160852434e-06 5.32605149678e-06 7.2444297244e-07 +UniRef50_Q02001 Anthranilate synthase component 1 0.00494325793434 0.00674714315246 0.00180388521812 +UniRef50_R6U3E2 0.000420439547187 0.00117314225555 0.000752702708363 +UniRef50_UPI0003B74FC2 cysteine ABC transporter ATP binding protein 2.30510851973e-06 1.91063263045e-06 -3.9447588928e-07 +UniRef50_F0VTI5 PAP2 superfamily protein 0.00316040102358 0.00137068093217 -0.00178972009141 +UniRef50_Q88U25 Phosphoribosylformylglycinamidine synthase 2 8.25343527651e-06 3.13155775601e-06 -5.1218775205e-06 +UniRef50_UPI0001FFDC7C ABC transporter related protein 7.1875849203e-06 8.99677473195e-06 1.80918981165e-06 +UniRef50_K7PC03 Protein ORF84 2.67753614348e-06 7.85273384581e-06 5.17519770233e-06 +UniRef50_UPI000262CF31 Inner membrane arginine ABC transporter permease 2.08036860788e-05 2.24806086464e-05 1.6769225676e-06 +UniRef50_UPI000471B2C3 shikimate dehydrogenase 3.72360970222e-05 2.98841186511e-05 -7.3519783711e-06 +UniRef50_UPI0004296A6B hypothetical protein 0.000254409842809 4.74171590767e-05 -0.000206992683732 +UniRef50_UPI0001746B76 phosphoesterase 0.000323008602159 5.70794340911e-05 -0.000265929168068 +UniRef50_M5M5H9 9.7681109195e-05 0.000119548765337 2.1867656142e-05 +UniRef50_Q17RH7 Putative protein TPRXL 9.75858962174e-06 0.000189929121446 0.000180170531824 +UniRef50_K5VC32 DbpA RNA binding domain protein 0.00102050253579 0.000193396277319 -0.000827106258471 +UniRef50_P0AGF5 D xylose proton symporter 0.00376501033886 0.00728549788606 0.0035204875472 +UniRef50_A5G222 Probable chemoreceptor glutamine deamidase CheD 0.000281929683594 4.07061121122e-05 -0.000241223571482 +UniRef50_D3QDT5 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 0.0177948409229 0.00408032911698 -0.0137145118059 +UniRef50_G0DXL2 0.000279619251005 0.00653873175753 0.00625911250653 +UniRef50_UPI00018506DA deaminase reductase 1.6408445698e-05 0.000183307190219 0.000166898744521 +UniRef50_P76197 Inner membrane transport protein YdiM 0.00352663138889 0.000422921676383 -0.00310370971251 +UniRef50_A0A036SNN0 0.00119922673337 0.000661156802679 -0.000538069930691 +UniRef50_A5URZ0 Acyl carrier protein 3.20604114223e-05 0.000427761578736 0.000395701167314 +UniRef50_UPI00030E7C94 2 hydroxychromene 2 carboxylate isomerase 7.6381222831e-05 4.82921907076e-05 -2.80890321234e-05 +UniRef50_Q3IW11 Transcriptional regulator, GntR family 0.00336050532178 0.00174465298557 -0.00161585233621 +UniRef50_A3PPE3 Transcriptional regulator, LysR family 0.00168406435424 0.00128892834653 -0.00039513600771 +UniRef50_UPI00047388A6 hypothetical protein 3.03055796526e-05 0.000137536690825 0.000107231111172 +UniRef50_Q9RUK6 Peptide methionine sulfoxide reductase MsrB 0.000562462718885 0.041807055848 0.0412445931291 +UniRef50_Q9RV85 0.000350606181596 0.0319835531981 0.0316329470165 +UniRef50_Q9RV87 7.86429143391e-05 0.00444088596534 0.004362243051 +UniRef50_O34962 Probable NAD dependent malic enzyme 4 0.00903731453972 0.00234722528041 -0.00669008925931 +UniRef50_A5ULC6 0.00249920729388 0.000202966807698 -0.00229624048618 +UniRef50_J7M8F1 Primosome assembly protein 0.00548627090681 0.00594719568269 0.00046092477588 +UniRef50_UPI0004743B0B hypothetical protein 0.000205983643093 0.00010050569844 -0.000105477944653 +UniRef50_UPI000287DB6E SAM dependent methyltransferase 4.94769690279e-05 0.000281221291895 0.000231744322867 +UniRef50_UPI00046CBCB9 hypothetical protein 0.000166328249934 9.1200999236e-05 -7.5127250698e-05 +UniRef50_UPI00026286FB diaminopimelate decarboxylase, partial 1.79958794677e-05 0.00031747480366 0.000299478924192 +UniRef50_J4ZBB1 Thi4 domain protein 3.97313451552e-05 0.000162506827182 0.000122775482027 +UniRef50_Q58375 Uroporphyrinogen III C methyltransferase 2.09263771411e-05 1.7510230878e-05 -3.4161462631e-06 +UniRef50_E6MV57 IS1016 transposase 0.00109956281708 0.0128961755162 0.0117966126991 +UniRef50_D6ANF2 3.27902413874e-05 2.80000050768e-05 -4.7902363106e-06 +UniRef50_P50620 Ribonucleoside diphosphate reductase subunit alpha 2.33207863585e-05 0.0105337450598 0.0105104242734 +UniRef50_A2WGI8 NAD+ synthase 4.44168475247e-05 0.000236254262592 0.000191837415067 +UniRef50_UPI00046AEE41 DNA primase 2.82310310588e-06 5.84930903287e-06 3.02620592699e-06 +UniRef50_F2D1Z4 Predicted protein 1.93701857578e-05 3.22336754564e-05 1.28634896986e-05 +UniRef50_D9XU96 Acyl CoA dehydrogenase 4.55893221618e-05 1.09510953345e-05 -3.46382268273e-05 +UniRef50_G7ZFF7 L sorbosone dehydrogenase 0.000169974953242 0.00814947524231 0.00797950028907 +UniRef50_A7G768 Xanthine uracil permease family protein 0.000617210715738 0.00228331498838 0.00166610427264 +UniRef50_Q2RKZ1 Leucine tRNA ligase 2.16391243741e-06 3.25280458312e-06 1.08889214571e-06 +UniRef50_X2H662 Phosphoserine phosphatase 0.000448506463151 0.00485508695572 0.00440658049257 +UniRef50_UPI00037ADDB6 hypothetical protein 0.000136399184889 9.34451728953e-05 -4.29540119937e-05 +UniRef50_V6AGZ8 0.00187106657422 0.00113820565751 -0.00073286091671 +UniRef50_UPI0003B424BE hypothetical protein 3.57916747669e-05 0.000243700266574 0.000207908591807 +UniRef50_UPI0004641C50 hypothetical protein 0.000183992753957 0.000183962771599 -2.9982358e-08 +UniRef50_UPI000476CD71 isopentenyl diphosphate delta isomerase 4.73997051056e-05 1.97167031782e-05 -2.76830019274e-05 +UniRef50_UPI00035C2722 hypothetical protein 5.90057664396e-06 4.35390849935e-06 -1.54666814461e-06 +UniRef50_UPI00046890BA hypothetical protein, partial 1.86430528546e-05 0.000119713313774 0.000101070260919 +UniRef50_A8ALR3 L carnitine gamma butyrobetaine antiporter 0.00285184827112 0.00101765236943 -0.00183419590169 +UniRef50_A0A017KTW4 5.62089307755e-05 5.0659646186e-05 -5.5492845895e-06 +UniRef50_A0QM11 8.06019904975e-05 6.38272764067e-05 -1.67747140908e-05 +UniRef50_B6IQY6 Sensor protein KdpD 9.84746802476e-05 6.81762305136e-05 -3.0298449734e-05 +UniRef50_Q6G7J6 UPF0340 protein SAS2017 0.0156920268588 0.00101874404479 -0.014673282814 +UniRef50_M5TC97 2.37826877082e-05 0.000785951750331 0.000762169062623 +UniRef50_UPI00036AD709 hypothetical protein 1.59772865959e-05 3.94836691946e-05 2.35063825987e-05 +UniRef50_O26153 Isopentenyl phosphate kinase 0.00231493231061 0.000499870145261 -0.00181506216535 +UniRef50_UPI00046CFDF2 hypothetical protein 1.29175491729e-06 3.74038496119e-06 2.4486300439e-06 +UniRef50_Q8ZN19 Pyridoxine 5 phosphate synthase 0.00308235140282 0.00429827166635 0.00121592026353 +UniRef50_Q720G3 Gamma glutamyl phosphate reductase 0.00702664100625 0.00598564018567 -0.00104100082058 +UniRef50_C7N3H3 Anion transporter 0.0237432144303 0.00452606239393 -0.0192171520364 +UniRef50_P00728 Thermophilic aminopeptidase 1 alpha chain 0.0259971018651 0.00576076226005 -0.0202363396051 +UniRef50_U5MQF0 Transporter YbhF 0.00147167979232 0.00061644321569 -0.00085523657663 +UniRef50_UPI00036FB801 hypothetical protein 8.46303742568e-05 2.00647899842e-05 -6.45655842726e-05 +UniRef50_Q1IZ80 Potassium proton antiporter regulatory subunit, CPA2 family 0.000248346045292 0.00615760034536 0.00590925430007 +UniRef50_Q51416 ATP dependent protease ATP binding subunit like protein AmiB 0.000102857217666 0.000200214715383 9.7357497717e-05 +UniRef50_C3YC75 7.12178172882e-07 1.29775847779e-05 1.2265406605e-05 +UniRef50_UPI0002492D8D transketolase 1.39747773338e-05 3.99072219756e-06 -9.98405513624e-06 +UniRef50_UPI0003EB3D8F hypothetical protein 3.1132416975e-05 2.03299058961e-05 -1.08025110789e-05 +UniRef50_UPI000255D367 30S ribosomal protein S3 0.000272568388437 0.0008342153111 0.000561646922663 +UniRef50_UPI0003B5823D dihydrolipoamide succinyltransferase 8.02500430363e-06 7.28996358487e-05 6.48746315451e-05 +UniRef50_I7B1F5 TRZ ATZ atrazine degradation family enzyme 0.000709962959227 0.0019546252697 0.00124466231047 +UniRef50_I6Q147 IS861, transposase OrfB 0.000341354307019 4.40172007309e-05 -0.000297337106288 +UniRef50_UPI00037D6715 hypothetical protein 3.31050893557e-05 8.70666870102e-06 -2.43984206547e-05 +UniRef50_D4HDK2 Transporter, anaerobic C4 dicarboxylate uptake family 9.44502057218e-05 0.00591509023624 0.00582064003052 +UniRef50_Q5HQV6 0.00336412819943 0.000757222321012 -0.00260690587842 +UniRef50_Q94BZ7 DNA gyrase subunit B, mitochondrial 2.23729522668e-06 2.29406004848e-05 2.07033052581e-05 +UniRef50_P50840 Putative RNA methyltransferase YpsC 0.00533417924636 0.00512598869241 -0.00020819055395 +UniRef50_UPI0004728778 hypothetical protein 1.05616600714e-05 1.86145888181e-05 8.0529287467e-06 +UniRef50_A7FVN3 Carbon monoxide dehydrogenase 0.000143215453489 0.000722702766858 0.000579487313369 +UniRef50_L0GY09 AAA+ family ATPase 0.000288585029476 0.000140515482254 -0.000148069547222 +UniRef50_A6LVS2 Restriction endonuclease 0.000146075327188 0.000951492496194 0.000805417169006 +UniRef50_P66717 Probable DNA directed RNA polymerase subunit delta 0.00768516023522 0.0100705323525 0.00238537211728 +UniRef50_W5XBG0 Leucyl phenylalanyl tRNA protein transferase 1.77021805482e-05 0.000115772129991 9.80699494428e-05 +UniRef50_R8ZDY1 0.00022010844831 0.000201352299003 -1.8756149307e-05 +UniRef50_UPI000477AEDD pseudouridine synthase 9.91005262121e-05 2.05999857157e-05 -7.85005404964e-05 +UniRef50_X7E4C5 4.58701515345e-05 9.3596353762e-06 -3.65105161583e-05 +UniRef50_A6M139 von Willebrand factor, type A 0.000305807775304 0.00103322539793 0.000727417622626 +UniRef50_B7NKV9 Phosphoheptose isomerase 5.02882655277e-05 1.4970082601e-05 -3.53181829267e-05 +UniRef50_B9TEU6 1.50750497351e-05 0.000150617567623 0.000135542517888 +UniRef50_E8SHT3 Chromosome partitioning protein ParB Stage 0 sporulation protein J 0.0312267521535 0.00652912722147 -0.024697624932 +UniRef50_M9V8S5 Cellulase 0.000107443829842 0.00581875691343 0.00571131308359 +UniRef50_C3X191 1.77338467117e-05 1.63269972066e-05 -1.4068495051e-06 +UniRef50_X5DRB4 ABC type iron transporter, substrate binding lipoprotein 1.09437970387e-05 9.90725946941e-05 8.81287976554e-05 +UniRef50_Q3J5T4 50S ribosomal protein L11 0.139199499904 0.00245855772567 -0.136740942178 +UniRef50_P09099 Xylulose kinase 0.0026972184793 0.00146402956113 -0.00123318891817 +UniRef50_N8HI80 8.3782591309e-06 1.40835601794e-05 5.7053010485e-06 +UniRef50_W0YQ62 Fusaric acid resistance protein 5.36709936769e-05 9.80033313642e-05 4.43323376873e-05 +UniRef50_Z5X6F0 1.57932355862e-05 8.41816912623e-05 6.83884556761e-05 +UniRef50_L9IFJ0 BFD like [2Fe 2S] binding domain protein 0.000468741420051 4.30032067258e-06 -0.000464441099378 +UniRef50_Q031D5 Phosphoserine aminotransferase 0.000156850133866 0.000191629184058 3.4779050192e-05 +UniRef50_UPI000362AEF0 hypothetical protein 1.50753902652e-05 0.000203325586753 0.000188250196488 +UniRef50_G3W4Q5 0.00128363144715 4.50138816053e-05 -0.00123861756554 +UniRef50_W7X105 0.000224249102288 0.000315284738642 9.1035636354e-05 +UniRef50_F5M0G6 Response regulator receiver SARP domain containing protein 0.00195037146735 0.00168540739684 -0.00026496407051 +UniRef50_UPI00035E64FF hypothetical protein 5.32328295747e-06 1.62396901007e-05 1.09164071432e-05 +UniRef50_UPI00036BE8CD hypothetical protein 1.7294366263e-06 9.68483347305e-05 9.51188981042e-05 +UniRef50_UPI00031F67D7 hypothetical protein 8.93106652698e-05 2.62825054253e-05 -6.30281598445e-05 +UniRef50_E8NRV4 0.000104195027678 1.85279536345e-05 -8.56670740435e-05 +UniRef50_UPI0003B36054 riboflavin synthase subunit alpha 2.42622503288e-05 1.64145938764e-05 -7.8476564524e-06 +UniRef50_K7VT43 2.95483217934e-05 5.14123792077e-05 2.18640574143e-05 +UniRef50_UPI00037E7D3D hypothetical protein, partial 0.000179703098997 0.00043565151384 0.000255948414843 +UniRef50_UPI00037D2DA0 hypothetical protein 0.000535347739285 9.5400475928e-05 -0.000439947263357 +UniRef50_UPI0003B493CA pseudouridine synthase 4.3335336747e-05 3.77493923411e-05 -5.5859444059e-06 +UniRef50_UPI00047DB330 D ala D ala transporter subunit 8.58580204115e-06 2.43048664741e-06 -6.15531539374e-06 +UniRef50_P54616 Enoyl [acyl carrier protein] reductase [NADH] FabI 5.62826971963e-06 0.00139797536062 0.0013923470909 +UniRef50_UPI000478BABE ferredoxin 1.2684503966e-05 0.000131575319965 0.000118890815999 +UniRef50_UPI0002E03FC6 hemolysin 3.13871470419e-05 1.05624215414e-05 -2.08247255005e-05 +UniRef50_UPI000364F5FC hypothetical protein 2.51481312238e-06 5.56167962231e-06 3.04686649993e-06 +UniRef50_UPI00037C05D9 hypothetical protein 1.77706551968e-05 1.18508993887e-05 -5.9197558081e-06 +UniRef50_UPI000463A1BE homoserine acetyltransferase 5.18384990836e-06 8.33814908584e-06 3.15429917748e-06 +UniRef50_A8F1A5 UDP glucose 4 epimerase 0.000192021386452 0.00466732232783 0.00447530094138 +UniRef50_F3FFT1 4.4757718709e-05 3.94813210547e-05 -5.2763976543e-06 +UniRef50_UPI00047AA814 hypothetical protein 4.15318109155e-06 5.51937610675e-06 1.3661950152e-06 +UniRef50_Q5LW04 Membrane protein, putative 0.000302796247737 0.00024781821415 -5.4978033587e-05 +UniRef50_UPI0003011CF5 hypothetical protein 2.0248256611e-05 2.31716765808e-05 2.9234199698e-06 +UniRef50_A3SLT2 Glutamate dehydrogenase 0.000171567865821 0.000242204169826 7.0636304005e-05 +UniRef50_A0A031UV61 1.90007455242e-05 3.13777964902e-05 1.2377050966e-05 +UniRef50_UPI0004653811 hypothetical protein 1.10435478887e-05 7.27103291112e-05 6.16667812225e-05 +UniRef50_Q8CP59 Probable elastin binding protein EbpS 0.00832140351875 0.00411289250804 -0.00420851101071 +UniRef50_UPI000248CD16 PTS system mannitol specific transporter subunit IICBA 1.61649916398e-06 1.44637478462e-05 1.28472486822e-05 +UniRef50_P05342 Homocitrate synthase 4.8631366005e-06 9.47718844693e-06 4.61405184643e-06 +UniRef50_Q8DT75 ATP dependent helicase deoxyribonuclease subunit B 0.00544756823373 0.00133373849452 -0.00411382973921 +UniRef50_UPI00029A0230 SecA DEAD domain containing protein 3.26174459568e-06 3.54871092945e-06 2.8696633377e-07 +UniRef50_H3ZCT1 Putative periplasmic ligand binding sensor protein 3.20883108606e-06 0.000276936061859 0.000273727230773 +UniRef50_B2V582 Purine nucleoside phosphorylase 0.00051921673785 0.00231032794423 0.00179111120638 +UniRef50_A6LX49 Nitroreductase 0.000641407587853 0.000260190929686 -0.000381216658167 +UniRef50_V5VAK2 0.000152618491829 0.00664637599475 0.00649375750292 +UniRef50_UPI0003B47659 DNA helicase 1.21175537429e-05 0.000118152969606 0.000106035415863 +UniRef50_Q9RS08 0.000402228976927 0.0469619058344 0.0465596768575 +UniRef50_Q1J0I2 Acid phosphatase vanadium dependent haloperoxidase related protein 0.00170958961568 0.0639888977144 0.0622793080987 +UniRef50_Q5HN66 A G specific adenine glycosylase 0.0184575329324 0.00461918443987 -0.0138383484925 +UniRef50_C1CXG1 50S ribosomal protein L22 0.000281705961835 0.0501256812034 0.0498439752416 +UniRef50_UPI0003620A7F hypothetical protein 0.000105606761919 7.01492749984e-06 -9.85918344192e-05 +UniRef50_UPI0004797B60 DeoR faimly transcriptional regulator 5.3413347157e-05 1.10351678542e-05 -4.23781793028e-05 +UniRef50_X2GNE3 Aconitate hydratase 0.00443205394011 0.00112474200306 -0.00330731193705 +UniRef50_UPI00037C28A3 hypothetical protein 4.32363707923e-06 8.06105387024e-06 3.73741679101e-06 +UniRef50_Q5LZ45 Sensor histidine kinase 0.00439994047338 0.0018470820442 -0.00255285842918 +UniRef50_I2BMM3 SAM dependent methyltransferase 0.000384771425101 0.000166688638861 -0.00021808278624 +UniRef50_S7N8D9 0.000373755414128 3.34874094057e-05 -0.000340268004722 +UniRef50_E8SP16 1.55110952123e-05 0.000156440820615 0.000140929725403 +UniRef50_Q8REV7 Phosphoribosylamine glycine ligase 9.08874772519e-05 0.000914931261758 0.000824043784506 +UniRef50_UPI0003B37A7B transporter 1.87929490226e-06 0.000869383380526 0.000867504085624 +UniRef50_F4CM54 Diguanylate cyclase 6.43618596827e-06 4.93578890273e-05 4.2921703059e-05 +UniRef50_A6TW03 Methyltransferase type 12 0.000393214571719 0.00031031527691 -8.2899294809e-05 +UniRef50_UPI00046554AE elongation factor G 2.01910224572e-05 2.32991741404e-05 3.1081516832e-06 +UniRef50_P0A4L9 DNA gyrase subunit B 0.00556501643766 0.0062609292251 0.00069591278744 +UniRef50_UPI00037BCC78 hypothetical protein, partial 2.2779567868e-05 0.000431735614614 0.000408956046746 +UniRef50_L7UJT3 6.62226477192e-05 3.85196216903e-05 -2.77030260289e-05 +UniRef50_Q3YS50 2.29729563673e-05 3.15660806463e-05 8.593124279e-06 +UniRef50_A5UN86 Multidrug efflux permease, AraJ 0.00293176708695 0.00138452720838 -0.00154723987857 +UniRef50_S1EZD1 4.73953884703e-06 7.8571192103e-06 3.11758036327e-06 +UniRef50_Q5NXH9 6.36874448383e-06 1.49562425541e-05 8.58749807027e-06 +UniRef50_I2BZE4 0.000371565410131 0.000599477717425 0.000227912307294 +UniRef50_Q49Z78 0.0197913509673 0.00457283060761 -0.0152185203597 +UniRef50_X1RRN3 Marine sediment metagenome DNA, contig 6.31818709492e-05 0.000143842335682 8.06604647328e-05 +UniRef50_A7ZMU3 Probable manganese efflux pump MntP 0.00509427093074 0.000358684257326 -0.00473558667341 +UniRef50_S1S3U4 Integral membrane protein 5.52870625181e-05 0.000186513655394 0.000131226592876 +UniRef50_L0DFT8 Arabinose efflux permease family protein 0.00137966711738 0.00735236310614 0.00597269598876 +UniRef50_UPI0003B3A02D AraC family transcriptional regulator 7.53321879241e-06 7.85397458351e-06 3.207557911e-07 +UniRef50_Q28W31 Transcriptional regulator PpsR 0.00498328705518 0.0013535030926 -0.00362978396258 +UniRef50_A5UN34 Molybdopterin guanine dinucleotide biosynthesis protein B, MobB 0.00276129094823 0.000176484086778 -0.00258480686145 +UniRef50_Q2FDU6 Dehydrosqualene desaturase 0.0128623149623 0.00248397643887 -0.0103783385234 +UniRef50_A5CVR1 Imidazoleglycerol phosphate dehydratase 0.000131182725299 5.74004032043e-05 -7.37823220947e-05 +UniRef50_UPI000315C86E DNA invertase 7.33618185325e-05 1.99707840675e-05 -5.3391034465e-05 +UniRef50_P25536 Maf like protein YhdE 0.00178248514857 0.000364588524928 -0.00141789662364 +UniRef50_A6VCY0 Oxaloacetate decarboxylase 0.000914495448893 0.00034123904243 -0.000573256406463 +UniRef50_UPI00046D7227 ABC transporter permease 0.000228637083251 1.06805459259e-05 -0.000217956537325 +UniRef50_P0A992 Fructose bisphosphate aldolase class 1 0.0022035207065 0.0072797821002 0.0050762613937 +UniRef50_S6D840 Cobaltochelatase CobT 0.0041970248918 0.000430193727675 -0.00376683116413 +UniRef50_C0Q8E7 Phosphoserine phosphatase 0.000100107597085 4.53009638529e-05 -5.48066332321e-05 +UniRef50_D8UBN5 9.78287868212e-07 3.71463864838e-06 2.73635078017e-06 +UniRef50_A0A016UJ97 1.51097878153e-05 4.24544446883e-05 2.7344656873e-05 +UniRef50_UPI000368D600 hypothetical protein, partial 4.75644027597e-05 2.57494580698e-05 -2.18149446899e-05 +UniRef50_Q898U2 BmrU protein 0.000392033178228 0.00108389657175 0.000691863393522 +UniRef50_D4KWU8 N methylhydantoinase A acetone carboxylase, beta subunit 0.000607632576895 0.00119768719334 0.000590054616445 +UniRef50_Y3F751 0.00291254428598 0.00220106542379 -0.00071147886219 +UniRef50_V4J8H7 9.69955197423e-05 2.84758717061e-05 -6.85196480362e-05 +UniRef50_C6STY1 0.000712237714815 0.00902927955779 0.00831704184297 +UniRef50_N2KV62 Transposase IS66 family protein 2.36924537972e-05 4.95077337218e-05 2.58152799246e-05 +UniRef50_A3SMT4 1.56208431973e-05 1.70246624926e-05 1.4038192953e-06 +UniRef50_UPI000466B777 hypothetical protein 3.88576144811e-06 9.21973416065e-06 5.33397271254e-06 +UniRef50_UPI0003B73659 ActP protein 4.11618274984e-06 1.41510955897e-05 1.00349128399e-05 +UniRef50_UPI00035C4E49 hypothetical protein 6.25847185931e-05 1.59562263036e-05 -4.66284922895e-05 +UniRef50_P0ADT1 0.00488768768869 0.00141347723508 -0.00347421045361 +UniRef50_UPI00047198FB DNA resolvase 7.28311414477e-05 1.59390613568e-05 -5.68920800909e-05 +UniRef50_Q899S7 DNA replication and repair protein RecF 0.0006763645327 0.00141605365713 0.00073968912443 +UniRef50_UPI0003AA2F1C 3 phosphoglycerate dehydrogenase 1.04137488984e-05 1.13390022492e-05 9.252533508e-07 +UniRef50_X0YNP2 Marine sediment metagenome DNA, contig 2.39197256315e-05 1.98911126115e-05 -4.02861302e-06 +UniRef50_UPI0003B51ADA thiamine biosynthesis protein ThiF 3.92554490032e-06 8.70939792351e-06 4.78385302319e-06 +UniRef50_UPI000406D91D phosphoserine phosphatase 3.42244562327e-05 6.07913087523e-05 2.65668525196e-05 +UniRef50_R4HZ48 23S rRNA methyltransferase RlmB 0.000313700267745 0.000280808277526 -3.2891990219e-05 +UniRef50_A0A023X8D6 Transposase 2.41392996845e-05 4.23488168073e-05 1.82095171228e-05 +UniRef50_U3T6T2 Polyhydroxyalkanoate granule associated protein 0.000249440080738 0.00295753664493 0.00270809656419 +UniRef50_C5D8K3 Phosphopantetheine adenylyltransferase 0.0176856415322 0.00470212160973 -0.0129835199225 +UniRef50_Z5X3K7 4.44620384411e-05 4.95234013065e-05 5.0613628654e-06 +UniRef50_Q9RYU4 NADH dehydrogenase (quinone) 0.00197831249177 0.0374013551242 0.0354230426324 +UniRef50_K2JGC9 9.43039741426e-06 5.46046255034e-06 -3.96993486392e-06 +UniRef50_Q9HVN8 0.000498204428157 0.000609298553289 0.000111094125132 +UniRef50_UPI0001C36F9A outer membrane adhesin like proteiin 4.87196884402e-06 1.42788262073e-05 9.40685736328e-06 +UniRef50_Q83GU1 7.09555827168e-06 8.1462065439e-05 7.43665071673e-05 +UniRef50_Q88NC4 GDP mannose 6 dehydrogenase 0.00100198839707 0.000220588117478 -0.000781400279592 +UniRef50_Q88WV4 Formamidopyrimidine DNA glycosylase 6.39387554937e-06 7.81622064859e-05 7.17683309365e-05 +UniRef50_D2TWU4 0.000177364466731 0.00267394014239 0.00249657567566 +UniRef50_A8AYT3 Potassium uptake protein, Trk family 0.00460954114003 0.00416797741363 -0.0004415637264 +UniRef50_O49506 Peroxisomal 2 hydroxy acid oxidase GLO5 3.97615820661e-06 0.000107291263378 0.000103315105171 +UniRef50_UPI00047A69B8 hypothetical protein 2.8617229111e-05 0.00012517339914 9.6556170029e-05 +UniRef50_P50853 Riboflavin biosynthesis protein RibD 1.48386375156e-05 4.72822340835e-05 3.24435965679e-05 +UniRef50_UPI0004730689 hypothetical protein, partial 2.62806251686e-05 5.72765848892e-05 3.09959597206e-05 +UniRef50_B1MXB4 Endonuclease MutS2 2.58757112327e-06 0.000948705011713 0.00094611744059 +UniRef50_U3UA35 Regulatory protein HrpB 1.43960835534e-05 2.02697542598e-05 5.8736707064e-06 +UniRef50_R7CL39 Extracellular solute binding protein family 3 0.00172359154281 0.0168070132897 0.0150834217469 +UniRef50_X1YEM9 1.14352887451e-05 8.12399341433e-06 -3.31129533077e-06 +UniRef50_V7EI41 3.20806774711e-05 3.41938576822e-05 2.1131802111e-06 +UniRef50_UPI0003705056 MULTISPECIES 0.000202149123024 0.000240647570781 3.8498447757e-05 +UniRef50_W8RSY4 Flp pilus assembly protein, pilin Flp 0.000128139089152 6.63471904157e-05 -6.17918987363e-05 +UniRef50_F8DIB1 0.000125186641126 8.58503344326e-05 -3.93363066934e-05 +UniRef50_A3V3M4 0.000110756626356 1.85691506338e-05 -9.21874757222e-05 +UniRef50_D0IU34 Transcriptional regulator of hydrogenase activity 0.000274362718687 0.00482883478871 0.00455447207002 +UniRef50_H7FEN7 0.000103253641383 0.000170908076434 6.7654435051e-05 +UniRef50_U3T2L8 Pirin like protein 0.000266227850401 0.0105316599056 0.0102654320552 +UniRef50_A6M260 ABC transporter related 0.000241033780736 0.00148307726135 0.00124204348061 +UniRef50_M2FX18 SAM dependent methyltransferase 0.00493382475933 0.00167482768286 -0.00325899707647 +UniRef50_D2RBW1 5.41238533916e-06 1.33656198187e-05 7.95323447954e-06 +UniRef50_D3E362 0.000871121512734 0.00100107357693 0.000129952064196 +UniRef50_G0DS16 LacI family transcriptional regulator 0.000742693016305 0.00613529355479 0.00539260053849 +UniRef50_E8QV25 7.25934593918e-05 0.00535058891104 0.00527799545165 +UniRef50_D9RQI3 Immunoglobulin G binding protein A 0.0034698789783 0.000618782833145 -0.00285109614516 +UniRef50_T2G7U7 Putative integral membrane protein MviN 1.33878022641e-05 6.22318278124e-06 -7.16461948286e-06 +UniRef50_A4ECQ1 5.87199597557e-06 2.49175115395e-05 1.90455155639e-05 +UniRef50_R4K2P7 Demethylmenaquinone methyltransferase 0.000161089326681 0.000663957401703 0.000502868075022 +UniRef50_UPI00035F2BDC hypothetical protein 6.08295075518e-05 0.000443161534345 0.000382332026793 +UniRef50_A6LSN9 GTP sensing transcriptional pleiotropic repressor CodY 0.000261537636621 0.00115593245281 0.000894394816189 +UniRef50_Q3JUU4 3.44432256858e-05 3.52605845544e-05 8.173588686e-07 +UniRef50_S5Y2G0 Alpha beta fold family hydrolase 0.000382076712572 0.000349487225087 -3.2589487485e-05 +UniRef50_E6UYE2 Oxidoreductase FAD NAD binding domain protein 0.000601039619697 0.000747728237143 0.000146688617446 +UniRef50_UPI00035F6127 hypothetical protein 1.42965623319e-05 1.75641537002e-05 3.2675913683e-06 +UniRef50_B7H179 Ferric alcaligin E 0.000111116962251 0.00587061348075 0.0057594965185 +UniRef50_UPI00026CA76F BLUF domain containing protein 0.000618829489919 0.00048412574623 -0.000134703743689 +UniRef50_B8GLJ6 5.06914610605e-06 7.61157111904e-06 2.54242501299e-06 +UniRef50_M0UCQ8 1.34906592086e-05 9.58278742817e-06 -3.90787178043e-06 +UniRef50_Q08UF6 0.000153019626108 0.000242228329614 8.9208703506e-05 +UniRef50_UPI00041CAC19 hypothetical protein 4.45821545997e-05 6.47006920291e-05 2.01185374294e-05 +UniRef50_A0A031I5W8 0.000100022465565 7.11707566996e-05 -2.88517088654e-05 +UniRef50_UPI0004750092 HAD family hydrolase 1.87616251786e-05 8.391742689e-05 6.51558017114e-05 +UniRef50_UPI00037547C0 hypothetical protein 1.83986028447e-05 6.90023971584e-06 -1.14983631289e-05 +UniRef50_D1ABT4 Transglutaminase domain protein 1.34278610735e-05 0.00011450204973 0.000101074188656 +UniRef50_S5XRZ9 0.000923024188812 0.00128450442334 0.000361480234528 +UniRef50_P27297 Protein bax 0.00106261850832 0.000281254004947 -0.000781364503373 +UniRef50_T2HU52 Conjugal transfer protein 0.000111334675313 2.06750274623e-05 -9.06596478507e-05 +UniRef50_H8GVP7 Alpha amylase 0.000159635914759 0.0355316863556 0.0353720504408 +UniRef50_F2HR75 0.0148041826021 0.00308156561942 -0.0117226169827 +UniRef50_P64274 Transcription elongation factor GreB 0.000952940513262 0.000482806602495 -0.000470133910767 +UniRef50_Q72TM7 Potassium transporting ATPase A chain 8.07216730493e-06 0.00177626566707 0.00176819349977 +UniRef50_UPI00041218DC peptide ABC transporter permease 9.62446188e-05 5.72898347339e-05 -3.89547840661e-05 +UniRef50_UPI0003B710BC hypothetical protein 1.69493399885e-05 8.59529015332e-06 -8.35404983518e-06 +UniRef50_UPI00036FA209 hypothetical protein 3.62913594103e-06 7.23494307578e-06 3.60580713475e-06 +UniRef50_UPI000478D470 hypothetical protein 6.16373838133e-06 3.42092625119e-06 -2.74281213014e-06 +UniRef50_Q92DC2 Serine protein kinase RsbW 0.000110395991086 0.00122367210878 0.00111327611769 +UniRef50_Q5LYH1 Dihydroxy acid dehydratase 0.00806699910533 0.00585520457941 -0.00221179452592 +UniRef50_B9TGU7 1.90328162922e-05 5.33660813462e-05 3.4333265054e-05 +UniRef50_Q57NQ3 3.21125959461e-05 4.21344363879e-05 1.00218404418e-05 +UniRef50_A6LS38 Tetratricopeptide TPR_2 repeat protein 0.000119836821857 0.00213865178833 0.00201881496647 +UniRef50_B8ZNP1 Pantothenate kinase 0.00336509900168 0.00696482045516 0.00359972145348 +UniRef50_UPI00036C732F magnesium chelatase 1.2000624151e-05 2.70249066739e-05 1.50242825229e-05 +UniRef50_P25549 Arylsulfatase 0.00175430262597 0.00167989585173 -7.440677424e-05 +UniRef50_P75800 Putative cyclic di GMP phosphodiesterase YliE 0.00303515835543 0.00101305015105 -0.00202210820438 +UniRef50_S5MYM7 Phosphoserine phosphatase 0.000100107597085 4.53009638529e-05 -5.48066332321e-05 +UniRef50_UPI0002490F21 branched chain amino acid transporter II carrier protein 7.5299879238e-06 5.5820500607e-06 -1.9479378631e-06 +UniRef50_A6LYA1 Phage replisome organizer, putative 0.000187803974553 0.000940180338959 0.000752376364406 +UniRef50_D2U1P2 0.000101242092128 5.28209841651e-05 -4.84211079629e-05 +UniRef50_Q30UY1 0.0107188839784 0.00118377522267 -0.00953510875573 +UniRef50_UPI00038283FF 30S ribosomal protein S17 4.2042186347e-05 0.000236765376889 0.000194723190542 +UniRef50_K2A1K8 0.00293801491532 0.000566609276111 -0.00237140563921 +UniRef50_Q3JTY3 6.58405794467e-05 0.00015316518423 8.73246047833e-05 +UniRef50_P74587 Carbamoyl phosphate synthase small chain 2.25891074973e-05 6.75934614756e-06 -1.58297613497e-05 +UniRef50_M5NSU4 Membrane protein 1.13951041875e-05 3.81468351799e-05 2.67517309924e-05 +UniRef50_UPI0003B53AE0 hypothetical protein 5.32401572573e-06 8.29746762091e-06 2.97345189518e-06 +UniRef50_Q21NS8 Lipid A export ATP binding permease protein MsbA 8.46198254108e-06 4.87887184377e-06 -3.58311069731e-06 +UniRef50_UPI00036998C6 hypothetical protein 4.28937362125e-05 6.58143157671e-06 -3.63123046358e-05 +UniRef50_Q1IJT2 Adenylosuccinate synthetase 3.86785327876e-06 1.17854259033e-05 7.91757262454e-06 +UniRef50_UPI000378226F hypothetical protein 2.82236688363e-06 3.99012689755e-05 3.70789020919e-05 +UniRef50_Q2NFZ1 Digeranylgeranylglycerophospholipid reductase 1 0.00334050099115 0.00413212017908 0.00079161918793 +UniRef50_A7FD15 Glutamate racemase 0.000733372697701 0.000642242449804 -9.1130247897e-05 +UniRef50_Q5E8X7 3 ketoacyl CoA thiolase 0.00338575586643 0.00623721539973 0.0028514595333 +UniRef50_F0MDS8 Ribonuclease E 0.000133680915218 0.00433833136964 0.00420465045442 +UniRef50_Q9Z7H0 Uridine kinase 1.34863350197e-05 0.000195542275674 0.000182055940654 +UniRef50_UPI000467A3EC cupin 6.5150823885e-05 2.17184232814e-05 -4.34324006036e-05 +UniRef50_P0ACE1 Hydrogenase 2 large chain 0.00312555124396 0.00105664377758 -0.00206890746638 +UniRef50_UPI000468F1F3 hypothetical protein, partial 0.000157690144949 7.70389166955e-05 -8.06512282535e-05 +UniRef50_G4LC92 0.00204913533208 0.00167882825218 -0.0003703070799 +UniRef50_UPI00031A1A33 hypothetical protein 6.20886911887e-06 5.44192420364e-06 -7.6694491523e-07 +UniRef50_Q28K97 Taurine import ATP binding protein TauB 8.52049955463e-06 1.03504839523e-05 1.82998439767e-06 +UniRef50_Q9RUX9 0.00135496000475 0.05068317117 0.0493282111652 +UniRef50_M5R129 Bacteriophage replication 0.000189809794024 0.000466120556427 0.000276310762403 +UniRef50_G6Y6C6 0.000565882778137 4.60710263245e-05 -0.000519811751812 +UniRef50_P73016 Enoyl [acyl carrier protein] reductase [NADH] FabI 4.24505095136e-06 3.36347104132e-05 2.93896594618e-05 +UniRef50_P0ACH9 Melibiose operon regulatory protein 0.00313230269599 0.001129102604 -0.00200320009199 +UniRef50_UPI0003770906 membrane protein 1.23209880843e-05 1.57441250441e-05 3.4231369598e-06 +UniRef50_UPI00035D9DA9 hypothetical protein 1.23990260685e-05 0.000361596057602 0.000349197031533 +UniRef50_O76511 Thymidylate synthase 2.85302606085e-05 0.00020927438731 0.000180744126702 +UniRef50_G5FKI8 0.000172487459061 0.000114070981381 -5.841647768e-05 +UniRef50_UPI00016C4DB7 branched chain amino acid transport ATP binding protein 8.70191304705e-06 0.000146093730295 0.000137391817248 +UniRef50_UPI0003B40598 major facilitator transporter 5.70262590183e-06 1.99305033888e-05 1.4227877487e-05 +UniRef50_UPI00039F2091 potassium transporter 1.47779598854e-05 1.56416817285e-05 8.637218431e-07 +UniRef50_E3H4N2 Periplasmic binding protein 7.79552935173e-06 0.000119523794993 0.000111728265641 +UniRef50_UPI00047150D6 hypothetical protein 2.90893697153e-05 0.000356278564807 0.000327189195092 +UniRef50_UPI00036C6373 tail fiber protein 7.32124326048e-06 2.33857953437e-05 1.60645520832e-05 +UniRef50_UPI0004728F0C DNA mismatch repair protein MutL 2.68462120821e-06 7.08654306481e-06 4.4019218566e-06 +UniRef50_UPI00041001CB hypothetical protein 4.25877151765e-06 7.66636522004e-06 3.40759370239e-06 +UniRef50_K7U6X3 0.000105882543757 4.17777703601e-05 -6.41047733969e-05 +UniRef50_U3SR01 0.00450294280596 0.00250711205447 -0.00199583075149 +UniRef50_C7DF61 Chemotactic signal response protein, putative 0.000115145333304 5.88924754004e-05 -5.62528579036e-05 +UniRef50_A0A023RXZ9 Peptide transporter 0.0001265990815 0.00710388697802 0.00697728789652 +UniRef50_A6M202 Nitroreductase 0.00174224302547 0.000799065265672 -0.000943177759798 +UniRef50_A9MD69 0.000948433294362 0.00927165299754 0.00832321970318 +UniRef50_Q3JNQ1 0.000202622699755 6.0076060546e-05 -0.000142546639209 +UniRef50_B1ZHY8 Pyridoxal 5 phosphate dependent protein beta subunit 0.000144169711234 0.000986511342191 0.000842341630957 +UniRef50_R5HQZ2 TRAP transporter DctM subunit tripartite ATP independent periplasmic transporter solute receptor DctP family 9.69309895129e-05 2.43438350076e-05 -7.25871545053e-05 +UniRef50_D2NLM2 Transcriptional regulator 0.000580579479589 0.000498212180715 -8.2367298874e-05 +UniRef50_UPI0003B4984E trehalose phosphatase 3.34519271892e-05 2.59270922195e-05 -7.5248349697e-06 +UniRef50_D8JJA0 Flavodoxin reductase family protein 1 0.000274571937307 0.00533207792291 0.0050575059856 +UniRef50_UPI0003B42639 heme ABC transporter ATPase 3.27566694672e-05 4.87882166355e-06 -2.78778478037e-05 +UniRef50_UPI00029ADE28 50S ribosomal protein L22 2.04437180746e-05 0.000358998688252 0.000338554970177 +UniRef50_D7DK39 2.54757879259e-05 1.74232323308e-05 -8.0525555951e-06 +UniRef50_UPI00037A6F5F hypothetical protein 1.68998196174e-05 2.15474190506e-05 4.6475994332e-06 +UniRef50_UPI0003642305 hypothetical protein 7.99728443918e-06 3.10902035097e-05 2.30929190705e-05 +UniRef50_UPI0003C7E218 hypothetical protein 2.29239941168e-05 5.72700117241e-05 3.43460176073e-05 +UniRef50_UPI000415A98C 3 hexulose 6 phosphate synthase 1.23292102048e-05 1.93882407166e-05 7.0590305118e-06 +UniRef50_Q8E7H3 Sensory transduction protein LytR 0.00360408532593 0.00238520267181 -0.00121888265412 +UniRef50_Q9RTV3 0.000365034324106 0.0480658044284 0.0477007701043 +UniRef50_F3GAC2 0.000171494568023 0.000179416010205 7.921442182e-06 +UniRef50_Q04440 Cytochrome c oxidase subunit 1 2.59521030308e-05 0.000349753103289 0.000323801000258 +UniRef50_Q4L7K3 UPF0421 protein SH1063 0.0181001297953 0.00404296698988 -0.0140571628054 +UniRef50_Q8CMQ2 Alkyl hydroperoxide reductase subunit C 0.0148373139772 0.00562444751678 -0.00921286646042 +UniRef50_UPI00016C50A5 N acetylmuramic acid 6 phosphate etherase 2.58224168548e-06 5.63091977782e-06 3.04867809234e-06 +UniRef50_UPI00047D14DB cytochrome C oxidase assembly protein 9.61856960834e-06 2.45828268555e-05 1.49642572472e-05 +UniRef50_T1CPC3 Magnesium protoporphyrin chelatase 5.69763612556e-05 0.000650460967098 0.000593484605842 +UniRef50_R0ZN34 0.000140678008262 0.00268628883158 0.00254561082332 +UniRef50_M8Q184 Prophage tail length tape measure family protein 0.000100842205389 0.000181919941603 8.1077736214e-05 +UniRef50_Q3M244 Phosphoribosyl AMP cyclohydrolase 3.64084507058e-05 1.58070497219e-05 -2.06014009839e-05 +UniRef50_UPI000360A98B hypothetical protein, partial 9.1832894984e-05 0.000242974782543 0.000151141887559 +UniRef50_V9R1X9 Acriflavine resistance protein B 0.000922042096269 0.000249875192007 -0.000672166904262 +UniRef50_Q6G3Y9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.0225879710182 0.00387876723162 -0.0187092037866 +UniRef50_P42405 3 hexulose 6 phosphate synthase 0.00963742585113 0.000956843054258 -0.00868058279687 +UniRef50_U3STF6 0.00781270110667 0.00156730461903 -0.00624539648764 +UniRef50_Q5HKV0 Indole 3 pyruvate decarboxylase 0.0212264419487 0.00595358167122 -0.0152728602775 +UniRef50_Q5HRL9 RNA polymerase sigma factor sigW, putative 0.00457115858125 0.00135766533028 -0.00321349325097 +UniRef50_UPI0003B61754 transporter 2.54202769767e-05 3.05085050717e-05 5.088228095e-06 +UniRef50_A3PHJ2 5.9772306434e-05 0.000401791435631 0.000342019129197 +UniRef50_A7X0F5 Na H(+) antiporter subunit G1 0.00935111552297 0.0129056256333 0.00355451011033 +UniRef50_UPI00039FEC41 hypothetical protein 5.31610297012e-06 3.30064596023e-06 -2.01545700989e-06 +UniRef50_Q89P04 Blr3679 protein 0.0134067948307 0.00378137333201 -0.00962542149869 +UniRef50_Q8XZP8 Sulfate thiosulfate import ATP binding protein CysA 8.11692831193e-05 0.0015493342529 0.00146816496978 +UniRef50_M6TCA5 Transcriptional regulator domain protein 1.36938052374e-05 0.000124560358728 0.000110866553491 +UniRef50_Q21QM7 Adenine phosphoribosyltransferase 4.58034412441e-05 2.01912434691e-05 -2.5612197775e-05 +UniRef50_A6E0W9 0.000108385718858 2.84085662353e-05 -7.99771526227e-05 +UniRef50_B8IL91 Endoribonuclease L PSP 0.00157794945669 0.00062907375522 -0.00094887570147 +UniRef50_UPI00032A8D12 PREDICTED 4.87753141301e-05 0.000271755108757 0.000222979794627 +UniRef50_A5UN72 Predicted transcriptional regulator 0.00258157449824 0.000228632287886 -0.00235294221035 +UniRef50_M1MA52 D alanyl D alanine carboxypeptidase 0.000371535728465 0.00145761759296 0.00108608186449 +UniRef50_UPI0002556197 coproporphyrinogen III oxidase 3.50474357464e-05 4.45719674196e-05 9.5245316732e-06 +UniRef50_Q21J87 2.57369353376e-05 0.000177695931482 0.000151958996144 +UniRef50_Q3J216 Putative class I holin 0.00140643784758 0.000468756674913 -0.000937681172667 +UniRef50_UPI000377F527 hypothetical protein 4.80886116183e-05 4.01904624068e-05 -7.8981492115e-06 +UniRef50_C6SU00 0.00303051667575 0.000771517864425 -0.00225899881132 +UniRef50_UPI0003B3C220 DNA repair protein RecO, partial 1.31720268035e-05 4.01872517414e-05 2.70152249379e-05 +UniRef50_UPI00047C9CC6 hypothetical protein 1.38994065938e-05 0.000338446452111 0.000324547045517 +UniRef50_Q5F9J0 ADP L glycero D manno heptose 6 epimerase 0.00113471942806 0.00407589827804 0.00294117884998 +UniRef50_D9S0U1 Amine oxidase 0.00028295022501 0.000339464198664 5.6513973654e-05 +UniRef50_B4RJU8 Tpc 0.000320954230783 0.00217566167269 0.00185470744191 +UniRef50_UPI0003A37E8C protease 2.06138888301e-05 1.54457396144e-05 -5.1681492157e-06 +UniRef50_UPI000476C2A7 ATPase AAA 4.97971851641e-06 9.00040106754e-06 4.02068255113e-06 +UniRef50_A6DZ03 0.00505054023371 0.000460796461851 -0.00458974377186 +UniRef50_Q8NR12 Ribose import ATP binding protein RbsA 3.33629928643e-06 1.28226291259e-05 9.48632983947e-06 +UniRef50_G2JZ42 Carnitine transport binding protein OpuCC 0.0198117278382 0.00915125617052 -0.0106604716677 +UniRef50_B2GI94 Elongation factor P 3.07830177934e-05 0.000296930514669 0.000266147496876 +UniRef50_UPI0004783ADB cell wall hydrolase 1.60815933582e-05 4.09489797081e-06 -1.19866953874e-05 +UniRef50_UPI00047D45FE arginine ABC transporter permease 1.08268274711e-05 2.48833198363e-05 1.40564923652e-05 +UniRef50_S1S637 0.0001655503621 2.77872412152e-05 -0.000137763120885 +UniRef50_Q18C32 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.50252640178e-05 1.16510577651e-05 -3.3742062527e-06 +UniRef50_Q1J2H5 Pyruvate kinase 0.000629403728881 0.0588782914657 0.0582488877368 +UniRef50_Q1GIU5 Cell division protein ftsA 0.0054380014543 0.00103493369603 -0.00440306775827 +UniRef50_D4GMR6 0.000299397312428 3.48953214438e-05 -0.000264501990984 +UniRef50_UPI00029B2672 GntR family transcriptional regulator, partial 4.17685392267e-05 9.11968312661e-05 4.94282920394e-05 +UniRef50_Q2YCK0 Glycine cleavage system H protein 0.00173759018497 0.000496330596971 -0.001241259588 +UniRef50_A3LIM1 0.0008170887115 0.000908666785215 9.1578073715e-05 +UniRef50_Q5XB25 Exodeoxyribonuclease 7 large subunit 0.00671860777953 0.00291664467262 -0.00380196310691 +UniRef50_UPI000370F15C hypothetical protein 1.26254349018e-05 2.01505973182e-05 7.5251624164e-06 +UniRef50_G3XD61 UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase 0.00129002718057 0.000456988449836 -0.000833038730734 +UniRef50_X5ZEE6 0.000259249311424 1.68095180831e-05 -0.000242439793341 +UniRef50_X1KYQ6 Marine sediment metagenome DNA, contig 2.60664074491e-05 2.8852742925e-05 2.7863354759e-06 +UniRef50_UPI00034A7DFF hypothetical protein 1.45091890612e-06 3.70884597519e-05 3.56375408458e-05 +UniRef50_UPI00037DAE35 hypothetical protein 1.17908918598e-05 2.0244260177e-05 8.4533683172e-06 +UniRef50_UPI00037E1EAE short chain dehydrogenase 1.94182088949e-05 4.42105901748e-05 2.47923812799e-05 +UniRef50_UPI000415BCBB MarR family transcriptional regulator 1.34145716e-05 0.000107723481974 9.4308910374e-05 +UniRef50_Q6NBT1 Sulfate thiosulfate import ATP binding protein CysA 0.000868330497486 0.000216742500443 -0.000651587997043 +UniRef50_UPI000368D6F0 hypothetical protein 1.92220733129e-05 0.000222981753207 0.000203759679894 +UniRef50_B9DLF5 DNA polymerase III gamma and tau subunits 0.0270772474455 0.00824267245966 -0.0188345749858 +UniRef50_E5AVM4 Transcriptional regulators, LysR family 0.000125549663697 0.00570508560548 0.00557953594178 +UniRef50_R6J1R9 2.26669780816e-05 1.56112932497e-05 -7.0556848319e-06 +UniRef50_UPI000468AE38 cupin 0.000100693742006 3.19217275303e-05 -6.87720144757e-05 +UniRef50_Q9UY68 N5 carboxyaminoimidazole ribonucleotide mutase 8.21415623014e-05 0.0128947793688 0.0128126378065 +UniRef50_UPI0002F45A92 hypothetical protein 2.12775207723e-05 4.81994287538e-05 2.69219079815e-05 +UniRef50_Q9RVV9 DNA directed RNA polymerase subunit beta 0.000201427621312 0.0298571583257 0.0296557307044 +UniRef50_Q49UM5 Adenylyl sulfate kinase 0.0128117946947 0.00429336847484 -0.00851842621986 +UniRef50_A5UNL3 Adhesin like protein 0.00349912040045 0.00130543198649 -0.00219368841396 +UniRef50_F2AIB1 Molecular chaperone small heat shock protein 0.000158395206665 0.000106667554089 -5.1727652576e-05 +UniRef50_UPI00036E0C31 hypothetical protein 1.07533614235e-05 4.88836506504e-05 3.81302892269e-05 +UniRef50_Q2RPW9 Phosphoglycolate phosphatase 6.83146150906e-06 1.4853183202e-05 8.02172169294e-06 +UniRef50_Q637E1 Phosphonate ABC transporter, phosphate binding protein 0.0170656142937 0.00426598418179 -0.0127996301119 +UniRef50_UPI00046F5175 ATPase 2.88136860052e-06 9.62933042768e-06 6.74796182716e-06 +UniRef50_B4U470 Nickel or oligopeptide transport ATP binding protein 0.000144446169206 0.0010361989656 0.000891752796394 +UniRef50_P0AA87 Thiol 0.00631829578192 0.00298203894202 -0.0033362568399 +UniRef50_UPI0003708E67 hypothetical protein 3.53518796422e-06 4.08007198546e-06 5.4488402124e-07 +UniRef50_Q28UZ1 1.68791132125e-05 1.34658193061e-05 -3.4132939064e-06 +UniRef50_B8G0S1 Glycosyl transferase family 4 0.00024320610591 0.00130928295672 0.00106607685081 +UniRef50_UPI00046CFF8D phenylacetate CoA ligase 5.63540337813e-06 6.96269403389e-05 6.39915369608e-05 +UniRef50_L1K7B5 0.00224616590853 0.00100134539023 -0.0012448205183 +UniRef50_P29823 Lactose transport system permease protein LacF 0.00041872166478 0.000197756722234 -0.000220964942546 +UniRef50_I4Y2D8 0.00102300699327 0.000282664416606 -0.000740342576664 +UniRef50_A0A011QYY7 L threonine dehydratase biosynthetic IlvA 1.87109510819e-05 3.51207216829e-05 1.6409770601e-05 +UniRef50_UPI0002192A5B cyclic nucleotide binding protein, partial 0.000126284299972 2.04166906102e-05 -0.000105867609362 +UniRef50_K6BVJ8 4.2143296543e-06 3.96522787554e-05 3.54379491011e-05 +UniRef50_A8FF31 3 dehydroquinate dehydratase 9.40057373735e-06 0.000186942872426 0.000177542298689 +UniRef50_K1VMV2 0.000217434706207 0.000221997421502 4.562715295e-06 +UniRef50_Q5LUZ4 Prolipoprotein diacylglyceryl transferase 0.00969019143465 0.002235458425 -0.00745473300965 +UniRef50_R7PUB9 0.00236795786484 0.000194287306055 -0.00217367055878 +UniRef50_A2SFU4 Transport protein B 0.000400716105696 0.00763294253207 0.00723222642637 +UniRef50_N0GPT3 L asparaginase I 0.000358372774223 0.000653837723686 0.000295464949463 +UniRef50_R7PUB1 0.00340672570152 0.000198982142971 -0.00320774355855 +UniRef50_B6JGY2 Peptide chain release factor 3 0.0144030370359 0.0044878011983 -0.0099152358376 +UniRef50_D2SD20 TRAP transporter solute receptor, TAXI family 1.15239900667e-05 2.06067941359e-05 9.0828040692e-06 +UniRef50_P05041 Aminodeoxychorismate synthase component 1 0.00200312560123 0.00124723505506 -0.00075589054617 +UniRef50_Q9RZS9 GGDEF family protein 0.000113793548035 0.0182196679135 0.0181058743655 +UniRef50_R6C7G1 Phage terminase 9.35117743834e-06 7.36313287246e-05 6.42801512863e-05 +UniRef50_Q2RYH6 KpsF GutQ 0.00277098583371 0.00103249224889 -0.00173849358482 +UniRef50_B2I4P8 Peptide methionine sulfoxide reductase MsrA 5.13684557461e-05 0.00308964459525 0.0030382761395 +UniRef50_Q9SJM7 Uridine nucleosidase 1 6.04471433116e-06 7.22201406908e-06 1.17729973792e-06 +UniRef50_C5WH94 Tetra tricopeptide repeat family protein 0.00563254290967 0.00320965063141 -0.00242289227826 +UniRef50_UPI0003607183 hypothetical protein 1.54754038063e-05 1.91542237445e-05 3.6788199382e-06 +UniRef50_R6R0W0 Electron transfer flavoprotein domain containing protein 0.000567306696935 0.000570660299901 3.353602966e-06 +UniRef50_D4HFL5 AMP binding enzyme 0.000198239267955 0.00548453008253 0.00528629081458 +UniRef50_B9KSR7 0.00170574734514 0.000560502775299 -0.00114524456984 +UniRef50_B9J5U3 0.000157719640427 1.81017232643e-05 -0.000139617917163 +UniRef50_B9KSF7 Entericidin EcnAB 0.000478240128508 0.00084341629595 0.000365176167442 +UniRef50_Q928I1 Triosephosphate isomerase 1 0.00386734406747 0.00223308783928 -0.00163425622819 +UniRef50_UPI00037BAD1C hypothetical protein 1.16421623274e-06 2.09540025578e-06 9.3118402304e-07 +UniRef50_M1M081 DNA mismatch repair protein MutS 0.000340449036575 0.00161035886607 0.0012699098295 +UniRef50_Q3M630 DNA topology modulation protein 1.06036250001e-05 0.000146575448713 0.000135971823713 +UniRef50_M5KBZ8 0.000412806961006 4.5474397997e-05 -0.000367332563009 +UniRef50_X2GPQ0 2.49222912468e-06 3.9432153995e-05 3.69399248703e-05 +UniRef50_Q9RWZ0 0.00174224302547 0.00589430262056 0.00415205959509 +UniRef50_Q7CGI0 Cell division protein FtsP 0.00289849823589 0.00118728302618 -0.00171121520971 +UniRef50_UPI00036E8C31 hypothetical protein 0.000265389291912 3.51635433376e-05 -0.000230225748574 +UniRef50_A7NI76 AAA ATPase central domain protein 0.000373938161566 0.0106834373395 0.0103094991779 +UniRef50_P24173 Lipopolysaccharide heptosyltransferase 1 0.00370041992576 0.001021387734 -0.00267903219176 +UniRef50_Q1R011 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.00707112221482 0.000682057048299 -0.00638906516652 +UniRef50_UPI0003B662E9 uroporphyrin III C methyltransferase 7.35275078914e-06 5.2644238322e-06 -2.08832695694e-06 +UniRef50_D3E2B0 Calcineurin like phosphoesterase 0.00405404778582 0.00081953407602 -0.0032345137098 +UniRef50_A5UNH2 Glycosyltransferase, GT2 family 0.00317357199685 0.000273441393692 -0.00290013060316 +UniRef50_Q5NLZ3 Tyrosine tRNA ligase 8.01499879515e-05 1.60654574323e-05 -6.40845305192e-05 +UniRef50_E6SII5 Endonuclease III 0.000361437403208 0.0276558927574 0.0272944553542 +UniRef50_X6YJ88 3.78566325289e-05 2.90787534417e-05 -8.7778790872e-06 +UniRef50_UPI000441D732 PREDICTED 1.08323711133e-05 3.95595906365e-05 2.87272195232e-05 +UniRef50_P32715 Multidrug resistance protein MdtO 0.00473586386858 0.000707832738041 -0.00402803113054 +UniRef50_UPI000315E7F4 hypothetical protein 5.51232177635e-06 3.85238842268e-06 -1.65993335367e-06 +UniRef50_G7D8U7 Biopolymer transport protein 0.000603761499101 0.000837777887078 0.000234016387977 +UniRef50_A0A017HLZ7 0.000184177191146 7.02253126948e-05 -0.000113951878451 +UniRef50_V6JSM6 UDP N acetylglucosamine 2 epimerase 0.000163886825841 0.00524739617613 0.00508350935029 +UniRef50_B4U8M6 Glutamate 1 semialdehyde 2,1 aminomutase 4.69046082534e-06 1.47103980062e-05 1.00199371809e-05 +UniRef50_A0A011U926 Polymerase 1.48300302688e-05 1.76380899938e-05 2.808059725e-06 +UniRef50_UPI000463B6AC molybdopterin biosynthesis like protein MoeZ 2.05063260247e-05 5.33052622705e-05 3.27989362458e-05 +UniRef50_P34031 DNA gyrase subunit B 5.47255676056e-06 1.90734755754e-05 1.36009188148e-05 +UniRef50_A0A023LIT9 0.00016276234997 0.000205201838459 4.2439488489e-05 +UniRef50_E5RBE6 Protein smf. domain protein 0.0218020948679 0.00445137972063 -0.0173507151473 +UniRef50_UPI0003A10A10 hypothetical protein 1.6104116928e-06 2.93460448929e-06 1.32419279649e-06 +UniRef50_Q9RYG5 Methyl accepting chemotaxis protein 5.91361862444e-05 0.0122182316847 0.0121590954985 +UniRef50_Q6LRE4 Anhydro N acetylmuramic acid kinase 0.00141863383458 0.000170867910433 -0.00124776592415 +UniRef50_A0A010U7S7 Glutamine tRNA ligase 0.000162070942107 0.00784970355268 0.00768763261057 +UniRef50_UPI00037E096F hypothetical protein 3.01518530361e-06 1.1517170627e-05 8.50198532339e-06 +UniRef50_R7LLC2 Cation efflux protein 0.000392237051012 0.000493806474628 0.000101569423616 +UniRef50_F2CXC6 Predicted protein 5.13387069926e-06 4.04291236713e-06 -1.09095833213e-06 +UniRef50_UPI0003799FCE hypothetical protein 0.000152166005089 3.28366751475e-05 -0.000119329329941 +UniRef50_Q2YUY9 N acetylmuramic acid 6 phosphate etherase 0.0152311823614 0.00367054031804 -0.0115606420434 +UniRef50_D7B3H1 CDP alcohol phosphatidyltransferase 0.000769563339957 0.00649409271662 0.00572452937666 +UniRef50_E6MY79 Phosphoglycerate kinase 9.7963491915e-05 0.000813575092068 0.000715611600153 +UniRef50_M9TYI3 2.53019622415e-05 8.52488090335e-05 5.9946846792e-05 +UniRef50_UPI0004740A93 citrate synthase, partial 1.89269214499e-05 0.000116417904346 9.74909828961e-05 +UniRef50_M9VKL6 Thiol reductant ABC exporter, CydC subunit 7.67768112925e-05 0.00404134262667 0.00396456581538 +UniRef50_D4HEU0 Transcriptional regulator, TetR family 0.000394584657338 0.00436389562582 0.00396931096848 +UniRef50_B8A0L8 0.000194542899263 0.000179649815205 -1.4893084058e-05 +UniRef50_A5UNY6 Adhesin like protein 0.00215068518922 0.0011086068635 -0.00104207832572 +UniRef50_K0PFX8 Group 1 glycosyl transferase 0.0107622468302 0.00290447593266 -0.00785777089754 +UniRef50_X5EKA8 0.000848550437128 0.000686783035329 -0.000161767401799 +UniRef50_Q6A900 Ribonuclease Y 0.000146745756494 0.00490997271259 0.0047632269561 +UniRef50_A7ZN22 Alpha,alpha trehalose phosphate synthase [UDP forming] 0.0027469796381 0.00106188235924 -0.00168509727886 +UniRef50_M9VHV5 Transcriptional regulator 0.000225589236365 0.00436925648719 0.00414366725083 +UniRef50_UPI00036BF090 hypothetical protein 3.43279814745e-06 8.4409372486e-06 5.00813910115e-06 +UniRef50_X5W5P1 Cupin 0.000180769829851 7.16667277517e-05 -0.000109103102099 +UniRef50_P05648 Chromosomal replication initiator protein DnaA 0.0113564731635 0.00668566528941 -0.00467080787409 +UniRef50_C1DQE7 KHG KDPG aldolase 0.000257376810578 0.00315629878782 0.00289892197724 +UniRef50_B9KXN9 tRNA ) methyltransferase 0.0120231703974 0.00295971251012 -0.00906345788728 +UniRef50_A3PQ24 Phage integrase family protein 0.00255107659281 0.00136758569941 -0.0011834908934 +UniRef50_P96718 UDP glucose 6 dehydrogenase YwqF 0.000120829661313 0.00156833704801 0.0014475073867 +UniRef50_I1HFT3 1.25287881305e-05 2.90041678708e-05 1.64753797403e-05 +UniRef50_I0C140 OppC 0.0126924445712 0.00158630125612 -0.0111061433151 +UniRef50_G5KE14 Phage terminase, large subunit like protein 7.79843887406e-06 2.05572388529e-05 1.27587999788e-05 +UniRef50_B4RGD5 Patch repair protein 0.0108912907855 0.000940381616195 -0.0099509091693 +UniRef50_UPI0003442B9F PREDICTED 5.82291780552e-05 2.3177070582e-05 -3.50521074732e-05 +UniRef50_D2N4E0 Peptidase propeptide and ypeb domain protein 0.00750510669895 0.00156342478604 -0.00594168191291 +UniRef50_B8JEW4 6,7 dimethyl 8 ribityllumazine synthase 0.0215648454522 0.0109127458277 -0.0106520996245 +UniRef50_UPI00016C4567 chemotaxis protein methyltransferase 0.000113021342479 5.88442649718e-05 -5.41770775072e-05 +UniRef50_UPI0003B71F4A cell wall hydrolase 1.80208024441e-05 9.10392550799e-06 -8.91687693611e-06 +UniRef50_A5VZS9 Ribosomal protein S12 methylthiotransferase RimO 0.00111277494258 0.000165439681228 -0.000947335261352 +UniRef50_D7D802 8.102385349e-06 2.03666697605e-05 1.22642844115e-05 +UniRef50_UPI00037181FA hypothetical protein 6.13558189659e-05 1.68214479329e-05 -4.4534371033e-05 +UniRef50_B0VU18 4.76623723326e-05 0.00827763282021 0.00822997044788 +UniRef50_I7ES66 TRAP transporter, subunit DctM 2.06772052005e-05 2.81742240132e-05 7.4970188127e-06 +UniRef50_P0AAM2 Probable Ni Fe hydrogenase 1 B type cytochrome subunit 0.00539712652045 0.000340096013652 -0.0050570305068 +UniRef50_UPI000472D060 transposase 2.14740062497e-05 0.00297784138086 0.00295636737461 +UniRef50_A7HHU8 LigA 0.000121427234682 0.000178526398263 5.7099163581e-05 +UniRef50_P33074 L serine dehydratase, beta chain 7.47890918861e-06 0.000127499314827 0.000120020405638 +UniRef50_Q1JF14 Trigger factor 0.00566061966744 0.00865077366818 0.00299015400074 +UniRef50_UPI0002629D2B phenol hydroxylase 0.000201455958786 1.00466665675e-05 -0.000191409292218 +UniRef50_A9C3K7 4.70692549582e-06 1.66741009091e-05 1.19671754133e-05 +UniRef50_UPI000414ACF6 TonB dependent receptor 5.79642479055e-06 2.76292977141e-06 -3.03349501914e-06 +UniRef50_B1XKV1 Elongation factor P 1.17457306025e-05 7.05112435617e-05 5.87655129592e-05 +UniRef50_UPI000379A93B hypothetical protein 0.000206051979774 0.000141918362078 -6.4133617696e-05 +UniRef50_Q1BN64 Methylmalonate semialdehyde dehydrogenase 0.00231972154228 0.00499836766018 0.0026786461179 +UniRef50_Q3JID5 0.000106060571166 0.000413104750589 0.000307044179423 +UniRef50_B9E8I0 S ribosylhomocysteine lyase 0.0518448955425 0.00990487857501 -0.0419400169675 +UniRef50_P35755 Iron utilization periplasmic protein 0.000149598146176 0.00317446417631 0.00302486603013 +UniRef50_R9SK57 Molybdate ABC transporter ATP binding protein ModC 0.00157391740286 0.00110180842614 -0.00047210897672 +UniRef50_Q24YW4 Enolase 1 6.56414394538e-06 5.55422728282e-05 4.89781288828e-05 +UniRef50_I0C4F0 GTPases 0.0177960036071 0.00410352845075 -0.0136924751563 +UniRef50_UPI0003A26BF2 twin arginine targeting protein translocase 6.05986919509e-05 3.4428606396e-05 -2.61700855549e-05 +UniRef50_UPI00035144CC PREDICTED 1.13514881239e-05 3.69121429389e-05 2.5560654815e-05 +UniRef50_UPI00037AC467 hypothetical protein 4.4705954361e-06 2.55793114562e-05 2.11087160201e-05 +UniRef50_D8JW50 1.82978366557e-05 1.64609520844e-05 -1.8368845713e-06 +UniRef50_A8FDG9 8 amino 7 oxononanoate synthase 1.17714039908e-05 5.51694272071e-06 -6.25446127009e-06 +UniRef50_UPI000478F20C macrolide transporter 2.20432737083e-06 4.88725153206e-06 2.68292416123e-06 +UniRef50_F2ETD0 0.000201491518566 0.000154080181991 -4.7411336575e-05 +UniRef50_E0TH65 Flagellar biosynthesis protein FlhA 0.000165651575802 8.9444736556e-05 -7.6206839246e-05 +UniRef50_M8D633 0.000126283134174 0.0114723697259 0.0113460865917 +UniRef50_P0AFP5 0.00354206917723 0.000231318568035 -0.00331075060919 +UniRef50_W7VDK3 Transposase IS861 0.000554027410123 7.10089136183e-05 -0.000483018496505 +UniRef50_F9X2K4 0.00701264215171 0.00842127296826 0.00140863081655 +UniRef50_D0TA60 Metallo beta lactamase domain protein 3.63374607323e-05 1.91833125345e-05 -1.71541481978e-05 +UniRef50_F8JIF8 0.000235108250449 0.00839854526208 0.00816343701163 +UniRef50_UPI0002F8A47D hypothetical protein 2.22647700975e-05 2.8097533159e-05 5.8327630615e-06 +UniRef50_Q3IVG9 ABC Glycine betaine L proline transporter, inner membrane subunit 0.00358413891479 0.000417667859926 -0.00316647105486 +UniRef50_B3PDL9 Type IV pilus biogenesis protein PilF 7.04344071015e-06 1.69134258564e-05 9.86998514625e-06 +UniRef50_B7US81 Predicted tail fiber protein 6.96897210206e-05 0.00011899934394 4.93096229194e-05 +UniRef50_UPI0001BF5FA9 hypothetical protein SMAC_11727, partial 0.000270811010188 0.000348324282475 7.7513272287e-05 +UniRef50_P76501 0.0105527000924 0.00118126682079 -0.00937143327161 +UniRef50_UPI0003B2EAC3 1 phosphofructokinase 9.81497312978e-06 8.63958071324e-06 -1.17539241654e-06 +UniRef50_P06208 2 isopropylmalate synthase 2.88934276931e-06 1.04075332216e-05 7.51819045229e-06 +UniRef50_P32395 Uroporphyrinogen decarboxylase 2.81789315939e-05 0.000517486510466 0.000489307578872 +UniRef50_A0A011NCP8 Nitrite facilitator 1 9.53793078716e-06 6.2647177528e-06 -3.27321303436e-06 +UniRef50_Q28V62 9.00844273449e-05 0.000138680137097 4.85957097521e-05 +UniRef50_D3SCE5 Proteophosphoglycan ppg4 0.000156658286144 8.58129602549e-05 -7.08453258891e-05 +UniRef50_T0HYB4 4.79318307741e-05 7.47947260969e-05 2.68628953228e-05 +UniRef50_K7RU35 DNA repair protein RecN 9.33600961682e-05 0.00490240804962 0.00480904795345 +UniRef50_Q3J4R2 0.000979660569867 0.000472318782861 -0.000507341787006 +UniRef50_P76505 0.0011861195402 0.000191764094291 -0.000994355445909 +UniRef50_A1U4C6 tRNA dimethylallyltransferase 0.000754135212546 0.000182858640994 -0.000571276571552 +UniRef50_W5XIS1 50S ribosomal protein L22 1.06286406795e-05 0.0002321143706 0.00022148572992 +UniRef50_Q65T94 ARA1 protein 0.0126717049883 0.00114171278729 -0.011529992201 +UniRef50_Q8XAR8 UDP N acetylglucosamine 2 epimerase 0.00439405476616 0.00154209571462 -0.00285195905154 +UniRef50_Q31E54 8 amino 7 oxononanoate synthase 4.1699214476e-06 4.84113634015e-06 6.7121489255e-07 +UniRef50_Q3JR64 3.12690057201e-06 0.00178942595239 0.00178629905182 +UniRef50_UPI000258DCCB 1.25173663859e-06 5.54900986233e-06 4.29727322374e-06 +UniRef50_W1DUY3 Fosmidomycin resistance protein 0.000228192575379 3.80773092347e-05 -0.000190115266144 +UniRef50_UPI00041B42CD multidrug transporter 7.5873342929e-07 2.03665566778e-06 1.27792223849e-06 +UniRef50_UPI000373198D hypothetical protein 7.1376427539e-06 3.49775288082e-05 2.78398860543e-05 +UniRef50_Q8CSM5 0.00430974994928 0.00667339196815 0.00236364201887 +UniRef50_Q1GIM1 Type III pantothenate kinase 0.000103693486189 4.57436743484e-05 -5.79498118406e-05 +UniRef50_Q8CSM3 0.00803449790282 0.00136228319696 -0.00667221470586 +UniRef50_S5D4V1 Nucleotidyltransferase DNA polymerase involved in DNA repair 0.000506996594084 0.0121664668939 0.0116594702998 +UniRef50_UPI00047E5BE4 hypothetical protein 3.51881325961e-05 0.000485179158388 0.000449991025792 +UniRef50_R5WDX8 FAD dependent oxidoreductase 0.00032271312067 0.000199475571791 -0.000123237548879 +UniRef50_X2NEQ0 4.48148080554e-05 2.59505660349e-05 -1.88642420205e-05 +UniRef50_UPI00035C7733 hypothetical protein, partial 0.000393362236582 0.000104611618605 -0.000288750617977 +UniRef50_Q4A065 0.0132331569655 0.00402128347004 -0.00921187349546 +UniRef50_G7JG03 ATP synthase subunit a chloroplastic 2.55601913431e-06 3.24101077973e-06 6.8499164542e-07 +UniRef50_UPI0002379BDC 3 oxoacyl ACP synthase 8.06941265869e-05 1.07815826361e-05 -6.99125439508e-05 +UniRef50_P65644 Ethanolamine utilization cobalamin adenosyltransferase 0.00740390265328 0.000215297719466 -0.00718860493381 +UniRef50_UPI0003B5520E CoA transferase 9.18676219661e-06 0.000145819308469 0.000136632546272 +UniRef50_UPI000470029D diguanylate cyclase 6.37848269373e-06 6.70825786958e-06 3.2977517585e-07 +UniRef50_A3PP83 3.0769299594e-05 4.45649505175e-05 1.37956509235e-05 +UniRef50_W5XDF7 UvrABC system protein C 4.28706663676e-06 1.12522389572e-05 6.96517232044e-06 +UniRef50_P46905 0.0187137881731 0.00745368134023 -0.0112601068329 +UniRef50_UPI00036028EF hypothetical protein 6.22946038691e-06 6.10967123776e-06 -1.1978914915e-07 +UniRef50_B9DRH4 Haloacid dehalogenase like hydrolase 0.00703014796308 0.00333197992912 -0.00369816803396 +UniRef50_UPI0003C257FE PREDICTED 1.58786891769e-05 1.63767043415e-05 4.980151646e-07 +UniRef50_UPI00037569F6 hypothetical protein, partial 0.000606467288123 0.000197378058402 -0.000409089229721 +UniRef50_A6LXY6 PAS PAC sensor hybrid histidine kinase 0.000304594294896 0.000539836778556 0.00023524248366 +UniRef50_Q5HME3 0.00313553451473 0.0017846992784 -0.00135083523633 +UniRef50_P45102 Succinyl CoA ligase [ADP forming] subunit alpha 5.15193386814e-05 0.000101954187703 5.04348490216e-05 +UniRef50_Q5HME1 0.00488604912808 0.00107575841395 -0.00381029071413 +UniRef50_X5ETW2 Peptidase, M50 family 0.000247802618498 0.000975145669635 0.000727343051137 +UniRef50_P26340 Mannose 1 phosphate guanylyltransferase ManC 0.000161981289498 1.83020976982e-05 -0.0001436791918 +UniRef50_P45413 Citrate lyase alpha chain 0.00303354985921 0.00248477608632 -0.00054877377289 +UniRef50_C5N5E9 0.00800917853217 0.00146166549668 -0.00654751303549 +UniRef50_P0A603 RNA polymerase sigma factor SigA 0.000307394026764 0.0100218740245 0.00971447999774 +UniRef50_T1YCL4 0.0128026211644 0.00175103865894 -0.0110515825055 +UniRef50_Q59635 Catalase 0.00115257957366 0.00813149353868 0.00697891396502 +UniRef50_I0KW88 5.04408481011e-05 8.63611380439e-05 3.59202899428e-05 +UniRef50_A5ULP8 Predicted surface protein 0.0017943588202 0.00287319834248 0.00107883952228 +UniRef50_C0P9U0 0.000107363767816 7.7641716853e-05 -2.9722050963e-05 +UniRef50_A3PS37 Sulfotransferase 0.00322524232645 0.000837911192891 -0.00238733113356 +UniRef50_P25906 Putative oxidoreductase YdbC 0.000988048056628 0.000405032096285 -0.000583015960343 +UniRef50_P52074 Glycolate oxidase iron sulfur subunit 0.00291222301915 0.00024712694996 -0.00266509606919 +UniRef50_B7GX21 Aldehyde dehydrogenase 0.000548308921475 0.00894479032768 0.00839648140621 +UniRef50_A5UNW8 Putative PeiW related protein 0.00339560537233 0.00024372767966 -0.00315187769267 +UniRef50_B7N0I9 Zinc transporter ZupT 0.00191940539584 0.000477208159983 -0.00144219723586 +UniRef50_UPI0003959B2A peptide synthetase, partial 1.18912502395e-05 1.11515083073e-05 -7.397419322e-07 +UniRef50_P0AAF2 Putrescine ornithine antiporter 0.00179473007606 0.000166063751755 -0.0016286663243 +UniRef50_C1DK50 0.000986243633233 0.00072459627969 -0.000261647353543 +UniRef50_A8LLD9 Ribonuclease 3 3.60711756531e-05 0.000104904496012 6.88333203589e-05 +UniRef50_Q7WH65 Beta hexosaminidase 1.74417489859e-05 3.30163746599e-05 1.5574625674e-05 +UniRef50_D6SCK6 ABC transporter, ATP binding protein 0.0119776074233 0.0053657227165 -0.0066118847068 +UniRef50_E0P352 0.000133584465064 2.4605116935e-05 -0.000108979348129 +UniRef50_F0Y057 Expressed protein 8.81085793256e-05 0.000530170843736 0.00044206226441 +UniRef50_UPI00037F9362 hypothetical protein 4.56930838835e-06 0.00118298859726 0.00117841928887 +UniRef50_UPI000262CE64 deoxyguanosinetriphosphate triphosphohydrolase like protein 7.51483679131e-05 4.80846976467e-06 -7.03398981484e-05 +UniRef50_K2AIZ3 ABC transporter related protein 6.60806259164e-05 0.000131134803099 6.50541771826e-05 +UniRef50_Q8EED7 Phosphomethylpyrimidine synthase 0.000207414439285 0.0036316490367 0.00342423459742 +UniRef50_I6TQZ8 TetR family transcriptional regulator 0.0025522143318 0.00128892288952 -0.00126329144228 +UniRef50_UPI0003941799 PREDICTED 3.40757630182e-05 9.34874033554e-05 5.94116403372e-05 +UniRef50_R5PZ37 0.000352026230842 0.000156864890773 -0.000195161340069 +UniRef50_K9NJR2 Universal stress protein 0.00120520434655 0.00021848338239 -0.00098672096416 +UniRef50_P71838 KsdD like steroid dehydrogenase Rv0785 8.81976609493e-05 0.0105682986986 0.0104801010377 +UniRef50_UPI0003B5E589 ABC transporter ATP binding protein 4.38850560898e-05 4.0757998206e-05 -3.1270578838e-06 +UniRef50_P21189 DNA polymerase II 0.00267098761014 0.000239861091619 -0.00243112651852 +UniRef50_Q3K742 UDP N acetylmuramoylalanine D glutamate ligase 0.000456052139785 0.000712403735486 0.000256351595701 +UniRef50_F3U2R3 0.000279921394165 7.39558267897e-05 -0.000205965567375 +UniRef50_F0XXV4 Expressed protein 0.00016204852748 9.73360039515e-05 -6.47125235285e-05 +UniRef50_A6LWS8 TPR repeat containing protein 0.00104235234566 0.00247788291221 0.00143553056655 +UniRef50_UPI00046FEF63 iron dicitrate transporter subunit FecD 2.81786032377e-05 1.50652933565e-05 -1.31133098812e-05 +UniRef50_O67298 Methionine tRNA ligase 1.22936509793e-05 2.07437458995e-05 8.4500949202e-06 +UniRef50_Q8H883 Putataive InsB from Escherichia coli 0.00718320690996 0.000545200071126 -0.00663800683883 +UniRef50_Q9JZ07 Inositol 1 monophosphatase 1.58914971407e-05 0.00177208467172 0.00175619317458 +UniRef50_Q9V076 Ribonuclease J 0.00323230462404 0.0014890962383 -0.00174320838574 +UniRef50_J4JDJ6 PF05787 domain protein 0.000114505355566 0.00226678256951 0.00215227721394 +UniRef50_A3PRQ7 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 0.00118625448016 9.2479135246e-05 -0.00109377534491 +UniRef50_B7V1A6 Ketol acid reductoisomerase 0.000822742554283 0.000561307244918 -0.000261435309365 +UniRef50_O66113 Pyruvate dehydrogenase E1 component subunit beta 0.0106990374148 0.00255014247724 -0.00814889493756 +UniRef50_F3U3I1 Trimethylamine N oxide reductase c type cytochrome TorC 0.0150598207285 0.00293506373102 -0.0121247569975 +UniRef50_M9VCX6 4.84864128688e-05 0.000298599419336 0.000250113006467 +UniRef50_A5ULX3 Adhesin like protein 0.00334876688316 0.000901763509367 -0.00244700337379 +UniRef50_Q9RSL9 0.00514753621162 0.0337498544379 0.0286023182263 +UniRef50_A6FNW8 4.76586975179e-06 3.8331287354e-06 -9.3274101639e-07 +UniRef50_S5YTE6 L arabinose isomerase 0.00312364094062 0.000484085936396 -0.00263955500422 +UniRef50_U8LE05 0.000958677273497 0.00026134221699 -0.000697335056507 +UniRef50_Q51485 Porin B 0.00276268389693 0.00864446384869 0.00588177995176 +UniRef50_P68188 Maltose maltodextrin import ATP binding protein MalK 0.00759831846684 0.000271486210581 -0.00732683225626 +UniRef50_Q1IZP1 Gamma glutamyl phosphate reductase 0.00314763498006 0.00345601726425 0.00030838228419 +UniRef50_UPI0004729B76 multidrug transporter MurJ 5.521866328e-05 5.42657232714e-05 -9.529400086e-07 +UniRef50_E8U8Q1 Tellurite resistance TerB 0.000503314651798 0.100665192025 0.100161877373 +UniRef50_UPI000369225C hypothetical protein 8.1909734249e-06 6.78926778378e-06 -1.40170564112e-06 +UniRef50_D5ATK1 TRAP C4 dicarboxylate transport system permease, DctM 2 subunit 9.96638334879e-06 2.51952995149e-05 1.52289161661e-05 +UniRef50_B8I813 Energy coupling factor transporter transmembrane protein EcfT 0.000324348472666 0.00124632378201 0.000921975309344 +UniRef50_E1DDS4 Putative permease protein 1.21729256036e-05 6.73740933166e-06 -5.43551627194e-06 +UniRef50_UPI00012E0EF0 UDP phosphate galactose phosphotransferase 9.77128728404e-06 1.3082297933e-05 3.31101064896e-06 +UniRef50_UPI0001CBAFEA PREDICTED 8.50910113871e-06 7.26513639748e-06 -1.24396474123e-06 +UniRef50_E2Q3I4 Flavoprotein disulfide reductase 0.000335260977015 0.00605351063513 0.00571824965811 +UniRef50_R5Y4C4 7.5949657686e-06 8.65992531732e-06 1.06495954872e-06 +UniRef50_R7PXB7 0.00333521690897 0.000497417098993 -0.00283779980998 +UniRef50_P54458 Putative methyltransferase YqeM 1.23802129973e-05 3.64779497022e-05 2.40977367049e-05 +UniRef50_W5WZ80 N succinyldiaminopimelate aminotransferase 0.000146501677432 0.00629618262779 0.00614968095036 +UniRef50_UPI000344B62A hypothetical protein 6.78356452778e-06 2.06090495523e-06 -4.72265957255e-06 +UniRef50_Q9L6S1 ATP dependent DNA helicase Rep 0.00600284279221 0.010309517612 0.00430667481979 +UniRef50_Q07HH8 2.41864746106e-05 1.17179738963e-05 -1.24685007143e-05 +UniRef50_Q87VV7 Probable nicotinate nucleotide adenylyltransferase 1.89806004332e-05 0.000280808277526 0.000261827677093 +UniRef50_Q97H93 Cell division protein SepF 0.000280311377865 0.000784030488532 0.000503719110667 +UniRef50_F4C9G0 ATPase 1.76197714348e-05 1.3833501344e-05 -3.7862700908e-06 +UniRef50_Q0VMD9 Putative ribosome biogenesis GTPase RsgA 0.0002593346888 1.35425056951e-05 -0.000245792183105 +UniRef50_R1FQ49 0.000148227482538 0.00024372767966 9.5500197122e-05 +UniRef50_P45262 Replication associated recombination protein A 0.000138611746215 0.00209575061554 0.00195713886933 +UniRef50_M4TV91 IS1114 transposase, IS5 family protein 4.33246200368e-05 3.09186792086e-05 -1.24059408282e-05 +UniRef50_F0MX83 0.000176844590442 0.000522684433979 0.000345839843537 +UniRef50_G4LLK3 0.00119853309102 0.000242062873115 -0.000956470217905 +UniRef50_A4GA34 1.43181128598e-05 2.10307879784e-05 6.7126751186e-06 +UniRef50_G2AUL8 0.000208615555801 7.37370050492e-05 -0.000134878550752 +UniRef50_H6NQR9 0.00132320002817 0.000818849088786 -0.000504350939384 +UniRef50_Q9RYB1 0.000207489046873 0.00525213281462 0.00504464376775 +UniRef50_UPI000312AE4D hypothetical protein 6.33363640698e-06 1.05649019182e-05 4.23126551122e-06 +UniRef50_UPI000366A351 hypothetical protein 2.15533796624e-05 3.21547136285e-05 1.06013339661e-05 +UniRef50_UPI0003B3F958 Hsp33 chaperonin 1.3023074845e-05 2.02003037443e-05 7.1772288993e-06 +UniRef50_I1PKM1 0.000757180170735 0.000251952828095 -0.00050522734264 +UniRef50_Q83RK8 0.00354774107827 0.000792128302013 -0.00275561277626 +UniRef50_B8JEF4 4.09824530306e-05 0.000390066409537 0.000349083956506 +UniRef50_R5GFP8 0.000149796027328 0.00154388427373 0.0013940882464 +UniRef50_T2I1A7 2.16123660684e-05 0.00024628220106 0.000224669834992 +UniRef50_D5AUT9 Phage terminase, large subunit 0.00482221893476 0.00049982584478 -0.00432239308998 +UniRef50_UPI0003A838D0 acyl CoA dehydrogenase 7.74438936189e-06 9.13366183889e-06 1.389272477e-06 +UniRef50_P0AGE7 0.00636603080519 0.0028689498438 -0.00349708096139 +UniRef50_W5XIW0 Isoprenyl transferase 6.32998914491e-06 1.27660055201e-05 6.43601637519e-06 +UniRef50_Q51687 Histidinol phosphate aminotransferase 0.00318490080755 0.00129979258688 -0.00188510822067 +UniRef50_UPI000299D2EC hypothetical protein 6.27701323686e-06 9.10577042822e-06 2.82875719136e-06 +UniRef50_UPI00045E7782 xanthine dehydrogenase 1.70681781797e-05 1.41366072931e-05 -2.9315708866e-06 +UniRef50_B3T3L8 0.00032370807636 0.00048018976455 0.00015648168819 +UniRef50_Q9RSZ4 0.000232061058724 0.013768881688 0.0135368206293 +UniRef50_UPI0003772F6B hypothetical protein 6.99470208385e-05 7.07385685629e-05 7.915477244e-07 +UniRef50_F9VSE4 Threonine dehydratase 1.58709056122e-05 8.43109006723e-05 6.84399950601e-05 +UniRef50_UPI0004726CDF DNA polymerase III subunit alpha, partial 2.24852445792e-05 9.21998128758e-06 -1.32652632916e-05 +UniRef50_C8S240 1.43100964277e-05 1.01396808755e-05 -4.1704155522e-06 +UniRef50_A4WY94 0.00605287865868 0.00168752402968 -0.004365354629 +UniRef50_UPI0003AB78D1 5.8313210298e-06 1.99508143091e-06 -3.83623959889e-06 +UniRef50_P11072 Bacteriophage T4 late gene expression blocking protein 0.00232809749275 0.000203901062277 -0.00212419643047 +UniRef50_A3M3V3 0.000519331415074 0.0141037790365 0.0135844476214 +UniRef50_A1IQR7 DNA ligase 9.2960325562e-05 0.00294036446176 0.0028474041362 +UniRef50_Q8GFF2 5.00435134913e-05 0.000656701483245 0.000606657969754 +UniRef50_V2U4R3 0.000110269303704 0.00493008201866 0.00481981271496 +UniRef50_B8ITI2 Electron transfer flavoprotein alpha subunit 3.3838402116e-06 4.74875993403e-06 1.36491972243e-06 +UniRef50_U6A8L3 Sigma factor PvdS, controling pyoverdin biosynthesis 0.00104963565189 0.000708883988783 -0.000340751663107 +UniRef50_Q2IPT7 Tyrosine tRNA ligase 3.19228161487e-05 7.49197506507e-06 -2.44308410836e-05 +UniRef50_UPI000366594A hypothetical protein 5.94977337556e-05 0.000136065147493 7.65674137374e-05 +UniRef50_M9VKU7 ABC transporter permease 0.000585231817474 0.00538143105719 0.00479619923972 +UniRef50_X0UZB7 Marine sediment metagenome DNA, contig 0.000450920335639 9.66092397758e-05 -0.000354311095863 +UniRef50_Q72UH6 Phosphoribosylformylglycinamidine synthase 1 1.12120589817e-05 8.13387951903e-06 -3.07817946267e-06 +UniRef50_P0A270 Exopolyphosphatase 0.00335710305091 0.000505068018825 -0.00285203503208 +UniRef50_P45360 Putative UDP N acetylglucosamine 2 epimerase 0.0228211688713 0.0153431431014 -0.0074780257699 +UniRef50_Q01BN9 Putative histone deacetylase 1.70837191156e-06 1.77770071668e-05 1.60686352552e-05 +UniRef50_U5AK60 9.44956799112e-06 6.99160687062e-05 6.04665007151e-05 +UniRef50_A3CR82 0.0064341807471 0.000956486326462 -0.00547769442064 +UniRef50_Q5HNN4 Uroporphyrinogen III synthase 0.00948485868664 0.00109058284019 -0.00839427584645 +UniRef50_UPI000347D2C7 hypothetical protein 3.8660318447e-06 5.35940457728e-06 1.49337273258e-06 +UniRef50_Q6BA79 0.000209666923604 6.37929758557e-05 -0.000145873947748 +UniRef50_Q8KA16 Endonuclease III 5.08997239308e-06 1.66586615096e-05 1.15686891165e-05 +UniRef50_Q2YA02 Acetylglutamate kinase 4.6570163451e-05 1.63456003694e-05 -3.02245630816e-05 +UniRef50_X8A848 0.000157329471649 0.000295439128552 0.000138109656903 +UniRef50_A3P8Z9 AMP binding domain protein 8.14132254934e-05 0.000392451659996 0.000311038434503 +UniRef50_Q8TUZ5 Acetylornithine aminotransferase 9.38748652083e-06 4.83111600869e-05 3.89236735661e-05 +UniRef50_UPI0000E0FA29 hypothetical protein 0.000123237233712 3.84743594911e-05 -8.47628742209e-05 +UniRef50_B7V608 Anthranilate phosphoribosyltransferase 0.00131024828569 0.000475771409542 -0.000834476876148 +UniRef50_Q3BVS7 1.07533788181e-05 3.14675899973e-05 2.07142111792e-05 +UniRef50_Q1DG75 4.13640603699e-06 3.47206726092e-06 -6.6433877607e-07 +UniRef50_D8JGE0 Paraquat inducible protein A 0.000569290316935 0.0050559396245 0.00448664930757 +UniRef50_I7AAS7 0.00145937204691 0.00213481955563 0.00067544750872 +UniRef50_P07023 T protein 0.00208687828214 0.00298284358995 0.00089596530781 +UniRef50_UPI000415AB07 hypothetical protein 5.60599196008e-05 0.000107069429761 5.10095101602e-05 +UniRef50_A8L089 2.47191873227e-05 8.65782142323e-05 6.18590269096e-05 +UniRef50_R5PFJ0 1.71516534797e-05 0.00379385370791 0.00377670205443 +UniRef50_UPI000371AE89 hypothetical protein 1.48081540801e-05 7.80331289052e-06 -7.00484118958e-06 +UniRef50_UPI000471CA1B hypothetical protein 1.44800047927e-05 6.31105398396e-05 4.86305350469e-05 +UniRef50_Q2GSP5 5.69840470326e-05 0.000178320165679 0.000121336118646 +UniRef50_Q67JS9 50S ribosomal protein L1 0.000246722868534 0.00152745208586 0.00128072921733 +UniRef50_UPI000347BD58 hypothetical protein 1.50150856668e-06 5.85692250364e-05 5.70677164697e-05 +UniRef50_F2ECI9 Predicted protein 0.000215052039164 8.34596449124e-05 -0.000131592394252 +UniRef50_P26275 Positive alginate biosynthesis regulatory protein 0.000955009829538 0.000892040883023 -6.2968946515e-05 +UniRef50_UPI00037F445F hypothetical protein 7.92275228434e-06 1.60525168196e-05 8.12976453526e-06 +UniRef50_Q2G505 6.28004850054e-05 6.6169965823e-05 3.3694808176e-06 +UniRef50_UPI00041221D7 hypothetical protein 2.693182296e-06 0.000204439373878 0.000201746191582 +UniRef50_Q8TZ24 Shikimate dehydrogenase 7.03791767867e-06 2.84374033621e-05 2.13994856834e-05 +UniRef50_UPI0003A57B20 cell envelope biogenesis protein AsmA 3.46969141971e-06 4.56602143568e-06 1.09633001597e-06 +UniRef50_B9KNT5 0.00112124551144 9.90855989002e-05 -0.00102215991254 +UniRef50_UPI000375676E hypothetical protein 3.4347237099e-05 1.89465646212e-05 -1.54006724778e-05 +UniRef50_Q2S5X4 Osteoblast specific factor 2 related protein 0.000105522770751 1.97755386114e-05 -8.57472321396e-05 +UniRef50_UPI000479735A cobalt ABC transporter ATPase 7.1811675981e-06 1.13326514398e-05 4.1514838417e-06 +UniRef50_UPI000374B954 MULTISPECIES 3.8641347511e-06 0.000102575124499 9.87109897479e-05 +UniRef50_Q5PAE7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.30288268063e-06 7.04288880134e-05 6.61260053328e-05 +UniRef50_UPI00037730C9 hypothetical protein 0.000103626864446 0.000115644783698 1.2017919252e-05 +UniRef50_UPI00030CFB49 DNA repair protein RecO 2.17891034493e-05 7.65086594979e-05 5.47195560486e-05 +UniRef50_G0DX72 Galactose proton symporter 7.97505610236e-05 0.00563611284579 0.00555636228477 +UniRef50_A6UF25 4.89641647118e-06 8.56735118484e-06 3.67093471366e-06 +UniRef50_UPI0003F4DAD2 valyl tRNA synthetase 3.22222034044e-06 2.38048879683e-06 -8.4173154361e-07 +UniRef50_UPI0002E6EF76 hypothetical protein 7.11779801575e-05 0.000102466264123 3.12882839655e-05 +UniRef50_A0A014FPC4 0.000241412826739 0.00472602389292 0.00448461106618 +UniRef50_A3PJ57 0.00216317432904 0.00100346291254 -0.0011597114165 +UniRef50_UPI00034D8CD9 glycoside hydrolase 5.84596530468e-05 4.15183368612e-05 -1.69413161856e-05 +UniRef50_Q3IUW8 TraE protein 0.0543644498031 0.00594806306319 -0.0484163867399 +UniRef50_L0D7B2 0.00129259428552 0.000677429293665 -0.000615164991855 +UniRef50_U5MVQ9 D galactose binding periplasmic protein MglB 0.000448173103436 0.00417271836385 0.00372454526041 +UniRef50_K1YJB5 TRAP C4 dicarboxylate transport system permease DctM subunit 5.20817118718e-06 2.17330519833e-05 1.65248807961e-05 +UniRef50_UPI0004648032 gamma aminobutyrate transporter 0.000130534049084 4.11778601541e-05 -8.93561889299e-05 +UniRef50_R5UIW1 Ribose phosphate diphosphokinase 0.000191293575433 0.000534408280041 0.000343114704608 +UniRef50_V5SZP2 0.000338330271987 8.12698899949e-05 -0.000257060381992 +UniRef50_B1IC45 0.00648701327746 0.00293040489143 -0.00355660838603 +UniRef50_Y3DCZ9 0.00280399023561 0.000242394012474 -0.00256159622314 +UniRef50_R5TSA7 0.000115439140317 0.0013757934969 0.00126035435658 +UniRef50_Q0AVW1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 5.03305853913e-05 0.0164640967694 0.016413766184 +UniRef50_UPI000420523B hypothetical protein 1.47264003199e-05 0.000193427272408 0.000178700872088 +UniRef50_C1CER1 Mobile genetic element 2.11928801617e-05 0.00260906209998 0.00258786921982 +UniRef50_B2UML1 Aminotransferase class I and II 0.00249020386997 0.000248497779899 -0.00224170609007 +UniRef50_U3SWF7 0.00579262691103 0.0038693386554 -0.00192328825563 +UniRef50_UPI00037F27EC hypothetical protein, partial 9.68568966044e-05 1.50697702042e-05 -8.17871264002e-05 +UniRef50_P44474 Rod shape determining protein MreB 0.001449768585 0.00417700638408 0.00272723779908 +UniRef50_F3GF13 PAS protein 0.000116568593363 0.000258716503313 0.00014214790995 +UniRef50_UPI0004783EFD dihydroxyacetone kinase 4.68188491481e-05 0.00040915200243 0.000362333153282 +UniRef50_J2LVD6 0.000196959304303 0.00012189212742 -7.5067176883e-05 +UniRef50_W1FRR0 Acyl CoA dehydrogenases 0.000124160488222 1.97202111862e-05 -0.000104440277036 +UniRef50_W8VHA5 Exodeoxyribonuclease III 0.00354122444956 0.000678291340013 -0.00286293310955 +UniRef50_M9VM96 Methylaspartate mutase 0.000218411220623 0.00768536071564 0.00746694949502 +UniRef50_UPI000454B050 PREDICTED 0.000102904605098 0.00015261986347 4.9715258372e-05 +UniRef50_UPI000440E201 ArfGap domain containing protein 6.17704543059e-06 0.000139458016112 0.000133280970681 +UniRef50_R9SKZ5 SAM dependent methyltransferase UbiE family 0.00143286453148 0.000268469732005 -0.00116439479948 +UniRef50_P37641 0.000621862712346 0.000199089913611 -0.000422772798735 +UniRef50_P37645 0.00387970536495 0.00174572035699 -0.00213398500796 +UniRef50_UPI00041FC02E citrate synthase 5.60156266897e-06 7.78100631447e-06 2.1794436455e-06 +UniRef50_B9KMR2 0.00356932619299 0.00190449140493 -0.00166483478806 +UniRef50_S5DFR0 Isoleucine tRNA ligase 8.15034876593e-05 0.00734439548074 0.00726289199308 +UniRef50_P62051 L lactate dehydrogenase 3.38147255908e-06 7.75145975408e-06 4.369987195e-06 +UniRef50_D8HE77 Inosine uridine preferring nucleoside hydrolase 0.0105504940507 0.00492330823716 -0.00562718581354 +UniRef50_UPI0003FEA5A5 2 dehydro 3 deoxyglucarate aldolase 7.3338907549e-06 8.50562104595e-05 7.77223197046e-05 +UniRef50_A3V6T8 0.000277812688782 0.000113454417794 -0.000164358270988 +UniRef50_Q7T6Y8 Ribonucleoside diphosphate reductase large subunit 2.53435698004e-06 8.77604373359e-06 6.24168675355e-06 +UniRef50_Q9K7C3 L arabinose transport ATP binding protein AraG 0.000484223709654 0.00188076913427 0.00139654542462 +UniRef50_UPI00040B989C alkaline phosphatase 2.51914912274e-06 6.24416977003e-06 3.72502064729e-06 +UniRef50_A4XZ93 Elongation factor G 0.00151598623922 0.000552796376438 -0.000963189862782 +UniRef50_J7M1N2 LacI family transcriptional regulator 0.0058463589806 0.00269379582364 -0.00315256315696 +UniRef50_UPI0003624EE9 hypothetical protein 0.000826077504824 0.000252134224663 -0.000573943280161 +UniRef50_Q08120 Bacteroid development protein BacA 0.00196591798834 0.00701873815889 0.00505282017055 +UniRef50_D8JM63 0.00148202596255 0.0103315108114 0.00884948484885 +UniRef50_B2HNH3 PE PGRS family protein, PE_PGRS59 5.27533670295e-06 4.75711369588e-05 4.22958002559e-05 +UniRef50_UPI0003FE4D19 dienelactone hydrolase 2.30731265665e-06 1.34073541645e-05 1.11000415078e-05 +UniRef50_Z9W2S3 2.89351749633e-05 5.66140501122e-05 2.76788751489e-05 +UniRef50_UPI00046A585D phenazine biosynthesis protein PhzF 1.48480432698e-05 2.42120711729e-05 9.3640279031e-06 +UniRef50_UPI000249288F peptide ABC transporter ATP binding protein 2.71351761948e-05 9.46090156526e-06 -1.76742746295e-05 +UniRef50_A0A029LLM4 FAD NAD binding family protein 0.000166347154043 2.49425765922e-05 -0.000141404577451 +UniRef50_Q3SEU9 Phosphoribosyl AMP cyclohydrolase 2.11283600111e-05 1.97402947008e-05 -1.3880653103e-06 +UniRef50_F8JK27 6.41460811758e-05 7.38187008306e-05 9.6726196548e-06 +UniRef50_Q88QZ8 Peptide methionine sulfoxide reductase MsrA 8.08561375296e-05 0.000118814469735 3.79583322054e-05 +UniRef50_D8JGI7 MJ0042 family finger like domain protein 0.000145186918795 0.00575316778636 0.00560798086756 +UniRef50_Q49YQ5 0.021690212582 0.00587832984961 -0.0158118827324 +UniRef50_B9DPJ4 Signal recognition particle receptor FtsY 0.0217904047944 0.00418360597676 -0.0176067988176 +UniRef50_UPI0004686D1F hypothetical protein 1.03940310952e-05 0.000394884657073 0.000384490625978 +UniRef50_Q89AJ2 Thioredoxin reductase 7.82410790355e-05 3.30996253722e-05 -4.51414536633e-05 +UniRef50_A6LYH8 Cation diffusion facilitator family transporter 0.000361230611344 0.00161556950029 0.00125433888895 +UniRef50_D5AMX5 0.00016274326939 7.70205648058e-05 -8.57227045842e-05 +UniRef50_UPI0004747720 peptide ABC transporter 1.03074359415e-05 5.94822246265e-05 4.9174788685e-05 +UniRef50_UPI00047E1486 hypothetical protein 2.39890909808e-05 6.21370992618e-05 3.8148008281e-05 +UniRef50_R4NJW9 Low specificity L threonine aldolase 0.0164907866256 0.00527777341219 -0.0112130132134 +UniRef50_H4JD68 Dienelactone hydrolase family protein 0.000351149757071 0.000578641212619 0.000227491455548 +UniRef50_Q5H5C1 Phosphinothricin acetyltransferase 0.000212468661645 0.00411624696069 0.00390377829905 +UniRef50_B2IQF0 0.000269518708112 0.000330305531007 6.0786822895e-05 +UniRef50_UPI00026CA133 hypothetical protein 0.000216511834094 9.10804851429e-05 -0.000125431348951 +UniRef50_UPI000368DDFC hypothetical protein 5.42936899248e-06 8.85508898254e-06 3.42571999006e-06 +UniRef50_G8DCQ6 4.56399245966e-05 1.03227427633e-05 -3.53171818333e-05 +UniRef50_UPI0003672F43 hypothetical protein 1.30716766001e-05 0.000364635141302 0.000351563464702 +UniRef50_P39161 Uxu operon transcriptional regulator 0.00287373611105 0.00035723794984 -0.00251649816121 +UniRef50_UPI0002D2FE43 hypothetical protein 0.000955833738743 0.000258940421357 -0.000696893317386 +UniRef50_UPI0004786318 hypothetical protein 0.000536924207238 4.1849157279e-05 -0.000495075049959 +UniRef50_B9L7V8 Acyl carrier protein 2.26712905155e-05 0.000513143114561 0.000490471824045 +UniRef50_UPI00036E7E1F hypothetical protein 4.78428505846e-06 0.000543272156887 0.000538487871829 +UniRef50_UPI00035EB162 hypothetical protein 5.5716660629e-05 4.05804588527e-05 -1.51362017763e-05 +UniRef50_D6SCJ9 Quinone oxidoreductase, YhdH YhfP family 0.0214088430145 0.00508140959083 -0.0163274334237 +UniRef50_R5IBX6 1.49881332125e-05 1.49608535524e-05 -2.72796601e-08 +UniRef50_A5UP26 0.00114763408026 0.000440771201791 -0.000706862878469 +UniRef50_Q0B215 DEAD DEAH box helicase domain protein 0.000679280080716 0.000319879866729 -0.000359400213987 +UniRef50_T0QM98 5.11668441524e-06 7.18591037925e-06 2.06922596401e-06 +UniRef50_A3K9M4 Transposase orfA IS5 family element 2.92464930602e-05 5.86066281138e-05 2.93601350536e-05 +UniRef50_A1TL08 Phosphoribosyl ATP pyrophosphatase 1.54711900322e-05 0.000134216353082 0.00011874516305 +UniRef50_UPI00016A61F3 ABC transporter related protein 0.000212555823696 0.000241869153529 2.9313329833e-05 +UniRef50_L3AZC3 Diguanylate cyclase YdeH 0.000467479389619 0.000364588524928 -0.000102890864691 +UniRef50_K4NAI3 0.00017055089858 0.00201378883874 0.00184323794016 +UniRef50_Q6G956 Maltose operon transcriptional repressor 0.0112377751268 0.00165632591667 -0.00958144921013 +UniRef50_A9G862 Phosphoglucosamine mutase 4.72781120293e-06 5.48691046475e-06 7.5909926182e-07 +UniRef50_P0AB86 Thiamine biosynthesis lipoprotein ApbE 0.00344699539116 0.000380543256776 -0.00306645213438 +UniRef50_UPI00036588E1 chromosome partitioning protein ParA 7.49391355456e-06 2.37405676355e-05 1.62466540809e-05 +UniRef50_P46926 Glucosamine 6 phosphate isomerase 1 1.08646064161e-05 9.73035413219e-06 -1.13425228391e-06 +UniRef50_UPI000470FD75 hypothetical protein 3.51318179187e-06 0.000169973426916 0.000166460245124 +UniRef50_F7Z394 Bis tetraphosphatase, ApaH 3.7156450053e-05 0.000159842683594 0.000122686233541 +UniRef50_B4S1N2 Thymidylate kinase 0.0013312894856 0.00147001986999 0.00013873038439 +UniRef50_UPI00036DAC41 hypothetical protein 5.38907131149e-05 6.96992693949e-05 1.580855628e-05 +UniRef50_P33358 HTH type transcriptional regulator MlrA 0.00375415879462 0.000959613540458 -0.00279454525416 +UniRef50_I3R9M8 Respiratory nitrate reductase subunit beta 1.081078446e-05 3.2289311724e-05 2.1478527264e-05 +UniRef50_Q119B3 Acyl carrier protein 3.90957602786e-05 0.000141098069814 0.000102002309535 +UniRef50_G2SPG8 Primosomal protein n 0.000543525626661 0.000170441393493 -0.000373084233168 +UniRef50_A5W8P2 Protein translocase subunit SecA 0.00128189170512 0.000599954631425 -0.000681937073695 +UniRef50_M1F9S3 Hydrogen peroxide inducible genes activator 0.000845625339297 0.000542428114656 -0.000303197224641 +UniRef50_UPI000375B204 hypothetical protein 5.54064586374e-06 2.23487966338e-05 1.68081507701e-05 +UniRef50_F4GVQ8 ABC transporter protein 0.00671681162303 0.00264386164072 -0.00407294998231 +UniRef50_Q2RKD5 Flagellar biosynthetic protein FliP 0.000949038838322 0.00233864205726 0.00138960321894 +UniRef50_A5F3I6 Phosphoadenosine phosphosulfate reductase 1.01669637716e-05 1.57657967483e-05 5.5988329767e-06 +UniRef50_A6LSK1 Probable dual specificity RNA methyltransferase RlmN 0.000280207633198 0.000786546749325 0.000506339116127 +UniRef50_A8IHY5 C4 dicarboxylate binding protein 0.0143850533664 0.00281301284109 -0.0115720405253 +UniRef50_A3VGU5 0.00314735908656 0.00137139342748 -0.00177596565908 +UniRef50_Q8FQS8 5.7396550747e-05 0.00094675041122 0.000889353860473 +UniRef50_UPI000377BBC9 hypothetical protein 3.71488997065e-05 3.6272139982e-05 -8.767597245e-07 +UniRef50_A4WUT7 Phage SPO1 DNA polymerase related protein 0.00125853214858 0.000567416347288 -0.000691115801292 +UniRef50_UPI0001C3962F S1 RNA binding domain protein 0.000546853994325 0.000254438502187 -0.000292415492138 +UniRef50_UPI00026276D0 aryldialkylphosphatase 0.000178192867389 0.000190545617046 1.2352749657e-05 +UniRef50_P13016 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 0.00376029037006 0.000909924006954 -0.00285036636311 +UniRef50_G7MAE0 0.000615707367459 0.000718694309658 0.000102986942199 +UniRef50_P31125 Probable amino acid metabolite efflux pump 0.00237244834786 0.000444845840262 -0.0019276025076 +UniRef50_UPI00022CAAD4 PREDICTED 5.76073384891e-06 1.3924001485e-05 8.16326763609e-06 +UniRef50_A6LQD1 Transcriptional regulator 0.00021049404583 0.00171695789281 0.00150646384698 +UniRef50_U6Z4K6 1.89163041696e-05 2.01702655526e-05 1.253961383e-06 +UniRef50_A0A059IRR6 2.4665115535e-05 6.88274019879e-06 -1.77823753362e-05 +UniRef50_P58219 Inner membrane protein YjgN 0.00187377978863 0.00196702134066 9.324155203e-05 +UniRef50_A0A011M3E9 Putative hydrolase of the alpha beta hydrolase fold protein 7.11002243818e-05 3.07953615794e-05 -4.03048628024e-05 +UniRef50_P75976 0.00410062560927 0.00252501269969 -0.00157561290958 +UniRef50_F8KLB6 0.0104776619413 0.000540213485111 -0.00993744845619 +UniRef50_UPI0004409E56 PREDICTED 2.36548947869e-05 7.92658942225e-05 5.56109994356e-05 +UniRef50_R9SM81 NMD3 family protein 0.00250138011209 0.00113499109971 -0.00136638901238 +UniRef50_UPI0003621607 hypothetical protein 2.29177250673e-05 1.87675553172e-05 -4.1501697501e-06 +UniRef50_H0DMI5 GA module 0.0092163534855 0.00530479974748 -0.00391155373802 +UniRef50_B1VGA4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.29729050126e-06 6.6618662258e-06 2.36457572454e-06 +UniRef50_UPI000255A1B0 sulfate ABC transporter, inner membrane subunit CysT 4.3519338608e-05 8.08582239535e-06 -3.54335162126e-05 +UniRef50_Q9RTQ6 Daunorubicin C 13 ketoreductase 9.42144730903e-05 0.00445955478839 0.0043653403153 +UniRef50_G7M7W5 Heat shock protein DnaJ domain protein 0.000178621130367 0.000635158908179 0.000456537777812 +UniRef50_Q59998 Zinc transporting ATPase 6.03961704725e-06 1.23506521367e-05 6.31103508945e-06 +UniRef50_I3G3U5 0.0087597689592 0.000705171643859 -0.00805459731534 +UniRef50_F3Z677 Putative GTP dependent nucleic acid binding protein EngD 1.69814558057e-05 5.36170720414e-05 3.66356162357e-05 +UniRef50_A0A024JBZ5 Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl tRNA bond 3.39451880327e-06 1.97286636465e-05 1.63341448432e-05 +UniRef50_Q5LSI1 ABC transporter, permease protein 0.00621612708683 0.00086919200598 -0.00534693508085 +UniRef50_V4IUE3 0.00010315645238 5.32492433079e-05 -4.99072090721e-05 +UniRef50_B2HQA4 Imidazoleglycerol phosphate dehydratase 0.000280203910878 0.00547463029235 0.00519442638147 +UniRef50_D8J0P8 Quinohemoprotein alcohol dehydrogenase protein 2.03003627687e-05 2.05273948792e-05 2.270321105e-07 +UniRef50_A0A023VQ43 Phosphatidylethanolamine binding protein 4.26538898029e-05 7.71788265224e-06 -3.49360071507e-05 +UniRef50_UPI0003619783 hypothetical protein 0.000183209910815 9.25604774978e-05 -9.06494333172e-05 +UniRef50_S9RV98 2.9672383764e-05 1.92457967002e-05 -1.04265870638e-05 +UniRef50_B2HWV5 Periplasmic serine protease 0.000200435038326 0.00528682380956 0.00508638877123 +UniRef50_C3DVF3 8.19058504845e-06 0.000120732048569 0.000112541463521 +UniRef50_Q4WWN8 Sulfate adenylyltransferase 0.0107301470245 0.00317099974435 -0.00755914728015 +UniRef50_B2A2N1 Ribonuclease 3 1.67207751478e-05 3.774531247e-05 2.10245373222e-05 +UniRef50_UPI000473A452 hypothetical protein, partial 1.05582610668e-05 1.90789829071e-05 8.5207218403e-06 +UniRef50_UPI00042382C9 hypothetical protein 3.4606272488e-06 1.29922261312e-05 9.5315988824e-06 +UniRef50_E0XTA9 0.000225785656794 0.00023139536678 5.609709986e-06 +UniRef50_UPI00026292D6 TRAP dicarboxylate transporter subunit DctM, partial 3.80935032354e-05 7.92803232846e-05 4.11868200492e-05 +UniRef50_UPI0003B7A748 hypothetical protein 2.65686863385e-05 0.000294723584244 0.000268154897906 +UniRef50_Q6FDS1 Leucyl phenylalanyl tRNA protein transferase 0.000659803906303 0.00659114390271 0.00593133999641 +UniRef50_V2J6J5 3.09497615159e-06 4.44521405757e-06 1.35023790598e-06 +UniRef50_A0A022H255 Methylhydantoinase 2.27711027447e-06 4.36558018335e-06 2.08846990888e-06 +UniRef50_W4WUV4 8.994143814e-05 2.20023027663e-05 -6.79391353737e-05 +UniRef50_O06844 Nitric oxide reductase subunit C 0.019246131115 0.00373190347592 -0.0155142276391 +UniRef50_C5YNI9 0.00195262885533 0.00124957710367 -0.00070305175166 +UniRef50_UPI00020D97D1 large conductance mechanosensitive channel protein MscL 0.00039352707688 8.81688854646e-05 -0.000305358191415 +UniRef50_A6LY57 0.000200775710763 0.00272581052311 0.00252503481235 +UniRef50_A6LY56 0.000508573831134 0.0014894868116 0.000980912980466 +UniRef50_G8V949 ABC transporter, molybdenum transport system 0.000477306289807 0.00553267193172 0.00505536564191 +UniRef50_Q9KIP8 D tagatose 1,6 bisphosphate aldolase subunit KbaY 0.00321271779445 0.00266264123273 -0.00055007656172 +UniRef50_P20576 Anthranilate synthase component 2 0.00101587443054 0.00370458718065 0.00268871275011 +UniRef50_UPI0004724CFA hypothetical protein 2.41313566924e-05 2.16217316425e-06 -2.19691835281e-05 +UniRef50_F7ZHD8 0.000278621984047 5.76240456472e-05 -0.0002209979384 +UniRef50_H8FVA2 Transposase 0.000144376803346 7.15292622965e-05 -7.28475410495e-05 +UniRef50_K7RQ56 Cell cycle protein, FtsW RodA SpoVE family 0.000251540005745 0.00412506337596 0.00387352337021 +UniRef50_D3QHZ6 3.75615311622e-05 5.9894085134e-05 2.23325539718e-05 +UniRef50_UPI000374CE3A hypothetical protein, partial 9.65932242645e-05 4.5022694151e-05 -5.15705301135e-05 +UniRef50_P72371 Cap8E 0.0298456966409 0.00745154278838 -0.0223941538525 +UniRef50_U5NN01 0.000588657486979 0.00118126682079 0.000592609333811 +UniRef50_A6LV36 Integral membrane sensor signal transduction histidine kinase 0.00022548951745 0.00220164270456 0.00197615318711 +UniRef50_Q1GCT8 Butyryl CoA dehydrogenase 0.000150392824239 0.000621333551003 0.000470940726764 +UniRef50_R4ZMT7 Additional lipoprotein component of predicted cobalamin ECF transporter 0.00286715376256 0.000864341576184 -0.00200281218638 +UniRef50_D6SCB6 Transporter, major facilitator family protein 0.0201908765071 0.00585977767828 -0.0143310988288 +UniRef50_A0A009KXU9 0.000856704583993 0.00673882369338 0.00588211910939 +UniRef50_Q2Y6A7 DedA 0.00072274974554 0.00630212612732 0.00557937638178 +UniRef50_UPI00040856F2 hypothetical protein 4.18592294051e-05 8.72697745955e-06 -3.31322519456e-05 +UniRef50_G7M3S1 Transcriptional regulator, TetR family 0.00120247925878 0.00067296182176 -0.00052951743702 +UniRef50_Q4I1N3 Sulfate adenylyltransferase 9.68744081644e-05 5.10222332665e-05 -4.58521748979e-05 +UniRef50_P76121 0.00833075965547 0.000456675317307 -0.00787408433816 +UniRef50_P76123 0.00203736621546 0.000440883819306 -0.00159648239615 +UniRef50_Y5PB14 0.00125137296672 0.00131251868976 6.114572304e-05 +UniRef50_L0GW54 Exopolyphosphatase 2.95460731849e-06 1.911798982e-05 1.61633825015e-05 +UniRef50_R5S9I0 2.3867989663e-05 0.00408832865663 0.00406446066697 +UniRef50_O35008 Putative protein YtqA 0.0318279159764 0.00959661938576 -0.0222312965906 +UniRef50_R6G2T1 Dihydroxyacetone kinase L subunit 0.000184740288181 0.000873555359152 0.000688815070971 +UniRef50_X9N846 0.00716955519116 0.00383507617837 -0.00333447901279 +UniRef50_D5WIU5 RND efflux system, outer membrane lipoprotein, NodT family 7.82624717782e-05 0.00800896019677 0.00793069772499 +UniRef50_UPI0003B5B66A single stranded DNA binding protein 1.81003046964e-05 8.86394760128e-05 7.05391713164e-05 +UniRef50_Q1AVX4 UDP N acetylmuramate L alanine ligase 4.14154932133e-06 5.45919075122e-06 1.31764142989e-06 +UniRef50_Q5E715 Methionine import ATP binding protein MetN 0.000709196778935 1.00549448677e-05 -0.000699141834067 +UniRef50_Q9PDT8 Enolase 0.00708847917128 0.0174609156404 0.0103724364691 +UniRef50_Q9Z3U1 DNA translocase FtsK 0.00073754896499 0.000244590306005 -0.000492958658985 +UniRef50_A1WTJ3 Dihydroorotate dehydrogenase 1.17973315594e-05 1.92139002457e-05 7.4165686863e-06 +UniRef50_H2JB32 Terminase like family 0.00047380356794 0.00209457710738 0.00162077353944 +UniRef50_UPI0003812972 hypothetical protein 1.58488484792e-05 1.17149505207e-05 -4.1338979585e-06 +UniRef50_N1MA35 0.000403755792815 0.000143689554452 -0.000260066238363 +UniRef50_H8ZPX2 3 succinoylsemialdehyde pyridine dehydrogenase 0.00681615975786 0.00150922056954 -0.00530693918832 +UniRef50_Q9JXS7 Chromosomal replication initiator protein DnaA 7.29206675159e-05 0.0019026398556 0.00182971918808 +UniRef50_N9DK24 7.97875854232e-05 2.2566372817e-05 -5.72212126062e-05 +UniRef50_D5RTD5 1.61208480771e-05 3.12951140438e-05 1.51742659667e-05 +UniRef50_UPI00047C92E9 chromosomal replication initiation protein 6.80686735317e-06 8.35579829301e-06 1.54893093984e-06 +UniRef50_P0DKR8 Spermidine N acetyltransferase 0.0115619509848 0.00135578050752 -0.0102061704773 +UniRef50_UPI000475FA76 hypothetical protein 1.40828212188e-05 4.92898527894e-05 3.52070315706e-05 +UniRef50_UPI0003631E18 hypothetical protein 2.13458069458e-05 0.000513934948797 0.000492589141851 +UniRef50_A6E2Z7 1.8566465968e-05 1.75415932817e-05 -1.0248726863e-06 +UniRef50_I0G8T6 0.000395491838906 1.78703158228e-05 -0.000377621523083 +UniRef50_U1SML3 4.73797237908e-05 0.00157433376093 0.00152695403714 +UniRef50_F9NW45 Trehalose utilization 0.000232537570129 0.00616345902754 0.00593092145741 +UniRef50_Q9RTI6 3 isopropylmalate dehydratase large subunit 2 0.000504016906207 0.0441915962531 0.0436875793469 +UniRef50_E0RLY4 Short chain type dehydrogenase reductase 0.00016629338716 0.00165459953099 0.00148830614383 +UniRef50_U4JC67 0.000119423332984 2.41981232351e-05 -9.52252097489e-05 +UniRef50_M1LR29 Phage late control gene D protein GPD 0.000607658354639 0.00273424158235 0.00212658322771 +UniRef50_W4HIE7 8.65895119189e-05 7.51196124739e-05 -1.1469899445e-05 +UniRef50_P45260 Acetolactate synthase small subunit 0.000265606252909 0.000347344409226 8.1738156317e-05 +UniRef50_UPI0000379465 hypothetical protein 0.00102365695748 0.000401791435631 -0.000621865521849 +UniRef50_G7M1N6 Phage tail tape measure protein, TP901 family 0.000230585659666 0.00174424655247 0.0015136608928 +UniRef50_R9YLQ5 LXG domain of WXG superfamily protein 0.000333282140349 0.000658161901382 0.000324879761033 +UniRef50_Q4L5B7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0142730581574 0.00636472446656 -0.00790833369084 +UniRef50_Q9LD57 Phosphoglycerate kinase 1, chloroplastic 5.78880574924e-06 4.43299766839e-05 3.85411709347e-05 +UniRef50_H3VIV1 Transposase, IS4 like family protein 0.00418770192483 0.00100962976135 -0.00317807216348 +UniRef50_UPI0003823D63 hypothetical protein 5.18225623424e-05 0.000135598700073 8.37761377306e-05 +UniRef50_U5P976 Magnesium transporter 0.00880023222741 0.00059187957924 -0.00820835264817 +UniRef50_UPI00026263A2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.75423002605e-05 4.20471360329e-05 -5.4951642276e-06 +UniRef50_J7QFY9 Lysine , arginine , ornithine binding periplasmic protein 0.00293579100811 0.00161118574196 -0.00132460526615 +UniRef50_Q6GK28 Protein EsaA 0.0120703165844 0.0023850349728 -0.0096852816116 +UniRef50_B7H3M8 MotA TolQ ExbB proton channel family protein 0.000735708108644 0.00890439824847 0.00816869013983 +UniRef50_A1B5F3 0.00241560117097 0.00037381861418 -0.00204178255679 +UniRef50_U5LD58 Asparaginase 0.02092799312 0.00432627025036 -0.0166017228696 +UniRef50_P39280 L lysine 2,3 aminomutase 0.00301452340411 0.000516378222061 -0.00249814518205 +UniRef50_UPI000380B87F hypothetical protein 4.2161090402e-06 4.10340899236e-06 -1.1270004784e-07 +UniRef50_L0GSA6 Type II secretory pathway, component ExeA 0.000367105546411 0.000138972567152 -0.000228132979259 +UniRef50_R1B4D2 3.92656682586e-05 8.2153907676e-05 4.28882394174e-05 +UniRef50_Q8D335 Glutathione synthetase 5.27277228925e-05 8.64010558553e-06 -4.4087617307e-05 +UniRef50_U5NRL5 0.0268686315762 0.010024039437 -0.0168445921392 +UniRef50_J7L4M3 5.65104544586e-05 0.00157301845136 0.0015165079969 +UniRef50_L0NCJ2 0.000200649964896 2.78857245642e-05 -0.000172764240332 +UniRef50_UPI00036B778B hypothetical protein 6.25968339341e-05 0.000278228713541 0.000215631879607 +UniRef50_Q8CWR6 Alpha monoglucosyldiacylglycerol synthase 0.00418503997781 0.00594243999149 0.00175740001368 +UniRef50_B9KQ22 Lysine exporter protein 0.000829856265178 0.00187721433139 0.00104735806621 +UniRef50_A1SNL2 30S ribosomal protein S3 0.0173619141814 0.00434943766922 -0.0130124765122 +UniRef50_M0X3J8 6.53508961172e-05 0.00190569323248 0.00184034233636 +UniRef50_B3A0N5 Apyrase 9.70515907713e-06 5.14838127097e-06 -4.55677780616e-06 +UniRef50_S4JHM6 0.000855062237382 0.000359081748679 -0.000495980488703 +UniRef50_UPI0001F85C4F L alanine dehydrogenase like protein 5.68994138396e-05 0.00115830354983 0.00110140413599 +UniRef50_W0E372 Sensor histidine kinase 0.000750315914886 0.000826984538403 7.6668623517e-05 +UniRef50_UPI0003B51C09 sugar ABC transporter permease 1.645191136e-05 0.000109049421513 9.2597510153e-05 +UniRef50_UPI0000164CD9 putative transposase 0.00104009031306 0.224490351769 0.223450261456 +UniRef50_A5UNF8 Transporter 0.00555748880488 0.00128402657247 -0.00427346223241 +UniRef50_U3SVD1 Glucosyltransferase 0.00591138245052 0.00169724332695 -0.00421413912357 +UniRef50_R4W4T4 0.00116557837691 0.000699750546659 -0.000465827830251 +UniRef50_UPI00046B847F PREDICTED 4.57991772569e-05 7.8698535773e-05 3.28993585161e-05 +UniRef50_Q9KDD8 Uridine kinase 1.9242592149e-05 0.000553294454599 0.00053405186245 +UniRef50_UPI00024931AE DNA primase 2.5629783988e-05 8.38050006709e-05 5.81752166829e-05 +UniRef50_N1MTW2 Zn dependent hydroxyacylglutathione hydrolase Polysulfide binding protein 0.0128601120247 0.00189599563013 -0.0109641163946 +UniRef50_B9DXD9 0.000521870030673 0.00935843604362 0.00883656601295 +UniRef50_UPI0004137D5A hypothetical protein 5.15221984775e-06 5.55916322277e-06 4.0694337502e-07 +UniRef50_B7J5S3 3 isopropylmalate dehydratase small subunit 2.79143686323e-05 4.75346164294e-05 1.96202477971e-05 +UniRef50_UPI0004561650 hypothetical protein PFL1_00576 4.92007997764e-05 8.13719612646e-06 -4.10636036499e-05 +UniRef50_I0TVV6 0.000394338795662 1.7073855617e-05 -0.000377264940045 +UniRef50_A4WT53 PAS PAC sensor hybrid histidine kinase 0.00817877758137 0.00177756860026 -0.00640120898111 +UniRef50_D1GN02 Phage protein 0.00129411856802 0.00552826745699 0.00423414888897 +UniRef50_B9KPL9 Serine alanine racemase VanTc3 0.00690152201695 0.00105136240652 -0.00585015961043 +UniRef50_A1A0Q3 ATP binding protein of ABC transporter for glutamate_aspartate 0.000822898073514 0.0145034286963 0.0136805306228 +UniRef50_U6IFI6 Succinate dehydrogenase iron sulfur 1.56075853534e-05 3.63080855119e-05 2.07005001585e-05 +UniRef50_UPI0002FDF659 hypothetical protein 0.000224736170172 8.22763072484e-05 -0.000142459862924 +UniRef50_A3M3T0 Merops peptidase family S24 0.000214887659684 0.00497104478521 0.00475615712553 +UniRef50_Q8XBL0 Pyridoxine kinase 0.0047296818035 0.00128831036566 -0.00344137143784 +UniRef50_I8G444 QmcA domain protein 0.000153135691294 4.92535906739e-05 -0.00010388210062 +UniRef50_UPI00040A034C hypothetical protein 0.000117410236328 3.18644624967e-05 -8.55457738313e-05 +UniRef50_UPI00046A4743 hypothetical protein 4.77346887315e-06 6.33420663349e-05 5.85685974617e-05 +UniRef50_D7GH22 Sugar phosphate isomerase epimerase 0.000183245625651 0.00516893139385 0.0049856857682 +UniRef50_Q3HKP9 Capsule polysaccharide export protein 0.0167435587439 0.00428559219853 -0.0124579665454 +UniRef50_G8WJH0 SD repeat containing cell surface protein 5.89785219924e-06 4.9981671354e-06 -8.9968506384e-07 +UniRef50_M2IQZ0 9.40609324575e-05 9.5993694535e-05 1.9327620775e-06 +UniRef50_UPI00036C3395 hypothetical protein 1.25206527223e-05 1.71480064877e-05 4.6273537654e-06 +UniRef50_B7V5N6 ATP dependent DNA helicase RecG 5.97918672899e-05 0.000285566237096 0.000225774369806 +UniRef50_UPI000467A2E7 hypothetical protein 8.3421315248e-06 8.32340687593e-06 -1.872464887e-08 +UniRef50_O25890 Chaperone protein DnaJ 0.000149598146176 0.00576404844868 0.0056144503025 +UniRef50_UPI000370079F hypothetical protein 1.60036673401e-06 2.68153547889e-06 1.08116874488e-06 +UniRef50_A0A037YH66 UDP pyrophosphate phosphatase 0.00110309795144 0.00234468534782 0.00124158739638 +UniRef50_UPI00035FC7A0 hypothetical protein, partial 1.14066281251e-05 1.29698171571e-05 1.563189032e-06 +UniRef50_Z2DJY9 Membrane protein 4.35541143537e-05 7.85753266549e-06 -3.56965816882e-05 +UniRef50_Q2RRZ4 ABC transporter component 0.00116755043878 0.000636426744807 -0.000531123693973 +UniRef50_W0DT44 Phosphate starvation inducible E 3.44221149706e-05 2.26576702423e-05 -1.17644447283e-05 +UniRef50_UPI00016C3CBF tRNA pseudouridine synthase D 1.11517199679e-05 3.89456828263e-05 2.77939628584e-05 +UniRef50_P71243 Putative colanic acid biosynthesis glycosyltransferase WcaL 0.00266901998859 0.00040551752795 -0.00226350246064 +UniRef50_UPI0003B6E3CF 3 ketoacyl ACP reductase 5.50152188711e-06 1.59382655432e-05 1.04367436561e-05 +UniRef50_K1DU50 8.1572464485e-05 9.50415732837e-05 1.34691087987e-05 +UniRef50_UPI0003ADCF18 PREDICTED 1.29394338211e-05 4.28829839684e-05 2.99435501473e-05 +UniRef50_C8S4J7 Rhodanese domain protein 7.3414245391e-05 0.000482268201838 0.000408853956447 +UniRef50_Q6A9E9 Conserved protein DUF181 1.87411528866e-05 0.000187368131423 0.000168626978536 +UniRef50_Z4JX05 Aryl phospho beta D glucosidase BglA 0.00741555694237 0.000916473200507 -0.00649908374186 +UniRef50_UPI00046D6223 hypothetical protein 9.24800655398e-07 5.91317081203e-05 5.82069074649e-05 +UniRef50_K1YN95 0.00014837500546 0.000388327019228 0.000239952013768 +UniRef50_E2XQ21 Transcriptional regulator, GntR family 0.000546015685656 0.000891123966912 0.000345108281256 +UniRef50_G3Z0X9 6.51092115584e-05 0.000180156244632 0.000115047033074 +UniRef50_D8HEX2 0.0158601268871 0.00607171340058 -0.00978841348652 +UniRef50_P45077 Metalloprotease PmbA homolog 0.00268092204155 0.00154816858413 -0.00113275345742 +UniRef50_B6ISJ0 Peptidase M20D, amidohydrolase, putative 0.00409085510496 0.00126918829327 -0.00282166681169 +UniRef50_D4TZ64 Tat pathway signal sequence domain protein 1.07574370492e-05 0.00159110723982 0.00158034980277 +UniRef50_UPI0002EED4E0 hypothetical protein 3.03748642464e-05 0.000530679800708 0.000500304936462 +UniRef50_Q7VDQ5 Imidazoleglycerol phosphate dehydratase 2.89900469797e-05 2.96656052923e-05 6.755583126e-07 +UniRef50_UPI00037AD56D hypothetical protein 0.00174576034116 0.00140627002474 -0.00033949031642 +UniRef50_V9U275 Two component hybrid sensor and regulator 0.000384996737874 0.000186284030768 -0.000198712707106 +UniRef50_UPI00033433B7 4.19559761385e-05 2.37401923471e-05 -1.82157837914e-05 +UniRef50_A5CXT4 Adenylate kinase 8.61323099979e-06 1.40693834537e-05 5.45615245391e-06 +UniRef50_Q65JY3 Phospho N acetylmuramoyl pentapeptide transferase 0.0151481888935 0.0119667640595 -0.003181424834 +UniRef50_UPI0003650BE9 hypothetical protein 1.28141903458e-05 9.78084798547e-05 8.49942895089e-05 +UniRef50_L7WTJ0 Lipase 0.00959269125166 0.00313940842354 -0.00645328282812 +UniRef50_A6LZ86 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000591901940935 0.000195573976954 -0.000396327963981 +UniRef50_P13522 Sucrose 6 phosphate hydrolase 0.00377287916303 0.00496639246154 0.00119351329851 +UniRef50_U4V9A4 0.000110523066742 2.74657171253e-05 -8.30573496167e-05 +UniRef50_U5MRD6 Glycosyl transferases group 1 0.000221584936159 0.000438521638986 0.000216936702827 +UniRef50_UPI000362B65E hypothetical protein 3.29133315166e-06 5.12265992425e-06 1.83132677259e-06 +UniRef50_O34527 HTH type transcriptional regulator CymR 0.0192150299721 0.0110022922138 -0.0082127377583 +UniRef50_R6AX85 7.9049456172e-06 1.24244419472e-05 4.51949633e-06 +UniRef50_A7NI79 Thymidine kinase 5.94286941918e-06 3.02363779631e-05 2.42935085439e-05 +UniRef50_Q49UR2 0.0016474594 0.00279498896508 0.00114752956508 +UniRef50_UPI0003F49ED6 hypothetical protein TREMEDRAFT_39067 2.6118484446e-05 6.48259576322e-05 3.87074731862e-05 +UniRef50_Q3JRJ0 4.49190764047e-05 3.27916737367e-05 -1.2127402668e-05 +UniRef50_A0A017TDI9 0.000228302484785 0.000595153886827 0.000366851402042 +UniRef50_U5RXJ0 ApbE family lipoprotein 0.000278271246844 0.000980471241071 0.000702199994227 +UniRef50_Q9KIP9 Putative tagatose 6 phosphate ketose aldose isomerase 0.0031908793394 0.000430670465334 -0.00276020887407 +UniRef50_R4ZN50 Accessory secretory protein Asp1 0.000420737103937 0.000958713139362 0.000537976035425 +UniRef50_A7GMU8 Imidazole glycerol phosphate synthase subunit HisH 0.00182852442582 0.0015499185642 -0.00027860586162 +UniRef50_F2A3T6 2.63248153318e-05 3.7530751246e-05 1.12059359142e-05 +UniRef50_F2A3T7 4.16371803198e-05 9.35014067362e-05 5.18642264164e-05 +UniRef50_F6G911 Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein 0.0083617128912 0.00239065456961 -0.00597105832159 +UniRef50_R6MA81 0.00636656717431 0.00231599442465 -0.00405057274966 +UniRef50_UPI0003A6077C MULTISPECIES 2.27496268005e-05 2.05080173783e-05 -2.2416094222e-06 +UniRef50_G7M9L8 RNA polymerase sigma factor, sigma 70 family 0.000342132316185 0.00364988728217 0.00330775496599 +UniRef50_UPI00037595E9 hypothetical protein 0.000804680106966 0.000144089306556 -0.00066059080041 +UniRef50_UPI00029AD5DC sugar acetyltransferase 0.000163192216292 0.000315548488631 0.000152356272339 +UniRef50_A8FSI3 Lipoprotein signal peptidase 1.2914898066e-05 3.35849165438e-05 2.06700184778e-05 +UniRef50_I6X4E6 0.000703390041336 0.00369249614578 0.00298910610444 +UniRef50_Q7NKY2 Gll1344 protein 6.20708487245e-05 2.42179461209e-05 -3.78529026036e-05 +UniRef50_K2JVH5 0.000401853519558 8.09797553478e-05 -0.00032087376421 +UniRef50_Q87IM1 Tryptophan synthase beta chain 2 0.00985695941472 0.00735173054717 -0.00250522886755 +UniRef50_UPI0003635E67 hypothetical protein 7.67537123549e-07 0.000130839672438 0.000130072135314 +UniRef50_D8HDF1 0.00402926014687 0.0012511240102 -0.00277813613667 +UniRef50_S9RXU2 Putative membrane protein 0.000135619347064 1.88613664487e-05 -0.000116757980615 +UniRef50_F2AIM8 0.00132363919928 0.0024201315059 0.00109649230662 +UniRef50_M5DRE1 Diguanylate cyclase 5.03261448424e-06 5.33281866195e-05 4.82955721353e-05 +UniRef50_L7WXF9 0.0196217480518 0.00383407240475 -0.015787675647 +UniRef50_A0A037V0H1 CRISPR associated protein Cas3 0.000129795395708 7.79523435085e-05 -5.18430521995e-05 +UniRef50_U5MZA5 Double stranded RNA RNA DNA hybrid binding protein 0.000119457591412 0.0010682729974 0.000948815405988 +UniRef50_W1DV17 FIG001826 0.000240623041765 0.000124814816943 -0.000115808224822 +UniRef50_C4L8H9 Hydroxyethylthiazole kinase 8.03186243511e-06 8.91352113137e-06 8.8165869626e-07 +UniRef50_Q82DT6 NADH quinone oxidoreductase subunit B 2 9.40441445721e-06 0.000132836295103 0.000123431880646 +UniRef50_UPI000262CA63 phosphoglycolate phosphatase 7.23667020105e-06 1.41718331835e-05 6.93516298245e-06 +UniRef50_S5VB68 Extracellular solute binding protein family 1 0.00107003461787 0.000467881152802 -0.000602153465068 +UniRef50_UPI0004746364 ABC transporter ATP binding protein 2.16693561435e-05 1.16754012645e-05 -9.993954879e-06 +UniRef50_UPI000470C654 hypothetical protein 4.05457825498e-05 2.25853472638e-05 -1.7960435286e-05 +UniRef50_UPI00046D6B42 hypothetical protein 1.88998607553e-06 1.29989358213e-05 1.11089497458e-05 +UniRef50_UPI00046533A1 hypothetical protein 4.48414150421e-05 1.51799489096e-05 -2.96614661325e-05 +UniRef50_A3PS59 ATP synthase subunit beta 2 0.00213670217093 0.000827177709709 -0.00130952446122 +UniRef50_Q8TY90 50S ribosomal protein L3 0.00203977377388 0.00138835882412 -0.00065141494976 +UniRef50_X1CQ64 Marine sediment metagenome DNA, contig 6.33774368481e-06 2.37809753065e-05 1.74432316217e-05 +UniRef50_UPI0003B5E6F5 succinyl CoA 4.50955400479e-05 7.29306988013e-05 2.78351587534e-05 +UniRef50_Q2FC51 Beta lactamase regulatory protein 0.000884854930389 0.000235287798871 -0.000649567131518 +UniRef50_L9M7Y3 3.12057724381e-05 0.000116627837632 8.54220651939e-05 +UniRef50_W9GPH4 2.24026392221e-05 6.19239180645e-05 3.95212788424e-05 +UniRef50_Q1J961 Chromosome partitioning protein parB 0.00295416793063 0.00109889015683 -0.0018552777738 +UniRef50_O57979 Amidophosphoribosyltransferase 9.66977626597e-06 6.82197319754e-05 5.85499557094e-05 +UniRef50_UPI00037A9112 hypothetical protein 0.000101973264894 1.59757800731e-05 -8.59974848209e-05 +UniRef50_W1K3B0 ABC transporter permease 0.000146275645051 9.37744974395e-05 -5.25011476115e-05 +UniRef50_Q46769 dTDP 4 dehydrorhamnose reductase 0.00268197223256 0.000576284914849 -0.00210568731771 +UniRef50_UPI000375C690 hypothetical protein 0.00346844481803 0.000518099482802 -0.00295034533523 +UniRef50_G7M2K9 0.00035947760683 0.0015253445231 0.00116586691627 +UniRef50_W1JQY9 ABC transporter substrate binding protein 3.6129500953e-05 4.26125806884e-06 -3.18682428842e-05 +UniRef50_B9KQ28 Short chain dehydrogenase reductase SDR 0.00014842175184 0.000779415626136 0.000630993874296 +UniRef50_Q3IV86 Putative signal peptide protein 0.00408977136998 0.00536618798999 0.00127641662001 +UniRef50_B2IHW6 NADH quinone oxidoreductase subunit B 0.0187173152377 0.00256464830968 -0.016152666928 +UniRef50_E4R4C3 Phospholipid glycerol acyltransferase 0.00152667343028 0.000463171940794 -0.00106350148949 +UniRef50_T5LAM1 7.09818393889e-05 0.00022354747467 0.000152565635281 +UniRef50_T1XT22 Amino acid permease, putative 0.0192927166706 0.006537445294 -0.0127552713766 +UniRef50_UPI0003D746D3 PREDICTED 3.37341420109e-05 3.83837609567e-05 4.6496189458e-06 +UniRef50_P12758 Uridine phosphorylase 0.00724037112896 0.00117622224142 -0.00606414888754 +UniRef50_T0T7N0 Methylenetetrahydrofolate reductase 0.00453118656265 0.00190930909601 -0.00262187746664 +UniRef50_UPI0003650C71 hypothetical protein 3.75398926197e-06 0.000493411660296 0.000489657671034 +UniRef50_A6TH46 Thiol 0.0026910727388 0.000588194810632 -0.00210287792817 +UniRef50_K8CFI0 3.29500338677e-05 0.00033240091381 0.000299450879942 +UniRef50_A9BPL9 Alkylphosphonate utilization operon protein PhnA 0.00142358009624 0.00170943992618 0.00028585982994 +UniRef50_B5EAA9 Repeat containing protein 8.41740174779e-07 4.61050513274e-06 3.76876495796e-06 +UniRef50_C0YBF1 Bmlf1 4.50553563171e-05 0.000481494628027 0.00043643927171 +UniRef50_Q4L4D1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0059681273456 0.00280436316379 -0.00316376418181 +UniRef50_R9ZJX7 Membrane protein 0.000617291717953 0.000129809540745 -0.000487482177208 +UniRef50_UPI0004728032 hypothetical protein 9.13879209252e-06 6.37477685501e-06 -2.76401523751e-06 +UniRef50_K1UNJ2 0.000111250481525 0.000153266452563 4.2015971038e-05 +UniRef50_O31214 Ubiquinol cytochrome c reductase iron sulfur subunit 0.00271468647303 0.0052603280721 0.00254564159907 +UniRef50_F7Z135 Purine operon repressor, PurR 0.0246115778739 0.00744939611464 -0.0171621817593 +UniRef50_UPI000360723E hypothetical protein 9.33102369204e-05 2.8095261512e-05 -6.52149754084e-05 +UniRef50_Q9CL21 ATP dependent DNA helicase RecQ 2.69715590188e-05 1.06163048148e-05 -1.6355254204e-05 +UniRef50_D4HDF7 Dihydroorotase 8.84732786372e-05 0.00689085363188 0.00680238035324 +UniRef50_C5N054 Transcriptional regulator, GntR family 0.0141059445048 0.00174771802447 -0.0123582264803 +UniRef50_UPI00036E9C27 hypothetical protein 3.28227202705e-05 3.65917202089e-05 3.7689999384e-06 +UniRef50_A8L4W4 Periplasmic binding protein LacI transcriptional regulator 0.0068694884087 0.00214281664935 -0.00472667175935 +UniRef50_UPI0003084509 hypothetical protein 2.13642745381e-05 2.74032755915e-05 6.0390010534e-06 +UniRef50_B2TER4 Lipid A ABC exporter family, fused ATPase and inner membrane subunits 0.000555789561762 0.000101950531138 -0.000453839030624 +UniRef50_M7Y7A3 Gram positive signal peptide protein, YSIRK family 0.00294802808926 0.000787511213846 -0.00216051687541 +UniRef50_B2UZX1 Medium FAD binding subunit of molybdenum enzyme 0.000915588036967 0.00129290121664 0.000377313179673 +UniRef50_Q5HPD3 0.0178369003335 0.00555979371893 -0.0122771066146 +UniRef50_Q8VYF5 N carbamoylputrescine amidase 0.00100311860661 0.0669718784096 0.065968759803 +UniRef50_UPI0003B638F3 NADH quinone oxidoreductase subunit C 1.71585260953e-05 1.43702158245e-05 -2.7883102708e-06 +UniRef50_UPI0001BF61FF hypothetical protein SMAC_10357, partial 3.07715102878e-05 0.000108387659621 7.76161493332e-05 +UniRef50_X4XF16 0.000214016037738 0.00110291576289 0.000888899725152 +UniRef50_A7HVU8 UDP N acetylmuramate L alanine ligase 0.00694832012535 0.00265222348691 -0.00429609663844 +UniRef50_Q7MWU9 Holliday junction DNA helicase RuvB 1.46679249356e-05 1.34160414192e-05 -1.2518835164e-06 +UniRef50_UPI0003498384 hypothetical protein 3.65358747517e-05 1.40246285142e-05 -2.25112462375e-05 +UniRef50_UPI000465F605 hypothetical protein 8.34053882458e-06 3.78458207996e-05 2.9505281975e-05 +UniRef50_A3CMZ0 Na+ driven multidrug efflux pump, putative 0.000400208282712 0.00013515638682 -0.000265051895892 +UniRef50_Q8DVR0 Biofilm regulatory protein A 0.00871238276259 0.0010967606795 -0.00761562208309 +UniRef50_UPI00035C59AE hypothetical protein 5.3390897265e-06 9.26128422881e-06 3.92219450231e-06 +UniRef50_M1M0U2 0.000801822697712 0.00390471017803 0.00310288748032 +UniRef50_L0SNC2 Transketolase 0.00783452176476 0.00507993969819 -0.00275458206657 +UniRef50_F2JKB2 MATE efflux family protein 0.000195540920246 0.00212158824757 0.00192604732732 +UniRef50_V0VWL0 0.000164820678539 7.40620129786e-05 -9.07586655604e-05 +UniRef50_J0I8Y3 0.000992757340026 0.000355928317365 -0.000636829022661 +UniRef50_Q8Y2K1 Macro domain containing protein RSc0334 1.22545773291e-05 0.000250833345073 0.000238578767744 +UniRef50_UPI00037F821B MULTISPECIES 5.46463936188e-06 9.57589200755e-06 4.11125264567e-06 +UniRef50_UPI00047CF530 hypothetical protein 1.07943575231e-05 0.000111973708883 0.00010117935136 +UniRef50_I7F2J7 3.05041227496e-05 6.5983800558e-05 3.54796778084e-05 +UniRef50_A0A023RS80 Peptidase 7.60549339569e-05 0.00374847791694 0.00367242298298 +UniRef50_A0A022H2W5 ABC transporter 9.75879467817e-05 0.000103797831926 6.2098851443e-06 +UniRef50_E6MXW1 4.33169288013e-05 0.00152777307547 0.00148445614667 +UniRef50_S2JUV8 Cache sensor containing methyl accepting chemotaxis sensory transducer 3.91681099492e-05 0.000124260445654 8.50923357048e-05 +UniRef50_J9YQ34 Oligopeptide ABC transporter permease 0.00674065476329 0.0010675470542 -0.00567310770909 +UniRef50_C2MTH9 0.000181528326302 0.00108589908587 0.000904370759568 +UniRef50_A6V0C7 Endoribonuclease YbeY 0.00353893114548 0.00103808296372 -0.00250084818176 +UniRef50_I6U028 Histidine kinase of the competence regulon, ComD 0.00596531478966 0.00164448262536 -0.0043208321643 +UniRef50_A5UN25 Adhesin like protein 0.00267203171297 0.000660439264929 -0.00201159244804 +UniRef50_W5X6E3 Dihydrodipicolinate synthetase 2.23442717949e-05 3.26909896346e-05 1.03467178397e-05 +UniRef50_A5UNS0 0.00143740141139 0.000525786418738 -0.000911614992652 +UniRef50_U5MUD4 0.000984333623217 0.00217971879889 0.00119538517567 +UniRef50_A6LXF6 Extracellular solute binding protein, family 3 0.000424024084238 0.00133299090213 0.000908966817892 +UniRef50_L7WW55 0.00191627895355 0.00126936057727 -0.00064691837628 +UniRef50_W4HNW2 0.000175548100933 6.9101234338e-05 -0.000106446866595 +UniRef50_Q326E0 0.00233156346323 0.000696732845364 -0.00163483061787 +UniRef50_Q87VJ2 DNA mismatch repair protein MutL 0.000283790145698 0.000516974879324 0.000233184733626 +UniRef50_UPI000364E75E hypothetical protein 1.6289614279e-05 1.65944989468e-05 3.048846678e-07 +UniRef50_P76344 Metal binding protein ZinT 0.0010063269456 0.00027685941112 -0.00072946753448 +UniRef50_A6LZ35 Major facilitator superfamily MFS_1 0.000312463084358 0.000615650458012 0.000303187373654 +UniRef50_T1B713 Excinuclease ABC subunit C 0.000114274265039 2.93117279695e-05 -8.49625370695e-05 +UniRef50_A6QDY4 Phage major head protein 0.0163061123752 0.00415989703457 -0.0121462153406 +UniRef50_T8P6W0 Glutathione regulated potassium efflux system protein kefC 0.00142496481699 0.00110007650047 -0.00032488831652 +UniRef50_A7IP37 0.00341658178 0.00110488934465 -0.00231169243535 +UniRef50_UPI0002628657 carbon monoxide dehydrogenase 1.65928134223e-06 7.83776851823e-06 6.178487176e-06 +UniRef50_P24255 RNA polymerase sigma 54 factor 0.00385715440208 0.00118774010612 -0.00266941429596 +UniRef50_G7MAG2 Integral membrane sensor signal transduction histidine kinase 0.000465813045532 0.00102671850504 0.000560905459508 +UniRef50_Q9RW34 0.000133702239266 0.130553421098 0.130419718859 +UniRef50_UPI00046F6D6F hypothetical protein, partial 0.000116180000501 3.77713594034e-05 -7.84086410976e-05 +UniRef50_Q3SJE0 Succinyl diaminopimelate desuccinylase 0.00129564519235 0.00587669986218 0.00458105466983 +UniRef50_I1ZJN7 0.00141461333002 0.00343194160753 0.00201732827751 +UniRef50_Q493N1 Siroheme synthase 5.06156188783e-06 2.28116761026e-05 1.77501142148e-05 +UniRef50_A6LYS9 Conserved repeat domain 0.000683184240824 0.000984901515369 0.000301717274545 +UniRef50_P52132 UPF0380 protein YfjQ 0.00918469424836 0.00424149799921 -0.00494319624915 +UniRef50_A0A023RU18 Cytochrome C assembly protein 0.000139982443328 0.00523220817102 0.00509222572769 +UniRef50_P57090 Probable nicotinate nucleotide adenylyltransferase 7.74800028339e-06 0.00207833460035 0.00207058660007 +UniRef50_R5DD38 0.00126441938643 0.000907950505196 -0.000356468881234 +UniRef50_X5E2G1 Transposase DDE domain protein 3.75262501931e-05 0.00226354497405 0.00222601872386 +UniRef50_X8FIZ9 8.69349635899e-05 0.000348124593075 0.000261189629485 +UniRef50_A0A023XW63 1.09859342255e-05 7.43359240541e-06 -3.55234182009e-06 +UniRef50_UPI00037CE6B4 hypothetical protein 3.51651746946e-06 4.41408208943e-06 8.9756461997e-07 +UniRef50_L1NZC1 Peptidase, M61 family 0.000235358550272 0.00392459053246 0.00368923198219 +UniRef50_H7CZ41 0.000655255359131 0.000315284738642 -0.000339970620489 +UniRef50_A0P4I0 BolA like protein 4.09390414434e-05 0.000121558759842 8.06197183986e-05 +UniRef50_O53871 Putative acyltransferase Rv0859 0.0011653760883 0.0072072261005 0.0060418500122 +UniRef50_I0C833 0.00909588435484 0.00419425782576 -0.00490162652908 +UniRef50_P35484 Dihydrolipoyl dehydrogenase 9.48565100103e-06 9.4082180455e-06 -7.743295553e-08 +UniRef50_UPI000366F4F8 hypothetical protein 3.04557665679e-05 7.11047852039e-05 4.0649018636e-05 +UniRef50_G7MB49 Integral membrane sensor signal transduction histidine kinase 0.000178097469345 0.00156581698798 0.00138771951863 +UniRef50_F0MAK0 ABC type spermidine putrescine transport system, ATPase component 0.000709722431858 0.000247472099328 -0.00046225033253 +UniRef50_P45322 Molybdenum transport system permease protein ModB 0.00738417193878 0.00603700445902 -0.00134716747976 +UniRef50_Q6G9Y4 Phosphate acyltransferase 0.0108364406024 0.000791064605568 -0.0100453759968 +UniRef50_A4VG13 D lactate dehydrogenase 0.000402387962304 0.00308511148134 0.00268272351904 +UniRef50_UPI00036F21BD hypothetical protein 1.71941792921e-06 4.68461902388e-06 2.96520109467e-06 +UniRef50_I0DWZ9 2.76012854526e-05 2.80375176223e-05 4.362321697e-07 +UniRef50_K6CXP7 Hemolysin type calcium binding region 5.60140502968e-05 8.17774092473e-06 -4.78363093721e-05 +UniRef50_UPI0003C7E79E phosphoprotein phosphatase 9.30420957086e-06 1.45630803605e-05 5.25887078964e-06 +UniRef50_Q4FP60 1.0938827632e-05 2.41537458519e-05 1.32149182199e-05 +UniRef50_Q5HP10 0.00793455641721 0.000745051619467 -0.00718950479774 +UniRef50_D7N6D8 Cysteine desulfurase ATPase component domain protein 1.88467875125e-05 5.25705025721e-05 3.37237150596e-05 +UniRef50_UPI0002D4A249 hypothetical protein 9.97859170997e-06 6.23259470773e-06 -3.74599700224e-06 +UniRef50_I4ES52 0.000119331714078 0.00749458221076 0.00737525049668 +UniRef50_O06458 Trehalose synthase 5.31295523526e-06 1.73191428668e-05 1.20061876315e-05 +UniRef50_A0A024HWE9 3.76245357897e-05 4.03277950936e-05 2.7032593039e-06 +UniRef50_D7I534 Acyl CoA thioesterase II 0.000560791751245 0.000285330149942 -0.000275461601303 +UniRef50_K7UZS6 3.0901299642e-05 8.40807501992e-05 5.31794505572e-05 +UniRef50_F5M3N6 Phospholipase D transphosphatidylase 0.00178261564169 0.000749477135326 -0.00103313850636 +UniRef50_V6ACD4 Peptidase M14, carboxypeptidase A 0.000770931904675 0.000696647785508 -7.4284119167e-05 +UniRef50_A5WCY2 FAD linked oxidase domain protein 0.000758397427981 0.00853445979932 0.00777606237134 +UniRef50_A0A009IP40 SnoaL like domain protein 0.000224561812277 8.43970280647e-05 -0.000140164784212 +UniRef50_R6FR88 Two component system response regulator 0.00203042247745 0.00130550034336 -0.00072492213409 +UniRef50_UPI00035F4A59 hypothetical protein 0.000168277426314 0.00010431825591 -6.3959170404e-05 +UniRef50_K8WUE9 Phosphomethylpyrimidine synthase ThiC 9.6474104816e-06 4.26944915255e-05 3.30470810439e-05 +UniRef50_Q9RU56 Osmotically inducible protein C 0.000438937196334 0.0660140364144 0.0655750992181 +UniRef50_UPI00047D8829 erythrose 4 phosphate dehydrogenase 4.8158850138e-05 6.72070788026e-05 1.90482286646e-05 +UniRef50_D3QEY2 4 phosphopantetheinyl transferase 0.00870557370541 0.00404025588936 -0.00466531781605 +UniRef50_R6M7U0 Transporter major facilitator family protein 0.00011958373459 0.00323895818993 0.00311937445534 +UniRef50_UPI00016A29CB hypothetical protein 0.000342963099569 0.000320072121394 -2.2890978175e-05 +UniRef50_K2JWT8 2.46122398948e-05 1.99139740934e-05 -4.6982658014e-06 +UniRef50_Q5WE91 Acetoin dehydrogenase E1 component beta subunit 0.00530261546252 0.000842227625789 -0.00446038783673 +UniRef50_UPI00031ABCD6 hypothetical protein 2.0828158654e-06 2.92321189728e-07 -1.79049467567e-06 +UniRef50_Q2P3Y4 Serine tRNA ligase 2.0856588026e-05 1.13012532969e-05 -9.5553347291e-06 +UniRef50_UPI0003AE0E87 PREDICTED 1.53720745704e-05 4.30159370849e-05 2.76438625145e-05 +UniRef50_S6AS82 1.21246862462e-06 9.43414266463e-06 8.22167404001e-06 +UniRef50_A7ZP69 Nucleoside triphosphatase NudI 0.000163022112397 0.000418888943548 0.000255866831151 +UniRef50_G7M113 Stage III sporulation protein AE 0.000305388425099 0.00113116022178 0.000825771796681 +UniRef50_Q5QW41 8.90234787764e-05 3.40285727732e-05 -5.49949060032e-05 +UniRef50_E0D539 Transposase, putative 0.000317938617421 0.00247439581659 0.00215645719917 +UniRef50_I8RAB7 Bifunctional protein 0.00619245505121 0.00564640726234 -0.00054604778887 +UniRef50_F4PKU5 GTP binding protein 7.09423075916e-06 2.45367823446e-05 1.74425515854e-05 +UniRef50_B9AFH2 Polymorphic outer membrane protein repeat (Fragment) 0.00465239245404 0.000622427999749 -0.00402996445429 +UniRef50_Q9FBM1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.71746473411e-05 0.000873183399587 0.000816008752246 +UniRef50_P40747 5.42123896349e-06 1.6198528947e-05 1.07772899835e-05 +UniRef50_UPI00037F886D hypothetical protein, partial 9.41625882376e-06 6.15004152159e-05 5.20841563921e-05 +UniRef50_Q98C76 Mlr5266 protein 0.00539662797163 0.00112425841702 -0.00427236955461 +UniRef50_UPI0003A068C7 sodium hydrogen exchanger 3.66327363729e-06 8.92278046181e-06 5.25950682452e-06 +UniRef50_S5XZ35 N carbamoyl L amino acid hydrolase 0.00447841557911 0.00112297718678 -0.00335543839233 +UniRef50_UPI0003EDBEBD PREDICTED 1.94336482946e-05 4.2857357702e-05 2.34237094074e-05 +UniRef50_K0TM35 1.052673218e-05 8.84786242565e-05 7.79518920765e-05 +UniRef50_A6LYV0 Response regulator receiver protein 0.000656703973554 0.000743254568069 8.6550594515e-05 +UniRef50_S3MI44 Major facilitator superfamily transporter 0.000280435051188 0.000415369164399 0.000134934113211 +UniRef50_A5IQJ9 0.0124117318935 0.00699150844349 -0.00542022345001 +UniRef50_UPI0004675A7A thymidylate synthase 3.71253420442e-05 0.000300782692181 0.000263657350137 +UniRef50_F5X1D7 Polysaccharide deacetylase family protein 0.00387249400138 0.00162700923417 -0.00224548476721 +UniRef50_Q97F65 Thymidine kinase 2.34972018836e-05 4.12676534309e-05 1.77704515473e-05 +UniRef50_G8VF81 0.000123361434261 0.00624718453483 0.00612382310057 +UniRef50_B5FTN1 D amino acid dehydrogenase small subunit 0.00266003357377 0.00101890091287 -0.0016411326609 +UniRef50_P0DD00 Peptidase T 1.98371540415e-05 0.00232413445904 0.002304297305 +UniRef50_X1XX47 2.76974454028e-06 3.40427439351e-06 6.3452985323e-07 +UniRef50_Q6FD39 Bifunctional protein 0.000114688224755 0.00658110354017 0.00646641531542 +UniRef50_Q2LTM3 Phosphopantothenoylcysteine decarboxylase phosphopantothenate cysteine ligase 0.0182382178451 0.00632858968866 -0.0119096281564 +UniRef50_P0ACB2 Delta aminolevulinic acid dehydratase 0.00511462776883 0.00156798900014 -0.00354663876869 +UniRef50_A5V3T8 Homoserine O succinyltransferase 0.00650266905991 0.00274662881032 -0.00375604024959 +UniRef50_UPI0003B3EBD2 MarR family transcriptional regulator 1.36053655022e-05 4.9056661204e-05 3.54512957018e-05 +UniRef50_UPI0004410872 NAD binding protein 2.25238124737e-05 2.17318480834e-05 -7.919643903e-07 +UniRef50_Q9HQC9 Uridine kinase 9.5557806236e-06 0.000589280326397 0.000579724545773 +UniRef50_G8MW75 9.64283406494e-05 0.00055425707085 0.000457828730201 +UniRef50_P37941 2 oxoisovalerate dehydrogenase subunit beta 0.0228810220159 0.0110168703129 -0.011864151703 +UniRef50_UPI0003B580E0 NADH quinone oxidoreductase subunit N 0.000380684136677 0.000255523260891 -0.000125160875786 +UniRef50_B1T5I2 0.0008644717302 0.00219013728749 0.00132566555729 +UniRef50_P74089 Serine acetyltransferase 1.16275196345e-05 3.39024034125e-05 2.2274883778e-05 +UniRef50_A5IUL9 Membrane flanked domain 0.013333421178 0.0027668044984 -0.0105666166796 +UniRef50_A9HYE8 Fumarate reductase iron sulfur protein 0.00497179103935 0.00105108424525 -0.0039207067941 +UniRef50_Q5KX81 Octanoyltransferase LipM 0.0117946890581 0.00188028250751 -0.00991440655059 +UniRef50_Q4L855 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0188163277998 0.00410456856888 -0.0147117592309 +UniRef50_A0A052JJE9 PF04304 family protein 9.30866365262e-06 1.65685528877e-05 7.25988923508e-06 +UniRef50_UPI0004790305 hypothetical protein 2.28734759483e-05 1.38956799455e-05 -8.9777960028e-06 +UniRef50_P0AEW8 Inosine guanosine kinase 0.00329720460027 0.000416698482988 -0.00288050611728 +UniRef50_U6AE90 Iron siderophore receptor protein 0.000546134873074 0.000455565921252 -9.0568951822e-05 +UniRef50_UPI00037FD430 hypothetical protein 0.000422004747285 0.000514968538689 9.2963791404e-05 +UniRef50_I3ZB99 Anti anti sigma regulatory factor 1.34470147202e-05 0.00170866844165 0.00169522142693 +UniRef50_X7FC63 DNA topology modulation protein FlaR 1.20272092473e-05 7.27519882398e-05 6.07247789925e-05 +UniRef50_K7RWS7 UTP hexose 1 phosphate uridylyltransferase 0.000219894750786 0.016278315577 0.0160584208262 +UniRef50_UPI00038EEF34 PREDICTED 5.36723583906e-05 8.38514547387e-05 3.01790963481e-05 +UniRef50_P33226 Cytochrome c type protein TorC 0.00304466669113 0.000661340127464 -0.00238332656367 +UniRef50_F4A9P0 0.000648973046738 0.000532102171523 -0.000116870875215 +UniRef50_A0A024E2H8 0.000569942476081 0.000841436265288 0.000271493789207 +UniRef50_K0SEA3 0.000236578271577 2.30476863029e-05 -0.000213530585274 +UniRef50_UPI00047DC367 hypothetical protein 0.000189622619208 2.05012572066e-05 -0.000169121362001 +UniRef50_UPI0004636621 LysR family transcriptional regulator 7.7137009514e-05 4.27484330411e-05 -3.43885764729e-05 +UniRef50_E6MWP3 Ribonuclease R 0.0005618383897 0.00267058580429 0.00210874741459 +UniRef50_Q5LLN0 Maf like protein SPO3892 0.000651022424552 0.000299813913899 -0.000351208510653 +UniRef50_A0A025DCK3 0.00196534011341 0.00066522059301 -0.0013001195204 +UniRef50_C1FNN6 Xanthine uracil permease family protein 0.000578975112097 0.00183787029211 0.00125889518001 +UniRef50_Q9K1B0 NADH quinone oxidoreductase subunit L 0.00019261353775 0.00365883782312 0.00346622428537 +UniRef50_UPI0004784A1B hypothetical protein 5.49168705589e-06 4.72741849433e-06 -7.6426856156e-07 +UniRef50_UPI00046D54E5 hypothetical protein 3.37512462937e-05 2.49413424635e-05 -8.8099038302e-06 +UniRef50_D3QF80 Teichoic acid biosynthesis protein X 0.01260565396 0.00315157068384 -0.00945408327616 +UniRef50_V6UWS0 4.61070431122e-05 9.61659818164e-05 5.00589387042e-05 +UniRef50_UPI00037F4484 ADP ribose pyrophosphatase 1.60510613515e-05 4.13069991843e-05 2.52559378328e-05 +UniRef50_I6Y6R6 FAD containing monooxygenase EthA 4.33565901519e-06 0.00119064230854 0.00118630664952 +UniRef50_UPI000464816A hypothetical protein 3.41086035292e-06 1.78316111783e-06 -1.62769923509e-06 +UniRef50_UPI0003099314 hypothetical protein 7.94262649132e-06 1.31194741009e-05 5.17684760958e-06 +UniRef50_C7NK94 Molybdopterin guanine dinucleotide biosynthesis protein A 3.20945684836e-06 1.03596168931e-05 7.15016004474e-06 +UniRef50_Q5GT42 NADH quinone oxidoreductase subunit C 2.38919801395e-05 4.02367479138e-05 1.63447677743e-05 +UniRef50_B9DPC0 DNA mismatch repair protein MutL 0.0105323675018 0.00351169813867 -0.00702066936313 +UniRef50_B7VH15 8 amino 7 oxononanoate synthase 4.72090388881e-06 6.5426369729e-06 1.82173308409e-06 +UniRef50_B0V8Y0 0.000905562938967 0.0211990466116 0.0202934836726 +UniRef50_C6SRM3 0.00526241595226 0.00273873043014 -0.00252368552212 +UniRef50_UPI00038126DC hypothetical protein 4.40952202213e-05 1.17696306707e-05 -3.23255895506e-05 +UniRef50_Q1CRC0 DNA helicase II 7.03390041314e-05 0.00347929390156 0.00340895489743 +UniRef50_H3XJS2 HsdM N terminal domain protein 8.18920046117e-05 0.000131809027421 4.99170228093e-05 +UniRef50_A5WEV0 Serine O acetyltransferase 0.00140328078208 0.000735608824968 -0.000667671957112 +UniRef50_Q2RMV4 Peptidyl tRNA hydrolase 6.82353715596e-05 3.26482736208e-05 -3.55870979388e-05 +UniRef50_Q8CMP5 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.0139113553394 0.00270038693372 -0.0112109684057 +UniRef50_B6IRZ1 Phospholipase D 0.0033528290026 0.000661904767747 -0.00269092423485 +UniRef50_Q0I1I7 tRNA tmRNA ) methyltransferase 0.00394839151024 0.00619091115691 0.00224251964667 +UniRef50_M2HS82 N acetylmuramoyl L alanine amidase 0.00413667678269 0.00088874606378 -0.00324793071891 +UniRef50_A3PKI1 NADH quinone oxidoreductase subunit B 2 0.00458773028275 0.00118823496732 -0.00339949531543 +UniRef50_U3T6X0 0.000118334165783 0.00702522070571 0.00690688653993 +UniRef50_UPI00047861DB hypothetical protein 1.0575360446e-05 0.000572678691158 0.000562103330712 +UniRef50_UPI000379BC38 hypothetical protein 4.07926122275e-06 8.87549613469e-06 4.79623491194e-06 +UniRef50_UPI00030F43CB hypothetical protein 2.10293445681e-05 6.25829915054e-06 -1.47710454176e-05 +UniRef50_F8HCR3 Pyrimidine nucleoside phosphorylase 0.00451151931001 0.000570170699734 -0.00394134861028 +UniRef50_Q2NIS4 Uridylate kinase 2.11655019825e-05 2.08421570789e-05 -3.233449036e-07 +UniRef50_Q51697 Isoquinoline 1 oxidoreductase subunit alpha 3.3828006435e-05 6.41318624773e-05 3.03038560423e-05 +UniRef50_UPI0002896149 penicillin binding protein 2B 4.1256257506e-06 1.18698254272e-05 7.7441996766e-06 +UniRef50_L8BQX8 1.7143598997e-05 0.001051786854 0.001034643255 +UniRef50_A5UJP8 Adhesin like protein 0.00198957688591 0.000543399143023 -0.00144617774289 +UniRef50_Q2YSH2 0.025784256351 0.0086808658139 -0.0171033905371 +UniRef50_K0RL16 0.000229707498285 3.21104214386e-05 -0.000197597076846 +UniRef50_P09772 Nitrogenase molybdenum iron protein beta chain 0.0139273469701 0.00386512868688 -0.0100622182832 +UniRef50_A4YC85 Protoheme IX farnesyltransferase 2 1.05538520455e-05 1.94996543834e-05 8.9458023379e-06 +UniRef50_UPI0003696809 hypothetical protein 0.000200850807268 0.000109233211971 -9.1617595297e-05 +UniRef50_UPI00035C30D5 hypothetical protein 3.93936534939e-06 2.3581753157e-05 1.96423878076e-05 +UniRef50_R4VP47 Twin arginine translocation pathway signal 0.012262702714 0.0025642447106 -0.0096984580034 +UniRef50_W5X7K8 Polyribonucleotide nucleotidyltransferase 5.04790710489e-05 6.0176745144e-06 -4.44613965345e-05 +UniRef50_P0AGG9 Metalloprotease TldD 0.00275566454213 0.000579749737165 -0.00217591480496 +UniRef50_E4NBU8 2.48455827795e-05 3.37817215202e-05 8.9361387407e-06 +UniRef50_UPI000367E778 hypothetical protein 4.81897543951e-05 7.87393820955e-05 3.05496277004e-05 +UniRef50_W8RNL3 5.05451662561e-05 9.28884659938e-05 4.23432997377e-05 +UniRef50_Q8PGP9 Proline tRNA ligase 0.00373782922409 0.00830906379545 0.00457123457136 +UniRef50_A4E7N7 1.02246847351e-05 0.000228554735532 0.000218330050797 +UniRef50_UPI00047E0F2D hypothetical protein 9.02701809486e-05 3.09742967116e-05 -5.9295884237e-05 +UniRef50_P75863 0.00295708657843 0.00116231213264 -0.00179477444579 +UniRef50_UPI0000379EF0 hypothetical protein 0.00951739575211 0.00695175862668 -0.00256563712543 +UniRef50_B7UM47 Nucleoid occlusion factor SlmA 0.00445714182167 0.000824139642406 -0.00363300217926 +UniRef50_Q8VQ99 Serine rich adhesin for platelets 0.0133651410297 0.00307465969447 -0.0102904813352 +UniRef50_UPI000472F1A4 AsnC family transcriptional regulator, partial 0.000209721294802 9.25324162328e-05 -0.000117188878569 +UniRef50_P37567 Probable tRNA dihydrouridine synthase 1 2.48992172685e-05 8.76244473598e-06 -1.61367725325e-05 +UniRef50_A0A024H9L1 Short chain dehydrogenase 0.0011585744695 0.000420878914765 -0.000737695554735 +UniRef50_Q9HVL0 UPF0114 protein PA4574 0.000465553612639 0.000435356322155 -3.0197290484e-05 +UniRef50_A5W6U4 NAD kinase 0.00135514604476 0.00914883585972 0.00779368981496 +UniRef50_A8WXW9 Protein CBG04553 5.94233117324e-07 8.70296404213e-05 8.6435407304e-05 +UniRef50_UPI000470F5F1 indole 3 glycerol phosphate synthase 3.74433064122e-06 4.52793155202e-06 7.836009108e-07 +UniRef50_B2HWA5 0.000750638356551 0.00410416543211 0.00335352707556 +UniRef50_Q02151 0.00582056033768 0.00191034817387 -0.00391021216381 +UniRef50_Q3JHC8 8.9262173431e-06 2.89319566816e-05 2.00057393385e-05 +UniRef50_F4JP46 Formyltetrahydrofolate deformylase 2, mitochondrial 4.01045676852e-06 2.14538218759e-05 1.74433651074e-05 +UniRef50_Q3JQU1 0.000362050924882 0.000158986113162 -0.00020306481172 +UniRef50_P58381 Enoyl [acyl carrier protein] reductase [NADH] 2 0.0233456732439 0.00360406785844 -0.0197416053855 +UniRef50_P37560 0.0247124566727 0.00494176026267 -0.01977069641 +UniRef50_A7BEA1 0.000195588595265 0.00393825298334 0.00374266438808 +UniRef50_R5E7A9 Extracellular ligand binding receptor 9.93384181239e-05 0.00109204434406 0.000992705925936 +UniRef50_Q9RRM5 Transport protein, putative 0.000156850133866 0.0566886280836 0.0565317779497 +UniRef50_I0GP22 0.000574851759676 0.00955635529577 0.00898150353609 +UniRef50_UPI000467D29B translation initiation factor IF 3 0.000284736057238 0.000345096788494 6.0360731256e-05 +UniRef50_Q8D2L3 Fumarate hydratase class II 6.38846853821e-06 2.87768563892e-05 2.2388387851e-05 +UniRef50_B8DP86 Ribosomal RNA small subunit methyltransferase H 5.55877566644e-06 3.00860929869e-05 2.45273173205e-05 +UniRef50_P45625 0.0191200132519 0.00611551050911 -0.0130045027428 +UniRef50_UPI00035FFFC6 hypothetical protein 4.89220189296e-06 7.10232832152e-06 2.21012642856e-06 +UniRef50_UPI000329D7B6 0.00152043927363 0.000409088821109 -0.00111135045252 +UniRef50_G8XAZ1 Nitrate nitrite antiporter 5.34104805209e-06 1.97567236534e-05 1.44156756013e-05 +UniRef50_A0A024L3K6 Fimbrial biogenesis outer membrane usher protein 0.00136673023498 0.00096768544727 -0.00039904478771 +UniRef50_UPI0004623CA1 hypothetical protein TRAVEDRAFT_50483 0.00146433848469 0.00114734779734 -0.00031699068735 +UniRef50_V6ECI2 Dihydroxy acid dehydratase 0.00300089830918 0.00117364870241 -0.00182724960677 +UniRef50_A0A039PB00 Integral membrane protein 0.00010239065735 7.24339404585e-05 -2.99567168915e-05 +UniRef50_D3E2D1 Fumarate hydratase FumA3 0.00455044301987 0.000575292282856 -0.00397515073701 +UniRef50_O33518 Protein translocase subunit SecF 0.0181422904964 0.00466741639474 -0.0134748741017 +UniRef50_Q3KIA5 Protein RnfH 2.13451397922e-05 5.22917510373e-05 3.09466112451e-05 +UniRef50_UPI00037B6FC9 hypothetical protein 5.31470782947e-05 1.59501656606e-05 -3.71969126341e-05 +UniRef50_O27572 Probable tRNA pseudouridine synthase D 0.00560182684156 0.000757531807255 -0.00484429503431 +UniRef50_P24891 Cytochrome c oxidase subunit 3 9.05422833056e-06 1.85659615324e-05 9.51173320184e-06 +UniRef50_C7MF62 Alpha L fucosidase 0.000484450537803 0.00649556280741 0.00601111226961 +UniRef50_I4E0F8 0.00735859046839 0.00230994579008 -0.00504864467831 +UniRef50_UPI00021931F3 amino acid adenylation protein 2.56154256215e-05 8.82164135343e-06 -1.67937842681e-05 +UniRef50_A5IUD1 0.0272242820652 0.00262765055399 -0.0245966315112 +UniRef50_R9TX51 YlmE 0.00706167836271 0.00261917102393 -0.00444250733878 +UniRef50_B5Y1Z5 Protein ApaG 0.000701549052867 4.21089715591e-05 -0.000659440081308 +UniRef50_E8QVJ8 Molybdenum ABC transporter ModA 0.000962945748232 0.000554111084734 -0.000408834663498 +UniRef50_U4KGU9 Toluene tolerance protein Ttg2B 0.000168924000892 3.32640212303e-05 -0.000135659979662 +UniRef50_UPI00042B69C5 Translation initiation factor 3 protein isoform 4, partial 0.000122654838245 4.90649270653e-05 -7.35899111797e-05 +UniRef50_UPI000416FC07 ADP ribose pyrophosphatase 1.7406307468e-05 0.00102772278334 0.00101031647587 +UniRef50_C5Q752 0.00615978929589 0.00278123323943 -0.00337855605646 +UniRef50_UPI0003815DCD hypothetical protein 1.79626024847e-05 9.78533272344e-06 -8.17726976126e-06 +UniRef50_UPI000362D4DF hypothetical protein 4.33292488794e-06 5.24399720686e-06 9.1107231892e-07 +UniRef50_P9WP46 Carbon starvation protein A homolog 5.53498517408e-05 0.001450268556 0.00139491870426 +UniRef50_Q5NP61 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.00311847761641 0.0108143639703 0.00769588635389 +UniRef50_UPI00046F7845 hypothetical protein 9.77725619819e-05 6.97851834327e-05 -2.79873785492e-05 +UniRef50_F2D112 Predicted protein 0.000276070279952 0.000457255780377 0.000181185500425 +UniRef50_Q3J4J9 Ribonuclease E 0.0041726369635 0.000890576157891 -0.00328206080561 +UniRef50_P59399 Histidinol dehydrogenase 3.58042793865e-06 5.26211012032e-06 1.68168218167e-06 +UniRef50_W5BPL1 7.20976231916e-05 1.97741842596e-05 -5.2323438932e-05 +UniRef50_UPI0004738B2C hypothetical protein 1.22342457111e-05 1.38680059825e-05 1.6337602714e-06 +UniRef50_K4QBP0 K12555 penicillin binding protein 2A 0.000170237920242 0.000113656204698 -5.6581715544e-05 +UniRef50_UPI00030CFAAF hypothetical protein 5.42388370583e-06 0.000129024575317 0.000123600691611 +UniRef50_J1B0P3 0.00729065126538 0.00560599604239 -0.00168465522299 +UniRef50_UPI0003B4DEC2 DNA gyrase subunit B 7.58102851781e-06 2.06709034176e-05 1.30898748998e-05 +UniRef50_O34384 0.000393898423154 0.109211752741 0.108817854318 +UniRef50_Q8DT90 Ribonuclease Z 0.00556528829248 0.00304074178836 -0.00252454650412 +UniRef50_A9WMF4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0004127114371 0.00808159626611 0.00766888482901 +UniRef50_A8J8D8 Predicted protein 7.89779326069e-05 5.23951874321e-05 -2.65827451748e-05 +UniRef50_Q2YI45 Streptokinase like protein 0.000439832627451 0.000766000648442 0.000326168020991 +UniRef50_Q1GHZ2 GTPase Der 0.00525917139903 0.000531736013761 -0.00472743538527 +UniRef50_Q6GIW1 UPF0178 protein SAR0734 0.00989749961365 0.00641997573627 -0.00347752387738 +UniRef50_Q1R9Q5 6.32142872301e-05 6.36635190352e-05 4.492318051e-07 +UniRef50_A3UXL8 1.86111392492e-05 0.00030931744026 0.000290706301011 +UniRef50_R6QI78 RpiR family Helix turn helix domain containing protein 0.00124130768918 0.000716737921957 -0.000524569767223 +UniRef50_D3E0Y1 Thymidylate synthase ThyA 0.0028632083678 0.000360875810829 -0.00250233255697 +UniRef50_A7X5Z9 Ferredoxin NADP reductase 0.0143967877412 0.00407085605633 -0.0103259316849 +UniRef50_Q83H92 Uroporphyrinogen decarboxylase 3.86158700379e-06 6.50499141093e-06 2.64340440714e-06 +UniRef50_UPI0004786744 hypothetical protein 2.86886674473e-05 0.000504092251724 0.000475403584277 +UniRef50_Q3JVX1 2.74543377408e-05 2.66449036922e-05 -8.094340486e-07 +UniRef50_P44324 Aspartate ammonia lyase 7.81706715078e-06 0.00884354366833 0.00883572660118 +UniRef50_C5YPR8 9.42582286729e-05 2.50149047621e-05 -6.92433239108e-05 +UniRef50_B2ZY73 1.16147818039e-05 0.000490013030344 0.00047839824854 +UniRef50_P0AGC1 Hexose phosphate transport protein 0.00288028788074 0.000703338153865 -0.00217694972687 +UniRef50_UPI0001FFF263 putative enterobactin iron transport system, ATP binding protein 3.85906011636e-06 0.000280956816684 0.000277097756568 +UniRef50_A3M517 0.000317215116685 0.00423129872881 0.00391408361212 +UniRef50_B1K7T3 Two component transcriptional regulator, LuxR family 0.00127799304247 0.000572669132518 -0.000705323909952 +UniRef50_B0T202 UPF0386 protein Caul_4643 0.000643442026451 8.2726730099e-05 -0.000560715296352 +UniRef50_T1B6U2 0.000145227997145 2.60747201073e-05 -0.000119153277038 +UniRef50_A8TBH7 3.33006228323e-05 2.71059672822e-05 -6.1946555501e-06 +UniRef50_F3L3B7 1.05663787293e-05 0.00259526988956 0.00258470351083 +UniRef50_Q1IXV7 UDP N acetylenolpyruvoylglucosamine reductase 0.000207790452577 0.0133036150785 0.0130958246259 +UniRef50_A8TBH9 2.28016211279e-05 1.85556357129e-05 -4.245985415e-06 +UniRef50_Q8DEZ6 Dual specificity RNA methyltransferase RlmN 0.00191758539698 0.00198092217823 6.333678125e-05 +UniRef50_T1DG32 Phosphoribosylformylglycinamidine synthase 5.05035815728e-05 7.64946016312e-05 2.59910200584e-05 +UniRef50_I3XA84 5.329161694e-06 1.95837486089e-05 1.42545869149e-05 +UniRef50_UPI0004655A42 MULTISPECIES 1.29751929707e-05 4.02567288e-05 2.72815358293e-05 +UniRef50_M3BXT0 DNA polymerase II large subunit 5.2803885481e-05 0.000106517108153 5.3713222672e-05 +UniRef50_A8LRN8 0.0098425821442 2.64643439579e-05 -0.00981611780024 +UniRef50_P65098 Isocitrate dehydrogenase [NADP] 0.000222932078485 0.000952584681021 0.000729652602536 +UniRef50_UPI00036FD78D hypothetical protein 6.41691420969e-05 2.8685344635e-05 -3.54837974619e-05 +UniRef50_J0FJU8 0.000730687607927 0.000391492522588 -0.000339195085339 +UniRef50_X6EJ38 1.05868996491e-05 2.95767613642e-06 -7.62922351268e-06 +UniRef50_F7X313 0.000190627024615 5.57962401566e-05 -0.000134830784458 +UniRef50_V9VVH8 Flagellar protein FlgJ 0.000181366325563 9.96839753491e-05 -8.16823502139e-05 +UniRef50_C5BY82 Glutamate racemase 0.00013291760171 0.00896206782647 0.00882915022476 +UniRef50_H1LKH2 0.00013577153381 3.6154790343e-05 -9.9616743467e-05 +UniRef50_F7X315 0.000180502741009 9.24195866583e-05 -8.80831543507e-05 +UniRef50_UPI0003B4E9FE membrane protein, partial 1.07165518852e-05 3.44624577348e-05 2.37459058496e-05 +UniRef50_I4KLM3 Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein 0.000457799522156 0.0014228379447 0.000965038422544 +UniRef50_F8GY06 Endoribonuclease L PSP 0.000748288081995 3.68237718954e-05 -0.0007114643101 +UniRef50_G7M214 Pyruvate, water dikinase 0.000614755258589 0.0017276457733 0.00111289051471 +UniRef50_UPI000471162E hypothetical protein 4.59840773834e-05 0.000142586141608 9.66020642246e-05 +UniRef50_UPI000400283D hypothetical protein 3.14234853305e-05 2.41539503825e-05 -7.269534948e-06 +UniRef50_L7WWZ3 0.00134486477337 0.00101833346619 -0.00032653130718 +UniRef50_UPI0004651131 hypothetical protein 1.35461501585e-05 1.75834418796e-05 4.0372917211e-06 +UniRef50_Z5LDC7 8.81984199907e-06 1.46000310718e-05 5.78018907273e-06 +UniRef50_Q2YUU9 Superoxide dismutase [Mn Fe] 2 0.0172192372112 0.00742138719141 -0.00979785001979 +UniRef50_B6IVA8 0.000274786408743 2.20366318272e-05 -0.000252749776916 +UniRef50_P77307 Probable iron export permease protein FetB 0.00193535853081 0.00114289132711 -0.0007924672037 +UniRef50_UPI00047CBBFB 2 amino 4 ketopentanoate thiolase 1.74393197276e-05 2.43748277575e-05 6.9355080299e-06 +UniRef50_M9VDV1 ComE operon protein 1 0.000677992423077 0.00411448007384 0.00343648765076 +UniRef50_A0A023WVI0 Aldehyde dehydrogenase 0.000754962195672 0.00107917038281 0.000324208187138 +UniRef50_L8GN65 6.94448575617e-05 0.0042846689115 0.00421522405394 +UniRef50_W4U756 Helicase 0.000143441913114 0.0064589008652 0.00631545895209 +UniRef50_R7PWJ9 Glycosyl transferase group 1 family 0.00279894568767 0.00150713321948 -0.00129181246819 +UniRef50_U6ACI3 0.000682203594306 0.00207239793119 0.00139019433688 +UniRef50_P15505 Glycine dehydrogenase , mitochondrial 6.55682981838e-06 8.59353400528e-06 2.0367041869e-06 +UniRef50_X1P9R1 Marine sediment metagenome DNA, contig 1.02556610051e-05 0.000196793142582 0.000186537481577 +UniRef50_UPI0004655CAA hypothetical protein 0.000105516926407 1.57294126552e-05 -8.97875137518e-05 +UniRef50_F4LAH5 7.21638694007e-05 9.30099593277e-05 2.0846089927e-05 +UniRef50_Q9HYL3 Regulatory protein NosR 0.000611603201991 0.000269419404064 -0.000342183797927 +UniRef50_UPI0003621B43 hypothetical protein, partial 2.14774681963e-05 1.32079766016e-05 -8.2694915947e-06 +UniRef50_F4C7A6 0.000132501228975 4.23127123377e-05 -9.01885166373e-05 +UniRef50_A0A058SUW3 Aminopeptidase N 0.00135730539713 0.000603066188573 -0.000754239208557 +UniRef50_C1KYE1 UPF0145 protein Lm4b_00206 0.000252976754703 0.00262455437968 0.00237157762498 +UniRef50_X1HW00 Marine sediment metagenome DNA, contig 2.24918768759e-05 3.10753539228e-05 8.5834770469e-06 +UniRef50_UPI0004240D5A deoxyguanosinetriphosphate triphosphohydrolase 7.67713099362e-05 2.25363850358e-05 -5.42349249004e-05 +UniRef50_Q7VSF4 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.00121381161181 0.000703135012379 -0.000510676599431 +UniRef50_P0AFM7 Phage shock protein A 0.00430849669855 0.00131110077178 -0.00299739592677 +UniRef50_D9RI97 KAP family P loop domain 2.86097518987e-05 1.84998222023e-05 -1.01099296964e-05 +UniRef50_P95676 Alpha acetolactate decarboxylase 0.00502561603977 0.00460209865024 -0.00042351738953 +UniRef50_Q5HLB9 0.000404449273767 1.3402279265e-05 -0.000391046994502 +UniRef50_P0ACN9 HTH type transcriptional repressor CytR 0.0034596958985 0.000787133462401 -0.0026725624361 +UniRef50_UPI0002899BE2 LysR family transcriptional regulator 3.38659087046e-05 0.000355382544664 0.000321516635959 +UniRef50_I0C253 Arginine permease 0.0215364927056 0.0048707194372 -0.0166657732684 +UniRef50_I6TND0 0.0149196745975 0.00041399538111 -0.0145056792164 +UniRef50_D2VJL9 Predicted protein 4.16212611656e-06 2.47944454847e-05 2.06323193681e-05 +UniRef50_B5FI46 Ribulokinase 0.00314829642289 0.000828862732927 -0.00231943368996 +UniRef50_F6AE19 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000432504887664 0.000342291567166 -9.0213320498e-05 +UniRef50_UPI00046A2ACC hypothetical protein 6.03336173221e-05 4.09835822265e-05 -1.93500350956e-05 +UniRef50_R7E993 ABC transporter ATP binding protein 0.000380417985794 0.00843277692777 0.00805235894198 +UniRef50_UPI0002625F3E inner membrane translocator 2.80488921251e-05 8.81686262712e-06 -1.9232029498e-05 +UniRef50_UPI00034F3E03 PREDICTED 5.78674528727e-06 1.35868164547e-05 7.80007116743e-06 +UniRef50_K2ET09 5.13683777198e-05 8.71913120182e-06 -4.2649246518e-05 +UniRef50_G8VFU9 0.000245754526308 0.00818443852214 0.00793868399583 +UniRef50_A5UMD6 Imidazole glycerol phosphate synthase subunit HisH 0.00432207144325 0.000510634072383 -0.00381143737087 +UniRef50_E8JET5 0.000699816215255 0.000210998085778 -0.000488818129477 +UniRef50_UPI0004767186 tyrosine protein kinase 5.14798070652e-06 1.24490306067e-05 7.30104990018e-06 +UniRef50_F0YJ58 0.000159894413794 0.000430282827554 0.00027038841376 +UniRef50_UPI00046523D9 LuxR family transcriptional regulator 1.33395908673e-05 0.000107855666581 9.45160757137e-05 +UniRef50_UPI000479578E dTDP 4 dehydrorhamnose 3,5 epimerase 3.05745072204e-05 2.16364904375e-05 -8.9380167829e-06 +UniRef50_A6LTH3 Phosphotransferase system PTS, lactose cellobiose specific IIA subunit 0.000301988791085 0.00053693946399 0.000234950672905 +UniRef50_UPI0000F2F50C glutamyl Q tRNA ligase 0.000148616531043 0.00468366758614 0.0045350510551 +UniRef50_UPI0001D2EE73 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000278660683749 1.83035316085e-05 -0.00026035715214 +UniRef50_N0C910 IS3 Spn1, transposase 0.0293567644896 0.0167948224045 -0.0125619420851 +UniRef50_Q8DWS9 Membrane protein, putative 0.00047176087326 2.63539647265e-06 -0.000469125476787 +UniRef50_A9BQJ1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0164518363516 0.00915393675399 -0.00729789959761 +UniRef50_O66937 4 alpha glucanotransferase 3.23286954483e-06 0.000326711990062 0.000323479120517 +UniRef50_A6FVX6 Transcriptional regulator, MarR family protein 2.04133963314e-05 9.16620503164e-05 7.1248653985e-05 +UniRef50_UPI00047CC502 hypothetical protein 5.42685064378e-06 7.56700283146e-06 2.14015218768e-06 +UniRef50_Q3IVA9 Transcriptional regulator, LacI family 0.000130167582368 0.000197977679469 6.7810097101e-05 +UniRef50_B8EMC6 40 residue YVTN family beta propeller repeat protein 9.08940874882e-06 1.56118981588e-05 6.52248940998e-06 +UniRef50_D8GUE2 Predicted transcriptional regulator, marR family 0.000814717961549 0.000759664973668 -5.5052987881e-05 +UniRef50_O22514 Proline rich protein 8.03917357581e-05 1.76450228547e-05 -6.27467129034e-05 +UniRef50_U7G864 1.87288527963e-05 2.71089722478e-05 8.3801194515e-06 +UniRef50_E0SFZ4 Cobalamin synthesis protein 3.49261746501e-06 4.34942840909e-06 8.5681094408e-07 +UniRef50_Q9JVX8 DNA polymerase III subunit alpha 3.30162672461e-05 0.00336147975305 0.0033284634858 +UniRef50_P54388 NADP specific glutamate dehydrogenase 0.000337907212892 0.0104425555563 0.0101046483434 +UniRef50_W1U3S2 0.000256878736369 0.00249157891501 0.00223470017864 +UniRef50_M7XCW4 Sodium 1.78618307919e-05 2.77278640058e-05 9.8660332139e-06 +UniRef50_UPI0003B534E7 50S ribosomal protein L33 0.001376077638 0.00273300282519 0.00135692518719 +UniRef50_UPI00046CEEB8 hypothetical protein 4.5502863458e-05 1.62557467417e-05 -2.92471167163e-05 +UniRef50_UPI00016C3E34 30S ribosomal protein S4 5.32299285346e-05 0.000237052723203 0.000183822794668 +UniRef50_Q5HRX0 0.00886325496954 0.00478165043983 -0.00408160452971 +UniRef50_UPI0003608953 hypothetical protein 3.55755776883e-06 9.03389444709e-06 5.47633667826e-06 +UniRef50_M1F771 6.84979970328e-05 5.93571061799e-05 -9.1408908529e-06 +UniRef50_O87198 Homocitrate synthase 4.97507446483e-06 0.0462358003109 0.0462308252364 +UniRef50_Q55863 Pyruvate kinase 1 1.809883044e-05 1.49656893162e-05 -3.1331411238e-06 +UniRef50_UPI00046D1C25 NADH 0.000115721758712 3.90686069697e-05 -7.66531517423e-05 +UniRef50_A7NJ00 7.76789925156e-05 0.000121540426983 4.38614344674e-05 +UniRef50_A4EH59 0.000461785872597 0.000512015368673 5.0229496076e-05 +UniRef50_I1EUA2 1.49779302758e-05 3.04821339869e-06 -1.19297168771e-05 +UniRef50_B5YZZ5 Ethanolamine utilization cobalamin adenosyltransferase 0.000322178653362 0.000244063392719 -7.8115260643e-05 +UniRef50_UPI000373E5C0 hypothetical protein 3.41967650421e-06 4.21488006869e-06 7.9520356448e-07 +UniRef50_P0ADK2 0.00111854703114 0.000848379043652 -0.000270167987488 +UniRef50_G0DTN7 0.000158607558343 0.00484630578995 0.00468769823161 +UniRef50_H6VX72 0.00113245796655 0.00218255043805 0.0010500924715 +UniRef50_F5Y9N5 CoxE family protein 0.00052451288528 0.00121952776517 0.00069501487989 +UniRef50_Q28K41 Amino acid amide ABC transporter substrate binding protein, HAAT family 0.00636023133631 0.000762844857664 -0.00559738647865 +UniRef50_Q0C0L1 ATP dependent protease ATPase subunit HslU 0.00799186931531 0.00142960710333 -0.00656226221198 +UniRef50_Q9RZB3 dTDP glucose 4,6 dehydratase 0.000106134767253 0.0641356942014 0.0640295594341 +UniRef50_Q8E418 DNA translocase FtsK 0.00511595474315 0.00405708926061 -0.00105886548254 +UniRef50_B0VB35 Aldehyde dehydrogenase, phenylacetic acid degradation 0.000126233983302 0.00635835113196 0.00623211714866 +UniRef50_UPI0004799256 hypothetical protein 9.38623079481e-06 1.67740282149e-05 7.38779742009e-06 +UniRef50_O66490 Adenylate kinase 9.94787082059e-06 5.64104386291e-05 4.64625678085e-05 +UniRef50_UPI00046ED1E9 ABC transporter permease 1.77766167725e-05 0.0002052359528 0.000187459336028 +UniRef50_O32978 O acetylserine sulfhydrylase 0.000509942216265 0.00154193267087 0.0010319904546 +UniRef50_UPI0004091FE8 helicase 6.17598646915e-07 1.23310297591e-05 1.17134311122e-05 +UniRef50_A4SFY3 Serine hydroxymethyltransferase 0.000125927143782 0.000176834838788 5.0907695006e-05 +UniRef50_D7BLM0 Extracellular solute binding protein family 5 0.00030202361837 0.0101818178918 0.00987979427343 +UniRef50_S1SCM4 LigA 0.000197274840002 0.00084575975439 0.000648484914388 +UniRef50_P42914 Probable fimbrial chaperone YraI 0.00301925230417 0.000517721307994 -0.00250153099618 +UniRef50_P44992 0.000959939369103 0.000924123353799 -3.5816015304e-05 +UniRef50_C6BH49 Coproporphyrinogen III oxidase 0.000179186387112 0.00367707002983 0.00349788364272 +UniRef50_UPI0003B759B0 urease subunit alpha 7.53532873147e-06 2.93930562942e-05 2.18577275627e-05 +UniRef50_A3PL00 TspO and MBR like proteins 0.013832853738 0.00823006501382 -0.00560278872418 +UniRef50_B7LKC2 Cytoskeleton protein RodZ 0.0029254646315 0.00270144923128 -0.00022401540022 +UniRef50_Q3J225 Bacteriophage head tail adaptor 0.00279930612105 0.00170375022228 -0.00109555589877 +UniRef50_J7PFG8 9.06782017489e-05 0.000708295725507 0.000617617523758 +UniRef50_T0TD56 Carbonic anhydrase 0.00542660840758 0.000483065376332 -0.00494354303125 +UniRef50_Q59087 Catabolic 3 dehydroquinate dehydratase 0.000294910928794 0.00619208702156 0.00589717609277 +UniRef50_D7WB79 Succinate dehydrogenase flavoprotein subunit 0.000243215437692 0.00569247306942 0.00544925763173 +UniRef50_Q3IZA2 Trehalose 6 phosphate phosphatase 0.000600768982605 0.000270519119271 -0.000330249863334 +UniRef50_I3BX28 3.90161153479e-05 7.10788845762e-05 3.20627692283e-05 +UniRef50_G7M5J0 SEC C motif domain protein 0.000101748244975 0.000962600041849 0.000860851796874 +UniRef50_UPI0002003503 ABC transporter, ATP binding protein, partial 1.68027076777e-05 3.41597938571e-05 1.73570861794e-05 +UniRef50_A6LYT6 Baseplate J family protein 0.000650381606123 0.00133483873173 0.000684457125607 +UniRef50_T1YD73 Gluconate operon transcriptional repressor 0.0121377771378 0.00867676883901 -0.00346100829879 +UniRef50_B8CZ12 ATP synthase subunit alpha 4.59639012406e-06 2.23952231133e-05 1.77988329892e-05 +UniRef50_M1N6Y0 0.000613024942053 0.00153220657516 0.000919181633107 +UniRef50_Q9I4L1 Probable deoxyguanosinetriphosphate triphosphohydrolase 0.000775851158395 0.000270893432557 -0.000504957725838 +UniRef50_UPI00036419A0 hypothetical protein 6.20276273565e-06 9.530619177e-06 3.32785644135e-06 +UniRef50_Q04J73 Holo [acyl carrier protein] synthase 4.45916815382e-05 0.00251176677793 0.00246717509639 +UniRef50_S5RIC3 0.000490241543964 0.000760472202226 0.000270230658262 +UniRef50_UPI000364B6F1 hypothetical protein 5.80894541569e-06 0.000251114759401 0.000245305813985 +UniRef50_B0CE03 Acyl carrier protein 0.0017154385674 0.00276833520407 0.00105289663667 +UniRef50_I3TL38 UDP 2,3 diacylglucosamine hydrolase 0.000165322330884 0.000473770115279 0.000308447784395 +UniRef50_Q9RWB2 Citrate synthase 8.2782650063e-06 0.0385771009313 0.0385688226663 +UniRef50_D4LGP4 Tryptophanyl tRNA synthetase 0.000618812028312 0.00416823570762 0.00354942367931 +UniRef50_A6LY82 Alpha beta superfamily like hydrolase 0.0013730328516 0.00145778439525 8.475154365e-05 +UniRef50_V5XSJ4 Lipoprotein 2.36818614762e-05 4.3447100638e-05 1.97652391618e-05 +UniRef50_P20356 Regulatory protein RepA 0.000249990721098 0.016155365836 0.0159053751149 +UniRef50_UPI0003B686D0 PREDICTED 2.54906601227e-05 4.96192012366e-05 2.41285411139e-05 +UniRef50_A0A033G8H1 3.24643977845e-05 5.21538458851e-05 1.96894481006e-05 +UniRef50_H1XZH3 Aldo keto reductase 0.00128867913382 0.0102641093346 0.00897543020078 +UniRef50_L8NEI8 Lipopolysaccharide kinase family 0.00108529104183 0.000322750497486 -0.000762540544344 +UniRef50_G8V9R1 Permease 0.000574851759676 0.0041469115867 0.00357205982702 +UniRef50_W1YFP0 Nitrate reductase, beta subunit 5.79082618336e-05 1.70082095485e-05 -4.09000522851e-05 +UniRef50_UPI000312D337 hypothetical protein 2.48120615481e-05 5.37398358811e-05 2.8927774333e-05 +UniRef50_E8U983 GAF domain protein 1.77074143499e-05 0.0012936265149 0.00127591910055 +UniRef50_I6TS63 ABC transporter permease 0.00532495166308 0.00171476255206 -0.00361018911102 +UniRef50_K4KH04 Protein yffB 7.2248439142e-05 4.55911756842e-05 -2.66572634578e-05 +UniRef50_G7M8Y3 Flagellar biosynthetic protein FlhF 8.60530369777e-05 0.000409394080697 0.000323341043719 +UniRef50_P52311 Modification methylase XorII 0.0146474993026 0.00170584286275 -0.0129416564398 +UniRef50_F0XXV7 0.000413160251245 0.00060959984102 0.000196439589775 +UniRef50_E5QY81 0.00205589412918 1.62694473932e-05 -0.00203962468179 +UniRef50_UPI00047BEFD4 HAD family hydrolase 1.5244037559e-05 4.04382963381e-05 2.51942587791e-05 +UniRef50_G8PNB5 Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase 8.697833844e-05 0.000465159563536 0.000378181225096 +UniRef50_A0R079 Glutamine synthetase 1 0.00618672950365 0.0238869541307 0.0177002246271 +UniRef50_E2NST4 0.000149861358975 0.00100896906212 0.000859107703145 +UniRef50_V5DMC9 Selenocysteine specific translation elongation factor 0.00413498163856 0.000328129672448 -0.00380685196611 +UniRef50_W8UPZ5 Oxygenase subunit of ring hydroxylating dioxygenase 0.000446643936995 0.0085848265494 0.0081381826124 +UniRef50_Q3J1A8 1 deoxy D xylulose 5 phosphate synthase 1 0.00504664504189 0.00119862230715 -0.00384802273474 +UniRef50_C1DPC3 Cyclic pyranopterin monophosphate synthase accessory protein 2.42227587904e-05 3.86187660998e-05 1.43960073094e-05 +UniRef50_P0AEJ3 Isochorismate synthase EntC 0.00337275905119 0.000939285038917 -0.00243347401227 +UniRef50_B7G0W9 Predicted protein 0.000101605224956 3.24695860583e-05 -6.91356388977e-05 +UniRef50_G9YRQ6 1.45412439407e-05 2.9235060717e-05 1.46938167763e-05 +UniRef50_Q5HKS8 Cell wall surface anchor family protein 0.00845933571301 0.00388288149502 -0.00457645421799 +UniRef50_J7MBF6 0.000320466675773 0.000256679647439 -6.3787028334e-05 +UniRef50_P18156 Glycerol uptake facilitator protein 0.0125053930879 0.00498983932975 -0.00751555375815 +UniRef50_A5EPJ2 DNA ligase 2.2825243182e-06 3.47441570205e-06 1.19189138385e-06 +UniRef50_T2QWI5 4.29567620508e-06 3.02467766786e-05 2.59511004735e-05 +UniRef50_Q2FZ98 UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141 0.0205090440704 0.00514926989288 -0.0153597741775 +UniRef50_Q2IM08 2.78216273688e-05 2.09805728043e-05 -6.8410545645e-06 +UniRef50_UPI00036488F7 hypothetical protein 6.92167640613e-06 2.09258195278e-05 1.40041431217e-05 +UniRef50_Q99Y73 Endonuclease MutS2 0.00706263776976 0.00623248559896 -0.0008301521708 +UniRef50_A5UP17 O linked GlcNAc transferase 0.0033237759242 0.000205795613371 -0.00311798031083 +UniRef50_UPI00047C28A2 3,4 dihydroxy 2 butanone 4 phosphate synthase 5.59605003346e-06 0.000103052724277 9.74566742435e-05 +UniRef50_UPI00042B2DF2 Mitochondrial ribosomal L11 like protein 1.71016689707e-05 8.13424551744e-05 6.42407862037e-05 +UniRef50_UPI00037FB3DE hypothetical protein 6.63790731981e-06 4.00451823048e-06 -2.63338908933e-06 +UniRef50_E9T6B7 Periplasmic binding protein 2.40085008347e-06 1.44946054887e-05 1.20937554052e-05 +UniRef50_S5CVC3 Permeases of the major facilitator superfamily 0.000973706705447 0.00688556650192 0.00591185979647 +UniRef50_UPI0003778082 hypothetical protein 3.63013420273e-06 6.15724720193e-06 2.5271129992e-06 +UniRef50_Q3HKI7 TraG 0.037812308622 0.0105863415612 -0.0272259670608 +UniRef50_P0AF68 tRNA threonylcarbamoyladenosine biosynthesis protein TsaE 0.00177211458413 0.00115810472625 -0.00061400985788 +UniRef50_UPI0002657B93 PREDICTED 1.13205118991e-05 1.00591106229e-05 -1.2614012762e-06 +UniRef50_Q1CS39 Uroporphyrinogen III cosynthase 0.000735241296867 0.00258144079485 0.00184619949798 +UniRef50_P28722 0.000710199154162 0.00375208555703 0.00304188640287 +UniRef50_Q6GIH0 UPF0051 protein SAR0880 0.0382831699031 0.0832777096523 0.0449945397492 +UniRef50_UPI0003657D51 hypothetical protein 3.78243745544e-06 5.86980088185e-06 2.08736342641e-06 +UniRef50_D3E3M2 2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase 0.00305550564105 0.00136802267205 -0.001687482969 +UniRef50_Q88MV0 Tyrosine recombinase XerD 0.000692567283908 0.00547392385327 0.00478135656936 +UniRef50_A6LWP7 0.000224249102288 0.000343391517665 0.000119142415377 +UniRef50_R7IGE7 Cyclodextrin ABC transporter permease protein 0.000135623708568 0.00166343344137 0.0015278097328 +UniRef50_U5MS83 0.000691844497729 0.000898955221447 0.000207110723718 +UniRef50_R4X107 Anti sigma factor antagonist 2.95772072742e-05 0.00637752975321 0.00634795254594 +UniRef50_S6AEE6 Sulfate ABC transporter substrate binding protein CysP 0.000591948497369 0.00176220616743 0.00117025767006 +UniRef50_UPI000473E8E4 hypothetical protein, partial 9.33657234311e-06 1.34248000638e-05 4.08822772069e-06 +UniRef50_X1SHF8 Marine sediment metagenome DNA, contig 1.95327356487e-05 9.25159393856e-05 7.29832037369e-05 +UniRef50_F8G4J9 Major facilitator transporter 0.000547425438424 0.00019492851828 -0.000352496920144 +UniRef50_UPI000469A483 hypothetical protein 1.51890095805e-06 8.7464839371e-06 7.22758297905e-06 +UniRef50_UPI00033433D0 PREDICTED 4.05926809863e-05 4.3033913243e-05 2.4412322567e-06 +UniRef50_G7U7D4 Sugar binding periplasmic protein 0.000243082038334 0.00497042504008 0.00472734300175 +UniRef50_A4WZR2 0.000274646083169 0.000108427347369 -0.0001662187358 +UniRef50_F8HEX8 NADPH dependent fmn reductase 0.00441043002963 0.00443407671267 2.364668304e-05 +UniRef50_R0EB23 8.6836115524e-06 5.18817703389e-05 4.31981587865e-05 +UniRef50_O66821 Hypoxanthine guanine phosphoribosyltransferase 3.30983163738e-05 2.64649898864e-05 -6.6333264874e-06 +UniRef50_V5UIB0 CoA transferase 0.000926301094676 0.000824547351209 -0.000101753743467 +UniRef50_UPI0004713504 hypothetical protein 2.37581834582e-06 3.16257156852e-05 2.92498973394e-05 +UniRef50_UPI0004627EF4 hypothetical protein 3.18574123072e-06 6.6924765642e-06 3.50673533348e-06 +UniRef50_UPI0003291A81 PREDICTED 0.000140923910209 0.000127514630105 -1.3409280104e-05 +UniRef50_B9DT59 Sensor histidine kinase 0.0046540926974 0.00202108316608 -0.00263300953132 +UniRef50_Q3J2Y0 ABC oligo dipeptide transporter, fused ATPase subunits 0.000121586395184 0.000322003593166 0.000200417197982 +UniRef50_UPI0001746395 Gluconate transporter 2.06752779835e-05 2.91398513791e-05 8.4645733956e-06 +UniRef50_UPI0003730BCE hypothetical protein 1.3859305725e-05 1.15377818312e-05 -2.3215238938e-06 +UniRef50_Q131M0 Peptidyl tRNA hydrolase 7.09153483425e-05 3.36154058082e-05 -3.72999425343e-05 +UniRef50_P10725 Alanine racemase 1 7.70874581362e-06 0.00187601451452 0.00186830576871 +UniRef50_J9P8Y9 2.71129857262e-05 2.62081901225e-05 -9.047956037e-07 +UniRef50_A9BXI8 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 0.00157348506985 0.000525835247257 -0.00104764982259 +UniRef50_A0A010IRI1 Copper resistance , CopA family protein 6.34785855703e-05 0.00150847159516 0.00144499300959 +UniRef50_F6FVA2 NADH quinone oxidoreductase, F subunit 8.63153937979e-05 0.0358285430734 0.0357422276796 +UniRef50_Q2SBV0 Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation 9.68740775547e-05 0.000613247427171 0.000516373349616 +UniRef50_Q4L8V4 Sensory transduction protein LytR 0.0076652359971 0.00381291693776 -0.00385231905934 +UniRef50_UPI00037BA9AE hypothetical protein 2.9552656197e-05 1.16965239277e-05 -1.78561322693e-05 +UniRef50_Q87HJ2 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 4.40081771352e-06 6.82662716615e-06 2.42580945263e-06 +UniRef50_B9KKK1 Transcriptional regulator, DeoR family 0.0100023148431 0.00516534795837 -0.00483696688473 +UniRef50_UPI0002628822 inosine uridine preferring nucleoside hydrolase 4.51647171601e-06 9.42215297768e-06 4.90568126167e-06 +UniRef50_UPI00047EB05D hypothetical protein 8.3523522637e-06 2.18774661579e-05 1.35251138942e-05 +UniRef50_Q4JMN7 Predicted flagellar hook capping protein 7.98460703656e-06 1.09763008102e-05 2.99169377364e-06 +UniRef50_UPI000475B51F hypothetical protein 0.000191374008792 0.00149954655469 0.0013081725459 +UniRef50_UPI00028835CE glutamate dehydrogenase 2.91370767041e-05 2.62062440621e-06 -2.65164522979e-05 +UniRef50_UPI00047A79FF LysR family transcriptional regulator 3.37756427904e-05 5.9431210237e-05 2.56555674466e-05 +UniRef50_Q3A248 Phosphopentomutase 1.49042528663e-05 1.75922515904e-05 2.6879987241e-06 +UniRef50_S2R0I0 Capsular polysaccharide synthesis protein 8.41593076416e-06 1.2508220615e-05 4.09228985084e-06 +UniRef50_P06149 D lactate dehydrogenase 0.00145169944198 0.0116939203239 0.0102422208819 +UniRef50_UPI00037C3443 hypothetical protein 2.01509662751e-05 3.76295302541e-05 1.7478563979e-05 +UniRef50_D2TN56 Translocation and assembly module TamA 0.00248494516097 0.000972029695316 -0.00151291546565 +UniRef50_R5IZV2 Rod shape determining protein MreB 0.000681000017594 0.00291018265994 0.00222918264235 +UniRef50_P96662 0.000224249102288 0.000431829731805 0.000207580629517 +UniRef50_P71311 0.00499343963263 0.000705936347077 -0.00428750328555 +UniRef50_Q18BQ3 UPF0271 protein CD630_13840 0.00104337951329 0.000270106742557 -0.000773272770733 +UniRef50_UPI00047614B3 glutamate dehydrogenase 8.85420021886e-06 0.000401351760438 0.000392497560219 +UniRef50_Q3IVA8 0.0012561916514 0.000404543431768 -0.000851648219632 +UniRef50_R4Q3U4 0.00507079684378 0.00120537430691 -0.00386542253687 +UniRef50_P56793 50S ribosomal protein L16, chloroplastic 0.000260335164724 0.00263412892114 0.00237379375642 +UniRef50_Q8SQT7 Elongation factor 2 1.48196021316e-06 1.83406852024e-06 3.5210830708e-07 +UniRef50_Q3IVA2 0.00402760804569 0.00109672781525 -0.00293088023044 +UniRef50_G7WCF3 5.72526777832e-05 0.0011012361577 0.00104398347992 +UniRef50_Q9HW91 Methyl accepting chemotaxis protein PctB 0.00128484215468 0.000568132442427 -0.000716709712253 +UniRef50_N0CH82 Periplasmic binding protein 3.74979745749e-06 8.21694446542e-06 4.46714700793e-06 +UniRef50_Q6GCY8 Purine nucleoside phosphorylase DeoD type 0.0147502511198 0.00792402011862 -0.00682623100118 +UniRef50_M4R901 0.000129128616484 0.00309372930715 0.00296460069067 +UniRef50_Q03727 Transport processing ATP binding protein ComA 0.0193933915309 0.0104226043337 -0.0089707871972 +UniRef50_P19926 Glucose 1 phosphatase 0.00316095952383 0.00123806024309 -0.00192289928074 +UniRef50_V5VFB4 Transcriptional regulator 0.000128688405295 0.0053388440446 0.0052101556393 +UniRef50_Q3IWX7 Putative phage tail tube protein FII 0.0388398445081 0.00593171217248 -0.0329081323356 +UniRef50_UPI000309F49D hypothetical protein 1.08743757233e-05 1.02066381502e-05 -6.677375731e-07 +UniRef50_UPI0002B9193E hypothetical protein 3.82107221024e-06 0.00369339488053 0.00368957380832 +UniRef50_UPI0004739302 urea ABC transporter ATP binding protein, partial 0.000326150705729 0.000211296038916 -0.000114854666813 +UniRef50_M5U8U8 UPF0246 protein RSSM_04267 8.6930495024e-06 8.38172890116e-06 -3.1132060124e-07 +UniRef50_W0ACK7 3.47572723268e-05 6.47003350976e-05 2.99430627708e-05 +UniRef50_Q5HL17 Pyruvate phosphate dikinase 0.0103404362982 0.00472827464497 -0.00561216165323 +UniRef50_P0C348 Peptide chain release factor 2 0.000859378625711 0.000202734580221 -0.00065664404549 +UniRef50_UPI00036F8282 hypothetical protein 5.27083749727e-05 8.60476422921e-05 3.33392673194e-05 +UniRef50_Q8XW28 Urocanate hydratase 3.71421864845e-05 0.000139629577818 0.000102487391333 +UniRef50_Q4L811 Type II pantothenate kinase 0.0101039800657 0.00294481699924 -0.00715916306646 +UniRef50_Q8G4X3 Glutamyl Q tRNA synthetase 4.29572152604e-06 5.27560670209e-06 9.7988517605e-07 +UniRef50_UPI0001850812 shikimate 5 dehydrogenase 4.69357380054e-05 4.69444404941e-05 8.7024887e-09 +UniRef50_Q51391 Glycerol 3 phosphate regulon repressor 0.00077097421028 0.000425937555561 -0.000345036654719 +UniRef50_F0YC37 0.000183633372986 0.000196404531762 1.2771158776e-05 +UniRef50_A3TSY0 Hemolysin type calcium binding protein 1.44255462819e-06 2.22952713197e-06 7.8697250378e-07 +UniRef50_T0SW85 Transcription repair coupling factor 0.00620322160439 0.00331695598001 -0.00288626562438 +UniRef50_UPI00036A708B hypothetical protein 1.14746387603e-05 6.11765316988e-06 -5.35698559042e-06 +UniRef50_Q8CS12 0.00770624124112 0.0046984691421 -0.00300777209902 +UniRef50_UPI0003EB5DA3 50S ribosomal protein L36 9.59421150765e-05 0.000860145743281 0.000764203628205 +UniRef50_R4WT31 Ribonucleoside diphosphate reductase 9.56358134288e-05 0.0079963623657 0.00790072655227 +UniRef50_UPI00016AD465 hypothetical protein 2.80806776835e-05 0.000237999962373 0.00020991928469 +UniRef50_UPI000262572E acetoin dehydrogenase E2 subunit dihydrolipoyllysine residue acetyltransferase 4.30090147939e-06 1.09067259605e-05 6.60582448111e-06 +UniRef50_UPI000367C756 hypothetical protein 0.000146291438332 0.000391575811449 0.000245284373117 +UniRef50_B5XYB9 Hydroxylamine reductase 0.00236008466842 0.000877741260164 -0.00148234340826 +UniRef50_A5UNH1 Lipopolysaccharide cholinephosphotransferase 0.00348214839823 0.000526121124967 -0.00295602727326 +UniRef50_UPI000408C071 hypothetical protein 1.94642124517e-05 3.4385740373e-05 1.49215279213e-05 +UniRef50_UPI0001BF66E3 hypothetical protein SMAC_10240 0.000142623931941 0.000537925129529 0.000395301197588 +UniRef50_Q55480 2.74486089077e-05 7.70182588018e-05 4.95696498941e-05 +UniRef50_L7WZA3 0.0175953067907 0.0010197621946 -0.0165755445961 +UniRef50_P16263 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.0338216081e-05 0.000146751354286 0.000136413138205 +UniRef50_B9KS54 0.00586237270687 0.00136259929603 -0.00449977341084 +UniRef50_B9KS55 9.59710141129e-05 0.000150161036537 5.41900224241e-05 +UniRef50_Q041L5 ABC type cobalt transport system, permease component CbiQ related transporter 0.0183782597345 0.0121791887134 -0.0061990710211 +UniRef50_UPI0003768F93 hypothetical protein 2.35481000484e-06 3.26200521049e-06 9.0719520565e-07 +UniRef50_I3UM51 0.000644764907314 0.000292830894442 -0.000351934012872 +UniRef50_F6D1X2 Dihydroorotase 0.00157733689139 0.000602662883296 -0.000974674008094 +UniRef50_F9YWS1 0.000225094201639 0.0034173265364 0.00319223233476 +UniRef50_A6LRH2 Histidine kinase internal region 0.000474382357875 0.000650807799911 0.000176425442036 +UniRef50_UPI000382BC4C hypothetical protein 0.00182551647073 0.000568346028769 -0.00125717044196 +UniRef50_W0YNP0 AMP binding protein 0.000288314307811 0.000111510398435 -0.000176803909376 +UniRef50_A4XNT2 0.00117565402438 0.000875416956622 -0.000300237067758 +UniRef50_A8LLT3 Phosphate acyltransferase 0.00702147520337 0.00140734449033 -0.00561413071304 +UniRef50_UPI0004675B23 queuine tRNA ribosyltransferase 4.39710445179e-06 6.33537500147e-05 5.89566455629e-05 +UniRef50_F3YPM3 Prephenate dehydratase 0.00329528259278 0.00658125512197 0.00328597252919 +UniRef50_Q9X5M1 Diaminopimelate decarboxylase 0.000112090516671 0.00330277620106 0.00319068568439 +UniRef50_H8FVT2 CRISPR associated helicase Cas3 0.000172652722503 2.01437157537e-05 -0.000152509006749 +UniRef50_UPI00035C4745 hypothetical protein 5.05968255118e-06 4.55761272721e-05 4.05164447209e-05 +UniRef50_Q2NI23 DNA primase small subunit PriS 0.0029373144459 0.000728989697082 -0.00220832474882 +UniRef50_UPI000310953A quinone oxidoreductase 5.4375340031e-06 5.95408010082e-05 5.41032670051e-05 +UniRef50_R0QWV3 7.24736421567e-05 0.000718815179355 0.000646341537198 +UniRef50_Q5HLY5 0.00517833153236 0.00346075285877 -0.00171757867359 +UniRef50_UPI00037F4158 hypothetical protein 9.91524753771e-06 3.16205065818e-05 2.17052590441e-05 +UniRef50_UPI0003725D3A hypothetical protein 3.12817244687e-06 4.16706338478e-05 3.85424614009e-05 +UniRef50_Q8EWD1 Serine hydroxymethyltransferase 6.19148684601e-05 0.00010554432247 4.36294540099e-05 +UniRef50_A5IQ08 0.00201046198469 0.000424916122588 -0.0015855458621 +UniRef50_B2TJK8 Spore coat protein, CotS family 0.000225151650042 0.00202254361545 0.00179739196541 +UniRef50_UPI000367BD21 hypothetical protein, partial 4.12055616661e-06 3.56846262027e-06 -5.5209354634e-07 +UniRef50_UPI000255A109 FrpC, partial 3.08036837243e-06 2.59877457288e-06 -4.8159379955e-07 +UniRef50_UPI000372D109 hypothetical protein 1.22020072374e-05 2.10262272843e-05 8.8242200469e-06 +UniRef50_U7FV20 6.39548651838e-05 1.60285012635e-05 -4.79263639203e-05 +UniRef50_X5K4I4 ABC transporter, ATP binding permease protein 0.00465586292638 0.00124285992577 -0.00341300300061 +UniRef50_D5STS9 0.0132522273193 0.00215545832029 -0.011096768999 +UniRef50_Q5XAE6 Biotin carboxyl carrier protein of acetyl CoA carboxylase 0.0043836658129 0.000379421891038 -0.00400424392186 +UniRef50_J2YH36 4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein 0.000172368031437 0.00140500936133 0.00123264132989 +UniRef50_UPI00036BF70E hypothetical protein 7.70368651236e-06 0.00115534270734 0.00114763902083 +UniRef50_C5BLW1 Type IV pilus biogenesis stability protein PilW 8.63231413958e-06 2.04455636538e-05 1.18132495142e-05 +UniRef50_A7FZ47 30S ribosomal protein S13 0.0154109451276 0.00266251245188 -0.0127484326757 +UniRef50_W9WZ32 2.11218766553e-05 2.38252674965e-05 2.7033908412e-06 +UniRef50_UPI00028929E9 iron ABC transporter permease 1.67519009136e-05 2.00352549588e-05 3.2833540452e-06 +UniRef50_O66680 Leucine tRNA ligase subunit alpha 2.48571772918e-06 9.46962923702e-06 6.98391150784e-06 +UniRef50_A0A021WYJ6 5.64858555577e-05 3.63438559073e-05 -2.01419996504e-05 +UniRef50_Q0ADJ4 Nucleotidyl transferase 0.00129186278556 0.00460170035933 0.00330983757377 +UniRef50_UPI00037CB764 hypothetical protein 1.01562500624e-05 1.8431241672e-05 8.2749916096e-06 +UniRef50_UPI00018512AA 3 hydroxybutyryl CoA dehydrogenase 7.84977158673e-05 0.00153801146882 0.00145951375295 +UniRef50_Q9RUS8 Spermidine putrescine ABC transporter, permease protein 0.00018294959072 0.0238697283824 0.0236867787917 +UniRef50_UPI00032A2821 PREDICTED 0.00242545884748 0.000427679407501 -0.00199777943998 +UniRef50_V6EZP6 1.75155715992e-05 1.68437649277e-05 -6.718066715e-07 +UniRef50_R4XX04 Phage related protein 7.43082655217e-05 0.00565355020273 0.00557924193721 +UniRef50_UPI0004758F1B hypothetical protein 6.59494023382e-05 1.27971992744e-05 -5.31522030638e-05 +UniRef50_P26395 Protein RfbI 1.11922254866e-05 1.6310161089e-05 5.1179356024e-06 +UniRef50_A4VMA8 Trk system potassium uptake protein 0.00188204989891 0.000938080986251 -0.000943968912659 +UniRef50_Q28TW0 Molybdenum cofactor sulfurylase 9.57124006777e-06 1.06440384377e-05 1.07279836993e-06 +UniRef50_UPI000287C21F phosphoenolpyruvate protein phosphotransferase 3.91619910976e-06 0.000322519280133 0.000318603081023 +UniRef50_Q8A0B5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 5.76859855432e-06 0.00516171581395 0.0051559472154 +UniRef50_Q2J545 Cysteine tRNA ligase 3.13529146269e-06 1.00214658228e-05 6.88617436011e-06 +UniRef50_Q8CMP3 Transporter 0.00923917330682 0.00313485147203 -0.00610432183479 +UniRef50_A4G266 Phosphate starvation inducible protein 0.000278991505659 0.00169310147226 0.0014141099666 +UniRef50_A7X442 NH dependent NAD(+) synthetase 0.0249703906252 0.0107362000497 -0.0142341905755 +UniRef50_UPI000471E89E pseudoazurin 0.000269817270939 0.000154455829908 -0.000115361441031 +UniRef50_F0RN28 Carboxyl terminal protease 0.000222649047128 0.0471826445006 0.0469599954535 +UniRef50_A6L7M5 Tryptophan synthase beta chain 2.86118987558e-06 0.0010859989366 0.00108313774672 +UniRef50_A4WU00 O antigen polymerase 0.00594215826773 0.00239549665815 -0.00354666160958 +UniRef50_E0MTZ8 Replication protein C 2.46580535838e-05 5.60785617514e-06 -1.90501974087e-05 +UniRef50_Q72KJ4 Pili assembly protein pilC 0.000232914420024 0.0442081867655 0.0439752723455 +UniRef50_X5DQJ7 ABC type glycine betaine L proline transporter, substrate binding lipoprotein 0.000181483648491 0.00459624578059 0.0044147621321 +UniRef50_P0CZ58 Fructose bisphosphate aldolase 0.0114601414292 0.00464358806397 -0.00681655336523 +UniRef50_M4ZP55 7 carboxy 7 deazaguanine synthase 0.000155344028336 0.00215656158993 0.00200121756159 +UniRef50_R5IQ58 Collagenase and related proteases 0.000580853182019 0.00117439606395 0.000593542881931 +UniRef50_V5X0C1 Nitrate reductase 0.0120705325822 0.00400976230393 -0.00806077027827 +UniRef50_UPI00046807CF tRNA delta isopentenylpyrophosphate transferase 2.12031682705e-05 1.1385556075e-05 -9.8176121955e-06 +UniRef50_W6RZJ6 Amidase 0.000364134394391 0.000668144940642 0.000304010546251 +UniRef50_C7R130 D lactate dehydrogenase 3.96102821484e-05 0.00350871892545 0.0034691086433 +UniRef50_D8JJL0 OmpW family protein 0.000200790419604 0.00482100762317 0.00462021720357 +UniRef50_UPI0003716EE9 amino acid ABC transporter 6.11544587779e-06 0.00157542638822 0.00156931094234 +UniRef50_I3THN7 Binding protein dependent transport systems inner membrane component 0.00589932216329 0.00347370654768 -0.00242561561561 +UniRef50_UPI000441338E hypothetical protein AURDEDRAFT_112432 3.82578597592e-06 1.83276821125e-06 -1.99301776467e-06 +UniRef50_G7M1N3 0.00072439395647 0.000716471502476 -7.922453994e-06 +UniRef50_UPI00046ADCCD hypothetical protein 0.000280397079295 6.82258494432e-05 -0.000212171229852 +UniRef50_Q9CIV7 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 0.00225561750896 0.00108558558255 -0.00117003192641 +UniRef50_W7D2I2 6.23198570249e-05 0.0001552207238 9.29008667751e-05 +UniRef50_UPI00047862A8 molecular chaperone DnaJ 4.59511379862e-06 1.26932244701e-05 8.09811067148e-06 +UniRef50_D4ZAF4 Iron ABC transporter, permease protein 0.00163088669817 0.000777544647996 -0.000853342050174 +UniRef50_B0R332 Tryptophan synthase beta chain 3.70425743152e-05 1.84429427873e-05 -1.85996315279e-05 +UniRef50_M9RQH1 GTPase HflX 0.00325100596897 0.000550866565026 -0.00270013940394 +UniRef50_Q9ZBH5 Diaminopimelate decarboxylase 0.00288743181558 0.00519032246359 0.00230289064801 +UniRef50_A1HSV6 3.60400990814e-05 9.73536189965e-05 6.13135199151e-05 +UniRef50_Q5F6T9 4.80136652557e-05 0.000536945932242 0.000488932266986 +UniRef50_UPI00047BB8D4 lysyl tRNA synthetase 3.47551737236e-06 1.26051048771e-05 9.12958750474e-06 +UniRef50_Q9K0S5 0.000198328890814 0.00146335225451 0.0012650233637 +UniRef50_A5VFM2 tRNA specific 2 thiouridylase MnmA 0.00316692690828 0.00110555685172 -0.00206137005656 +UniRef50_UPI00045D6A2D PREDICTED 0.000100241794407 7.46819813078e-06 -9.27735962762e-05 +UniRef50_C4XPA8 2 isopropylmalate synthase 7.96967558959e-06 8.42148555821e-06 4.5180996862e-07 +UniRef50_UPI0003316925 PREDICTED 7.65691660987e-05 5.99019686016e-05 -1.66671974971e-05 +UniRef50_I4DZ12 Response regulator homolog 0.00513658891457 0.00190985672017 -0.0032267321944 +UniRef50_C0ENU4 0.000139646004992 5.4765808357e-05 -8.4880196635e-05 +UniRef50_Q167Z8 ExbD TolR family biopolymer transport protein, putative 0.0295957277679 0.000758875099014 -0.0288368526689 +UniRef50_UPI0002488642 deoxyguanosinetriphosphate triphosphohydrolase 5.5381885817e-05 3.90276877867e-05 -1.63541980303e-05 +UniRef50_R9SLZ8 0.00457359287735 0.000299307471484 -0.00427428540587 +UniRef50_UPI0002000344 hypothetical protein 0.000313700267745 0.000952263440841 0.000638563173096 +UniRef50_D9USA0 YjeF family protein 1.13887077819e-05 7.26357641651e-05 6.12470563832e-05 +UniRef50_B6IS55 Oxidoreductase, short chain dehydrogenase 0.00026397621598 0.000646564723045 0.000382588507065 +UniRef50_P45104 Ribosomal large subunit pseudouridine synthase B 0.00242504510072 0.00256826798284 0.00014322288212 +UniRef50_A5UP79 Integrase recombinase protein 0.00212371951123 0.000267658645188 -0.00185606086604 +UniRef50_UPI000467ACA1 hypothetical protein 2.17928376163e-05 2.53818858009e-05 3.5890481846e-06 +UniRef50_P0A9S6 Glycerol dehydrogenase 0.00405720776021 0.00155954928252 -0.00249765847769 +UniRef50_Q8X6C7 Xanthine dehydrogenase molybdenum binding subunit 0.00221401709463 0.000409536987534 -0.0018044801071 +UniRef50_E4ZBB9 0.000364134394391 0.00202507087052 0.00166093647613 +UniRef50_D2S3Z6 SSS sodium solute transporter superfamily 0.000278327865847 0.0351865339579 0.0349082060921 +UniRef50_Q4FS37 Ribosomal RNA small subunit methyltransferase G 1.006468976e-05 0.0118076778847 0.0117976131949 +UniRef50_C1FUR3 HTH domain protein 0.000620108639606 0.00120866584384 0.000588557204234 +UniRef50_C1CEF7 Mobile genetic element 2.00515107928e-05 7.39458745753e-05 5.38943637825e-05 +UniRef50_UPI00047EF6CC bis tetraphosphatase 2.36683132814e-05 0.000331859667447 0.000308191354166 +UniRef50_I0EKX1 Antibiotic transport system permease protein 0.000102950724233 0.00186667679025 0.00176372606602 +UniRef50_A8LJS3 1.91389439336e-05 6.31886418883e-06 -1.28200797448e-05 +UniRef50_M1MUH2 Flagellar hook associated protein 2 8.59876967804e-05 0.000642207565288 0.000556219868508 +UniRef50_A8LJS1 0.000332096172905 4.12804261207e-05 -0.000290815746784 +UniRef50_X3EKE6 0.00177567888227 0.000554814616145 -0.00122086426612 +UniRef50_Q01S06 0.00893348343297 0.00043007287164 -0.00850341056133 +UniRef50_A3WQ21 0.000142416686256 0.00140844720854 0.00126603052228 +UniRef50_K0EZI3 6.50429601061e-06 0.00019013440353 0.000183630107519 +UniRef50_P0CE57 Transposase InsH for insertion sequence element IS5R 0.0245133048012 0.0107978567289 -0.0137154480723 +UniRef50_B3PCQ0 ACT domain protein phosphoserine phosphatase SerB 9.27484002093e-05 0.00595274781151 0.0058599994113 +UniRef50_Q5HR97 Teichoic acids export ATP binding protein TagH 0.01901823912 0.00349176346949 -0.0155264756505 +UniRef50_P37386 Probable cadmium transporting ATPase 0.0101330420044 0.00523637317601 -0.00489666882839 +UniRef50_Q71YA8 4 hydroxy tetrahydrodipicolinate reductase 0.00720325615299 0.00300631777061 -0.00419693838238 +UniRef50_D2NR34 ATPase with chaperone activity, ATP binding subunit 0.000134968337407 0.00505207978537 0.00491711144796 +UniRef50_P17618 Riboflavin biosynthesis protein RibD 6.79130371155e-06 0.000207239793125 0.000200448489413 +UniRef50_F6P2R4 0.00577697229933 0.00128903920536 -0.00448793309397 +UniRef50_Q58N56 Gp12 7.85021435854e-05 1.7730402895e-05 -6.07717406904e-05 +UniRef50_P0AD15 Sensor histidine kinase YehU 0.00340611863324 0.000995295032133 -0.00241082360111 +UniRef50_R7PSE2 0.00237831582337 0.00108330787793 -0.00129500794544 +UniRef50_P37061 NADH oxidase 0.000619214725088 0.0024204010713 0.00180118634621 +UniRef50_R9SMN4 2 phosphosulfolactate phosphatase ComB 0.00224543151923 0.000257169844878 -0.00198826167435 +UniRef50_Q1JFV4 0.00798364175219 0.00468133815433 -0.00330230359786 +UniRef50_UPI00030AE818 hypothetical protein 1.1287613882e-05 1.60554340407e-05 4.7678201587e-06 +UniRef50_UPI000255CD3D glutamate synthase small subunit 0.000160430997632 0.000164568465119 4.137467487e-06 +UniRef50_UPI0003B468FE ammonium transporter 5.17097716805e-06 3.61473288889e-06 -1.55624427916e-06 +UniRef50_UPI000361E930 MULTISPECIES 4.79572855866e-05 6.39028720671e-05 1.59455864805e-05 +UniRef50_A5UM85 Protein GrpE 0.00467375248065 0.000580950895467 -0.00409280158518 +UniRef50_B5XYZ0 Guanosine 5 triphosphate,3 diphosphate pyrophosphatase 0.00293061247432 0.000830125289309 -0.00210048718501 +UniRef50_D5HC80 3.19229496315e-05 0.000162993966374 0.000131071016743 +UniRef50_P17430 Acetate operon repressor 0.00662662201789 0.00108969820902 -0.00553692380887 +UniRef50_Q6G329 Ribonuclease D 6.44720436075e-05 1.21496339182e-05 -5.23224096893e-05 +UniRef50_UPI00046E9EE1 hypothetical protein 0.000125351294772 0.000116895983387 -8.455311385e-06 +UniRef50_B8FTK7 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 3.58475205499e-05 2.94804683143e-05 -6.3670522356e-06 +UniRef50_A8MI43 Alpha beta hydrolase fold 0.00151227644607 0.0046864051606 0.00317412871453 +UniRef50_G7U7C7 Phospholipase, patatin family protein 9.5084631958e-05 0.00643196539946 0.0063368807675 +UniRef50_UPI0002D7CF6D hypothetical protein 1.86585883207e-05 0.000898615699033 0.000879957110712 +UniRef50_P16440 Riboflavin synthase 2.12394962311e-05 2.98030393316e-05 8.5635431005e-06 +UniRef50_F0N020 ResB family protein 0.00038837637448 0.00247266011012 0.00208428373564 +UniRef50_D8HET5 Sirohydrochlorin ferrochelatase 0.0268815338203 0.00431352420361 -0.0225680096167 +UniRef50_B1TGN6 3.67314688714e-05 0.000126949879946 9.02184110746e-05 +UniRef50_Q0HNC2 L threonine ammonia lyase 0.000184910981555 0.00208533524369 0.00190042426213 +UniRef50_G8B0F2 2.05915397608e-05 0.000144732443384 0.000124140903623 +UniRef50_Z5KKF6 Type IV conjugative transfer system protein TraV 1.1529095946e-05 1.93496745284e-05 7.8205785824e-06 +UniRef50_P67088 Ribosomal RNA small subunit methyltransferase I 0.00222294531815 0.000712096169186 -0.00151084914896 +UniRef50_Q8NTE1 Dihydrolipoyl dehydrogenase 2.14379871331e-05 0.00601697923928 0.00599554125215 +UniRef50_F7ZAP7 Histidine kinase 0.00404390064912 0.000681650874371 -0.00336224977475 +UniRef50_J3PDD9 5.04013003814e-05 4.0364107531e-05 -1.00371928504e-05 +UniRef50_O68984 Polyphosphate kinase 2 2.88358420922e-06 0.000228367914683 0.000225484330474 +UniRef50_Q8R9G2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000518832276502 0.001181105503 0.000662273226498 +UniRef50_B1M2H9 0.000452983186623 0.000158089666788 -0.000294893519835 +UniRef50_UPI0003809C52 flagellar biosynthesis protein FlhA, partial 0.000612619799497 0.000726752009906 0.000114132210409 +UniRef50_UPI00037BA0F7 hypothetical protein 1.5503080275e-05 0.000368367859339 0.000352864779064 +UniRef50_B9K0E0 ABC transporter substrate binding protein 0.0133476190153 0.000705411989776 -0.0126422070255 +UniRef50_Q5HRC8 0.00015001213854 3.37827110025e-05 -0.000116229427537 +UniRef50_UPI00047CE8A1 hypothetical protein 3.64163508232e-05 1.08285677602e-05 -2.5587783063e-05 +UniRef50_UPI0002899EA1 N acyl L amino acid amidohydrolase 1.5246785389e-05 0.000173486136023 0.000158239350634 +UniRef50_C0PI11 7.27528599851e-05 3.68219465193e-05 -3.59309134658e-05 +UniRef50_U3SWE7 0.00128193433382 0.00046506567747 -0.00081686865635 +UniRef50_B9KWN5 ABC amino acid transporter, periplasmic ligand binding protein 0.012590059842 0.00362224690942 -0.00896781293258 +UniRef50_A5UKR1 Cobalt ABC transporter, permease component 0.000456636276836 0.00840059399941 0.00794395772257 +UniRef50_V5SUT2 Multidrug ABC transporter substrate binding protein 0.00298725858971 0.000371638766063 -0.00261561982365 +UniRef50_X6APU4 0.000183446371854 5.69875583353e-05 -0.000126458813519 +UniRef50_UPI0003B50A60 cell division protein FtsE 1.93723978332e-05 6.07970720172e-05 4.1424674184e-05 +UniRef50_J9NT05 1.83689616748e-05 0.000245386451787 0.000227017490112 +UniRef50_A4TJM2 Probable phosphatase YPDSF_1086 0.00166652123486 0.000720284646817 -0.000946236588043 +UniRef50_E3D657 Glutathione regulated potassium efflux system protein 0.000149038173604 0.00221787431051 0.00206883613691 +UniRef50_Q8FHG5 Glutamate decarboxylase beta 0.00777200005519 0.000888163560668 -0.00688383649452 +UniRef50_Q28PK8 2.10170540357e-05 5.90229484766e-05 3.80058944409e-05 +UniRef50_V4PD29 8.10484830239e-05 2.77765332678e-05 -5.32719497561e-05 +UniRef50_Q8FDA1 Penicillin binding protein activator LpoA 0.00240108409235 0.000357552165568 -0.00204353192678 +UniRef50_B6IZD5 Ribosomal RNA large subunit methyltransferase E 3.1537918464e-05 3.77344114741e-05 6.1964930101e-06 +UniRef50_Q8D2I8 Cardiolipin synthase A 0.00159588753899 0.000287139976776 -0.00130874756221 +UniRef50_F4BS97 PTS system, lactose cellobiose family IIC subunit 0.000345273803223 0.00401459208105 0.00366931827783 +UniRef50_UPI00046D0519 hypothetical protein 3.53834272033e-06 5.23634539746e-06 1.69800267713e-06 +UniRef50_W6RXA4 NAD dependent epimerase dehydratase 0.0175910678696 0.00609232716277 -0.0114987407068 +UniRef50_UPI0000123685 C. briggsae CBR GEI 7 protein, partial 1.44873627684e-05 7.91993092772e-05 6.47119465088e-05 +UniRef50_R5UKS9 0.000261462852246 0.000247472099328 -1.3990752918e-05 +UniRef50_UPI00042A7A25 hypothetical protein 2.13529362556e-05 4.5600192973e-05 2.42472567174e-05 +UniRef50_A3PHB4 0.0170356816418 0.000440771201791 -0.01659491044 +UniRef50_UPI000255D523 putative ATPase 0.00132298833221 0.000387765277012 -0.000935223055198 +UniRef50_A3PHB0 0.00192956750601 0.0015477767506 -0.00038179075541 +UniRef50_D0ZTB2 Magnesium transporting ATPase, P type 1 0.00253046255189 0.000558114507719 -0.00197234804417 +UniRef50_A7WXS7 Antiholin like protein LrgB 0.0168967605048 0.00050553501603 -0.0163912254888 +UniRef50_Q5JIZ8 4 phosphopantoate beta alanine ligase 0.00223574282296 0.0012120315264 -0.00102371129656 +UniRef50_Q9YGB0 Tryptophan synthase beta chain 1 5.06730196507e-05 2.06286555221e-05 -3.00443641286e-05 +UniRef50_A4WTH7 0.00010676022073 0.000330618628011 0.000223858407281 +UniRef50_Q8X9A9 Succinate dehydrogenase hydrophobic membrane anchor subunit 0.0010605819952 0.000615243135819 -0.000445338859381 +UniRef50_M9VIE6 0.000176946557275 0.00835877819336 0.00818183163609 +UniRef50_L2YGD4 6.14634049415e-05 2.13483940957e-05 -4.01150108458e-05 +UniRef50_UPI00034BB763 hypothetical protein 3.68583616359e-06 0.000683096554407 0.000679410718243 +UniRef50_Q87VK8 UPF0313 protein PSPTO_4928 0.000809111819368 0.000262938038002 -0.000546173781366 +UniRef50_UPI000328C73F 7.58889498985e-06 6.96623967712e-05 6.20735017814e-05 +UniRef50_UPI000181653B putative cation efflux protein 1.49953289863e-05 9.00611447477e-05 7.50658157614e-05 +UniRef50_UPI00045EB333 hypothetical protein 4.79318839769e-06 2.74902124056e-06 -2.04416715713e-06 +UniRef50_A6UC68 Glutamine synthetase catalytic region 0.0022185745605 0.000922704749051 -0.00129586981145 +UniRef50_Q5M6A1 Undecaprenyl diphosphatase 0.00559820986305 0.0049545608602 -0.00064364900285 +UniRef50_UPI00046976AA hypothetical protein 7.14034026878e-05 8.43878224582e-06 -6.2964620442e-05 +UniRef50_UPI00045EBC8D hypothetical protein 1.87976562087e-05 7.35570881426e-06 -1.14419473944e-05 +UniRef50_I1AS06 0.000167247939965 8.54746547458e-05 -8.17732852192e-05 +UniRef50_Q10Y48 Uridylate kinase 2.30896859897e-05 2.91910144666e-05 6.1013284769e-06 +UniRef50_UPI0003FA4543 membrane protein 3.60168932171e-05 7.3495143042e-06 -2.86673789129e-05 +UniRef50_E8SII5 Single stranded DNA specific exonuclease RecJ 0.00954681698391 0.00345634475734 -0.00609047222657 +UniRef50_Q5HKU8 CapA related protein 0.0117321999354 0.00325636740181 -0.00847583253359 +UniRef50_Q7MPS3 Formamidopyrimidine DNA glycosylase 0.00232890153192 0.00297333300328 0.00064443147136 +UniRef50_UPI00041EB905 thymidylate synthase 5.88810128769e-05 0.000430628652688 0.000371747639811 +UniRef50_R0EY14 CRISPR associated helicase Cas3 9.41653728385e-06 1.08079213661e-05 1.39138408225e-06 +UniRef50_A5ZLG0 3.76854056432e-05 0.000350807935395 0.000313122529752 +UniRef50_B8DT48 Methionine tRNA ligase 0.000147222350615 0.00943185977574 0.00928463742513 +UniRef50_A5IVU5 Phospholipase Carboxylesterase 0.0139317848247 0.00179844916104 -0.0121333356637 +UniRef50_P77437 Hydrogenase 4 component F 0.00166538505333 0.00098222011707 -0.00068316493626 +UniRef50_K5ELG7 0.000103172044321 0.000281317040156 0.000178144995835 +UniRef50_A3X6J0 4.12976770655e-05 6.89750752718e-05 2.76773982063e-05 +UniRef50_D4GDN3 Catalase 0.000284243592468 9.13350634579e-05 -0.00019290852901 +UniRef50_A8ML82 Probable endonuclease 4 0.000530906383178 0.00125927348865 0.000728367105472 +UniRef50_UPI0003B59385 molybdopterin biosynthesis protein MoeB 1.95531421562e-05 1.98582654261e-05 3.051232699e-07 +UniRef50_A3JVB5 SN glycerol 3 phophate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 0.000170039287998 5.61688633509e-05 -0.000113870424647 +UniRef50_G8AEH3 4.28119324318e-05 0.000121107636684 7.82957042522e-05 +UniRef50_UPI00047B7AB7 alpha ketoglutarate decarboxylase 1.07175579609e-06 4.57109484673e-06 3.49933905064e-06 +UniRef50_A5UKJ0 Tyrosine tRNA ligase 0.00399065880485 0.000257543638253 -0.0037331151666 +UniRef50_B7G9B5 L threonine ammonia lyase 0.000249837012794 0.00114505925528 0.000895222242486 +UniRef50_UPI000374D549 hypothetical protein 2.05710879097e-05 1.72803343713e-05 -3.2907535384e-06 +UniRef50_UPI0003610FAC hypothetical protein, partial 0.000207791778855 4.73430859924e-05 -0.000160448692863 +UniRef50_B5WT75 Transketolase domain protein 0.000142553870142 1.78191886693e-05 -0.000124734681473 +UniRef50_P58319 Low specificity L threonine aldolase 0.000456662185685 0.000398157978736 -5.8504206949e-05 +UniRef50_A7MI34 Ribonuclease H 0.00625382790229 2.45186780071e-05 -0.00622930922428 +UniRef50_Q5KP44 Inosine 5 monophosphate dehydrogenase 2.37252918055e-05 3.64058337172e-06 -2.00847084338e-05 +UniRef50_A3X8V2 DNA helicase II, putative 0.00631794572949 0.00265443006903 -0.00366351566046 +UniRef50_B0VAC9 Porin 0.000384062672354 0.00458226100245 0.0041981983301 +UniRef50_P08656 Mercuric transport protein 0.00272541931512 0.000436428628368 -0.00228899068675 +UniRef50_Q75FU1 Acetylglutamate kinase 2.92139968277e-05 9.3709752719e-06 -1.98430215558e-05 +UniRef50_O66119 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.00458693201879 0.0027304195949 -0.00185651242389 +UniRef50_Q88BC2 Phospholipase D family protein 0.00109691995495 0.000446743283418 -0.000650176671532 +UniRef50_B4TKU5 RNA 3 terminal phosphate cyclase 0.00289644883717 0.0021582726858 -0.00073817615137 +UniRef50_A5W974 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000152352837042 0.00106058267639 0.000908229839348 +UniRef50_UPI00045DB0AA PREDICTED 0.000110844172911 2.15966381688e-06 -0.000108684509094 +UniRef50_UPI00040A4A10 betaine aldehyde dehydrogenase 1.61087158058e-05 4.93683722979e-05 3.32596564921e-05 +UniRef50_J9EAY7 0.0131906634757 0.00120537430691 -0.0119852891688 +UniRef50_I0DZ31 Major facilitator transporter 0.000231550071799 0.0062078612858 0.005976311214 +UniRef50_D0LZ79 Phosphoribosylformylglycinamidine synthase, purS 0.0188996648051 6.41985266265e-05 -0.0188354662785 +UniRef50_T0PX63 1.20284048624e-05 2.03517210887e-05 8.3233162263e-06 +UniRef50_UPI0004715F2C ATP dependent DNA helicase RecQ 1.57326000835e-05 8.98946220602e-06 -6.74313787748e-06 +UniRef50_Q6GDN6 4,4 diaponeurosporenoate glycosyltransferase 0.0146150721323 0.00234009086268 -0.0122749812696 +UniRef50_Q3Z7P5 Isoleucine tRNA ligase 3.0595540668e-06 9.36130840441e-06 6.30175433761e-06 +UniRef50_C8PYM1 1.11776384201e-05 1.01881291816e-05 -9.895092385e-07 +UniRef50_Q2T312 Glutamate 1 semialdehyde aminotransferase 0.000461553398489 0.00013312548694 -0.000328427911549 +UniRef50_UPI0003EE7EAE acetyl CoA acetyltransferase 1.70245649132e-05 9.92470055448e-05 8.22224406316e-05 +UniRef50_W5XCV9 Hsp90 ATPase activator family protein, putative 1.60698332692e-05 0.00013905981389 0.000122989980621 +UniRef50_UPI000373AC76 hypothetical protein 3.01945320928e-05 0.000150657949832 0.000120463417739 +UniRef50_UPI00036BF734 hypothetical protein 3.00234985515e-06 0.00063401979096 0.000631017441105 +UniRef50_P60966 Prolipoprotein diacylglyceryl transferase 1.30583770364e-05 7.85366171909e-06 -5.20471531731e-06 +UniRef50_UPI00031187B6 hypothetical protein 2.81722564903e-05 1.18779699666e-05 -1.62942865237e-05 +UniRef50_X2MXQ1 0.000133773324648 0.000154771697738 2.099837309e-05 +UniRef50_N0BFG1 Polyhydroxyalkonate synthesis repressor PhaR 2.7596534463e-05 9.24033106559e-06 -1.83562033974e-05 +UniRef50_M1MRG1 Amino acid polyamine organocation transporter, APC superfamily 0.000137931626444 0.00197410152269 0.00183616989625 +UniRef50_Q2NH89 Replication factor C small subunit 0.00450335128371 0.00168752402968 -0.00281582725403 +UniRef50_K4AS36 4.32379557918e-05 1.66806348089e-05 -2.65573209829e-05 +UniRef50_F5LZU0 0.000658062089568 0.00102090374539 0.000362841655822 +UniRef50_C6WQE7 Periplasmic binding protein 1.05550482835e-05 5.41613637344e-05 4.36063154509e-05 +UniRef50_UPI0003B45185 DNA directed RNA polymerase subunit alpha 2.08130113379e-05 6.822731422e-05 4.74143028821e-05 +UniRef50_Q8DUE8 0.00813766927271 0.00200097968855 -0.00613668958416 +UniRef50_Q8FBT7 0.00133399305193 0.000537179542243 -0.000796813509687 +UniRef50_UPI0004014281 16S rRNA methyltransferase 2.27294644962e-05 2.24641701788e-05 -2.652943174e-07 +UniRef50_P45515 Cobyrinic acid a,c diamide adenosyltransferase 2.18983818154e-05 5.83046725533e-05 3.64062907379e-05 +UniRef50_V5CX68 Dipeptide ABC superfamily ATP binding cassette transporter, binding protein 0.000320487211153 0.000962989256073 0.00064250204492 +UniRef50_Q9I733 0.000306559544876 0.000765108454026 0.00045854890915 +UniRef50_UPI000463C6BF hypothetical protein 1.65127410566e-05 0.000450369054678 0.000433856313621 +UniRef50_R6HVU1 0.000104159773061 0.00494754604704 0.00484338627398 +UniRef50_G7LXC7 Glycoside hydrolase family 25 0.000734813932868 0.00194727044432 0.00121245651145 +UniRef50_U5MY29 DnaD like protein 0.000317011917057 0.000782534735779 0.000465522818722 +UniRef50_UPI0003B69658 branched chain amino acid ABC transporter permease 0.000148859567984 0.000151996450797 3.136882813e-06 +UniRef50_R6VS65 0.000448213796037 0.000880905534551 0.000432691738514 +UniRef50_UPI0004624AAB calcium binding protein 3.52093718112e-07 5.63777191094e-07 2.11683472982e-07 +UniRef50_R5QLU7 0.00179256010567 0.000725145259866 -0.0010674148458 +UniRef50_UPI0004750550 glutamyl tRNA amidotransferase 1.17672581416e-05 2.19638264666e-05 1.0196568325e-05 +UniRef50_A6LYZ5 Transposase 0.000547081143264 0.00033432079833 -0.000212760344934 +UniRef50_F9YWL9 0.000207790452577 0.0081432615891 0.00793547113652 +UniRef50_P77434 Glutamate pyruvate aminotransferase AlaC 0.00310473449022 0.0018167050449 -0.00128802944532 +UniRef50_F0FD43 0.000321420152608 1.19644998639e-05 -0.000309455652744 +UniRef50_G0XA87 0.00110248507535 0.0484075526505 0.0473050675752 +UniRef50_S8AX05 NLPA family lipoprotein 1.22318184459e-05 3.16707821069e-05 1.9438963661e-05 +UniRef50_J9YR28 Rhodanese like domain containing protein 2.30337538454e-05 0.00233176490197 0.00230873114812 +UniRef50_Q218J2 Molybdopterin dehydrogenase, FAD binding 0.00243214515849 0.000377000049191 -0.0020551451093 +UniRef50_UPI00042C9909 PREDICTED 9.94150134473e-06 3.22633025144e-05 2.23218011697e-05 +UniRef50_Q21M27 Glucose 1 phosphate adenylyltransferase 1.1211431215e-05 2.72743404715e-05 1.60629092565e-05 +UniRef50_UPI00042517AA coproporphyrinogen III oxidase 1.98377044727e-05 5.00371329475e-05 3.01994284748e-05 +UniRef50_Q3JUF7 2.45762240962e-06 0.000254766388374 0.000252308765964 +UniRef50_D8HGC2 1.44892464651e-05 0.000108682249339 9.41930028739e-05 +UniRef50_UPI00047BCF38 AsnC family transcriptional regulator 0.000199001247767 8.81865229419e-05 -0.000110814724825 +UniRef50_UPI00036EA5F9 hypothetical protein, partial 1.63693087209e-05 4.68909536302e-05 3.05216449093e-05 +UniRef50_P39347 Putative prophage P4 integrase 0.00399325683709 0.000610037123369 -0.00338321971372 +UniRef50_A0A052HCP6 PF07120 family protein 4.79369692794e-06 7.64789275259e-06 2.85419582465e-06 +UniRef50_Q7MVV7 Thymidine kinase 1.71654633517e-05 1.30619408193e-05 -4.1035225324e-06 +UniRef50_F0QIN2 Transcriptional regulator, TetR family 0.000354187347592 0.0176230422034 0.0172688548558 +UniRef50_P0AFJ9 Low affinity inorganic phosphate transporter 1 0.00510671070878 0.00184468659008 -0.0032620241187 +UniRef50_D0LA73 2.31221498111e-05 3.27205448773e-05 9.5983950662e-06 +UniRef50_A0A008HNV8 4.27378834968e-05 6.13269155292e-06 -3.66051919439e-05 +UniRef50_UPI00047161BF thioredoxin 4.00958809738e-05 2.63955290762e-05 -1.37003518976e-05 +UniRef50_Q3HKI8 DSBA oxidoreductase 0.021748037005 0.00850313994098 -0.013244897064 +UniRef50_B6AH12 NAD dependent epimerase dehydratase family protein 0.00520640619842 0.00147268942774 -0.00373371677068 +UniRef50_UPI000463295C hypothetical protein 0.00209106735988 0.000716520273746 -0.00137454708613 +UniRef50_UPI000414D457 hypothetical protein 4.08242233195e-06 5.91638470593e-06 1.83396237398e-06 +UniRef50_Q1J1L0 Mannose 6 phosphate isomerase, type 1 0.000495196673545 0.0623578518859 0.0618626552124 +UniRef50_O32165 FeS cluster assembly protein SufD 0.023296466832 0.00731892942908 -0.0159775374029 +UniRef50_Q08329 Ribosomal RNA small subunit methyltransferase I 2.89875710755e-05 3.48986738968e-05 5.9111028213e-06 +UniRef50_W4UF17 Beta mannosidase 0.000158456006781 0.00657073933288 0.0064122833261 +UniRef50_J0S0K6 2.28291514076e-06 3.29374673001e-06 1.01083158925e-06 +UniRef50_A9VTC9 Aspartate carbamoyltransferase 1.07466160736e-05 8.62201047967e-06 -2.12460559393e-06 +UniRef50_UPI00046A3857 hypothetical protein 4.27190065776e-06 8.75090383769e-05 8.32371377191e-05 +UniRef50_UPI00036BBCF4 MULTISPECIES 3.20471423671e-05 1.38436268324e-05 -1.82035155347e-05 +UniRef50_Q2GJV5 Polyribonucleotide nucleotidyltransferase 2.25395772625e-06 5.98672827688e-06 3.73277055063e-06 +UniRef50_D3ERJ1 Energy coupling factor transporter transmembrane protein EcfT 0.0215703604285 0.0077733947985 -0.01379696563 +UniRef50_H6PBJ5 ThiW protein 0.00030606972069 0.000628333415313 0.000322263694623 +UniRef50_A6LIS9 7 cyano 7 deazaguanine synthase 5.55684245877e-05 0.000428303075717 0.000372734651129 +UniRef50_UPI00022CAA8B PREDICTED 3.17400955732e-05 7.37294351724e-05 4.19893395992e-05 +UniRef50_A3N352 N acetylneuraminate lyase 0.0093611444294 0.00185271146756 -0.00750843296184 +UniRef50_T2K100 CadX 0.0325752976437 0.0132769353524 -0.0192983622913 +UniRef50_Q9I2Y8 0.000167453110285 0.000628333415313 0.000460880305028 +UniRef50_UPI0003633A56 hypothetical protein 1.08517612851e-05 4.22495753332e-05 3.13978140481e-05 +UniRef50_Q8CMW6 IS605 IS200 like transposase 0.011607661574 0.00554931599443 -0.00605834557957 +UniRef50_P75810 Inner membrane protein YbjJ 0.0022419732403 0.000418147692723 -0.00182382554758 +UniRef50_G7MCQ3 0.000397171325099 0.000693005924187 0.000295834599088 +UniRef50_P43386 Glutamine synthetase 1.03143143439e-05 0.000137660788728 0.000127346474384 +UniRef50_J7QU36 Hydrogenase 4 membrane subunit 0.00111454562337 0.000473537988818 -0.000641007634552 +UniRef50_UPI0003686401 hypothetical protein 5.84992495528e-05 5.7242572272e-06 -5.27749923256e-05 +UniRef50_F9XXP5 Transporter, Sodium bile acid symporter family, macrolide resistance protein 0.00352674685015 0.00483812307827 0.00131137622812 +UniRef50_A0A022M296 Short chain dehydrogenase 2.04625376914e-05 2.4578154e-05 4.1156163086e-06 +UniRef50_A4XKN9 Cytidylate kinase 8.83789682173e-06 1.15421292239e-05 2.70423240217e-06 +UniRef50_Q6ZAM9 1.1190509507e-05 1.34122597411e-05 2.2217502341e-06 +UniRef50_D7BLX5 Extracellular solute binding protein family 1 3.71325680773e-05 3.25921255043e-05 -4.540442573e-06 +UniRef50_UPI0003661C1B hypothetical protein 1.32286476861e-05 3.43279817057e-05 2.10993340196e-05 +UniRef50_Q8XU90 Uroporphyrinogen decarboxylase 0.00161703679992 0.0108927179906 0.00927568119068 +UniRef50_R6HIJ1 7.56409471529e-06 3.23027824714e-05 2.47386877561e-05 +UniRef50_C3MCT2 0.00140640512611 0.000464861285554 -0.000941543840556 +UniRef50_Q5HR58 Decarboxylase family protein 0.0323868111101 0.00471456183448 -0.0276722492756 +UniRef50_UPI000351149F PREDICTED 3.191753689e-05 8.02559792158e-05 4.83384423258e-05 +UniRef50_G8V3B6 Heme ABC exporter, ATP binding protein CcmA 0.0201041664954 0.00466023403099 -0.0154439324644 +UniRef50_P94417 Aspartokinase 3 0.00533882783848 0.00827825489773 0.00293942705925 +UniRef50_D4HA31 D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase 0.000523885359156 0.00440807866749 0.00388419330833 +UniRef50_A0A023KQS7 Formate dehydrogenase 0.00137016793906 0.00103403590418 -0.00033613203488 +UniRef50_P31436 Sugar efflux transporter C 0.00543436062603 0.00126228159476 -0.00417207903127 +UniRef50_B9KJG1 Flagellar proximal rod protein FlgC 0.00181135554305 0.00180236871959 -8.98682346e-06 +UniRef50_Q9PNB4 Elongation factor Ts 0.000603527370052 0.00577119102051 0.00516766365046 +UniRef50_A4WSY4 Transcriptional regulator, RpiR family 0.0126498110329 0.00105897323501 -0.0115908377979 +UniRef50_G0VNQ5 Lipoprotein 3.30192671499e-05 8.79902403925e-06 -2.42202431106e-05 +UniRef50_UPI00047EE782 DNA gyrase subunit A 7.01461981345e-06 4.98789633342e-06 -2.02672348003e-06 +UniRef50_Q5SKN9 Long chain fatty acid CoA ligase 1.15341051473e-05 0.00027172358915 0.000260189484003 +UniRef50_Q84630 1.6003773123e-05 2.44614945341e-05 8.4577214111e-06 +UniRef50_P09053 Valine pyruvate aminotransferase 0.0025430093308 0.00173963361563 -0.00080337571517 +UniRef50_I6S241 0.000776607423632 0.000156252224977 -0.000620355198655 +UniRef50_UPI0003758FEB hypothetical protein 5.75663027762e-05 9.16352463386e-05 3.40689435624e-05 +UniRef50_P45039 Protein CysZ homolog 0.00322890587385 0.00047037179594 -0.00275853407791 +UniRef50_UPI00036B404B hypothetical protein 2.37339727073e-05 8.72854941856e-06 -1.50054232887e-05 +UniRef50_A7V4H6 3.64213943153e-05 0.000195252938045 0.00015883154373 +UniRef50_P77546 0.00476079440274 0.00176755562166 -0.00299323878108 +UniRef50_Q5HPS3 30S ribosomal protein L7Ae, putative 0.00145080607697 0.0112759004338 0.00982509435683 +UniRef50_D7CXV9 Electron transfer flavoprotein alpha beta subunit 0.000243016731023 0.0418156891054 0.0415726723744 +UniRef50_Q5HQF3 Transposase, IS200 family, truncation 0.00273160664935 0.0272816384799 0.0245500318305 +UniRef50_E3F2N0 Transcriptional regulator, LysR family protein 0.0165632690805 0.00191817118576 -0.0146450978947 +UniRef50_R5J6S8 Thioredoxin disulfide reductase 0.000659210045459 0.000474978262967 -0.000184231782492 +UniRef50_UPI000476E0F1 hypothetical protein 4.2840872078e-06 1.10935390851e-05 6.8094518773e-06 +UniRef50_Q1QDN1 Aminotransferase 0.000251492511024 0.00722499953124 0.00697350702022 +UniRef50_G7M5P4 2.39244889874e-06 0.000691565702328 0.000689173253429 +UniRef50_P76633 0.00371732589835 0.00281000044596 -0.00090732545239 +UniRef50_P76639 0.000945892396134 0.000196659293133 -0.000749233103001 +UniRef50_G2FJU8 CRISPR associated helicase Cas3 0.000120082733565 3.1697486628e-05 -8.8385246937e-05 +UniRef50_O05240 Probable NADH dependent butanol dehydrogenase 2 1.06020066497e-05 0.00220721872077 0.00219661671412 +UniRef50_E0TGB8 0.000130455852193 2.93630918666e-05 -0.000101092760326 +UniRef50_UPI00047C43B7 deoxyguanosinetriphosphate triphosphohydrolase 1.34274932965e-05 1.61224520561e-05 2.6949587596e-06 +UniRef50_C5D4L1 Transcriptional regulator, RpiR family 0.000285532641026 0.000679933622094 0.000394400981068 +UniRef50_A1BHE5 Chorismate synthase 1.8598161881e-05 0.000183750805589 0.000165152643708 +UniRef50_A8LS46 0.000210626445025 4.15137445388e-05 -0.000169112700486 +UniRef50_D6K042 Nucleotide binding protein 7.39852429849e-06 6.66728920087e-05 5.92743677102e-05 +UniRef50_UPI000345D912 hypothetical protein 0.000318438248205 0.000410697844162 9.2259595957e-05 +UniRef50_UPI00047E8FE9 hypothetical protein 1.26438236184e-05 5.50718964674e-05 4.2428072849e-05 +UniRef50_Q820Q4 Siroheme synthase 4.55681875857e-06 2.25730917386e-05 1.801627298e-05 +UniRef50_UPI0003B3A117 adenosylcobinamide amidohydrolase 5.92293959266e-05 0.000109286458476 5.00570625494e-05 +UniRef50_UPI00036900A5 hypothetical protein 4.44260505689e-05 2.62393386933e-05 -1.81867118756e-05 +UniRef50_UPI00040265B6 transcriptional regulator 9.86792717005e-06 0.00010949827694 9.963034977e-05 +UniRef50_Q21AL1 0.000614058473984 6.74747988232e-05 -0.000546583675161 +UniRef50_B0V8K7 Pilin like competence factor 0.000168270128756 0.00667540417739 0.00650713404863 +UniRef50_A3TXU1 0.000178616652232 3.23826946049e-05 -0.000146233957627 +UniRef50_UPI000237DC3E hypothetical protein 1.9193595653e-05 0.000236206036376 0.000217012440723 +UniRef50_A1SVN9 D erythrose 4 phosphate dehydrogenase 0.00337369010844 0.00155891550011 -0.00181477460833 +UniRef50_S9S862 0.000494291732102 7.43775769457e-05 -0.000419914155156 +UniRef50_UPI0002559A2B hypothetical protein 0.000588601910223 5.26857660642e-05 -0.000535916144159 +UniRef50_Q8YAE3 Ribonuclease M5 0.00887135506321 0.00101520055157 -0.00785615451164 +UniRef50_UPI00035C7818 hypothetical protein 2.72757265495e-06 4.094420993e-06 1.36684833805e-06 +UniRef50_E8SJM3 Siderophore staphylobactin biosynthesis protein SbnC 0.0153706349845 0.00244665240198 -0.0129239825825 +UniRef50_UPI0004720A04 diguanylate cyclase, partial 1.32894115641e-06 2.74895188129e-05 2.61605776565e-05 +UniRef50_Q73F30 Tn7 like transposition protein D 1.0161589647e-05 9.58301909705e-05 8.56686013235e-05 +UniRef50_Q7N5M7 Flagellar L ring protein 0.00526343826007 0.000386877779725 -0.00487656048035 +UniRef50_G7M4H8 Secretion protein HlyD family protein 0.000506221307211 0.00356337888767 0.00305715758046 +UniRef50_O87320 Putative aminotransferase AatC 2.82224494622e-05 0.000568651484471 0.000540429035009 +UniRef50_F7XGW6 Oxidoreductase protein 0.00194234594035 0.000974578793798 -0.000967767146552 +UniRef50_V3W6L3 Glucarate permease 0.00176731348197 0.000197096799911 -0.00157021668206 +UniRef50_J2WQI8 8.58735358218e-05 4.4700368914e-05 -4.11731669078e-05 +UniRef50_Q1C138 Autoinducer 2 import ATP binding protein LsrA 0.00242739173227 0.000787959436458 -0.00163943229581 +UniRef50_D4HCC5 Transcriptional regulator, LacI family 0.000490012037439 0.0036916409401 0.00320162890266 +UniRef50_UPI00046CFD96 hypothetical protein 2.87829172354e-05 2.95753969477e-05 7.924797123e-07 +UniRef50_Q9HT89 0.000993127259492 0.00452676555232 0.00353363829283 +UniRef50_UPI00035FFDBB hypothetical protein 5.42138270638e-06 9.18312519576e-06 3.76174248938e-06 +UniRef50_Q134N9 Methionine import ATP binding protein MetN 1.30016123657e-05 2.25800360992e-05 9.5784237335e-06 +UniRef50_A0A059LBR4 2.33234134006e-05 0.000114084599834 9.07611864334e-05 +UniRef50_B8C7V4 6.05251272776e-05 2.82692177639e-05 -3.22559095137e-05 +UniRef50_D9T5Q5 1.90016670052e-05 6.23886266305e-06 -1.27628043422e-05 +UniRef50_UPI0002F33E46 hypothetical protein 0.00206212227828 0.000128347259578 -0.0019337750187 +UniRef50_UPI00035D42F6 hypothetical protein 3.00140852212e-06 1.46966132426e-05 1.16952047205e-05 +UniRef50_D5AL10 Transcriptional regulator, LuxR family 0.00464283362434 0.00155736771919 -0.00308546590515 +UniRef50_Q9RY69 0.000381181046844 0.0445152345643 0.0441340535175 +UniRef50_J0URR6 2.69301378738e-05 0.000181252542535 0.000154322404661 +UniRef50_E3A6Z3 0.000911506760953 0.00246478800461 0.00155328124366 +UniRef50_K7SLE8 Acyl CoA thioester hydrolase, YbgC YbaW family 0.000747463757461 0.00549933868084 0.00475187492338 +UniRef50_M4QZ02 Ribosomal RNA small subunit methyltransferase D 0.000228318138423 0.00143079294428 0.00120247480586 +UniRef50_C9RQ15 Nitrogenase 0.000577557994818 0.00118200168979 0.000604443694972 +UniRef50_UPI0002624B69 thioredoxin disulfide reductase, partial 0.000121964231924 7.95612360415e-05 -4.24029958825e-05 +UniRef50_R4NK63 Valyl tRNA synthetase 0.00038947694678 7.08193537646e-05 -0.000318657593015 +UniRef50_UPI0004448C06 PREDICTED 6.62065745959e-06 1.97963666431e-05 1.31757091835e-05 +UniRef50_O03042 Ribulose bisphosphate carboxylase large chain 0.00883595195123 0.00289369863074 -0.00594225332049 +UniRef50_UPI0003B45D4A transcription termination factor Rho 5.62358300836e-06 2.3469583562e-05 1.78460005536e-05 +UniRef50_I0EV03 Cytosine specific methyltransferase 0.000272494044384 0.0022562352771 0.00198374123272 +UniRef50_B2V0J5 Phosphopentomutase 0.000125721391775 0.00143315151999 0.00130743012821 +UniRef50_A1R8R6 30S ribosomal protein S11 0.0104863386241 0.0243954171843 0.0139090785602 +UniRef50_P09546 Bifunctional protein PutA 0.000819864147582 0.000430975006151 -0.000388889141431 +UniRef50_UPI0003B6A42C DNA helicase 1.68108671166e-05 1.62041420434e-05 -6.067250732e-07 +UniRef50_M1MDU9 Permease 0.000759632004564 0.00313821808373 0.00237858607917 +UniRef50_A5UNQ0 Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family 0.00362756580132 0.000810265473116 -0.0028173003282 +UniRef50_E1VK27 Phenylacetic acid degradation like protein 9.33584118295e-06 1.68771140037e-05 7.54127282075e-06 +UniRef50_UPI0002F8E904 hypothetical protein 9.33988473737e-06 1.75964802835e-05 8.25659554613e-06 +UniRef50_F5ZJY8 Membrane protein 2.09762388463e-05 7.39168549958e-05 5.29406161495e-05 +UniRef50_A5UJT5 0.00177999107223 0.00115610806808 -0.00062388300415 +UniRef50_Q37626 NADH ubiquinone oxidoreductase chain 6 0.000128546517711 3.13090150795e-05 -9.72375026315e-05 +UniRef50_UPI00046648B3 ABC transporter 4.66996317759e-06 1.81009027681e-05 1.34309395905e-05 +UniRef50_UPI0004772455 metallophosphoesterase, partial 2.89830313913e-06 0.000478316268362 0.000475417965223 +UniRef50_K0P9U6 0.000638616154308 0.000313886506919 -0.000324729647389 +UniRef50_M4X2Y6 0.000205607233078 4.65172830834e-05 -0.000159089949995 +UniRef50_Q9S208 Putative 3 methyladenine DNA glycosylase 1.63043284412e-05 3.28352497779e-05 1.65309213367e-05 +UniRef50_UPI0003ADF309 PREDICTED 4.72933697713e-05 5.40816707141e-05 6.7883009428e-06 +UniRef50_X7EE68 0.000242663372315 4.40568436321e-05 -0.000198606528683 +UniRef50_B4DT69 Dihydrolipoyl dehydrogenase, mitochondrial 2.07318309187e-05 6.38627267084e-05 4.31308957897e-05 +UniRef50_UPI0004773262 aldehyde oxidoreductase 1.49860918777e-05 1.00303792961e-05 -4.9557125816e-06 +UniRef50_P31474 Probable transport protein HsrA 0.00497813034149 0.00147858088371 -0.00349954945778 +UniRef50_R4LLL8 4.78887826154e-05 2.95179088852e-05 -1.83708737302e-05 +UniRef50_T1XS28 0.016261808291 0.00238095961426 -0.0138808486767 +UniRef50_Q6FDP2 0.00105968807219 0.00499342296233 0.00393373489014 +UniRef50_T6QCZ1 Acetoacetate metabolism regulatory protein AtoC 0.000342132316185 0.000425937555561 8.3805239376e-05 +UniRef50_I0C564 Adenine specific methyltransferase 0.0217620487287 0.00460832987574 -0.017153718853 +UniRef50_P0ABM3 Heme exporter protein C 0.00344094999836 0.00141656733714 -0.00202438266122 +UniRef50_P31442 Multidrug resistance protein D 0.00487573471624 0.000773234268918 -0.00410250044732 +UniRef50_K8M5I2 0.00231977266233 0.00033801582594 -0.00198175683639 +UniRef50_UPI000369D268 hypothetical protein 2.99996980448e-05 7.75520269841e-06 -2.22444953464e-05 +UniRef50_Q7DDR9 Adenosine monophosphate protein transferase NmFic 0.00603085916238 0.00220261976682 -0.00382823939556 +UniRef50_UPI00042A93F8 hypothetical protein 6.47829333748e-06 1.14662401013e-05 4.98794676382e-06 +UniRef50_UPI0004292FB7 hypothetical protein 6.03884220366e-05 2.95629887556e-05 -3.0825433281e-05 +UniRef50_H3Y6A9 PF04507 domain protein 2.57615613722e-05 3.58417882427e-05 1.00802268705e-05 +UniRef50_S5XQS3 Acetylornithine N succinyldiaminopimelate aminotransferase 0.00177221584407 0.000401531649578 -0.00137068419449 +UniRef50_E3HI99 4.93111813151e-06 7.18741089525e-06 2.25629276374e-06 +UniRef50_Q9SLK0 Peroxisomal isocitrate dehydrogenase [NADP] 0.0239172331837 0.00600846073708 -0.0179087724466 +UniRef50_P0A6X2 Glutamyl tRNA reductase 0.00272562583369 0.00104961466366 -0.00167601117003 +UniRef50_UPI00035D06F8 hypothetical protein 1.40619696326e-06 2.25888734162e-06 8.5269037836e-07 +UniRef50_M4JQT7 Transcriptional regulator 0.000651962580884 0.000760914455182 0.000108951874298 +UniRef50_F8CFH1 Acetyl CoA carboxylase carboxyltransferase 0.00119887829301 0.0052249233222 0.00402604502919 +UniRef50_UPI00047EBCE0 carboxymuconolactone decarboxylase 4.42922105938e-05 0.00260310785538 0.00255881564479 +UniRef50_A0A022H066 Transcriptional regulator 4.3752968435e-05 1.43775750931e-05 -2.93753933419e-05 +UniRef50_P64636 GMP IMP nucleotidase YrfG 0.00323368311678 0.00026525452562 -0.00296842859116 +UniRef50_UPI0004686F41 hypothetical protein 1.81719037965e-05 1.49795475782e-05 -3.1923562183e-06 +UniRef50_G7U923 Copper exporting ATPase 0.000207545247591 0.00448955197689 0.0042820067293 +UniRef50_R9SM10 Energy converting hydrogenase B subunit E EhbE 0.000588289852755 0.000550279574895 -3.801027786e-05 +UniRef50_UPI0003752C76 hypothetical protein 0.00136493327416 0.000798153257284 -0.000566780016876 +UniRef50_Q60DH5 0.000119674885215 2.51582449349e-05 -9.45166402801e-05 +UniRef50_A3VZ88 ISxac3 transposase 0.000767543042476 0.000775862119949 8.319077473e-06 +UniRef50_E6AYN5 0.00446983815931 0.00276268273754 -0.00170715542177 +UniRef50_UPI00047C2D15 transporter 6.01126752032e-05 6.08266059086e-05 7.139307054e-07 +UniRef50_D3PRK0 Phenylacetate CoA ligase 9.05242179512e-05 0.0380884503778 0.0379979261598 +UniRef50_F4C648 0.00290377517524 0.000472506728318 -0.00243126844692 +UniRef50_K0SPN4 4.77219314567e-05 0.000118649754563 7.09278231063e-05 +UniRef50_P69680 Ammonia channel 0.00294997341488 0.0015987803799 -0.00135119303498 +UniRef50_P77499 Probable ATP dependent transporter SufC 0.0244759298122 0.00643388456404 -0.0180420452482 +UniRef50_UPI00030D778A hypothetical protein 0.000157770227494 2.75922243165e-05 -0.000130178003178 +UniRef50_D1BCT4 ABC type hemin transport system, periplasmic component 8.05777751261e-06 2.77450941053e-05 1.96873165927e-05 +UniRef50_B7IAM2 0.000151558571295 0.00704558159001 0.00689402301871 +UniRef50_UPI00047272A3 glycerol 3 phosphate ABC transporter permease 8.41012091505e-06 5.47429574e-05 4.6332836485e-05 +UniRef50_UPI00026277B1 transketolase 3.19789987133e-05 1.21030752019e-05 -1.98759235114e-05 +UniRef50_Q2S0W2 Chorismate synthase 1.53830283946e-05 0.000196792685804 0.000181409657409 +UniRef50_P56935 3 isopropylmalate dehydratase small subunit 1.23925986335e-05 4.2051831604e-05 2.96592329705e-05 +UniRef50_D4HFH3 Exo alpha sialidase 7.88619753888e-05 0.00553648653826 0.00545762456287 +UniRef50_H6PCX4 Competence protein 2.47052537863e-05 3.50718613214e-05 1.03666075351e-05 +UniRef50_UPI00047A82E9 hemolysin 9.85330131688e-06 1.16352512456e-05 1.78194992872e-06 +UniRef50_A8GIW3 Probable L aspartate dehydrogenase 0.000607500965711 0.00491522942652 0.00430772846081 +UniRef50_Q9HWI0 D alanine D alanine ligase A 0.000109099996778 0.000176898936641 6.7798939863e-05 +UniRef50_P49915 GMP synthase [glutamine hydrolyzing] 5.92527127152e-06 4.08194273999e-06 -1.84332853153e-06 +UniRef50_UPI0002375EBD glucose methanol choline oxidoreductase, partial 0.000100286987634 2.82752259409e-05 -7.20117616931e-05 +UniRef50_C0B1I9 Formate transporter FocA 5.26823655275e-05 0.000207001811578 0.00015431944605 +UniRef50_D2NT48 Predicted thioesterase involved in non ribosomal peptide biosynthesis 1.99460651741e-06 2.98628609691e-05 2.78682544517e-05 +UniRef50_A6LSK6 Thiamine pyrophosphokinase 0.000201147063333 0.000334952784714 0.000133805721381 +UniRef50_UPI000399CFD2 type 12 methyltransferase 5.59844086286e-05 0.000246000345246 0.000190015936617 +UniRef50_R9ZNA1 0.000134177484187 0.000219838738361 8.5661254174e-05 +UniRef50_UPI0004213A08 chemotaxis protein CheD 0.000107165920875 2.56906378746e-05 -8.14752830004e-05 +UniRef50_D3HDQ8 0.00377767319777 0.00049178525602 -0.00328588794175 +UniRef50_A7X154 Probable heme iron transport system permease protein IsdF 0.0116631921483 0.00269081729806 -0.00897237485024 +UniRef50_UPI0002651C73 PREDICTED 3.38730729961e-06 7.24867735798e-06 3.86137005837e-06 +UniRef50_E8SK39 DNA polymerase III polC type 0.0202521881527 0.00476534590846 -0.0154868422442 +UniRef50_UPI00047262F8 hypothetical protein 1.23939100537e-05 8.59676683724e-06 -3.79714321646e-06 +UniRef50_P07874 Alginate biosynthesis protein AlgA 0.000370299763942 0.000301461818483 -6.8837945459e-05 +UniRef50_P50648 Ribonucleoside diphosphate reductase large subunit 2.67519971284e-06 0.00031384744164 0.000311172241927 +UniRef50_B1XZJ7 Pseudouridine synthase 0.000136935667056 0.00271019692285 0.00257326125579 +UniRef50_UPI0003B7021A amino acid transporter 1.47664806801e-05 0.00164015197748 0.0016253854968 +UniRef50_UPI0003C0FDA1 PREDICTED 2.36845131039e-06 6.9681995618e-05 6.73135443076e-05 +UniRef50_UPI0003B40AC9 hypothetical protein 1.77440827614e-06 7.91465092019e-05 7.73721009258e-05 +UniRef50_UPI00047E50BD hypothetical protein 4.46544416793e-06 7.9872210025e-06 3.52177683457e-06 +UniRef50_Q13V14 tRNA ) methyltransferase 0.000757043994216 0.00425614902498 0.00349910503076 +UniRef50_L0KY29 0.000523764892083 0.000271763839138 -0.000252001052945 +UniRef50_Q9RWG0 0.000194946102928 0.0431041686099 0.042909222507 +UniRef50_Q9RWG3 0.000201864165162 0.0314751495341 0.0312732853689 +UniRef50_E6MYP0 7.12431646305e-05 4.2622339057e-05 -2.86208255735e-05 +UniRef50_Q83GH8 Peptide deformylase 9.29552743465e-06 6.6213311198e-05 5.69177837633e-05 +UniRef50_W5XCC5 Putative ferric uptake regulator 0.000149178504816 1.98364848386e-05 -0.000129342019977 +UniRef50_E5U1W5 4.29596378146e-05 0.000112855963559 6.98963257444e-05 +UniRef50_G7ZUI4 0.000139886427018 5.4990409522e-05 -8.4896017496e-05 +UniRef50_D1WQ15 KxYKxGKxW signal domain protein 3.91853967615e-05 6.23908532181e-05 2.32054564566e-05 +UniRef50_C7CKD2 1.44772032955e-05 2.45047385743e-05 1.00275352788e-05 +UniRef50_UPI00046E9E57 hypothetical protein 3.59942994122e-05 5.41165506057e-05 1.81222511935e-05 +UniRef50_UPI0003D0659C 50S ribosomal protein L6 0.000268032457028 0.000213389517458 -5.464293957e-05 +UniRef50_O27801 Ribosomal RNA large subunit methyltransferase E 0.00243723585527 0.000804397744613 -0.00163283811066 +UniRef50_A0A013I2H1 1.67251483267e-05 2.28521841338e-05 6.1270358071e-06 +UniRef50_E6MXU9 Bacterial regulatory helix turn helix , lysR family protein 0.000143530794236 0.00218035481854 0.0020368240243 +UniRef50_Q1MK98 3.84901086217e-05 4.85734682634e-05 1.00833596417e-05 +UniRef50_A4CFF4 Excinuclease ABC subunit C 3.8447429531e-05 5.07870386009e-05 1.23396090699e-05 +UniRef50_F7ZCB4 1.93614138063e-05 9.09200088522e-06 -1.02694129211e-05 +UniRef50_A5UJ70 Peptide methionine sulfoxide reductase, PMSR 0.000873566966136 0.000467838431596 -0.00040572853454 +UniRef50_G4QEC1 Na+ H+ antiporter, NhaC family protein 0.00603024692687 0.0022571317283 -0.00377311519857 +UniRef50_UPI0003B48120 aldehyde activating protein 2.73946716222e-05 3.08713727503e-05 3.4767011281e-06 +UniRef50_H8FT83 0.000478836744996 0.000301847681352 -0.000176989063644 +UniRef50_UPI00046A638F hypothetical protein 0.000108231213167 6.74619754926e-05 -4.07692376744e-05 +UniRef50_F0P106 Thioesterase superfamily protein 1.59595002903e-05 0.000616597096296 0.000600637596006 +UniRef50_W9C3F0 1.28447102352e-05 1.97437241251e-05 6.8990138899e-06 +UniRef50_E1YHR1 5.50747510539e-06 5.57491348976e-05 5.02416597922e-05 +UniRef50_UPI0002B46230 PREDICTED 3.75539143746e-06 1.48570686071e-05 1.11016771696e-05 +UniRef50_UPI0001BF6B99 90S preribosome component RRP12 1.84742307319e-07 4.34052266133e-06 4.15578035401e-06 +UniRef50_UPI0003B36FDF histidinol dehydrogenase 3.84907475883e-06 5.89162415438e-06 2.04254939555e-06 +UniRef50_A6LU03 0.000250884475769 0.00152826718443 0.00127738270866 +UniRef50_UPI00026282A2 ATP dependent RNA helicase 5.95834247549e-06 5.79358421468e-05 5.19774996713e-05 +UniRef50_H9UXV0 Glycerol 3 phosphate regulon repressor 0.000186874251907 0.000297298696507 0.0001104244446 +UniRef50_T5BIS1 1.44105136951e-06 1.05731101751e-05 9.13205880559e-06 +UniRef50_A6LZX4 0.000254204442373 0.00116004954054 0.000905845098167 +UniRef50_D7GEA9 Regulatory protein 3.36201322807e-06 3.06219016011e-05 2.7259888373e-05 +UniRef50_Q1GEZ2 Phosphoribosyl ATP pyrophosphatase 0.000304933388166 3.20112924269e-05 -0.000272922095739 +UniRef50_A7HK75 Phospho N acetylmuramoyl pentapeptide transferase 6.86348620862e-06 1.66973283771e-05 9.83384216848e-06 +UniRef50_Z9UWI7 7.45259444518e-05 0.000304342777435 0.000229816832983 +UniRef50_UPI0003823FAA hypothetical protein 1.0848406435e-05 3.6822934336e-05 2.5974527901e-05 +UniRef50_A6LV76 ABC transporter related 0.000358530744195 0.00186169977712 0.00150316903292 +UniRef50_F3H836 ABC transport protein, inner membrane component 0.000126373116261 4.97905254017e-05 -7.65825908593e-05 +UniRef50_Q99UN8 Malonyl CoA acyl carrier protein transacylase 0.0234592647232 0.00790678632742 -0.0155524783958 +UniRef50_J3ML95 8.93941551785e-06 8.01036548357e-05 7.11642393178e-05 +UniRef50_Q8PZP6 NH dependent NAD(+) synthetase 3.24588708574e-05 8.86118586089e-06 -2.35976849965e-05 +UniRef50_G7M7P0 Pseudouridine synthase 0.000516252560877 0.00162564782028 0.0011093952594 +UniRef50_UPI00006CF5D0 Ribonucleotide reductase, barrel domain containing protein 7.35054378711e-07 4.03192371522e-05 3.95841827735e-05 +UniRef50_B2V1J4 Oligoendopeptidase F 0.000614246483524 0.00174180126492 0.0011275547814 +UniRef50_X0SDU2 Marine sediment metagenome DNA, contig 1.37992001787e-05 0.00010637778906 9.25785888813e-05 +UniRef50_A6LWR2 Pentapeptide repeat protein 0.000144630647073 0.000355424104548 0.000210793457475 +UniRef50_I9K9U7 7.42013673445e-05 6.86071883845e-05 -5.59417896e-06 +UniRef50_B8GPV2 Shikimate kinase 2.82490787016e-05 0.00494369666925 0.00491544759055 +UniRef50_B1MWT5 Predicted permease 0.00389650307883 0.00273138139925 -0.00116512167958 +UniRef50_K7S768 GHMP kinase, N terminal domain containing protein 0.000159726088367 0.00786419720344 0.00770447111507 +UniRef50_UPI00037B6D4D hypothetical protein 0.000593569188326 0.000405854631615 -0.000187714556711 +UniRef50_A0A058Z9B5 0.000126521802953 4.77452129912e-05 -7.87765899618e-05 +UniRef50_A3WB27 0.00038153739661 0.000314341301456 -6.7196095154e-05 +UniRef50_UPI0003B50A22 amino acid lyase 2.33178989758e-05 6.70398064063e-05 4.37219074305e-05 +UniRef50_Q9JVF4 Bis tetraphosphatase, symmetrical 2.30308989982e-05 0.000884967415111 0.000861936516113 +UniRef50_S3ZBV7 5.5134272954e-05 3.46436966563e-06 -5.16699032884e-05 +UniRef50_K1ZWF0 Dihydroorotate dehydrogenase 0.000291090554801 0.000951539999565 0.000660449444764 +UniRef50_A6M087 AraC type transcriptional regulator domain protein 0.000377275693748 0.0017729545956 0.00139567890185 +UniRef50_UPI0003631244 hypothetical protein 9.73237400121e-06 7.69874949636e-06 -2.03362450485e-06 +UniRef50_A7X1H5 0.0184345281928 0.00428859054347 -0.0141459376493 +UniRef50_D6UEI8 0.00246500185851 0.00212280476168 -0.00034219709683 +UniRef50_M0VCY1 8.97129956613e-06 0.000261158118716 0.00025218681915 +UniRef50_C1MV00 Predicted protein 7.18610528696e-05 1.21608864946e-05 -5.9700166375e-05 +UniRef50_Q0TRG3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.0123549807169 0.00568962191159 -0.00666535880531 +UniRef50_UPI000369953F resolvase 6.01536219842e-05 0.00013987258286 7.97189608758e-05 +UniRef50_F0RM02 Metallophosphoesterase 0.000850538671587 0.0601819888457 0.0593314501741 +UniRef50_UPI0004633E17 dTDP 4 dehydrorhamnose 3,5 epimerase 1.51788923369e-05 2.6278356964e-05 1.10994646271e-05 +UniRef50_UPI00037B304C hypothetical protein 7.13265152469e-06 2.84238792452e-05 2.12912277205e-05 +UniRef50_UPI000463C82A aldehyde reductase 1.56427319225e-05 1.83284496111e-05 2.6857176886e-06 +UniRef50_Q4L9Z0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0169082617177 0.00219941983288 -0.0147088418848 +UniRef50_Q56110 Outer membrane protein S1 0.00507547013477 0.00119738713923 -0.00387808299554 +UniRef50_B7H4N1 0.000222442599406 0.0076544063069 0.00743196370749 +UniRef50_UPI00031566CC hypothetical protein 6.99237468115e-06 6.63175388527e-05 5.93251641716e-05 +UniRef50_UPI0003647B3B 50S ribosomal protein L5 0.000202434552792 0.000258215085618 5.5780532826e-05 +UniRef50_S9R870 4.7284257471e-05 7.25058753731e-06 -4.00336699337e-05 +UniRef50_D6SE47 0.0211952411663 0.00424967115831 -0.016945570008 +UniRef50_Q9FS88 2 methylacyl CoA dehydrogenase, mitochondrial 0.00019904460203 0.00595523740522 0.00575619280319 +UniRef50_UPI0004691E44 hypothetical protein 2.85920087172e-06 5.47493878032e-06 2.6157379086e-06 +UniRef50_A9M410 0.00106835657223 0.0104669733969 0.00939861682467 +UniRef50_Q1QE72 Diacylglycerol O acyltransferase 9.58086266163e-05 0.00606794619042 0.0059721375638 +UniRef50_F0KF01 0.000202949456367 0.00525753843661 0.00505458898024 +UniRef50_UPI000469EC64 peptidase S11 5.36367191231e-06 2.41231727767e-05 1.87595008644e-05 +UniRef50_UPI0004638197 pseudouridine synthase 3.31864683741e-06 8.68862368679e-06 5.36997684938e-06 +UniRef50_UPI00047D4A1B 3,4 dihydroxy 2 butanone 4 phosphate synthase 4.24200620789e-05 6.48154980876e-06 -3.59385122701e-05 +UniRef50_H8YVR6 Mating pair stabilization protein TraN 2.01678828869e-06 3.52323178377e-06 1.50644349508e-06 +UniRef50_Q92E26 Lin0635 protein 4.29742528301e-05 0.0026146944976 0.00257172024477 +UniRef50_UPI0004787C34 D ala D ala transporter subunit 3.27818645732e-05 7.88507486297e-05 4.60688840565e-05 +UniRef50_UPI0003B75E15 ABC transporter 3.13321171835e-05 3.07347915621e-05 -5.973256214e-07 +UniRef50_W4NLY9 Mobile element protein 4.6002034962e-05 1.85300634716e-05 -2.74719714904e-05 +UniRef50_E9AHU2 Proteophosphoglycan 5 4.16420175687e-05 0.000123403840882 8.17618233133e-05 +UniRef50_Q9RR77 Cytochrome c oxidase, subunit I 0.000359404236973 0.0633286180456 0.0629692138086 +UniRef50_A6M3F7 Sigma 54 factor, interaction domain containing protein 0.000281661293276 0.00168688576792 0.00140522447464 +UniRef50_P0AA77 D galactonate transporter 0.000836481684023 0.00021848338239 -0.000617998301633 +UniRef50_X0SPN8 Marine sediment metagenome DNA, contig 3.23592367072e-06 2.09756754314e-05 1.77397517607e-05 +UniRef50_M2TDC8 2.37689562817e-05 4.2721621462e-05 1.89526651803e-05 +UniRef50_K6MT38 0.00142910137732 0.0201678928387 0.0187387914614 +UniRef50_F2SGG3 Glutathione S transferase 0.000110936825073 2.03899444673e-05 -9.05468806057e-05 +UniRef50_H7CWV1 Phage shock protein A 0.000349524063753 0.00289098368658 0.00254145962283 +UniRef50_M9RNM4 0.00338826409766 4.30363478161e-05 -0.00334522774984 +UniRef50_A5ULI2 tRNA pseudouridine synthase A 0.003001306077 0.000210689682662 -0.00279061639434 +UniRef50_UPI00025578F4 dihydroxy acid dehydratase, partial 7.31610814116e-06 4.75614187949e-05 4.02453106537e-05 +UniRef50_B3GZA0 Siroheme synthase 0.00583420616867 0.00501592659389 -0.00081827957478 +UniRef50_K7ZDL1 DeoC LacD aldolase family protein 0.0126209664772 0.002568575884 -0.0100523905932 +UniRef50_UPI00034553FE hypothetical protein 7.48360125642e-06 1.17326347229e-05 4.24903346648e-06 +UniRef50_C1MKI4 Predicted protein 1.65434941078e-05 8.34313422084e-06 -8.20035988696e-06 +UniRef50_C0Z7W5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.0218614577609 0.0049415734419 -0.016919884319 +UniRef50_UPI000303E0FF hypothetical protein 4.02165015633e-05 5.55832865067e-05 1.53667849434e-05 +UniRef50_Q5NYZ3 Nitrate nitrite antiporter 1.07389023022e-05 5.55199154517e-06 -5.18691075703e-06 +UniRef50_Q3JWL2 7.7364373451e-05 0.000139328915975 6.1964542524e-05 +UniRef50_N7V1R0 2.185632817e-05 2.95294652892e-05 7.6731371192e-06 +UniRef50_A4VMQ2 4.85315906147e-05 0.000211124935956 0.000162593345341 +UniRef50_W6KAJ6 BRO family, N terminal domain protein. Phage related DNA binding protein 2.00278823065e-05 1.84618745136e-05 -1.5660077929e-06 +UniRef50_G8AH05 3.35979929766e-05 6.85332758875e-05 3.49352829109e-05 +UniRef50_Q6GG70 GTP pyrophosphokinase 0.0214074686727 0.00397557495064 -0.0174318937221 +UniRef50_UPI0003B47D61 tRNA delta isopentenylpyrophosphate transferase 6.22345282197e-06 1.62077662881e-05 9.98431346613e-06 +UniRef50_B7Z712 60 kDa heat shock protein, mitochondrial 2.47096348245e-05 4.74255752308e-05 2.27159404063e-05 +UniRef50_T5X346 Sensor protein evgS 0.00314502537503 0.00114906057447 -0.00199596480056 +UniRef50_G4LPB8 ATP binding permease fusion ABC transporter 0.000296815460704 0.000345326751535 4.8511290831e-05 +UniRef50_Q6C5E4 YALI0E18766p 8.30797413508e-06 1.30546578664e-05 4.74668373132e-06 +UniRef50_A6V6R4 0.00020920330863 0.000244400031881 3.5196723251e-05 +UniRef50_Q89AK1 Glyceraldehyde 3 phosphate dehydrogenase 4.37068682341e-05 2.47709415116e-05 -1.89359267225e-05 +UniRef50_Q5HIB4 Serine aspartate repeat containing protein C 0.0202018905514 0.00446505189352 -0.0157368386579 +UniRef50_UPI0003F08AB5 PREDICTED 0.000148923402963 8.62405358341e-05 -6.26828671289e-05 +UniRef50_B1TFY4 LigA 0.000707227881682 0.000184492453673 -0.000522735428009 +UniRef50_Q9RS49 Amino acid ABC transporter, periplasmic amino acid binding protein 0.000920723343509 0.0557400564622 0.0548193331187 +UniRef50_V8BEZ6 6.7173661447e-05 6.9090248326e-05 1.916586879e-06 +UniRef50_P0ACL6 Glc operon transcriptional activator 0.00432523640196 0.00247363367397 -0.00185160272799 +UniRef50_U2SGB1 Imelysin 1.73381625347e-05 0.000111237918984 9.38997564493e-05 +UniRef50_M1N514 0.000269359016931 0.000623549449316 0.000354190432385 +UniRef50_B4RCM7 NADH quinone oxidoreductase subunit C 0.0160166668845 0.00464350995767 -0.0113731569268 +UniRef50_UPI00040C5C40 multidrug ABC transporter ATPase 1.08102005534e-05 2.70939078355e-05 1.62837072821e-05 +UniRef50_A0A020WTM6 6 phospho beta galactosidase 0.00328654549774 0.000653259279449 -0.00263328621829 +UniRef50_UPI00016C5625 Putative bacteriophage holin protein 8.714161401e-05 4.53558919806e-05 -4.17857220294e-05 +UniRef50_Q31I51 Zinc import ATP binding protein ZnuC 1.82043894177e-05 3.38090238449e-05 1.56046344272e-05 +UniRef50_V4R6H1 ATPase AAA 2.48111105099e-05 3.75217986315e-05 1.27106881216e-05 +UniRef50_Q1CUH1 Ketol acid reductoisomerase 4.36521825183e-06 0.00340818401642 0.00340381879817 +UniRef50_D3E138 0.00319872884559 0.00194763281429 -0.0012510960313 +UniRef50_Q7UNN9 Bifunctional protein FolD 2.65767436071e-05 0.00357762756323 0.00355105081962 +UniRef50_U6MKZ6 8.06943107132e-06 5.32514598488e-07 -7.53691647283e-06 +UniRef50_I0C1R4 0.00159420992346 0.000744495895456 -0.000849714028004 +UniRef50_Q04E86 DNA directed RNA polymerase subunit beta 0.0185767700226 0.0145840021491 -0.0039927678735 +UniRef50_P14407 Fumarate hydratase class I, anaerobic 0.00292233837971 0.00414689287694 0.00122455449723 +UniRef50_Q74CZ6 5 nucleotidase SurE 0.000298801574284 0.00787581653699 0.00757701496271 +UniRef50_UPI00035047B5 PREDICTED 0.000370510237563 0.000237502126784 -0.000133008110779 +UniRef50_H8MLE9 Pirin family protein 2.81571081211e-05 6.43233306495e-06 -2.17247750562e-05 +UniRef50_B0VC75 0.000849822006764 0.0103289882688 0.00947916626204 +UniRef50_X5DWG5 ABC 2 transporter family protein 0.0118263476215 0.00247621423248 -0.00935013338902 +UniRef50_Q6A8C6 ATP synthase gamma chain 0.000255058100582 0.00249056800984 0.00223550990926 +UniRef50_R7YLT4 0.000231981179873 3.05484111531e-05 -0.00020143276872 +UniRef50_UPI00037397F4 hypothetical protein 1.15962366269e-05 6.30757280599e-05 5.1479491433e-05 +UniRef50_P0AA72 0.00235114999634 0.000394141203652 -0.00195700879269 +UniRef50_A4EAZ9 4.58239276806e-05 1.07580792655e-05 -3.50658484151e-05 +UniRef50_UPI0004653BA0 hypothetical protein 0.000335633263467 0.00019521068067 -0.000140422582797 +UniRef50_UPI00045E6087 hypothetical protein 8.75444887175e-05 0.000160937271259 7.33927825415e-05 +UniRef50_UPI000378C160 hypothetical protein 1.15329886117e-05 2.24450584983e-05 1.09120698866e-05 +UniRef50_K0LJV9 0.00301866158195 0.00272409348682 -0.00029456809513 +UniRef50_Q67N09 Shikimate kinase 3.46577290451e-05 3.95558399668e-05 4.8981109217e-06 +UniRef50_UPI00036A8298 hypothetical protein 2.00463914486e-05 4.9845087809e-05 2.97986963604e-05 +UniRef50_E3GX37 H+transporting two sector ATPase C subunit 0.00190124259117 0.00104229425363 -0.00085894833754 +UniRef50_UPI000382EE91 hypothetical protein 2.68395701029e-06 9.61879113497e-05 9.35039543394e-05 +UniRef50_H9K6K8 3.20250738869e-05 6.21586566608e-05 3.01335827739e-05 +UniRef50_J0LGW4 0.000275413787398 7.40842907259e-05 -0.000201329496672 +UniRef50_A6LWE8 Ribonucleoside triphosphate reductase, adenosylcobalamin dependent 0.00024613554059 0.000987560894937 0.000741425354347 +UniRef50_Q1N9J0 Plasmid partitioning protein RepAa1 3.16161271096e-05 2.35774287104e-05 -8.0386983992e-06 +UniRef50_UPI0003AE07B3 PREDICTED 0.000107721447032 7.00213515803e-05 -3.77000954517e-05 +UniRef50_A9WM93 Uracil DNA glycosylase 0.000709340724343 0.00665775573545 0.00594841501111 +UniRef50_A5IW30 0.0181019545967 0.00676680427745 -0.0113351503192 +UniRef50_UPI0003D0C408 PREDICTED 3.21738413227e-05 8.16265423969e-05 4.94527010742e-05 +UniRef50_X4ZB59 EAL domain protein 6.29813973851e-06 5.83736416967e-05 5.20755019582e-05 +UniRef50_UPI0001B46820 GTPase ObgE, partial 3.68909666183e-05 0.000450304867202 0.000413413900584 +UniRef50_UPI000463A064 L asparagine permease 5.8560281144e-06 1.36520119822e-05 7.7959838678e-06 +UniRef50_UPI00035FE410 peptide ABC transporter permease 6.84922962506e-05 0.000167176785893 9.86844896424e-05 +UniRef50_Q5YS08 Ribonuclease 3 2.52205637789e-05 6.93142376719e-05 4.4093673893e-05 +UniRef50_A9AC17 L carnitine dehydratase bile acid inducible protein F 0.00309243013243 0.00795824514871 0.00486581501628 +UniRef50_P33919 0.00382317897368 0.000977286184154 -0.00284589278953 +UniRef50_H1UL22 Dehydrogenase 0.00019561109237 2.84875484223e-05 -0.000167123543948 +UniRef50_UPI0004782043 AsnC family transcriptional regulator 0.00018988034278 0.00011683360775 -7.304673503e-05 +UniRef50_M9SF47 0.000251657325899 0.000393755606923 0.000142098281024 +UniRef50_UPI000470709D hypothetical protein 5.82702939008e-05 7.18725314652e-05 1.36022375644e-05 +UniRef50_G8NUY5 Beta lactamase domain protein 3.57755165396e-06 0.00018748512452 0.000183907572866 +UniRef50_A6LXY2 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.000343626321018 0.000909865031755 0.000566238710737 +UniRef50_P24734 HTH type transcriptional activator AmpR 0.00896469061121 0.00136719685808 -0.00759749375313 +UniRef50_V6PIL4 2 isopropylmalate synthase 0.00306085241467 0.000452015365101 -0.00260883704957 +UniRef50_O07599 0.000306692225712 0.00161501013008 0.00130831790437 +UniRef50_C7ZT42 DNA binding protein 0.0167421611663 0.00304410231283 -0.0136980588535 +UniRef50_C9CRT7 0.000525551496523 0.000252931023886 -0.000272620472637 +UniRef50_P31063 0.000275537218136 0.00043007287164 0.000154535653504 +UniRef50_B1Z5H1 Secretion protein HlyD family protein 0.00130745224531 0.000998317946022 -0.000309134299288 +UniRef50_P0ABH3 Cell division protein FtsA 0.00337080064067 0.000766383440838 -0.00260441719983 +UniRef50_B9JPQ6 1.95134207401e-05 0.000462184441305 0.000442671020565 +UniRef50_UPI0003B69DC4 flagellar P ring protein FlgI 1.20122179613e-05 1.23485711816e-05 3.363532203e-07 +UniRef50_F3X2S2 4.59759012182e-06 9.20508903668e-05 8.7453300245e-05 +UniRef50_R1D4S7 0.000781124102474 0.000504879154655 -0.000276244947819 +UniRef50_A6M1M3 0.000178521218719 0.00109088185213 0.000912360633411 +UniRef50_Q6AA07 8.65830399895e-05 0.00374771682532 0.00366113378533 +UniRef50_UPI0002895CF3 amino acid carrier protein, partial 3.07527779269e-06 6.57245516558e-05 6.26492738631e-05 +UniRef50_Q4L5Y3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.014158780232 0.00699647351658 -0.00716230671542 +UniRef50_H5VFC5 GTP binding protein TypA BipA 0.000309734987058 0.00092465194711 0.000614916960052 +UniRef50_S8FC16 9.02169197517e-06 8.93450055413e-07 -8.12824191976e-06 +UniRef50_Q8X8V7 0.00216837480698 0.000689827503621 -0.00147854730336 +UniRef50_E8SG33 Chromosome partition protein Smc 0.01119904703 0.00408161349581 -0.00711743353419 +UniRef50_Q4L928 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0284514376016 0.00283334220864 -0.025618095393 +UniRef50_Q9RUV2 Superoxide dismutase [Mn] 8.98827358224e-06 0.0432369876598 0.0432279993862 +UniRef50_Q59092 3 carboxy cis,cis muconate cycloisomerase 0.000116388280223 0.00755411772186 0.00743772944164 +UniRef50_M9RIH4 TAXI family TRAP transporter periplasmatic solute binding protein 3.83686424031e-05 6.58205425613e-05 2.74519001582e-05 +UniRef50_C4LED9 Transcriptional regulator, LuxR family 0.00126490570685 0.000453171414615 -0.000811734292235 +UniRef50_C5MZG2 Molybdopterin guanine dinucleotide biosynthesis protein B 0.0205282096216 0.00326447077521 -0.0172637388464 +UniRef50_UPI00036FB829 hypothetical protein 3.83276617277e-05 3.4514050012e-05 -3.8136117157e-06 +UniRef50_N1K138 FtsK SpoIIIE family protein 0.000192896796686 0.0024574042677 0.00226450747101 +UniRef50_A5UMP2 0.000978079377288 0.000381875049823 -0.000596204327465 +UniRef50_S1IPQ9 0.0032416877403 0.00139545809872 -0.00184622964158 +UniRef50_P58054 Hydrolase YbeM 0.00268118851425 0.000867621868769 -0.00181356664548 +UniRef50_F5RN18 Prophage terminase large subunit 1.13869694362e-05 8.96154016274e-05 7.82284321912e-05 +UniRef50_P09127 Putative uroporphyrinogen III C methyltransferase 0.00334090812159 0.00168626546733 -0.00165464265426 +UniRef50_B9KSC1 0.00142630939619 0.000569742758434 -0.000856566637756 +UniRef50_A3PNN6 Polysaccharide biosynthesis protein CapD 0.0105844402743 0.00344667600007 -0.00713776427423 +UniRef50_B3PD00 Capsular polysaccharide synthesis 3.56062356243e-05 2.18696537434e-05 -1.37365818809e-05 +UniRef50_UPI00028A40F7 thymidylate synthase 0.000111203512763 0.00086195914914 0.000750755636377 +UniRef50_A6H086 Potassium transporting ATPase A chain 1.50854074449e-05 0.00400522737693 0.00399014196949 +UniRef50_P66878 Cobalamin biosynthesis protein CobIJ 2.18934684314e-05 1.0563013675e-05 -1.13304547564e-05 +UniRef50_Q1GMI4 HTH type transcriptional regulator BetI 0.00224099555763 0.000624343953484 -0.00161665160415 +UniRef50_R6XE72 0.000182360381085 0.00239078308213 0.00220842270105 +UniRef50_UPI000369508B hypothetical protein 3.14306742076e-05 2.09627932915e-05 -1.04678809161e-05 +UniRef50_UPI0004648EC6 beta ketoadipyl CoA thiolase, partial 5.67598216689e-06 0.000263468450984 0.000257792468817 +UniRef50_A4VWG8 Transcriptional antiterminator 0.000870876505477 0.0038648993834 0.00299402287792 +UniRef50_J9NVM5 0.000317615403647 8.56114941001e-05 -0.000232003909547 +UniRef50_Q96255 Phosphoserine aminotransferase, chloroplastic 0.00128321897074 0.00228206884437 0.00099884987363 +UniRef50_Q8Z9J5 Ribosomal large subunit pseudouridine synthase A 0.00407451511282 0.000294614182339 -0.00377990093048 +UniRef50_H6NE34 0.000126083817428 1.72353724561e-05 -0.000108848444972 +UniRef50_I7ENJ2 0.00127049820569 0.000937513349825 -0.000332984855865 +UniRef50_UPI00047AC07F hypothetical protein 1.79504123901e-05 3.76411731093e-05 1.96907607192e-05 +UniRef50_UPI00037F808C hypothetical protein 5.66961179638e-06 3.95169639974e-05 3.3847352201e-05 +UniRef50_UPI0003B4238D acyl CoA dehydrogenase 4.23360286583e-06 3.97437736944e-05 3.55101708286e-05 +UniRef50_A0A024DFE0 Membrane protein 0.00649501524262 0.00124521318026 -0.00524980206236 +UniRef50_E6MXN3 Bacteriophage Mu I protein GP32 0.00011069970347 0.00377147114122 0.00366077143775 +UniRef50_D7GDI2 Glycogen debranching enzyme GlgX Isoamylase 0.000209928833228 0.00604758440643 0.0058376555732 +UniRef50_Q018U5 COG0031 0.00219675561832 0.000927724786466 -0.00126903083185 +UniRef50_A3M5U8 Glu tRNA amidotransferase 0.000582600360026 0.00686477668204 0.00628217632201 +UniRef50_B9DNN7 Aminomethyltransferase 0.00914115016219 0.00522048673461 -0.00392066342758 +UniRef50_P76470 Inner membrane transport protein RhmT 0.00437819412686 0.000930064678071 -0.00344812944879 +UniRef50_UPI0002000D3D DeoR family transcriptional regulator 0.000198150867052 0.000372785016686 0.000174634149634 +UniRef50_S7VF17 2.2587823641e-05 2.75024297817e-05 4.9146061407e-06 +UniRef50_Q81K13 UDP N acetylglucosamine 1 carboxyvinyltransferase 1 1.69984866032e-05 8.37543625088e-05 6.67558759056e-05 +UniRef50_Q9RXY2 0.000152622367462 0.067113292039 0.0669606696715 +UniRef50_Q0TUR6 Beta galactosidase Pbg 0.000477938266819 0.00212120636312 0.0016432680963 +UniRef50_A7ZUJ0 Pantothenate kinase 0.00398103938752 0.000452305822341 -0.00352873356518 +UniRef50_Q6LSD6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.33443576863e-06 2.74349808578e-06 -6.59093768285e-06 +UniRef50_P27840 0.00312804233966 0.000504814880674 -0.00262322745899 +UniRef50_Q4L783 UPF0478 protein SH1183 0.0129183532718 0.0102050111044 -0.0027133421674 +UniRef50_F1PYJ5 9.01117188233e-07 0.000102201738892 0.000101300621704 +UniRef50_UPI00021A59F3 PREDICTED 6.59175382665e-05 3.05040399008e-05 -3.54134983657e-05 +UniRef50_Q2FVY9 HTH type transcriptional regulator SarV 0.0168220999643 0.00377878829936 -0.0130433116649 +UniRef50_Q2S4I8 Biotin synthase 4.7621694114e-06 5.7193065787e-05 5.24308963756e-05 +UniRef50_W8TJK1 5.88725873443e-06 2.03083448293e-05 1.44210860949e-05 +UniRef50_B5E267 Ribosome binding factor A 0.00296405241928 0.000535317290393 -0.00242873512889 +UniRef50_E0WIF5 CagZ protein 0.000834795787505 0.00344756603461 0.00261277024711 +UniRef50_B5Y8S3 Transcription termination factor Rho 0.000197982161991 0.00426045117553 0.00406246901354 +UniRef50_D5V5Y4 Hemolysin type calcium binding region 2.55320873603e-06 8.45993003455e-07 -1.70721573258e-06 +UniRef50_Q5FNA2 Transcriptional repressor NrdR 0.00576095190673 0.000397287047353 -0.00536366485938 +UniRef50_D7FSA3 0.00106198297138 0.000329962799096 -0.000732020172284 +UniRef50_UPI00035ED229 hypothetical protein 2.75187199693e-05 3.23876030697e-06 -2.42799596623e-05 +UniRef50_B5YDT2 D tyrosyl tRNA deacylase 0.00330452693409 0.00747744939336 0.00417292245927 +UniRef50_V9X558 0.0027262416657 0.000358955293068 -0.00236728637263 +UniRef50_E6K0A1 GroES like protein 0.00325834409436 0.00118599040039 -0.00207235369397 +UniRef50_B5XY59 Dihydroorotate dehydrogenase 0.00243255812297 1.77869503976e-05 -0.00241477117257 +UniRef50_UPI00037BE1B4 hypothetical protein 2.29578583471e-05 6.93144360538e-06 -1.60264147417e-05 +UniRef50_A6LXY0 D galactose binding periplasmic protein 0.000237062033318 0.000168591839309 -6.8470194009e-05 +UniRef50_UPI0003800F45 hypothetical protein, partial 1.66972765658e-05 5.90526863844e-05 4.23554098186e-05 +UniRef50_E3A0J6 0.00211674386272 0.000383806722049 -0.00173293714067 +UniRef50_UPI000476452D 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.03588972662e-05 4.31104507748e-05 3.27515535086e-05 +UniRef50_A0A023S0J1 Sodium 0.000677184245367 0.00952386807991 0.00884668383454 +UniRef50_Q0FNM1 5.41260145744e-06 1.08677490104e-05 5.45514755296e-06 +UniRef50_G8AZY0 6.58176502531e-05 2.37447774224e-05 -4.20728728307e-05 +UniRef50_UPI0003787256 hypothetical protein 8.37676771772e-06 1.47905367657e-05 6.41376904798e-06 +UniRef50_Q094V3 4.1498880895e-05 5.25822912724e-05 1.10834103774e-05 +UniRef50_UPI00036D8B59 hypothetical protein 0.000111349102001 3.31189048694e-05 -7.82301971316e-05 +UniRef50_Q83SQ3 Glutathione regulated potassium efflux system protein KefC 0.00139778165811 0.000210094264896 -0.00118768739321 +UniRef50_Q3J5H6 Bifunctional uridylyltransferase uridylyl removing enzyme 0.00595333929402 0.00283608266032 -0.0031172566337 +UniRef50_Q48335 Glyceraldehyde 3 phosphate dehydrogenase 0.0137980454389 0.00453567906558 -0.00926236637332 +UniRef50_UPI0003B4462C hypothetical protein, partial 3.03877483906e-05 3.40130587235e-05 3.6253103329e-06 +UniRef50_A8Z4R9 Bacteriophage integrase 0.0145715884757 0.0043042838889 -0.0102673045868 +UniRef50_Q8X9Z2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.00571900380746 0.00112612177666 -0.0045928820308 +UniRef50_W5W9B3 9.02907257519e-05 1.92865753007e-05 -7.10041504512e-05 +UniRef50_P0ADV3 Lipopolysaccharide export system protein LptA 0.00360963106788 0.000969245214967 -0.00264038585291 +UniRef50_A5UN28 Biopolymer transport protein 0.00305111682171 0.00216182931077 -0.00088928751094 +UniRef50_A3PHB1 0.0282865972439 0.00101711841837 -0.0272694788255 +UniRef50_Q8T137 Glutathione reductase 0.00247083372516 0.000274129199397 -0.00219670452576 +UniRef50_P94357 UPF0750 membrane protein YxkD 0.0123248103717 0.00535017271149 -0.00697463766021 +UniRef50_J2X5J3 8.656701238e-05 5.96094739784e-05 -2.69575384016e-05 +UniRef50_Q9RSY5 Thymidine kinase 1.78085265277e-05 0.0200502663909 0.0200324578644 +UniRef50_F9YYP8 Pyridoxal kinase 0.000751232532717 0.00756003279175 0.00680880025903 +UniRef50_Q0HDL5 LexA repressor 0.00271502841277 0.00175759417293 -0.00095743423984 +UniRef50_G1FTZ5 Gp57 7.35095055468e-06 1.1241430419e-05 3.89047986432e-06 +UniRef50_Q5QVL6 D erythrose 4 phosphate dehydrogenase 0.000287020616154 0.000156148935472 -0.000130871680682 +UniRef50_UPI0003C11E65 PREDICTED 0.000119800171384 5.33905138125e-05 -6.64096575715e-05 +UniRef50_A0A024F1P3 Membrane protein 9.24807478684e-05 6.4267487052e-05 -2.82132608164e-05 +UniRef50_UPI00036780D5 peptide ABC transporter permease 3.63602092308e-05 2.80630446978e-05 -8.297164533e-06 +UniRef50_UPI0003789F55 hypothetical protein 1.52277889728e-05 0.000116564904591 0.000101337115618 +UniRef50_F8I5D2 3.73706477959e-06 1.44868590244e-05 1.07497942448e-05 +UniRef50_F0P5S5 Accessory Sec system protein translocase subunit SecY2 0.0117429628346 0.00256164763503 -0.00918131519957 +UniRef50_A9M194 AraC family transcriptional regulator 0.000191942028225 0.00334782423651 0.00315588220828 +UniRef50_A9C190 Potassium transporting ATPase A chain 3.20190825613e-05 0.00513072833528 0.00509870925272 +UniRef50_S8VH52 3.23269025974e-05 4.55918139403e-05 1.32649113429e-05 +UniRef50_A4WU01 Polysaccharide export protein 0.00364722274638 0.00129377448768 -0.0023534482587 +UniRef50_A6X187 Leucyl phenylalanyl tRNA protein transferase 3.0318842638e-05 8.91259578659e-05 5.88071152279e-05 +UniRef50_Q8RG83 Orotidine 5 phosphate decarboxylase 2.55651245226e-05 7.54271368688e-05 4.98620123462e-05 +UniRef50_D1ZR99 Catabolic 3 dehydroquinase 3.32767199175e-05 1.6669198008e-05 -1.66075219095e-05 +UniRef50_A4WTH1 0.000957905348971 0.000189011797994 -0.000768893550977 +UniRef50_U4Q3Y6 Carboxylesterase 1.16196847354e-05 2.29638682635e-05 1.13441835281e-05 +UniRef50_UPI000299F85F ribokinase 6.31491108994e-06 1.30142341952e-05 6.69932310526e-06 +UniRef50_O27507 0.00222258976562 0.000660924140129 -0.00156166562549 +UniRef50_UPI00047263C5 hypothetical protein 9.9479596506e-06 0.000123031849122 0.000113083889471 +UniRef50_A6LGA4 Non canonical purine NTP pyrophosphatase 8.91839599951e-06 0.00100074099436 0.00099182259836 +UniRef50_P22759 Bacterioferritin 7.19257972469e-05 0.000153741909245 8.18161119981e-05 +UniRef50_UPI0003B5D657 NAD dependent malic enzyme 1 1.29550330898e-05 5.85551840915e-06 -7.09951468065e-06 +UniRef50_W4U517 PTS system 1.07766827986e-05 2.12859764118e-05 1.05092936132e-05 +UniRef50_X0UC79 Marine sediment metagenome DNA, contig 1.36075545208e-05 0.000174334548928 0.000160726994407 +UniRef50_P56062 Citrate synthase 1.3483385012e-05 0.00158325514648 0.00156977176147 +UniRef50_P37050 0.00170892126497 0.00158666192294 -0.00012225934203 +UniRef50_UPI0003840695 PREDICTED 0.000138105092199 1.50169683924e-05 -0.000123088123807 +UniRef50_A9EUD2 2.12977261213e-06 8.47491045166e-05 8.26193319045e-05 +UniRef50_Q9B0F8 DnaC 0.00859070677453 0.00138972300884 -0.00720098376569 +UniRef50_B9KNG3 5.10600788578e-05 0.000367875078469 0.000316814999611 +UniRef50_UPI000361064B hypothetical protein 1.07763301738e-05 3.1731219976e-05 2.09548898022e-05 +UniRef50_P76298 Flagellar biosynthesis protein FlhA 0.00380631142845 0.000780012191102 -0.00302629923735 +UniRef50_UPI00028A1A5C HAD superfamily hydrolase, partial 3.81488485513e-05 0.000119305653981 8.11568054297e-05 +UniRef50_UPI000470C144 tRNA dihydrouridine synthase 7.87905553304e-06 7.70875686992e-06 -1.7029866312e-07 +UniRef50_O59428 0.000113108158144 0.000399142896727 0.000286034738583 +UniRef50_R5LUL0 Spore coat polysaccharide biosynthesis protein spsC 0.000111352799069 0.000828471383495 0.000717118584426 +UniRef50_Q07X28 Hydroxylamine reductase 0.000874975687224 0.00382974708205 0.00295477139483 +UniRef50_UPI0004702B05 integrase, partial 0.000225897872189 0.000137998460376 -8.7899411813e-05 +UniRef50_A6LTH9 0.000283824051773 0.00132451746136 0.00104069340959 +UniRef50_O28994 Carbamoyl phosphate synthase large chain 0.00395879071948 0.0461174565857 0.0421586658662 +UniRef50_A6M0L2 Beta ketoacyl acyl carrier protein synthase I 0.000664025621124 0.00159830751656 0.000934281895436 +UniRef50_J0SEV2 G5 domain protein 0.000352931665289 0.000178226775303 -0.000174704889986 +UniRef50_X8A0M6 0.00133776936483 0.000652809788015 -0.000684959576815 +UniRef50_A6TVZ6 Metal dependent phosphohydrolase 0.000283824051773 0.000673652252854 0.000389828201081 +UniRef50_Q169C1 0.000294241340882 2.25449069014e-05 -0.000271696433981 +UniRef50_H9KBT1 7.45842352229e-06 2.14826545911e-05 1.40242310688e-05 +UniRef50_D7I3U8 Dipeptide transport system permease protein 3.49468616108e-05 4.16251014161e-05 6.6782398053e-06 +UniRef50_UPI00035FCD14 hypothetical protein 1.07663972604e-05 1.17417356986e-05 9.753384382e-07 +UniRef50_D9UU07 Radical SAM domain containing protein 0.000163241227578 0.000862081090623 0.000698839863045 +UniRef50_A5G2W1 Carbohydrate ABC transporter substrate binding protein, CUT1 family 1.45430315596e-05 7.61275457121e-06 -6.93027698839e-06 +UniRef50_UPI0002EE07FC hypothetical protein 4.73987436036e-06 1.0936994393e-05 6.19712003264e-06 +UniRef50_P75995 0.00120637898388 0.000337957755454 -0.000868421228426 +UniRef50_N4S0B6 Type 1V conjugative transfer system mating pair stabilization family protein 2.4185626762e-05 2.08577560381e-05 -3.3278707239e-06 +UniRef50_D8GPT5 Predicted aminoacid permease 0.00025135343659 0.000562779026146 0.000311425589556 +UniRef50_UPI00047A1147 nucleoside triphosphate diphosphatase, partial 9.72665400358e-05 8.96010207788e-05 -7.665519257e-06 +UniRef50_B8GIV7 CRISPR associated helicase Cas3 8.82302985918e-05 2.53871312813e-05 -6.28431673105e-05 +UniRef50_C5BIJ8 Leucyl phenylalanyl tRNA protein transferase 9.05398084321e-06 1.72972504902e-05 8.24326964699e-06 +UniRef50_UPI00046616FD 4 alpha glucanotransferase, partial 7.8970119451e-06 0.000346638971304 0.000338741959359 +UniRef50_D9RCZ8 0.0184525643998 0.000729177049855 -0.0177233873499 +UniRef50_Q51519 Anthranilate synthase, phenazine specific 0.000635317413918 0.000208236527794 -0.000427080886124 +UniRef50_UPI0002559CB6 nucleoside triphosphate diphosphatase 9.14582280039e-05 1.7521070832e-05 -7.39371571719e-05 +UniRef50_Z5XN41 Diguanylate cyclase 4.77440390972e-06 0.000527919795919 0.000523145392009 +UniRef50_D3A856 DNA gyrase, B subunit, C terminal domain protein 0.000101171386051 0.00243788110412 0.00233670971807 +UniRef50_UPI00016C4069 transporter 3.07101452896e-05 2.55993414771e-06 -2.81502111419e-05 +UniRef50_X2H969 D 2 hydroxyglutarate dehydrogenase 0.000175044792492 0.00105306477336 0.000878019980868 +UniRef50_A9M0U6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.49529057972e-05 0.0105349705462 0.0105200176404 +UniRef50_Q6NCF3 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000215365618767 0.0444317258033 0.0442163601845 +UniRef50_Q8CN93 Membrane protein 0.0117688374796 0.00609235660517 -0.00567648087443 +UniRef50_Q6AAZ9 DNA integrity scanning protein DisA 0.000206276496643 0.00544561143834 0.0052393349417 +UniRef50_Q55842 UPF0062 protein slr0519 2.06978826827e-05 7.10017158759e-05 5.03038331932e-05 +UniRef50_UPI00047D4A4F hypothetical protein 1.83433260313e-05 2.39649053723e-05 5.621579341e-06 +UniRef50_B1ZS98 Polyribonucleotide nucleotidyltransferase 2.50058124e-06 8.98044110755e-06 6.47985986755e-06 +UniRef50_D2N4J0 Sau1hsdS1 0.0104085122778 0.00216805395542 -0.00824045832238 +UniRef50_UPI00026286DA sugar ABC transporter ATP binding protein 0.000119729800084 7.53174262817e-05 -4.44123738023e-05 +UniRef50_Q8CSR0 ABC transporter 0.0105629027881 0.00563935023729 -0.00492355255081 +UniRef50_A3PNK2 OstA family protein 0.00205676612335 0.00156805330192 -0.00048871282143 +UniRef50_V8G4T0 Sugar ABC transporter substrate binding protein 0.000288910775359 0.00118187358362 0.000892962808261 +UniRef50_P62417 Phosphoglycerate kinase 1.42804882688e-05 2.04166383748e-05 6.136150106e-06 +UniRef50_C5BF52 Adenine deaminase 0.000915415584082 0.00051227034625 -0.000403145237832 +UniRef50_A6LXY1 PAS PAC sensor hybrid histidine kinase 0.000384272226826 0.000668424457461 0.000284152230635 +UniRef50_P77744 HTH type transcriptional regulator AbgR 0.00291693286932 0.00121961066811 -0.00169732220121 +UniRef50_P21864 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.000171818849762 0.000112316296738 -5.9502553024e-05 +UniRef50_UPI00046EEC85 hypothetical protein 5.18488924431e-06 1.94089311602e-05 1.42240419159e-05 +UniRef50_P37197 Probable cytochrome c peroxidase 0.00175058074837 0.00215170087626 0.00040112012789 +UniRef50_UPI0004757670 3 phosphoshikimate 1 carboxyvinyltransferase 4.25705310328e-06 6.03287562878e-06 1.7758225255e-06 +UniRef50_UPI0001BF6FB5 hypothetical protein SMAC_10438, partial 7.63915731118e-05 0.00016806865008 9.16770769682e-05 +UniRef50_UPI000375EC1F hypothetical protein, partial 4.27225766513e-06 1.35847077517e-05 9.31245008657e-06 +UniRef50_UPI000476341B major facilitator transporter 1.49980391734e-05 0.00016562263317 0.000150624593997 +UniRef50_UPI000463A3EE hypothetical protein 5.6772810305e-05 0.000108837759561 5.2064949256e-05 +UniRef50_P34842 Cytochrome c oxidase subunit 3 7.53617671939e-05 2.73335263335e-05 -4.80282408604e-05 +UniRef50_UPI00026533A3 5.63782328225e-06 7.2977677582e-05 6.73398542998e-05 +UniRef50_Q9RTL7 Fosmidomycin resistance protein, putative 0.000107341987354 0.0170317927987 0.0169244508113 +UniRef50_UPI0003514416 PREDICTED 0.000872771219099 0.000290850682017 -0.000581920537082 +UniRef50_N9IA23 0.000108906838666 2.72427087213e-05 -8.16641299447e-05 +UniRef50_Q9RXT0 Phosphoribosylaminoimidazole succinocarboxamide synthase 2.97399608376e-05 0.0448614174803 0.0448316775195 +UniRef50_Q3IUV6 Thioredoxin domain protein 0.00134711416884 0.000900993179516 -0.000446120989324 +UniRef50_Q05627 0.0001469154725 0.000114095314303 -3.2820158197e-05 +UniRef50_A7X2Q3 N utilization substance protein B homolog 0.00606330486314 0.00767751000156 0.00161420513842 +UniRef50_F8DIJ3 Acetyltransferase, GNAT family 0.00502559585656 0.00378879746326 -0.0012367983933 +UniRef50_UPI00047D4833 hypothetical protein 2.61790042001e-06 4.00269138362e-06 1.38479096361e-06 +UniRef50_UPI00037A95AF hypothetical protein 1.06226531703e-05 3.19483786463e-05 2.1325725476e-05 +UniRef50_Q3J3X7 0.0132387453601 0.00215941909487 -0.0110793262652 +UniRef50_UPI0004758995 hypothetical protein 3.483005933e-05 3.2354975104e-05 -2.475084226e-06 +UniRef50_Q5HME0 Probable DEAD box ATP dependent RNA helicase SERP1688 0.0206454340274 0.00528303690403 -0.0153623971234 +UniRef50_M9RWN2 Chromosome partitioning protein ParA 9.31047042135e-06 6.28541806761e-05 5.35437102547e-05 +UniRef50_A0A024HNH0 0.000489563015601 9.84936204108e-05 -0.00039106939519 +UniRef50_Q3J3X0 0.00933182625375 0.00428272733204 -0.00504909892171 +UniRef50_UPI0002001DF1 superfamily II RNA helicase, partial 1.16764018316e-05 3.45178371476e-05 2.2841435316e-05 +UniRef50_UPI0003B3ECAB large mechanosensitive ion channel protein MscL 0.000323393402553 7.778216695e-05 -0.000245611235603 +UniRef50_A0A010AWY9 CSLREA domain protein 0.000206276496643 0.00149619473811 0.00128991824147 +UniRef50_UPI000475CD3E hypothetical protein, partial 3.07619221852e-06 2.74847523127e-05 2.44085600942e-05 +UniRef50_H9KRI1 0.000182687712035 8.67872991152e-05 -9.59004129198e-05 +UniRef50_Q2CG67 3.35159057983e-05 0.000256548605175 0.000223032699377 +UniRef50_A8IL90 Predicted protein 1.90694146156e-05 2.13878347521e-05 2.3184201365e-06 +UniRef50_H9KH51 2.98835578895e-06 3.93310390022e-06 9.4474811127e-07 +UniRef50_J9NXN3 2.30664202071e-05 1.90347954718e-05 -4.0316247353e-06 +UniRef50_UPI00035E2C47 hypothetical protein 3.20974134219e-05 1.66219279978e-05 -1.54754854241e-05 +UniRef50_B7MBY5 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.00290228934463 0.00250829376334 -0.00039399558129 +UniRef50_UPI0003B58132 hypothetical protein 1.66134263882e-05 2.13337791438e-05 4.7203527556e-06 +UniRef50_B8J7M5 FHA domain containing protein 5.56574297819e-06 9.55729557795e-06 3.99155259976e-06 +UniRef50_UPI000307F825 hypothetical protein 1.58648297374e-05 2.19619675484e-05 6.097137811e-06 +UniRef50_A6UZY8 0.00144151145681 0.000326798772262 -0.00111471268455 +UniRef50_UPI0003F490D8 hypothetical protein TREMEDRAFT_66895 4.96909919759e-06 1.51076461132e-05 1.01385469156e-05 +UniRef50_R9SLB7 RNA methylase 0.00260833065135 0.000251333366122 -0.00235699728523 +UniRef50_M4RYW8 Putative thioesterase 3.33677059278e-06 0.00149850091015 0.00149516413956 +UniRef50_B2TRN5 Bifunctional protein FolD 0.000428055966941 0.00100938176843 0.000581325801489 +UniRef50_F9YW81 Sugar ABC transporter permease 0.000725730064477 0.00812963508282 0.00740390501834 +UniRef50_Q6FCZ3 Pseudouridine synthase 0.000437242458129 0.00840542176787 0.00796817930974 +UniRef50_A4FBF7 Elongation factor P 2.89581685257e-05 0.000287901060692 0.000258942892166 +UniRef50_F5M415 Periplasmic binding protein 0.000717843357164 0.000313056577946 -0.000404786779218 +UniRef50_U9TNM9 2.36067059259e-05 2.14362424995e-05 -2.1704634264e-06 +UniRef50_UPI0003797F94 membrane protein, partial 5.87800439099e-05 1.04875332767e-05 -4.82925106332e-05 +UniRef50_O83349 Serine hydroxymethyltransferase 0.00033171414778 0.00667324212929 0.00634152798151 +UniRef50_Q65SJ3 0.000111682253253 0.000619176282051 0.000507494028798 +UniRef50_Q5X9H5 DNA mismatch repair protein MutL 0.000555962962344 0.00326716524713 0.00271120228479 +UniRef50_UPI00046BF5D1 PREDICTED 4.4607981119e-06 5.98573422312e-06 1.52493611122e-06 +UniRef50_A9WVW5 0.00140613824156 0.00194889095648 0.00054275271492 +UniRef50_UPI000378BFDC hypothetical protein 0.000575501309685 0.000150161036537 -0.000425340273148 +UniRef50_G0FKS6 8.1262235892e-06 2.44768294624e-05 1.63506058732e-05 +UniRef50_M9RJC1 4.7717567677e-05 6.14400162045e-05 1.37224485275e-05 +UniRef50_V5VA04 Hemolysin type calcium binding domain containing protein 2.05789199777e-05 0.00292492781909 0.00290434889911 +UniRef50_Q28TQ1 Type II secretion system protein E 0.00963185998795 0.00162684823669 -0.00800501175126 +UniRef50_Q08WT9 0.000151744877719 0.000220431791988 6.8686914269e-05 +UniRef50_G0DVY4 Cell division protein FtsW 0.000267305821545 0.0052214869336 0.00495418111206 +UniRef50_B3W763 Cellobiose PTS, EIIC 0.000644738947052 0.000907731266315 0.000262992319263 +UniRef50_E3D8W4 Anaerobic ribonucleoside triphosphate reductase activating protein 0.00928591065863 0.00464918861517 -0.00463672204346 +UniRef50_D9WSF3 Vegetative cell wall protein gp1 (Fragment) 2.47364894345e-06 3.62058689288e-05 3.37322199854e-05 +UniRef50_Q6AA77 Ornithine carbamoyltransferase 8.6561162204e-06 0.00744304135163 0.00743438523541 +UniRef50_B2VDR3 High frequency lysogenization protein HflD homolog 0.00617065823227 0.00139169534204 -0.00477896289023 +UniRef50_P77293 Bactoprenol glucosyl transferase homolog from prophage CPS 53 0.00353725912068 0.000661891287945 -0.00287536783274 +UniRef50_P33073 L serine dehydratase, alpha chain 9.33956236055e-06 1.04518748299e-05 1.11231246935e-06 +UniRef50_A1URA3 ATP dependent zinc metalloprotease FtsH 0.0080795771326 0.0100568055855 0.0019772284529 +UniRef50_G7MD19 Polysaccharide biosynthesis protein 0.000654647512657 0.000868495252532 0.000213847739875 +UniRef50_P42505 Trans acting regulatory protein HvrA 0.00722701121772 0.0167819102434 0.00955489902568 +UniRef50_C8WV62 Transcriptional regulator, MarR family 0.000226491593311 0.00342578409497 0.00319929250166 +UniRef50_UPI0003C83EE0 PREDICTED 4.90868203282e-06 1.10259584914e-05 6.11727645858e-06 +UniRef50_S6ARI5 8.19516347409e-05 0.000102773856293 2.08222215521e-05 +UniRef50_C7RR12 AzlC family protein 2.72294495041e-05 1.4111148542e-05 -1.31183009621e-05 +UniRef50_U5MRF4 Nitrite and sulphite reductase 4Fe 4S region 0.000161779709512 0.000907432183606 0.000745652474094 +UniRef50_UPI00036A7350 hypothetical protein 2.71212034528e-05 2.21854883151e-05 -4.9357151377e-06 +UniRef50_A1RLC1 AzlC family protein 0.000667630234129 0.000276427493162 -0.000391202740967 +UniRef50_E8QBY5 Ribosomal RNA small subunit methyltransferase E 0.00682014150316 0.00103295581091 -0.00578718569225 +UniRef50_F8H6V7 Cytochrome C oxidase assembly protein 0.00207807943358 0.000538571498834 -0.00153950793475 +UniRef50_UPI0003798B2F hypothetical protein 3.92257755468e-07 2.496506516e-06 2.10424876053e-06 +UniRef50_B2IQP4 Peptidase, U32 family 0.00549716419596 0.0060388973229 0.00054173312694 +UniRef50_UPI00036CA0EA hypothetical protein 3.54707788955e-06 3.89766900173e-05 3.54296121278e-05 +UniRef50_C5N2R4 0.00410907359878 0.000913121177628 -0.00319595242115 +UniRef50_F5SR33 1.23829062881e-05 1.94234902796e-05 7.0405839915e-06 +UniRef50_UPI00047D1C2C sugar ABC transporter permease 0.000288766832613 0.000136965985398 -0.000151800847215 +UniRef50_Q8CVW1 Outer membrane protein C 0.00213432753308 0.000535036542953 -0.00159929099013 +UniRef50_A5UMQ0 Cobalt precorrin 3B C17 methyltransferase, CbiH 0.00369709723668 0.000356493659109 -0.00334060357757 +UniRef50_G8VAL6 Methyltransferase 0.00349249961464 0.0112046091711 0.00771210955646 +UniRef50_A9G928 0.000625382609059 0.000187502669965 -0.000437879939094 +UniRef50_UPI00037376DC hypothetical protein 2.18665915799e-06 3.42526042547e-06 1.23860126748e-06 +UniRef50_UPI000375C11B hypothetical protein 0.00010166978036 9.16890832591e-05 -9.9806971009e-06 +UniRef50_Z7FZL7 MFS transporter, ACS family, glucarate transporter 0.0130885473894 0.000603645180008 -0.0124849022094 +UniRef50_A8TZF0 Putative translation initiation inhibitor 0.000214037508404 8.28933163977e-05 -0.000131144192006 +UniRef50_L7WZD3 Dihydrolipoyl dehydrogenase 0.0180312549162 0.00693378911649 -0.0110974657997 +UniRef50_B3E602 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 8.29287035067e-06 2.93748774306e-06 -5.35538260761e-06 +UniRef50_P65591 Transcription termination antitermination protein NusG 0.0289436228778 0.00411556156615 -0.0248280613117 +UniRef50_I2BLI3 Malonate utilization transcriptional regulator 0.00169673362846 0.00322848089983 0.00153174727137 +UniRef50_P37147 UPF0716 protein FxsA 0.00719653847967 0.00161093745608 -0.00558560102359 +UniRef50_Q7MW52 Fructose 1,6 bisphosphatase class 3 0.000357753816084 0.00546183616362 0.00510408234754 +UniRef50_R9YQ76 Thioesterase superfamily protein 0.0108543941282 0.00203828817876 -0.00881610594944 +UniRef50_D4HEH1 Sugar binding domain protein 0.000349732796402 0.00730122357995 0.00695149078355 +UniRef50_I6U0M8 0.00890903694864 0.00218955822568 -0.00671947872296 +UniRef50_G7SE40 DegV family protein 0.00915967040298 0.000256054946702 -0.00890361545628 +UniRef50_Q5FS85 Guanylate kinase 1.17243272149e-05 3.02704731155e-05 1.85461459006e-05 +UniRef50_Q5L287 ABC transporter 0.000251657325899 0.00157719268409 0.00132553535819 +UniRef50_Q1LT82 D alanine D alanine ligase 0.00338508301089 0.000679565132264 -0.00270551787863 +UniRef50_G7LZT8 Beta lactamase domain containing protein 0.000940696554154 0.00048237775423 -0.000458318799924 +UniRef50_UPI00036D9B8C hypothetical protein, partial 1.69491675945e-06 2.80383614367e-06 1.10891938422e-06 +UniRef50_Q3JQ05 4.48006483898e-05 0.000145585310244 0.000100784661854 +UniRef50_A6LXY4 Transcriptional regulator, TetR family 0.000231586496233 0.00231655910057 0.00208497260434 +UniRef50_N8Z5H6 1.22757174995e-05 3.77264799525e-05 2.5450762453e-05 +UniRef50_B7MIH3 Glyoxylate hydroxypyruvate reductase A 0.00227180375265 0.000868798181929 -0.00140300557072 +UniRef50_UPI0003595012 PREDICTED 4.05491718267e-05 2.33543254742e-05 -1.71948463525e-05 +UniRef50_Q8ZLB5 Cellulose biosynthesis protein BcsE 0.00231359707405 0.000864330049016 -0.00144926702503 +UniRef50_A9BVK1 Trans aconitate 2 methyltransferase 0.0024532162627 0.000494947080615 -0.00195826918209 +UniRef50_U6MWK3 7.95171241676e-06 2.79205033155e-06 -5.15966208521e-06 +UniRef50_C6WDZ3 PE PGRS family protein 4.68292241956e-05 0.000640241431337 0.000593412207141 +UniRef50_UPI0003C129CB PREDICTED 2.14510477708e-05 6.66898343518e-06 -1.47820643356e-05 +UniRef50_UPI000471E8AE hypothetical protein, partial 2.909890064e-06 1.55049768261e-05 1.25950867621e-05 +UniRef50_Q1IYH9 Sulfate adenylyltransferase 0.000270032955147 0.0244597251167 0.0241896921616 +UniRef50_G7M254 0.000248346045292 0.000749558866192 0.0005012128209 +UniRef50_P76403 0.00332722759033 0.0114099229532 0.00808269536287 +UniRef50_UPI0001C396B6 Zn ribbon protein, possibly nucleic acid binding 0.00100928886693 0.000481652197517 -0.000527636669413 +UniRef50_P94513 Sensor protein LytS 2.61091357223e-05 0.000547138498953 0.000521029363231 +UniRef50_Q8TYY5 Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis 0.00224129830003 0.000711591220217 -0.00152970707981 +UniRef50_UPI00035F8915 MULTISPECIES 0.000100251488508 3.35670304868e-05 -6.66844580212e-05 +UniRef50_R9ZEN0 Methyl accepting chemotaxis protein 0.000603393784801 0.00068604219268 8.2648407879e-05 +UniRef50_UPI0002000F87 oxidoreductase 6.63808890152e-05 2.61112630334e-05 -4.02696259818e-05 +UniRef50_P54919 Delta aminolevulinic acid dehydratase 5.99475255851e-05 0.000328648900577 0.000268701374992 +UniRef50_P49078 Asparagine synthetase [glutamine hydrolyzing] 1 0.00406593625662 0.00566697638354 0.00160104012692 +UniRef50_UPI000402C450 hypothetical protein 6.81684696913e-06 2.88410631788e-05 2.20242162097e-05 +UniRef50_R7MP32 0.0052992926421 0.00104955032726 -0.00424974231484 +UniRef50_D5APZ2 Transcriptional regulator, LysR family 0.00148882236235 0.000197977679469 -0.00129084468288 +UniRef50_I0I0C0 6.83431409367e-05 1.41611087042e-05 -5.41820322325e-05 +UniRef50_UPI0003B76791 chemotaxis protein CheY 0.000235824646383 2.37528640029e-05 -0.00021207178238 +UniRef50_K0HKA6 Periplasmic binding protein 4.32473351485e-05 0.00544668381229 0.00540343647714 +UniRef50_F4DNZ1 LysR family transcriptional regulator 0.000543157802059 0.00021503643582 -0.000328121366239 +UniRef50_A3PRC4 Methyl accepting chemotaxis sensory transducer 0.00198717080356 0.00116256553647 -0.00082460526709 +UniRef50_UPI000454B9A5 PREDICTED 6.73327479871e-06 3.20184356833e-05 2.52851608846e-05 +UniRef50_UPI000372C723 hypothetical protein 6.43797675803e-06 5.80139102105e-06 -6.3658573698e-07 +UniRef50_Q1CSQ2 Glycine tRNA ligase beta subunit 5.42884931205e-05 0.00423107346824 0.00417678497512 +UniRef50_A3DFY9 4.68915684868e-05 4.76521239978e-05 7.60555511e-07 +UniRef50_D7GHW6 Cytochrome d ubiquinol oxidase, subunit II 0.000188115941288 0.00647790909825 0.00628979315696 +UniRef50_A5ULR2 UPF0272 protein Msm_0935 0.00198845290565 0.000945948161065 -0.00104250474458 +UniRef50_D8JEL1 0.000320809622254 0.00654125490092 0.00622044527867 +UniRef50_L9MZ90 1.17399844202e-05 0.00247040549478 0.00245866551036 +UniRef50_UPI0003B53446 branched chain amino acid transporter AzlC 4.55751863798e-05 1.68663281458e-05 -2.8708858234e-05 +UniRef50_A5UNA6 Exodeoxyribonuclease, XthA 0.00186722848983 0.000497724784029 -0.0013695037058 +UniRef50_Q6GHK8 ATP dependent DNA helicase RecG 0.0177893753039 0.00824845543423 -0.00954091986967 +UniRef50_UPI0003B4E531 sodium 1.55081094869e-05 0.00144598549527 0.00143047738578 +UniRef50_D7BD64 1.31480332354e-05 0.000196629958119 0.000183481924884 +UniRef50_A7HS58 Undecaprenyl diphosphatase 0.000170747660365 1.40348964988e-05 -0.000156712763866 +UniRef50_UPI000476E422 hypothetical protein 4.65736009819e-06 5.72379137337e-05 5.25805536355e-05 +UniRef50_UPI0003EC50DD PREDICTED 4.29498285769e-06 6.24797753045e-06 1.95299467276e-06 +UniRef50_U3SR69 Pyrroline 5 carboxylate reductase 0.00297683665452 0.000986888791207 -0.00198994786331 +UniRef50_Q8Y3Y6 Thymidylate kinase 1.12254992647e-05 0.000296304386488 0.000285078887223 +UniRef50_R0VLG7 5.54203369098e-05 0.000650017363458 0.000594597026548 +UniRef50_B0TVV8 Adenylosuccinate synthetase 1.70088420707e-05 1.18704482501e-05 -5.1383938206e-06 +UniRef50_UPI0003810A5E hypothetical protein 8.11988226624e-06 5.84673906877e-06 -2.27314319747e-06 +UniRef50_F2BFB8 BolA family protein 5.5562245059e-05 0.00039186842261 0.000336306177551 +UniRef50_D8ICU4 Pyridine nucleotide disulfide oxidoreductase family protein 0.000158424287166 0.000694371627541 0.000535947340375 +UniRef50_Q168U2 Polyhydroxyalkanoate synthesis repressor 0.018682567673 0.000799377569805 -0.0178831901032 +UniRef50_UPI00036FDE6E MULTISPECIES 4.56690367049e-06 1.63660701759e-05 1.17991665054e-05 +UniRef50_F8IRK1 Replication initiator A protein 0.000764952767111 1.63200789285e-05 -0.000748632688182 +UniRef50_B0UIS6 Glutathione S transferase domain 0.000996193478007 0.00632526309644 0.00532906961843 +UniRef50_Q1YVL9 0.0001165931718 0.000280583644681 0.000163990472881 +UniRef50_P0AG14 Probable protease SohB 0.00443645858254 0.00112096301852 -0.00331549556402 +UniRef50_D3E3R8 Carbohydrate kinase PfkB family 0.00104606618296 0.000316976785549 -0.000729089397411 +UniRef50_D5HIW6 Phosphate ABC transporter membrane protein 2, PhoT family 0.00022469404098 0.0018553994404 0.00163070539942 +UniRef50_UPI00046EB4A8 hypothetical protein 2.46106769669e-05 1.82002129388e-05 -6.4104640281e-06 +UniRef50_A5IU36 0.0095518978364 0.00120674592009 -0.00834515191631 +UniRef50_M4XIN2 0.000222856296256 0.000114686099098 -0.000108170197158 +UniRef50_E3H779 Transcriptional regulator, XRE family 0.000410310857448 0.00264080366452 0.00223049280707 +UniRef50_M1MDC6 Transcription termination factor Rho 0.000430526166203 0.000909743452732 0.000479217286529 +UniRef50_F6D6V6 Cobalamin biosynthesis CbiM protein 0.00117110853981 0.000615008310206 -0.000556100229604 +UniRef50_P0A1H0 DNA polymerase III subunit epsilon 0.00478076789886 0.000744495895456 -0.0040362720034 +UniRef50_UPI0003B2F0C5 ABC transporter ATP binding protein 4.9762028199e-05 1.92760907899e-05 -3.04859374091e-05 +UniRef50_Q6FFD2 Sensor protein 0.000173767186165 0.00885291032232 0.00867914313616 +UniRef50_UPI0003684932 amino acid ABC transporter substrate binding protein 7.50796697288e-06 2.31112611087e-05 1.56032941358e-05 +UniRef50_UPI0002F69D2E hypothetical protein 3.566649805e-05 0.000145880220871 0.000110213722821 +UniRef50_UPI000350C2AA PREDICTED 2.58873824238e-05 2.24555399791e-05 -3.4318424447e-06 +UniRef50_UPI00036F359E hypothetical protein 4.72610270888e-05 1.1122557761e-05 -3.61384693278e-05 +UniRef50_UPI00021977C8 Appr 1 p processing domain protein 1.44985907041e-05 0.000156184631342 0.000141686040638 +UniRef50_P25539 Riboflavin biosynthesis protein RibD 0.00288500159525 0.00733306655177 0.00444806495652 +UniRef50_Q492E3 Probable malate 4.4623910839e-06 1.44561288878e-05 9.9937378039e-06 +UniRef50_Q56998 UvrABC system protein B 0.000244790219358 0.00225325914776 0.0020084689284 +UniRef50_Q8FSD6 Uroporphyrinogen decarboxylase 1.06648569457e-05 1.16106873041e-05 9.458303584e-07 +UniRef50_W7SQL2 LigA protein 3.23364339073e-05 0.000160498209337 0.00012816177543 +UniRef50_Q9K706 Gluconeogenesis factor 0.0243832938128 0.00670065831023 -0.0176826355026 +UniRef50_Q6N0X7 Short chain dehydrogenase 0.00413869016037 0.0025417544708 -0.00159693568957 +UniRef50_I1B7Q6 0.000173956676891 0.000344727671428 0.000170770994537 +UniRef50_UPI00040FD25C 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.65330679976e-05 1.04640673109e-05 -6.0690006867e-06 +UniRef50_Q9RZB7 Glycosyltransferase 0.000433696543761 0.057416123176 0.0569824266322 +UniRef50_K2EHC8 3.01868660091e-05 3.63345258958e-05 6.1476598867e-06 +UniRef50_W4LZ78 1.01496688509e-05 2.11114493421e-05 1.09617804912e-05 +UniRef50_D7CU09 ABC transporter related protein 0.00022195756869 0.040165132865 0.0399431752963 +UniRef50_K2EHC4 7.69025043084e-06 8.88506035955e-05 8.11603531647e-05 +UniRef50_UPI0003802618 hypothetical protein 2.12301214723e-05 9.08337339669e-06 -1.21467480756e-05 +UniRef50_UPI00031E0792 hypothetical protein 2.48374813677e-05 0.000304509564278 0.00027967208291 +UniRef50_UPI000374F92F hypothetical protein 4.58973050115e-06 1.07735213938e-05 6.18379089265e-06 +UniRef50_Q9RY24 Protein GrpE 0.000397353672473 0.0305262098793 0.0301288562068 +UniRef50_F9V983 16S rRNA methyltransferase 0.00244039875685 0.00340519355921 0.00096479480236 +UniRef50_A9VN98 2 C methyl D erythritol 4 phosphate cytidylyltransferase 6.17239616292e-05 0.000275567687578 0.000213843725949 +UniRef50_M1VMH5 0.000489259683473 8.01883374738e-05 -0.000409071345999 +UniRef50_B3QSU1 Cytidylate kinase 8.42850121746e-06 2.15139230308e-05 1.30854218133e-05 +UniRef50_UPI00037A45FC MULTISPECIES 9.74593275058e-06 2.04817326203e-05 1.07357998697e-05 +UniRef50_Q9RWU7 Purine pyrimidine phosphoribosyltransferase related protein 0.000211279471374 0.00813180252886 0.00792052305749 +UniRef50_Q56114 Aspartate aminotransferase 0.00289341526546 0.00187943622966 -0.0010139790358 +UniRef50_UPI000360A2CC MULTISPECIES 0.000101744338675 0.0001272543476 2.5510008925e-05 +UniRef50_UPI0001FFF9AA integral membrane protein 0.000153930089018 1.53618445328e-05 -0.000138568244485 +UniRef50_Q8EQK8 Choline ABC transporter ATP binding protein 0.0213341364021 0.00275005555182 -0.0185840808503 +UniRef50_Q6LI26 Glutathione peroxidase 0.00141960518512 0.000366095089089 -0.00105351009603 +UniRef50_U1S9N3 3.00158589901e-06 1.53125929357e-06 -1.47032660544e-06 +UniRef50_U3SQV1 0.00606889404617 0.0031556847819 -0.00291320926427 +UniRef50_Q3JFY3 200 kDa antigen p200, putative 1.41553736446e-05 0.00022165109453 0.000207495720885 +UniRef50_UPI000471C806 molybdenum cofactor biosynthesis protein MoaE 6.05118962841e-05 4.0901645573e-05 -1.96102507111e-05 +UniRef50_UPI0003680F4C hypothetical protein 9.95381293513e-05 1.56813430219e-05 -8.38567863294e-05 +UniRef50_A6LWT3 0.000318754396167 0.00245837998826 0.00213962559209 +UniRef50_UPI0004785ED6 hypothetical protein 6.94512828564e-06 3.7654245073e-05 3.07091167874e-05 +UniRef50_B7UZU0 Na translocating NADH quinone reductase subunit D 0.00148171884257 0.00588590673462 0.00440418789205 +UniRef50_X8AWD6 UvrABC system A domain protein 1.27207238108e-05 2.57766253756e-05 1.30559015648e-05 +UniRef50_W0CYP1 Peptide deformylase 2.81145635437e-05 5.29452252023e-05 2.48306616586e-05 +UniRef50_G2KWZ9 ATP dependent RNA helicase RhlB 0.000713702114467 0.000552514329134 -0.000161187785333 +UniRef50_UPI00037A3CF4 hypothetical protein 2.03365995551e-05 3.67876132059e-05 1.64510136508e-05 +UniRef50_UPI000255CC88 transcriptional regulator 7.24530425311e-06 3.69707503287e-05 2.97254460756e-05 +UniRef50_A1VM60 NADH quinone oxidoreductase subunit A 1.59831267382e-05 0.000311244648788 0.00029526152205 +UniRef50_K0VGX6 Phenol hydroxylase 3.83414225869e-06 5.28105382462e-06 1.44691156593e-06 +UniRef50_Q46WJ3 Shikimate kinase 1.76304802857e-05 1.83659885933e-05 7.355083076e-07 +UniRef50_B7H076 Glycosyl transferases group 1 family protein 0.000562083580112 0.00724390770007 0.00668182411996 +UniRef50_G0LRQ0 Serine aspartate repeat containing protein D 3.52680774356e-05 5.45200071144e-05 1.92519296788e-05 +UniRef50_UPI0004774AD6 adenosylcobinamide kinase 0.00010407317639 1.74729834443e-05 -8.66001929457e-05 +UniRef50_B6TG94 Seed specific protein Bn15D17A 0.000158848859395 4.88952867194e-05 -0.000109953572676 +UniRef50_G8WCZ8 Crispr associated helicase Cas3 7.92589212031e-05 9.95889215841e-06 -6.93000290447e-05 +UniRef50_UPI00037A187F DNA invertase 0.000320980636282 7.14589750543e-05 -0.000249521661228 +UniRef50_B1K1J6 Inner membrane translocator 0.00992116305348 0.0027564065215 -0.00716475653198 +UniRef50_D2ZUL4 0.00130167582364 3.91747097732e-05 -0.00126250111387 +UniRef50_P69435 Poly beta 1,6 N acetyl D glucosamine export protein 0.00263291918326 0.000800734767099 -0.00183218441616 +UniRef50_UPI000395E0BE TetR family transcriptional regulator 9.88500515826e-05 1.98643625526e-05 -7.898568903e-05 +UniRef50_B1TBD8 0.000174503795997 0.000306124625344 0.000131620829347 +UniRef50_T0PPT5 3.51810903721e-05 2.81447424638e-05 -7.0363479083e-06 +UniRef50_B9NWB2 Proline dehydrogenase transcriptional activator 9.03066076255e-05 0.000183235899391 9.29292917655e-05 +UniRef50_UPI0002D562AA peptidase 3.72898109644e-05 3.67795944005e-05 -5.102165639e-07 +UniRef50_Q9I7C4 DNA polymerase III subunit beta 0.00427236383984 0.0023846751409 -0.00188768869894 +UniRef50_A9I3J3 TonB dependent outer membrane receptor 0.000457003959482 0.000371786323606 -8.5217635876e-05 +UniRef50_UPI00046FA567 phytoene dehydrogenase 1.60859005829e-05 5.18358239027e-06 -1.09023181926e-05 +UniRef50_Q65I56 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.79656887758e-05 2.09742172815e-05 -2.69914714943e-05 +UniRef50_A6LQ20 Efflux transporter, RND family, MFP subunit 0.000431193963246 0.000629086901818 0.000197892938572 +UniRef50_L7VT83 Chemotaxis protein 0.00024209135047 0.00159479453032 0.00135270317985 +UniRef50_P20582 PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III 0.000852857991627 0.000186515813799 -0.000666342177828 +UniRef50_A6KZR2 Phosphopantetheine adenylyltransferase 1.22817373064e-05 0.00617215247028 0.00615987073297 +UniRef50_UPI00047AB6F5 imidazoleglycerol phosphate dehydratase 8.12856384076e-05 1.45222711593e-05 -6.67633672483e-05 +UniRef50_B0CC69 Biotin synthase 6.98703207287e-06 4.12834686329e-05 3.429643656e-05 +UniRef50_A0A011QDW9 Hemolysin, chromosomal 6.41481851694e-05 4.40572578669e-05 -2.00909273025e-05 +UniRef50_Q4JV87 LexA repressor 1.0659224213e-05 1.41994007971e-05 3.5401765841e-06 +UniRef50_B0VLK5 Lipoprotein 0.000443669852339 0.0155852694677 0.0151415996154 +UniRef50_P77360 0.00177059313482 0.00021271311299 -0.00155788002183 +UniRef50_P40876 0.000947127930449 0.00136184168126 0.000414713750811 +UniRef50_Q73NX5 Ribonuclease 3 1.14558512826e-05 1.71662051965e-05 5.7103539139e-06 +UniRef50_X3WN19 5.45928050509e-05 0.000107697579787 5.31047747361e-05 +UniRef50_D4HD90 0.000340488450495 0.00693359654316 0.00659310809267 +UniRef50_F4H6S8 Binding protein dependent transport systems inner membrane component 0.000194580406623 0.00138110232183 0.00118652191521 +UniRef50_H4FT59 Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein 0.00767552210164 0.00273920237106 -0.00493631973058 +UniRef50_H8H0A6 0.000676631962682 0.0196893642939 0.0190127323312 +UniRef50_Q5XDJ2 Bifunctional protein GlmU 3.7234297705e-06 0.002500673955 0.00249695052523 +UniRef50_P75990 Blue light and temperature regulated antirepressor YcgF 0.0037424596613 0.00308930663933 -0.00065315302197 +UniRef50_B9DX64 ATP synthase subunit delta 0.000289631193489 0.000512109893401 0.000222478699912 +UniRef50_UPI000365E273 hypothetical protein 7.79160947531e-05 0.000331486338912 0.000253570244159 +UniRef50_Q97S57 Translation initiation factor IF 2 0.00571825699288 0.00605391914705 0.00033566215417 +UniRef50_UPI00016ABA18 sugar ABC transporter ATP binding protein 6.49995302299e-06 6.77401712709e-06 2.740641041e-07 +UniRef50_A8IC84 Lipoprotein 1.48673673513e-05 9.21639581202e-06 -5.65097153928e-06 +UniRef50_B7I2S0 Exodeoxyribonuclease X, putative 0.000821111998078 0.0101340932737 0.00931298127562 +UniRef50_Q49WD6 NAD kinase 0.0173415412865 0.00223478124547 -0.015106760041 +UniRef50_UPI00034A3652 hypothetical protein 2.58892129062e-05 8.72288904784e-06 -1.71663238584e-05 +UniRef50_Q58036 0.00377181672284 0.000885256171839 -0.002886560551 +UniRef50_UPI0003B7A911 ABC transporter permease 2.72551153843e-05 4.45676821321e-05 1.73125667478e-05 +UniRef50_A6M1F1 Single stranded DNA specific exonuclease RecJ 0.000161989611535 0.000553490513765 0.00039150090223 +UniRef50_Q5WY31 NAD transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II) 3.58941938425e-05 1.81115347188e-05 -1.77826591237e-05 +UniRef50_U6HSW1 Glutamate synthase 9.31146375686e-06 1.89906645069e-05 9.67920075004e-06 +UniRef50_Q8F498 Biotin synthase 4.61994385683e-06 1.6807784633e-05 1.21878407762e-05 +UniRef50_Q8DRX4 0.00628163897327 0.000697598516207 -0.00558404045706 +UniRef50_P0AEB1 Sulfate transport system permease protein CysW 0.0077116730414 0.00234861917266 -0.00536305386874 +UniRef50_R9SLZ9 Energy converting hydrogenase B subunit O EhbO 0.00287185229938 0.000177545113341 -0.00269430718604 +UniRef50_Q0AYL3 Chemotaxis response regulator protein glutamate methylesterase 1 1.99182136841e-05 5.84780725883e-06 -1.40704064253e-05 +UniRef50_A4VU31 Predicted membrane metal binding protein 0.00568038595817 0.00263890597453 -0.00304147998364 +UniRef50_M1MHF4 YibE F family protein 0.000520071649111 0.0011408993239 0.000620827674789 +UniRef50_P29976 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 0.000818827605803 0.00318891603242 0.00237008842662 +UniRef50_A4WT17 0.00371316568208 0.000582861918147 -0.00313030376393 +UniRef50_Q3IYW4 0.0220436616711 0.000455501344774 -0.0215881603263 +UniRef50_UPI00016C4263 multi sensor signal transduction histidine kinase 2.67368124978e-05 6.47279029593e-06 -2.02640222019e-05 +UniRef50_UPI0004669627 hypothetical protein 7.55489930495e-05 6.27031292647e-05 -1.28458637848e-05 +UniRef50_UPI000376E080 hypothetical protein, partial 0.000258621246147 5.43635423171e-05 -0.00020425770383 +UniRef50_UPI0003B639BB hypothetical protein 2.42900982856e-06 7.11194051172e-05 6.86903952886e-05 +UniRef50_Q5LUP8 Endoribonuclease L PSP family protein 0.000155557431819 4.87968574133e-05 -0.000106760574406 +UniRef50_N2DBA0 2,3 cyclic nucleotide 2 phosphodiesterase 0.000827670381379 0.000365152031161 -0.000462518350218 +UniRef50_S5KKJ7 Cell wall surface anchor protein 1.45876429746e-05 0.00194959914292 0.00193501149995 +UniRef50_T0M6P4 Blastn match against entry EMBL 0.000621242815114 7.65292751672e-05 -0.000544713539947 +UniRef50_B2TQI3 Undecaprenyl phosphate glucose phosphotransferase 0.000443789338149 0.00105239442004 0.000608605081891 +UniRef50_D3E1Y0 Fumarate hydratase FumA2 0.00451951073802 0.000203666693245 -0.00431584404477 +UniRef50_A4VRL6 Predicted Zn dependent peptidase 0.000579718390169 0.000320158786789 -0.00025955960338 +UniRef50_D5VDZ2 0.000185435434152 4.0239806887e-05 -0.000145195627265 +UniRef50_UPI000328A627 PREDICTED 1.96456828615e-05 5.69158103916e-05 3.72701275301e-05 +UniRef50_F3U2B2 Transcriptional regulator, LysR family protein 0.0014572115411 0.000646248318541 -0.000810963222559 +UniRef50_D3QEV8 ABC transporter, ATP binding protein 0.00963458880402 0.00164208908989 -0.00799249971413 +UniRef50_UPI00035ED201 hypothetical protein 1.25042849789e-05 7.11893739312e-05 5.86850889523e-05 +UniRef50_G8B0Y4 5.05571370728e-05 6.91814235256e-05 1.86242864528e-05 +UniRef50_A5UK70 Fumarate reductase, iron sulfur protein 0.00444421792101 0.000270624926699 -0.00417359299431 +UniRef50_M1MGY4 Drug resistance transporter, EmrB QacA subfamily 0.000413014083503 0.00124370545861 0.000830691375107 +UniRef50_Q58691 0.0031943546441 0.000940443079037 -0.00225391156506 +UniRef50_K7RP68 Molybdopterin biosynthesis protein 1.00508630937e-05 4.50518907081e-05 3.50010276144e-05 +UniRef50_X1ABV5 Marine sediment metagenome DNA, contig 4.42704831194e-05 6.08497253615e-05 1.65792422421e-05 +UniRef50_UPI0004408C74 beta subunit of citrate lyase 7.85031511446e-05 3.4396727377e-05 -4.41064237676e-05 +UniRef50_P37369 Superoxide dismutase [Fe] 1.33445575788e-05 1.16760229357e-05 -1.6685346431e-06 +UniRef50_A6LQR1 S layer domain protein domain 0.000303884949952 0.00154676403163 0.00124287908168 +UniRef50_UPI00037FF171 hypothetical protein 2.87975798482e-06 5.73946785666e-06 2.85970987184e-06 +UniRef50_Q03CA4 Ribose import ATP binding protein RbsA 0.000176052902248 0.000128975996315 -4.7076905933e-05 +UniRef50_A0A035W1W9 Replication initiation protein 0.000113691607499 5.27716672912e-05 -6.09199402078e-05 +UniRef50_A4WXQ6 0.00181922005014 0.00129824186002 -0.00052097819012 +UniRef50_D9X0C7 Phosphatase 3.81470391213e-06 4.09788202091e-05 3.7164116297e-05 +UniRef50_F8KS43 GTP pyrophosphokinase 9.90568220772e-05 0.00392702091567 0.00382796409359 +UniRef50_B9KQA0 0.000918516658134 0.0010620906196 0.000143573961466 +UniRef50_UPI0003823562 hypothetical protein 2.57000819506e-06 4.52571513517e-06 1.95570694011e-06 +UniRef50_UPI000455DD45 ribosomal protein L17 3.29565939363e-05 4.70889100584e-05 1.41323161221e-05 +UniRef50_A5UJI1 Homoserine dehydrogenase, ThrA 0.00293036914689 0.000485116526038 -0.00244525262085 +UniRef50_R4Q226 APC family amino acid polyamine organocation transporter 0.020368330451 0.0089781248391 -0.0113902056119 +UniRef50_Q1WVB2 Aspartate carbamoyltransferase 0.000535523054843 0.000341406595601 -0.000194116459242 +UniRef50_C0DVB0 4.65965291675e-05 7.10555888546e-05 2.44590596871e-05 +UniRef50_O87388 Sarcosine oxidase subunit beta 0.00050210180816 0.000346892517522 -0.000155209290638 +UniRef50_UPI000470EA5E 2 oxoglutarate dehydrogenase, partial 2.99496806379e-06 5.60109423176e-06 2.60612616797e-06 +UniRef50_H0YYM6 1.46873196033e-05 6.69845746637e-05 5.22972550604e-05 +UniRef50_UPI0003613AC8 MFS transporter 9.31354014233e-05 2.87164772411e-05 -6.44189241822e-05 +UniRef50_D8JND0 Universal stress family protein 0.000154075913818 0.00494791442327 0.00479383850945 +UniRef50_U1MD60 Nucleotide binding protein 1.6126604712e-05 6.10085428524e-05 4.48819381404e-05 +UniRef50_Q2NGD5 Polyphosphate kinase 0.0031843625763 0.00054412936095 -0.00264023321535 +UniRef50_A4CBI0 1.956776468e-05 0.000868374286781 0.000848806522101 +UniRef50_T8XWN9 0.000184246632608 5.74295629588e-05 -0.000126817069649 +UniRef50_D8HJF1 1.08076739377e-05 2.00993222465e-05 9.2916483088e-06 +UniRef50_M9VHP6 Membrane associated protein 0.000229242503354 0.00502977134367 0.00480052884032 +UniRef50_UPI00035D007C hypothetical protein 2.37289501883e-06 2.44924446344e-05 2.21195496156e-05 +UniRef50_A4WWG0 FAD dependent oxidoreductase 0.0054385377167 0.00151227158009 -0.00392626613661 +UniRef50_P0AFR9 Inner membrane ABC transporter permease protein YdcV 0.00289922850061 0.00117154720605 -0.00172768129456 +UniRef50_F2V5D2 PE PGRS family protein 0.000107815504132 0.000325484974845 0.000217669470713 +UniRef50_A0QWW2 Glyceraldehyde 3 phosphate dehydrogenase 0.000101269785731 0.0383281786669 0.0382269088812 +UniRef50_Q6A7C7 Conserved phage related protein 0.000270922958506 0.00415755844177 0.00388663548326 +UniRef50_D8JF19 Subtilisin like serine protease 5.34430375889e-05 0.0069512553291 0.00689781229151 +UniRef50_UPI000363C5FE hypothetical protein 1.8407117615e-05 1.56163566141e-05 -2.7907610009e-06 +UniRef50_X5Q8M2 0.000318240365921 0.000255228738558 -6.3011627363e-05 +UniRef50_C6S6G3 Putative phage associated protein 4.49224047893e-06 0.000132897681949 0.00012840544147 +UniRef50_B7LF20 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.00198119180787 0.000222390824303 -0.00175880098357 +UniRef50_O52177 GTP pyrophosphokinase 4.65401729743e-06 2.41453589521e-06 -2.23948140222e-06 +UniRef50_UPI0002B4176A 6.8035608024e-06 7.35344421944e-06 5.4988341704e-07 +UniRef50_A8FCN2 N acetyldiaminopimelate deacetylase 2.98377990454e-05 0.0014477365658 0.00141789876675 +UniRef50_E6MVH5 Periplasmic binding family protein 7.15280731734e-06 0.0026424037078 0.00263525090048 +UniRef50_UPI000287C383 tRNA 2 selenouridine synthase 4.08570103445e-05 2.1126082775e-05 -1.97309275695e-05 +UniRef50_A5IVH0 Zn dependent protease like protein 0.0084437073772 0.00260816981716 -0.00583553756004 +UniRef50_B1B3N7 Truncated replication protein RepA 6.86598711068e-05 9.10568255969e-06 -5.95541885471e-05 +UniRef50_UPI000287D657 exodeoxyribonuclease III 3.74884915643e-05 5.12804488676e-05 1.37919573033e-05 +UniRef50_D0IXB3 Pirin like protein 5.65915572138e-06 1.04493625766e-05 4.79020685522e-06 +UniRef50_UPI0003055179 hypothetical protein 8.9102924825e-05 2.51725755501e-05 -6.39303492749e-05 +UniRef50_R9DJ31 0.00854387606928 0.00268469731995 -0.00585917874933 +UniRef50_M1MFG9 Spermidine putrescine transport system permease protein PotC 0.000288580987542 0.00171190246186 0.00142332147432 +UniRef50_A4WWW0 0.00200550013867 0.00074138084986 -0.00126411928881 +UniRef50_F0SXK4 Cyclopropane fatty acyl phospholipid synthase 0.000587468382401 0.000761654774908 0.000174186392507 +UniRef50_UPI0002B483E1 PREDICTED 8.89997418119e-05 2.05555491511e-05 -6.84441926608e-05 +UniRef50_Q3HKK2 Mandelate racemase muconate lactonizing enzyme 0.00571999984406 0.000751526710911 -0.00496847313315 +UniRef50_Q2FWE1 Release factor glutamine methyltransferase 0.0199268340236 0.00655541115868 -0.0133714228649 +UniRef50_Q7WCS7 Integral membrane component of multidrug efflux system 0.000236018661833 0.000128868005765 -0.000107150656068 +UniRef50_F0VCY6 1.89798803485e-06 5.23998013185e-07 -1.37399002167e-06 +UniRef50_B1I3R5 Adenylate kinase 9.34499473876e-06 2.53027713417e-05 1.59577766029e-05 +UniRef50_G0LRB5 Exotoxin 0.00811678016393 0.00167374041006 -0.00644303975387 +UniRef50_P64613 Cell division protein ZapE 0.00236308489721 0.000601100459804 -0.00176198443741 +UniRef50_UPI0003457696 UDP pyrophosphate phosphatase 0.000147573942925 1.19351425601e-05 -0.000135638800365 +UniRef50_A0LNI2 tRNA N6 adenosine threonylcarbamoyltransferase 1.23578854448e-05 9.26006615371e-06 -3.09781929109e-06 +UniRef50_UPI00037A37E6 hypothetical protein 9.35765046615e-06 1.68825044609e-05 7.52485399475e-06 +UniRef50_A8AQN0 0.0105958135006 9.93207149997e-05 -0.0104964927856 +UniRef50_UPI00036DA784 hypothetical protein 2.02300200628e-06 3.31397476964e-05 3.11167456901e-05 +UniRef50_A1RBI9 Oxidoreductase, short chain dehydrogenase reductase family 0.0067476328262 0.00104039147066 -0.00570724135554 +UniRef50_UPI0003B44831 signal peptidase 0.000186874251907 5.10504489882e-05 -0.000135823802919 +UniRef50_P63388 Probable phospholipid import ATP binding protein MlaF 0.00173325454046 0.0106321929777 0.00889893843724 +UniRef50_S7NJS1 0.00157861355759 0.000160499569961 -0.00141811398763 +UniRef50_F8IS38 Xaa His dipeptidase 0.000205678140304 0.000153810783964 -5.186735634e-05 +UniRef50_F3NI62 0.000258409482373 0.00026586885112 7.459368747e-06 +UniRef50_Q3J2S3 0.00293512741231 0.000821039200228 -0.00211408821208 +UniRef50_UPI00047E9C04 hypothetical protein 0.000139329352406 0.00011263096912 -2.6698383286e-05 +UniRef50_P78016 DNA topoisomerase 4 subunit B 2.5640192364e-06 9.69480056424e-06 7.13078132784e-06 +UniRef50_Q82IE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.3545585259e-05 6.36038617945e-05 1.00582765355e-05 +UniRef50_E4U760 Carbohydrate ABC transporter membrane protein 2, CUT1 family 8.27215461305e-05 0.0377707885084 0.0376880669623 +UniRef50_Q15TJ8 PKHD type hydroxylase Patl_2273 2.03677049479e-05 2.78529658499e-05 7.485260902e-06 +UniRef50_A0A013SUS4 NMT1 like family protein 1.81462814707e-05 2.41427839912e-05 5.9965025205e-06 +UniRef50_R7FRD0 0.000188471294548 2.3963247919e-05 -0.000164508046629 +UniRef50_L0EBI3 Transcriptional accessory protein 0.00316277061713 0.00047146388675 -0.00269130673038 +UniRef50_E6Q8B0 0.00055587413815 0.000381612029945 -0.000174262108205 +UniRef50_UPI00036A5069 hypothetical protein 8.10755840567e-06 2.85293459895e-05 2.04217875838e-05 +UniRef50_P0A0Y5 Phosphoheptose isomerase 0.00128138399555 0.00943826696134 0.00815688296579 +UniRef50_UPI0003673DF5 hypothetical protein 7.43855509084e-06 2.88043994445e-05 2.13658443537e-05 +UniRef50_Q99ZE5 Stress response regulator gls24 homolog 0.000452866143683 0.00262263027854 0.00216976413486 +UniRef50_UPI0003B50954 aspartyl glutamyl tRNA amidotransferase subunit B 3.5840060619e-05 3.65763753756e-05 7.363147566e-07 +UniRef50_Q881Q1 Macrolide export ATP binding permease protein MacB 2 2.23773806305e-06 0.00387805896652 0.00387582122846 +UniRef50_A9W856 Integrase, catalytic region 0.000443187411452 1.82058133662e-05 -0.000424981598086 +UniRef50_Q5F5Y6 Lipid A disaccharide synthase 0.000172368031437 0.00148096691416 0.00130859888272 +UniRef50_UPI00035E69D2 hypothetical protein 2.25877661461e-05 4.96295620688e-05 2.70417959227e-05 +UniRef50_W5BGQ3 2.3608436718e-05 3.47127582927e-05 1.11043215747e-05 +UniRef50_UPI000373B42C hypothetical protein 9.92699529428e-06 1.97222787812e-05 9.79528348692e-06 +UniRef50_K2FSL8 0.000101529305495 0.000314728377367 0.000213199071872 +UniRef50_UPI000477E8B8 hypothetical protein 3.72390132826e-05 4.86868472866e-05 1.1447834004e-05 +UniRef50_Q9AGS1 Xanthine phosphoribosyltransferase 4.10169945387e-05 9.0243148315e-05 4.92261537763e-05 +UniRef50_F9FGU0 1.9933277572e-06 0.000291892474162 0.000289899146405 +UniRef50_F8IRL8 Phosphate starvation inducible protein PhoH 0.0107746323808 0.0015781052303 -0.0091965271505 +UniRef50_P37169 Protein MurJ homolog 0.00235462686186 0.00494146045148 0.00258683358962 +UniRef50_J3P2Z6 0.000132142119782 8.02509909447e-05 -5.18911288373e-05 +UniRef50_B7NMR0 Endonuclease 8 0.0041643522863 0.00200772766633 -0.00215662461997 +UniRef50_M3AAL9 Secretory lipase 1.61012105199e-05 0.000288100780162 0.000271999569642 +UniRef50_R7FPS5 DEAD DEAH box helicase 0.000236750500858 0.00111245969258 0.000875709191722 +UniRef50_Q8R9G3 Phospho N acetylmuramoyl pentapeptide transferase 6.08573365739e-06 2.2089740975e-05 1.60040073176e-05 +UniRef50_O86489 Serine aspartate repeat containing protein E 0.0163301316185 0.00228892132239 -0.0140412102961 +UniRef50_UPI00047946DB hypothetical protein 0.00015691474296 7.98009612077e-06 -0.000148934646839 +UniRef50_I7EZZ6 0.00140713945468 0.000167966529658 -0.00123917292502 +UniRef50_Q2G5Y5 NADH quinone oxidoreductase subunit C 1.37856831377e-05 1.16466096931e-05 -2.1390734446e-06 +UniRef50_A3PRZ2 Transcriptional regulator, LysR family 0.00855940720262 0.000771081712194 -0.00778832549043 +UniRef50_O94524 Glutathione S transferase omega like 2 0.000345131676658 2.05756329669e-05 -0.000324556043691 +UniRef50_P21399 Cytoplasmic aconitate hydratase 1.11568490399e-05 0.000102376443204 9.12195941641e-05 +UniRef50_P15493 Lipase 0.000176395321898 0.000895250808683 0.000718855486785 +UniRef50_S0F090 Acetolactate synthase, small subunit 0.00311606650786 0.00149345449214 -0.00162261201572 +UniRef50_A6LRW0 Phage Terminase 0.000584111960843 0.00286120442282 0.00227709246198 +UniRef50_UPI00026CC897 NADPH 9.82086139028e-06 8.24440330384e-05 7.26231716481e-05 +UniRef50_D3QFY8 0.0100786007853 0.000499126825692 -0.00957947395961 +UniRef50_R9SLI7 DEAD DEAH box helicase domain containing protein 0.00306234382992 0.000284283218367 -0.00277806061155 +UniRef50_UPI00016AB4FD type III secretion inner membrane protein SctV, partial 7.37494727105e-06 1.46959988716e-05 7.32105160055e-06 +UniRef50_UPI0003806CCD hypothetical protein 3.57136003062e-06 1.23789294672e-05 8.80756943658e-06 +UniRef50_F2AE31 0.00040070120529 9.96651490864e-06 -0.000390734690381 +UniRef50_T0UHV5 Transcriptional regulator, AraC family 0.00396242382186 0.00200687394925 -0.00195554987261 +UniRef50_P75809 Flavin mononucleotide phosphatase YbjI 0.00128388286163 0.000431119277652 -0.000852763583978 +UniRef50_B2IMU5 HIT family protein 0.00371832888944 0.00436660278698 0.00064827389754 +UniRef50_G6Y3Q8 Transposase IS66 0.000163773566194 6.26007188886e-05 -0.000101172847305 +UniRef50_A4AR30 Dihydrolipoyl dehydrogenase 0.00961007068128 0.00286033685317 -0.00674973382811 +UniRef50_UPI000467AD6A hypothetical protein, partial 4.32144918176e-06 7.12264422081e-06 2.80119503905e-06 +UniRef50_B4SJH6 NADH quinone oxidoreductase subunit D 1 0.000243878560175 0.00322026065615 0.00297638209598 +UniRef50_I1Y681 Type F conjugative transfer system protein TraW 2.7994327254e-05 2.7660501781e-05 -3.33825473e-07 +UniRef50_UPI0003B68FBD pseudouridine synthase 1.64488243362e-05 6.56537153548e-05 4.92048910186e-05 +UniRef50_P26408 Hydrogenase transcriptional regulatory protein hupR1 0.00201759858255 0.000513504491966 -0.00150409409058 +UniRef50_F5X1L0 PTS system, fructose specific IIABC component 0.00477827631999 0.00347690520491 -0.00130137111508 +UniRef50_P06136 Cell division protein FtsQ 0.00228586479949 0.00131588582471 -0.00096997897478 +UniRef50_E8QRB2 Outer membrane protein HopZ 0.000199826061273 0.00378916387798 0.00358933781671 +UniRef50_Q5HQR1 Toprim domain protein 0.0190646700317 0.00204192349508 -0.0170227465366 +UniRef50_Q5P409 Peptide chain release factor 3 0.00511472723211 0.00838669308537 0.00327196585326 +UniRef50_B0JJ94 Potassium transporting ATPase A chain 2.62195208282e-06 0.00119321641215 0.00119059446007 +UniRef50_W8EUK6 Iron ABC transporter 0.00017584751034 0.00966314847053 0.00948730096019 +UniRef50_UPI000288243F phospho 2 dehydro 3 deoxyheptonate aldolase, partial 8.37330316189e-05 8.63655411629e-05 2.632509544e-06 +UniRef50_UPI00041C714B mechanosensitive ion channel protein MscL 2.48146638006e-05 2.04123022336e-05 -4.402361567e-06 +UniRef50_D1DHF6 Oxidoreductase 0.000199055565955 0.00275370961895 0.002554654053 +UniRef50_UPI00038110F4 hypothetical protein 4.99321832134e-06 4.97846218907e-05 4.47914035694e-05 +UniRef50_A6M363 Amidohydrolase 3 0.000659457594916 0.000775379174986 0.00011592158007 +UniRef50_A5UJ78 Adhesin like protein 0.00291363873103 0.000686348845086 -0.00222728988594 +UniRef50_UPI00047DA4D0 iron transporter FeoB 1.61605448737e-05 1.3106663404e-05 -3.0538814697e-06 +UniRef50_K5W0W9 0.000113388359286 2.21810139657e-05 -9.12073453203e-05 +UniRef50_F0K6G2 Integral membrane protein 0.000209218669562 0.00166674430571 0.00145752563615 +UniRef50_UPI00046C4A93 hypothetical protein 4.14199883807e-05 0.000234906620536 0.000193486632155 +UniRef50_Q3BJT1 Nitrite oxidoreductase beta subunit 4.15461609812e-05 2.33813759765e-05 -1.81647850047e-05 +UniRef50_I7CFF2 Methionine aminopeptidase 0.00105608567524 0.0022252582284 0.00116917255316 +UniRef50_M1Q6R0 9.18337801584e-06 2.38826384188e-06 -6.79511417396e-06 +UniRef50_J3JP50 0.00103855666506 0.000697401347832 -0.000341155317228 +UniRef50_D2PTZ5 1.97904602289e-05 9.34335712368e-06 -1.04471031052e-05 +UniRef50_A6M151 Putative cell wall binding repeat containing protein 0.00157285828688 0.000787511213846 -0.000785347073034 +UniRef50_UPI0003606801 hypothetical protein 1.11114806108e-05 8.36998747515e-06 -2.74149313565e-06 +UniRef50_Q4RIY1 Chromosome undetermined SCAF15041, whole genome shotgun sequence. 9.87930173869e-05 3.3401251448e-05 -6.53917659389e-05 +UniRef50_A4WSI1 Mammalian cell entry related domain protein 0.0123802568087 0.00333679510214 -0.00904346170656 +UniRef50_UPI00038114B4 hypothetical protein 1.47129989823e-05 4.10526056076e-05 2.63396066253e-05 +UniRef50_L1G4X2 Permease family protein 0.00242569727243 0.000621986729279 -0.00180371054315 +UniRef50_R9SJI3 CCA adding enzyme 0.00294314804048 0.000138106019575 -0.00280504202091 +UniRef50_Q31DZ2 Hydrogenase expression formation protein hypD 0.000119457591412 0.00321045415015 0.00309099655874 +UniRef50_J9YR02 BioY family protein 0.0159961464001 0.0054973650689 -0.0104987813312 +UniRef50_A4IJA6 Thymidylate kinase 1.25615031425e-05 0.00376235354431 0.00374979204117 +UniRef50_Q5LPC1 Adenosine deaminase 0.00329656744838 0.000994349652413 -0.00230221779597 +UniRef50_P60070 Anti sigma B factor antagonist 0.00326174586468 0.00474568967811 0.00148394381343 +UniRef50_Q87J85 Tyrosine tRNA ligase 1 0.000105805441149 2.53322420646e-05 -8.04731990844e-05 +UniRef50_B3QV79 Serine tRNA ligase 3.5713814454e-06 6.21207647515e-06 2.64069502975e-06 +UniRef50_Q3JCN0 1,4 alpha glucan branching enzyme GlgB 0.00878594112446 0.00171266175316 -0.0070732793713 +UniRef50_Q7NFY1 Chorismate synthase 1.6068196992e-05 0.000200068193126 0.000183999996134 +UniRef50_F5M2D5 Choline ethanolamine kinase 0.00436158911311 0.000448581620499 -0.00391300749261 +UniRef50_X5ZST2 4.4175057183e-05 0.000339784599388 0.000295609542205 +UniRef50_B8DDV4 Peptidoglycan bound protein 1.27508975305e-05 0.000211431843286 0.000198680945755 +UniRef50_UPI00047EA9AC hypothetical protein 4.09229034531e-05 2.4523937893e-05 -1.63989655601e-05 +UniRef50_Q8TX14 0.00668251729082 0.000340342830921 -0.0063421744599 +UniRef50_A3CL70 Cobalt transport protein CbiM 0.00591999053386 0.000421192976745 -0.00549879755711 +UniRef50_Q5HRI1 GTP cyclohydrolase FolE2 0.00801347349531 0.00312648749146 -0.00488698600385 +UniRef50_A1SSZ0 2.25195836605e-05 4.15900731281e-05 1.90704894676e-05 +UniRef50_UPI0002658599 PREDICTED 2.31251119588e-05 0.000924594603085 0.000901469491126 +UniRef50_A6LYD5 Transposase, IS111A IS1328 IS1533 0.000363450351672 0.00141562051353 0.00105217016186 +UniRef50_B6AM37 1.23516923153e-06 1.80822624131e-06 5.7305700978e-07 +UniRef50_A6LQ17 Malonyl CoA acyl carrier protein transacylase 0.000129128616484 0.00107259462602 0.000943466009536 +UniRef50_B9AH82 0.00161897137691 0.000838646786657 -0.000780324590253 +UniRef50_B9AH81 0.000860587187197 8.75462581866e-06 -0.000851832561378 +UniRef50_UPI0004656F44 FAD binding molybdopterin dehydrogenase 0.000225566598847 0.000397910340246 0.000172343741399 +UniRef50_UPI00036CFDE4 hypothetical protein 4.11188340714e-06 2.79268293538e-06 -1.31920047176e-06 +UniRef50_UPI0002624A61 succinylarginine dihydrolase 1.22562388261e-05 4.4916233353e-05 3.26599945269e-05 +UniRef50_C4RAQ9 8.07906485273e-05 0.0014890537728 0.00140826312427 +UniRef50_Q47QV2 0.000201444574503 0.000790033647941 0.000588589073438 +UniRef50_E1ZQF3 8.09761181218e-06 1.8448565895e-05 1.03509540828e-05 +UniRef50_H6RSF4 8.60077953952e-05 2.31136025685e-05 -6.28941928267e-05 +UniRef50_Q1Q8I7 Arginine tRNA ligase 8.95929081425e-05 0.00695042086118 0.00686082795304 +UniRef50_Q81FQ4 Nucleoside diphosphate kinase 0.0149732698738 0.00146824940952 -0.0135050204643 +UniRef50_UPI00037813C2 hypothetical protein 1.95682366092e-05 7.32628651722e-06 -1.2241950092e-05 +UniRef50_J9P031 0.000193942195576 7.91059043362e-05 -0.00011483629124 +UniRef50_P76241 0.00232168573377 0.000686483173392 -0.00163520256038 +UniRef50_UPI0003728B23 hypothetical protein 0.00218136180688 0.000143130836355 -0.00203823097053 +UniRef50_P00905 Bifunctional protein TrpGD 0.000669114355967 0.000123172955868 -0.000545941400099 +UniRef50_K1ST89 Heat shock protein 70 0.000224484549948 4.38393863434e-05 -0.000180645163605 +UniRef50_Q92M91 Holliday junction ATP dependent DNA helicase RuvA 2.6716072051e-05 1.10569430906e-05 -1.56591289604e-05 +UniRef50_D3P3A5 Transposase 0.00132961906049 9.78697682891e-05 -0.0012317492922 +UniRef50_A7H8W4 Phosphopentomutase 1.02725229985e-05 2.03785262537e-05 1.01060032552e-05 +UniRef50_B3PJZ1 0.000509049186673 0.000853016030968 0.000343966844295 +UniRef50_G1ZE91 Outer membrane protein assembly complex, YaeT protein 0.00124593678802 0.000300341454349 -0.000945595333671 +UniRef50_A6M2H1 0.000534436541738 0.00301417088865 0.00247973434691 +UniRef50_A6M2H8 0.00754971977705 0.000668641596675 -0.00688107818038 +UniRef50_X6L2P2 0.000309943931679 0.000171446167593 -0.000138497764086 +UniRef50_Q04KA6 0.00441979912214 0.000774727423463 -0.00364507169868 +UniRef50_UPI00037EF484 hypothetical protein, partial 2.16387975468e-05 4.04567357241e-06 -1.75931239744e-05 +UniRef50_R4LGH4 9.93137683078e-06 2.84797711446e-05 1.85483943138e-05 +UniRef50_A4WR12 ABC transporter related 0.00108551391904 0.000892678575865 -0.000192835343175 +UniRef50_UPI000466F502 nitrate reductase 9.15200794493e-06 6.1169656903e-06 -3.03504225463e-06 +UniRef50_UPI000360428B hypothetical protein 8.71547338186e-06 2.19357967414e-05 1.32203233595e-05 +UniRef50_UPI0002DA4A3A hypothetical protein 8.82274084231e-07 3.76501175199e-07 -5.05772909032e-07 +UniRef50_O59229 30S ribosomal protein S12 0.00174677559691 0.000551993841485 -0.00119478175543 +UniRef50_F8YC51 Pyridine nucleotide disulfide oxidoreductase 0.000483683128658 0.000251333366122 -0.000232349762536 +UniRef50_UPI000472E3C4 hypothetical protein 4.8837811337e-05 9.76803971961e-05 4.88425858591e-05 +UniRef50_F9NUL2 ABC transporter, permease protein 0.000247396680356 0.0043789438506 0.00413154717024 +UniRef50_F3GFB2 ABC transporter, substrate binding protein, aliphatic sulfonate 2.94489270222e-05 4.09717762502e-05 1.1522849228e-05 +UniRef50_B5F5V3 Nitrate reductase, alpha subunit 0.00345831062314 0.00156790405427 -0.00189040656887 +UniRef50_Q9HZQ3 Aerobic cobaltochelatase subunit CobN 0.00022331838668 4.73263950644e-05 -0.000175991991616 +UniRef50_P76236 Inner membrane protein YeaI 0.00371131098361 0.00263352550596 -0.00107778547765 +UniRef50_A5ULS0 0.00325908261111 0.00165607918084 -0.00160300343027 +UniRef50_A4F866 Transcription elongation factor GreA 0.000472804571187 0.00444399385044 0.00397118927925 +UniRef50_P32136 Putative sulfoquinovose importer 0.00453391657987 0.00138951746038 -0.00314439911949 +UniRef50_P08417 Fumarate hydratase, mitochondrial 0.0410183192903 0.0695359995187 0.0285176802284 +UniRef50_Q9X581 NatC 0.000312013049321 0.00414904351622 0.0038370304669 +UniRef50_A6LS24 Peptidase M56, BlaR1 0.000171020333855 0.00141249566387 0.00124147533001 +UniRef50_K2LBK5 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 2.82067635151e-05 1.90088237201e-05 -9.197939795e-06 +UniRef50_UPI00037E01EF hypothetical protein 1.92677154912e-06 8.87944061494e-06 6.95266906582e-06 +UniRef50_UPI0004702907 ABC transporter ATP binding protein 0.000213854263286 4.53025280333e-05 -0.000168551735253 +UniRef50_E2ZV83 4.70294884022e-05 8.37586948934e-05 3.67292064912e-05 +UniRef50_Q7V3Y9 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 4.52511763736e-05 4.84480614221e-05 3.1968850485e-06 +UniRef50_G2RNK8 Lipoprotein 0.000134860263728 3.39613182269e-05 -0.000100898945501 +UniRef50_Q8DWH8 UPF0237 protein SMU_72 0.000473831785168 0.000714475899663 0.000240644114495 +UniRef50_D7GFE3 Regulatory protein, TetR 0.000501087595826 0.00324268868148 0.00274160108565 +UniRef50_P29686 Glucose 6 phosphate 1 dehydrogenase 4.56920928695e-06 0.0148166093729 0.0148120401636 +UniRef50_T0TBX4 Excinuclease ABC subunit A 9.44997724897e-05 0.000169066719468 7.45669469783e-05 +UniRef50_UPI00025578A6 dihydroxyacetone kinase 7.67053331843e-06 0.00112566279693 0.00111799226361 +UniRef50_Q8KDE3 N acetyl gamma glutamyl phosphate reductase 6.01565855135e-06 1.93245995178e-05 1.33089409665e-05 +UniRef50_Q1J1R8 Tfp pilus assembly pathway, ATPase PilB 0.00024203711588 0.0296952352018 0.0294531980859 +UniRef50_A7NQM8 Formamidopyrimidine DNA glycosylase 1.13091774332e-05 2.30650908815e-05 1.17559134483e-05 +UniRef50_Q8CW45 Outer membrane lipoprotein LolB 0.00140175073626 0.00195094987545 0.00054919913919 +UniRef50_Q9X909 DNA topoisomerase 1 0.000133354605847 0.00551356984067 0.00538021523482 +UniRef50_UPI000371ABD8 hypothetical protein 3.84091768676e-06 3.04016786597e-05 2.65607609729e-05 +UniRef50_UPI000467A9B2 hypothetical protein 2.82941817392e-05 2.50995874357e-05 -3.1945943035e-06 +UniRef50_P24211 Putative protein RhsE 0.00329138397159 0.00101245717621 -0.00227892679538 +UniRef50_P04179 Superoxide dismutase [Mn], mitochondrial 9.94275113666e-06 0.00011224211477 0.000102299363633 +UniRef50_UPI000478DF96 AraC family transcriptional regulator 9.35895407023e-05 0.00020627476498 0.000112685224278 +UniRef50_Q9HTT0 0.00135594283752 0.000461432351874 -0.000894510485646 +UniRef50_J9YQC3 0.000439296040465 0.000112216607416 -0.000327079433049 +UniRef50_A0A045ECZ1 5.52356674421e-05 1.4068428116e-05 -4.11672393261e-05 +UniRef50_B9E3J2 0.000276590966753 0.00102352169998 0.000746930733227 +UniRef50_K1DV80 Cupin superfamily protein 2.16600795122e-05 4.66666001768e-05 2.50065206646e-05 +UniRef50_UPI00040C1A9F hypothetical protein 3.85714566219e-05 9.8705218238e-06 -2.87009347981e-05 +UniRef50_Q5HF61 Probable thiol peroxidase 0.0108355483715 0.00213480575774 -0.00870074261376 +UniRef50_F8JFK7 0.00189878008234 0.00982733864575 0.00792855856341 +UniRef50_G7M7E3 Membrane bound O acyl transferase MBOAT family protein 7.39202328085e-05 0.000850778285585 0.000776858052777 +UniRef50_G7M6M8 Peptidase M56 BlaR1 5.19714532615e-05 0.00106571659894 0.00101374514568 +UniRef50_Q9I5Z5 0.000321721013225 0.000386877779725 6.51567665e-05 +UniRef50_UPI00047B409A hypothetical protein 6.05653551629e-06 1.76958406166e-05 1.16393051003e-05 +UniRef50_P44797 Adenylosuccinate lyase 0.0030644247723 0.000868500021796 -0.0021959247505 +UniRef50_K1V508 0.000314079579682 0.000513212257297 0.000199132677615 +UniRef50_X6P3I6 3.93175781386e-06 9.85128623436e-06 5.9195284205e-06 +UniRef50_B8DI47 Cell wall surface anchor family protein 6.50092094613e-06 0.0018729655695 0.00186646464855 +UniRef50_F3ZH26 Putative dehydrogenase 0.000140069012559 0.000109309082736 -3.0759929823e-05 +UniRef50_P0ABP1 Anaerobic C4 dicarboxylate transporter DcuB 0.00408742209439 0.000716782922252 -0.00337063917214 +UniRef50_UPI0004688581 replication initiation protein RepC 5.76615686509e-05 3.17533745407e-05 -2.59081941102e-05 +UniRef50_D9REY1 0.045000304697 0.00491130489144 -0.0400889998056 +UniRef50_Q2CKE9 2.76801292372e-05 2.29455026417e-05 -4.7346265955e-06 +UniRef50_Q9JUV1 Proline iminopeptidase 0.000130998423461 0.00301352004719 0.00288252162373 +UniRef50_F9HJK1 2.73662275961e-05 2.52243960835e-05 -2.1418315126e-06 +UniRef50_A7MXL0 Prolipoprotein diacylglyceryl transferase 1.96362483315e-05 3.16662745345e-05 1.2030026203e-05 +UniRef50_C9XQG5 Trehalose 6 phosphate hydrolase 0.0135372014062 0.00249773631348 -0.0110394650927 +UniRef50_X1YC61 2.6321106951e-06 8.62626920644e-06 5.99415851134e-06 +UniRef50_Q57658 Aspartate semialdehyde dehydrogenase 0.00266662094418 0.00053760170224 -0.00212901924194 +UniRef50_Q5NNB4 N succinylarginine dihydrolase 1.39463737705e-05 4.44828576711e-05 3.05364839006e-05 +UniRef50_A9WR14 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.24044804198e-06 0.00188583378856 0.00188159334052 +UniRef50_P54374 Shikimate dehydrogenase 5.41130798207e-05 1.79841875759e-05 -3.61288922448e-05 +UniRef50_A0A024HXE1 3.25996490061e-05 1.46496623339e-05 -1.79499866722e-05 +UniRef50_T1Y972 Transposase 0.00856066326392 0.000927696456103 -0.00763296680782 +UniRef50_W7VQ87 Phytoene dehydrogenase 2.5442867101e-05 0.000536025806937 0.000510582939836 +UniRef50_M9RUX7 TonB domain containing protein 0.000260669263266 0.000703839941747 0.000443170678481 +UniRef50_UPI000470A397 30S ribosomal protein S2, partial 1.81717833935e-05 1.84541417283e-05 2.823583348e-07 +UniRef50_UPI000441C901 PREDICTED 2.82105770673e-05 2.60881424641e-05 -2.1224346032e-06 +UniRef50_B3EPQ3 Protease HtpX homolog 0.0050205306552 0.00101731550466 -0.00400321515054 +UniRef50_I0KKW1 DoxX family protein 5.86445008878e-05 2.84505658345e-05 -3.01939350533e-05 +UniRef50_G4E2Y7 ATP dependent chaperone ClpB 0.000340572692208 0.0110094406366 0.0106688679444 +UniRef50_P57408 UPF0053 protein BU323 0.00203987074879 0.000742333055207 -0.00129753769358 +UniRef50_M1Z917 1.25367967486e-05 7.52455487413e-05 6.27087519927e-05 +UniRef50_UPI0003B3F37B polyphosphate kinase, partial 2.66527187285e-06 5.34365714532e-05 5.07712995804e-05 +UniRef50_UPI0002880AE8 bacteriocin ABC transporter ATPase 7.06539959106e-06 8.32063544678e-06 1.25523585572e-06 +UniRef50_Q46911 0.00355076701897 0.000687430956767 -0.0028633360622 +UniRef50_X0SYL6 Marine sediment metagenome DNA, contig 1.05868542035e-05 6.91404664592e-06 -3.67280755758e-06 +UniRef50_G2T0A1 0.00412671179513 0.000771160477641 -0.00335555131749 +UniRef50_I0C2G3 Deoxyribodipyrimidine photolyase 0.0187891547181 0.00382756929225 -0.0149615854258 +UniRef50_O67315 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.21212594522e-05 1.12262390678e-05 -1.08950203844e-05 +UniRef50_W0Z2H6 ISSod1 transposase 0.000158036515303 1.79254757326e-05 -0.00014011103957 +UniRef50_UPI0004726C09 hypothetical protein 9.35757189622e-06 1.16911950086e-05 2.33362311238e-06 +UniRef50_C4RCM2 Polyketide synthase 0.000327559620365 0.000507883902509 0.000180324282144 +UniRef50_P19529 Replication initiation protein 0.961640316151 0.326879196825 -0.634761119326 +UniRef50_P9WHM0 N5 carboxyaminoimidazole ribonucleotide mutase 7.46857686182e-05 8.86204313279e-05 1.39346627097e-05 +UniRef50_B9DYP5 0.000291819534415 0.00152270260843 0.00123088307402 +UniRef50_Q2G9D9 Arginine tRNA ligase 0.0092711124598 0.00164073648942 -0.00763037597038 +UniRef50_X1L2W8 Marine sediment metagenome DNA, contig 0.000156334471216 5.32238616877e-05 -0.000103110609528 +UniRef50_O27434 CoB CoM heterodisulfide reductase iron sulfur subunit A 0.00299828804169 0.000674670492881 -0.00232361754881 +UniRef50_UPI00035FE7E0 hypothetical protein 0.000223973636734 0.00010563046806 -0.000118343168674 +UniRef50_F0RPB8 Lon protease 0.000155068084511 0.0285957922034 0.0284407241189 +UniRef50_Q6AAY2 0.000342734707915 0.00764689023824 0.00730415553032 +UniRef50_Q6AAY0 0.000359125433534 0.0112153445524 0.0108562191189 +UniRef50_A3U7W4 2.2183390728e-05 0.002468786419 0.00244660302827 +UniRef50_C1KVS7 Indole 3 glycerol phosphate synthase 0.00389445300091 0.0121390033582 0.00824455035729 +UniRef50_P08390 USG 1 protein 0.00233512029835 0.00128254442089 -0.00105257587746 +UniRef50_UPI00019116B2 trehalose 6 phosphate phosphatase, partial 0.000107071555372 0.000226024154437 0.000118952599065 +UniRef50_A5ULH0 2 deoxyribose 5 phosphate aldolase , DeoC 0.0050966092525 0.00200885303049 -0.00308775622201 +UniRef50_D2ZQG6 0.00317600418799 0.000411978194691 -0.0027640259933 +UniRef50_G7M5P7 Cell wall binding repeat containing protein 0.000347273687573 0.00149190717103 0.00114463348346 +UniRef50_UPI0002C33B71 6.1891197869e-05 7.03108583015e-06 -5.48601120388e-05 +UniRef50_I6T197 Chitin binding protein CbpD 0.000244787443557 0.000248862392015 4.074948458e-06 +UniRef50_B9KM20 PTSINtr with GAF domain, PtsP 0.00622828357139 0.00103566352799 -0.0051926200434 +UniRef50_A9EDR0 0.000237417313196 9.5173615342e-05 -0.000142243697854 +UniRef50_Q4RQQ9 Chromosome 2 SCAF15004, whole genome shotgun sequence 1.13014725629e-05 7.73417822508e-05 6.60403096879e-05 +UniRef50_J3HVJ5 0.000228565962343 0.000212245274184 -1.6320688159e-05 +UniRef50_D8HCA2 0.0020226388606 0.000533704888912 -0.00148893397169 +UniRef50_U0EAS4 Adenine deaminase 0.00109217809168 0.000998155248336 -9.4022843344e-05 +UniRef50_UPI0003C1ADBB 6.23769906392e-06 6.21915146015e-06 -1.854760377e-08 +UniRef50_F8C6I4 7.83165951945e-05 5.24663792293e-06 -7.30699572716e-05 +UniRef50_UPI000474BE5B hypothetical protein 5.63742923218e-06 0.000104725883986 9.90884547538e-05 +UniRef50_UPI00047B93C9 hypothetical protein 1.26891751512e-05 1.29060405319e-05 2.168653807e-07 +UniRef50_R1CD42 9.16801717706e-05 2.58089128529e-05 -6.58712589177e-05 +UniRef50_A5EUT6 Phosphoglucosamine mutase 4.82415262964e-06 2.54316925875e-05 2.06075399579e-05 +UniRef50_Q53058 0.00218475783613 0.000740425575159 -0.00144433226097 +UniRef50_UPI000287CEB1 4 hydroxythreonine 4 phosphate dehydrogenase 3.69501355878e-05 7.97085367124e-05 4.27584011246e-05 +UniRef50_G6RIH0 Prepilin type N terminal cleavage methylation domain protein 2.46997661441e-05 0.0040920689097 0.00406736914356 +UniRef50_A3UGH3 5.50932157358e-05 7.05373329677e-05 1.54441172319e-05 +UniRef50_J9P8Q4 2.12490180849e-05 5.39629330572e-05 3.27139149723e-05 +UniRef50_F0KF14 Acyl CoA dehydrogenase 0.000135051668988 0.00583146236004 0.00569641069105 +UniRef50_U3T9B5 0.000180327701681 0.00474701565199 0.00456668795031 +UniRef50_P44482 2 dehydro 3 deoxygluconokinase 1.50595174965e-05 1.70382920555e-05 1.978774559e-06 +UniRef50_Q8CMX1 Transcriptional regulator 0.00258205047089 0.0126844066385 0.0101023561676 +UniRef50_V4R7Y3 Hydrogenase expression protein HypA 7.19797112264e-07 6.89010781312e-06 6.17031070086e-06 +UniRef50_S8ENL7 5.477274286e-07 1.00968664856e-05 9.549139057e-06 +UniRef50_W0YWD4 Sensor response regulator hybrid 0.000748229339576 0.000510598424851 -0.000237630914725 +UniRef50_Q7MWN4 Elongation factor P 1 1.05261677856e-05 1.75107588688e-05 6.9845910832e-06 +UniRef50_UPI000372A8A8 hypothetical protein 0.0308348091306 0.00546000547488 -0.0253748036557 +UniRef50_Q0VN20 Aliphatic amidase 0.00113670186582 0.00391987248444 0.00278317061862 +UniRef50_O54461 Beta lactamase 0.0088219028137 0.00451639022296 -0.00430551259074 +UniRef50_V9WM02 MoxR like ATPase 0.00236124573194 0.000661056310422 -0.00170018942152 +UniRef50_F0KI93 0.000323132273634 0.00492883039506 0.00460569812143 +UniRef50_F4PTN3 1.57854807292e-05 0.000289295551579 0.00027351007085 +UniRef50_A6M0Z8 Integral membrane sensor signal transduction histidine kinase 0.000262606461243 0.000404082150784 0.000141475689541 +UniRef50_Q06065 Acetoacetate metabolism regulatory protein AtoC 0.00271277639972 0.000586953393125 -0.00212582300659 +UniRef50_L1K929 0.00107302980842 0.000315262930128 -0.000757766878292 +UniRef50_H3TTB7 FtsK SpoIIIE family protein 0.00181369400756 0.000604744106207 -0.00120894990135 +UniRef50_Q9I2K3 0.00046989957119 0.000298802737126 -0.000171096834064 +UniRef50_UPI0004571B3D PREDICTED 2.13299073152e-05 0.0001306219132 0.000109292005885 +UniRef50_UPI0002897681 3 oxoadipate enol lactonase 1.05862573869e-05 4.30268138235e-05 3.24405564366e-05 +UniRef50_V9C7N3 0.00019525137354 0.000314166707656 0.000118915334116 +UniRef50_P76080 Putative 1,2 phenylacetyl CoA epoxidase, subunit D 0.00214064927638 0.00017926794122 -0.00196138133516 +UniRef50_A6LS79 0.000422487375095 0.00124146187299 0.000818974497895 +UniRef50_UPI000376E372 hypothetical protein 3.89589639201e-06 1.58550971533e-05 1.19592007613e-05 +UniRef50_UPI00040D66F2 serine threonine protein phosphatase 1.12389394683e-05 1.43369561231e-05 3.0980166548e-06 +UniRef50_O27653 30S ribosomal protein S19e 0.000846694658247 0.00222829965378 0.00138160499553 +UniRef50_W4TX83 0.000189789700572 0.00483271273757 0.004642923037 +UniRef50_A6LS70 0.000289036004135 0.000285330149942 -3.705854193e-06 +UniRef50_UPI0003C14FAA 0.000166660609633 4.22070817812e-05 -0.000124453527852 +UniRef50_A6LUP1 Peptidoglycan glycosyltransferase 0.000772142176353 0.000935993889296 0.000163851712943 +UniRef50_UPI000255BA6E general secretion pathway protein I 3.24124263893e-05 2.2354823841e-05 -1.00576025483e-05 +UniRef50_UPI0003B5E2AD ABC transporter 8.03359617502e-05 3.12782999686e-05 -4.90576617816e-05 +UniRef50_D4HCQ8 Methylenetetrahydrofolate reductase 0.000456636276836 0.000567916740756 0.00011128046392 +UniRef50_UPI00040E317A hypoxanthine phosphoribosyltransferase 3.19796163673e-05 4.95839871114e-05 1.76043707441e-05 +UniRef50_P77658 0.00186668006789 0.00116830758242 -0.00069837248547 +UniRef50_I0C113 Isovaleryl CoA dehydrogenase 0.00605817725938 0.00127652614849 -0.00478165111089 +UniRef50_D8JKL5 DNA polymerase III subunit beta 0.000858992221721 0.00548410960008 0.00462511737836 +UniRef50_UPI0002C34F8A 4.68122146317e-06 5.54093701401e-06 8.5971555084e-07 +UniRef50_E0MMN1 1.58558704661e-05 4.36481772228e-05 2.77923067567e-05 +UniRef50_D1RMY5 Thioesterase family protein 1.08970032187e-05 0.000798824874874 0.000787927871655 +UniRef50_P77657 0.00180367857012 0.00191060592047 0.00010692735035 +UniRef50_UPI000464369A hypothetical protein 3.74004536252e-05 0.000286787997281 0.000249387543656 +UniRef50_F5M2M3 CheBRA 0.00661375269939 0.00117690669288 -0.00543684600651 +UniRef50_O31219 Aspartate semialdehyde dehydrogenase 0.0084113206791 0.0116524852308 0.0032411645517 +UniRef50_Q28UY2 50S ribosomal protein L11 0.0450617343031 0.0707945800118 0.0257328457087 +UniRef50_P0AEJ4 Osmolarity sensor protein EnvZ 0.00170004430835 0.000293999580636 -0.00140604472771 +UniRef50_K1E414 0.000171723718775 0.000142643098225 -2.908062055e-05 +UniRef50_R9SK13 Phage integrase family protein 0.00149785617481 0.000178799216058 -0.00131905695875 +UniRef50_UPI0003716E27 hypothetical protein 4.45818568992e-06 0.000164660077216 0.000160201891526 +UniRef50_UPI00046FA912 ABC transporter substrate binding protein, partial 1.56505359167e-05 0.00115566324153 0.00114001270561 +UniRef50_UPI00040758D9 hypothetical protein 6.06323873884e-06 5.3587939592e-05 4.75247008532e-05 +UniRef50_UPI00047851F7 peptide ABC transporter permease 5.74563174052e-05 6.00066050513e-05 2.5502876461e-06 +UniRef50_UPI0003B46F2A ArsR family transcriptional regulator 0.000138190902389 6.46256949344e-05 -7.35652074546e-05 +UniRef50_H1KC86 2.41653561268e-05 6.80122606734e-05 4.38469045466e-05 +UniRef50_A6W0Y0 8 amino 7 oxononanoate synthase 4.68134875144e-06 5.17591720301e-06 4.9456845157e-07 +UniRef50_A6LQ18 Transcriptional regulator, TetR family 0.000547081143264 0.000743615203507 0.000196534060243 +UniRef50_P44917 0.00395794193003 0.00344391700485 -0.00051402492518 +UniRef50_Q8CNS8 Sortase 0.0116566051104 0.00411902800539 -0.00753757710501 +UniRef50_UPI0004418A78 PREDICTED 1.10999035609e-05 4.0012885702e-06 -7.0986149907e-06 +UniRef50_Q9ZM40 Flagellar biosynthesis protein FlhA 5.1475362111e-05 0.00339264232595 0.00334116696384 +UniRef50_Q1GDE2 ATP synthase subunit b 2 0.00392912696703 0.000775579225764 -0.00315354774127 +UniRef50_H2KZ84 Protein C37C3.1, isoform a 3.78557081942e-05 1.64405504429e-05 -2.14151577513e-05 +UniRef50_Q5HLQ2 0.00818263448597 0.00347377885968 -0.00470885562629 +UniRef50_Q5HLQ1 0.00559983324563 0.00383036008974 -0.00176947315589 +UniRef50_Q31ID1 Lipoprotein signal peptidase 1.08524794447e-05 1.5683090399e-05 4.8306109543e-06 +UniRef50_UPI0004018A38 succinate semialdehyde dehydrogenase 5.14022398097e-06 1.54042339146e-05 1.02640099336e-05 +UniRef50_D3S8C7 Hypoxanthine guanine phosphoribosyltransferase 0.00108344230656 0.000322163678398 -0.000761278628162 +UniRef50_I7DNF2 0.000459021597851 4.02889530915e-05 -0.000418732644759 +UniRef50_D3E4Q3 0.00311966974646 0.000202966807698 -0.00291670293876 +UniRef50_Q5HLQ8 0.0198419340317 0.00777697228541 -0.0120649617463 +UniRef50_A3PR56 HpcH HpaI aldolase 0.00155846992109 0.00200651167921 0.00044804175812 +UniRef50_Q2S6N0 Ribosomal RNA small subunit methyltransferase G 3.77421846055e-05 4.05724032981e-05 2.8302186926e-06 +UniRef50_I0TMR6 Gram positive signal peptide protein, YSIRK family 0.0016286634156 0.000735967704826 -0.000892695710774 +UniRef50_UPI00046F57AB 2 oxoglutarate dehydrogenase 1.47487292429e-05 2.2736521734e-05 7.9877924911e-06 +UniRef50_J0XPW7 LPXTG motif cell wall anchor domain protein 7.1833988234e-06 6.87501489099e-07 -6.4958973343e-06 +UniRef50_Q68W26 Queuine tRNA ribosyltransferase 5.56987846554e-06 1.68587115441e-05 1.12888330786e-05 +UniRef50_UPI0002B45411 2.67098942211e-05 1.49044138345e-05 -1.18054803866e-05 +UniRef50_I4EB97 Transposase and inactivated derivative 4.91278094178e-06 8.61183769922e-06 3.69905675744e-06 +UniRef50_P25396 Tellurite resistance protein TehA 0.00250751055345 0.000938326644269 -0.00156918390918 +UniRef50_Q87VS1 tRNA dihydrouridine synthase B 0.00282740476991 0.00039059383359 -0.00243681093632 +UniRef50_Q057P9 Serine hydroxymethyltransferase 8.49069856539e-05 0.000103470254174 1.85632685201e-05 +UniRef50_X6K4S1 Head tail adaptor protein 0.000150171720178 4.65028384463e-05 -0.000103668881732 +UniRef50_P26850 NADH ubiquinone oxidoreductase chain 6 0.000155364531907 3.60642158355e-05 -0.000119300316072 +UniRef50_Q03007 Hydrogenase expression formation protein HupH 0.00153017686735 0.000546259530231 -0.000983917337119 +UniRef50_B7J5S6 Ribose 5 phosphate isomerase A 0.00134717657979 0.00330263630215 0.00195545972236 +UniRef50_P77656 0.0106961871223 0.000577166199074 -0.0101190209232 +UniRef50_A6LU84 Small GTP binding protein 0.000499726509487 0.000967435178252 0.000467708668765 +UniRef50_A6LWF4 0.000663125447862 0.0021953259667 0.00153220051884 +UniRef50_P18868 Superoxide dismutase [Fe] 7.88723856106e-06 2.69943713577e-05 1.91071327966e-05 +UniRef50_A5UKH0 Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS 0.0027161799779 0.00023815863322 -0.00247802134468 +UniRef50_P39352 Putative metabolite transport protein YjhB 0.00178942885126 0.000642924522031 -0.00114650432923 +UniRef50_UPI0004703186 chemotaxis protein CheY, partial 6.93353841637e-05 4.22012111924e-05 -2.71341729713e-05 +UniRef50_C1DWC2 Membrane protein 0.000155248536932 6.17243958791e-05 -9.35241410529e-05 +UniRef50_UPI0003827112 hypothetical protein 7.12000377547e-05 3.7009515076e-05 -3.41905226787e-05 +UniRef50_B0V8D4 0.000188218433003 0.00731610218401 0.00712788375101 +UniRef50_UPI000380411C hypothetical protein 0.000167275918245 0.00218649093407 0.00201921501582 +UniRef50_UPI0002555E12 dihydrofolate reductase 1.97677306537e-05 2.80831587778e-05 8.3154281241e-06 +UniRef50_A5FVL8 Prolipoprotein diacylglyceryl transferase 8.51530587704e-05 2.41339726503e-05 -6.10190861201e-05 +UniRef50_UPI0003B597DA short chain dehydrogenase 7.63499378642e-06 7.40313523005e-06 -2.3185855637e-07 +UniRef50_M4WY98 SAM dependent methyltransferase 0.000851928757705 0.000222600531548 -0.000629328226157 +UniRef50_F2CWZ0 Predicted protein 5.95271062046e-05 0.000403667209988 0.000344140103783 +UniRef50_V9TIQ4 Glycosyltransferase 0.000172476105513 0.000128305592405 -4.4170513108e-05 +UniRef50_N1ZDW1 2.94295977313e-05 9.82373572136e-05 6.88077594823e-05 +UniRef50_A5WEW9 Cysteine tRNA ligase 2.43012708894e-06 0.00959894352248 0.00959651339539 +UniRef50_H0E5U4 Glyoxalase family protein 1.22471063114e-05 3.17367907771e-05 1.94896844657e-05 +UniRef50_F7X1V6 MFS type transport protein 0.00155281629653 0.000367253076177 -0.00118556322035 +UniRef50_UPI000255639C ABC transporter permease 3.62809266414e-06 0.000125298111857 0.000121670019193 +UniRef50_U5MRX8 Sensor histidine kinase ResE 0.000375191146479 0.00119865990613 0.000823468759651 +UniRef50_A9FBU8 Methionine tRNA ligase 1 5.17295699902e-06 4.50976316037e-06 -6.6319383865e-07 +UniRef50_UPI0002F98998 hypothetical protein 1.09927903186e-06 1.23436757579e-06 1.3508854393e-07 +UniRef50_Q8XK37 DNA polymerase IV 4.04427517959e-06 8.09976606299e-06 4.0554908834e-06 +UniRef50_UPI00029A19D9 3 oxoacyl reductase 1.86003336749e-05 2.97394913879e-05 1.1139157713e-05 +UniRef50_P33015 UPF0394 inner membrane protein YeeE 0.0242149386692 0.00587925926735 -0.0183356794018 +UniRef50_UPI0004692C4A alpha glucosidase 4.04128471256e-05 3.25544899182e-05 -7.8583572074e-06 +UniRef50_Q8P682 Ribosomal large subunit pseudouridine synthase D 0.00334943668386 0.00197224666554 -0.00137719001832 +UniRef50_F9V6Y3 ATP dependent Clp protease proteolytic subunit 0.00570263811579 0.000307621567909 -0.00539501654788 +UniRef50_UPI000262A74C ribose ABC transporter permease 5.32665864594e-05 1.76499572247e-05 -3.56166292347e-05 +UniRef50_UPI00047136FC dTDP glucose 4,6 dehydratase 5.24921540484e-06 6.25153215724e-06 1.0023167524e-06 +UniRef50_K1YIN2 4.01096451738e-06 4.88148357155e-06 8.7051905417e-07 +UniRef50_U5MMQ6 Stage II sporulation P 0.000244471834225 0.000854592165034 0.000610120330809 +UniRef50_Q9FCD1 Urease subunit gamma 0.000258429434312 0.0005089350382 0.000250505603888 +UniRef50_UPI0004416D75 RF 1 domain containing protein 2.81668205788e-06 4.13218574183e-05 3.85051753604e-05 +UniRef50_UPI0003A49BEA 3 phosphoglycerate dehydrogenase 3.9868507309e-05 3.40575009581e-05 -5.8110063509e-06 +UniRef50_UPI00020D91AD XRE family transcriptional regulator 7.43483556209e-05 0.000279128326833 0.000204779971212 +UniRef50_O33579 Phosphoadenosine phosphosulfate reductase 1.46639714908e-05 1.57390399562e-05 1.0750684654e-06 +UniRef50_Q6FAE6 0.00031632904094 0.00580366843269 0.00548733939175 +UniRef50_UPI0003AE93A7 PREDICTED 0.000132296491424 0.000133885093534 1.58860211e-06 +UniRef50_UPI000237B0FC DEAD DEAH box helicase domain protein 5.5924520333e-06 0.00618933658081 0.00618374412878 +UniRef50_UPI00037131BB hypothetical protein 9.97341897719e-05 0.00325743202213 0.00315769783236 +UniRef50_UPI000361CF9B hypothetical protein 0.000181591334825 8.58654398998e-05 -9.57258949252e-05 +UniRef50_R5AUS4 1.52037780442e-05 2.36810228574e-05 8.4772448132e-06 +UniRef50_T2EQ25 Helix turn helix domain protein 0.00166608454527 0.000288113858735 -0.00137797068653 +UniRef50_UPI0003B62920 amino acid ABC transporter ATPase 0.000133556188472 1.34429290129e-05 -0.000120113259459 +UniRef50_I9SM88 Flavoprotein oxidoreductase 0.00235928743033 0.0442975057792 0.0419382183489 +UniRef50_P52037 0.00127528965054 0.00100175766806 -0.00027353198248 +UniRef50_D6XAF0 Transcriptional regulator 0.000666315502637 0.00017392912584 -0.000492386376797 +UniRef50_I3THN3 0.000841148897818 0.00049271195543 -0.000348436942388 +UniRef50_A5ULL2 Adhesin like protein 0.00245763342503 0.000351537442491 -0.00210609598254 +UniRef50_U6M3I8 3.20510913725e-05 2.89005372935e-05 -3.150554079e-06 +UniRef50_Q21TC3 Putative prolin rich exported protein 1.83612194674e-05 5.68022951094e-06 -1.26809899565e-05 +UniRef50_UPI00032A0CE2 PREDICTED 8.25826985281e-06 9.76587279193e-05 8.94004580665e-05 +UniRef50_Q9CF79 Aspartate carbamoyltransferase 0.0131676780485 0.00845498474287 -0.00471269330563 +UniRef50_A9GWZ1 0.000730789728445 0.000255262450271 -0.000475527278174 +UniRef50_UPI000477BC16 ABC transporter ATP binding protein 8.67292517622e-05 7.24422148959e-06 -7.94850302726e-05 +UniRef50_Q184N3 N acetylmuramic acid 6 phosphate etherase 7.33268114256e-06 9.20934145196e-06 1.8766603094e-06 +UniRef50_UPI0003EF6AD2 hypothetical protein 0.000590349688807 0.000364999101269 -0.000225350587538 +UniRef50_P19934 Protein TolA 0.0040214688705 0.000761507007501 -0.003259961863 +UniRef50_C2WHY8 Antisigma factor antagonist, STAS 0.000947341164526 0.000365360349307 -0.000581980815219 +UniRef50_L0A3G2 ABC type metal ion transport system, periplasmic component surface adhesin 0.000167523367831 0.0148776035682 0.0147100802004 +UniRef50_A5UTU3 Peptidoglycan binding domain 1 protein 8.65116055036e-06 5.0644900521e-06 -3.58667049826e-06 +UniRef50_Q17WK7 0.000814693042933 0.00212338613798 0.00130869309505 +UniRef50_J9GTY9 0.00122004432289 8.28536304926e-05 -0.0011371906924 +UniRef50_B9JRL5 Transposase 3.63730340908e-05 2.94162461802e-05 -6.9567879106e-06 +UniRef50_A0A037ZJL2 0.000170721820302 0.000132819199225 -3.7902621077e-05 +UniRef50_A5UJV0 Probable 3 phosphoshikimate 1 carboxyvinyltransferase 0.00278167706262 0.000863764099901 -0.00191791296272 +UniRef50_G7U4Y3 0.00019226790604 0.00299738298451 0.00280511507847 +UniRef50_W0N4N9 0.000202604783069 0.000186795258236 -1.5809524833e-05 +UniRef50_P33228 Protein RecT 0.00239386714412 0.00183133793264 -0.00056252921148 +UniRef50_K2KBM0 Sulfite oxidase subunit YedZ 7.09512539188e-05 2.59479089111e-05 -4.50033450077e-05 +UniRef50_Q5HGR8 0.00243521485344 0.000702314631218 -0.00173290022222 +UniRef50_UPI00034742BC hypothetical protein 5.63730120781e-06 0.000334189854387 0.000328552553179 +UniRef50_UPI00047A7CB2 DNA mismatch repair protein MutT 9.88724964352e-06 6.61209898448e-05 5.62337402013e-05 +UniRef50_D1GUM7 Probable siderophore biosynthesis protein SbnA 0.0148637308871 0.00169477649664 -0.0131689543905 +UniRef50_A0A022P693 0.000569240968097 0.000443699278139 -0.000125541689958 +UniRef50_F0L7M8 Transcriptional regulator, GntR family 0.00169853613007 0.00197041611899 0.00027187998892 +UniRef50_U5WK69 0.000976474198911 0.000194500574217 -0.000781973624694 +UniRef50_X5EXM8 Glycosyl transferase 0.000280239524405 0.000387519549816 0.000107280025411 +UniRef50_UPI000363A82D hypothetical protein 3.22718469417e-05 4.5148619415e-05 1.28767724733e-05 +UniRef50_Q8CS03 0.00947913578412 0.00288158408082 -0.0065975517033 +UniRef50_Q8CS02 0.00188348440519 0.000546882787401 -0.00133660161779 +UniRef50_P29018 ATP binding permease protein CydD 0.00229030241694 0.00110439726391 -0.00118590515303 +UniRef50_Q8CS00 0.0103572605038 0.00299171270556 -0.00736554779824 +UniRef50_UPI00047DEE62 hypothetical protein 0.00108211581057 0.000190342861798 -0.000891772948772 +UniRef50_B2GKX1 O acetylhomoserine lyase 0.0177439382789 0.0118076687546 -0.0059362695243 +UniRef50_Q8CS04 0.00315742328581 0.000590142034844 -0.00256728125097 +UniRef50_M4BT40 0.000146858441804 0.000414930542032 0.000268072100228 +UniRef50_A4WS78 Signal transduction histidine kinase 0.00538570611265 0.00171979358173 -0.00366591253092 +UniRef50_Q9RTF4 0.00103895226289 0.00705999066355 0.00602103840066 +UniRef50_E3FY93 Fibronectin type III domain protein 1.17128833081e-06 2.1915480541e-05 2.07441922102e-05 +UniRef50_UPI0003666F64 hypothetical protein 1.0507380625e-05 1.59119537993e-05 5.4045731743e-06 +UniRef50_UPI00047D0052 hypothetical protein, partial 1.67163930338e-05 2.08642588941e-05 4.1478658603e-06 +UniRef50_Q65MD5 UPF0753 protein BLi00845 BL00917 8.64083282815e-06 0.000491866063033 0.000483225230205 +UniRef50_Q9RTF9 0.000175574878536 0.0130618619574 0.0128862870789 +UniRef50_Q9RUC1 SsrA binding protein 0.000238915182824 0.0331756388493 0.0329367236665 +UniRef50_A1WR56 Oxidoreductase FAD binding domain protein 0.0140584201309 0.00669403384336 -0.00736438628754 +UniRef50_G8U508 DNA directed RNA polymerase 0.000131954380742 0.00200828367244 0.0018763292917 +UniRef50_P37478 Transcriptional regulatory protein YycF 0.0110149563229 0.00562359779721 -0.00539135852569 +UniRef50_B7GY06 3 oxoadipate enol lactonase 2 0.000620041420128 0.00481444432024 0.00419440290011 +UniRef50_O26858 Endonuclease III 0.00498845489152 0.000416917701458 -0.00457153719006 +UniRef50_Q6GAV6 Coenzyme A disulfide reductase 0.00789921248907 0.000763789910027 -0.00713542257904 +UniRef50_B0K8B2 Chorismate synthase 2.07610984002e-05 0.00021091136051 0.00019015026211 +UniRef50_Q8DTC7 Chaperone protein ClpB 0.00533918440011 0.0022109248304 -0.00312825956971 +UniRef50_Q3SFC9 Dihydroxy acid dehydratase 0.00376069344137 0.000635884848475 -0.00312480859289 +UniRef50_B7H186 FhuE receptor 6.53844091497e-05 0.0049880673943 0.00492268298515 +UniRef50_X1BNR5 Marine sediment metagenome DNA, contig 2.06504580609e-05 5.59046047906e-05 3.52541467297e-05 +UniRef50_A3PWR0 Nitric oxide reductase, NorZ apoprotein 0.00034044194681 0.0054231420636 0.00508270011679 +UniRef50_B7H4G2 Opine oxidase subunit A 0.00013198810799 0.0120781402686 0.0119461521606 +UniRef50_Q8TYD7 GMP synthase [glutamine hydrolyzing] subunit B 0.00286690139835 0.00189303208621 -0.00097386931214 +UniRef50_A0AYH9 Transcriptional regulator, LysR family 0.000123901309249 0.00311019322598 0.00298629191673 +UniRef50_P77804 Protein YdgA 0.00234066627055 0.000696885418981 -0.00164378085157 +UniRef50_E3GWU1 Radical SAM domain protein 0.00314492234277 0.000969791778839 -0.00217513056393 +UniRef50_X1I3C3 Marine sediment metagenome DNA, contig 2.29214721782e-05 2.99570050762e-05 7.035532898e-06 +UniRef50_UPI0003814C5C hypothetical protein 0.000119891435221 0.000132805091763 1.2913656542e-05 +UniRef50_R5SU23 8.02697736249e-06 6.30031567142e-06 -1.72666169107e-06 +UniRef50_UPI00045E9580 macrolide ABC transporter ATP binding protein 1.49711890819e-05 6.44543156809e-05 4.9483126599e-05 +UniRef50_B2ULR4 Bifunctional protein PyrR 1.34848221917e-05 8.86866134317e-05 7.520179124e-05 +UniRef50_A9KCM9 BolA 3.01647321862e-05 0.000101075491463 7.09107592768e-05 +UniRef50_C1CVP1 Ribosome recycling factor 0.000218199993555 0.0354299737415 0.0352117737479 +UniRef50_G7MCQ9 ABC type transporter, integral membrane subunit 0.000613986828896 0.00139444730836 0.000780460479464 +UniRef50_B3DRY6 Bifunctional purine biosynthesis protein PurH 2.6486789968e-06 1.77147347963e-05 1.50660557995e-05 +UniRef50_H1G027 1.56116992561e-05 2.43115455811e-05 8.699846325e-06 +UniRef50_D3MIV3 Peptidase, M16 family 0.000226718311622 0.00668854626663 0.00646182795501 +UniRef50_R4ZWW3 PTS system, galactitol specific IIC component 0.000869192638007 0.000999538161359 0.000130345523352 +UniRef50_U8B0J7 0.000518183557978 0.000343945912219 -0.000174237645759 +UniRef50_UPI000374EC18 hypothetical protein 4.99872153593e-05 0.000586898500224 0.000536911284865 +UniRef50_UPI00036B9450 hypothetical protein 1.75695431869e-05 1.98088847462e-06 -1.55886547123e-05 +UniRef50_UPI000370E751 hypothetical protein 5.44963059974e-05 7.33102245217e-06 -4.71652835452e-05 +UniRef50_C6SNZ9 0.00492207714096 0.000717081644945 -0.00420499549602 +UniRef50_B8G2Q5 Cytidylate kinase 1.36281666374e-05 2.42597041569e-05 1.06315375195e-05 +UniRef50_UPI0003809B2B hypothetical protein 1.23160486197e-05 0.000126591717211 0.000114275668591 +UniRef50_C7ZTG5 Glycosyl transferase 0.014954770324 0.0015921349195 -0.0133626354045 +UniRef50_Q8YD09 Bifunctional imidazolonepropionase histidine ammonia lyase 1.56719494513e-06 4.26088746529e-05 4.10416797078e-05 +UniRef50_H4U829 Hydrogenase accessory protein HypB 0.00148974325882 0.000688711730073 -0.000801031528747 +UniRef50_Q5FUG4 3 isopropylmalate dehydratase small subunit 0.0175692221427 0.00215737735038 -0.0154118447923 +UniRef50_D6ZU16 Glycerate kinase 0.00155180822735 0.00242593427238 0.00087412604503 +UniRef50_UPI00026288A1 hypothetical protein 2.31766341306e-06 0.000416969038085 0.000414651374672 +UniRef50_Q2S158 Aspartate tRNA ligase 3.12312628212e-06 0.00825784797146 0.00825472484518 +UniRef50_A7X770 ATP phosphoribosyltransferase 0.0101935989528 0.00666135996184 -0.00353223899096 +UniRef50_UPI00036DFED1 MULTISPECIES 3.2976425846e-05 5.85964362855e-05 2.56200104395e-05 +UniRef50_P07822 Iron hydroxamate binding protein FhuD 0.00208461444654 0.000793292768142 -0.0012913216784 +UniRef50_U6I825 Zinc finger protein 341 7.82951039281e-05 7.9040042468e-05 7.449385399e-07 +UniRef50_B2VIL6 Ubiquinone biosynthesis O methyltransferase 0.000147263714763 0.000281042008797 0.000133778294034 +UniRef50_Q6D3A9 Glutathione import ATP binding protein GsiA 0.0027166830581 0.000915446067899 -0.0018012369902 +UniRef50_F8H1K8 Chemotaxis transducer 0.00104644365957 0.000392743874731 -0.000653699784839 +UniRef50_Q0AXL3 Peptide deformylase 6.44861604208e-06 1.44844697055e-05 8.03585366342e-06 +UniRef50_J3N076 2.91696897156e-05 0.000273746690366 0.00024457700065 +UniRef50_V4V1N3 0.000329202897256 0.000269285749417 -5.9917147839e-05 +UniRef50_UPI0002191AAA replication initiation protein 0.000212250100338 9.45082511593e-05 -0.000117741849179 +UniRef50_X1NJX5 Marine sediment metagenome DNA, contig 8.97212298765e-06 6.49761880694e-05 5.60040650818e-05 +UniRef50_B0U1N1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00913814578866 0.002904872743 -0.00623327304566 +UniRef50_I4AP74 O acetylhomoserine sulfhydrylase 0.000376162982168 0.000899768045418 0.00052360506325 +UniRef50_R7PTJ2 Predicted ATPase involved in DNA repair 0.00244458684891 0.000517001043326 -0.00192758580558 +UniRef50_Q81G06 Histidinol dehydrogenase 3.93926476448e-06 6.03117589805e-06 2.09191113357e-06 +UniRef50_S1GW72 Autoinducer 2 kinase LsrK 0.00216597231677 0.000546882787401 -0.00161908952937 +UniRef50_UPI00037675A5 hypothetical protein 2.55536300176e-05 1.66172493484e-05 -8.9363806692e-06 +UniRef50_P06999 ATP dependent 6 phosphofructokinase isozyme 2 0.00293851928884 0.000398179827223 -0.00254033946162 +UniRef50_X1DD44 Marine sediment metagenome DNA, contig 0.000135118283823 3.2429155335e-05 -0.000102689128488 +UniRef50_K0ZUL0 Replication initiator protein A protein 6.47859419759e-06 5.11901190062e-06 -1.35958229697e-06 +UniRef50_S2WX32 Polyphosphate kinase 0.000113947921988 0.00565192022217 0.00553797230018 +UniRef50_G0DRX2 0.000374986081636 0.000868578544689 0.000493592463053 +UniRef50_R6ESV1 2.04989088667e-05 2.46507692003e-05 4.1518603336e-06 +UniRef50_UPI0004719DB7 ABC transporter 2.45422070974e-06 3.90619031269e-06 1.45196960295e-06 +UniRef50_UPI00036E309D hypothetical protein 3.62529285432e-06 1.98283870066e-05 1.62030941523e-05 +UniRef50_UPI000362C308 hypothetical protein 0.00570725105787 0.000865534902244 -0.00484171615563 +UniRef50_UPI00036A7F13 hypothetical protein 2.55784353542e-05 4.21281825015e-06 -2.13656171041e-05 +UniRef50_A7X4P8 Holo [acyl carrier protein] synthase 0.00359001701015 0.000516588988672 -0.00307342802148 +UniRef50_J7N1F5 Teichoic acid biosynthesis protein B family protein 0.0237707360528 0.00474298684634 -0.0190277492065 +UniRef50_A0A034GY86 Azaleucine resistance protein AzlC 4.69094440527e-05 3.15413185886e-05 -1.53681254641e-05 +UniRef50_V6U6B5 0.000322390049211 0.00036970888349 4.7318834279e-05 +UniRef50_B0SW92 0.000171799375959 7.39978776146e-05 -9.78014983444e-05 +UniRef50_J0CH97 3.1646394846e-05 2.5116673533e-05 -6.529721313e-06 +UniRef50_B2VHU9 Adenine phosphoribosyltransferase 3.24908098978e-05 1.63089275807e-05 -1.61818823171e-05 +UniRef50_M7DRE6 Transposon protein 0.00641392057456 0.000707138259181 -0.00570678231538 +UniRef50_Q8G7Y6 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000211878320628 0.00648924587117 0.00627736755054 +UniRef50_D1B2W6 4.20646833606e-05 6.30860352391e-05 2.10213518785e-05 +UniRef50_UPI000471F8A5 hypothetical protein 9.96621724212e-05 5.45286899571e-05 -4.51334824641e-05 +UniRef50_W0L7A3 AAT family amino acid transporter 0.000601047681903 0.000254054674718 -0.000346993007185 +UniRef50_P23669 Threonine synthase 0.000290022701184 0.0383347011995 0.0380446784983 +UniRef50_K4S1D1 0.000152212092278 2.84036977267e-05 -0.000123808394551 +UniRef50_UPI00035D2EF1 hypothetical protein 2.54283141328e-05 2.59626016317e-05 5.342874989e-07 +UniRef50_P54517 3 dehydroquinate dehydratase 0.000549297682778 0.0816695787821 0.0811202810993 +UniRef50_UPI0003C13F0C PREDICTED 0.000103615913215 3.06378321006e-05 -7.29780811144e-05 +UniRef50_UPI0004711337 hypothetical protein 0.000111024693234 0.000750538228566 0.000639513535332 +UniRef50_Q6BF16 2 dehydro 3 deoxy 6 phosphogalactonate aldolase 0.00170742647499 0.00126876993397 -0.00043865654102 +UniRef50_V6MLI1 4.24078677035e-05 0.000183161495439 0.000140753627735 +UniRef50_UPI0003AA777F hypothetical protein 7.8523302985e-05 0.000212208784433 0.000133685481448 +UniRef50_Q2RWR9 Light independent protochlorophyllide reductase subunit B 0.000254560331955 1.59474598804e-05 -0.000238612872075 +UniRef50_D2ZR32 0.00317551299089 0.00292163659538 -0.00025387639551 +UniRef50_E4UD93 7.31611406844e-05 4.63072628498e-05 -2.68538778346e-05 +UniRef50_P55995 Lon protease 0.000144271651601 0.00243176166838 0.00228749001678 +UniRef50_Q09580 Probable GMP synthase [glutamine hydrolyzing] 2.77076506611e-06 3.80762783076e-06 1.03686276465e-06 +UniRef50_Q18FG3 CTP synthase 6.23446819532e-06 0.00020174364918 0.000195509180985 +UniRef50_B1XZN1 Protease Do 0.00124996424237 0.000559370466766 -0.000690593775604 +UniRef50_UPI0004705E36 ABC transporter substrate binding protein 1.00796048995e-05 1.35195029217e-05 3.4398980222e-06 +UniRef50_UPI0003B69A56 signal recognition particle, partial 7.12264366523e-06 2.40897757354e-05 1.69671320702e-05 +UniRef50_A0L3M0 Biotin synthase 4.61669780197e-06 1.80576090261e-05 1.34409112241e-05 +UniRef50_UPI0003B4EA07 transposase ISSod13 1.477178825e-05 6.3086796412e-05 4.8315008162e-05 +UniRef50_W8QW60 Lipoprotein 0.000610653276963 0.00041337386219 -0.000197279414773 +UniRef50_UPI0001FE2A0F phospho 2 dehydro 3 deoxyheptonate aldolase 2.39917669223e-05 4.36138947983e-06 -1.96303774425e-05 +UniRef50_I0C5E5 0.0108766569786 0.000798177414467 -0.0100784795641 +UniRef50_P07658 Formate dehydrogenase H 0.00370533294739 0.000965600641632 -0.00273973230576 +UniRef50_J1E3J1 0.00148712953523 0.000973571555587 -0.000513557979643 +UniRef50_J7QJA6 SPFH domain band 7 family protein 0.000604884381308 0.00089552099581 0.000290636614502 +UniRef50_UPI0004776671 heat shock protein Hsp33 0.000270577728831 0.000218441107368 -5.2136621463e-05 +UniRef50_P32051 0.000279346522841 0.000115487565524 -0.000163858957317 +UniRef50_C3GUE0 Alcohol dehydrogenase GroES domain protein 0.000175032143208 0.00190735761525 0.00173232547204 +UniRef50_UPI000472812C hypothetical protein 8.51989178709e-05 4.88846429145e-06 -8.03104535795e-05 +UniRef50_R1ALN2 0.000241462252992 0.00031983758685 7.8375333858e-05 +UniRef50_UPI000478EC80 hypothetical protein 6.98586484844e-06 1.25555570006e-05 5.56969215216e-06 +UniRef50_UPI000479C4BA MFS transporter 5.30949588193e-06 1.56224775903e-05 1.03129817084e-05 +UniRef50_U3T7W9 0.000936607797792 0.00574592944676 0.00480932164897 +UniRef50_A4IJB8 Ribosomal RNA small subunit methyltransferase A 5.24567330848e-05 2.20134410198e-05 -3.0443292065e-05 +UniRef50_X1R1D8 Marine sediment metagenome DNA, contig 2.7838324363e-05 3.38350365452e-05 5.9967121822e-06 +UniRef50_UPI000372FCE9 hypothetical protein 4.38166925355e-06 6.64063069258e-05 6.20246376723e-05 +UniRef50_UPI000428F92B chemotaxis protein CheR 0.000228015843763 0.00010140946232 -0.000126606381443 +UniRef50_K2F9K7 0.000177972950428 0.000275730957517 9.7758007089e-05 +UniRef50_M8DGK3 0.00323559419016 0.0148311731469 0.0115955789567 +UniRef50_C6WMT0 8.01439071958e-05 3.92897523446e-05 -4.08541548512e-05 +UniRef50_B8ZR59 Ribonuclease PH 1.47781175576e-05 2.20404192462e-05 7.2623016886e-06 +UniRef50_UPI000474B21F porin 0.00019725458607 4.71499843053e-05 -0.000150104601765 +UniRef50_H9KFK6 1.02576622508e-06 2.4755441389e-06 1.44977791382e-06 +UniRef50_P23160 34.2 kDa protein in rubredoxin operon 0.000380167100671 0.00234258368332 0.00196241658265 +UniRef50_UPI00016C0EFE tagatose bisphosphate aldolase, partial 7.13004778866e-06 0.000202503536621 0.000195373488832 +UniRef50_K7S7L1 Drug resistance MFS transporter, drug 0.000187176344854 0.00298870740571 0.00280153106086 +UniRef50_H1R8C9 0.00255930873442 0.00243563045475 -0.00012367827967 +UniRef50_Q6A7W9 NAD kinase 0.000184740288181 0.00979345085327 0.00960871056509 +UniRef50_UPI000334035B PREDICTED 9.51943504312e-05 3.63412218712e-05 -5.885312856e-05 +UniRef50_UPI00036D6A4E hypothetical protein 0.000137196393215 1.01062626954e-05 -0.00012709013052 +UniRef50_F0KFU5 5.3629395291e-06 0.00565326475231 0.00564790181278 +UniRef50_P59210 Regulatory protein RecX 0.00426187714962 0.00437926485832 0.0001173877087 +UniRef50_Q9RX92 Single stranded DNA binding protein DdrA 0.000181193274649 0.0104170248907 0.0102358316161 +UniRef50_UPI00046E5527 DNA polymerase IV 3.05611113412e-06 6.18071952887e-06 3.12460839475e-06 +UniRef50_UPI0004133718 phosphopantetheine adenylyltransferase 1.4494256663e-05 1.77881648403e-05 3.2939081773e-06 +UniRef50_B3WF00 tRNA dimethylallyltransferase 5.36728692198e-06 7.34228059238e-06 1.9749936704e-06 +UniRef50_Q8CT65 0.014620603275 0.00701764692989 -0.00760295634511 +UniRef50_A6M077 Transcriptional regulator, MarR family 0.000291870609934 0.0022219020663 0.00193003145637 +UniRef50_Q5HL47 0.0105786317969 0.00361078024366 -0.00696785155324 +UniRef50_G2XMI1 Hypothetical_protein 1.76008782196e-05 3.94499770079e-05 2.18490987883e-05 +UniRef50_U3QV92 N acetyl anhydromuranmyl L alanine amidase 0.00325920959562 0.00228375937235 -0.00097545022327 +UniRef50_Q46D36 2 cys peroxiredoxin, subunit A 0.000489184988913 0.000446322476372 -4.2862512541e-05 +UniRef50_Q49WA8 0.00846796228654 0.000792220826285 -0.00767574146026 +UniRef50_P48924 NADH ubiquinone oxidoreductase chain 6 0.000156395330266 3.89457286124e-05 -0.000117449601654 +UniRef50_P19765 Insertion element IS1 protein InsB 0.000385189784541 0.00244605755818 0.00206086777364 +UniRef50_P37329 Molybdate binding periplasmic protein 0.00513967355875 0.000707475113025 -0.00443219844573 +UniRef50_F3ZLD3 0.000182289081746 0.000206109014451 2.3819932705e-05 +UniRef50_A5ULS6 Transcriptional activator 0.00489828015995 0.000873176457548 -0.0040251037024 +UniRef50_UPI000255E297 cobinamide adenolsyltransferase 5.78782405088e-05 0.00340786668262 0.00334998844211 +UniRef50_P11551 L fucose proton symporter 0.00149024098429 0.000516338772935 -0.000973902211355 +UniRef50_Q5XCB9 Putative NADH nitroreductase Spy0809 0.00580300403822 0.00648984392626 0.00068683988804 +UniRef50_A4SZM1 Glutamine tRNA ligase 0.000226669038139 0.000585261468638 0.000358592430499 +UniRef50_W6K439 5.12763621579e-05 1.12797752791e-05 -3.99965868788e-05 +UniRef50_UPI000255A647 hypothetical protein 2.37212705831e-05 1.27675722166e-05 -1.09536983665e-05 +UniRef50_M4ZGM6 PTS system, 3 keto L gulonate specific IIB component 0.000810348186513 0.000760472202226 -4.9875984287e-05 +UniRef50_K0LCS5 Sulfite reductase alpha subunit 0.0248514044015 0.00449535662932 -0.0203560477722 +UniRef50_D9SQP8 YhhN family protein 0.000493600794051 0.000570031624348 7.6430830297e-05 +UniRef50_UPI000255AA05 3 hydroxybutyrate dehydrogenase, partial 0.000220896778268 0.00032203874492 0.000101141966652 +UniRef50_E2QLB6 C4 dicarboxylate binding periplasmicprote in 0.011406222281 0.00266474772113 -0.00874147455987 +UniRef50_Q2NGX7 0.00059291399331 0.000644327356797 5.1413363487e-05 +UniRef50_D5RU63 7.8431940772e-06 6.52581587215e-05 5.74149646443e-05 +UniRef50_D6M4D2 Nogalamycin resistance protein SnorO 3.51337358496e-06 3.89185400082e-05 3.54051664232e-05 +UniRef50_A0A028PVV2 Lactate dehydrogenase 0.00246811448246 0.000379711036505 -0.00208840344595 +UniRef50_A6W2Y6 PfkB domain protein 0.00041177469548 0.000655510165066 0.000243735469586 +UniRef50_UPI00037B582D hypothetical protein 0.00011168952412 8.69198172477e-05 -2.47697068723e-05 +UniRef50_X5HEL8 Alkyl hydroperoxide reductase 0.000116398560529 0.000190635416028 7.4236855499e-05 +UniRef50_Q03K00 ABC type multidrug transport system, permease component 0.00737999127257 0.000241074861385 -0.00713891641119 +UniRef50_O34512 0.000758252431427 0.00594254443063 0.0051842919992 +UniRef50_A6LQS2 Metal dependent phosphohydrolase 0.00198571452162 0.00260441625686 0.00061870173524 +UniRef50_UPI00036F122F hypothetical protein 5.31141996539e-05 7.61631486805e-06 -4.54978847859e-05 +UniRef50_Q8GNZ1 Rep1 0.00492007061126 0.000843642587898 -0.00407642802336 +UniRef50_L1K8E5 0.00192960502688 1.07672354005e-05 -0.00191883779148 +UniRef50_Q3IVQ7 0.000109117967776 0.000249220233964 0.000140102266188 +UniRef50_A0A009CML4 Surface protein G 0.00176237235561 0.00225190517071 0.0004895328151 +UniRef50_UPI0004560170 hypothetical protein PFL1_00672 9.84704557944e-05 3.53474105363e-05 -6.31230452581e-05 +UniRef50_UPI0004736936 hypothetical protein, partial 1.37102730109e-05 5.42533653659e-05 4.0543092355e-05 +UniRef50_X5HTN1 Biofilm synthesis protein 0.00010614802384 0.00423095276818 0.00412480474434 +UniRef50_Q1RGX4 Lipoyl synthase 0.00747414202997 0.000847949748779 -0.00662619228119 +UniRef50_I3YAK9 Proline iminopeptidase 0.000246144750781 0.000383793876199 0.000137649125418 +UniRef50_Q2YV92 0.0129379010153 0.00264618521775 -0.0102917157976 +UniRef50_UPI00046D6590 hypothetical protein 0.000110403675481 1.59313951595e-05 -9.44722803215e-05 +UniRef50_UPI000362AF2C hypothetical protein 3.64046394639e-05 2.6270241094e-05 -1.01343983699e-05 +UniRef50_Q8DT23 S adenosylmethionine synthase 0.00619315117993 0.000941558918183 -0.00525159226175 +UniRef50_UPI0003ADBFFE PREDICTED 2.08720010393e-05 2.87353820168e-05 7.8633809775e-06 +UniRef50_A4JKW7 Major facilitator superfamily MFS_1 0.00112910833939 0.000826114833423 -0.000302993505967 +UniRef50_W5VF97 ATPase 5.53455376421e-05 4.18394387606e-05 -1.35060988815e-05 +UniRef50_B9AGK2 0.00642758079257 0.000453476387174 -0.0059741044054 +UniRef50_UPI0002488527 hypothetical protein 7.04413658293e-05 2.89464911362e-05 -4.14948746931e-05 +UniRef50_Q5LLN2 Dephospho CoA kinase 0.00062158264181 0.000391147953907 -0.000230434687903 +UniRef50_Q93Z70 Probable N acetyl gamma glutamyl phosphate reductase, chloroplastic 6.03080642009e-05 4.23970424209e-05 -1.791102178e-05 +UniRef50_Q1CV54 0.000516482740875 0.00205630799377 0.0015398252529 +UniRef50_S9U7T2 Solute carrier family 39 , member 1 2 3 2.6426198099e-05 0.000180793668234 0.000154367470135 +UniRef50_UPI00039DF06E hypothetical protein 3.41279982195e-05 5.36642369426e-06 -2.87615745252e-05 +UniRef50_UPI0002378355 cystathionine beta lyase 9.73673120119e-06 1.41385853007e-05 4.40185409951e-06 +UniRef50_I6TQY3 Alpha beta hydrolase 0.00400829099202 0.0015111363497 -0.00249715464232 +UniRef50_F6CZ33 AsmA family protein 1.53678330736e-06 1.75217784758e-06 2.1539454022e-07 +UniRef50_UPI0003A40D95 dehydrogenase 1.71183054011e-06 1.16303984539e-05 9.91856791379e-06 +UniRef50_A6LT40 Phage integrase family protein 0.000176120990128 0.000923717368627 0.000747596378499 +UniRef50_A8F1C5 NADH quinone oxidoreductase subunit D 2.72989312928e-05 5.69265240448e-05 2.9627592752e-05 +UniRef50_A3QJ60 3.65883834415e-05 1.73998254933e-05 -1.91885579482e-05 +UniRef50_X2H5U3 0.000713033898912 0.00364424347889 0.00293120957998 +UniRef50_UPI000328E03F PREDICTED 0.00030773851109 0.000525595856749 0.000217857345659 +UniRef50_A0A037ZQW3 Chromosome partitioning protein ParA 2.85452048409e-05 7.92152142789e-05 5.0670009438e-05 +UniRef50_A9B2Q5 Aminomethyltransferase 2.09469785559e-05 2.16496345351e-05 7.026559792e-07 +UniRef50_Q6GDH0 Carbamate kinase 2 0.0138025709526 0.00386581497156 -0.00993675598104 +UniRef50_A9CLS9 1.52410409167e-05 0.000729942624529 0.000714701583612 +UniRef50_Q59266 4 alpha glucanotransferase 0.000386332411414 0.00276906262183 0.00238273021042 +UniRef50_Q9CJS1 ATP dependent RNA helicase RhlB 0.00178983202047 0.000576320433583 -0.00121351158689 +UniRef50_A6M113 CheA signal transduction histidine kinase 0.000296146035164 0.00117233099005 0.000876184954886 +UniRef50_UPI000310CC9F C4 dicarboxylate ABC transporter 6.10350673584e-06 1.37205802685e-05 7.61707353266e-06 +UniRef50_P77930 Bacterioferritin 0.00015322765884 0.0105728180323 0.0104195903735 +UniRef50_B9MJH4 Biotin synthase 0.0022712549375 0.0082576251672 0.0059863702297 +UniRef50_I0EIM7 Fucosyltransferase 0.000210757552288 0.0071965523592 0.00698579480691 +UniRef50_UPI0003B315F6 deoxyguanosinetriphosphate triphosphohydrolase 0.000117367724376 2.39213697482e-05 -9.34463546278e-05 +UniRef50_Q0AM89 5.23807335475e-06 0.000517718723785 0.00051248065043 +UniRef50_Q9RWF7 UDP glucose 4 epimerase, putative 0.000216531159953 0.0320619284332 0.0318453972732 +UniRef50_UPI00036BC390 hypothetical protein 8.78125982316e-05 1.04066611986e-05 -7.7405937033e-05 +UniRef50_B1KTG4 Glutamate racemase 0.000569646163234 0.00041545197336 -0.000154194189874 +UniRef50_UPI00047ECB6C hypothetical protein 1.30435070366e-06 2.31000919179e-05 2.17957412142e-05 +UniRef50_UPI0002377A5A flagellar basal body P ring protein, partial 7.53903847578e-05 4.63279600798e-05 -2.9062424678e-05 +UniRef50_B3WF19 Phenylalanine tRNA ligase alpha subunit 0.025359766962 0.0147225722693 -0.0106371946927 +UniRef50_UPI000360FD43 hypothetical protein 4.63865287782e-06 6.76460391419e-05 6.30073862641e-05 +UniRef50_B1J595 Hydrolase, alpha beta fold family 0.000136935667056 0.000860222715458 0.000723287048402 +UniRef50_UPI00046E9EAA peptide ABC transporter permease 4.36104846346e-05 5.07013831364e-05 7.0908985018e-06 +UniRef50_A5UJB4 Putative transposase 0.0211444271328 0.00296404468402 -0.0181803824488 +UniRef50_Q57N58 6.53488926519e-05 0.000542894065856 0.000477545173204 +UniRef50_UPI0002B4C28A PREDICTED 9.24170305512e-06 4.36142557167e-05 3.43725526616e-05 +UniRef50_UPI0003A5EC9D hypothetical protein 0.00024649387294 0.000297798358178 5.1304485238e-05 +UniRef50_UPI000418F39C glycosyl transferase 1.58039777767e-05 1.40363762127e-05 -1.767601564e-06 +UniRef50_S3ANI4 0.000104810425869 3.93087257461e-05 -6.55017001229e-05 +UniRef50_B9KTI2 0.000360328859787 0.00035873433672 -1.594523067e-06 +UniRef50_UPI00045D9861 PREDICTED 5.27446951194e-06 0.000159304303971 0.000154029834459 +UniRef50_UPI00022CAA7D PREDICTED 0.0028929446423 0.000786007976872 -0.00210693666543 +UniRef50_UPI000288AA6A riboflavin synthase subunit alpha 1.80391184681e-05 1.52491920597e-05 -2.7899264084e-06 +UniRef50_A6LTI2 Signal transduction histidine kinase regulating citrate malate metabolism 0.0008909823002 0.00140950392552 0.00051852162532 +UniRef50_C5N6M7 0.0102905817507 0.00023815863322 -0.0100524231175 +UniRef50_W6VNR8 6.00241511792e-05 0.000135229329591 7.52051784118e-05 +UniRef50_Q6YTQ3 0.000327240139295 0.000422529031195 9.52888919e-05 +UniRef50_UPI0003B3015D DNA directed RNA polymerase subunit alpha, partial 5.18412173225e-06 1.10923936579e-05 5.90827192565e-06 +UniRef50_D3QGV6 0.0121287276709 0.00523999172167 -0.00688873594923 +UniRef50_U3QX72 GntR family transcriptional regulator 0.00128197014836 0.00332626120494 0.00204429105658 +UniRef50_A5UKM5 6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB 0.00277479063826 0.000501161660873 -0.00227362897739 +UniRef50_UPI00034DE84F ABC transporter permease 2.12250811283e-05 0.000122659462902 0.000101434381774 +UniRef50_UPI00046C9569 hypothetical protein 1.10739205926e-05 6.43258338839e-05 5.32519132913e-05 +UniRef50_W9GJ85 Transcriptional regulator 3.65539529709e-06 1.20840586725e-05 8.42866337541e-06 +UniRef50_X8FK87 binding domain protein 0.0165654163339 0.00339189547824 -0.0131735208557 +UniRef50_I6TYV1 Phage associated cell wall hydrolase 0.00100662930361 0.00217936040507 0.00117273110146 +UniRef50_UPI000471FDE5 membrane protein 1.9463527258e-05 5.19044610804e-05 3.24409338224e-05 +UniRef50_A8B5Y9 0.000113809673637 0.000619356268256 0.000505546594619 +UniRef50_J8PEK3 2.19262028083e-05 3.37538434873e-05 1.1827640679e-05 +UniRef50_Q72PJ7 2 oxoglutarate dehydrogenase E1 component 2.02471641175e-06 8.40877917307e-06 6.38406276132e-06 +UniRef50_A3JLI9 1.50135827591e-05 9.89688039901e-06 -5.11670236009e-06 +UniRef50_UPI00031F6CF4 hypothetical protein 0.000408761562644 0.000414494370311 5.732807667e-06 +UniRef50_D0K9Z2 Glycosyltransferase stabilizing protein Gtf2 0.0129972223263 0.00145299990964 -0.0115442224167 +UniRef50_UPI00046D6398 hypothetical protein 4.10090065992e-06 0.000303905032514 0.000299804131854 +UniRef50_K8CED6 9.08829735005e-05 0.000129558264083 3.86752905825e-05 +UniRef50_B9XI35 2.9033758e-05 8.91693641059e-05 6.01356061059e-05 +UniRef50_P21824 Chemotaxis protein methyltransferase 0.00189724813346 0.000449606032923 -0.00144764210054 +UniRef50_A7FAU8 0.000290190797016 0.0150241883261 0.0147339975291 +UniRef50_N3H3N3 ThiC associated domain protein 1.52762855114e-05 4.42498746558e-05 2.89735891444e-05 +UniRef50_UPI0003B6CE6C gas vesicle protein GvpS 0.000323921906157 0.000169837366082 -0.000154084540075 +UniRef50_G7M8E0 Cell wall binding repeat containing protein 0.000120090982672 0.00257760363653 0.00245751265386 +UniRef50_O83041 Probable proline iminopeptidase 6.82716177001e-06 9.7607547662e-06 2.93359299619e-06 +UniRef50_Q1WV02 UPF0374 protein LSL_0370 0.0279453443087 0.0136773593566 -0.0142679849521 +UniRef50_F6ZMA7 3.88236068703e-05 2.85875158438e-06 -3.59648552859e-05 +UniRef50_P57245 Carbamoyl phosphate synthase small chain 1.58984129822e-05 7.45422905407e-06 -8.44418392813e-06 +UniRef50_A6LX23 0.000399223967155 0.000946555515946 0.000547331548791 +UniRef50_A1SUY3 6.77320649985e-05 2.75808413104e-05 -4.01512236881e-05 +UniRef50_U3SUB6 0.00407202725424 0.00291456954692 -0.00115745770732 +UniRef50_P42200 L cystine transport system permease protein TcyB 0.000377719071698 0.00483140027771 0.00445368120601 +UniRef50_Q9RZU0 0.000109185943826 0.0216774639779 0.0215682780341 +UniRef50_D6KCK7 Lanthionine synthetase C family protein 9.62390193955e-05 2.24371751724e-05 -7.38018442231e-05 +UniRef50_D3E1H3 Divalent cation transporter mgtE family 0.00180286151255 0.000285790545738 -0.00151707096681 +UniRef50_B8EJS2 Anthranilate phosphoribosyltransferase 3.69532075839e-05 4.00965810729e-05 3.143373489e-06 +UniRef50_UPI0002EDD593 membrane protein 5.81372995094e-05 6.18185279727e-05 3.6812284633e-06 +UniRef50_P43753 Formate acetyltransferase 0.030702288119 0.0154114090334 -0.0152908790856 +UniRef50_UPI0003814F39 hypothetical protein 4.77319666649e-05 3.50155416498e-05 -1.27164250151e-05 +UniRef50_UPI00035C39A9 hypothetical protein 8.64418114397e-06 7.13446540004e-06 -1.50971574393e-06 +UniRef50_UPI000475BF33 hypothetical protein 4.36700753542e-06 0.000442598774154 0.000438231766619 +UniRef50_R9ITT5 1.21775341979e-05 1.42136629461e-05 2.0361287482e-06 +UniRef50_A0A024HN09 Penicillin binding protein 1B 0.000962363216191 0.00049772736482 -0.000464635851371 +UniRef50_U9T899 1.7167914455e-05 8.79821426313e-06 -8.36970019187e-06 +UniRef50_UPI000380512A hypothetical protein 2.79341834759e-05 0.000255194101028 0.000227259917552 +UniRef50_Q836J8 ATP dependent helicase nuclease subunit A 3.13649038461e-06 0.000481556224736 0.000478419734351 +UniRef50_Q5QCP2 Carboxynorspermidine carboxyspermidine decarboxylase 0.00705619208358 0.00118773769061 -0.00586845439297 +UniRef50_Q16DV7 1 deoxy D xylulose 5 phosphate synthase 1 1.95896258298e-05 0.000119595938992 0.000100006313162 +UniRef50_UPI000473F09C cysteine protease 1.37611633391e-05 5.57633312206e-05 4.20021678815e-05 +UniRef50_D3P107 2.28877284981e-05 9.02665948431e-05 6.7378866345e-05 +UniRef50_G0AJ01 ABC sugar transporter, periplasmic ligand binding protein 0.0126935665188 0.00114034642715 -0.0115532200916 +UniRef50_UPI00036BD086 hypothetical protein 8.66196423334e-06 1.71672713135e-05 8.50530708016e-06 +UniRef50_F0Y3C6 Expressed protein 0.000160449628038 7.57320676271e-05 -8.47175604109e-05 +UniRef50_D3P109 7.74936426106e-06 4.64695372295e-06 -3.10241053811e-06 +UniRef50_C1CJ99 Peptidase, M42 0.000179186387112 0.00188632002173 0.00170713363462 +UniRef50_Q8TLL3 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.54956647602e-05 2.89867875495e-05 3.4911227893e-06 +UniRef50_UPI00047E3B33 2 oxoglutarate dehydrogenase 1.05842871818e-05 6.85388304935e-05 5.79545433117e-05 +UniRef50_P14491 Protein rlx 0.193994034719 0.0453697194461 -0.148624315273 +UniRef50_E5ZTR3 0.000101519317952 0.000236772196986 0.000135252879034 +UniRef50_G8B0S1 1.2368060353e-05 9.39003832077e-05 8.15323228547e-05 +UniRef50_UPI0003B334FD LuxR family transcriptional regulator 1.43104383281e-05 2.41046885439e-05 9.7942502158e-06 +UniRef50_K7UNI1 8.21831450481e-06 0.000125240809525 0.00011702249502 +UniRef50_P57037 Capsule polysaccharide modification protein LipA 0.000223964603593 0.00356728363485 0.00334331903126 +UniRef50_V4QFM6 0.000131330517835 9.69176033959e-05 -3.44129144391e-05 +UniRef50_G2SD77 Type F conjugative transfer system protein TraW 5.81565079104e-05 2.84427826033e-05 -2.97137253071e-05 +UniRef50_P52130 Antitoxin RnlB 0.00438979878167 0.00048018976455 -0.00390960901712 +UniRef50_E3Z582 Integral membrane protein 2.32179649734e-05 0.00131187240275 0.00128865443778 +UniRef50_E4HNQ2 4.63086551023e-05 0.000283805413828 0.000237496758726 +UniRef50_F7XC63 0.000438862815601 0.000133054478835 -0.000305808336766 +UniRef50_A1TWP1 Anhydrase, family 3 protein 0.000485100856535 0.00249717943892 0.00201207858239 +UniRef50_I6D3Q6 Oxoglutarate dehydrogenase , E1 component 0.00345066856066 0.00116842567521 -0.00228224288545 +UniRef50_Q94BZ7-2 Isoform 2 of DNA gyrase subunit B, mitochondrial 9.79376845456e-06 3.38140307567e-05 2.40202623021e-05 +UniRef50_P37610 Alpha ketoglutarate dependent taurine dioxygenase 0.0017380835065 0.000942071004454 -0.000796012502046 +UniRef50_F0XVZ5 Expressed protein 4.1307838305e-05 0.000138424177799 9.7116339494e-05 +UniRef50_P0A9K5 PhoH like protein 0.00361015603306 0.00189845962736 -0.0017116964057 +UniRef50_U5MRD5 D galactose binding periplasmic protein MglB 0.000116388280223 0.000969855922107 0.000853467641884 +UniRef50_UPI0004639C8D multidrug ABC transporter permease 2.94148386332e-06 3.88700483259e-06 9.4552096927e-07 +UniRef50_Q88WU9 Threonine tRNA ligase 3.10274753793e-05 0.00179602659548 0.0017649991201 +UniRef50_Q9ZLX3 DNA gyrase subunit B 0.000125133342931 0.00352216962688 0.00339703628395 +UniRef50_M4XCL5 2.57325968572e-06 1.63019691513e-05 1.37287094656e-05 +UniRef50_P39265 D allose binding periplasmic protein 0.00126748101067 0.000193650298495 -0.00107383071217 +UniRef50_A5UJ66 0.00118905159156 0.000431119277652 -0.000757932313908 +UniRef50_UPI0003104B05 hypothetical protein 3.59121761313e-06 1.33047730482e-05 9.71355543507e-06 +UniRef50_UPI0004737FFB isopropylmalate isomerase 1.12639821229e-05 1.44764736336e-05 3.2124915107e-06 +UniRef50_UPI0002887E27 anthranilate synthase, component I, partial 1.66405034582e-05 2.29963521739e-05 6.3558487157e-06 +UniRef50_A5WAN0 NLPA lipoprotein 0.000105648400768 7.1671295179e-05 -3.3977105589e-05 +UniRef50_B5FMP4 Leucine tRNA ligase 0.00241208025941 0.00158790738918 -0.00082417287023 +UniRef50_F2M7N9 ABC superfamily ATP binding cassette transporter, ABC protein 0.00501262118706 0.000917654983631 -0.00409496620343 +UniRef50_G2LWG0 0.000408883706435 0.000156706112424 -0.000252177594011 +UniRef50_O31775 0.0191488436664 0.00382816013928 -0.0153206835271 +UniRef50_A2SNG4 1.29227855339e-05 1.13480370444e-05 -1.5747484895e-06 +UniRef50_Q8XDS6 Leucine efflux protein 0.00102621383002 0.00128398567476 0.00025777184474 +UniRef50_Q3J1F1 Phage terminase like protein large subunit 0.00780230296138 0.00114454123784 -0.00665776172354 +UniRef50_W5XGS0 UDP N acetylmuramoylalanine D glutamate ligase 2.17399221928e-06 1.43984399271e-05 1.22244477078e-05 +UniRef50_Q1LRP7 Formamidopyrimidine DNA glycosylase 7.12375770943e-06 4.10657510696e-05 3.39419933602e-05 +UniRef50_F0PKX1 Membrane associated protein 1.32998842636e-05 0.000509982610938 0.000496682726674 +UniRef50_UPI0004244D92 xanthine phosphoribosyltransferase 3.78715192325e-05 3.06887839422e-05 -7.1827352903e-06 +UniRef50_A5HZF5 Sensor histidine kinase 0.00159144090862 0.00103560365961 -0.00055583724901 +UniRef50_Q01FQ9 WGS project CAID00000000 data, contig chromosome 01 7.48960553722e-06 6.2435764138e-06 -1.24602912342e-06 +UniRef50_G9W9E3 Diaminopimelate decarboxylase 0.000333303811472 0.000122972472728 -0.000210331338744 +UniRef50_Q8DT21 0.000490241543964 0.00150949085114 0.00101924930718 +UniRef50_Q8DT20 0.00442723723792 0.0018039286078 -0.00262330863012 +UniRef50_A1WSR7 CreA family protein 0.00260310776707 3.11183114643e-05 -0.00257198945561 +UniRef50_D8LC87 3.3244050419e-05 3.20462940479e-05 -1.1977563711e-06 +UniRef50_Q72IE1 Ribonuclease H 4.07404402175e-05 3.02410999533e-05 -1.04993402642e-05 +UniRef50_Q5KQI9 5.94931688289e-05 0.000386034908756 0.000326541739927 +UniRef50_A6LSZ1 Lipase 0.000527614665002 0.00221871312068 0.00169109845568 +UniRef50_I6RV19 Adenylosuccinate lyase 0.000226832352982 0.00044219475427 0.000215362401288 +UniRef50_Q8VL04 Arginine repressor 2.14006765161e-05 0.000396398262003 0.000374997585487 +UniRef50_UPI00036D83C9 hypothetical protein 5.47412039057e-06 8.49992065332e-06 3.02580026275e-06 +UniRef50_B2SA42 NAD NADP dependent betaine aldehyde dehydrogenase 4.0263901237e-05 6.5644247897e-06 -3.36994764473e-05 +UniRef50_UPI00047CA754 hypothetical protein 4.23346816562e-05 0.000183504730729 0.000141170049073 +UniRef50_UPI0002003A7E exodeoxyribonuclease III, partial 7.03515961127e-05 6.65964878657e-05 -3.755108247e-06 +UniRef50_UPI0001D560FB PREDICTED 7.34371493647e-05 3.96335350986e-05 -3.38036142661e-05 +UniRef50_D3QFS6 0.0104148996637 0.00243224638237 -0.00798265328133 +UniRef50_UPI00037E9BF3 hypothetical protein 3.71102096765e-05 3.68407738452e-05 -2.694358313e-07 +UniRef50_O26329 Cobalt precorrin 8X methylmutase 0.00506235893435 0.000301343576728 -0.00476101535762 +UniRef50_P76213 Excinuclease cho 0.00196527045627 0.00162953304588 -0.00033573741039 +UniRef50_Q03174 Fructan beta fructosidase 0.0061342964015 0.00194866052745 -0.00418563587405 +UniRef50_R7PXR3 0.00358171861704 0.00136139602135 -0.00222032259569 +UniRef50_Q8YGU6 3 dehydroquinate dehydratase 6.19112518197e-05 0.000117787826595 5.58765747753e-05 +UniRef50_K4Q9M3 Ferrous iron transport protein B 0.00596298712912 0.00131439973706 -0.00464858739206 +UniRef50_D4HCC8 ABC transporter, permease protein 0.000324392471557 0.00890145303037 0.00857706055881 +UniRef50_X1J4V9 Marine sediment metagenome DNA, contig 5.81175182093e-05 3.26691313139e-05 -2.54483868954e-05 +UniRef50_U5MVM4 Chaperone protein HtpG 0.000515259560648 0.00130488949875 0.000789629938102 +UniRef50_B1I4W9 Ribonuclease PH 3.10161000316e-05 0.00101958630973 0.000988570209698 +UniRef50_UPI000304D965 hypothetical protein 2.48133905781e-06 3.33315491985e-05 3.08502101407e-05 +UniRef50_J3ABJ4 Conjugative relaxase domain protein, TrwC TraI family 1.13589389611e-05 7.88486252553e-06 -3.47407643557e-06 +UniRef50_M5ABW2 0.000165839576067 0.000629588728662 0.000463749152595 +UniRef50_D0IXW2 Transposase, IS4 3.64918164744e-06 1.12001391191e-05 7.55095747166e-06 +UniRef50_K2BFW3 9.6510748687e-05 2.2892470022e-05 -7.3618278665e-05 +UniRef50_G2LBA7 0.00020713362391 0.00015099223637 -5.614138754e-05 +UniRef50_A7GEL0 3 dehydroquinate dehydratase 1.1802211785e-05 2.0238471131e-05 8.436259346e-06 +UniRef50_Q8CU45 0.0104735315487 0.00396233141951 -0.00651120012919 +UniRef50_Q8CU48 0.0080355450717 0.00680648958456 -0.00122905548714 +UniRef50_UPI00035CC3C8 50S ribosomal protein L18 3.2725783488e-05 0.000532975325771 0.000500249542283 +UniRef50_K2HP40 Protein translocase subunit SecA 0.0108639833735 0.00193586160445 -0.00892812176905 +UniRef50_X6L0R0 8.16920778663e-06 5.35598792837e-06 -2.81321985826e-06 +UniRef50_A4IKU2 Foldase protein PrsA 8.2965843938e-06 2.14245869219e-05 1.31280025281e-05 +UniRef50_R5KA87 MATE efflux family protein 0.00274929033615 0.000446691940694 -0.00230259839546 +UniRef50_UPI0003B582E0 membrane protein 3.93810956675e-06 1.12759346499e-05 7.33782508315e-06 +UniRef50_C7ZUY2 Tagatose 6 phosphate kinase 0.0260498346865 0.00750557279323 -0.0185442618933 +UniRef50_K2J2X7 Cation transport protein ChaC 6.45946342661e-06 5.69499032583e-06 -7.6447310078e-07 +UniRef50_P9WNP4 1,4 Dihydroxy 2 naphthoyl CoA synthase 2.73734026912e-05 0.0081086042199 0.00808123081721 +UniRef50_V0ULY3 0.00039953100943 0.000162493155004 -0.000237037854426 +UniRef50_A3PR66 NADH dehydrogenase (Quinone) 0.0127156575828 0.00336642233364 -0.00934923524916 +UniRef50_R1DJN2 2.70997668162e-05 6.93501211852e-05 4.2250354369e-05 +UniRef50_B9KJM8 3.82023528416e-05 2.76579304526e-05 -1.0544422389e-05 +UniRef50_A1KWK7 Possible lipoprotein 0.000129571849717 0.0031414493173 0.00301187746758 +UniRef50_A6W6A1 Hydroxyethylthiazole kinase 7.81795534889e-06 1.07767911699e-05 2.95883582101e-06 +UniRef50_A6UXC5 Membrane protein, putative 0.000715123188949 0.00073149716971 1.6373980761e-05 +UniRef50_V7HHQ1 0.000483358068422 0.000220296783714 -0.000263061284708 +UniRef50_Q3JSI8 Ribose import ATP binding protein RbsA 1 0.000172176607797 5.26878863908e-05 -0.000119488721406 +UniRef50_UPI00035C22D6 hypothetical protein 0.000129778803965 4.90030295935e-06 -0.000124878501006 +UniRef50_W0HY15 8.09072793881e-05 2.94860052545e-05 -5.14212741336e-05 +UniRef50_UPI000475A254 4 amino 4 deoxychorismate lyase 0.00012278209941 2.82481540343e-05 -9.45339453757e-05 +UniRef50_K0X9S8 Type VI secretion associated protein 0.000621917636126 2.49584740632e-05 -0.000596959162063 +UniRef50_P40398 0.0236617015915 0.0078336192163 -0.0158280823752 +UniRef50_B6WBV7 Glyoxalase family protein 2.81565270229e-05 7.78883931307e-05 4.97318661078e-05 +UniRef50_UPI00047137A9 coproporphyrinogen III oxidase 7.5367803025e-05 3.42960206831e-05 -4.10717823419e-05 +UniRef50_G7M0V7 ASCH domain protein 1.01226729668e-05 1.69421997442e-05 6.8195267774e-06 +UniRef50_UPI00047D052E iron ABC transporter substrate binding protein 4.45482243358e-05 2.17091927089e-05 -2.28390316269e-05 +UniRef50_P9WPZ4 Probable N succinyldiaminopimelate aminotransferase DapC 7.0698901606e-06 0.000151766774095 0.000144696883934 +UniRef50_P0A067 Signal peptidase IB 0.0181248449529 0.00707748024904 -0.0110473647039 +UniRef50_UPI000302F3DC hypothetical protein 2.61200308852e-06 9.93558413979e-07 -1.61844467454e-06 +UniRef50_UPI0004690173 type II and III secretion system protein, partial 8.91416981359e-06 7.57161526496e-06 -1.34255454863e-06 +UniRef50_H2JSU9 5.83209830705e-05 0.000504082775762 0.000445761792691 +UniRef50_UPI000383150A hypothetical protein 3.72025928229e-05 1.24063564805e-05 -2.47962363424e-05 +UniRef50_R5XYV5 Aspartate tRNA ligase 0.000384309536152 0.000138972567152 -0.000245336969 +UniRef50_A5FY40 Nucleoside diphosphate kinase 0.000182671429973 0.000193760958431 1.1089528458e-05 +UniRef50_P26993 Exoenzyme S synthesis regulatory protein ExsA 0.000145560149942 0.000355090226682 0.00020953007674 +UniRef50_A3PHN8 Signal transduction histidine kinase 0.0143952576317 0.0014540326391 -0.0129412249926 +UniRef50_Q7PY41 Adenylyltransferase and sulfurtransferase MOCS3 9.53041672471e-06 8.0033163949e-06 -1.52710032981e-06 +UniRef50_A4WTQ7 NnrU family protein 0.0254524113493 0.00266548158841 -0.0227869297609 +UniRef50_D3E0A9 DNA polymerase 0.00376015445116 0.000580872951704 -0.00317928149946 +UniRef50_Q05619 Butyrate kinase 0.000845335380761 0.00230818149184 0.00146284611108 +UniRef50_W5X3P1 Holliday junction ATP dependent DNA helicase RuvA 7.34662771348e-06 0.000168125883006 0.000160779255293 +UniRef50_UPI0004038030 sugar ABC transporter ATP binding protein 3.73091814994e-05 2.61353494832e-05 -1.11738320162e-05 +UniRef50_Q8CPX4 Phosphoglycerate mutase 0.0152768451828 0.0016669708524 -0.0136098743304 +UniRef50_UPI0003B52C1D tRNA uridine 5 carboxymethylaminomethyl modification protein 1.68455706115e-05 1.20961306819e-05 -4.7494399296e-06 +UniRef50_K0CF00 Ferric mycobactin receptor, FemA 0.000606311937618 8.75012459849e-05 -0.000518810691633 +UniRef50_UPI0003654A4C hypothetical protein 0.000374145246884 0.000128278786 -0.000245866460884 +UniRef50_Q5LYY8 Galactose 1 phosphate uridylyltransferase 0.00517479552004 0.00881808031446 0.00364328479442 +UniRef50_C6A075 DNA helicase, UvrD REP family 0.00236831830568 0.000760621310767 -0.00160769699491 +UniRef50_Q81M98 Acetylornithine aminotransferase 4.06626404797e-06 0.00091283878551 0.000908772521462 +UniRef50_Q8XQ83 Chemotaxis response regulator protein glutamate methylesterase 8.03333364862e-05 8.23309473356e-06 -7.21002417526e-05 +UniRef50_B7GSK0 0.00059150412716 0.00172018267431 0.00112867854715 +UniRef50_UPI0004671C29 calcium ABC transporter ATPase 1.34250215937e-05 1.57002208293e-05 2.2751992356e-06 +UniRef50_A5A3S4 BcepGomrgp35 1.08094921896e-05 2.38600744388e-05 1.30505822492e-05 +UniRef50_Y8DMX3 0.000161730008049 4.21103378182e-05 -0.000119619670231 +UniRef50_UPI0002895DAD glycerophosphoryl diester phosphodiesterase 1.63317333239e-05 1.02923598306e-05 -6.0393734933e-06 +UniRef50_A4W7D6 D galactonate dehydratase family member Ent638_0932 0.000345020568046 0.00225333512853 0.00190831456048 +UniRef50_T1YBI3 Extracellular matrix binding protein 0.00162839315222 0.00019105478436 -0.00143733836786 +UniRef50_Q2NHG2 DNA polymerase II large subunit 0.00388700893854 0.00106173021251 -0.00282527872603 +UniRef50_UPI0004791B8E 2 oxoisovalerate dehydrogenase 3.15312443683e-06 4.6811220069e-05 4.36580956322e-05 +UniRef50_UPI00047249EC 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 3.17988941838e-05 8.59485268887e-06 -2.32040414949e-05 +UniRef50_UPI00047E8CB8 hypothetical protein 1.33179409435e-05 0.000785826998294 0.00077250905735 +UniRef50_K7SIX4 PTS system, mannitol specific IIC component 6.02371258787e-05 0.00520490517464 0.00514466804876 +UniRef50_UPI000369E93F hypothetical protein 7.29149146068e-06 1.01214992477e-05 2.83000778702e-06 +UniRef50_Q47537 Taurine binding periplasmic protein 0.00280711000335 0.00108023711531 -0.00172687288804 +UniRef50_A6LYI5 Metal dependent phosphohydrolase 0.000350774526433 0.000767300735797 0.000416526209364 +UniRef50_J0NDK0 Toxin antitoxin system, antitoxin component, HicB family 6.39025503368e-05 0.000214205712327 0.00015030316199 +UniRef50_UPI000381C2B6 hypothetical protein 8.56101381368e-05 0.000132455661573 4.68455234362e-05 +UniRef50_K0R8M8 3.01695949833e-05 8.72962515337e-05 5.71266565504e-05 +UniRef50_M4XJN9 Acyl CoA dehydrogenase 0.000307107386331 0.000311679899937 4.572513606e-06 +UniRef50_A6M3C8 Phage integrase family protein 0.000452983186623 0.00290655584421 0.00245357265759 +UniRef50_UPI000468A0F6 zinc ABC transporter ATPase 5.07311131702e-06 3.58924417493e-06 -1.48386714209e-06 +UniRef50_M9VF55 0.000330162672461 0.00612323445631 0.00579307178385 +UniRef50_UPI0003F904B8 hypothetical protein 3.26907560195e-05 0.000100927875483 6.82371194635e-05 +UniRef50_Q57CX9 Uridylate kinase 1.70263504483e-05 1.61839524629e-05 -8.423979854e-07 +UniRef50_Q52742 0.000236523384216 3.77930830775e-05 -0.000198730301139 +UniRef50_UPI0004411EC4 hypothetical protein AURDEDRAFT_182094 5.16598407029e-05 3.72318586984e-05 -1.44279820045e-05 +UniRef50_F3SY37 Transcriptional regulator, AraC family 0.0102771998338 0.00433906243324 -0.00593813740056 +UniRef50_Q6GGT1 Elastin binding protein EbpS 0.00746992168598 0.0017701374524 -0.00569978423358 +UniRef50_F0P4S1 Transcriptional regulator, GntR family 0.0168111571508 0.00590157569716 -0.0109095814536 +UniRef50_D8HFV1 0.0202642239977 0.00685450978975 -0.013409714208 +UniRef50_UPI000471A03D hypothetical protein 1.0073116357e-05 1.15510014827e-05 1.4778851257e-06 +UniRef50_B8A150 9.60040598365e-05 0.000476372572497 0.00038036851266 +UniRef50_UPI0004576376 PREDICTED 5.01957489891e-05 1.13855953581e-05 -3.8810153631e-05 +UniRef50_R4K5C7 Arabinose efflux permease family protein 0.000630353699287 0.00244473203256 0.00181437833327 +UniRef50_O41971 1.57006288586e-05 1.64291530845e-05 7.285242259e-07 +UniRef50_UPI000475E8C5 hypothetical protein 4.23475347031e-05 0.000461799092111 0.000419451557408 +UniRef50_F0YD72 0.000170471384753 0.000376106522305 0.000205635137552 +UniRef50_W1JYG5 Transcriptional regulator 0.000800101425473 0.00136510320554 0.000565001780067 +UniRef50_Q5HRK4 Elongation factor Tu 0.0140244499828 0.00370254022403 -0.0103219097588 +UniRef50_U6EDF1 Probable cyclic pyranopterin monophosphate synthase accessory protein 0.00322063940795 0.00106740977781 -0.00215322963014 +UniRef50_UPI00016C47EA nuclease PIN 6.094417447e-06 2.82738813168e-05 2.21794638698e-05 +UniRef50_U5NMR3 0.00615862530681 0.000868578544689 -0.00529004676212 +UniRef50_I0C1G6 0.018000991922 0.00240554514446 -0.0155954467775 +UniRef50_B2THX3 3D G5 domain protein 0.000289273011926 0.000912951073309 0.000623678061383 +UniRef50_Q6MIP7 Phosphonates import ATP binding protein PhnC 4.04715213242e-05 1.39436345294e-05 -2.65278867948e-05 +UniRef50_UPI0003B485D5 AsnC family transcriptional regulator 0.000122279548856 4.06057027078e-05 -8.16738461482e-05 +UniRef50_K9W5R6 HI0933 family protein 0.000116448682564 0.000303099174468 0.000186650491904 +UniRef50_Q2FF06 Putative aldehyde dehydrogenase SAUSA300_2076 0.0119496933678 0.00209525434317 -0.00985443902463 +UniRef50_W5W167 Putative membrane protein 0.000467776325828 0.000626101212682 0.000158324886854 +UniRef50_I0IAE1 0.000104698002146 1.72497540489e-05 -8.74482480971e-05 +UniRef50_A6M1H4 Sodium 0.00011796437152 0.00206449640376 0.00194653203224 +UniRef50_Q6ABT4 0.00112124551144 0.00233144767259 0.00121020216115 +UniRef50_H2JLK0 Putative zinc binding oxidoreductase 0.000103901761154 0.000112524502528 8.622741374e-06 +UniRef50_V9AUV8 1.67824685474e-05 1.08336337115e-05 -5.9488348359e-06 +UniRef50_F8XNS8 ppGpp synthetase I SpoT RelA (Fragment) 9.7525589773e-06 2.63067531004e-05 1.65541941231e-05 +UniRef50_Q9I3X3 0.000831618249846 0.000307621567909 -0.000523996681937 +UniRef50_G7U7F2 Pyridine nucleotide disulfide oxidoreductase 0.000197228714886 0.00612385898276 0.00592663026787 +UniRef50_UPI000472306F adenylate kinase 8.45010770009e-06 6.22807847248e-05 5.38306770247e-05 +UniRef50_UPI000477F500 alanine glycine permease, partial 4.1514734763e-05 0.00377300648726 0.0037314917525 +UniRef50_A5E8I8 Non canonical purine NTP pyrophosphatase 0.000204605908547 3.19302892282e-05 -0.000172675619319 +UniRef50_Q9I6V7 Chemotaxis protein methyltransferase 2 6.11076867238e-05 4.62758162454e-05 -1.48318704784e-05 +UniRef50_Q04789 Acetolactate synthase 0.0280988059447 0.0147439016901 -0.0133549042546 +UniRef50_Q1LCM1 0.0188709243964 0.00425903358193 -0.0146118908145 +UniRef50_UPI00035F8C60 hypothetical protein 5.63043533032e-06 5.74798300673e-05 5.1849394737e-05 +UniRef50_B9KSL8 Efflux transporter, RND family, MFP subunit 0.00261474490436 0.000879803240378 -0.00173494166398 +UniRef50_W9B9V7 Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome 0.000235826686109 8.94250962646e-05 -0.000146401589844 +UniRef50_UPI0004234081 excinuclease ABC subunit A 6.86939916803e-06 1.68460854083e-05 9.97668624027e-06 +UniRef50_UPI00035EC56E hypothetical protein 1.96120532652e-05 1.90709946493e-05 -5.410586159e-07 +UniRef50_A6V0D0 5.16362877968e-05 0.00916138720528 0.00910975091748 +UniRef50_Y6JBS8 0.000217746730244 6.43944201019e-05 -0.000153352310142 +UniRef50_M8I708 Signal transduction histidine kinase 0.000202586398316 0.00443433465256 0.00423174825424 +UniRef50_R5WAI2 Exodeoxyribonuclease V gamma subunit 0.00314601428688 0.000842847380391 -0.00230316690649 +UniRef50_C5Y406 0.000125327380181 9.1361242894e-05 -3.3966137287e-05 +UniRef50_C7ZW47 Membrane protein 0.0159088723835 0.00463342187787 -0.0112754505056 +UniRef50_Q4L4Y7 Coenzyme A disulfide reductase 0.00961601020177 0.00245570663477 -0.007160303567 +UniRef50_B1MYD1 3 phosphoshikimate 1 carboxyvinyltransferase 4.47834828864e-06 7.6036089436e-06 3.12526065496e-06 +UniRef50_Q9RTK2 Diaminopimelate decarboxylase 6.33840722591e-06 0.00662673698177 0.00662039857454 +UniRef50_B9L5V9 3 dehydroquinate dehydratase 1.1717218142e-05 5.47666818152e-05 4.30494636732e-05 +UniRef50_P40740 Aryl phospho beta D glucosidase BglH 0.000231027788867 0.00224497348862 0.00201394569975 +UniRef50_P0A543 Aspartate semialdehyde dehydrogenase 2.87552817617e-05 0.00566387025243 0.00563511497067 +UniRef50_Q6AB89 Isoleucine tRNA ligase 6.12395642737e-05 0.00400819803301 0.00394695846874 +UniRef50_X1H4N6 Marine sediment metagenome DNA, contig 1.58096863954e-05 5.85433118815e-05 4.27336254861e-05 +UniRef50_Q28K40 Amino acid amide ABC transporter membrane protein 2, HAAT family 0.0101244549727 0.00313125511961 -0.00699319985309 +UniRef50_P37466 Protein Veg 0.00194680700336 0.000678888977457 -0.0012679180259 +UniRef50_A6LXW3 ApbE family lipoprotein 0.000157067679132 0.00326002812986 0.00310296045073 +UniRef50_Q6GGI4 UPF0403 protein SAR1592 0.0331693382658 0.0187582942078 -0.014411044058 +UniRef50_Q6FB03 0.000359016199141 0.00555074961453 0.00519173341539 +UniRef50_E0SM47 D alanine aminotransferase 0.0171884753556 0.00268454218103 -0.0145039331746 +UniRef50_V8R541 Restriction endonuclease 0.000311114825983 0.0003565191612 4.5404335217e-05 +UniRef50_Q6FB06 8.04349092798e-05 0.000958204459656 0.000877769550376 +UniRef50_P75712 Putative allantoin permease 0.00321904121788 0.000151444464203 -0.00306759675368 +UniRef50_UPI000478D97F sugar ABC transporter substrate binding protein 5.31797843376e-06 3.02491837165e-05 2.49312052827e-05 +UniRef50_R8ZKN1 0.000230861243448 0.000332770741212 0.000101909497764 +UniRef50_Q9RZ80 0.000169276228183 0.0491503072973 0.0489810310691 +UniRef50_UPI00046D31AE hypothetical protein 0.000472660882089 5.48209363548e-05 -0.000417839945734 +UniRef50_UPI0003B5BDB9 hypothetical protein 3.93927340513e-06 9.05484707872e-06 5.11557367359e-06 +UniRef50_C3AH20 Dehydrogenase 0.0209451855636 0.00512323231779 -0.0158219532458 +UniRef50_UPI000465EB7D hypothetical protein 4.95502173151e-05 1.8994276118e-05 -3.05559411971e-05 +UniRef50_Q3SPM7 Peptidyl tRNA hydrolase 8.14021061265e-05 3.92248215214e-05 -4.21772846051e-05 +UniRef50_UPI0001FE2E53 molybdenum cofactor synthesis 1 isoform 1 9.31127820362e-06 3.00811025009e-05 2.07698242973e-05 +UniRef50_L9NDB6 Nonribosomal peptide synthase 0.000120485005023 0.00227557716739 0.00215509216237 +UniRef50_UPI00036FD9CA hypothetical protein 1.68439047885e-05 1.00290216129e-05 -6.8148831756e-06 +UniRef50_UPI0004110BE6 FAD binding molybdopterin dehydrogenase 0.000127801713254 0.00042509297696 0.000297291263706 +UniRef50_P05707 Sorbitol 6 phosphate 2 dehydrogenase 0.00623005233159 0.000497724784029 -0.00573232754756 +UniRef50_UPI00041879E9 LamB YcsF family protein 0.00016310195304 5.6045230536e-05 -0.000107056722504 +UniRef50_F0L271 0.000171052351058 5.39993962479e-05 -0.00011705295481 +UniRef50_UPI0003791D67 1 phosphofructokinase, partial 4.43759000302e-05 0.000329590505955 0.000285214605925 +UniRef50_Q8FAI6 L ribulose 5 phosphate 4 epimerase UlaF 0.00979612057419 0.00548822883165 -0.00430789174254 +UniRef50_Q132P2 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.0093221480392 0.00297444463549 -0.00634770340371 +UniRef50_B9E6Y4 Shikimate dehydrogenase 2.39488807618e-05 2.08658749382e-05 -3.0830058236e-06 +UniRef50_C5N6P2 0.00387790003355 0.00243110115954 -0.00144679887401 +UniRef50_B6FWG5 0.000587078810021 0.00274665187349 0.00215957306347 +UniRef50_UPI000365F4CD hypothetical protein 0.000249372168594 0.000153659472455 -9.5712696139e-05 +UniRef50_Q98LU4 Glutathione dependent formaldehyde activating enzyme 0.00013348254079 3.46342443128e-05 -9.88482964772e-05 +UniRef50_A6LUC8 40 residue YVTN family beta propeller repeat protein 0.000332423594962 0.00106518367585 0.000732760080888 +UniRef50_B5GFD4 Nogalamycin resistance protein SnorO 3.40874237228e-05 2.19294524526e-05 -1.21579712702e-05 +UniRef50_Q8CP35 N acetyl gamma glutamyl phosphate reductase 0.00823372728749 0.00200731456205 -0.00622641272544 +UniRef50_P37146 Ribonucleoside diphosphate reductase 2 subunit beta 0.00251457372069 0.00358368991699 0.0010691161963 +UniRef50_UPI000418FD7E delta aminolevulinic acid dehydratase 1.02364857851e-05 1.92982102178e-05 9.0617244327e-06 +UniRef50_M7ADI3 1.74376136457e-05 2.28931813338e-05 5.4555676881e-06 +UniRef50_S5YCH9 Hydrolase, HAD superfamily 0.00262544447645 0.0007812157027 -0.00184422877375 +UniRef50_K0R081 3.44698377345e-05 0.000342888264474 0.000308418426739 +UniRef50_J0F9K3 0.0108277379529 0.00718360530916 -0.00364413264374 +UniRef50_A7WYM2 Thymidylate kinase 0.00602459553981 0.00273014984433 -0.00329444569548 +UniRef50_A6LZ87 Aminoglycoside phosphotransferase 0.000430260279658 0.000853241004089 0.000422980724431 +UniRef50_G2JIT2 ABC type spermidine putrescine transport system, ATPase component 0.000231526254158 0.00998168623361 0.00975015997945 +UniRef50_UPI000429A03C hypothetical protein 4.68282530677e-06 8.7349521446e-06 4.05212683783e-06 +UniRef50_A8GID3 Lipid A disaccharide synthase 0.00028237150095 0.000240420655515 -4.1950845435e-05 +UniRef50_Q55621 Amidophosphoribosyltransferase 8.18685089287e-06 0.000111003151258 0.000102816300365 +UniRef50_J9P1J0 2.28481669509e-05 2.0156335493e-05 -2.6918314579e-06 +UniRef50_C5BT54 Cysteine synthase 0.000865043167471 0.000495131436238 -0.000369911731233 +UniRef50_A0A023RU88 RND transporter 0.000348980833836 0.00819444253723 0.00784546170339 +UniRef50_UPI00046C9C35 microcin ABC transporter permease 5.02272161003e-05 1.65808919402e-05 -3.36463241601e-05 +UniRef50_E0SGK4 ABC transporter, permease component 0.00406739659753 0.000536830407535 -0.00353056619 +UniRef50_R9SHD6 Glycine betaine L proline ABC transporter permease substrate binding protein 0.00234712029076 0.000117577984809 -0.00222954230595 +UniRef50_Q487D7 Na translocating NADH quinone reductase subunit E 0.000118955923212 9.03392377203e-05 -2.86166854917e-05 +UniRef50_UPI00047D9DB1 iron transporter FeoB 1.39188499233e-05 3.95430769872e-06 -9.96454222458e-06 +UniRef50_A6M1E2 0.000129642592261 0.00118809907898 0.00105845648672 +UniRef50_B1ZUJ0 NADH quinone oxidoreductase subunit B 2 2.37940454123e-05 0.000170198328684 0.000146404283272 +UniRef50_P0A908 MltA interacting protein 0.00404825734619 0.000666127906449 -0.00338212943974 +UniRef50_Q8T154 Uridine cytidine kinase B 7.74242220313e-06 8.5760030512e-05 7.80176083089e-05 +UniRef50_Q1QEF7 Putative 3 methyladenine DNA glycosylase 0.000808898547544 0.00876884567528 0.00795994712774 +UniRef50_B1ZDM1 4.00735779729e-05 1.0995215225e-05 -2.90783627479e-05 +UniRef50_UPI0003B3485A AP endonuclease 9.12448762411e-05 7.52097898278e-05 -1.60350864133e-05 +UniRef50_Q8G7G5 Cysteine tRNA ligase 4.57892781473e-06 1.15490214905e-05 6.97009367577e-06 +UniRef50_N3MBX3 0.00065820052722 0.000249194165413 -0.000409006361807 +UniRef50_B6EJ69 Putative type VI secretion protein VasE 6.24297267153e-06 9.19107308968e-06 2.94810041815e-06 +UniRef50_A7FB19 9.46080172615e-05 0.00204599715281 0.00195138913555 +UniRef50_W6W5E1 Methionine synthase 0.00624045920239 0.00299185018381 -0.00324860901858 +UniRef50_M4R2Z9 2.48326147089e-05 0.000490619845149 0.00046578723044 +UniRef50_Q7N4Q1 Complete genome; segment 8 17 0.000184740288181 0.00639427841546 0.00620953812728 +UniRef50_V4JEN2 0.00053726434014 0.000122288038061 -0.000414976302079 +UniRef50_R5FLK7 Sporulation initiation inhibitor protein Soj 3.35385596348e-06 3.06994855462e-05 2.73456295827e-05 +UniRef50_E4B644 8.54121748243e-05 0.000752850682436 0.000667438507612 +UniRef50_UPI0003A4C566 methyltransferase 3.43430710126e-05 0.000713412508587 0.000679069437574 +UniRef50_Q9RZ06 Histidine ammonia lyase 0.000174105725641 0.0187171776142 0.0185430718886 +UniRef50_Q8CNZ3 Type IV prepilin peptidase 0.0054998721138 0.00243928236518 -0.00306058974862 +UniRef50_A7ZJM7 DNA protection during starvation protein 0.000458637236771 0.00341815956565 0.00295952232888 +UniRef50_R4ZTN2 Glycerophosphoryl diester phosphodiesterase 9.65437311629e-05 0.000707549823905 0.000611006092742 +UniRef50_E6CZE7 4 phosphoerythronate dehydrogenase 0.00118846646536 0.00293315580668 0.00174468934132 +UniRef50_W7U7T7 0.000243138088752 0.0002727253566 2.9587267848e-05 +UniRef50_M3YRF2 1.72730621127e-05 8.59119144685e-06 -8.68187066585e-06 +UniRef50_P37678 3 keto L gulonate 6 phosphate decarboxylase SgbH 0.00233704508406 0.0010588588756 -0.00127818620846 +UniRef50_P63333 Putative zinc metalloprotease SA1105 0.0131556230552 0.00452635684121 -0.00862926621399 +UniRef50_B0V5R2 Ribonuclease P protein component 0.00031457165738 0.00056429943668 0.0002497277793 +UniRef50_D3HGD1 0.00943092595701 0.000854088800515 -0.0085768371565 +UniRef50_P0ADA2 Acyl CoA thioesterase I 0.00196164767471 0.00109700679661 -0.0008646408781 +UniRef50_E3ENU9 Chromosome partitioning protein 3.96661646684e-06 0.00413873120965 0.00413476459318 +UniRef50_Q3J6K3 TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor 0.012056170466 0.00290160846893 -0.00915456199707 +UniRef50_UPI000473CDCF hypothetical protein 1.35973070673e-05 7.05970769252e-05 5.69997698579e-05 +UniRef50_F4M5Y2 0.00010519977716 0.000148172671653 4.2972894493e-05 +UniRef50_K0T360 1.05486568153e-05 1.70874901235e-05 6.5388333082e-06 +UniRef50_Q0J8P0 Os08g0101500 protein 0.000368593330243 0.000280322328022 -8.8271002221e-05 +UniRef50_UPI00034D7F07 hypothetical protein 0.000107437472019 0.000245236287 0.000137798814981 +UniRef50_UPI00036FC1AC hypothetical protein 1.87759474198e-05 0.000165028307834 0.000146252360414 +UniRef50_U6MJL8 0.000176633819618 6.13183512621e-05 -0.000115315468356 +UniRef50_A5HXZ1 Anaerobic ribonucleoside triphosphate reductase 0.000356472131832 0.00193301027966 0.00157653814783 +UniRef50_UPI000346628F hypothetical protein 2.25310603745e-05 3.83680173395e-05 1.5836956965e-05 +UniRef50_B0TZ13 Ribosomal RNA small subunit methyltransferase H 1.12916254897e-05 8.18146880791e-06 -3.11015668179e-06 +UniRef50_P46068 HTH type transcriptional regulator DsdC 0.00246218531057 0.000193650298495 -0.00226853501207 +UniRef50_UPI00036C038C hypothetical protein 1.00827684322e-05 1.92883645301e-05 9.2055960979e-06 +UniRef50_UPI00046E972F hypothetical protein 3.62855717574e-06 0.000469954452165 0.000466325894989 +UniRef50_UPI0003728245 hypothetical protein 2.88478474604e-05 7.02243844317e-06 -2.18254090172e-05 +UniRef50_T0IDY3 5.97718648886e-05 0.000105974029096 4.62021642074e-05 +UniRef50_Q9CFZ5 Metal ABC transporter substrate binding lipoprotein 0.00425538075008 0.00870062177881 0.00444524102873 +UniRef50_UPI0004651F41 hypothetical protein 4.93789722874e-06 2.53306117569e-05 2.03927145282e-05 +UniRef50_UPI00035D4E82 hypothetical protein 5.63682245554e-05 0.00281691432903 0.00276054610447 +UniRef50_V1HUM9 Methyl accepting chemotaxis protein 1.24581256864e-05 2.00201460009e-05 7.5620203145e-06 +UniRef50_A0LBD9 Transposase, IS4 family 5.09836717603e-05 1.35133233843e-05 -3.7470348376e-05 +UniRef50_G9A7N2 1.89744403375e-05 3.68543962498e-05 1.78799559123e-05 +UniRef50_G3XD65 0.00181249817962 0.000341406595601 -0.00147109158402 +UniRef50_D5AU05 3.11880101292e-05 3.73062252448e-05 6.1182151156e-06 +UniRef50_O54068 UDP glucose 6 dehydrogenase 2.52999175774e-05 2.11779815379e-05 -4.1219360395e-06 +UniRef50_D5AU02 0.0149867015503 0.00227954493088 -0.0127071566194 +UniRef50_I0C5N7 Nitrogen regulation protein NIFR3 3.52815790751e-05 7.90885549699e-05 4.38069758948e-05 +UniRef50_C1CCZ1 UvrABC system protein C 0.0140953220009 0.00903437287589 -0.00506094912501 +UniRef50_UPI0003735CBD hypothetical protein 1.48072830386e-05 0.000310918645689 0.00029611136265 +UniRef50_O27082 Cation transporting P ATPase PacL 0.00233764224672 0.000864212354176 -0.00147342989254 +UniRef50_Q07ML1 0.0013839064221 0.000194500574217 -0.00118940584788 +UniRef50_R5JK63 Hypoxanthine phosphoribosyltransferase 0.000243539347646 0.00239689879925 0.0021533594516 +UniRef50_B9KSE1 MIP family channel proteins 0.00700400781053 0.000600142354897 -0.00640386545563 +UniRef50_I2DGR3 Phage colicin tellurite resistance cluster TerY protein 0.00284171677941 0.00137187338525 -0.00146984339416 +UniRef50_D0CPI3 Peptidase U35, phage prohead HK97 2.66220077029e-05 3.53179413548e-05 8.6959336519e-06 +UniRef50_Q9EVM1 Replication protein 0.000122764808724 6.86638358046e-05 -5.41009729194e-05 +UniRef50_UPI00021A5775 PREDICTED 1.63483871941e-05 8.52664567521e-06 -7.82174151889e-06 +UniRef50_B0TBU3 Glutamate tRNA ligase 4.31777366486e-06 5.9818612036e-06 1.66408753874e-06 +UniRef50_A3PIY0 Carboxymuconolactone decarboxylase 0.00623178297502 0.00261492803837 -0.00361685493665 +UniRef50_A6QIG4 0.00186086860811 0.00179342128661 -6.74473215e-05 +UniRef50_P31062 DNA packaging protein NU1 homolog 0.00202294030927 0.00029336096543 -0.00172957934384 +UniRef50_B4EV71 Glutamine tRNA ligase 0.00246330427238 0.000809794892792 -0.00165350937959 +UniRef50_Q67NS3 Homoserine O acetyltransferase 1.15961394167e-05 2.69256732797e-05 1.5329533863e-05 +UniRef50_Q5HIW9 0.0169924915629 0.00315332454756 -0.0138391670153 +UniRef50_Q04809 Dipicolinate synthase subunit A 6.13376142851e-05 0.00087118544229 0.000809847828005 +UniRef50_G2JDG3 RNA splicing ligase RtcB 9.63794014105e-05 0.0115888513754 0.011492471974 +UniRef50_A6LYE0 0.0011267085075 0.00230651363309 0.00117980512559 +UniRef50_Q98CW9 Mll4969 protein 1.51861703725e-05 1.4207847162e-06 -1.37653856563e-05 +UniRef50_Q836D3 S ribosylhomocysteine lyase 1.52878458235e-05 0.00377527703327 0.00375998918745 +UniRef50_Q58033 N5 carboxyaminoimidazole ribonucleotide mutase 3.85096007712e-05 6.03788955891e-05 2.18692948179e-05 +UniRef50_M9VMX1 0.000173956676891 0.00851237809427 0.00833842141738 +UniRef50_P9WK18 Methionine aminopeptidase 2 0.000166783205682 0.00751080269353 0.00734401948785 +UniRef50_A3PGE5 0.017493556092 0.00298239942379 -0.0145111566682 +UniRef50_A1BAM2 ABC polyamine transporter, periplasmic substrate binding protein 0.0105615981658 0.00157956802615 -0.00898203013965 +UniRef50_M1MCE4 Diguanylate cyclase 0.000146691446449 0.00109879277316 0.000952101326711 +UniRef50_P92549 ATP synthase subunit alpha, mitochondrial 0.0105726489235 0.0149622264326 0.0043895775091 +UniRef50_O33013 Signal recognition particle protein 0.000101565736906 0.00498792489921 0.0048863591623 +UniRef50_Q7KS14 CG6695, isoform B 3.06839478451e-05 1.33258897047e-05 -1.73580581404e-05 +UniRef50_P0ABF0 Carbonic anhydrase 1 0.00378547023802 0.00214600650225 -0.00163946373577 +UniRef50_Q4FUD2 30S ribosomal protein S4 0.00306145288697 0.00152425458184 -0.00153719830513 +UniRef50_Q8CC86 Nicotinate phosphoribosyltransferase 2.99861490685e-06 6.48156359414e-06 3.48294868729e-06 +UniRef50_Q3IVT5 Agmatinase 0.00064496070633 0.000254949673557 -0.000390011032773 +UniRef50_UPI0003B4603D multidrug ABC transporter ATP binding protein 6.07738318414e-06 2.62101733218e-05 2.01327901377e-05 +UniRef50_C1DQ18 TonB dependent siderophore receptor 0.000724904608867 0.000790927970444 6.6023361577e-05 +UniRef50_G7SF07 Small conductance mechanosensitive channel 0.00655679898713 0.00275384573213 -0.003802953255 +UniRef50_P60845 Aquaporin Z 0.00468411742489 0.00270078097834 -0.00198333644655 +UniRef50_UPI000329DC11 1.66940850613e-06 1.18437971519e-05 1.01743886458e-05 +UniRef50_UPI0003733B95 hypothetical protein 2.06609219046e-06 5.24846824271e-06 3.18237605225e-06 +UniRef50_K0UFN2 0.000107544419209 0.000692019474371 0.000584475055162 +UniRef50_UPI0002492BA5 hypothetical protein 0.000170622048932 0.000110028532791 -6.0593516141e-05 +UniRef50_B0JTA0 Proline rich extensin like family protein 5.42980627867e-05 2.12187187823e-06 -5.21761909085e-05 +UniRef50_UPI000476476F thioredoxin 5.81586060719e-05 4.26859000773e-05 -1.54727059946e-05 +UniRef50_Q9RXQ6 0.000177223468942 0.0641726679441 0.0639954444752 +UniRef50_O85128 Chemotaxis response regulator protein glutamate methylesterase of group 1 operon 7.18206908673e-05 9.47724892188e-06 -6.23434419454e-05 +UniRef50_Q53174 Motility protein A 0.0135357985254 0.00172712778915 -0.0118086707362 +UniRef50_UPI00047893F1 chemotaxis protein 4.69249996992e-05 1.21559801383e-05 -3.47690195609e-05 +UniRef50_F9EDC6 SagD family bacteriocin biosynthesis protein 4.51777001112e-06 2.0765330001e-05 1.62475599899e-05 +UniRef50_I1F0D0 2.92224560283e-05 8.33626672536e-05 5.41402112253e-05 +UniRef50_Q99VJ2 Extracellular matrix protein binding protein emp 0.0113021103726 0.00137669692898 -0.00992541344362 +UniRef50_UPI00037AEF72 hypothetical protein 1.48891359001e-05 9.57549422304e-05 8.08658063303e-05 +UniRef50_A0A011RWZ7 0.000111572213456 0.000176484086778 6.4911873322e-05 +UniRef50_Q8TTR1 Outer membrane protein expression inhibitor 0.000115556935367 0.000503027604922 0.000387470669555 +UniRef50_P0AE86 Periplasmic protein CpxP 0.00822271990849 0.00206906385235 -0.00615365605614 +UniRef50_M9RTA8 Phosphoesterase 4.61526642719e-05 0.000435356322155 0.000389203657883 +UniRef50_A6LZM9 0.000122959605492 0.00171056470651 0.00158760510102 +UniRef50_P24240 6 phospho beta glucosidase AscB 0.00800071298498 0.0113138077501 0.00331309476512 +UniRef50_P43984 0.0123820098273 0.00109034401664 -0.0112916658107 +UniRef50_Q44653 30S ribosomal protein S1 0.000135542545373 0.00632017824854 0.00618463570317 +UniRef50_P68801 Staphylokinase 0.00750150896264 0.00145089523974 -0.0060506137229 +UniRef50_M5ANL0 Beta lactamase co inducer 0.00129236167479 0.000305745279313 -0.000986616395477 +UniRef50_UPI00035E68E1 hypothetical protein 8.67533285433e-06 5.7583603885e-06 -2.91697246583e-06 +UniRef50_A5UJ57 Putative manganese efflux pump MntP 0.00282904504452 0.00116572383629 -0.00166332120823 +UniRef50_H5SY94 ABC transporter ATP binding protein 0.0034987298727 0.00115189666322 -0.00234683320948 +UniRef50_A4WVG7 0.000276521188486 0.000249246984589 -2.7274203897e-05 +UniRef50_P71298 Putative prophage CP4 6 integrase 0.00169689897739 0.000609180403973 -0.00108771857342 +UniRef50_F3SV15 0.000825971774981 0.000726188619325 -9.9783155656e-05 +UniRef50_A4WVG4 0.00765935967302 0.000441870381833 -0.00721748929119 +UniRef50_Q6F7B6 0.000358183456254 0.00963675217819 0.00927856872194 +UniRef50_R5K1D1 0.00113341645163 0.00589833049632 0.00476491404469 +UniRef50_V5VEN2 Excinuclease ABC, A subunit 1.89984905172e-05 1.28488901225e-05 -6.1496003947e-06 +UniRef50_Q5HN96 Foldase protein PrsA 0.0144810900662 0.00360431188203 -0.0108767781842 +UniRef50_I2DNZ8 Peptidase M14, carboxypeptidase A 0.0019897321282 0.00284930598048 0.00085957385228 +UniRef50_UPI000478D2A2 cytochrome bd I ubiquinol oxidase subunit 2 apoprotein 4.59283306226e-06 1.3630925448e-05 9.03809238574e-06 +UniRef50_Q1GIE6 Binding protein dependent transport systems inner membrane component 0.010832028089 0.00194423719361 -0.00888779089539 +UniRef50_K1ZWG6 9.90413966068e-05 0.000229261185475 0.000130219788868 +UniRef50_UPI00034D08B0 hypothetical protein 9.95978765312e-06 0.00179411352499 0.00178415373734 +UniRef50_P72151 B type flagellin 0.000804472978569 0.000685027760166 -0.000119445218403 +UniRef50_UPI00041834C2 hypothetical protein 5.30973785084e-05 1.32064583488e-05 -3.98909201596e-05 +UniRef50_P46702 N5 carboxyaminoimidazole ribonucleotide mutase 7.2374366939e-05 8.57458783271e-05 1.33715113881e-05 +UniRef50_Q1IZI7 Elongation factor Ts 0.00022248683036 0.0474335234405 0.0472110366101 +UniRef50_UPI00016C08D0 phosphoenolpyruvate synthase 2.37207378296e-06 0.000101597197949 9.9225124166e-05 +UniRef50_F7ZIC0 5.12540508788e-05 1.52564729218e-05 -3.5997577957e-05 +UniRef50_Q3IZN1 NAD kinase 0.00207990207277 0.000254218110649 -0.00182568396212 +UniRef50_A6LTP4 0.000583741219879 0.000307088428274 -0.000276652791605 +UniRef50_P77737 Oligopeptide transport ATP binding protein OppF 0.0164376442975 0.00444531582318 -0.0119923284743 +UniRef50_Q9SMC2 Acetolactate synthase small subunit 1, chloroplastic 1.19203281476e-05 0.000271647852197 0.000259727524049 +UniRef50_A9T869 Predicted protein 0.000739577487117 0.000356941432277 -0.00038263605484 +UniRef50_Q7VFF5 Histidinol dehydrogenase 4.41809077779e-06 6.46261005579e-06 2.044519278e-06 +UniRef50_Q4L7L1 Diacylglycerol kinase 0.0228217794699 0.00480271064249 -0.0180190688274 +UniRef50_P0CL46 Formate hydrogenlyase transcriptional activator 0.00214635690591 0.000297442616675 -0.00184891428924 +UniRef50_Q9RT45 Exonuclease SbcD, putative 0.000275206078797 0.0218415862459 0.0215663801671 +UniRef50_R7MPC8 ComG operon protein 4 0.00383315044909 3.95136020646e-05 -0.00379363684703 +UniRef50_Q030J8 3 oxoacyl [acyl carrier protein] synthase 3 0.000276434856029 0.00403222781146 0.00375579295543 +UniRef50_V5T2N8 Transcriptional regulator 0.00210016045958 0.000283504036987 -0.00181665642259 +UniRef50_F0YAA2 0.000224540307818 0.000269324433419 4.4784125601e-05 +UniRef50_P75910 0.00214659634746 0.003613914015 0.00146731766754 +UniRef50_Q50566 DNA ligase 0.00338985687825 0.000357084604739 -0.00303277227351 +UniRef50_F3U2V1 Gas vesicle synthesis GvpLGvpF 0.0165252776161 0.00376685704829 -0.0127584205678 +UniRef50_A5UJ79 Adhesin like protein 0.00270571158404 0.000661118596452 -0.00204459298759 +UniRef50_Q9RZV9 Chromosome partitioning ATPase, putative, ParA family 9.89181409236e-05 0.0142210844073 0.0141221662664 +UniRef50_D6DM05 Predicted oxidoreductases of the aldo keto reductase family 0.00389218339831 0.00116905658432 -0.00272312681399 +UniRef50_S5D7U1 Nucleotidyltransferase DNA polymerase involved in DNA repair 8.73810159412e-05 0.000464321908157 0.000376940892216 +UniRef50_Q7UTH1 Uridylate kinase 8.6405095114e-06 1.05269874172e-05 1.8864779058e-06 +UniRef50_J8YHU3 Aida related Type V secretory pathway adhesin 5.87984406329e-05 0.00164431511601 0.00158551667538 +UniRef50_Q1QAW5 Lysine tRNA ligase 3.69569698471e-06 1.13451976806e-05 7.64950069589e-06 +UniRef50_Q94C74 Serine hydroxymethyltransferase 2, mitochondrial 4.13432558939e-05 1.87684479651e-05 -2.25748079288e-05 +UniRef50_E2QQ87 Phage baseplate assembly protein 0.00125710720405 0.000358684257326 -0.000898422946724 +UniRef50_UPI000366BB43 hypothetical protein 1.87911308953e-05 0.00027367738364 0.000254886252745 +UniRef50_X1YA55 5.29733717903e-06 1.57684392185e-05 1.04711020395e-05 +UniRef50_UPI00047BFE08 hypothetical protein 1.85880667997e-05 3.05547407351e-05 1.19666739354e-05 +UniRef50_N8D5Y6 0.00196405921091 0.000143088933094 -0.00182097027782 +UniRef50_A9EDB3 Putative transposase 0.000232439056637 9.81465269321e-05 -0.000134292529705 +UniRef50_UPI0004640326 hypothetical protein 0.000102195053718 9.19592481122e-05 -1.02358056058e-05 +UniRef50_UPI0003A56F69 hypothetical protein 0.000321736141935 0.000195213844699 -0.000126522297236 +UniRef50_P50060 Superoxide dismutase [Mn] 3 6.64154734548e-06 2.86319739546e-05 2.19904266091e-05 +UniRef50_A0A028WHC5 DNA polymerase III, alpha subunit 0.00933961191453 0.00416697508595 -0.00517263682858 +UniRef50_P0A5R7 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.000707678181702 0.00289830446541 0.00219062628371 +UniRef50_E6JZ36 Citrate transporter 0.000272473679391 0.00229828828851 0.00202581460912 +UniRef50_Q831N0 tRNA N6 adenosine threonylcarbamoyltransferase 0.000151751904315 0.0010218205796 0.000870068675285 +UniRef50_U7NE48 6.05033643005e-06 8.85950282145e-06 2.8091663914e-06 +UniRef50_UPI000474C12F glutathione ABC transporter permease, partial 0.000491900973046 0.000132263657277 -0.000359637315769 +UniRef50_D4HAW3 0.000228779387182 0.00152516705953 0.00129638767235 +UniRef50_T1YCD5 Fructokinase 0.0123544747591 0.00190009449478 -0.0104543802643 +UniRef50_UPI000376AD8E hypothetical protein 1.88156850188e-05 3.04752653574e-05 1.16595803386e-05 +UniRef50_UPI000406F970 hypothetical protein 6.03156931171e-05 3.02157377708e-05 -3.00999553463e-05 +UniRef50_UPI000454108C PREDICTED 2.47621179548e-05 3.53480930015e-05 1.05859750467e-05 +UniRef50_A1B402 1.91317748971e-05 6.60727285983e-05 4.69409537012e-05 +UniRef50_UPI00046A6AED ABC transporter ATP binding protein 2.34595826039e-05 8.88101838579e-06 -1.45785642181e-05 +UniRef50_UPI00047B7506 membrane protein 6.89647817452e-06 2.69079904418e-06 -4.20567913034e-06 +UniRef50_Q7WYU3 Putative AgrB like protein 0.000203313818048 0.000913828104671 0.000710514286623 +UniRef50_H0G932 0.000457093875161 0.000240005457227 -0.000217088417934 +UniRef50_X5EAP1 0.00145907502578 0.00046637676108 -0.0009926982647 +UniRef50_Q8CNS4 Replication initiator protein A 0.0041095741658 0.0143059922859 0.0101964181201 +UniRef50_V4JMR5 0.000229930040147 0.000100414362636 -0.000129515677511 +UniRef50_Q2G8P8 7.32329307848e-05 3.94427720717e-05 -3.37901587131e-05 +UniRef50_N0BAQ7 dTDP 4 dehydrorhamnose 3,5 epimerase 0.0093824587694 0.00266896656043 -0.00671349220897 +UniRef50_Q8CU52 Alkylmercury lyase 0.0137635330485 0.00521695670851 -0.00854657633999 +UniRef50_A6V8R6 Ribonuclease D 0.000196650832005 0.000189914279868 -6.736552137e-06 +UniRef50_O66608 N5 carboxyaminoimidazole ribonucleotide synthase 6.33367038072e-06 8.92962116616e-06 2.59595078544e-06 +UniRef50_D3QEW5 CAAX amino terminal protease family protein 0.00688349437723 0.00039463256819 -0.00648886180904 +UniRef50_A0A017IAI8 AraC type transcriptional regulator family protein 1.24114953028e-05 8.1384982853e-05 6.89734875502e-05 +UniRef50_UPI0003714DE7 hypothetical protein 4.35666848183e-05 0.000113403427679 6.98367428607e-05 +UniRef50_UPI00039CF99B ketol acid reductoisomerase 1.19336623305e-05 1.19683000937e-05 3.46377632e-08 +UniRef50_G8REC3 4.06143954149e-05 7.52187729899e-05 3.4604377575e-05 +UniRef50_R6CMC1 YhgE Pip domain protein 3.61310782178e-06 4.90728998721e-06 1.29418216543e-06 +UniRef50_UPI0002E4DB1A threonyl tRNA synthetase 5.99085467897e-05 0.000516337351392 0.000456428804602 +UniRef50_Q9PD20 3.90203897991e-06 1.25108547573e-05 8.60881577739e-06 +UniRef50_Q5M430 tRNA dimethylallyltransferase 0.00514687055144 0.00411006536166 -0.00103680518978 +UniRef50_Q2RSC8 Phosphoribosylformylglycinamidine cyclo ligase 5.45172803872e-06 9.2305700216e-06 3.77884198288e-06 +UniRef50_F0RN90 Alpha beta hydrolase fold protein 0.000501322597353 0.0340076319762 0.0335063093788 +UniRef50_C9X0H3 DNA repair protein RecN 8.02024055691e-05 0.00344911278078 0.00336891037521 +UniRef50_UPI0003488344 hypothetical protein 1.82234674955e-05 0.000111083601552 9.28601340565e-05 +UniRef50_Q6A8H6 Guanylate kinase 0.00107853139672 0.00121931646621 0.00014078506949 +UniRef50_UPI00046F8C65 hypothetical protein 5.68590918017e-06 1.02431313037e-05 4.55722212353e-06 +UniRef50_UPI0003B73489 glycosyltransferase 5.68649671636e-05 2.21804795251e-05 -3.46844876385e-05 +UniRef50_UPI0003B360FE MerR family transcriptional regulator 0.000176930842518 3.51558596517e-05 -0.000141774982866 +UniRef50_O27088 Type 2 DNA topoisomerase 6 subunit B 0.00210491129458 0.000134540640185 -0.00197037065439 +UniRef50_R9RCS6 MATE efflux family protein 0.00587621273293 0.00257485953005 -0.00330135320288 +UniRef50_C8W561 SpoVR family protein 1.48208946172e-05 0.000269821914715 0.000255001020098 +UniRef50_Q5HLN9 Transcriptional regulator, TetR family 0.0256634848327 0.00319965850955 -0.0224638263231 +UniRef50_A7ZJW5 0.00175334244593 0.0010030996119 -0.00075024283403 +UniRef50_Q9JTK4 Lactoferrin binding protein A 8.91838071812e-05 0.00395826584533 0.00386908203815 +UniRef50_O27585 Lysine tRNA ligase 0.00193627870736 0.000604093784075 -0.00133218492329 +UniRef50_B7J8G6 Ribosomal RNA large subunit methyltransferase E 2.92904203346e-05 3.28262426774e-05 3.5358223428e-06 +UniRef50_A6LUF8 0.000191293575433 0.000564853822888 0.000373560247455 +UniRef50_UPI0003B3F0AB hypothetical protein 6.33339922838e-05 2.77087402587e-05 -3.56252520251e-05 +UniRef50_UPI0003506CEC PREDICTED 3.44371371501e-05 7.78513325262e-05 4.34141953761e-05 +UniRef50_G7M8A4 0.000128981545165 0.00107582513206 0.000946843586895 +UniRef50_B5YKI3 NADH quinone oxidoreductase subunit B 1 3.28135767483e-05 0.00011625212419 8.34385474417e-05 +UniRef50_P31135 Putrescine transport system permease protein PotH 0.00194973235726 0.00113161037917 -0.00081812197809 +UniRef50_I4Z1X0 Hydrogenase urease accessory protein 4.11245642975e-05 1.29426351267e-05 -2.81819291708e-05 +UniRef50_Q3JXY3 4.93426189711e-05 0.000361160138623 0.000311817519652 +UniRef50_UPI0003B638D4 phosphopentomutase, partial 3.02762974831e-05 2.97749804764e-05 -5.013170067e-07 +UniRef50_B2U2C8 Electron transport complex subunit RsxC 0.00191630193174 0.00102383712537 -0.00089246480637 +UniRef50_UPI000359674D PREDICTED 6.16416802457e-06 5.67171708962e-07 -5.59699631561e-06 +UniRef50_W9T5C9 8.09162370286e-06 0.000135054906656 0.000126963282953 +UniRef50_UPI00047CBCCD 4 alpha glucanotransferase 1.25801724821e-05 0.000687866036113 0.000675285863631 +UniRef50_D3E1B3 Transposase 0.00281288824377 0.000120128829233 -0.00269275941454 +UniRef50_Q3A253 Valine tRNA ligase 7.12792951471e-06 3.69481012797e-06 -3.43311938674e-06 +UniRef50_Q6D7E5 Zinc transporter ZitB 0.00494883712271 0.000683700605828 -0.00426513651688 +UniRef50_A6M0L7 UPF0249 protein Cbei_4037 0.000535591888877 0.000853409226561 0.000317817337684 +UniRef50_Q6HLQ9 Spermidine putrescine import ATP binding protein PotA 0.000478006394018 0.00149339455194 0.00101538815792 +UniRef50_F2MPN2 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 0.00026583520342 0.00165499178402 0.0013891565806 +UniRef50_UPI0002DFA60B hypothetical protein 3.80349441285e-06 6.49859531178e-06 2.69510089893e-06 +UniRef50_F8XHG2 0.000157501679073 0.000103117378312 -5.4384300761e-05 +UniRef50_I0C7U2 4 aminobutyrate aminotransferase 0.0184473118621 0.00690204873872 -0.0115452631234 +UniRef50_P10932 Aliphatic amidase regulator 0.00245483589124 0.00204093245518 -0.00041390343606 +UniRef50_M7PBX7 Transferase 0.000208172420321 0.00676983444191 0.00656166202159 +UniRef50_J3HPZ9 Putative transcriptional regulator 5.11069574423e-05 1.21275278149e-05 -3.89794296274e-05 +UniRef50_UPI000479F530 ABC transporter 1.28120191747e-05 1.82440411391e-05 5.4320219644e-06 +UniRef50_E2XT98 Alcohol dehydrogenase 0.000286294842109 0.0219982123901 0.021711917548 +UniRef50_K0HWR7 LysR family transcriptional regulator 0.000164841043168 0.00601952036587 0.0058546793227 +UniRef50_A0A012DIE8 6.73024258588e-05 2.00021163844e-05 -4.73003094744e-05 +UniRef50_P42905 Putative N acetylgalactosamine permease IIC component 2 0.00059337694823 0.00133225581291 0.00073887886468 +UniRef50_B9JHG8 0.00501511811089 0.00307047149712 -0.00194464661377 +UniRef50_Q6MCU1 Chorismate synthase 4.51111768124e-06 1.4013270864e-05 9.50215318276e-06 +UniRef50_A3PS82 ABC transporter related 0.00270362290846 0.000216878853269 -0.00248674405519 +UniRef50_UPI00016C5336 ATP dependent RNA helicase 2.52470730571e-06 5.67163636893e-05 5.41916563836e-05 +UniRef50_E5QR85 0.00902968775528 0.000754947013561 -0.00827474074172 +UniRef50_D9XU17 Anti sigma B factor RsbT 6.97149978448e-05 0.00256352982984 0.002493814832 +UniRef50_D7YAA8 Poly beta 1,6 N acetyl D glucosamine export porin PgaA 0.00141255925513 0.000269602475149 -0.00114295677998 +UniRef50_Q67P19 NADH quinone oxidoreductase subunit D 1 1.54514425812e-05 7.93300980706e-05 6.38786554894e-05 +UniRef50_UPI000468EA31 chemotaxis protein 6.32633467701e-05 1.00565829895e-05 -5.32067637806e-05 +UniRef50_D3P499 8.33816592992e-05 2.29487385568e-05 -6.04329207424e-05 +UniRef50_A4XY80 Aminopeptidase Y 0.000811105023959 0.000253271881941 -0.000557833142018 +UniRef50_A0A024H1Y9 NrdI protein 1.17934103105e-05 5.35419430642e-05 4.17485327537e-05 +UniRef50_D7BFI6 0.000420988091661 0.0531974945702 0.0527765064785 +UniRef50_P66951 Beta barrel assembly enhancing protease 0.00282278994908 0.000932645999834 -0.00189014394925 +UniRef50_G7ZNX7 Competence protein ComEC, putative 0.00852210096471 0.00186276751313 -0.00665933345158 +UniRef50_S5YYC5 D 3 phosphoglycerate dehydrogenase 0.017058627612 0.0032196499719 -0.0138389776401 +UniRef50_UPI000364F717 hypothetical protein 0.000299994827148 0.000228432242104 -7.1562585044e-05 +UniRef50_J8SAI7 Integral membrane protein MviN 6.60825688746e-05 4.71843092021e-05 -1.88982596725e-05 +UniRef50_F3ZC85 3.09625389259e-06 5.70018343938e-05 5.39055805012e-05 +UniRef50_B2TJ37 DNA uptake protein 0.000228353856397 0.000594301749581 0.000365947893184 +UniRef50_P15644 Type II secretion system protein D 0.00184145083519 0.000863776243494 -0.000977674591696 +UniRef50_A6LSN4 Ribonuclease HII 0.000319452176746 0.002172169607 0.00185271743025 +UniRef50_A3DJ91 Chemotaxis response regulator protein glutamate methylesterase 0.000828657659638 0.00265057915224 0.0018219214926 +UniRef50_A3VZA4 0.00312348413126 0.000809190486442 -0.00231429364482 +UniRef50_UPI00036D2281 hypothetical protein 1.10158609674e-05 0.000120376636834 0.000109360775867 +UniRef50_T3G9C0 Modulator of DNA gyrase family protein 0.000480960977159 0.00111278630821 0.000631825331051 +UniRef50_W1YWP9 6.8229564802e-05 0.00260590019156 0.00253767062676 +UniRef50_M4S4L0 ParB family protein 0.000164402341726 3.30095016892e-05 -0.000131392840037 +UniRef50_M9WZ57 5.35688982539e-06 1.75259005891e-05 1.21690107637e-05 +UniRef50_Q8XC28 Tyrosine protein kinase etk 0.00287693786193 0.000730554893067 -0.00214638296886 +UniRef50_F2CYK8 Predicted protein 0.000359150497354 4.10353144307e-05 -0.000318115182923 +UniRef50_Q181T5 Enolase 1.11747127829e-05 0.0029049222586 0.00289374754582 +UniRef50_F8B5V8 Methylmalonyl CoA epimerase 5.13723684337e-05 2.6596749752e-05 -2.47756186817e-05 +UniRef50_D8AI56 0.000403912302854 0.000375013205696 -2.8899097158e-05 +UniRef50_A3PRU0 Protease Do 0.00668774361918 0.00131215698786 -0.00537558663132 +UniRef50_A7M2I7 0.000113333960784 6.0604165806e-05 -5.2729794978e-05 +UniRef50_P9WN34 Anthranilate synthase component 2 1.02990941202e-05 0.000970593936786 0.000960294842666 +UniRef50_UPI0001BF66E0 hypothetical protein SMAC_10559 7.34551944029e-05 2.60859946198e-05 -4.73691997831e-05 +UniRef50_A5UMG7 Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family 0.00265172060313 0.000687965988473 -0.00196375461466 +UniRef50_B2TKT2 D alanine poly ligase subunit 1 9.72066924068e-05 0.000953951928533 0.000856745236126 +UniRef50_P77608 2 keto 4 pentenoate hydratase 0.00229198367168 8.84925370398e-05 -0.00220349113464 +UniRef50_UPI00035F6D04 hypothetical protein 4.81829758415e-06 7.78005949958e-06 2.96176191543e-06 +UniRef50_UPI0003688491 hypothetical protein 0.000148393233729 0.000174888431651 2.6495197922e-05 +UniRef50_UPI0003AF89CE PREDICTED 7.05582642558e-06 9.86024436303e-05 9.15466172047e-05 +UniRef50_C7ZUX9 Exported protein 0.0107910022788 0.00167683375285 -0.00911416852595 +UniRef50_UPI000395A56D hypothetical protein, partial 1.12869047595e-05 3.05002773062e-05 1.92133725467e-05 +UniRef50_P95784 ATP synthase subunit a 0.00706529539011 0.0017726855061 -0.00529260988401 +UniRef50_W6EGR2 0.0321252960984 0.00415807993141 -0.027967216167 +UniRef50_R5GIU2 ABC transporter permease protein 0.000176670509603 0.00155195290105 0.00137528239145 +UniRef50_B9AFH0 Polymorphic outer membrane protein repeat (Fragment) 0.00350436013622 0.00137174198417 -0.00213261815205 +UniRef50_Q1H276 UPF0125 protein Mfla_1143 2.00018733029e-05 3.07484600537e-05 1.07465867508e-05 +UniRef50_Q8X9B6 Biotin carboxylase 0.00343132376192 0.00267149555587 -0.00075982820605 +UniRef50_Q6A7Q4 Phosphopantetheine adenylyltransferase 0.00390502747089 0.00222179388572 -0.00168323358517 +UniRef50_A0A022KFC8 FCD domain protein 0.00017584751034 0.00452399232121 0.00434814481087 +UniRef50_A8I308 D hydantoinase 0.00141085008063 0.000393386043517 -0.00101746403711 +UniRef50_A8L8P5 UPF0225 protein Franean1_5815 1.47442169188e-05 8.54757163091e-05 7.07314993903e-05 +UniRef50_Q8XDS0 Aspartate ammonia lyase 0.00371662976952 0.00223329296489 -0.00148333680463 +UniRef50_B9TEB7 0.000230693169858 1.55375221327e-05 -0.000215155647725 +UniRef50_UPI0002378CC4 serine threonine protein kinase 5.10662009143e-06 0.00111183747181 0.00110673085172 +UniRef50_P0AEI0 Inner membrane protein YjiG 0.00429740806271 0.0039649657845 -0.00033244227821 +UniRef50_Q6YWN8 BKRF1 encodes EBNA 1 protein like 2.2129784845e-05 0.000213225057899 0.000191095273054 +UniRef50_P47227 Cis 2,3 dihydrobiphenyl 2,3 diol dehydrogenase 1.20830995812e-05 1.29751677288e-05 8.920681476e-07 +UniRef50_P77288 0.00142159318365 0.00256797134953 0.00114637816588 +UniRef50_Q5HRN0 UvrB UvrC domain protein 0.0164415474507 0.00555139918332 -0.0108901482674 +UniRef50_Q2S0M8 3 isopropylmalate dehydrogenase 6.14853873775e-05 0.00961525308831 0.00955376770093 +UniRef50_UPI0002E4EFAA hypothetical protein 0.000133468751449 8.15373332446e-05 -5.19314182044e-05 +UniRef50_C5N2L9 Sua5 YciO YrdC YwlC family protein 0.0217879065272 0.00690338607265 -0.0148845204546 +UniRef50_Q28W83 0.000104839170676 1.98402702908e-05 -8.49989003852e-05 +UniRef50_UPI0003B4DCFB ketol acid reductoisomerase 7.37937188625e-06 2.20856894897e-05 1.47063176035e-05 +UniRef50_B7JTI5 SAF domain family 0.000136605303564 0.000219838738361 8.3233434797e-05 +UniRef50_G4LM62 Outer membrane OprD family porin 0.000965852908246 0.00240066438947 0.00143481148122 +UniRef50_R8AF48 DNA single strand annealing protein 3.09122402051e-05 7.98239877779e-05 4.89117475728e-05 +UniRef50_P07648 RecBCD enzyme subunit RecC 7.09842051955e-05 0.000110513205694 3.95290004985e-05 +UniRef50_Q97FT9 Lon protease 0.00062658326208 0.000871016769331 0.000244433507251 +UniRef50_A8LK44 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 6.30121142543e-05 3.45410562344e-05 -2.84710580199e-05 +UniRef50_Q7CTM5 Replication protein C 2.61476560876e-05 5.3053551528e-06 -2.08423009348e-05 +UniRef50_Q6F9Y0 Type II secretion system protein K 0.000118334165783 0.00692475896506 0.00680642479928 +UniRef50_R0DQ91 2.41315403657e-05 6.08747515742e-05 3.67432112085e-05 +UniRef50_UPI0002ECAD7A hypothetical protein 3.91594156617e-06 0.000413821036438 0.000409905094872 +UniRef50_UPI00035E723E hypothetical protein 2.61762813861e-05 1.32801570306e-05 -1.28961243555e-05 +UniRef50_UPI000479B32F hypothetical protein 4.60099476383e-05 1.11411166263e-05 -3.4868831012e-05 +UniRef50_Q483C5 Holliday junction ATP dependent DNA helicase RuvA 0.00379776065942 0.00193431844603 -0.00186344221339 +UniRef50_H3TL67 Phenol hydroxylase 0.000985670080054 0.000662129088634 -0.00032354099142 +UniRef50_UPI0003B4F6D8 hypothetical protein 2.64174346183e-06 5.43829316898e-05 5.1741188228e-05 +UniRef50_A5UNK2 0.0035845793656 0.00048412574623 -0.00310045361937 +UniRef50_O25657 4 hydroxy tetrahydrodipicolinate synthase 0.000159501122048 0.00497804360017 0.00481854247812 +UniRef50_B2GD08 Dihydroorotase 4.1560455647e-06 0.00195482858848 0.00195067254292 +UniRef50_Q1IY18 RNA ligase of LigT family 0.000376231882575 0.0195667760961 0.0191905442135 +UniRef50_P07607 Thymidylate synthase 2.66552955573e-05 9.42510242078e-05 6.75957286505e-05 +UniRef50_O32044 Single stranded DNA specific exonuclease RecJ 5.1475362111e-05 0.000276808252674 0.000225332890563 +UniRef50_UPI0003B455BB histidine kinase 3.26439894125e-06 1.65119946651e-05 1.32475957239e-05 +UniRef50_UPI0004633AFB relaxase 1.41730229001e-05 5.2653357938e-06 -8.9076871063e-06 +UniRef50_A0A033ZCU2 0.000175774479779 8.40279231199e-06 -0.000167371687467 +UniRef50_P76481 0.00369475847658 0.000711800433208 -0.00298295804337 +UniRef50_Q466I1 DNA 3 methyladenine glycosylase III 0.00228798246567 0.000320996418691 -0.00196698604698 +UniRef50_Q02H50 0.00111109932407 0.00059602647001 -0.00051507285406 +UniRef50_P76486 0.00126122746107 0.000284871419803 -0.000976356041267 +UniRef50_P76485 0.00016700764064 0.000420878914765 0.000253871274125 +UniRef50_P76484 0.00475692025709 0.000350871332905 -0.00440604892419 +UniRef50_G9UAR6 Nitrite extrusion protein 5.48394375904e-05 3.17769379433e-05 -2.30624996471e-05 +UniRef50_Q3J6L0 Dimethlysulfonioproprionate lyase DddL 0.0199228529549 0.00138047354394 -0.018542379411 +UniRef50_F4D682 Sel1 repeat protein 0.000347379744345 0.00686335542532 0.00651597568098 +UniRef50_UPI000289216F DNA mismatch repair protein MutS 2.31850332316e-06 2.08201817064e-05 1.85016783832e-05 +UniRef50_A3JNX6 0.000236296152086 2.53817331871e-05 -0.000210914418899 +UniRef50_R5AYM2 1.75382491039e-05 0.000193591288849 0.000176053039745 +UniRef50_A3JNX5 0.000312141726568 2.99302073354e-05 -0.000282211519233 +UniRef50_UPI0004744F96 amidohydrolase 6.0412349673e-06 3.82915000607e-05 3.22502650934e-05 +UniRef50_UPI0003B74A4B RNA polymerase subunit sigma 24 0.000119325596245 3.255348984e-05 -8.6772106405e-05 +UniRef50_G8VJE3 BadF BadG BcrA BcrD ATPase family protein 0.000376108485017 0.00551566915926 0.00513956067424 +UniRef50_Q823P5 Na translocating NADH quinone reductase subunit E 1.4745186382e-05 4.29424316819e-05 2.81972452999e-05 +UniRef50_S4XM14 7.23885105463e-06 5.18343814163e-05 4.45955303617e-05 +UniRef50_Q7ZAK9 Segregation and condensation protein B 0.00553826383443 0.00158619682925 -0.00395206700518 +UniRef50_UPI000306724C thioredoxin 3.23952116692e-05 8.00773813649e-06 -2.43874735327e-05 +UniRef50_B1VAN9 Proline tRNA ligase 5.41407800143e-06 1.53956858958e-05 9.98160789437e-06 +UniRef50_R6KZL2 L serine dehydratase iron sulfur dependent alpha subunit 8.82090596597e-06 1.22046742601e-05 3.38376829413e-06 +UniRef50_S5YFS5 0.000229585157287 6.0003333397e-05 -0.00016958182389 +UniRef50_Q1GN45 0.000514583464975 0.00019287795798 -0.000321705506995 +UniRef50_A0A059LCY3 0.000134018694272 0.000111306225312 -2.271246896e-05 +UniRef50_D9SMI0 9.25678139208e-05 0.000970849450822 0.000878281636901 +UniRef50_B7H3X7 RNA methyltransferase, TrmH family, group 1 family protein 0.000189058091245 0.0069974121164 0.00680835402515 +UniRef50_A0A023RS70 0.000754971977708 0.00649521698905 0.00574024501134 +UniRef50_Q9RYG9 Aldehyde dehydrogenase 8.88899502839e-05 0.0474508543153 0.047361964365 +UniRef50_Q4EF29 0.000532708507638 0.000225172491813 -0.000307536015825 +UniRef50_R9SK97 Energy converting hydrogenase A subunit L EhaL 0.00098441731494 0.00119319880887 0.00020878149393 +UniRef50_K7RWV6 Type I phosphodiesterase nucleotide pyrophosphatase 0.000100395209802 0.00516792670462 0.00506753149482 +UniRef50_Q5Z380 Glutamyl Q tRNA synthetase 7.71306720528e-06 1.14489673521e-05 3.73590014682e-06 +UniRef50_Q2J6V8 3 isopropylmalate dehydrogenase 4.99309380192e-05 0.00147466571303 0.00142473477501 +UniRef50_Q4L351 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.146690779987 0.0313604727515 -0.115330307236 +UniRef50_UPI000474339B hypothetical protein, partial 2.68543045134e-05 4.25282675978e-05 1.56739630844e-05 +UniRef50_C5C6N2 Cobyrinic acid ac diamide synthase 4.08622150193e-06 2.75030285068e-05 2.34168070049e-05 +UniRef50_U7GP52 0.000498031644221 0.00013478540219 -0.000363246242031 +UniRef50_O26880 Probable cobyric acid synthase 0.00184492692467 0.00126786892769 -0.00057705799698 +UniRef50_UPI0003783691 hypothetical protein, partial 4.90056105217e-06 7.37651023192e-06 2.47594917975e-06 +UniRef50_A3PFT3 0.0121008246677 0.00195334490879 -0.0101474797589 +UniRef50_L0A0P5 3.5489640402e-05 4.19737100999e-05 6.4840696979e-06 +UniRef50_P15028 Fe dicitrate binding periplasmic protein 0.00252953224648 0.00106137438557 -0.00146815786091 +UniRef50_V6YIB9 1.15897161265e-05 9.25509449579e-05 8.09612288314e-05 +UniRef50_UPI0002627F77 hypothetical protein 7.25049225708e-05 2.14149768971e-05 -5.10899456737e-05 +UniRef50_C0QHR6 UgpB 1.33020447329e-05 6.95275708449e-06 -6.34928764841e-06 +UniRef50_UPI0003505377 PREDICTED 5.18284010692e-06 1.04173402818e-05 5.23450017488e-06 +UniRef50_F0P831 Nitroreductase family protein 0.0375989831202 0.00526833858042 -0.0323306445398 +UniRef50_A6QEY2 0.0178351850004 0.00369144252742 -0.014143742473 +UniRef50_V4QDF6 1.10005147011e-05 1.47186948936e-05 3.7181801925e-06 +UniRef50_D7GAG5 Heat shock protein DnaJ 2.48988985043e-05 3.12457458379e-05 6.3468473336e-06 +UniRef50_Q49ZB7 UPF0457 protein SSP0714 0.00949247154328 0.00175435666453 -0.00773811487875 +UniRef50_C7CIU9 0.000204788180408 4.57339379516e-05 -0.000159054242456 +UniRef50_Q72I44 Maltose maltodextrin binding protein 0.000525796472968 0.0550429009884 0.0545171045154 +UniRef50_Q8FQP8 Fumarate hydratase class II 7.63395438253e-06 1.07974433758e-05 3.16348899327e-06 +UniRef50_Q8GDY3 Isoprenyl transferase 7.22078346917e-06 1.29117543963e-05 5.69097092713e-06 +UniRef50_UPI000363611D hypothetical protein, partial 3.79090304304e-07 2.97566443213e-06 2.59657412783e-06 +UniRef50_E2XCC3 Porin thermoregulatory envY domain protein 3.95957943646e-05 6.31347907217e-05 2.35389963571e-05 +UniRef50_UPI00037CBE46 hypothetical protein 1.58818851999e-05 5.09814010307e-06 -1.07837450968e-05 +UniRef50_A0A017HI16 Putative inner membrane protein 1.04505148597e-05 1.8284873694e-05 7.8343588343e-06 +UniRef50_A5UJ74 Chloramphenicol O acetyltransferase 0.00168940887183 0.000350871332905 -0.00133853753892 +UniRef50_Q2S4B9 Leucyl phenylalanyl tRNA protein transferase 1.63919476428e-05 4.0630313711e-05 2.42383660682e-05 +UniRef50_Q9KPL8 Thymidine phosphorylase 0.00275091960508 0.00089763764448 -0.0018532819606 +UniRef50_A5UJ64 0.00171708182643 0.00061738684013 -0.0010996949863 +UniRef50_Q38XI1 Phosphopentomutase 1.39465648841e-05 1.51672510828e-05 1.2206861987e-06 +UniRef50_T2A3N6 Replication initiation factor 0.000137936414928 0.00878178138178 0.00864384496685 +UniRef50_A0A034MYR1 0.00813166827365 0.000899594919637 -0.00723207335401 +UniRef50_A4X046 4.14177856367e-05 1.8310656756e-05 -2.31071288807e-05 +UniRef50_P10173 Fumarate hydratase, mitochondrial 7.68565490509e-06 2.87440250094e-05 2.10583701043e-05 +UniRef50_E3GZR7 C4 dicarboxylate transporter malic acid transport protein 0.000259768094505 0.00134842505848 0.00108865696397 +UniRef50_UPI00036C6CE0 methionyl tRNA synthetase 9.53304226055e-06 1.65977317256e-05 7.06468946505e-06 +UniRef50_A3M9C4 0.000116030529356 0.00540148742801 0.00528545689865 +UniRef50_C7M0E4 2 isopropylmalate synthase 0.00868456851448 0.00318708548283 -0.00549748303165 +UniRef50_UPI00034512D5 hypothetical protein 0.000152644904249 4.99342069486e-05 -0.0001027106973 +UniRef50_Q3J3B7 ABC transporter, fused ATPase and inner membrane subunits 0.00347920830776 0.00110754262457 -0.00237166568319 +UniRef50_B1YMH0 tRNA dimethylallyltransferase 7.34687766961e-06 8.8742903743e-06 1.52741270469e-06 +UniRef50_F8LKP2 0.00512369866803 0.0026842517056 -0.00243944696243 +UniRef50_Q1QNK0 0.020792651585 0.00953177936199 -0.011260872223 +UniRef50_B9KKX9 Na+ solute symporter 0.00868768981435 0.0017356498707 -0.00695203994365 +UniRef50_UPI0004689C7D succinylglutamate desuccinylase 0.000139811249249 1.34969873678e-05 -0.000126314261881 +UniRef50_A0A024RXB9 0.000617107139422 6.32769582685e-05 -0.000553830181153 +UniRef50_P54304 Oxygen independent coproporphyrinogen III oxidase like protein YqeR 2.09034716046e-05 0.000156390135144 0.000135486663539 +UniRef50_UPI000472E48E hypothetical protein 3.30198369461e-05 1.41672052991e-05 -1.8852631647e-05 +UniRef50_B5Z6E9 Acetyl coenzyme A synthetase 0.000126903165919 0.00389659082509 0.00376968765917 +UniRef50_UPI00036C5675 hypothetical protein, partial 1.65298260422e-05 2.11167240586e-05 4.5868980164e-06 +UniRef50_C7RVA0 Transposase IS4 family protein 5.63871600227e-05 1.67445832553e-05 -3.96425767674e-05 +UniRef50_Q9HZ55 Ribosomal large subunit pseudouridine synthase B 0.000679746682604 1.20817857143e-05 -0.00066766489689 +UniRef50_D2Z027 O ureido L serine synthase 5.78628026039e-05 9.74749310295e-06 -4.81153095009e-05 +UniRef50_M3DVL4 9.06873424513e-06 4.15391734511e-06 -4.91481690002e-06 +UniRef50_I6STE7 Transcriptional regulator 0.00413494153596 0.000986952797098 -0.00314798873886 +UniRef50_S3FNF7 Nitrite extrusion 1 domain protein 4.11420351115e-05 3.78116226998e-05 -3.3304124117e-06 +UniRef50_Q9XDH5 DNA polymerase III subunit alpha 1.77744155347e-06 1.11834011294e-05 9.40595957593e-06 +UniRef50_A6LRS6 Methyl accepting chemotaxis sensory transducer 0.000362914169993 0.000576700963191 0.000213786793198 +UniRef50_UPI00036C22DF hypothetical protein, partial 3.13781564694e-05 4.69435660614e-05 1.5565409592e-05 +UniRef50_A4FVV8 Tetrahydromethanopterin S methyltransferase subunit H 0.00460681242472 0.000420878914765 -0.00418593350995 +UniRef50_UPI000469A37F hypothetical protein 3.76370854623e-05 2.62625779443e-05 -1.1374507518e-05 +UniRef50_Q8CJR5 Phosphate acetyltransferase 3.63169941818e-06 1.29372822869e-05 9.30558286872e-06 +UniRef50_Q8CQB7 OpuCB protein 0.00933715815705 0.00575446329409 -0.00358269486296 +UniRef50_D5H607 GTP binding protein TypA 0.000402610177941 0.00554073267646 0.00513812249852 +UniRef50_UPI00040B08A2 hypothetical protein 7.9878624342e-06 2.45554915025e-05 1.65676290683e-05 +UniRef50_R7PVW1 0.00526133122526 0.000799776047734 -0.00446155517753 +UniRef50_Q9RU45 6.50090681193e-05 0.00193362323375 0.00186861416563 +UniRef50_UPI0003B4FB17 succinyl CoA synthetase subsunit alpha 8.03005203118e-06 6.26067677485e-06 -1.76937525633e-06 +UniRef50_B4U3L2 Glycine D amino acid oxidases family 0.00520826489182 0.00427899087141 -0.00092927402041 +UniRef50_Q0BPU7 Protoheme IX farnesyltransferase 0.00354625724806 0.000938789246667 -0.00260746800139 +UniRef50_UPI00035C8085 MULTISPECIES 3.38538896111e-06 2.45922718809e-05 2.12068829198e-05 +UniRef50_D6K0E4 Tellurium resistance protein 8.55281585193e-05 0.000282812834405 0.000197284675886 +UniRef50_A4WRY9 0.00593547535954 0.0297460523065 0.023810576947 +UniRef50_Q74HC8 N acetylmuramic acid 6 phosphate etherase 7.07622268436e-06 1.10689666031e-05 3.99274391874e-06 +UniRef50_S4MRC0 4.25462990936e-05 0.0007980793015 0.000755533002406 +UniRef50_B9E7V9 Two component response regulator 0.0185652325943 0.00629951231988 -0.0122657202744 +UniRef50_Q7WEH6 Hemin import ATP binding protein HmuV 2.346945672e-05 0.000279017478474 0.000255548021754 +UniRef50_C5C1A7 Ribulokinase 0.000158806901612 0.00415406081521 0.0039952539136 +UniRef50_UPI00035EC645 hypothetical protein 3.64714282561e-05 0.000140116837553 0.000103645409297 +UniRef50_Q8CND6 FDHD protein 0.00121392972285 0.00105564091509 -0.00015828880776 +UniRef50_A1VV51 4.40227065256e-05 7.72371549974e-06 -3.62989910259e-05 +UniRef50_G4LN90 Acyl CoA synthetase 0.000656381761222 0.000231562543847 -0.000424819217375 +UniRef50_D8THS6 Pathogenesis related protein 1 like protein 4.75931520965e-06 4.28543409532e-05 3.80950257435e-05 +UniRef50_U3SRT7 0.00185279851598 0.0019055539861 5.275547012e-05 +UniRef50_X7Z2N8 0.00214830408532 0.00187085625902 -0.0002774478263 +UniRef50_E4REV8 BirA 0.00118503109539 0.000527475429582 -0.000657555665808 +UniRef50_A6LXY3 Diguanylate cyclase 0.000203496489951 0.00144348123307 0.00123998474312 +UniRef50_Q8RKJ0 Putative ribitol 5 phosphate dehydrogenase 0.00935580263371 0.00204932539342 -0.00730647724029 +UniRef50_A3JXP6 9.00490404456e-06 5.6721191515e-06 -3.33278489306e-06 +UniRef50_B4U3L6 DNA replication protein DnaD 0.00859148713415 0.00629849185467 -0.00229299527948 +UniRef50_UPI0003D0F47B PREDICTED 5.01228085039e-06 8.17100699863e-05 7.66977891359e-05 +UniRef50_M1MTG9 Tetratricopeptide TPR_2 repeat containing protein 0.000299563807054 0.000313615848291 1.4052041237e-05 +UniRef50_UPI000421FD3A acetyl CoA acetyltransferase 5.43840349299e-06 0.000155847162666 0.000150408759173 +UniRef50_A7WYS8 Lysine tRNA ligase 0.0282354385134 0.0108128239338 -0.0174226145796 +UniRef50_UPI00035D12EA hypothetical protein 0.000358642225905 0.000103607080292 -0.000255035145613 +UniRef50_B7KKV6 Transposase, IS605 OrfB family 0.000138104630066 0.0408555658011 0.040717461171 +UniRef50_UPI000467FC65 hypothetical protein 3.65300548237e-06 9.01597706282e-06 5.36297158045e-06 +UniRef50_G8VDJ6 Kinase, PfkB family protein 0.000486144684264 0.00495801056252 0.00447186587826 +UniRef50_K4LCD0 Transposase 0.000701437052639 0.000461688595543 -0.000239748457096 +UniRef50_I3THN5 ABC transporter, periplasmic solute binding protein 0.00705048334824 0.000360658156203 -0.00668982519204 +UniRef50_R9YM38 0.00341502750521 0.0010361989656 -0.00237882853961 +UniRef50_H3USA6 0.00478524494577 0.00114184482882 -0.00364340011695 +UniRef50_UPI0003820DEC DNA binding protein 5.76808633565e-05 0.000330145169625 0.000272464306268 +UniRef50_D0WAX6 0.000173821309264 0.00176994996211 0.00159612865285 +UniRef50_C6NU33 DNA repair protein RadA 7.29874260036e-06 6.10225328375e-05 5.37237902371e-05 +UniRef50_D3EY08 0.00868313021052 0.000726188619325 -0.00795694159119 +UniRef50_J7TVX7 Integral membrane protein 0.000184790683319 4.15688804925e-05 -0.000143221802826 +UniRef50_A5IUD7 Phage transcriptional regulator, RinA family 0.0240077126472 0.00292464598326 -0.0210830666639 +UniRef50_A6Q5I8 Glutamate tRNA ligase 2 4.55477150107e-06 1.30156777978e-05 8.46090629673e-06 +UniRef50_Q1QJ73 0.000117090754681 3.20068933125e-05 -8.50838613685e-05 +UniRef50_Q3IVG4 Hemolysin type calcium binding protein 0.00363163566087 0.00100026594597 -0.0026313697149 +UniRef50_Q9AAL4 N succinylarginine dihydrolase 1 1.39343843814e-05 4.69487016485e-05 3.30143172671e-05 +UniRef50_Q223D6 ATP synthase subunit beta 1 2.38968077398e-05 5.63111242768e-05 3.2414316537e-05 +UniRef50_M1LNT9 ABC type metal ion transport system, periplasmic component surface adhesin 0.000387272504918 0.000406691331196 1.9418826278e-05 +UniRef50_B2TL84 Cyclic nucleotide binding domain protein 0.000189374241902 0.00383650078313 0.00364712654123 +UniRef50_UPI000361F512 hypothetical protein 1.66122576576e-05 1.31223973287e-05 -3.4898603289e-06 +UniRef50_B9C0V9 5.43776236324e-05 0.000578447554131 0.000524069930499 +UniRef50_J0EHT6 0.0284727798813 0.00625492954049 -0.0222178503408 +UniRef50_UPI00036BFB9E hypothetical protein 6.77397920763e-05 1.47148639922e-05 -5.30249280841e-05 +UniRef50_B9KQI2 0.00456910066061 0.0018191574448 -0.00274994321581 +UniRef50_P0A2U6 Zinc transport system ATP binding protein AdcC 0.00743395409295 0.0110868924 0.00365293830705 +UniRef50_D9SLD8 Fibronectin binding A domain protein 0.000275808980077 0.00208680996202 0.00181100098194 +UniRef50_UPI000248DBE4 multidrug transporter 3.53340808004e-06 0.0001220956294 0.00011856222132 +UniRef50_UPI0003B77FDC peptidyl tRNA hydrolase 1.78154991167e-05 4.4239483223e-05 2.64239841063e-05 +UniRef50_Q93YZ7 Acetolactate synthase small subunit 2, chloroplastic 1.87022389469e-05 0.000326351724296 0.000307649485349 +UniRef50_V7C557 2.43715819432e-05 8.28080739986e-07 -2.35435012032e-05 +UniRef50_A6LYZ3 0.000236872393028 0.000806912347246 0.000570039954218 +UniRef50_B0V8I1 0.000114044105391 0.00507037285646 0.00495632875107 +UniRef50_Q9FA52 Glucans biosynthesis glucosyltransferase H 0.00672991507532 0.00163025750352 -0.0050996575718 +UniRef50_Q6A910 Orotate phosphoribosyltransferase 2.86615951336e-05 0.00385141541149 0.00382275381636 +UniRef50_B5F1C0 Cysteine desulfurase IscS 0.00373632505104 0.00106969172297 -0.00266663332807 +UniRef50_A3M8T8 Phage integrase 0.000467559904254 0.00543028547724 0.00496272557299 +UniRef50_B4IVR0 GE15000 8.01456451903e-05 0.00012566668307 4.55210378797e-05 +UniRef50_D3QH80 Hydroxymethylglutaryl CoA reductase 0.0261247515505 0.00542510070036 -0.0206996508501 +UniRef50_D5BRV4 Binding protein dependent transport systems inner membrane component 0.0186131191613 0.0031797774973 -0.015433341664 +UniRef50_Q9K678 PTS system mannitol specific EIICB component 7.25565611933e-06 0.00155665267991 0.00154939702379 +UniRef50_Q1MHS1 Ribose import ATP binding protein RbsA 1 5.72047374741e-05 6.58279811933e-06 -5.06219393548e-05 +UniRef50_C1KWM3 3 phosphoshikimate 1 carboxyvinyltransferase 0.00672018972832 0.00678986082623 6.967109791e-05 +UniRef50_A3PN67 0.00505107074785 0.0021895732016 -0.00286149754625 +UniRef50_A4SIM5 Argininosuccinate synthase 3.53388418802e-06 6.84757887109e-05 6.49419045229e-05 +UniRef50_B7HEC5 SsrA binding protein 0.0366579350599 0.0056128352379 -0.031045099822 +UniRef50_Q7NCQ9 Valine tRNA ligase 3.2344464246e-06 2.61089678025e-06 -6.2354964435e-07 +UniRef50_Q2T8Y7 Probable chemoreceptor glutamine deamidase CheD 2 3.90630920259e-05 1.74103418452e-05 -2.16527501807e-05 +UniRef50_P95646 Anthranilate synthase component 1 0.00105112652862 0.00013832045875 -0.00091280606987 +UniRef50_UPI00047BA852 hypothetical protein 1.62657406834e-05 7.84398002079e-06 -8.42176066261e-06 +UniRef50_UPI00035E8084 hypothetical protein 2.30164997838e-05 4.28964192602e-06 -1.87268578578e-05 +UniRef50_Q0AQH3 Ribosomal RNA large subunit methyltransferase E 0.000330982315753 0.000102764576072 -0.000228217739681 +UniRef50_UPI0003C1AC12 PREDICTED 1.03607069794e-05 1.6649208032e-05 6.2885010526e-06 +UniRef50_B9KMC5 Transcriptional regulator, LysR family 0.00381060621614 0.000975993471022 -0.00283461274512 +UniRef50_UPI0002DED034 hypothetical protein 0.000182224950357 0.000210983997576 2.8759047219e-05 +UniRef50_UPI00047129D7 transposase 0.000102159962651 0.0172533378248 0.0171511778621 +UniRef50_UPI00036A3DAC hypothetical protein 8.8639502822e-05 4.14199314228e-05 -4.72195713992e-05 +UniRef50_Q6F9R1 Protoheme IX farnesyltransferase 7.70137112277e-06 0.0030296902406 0.00302198886948 +UniRef50_Q9UJM8 Hydroxyacid oxidase 1 5.03996479327e-06 0.000100104296414 9.50643316207e-05 +UniRef50_A6M2U7 Response regulator receiver sensor signal transduction histidine kinase 0.00070534543686 0.00120553686606 0.0005001914292 +UniRef50_A4WXL5 0.00457967202102 0.00101645984431 -0.00356321217671 +UniRef50_UPI0004790384 hypothetical protein 2.18716966552e-05 5.76142044956e-05 3.57425078404e-05 +UniRef50_UPI00037C9F17 hypothetical protein 0.00122371667986 0.000257609826611 -0.000966106853249 +UniRef50_G0HE81 Alcohol dehydrogenase 0.00017184491147 0.00616768952251 0.00599584461104 +UniRef50_C4Y1J5 Isocitrate dehydrogenase, mitochondrial 0.000357524976554 0.000136514626931 -0.000221010349623 +UniRef50_A0A038FV36 3.81163807889e-05 2.56416453118e-05 -1.24747354771e-05 +UniRef50_UPI0002F90E7D hypothetical protein 2.02275777247e-05 0.00109304893085 0.00107282135313 +UniRef50_C8WIL3 2 nitropropane dioxygenase NPD 0.000353447267603 0.00630030521259 0.00594685794499 +UniRef50_O29329 Putative branched chain amino acid aminotransferase 0.000129646082167 3.09431216509e-05 -9.87029605161e-05 +UniRef50_UPI00036F30A5 hypothetical protein 1.6177650991e-05 3.76971102985e-05 2.15194593075e-05 +UniRef50_M1MI89 Sensor histidine kinase YesM 0.000364378607423 0.00174270182161 0.00137832321419 +UniRef50_A3M8H3 Chemotactic signal transduction system component 0.000187178460387 0.00735889845319 0.0071717199928 +UniRef50_UPI0001FFE87D ABC type Fe3+ transport system, periplasmic component 0.000110952463117 8.22955941343e-05 -2.86568689827e-05 +UniRef50_UPI0003807E5F hypothetical protein, partial 0.00095642428546 0.107632591229 0.106676166944 +UniRef50_UPI0003B5D592 adenylosuccinate synthetase 2.63329123836e-05 2.41355870463e-05 -2.1973253373e-06 +UniRef50_Q6MCV4 Spermidine putrescine import ATP binding protein PotA 0.000150905353334 6.06413392275e-05 -9.02640141065e-05 +UniRef50_UPI000475EAAA epimerase 6.45370730131e-06 4.21705017338e-05 3.57167944325e-05 +UniRef50_M9SCU9 0.000329202897256 0.000228927678448 -0.000100275218808 +UniRef50_F7P1G2 4.94770542113e-05 3.0174299474e-05 -1.93027547373e-05 +UniRef50_UPI0001BC2D8F putative enterobactin synthetase component A 5.25925959356e-06 1.19258930283e-05 6.66663343474e-06 +UniRef50_R0P3C6 Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain 0.012543489925 0.042977778887 0.030434288962 +UniRef50_Q02KY6 0.00321364903152 0.00819906267417 0.00498541364265 +UniRef50_Q2GL45 30S ribosomal protein S8 0.00441245341561 0.00138709361531 -0.0030253598003 +UniRef50_A7ZLN4 ABC transporter, ATP binding protein 0.00173059899336 0.000355150487929 -0.00137544850543 +UniRef50_G8LHY7 0.00411827725455 0.0011937024265 -0.00292457482805 +UniRef50_W4KP08 0.000104639966869 3.86495865146e-05 -6.59903803544e-05 +UniRef50_C5C7X4 Chromosomal replication initiator protein DnaA 0.000152941569257 0.00583511166666 0.0056821700974 +UniRef50_UPI00047B2DE4 hypothetical protein 1.51936233275e-06 2.30705803702e-05 2.15512180375e-05 +UniRef50_UPI00036A72D9 hypothetical protein 8.16615648056e-05 5.83553331655e-05 -2.33062316401e-05 +UniRef50_P39308 0.00309831995768 0.000246097254331 -0.00285222270335 +UniRef50_Q7MT94 Tryptophan tRNA ligase 7.75801686278e-06 6.37280228483e-06 -1.38521457795e-06 +UniRef50_A0A023RUT4 NADH 9.29768445451e-05 0.00788419021807 0.00779121337352 +UniRef50_S6P0Z4 ABC transporter permease 0.000100355053352 7.23019300995e-05 -2.80531232525e-05 +UniRef50_A5UKM7 Protein disulfide isomerase, thioredoxin related 0.0116263031349 0.00226415187466 -0.00936215126024 +UniRef50_V2DIK3 3.35413986389e-05 3.09888708567e-05 -2.5525277822e-06 +UniRef50_P83221 Peptidyl prolyl cis trans isomerase cyp18 0.000260335164724 0.00122422355603 0.000963888391306 +UniRef50_UPI0003B343E5 imidazoleglycerol phosphate dehydratase 0.000113767503552 2.32338350358e-05 -9.05336685162e-05 +UniRef50_Q2YTP0 2 succinylbenzoate CoA ligase 0.0088624456869 0.00124339747476 -0.00761904821214 +UniRef50_A0A017HIG9 4.7770840459e-05 1.16712820749e-05 -3.60995583841e-05 +UniRef50_Q6CX23 Glyceraldehyde 3 phosphate dehydrogenase 2 5.00631177316e-05 1.72323339307e-05 -3.28307838009e-05 +UniRef50_G2TA75 TRAP transporter solute receptor TAXI family protein 0.000107399778315 9.74206972388e-06 -9.76577085911e-05 +UniRef50_UPI000477C7AD DNA gyrase subunit A 2.45962173019e-06 4.24370695408e-06 1.78408522389e-06 +UniRef50_UPI0003B4541A coproporphyrinogen III oxidase 8.51794744736e-06 9.47936903594e-06 9.6142158858e-07 +UniRef50_Q8DVU8 Putative hydrolase SMU_367 0.00280682047299 0.00155719042023 -0.00124963005276 +UniRef50_UPI00035C6E64 hypothetical protein, partial 1.90868809566e-05 0.000202376363391 0.000183289482434 +UniRef50_UPI00016AE124 glycosyltransferase family 4 1.02923970582e-05 2.7818279007e-05 1.75258819488e-05 +UniRef50_Q6A7G2 Conserved membrane protein 0.000264592982837 0.00545241360452 0.00518782062168 +UniRef50_M0CR54 PKD domain containing protein 3.95926742616e-06 3.61637838177e-06 -3.4288904439e-07 +UniRef50_Q46891 Putative hydroxypyruvate isomerase YgbM 0.00344280515231 0.00118621754893 -0.00225658760338 +UniRef50_O34718 Major myo inositol transporter IolT 0.000395104281576 0.00189983605869 0.00150473177711 +UniRef50_D8GNL4 Dihydrodipicolinate synthase 0.000881676249207 0.00175470218562 0.000873025936413 +UniRef50_UPI000304D536 hypothetical protein 1.44428921972e-05 1.29567811985e-05 -1.4861109987e-06 +UniRef50_UPI000471E9C0 hypothetical protein 4.08836139677e-05 0.000194630009402 0.000153746395434 +UniRef50_A6M1I0 Extracellular solute binding protein, family 3 0.000256357290153 0.00261415192231 0.00235779463216 +UniRef50_A0QUX7 Acetolactate synthase small subunit 3.74335187026e-05 0.000640449166123 0.00060301564742 +UniRef50_Q1M3I8 0.00417888188414 0.000199763272963 -0.00397911861118 +UniRef50_J9G6J0 Membrane protein 8.5861223467e-05 0.00215981620182 0.00207395497835 +UniRef50_UPI000365FCDF hypothetical protein 4.04327578996e-05 1.95363742338e-05 -2.08963836658e-05 +UniRef50_UPI000308E21F tail fiber protein 2.74944922881e-06 8.94109517698e-06 6.19164594817e-06 +UniRef50_B9KVR5 Cobyrinate a,c diamide synthase hydrogenobyrinic acid a,c diamide synthase 5.87760757658e-06 8.69077452561e-05 8.10301376795e-05 +UniRef50_UPI00047054EB hypothetical protein 7.43970942223e-05 5.43977524304e-05 -1.99993417919e-05 +UniRef50_UPI0003792A51 hypothetical protein 2.07699054691e-06 1.41522606495e-05 1.20752701026e-05 +UniRef50_I4YZ70 Integral membrane protein MviN 3.69631303844e-05 2.90818763095e-05 -7.8812540749e-06 +UniRef50_A8FIC1 Serine hydroxymethyltransferase 0.000127489980519 0.000166760288553 3.9270308034e-05 +UniRef50_D8JKE9 Outer membrane porin protein 0.000232297985442 0.00862024098171 0.00838794299627 +UniRef50_UPI000369E2AC hypothetical protein 1.22888122016e-05 1.68311188226e-05 4.542306621e-06 +UniRef50_F0RQZ2 ABC type transporter, periplasmic subunit 3.22008348285e-06 3.87402221705e-05 3.55201386876e-05 +UniRef50_Q8CRR5 0.0119267904035 0.00347297129013 -0.00845381911337 +UniRef50_UPI000473A232 amino acid ABC transporter permease 5.55050411192e-05 7.47240347728e-05 1.92189936536e-05 +UniRef50_U5NMU5 0.0143920291139 0.00254724299656 -0.0118447861173 +UniRef50_U5NMU8 0.0059355935752 0.00288375786677 -0.00305183570843 +UniRef50_R6GNA7 Peptidoglycan binding LysM 0.000346112355382 0.00232851979323 0.00198240743785 +UniRef50_A5WCM3 Peptidoglycan binding LysM 0.000241462252992 0.00534092944532 0.00509946719233 +UniRef50_D0DDK5 0.00210084356972 0.000337474609877 -0.00176336895984 +UniRef50_Q26HR0 0.000299429818387 0.000382737424664 8.3307606277e-05 +UniRef50_V4KQA6 Oxidoreductase 5.49837193262e-05 0.000304078364772 0.000249094645446 +UniRef50_M9S8V5 Oxidoreductase 8.85424524313e-05 0.000143823070714 5.52806182827e-05 +UniRef50_UPI00037B160E hypothetical protein 6.21887955241e-05 1.15010309726e-05 -5.06877645515e-05 +UniRef50_C6SJ34 Prephenate dehydrogenase 0.000413772243308 0.00261093735615 0.00219716511284 +UniRef50_UPI0003A88B86 ATPase 4.87784573465e-06 2.87074446075e-06 -2.0071012739e-06 +UniRef50_B5F4R2 NADPH dependent 7 cyano 7 deazaguanine reductase 0.00457981763693 0.000702762717764 -0.00387705491917 +UniRef50_P50252 Adenosylhomocysteinase 0.00318206327514 0.000519979206723 -0.00266208406842 +UniRef50_C5N5T0 Bacteriocin biosynthesis cyclodehydratase, SagC family 0.00789438749373 0.00385380281108 -0.00404058468265 +UniRef50_Q7VG78 Probable GMP synthase [glutamine hydrolyzing] 1.45641272358e-05 1.5552333429e-05 9.882061932e-07 +UniRef50_Q6FCS8 ATP phosphoribosyltransferase regulatory subunit 0.000117596881266 0.0106861048564 0.0105685079751 +UniRef50_Q3ZXA9 Peptide deformylase 2.27385940213e-05 6.05781521844e-05 3.78395581631e-05 +UniRef50_UPI0003958315 PREDICTED 5.19507593474e-05 3.70690726827e-05 -1.48816866647e-05 +UniRef50_UPI00030811AD hypothetical protein 1.01575844376e-05 3.70410502223e-05 2.68834657847e-05 +UniRef50_F6G330 NADPH 0.000180615305666 0.000368410671781 0.000187795366115 +UniRef50_A0A024JQL9 Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit 2.0824653991e-05 6.17305624286e-05 4.09059084376e-05 +UniRef50_P29922 NADH quinone oxidoreductase chain 10 0.000316720518374 7.63170756914e-05 -0.000240403442683 +UniRef50_X2HFC0 Electron transport complex protein RnfB 0.000587783848974 0.00124088424906 0.000653100400086 +UniRef50_UPI000477E177 hypothetical protein 7.85384613765e-05 2.59707217722e-05 -5.25677396043e-05 +UniRef50_O67012 Guanosine 3,5 bis 3 pyrophosphohydrolase 4.64553250333e-06 2.87446146447e-06 -1.77107103886e-06 +UniRef50_UPI00047897DA xanthine permease 1.26424488597e-06 8.00957878646e-05 7.88315429786e-05 +UniRef50_A6M0Q8 Periplasmic binding protein LacI transcriptional regulator 0.00037065852589 0.00124342965031 0.00087277112442 +UniRef50_D2JDC8 0.0569698015977 0.0107849684656 -0.0461848331321 +UniRef50_B8HGC5 Acetylglutamate kinase 4.78547149843e-05 1.67475798044e-05 -3.11071351799e-05 +UniRef50_UPI000360FD52 acetyl CoA carboxylase carboxyl transferase subunit alpha 7.42548437424e-06 3.23382240376e-05 2.49127396634e-05 +UniRef50_UPI0003C369DA 4.4264125206e-07 1.3328195886e-05 1.28855546339e-05 +UniRef50_D9SL48 Extracellular solute binding protein family 1 0.000203935256531 0.00135425872638 0.00115032346985 +UniRef50_Q8CPL9 Lipoprotein VsaC 0.00784270126571 0.00282553854699 -0.00501716271872 +UniRef50_P25084 Transcriptional activator protein LasR 0.000511082280691 0.000249212409446 -0.000261869871245 +UniRef50_C0ZBE7 Deoxyadenosine deoxycytidine kinase 0.00858121638011 0.000561653906887 -0.00801956247322 +UniRef50_UPI0003B3EDEC ketol acid reductoisomerase 3.44636184566e-06 6.60663715874e-06 3.16027531308e-06 +UniRef50_UPI0003655A5A hypothetical protein 3.2591751867e-05 1.41151778963e-05 -1.84765739707e-05 +UniRef50_A0A023VR15 0.00382509961169 0.00154359420418 -0.00228150540751 +UniRef50_A6UB50 CreA family protein 0.000355370959716 0.00018831296088 -0.000167057998836 +UniRef50_UPI0003FA4F40 hypothetical protein 4.98863595587e-05 2.33599765602e-05 -2.65263829985e-05 +UniRef50_E6N0G1 Cell division protein ZipA 0.000352054485057 0.00259589369247 0.00224383920741 +UniRef50_Q6N8F8 Formyl coenzyme A transferase 0.00289590993037 0.000577098329252 -0.00231881160112 +UniRef50_Q65Q81 5 nucleotidase SurE 0.00123296781655 0.00026565220857 -0.00096731560798 +UniRef50_G2DGI6 Proton translocating NADH quinone oxidoreductase, chain M 1.59955918616e-05 3.58023446094e-05 1.98067527478e-05 +UniRef50_UPI00046F0142 MULTISPECIES 4.9556509195e-06 8.01157740131e-06 3.05592648181e-06 +UniRef50_Q5HRH4 Putative long chain fatty acid CoA ligase VraA 0.010046404653 0.003066499627 -0.006979905026 +UniRef50_UPI0003C1970F PREDICTED 4.3565678018e-06 1.01824494263e-05 5.8258816245e-06 +UniRef50_D2JC88 0.00274260153085 0.000386581595083 -0.00235601993577 +UniRef50_P30131 Carbamoyltransferase HypF 0.00188933468516 0.000253397898209 -0.00163593678695 +UniRef50_UPI00037CE6E8 hypothetical protein 3.1712093455e-05 8.33912385247e-05 5.16791450697e-05 +UniRef50_H8H0T6 ABC type Fe3+ siderophore transport system, periplasmic component 5.00401948346e-05 0.0121619189773 0.0121118787825 +UniRef50_G5QK83 Transcription repair coupling factor 1.98278394162e-05 4.95979438203e-05 2.97701044041e-05 +UniRef50_W1YIT0 5.22816770188e-05 2.19216543551e-05 -3.03600226637e-05 +UniRef50_P56908 NADH quinone oxidoreductase subunit D 2 1.53916116559e-05 4.06178214954e-05 2.52262098395e-05 +UniRef50_Q5F6M1 Cell division protein FtsQ 0.000155985945804 0.00164425241496 0.00148826646916 +UniRef50_X8N4L8 Putative lipoprotein 0.000109583671999 0.00102929777806 0.000919714106061 +UniRef50_C6CTD5 Glycosyl transferase family 2 0.000166783205682 0.00126515309275 0.00109836988707 +UniRef50_Q1IKB4 Imidazoleglycerol phosphate dehydratase 0.000174690371268 5.58775551211e-05 -0.000118812816147 +UniRef50_UPI000349BE1A hypothetical protein 1.75130162644e-07 1.32946712678e-06 1.15433696414e-06 +UniRef50_A6LZ95 0.000862049552083 0.00179738736202 0.000935337809937 +UniRef50_X6GZW0 6.42653548763e-05 5.08109691414e-05 -1.34543857349e-05 +UniRef50_P0AC77 3 deoxy D manno octulosonic acid transferase 0.00205425422367 0.000441164308773 -0.0016130899149 +UniRef50_UPI0002E36CA8 hypothetical protein 4.39002915566e-05 0.000132802502467 8.89022109104e-05 +UniRef50_UPI00037A380E hypothetical protein 0.00010536512412 0.00177688041526 0.00167151529114 +UniRef50_A0A023VMY7 Peptidase M16 0.00755958782603 0.00341911950191 -0.00414046832412 +UniRef50_O83806 Tyrosine tRNA ligase 2.51273111992e-05 1.21985504666e-05 -1.29287607326e-05 +UniRef50_Q5F5C4 Thiazole synthase 0.000143895548483 0.00219247396442 0.00204857841594 +UniRef50_UPI0004679209 hypothetical protein 6.49497301643e-06 1.89181844318e-05 1.24232114154e-05 +UniRef50_T1D567 Thiamine biosynthesis protein ThiC 1.19925264764e-05 5.14889209919e-05 3.94963945155e-05 +UniRef50_UPI0003345F86 2.41069267881e-05 3.14305163161e-05 7.323589528e-06 +UniRef50_A5W3L7 Short chain fatty acid transporter 0.000624552368801 0.00734387794309 0.00671932557429 +UniRef50_Q59966 Cysteine synthase, plasmid 0.0346076975164 0.0119846152909 -0.0226230822255 +UniRef50_UPI0003C1981F 1.65900017103e-05 1.62767901832e-05 -3.132115271e-07 +UniRef50_E4U6C3 Extracellular solute binding protein family 1 1.47422429993e-05 5.44840033952e-06 -9.29384265978e-06 +UniRef50_UPI0002BCBF5F PREDICTED 7.04766363345e-05 0.000728332780576 0.000657856144241 +UniRef50_U5MSM7 Metallophosphoesterase 0.000336454474477 0.00119069431316 0.000854239838683 +UniRef50_M4HRQ0 Radical SAM protein, TIGR01212 family 2.572993583e-05 0.00227005879318 0.00224432885735 +UniRef50_E0SZG6 Transcriptional regulator 0.00469262597334 0.00545795093686 0.00076532496352 +UniRef50_Q0ARN8 Peptidyl tRNA hydrolase 4.33627225589e-05 5.95856346201e-05 1.62229120612e-05 +UniRef50_A4WR48 0.000210886027289 0.000287179940213 7.6293912924e-05 +UniRef50_UPI000371F47B hypothetical protein 3.82422628007e-05 2.23627205449e-05 -1.58795422558e-05 +UniRef50_I4CC90 CRISPR associated helicase, Cas3 family 5.69566866217e-05 3.46025070634e-05 -2.23541795583e-05 +UniRef50_T6MH84 Flagellar P ring protein 0.000950293626516 0.000528546110857 -0.000421747515659 +UniRef50_M4MLW3 9.54252696068e-05 0.000143818702005 4.83934323982e-05 +UniRef50_A7ZJK9 0.00125700249557 0.000296360674957 -0.000960641820613 +UniRef50_UPI0003B57AFE amino acid permease 7.48046472609e-05 9.94530932053e-06 -6.48593379404e-05 +UniRef50_K2IJJ6 1.60631681879e-05 4.46391767117e-05 2.85760085238e-05 +UniRef50_A0A020BC98 6.02910244569e-05 9.82432910949e-05 3.7952266638e-05 +UniRef50_G7MBK8 Membrane protein insertase, YidC Oxa1 family 0.00133087049941 0.000248165298485 -0.00108270520092 +UniRef50_P75892 Putative pyrimidine permease RutG 0.00330732105326 0.00206254641343 -0.00124477463983 +UniRef50_V9C5G3 Siderophore interacting protein 2.08384642706e-05 0.00124427150844 0.00122343304417 +UniRef50_Q9X049 Glycerol kinase 1 4.99426087346e-06 3.57545530227e-05 3.07602921492e-05 +UniRef50_UPI00037DACA5 hypothetical protein 6.02285774518e-06 5.27697508748e-06 -7.458826577e-07 +UniRef50_O27185 tRNA 2 O) methyltransferase 0.0010861917943 0.00129335783297 0.00020716603867 +UniRef50_UPI00016B0688 hypothetical protein 0.00107378329079 0.000429466412809 -0.000644316877981 +UniRef50_Q01813 ATP dependent 6 phosphofructokinase, platelet type 2.47064795248e-06 6.15879097001e-06 3.68814301753e-06 +UniRef50_O27290 Inosine 5 monophosphate dehydrogenase related protein I 0.00414267154563 0.00113335169169 -0.00300931985394 +UniRef50_P42257 Protein PilJ 0.00127270379668 0.000503654477282 -0.000769049319398 +UniRef50_D3S395 Transcription initiation factor IIB 0.0036064183301 0.000393755606923 -0.00321266272318 +UniRef50_UPI00047856BF hypothetical protein 4.35366086939e-05 1.26007859943e-05 -3.09358226996e-05 +UniRef50_W6VG46 Rhamnan synthesis F 3.3449132147e-06 4.83064835637e-06 1.48573514167e-06 +UniRef50_G9ZUA1 7.23508264674e-05 2.11909206089e-05 -5.11599058585e-05 +UniRef50_UPI0003B470E0 50S ribosomal protein L17 3.47972979099e-05 8.31891848431e-05 4.83918869332e-05 +UniRef50_L7WUL7 Lipoprotein 0.0123025207035 0.00227843138154 -0.010024089322 +UniRef50_D2ZVP2 0.000506612912954 0.00397616746141 0.00346955454846 +UniRef50_Q6A997 Chaperone protein DnaJ 1 0.000126815001857 0.00678716247069 0.00666034746883 +UniRef50_UPI0003F7FC45 hypothetical protein 5.72471591344e-05 1.90041962255e-05 -3.82429629089e-05 +UniRef50_UPI0003B6D4D5 xylose ABC transporter permease 5.58806145186e-05 1.02786558302e-05 -4.56019586884e-05 +UniRef50_M2CG06 5.87558626368e-06 3.87171584793e-05 3.28415722156e-05 +UniRef50_Q6F9L9 0.000270276364337 0.00678174997168 0.00651147360734 +UniRef50_A3DLR9 Succinyl CoA ligase [ADP forming] subunit beta 3.27775039419e-06 1.19765096264e-05 8.69875923221e-06 +UniRef50_W8YZG7 0.000160533307226 0.000267010082269 0.000106476775043 +UniRef50_J7IXF3 Response regulator with CheY like receiver domain and winged helix DNA binding domain 0.000239927535287 0.000783394479633 0.000543466944346 +UniRef50_V7WI05 0.000450696683096 0.000203993841276 -0.00024670284182 +UniRef50_J3MZQ8 1.61293785772e-05 9.61214321516e-05 7.99920535744e-05 +UniRef50_G7U7Y1 0.000107240337745 0.00583301223217 0.00572577189442 +UniRef50_A6LU93 Anthranilate phosphoribosyltransferase 0.00060201007552 0.000401678089584 -0.000200331985936 +UniRef50_W0YKM5 0.000309230134126 0.00030100653912 -8.223595006e-06 +UniRef50_U6AG49 7.80819072667e-05 0.000249037811538 0.000170955904271 +UniRef50_UPI0003756A18 hypothetical protein 9.71051588642e-06 4.51275285751e-05 3.54170126887e-05 +UniRef50_UPI0003B48EBA N acetyltransferase, partial 2.9700108917e-05 2.13314846569e-05 -8.3686242601e-06 +UniRef50_T0IVY5 7.24075375954e-05 0.000114094355758 4.16868181626e-05 +UniRef50_R4ZTG2 0.000789863938504 0.000682699793449 -0.000107164145055 +UniRef50_Q42588 Serine acetyltransferase 1, chloroplastic 6.21393176088e-06 8.26801670768e-06 2.0540849468e-06 +UniRef50_G9EEV4 5.99445062936e-05 7.37161033597e-05 1.37715970661e-05 +UniRef50_F3U4V4 ATPase, ParA type 0.000278443466986 9.61737589345e-05 -0.000182269708052 +UniRef50_P30958 Transcription repair coupling factor 0.00363054992439 0.00148371706116 -0.00214683286323 +UniRef50_A1BAH6 MOSC domain containing protein 0.0040525585453 0.000263283838205 -0.0037892747071 +UniRef50_UPI00046767C0 HupU protein 7.45372396894e-05 7.50634147267e-06 -6.70308982167e-05 +UniRef50_C5N074 Cof like hydrolase 0.0222525068775 0.0041379937165 -0.018114513161 +UniRef50_N6UD17 0.000621030517749 0.000255906513856 -0.000365124003893 +UniRef50_A0A011NGP1 2.01571717711e-05 7.42181222794e-06 -1.27353595432e-05 +UniRef50_E8X2E5 ParB like partition protein 9.85648772518e-05 2.02548358698e-05 -7.8310041382e-05 +UniRef50_Q9HZ68 Histidinol phosphate aminotransferase 2 0.000995787577032 0.00023688505764 -0.000758902519392 +UniRef50_A6M204 Glycoside hydrolase, family 1 0.000511980745415 0.000917963895707 0.000405983150292 +UniRef50_Q835V5 Ribonuclease HIII 2.45482166667e-05 0.000389857036561 0.000365308819894 +UniRef50_H1S0G1 7.33238463562e-05 9.77300272533e-06 -6.35508436309e-05 +UniRef50_D4H9Y2 Biotin biosynthesis bifunctional protein BioWF 0.000197856627519 0.00615518034056 0.00595732371304 +UniRef50_UPI000474CF85 hypothetical protein, partial 8.90064393496e-05 0.000216455541661 0.000127449102311 +UniRef50_P37339 L 2 hydroxyglutarate oxidase LhgO 0.00462627746075 0.00195593258028 -0.00267034488047 +UniRef50_B9KQG5 Flagellar hook associated protein 0.00589234238184 0.000958933518391 -0.00493340886345 +UniRef50_D2NAF2 Regulatory protein 0.0123386445561 0.00209033726046 -0.0102483072956 +UniRef50_D8TNG9 3.06225931636e-06 2.61971986532e-05 2.31349393368e-05 +UniRef50_J9P0I4 6.43187242682e-05 5.79016073866e-05 -6.4171168816e-06 +UniRef50_P39071 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 1.77479751666e-05 0.00126118663396 0.00124343865879 +UniRef50_Q4L933 Poly gamma glutamate synthesis protein PgsA 0.00626519481821 0.00247545954349 -0.00378973527472 +UniRef50_H5YRD9 1.45442409681e-05 0.000267889152911 0.000253344911943 +UniRef50_UPI00036B457B hypothetical protein 0.000183962024756 1.23057383108e-05 -0.000171656286445 +UniRef50_UPI000456173C hypothetical protein PFL1_01203 1.23178275527e-05 4.09633398965e-06 -8.22149356305e-06 +UniRef50_B5F769 Bis tetraphosphatase, symmetrical 0.00162915062011 0.000289053871314 -0.0013400967488 +UniRef50_M5R4A6 4.98739118753e-05 8.3145433685e-05 3.32715218097e-05 +UniRef50_U3SRI3 0.00379923911363 0.00061064582018 -0.00318859329345 +UniRef50_A0A038G9V0 Protein ImpB 2.81467911798e-05 0.000608900423076 0.000580753631896 +UniRef50_Q6GE71 0.00497869070783 0.000432170788082 -0.00454651991975 +UniRef50_E7TI03 0.00123246923771 0.000916047830981 -0.000316421406729 +UniRef50_B8HSV8 Anti sigma factor antagonist 2.54664438906e-05 0.00147831862885 0.00145285218496 +UniRef50_B0V9D5 3 deoxy D manno 2 octulosonate transferase 0.000290605900796 0.00577623961588 0.00548563371508 +UniRef50_E7TI06 0.00014122141653 1.82236632765e-05 -0.000122997753254 +UniRef50_C5BD16 Adenylate kinase 1.86127176124e-05 2.86360223214e-05 1.0023304709e-05 +UniRef50_Q8EUX2 Tyrosine tRNA ligase 1.65770545675e-05 1.61193772954e-05 -4.576772721e-07 +UniRef50_Q3YS21 Acetylglutamate kinase 3.27748217265e-05 1.60187911439e-05 -1.67560305826e-05 +UniRef50_I7AAC7 0.000631479564446 0.00026725493682 -0.000364224627626 +UniRef50_Q8DTN6 Probable bifunctional oligoribonuclease and PAP phosphatase NrnA 0.00472091204095 0.00620055847535 0.0014796464344 +UniRef50_UPI0003B4C1BA ATPase AAA 1.11797175224e-05 5.88394939887e-06 -5.29576812353e-06 +UniRef50_Q8XU11 Potassium transporting ATPase B chain 0.0121782519392 0.0202568300757 0.0080785781365 +UniRef50_A3PPK7 Amidohydrolase 2 0.00996544692966 0.000699412800539 -0.00926603412912 +UniRef50_U3AFY8 0.000788720795864 0.000174317901624 -0.00061440289424 +UniRef50_B2A8E3 Argininosuccinate lyase 1.68696946162e-05 2.04669242123e-05 3.5972295961e-06 +UniRef50_D8JIY9 AraC type DNA binding domain containing protein 0.000373201600826 0.00487052294765 0.00449732134682 +UniRef50_UPI0003783041 hypothetical protein 2.40226199582e-05 0.00014919005704 0.000125167437082 +UniRef50_UPI000471FB1B sodium 5.0251821728e-05 1.31269630018e-05 -3.71248587262e-05 +UniRef50_UPI00040DE95E sodium 4.20559605918e-06 8.05548078333e-06 3.84988472415e-06 +UniRef50_A4IM35 Dihydroorotate dehydrogenase B ), catalytic subunit 0.000419409410863 0.0103997236431 0.00998031423224 +UniRef50_P77269 ABC transporter periplasmic binding protein YphF 0.00167241206415 0.0013807022778 -0.00029170978635 +UniRef50_UPI00036C797A hypothetical protein 5.58052568019e-05 2.94819464866e-05 -2.63233103153e-05 +UniRef50_A6LWR6 MgtC SapB transporter 0.000295680931211 0.00178193241284 0.00148625148163 +UniRef50_D3DZA0 Amidohydrolase 0.00270099520593 0.000358450948281 -0.00234254425765 +UniRef50_B4RE78 0.00018014106638 0.000103196878372 -7.6944188008e-05 +UniRef50_A4WQR7 0.000269947603827 0.000107964082565 -0.000161983521262 +UniRef50_A6LSY8 Glutamate 1 semialdehyde 2,1 aminomutase 0.000329481214735 0.000708222307583 0.000378741092848 +UniRef50_S5CRD4 Integrase 0.000134977111625 0.00869283693492 0.00855785982329 +UniRef50_Q8HXP0 Superoxide dismutase [Mn], mitochondrial 1.11964780701e-05 0.000105648254501 9.44517764309e-05 +UniRef50_W1S795 6.5972310955e-05 3.84146952516e-05 -2.75576157034e-05 +UniRef50_Q080M3 7.39870414414e-06 1.13236507714e-05 3.92494662726e-06 +UniRef50_UPI0003D0B013 PREDICTED 4.09420833841e-05 1.86812191241e-05 -2.226086426e-05 +UniRef50_Q7DDB6 Probable TonB dependent receptor NMB1497 0.000170213385665 0.00305950151367 0.002889288128 +UniRef50_P64618 0.000442366393186 0.00196393479223 0.00152156839904 +UniRef50_R5CFG0 0.00131404045591 0.00160837294848 0.00029433249257 +UniRef50_UPI0003778CA4 hypothetical protein 2.69609134496e-05 1.53744904784e-05 -1.15864229712e-05 +UniRef50_UPI000368AAAC peptidase, partial 2.92983181078e-05 4.36259648942e-05 1.43276467864e-05 +UniRef50_Q5Z642 HGWP repeat containing protein like 9.97465753967e-06 0.000119915294134 0.000109940636594 +UniRef50_Q7MF00 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 1.64317244814e-05 2.4527920221e-05 8.0961957396e-06 +UniRef50_UPI0002E5A819 hypothetical protein 4.36599250203e-06 1.52185887203e-05 1.08525962183e-05 +UniRef50_A0QVM6 8.97787910502e-05 6.13073859284e-05 -2.84714051218e-05 +UniRef50_O80952 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1, chloroplastic 7.40308505778e-06 3.20665505708e-05 2.4663465513e-05 +UniRef50_I7G695 2.09311020502e-05 4.45865165986e-05 2.36554145484e-05 +UniRef50_Q9RYR4 0.000319243274761 0.00258484739038 0.00226560411562 +UniRef50_UPI0003751DCE hypothetical protein 3.46878467194e-06 1.34068021112e-05 9.93801743926e-06 +UniRef50_Q3MEA8 GMP synthase [glutamine hydrolyzing] 2.39775515625e-05 3.09801741047e-05 7.0026225422e-06 +UniRef50_D9UIH8 Predicted protein 0.000241594708843 0.0016939274376 0.00145233272876 +UniRef50_P76204 Putative anti FlhCFlhD(4) factor YdiV 0.00268031481586 0.00091214826715 -0.00176816654871 +UniRef50_UPI00036659B6 hypothetical protein 3.33943524372e-06 5.320815443e-06 1.98138019928e-06 +UniRef50_R5BWI2 0.000849945705849 0.00488191564993 0.00403196994408 +UniRef50_UPI000468EFA0 hypothetical protein 5.63097827598e-06 3.99339378013e-06 -1.63758449585e-06 +UniRef50_UPI00035D659D hypothetical protein 5.97632234076e-06 1.21343746146e-05 6.15805227384e-06 +UniRef50_UPI000455EDC7 ribosomal protein L2 2.34099769927e-05 0.000120717070306 9.73070933133e-05 +UniRef50_UPI0003045834 hypothetical protein 6.99396876295e-06 7.44594416422e-05 6.74654728792e-05 +UniRef50_Q88TV5 Tyrosine tRNA ligase 0.0292305852207 0.0188629680503 -0.0103676171704 +UniRef50_P75764 0.00256561660799 0.000272214844857 -0.00229340176313 +UniRef50_P75769 0.0017645533705 0.000309772767695 -0.0014547806028 +UniRef50_Q6G6F1 D lactate dehydrogenase 0.0148475575884 0.00408244967367 -0.0107651079147 +UniRef50_E6S2D5 0.000169298209736 0.0030970951449 0.00292779693516 +UniRef50_A5UCW1 UPF0042 nucleotide binding protein CGSHiEE_06315 0.00235296626673 0.00112980999072 -0.00122315627601 +UniRef50_F2I802 Response regulator receiver domain protein 0.0187303305754 0.00699612634655 -0.0117342042288 +UniRef50_Q2NIC5 ORC1 type DNA replication protein 0.00368145545877 0.000639649954385 -0.00304180550438 +UniRef50_UPI00026291DF excinuclease ABC subunit A 9.25903811014e-06 2.30567272821e-05 1.3797689172e-05 +UniRef50_Q16CW9 Lipopolysaccharide 1,3 galactosyltransferase, putative 0.0148691640696 0.0024949880301 -0.0123741760395 +UniRef50_U3T279 Amidohydrolase 0.000597094277823 0.00985021506034 0.00925312078252 +UniRef50_F2E8D4 Predicted protein 0.000182470265724 0.000186869668477 4.399402753e-06 +UniRef50_B0TC61 50S ribosomal protein L22 0.0416162198954 0.00268584865685 -0.0389303712385 +UniRef50_Q9K0U7 Putative phospholipase A1 0.000105051759422 0.00277292916969 0.00266787741027 +UniRef50_Q13DH5 Transcriptional regulator, LysR family 0.00285819681324 0.00071466704907 -0.00214352976417 +UniRef50_C5BQ83 30S ribosomal protein S13 0.00460396557604 0.00345950110368 -0.00114446447236 +UniRef50_S9THQ0 0.000144396909606 0.000193438889871 4.9041980265e-05 +UniRef50_A6QF95 0.0110584938544 0.000671174329992 -0.0103873195244 +UniRef50_P64246 Probable glutamine synthetase 2 0.000429784776661 0.00833590896681 0.00790612419015 +UniRef50_A5VI99 Cysteine tRNA ligase 0.0352152559888 0.0182607398788 -0.01695451611 +UniRef50_G8PIV9 Universal stress protein 0.0191942146693 0.00862881371594 -0.0105654009534 +UniRef50_G7MBZ4 PTS system transcriptional activator 0.000696719322904 0.00151277335215 0.000816054029246 +UniRef50_B5F752 Crotonobetainyl CoA dehydrogenase 0.00350275358721 0.00073198058343 -0.00277077300378 +UniRef50_X5EJB2 DNA polymerase III, delta subunit 0.0172985790258 0.00223254125179 -0.015066037774 +UniRef50_UPI000467516D hypothetical protein 8.35869649707e-06 0.000147560048276 0.000139201351779 +UniRef50_Q8E2G3 Phosphoribosylformylglycinamidine synthase, putative 0.00721167366097 0.00300817506583 -0.00420349859514 +UniRef50_I4DYY6 3 ketoacyl reductase 0.000162709477954 0.00573196984085 0.0055692603629 +UniRef50_J9P2V2 1.80202225123e-05 8.91453557969e-06 -9.10568693261e-06 +UniRef50_I1AVP4 9.70395219062e-05 2.727879331e-05 -6.97607285962e-05 +UniRef50_P27747 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 1.33422613503e-05 7.27484456797e-06 -6.06741678233e-06 +UniRef50_UPI0003B5A625 TetR family transcriptional regulator 7.53628758136e-05 1.19282511795e-05 -6.34346246341e-05 +UniRef50_Q9I4U2 Acyl homoserine lactone acylase QuiP 0.00068661204422 8.52284863478e-05 -0.000601383557872 +UniRef50_UPI000466F3A3 hypothetical protein 0.000129039663384 3.08133016795e-05 -9.82263617045e-05 +UniRef50_UPI0002FD307E hypothetical protein 2.34598089256e-05 1.75413443652e-05 -5.9184645604e-06 +UniRef50_M1YUE3 0.000158104493821 0.000237452682353 7.9348188532e-05 +UniRef50_W4TKZ4 3.60545003908e-05 0.000327566501565 0.000291512001174 +UniRef50_Q9I602 0.000275749970218 0.000161081839199 -0.000114668131019 +UniRef50_UPI00035F31F7 hypothetical protein 1.12868440598e-05 1.27624089702e-05 1.4755649104e-06 +UniRef50_V8MVT4 Transposase 0.000927671674024 0.00107501043914 0.000147338765116 +UniRef50_UPI000361F9D7 hypothetical protein 5.40438044678e-06 2.28090218137e-05 1.74046413669e-05 +UniRef50_A9VTL7 Nucleoid occlusion protein 0.0123820043037 0.00328498850866 -0.00909701579504 +UniRef50_I6U3X8 0.00567268880766 0.00242935925963 -0.00324332954803 +UniRef50_B9KTM2 Membrane fusion protein, HlyD family 0.000975530574878 0.000354165483842 -0.000621365091036 +UniRef50_A8ARB7 0.000599184109289 0.00213366718257 0.00153448307328 +UniRef50_B4U4S6 Primosomal protein DnaI 0.00594527448144 0.00621620353887 0.00027092905743 +UniRef50_D8JGQ3 Acetyltransferase family protein 0.00025679318969 0.00585820848286 0.00560141529317 +UniRef50_UPI000374923B hypothetical protein, partial 2.95627044399e-05 0.0133682787821 0.0133387160777 +UniRef50_R7B3T9 Molybdate ABC transporter permease protein 0.00218804159564 0.00193047900641 -0.00025756258923 +UniRef50_UPI0003608764 hypothetical protein 1.59192750663e-05 4.65840152205e-05 3.06647401542e-05 +UniRef50_Q5HMA3 Thymidine kinase 0.0132645316066 0.000625059622022 -0.0126394719846 +UniRef50_UPI00036390EE hypothetical protein 0.00121716361445 0.000221946700328 -0.000995216914122 +UniRef50_Q0ARE0 2.91056178259e-05 0.000171322494467 0.000142216876641 +UniRef50_A6LV67 0.000156201098833 0.000794059417456 0.000637858318623 +UniRef50_Q4T2R9 Chromosome undetermined SCAF10201, whole genome shotgun sequence. 1.73267143926e-05 5.91128524793e-06 -1.14154291447e-05 +UniRef50_UPI00036EEDB2 30S ribosomal protein S4, partial 6.93305953387e-06 0.00210213192495 0.00209519886542 +UniRef50_UPI0003A27699 glutaminyl tRNA synthetase 4.47210670126e-06 3.27372875803e-06 -1.19837794323e-06 +UniRef50_UPI0003C15EA6 4.75411600565e-05 1.32299988408e-05 -3.43111612157e-05 +UniRef50_Q2NSV5 tRNA 2 thiocytidine biosynthesis protein TtcA 0.00194989892984 0.0674905609956 0.0655406620658 +UniRef50_UPI00036FCB79 hypothetical protein 4.33495916748e-06 6.50788876904e-06 2.17292960156e-06 +UniRef50_UPI00036DB284 hypothetical protein, partial 0.000235029299217 0.0231070284154 0.0228719991162 +UniRef50_UPI0003658156 hypothetical protein, partial 6.77635701263e-05 0.000101700727669 3.39371575427e-05 +UniRef50_A6WFN3 Diguanylate cyclase 6.15837425637e-06 0.000296198272362 0.000290039898106 +UniRef50_UPI00037A43CA hypothetical protein 5.38341610631e-05 0.00022507748853 0.000171243327467 +UniRef50_UPI0004443E9D PREDICTED 5.8035071034e-06 5.8935745204e-06 9.0067417e-08 +UniRef50_A6LR97 Acyl ACP thioesterase 0.000161548925324 0.000695116469478 0.000533567544154 +UniRef50_UPI00047B48B0 GNAT family acetyltransferase 0.000113912221375 2.73767042464e-05 -8.65355171286e-05 +UniRef50_Q02198 Morphine 6 dehydrogenase 6.33981966145e-06 2.31147908758e-05 1.67749712144e-05 +UniRef50_P00811 Beta lactamase 0.00231437103161 0.000848417179586 -0.00146595385202 +UniRef50_C0H3V2 Mannitol specific phosphotransferase enzyme IIA component 0.0106647230104 0.000270956201096 -0.0103937668093 +UniRef50_Q0A892 RNA polymerase binding transcription factor DksA 0.00131681158902 0.000791026888919 -0.000525784700101 +UniRef50_H8FSH1 0.00094198488676 0.000177604236956 -0.000764380649804 +UniRef50_UPI000174692C spermidine putrescine ABC transporter ATP binding protein 1.42818803994e-05 1.4794901204e-05 5.130208046e-07 +UniRef50_UPI0002557C62 hypothetical protein 4.27778845508e-05 4.58692947036e-05 3.0914101528e-06 +UniRef50_UPI00029A3335 helicase 2.53646827806e-06 6.95170726906e-06 4.415238991e-06 +UniRef50_A6Q747 Alanine tRNA ligase 4.58670703315e-05 0.00336358411295 0.00331771704262 +UniRef50_Q75W16 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 5.7377861159e-05 7.12570872227e-06 -5.02521524367e-05 +UniRef50_A9CR53 0.00394726935459 0.00218753114959 -0.001759738205 +UniRef50_Q9ZJE9 DNA polymerase I 9.46844177454e-05 0.00432093604965 0.0042262516319 +UniRef50_F5LZL6 CBS domain containing protein 0.0198053219569 0.00336038692814 -0.0164449350288 +UniRef50_P65168 Inosine 5 monophosphate dehydrogenase 0.0246477281768 0.0518027414494 0.0271550132726 +UniRef50_P0ABK4 Cytochrome bd I ubiquinol oxidase subunit 2 0.000660126201259 0.00454057166589 0.00388044546463 +UniRef50_P0C1L0 Transposase for insertion sequence like element IS431mec 0.0256288850193 0.009401152508 -0.0162277325113 +UniRef50_D5AUS5 7.06334911283e-05 1.64098024101e-05 -5.42236887182e-05 +UniRef50_A5EY33 Recombination protein RecR 0.000360655403362 0.00703347528962 0.00667281988626 +UniRef50_I0EKM3 DNA transfer protein ComE 0.000269915988217 0.00296896065226 0.00269904466404 +UniRef50_E3YSL3 Pts system fructose specific eiibc component 3.28898923433e-05 0.000340829686273 0.00030793979393 +UniRef50_D4H949 YD repeat protein 0.000375467785191 0.00299110058819 0.002615632803 +UniRef50_K9HQP8 Phosphate binding protein 3.49509925797e-06 6.46207396736e-06 2.96697470939e-06 +UniRef50_UPI0003094A6C hypothetical protein 1.81454384124e-05 1.34668115525e-05 -4.6786268599e-06 +UniRef50_A7GKB6 Nitrite reductase H), small subunit 0.00307850814899 0.000588671173145 -0.00248983697584 +UniRef50_P54122 Ribonuclease J 1.00996062589e-05 4.34040422574e-05 3.33044359985e-05 +UniRef50_P47269 Fructose bisphosphate aldolase 2.45229810867e-05 4.71522977869e-05 2.26293167002e-05 +UniRef50_P0ADL0 0.000313700267745 0.00089040212621 0.000576701858465 +UniRef50_UPI000344BE75 hypothetical protein 2.36052018066e-05 6.00892559755e-06 -1.75962762091e-05 +UniRef50_UPI0003C18F39 PREDICTED 3.07797452843e-05 2.67297990116e-05 -4.0499462727e-06 +UniRef50_C1A7X4 Acyl CoA dehydrogenase 0.000263342038884 0.0243153190531 0.0240519770142 +UniRef50_P0A2T6 cAMP activated global transcriptional regulator CRP 0.00229006728674 0.000603558775012 -0.00168650851173 +UniRef50_S9TKQ0 6.21887955241e-05 0.000215584242449 0.000153395446925 +UniRef50_UPI0003B40961 glutathione ABC transporter permease 9.97942209044e-05 6.5815392994e-05 -3.39788279104e-05 +UniRef50_UPI0004770C99 hypothetical protein 9.71512597558e-06 0.000254742637539 0.000245027511563 +UniRef50_H6RLH1 ComEC Rec2 related protein 8.53560149315e-06 0.000120012960584 0.000111477359091 +UniRef50_UPI00047780B8 acyl CoA synthetase 1.68533595895e-05 1.37205186773e-05 -3.1328409122e-06 +UniRef50_I1AQX6 3.86576307731e-05 9.2312893688e-05 5.36552629149e-05 +UniRef50_A3PFZ4 Peptidase S16, lon domain protein 0.00973136440559 0.00153128603206 -0.00820007837353 +UniRef50_J8RSG4 2.67505992788e-05 0.000101995764509 7.52451652302e-05 +UniRef50_Q0B6I4 Lipoprotein 0.00154858238741 0.000522804727682 -0.00102577765973 +UniRef50_B8ZUG9 Threonine tRNA ligase 5.96030508744e-05 0.00405343855563 0.00399383550476 +UniRef50_L1K7L5 0.000369957090474 0.000948567695346 0.000578610604872 +UniRef50_Y4SN89 0.033058554491 0.0118674026068 -0.0211911518842 +UniRef50_Q8YR06 Phosphoribosylformylglycinamidine synthase 2 2.52385415944e-05 5.73766349522e-06 -1.95008780992e-05 +UniRef50_M1MJ06 Diguanylate cyclase domain containing protein 0.000326090758671 0.000907355934752 0.000581265176081 +UniRef50_Q6CGG3 FK506 binding protein 2 1.72873770042e-05 2.20011063438e-05 4.7137293396e-06 +UniRef50_C5VT76 LicC protein 0.000277563227102 0.00329857056985 0.00302100734275 +UniRef50_A6M234 Sigma 54 factor, interaction domain containing protein 0.00035531591543 0.000759440853061 0.000404124937631 +UniRef50_E1V429 Formyltetrahydrofolate deformylase 0.00198303692832 0.00046506567747 -0.00151797125085 +UniRef50_Q9I452 Probable 3 mercaptopyruvate sulfurtransferase 0.00013291760171 0.000331196304892 0.000198278703182 +UniRef50_UPI000362E0E9 Fis family transcriptional regulator 0.000200282434269 9.38337095257e-05 -0.000106448724743 +UniRef50_Q8DXP9 Transcriptional antiterminator, BglG family 0.00711803092308 0.00140310025585 -0.00571493066723 +UniRef50_U5VYZ3 Diguanylate cyclase 6.14840581776e-06 0.000193300736068 0.00018715233025 +UniRef50_Q8YC76 DNA polymerase IV 0.00396393866472 0.000398061796678 -0.00356587686804 +UniRef50_Q03025 Alkaline protease secretion protein AprE 0.00057547605159 0.000503453071886 -7.2022979704e-05 +UniRef50_V8AQW0 0.00794109240991 0.000974938654562 -0.00696615375535 +UniRef50_UPI0003A20063 DNA 3 methyladenine glycosylase 2.43570778518e-05 0.000107087014985 8.27299371332e-05 +UniRef50_F5M1J2 Phage related integrase 0.00306927417536 0.00152420788163 -0.00154506629373 +UniRef50_UPI0003B727F3 membrane protein 6.27888360558e-05 1.77484282766e-05 -4.50404077792e-05 +UniRef50_C1D040 2.78954640925e-05 0.034235403569 0.0342075081049 +UniRef50_P28631 DNA polymerase III subunit delta 0.00296492025393 0.00138432956065 -0.00158059069328 +UniRef50_Q8FFR0 0.00186662330029 0.00579090294712 0.00392427964683 +UniRef50_O34788 butanediol dehydrogenase 0.000439462577242 0.00163732982485 0.00119786724761 +UniRef50_C0PLL4 4.94976574155e-05 7.952710313e-05 3.00294457145e-05 +UniRef50_UPI0004077D5F prephenate dehydratase 7.55095824817e-06 0.000243410004811 0.000235859046563 +UniRef50_A7X6I0 Phytoene desaturase 9.32693205232e-05 0.000206365269178 0.000113095948655 +UniRef50_Q58065 Putative NADH oxidase 0.00400013086888 0.000985017402641 -0.00301511346624 +UniRef50_Q8DMA8 Polyphosphate kinase 3.16319631414e-06 0.000149169395301 0.000146006198987 +UniRef50_Q932Q4 Orf513 0.000189997020661 0.0118276393253 0.0116376423046 +UniRef50_B0V6C9 Extracellular serine proteinase 0.000329610591411 0.00560570819595 0.00527609760454 +UniRef50_UPI000401E192 hypothetical protein 1.56877311137e-05 3.51617130709e-05 1.94739819572e-05 +UniRef50_E8MRI6 Two component response regulator 0.00518123056752 0.00528848296374 0.00010725239622 +UniRef50_Q5HE75 Fructose bisphosphate aldolase 0.0244410385622 0.00594337298281 -0.0184976655794 +UniRef50_A5UP16 Conserved hypothetical membrane protein Msm_1739 0.00348476016988 0.000306557133415 -0.00317820303647 +UniRef50_F0VS21 Rhamnosyltransferase 0.00408047940937 0.00020319956779 -0.00387727984158 +UniRef50_UPI00046543C3 hypothetical protein 2.82998094325e-05 4.8124583688e-05 1.98247742555e-05 +UniRef50_D5SQR1 Glycogen debranching enzyme GlgX 0.00899446089993 0.00211573708431 -0.00687872381562 +UniRef50_A7ZML4 N succinylglutamate 5 semialdehyde dehydrogenase 0.00265289576811 0.00105686756918 -0.00159602819893 +UniRef50_B9KN09 0.000349931892217 0.000104776886433 -0.000245155005784 +UniRef50_Q3AEQ2 3 isopropylmalate dehydrogenase 0.00101831944697 0.00319062641136 0.00217230696439 +UniRef50_E2XRP0 DNA binding response regulator, LuxR family 0.000975420178776 0.000279921047585 -0.000695499131191 +UniRef50_B9KN06 0.00337157608571 0.000756835527187 -0.00261474055852 +UniRef50_B9KN07 0.0215769468369 0.00465537939525 -0.0169215674416 +UniRef50_V0AP01 0.00337981609622 0.001212455279 -0.00216736081722 +UniRef50_UPI00035C9482 hypothetical protein 1.25926108794e-05 0.000236167557065 0.000223574946186 +UniRef50_E8U6V1 Aldose 1 epimerase 0.000126673150626 0.0399815641162 0.0398548909656 +UniRef50_UPI00031CD3FF hypothetical protein 1.77068377251e-05 0.000168469099496 0.000150762261771 +UniRef50_Q5HKI6 0.0306202768582 0.000363094309672 -0.0302571825485 +UniRef50_Q09751 Lactoylglutathione lyase 1.53042951152e-05 1.70512589277e-05 1.7469638125e-06 +UniRef50_UPI0003761A55 hypothetical protein 2.18656173264e-06 0.000493750144307 0.000491563582574 +UniRef50_UPI0004762DA5 hypothetical protein 1.10424742732e-05 2.99250812811e-05 1.88826070079e-05 +UniRef50_UPI000467CD77 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 8.11412666188e-06 1.34838495604e-05 5.36972289852e-06 +UniRef50_UPI0003775761 hypothetical protein 2.36726771288e-05 2.66604066852e-05 2.9877295564e-06 +UniRef50_UPI0003821846 hypothetical protein 1.61524258635e-05 1.60018020405e-05 -1.50623823e-07 +UniRef50_I0EQ26 GDP L fucose synthase 0.000375006824528 0.00263950294765 0.00226449612312 +UniRef50_B7V4A2 Heme d1 biosynthesis protein NirF 0.000143167884525 1.20950684986e-05 -0.000131072816026 +UniRef50_G8I0W8 Integrase 0.00188583388181 0.000161522354718 -0.00172431152709 +UniRef50_Q7DDS7 Septum site determining protein MinD 0.00370310683505 0.00652255160584 0.00281944477079 +UniRef50_M9VKM1 RecF RecN SMC N terminal domain protein 9.35258428407e-05 0.0032379888687 0.00314446302586 +UniRef50_Q16DR4 PucC family protein, putative 1.50877010232e-06 8.68313552703e-06 7.17436542471e-06 +UniRef50_Q57865 4 hydroxy tetrahydrodipicolinate reductase 0.00616237216954 0.000758665583133 -0.00540370658641 +UniRef50_D3CU37 9.98156564651e-06 2.1029466761e-05 1.10479011145e-05 +UniRef50_K2FAW5 3.31087656313e-05 8.89141141167e-05 5.58053484854e-05 +UniRef50_Q5HPT2 Ribosome recycling factor 0.0151856724147 0.00368710362448 -0.0114985687902 +UniRef50_C5N0X8 Na Pi cotransporter II like protein 0.0110825875635 0.00406434795339 -0.00701823961011 +UniRef50_Q97TN5 Divalent metal cation transporter MntH 0.000274953836277 0.000719805747829 0.000444851911552 +UniRef50_UPI00047D3BA3 hypothetical protein 0.000333736856185 0.000254782515944 -7.8954340241e-05 +UniRef50_U5MKF5 UPF0750 membrane protein YpjC 0.000131681158905 0.000878203483356 0.000746522324451 +UniRef50_Q1QGJ1 Transposase IS66 2.2344969004e-05 6.0363566331e-06 -1.63086123709e-05 +UniRef50_A0A010ZU52 4.11503642719e-05 5.14348806217e-05 1.02845163498e-05 +UniRef50_UPI00036DBF3D hypothetical protein, partial 1.9879421076e-05 1.10292734155e-05 -8.8501476605e-06 +UniRef50_P0AGM3 UPF0126 inner membrane protein YicG 0.00263099388966 0.00762722629695 0.00499623240729 +UniRef50_P04040 Catalase 1.79023730023e-05 5.05776937449e-05 3.26753207426e-05 +UniRef50_E8WXY4 6.59180885164e-06 6.73591694869e-06 1.4410809705e-07 +UniRef50_P0AA94 Sensor histidine kinase YpdA 0.0021557415598 0.000344552275314 -0.00181118928449 +UniRef50_B8FWK7 Nucleotide sugar dehydrogenase 8.77194397025e-05 0.000278383357729 0.000190663918027 +UniRef50_A4W0U2 Transcriptional regulator of sugar metabolism 2.73886600256e-05 0.000126920974175 9.95323141494e-05 +UniRef50_Q3IV07 Asparagine synthetase 0.0187847628379 0.00455680443678 -0.0142279584011 +UniRef50_D8JH55 Transcriptional regulatory protein, C terminal family protein 0.00011796437152 0.00404744760097 0.00392948322945 +UniRef50_Q8E0Z8 Prophage LambdaSa1, reverse transcriptase maturase family protein 0.00014803372112 0.000150543774942 2.510053822e-06 +UniRef50_F0XFM1 Endoribonuclease l psp 0.000206243426844 0.000114000104947 -9.2243321897e-05 +UniRef50_Q9FD71 Hydroxymethylglutaryl CoA synthase 0.0121424840541 0.00524317175092 -0.00689931230318 +UniRef50_P75826 0.00192964892965 0.000844513687861 -0.00108513524179 +UniRef50_E6YJH1 0.000193177675909 7.52960076227e-05 -0.000117881668286 +UniRef50_UPI0002193D96 glutamate racemase Nucleoside triphosphatase 5.98295621159e-06 5.52675532701e-06 -4.5620088458e-07 +UniRef50_R6I4T0 Short chain dehydrogenase reductase SDR 7.70018872341e-06 4.80612557611e-06 -2.8940631473e-06 +UniRef50_G5IIY2 1.97998768321e-05 7.37845444237e-05 5.39846675916e-05 +UniRef50_UPI0004154A70 hydroperoxidase 2.29104163195e-05 3.54877905724e-05 1.25773742529e-05 +UniRef50_UPI0003EF5A08 hypothetical protein 4.6610040365e-05 6.00205804537e-05 1.34105400887e-05 +UniRef50_Q46896 CRISPR associated endonuclease Cas1 0.00207603961797 0.000625135419908 -0.00145090419806 +UniRef50_X8FKW3 0.000110738548998 1.63027412745e-05 -9.44358077235e-05 +UniRef50_M4WYD7 0.000597733030037 5.64452334518e-05 -0.000541287796585 +UniRef50_Q8CPQ8 Nucleotidase 0.0186789289193 0.00927115484438 -0.00940777407492 +UniRef50_UPI00047311ED glutaredoxin, partial 0.000476227391326 0.000187654240136 -0.00028857315119 +UniRef50_F4AQK9 4.22576955442e-05 1.80443810999e-05 -2.42133144443e-05 +UniRef50_A0NSX2 Immunogenic protein 0.000111529522135 2.04787074904e-05 -9.10508146446e-05 +UniRef50_M6ZD49 Winged helix turn helix 4.10268164145e-05 0.00288475323019 0.00284372641378 +UniRef50_UPI000429EA82 hypothetical protein 4.17366390408e-06 2.10953240223e-05 1.69216601182e-05 +UniRef50_G5FKQ3 0.000866374101029 0.000468357367202 -0.000398016733827 +UniRef50_T0T8E0 Alanine tRNA ligase 0.00581565627091 0.00153975709969 -0.00427589917122 +UniRef50_S4XCV1 Surface protein G2 0.000473304400909 0.000144291549777 -0.000329012851132 +UniRef50_Q5HKF2 Aminotransferase, class II 0.00791345434064 0.00236667382994 -0.0055467805107 +UniRef50_E0S0H5 Phosphoglucomutase phosphomannomutase family protein 0.000518488440746 0.00157026666418 0.00105177822343 +UniRef50_M4QZL8 2.16626022775e-05 0.00206332387246 0.00204166127018 +UniRef50_B7N6B0 Peptidase B 0.00315425371136 0.00034749745064 -0.00280675626072 +UniRef50_M4QZL0 0.000266497178474 0.00496856186239 0.00470206468392 +UniRef50_C1CU33 Transketolase, C subunit 0.00187611648258 0.00529792329156 0.00342180680898 +UniRef50_U5MMW0 Sporulation protein YunB 0.00181445024617 0.000368378426439 -0.00144607181973 +UniRef50_Q74AX0 Thymidylate kinase 9.18192879807e-06 3.07049292137e-05 2.15230004156e-05 +UniRef50_Q166C2 Acyl carrier protein 0.000149042142596 0.00208458850726 0.00193554636466 +UniRef50_UPI00035FDAE3 hypothetical protein 0.000155540054093 7.99930003751e-05 -7.55470537179e-05 +UniRef50_UPI000370852C hypothetical protein, partial 1.71943340652e-05 4.89459035123e-05 3.17515694471e-05 +UniRef50_L8E5H5 Phosphoribosylformylglycinamidine synthase 1 2.72514914055e-05 2.77722223231e-05 5.207309176e-07 +UniRef50_E4NK07 6.90589737553e-05 0.00522345932432 0.00515440035056 +UniRef50_UPI0002485CB9 membrane protein 1.18248469585e-05 3.41748866197e-05 2.23500396612e-05 +UniRef50_T2AJH5 1.60484281829e-05 1.58793104712e-05 -1.691177117e-07 +UniRef50_Q0FVE7 Flagellar protein FlgJ, putative 0.000131977576868 6.46920406909e-05 -6.72855361771e-05 +UniRef50_M9VIA8 DNA topoisomerase IV subunit B 0.000334535132373 0.00495333407036 0.00461879893799 +UniRef50_P0A2T8 Fumarate and nitrate reduction regulatory protein 0.00580831152854 0.00228155989671 -0.00352675163183 +UniRef50_UPI0003AA4737 LuxR family transcriptional regulator 1.96350577785e-05 2.94414852334e-05 9.8064274549e-06 +UniRef50_UPI000346AB98 hypothetical protein 0.000140555524225 8.59062772212e-05 -5.46492470038e-05 +UniRef50_F4A3Y5 Peptidase, M24 family protein 0.000218455885457 0.00114858934478 0.000930133459323 +UniRef50_Q9K4V0 Nitric oxide reductase transcription regulator NorR1 2.89817222699e-06 1.42272796273e-05 1.13291074003e-05 +UniRef50_M4R0H3 ABC transporter, ATP binding domain protein 0.000111688576412 0.00678937562518 0.00667768704877 +UniRef50_Y1B2H8 0.000748080752802 0.000477175154709 -0.000270905598093 +UniRef50_Q6A9Q2 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000104086210166 0.00561321876948 0.00550913255931 +UniRef50_UPI000473DF01 hypothetical protein 2.26996678398e-05 2.32421263772e-05 5.424585374e-07 +UniRef50_UPI00037F561A hypothetical protein, partial 1.12490508231e-05 1.42737696293e-05 3.0247188062e-06 +UniRef50_Q4UY06 Sulfate adenylyltransferase subunit 2 0.00442624543048 0.0172910189041 0.0128647734736 +UniRef50_W1YEB9 0.00687940767631 0.00306109010037 -0.00381831757594 +UniRef50_E8SNW0 Macrophage infectivity potentiator related protein 4.24965103299e-05 0.000336223952777 0.000293727442447 +UniRef50_UPI0002E6D910 hypothetical protein 1.15850385429e-06 1.99423595276e-05 1.87838556733e-05 +UniRef50_P33570 Transketolase 2 0.0072954510457 0.00287671984998 -0.00441873119572 +UniRef50_B5H7E3 ABC transporter ATP binding protein 0.0115276043552 0.003752163989 -0.0077754403662 +UniRef50_F5X6Q7 ABC transport system permease protein 0.00473752992177 0.00125142753188 -0.00348610238989 +UniRef50_Q7NMQ5 Nucleoside diphosphate kinase 5.32455244512e-05 0.000106270438378 5.30249139268e-05 +UniRef50_J8VUX1 0.000158907166529 2.88496999697e-05 -0.000130057466559 +UniRef50_R7I3D6 8.32661900232e-05 1.66051503707e-05 -6.66610396525e-05 +UniRef50_D2J7E4 Replication initiator protein 4.23880012087e-05 5.87596215104e-06 -3.65120390577e-05 +UniRef50_U3QYE8 Membrane protein 0.000413512788083 0.000110207866814 -0.000303304921269 +UniRef50_D3FRH5 8.1793290844e-06 1.2315613979e-05 4.1362848946e-06 +UniRef50_UPI00041C9E3C hypothetical protein 1.96589645437e-06 1.93752778666e-05 1.74093814122e-05 +UniRef50_Q6A8N5 Prolipoprotein diacylglyceryl transferase 0.000396952775185 0.00559804704 0.00520109426481 +UniRef50_W8UXR7 0.00214646160899 0.000109406083607 -0.00203705552538 +UniRef50_P58664 0.00594424752907 0.000798280213812 -0.00514596731526 +UniRef50_S5YW82 1.16846275306e-05 1.61290894881e-05 4.4444619575e-06 +UniRef50_Q6AAL4 S ribosylhomocysteine lyase 0.000184587448664 0.00140012541053 0.00121553796187 +UniRef50_UPI0004665EA7 fusaric acid resistance protein 2.84460366972e-06 6.25977207803e-06 3.41516840831e-06 +UniRef50_P0AC90 GDP mannose 4,6 dehydratase 0.0185791832537 0.0148244287622 -0.0037547544915 +UniRef50_E3JA76 2.44090876712e-05 1.76692322921e-06 -2.2642164442e-05 +UniRef50_R0S9J4 3.08232641491e-05 0.001547456555 0.00151663329085 +UniRef50_A1B2V6 0.000139232886318 8.93269488857e-05 -4.99059374323e-05 +UniRef50_A5UKK8 Adenine cytosine DNA methyltransferase 0.0036461992992 0.00031031527691 -0.00333588402229 +UniRef50_S8F0C2 4.88829852552e-07 1.58284210713e-05 1.53395912187e-05 +UniRef50_W4RSX5 NAD synthetase 3.59143930309e-05 0.000171458933106 0.000135544540075 +UniRef50_UPI000473309C hypothetical protein, partial 3.62010277115e-05 6.20953223906e-06 -2.99914954724e-05 +UniRef50_UPI000382DF5B hypothetical protein 5.51611284246e-05 8.73718062633e-05 3.22106778387e-05 +UniRef50_A6LX54 Response regulator receiver protein 0.0041343671809 0.00092447586961 -0.00320989131129 +UniRef50_UPI0002F1891F hypothetical protein 8.37418466037e-07 3.02178031685e-05 2.93803847025e-05 +UniRef50_UPI00036F5244 hypothetical protein 1.26424675227e-05 4.69337249452e-06 -7.94909502818e-06 +UniRef50_F4DLN9 0.000271572653853 0.000295316705201 2.3744051348e-05 +UniRef50_P31040 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 3.71301717056e-06 8.15442119386e-06 4.4414040233e-06 +UniRef50_A4WZY2 0.000713870995659 0.000504814880674 -0.000209056114985 +UniRef50_UPI0003796C9F hypothetical protein, partial 2.26399297194e-05 0.000121365349473 9.87254197536e-05 +UniRef50_UPI000363A9F6 alcohol dehydrogenase 1.32451733281e-05 0.00050770780263 0.000494462629302 +UniRef50_UPI00047212B5 spermidine putrescine ABC transporter substrate binding protein 1.91741171721e-05 0.000148989102043 0.000129814984871 +UniRef50_O32129 Lipoyl synthase 1.42446390888e-05 4.01408443809e-05 2.58962052921e-05 +UniRef50_UPI0003EC0C27 PREDICTED 3.5134585193e-05 1.06400782762e-05 -2.44945069168e-05 +UniRef50_P0A9T2 D 3 phosphoglycerate dehydrogenase 0.00413355463648 0.00156016112754 -0.00257339350894 +UniRef50_UPI00021928D0 3 keto L gulonate 6 phosphate decarboxylase, partial 1.70654975724e-05 3.29762082509e-05 1.59107106785e-05 +UniRef50_UPI0004785282 ABC transporter ATP binding protein 3.64333142282e-05 6.83483140087e-06 -2.95984828273e-05 +UniRef50_UPI00016C377C excinuclease ABC subunit A 1.06886415753e-05 3.13265745753e-05 2.0637933e-05 +UniRef50_G9G2D7 ABC transporter related protein 0.000158496566353 0.000228145881214 6.9649314861e-05 +UniRef50_UPI0003794563 hypothetical protein, partial 7.71840816016e-06 2.36710379869e-05 1.59526298267e-05 +UniRef50_P55357 Mannose 1 phosphate guanylyltransferase 2.09823618314e-05 5.11139366872e-06 -1.58709681627e-05 +UniRef50_UPI0003B39652 ribosomal large subunit pseudouridine synthase A 0.000123949735269 2.79446695009e-05 -9.60050657681e-05 +UniRef50_F0KHF7 0.00025334630124 0.00541226303447 0.00515891673323 +UniRef50_D3X7Y2 Glutathione peroxidase 0.0293419934203 0.0199377997535 -0.0094041936668 +UniRef50_A6M2T7 Abortive infection protein 0.000344799308646 0.0014586548139 0.00111385550525 +UniRef50_W9D4Z0 3.95199237577e-05 2.07834882752e-05 -1.87364354825e-05 +UniRef50_K0HMC2 0.000228377380324 0.00498520866254 0.00475683128222 +UniRef50_UPI0003C10DF6 1.42286679549e-05 3.88080642259e-05 2.4579396271e-05 +UniRef50_N3NX82 0.00167492185909 0.000998376946437 -0.000676544912653 +UniRef50_U5Y027 Xanthine uracil vitamin C permease 9.43714972093e-05 0.00270638617765 0.00261201468044 +UniRef50_Q59931 NADP dependent glyceraldehyde 3 phosphate dehydrogenase 0.00566385244841 0.0075310977636 0.00186724531519 +UniRef50_Q187U6 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000117353157162 0.0015548713406 0.00143751818344 +UniRef50_J9S761 3.32993428377e-06 6.34150717784e-06 3.01157289407e-06 +UniRef50_UPI000469984F hypothetical protein 1.49814960801e-05 2.22185400663e-05 7.2370439862e-06 +UniRef50_UPI00046F91FB inner membrane translocator 2.48324095868e-05 1.4242882963e-05 -1.05895266238e-05 +UniRef50_A0A011MQD2 DNA primase 2.52231844225e-06 6.08921424204e-06 3.56689579979e-06 +UniRef50_K6VMV8 1.01121886256e-06 3.65874940142e-05 3.55762751516e-05 +UniRef50_P37981 Inorganic pyrophosphatase 0.00516493894268 5.2163594827e-05 -0.00511277534785 +UniRef50_L1K7R1 Pirin domain protein 8.37001702481e-05 0.000262252683879 0.000178552513631 +UniRef50_Q57N15 Putative mannosyl 3 phosphoglycerate phosphatase 0.002465001165 0.00172918885835 -0.00073581230665 +UniRef50_P47924 Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic 1.14522756712e-05 7.05380809221e-05 5.90858052509e-05 +UniRef50_Q6GGK7 Sensor protein SrrB 0.0221210085623 0.00376725351664 -0.0183537550457 +UniRef50_UPI000289481B 50S ribosomal protein L22 2.8148682849e-05 0.000422796130075 0.000394647447226 +UniRef50_UPI000380885A hypothetical protein, partial 8.12209150601e-05 0.000104036224659 2.28153095989e-05 +UniRef50_UPI0003B51BB3 diguanylate cyclase 2.02361715745e-05 2.64521732183e-05 6.2160016438e-06 +UniRef50_F0KFG3 Modulator of drug activity 0.000577784676811 0.00697775493285 0.00639997025604 +UniRef50_Q49Z27 0.0086905584063 0.00478648491576 -0.00390407349054 +UniRef50_A3PP65 Transcriptional regulator, LysR family 0.00653236321355 0.000853438555497 -0.00567892465805 +UniRef50_R6FTR0 Sporulation integral membrane protein YlbJ 0.000444121251354 0.00079481279483 0.000350691543476 +UniRef50_A4WYU2 0.00233776319973 0.000461390356386 -0.00187637284334 +UniRef50_Q3IY96 PAS sensor Signal Tranduction Histidine Kinase 0.00570928142879 0.00159021523704 -0.00411906619175 +UniRef50_A4WYU6 0.0117064402984 0.00109833256403 -0.0106081077344 +UniRef50_Q8XE45 Malate 0.00499347628972 0.0063254866526 0.00133201036288 +UniRef50_UPI00047A4FE0 hypothetical protein 2.75166775813e-05 7.31968750716e-05 4.56801974903e-05 +UniRef50_A0A028V4R5 7.02100879136e-05 4.31762775947e-05 -2.70338103189e-05 +UniRef50_UPI000472245F hypothetical protein 3.71193837864e-05 3.15532260949e-05 -5.5661576915e-06 +UniRef50_Q6D4A8 Zinc import ATP binding protein ZnuC 5.1162344795e-05 7.35273000545e-05 2.23649552595e-05 +UniRef50_B4SGR9 3 dehydroquinate dehydratase 8.10037107999e-06 0.000172195051267 0.000164094680187 +UniRef50_UPI00035E131B hypothetical protein 1.25257461219e-05 4.01365476645e-05 2.76108015426e-05 +UniRef50_UPI000471D845 hypothetical protein 4.43371170367e-05 1.49618588931e-05 -2.93752581436e-05 +UniRef50_UPI000190BCFA hypothetical protein, partial 7.40716520758e-05 0.000127325991728 5.32543396522e-05 +UniRef50_F0Y0F0 5.37476303124e-05 0.000358608381777 0.000304860751465 +UniRef50_G7U5I2 Tricorn protease 4.07945953426e-05 0.00683914754632 0.00679835295098 +UniRef50_B9KX51 DSBA oxidoreductase 0.000260141357182 0.000501954739708 0.000241813382526 +UniRef50_Q9RYP2 Adenine deaminase related protein 5.48404655451e-05 2.74615808367e-05 -2.73788847084e-05 +UniRef50_R0NKC6 ABC transporter substrate binding protein 0.000175902156329 0.000162494663388 -1.3407492941e-05 +UniRef50_M5UK49 Glucose 1 dehydrogenase 1.07991065648e-05 1.17528365826e-05 9.537300178e-07 +UniRef50_E5U6M9 1.62633086508e-05 4.12741175889e-05 2.50108089381e-05 +UniRef50_UPI0003FF8F9D hypothetical protein 3.35932401412e-06 5.03785832074e-06 1.67853430662e-06 +UniRef50_A5UN83 0.00329784931191 0.000256054946702 -0.00304179436521 +UniRef50_A5UN84 0.00797008843261 0.00198267950293 -0.00598740892968 +UniRef50_Q4L8H9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.016794474735 0.00127474836775 -0.0155197263672 +UniRef50_S0GCD5 4.43955066941e-05 0.00114888921244 0.00110449370575 +UniRef50_Q2J713 Probable dual specificity RNA methyltransferase RlmN 0.000260252589163 0.0102117291117 0.00995147652254 +UniRef50_Q8FFV6 Multidrug resistance outer membrane protein MdtQ 0.0017230021876 0.000952804451949 -0.000770197735651 +UniRef50_D3QIE1 Hydrolase 0.0224623648376 0.0105761405087 -0.0118862243289 +UniRef50_B6C5I5 4.63317921584e-05 9.02509862803e-05 4.39191941219e-05 +UniRef50_UPI0004786084 hypothetical protein 2.72384581959e-05 2.63063258775e-05 -9.321323184e-07 +UniRef50_A0RQU5 TonB dependent receptor protein 0.000155012497258 0.000926151086815 0.000771138589557 +UniRef50_A5UN65 MEMO1 family protein Msm_1438 0.00340691272955 0.000643025619111 -0.00276388711044 +UniRef50_C6CW93 Major facilitator superfamily MFS_1 0.000500352935972 0.00153830007556 0.00103794713959 +UniRef50_E7C3U5 6.98476723961e-05 5.18285630098e-05 -1.80191093863e-05 +UniRef50_Q2FE11 Phosphoglucomutase 0.0211829766817 0.00710477773023 -0.0140781989515 +UniRef50_Q68WT1 DNA helicase II 6.57047734114e-06 9.47556921361e-06 2.90509187247e-06 +UniRef50_UPI0003F6F54C hypothetical protein 6.12541117495e-05 0.000112080046108 5.08259343585e-05 +UniRef50_C6NW58 Putative ATP dependent RNA helicase 3.49382345348e-06 2.86103231412e-05 2.51164996877e-05 +UniRef50_P76086 Transcriptional repressor PaaX 0.00345582632693 0.000384290105381 -0.00307153622155 +UniRef50_D9RB01 0.00398590586768 0.00134980017437 -0.00263610569331 +UniRef50_J2X6M2 0.000155557412985 8.29646113906e-05 -7.25928015944e-05 +UniRef50_G8PLF5 TRAP transporter solute receptor, TAXI family 1.6093305499e-05 8.38531549301e-06 -7.70799000599e-06 +UniRef50_S5YTP5 Iron complex transport system, substrate binding protein 0.000568226263642 0.000580957140637 1.2730876995e-05 +UniRef50_Q8G6D6 Phosphoglycerate kinase 0.000179440505051 0.00665159747029 0.00647215696524 +UniRef50_Q02ZD2 Redox sensing transcriptional repressor Rex 0.0055451001399 0.00120031566504 -0.00434478447486 +UniRef50_UPI0002D2A0E3 hypothetical protein 5.76355084716e-05 2.50567047746e-05 -3.2578803697e-05 +UniRef50_UPI0002B9B247 hypothetical protein, partial 3.31485548704e-05 4.83863367105e-05 1.52377818401e-05 +UniRef50_P44997 Phosphoserine phosphatase 6.43380728562e-06 8.31204160662e-06 1.878234321e-06 +UniRef50_UPI00046D3094 Fis family transcriptional regulator 1.22057959548e-05 3.21025264004e-05 1.98967304456e-05 +UniRef50_UPI0003598719 PREDICTED 3.5665284474e-05 9.84662241577e-06 -2.58186620582e-05 +UniRef50_A4W090 Putative sporulation transcription regulator WhiA 0.00534934845888 0.00682230266586 0.00147295420698 +UniRef50_UPI0003C2A5BF PREDICTED 2.83428486787e-05 7.83417944571e-06 -2.0508669233e-05 +UniRef50_W5XDD5 DNA polymerase 1.66108531379e-06 1.43597468532e-05 1.26986615394e-05 +UniRef50_UPI0003B74800 hypothetical protein 8.77093342479e-05 2.21079798175e-05 -6.56013544304e-05 +UniRef50_UPI000474F6A9 hypothetical protein, partial 0.00018254436888 0.00961102755211 0.00942848318323 +UniRef50_E3E7X3 Oxidoreductase Fe S binding subunit 0.000199026004668 0.00106429072327 0.000865264718602 +UniRef50_C2MSC7 S layer y domain protein 9.79575047117e-06 0.000203041512412 0.000193245761941 +UniRef50_O31546 Probable tRNA dihydrouridine synthase 2 0.0209995014934 0.00703686350551 -0.0139626379879 +UniRef50_T9WCL0 Phage tail fiber assembly protein 0.000835977375802 0.000123535008968 -0.000712442366834 +UniRef50_S1H2Y6 Protein YibB 0.000497000804833 0.000533868336627 3.6867531794e-05 +UniRef50_C5N1K2 ROK family protein 0.0130752436692 0.000860371846485 -0.0122148718227 +UniRef50_P74755 Histidine biosynthesis bifunctional protein HisIE 1.08637969125e-05 4.05456368493e-05 2.96818399368e-05 +UniRef50_Y1MEW7 ATP dependent helicase 0.0029348110386 0.000861996124924 -0.00207281491368 +UniRef50_A0A011P8Z8 9.5611001184e-06 3.28034913898e-05 2.32423912714e-05 +UniRef50_UPI000308DF5E 50S ribosomal protein L20 4.74957121289e-05 0.00022549432742 0.000177998615291 +UniRef50_Q8CQW2 0.00186957193293 0.00141228848282 -0.00045728345011 +UniRef50_A7Z635 Glycerol 3 phosphate dehydrogenase [NAD+] 0.0282606874843 0.00933360194144 -0.0189270855429 +UniRef50_UPI00036159B5 30S ribosomal protein S2 1.9562629957e-05 8.72080362758e-06 -1.08418263294e-05 +UniRef50_A6V6R8 0.00189995576076 0.000269695621179 -0.00163026013958 +UniRef50_C7RQ14 0.00830825775856 0.00070345792957 -0.00760479982899 +UniRef50_UPI00015D2B59 hypothetical protein 1.03005823625e-05 1.36493194203e-05 3.3487370578e-06 +UniRef50_D3E3U4 Exosome subunit 0.00179597989534 0.000341406595601 -0.00145457329974 +UniRef50_P42314 0.00054977460658 0.00719583201442 0.00664605740784 +UniRef50_Q1CRH7 tRNA modification GTPase MnmE 8.41350643778e-05 0.00315810400977 0.00307396894539 +UniRef50_Q8ZLS0 3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC 0.00176578138917 0.000334256188166 -0.001431525201 +UniRef50_U5MWL6 Pyruvate kinase 0.000418697266709 0.000906345296054 0.000487648029345 +UniRef50_Q9RYX4 Probable guanine deaminase 0.00017161922569 0.00623335425637 0.00606173503068 +UniRef50_W8TV76 2 hydroxyacid dehydrogenase 0.0206520760475 0.0134102557222 -0.0072418203253 +UniRef50_UPI000360F94C MULTISPECIES 9.12009469056e-06 2.35415122396e-05 1.4421417549e-05 +UniRef50_P35141 Adenylate kinase 0.000123133192114 0.000119194181292 -3.939010822e-06 +UniRef50_UPI00036AE0E8 hypothetical protein, partial 0.000336137646621 6.94066700523e-05 -0.000266730976569 +UniRef50_R8BHP6 1.66030028487e-05 2.19958110554e-05 5.3928082067e-06 +UniRef50_E6AX10 0.000124470397768 0.000394529152331 0.000270058754563 +UniRef50_X5A009 Oxidoreductase 0.0191699464962 0.00348732398351 -0.0156826225127 +UniRef50_UPI000470CE1D hypothetical protein, partial 4.41701815211e-05 0.00011859035889 7.44201773689e-05 +UniRef50_A0A010Q6A8 TonB dependent receptor family protein 6.28096487306e-05 0.00622493568842 0.00616212603969 +UniRef50_A7GXA8 Argininosuccinate lyase 2.77175730313e-05 2.33574739992e-05 -4.3600990321e-06 +UniRef50_UPI00037A50BE hypothetical protein 9.57436095205e-06 1.6682277892e-05 7.10791693995e-06 +UniRef50_UPI00047EC686 CoA transferase 7.8104388743e-06 0.000139577998334 0.00013176755946 +UniRef50_UPI0003B49CD4 glutamine amidotransferase 2.6574305074e-06 1.9754718766e-05 1.70972882586e-05 +UniRef50_L0NM51 6.28544702505e-07 1.6300728892e-05 1.56721841895e-05 +UniRef50_Q6FF15 Exonuclease V, alpha subunit 0.000305144312301 0.00695343683073 0.00664829251843 +UniRef50_E3YPZ5 Acetyl CoA carboxylase, biotin carboxyl carrier protein 0.00237902327167 0.000399977478817 -0.00197904579285 +UniRef50_Q2SRK6 Tyrosine tRNA ligase 5.14167437652e-06 1.69782233265e-05 1.183654895e-05 +UniRef50_Q2YV14 0.00110453367413 2.4035292532e-05 -0.0010804983816 +UniRef50_A1AYM7 0.000609005269761 2.66256484703e-05 -0.000582379621291 +UniRef50_L7KRU0 8.48536226037e-06 7.45591583222e-06 -1.02944642815e-06 +UniRef50_C5WGJ7 XRE family transcriptional regulator 0.00509663834726 0.00251383816687 -0.00258280018039 +UniRef50_X7YQG6 7.30966912105e-06 2.59484695403e-05 1.86388004192e-05 +UniRef50_B2I3G0 Molybdopterin biosynthesis protein 0.000119206101737 0.00654230304145 0.00642309693971 +UniRef50_G8UTB0 Flagellar basal body rod modification protein FlgD 9.42383145694e-06 1.2957966582e-05 3.53413512506e-06 +UniRef50_Q4JVG0 Chorismate synthase 0.000178288933788 0.00613161285929 0.0059533239255 +UniRef50_UPI0003B6C9F3 30S ribosomal protein S5 7.89460949214e-06 1.26854668605e-05 4.79085736836e-06 +UniRef50_M3ZEB7 5.17010988532e-05 2.34189864549e-05 -2.82821123983e-05 +UniRef50_R9SLQ2 0.00338932260661 0.00240845609506 -0.00098086651155 +UniRef50_Q5X496 Dihydroorotate dehydrogenase 1.0156177721e-05 6.73936574871e-05 5.72374797661e-05 +UniRef50_B7KV96 7.52983512691e-05 1.13043462905e-05 -6.39940049786e-05 +UniRef50_UPI00039B1B0F general secretion pathway protein I 1.71988796948e-05 1.87246931924e-05 1.5258134976e-06 +UniRef50_Q6ME91 Aspartate tRNA ligase 3.29351183091e-06 1.64893117375e-05 1.31957999066e-05 +UniRef50_UPI00046FBF5E butanol dehydrogenase, partial 1.46457574333e-05 2.89331299453e-05 1.4287372512e-05 +UniRef50_Q49V04 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0290426869888 0.00569948043676 -0.023343206552 +UniRef50_A6LTZ1 0.00101871065361 0.00132433597517 0.00030562532156 +UniRef50_S8N5S2 1.37782205568e-05 1.48410233772e-05 1.0628028204e-06 +UniRef50_E3F4P1 Short chain dehydrogenase reductase SDR 0.00537712820083 0.000515491518799 -0.00486163668203 +UniRef50_W0Z0G1 NADH quinone oxidoreductase 0.000565264778962 0.000425937555561 -0.000139327223401 +UniRef50_Q89ER4 Aliphatic sulfonates import ATP binding protein SsuB 5.73127687095e-05 1.48257726497e-05 -4.24869960598e-05 +UniRef50_Q0T1X7 3 phenylpropionate cinnamic acid dioxygenase ferredoxin NAD reductase component 0.00438649403774 0.000877935462662 -0.00350855857508 +UniRef50_Q9CGF0 Xanthine phosphoribosyltransferase 4.36025764995e-05 5.47123979683e-05 1.11098214688e-05 +UniRef50_D8IIA8 0.00824256666788 0.00599974650514 -0.00224282016274 +UniRef50_UPI000408C6D9 ribosome binding factor A 0.000128991778768 0.000159796465455 3.0804686687e-05 +UniRef50_Q1R421 0.000200118466156 0.000594841864338 0.000394723398182 +UniRef50_UPI0004682957 tRNA uridine 5 carboxymethylaminomethyl modification protein 2.16393714311e-05 1.54717843684e-05 -6.1675870627e-06 +UniRef50_G4AEU2 1.17949001381e-05 0.000579560234898 0.00056776533476 +UniRef50_I0C2K0 Nitrogen regulation protein NIFR3 0.000170700875662 7.85094744967e-05 -9.21914011653e-05 +UniRef50_UPI000455F8BC alcohol oxidase 1.19285836302e-05 8.1310154195e-06 -3.7975682107e-06 +UniRef50_D2JBV0 Beta lactamase regulatory sensor transducer BlaR1 0.000235210666732 0.00284976736831 0.00261455670158 +UniRef50_UPI000416161F hypothetical protein 6.32856856698e-06 3.60553897701e-06 -2.72302958997e-06 +UniRef50_A4WVT3 Transposase, IS4 family 0.000113437509933 0.000337724491539 0.000224286981606 +UniRef50_F4FMD5 Periplasmic iron binding protein 0.0134540534973 0.00438698056029 -0.00906707293701 +UniRef50_V9BNZ4 TRAP transporter, DctM like membrane protein 0.000215148340172 0.000116529539996 -9.8618800176e-05 +UniRef50_P39377 Isoaspartyl dipeptidase 0.00256128034184 0.0006413100635 -0.00191997027834 +UniRef50_Q1J1P5 Phosphopantetheine adenylyltransferase 1.07723512941e-05 0.101273271699 0.101262499348 +UniRef50_E6V848 Short chain dehydrogenase reductase SDR 0.0157888346465 0.00490830609638 -0.0108805285501 +UniRef50_Y6EQN4 Serine rich adhesin for platelets 0.000336127804747 4.3407648978e-05 -0.000292720155769 +UniRef50_W8S2G5 Glutathione peroxidase 0.0062440430294 0.00268469731995 -0.00355934570945 +UniRef50_A6LRE6 Membrane protein 9.3437125959e-05 0.00351019904868 0.00341676192272 +UniRef50_A6VD85 Lipoprotein 0.00119656498788 0.000477601140485 -0.000718963847395 +UniRef50_G9WG99 Alpha glucosidase 0.000375194456211 0.00132401314879 0.000948818692579 +UniRef50_A4WSV2 Pseudouridine synthase 0.000799205044925 0.000357126760603 -0.000442078284322 +UniRef50_V5T5N9 Fimbrial protein 0.000513327420365 0.00121130650698 0.000697979086615 +UniRef50_Q2YUZ7 Acetylglutamate kinase 0.00934449658849 0.00433959016749 -0.005004906421 +UniRef50_K0C8G2 Alpha L glutamate ligase like protein 0.000334483234429 0.000521844501014 0.000187361266585 +UniRef50_F8JNJ0 2.15837662388e-05 2.53048951411e-05 3.7211289023e-06 +UniRef50_V6XU76 0.0136222171402 0.000600644146164 -0.013021572994 +UniRef50_Q5WH73 Peptide methionine sulfoxide reductase MsrB 1.42564752224e-05 4.39141249356e-05 2.96576497132e-05 +UniRef50_UPI000479EE06 hypothetical protein 7.07228491284e-06 6.51958774208e-05 5.8123592508e-05 +UniRef50_Q8CQZ2 ABC transporter 0.0117175331604 0.00312025685453 -0.00859727630587 +UniRef50_UPI0002625DD5 ABC transporter 8.00121400038e-06 7.51578057656e-05 6.71565917652e-05 +UniRef50_Q931P4 Iron regulated surface determinant protein H 0.00930572974121 0.00193265400763 -0.00737307573358 +UniRef50_S9R7G4 Multisubunit Na+ H+ antiporter, MnhB subunit 6.51126605838e-05 1.24571473627e-05 -5.26555132211e-05 +UniRef50_F7Z2N3 Transcriptional activator, TenA family 0.00087690840061 0.000586721930844 -0.000290186469766 +UniRef50_UPI0004641455 electron transporter RnfC 0.000429362130574 0.00018225473207 -0.000247107398504 +UniRef50_B2EBN8 0.000490988865704 0.00114506279426 0.000654073928556 +UniRef50_C4L8G4 Type VI secretion protein, VC_A0114 family 5.03846661933e-06 8.23640196763e-06 3.1979353483e-06 +UniRef50_X0P1E3 3.60408261874e-06 0.00158611334968 0.00158250926706 +UniRef50_I1EQF0 3.35626174585e-06 0.000186832467184 0.000183476205438 +UniRef50_P56032 50S ribosomal protein L4 0.000202949456367 0.00165086272058 0.00144791326421 +UniRef50_UPI00037FFF27 hypothetical protein, partial 3.81379949496e-05 4.11357945162e-06 -3.4024415498e-05 +UniRef50_P57389 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.52394463366e-05 3.01457891917e-05 1.49063428551e-05 +UniRef50_M1IRD2 Dehydrogenase 0.000155131228296 0.00647712818571 0.00632199695741 +UniRef50_Q8ET05 Ornithine carbamoyltransferase 0.00428174580697 0.00851735725824 0.00423561145127 +UniRef50_D8JTY5 Binding protein dependent transport systems inner membrane component 0.000965328331553 0.000196659293133 -0.00076866903842 +UniRef50_G7M273 0.000248482349383 0.000436866068578 0.000188383719195 +UniRef50_W7WNN7 3.89946372973e-05 0.000318464886917 0.00027947024962 +UniRef50_UPI000364C068 hypothetical protein 5.82960092807e-06 8.75281982707e-07 -4.95431894536e-06 +UniRef50_UPI00046650EC hypothetical protein 1.20074142218e-05 0.000102359633577 9.03522193552e-05 +UniRef50_Q3SL72 Putative pilus assembly protein PilF, TPR repeat 6.35564499147e-06 1.1623412684e-05 5.26776769253e-06 +UniRef50_UPI000473F325 hypothetical protein 4.75509770741e-05 2.799074968e-05 -1.95602273941e-05 +UniRef50_A6LUF1 0.000185953689091 0.00249516431661 0.00230921062752 +UniRef50_UPI00034F6213 PREDICTED 1.20228376991e-05 9.77191298898e-06 -2.25092471012e-06 +UniRef50_K7RJS3 Transcriptional regulator, LacI family 0.000173158710486 0.00499098743873 0.00481782872824 +UniRef50_B3E717 Elongation factor Ts 0.0125406544533 0.00227945365959 -0.0102612007937 +UniRef50_D2P385 0.0261848323859 0.00209149965921 -0.0240933327267 +UniRef50_X7ELL2 Transcriptional regulator 0.000158471737472 6.14474901861e-05 -9.70242472859e-05 +UniRef50_C2DNC2 0.000254785127998 0.000114495103492 -0.000140290024506 +UniRef50_H8H2P8 Transposase, IS4 4.51008619322e-06 0.00334313515128 0.00333862506509 +UniRef50_A6M074 Alcohol dehydrogenase GroES domain protein 0.000796859789197 0.000905768528868 0.000108908739671 +UniRef50_UPI00036452A7 hypothetical protein 1.33872329776e-05 0.000161660174712 0.000148272941734 +UniRef50_X6KYR9 1.18752521757e-05 4.64843148773e-05 3.46090627016e-05 +UniRef50_UPI000362C621 hypothetical protein 7.66522711868e-06 0.00228697194376 0.00227930671664 +UniRef50_Q3JP83 2.77395697363e-05 2.80761906206e-06 -2.49319506742e-05 +UniRef50_Q46VJ2 Twin arginine translocation pathway signal 0.000243411926725 0.000187304464177 -5.6107462548e-05 +UniRef50_Q6AEX4 ABC type glycine betaine transport, ATP binding protein 0.000148811822151 0.00973452068884 0.00958570886669 +UniRef50_F0K5E7 Translation factor 0.000374774721742 0.000464442295204 8.9667573462e-05 +UniRef50_UPI0003B62D20 acyltransferase 0.000323666582535 7.80613774246e-05 -0.00024560520511 +UniRef50_A0A010V7A5 0.000164601448628 0.00768276763468 0.00751816618605 +UniRef50_UPI0001DD0BD2 hypothetical protein, partial 0.000101612368852 4.30557294456e-05 -5.85566394064e-05 +UniRef50_UPI00038FA867 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 1.30548469271e-05 7.31761408798e-05 6.01212939527e-05 +UniRef50_UPI00046F700B hypothetical protein 4.55936381743e-05 3.66972647928e-05 -8.8963733815e-06 +UniRef50_P76057 0.000501781337401 0.000831878042813 0.000330096705412 +UniRef50_U5N033 0.000280989491069 0.00147458920369 0.00119359971262 +UniRef50_UPI0004785487 5 keto 4 deoxyuronate isomerase, partial 9.80347993844e-06 9.21256127817e-06 -5.9091866027e-07 +UniRef50_K9ZYV5 Diguanylate cyclase domain containing protein 5.27616103042e-06 0.000113690998245 0.000108414837215 +UniRef50_UPI00038240F5 hypothetical protein 6.07283945701e-06 0.000170464760179 0.000164391920722 +UniRef50_B2S1K4 Uridine kinase 1.02781113614e-05 9.16935230741e-05 8.14154117127e-05 +UniRef50_UPI00035D9BD3 hypothetical protein 8.72677380167e-05 9.10880445477e-05 3.820306531e-06 +UniRef50_E4BE72 0.000159270106002 9.28638639564e-05 -6.64062420456e-05 +UniRef50_O75251 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 4.24588359561e-05 0.00533529624212 0.00529283740616 +UniRef50_I6TQZ1 Thioesterase 0.00403294363131 0.00101981229436 -0.00301313133695 +UniRef50_UPI0003AEA946 8.6906603445e-06 0.000138697762915 0.00013000710257 +UniRef50_G1RN76 0.000171884919535 0.00021929458307 4.7409663535e-05 +UniRef50_U6HZU1 Heat shock protein 70 3.52350351094e-05 1.10420552482e-05 -2.41929798612e-05 +UniRef50_UPI00016C4061 DNA polymerase I 1.61113337995e-05 0.000101427191971 8.53158581715e-05 +UniRef50_D8U3W2 Metalloproteinase, extracellular matrix glycoprotein VMP28 1.37341502869e-05 2.0849033558e-05 7.1148832711e-06 +UniRef50_R7PYE0 0.00212293283083 0.000817378482542 -0.00130555434829 +UniRef50_A1WUU5 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.06144398752e-05 1.67944014706e-05 -2.38200384046e-05 +UniRef50_C1DQS2 Ribonuclease 3 3.39353062611e-05 4.82134779736e-05 1.42781717125e-05 +UniRef50_D7A1Q0 Arginine ornithine antiporter 0.0106320556227 0.00311243451657 -0.00751962110613 +UniRef50_Q28QF9 Hemin import ATP binding protein HmuV 1.7776776585e-05 0.00143865902348 0.00142088224689 +UniRef50_D3D4M2 8.10436449709e-05 9.60704069354e-05 1.50267619645e-05 +UniRef50_UPI0004677544 para aminobenzoate synthase 6.69090285335e-06 1.91686560845e-05 1.24777532312e-05 +UniRef50_Q4L6X8 D tyrosyl tRNA deacylase 8.93769413644e-06 4.66497103175e-05 3.77120161811e-05 +UniRef50_K6DPK7 YhgE Pip C terminal domain containing protein 2.2396426082e-06 3.43340585083e-06 1.19376324263e-06 +UniRef50_Q8DS55 0.00356304779995 0.00187174277999 -0.00169130501996 +UniRef50_Q9X196 Spermidine putrescine import ATP binding protein PotA 0.000133268777525 4.14698577948e-05 -9.17989197302e-05 +UniRef50_A5WAX5 L pipecolate dehydrogenase 0.000126673150626 0.000160935534159 3.4262383533e-05 +UniRef50_P31060 Putative molybdenum transport ATP binding protein ModF 0.00296057007924 0.000542735327959 -0.00241783475128 +UniRef50_M9VFB1 ABC transporter 0.000317057321181 0.00454052339103 0.00422346606985 +UniRef50_I1EII6 1.00229404513e-05 4.15422886112e-05 3.15193481599e-05 +UniRef50_W0RBV9 LigA 2.50527203152e-05 0.00012992855333 0.000104875833015 +UniRef50_UPI0003677181 hypothetical protein 1.45831335383e-05 2.12041248803e-05 6.620991342e-06 +UniRef50_T3QN35 Putative GTP binding protein typA bipA 1.59713456081e-05 3.29003535741e-05 1.6929007966e-05 +UniRef50_U3TN39 Mobilization protein 1.75602193886e-05 1.81649386932e-05 6.047193046e-07 +UniRef50_Q03Q56 D ribose pyranase 0.0212957568583 0.0130851656942 -0.0082105911641 +UniRef50_L9NPU9 Pirin family protein 0.000180041012167 0.000282599717884 0.000102558705717 +UniRef50_UPI00036BABDE hypothetical protein 5.55526745096e-05 0.00411409191349 0.00405853923898 +UniRef50_V4JV50 0.000845993888298 0.000326510424257 -0.000519483464041 +UniRef50_W4HIB0 Putative NAD specific glutamate dehydrogenase 0.000540905120035 0.000405348990859 -0.000135556129176 +UniRef50_UPI0003650DAD hypothetical protein 9.19396119793e-06 9.96138610444e-05 9.04198998465e-05 +UniRef50_Q9SC75 L1332.3a protein 0.0012655927843 0.000248440738836 -0.00101715204546 +UniRef50_Q6MER0 4.97289288535e-05 8.28883893456e-05 3.31594604921e-05 +UniRef50_G8VKT7 0.000204046480461 0.00516520870194 0.00496116222148 +UniRef50_E1VFK2 0.000150086028104 0.00022350980524 7.3423777136e-05 +UniRef50_F8LS47 0.00105018989057 0.00242318168618 0.00137299179561 +UniRef50_Q00266 S adenosylmethionine synthase isoform type 1 4.5530303141e-05 0.000253718831903 0.000208188528762 +UniRef50_C1KWF9 Peptide methionine sulfoxide reductase MsrA 0.0111303015954 0.00412192185318 -0.00700837974222 +UniRef50_G7R477 0.000121184894193 2.79610185585e-05 -9.32238756345e-05 +UniRef50_A3C947 0.000393556200369 0.0007697220813 0.000376165880931 +UniRef50_Q8ZBZ0 Na translocating NADH quinone reductase subunit A 0.00037579237787 0.00351209789683 0.00313630551896 +UniRef50_Q5LSI0 ABC transporter, periplasmic substrate binding protein 0.00588815343838 0.00146058720011 -0.00442756623827 +UniRef50_UPI00037F3C99 hypothetical protein 9.38268419239e-05 8.13171417013e-05 -1.25097002226e-05 +UniRef50_UPI0003462712 hypothetical protein 2.91237757135e-05 3.77310421526e-06 -2.53506714982e-05 +UniRef50_A7HHJ4 LigA 5.57543945134e-05 4.68629334025e-05 -8.8914611109e-06 +UniRef50_UPI00035EDF20 hypothetical protein 2.30232792208e-05 0.00165181868161 0.00162879540239 +UniRef50_Q9PHZ7 Phosphoribosylformylglycinamidine synthase 1 1.15429536869e-05 1.13336482932e-05 -2.093053937e-07 +UniRef50_O29627 3 isopropylmalate dehydrogenase 1.09282927832e-05 4.32229783998e-05 3.22946856166e-05 +UniRef50_P22142 NADH ubiquinone oxidoreductase 49 kDa subunit, mitochondrial 1.98464728569e-05 3.75049363428e-05 1.76584634859e-05 +UniRef50_G9G2D3 Dipeptide ABC transporter, permease protein DppC 0.00832520431281 0.00268696261889 -0.00563824169392 +UniRef50_Q9RWW2 8.07168899885e-05 0.015267929336 0.015187212446 +UniRef50_Q8DUN4 FruR 0.00484905812453 0.00599930192646 0.00115024380193 +UniRef50_UPI000349D5C4 hypothetical protein 9.43720580817e-06 2.68681594889e-05 1.74309536807e-05 +UniRef50_A9M185 Histidinol phosphate aminotransferase 0.000148811822151 0.0030849853084 0.00293617348625 +UniRef50_UPI00036E2FCA FAD containing monooxygenase EthA 8.5016224316e-06 0.00152873748969 0.00152023586726 +UniRef50_B7I5R6 0.000162280929733 0.00406827457212 0.00390599364239 +UniRef50_UPI00037EE754 hypothetical protein 0.000256004421799 7.14653329689e-05 -0.00018453908883 +UniRef50_U5MPF8 Multidrug resistance efflux pump 0.000101565736906 0.00220088728461 0.0020993215477 +UniRef50_A6LZS4 NADPH dependent FMN reductase 0.000180041012167 0.000297798358178 0.000117757346011 +UniRef50_A8AKU2 50S ribosomal protein L1 0.00316646177371 0.0014162610657 -0.00175020070801 +UniRef50_Q5GWU5 0.000175967760106 0.0019755443907 0.00179957663059 +UniRef50_P21622 Acetolactate synthase isozyme 3 small subunit 9.84545065508e-05 0.000441945105789 0.000343490599238 +UniRef50_UPI00037D5428 hypothetical protein 0.000454254030465 4.44128764005e-05 -0.000409841154065 +UniRef50_F0RQZ6 ABC type transporter, periplasmic subunit 5.10234287243e-05 0.0140183075989 0.0139672841702 +UniRef50_Q6A6N8 50S ribosomal protein L5 0.00154515758415 0.00412077663233 0.00257561904818 +UniRef50_UPI0004788E38 PTS fructose transporter subunit IIA 2.65990362573e-06 0.000341345212724 0.000338685309098 +UniRef50_Q7MN70 Phosphoribosylformylglycinamidine synthase 0.0003239118224 0.00683560783147 0.00651169600907 +UniRef50_E6UYF1 Short chain dehydrogenase reductase SDR 0.000595381900397 0.0134352023169 0.0128398204165 +UniRef50_B2I798 Acyl carrier protein 0.00127242468152 3.56011348131e-05 -0.00123682354671 +UniRef50_P36879 0.00222450590001 0.000389520816507 -0.0018349850835 +UniRef50_I4CDV3 Thioredoxin reductase 0.000467813691505 0.00186750379415 0.00139969010265 +UniRef50_A8A033 0.000595968057209 8.08473860903e-05 -0.000515120671119 +UniRef50_P72138 Imidazole glycerol phosphate synthase subunit HisH 2 0.00308396480303 0.000333691192315 -0.00275027361071 +UniRef50_UPI000404E07B fatty acid CoA ligase 3.68955238896e-05 9.95444015276e-06 -2.69410837368e-05 +UniRef50_UPI0004785A11 uroporphyrin III methyltransferase 1.26734823415e-05 1.95529499352e-05 6.8794675937e-06 +UniRef50_Q7U8M8 Glutamyl Q tRNA synthetase 5.31889013037e-06 8.54985044521e-06 3.23096031484e-06 +UniRef50_B9KJE5 0.000295440166627 0.000206733138648 -8.8707027979e-05 +UniRef50_C0PP08 6.44125859857e-05 1.40249072518e-05 -5.03876787339e-05 +UniRef50_N6AES7 Hyperosmolarity resistance protein Ebh 0.00785290283046 0.00400188784362 -0.00385101498684 +UniRef50_UPI000371B471 hypothetical protein 0.000340433739356 0.000134648260231 -0.000205785479125 +UniRef50_Q8XMI8 Shikimate dehydrogenase 0.000168020469813 0.000892768051351 0.000724747581538 +UniRef50_UPI000289E4F2 alcohol dehydrogenase 3.67940492347e-06 1.38918181599e-05 1.02124132364e-05 +UniRef50_UPI0004729BC1 cation diffusion facilitator family transporter 1.85225773897e-05 2.01379313855e-05 1.6153539958e-06 +UniRef50_Q5HT48 Holliday junction ATP dependent DNA helicase RuvB 1.40432115083e-05 1.16964516696e-05 -2.3467598387e-06 +UniRef50_Q4LAB0 Multicopper oxidase mco 0.00887286572868 0.00289089664303 -0.00598196908565 +UniRef50_G2TA66 Phosphate ABC transporter permease 0.000116508021255 0.00771621490842 0.00759970688716 +UniRef50_W1VWW7 Putative copper transporting P type ATPase B 0.00656060073477 0.0017316373141 -0.00482896342067 +UniRef50_B8KQR9 Transcriptional regulator 1.76346093407e-05 2.77368949737e-05 1.0102285633e-05 +UniRef50_Q7VMD0 Nucleoside diphosphate kinase 7.65704841325e-05 2.49234107625e-05 -5.164707337e-05 +UniRef50_Q0RRL9 60 kDa chaperonin 1 0.000163990211586 0.0041365009386 0.00397251072701 +UniRef50_C5J508 DNA replication protein 0.000199728036426 0.037893561556 0.0376938335196 +UniRef50_UPI000478279F succinate semialdehyde dehydrogenase 5.02021807841e-06 1.67644449457e-05 1.17442268673e-05 +UniRef50_B1M8C4 Polar amino acid ABC transporter, inner membrane subunit 0.00474495588046 0.00306924390126 -0.0016757119792 +UniRef50_F9Z2M8 L fucose proton symporter 8.49555863898e-05 0.00359011708231 0.00350516149592 +UniRef50_UPI00037CF736 hypothetical protein 5.39868041212e-06 5.19001181886e-06 -2.0866859326e-07 +UniRef50_H0A168 0.000264909101321 0.000143941620691 -0.00012096748063 +UniRef50_D9VMY8 4.57145055376e-05 0.00342465599954 0.003378941494 +UniRef50_A0A011P7P6 Putative carbamoyl transferase, NodU family 7.34885117805e-05 0.00076722108167 0.00069373256989 +UniRef50_G9ZBL9 0.000282967258073 0.000968841557828 0.000685874299755 +UniRef50_G7U641 0.000124173022652 0.00406619148961 0.00394201846696 +UniRef50_UPI0003B5C516 iron ABC transporter permease 1.15978470049e-05 7.33025129992e-05 6.17046659943e-05 +UniRef50_B0VC22 Alpha ketoglutarate dependent taurine dioxygenase (Sulfate starvation induced protein 3) (SSI3) 0.000257669616962 0.00259263450134 0.00233496488438 +UniRef50_UPI00046F1DB8 hypothetical protein 1.69084650167e-06 1.57605206318e-06 -1.1479443849e-07 +UniRef50_B4F197 3 isopropylmalate dehydratase small subunit 4.45238707479e-05 6.26890054657e-05 1.81651347178e-05 +UniRef50_UPI0003632A72 hypothetical protein 2.00031064591e-05 1.6144201529e-06 -1.83886863062e-05 +UniRef50_UPI00036D8769 hypothetical protein 2.07203364137e-05 8.75678557014e-06 -1.19635508436e-05 +UniRef50_C5QMF5 0.000274345686213 0.000123158846332 -0.000151186839881 +UniRef50_P76180 Inner membrane protein YdgK 0.00106235436086 0.000826424439199 -0.000235929921661 +UniRef50_A5CXF1 Acetylglutamate kinase 0.000201608148679 0.00175115336717 0.00154954521849 +UniRef50_Q5HLT6 Abortive infection family protein 0.0182775108759 0.00534404045403 -0.0129334704219 +UniRef50_Q4FUL2 Tryptophan synthase alpha chain 1.15892789525e-05 3.28964249523e-05 2.13071459998e-05 +UniRef50_X2M4D8 0.000770379569081 0.000467992588528 -0.000302386980553 +UniRef50_B0CDQ3 UPF0246 protein AM1_4276 4.65786104097e-06 8.49381739614e-06 3.83595635517e-06 +UniRef50_G8PMP6 Endoribonuclease L PSP 0.000363513067692 0.000154817983405 -0.000208695084287 +UniRef50_V6URL6 Cell envelope biogenesis protein AsmA 1.10892538922e-05 1.25218155727e-05 1.4325616805e-06 +UniRef50_X2H351 2.84756497483e-05 2.85282649532e-05 5.26152049e-08 +UniRef50_U6KK83 4.97565011699e-05 8.49458792466e-06 -4.12619132452e-05 +UniRef50_UPI00036BEE13 hypothetical protein 4.94357235951e-05 2.2624328059e-05 -2.68113955361e-05 +UniRef50_UPI00046D6656 hypothetical protein 3.25145387086e-06 4.71171945828e-06 1.46026558742e-06 +UniRef50_Q165E2 1,4 alpha glucan branching enzyme GlgB 3.94189825019e-06 3.27944427029e-06 -6.624539799e-07 +UniRef50_UPI000315BFA8 hypothetical protein 8.67844005852e-06 8.53644743749e-06 -1.4199262103e-07 +UniRef50_UPI00035CD1FF hypothetical protein 1.38963729088e-05 1.09064110583e-05 -2.9899618505e-06 +UniRef50_UPI000469790A hypothetical protein 0.000239251470474 7.56707628382e-05 -0.000163580707636 +UniRef50_Q4L4C2 Fructose specific permease 0.0250728254733 0.00876659851908 -0.0163062269542 +UniRef50_UPI0003FDF28D AMP dependent synthetase 1.16613846236e-05 2.90173312644e-05 1.73559466408e-05 +UniRef50_M1MC89 Cell wall hydrolase 0.000555126454193 0.00060847863502 5.3352180827e-05 +UniRef50_Q5LWG6 0.0100960318222 0.00151255596664 -0.00858347585556 +UniRef50_A6LRW3 Phage major capsid protein, HK97 family 0.000325718517098 0.000806020591215 0.000480302074117 +UniRef50_C5N1T2 0.00411181451639 0.000942500122969 -0.00316931439342 +UniRef50_P0ABY0 Flagellar protein FliL 0.000750682364195 0.00377000049185 0.00301931812765 +UniRef50_P50971 Thioredoxin reductase 5.32255902692e-05 1.79323577931e-05 -3.52932324761e-05 +UniRef50_W0AMQ6 Cell envelope integrity inner membrane protein TolA 0.000146501677432 0.000349400152972 0.00020289847554 +UniRef50_UPI00047BFB23 hypothetical protein 1.8061693576e-05 0.000167852905616 0.00014979121204 +UniRef50_B9KW07 0.000677512190902 0.000901115685083 0.000223603494181 +UniRef50_C0PKV4 0.000110694834275 0.00039539759228 0.000284702758005 +UniRef50_I4E8E6 6.11920058974e-05 4.36550441335e-05 -1.75369617639e-05 +UniRef50_T2BJL4 ISSoc3 transposase 0.000273540571632 0.00514361420723 0.0048700736356 +UniRef50_Q2FUW3 Accessory Sec system protein Asp1 0.0142619194855 0.00211009529852 -0.012151824187 +UniRef50_UPI0003A6ABB5 sulfonate ABC transporter ATP binding protein 6.99006745546e-05 7.56013544229e-05 5.7006798683e-06 +UniRef50_P37749 Beta 1,6 galactofuranosyltransferase WbbI 0.00245559096698 0.000919581419804 -0.00153600954718 +UniRef50_C5N0Z4 Siderophore biosynthesis protein, IucA IucC family 0.0117060052259 0.00235676076999 -0.00934924445591 +UniRef50_V5VD99 0.000252780796101 0.00625500113512 0.00600222033902 +UniRef50_F8FZJ8 Major facilitator transporter 0.000228410147281 0.000154346710037 -7.4063437244e-05 +UniRef50_Q9LPM9 Branched chain amino acid aminotransferase 6 7.53490755902e-06 2.24529737537e-05 1.49180661947e-05 +UniRef50_Q9RUA0 NADH quinone oxidoreductase subunit N 7.95824291342e-05 0.0226002540623 0.0225206716332 +UniRef50_G6Y8D4 Transposase 0.000118289126582 6.61912370599e-05 -5.20978895221e-05 +UniRef50_Q1G0V6 0.000183557556203 0.00266306269558 0.00247950513938 +UniRef50_Q1G0V5 0.00018946883016 0.000525107495247 0.000335638665087 +UniRef50_X6AX71 0.000976586125756 0.000127059397147 -0.000849526728609 +UniRef50_A1TRM3 Alkanesulfonate monooxygenase 2.46771539709e-05 3.23924530086e-05 7.7152990377e-06 +UniRef50_Q8D032 Putrescine binding periplasmic protein 0.00198591008641 0.00124354448994 -0.00074236559647 +UniRef50_UPI0003658106 hypothetical protein 3.76002895475e-05 1.15004128274e-05 -2.60998767201e-05 +UniRef50_A6L170 NADH quinone oxidoreductase subunit B 1.959131078e-05 0.00280851785292 0.00278892654214 +UniRef50_UPI000307B6D2 hypothetical protein 5.09050114678e-05 0.000100811997478 4.99069860102e-05 +UniRef50_A6LQN1 0.000136605303564 0.00219094971619 0.00205434441263 +UniRef50_UPI0003620B51 hypothetical protein 1.09453883234e-05 1.81660674291e-05 7.2206791057e-06 +UniRef50_UPI000376D6A5 hypothetical protein 0.000248144130823 4.42045452485e-05 -0.000203939585575 +UniRef50_A1KU02 0.000168520530738 0.000250977369854 8.2456839116e-05 +UniRef50_UPI0001746901 leucyl phenylalanyl tRNA protein transferase 1.02958411347e-05 2.21408846248e-05 1.18450434901e-05 +UniRef50_P77596 0.00123419443709 0.000196163311307 -0.00103803112578 +UniRef50_UPI0002F262C3 hypothetical protein 0.000154769699674 4.70617012545e-05 -0.000107707998419 +UniRef50_A5VRG1 0.000382469253204 0.000191896255988 -0.000190572997216 +UniRef50_UPI0002BC7439 hypothetical protein 3.13429970243e-05 0.000241420379894 0.00021007738287 +UniRef50_P23189 Glutathione reductase 0.00292648310971 0.00188678545604 -0.00103969765367 +UniRef50_B2S648 Protein RecA 0.00555168569786 0.00393852958417 -0.00161315611369 +UniRef50_M4YYE1 Universal stress protein 0.0126884230222 0.000858414500682 -0.0118300085215 +UniRef50_E6MZX2 0.000145976705705 0.00357737506393 0.00343139835823 +UniRef50_B0VSH7 Outer membrane lipoproteins carrier protein 0.000209714438257 0.00114041865536 0.000930704217103 +UniRef50_Q7AX70 FhaC protein 0.000131990976721 0.00543933943015 0.00530734845343 +UniRef50_UPI0003C757EC LuxR family transcriptional regulator 1.44228219278e-05 9.3792265116e-05 7.93694431882e-05 +UniRef50_P16701 Sulfate transport system permease protein CysT 0.00246343349573 0.00854212828943 0.0060786947937 +UniRef50_W9GLM8 0.000233978918713 0.000108833678059 -0.000125145240654 +UniRef50_D3P377 Simple sugar transport system permease protein 0.0130930815522 0.00166376860096 -0.0114293129512 +UniRef50_UPI000409B662 hypothetical protein 2.4300908401e-05 2.23178409345e-05 -1.9830674665e-06 +UniRef50_G7M4C6 0.00150283802342 0.000799117776273 -0.000703720247147 +UniRef50_F0Y5D8 Expressed protein 0.000265308422183 0.000119966163246 -0.000145342258937 +UniRef50_F5Z794 FMN binding oxidoreductase 0.000642047765232 0.00331828055204 0.00267623278681 +UniRef50_K0RRH8 0.00130700349402 0.009434495105 0.00812749161098 +UniRef50_M4X5I0 Response regulator receiver modulated diguanylate cyclase phosphodiesterase 0.0012062793865 0.000310009632749 -0.000896269753751 +UniRef50_UPI000378EFFC hypothetical protein 0.00029668115103 6.23719181074e-05 -0.000234309232923 +UniRef50_UPI00030E8238 hypothetical protein 1.62676695085e-05 4.38487211923e-06 -1.18827973893e-05 +UniRef50_Q92506 Estradiol 17 beta dehydrogenase 8 1.75382891136e-05 4.61871393011e-05 2.86488501875e-05 +UniRef50_P39333 Cyclic di GMP binding biofilm dispersal mediator protein 0.0037941477395 0.000877195807327 -0.00291695193217 +UniRef50_D9VNI8 Galactose oxidase 0.000456145361199 0.00013150105369 -0.000324644307509 +UniRef50_Q8CN30 Thiazole synthase 0.0104543284896 0.00102059142058 -0.00943373706902 +UniRef50_Q71YH9 Dihydroorotase 0.022833128131 0.0050923225525 -0.0177408055785 +UniRef50_A0JUU8 tRNA pseudouridine synthase B 0.000844875575059 0.00785024750816 0.0070053719331 +UniRef50_P54383 Farnesyl diphosphate synthase 1.86914629752e-05 0.000547863115053 0.000529171652078 +UniRef50_Q6GJ46 Putative antiporter subunit mnhB2 0.00891400485779 0.00901556091592 0.00010155605813 +UniRef50_A6LW15 ROK family protein 0.000322526474055 0.00133353847767 0.00101101200361 +UniRef50_Q9ZHC7 Silver exporting P type ATPase 4.04979096332e-06 1.47177746395e-05 1.06679836762e-05 +UniRef50_N4BUJ9 ATP dependent helicase HrpA 0.00133894560082 0.000638484455681 -0.000700461145139 +UniRef50_UPI000346DC0F hypothetical protein 1.63956734181e-05 1.35516514113e-05 -2.8440220068e-06 +UniRef50_X2HS12 Multidrug transporter 6.9178861735e-05 0.0034652787341 0.00339609987237 +UniRef50_Q9NQW7 Xaa Pro aminopeptidase 1 3.64542599782e-06 8.06819990845e-06 4.42277391063e-06 +UniRef50_W5XIY9 0.000417712798123 7.2446503745e-05 -0.000345266294378 +UniRef50_UPI0003785425 hypothetical protein 8.06664251248e-05 4.24296270106e-05 -3.82367981142e-05 +UniRef50_K7T5I3 2.81963860326e-05 2.55253018819e-05 -2.6710841507e-06 +UniRef50_G7U9V5 1.22695688869e-05 0.00128398567476 0.00127171610587 +UniRef50_UPI00047018EB hypothetical protein 0.000460398289766 0.000196912304698 -0.000263485985068 +UniRef50_I3Y6A0 CRISPR associated helicase, Cas3 family 5.15929001838e-05 1.88104348598e-05 -3.2782465324e-05 +UniRef50_C5TD27 Xanthine dehydrogenase accessory protein XdhC 6.3056035085e-06 3.67076114321e-05 3.04020079236e-05 +UniRef50_Q0IDE8 Bifunctional purine biosynthesis protein PurH 3.56121505315e-06 5.68540291034e-06 2.12418785719e-06 +UniRef50_P96110 Glutamate dehydrogenase 8.08573526118e-06 0.000669483390311 0.00066139765505 +UniRef50_A3PRG7 Extradiol ring cleavage dioxygenase, class III enzyme, subunit B 0.00324559664414 0.00251461018982 -0.00073098645432 +UniRef50_UPI0001E8E9B9 PTS system, cellobiose specific IIC component, partial 3.50174448055e-05 4.67814083438e-05 1.17639635383e-05 +UniRef50_Q8KY51 Protein phosphatase PhpP 0.00882582267538 0.00298640368895 -0.00583941898643 +UniRef50_L9CVM1 CO dehydrogenase flavoC terminal domain protein 0.000150458910931 0.000286866145984 0.000136407235053 +UniRef50_UPI00047124E8 hypothetical protein 6.52502705794e-06 5.13620564083e-06 -1.38882141711e-06 +UniRef50_Q838L1 Rhamnulose 1 phosphate aldolase 1.02966690407e-05 0.00122386949404 0.001213572825 +UniRef50_P45541 Protein FrlC 0.00420105120066 0.00048412574623 -0.00371692545443 +UniRef50_I2FAM9 Serine protease Do 8.93810549727e-05 0.00461845774432 0.00452907668935 +UniRef50_N6VEV1 0.000254157238898 0.000526634170831 0.000272476931933 +UniRef50_B8EMC7 1.16806089355e-06 2.46030326665e-05 2.34349717729e-05 +UniRef50_Q08194 Cysteine rich extensin like protein 1 0.000120328251754 4.15421666867e-05 -7.87860850673e-05 +UniRef50_B7UI87 Protein FixA 0.00180068068382 0.00023688505764 -0.00156379562618 +UniRef50_T1Y9S4 Phosphoesterase family protein 0.00824980101019 0.00186744007426 -0.00638236093593 +UniRef50_A9AQ58 Aldehyde Dehydrogenase 0.000291894248533 0.00750247704093 0.0072105827924 +UniRef50_R7RGB1 0.000410562620543 4.62700554433e-05 -0.0003642925651 +UniRef50_D5AR26 Histidine ammonia lyase 0.00643388321354 0.00157195134562 -0.00486193186792 +UniRef50_M9VD49 Sua5 YciO YrdC YwlC family protein 0.00039130817473 0.00581404264265 0.00542273446792 +UniRef50_M1MLW9 0.000541182709978 0.00102718853981 0.000486005829832 +UniRef50_UPI000475FB40 hypothetical protein, partial 1.8981962984e-05 4.86133478904e-05 2.96313849064e-05 +UniRef50_D7AAI4 Peptidyl prolyl cis trans isomerase 0.00223649737417 0.000608900423076 -0.00162759695109 +UniRef50_P17583 Cyanate transport protein CynX 0.00265330720421 0.00439361592331 0.0017403087191 +UniRef50_A5KZA1 0.000209366426369 0.000473633001244 0.000264266574875 +UniRef50_W0H3E7 0.000248534016838 0.000158391115868 -9.014290097e-05 +UniRef50_O86507 Urease subunit gamma beta 8.56178580122e-06 0.000124965916391 0.00011640413059 +UniRef50_Q01993 Riboflavin synthase 2.74857355682e-05 0.0122935730735 0.0122660873379 +UniRef50_A9QYJ6 Tellurium resistance protein 0.000584487712967 0.0694667828496 0.0688822951366 +UniRef50_Q53726 Heptaprenylglyceryl phosphate synthase 0.0151622029008 0.00350863017196 -0.0116535727288 +UniRef50_U5MQB0 DNA polymerase III epsilon subunit like 3 5 exonuclease 0.000295569823245 0.00141261043477 0.00111704061153 +UniRef50_P75820 N acetylmuramoyl L alanine amidase AmiD 0.0030064394004 0.000949081265654 -0.00205735813475 +UniRef50_UPI00036D10D1 hypothetical protein 0.00121646092353 0.000642762617483 -0.000573698306047 +UniRef50_A0B343 Binding protein dependent transport systems inner membrane component 0.00845056234471 0.00393320019857 -0.00451736214614 +UniRef50_Q1GCC9 Flagellar biosynthetic protein flhB 0.00796323140706 0.00194880883204 -0.00601442257502 +UniRef50_Q9ZH77 Malate synthase 1.39148058592e-05 2.13304655663e-05 7.4156597071e-06 +UniRef50_UPI00046CFBE6 acyl CoA dehydrogenase 6.82888352512e-06 0.000164064836215 0.00015723595269 +UniRef50_F0KN46 Threonine dehydratase catabolic 0.000103232266783 0.00560520249971 0.00550197023293 +UniRef50_L0DM84 1.73454969327e-05 7.47568788217e-06 -9.86980905053e-06 +UniRef50_O84823 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.25746442527e-05 1.84711007095e-05 5.8964564568e-06 +UniRef50_A4WVF0 Glucose sorbosone dehydrogenase 0.007971401732 0.000770408156694 -0.00720099357531 +UniRef50_UPI0003B3270D iron ABC transporter ATP binding protein 1.06714927643e-05 0.000419865912883 0.000409194420119 +UniRef50_Q9K9X4 Transposase related protein 0.000247802618498 0.00186590295227 0.00161810033377 +UniRef50_UPI00037D8C4A hypothetical protein 4.24497101115e-06 7.67790204472e-06 3.43293103357e-06 +UniRef50_F8JB05 1.2834847421e-05 1.82300508528e-05 5.3952034318e-06 +UniRef50_UPI000377A6D2 cold shock protein 1.12222600386e-05 6.10776688798e-06 -5.11449315062e-06 +UniRef50_UPI00047DCFEE MarR family transcriptional regulator 1.26560960088e-05 4.13777755241e-05 2.87216795153e-05 +UniRef50_UPI00036E9D0F hypothetical protein 0.000128020255547 8.69219225664e-05 -4.10983329806e-05 +UniRef50_Q2FG29 Alanine dehydrogenase 2 0.0269328599985 0.035107418586 0.0081745585875 +UniRef50_Q6A5S0 Probable potassium transport system protein kup 8.32077859384e-05 0.0065296891444 0.00644648135846 +UniRef50_R5T303 0.000180636541122 4.33289887985e-05 -0.000137307552323 +UniRef50_A9AQT5 0.0068770406176 0.00050338074749 -0.00637365987011 +UniRef50_L1NZZ4 0.000469547999705 0.000548119772464 7.8571772759e-05 +UniRef50_Z6HHY0 0.000106434019418 8.74985770602e-05 -1.89354423578e-05 +UniRef50_UPI00047D45C1 cysteine desulfurase 2.21798720113e-05 0.000101844412104 7.96645400927e-05 +UniRef50_A2XBC4 0.00228473895238 0.000219838738361 -0.00206490021402 +UniRef50_UPI0004651636 hypothetical protein 0.000110827995103 4.87007501649e-05 -6.21272449381e-05 +UniRef50_J7R4R4 Pleiotrophic effects on 3 hydrogenase isozymes 0.00280208829306 0.000682379141098 -0.00211970915196 +UniRef50_F3WHR7 Starvation sensing protein rspA 0.00263712159185 0.000525067199596 -0.00211205439225 +UniRef50_A0A023RWV4 Histidine kinase 0.00019667122319 0.00513423053322 0.00493755931003 +UniRef50_C1N829 Predicted protein 6.33792468556e-06 0.000441552582737 0.000435214658051 +UniRef50_P23921 Ribonucleoside diphosphate reductase large subunit 2.93939043549e-06 0.000236614229776 0.000233674839341 +UniRef50_P35483 Alkaline phosphatase H 0.000967308257962 0.000557068713933 -0.000410239544029 +UniRef50_A0RU57 8.32635333901e-06 7.3868188941e-05 6.5541835602e-05 +UniRef50_Q9I406 Gamma glutamyltranspeptidase 0.000352845315482 0.000304059782712 -4.878553277e-05 +UniRef50_R9SL02 Heavy metal translocating P type ATPase 0.0033916913342 0.000761426041618 -0.00263026529258 +UniRef50_UPI0003B6145B ABC transporter 3.53472061581e-05 7.3161796178e-05 3.78145900199e-05 +UniRef50_H5IZ71 0.000854763273451 0.000902444607244 4.7681333793e-05 +UniRef50_F9YXP6 0.000472962942534 0.0041037498896 0.00363078694707 +UniRef50_UPI00041FBFE4 transcriptional regulator 2.70723079266e-05 3.21268342669e-05 5.0545263403e-06 +UniRef50_UPI00035E0033 hypothetical protein 2.82478914101e-05 2.20990300734e-05 -6.1488613367e-06 +UniRef50_I6T5B9 Transcriptional regulator 0.0063447190306 0.00284113914307 -0.00350357988753 +UniRef50_UPI000370C159 hypothetical protein 0.000190389779155 1.13571134971e-05 -0.000179032665658 +UniRef50_A9VIS8 UPF0758 protein BcerKBAB4_4299 0.0143862482617 0.00679762790384 -0.00758862035786 +UniRef50_M9VBP8 0.0001909709893 0.00309564666142 0.00290467567212 +UniRef50_A1A2G3 LexA repressor 4.38984494777e-05 1.08219407825e-05 -3.30765086952e-05 +UniRef50_UPI00037C10BF hypothetical protein 6.17365736436e-05 5.44869762894e-06 -5.62878760147e-05 +UniRef50_D9RNU6 Ferrichrome ABC transporter subunit 0.00983453771375 0.00257531841779 -0.00725921929596 +UniRef50_D5CRQ8 TRAP dicarboxylate transporter, DctP subunit 0.0110907431185 0.00179070892151 -0.00930003419699 +UniRef50_UPI00046CD945 hypothetical protein 1.56943776114e-05 4.57678010027e-05 3.00734233913e-05 +UniRef50_Q58070 Dihydroorotate dehydrogenase B ), catalytic subunit 0.00149369079139 0.000291430959074 -0.00120225983232 +UniRef50_Q9RSA9 0.000184740288181 0.030155549551 0.0299708092628 +UniRef50_V7ZGG5 OmpW family outer membrane protein 0.0199386561703 0.0010242197868 -0.0189144363835 +UniRef50_UPI00029B3E2F replication factor A 1.03547792301e-05 4.10329426536e-05 3.06781634235e-05 +UniRef50_D7BHE9 Transcriptional activator domain protein 5.29331185719e-06 2.13967185638e-06 -3.15364000081e-06 +UniRef50_D4HCR0 0.00026185134639 0.00560652877988 0.00534467743349 +UniRef50_Q5HNV7 ComE operon protein 1, putative 0.00719814745666 0.000871590521789 -0.00632655693487 +UniRef50_P46843 Bifunctional thioredoxin reductase thioredoxin 0.000115315227933 0.000182375796055 6.7060568122e-05 +UniRef50_R4LUX8 7.18453675114e-06 1.43733730672e-05 7.18883631606e-06 +UniRef50_S9R328 Xanthine and CO dehydrogenase maturation factor, XdhC CoxF family 1.179493136e-05 1.83485201199e-05 6.5535887599e-06 +UniRef50_R6BD47 4.01193421282e-05 3.15023159993e-05 -8.6170261289e-06 +UniRef50_O28142 Phosphoserine phosphatase 4.81532526702e-06 9.37944470692e-06 4.5641194399e-06 +UniRef50_UPI00046385E1 multidrug ABC transporter 7.29140141895e-06 6.4394726375e-05 5.71033249561e-05 +UniRef50_U2SYT7 1.5690564263e-05 2.88100012715e-05 1.31194370085e-05 +UniRef50_L0FSR8 TolC family type I secretion outer membrane protein 0.000726389583344 0.000294842672612 -0.000431546910732 +UniRef50_K7R3S2 6.46406434626e-05 1.44259095546e-05 -5.0214733908e-05 +UniRef50_S3P9S1 0.000151907083638 0.00682094276177 0.00666903567813 +UniRef50_I7DPT5 0.00924712400842 0.00184952450445 -0.00739759950397 +UniRef50_UPI0003641916 hypothetical protein 3.17732199461e-06 4.98579441679e-06 1.80847242218e-06 +UniRef50_Q8CR25 0.0029137438575 0.00142490690233 -0.00148883695517 +UniRef50_J6LH83 PE PGRS family protein 2.08491533149e-05 2.03255288594e-05 -5.236244555e-07 +UniRef50_H3VJS7 0.00781287229804 0.00229869888127 -0.00551417341677 +UniRef50_A6M1M4 0.000238915182824 0.000876730167469 0.000637814984645 +UniRef50_G0AAP1 Sulfate adenylyltransferase subunit 1 0.00013291760171 0.00550238213934 0.00536946453763 +UniRef50_UPI00026276D2 inner membrane translocator 0.000437298535183 6.89946108793e-05 -0.000368303924304 +UniRef50_E1Z5M0 4.7248663547e-05 0.000134627942383 8.7379278836e-05 +UniRef50_Q04PF0 Glutamate tRNA ligase 3.79225665873e-06 4.50381795668e-06 7.1156129795e-07 +UniRef50_UPI0003F4A008 hypothetical protein TREMEDRAFT_32941 4.28269234913e-05 0.000164444627915 0.000121617704424 +UniRef50_UPI00046874E6 hypothetical protein 4.11671780792e-05 8.29003363121e-06 -3.2877144448e-05 +UniRef50_UPI0003815981 hypothetical protein 1.04319004556e-05 0.000143914612839 0.000133482712383 +UniRef50_Q899C3 Isoleucine tRNA ligase 0.000277875881126 0.00126095067952 0.000983074798394 +UniRef50_UPI0003B62A8A hypothetical protein 0.000208046378055 7.18304745803e-05 -0.000136215903475 +UniRef50_A8FNY3 Enolase 7.77379841196e-06 0.000102907234683 9.5133436271e-05 +UniRef50_UPI000468DB65 leucyl tRNA synthetase 0.00763843647986 0.00266581924649 -0.00497261723337 +UniRef50_B2TMH9 Autolytic lysozyme 0.000746606065437 0.00514698973474 0.0044003836693 +UniRef50_UPI00041375E2 cation 0.00524513749207 0.00144328094373 -0.00380185654834 +UniRef50_W4LU01 6.93622058191e-05 7.46572567789e-05 5.2950509598e-06 +UniRef50_G5P4U0 Potassium efflux system KefA 0.000524777478615 0.000229660863177 -0.000295116615438 +UniRef50_UPI00042B93D3 Ribosomal protein S9 isoform 1 3.43978094443e-05 7.36707639765e-05 3.92729545322e-05 +UniRef50_Q9RRE8 0.000309414744966 0.0252345060504 0.0249250913054 +UniRef50_I1E9S6 8.60398934553e-05 1.30538713199e-05 -7.29860221354e-05 +UniRef50_UPI0002FC4FA4 hypothetical protein 3.91877773919e-06 0.000300965304628 0.000297046526889 +UniRef50_P77389 Inner membrane transport protein YdhP 0.00476608150304 0.0100764273687 0.00531034586566 +UniRef50_UPI000475B66E phosphoenolpyruvate synthase 1.84126723554e-06 0.000196088747194 0.000194247479958 +UniRef50_B8IW50 7.74415896331e-06 7.21415818993e-06 -5.3000077338e-07 +UniRef50_UPI0004717EC9 hypothetical protein, partial 1.21722485183e-05 2.68377987758e-05 1.46655502575e-05 +UniRef50_S6AW69 0.000151342128602 0.000121598484056 -2.9743644546e-05 +UniRef50_Q1J212 Peptide chain release factor 2 0.000522212461196 0.0475139109057 0.0469916984445 +UniRef50_D2V1D7 5.85442293337e-05 2.54704061801e-05 -3.30738231536e-05 +UniRef50_Q92HI8 Pyruvate, phosphate dikinase 5.24655796765e-06 1.36269826333e-05 8.38042466565e-06 +UniRef50_T2E942 Helix turn helix domain protein 0.000416873661651 0.000199089913611 -0.00021778374804 +UniRef50_UPI0003B650F3 hypothetical protein 3.77435423094e-06 2.99446742807e-05 2.61703200498e-05 +UniRef50_A6M324 0.000425371116535 0.0014582154319 0.00103284431536 +UniRef50_T3G5Y0 Ferrous iron transport protein B 0.000363640057678 0.00132673064976 0.000963090592082 +UniRef50_Q15P31 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.37532063541e-06 1.08712708747e-05 5.49595023929e-06 +UniRef50_Q3IY12 Thiamine import ATP binding protein ThiQ 8.71396073511e-06 2.34326223789e-05 1.47186616438e-05 +UniRef50_I0E580 0.000186753458811 0.0032162681675 0.00302951470869 +UniRef50_UPI000478031E 50S ribosomal protein L3 1.17381648547e-05 0.000382009431765 0.00037027126691 +UniRef50_C6SQB8 0.00275762954035 0.000920720011175 -0.00183690952918 +UniRef50_UPI0002F01DF0 hypothetical protein 8.04120350331e-06 3.1933107347e-05 2.38919038437e-05 +UniRef50_B5F623 Uronate isomerase 7.42852274764e-06 0.0051445997467 0.00513717122395 +UniRef50_G3ECR2 CRISPR associated endonuclease Cas1 0.00604804628175 0.00311258378819 -0.00293546249356 +UniRef50_A0Q0N0 5 methyltetrahydrofolate homocysteine methyltransferase, putative 0.000209702096469 0.00308217956529 0.00287247746882 +UniRef50_W1VEW5 5.51818055216e-05 0.0001810137117 0.000125831906178 +UniRef50_P0AC06 Flagellar biosynthetic protein FliP 0.00788631526036 0.00296154101091 -0.00492477424945 +UniRef50_V5PI53 Glyoxalase family protein 0.000172374381514 7.07011469337e-05 -0.00010167323458 +UniRef50_D8JGK5 RDD family protein 0.000152007780746 0.0103696193525 0.0102176115718 +UniRef50_B9ECE2 0.00041048444449 5.20162021235e-05 -0.000358468242366 +UniRef50_Q9ZMS7 Protein RecA 0.000738798464809 0.00400306406329 0.00326426559848 +UniRef50_M9VGZ5 0.000272718039927 0.00281490906634 0.00254219102641 +UniRef50_A3PKV8 Drug resistance transporter, EmrB QacA subfamily 0.000261727535746 0.000402703752633 0.000140976216887 +UniRef50_I9V7J9 Outer membrane protein HopL 3.20537210985e-05 0.00418938497901 0.00415733125791 +UniRef50_S4MVA0 4.56681997051e-05 1.01133044218e-05 -3.55548952833e-05 +UniRef50_E4BBY5 0.00020367949039 0.000322750497486 0.000119071007096 +UniRef50_W9GWC0 Rrf2 family transcriptional regulator 2.96603612052e-05 4.65347506707e-05 1.68743894655e-05 +UniRef50_Q06129 Anthranilate synthase component 2 0.000579524916815 0.00356317779097 0.00298365287415 +UniRef50_UPI00036E37BC hypothetical protein 8.32017367443e-06 8.57557590806e-05 7.74355854062e-05 +UniRef50_W5E0V3 4.24582565453e-06 3.19105500648e-05 2.76647244103e-05 +UniRef50_B1IBC6 Fibronectin fibrinogen binding protein 0.000540837646435 0.00225774426222 0.00171690661579 +UniRef50_Z0CP45 0.00134563954941 0.000245415544476 -0.00110022400493 +UniRef50_T2LAG0 0.000123626698192 0.000239194189197 0.000115567491005 +UniRef50_UPI0003C1315E 1.03633091753e-05 6.34460281159e-06 -4.01870636371e-06 +UniRef50_P10518 Delta aminolevulinic acid dehydratase 1.6225866125e-05 2.48531422668e-05 8.6272761418e-06 +UniRef50_UPI000367CE13 hypothetical protein 5.107248515e-06 6.01323641111e-05 5.50251155961e-05 +UniRef50_P39344 Gnt II system L idonate transporter 0.00273277837594 0.000821525301176 -0.00191125307476 +UniRef50_B8C850 1.6390173704e-05 3.81970678606e-06 -1.25704669179e-05 +UniRef50_W1G461 DNA replication and repair protein RecF 0.00196550738776 0.00026134221699 -0.00170416517077 +UniRef50_Q6F2Y7 Chaperone protein ClpB1 0.00462270879769 0.0461674086875 0.0415446998898 +UniRef50_Y5GWB2 0.00174480820116 7.44695276172e-05 -0.00167033867354 +UniRef50_M9RHC7 ABC transporter permease protein 0.00626284837319 0.00144074977298 -0.00482209860021 +UniRef50_UPI0003B304AC phosphate ABC transporter ATP binding protein 9.51050573549e-06 2.15429035754e-05 1.20323978399e-05 +UniRef50_G9NBA4 3.20632121494e-05 1.52155689239e-05 -1.68476432255e-05 +UniRef50_UPI000237A937 two component hybrid sensor and regulator 1.18802098954e-05 7.62401606031e-06 -4.25619383509e-06 +UniRef50_Q9FE64 Elongation factor G, mitochondrial 1.1134442555e-05 9.25392944305e-06 -1.88051311195e-06 +UniRef50_Q94JQ3 Serine hydroxymethyltransferase 3, chloroplastic 8.5698984447e-05 4.77148889033e-05 -3.79840955437e-05 +UniRef50_A6LTX4 0.00014173441384 0.000499080931792 0.000357346517952 +UniRef50_Q08Q97 3.19454152306e-05 0.000127109055325 9.51636400944e-05 +UniRef50_O31703 Molybdopterin molybdenumtransferase 0.0207463389576 0.00695586478596 -0.0137904741716 +UniRef50_V9GHA4 Magnesium and cobalt efflux protein CorC 2.08470993418e-05 0.00050578786233 0.000484940762988 +UniRef50_Q5HMD2 HD domain protein 0.00385699326821 0.00536481491767 0.00150782164946 +UniRef50_UPI00036F8E58 hypothetical protein 0.000131532710347 4.68161794405e-05 -8.47165309065e-05 +UniRef50_UPI000365B7D1 30S ribosomal protein S4, partial 4.22154676248e-05 0.000173079630694 0.000130864163069 +UniRef50_G0XAE5 Type IV conjugative transfer system protein TraN 4.9063336434e-06 3.31955929418e-06 -1.58677434922e-06 +UniRef50_Q49XZ6 Superoxide dismutase [Mn Fe] 0.0100681801021 0.00232986667241 -0.00773831342969 +UniRef50_A1TT20 Cytochrome c oxidase 0.00136656929874 0.000215054293331 -0.00115151500541 +UniRef50_D3VAJ4 Complete genome segment 14 17 4.13987943052e-05 0.000218658825764 0.000177260031459 +UniRef50_D5V1H1 Type VI secretion protein, VC_A0114 family 3.59566170659e-06 6.75683525862e-06 3.16117355203e-06 +UniRef50_UPI00037B97B7 hypothetical protein 8.84068114742e-05 5.51423137493e-05 -3.32644977249e-05 +UniRef50_A0A014PLF9 5.92909930107e-05 0.00148416884679 0.00142487785378 +UniRef50_B2U7R1 NADH quinone oxidoreductase subunit A 1.51498658085e-05 0.000180158061911 0.000165008196102 +UniRef50_V5VFY5 Transport protein 0.000699804344762 0.00634389698476 0.00564409264 +UniRef50_N6UGZ5 6.06175308988e-06 1.8951735345e-05 1.28899822551e-05 +UniRef50_Q6GI14 Amidophosphoribosyltransferase 0.0219170130705 0.00924369691412 -0.0126733161564 +UniRef50_R7PYG7 0.00284590018066 0.00196992145052 -0.00087597873014 +UniRef50_Q9ZJ81 NAD kinase 0.000253914342281 0.00544052054655 0.00518660620427 +UniRef50_UPI0003B77512 2,5 diketo D gluconic acid reductase 1.23242435726e-05 8.02953834419e-05 6.79711398693e-05 +UniRef50_A4VV94 0.000367681157978 0.00205437707963 0.00168669592165 +UniRef50_UPI000371E16C hypothetical protein 7.86283867833e-06 1.15286877482e-05 3.66584906987e-06 +UniRef50_Q15QK1 S adenosylmethionine synthase 4.99801043612e-05 0.000451885849153 0.000401905744792 +UniRef50_Q8DWE6 Constitutive fructose permease 0.00797593717048 0.000392013325476 -0.007583923845 +UniRef50_B1YK83 DNA polymerase IV 4.03216657662e-06 8.9660656987e-06 4.93389912208e-06 +UniRef50_UPI00040FF8E8 hypothetical protein 4.5261071814e-05 0.000102528447987 5.7267376173e-05 +UniRef50_Q4L449 Putative antiporter subunit mnhG2 0.0072777920158 0.00577091843037 -0.00150687358543 +UniRef50_UPI00003799C3 hypothetical protein 0.00741147326252 0.00137434836273 -0.00603712489979 +UniRef50_A1BG26 Acetylglutamate kinase 9.35067243003e-06 5.65681464676e-06 -3.69385778327e-06 +UniRef50_UPI000049D95F hypothetical protein SPOA0411 0.000241555302613 0.000216286213806 -2.5269088807e-05 +UniRef50_Q8DUE1 Ribonuclease HII 0.00574401320404 0.00225460120716 -0.00348941199688 +UniRef50_S6C0Y4 Citrate transporter protein 0.00494139679158 0.00205409685457 -0.00288729993701 +UniRef50_UPI00037DA3B2 hypothetical protein 2.35912782925e-05 2.35002673458e-05 -9.10109467e-08 +UniRef50_P73241 Probable copper transporting ATPase PacS 8.07813878977e-06 1.08982552142e-05 2.82011642443e-06 +UniRef50_Q6G960 Ribonuclease Z 0.0173046360132 0.00768407166095 -0.00962056435225 +UniRef50_G4B7N4 3.51644692866e-05 0.000158508526903 0.000123344057616 +UniRef50_B9KWM7 0.00238499322482 0.000387253328522 -0.0019977398963 +UniRef50_R7YC06 Cytosine deaminase 1.14863571635e-05 0.000124431196007 0.000112944838844 +UniRef50_A3PJF3 Binding protein dependent transport systems inner membrane component 0.00255526062517 0.000715640530313 -0.00183962009486 +UniRef50_UPI00047E1F76 hypothetical protein 1.92925408497e-05 4.16244687592e-05 2.23319279095e-05 +UniRef50_C1FNK7 3 oxoacyl [acyl carrier protein] synthase 3 0.000133992589439 1.57875633554e-05 -0.000118205026084 +UniRef50_UPI000376CB6F hypothetical protein 9.24467205415e-06 2.18438008864e-05 1.25991288322e-05 +UniRef50_A6QAV3 Ni Fe hydrogenase, large subunit 8.42602653634e-05 0.00268443002869 0.00260016976333 +UniRef50_X1DLQ6 Marine sediment metagenome DNA, contig 0.000197553994276 4.72158618194e-05 -0.000150338132457 +UniRef50_P12054 Protein rlx 0.000646506702556 0.000136232399105 -0.000510274303451 +UniRef50_E7C7F3 3.93983570562e-05 2.34833252863e-05 -1.59150317699e-05 +UniRef50_B7HHF8 3 isopropylmalate dehydratase small subunit 0.0143862411204 0.0113115955951 -0.0030746455253 +UniRef50_P39277 Inner membrane protein YjeH 0.00285046034572 0.000977585425713 -0.00187287492001 +UniRef50_M0NFH7 0.000411964339439 0.000268982449658 -0.000142981889781 +UniRef50_A0A038J3C7 0.000163995289222 7.67322200082e-05 -8.72630692138e-05 +UniRef50_Q65JD4 5.8574639805e-05 0.000309772767695 0.00025119812789 +UniRef50_Q5RKZ7-2 Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1 4.10905180925e-06 1.48288518579e-05 1.07198000486e-05 +UniRef50_F5X0E4 Major facilitator superfamily protein 0.0040182457739 0.000519479799796 -0.0034987659741 +UniRef50_D3FUC6 [Ni Fe] hydrogenase, small subunit 0.00062334806342 0.00287833180933 0.00225498374591 +UniRef50_R6MP39 3.81623446305e-06 3.65002048045e-05 3.26839703414e-05 +UniRef50_UPI000056DCC0 L serine dehydratase 1, truncated, partial 2.33622974773e-05 5.95756239686e-05 3.62133264913e-05 +UniRef50_Q28VI8 Lytic murein transglycosylase 0.0014966798453 0.000338570115544 -0.00115810972976 +UniRef50_A5F5D8 Cytosol aminopeptidase 0.0044487187437 0.000939216501975 -0.00350950224173 +UniRef50_C5MZL4 0.0167077574453 0.00387404614283 -0.0128337113025 +UniRef50_UPI00034529EA chromate transporter 2.60427375488e-05 0.000140738699848 0.000114695962299 +UniRef50_Q49X30 Ribosome biogenesis GTPase A 0.00599491138894 0.00222816050473 -0.00376675088421 +UniRef50_UPI000225AC87 reverse transcriptase 4.32196796076e-06 1.02104599086e-05 5.88849194784e-06 +UniRef50_Q28V25 Holo [acyl carrier protein] synthase 3.30069552253e-05 0.000108950846025 7.59438907997e-05 +UniRef50_P45423 0.00426110090082 0.00227332936877 -0.00198777153205 +UniRef50_P0DM86 Clamp binding protein CrfC 0.00381476418938 0.000573461853341 -0.00324130233604 +UniRef50_P45421 0.00264557867288 0.00644598433305 0.00380040566017 +UniRef50_P45420 0.00192550147241 0.00141202944665 -0.00051347202576 +UniRef50_UPI0003461C99 hypothetical protein 4.52495170848e-06 0.000351389023307 0.000346864071599 +UniRef50_Q6FA27 0.000760038903732 0.00309830184933 0.0023382629456 +UniRef50_UPI0004759495 membrane protein 7.31557759592e-06 1.90220907522e-05 1.17065131563e-05 +UniRef50_UPI0002FC887C hypothetical protein 4.35669775135e-06 2.96483165427e-06 -1.39186609708e-06 +UniRef50_C3ATQ4 Glycosyltransferase involved in cell wall biogenesis 0.000906228074225 0.000519385625036 -0.000386842449189 +UniRef50_B5I3Q1 Predicted protein 1.15598881123e-05 0.000115917810826 0.000104357922714 +UniRef50_C9TPX2 Pirin family protein 4.87076279894e-06 1.32124614051e-05 8.34169860616e-06 +UniRef50_X1YG35 5.2866770804e-06 1.38339065776e-06 -3.90328642264e-06 +UniRef50_P21338 Ribonuclease I 0.0019279223908 0.00165032781271 -0.00027759457809 +UniRef50_Q00593 Alcohol dehydrogenase [acceptor] 5.96208900771e-05 6.4106662388e-05 4.4857723109e-06 +UniRef50_UPI0003627344 hypothetical protein 0.000260080386324 0.000109582948681 -0.000150497437643 +UniRef50_UPI0003B5CBDB MULTISPECIES 5.15241744015e-05 0.000117133485173 6.56093107715e-05 +UniRef50_U0DBB7 Flagellar transcriptional activator flhC 0.000488128433862 0.00385195702429 0.00336382859043 +UniRef50_D5WDT4 0.00144232101584 0.00110605035407 -0.00033627066177 +UniRef50_UPI0003B41656 hypothetical protein, partial 3.21010482948e-05 3.67301323194e-05 4.6290840246e-06 +UniRef50_Q9KWJ8 Putative acetyltransferase 0.00840620994066 0.000423899576834 -0.00798231036383 +UniRef50_UPI0003B56B90 DNA mismatch repair protein MutS 2.4647654562e-06 9.8434269709e-06 7.3786615147e-06 +UniRef50_M4S5A3 0.000117888270028 4.63055807142e-05 -7.15826893138e-05 +UniRef50_G7SNL0 PfkB family carbohydrate kinase 0.000162011154012 0.00221282796356 0.00205081680955 +UniRef50_UPI00037CCDB1 hypothetical protein 1.29467247214e-05 3.34314783826e-05 2.04847536612e-05 +UniRef50_Q74RF8 Maltose transport system permease protein MalG 0.00136575488815 0.000437593333014 -0.000928161555136 +UniRef50_O31660 Putative membrane bound acyltransferase YkrP 8.27898860164e-06 9.58681120098e-06 1.30782259934e-06 +UniRef50_Q1J0Y6 DNA topoisomerase 0.000399079970787 0.0466147665679 0.0462156865971 +UniRef50_UPI00036A1EC1 hypothetical protein 4.28174133245e-06 6.3277941868e-05 5.89962005356e-05 +UniRef50_UPI000465DC9F hypothetical protein 2.10184779657e-05 3.39873337444e-05 1.29688557787e-05 +UniRef50_D2J7W9 Replication initiation protein 0.00173443353321 0.000507070570232 -0.00122736296298 +UniRef50_P21175 Leucine , isoleucine , valine , threonine , and alanine binding protein 0.00166608576175 0.000775995166179 -0.000890090595571 +UniRef50_P44591 Protein translocase subunit SecD 0.00324027811373 0.000715217541439 -0.00252506057229 +UniRef50_U3STI1 GntR family transcriptional regulator 0.00224441723539 0.00207754015034 -0.00016687708505 +UniRef50_B7VAJ2 0.000845117885494 0.0017897982133 0.000944680327806 +UniRef50_UPI0002F13DE3 hypothetical protein 0.000178044829461 0.000269720014025 9.1675184564e-05 +UniRef50_D4KNP6 Arginine decarboxylase 0.000456528343263 0.00321511711768 0.00275858877442 +UniRef50_I4XMD7 0.0014444746131 0.0014798106935 3.53360804e-05 +UniRef50_M8HEB4 Bacteriophage replication gene A protein (Fragment) 0.00061921216203 0.00644626569679 0.00582705353476 +UniRef50_P24193 Hydrogenase isoenzymes formation protein HypE 0.00401322987455 0.000273864023365 -0.00373936585119 +UniRef50_UPI0004093BB4 AsnC family transcriptional regulator 6.20507623063e-05 5.79694823638e-05 -4.0812799425e-06 +UniRef50_UPI00036A6233 hypothetical protein 4.79809914312e-06 1.20738801511e-05 7.27578100798e-06 +UniRef50_G3XZQ5 3.35347678257e-06 0.00026558515391 0.000262231677127 +UniRef50_A0RG68 0.000555544956797 0.00155185937777 0.000996314420973 +UniRef50_Q5M378 0.00609339214724 0.0075248590083 0.00143146686106 +UniRef50_D8LYQ1 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 5.63809521599e-05 0.00113898802205 0.00108260706989 +UniRef50_UPI000424B474 DEAD DEAH box helicase 2.29932718252e-05 8.64459789658e-05 6.34527071406e-05 +UniRef50_Q1I665 1.16808923219e-05 2.00381453533e-05 8.3572530314e-06 +UniRef50_C1DR24 Ribonuclease E 0.000312284198896 5.94198602059e-05 -0.00025286433869 +UniRef50_Q045P5 UPF0297 protein LGAS_0422 0.00193398865863 0.00219736482839 0.00026337616976 +UniRef50_U9DMQ5 7.34408538612e-05 0.000115508489646 4.20676357848e-05 +UniRef50_UPI00036D4795 hypothetical protein 1.38231174191e-05 2.80312899246e-05 1.42081725055e-05 +UniRef50_UPI0002FA6B33 hypothetical protein 6.81086224474e-05 7.97087729067e-05 1.16001504593e-05 +UniRef50_Q04U59 1 deoxy D xylulose 5 phosphate synthase 2.02223441495e-06 5.56967297079e-05 5.36744952929e-05 +UniRef50_Q8YHG4 Glutamate tRNA ligase 1 0.0131609789122 0.00160531151154 -0.0115556674007 +UniRef50_U8XD19 0.000310707576748 0.000443420006233 0.000132712429485 +UniRef50_A6W6P9 3 dehydroquinate dehydratase 6.70523283263e-05 1.95096756486e-05 -4.75426526777e-05 +UniRef50_UPI000464ACF3 hypothetical protein 4.57056753325e-05 1.36335307615e-05 -3.2072144571e-05 +UniRef50_U7DNG8 Peptidase M19 0.000294047659564 0.00075159611247 0.000457548452906 +UniRef50_P30900 Acetylornithine aminotransferase 0.00269185039001 0.000894567252223 -0.00179728313779 +UniRef50_R6KIL0 YihY family protein 0.000709263862143 0.00263847754524 0.0019292136831 +UniRef50_A8AZM1 30S ribosomal protein S19 0.000918664690004 0.0053579068465 0.0044392421565 +UniRef50_Q2NI56 tRNA N(2)) dimethyltransferase 0.00342774010115 0.000481172245221 -0.00294656785593 +UniRef50_UPI00037026C5 hypothetical protein 0.000162616058948 0.000132043549597 -3.0572509351e-05 +UniRef50_Q49UJ3 0.00143804186229 0.00103017455301 -0.00040786730928 +UniRef50_A7WZX4 0.00869873462927 0.00261914243687 -0.0060795921924 +UniRef50_A9M0A0 Phosphoenolpyruvate protein phosphotransferase 6.80972920355e-05 0.0026790628682 0.00261096557616 +UniRef50_B0RZ23 Trans 2 enoyl CoA reductase 0.000356679674504 0.00490584506905 0.00454916539455 +UniRef50_E6MUK3 Drug resistance transporter, Bcr CflA subfamily protein 0.000124857548682 0.00369366187067 0.00356880432199 +UniRef50_UPI000365D2A7 hypothetical protein 3.72400375908e-05 4.91706057467e-05 1.19305681559e-05 +UniRef50_UPI00036DCC61 hypothetical protein 2.7307405136e-05 3.37238188507e-05 6.4164137147e-06 +UniRef50_M1MS56 Stage II sporulation protein D 0.0012070110078 0.0013717719382 0.0001647609304 +UniRef50_Q03287 Urease accessory protein UreG 0.00255752878591 0.0019372763282 -0.00062025245771 +UniRef50_UPI0003A320E0 MULTISPECIES 8.80359086486e-06 2.67295452577e-05 1.79259543928e-05 +UniRef50_UPI000363A104 potassium transporter Kef 2.91810996485e-05 2.93283920533e-05 1.472924048e-07 +UniRef50_P76559 0.00530910441452 0.000833073713629 -0.00447603070089 +UniRef50_D3E189 0.00354871639314 0.000711729403291 -0.00283698698985 +UniRef50_UPI000368D15E MULTISPECIES 5.1578915936e-06 8.94352852756e-06 3.78563693396e-06 +UniRef50_M9SFA8 0.00351775501312 0.000459068850833 -0.00305868616229 +UniRef50_Q5HQ84 0.00364644958534 0.00377000049185 0.00012355090651 +UniRef50_Q8WY44 Quaking protein 3 0.000132447903772 0.000251176225008 0.000118728321236 +UniRef50_W5IC94 0.000119836821857 0.000381057778383 0.000261220956526 +UniRef50_Q2G222 N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979 0.0110021405262 0.00286222743656 -0.00813991308964 +UniRef50_P43796 Glucose 1 phosphate adenylyltransferase 1.11128597521e-05 8.18582933035e-06 -2.92703042175e-06 +UniRef50_C4W8W1 Pyruvate carboxylase 0.0111411259019 0.00155920699933 -0.00958191890257 +UniRef50_P47295 Purine nucleoside phosphorylase DeoD type 2.66123177923e-05 7.20521711935e-05 4.54398534012e-05 +UniRef50_K1YAY7 3.29751952152e-05 0.00079831568052 0.000765340485305 +UniRef50_D3QIQ9 0.00844810669929 0.0017396661887 -0.00670844051059 +UniRef50_B2TKN9 Xanthine permease 0.000387950749033 0.00103611096425 0.000648160215217 +UniRef50_Q49YF9 PTS system N acetylglucosamine specific IIBC component 0.017311150531 0.00584158490564 -0.0114695656254 +UniRef50_UPI000289252A selenocysteine specific translation elongation factor 1.23688538098e-06 2.5005833395e-06 1.26369795852e-06 +UniRef50_Q8YXQ7 Carbamoyl phosphate synthase small chain 1.10502530704e-05 7.45470259441e-06 -3.59555047599e-06 +UniRef50_P0ADC5 Lipoprotein releasing system transmembrane protein LolC 0.00587194401451 0.00112585139528 -0.00474609261923 +UniRef50_E6EBC0 5.19764480239e-05 0.00313007685017 0.00307810040215 +UniRef50_K4SCN9 tRNA lysidine synthase 0.0044831072853 0.00125666683062 -0.00322644045468 +UniRef50_Q9ZL53 Cadmium, zinc and cobalt transporting ATPase 0.000247158633229 0.00503704663323 0.004789888 +UniRef50_Q3DT06 0.00154305198432 0.000904577469527 -0.000638474514793 +UniRef50_Q2JTX6 Dihydroxy acid dehydratase 2.26103009272e-05 2.70190032162e-05 4.408702289e-06 +UniRef50_K1JKI8 6.94480230649e-05 0.000132614486612 6.31664635471e-05 +UniRef50_P26982 Periplasmic serine endoprotease DegP 0.00532637181899 0.000597672227318 -0.00472869959167 +UniRef50_U5MLQ0 Y_Y_Y domain containing protein 0.000466536382436 0.00129428799319 0.000827751610754 +UniRef50_P30793-4 Isoform GCH 4 of GTP cyclohydrolase 1 6.63232875033e-05 4.35250816127e-05 -2.27982058906e-05 +UniRef50_A0A059DR32 0.000219908288664 7.25352054249e-05 -0.000147373083239 +UniRef50_A0A009W0R2 Valine tRNA ligase 0.000399293470222 0.00530311681055 0.00490382334033 +UniRef50_V6AHQ4 Putative serine threonine protein kinase 0.000137395378527 0.000389469764891 0.000252074386364 +UniRef50_F2I2C3 4.33638252333e-05 2.07878740472e-05 -2.25759511861e-05 +UniRef50_Q6A5H2 Alanine racemase 0.000169783803081 0.00482403603688 0.0046542522338 +UniRef50_UPI00047855C0 excinuclease ABC subunit A 1.59570089508e-05 4.22236653499e-05 2.62666563991e-05 +UniRef50_Q2IMD4 Chorismate synthase 1.42673675655e-05 0.000228467983723 0.000214200616157 +UniRef50_N6VDK8 0.000566944071958 3.9838624311e-05 -0.000527105447647 +UniRef50_N9IGS7 0.000211924383038 0.00155653651078 0.00134461212774 +UniRef50_P42909 N acetylgalactosamine specific phosphotransferase enzyme IIB component 1 0.0123730277007 0.00557831314121 -0.00679471455949 +UniRef50_Q1AWD7 Glyoxalase bleomycin resistance protein dioxygenase 0.000513125152715 0.000372247947718 -0.000140877204997 +UniRef50_X1B0B7 Marine sediment metagenome DNA, contig 1.07263418938e-05 4.1984474819e-05 3.12581329252e-05 +UniRef50_I4D272 Chemotaxis response regulator protein glutamate methylesterase 0.000501375338616 0.000419719905432 -8.1655433184e-05 +UniRef50_D3NTM9 Transcriptional regulator 0.000204046480461 0.000712341827277 0.000508295346816 +UniRef50_Q8Y270 Aspartate tRNA ligase 0.00705410432456 0.00968559336873 0.00263148904417 +UniRef50_Q2YZ70 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0252442334925 0.00498605850974 -0.0202581749828 +UniRef50_B1SBK3 Oligopeptide ABC transporter, permease protein 6.74433088391e-06 1.00990295505e-05 3.35469866659e-06 +UniRef50_C1MZS3 Predicted protein 4.53640802699e-06 8.59075146632e-06 4.05434343933e-06 +UniRef50_H3CH15 5.52819833876e-06 7.82557029634e-06 2.29737195758e-06 +UniRef50_D3QHC2 Membrane protein, putative 0.0207415150827 0.00454391019595 -0.0161976048868 +UniRef50_K4R856 2.94297197537e-05 0.000123477368026 9.40476482723e-05 +UniRef50_U5MZX2 Alpha beta fold family hydrolase 0.000371083740584 0.00135652406658 0.000985440325996 +UniRef50_C1ABB1 2.49613650782e-05 1.92738328928e-05 -5.6875321854e-06 +UniRef50_Q3JC02 Threonine tRNA ligase 9.59226062798e-06 0.000248348562583 0.000238756301955 +UniRef50_UPI00045E74AA hypothetical protein 8.1091788964e-06 2.71032949909e-05 1.89941160945e-05 +UniRef50_B4EC93 0.00952663504457 0.00113805149632 -0.00838858354825 +UniRef50_H1D9R7 2.98187300953e-05 6.83852419866e-05 3.85665118913e-05 +UniRef50_B7I2L4 Colicin V producing membrane protein 0.00103815856369 0.015817159874 0.0147790013103 +UniRef50_B9KS14 Chemotaxis histidine protein kinase 0.0060690048435 0.00115404037504 -0.00491496446846 +UniRef50_UPI00037A03B5 hypothetical protein 9.8871362505e-06 1.16849658402e-05 1.7978295897e-06 +UniRef50_A7ZKB3 Probable malonic semialdehyde reductase RutE 0.000790727699528 0.00133455152757 0.000543823828042 +UniRef50_UPI0003656A74 hypothetical protein 6.96183999616e-05 4.92516421154e-05 -2.03667578462e-05 +UniRef50_E0XZI6 7.17118028029e-05 7.55313255947e-05 3.8195227918e-06 +UniRef50_I1QQ98 7.88460009933e-05 0.00050338074749 0.000424534746497 +UniRef50_D1A708 2.72122660965e-06 7.02785452201e-06 4.30662791236e-06 +UniRef50_O69787 Choline sulfatase 0.00555770156902 0.000410673646541 -0.00514702792248 +UniRef50_U3T620 Long chain acyl CoA synthetase 0.000370681660183 0.00609167310279 0.00572099144261 +UniRef50_K1VAT6 1.18285596994e-05 7.55107892356e-06 -4.27748077584e-06 +UniRef50_UPI000465DCA9 hypothetical protein 8.83373348496e-05 1.20656737369e-05 -7.62716611127e-05 +UniRef50_UPI00036A9D7D hypothetical protein 0.000263653153162 5.51676206309e-05 -0.000208485532531 +UniRef50_O07137 Probable enoyl CoA hydratase echA8 0.000471163298905 0.00461620669722 0.00414504339832 +UniRef50_Q2W5V5 Chemotaxis response regulator protein glutamate methylesterase 2 6.5460189545e-05 9.91765284611e-06 -5.55425366989e-05 +UniRef50_UPI00029AB2EF hypothetical protein 0.000116398977183 1.84261250266e-05 -9.79728521564e-05 +UniRef50_F0G430 0.000353112488374 0.000127943017037 -0.000225169471337 +UniRef50_Q1DCX8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.66804979553e-05 1.12775963202e-05 -5.4029016351e-06 +UniRef50_P0DA52 DegV domain containing protein SpyM3_0586 0.000134977111625 0.0046186328906 0.00448365577898 +UniRef50_E2PWJ8 Aldo keto reductase 5.14549620698e-06 3.70125180038e-05 3.18670217968e-05 +UniRef50_F5TKP9 Nitrate reductase, alpha subunit 9.56775220481e-05 0.00473308589655 0.0046374083745 +UniRef50_A4WR54 NnrS family protein 0.00237297096137 0.000465017135201 -0.00190795382617 +UniRef50_P30143 0.00612157431953 0.00552812701731 -0.00059344730222 +UniRef50_P69857 Probable N acetylneuraminic acid outer membrane channel protein NanC 0.00454660310222 0.000733960937588 -0.00381264216463 +UniRef50_M9VJS8 Cof family hydrolase 0.000532648225497 0.00746873457742 0.00693608635192 +UniRef50_B1B3K1 Truncated Pre protein 0.00545145342635 0.00148254952002 -0.00396890390633 +UniRef50_F2FAF1 2.02345101454e-06 2.3859709144e-06 3.6251989986e-07 +UniRef50_UPI0004664D96 XRE family transcriptional regulator 0.000246290359315 3.52250112475e-05 -0.000211065348067 +UniRef50_UPI0004711A28 hypothetical protein 1.14672290765e-05 0.000125737174151 0.000114269945074 +UniRef50_E1WQ62 0.0171012884395 0.00222396320524 -0.0148773252343 +UniRef50_F7WET4 4.77342769245e-05 3.66536805477e-05 -1.10805963768e-05 +UniRef50_X5K411 Iron compound ABC transporter,iron compound binding protein 0.00578736389175 0.00163866177154 -0.00414870212021 +UniRef50_Q0TPX5 Ribose import ATP binding protein RbsA 3.80199254595e-05 1.03111528348e-05 -2.77087726247e-05 +UniRef50_R7ESR9 0.00695894858202 0.0109566129863 0.00399766440428 +UniRef50_M1LNN1 Tex like protein 0.000581701658506 0.000164968101942 -0.000416733556564 +UniRef50_Q8E5K2 Phosphate binding protein PstS 1 0.0049805220487 0.000657098481318 -0.00432342356738 +UniRef50_D3QES6 0.0207165657957 0.00518687304853 -0.0155296927472 +UniRef50_UPI0002EE51BE hypothetical protein 5.33798360271e-05 3.08815209014e-05 -2.24983151257e-05 +UniRef50_S5CWD7 AraC type DNA binding domain containing protein 0.000135949335724 0.00992055672599 0.00978460739027 +UniRef50_UPI0003B77367 2Fe 2S ferredoxin 1.60640513466e-05 2.71336140289e-05 1.10695626823e-05 +UniRef50_D3QES1 0.00835135547352 0.00644126433336 -0.00191009114016 +UniRef50_D3E1P1 HEAT repeat containing protein 0.00159135696724 0.000508650190886 -0.00108270677635 +UniRef50_P95695 Capsular polysaccharide type 5 biosynthesis protein cap5A 0.00905800005216 0.00197698996541 -0.00708101008675 +UniRef50_P45855 Acetyl CoA acetyltransferase 1.07338570887e-05 8.44051913685e-05 7.36713342798e-05 +UniRef50_D7A4H7 ABC transporter related protein 0.0172538992683 0.00734881175199 -0.00990508751631 +UniRef50_Q7NC65 Glycerol kinase 2.83427246406e-05 9.60250531467e-05 6.76823285061e-05 +UniRef50_UPI0003499E7A hypothetical protein 8.51126571887e-06 7.39442646445e-06 -1.11683925442e-06 +UniRef50_A0A024YRW3 4.92310265064e-05 3.299353095e-05 -1.62374955564e-05 +UniRef50_UPI0002E76F72 hypothetical protein 5.19828160163e-06 6.07579989415e-06 8.7751829252e-07 +UniRef50_UPI00035075E1 PREDICTED 3.62874767781e-06 2.14123214387e-05 1.77835737609e-05 +UniRef50_A6UBX6 Binding protein dependent transport systems inner membrane component 0.000933859196944 0.000366853049924 -0.00056700614702 +UniRef50_A0A011UHJ8 0.000587586275919 0.000179161012056 -0.000408425263863 +UniRef50_Q45480 0.00995960533072 0.00952466622444 -0.00043493910628 +UniRef50_A4X0G8 0.00151257975366 0.000291372662474 -0.00122120709119 +UniRef50_Q5SKG5 Phosphomethylpyrimidine synthase 0.00295026320403 0.000673701378576 -0.00227656182545 +UniRef50_UPI0004701620 50S ribosomal protein L10 0.000404553261041 0.000157544053966 -0.000247009207075 +UniRef50_F5ZH68 0.00387807960127 0.00129367198408 -0.00258440761719 +UniRef50_M1V0X7 7.11342943796e-05 0.00748361636682 0.00741248207244 +UniRef50_Q0KDG3 Methionine import ATP binding protein MetN 0.000344187151019 1.3100052143e-05 -0.000331087098876 +UniRef50_P16686 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH 0.00388580003638 0.00245950156536 -0.00142629847102 +UniRef50_Q9RXL0 0.000636212340763 0.0133917641875 0.0127555518467 +UniRef50_A5UNK7 0.000589512978523 0.000271347661734 -0.000318165316789 +UniRef50_Q15W23 1.27987922128e-05 3.66075397165e-05 2.38087475037e-05 +UniRef50_UPI000388FF1B PREDICTED 2.31538454072e-05 2.62604676112e-05 3.106622204e-06 +UniRef50_C5N3N0 0.00572857423693 0.00312792273519 -0.00260065150174 +UniRef50_Q03GN4 Pyridine nucleotide disulfide oxidoreductase 0.00016529382669 0.00192048978724 0.00175519596055 +UniRef50_UPI00047DF1C1 cell division protein FtsX 4.11287164659e-06 4.72700949014e-05 4.31572232548e-05 +UniRef50_G2TDB8 4.13175564478e-05 1.49999208339e-05 -2.63176356139e-05 +UniRef50_UPI0002D2E18F hypothetical protein 8.74082148297e-06 4.63029881582e-05 3.75621666752e-05 +UniRef50_O64363 Protein gp55 0.00321099709094 0.00111440266111 -0.00209659442983 +UniRef50_UPI00036196C8 hypothetical protein 0.000101666981603 4.97676009994e-06 -9.66902215031e-05 +UniRef50_Q8FW95 Bacterioferritin 0.0247829149277 0.00168100562141 -0.0231019093063 +UniRef50_A7FHG9 Vitamin B12 import system permease protein BtuC 0.00170978911264 0.00170186117483 -7.92793781e-06 +UniRef50_Q39586 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.05749683449e-06 3.42353427571e-06 1.36603744122e-06 +UniRef50_Q2RGX1 Xylose binding protein 0.00188020839024 0.0018228808535 -5.732753674e-05 +UniRef50_Q49115 Protein MeaA 0.0078315160999 0.00158702216567 -0.00624449393423 +UniRef50_UPI000475C41D siderophore ABC transporter permease 1.4107067744e-05 3.08506752192e-05 1.67436074752e-05 +UniRef50_X1GH09 Marine sediment metagenome DNA, contig 3.45097630158e-05 0.00204766895538 0.00201315919236 +UniRef50_N6JKR1 8.41893544581e-05 0.000311524261714 0.000227334907256 +UniRef50_Q1J1Q7 Cobalamin biosynthesis CbiX protein 0.000188825826221 0.00702591279155 0.00683708696533 +UniRef50_I1DXB2 9.99184141722e-05 2.92997914219e-05 -7.06186227503e-05 +UniRef50_Q7DDL5 Cysteine synthase 3.58904571049e-05 0.00264378980423 0.00260789934713 +UniRef50_M9VH79 Transcriptional regulator 0.000179755232787 0.00556785735975 0.00538810212696 +UniRef50_UPI00037331DA hypothetical protein 1.15380829852e-06 2.5004181098e-06 1.34660981128e-06 +UniRef50_A5UMZ2 3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase 0.00402454548836 0.000908621513235 -0.00311592397512 +UniRef50_A5N458 DNA polymerase III subunit beta 0.000537150175013 0.000220935190916 -0.000316214984097 +UniRef50_Q5HL55 Copper chaperone CopZ 0.00446845542905 0.0050022406156 0.00053378518655 +UniRef50_P39408 0.00217222767686 0.00188028211541 -0.00029194556145 +UniRef50_UPI00029CCE10 50S ribosomal protein L21, partial 1.35942131808e-05 0.00056058032253 0.000546986109349 +UniRef50_C4AM88 Cytosolic 5 nucleotidase 1B 6.8116097021e-05 8.16826696933e-05 1.35665726723e-05 +UniRef50_UPI00047DBA67 hypothetical protein 6.17916438402e-05 3.1062978316e-05 -3.07286655242e-05 +UniRef50_G5NWB0 NADH quinone oxidoreductase subunit N 0.0027900712293 0.000580117808205 -0.00220995342109 +UniRef50_UPI000347E3AB sodium 1.556958875e-05 0.00207716709969 0.00206159751094 +UniRef50_Q28LX4 4.92046420817e-05 9.38285369238e-05 4.46238948421e-05 +UniRef50_A4WTF8 Malto oligosyltrehalose synthase 0.00452726398165 0.00125455810495 -0.0032727058767 +UniRef50_P44311 Glucose 6 phosphate 1 dehydrogenase 6.07266510379e-06 6.63387367506e-06 5.6120857127e-07 +UniRef50_C6D021 Uronate isomerase 0.000337459924055 0.00156282554038 0.00122536561632 +UniRef50_P45539 Putative fructoselysine transporter FrlA 0.00378655820717 0.000944937936194 -0.00284162027098 +UniRef50_C2UPC1 DNA gyrase subunit B 2.15737687866e-05 0.000117491524122 9.59177553354e-05 +UniRef50_A3PPA1 0.00203039516774 0.00185020774163 -0.00018018742611 +UniRef50_A3PPA7 0.000309670287911 0.000210918210748 -9.8752077163e-05 +UniRef50_P0ACD2 Putative colanic acid biosynthesis acetyltransferase WcaF 0.0036054559712 0.000668147992546 -0.00293730797865 +UniRef50_D7GHA6 Iron ABC transporter, permease protein 0.000433682876624 0.00577877302966 0.00534509015304 +UniRef50_Q7VI92 Methionine import ATP binding protein MetN 9.18695071689e-06 0.00265565856241 0.00264647161169 +UniRef50_A1KVH9 DNA repair protein RecO 0.000171584540393 0.00734020425798 0.00716861971759 +UniRef50_Q3IX14 0.00777550238002 0.00329417064268 -0.00448133173734 +UniRef50_K7UZK8 3.4063205305e-05 0.000285198857237 0.000251135651932 +UniRef50_S5Z0P9 Transposase 5.65918750495e-05 2.94004476166e-05 -2.71914274329e-05 +UniRef50_D8TPB8 3.49749378825e-05 4.06098790234e-05 5.6349411409e-06 +UniRef50_UPI00031039A1 DNA invertase 0.00016233687908 4.17393587879e-05 -0.000120597520292 +UniRef50_S9S3Z7 0.000111404374658 6.4709221319e-05 -4.6695153339e-05 +UniRef50_Q8DV78 0.0050156333377 0.00387411300695 -0.00114152033075 +UniRef50_B9DK54 Predicted membrane protein with CBS domains 0.0239320010253 0.00422550716251 -0.0197064938628 +UniRef50_UPI00029AC90B hypothetical protein 1.64690183833e-05 3.28491854897e-05 1.63801671064e-05 +UniRef50_D0K826 Ribose operon repressor, putative 0.0178943232175 0.00556425152529 -0.0123300716922 +UniRef50_UPI0003B6DD73 amno acid ABC transporter ATPase 3.51032536031e-05 2.86882690501e-05 -6.414984553e-06 +UniRef50_Q8DV75 0.00829851047201 0.00249235352567 -0.00580615694634 +UniRef50_E8Q7C4 0.00668398697518 0.00830972426397 0.00162573728879 +UniRef50_Q8CQ71 Arsenical pump membrane protein 0.00386007487421 0.0022506150417 -0.00160945983251 +UniRef50_UPI00047661F3 Putrescine importer PuuP 3.99629675192e-06 4.27432865037e-05 3.87469897518e-05 +UniRef50_P26162 Magnesium chelatase subunit H 0.00475679967391 0.00143539390114 -0.00332140577277 +UniRef50_Q930T2 4 deoxy L threo 5 hexosulose uronate ketol isomerase 1 1.04637076893e-05 1.40142091738e-05 3.5505014845e-06 +UniRef50_A3PNN7 Sugar transferase 0.00399939854399 0.00210060556968 -0.00189879297431 +UniRef50_Q6ZN04-3 Isoform 2 of RNA binding protein MEX3B 0.000286698219379 0.000573959037861 0.000287260818482 +UniRef50_UPI000225F341 ParB family protein 0.000117160470934 1.82058578763e-05 -9.89546130577e-05 +UniRef50_M9R8I3 Flagellar biosynthesis protein FlhA 0.00433600736216 0.00074863357376 -0.0035873737884 +UniRef50_UPI0003758B1C hypothetical protein 1.25365863945e-05 7.18218987959e-05 5.92853124014e-05 +UniRef50_A3PQH3 0.00666653248337 0.000972106413351 -0.00569442607002 +UniRef50_P22787 0.00471206990072 0.00110548619815 -0.00360658370257 +UniRef50_UPI00047460D1 ABC transporter permease 6.31621497939e-06 1.72100590185e-05 1.08938440391e-05 +UniRef50_Q1IXG7 Thioesterase superfamily 1.41745435306e-05 0.00637774280707 0.00636356826354 +UniRef50_A0A024RXJ7 0.00017790976437 3.87450017475e-05 -0.000139164762622 +UniRef50_P0CI61 Catabolic 3 dehydroquinase 0.000102793459241 9.03450939924e-05 -1.24483652486e-05 +UniRef50_P26459 Cytochrome bd II ubiquinol oxidase subunit 1 0.00175421188624 0.000227931341553 -0.00152628054469 +UniRef50_D8U5B8 1.27163568037e-06 4.98955651535e-06 3.71792083498e-06 +UniRef50_Q1J0Q8 Glycolate oxidase subunit, GlcD 8.02024055691e-05 0.0138427048682 0.0137625024626 +UniRef50_UPI0003B67F78 large conductance mechanosensitive channel protein MscL 0.000254837408769 0.000352154098304 9.7316689535e-05 +UniRef50_O25963 UDP N acetylenolpyruvoylglucosamine reductase 0.000145373294809 0.00249288924385 0.00234751594904 +UniRef50_UPI00041D354E MarR family transcriptional regulator 1.62709523456e-05 9.52822450168e-05 7.90112926712e-05 +UniRef50_UPI00034D3A31 hypothetical protein 3.342866195e-06 1.56092428777e-05 1.22663766827e-05 +UniRef50_D3QEW6 Two component sensor histidine kinase 0.00833955288363 0.00237004001112 -0.00596951287251 +UniRef50_UPI000476FAE3 hypothetical protein 0.000181214532063 1.53568147813e-05 -0.000165857717282 +UniRef50_P77377 Lipopolysaccharide biosynthesis protein WzxC 0.00211292650664 0.000250917024922 -0.00186200948172 +UniRef50_P72749 GTP binding protein TypA BipA homolog 8.8611734477e-05 0.0470425373849 0.0469539256504 +UniRef50_UPI0003801FCB hypothetical protein 0.00013512475479 2.8814842351e-05 -0.000106309912439 +UniRef50_O27830 0.00300182406976 0.000488342951651 -0.00251348111811 +UniRef50_L7F3W2 0.000197912972987 0.000238800570243 4.0887597256e-05 +UniRef50_UPI0002559497 response regulator 3.73041524007e-05 2.6893798974e-05 -1.04103534267e-05 +UniRef50_Q9I1P8 0.00187834258225 0.000763343436634 -0.00111499914562 +UniRef50_UPI0004701F6D hypothetical protein, partial 1.392865505e-05 1.82977294149e-05 4.3690743649e-06 +UniRef50_UPI0003B7BBF9 elongation factor G 1.16595074273e-05 0.00010639792536 9.47384179327e-05 +UniRef50_UPI00035D925C hypothetical protein 3.66837052483e-06 1.06625494086e-05 6.99417888377e-06 +UniRef50_R6H780 5.82634666514e-05 0.000118283617374 6.00201507226e-05 +UniRef50_X1KMN7 Marine sediment metagenome DNA, contig 1.24864993981e-05 2.72766596585e-05 1.47901602604e-05 +UniRef50_C6SLG1 0.000699048127507 4.98030832662e-05 -0.000649245044241 +UniRef50_B2IWH8 Bifunctional protein PyrR 2.3701541931e-05 6.82954208732e-05 4.45938789422e-05 +UniRef50_P66667 Ribonuclease 3 2.30415383842e-05 7.16804448288e-05 4.86389064446e-05 +UniRef50_L0A6M1 ABC type dipeptide oligopeptide nickel transport system, permease component 0.000108472985299 0.0461678805436 0.0460594075583 +UniRef50_P37773 UDP N acetylmuramate 0.00287507621356 0.00037098649128 -0.00250408972228 +UniRef50_W7WWN9 0.000269407414187 7.41731847278e-05 -0.000195234229459 +UniRef50_A6M2X6 RNA methyltransferase, TrmA family 0.00061082237416 0.00423495354638 0.00362413117222 +UniRef50_G4L5V8 Polysaccharide deacetylase 0.00199071950385 0.000241403301256 -0.00174931620259 +UniRef50_UPI000478D1B9 hypothetical protein 2.9711163247e-06 4.66222030903e-06 1.69110398433e-06 +UniRef50_Q32GE1 Quinate shikimate dehydrogenase 0.00382570493768 0.000873536142769 -0.00295216879491 +UniRef50_Q4TIC7 Chromosome undetermined SCAF2249, whole genome shotgun sequence. 0.00140363396481 0.000110777474637 -0.00129285649017 +UniRef50_O67869 Carbamoyl phosphate synthase large chain, N terminal section 3.00494072985e-05 2.01256795636e-05 -9.9237277349e-06 +UniRef50_C7D5Q5 4.57397310049e-05 2.17375592014e-05 -2.40021718035e-05 +UniRef50_Q48KZ0 ATP dependent Clp protease proteolytic subunit 9.93266991657e-06 0.000142525415876 0.000132592745959 +UniRef50_UPI0004778203 ABC transporter 0.000173678189589 3.16773230944e-05 -0.000142000866495 +UniRef50_UPI0004710F14 monovalent cation H+ antiporter subunit A 0.000203292484182 7.31516959214e-05 -0.000130140788261 +UniRef50_F2UDL8 3.17116082307e-05 9.13836280538e-05 5.96720198231e-05 +UniRef50_A6LR74 Methyl accepting chemotaxis sensory transducer 0.000275885226717 0.00229547421674 0.00201958899002 +UniRef50_UPI0002BA87F0 hypothetical protein 0.000226039514279 0.00917888200131 0.00895284248703 +UniRef50_A4VRC5 1.39065284748e-05 1.82507762559e-05 4.3442477811e-06 +UniRef50_A4VRC6 6.66355403197e-05 4.28516462473e-05 -2.37838940724e-05 +UniRef50_Q0G053 0.000105033994033 3.82929276099e-05 -6.67410664231e-05 +UniRef50_T1ZL16 2.04555577641e-05 3.39026351593e-05 1.34470773952e-05 +UniRef50_Q92RN6 Probable galactose dehydrogenase GalD 0.00479731987223 0.00089047829244 -0.00390684157979 +UniRef50_E8SR78 ApbE 7.45796802505e-06 0.0031845739638 0.00317711599577 +UniRef50_Q8GLK9 Isoprenyl transferase 8.15980912161e-06 1.23358673834e-05 4.17605826179e-06 +UniRef50_B8NR51 4.53778080385e-06 3.8960253286e-06 -6.4175547525e-07 +UniRef50_UPI000476E214 urea ABC transporter permease 7.53793219571e-06 0.000169195107975 0.000161657175779 +UniRef50_A5VXC5 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.000809451773838 0.00093138386683 0.000121932092992 +UniRef50_C0B0T0 4.93112317887e-05 6.37633347113e-05 1.44521029226e-05 +UniRef50_UPI000368C3B5 hypothetical protein 4.09123583442e-05 0.00010548776749 6.45754091458e-05 +UniRef50_Q9RTG8 Ribosome maturation factor RimP 0.000432235865095 0.0589539237319 0.0585216878668 +UniRef50_A0A023RXG6 Poly polymerase 8.98776163989e-05 0.0108303603448 0.0107404827284 +UniRef50_Q9HUV8 Phosphoribosylamine glycine ligase 0.00141525314037 0.00960004251316 0.00818478937279 +UniRef50_A5UNL7 Adhesin like protein 0.0030986483221 3.97009262231e-05 -0.00305894739588 +UniRef50_A5ULS7 Molybdopterin biosynthesis protein, MoeA 0.00319419991837 0.000477180701234 -0.00271701921714 +UniRef50_UPI0002FD2950 hypothetical protein 1.79958007731e-05 6.29322231006e-05 4.49364223275e-05 +UniRef50_F4EE48 Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein 0.00011039617203 0.000329553400308 0.000219157228278 +UniRef50_UPI00036AA1CD hypothetical protein 1.40061606771e-05 0.000115065419154 0.000101059258477 +UniRef50_UPI0003B4B49C bifunctional ppGpp synthetase II guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase 2.3457664673e-06 4.36097404011e-06 2.01520757281e-06 +UniRef50_UPI000225B750 4 phosphopantetheinyl transferase 1.61210039147e-05 3.476928129e-05 1.86482773753e-05 +UniRef50_UPI00047061CB magnesium transporter MgtC 8.02710317858e-06 4.16533474372e-05 3.36262442586e-05 +UniRef50_U5L631 Membrane protein 2.2536260916e-05 0.000267391644469 0.000244855383553 +UniRef50_A6M235 Sugar isomerase 0.000215706279348 0.00213896813491 0.00192326185556 +UniRef50_UPI00037B9AA6 hypothetical protein 8.35440271475e-06 1.52340812945e-05 6.87967857975e-06 +UniRef50_UPI0002375EA0 binding protein dependent transport systems inner membrane component, partial 2.62718574411e-05 7.98669315519e-05 5.35950741108e-05 +UniRef50_A8YWE6 Formamidopyrimidine DNA glycosylase 6.8184526473e-06 1.05425743983e-05 3.724121751e-06 +UniRef50_R9YT60 HlyD secretion family protein 0.0297637496412 0.00438120474754 -0.0253825448937 +UniRef50_G8PI82 Dipeptide transport ATP binding protein DppF 0.00255612123395 0.000242062873115 -0.00231405836084 +UniRef50_A4WPE9 Cytochrome B561 0.00262130970332 0.000349487225087 -0.00227182247823 +UniRef50_UPI0003602B13 hypothetical protein 3.08040676276e-05 7.16386499904e-06 -2.36402026286e-05 +UniRef50_Q9RT80 0.000234949785595 0.0088198223883 0.0085848726027 +UniRef50_UPI0002488638 2 dehydro 3 deoxygluconokinase 9.05884814754e-06 1.29360305103e-05 3.87718236276e-06 +UniRef50_R6KR64 Major facilitator superfamily MFS_1 0.000194270043698 0.000334729755613 0.000140459711915 +UniRef50_B7GVN4 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000500342408474 0.00908629270855 0.00858595030008 +UniRef50_P05695 Porin P 0.000587967776852 0.000362867073389 -0.000225100703463 +UniRef50_B2GC97 Dehydrogenase 0.0144739526937 0.0032063550218 -0.0112675976719 +UniRef50_UPI0004434514 PREDICTED 7.9886282589e-06 0.000118943472914 0.000110954844655 +UniRef50_P43329 ATP dependent RNA helicase HrpA 0.000130227679806 0.000249043434787 0.000118815754981 +UniRef50_D2NAI9 Antibiotic biosynthesis monooxygenase 0.0302796738544 0.00417524869169 -0.0261044251627 +UniRef50_A5WGU9 ABC transporter related protein 6.03655632479e-05 0.0064486789442 0.00638831338095 +UniRef50_UPI000372E826 hypothetical protein 9.60808095252e-06 8.3101226564e-06 -1.29795829612e-06 +UniRef50_UPI00036C8D4E hypothetical protein 6.57059768744e-06 7.91279245731e-06 1.34219476987e-06 +UniRef50_L7WXE6 0.00743820309049 0.00416190118874 -0.00327630190175 +UniRef50_A0A017T7C4 2.36774933253e-05 6.30705400069e-05 3.93930466816e-05 +UniRef50_R5PQE2 ATPase 0.00550559176891 0.00135328866921 -0.0041523030997 +UniRef50_P73443 Lysine tRNA ligase 4.48194437494e-06 8.84020518006e-06 4.35826080512e-06 +UniRef50_UPI00035D38ED MULTISPECIES 1.76869473805e-05 0.00208955827038 0.002071871323 +UniRef50_J6JBM8 6.35072551366e-05 3.20036324846e-05 -3.1503622652e-05 +UniRef50_Q035Y9 60 kDa chaperonin 0.000252337893591 0.00747642347009 0.0072240855765 +UniRef50_Q59091 3 oxoadipate CoA transferase subunit B 3.07599775737e-05 2.51778452877e-05 -5.582132286e-06 +UniRef50_Q4A0W1 Transcriptional regulator 0.0101983964031 0.00162686723112 -0.00857152917198 +UniRef50_I6SW93 ABC transporter membrane protein subunit and ATP binding protein 0.00584019362576 0.00181075111156 -0.0040294425142 +UniRef50_A4E7V0 9.46072399763e-05 0.000173057181586 7.84499416097e-05 +UniRef50_UPI00046F4A68 xanthine dehydrogenase, partial 2.28308157584e-05 1.3152107152e-05 -9.6787086064e-06 +UniRef50_Q3J2Q4 0.013320335193 0.00195190592935 -0.0113684292637 +UniRef50_Q8UBL6 Uroporphyrinogen decarboxylase 6.82521793987e-06 1.44599744783e-05 7.63475653843e-06 +UniRef50_R6Z301 Threonine dehydratase medium form 6.35694974159e-06 1.25080679304e-05 6.15111818881e-06 +UniRef50_C5AVJ7 0.0001822239005 0.000703135012379 0.000520911111879 +UniRef50_M9VIM2 Phosphotransferase system, EIIC 8.17069239939e-05 0.00594888313599 0.005867176212 +UniRef50_UPI00035123E6 7.63113698339e-05 3.38277799404e-05 -4.24835898935e-05 +UniRef50_B8H0C0 RNA polymerase binding transcription factor DksA 0.00242770223395 0.00233144767259 -9.625456136e-05 +UniRef50_A5UM65 0.000477830365635 0.00037381861418 -0.000104011751455 +UniRef50_Q8CQJ9 Teichoic acid biosynthesis protein F 0.00891179502599 0.00581970201286 -0.00309209301313 +UniRef50_B2I1K5 Thiol 7.48980136639e-05 0.00427868376711 0.00420378575345 +UniRef50_B7H204 Potassium uptake protein, TrkH family protein 0.000725539371829 0.00664990647607 0.00592436710424 +UniRef50_O27292 Inosine 5 monophosphate dehydrogenase related protein III 0.00272415483359 0.000290475447734 -0.00243367938586 +UniRef50_A4BCM8 Acylphosphatase, putative 2.12641712445e-05 5.32557510014e-05 3.19915797569e-05 +UniRef50_J0Q686 TatA E family twin arginine targeting protein translocase 0.000120083825141 0.000111188773754 -8.895051387e-06 +UniRef50_UPI0003138E18 hypothetical protein 6.57383063637e-05 1.56567195623e-05 -5.00815868014e-05 +UniRef50_D3UHV1 Type I restriction modification system, restriction enzyme 9.09572103896e-05 0.00417173017239 0.004080772962 +UniRef50_Q5GWT1 ISxac3 transposase 0.000124566393376 0.000447817629267 0.000323251235891 +UniRef50_UPI00031C00D7 hypothetical protein 1.27488720048e-05 2.20010148782e-05 9.2521428734e-06 +UniRef50_UPI0000E0E146 ribonuclease III 5.92898113588e-06 2.97500389783e-05 2.38210578424e-05 +UniRef50_W6S7D3 HAD superfamily hydrolase 0.000512821989924 0.00186235616371 0.00134953417379 +UniRef50_D6H9U3 Acyl CoA dehydrogenase 0.000133478143897 0.000551648748642 0.000418170604745 +UniRef50_UPI0003790597 hypothetical protein 3.94653504723e-05 7.01673512158e-06 -3.24486153507e-05 +UniRef50_UPI00046499F1 hypothetical protein, partial 6.33582887958e-06 1.79739048667e-06 -4.53843839291e-06 +UniRef50_P40786 Nucleoside specific channel forming protein tsx 0.00179898178376 0.00148039587258 -0.00031858591118 +UniRef50_Q1IWY0 Thioredoxin 0.000515019643709 0.0109367858621 0.0104217662184 +UniRef50_P09832 Glutamate synthase [NADPH] small chain 0.0021467923266 0.00155297070746 -0.00059382161914 +UniRef50_Q6A9H6 Gamma glutamyl phosphate reductase 0.000560692713583 0.00635117729691 0.00579048458333 +UniRef50_A1ALT4 DNA directed RNA polymerase subunit beta 8.48594119554e-06 1.77194172907e-06 -6.71399946647e-06 +UniRef50_A5IS43 0.00230663610187 0.00356710181026 0.00126046570839 +UniRef50_D7ZP07 TRAP transporter, DctM subunit 6.1179359241e-05 2.95168752471e-05 -3.16624839939e-05 +UniRef50_UPI000368CDC8 hypothetical protein, partial 0.000267899074815 0.000100777988298 -0.000167121086517 +UniRef50_A3MV69 Elongation factor 1 alpha 0.00259522372202 0.000988991374907 -0.00160623234711 +UniRef50_P30138 Sulfur carrier protein ThiS adenylyltransferase 0.00126793060533 0.000550956498034 -0.000716974107296 +UniRef50_K7RUC4 3 carboxymuconate cyclase 1.01548506727e-05 7.69641585947e-05 6.6809307922e-05 +UniRef50_A0Q087 Elongation factor P 1.74443411028e-05 0.00027228479705 0.000254840455947 +UniRef50_Q9RVA5 SLH family protein 0.000123630782379 0.0298404904788 0.0297168596964 +UniRef50_P76198 Inner membrane transport protein YdiN 0.00244139719792 0.00130560032228 -0.00113579687564 +UniRef50_T1Y784 CDP glycerol glycerophosphotransferase 0.0106798127414 0.000720476448956 -0.00995933629244 +UniRef50_Q1RQN9 AfsA like protein 0.000127672825993 0.000692131074034 0.000564458248041 +UniRef50_Q9RVC9 UPF0176 protein DR_1100 0.000254484936301 0.0198194203591 0.0195649354228 +UniRef50_F0KG78 HTH type transcriptional regulator BetI 0.000182360381085 0.00864167857375 0.00845931819267 +UniRef50_P42308 Citrate transporter 0.000807704992712 0.00860488363336 0.00779717864065 +UniRef50_B2KBB9 Aspartate tRNA ligase 2.82646779704e-06 3.45003788094e-06 6.235700839e-07 +UniRef50_C1N0Q8 Predicted protein 4.55627425807e-05 7.24528822668e-06 -3.8317454354e-05 +UniRef50_P76224 Inner membrane ABC transporter permease protein YnjC 0.00369922226016 0.00220532678946 -0.0014938954707 +UniRef50_Q6A7A7 Lysyl tRNA synthetase 0.000198089810149 0.00676256046573 0.00656447065558 +UniRef50_UPI0004169BE3 ribonuclease 1.32371307248e-05 1.42487506815e-05 1.0116199567e-06 +UniRef50_UPI0004725351 hypothetical protein 9.07582402088e-07 2.92326955491e-06 2.01568715282e-06 +UniRef50_A8AAF8 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 5.7356579454e-06 0.000113361838629 0.000107626180684 +UniRef50_UPI000288DACB nitrogen regulatory protein P II 0.000774030641073 3.2502971795e-05 -0.000741527669278 +UniRef50_UPI000441EF2C 0.000309891178515 0.000114933850122 -0.000194957328393 +UniRef50_A3PLF5 0.000824172926495 0.000212259414197 -0.000611913512298 +UniRef50_Q8X7R2 Acyl coenzyme A dehydrogenase 0.00315835334277 0.000806305894014 -0.00235204744876 +UniRef50_C3L0X3 Proton sodium glutamate symporter 0.000157943928393 0.00059553833896 0.000437594410567 +UniRef50_UPI0003FA835C alkaline phosphatase 3.1046021802e-06 2.20382623475e-05 1.89336601673e-05 +UniRef50_UPI00046A02CC hypothetical protein 3.26167834574e-05 1.160895676e-05 -2.10078266974e-05 +UniRef50_A6LY49 Transcriptional regulator, TetR family 0.00110041267802 0.000938702553188 -0.000161710124832 +UniRef50_I7EDS2 0.00075487688964 0.000188316566041 -0.000566560323599 +UniRef50_P12994 UPF0098 protein YbhB 0.000957694051974 0.0535375985694 0.0525799045174 +UniRef50_UPI000473D6A4 16S rRNA methyltransferase, partial 1.21820110647e-05 1.72827553008e-05 5.1007442361e-06 +UniRef50_Q3DN63 3.81056031298e-05 1.20009835908e-05 -2.6104619539e-05 +UniRef50_UPI00037391D6 hypothetical protein 7.26135290382e-06 5.11307731061e-06 -2.14827559321e-06 +UniRef50_V9VP30 5.32821619013e-05 7.37818096906e-05 2.04996477893e-05 +UniRef50_R0QJ92 Dicarboxylate symporter family protein 4.80465832268e-05 0.000320804945664 0.000272758362437 +UniRef50_T1ZL59 DeoR family transcriptional regulator 0.00585458619516 0.00318563041543 -0.00266895577973 +UniRef50_Q5P260 Glycerol 3 phosphate acyltransferase 7.64626467626e-06 4.92469151816e-05 4.16006505053e-05 +UniRef50_A5UND9 Lipopolysaccharide cholinephosphotransferase, LicD family 0.00334940845849 0.000536541385429 -0.00281286707306 +UniRef50_B2UNA9 Polyribonucleotide nucleotidyltransferase 2.31250043527e-06 4.15063357101e-06 1.83813313574e-06 +UniRef50_V5U2H7 0.000541209164004 0.000482896306911 -5.8312857093e-05 +UniRef50_Q1IYQ4 Prephenate dehydratase 0.000161548925324 0.0320652079642 0.0319036590389 +UniRef50_UPI00036C7E56 hypothetical protein 2.47067120637e-05 0.000146952064247 0.000122245352183 +UniRef50_A7HEZ4 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.000136276530269 0.00709858768996 0.00696231115969 +UniRef50_UPI0004783FA2 hypothetical protein 7.70194275358e-06 1.20762276177e-05 4.37428486412e-06 +UniRef50_A6M2I5 Glycosyl transferase, family 2 0.00056053334548 0.00118242496157 0.00062189161609 +UniRef50_UPI000255A9DA hypothetical protein 0.000198719384631 3.02757422328e-05 -0.000168443642398 +UniRef50_B7V115 Heme acquisition protein HasAp 0.000184139506761 0.000360875810829 0.000176736304068 +UniRef50_UPI0003612C6D hypothetical protein, partial 2.82789012801e-05 2.73525923168e-05 -9.263089633e-07 +UniRef50_M9VDC9 Trk system potassium uptake protein TrkA 0.000186566386584 0.00524373562063 0.00505716923405 +UniRef50_B9J7V3 Oligopeptide ABC transporter 0.0045667731217 0.00139239061505 -0.00317438250665 +UniRef50_C5C0W1 Ribosome binding ATPase YchF 0.000170808139747 0.00441969777172 0.00424888963197 +UniRef50_Q9AL94 Rubredoxin 0.000890657907197 0.00200173042234 0.00111107251514 +UniRef50_Q8PIM5 Chemotaxis response regulator protein glutamate methylesterase of group 2 operon 0.00681078064022 0.00185848204966 -0.00495229859056 +UniRef50_G7M3H0 Coagulation factor 5 8 type domain protein 6.21887955241e-05 0.000785203124025 0.000723014328501 +UniRef50_A9GZR7 Aspartate carbamoyltransferase 0.00466807292419 0.00172727238266 -0.00294080054153 +UniRef50_D2VQJ9 Pyruvate dehydrogenase E1 component subunit alpha 0.00885169233073 0.00197991456965 -0.00687177776108 +UniRef50_D8M8V8 Singapore isolate B whole genome shotgun sequence assembly, scaffold_6 0.00021174800887 0.000267859963495 5.6111954625e-05 +UniRef50_W1DQS7 DNA gyrase subunit B 0.00355445998968 0.000534914489664 -0.00301954550002 +UniRef50_P0AAP6 0.00269962780571 0.00108705535655 -0.00161257244916 +UniRef50_P31433 0.00364084499893 0.000783172907726 -0.0028576720912 +UniRef50_UPI00035CCC77 hypothetical protein 1.17483802484e-05 2.34402002823e-05 1.16918200339e-05 +UniRef50_U6EXA7 Primosome assembly protein PriA 0.000407137860956 0.000683299614086 0.00027616175313 +UniRef50_UPI00041FF968 hypothetical protein 1.16511919583e-05 5.70234020342e-06 -5.94885175488e-06 +UniRef50_S9UZE8 0.000114044105391 0.000225632224138 0.000111588118747 +UniRef50_Q8DR59 Penicillin binding protein 1A 0.00548223567394 0.00140320818075 -0.00407902749319 +UniRef50_G4PHY8 ATP 0.00180489472436 0.00037381861418 -0.00143107611018 +UniRef50_I4F260 5.20133866624e-05 8.49101492329e-06 -4.35223717391e-05 +UniRef50_T1YAD1 Transposase 0.00395970413512 0.000544292229661 -0.00341541190546 +UniRef50_K7S0W1 Short chain dehydrogenase 0.000329202897256 0.00406417890308 0.00373497600582 +UniRef50_UPI0003B56E19 ribosome binding factor A 0.000108313409684 0.000200548031983 9.2234622299e-05 +UniRef50_A0A023RTE9 AsnC family transcriptional regulator 0.00031457165738 0.000448582337002 0.000134010679622 +UniRef50_B8GMP7 DoxX family protein 6.03586090954e-05 3.04659680197e-05 -2.98926410757e-05 +UniRef50_UPI00036B9DAF hypothetical protein 2.77272094558e-06 1.29050510142e-05 1.01323300686e-05 +UniRef50_A6BA71 Immunogenic protein 0.000110736886652 7.08877619245e-05 -3.98491247275e-05 +UniRef50_D4FB84 Outer membrane specific lipoprotein transporter subunit LolC family protein 5.79636133779e-05 9.66693437478e-05 3.87057303699e-05 +UniRef50_L1IEH2 8.5464689335e-06 1.65413283494e-05 7.9948594159e-06 +UniRef50_T1FJ63 3.32257872014e-06 8.39799538825e-07 -2.48277918132e-06 +UniRef50_UPI000360C3D4 cytochrome C transmembrane protein 0.000149144799129 7.50968811202e-05 -7.40479180088e-05 +UniRef50_C8XIL9 Rhamnan synthesis F 3.86963104524e-06 6.07962916546e-06 2.20999812022e-06 +UniRef50_R6JHL0 9.85327172575e-06 1.14783238585e-05 1.62505213275e-06 +UniRef50_UPI0003643D3B hypothetical protein 3.82743928528e-06 6.11504073334e-06 2.28760144806e-06 +UniRef50_F0VXG5 Adenylate cyclase 0.00591771389633 0.00890380181523 0.0029860879189 +UniRef50_F0RLL2 7.67247944857e-05 0.021617996308 0.0215412715135 +UniRef50_UPI00047873F0 hypothetical protein 1.90386658113e-05 0.000255844518416 0.000236805852605 +UniRef50_UPI0003B6C708 argininosuccinate lyase 2.32482826171e-05 1.25399881283e-05 -1.07082944888e-05 +UniRef50_Q5ZB52 Zinc knuckle containing protein like 7.18326204965e-05 0.000158556972552 8.67243520555e-05 +UniRef50_Q9ZM46 Translation initiation factor IF 2 0.000184085311796 0.00398350639843 0.00379942108663 +UniRef50_UPI0003F739B0 hypothetical protein 0.000136732900876 2.98047350933e-05 -0.000106928165783 +UniRef50_UPI00035E495A hypothetical protein 4.10435608361e-06 6.38603527873e-06 2.28167919512e-06 +UniRef50_F8F0F6 Appr 1 p processing domain protein 1.28852953544e-05 0.00029571565412 0.000282830358766 +UniRef50_V6JJY2 3.89364837914e-05 0.000920122753983 0.000881186270192 +UniRef50_O31676 6 carboxy 5,6,7,8 tetrahydropterin synthase 0.0144690549395 0.00129060344695 -0.0131784514926 +UniRef50_UPI00032A023A PREDICTED 0.00470279332887 0.00224455790699 -0.00245823542188 +UniRef50_A6LX21 Molybdate metabolism regulator 0.000421598238542 0.00109169523898 0.000670097000438 +UniRef50_UPI000374B6B2 hypothetical protein 0.00157333441271 0.000150086208694 -0.00142324820402 +UniRef50_UPI0003B781A0 DNA repair protein RecO 2.23566207055e-05 8.1212934778e-05 5.88563140725e-05 +UniRef50_UPI000467B9AD peptide ABC transporter ATP binding protein 3.13881593914e-05 8.47194966661e-06 -2.29162097248e-05 +UniRef50_Q9SAK4 Succinate semialdehyde dehydrogenase, mitochondrial 0.00358094249344 0.00345758586675 -0.00012335662669 +UniRef50_Q8CS01 0.00515401166009 0.0110586709997 0.00590465933961 +UniRef50_P50097 Inosine 5 monophosphate dehydrogenase 0.000273286255569 0.00481608241931 0.00454279616374 +UniRef50_A3M8U4 Heavy metal RND efflux membrane fusion protein CzcB family protein 0.000192547271485 0.00873637030013 0.00854382302864 +UniRef50_D5RU62 Putative epstein Barr nuclear antigen 1 0.000100622848688 0.000200068275057 9.9445426369e-05 +UniRef50_F7V1W3 0.000336298541832 6.92934376009e-05 -0.000267005104231 +UniRef50_Q04KQ9 0.00276371054329 0.0025210101165 -0.00024270042679 +UniRef50_Q9RWR5 DNA primase 0.000171300783763 0.0259830054927 0.0258117047089 +UniRef50_UPI00040DB2E3 heme ABC transporter ATP binding protein 1.35608819191e-05 4.19767915406e-05 2.84159096215e-05 +UniRef50_UPI000262D0CC phosphoenolpyruvate protein phosphotransferase PtsP 1.19957909337e-05 5.37543335686e-05 4.17585426349e-05 +UniRef50_UPI00042B76EF Heavy metal atpase 5 isoform 1 1.65400293299e-06 1.5632186505e-06 -9.078428249e-08 +UniRef50_F5M5U6 0.00136587909971 0.000865347614835 -0.000500531484875 +UniRef50_Q6ARN9 Bifunctional enzyme IspD IspF 1.17078556704e-05 1.60261529287e-05 4.3182972583e-06 +UniRef50_G4LIC7 0.00110937615678 0.000202271715884 -0.000907104440896 +UniRef50_UPI000252B7A9 3.63926216387e-05 4.2321276286e-05 5.9286546473e-06 +UniRef50_A8TU87 Putative transposase 4.01834004625e-05 2.33844370759e-05 -1.67989633866e-05 +UniRef50_A3PRK6 Transcriptional regulator, LysR family 0.00174659386845 0.00216186384862 0.00041526998017 +UniRef50_M9VAV5 0.000266744043507 0.00411777613678 0.00385103209327 +UniRef50_UPI0003B7B5C8 nitrogen regulatory protein P II 1 2.40911319439e-05 5.36099085147e-05 2.95187765708e-05 +UniRef50_UPI00037696BA hypothetical protein 5.43508096325e-06 1.02151139109e-05 4.78003294765e-06 +UniRef50_B0VPR2 0.000141204235229 0.0108455255059 0.0107043212707 +UniRef50_H0DJE4 Putative lipoprotein 1.60051396714e-05 1.12568848442e-05 -4.7482548272e-06 +UniRef50_M4HVK3 Degenerate transposase 0.000284617629462 0.00171833629301 0.00143371866355 +UniRef50_R6UMN9 L serine dehydratase alpha chain 1.58051273234e-05 3.53624363035e-05 1.95573089801e-05 +UniRef50_E3PRA3 Rubrerythrin 0.00195638533259 0.000326316801329 -0.00163006853126 +UniRef50_UPI000474129C hypothetical protein 8.00690582471e-06 1.19439341444e-05 3.93702831969e-06 +UniRef50_Q3J096 0.00284809959354 0.00100781739652 -0.00184028219702 +UniRef50_Q3J090 0.00838475891435 0.000697598516207 -0.00768716039814 +UniRef50_UPI000469755B secretion system protein E 1.17124125567e-05 9.99146085413e-06 -1.72095170257e-06 +UniRef50_Q6F957 0.000476195945936 0.00651832958571 0.00604213363977 +UniRef50_F8L7S5 UDP glucose 6 dehydrogenase 0.00219825905091 0.000144056929367 -0.00205420212154 +UniRef50_K4KNP7 0.000390502747092 0.00105605740712 0.000665554660028 +UniRef50_A3PJZ1 PpiC type peptidyl prolyl cis trans isomerase 0.000839615858485 0.000144526935666 -0.000695088922819 +UniRef50_Q20EX8 Light independent protochlorophyllide reductase subunit N 4.91313101059e-05 2.06354153215e-05 -2.84958947844e-05 +UniRef50_Q48C77 Imidazoleglycerol phosphate dehydratase 0.000518290023376 0.00764781901812 0.00712952899474 +UniRef50_Q9K3V7 Pyridoxine pyridoxamine 5 phosphate oxidase 0.000392793480937 7.09807860841e-05 -0.000321812694853 +UniRef50_Q90512 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 4.57827311813e-06 1.64659396292e-05 1.18876665111e-05 +UniRef50_UPI00016A4BBE hypothetical protein 0.00200037194773 0.000729177049855 -0.00127119489787 +UniRef50_Q3J3B2 Glycosyltransferase, Succinoglycan biosynthesis protein exoL 0.000968993381439 0.000230116913138 -0.000738876468301 +UniRef50_UPI0004676BF2 hypothetical protein 5.28246864124e-05 1.03617652512e-05 -4.24629211612e-05 +UniRef50_UPI0003643AE6 hypothetical protein 0.000930708721563 5.74750370064e-05 -0.000873233684557 +UniRef50_T1A3B5 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 0.000219957241923 3.41035644992e-05 -0.000185853677424 +UniRef50_R5VTD5 ABC transporter permease protein 0.000288892338411 0.00136938202842 0.00108048969001 +UniRef50_C7NWU6 Cupin 2 conserved barrel domain protein 0.000131750549372 9.06074721059e-05 -4.11430772661e-05 +UniRef50_D6DES4 Amino acid transporters 0.000402249499104 0.0024249686578 0.0020227191587 +UniRef50_UPI000428A00C spermidine putrescine ABC transporter ATP binding protein 6.53195629079e-05 3.24751363587e-05 -3.28444265492e-05 +UniRef50_Q9RVX3 0.000193584821048 0.0299487419084 0.0297551570874 +UniRef50_X1YHV7 Catalase 1.25068503359e-05 4.43177126713e-05 3.18108623354e-05 +UniRef50_Q1GX76 Transcriptional regulator, TetR family 0.000391483464943 0.000329962799096 -6.1520665847e-05 +UniRef50_UPI0004716697 peptidase S11 3.88876080834e-06 1.90453672133e-05 1.5156606405e-05 +UniRef50_U5P5Q4 Competence protein CglA 0.00744671133743 0.00681102489411 -0.00063568644332 +UniRef50_V2Y8C8 0.000147206788535 4.50656312982e-05 -0.000102141157237 +UniRef50_A4WXA6 0.00563195017634 0.00492194508659 -0.00071000508975 +UniRef50_B9KL58 5 oxoprolinase 0.00720518620451 0.00137031571011 -0.0058348704944 +UniRef50_P95649 Protein CbbY 0.000163649995166 0.000818878681345 0.000655228686179 +UniRef50_UPI0003C44AB2 PREDICTED 2.94492295696e-06 4.68311311067e-05 4.38862081497e-05 +UniRef50_F9H9Z5 Putative phage terminase, large subunit 9.6108933779e-06 9.3195617953e-05 8.35847245751e-05 +UniRef50_A1Z1V6 RepA 0.000161305417124 3.61472717274e-05 -0.000125158145397 +UniRef50_UPI0004006A19 hypothetical protein 9.59057940353e-06 0.000269922513322 0.000260331933918 +UniRef50_S5JZI7 Purine catabolism regulatory protein 2.40359633594e-05 0.00158197034285 0.00155793437949 +UniRef50_Q4MM88 0.000442366393186 0.000200709695323 -0.000241656697863 +UniRef50_H0DZL7 Relaxase mobilization nuclease domain protein 0.000137623688836 5.30631467751e-05 -8.45605420609e-05 +UniRef50_UPI00037ECD4A hypothetical protein 1.19076507789e-05 1.46062121686e-05 2.6985613897e-06 +UniRef50_U5YR77 Transcriptional regulator 0.000117565922368 9.00635532562e-06 -0.000108559567042 +UniRef50_UPI000372834D hypothetical protein 3.69669045612e-06 1.64271178267e-05 1.27304273706e-05 +UniRef50_Q45068 Amino acid carrier protein AlsT 0.0224102101688 0.00403886714413 -0.0183713430247 +UniRef50_Q28VF6 0.00130981999969 0.000752195661279 -0.000557624338411 +UniRef50_UPI00046AC1C8 hypothetical protein 6.40654032508e-06 1.8322472088e-05 1.19159317629e-05 +UniRef50_Q46939 Probable acetyl CoA acetyltransferase 0.0027754171781 0.00110090319651 -0.00167451398159 +UniRef50_R5UAF2 5.79943167142e-05 7.17894684678e-06 -5.08153698674e-05 +UniRef50_A0A017LCS6 Radical SAM superfamily protein 0.00102984065804 8.51056787246e-05 -0.000944734979315 +UniRef50_Q55786 Methionine synthase 7.3133534145e-07 1.82581563621e-05 1.75268210206e-05 +UniRef50_Q038L3 Elongation factor Ts 0.0254438962548 0.00515435395807 -0.0202895422967 +UniRef50_UPI00036D89F3 hypothetical protein 1.14329435152e-05 9.21290961603e-06 -2.22003389917e-06 +UniRef50_Q3IWX5 Putative tape measure protein 0.00121613739864 0.000466554629156 -0.000749582769484 +UniRef50_B5ZBT1 Urease subunit gamma 3.72387245512e-05 0.000223864586392 0.000186625861841 +UniRef50_P26172 Geranylgeranyl diphosphate reductase 0.0056093984257 0.00231795694693 -0.00329144147877 +UniRef50_B0V8T9 0.000259143699447 0.0066128463682 0.00635370266875 +UniRef50_W0F7K7 Permease of the major facilitator superfamily 0.00840139879572 0.00517339360517 -0.00322800519055 +UniRef50_P75818 0.00345785643418 0.000598614942967 -0.00285924149121 +UniRef50_UPI00039A620E potassium transporter KefB 2.14526179917e-05 6.9948455534e-05 4.84958375423e-05 +UniRef50_D2NU75 3 deoxy D arabino heptulosonate 7 phosphate synthase 0.000119963767644 0.0032352127704 0.00311524900276 +UniRef50_A5V3C2 0.000216341742202 5.97952398923e-05 -0.00015654650231 +UniRef50_G8V756 Glycosyltransferase 8.33302403623e-05 0.00676860783205 0.00668527759169 +UniRef50_A4WQD3 Glutathione dependent formaldehyde activating, GFA 0.0112000207044 0.00573889148155 -0.00546112922285 +UniRef50_C5AV20 9.24594108654e-06 1.8384063588e-05 9.13812250146e-06 +UniRef50_UPI0003594D3C PREDICTED 1.31787062104e-06 1.08815351915e-05 9.56366457046e-06 +UniRef50_G0DTF9 Ferrochelatase, HemH 6.48230089558e-05 0.00629588139122 0.00623105838226 +UniRef50_Q03023 Serralysin 0.000474183727002 0.000148774158797 -0.000325409568205 +UniRef50_UPI0003679B46 hypothetical protein 1.80164948797e-05 4.2054940651e-05 2.40384457713e-05 +UniRef50_F7CYV8 9.1431219323e-06 7.44086098823e-05 6.526548795e-05 +UniRef50_A3M893 Putative hemagglutinin hemolysin related protein 0.000309020806155 0.00395451715083 0.00364549634467 +UniRef50_Q6A889 0.000205155428724 0.00419749930826 0.00399234387954 +UniRef50_UPI00041B92EF hypothetical protein 4.02040357605e-05 0.000111837871662 7.16338359015e-05 +UniRef50_UPI000477E9DF thioredoxin 0.000112971515246 0.000156139943043 4.3168427797e-05 +UniRef50_UPI000366DA44 hypothetical protein 2.86162365455e-05 2.63131140096e-05 -2.3031225359e-06 +UniRef50_P15006 Protein McrC 0.00328152386479 0.000642244193887 -0.0026392796709 +UniRef50_UPI000366C9FA hypothetical protein, partial 4.83888056598e-05 4.8319027058e-05 -6.97786018e-08 +UniRef50_UPI000471640D adenosylcobinamide kinase 9.85599993477e-05 9.83565394934e-05 -2.034598543e-07 +UniRef50_UPI000409FACA 5 carboxymethyl 2 hydroxymuconate isomerase 1.02741765003e-05 3.63838879886e-05 2.61097114883e-05 +UniRef50_F5M3U6 Two component sensor histidine kinase 0.00335956299888 0.000127474836769 -0.00323208816211 +UniRef50_S4PI94 Putative SLIT ROBO Rho GTPase activating protein 1 like protein 0.00812293550708 0.00418817147005 -0.00393476403703 +UniRef50_E2NSL6 0.000152088253345 0.0011193677449 0.000967279491555 +UniRef50_UPI000471AB25 hypothetical protein 0.000109625039329 3.60959431443e-05 -7.35290961847e-05 +UniRef50_UPI0003B46C11 chemotaxis protein CheY 8.83516156203e-06 3.71517359216e-05 2.83165743596e-05 +UniRef50_Q8DSA7 0.00364336665499 0.00117324737943 -0.00247011927556 +UniRef50_Q8S0V8 Splicing coactivator subunit like protein 1.46354355206e-05 0.000116562622047 0.000101927186526 +UniRef50_UPI000225BECB nucleoside triphosphate diphosphatase 7.77649251474e-05 1.53166397255e-05 -6.24482854219e-05 +UniRef50_R9SJ55 F420 0 0.00294001871576 0.00143159071807 -0.00150842799769 +UniRef50_G8VD48 ABC transporter, ATP binding protein 0.000392330776222 0.00460702253865 0.00421469176243 +UniRef50_A6LR80 NAD dependent aldehyde dehydrogenase like protein 0.000159806786223 0.00132322591848 0.00116341913226 +UniRef50_F5XNW0 3.37690951902e-05 0.000580415421761 0.000546646326571 +UniRef50_UPI00046EC7BE hypothetical protein 6.20393200983e-06 1.92320979269e-05 1.30281659171e-05 +UniRef50_P0AEG0 Dipeptide transport system permease protein DppB 0.0144269076051 0.00253636140052 -0.0118905462046 +UniRef50_T1Y8L2 Oligopeptide binding protein oppA 0.0098203090517 0.00205807417859 -0.00776223487311 +UniRef50_UPI000300BC1D hypothetical protein 8.92963909883e-06 1.88463947954e-05 9.91675569657e-06 +UniRef50_UPI00047DB8CE hypothetical protein 1.45857962641e-05 6.46343241239e-06 -8.12236385171e-06 +UniRef50_UPI0004785B37 hypothetical protein 0.000106907343712 2.25215931418e-05 -8.43857505702e-05 +UniRef50_A6WXJ2 Porphobilinogen deaminase 0.00425857538568 0.00124914355129 -0.00300943183439 +UniRef50_D3SLJ8 UDP glucose 4 epimerase 0.00402307133855 0.00295879027717 -0.00106428106138 +UniRef50_A7WYP0 Ribosomal RNA small subunit methyltransferase A 0.0106037055159 0.00284542528515 -0.00775828023075 +UniRef50_P65560 0.00448733169675 0.0012576488927 -0.00322968280405 +UniRef50_Q6A6Z5 Malate dehydrogenase 0.000439192650404 0.00498219896361 0.00454300631321 +UniRef50_Q62KH7 2.00941716961e-05 6.56673239208e-05 4.55731522247e-05 +UniRef50_E6E0D9 8.68750840708e-05 0.000344016854746 0.000257141770675 +UniRef50_F2NQ48 TRAP transporter solute receptor, TAXI family 7.62451284265e-06 0.000334385250189 0.000326760737346 +UniRef50_P0A5M3 Transcription termination antitermination protein NusA 0.000415429846087 0.00671679253972 0.00630136269363 +UniRef50_E6E9X3 0.000181774954504 0.000280808277526 9.9033323022e-05 +UniRef50_G7S7S5 Phosphate specific transport system accessory protein PhoU 0.0116380010238 0.00173828250878 -0.00989971851502 +UniRef50_A7INS2 Acyl CoA dehydrogenase domain protein 0.00830897017994 0.00288094584643 -0.00542802433351 +UniRef50_UPI00037BAB2A hypothetical protein 6.3367877442e-05 2.41840668922e-05 -3.91838105498e-05 +UniRef50_R4XNN0 0.00306976374302 0.000318431799674 -0.00275133194335 +UniRef50_N2N059 CRISPR associated endonuclease Cas3 HD 4.40302475292e-05 0.000143677024017 9.96467764878e-05 +UniRef50_M5EKG8 0.000154164193696 5.94996680631e-05 -9.46645256329e-05 +UniRef50_UPI00036A1325 hypothetical protein 3.67890191056e-05 7.65551078956e-06 -2.9133508316e-05 +UniRef50_UPI00036A73F1 hypothetical protein 5.18691948551e-05 2.68443993523e-05 -2.50247955028e-05 +UniRef50_B7H2D5 0.000311971891609 0.0325587011889 0.0322467292973 +UniRef50_D6EKY2 Integral membrane protein 1.9866549672e-05 0.000272373921133 0.000252507371461 +UniRef50_Q8CLS1 8.14013651366e-05 0.000659187614593 0.000577786249456 +UniRef50_Q122S9 Transcriptional regulator, LysR family 0.000370982421302 0.000204135971329 -0.000166846449973 +UniRef50_R7DG92 9.3132824787e-05 7.79365599528e-05 -1.51962648342e-05 +UniRef50_S4XSR0 4.17120954832e-05 0.000136273331666 9.45612361828e-05 +UniRef50_D7FGF4 Type I restriction enzyme, R subunit 0.000327735785322 0.00591900239792 0.0055912666126 +UniRef50_UPI00040DE7DB hypothetical protein 1.40725952706e-05 9.536548345e-06 -4.5360469256e-06 +UniRef50_S4X6I5 Bifunctional autolysin 0.00105103130166 0.00010251538522 -0.00094851591644 +UniRef50_Q9Z3Q8 Rhizobactin siderophore biosynthesis protein RhbE 0.00013291760171 0.00874061251798 0.00860769491627 +UniRef50_T1Y630 Long chain fatty acid CoA ligase 0.0152780119102 0.00330256676266 -0.0119754451475 +UniRef50_UPI00037871A9 hypothetical protein 2.55065791409e-05 4.45206386239e-05 1.9014059483e-05 +UniRef50_UPI000474835A threonine dehydratase 4.39339542546e-06 7.31221979111e-06 2.91882436565e-06 +UniRef50_UPI0003655EFD multidrug transporter 0.00999447241244 0.0027333873132 -0.00726108509924 +UniRef50_UPI0003AF1932 PREDICTED 6.36947069515e-06 5.58618597705e-06 -7.832847181e-07 +UniRef50_A6M0E2 Peptidase S8 and S53, subtilisin, kexin, sedolisin 0.000181765318237 0.00117904417775 0.000997278859513 +UniRef50_UPI0003B4AB4D ABC transporter 5.25996982589e-06 8.73515143023e-06 3.47518160434e-06 +UniRef50_Q5P6J7 Magnesium transporter 0.000275773741971 0.00388001979982 0.00360424605785 +UniRef50_C9A5A3 6.66418848701e-06 0.00191162717657 0.00190496298808 +UniRef50_A6M351 PAS PAC sensor signal transduction histidine kinase 0.000682900028641 0.0012600405467 0.000577140518059 +UniRef50_P38422 D alanyl D alanine carboxypeptidase DacF 2.22085768197e-05 0.000355089526976 0.000332880950156 +UniRef50_UPI00046F18D5 monovalent cation proton antiporter subunit MnhG PhaG 4.15553944545e-05 0.000534481779401 0.000492926384946 +UniRef50_Q8CP12 ComEC late competence protein 3 0.00842605010053 0.00382703544565 -0.00459901465488 +UniRef50_Q4EJM8 0.000379583348555 0.000336214819927 -4.3368528628e-05 +UniRef50_Q5HL27 Conserved domain protein 0.00240538713088 0.0011032140074 -0.00130217312348 +UniRef50_UPI000364A00D acetoin dehydrogenase, partial 3.02560924852e-05 1.77109419376e-05 -1.25451505476e-05 +UniRef50_A0A008LUF2 5.87266875639e-05 7.82580304074e-05 1.95313428435e-05 +UniRef50_W1IWA4 2.56020455174e-06 1.07412057254e-05 8.18100117366e-06 +UniRef50_L0GPC1 Site specific recombinase XerD 0.00774344748581 0.00741139537019 -0.00033205211562 +UniRef50_F8JBM1 Glycine betaine proline transporter, membrane component of ABC transporter 0.00122637402212 0.000668264575394 -0.000558109446726 +UniRef50_K4PPW1 Formate nitrite transporter 0.00386937207439 0.00218286845697 -0.00168650361742 +UniRef50_D4HFJ4 0.000179124860886 0.00357852517889 0.003399400318 +UniRef50_A6LYU1 Phage related protein 0.00101289970793 0.000795396687411 -0.000217503020519 +UniRef50_R6ZG02 Precorrin 4 C methyltransferase 0.0050758868007 0.00342277065883 -0.00165311614187 +UniRef50_UPI00000D3C44 single stranded DNA binding protein 0.000279619251005 0.0440318241278 0.0437522048768 +UniRef50_E6JQR4 ISSep1 like transposase 0.000700273732157 0.000119899402032 -0.000580374330125 +UniRef50_A1WG09 Binding protein dependent transport systems inner membrane component 0.0110899632319 0.000561882324087 -0.0105280809078 +UniRef50_UPI000273DF52 2.59820222871e-05 5.18216108177e-05 2.58395885306e-05 +UniRef50_A0A059IL14 0.000237077565681 3.63789595544e-05 -0.000200698606127 +UniRef50_UPI0003657F9C hypothetical protein 0.000166164352826 2.44748389805e-05 -0.000141689513845 +UniRef50_P23841 HTH type transcriptional regulator XapR 0.0059419791992 0.000568020608962 -0.00537395859024 +UniRef50_A6M2W8 Oxidoreductase domain protein 0.00150973247523 0.00185485564406 0.00034512316883 +UniRef50_F3U531 0.00219127896012 0.00121757585887 -0.00097370310125 +UniRef50_UPI0003292D12 PREDICTED 8.64185440716e-06 2.89382840309e-05 2.02964296237e-05 +UniRef50_Q8XIQ9 Cobalt dependent inorganic pyrophosphatase 0.000738719651419 0.000443446494706 -0.000295273156713 +UniRef50_F3U537 0.00137058430532 0.000440771201791 -0.000929813103529 +UniRef50_B6IP81 0.00683353319476 0.00272498324234 -0.00410854995242 +UniRef50_UPI000361D30F hypothetical protein 5.65751805467e-05 2.41531869769e-05 -3.24219935698e-05 +UniRef50_UPI0002554CCB nitrogen regulatory protein P II 1.10803248009e-05 5.56392399798e-05 4.45589151789e-05 +UniRef50_UPI0003B4715F hypothetical protein 1.30010729307e-06 6.84459402009e-05 6.71458329078e-05 +UniRef50_P52048 0.00578030533758 0.00079139746066 -0.00498890787692 +UniRef50_UPI000471D6BF ferredoxin, partial 0.000108254393019 0.000436645221838 0.000328390828819 +UniRef50_B6ICF9 TraW protein 0.000112549808408 6.93210732377e-06 -0.000105617701084 +UniRef50_H4VIE3 0.00307534204649 0.000947540230575 -0.00212780181591 +UniRef50_Q9RS28 GGDEF family protein 0.000156871028509 0.0129446348495 0.012787763821 +UniRef50_X0X8Y7 Marine sediment metagenome DNA, contig 0.000174256964983 0.000134467568136 -3.9789396847e-05 +UniRef50_UPI0003B5F7BE hypothetical protein 0.000807279931217 0.000217109530759 -0.000590170400458 +UniRef50_Q03J15 5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase 0.00802784947647 0.00149137242268 -0.00653647705379 +UniRef50_Q1GUX8 Phosphate binding protein, putative 4.8754686261e-06 6.32830838162e-06 1.45283975552e-06 +UniRef50_G7M2L7 Electron transport complex subunit D 0.000112013646546 0.000286252056733 0.000174238410187 +UniRef50_P37551 Pur operon repressor 0.0031528726533 0.00411082223931 0.00095794958601 +UniRef50_M4FTZ0 4.03466683996e-06 6.23776761275e-05 5.83430092875e-05 +UniRef50_I9KL58 1.2381343247e-05 6.26592041236e-06 -6.11542283464e-06 +UniRef50_UPI00036E9BD8 hypothetical protein 0.000260515976712 0.000154508194645 -0.000106007782067 +UniRef50_S6AYL1 0.000438712708456 0.000216613720186 -0.00022209898827 +UniRef50_UPI000395630A PREDICTED 6.56454481286e-06 1.08512691688e-05 4.28672435594e-06 +UniRef50_J7QI73 Peptidase U35 phage prohead HK97 9.53643875115e-06 1.33822311884e-05 3.84579243725e-06 +UniRef50_Q2BPZ8 AsmA family superfamily protein 1.76571601574e-06 2.06033922293e-06 2.9462320719e-07 +UniRef50_P75804 Soluble aldose sugar dehydrogenase YliI 0.00593828352981 0.000867792901457 -0.00507049062835 +UniRef50_U5R0R0 0.000289731476073 0.000353597532904 6.3866056831e-05 +UniRef50_Q7MB61 Glucosamine 6 phosphate deaminase 0.00279321763567 0.00390527424619 0.00111205661052 +UniRef50_UPI000346E108 diguanylate cyclase 1.45356387494e-06 4.12356410942e-05 3.97820772193e-05 +UniRef50_W7DA81 L xylulose 5 phosphate 3 epimerase 3.76029153665e-05 3.40642701664e-05 -3.5386452001e-06 +UniRef50_UPI00041EE847 cytochrome C 3.78022244693e-06 4.33580143847e-05 3.95777919378e-05 +UniRef50_UPI000478FA68 hypothetical protein 1.62170036448e-05 4.89065866586e-06 -1.13263449789e-05 +UniRef50_Q8YJ91 Chaperone protein ClpB 0.0071494818727 0.00358759565243 -0.00356188622027 +UniRef50_A6LTD8 Extracellular solute binding protein, family 1 0.000213302302979 0.0010490130859 0.000835710782921 +UniRef50_UPI00036F72CE hypothetical protein, partial 8.10089493013e-05 1.36300701695e-05 -6.73788791318e-05 +UniRef50_F0YFM2 Expressed protein 0.000267567842603 5.00321378899e-05 -0.000217535704713 +UniRef50_E6U512 Binding protein dependent transport systems inner membrane component 0.000169276228183 0.00113392012605 0.000964643897867 +UniRef50_M9VB01 0.000838857753003 0.00209795379225 0.00125909603925 +UniRef50_Q633V5 Non canonical purine NTP pyrophosphatase 0.00891491789126 0.00340156580732 -0.00551335208394 +UniRef50_C3MD65 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00586093077419 0.000638775558795 -0.00522215521539 +UniRef50_W7SSM3 Peptidase C14, caspase catalytic subunit p20 4.4161380692e-06 0.000329541872715 0.000325125734646 +UniRef50_G2JG48 ABC transporter 0.00111248029523 0.00619060580876 0.00507812551353 +UniRef50_UPI0004693EA9 chemotaxis protein 9.53786137428e-05 1.65183376958e-05 -7.8860276047e-05 +UniRef50_A6LS61 5 nucleotidase SurE 0.00096147500703 0.00132295013277 0.00036147512574 +UniRef50_UPI000255BE74 amino acid ABC transporter substrate binding protein permease, partial 1.4158573212e-05 2.42877355122e-05 1.01291623002e-05 +UniRef50_UPI000465DFA0 hypothetical protein 0.000498826149699 7.32492861085e-05 -0.00042557686359 +UniRef50_UPI0003EBF881 PREDICTED 1.71500024466e-05 2.89288621641e-05 1.17788597175e-05 +UniRef50_Q5HLG3 Sensor protein LytS 0.0229525615304 0.00687505325477 -0.0160775082756 +UniRef50_Q8W390 Putative chitinase 0.000269690674823 0.000443101193807 0.000173410518984 +UniRef50_M9RU26 0.000433461546298 0.000176133223777 -0.000257328322521 +UniRef50_Q2P1L2 tRNA pseudouridine synthase D 5.82296026251e-06 1.27470840355e-05 6.92412377299e-06 +UniRef50_Q5HRU1 Glycosyl transferase, group 1 family protein 0.0166555622872 0.00696453908107 -0.00969102320613 +UniRef50_Q834B4 Phosphate import ATP binding protein PstB 1 3.39112428316e-05 0.00173217668588 0.00169826544305 +UniRef50_F0ML51 7.21310806769e-05 0.00221421653742 0.00214208545674 +UniRef50_P45352 Thymidylate synthase 2.1540499595e-05 7.80290461637e-05 5.64885465687e-05 +UniRef50_UPI00039C4089 thioredoxin 0.000219013299297 0.000461266047324 0.000242252748027 +UniRef50_A6X351 Iron containing alcohol dehydrogenase 0.000226040639422 0.0066094265128 0.00638338587338 +UniRef50_E8U4V1 GAF domain protein 4.4473406745e-05 0.00168261487091 0.00163814146416 +UniRef50_UPI0002627C34 malonyl CoA ACP transacylase 4.82660125291e-06 4.76970551174e-05 4.28704538645e-05 +UniRef50_UPI00037877B4 hypothetical protein 3.63131481281e-06 1.05063725629e-05 6.87505775009e-06 +UniRef50_UPI00036AE186 hypothetical protein 4.72416505519e-05 8.66689483349e-05 3.9427297783e-05 +UniRef50_P45766 Putative amino acid ABC transporter binding protein YhdW 0.00217225688588 0.000778537747539 -0.00139371913834 +UniRef50_M5AC54 0.00499470301883 0.00417031015692 -0.00082439286191 +UniRef50_M9S0P6 LysR family transcriptional regulator 0.000128981545165 0.000727867790809 0.000598886245644 +UniRef50_R7CZZ3 1.17767043811e-05 2.05383606557e-05 8.7616562746e-06 +UniRef50_D3QFY5 Integral membrane protein 0.00625466893921 0.00268249396989 -0.00357217496932 +UniRef50_M5EV42 0.000481281158324 7.29686003674e-05 -0.000408312557957 +UniRef50_T0TDZ2 Elongation factor G 0.00839062952036 0.00627455524733 -0.00211607427303 +UniRef50_U0D6A1 Outer membrane protein 0.000822688658808 0.0009425301419 0.000119841483092 +UniRef50_C6SP66 0.00224451936999 0.00110055914979 -0.0011439602202 +UniRef50_U3TTP8 TonB dependent siderophore receptor 0.000636212340763 0.000330578401339 -0.000305633939424 +UniRef50_UPI000466FDE3 hypothetical protein 2.28001391934e-06 2.929155648e-06 6.4914172866e-07 +UniRef50_Q6FEZ0 0.000120474251758 0.00754838947653 0.00742791522477 +UniRef50_W0H6X8 4.2067815377e-05 4.71869707203e-05 5.1191553433e-06 +UniRef50_R6YEM1 7.66712993118e-06 0.000692568328814 0.000684901198883 +UniRef50_C6SPR1 Dihydrolipoyl dehydrogenase 0.0050840724431 0.00145766599447 -0.00362640644863 +UniRef50_A4WEY1 tRNA pseudouridine synthase B 0.00369400837329 0.00218209101746 -0.00151191735583 +UniRef50_W8U3V5 Group II intron encoded protein LtrA 0.00068930049 0.00429232313831 0.00360302264831 +UniRef50_F3U2K9 Peptidase C14, caspase catalytic subunit p20 0.000313254840488 0.000259387475277 -5.3867365211e-05 +UniRef50_V6HXV9 Winged helix turn helix domain protein 6.47909697948e-05 0.00063571295824 0.000570921988445 +UniRef50_U6JQ37 1.36424595253e-06 5.77167388869e-05 5.63524929344e-05 +UniRef50_Q6GFX2 Catabolite control protein A 0.0230107542346 0.00380101288873 -0.0192097413459 +UniRef50_H6SJD1 Cysteine desulfuration protein SufE 0.000169849825901 2.2906559659e-05 -0.000146943266242 +UniRef50_G1D325 Gp79 7.85300437938e-06 1.20091954979e-05 4.15619111852e-06 +UniRef50_Q8KTE1 Fumarate hydratase class II 0.00301882448378 0.00120720554137 -0.00181161894241 +UniRef50_I1AZW8 Chromosomal replication initiator, DnaA 4.01655559826e-05 1.30139056318e-05 -2.71516503508e-05 +UniRef50_F2JI77 DEAD DEAH box helicase domain protein 0.000122163750441 0.000983344132791 0.00086118038235 +UniRef50_UPI0004663859 MULTISPECIES 5.78527014752e-06 1.62857094683e-05 1.05004393208e-05 +UniRef50_F9YYA3 Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC 8.27820150938e-05 0.0040808011574 0.00399801914231 +UniRef50_G8VHB7 0.000252398093381 0.00271860731682 0.00246620922344 +UniRef50_UPI00035D3834 hypothetical protein, partial 1.3954278882e-05 3.2522093522e-05 1.856781464e-05 +UniRef50_A6KYV3 3.69946429073e-05 0.00496712498247 0.00493013033956 +UniRef50_Q8CQY5 0.0116216326283 0.00266791882637 -0.00895371380193 +UniRef50_G0DXI1 0.000541662418539 0.015393574171 0.0148519117525 +UniRef50_UPI0002C3D833 ATP dependent RNA helicase DDX50, putative 1.10614438841e-06 6.15903223194e-06 5.05288784353e-06 +UniRef50_UPI00036344A4 hypothetical protein 1.15265032854e-05 1.86595725631e-05 7.1330692777e-06 +UniRef50_C6SS95 0.0138552848724 0.000630776599467 -0.0132245082729 +UniRef50_Q8CQY8 0.00858126613482 0.00236399361298 -0.00621727252184 +UniRef50_UPI0004695099 pseudouridine synthase 2.44701952277e-06 6.99215512668e-06 4.54513560391e-06 +UniRef50_C5WGK5 0.000937746168967 0.0021616799477 0.00122393377873 +UniRef50_P0A0V8 Capsule polysaccharide export outer membrane protein CtrA 9.97760322932e-05 0.00334584923105 0.00324607319876 +UniRef50_UPI00037565DC hypothetical protein 5.82333933469e-05 4.52806632275e-05 -1.29527301194e-05 +UniRef50_F0YFY7 Expressed protein 2.93941552849e-05 4.94116071243e-05 2.00174518394e-05 +UniRef50_W0YT50 Filamentous hemagglutinin, intein containing 0.000121102884939 8.89954912749e-05 -3.21073936641e-05 +UniRef50_A0A013K1T0 Putative cell surface adhesin domain protein 0.0017478515412 0.000627780321918 -0.00112007121928 +UniRef50_K5HQD7 0.000458485006708 0.000628333415313 0.000169848408605 +UniRef50_UPI0001D2F1B0 Rrf2 family transcriptional regulator 2.62569170025e-05 2.42468817832e-05 -2.0100352193e-06 +UniRef50_E3YLY4 Pts system fructose specific eiibc component 3.17013262371e-05 0.000539268317471 0.000507566991234 +UniRef50_UPI00042CC86F 2.92179612234e-05 0.00013084965807 0.000101631696847 +UniRef50_M6FTS0 AAA domain protein 1.50127725082e-05 2.32457579222e-05 8.232985414e-06 +UniRef50_P54542 0.0211770667311 0.00697162482514 -0.014205441906 +UniRef50_UPI0004756AEC Surfeit locus 1 family protein 3.9831698654e-06 1.63998717244e-05 1.2416701859e-05 +UniRef50_UPI000360228D hypothetical protein 3.99472170673e-06 3.35481480193e-05 2.95534263126e-05 +UniRef50_U2T0K4 7.93384590487e-05 0.000285244103738 0.000205905644689 +UniRef50_A0A017BYI2 DEAD DEAH box helicase family protein 0.000185800626706 0.0078730021703 0.00768720154359 +UniRef50_P31801 Sodium proton antiporter ChaA 0.00242000503345 0.000164827928474 -0.00225517710498 +UniRef50_B9KWM6 LysR family transcriptional regulatory protein 0.00651276476138 0.00136563969496 -0.00514712506642 +UniRef50_Q73VG0 LigA 1.18349096969e-05 2.80373745768e-05 1.62024648799e-05 +UniRef50_UPI0003AA941F hypothetical protein 9.91099012995e-06 4.76666131271e-05 3.77556229972e-05 +UniRef50_Q47684 Antitoxin YafW 1.49945012841e-05 0.000594597393014 0.00057960289173 +UniRef50_D5APK9 DMSO TMAO sensor hybrid histidine kinase 0.00726599131777 0.00145761404173 -0.00580837727604 +UniRef50_UPI00041F08CB MULTISPECIES 1.84859743551e-05 0.000137226462387 0.000118740488032 +UniRef50_UPI00047676D6 glyoxal reductase 3.11950340186e-05 3.89013018287e-05 7.7062678101e-06 +UniRef50_I1ZNC1 0.00012724246815 0.000953241738216 0.000825999270066 +UniRef50_UPI00016C0F2C oligopeptide ABC transporter ATP binding protein 7.93869603548e-06 6.71646554179e-06 -1.22223049369e-06 +UniRef50_UPI00024911A4 gluconate transporter 5.90401049433e-06 1.14650595551e-05 5.56104906077e-06 +UniRef50_A6UZP9 0.000200435038326 9.17990744267e-06 -0.000191255130883 +UniRef50_UPI000365871E Clp protease 9.14613458758e-06 2.86656770032e-05 1.95195424156e-05 +UniRef50_W0HC37 Substrate binding region of ABC type glycine betaine transport system 0.000480219356483 0.000403817200349 -7.6402156134e-05 +UniRef50_A1D4H8 0.000122379187286 0.000552552664478 0.000430173477192 +UniRef50_R5XFF7 ABC transporter substrate binding protein QAT family 0.000430067063677 0.0012385229453 0.000808455881623 +UniRef50_UPI00036D9D83 hypothetical protein 0.000158777235822 2.80269474931e-05 -0.000130750288329 +UniRef50_Q9JX66 Dihydroorotate dehydrogenase 0.00012494084554 0.00325516366687 0.00313022282133 +UniRef50_UPI000371D657 hypothetical protein 1.26036726496e-05 4.80590427109e-05 3.54553700613e-05 +UniRef50_O29581 Adenylate kinase 3.40910940303e-05 6.63361043626e-05 3.22450103323e-05 +UniRef50_Q45582 N acetylmuramic acid 6 phosphate etherase 0.00758781612204 0.00317374799699 -0.00441406812505 +UniRef50_P47719 DNA gyrase subunit A 8.05408709256e-06 8.87320878868e-06 8.1912169612e-07 +UniRef50_Q6FAU5 0.000216945970609 0.00483094348523 0.00461399751462 +UniRef50_UPI0003AA7974 signal recognition particle 7.75182707403e-06 9.64017308387e-05 8.86499037647e-05 +UniRef50_Q52675 Dimethyl sulfoxide trimethylamine N oxide reductase 0.00812643621994 0.00212293964967 -0.00600349657027 +UniRef50_Q2LUC8 Chorismate synthase 6.55328459078e-06 1.84290991789e-05 1.18758145881e-05 +UniRef50_B1X8Q2 Ribosomal RNA large subunit methyltransferase K L 0.00399910582681 0.000557058959427 -0.00344204686738 +UniRef50_F9YZR8 Iron transport system substrate binding protein 0.000231113870722 0.00547211647534 0.00524100260462 +UniRef50_UPI0003B48391 LytTR family transcriptional regulator 2.00136546821e-06 4.27448158308e-06 2.27311611487e-06 +UniRef50_UPI0004411AE2 hypothetical protein AURDEDRAFT_166722 6.82667144968e-07 1.63220407764e-06 9.49536932672e-07 +UniRef50_UPI0003941221 PREDICTED 0.000237421369263 3.44831840947e-05 -0.000202938185168 +UniRef50_Q87DN0 Tyrosine recombinase XerD 0.00192384921908 0.000549766637191 -0.00137408258189 +UniRef50_Q67WC5 0.0001527252576 0.000138740300889 -1.3984956711e-05 +UniRef50_Q4FQA2 1.72858157524e-05 7.90999981851e-05 6.18141824327e-05 +UniRef50_H2G6W3 Protein NrdI 1.3901852386e-05 5.92540963524e-05 4.53522439664e-05 +UniRef50_M4K0R6 LacI family transcriptional regulator 0.000606915299343 0.000722649038466 0.000115733739123 +UniRef50_UPI0003FCCCFB hypothetical protein 5.23336474174e-06 9.27646657875e-06 4.04310183701e-06 +UniRef50_T0T3K2 Metallo beta lactamase domain protein 4.36125390153e-06 0.000138244366515 0.000133883112613 +UniRef50_Q9L0Q6 Cysteine tRNA ligase 3.63105669167e-06 1.43219687708e-05 1.06909120791e-05 +UniRef50_U0AT69 Metabolite transporter YdjK 0.00142401941223 0.000594155404957 -0.000829864007273 +UniRef50_A7KA93 5.30746186852e-05 0.000142750590251 8.96759715658e-05 +UniRef50_Q5LXH7 Universal stress family protein 0.0168377153901 0.000388574612093 -0.016449140778 +UniRef50_UPI0004700444 hypothetical protein 2.95072308392e-05 2.99255490629e-05 4.183182237e-07 +UniRef50_Q9HVP8 Dephospho CoA kinase 0.00046989957119 0.000348799258104 -0.000121100313086 +UniRef50_Q8TQW9 Putative ABC transporter ATP binding protein MA_1418 4.7568740153e-05 1.08818093754e-05 -3.66869307776e-05 +UniRef50_Q5LWX2 Flagellar basal body rod protein FlgC 0.00850166906782 0.000611000079721 -0.0078906689881 +UniRef50_UPI00047CD293 DNA recombination protein RecO 2.20545042034e-05 7.71868359545e-05 5.51323317511e-05 +UniRef50_P97030 Epoxyqueuosine reductase 0.0179117983362 0.0043860975459 -0.0135257007903 +UniRef50_A4XW57 Hpt protein 0.00365309021469 0.00101833346619 -0.0026347567485 +UniRef50_Q3IVV6 Polysaccharide export transporter, PST Family 0.00203333992779 0.000632574389624 -0.00140076553817 +UniRef50_Q3JX83 0.000430031245957 4.24356917644e-05 -0.000387595554193 +UniRef50_D8JJQ0 Iron ABC transporter membrane protein 0.000344545834963 0.0103796050427 0.0100350592077 +UniRef50_W7W788 0.000368075807395 2.28756011952e-05 -0.0003452002062 +UniRef50_I7EPE2 S adenosylmethionine uptake transporter like protein 0.00421890456793 0.000535444547611 -0.00368346002032 +UniRef50_Q8NKC2 Enolase 1 2 8.04695343407e-06 1.82023579126e-05 1.01554044785e-05 +UniRef50_A5N5L0 0.00024745135657 0.00313126237801 0.00288381102144 +UniRef50_UPI0003B31866 amino acid transporter 1.62498168409e-05 2.66803650859e-05 1.0430548245e-05 +UniRef50_B2V575 O antigen polymerase family 0.000777208020325 0.00247762386036 0.00170041584003 +UniRef50_UPI00037E8A3A hypothetical protein, partial 0.000257003085984 0.000106632957577 -0.000150370128407 +UniRef50_K4PVR2 CBS domain protein 0.0054940797655 0.00122279660278 -0.00427128316272 +UniRef50_A5CWX9 Glutamate tRNA ligase 3.86575344122e-06 1.25651572801e-05 8.69940383888e-06 +UniRef50_UPI00035ED9D3 hypothetical protein 4.8993748251e-06 7.54785941628e-06 2.64848459118e-06 +UniRef50_G7MC17 Universal protein YeaZ 0.000340077467434 0.00275138063398 0.00241130316655 +UniRef50_UPI0003613988 hypothetical protein 3.0493919609e-05 1.16814632187e-05 -1.88124563903e-05 +UniRef50_R1FS00 1.23635185851e-05 0.00010474000316 9.23764845749e-05 +UniRef50_UPI000464095F hypothetical protein 0.000101952176092 0.00103291487048 0.000930962694388 +UniRef50_P39576 Branched chain amino acid aminotransferase 2 0.0268107376028 0.00648218218842 -0.0203285554144 +UniRef50_UPI000464121D hypothetical protein 2.4612526735e-06 4.72561856263e-06 2.26436588913e-06 +UniRef50_K1RE18 6.2816312872e-06 6.10208507727e-06 -1.7954620993e-07 +UniRef50_P15327 Bisphosphoglycerate mutase 6.23795600731e-06 1.08268953876e-05 4.58893938029e-06 +UniRef50_F0XXU5 8.74650125795e-06 0.000113113787233 0.000104367285975 +UniRef50_F0YHA3 0.000236426599738 1.24088389482e-05 -0.00022401776079 +UniRef50_UPI000462977B histidine kinase 0.000112583443757 6.48716970574e-05 -4.77117466996e-05 +UniRef50_A0A059MSQ1 Nitrate reductase 0.0150568675188 0.0123481090345 -0.0027087584843 +UniRef50_F9Z138 0.000219894750786 0.00433502596118 0.00411513121039 +UniRef50_UPI00046D9133 phosphoenolpyruvate carboxykinase 8.02112816047e-06 0.000428474870624 0.000420453742464 +UniRef50_Q8KGA4 tRNA N6 adenosine threonylcarbamoyltransferase 5.38758578937e-06 8.83245350637e-06 3.444867717e-06 +UniRef50_E2NSW7 4.54287105067e-05 6.73012857944e-05 2.18725752877e-05 +UniRef50_Q3IUZ2 Heme oxygenase 0.0435390875864 0.00373236877723 -0.0398067188092 +UniRef50_B2TJJ8 tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA 0.000666924419929 0.00154178983577 0.000874865415841 +UniRef50_Q16BP5 7.66175360171e-05 6.06961755882e-05 -1.59213604289e-05 +UniRef50_D7BLM1 Binding protein dependent transport systems inner membrane component 0.000232061058724 0.00440577014963 0.00417370909091 +UniRef50_R5GV02 Secreted protein containing YkuD domain 1.07616879793e-05 0.000172612542519 0.00016185085454 +UniRef50_B7GH97 ABC type phosphate transport system, permease component 0.00748560292923 0.00240597102306 -0.00507963190617 +UniRef50_D2NRP6 Coenzyme F420 reducing hydrogenase, beta subunit 0.000234504103953 0.00076882732741 0.000534323223457 +UniRef50_UPI000366D18B hypothetical protein 1.96797320789e-05 9.24132575723e-05 7.27335254934e-05 +UniRef50_B5ZBT9 Proline tRNA ligase 4.65135926004e-06 1.99945943491e-05 1.53432350891e-05 +UniRef50_Q8UIG9 Non canonical purine NTP pyrophosphatase 0.00688642360407 0.00101184815712 -0.00587457544695 +UniRef50_UPI0004643C42 hypothetical protein, partial 0.000139933459821 0.000161856424623 2.1922964802e-05 +UniRef50_UPI00046FAF78 hypothetical protein 0.000103507330461 0.000590485042604 0.000486977712143 +UniRef50_B2UXE1 0.000343169080774 0.000661788553117 0.000318619472343 +UniRef50_K0DDY9 Microcin C7 resistance MccF related protein 0.00405030845321 0.000821269919409 -0.0032290385338 +UniRef50_Q6GH34 N anthranilate isomerase 0.0065051868209 0.00350095556353 -0.00300423125737 +UniRef50_A8L6K4 LexA repressor 3.16645847368e-05 1.1081991629e-05 -2.05825931078e-05 +UniRef50_Q9Z3Z9 Toluene tolerance protein ttg2D 0.000491783184043 0.00127247701284 0.000780693828797 +UniRef50_I0I649 Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK 0.000612139680036 0.000780441547387 0.000168301867351 +UniRef50_F6D1L5 Xylose isomerase domain containing protein TIM barrel 0.00224925413178 0.00102320336228 -0.0012260507695 +UniRef50_Q9RZ79 Transposase, putative 0.000123478133149 0.0429027097673 0.0427792316342 +UniRef50_P0AB12 Inner membrane protein YccF 0.00172346402246 0.000516588988672 -0.00120687503379 +UniRef50_A6LXM0 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 0.00018874299443 0.00142051889635 0.00123177590192 +UniRef50_L5KNJ4 WD repeat containing protein 87 8.09052772138e-07 3.23534098249e-07 -4.85518673889e-07 +UniRef50_UPI000377831E hypothetical protein 1.01831861527e-05 2.85735257348e-05 1.83903395821e-05 +UniRef50_UPI0003B6F3ED nucleoside triphosphate diphosphatase 0.000117363265233 5.04742258989e-05 -6.68890393341e-05 +UniRef50_A1B0E7 Acetylglutamate kinase 0.000154155108597 8.48405521458e-05 -6.93145564512e-05 +UniRef50_Q5P1C8 8.32591470293e-05 0.000163380493103 8.01213460737e-05 +UniRef50_X1KF22 Marine sediment metagenome DNA, contig 0.000685793501564 0.000112301788684 -0.00057349171288 +UniRef50_Q07GR3 0.016581224447 0.00248152299019 -0.0140997014568 +UniRef50_E6MWK1 SbmA BacA like family protein 0.000161548925324 0.00176243468271 0.00160088575739 +UniRef50_W6KN67 Putative NADH ubiquinone oxidoreductase 40 kDa subunit 7.36214076142e-05 8.61396934836e-06 -6.50074382658e-05 +UniRef50_UPI0003B48A00 GMP synthase 6.15960390187e-06 8.85403732431e-06 2.69443342244e-06 +UniRef50_UPI00032AF5D9 PREDICTED 0.00011285820038 9.47630406671e-05 -1.80951597129e-05 +UniRef50_Q9ZKP0 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000385798571872 0.00390734971314 0.00352155114127 +UniRef50_Q8CPV9 Poly D alanine transfer protein 0.0219088762896 0.00361427352327 -0.0182946027663 +UniRef50_G8VMV3 Sialidase 9.83036429352e-05 0.00487860616049 0.00478030251755 +UniRef50_Q1MPX7 4 hydroxy tetrahydrodipicolinate synthase 5.08967976595e-06 2.05997135341e-05 1.55100337682e-05 +UniRef50_UPI00037FAB1B hypothetical protein, partial 0.000129396873694 0.0114959373946 0.0113665405209 +UniRef50_B0TQM3 3 isopropylmalate dehydratase small subunit 3.07330698401e-05 5.52039687365e-05 2.44708988964e-05 +UniRef50_Q1JGW5 NAD kinase 0.00645814430224 0.00141989020267 -0.00503825409957 +UniRef50_A7I616 Imidazole glycerol phosphate synthase subunit HisF 0.000756609975408 0.00468632765413 0.00392971767872 +UniRef50_F6CVN5 GAF domain protein 0.0135596815316 0.00564192330961 -0.00791775822199 +UniRef50_Q8ZRF8 0.00297211154937 0.00152008493276 -0.00145202661661 +UniRef50_D3DYP4 Glycosyl transferase GT2 family 0.00821424456438 0.00107840977881 -0.00713583478557 +UniRef50_I6T9G0 Transmembrane protein 0.00687963158644 0.0019368285029 -0.00494280308354 +UniRef50_UPI000288BCD3 nitrate ABC transporter ATPase 4.53552548777e-05 1.27279426934e-05 -3.26273121843e-05 +UniRef50_C1N5D9 Predicted protein 4.96470169118e-05 0.000112684440923 6.30374240112e-05 +UniRef50_UPI0004636F1F hypothetical protein 0.000230679144739 6.71846796626e-05 -0.000163494465076 +UniRef50_C0QHY2 UvrB2 3.78237584406e-05 8.91367576156e-05 5.1312999175e-05 +UniRef50_R4ZU58 Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen 0.00027825399592 0.000229198903288 -4.9055092632e-05 +UniRef50_E3D229 Chromosome partition protein Smc 3.56904496265e-05 0.00304679435341 0.00301110390378 +UniRef50_Q250M1 50S ribosomal protein L24 0.00168048246176 0.0214926424239 0.0198121599621 +UniRef50_UPI000473E9CF hypothetical protein, partial 3.69502597392e-05 2.87360092872e-05 -8.214250452e-06 +UniRef50_Q818M5 Probable glycine dehydrogenase subunit 2 0.0238938454721 0.00597346017526 -0.0179203852968 +UniRef50_M7TFP2 Putative tho complex subunit 2 protein 6.81067763257e-06 0.000703367453174 0.000696556775541 +UniRef50_U5MPT8 Bacteriohemerythrin 0.000976256867724 0.00433232381113 0.00335606694341 +UniRef50_R5HX70 Ethanolamine utilization protein EutP 0.00751721073371 0.00139439891413 -0.00612281181958 +UniRef50_Q6ZG43 5.48403386872e-05 9.80887042638e-05 4.32483655766e-05 +UniRef50_I6T6D9 Glycerophosphoryl diester phosphodiesterase 0.00422852342985 0.00326617517008 -0.00096234825977 +UniRef50_P07604 Transcriptional regulatory protein TyrR 0.00620117634629 0.00135549898565 -0.00484567736064 +UniRef50_Q8CN32 Thiamine phosphate synthase 0.00629361685471 0.0158059280677 0.00951231121299 +UniRef50_Q04939 Sucrose operon repressor 0.000240199252677 0.00193219036903 0.00169199111635 +UniRef50_Q47RU5 Polyribonucleotide nucleotidyltransferase 0.000182767993463 0.00714262766938 0.00695985967592 +UniRef50_A0A024HFG1 0.0010752233141 0.000247467201068 -0.000827756113032 +UniRef50_H3WBP5 0.00206681316991 0.000486688668404 -0.00158012450151 +UniRef50_J0MXI6 Adenosylmethionine 8 amino 7 oxononanoate transaminase 0.00348502938672 0.00183774195303 -0.00164728743369 +UniRef50_R5BEJ3 6.93908067699e-05 0.00162769708649 0.00155830627972 +UniRef50_A6LVT5 0.000168124925177 0.000946665331784 0.000778540406607 +UniRef50_I2DH65 0.00011257037441 0.00117121703789 0.00105864666348 +UniRef50_UPI000345C5CB hypothetical protein 6.81971497556e-06 5.01983139938e-05 4.33785990182e-05 +UniRef50_UPI00037DE01D hypothetical protein 7.56789544466e-05 1.73486913054e-05 -5.83302631412e-05 +UniRef50_G0J3G6 Zinc iron permease 0.00912466851349 0.00431154335565 -0.00481312515784 +UniRef50_U4Q8Z1 Endonuclease III 0.00102386165005 0.00210090339737 0.00107704174732 +UniRef50_UPI00036716D2 hypothetical protein 6.80195942643e-05 3.88384507556e-05 -2.91811435087e-05 +UniRef50_B7IR21 Membrane protein PfoR 0.0209336169686 0.00649784041562 -0.014435776553 +UniRef50_Q7M922 Na H(+) antiporter NhaA 0.000216114010239 0.00282869470504 0.0026125806948 +UniRef50_UPI0003761FCC hypothetical protein 2.1447436385e-06 7.07869533641e-06 4.93395169791e-06 +UniRef50_Q4K5N7 TonB dependent outermembrane heme receptor HasR 0.000286597476869 7.42312623017e-05 -0.000212366214567 +UniRef50_T7JW17 0.000785939587724 0.000251333366122 -0.000534606221602 +UniRef50_A0A024HEK4 Porin 0.00261011295582 0.00175132742346 -0.00085878553236 +UniRef50_P44700 0.000738311246761 0.000130286781696 -0.000608024465065 +UniRef50_UPI000374F1B4 hypothetical protein 1.45067788055e-05 7.85186536664e-06 -6.65491343886e-06 +UniRef50_UPI00041B0045 hypothetical protein 2.20748775524e-06 5.03677510498e-06 2.82928734974e-06 +UniRef50_A1ATB7 Chitinase like protein 6.30622375573e-06 1.52552859258e-05 8.94906217007e-06 +UniRef50_H1SFP6 0.000141722455005 8.53028432373e-05 -5.64196117677e-05 +UniRef50_B4EUV9 Glutamate cysteine ligase 0.00206377764425 0.000134438560782 -0.00192933908347 +UniRef50_F7XAZ8 0.000198229730383 4.21579601885e-05 -0.000156071770195 +UniRef50_W5X8Y0 Peptidase M48 1.38654061062e-05 1.41144001206e-05 2.489940144e-07 +UniRef50_O67137 DNA gyrase subunit B 4.39997863012e-06 1.22551844734e-05 7.85520584328e-06 +UniRef50_K9ZYZ2 Arabinose efflux permease family protein 0.000119206101737 0.0205589752463 0.0204397691446 +UniRef50_A5ULL7 0.00297225907426 0.000708760092468 -0.00226349898179 +UniRef50_UPI00046F1E3C hypothetical protein 1.26873860828e-05 5.0168209657e-05 3.74808235742e-05 +UniRef50_T0TL61 Lactose transport regulator 1.53536775642e-05 6.48244188079e-05 4.94707412437e-05 +UniRef50_Q48UU5 Dephospho CoA kinase 0.00953093777523 0.00472545999697 -0.00480547777826 +UniRef50_UPI000463EC33 hypothetical protein 0.000198911799001 0.000111640289318 -8.7271509683e-05 +UniRef50_UPI00022347EB PREDICTED 2.46429742265e-06 8.42214638841e-06 5.95784896576e-06 +UniRef50_I0EKZ4 0.000219894750786 0.00557459306959 0.0053546983188 +UniRef50_G7M9E2 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.000450620950411 0.00118738813975 0.000736767189339 +UniRef50_P65761 Ribulose phosphate 3 epimerase 0.000437242458129 0.00854835968379 0.00811111722566 +UniRef50_UPI00046FBBBF NADH dehydrogenase 6.86121984767e-05 0.000127211279563 5.85990810863e-05 +UniRef50_F0N3E0 Cytoplasmic membrane protein fxsA 0.000234463347108 0.00406139111418 0.00382692776707 +UniRef50_C4J1H3 0.000409578550276 0.000999172290877 0.000589593740601 +UniRef50_Q89L00 Serine tRNA ligase 0.0107566958561 0.00029234109763 -0.0104643547585 +UniRef50_R0F7X0 Integral membrane protein MviN 0.000306630550148 0.000198897245898 -0.00010773330425 +UniRef50_R0UHS1 Putative phage associated protein 4.65897663776e-05 0.0045540670446 0.00450747727822 +UniRef50_Q8CUF7 0.110224020908 0.0454665444219 -0.0647574764861 +UniRef50_G2TGT9 Cobalt transport protein 0.000190009725932 0.00601016880922 0.00582015908329 +UniRef50_A5N7Z4 Predicted kinase 0.000238662361821 0.000651585918362 0.000412923556541 +UniRef50_UPI0003819C59 hypothetical protein 8.72516090294e-06 9.38912677734e-06 6.639658744e-07 +UniRef50_L0LQZ5 0.000743009680486 0.000439680468259 -0.000303329212227 +UniRef50_B5SF72 2.49092813432e-05 3.16786564492e-05 6.769375106e-06 +UniRef50_A0A013VHK1 Transposase 4.14775602109e-05 2.69701180834e-05 -1.45074421275e-05 +UniRef50_UPI00037C70BA hypothetical protein 5.50994953737e-06 2.62054163011e-05 2.06954667637e-05 +UniRef50_V9R2C2 Membrane protein 0.000407177420556 0.000330578401339 -7.6599019217e-05 +UniRef50_H8FXB7 0.000149233923074 7.504670227e-05 -7.4187220804e-05 +UniRef50_H8FXB4 0.000234347300812 0.000141234199185 -9.3113101627e-05 +UniRef50_P54462 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 0.0203580712091 0.00426646247612 -0.016091608733 +UniRef50_UPI00037DBCEA hypothetical protein, partial 1.37025148585e-05 1.18574092261e-05 -1.8451056324e-06 +UniRef50_S5SFD1 2.58007632619e-05 2.80988874222e-06 -2.29908745197e-05 +UniRef50_UPI000375BFC5 hypothetical protein 7.77121079081e-06 2.02524797919e-06 -5.74596281162e-06 +UniRef50_H3WII0 0.000771185244842 7.59452860521e-05 -0.00069523995879 +UniRef50_Q2RG70 Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region 0.000310262456591 0.000319261302914 8.998846323e-06 +UniRef50_B7V7H6 0.00055786106727 0.000984389017326 0.000426527950056 +UniRef50_O68045 DNA polymerase III subunit epsilon like protein 0.000743431578925 0.000539981291656 -0.000203450287269 +UniRef50_B7V5S0 0.000786274064212 0.000308062720852 -0.00047821134336 +UniRef50_A9B1M6 3.51137641153e-05 4.22774751959e-05 7.1637110806e-06 +UniRef50_K8ETB2 0.000109355192806 0.00132726560005 0.00121791040724 +UniRef50_P78937 Sulfate adenylyltransferase 9.02138832696e-05 5.10465803275e-05 -3.91673029421e-05 +UniRef50_Q47EP3 Error prone DNA polymerase 0.00042124783504 0.000126018676189 -0.000295229158851 +UniRef50_A0A026RF42 Diguanylate cyclase 0.00032116849012 0.000134791477824 -0.000186377012296 +UniRef50_P74861 Aromatic amino acid aminotransferase 0.000589011596326 0.000792362563739 0.000203350967413 +UniRef50_A4J657 NADH quinone oxidoreductase subunit D 1.13021451636e-05 2.37238741028e-05 1.24217289392e-05 +UniRef50_UPI0003A2B6FD uroporphyrinogen decarboxylase 6.32850264661e-06 0.000188432202058 0.000182103699411 +UniRef50_UPI0003660926 Cro Cl family transcriptional regulator 0.00024266775905 2.79405363841e-05 -0.000214727222666 +UniRef50_W9B2U5 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.000139427502255 4.176857519e-05 -9.7658927065e-05 +UniRef50_A1ASQ4 1.07874508205e-05 3.62863149535e-05 2.5498864133e-05 +UniRef50_UPI0003B4C286 oxidoreductase 4.11012281665e-05 6.01522952245e-06 -3.50859986441e-05 +UniRef50_UPI0003B45BD8 peptide ABC transporter ATP binding protein 9.54442566009e-06 9.56323493439e-06 1.88092743e-08 +UniRef50_Q05626 0.000775656141478 0.00100676149498 0.000231105353502 +UniRef50_UPI00036ED21D hypothetical protein 0.000813119955571 0.00103684797422 0.000223728018649 +UniRef50_Q9G021 Phi ETA orf 24 like protein 0.00137250020466 0.000816543885337 -0.000555956319323 +UniRef50_O26935 0.0016819739176 0.000380236101113 -0.00130173781649 +UniRef50_Q4QLU9 23S rRNA C(5)) methyltransferase RlmC 0.00287306788598 0.000783199043592 -0.00208986884239 +UniRef50_P19262 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 3.77209184039e-06 5.8055057455e-06 2.03341390511e-06 +UniRef50_UPI000466CF44 hypothetical protein, partial 1.32662964437e-05 1.69715116519e-05 3.7052152082e-06 +UniRef50_UPI00042AB16A PREDICTED 7.54777288966e-05 0.000318698680276 0.000243220951379 +UniRef50_G2KYU1 0.000625344752869 0.000228247940239 -0.00039709681263 +UniRef50_UPI0004645274 hypothetical protein, partial 0.000130782794563 3.17876366238e-05 -9.89951579392e-05 +UniRef50_UPI00016C59CC ABC type multidrug transport system, ATPase component, partial 3.52119131375e-05 1.31574952526e-05 -2.20544178849e-05 +UniRef50_UPI0002FCA31A hypothetical protein 0.000230274725677 0.000129274123384 -0.000101000602293 +UniRef50_UPI000465045A glutathione synthetase 5.18552849191e-05 8.02523520297e-05 2.83970671106e-05 +UniRef50_Q3J1E9 Plasmid and phage replicative helicase 0.00913075280516 0.00234776033579 -0.00678299246937 +UniRef50_Q9HML8 Phosphate import ATP binding protein PstB 2 1.16942725619e-05 0.000147833286614 0.000136139014052 +UniRef50_Q1IZ14 Major facilitator superfamily MFS_1 7.91375238722e-05 0.00303156226216 0.00295242473829 +UniRef50_UPI0004219822 hypothetical protein 2.32860421517e-05 3.6916690131e-05 1.36306479793e-05 +UniRef50_O83327 CTP synthase 7.01329252741e-06 8.5070302577e-05 7.80570100496e-05 +UniRef50_Q51559 Rhamnosyltransferase 1 subunit A 0.00113236721943 0.000708567437779 -0.000423799781651 +UniRef50_P05719 Type 1 restriction enzyme EcoKI specificity protein 0.00290364002369 0.00126686926462 -0.00163677075907 +UniRef50_A1U0X4 N anthranilate isomerase 1.10592815915e-05 6.50626549224e-05 5.40033733309e-05 +UniRef50_UPI00047A0DA3 cation 0.000199049384127 0.000709943691843 0.000510894307716 +UniRef50_UPI000379D46E hypothetical protein 2.63592460515e-05 5.54479059578e-05 2.90886599063e-05 +UniRef50_D6GSS9 CRISPR associated endonuclease Cas1 0.00422455519902 0.000431611893752 -0.00379294330527 +UniRef50_G7MA72 Cys Met metabolism pyridoxal phosphate dependent protein 0.000931396860111 0.00221944649005 0.00128804962994 +UniRef50_UPI00036713D4 hypothetical protein 0.000115168961292 6.38332080909e-05 -5.13357532011e-05 +UniRef50_UPI00005C7F68 hypothetical protein 0.00756672371091 0.00138698075168 -0.00617974295923 +UniRef50_W4V5S1 Electron transfer flavoprotein 1.00416539455e-05 1.37795435268e-05 3.7378895813e-06 +UniRef50_C6SH91 Copper transporting ATPase copA 5.34682703719e-05 0.00251794614812 0.00246447787775 +UniRef50_B5F2H2 Porin thermoregulatory protein EnvY 7.0917025558e-05 0.000120391508817 4.9474483259e-05 +UniRef50_Q1GFF4 Transcriptional regulator, XRE family 0.000680907387788 0.000326739513398 -0.00035416787439 +UniRef50_UPI0003828BA0 hypothetical protein 1.01514421555e-05 1.72177951526e-05 7.0663529971e-06 +UniRef50_UPI00037D9868 hypothetical protein 3.61577737852e-05 0.000216349234575 0.00018019146079 +UniRef50_J3M965 0.000442768252838 0.00222755444406 0.00178478619122 +UniRef50_W4UAJ0 Integral membrane protein 4.3693027582e-05 0.000755738376825 0.000712045349243 +UniRef50_Q8CUF1 0.00429994075062 0.00216276634162 -0.002137174409 +UniRef50_B7V1W7 Vanillate O demethylase oxygenase subunit 0.000114853749147 0.00575832139712 0.00564346764797 +UniRef50_P32721 D allose import ATP binding protein AlsA 0.00627220960356 0.00487989412088 -0.00139231548268 +UniRef50_A4XIS1 Bifunctional protein GlmU 4.18654747068e-06 5.07337271199e-06 8.8682524131e-07 +UniRef50_Q2SM53 SufE protein probably involved in Fe S center assembly 1.90824251422e-05 1.68165196228e-05 -2.2659055194e-06 +UniRef50_Q9KRL4 Carboxynorspermidine carboxyspermidine decarboxylase 0.000102980743078 8.30739051027e-06 -9.46733525677e-05 +UniRef50_UPI00035E542D hypothetical protein 3.69557565204e-05 2.44055033728e-05 -1.25502531476e-05 +UniRef50_F0Y457 0.000193432161966 0.000822219723141 0.000628787561175 +UniRef50_Q3J3X6 0.00528152513841 0.000530633076176 -0.00475089206223 +UniRef50_B9KS17 Chemotaxis protein methyltransferase 0.0160956173897 0.0045274182983 -0.0115681990914 +UniRef50_A6LX14 GCN5 related N acetyltransferase 0.000235438246685 0.00217646779182 0.00194102954513 +UniRef50_I4DAA0 UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase 0.00242318351035 0.000575006335563 -0.00184817717479 +UniRef50_F9Z004 Menaquinone specific isochorismate synthase 0.000165564030199 0.00644130951652 0.00627574548632 +UniRef50_UPI0003C1484E 3.42418972292e-06 1.53411790021e-06 -1.89007182271e-06 +UniRef50_A8LC93 NADH quinone oxidoreductase subunit I 2.21565439207e-05 8.11312366933e-05 5.89746927726e-05 +UniRef50_UPI0003141905 hypothetical protein 8.57101305966e-05 6.2356200803e-05 -2.33539297936e-05 +UniRef50_U2Z6J9 1.88403600774e-05 5.13764815013e-05 3.25361214239e-05 +UniRef50_B9E8Y3 Xanthine phosphoribosyltransferase 0.0153540988411 0.00367421704271 -0.0116798817984 +UniRef50_UPI00036CDCFE hypothetical protein 9.64780395073e-05 0.000204216397562 0.000107738358055 +UniRef50_Q8CP83 2 oxoglutarate dehydrogenase E1 component 0.018636790867 0.00398732613491 -0.0146494647321 +UniRef50_UPI00030EEC63 hypothetical protein 0.00019084247147 3.61474083056e-05 -0.000154695063164 +UniRef50_Q04JH4 Triosephosphate isomerase 1.92248946055e-05 0.00488347589596 0.00486425100135 +UniRef50_Q4L9P9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0237682542607 0.00753192880043 -0.0162363254603 +UniRef50_P0AEH3 Protein ElaA 0.0346817930719 0.00113782586522 -0.0335439672067 +UniRef50_V5WXJ4 Lytic transglycosylase 0.00130789180878 0.0015769621105 0.00026907030172 +UniRef50_Q8CTV2 ATP phosphoribosyltransferase regulatory subunit 0.00674622572899 0.00395368219863 -0.00279254353036 +UniRef50_V9U722 0.00553940761972 0.00145237723867 -0.00408703038105 +UniRef50_K7RTT6 O antigen polymerase 0.000262968339136 0.00959417425795 0.00933120591881 +UniRef50_A3PH69 Alpha beta hydrolase 0.00198264573618 0.000865237791873 -0.00111740794431 +UniRef50_UPI0003B51C59 ABC transporter permease 2.58103776828e-05 3.34060704141e-05 7.5956927313e-06 +UniRef50_Q57S48 HTH type transcriptional repressor AllR 0.00264163304755 0.00362041843285 0.0009787853853 +UniRef50_UPI00029A79A0 HAD family hydrolase 5.2702814321e-05 0.000173432249524 0.000120729435203 +UniRef50_G8VAK1 ABC transporter 0.000410310857448 0.00302698360664 0.00261667274919 +UniRef50_G9WFA5 Maltose maltodextrin ABC permease 0.00398024301197 0.00169107322023 -0.00228916979174 +UniRef50_UPI0003A1DBBC sodium 6.3695631343e-05 0.00037646767367 0.000312772042327 +UniRef50_D8LB80 1.64524832966e-05 2.86522974023e-06 -1.35872535564e-05 +UniRef50_UPI00037A8200 hypothetical protein 5.96278313763e-06 4.58069254279e-05 3.98441422903e-05 +UniRef50_X3EKF3 4.96137885679e-05 5.92589235048e-05 9.6451349369e-06 +UniRef50_W4HLY6 0.000206295347483 3.05856013721e-05 -0.000175709746111 +UniRef50_Q3J3X8 0.0178708096648 0.00388452009428 -0.0139862895705 +UniRef50_K4PQW7 0.000968282567052 0.000700355822605 -0.000267926744447 +UniRef50_UPI0002F01115 hypothetical protein 1.42975669354e-05 1.67173770384e-05 2.419810103e-06 +UniRef50_G7U413 Pyridine nucleotide disulfide oxidoreductase 0.000356347795263 0.00566886637644 0.00531251858118 +UniRef50_D3QHT0 0.00925235716019 0.00192619424699 -0.0073261629132 +UniRef50_F9EIZ7 0.000398249745694 0.00133652031744 0.000938270571746 +UniRef50_R7CST7 ABC type proline glycine betaine transport system periplasmic component 0.000131496402917 8.96535594104e-05 -4.18428435066e-05 +UniRef50_M4RA06 0.000147072463189 0.00768430891371 0.00753723645052 +UniRef50_Q2FHR7 Carbamate kinase 1 0.0109880921477 0.00191592924308 -0.00907216290462 +UniRef50_UPI000255E3EB 1 deoxy D xylulose 5 phosphate reductoisomerase 8.99507681555e-05 1.53021916864e-05 -7.46485764691e-05 +UniRef50_P54475 DEAD box ATP dependent RNA helicase CshB 0.00591822693621 0.00811585907005 0.00219763213384 +UniRef50_Q989G9 Mlr6427 protein 0.0130231991246 0.00361434483257 -0.00940885429203 +UniRef50_Q9RZE0 0.000122163750441 0.0145374961013 0.0144153323509 +UniRef50_F0VYG1 Cysteine desulfurase 0.000114621251678 0.00244405402366 0.00232943277198 +UniRef50_B7ICE8 TonB dependent receptor protein 0.00018951621741 0.0038260054362 0.00363648921879 +UniRef50_UPI00046ED547 major facilitator transporter, partial 6.55243909766e-06 2.07922153975e-05 1.42397762998e-05 +UniRef50_Q0SWZ1 1,4 alpha glucan branching enzyme GlgB 1 2.04988237964e-06 2.70011869011e-06 6.5023631047e-07 +UniRef50_D1CAE1 Pyridoxal 5 phosphate dependent protein beta subunit 9.43012751554e-06 1.0575995378e-05 1.14586786246e-06 +UniRef50_Q31MP6 Diguanylate cyclase with GAF sensor 2.78084750586e-05 4.12417913775e-05 1.34333163189e-05 +UniRef50_I6X0E0 Lipoprotein 1.58504723108e-05 2.61098488444e-05 1.02593765336e-05 +UniRef50_M2CCG1 0.0035686646938 0.00126376029742 -0.00230490439638 +UniRef50_W0Z4J7 Histidine kinase 5.84177167014e-05 0.000148282782229 8.98650655276e-05 +UniRef50_B1J7Z5 3 demethylubiquinone 9 3 methyltransferase 0.00219017386806 0.000379421891038 -0.00181075197702 +UniRef50_I1Y621 Lytic murein transglycosylase 0.000122608437683 0.00910707841257 0.00898446997489 +UniRef50_X5EFR9 Two component sensor 5.57037858615e-05 0.00294364044167 0.00288793665581 +UniRef50_X1THZ3 Marine sediment metagenome DNA, contig 1.11381533479e-05 3.5288493879e-05 2.41503405311e-05 +UniRef50_UPI0002195D59 Zn dependent hydrolase 3.52896184622e-06 1.93075033029e-05 1.57785414567e-05 +UniRef50_UPI0003902576 ATP synthase gamma chain 0.000133860279732 2.90029227032e-05 -0.000104857357029 +UniRef50_R9SM98 Radical SAM domain containing protein 0.00212963227343 0.000504985578368 -0.00162464669506 +UniRef50_UPI00030D5D10 hypothetical protein 0.000219104628124 4.98771594867e-05 -0.000169227468637 +UniRef50_G7M580 0.00049713719824 0.000680297921892 0.000183160723652 +UniRef50_E6MYM9 0.000808898547544 0.00469487536722 0.00388597681968 +UniRef50_UPI000376AE97 hypothetical protein 0.00026243952233 0.000274939442967 1.2499920637e-05 +UniRef50_Q28PV9 N acetyl gamma glutamyl phosphate reductase 0.0103608088111 0.0056236187507 -0.0047371900604 +UniRef50_UPI0001BC2E61 thioredoxin reductase 7.01997203629e-06 2.8759509681e-05 2.17395376447e-05 +UniRef50_R5RVQ5 2.22972884241e-05 8.13456768788e-05 5.90483884547e-05 +UniRef50_L0HHM1 0.000165052744804 3.62491890366e-05 -0.000128803555767 +UniRef50_A4X335 ABC transporter related 0.00546215554625 0.0132996681079 0.00783751256165 +UniRef50_A0A023S0B1 Glutathione S transferase 0.000150193364259 0.00430752266902 0.00415732930476 +UniRef50_UPI00035E14F7 hypothetical protein 0.000327889384243 6.12176642895e-05 -0.000266671719953 +UniRef50_I2BCP0 6.55773221752e-05 0.000294603113935 0.00022902579176 +UniRef50_D2NNT4 2.76090624944e-06 9.32403267345e-06 6.56312642401e-06 +UniRef50_UPI00034A702A hypothetical protein 1.18076873778e-05 1.15194952007e-05 -2.881921771e-07 +UniRef50_Q0TQK1 Trigger factor 0.000891182046329 0.00103261877795 0.000141436731621 +UniRef50_Q4ZQB6 Transcriptional regulator, LysR family 0.000569092874814 0.000420671954498 -0.000148420920316 +UniRef50_P53580 Methionine aminopeptidase B 2.45733545271e-05 0.027988090924 0.0279635175695 +UniRef50_E3EL28 Nicotinate phosphoribosyltransferase and like protein 7.86429143391e-05 0.000558043776739 0.0004794008624 +UniRef50_Q9HUY1 Dihydrolipoyl dehydrogenase 3 3.32814596165e-05 6.38502847262e-05 3.05688251097e-05 +UniRef50_UPI00047E1DD8 hypothetical protein 4.17006319736e-06 1.03959403871e-05 6.22587718974e-06 +UniRef50_Q2Y7L8 Chorismate synthase 0.00344847541689 0.0126181357442 0.00916966032731 +UniRef50_A5V6F9 Anhydro N acetylmuramic acid kinase 5.40083299955e-06 2.48688167267e-05 1.94679837271e-05 +UniRef50_UPI0003B6910D hypothetical protein 1.18967260701e-05 1.27702661251e-05 8.73540055e-07 +UniRef50_A3PRF9 0.0119904191803 0.00211010264719 -0.00988031653311 +UniRef50_G7WBX4 Arabinose efflux permease family protein 0.000202304594079 0.00149866450885 0.00129635991477 +UniRef50_A2SDV6 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 5.98818429438e-06 8.86705299464e-06 2.87886870026e-06 +UniRef50_I0C160 Glycerophosphodiester phosphodiesterase 0.0113213837572 0.00285707655749 -0.00846430719971 +UniRef50_UPI0003640286 hypothetical protein 3.95865378117e-06 4.92687969092e-05 4.5310143128e-05 +UniRef50_P40871 2,3 dihydroxybenzoate AMP ligase 8.78111553783e-06 0.000269006019936 0.000260224904398 +UniRef50_F8F763 0.0181289481533 0.00803977944792 -0.0100891687054 +UniRef50_G7ZLK0 0.0183150675424 0.00248238435055 -0.0158326831919 +UniRef50_UPI0003629F80 membrane protein, partial 2.48612408341e-05 5.24623882368e-05 2.76011474027e-05 +UniRef50_Q98FA5 Thiamine import ATP binding protein ThiQ 7.72788544042e-06 1.45778381632e-05 6.84995272278e-06 +UniRef50_UPI0003600109 hypothetical protein 1.8900326105e-05 1.11444571544e-05 -7.7558689506e-06 +UniRef50_Q5X9H7 Holliday junction ATP dependent DNA helicase RuvA 0.00729177193588 0.00439581487419 -0.00289595706169 +UniRef50_Q4L5A2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0198277412269 0.00158205377784 -0.0182456874491 +UniRef50_Q4L7Q5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00645740686697 0.00294155131318 -0.00351585555379 +UniRef50_P65328 Riboflavin synthase 5.09637756629e-05 5.56829607498e-05 4.7191850869e-06 +UniRef50_Q8CZ55 1.42772776373e-05 0.00276229829954 0.0027480210219 +UniRef50_Q831A8 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.0331872188932 0.020459449129 -0.0127277697642 +UniRef50_UPI00036518A8 hypothetical protein 0.00011674824398 9.13350634579e-05 -2.54131805221e-05 +UniRef50_P0A264 Outer membrane protein C 0.00772079053831 0.00110480594676 -0.00661598459155 +UniRef50_P44068 0.00266760447144 0.00940787617346 0.00674027170202 +UniRef50_J9YRQ9 Large conductance mechanosensitive channel protein 0.00158417757226 0.000471250061484 -0.00111292751078 +UniRef50_A1B1F2 UDP 3 O acylglucosamine N acyltransferase 0.00442888757957 0.00125230199507 -0.0031765855845 +UniRef50_Q1CUR3 Glutamyl tRNA reductase 8.65132136393e-05 0.00319103585154 0.0031045226379 +UniRef50_UPI00035E28E1 hypothetical protein 6.53430107331e-06 6.28467855974e-05 5.63124845241e-05 +UniRef50_Q0TRY8 Lysine N methylase, homolog 0.000109205204105 0.00206512423193 0.00195591902783 +UniRef50_C4LGM2 Catalase 8.44487670801e-05 0.00489269975426 0.00480825098718 +UniRef50_UPI0002F0DA53 hypothetical protein 3.19484217821e-05 3.19531240963e-05 4.7023142e-09 +UniRef50_F0MZQ2 2.23479749099e-05 8.35576250771e-05 6.12096501672e-05 +UniRef50_UPI000382677B hypothetical protein 0.000226925829482 7.17079860765e-05 -0.000155217843405 +UniRef50_Q10MG8 Retrotransposon protein, putative, Ty3 gypsy subclass, expressed 7.78486052185e-06 0.000127814362604 0.000120029502082 +UniRef50_H3UXX3 0.0027655723769 0.000514789824035 -0.00225078255287 +UniRef50_A8LNJ9 Flagellar biosynthesis regulatory protein FlaF 9.027201014e-05 9.42644421527e-05 3.9924320127e-06 +UniRef50_UPI0003F80943 hypothetical protein 2.12727593867e-06 4.9545565599e-06 2.82728062123e-06 +UniRef50_K0HHI0 0.000169783803081 0.0049246611229 0.00475487731982 +UniRef50_UPI00005DE9C0 MULTISPECIES 8.34576471041e-06 1.8169669153e-05 9.82390444259e-06 +UniRef50_UPI00040056AC hypothetical protein 8.93248404841e-06 1.44298065302e-05 5.49732248179e-06 +UniRef50_UPI000368B929 cold shock protein 5.30313289166e-05 6.97309310371e-05 1.66996021205e-05 +UniRef50_A6LVD8 0.000380019451866 0.00134680188875 0.000966782436884 +UniRef50_UPI00037150E3 hypothetical protein 0.000124096716083 0.000170323099998 4.6226383915e-05 +UniRef50_P64558 0.00416361673609 0.000381053813154 -0.00378256292294 +UniRef50_P52559 N5 carboxyaminoimidazole ribonucleotide synthase 4.76450579676e-06 8.95915780389e-06 4.19465200713e-06 +UniRef50_R6KNU0 Glycosyl transferase 0.000347107417614 0.00126998362134 0.000922876203726 +UniRef50_T9UBD7 0.000268010530422 3.72849510488e-05 -0.000230725579373 +UniRef50_A6LXN0 Polyprenyl synthetase 0.000503953857256 0.00310835773641 0.00260440387915 +UniRef50_Q65ID2 Peptide methionine sulfoxide reductase MsrB 1.4935587378e-05 0.000824139642406 0.000809204055028 +UniRef50_UPI0003B62BEC hypothetical protein, partial 1.0810008296e-05 0.00157009548949 0.00155928548119 +UniRef50_S4WAF1 Synthase [glutamine hydrolyzing] 0.000120647088602 0.00010952938109 -1.1117707512e-05 +UniRef50_U3AMR8 9.34795194891e-06 7.2063233964e-06 -2.14162855251e-06 +UniRef50_G7M622 Transcriptional regulator, LuxR family 0.000196949211577 0.00141124840683 0.00121429919525 +UniRef50_I6SFZ0 TPR domain containing protein 6.29126657933e-06 0.000499407976911 0.000493116710332 +UniRef50_UPI00047C4D4C hypothetical protein 1.46885477652e-05 3.07224686161e-05 1.60339208509e-05 +UniRef50_Q9Z9U1 Sorbitol dehydrogenase 0.0193516641736 0.0050590100551 -0.0142926541185 +UniRef50_Q5HPF3 Phosphate ABC transporter, permease protein 0.00878099935867 0.00154303750142 -0.00723796185725 +UniRef50_UPI0004652E03 hypothetical protein 0.00206124920403 0.000112428188694 -0.00194882101534 +UniRef50_C1L2X6 UDP N acetylenolpyruvoylglucosamine reductase 1.81031602232e-05 0.000843292360779 0.000825189200556 +UniRef50_D0DAU8 Phage integrase 0.000167275918245 4.34360707186e-05 -0.000123839847526 +UniRef50_Q2J514 Endoribonuclease L PSP 0.000851472155308 0.00323663754501 0.0023851653897 +UniRef50_A6E7D3 0.000198776573373 0.000236873282938 3.8096709565e-05 +UniRef50_UPI000225B5DA magnesium chelatase; methanol dehydrogenase regulator, partial 5.40364387347e-05 0.000188279228719 0.000134242789984 +UniRef50_A5IPN7 0.000229131606966 0.000122169320374 -0.000106962286592 +UniRef50_B8KSJ4 Phosphate starvation inducible E 5.63365188014e-05 3.29591929588e-05 -2.33773258426e-05 +UniRef50_K0JY23 2.3091407609e-05 7.1054417983e-06 -1.59859658107e-05 +UniRef50_D3T5X9 Mannitol dehydrogenase domain protein 0.000565179451584 0.00128525462466 0.000720075173076 +UniRef50_P24554 DNA repair protein RadA 0.00309342043247 0.00976899845666 0.00667557802419 +UniRef50_UPI0004711C23 6 phospho beta glucosidase 5.50938034135e-06 1.9806022383e-05 1.42966420417e-05 +UniRef50_A3PQ11 0.00642286083439 0.000458636157457 -0.00596422467693 +UniRef50_P25550 Anaerobic sulfatase maturating enzyme homolog AslB 0.00191564907731 0.00149367648179 -0.00042197259552 +UniRef50_Q320T0 Diguanylate cyclase DosC 0.00265782254141 0.000357261126401 -0.00230056141501 +UniRef50_P24752 Acetyl CoA acetyltransferase, mitochondrial 4.80404621216e-06 8.69455576069e-06 3.89050954853e-06 +UniRef50_UPI0003828B5A hypothetical protein, partial 4.16364986934e-05 2.3046962464e-05 -1.85895362294e-05 +UniRef50_Q070J3 Virion core protein 5.90192665843e-07 9.36802695393e-07 3.4661002955e-07 +UniRef50_A9B2U4 3 methyl 2 oxobutanoate hydroxymethyltransferase 6.34069412285e-06 9.96248383562e-06 3.62178971277e-06 +UniRef50_Q2YZ25 Putative hemin transport system permease protein HrtB 0.022698712603 0.00840512171193 -0.0142935908911 +UniRef50_UPI000479F72A hypothetical protein 1.27911073191e-05 1.24607745134e-05 -3.303328057e-07 +UniRef50_B9FT55 0.000104229824533 4.05369708573e-05 -6.36928536757e-05 +UniRef50_C6STC0 0.0047151520229 0.000292392777421 -0.00442275924548 +UniRef50_K0ELZ4 Transcriptional regulator 1.18062210939e-05 1.27090826937e-05 9.028615998e-07 +UniRef50_F0RLU8 Alpha beta hydrolase fold protein 0.000662156832023 0.00117715421482 0.000514997382797 +UniRef50_X5QUZ2 0.000107210071844 0.000534885241154 0.00042767516931 +UniRef50_A4WPB0 0.000595658441196 0.000387724339418 -0.000207934101778 +UniRef50_Q2JXG9 tRNA N6 adenosine threonylcarbamoyltransferase 5.80922141835e-06 1.17109049712e-05 5.90168355285e-06 +UniRef50_I0EL02 0.000185648846977 0.00570709903582 0.00552145018884 +UniRef50_A3JC42 3.28843471043e-05 0.000191933406003 0.000159049058899 +UniRef50_P53434 Putative GTP cyclohydrolase 1 type 2 9.18738992938e-06 0.00152904522701 0.00151985783708 +UniRef50_Q1D054 8.88446300182e-05 2.76614349167e-05 -6.11831951015e-05 +UniRef50_A0QJB3 Polyphosphate kinase 1.25884466729e-05 0.000555380391152 0.000542791944479 +UniRef50_UPI00035D6A77 hypothetical protein 3.89183596963e-05 5.63148003496e-06 -3.32868796613e-05 +UniRef50_M1N0K2 FeS cluster assembly protein SufD 0.000346299045347 0.000417167838273 7.0868792926e-05 +UniRef50_V6UQJ7 Membrane protein 0.000445673408356 0.000149244910393 -0.000296428497963 +UniRef50_UPI0003B63A1B acetyltransferase 0.000118176132609 0.000116851094155 -1.325038454e-06 +UniRef50_G8NAB2 Replicative DNA helicase DnaB 0.000426209298448 0.0512180383658 0.0507918290674 +UniRef50_A0LV48 Probable dual specificity RNA methyltransferase RlmN 1.53597847628e-05 2.23656383507e-05 7.0058535879e-06 +UniRef50_D4HEJ4 Phospholipase, patatin family 0.000146312398781 0.00633069496057 0.00618438256179 +UniRef50_UPI00037DE98D hypothetical protein 2.1357038177e-05 1.8065180657e-05 -3.29185752e-06 +UniRef50_F5XRV0 Polyprenyl diphosphate synthase 0.000105541282996 0.00361036326254 0.00350482197954 +UniRef50_O27679 Protein pelota homolog 0.00329525344478 0.000805033787533 -0.00249021965725 +UniRef50_A9ADZ8 BolA family protein 5.5783774969e-05 0.00172846545988 0.00167268168491 +UniRef50_E7PV88 Transposase IS861 orfB 6.73289766303e-05 2.94934636254e-05 -3.78355130049e-05 +UniRef50_UPI0004770260 glucose 1 phosphate adenylyltransferase 4.08635719305e-06 5.8956132068e-05 5.48697748749e-05 +UniRef50_P0A933 Putative polysaccharide export protein GfcE 0.00666031743796 0.000926881587662 -0.0057334358503 +UniRef50_G2I4D0 7.99256087773e-06 2.16785627555e-05 1.36860018778e-05 +UniRef50_UPI0004789CC8 hypothetical protein 0.000115173522346 2.99082739924e-05 -8.52652483536e-05 +UniRef50_Q9RRU8 S ribosylhomocysteine lyase 6.72266251472e-05 0.0583279369581 0.058260710333 +UniRef50_X2LN33 5.16602569039e-05 1.38509723157e-05 -3.78092845882e-05 +UniRef50_B2HU41 NADH quinone oxidoreductase subunit A 6.74261606283e-05 0.00558496713183 0.0055175409712 +UniRef50_U3TT52 Cytoplasmic protein 0.0138377582737 0.00295232341088 -0.0108854348628 +UniRef50_P75916 Inner membrane protein YcdZ 0.000912218933045 0.000397287047353 -0.000514931885692 +UniRef50_P9WQB2 2 isopropylmalate synthase 4.08179916298e-06 3.50369511836e-05 3.09551520206e-05 +UniRef50_O27636 ORC1 type DNA replication protein 2 0.00203981818382 0.00120634950341 -0.00083346868041 +UniRef50_A4J6I7 Xanthine phosphoribosyltransferase 3.60802186924e-05 3.77066008089e-05 1.6263821165e-06 +UniRef50_UPI000374951A hypothetical protein 3.77008142513e-05 1.70371498e-05 -2.06636644513e-05 +UniRef50_UPI0002DBEA5E ImpA family type VI secretion associated protein 5.01298295168e-06 9.02939316489e-06 4.01641021321e-06 +UniRef50_UPI0003B4D6D9 NADH dehydrogenase 4.50201320614e-06 7.52577831454e-06 3.0237651084e-06 +UniRef50_F7W6Q2 WGS project CABT00000000 data, contig 2.35 1.96741033551e-06 9.95662297439e-07 -9.71748038071e-07 +UniRef50_UPI0003618C13 2,3 dihydroxybenzoate 2,3 dehydrogenase, partial 4.15946601356e-05 3.71216688124e-05 -4.4729913232e-06 +UniRef50_B9KTW7 0.00424241318697 0.000498115346756 -0.00374429784021 +UniRef50_UPI0001D2F064 adenosylcobinamide phosphate synthase 2.23569813254e-05 9.53480383303e-05 7.29910570049e-05 +UniRef50_UPI000344E65D phosphomethylpyrimidine synthase 4.43345227567e-06 1.41967490244e-05 9.76329674873e-06 +UniRef50_C0H3V8 7.86133872416e-05 6.80123934597e-05 -1.06009937819e-05 +UniRef50_F8IRV1 Anthranilate synthase component II 0.00681316265366 0.00161732017706 -0.0051958424766 +UniRef50_D4HEY5 0.000654599980668 0.00110055914979 0.000445959169122 +UniRef50_Q5FLZ3 tRNA N6 adenosine threonylcarbamoyltransferase 0.0262870365471 0.0153160634563 -0.0109709730908 +UniRef50_Q5CQR3 1.53387161071e-05 6.56104887678e-05 5.02717726607e-05 +UniRef50_B0VM39 Potassium transporting ATPase C chain 0.000374987109523 0.010565064503 0.0101900773935 +UniRef50_Q8CTZ4 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.0114338220404 0.00216121282061 -0.00927260921979 +UniRef50_C5N0F9 X Pro dipeptidyl peptidase C terminal non catalytic domain protein 0.0156896822387 0.00348452064901 -0.0122051615897 +UniRef50_G7R7B9 0.00115847312024 0.000509873033243 -0.000648600086997 +UniRef50_UPI0003FE850D hypothetical protein 5.33932403205e-05 6.4062192689e-05 1.06689523685e-05 +UniRef50_P02925 D ribose binding periplasmic protein 0.00507319146911 0.000837530144169 -0.00423566132494 +UniRef50_UPI00030221F2 metallophosphoesterase 3.60871255989e-06 0.000629701916285 0.000626093203725 +UniRef50_A5UN81 Predicted ATPase, AAA+ family 0.00294928313237 0.0007070872076 -0.00224219592477 +UniRef50_UPI0003724574 CRISPR associated protein Csn1, partial 0.0018392035029 0.000411106723978 -0.00142809677892 +UniRef50_A1WZJ2 60 kDa chaperonin 0.0268005975217 0.0139229155658 -0.0128776819559 +UniRef50_P08957 Type I restriction enzyme EcoKI M protein 0.00175921514787 0.00110938204227 -0.0006498331056 +UniRef50_Q98QK7 0.000278911964858 0.000507457703944 0.000228545739086 +UniRef50_A7X4T7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.00528677204065 0.00548070710579 0.00019393506514 +UniRef50_Q57GJ7 Ascorbate specific phosphotransferase enzyme IIA component 0.0029104856148 0.00112715346447 -0.00178333215033 +UniRef50_P58967 Putative homocitrate synthase AksA 3.80550937265e-06 8.35254455261e-06 4.54703517996e-06 +UniRef50_P78067 Thiosulfate sulfurtransferase YnjE 0.001918552526 0.0010243275422 -0.0008942249838 +UniRef50_B7H3X0 Bacterial regulatory helix turn helix protein, AraC family protein 0.000236915892584 0.00978933405055 0.00955241815797 +UniRef50_Q8YAM6 ATP synthase subunit beta 1 1.32029202228e-05 0.00290636368227 0.00289316076205 +UniRef50_Q6GEN7 Tagatose 1,6 diphosphate aldolase 0.0117392290246 0.00185607913453 -0.00988314989007 +UniRef50_A0A024JA58 Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit 9.4694636242e-06 0.00017690166138 0.000167432197756 +UniRef50_UPI000478EDC7 hypothetical protein 0.000212687957533 2.77582337378e-05 -0.000184929723795 +UniRef50_S4C0T0 2.87972154232e-06 0.000931292669092 0.00092841294755 +UniRef50_UPI00047AEF8E phosphohydrolase 4.27781934739e-06 1.30159444156e-05 8.73812506821e-06 +UniRef50_V5C9A8 Anthranilate 1,2 dioxygenase electron transfer component AntC 2.15240194098e-05 1.28948007131e-05 -8.6292186967e-06 +UniRef50_X1LWS5 Marine sediment metagenome DNA, contig 0.000113230912885 1.56979303293e-05 -9.75329825557e-05 +UniRef50_UPI00016B263F molecular chaperone GroEL 1.32397823298e-05 8.70740838077e-06 -4.53237394903e-06 +UniRef50_UPI0003787BF0 hypothetical protein 3.26514748465e-05 2.41834077632e-05 -8.4680670833e-06 +UniRef50_Q2SEB7 3.57370694784e-06 5.34485844583e-06 1.77115149799e-06 +UniRef50_Q5HMD7 Cell division protein, FtsW RodA SpoVE family 0.0204393239274 0.00617972085519 -0.0142596030722 +UniRef50_C9Y1J4 Penicillin binding protein activator LpoB 0.00627264501339 0.000277727308957 -0.00599491770443 +UniRef50_K3XR47 6.65677806712e-06 9.95312311704e-06 3.29634504992e-06 +UniRef50_A0AI76 Ribonuclease HII 0.00130802379018 0.00473590015569 0.00342787636551 +UniRef50_Q6AG81 Arginine tRNA ligase 2.73630674835e-06 0.00133500869557 0.00133227238882 +UniRef50_L3UJQ1 0.000409040933354 0.000548163191922 0.000139122258568 +UniRef50_Q9ZL83 Ribonuclease Y 9.39019872821e-05 0.00470335940686 0.00460945741958 +UniRef50_Q890T6 Conserved protein 0.000628802491806 0.00196375536325 0.00133495287144 +UniRef50_B8I2Q1 LexA repressor 0.00945772278924 0.00486126432313 -0.00459645846611 +UniRef50_W0N7A1 Urea ABC transporter ATP binding protein 0.00430729455398 0.00223610168042 -0.00207119287356 +UniRef50_P95231 Serine acetyltransferase 9.14936860443e-06 3.1969071978e-05 2.28197033736e-05 +UniRef50_UPI00036454DD hypothetical protein 0.000100964683628 3.74786925159e-05 -6.34859911121e-05 +UniRef50_V4NEJ0 Cupin 0.00012956521331 4.0945897789e-05 -8.8619315521e-05 +UniRef50_G7ZTM6 Capsular polysaccharide synthesis enzyme 0.0112707305353 0.00218048295862 -0.00909024757668 +UniRef50_A3MA53 0.000253914342281 0.00622617523217 0.00597226088989 +UniRef50_M9RK06 Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein 0.00331579272076 0.00092470031499 -0.00239109240577 +UniRef50_A4WX60 0.00460064182079 0.0002590497414 -0.00434159207939 +UniRef50_A6M1Q8 Periplasmic binding protein LacI transcriptional regulator 0.00023519376252 0.000615506306557 0.000380312544037 +UniRef50_UPI000464A0A1 hypothetical protein 0.000299494683304 4.59488546187e-05 -0.000253545828685 +UniRef50_Q5HHQ6 Putative acetyltransferase SACOL0827 0.0196026484559 0.00195959237771 -0.0176430560782 +UniRef50_Q0AP83 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 9.29347169502e-06 8.54862967682e-06 -7.448420182e-07 +UniRef50_D3E0S2 0.00539200134072 0.000250268394227 -0.00514173294649 +UniRef50_W4TUN4 Sugar binding protein 0.000339699433373 0.000208871098032 -0.000130828335341 +UniRef50_B9EAX4 Capsular polysaccharide synthesis protein CapM homolog 0.0165831730562 0.00160779051382 -0.0149753825424 +UniRef50_Q8TKX9 Cysteine desulphurase 0.00195544607495 0.00151595541576 -0.00043949065919 +UniRef50_UPI00037AD2A9 hypothetical protein 2.42925184615e-06 0.000163680525141 0.000161251273295 +UniRef50_G7M1Z6 Methyl accepting chemotaxis sensory transducer with Cache sensor 5.4840579493e-05 0.000819594717126 0.000764754137633 +UniRef50_Q8CTH3 0.000350048521322 6.03386230433e-05 -0.000289709898279 +UniRef50_B5HEJ3 0.000159671545941 0.000124915033282 -3.4756512659e-05 +UniRef50_UPI00036A911D hypothetical protein 0.000215819166836 3.95997246021e-05 -0.000176219442234 +UniRef50_T1ZGA3 Phosphomethylpyrimidine kinase 0.0079226880745 0.0023469221874 -0.0055757658871 +UniRef50_P14503 3.14416699214e-05 1.64480680309e-05 -1.49936018905e-05 +UniRef50_UPI00037E35E9 hypothetical protein 5.53392102257e-06 0.000472152392411 0.000466618471388 +UniRef50_A3MZB9 Bifunctional protein PyrR 1.93222579283e-05 4.55037444567e-05 2.61814865284e-05 +UniRef50_UPI0003B6F64B ABC transporter 2.65609478455e-06 5.61329681251e-06 2.95720202796e-06 +UniRef50_R2NFJ2 Pyruvate flavodoxin oxidoreductase 0.000481651038881 0.00311806484705 0.00263641380817 +UniRef50_A0A028CJT1 LysR family transcriptional regulator 0.00193681284374 0.00117892041956 -0.00075789242418 +UniRef50_B8I741 ABC transporter transmembrane region 0.000220760911454 0.00306058031153 0.00283981940008 +UniRef50_A0RBD6 Dehydratase 9.80439086498e-05 0.000359411811592 0.000261367902942 +UniRef50_UPI000409C1DE hypothetical protein 0.00098957499695 6.69842992572e-05 -0.000922590697693 +UniRef50_G4RBE3 Mannonate dehydratase 0.00326374039885 0.000663936577622 -0.00259980382123 +UniRef50_D3QHV2 Sec independent protein translocase protein TatC 0.0158708493303 0.00280481299394 -0.0130660363364 +UniRef50_E0XRZ7 5.08708555389e-05 2.99119982787e-05 -2.09588572602e-05 +UniRef50_UPI0003EDA90F porin 2.9839456409e-05 0.000122544724618 9.2705268209e-05 +UniRef50_V5VAB4 Bacterial SH3 domain containing protein 0.000166537936259 0.0127863040218 0.0126197660855 +UniRef50_Q9RZJ6 0.00140372518616 0.000448582337002 -0.000955142849158 +UniRef50_Q0BST5 DNA gyrase subunit A 9.00702142388e-06 1.95441422267e-05 1.05371208028e-05 +UniRef50_P44499 Peptidyl prolyl cis trans isomerase B 4.70174852084e-05 3.73870841931e-05 -9.6304010153e-06 +UniRef50_C3M8S2 Holo [acyl carrier protein] synthase 2.34706567405e-05 6.53740128412e-05 4.19033561007e-05 +UniRef50_B6IVS2 Inner membrane protein, putative 3.40071432112e-05 4.25495740781e-05 8.5424308669e-06 +UniRef50_UPI00047BD367 hypothetical protein 8.20210789772e-05 7.2976127754e-05 -9.0449512232e-06 +UniRef50_A6WKC8 UPF0246 protein Shew185_1115 1.78739628481e-05 2.92211102985e-05 1.13471474504e-05 +UniRef50_D0JN49 Phosphoribosylformylglycinamidine synthase 0.00322013581259 0.00263366553752 -0.00058647027507 +UniRef50_UPI0004716A86 ArsR family transcriptional regulator 7.26729627766e-05 4.54385767127e-05 -2.72343860639e-05 +UniRef50_H9KKZ5 1.63865616273e-05 4.69552308527e-06 -1.1691038542e-05 +UniRef50_G7T9S3 Hemolysin 1.03813785047e-05 0.0185651933379 0.0185548119594 +UniRef50_A3PJ91 RDD domain containing protein 0.00134457504704 0.00114316143946 -0.00020141360758 +UniRef50_K4NAS3 ATP binding protein 9.62829334316e-05 0.00450725498205 0.00441097204862 +UniRef50_UPI000465E2F8 hypothetical protein 2.04680601567e-05 8.06963275557e-06 -1.23984274011e-05 +UniRef50_UPI0004720CE8 hypothetical protein 1.65157244039e-06 2.21435530712e-06 5.6278286673e-07 +UniRef50_P0AAZ6 Replication associated recombination protein A 0.00333903177393 0.000186319687815 -0.00315271208611 +UniRef50_UPI00016A522C branched chain amino acid ABC transporter, ATP binding protein, putative, partial 0.00012046407464 4.18048887437e-05 -7.86591858963e-05 +UniRef50_M5AH54 Nod factor export ATP binding protein I 0.008451752392 0.001959947716 -0.006491804676 +UniRef50_UPI0003EF2FDA hypothetical protein 2.28545633113e-05 0.000952634532885 0.000929779969574 +UniRef50_A9B932 Transposase Tn3 family protein 8.877058781e-06 0.000269295828127 0.000260418769346 +UniRef50_A3VKI4 8.68386358093e-06 1.81167427234e-05 9.43287914247e-06 +UniRef50_P24228 D alanyl D alanine carboxypeptidase DacB 0.0021479328406 0.00061178896677 -0.00153614387383 +UniRef50_B9KM28 0.000903462595371 0.000196974497368 -0.000706488098003 +UniRef50_S6D8D3 Low affinity zinc transport protein 4.04143507692e-06 5.10572362342e-06 1.0642885465e-06 +UniRef50_P76395 0.00408367658429 0.00120632635497 -0.00287735022932 +UniRef50_P76393 0.00161884864734 0.000603845694919 -0.00101500295242 +UniRef50_Q4FV40 Protein translocase subunit SecA 9.14554623038e-05 0.0026393849541 0.0025479294918 +UniRef50_D8JKX1 0.000191805412359 0.00661926593243 0.00642746052007 +UniRef50_UPI000380F87B hypothetical protein 9.4605649507e-06 3.50506512857e-05 2.5590086335e-05 +UniRef50_UPI000369EA6C hypothetical protein 7.54927689689e-05 1.29042710414e-05 -6.25884979275e-05 +UniRef50_UPI0003FAEB30 hypothetical protein 0.000122397552346 1.92188156742e-05 -0.000103178736672 +UniRef50_L8GXF4 3.89880431757e-06 1.57115098714e-06 -2.32765333043e-06 +UniRef50_N2E2F5 4Fe 4S binding domain protein 0.000767599519366 0.000361612292071 -0.000405987227295 +UniRef50_UPI0003B6D996 histidine kinase 7.82075901019e-05 1.49547228307e-05 -6.32528672712e-05 +UniRef50_UPI00047EF35E UDP glucose 6 dehydrogenase 4.94273422851e-06 6.77405876674e-06 1.83132453823e-06 +UniRef50_M3A5Y8 5.09450165986e-05 2.85063862555e-05 -2.24386303431e-05 +UniRef50_Q3JZG9 DNA polymerase IV 0.000317450039145 0.00386881677843 0.00355136673928 +UniRef50_UPI000225C205 uroporphyrinogen decarboxylase 4.41287561633e-06 1.94944434551e-05 1.50815678388e-05 +UniRef50_UPI0003D25C42 2.05832915712e-06 3.72932413979e-06 1.67099498267e-06 +UniRef50_P54570 ADP ribose pyrophosphatase 2.9378034508e-05 0.00159275626219 0.00156337822768 +UniRef50_A5UKV4 Tetrahydromethanopterin S methyltransferase, subunit H, MtrH 0.0046837178207 0.00120810300869 -0.00347561481201 +UniRef50_U9QRW9 0.000312418786305 0.000420739908483 0.000108321122178 +UniRef50_G7MD43 Major facilitator superfamily MFS_1 0.000298887627138 0.000306467582996 7.579955858e-06 +UniRef50_B7N8L4 NAD NADP dependent betaine aldehyde dehydrogenase 0.00741335995176 0.00734301281587 -7.034713589e-05 +UniRef50_P0AA45 Ribosomal small subunit pseudouridine synthase A 0.00656397842415 0.00109868773183 -0.00546529069232 +UniRef50_UPI000255C349 acetolactate synthase large subunit, biosynthetic type 4.30534744141e-06 1.50541746648e-05 1.07488272234e-05 +UniRef50_V9VYZ6 0.00340849217295 0.00168722795394 -0.00172126421901 +UniRef50_UPI0003626A85 hypothetical protein 2.68570898279e-05 1.94718317402e-05 -7.3852580877e-06 +UniRef50_UPI0003B4A90A ABC transporter permease 7.90656112397e-05 6.90202662406e-05 -1.00453449991e-05 +UniRef50_W6RWI6 Accessory gene regulator A 0.000310688641281 0.00139499873323 0.00108431009195 +UniRef50_Q6GCF0 0.0143803548941 0.00135450576654 -0.0130258491276 +UniRef50_Q3IWP7 Transcriptionalregulator, CopG family 0.000795254564388 0.00167160399168 0.000876349427292 +UniRef50_UPI00046423A0 cytochrome C peroxidase 6.14593576839e-06 5.79683765031e-05 5.18224407347e-05 +UniRef50_UPI00035E30BB hypothetical protein, partial 1.62725133144e-06 0.000151848534125 0.000150221282794 +UniRef50_D8JHX6 HAD superfamily hydrolase 0.000849202608176 0.00492110311384 0.00407190050566 +UniRef50_R9YPY8 5 formyltetrahydrofolate cyclo ligase 0.00888531742269 0.00272502592665 -0.00616029149604 +UniRef50_UPI00047AFA4E phosphoadenosine phosphosulfate reductase 9.51370248088e-05 4.50406777512e-05 -5.00963470576e-05 +UniRef50_UPI0003783983 hypothetical protein, partial 0.00149800726181 0.000596716908635 -0.000901290353175 +UniRef50_Q8D7Y9 Putative phosphoenolpyruvate synthase regulatory protein 2.40515221541e-05 3.36287931878e-05 9.5772710337e-06 +UniRef50_Q3J212 Putative site specific recombinase 0.0124805215646 0.00227530356911 -0.0102052179955 +UniRef50_E0XYI3 8.28471921266e-05 8.76973032016e-05 4.850111075e-06 +UniRef50_W8RQU9 NAD dependent epimerase dehydratase 0.00240651310919 0.000414480153221 -0.00199203295597 +UniRef50_E9AHU1 Putative proteophosphoglycan ppg3 5.38380646231e-05 0.000253598347206 0.000199760282583 +UniRef50_UPI0003B65B0E hypothetical protein 0.000273272186874 9.16829402051e-05 -0.000181589246669 +UniRef50_UPI000379B86A DNA glycosylase 0.000135124853812 5.5579394333e-05 -7.9545459479e-05 +UniRef50_UPI00047102D6 hypothetical protein, partial 1.09581281357e-05 7.55361424701e-06 -3.40451388869e-06 +UniRef50_UPI0003FB549E hypothetical protein 2.07900101879e-05 6.81847792411e-05 4.73947690532e-05 +UniRef50_D2NAU9 0.00330362446384 0.0010361989656 -0.00226742549824 +UniRef50_Q8CSJ5 0.00898705882384 0.000844944481866 -0.00814211434197 +UniRef50_B2A1L0 2.19092300153e-05 2.60860289061e-05 4.1767988908e-06 +UniRef50_M2E1P6 0.00578117043215 0.00190368564859 -0.00387748478356 +UniRef50_C1DHE5 Glutamine tRNA ligase 4.65932100577e-06 2.1836635499e-05 1.71773144932e-05 +UniRef50_UPI000349FB4B hypothetical protein 5.12862679603e-06 7.76288285823e-06 2.6342560622e-06 +UniRef50_W8YH03 0.000148503291249 0.000170549703163 2.2046411914e-05 +UniRef50_Q4WFT3 GMP synthase [glutamine hydrolyzing] 2.74020234713e-05 3.44541475935e-05 7.0521241222e-06 +UniRef50_U6GVJ1 2.53489742296e-07 2.11887520512e-06 1.86538546282e-06 +UniRef50_Q9RRB6 S layer protein, putative 0.000309035540679 0.0430984142786 0.0427893787379 +UniRef50_F8DJB0 0.00473770014378 0.00425966617895 -0.00047803396483 +UniRef50_O67929 Cyclic pyranopterin monophosphate synthase 4.87570064408e-06 0.000164232784999 0.000159357084355 +UniRef50_B8E1C0 Aspartate tRNA ligase 3.92084850654e-06 3.79200537625e-06 -1.2884313029e-07 +UniRef50_UPI0001BF5F9C hypothetical protein SMAC_10519, partial 7.69795205211e-05 2.80075915917e-05 -4.89719289294e-05 +UniRef50_UPI0004689482 ATPase 5.38689782115e-06 5.25482724182e-05 4.71613745971e-05 +UniRef50_P0AEF6 Transcriptional regulatory protein DpiA 0.00795460004886 0.00104938647764 -0.00690521357122 +UniRef50_UPI00047CE7FB hypothetical protein 5.55983754963e-06 2.85299547789e-06 -2.70684207174e-06 +UniRef50_UPI0003B7292B NADPH 7.5125552962e-06 3.61498331687e-05 2.86372778725e-05 +UniRef50_UPI00036B1DE9 hypothetical protein 1.62014959467e-05 2.07508154981e-05 4.5493195514e-06 +UniRef50_Q8EEW2 Beta hexosaminidase 4.93984915594e-06 2.68147756788e-05 2.18749265229e-05 +UniRef50_A0A023RVE4 Pseudouridine synthase 0.000181774954504 0.00582748975575 0.00564571480125 +UniRef50_R5AKD9 3.73609548616e-06 6.18462798639e-06 2.44853250023e-06 +UniRef50_UPI000301EB97 hypothetical protein 3.73669893678e-05 4.92656746437e-05 1.18986852759e-05 +UniRef50_O27389 Diaminopimelate epimerase 0.00327128112704 1.09949399603e-05 -0.00326028618708 +UniRef50_Q3J219 0.00917279890428 0.0117821220607 0.00260932315642 +UniRef50_Q2NTI7 Zinc import ATP binding protein ZnuC 3.94086584827e-05 9.96151373797e-06 -2.94471447447e-05 +UniRef50_UPI00036763CC hypothetical protein 0.000389532424231 0.000141565132136 -0.000247967292095 +UniRef50_UPI0003825772 30S ribosomal protein S3, partial 0.000661850742575 0.00231739106474 0.00165554032217 +UniRef50_Q5HQ24 Glutamate racemase 0.0120358582851 0.0026952915443 -0.0093405667408 +UniRef50_I6TZB4 Bifunctional biotin [acetyl CoA carboxylase] synthetase biotin operon repressor 0.00695937004861 0.00372892728292 -0.00323044276569 +UniRef50_Q6FDU5 0.000147840465605 0.00875799678865 0.00861015632304 +UniRef50_UPI00035CC932 hypothetical protein 0.000556201652412 9.03625637947e-05 -0.000465839088617 +UniRef50_D5ALJ9 0.00389286109336 0.000451924523232 -0.00344093657013 +UniRef50_D5ALJ7 0.000897977843215 0.000117522195184 -0.000780455648031 +UniRef50_Q04945 NADH dependent butanol dehydrogenase B 0.000300657964137 0.000560228426439 0.000259570462302 +UniRef50_P15259 Phosphoglycerate mutase 2 6.79648735669e-06 1.0549584957e-05 3.75309760031e-06 +UniRef50_UPI00047BB10D branched chain amino acid ABC transporter ATP binding protein 7.29621829493e-06 6.30157142243e-05 5.57194959294e-05 +UniRef50_Q9RSI5 0.000540049443584 0.0726578826685 0.0721178332249 +UniRef50_P17410 HTH type transcriptional regulator ChbR 0.00131271512007 0.000456465532064 -0.000856249588006 +UniRef50_C5NTZ6 Reaction center 0.00145637926656 0.00051794170825 -0.00093843755831 +UniRef50_Q8CPT4 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 0.0109053691337 0.00265226926027 -0.00825309987343 +UniRef50_UPI000370920E hypothetical protein 5.13427303554e-05 4.83911296476e-05 -2.9516007078e-06 +UniRef50_Q8EM59 Thymidine kinase 0.0181811676006 4.22128983982e-05 -0.0181389547022 +UniRef50_C5FB81 APC family amino acid polyamine organocation transporter 0.0206801559155 0.00409173673634 -0.0165884191792 +UniRef50_Q9RUP8 Isoleucine tRNA ligase 3.50064286395e-05 0.0244647270947 0.0244297206661 +UniRef50_UPI0003F80A61 thioredoxin 6.65319215028e-05 0.000223040135141 0.000156508213638 +UniRef50_Q5HPR5 DNA translocase FtsK 0.0165738678715 0.0045214202804 -0.0120524475911 +UniRef50_N6VGJ5 Thiamin phosphate synthase 4.01053256054e-05 3.85528087616e-05 -1.5525168438e-06 +UniRef50_G7U546 TENA THI 4 family protein 0.000160632335681 0.00807202310559 0.00791139076991 +UniRef50_A1SGH4 Cell envelope related transcriptional attenuator 5.16184758638e-06 4.11324039319e-05 3.59705563455e-05 +UniRef50_Q3A5S0 Malate dehydrogenase 5.60644806432e-05 1.64495190045e-05 -3.96149616387e-05 +UniRef50_M9KL10 Outer membrane autotransporter barrel domain protein 0.000816261896091 0.000323762748526 -0.000492499147565 +UniRef50_E2CRM4 0.000104665849264 5.60318320821e-05 -4.86340171819e-05 +UniRef50_Q8CN54 Antiholin like protein LrgA 0.0206835770519 0.0049334672803 -0.0157501097716 +UniRef50_T0TSZ1 0.00576308851901 0.00286756274229 -0.00289552577672 +UniRef50_Q95YF6 Molluscan shell protein 1 9.99022283468e-06 7.85149612036e-06 -2.13872671432e-06 +UniRef50_B9XKZ0 Putative GAF sensor protein 8.80463329241e-06 0.000790367397433 0.000781562764141 +UniRef50_UPI00036B80A8 hypothetical protein 7.98156911501e-05 5.4424926186e-05 -2.53907649641e-05 +UniRef50_M9RTF7 Methionine biosynthesis protein 0.000414819767969 0.00224543806803 0.00183061830006 +UniRef50_K2BFX5 1.0844384873e-05 1.83190639973e-05 7.4746791243e-06 +UniRef50_Q98K42 Mll1647 protein 3.22950934952e-06 2.79133489141e-06 -4.3817445811e-07 +UniRef50_Q2SMN3 Protein RnfH 1.97981141273e-05 3.10034306319e-05 1.12053165046e-05 +UniRef50_UPI0004652B27 NAD synthetase 3.80855132462e-06 0.000129381877545 0.00012557332622 +UniRef50_Q9ZJI6 Ribonuclease J 1.85416023437e-05 0.00302422167414 0.0030056800718 +UniRef50_UPI00046A5D50 hypothetical protein 6.75618749799e-05 2.45372467597e-06 -6.51081503039e-05 +UniRef50_Q1QWQ5 6 phosphogluconate dehydrogenase, NAD binding protein 0.000243539347646 0.00772318046895 0.0074796411213 +UniRef50_UPI0003C48D73 PREDICTED 0.000212362489 0.000112722052039 -9.9640436961e-05 +UniRef50_F0KC60 0.000521870030673 0.00378854069662 0.00326667066595 +UniRef50_D5WZP9 Cytochrome c oxidase, cbb3 type, subunit II 0.00234857297039 0.00158632839779 -0.0007622445726 +UniRef50_UPI00026C64ED S ribosylhomocysteinase 2.49425519051e-05 0.00065140565094 0.000626463099035 +UniRef50_D8JKE4 PHA synthase PhaC 0.00010673496386 0.00605334677859 0.00594661181473 +UniRef50_C6KU66 Plasmid partitioning protein ParA 0.000163664872663 4.52589525592e-05 -0.000118405920104 +UniRef50_U3SUV7 0.00223750198164 0.00242186727053 0.00018436528889 +UniRef50_UPI000287B527 sugar ABC transporter permease 4.8991578337e-05 3.56728838022e-05 -1.33186945348e-05 +UniRef50_UPI00036C10C9 hypothetical protein 1.05726964858e-05 2.9541374656e-05 1.89686781702e-05 +UniRef50_U5UN27 0.0175479213927 0.0026163435327 -0.01493157786 +UniRef50_UPI00035FF879 hypothetical protein 2.73148004037e-05 5.61424637207e-05 2.8827663317e-05 +UniRef50_UPI000467CF8F hypothetical protein, partial 0.000352790643786 0.00025108100091 -0.000101709642876 +UniRef50_P18789 Citrate synthase 0.00222091341502 0.000399707980111 -0.00182120543491 +UniRef50_UPI00047BD49C riboflavin biosynthesis protein RibF 1.01807692948e-05 4.99445097867e-05 3.97637404919e-05 +UniRef50_UPI0003A806BB molybdopterin biosynthesis protein MoeA 5.15139652815e-06 8.35858037128e-06 3.20718384313e-06 +UniRef50_B9L170 NADH quinone oxidoreductase subunit B 1.26591718892e-05 7.59961378345e-05 6.33369659453e-05 +UniRef50_Q2NFJ8 Diphthine synthase 0.00240542829535 0.000218753114953 -0.0021866751804 +UniRef50_N8Y2G0 2.98737999521e-05 4.12469972382e-05 1.13731972861e-05 +UniRef50_UPI00016A848B hypothetical protein 0.000100398111918 0.000155395618397 5.4997506479e-05 +UniRef50_B7V093 Type 4 fimbrial biogenesis protein FimU 0.00272759203791 0.0034072967789 0.00067970474099 +UniRef50_G7M1Q4 Tetratricopeptide TPR_1 repeat containing protein 0.000377589602626 0.00218278521433 0.0018051956117 +UniRef50_G2JI43 0.000347280920311 0.00980972608657 0.00946244516626 +UniRef50_UPI000371FB82 hypothetical protein 6.95343756007e-06 3.0959939695e-05 2.40065021349e-05 +UniRef50_P19932 Hydrogenase 1 operon protein HyaF 0.004623551002 0.000634169705113 -0.00398938129689 +UniRef50_UPI0001B465BD 30S ribosomal protein S4 6.59605504469e-05 0.000102565381989 3.66048315421e-05 +UniRef50_Q9EYV5 HTH type transcriptional regulator GadX 0.00265356823976 0.00185253480907 -0.00080103343069 +UniRef50_UPI0003B44F9E riboflavin synthase subunit alpha 2.01601960566e-05 5.03666374636e-05 3.0206441407e-05 +UniRef50_UPI000372D2DC glycerophosphoryl diester phosphodiesterase, partial 6.39187074317e-05 0.00306837343516 0.00300445472773 +UniRef50_Q03UB1 Ribosomal RNA large subunit methyltransferase H 0.0246210129221 0.000387724339418 -0.0242332885827 +UniRef50_H2K9T8 Putative endoribonuclease 9.90411277046e-05 4.94005511401e-05 -4.96405765645e-05 +UniRef50_W9CAE9 7.07329367242e-06 9.09822041451e-07 -6.16347163097e-06 +UniRef50_UPI0003B586D4 30S ribosomal protein S4 5.04087569036e-05 2.00285376673e-05 -3.03802192363e-05 +UniRef50_Q92YJ8 Transposase 0.000128919947333 6.17821340988e-05 -6.71378132342e-05 +UniRef50_A5UKC6 2 methylcitrate dehydratase, MmgE PrpD family 0.00326214061127 0.000953964306426 -0.00230817630484 +UniRef50_D8LYP9 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 8.59055515975e-06 1.6055249267e-05 7.46469410725e-06 +UniRef50_Q8VQK4 Putative peptide transport system permease protein BruAb2_1031 0.0130890705342 0.00603962689067 -0.00704944364353 +UniRef50_A3PYA8 Thymidylate synthase 4.58130590285e-05 0.000404868843515 0.000359055784487 +UniRef50_UPI000465565E hypothetical protein 3.07993047359e-06 5.3482677945e-06 2.26833732091e-06 +UniRef50_P77601 Putative HTH type transcriptional regulator YkgA 0.00175264465717 0.000209197193767 -0.0015434474634 +UniRef50_F0XZT5 0.000156719891042 0.00023980947923 8.3089588188e-05 +UniRef50_B9KPM1 0.00443609552488 0.000863668923696 -0.00357242660118 +UniRef50_B7KZF3 Chromosomal replication initiator DnaA 4.20780829996e-05 8.65395068237e-06 -3.34241323172e-05 +UniRef50_UPI0003654BED hypothetical protein 0.000861184765437 0.00233144767259 0.00147026290715 +UniRef50_UPI0003C168CC 0.00755942575005 0.002599301453 -0.00496012429705 +UniRef50_B7MHP0 Nicotinate phosphoribosyltransferase 0.00421906395373 0.00113241162811 -0.00308665232562 +UniRef50_Q8CTY4 Thiamine biosynthesis lipoprotein 0.0123798995103 0.00405799403767 -0.00832190547263 +UniRef50_P31052 Dihydrolipoyl dehydrogenase 5.87879406525e-05 0.00293743798267 0.00287865004202 +UniRef50_G2L441 0.00125442431332 0.00108431802925 -0.00017010628407 +UniRef50_UPI000364F2DB hypothetical protein 3.60606889338e-06 5.69391706815e-06 2.08784817477e-06 +UniRef50_UPI000440C4B4 PREDICTED 5.3815168067e-05 4.89023447294e-05 -4.9128233376e-06 +UniRef50_Q9T1A3 Gp20 2.20380898819e-06 0.00104433173336 0.00104212792437 +UniRef50_P0ADH8 Type 1 fimbriae regulatory protein FimE 0.00314116185779 0.00117065561492 -0.00197050624287 +UniRef50_UPI00036912E2 MULTISPECIES 9.09609556206e-06 1.49206393552e-05 5.82454379314e-06 +UniRef50_Q3JPQ2 7.06093077602e-05 2.84298778006e-05 -4.21794299596e-05 +UniRef50_B8J4Q3 Chorismate synthase 6.52897233765e-06 2.61943578364e-05 1.96653854987e-05 +UniRef50_E2ZXQ0 0.00570549823148 0.00151776906689 -0.00418772916459 +UniRef50_D6AIG0 0.000185363632772 0.000313869359638 0.000128505726866 +UniRef50_B9KLD6 0.010065908473 0.0104467498091 0.0003808413361 +UniRef50_UPI0002490D5A PTS system mannitol specific transporter subunit IIBC 2.91818711922e-06 3.73812777292e-06 8.199406537e-07 +UniRef50_M4QYT8 Nitrite reductase small subunit 0.000261747691018 0.00817715734618 0.00791540965516 +UniRef50_UPI000375EB87 hypothetical protein 8.6938602064e-06 0.000102542905134 9.38490449276e-05 +UniRef50_K0R863 1.86483217285e-05 0.000169369794267 0.000150721472538 +UniRef50_UPI00030AEBF5 hypothetical protein 6.8084257852e-06 8.29258906573e-06 1.48416328053e-06 +UniRef50_Q9K0X8 Cell division protein FtsA 0.000453431406057 0.00362450602716 0.0031710746211 +UniRef50_A5UJ54 Archaeal glutamate synthase [NADPH] 0.00481670550646 0.00113719614584 -0.00367950936062 +UniRef50_UPI00034AC849 chemotaxis protein CheY 0.00020624046293 7.34912653978e-05 -0.000132749197532 +UniRef50_G8VL08 ATP dependent helicase HrpA 3.16771459154e-05 0.00463567319272 0.0046039960468 +UniRef50_I3VWE8 Aspartokinase 9.72066924068e-05 0.000994575508137 0.00089736881573 +UniRef50_P39788 Endonuclease III 0.0158282436485 0.00346553232377 -0.0123627113247 +UniRef50_A0A024BWT3 RloF 5.5731199147e-05 0.00239367583499 0.00233794463584 +UniRef50_C6E8N4 NADH quinone oxidoreductase subunit B 2.63337847047e-05 0.000209246575244 0.000182912790539 +UniRef50_P10539 Aspartate semialdehyde dehydrogenase 0.00402089602317 0.00693533391708 0.00291443789391 +UniRef50_UPI0003B603D1 hypothetical protein 0.000285450383061 0.00180932027065 0.00152386988759 +UniRef50_G8S8P0 9.31972409779e-06 0.000136466663647 0.000127146939549 +UniRef50_Q0FH14 0.000161384635152 0.000374756265278 0.000213371630126 +UniRef50_P00807 Beta lactamase 0.102501676762 0.028327574333 -0.074174102429 +UniRef50_Q8DV98 Folate transporter FolT 0.00493461448616 0.000315846743525 -0.00461876774263 +UniRef50_UPI0003B62A81 shikimate kinase 2.57752604557e-05 1.1320779726e-05 -1.44544807297e-05 +UniRef50_Q8R5Z9 Ribosome recycling factor 0.0145292077251 0.0034608971308 -0.0110683105943 +UniRef50_F4A5J4 Conserved protein 0.000387828070733 0.00144360590284 0.00105577783211 +UniRef50_UPI000237B476 gluconate transporter 1.12444160691e-05 0.000508674197191 0.000497429781122 +UniRef50_Q8NE62 Choline dehydrogenase, mitochondrial 3.28646532299e-05 3.28228848557e-05 -4.17683742e-08 +UniRef50_I9RNM3 Putative sialic acid transporter 0.000808898547544 0.000732190178178 -7.6708369366e-05 +UniRef50_Q3J5X4 Integrase recombinase 0.000991021496235 0.000345338695843 -0.000645682800392 +UniRef50_Q9I0N3 Sulfurtransferase TusD homolog 0.0005844809031 0.000241752096681 -0.000342728806419 +UniRef50_A0A023S183 Alkaline phosphatase 0.000347891660406 0.0093843325715 0.00903644091109 +UniRef50_U3THX2 1.24177506608e-05 1.83643120213e-05 5.9465613605e-06 +UniRef50_Q9RXZ8 6,7 dimethyl 8 ribityllumazine synthase 0.000496692090597 0.0607495078745 0.0602528157839 +UniRef50_Q8ZLS1 Arabinose 5 phosphate isomerase KdsD 0.00395503130548 0.00412438915069 0.00016935784521 +UniRef50_Q2FDM1 Immunodominant staphylococcal antigen B 0.00889561788196 0.00215882478258 -0.00673679309938 +UniRef50_F2MNQ3 Serine protease HtrA 9.67086222522e-05 0.000150161036537 5.34524142848e-05 +UniRef50_P43899 Oxygen independent coproporphyrinogen III oxidase like protein HI_0463 0.00163104731946 0.00029276616629 -0.00133828115317 +UniRef50_X7YGE5 Putative groESL operon 3.43701058306e-05 3.97104870601e-05 5.3403812295e-06 +UniRef50_A6M1G9 Nucleotidyl transferase 0.000681890905573 0.00130931458991 0.000627423684337 +UniRef50_D6Z602 Glutamine synthetase catalytic region 0.000281409298616 0.00184535219805 0.00156394289943 +UniRef50_P94951 F420 dependent methylenetetrahydromethanopterin dehydrogenase 0.00193001132254 0.00210194792202 0.00017193659948 +UniRef50_P60239 F420 non reducing hydrogenase subunit G 0.00487452667429 0.00118733484636 -0.00368719182793 +UniRef50_L0I338 3.46912113766e-05 4.02368333017e-05 5.5456219251e-06 +UniRef50_F7XZJ7 Protein tyrosine phosphatase, low molecular weight 0.000139073871712 7.38801940789e-05 -6.51936776331e-05 +UniRef50_T1YAK1 Phage protein 0.0175431042568 0.00571816327957 -0.0118249409772 +UniRef50_UPI0003C147A2 PREDICTED 1.96086183616e-05 3.63004797542e-05 1.66918613926e-05 +UniRef50_G0J3B6 7.34052346268e-05 2.11951856436e-05 -5.22100489832e-05 +UniRef50_UPI0003709308 hypothetical protein 1.50430636184e-05 0.000313749691026 0.000298706627408 +UniRef50_Q130Q6 ABC 1 0.0026150508056 0.000399000555285 -0.00221605025032 +UniRef50_UPI000469E31A hypothetical protein 1.70418110476e-05 7.01293884305e-06 -1.00288722045e-05 +UniRef50_UPI000465AB9E hypothetical protein 3.27439279221e-06 0.000117938344292 0.0001146639515 +UniRef50_K7SNW6 Glycosyl hydrolase family 38 N terminal domain containing protein 0.000118295104499 0.00655748346042 0.00643918835592 +UniRef50_J7TWG6 2.22677810314e-05 3.074530538e-05 8.4775243486e-06 +UniRef50_P42616 Protein YqjC 0.000618829489919 0.000482806602495 -0.000136022887424 +UniRef50_Q2GAZ8 RepB plasmid partition 1.65891802706e-06 1.156457578e-05 9.90565775294e-06 +UniRef50_UPI0004732E2B hypothetical protein, partial 2.73338773828e-05 5.15180398155e-05 2.41841624327e-05 +UniRef50_P0C7L3 Beta ketoadipyl CoA thiolase 0.00369358535636 0.0093166848571 0.00562309950074 +UniRef50_UPI00047DA36E ABC transporter 5.74714230356e-06 2.71835069651e-05 2.14363646615e-05 +UniRef50_M4TFL9 Protein lysine acetyltransferase 0.00100885838738 0.000216853567385 -0.000792004819995 +UniRef50_P0AAJ2 Probable anaerobic dimethyl sulfoxide reductase chain YnfG 0.00197301405907 0.00516579151241 0.00319277745334 +UniRef50_Q8DVZ6 0.00640108500624 0.000957994940746 -0.00544309006549 +UniRef50_Q8DVZ9 0.00495608210887 0.00153672003803 -0.00341936207084 +UniRef50_UPI00037681FA hypothetical protein 6.22630863182e-06 3.16249790353e-05 2.53986704035e-05 +UniRef50_A0RAK2 Response regulator 1.0828949267e-05 0.000913236117288 0.000902407168021 +UniRef50_G7ZT64 0.00541079493579 0.00126564302227 -0.00414515191352 +UniRef50_S5YZN5 ABC type dipeptide oligopeptide nickel transport system, permease component 0.0148806638082 0.00540066661484 -0.00947999719336 +UniRef50_P37908 UPF0053 inner membrane protein YfjD 0.00384590173769 0.00108780982391 -0.00275809191378 +UniRef50_I6GY98 Glutamate cysteine ligase 0.00241896565632 0.000489475201976 -0.00192949045434 +UniRef50_UPI00016C54E0 DNA gyrase subunit B 3.49114885955e-06 2.56152267399e-06 -9.2962618556e-07 +UniRef50_A4EM47 5.6867281047e-05 1.6202046984e-05 -4.0665234063e-05 +UniRef50_UPI0002B93C15 Phosphopentomutase 1.32757501235e-05 0.00535068583835 0.00533741008823 +UniRef50_P42850 Phosphoenolpyruvate synthase 0.00429598708066 0.000924817078377 -0.00337117000228 +UniRef50_UPI0004708FDA hypothetical protein 1.28283872465e-05 7.8547950318e-05 6.57195630715e-05 +UniRef50_A5F2P1 3 ketoacyl CoA thiolase 0.0033442960674 0.00135424063583 -0.00199005543157 +UniRef50_O32799 Formate acetyltransferase 0.00794172162724 0.00845293759278 0.00051121596554 +UniRef50_Q3B6F6 30S ribosomal protein S3 0.0140764052354 0.00280998095854 -0.0112664242769 +UniRef50_UPI00037BC05D hypothetical protein 0.000181110605545 0.000223659999387 4.2549393842e-05 +UniRef50_O62585 Serine hydroxymethyltransferase, cytosolic 0.000153419467809 1.84164934022e-05 -0.000135002974407 +UniRef50_UPI000470E9D6 hypothetical protein 6.61476892278e-05 8.90790035906e-05 2.29313143628e-05 +UniRef50_UPI00036E5905 citrate lyase 5.37119379778e-05 3.1643787579e-05 -2.20681503988e-05 +UniRef50_I3BSR5 PEGA domain protein 0.00022098982414 0.000104477905751 -0.000116511918389 +UniRef50_UPI0003052E4A NADH dehydrogenase 8.09477023054e-05 2.23365309027e-06 -7.87140492151e-05 +UniRef50_UPI00026C85FF hydrolase 1.01290901078e-05 1.54208861798e-05 5.291796072e-06 +UniRef50_C6E3K3 Type VI secretion protein, VC_A0107 family 2.65286644472e-05 0.00282384368926 0.00279731502481 +UniRef50_R7PUK9 0.00209595990194 0.00130832742417 -0.00078763247777 +UniRef50_W5GWD8 2.01710908006e-06 8.72038892496e-05 8.51867801695e-05 +UniRef50_P0A0Q0 Lactose phosphotransferase system repressor 0.0296725879276 0.00637571913196 -0.0232968687956 +UniRef50_E0XR78 0.000152758251627 0.00039153826786 0.000238780016233 +UniRef50_C5BEL3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.000364649394362 0.00801595650912 0.00765130711476 +UniRef50_UPI000472566B thioredoxin 0.000225318294392 0.000162144044217 -6.3174250175e-05 +UniRef50_G6EQ26 SSU ribosomal protein S1P 0.000255751466193 0.000336223952777 8.0472486584e-05 +UniRef50_UPI00037152ED hypothetical protein 0.00014842175184 1.85824670311e-05 -0.000129839284809 +UniRef50_O94582 Probable anthranilate synthase component 1 4.69296551659e-06 9.84202665585e-06 5.14906113926e-06 +UniRef50_B5F446 Aspartate carbamoyltransferase 0.00311883481071 0.000579767092999 -0.00253906771771 +UniRef50_UPI00029B4277 thioredoxin 0.000217578914368 0.00040980129227 0.000192222377902 +UniRef50_K5ZH15 UPF0301 protein MXAZACID_13641 2.04465105461e-05 2.10445618093e-05 5.980512632e-07 +UniRef50_M1XK11 SCCmec staphylococcal cassette region, isolate CMFT201 0.0127964315765 0.00313176015763 -0.00966467141887 +UniRef50_I6TNE5 Bacteriophage replication gene A protein 0.00281969764367 0.000688893931136 -0.00213080371253 +UniRef50_D6SDW7 Acetate CoA transferase YdiF 0.00958690106789 0.00230253497896 -0.00728436608893 +UniRef50_Q099I3 0.000483867473179 0.000219339014355 -0.000264528458824 +UniRef50_UPI00047246F8 iron ABC transporter permease, partial 7.08734726629e-05 0.000144668964775 7.37954921121e-05 +UniRef50_I6AH85 7.15558111459e-05 7.38000693882e-05 2.2442582423e-06 +UniRef50_F4SFU3 Biofilm PGA synthesis lipoprotein PgaB 0.00271030397137 0.000938098251204 -0.00177220572017 +UniRef50_UPI000472C820 hypothetical protein 0.000199129335207 7.94403775618e-06 -0.000191185297451 +UniRef50_A9KK69 S adenosylmethionine 0.0278706521612 0.013923514546 -0.0139471376152 +UniRef50_UPI00037911F9 hypothetical protein 2.11982500283e-05 3.99978643647e-05 1.87996143364e-05 +UniRef50_UPI00046CDCC8 hypothetical protein 1.86702578131e-05 0.000121293174926 0.000102622917113 +UniRef50_A5UP74 0.00320821828892 0.000984389017326 -0.00222382927159 +UniRef50_A5UP75 0.00160033319966 0.00074138084986 -0.0008589523498 +UniRef50_Q65GF0 UvrABC system protein C 0.0120859076437 0.00314018593494 -0.00894572170876 +UniRef50_P22302 Superoxide dismutase [Fe], chloroplastic 1.4607146211e-05 2.98060467247e-05 1.51989005137e-05 +UniRef50_Q3IVJ7 Acyltransferase 3 family 0.0216808898201 0.00506373739392 -0.0166171524262 +UniRef50_U2YI39 6.23998451132e-06 1.99847488032e-05 1.37447642919e-05 +UniRef50_UPI000463E2C6 3 hydroxyacyl CoA dehydrogenase 2.43437591949e-05 0.000109754059209 8.54103000141e-05 +UniRef50_B4SQ46 Drug resistance transporter, EmrB QacA subfamily 0.000290444278819 0.000403920040058 0.000113475761239 +UniRef50_A4SM42 ATP dependent Clp protease proteolytic subunit 9.65497294531e-06 0.0348118349094 0.0348021799365 +UniRef50_P0AEB4 D alanyl D alanine carboxypeptidase DacA 0.00410086368159 0.000790536240849 -0.00331032744074 +UniRef50_UPI0002654FEE PREDICTED 2.6122395231e-06 1.19247297935e-06 -1.41976654375e-06 +UniRef50_UPI0002492D9C regulator 1.15166188072e-05 1.83684002026e-05 6.8517813954e-06 +UniRef50_S6STB0 0.00018398263857 0.000192788632095 8.805993525e-06 +UniRef50_Q9RS20 Multidrug efflux transporter, putative 0.000105344927117 0.0297599625943 0.0296546176672 +UniRef50_Q03SL6 Triosephosphate isomerase 6.76417904436e-06 8.74143593508e-06 1.97725689072e-06 +UniRef50_UPI0001AF23F3 oxidoreductase 4.51576684926e-05 6.06935958434e-05 1.55359273508e-05 +UniRef50_E3J6Y9 FAD dependent oxidoreductase 2.31160718526e-05 0.00201848396478 0.00199536789293 +UniRef50_UPI00036FA050 hypothetical protein 3.08527973052e-05 3.09447094861e-05 9.19121809e-08 +UniRef50_Q819W8 Ribosome biogenesis GTPase A 0.0105531393838 0.00264960406034 -0.00790353532346 +UniRef50_UPI0004627B5D PREDICTED 1.23761333514e-05 1.59944031344e-06 -1.0776693038e-05 +UniRef50_UPI00027F40A7 2.01153616948e-05 2.82520917813e-05 8.1367300865e-06 +UniRef50_W6IDM0 1.33796161898e-05 2.50783935776e-05 1.16987773878e-05 +UniRef50_UPI00037E7F9C hypothetical protein 1.21981320794e-05 0.00016230741457 0.000150109282491 +UniRef50_R7QKG6 Stackhouse genomic scaffold, scaffold_401 9.3118644522e-05 1.34900196536e-05 -7.96286248684e-05 +UniRef50_E2X9Y8 PTS system, glucitol sorbitol specific, IIBC component 0.00184714325271 0.00043858916614 -0.00140855408657 +UniRef50_UPI0001B43C25 hypothetical protein, partial 4.18541271383e-06 5.07846639359e-05 4.65992512221e-05 +UniRef50_Q11MY4 Aminotransferase 0.0142507184221 0.00290683038137 -0.0113438880407 +UniRef50_U3AS30 ABC transporter, binding protein 0.000249261929303 0.000112642222547 -0.000136619706756 +UniRef50_UPI0003728AAF MULTISPECIES 2.96369305819e-05 0.000235975692393 0.000206338761811 +UniRef50_UPI00026C7EA0 2 isopropylmalate synthase 7.46223861463e-06 8.6531817131e-06 1.19094309847e-06 +UniRef50_Q42684 Superoxide dismutase [Mn], mitochondrial 2.1580622728e-05 4.13000335078e-05 1.97194107798e-05 +UniRef50_A8IJ48 3.54266653204e-05 4.98588474293e-05 1.44321821089e-05 +UniRef50_Q46L27 Phosphate import ATP binding protein PstB 6.5104145904e-06 0.000175818415791 0.000169308001201 +UniRef50_UPI00046E069E 4.3413374199e-06 1.41878445524e-05 9.8465071325e-06 +UniRef50_UPI000407DFAC peptide ABC transporter substrate binding protein 5.51072527108e-06 6.26674117959e-05 5.71566865248e-05 +UniRef50_R4ZTZ8 Erythrocyte binding protein 2 0.000273472269865 0.000319718833157 4.6246563292e-05 +UniRef50_T1Y7X3 Transporter, Na+ H+ antiporter family 0.0185084340919 0.00453325395178 -0.0139751801401 +UniRef50_UPI0003A7157D ABC transporter permease 1.02311079687e-05 3.07230528648e-05 2.04919448961e-05 +UniRef50_E3A6F2 Transcriptional activator GpuR 0.000820798087286 0.000193227942332 -0.000627570144954 +UniRef50_A0LFA0 6.73540704719e-06 2.24708484529e-05 1.57354414057e-05 +UniRef50_C7LI26 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.0162586243932 0.00238096050565 -0.0138776638876 +UniRef50_UPI0003723D7C hypothetical protein, partial 4.19745693656e-06 7.3848658401e-06 3.18740890354e-06 +UniRef50_F6W1A6 9.93113908368e-05 1.55954769671e-05 -8.37159138697e-05 +UniRef50_A8LAA1 4 hydroxy 2 oxovalerate aldolase 1 0.00241490059438 0.000935364612715 -0.00147953598166 +UniRef50_Q8XAZ3 UPF0187 protein YneE 0.00473273665689 0.000370690424931 -0.00436204623196 +UniRef50_H3Y3Z6 PHP domain protein 0.00531545422838 0.00255532970109 -0.00276012452729 +UniRef50_C1DF31 Transcriptional regulator, AraC family 0.000225140748821 0.00135715149946 0.00113201075064 +UniRef50_Q8RA66 Tyrosine recombinase XerC 0.000312780025754 0.00121800405472 0.000905224028966 +UniRef50_A3ML41 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000135603912432 1.01775067106e-05 -0.000125426405721 +UniRef50_Q1R1I5 Putative Holliday junction resolvase 3.24376286752e-05 2.12626985509e-05 -1.11749301243e-05 +UniRef50_Q8CMP4 Serine aspartate repeat containing protein F 0.00529191827539 0.00169399836678 -0.00359791990861 +UniRef50_R4NU59 Histone acetyltransferase HPA2 related acetyltransferase 0.00648936429777 0.00873935777529 0.00224999347752 +UniRef50_R5NQY2 Beta eliminating lyase 0.0102350310094 0.000448251524079 -0.00978677948532 +UniRef50_Q1C5I4 Nucleoside diphosphate kinase 9.6558670322e-05 5.31675453118e-05 -4.33911250102e-05 +UniRef50_O67222 S adenosylmethionine synthase 7.82146020438e-06 0.000159770529035 0.000151949068831 +UniRef50_M2E237 Putative reductase 0.00225849975745 0.00540031689511 0.00314181713766 +UniRef50_UPI0004696E1B molecular chaperone Hsp33 1.7519763698e-05 7.27686688908e-05 5.52489051928e-05 +UniRef50_UPI00046741A1 hypothetical protein 3.23789107296e-05 1.43795020523e-05 -1.79994086773e-05 +UniRef50_D4HBM2 Transcriptional regulator, LacI family 0.000505051928669 0.00670151418206 0.00619646225339 +UniRef50_F5I475 Acyl CoA dehydrogenase, middle domain protein 0.00045597503883 0.000960110846725 0.000504135807895 +UniRef50_D0D906 Tripartite ATP independent periplasmic transporter, DctQ component 0.000264565644237 0.00011170115891 -0.000152864485327 +UniRef50_E2ZSF7 SadB 0.00113206573251 0.000165135156678 -0.000966930575832 +UniRef50_UPI000473FA93 30S ribosomal protein S3, partial 6.37633558287e-05 5.21107161324e-05 -1.16526396963e-05 +UniRef50_C2PG39 GCN5 related N acetyltransferase 0.00232472707909 0.00226593109452 -5.879598457e-05 +UniRef50_G8VGQ5 5.49901264563e-05 0.000453603013437 0.000398612886981 +UniRef50_F8I070 Peptidyl prolyl cis trans isomerase 0.0046313676088 0.00288491606854 -0.00174645154026 +UniRef50_W7QF52 0.000291038128384 2.96954258239e-05 -0.00026134270256 +UniRef50_E4BJ69 FeoA domain protein 0.000534899174486 0.000413030356916 -0.00012186881757 +UniRef50_P52878 Phosphoserine aminotransferase 0.0107994251334 0.00260714616743 -0.00819227896597 +UniRef50_A6M011 ABC transporter permease protein 0.000419155801941 0.000732525124145 0.000313369322204 +UniRef50_A5I3R8 ABC transporter, permease protein 0.000677300004087 0.00221132219082 0.00153402218673 +UniRef50_P76245 Probable diguanylate cyclase YeaP 0.00258552020401 0.000728495356993 -0.00185702484702 +UniRef50_UPI0003A75D7C lipase 2.50838010997e-05 0.000414274290521 0.000389190489421 +UniRef50_A5CLH3 DivIVA protein 6.40097658514e-05 5.86854533105e-05 -5.3243125409e-06 +UniRef50_UPI00016C35F3 probable MoxR related protein, partial 1.63667990468e-05 3.5861640914e-05 1.94948418672e-05 +UniRef50_H2ZBA2 3.64402397862e-05 1.7097062531e-05 -1.93431772552e-05 +UniRef50_Q67LZ8 Oligopeptide ABC transporter permease protein 0.0200220730776 0.00322574377258 -0.016796329305 +UniRef50_C6M3G0 5.45130177362e-05 0.000228184152327 0.000173671134591 +UniRef50_UPI000379FDE6 hypothetical protein 1.31838917467e-05 0.000217168844091 0.000203984952344 +UniRef50_R6GQC1 Peptidase U32 0.000303315416172 0.00103077529447 0.000727459878298 +UniRef50_Q9RSR0 0.000725635415725 0.0478264610751 0.0471008256594 +UniRef50_UPI0003690F47 hypothetical protein 3.50281872565e-06 5.94642660102e-06 2.44360787537e-06 +UniRef50_A0A024HX85 2.27171683016e-06 9.56540845528e-05 9.33823677226e-05 +UniRef50_A1USI9 3 oxoacyl [acyl carrier protein] synthase 3 9.60672789174e-06 1.21458345034e-05 2.53910661166e-06 +UniRef50_A5UMS9 0.00390043108272 0.000630775996969 -0.00326965508575 +UniRef50_UPI0004743442 acetolactate synthase catalytic subunit, partial 6.17095995254e-06 1.76978334197e-05 1.15268734672e-05 +UniRef50_O83296 Protein Soj homolog 0.00101270063422 0.00200255947631 0.00098985884209 +UniRef50_UPI000364FA10 hypothetical protein 2.09354459098e-05 2.9676504215e-05 8.7410583052e-06 +UniRef50_E1QW23 Uracil DNA glycosylase superfamily 0.000592873536577 0.00501556782803 0.00442269429145 +UniRef50_A0A037L527 SPP1 family phage portal protein 0.0153233286468 0.00218915881979 -0.013134169827 +UniRef50_UPI0003717BEB diguanylate cyclase 1.51701410981e-05 0.000751846763722 0.000736676622624 +UniRef50_B2KEN0 DNA directed RNA polymerase subunit beta 2.19074428495e-06 1.60325037735e-06 -5.874939076e-07 +UniRef50_O87406 UPF0070 protein NGO0425 0.000380631864954 0.00207708746081 0.00169645559586 +UniRef50_UPI0003AB479F methionyl tRNA synthetase 5.95680277432e-06 1.65431351384e-05 1.05863323641e-05 +UniRef50_UPI000477EBC3 hypothetical protein 1.28069517424e-06 7.10978894466e-05 6.98171942724e-05 +UniRef50_A5UKA0 Glycosyltransferase 0.00336869882431 9.84389017397e-05 -0.00327025992257 +UniRef50_A5UML7 Predicted AAA ATPase 0.00592941334698 0.00176401169475 -0.00416540165223 +UniRef50_A6LY87 0.000796585139432 0.000802318214595 5.733075163e-06 +UniRef50_Q8ZCX2 Polyphosphate kinase 0.00185695074461 0.000909153532339 -0.000947797212271 +UniRef50_UPI0003A3B951 hypothetical protein 1.34677341485e-05 1.31991404009e-05 -2.685937476e-07 +UniRef50_UPI00037C182A hypothetical protein 0.000443986543746 0.000148681050755 -0.000295305492991 +UniRef50_K7U2F6 0.00012312617878 0.000110673975553 -1.2452203227e-05 +UniRef50_T0SXL1 ABC transporter multidrug efflux pump 0.000301252562416 0.006676560066 0.00637530750358 +UniRef50_Q1CTZ0 Cag pathogenicity island protein I 0.000201776209644 0.00385567261755 0.00365389640791 +UniRef50_Q2RBC8 Expressed protein 2.03410151446e-05 2.72081702395e-05 6.8671550949e-06 +UniRef50_M4UIL6 0.000356366811101 3.87089306784e-06 -0.000352495918033 +UniRef50_E4TFB2 TRAP transporter solute receptor, TAXI family 4.18975193491e-05 6.68267792048e-06 -3.52148414286e-05 +UniRef50_F2IFK9 8.97718626384e-06 0.00111670843146 0.0011077312452 +UniRef50_UPI0003B66E26 UTP glucose 1 phosphate uridylyltransferase 0.000321675054061 0.000182428739423 -0.000139246314638 +UniRef50_UPI0003B6588F branched chain amino acid transporter AzlC 7.90817867144e-05 8.43243422897e-05 5.2425555753e-06 +UniRef50_Q4L4U2 Protein NagD homolog 0.0245072680738 0.00813408333933 -0.0163731847345 +UniRef50_P0A5S1 PhoH like protein 0.000225282171962 0.00589994595937 0.00567466378741 +UniRef50_W0DM86 Diguanylate cyclase 5.87262608651e-06 4.69587752202e-05 4.10861491337e-05 +UniRef50_UPI0004119C01 hypothetical protein 4.49190976723e-06 8.89548889252e-06 4.40357912529e-06 +UniRef50_UPI000373DCE8 hypothetical protein 4.57531092745e-05 1.21266999831e-05 -3.36264092914e-05 +UniRef50_Q9RRP2 0.000549824696826 0.0490250288986 0.0484752042018 +UniRef50_Q9RRP3 6.88035679961e-05 0.0188976746339 0.0188288710659 +UniRef50_Q6G7L8 Hydroxyethylthiazole kinase 0.0216696053158 0.00479405850925 -0.0168755468065 +UniRef50_UPI0000164CDA molybdenum cofactor biosynthesis protein A 6.64183622418e-06 0.00728499790573 0.00727835606951 +UniRef50_Q53158 Phosphoribosyl AMP cyclohydrolase 0.00602157660669 7.38695059412e-05 -0.00594770710075 +UniRef50_B0JMB5 4.64025679615e-05 1.15190478844e-05 -3.48835200771e-05 +UniRef50_UPI00035E553A hypothetical protein 0.000355225785863 9.02705211259e-05 -0.000264955264737 +UniRef50_G7M109 Stage III sporulation protein AA 0.000616786062403 0.0023136470665 0.0016968610041 +UniRef50_R4M6A1 4.78940306974e-05 3.79727597145e-05 -9.9212709829e-06 +UniRef50_UPI0003062627 hypothetical protein 1.56013015479e-05 0.000125503327335 0.000109902025787 +UniRef50_Q54443 Dextranase 0.00636502958676 0.00147410609132 -0.00489092349544 +UniRef50_UPI000370DB0C hypothetical protein 0.000127131964001 0.000151381410495 2.4249446494e-05 +UniRef50_W1VLC3 4.13812205054e-06 6.39569089466e-06 2.25756884412e-06 +UniRef50_S2WM30 5.25471219726e-06 7.36022955013e-05 6.8347583304e-05 +UniRef50_UPI0003752BA6 hypothetical protein 1.65836881666e-05 8.96644626744e-06 -7.61724189916e-06 +UniRef50_Q82GB8 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.6619669629e-05 2.5001580799e-05 8.38191117e-06 +UniRef50_V5ST11 Cytochrome P450 0.000355209670205 0.000410186170209 5.4976500004e-05 +UniRef50_E6VVV5 AzlC family protein 3.92355001446e-05 1.48151023551e-05 -2.44203977895e-05 +UniRef50_R7FQK3 Arabinose binding protein 0.000110916549126 0.00109959456792 0.000988678018794 +UniRef50_P0AG77 Nuclease SbcCD subunit D 0.00475697561798 0.000895991166097 -0.00386098445188 +UniRef50_UPI0003773D73 50S ribosomal protein L18 6.41597750388e-05 0.000419050838263 0.000354891063224 +UniRef50_M9VFV0 HAD hydrolase, family IIB 0.00138487519104 0.00459825239627 0.00321337720523 +UniRef50_E2ZT41 0.00102353394618 0.000359411811592 -0.000664122134588 +UniRef50_UPI0004447F97 PREDICTED 4.19717299651e-05 0.000126514195336 8.45424653709e-05 +UniRef50_I2ZU82 0.000805327681322 0.000187869768109 -0.000617457913213 +UniRef50_P81177 Zinc metalloproteinase aureolysin 0.0118991657824 0.00291320102572 -0.00898596475668 +UniRef50_P0AF00 Molybdenum cofactor biosynthesis protein B 0.000570383430073 0.00049073586868 -7.9647561393e-05 +UniRef50_Q4YEI4 0.0011023412729 0.00070055402375 -0.00040178724915 +UniRef50_C3KNV3 MFS permease 0.000193342617778 0.0059989497177 0.00580560709992 +UniRef50_M1LUI1 D galactose binding periplasmic protein MglB 0.000757341745591 0.00263511656833 0.00187777482274 +UniRef50_P52558 N5 carboxyaminoimidazole ribonucleotide mutase 8.70285250475e-05 0.00144379927242 0.00135677074737 +UniRef50_T2E9A2 Glycosyl transferases group 1 family protein 0.00070545005054 0.0016786414996 0.00097319144906 +UniRef50_UPI0003B71379 N acetyltransferase 3.38587003831e-05 4.38406772258e-05 9.9819768427e-06 +UniRef50_UPI00036E1F30 hypothetical protein 1.00525607274e-05 1.06381602119e-05 5.855994845e-07 +UniRef50_U5N662 1.3456992275e-05 4.51965079954e-05 3.17395157204e-05 +UniRef50_D9TM82 Pyruvate flavodoxin ferredoxin oxidoreductase domain protein 8.11216308394e-05 0.000381521275695 0.000300399644856 +UniRef50_Q4L4Y4 0.011352481691 0.00296562740989 -0.00838685428111 +UniRef50_UPI00026CC3BE recombinase 5.70301565196e-05 1.20143851102e-05 -4.50157714094e-05 +UniRef50_UPI00047918D8 isoleucine tRNA ligase 2.3540344863e-06 3.00742491096e-06 6.5339042466e-07 +UniRef50_W1E8W6 Serine transporter 1.03917892474e-05 1.17524803775e-05 1.3606911301e-06 +UniRef50_M9VGG3 0.00448744156641 0.00407282855699 -0.00041461300942 +UniRef50_A3V2A1 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 4.63894536679e-05 1.1305402343e-05 -3.50840513249e-05 +UniRef50_Q9AA76 2.31957895439e-05 2.39776625577e-05 7.818730138e-07 +UniRef50_I1EHK4 0.000126108904961 0.00162291037933 0.00149680147437 +UniRef50_P9WIZ4 Divalent metal cation transporter MntH 9.67912791928e-05 0.00401236210336 0.00391557082417 +UniRef50_E3E667 6.80131500236e-06 0.000708191134862 0.00070138981986 +UniRef50_Q1GMS0 Dihydroorotase 0.00135544040885 0.000654552096998 -0.000700888311852 +UniRef50_D9ULU8 CvhA 7.15775792529e-06 0.000127788787527 0.000120631029602 +UniRef50_UPI000367667A hypothetical protein 5.04478154356e-05 4.36477028852e-05 -6.8001125504e-06 +UniRef50_I0C1A6 Nitrogen regulation protein NIFR3 0.00135474491105 6.77546109288e-05 -0.00128699030012 +UniRef50_Q49XM4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.00887418014522 0.00369201768409 -0.00518216246113 +UniRef50_W5XWP7 Aldehyde dehydrogenase 0.0016689275233 0.000723869905191 -0.000945057618109 +UniRef50_C8X7N2 0.000254175793101 0.000121073399709 -0.000133102393392 +UniRef50_UPI00037FE0F3 hypothetical protein 5.9434084805e-06 8.15061550832e-05 7.55627466027e-05 +UniRef50_A1IQ80 Riboflavin biosynthesis protein RibD 0.000149400787142 0.00377809685714 0.00362869607 +UniRef50_UPI00036C9CB5 hypothetical protein 1.37887874428e-05 1.64553660804e-05 2.6665786376e-06 +UniRef50_A7X6I5 Fibronectin binding protein A 0.0123766972848 0.00341688949036 -0.00895980779444 +UniRef50_A0A059MMV6 MFS transporter 0.000117841619826 0.00609312448881 0.00597528286898 +UniRef50_S2R9A4 Excinuclease ATPase subunit 3.96133479613e-05 0.000261762691732 0.000222149343771 +UniRef50_Q29RN5 LOC767890 protein 3.33182814306e-05 6.61993367704e-05 3.28810553398e-05 +UniRef50_A0A022H1X1 Mannosyltransferase 0.000194256153273 1.89566303611e-05 -0.000175299522912 +UniRef50_Q2JXL1 Serine tRNA ligase 4.60370840718e-06 1.27830709039e-05 8.17936249672e-06 +UniRef50_I0Z518 2.80925903372e-06 3.59689456681e-06 7.8763553309e-07 +UniRef50_B1YLE0 Triosephosphate isomerase 3.30870157682e-05 7.52388808504e-05 4.21518650822e-05 +UniRef50_Q1LHJ9 Ribosomal RNA small subunit methyltransferase G 1.99719041731e-05 2.68720683187e-05 6.9001641456e-06 +UniRef50_A6V312 6.35676657784e-06 5.56920176405e-06 -7.8756481379e-07 +UniRef50_Q51366 GDP mannose 4,6 dehydratase 0.0012459712858 0.00018248200115 -0.00106348928465 +UniRef50_UPI0003AA2BE4 adenylate kinase 1.12465697889e-05 4.03470997163e-05 2.91005299274e-05 +UniRef50_UPI00037042BD hypothetical protein 1.17212045414e-05 0.000297632493556 0.000285911289015 +UniRef50_C4Z2L9 0.000348579404123 0.000328129672448 -2.0449731675e-05 +UniRef50_E4B7L0 0.000608848369114 0.00162727435658 0.00101842598747 +UniRef50_F5ZKQ5 PTS multi domain regulator 7.09115821271e-05 0.0041428804266 0.00407196884447 +UniRef50_D2Q557 Cobyrinic acid ac diamide synthase 3.79428097264e-06 1.14191130481e-05 7.62483207546e-06 +UniRef50_UPI0001CBAB2C PREDICTED 2.88288744181e-06 1.29634980647e-05 1.00806106229e-05 +UniRef50_A7ZR24 Chromosome initiation inhibitor 0.00206915725329 0.000357959642661 -0.00171119761063 +UniRef50_F0RL27 Cell envelope related transcriptional attenuator 0.000102670713198 0.0156712896391 0.0155686189259 +UniRef50_C0F8H0 Transketolase 7.11459043501e-05 1.25321646041e-05 -5.8613739746e-05 +UniRef50_M7CS69 Arsenate reductase 0.000139098077978 0.00019864275912 5.9544681142e-05 +UniRef50_G7M7C1 Cell wall binding repeat containing protein 0.000496674730899 0.000561758002748 6.5083271849e-05 +UniRef50_K2RRG6 1.09522542348e-05 2.1054716729e-05 1.01024624942e-05 +UniRef50_Q3IWQ1 Caspase family protein 0.00537548951736 0.00135302095866 -0.0040224685587 +UniRef50_Q8CRY0 UPF0342 protein SE_1526 0.00662216195631 0.000518099482802 -0.00610406247351 +UniRef50_P41187 DNA directed RNA polymerase subunit beta 5.01282096262e-05 4.29338198038e-05 -7.1943898224e-06 +UniRef50_A7N872 1.84844496023e-05 5.50975417287e-05 3.66130921264e-05 +UniRef50_X0SWR3 Marine sediment metagenome DNA, contig 3.17664255041e-05 4.50511103632e-06 -2.72613144678e-05 +UniRef50_Q5HN54 UPF0435 protein SERP1418 0.00230449033989 0.000868578544689 -0.0014359117952 +UniRef50_B9JY98 ABC transporter 0.0120387224355 0.000836926381729 -0.0112017960538 +UniRef50_UPI0003FAD0C0 hypothetical protein 4.861449408e-06 2.06669923201e-05 1.58055429121e-05 +UniRef50_G0IAR6 Transposase 4.41345998391e-05 0.000176139526107 0.000132004926268 +UniRef50_W0NHP5 Transposase 0.00033941550879 5.74378662781e-05 -0.000281977642512 +UniRef50_UPI0003474DAF hypothetical protein 1.19230995553e-06 6.10192007791e-06 4.90961012238e-06 +UniRef50_UPI00037B2E7D hypothetical protein 4.17161045203e-06 1.19098359621e-05 7.73822551007e-06 +UniRef50_A3M7C9 0.000124720040369 0.00837483213716 0.00825011209679 +UniRef50_UPI0002DCEE9A hypothetical protein 1.30585057402e-05 1.93497722487e-05 6.2912665085e-06 +UniRef50_Q9I1X8 0.000810756432548 0.000457855356899 -0.000352901075649 +UniRef50_D2YK48 Phosphoribosylformylglycinamidine synthase 0.000165123977905 0.000100986665661 -6.4137312244e-05 +UniRef50_UPI000471F9AA hypothetical protein 1.06631908282e-05 4.41940029206e-05 3.35308120924e-05 +UniRef50_P76205 Putative ankyrin repeat protein B 0.000540580488197 0.000635081111252 9.4500623055e-05 +UniRef50_G7M911 Major facilitator superfamily MFS_1 0.000243643116173 0.00154501637948 0.00130137326331 +UniRef50_UPI00046F5D51 leucyl phenylalanyl tRNA protein transferase 8.1068854312e-06 3.48364879064e-05 2.67296024752e-05 +UniRef50_G7ZQT1 0.0163953556353 0.00326389349117 -0.0131314621441 +UniRef50_UPI0002489B72 polysaccharide biosynthesis protein 1.08641812914e-05 3.28861503763e-05 2.20219690849e-05 +UniRef50_A6W4G4 0.000132982065622 6.85921441896e-05 -6.43899214324e-05 +UniRef50_Q8D385 Zinc import ATP binding protein ZnuC 0.000197806637993 2.46396771049e-05 -0.000173166960888 +UniRef50_A0A011P1A0 0.000176357800995 5.35830808112e-05 -0.000122774720184 +UniRef50_K1UQX5 Thiazole biosynthesis protein ThiH 0.000147372349326 0.000109781519587 -3.7590829739e-05 +UniRef50_B1J356 Bifunctional protein PyrR 0.000442802621941 0.0026001793949 0.00215737677296 +UniRef50_P19685 Superoxide dismutase [Fe] 1.37718390203e-05 2.16560767746e-05 7.8842377543e-06 +UniRef50_UPI0003B7AF8F septation ring formation regulator EzrA 1.86047225611e-05 2.02875323195e-05 1.6828097584e-06 +UniRef50_A3KVE3 0.000873664340319 0.000395072515317 -0.000478591825002 +UniRef50_Q9RTB7 1,4 alpha glucan branching enzyme GlgB 0.000422510326123 0.0333975816673 0.0329750713412 +UniRef50_Q891D3 Tyrosine tRNA ligase 0.000266020158991 0.00132351958365 0.00105749942466 +UniRef50_P67664 HTH type transcriptional activator AaeR 0.00382365407201 0.00127291561465 -0.00255073845736 +UniRef50_W8T7R1 0.00259164652166 0.000322750497486 -0.00226889602417 +UniRef50_Q1XG21 0.000280390014931 8.48635927669e-05 -0.000195526422164 +UniRef50_UPI0003B52ABE flagellar biosynthesis protein FlhA 1.43652691683e-06 3.66104151916e-06 2.22451460233e-06 +UniRef50_F7ZDL0 7.69309138284e-06 2.40505047915e-05 1.63574134087e-05 +UniRef50_Q0PAR0 Macrolide export ATP binding permease protein MacB 2.88604915121e-06 1.30737793455e-05 1.01877301943e-05 +UniRef50_P23034 Aspartate aminotransferase 0.000825822026474 0.00847846432217 0.0076526422957 +UniRef50_A6LPV8 Isoaspartyl dipeptidase 0.000500199798562 0.000574787447927 7.4587649365e-05 +UniRef50_I4Z5S2 Type II secretory pathway, component PulF 6.14950942071e-06 0.00225866485091 0.00225251534149 +UniRef50_F5M175 0.000269120054789 6.66467404092e-05 -0.00020247331438 +UniRef50_X4ZX80 0.0112052573005 0.00243139445282 -0.00877386284768 +UniRef50_D3QFI9 Phosphomevalonate kinase 0.0215430717441 0.00742901684416 -0.0141140548999 +UniRef50_R8A3B5 0.000332512993594 6.71544086962e-06 -0.000325797552724 +UniRef50_F3ZKD4 Putative amino acid decarboxylase 6.1968961051e-06 2.95432770566e-05 2.33463809515e-05 +UniRef50_A0JUZ2 LexA repressor 8.52919040285e-05 1.19675162051e-05 -7.33243878234e-05 +UniRef50_UPI0002376C0A cysteinyl tRNA synthetase 9.2316193776e-06 3.49026172962e-05 2.56709979186e-05 +UniRef50_UPI00040458A8 glyoxalase 1.19910692407e-05 3.00487280408e-05 1.80576588001e-05 +UniRef50_O35435 Dihydroorotate dehydrogenase , mitochondrial 3.88577241031e-06 1.12455891751e-05 7.35981676479e-06 +UniRef50_N9J1H3 0.000122032108466 0.00242491163778 0.00230287952931 +UniRef50_Q59928 Acetylornithine aminotransferase 0.0159852500756 0.00484810348502 -0.0111371465906 +UniRef50_Q5HEG2 Accessory gene regulator A 0.0215644058991 0.00218423362769 -0.0193801722714 +UniRef50_Q0K6L6 Ribosomal RNA small subunit methyltransferase H 2.31142292189e-05 1.27483708071e-05 -1.03658584118e-05 +UniRef50_H2JCD9 0.000327616296138 0.00121786228017 0.000890245984032 +UniRef50_UPI00040C37BB peptide chain release factor 3 1.78520051562e-05 5.78437488549e-05 3.99917436987e-05 +UniRef50_Q39F94 Polysaccharide deacetylase 0.000236915892584 0.0046493327219 0.00441241682932 +UniRef50_Q0VQP5 Lipid A export ATP binding permease protein MsbA 3.05016714536e-06 4.50427092526e-06 1.4541037799e-06 +UniRef50_Q8XGY4 tRNA specific adenosine deaminase 1.09335700826e-05 4.19686453001e-05 3.10350752175e-05 +UniRef50_W1CRU3 6.86010788154e-05 9.47227310176e-05 2.61216522022e-05 +UniRef50_P43703 DNA topoisomerase 4 subunit B 0.000437014894835 4.74048889865e-06 -0.000432274405936 +UniRef50_Q8FB22 Replicative DNA helicase 0.00195900048037 0.00458343631954 0.00262443583917 +UniRef50_A7ZM93 0.00247821551277 0.000536743353068 -0.0019414721597 +UniRef50_A8GP69 Phospho N acetylmuramoyl pentapeptide transferase 0.00777148216546 0.00228095455262 -0.00549052761284 +UniRef50_UPI00035E3AF9 hypothetical protein 6.42731468893e-06 0.000155966387808 0.000149539073119 +UniRef50_UPI0003B5603D 3 oxoacyl ACP synthase 9.13923511008e-06 4.36447086396e-05 3.45054735295e-05 +UniRef50_UPI00046818D4 aldehyde dehydrogenase 3.22417670688e-06 1.99939095982e-05 1.67697328913e-05 +UniRef50_X3K6P1 6.54042744555e-05 0.000101407900318 3.60036258625e-05 +UniRef50_Q3J3U2 0.00184127214374 0.000239122838212 -0.00160214930553 +UniRef50_Q0K963 Histidine tRNA ligase 0.00259319674761 0.00478093583506 0.00218773908745 +UniRef50_UPI000466CCF2 hypothetical protein 2.44359639678e-06 5.55262682456e-06 3.10903042778e-06 +UniRef50_Q5LYN3 UDP N acetylenolpyruvoylglucosamine reductase 0.0294558856997 0.0109561700847 -0.018499715615 +UniRef50_A0A023RTB7 TonB dependent receptor 0.000117385290996 0.00750964758678 0.00739226229578 +UniRef50_P07017 Methyl accepting chemotaxis protein II 0.00587380266786 0.00157358171672 -0.00430022095114 +UniRef50_K0HVG4 Magnesium chelatase subunit ChlI 0.000200790419604 0.00567669919155 0.00547590877195 +UniRef50_UPI00035F8B10 hypothetical protein 5.65392826143e-06 1.3840821117e-05 8.18689285557e-06 +UniRef50_UPI000440FDB6 PREDICTED 5.90183925532e-06 1.75820762938e-05 1.16802370385e-05 +UniRef50_N4N922 Aminotransferase class I and II family protein 0.00157285828688 0.000831878042813 -0.000740980244067 +UniRef50_E2YZE2 0.0107108807675 0.00782463065047 -0.00288625011703 +UniRef50_F0KG57 0.000125133476969 0.00611722693169 0.00599209345472 +UniRef50_UPI0003640B98 hypothetical protein, partial 1.64705366131e-06 3.19602446545e-07 -1.32745121477e-06 +UniRef50_B7H1Y2 LysR substrate binding domain protein 0.000156850133866 0.00655258955399 0.00639573942012 +UniRef50_Q7MME5 4.37985877149e-05 6.65439152668e-05 2.27453275519e-05 +UniRef50_C6SHL5 2.67362015027e-05 0.000274119362039 0.000247383160536 +UniRef50_A0A010WN13 Phospholipase C, phosphocholine specific 0.000169580374119 0.00756598715365 0.00739640677953 +UniRef50_Q2YY30 Truncated cell surface fibronectin binding protein 0.000496698599059 0.000529600001783 3.2901402724e-05 +UniRef50_UPI00034C42C5 hypothetical protein 2.60437086541e-06 6.82373120784e-06 4.21936034243e-06 +UniRef50_Q5WLV8 4 diphosphocytidyl 2 C methyl D erythritol kinase 2.07595030953e-05 0.00268027845368 0.00265951895058 +UniRef50_UPI00036A7304 hypothetical protein 7.87460375357e-05 3.24248144453e-05 -4.63212230904e-05 +UniRef50_Q67SK0 ATP dependent Clp protease proteolytic subunit 1 0.0203238830158 0.0144977263678 -0.005826156648 +UniRef50_P32152 Putative frv operon regulatory protein 0.00287222758709 0.000328752539038 -0.00254347504805 +UniRef50_UPI000372D8ED hypothetical protein 3.9038546996e-05 4.39972727362e-05 4.9587257402e-06 +UniRef50_X4QTW2 Excinuclease ABC subunit A 0.000365347884855 0.00597163464502 0.00560628676016 +UniRef50_D6SBZ3 Amidohydrolase family protein 0.0103836879905 0.00311295932253 -0.00727072866797 +UniRef50_Q6ABR7 Cobalamin biosynthesis protein CobN 3.20265262076e-05 0.00478301816329 0.00475099163708 +UniRef50_P77493 0.00248569796678 0.00151725400242 -0.00096844396436 +UniRef50_UPI0003025696 hypothetical protein 2.35118911205e-05 8.12176438155e-06 -1.5390126739e-05 +UniRef50_UPI0004767909 binding protein 5.62094915235e-05 9.87110164272e-06 -4.63383898808e-05 +UniRef50_UPI00047B08A4 hypothetical protein 0.000103335168301 0.000100387499282 -2.947669019e-06 +UniRef50_UPI00047D5805 hypothetical protein 3.61275948224e-05 4.22472045129e-05 6.1196096905e-06 +UniRef50_Q5FKU9 Cell division protein FtsZ 0.00737566751452 0.00600587060389 -0.00136979691063 +UniRef50_UPI0003B55D8E pyruvate kinase 1.79551179342e-05 1.25349157627e-05 -5.4202021715e-06 +UniRef50_Q89L46 UvrABC system protein A 0.00895787970116 0.0011499359591 -0.00780794374206 +UniRef50_UPI00045603F6 hypothetical protein PFL1_03459 2.6603607741e-05 9.69587105776e-06 -1.69077366832e-05 +UniRef50_Q5HL03 0.00127358890476 0.0265373190214 0.0252637301166 +UniRef50_A5UK97 Predicted permease 0.00160875134474 0.00120133723912 -0.00040741410562 +UniRef50_M9VI15 0.000433477130563 0.0036255695855 0.00319209245494 +UniRef50_B9DW22 0.000612139441381 0.00100107357693 0.000388934135549 +UniRef50_I6T6W0 Dehydrogenase 0.00553181113933 0.00216783971121 -0.00336397142812 +UniRef50_Q2IIH7 PE PGRS family protein 0.000949025022007 0.00152768574689 0.000578660724883 +UniRef50_A6LWM4 Amine oxidase 0.000357775265256 0.00248638781778 0.00212861255252 +UniRef50_G8XHV9 0.000126268929618 2.44098165855e-05 -0.000101859113033 +UniRef50_C7TGJ0 PTS system, IIC component 0.004101438313 0.00509327363259 0.00099183531959 +UniRef50_X0TXG2 Marine sediment metagenome DNA, contig 2.38679573879e-05 0.000451923479511 0.000428055522123 +UniRef50_P77721 0.00138206705698 0.00120139272301 -0.00018067433397 +UniRef50_UPI0003639180 hypothetical protein 3.19037379464e-05 1.85327275236e-05 -1.33710104228e-05 +UniRef50_UPI0003FDB00F hypothetical protein 1.76988655493e-05 1.76263836868e-05 -7.24818625e-08 +UniRef50_G8V8I0 Regulator of sorbitol operon 0.000219365157044 0.00450619998833 0.00428683483129 +UniRef50_UPI00047AE27E DNA topoisomerase I 0.0005718035332 0.00129001965664 0.00071821612344 +UniRef50_R9ZG20 Chemotaxis protein 0.000591355969722 0.000295354775877 -0.000296001193845 +UniRef50_H8Z498 0.000110589311456 1.02886153978e-05 -0.000100300696058 +UniRef50_A3TUV5 0.000618558930468 0.00017236247027 -0.000446196460198 +UniRef50_Q8ELA5 Methionine import ATP binding protein MetN 4 1.64527642481e-05 0.00228023526799 0.00226378250374 +UniRef50_S3ZS47 Putative Oleandomycin polyketide synthase, modules 5 and 6 7.22339582887e-05 2.68926612013e-05 -4.53412970874e-05 +UniRef50_B1I1Y5 Phosphoglucosamine mutase 0.000515086698447 0.00133219499756 0.000817108299113 +UniRef50_Q57772 Putative permease MJ0326 0.0013187319194 0.00244200997823 0.00112327805883 +UniRef50_UPI00037341DE hypothetical protein 2.13272799561e-05 8.7408229462e-06 -1.25864570099e-05 +UniRef50_I2F9Q0 Cobalt zinc cadmium resistance protein CzcA 4.12853797497e-05 0.00287363248875 0.002832347109 +UniRef50_Q00749 Multiple sugar binding protein 0.00524352553798 0.00222345984712 -0.00302006569086 +UniRef50_G7M9H8 0.000141380520171 0.00177143068101 0.00163005016084 +UniRef50_C5MZ71 PIN domain protein 0.0118885604994 0.00101842626507 -0.0108701342343 +UniRef50_UPI0002896123 flagellar motor switch protein FliN 0.000120120383648 3.95226116104e-05 -8.05977720376e-05 +UniRef50_P41031 Thiosulfate binding protein 0.00196184454033 0.00120691578759 -0.00075492875274 +UniRef50_W9G6K5 5.09385762422e-05 4.74795688226e-05 -3.4590074196e-06 +UniRef50_A8AVK0 Protein LemA 0.0102171360425 0.000551993841485 -0.00966514220101 +UniRef50_B8FYL8 Two component transcriptional regulator, winged helix family 0.000418063741423 0.00558553311669 0.00516746937527 +UniRef50_C6SRE4 0.00500359901084 0.00222779357882 -0.00277580543202 +UniRef50_M9VG81 Glycosyl hydrolase family 20, catalytic domain protein 0.000530464020794 0.00592270199318 0.00539223797239 +UniRef50_UPI00031DE77D hypothetical protein 0.000201468337333 8.85684855743e-05 -0.000112899851759 +UniRef50_UPI000478621D hypothetical protein 1.56287571307e-05 6.79824419492e-06 -8.83051293578e-06 +UniRef50_A6V3K7 Membrane protein, putative 0.000148616531043 0.000246782762008 9.8166230965e-05 +UniRef50_I0C7T4 X Pro dipeptidyl peptidase family protein 0.000482910178341 0.000468959995716 -1.3950182625e-05 +UniRef50_UPI0003753634 hypothetical protein 1.04943836201e-05 6.36068817682e-05 5.31124981481e-05 +UniRef50_A7X6X6 Pantothenate synthetase 0.0241384567907 0.00443872286926 -0.0196997339214 +UniRef50_A6LQ26 Two component transcriptional regulator, LytTR family 0.000166783205682 0.00207625725214 0.00190947404646 +UniRef50_D5ARQ0 Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI 0.000801972115586 0.000361895395144 -0.000440076720442 +UniRef50_UPI000375A365 hypothetical protein 5.38674729484e-06 9.58068222996e-05 9.04200750048e-05 +UniRef50_UPI0004785697 polyphosphate kinase 8.37073056165e-06 0.000203620707278 0.000195249976716 +UniRef50_UPI000365B78F transposase IS200 7.95257942545e-05 0.000107135392876 2.76095986215e-05 +UniRef50_B7V041 Glycine glutamate dipeptide porin OpdP 0.00106728457456 0.000129619621887 -0.000937664952673 +UniRef50_Q3K8E9 23S rRNA C(5)) methyltransferase RlmD 0.000316659027346 9.81282770331e-05 -0.000218530750313 +UniRef50_Q3IV20 0.0348268888184 0.00128920135807 -0.0335376874603 +UniRef50_Q3IV23 0.00164620488659 0.00150450224945 -0.00014170263714 +UniRef50_Q3IV22 0.000842884503193 0.000867958776462 2.5074273269e-05 +UniRef50_UPI0003B70939 FAD containing monooxygenase EthA, partial 2.2028632816e-05 4.91223075027e-05 2.70936746867e-05 +UniRef50_Q3IV27 0.00603265008739 0.000454814595262 -0.00557783549213 +UniRef50_A1B4G8 Orn DAP Arg decarboxylase 2 0.00271807956807 0.000724455459513 -0.00199362410856 +UniRef50_UPI000378AE4A O acetylhomoserine aminocarboxypropyltransferase 1.63325269391e-05 9.47672619358e-06 -6.85580074552e-06 +UniRef50_Q9RUU0 D 3 phosphoglycerate dehydrogenase 0.00013942341107 0.0301426073813 0.0300031839702 +UniRef50_C6ST04 0.00465763918008 0.00573099953673 0.00107336035665 +UniRef50_M7YV85 Formin like protein 6 3.51688528049e-06 4.10876142454e-06 5.9187614405e-07 +UniRef50_P33222 Putative acid amine ligase YjfC 0.00339190132305 0.000251690373754 -0.0031402109493 +UniRef50_W5X567 7.20986472507e-05 1.67984490755e-05 -5.53001981752e-05 +UniRef50_I4EYS5 NAD dependent epimerase dehydratase 0.000115658512532 0.000198565968206 8.2907455674e-05 +UniRef50_UPI00036FB7EB hypothetical protein 3.74467463666e-06 1.37797798451e-05 1.00351052084e-05 +UniRef50_H9UZT1 Ribonucleoside diphosphate reductase 1, beta subunit, B2 0.00235381795536 0.00135217125076 -0.0010016467046 +UniRef50_A6M1W3 Multi sensor signal transduction histidine kinase 0.000292824635796 0.00177655531356 0.00148373067776 +UniRef50_Q9RTX3 C di GMP phosphodiesterase A 0.000117328758456 0.0179809115678 0.0178635828093 +UniRef50_D0JET7 Sodium serine transporter 0.00100950363723 0.000944668955554 -6.4834681676e-05 +UniRef50_UPI00040C441F PTS glucose transporter subunit IIB 1.74393789552e-05 9.18430841581e-05 7.44037052029e-05 +UniRef50_A5UL56 Molybdopterin biosynthesis protein, MoeB 0.00280400473023 0.000635548456494 -0.00216845627374 +UniRef50_R4ZW64 NAD dependent oxidoreductase 0.000153034860351 0.000533965196472 0.000380930336121 +UniRef50_UPI00047AEC83 chemotaxis protein CheY 1.40568039596e-05 8.61835729628e-05 7.21267690032e-05 +UniRef50_H2A8F3 Methionine ABC transporter substrate binding protein 0.00657181913759 0.00304293616662 -0.00352888297097 +UniRef50_F0RLS2 Metal dependent phosphohydrolase with GAF sensor 0.000110591598297 0.0264537530311 0.0263431614328 +UniRef50_F2MVP5 L sorbosone dehydrogenase 0.0130086667608 0.00254635926438 -0.0104623074964 +UniRef50_K9ZX43 0.000147072463189 0.0231502038411 0.0230031313779 +UniRef50_L1K6L8 Methyl accepting chemotaxis protein 0.00120266545315 0.000754000098364 -0.000448665354786 +UniRef50_UPI00047DE5DB ribonuclease 3 9.77648101939e-06 9.48742710663e-06 -2.8905391276e-07 +UniRef50_P45955 0.00192732948129 0.000681168522267 -0.00124616095902 +UniRef50_X5E195 0.00540048602413 0.000509166733097 -0.00489131929103 +UniRef50_D0LY72 Putative transcriptional regulator, Crp Fnr family 4.64417408264e-05 3.63325322954e-05 -1.0109208531e-05 +UniRef50_UPI00029AEFE9 DNA topoisomerase I subunit omega 1.76424025654e-05 0.000196612937139 0.000178970534574 +UniRef50_Q5HJZ0 DNA gyrase subunit A 0.016534477752 0.00538676135046 -0.0111477164015 +UniRef50_D5RPK9 1.77182186898e-05 5.58010763987e-05 3.80828577089e-05 +UniRef50_B5F1C1 HTH type transcriptional regulator IscR 0.0180981679997 0.000364588524928 -0.0177335794748 +UniRef50_Q0G4L4 0.000112987754093 1.94632716902e-05 -9.35244824028e-05 +UniRef50_E3ZBY8 DHH subfamily 1 protein 2.68638733529e-05 0.00183409578723 0.00180723191388 +UniRef50_F9NYB1 RHS repeat associated core domain protein 2.42029913741e-05 0.000863411435195 0.000839208443821 +UniRef50_UPI0003B34E67 ABC transporter 7.50713988334e-05 3.38584735936e-05 -4.12129252398e-05 +UniRef50_F8LI03 Sal9 lantibiotic transport ATP binding protein 0.00930512358008 0.000200214715383 -0.0091049088647 +UniRef50_K4KVK1 Drug resistance ABC transporter,ATP binding protein 0.000154989443301 0.00102507238017 0.000870082936869 +UniRef50_UPI000476294D formyltetrahydrofolate deformylase 3.73878403764e-05 2.06091931295e-05 -1.67786472469e-05 +UniRef50_P61502 Superoxide dismutase [Mn] 1.02081202158e-05 3.02577543801e-05 2.00496341643e-05 +UniRef50_A5UNM6 SAM dependent methyltransferase 0.00849111482105 0.00108705535655 -0.0074040594645 +UniRef50_UPI0002627AF2 RpoD subfamily RNA polymerase sigma 70 subunit 3.28284654563e-06 4.79367475213e-06 1.5108282065e-06 +UniRef50_Q97IG3 Alanine tRNA ligase 0.000422637123772 0.000766859134778 0.000344222011006 +UniRef50_P75692 0.000466032084997 0.00128840288488 0.000822370799883 +UniRef50_UPI0002BAB8F5 hypothetical protein, partial 0.000241813692432 0.00010883762805 -0.000132976064382 +UniRef50_Q37374 Cytochrome c oxidase subunit 3 6.60691389082e-05 2.86498337168e-05 -3.74193051914e-05 +UniRef50_UPI00035D52F0 hypothetical protein 2.15107237645e-05 8.7572277124e-06 -1.27534960521e-05 +UniRef50_Q2S432 ATP synthase subunit alpha 3.64876127905e-06 0.00605087288603 0.00604722412475 +UniRef50_I6T7J2 0.00260954016454 0.000605503010314 -0.00200403715423 +UniRef50_K0D4L6 5.75166767241e-05 2.42156703453e-05 -3.33010063788e-05 +UniRef50_Q12YB2 CRISPR associated helicase Cas3 5.82642274481e-05 6.48549705319e-06 -5.17787303949e-05 +UniRef50_F5XP90 7.32982502581e-05 0.00796859591419 0.00789529766393 +UniRef50_P38055 Inner membrane metabolite transport protein YdjE 0.000156850133866 0.00020627476498 4.9424631114e-05 +UniRef50_UPI000328C9B2 PREDICTED 1.65453310905e-05 0.000208742792204 0.000192197461113 +UniRef50_B2II05 ABC transporter related 0.00408188699475 0.000850254209396 -0.00323163278535 +UniRef50_I2AAI6 Cellobiose phosphorylase 3.26849497377e-06 1.88748129388e-05 1.5606317965e-05 +UniRef50_A3CQL5 Amino acid ABC transporter, periplasmic amino acid binding protein, putative 0.00395986634679 0.000266051085761 -0.00369381526103 +UniRef50_UPI0003B46C76 hypothetical protein 2.84228403115e-05 9.01217532685e-06 -1.94106649846e-05 +UniRef50_D3JTG3 3 hydroxylisobutyryl CoA hydrolase 0.000818500172003 0.0136690881686 0.0128505879966 +UniRef50_A4HM87 Proteophosphoglycan ppg4 1.98154837901e-05 0.000135633711865 0.000115818228075 +UniRef50_J0W6L9 0.000218871326518 0.000247046029491 2.8174702973e-05 +UniRef50_A6LXJ5 Na H(+) antiporter NhaA 2 0.000487349830313 0.00252042057701 0.0020330707467 +UniRef50_V5REB2 WafV 9.77942976327e-05 0.00937020184807 0.00927240755044 +UniRef50_UPI0004073FCC dihydroxyacetone kinase 2.5629469346e-05 0.0012488440291 0.00122321455975 +UniRef50_K9ZYD2 Exodeoxyribonuclease III 0.00024406421693 0.021503338744 0.0212592745271 +UniRef50_Q9RRR7 Sensory box sensor histidine kinase 0.0001072257636 0.0166757102461 0.0165684844825 +UniRef50_B9KT23 Glycine reductase complex protein C large subunit 0.00219540631815 0.000352369130465 -0.00184303718768 +UniRef50_UPI000471CC40 hypothetical protein 3.77716535626e-05 1.22087308662e-05 -2.55629226964e-05 +UniRef50_Q59A32 Trifunctional purine biosynthetic protein adenosine 3 3.13872872176e-06 2.62852624844e-06 -5.1020247332e-07 +UniRef50_P0A1B6 Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive 0.00371340181284 0.00217287445752 -0.00154052735532 +UniRef50_A7NR36 DNA directed RNA polymerase subunit alpha 1.99824640152e-05 4.14939622295e-05 2.15114982143e-05 +UniRef50_UPI00037D0C80 hypothetical protein 6.65735235466e-05 7.99153873709e-05 1.33418638243e-05 +UniRef50_V8G2Y5 Crp Fnr family transcription regulator 0.000175574878536 0.00174250639593 0.00156693151739 +UniRef50_A0A059LCN6 0.000105240994677 0.000206877765398 0.000101636770721 +UniRef50_A0A011RXV5 Type IV secretion system ATPase VirB11 0.00011884863753 6.81565995955e-05 -5.06920379345e-05 +UniRef50_UPI00046D7021 hypothetical protein 7.98329083728e-06 5.21047134837e-06 -2.77281948891e-06 +UniRef50_B2THL1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000199066473348 0.00176021924043 0.00156115276708 +UniRef50_UPI00025593F3 chemotaxis protein 4.8668336341e-05 2.55522743141e-05 -2.31160620269e-05 +UniRef50_Q6FBV7 3 hydroxyisobutyrate dehydrogenase 0.00026472340519 0.00971622186908 0.00945149846389 +UniRef50_UPI00040CFD31 hypothetical protein 3.76541027836e-05 2.2064326043e-05 -1.55897767406e-05 +UniRef50_Q9RSJ6 DNA directed RNA polymerase subunit alpha 1.58231809344e-05 0.0361980261084 0.0361822029275 +UniRef50_UPI0003728B08 hypothetical protein 6.88932848041e-05 1.79279344568e-05 -5.09653503473e-05 +UniRef50_UPI00024868FB hypothetical protein 0.000317328486701 1.86864623895e-05 -0.000298642024311 +UniRef50_E3F1F2 RelA SpoT family protein 0.00803446906144 0.00210126652969 -0.00593320253175 +UniRef50_UPI00036CA645 hypothetical protein 2.56169861598e-05 0.000290602745547 0.000264985759387 +UniRef50_F8G483 Integral membrane protein TerC 0.000921389890703 0.000170048006835 -0.000751341883868 +UniRef50_E2QLT7 0.000933869547394 0.00109848325529 0.000164613707896 +UniRef50_Q05599 Bifunctional adenosylcobalamin biosynthesis protein CobU 0.00138580882327 7.15898030953e-05 -0.00131421902017 +UniRef50_Q8FW08 sn glycerol 3 phosphate transport system permease protein UgpE 0.00932572348268 0.00108501178009 -0.00824071170259 +UniRef50_A3PAU4 Chorismate synthase 4.51423476046e-06 1.5324111368e-05 1.08098766075e-05 +UniRef50_S5KJ87 1.06926318816e-06 0.00142848106742 0.00142741180423 +UniRef50_R9ZM17 Chemotaxis protein 0.00114794441715 0.000361717629572 -0.000786226787578 +UniRef50_UPI00037D86B2 hypothetical protein 1.13032497291e-05 1.23660747563e-05 1.0628250272e-06 +UniRef50_Q500N2 Bifunctional spore maturation protein, fused SpmA SpmB 9.22197041218e-05 0.000467325133115 0.000375105428993 +UniRef50_V5WU09 Transcriptional regulator 0.000245665484807 0.00211630071658 0.00187063523177 +UniRef50_UPI0002D3498A hypothetical protein 4.59971761171e-05 4.97810335979e-06 -4.10190727573e-05 +UniRef50_UPI00047D2769 phosphoenolpyruvate protein phosphotransferase 3.07650312353e-06 8.45211884096e-05 8.14446852861e-05 +UniRef50_G8VAH8 Kinase domain protein 7.42108759259e-05 0.00691952282844 0.00684531195251 +UniRef50_T1CR22 Site specific recombinase 1.3776913791e-05 0.000265343330868 0.000251566417077 +UniRef50_D0K172 0.000215706279348 0.0018292834454 0.00161357716605 +UniRef50_UPI0003EF77A3 hypothetical protein 0.000117359778757 0.000130687297718 1.3327518961e-05 +UniRef50_F8W467 6.67949269383e-06 1.55753892354e-05 8.89589654157e-06 +UniRef50_F9UHG1 Putative solute symporter protein 2.10123206672e-05 7.42582506103e-05 5.32459299431e-05 +UniRef50_A6M205 Transcriptional regulator, GntR family 0.0001909709893 0.00285628282473 0.00266531183543 +UniRef50_Q1J2B0 Peptidase M29, aminopeptidase II 0.000113586556327 0.0213342040473 0.021220617491 +UniRef50_A5UNV4 Putative major capsid protein gp5 0.00633086257814 0.000611724963857 -0.00571913761428 +UniRef50_R7PVH8 0.000952410113641 0.000526289099055 -0.000426121014586 +UniRef50_UPI00047926DE transposase 3.12413356951e-06 6.21300267044e-05 5.90058931349e-05 +UniRef50_Q1QX79 4.9678037189e-05 3.59786495507e-05 -1.36993876383e-05 +UniRef50_D8JMF6 0.000134816424593 0.00611437300908 0.00597955658449 +UniRef50_A0A009QE54 TonB dependent siderophore receptor family protein 0.000250460260786 0.00766343700894 0.00741297674815 +UniRef50_UPI00037EFDE6 hypothetical protein 3.40866075036e-05 3.13459793105e-05 -2.7406281931e-06 +UniRef50_UPI00038177C4 hypothetical protein 2.22251673062e-05 1.74682644133e-05 -4.7569028929e-06 +UniRef50_Q5HP19 Proline dipeptidase 0.0216011327094 0.00526702172571 -0.0163341109837 +UniRef50_A1B4V0 0.00325664961853 0.00123321256016 -0.00202343705837 +UniRef50_F9GT79 UPF0125 protein GGA_0527 1.00315708908e-05 2.01100610781e-05 1.00784901873e-05 +UniRef50_UPI00047EFD30 hypothetical protein 1.76699215318e-05 9.02591901783e-05 7.25892686465e-05 +UniRef50_UPI00036F0908 hypothetical protein 4.51049605241e-06 1.69795972756e-05 1.24691012232e-05 +UniRef50_X2LYU6 1.56181175861e-05 1.80696904975e-05 2.4515729114e-06 +UniRef50_G8V4E9 ATP dependent DNA helicase RecQ 0.00946865105445 0.00221715766914 -0.00725149338531 +UniRef50_B2U6Z0 N anthranilate isomerase 0.00219529407841 0.000305715303102 -0.00188957877531 +UniRef50_Q92SH6 Peptide deformylase 3.6846322747e-05 8.86607233645e-05 5.18144006175e-05 +UniRef50_Q8RGC8 Fe ions import ATP binding protein FbpC 4.22742506301e-05 0.000200668202859 0.000158393952229 +UniRef50_J0YJQ5 Serine aspartate repeat containing protein G 0.0066755644067 0.00269678632111 -0.00397877808559 +UniRef50_X1K5L6 Marine sediment metagenome DNA, contig 6.42746352788e-06 1.30369969647e-05 6.60953343682e-06 +UniRef50_T0VCE6 ABC transporter ATP binding protein 0.0103148694981 0.00221494492861 -0.00809992456949 +UniRef50_UPI00040CE7D5 hypothetical protein 5.92851567073e-05 3.50983835316e-05 -2.41867731757e-05 +UniRef50_F8H6P0 0.000661344072478 0.000889333462438 0.00022798938996 +UniRef50_Q9RTE3 Protein export membrane protein, putative 4.96692090564e-05 0.0258598062743 0.0258101370652 +UniRef50_D2NXJ8 6.34364420643e-05 0.000927324757521 0.000863888315457 +UniRef50_A8AJI8 Citrate lyase acyl carrier protein 0.000529185965684 0.000626113155893 9.6927190209e-05 +UniRef50_H8H0D3 0.000454958593323 0.0427128696261 0.0422579110328 +UniRef50_Q5ZEI2 1.22364750339e-05 0.00104247700434 0.00103024052931 +UniRef50_I6T664 0.00451343786544 0.00148395786982 -0.00302947999562 +UniRef50_K2D6T3 0.000125310601514 0.000148250485467 2.2939883953e-05 +UniRef50_Q11K61 Binding protein dependent transport systems inner membrane component 0.000575751563428 0.000278163301593 -0.000297588261835 +UniRef50_P39062 Acetyl coenzyme A synthetase 0.0103015327761 0.00276047570116 -0.00754105707494 +UniRef50_UPI0004643E21 hypothetical protein 1.34440395945e-05 2.45065246852e-05 1.10624850907e-05 +UniRef50_C1CX98 3 methyl 2 oxobutanoate hydroxymethyltransferase 8.10250341907e-06 1.28475882897e-05 4.74508487063e-06 +UniRef50_Q59641 Peptidyl prolyl cis trans isomerase A 0.00273230577485 0.00100766018828 -0.00172464558657 +UniRef50_UPI000463A8B3 preprotein translocase subunit SecD SecF, partial 2.86177976162e-06 1.00838329191e-05 7.22205315748e-06 +UniRef50_B5F808 UPF0231 protein YacL 0.000483729960722 0.000519618836113 3.5888875391e-05 +UniRef50_A0A058ZAW9 2.11358430669e-06 3.76645629365e-05 3.55509786298e-05 +UniRef50_T9NAV5 Inner membrane protein 3.91367596396e-05 0.000386034908756 0.000346898149116 +UniRef50_G7LZJ4 0.000467826976731 0.000684256318889 0.000216429342158 +UniRef50_UPI0002B9550C regulator for metE and MetH 0.000150659321835 0.000200974028319 5.0314706484e-05 +UniRef50_UPI00046A72DD hypothetical protein 6.87464995661e-06 1.04717194038e-05 3.59706944719e-06 +UniRef50_A3PS85 0.00370743857263 0.000366095089089 -0.00334134348354 +UniRef50_B7NUS6 0.0011487182418 0.000272181295113 -0.000876536946687 +UniRef50_UPI0003B61198 cobalt ABC transporter ATP binding protein 1.60211162977e-05 9.71172660575e-06 -6.30938969195e-06 +UniRef50_G7M0X3 Transcriptional regulator, AraC family 0.000803347984395 0.00136978109218 0.000566433107785 +UniRef50_T0P454 4.19969481506e-05 2.40075299561e-05 -1.79894181945e-05 +UniRef50_UPI000478626E 3 oxoacyl ACP reductase 9.70888553198e-06 1.29433264158e-05 3.23444088382e-06 +UniRef50_UPI00026CD1C9 MFS transporter 1.42819052456e-05 1.14892715795e-05 -2.7926336661e-06 +UniRef50_A0A026WQ11 0.000454540923018 9.64386994461e-05 -0.000358102223572 +UniRef50_W5X9Y2 ABC transporter related protein 2.67837117836e-05 1.00254780074e-05 -1.67582337762e-05 +UniRef50_Q6F803 0.000298015254361 0.00218150852335 0.00188349326899 +UniRef50_P08956 Type I restriction enzyme EcoKI R protein 0.00164205592549 0.00126971046851 -0.00037234545698 +UniRef50_I4DYP2 RNA binding protein 0.00757269134152 0.00675743066569 -0.00081526067583 +UniRef50_I0C528 0.00978524105939 0.00274225256523 -0.00704298849416 +UniRef50_I0Z1H0 1.09303054781e-06 3.40051121409e-06 2.30748066628e-06 +UniRef50_D8JHE9 Nitrate transport ATP binding protein nrtC 0.000245891592022 0.00756808357449 0.00732219198247 +UniRef50_A9M366 0.000301988791085 0.00101106650997 0.000709077718885 +UniRef50_UPI00046F9B67 PTS system, glucose subfamily, IIA component 2.87403172244e-06 4.13053256777e-06 1.25650084533e-06 +UniRef50_E3EYF0 C4 dicarboxylate transport transcriptional regulatory protein DctD 0.0103017977633 0.00280889485706 -0.00749290290624 +UniRef50_UPI00047AADF7 serine threonine protein phosphatase 6.68769567577e-06 9.14179872369e-06 2.45410304792e-06 +UniRef50_Q5HLA3 Putative aldehyde dehydrogenase AldA 0.0266845429308 0.00772333054173 -0.0189612123891 +UniRef50_A7ZIM8 Adenine phosphoribosyltransferase 0.00177385007496 0.000342610826539 -0.00143123924842 +UniRef50_V5NHS3 6.39806760752e-05 0.00514459373032 0.00508061305424 +UniRef50_K0HKR9 9.2445548289e-05 0.00716176150989 0.0070693159616 +UniRef50_N4DH58 Pyridine nucleotide disulfide oxidoreductase family protein 0.000570613484775 0.000331816522686 -0.000238796962089 +UniRef50_G7U4C3 Hypoxanthine phosphoribosyltransferase 0.000832689681294 0.0100591540507 0.00922646436941 +UniRef50_Q8E310 Phosphate binding protein PstS 2 0.000721322924183 0.000568922136243 -0.00015240078794 +UniRef50_C5BFM6 Beta hexosaminidase 0.000344532895441 0.00663167559093 0.00628714269549 +UniRef50_Q3HKK4 0.00355778376238 0.00153264887415 -0.00202513488823 +UniRef50_UPI00037B5AE4 30S ribosomal protein S1 2.9951910108e-06 0.00010634087058 0.000103345679569 +UniRef50_Q9ZKE4 Primosomal protein N 0.000212349102803 0.00374766343554 0.00353531433274 +UniRef50_M9RBV2 0.00299804163973 0.00060830661409 -0.00238973502564 +UniRef50_UPI000467A396 hypothetical protein 5.41422258121e-05 2.26459769234e-05 -3.14962488887e-05 +UniRef50_R7PWJ2 0.00182059947183 0.000571553111221 -0.00124904636061 +UniRef50_L0KHH1 Cation multidrug efflux pump 0.00896337742238 0.00206341386895 -0.00689996355343 +UniRef50_Q0BTL1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 6.99683230975e-05 3.78708776306e-05 -3.20974454669e-05 +UniRef50_B0T0X6 Protoheme IX farnesyltransferase 9.11097112223e-06 7.22310644913e-05 6.31200933691e-05 +UniRef50_Q6Q272 p hydroxyphenylacetate 3 hydroxylase, oxygenase component 0.0124054917765 0.00238516434941 -0.0100203274271 +UniRef50_C5BQ62 50S ribosomal protein L4 0.00331467103294 0.002619018341 -0.00069565269194 +UniRef50_Q9JTG4 Alanine tRNA ligase 8.92026081351e-05 0.00468771506549 0.00459851245735 +UniRef50_A1KTV6 2 isopropylmalate synthase 0.000217079094157 0.00251395156737 0.00229687247321 +UniRef50_D4HCV5 Periplasmic binding protein 3.90538025751e-05 0.000179283163332 0.000140229360757 +UniRef50_A4IMH7 tRNA 2 methylthio N dimethylallyladenosine synthase 0.0190985753996 0.003778971474 -0.0153196039256 +UniRef50_UPI00036C607F hypothetical protein 2.97631445172e-05 6.36199300237e-06 -2.34011515148e-05 +UniRef50_A1UG51 Spermidine putrescine import ATP binding protein PotA 0.000327032302683 1.42904879509e-05 -0.000312741814732 +UniRef50_UPI0004657C1A serine threonine protein kinase 4.56160646924e-05 1.42699460812e-05 -3.13461186112e-05 +UniRef50_Q5HPV5 UPF0122 protein SERP0802 0.0182996643452 0.00053693946399 -0.0177627248812 +UniRef50_D2NAH1 Dihydroorotate oxidase 0.0268827123502 0.00388792697206 -0.0229947853781 +UniRef50_UPI0004671BDB hypothetical protein 9.15606069038e-05 5.73898363178e-06 -8.5821623272e-05 +UniRef50_M2IT76 Glucosyltransferase S 0.000937047786034 0.000873203180054 -6.384460598e-05 +UniRef50_UPI000370D86A hypothetical protein 6.83280858819e-05 8.68499813085e-06 -5.9643087751e-05 +UniRef50_P24180 Multidrug export protein AcrE 0.00260771528958 0.000387083916662 -0.00222063137292 +UniRef50_A0A037YKV0 N acetylglucosamine 6 phosphate deacetylase 0.000474219386336 0.000405667722205 -6.8551664131e-05 +UniRef50_UPI000418069B ABC transporter 1.95992890936e-05 4.98147629591e-06 -1.46178127977e-05 +UniRef50_E2XTQ0 Ribose ABC transporter, permease protein 0.000213671314441 0.0036527615265 0.00343909021206 +UniRef50_A5WHZ8 OmpW family protein 0.000857468611517 0.00843520293452 0.007577734323 +UniRef50_P0AF22 N acetylglucosamine repressor 0.00235418366327 0.000523856736939 -0.00183032692633 +UniRef50_Q15PI0 MazG family protein 1.22602290078e-05 8.49435456541e-06 -3.76587444239e-06 +UniRef50_UPI00041E2B4A hypothetical protein 2.2810594589e-05 3.80948933246e-05 1.52842987356e-05 +UniRef50_UPI0001E89F57 glycerophosphoryl diester phosphodiesterase 9.96263991838e-06 2.10718045982e-05 1.11091646798e-05 +UniRef50_P45546 0.00261253758321 0.0009098316791 -0.00170270590411 +UniRef50_Q832G5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 9.28536342056e-06 0.00197435103989 0.00196506567647 +UniRef50_B0V7L4 0.0002066529136 0.0051836566183 0.0049770037047 +UniRef50_Q1IWJ1 0.000668070111131 0.035999796459 0.0353317263479 +UniRef50_P45549 0.00227321017942 0.000909267388022 -0.0013639427914 +UniRef50_Q28JW2 HemY like protein 0.00310493005675 0.0004528962072 -0.00265203384955 +UniRef50_B7UXY2 UPF0761 membrane protein PLES_43641 0.000797907889305 0.0011945737331 0.000396665843795 +UniRef50_P46890 0.00231685786862 0.00145456598405 -0.00086229188457 +UniRef50_A1R6L8 Glucose 1 phosphate adenylyltransferase 0.000773155384039 0.00746334363358 0.00669018824954 +UniRef50_UPI00041EAEC4 outer membrane specific lipoprotein transporter subunit LolE 8.60698492788e-06 4.1236605699e-05 3.26296207711e-05 +UniRef50_T0TW25 0.00577666889919 0.00163942201409 -0.0041372468851 +UniRef50_Q6G9K4 DNA topoisomerase 4 subunit A 0.0206658509464 0.00378469583768 -0.0168811551087 +UniRef50_UPI000375B645 hypothetical protein 8.47703205811e-06 7.30354908239e-05 6.45584587658e-05 +UniRef50_F0HAX6 3.32907753402e-06 0.00014051341434 0.000137184336806 +UniRef50_V4R9U3 Type II restriction endonuclease 4.59102750525e-06 0.00115731367038 0.00115272264287 +UniRef50_Q2SQB9 tRNA 2 selenouridine synthase 0.00010211523594 0.000485556117741 0.000383440881801 +UniRef50_I1CKJ8 0.00010297150717 2.7000369187e-05 -7.5971137983e-05 +UniRef50_P44016 Putative oligopeptide transporter HI_0561 0.000582754361592 0.000109107157092 -0.0004736472045 +UniRef50_P37538 0.000346317420961 0.000173267647843 -0.000173049773118 +UniRef50_UPI00047574D4 tyrosyl tRNA synthetase 3.11942392257e-05 8.24673671748e-06 -2.29475025082e-05 +UniRef50_UPI00037DCE93 hypothetical protein 1.44269899394e-06 1.29359660663e-05 1.14932670724e-05 +UniRef50_UPI0003B3686E XRE family transcriptional regulator 0.000214478426361 2.2761331119e-05 -0.000191717095242 +UniRef50_Q3AC80 NADH quinone oxidoreductase subunit D 6.2187110506e-06 3.79523740024e-05 3.17336629518e-05 +UniRef50_P32138 Alpha glucosidase YihQ 0.000682100305499 0.000165443532329 -0.00051665677317 +UniRef50_X2I9U8 Histidine kinase 0.000176899087287 0.00197147714997 0.00179457806268 +UniRef50_UPI0004741BEC CTP synthetase, partial 9.96389899647e-06 4.73790941946e-05 3.74151951981e-05 +UniRef50_A6V2J2 0.000754313319023 0.000698082389237 -5.6230929786e-05 +UniRef50_V9B4W3 von Willebrand factor type A domain protein 5.23651653421e-05 2.19459711697e-05 -3.04191941724e-05 +UniRef50_A0A024L686 Ankyrin repeat protein A 0.00308702081468 0.000223018376258 -0.00286400243842 +UniRef50_UPI000470C007 hypothetical protein 5.55506119298e-06 1.51696414471e-05 9.61458025412e-06 +UniRef50_F0RKW9 Biopolymer transport protein ExbD TolR 0.000268354968373 0.0112462403929 0.0109778854245 +UniRef50_T1YAE9 O succinylbenzoate synthase 0.012923522758 0.00147747931157 -0.0114460434464 +UniRef50_UPI00045EAF3A hypothetical protein 3.7971683441e-06 3.75460790335e-05 3.37489106894e-05 +UniRef50_B9JG24 Shikimate dehydrogenase 0.000176506764391 3.90808415511e-05 -0.00013742592284 +UniRef50_UPI0004182A5D MarR family transcriptional regulator 1.21098665729e-05 7.77129668926e-05 6.56031003197e-05 +UniRef50_C7J486 Os06g0602200 protein 2.58092401854e-05 0.000654503711914 0.000628694471729 +UniRef50_Q58239 Peptide chain release factor subunit 1 0.00379371054317 0.000307154969647 -0.00348655557352 +UniRef50_Q8CPA3 Oligoendopeptidase 0.0102887424518 0.00529154058556 -0.00499720186624 +UniRef50_UPI0003B5016A hypothetical protein 2.94469583119e-06 0.000663310325567 0.000660365629736 +UniRef50_B2U887 Cytidylate kinase 9.08687944926e-06 1.22158904418e-05 3.12901099254e-06 +UniRef50_Q9L3H0 9.08593394311e-05 3.65502307929e-05 -5.43091086382e-05 +UniRef50_UPI00036EFE7D hypothetical protein 1.646921491e-05 1.15523763001e-05 -4.9168386099e-06 +UniRef50_A2RH97 Mannitol 1 phosphate 5 dehydrogenase 0.0064844736951 0.00580445494923 -0.00068001874587 +UniRef50_F0KMR7 3 oxoacyl synthase I 0.000238477371924 0.00527109111335 0.00503261374143 +UniRef50_K7S761 Nuclease, RecB family 0.000124377628566 0.00495262999798 0.00482825236941 +UniRef50_Q9RTC1 0.00059290993013 0.023861253653 0.0232683437229 +UniRef50_Q4FTT8 2 octaprenylphenol hydroxylase 0.000280304150315 0.0065601565586 0.00627985240828 +UniRef50_UPI00040A0384 DNA polymerase I 6.39265702459e-06 3.01663145474e-05 2.37736575228e-05 +UniRef50_UPI000474D03A hypothetical protein, partial 3.96761866383e-05 4.54873986415e-05 5.8112120032e-06 +UniRef50_UPI00034A62B9 hypothetical protein 4.26007767202e-06 2.78376568091e-05 2.35775791371e-05 +UniRef50_K0TKK5 4.74669558729e-05 1.3312015779e-05 -3.41549400939e-05 +UniRef50_P50975 NADH quinone oxidoreductase subunit J 0.00852786908027 0.000418245768677 -0.00810962331159 +UniRef50_Q9RVP1 Extracellular solute binding protein, family 5 0.000406114783491 0.0988772382931 0.0984711235096 +UniRef50_I6H2Z2 Ferritin like protein 0.000242468655024 0.000428168395247 0.000185699740223 +UniRef50_L7UG94 0.000421908573212 4.5290418566e-05 -0.000376618154646 +UniRef50_D8UER7 3.50893539839e-05 4.60384817445e-05 1.09491277606e-05 +UniRef50_P39816 Putative PTS system glucosamine specific EIICBA component 2.19506014454e-05 4.11558585045e-05 1.92052570591e-05 +UniRef50_UPI00047DBAA4 hypothetical protein 8.64277384978e-06 1.38058405993e-05 5.16306674952e-06 +UniRef50_UPI000471AD13 hypothetical protein 8.37478541801e-06 0.00118554968516 0.00117717489974 +UniRef50_Q899I0 Stage V sporulation protein B 0.000250202582467 0.00114814678419 0.000897944201723 +UniRef50_S9RXN5 Putative inner membrane protein 8.31015396945e-06 8.74973840396e-06 4.3958443451e-07 +UniRef50_Q5GTV1 Sugar diacide regulator 0.000138104630066 0.000129059744896 -9.04488517e-06 +UniRef50_L1KDU4 0.000872830045569 0.00194714311118 0.00107431306561 +UniRef50_P36661 0.00275020225313 0.000289002768065 -0.00246119948506 +UniRef50_F9YAC9 0.00028617133074 4.28017330581e-05 -0.000243369597682 +UniRef50_UPI0004255E20 hypothetical protein 5.19611251428e-06 5.49368222447e-06 2.9756971019e-07 +UniRef50_F2UB74 9.95321893261e-06 1.39094513667e-06 -8.56227379594e-06 +UniRef50_M9RFD9 0.000464413498701 4.42826666465e-05 -0.000420130832054 +UniRef50_R7PX69 0.0062393700412 0.00214054320726 -0.00409882683394 +UniRef50_J2KWN5 Arabinose efflux permease family protein 3.78065366427e-06 5.43861592415e-06 1.65796225988e-06 +UniRef50_R9ZK82 0.000168652148514 8.06142052424e-05 -8.80379432716e-05 +UniRef50_C5ZWF4 Peptidylarginine deiminase related protein 0.000114389693592 0.00323037412972 0.00311598443613 +UniRef50_L1KH26 ORFV protein 9.70581892187e-05 4.78781319808e-05 -4.91800572379e-05 +UniRef50_Q0BUB7 Succinyl diaminopimelate desuccinylase 0.00299576711641 1.85694830246e-05 -0.00297719763339 +UniRef50_A4X058 0.001223430435 0.00152435901257 0.00030092857757 +UniRef50_A5ULA6 UPF0173 metal dependent hydrolase Msm_0779 0.00123846809465 0.000251333366122 -0.000987134728528 +UniRef50_B2HYZ7 tRNA tmRNA ) methyltransferase 0.000303723241341 0.00854744059979 0.00824371735845 +UniRef50_A8LWQ1 Oxidoreductase domain protein 0.000219044094112 0.00439297213552 0.00417392804141 +UniRef50_P0AGH1 Inner membrane transport permease YhhJ 0.00336667201484 0.000217678161078 -0.00314899385376 +UniRef50_A9UNP0 SH3, pleckstrin like and PDZ DHR GLGF domain containing protein 1.79923019198e-06 1.55751951591e-05 1.37759649671e-05 +UniRef50_A4X051 0.0142285764795 0.00484057044639 -0.00938800603311 +UniRef50_M5JU21 1.85239918976e-05 2.03080580472e-05 1.7840661496e-06 +UniRef50_E8SHR5 Chromosome partitioning protein ParB Stage 0 sporulation protein J 0.0126937910239 0.00312260636281 -0.00957118466109 +UniRef50_Q04DA2 3 isopropylmalate dehydratase small subunit 3.2430716548e-05 2.41717883857e-05 -8.2589281623e-06 +UniRef50_Q1IS40 NADH quinone oxidoreductase subunit H 2 5.32410893835e-06 1.33911958519e-05 8.06708691355e-06 +UniRef50_Q5HS11 0.012737869146 0.00353769179621 -0.00920017734979 +UniRef50_UPI0003605BA6 hypothetical protein, partial 2.16197433865e-05 0.00309496221717 0.00307334247378 +UniRef50_UPI000404D8EB regulator 1.01205889497e-05 1.51833233873e-05 5.0627344376e-06 +UniRef50_UPI0003C14420 PREDICTED 2.92037291031e-06 4.37375289598e-06 1.45337998567e-06 +UniRef50_S5CTU5 0.000192356592516 0.00911951085046 0.00892715425794 +UniRef50_D9UKD4 Predicted protein 1.28042074683e-05 4.97794121851e-05 3.69752047168e-05 +UniRef50_R1FAU5 0.000701471162544 0.000194927031816 -0.000506544130728 +UniRef50_A5UKK1 DNA binding protein MutS2 0.00280697334256 0.000387659879655 -0.0024193134629 +UniRef50_UPI00036F10D0 hypothetical protein 8.59067594772e-05 3.47982761692e-05 -5.1108483308e-05 +UniRef50_F0RLA6 0.000244562913323 0.0123542003664 0.0121096374531 +UniRef50_E3F346 Methionine binding lipoprotein 1.89426437603e-05 7.30998946131e-05 5.41572508528e-05 +UniRef50_UPI00037C3791 hypothetical protein 3.2259218699e-06 2.86077814211e-06 -3.6514372779e-07 +UniRef50_K1EXL1 Phospholipase C, phosphocholine specific 0.000173389595439 0.00551097153418 0.00533758193874 +UniRef50_UPI0001E8977F nucleoside hydrolase 1.47125064197e-05 8.82908127901e-06 -5.88342514069e-06 +UniRef50_D4H5B5 0.000132649138925 0.000130774623128 -1.874515797e-06 +UniRef50_P35885 DNA gyrase subunit A 0.000142710893207 0.00948804956513 0.00934533867192 +UniRef50_A7NLC3 D tyrosyl tRNA deacylase 0.00177762395761 0.00107597491683 -0.00070164904078 +UniRef50_R6DP97 1.98027470581e-05 1.78909917545e-05 -1.9117553036e-06 +UniRef50_UPI0003B773D1 DNA topoisomerase I 2.93007381704e-06 1.12154653651e-05 8.28539154806e-06 +UniRef50_U3TY01 5.90379475656e-05 0.000158303536793 9.92655892274e-05 +UniRef50_Q5HPE4 0.0194993979947 0.00623344417616 -0.0132659538185 +UniRef50_R9ZKM0 Magnesium transporter 0.00146320442795 0.000221764734821 -0.00124143969313 +UniRef50_L0GLS2 TIGR01244 family protein 0.000141136036096 0.00802698201999 0.00788584598389 +UniRef50_P54420 Asparagine synthetase [glutamine hydrolyzing] 1 1.80698378966e-05 0.000601339924236 0.000583270086339 +UniRef50_G2AIF5 Ulp1 protease family, C terminal catalytic domain protein 0.000335474671301 0.000690847353598 0.000355372682297 +UniRef50_UPI00034AAAAB hypothetical protein 2.23359339826e-05 9.48525628078e-06 -1.28506777018e-05 +UniRef50_UPI00036B1199 hypothetical protein 2.19272213071e-05 0.000139654345244 0.000117727123937 +UniRef50_C8P5G2 Raf like protein 1.63570707685e-05 1.88200710026e-05 2.4630002341e-06 +UniRef50_UPI000372D48D hypothetical protein 1.83711958332e-05 2.0195102402e-05 1.8239065688e-06 +UniRef50_V5VG85 HAD superfamily hydrolase 0.000370141768865 0.009571665532 0.00920152376313 +UniRef50_P06959 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.00220739410017 0.000689036797609 -0.00151835730256 +UniRef50_F9YYE2 Cobalt transport protein CbiQ 0.000243539347646 0.00556825986583 0.00532472051818 +UniRef50_H0K4B0 Cation transport ATPase 2.19063016375e-05 2.93240807719e-06 -1.89738935603e-05 +UniRef50_A4VGJ3 Two component sensor PhoQ 0.000231502638684 0.000135259559627 -9.6243079057e-05 +UniRef50_UPI00037895ED hypothetical protein 0.012405145672 0.00845211038136 -0.00395303529064 +UniRef50_A7ZAV2 7.24590291795e-05 6.80123934597e-05 -4.4466357198e-06 +UniRef50_P77129 0.00324151028965 0.000733907831629 -0.00250760245802 +UniRef50_Q6A6T4 30S ribosomal protein S9 0.00174224302547 0.00425983721408 0.00251759418861 +UniRef50_UPI000255C8A1 Bcr CflA subfamily drug resistance transporter protein, partial 1.16441210606e-05 1.75631995319e-05 5.9190784713e-06 +UniRef50_UPI0003721AC4 hypothetical protein 7.24131879379e-06 3.65824035752e-06 -3.58307843627e-06 +UniRef50_C0PWP3 NADH dehydrogenase subunit N 0.00201828446479 0.000430765470762 -0.00158751899403 +UniRef50_A7X5E2 30S ribosomal protein S8 0.00727419465536 0.00498091515693 -0.00229327949843 +UniRef50_C3ZKC0 5.78966240613e-05 5.80985453262e-05 2.019212649e-07 +UniRef50_U3TJ62 Elongation factor 4 0.0145681572819 0.00297783928924 -0.0115903179927 +UniRef50_D4HA42 0.000750814174727 0.00610603369223 0.0053552195175 +UniRef50_UPI000248A7D5 putative RTX family exoprotein 3.01187350956e-06 1.60938113443e-06 -1.40249237513e-06 +UniRef50_Q5HH83 UPF0413 protein SACOL1006 0.0187421687644 0.00366466688092 -0.0150775018835 +UniRef50_A5UKS1 Multidrug ABC transporter, permease component 0.00252121005343 0.00230420874715 -0.00021700130628 +UniRef50_Q04L81 Phosphopentomutase 0.0376275609514 0.00866651938064 -0.0289610415708 +UniRef50_UPI00042B1BC9 Translation initiation factor 3 protein isoform 3 0.000157490246695 5.57506658017e-05 -0.000101739580893 +UniRef50_E4N7F4 0.000140872216061 0.000255552462497 0.000114680246436 +UniRef50_B1HX23 UPF0173 metal dependent hydrolase Bsph_4138 0.0313180251794 0.00515266490804 -0.0261653602714 +UniRef50_UPI0003C10FDE PREDICTED 1.12886686987e-05 6.63001724052e-06 -4.65865145818e-06 +UniRef50_J9NUZ7 0.00010808790641 8.18768832125e-05 -2.62110231975e-05 +UniRef50_W0A1B9 Amino acid ABC transporter permease 0.00199507460035 0.000378051382928 -0.00161702321742 +UniRef50_A0RKC3 4.4939285287e-05 0.000222600531548 0.000177661246261 +UniRef50_UPI000442200E PREDICTED 5.02336279301e-05 0.000119141543204 6.89079152739e-05 +UniRef50_Q5E0X7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 3.01717531878e-05 3.06882800138e-05 5.16526826e-07 +UniRef50_I2BTA7 Response regulator GGDEF domain protein 0.000354379305876 0.000128398567483 -0.000225980738393 +UniRef50_Q1IXD5 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.000122295676732 0.0015328222473 0.00141052657057 +UniRef50_D3QJ45 Lysophospholipase Monoglyceride lipase 0.0248243368365 0.00635851235367 -0.0184658244828 +UniRef50_UPI0003B66D29 MULTISPECIES 1.92869535965e-05 0.000144259914324 0.000124972960727 +UniRef50_R1EJL9 4.21615028546e-05 2.214567742e-05 -2.00158254346e-05 +UniRef50_Q8CQQ7 0.00869078289227 0.00344679541051 -0.00524398748176 +UniRef50_Q8CQQ2 0.000304473224981 4.0283158393e-05 -0.000264190066588 +UniRef50_Q8CQQ1 0.00869487111184 0.00288534810204 -0.0058095230098 +UniRef50_X5K129 0.000693797736497 0.000304705348728 -0.000389092387769 +UniRef50_N6V788 5.01336522872e-05 7.5648933293e-05 2.55152810058e-05 +UniRef50_S6JXH3 4.71238341549e-05 7.32602199024e-06 -3.97978121647e-05 +UniRef50_UPI00046638AB DNA primase 4.29461313281e-06 2.59923898793e-06 -1.69537414488e-06 +UniRef50_Q898U9 Conserved protein 0.000671677662287 0.000709427056483 3.7749394196e-05 +UniRef50_A8LPA6 Double strand break repair helicase AddA 0.00036548752554 0.000117072718617 -0.000248414806923 +UniRef50_K6WPK4 MazG family protein 4.33564162064e-06 1.16872658022e-05 7.35162418156e-06 +UniRef50_M9VGE0 Anchored repeat ABC transporter, substrate binding protein 0.000162999971089 0.00562957330798 0.00546657333689 +UniRef50_Q72TV3 Transketolase alpha subunit protein 0.000138611746215 0.00175313461575 0.00161452286953 +UniRef50_UPI00047D8BBE 50S ribosomal protein L4 9.36409651882e-06 0.000161475828197 0.000152111731678 +UniRef50_Q5WFY6 tRNA dimethylallyltransferase 2.61863652902e-05 0.00192371124242 0.00189752487713 +UniRef50_U5NRL0 0.0106422038483 0.00211640084984 -0.00852580299846 +UniRef50_UPI0002F8AC80 hypothetical protein 1.43819228574e-05 4.07226407873e-05 2.63407179299e-05 +UniRef50_B3RBC2 0.000152388957537 7.04788642645e-05 -8.19100932725e-05 +UniRef50_Q2W726 Predicted membrane protein 7.73769814453e-05 1.9927411228e-05 -5.74495702173e-05 +UniRef50_G7U7H1 Glutamate synthase small subunit 0.000199027952915 0.00411047620526 0.00391144825235 +UniRef50_R1CZY9 7.2780074977e-05 0.000106437366211 3.3657291234e-05 +UniRef50_V4QWZ4 0.000185567168355 8.80681248164e-05 -9.74990435386e-05 +UniRef50_E5U2C0 Short chain dehydrogenase reductase SDR 4.60013635729e-05 3.20843455169e-05 -1.3917018056e-05 +UniRef50_Q4EDT9 Mucin 0.000122426260359 0.000409214833994 0.000286788573635 +UniRef50_F4EI16 Acetolactate synthase (Large subunit) 0.0113472918837 0.00919934387249 -0.00214794801121 +UniRef50_D3E0M6 6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase 0.00362337218605 0.00136341120637 -0.00225996097968 +UniRef50_F0KI03 X Pro dipeptidyl peptidase 7.8588339106e-05 0.00639777164504 0.00631918330593 +UniRef50_P15288 Cytosol non specific dipeptidase 0.00397456084403 0.000147535406424 -0.00382702543761 +UniRef50_UPI0004121413 hypothetical protein 6.75787726683e-06 1.35943166426e-05 6.83643937577e-06 +UniRef50_A3X4G6 Antirepressor protein ant 1.58113417432e-05 3.05678803322e-05 1.4756538589e-05 +UniRef50_P76296 0.00222020271388 0.00406414632199 0.00184394360811 +UniRef50_G2SXT9 NUDIX hydrolase 0.00020367949039 0.00135782190507 0.00115414241468 +UniRef50_A1T9L9 Malate dehydrogenase 0.00013122340285 0.0291133181272 0.0289820947244 +UniRef50_F9YXK7 Two component sensor histidine kinase 0.000195930649279 0.00731743747293 0.00712150682365 +UniRef50_U5MLC6 AAA domain protein 0.000127572077391 0.000984391294057 0.000856819216666 +UniRef50_Q46I72 Argininosuccinate synthase 4.74430004006e-06 5.71883859328e-05 5.24440858927e-05 +UniRef50_UPI000369A472 hypothetical protein 5.51724409549e-05 0.00500589006765 0.0049507176267 +UniRef50_R9CVV5 0.00064079234952 5.15008164137e-05 -0.000589291533106 +UniRef50_I3UHD1 Aminotransferase 0.00363256511217 0.000459559538132 -0.00317300557404 +UniRef50_UPI0004081419 beta lactamase 4.14319233665e-06 3.50773428719e-05 3.09341505352e-05 +UniRef50_UPI00047E2D14 secretion system apparatus protein SsaV 8.51625024393e-06 3.10466729178e-06 -5.41158295215e-06 +UniRef50_M0LPL4 Phenol hydroxylase 9.89320014843e-05 1.75071708949e-05 -8.14248305894e-05 +UniRef50_UPI000381F5B7 hypothetical protein 0.000391677547821 9.23271341845e-05 -0.000299350413636 +UniRef50_P43700 DNA gyrase subunit A 6.14583145769e-06 1.82840969638e-05 1.21382655061e-05 +UniRef50_H8GZI4 Secretion protein HlyD 0.000107138880474 0.00443212176053 0.00432498288006 +UniRef50_Q8CNU1 Riboflavin synthase alpha chain 0.0177784123856 0.0023786146734 -0.0153997977122 +UniRef50_B2N6Z5 0.00110003265327 0.000816543885337 -0.000283488767933 +UniRef50_E2QK28 DNA helicase 0.00117286718577 0.00725569438844 0.00608282720267 +UniRef50_UPI000255651A ammonium transporter, partial 1.40723811568e-05 2.61755125257e-05 1.21031313689e-05 +UniRef50_M4WTW3 0.000429697748649 0.000111721326058 -0.000317976422591 +UniRef50_E7I2X0 0.00630894472372 0.00172029148658 -0.00458865323714 +UniRef50_B9DS55 Sortase A 0.00280552835756 0.00190495507232 -0.00090057328524 +UniRef50_I3V233 Peptidase 0.00114062144001 0.000149024409689 -0.000991597030321 +UniRef50_B0RIE3 L arabinose isomerase 0.000107308042934 0.00115761148699 0.00105030344406 +UniRef50_UPI00035DB610 hypothetical protein 0.000113825207902 1.13728501328e-05 -0.000102452357769 +UniRef50_UPI00042B847E Methylmalonate semialdehyde dehydrogenase 2.79209613497e-06 6.78095826275e-06 3.98886212778e-06 +UniRef50_UPI00036E7EE5 molybdopterin biosynthesis protein B, partial 0.000348392700376 7.67472205259e-05 -0.00027164547985 +UniRef50_Q9HWR3 Bacteriophytochrome 0.000657680918168 0.000510799279081 -0.000146881639087 +UniRef50_Q59200 Aspartate ammonia lyase 5.19200833939e-06 4.59514289948e-05 4.07594206554e-05 +UniRef50_UPI0002DA19B1 hypothetical protein 1.788688519e-05 1.22001079492e-05 -5.6867772408e-06 +UniRef50_P75794 Putative pyruvate formate lyase 3 activating enzyme 0.00449203344657 0.00185761234296 -0.00263442110361 +UniRef50_UPI0002000CF0 iron enterobactin transporter ATP binding protein 4.55995981646e-05 0.000819784090842 0.000774184492677 +UniRef50_UPI00046F3EBA hypothetical protein, partial 0.000143590942136 2.58149759058e-05 -0.00011777596623 +UniRef50_P19498 Coenzyme F420 hydrogenase subunit gamma 0.00582867284372 0.00119157761483 -0.00463709522889 +UniRef50_UPI0004777CC6 hypothetical protein 1.89260584717e-06 0.000215776883638 0.000213884277791 +UniRef50_U2W9U5 UPF0301 protein RS24_01332 3.47052601631e-05 6.74064225045e-05 3.27011623414e-05 +UniRef50_Q06553 HTH type transcriptional regulator PrtR 0.00157889858106 0.00023688505764 -0.00134201352342 +UniRef50_UPI00037487E6 ABC transporter 6.59853791689e-06 0.000295781752307 0.00028918321439 +UniRef50_C6ADP9 NADH quinone oxidoreductase subunit K 3.6858137681e-05 3.50093034092e-05 -1.8488342718e-06 +UniRef50_UPI00016C4BF8 Cadherin 4.34541638288e-05 2.58639304792e-06 -4.08677707809e-05 +UniRef50_M9RBW7 GTP cyclohydrolase II 0.00118132822539 0.000228337658653 -0.000952990566737 +UniRef50_Q9K8V3 Arginine biosynthesis bifunctional protein ArgJ 0.0224962992942 0.00849409202045 -0.0140022072737 +UniRef50_B3E414 Bifunctional protein GlmU 8.37510004881e-06 6.22939159052e-06 -2.14570845829e-06 +UniRef50_Q5LZ25 Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase 0.00509873013446 0.00193451854745 -0.00316421158701 +UniRef50_Q16AB8 DNA directed RNA polymerase subunit alpha 4.7418360618e-05 3.853388935e-05 -8.884471268e-06 +UniRef50_UPI00046F0F35 aspartate ammonia lyase, partial 4.11831403573e-06 1.06253039417e-05 6.50698990597e-06 +UniRef50_UPI00046B80D6 PREDICTED 4.69301450672e-06 0.000280417576926 0.000275724562419 +UniRef50_G2NTW9 Short chain dehydrogenase reductase SDR 0.000761218720649 0.000865325479903 0.000104106759254 +UniRef50_O83079 Probable metal transport system membrane protein TP_0036 0.000283468827669 0.00051884334422 0.000235374516551 +UniRef50_L9PLX0 3.15761616374e-05 5.17809338002e-05 2.02047721628e-05 +UniRef50_A0KMZ9 Glutamyl tRNA reductase 0.000376272841621 0.000445451703238 6.9178861617e-05 +UniRef50_E4G8P9 1,3 beta galactosyl N acetylhexosamine phosphorylase 5.40037180038e-05 0.00188072235428 0.00182671863628 +UniRef50_A1S781 Response regulator receiver modulated CheW protein 0.000949712360507 0.000821045777733 -0.000128666582774 +UniRef50_W8TSS8 0.000239566675246 3.29666218454e-05 -0.000206600053401 +UniRef50_A8AB61 Probable 2 isopropylmalate synthase 8.23363681964e-06 2.69082339009e-05 1.86745970813e-05 +UniRef50_Q9RYG6 0.000311114825983 0.00200192613915 0.00169081131317 +UniRef50_UPI00022CA85B PREDICTED 1.67206365576e-05 0.000142221842394 0.000125501205836 +UniRef50_A9GZY1 Imidazoleglycerol phosphate dehydratase 0.000200025918566 6.12483774869e-05 -0.000138777541079 +UniRef50_L9U970 Diguanylate cyclase, predicted 4.44901541901e-06 0.00030821241504 0.000303763399621 +UniRef50_B2KC44 Phosphoglycerate kinase 1.64771333166e-05 2.14821956866e-05 5.00506237e-06 +UniRef50_A0A022H326 Ferredoxin 7.80753761892e-06 1.03377285387e-05 2.53019091978e-06 +UniRef50_P55140 UPF0603 protein YgcG 0.00232405375509 0.000833533499289 -0.0014905202558 +UniRef50_Q43973 3 oxoadipate CoA transferase subunit A 6.99681031629e-05 8.29749485856e-05 1.30068454227e-05 +UniRef50_A8AWN6 Conserved domain protein 0.00251017809446 0.00293268566382 0.00042250756936 +UniRef50_UPI000366463F hypothetical protein 6.45484660499e-05 6.99603741324e-06 -5.75524286367e-05 +UniRef50_L8MIC1 0.000300815987978 1.22191245849e-05 -0.000288596863393 +UniRef50_UPI00037EFF82 50S ribosomal protein L15 6.44391478779e-05 9.38662676786e-06 -5.505252111e-05 +UniRef50_Q8CRB0 Putative hemin import ATP binding protein HrtA 0.0138741025062 0.00366103831171 -0.0102130641945 +UniRef50_UPI0001BF5A9F hypothetical protein SMAC_11746, partial 0.000291611870626 0.000191151426333 -0.000100460444293 +UniRef50_G2HDN4 BRO family, N terminal domain protein 8.23436996613e-05 3.62175311863e-05 -4.6126168475e-05 +UniRef50_Q9RWY0 0.000253341511792 0.0389684411848 0.038715099673 +UniRef50_UPI0003D3911F ribosomal RNA small subunit methyltransferase h 7.62470044563e-06 0.000105312420279 9.76877198334e-05 +UniRef50_Q5HQR8 Organic hydroperoxide resistance protein like 1 0.0214197108173 0.00393010417811 -0.0174896066392 +UniRef50_X0ZSL3 Marine sediment metagenome DNA, contig 4.45398502847e-05 9.59410621346e-05 5.14012118499e-05 +UniRef50_UPI0003724FBD hypothetical protein 1.70391743684e-05 0.000293576252779 0.000276537078411 +UniRef50_A8LHS2 Response regulator receiver protein 0.00523985896798 0.000872296127457 -0.00436756284052 +UniRef50_W8H2B8 Regucalcin 0.000144630647073 0.00580405488735 0.00565942424028 +UniRef50_P52027 DNA polymerase I 0.00045441235698 0.0899671733998 0.0895127610428 +UniRef50_UPI00037D8096 hypothetical protein, partial 9.30577707388e-06 1.34185595907e-05 4.11278251682e-06 +UniRef50_E3GWV9 PP loop domain protein 0.00157722042691 0.000392013325476 -0.00118520710143 +UniRef50_Q1IZL3 LmbE like protein protein 0.000335634745854 0.0212185274381 0.0208828926922 +UniRef50_Q97SH4 PTS system mannitol specific EIICB component 0.00398424730508 0.00579947850599 0.00181523120091 +UniRef50_F3RIQ8 Membrane protein 3.16825604574e-06 0.00342474658001 0.00342157832396 +UniRef50_P11018 Major intracellular serine protease 1.31478655976e-05 0.000507387862034 0.000494239996436 +UniRef50_R8ZJ12 9.10978934231e-05 4.47562574115e-05 -4.63416360116e-05 +UniRef50_I0C7W6 Two component sensor histidine kinase 0.0153353632801 0.00643957312949 -0.00889579015061 +UniRef50_C4S8U7 0.000214075229968 0.00028214971834 6.8074488372e-05 +UniRef50_R6GJ60 Capsular polysaccharide biosynthesis protein 0.000839950042856 0.00202271033702 0.00118276029416 +UniRef50_D9RDA2 0.00911467842562 0.000773505472778 -0.00834117295284 +UniRef50_UPI0003B53675 sugar ABC transporter permease 7.98745148785e-06 1.9144667355e-05 1.11572158671e-05 +UniRef50_A5EP16 Glutathione dependent formaldehyde activating enzyme 0.000164093545092 4.69119845976e-05 -0.000117181560494 +UniRef50_UPI0003769E9C hypothetical protein 6.39090561039e-06 1.70280386359e-05 1.06371330255e-05 +UniRef50_Q1C0Q8 Hemin import ATP binding protein HmuV 9.12580062532e-06 0.00105865463681 0.00104952883618 +UniRef50_M9R9I4 Magnesium chelatase 0.00223250714965 0.000534477413705 -0.00169802973595 +UniRef50_I0C723 Sodium glutamate symport carrier protein 0.0205458579098 0.00797658452614 -0.0125692733837 +UniRef50_Q46942 0.00170256987206 0.000832525848402 -0.000870044023658 +UniRef50_J2X9Z3 2.67261143485e-06 6.23106273873e-05 5.96380159524e-05 +UniRef50_Q46941 0.000194580406623 0.000332439067766 0.000137858661143 +UniRef50_P13792 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.0384031448111 0.0123347160175 -0.0260684287936 +UniRef50_E8P9H9 0.000525056461606 0.00649211513738 0.00596705867577 +UniRef50_P0C7J3 Xanthan biosynthesis protein XanB 0.00291046553415 0.00137305064405 -0.0015374148901 +UniRef50_M0UK13 0.000122272515804 0.000125824168676 3.551652872e-06 +UniRef50_X2IBS7 Membrane protein 0.000275200193901 0.00330652620623 0.00303132601233 +UniRef50_UPI00037A8F71 hypothetical protein 5.06163482945e-06 0.000453595106846 0.000448533472017 +UniRef50_K2DQ77 GTP binding protein lepA 6.0538315917e-06 1.88146827957e-05 1.2760851204e-05 +UniRef50_UPI000400635E DNA mismatch repair protein MutT 0.000162247560728 5.75802905911e-05 -0.000104667270137 +UniRef50_UPI00038209BB transcriptional regulator 0.000183300122598 2.81049944004e-05 -0.000155195128198 +UniRef50_Q2FH55 Putative oligopeptide transport system permease protein oppB2 0.0134602893365 0.0108790275804 -0.0025812617561 +UniRef50_UPI00029DCC9C 0.000184294510213 0.000513601339319 0.000329306829106 +UniRef50_D4N0A6 Molybdenum ABC transporter, periplasmic molybdate binding protein 0.00222214593284 0.00203254794171 -0.00018959799113 +UniRef50_UPI0003B45259 alkaline phosphatase 3.50209799089e-05 0.000581034261443 0.000546013281534 +UniRef50_D5CAF9 0.000336169916204 0.000418955646732 8.2785730528e-05 +UniRef50_B2SEB4 Potassium transporting ATPase A chain 4.85881193605e-06 0.00119868000706 0.00119382119512 +UniRef50_W8T550 0.000580747675156 0.000621719379354 4.0971704198e-05 +UniRef50_UPI000478594F hypothetical protein 1.4766966765e-05 0.000209997442632 0.000195230475867 +UniRef50_I0L9E3 4.38360129026e-05 0.000424567466967 0.000380731454064 +UniRef50_A4WXR5 KDPG and KHG aldolase 0.00803880982384 0.00107310369415 -0.00696570612969 +UniRef50_A5UNE2 Lipopolysaccharide cholinephosphotransferase, LicD family 0.00107332626788 0.000634695737091 -0.000438630530789 +UniRef50_A6M165 Cellulose synthase subunit domain 0.000352031405009 0.000689366935207 0.000337335530198 +UniRef50_UPI0004790220 3 oxoacyl ACP synthase 2.98933680558e-05 9.55774408665e-05 6.56840728107e-05 +UniRef50_Q167X1 8.65145600978e-05 5.02572088566e-05 -3.62573512412e-05 +UniRef50_Q89T28 D amino acid dehydrogenase small subunit 3.13097404822e-05 2.44842131656e-05 -6.8255273166e-06 +UniRef50_U5MUN0 Methyl accepting chemotaxis protein 0.000827264212578 0.00150603995566 0.000678775743082 +UniRef50_UPI00040BC712 hypothetical protein 8.31013628726e-05 9.98554563629e-05 1.67540934903e-05 +UniRef50_F5ZGJ9 DNA binding protein 0.000544253637728 0.00205897774935 0.00151472411162 +UniRef50_W7WFV4 Methylmalonyl CoA mutase 0.00870044121497 0.0354080337189 0.0267075925039 +UniRef50_UPI0003B3E18A branched chain amino acid transporter permease subunit LivH, partial 3.19446333364e-05 0.000221280798993 0.000189336165657 +UniRef50_J0HWL6 Ornithine cyclodeaminase family protein 0.000909159244793 0.0014412000921 0.000532040847307 +UniRef50_X1DRG2 Marine sediment metagenome DNA, contig 6.11351577872e-05 8.82998539463e-05 2.71646961591e-05 +UniRef50_W8U5L3 Membrane protein 0.0155492116707 0.0064466919726 -0.0091025196981 +UniRef50_O87455 Regulatory protein LuxO 2.41881672162e-06 1.31800301911e-05 1.07612134695e-05 +UniRef50_F9YBY3 1.55893585443e-05 5.76044015639e-06 -9.82891838791e-06 +UniRef50_G2P974 0.000172563666846 0.000500513721912 0.000327950055066 +UniRef50_UPI000380AAE2 hypothetical protein 6.85204392128e-06 1.25181607095e-05 5.66611678822e-06 +UniRef50_K4QA11 0.00499251001873 0.0034618561543 -0.00153065386443 +UniRef50_S3CIA8 0.000245652487326 7.53183355323e-06 -0.000238120653773 +UniRef50_A7B8C4 0.000173126949524 2.65325371329e-05 -0.000146594412391 +UniRef50_F3ZB63 2.77464365198e-05 0.000177194666293 0.000149448229773 +UniRef50_Q8FE91 0.00201712142729 0.00338913356757 0.00137201214028 +UniRef50_F0QJX2 0.000172368031437 0.007562430502 0.00739006247056 +UniRef50_W1J5V3 4.35785298304e-06 4.85912924281e-06 5.0127625977e-07 +UniRef50_J0EVE3 0.00124235623274 0.000209537103627 -0.00103281912911 +UniRef50_Q3IVF5 0.000336010076035 0.00058292584037 0.000246915764335 +UniRef50_Q6F7V8 UPF0761 membrane protein ACIAD3168 0.000816287476459 0.00528826578293 0.00447197830647 +UniRef50_Q3IUV2 TraG 0.0486802890938 0.00904476092797 -0.0396355281658 +UniRef50_U3PCK7 Transposase, undefined 0.000169276228183 0.00359227547095 0.00342299924277 +UniRef50_A6LZB4 ApbE family lipoprotein 0.00125507977032 0.00265329601631 0.00139821624599 +UniRef50_UPI000464EBB9 peptide ABC transporter permease 1.72134221425e-05 1.92683129629e-05 2.0548908204e-06 +UniRef50_K0R9N5 0.00025073416049 0.000425014931009 0.000174280770519 +UniRef50_A6LQI1 Peptidase M23B 0.000208940584237 0.000857841600189 0.000648901015952 +UniRef50_F2U4B6 0.000106743070311 5.73293565432e-05 -4.94137137678e-05 +UniRef50_Q21CV9 0.000183412135498 3.70334792115e-05 -0.000146378656287 +UniRef50_U3TUS4 0.000360293819091 0.000565338671989 0.000205044852898 +UniRef50_G8V566 Type I restriction modification system, M subunit 0.0218564909431 0.00437172847513 -0.017484762468 +UniRef50_D4HCJ3 0.000392857701553 0.00878786675052 0.00839500904897 +UniRef50_P45604 PTS system N acetylglucosamine specific EIICBA component 0.00109046467628 0.000320648989845 -0.000769815686435 +UniRef50_J2P2T7 2.22323077368e-05 3.03513455479e-05 8.1190378111e-06 +UniRef50_P39314 Inner membrane protein YtfF 0.0026858644445 0.00169363053799 -0.00099223390651 +UniRef50_UPI00047D7CE0 hypothetical protein 5.80003017432e-06 9.61174970447e-06 3.81171953015e-06 +UniRef50_B8FMK3 1.74162867556e-05 0.000134307026745 0.000116890739989 +UniRef50_UPI00046354D6 short chain dehydrogenase 1.59145833043e-05 5.8692915881e-05 4.27783325767e-05 +UniRef50_S9R2Y6 Putative permease 3.93452167832e-05 8.83730768021e-06 -3.0507909103e-05 +UniRef50_D1YZX5 0.00308892278564 0.000503243107096 -0.00258567967854 +UniRef50_J0QYX6 0.000435236190987 0.00107387892798 0.000638642736993 +UniRef50_M9REI0 2.66447825424e-05 0.000777149224201 0.000750504441659 +UniRef50_C7ZY45 Exported protein 0.00801838242036 0.000457785718507 -0.00756059670185 +UniRef50_Q5LXB5 Cell division ATP binding protein FtsE 0.00145458271057 0.000539145993045 -0.000915436717525 +UniRef50_U1YI17 0.000145561227567 0.001221998351 0.00107643712343 +UniRef50_UPI0003C1261B 9.79014043294e-06 3.76022466229e-06 -6.02991577065e-06 +UniRef50_F9Y3X8 0.000155155384122 0.000809086863555 0.000653931479433 +UniRef50_V1L1Y8 3.64841465405e-05 1.36587356879e-05 -2.28254108526e-05 +UniRef50_Q8CNK0 Single stranded DNA binding protein 0.0094199465049 0.000521147126817 -0.00889879937808 +UniRef50_UPI000469F81E hypothetical protein 0.000745498326877 5.66940494409e-05 -0.000688804277436 +UniRef50_L2EAP1 Exodeoxyribonuclease III 3.8199370321e-05 5.11107790903e-05 1.29114087693e-05 +UniRef50_Q8TRP1 Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein 0.00726095449386 0.00632821511134 -0.00093273938252 +UniRef50_UPI0003C80514 PREDICTED 6.57768244641e-06 3.66381838626e-05 3.00605014162e-05 +UniRef50_Q9PLA5 Phosphoglucosamine mutase 3.82441062837e-06 1.02789372434e-05 6.45452661503e-06 +UniRef50_Q8DUC9 Probable 2 3 dephosphocoenzyme A synthase 0.00502967481164 0.000222042635489 -0.00480763217615 +UniRef50_UPI0004666A9C AraC family transcriptional regulator 1.3124441939e-05 3.41178328498e-05 2.09933909108e-05 +UniRef50_A6THJ4 Inosose dehydratase 0.000384721935408 0.00358732190147 0.00320259996606 +UniRef50_W6IPV9 Oligopeptide transport system permease protein oppC 0.00113678785725 0.0054378583526 0.00430107049535 +UniRef50_F2AKS8 Ferripyochelin binding protein 2.92223381621e-05 1.90221380088e-05 -1.02002001533e-05 +UniRef50_C0R046 DNA gyrase subunit A 8.49582573032e-06 1.30920927672e-05 4.59626703688e-06 +UniRef50_E8SFS5 Membrane protein 0.0102612909261 0.00158151688859 -0.00867977403751 +UniRef50_E8SMB7 2.21245509073e-05 0.000301594699307 0.0002794701484 +UniRef50_A4IQK7 NADPH dehydrogenase 0.00028473584077 0.00737483462682 0.00709009878605 +UniRef50_X5DZP9 Binding dependent transport system inner membrane component family protein 0.0137735061245 0.00670808739261 -0.00706541873189 +UniRef50_UPI0002557D62 preprotein translocase subunit SecD, partial 1.43516641128e-05 1.93930226855e-05 5.0413585727e-06 +UniRef50_Q88AR2 Amino acid acetyltransferase 0.000540439021321 0.00475576199572 0.0042153229744 +UniRef50_Q9RW26 0.000133387275209 0.0406672013277 0.0405338140525 +UniRef50_UPI00035DB8C9 hypothetical protein 5.33717784867e-05 7.98147080173e-05 2.64429295306e-05 +UniRef50_R5TC44 Nicotinate nucleotide diphosphorylase 0.000168020469813 0.00194253901995 0.00177451855014 +UniRef50_A5IQ60 Septum formation initiator 0.00616874873303 0.000475040276462 -0.00569370845657 +UniRef50_X4Z0U6 Ferredoxin NADP reductase 0.000928504219647 0.000694649297846 -0.000233854921801 +UniRef50_UPI0001FE5E48 heat shock protein 60 3.1780377307e-06 3.71904127117e-06 5.4100354047e-07 +UniRef50_UPI0003B74A81 hypothetical protein 2.74583980216e-05 4.26608729433e-06 -2.31923107273e-05 +UniRef50_Q9P2R7 Succinyl CoA ligase [ADP forming] subunit beta, mitochondrial 1.78612133872e-05 1.56592769282e-05 -2.201936459e-06 +UniRef50_Q97Q34 Phosphate import ATP binding protein PstB 2 0.0033893941053 0.00898583867128 0.00559644456598 +UniRef50_D9SQU6 Two component transcriptional regulator, AraC family 0.000706276031499 0.00026525452562 -0.000441021505879 +UniRef50_Q4K8A6 0.000400438693685 0.000178799216058 -0.000221639477627 +UniRef50_UPI00036AA061 hypothetical protein 7.45189355561e-05 1.2865573396e-05 -6.16533621601e-05 +UniRef50_UPI0003EC0186 PREDICTED 1.37311112e-05 1.51186518993e-05 1.3875406993e-06 +UniRef50_UPI00037642BA hypothetical protein 3.66397505118e-05 1.49557016639e-05 -2.16840488479e-05 +UniRef50_UPI00045EADA1 hypothetical protein 8.28959199131e-05 0.000140559587951 5.76636680379e-05 +UniRef50_UPI00034763C5 MerR family transcriptional regulator 0.000474654928799 5.78590492844e-05 -0.000416795879515 +UniRef50_G4LFL9 LysR family transcriptional regulator 0.000108472985299 0.00028214971834 0.000173676733041 +UniRef50_G7DFY8 Ribonuclease E 0.00011799255524 7.47982964581e-06 -0.000110512725594 +UniRef50_X1BCT6 Marine sediment metagenome DNA, contig 0.000115196539565 3.51263109119e-05 -8.00702286531e-05 +UniRef50_B2TK60 Probable septum site determining protein MinC 0.000502843418349 0.00399077268268 0.00348792926433 +UniRef50_L5SXQ3 Pre toxin domain with VENN motif family protein 0.000102231219307 0.00142109155358 0.00131886033427 +UniRef50_E0RLL7 0.00018933721167 0.000948500981991 0.000759163770321 +UniRef50_D5AUC1 Entericidin B 0.000143375129927 0.000334982807773 0.000191607677846 +UniRef50_A8LMQ8 Flagellar biosynthetic protein FliQ 0.000440645123179 0.00253711225891 0.00209646713573 +UniRef50_Q1RAX2 0.000149203948168 0.00211537908182 0.00196617513365 +UniRef50_I6SUA4 0.000458485006708 0.00242726059064 0.00196877558393 +UniRef50_Q8L4A1 Os01g0594900 protein 6.94743151263e-06 3.12876736575e-05 2.43402421449e-05 +UniRef50_K1YIM5 4.63979558566e-05 2.88807242417e-05 -1.75172316149e-05 +UniRef50_A0A037XEA8 0.000216621982584 3.99111620792e-05 -0.000176710820505 +UniRef50_A0A024BU97 Restriction endonuclease 0.000140329363887 0.00417876325955 0.00403843389566 +UniRef50_UPI000393D62B PREDICTED 2.83298204633e-05 0.000102693012991 7.43631925277e-05 +UniRef50_A3VHI7 1.74798908723e-05 2.32430156762e-05 5.7631248039e-06 +UniRef50_Q8TL41 Histidinol dehydrogenase 0.00365126689167 0.000335743979983 -0.00331552291169 +UniRef50_R9SKI2 0.00293288380079 0.000593673877247 -0.00233920992354 +UniRef50_A6M1Y0 Helix turn helix domain containing protein, AraC type 0.000268354968373 0.00107998063921 0.000811625670837 +UniRef50_B2UPP6 Serine tRNA ligase 4.31440833953e-06 6.56981880839e-06 2.25541046886e-06 +UniRef50_A0A017HRP7 0.00149301516771 0.000382699833941 -0.00111031533377 +UniRef50_Q3AC06 Orotidine 5 phosphate decarboxylase 8.31233803921e-06 1.23476307987e-05 4.03529275949e-06 +UniRef50_UPI000379A499 hypothetical protein 2.26629214133e-05 9.42306533443e-05 7.1567731931e-05 +UniRef50_V9VQ76 0.000164209898081 0.000102302314553 -6.1907583528e-05 +UniRef50_UPI000369122A MULTISPECIES 2.16098754762e-06 0.000238331544246 0.000236170556698 +UniRef50_UPI00037FB80C hypothetical protein 0.000105717783489 0.000494455970948 0.000388738187459 +UniRef50_G7VQW0 Transcriptional regulator 0.000680605380771 0.000321578989328 -0.000359026391443 +UniRef50_M9J5S9 Molybdopterin binding domain of aldehyde dehydrogenase family protein 0.0012460194578 0.0012513975607 5.3781029e-06 +UniRef50_S5CX29 Tfp pilus assembly protein PilN 0.000187623644098 0.00912633259005 0.00893870894595 +UniRef50_Q4FUV6 Ribonuclease 3 6.49555865574e-06 9.10848474903e-06 2.61292609329e-06 +UniRef50_D4HD89 ABC transporter, ATP binding protein 0.000269028562208 0.00295446087741 0.0026854323152 +UniRef50_P0ABW6 0.00307234031678 0.00600681288588 0.0029344725691 +UniRef50_Q4FQY1 Kef type potassium proton antiporter, CPA2 family 0.000360080554404 0.00653011483829 0.00617003428389 +UniRef50_S5YCT9 Phage terminase, large subunit 0.00630700988258 0.00201019547971 -0.00429681440287 +UniRef50_I0ESR9 Outer membrane protein 0.000178339837253 0.00157467049693 0.00139633065968 +UniRef50_UPI000409D90E anthranilate synthase 6.57649524542e-06 4.46571148272e-05 3.80806195818e-05 +UniRef50_D8TK47 9.0201762821e-07 3.43064572641e-06 2.5286280982e-06 +UniRef50_A5UP23 Predicted type II restriction enzyme, methylase subunit 0.00250715628528 0.000589895765484 -0.0019172605198 +UniRef50_Q1GRL4 0.000316021986139 0.00036288234313 4.6860356991e-05 +UniRef50_L1KBI7 0.00336425283838 0.00186515813808 -0.0014990947003 +UniRef50_Q5HXV5 7.44019142805e-05 0.000149458102594 7.50561883135e-05 +UniRef50_C5N3V2 0.00378038822699 0.000513594269898 -0.00326679395709 +UniRef50_A4WRE5 0.0005906929177 0.000199126531826 -0.000391566385874 +UniRef50_UPI00020002D3 putative PucR family transcriptional regulator 0.000147510901346 0.000369083844231 0.000221572942885 +UniRef50_Q2SSX9 Thymidine kinase 1.66097988762e-05 2.1055012477e-05 4.4452136008e-06 +UniRef50_I7ZF55 0.00013644086975 0.000123103691313 -1.3337178437e-05 +UniRef50_P44988 Probable 3 keto L gulonate 6 phosphate decarboxylase 3.29877872758e-05 0.000101936148713 6.89483614372e-05 +UniRef50_Q2FKF1 HTH type transcriptional regulator NorG 0.0140365423594 0.00185704148664 -0.0121795008728 +UniRef50_A5MZU0 Carbamoyl phosphate synthase large chain 0.0206365472876 0.0072008959981 -0.0134356512895 +UniRef50_X1FQR4 Marine sediment metagenome DNA, contig 0.00242676766694 0.000622600699033 -0.00180416696791 +UniRef50_UPI0003C7D137 GntR family transcriptional regulator, partial 1.74753803149e-05 4.29016648114e-05 2.54262844965e-05 +UniRef50_UPI00038107A2 hypothetical protein 2.94353631654e-05 3.21249766244e-05 2.689613459e-06 +UniRef50_UPI00036F8AFA hypothetical protein 4.08608974045e-06 5.77075298785e-06 1.6846632474e-06 +UniRef50_P48992 Glucose 6 phosphate 1 dehydrogenase 4.34300583625e-06 6.9809375984e-06 2.63793176215e-06 +UniRef50_UPI00037C824E hypothetical protein 3.17098043384e-06 5.55708393328e-06 2.38610349944e-06 +UniRef50_UPI00035C9A62 hypothetical protein 1.09973915859e-05 5.99502023838e-06 -5.00237134752e-06 +UniRef50_A0A023KTG8 0.000914858537385 0.000624354449424 -0.000290504087961 +UniRef50_P56467 Bifunctional protein FolD 0.00214238819437 0.00293889780919 0.00079650961482 +UniRef50_A6LWE6 MATE efflux family protein 0.000272638384566 0.00175375667244 0.00148111828787 +UniRef50_Q5E4Y6 Multidrug resistance protein NorM 0.0038373497558 0.00101723733223 -0.00282011242357 +UniRef50_U7Q105 0.000248195205855 0.000124914957604 -0.000123280248251 +UniRef50_X6C2W9 0.000310115802854 0.000114983011246 -0.000195132791608 +UniRef50_G2BBB9 Putative nucleoside transporter yegT 0.00171577862372 0.000439834156204 -0.00127594446752 +UniRef50_X6GIM5 0.000130112802013 6.44902103573e-05 -6.56225916557e-05 +UniRef50_O88167 0.00221287060048 0.000554384822661 -0.00165848577782 +UniRef50_U5MKZ1 0.000229061253196 0.000348014976398 0.000118953723202 +UniRef50_J7RAK2 0.000317215116685 0.000446322476372 0.000129107359687 +UniRef50_Q8CMQ9 Integrase like protein 0.0113498716223 0.00280029459856 -0.00854957702374 +UniRef50_F8FIU0 Fibronectin type III domain protein 8.53996801325e-07 6.67878014752e-06 5.82478334619e-06 +UniRef50_P60620 Cytochrome c oxidase subunit 1 8.93576510755e-06 1.54255874919e-05 6.48982238435e-06 +UniRef50_Q51281 SiaD protein 0.000279766792204 0.00306552384774 0.00278575705554 +UniRef50_UPI000361F695 hypothetical protein 7.44892389863e-06 9.42670065707e-05 8.68180826721e-05 +UniRef50_UPI0003650B5E membrane protein 4.31011317786e-05 2.96292610492e-05 -1.34718707294e-05 +UniRef50_V6PWB3 Putative hydroxylase 0.000272691389861 0.000117875560339 -0.000154815829522 +UniRef50_Q5HQD3 0.00182654510736 0.00563515862993 0.00380861352257 +UniRef50_Q7VF14 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 8.76515453935e-05 0.00323515807234 0.00314750652695 +UniRef50_B0VKD0 7.58511699003e-05 0.00777058920826 0.00769473803836 +UniRef50_Q6G7H4 Pyrimidine nucleoside phosphorylase 0.0122171458195 0.00586089131741 -0.00635625450209 +UniRef50_Q8FJZ8 Anaerobic C4 dicarboxylate transporter DcuC 0.00352193410469 0.00116831931997 -0.00235361478472 +UniRef50_UPI0003B4CAB0 aldolase 9.76479805642e-05 1.28743834611e-05 -8.47735971031e-05 +UniRef50_UPI000373CDB9 hypothetical protein 4.85989041993e-05 0.000143305684582 9.47067803827e-05 +UniRef50_H5TWV5 6.02360653771e-06 0.000697741563537 0.000691717956999 +UniRef50_C3AIA3 Tetracycline resistance protein 0.0103959215818 0.00155327560326 -0.00884264597854 +UniRef50_P07959 Methyl coenzyme M reductase operon protein C 0.00416449740632 0.000727032411488 -0.00343746499483 +UniRef50_UPI0003C12BE2 1.29003850737e-06 2.13090961836e-05 2.00190576762e-05 +UniRef50_F2LJU7 Glycogen debranching enzyme GlgX 0.0182449848315 0.00392154396091 -0.0143234408706 +UniRef50_Q65LN0 Allantoinase 3.46025831777e-05 1.54656460807e-05 -1.9136937097e-05 +UniRef50_Q5LX31 SN glycerol 3 phosphate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 3.17856151176e-05 1.10146083009e-05 -2.07710068167e-05 +UniRef50_F2A477 2.2322410781e-05 1.2745494446e-05 -9.576916335e-06 +UniRef50_L3HWN4 Inner membrane protein ybhI 0.00122010641195 0.000455474260252 -0.000764632151698 +UniRef50_G0DSV1 0.00068741921812 0.00454627958737 0.00385886036925 +UniRef50_B8EJI8 0.00304944529445 0.00181366132848 -0.00123578396597 +UniRef50_Q9CNG8 Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase 0.00317611417474 0.000903741174027 -0.00227237300071 +UniRef50_E3I7F3 Cobyrinic acid ac diamide synthase 6.51188190487e-06 2.9604269619e-05 2.30923877141e-05 +UniRef50_S3AZM5 5.73249026795e-06 0.000143411487562 0.000137678997294 +UniRef50_Q7VK29 Cysteine synthase 0.000124037017145 0.000809235523947 0.000685198506802 +UniRef50_X1PWX6 Marine sediment metagenome DNA, contig 0.000203948557329 2.91759596936e-05 -0.000174772597635 +UniRef50_A5UP33 Smf protein 0.00237045253521 0.000628329949776 -0.00174212258543 +UniRef50_A5UMV5 Glycosyltransferase, GT2 family 0.00311328702917 0.000393755606923 -0.00271953142225 +UniRef50_Q9M2W3 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 2 8.90651653809e-06 4.08553745248e-05 3.19488579867e-05 +UniRef50_M9VF88 NADH 0.000248346045292 0.00517352204749 0.0049251760022 +UniRef50_I0C542 Glucosyltransferase 0.00702717732491 0.00186684014285 -0.00516033718206 +UniRef50_C6XR84 NAD NADP transhydrogenase alpha subunit like protein 3.375892779e-05 2.75114240181e-05 -6.2475037719e-06 +UniRef50_A6T5N6 Chaperone protein HtpG 0.00295740182287 0.00203979767318 -0.00091760414969 +UniRef50_UPI0003502022 PREDICTED 6.59694442395e-06 5.10526363105e-05 4.44556918865e-05 +UniRef50_UPI00036716A7 hypothetical protein 0.00034260898122 0.000206929462571 -0.000135679518649 +UniRef50_UPI000273E85C 1.66710369258e-05 1.32735879763e-05 -3.3974489495e-06 +UniRef50_D4HEW0 2.2641612484e-05 7.59766278309e-05 5.33350153469e-05 +UniRef50_A3PP38 D12 class N6 adenine specific DNA methyltransferase 0.0295629643443 0.00819118328052 -0.0213717810638 +UniRef50_Q9C667 Chaperonin 60 subunit beta 4, chloroplastic 0.000654434900095 0.000242194181819 -0.000412240718276 +UniRef50_A3PIP1 Response regulator receiver protein 0.0105161430133 0.000528925442146 -0.00998721757115 +UniRef50_G8TK26 RNA splicing ligase RtcB 8.2002749205e-05 0.0149749020992 0.01489289935 +UniRef50_O67606 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 6.98981697952e-06 3.67666856289e-06 -3.31314841663e-06 +UniRef50_UPI0003478999 hypothetical protein 0.000108983575444 5.82778421565e-05 -5.07057332875e-05 +UniRef50_D6SIH2 0.00773108576611 0.000431119277652 -0.00729996648846 +UniRef50_F2ILR6 3.67618153701e-05 0.000181335033527 0.000144573218157 +UniRef50_Q98M95 Glutamyl tRNA amidotransferase subunit A 0.000237147733297 0.00321669961322 0.00297955187992 +UniRef50_UPI000006751A nitrogen regulatory protein PII like protein 2.90375352569e-05 0.000316559149621 0.000287521614364 +UniRef50_U7GB94 0.000209100794515 7.97531594149e-05 -0.0001293476351 +UniRef50_Q9RZM6 0.000335389401508 0.0308125016165 0.030477112215 +UniRef50_Q9RZM4 2.93440201024e-05 0.0182123707272 0.0181830267071 +UniRef50_D9UC90 Primosome assembly protein 5.36994430255e-05 0.000192120849322 0.000138421406296 +UniRef50_F9VK25 Stage IV sporulation protein B 0.000237593333424 0.00015680533019 -8.0788003234e-05 +UniRef50_A6M0K3 Cell wall hydrolase autolysin 0.000159951690188 0.00144597104386 0.00128601935367 +UniRef50_P10802 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 6.3301171976e-05 5.15507726424e-06 -5.81460947118e-05 +UniRef50_Q9LFG2 Diaminopimelate epimerase, chloroplastic 3.85265588537e-06 5.321586737e-05 4.93632114846e-05 +UniRef50_UPI00037D35D7 hypothetical protein 5.04826590268e-06 5.81211378162e-06 7.6384787894e-07 +UniRef50_P37252 Acetolactate synthase small subunit 0.00933676689548 0.00595234761442 -0.00338441928106 +UniRef50_M4K5M0 ParB family protein 0.000130417110365 2.66638975414e-05 -0.000103753212824 +UniRef50_L7WU10 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.0229378562368 0.00185423249822 -0.0210836237386 +UniRef50_Q58210 0.00333113857765 0.000994409133935 -0.00233672944371 +UniRef50_Q57240 0.00285942248103 0.000705470199178 -0.00215395228185 +UniRef50_UPI000380CA19 hypothetical protein 0.000670725298533 6.6742054874e-05 -0.000603983243659 +UniRef50_D1BKQ4 H+ gluconate symporter family protein 0.0010519512834 0.00100359164114 -4.835964226e-05 +UniRef50_A0A011PNK5 0.000344156712882 3.99706182979e-05 -0.000304186094584 +UniRef50_Q1QEV4 FAD linked oxidase like protein 0.000151593959689 0.0011586618294 0.00100706786971 +UniRef50_W7W9I9 0.000112080480659 3.27773555248e-05 -7.93031251342e-05 +UniRef50_K2EIE6 0.000115988662284 1.71528319744e-05 -9.88358303096e-05 +UniRef50_UPI000369EE8C hypothetical protein, partial 3.85010404535e-05 8.63873367583e-05 4.78862963048e-05 +UniRef50_Q2JXY9 Argininosuccinate lyase 9.15670852882e-06 0.000960227028292 0.000951070319763 +UniRef50_UPI00047276FD hypothetical protein 2.240771927e-05 3.04648974198e-05 8.0571781498e-06 +UniRef50_B6J8V2 Ribosomal RNA small subunit methyltransferase G 3.73457988256e-05 3.75329934262e-05 1.871946006e-07 +UniRef50_G6EGC5 Transposase orfA IS5 family element 0.000131747955477 3.54893419419e-05 -9.62586135351e-05 +UniRef50_A6M244 ROK family protein 0.000395140146384 0.00126035496861 0.000865214822226 +UniRef50_UPI0003B46258 MerR family transcriptional regulator 1.02186792765e-05 3.10362588046e-05 2.08175795281e-05 +UniRef50_T1Y643 Homoserine O acetyltransferase 0.0220777961045 0.00567906340118 -0.0163987327033 +UniRef50_Q67TJ2 Glutamate tRNA ligase 9.0908765729e-06 5.39233110824e-06 -3.69854546466e-06 +UniRef50_Q28NX6 Peptidase C26 0.00376031513301 0.000221764734821 -0.00353855039819 +UniRef50_B5I692 FemAB family protein 0.000104277897476 0.00524993033346 0.00514565243598 +UniRef50_UPI0003FF96A6 acetoin dehydrogenase 5.91213572171e-06 6.65310139728e-06 7.4096567557e-07 +UniRef50_G7U900 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.000324076642087 0.00501435530289 0.0046902786608 +UniRef50_UPI0002BB164C hypothetical protein, partial 0.000752760874512 3.10622231675e-05 -0.000721698651345 +UniRef50_R9ZKB9 0.000632778810663 0.000157923371754 -0.000474855438909 +UniRef50_UPI00036951EF hypothetical protein 0.000114224825458 1.87470825162e-05 -9.54777429418e-05 +UniRef50_UPI00029AC63E lipoprotein 0.00022402741466 0.00029801493067 7.398751601e-05 +UniRef50_O28869 0.00345681576594 0.000270106742557 -0.00318670902338 +UniRef50_Q5KVS7 Glucose 6 phosphate isomerase 0.0196472311772 0.00431797941711 -0.0153292517601 +UniRef50_A5N4G1 Predicted exonuclease, sbcD related 0.000184589725595 0.00202557158473 0.00184098185913 +UniRef50_A6LQF1 Cyanophycin synthetase 0.000383209800242 0.00149553764633 0.00111232784609 +UniRef50_UPI000237D1A0 glycosyl transferase family 2 2.34578425823e-06 1.45546533979e-05 1.22088691397e-05 +UniRef50_B9EA45 0.0222995927599 0.00598240256256 -0.0163171901973 +UniRef50_UPI000367BC1F hypothetical protein 1.3456992275e-05 4.51487370868e-05 3.16917448118e-05 +UniRef50_A6QFG9 0.00120786987179 7.80723290971e-05 -0.00112979754269 +UniRef50_UPI0001B411A5 hypothetical protein 9.64347673031e-06 8.33195899491e-05 7.36761132188e-05 +UniRef50_F0P7Q5 0.0160609135859 0.00491912013685 -0.0111417934491 +UniRef50_UPI000441F369 PREDICTED 6.33286972501e-05 1.31135639454e-05 -5.02151333047e-05 +UniRef50_A0A008L098 0.00222858040339 9.73231091071e-05 -0.00213125729428 +UniRef50_A0A023RT67 Recombinase RecJ 0.000428290547263 0.0074692410761 0.00704095052884 +UniRef50_UPI0003AD2C67 hypothetical protein 1.7277101794e-05 1.61649365713e-05 -1.1121652227e-06 +UniRef50_V6AFL3 Adenylate cyclase ExoY 0.000138593579664 0.00019716638215 5.8572802486e-05 +UniRef50_D4C552 0.000190566528155 3.92674169929e-05 -0.000151299111162 +UniRef50_UPI00045E7BD4 hypothetical protein 1.81398285667e-05 0.000196590260626 0.000178450432059 +UniRef50_N8QX29 Xanthine dehydrogenase, molybdopterin binding subunit 0.000104910389847 0.00467287113743 0.00456796074758 +UniRef50_Q8DJI6 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.58099323551e-05 5.2057926529e-05 2.62479941739e-05 +UniRef50_UPI00039EE060 ABC transporter 3.88789797729e-05 9.2715503884e-06 -2.96074293845e-05 +UniRef50_UPI000367431C hypothetical protein 4.24488767584e-05 7.02169458706e-05 2.77680691122e-05 +UniRef50_UPI00046A42D3 chorismate synthase 3.36033416549e-05 0.000236886933603 0.000203283591948 +UniRef50_A8ZRA0 5.31940108974e-05 0.000435891815777 0.00038269780488 +UniRef50_UPI00035FEBAF hypothetical protein 8.07162110912e-06 1.62704253049e-05 8.19880419578e-06 +UniRef50_G2KPL2 Peptidase family protein 0.00667241015808 0.00039771085885 -0.00627469929923 +UniRef50_T2NPH9 Replication initiator protein A 1.06512431815e-05 3.93353567687e-06 -6.71770750463e-06 +UniRef50_UPI00037D884A hypothetical protein 7.32418851186e-06 8.82000246976e-06 1.4958139579e-06 +UniRef50_I0JNK1 1.6322291331e-05 0.000337185199121 0.00032086290779 +UniRef50_D9XJC0 Membrane protein 2.31089126233e-05 0.000178491167535 0.000155382254912 +UniRef50_I8T5U4 6.88107187659e-06 9.41439292289e-06 2.5333210463e-06 +UniRef50_V9U5D1 Glucose dehydrogenase, PQQ dependent 0.000107996423873 0.000175601094017 6.7604670144e-05 +UniRef50_Q4EGL3 0.000823817679494 0.000668157208554 -0.00015566047094 +UniRef50_B2SN64 Transposase 4.3793530486e-05 4.66550276483e-05 2.8614971623e-06 +UniRef50_E7C3H5 3.16452068409e-05 7.80869650284e-05 4.64417581875e-05 +UniRef50_O26742 Amidophosphoribosyltransferase 0.0050534274218 0.000462455283042 -0.00459097213876 +UniRef50_Q8G4N5 Glucosamine 6 phosphate deaminase 0.000147072463189 0.0092741485904 0.00912707612721 +UniRef50_Q7NIN3 Glr2150 protein 0.000102304241555 2.40424478018e-05 -7.82617937532e-05 +UniRef50_W1WKJ1 0.000397970577398 0.000216837997998 -0.0001811325794 +UniRef50_A0A031MHL6 Cell envelope biogenesis protein AsmA 2.99540603059e-06 3.65767464293e-06 6.6226861234e-07 +UniRef50_D5BS30 Sigma 54 factor, interaction domain containing protein 0.000700330193782 0.000379545576868 -0.000320784616914 +UniRef50_Q3J0T0 0.000646997659652 0.000142895179933 -0.000504102479719 +UniRef50_A6LQ65 Methyl accepting chemotaxis sensory transducer 0.000365981802222 0.00140646844007 0.00104048663785 +UniRef50_A4X0R7 0.00644322093392 0.00160181958655 -0.00484140134737 +UniRef50_O24840 Vanillate O demethylase oxidoreductase 0.000314880505132 0.00527513316205 0.00496025265692 +UniRef50_UPI00046C42D9 hypothetical protein 7.14613610598e-05 2.88729842449e-05 -4.25883768149e-05 +UniRef50_B0VB22 9.88183216845e-05 0.0041347927619 0.00403597444022 +UniRef50_B0VB20 0.000318538859112 0.00626094244143 0.00594240358232 +UniRef50_A9BPH5 Short chain dehydrogenase reductase SDR 0.000705800219024 0.00170343325922 0.000997633040196 +UniRef50_P0A9W9 Protein YrdA 0.00655498018095 0.000714475899663 -0.00584050428129 +UniRef50_A5W6Z8 Secretion protein HlyD family protein 0.00028106402456 0.000690722597151 0.000409658572591 +UniRef50_A0A010CI18 NADH Ubiquinone plastoquinone , various chains family protein 4.12402755456e-05 0.00821939322886 0.00817815295331 +UniRef50_UPI0003751049 hypothetical protein 0.00010104579499 7.51811001052e-05 -2.58646948848e-05 +UniRef50_Q9HT80 DNA polymerase I 0.00103406233443 0.00043250494265 -0.00060155739178 +UniRef50_T1Y610 0.000146545134284 0.00613152149577 0.00598497636149 +UniRef50_C5N439 0.000235292073609 0.000171647324285 -6.3644749324e-05 +UniRef50_Q5HL38 0.0110486985956 0.00428705518929 -0.00676164340631 +UniRef50_A8A3U8 0.000719696361998 8.60666818562e-05 -0.000633629680142 +UniRef50_UPI000472CA5C hypothetical protein 6.43896811173e-06 8.62242754956e-06 2.18345943783e-06 +UniRef50_UPI00029B279A Multidrug resistance protein B 6.0510122889e-05 6.15763859342e-05 1.0662630452e-06 +UniRef50_A1ITE9 0.000126319946328 0.00275991484761 0.00263359490128 +UniRef50_D3QEC0 0.0163901254999 0.00960004716909 -0.00679007833081 +UniRef50_D9PI46 Anaerobic ribonucleoside triphosphate reductase 7.5949307983e-06 4.60032424054e-05 3.84083116071e-05 +UniRef50_A5N7H7 Elongation factor P 1.55968502521e-05 0.0426891304434 0.0426735335931 +UniRef50_UPI00047B3307 2 oxoglutarate dehydrogenase 7.76820426213e-06 1.85318109727e-05 1.07636067106e-05 +UniRef50_UPI0002E03285 DNA invertase 2.54251917311e-05 3.57471469051e-05 1.0321955174e-05 +UniRef50_A0JUR7 0.00129515090857 0.000138863654487 -0.00115628725408 +UniRef50_Q5PD59 1 deoxy D xylulose 5 phosphate reductoisomerase 0.0037103666585 0.000341117440018 -0.00336924921848 +UniRef50_A5UN26 Adhesin like protein 0.0029855196713 0.000614581668948 -0.00237093800235 +UniRef50_A9M0Z2 Transcriptional regulator, GntR family 0.000368279987221 0.00487170587606 0.00450342588884 +UniRef50_Q97FJ7 Histidine tRNA ligase 0.00029003408909 0.00239699428721 0.00210696019812 +UniRef50_UPI00035948EC PREDICTED 0.000195795314811 3.77195549588e-05 -0.000158075759852 +UniRef50_A9VXT4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.31172798897e-05 1.05140873988e-05 -2.6031924909e-06 +UniRef50_P75683 0.00468534609453 0.000317066161402 -0.00436827993313 +UniRef50_I6XWT7 Putative membrane protein 4.08456250764e-06 4.00216596027e-05 3.59370970951e-05 +UniRef50_Q9K9Y6 Methionyl tRNA formyltransferase 7.07292589424e-05 0.00290777729888 0.00283704803994 +UniRef50_UPI00034BF683 hypothetical protein 1.49939838868e-05 0.000449191572737 0.00043419758885 +UniRef50_Q72IZ2 3 dehydroquinate dehydratase 9.07561168501e-06 0.000261791661786 0.000252716050101 +UniRef50_A3U3D3 Plasma membrane H+ transporting two sector ATPase, C subunit 0.000114228248787 7.14485615967e-06 -0.000107083392627 +UniRef50_Q9RYR1 Drug transport protein, putative 0.000167974581064 0.0463035166276 0.0461355420465 +UniRef50_A7WZL5 NADPH dependent 7 cyano 7 deazaguanine reductase 0.00775421760795 0.00387249937466 -0.00388171823329 +UniRef50_UPI0003705A0C hypothetical protein 0.000175433454206 2.96093308216e-05 -0.000145824123384 +UniRef50_UPI0003B754B6 ribonucleotide reductase 0.000144850145886 4.33279484981e-05 -0.000101522197388 +UniRef50_Q6MRB4 Peptidyl prolyl cis trans isomerase 0.000386504425449 0.00115397339753 0.000767468972081 +UniRef50_P76115 Probable TonB dependent receptor YncD 0.00295143498858 0.000505566997642 -0.00244586799094 +UniRef50_S7SQK8 7.49983968557e-05 0.000408041683551 0.000333043286695 +UniRef50_UPI000368D785 50S ribosomal protein L18 0.000291848880704 0.000374913687894 8.306480719e-05 +UniRef50_F0L6J1 Phage head tail adaptor, putative 0.000147494199766 3.63863583542e-05 -0.000111107841412 +UniRef50_C3MPM7 Putative homocitrate synthase 5.63669371205e-06 6.23696139638e-06 6.0026768433e-07 +UniRef50_W7IM88 Basic proline rich protein 0.000409832247236 0.00121088808614 0.000801055838904 +UniRef50_M7E5A1 Transcriptional regulator 0.00220494730898 0.00237547100366 0.00017052369468 +UniRef50_Q8EU05 Chaperone protein ClpB 0.0247646079631 0.00952868829424 -0.0152359196689 +UniRef50_W8YJN0 1.38016112723e-05 3.88517871222e-06 -9.91643256008e-06 +UniRef50_B8HD15 DNA directed RNA polymerase subunit beta 1.12081497368e-06 2.1767736576e-06 1.05595868392e-06 +UniRef50_Q2SLW2 0.0128722193078 0.00348560611979 -0.00938661318801 +UniRef50_N6V4C3 1.5897912198e-05 3.14331906628e-05 1.55352784648e-05 +UniRef50_F9Z195 General stress protein 18 0.00153185020708 0.00212919752469 0.00059734731761 +UniRef50_D7C5U0 Putative transposase 0.00014173441384 2.56217850212e-05 -0.000116112628819 +UniRef50_Q112U2 2 isopropylmalate synthase 8.42501691609e-06 7.14928699111e-06 -1.27572992498e-06 +UniRef50_W8ELK9 0.000283824051773 0.0327675493836 0.0324837253318 +UniRef50_Q8REI2 Phosphoenolpyruvate carboxykinase [ATP] 6.7519069994e-05 0.000232572673693 0.000165053603699 +UniRef50_P66796 Transcriptional regulatory protein QseB 0.00539811051595 0.00100044731139 -0.00439766320456 +UniRef50_A4WSD0 Peptidase M10, serralysin like protein 0.00521191045347 0.000993631563196 -0.00421827889027 +UniRef50_UPI000289FD65 4 aminobutyrate aminotransferase 1.81435147512e-05 4.14596367657e-05 2.33161220145e-05 +UniRef50_G7TM97 Transposase 8.06649017537e-05 8.07928527599e-05 1.279510062e-07 +UniRef50_UPI000477CB4F competence protein 1.67072136466e-05 5.16583603867e-05 3.49511467401e-05 +UniRef50_UPI00047E2083 DNA methyltransferase 0.000260768841586 3.669612539e-05 -0.000224072716196 +UniRef50_B9TL13 0.000263490443481 2.07580048946e-05 -0.000242732438586 +UniRef50_B2TY69 L ribulose 5 phosphate 3 epimerase UlaE 0.00716465716996 0.00190688735354 -0.00525776981642 +UniRef50_G6WW76 6.44473277577e-06 2.45662451119e-05 1.81215123361e-05 +UniRef50_UPI0004748BDD gamma aminobutyrate transporter 4.3059068077e-05 3.62352811614e-05 -6.8237869156e-06 +UniRef50_Q984R8 Mll7872 protein 0.00505073996962 0.00293988175331 -0.00211085821631 +UniRef50_UPI00046AA572 hypothetical protein 8.24278590113e-05 1.42468867842e-05 -6.81809722271e-05 +UniRef50_T2ERS5 ThiS family protein 0.00073597620894 0.000629609229193 -0.000106366979747 +UniRef50_A0A023B8B3 Mannitol 1 phosphate 5 dehydrogenase 0.000298279819145 0.00165305769918 0.00135477788003 +UniRef50_Q28WH8 DNA replication and repair protein RecF 0.000252315474186 0.000216085394041 -3.6230080145e-05 +UniRef50_Q5WIY8 UPF0061 protein ABC1129 0.00162702334017 0.000255280239051 -0.00137174310112 +UniRef50_T1UB30 2Fe 2S iron sulfur cluster binding domain protein 4.51718375123e-05 0.00488516038783 0.00483998855032 +UniRef50_P37348 UPF0759 protein YecE 0.00462548368307 0.00014278003475 -0.00448270364832 +UniRef50_A6LQ22 0.000114191745239 0.000593659434454 0.000479467689215 +UniRef50_Q1QJ51 Plasmid pRiA4b ORF 3 like protein 0.000737483724494 0.000181415859819 -0.000556067864675 +UniRef50_Q2G9L9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.88487480464e-05 4.38577380205e-05 2.50089899741e-05 +UniRef50_UPI0003B59A94 multifunctional thiamine phosphate pyrophosphorylase synthase phosphomethylpyrimidine kinase 1.77653957336e-06 5.40618774014e-06 3.62964816678e-06 +UniRef50_R9ZI95 Permease 0.000345083417731 0.00025270440596 -9.2379011771e-05 +UniRef50_K7E1C1 4.11234176044e-05 0.000131489990034 9.03665724296e-05 +UniRef50_UPI00037069EF hypothetical protein 0.000997448646457 0.000186076506911 -0.000811372139546 +UniRef50_UPI0003A0F8A6 multidrug ABC transporter 6.52231020067e-06 9.83621338787e-06 3.3139031872e-06 +UniRef50_UPI000366C76B hypothetical protein 1.72109776187e-05 2.42444752061e-05 7.0334975874e-06 +UniRef50_UPI00047A127F hypothetical protein, partial 1.03045952952e-05 5.41826658911e-06 -4.88632870609e-06 +UniRef50_N0C7C0 0.00010351544844 1.84628383033e-05 -8.50526101367e-05 +UniRef50_R5TZB6 Serine type site specific recombinase 4.66910961006e-06 6.37368521561e-05 5.9067742546e-05 +UniRef50_A6M1X4 Integral membrane sensor signal transduction histidine kinase 0.000497535274587 0.00168789813419 0.0011903628596 +UniRef50_Q3IWH8 Monosaccharide ABC transporter membrane protein, CUT2 family 0.000480805459153 0.000537102098988 5.6296639835e-05 +UniRef50_Q2JEW7 Peptide chain release factor 2 0.000324542305157 0.00715934401933 0.00683480171417 +UniRef50_UPI000378DC18 hypothetical protein 2.42674456496e-05 0.000669922351288 0.000645654905638 +UniRef50_A6LV85 Acyl CoA reductase 0.000718953346337 0.000277641058241 -0.000441312288096 +UniRef50_B9KQH0 Surface presentation of antigens protein 0.000738609622789 0.00025641974288 -0.000482189879909 +UniRef50_O34524 0.000617140576002 0.00996073330303 0.00934359272703 +UniRef50_O34528 0.0223612953812 0.0128162254107 -0.0095450699705 +UniRef50_A3K289 0.000253970181563 0.000199518510071 -5.4451671492e-05 +UniRef50_A0A024HL97 Tfp pilus assembly protein FimV like protein 0.000367197889944 0.000347124463957 -2.0073425987e-05 +UniRef50_O34399 Glutamate synthase [NADPH] small chain 0.000262874899951 0.000188549734911 -7.432516504e-05 +UniRef50_UPI000466D49C MerR family transcriptional regulator, partial 0.000148723013654 5.64077664973e-05 -9.23152471567e-05 +UniRef50_X2LHR6 Membrane protein 8.87340474343e-05 4.00246771841e-05 -4.87093702502e-05 +UniRef50_D8HHG7 Oligopeptide transport system permease protein 0.0208734744225 0.00799086548262 -0.0128826089399 +UniRef50_UPI0003678A6C hypothetical protein 0.000116784882914 0.00100274328979 0.000885958406876 +UniRef50_K4RMU3 0.000149591651585 0.00177318598734 0.00162359433575 +UniRef50_UPI0003B36F4D deoxyguanosinetriphosphate triphosphohydrolase 8.93330321074e-05 4.87592448265e-06 -8.44571076247e-05 +UniRef50_A5UKV8 Transcription factor E 0.00198145076882 0.00241596460533 0.00043451383651 +UniRef50_Q58776 Carbamoyl phosphate synthase large chain, C terminal section 3.69623660093e-06 4.61748399215e-06 9.2124739122e-07 +UniRef50_D3FXA1 Maltose 6 phosphate glucosidase 0.00035836395335 0.00096934289196 0.00061097893861 +UniRef50_Q3B5D7 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.002400849882 0.00435074489391 0.00194989501191 +UniRef50_UPI00035E5E43 phosphoadenosine phosphosulfate reductase 1.23817433671e-05 1.48557340296e-05 2.4739906625e-06 +UniRef50_T6G328 Cellulose synthase operon protein C 0.00129396281663 0.000957783908741 -0.000336178907889 +UniRef50_A3VEJ1 0.000444393589432 9.03400220697e-05 -0.000354053567362 +UniRef50_D8JH08 Glycosyltransferase 0.000103138248322 0.00541688800923 0.00531374976091 +UniRef50_U5C5S7 Diguanylate cyclase 1.09275803765e-05 2.67453879418e-05 1.58178075653e-05 +UniRef50_U6LUD4 8.92256604042e-05 2.86174308354e-06 -8.63639173207e-05 +UniRef50_UPI0003B5E99A ABC transporter ATP binding protein 4.59557131052e-05 3.73826270668e-05 -8.5730860384e-06 +UniRef50_UPI00046CEEA5 molecular chaperone DnaJ 5.95410379858e-06 1.2688863168e-05 6.73475936942e-06 +UniRef50_F0YA66 8.83478903997e-05 0.000170321170381 8.19732799813e-05 +UniRef50_UPI000334479B 0.000139007215315 1.88669000931e-05 -0.000120140315222 +UniRef50_E2X9M1 Aminotransferase ybdL 0.00184529252433 0.00286621198888 0.00102091946455 +UniRef50_K1UU32 2.50061002935e-05 0.000293455818119 0.000268449717825 +UniRef50_UPI00016A9AD4 hypothetical protein 4.0847542826e-05 0.000589767964132 0.000548920421306 +UniRef50_UPI00040938D6 hypothetical protein 0.000220482418773 0.000125058312731 -9.5424106042e-05 +UniRef50_N2SSM7 0.0019280697607 0.00082244256931 -0.00110562719139 +UniRef50_I7EXB5 Transcriptional regulator, crp family 0.0104585766102 0.00130243789297 -0.00915613871723 +UniRef50_A0A024J5P9 PT4 plasmid pSEN complete sequence 0.000138337080483 3.097870364e-05 -0.000107358376843 +UniRef50_UPI0003628CAF hypothetical protein 2.2975470911e-05 7.02839971091e-05 4.73085261981e-05 +UniRef50_UPI00046F7609 hypothetical protein 1.46937681586e-05 7.05245367116e-06 -7.64131448744e-06 +UniRef50_UPI0003B489CA osmotically inducible protein C 2.68857376963e-05 0.00041902617396 0.000392140436264 +UniRef50_A4SX51 4 hydroxy tetrahydrodipicolinate synthase 1.93366192167e-06 0.00332901239602 0.0033270787341 +UniRef50_Q7VQH3 Enolase 6.72655475916e-06 8.37025034364e-05 7.69759486772e-05 +UniRef50_UPI0003B4EABD glutathione ABC transporter ATP binding protein 3.42985529122e-05 8.74882351872e-06 -2.55497293935e-05 +UniRef50_Q6HIL6 Aminoacyl histidine dipeptidase 0.000441692564831 0.00147816165059 0.00103646908576 +UniRef50_A0A010RX66 FeS assembly SUF system protein SufT 3.47460799616e-05 1.82654595147e-05 -1.64806204469e-05 +UniRef50_Q0BZZ7 Leucyl phenylalanyl tRNA protein transferase 1.56375383004e-05 8.70577484469e-05 7.14202101465e-05 +UniRef50_E5QX84 FemAB family protein 0.00177613647485 0.000818874771081 -0.000957261703769 +UniRef50_D3RSC1 Channel protein, hemolysin III family 0.00103914905486 0.00460063178917 0.00356148273431 +UniRef50_B8DU54 N acetyl gamma glutamyl phosphate reductase 4.90738185783e-06 4.17962484976e-05 3.68888666398e-05 +UniRef50_Q32DZ9 Macrolide export ATP binding permease protein MacB 0.00245916948009 0.00751820202898 0.00505903254889 +UniRef50_Q39DM7 Lipoprotein signal peptidase 1.00534669996e-05 1.41608542239e-05 4.1073872243e-06 +UniRef50_UPI0004649C8D hypothetical protein 2.63068782168e-05 0.000448050045238 0.000421743167021 +UniRef50_UPI00047D766C hypothetical protein, partial 3.27853940596e-05 0.000121718239298 8.89328452384e-05 +UniRef50_M4R6E9 0.000120090982672 0.00887181905202 0.00875172806935 +UniRef50_Q4FLF9 0.00015664136019 0.00011206727551 -4.457408468e-05 +UniRef50_UPI000479CDCE 2 dehydro 3 deoxyglucarate aldolase 5.40681904213e-05 0.000266721665744 0.000212653475323 +UniRef50_UPI0002487D7B acetyl coenzyme A carboxylase carboxyl transferase subunit alpha, partial 4.88790991124e-05 6.98960571484e-05 2.1016958036e-05 +UniRef50_UPI000373F182 hypothetical protein 5.6295157099e-05 3.30448465982e-05 -2.32503105008e-05 +UniRef50_Q0APY8 NADH quinone oxidoreductase subunit C 2.75652124762e-05 8.26231325499e-05 5.50579200737e-05 +UniRef50_UPI0004684D4E hypothetical protein 7.90466004188e-05 6.14511739312e-06 -7.29014830257e-05 +UniRef50_UPI0003483C97 enterobactin synthase subunit E 9.13260739982e-06 9.06480870182e-06 -6.7798698e-08 +UniRef50_P98056 Cytochrome c oxidase subunit 1 homolog 0.0159992512386 0.00407442433173 -0.0119248269069 +UniRef50_C4J5K8 7.33644543172e-05 0.000110093291758 3.67288374408e-05 +UniRef50_A0A038FVW1 0.00194378103861 0.000869060161542 -0.00107472087707 +UniRef50_A5D673 Ribosomal RNA small subunit methyltransferase A 2.57680851907e-05 3.95226139847e-05 1.3754528794e-05 +UniRef50_R0VZS5 0.000272881437722 0.000840817278291 0.000567935840569 +UniRef50_A4XVG5 tRNA hydroxylase 1.74303463571e-05 2.2774140044e-05 5.3437936869e-06 +UniRef50_C1C6G4 Phosphopentomutase 9.31182504493e-06 0.00172357261924 0.0017142607942 +UniRef50_P46142 0.00326827337522 0.00326637525416 -1.89812106e-06 +UniRef50_L2FJJ5 0.000221790923321 0.000347025143457 0.000125234220136 +UniRef50_UPI0002481AA7 HNH endonuclease 6.25581804485e-05 0.000291068496274 0.000228510315825 +UniRef50_Q3ERE1 Glyoxalase family protein 2.75957091276e-05 6.53811834026e-05 3.7785474275e-05 +UniRef50_A4VFG0 DNA replication and repair protein RecF 0.00108757033358 0.000168752402972 -0.000918817930608 +UniRef50_Q7MPS9 Coenzyme A biosynthesis bifunctional protein CoaBC 4.90296427519e-06 0.00983473126448 0.0098298283002 +UniRef50_F0YFY9 Expressed protein 0.000321829127345 8.14483474937e-05 -0.000240380779851 +UniRef50_UPI000477A5E2 esterase 2.31573265716e-05 2.50088657895e-05 1.8515392179e-06 +UniRef50_R4K9X6 Histone acetyltransferase 0.00048863819959 0.00057457299213 8.593479254e-05 +UniRef50_UPI000373FF71 hypothetical protein, partial 0.000189351075232 0.00121353888747 0.00102418781224 +UniRef50_P56344 Probable sulfate thiosulfate import ATP binding protein CysA 0.000326014037735 0.00063019506874 0.000304181031005 +UniRef50_U2YS21 8.29061710019e-05 2.69220006621e-05 -5.59841703398e-05 +UniRef50_UPI0003B47B9D phosphoserine phosphatase 7.27479541771e-06 6.2176451837e-05 5.49016564193e-05 +UniRef50_D9PXN6 Predicted FMN binding protein 0.00333368724754 0.00315977803809 -0.00017390920945 +UniRef50_X7YJ52 0.000102272572425 0.000268205598858 0.000165933026433 +UniRef50_A6LZ14 Histidine kinase 0.000363552531713 0.00106260980889 0.000699057277177 +UniRef50_UPI00029B24CC ABC transporter ATP binding protein 5.23770564565e-06 1.04307660585e-05 5.19306041285e-06 +UniRef50_UPI0003B4577C glycerophosphoryl diester phosphodiesterase 1.78689747671e-05 3.6949382523e-05 1.90804077559e-05 +UniRef50_A5FIF9 Potassium transporting ATPase A chain 1.6601689039e-05 0.000636217310842 0.000619615621803 +UniRef50_R1ECI7 0.000105171558425 3.12205684646e-05 -7.39509899604e-05 +UniRef50_A5UMH5 Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein 0.00472363961608 0.000369882571866 -0.00435375704421 +UniRef50_B2V2P3 Potassium transporting ATPase B chain 1.63452256546e-05 0.002423084106 0.00240673888035 +UniRef50_C5AFT1 3.19673248271e-06 4.93265961176e-06 1.73592712905e-06 +UniRef50_I6SKB7 8.54685257742e-05 0.00025998863244 0.000174520106666 +UniRef50_UPI00047C2684 heme ABC transporter ATP binding protein, partial 2.22389484138e-05 5.89882157414e-05 3.67492673276e-05 +UniRef50_Q02D08 1.12706255176e-06 4.04873467183e-06 2.92167212007e-06 +UniRef50_T4AYR7 1.12007093861e-05 0.00058452326449 0.000573322555104 +UniRef50_P78061 Gamma glutamylputrescine synthetase PuuA 0.00277756912532 0.0010832730307 -0.00169429609462 +UniRef50_UPI000255867E 2 oxoglutarate dehydrogenase E1 component, partial 0.00104919019045 0.000250916264812 -0.000798273925638 +UniRef50_A6V9I8 Transcriptional regulator, IclR family 0.000141912025886 0.000224007614567 8.2095588681e-05 +UniRef50_UPI00047CE41F cobyrinic acid ac diamide synthase 1.03982454129e-05 0.000351779307616 0.000341381062203 +UniRef50_UPI0003B63533 hypothetical protein 2.42599647117e-06 1.81878987992e-05 1.5761902328e-05 +UniRef50_R5K0I5 Succinylglutamate desuccinylase aspartoacylase family protein 0.00071303448488 0.0011968151233 0.00048378063842 +UniRef50_F6A168 Ribose phosphate diphosphokinase 0.000121769673823 0.00506318515864 0.00494141548482 +UniRef50_E8XM67 Sugar isomerase 0.000117110441217 0.000847689409131 0.000730578967914 +UniRef50_F8I099 0.000611610658559 0.000512109893401 -9.9500765158e-05 +UniRef50_G8VD13 0.000236722445266 0.00626147268981 0.00602475024454 +UniRef50_UPI0004799DC8 hypothetical protein 0.000380379168068 0.000300859920205 -7.9519247863e-05 +UniRef50_U7XP25 0.000269414159434 8.82064208499e-05 -0.000181207738584 +UniRef50_UPI0002192501 orotidine 5 phosphate decarboxylase 2.37904616812e-05 1.87089760298e-05 -5.0814856514e-06 +UniRef50_E6MY39 Integral membrane protein, TerC family 0.000425114300719 0.00331958120825 0.00289446690753 +UniRef50_A0A011MY44 0.000419811279834 0.000213369683161 -0.000206441596673 +UniRef50_UPI00045EC444 MULTISPECIES 4.56243753824e-05 0.000178845533318 0.000133221157936 +UniRef50_P18655 Superoxide dismutase [Fe] 0.000209182091079 0.00989638475921 0.00968720266813 +UniRef50_H1XFI5 8.09693929749e-05 0.000148522370356 6.75529773811e-05 +UniRef50_G8YAV0 Piso0_003726 protein 7.5801331218e-05 6.26869973003e-05 -1.31143339177e-05 +UniRef50_N1PMQ8 0.00030640197148 4.07225282362e-05 -0.000265679443244 +UniRef50_UPI000475D591 dihydroxyacetone kinase 2.19143319423e-05 0.00140134008676 0.00137942575482 +UniRef50_C1DHH8 ATPase 0.000649131792001 0.000230416154893 -0.000418715637108 +UniRef50_A0A023LEW3 Alpha glucosidase 6.12801929925e-05 0.0052148332585 0.00515355306551 +UniRef50_Q8VKN7 6.29670387241e-06 1.07078299469e-05 4.41112607449e-06 +UniRef50_Q1RH88 Superoxide dismutase [Mn Fe] 0.0142665702873 0.00206412280495 -0.0122024474824 +UniRef50_F7XC58 9.66468652764e-05 0.000153974498951 5.73276336746e-05 +UniRef50_O29305 Putative citramalate synthase CimA 9.85587393296e-06 8.43191625646e-06 -1.4239576765e-06 +UniRef50_A0A021VTG9 0.000522850429058 5.88000292878e-05 -0.00046405039977 +UniRef50_UPI00047321C0 hypothetical protein 1.10077850133e-05 3.59148908571e-05 2.49071058438e-05 +UniRef50_UPI00016B24E2 ParBc, ParB like nuclease domain 6.13311405551e-05 0.000147060557432 8.57294168769e-05 +UniRef50_V9WPS8 Amino acid amide ABC transporter membrane protein 1, HAAT family 0.00222733025922 0.000198379278247 -0.00202895098097 +UniRef50_R0FMF6 GroEL 6.53273618061e-05 9.35560152661e-05 2.822865346e-05 +UniRef50_X7ZV72 Phosphate transport system regulatory protein PhoU 8.32713880959e-05 8.31884353647e-05 -8.29527312e-08 +UniRef50_Q0T014 Ribosomal RNA small subunit methyltransferase B 0.00120467493848 0.00106664618137 -0.00013802875711 +UniRef50_UPI0004706840 peptide ABC transporter permease 3.23218171704e-05 4.80640587833e-05 1.57422416129e-05 +UniRef50_UPI0003B45E5B DNA binding protein 7.44333343155e-05 5.2317880045e-05 -2.21154542705e-05 +UniRef50_A5UJQ1 0.00105887354879 0.00521147126815 0.00415259771936 +UniRef50_A3MIQ3 Ribosomal RNA large subunit methyltransferase E 2.21831080099e-05 1.86277336423e-05 -3.5553743676e-06 +UniRef50_UPI0000589E14 lipase precursor 3.55362576152e-05 7.2788740764e-05 3.72524831488e-05 +UniRef50_K7RQY3 0.000150274598074 0.00514991660644 0.00499964200837 +UniRef50_F5ZJA3 Sugar phosphotransferase system , fructose specific family, IIA component 0.015177861392 0.000944818631634 -0.0142330427604 +UniRef50_Q6F6T5 0.000501388787585 0.00868347257601 0.00818208378842 +UniRef50_A6LW88 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.000126138646943 0.000651658453119 0.000525519806176 +UniRef50_W0YNW4 7.01612079588e-06 2.95233096548e-05 2.25071888589e-05 +UniRef50_W4L1M8 Transposase 0.000174014206572 3.41946304079e-05 -0.000139819576164 +UniRef50_Q51553 3 hydroxydecanoyl ACP 0.00140668223391 0.000752361305051 -0.000654320928859 +UniRef50_A0A011ADX1 6.99444431263e-05 0.000212170503735 0.000142226060609 +UniRef50_UPI00037AB267 hypothetical protein, partial 5.66621318132e-05 2.49311605579e-05 -3.17309712553e-05 +UniRef50_P25737 Lysine specific permease 0.00249548155058 0.00488824239397 0.00239276084339 +UniRef50_C0RHG6 Acyl carrier protein 0.000338002579601 0.000191085208011 -0.00014691737159 +UniRef50_A4SPY8 Protoheme IX farnesyltransferase 0.00039825013826 0.000445581439861 4.7331301601e-05 +UniRef50_Q7NCB3 Histidine ammonia lyase 4.04661499628e-06 0.000134032436819 0.000129985821823 +UniRef50_D3QF58 0.0203457905748 0.00643766207458 -0.0139081285002 +UniRef50_A7GH10 Hydroxylamine reductase 0.00158530852508 0.00594621253458 0.0043609040095 +UniRef50_V4LC05 0.000798113668843 0.00710971190178 0.00631159823294 +UniRef50_I1ETG1 3.52754462037e-05 0.000169458697536 0.000134183251332 +UniRef50_Q8DT71 0.0054133210093 0.00195081796078 -0.00346250304852 +UniRef50_C8WK91 Ribonucleoside diphosphate reductase 0.000477928081877 0.00498457766182 0.00450664957994 +UniRef50_R6MV50 YhgE Pip domain containing protein 1.93807897204e-06 2.66910386231e-06 7.3102489027e-07 +UniRef50_Q1QD84 Oxidoreductase FAD NAD binding protein 0.000199376402564 0.00440452132928 0.00420514492672 +UniRef50_M1N4C4 0.000458260744925 0.00101186102153 0.000553600276605 +UniRef50_G9W9B6 Lytic murein transglycosylase A 0.000203952295823 0.000105386109817 -9.8566186006e-05 +UniRef50_UPI0003829C73 hypothetical protein 3.2324916855e-05 1.55566559619e-05 -1.67682608931e-05 +UniRef50_N1TQ93 0.00122376959817 6.87404981134e-05 -0.00115502910006 +UniRef50_P43776 Dihydropteroate synthase 1.37244210234e-05 3.83064970167e-05 2.45820759933e-05 +UniRef50_U5MM75 Penicillin binding protein 2 0.000333906849212 0.000867423522824 0.000533516673612 +UniRef50_A3JXA6 7.51889537345e-06 6.16230519746e-06 -1.35659017599e-06 +UniRef50_E7PVL4 ATP dependent RNA helicase 0.00706131630633 0.00217890348774 -0.00488241281859 +UniRef50_W5YDQ8 WGR domain protein 4.02986314239e-05 2.83023336403e-05 -1.19962977836e-05 +UniRef50_UPI00047B87BE hypothetical protein 1.03875925507e-05 1.22380565238e-05 1.8504639731e-06 +UniRef50_F5Y7Q0 0.000466097504455 0.000276147879794 -0.000189949624661 +UniRef50_P77239 Cation efflux system protein CusB 0.00140393574094 0.00125949925404 -0.0001444364869 +UniRef50_UPI0004770378 osmolarity response regulator 6.2225459383e-05 1.35064869502e-05 -4.87189724328e-05 +UniRef50_UPI0004423ADB 9.06321061685e-05 7.32655782173e-05 -1.73665279512e-05 +UniRef50_UPI0003610585 hypothetical protein 5.60287531799e-05 9.92854331527e-05 4.32566799728e-05 +UniRef50_P0AG95 Protein translocase subunit SecF 0.00305960301017 0.00116199895728 -0.00189760405289 +UniRef50_A5I292 0.00055336550322 0.000667194260053 0.000113828756833 +UniRef50_Q2YPH2 Ornithine carbamoyltransferase 0.00761994435818 0.00243608949716 -0.00518385486102 +UniRef50_UPI00037DDC0E DNA methyltransferase, partial 0.00369546221871 0.00116877074279 -0.00252669147592 +UniRef50_Q8CU98 0.00909106441186 0.00209884474821 -0.00699221966365 +UniRef50_Q8CU99 0.194123181874 0.0585038462355 -0.135619335638 +UniRef50_UPI00042902E2 stomatin 2 3.94750126377e-05 1.0054857513e-05 -2.94201551247e-05 +UniRef50_Q7VNN7 Phosphopantetheine adenylyltransferase 2.78514845551e-05 1.77881648403e-05 -1.00633197148e-05 +UniRef50_Q8CU97 0.00713801646976 0.00325368309714 -0.00388433337262 +UniRef50_U5UIZ0 2 oxoisovalerate dehydrogenase E1 component alpha subunit 0.0108042335398 0.00406414572568 -0.00674008781412 +UniRef50_E8SFA3 V5 Tpx 1 related allergen 0.00616447444 0.00176700793247 -0.00439746650753 +UniRef50_I7A5B6 0.000325418955908 0.000497724784029 0.000172305828121 +UniRef50_E7BDJ1 ISNme1 transposase 0.000191617253221 0.0235013190941 0.0233097018409 +UniRef50_Q65RB3 Histidine biosynthesis bifunctional protein HisB 5.36120946286e-05 9.21649672174e-06 -4.43955979069e-05 +UniRef50_UPI00016B21F0 TDP GLUCOSE PYROPHOSPHORYLASE, partial 0.000542746293708 6.14018303726e-05 -0.000481344463335 +UniRef50_R1FAR2 2.65458058746e-05 2.0294678588e-05 -6.2511272866e-06 +UniRef50_D9QZA2 ABC transporter related protein 0.000228715294286 0.00109114910595 0.000862433811664 +UniRef50_Q8CNH5 General stress protein 20U 0.0245898635031 0.00543483638156 -0.0191550271215 +UniRef50_UPI0004782D2D sulfite oxidase 1.40008618837e-05 0.000100779650783 8.67787888993e-05 +UniRef50_G8V268 Short chain dehydrogenase family protein 0.0107889634925 0.0045515294141 -0.0062374340784 +UniRef50_UPI00003978BA COG0488 5.08873975676e-05 4.16544520751e-05 -9.2329454925e-06 +UniRef50_Q887Q0 Alginate biosynthesis protein Alg44 0.000154496311943 0.000226585707308 7.2089395365e-05 +UniRef50_G8VAR6 Sugar transport protein 0.000234463347108 0.00163040628298 0.00139594293587 +UniRef50_Q81IT9 DEAD box ATP dependent RNA helicase CshA 0.00519852835211 0.0077568202533 0.00255829190119 +UniRef50_UPI000288104D ATP dependent DNA helicase 2.28556739016e-05 7.12821434866e-06 -1.57274595529e-05 +UniRef50_G7M9J1 Amidohydrolase 0.000305134109218 0.00189731884886 0.00159218473964 +UniRef50_V4R6B4 Inosine 5 monophosphate dehydrogenase 0.00013019737822 6.2261012161e-05 -6.7936366059e-05 +UniRef50_UPI00036700E1 hypothetical protein 5.39321625713e-06 7.64937247179e-05 7.11005084608e-05 +UniRef50_R5X6Z2 0.000210103518845 0.000870983813901 0.000660880295056 +UniRef50_A3CK29 Acetylxylan esterase, putative 0.000487193403363 0.00421733220622 0.00373013880286 +UniRef50_W4UBQ1 Vitamin B12 ABC transporter 1.93858238698e-05 0.000127925179778 0.000108539355908 +UniRef50_C1KYK6 1.50713337894e-05 0.00216175840173 0.00214668706794 +UniRef50_A6TFY7 Putative transport protein KPN78578_40470 0.00306216067479 0.00121780037178 -0.00184436030301 +UniRef50_P29914 NADH quinone oxidoreductase chain 2 0.00113355967505 0.000698912890394 -0.000434646784656 +UniRef50_D6T008 1.41876130355e-05 3.3013080963e-05 1.88254679275e-05 +UniRef50_UPI0002F8DE8C hypothetical protein 3.62073074741e-06 5.18592863425e-06 1.56519788684e-06 +UniRef50_T1XSF4 Glycine betaine transporter 0.0163029505604 0.00439381121466 -0.0119091393457 +UniRef50_V4YQV8 ABC transporter, substrate binding protein, PQQ dependent alcohol dehydrogenase system 9.35219359287e-07 6.59690003539e-06 5.6616806761e-06 +UniRef50_UPI00035E0900 hypothetical protein 1.36255076262e-05 1.26011150893e-05 -1.0243925369e-06 +UniRef50_Q2P6N2 Ribonuclease PH 5.28346737517e-05 0.00334582197184 0.00329298729809 +UniRef50_Q7CRQ0 Uronate dehydrogenase 1.03453218924e-05 2.91473906905e-05 1.88020687981e-05 +UniRef50_Q5DQH5 0.000298999396391 0.000169155317598 -0.000129844078793 +UniRef50_K0S2B3 1.24288299161e-05 7.97898855557e-05 6.73610556396e-05 +UniRef50_B9GCH9 Urease 2.56081055264e-06 3.09287380736e-05 2.8367927521e-05 +UniRef50_UPI00036688D0 hypothetical protein, partial 1.23665511716e-05 2.19155943323e-05 9.5490431607e-06 +UniRef50_UPI0002893A41 S adenosylmethionine synthetase 3.7327361855e-06 7.19002489107e-06 3.45728870557e-06 +UniRef50_W9DWH3 2.97212795959e-05 1.859095438e-05 -1.11303252159e-05 +UniRef50_M9RBV9 Putative lipoprotein 4.41649584664e-06 3.79441769438e-06 -6.2207815226e-07 +UniRef50_B2IKB4 Xylose isomerase domain protein TIM barrel 0.00686591442299 0.00204013888444 -0.00482577553855 +UniRef50_Q9HXI2 Protein translocase subunit SecF 0.00120589144382 0.000651117021025 -0.000554774422795 +UniRef50_A6LX99 Carbohydrate binding family V XII 0.00026029438181 0.0011352068553 0.00087491247349 +UniRef50_UPI00036AC2B6 MULTISPECIES 6.49018045431e-06 0.000645214290459 0.000638724110005 +UniRef50_C6SPQ0 0.00410792715755 0.00200570946546 -0.00210221769209 +UniRef50_P20901 Citrate synthase 4.37635748097e-05 7.57779212334e-05 3.20143464237e-05 +UniRef50_B6IS79 Tetratricopeptide TPR_2 1.78033394172e-06 5.23031418574e-06 3.44998024402e-06 +UniRef50_B2A466 Chromosome segregation ATPase 6.42766003199e-06 2.0853837516e-05 1.4426177484e-05 +UniRef50_Q9RX51 Malto oligosyltrehalose trehalohydrolase 7.37277322014e-05 0.02066421845 0.0205904907178 +UniRef50_B7HXK9 ThiJ pfpI family protein 2.00102803538e-05 6.21795408439e-05 4.21692604901e-05 +UniRef50_UPI000465E8C1 hypothetical protein 6.82262721579e-06 5.98594092946e-05 5.30367820788e-05 +UniRef50_UPI00041A9154 hypothetical protein 1.53355447492e-05 6.00401530763e-06 -9.33152944157e-06 +UniRef50_H5WKM1 TRAP type mannitol chloroaromatic compound transport system, large permease component 4.58660207468e-06 1.02370750727e-05 5.65047299802e-06 +UniRef50_T1ZCJ6 Transcriptional regulator 0.00683872281672 0.000891076048015 -0.0059476467687 +UniRef50_UPI0002658616 PREDICTED 5.44914868452e-06 8.53886407905e-06 3.08971539453e-06 +UniRef50_UPI000381514D hypothetical protein 1.79318855137e-06 1.75808876855e-05 1.57876991341e-05 +UniRef50_G4R209 Bacterial regulatory s, gntR family protein 0.000800116488285 0.00024712694996 -0.000552989538325 +UniRef50_Q2YVV9 Initiation control protein YabA 0.00456937495309 0.00053693946399 -0.0040324354891 +UniRef50_A3P3G4 Monooxygenase, luciferase family 0.00157239309707 0.00607328208982 0.00450088899275 +UniRef50_I3THN6 Binding protein dependent transport systems inner membrane component 0.00310029789961 0.00113621486657 -0.00196408303304 +UniRef50_F0VFF5 NLI interacting factor like phosphatase domain containing protein 1.99255694968e-06 2.69818826151e-05 2.49893256654e-05 +UniRef50_Q5XDZ5 0.00353699521576 0.00267174495306 -0.0008652502627 +UniRef50_UPI0000379B07 hypothetical protein 0.00128116530333 0.0020450329774 0.00076386767407 +UniRef50_UPI00038112F6 hypothetical protein 9.58621667602e-05 0.000217047230001 0.000121185063241 +UniRef50_Q38XG4 3 oxoacyl [acyl carrier protein] synthase 3 0.00560405357246 0.0030832132846 -0.00252084028786 +UniRef50_UPI00035F1073 hypothetical protein 1.54420326935e-05 3.77507874115e-05 2.2308754718e-05 +UniRef50_R6HUH5 9.15580637882e-06 1.67993042654e-05 7.64349788658e-06 +UniRef50_P20162 Lipopolysaccharide export system ATP binding protein LptB 3.42231861132e-05 9.16384496506e-05 5.74152635374e-05 +UniRef50_D5V8H6 Phosphomethylpyrimidine kinase 0.000552289739372 0.00164836223329 0.00109607249392 +UniRef50_U4TCC4 Putative ABC transport system, membrane domain protein 0.000100970296962 4.24728640517e-05 -5.84974329103e-05 +UniRef50_UPI00028A344D group 1 glycosyl transferase 3.03323436206e-06 7.40285640383e-06 4.36962204177e-06 +UniRef50_F4DQ72 TRAP T family transporter periplasmic binding protein 0.0163914430527 0.00284093990794 -0.0135505031448 +UniRef50_B2FK26 UvrABC system protein C 0.000928620324289 0.000753066132552 -0.000175554191737 +UniRef50_UPI0004672B58 glycolate oxidase iron sulfur subunit 1.33759029507e-05 5.52194623384e-05 4.18435593877e-05 +UniRef50_Q2NFX3 50S ribosomal protein L6 0.000946676341057 0.000344727671428 -0.000601948669629 +UniRef50_Q890U0 Butyrate kinase 0.000535450359444 0.00412890776021 0.00359345740077 +UniRef50_K0MYD7 PTS system maltose and glucose specific EIICB component 0.000494660353784 0.000625593814965 0.000130933461181 +UniRef50_P0AEL2 Formate dehydrogenase, cytochrome b556 subunit 0.00101552134653 0.002748898554 0.00173337720747 +UniRef50_P26418 Flagellar motor switch protein FliM 0.0026643008724 0.00101290041313 -0.00165140045927 +UniRef50_E4Q4K1 Transketolase domain containing protein 1.15309062367e-05 0.00306461837327 0.00305308746703 +UniRef50_UPI00047AC8D4 hypothetical protein, partial 0.000235167555767 0.000636440660992 0.000401273105225 +UniRef50_P55980 Cytotoxicity associated immunodominant antigen 0.000172201382048 0.00376872836146 0.00359652697941 +UniRef50_D8JGS8 Acyl coenzyme A synthetases AMP acid ligase 0.00017541388266 0.00447578750747 0.00430037362481 +UniRef50_B9JUC8 50S ribosomal protein L19 0.000621798491844 0.021987453924 0.0213656554322 +UniRef50_F9LQU4 GA module 0.00147859366739 0.000199877396822 -0.00127871627057 +UniRef50_H2JJ51 ABC type sugar transport system, periplasmic component 0.000624422001147 0.00155695303344 0.000932531032293 +UniRef50_UPI0004699EDF membrane protein 9.19093577645e-05 4.10418656952e-05 -5.08674920693e-05 +UniRef50_P11864 0.000682708992948 0.00134488127499 0.000662172282042 +UniRef50_P11865 0.000865714569853 0.000995158002212 0.000129443432359 +UniRef50_UPI0004769652 hypothetical protein 1.4336755179e-05 2.73751604251e-05 1.30384052461e-05 +UniRef50_V7D525 Plasmid stablization protein ParB 0.000136514167662 2.34463233671e-05 -0.000113067844295 +UniRef50_UPI00047B1BFE hypothetical protein 4.46264057572e-06 0.000260129110054 0.000255666469478 +UniRef50_E4D4Y2 0.000262751268337 0.000842051686444 0.000579300418107 +UniRef50_Q3JNS9 0.000133884330964 0.000111844075917 -2.2040255047e-05 +UniRef50_G7SP01 RNA methyltransferase, TrmH family, group 3 0.00516954919903 0.00450714301426 -0.00066240618477 +UniRef50_UPI00037014EA hypothetical protein 2.59028155949e-05 1.51935038755e-05 -1.07093117194e-05 +UniRef50_F3BU02 0.000116295926645 0.000176519422491 6.0223495846e-05 +UniRef50_UPI0003782B50 hypothetical protein 6.57519698428e-06 0.000156175431512 0.000149600234528 +UniRef50_T0UR47 Immunoreactive protein Se23.5 0.00483396161627 0.000900430925696 -0.00393353069057 +UniRef50_UPI00036E1232 hypothetical protein 3.44345458938e-05 0.000260600948924 0.00022616640303 +UniRef50_P37956 Spore photoproduct lyase 5.97618986696e-05 0.00140119876558 0.00134143686691 +UniRef50_UPI0003D02549 hypothetical protein P148_SR1C00001G0193 9.14355949142e-05 3.49863700411e-05 -5.64492248731e-05 +UniRef50_D6SE37 0.0127936422994 0.0020973798205 -0.0106962624789 +UniRef50_W4TLK1 Molybdopterin guanine dinucleotide biosynthesis protein 5.38180685637e-06 2.17521439071e-05 1.63703370507e-05 +UniRef50_UPI0003B75BA6 ribonuclease E 5.35540482193e-06 5.7626349029e-06 4.0723008097e-07 +UniRef50_Q8DWM8 Hypoxanthine guanine phosphoribosyltransferase 0.00739156066817 0.00277030711492 -0.00462125355325 +UniRef50_D3E0E5 Carbohydrate kinase 0.00457362725567 0.000550797070461 -0.00402283018521 +UniRef50_UPI000382ECE5 hypothetical protein 4.12056595105e-06 8.00567064787e-06 3.88510469682e-06 +UniRef50_Q5NLB9 Type III pantothenate kinase 0.00598425572461 0.00392081467099 -0.00206344105362 +UniRef50_H9UPU8 Ornithine decarboxylase 0.00138797794509 0.000637324316283 -0.000750653628807 +UniRef50_UPI000262887B hypothetical protein 0.000152698143544 0.000143156185816 -9.541957728e-06 +UniRef50_UPI0003B5049A glutamyl Q tRNA ligase 5.0859989265e-06 6.14164604566e-06 1.05564711916e-06 +UniRef50_UPI00035F2B7D MULTISPECIES 1.69239504734e-05 2.60180949601e-05 9.0941444867e-06 +UniRef50_O67611 Acyl carrier protein 3.39744658308e-05 0.000573118266027 0.000539143800196 +UniRef50_P65399 Molybdopterin synthase catalytic subunit 0.000869418835581 0.000413030356916 -0.000456388478665 +UniRef50_UPI000349EE05 hypothetical protein 2.84232460033e-05 4.42233820718e-05 1.58001360685e-05 +UniRef50_Q5NGP7 Arabinose 5 phosphate isomerase KdsD 0.000687776103743 0.0106283097957 0.00994053369196 +UniRef50_W7VXE4 8.66601162e-05 2.21303622308e-05 -6.45297539692e-05 +UniRef50_W1DPU9 Sulfate permease 0.000186595647056 4.31591628636e-05 -0.000143436484192 +UniRef50_R7GVB9 4.17707168415e-05 0.0017761729254 0.00173440220856 +UniRef50_A6M390 Extracellular solute binding protein, family 1 0.00114373435193 0.00148794699609 0.00034421264416 +UniRef50_UPI0003674FBC hypothetical protein 3.80295464487e-05 1.43563472677e-05 -2.3673199181e-05 +UniRef50_UPI00034FC6C5 PREDICTED 0.00157073495755 0.000651213335285 -0.000919521622265 +UniRef50_UPI00047034AE hypothetical protein 8.30920752904e-06 3.05575409045e-05 2.22483333755e-05 +UniRef50_A0A023DK19 8.2039768735e-06 3.99670790511e-05 3.17631021776e-05 +UniRef50_A4VYZ8 0.000704485664454 0.00110055914979 0.000396073485336 +UniRef50_UPI00041B2B5D hypothetical protein 1.33800869186e-05 1.85796767312e-05 5.1995898126e-06 +UniRef50_Q9RZ78 0.000291870609934 0.0325838212241 0.0322919506142 +UniRef50_D3E3Y1 Carbohydrate kinase PfkB family 0.00269331415551 0.00154760963909 -0.00114570451642 +UniRef50_J0J1A9 0.000282476263787 3.6707156532e-05 -0.000245769107255 +UniRef50_C3MH15 FAD dependent oxidoreductase 0.00105671716497 0.00065979223862 -0.00039692492635 +UniRef50_UPI00031B7DA5 hypothetical protein 4.74580212098e-05 2.58133475648e-05 -2.1644673645e-05 +UniRef50_Q3IUW1 Signal peptidase I 0.031370637953 0.00804321164022 -0.0233274263128 +UniRef50_UPI00046FFC4F hypothetical protein 1.66977899995e-05 1.28837971418e-05 -3.8139928577e-06 +UniRef50_A7X169 Endonuclease MutS2 0.0196066244824 0.00575893687812 -0.0138476876043 +UniRef50_UPI000418D073 hypothetical protein 9.73170839904e-06 1.75758794626e-05 7.84417106356e-06 +UniRef50_B9K203 0.000134336650837 0.0078502862146 0.00771594956376 +UniRef50_UPI00046E6835 ATPase AAA, partial 8.39966328859e-06 5.13050095133e-05 4.29053462247e-05 +UniRef50_UPI000360D065 hypothetical protein 5.24731810741e-06 8.48491396957e-06 3.23759586216e-06 +UniRef50_P08065 Succinate dehydrogenase flavoprotein subunit 0.0212475081267 0.00658360059387 -0.0146639075328 +UniRef50_UPI00045EC07A C4 dicarboxylate ABC transporter permease 4.26455167823e-05 1.65847410214e-05 -2.60607757609e-05 +UniRef50_UPI0002D91D3B hypothetical protein 8.49493495021e-06 8.07074546283e-05 7.22125196781e-05 +UniRef50_Q47329 UDP glucose 6 dehydrogenase 0.000858294800496 0.000274200354057 -0.000584094446439 +UniRef50_G7M577 Polysaccharide biosynthesis protein 0.00057063454556 0.00113909318059 0.00056845863503 +UniRef50_UPI0003695A84 hypothetical protein 3.40745919661e-06 4.12610186037e-06 7.1864266376e-07 +UniRef50_D7G171 2.34829077274e-05 6.52633602589e-05 4.17804525315e-05 +UniRef50_UPI0003796517 hypothetical protein 2.18775193464e-06 2.33164308894e-06 1.438911543e-07 +UniRef50_UPI000462BF9A acetyltransferase 3.01382116174e-05 6.70758170359e-05 3.69376054185e-05 +UniRef50_B7UZJ9 Transcriptional regulator MraZ 0.000540364558677 0.000538571498834 -1.793059843e-06 +UniRef50_A3DIH0 Intracellular exo alpha L arabinofuranosidase 7.91375238722e-05 0.000739866164338 0.000660728640466 +UniRef50_Q28T47 Type III pantothenate kinase 9.61497765098e-05 4.60693623508e-05 -5.0080414159e-05 +UniRef50_UPI0004005113 antibiotic ABC transporter ATP binding protein 2.88645664355e-06 8.75823510855e-06 5.871778465e-06 +UniRef50_Q2L2H8 30S ribosomal protein S12 0.00420872488711 0.00526432343014 0.00105559854303 +UniRef50_A0A3H4 Glycine betaine transport system permease protein glycine betaine binding protein 0.00473168716278 0.00438722236346 -0.00034446479932 +UniRef50_D4GNJ8 Cell division protein ZapC 0.00268252843931 0.00162642602345 -0.00105610241586 +UniRef50_I0JEM4 Tn554 related transposase A 0.0081867226448 0.00198071624306 -0.00620600640174 +UniRef50_UPI000471CC86 C4 dicarboxylate ABC transporter substrate binding protein 3.08721668324e-05 6.72910838661e-06 -2.41430584458e-05 +UniRef50_F2JJH8 MATE efflux family protein 0.000251260932248 0.00102184150622 0.000770580573972 +UniRef50_P33696 UTP glucose 1 phosphate uridylyltransferase 0.000312181500994 0.000252427381303 -5.9754119691e-05 +UniRef50_W0IWY4 Diguanylate cyclase 1.41496339625e-05 3.49943750612e-05 2.08447410987e-05 +UniRef50_Q7MHK1 Glutathione synthetase 0.00184097102953 0.00683058871325 0.00498961768372 +UniRef50_A7ZVR4 0.00108991257475 0.000273470160615 -0.000816442414135 +UniRef50_Q04GC3 Peptide chain release factor 2 0.00631072729797 0.00245048716305 -0.00386024013492 +UniRef50_A5UMV9 SsDNA binding protein 0.00440632802296 0.000798612381636 -0.00360771564132 +UniRef50_UPI00016A34A8 hypothetical protein 8.41916360891e-05 9.98477244106e-05 1.56560883215e-05 +UniRef50_Q0FMM6 Peptide ABC transporter, permease protein 0.000107220316976 6.84786750653e-05 -3.87416419107e-05 +UniRef50_UPI0002DD3A3E hypothetical protein 2.564827868e-06 1.05077288817e-05 7.9429010137e-06 +UniRef50_Q05755 Glutamate synthase [NADPH] large chain 1.17362357239e-06 1.68481138797e-06 5.1118781558e-07 +UniRef50_V7ZFF9 S methylmethionine permease 8.57273252495e-05 0.000441810187015 0.000356082861766 +UniRef50_UPI0003A4ECE6 2,5 diketo D gluconic acid reductase 5.1704642099e-06 8.24992128289e-06 3.07945707299e-06 +UniRef50_UPI0003632431 hypothetical protein, partial 4.30396635004e-05 2.34486597947e-05 -1.95910037057e-05 +UniRef50_X1G8H6 Marine sediment metagenome DNA, contig 1.09328797589e-05 0.000464078377622 0.000453145497863 +UniRef50_P45861 0.00516545488309 0.00414958312059 -0.0010158717625 +UniRef50_W5X2S2 GCN5 related N acetyltransferase 8.77308036352e-06 0.000196587916951 0.000187814836587 +UniRef50_UPI0004730E83 hypothetical protein, partial 2.01807574618e-05 4.76956682864e-05 2.75149108246e-05 +UniRef50_I7DFR8 0.00186359610009 0.000367614155849 -0.00149598194424 +UniRef50_M5PEW3 Peptide deformylase 1.44939763796e-05 2.38265177494e-05 9.3325413698e-06 +UniRef50_A6LXH7 D galactose binding periplasmic protein 0.000666796086508 0.00374530080559 0.00307850471908 +UniRef50_I6U0D0 Recombination factor protein RarA 0.00706462439946 0.000643156292659 -0.0064214681068 +UniRef50_F2ZJ87 Xanthine dehydrogenase, molybdopterin binding subunit 0.000488593589669 0.000243865345587 -0.000244728244082 +UniRef50_O68827 Chloramphenicol sensitive protein RarD 0.000424727588089 0.00031983758685 -0.000104890001239 +UniRef50_R4MXP6 PPE family protein 1.42201664571e-05 9.80437757135e-05 8.38236092564e-05 +UniRef50_E3GXP2 Phosphate ABC transporter substrate binding protein, PhoT family 0.00542133094708 0.001384335336 -0.00403699561108 +UniRef50_A3PPD1 Tripartite ATP independent periplasmic transporter, DctQ component 0.0030059536438 0.00169285565124 -0.00131309799256 +UniRef50_UPI000370C8AB 30S ribosomal protein S17 1.88580225148e-05 0.000243593165412 0.000224735142897 +UniRef50_Q180E4 Lon protease 1.49248026071e-06 5.90750029185e-06 4.41502003114e-06 +UniRef50_Q1QSI1 Guanylate kinase 0.00159402798536 1.45254142268e-05 -0.00157950257113 +UniRef50_D3HPI8 8.78659653246e-05 3.9665958339e-05 -4.82000069856e-05 +UniRef50_A5UM84 Predicted transcriptional regulator 0.00633105629086 0.000432170788082 -0.00589888550278 +UniRef50_W0RMS6 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.000266877234584 0.00683373766498 0.0065668604304 +UniRef50_D3E4F1 Metallo beta lactamase superfamily protein 0.00296417880273 0.000210940503716 -0.00275323829901 +UniRef50_P0AFE9 NADH quinone oxidoreductase subunit M 0.00371848569902 0.00162902581483 -0.00208945988419 +UniRef50_UPI0003790B90 hypothetical protein 5.27752699103e-05 3.05896969956e-05 -2.21855729147e-05 +UniRef50_Q8CYM9 1.47005293631e-05 0.0028538616029 0.00283916107354 +UniRef50_L1J8E6 4.30281224173e-06 7.08470174153e-06 2.7818894998e-06 +UniRef50_UPI0004650E5C hypothetical protein 4.63774736443e-06 3.38377515925e-05 2.92000042281e-05 +UniRef50_E6QIH1 0.000137906278467 0.00276026173784 0.00262235545937 +UniRef50_UPI00036AFD53 hypothetical protein 8.0520891536e-06 1.26569445116e-05 4.604855358e-06 +UniRef50_O25294 Cytosol aminopeptidase 8.95931935559e-05 0.00238819114931 0.00229859795575 +UniRef50_UPI0003797CF3 hypothetical protein 9.87742893972e-05 1.85687052136e-05 -8.02055841836e-05 +UniRef50_D6ZZR1 0.0011286554024 0.00136963694671 0.00024098154431 +UniRef50_P52999 Aspartate 1 decarboxylase 0.0277220728572 0.00112517414884 -0.0265968987084 +UniRef50_A3PGF4 0.00436213647065 0.000274287961482 -0.00408784850917 +UniRef50_Q2G4L5 20S proteasome, A and B subunits 0.0108578848856 0.00153620295261 -0.00932168193299 +UniRef50_UPI000347491F hypothetical protein 2.84239783412e-06 4.10718026938e-06 1.26478243526e-06 +UniRef50_UPI000234F3A3 PREDICTED 1.16056675444e-05 5.9267410198e-06 -5.6789265246e-06 +UniRef50_V5E5C8 Cold shock like protein CspD 0.000116485488852 5.57045652811e-05 -6.07809235709e-05 +UniRef50_UPI000399E7E2 succinyl CoA 7.60498476012e-06 1.13858140991e-05 3.78082933898e-06 +UniRef50_A6LSY3 Glutamyl tRNA reductase 0.000191296986929 0.00158710086841 0.00139580388148 +UniRef50_B9KS20 Sulfate transporter 0.00299997776736 0.000603376378384 -0.00239660138898 +UniRef50_UPI00047C589B hypothetical protein 3.76985388941e-05 5.9896055629e-05 2.21975167349e-05 +UniRef50_Q1IVX0 4 hydroxybenzoate polyprenyltransferase, putative 0.000162011154012 0.00297154361787 0.00280953246386 +UniRef50_Q8N9Z2 Coiled coil domain containing protein 71L 5.49526369223e-05 0.000138718082801 8.37654458787e-05 +UniRef50_P0AF49 UPF0047 protein YjbQ 0.000298817471956 0.00746628364228 0.00716746617032 +UniRef50_UPI00041F306E hypothetical protein 6.76128964581e-06 6.04410446177e-06 -7.1718518404e-07 +UniRef50_Q1MPW7 Glutamate 1 semialdehyde 2,1 aminomutase 8.09790346541e-06 1.19060145757e-05 3.80811111029e-06 +UniRef50_F4DR22 0.00051562212206 0.000351652701464 -0.000163969420596 +UniRef50_UPI0003002FCB hypothetical protein 1.85367447446e-05 1.52648487296e-06 -1.70102598716e-05 +UniRef50_V9VS67 Peptidase 1.38258308563e-06 2.66594762073e-05 2.52768931217e-05 +UniRef50_A0RC17 Xanthine phosphoribosyltransferase 0.0021214938077 0.0240460077578 0.0219245139501 +UniRef50_A6USH1 UPF0285 protein Mevan_1551 0.00322341183292 0.000199538314317 -0.0030238735186 +UniRef50_S1PBL6 Inner membrane protein yiaV 0.00144751323792 0.000947729049242 -0.000499784188678 +UniRef50_F9NYN9 6.28810414515e-06 1.67465848469e-05 1.04584807017e-05 +UniRef50_A6M320 Putative competence damage inducible protein 0.00207733092326 0.00174666633017 -0.00033066459309 +UniRef50_UPI000474352D glyoxalase I, partial 0.000525028812531 0.000132045260154 -0.000392983552377 +UniRef50_A4WQQ4 Aminotransferase, class V 0.0015254632215 0.000857079650752 -0.000668383570748 +UniRef50_Q24X66 tRNA dimethylallyltransferase 1.80794811273e-05 1.17680862471e-05 -6.3113948802e-06 +UniRef50_R6FXN6 Pseudouridine synthase 0.000253839093847 0.00059588979608 0.000342050702233 +UniRef50_V5LNW1 Putative membrane protein 7.54395132305e-06 9.19685235493e-06 1.65290103188e-06 +UniRef50_Q604U3 Ribonuclease HII 9.25800184316e-06 0.0061581455198 0.00614888751796 +UniRef50_UPI00030E8D28 multidrug ABC transporter ATP binding protein 4.50154188846e-06 2.15012811429e-05 1.69997392544e-05 +UniRef50_V9VWJ0 0.0258758330111 0.00124246051479 -0.0246333724963 +UniRef50_W2UZV9 1.37144025415e-05 5.87456300015e-05 4.503122746e-05 +UniRef50_UPI000476BCFC hypothetical protein 0.00018897735194 0.00028142720318 9.244985124e-05 +UniRef50_Q9ZD73 2.8243917751e-05 3.59975966571e-05 7.7536789061e-06 +UniRef50_Q2NE10 Dihydroxy acid dehydratase 0.00343408382468 0.0019513606166 -0.00148272320808 +UniRef50_Q9HH09 Glutamine synthetase 8.38472134374e-06 1.40493582169e-05 5.66463687316e-06 +UniRef50_UPI00037460EB hypothetical protein 2.48969642999e-05 9.25388514554e-06 -1.56430791544e-05 +UniRef50_L0A7I7 8.83744785083e-05 0.000953727354744 0.000865352876236 +UniRef50_K7EH66 2.94620714165e-06 3.69817170268e-05 3.40355098852e-05 +UniRef50_X2MI40 Thiamine ABC transporter permease 0.00361283303375 0.000788476424302 -0.00282435660945 +UniRef50_G0DVY7 Cell division protein FtsQ 0.000159276788545 0.00598791908997 0.00582864230142 +UniRef50_UPI0003A33C9F peptidase S8 2.42465458775e-06 0.000325103487845 0.000322678833257 +UniRef50_UPI0003804693 hypothetical protein 4.72408571858e-05 4.14346738629e-06 -4.30973897995e-05 +UniRef50_UPI0002EF496B hypothetical protein 3.53441768897e-06 1.20647517818e-05 8.53033409283e-06 +UniRef50_A3M585 6.91366279948e-05 0.00650563977741 0.00643650314942 +UniRef50_Q9HZ67 P protein 0.000317508176853 2.04429055021e-05 -0.000297065271351 +UniRef50_A6LWB2 Integral membrane sensor signal transduction histidine kinase 0.000522470425098 0.000625280971892 0.000102810546794 +UniRef50_UPI0004658FE1 hypothetical protein 2.90466168338e-05 0.00036101535063 0.000331968733796 +UniRef50_V9VUH1 Cation 0.0151170152447 0.00667974363675 -0.00843727160795 +UniRef50_E4C1B3 9.50766624436e-06 0.00146144954442 0.00145194187818 +UniRef50_UPI000377B5C3 hypothetical protein 2.80629261898e-05 0.000167271418867 0.000139208492677 +UniRef50_Q65RK2 Na H(+) antiporter NhaA 0.00245592189452 0.000967265544711 -0.00148865634981 +UniRef50_X6EE61 1.89335144391e-05 5.34824720326e-05 3.45489575935e-05 +UniRef50_F6R4Y2 3.11145864016e-05 1.7040219121e-05 -1.40743672806e-05 +UniRef50_O05118 Pyruvate kinase 0.00248564861444 0.000505603387725 -0.00198004522672 +UniRef50_K0B2D2 0.000461828611062 0.000941383200643 0.000479554589581 +UniRef50_UPI000468F174 hypothetical protein 0.00102636260309 0.000659476512507 -0.000366886090583 +UniRef50_A6GDL9 4.49094894686e-05 6.94979517607e-06 -3.79596942925e-05 +UniRef50_Q1M589 sn glycerol 3 phosphate import ATP binding protein UgpC 3 5.93328196096e-05 3.1250896433e-05 -2.80819231766e-05 +UniRef50_S5YIS8 ABC Fe+3 siderophore transporter, periplasmic substrate binding protein 3.29868838122e-05 2.08339869887e-05 -1.21528968235e-05 +UniRef50_UPI00026263A5 phytoene dehydrogenase 8.40154663413e-06 3.90736109577e-06 -4.49418553836e-06 +UniRef50_Q13RB8 Xylose isomerase 0.0112737833822 0.00164399149752 -0.00962979188468 +UniRef50_A9AB27 Diaminopimelate epimerase 5.25479722221e-06 1.51553622878e-05 9.90056506559e-06 +UniRef50_UPI0003709E94 hypothetical protein, partial 0.000240582935563 4.9523378201e-05 -0.000191059557362 +UniRef50_A5F642 Uracil phosphoribosyltransferase 3.44092368625e-05 8.48563658414e-05 5.04471289789e-05 +UniRef50_D8JGS2 Exporter 5.834404774e-05 0.00859732168187 0.00853897763413 +UniRef50_E0TPJ9 Histidine kinase 0.000220752040266 0.00634832297032 0.00612757093005 +UniRef50_A0A038GFN9 FKBP type peptidylprolyl isomerase 0.00194878767955 0.00256455650404 0.00061576882449 +UniRef50_M1GD04 1.21939042968e-05 1.70990295174e-05 4.9051252206e-06 +UniRef50_G8AIH3 6.68478508552e-05 0.00021335419498 0.000146506344125 +UniRef50_C9LS22 4.32684121844e-05 4.96266947444e-05 6.35828256e-06 +UniRef50_UPI0002626B19 4 alpha glucanotransferase 1.13133810379e-05 0.000481609638899 0.000470296257861 +UniRef50_Q216Y2 MaoC like dehydratase 1.23779016053e-05 1.5124731484e-05 2.7468298787e-06 +UniRef50_A3PHP1 Abortive infection protein 0.0146437054279 0.00344210097937 -0.0112016044485 +UniRef50_UPI0003D0BA23 PREDICTED 3.0425490927e-05 4.14691333181e-05 1.10436423911e-05 +UniRef50_F4FLP5 O antigen polymerase 0.00618519540379 0.00254278516302 -0.00364241024077 +UniRef50_A6LZN7 0.000108994991968 0.000975009066972 0.000866014075004 +UniRef50_C0ZPK5 ATP dependent zinc metalloprotease FtsH 2.48890006064e-06 9.65424258301e-06 7.16534252237e-06 +UniRef50_B1W3Y6 Adenylate kinase 7.70891120911e-06 3.73230302478e-05 2.96141190387e-05 +UniRef50_Q8RE31 Adenylate kinase 9.19787210755e-06 2.74381572548e-05 1.82402851472e-05 +UniRef50_V8LZ20 Ammonia permease 0.00817555658577 0.000287763355251 -0.00788779323052 +UniRef50_F7ZMV0 ABC transporter ATP binding protein 0.00071539349499 0.00173951458493 0.00102412108994 +UniRef50_Q9LHH7 Bifunctional protein FolD 2 0.00073347406578 4.76349751929e-06 -0.000728710568261 +UniRef50_N8YXS0 0.00065686189211 0.00627042719338 0.00561356530127 +UniRef50_M1MEC2 Extracellular solute binding protein, family 1 0.00109612953218 0.00179712117905 0.00070099164687 +UniRef50_U2PH02 3.53950228934e-06 1.32182989304e-05 9.67879664106e-06 +UniRef50_X2HH54 A G specific adenine glycosylase 0.000119710144452 0.00187682238555 0.0017571122411 +UniRef50_Q8DXK8 Prophage LambdaSa2, PblB, putative 0.000203889996048 0.000258296137206 5.4406141158e-05 +UniRef50_Q3AWX1 Probable malate 3.16181632351e-06 5.01978972251e-06 1.857973399e-06 +UniRef50_D5VFT5 Acetolactate synthase, large subunit, biosynthetic type 0.0158139351144 0.00317230493237 -0.012641630182 +UniRef50_P37003 0.00122306837145 0.000998176201586 -0.000224892169864 +UniRef50_UPI00036B4081 hypothetical protein 1.15762863075e-05 2.47088444175e-05 1.313255811e-05 +UniRef50_C1DHH3 4.04751759926e-05 0.000238308761295 0.000197833585302 +UniRef50_Q2Y752 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.20777703019e-05 0.000327353424095 0.000315275653793 +UniRef50_P37007 0.00296582860074 0.00135331032166 -0.00161251827908 +UniRef50_L7WW34 Multidrug resistance protein 0.0104306902786 0.00475922135138 -0.00567146892722 +UniRef50_Q02UC6 Anaerobically induced outer membrane porin OprE 0.00117563791498 0.00014096262778 -0.0010346752872 +UniRef50_A1ADX2 GDP mannose pyrophosphatase NudK 0.00118490769114 0.000664302270065 -0.000520605421075 +UniRef50_N5A969 2.45289240675e-05 3.03233209257e-05 5.7943968582e-06 +UniRef50_D6ENY0 AMP binding domain containing protein 0.000120290144827 0.000101960624042 -1.8329520785e-05 +UniRef50_UPI0004673990 histidinol dehydrogenase 0.000243557186622 0.000235832728678 -7.724457944e-06 +UniRef50_K1ZZL6 5.30752693842e-05 5.94183811299e-05 6.3431117457e-06 +UniRef50_C6SPL1 0.0121840179327 0.00254851034797 -0.00963550758473 +UniRef50_C6SPL2 0.00342692034797 0.00062766371825 -0.00279925662972 +UniRef50_UPI00038FE8C9 Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp 2.17503033443e-05 4.59487378327e-06 -1.7155429561e-05 +UniRef50_X5Y9C9 ABC transporter substrate binding protein 6.27135269102e-06 2.83491299152e-05 2.20777772242e-05 +UniRef50_B5SHZ2 Segregation and condensation protein a 0.000573453511231 0.00435962938463 0.0037861758734 +UniRef50_UPI0004029835 hypothetical protein 1.16996238335e-05 1.80216353406e-05 6.3220115071e-06 +UniRef50_C5BKL9 Chromosomal replication initiator protein DnaA 0.00402144621575 0.00144073785693 -0.00258070835882 +UniRef50_U5MW71 Cardiolipin synthase Cls 0.000518041488782 0.000722942080891 0.000204900592109 +UniRef50_J8G6B9 TQXA domain containing protein 8.05006397902e-07 1.00960803821e-06 2.04601640308e-07 +UniRef50_UPI00036DF70A hypothetical protein 2.04044188162e-06 4.0375014268e-06 1.99705954518e-06 +UniRef50_D3QCJ5 ATP dependent RNA helicase YqfR 0.0124607274181 0.00455180998333 -0.00790891743477 +UniRef50_B2SXV7 Lysine tRNA ligase 3.47557862702e-06 5.83142458113e-05 5.48386671843e-05 +UniRef50_G8PVZ6 D,D dipeptide transport system permease protein DdpC 0.0097865678183 0.000960357166001 -0.0088262106523 +UniRef50_X1UWS6 Marine sediment metagenome DNA, contig 3.02649245815e-05 3.90694456633e-05 8.8045210818e-06 +UniRef50_A6LVP9 Phage replisome organizer, putative 0.000993154060413 0.00398848061577 0.00299532655536 +UniRef50_UPI00041E91C7 threonine dehydratase 8.7564914624e-06 1.39110560528e-05 5.1545645904e-06 +UniRef50_Q0BUK0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.0114687238813 0.0130503529593 0.001581629078 +UniRef50_P95786 ATP synthase subunit delta 0.00562822789907 0.00136700229036 -0.00426122560871 +UniRef50_H5NJS4 FabA like domain protein 1.41104766916e-05 4.90674763159e-05 3.49569996243e-05 +UniRef50_UPI0003ADCC45 PREDICTED 1.09514416056e-05 3.35712269313e-06 -7.59431891247e-06 +UniRef50_Q2FD99 Multidrug efflux transport protein 0.000187028565907 0.00639225490265 0.00620522633674 +UniRef50_M9VIC2 L xylulose 5 phosphate 3 epimerase 0.000303714999663 0.00532543757074 0.00502172257108 +UniRef50_P39374 0.00288683012507 0.000213739472998 -0.00267309065207 +UniRef50_A8LAX8 1.28648754386e-05 3.34107640361e-05 2.05458885975e-05 +UniRef50_V6DLJ7 Putative phage protein 0.000267729666102 0.000101160958787 -0.000166568707315 +UniRef50_UPI000440D7F2 PREDICTED 3.41646690317e-06 2.4436089507e-06 -9.7285795247e-07 +UniRef50_B7VHY7 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.1354159197e-05 6.11812722406e-06 -1.52360319729e-05 +UniRef50_D1GN04 Phage protein 0.00291450455315 0.000418888943548 -0.0024956156096 +UniRef50_A4WV88 2 keto 3 deoxygluconate kinase 0.000826995344701 0.000420142421617 -0.000406852923084 +UniRef50_F0JTZ1 DNA binding transcriptional activator, co regulator with RcsB 0.000256212209626 0.000398179827223 0.000141967617597 +UniRef50_UPI000395D3CA PREDICTED 1.79652920158e-05 0.000463828208591 0.000445862916575 +UniRef50_A3NI78 0.00418015609419 0.000435120559719 -0.00374503553447 +UniRef50_K7SGE5 Glycosyltransferase, group 1 family protein 0.000815820802931 0.00471336550744 0.00389754470451 +UniRef50_C5BM46 TRAP transporter, DctQ family protein 0.0133367132723 0.000729328352558 -0.0126073849197 +UniRef50_Q9RYQ8 Acyl CoA dehydrogenase, putative 0.000539568342021 0.0419661549045 0.0414265865625 +UniRef50_P0AF25 Ribonucleotide monophosphatase NagD 0.00168537888368 0.000708131759052 -0.000977247124628 +UniRef50_Q5LTY4 ArsC family protein 7.18560968825e-05 5.5754036328e-05 -1.61020605545e-05 +UniRef50_UPI0004649E38 hypothetical protein 2.57878831719e-05 4.40966683833e-05 1.83087852114e-05 +UniRef50_M9R9I6 RNA polymerase sigma 32 factor 2 0.00739113598218 0.00471598434767 -0.00267515163451 +UniRef50_UPI00029AA773 3 deoxy D manno octulosonic acid 8 phosphate synthase 0.000114712130716 7.6348011262e-05 -3.8364119454e-05 +UniRef50_C2ZFP3 Acetyl CoA acetyltransferase 0.000153657797359 0.0244902886139 0.0243366308165 +UniRef50_D6SDB9 Toxin, beta grasp domain protein 0.00890084944403 0.0010791208446 -0.00782172859943 +UniRef50_W8EU13 Dihydrolipoyl dehydrogenase 0.0136725955808 0.0047489099421 -0.0089236856387 +UniRef50_A3N6S5 Transcriptional regulator, LysR family 0.000125689008493 0.000201352299003 7.566329051e-05 +UniRef50_UPI0003B6C781 amidohydrolase 1.79316354216e-05 8.16734733007e-06 -9.76428809153e-06 +UniRef50_UPI0003AF0828 PREDICTED 1.78158442219e-05 0.00042094859072 0.000403132746498 +UniRef50_UPI0004756B1C 6 phospho beta glucosidase 3.83930066134e-06 8.45001184073e-06 4.61071117939e-06 +UniRef50_A0A018Y1M8 Glycogen branching enzyme 0.00402553145186 0.000467228864198 -0.00355830258766 +UniRef50_W7VQX9 Spermidine putrescine binding periplasmic protein 2.70715842294e-05 1.07248643401e-05 -1.63467198893e-05 +UniRef50_I6TQG8 Signal peptidase I 0.00496612071465 0.000768355905256 -0.00419776480939 +UniRef50_G7TCM8 ParB family protein 0.000288510949591 6.45906084216e-05 -0.000223920341169 +UniRef50_Q48768 Chemotaxis protein CheA 6.29143314804e-05 0.00289186411327 0.00282894978179 +UniRef50_UPI0003B44FBC N acetyl anhydromuranmyl L alanine amidase, partial 5.395022779e-05 0.000131868292806 7.7918065016e-05 +UniRef50_UPI000262A813 sulfate ABC transporter permease 6.04724718665e-05 0.000110189467331 4.97169954645e-05 +UniRef50_A6VCD4 0.000665643639175 0.000664732343474 -9.11295701e-07 +UniRef50_G8V3H8 FecCD transport family protein 0.0102188448613 0.00525309581752 -0.00496574904378 +UniRef50_UPI0003A147C5 glutamate dehydrogenase 8.03227697133e-06 2.30453977698e-05 1.50131207985e-05 +UniRef50_H8H2N8 DNA polymerase III, beta subunit 0.000963707177918 0.0711126262926 0.0701489191147 +UniRef50_K5YNY1 7.242848099e-05 1.23590478075e-05 -6.00694331825e-05 +UniRef50_UPI000255C1EB DNA 3 methyladenine glycosylase I 1.99033744418e-05 5.63166823913e-05 3.64133079495e-05 +UniRef50_A7EM78 ATP dependent RNA helicase dbp9 5.55363343528e-06 6.55863359958e-06 1.0050001643e-06 +UniRef50_F3CRF8 0.00116748243974 0.00248592628306 0.00131844384332 +UniRef50_A6LUT7 Zn dependent hydrolase of the beta lactamase fold like protein 0.000147840465605 0.00134658211377 0.00119874164816 +UniRef50_D3QFY2 0.000513854190345 0.00019921189645 -0.000314642293895 +UniRef50_B2RIE4 Ribosomal RNA small subunit methyltransferase H 5.81187305735e-06 0.00486725458718 0.00486144271412 +UniRef50_Q5HN64 0.00642874867544 0.00171850864942 -0.00471024002602 +UniRef50_F7Y3N0 Secretion protein HlyD family protein 0.00109296805086 0.000160352962103 -0.000932615088757 +UniRef50_Q2FDM8 HTH type transcriptional regulator ArcR 0.0246026376756 0.0142134125283 -0.0103892251473 +UniRef50_D8JH13 0.000298500709782 0.00684154782696 0.00654304711718 +UniRef50_F8UHZ1 Sulfide 0.0011742369025 0.000208771585387 -0.000965465317113 +UniRef50_UPI0002D3C80C hypothetical protein 3.58820460678e-06 2.4892462434e-05 2.13042578272e-05 +UniRef50_UPI0003B545B7 UDP N acetylglucosamine 2 epimerase 6.08270801282e-06 2.89770844998e-05 2.2894376487e-05 +UniRef50_A4VWB1 Predicted membrane protein 4.53443194446e-05 3.05938418067e-05 -1.47504776379e-05 +UniRef50_UPI0002B4270F PREDICTED 0.000168179136268 4.89175130106e-05 -0.000119261623257 +UniRef50_Q97G69 Glycerol 3 phosphate acyltransferase 0.000599570586174 0.0021881812892 0.00158861070303 +UniRef50_UPI00037918AC hypothetical protein 1.56336080484e-05 2.38983700578e-05 8.2647620094e-06 +UniRef50_A0A024KDL9 0.000287355372835 0.000153415901025 -0.00013393947181 +UniRef50_UPI000470E44E hypothetical protein 2.60899634921e-05 8.63793585826e-06 -1.74520276338e-05 +UniRef50_M1P9T3 0.000207352964281 6.91424110136e-05 -0.000138210553267 +UniRef50_UPI000418EAD6 hypothetical protein 3.93302952453e-05 2.49799746551e-05 -1.43503205902e-05 +UniRef50_I6SU88 Penicillin binding protein 2B 0.00490502608904 0.00215356450517 -0.00275146158387 +UniRef50_I6T801 Endoglucanase 0.00483942552682 0.000711791939924 -0.0041276335869 +UniRef50_F9YWL2 Transport system permease protein 0.000102857217666 0.00632221446914 0.00621935725147 +UniRef50_U6LU16 2.99125628559e-06 3.02849965665e-05 2.72937402809e-05 +UniRef50_UPI00047E902E Fe3+ siderophore ABC transporter permease 5.50677080713e-06 2.75816222756e-05 2.20748514685e-05 +UniRef50_F6ZM80 6.0773025101e-05 7.31089157469e-06 -5.34621335263e-05 +UniRef50_W2CJ91 2.00039967522e-05 0.000121616401369 0.000101612404617 +UniRef50_I3TNK1 GNAT family acetyltransferase TIGR03103 0.000146411681904 0.000488042327123 0.000341630645219 +UniRef50_F2AE33 0.00140877551229 0.000646605775422 -0.000762169736868 +UniRef50_Q9CIV8 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 0.000503884180492 0.00202974458268 0.00152586040219 +UniRef50_UPI0004138F31 Fur family transcriptional regulator 4.43514531505e-05 0.000105423149655 6.10716965045e-05 +UniRef50_O31714 1 phosphofructokinase 1.05632353205e-05 0.00148515284581 0.00147458961049 +UniRef50_C1F5G2 GAF domain GGDEF domain protein 4.99639616826e-06 4.2471606233e-05 3.74752100647e-05 +UniRef50_UPI000440DE53 PREDICTED 3.13519165916e-06 2.21298897714e-06 -9.2220268202e-07 +UniRef50_M4UDQ5 Quinone oxidoreductase 0.000896166719044 0.000484549952788 -0.000411616766256 +UniRef50_R1F8B2 1.17100883226e-05 7.90601864219e-06 -3.80406968041e-06 +UniRef50_U4JVB3 8.1297663707e-06 9.83469674759e-06 1.70493037689e-06 +UniRef50_P77463 Probable D,D dipeptide transport system permease protein DdpC 0.00386060121401 0.000671362135453 -0.00318923907856 +UniRef50_UPI00023773E6 hemolysin type calcium binding domain containing protein, partial 3.44521611529e-06 9.45483523447e-06 6.00961911918e-06 +UniRef50_UPI000309FDCA hypothetical protein 3.89830686277e-06 4.05441485061e-05 3.66458416433e-05 +UniRef50_U5NMM5 0.000747313619048 0.00163586108529 0.000888547466242 +UniRef50_P45600 HTH type transcriptional regulator CysB 0.0022880246696 0.000802932501237 -0.00148509216836 +UniRef50_P36566 Protein SmtA 0.00106639888164 0.00389042134346 0.00282402246182 +UniRef50_UPI0001FFE514 pyruvate phosphate dikinase PEP pyruvate binding protein, partial 5.47035358623e-06 0.000188407278137 0.000182936924551 +UniRef50_UPI0004634978 hypothetical protein, partial 3.56527897935e-05 0.000151498993015 0.000115846203222 +UniRef50_UPI00036938AE hypothetical protein 3.71562409899e-05 1.06390900165e-05 -2.65171509734e-05 +UniRef50_E2NTP5 0.00391956612381 0.000927322011325 -0.00299224411248 +UniRef50_UPI000380D55B hypothetical protein 9.19907442685e-06 3.89488133843e-05 2.97497389574e-05 +UniRef50_U5FQ27 8.64665415698e-05 5.66477011024e-05 -2.98188404674e-05 +UniRef50_K0K215 Luciferase like monooxygenase 0.000202586398316 0.0300954925315 0.0298929061332 +UniRef50_UPI000421309B siroheme synthase 7.33527455851e-05 6.880971045e-06 -6.64717745401e-05 +UniRef50_E9AEM7 Putative proteophosphoglycan ppg3 4.85421032899e-06 4.18494245524e-05 3.69952142234e-05 +UniRef50_M2PFD7 3.41317859517e-05 0.000191614609346 0.000157482823394 +UniRef50_Q9RTU0 Potassium uptake protein KtrA 0.00040735898078 0.0450148331134 0.0446074741326 +UniRef50_Q9RUF3 Methionine tRNA ligase 2.91040293157e-06 0.0316402133283 0.0316373029254 +UniRef50_V4MMB9 6.47914434567e-06 5.78734858769e-06 -6.9179575798e-07 +UniRef50_Q73RR6 Formate tetrahydrofolate ligase 3.2407179485e-05 0.00388401578268 0.00385160860319 +UniRef50_P12995 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.00346897489807 0.00531547340258 0.00184649850451 +UniRef50_UPI00026CCAA9 ferripyochelin binding protein 3.06402875023e-05 3.05485899378e-05 -9.16975645e-08 +UniRef50_A6LST0 Regulatory protein, LacI 0.000292820640156 0.000545469749026 0.00025264910887 +UniRef50_A1U1T6 Peptidase S49 0.00062886197331 0.000759556131951 0.000130694158641 +UniRef50_UPI0003B4CA49 ribonuclease J 5.83655004914e-05 6.51235526882e-05 6.7580521968e-06 +UniRef50_D9WJL5 0.00020772204788 0.000147865544518 -5.9856503362e-05 +UniRef50_P37675 2,3 diketo L gulonate TRAP transporter large permease protein YiaN 0.00649286444955 0.000966828982054 -0.0055260354675 +UniRef50_UPI000262CC40 23S rRNA pseudouridine synthase D 1.83443521967e-05 1.02230618048e-05 -8.1212903919e-06 +UniRef50_C1PH90 Pyridoxal dependent decarboxylase 0.0101461776785 0.00421452362488 -0.00593165405362 +UniRef50_UPI000399117C PREDICTED 5.00019400421e-05 0.000144692362186 9.46904221439e-05 +UniRef50_G8VJM5 0.000797505610247 0.00815197883274 0.00735447322249 +UniRef50_UPI0003B5627F RNA polymerase subunit sigma 24 0.00029384821392 0.000109469548254 -0.000184378665666 +UniRef50_D6ZGK4 5.50085365764e-06 2.44433744621e-05 1.89425208045e-05 +UniRef50_E2Q4D8 IolC protein 0.000114737382625 0.0059806052673 0.00586586788468 +UniRef50_Q5HRK7 30S ribosomal protein S12 0.0166149349375 0.00594017351161 -0.0106747614259 +UniRef50_B2JLW6 ABC transporter related 0.00015428582651 0.000270519119271 0.000116233292761 +UniRef50_D2J9T7 0.00417406764977 0.00295044381471 -0.00122362383506 +UniRef50_V9C4R9 PF12266 family protein 0.000174099792422 5.63037539161e-05 -0.000117796038506 +UniRef50_Q8Y1I2 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.000846843372435 0.00022095077733 -0.000625892595105 +UniRef50_M6A924 Winged helix turn helix 4.29335394827e-05 0.00371030422315 0.00366737068367 +UniRef50_A4WZ94 0.00175850026736 0.00103651950466 -0.0007219807627 +UniRef50_X0ZU83 Marine sediment metagenome DNA, contig 3.22509832835e-05 3.80702539354e-05 5.8192706519e-06 +UniRef50_M2QQT8 0.000153159082791 0.000146933824448 -6.225258343e-06 +UniRef50_UPI00037EEFBB hypothetical protein 5.82229385628e-06 2.48150709882e-05 1.89927771319e-05 +UniRef50_Q49Z00 Redox sensing transcriptional repressor Rex 0.00936861016053 0.00107122336261 -0.00829738679792 +UniRef50_T1YC99 8 amino 7 oxononanoate synthase 0.00983946986161 0.00368036399972 -0.00615910586189 +UniRef50_UPI0004633377 hypothetical protein 3.87266539502e-05 5.24846485307e-05 1.37579945805e-05 +UniRef50_L7WXU0 0.0199212156817 0.004661562451 -0.0152596532307 +UniRef50_UPI000348E813 beta lactamase 1.57045989844e-05 2.96570404935e-05 1.39524415091e-05 +UniRef50_Q1IY10 DNA internalization related competence protein ComEC Rec2 5.01531428967e-05 0.00962508756203 0.00957493441913 +UniRef50_UPI0003683EEF acetolactate synthase 9.06639723919e-05 0.000528301432148 0.000437637459756 +UniRef50_X5FIX0 Two component response regulator and GGDEF family protein YeaJ 4.8764613614e-06 7.77283057189e-06 2.89636921049e-06 +UniRef50_P21829 Pyridoxal phosphate phosphatase YbhA 0.0038882362494 0.00306401598738 -0.00082422026202 +UniRef50_Q8NZK5 Immunogenic secreted protein homologue 0.000410322606756 0.000238800570243 -0.000171522036513 +UniRef50_H3WHC1 Cadmium resistance transporter family protein 0.000555232927744 0.00104724042999 0.000492007502246 +UniRef50_H8GRT7 2.4405940899e-05 0.000292885012368 0.000268479071469 +UniRef50_UPI00047B354D hypothetical protein 1.85929180571e-05 2.42899561817e-05 5.6970381246e-06 +UniRef50_B0F658 Major ampullate spidroin 1 locus 3 1.02169521309e-05 0.000176896047362 0.000166679095231 +UniRef50_P95781 8 oxo dGTP diphosphatase 0.00703153309441 0.00471983124184 -0.00231170185257 +UniRef50_T1Z4R2 0.00565461334667 0.000967458493678 -0.00468715485299 +UniRef50_UPI00046A4AB7 catalase 6.2029491269e-06 1.03181473401e-05 4.1151982132e-06 +UniRef50_W7WTG1 CHAT domain protein 6.86807246068e-05 6.93917169686e-05 7.109923618e-07 +UniRef50_X5F552 0.000458485006708 0.00122434825964 0.000765863252932 +UniRef50_UPI0002BC4B55 transposase 6.13196038774e-06 2.00393594593e-05 1.39073990716e-05 +UniRef50_D4HCU3 Pyruvate kinase 0.000834681720869 0.00809724062397 0.0072625589031 +UniRef50_UPI000363409C hypothetical protein 0.000904970848426 9.27312365861e-05 -0.00081223961184 +UniRef50_Q7CWA6 2.65304992896e-05 1.17676869848e-05 -1.47628123048e-05 +UniRef50_Q0VQR4 Na translocating NADH quinone reductase subunit E 0.000635375966967 0.000125912413773 -0.000509463553194 +UniRef50_UPI00037A1823 CobW 2.17677336617e-05 1.07192669073e-05 -1.10484667544e-05 +UniRef50_UPI0003900E45 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.68734817934e-05 1.23456312802e-05 -4.5278505132e-06 +UniRef50_P0DC16 Tagatose 1,6 diphosphate aldolase 2 3.47165292298e-05 4.43263544769e-05 9.6098252471e-06 +UniRef50_C1CUZ2 8.8611734477e-05 0.0458238312724 0.0457352195379 +UniRef50_E3EIE7 Phospholipase carboxylesterase family protein 0.000487887521605 0.00101043123665 0.000522543715045 +UniRef50_E4FBI4 0.000359159417012 0.00016981787626 -0.000189341540752 +UniRef50_A8LTL4 Resolvase domain protein 0.00535240764636 0.00048373108708 -0.00486867655928 +UniRef50_Q9KT93 Probable lactoylglutathione lyase 9.13608899915e-05 2.64915315698e-05 -6.48693584217e-05 +UniRef50_UPI000169A652 dihydroxy acid dehydratase, partial 0.000442929144991 0.00172922948935 0.00128630034436 +UniRef50_N9ZY49 1.50444566663e-05 9.96889077879e-06 -5.07556588751e-06 +UniRef50_U5UT50 0.00105837193136 0.000843762014843 -0.000214609916517 +UniRef50_B9EAQ4 Oligopeptide ABC transporter ATP binding protein OppF 0.00720379293876 0.00197765268857 -0.00522614025019 +UniRef50_UPI000467AEF3 diaminopimelate decarboxylase 1.37614237477e-05 0.000174953986733 0.000161192562985 +UniRef50_UPI00046E57F5 uroporphyrinogen decarboxylase 6.51719598652e-06 1.18963058382e-05 5.37910985168e-06 +UniRef50_UPI00046D5352 hypothetical protein 4.95257820997e-06 1.17575167913e-05 6.80493858133e-06 +UniRef50_UPI000300EAB7 hypothetical protein 0.000327361888448 6.37275625972e-05 -0.000263634325851 +UniRef50_UPI0004677218 acyl CoA transferase 2.05285833195e-06 8.77671994386e-06 6.72386161191e-06 +UniRef50_B9KLX6 Chromosomal replication initiator, DnaA 0.000247828301455 4.12843581621e-05 -0.000206543943293 +UniRef50_UPI00036F41B6 hypothetical protein 2.87976229609e-05 4.12333827896e-05 1.24357598287e-05 +UniRef50_Q5RBK6 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 4.61740753603e-06 7.0573538081e-06 2.43994627207e-06 +UniRef50_UPI00047DDDC5 hypothetical protein 7.90378024887e-05 0.000107602555134 2.85647526453e-05 +UniRef50_UPI00036A8D72 hypothetical protein 1.81861939098e-05 5.06241728674e-05 3.24379789576e-05 +UniRef50_UPI0001BF7AAC hypothetical protein SMAC_09920 1.12938857627e-05 6.01560786213e-05 4.88621928586e-05 +UniRef50_UPI0002739F39 8.52509287435e-05 6.58024349989e-06 -7.86706852436e-05 +UniRef50_UPI0003618544 MULTISPECIES 0.000179644883624 0.00020487737172 2.5232488096e-05 +UniRef50_E2Q1H6 1.4040785353e-05 4.28534677962e-05 2.88126824432e-05 +UniRef50_UPI000369F333 hypothetical protein 3.21199765596e-05 1.84280627767e-05 -1.36919137829e-05 +UniRef50_I6RSR0 0.000560341603212 0.000449199982175 -0.000111141621037 +UniRef50_W0H1T2 0.000331128060398 0.000192883848574 -0.000138244211824 +UniRef50_Q869Y7 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 8.21849630961e-06 1.88234985841e-05 1.06050022745e-05 +UniRef50_Q0G2X9 6.04997526656e-06 7.275522497e-06 1.22554723044e-06 +UniRef50_R5R9L6 7.10590473154e-05 1.65942663495e-05 -5.44647809659e-05 +UniRef50_T1AQZ2 Phosphoribosylformylglycinamidine synthase 3.12347934853e-05 4.84337678751e-05 1.71989743898e-05 +UniRef50_Q12F86 Peptide chain release factor 1 0.00330161302826 0.000542196684499 -0.00275941634376 +UniRef50_Q2LTR7 Proline tRNA ligase 0.0239417802839 0.0108215771111 -0.0131202031728 +UniRef50_UPI00036F3D8D hypothetical protein 2.82739461197e-06 7.53501857934e-06 4.70762396737e-06 +UniRef50_A4WRU9 PRC barrel domain protein 0.00270583958044 0.000497428955027 -0.00220841062541 +UniRef50_X6J7G6 0.00102472676941 2.71758204443e-05 -0.000997550948966 +UniRef50_V4QYY0 Transcriptional regulator 0.000408398101821 9.00573395035e-05 -0.000318340762317 +UniRef50_UPI00046B4F5A PREDICTED 1.54130498666e-05 0.000190438647961 0.000175025598094 +UniRef50_B6JKF2 Cysteine desulfurase IscS 5.04705740017e-06 0.00441604646465 0.00441099940725 +UniRef50_K9SJV6 Amino acid amide ABC transporter substrate binding protein, HAAT family 0.000280828752635 0.028897393199 0.0286165644464 +UniRef50_UPI0002E4DF67 hypothetical protein 2.79711988837e-06 9.49489167224e-05 9.2151796834e-05 +UniRef50_P07264 3 isopropylmalate dehydratase 6.7043774056e-05 5.9323521317e-06 -6.11114219243e-05 +UniRef50_K8BVY4 0.00016806398057 0.000215225567847 4.7161587277e-05 +UniRef50_UPI0003749F74 hypothetical protein 4.93518354236e-06 2.09818865441e-05 1.60467030017e-05 +UniRef50_Q9CIW0 DhaKLM operon coactivator DhaQ 0.0017638786419 0.000542027200435 -0.00122185144146 +UniRef50_X1DTV9 Marine sediment metagenome DNA, contig 1.10107758914e-05 2.0302659581e-05 9.2918836896e-06 +UniRef50_E3GXL3 Prephenate dehydratase 0.00220915152141 0.000373031627616 -0.00183611989379 +UniRef50_Q21VJ3 Short chain dehydrogenase reductase SDR 0.000964238397711 0.0484046609603 0.0474404225626 +UniRef50_UPI0003638CE1 hypothetical protein 9.99664838986e-06 2.48489649411e-05 1.48523165512e-05 +UniRef50_Q5HF24 D alanine aminotransferase 0.00844236124403 0.00286103050974 -0.00558133073429 +UniRef50_Q60EN0 0.000115674971054 0.000104493108336 -1.1181862718e-05 +UniRef50_B7IV23 6.21217520534e-06 0.00100489334155 0.000998681166345 +UniRef50_A8LT36 Na+ Ca+ antiporter 0.0136008812393 0.00249235155476 -0.0111085296845 +UniRef50_G8VDH4 0.000576398861147 0.00154140029708 0.000965001435933 +UniRef50_H0TRF6 PilL 0.000347974430411 0.000275843568457 -7.2130861954e-05 +UniRef50_UPI0004688D7A 6,7 dimethyl 8 ribityllumazine synthase 8.38279489684e-06 2.24014478874e-05 1.40186529906e-05 +UniRef50_K0HEK8 Mur ligase middle domain protein 0.000104760218922 0.00743516900166 0.00733040878274 +UniRef50_UPI0003B5D77D LytR family transcriptional regulator 2.78434186685e-06 9.48822210509e-06 6.70388023824e-06 +UniRef50_M1PJW1 2.04128260595e-05 5.45682062205e-05 3.4155380161e-05 +UniRef50_A3CRC4 0.00268457837421 0.00144712211327 -0.00123745626094 +UniRef50_P46907 Nitrite extrusion protein 0.0204197570958 0.00658528582653 -0.0138344712693 +UniRef50_A3PPT8 0.00256033345927 0.000475040276462 -0.00208529318281 +UniRef50_D6BB72 Predicted protein 3.31944188292e-05 1.26190553488e-05 -2.05753634804e-05 +UniRef50_D3QG17 Transporter, LysE family 0.0107169494469 0.00401468224698 -0.00670226719992 +UniRef50_A1SET2 Cyclic pyranopterin monophosphate synthase accessory protein 1.30015025285e-05 0.00129226791343 0.0012792664109 +UniRef50_UPI0003726D73 hypothetical protein, partial 2.98010759476e-05 0.000254999048371 0.000225197972423 +UniRef50_W1YK15 0.000286447542028 0.000222214344351 -6.4233197677e-05 +UniRef50_Q89LQ8 Bifunctional enzyme IspD IspF 5.79381626422e-06 1.63471349413e-05 1.05533186771e-05 +UniRef50_H1LUK9 1.89960006839e-05 8.30010932925e-05 6.40050926086e-05 +UniRef50_U8YLF7 9.93384181239e-05 0.000253853901306 0.000154515483182 +UniRef50_A0A052HNM0 Cyclic diguanylate phosphodiesterase domain protein 4.49485977494e-06 1.53831381489e-05 1.0888278374e-05 +UniRef50_A3CQQ7 Tributyrin esterase, putative 0.00695700850786 0.00287730565469 -0.00407970285317 +UniRef50_A7H9V5 NADH quinone oxidoreductase subunit D 2 6.49769982799e-06 3.18208571483e-05 2.53231573203e-05 +UniRef50_A8YY53 0.00123093257234 0.00199089913615 0.00075996656381 +UniRef50_Q5LY94 Phospho N acetylmuramoyl pentapeptide transferase 0.00658539112122 0.00628192333242 -0.0003034677888 +UniRef50_C6M7I4 3.76632582194e-05 0.000279509181195 0.000241845922976 +UniRef50_B1ZVE5 Cobyrinic acid ac diamide synthase 4.92042119402e-06 2.4839201009e-05 1.9918779815e-05 +UniRef50_S5RYV7 Lysine decarboxylase family protein 0.00517667681318 0.000672122762856 -0.00450455405032 +UniRef50_A0A019IPH8 0.000157556058517 3.16243514281e-05 -0.000125931707089 +UniRef50_P0AGJ0 Trk system potassium uptake protein TrkA 0.00436470407595 0.00220964393439 -0.00215506014156 +UniRef50_Q59447 Cysteine synthase 1.63102432579e-05 2.24181906967e-05 6.1079474388e-06 +UniRef50_Q9RZE8 Chromosome partitioning ATPase, putative, ParA family 0.000183550725104 0.0631718198955 0.0629882691704 +UniRef50_UPI00046E5735 phenylacetic acid degradation protein 1.01040722428e-05 4.69050012552e-05 3.68009290124e-05 +UniRef50_B9KR74 Binding protein dependent transport systems inner membrane component 0.0101589268194 0.00108500670753 -0.00907392011187 +UniRef50_E8U679 S layer like protein array related protein 0.000256399618386 0.0271237282419 0.0268673286235 +UniRef50_N9JGK4 0.000175032143208 0.00459592341857 0.00442089127536 +UniRef50_Q79VD7 Cytochrome c oxidase subunit 1 0.000201335970844 0.00604431520099 0.00584297923015 +UniRef50_A4W453 30S ribosomal protein S2 0.0208711833263 0.0457315773859 0.0248603940596 +UniRef50_T7IR01 Diguanylate cyclase 0.000540761787582 0.000163459430921 -0.000377302356661 +UniRef50_K9H0D1 5.72618184856e-05 3.44942989945e-05 -2.27675194911e-05 +UniRef50_Q3IVU8 FMN dependent NADH azoreductase 0.00462622823168 0.00372681389023 -0.00089941434145 +UniRef50_R9YLC4 Cell cycle family protein 0.0146185308701 0.00567240163273 -0.00894612923737 +UniRef50_Q67R59 Formamidopyrimidine DNA glycosylase 5.52342057787e-06 3.22323778763e-05 2.67089572984e-05 +UniRef50_UPI000469D26A hypothetical protein 3.84367548011e-05 3.13832357276e-05 -7.0535190735e-06 +UniRef50_E2BEN1 Methionine R sulfoxide reductase B1 0.000647941052889 0.00180785534303 0.00115991429014 +UniRef50_F8IF10 ABC transporter related protein 0.000356839351666 0.00138427246682 0.00102743311515 +UniRef50_A3M7V6 0.000471857486069 0.00259803020231 0.00212617271624 +UniRef50_UPI00036F34F3 hypothetical protein 7.836665491e-06 2.50648425099e-05 1.72281770189e-05 +UniRef50_Q5HM36 Galactose 6 phosphate isomerase subunit LacB 0.0247932609432 0.0157614703978 -0.0090317905454 +UniRef50_UPI00046CF7C8 MerR family transcriptional regulator 0.000169279179165 0.000129503758411 -3.9775420754e-05 +UniRef50_UPI000364CB09 hypothetical protein 7.03467172573e-06 8.93141637218e-05 8.22794919961e-05 +UniRef50_A5UMW1 Predicted permease 0.00187226760336 0.000617283716122 -0.00125498388724 +UniRef50_R0FCU4 5.89458445553e-05 2.2192447719e-05 -3.67533968363e-05 +UniRef50_UPI0003B46CBA O acetylhomoserine aminocarboxypropyltransferase 7.07090521665e-06 8.61485267607e-06 1.54394745942e-06 +UniRef50_Q9XAD5 Probable cysteine desulfurase 0.000280774702454 0.00494948241885 0.0046687077164 +UniRef50_X1HX76 Marine sediment metagenome DNA, contig 3.16251402973e-05 0.00012039937306 8.87742327627e-05 +UniRef50_R4K347 Nitroreductase 0.000227401198102 0.0019797767946 0.0017523755965 +UniRef50_F7ZKI4 HTH type transcriptional regulator, AsnC family 0.00313650680224 0.00258924448495 -0.00054726231729 +UniRef50_A3PJ29 Cytochrome c, class I 0.00417257228081 0.00100107357693 -0.00317149870388 +UniRef50_G8VLH6 Alanine racemase 0.00034955373473 0.00411358049931 0.00376402676458 +UniRef50_D1BS48 0.00541576337914 0.00146565006584 -0.0039501133133 +UniRef50_Q6A850 Exodeoxyribonuclease V beta chain 7.69017002632e-05 0.00581037195267 0.00573347025241 +UniRef50_U3SQQ0 0.00535827419971 0.00443542775419 -0.00092284644552 +UniRef50_U3T1Y1 Potassium uptake protein, TrkA 0.000455343521063 0.00493759136368 0.00448224784262 +UniRef50_D9VIN2 Predicted protein 8.95251850385e-05 0.000471525839398 0.000382000654359 +UniRef50_UPI000471886D hypothetical protein, partial 0.00010711464251 6.73241349084e-05 -3.97905076016e-05 +UniRef50_UPI0003A01DE6 hypothetical protein 1.6687224631e-06 1.0910690162e-05 9.2419676989e-06 +UniRef50_Q2KXD7 Amino acid ABC transporter, permease protein 0.00256161189526 0.000617925572098 -0.00194368632316 +UniRef50_P52111 Glycerol 3 phosphate dehydrogenase 0.00299525590178 0.00089559080152 -0.00209966510026 +UniRef50_E4PYB8 Replication initiator protein 0.00568566005222 0.0010630391973 -0.00462262085492 +UniRef50_A6QDH4 0.0119989573726 0.00229230545785 -0.00970665191475 +UniRef50_Q2FI15 Bifunctional protein FolD 0.00740703527429 0.00260274596056 -0.00480428931373 +UniRef50_UPI00036940F2 hypothetical protein 4.71602820202e-05 8.62688985525e-05 3.91086165323e-05 +UniRef50_UPI00036C7AFF hypothetical protein 4.2577385597e-05 4.99869264025e-05 7.4095408055e-06 +UniRef50_Q46845 Disulfide bond oxidoreductase YghU 0.0191800255289 0.0125848220903 -0.0065952034386 +UniRef50_N6S0H8 0.00132643215834 3.36268019972e-05 -0.00129280535634 +UniRef50_Q6VY64 3.15353240142e-05 0.000555562043299 0.000524026719285 +UniRef50_A9VQ13 1.85296589664e-05 0.00103278535997 0.001014255701 +UniRef50_S0ACB3 1.30048623275e-05 2.60433467356e-05 1.30384844081e-05 +UniRef50_Q9HLK8 Inosine 5 monophosphate dehydrogenase 2.59118798677e-05 8.85537522237e-05 6.2641872356e-05 +UniRef50_B1IL95 7 cyano 7 deazaguanine synthase 4.58189510827e-05 5.79743238331e-05 1.21553727504e-05 +UniRef50_Q92G97 NADH quinone oxidoreductase subunit L 0.000145706621807 4.51624093879e-05 -0.000100544212419 +UniRef50_R7PVP7 0.00287350232707 0.000827767666796 -0.00204573466027 +UniRef50_Q9RU90 0.000909232413571 0.026684507891 0.0257752754774 +UniRef50_A8AL09 CDP diacylglycerol pyrophosphatase 6.85496438769e-05 0.0018840172144 0.00181546757052 +UniRef50_A2S4H0 ATPase, AAA family protein 0.0136571642592 0.00566294823183 -0.00799421602737 +UniRef50_W7A2A5 1.56660464008e-07 3.52580982773e-07 1.95920518765e-07 +UniRef50_Q1GXG2 PKHD type hydroxylase Mfla_0096 3.50842910247e-05 9.06576302249e-05 5.55733392002e-05 +UniRef50_A3PJJ8 0.0072995460202 0.00196553083877 -0.00533401518143 +UniRef50_A3PJJ6 0.00862191380061 0.00382951615904 -0.00479239764157 +UniRef50_C0QB47 0.000121309885662 0.00221058476842 0.00208927488276 +UniRef50_X1R832 Marine sediment metagenome DNA, contig 3.72365067342e-05 0.000392337003736 0.000355100497002 +UniRef50_D4HA15 2.33437270013e-05 0.00044816627305 0.000424822546049 +UniRef50_UPI0003B367DD 50S ribosomal protein L22 2.04786861344e-05 0.000124412287918 0.000103933601784 +UniRef50_Q8D350 Protoheme IX farnesyltransferase 7.8445348395e-06 1.42415023161e-05 6.3969674766e-06 +UniRef50_O31705 Molybdopterin synthase catalytic subunit 0.0567752400801 0.00769401641463 -0.0490812236655 +UniRef50_P43791 Dihydrofolate reductase 3.78046585291e-05 0.000417893251127 0.000380088592598 +UniRef50_UPI00035F8340 hypothetical protein 2.30528203608e-05 1.67424923067e-05 -6.3103280541e-06 +UniRef50_K2IW44 1.65288268519e-05 1.74176167892e-05 8.887899373e-07 +UniRef50_UPI0002A47C2E PREDICTED 4.41508683112e-06 3.30064649179e-06 -1.11444033933e-06 +UniRef50_X2MSF3 2.68782643797e-06 3.04658379977e-06 3.587573618e-07 +UniRef50_Q2T517 Phenylacetaldehyde dehydrogenase 0.000318951762935 0.000276342063474 -4.2609699461e-05 +UniRef50_Q7NS59 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.59644430458e-05 6.17301935544e-05 -1.42342494914e-05 +UniRef50_UPI0003B67F64 RNA polymerase sigma factor RpoD 2.55814517692e-06 2.26710190122e-05 2.01128738353e-05 +UniRef50_G8V7H8 CobN magnesium chelatase domain protein 0.000125773797886 0.00539675659168 0.00527098279379 +UniRef50_F5M3T2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000960271375145 0.000463848228053 -0.000496423147092 +UniRef50_UPI000473818F hypothetical protein, partial 1.66340535664e-05 2.20474925125e-05 5.4134389461e-06 +UniRef50_N6UY44 1.9466920759e-05 0.000229233416149 0.00020976649539 +UniRef50_Q1GMP5 Inner membrane translocator 0.00206528930816 0.000451896256958 -0.0016133930512 +UniRef50_UPI00030D61DF hypothetical protein 0.000112801970909 4.78741501312e-05 -6.49278207778e-05 +UniRef50_W8F058 1.92934716169e-05 0.000107141626013 8.78481543961e-05 +UniRef50_M4TQ85 Short chain dehydrogenase reductase SDR 1.85387037836e-05 6.84509222705e-06 -1.16936115565e-05 +UniRef50_UPI00047EB00A hypothetical protein 1.21025878465e-05 2.18789553338e-05 9.7763674873e-06 +UniRef50_B1J8H6 Asparagine synthetase 0.00117555102026 0.000256059759217 -0.000919491261043 +UniRef50_UPI0004670623 hypothetical protein 0.000357010644258 0.000314375080253 -4.2635564005e-05 +UniRef50_UPI0002000789 two component system sensor kinase 7.88387312701e-05 0.000304710185272 0.000225871454002 +UniRef50_UPI00039C791B chemotaxis protein CheY 0.000487770420764 2.93092830129e-05 -0.000458461137751 +UniRef50_X7A487 5.86677508954e-05 2.30160823006e-05 -3.56516685948e-05 +UniRef50_Q8CUD3 Resolvase 0.0174385965128 0.00812812184754 -0.00931047466526 +UniRef50_UPI0003B32E66 hypothetical protein 0.000176135786529 7.51941222431e-05 -0.000100941664286 +UniRef50_C6XLP5 Acyl CoA dehydrogenase domain protein 0.00606076329005 0.00146257231811 -0.00459819097194 +UniRef50_T0TWG5 ABC type multidrug transport system, ATPase component 0.0044184479745 0.000711266788563 -0.00370718118594 +UniRef50_B7IKZ0 Cyclic pyranopterin monophosphate synthase accessory protein 0.00294452114306 0.00821902560694 0.00527450446388 +UniRef50_G7M6W8 NADH dehydrogenase 0.000339552003766 0.000181361333789 -0.000158190669977 +UniRef50_Q3J123 Diguanylate cyclase phosphodiesterase 0.00219243249559 0.000397516895486 -0.0017949156001 +UniRef50_P59676 Penicillin binding protein 2X 0.00557115077748 0.00687194309935 0.00130079232187 +UniRef50_UPI0003612BE4 hypothetical protein 1.14043592796e-05 7.6767014122e-05 6.53626548424e-05 +UniRef50_A2RLU2 Geranyltranstransferase 0.00572979672843 0.00302023425449 -0.00270956247394 +UniRef50_H3UJR5 0.00327598783512 0.000442975057792 -0.00283301277733 +UniRef50_UPI00046D07E2 hypothetical protein, partial 3.79664459361e-06 1.25320155518e-05 8.73537095819e-06 +UniRef50_S4XRJ9 0.00125744957268 5.04640439755e-05 -0.0012069855287 +UniRef50_W5X633 GTPase EngC 3.8393901595e-06 0.00053844228356 0.0005346028934 +UniRef50_UPI0003C15F36 2.13551905378e-05 3.58392957106e-05 1.44841051728e-05 +UniRef50_Q9RUE8 Probable ABC transporter binding protein DR_1438 0.000519074501278 0.0211253326432 0.0206062581419 +UniRef50_Q9RV70 Uricase 0.000710959162569 0.0292427667278 0.0285318075652 +UniRef50_UPI00036D8F07 hypothetical protein 2.49714569773e-05 1.66429795547e-05 -8.3284774226e-06 +UniRef50_K2R7H4 0.000535615880497 0.000160024816883 -0.000375591063614 +UniRef50_G7U7S7 ABC transporter associated permease 0.000106310739375 0.00611372516394 0.00600741442457 +UniRef50_UPI00037B01D8 hypothetical protein 6.8888656086e-05 6.71356100928e-05 -1.7530459932e-06 +UniRef50_A9D7U2 BRO, N terminal 5.07657136341e-05 1.3921585499e-05 -3.68441281351e-05 +UniRef50_N0AWG4 Replicative DNA helicase 0.0131838411428 0.0147155176962 0.0015316765534 +UniRef50_T0TKM9 Transcriptional regulator, MerR family 0.000479855070575 0.000518099482802 3.8244412227e-05 +UniRef50_Q2RI90 3 dehydroquinate dehydratase 5.58051319485e-05 6.1355413231e-05 5.5502812825e-06 +UniRef50_P22036 Magnesium transporting ATPase, P type 1 0.000256386956667 0.000813539986862 0.000557153030195 +UniRef50_B9KQJ5 0.000443912111338 5.45315331482e-05 -0.00038938057819 +UniRef50_A0A037YUC7 Peptidase, M56 family 1.77070173894e-05 1.43503453809e-05 -3.3566720085e-06 +UniRef50_T0CJ91 3.50247298737e-05 2.21881846155e-05 -1.28365452582e-05 +UniRef50_Q9PET0 Transcriptional repressor NrdR 0.0048064282064 0.0113339592108 0.0065275310044 +UniRef50_C6W7J8 Arsenate reductase and related 6.11652263354e-05 6.08704799125e-05 -2.947464229e-07 +UniRef50_UPI00046A7F54 NADPH dehydrogenase 5.23444363445e-06 8.22019845388e-06 2.98575481943e-06 +UniRef50_UPI0003B5EE1D peroxiredoxin 1.13608256701e-05 0.0003606950233 0.00034933419763 +UniRef50_F7EFJ4 6.75821266239e-05 4.99167468386e-05 -1.76653797853e-05 +UniRef50_X1MX97 Marine sediment metagenome DNA, contig 5.2763259163e-06 0.000127835176637 0.000122558850721 +UniRef50_A2RLY6 Leucine tRNA ligase 0.0154113087639 0.00722407534885 -0.00818723341505 +UniRef50_UPI0002659767 PREDICTED 4.74899233435e-06 4.76101250009e-06 1.202016574e-08 +UniRef50_A7I8N1 Adenine deaminase 1.9816092577e-05 7.54042188278e-06 -1.22756706942e-05 +UniRef50_A3PL70 Diacylglycerol kinase, catalytic region 0.00182687428467 0.000334952784714 -0.00149192149996 +UniRef50_U1GSZ3 MFS transporter, FSR family, fosmidomycin resistance protein 0.0002856225069 3.24355765774e-05 -0.000253186930323 +UniRef50_UPI00047C8DD6 PTS lactose transporter subunit IIA 4.284371226e-05 3.4128513262e-05 -8.715198998e-06 +UniRef50_Q5LWX7 Flagellar L ring protein 0.0026247425881 0.0014294483974 -0.0011952941907 +UniRef50_A6LZC0 Membrane protein CF 9 family 0.00022248683036 0.00139794890034 0.00117546206998 +UniRef50_P39180 Antigen 43 0.00365359213055 0.00111057765597 -0.00254301447458 +UniRef50_UPI000381BCDA hypothetical protein, partial 1.23564108599e-05 6.77524033006e-05 5.53959924407e-05 +UniRef50_Q02PS5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000782765838147 0.000203666693245 -0.000579099144902 +UniRef50_M7XG55 7.23804420098e-06 0.000335000552769 0.000327762508568 +UniRef50_F2DFJ9 Predicted protein 5.64309976291e-05 0.000249769641664 0.000193338644035 +UniRef50_UPI0003752867 hypothetical protein 4.61472560378e-06 3.39765627527e-05 2.93618371489e-05 +UniRef50_Q820S3 Holliday junction ATP dependent DNA helicase RuvA 1.37459334894e-05 6.2161335455e-05 4.84154019656e-05 +UniRef50_Q98F08 D amino acid dehydrogenase 1 small subunit 3.44058321955e-05 2.56677390764e-05 -8.7380931191e-06 +UniRef50_P96335 Glycerol 3 phosphate transporter 0.00197600746418 0.000705230043653 -0.00127077742053 +UniRef50_Q7VQI2 Protein translocase subunit SecA 0.00220624996852 0.00178746393825 -0.00041878603027 +UniRef50_Q1QN09 Adenylate kinase 9.87731854205e-06 4.6094082131e-05 3.62167635889e-05 +UniRef50_UPI000395C8AE PREDICTED 6.44276855008e-06 6.88986456666e-06 4.4709601658e-07 +UniRef50_D5QFV4 9.6651545578e-06 2.61067076906e-05 1.64415531328e-05 +UniRef50_B7UNN8 CDP diacylglycerol pyrophosphatase 0.00237418770353 0.000836016358381 -0.00153817134515 +UniRef50_UPI000329B634 4.72653238836e-05 3.63113313674e-05 -1.09539925162e-05 +UniRef50_P08201 Nitrite reductase large subunit 0.00376779281453 0.00146586437392 -0.00230192844061 +UniRef50_L6RYU4 Outer membrane phosphoporin protein E 0.000370948508026 0.00024781821415 -0.000123130293876 +UniRef50_UPI000050FC02 helicase superfamily protein 1.79573789545e-06 3.43201924323e-05 3.25244545368e-05 +UniRef50_UPI00047D3DBB hypothetical protein 2.00042667416e-05 2.03264399351e-05 3.221731935e-07 +UniRef50_Q10X06 D alanine D alanine ligase 6.44542734621e-06 1.88089016877e-05 1.23634743415e-05 +UniRef50_UPI00047094A0 hypothetical protein 3.91101966603e-06 2.55763643963e-05 2.16653447303e-05 +UniRef50_UPI00046A8EC3 hypothetical protein 5.01178870681e-06 1.44987632349e-06 -3.56191238332e-06 +UniRef50_UPI00047C9A63 hypothetical protein 1.92270572265e-05 1.16161393702e-05 -7.6109178563e-06 +UniRef50_UPI00046B1B81 PREDICTED 2.13101921846e-05 2.14184895652e-05 1.082973806e-07 +UniRef50_V7Z9W4 Secreted protein 0.000625196849724 0.00037941891655 -0.000245777933174 +UniRef50_A0A058T0F9 FKBP type peptidyl prolyl cis trans isomerase 0.00301523366419 0.000477601140485 -0.0025376325237 +UniRef50_R6PR03 Glycosyl transferase family 2 0.000260783941645 0.00154124181574 0.00128045787409 +UniRef50_Q8FK51 Carbamate kinase 0.00222459303967 0.000913350808562 -0.00131124223111 +UniRef50_O04983 Biotin carboxylase, chloroplastic 0.00015864761654 0.0529660603013 0.0528074126848 +UniRef50_Q88JX6 Porin like protein GalP 0.00019490464012 0.00029531691028 0.00010041227016 +UniRef50_UPI0003815BE1 hypothetical protein 0.000466889945054 2.68633823042e-05 -0.00044002656275 +UniRef50_UPI0002D2EA81 hypothetical protein 2.93005912793e-05 5.21409717718e-05 2.28403804925e-05 +UniRef50_A6M2X4 Transcriptional regulator, RpiR family 0.000269632849186 0.00167987068868 0.00141023783949 +UniRef50_Q67L49 5.53188095617e-07 9.68026997234e-07 4.14838901617e-07 +UniRef50_D1WL88 Oligopeptide ABC transporter, permease protein 0.000238572622068 0.00110209120915 0.000863518587082 +UniRef50_T2E4B1 Glycosyl transferases group 1 family protein 0.000147840465605 0.000723998550887 0.000576158085282 +UniRef50_E0XT86 0.00190863702229 0.000995449568075 -0.000913187454215 +UniRef50_D7G5T9 ABC transporter ATP binding protein 0.0109174821928 0.0128379344312 0.0019204522384 +UniRef50_B0A2M2 Oxidoreductase domain protein 0.000134451085533 0.000109525992224 -2.4925093309e-05 +UniRef50_P37877 Acetate kinase 0.0133378835645 0.00120129945131 -0.0121365841132 +UniRef50_UPI0002BC838E PREDICTED 1.2941670754e-06 8.54587791577e-06 7.25171084037e-06 +UniRef50_UPI0003763223 hypothetical protein 4.63439499441e-06 2.96854956165e-06 -1.66584543276e-06 +UniRef50_Q9RYX7 Xanthine permease, putative 8.3085690866e-05 0.039338919292 0.0392558336011 +UniRef50_D3QHC5 Alkaline phosphatase like protein 0.0239592675888 0.00132680500451 -0.0226324625843 +UniRef50_B6IRJ0 ATP dependent RNA helicase, DEAD 0.00127485420303 0.000392353180564 -0.000882501022466 +UniRef50_Q5HP60 0.00248474015665 0.00331687761268 0.00083213745603 +UniRef50_A8AZI4 Penicillin binding protein 1B 0.00746008293883 0.0068815914166 -0.00057849152223 +UniRef50_C4NUT7 0.000519476131447 0.000798153257284 0.000278677125837 +UniRef50_UPI000262D06B coproporphyrinogen III oxidase 2.63725154465e-05 4.77772060321e-05 2.14046905856e-05 +UniRef50_E7AAE2 Peptidase M16 domain protein 0.000407358389015 0.00297159564592 0.0025642372569 +UniRef50_A9N1I0 Peptidase E 0.00354582089788 0.00273625735023 -0.00080956354765 +UniRef50_Q8Z2X7 Autoinducer 2 import system permease protein LsrD 0.00761012669518 0.00189322791132 -0.00571689878386 +UniRef50_H2I4X5 0.000118581986021 0.00631788757631 0.00619930559029 +UniRef50_P33915 Inner membrane ABC transporter permease protein YejE 0.00411321046148 0.000527272014461 -0.00358593844702 +UniRef50_A4B9S6 7.70291417942e-05 1.49568411552e-05 -6.2072300639e-05 +UniRef50_D1K952 SusD family protein 3.67287478014e-05 0.00478157696352 0.00474484821572 +UniRef50_A5UJ63 0.00256187323572 0.000522684433979 -0.00203918880174 +UniRef50_Q88NC9 Poly C5 epimerase 0.000500397829064 0.000458437682607 -4.1960146457e-05 +UniRef50_W7VQI0 Integral membrane protein 0.000424154947547 1.82920243923e-05 -0.000405862923155 +UniRef50_A0A022KYK2 0.000289575504688 0.000152223125476 -0.000137352379212 +UniRef50_I3UWF3 Rieske domain containing protein 0.00105382378151 0.000197536257659 -0.000856287523851 +UniRef50_UPI00016A8727 1 phosphofructokinase, partial 2.86859380197e-05 0.000253534649997 0.000224848711977 +UniRef50_A6LYB5 Nitroreductase 0.000490241543964 0.00106923010145 0.000578988557486 +UniRef50_R7PU75 0.0039047475406 0.000440771201791 -0.00346397633881 +UniRef50_P0ADY2 Peptidyl prolyl cis trans isomerase D 0.00277178881197 0.000330897506821 -0.00244089130515 +UniRef50_A4WJG1 Acetyl coenzyme A synthetase 3.38961512438e-06 3.72699726623e-05 3.38803575379e-05 +UniRef50_W1V655 9.91621466588e-05 0.000158773468762 5.96113221032e-05 +UniRef50_UPI000381A848 hypothetical protein 4.04238889418e-05 4.88743068359e-05 8.4504178941e-06 +UniRef50_P26423 Galactose 6 phosphate isomerase subunit LacA 0.0498237447466 0.0228357010629 -0.0269880436837 +UniRef50_T0TEW3 Cysteine and methionine metabolism regulator CmbR, LysR family 0.00451181539371 0.00382332976104 -0.00068848563267 +UniRef50_W1N460 3.26362068442e-05 8.35382072833e-06 -2.42823861159e-05 +UniRef50_P59191 UPF0225 protein CE1570 3.28277052032e-05 1.74992688223e-05 -1.53284363809e-05 +UniRef50_V5T139 0.000503314651798 0.00165985970133 0.00115654504953 +UniRef50_M5AMX6 Probable transposase 0.000411020114208 0.000176306235783 -0.000234713878425 +UniRef50_UPI0004195476 hypothetical protein 2.25318977592e-05 5.1010000599e-05 2.84781028398e-05 +UniRef50_Q02R79 Spermidine putrescine import ATP binding protein PotA 0.000152391906106 0.00020840375901 5.6011852904e-05 +UniRef50_Q2NE41 0.0053071582999 0.000411113742723 -0.00489604455718 +UniRef50_S1HD40 Inner membrane protein ybhI 0.000748583941995 0.000229520755339 -0.000519063186656 +UniRef50_P80644 FMN reductase 0.00129115027145 0.00131013204252 1.898177107e-05 +UniRef50_A3CL81 Glutamate 1 semialdehyde 2,1 aminomutase 8.60783199511e-06 2.73547069379e-05 1.87468749428e-05 +UniRef50_E8W9I4 2.73447387532e-05 0.000444022316567 0.000416677577814 +UniRef50_I7EMH2 0.000517561799258 0.000123643765954 -0.000393918033304 +UniRef50_UPI00047106B1 hypothetical protein 8.44426343559e-06 1.31525726656e-05 4.70830923001e-06 +UniRef50_Q3IGA3 UPF0176 protein PSHAa1433 0.0011924358975 0.000201933161601 -0.000990502735899 +UniRef50_Q8K911 PTS system mannitol specific EIICBA component 0.000757869104054 0.000258264493123 -0.000499604610931 +UniRef50_I4MXJ0 Plasmid pRiA4b ORF 3 family protein 0.00010439103014 3.92908144393e-05 -6.51002157007e-05 +UniRef50_Q8CRY9 0.0108501689485 0.00226937683915 -0.00858079210935 +UniRef50_Q8CRY8 0.0075190307128 0.00210472769869 -0.00541430301411 +UniRef50_UPI0003F066F6 PREDICTED 5.538690743e-06 1.26244818464e-05 7.0857911034e-06 +UniRef50_Q9RWT8 Sensor histidine kinase 0.000158205002264 0.00471957132774 0.00456136632548 +UniRef50_G4L3R1 Phosphoglycerate mutase family protein 6.54493821589e-05 0.00193597715673 0.00187052777457 +UniRef50_Q2FHD9 Glycerol kinase 0.0108561037072 0.0123184076074 0.0014623039002 +UniRef50_UPI00035FD70A DNA invertase 4.66917667082e-05 0.000140611694328 9.39199276198e-05 +UniRef50_Q2W731 Phosphoribosylformylglycinamidine synthase 4.2977210833e-05 2.92159759517e-05 -1.37612348813e-05 +UniRef50_D4E309 Mannitol dehydrogenase domain protein 0.000367072745853 0.000517351277587 0.000150278531734 +UniRef50_UPI0003680DBD hypothetical protein 3.53560793626e-06 5.1687833555e-06 1.63317541924e-06 +UniRef50_P9WPZ0 Probable GTPase MT1543 0.000216945970609 0.00663731516817 0.00642036919756 +UniRef50_Q5GWB1 1.94600982206e-05 1.59421917552e-05 -3.5179064654e-06 +UniRef50_N2I8V8 Autotransporter family porin 0.000702688304845 0.000449023210072 -0.000253665094773 +UniRef50_UPI00047753FE hypothetical protein 0.000168701958522 1.5140111578e-05 -0.000153561846944 +UniRef50_UPI00031A53C3 hypothetical protein 1.77897105913e-05 3.15820832976e-05 1.37923727063e-05 +UniRef50_X1K4A9 Marine sediment metagenome DNA, contig 2.18594173228e-05 1.81161233202e-05 -3.7432940026e-06 +UniRef50_C6SHK2 Nitric oxide reductase 0.000206483443246 0.00327339350539 0.00306691006214 +UniRef50_UPI0002034B4E PREDICTED 9.73845241725e-05 2.02697841871e-05 -7.71147399854e-05 +UniRef50_A3PQI0 RepB plasmid partition 0.0118137689406 0.00424355933225 -0.00757020960835 +UniRef50_UPI000237E2DC hypothetical protein 0.000877349447644 0.000473770115279 -0.000403579332365 +UniRef50_UPI00047CCD58 hypothetical protein 1.07302080373e-05 3.40078520655e-05 2.32776440282e-05 +UniRef50_W1QBV5 Monomeric glyoxalase I 1.50751672956e-05 6.54343101453e-06 -8.53173628107e-06 +UniRef50_E4FFC4 0.000353893114548 0.00384694147968 0.00349304836513 +UniRef50_G5Q502 Cytochrome c heme lyase subunit CcmF 0.00102020655181 0.000151703786922 -0.000868502764888 +UniRef50_T1YBR1 0.00360065064295 0.00135259559632 -0.00224805504663 +UniRef50_A0A011QP89 Elongation factor Tu 7.71693450054e-05 0.000296251882444 0.000219082537439 +UniRef50_P0AAA2 Inner membrane protein YagU 0.00302707033321 0.000309772767695 -0.00271729756552 +UniRef50_UPI00047958EB ABC transporter permease 0.000147852790497 0.000252075712334 0.000104222921837 +UniRef50_A0A024HBA2 Lost Adherence Sensor, LadS 9.09213297725e-05 0.000352393147119 0.000261471817346 +UniRef50_A8LQH3 0.00110107054658 0.00020319956779 -0.00089787097879 +UniRef50_A1BI09 UvrABC system protein B 0.0214788887947 0.00858170857198 -0.0128971802227 +UniRef50_P54123 Ribonuclease J 1.65807903765e-05 5.75024653662e-05 4.09216749897e-05 +UniRef50_UPI000367649B hypothetical protein 2.18097723134e-06 1.10611808734e-05 8.88020364206e-06 +UniRef50_U5PBM4 Branched chain amino acid ABC transporter substrate binding protein 8.46381140973e-05 0.00219620012472 0.00211156201062 +UniRef50_UPI000225B945 hypothetical protein 2.91149302768e-05 2.69976869552e-05 -2.1172433216e-06 +UniRef50_UPI0004669786 hypothetical protein, partial 8.52282534018e-06 2.7739430049e-05 1.92166047088e-05 +UniRef50_Q6Z2L5-2 Isoform 2 of Ribose phosphate pyrophosphokinase 1, chloroplastic 7.07816871145e-05 6.13657494693e-05 -9.4159376452e-06 +UniRef50_A6EE81 1.31295155998e-05 0.000423055625112 0.000409926109512 +UniRef50_M5EZ09 Heme molybdoenzyme heme containing subunit YedZ cytochrome b subunit 4.60070236658e-05 2.45040695048e-05 -2.1502954161e-05 +UniRef50_D7GDA9 0.00105837193136 0.00272909929485 0.00167072736349 +UniRef50_A8HTC4 Predicted protein 7.45268036362e-06 0.000124034643956 0.000116581963592 +UniRef50_X1VC56 Marine sediment metagenome DNA, contig 7.04797168241e-05 0.000332694315043 0.000262214598219 +UniRef50_G9MKE1 3.54958581964e-06 0.000444017584637 0.000440467998817 +UniRef50_R8AJR3 Oligopeptide ABC transporter permease 9.00274045531e-05 0.000612095819545 0.000522068414992 +UniRef50_O67108 DNA gyrase subunit A 7.42983207289e-06 1.84395454698e-05 1.10097133969e-05 +UniRef50_B3QUX5 NADH quinone oxidoreductase subunit A 1 1.65893040596e-05 0.000252650143748 0.000236060839688 +UniRef50_U5RYU5 Major facilitator superfamily MFS_1 0.000313499563827 0.000720041777059 0.000406542213232 +UniRef50_UPI0003596786 PREDICTED 4.30710519737e-06 4.53916626771e-06 2.3206107034e-07 +UniRef50_UPI0003B73CB0 biotin biosynthesis protein BioY 4.21523358904e-05 5.66118906267e-05 1.44595547363e-05 +UniRef50_UPI000382DFA2 hypothetical protein 1.18304158092e-05 2.41709431361e-05 1.23405273269e-05 +UniRef50_W8WVR8 Dihydrolipoyl dehydrogenase 0.000215001922882 0.00634329070424 0.00612828878136 +UniRef50_Q7WKH5 3 isopropylmalate dehydratase small subunit 1 4.76861763725e-05 4.16015382615e-05 -6.084638111e-06 +UniRef50_UPI0003ADD90A PREDICTED 2.4549713244e-05 9.28279938916e-05 6.82782806476e-05 +UniRef50_M1FC64 2.23283112608e-05 3.47780168645e-05 1.24497056037e-05 +UniRef50_T1ZZG8 0.00273297604286 0.00525724409421 0.00252426805135 +UniRef50_P76210 0.00082664870976 0.00242822239569 0.00160157368593 +UniRef50_Q46890 Putative aldolase class 2 protein YgbL 0.00101858748945 0.000877113212431 -0.000141474277019 +UniRef50_UPI00047D4CB0 uridine kinase 9.59407335344e-06 0.000642402629178 0.000632808555825 +UniRef50_S0UQQ2 Inner membrane protein ypdA 0.00248800652706 0.00166220595387 -0.00082580057319 +UniRef50_B9KWL8 Periplasmic glucan biosynthesis protein, MdoG 0.00724710065108 0.00185813985776 -0.00538896079332 +UniRef50_B5GJB9 PE PGRS family protein 4.03409736082e-06 8.29891558234e-06 4.26481822152e-06 +UniRef50_Q5NMC2 Phenylalanine tRNA ligase alpha subunit 0.00373828277342 0.00715826718034 0.00341998440692 +UniRef50_C6SH38 Transposase, IS30 family 0.0008644717302 0.00742423928974 0.00655976755954 +UniRef50_R5QF49 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.5332640187e-05 3.32572784588e-05 1.79246382718e-05 +UniRef50_D8JHI1 Response regulator 7.59020084865e-05 0.00732808975718 0.00725218774869 +UniRef50_UPI0003C13108 PREDICTED 5.42068679964e-06 2.16308607561e-05 1.62101739565e-05 +UniRef50_B0S039 Aspartate ammonia lyase 0.000546140291671 0.00141064412856 0.000864503836889 +UniRef50_Q47WP5 Ribonuclease 3 0.00565929702487 0.00372783554033 -0.00193146148454 +UniRef50_Q98PQ3 CTP synthase 3.67275115537e-06 0.000151763180557 0.000148090429402 +UniRef50_O34125 ATP dependent Clp protease proteolytic subunit 2 0.00121957405125 0.00171327410537 0.00049370005412 +UniRef50_I5E3H6 Ion channel family protein 0.00209424104014 0.000289526181564 -0.00180471485858 +UniRef50_A0A059LD30 3.19515220329e-05 7.49509596433e-05 4.29994376104e-05 +UniRef50_UPI0002DD61A2 hypothetical protein 3.64389602446e-06 1.23074057044e-05 8.66350967994e-06 +UniRef50_X0V5G6 Marine sediment metagenome DNA, contig 0.000169158444638 3.49986343903e-05 -0.000134159810248 +UniRef50_UPI00037AEC76 ABC transporter 9.14180785073e-06 2.64284520455e-05 1.72866441948e-05 +UniRef50_UPI0002F9B62A hypothetical protein 2.30253715161e-05 3.95537654613e-05 1.65283939452e-05 +UniRef50_Q031X8 D alanine D alanine ligase 0.00562189505563 0.00398994543593 -0.0016319496197 +UniRef50_UPI00046FAEC1 UDP N acetylglucosamine 2 epimerase 4.18131322732e-06 5.88664770703e-05 5.4685163843e-05 +UniRef50_F9YY53 3.2815356893e-05 0.000798542430045 0.000765727073152 +UniRef50_X5KE03 0.00438726211118 0.00110743764448 -0.0032798244667 +UniRef50_Q9RVW3 9.26725013589e-05 0.00841978950043 0.00832711699907 +UniRef50_Q67PJ3 Tryptophan synthase alpha chain 6.09357515874e-06 1.41829253144e-05 8.08935015566e-06 +UniRef50_A7IHD1 Rubredoxin type Fe4 protein 0.00514421114687 0.00024372767966 -0.00490048346721 +UniRef50_UPI0003FC0088 hypothetical protein 1.0208838013e-05 1.67160070583e-05 6.5071690453e-06 +UniRef50_UPI00037EF707 3 methyladenine DNA glycosylase 2.94746298092e-05 3.1962121097e-05 2.4874912878e-06 +UniRef50_Q17VZ5 Threonine tRNA ligase 0.0001306069476 0.0034646921404 0.0033340851928 +UniRef50_P56910 NADH quinone oxidoreductase subunit E 2 0.000235211553333 0.00227710018025 0.00204188862692 +UniRef50_D8LMU1 7.87696203726e-06 2.47584371055e-05 1.68814750682e-05 +UniRef50_Q8XZ83 Carbamoyl phosphate synthase large chain 0.00159793871997 0.00318048288349 0.00158254416352 +UniRef50_B5ZA76 Peptidoglycan deacetylase 0.0113633783778 0.00573151712243 -0.00563186125537 +UniRef50_Q038N5 Chaperone protein DnaJ 0.0245773486118 0.0115942549595 -0.0129830936523 +UniRef50_Q82WI7 3 isopropylmalate dehydratase small subunit 5.61743266199e-05 4.54537840995e-05 -1.07205425204e-05 +UniRef50_Q45539 Putative glycosyltransferase CsbB 0.00732768119136 0.00262679416836 -0.004700887023 +UniRef50_UPI0003774C37 hypothetical protein 8.45561058175e-05 4.06472860344e-05 -4.39088197831e-05 +UniRef50_Q6AB05 Porphobilinogen deaminase 0.000288164807201 0.00755117265086 0.00726300784366 +UniRef50_J9P043 9.73707841732e-05 5.19367325046e-05 -4.54340516686e-05 +UniRef50_P13086 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 4.37933182634e-05 0.000118988420335 7.51951020716e-05 +UniRef50_Q4KIU4 Type II and III secretion system protein 0.00085659922656 0.000439660239094 -0.000416938987466 +UniRef50_D6M4Q5 Urease accessory protein UreF 0.000383109642488 0.000454482719677 7.1373077189e-05 +UniRef50_F2DBH7 Predicted protein 4.50656684228e-06 3.23734966531e-05 2.78669298108e-05 +UniRef50_U7IPA8 0.000331100519292 0.00272974097321 0.00239864045392 +UniRef50_A6TVQ2 N acetylmuramic acid 6 phosphate etherase 8.58069209637e-06 9.03017730163e-06 4.4948520526e-07 +UniRef50_W5XIQ1 Transcriptional repressor NrdR 0.000112577548633 8.81145993673e-05 -2.44629492657e-05 +UniRef50_Q2IMJ3 LigA 0.00142520202653 0.0012919273032 -0.00013327472333 +UniRef50_Q7G2Z3 Expressed protein 0.000116986554754 0.00137708632747 0.00126009977272 +UniRef50_F0YT02 1.4602283493e-05 0.000544035046458 0.000529432762965 +UniRef50_A0A024L372 Protein involved in detoxification of methylglyoxal 0.000557212523168 0.000335060843375 -0.000222151679793 +UniRef50_Q9RXL7 Hydrolase, haloacid dehalogenase like family 0.000193252212719 0.0431161435292 0.0429228913165 +UniRef50_P13082 Streptomycin 3 kinase 3.69329891776e-05 0.000495884957347 0.000458951968169 +UniRef50_UPI0004541F98 PREDICTED 0.000103400886275 0.000233759924953 0.000130359038678 +UniRef50_UPI000255849F TetR family transcriptional regulator 4.35553676563e-05 4.72476592779e-05 3.6922916216e-06 +UniRef50_D6WC74 1.9718324423e-05 8.51056787246e-05 6.53873543016e-05 +UniRef50_D2N9Z4 Aminoacyltransferase FemA 0.024352029829 0.00505743938785 -0.0192945904412 +UniRef50_B2I0T9 Dehydrogenase with different specificities 0.000432235865095 0.00557328458329 0.0051410487182 +UniRef50_V9VP62 Esterase 0.00061453657647 0.000400882405239 -0.000213654171231 +UniRef50_S0FRJ9 TRAP transporter solute receptor, TAXI family 7.61008745718e-06 6.01991981323e-06 -1.59016764395e-06 +UniRef50_B7V7J4 Recombination associated protein RdgC 0.00129539899702 0.00031983758685 -0.00097556141017 +UniRef50_B1JVW3 tRNA specific 2 thiouridylase MnmA 0.0228382639823 0.0104299159791 -0.0124083480032 +UniRef50_UPI00035D67F3 hypothetical protein 0.000164596378387 6.53536001253e-05 -9.92427782617e-05 +UniRef50_UPI000410FFCF protoheme IX farnesyltransferase 6.5653742364e-06 9.56411856331e-06 2.99874432691e-06 +UniRef50_A0A023RW25 Membrane protein 0.00011889278885 0.00606973760323 0.00595084481438 +UniRef50_W8ZWW3 7.85320140554e-05 4.63016920132e-05 -3.22303220422e-05 +UniRef50_D3E135 Voltage gated chloride channel protein 0.00155872629327 0.000228941436121 -0.00132978485715 +UniRef50_UPI0003F95CA7 50S ribosomal protein L25 0.000174159937944 6.01811735834e-05 -0.000113978764361 +UniRef50_Q8DRV2 Glucan binding protein A, GbpA 0.00846564374656 0.00597460937094 -0.00249103437562 +UniRef50_F6AFI4 Patatin 0.000207030706866 0.000188299705755 -1.8731001111e-05 +UniRef50_UPI00036B8421 hypothetical protein 4.59398113682e-06 3.4982279326e-06 -1.09575320422e-06 +UniRef50_Q46SI8 0.000126532614721 2.35624066642e-05 -0.000102970208057 +UniRef50_J9YT94 Amidase 0.00471899050695 0.000134540640185 -0.00458444986677 +UniRef50_UPI00037F4511 hypothetical protein, partial 0.000229027588482 5.21583898878e-05 -0.000176869198594 +UniRef50_Q93615 Probable electron transfer flavoprotein subunit alpha, mitochondrial 0.000420966516321 0.00821986891212 0.0077989023958 +UniRef50_UPI00039BDE65 DNA helicase 6.46846464419e-06 3.01804149928e-06 -3.45042314491e-06 +UniRef50_UPI00046638E1 ADP ribose pyrophosphatase 1.98102753443e-05 0.000246869147318 0.000227058871974 +UniRef50_UPI000476B251 hypothetical protein 0.00016163827764 0.000348786790942 0.000187148513302 +UniRef50_UPI000464F730 ABC transporter ATP binding protein 6.9530872795e-06 4.88460911673e-05 4.18930038878e-05 +UniRef50_F0K963 0.000800154173473 0.000579987196886 -0.000220166976587 +UniRef50_UPI00038256A0 hypothetical protein, partial 1.61565977933e-05 4.54421517871e-05 2.92855539938e-05 +UniRef50_UPI000470FDE7 hypothetical protein 1.33313071298e-05 3.26730103224e-05 1.93417031926e-05 +UniRef50_Q0C0N0 Bifunctional enzyme IspD IspF 6.35343287073e-06 1.78230974104e-05 1.14696645397e-05 +UniRef50_A6LXC3 0.000186874251907 0.00218713458916 0.00200026033725 +UniRef50_A5UKY3 Probable phosphoglucosamine mutase 0.00357757887225 0.00237082211603 -0.00120675675622 +UniRef50_UPI00036277E7 hypothetical protein 8.80879839581e-05 6.60395486147e-05 -2.20484353434e-05 +UniRef50_UPI000375D958 hypothetical protein 5.73875336071e-06 6.57438811382e-06 8.3563475311e-07 +UniRef50_Q5HNY1 DNA repair protein RecO 0.0135816168534 0.00304570456225 -0.0105359122911 +UniRef50_A0A028XXS7 0.000145864215417 1.29806808191e-05 -0.000132883534598 +UniRef50_R8ZK04 0.000355485577134 0.000152750019926 -0.000202735557208 +UniRef50_P36967 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.0234656572759 0.0546094025174 0.0311437452415 +UniRef50_Q9RV98 Ferrochelatase 0.000167275918245 0.0342853313838 0.0341180554656 +UniRef50_I6GMY7 Inner membrane transport protein YhaO 3.09596039346e-06 2.93297519159e-06 -1.6298520187e-07 +UniRef50_A6M384 CheC domain protein 0.00097206692408 0.00156135662744 0.00058928970336 +UniRef50_R6JVY2 4 hydroxy tetrahydrodipicolinate synthase 0.000448881117165 0.00168102333956 0.00123214222239 +UniRef50_X5ESC8 4.75162744966e-05 4.52751881976e-05 -2.241086299e-06 +UniRef50_B0T2A6 Lysine tRNA ligase 0.00886522533251 0.00188542360539 -0.00697980172712 +UniRef50_P0A1X7 Methionine aminopeptidase 0.0138160220957 0.00265068643494 -0.0111653356608 +UniRef50_K4VCY9 Outer membrane specific lipoprotein transporter subunit LolE 0.00337459736092 0.000350871332905 -0.00302372602802 +UniRef50_O86013 4 hydroxy 2 oxovalerate aldolase 4.79076400224e-05 0.000293591128078 0.000245683488056 +UniRef50_UPI0002E2CBA6 hypothetical protein 1.11885602524e-05 2.96909396736e-05 1.85023794212e-05 +UniRef50_Q16AA8 0.000208325624319 1.85221840439e-05 -0.000189803440275 +UniRef50_A6LZI3 Transcriptional regulator, TetR family 0.000224249102288 0.00068009700049 0.000455847898202 +UniRef50_UPI000474BBE2 ATP synthase F0F1 subunit gamma 4.85243068262e-06 1.10075940921e-05 6.15516340948e-06 +UniRef50_E3ZDN2 PadR family transcriptional regulator 0.000165009354495 3.12974167876e-05 -0.000133711937707 +UniRef50_B7KCX9 Adenylosuccinate synthetase 1.66174883677e-05 2.04449566892e-05 3.8274683215e-06 +UniRef50_Q98EA0 Mlr4340 protein 0.000120556519087 2.54538883843e-05 -9.51026307027e-05 +UniRef50_UPI0002D46E5D hypothetical protein 2.87552387397e-05 0.000122716134845 9.39608961053e-05 +UniRef50_UPI0004226290 MarR family transcriptional regulator 1.63696073613e-05 0.000114293509246 9.79239018847e-05 +UniRef50_J8V1E5 5.4587857025e-05 0.000209144974858 0.000154557117833 +UniRef50_B6IRE2 Deoxyribodipyrimidine photolyase like protein 0.00292146556202 0.000320632300245 -0.00260083326177 +UniRef50_A0Q0M8 tRNA dimethylallyltransferase 0.000342212690917 0.000955902744388 0.000613690053471 +UniRef50_V8RAG2 Sodium 0.000630587676438 0.000346083992111 -0.000284503684327 +UniRef50_Q8CNS0 Uroporphyrinogen decarboxylase 0.0211119444678 0.00517056477889 -0.0159413796889 +UniRef50_UPI00037EED1B hypothetical protein 4.94402178791e-05 0.00455418767028 0.0045047474524 +UniRef50_UPI0002493305 amino acid ABC transporter ATP binding protein 0.000231282611081 6.02698502088e-05 -0.000171012760872 +UniRef50_UPI00046F93AF hypothetical protein, partial 2.62973069312e-05 4.88266535813e-05 2.25293466501e-05 +UniRef50_I0ZLL7 Amino acid permease associated region 0.00182941755998 0.000764670357488 -0.00106474720249 +UniRef50_I2HA76 Mobilization protein A 0.00131173147082 0.000241415767301 -0.00107031570352 +UniRef50_Q9RWB6 0.000499653438543 0.0673089917792 0.0668093383407 +UniRef50_Q9HZU3 Precorrin 2 C methyltransferase 0.000359538898309 0.000833625433925 0.000474086535616 +UniRef50_U8ZF23 UPF0125 protein Q012_00884 9.26408729856e-05 3.06990131754e-05 -6.19418598102e-05 +UniRef50_U5UJ70 MutS domain V family protein 0.00638572238472 0.000717658894036 -0.00566806349068 +UniRef50_U5T6S5 2.29394100746e-05 3.22679378939e-05 9.3285278193e-06 +UniRef50_J9WRR1 Transketolase, thiamine diphosphate binding domain protein 2.61967143253e-05 2.58173030131e-05 -3.794113122e-07 +UniRef50_R9YLA1 Ktr system potassium uptake protein A 0.020059252678 0.0025883422863 -0.0174709103917 +UniRef50_Q5HLV4 Staphylococcal accessory regulator Y 0.00800239635322 0.00144596601299 -0.00655643034023 +UniRef50_T1JU40 9.49003496099e-06 2.11190409245e-05 1.16290059635e-05 +UniRef50_Q7R725 9.79690522724e-06 0.000158552021898 0.000148755116671 +UniRef50_UPI000237E869 phage integrase 0.00012829356318 8.32447001783e-05 -4.50488630017e-05 +UniRef50_Q57466 Flagellar basal body rod protein FlgC 0.000995037286734 0.000489475201976 -0.000505562084758 +UniRef50_I4DXS5 Acyltransferase homolog 0.00653980756869 0.00675317836006 0.00021337079137 +UniRef50_Q28LT2 6,7 dimethyl 8 ribityllumazine synthase 0.00175618132571 0.00098068449862 -0.00077549682709 +UniRef50_A4WWA2 0.0050996133752 0.00192431147166 -0.00317530190354 +UniRef50_B4T381 Protein NrdI 0.0078525437345 0.000968589068264 -0.00688395466624 +UniRef50_Q9JYY8 Ribosomal RNA large subunit methyltransferase K 0.000258872596211 0.0033994934442 0.00314062084799 +UniRef50_P71297 0.000288892338411 0.00226727046924 0.00197837813083 +UniRef50_P71296 0.00101720977147 0.000419640181617 -0.000597569589853 +UniRef50_Q71WL8 Arginine tRNA ligase 0.0251829445771 0.00925905418513 -0.015923890392 +UniRef50_A4EQX8 Immunogenic protein 0.000258988767374 5.45402834293e-05 -0.000204448483945 +UniRef50_Q54QE4 Bifunctional purine synthesis protein purC E 1.33063686161e-05 1.57158277088e-05 2.4094590927e-06 +UniRef50_UPI00014AD6BB MULTISPECIES 1.97121344645e-05 8.86587792357e-06 -1.08462565409e-05 +UniRef50_I0C4X0 KipI 0.0185708698225 0.00523464516114 -0.0133362246614 +UniRef50_UPI000373927B hypothetical protein 3.19362540761e-05 3.5488129094e-05 3.5518750179e-06 +UniRef50_C5N1M3 Glyoxalase family protein 0.0114876831609 0.00105476950836 -0.0104329136525 +UniRef50_C6SQK1 0.00552387450498 0.000396398262003 -0.00512747624298 +UniRef50_Q9CHM9 Glycogen synthase 0.00446958888226 0.00085985381811 -0.00360973506415 +UniRef50_C9TNI8 NAD specific glutamate dehydrogenase 2.34136827915e-05 1.36793422497e-05 -9.7343405418e-06 +UniRef50_R6XC37 Oxidoreductase NAD binding domain protein 0.000163599808729 9.04420912307e-05 -7.31577174983e-05 +UniRef50_S4RTP3 1.06124392602e-05 2.27598503597e-05 1.21474110995e-05 +UniRef50_F3F217 Isoleucyl tRNA synthetase 0.000819044825047 0.00079202288793 -2.7021937117e-05 +UniRef50_UPI0003772113 hypothetical protein 9.50463037596e-05 5.27679253746e-05 -4.2278378385e-05 +UniRef50_Q8FCG2 0.000815428841801 8.60604221933e-05 -0.000729368419608 +UniRef50_R7QYT4 Methyltransferase type 12 0.000809707329048 0.000803336262903 -6.371066145e-06 +UniRef50_B9DIQ2 Sodium 0.00899095079396 0.00133596293888 -0.00765498785508 +UniRef50_E3DTJ4 3.553818755e-06 1.57700240415e-05 1.22162052865e-05 +UniRef50_B9KTV0 Tripartite ATP independent periplasmic transporter, DctQ component 0.000175323689711 0.00013251573117 -4.2807958541e-05 +UniRef50_UPI0003B7AA4B iron transporter 1.69570516196e-05 1.52469175422e-05 -1.7101340774e-06 +UniRef50_Q3IVN6 0.00723412102313 0.00221840105825 -0.00501571996488 +UniRef50_Q3IVN1 0.00420609001181 0.00574137484501 0.0015352848332 +UniRef50_Q3IVN0 0.00495123908695 0.00195415701071 -0.00299708207624 +UniRef50_I4Y1U6 0.000302249945156 0.000123048627157 -0.000179201317999 +UniRef50_Q3IVN2 0.0094943445681 0.0104229425363 0.0009285979682 +UniRef50_F0RJ04 Potassium uptake protein, TrkH family 8.36379591226e-05 0.0296378247298 0.0295541867707 +UniRef50_Q4L562 Probable quinol oxidase subunit 4 0.0061664681791 0.00212603088962 -0.00404043728948 +UniRef50_C2QRL4 3.32462117829e-05 0.000246924109412 0.000213677897629 +UniRef50_P0AFQ0 Inner membrane transport permease YbhR 0.0033644371676 0.0015608896218 -0.0018035475458 +UniRef50_Z5XBU2 Potassium transporting ATPase subunit B 9.24049228769e-06 0.00187557720017 0.00186633670788 +UniRef50_Q6FCU8 O methyl transferase 0.00055786106727 0.00435939715957 0.0038015360923 +UniRef50_Q9HGZ0 ATP dependent 6 phosphofructokinase 2 4.00557177518e-06 3.03595716479e-06 -9.6961461039e-07 +UniRef50_UPI000379175B hypothetical protein 0.000112429998035 2.79151643321e-05 -8.45148337029e-05 +UniRef50_F0YF70 3.19439300233e-05 9.43294211361e-06 -2.25109879097e-05 +UniRef50_Q18AR0 Acetyl CoA acetyltransferase 1.23052135111e-05 7.82849852625e-05 6.59797717514e-05 +UniRef50_V4QJE1 0.0178260887726 0.00390596078639 -0.0139201279862 +UniRef50_F0KFI6 Succinate semialdehyde dehydrogenase (+)) 0.000189098804829 0.00644100307705 0.00625190427222 +UniRef50_M4SAI5 6.91104147978e-05 0.000159020789125 8.99103743272e-05 +UniRef50_K0HLP5 Cell envelope related transcriptional attenuator 1.58205162156e-05 0.00217070389521 0.00215488337899 +UniRef50_UPI00029A71CE ATP cobalamin adenosyltransferase 9.08235093104e-06 1.4802311149e-05 5.71996021796e-06 +UniRef50_D6C476 2.16870479001e-05 0.000492157108136 0.000470470060236 +UniRef50_UPI0003B69FA4 ABC transporter ATP binding protein 8.70479517523e-06 8.78194692552e-06 7.715175029e-08 +UniRef50_UPI00037DC4C2 hypothetical protein 2.2320347284e-05 3.24254882458e-06 -1.90777984594e-05 +UniRef50_A5UNW1 Phage related minor tail protein 0.00348094779087 0.000740138400825 -0.00274080939005 +UniRef50_Q9KPI5 UPF0126 membrane protein VC_2382 0.00482413725085 0.000325119308468 -0.00449901794238 +UniRef50_D9RDD3 Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1 0.0149207677758 0.000577269139603 -0.0143434986362 +UniRef50_UPI0003EB35B9 L lactate permease, partial 1.85360730159e-06 9.87332190105e-05 9.68796117089e-05 +UniRef50_Q9CGM7 Dihydroorotase 0.00578669861729 0.00482657131642 -0.00096012730087 +UniRef50_UPI0003C11B56 3.74020350008e-06 3.85911315616e-06 1.1890965608e-07 +UniRef50_Q04HZ7 D alanine poly ligase subunit 1 0.00676455883082 0.00375753679259 -0.00300702203823 +UniRef50_P22099 Anthranilate synthase component 1 0.00301534554797 0.000490651084777 -0.00252469446319 +UniRef50_UPI00046F34F7 glycosyl transferase family 39 1.50170416029e-05 1.59452686954e-05 9.282270925e-07 +UniRef50_G1ZTT8 Sodium dependent inorganic phosphate transporter family protein 0.00690666170161 0.00106492388621 -0.0058417378154 +UniRef50_UPI000350B2EA PREDICTED 7.41862016486e-05 1.21449330137e-05 -6.20412686349e-05 +UniRef50_K5YQU9 4.18145547763e-05 2.89431342535e-05 -1.28714205228e-05 +UniRef50_UPI00046BF16E PREDICTED 1.35463219976e-06 9.13132658069e-06 7.77669438093e-06 +UniRef50_UPI0003FCF933 DNA polymerase III subunit alpha 3.60651770913e-06 2.21446169201e-06 -1.39205601712e-06 +UniRef50_C3LNG5 Amino acid ABC transporter, permease protein 0.000870281264154 0.000773755559468 -9.6525704686e-05 +UniRef50_Q9RWV7 Tryptophan tRNA ligase 0.00012796135215 0.0420833646116 0.0419554032594 +UniRef50_UPI0004560947 hypothetical protein PFL1_00311 1.44431709291e-05 1.86887923497e-05 4.2456214206e-06 +UniRef50_F0LUE5 Predicted hydrolase of the HAD superfamily 0.000582543050858 0.00138105132473 0.000798508273872 +UniRef50_K0LKT0 0.00139277597654 0.0043551082019 0.00296233222536 +UniRef50_UPI0003823C05 hypothetical protein 0.000172416776267 9.60730834794e-06 -0.000162809467919 +UniRef50_UPI0003A4E18C hemolysin expression modulating protein 4.30787682591e-05 2.60816950684e-06 -4.04705987523e-05 +UniRef50_UPI000472C7D5 diaminopimelate decarboxylase 8.90399066986e-06 8.46130280363e-05 7.57090373664e-05 +UniRef50_UPI0003715A93 phosphoribosylglycinamide synthetase 1.39468336504e-05 2.44537946885e-06 -1.15014541816e-05 +UniRef50_B0CKZ1 0.000821683249897 0.000287343111972 -0.000534340137925 +UniRef50_F7ZE55 0.00462164394839 0.000550682640576 -0.00407096130781 +UniRef50_R5FLI5 Glutathione peroxidase 0.000549736876965 0.00368616016509 0.00313642328812 +UniRef50_M9VH17 0.000262076560141 0.000305527728858 4.3451168717e-05 +UniRef50_UPI00036E90C5 hypothetical protein 8.21219037483e-05 0.000128492027548 4.63701237997e-05 +UniRef50_Q8DSG3 Aspartate tRNA ligase 0.00716310742295 0.00208883927694 -0.00507426814601 +UniRef50_U5V5C3 Putative nRPS PKS 1.72818411647e-05 9.86019527077e-05 8.1320111543e-05 +UniRef50_UPI0004705979 hypothetical protein 8.39461366984e-06 8.9122932045e-06 5.1767953466e-07 +UniRef50_UPI00035D3D1B hypothetical protein 0.000202515499788 3.19764633004e-05 -0.000170539036488 +UniRef50_UPI0003B3A97F UTP glucose 1 phosphate uridylyltransferase 0.00025123847649 0.000135111774288 -0.000116126702202 +UniRef50_P77607 0.000370881898274 0.000551289092249 0.000180407193975 +UniRef50_X1DZD1 Marine sediment metagenome DNA, contig 2.47205412101e-05 5.81197372885e-05 3.33991960784e-05 +UniRef50_Q5NWG5 Isopentenyl diphosphate Delta isomerase 2 7.43213996447e-05 1.90806838428e-05 -5.52407158019e-05 +UniRef50_UPI000225ADDB large conductance mechanosensitive channel protein MscL 5.40995468574e-05 6.10462269887e-05 6.9466801313e-06 +UniRef50_C7TN90 ABC transporter, amino acid binding protein 0.00702969874428 0.00623223467489 -0.00079746406939 +UniRef50_A5UKX8 O linked GlcNAc transferase 0.00245823093574 0.000882767705338 -0.0015754632304 +UniRef50_UPI000375E38D hypothetical protein 6.97414799666e-06 6.26460530979e-05 5.56719051012e-05 +UniRef50_Q7U8I1 Fumarate hydratase class II 6.78675023395e-06 1.25911332666e-05 5.80438303265e-06 +UniRef50_I6U4E4 0.00729093234313 0.00133814022035 -0.00595279212278 +UniRef50_P0ADI8 0.000329202897256 0.000626671157593 0.000297468260337 +UniRef50_E8SDZ5 0.025412918601 0.00243198529974 -0.0229809333013 +UniRef50_P18642 Protein ImpB 0.00159003262334 0.00020250288357 -0.00138752973977 +UniRef50_A4VP76 Lipoprotein, putative 0.000700301055808 0.000177367390508 -0.0005229336653 +UniRef50_UPI00035D47CC hypothetical protein, partial 0.000234417190976 3.95394460445e-05 -0.000194877744931 +UniRef50_UPI00029A6A13 binding protein dependent transport system inner membrane protein 1.1004921197e-05 3.18472320783e-05 2.08423108813e-05 +UniRef50_I0ZSX5 Transporter, major facilitator family protein 0.00111558990951 0.000736370815849 -0.000379219093661 +UniRef50_F3Y8Y9 Altronate oxidoreductase 0.000155985945804 0.000223161238178 6.7175292374e-05 +UniRef50_P0A963 L asparaginase 1 0.00166646714253 0.000566806690887 -0.00109966045164 +UniRef50_Q46MN5 Hydrophobe amphiphile efflux 1 HAE1 0.000808129526279 6.15243135783e-05 -0.000746605212701 +UniRef50_Q6FFX5 Ribonuclease PH 4.25592345041e-05 1.50644653298e-05 -2.74947691743e-05 +UniRef50_A6LWL3 Collagen triple helix repeat 4.34391241527e-05 0.000267648352131 0.000224209227978 +UniRef50_O69754 Trans 2,3 dihydro 3 hydroxyanthranilate isomerase 0.000289451916503 4.70367337981e-05 -0.000242415182705 +UniRef50_UPI00037CA56D hypothetical protein 8.90002479414e-05 1.50535445417e-05 -7.39467033997e-05 +UniRef50_UPI0003A01C14 iron ABC transporter permease 1.0691662724e-05 6.91033536546e-06 -3.78132735854e-06 +UniRef50_R5D7P7 ABC transporter permease protein 0.000166933348714 7.35342772658e-05 -9.33990714482e-05 +UniRef50_UPI00047ED6FC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.30597506173e-05 6.01389356282e-06 -7.04585705448e-06 +UniRef50_R7R1P9 Cobalamin biosynthesis protein CbiM 0.000276719895371 0.0056523464125 0.00537562651713 +UniRef50_B1YU48 Uracil phosphoribosyltransferase 6.43682564735e-05 0.000118842361961 5.44741054875e-05 +UniRef50_Q1J275 Transcriptional regulator, Crp Fnr family 0.000343169080774 0.0323418371894 0.0319986681086 +UniRef50_T9JR44 8.17766565087e-06 1.39143415988e-05 5.73667594793e-06 +UniRef50_P27431 50S ribosomal protein L16 arginine hydroxylase 0.00486200865535 0.00124857238685 -0.0036134362685 +UniRef50_Q6ZDB2 5.84146777618e-05 0.000106788539384 4.83738616222e-05 +UniRef50_Q5HLY0 Probable molybdenum cofactor guanylyltransferase 0.0179032963372 0.00449540983695 -0.0134078865002 +UniRef50_A1BAJ3 Peptidase M23B 0.000107386961053 3.4427617587e-05 -7.2959343466e-05 +UniRef50_Q3IW06 0.00110454695865 0.000591561929607 -0.000512985029043 +UniRef50_UPI00046F60DA hypothetical protein 2.79593827946e-05 1.25907867892e-05 -1.53685960054e-05 +UniRef50_UPI00035CF7ED hypothetical protein 7.03139388276e-06 2.6943276063e-05 1.99118821802e-05 +UniRef50_UPI00047B007B 2 oxoglutarate dehydrogenase 1.41968731216e-06 1.86870176321e-06 4.4901445105e-07 +UniRef50_E6Q0D3 4.67514356353e-05 9.02721019445e-05 4.35206663092e-05 +UniRef50_D7GEE3 rRNA methylase 0.000278245200628 0.00505317374271 0.00477492854208 +UniRef50_UPI0002DEB9E1 hypothetical protein 5.43702773776e-06 0.000100701695306 9.52646675682e-05 +UniRef50_Q48JY0 Dihydroorotate dehydrogenase 1.73529348147e-05 3.14176785445e-05 1.40647437298e-05 +UniRef50_C6SS67 0.00609909338577 0.00111314570002 -0.00498594768575 +UniRef50_B8H5V4 Uronate isomerase 0.00617867240817 0.00188964220599 -0.00428903020218 +UniRef50_Q7UWS1 Na translocating NADH quinone reductase subunit E 8.88263240391e-05 0.000114629503914 2.58031798749e-05 +UniRef50_UPI000412F4F5 hypothetical protein 9.35268203105e-05 1.35502772672e-05 -7.99765430433e-05 +UniRef50_A3PQF5 Peptidase M24 0.00473323388577 0.000873830695649 -0.00385940319012 +UniRef50_A5W310 Major facilitator superfamily MFS_1 0.00116368382066 0.000896813951921 -0.000266869868739 +UniRef50_P76550 0.00357456103561 0.000213997612461 -0.00336056342315 +UniRef50_UPI00035E8F3F hypothetical protein 0.000178684763972 5.92784985726e-05 -0.000119406265399 +UniRef50_A5UAG1 Ribonuclease T 0.0031953885718 0.00297450547729 -0.00022088309451 +UniRef50_UPI0003739549 hypothetical protein 1.99902795493e-05 0.000575638776795 0.000555648497246 +UniRef50_A7X3B0 Transcriptional repressor NrdR 0.030715149197 0.00313065537791 -0.0275844938191 +UniRef50_F9VBF9 OPT family oligopeptide transporter 7.88619753888e-05 0.00095919906521 0.000880337089821 +UniRef50_D4HBS7 Oxidoreductase, NAD binding domain protein 0.000143895548483 0.00654586537552 0.00640196982704 +UniRef50_R9SJM3 Amidohydrolase 0.00270630887141 0.00276610145639 5.979258498e-05 +UniRef50_A5UKM3 0.00371352824693 0.000772767802043 -0.00294076044489 +UniRef50_A5UKM2 0.00233569523991 0.000143010510987 -0.00219268472892 +UniRef50_A3PIB0 OmpA MotB domain protein 0.000503715856153 0.000115810472618 -0.000387905383535 +UniRef50_A6FVX3 Transcriptional regulator, MarR family protein 0.00233838690787 0.000495508120008 -0.00184287878786 +UniRef50_UPI00016C448A hypothetical protein 3.66129074076e-05 0.00735517335542 0.00731856044801 +UniRef50_Q49890 Tyrosine recombinase XerD 0.000246186514471 0.00433203616319 0.00408584964872 +UniRef50_Q5LND3 Orotidine 5 phosphate decarboxylase 0.00120024755922 0.000254218110649 -0.000946029448571 +UniRef50_Q14JF9 Protoheme IX farnesyltransferase 4.36984379905e-06 1.73241208433e-05 1.29542770443e-05 +UniRef50_Q5HRV4 0.00362410935657 0.000720284646817 -0.00290382470975 +UniRef50_A3CTR9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 3.2162174718e-05 8.77409774415e-06 -2.33880769738e-05 +UniRef50_Q5HKN5 0.00291100899235 0.000935288741878 -0.00197572025047 +UniRef50_UPI0002EC4132 hypothetical protein 5.59550563826e-06 4.58596831372e-05 4.02641774989e-05 +UniRef50_Q9RUU2 DNA helicase RecQ 9.47131982586e-05 0.0127566692968 0.0126619560985 +UniRef50_A1SRV2 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.84537674543e-05 4.9457664995e-06 -1.35080009548e-05 +UniRef50_UPI0004574B02 PREDICTED 3.60290733687e-05 1.55955269346e-05 -2.04335464341e-05 +UniRef50_UPI00047B0F79 ATP dependent DNA helicase PcrA 1.7192994877e-05 8.00220796498e-06 -9.19078691202e-06 +UniRef50_J4Y9F0 5.80457606104e-05 0.000152001875169 9.39561145586e-05 +UniRef50_Q2SSQ6 ATP dependent 6 phosphofructokinase 1.43257646858e-05 1.01783254702e-05 -4.1474392156e-06 +UniRef50_UPI0003B58BDB glutathione synthetase 3.40271525092e-06 5.55957823724e-06 2.15686298632e-06 +UniRef50_D0D8F2 Tripartite ATP independent periplasmic transporter, DctQ component 0.000155450032925 6.28655053514e-05 -9.25845275736e-05 +UniRef50_P76168 Putative lambdoid prophage Qin defective integrase 0.00283808496387 0.000556406631506 -0.00228167833236 +UniRef50_B9KWD2 Quinol oxidase subunit II 0.00103228869028 0.000574410320154 -0.000457878370126 +UniRef50_UPI00035F8901 hypothetical protein 0.00015134020674 3.38427871912e-05 -0.000117497419549 +UniRef50_Q9RYN5 Cytochrome C6, putative 0.000146881707723 0.0616682951815 0.0615214134738 +UniRef50_B7H202 Peptidase M16C associated family protein 0.00020860888321 0.00768012469634 0.00747151581313 +UniRef50_Q5HPK4 0.00781214809412 0.00287671465947 -0.00493543343465 +UniRef50_Q2YSU1 Teichoic acid biosynthesis protein 0.0124137274904 0.00164799048651 -0.0107657370039 +UniRef50_UPI000479479D family 2 glycosyl transferase 0.000149072790182 3.4977564636e-05 -0.000114095225546 +UniRef50_A4WRV1 Transport associated 0.000984044406011 0.000713594233594 -0.000270450172417 +UniRef50_T2GRR2 0.000150440879345 0.000238304604967 8.7863725622e-05 +UniRef50_Q7NPI6 Glutamate 5 kinase 5.33224891031e-06 1.2479552297e-05 7.14730338669e-06 +UniRef50_A4WRB0 Spheroidene monooxygenase 0.00470119357408 0.00131760096559 -0.00338359260849 +UniRef50_Q6GJ94 Putative long chain fatty acid CoA ligase VraA 0.0117071822348 0.00174581500354 -0.00996136723126 +UniRef50_Q6CS32 KLLA0D04378p 9.27563484787e-06 2.40769396293e-05 1.48013047814e-05 +UniRef50_A5IV89 0.0132558476748 0.000386877779725 -0.0128689698951 +UniRef50_UPI00047ED515 cobyrinic acid a c diamide adenosyltransferase 2.44569457527e-05 0.000380546518311 0.000356089572558 +UniRef50_UPI000407EA99 hypothetical protein 3.53569480711e-06 3.13398385952e-06 -4.0171094759e-07 +UniRef50_Q67MF5 Lipoyl synthase 6.2856807304e-06 4.0796091846e-05 3.45104111156e-05 +UniRef50_A7X0W1 Phosphoribosylformylglycinamidine synthase 2 0.023261372983 0.00504826030323 -0.0182131126798 +UniRef50_N2V265 Glycosyltransferase like 2 family protein 0.00159680589346 0.00129792721244 -0.00029887868102 +UniRef50_Q5SHZ8 8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase 0.000262397933841 0.0309982963532 0.0307358984194 +UniRef50_D3HNL5 Cytochrome c oxidase subunit 2 0.00140665428789 0.000405503761083 -0.00100115052681 +UniRef50_B4D9A7 Cobyrinic acid ac diamide synthase 6.12068901095e-06 8.88202067888e-06 2.76133166793e-06 +UniRef50_G7M7X4 Replisome organizer region containing protein 0.000374393301598 0.000533016997375 0.000158623695777 +UniRef50_Q67PR4 Methionyl tRNA formyltransferase 5.01340415809e-06 2.07405040309e-05 1.57270998728e-05 +UniRef50_G0D6I9 0.00271317277564 7.58316968283e-05 -0.00263734107881 +UniRef50_Q9ZMH8 Putative zinc metalloprotease jhp_0242 0.00022948630826 0.00629732825043 0.00606784194217 +UniRef50_P33345 Putative molybdate metabolism regulator 0.000699724652584 0.000137360842467 -0.000562363810117 +UniRef50_V5SX49 Chemotaxis protein CheY 0.000505619055759 0.00154777703004 0.00104215797428 +UniRef50_F3CHT8 Histidine lysine arginine ornithine ABC transporter permease HisM 4.54090265867e-05 0.000194165312638 0.000148756286051 +UniRef50_UPI0004010090 NUDIX hydrolase 0.000174397233424 1.77809743983e-05 -0.000156616259026 +UniRef50_UPI0003A6958B DNA polymerase IV 4.33869155643e-06 8.6224874575e-06 4.28379590107e-06 +UniRef50_UPI0003695FA0 hypothetical protein 2.38273197906e-06 3.23231165328e-06 8.4957967422e-07 +UniRef50_B5XPC8 Uridine kinase 1.06704553196e-05 0.000311567292098 0.000300896836778 +UniRef50_S2IZA5 2.64852275158e-05 7.92441963827e-05 5.27589688669e-05 +UniRef50_V5T4Y9 AraC family transcriptional regulator 0.00132250410445 0.000273441393692 -0.00104906271076 +UniRef50_Q1LLQ3 Cbb3 type cytochrome oxidase, subunit I 0.000118955668759 0.00191743787 0.00179848220124 +UniRef50_X1XSD9 0.0217858521546 0.00434002203139 -0.0174458301232 +UniRef50_Z2CD30 0.0121435573411 0.00136286899342 -0.0107806883477 +UniRef50_Q9RUE5 0.000289631193489 0.0224746360002 0.0221850048067 +UniRef50_Q9RUE6 0.000166917856689 0.0330413213749 0.0328744035182 +UniRef50_UPI0003728022 hypothetical protein 8.13009554226e-06 2.12148291955e-05 1.30847336532e-05 +UniRef50_C1CRM5 9.10513168199e-06 0.00120642519994 0.00119732006826 +UniRef50_L0KKT8 7.1396699805e-05 7.66431637179e-05 5.2464639129e-06 +UniRef50_R4QK25 GTPase 9.29005714967e-05 0.0026534848763 0.0025605843048 +UniRef50_Q98QH1 Lysine tRNA ligase 1 3.68821755283e-06 7.25193306518e-06 3.56371551235e-06 +UniRef50_UPI00040189EA C4 dicarboxylate ABC transporter permease 9.99921429727e-05 1.50867724728e-05 -8.49053704999e-05 +UniRef50_P77187 0.00264488239814 0.00187348850034 -0.0007713938978 +UniRef50_W8T289 0.00167972234275 0.00122200015942 -0.00045772218333 +UniRef50_X5QID8 Transposase 0.00587713518861 0.00111244149756 -0.00476469369105 +UniRef50_UPI0002EB2D0F hypothetical protein 0.000216783665046 0.000114815751979 -0.000101967913067 +UniRef50_Q1QBW0 Lipid A export ATP binding permease protein MsbA 0.000141840916575 0.0075247841623 0.00738294324573 +UniRef50_E5VNE0 DNA replication and repair protein RecF 3.38858059911e-05 8.72094224864e-05 5.33236164953e-05 +UniRef50_UPI00047C7FF5 hypothetical protein 5.89023881796e-05 7.34542743403e-06 -5.15569607456e-05 +UniRef50_UPI000474B713 phosphoglucomutase 1.47721541472e-05 1.0699542929e-05 -4.0726112182e-06 +UniRef50_UPI0003653228 hypothetical protein 1.15631276669e-05 2.17336897434e-05 1.01705620765e-05 +UniRef50_E3A662 Signal recognition particle receptor FtsY 0.000130359593674 0.000212834350657 8.2474756983e-05 +UniRef50_B0V727 0.000205901448467 0.00927153267233 0.00906563122386 +UniRef50_UPI0003772B6E hypothetical protein 7.69724654099e-06 7.92368275104e-06 2.2643621005e-07 +UniRef50_E8YFF3 Ribonucleoside diphosphate reductase 0.000711528810748 0.000538104462594 -0.000173424348154 +UniRef50_J7QHS4 0.000222050581675 0.000343391517665 0.00012134093599 +UniRef50_D3DZ50 Nicotinate phosphoribosyltransferase 0.00280915717911 0.0004372719365 -0.00237188524261 +UniRef50_W1T644 Fructoselysine transporter 0.000334058397217 0.000522684433979 0.000188626036762 +UniRef50_X7F912 Malto oligosyltrehalose trehalohydrolase 0.00446198354867 0.00100868154914 -0.00345330199953 +UniRef50_Q28R66 Anthranilate phosphoribosyltransferase 5.50630815389e-05 3.08177469518e-05 -2.42453345871e-05 +UniRef50_UPI00037E8315 hypothetical protein 3.27026475869e-05 2.49838842643e-05 -7.7187633226e-06 +UniRef50_U6IKF5 Adenylyltransferase and sulfurtransferase 1.35303218501e-05 3.07413896933e-05 1.72110678432e-05 +UniRef50_P05846 Transposon Tn7 transposition protein TnsC 9.58086266163e-05 0.00495861217892 0.0048628035523 +UniRef50_S5Y8G8 Penicillin binding protein, 1A family 0.00364778274832 0.000652086324375 -0.00299569642395 +UniRef50_P0AFM0 Paraquat inducible protein A 0.003890751589 0.000494203946313 -0.00339654764269 +UniRef50_Q6GHW0 UPF0348 protein SAR1099 0.0155989583656 0.00452547063447 -0.0110734877311 +UniRef50_UPI00042C781F PREDICTED 8.84366946958e-06 2.28038111158e-05 1.39601416462e-05 +UniRef50_G7U8E3 Adenosylmethionine 8 amino 7 oxononanoate transaminase 9.50048629665e-05 0.0053461277422 0.00525112287923 +UniRef50_P52044 0.00240821408399 0.00119792480302 -0.00121028928097 +UniRef50_O50274 Bifunctional enzyme CysN CysC 0.000757699037971 0.000376910497654 -0.000380788540317 +UniRef50_F4N7B8 Pirin like protein PA2418 1.06497585971e-05 1.50994387245e-05 4.4496801274e-06 +UniRef50_W5X7C0 NADH dependent flavin oxidoreductase 8.80457839425e-05 0.000198944786583 0.000110899002641 +UniRef50_V9TYA5 Beta ketoadipate enol lactone hydrolase 0.000831552333171 0.000238800570243 -0.000592751762928 +UniRef50_X8AP60 Recombination O family protein 1.37815117514e-05 5.48316910805e-05 4.10501793291e-05 +UniRef50_Q9RTA5 0.000494934185971 0.0144362969055 0.0139413627195 +UniRef50_UPI000225F589 hypothetical protein 4.1642392299e-05 6.98506028045e-05 2.82082105055e-05 +UniRef50_Q9A545 5 hydroxyisourate hydrolase 2.4640340016e-05 0.000195005762676 0.00017036542266 +UniRef50_Q9RTA6 1.70189237437e-05 0.00601737320786 0.00600035428412 +UniRef50_C1CUQ9 Translation initiation factor IF 2 0.000133565049162 0.022789168761 0.0226556037118 +UniRef50_UPI000478DE35 cytochrome Cbb3 3.94054754604e-05 2.74418645663e-05 -1.19636108941e-05 +UniRef50_UPI000361F45B hypothetical protein 7.38374652608e-06 0.000111796968922 0.000104413222396 +UniRef50_C7BXE2 9.64614963009e-05 0.00507528460708 0.00497882311078 +UniRef50_F3S6G5 6.10692268204e-06 1.14615721896e-05 5.35464950756e-06 +UniRef50_P34843 Cytochrome c oxidase subunit 3 8.56104260302e-06 1.71982546014e-05 8.63721199838e-06 +UniRef50_UPI00047810F9 hypothetical protein 4.98532368506e-06 1.11034267668e-05 6.11810308174e-06 +UniRef50_H6LDW2 UDP galactopyranose mutase Glf 0.00165416474913 0.000909745951537 -0.000744418797593 +UniRef50_W6V4Z4 3.08103365752e-05 0.000969042861533 0.000938232524958 +UniRef50_D5AQK7 Membrane protein, putative 0.00043544807847 3.67940302843e-05 -0.000398654048186 +UniRef50_B7LM74 Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase 0.00222466865299 0.000994650212072 -0.00123001844092 +UniRef50_P74061 Ribulose phosphate 3 epimerase 1.48774802123e-05 0.000334852181197 0.000319974700985 +UniRef50_UPI000478D8DB hypothetical protein 3.62003055997e-06 8.52261334415e-06 4.90258278418e-06 +UniRef50_A2VSU2 NAD NADP transhydrogenase beta subunit 4.43173169831e-06 6.73332841153e-05 6.2901552417e-05 +UniRef50_Q01A90 WGS project CAID00000000 data, contig chromosome 04 3.1368738326e-05 1.29116903421e-05 -1.84570479839e-05 +UniRef50_UPI0004631E88 hypothetical protein 0.000143666297746 2.08832716849e-05 -0.000122783026061 +UniRef50_P59522 Ribosomal RNA small subunit methyltransferase H 1.29433433717e-05 7.58522854409e-06 -5.35811482761e-06 +UniRef50_I0HWW2 6.16540863228e-06 5.59402885045e-06 -5.7137978183e-07 +UniRef50_UPI000370D7A6 hypothetical protein 0.000548524101817 1.92467755156e-05 -0.000529277326301 +UniRef50_Q54DD3 Aminomethyltransferase, mitochondrial 1.74088406746e-05 7.72413407574e-06 -9.68470659886e-06 +UniRef50_Q8DPZ3 Release factor glutamine methyltransferase 0.00443595805177 0.00247728959328 -0.00195866845849 +UniRef50_UPI000362B874 hypothetical protein 1.27571184279e-05 5.92038400701e-05 4.64467216422e-05 +UniRef50_W8TSF6 0.000905348833236 2.67461482819e-05 -0.000878602684954 +UniRef50_Q57NU9 GTP cyclohydrolase 2 0.0070607440529 0.000297298696507 -0.00676344535639 +UniRef50_B7V9G1 0.000452816463171 0.000134031787524 -0.000318784675647 +UniRef50_UPI00016C4BB1 hypothetical protein 5.45450439872e-05 0.00933914464854 0.00928459960455 +UniRef50_D5ALH8 Lipoprotein, putative 0.000426778464075 3.83368587575e-05 -0.000388441605318 +UniRef50_J3D958 2.18258229799e-06 7.51101544426e-07 -1.43148075356e-06 +UniRef50_H9KM75 2.05104008462e-05 8.52604236091e-06 -1.19843584853e-05 +UniRef50_F8GU79 0.000365378352266 0.000974994530444 0.000609616178178 +UniRef50_Q9KZV6 Polyphosphate kinase 1.12991347959e-05 0.000435525486461 0.000424226351665 +UniRef50_C1CQE1 UPF0340 protein SPT_0687 0.00683596222978 0.00687122181446 3.525958468e-05 +UniRef50_UPI0004660C96 amino acid lyase 2.35739754899e-05 4.37561243085e-05 2.01821488186e-05 +UniRef50_F0P462 0.0199940566202 0.00724468779945 -0.0127493688207 +UniRef50_UPI00036A8875 hypothetical protein 1.89414550079e-05 7.42446019108e-06 -1.15169948168e-05 +UniRef50_G8RED1 Virulence associated cell wall anchored protein SasG 0.000790249088534 0.000733886681627 -5.6362406907e-05 +UniRef50_UPI0004786393 sugar ABC transporter permease 0.000450298971242 0.000242576391471 -0.000207722579771 +UniRef50_U6KDN7 6.79627126107e-06 1.3320931857e-05 6.52466059593e-06 +UniRef50_H9KJ92 8.07850647621e-06 0.00402533782494 0.00401725931846 +UniRef50_UPI000470B6F6 DEAD DEAH box helicase 3.40017981456e-05 3.38543303062e-05 -1.474678394e-07 +UniRef50_B2UUU1 Purine nucleoside phosphorylase DeoD type 3.11788512056e-05 0.00748561484895 0.00745443599774 +UniRef50_P42693 Peptidyl prolyl cis trans isomerase 3.30346762676e-05 0.000372922758717 0.000339888082449 +UniRef50_UPI000472ECAA UDP N acetylmuramate alanine ligase 1.43197527948e-05 4.48430531292e-06 -9.83544748188e-06 +UniRef50_I7DYY9 Cell division protein ftsW 0.011309069864 0.0058243377205 -0.0054847321435 +UniRef50_A6LVT1 5.88595616769e-05 0.00154461696835 0.00148575740667 +UniRef50_P44951 Diaminobutyrate 2 oxoglutarate aminotransferase 0.000646073060019 0.00601066894547 0.00536459588545 +UniRef50_A6LVT2 0.000223309298637 0.000173206278698 -5.0103019939e-05 +UniRef50_Q3IVS3 RES domain containing protein 0.0168927602896 0.00427198393611 -0.0126207763535 +UniRef50_Q31I68 Ribosomal RNA small subunit methyltransferase H 3.24585674492e-05 9.17547092342e-06 -2.32830965258e-05 +UniRef50_M1MGS7 Polysaccharide deacetylase 0.000735039622704 0.00067283486121 -6.2204761494e-05 +UniRef50_G0GLQ7 ATP dependent RNA helicase HrpB 0.0036807713272 0.00054237715904 -0.00313839416816 +UniRef50_UPI00021982B8 hypothetical protein, partial 1.0419552553e-06 7.88390049002e-06 6.84194523472e-06 +UniRef50_M4R0W4 Metalloendopeptidase 0.000719024946491 0.00870234727323 0.00798332232674 +UniRef50_UPI00034A5B30 CoA transferase 5.39502526814e-06 0.000130757449534 0.000125362424266 +UniRef50_F9P4K2 Putative IS1167, transposase 7.60131633467e-05 0.000287330510962 0.000211317347615 +UniRef50_Q89SJ2 Blr2408 protein 3.28570837337e-05 2.81066409565e-05 -4.7504427772e-06 +UniRef50_Q7TTY7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.19434505497e-05 1.7436368827e-05 5.4929182773e-06 +UniRef50_A3LIZ0 0.00112723936828 0.00118957248332 6.233311504e-05 +UniRef50_Q9I700 Beta alanine pyruvate aminotransferase 0.00138355348105 0.00549564207452 0.00411208859347 +UniRef50_U9I2I4 0.000115738844174 4.8826129276e-05 -6.6912714898e-05 +UniRef50_B6V383 Tra8 0.00689361364181 0.00244381461703 -0.00444979902478 +UniRef50_P34030 DNA gyrase subunit A 2.4072185288e-05 5.17667399579e-05 2.76945546699e-05 +UniRef50_Q9HXI4 Inositol 1 monophosphatase 0.00222246776555 0.00153974873813 -0.00068271902742 +UniRef50_UPI00046A5EF5 hypothetical protein 9.09709626986e-06 5.59322704789e-06 -3.50386922197e-06 +UniRef50_Q9RS69 0.001398096255 0.0953508854204 0.0939527891654 +UniRef50_Q7A7F8 0.0132944994987 0.00113479507977 -0.0121597044189 +UniRef50_Q16DP8 Chemotactic signal response protein, putative 0.000155483077426 7.58800115333e-05 -7.96030658927e-05 +UniRef50_P12782 Phosphoglycerate kinase, chloroplastic 5.52648229123e-06 5.55378641455e-05 5.00113818543e-05 +UniRef50_UPI0001BF6917 hypothetical protein SMAC_10596, partial 5.57706239498e-05 9.24753853381e-05 3.67047613883e-05 +UniRef50_Q3IVS7 0.00584008849251 0.00173947343312 -0.00410061505939 +UniRef50_Q3IVS4 0.0108890128815 0.00347740901605 -0.00741160386545 +UniRef50_Q3IVS5 0.00685401774908 0.00351592618433 -0.00333809156475 +UniRef50_Q0AVV3 3 oxoacyl [acyl carrier protein] synthase 3 8.5723474247e-05 1.69441993868e-05 -6.87792748602e-05 +UniRef50_Q3IVS1 0.0116515056726 0.00308732552268 -0.00856418014992 +UniRef50_P72161 D alanyl D alanine endopeptidase 0.00117281342928 0.000265068561785 -0.000907744867495 +UniRef50_K2AFL1 Type I secretion system ATPase 0.000143487679681 7.49721877522e-05 -6.85154919288e-05 +UniRef50_G2T6A4 2.96037608201e-05 3.95346542416e-05 9.9308934215e-06 +UniRef50_Q390S8 Drug resistance transporter EmrB QacA subfamily 0.000553677575648 0.000245894354798 -0.00030778322085 +UniRef50_UPI00036D110C hypothetical protein 1.35020815986e-05 1.07712195005e-05 -2.7308620981e-06 +UniRef50_A5UM36 Predicted RecB family exonuclease 0.00217010783799 0.000708941581512 -0.00146116625648 +UniRef50_UPI0004202255 hypothetical protein 1.73896353086e-06 2.50848362246e-06 7.695200916e-07 +UniRef50_E8SNW4 4.99012729997e-06 0.000259122942089 0.000254132814789 +UniRef50_UPI000417C86E heme biosynthesis protein HemY 0.000408524562383 0.000298985546146 -0.000109539016237 +UniRef50_UPI0003B5B9BE leucyl phenylalanyl tRNA protein transferase 7.62334786049e-06 4.55687237237e-05 3.79453758632e-05 +UniRef50_UPI00047B9601 hypothetical protein 4.94408191124e-05 5.56414887692e-05 6.2006696568e-06 +UniRef50_UPI0004642A7D hypothetical protein 3.52989399503e-06 9.10232190284e-06 5.57242790781e-06 +UniRef50_U3T4I1 Phosphate ABC transporter periplasmic substrate binding protein 7.96928575227e-06 0.00316811152918 0.00316014224343 +UniRef50_UPI00035E6AC5 hypothetical protein 9.67530528816e-06 0.000107748550853 9.80732455648e-05 +UniRef50_Q67P77 Polyribonucleotide nucleotidyltransferase 5.06178554828e-06 0.000938403352861 0.000933341567313 +UniRef50_UPI0003B791AF hypothetical protein, partial 0.000259370525103 0.00023537418319 -2.3996341913e-05 +UniRef50_Q55141 Acetolactate synthase small subunit 5.38322496553e-05 0.000869621497587 0.000815789247932 +UniRef50_B9NXE5 Calcium binding hemolysin protein, putative 2.69894470644e-06 2.08375318347e-06 -6.1519152297e-07 +UniRef50_I6SUE0 ABC transporter permease 0.00386082320774 0.000411440696925 -0.00344938251082 +UniRef50_A6DDD4 7.01441746586e-06 6.78530106972e-05 6.08385932313e-05 +UniRef50_D6B6F5 AsnC family transcriptional regulator 4.30285250628e-05 9.07059798007e-05 4.76774547379e-05 +UniRef50_F4DU59 Protein disulfide isomerase like protein 0.000754391977334 0.00026057356341 -0.000493818413924 +UniRef50_Q4FS24 Putative phosphoenolpyruvate synthase regulatory protein 0.0012567595625 0.00535348288774 0.00409672332524 +UniRef50_A1B8P9 0.0054071639162 0.000472451118009 -0.00493471279819 +UniRef50_R5TVL0 0.000421775899907 5.79293995353e-05 -0.000363846500372 +UniRef50_C5YKS4 0.000221024832029 2.95695012863e-05 -0.000191455330743 +UniRef50_UPI000365F03D hypothetical protein 2.18749084645e-06 4.2795898297e-06 2.09209898325e-06 +UniRef50_UPI0004724D34 hypothetical protein 7.11604608968e-05 0.000223713600204 0.000152553139307 +UniRef50_B7MTN6 Thiamine kinase 0.00464953880898 0.000613477546689 -0.00403606126229 +UniRef50_G7VSI0 0.000536709936758 0.000600644146164 6.3934209406e-05 +UniRef50_K6UQ90 2.29508420679e-05 3.37360097368e-05 1.07851676689e-05 +UniRef50_S4Y5B1 7.35964064076e-06 2.30738673337e-05 1.57142266929e-05 +UniRef50_A7ZR32 0.000247640459339 0.00830505590917 0.00805741544983 +UniRef50_C0BG39 1.91857779672e-05 3.6326643828e-05 1.71408658608e-05 +UniRef50_G1D4J4 Gp80 3.58055127465e-05 1.27466439132e-05 -2.30588688333e-05 +UniRef50_M2QS37 6.85153147839e-05 0.000218931917582 0.000150416602798 +UniRef50_A6M2E5 Sulfatase 6.28793984816e-05 0.00117363187898 0.0011107524805 +UniRef50_Q3IXU6 0.00898678526108 0.00166649951856 -0.00732028574252 +UniRef50_UPI000382350E hypothetical protein 1.11296172875e-06 2.2717173487e-05 2.16042117582e-05 +UniRef50_M9VQS2 0.00254840494703 0.0022355551626 -0.00031284978443 +UniRef50_A7ADI2 6.82949170034e-06 0.000122076190981 0.000115246699281 +UniRef50_E5AMF6 Ammonium transporter Methylammonium transporter 0.000554739073956 0.0138293256123 0.0132745865383 +UniRef50_A7ADI0 0.00057137422749 0.000247354713082 -0.000324019514408 +UniRef50_A6LZB2 FMN binding domain protein 0.000117841619826 0.000865210794316 0.00074736917449 +UniRef50_C6STS8 0.00231710819034 0.000708760092468 -0.00160834809787 +UniRef50_UPI00016AF87E drug resistance transporter, EmrB QacA family protein 0.000132986964092 8.18336656089e-05 -5.11532984831e-05 +UniRef50_P75839 UPF0702 transmembrane protein YcaP 0.0012974823184 0.000512482593992 -0.000784999724408 +UniRef50_R1DSU7 5.62845953204e-05 8.57289507439e-05 2.94443554235e-05 +UniRef50_A2BIZ8 S adenosylmethionine synthase 0.00420662378716 0.000743635546835 -0.00346298824033 +UniRef50_B0V5M9 0.000145747486043 0.00450473292444 0.0043589854384 +UniRef50_P00909 Tryptophan biosynthesis protein TrpCF 0.00354166348736 0.000987725147341 -0.00255393834002 +UniRef50_O52733 D xylose proton symporter 0.000217730478771 0.00279486271425 0.00257713223548 +UniRef50_UPI00036FFA67 hypothetical protein, partial 1.84270076877e-06 4.87359662922e-05 4.68932655234e-05 +UniRef50_B0VLP6 0.000150324204205 0.00511818691729 0.00496786271309 +UniRef50_Q89IB6 Phosphoribosylformylglycinamidine synthase 1 1.57736152424e-05 1.17957107564e-05 -3.977904486e-06 +UniRef50_Q9RX17 Virulence factor related protein 0.000188664678812 0.0290940028905 0.0289053382117 +UniRef50_E0XV99 0.00161186082828 0.00115878914456 -0.00045307168372 +UniRef50_F8KHS4 RNA pseudouridylate synthase 0.0152563007978 0.00489953990726 -0.0103567608905 +UniRef50_B0RBL3 Glutamate 1 semialdehyde 2,1 aminomutase 7.20381821829e-06 3.68603920056e-05 2.96565737873e-05 +UniRef50_N9IVN2 0.00018718313497 0.00241221308046 0.00222502994549 +UniRef50_E3HHT4 TRAP transporter solute receptor, TAXI family protein 3 0.000138087347704 7.31628330408e-05 -6.49245146632e-05 +UniRef50_B3W6W6 Tryptophan synthase beta chain 6.12467410789e-06 7.18505671316e-06 1.06038260527e-06 +UniRef50_UPI00046EC1CC hypothetical protein, partial 2.99796386583e-05 0.000393532742432 0.000363553103774 +UniRef50_D8JFA0 6.86338161594e-05 0.00770419082372 0.00763555700756 +UniRef50_Q2YTA2 Dephospho CoA kinase 0.0252264116564 0.0015810517227 -0.0236453599337 +UniRef50_H3UL21 7.66122588082e-05 0.000112351369412 3.57391106038e-05 +UniRef50_A6H1Q5 NADH quinone oxidoreductase subunit I 5.28618717908e-06 1.3946703939e-05 8.66051675992e-06 +UniRef50_Q9JZ44 30S ribosomal protein S1 0.00473930770146 0.00415312174538 -0.00058618595608 +UniRef50_H0PUC5 Two component heavy metal response transcriptional regulator, winged helix family 0.00107727720931 0.0104515065548 0.00937422934549 +UniRef50_A9KHN3 Acetylglutamate kinase 6.15181952171e-06 0.000110685052818 0.000104533233296 +UniRef50_A5WF94 3 ketoacyl CoA thiolase 0.00037247850688 0.0004832452634 0.00011076675652 +UniRef50_Q87G35 Putative ABC transporter ATP binding protein VPA1482 1.0731138227e-05 1.36252248552e-05 2.8940866282e-06 +UniRef50_UPI0003B5B988 transcription elongation factor NusA 8.66603011983e-06 9.72499789042e-06 1.05896777059e-06 +UniRef50_R5Q2U1 9.87033248813e-06 0.000402764410236 0.000392894077748 +UniRef50_D9VU00 Dihydrodipicolinate reductase 0.000189515550924 0.000295434752189 0.000105919201265 +UniRef50_G4NFF6 4.69505221762e-06 5.23073522468e-06 5.3568300706e-07 +UniRef50_UPI00037B10ED hypothetical protein 1.03664558683e-05 1.23664829489e-05 2.0000270806e-06 +UniRef50_P45135 Protein mrp homolog 0.00261472174151 0.00140380855743 -0.00121091318408 +UniRef50_H8WB63 7.79566205882e-05 6.78238836697e-05 -1.01327369185e-05 +UniRef50_A6SU21 SugE like protein 0.00036296729697 0.00106740977781 0.00070444248084 +UniRef50_UPI000472171C hypothetical protein 5.75802643635e-06 0.000175095303679 0.000169337277243 +UniRef50_UPI00035A1B1C PREDICTED 4.17995665365e-05 6.65212298939e-05 2.47216633574e-05 +UniRef50_W8FIF9 0.000595244240245 0.000107753587976 -0.000487490652269 +UniRef50_W8WQR1 0.00177883345285 0.000618927228839 -0.00115990622401 +UniRef50_F7ZBE6 Protein MazG 0.00282656792687 0.000213739472998 -0.00261282845387 +UniRef50_P58213 0.00263703632446 0.00103544313746 -0.001601593187 +UniRef50_F2HMQ5 N acetylglucosamine 6 phosphate deacetylase 0.00643968479551 0.00750686997599 0.00106718518048 +UniRef50_D4MT97 Predicted Zn dependent protease 0.000778607141951 0.00377588455171 0.00299727740976 +UniRef50_UPI000475EEE1 glycine cleavage system protein H 0.000105456470977 3.40922136885e-05 -7.13642572885e-05 +UniRef50_E6SHW8 AMP dependent synthetase and ligase 6.18491516412e-05 0.0218503912219 0.0217885420703 +UniRef50_A3SWD6 8.63312469525e-05 4.86486535341e-05 -3.76825934184e-05 +UniRef50_B1MZ61 Glycine tRNA ligase alpha subunit 0.00750344888311 0.00368714847912 -0.00381630040399 +UniRef50_UPI00037B0949 hypothetical protein 2.9874387981e-05 0.00011700641512 8.7132027139e-05 +UniRef50_A7ZV33 Oligoribonuclease 0.00463591576101 0.00412095890084 -0.00051495686017 +UniRef50_UPI0002889CD1 DNA mismatch repair protein MutS 2.09016360374e-06 1.92770969634e-05 1.71869333597e-05 +UniRef50_P0ABD2 0.00346254033123 0.00871030184367 0.00524776151244 +UniRef50_A6LZ65 Citrate transporter 0.000676984875882 0.00197202372133 0.00129503884545 +UniRef50_UPI000369A32E MULTISPECIES 2.59107594025e-05 3.05659659181e-05 4.6552065156e-06 +UniRef50_I0IBX7 7.11389828123e-06 8.75323551486e-06 1.63933723363e-06 +UniRef50_F8F839 Acetolactate synthase large subunit 0.000159757637457 0.000727844668732 0.000568087031275 +UniRef50_C2QP87 4.33090153662e-06 0.000197756722234 0.000193425820697 +UniRef50_I3UCI5 Amino acid ABC transporter ATPase 0.00459576637191 0.000671174329992 -0.00392459204192 +UniRef50_W7CBE0 2.12403068332e-05 1.88669683467e-05 -2.3733384865e-06 +UniRef50_C1AA13 Twitching mobility protein 0.000378032691844 0.00459899377796 0.00422096108612 +UniRef50_G7M9D3 Cell envelope related transcriptional attenuator 0.000614103279842 0.00129906446137 0.000684961181528 +UniRef50_UPI0003B60D83 MFS transporter, partial 5.30939037082e-06 1.08479449422e-05 5.53855457138e-06 +UniRef50_UPI000465FF4A chemotaxis protein CheW 4.72687631698e-05 6.80226776573e-05 2.07539144875e-05 +UniRef50_D3QH68 TetR family regulatory protein 0.0124031594772 0.00100485096299 -0.0113983085142 +UniRef50_Q9RR78 Protoheme IX farnesyltransferase 0.000127385598041 0.0715217508472 0.0713943652492 +UniRef50_A8AYI7 N acetyl gamma glutamyl phosphate reductase 0.00597085659553 0.00117359702781 -0.00479725956772 +UniRef50_UPI00037EBF1E hypothetical protein 4.74514829637e-06 8.00084283989e-06 3.25569454352e-06 +UniRef50_A1TJ50 LemA family protein 0.000756090328883 0.00599918797664 0.00524309764776 +UniRef50_UPI000469FCDE hypothetical protein 2.84008111162e-05 1.94116823011e-06 -2.64596428861e-05 +UniRef50_UPI00046F4540 hypothetical protein 1.19589525856e-05 3.81219079458e-05 2.61629553602e-05 +UniRef50_UPI0003C13F1D PREDICTED 3.95178452896e-06 5.98970003707e-06 2.03791550811e-06 +UniRef50_I4D4X7 1.71431691839e-05 2.68668665335e-05 9.7236973496e-06 +UniRef50_UPI00037D4FA3 hypothetical protein 3.49578117886e-06 4.84222903558e-06 1.34644785672e-06 +UniRef50_Q7VQS0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.00144037377352 0.000929769516578 -0.000510604256942 +UniRef50_H8GZE1 0.000325088451527 0.000148013018605 -0.000177075432922 +UniRef50_UPI00037860D6 hypothetical protein 3.78368230985e-06 7.34732696424e-06 3.56364465439e-06 +UniRef50_M5AS85 0.000122922046606 4.16781310766e-05 -8.12439155294e-05 +UniRef50_A5IQJ5 Serine type D Ala D Ala carboxypeptidase 0.00939782053142 0.00105495328523 -0.00834286724619 +UniRef50_K5C8L6 Protein containing YCII related domain protein 2.42150035936e-05 1.52145090263e-05 -9.0004945673e-06 +UniRef50_C5YUZ9 5.9843284562e-06 0.000309655671296 0.00030367134284 +UniRef50_F2AB45 0.000132479613354 0.000175479112631 4.2999499277e-05 +UniRef50_UPI00035D3DCC hypothetical protein 0.00809009192981 0.000833790777094 -0.00725630115272 +UniRef50_Q8R7K0 L threonine 3 dehydrogenase 3.15836942269e-05 5.37379312655e-05 2.21542370386e-05 +UniRef50_P77258 N ethylmaleimide reductase 0.00322545585348 0.00226963593882 -0.00095581991466 +UniRef50_UPI000373C080 hypothetical protein 6.17915318855e-05 6.22455953001e-06 -5.55669723555e-05 +UniRef50_Q899P3 3 oxoacyl [acyl carrier protein] synthase 3 0.000167086727971 1.13043782201e-05 -0.000155782349751 +UniRef50_UPI00026577FF PREDICTED 4.94030608008e-05 3.53276542031e-05 -1.40754065977e-05 +UniRef50_A7ZR14 Aminomethyltransferase 0.00341692137989 0.000817011054895 -0.002599910325 +UniRef50_UPI00037DABB6 hypothetical protein 7.94970773966e-06 1.26845829304e-05 4.73487519074e-06 +UniRef50_UPI00047B26D6 30S ribosomal protein S2 2.47912191462e-05 2.04337265274e-05 -4.3574926188e-06 +UniRef50_UPI00045613AA hypothetical protein PFL1_01689 1.96701031738e-06 3.24760820219e-06 1.28059788481e-06 +UniRef50_Q48UW8 Endoribonuclease YbeY 0.00684940186393 0.00086061869733 -0.0059887831666 +UniRef50_UPI000429C143 hypothetical protein 2.31497690001e-05 3.39248674395e-05 1.07750984394e-05 +UniRef50_P25129 Attachment protein G3P 0.00171007626551 0.000282599717884 -0.00142747654763 +UniRef50_UPI0003B5C03B phospholipase 2.88810149346e-06 3.16169349094e-06 2.7359199748e-07 +UniRef50_UPI000333464B 6.30860381999e-06 5.22704324019e-06 -1.0815605798e-06 +UniRef50_Q2NI01 MrtD 0.00404771513943 0.000801764810481 -0.00324595032895 +UniRef50_UPI00023B2A49 9.43784307624e-06 0.000105998975502 9.65611324258e-05 +UniRef50_M1MHF7 0.000120474251758 0.000772049052066 0.000651574800308 +UniRef50_D3E0C7 Energy converting hydrogenase B subunit N EhbN 0.00312451198043 0.00139386204036 -0.00173064994007 +UniRef50_UPI000364325F hypothetical protein 2.25171448329e-05 6.85591439476e-05 4.60419991147e-05 +UniRef50_A3MLM0 Deoxycytidine triphosphate deaminase 0.00345872609701 0.00524939372253 0.00179066762552 +UniRef50_D2BB98 Fibrocystin L like protein 8.96630585457e-05 0.00018267476311 9.30117045643e-05 +UniRef50_F9Z2N2 4 hydroxybutyrate coenzyme A transferase 9.5084631958e-05 0.00647231565511 0.00637723102315 +UniRef50_UPI00047E641A DNA mismatch repair protein MutL 2.89349967145e-06 7.04112293621e-06 4.14762326476e-06 +UniRef50_A3PH43 Cell wall hydrolase, SleB 0.0115765365149 0.00763292166524 -0.00394361484966 +UniRef50_C1N9N9 Predicted protein 0.00025538558276 0.000234832769311 -2.0552813449e-05 +UniRef50_A9AQ95 Major facilitator superfamily MFS_1 0.000487653976724 0.000471276931076 -1.6377045648e-05 +UniRef50_D3DZP5 Peptidase U62 family 0.00412830386917 0.00168235604338 -0.00244594782579 +UniRef50_A4KVC4 0.000126663061785 4.54971182763e-05 -8.11659435087e-05 +UniRef50_Q8CTX4 0.0147413890681 0.00468714336682 -0.0100542457013 +UniRef50_A4WT83 Cytochrome c, monohaem 0.00681282393176 0.00228123632505 -0.00453158760671 +UniRef50_UPI00031E94BD hypothetical protein 2.93510762668e-06 3.32784438071e-06 3.9273675403e-07 +UniRef50_P37923 Chaperone protein FimC 0.00143599847274 0.00333289279099 0.00189689431825 +UniRef50_UPI00046D0AE5 30S ribosomal protein S2 2.05857262086e-05 1.88000622267e-05 -1.7856639819e-06 +UniRef50_UPI0003EF5726 hypothetical protein 0.00053118200715 0.00013981721516 -0.00039136479199 +UniRef50_UPI0004651F70 hypothetical protein, partial 2.67548122037e-05 1.95065787923e-05 -7.2482334114e-06 +UniRef50_Q8CTX9 0.022858387238 0.00840449975597 -0.014453887482 +UniRef50_U5MPW8 Lysophospholipase L2 0.000239672711771 0.00076881644043 0.000529143728659 +UniRef50_D8JMF9 0.000924580091871 0.00755114520272 0.00662656511085 +UniRef50_B3ZX35 Protein rlx 0.000167708729831 2.39912432695e-05 -0.000143717486561 +UniRef50_UPI0003F4A454 hypothetical protein TREMEDRAFT_73314 1.35854000757e-05 8.55599413717e-06 -5.02940593853e-06 +UniRef50_A6M075 Aminotransferase class III 0.000271311619178 0.0011845673694 0.000913255750222 +UniRef50_I3TH40 Aromatic compounds catabolic protein 1.19083831394e-05 0.000274005739699 0.00026209735656 +UniRef50_UPI0003B5A455 DNA directed RNA polymerase subunit alpha 3.79965656263e-05 4.4485943329e-05 6.4893777027e-06 +UniRef50_A4IQZ4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000766244979111 0.00141810195599 0.000651856976879 +UniRef50_G8AR80 9.67391462525e-05 4.56503863882e-05 -5.10887598643e-05 +UniRef50_M4FRG3 2.71146734737e-06 3.01211863924e-06 3.0065129187e-07 +UniRef50_P55468 dTDP 4 dehydrorhamnose 3,5 epimerase 1.52914090798e-05 1.74027863386e-05 2.1113772588e-06 +UniRef50_P44740 Probable tRNA N6) methyltransferase 0.00433784612183 0.000302888928405 -0.00403495719343 +UniRef50_Q2GCD8 DNA directed RNA polymerase subunit beta 7.83272066428e-06 1.32289192928e-05 5.39619862852e-06 +UniRef50_A0A017HAS6 4.09079559706e-05 4.9576697071e-05 8.6687411004e-06 +UniRef50_X8LV27 0.000457245603387 2.6248392111e-05 -0.000430997211276 +UniRef50_R5PFJ6 Polar amino acid transport system substrate binding protein 0.00115418676073 0.00145222052887 0.00029803376814 +UniRef50_P77376 0.00299894675964 1.96255174004e-05 -0.00297932124224 +UniRef50_P44916 Octaprenyl diphosphate synthase 0.00469452374331 0.0038524040279 -0.00084211971541 +UniRef50_P77375 0.00269817211897 0.000592608772976 -0.00210556334599 +UniRef50_B0V636 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 0.000211605975358 0.00807581517631 0.00786420920095 +UniRef50_Q9RAA9 DNA polymerase I 4.0017259366e-06 4.39816386934e-05 3.99799127568e-05 +UniRef50_V9VRV3 0.000470684686053 4.40166393752e-05 -0.000426668046678 +UniRef50_U3TV34 PoxB protein 0.000547081143264 0.000621719379354 7.463823609e-05 +UniRef50_Q83IY4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.00291151502156 0.0114241908351 0.00851267581354 +UniRef50_Q9HXY3 Putative zinc metalloprotease PA3649 0.000234120398045 0.000133728319328 -0.000100392078717 +UniRef50_UPI000463EF04 hypothetical protein 6.39683220799e-05 1.32062776682e-05 -5.07620444117e-05 +UniRef50_Y2C2K5 DNA gyrase subunit A 0.0131386696845 0.00409070558631 -0.00904796409819 +UniRef50_Q93JQ8 Argininosuccinate synthase 3.41590490957e-06 1.66304231786e-05 1.3214518269e-05 +UniRef50_G2JD71 0.0116667876823 0.011367094493 -0.0002996931893 +UniRef50_D3QGS2 0.0173237787265 0.0053662040065 -0.01195757472 +UniRef50_UPI0003FE9842 hypothetical protein 1.13086164475e-05 3.71690550768e-05 2.58604386293e-05 +UniRef50_UPI0003B556E0 long chain fatty acid CoA ligase 6.95770188717e-06 5.96310452335e-06 -9.9459736382e-07 +UniRef50_A7TDI2 Lipoyl synthase, mitochondrial 5.41320472912e-06 3.53734973197e-05 2.99602925906e-05 +UniRef50_U0D4D4 Membrane associated protein uidC 0.000769312227561 0.000416917701458 -0.000352394526103 +UniRef50_C5D363 Ribosomal RNA small subunit methyltransferase A 5.38298523211e-05 2.21706798892e-05 -3.16591724319e-05 +UniRef50_Q5P9L5 GMP synthase [glutamine hydrolyzing] 3.01703763114e-06 1.5244162893e-05 1.22271252619e-05 +UniRef50_J3N4D6 0.000135203539437 1.04306696671e-05 -0.00012477286977 +UniRef50_Q9RZ46 Minor tail protein gp26 related protein 0.000131382037935 0.0570964054858 0.0569650234479 +UniRef50_A5EJD2 Leucyl phenylalanyl tRNA protein transferase 2.10614009764e-05 7.51038630628e-05 5.40424620864e-05 +UniRef50_C6SU64 0.00451230808402 0.0035189023513 -0.00099340573272 +UniRef50_Q1GWT5 Adenosylhomocysteinase 0.00644578786367 0.00367440048073 -0.00277138738294 +UniRef50_P27254 Probable GTPase ArgK 0.00433737672237 0.000970529983431 -0.00336684673894 +UniRef50_C3KLK5 Peroxiredoxin 6 0.00018294959072 0.00312542071707 0.00294247112635 +UniRef50_Q0C1A6 Glutamate tRNA ligase 1 3.0839922753e-05 1.49948512856e-05 -1.58450714674e-05 +UniRef50_G2JIJ8 0.00026583520342 0.00959431371148 0.00932847850806 +UniRef50_A6LX78 0.000249637318825 0.000958522200455 0.00070888488163 +UniRef50_F0MTD0 0.000101541655481 0.000522198196824 0.000420656541343 +UniRef50_U5MQI3 Thiamine biosynthesis lipoprotein ApbE 0.000241720225489 0.000402706678093 0.000160986452604 +UniRef50_A6LX73 0.000542087437476 0.00142943561335 0.000887348175874 +UniRef50_UPI00036C9D5C hypothetical protein 3.42807379328e-06 1.23868235131e-05 8.95874971982e-06 +UniRef50_A6LX76 9.6957017689e-05 0.000155021892496 5.8064874807e-05 +UniRef50_A0A023S2E8 Peptidase M23 0.000163413847988 0.0107208243058 0.0105574104578 +UniRef50_F5M423 Methyltransferase type 12 0.00244802248696 0.00143316655903 -0.00101485592793 +UniRef50_K7RRT6 Kinase domain containing protein 0.000332144534658 0.00681451108194 0.00648236654728 +UniRef50_G8N5W7 Inner membrane translocator 0.000331566971752 0.0517546036916 0.0514230367198 +UniRef50_R0YL20 Filamentous hemagglutinin family N terminal domain protein 2.0441479545e-05 0.000416598926028 0.000396157446483 +UniRef50_A5G215 4.27756332583e-05 5.27364866198e-05 9.9608533615e-06 +UniRef50_P42811 Putative 26S protease regulatory subunit homolog MTBMA_c13930 0.00390983299523 0.000523414707951 -0.00338641828728 +UniRef50_I7ITF3 NADH ubiquinone oxidoreductase subunit 2.89300910424e-05 0.000100193976644 7.12638856016e-05 +UniRef50_M1MT68 Peptidase U61 LD carboxypeptidase A 0.000132296491424 0.00237108130814 0.00223878481672 +UniRef50_Q21M93 DNA directed RNA polymerase subunit beta 0.000242872230869 0.00785635682442 0.00761348459355 +UniRef50_Q6MMA3 Methionine tRNA ligase 5.18714007246e-06 5.07760260994e-06 -1.0953746252e-07 +UniRef50_A7WZS8 Triosephosphate isomerase 0.00874139307289 0.0023482651768 -0.00639312789609 +UniRef50_R4ZRY7 0.00351529514249 0.00220619896211 -0.00130909618038 +UniRef50_UPI000475A496 hypothetical protein 2.17027666319e-05 7.08140739626e-05 4.91113073307e-05 +UniRef50_UPI00046686EA amidohydrolase 5.20595082215e-06 2.72132776178e-05 2.20073267957e-05 +UniRef50_D8TSH0 1.49871458903e-06 6.29367143537e-07 -8.69347445493e-07 +UniRef50_B9DIX2 Probable cytosol aminopeptidase 0.0232752442312 0.00537076375886 -0.0179044804723 +UniRef50_E7PW89 Sensor histidine kinase 0.00538686648081 0.00187053297238 -0.00351633350843 +UniRef50_B9DZ45 7.47753003601e-06 1.97358986519e-05 1.22583686159e-05 +UniRef50_UPI0003B2E548 cation 0.00118403186161 0.000384445443551 -0.000799586418059 +UniRef50_A3PHP3 0.0141199920803 0.00279353398373 -0.0113264580966 +UniRef50_UPI000414700A hypothetical protein 3.47647275921e-06 5.19125243252e-06 1.71477967331e-06 +UniRef50_UPI0003B3DD40 PhoP family transcriptional regulator 1.72375840845e-05 3.92648476137e-05 2.20272635292e-05 +UniRef50_UPI000371B1FC hypothetical protein, partial 7.59373699621e-05 8.99978568127e-05 1.40604868506e-05 +UniRef50_D8IJC7 Glycerol dehydrogenase 0.0054114262241 0.00248742591079 -0.00292400031331 +UniRef50_D3F4J3 Transcriptional regulator, PadR like family 5.2823845517e-05 0.000141065002718 8.8241157201e-05 +UniRef50_Q03JI6 CRISPR associated endonuclease Cas9 2 0.00115235765919 0.000234159099664 -0.000918198559526 +UniRef50_UPI000426A521 dihydrolipoamide succinyltransferase 1.47003462106e-05 0.00015313215911 0.000138431812899 +UniRef50_UPI0004698685 hypothetical protein 0.000369071644759 0.000246267942491 -0.000122803702268 +UniRef50_A0A038FK84 Hydrogenase maturation protein 0.000525935371225 0.000106127815949 -0.000419807555276 +UniRef50_UPI00035FEE6E hypothetical protein 3.06339169279e-05 0.000206624090628 0.0001759901737 +UniRef50_UPI0002F0DDC3 hypothetical protein 3.15398246399e-05 4.84395546885e-06 -2.66958691711e-05 +UniRef50_UPI00029B3C33 transcriptional regulator 4.88913368382e-05 9.12806244635e-05 4.23892876253e-05 +UniRef50_UPI000475F4D6 macrolide ABC transporter ATP binding protein 7.44858932525e-06 3.11569392971e-05 2.37083499718e-05 +UniRef50_Q98HW8 Prolipoprotein diacylglyceryl transferase 4.5585750548e-05 1.92599020538e-05 -2.63258484942e-05 +UniRef50_P32694 0.00219717304 0.000481698357678 -0.00171547468232 +UniRef50_J3LNJ2 4.03299839417e-05 6.20542239619e-05 2.17242400202e-05 +UniRef50_P32690 0.00355862427706 0.00406183868498 0.00050321440792 +UniRef50_UPI0001D2E55C hypothetical protein 0.000297440178548 4.4053389224e-05 -0.000253386789324 +UniRef50_P20368 Alcohol dehydrogenase 1 0.0210891411543 0.0118515724647 -0.0092375686896 +UniRef50_A6LVI5 0.000145560149942 0.00127140806476 0.00112584791482 +UniRef50_UPI0002FA2E2D hypothetical protein 1.48571235329e-05 0.000642035545351 0.000627178421818 +UniRef50_K6YA48 4.50189948246e-05 1.7822213622e-05 -2.71967812026e-05 +UniRef50_R4X5W4 1.92803158301e-05 3.28635601367e-05 1.35832443066e-05 +UniRef50_P15202 Peroxisomal catalase A 2.92721090668e-06 4.58969008916e-06 1.66247918248e-06 +UniRef50_UPI0003F5184A hypothetical protein 1.84841271349e-05 8.66608380463e-06 -9.81804333027e-06 +UniRef50_A4WW59 0.0134029806027 0.00235960557507 -0.0110433750276 +UniRef50_UPI000475B0A4 hypothetical protein 0.000160792793231 1.64922777744e-05 -0.000144300515457 +UniRef50_A9U8B3 Predicted protein 0.000633052988578 0.000277740817252 -0.000355312171326 +UniRef50_P35170 Phospho 2 dehydro 3 deoxyheptonate aldolase 1.37418085905e-05 0.00408223627824 0.00406849446965 +UniRef50_D5ALC4 Translation initiation factor IF 2 0.00791537229456 0.00212634230814 -0.00578902998642 +UniRef50_Q9KF52 Phosphoribosylamine glycine ligase 0.00873395999244 0.00983266683442 0.00109870684198 +UniRef50_F0N1G5 Transcription repair coupling factor 2.90448311514e-05 0.00124593796769 0.00121689313654 +UniRef50_A4XNW6 0.00011636759666 0.000120882384097 4.514787437e-06 +UniRef50_S1SDR1 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 9.93585703834e-06 1.65346783192e-05 6.59882128086e-06 +UniRef50_F6BHL2 PTS system transcriptional activator 0.000273815806719 0.000867767748339 0.00059395194162 +UniRef50_D8GIQ6 0.000334552566439 0.00124092368059 0.000906371114151 +UniRef50_I3XD08 Lipid A export ATP binding permease protein MsbA 0.00501219948662 0.00147898121014 -0.00353321827648 +UniRef50_UPI00016C3F49 ABC transporter, ATP binding protein 7.02707742863e-06 5.41720103033e-05 4.71449328747e-05 +UniRef50_L7WY79 Alpha beta hydrolase 0.0252169666268 0.0072301603583 -0.0179868062685 +UniRef50_Q9A759 0.0132160888016 0.00228452121088 -0.0109315675907 +UniRef50_Q1GFV5 Dihydrofolate reductase 0.0021714295625 0.00204370586388 -0.00012772369862 +UniRef50_C5WCX1 4 hydroxythreonine 4 phosphate dehydrogenase 0.0023813093082 0.000181547154827 -0.00219976215337 +UniRef50_N5EDX1 PTS system EIIBC component 3.90995404233e-05 8.90537071456e-05 4.99541667223e-05 +UniRef50_A6UZL3 DNA directed RNA polymerase subunit alpha 0.00164332231972 0.000847793763689 -0.000795528556031 +UniRef50_K0C9F8 0.0015743008541 0.000937513349825 -0.000636787504275 +UniRef50_O49213 GDP L fucose synthase 1 0.0127073595553 0.00371311231703 -0.00899424723827 +UniRef50_M4RRJ2 4.96604964797e-05 0.00104831326714 0.00099865277066 +UniRef50_V9WGF1 ABC type multidrug transport system, ATPase and permease component 0.00630132908893 0.00198410102441 -0.00431722806452 +UniRef50_H9UWR6 Modulator of drug activity 0.00200672198272 0.000477601140485 -0.00152912084223 +UniRef50_P45548 Phosphotriesterase homology protein 0.00560536953716 0.000958512884603 -0.00464685665256 +UniRef50_G4NPZ1 Fructokinase 0.00622498596144 0.00138432027251 -0.00484066568893 +UniRef50_Q8XNN2 Cell division protein FtsX 0.000128542334456 0.00117514966866 0.0010466073342 +UniRef50_G7R423 0.00180953601005 0.000663633045389 -0.00114590296466 +UniRef50_F3U4W9 Transcriptional regulator, DeoR family protein 0.001871222442 0.000911275791129 -0.000959946650871 +UniRef50_S9Q9Z7 Mobile element protein 0.000165922696409 3.01487556894e-05 -0.00013577394072 +UniRef50_F0JDG6 TRAP transporter solute receptor, TAXI family 6.96490374455e-05 2.08220301174e-05 -4.88270073281e-05 +UniRef50_Q9GV41 Prostaglandin F synthase 0.018250567278 0.000242125855184 -0.0180084414228 +UniRef50_C6SP93 0.0011709474591 0.000694182930834 -0.000476764528266 +UniRef50_B9L064 Glutamine synthetase 0.000673646242146 0.000560393555103 -0.000113252687043 +UniRef50_C5N176 0.0147627752317 0.00122016400141 -0.0135426112303 +UniRef50_UPI0003694E1D hypothetical protein 1.00899805813e-05 1.27616863184e-05 2.6717057371e-06 +UniRef50_Q9RWP2 0.000195588595265 0.0145760928126 0.0143805042173 +UniRef50_B9E1D0 0.000226239975069 0.00163665822815 0.00141041825308 +UniRef50_UPI0004785B9E hypothetical protein 3.97371741995e-06 4.19851795213e-06 2.2480053218e-07 +UniRef50_UPI00036CFE81 hypothetical protein 8.7324294485e-05 3.28856828603e-05 -5.44386116247e-05 +UniRef50_B2HZJ1 AraC type DNA binding domain containing protein 0.000120602552348 0.0068632598413 0.00674265728895 +UniRef50_UPI00035F4FB6 hypothetical protein 2.64816217697e-05 4.01965301552e-05 1.37149083855e-05 +UniRef50_D5T0L1 Amino acid permease 0.00647173537807 0.000900170684477 -0.00557156469359 +UniRef50_A4WYK2 0.00264011848506 0.000366138483067 -0.00227398000199 +UniRef50_UPI0003618C0D peptide ABC transporter substrate binding protein 7.31673146867e-06 2.79543939198e-05 2.06376624511e-05 +UniRef50_H0Q5L4 Cation transport protein 3.29791787381e-06 3.09737631216e-06 -2.0054156165e-07 +UniRef50_A3M2E6 0.000406144557364 0.0109397020628 0.0105335575054 +UniRef50_UPI0003622857 hypothetical protein, partial 1.95311573081e-05 1.19644442439e-05 -7.5667130642e-06 +UniRef50_A3M2E8 0.000688388659374 0.00842670190322 0.00773831324385 +UniRef50_A3M2E9 0.000401532881888 0.0139397382747 0.0135382053928 +UniRef50_U3T6D9 AsnC family transcriptional regulator 0.00214185130832 0.00286076911619 0.00071891780787 +UniRef50_B7V4F8 0.000797894149226 0.000274608754132 -0.000523285395094 +UniRef50_E6UQ90 Radical SAM domain protein 0.000503367236464 0.000282397569352 -0.000220969667112 +UniRef50_Q8X9H6 0.0027499416301 0.000983393405668 -0.00176654822443 +UniRef50_Q0TD44 L tartrate dehydratase subunit beta 0.00298680793723 0.000555454617915 -0.00243135331932 +UniRef50_L8A618 PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component 0.00559302893522 0.00480510153814 -0.00078792739708 +UniRef50_V5VGA0 Signal peptide protein 0.000482375317798 0.00744053354232 0.00695815822452 +UniRef50_UPI0002FD25A8 hypothetical protein 1.03213676319e-05 5.80055886582e-06 -4.52080876608e-06 +UniRef50_UPI000345C556 hypothetical protein 1.90228729827e-06 3.95467401604e-05 3.76444528621e-05 +UniRef50_A5UKY8 30S ribosomal protein S3Ae 0.00214846309697 0.000311954266055 -0.00183650883091 +UniRef50_UPI00036B4C40 hypothetical protein 2.36314494077e-06 3.52251802691e-06 1.15937308614e-06 +UniRef50_UPI0003C13594 7.83916616203e-06 2.02570109128e-05 1.24178447508e-05 +UniRef50_R4LIM7 CaiB BaiF family protein 0.000779716256765 0.000302978971342 -0.000476737285423 +UniRef50_A0A047EGF5 PE PGRS family protein PE_PGRS16 2.75805450284e-05 1.02153843029e-05 -1.73651607255e-05 +UniRef50_UPI0003B5C426 histidinol dehydrogenase 3.70578946143e-06 1.24753297879e-05 8.76954032647e-06 +UniRef50_Q5HR00 Protein NrdI 0.0400234532401 0.00761684633096 -0.0324066069091 +UniRef50_F2U7G5 1.24538683352e-05 2.4525802818e-05 1.20719344828e-05 +UniRef50_UPI0003677280 hypothetical protein 5.88755624474e-05 1.53735176875e-05 -4.35020447599e-05 +UniRef50_A7GU01 Cyclic pyranopterin monophosphate synthase 4.63457530436e-06 0.000233547243964 0.00022891266866 +UniRef50_UPI00046E8F79 hypothetical protein 3.61649492995e-05 6.82403336467e-05 3.20753843472e-05 +UniRef50_X2JGW4 TraU 9.30859965289e-05 7.13691384723e-06 -8.59490826817e-05 +UniRef50_G2TBP0 Nitrogenase 0.000789924351728 0.00158846123968 0.000798536887952 +UniRef50_Q9AHT6 Pneumococcal vaccine antigen A 0.00706728428228 0.00302953898844 -0.00403774529384 +UniRef50_UPI0003696E91 hypothetical protein 0.000274125845592 3.72634466828e-05 -0.000236862398909 +UniRef50_Q88W26 ATP dependent protease ATPase subunit HslU 0.0210215097947 0.00690060970102 -0.0141209000937 +UniRef50_Q04796 4 hydroxy tetrahydrodipicolinate synthase 6.38135487892e-06 0.00265543206509 0.00264905071021 +UniRef50_B0TPS5 Tryptophan halogenase 0.000106035390125 0.0101073707526 0.0100013353625 +UniRef50_UPI000467BC4F hypothetical protein 2.29075201941e-05 2.27960693294e-05 -1.114508647e-07 +UniRef50_X0UMF5 Marine sediment metagenome DNA, contig 3.53271395578e-05 6.24333595275e-05 2.71062199697e-05 +UniRef50_B7UWL8 Dihydroorotate dehydrogenase 0.000271635660848 0.000889916893864 0.000618281233016 +UniRef50_E8NJT6 0.000323994161222 0.00125673687512 0.000932742713898 +UniRef50_UPI0003775EDE hypothetical protein 1.7347508144e-05 5.59435333146e-05 3.85960251706e-05 +UniRef50_P57872 Ribosome binding factor A 0.00213671314445 0.000473770115279 -0.00166294302917 +UniRef50_P0AC31 Cell division protein FtsX 0.00411021748974 0.000584656618942 -0.0035255608708 +UniRef50_G7LXG1 0.000485693888023 0.00246629693841 0.00198060305039 +UniRef50_J0XSC7 0.0015099439554 0.00124890603647 -0.00026103791893 +UniRef50_R4K915 0.00113541765153 0.000321578989328 -0.000813838662202 +UniRef50_Q5P303 2.37272025452e-05 3.34429445262e-05 9.715741981e-06 +UniRef50_UPI000367F4BF hypothetical protein 2.92375073799e-06 0.000262438311301 0.000259514560563 +UniRef50_UPI000363BEF2 hypothetical protein 2.19077214907e-05 2.33127021734e-05 1.4049806827e-06 +UniRef50_A4V9J4 0.00156904273663 0.000225100814816 -0.00134394192181 +UniRef50_UPI00025579C9 chemotaxis specific methylesterase 5.22905125578e-05 8.45946131378e-06 -4.3831051244e-05 +UniRef50_UPI00036CE600 hypothetical protein 4.00324902463e-06 7.38106950841e-06 3.37782048378e-06 +UniRef50_E1V509 APC family transporter 8.11216308394e-05 0.000308011314695 0.000226889683856 +UniRef50_UPI000476EDB0 hemolysin 0.000200848242997 0.000241291351039 4.0443108042e-05 +UniRef50_Q9I351 GTP cyclohydrolase 1 2 0.00017292847707 9.58650885809e-05 -7.70633884891e-05 +UniRef50_UPI0003836B4E PREDICTED 1.8892736349e-06 1.2705037091e-06 -6.187699258e-07 +UniRef50_G7U615 0.00177708788598 0.00393897233991 0.00216188445393 +UniRef50_Q8XD75 0.00291742715009 0.000559638810673 -0.00235778833942 +UniRef50_G2JM22 Phosphoserine phosphatase 0.000176670509603 0.0067144240808 0.0065377535712 +UniRef50_Q8CU16 0.00889676507234 0.00242772330841 -0.00646904176393 +UniRef50_D3QDN7 Ribosomal RNA small subunit methyltransferase D 0.0227171741392 0.0092560174895 -0.0134611566497 +UniRef50_Q8CU14 0.0086117363047 0.00267260679592 -0.00593912950878 +UniRef50_A1JPN5 Bifunctional polymyxin resistance protein ArnA 0.00304913333159 0.00101477494726 -0.00203435838433 +UniRef50_W4K6C3 0.000218705924928 0.000133457800591 -8.5248124337e-05 +UniRef50_A6LT03 0.000454880619572 0.00363205344347 0.0031771728239 +UniRef50_W1MFW3 30S ribosomal protein S3 0.000220752040266 0.000379016092237 0.000158264051971 +UniRef50_UPI0004765EE6 hypothetical protein 3.74475322924e-06 7.25023700227e-06 3.50548377303e-06 +UniRef50_A6LT04 0.000160632335681 0.00241357626916 0.00225294393348 +UniRef50_UPI000377D609 hypothetical protein 3.72871906153e-05 7.44468186073e-06 -2.98425087546e-05 +UniRef50_J7I7M7 ATPase P 5.46403774584e-05 0.00024764419815 0.000193003820692 +UniRef50_UPI0004737F94 penicillin binding protein 2.35078221763e-05 8.5829013104e-06 -1.49249208659e-05 +UniRef50_B2UY66 Hydroxyethylthiazole kinase 0.000437292736761 0.000773354708095 0.000336061971334 +UniRef50_UPI0003B5F72E hypothetical protein 2.31943133735e-05 2.16866228638e-05 -1.5076905097e-06 +UniRef50_X5ETF8 6.21593215276e-05 0.000465592646253 0.000403433324725 +UniRef50_D4HB94 Precorrin 4 C methyltransferase 0.000494178443363 0.00335819149171 0.00286401304835 +UniRef50_A0EVL6 Conjugal transfer entry exclusion protein 0.000172630787585 0.0140873932711 0.0139147624835 +UniRef50_T8R2K9 5.81989159472e-05 0.000165630675506 0.000107431759559 +UniRef50_UPI00035C3E51 hypothetical protein 4.6876413051e-05 1.18670201193e-05 -3.50093929317e-05 +UniRef50_K4IEB3 1.84841797943e-05 2.66556421873e-05 8.171462393e-06 +UniRef50_A3U1Q1 0.00030934269791 2.67209744524e-05 -0.000282621723458 +UniRef50_Q6A9J7 UPF0042 nucleotide binding protein PPA0813 0.000129571849717 0.00639956210508 0.00626999025536 +UniRef50_E2ZUC7 0.000548096082648 0.00136356430583 0.000815468223182 +UniRef50_B2UUB5 0.000339497954356 0.00345125684779 0.00311175889343 +UniRef50_UPI00047DB1F7 hypothetical protein 0.000190874833008 0.000579052363126 0.000388177530118 +UniRef50_W7QIQ7 0.000824313707996 8.02313945608e-05 -0.000744082313435 +UniRef50_UPI00034F4369 PREDICTED 3.61234068909e-05 6.66468107359e-05 3.0523403845e-05 +UniRef50_R9E884 7.80367687379e-05 3.82989422721e-05 -3.97378264658e-05 +UniRef50_C3G5A7 N acyl L amino acid amidohydrolase 0.023767918192 0.00748991295746 -0.0162780052345 +UniRef50_Q3IW43 0.00852816128941 0.00285121577913 -0.00567694551028 +UniRef50_O32047 Protein translocase subunit SecDF 0.00491284626127 0.00200275155189 -0.00291009470938 +UniRef50_A9M2X4 0.000149796027328 0.00337903974459 0.00322924371726 +UniRef50_M1XDM0 Transcriptional regulator, PadR family 0.000137665750975 3.88810176642e-05 -9.87847333108e-05 +UniRef50_UPI0003709A53 hypothetical protein 2.72097038311e-05 2.06987466682e-05 -6.5109571629e-06 +UniRef50_M9VF07 0.000269203179129 0.00537062162821 0.00510141844908 +UniRef50_E8SEY3 Salicylate hydroxylase 0.0195753234114 0.00505767729586 -0.0145176461155 +UniRef50_Q7NF32 Cobyrinic acid A,C diamide synthase 1.15150508965e-05 0.000231998288631 0.000220483237734 +UniRef50_D9VBV2 3.0226667626e-05 7.29568360309e-06 -2.29309840229e-05 +UniRef50_C4Z354 3 hydroxybutyryl CoA dehydrogenase 0.00525289662392 0.0021461628737 -0.00310673375022 +UniRef50_UPI0004720BAF hypothetical protein 9.86559358188e-06 2.20013592118e-05 1.21357656299e-05 +UniRef50_Q6FF05 Primosomal protein N directs replication fork assembly at D loops, ATP dependent 6.66151745013e-05 0.00547911417802 0.00541249900352 +UniRef50_U4PWH4 2.61913615361e-05 9.67662576361e-05 7.05748961e-05 +UniRef50_UPI000476026B molybdate ABC transporter permease 1.08740502436e-05 2.03846595269e-05 9.5106092833e-06 +UniRef50_Q5Z022 9.19778025388e-06 3.08586985076e-05 2.16609182537e-05 +UniRef50_UPI00035E2839 hypothetical protein 6.20286605998e-05 1.42023384128e-05 -4.7826322187e-05 +UniRef50_Q8NV29 0.00167854202316 0.000378611160516 -0.00129993086264 +UniRef50_UPI0003B76DAF hypothetical protein, partial 5.86624226013e-05 0.000185537711529 0.000126875288928 +UniRef50_I0K765 2.99919173565e-06 9.97400191537e-05 9.67408274181e-05 +UniRef50_UPI00037AA1C6 hypothetical protein 1.03627822539e-05 0.000143725003496 0.000133362221242 +UniRef50_UPI000378C483 hypothetical protein 3.63403721345e-05 1.55630744224e-05 -2.07772977121e-05 +UniRef50_UPI0002036836 PREDICTED 2.10659427784e-06 2.09633401176e-06 -1.026026608e-08 +UniRef50_UPI0003757D0F MULTISPECIES 9.02825398134e-05 1.25944082343e-05 -7.76881315791e-05 +UniRef50_UPI00047C43EF aldolase 9.38607570695e-05 3.54022881647e-05 -5.84584689048e-05 +UniRef50_Q9ZFA2 Citrate synthase 0.00189165414357 0.000244781162499 -0.00164687298107 +UniRef50_UPI00036F9430 hypothetical protein 1.72330868108e-06 8.89045572132e-07 -8.34263108948e-07 +UniRef50_A0PXX7 Energy coupling factor transporter ATP binding protein EcfA1 1.90840454177e-05 1.07806509533e-05 -8.3033944644e-06 +UniRef50_UPI000463F674 LysR family transcriptional regulator 4.07849323506e-05 1.82997335935e-05 -2.24851987571e-05 +UniRef50_A9GHR6 ATP synthase subunit alpha 3.46090557299e-06 1.67729048833e-05 1.33119993103e-05 +UniRef50_G8V6N7 Biotin requiring enzyme family protein 0.0177941312052 0.00182205806779 -0.0159720731374 +UniRef50_Q3IV12 Generic methyltransferase 0.0168872947449 0.0076908158703 -0.0091964788746 +UniRef50_Q2NUA4 Tetraacyldisaccharide 4 kinase 0.00044230752588 0.000205318682645 -0.000236988843235 +UniRef50_A0A020BXU1 0.00183375044762 0.000514750464887 -0.00131899998273 +UniRef50_A8FUS8 Ribonuclease H 3.0670614704e-05 2.14413082736e-05 -9.2293064304e-06 +UniRef50_P0AFQ4 Inner membrane transport permease YbhS 0.00201641393612 0.000171032840855 -0.00184538109526 +UniRef50_A0A011Q1R0 Penicillin binding protein 2 6.61016970975e-06 1.08703352759e-05 4.26016556615e-06 +UniRef50_M4YYZ9 N acetylmannosamine kinase 0.00031332632128 0.0028438433873 0.00253051706602 +UniRef50_P76242 Inner membrane transport protein YeaN 0.00193503657893 0.000361800467574 -0.00157323611136 +UniRef50_O34697 Bacitracin export ATP binding protein BceA 0.0238720119757 0.00701968867353 -0.0168523233022 +UniRef50_UPI00046CAEE5 hypothetical protein 9.49954501457e-06 4.4821030518e-05 3.53214855034e-05 +UniRef50_I0C6Y6 Transcriptional regulator, DeoR family 0.00669752210289 0.00292593595104 -0.00377158615185 +UniRef50_P07821 Iron hydroxamate import ATP binding protein FhuC 0.00252707112737 0.00411384065468 0.00158676952731 +UniRef50_H2A564 Rhodanese like domain protein 2.23314349762e-05 6.90758787823e-05 4.67444438061e-05 +UniRef50_UPI0002379BF3 putative ABC transporter ATP binding protein 1.06766380645e-06 1.19829617885e-05 1.0915297982e-05 +UniRef50_A6UAR8 0.00106491864536 0.000521100819942 -0.000543817825418 +UniRef50_UPI0004630536 hypothetical protein 3.69160562131e-05 4.3336120697e-05 6.4200644839e-06 +UniRef50_UPI000472F551 glutathione ABC transporter permease 8.33015615551e-06 4.32652529801e-05 3.49350968246e-05 +UniRef50_UPI000474A020 hypothetical protein 0.000229424931439 1.64636102715e-05 -0.000212961321167 +UniRef50_A6LU95 N anthranilate isomerase 0.000861953350356 0.00157845820507 0.000716504854714 +UniRef50_A5UL11 0.000626932597754 0.000326316801329 -0.000300615796425 +UniRef50_B0VDS9 0.000356695022163 0.00460131300926 0.0042446179871 +UniRef50_I0C2H0 Fructose repressor 0.0190266677709 0.00342176491526 -0.0156049028556 +UniRef50_UPI00037044F7 hypothetical protein 2.04945012722e-05 3.95562186573e-05 1.90617173851e-05 +UniRef50_Q9RX08 DNA polymerase III subunit alpha 9.50575706519e-05 0.0466162262768 0.0465211687061 +UniRef50_I5CJV7 Transposase domain containing protein 0.0001546207381 1.45714138554e-05 -0.000140049324245 +UniRef50_Q890Z7 Anaerobic sulfite reductase subunit B 0.00170184379314 0.000584149937975 -0.00111769385516 +UniRef50_G7M6C4 Cof like hydrolase 0.000417881168475 0.00133074844544 0.000912867276965 +UniRef50_P52230 Thioredoxin 1 0.00733842840842 0.00116572383629 -0.00617270457213 +UniRef50_D2JGC9 3.20748250189e-05 6.09621683251e-05 2.88873433062e-05 +UniRef50_Q6AAD6 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.000440647678038 0.0066796443758 0.00623899669776 +UniRef50_Q2FK09 Sensory transduction protein LytR 0.0101882651183 0.00307315277977 -0.00711511233853 +UniRef50_V4RNU3 0.000138278525101 3.58271834081e-05 -0.000102451341693 +UniRef50_Q3J3X3 Phage head tail adaptor, putative, SPP1 family 0.000829279947929 0.00114145741562 0.000312177467691 +UniRef50_UPI00047EEAC2 hypothetical protein 2.89191585537e-05 4.23854558058e-05 1.34662972521e-05 +UniRef50_E0S3Q3 Transposase ISNCY family 0.00244767348249 0.00844206815596 0.00599439467347 +UniRef50_P76339 Probable sensor like histidine kinase YedV 0.00273382373586 0.000926959934109 -0.00180686380175 +UniRef50_E8KBP6 HD domain protein 1.93752345385e-05 6.8460525385e-05 4.90852908465e-05 +UniRef50_W8RAH0 Chromosome partitioning protein ParA 0.000804825322096 0.000144439925708 -0.000660385396388 +UniRef50_A9BWW9 0.000138120329047 3.4948807227e-05 -0.00010317152182 +UniRef50_V5SYK3 0.000978136046142 9.83296465662e-05 -0.000879806399576 +UniRef50_UPI00037371BE hypothetical protein 3.55152543249e-05 3.13352797972e-05 -4.1799745277e-06 +UniRef50_UPI00035DE041 hypothetical protein, partial 7.8577041694e-05 4.3827569275e-05 -3.4749472419e-05 +UniRef50_UPI000363ADAC hypothetical protein 1.20842181212e-05 1.39860044735e-05 1.9017863523e-06 +UniRef50_A3T2U3 ATPase, ParA type 0.000716992915669 0.000204190183557 -0.000512802732112 +UniRef50_K7VU62 Cystathionine beta lyase 0.00354406439227 0.000577151541614 -0.00296691285066 +UniRef50_A0R8M3 2.48671920367e-05 0.000814727585167 0.00078986039313 +UniRef50_Q15U36 Glucose 1 phosphate adenylyltransferase 1 8.43638884382e-06 1.16837701088e-05 3.24738126498e-06 +UniRef50_UPI0003711421 hypothetical protein, partial 2.89252710521e-05 0.000568038685446 0.000539113414394 +UniRef50_E0SHR7 FMN oxidoreductase 0.000149796027328 0.00791985845902 0.00777006243169 +UniRef50_Q14IN1 Ribonuclease H 5.20510364846e-05 2.1239030553e-05 -3.08120059316e-05 +UniRef50_O27880 Indolepyruvate oxidoreductase subunit IorA 0.00351684692208 0.00117737541649 -0.00233947150559 +UniRef50_Q3J4T8 0.0117290348146 0.00306153973976 -0.00866749507484 +UniRef50_UPI0003B38ED8 hypothetical protein 1.48594296024e-05 1.9669223942e-05 4.8097943396e-06 +UniRef50_A9BIU9 Adenine deaminase 1.56474287692e-05 5.210868697e-06 -1.04365600722e-05 +UniRef50_P75958 Lipoprotein releasing system transmembrane protein LolE 0.00204653761508 0.000155293622362 -0.00189124399272 +UniRef50_Q3J4T7 0.0120217623574 0.00460647465408 -0.00741528770332 +UniRef50_D3E2W0 0.00310428531721 0.0010222135713 -0.00208207174591 +UniRef50_UPI0002557D47 DctM 0.000907048296985 0.000276001105979 -0.000631047191006 +UniRef50_O27112 2 oxoglutarate synthase subunit KorA 0.00316795934309 0.000823005031183 -0.00234495431191 +UniRef50_G7TFM6 Amine oxidase 0.000106835657221 0.0599940262991 0.0598871906419 +UniRef50_D2ZP63 0.00200768700183 0.000287757963199 -0.00171992903863 +UniRef50_UPI000401523E diguanylate cyclase 3.40525466333e-06 1.29603755335e-06 -2.10921710998e-06 +UniRef50_H6LBB1 Electron transfer flavoprotein alpha subunit EtfA 0.000278032970735 0.000180254347023 -9.7778623712e-05 +UniRef50_E3ZMP6 Cell surface protein 1.18200917222e-05 0.0010359870371 0.00102416694538 +UniRef50_J4X1R2 Putative membrane protein 1.20413591511e-05 1.64745249288e-05 4.4331657777e-06 +UniRef50_UPI000440E981 PREDICTED 1.93799723915e-05 1.69142195791e-05 -2.4657528124e-06 +UniRef50_UPI000318D5FE hypothetical protein 0.00213687398943 0.000378377486972 -0.00175849650246 +UniRef50_B7M3G3 1.33139026437e-05 0.000660180362594 0.00064686645995 +UniRef50_P0AE35 Arginine ABC transporter permease protein ArtQ 0.00235971576538 0.00108327315113 -0.00127644261425 +UniRef50_UPI0001FFE7BF acyl CoA dehydrogenase 4.38257993095e-06 0.000124749010128 0.000120366430197 +UniRef50_A6TUJ7 0.000105149300518 0.000959316160476 0.000854166859958 +UniRef50_B9KSZ0 0.00292341767493 0.00385195702429 0.00092853934936 +UniRef50_C5N523 ACT domain protein 0.0146640856738 0.00575587703724 -0.00890820863656 +UniRef50_UPI000225C163 chromosome partitioning protein ParB 3.12097597433e-05 0.000173086506712 0.000141876746969 +UniRef50_W1GGS3 0.000463278450397 0.000242062873115 -0.000221215577282 +UniRef50_Q3MGL3 Aspartate tRNA ligase 3.34598481438e-06 4.2961483543e-05 3.96154987286e-05 +UniRef50_A3V850 0.000112996146319 2.13294147053e-05 -9.16667316137e-05 +UniRef50_Q9JTA4 UPF0210 protein NMA1908 0.00614767040159 0.0126126001678 0.00646492976621 +UniRef50_UPI0003B6C834 threonine transporter RhtB 4.93465431983e-05 4.28579450692e-05 -6.4885981291e-06 +UniRef50_C5Y7E8 1.87384259278e-05 0.000267157465989 0.000248419040061 +UniRef50_UPI000362A601 hypothetical protein, partial 0.000122170979702 0.000501954739708 0.000379783760006 +UniRef50_UPI0002F03396 diguanylate cyclase 2.54246341767e-05 0.000128626861802 0.000103202227625 +UniRef50_UPI00037317AF hypothetical protein 0.000166355634444 6.05166811913e-06 -0.000160303966325 +UniRef50_UPI00047845D5 hypothetical protein 1.40033665522e-05 7.6470230508e-06 -6.3563435014e-06 +UniRef50_UPI00016C3F6F 3,4 dihydroxy 2 butanone 4 phosphate synthase 9.96639223858e-06 7.17689807651e-05 6.18025885265e-05 +UniRef50_UPI000467903E hypothetical protein 0.000210560120857 6.45534527369e-05 -0.00014600666812 +UniRef50_UPI0004097C5D dihydroxyacetone kinase 1.44571803628e-05 0.000328584640648 0.000314127460285 +UniRef50_P43089 5 aminolevulinate synthase 0.029981804835 0.0080266322494 -0.0219551725856 +UniRef50_X1NAG8 Marine sediment metagenome DNA, contig 6.18516036731e-05 6.43431417699e-05 2.4915380968e-06 +UniRef50_Q8Q0R3 Ribose 5 phosphate isomerase A 0.00449712607076 0.000860145743281 -0.00363698032748 +UniRef50_UPI00047E1233 hypothetical protein 9.89136849959e-05 0.000176431345211 7.75176602151e-05 +UniRef50_R5HZ00 FeS assembly ATPase SufC 4.32996613314e-05 0.000156804322936 0.000113504661605 +UniRef50_UPI0003A3F0F8 amino acid transporter 7.66288213797e-06 0.00105497944913 0.00104731656699 +UniRef50_P39288 Epoxyqueuosine reductase 0.00388006912436 0.0013528605921 -0.00252720853226 +UniRef50_O27481 Putative branched chain amino acid aminotransferase 0.00401571415734 0.000689645913971 -0.00332606824337 +UniRef50_F3Z639 1.14578448277e-06 1.68231043761e-05 1.56773198933e-05 +UniRef50_A5VSQ0 2 oxoglutarate dehydrogenase E1 component 1.97192859365e-06 8.50994875812e-06 6.53802016447e-06 +UniRef50_P00414 Cytochrome c oxidase subunit 3 8.06272780121e-05 3.05286715821e-05 -5.009860643e-05 +UniRef50_Q4Q523 2.97172479437e-06 3.92121974942e-05 3.62404726998e-05 +UniRef50_X0PDD7 Peptide deformylase 9.71339564776e-06 1.7940665365e-05 8.22726971724e-06 +UniRef50_UPI000378FEFA hypothetical protein 1.13220560962e-06 1.88859797553e-05 1.77537741457e-05 +UniRef50_A4WTH0 Probable chemoreceptor glutamine deamidase CheD 0.00197953362132 0.000750273933735 -0.00122925968759 +UniRef50_Q3BXK0 Glutamate cysteine ligase 0.00682856069596 0.000713423282344 -0.00611513741362 +UniRef50_F6G433 3.257925277e-05 7.69225404854e-05 4.43432877154e-05 +UniRef50_F4A483 Diacylglycerol kinase 0.000849385732915 0.00116153329845 0.000312147565535 +UniRef50_Q985W1 Ribonuclease H 6.31285508871e-05 1.97568981501e-05 -4.3371652737e-05 +UniRef50_O27611 Conserved protein 0.00314821317319 0.000111650928232 -0.00303656224496 +UniRef50_UPI00036239CD hypothetical protein 1.36653782323e-05 6.88930198833e-06 -6.77607624397e-06 +UniRef50_B2TQA9 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.000906275243296 0.00132656550976 0.000420290266464 +UniRef50_UPI00036BC4EC hypothetical protein 1.15347164934e-05 3.96672393342e-05 2.81325228408e-05 +UniRef50_H3WPI1 PF05656 family protein 0.00563577704316 0.000413030356916 -0.00522274668624 +UniRef50_UPI00046CCA8E 2 oxoglutarate dehydrogenase 2.06569841217e-06 5.49445307193e-06 3.42875465976e-06 +UniRef50_E8RVY2 TraU family protein 0.000128982009405 2.70537941938e-05 -0.000101928215211 +UniRef50_UPI00047CFDC7 hypothetical protein 0.000669169116119 0.000307108941899 -0.00036206017422 +UniRef50_Q0AHR1 Transcriptional regulator, BolA protein family 3.42875322389e-05 0.000100170681224 6.58831489851e-05 +UniRef50_U1XA26 Transcriptional regulator, GntR family 0.000340497262286 0.000623279077877 0.000282781815591 +UniRef50_D6DJI1 PTS system N acetylglucosamine specific IIB component, Glc family PTS system N acetylglucosamine specific IIC component, Glc family (TC 4.A.1.1.2) 0.000389623864651 0.00111345693467 0.000723833070019 +UniRef50_A5W0Y9 Peptidase M19, renal dipeptidase 0.000910900227576 0.000441720928674 -0.000469179298902 +UniRef50_UPI000262D0AF flagellin domain containing protein 8.89558631426e-07 1.44968304461e-06 5.60124413184e-07 +UniRef50_UPI00045612E6 hypothetical protein PFL1_02986 8.32100956431e-06 4.75055804066e-06 -3.57045152365e-06 +UniRef50_B7GN27 Non canonical purine NTP pyrophosphatase 7.11228475285e-05 4.72602452093e-05 -2.38626023192e-05 +UniRef50_A0A020D642 0.000480645200655 0.000135418379173 -0.000345226821482 +UniRef50_A0Q1U2 Fe S oxidoreductase, putative 0.000217179360525 0.00113204028315 0.000914860922625 +UniRef50_R6K577 Tagatose 6 phosphate kinase 0.000756387696718 0.000465857776198 -0.00029052992052 +UniRef50_UPI0003C1230B PREDICTED 4.29456931009e-05 3.29882314976e-05 -9.9574616033e-06 +UniRef50_Q8H389 0.000111611159966 7.10802059353e-05 -4.05309540307e-05 +UniRef50_D8IDT0 GCN5 related N acetyltransferase 0.000286218033601 0.0012913760692 0.0010051580356 +UniRef50_Q5FKM6 Enolase 8.08360214071e-06 7.9821167834e-05 7.17375656933e-05 +UniRef50_I9J361 6.43013775942e-06 7.72572455111e-06 1.29558679169e-06 +UniRef50_M1MMR7 0.000113586556327 0.00231629506579 0.00220270850946 +UniRef50_Q9FFR3 6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic 0.00957532512218 0.00249574819102 -0.00707957693116 +UniRef50_A0QVT2 Ribonuclease J 8.34858475724e-05 6.71450867644e-05 -1.6340760808e-05 +UniRef50_UPI0002631A0F hypothetical protein 3.15136279201e-05 6.62057655609e-06 -2.4893051364e-05 +UniRef50_UPI000329A978 1.76345374863e-05 1.85718624917e-05 9.373250054e-07 +UniRef50_D5ECW5 DNA gyrase subunit A 7.50767945313e-06 1.52780582458e-05 7.77037879267e-06 +UniRef50_V7EPQ5 0.000635423978179 7.25448766512e-05 -0.000562879101528 +UniRef50_V5VD87 CsuC 0.00049091202226 0.00637057955153 0.00587966752927 +UniRef50_Q83RN5 Respiratory nitrate reductase 1 beta chain 0.0130631665218 0.00769058512479 -0.00537258139701 +UniRef50_A0Q3H7 Riboflavin biosynthesis protein RibBA 0.000703444196473 0.00594479967104 0.00524135547457 +UniRef50_A5CW02 Aspartate 1 decarboxylase 0.00195251373544 0.00258331700717 0.00063080327173 +UniRef50_J0HLU4 3.96350842689e-05 5.30765240372e-06 -3.43274318652e-05 +UniRef50_UPI00037A3165 hypothetical protein 8.51964567906e-05 0.000206530757731 0.00012133430094 +UniRef50_P98005 Cytochrome c oxidase polypeptide I+III 1.20147082364e-05 0.000233315847471 0.000221301139235 +UniRef50_A3PJY9 Permease YjgP YjgQ family protein 0.00290655966406 0.000544816646995 -0.00236174301706 +UniRef50_UPI0003724245 hypothetical protein 2.61761189804e-05 5.68407584567e-06 -2.04920431347e-05 +UniRef50_F0NRM0 L serine ammonia lyase alpha subunit 0.027628888944 0.00575126855223 -0.0218776203918 +UniRef50_UPI00035C1D9A hypothetical protein 1.15619133208e-05 1.31923547672e-05 1.6304414464e-06 +UniRef50_Q5HLA7 Aldehyde dehydrogenase family protein 0.0120725487064 0.00261686892626 -0.00945567978014 +UniRef50_B7UXY9 Phosphoribosylformylglycinamidine cyclo ligase 0.00402223697511 0.00353197093744 -0.00049026603767 +UniRef50_UPI0002559CF6 3 hydroxyacyl CoA dehydrogenase, NAD binding, partial 3.32290101768e-06 6.01455813173e-06 2.69165711405e-06 +UniRef50_K8WXC5 0.00472208075826 0.000697598516207 -0.00402448224205 +UniRef50_Q329T6 Low affinity potassium transport system protein kup 0.00269636664894 0.000978881537668 -0.00171748511127 +UniRef50_UPI000316D8EB hypothetical protein 1.21712265769e-05 1.3040543299e-05 8.693167221e-07 +UniRef50_UPI00047B6E0E hypothetical protein 6.90033211016e-05 1.8592424065e-05 -5.04108970366e-05 +UniRef50_UPI000467AAAB hypothetical protein, partial 2.61350446619e-05 2.5936688778e-05 -1.983558839e-07 +UniRef50_C5B3S3 0.000346932172054 1.55494757438e-05 -0.00033138269631 +UniRef50_A6QIH4 0.0108062073194 0.000723224584158 -0.0100829827352 +UniRef50_UPI00036099F9 hypothetical protein 5.18719236938e-06 7.33354441549e-06 2.14635204611e-06 +UniRef50_Q82A73 5.18579275325e-06 0.000171812841632 0.000166627048879 +UniRef50_W6RBC1 Phage head tail adaptor 8.56390434695e-05 2.83898724044e-05 -5.72491710651e-05 +UniRef50_UPI000374F5C0 hypothetical protein 0.00104929150267 0.000157499247499 -0.000891792255171 +UniRef50_A5UKP1 Phosphate specific transport system accessory protein PhoU 0.00256938102455 0.000330578401339 -0.00223880262321 +UniRef50_Q6FA90 C4 dicarboxylate transport protein 0.000130768818311 0.00769777025911 0.0075670014408 +UniRef50_UPI0000557712 hypothetical protein 0.000806042233127 0.000496545819752 -0.000309496413375 +UniRef50_H8LWD1 0.000546557388125 0.00899508968218 0.00844853229405 +UniRef50_R4Z0C6 3.19874306103e-05 2.92172094424e-05 -2.7702211679e-06 +UniRef50_UPI00035EB969 hypothetical protein 0.000130926497138 1.63102001417e-05 -0.000114616296996 +UniRef50_F2I582 ABC transporter, ATP binding protein 0.00400947208509 0.00449927617088 0.00048980408579 +UniRef50_Q9RWC7 Arginine repressor 2.05030760174e-05 0.0490244909542 0.0490039878782 +UniRef50_R7GNX0 HD domain protein 4.18116326724e-06 1.27309878811e-05 8.54982461386e-06 +UniRef50_A4WTR4 Phosphate starvation inducible E 0.000440719366681 0.00020691321173 -0.000233806154951 +UniRef50_UPI0002377C07 hypothetical protein 5.5961263498e-06 6.46246036565e-06 8.6633401585e-07 +UniRef50_I6Z4Y8 Respiratory nitrate reductase gamma chain 0.00232991819099 0.000264858031563 -0.00206506015943 +UniRef50_W0YWT0 ClpB protein 0.00085439184778 0.000370933662252 -0.000483458185528 +UniRef50_UPI0002FBC9AA hypothetical protein 1.39439386122e-05 0.00128504374505 0.00127109980644 +UniRef50_B7GVA1 Isochorismatase family protein 0.000222924796565 0.00449429127886 0.0042713664823 +UniRef50_B0BVB8 ATP synthase subunit alpha 3.76144854743e-06 1.09413747784e-05 7.17992623097e-06 +UniRef50_B9KPP5 0.000664983016083 0.000642278913615 -2.2704102468e-05 +UniRef50_A9M0F2 Phopholipase D family protein 0.000200820709593 0.00375602960254 0.00355520889295 +UniRef50_Q9I3N7 Cytochrome c biogenesis ATP binding export protein CcmA 1.18708463366e-05 0.0003565191612 0.000344648314863 +UniRef50_Q1C0H2 LPS assembly protein LptD 0.00311222543277 0.000668272851976 -0.00244395258079 +UniRef50_A8Z171 Iron ABC superfamily ATP binding cassette transporter, membrane protein 0.0122701626388 0.00319249001276 -0.00907767262604 +UniRef50_J7L817 8.58291885866e-05 3.10747414477e-05 -5.47544471389e-05 +UniRef50_B5F050 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.00244704840753 0.00112973423778 -0.00131731416975 +UniRef50_P00562 Bifunctional aspartokinase homoserine dehydrogenase 2 0.00356742452155 0.000928145252598 -0.00263927926895 +UniRef50_D1BPV2 NADH dehydrogenase (Quinone) 0.00557201668545 0.000808824841434 -0.00476319184402 +UniRef50_T1Y7R5 Exotoxin 0.0107203719702 0.000259429023591 -0.0104609429466 +UniRef50_D4HF81 0.000513450790143 0.00417035759763 0.00365690680749 +UniRef50_A0A019G9E1 0.000137493789792 3.59338853264e-05 -0.000101559904466 +UniRef50_Q88M14 Sensory box protein GGDEF family protein 0.00130555479402 0.000397775225145 -0.000907779568875 +UniRef50_UPI0003C11D1D PREDICTED 4.33494446818e-06 8.10228691002e-06 3.76734244184e-06 +UniRef50_A6LSU0 0.00147186649583 0.000301856938874 -0.00117000955696 +UniRef50_Q9RXT7 0.000134816424593 0.0487960403192 0.0486612238946 +UniRef50_O05405 0.000169276228183 0.000540378587781 0.000371102359598 +UniRef50_A1R3Q2 Oxidoreductase, short chain dehydrogenase reductase family 0.000746990077563 0.000248862392015 -0.000498127685548 +UniRef50_Q2FEK1 Urease accessory protein UreF 0.010174376124 0.0022122604365 -0.0079621156875 +UniRef50_UPI000369649D hypothetical protein 3.86524171518e-05 5.99467452293e-06 -3.26577426289e-05 +UniRef50_F9ZKH5 0.00138560393776 0.00573147846512 0.00434587452736 +UniRef50_UPI0004560A6D hypothetical protein PFL1_03815 8.58460959689e-06 4.73221201602e-05 3.87375105633e-05 +UniRef50_UPI0003717F60 hypothetical protein 1.39342773528e-05 1.56849409362e-05 1.7506635834e-06 +UniRef50_UPI000262CA60 putative metallo beta lactamase superfamily hydrolase 9.05756029937e-05 1.78696737748e-05 -7.27059292189e-05 +UniRef50_UPI00031698A8 hypothetical protein 3.84641626733e-05 5.35980756056e-05 1.51339129323e-05 +UniRef50_G3XD23 UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase 0.00140492932784 0.00805729262555 0.00665236329771 +UniRef50_UPI0003EBD820 PREDICTED 1.01356469488e-05 3.50046208615e-06 -6.63518486265e-06 +UniRef50_UPI0003B543B8 DNA repair protein RecO 1.88932769844e-05 7.07775829709e-05 5.18843059865e-05 +UniRef50_A5F9G1 D erythrose 4 phosphate dehydrogenase 9.80357273885e-05 7.88609471736e-05 -1.91747802149e-05 +UniRef50_R7PYB9 0.00236616801194 0.00096355155339 -0.00140261645855 +UniRef50_P42603 Inner membrane protein YgjV 0.000909282410253 0.000341406595601 -0.000567875814652 +UniRef50_K7S0H1 ABC transporter, ATP binding protein 0.000335783379478 0.0022399126024 0.00190412922292 +UniRef50_F7WZ70 Pyruvate dehydrogenase E1 component 0.00306425572455 0.000831695608479 -0.00223256011607 +UniRef50_W4YDX4 1.7601158752e-06 1.00429786053e-05 8.2828627301e-06 +UniRef50_Q8DPY7 0.00010673496386 0.00409440213052 0.00398766716666 +UniRef50_UPI0003B64F06 ferredoxin 1.37440511857e-05 7.85623693334e-05 6.48183181477e-05 +UniRef50_UPI00046F9C26 hypothetical protein 3.0566364927e-06 4.27552439953e-06 1.21888790683e-06 +UniRef50_B9KX10 ABC branched chain amino acid transporter, periplasmic ligand binding protein 0.00737266898855 0.00129502666476 -0.00607764232379 +UniRef50_F4FEB2 5.04279518057e-05 2.1626015424e-05 -2.88019363817e-05 +UniRef50_A4VM39 Ribosomal RNA large subunit methyltransferase K L 0.000667081276874 6.01621686068e-06 -0.000661065060013 +UniRef50_A5UMN6 5 methylthioadenosine S adenosylhomocysteine deaminase 0.00539999653416 0.00113830807499 -0.00426168845917 +UniRef50_D2N3E8 0.00727990303111 0.00131547843319 -0.00596442459792 +UniRef50_X5IEK4 Putative endolysin 2.02668763943e-05 1.31232973832e-05 -7.1435790111e-06 +UniRef50_Q0SU50 Amino acid permease family protein 0.000397119635086 0.000548397254166 0.00015127761908 +UniRef50_P76190 Murein DD endopeptidase MepH 0.0044566552171 0.00169463581939 -0.00276201939771 +UniRef50_D3E0L0 Signal recognition particle receptor FtsY 0.00263159152802 0.00175435637597 -0.00087723515205 +UniRef50_Q92I89 Holliday junction ATP dependent DNA helicase RuvA 1.31395885076e-05 1.0231567865e-05 -2.9080206426e-06 +UniRef50_O58097 Glutamine synthetase 1.1422456592e-05 3.80688895014e-05 2.66464329094e-05 +UniRef50_UPI000376B86D hypothetical protein, partial 2.02506642053e-06 8.03169847841e-05 7.82919183636e-05 +UniRef50_UPI00046E5399 hypothetical protein 3.41774287753e-06 3.07907293182e-05 2.73729864407e-05 +UniRef50_B2I0Y3 Pirin related protein 1.66951234573e-05 0.010076730023 0.0100600348995 +UniRef50_Q9ZMR3 6.91415627371e-06 0.00316286868 0.00315595452373 +UniRef50_P41655 0.00335253391129 0.000637288368734 -0.00271524554256 +UniRef50_C6SPD8 0.00280884788994 0.00227967742469 -0.00052917046525 +UniRef50_O83814 Methionine aminopeptidase 6.41370610009e-05 4.44907856664e-05 -1.96462753345e-05 +UniRef50_Q11D29 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.000558621510939 0.000673337516189 0.00011471600525 +UniRef50_UPI00036E30BF hypothetical protein 6.51880157751e-05 0.000100871184456 3.56831686809e-05 +UniRef50_Q5FGN1 Nucleoside diphosphate kinase 6.66409132438e-05 4.10090700368e-05 -2.5631843207e-05 +UniRef50_A3JG79 1.85666981672e-05 8.76374894491e-05 6.90707912819e-05 +UniRef50_UPI00028934E4 ATP 2.45014181697e-05 0.000597978106378 0.000573476688208 +UniRef50_Q31H63 Argininosuccinate synthase 0.000149523082772 0.0417382965823 0.0415887734995 +UniRef50_UPI00001AD637 argininosuccinate lyase 2.21550511147e-05 1.036985068e-05 -1.17852004347e-05 +UniRef50_Q5HLL0 0.0103387982479 0.00216742869009 -0.00817136955781 +UniRef50_X0XAV8 Marine sediment metagenome DNA, contig 7.13304183765e-06 1.32045135111e-05 6.07147167345e-06 +UniRef50_J7M7S6 Myo inositol 1 monophosphatase 0.00804700835095 0.000598040847185 -0.00744896750376 +UniRef50_D3E3I9 PIN domain containing protein 0.00502850448435 0.00113589816871 -0.00389260631564 +UniRef50_Q2P0Z5 Threonine tRNA ligase 0.000676327370072 0.00732687038877 0.0066505430187 +UniRef50_E7DN70 QueT 0.00012504245977 6.67539899331e-05 -5.82884698369e-05 +UniRef50_D3NWU2 3.63143974444e-05 0.000184380877328 0.000148066479884 +UniRef50_Q11CE6 Carbohydrate ABC transporter substrate binding protein, CUT1 family 0.0132830818129 0.00317025403489 -0.010112827778 +UniRef50_UPI00035EA204 hypothetical protein 4.16443398662e-06 1.25382889291e-05 8.37385494248e-06 +UniRef50_UPI0001913039 uracil permease 2.9188008718e-05 5.61869564545e-05 2.69989477365e-05 +UniRef50_UPI0004642331 hypothetical protein 3.39186437955e-05 9.5308680581e-06 -2.43877757374e-05 +UniRef50_P31153 S adenosylmethionine synthase isoform type 2 0.000193177148966 0.0408117810812 0.0406186039322 +UniRef50_A0A059DU66 0.000126640320636 2.27813549029e-05 -0.000103858965733 +UniRef50_O27593 Probable cyclic pyranopterin monophosphate synthase 0.0022033810447 0.00181163821134 -0.00039174283336 +UniRef50_D8ULY9 1.64409741602e-05 1.40213674558e-05 -2.4196067044e-06 +UniRef50_P21801 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.0111938238184 0.00140531154552 -0.00978851227288 +UniRef50_UPI00021A5A53 PREDICTED 2.17659913751e-06 1.60076595174e-05 1.38310603799e-05 +UniRef50_J9FKP1 Carboxynorspermidine decarboxylase 0.000182430208749 4.76569967588e-05 -0.00013477321199 +UniRef50_W8EP13 Lysyl tRNA synthetase 0.000193252212719 0.00762652728641 0.00743327507369 +UniRef50_P64305 Non canonical purine NTP pyrophosphatase 0.000135402968864 2.24834329492e-05 -0.000112919535915 +UniRef50_A0A025ZG79 0.00214409904947 0.000427574874335 -0.00171652417514 +UniRef50_I4YMG6 Putative integral membrane protein 1.09453542477e-05 3.88808569883e-05 2.79355027406e-05 +UniRef50_Q3K2Q5 Biotin synthase 0.000196949211577 0.000220804133112 2.3854921535e-05 +UniRef50_R4ZQK4 D alanyl transfer protein DltB 0.00522016037898 0.0033477670034 -0.00187239337558 +UniRef50_A0A023KPW6 Glycosyl transferase 0.00171665141021 0.000289053871314 -0.0014275975389 +UniRef50_B9KWR4 0.000322637597309 0.000403794786929 8.115718962e-05 +UniRef50_F0VBH0 1.74170711526e-05 3.07747069636e-07 -1.7109324083e-05 +UniRef50_K0N7F3 PTS system beta glucoside specific EIIBCA component 0.00049822895389 0.00188657675705 0.00138834780316 +UniRef50_Q86AV6 Citrate synthase 1.42607312939e-05 4.14398055873e-05 2.71790742934e-05 +UniRef50_D7CVN0 3 isopropylmalate dehydrogenase 0.00149813201041 0.0371061978325 0.0356080658221 +UniRef50_UPI000472AC29 hypothetical protein 0.00013666428954 5.86009946937e-05 -7.80632948463e-05 +UniRef50_P0ABP7 Protein DedA 0.00576454358894 0.00660322188901 0.00083867830007 +UniRef50_F5LXH0 9.04874786253e-05 0.000182627804264 9.21403256387e-05 +UniRef50_L6Z8K5 Protease3 0.00213118616159 0.00128890362074 -0.00084228254085 +UniRef50_B8GW56 Chromosome replication regulator protein HdaA 3.15549431916e-05 1.03228587873e-05 -2.12320844043e-05 +UniRef50_UPI00037B2D8F hypothetical protein 4.62367343728e-06 2.46205245112e-05 1.99968510739e-05 +UniRef50_U3U2D6 2.03499320393e-05 1.6214525928e-05 -4.1354061113e-06 +UniRef50_Q1JDL9 Transcriptional regulator, RpiR family 0.000358954940073 0.000340750044459 -1.8204895614e-05 +UniRef50_W6RVE8 0.000324486523369 0.000349487225087 2.5000701718e-05 +UniRef50_E6SIX1 1.53094863252e-05 5.54346221637e-05 4.01251358385e-05 +UniRef50_C6SS20 0.00479605736104 0.00186250625388 -0.00293355110716 +UniRef50_P75967 0.00338005953882 0.00193017807743 -0.00144988146139 +UniRef50_Q8Y6R2 ADP dependent NAD(P)H hydrate dehydratase 6.42351111368e-06 0.00299564812779 0.00298922461668 +UniRef50_P32106 5.88001167273e-05 0.00341640894245 0.00335760882572 +UniRef50_P75968 0.00101934772063 0.000256425503788 -0.000762922216842 +UniRef50_UPI00035E4836 peptidase 1.05197627732e-05 1.24900849326e-05 1.9703221594e-06 +UniRef50_B4L348 GI15483 5.51782985938e-06 1.76005615544e-05 1.2082731695e-05 +UniRef50_W5X806 50S ribosomal protein L17 6.22852846008e-05 3.92058001902e-05 -2.30794844106e-05 +UniRef50_H8GWD9 0.0002066529136 0.0440874896079 0.0438808366943 +UniRef50_Q9JRW7 Biotin synthase 2.36308858513e-05 0.0046013747539 0.00457774386805 +UniRef50_Q3IVK2 Zinc containing alcohol dehydrogenase 0.0024183178032 0.000179888348343 -0.00223842945486 +UniRef50_A0A034SZW0 Periplasmic nitrate reductase 0.00219633009431 0.000941956684181 -0.00125437341013 +UniRef50_UPI00016A43A2 UvrD REP helicase, partial 1.90573123998e-05 6.07811427936e-06 -1.29791981204e-05 +UniRef50_A3PNU0 Transcriptional regulator, LacI family 0.000741885186622 0.000185733776861 -0.000556151409761 +UniRef50_P37629 0.00289293591284 0.00205699626279 -0.00083593965005 +UniRef50_Q7VMF9 Macrolide export ATP binding permease protein MacB 4.7595927298e-06 4.01318801426e-06 -7.4640471554e-07 +UniRef50_UPI000471FEB2 XRE family transcriptional regulator 0.000200158434538 2.1075159957e-05 -0.000179083274581 +UniRef50_P37626 0.00338511652885 0.000489949704206 -0.00289516682464 +UniRef50_Q2K7T8 NADP dependent isocitrate dehydrogenase protein 0.000291456144111 0.000142945309896 -0.000148510834215 +UniRef50_UPI00029B17E0 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase 0.000506608118671 0.000586715218531 8.010709986e-05 +UniRef50_V9WQ71 NTP pyrophosphohydrolase 0.00313738584051 0.000787511213846 -0.00234987462666 +UniRef50_UPI000367676A hypothetical protein 0.00045831906472 0.000248952463497 -0.000209366601223 +UniRef50_J7QB63 Phosphatidylserine decarboxylase 0.00434771783878 0.00167207892025 -0.00267563891853 +UniRef50_U5NRM8 0.00144632495964 3.50248339198e-05 -0.00141130012572 +UniRef50_C3XBE9 2.65564693367e-05 9.38416933714e-06 -1.71722999996e-05 +UniRef50_U5NRM4 0.000611372706377 0.00136942694941 0.000758054243033 +UniRef50_I0C7C2 0.0242463613767 0.00556411395311 -0.0186822474236 +UniRef50_Q6F916 0.000172688573019 0.00664396455174 0.00647127597872 +UniRef50_K5YPQ7 Antirepressor 0.000111030153255 5.13591881625e-05 -5.96709650925e-05 +UniRef50_UPI0003675C2C hypothetical protein 6.88365544355e-06 4.01607167027e-05 3.32770612591e-05 +UniRef50_P31666 0.00194635886307 0.000850143664969 -0.0010962151981 +UniRef50_P31667 0.00468031726846 0.00215327818878 -0.00252703907968 +UniRef50_P31665 0.00599109353116 0.000552277806127 -0.00543881572503 +UniRef50_A0A029L0Z7 1.4769321213e-05 2.44195210172e-05 9.6501998042e-06 +UniRef50_P31122 Sugar efflux transporter 0.00355331312164 0.00183082134546 -0.00172249177618 +UniRef50_W6RZK7 0.00191499707281 0.00328636636805 0.00137136929524 +UniRef50_U6IHI4 Iron sulfur cluster assembly 2 0.00022540843364 3.24957928703e-05 -0.00019291264077 +UniRef50_UPI00016A2A91 molybdate ABC transporter, inner membrane subunit, partial 5.14838327607e-05 3.00919595891e-05 -2.13918731716e-05 +UniRef50_UPI000237A7F7 ribose transport ATP binding protein rbsA 1.12291695496e-05 4.81652021619e-06 -6.41264933341e-06 +UniRef50_A6LS74 0.000455155043195 0.00195423961778 0.00149908457458 +UniRef50_A1WV96 50S ribosomal protein L17 0.0010270630181 0.000471250061484 -0.000555812956616 +UniRef50_UPI0002F511F9 cytochrome C oxidase subunit I 2.34837024184e-05 5.81608022103e-05 3.46770997919e-05 +UniRef50_UPI0002EF1560 hypothetical protein 0.000146579550984 5.34077317215e-05 -9.31718192625e-05 +UniRef50_Q9HAC7-2 Isoform 2 of Succinate hydroxymethylglutarate CoA transferase 4.34065004056e-06 6.64553308336e-05 6.2114680793e-05 +UniRef50_B9DMC7 Probable DNA directed RNA polymerase subunit delta 0.0234248692929 0.00678419508854 -0.0166406742044 +UniRef50_A7NIN1 ABC type Fe3+ transport system periplasmic component like protein 0.00887795138041 0.00213392869809 -0.00674402268232 +UniRef50_Q67QM6 DNA polymerase IV 4.58332637207e-06 7.75986979504e-06 3.17654342297e-06 +UniRef50_H9K7I8 6.29486853175e-06 1.00511977771e-05 3.75632924535e-06 +UniRef50_M1Q601 LrgA associated membrane protein LrgB 0.00051887991244 0.00178289803844 0.001264018126 +UniRef50_A6M2R8 Methyl accepting chemotaxis sensory transducer 0.000123901309249 0.00112842700767 0.00100452569842 +UniRef50_A6LRR4 Transglutaminase domain protein 0.000147647714023 0.00121598044327 0.00106833272925 +UniRef50_UPI000469DD13 sodium 7.67961067116e-06 6.44994865916e-06 -1.229662012e-06 +UniRef50_P33359 Putative osmoprotectant uptake system permease protein YehW 0.0064251743672 0.000490544273213 -0.00593463009399 +UniRef50_Q7VSN2 Glutamyl tRNA amidotransferase subunit A 0.00390828144006 0.011695989121 0.00778770768094 +UniRef50_P94365 Cytochrome bd ubiquinol oxidase subunit 2 4.74583978653e-06 0.00170592006081 0.00170117422102 +UniRef50_A1SSP3 Enoyl CoA hydratase isomerase 0.000440645123179 0.0173390147563 0.0168983696331 +UniRef50_Q31ZL5 0.00244402267224 0.001338706696 -0.00110531597624 +UniRef50_S5UWP0 3.57043957672e-05 7.73783798756e-06 -2.79665577796e-05 +UniRef50_UPI0003F0706F PREDICTED 4.08481407525e-05 3.88109934604e-05 -2.0371472921e-06 +UniRef50_UPI000378D1C1 hypothetical protein 4.46801038563e-06 1.02676531094e-05 5.79964272377e-06 +UniRef50_E8XQD0 Membrane dipeptidase 0.00180707326623 0.00105808716017 -0.00074898610606 +UniRef50_Q6AHF5 Uroporphyrinogen decarboxylase 3.80016201938e-06 0.000552938929852 0.000549138767833 +UniRef50_Q8TLM8 Phosphoglycerate mutase family protein 0.00019259489227 0.00484339743989 0.00465080254762 +UniRef50_UPI000348926B hypothetical protein 0.000211288581341 4.05701150131e-05 -0.000170718466328 +UniRef50_P0AAN2 Hydrogenase 2 operon protein HybE 0.00324828063679 6.06287930931e-05 -0.0031876518437 +UniRef50_UPI00037952D8 hypothetical protein 2.23817272306e-06 9.568088302e-05 9.34427102969e-05 +UniRef50_Q2FH23 Response regulator ArlR 0.0306033020347 0.0127436778101 -0.0178596242246 +UniRef50_UPI00040D89D5 sulfate adenylyltransferase 1.07728854519e-05 2.570842933e-05 1.49355438781e-05 +UniRef50_A5ULA7 0.00402175811097 0.00100593505449 -0.00301582305648 +UniRef50_Q8ZRS2 Blue copper oxidase CueO 0.00507004495628 0.000895272110715 -0.00417477284557 +UniRef50_UPI0004719AE4 hypothetical protein, partial 1.83916153186e-05 0.000547543355475 0.000529151740156 +UniRef50_A3PMC5 Phospholipid glycerol acyltransferase 0.00503451109147 0.00215997440201 -0.00287453668946 +UniRef50_UPI00046CAC84 hypothetical protein 4.66243464573e-05 0.000339602379294 0.000292978032837 +UniRef50_D2NRM3 Protein containing TPR repeat 0.000384792232431 0.000351346751597 -3.3445480834e-05 +UniRef50_Q46798 0.00308711497791 0.00116320769473 -0.00192390728318 +UniRef50_A3PMP3 Transcriptional regulator, TetR family 0.00882731890626 0.00341831295303 -0.00540900595323 +UniRef50_U6KR03 3.53885893544e-05 0.000203666693245 0.000168278103891 +UniRef50_UPI0003B4D513 PAS sensor protein 2.3163689332e-05 3.5139786727e-06 -1.96497106593e-05 +UniRef50_Q9ZMF0 Putative methylthiotransferase jhp_0270 0.000185193577052 0.00556239335953 0.00537719978248 +UniRef50_B2A326 PSP1 domain protein 0.000799849696465 0.0017809911636 0.000981141467135 +UniRef50_D2J6L2 Universal stress protein family 0.0154269218415 0.00186751771791 -0.0135594041236 +UniRef50_UPI00035E6D97 citrate lyase subunit beta 3.0812789128e-05 1.67595734249e-05 -1.40532157031e-05 +UniRef50_F0YB09 1.98816036622e-05 1.66793935042e-05 -3.202210158e-06 +UniRef50_P08192 Bifunctional protein FolC 0.00222773795582 0.00452931611072 0.0023015781549 +UniRef50_Q8CQG0 Response regulator 0.0127152339112 0.000850089457421 -0.0118651444538 +UniRef50_E6KSM2 0.000246244025364 0.00374029463719 0.00349405061183 +UniRef50_O27322 Argininosuccinate synthase 0.00167024512015 0.000314018761464 -0.00135622635869 +UniRef50_A3U241 0.000218825829679 4.40922905493e-05 -0.00017473353913 +UniRef50_Q9RVU4 Endonuclease III, putative 0.000111682245224 0.0204626640725 0.0203509818273 +UniRef50_P74533 Recombination protein RecR 0.0300919291481 0.00550100083536 -0.0245909283127 +UniRef50_UPI000476740D hypothetical protein 3.22889750513e-06 3.58221359554e-05 3.25932384503e-05 +UniRef50_Q9XAR0 NADH quinone oxidoreductase subunit G 0.00015054940576 0.00679151985845 0.00664097045269 +UniRef50_Q9RXE1 Lysine tRNA ligase 8.10624873615e-05 0.0607525837334 0.060671521246 +UniRef50_UPI000185D783 hypothetical protein, conserved 0.00022987361885 0.000238617088733 8.743469883e-06 +UniRef50_R5XBW3 Carbonic anhydrase family 3 2.34338639738e-05 4.40267099703e-05 2.05928459965e-05 +UniRef50_H5XUP2 Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain 0.00110093494118 0.00200038082425 0.00089944588307 +UniRef50_U5RWM1 Succinate dehydrogenase 0.000293441008987 0.000891177471602 0.000597736462615 +UniRef50_P27603 P protein 2.66437534439e-05 1.90063309577e-05 -7.6374224862e-06 +UniRef50_UPI00036D44BD hypothetical protein, partial 0.00275496573928 0.00135290806956 -0.00140205766972 +UniRef50_Q2IW23 Bifunctional enzyme IspD IspF 5.35897464653e-06 1.75239421609e-05 1.21649675144e-05 +UniRef50_A6W8Y0 Putative cell wall binding repeat 2 containing protein 1.01614352137e-05 9.0513107982e-05 8.03516727683e-05 +UniRef50_I1ASL8 0.000480557919503 4.70759590445e-05 -0.000433481960458 +UniRef50_Q6FFB1 Alginate biosynthesis protein 0.000120731126496 0.00634952083929 0.00622878971279 +UniRef50_C3T0C2 Transcriptional regulation of gcv operon 0.00235505151327 0.000976435716642 -0.00137861579663 +UniRef50_T2L9X7 0.000755508530924 0.000339210145434 -0.00041629838549 +UniRef50_F7QKU3 TRAP transporter solute receptor, TAXI family 4.70891157795e-05 1.89919618391e-05 -2.80971539404e-05 +UniRef50_J9P7N6 4.33139702095e-06 1.455554679e-05 1.02241497691e-05 +UniRef50_A3PNZ4 Transcriptional regulator, SARP family 0.00285512404878 0.000419931019088 -0.00243519302969 +UniRef50_A5EUU4 Na translocating NADH quinone reductase subunit E 0.000737103896835 0.0049323273874 0.00419522349057 +UniRef50_J8TQ37 1.06549507583e-05 0.00334390215461 0.00333324720385 +UniRef50_Q2YSD7 Putative ATP 0.0257911620294 0.00464197685942 -0.02114918517 +UniRef50_A0A023RSQ1 GNAT family acetyltraansferase 0.00303575749602 0.00139397958299 -0.00164177791303 +UniRef50_W1WJ38 0.000422558942747 0.00264992444171 0.00222736549896 +UniRef50_UPI000366DF34 hypothetical protein 5.59272914577e-06 4.95247729876e-05 4.39320438418e-05 +UniRef50_W6RLX0 Spermidine putrescine binding periplasmic protein SPBP 0.00863245416127 0.00118203435997 -0.0074504198013 +UniRef50_A6U9I7 Anhydro N acetylmuramic acid kinase 5.91417326273e-06 3.38868737877e-05 2.7972700525e-05 +UniRef50_UPI00047D420D hypothetical protein 1.8344309571e-05 5.05619009931e-06 -1.32881194717e-05 +UniRef50_A3VVU2 Putative outer membrane protein 4.05745631084e-06 5.97635280876e-06 1.91889649792e-06 +UniRef50_A0KVP8 Na H(+) antiporter NhaB 0.00308175158006 0.00101099734226 -0.0020707542378 +UniRef50_Q8EW01 Serine tRNA ligase 5.34735967067e-06 8.33869871158e-06 2.99133904091e-06 +UniRef50_P77234 0.00584455778739 0.00105051804166 -0.00479403974573 +UniRef50_Q46HN8 3 oxoacyl [acyl carrier protein] synthase 3 0.000259556588265 0.00011851990415 -0.000141036684115 +UniRef50_UPI0003C7E828 MFS transporter 4.20968276025e-06 5.93545845e-06 1.72577568975e-06 +UniRef50_S5CXB4 Choline dehydrogenase related flavoprotein 0.000374353925435 0.0079506871604 0.00757633323496 +UniRef50_G2JDK1 4.15625903643e-05 0.00945472958526 0.0094131669949 +UniRef50_UPI0003A64EF7 hypothetical protein 0.00206217966753 0.00174119261246 -0.00032098705507 +UniRef50_J2DGW2 0.00016349593144 1.04311699986e-05 -0.000153064761441 +UniRef50_W7Z6N4 Ribonuclease PH 1.1490278673e-05 2.59084253748e-05 1.44181467018e-05 +UniRef50_A1WW41 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.90664346884e-05 4.28631468721e-06 -1.47801200012e-05 +UniRef50_R4RS00 0.00144253334124 0.00141560013632 -2.693320492e-05 +UniRef50_UPI00036A57A1 hypothetical protein 3.83182189535e-05 9.9025651511e-06 -2.84156538024e-05 +UniRef50_B2HW18 0.000167029198609 0.00485705316522 0.00469002396661 +UniRef50_Q2IFN9 0.000488918753401 0.000418986111916 -6.9932641485e-05 +UniRef50_A0A017HFR7 Chemotactic signal response protein, putative 8.67180750928e-05 4.19437807736e-05 -4.47742943192e-05 +UniRef50_O25916 Replicative DNA helicase 0.00024514668425 0.00366035364683 0.00341520696258 +UniRef50_Q3IWU3 TRAP T family transporter, fused small and large inner membrane subunits 0.00252878358915 0.00110447059083 -0.00142431299832 +UniRef50_UPI0004724A10 hypothetical protein, partial 7.01290360737e-05 1.08682848153e-05 -5.92607512584e-05 +UniRef50_X0X6Z1 Marine sediment metagenome DNA, contig 5.52158405379e-05 0.000111186007871 5.59701673331e-05 +UniRef50_UPI000415535D alpha beta hydrolase 7.39087410213e-05 1.14266655425e-05 -6.24820754788e-05 +UniRef50_UPI00034739EE hypothetical protein 1.56391198345e-06 0.000106594502576 0.000105030590593 +UniRef50_Q89IC6 Blr5713 protein 1.71120695213e-05 1.72547628564e-05 1.426933351e-07 +UniRef50_K3WBA6 Amidophosphoribosyltransferase 0.000360501156392 0.00248801010112 0.00212750894473 +UniRef50_P21562 0.000124400186824 0.000155007645497 3.0607458673e-05 +UniRef50_P17058 Acyclic carotenoid 1,2 hydratase 0.000564995824986 0.000517255230352 -4.7740594634e-05 +UniRef50_UPI00038293BE hypothetical protein 4.48020431817e-05 5.12901175246e-05 6.4880743429e-06 +UniRef50_Q5WCN5 Sorbitol dehydrogenase 0.0174112373836 0.00294180495147 -0.0144694324321 +UniRef50_Q03U06 Mannonate dehydratase 0.000407337738757 0.00310012775404 0.00269279001528 +UniRef50_N6UA20 0.000135012209407 0.000174032108009 3.9019898602e-05 +UniRef50_Q5HPW3 Transcription factor FapR 0.023261723995 0.00451104739168 -0.0187506766033 +UniRef50_Q8KCW2 Dihydrolipoyl dehydrogenase 3.29453625239e-06 1.15677650764e-05 8.27322882401e-06 +UniRef50_Q9F1M9 UDP N acetylmuramate L alanine ligase 0.00421797449118 0.00272582266688 -0.0014921518243 +UniRef50_Q0KDL1 ABC type transporter, ATPase component 0.000399478289819 0.000412843372555 1.3365082736e-05 +UniRef50_A8L8S5 3.30145965308e-05 2.85202125879e-05 -4.4943839429e-06 +UniRef50_UPI0003B6FD69 NADPH 1.5032190697e-05 7.71991880128e-05 6.21669973158e-05 +UniRef50_C4ZI69 Anthranilate phosphoribosyltransferase 0.00447407984815 0.000600665846803 -0.00387341400135 +UniRef50_A6M0U5 0.000445160521619 0.00186774890226 0.00142258838064 +UniRef50_UPI0003B423C3 tRNA delta isopentenylpyrophosphate transferase 1.20571281187e-05 1.00395811815e-05 -2.0175469372e-06 +UniRef50_R4PMP8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.0045294961027 0.000915952128364 -0.00361354397434 +UniRef50_Q5SIN6 0.000353518668364 0.00022245934854 -0.000131059319824 +UniRef50_V9W081 4.17690080529e-05 1.17465703992e-05 -3.00224376537e-05 +UniRef50_UPI0001746B66 chromosomal replication initiation protein 3.51499617073e-06 6.30727918617e-06 2.79228301544e-06 +UniRef50_UPI00045758DE PREDICTED 4.61787159465e-06 2.46506742442e-06 -2.15280417023e-06 +UniRef50_G7MCB5 PTS system, lactose cellobiose family IIC subunit 0.000340061609998 0.00195545817109 0.00161539656109 +UniRef50_Q60178 Delta aminolevulinic acid dehydratase 0.00439978423137 0.00903249403543 0.00463270980406 +UniRef50_A6LZJ5 Iron sulfur flavoprotein 0.00221701785948 0.000579014715385 -0.0016380031441 +UniRef50_P38946 Succinyl CoA 0.000921180655686 0.00931101721393 0.00838983655824 +UniRef50_P77624 Carbamate kinase like protein YahI 0.00276581725012 0.00117098560802 -0.0015948316421 +UniRef50_T1KRH7 5.21008684175e-06 0.000251308496245 0.000246098409403 +UniRef50_B1I6S1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.000125515656323 0.00418532510166 0.00405980944534 +UniRef50_X8F0P6 9.63837997413e-05 4.47798773731e-05 -5.16039223682e-05 +UniRef50_P26289 NADH quinone oxidoreductase subunit 4L, chloroplastic 0.00772842992127 0.00175243302783 -0.00597599689344 +UniRef50_I0C6V7 Acyl CoA dehydrogenase, short chain specific 0.0259490128937 0.00690236932118 -0.0190466435725 +UniRef50_UPI000372829F MULTISPECIES 2.26773438317e-06 1.02569632353e-05 7.98922885213e-06 +UniRef50_D8JEY6 9.80483087926e-05 0.00746871126349 0.0073706629547 +UniRef50_P80886 Succinyl CoA ligase [ADP forming] subunit beta 0.0144301764995 0.00363260735125 -0.0107975691482 +UniRef50_P42619 Inner membrane protein YqjF 0.000485493583502 0.00111440266111 0.000628909077608 +UniRef50_UPI00035DD30D hypothetical protein, partial 5.41210017492e-06 0.000137762284503 0.000132350184328 +UniRef50_A8AM44 0.004335950381 5.46640826788e-05 -0.00428128629832 +UniRef50_P40118 Protein CbxX, chromosomal 0.0079011170764 0.00224812035541 -0.00565299672099 +UniRef50_UPI0004420F41 PREDICTED 5.20826775073e-05 4.5864820248e-05 -6.2178572593e-06 +UniRef50_UPI000380047C hypothetical protein, partial 1.20788579712e-05 2.92758877436e-05 1.71970297724e-05 +UniRef50_P0A9D3 Glutathione S transferase GstA 0.00266711333675 0.000355090226682 -0.00231202311007 +UniRef50_V4LD81 4.98546089933e-05 1.01531272948e-05 -3.97014816985e-05 +UniRef50_G3BCN3 1.56369867027e-05 2.32972947213e-05 7.6603080186e-06 +UniRef50_Q89N53 GMP synthase [glutamine hydrolyzing] 0.00501594423186 0.00817957712061 0.00316363288875 +UniRef50_A9M3R6 PilS cassette 3.38274986861e-05 6.35213552979e-05 2.96938566118e-05 +UniRef50_G8VFT5 ABC transporter associated permease 5.32170097031e-05 0.00483714033127 0.00478392332157 +UniRef50_UPI00046F1979 hypothetical protein 0.000163128576005 1.97765683159e-05 -0.000143352007689 +UniRef50_Q28W02 Protein export protein SecB 0.00254303266779 0.000379421891038 -0.00216361077675 +UniRef50_UPI000381A76A hypothetical protein 5.63796539441e-06 9.31269779224e-06 3.67473239783e-06 +UniRef50_K7RNM6 Protein translocase subunit SecD 7.04264904616e-05 0.00563539044096 0.0055649639505 +UniRef50_V9H6U9 1.83756158505e-05 3.58206509258e-05 1.74450350753e-05 +UniRef50_A7IGH8 Heat shock protein DnaJ domain protein 1.2186950416e-05 1.83411918241e-05 6.1542414081e-06 +UniRef50_A5UK66 0.000658405794513 0.000694862835762 3.6457041249e-05 +UniRef50_Q88YL5 Peptide chain release factor 2 0.0271726134563 0.0143230519296 -0.0128495615267 +UniRef50_B9KPA3 Lipid A biosynthesis acyltransferase 0.000158830009337 0.000498498952915 0.000339668943578 +UniRef50_U3HEJ8 0.000296016027856 6.94862835673e-05 -0.000226529744289 +UniRef50_P37627 0.00257016601091 0.00113793195481 -0.0014322340561 +UniRef50_UPI0004691CF3 hypothetical protein 0.000715240572476 0.000224412918547 -0.000490827653929 +UniRef50_G7H917 0.000101168832131 1.30038297211e-05 -8.81650024099e-05 +UniRef50_Q99TA4 HTH type transcriptional regulator rot 0.00884455228534 0.00175317070562 -0.00709138157972 +UniRef50_UPI00047C5CBE hypothetical protein 0.000107086306 9.67330387062e-06 -9.74130021294e-05 +UniRef50_UPI0004786076 acetolactate synthase catalytic subunit 1.59988615622e-05 1.71167014226e-05 1.1178398604e-06 +UniRef50_UPI0003707FEC hypothetical protein 1.68306830586e-05 0.00188360173137 0.00186677104831 +UniRef50_UPI0003AADB2D formyl CoA transferase 2.13787688449e-05 0.00233836614287 0.00231698737403 +UniRef50_S1HMP3 Pyrimidine utilization protein D 0.000760038903732 0.00104812759294 0.000288088689208 +UniRef50_B9DPH3 Ribonuclease HII 0.00654988876022 0.00138367075555 -0.00516621800467 +UniRef50_P64484 0.0116062915004 0.00384974143192 -0.00775655006848 +UniRef50_Q6F8V9 0.000428859893699 0.00348737729682 0.00305851740312 +UniRef50_UPI0003607777 hypothetical protein, partial 1.76971169323e-05 7.0076352285e-05 5.23792353527e-05 +UniRef50_UPI000376E7E9 hypothetical protein 8.51547517838e-05 2.82164388805e-05 -5.69383129033e-05 +UniRef50_Q58626 Pyruvate carboxylase subunit A 1.23518973694e-05 0.0109109542538 0.0108986023564 +UniRef50_UPI0004731C2E hypothetical protein 4.03100671317e-06 1.32536311703e-05 9.22262445713e-06 +UniRef50_UPI0004719EAD ATPase 1.69958730374e-05 2.41118039812e-05 7.1159309438e-06 +UniRef50_V7YXX8 5.00111023971e-05 7.22932938045e-05 2.22821914074e-05 +UniRef50_K7SCS8 2.99156616006e-06 8.88053699593e-06 5.88897083587e-06 +UniRef50_A5UKI4 Predicted phosphoesterase, YfcE 0.00120269743945 0.000329349485352 -0.000873347954098 +UniRef50_UPI0003D2681B PREDICTED 3.98163650599e-06 9.3455830574e-05 8.9474194068e-05 +UniRef50_P80239 Alkyl hydroperoxide reductase subunit C 0.00216083281016 0.00930079134215 0.00713995853199 +UniRef50_P0ABK0 Cytochrome bd I ubiquinol oxidase subunit 1 0.00171593316015 0.00762391078699 0.00590797762684 +UniRef50_UPI0003B383CF SAM dependent methyltransferase 7.02753027592e-06 1.07738333014e-05 3.74630302548e-06 +UniRef50_UPI0002F5F55F hypothetical protein 5.8307266128e-05 1.52060018675e-05 -4.31012642605e-05 +UniRef50_UPI00047BBB2A protein phosphatase 1.29269973036e-05 2.25242637497e-05 9.5972664461e-06 +UniRef50_UPI0004707FDC MFS transporter 8.14243633308e-06 1.22735081721e-05 4.13107183902e-06 +UniRef50_Q3J3F1 NADH quinone oxidoreductase subunit H 1 0.0126455398949 0.00454787227807 -0.00809766761683 +UniRef50_A4IAV0 Proteophosphoglycan 5 3.06591844207e-05 2.19429074657e-05 -8.716276955e-06 +UniRef50_F7QM88 Diguanylate phosphodiesterase 3.52506925977e-06 2.62381642246e-05 2.27130949648e-05 +UniRef50_A5ULA2 Transcriptional regulator, AraC family 0.00130797090593 0.000530214064208 -0.000777756841722 +UniRef50_D5ZZ67 SecA 4.21756527356e-05 4.94584210296e-05 7.282768294e-06 +UniRef50_B7LY72 0.00250168686688 0.00190767272071 -0.00059401414617 +UniRef50_Q02254 Nucleoside diphosphate kinase 1 1.29747779022e-05 3.70651919199e-05 2.40904140177e-05 +UniRef50_UPI0003B52538 MerR family transcriptional regulator, partial 2.8803968304e-05 0.00263535536039 0.00260655139209 +UniRef50_S3Y4R2 4.73113938364e-06 7.56509520899e-05 7.09198127063e-05 +UniRef50_D6SET8 Sucrose 6 phosphate hydrolase 0.00887921409223 0.00167694961598 -0.00720226447625 +UniRef50_D9SU34 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000944435907608 0.00388296660861 0.002938530701 +UniRef50_UPI00047E196E hypothetical protein 3.20148519362e-06 1.33687848046e-05 1.0167299611e-05 +UniRef50_Q5HQN2 D isomer specific 2 hydroxyacid dehydrogenase family protein 0.0103775557082 0.00217148869663 -0.00820606701157 +UniRef50_Q6LLZ7 0.0226656621937 3.15410501811e-05 -0.0226341211435 +UniRef50_Q3JQS6 DNA mismatch repair protein MutS 0.000383385341192 0.00330489096961 0.00292150562842 +UniRef50_UPI000466A22C hypothetical protein, partial 3.29699035676e-05 1.21948594744e-05 -2.07750440932e-05 +UniRef50_Q8CQC3 Membrane spanning protein 0.0268225603237 0.004929767386 -0.0218927929377 +UniRef50_UPI00047D3526 hypothetical protein 2.46377144235e-05 3.56805285062e-05 1.10428140827e-05 +UniRef50_P24202 Mrr restriction system protein 0.00285467559706 0.00162874838098 -0.00122592721608 +UniRef50_UPI0003B4AFAB flagellin 2.09820472346e-06 1.60882989627e-05 1.39900942392e-05 +UniRef50_UPI0003B6A2EF aspartyl glutamyl tRNA amidotransferase subunit B 9.06478100423e-06 5.33142676875e-06 -3.73335423548e-06 +UniRef50_Q41348 Probable pyridoxal biosynthesis protein PDX1 3.35079441546e-05 2.41428329843e-05 -9.3651111703e-06 +UniRef50_Q1CBK6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.0601747378e-05 5.17590795194e-05 1.1573321414e-06 +UniRef50_P66774 L serine dehydratase 1.21384304696e-05 2.96866323437e-05 1.75482018741e-05 +UniRef50_P0ADR0 Inner membrane protein YqaA 0.00195715013162 0.000723224584158 -0.00123392554746 +UniRef50_Q8REV6 Bifunctional purine biosynthesis protein PurH 2.76401389529e-06 2.95489694989e-05 2.67849556036e-05 +UniRef50_B4TCQ6 Argininosuccinate lyase 0.00193356789531 0.00100977528475 -0.00092379261056 +UniRef50_V6YPB4 3.52601579306e-05 0.000196900006824 0.000161639848893 +UniRef50_Q7CB38 UPF0324 inner membrane protein YeiH 0.00404169562885 0.000929997449659 -0.00311169817919 +UniRef50_F0YKI4 Expressed protein 5.23290378266e-05 0.000467122598609 0.000414793560782 +UniRef50_J7J208 Peptidylarginine deiminase like enzyme 0.000145747486043 0.000617608298778 0.000471860812735 +UniRef50_B6C3C1 Ribulose bisphosphate carboxylase, small subunit 0.000764719805604 8.40196966657e-05 -0.000680700108938 +UniRef50_G7M7S7 Ketopantoate reductase ApbA PanE domain protein 0.000259848787425 0.00262494227244 0.00236509348501 +UniRef50_UPI00046742AA hypothetical protein 6.14385329484e-05 1.89582262053e-05 -4.24803067431e-05 +UniRef50_P17812 CTP synthase 1 2.11704915244e-06 0.000124659916929 0.000122542867777 +UniRef50_Q8CPK1 Secretory antigen SsaA 0.00906663702078 0.000446322476372 -0.00862031454441 +UniRef50_S5NA52 Hydrolase 0.00568068368014 0.000471998068175 -0.00520868561196 +UniRef50_X7ECS1 Transposase 0.00139756935307 0.000355910291841 -0.00104165906123 +UniRef50_I6U2S4 Phosphopantetheinyl transferase 0.00580588037575 0.000814562618456 -0.00499131775729 +UniRef50_UPI0003728962 spermidine putrescine ABC transporter ATP binding protein 4.95195598095e-06 1.08141056345e-05 5.86214965355e-06 +UniRef50_UPI00029AE339 oxygen independent coproporphyrinogen III oxidase 3.09683203843e-05 9.54729002591e-05 6.45045798748e-05 +UniRef50_S5XV86 Membrane protein 0.00324376280468 0.00112069387735 -0.00212306892733 +UniRef50_W0E657 Transposase IS116 0.00040226920411 0.000565505027426 0.000163235823316 +UniRef50_UPI0002192B8A rod shape determining protein MreB 3.49468303323e-05 6.42902487938e-05 2.93434184615e-05 +UniRef50_UPI0004773247 hypothetical protein 2.41338084638e-05 7.4918443768e-05 5.07846353042e-05 +UniRef50_H8H0T4 0.000460382764265 0.037215520238 0.0367551374737 +UniRef50_W5VD93 0.00051955150512 3.58236954047e-05 -0.000483727809715 +UniRef50_UPI0003EDCF69 PREDICTED 0.000143228257444 2.35737535589e-05 -0.000119654503885 +UniRef50_P73534 Pyruvate kinase 2 1.59553381223e-05 1.18924616653e-05 -4.062876457e-06 +UniRef50_D5P6E3 0.000445707922605 0.000764246202278 0.000318538279673 +UniRef50_I0E315 0.000394584657338 0.000508503210999 0.000113918553661 +UniRef50_A6M2J9 Cell wall surface repeat protein 0.000155131228296 0.00231505356352 0.00215992233522 +UniRef50_P52045 Methylmalonyl CoA decarboxylase 0.00173676873471 0.000620096977765 -0.00111667175694 +UniRef50_L0WJ64 3 phosphoshikimate 1 carboxyvinyltransferase 5.0737364089e-05 0.00735475081072 0.00730401344663 +UniRef50_UPI0004743DFB long chain fatty acid CoA ligase, partial 3.72616248557e-05 1.03963773377e-05 -2.6865247518e-05 +UniRef50_UPI00035FBEC8 hypothetical protein 8.90195699052e-06 2.85391264713e-05 1.96371694808e-05 +UniRef50_M1MXV9 Methyl accepting chemotaxis protein 0.000580191832772 0.00149376050661 0.000913568673838 +UniRef50_D8JNY1 Membrane fusion protein 0.00116470044199 0.00624457513129 0.0050798746893 +UniRef50_Q8FJ67 0.00280349415458 0.000269695621179 -0.0025337985334 +UniRef50_C1DHR0 Fimbrial assembly protein 0.000439322535926 0.000346751512944 -9.2571022982e-05 +UniRef50_UPI000382A44D hypothetical protein 5.94614511614e-05 0.00192422564861 0.00186476419745 +UniRef50_UPI0004156576 MULTISPECIES 1.56899363264e-05 1.70244973161e-05 1.3345609897e-06 +UniRef50_A3S860 0.00132361066913 0.000592265672953 -0.000731344996177 +UniRef50_D8HER7 0.00383559950036 0.00219394601122 -0.00164165348914 +UniRef50_Q31YD8 Erythronate 4 phosphate dehydrogenase 0.00443432924241 0.000918771760323 -0.00351555748209 +UniRef50_UPI00029CB712 ketol acid reductoisomerase IlvC, partial 8.392187527e-05 0.000155948861836 7.2026986566e-05 +UniRef50_UPI00041F053E hypothetical protein 5.11406261877e-05 1.70937481739e-05 -3.40468780138e-05 +UniRef50_Q7U0N5 Fructose 1,6 bisphosphatase class 2 1.564802716e-05 0.000253194107251 0.000237546080091 +UniRef50_Q5QV04 50S ribosomal protein L25 0.000389088631857 0.00211883605813 0.00172974742627 +UniRef50_A5N555 0.000394639346825 0.00100913776517 0.000614498418345 +UniRef50_UPI0001DCFB76 hypothetical protein 2.77903795467e-05 3.48221080148e-05 7.0317284681e-06 +UniRef50_UPI0003734789 hypothetical protein 1.14304343394e-05 1.46812123819e-05 3.2507780425e-06 +UniRef50_UPI000237AE8F citrate synthase 1.39743864319e-05 1.1598181126e-05 -2.3762053059e-06 +UniRef50_A6M0W0 Methyltransferase type 11 0.000195279817986 0.000809566709961 0.000614286891975 +UniRef50_Q63VA4 3.1321175805e-05 1.10951735036e-05 -2.02260023014e-05 +UniRef50_C6SRX5 0.00624138376317 0.00329653312038 -0.00294485064279 +UniRef50_P95780 dTDP glucose 4,6 dehydratase 0.00735820869164 0.0011628787262 -0.00619532996544 +UniRef50_K0YWY6 1.36750892745e-05 2.05695511674e-05 6.8944618929e-06 +UniRef50_A6LT81 Histidine kinase internal region 0.000777661574339 0.00213603351704 0.0013583719427 +UniRef50_UPI00041035B8 hypothetical protein 8.4920021219e-06 1.42679628287e-05 5.7759607068e-06 +UniRef50_UPI0002E14D16 hypothetical protein 5.2418010757e-05 0.000402703354717 0.00035028534396 +UniRef50_J9PAX2 0.000340860303668 0.000133078252013 -0.000207782051655 +UniRef50_B2RI74 Aminomethyltransferase 8.44544627661e-06 0.00221217366217 0.00220372821589 +UniRef50_T2WDF3 Excinuclease ABC subunit A domain protein 0.000207523781952 0.000164549027019 -4.2974754933e-05 +UniRef50_P37016 0.00611656977908 0.00349412219928 -0.0026224475798 +UniRef50_M1M1B1 PTS system maltose and glucose specific EIICB component MalX 9.02356945458e-05 0.000628891087881 0.000538655393335 +UniRef50_E6RJY5 1.62098331928e-05 5.6614951159e-05 4.04051179662e-05 +UniRef50_UPI0002B4135E PREDICTED 1.98015096326e-06 2.46029249527e-05 2.26227739894e-05 +UniRef50_UPI00036A4FA0 hypothetical protein 5.03815299981e-05 3.57658107377e-05 -1.46157192604e-05 +UniRef50_B9TLS4 0.000102349087321 0.00796415573012 0.0078618066428 +UniRef50_P76254 Putative dioxygenase subunit beta YeaX 0.00160549522464 0.000783771849003 -0.000821723375637 +UniRef50_UPI00036DD6AB hypothetical protein 0.000153856008499 0.000106395176646 -4.7460831853e-05 +UniRef50_D3E4S6 Methionine synthase MetE 0.00324766276766 0.000513816766488 -0.00273384600117 +UniRef50_Q5HP49 Oxidoreductase, short chain dehydrogenase reductase family 0.00913147325148 0.00160662538261 -0.00752484786887 +UniRef50_UPI00016C0A47 Sodium proline symporter 1.36084763529e-05 3.28286972022e-05 1.92202208493e-05 +UniRef50_P37018 0.00384519095255 0.0013270643983 -0.00251812655425 +UniRef50_R0X3A7 FAD binding domain protein 5.21810253779e-06 6.80183994572e-05 6.28002969194e-05 +UniRef50_A3JD10 Choline glycine betaine transporter 0.00032125776339 0.000118189872565 -0.000203067890825 +UniRef50_P74211 Pyridoxine pyridoxamine 5 phosphate oxidase 9.9668262531e-06 0.0207006405365 0.0206906737102 +UniRef50_Q2FH82 Glycerol 3 phosphate acyltransferase 0.010113432579 0.00126957338042 -0.00884385919858 +UniRef50_P55138 0.00435263075045 0.000619635964338 -0.00373299478611 +UniRef50_UPI000366203C hypothetical protein 1.37426509128e-05 2.10159288761e-05 7.2732779633e-06 +UniRef50_UPI00036AC02E hypothetical protein 2.69476413933e-05 0.000280808277526 0.000253860636133 +UniRef50_P03023 Lactose operon repressor 0.00418910859356 0.00191950369155 -0.00226960490201 +UniRef50_F0P751 0.0201411484677 0.00409381539967 -0.016047333068 +UniRef50_A6LQP5 NLP P60 protein 0.000756742269975 0.000608965144638 -0.000147777125337 +UniRef50_G7ZP32 0.0211104133909 0.000947540230575 -0.0201628731603 +UniRef50_UPI0003B6696B Holliday junction resolvase 3.0942607677e-05 1.92204626377e-05 -1.17221450393e-05 +UniRef50_W0ZB71 9.22025983216e-05 0.000242504790472 0.00015030219215 +UniRef50_A9VN54 Ribosomal RNA small subunit methyltransferase A 8.4854557176e-05 0.000838300878119 0.000753446320943 +UniRef50_A9DDG2 Sulfate transporter 0.000418305772219 0.000157617166025 -0.000260688606194 +UniRef50_UPI00047D446A HAD family hydrolase 7.35414871791e-06 2.96700278666e-05 2.23158791487e-05 +UniRef50_I4EVD0 3.16334818129e-05 8.55368646745e-06 -2.30797953455e-05 +UniRef50_A0A023RXY1 Helicase 0.000157330850518 0.00710943801757 0.00695210716705 +UniRef50_E6JZW3 Amino acid permease 0.00947600385784 0.00394330637891 -0.00553269747893 +UniRef50_UPI0003659021 MULTISPECIES 1.95679459525e-05 5.105715579e-06 -1.44622303735e-05 +UniRef50_D2ZS89 0.00258429831671 0.000326316801329 -0.00225798151538 +UniRef50_UPI0002880506 dihydroxyacetone kinase 7.38101545647e-06 0.000542290708295 0.000534909692839 +UniRef50_E8U932 UvrD REP helicase 0.000256265796054 0.0355526292709 0.0352963634748 +UniRef50_C5N0Y7 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.0114471466903 0.0029631190156 -0.0084840276747 +UniRef50_G2L894 3.64179742017e-05 7.26394713702e-05 3.62214971685e-05 +UniRef50_D4FNL7 Ribonuclease R 0.0121718213442 0.00201715764088 -0.0101546637033 +UniRef50_UPI0003B4AB96 resolvase, partial 0.00230911466212 0.000781031305279 -0.00152808335684 +UniRef50_P77218 Ethanolamine utilization protein EutD 0.00165653060396 0.000629379340094 -0.00102715126387 +UniRef50_Q3JHV2 0.0145604800363 0.00185387088664 -0.0127066091497 +UniRef50_UPI00026597D0 PREDICTED 2.18669289505e-05 3.35812674039e-06 -1.85088022101e-05 +UniRef50_Q3JHV1 0.000151971655303 7.58977171045e-05 -7.60739381985e-05 +UniRef50_W4S288 0.000678118542849 0.00110055914979 0.000422440606941 +UniRef50_L8GKM7 3.11430501438e-05 0.000116773923949 8.56308738052e-05 +UniRef50_U2ZDH4 UPF0301 protein MBE BAB_1780 8.81423690968e-06 1.67119240686e-05 7.89768715892e-06 +UniRef50_U1LZ26 Transcriptional regulator 7.03183777232e-06 1.4006971174e-05 6.97513340168e-06 +UniRef50_E8TAB0 Glutamine synthetase catalytic region 0.00163789181259 0.000483962021408 -0.00115392979118 +UniRef50_A3PHY8 Transcriptional regulator, LysR family 0.0140243852739 0.00203529611815 -0.0119890891558 +UniRef50_A0A023RZA2 Quaternary ammonium transporter 0.000391853967671 0.00370259350429 0.00331073953662 +UniRef50_UPI0004789298 hypothetical protein 6.24089839583e-05 1.24948265377e-05 -4.99141574206e-05 +UniRef50_G1THI8 3.83282013666e-06 0.000489953054657 0.00048612023452 +UniRef50_D8UE68 Formin 4.23336279607e-06 1.77005433639e-06 -2.46330845968e-06 +UniRef50_I1ZKQ0 Fe2+ Zn2+ uptake regulation protein 0.0073457567032 0.00247109667141 -0.00487466003179 +UniRef50_P0AE84 Sensor protein CpxA 0.00293745860676 0.00313458554851 0.00019712694175 +UniRef50_K0M3M3 0.00034249597966 0.000178913971369 -0.000163582008291 +UniRef50_UPI0003C7C8AC hypothetical protein 0.00102920269629 0.000824139642406 -0.000205063053884 +UniRef50_Q4L332 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0211220482648 0.00628089962163 -0.0148411486432 +UniRef50_E6NJA8 0.000117110441217 0.00450153945952 0.0043844290183 +UniRef50_Q5H1D4 Methionine aminopeptidase 0.00142928238152 0.00111991058224 -0.00030937179928 +UniRef50_Q48EZ4 Sensor histidine kinase 0.000199310354377 0.000189518668572 -9.791685805e-06 +UniRef50_Q0FD62 0.000308008435696 9.54284620468e-05 -0.000212579973649 +UniRef50_Q8F6I3 Phosphoribosylformylglycinamidine synthase 2 3.07231794052e-05 7.69384430951e-06 -2.30293350957e-05 +UniRef50_Q3SSW6 50S ribosomal protein L3 0.000870033727607 0.000304450211538 -0.000565583516069 +UniRef50_Q9CEB7 Putative ribosome biogenesis GTPase RsgA 0.00569266319164 0.00378446259325 -0.00190820059839 +UniRef50_A6LVT4 Cell wall hydrolase autolysin 0.000268992391105 0.00429794668771 0.0040289542966 +UniRef50_B2UN91 Glutamate tRNA ligase 4.25408139769e-06 1.06925772879e-05 6.43849589021e-06 +UniRef50_F0RNV8 NurA domain containing protein 0.000220431079448 0.0160284205599 0.0158079894805 +UniRef50_Q2NFL4 Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein 0.00530943380379 0.00200658605367 -0.00330284775012 +UniRef50_E9T8A5 Transcriptional regulator, PadR family 3.65361338014e-05 9.55979490171e-05 5.90618152157e-05 +UniRef50_UPI000470F100 hypothetical protein 5.74267163922e-05 0.000124602333148 6.71756167558e-05 +UniRef50_D3DYX9 Glycosyl transferase GT4 family 0.00187399374543 0.00149910672389 -0.00037488702154 +UniRef50_F5Y5K7 Candidate UDP glucose 6 dehydrogenase 0.00058710895527 0.000404913990912 -0.000182194964358 +UniRef50_A2PUV3 6.85118406973e-05 0.00023293307928 0.000164421238583 +UniRef50_UPI00047022DB luciferase 2.92626742537e-05 1.88652539978e-05 -1.03974202559e-05 +UniRef50_U5NMZ2 0.000735362315945 0.000594597393014 -0.000140764922931 +UniRef50_P0AC14 Dihydropteroate synthase 0.00571951682224 0.000238842884248 -0.00548067393799 +UniRef50_U5NMZ6 0.00469031780091 0.00060929705839 -0.00408102074252 +UniRef50_UPI000255C69D hypothetical protein 3.6412050903e-05 1.50512737629e-05 -2.13607771401e-05 +UniRef50_UPI000374608B hypothetical protein 1.37994368057e-05 0.00027729555219 0.000263496115384 +UniRef50_I6SWC9 dTDP 4 dehydrorhamnose 3,5 epimerase 0.00264855491607 0.00177571792775 -0.00087283698832 +UniRef50_Q8GWW7 Agmatine deiminase 0.000339280958185 0.00212622127483 0.00178694031665 +UniRef50_X6CNL3 0.000815162735288 0.00172029148658 0.000905128751292 +UniRef50_E6X1D4 Pyruvate ketoisovalerate oxidoreductase, gamma subunit 0.000405898912746 0.00547495439141 0.00506905547866 +UniRef50_R5TGD1 Cobalt import ATP binding protein CbiO 2 0.000685966880346 0.000547527816442 -0.000138439063904 +UniRef50_D6ZIJ6 2.47165305196e-05 2.80534670634e-05 3.3369365438e-06 +UniRef50_UPI0003B576AB hypothetical protein 5.44092154726e-06 1.11508102495e-05 5.70988870224e-06 +UniRef50_UPI00036BB2A6 hypothetical protein 2.76995473695e-05 2.97517028103e-05 2.0521554408e-06 +UniRef50_P12049 UPF0062 protein YexA 2.79260175706e-05 7.08331262668e-05 4.29071086962e-05 +UniRef50_G7LWI4 DNA polymerase 0.000197162545333 6.67131111141e-05 -0.000130449434219 +UniRef50_M9RKF6 D alanyl D alanine carboxypeptidase DacC 0.00473150972361 0.00406024253076 -0.00067126719285 +UniRef50_K4QLG2 5.92508543178e-05 3.50097264858e-05 -2.4241127832e-05 +UniRef50_W1U7Z2 Peptidase, M56 family 2.7567101065e-05 2.34122099287e-05 -4.1548911363e-06 +UniRef50_E0SX52 Predicted Fe S oxidoreductase 2.72184445154e-05 0.000117093730731 8.98752862156e-05 +UniRef50_P52993 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.00449089466026 0.0275654778858 0.0230745832255 +UniRef50_UPI0003B51A23 signal recognition particle protein Srp54 1.23536133716e-05 0.000247003871254 0.000234650257882 +UniRef50_UPI00047B2FC0 iron reductase 8.87418479519e-06 0.000122480665198 0.000113606480403 +UniRef50_UPI000470320D hypothetical protein 2.3833759762e-05 1.10598082532e-05 -1.27739515088e-05 +UniRef50_L0MNT8 ATPase component of ABC transporters with duplicated ATPase domain 0.0039245509299 0.000862925374398 -0.0030616255555 +UniRef50_D5AV27 Secretion ATP binding protein, HlyB family 0.000459830275667 9.84936204108e-05 -0.000361336655256 +UniRef50_UPI0003605157 hypothetical protein 9.20175165826e-05 2.3036053264e-05 -6.89814633186e-05 +UniRef50_W5X880 Aminomethyltransferase 1.87587613849e-05 2.91909208041e-05 1.04321594192e-05 +UniRef50_R1ERY2 0.000105004041788 9.34768362209e-05 -1.15272055671e-05 +UniRef50_Q189B8 Threonine tRNA ligase 0.00086835981142 0.000187014241432 -0.000681345569988 +UniRef50_Q3JS16 8.68209230342e-06 1.60820333817e-05 7.39994107828e-06 +UniRef50_Q2FWP1 Phospholipase C 0.0125504210675 0.00157181178812 -0.0109786092794 +UniRef50_B3DRA9 Deoxyuridine 5 triphosphate nucleotidohydrolase 0.000248346045292 0.00358350861986 0.00333516257457 +UniRef50_UPI000369A6CD hypothetical protein 5.48605491096e-05 1.29697592159e-05 -4.18907898937e-05 +UniRef50_A4EPM0 1.90082243898e-05 1.38740431123e-05 -5.1341812775e-06 +UniRef50_UPI00046F0FC9 hypothetical protein 5.13585763074e-06 7.42031034759e-06 2.28445271685e-06 +UniRef50_Q8GCY1 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.7328607783e-05 1.94085025375e-05 2.0798947545e-06 +UniRef50_K0L524 Polysaccharide biosynthesis family protein 0.0158295947085 0.00243578174171 -0.0133938129668 +UniRef50_Q3ZZJ7 Malate dehydrogenase 3.88663222449e-05 2.65261064109e-05 -1.2340215834e-05 +UniRef50_Q3JS13 2.94244353764e-05 0.000142421859985 0.000112997424609 +UniRef50_L7WZJ1 0.000980448317277 0.00150979134947 0.000529343032193 +UniRef50_Q92ID7 NADH quinone oxidoreductase subunit C 1.445727806e-05 1.11769480991e-05 -3.2803299609e-06 +UniRef50_V8N3A8 0.00140845618418 0.000984389017326 -0.000424067166854 +UniRef50_UPI000382F770 hypothetical protein M271_03505 9.89721543217e-06 9.41684294706e-06 -4.8037248511e-07 +UniRef50_Q5GX46 1.42913056773e-05 4.83795968982e-05 3.40882912209e-05 +UniRef50_B9FN35 5.9303086031e-05 0.00013395176486 7.4648678829e-05 +UniRef50_Q8CMV5 Phage infection protein 0.0100512320776 0.00453755703634 -0.00551367504126 +UniRef50_UPI0004788FBC cytochrome oxidase 3.68342006225e-05 5.17507288902e-05 1.49165282677e-05 +UniRef50_P16858 Glyceraldehyde 3 phosphate dehydrogenase 9.94581501303e-06 1.94762918434e-05 9.53047683037e-06 +UniRef50_Q9K105 Quinolinate synthase A 0.00454607893216 0.0115681059869 0.00702202705474 +UniRef50_U5MKN8 FAD dependent oxidoreductase 0.000281382129806 0.00115768630374 0.000876304173934 +UniRef50_A0A010YS39 0.000176552032803 4.83208576436e-05 -0.000128231175159 +UniRef50_X1KP36 Marine sediment metagenome DNA, contig 0.00015240654761 0.000128188680922 -2.4217866688e-05 +UniRef50_D9RNH9 Phage transcriptional regulator 0.0146249569535 0.00540219679646 -0.00922276015704 +UniRef50_R7DZG1 tRNA specific adenosine deaminase 0.0113757941654 0.000702438839085 -0.0106733553263 +UniRef50_UPI00047D8DA0 methionine aminopeptidase 1.84794880775e-05 1.15119403319e-05 -6.9675477456e-06 +UniRef50_Q9PHC7 Oxygen dependent coproporphyrinogen III oxidase 0.00282907412536 0.00747902593523 0.00464995180987 +UniRef50_E6PZA5 0.000150935111838 0.000585036575305 0.000434101463467 +UniRef50_Q1LGM8 Metal dependent phosphohydrolase, HD subdomain protein 0.00567145664597 0.00137518481016 -0.00429627183581 +UniRef50_D8LRY0 2.83147233151e-05 2.45259925884e-05 -3.7887307267e-06 +UniRef50_Q46907 Putative electron transfer flavoprotein subunit YgcQ 0.00380552662807 0.00301409908984 -0.00079142753823 +UniRef50_B5R7J9 HTH type transcriptional regulator MalT 0.00120192046374 0.000361605958218 -0.000840314505522 +UniRef50_A5IRR8 Bacteriocin associated integral membrane protein 0.00939900433724 0.00197587355792 -0.00742313077932 +UniRef50_V5XRA6 ABC superfamily ATP binding cassette transporter, substrate binding protein 1.97472293029e-05 1.38363358705e-05 -5.9108934324e-06 +UniRef50_UPI00036AF6AD hypothetical protein 4.82770223987e-06 4.96316820766e-06 1.3546596779e-07 +UniRef50_Q6F797 0.000130617989224 0.011371715601 0.0112410976118 +UniRef50_Q5WJ15 Lipoprotein 0.000101236584555 2.40701718564e-05 -7.71664126986e-05 +UniRef50_Q8P151 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.00185627874013 0.00306741647844 0.00121113773831 +UniRef50_S5YEW5 Chaperone Hsp33 0.00904942233346 0.00129819060438 -0.00775123172908 +UniRef50_UPI00047E6CAE macrolide ABC transporter ATP binding protein 3.12193267595e-05 9.84274156444e-06 -2.13765851951e-05 +UniRef50_Q7TVV6 2 isopropylmalate synthase 3.72458950938e-06 3.66251895615e-05 3.29006000521e-05 +UniRef50_UPI00047CA452 metal dependent hydrolase 0.000122391363972 0.000351236130679 0.000228844766707 +UniRef50_UPI0004728867 hypothetical protein 1.7830531794e-05 3.31557599866e-05 1.53252281926e-05 +UniRef50_R4SLJ1 3.10032399295e-05 3.3987514177e-05 2.9842742475e-06 +UniRef50_UPI00047EC453 hypothetical protein 1.6431706362e-05 2.4434974716e-05 8.003268354e-06 +UniRef50_W4HQ39 Fe3+ siderophore ABC transporter substrate binding protein 2.83947852055e-05 1.69525651657e-05 -1.14422200398e-05 +UniRef50_P58497 Transcriptional regulator ModE 0.00205367374435 0.00077844823564 -0.00127522550871 +UniRef50_A5UJC2 Predicted phosphotransacetylase 0.000999181867712 0.00177456501948 0.000775383151768 +UniRef50_D8LEL7 1.09214037583e-05 1.82280582269e-05 7.3066544686e-06 +UniRef50_F0Y2Z5 Expressed protein 0.00108323062375 0.00126328188023 0.00018005125648 +UniRef50_UPI00047CBC3F cytochrome C 0.000158472636123 6.85953915688e-05 -8.98772445542e-05 +UniRef50_A7HZN6 Chorismate synthase 5.13707075368e-06 0.00572225450633 0.00571711743558 +UniRef50_M4ZJ25 Integrase recombinase 0.000151398123869 0.000166219533874 1.4821410005e-05 +UniRef50_B2HTD1 Transcriptional regulator 0.000201504976255 0.0134891538242 0.0132876488479 +UniRef50_Q98I01 UvrABC system protein B 0.0134467584416 0.00359611101608 -0.00985064742552 +UniRef50_S1SUV9 7.77703776834e-05 0.000135577964233 5.78075865496e-05 +UniRef50_C9WZ56 Transcription repair coupling factor 2.79274467665e-05 0.00207656768196 0.00204864023519 +UniRef50_UPI0002FACF3D hypothetical protein 7.19241442319e-06 5.96148080713e-06 -1.23093361606e-06 +UniRef50_UPI00035CB657 hypothetical protein 4.14815990089e-05 1.63829130445e-05 -2.50986859644e-05 +UniRef50_Q3J1W8 Chemotaxis histidine protein kinase, CheA3 0.00034031960082 0.000114103685255 -0.000226215915565 +UniRef50_S5CIT2 Non ribosomal peptide synthetase modules related protein 0.000185715585998 0.00311355855516 0.00292784296916 +UniRef50_G4LFN6 0.000434064582521 0.000342066954679 -9.1997627842e-05 +UniRef50_A0A022LJU5 0.000222568339476 0.000236326180691 1.3757841215e-05 +UniRef50_D5ALC6 CTP pyrophosphohydrolase 0.0224016388816 0.00107356270921 -0.0213280761724 +UniRef50_K0L0Y0 Pyruvate oxidase 0.0242503836548 0.0068552419843 -0.0173951416705 +UniRef50_Q8CQL5 Poly alpha glucosyltransferase 0.0214837317088 0.00542878890006 -0.0160549428087 +UniRef50_P11954 L threonine dehydratase catabolic TdcB 0.00188099249666 0.00126193520902 -0.00061905728764 +UniRef50_X5P5H6 4.54986764438e-05 2.06118115195e-05 -2.48868649243e-05 +UniRef50_B1IS55 UPF0442 protein YjjB 0.00612920046237 0.00272600035565 -0.00340320010672 +UniRef50_Q0C3I3 Translocator protein, LysE family 0.0182492552214 0.00532509509416 -0.0129241601272 +UniRef50_Q5HQY2 Glycosyl transferase, group 4 family protein 0.0196665062802 0.0068601348889 -0.0128063713913 +UniRef50_E6QHZ2 0.000143175330504 0.000112160150652 -3.1015179852e-05 +UniRef50_A1VWN7 Transposase, IS4 family 0.0131852347128 0.0103757201209 -0.0028095145919 +UniRef50_B8DVE0 Ketol acid reductoisomerase 1.64523046513e-05 4.44007876821e-05 2.79484830308e-05 +UniRef50_UPI00037C3339 hypothetical protein 1.65020479581e-05 2.21762074914e-05 5.6741595333e-06 +UniRef50_A4WPY8 Short chain dehydrogenase reductase SDR 0.00619847451844 0.00279041621034 -0.0034080583081 +UniRef50_F7XAS6 Transcriptional regulator, LysR family 9.18555485599e-05 2.09308915746e-05 -7.09246569853e-05 +UniRef50_A5USR6 DNA directed RNA polymerase subunit beta 4.59382771142e-06 1.67177307274e-06 -2.92205463868e-06 +UniRef50_Q3HKI3 Possible virC1 gene, ATPase 0.0566327789512 0.00654130843002 -0.0500914705212 +UniRef50_C3K4R1 Glycerol 3 phosphate acyltransferase 0.000563739582841 0.000774448197163 0.000210708614322 +UniRef50_D4J507 Predicted membrane protein 5.95558600485e-06 2.86308570196e-05 2.26752710147e-05 +UniRef50_Q3J220 Phage terminase like protein, large subunit 0.0113337844865 0.00314495357313 -0.00818883091337 +UniRef50_Q168P3 Trk system potassium uptake protein 0.00681696365256 0.00151583404908 -0.00530112960348 +UniRef50_Q5ZUT5 N succinylglutamate 5 semialdehyde dehydrogenase 2.65038690196e-06 1.8718529159e-05 1.6068142257e-05 +UniRef50_Q04539 Ribulose phosphate 3 epimerase, plasmid 0.00316506393136 0.00787401019878 0.00470894626742 +UniRef50_K8Z653 5.06874047772e-05 2.54037964104e-05 -2.52836083668e-05 +UniRef50_B2A6Z3 Triosephosphate isomerase 1.27692272233e-05 1.91731593158e-05 6.4039320925e-06 +UniRef50_Q8TX36 50S ribosomal protein L22P 0.00565523086522 0.000626113155893 -0.00502911770933 +UniRef50_A0A024JQQ2 Plasmid pSG, complete sequence 0.00022469404098 0.000234068722742 9.374681762e-06 +UniRef50_Q58369 0.00254339690377 0.00040514123313 -0.00213825567064 +UniRef50_C7PE04 Short chain dehydrogenase reductase SDR 0.000483956359216 0.00142074741331 0.000936791054094 +UniRef50_Q3IVA6 Mannose 1 phosphate guanylyltransferase mannose 6 phosphate isomerase, type 2 0.00712781743214 0.00102677966303 -0.00610103776911 +UniRef50_V4CH91 Chaperone fimC 0.00186700387678 0.00119737504261 -0.00066962883417 +UniRef50_A0A038GJ20 Lipoprotein 0.000903414068199 5.917841013e-05 -0.000844235658069 +UniRef50_J3CKR0 Pyruvate dehydrogenase complex, dehydrogenase component (Fragment) 5.21068644993e-05 6.42130621087e-05 1.21061976094e-05 +UniRef50_A7HGV2 tRNA pseudouridine synthase D 1.37272865951e-05 4.95553554186e-05 3.58280688235e-05 +UniRef50_V9GEA9 Flagellar hook length control protein FliK 4.90047625372e-06 9.8878361117e-05 9.39778848633e-05 +UniRef50_UPI0002FF51AC hypothetical protein 3.66624381408e-06 0.000312330304995 0.000308664061181 +UniRef50_W4TUZ9 Mg Co Ni transporter MgtE 0.000310262456591 0.000686824645589 0.000376562188998 +UniRef50_UPI00035D28CB hypothetical protein 3.96874959184e-05 1.20749812276e-05 -2.76125146908e-05 +UniRef50_UPI0003EC5005 PREDICTED 3.56294972962e-06 2.47518995909e-05 2.11889498613e-05 +UniRef50_P58113 Pirin like protein CC_1473 0.00070424172541 0.000254583366547 -0.000449658358863 +UniRef50_E1VCL4 ABC type transport system permease protein 0.0172607301134 0.0046976799527 -0.0125630501607 +UniRef50_UPI0003D08670 PREDICTED 1.97428186396e-06 4.99305892421e-07 -1.47497597154e-06 +UniRef50_K2Q5M0 2.42734168175e-05 4.26319635052e-06 -2.0010220467e-05 +UniRef50_U5BVI3 2.64603338135e-05 1.28029809849e-05 -1.36573528286e-05 +UniRef50_UPI000248D343 extracellular ligand binding receptor 9.00717658194e-06 6.89026322649e-06 -2.11691335545e-06 +UniRef50_V2CGD9 D mannonate oxidoreductase 0.00145121432832 0.00178904638546 0.00033783205714 +UniRef50_C9XPK8 Padr family transcriptional regulator 9.69419217865e-05 2.64186208875e-05 -7.0523300899e-05 +UniRef50_U4QEL4 2.13661743948e-05 3.65999645239e-06 -1.77061779424e-05 +UniRef50_B3EFN5 Serine hydroxymethyltransferase 0.000123573740901 0.000163986582917 4.0412842016e-05 +UniRef50_J6CMF8 Sugar ABC transporter permease 0.00100493325342 0.000161549120865 -0.000843384132555 +UniRef50_I0Z434 3.84935452125e-06 4.74964340348e-06 9.0028888223e-07 +UniRef50_F0YNG2 2.32977092886e-06 4.73855360441e-05 4.50557651152e-05 +UniRef50_UPI0003B55F2C LacI family transcriptional regulator 3.15155244928e-06 4.25142597342e-05 3.93627072849e-05 +UniRef50_UPI00026263DB ABC transporter 6.18708900779e-06 1.32167763365e-05 7.02968732871e-06 +UniRef50_Q55154 Chaperone protein dnaK1 0.00857518118047 0.000755687646451 -0.00781949353402 +UniRef50_Y7D100 0.000320255452974 5.85959876758e-05 -0.000261659465298 +UniRef50_F4H2Z9 1.57526665365e-05 3.66514024333e-05 2.08987358968e-05 +UniRef50_B4RA78 Regulatory protein, TetR 1.63042761443e-05 0.000623142673187 0.000606838397043 +UniRef50_W8Z0S3 2.1647552602e-05 0.000105369084 8.3721531398e-05 +UniRef50_K0VXX1 1.74577980442e-05 1.77802341338e-05 3.224360896e-07 +UniRef50_E4N9L3 3.22006713017e-05 0.000229668080055 0.000197467408753 +UniRef50_B9EAC4 0.0187428724393 0.00535751852654 -0.0133853539128 +UniRef50_UPI000473EAD9 hypothetical protein, partial 1.99496188385e-05 2.75192953128e-05 7.5696764743e-06 +UniRef50_M9VI34 ATP dependent dethiobiotin synthetase BioD 0.000292624797564 0.00388654151163 0.00359391671407 +UniRef50_Q5LY30 Glycoprotein endopeptidase 0.000174224302552 0.000288583099537 0.000114358796985 +UniRef50_A3PS51 0.00158365114701 0.000378809105071 -0.00120484204194 +UniRef50_B8DNL4 ATP dependent Clp protease proteolytic subunit 7.52023524109e-06 0.000185035963125 0.000177515727884 +UniRef50_R9ZDX0 GntR family transcriptional regulator 0.000892893053777 0.000153411275426 -0.000739481778351 +UniRef50_B9KHI6 2.46807189712e-05 8.54770687296e-05 6.07963497584e-05 +UniRef50_C1D0Z6 Thymidine kinase 1.85027076558e-05 6.01672778813e-05 4.16645702255e-05 +UniRef50_Q8DCG0 Ribosomal large subunit pseudouridine synthase A 0.00172241561359 2.32006393355e-05 -0.00169921497425 +UniRef50_Q97EX0 Ribosomal RNA small subunit methyltransferase A 0.000427391612785 0.001972947889 0.00154555627622 +UniRef50_P65691 ATP dependent 6 phosphofructokinase 4.14261482839e-06 8.82903000021e-06 4.68641517182e-06 +UniRef50_Q9LXS7 Citrate synthase 1, peroxisomal 1.03834085489e-05 5.07715884461e-05 4.03881798972e-05 +UniRef50_C4ZHB9 Glutamyl tRNA amidotransferase subunit A 0.0189270463726 0.0112317759779 -0.0076952703947 +UniRef50_Q3JWI9 PilL 0.000105698976443 6.4300275995e-05 -4.1398700448e-05 +UniRef50_B0V8W4 0.000261118127623 0.00607928283919 0.00581816471157 +UniRef50_UPI000365191C hypothetical protein 2.97169638099e-06 2.46599658763e-05 2.16882694953e-05 +UniRef50_Q3J7E7 Malate dehydrogenase 2.95486080335e-05 2.14582199627e-05 -8.0903880708e-06 +UniRef50_C3AWX8 0.000259143699447 0.00158410802146 0.00132496432201 +UniRef50_UPI00046718DB oxidoreductase, partial 5.60600943504e-06 2.11351409771e-05 1.55291315421e-05 +UniRef50_UPI000463A2AA 3 hydroxybutyrate dehydrogenase 6.0509690324e-06 0.000149127235823 0.000143076266791 +UniRef50_C6WBN9 PE PGRS family protein 4.70509143144e-05 0.000483523906529 0.000436472992215 +UniRef50_Q11RE2 ATP dependent 6 phosphofructokinase 1.69726748625e-05 1.73786020976e-05 4.059272351e-07 +UniRef50_UPI0003B54089 hypothetical protein 9.62280295139e-06 2.2257236241e-06 -7.39707932729e-06 +UniRef50_V3ARY1 Ornithine decarboxylase, inducible 0.000101748244975 0.000266729212392 0.000164980967417 +UniRef50_Q2IEZ0 Aspartyl Asparaginyl beta hydroxylase 0.00053992486904 0.000535041063585 -4.883805455e-06 +UniRef50_Q97BF6 Potassium transporting ATPase B chain 6.82535467285e-06 0.0010182375395 0.00101141218483 +UniRef50_UPI0003D06760 50S ribosomal protein L11 4.89106020093e-05 8.33813626971e-05 3.44707606878e-05 +UniRef50_A8A6Z4 Protein FdhE 0.00365570637185 0.0016458555151 -0.00200985085675 +UniRef50_B9KKX7 0.00255289836761 0.00188606052658 -0.00066683784103 +UniRef50_C0MHE9 2.15802408858e-05 3.30846091203e-05 1.15043682345e-05 +UniRef50_Q3HKD5 0.0045984833639 0.000361668545562 -0.00423681481834 +UniRef50_Q3HKD7 0.0260454347429 0.010919979027 -0.0151254557159 +UniRef50_Q3HKD6 0.00238771152851 0.000597779984952 -0.00178993154356 +UniRef50_UPI00036D0132 hypothetical protein 0.000503954692761 3.99122617737e-05 -0.000464042430987 +UniRef50_P0AEQ8 Glutamine transport system permease protein GlnP 0.0019764830774 0.000913350634632 -0.00106313244277 +UniRef50_Q9I1L9 Dihydrolipoyl dehydrogenase 0.000240573625513 0.000281975431133 4.140180562e-05 +UniRef50_UPI00047BC897 acyl CoA dehydrogenase 5.12581400826e-06 1.76657633898e-05 1.25399493815e-05 +UniRef50_G8V322 0.0121288157683 0.00279890077832 -0.00932991498998 +UniRef50_UPI000465AF35 aldehyde oxidoreductase 0.000177978829675 0.00113217893838 0.000954200108705 +UniRef50_D0LSQ0 3 demethylubiquinone 9 3 methyltransferase 0.00468811436765 0.000389428622235 -0.00429868574541 +UniRef50_Q8DSD9 0.00782316904708 0.000562973693485 -0.00726019535359 +UniRef50_S1STI3 Carbonic anhydrase, family 3 8.81965471089e-05 4.05999959486e-05 -4.75965511603e-05 +UniRef50_U5MMX2 Type IV pilus assembly protein PilO 0.000324297545183 0.000398976834538 7.4679289355e-05 +UniRef50_Q3JB01 0.00033137551243 0.000772464371747 0.000441088859317 +UniRef50_Q1GMD1 Probable chemoreceptor glutamine deamidase CheD 1 0.000256468209586 4.12357494991e-05 -0.000215232460087 +UniRef50_I3X6Z9 4.72290077459e-06 7.03340448565e-06 2.31050371106e-06 +UniRef50_UPI00037E93F7 hypothetical protein 1.9053341368e-05 5.74502777836e-06 -1.33083135896e-05 +UniRef50_P20751 Probable adenosine monophosphate protein transferase fic 0.0064925117853 0.00297927199182 -0.00351323979348 +UniRef50_UPI000378B4BF hypothetical protein 1.61093204591e-05 4.11783730662e-05 2.50690526071e-05 +UniRef50_UPI0004671E08 hypothetical protein 3.98256484973e-06 8.02099902009e-06 4.03843417036e-06 +UniRef50_C6SQC4 0.00471912246437 0.00210114892954 -0.00261797353483 +UniRef50_UPI0003761AFD hypothetical protein, partial 1.79518267396e-06 3.08211789454e-06 1.28693522058e-06 +UniRef50_S5XPF3 ATP dependent RNA helicase RhlE 0.00238188739925 0.00102663283228 -0.00135525456697 +UniRef50_P31802 Nitrate nitrite response regulator protein NarP 0.00258951160052 0.00164623828863 -0.00094327331189 +UniRef50_O07344 Signal peptidase I 0.000193252212719 0.00218529483154 0.00199204261882 +UniRef50_UPI0000DB7F4F PREDICTED 1.51112903266e-05 4.55145781205e-05 3.04032877939e-05 +UniRef50_B4FRS7 2.95934263712e-05 7.25722517833e-05 4.29788254121e-05 +UniRef50_Q8PCH1 tRNA dihydrouridine synthase B 8.43526520771e-06 8.76719371208e-06 3.3192850437e-07 +UniRef50_G6CTE1 1.05189603701e-05 2.7064179549e-06 -7.8125424152e-06 +UniRef50_UPI00026C71CA TetR family transcriptional regulator 0.000326855270059 0.000108866214099 -0.00021798905596 +UniRef50_UPI00024870DD phosphoglyceromutase, partial 7.39028968022e-05 6.16826950046e-05 -1.22202017976e-05 +UniRef50_R7EC63 3.35132358362e-06 7.95469205052e-06 4.6033684669e-06 +UniRef50_B7MQ51 2.98885143182e-06 1.65944467644e-05 1.36055953326e-05 +UniRef50_F0T772 MotA TolQ ExbB proton channel family protein 6.14469488097e-05 2.19867770398e-05 -3.94601717699e-05 +UniRef50_A6LWJ1 DNA mismatch repair protein MutL 5.95716973486e-05 0.00210631034731 0.00204673864996 +UniRef50_R6EG03 Serine type site specific recombinase 1.14888290588e-05 0.000137141288755 0.000125652459696 +UniRef50_B5BFR1 Possible oxygen independent coproporphyrinogen III oxidase 0.00191458571656 0.000444358389305 -0.00147022732725 +UniRef50_Q9I7C2 DNA gyrase subunit B 0.00217107276943 0.00050014615494 -0.00167092661449 +UniRef50_Q9I656 0.00104503379861 0.00042825427429 -0.00061677952432 +UniRef50_U6JZT0 9.44846807773e-05 4.56199500503e-06 -8.99226857723e-05 +UniRef50_UPI0003B550BB spermidine putrescine ABC transporter permease 8.2677794421e-06 0.000152461902994 0.000144194123552 +UniRef50_D6SHJ8 Bacterial membrane protein YfhO 0.00721488859767 0.00345322859598 -0.00376166000169 +UniRef50_UPI00036502F5 hypothetical protein 2.89558163087e-05 1.54485148e-05 -1.35073015087e-05 +UniRef50_Q0AAU9 Elongation factor P 1.13675924802e-05 3.66573437742e-05 2.5289751294e-05 +UniRef50_Q82HL5 Imidazolonepropionase 0.000479637111068 0.00650173094073 0.00602209382966 +UniRef50_B7V5F2 Alginate biosynthesis protein AlgZ FimS 0.000692504636356 0.000244400031881 -0.000448104604475 +UniRef50_Q9RTK1 tRNA specific 2 thiouridylase MnmA 0.000371026706344 0.0396619940964 0.0392909673901 +UniRef50_UPI0003AA521B molybdenum ABC transporter permease 3.15030355198e-05 2.56311376953e-05 -5.8718978245e-06 +UniRef50_UPI0003B5A522 dihydrofolate reductase 1.2781563439e-05 2.49790663612e-05 1.21975029222e-05 +UniRef50_R9ZHA8 Histidine kinase 0.000303084034128 0.000706143032099 0.000403058997971 +UniRef50_A5G1D5 Uroporphyrinogen decarboxylase 7.4579052529e-06 2.18666267354e-05 1.44087214825e-05 +UniRef50_A0A037F2E9 0.000224662212355 1.37740417588e-05 -0.000210888170596 +UniRef50_UPI0003B3B50B succinate dehydrogenase 7.50228095805e-06 1.36553136525e-05 6.15303269445e-06 +UniRef50_Q84WV0 Serine hydroxymethyltransferase 7 2.39297642032e-06 3.30131725703e-05 3.062019615e-05 +UniRef50_C0QJ54 Dihydroorotase 4.29070663979e-06 6.85704994891e-06 2.56634330912e-06 +UniRef50_Q634K9 0.000782375384975 0.000608900423076 -0.000173474961899 +UniRef50_UPI0003747F78 hypothetical protein 8.72549394864e-05 2.09678116673e-05 -6.62871278191e-05 +UniRef50_UPI0003B369AA ribonuclease III 2.15714979479e-05 6.92094439128e-05 4.76379459649e-05 +UniRef50_UPI0003AEA2A6 PREDICTED 1.27862461754e-05 3.56438429067e-06 -9.22186188473e-06 +UniRef50_P33647 mRNA interferase ChpB 0.00169029656208 0.000513594269898 -0.00117670229218 +UniRef50_UPI0001BC2B50 GntR family transcriptional regulator 7.41122591194e-05 5.16994508947e-05 -2.24128082247e-05 +UniRef50_L1K4A8 0.000468524822607 0.000411408736575 -5.7116086032e-05 +UniRef50_B4RJX0 DNA polymerase III subunit delta 0.000533227846271 0.00414367333195 0.00361044548568 +UniRef50_Q04444 Protoheme IX farnesyltransferase 3.05973843096e-06 3.94630662121e-05 3.64033277811e-05 +UniRef50_K2GS32 7.00306280245e-05 1.12918282229e-05 -5.87387998016e-05 +UniRef50_D5AUR2 6.45113215985e-06 4.34250295474e-06 -2.10862920511e-06 +UniRef50_W8RUE5 Cytochrome B561 5.69474524575e-05 1.72135854189e-05 -3.97338670386e-05 +UniRef50_Q9HXX3 Probable cysteine desulfurase 0.000191055302585 0.000555437177595 0.00036438187501 +UniRef50_U3SRQ3 Cell shape determining protein MreC 0.00590628413574 0.00143480373981 -0.00447148039593 +UniRef50_T2E6Y0 Lysine arginine ornithine binding periplasmic family protein 0.000996128663077 0.00347257153372 0.00247644287064 +UniRef50_U6IEY8 Collagen alpha chain 4.12209537743e-05 1.53375081918e-05 -2.58834455825e-05 +UniRef50_A5WGA7 Penicillin binding protein 6, Serine peptidase, MEROPS family S11 0.00253444265998 0.00589009274925 0.00335565008927 +UniRef50_UPI00046F5711 alpha glucosidase, partial 3.20938547294e-05 7.47518147308e-06 -2.46186732563e-05 +UniRef50_A9GFW6 Histidine ammonia lyase 3.70651595586e-06 7.31527232869e-05 6.9446207331e-05 +UniRef50_A6QDZ2 Phage tape measure protein 0.000713707037488 0.000122855096404 -0.000590851941084 +UniRef50_UPI0004672C36 hypothetical protein, partial 0.000109815672558 8.85790244115e-06 -0.000100957770117 +UniRef50_UPI00046DEE74 hypothetical protein 1.30223881677e-06 7.59352792985e-05 7.46330404817e-05 +UniRef50_K7YHX4 Receptor ligand binding region family protein 0.00482522689976 0.00061899871782 -0.00420622818194 +UniRef50_A3PQ86 Extracellular solute binding protein, family 1 0.00894556284692 0.00186170050224 -0.00708386234468 +UniRef50_UPI0003B79FBA O sialoglycoprotein endopeptidase 6.09540327431e-06 9.00097620862e-06 2.90557293431e-06 +UniRef50_A8LK13 5.72660915327e-05 2.06182187285e-05 -3.66478728042e-05 +UniRef50_A5N391 0.000145403247892 0.000463665195719 0.000318261947827 +UniRef50_E5QS55 2.84210257288e-05 0.000160734101085 0.000132313075356 +UniRef50_B4UIZ5 Putative 3 methyladenine DNA glycosylase 2.4110259963e-05 1.05862225026e-05 -1.35240374604e-05 +UniRef50_Q73CS7 Tn554 related, transposase B 0.00877647351416 0.00397484052538 -0.00480163298878 +UniRef50_I1ZP64 0.00368407755186 0.00717385535531 0.00348977780345 +UniRef50_UPI0003B53A62 metallophosphoesterase 4.06642450595e-06 6.78720535925e-05 6.38056290865e-05 +UniRef50_UPI00040A50B2 hypothetical protein 2.04076026085e-06 1.08563291311e-05 8.81556887025e-06 +UniRef50_D9QKP9 Flagellar FlaF family protein 1.1941354019e-05 2.42499876586e-05 1.23086336396e-05 +UniRef50_E4R8G4 2.37351956827e-05 5.98915899265e-05 3.61563942438e-05 +UniRef50_UPI000288FEC4 cystathionine beta lyase 1.68778597966e-05 3.18481820648e-05 1.49703222682e-05 +UniRef50_Q9ZMV7 DNA topoisomerase 1 0.000307622559545 0.00372366864282 0.00341604608328 +UniRef50_B7GIC0 N acetyldiaminopimelate deacetylase 3.02968451742e-05 0.000228337658653 0.000198040813479 +UniRef50_A9BPD7 0.000308856244385 7.25440392157e-05 -0.000236312205169 +UniRef50_A4WY56 0.00227377594921 0.000231620220955 -0.00204215572826 +UniRef50_S5V0B7 0.000548360592339 0.00112599471038 0.000577634118041 +UniRef50_Q7MV04 Chorismate synthase 4.62495944522e-06 0.0020274188357 0.00202279387625 +UniRef50_Q887Z4 Probable malate 0.009019120526 0.00504077039872 -0.00397835012728 +UniRef50_S9VRA1 7.65580163365e-05 2.65704847331e-05 -4.99875316034e-05 +UniRef50_UPI00047C4FEB RNA methyltransferase 1.28917000836e-05 2.16946603983e-05 8.8029603147e-06 +UniRef50_D3QEM5 8.26519881161e-05 3.78906828682e-05 -4.47613052479e-05 +UniRef50_A0A024KA74 4.60954557117e-06 0.000112549493657 0.000107939948086 +UniRef50_A6LZ43 Binding protein dependent transport systems inner membrane component 0.000188428946181 0.000852644008553 0.000664215062372 +UniRef50_UPI0002376815 prolyl aminopeptidase, partial 1.34549942907e-05 3.48458661669e-05 2.13908718762e-05 +UniRef50_C0BAK5 Excinuclease ABC, C subunit 7.87582618192e-06 3.13096469214e-05 2.34338207395e-05 +UniRef50_Q21LN7 tRNA 2 O) methyltransferase 0.0020374873848 5.83726069246e-05 -0.00197911477788 +UniRef50_A4WQR0 MscS Mechanosensitive ion channel 0.00257080646298 0.000913900562882 -0.0016569059001 +UniRef50_UPI00035E0303 hypothetical protein 5.52469403818e-06 1.15684635595e-05 6.04376952132e-06 +UniRef50_U5MRV9 Serine threonine protein kinase 0.000442783635796 0.00157387420987 0.00113109057407 +UniRef50_P13982 Carbamate kinase 0.000689538988987 0.000191764094291 -0.000497774894696 +UniRef50_UPI0003815DEC hypothetical protein 0.000730026997077 0.000699929067698 -3.0097929379e-05 +UniRef50_Q2IPX3 3.09563707558e-05 0.000506392216764 0.000475435846008 +UniRef50_S5D154 RNA 3 terminal phosphate cyclase 0.000183245625651 0.00520953956005 0.0050262939344 +UniRef50_E6NJU4 Single stranded DNA specific exonuclease 7.31089713695e-05 0.00253146614321 0.00245835717184 +UniRef50_UPI00042B0FB5 Enoyl CoA hydratase isomerase D isoform 1 4.2227885151e-05 5.28025992827e-05 1.05747141317e-05 +UniRef50_X2HZR9 Glycosyltransferase 9 family protein 0.0004950643619 0.00355227571611 0.00305721135421 +UniRef50_P72794 Phosphoadenosine phosphosulfate reductase 9.42903920079e-06 1.4621505404e-05 5.19246620321e-06 +UniRef50_P21826 Malate synthase 2, glyoxysomal 1.16051111112e-05 1.01791287612e-05 -1.42598235e-06 +UniRef50_Q8CRL3 0.00922242905109 0.00170711251666 -0.00751531653443 +UniRef50_C5WHP5 0.00644342984872 0.000663592958822 -0.0057798368899 +UniRef50_O87016 tRNA pseudouridine synthase A 0.00071564353676 0.00133223785409 0.00061659431733 +UniRef50_J3MER7 4.75027475239e-06 8.29409629013e-05 7.81906881489e-05 +UniRef50_P0AGG3 Acyl CoA thioesterase 2 0.00406027738126 0.000623364651693 -0.00343691272957 +UniRef50_UPI0003AF73D9 PREDICTED 9.00582863081e-05 5.97726284432e-05 -3.02856578649e-05 +UniRef50_R0P9K1 D alanyl D alanine carboxypeptidase family protein 0.000140852980911 0.00220517238216 0.00206431940125 +UniRef50_B9DPV8 Heme A synthase 0.00863557309472 0.00329089091725 -0.00534468217747 +UniRef50_UPI0004705E30 hypothetical protein 4.97767935597e-05 0.000133443503908 8.36667103483e-05 +UniRef50_Q8FFW9 0.00317462678592 0.000446666953163 -0.00272795983276 +UniRef50_P39282 Inner membrane transporter YjeM 0.00191756109349 0.00241504385503 0.00049748276154 +UniRef50_G2L2S5 Usher CupC3 0.00050693542739 0.000228441714788 -0.000278493712602 +UniRef50_U5MXP3 0.00055238540274 0.00120948821241 0.00065710280967 +UniRef50_W7VSI1 4.41215866739e-05 1.16185939305e-05 -3.25029927434e-05 +UniRef50_UPI00036404C4 hypothetical protein, partial 6.38729393015e-05 8.33743423042e-05 1.95014030027e-05 +UniRef50_B7GX48 Dihydroorotase 0.000221416544302 0.00704194953859 0.00682053299429 +UniRef50_UPI00034DB867 hypothetical protein 3.66432003638e-05 2.86614895778e-05 -7.981710786e-06 +UniRef50_Q3IV31 Two component transcriptional regulator, LuxR family 0.00824173001267 0.00271683408625 -0.00552489592642 +UniRef50_W5VEC3 0.000287040968371 0.000425847963751 0.00013880699538 +UniRef50_X5QPT7 Phosphatase 5.69643832137e-06 1.13191411435e-05 5.62270282213e-06 +UniRef50_B7N5L4 CinA like protein 0.00303256945269 0.00233202738417 -0.00070054206852 +UniRef50_F2N5L7 Membrane protein 4.32448175698e-05 5.57853915734e-05 1.25405740036e-05 +UniRef50_UPI000380F219 hypothetical protein 1.69047544956e-05 2.25927924875e-05 5.6880379919e-06 +UniRef50_B9E6T3 Phosphate specific transport system accessory protein PhoU 0.0159093777712 0.00263858811801 -0.0132707896532 +UniRef50_UPI00029A1B88 putative beta carotene desaturase methylase 8.84732786372e-05 4.29248449696e-06 -8.41807941402e-05 +UniRef50_UPI0003B30D3A ABC transporter permease 7.018336314e-06 9.53851644773e-06 2.52018013373e-06 +UniRef50_K2XX98 Tryptophanase 0.000308571653009 0.00107200723931 0.000763435586301 +UniRef50_UPI000366A6AA hypothetical protein 6.63451302619e-06 2.78979366778e-05 2.12634236516e-05 +UniRef50_A1K1U7 Lipoyl synthase 4.81334664778e-06 9.79687824816e-06 4.98353160038e-06 +UniRef50_UPI0002627F17 acetolactate synthase 4.02764102318e-05 9.86499994125e-05 5.83735891807e-05 +UniRef50_R0ZN74 Putative identified by MetaGeneAnnotator 9.25287279381e-06 0.00010669999783 9.74471250362e-05 +UniRef50_P22609 Type 4 fimbrial assembly protein PilC 0.000411202888168 0.000183236838799 -0.000227966049369 +UniRef50_Q1CUW0 Phosphate acyltransferase 0.000122693170804 0.00492645331283 0.00480376014203 +UniRef50_Q9K907 Bis tetraphosphatase PrpE [asymmetrical] 3.46232294946e-05 0.000399221006554 0.000364597777059 +UniRef50_UPI00047C7069 hypothetical protein 6.73192233813e-06 1.02947824257e-05 3.56286008757e-06 +UniRef50_UPI000463DC0E exodeoxyribonuclease III 7.48213360561e-05 1.62394806621e-05 -5.8581855394e-05 +UniRef50_D4GSF3 SAMP activating enzyme E1 2.85189236737e-05 7.03512615249e-05 4.18323378512e-05 +UniRef50_K0DUB4 Guanine deaminase 0.00017799278945 0.000347750396965 0.000169757607515 +UniRef50_A5P853 3.17531240605e-05 4.11507379255e-05 9.397613865e-06 +UniRef50_A8LKM9 Transcriptional regulator 0.00470221180881 0.000861283188269 -0.00384092862054 +UniRef50_Q469F5 Lon protease 0.000511577850277 0.00135075045631 0.000839172606033 +UniRef50_J7M386 Mevalonate kinase 0.000394175755734 0.0011527672651 0.000758591509366 +UniRef50_Q9KPZ7 Copper exporting P type ATPase A 5.23351227837e-06 5.80594491628e-05 5.28259368844e-05 +UniRef50_P25907 0.00259447348708 0.00195984435 -0.00063462913708 +UniRef50_A0A024EDR3 Malonate decarboxylase, alpha subunit 0.00107089900933 0.00104260521206 -2.829379727e-05 +UniRef50_P24171 Peptidyl dipeptidase dcp 0.00253856556398 0.000811116592989 -0.00172744897099 +UniRef50_I3X5Y9 Transposase IS4 family protein 3.40991223193e-05 1.3985250459e-05 -2.01138718603e-05 +UniRef50_N4R2H6 Type F conjugative transfer system protein TraW 0.0001101126364 4.46651370877e-05 -6.54474993123e-05 +UniRef50_Q1J163 Elongation factor P 1.39397354038e-05 0.00120579436193 0.00119185462653 +UniRef50_Q27I85 PSQ10.3c 4.55029082807e-05 5.63500747548e-05 1.08471664741e-05 +UniRef50_UPI00037303EC hypothetical protein 2.03606793825e-05 1.64631278185e-05 -3.897551564e-06 +UniRef50_H6N2J3 4.02053109194e-07 3.62338438668e-06 3.22133127749e-06 +UniRef50_UPI000465CD92 membrane protein 8.78865920273e-06 1.40831536346e-05 5.29449443187e-06 +UniRef50_D6A1D4 5.99844134442e-05 0.00112535108184 0.0010653666684 +UniRef50_D2Q8M6 Sugar binding lipoprotein of ABC transporter system 0.00086109359777 0.00442880096515 0.00356770736738 +UniRef50_Q6E7F4 dTDP glucose 4,6 dehydratase 0.00333201274394 0.000694910024425 -0.00263710271952 +UniRef50_UPI00037948E9 hypothetical protein 1.22752950701e-05 1.73756854612e-05 5.1003903911e-06 +UniRef50_UPI0003708B64 hypothetical protein 1.34487425792e-05 6.38773750785e-06 -7.06100507135e-06 +UniRef50_P0AAS1 Inner membrane protein YlaC 0.00680536327058 0.00149022322971 -0.00531514004087 +UniRef50_UPI0003032198 hypothetical protein 1.03384040464e-05 1.27821040311e-05 2.4436999847e-06 +UniRef50_UPI00046685FF hypothetical protein, partial 0.000199370708951 0.000534431258114 0.000335060549163 +UniRef50_UPI000377B254 hypothetical protein 4.00077514755e-06 1.06797024305e-05 6.67892728295e-06 +UniRef50_A0A011MUR4 Inner membrane protein YjcH 0.000159064985804 5.89671630859e-05 -0.000100097822718 +UniRef50_A5UN55 DNA directed RNA polymerase subunit D 0.00387161209938 0.00120422719843 -0.00266738490095 +UniRef50_F0KJH6 cAMP phosphodiesterase, heme regulated 0.000103515353427 0.0033646703999 0.00326115504647 +UniRef50_P39795 Trehalose 6 phosphate hydrolase 0.00251843938048 0.00237736078611 -0.00014107859437 +UniRef50_Q7NIG8 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.02649468004e-05 5.84977298898e-05 2.82327830894e-05 +UniRef50_UPI0002E68AF4 hypothetical protein 0.000346148054217 0.000144392531399 -0.000201755522818 +UniRef50_Q7UGJ1 Ribosome binding ATPase YchF 0.00152535588943 0.007605092871 0.00607973698157 +UniRef50_V5SST6 Transcriptional regulator 0.000371297693954 0.000368378426439 -2.919267515e-06 +UniRef50_Q52671 Sarcosine oxidase subunit beta 0.00981127435283 0.0011702325299 -0.00864104182293 +UniRef50_V6JTT6 Membrane protein 4.82578932584e-05 2.72768795513e-05 -2.09810137071e-05 +UniRef50_UPI00016C3AF7 aspartyl glutamyl tRNA amidotransferase subunit B 1.14223826312e-05 6.11991631173e-06 -5.30246631947e-06 +UniRef50_T1A5Q2 Protein containing DUF28 6.74169060459e-05 5.27993040976e-05 -1.46176019483e-05 +UniRef50_P0C652 Insertion element IS1 protein InsA 0.000962480048154 0.0039818918867 0.00301941183855 +UniRef50_UPI000362D518 hypothetical protein 2.60551511227e-06 2.92861738016e-06 3.2310226789e-07 +UniRef50_UPI0003C1AD28 0.00059129125796 8.39528444824e-05 -0.000507338413478 +UniRef50_Q7VJN5 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.000583297969285 0.00214077287321 0.00155747490393 +UniRef50_UPI00047D0FD3 isopentenyl diphosphate delta isomerase 6.96049288192e-05 1.67735712418e-05 -5.28313575774e-05 +UniRef50_Y7FMH1 3.24643977845e-05 5.21538458851e-05 1.96894481006e-05 +UniRef50_A0A053ZV58 PE PGRS family protein PE_PGRS6 4.96421480445e-06 4.44829697082e-05 3.95187549038e-05 +UniRef50_Q5M2U6 Ribosomal RNA small subunit methyltransferase H 0.0261936059268 0.0148163068336 -0.0113772990932 +UniRef50_T0DA68 1.33509628063e-05 0.000119634322249 0.000106283359443 +UniRef50_UPI00031299A3 putrescine spermidine ABC transporter substrate binding protein 2.56698841095e-05 0.000119916594443 9.42467103335e-05 +UniRef50_T1XR51 SAM dependent methyltransferase, putative 0.0215953101397 0.00581570547797 -0.0157796046617 +UniRef50_UPI00040C571B hypothetical protein 3.87006090364e-06 4.21535806713e-05 3.82835197677e-05 +UniRef50_Q51576 0.000306755112133 0.000635895150675 0.000329140038542 +UniRef50_J0GJ57 LPXTG motif cell wall anchor domain protein 0.00189267875781 0.000251690373754 -0.00164098838406 +UniRef50_A0A024JCU6 Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family 3.39513678557e-06 0.00012358305741 0.000120187920624 +UniRef50_M4TWT1 2.61934727096e-06 4.8525075276e-06 2.23316025664e-06 +UniRef50_UPI00036D292E hypothetical protein 5.79997633727e-06 5.64233435913e-06 -1.5764197814e-07 +UniRef50_U5MPM6 Anti sigma factor N terminus 0.000210801323136 0.00120054699694 0.000989745673804 +UniRef50_UPI000360F857 hypothetical protein 5.67990682454e-06 1.61684579395e-05 1.0488551115e-05 +UniRef50_Q8FIR3 N methyl L tryptophan oxidase 0.00295445320372 0.0012591604561 -0.00169529274762 +UniRef50_M9SB66 0.000402966650976 0.000256425503788 -0.000146541147188 +UniRef50_L0Q2L3 9.03414029288e-05 0.000978135264835 0.000887793861906 +UniRef50_P77610 L asparagine permease 0.00353882579063 0.000503036631673 -0.00303578915896 +UniRef50_V5SZ20 Glycosyl transferase 0.000730048215693 0.000595999793308 -0.000134048422385 +UniRef50_Q9CEG1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.00657987225709 0.00708030271549 0.0005004304584 +UniRef50_UPI00041A37DE hypothetical protein 3.58829873669e-05 1.99106867756e-05 -1.59723005913e-05 +UniRef50_C7MGE6 0.0171046538492 0.0034918991815 -0.0136127546677 +UniRef50_P0CK95 Putative lipoprotein AcfD homolog 0.00241277144926 0.000627983835345 -0.00178478761391 +UniRef50_Q6A8C8 ATP synthase epsilon chain 0.000516515137485 0.0163357137973 0.0158191986598 +UniRef50_UPI0003B78686 polyamine ABC transporter permease, partial 1.24421524914e-05 7.13375843667e-05 5.88954318753e-05 +UniRef50_T2E3D9 Cytochrome c oxidase accessory protein CcoG 0.000494445875905 0.00110566285469 0.000611216978785 +UniRef50_Q5LNK3 Holo [acyl carrier protein] synthase 0.00506694829474 0.000542445840392 -0.00452450245435 +UniRef50_Q8K9K4 Flagellar basal body rod protein FlgG 0.0164506244147 0.00282874350327 -0.0136218809114 +UniRef50_T0ND38 1.13494375483e-05 9.92837658123e-06 -1.42106096707e-06 +UniRef50_Q46812 Protein SsnA 0.00863524225922 0.00249311360445 -0.00614212865477 +UniRef50_F3KHX6 ABC type transport system involved in Fe S cluster assembly, ATPase component 1.8217743079e-05 3.91352128767e-05 2.09174697977e-05 +UniRef50_D8IGI0 Phosphoribosylaminoimidazole carboxylase ATPase subunit 0.0102286176828 0.00637511876492 -0.00385349891788 +UniRef50_UPI0002192F4A ABC transporter ATP binding protein 2.66426804626e-05 5.88687211286e-06 -2.07558083497e-05 +UniRef50_N6A660 0.000300771955137 0.000153328824921 -0.000147443130216 +UniRef50_UPI000300B5EF pyrroline 5 carboxylate dehydrogenase 2.16460799875e-05 6.55090618321e-06 -1.50951738043e-05 +UniRef50_K6TZB8 0.000524286095625 0.00481154565986 0.00428725956424 +UniRef50_UPI0004765628 NADH quinone oxidoreductase subunit K 8.91613713091e-05 8.79816556777e-05 -1.1797156314e-06 +UniRef50_UPI000289CB7D alkyl hydroperoxide reductase thiol specific antioxidant Mal allergen 1.59752251034e-05 0.000423934124494 0.000407958899391 +UniRef50_Q9RFD3 Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.0105755466464 0.002455438698 -0.0081201079484 +UniRef50_F0XYR5 1.65381464035e-05 0.000186891721937 0.000170353575533 +UniRef50_UPI0003775FD0 hypothetical protein 5.23622831573e-05 4.30903426307e-05 -9.2719405266e-06 +UniRef50_E6RPQ3 6.58664692817e-05 2.76820334873e-05 -3.81844357944e-05 +UniRef50_B6IPE0 Probable transaldolase 0.0139966823341 0.0141365417627 0.0001398594286 +UniRef50_D9STR3 0.000343710519528 0.000558198075654 0.000214487556126 +UniRef50_A6V5X2 Cyclic diguanylate phosphodiesterase domain protein 0.000967226900584 0.000300093864815 -0.000667133035769 +UniRef50_UPI000465C5E8 peptide ABC transporter permease 1.80974435753e-05 2.11736782479e-05 3.0762346726e-06 +UniRef50_UPI000380077B hypothetical protein 1.26083364399e-05 1.69512366835e-05 4.3429002436e-06 +UniRef50_UPI00029CD1FE molybdopterin biosynthesis protein, partial 4.87456387146e-06 1.61889865377e-05 1.13144226662e-05 +UniRef50_C1CVF4 DNA gyrase subunit A 0.000159190540286 0.0508022764706 0.0506430859303 +UniRef50_UPI00024851F4 hemolysin type calcium binding protein, partial 5.20484161919e-05 2.98778123165e-05 -2.21706038754e-05 +UniRef50_A0A017XC98 0.0116446538598 0.00255918406452 -0.00908546979528 +UniRef50_UPI0004704CFF cation 1.42576596603e-05 4.24030823681e-05 2.81454227078e-05 +UniRef50_M5FJL9 3.44896130893e-05 0.000987583848416 0.000953094235327 +UniRef50_C7NLK0 8.66547613271e-06 2.79836794614e-05 1.93182033287e-05 +UniRef50_A0A025GLL8 Lipoprotein NlpD 0.00217391173558 0.00110027233794 -0.00107363939764 +UniRef50_UPI0002557A7E high affinity branched chain amino acid ABC transporterATP binding protein, partial 0.000295467390067 4.24570594636e-05 -0.000253010330603 +UniRef50_Q9PC10 Bifunctional purine biosynthesis protein PurH 2.85047267843e-06 0.00379891888394 0.00379606841126 +UniRef50_UPI00047B4540 flavin monooxygenase 1.145798318e-05 2.01469997051e-05 8.6890165251e-06 +UniRef50_T1B7E9 FeS assembly protein SufB 4.44263809522e-06 8.70979755788e-05 8.26553374836e-05 +UniRef50_G8PBW8 Phosphatidylethanolamine binding family protein 3.68729530284e-05 2.00933103306e-05 -1.67796426978e-05 +UniRef50_UPI0003A506AE MULTISPECIES 5.68214612427e-06 1.84569825451e-05 1.27748364208e-05 +UniRef50_E7KW76 Muc1p 5.96654777896e-06 3.23411104275e-05 2.63745626485e-05 +UniRef50_UPI0003A8EC6C hypothetical protein 0.000100276123806 1.73345862354e-05 -8.29415375706e-05 +UniRef50_F0RPV8 Diguanylate cyclase 8.76327023121e-06 0.00164619329046 0.00163743002023 +UniRef50_UPI00047DB175 beta lactamase 1.6713340482e-05 2.86648507308e-05 1.19515102488e-05 +UniRef50_Q42581 Ribose phosphate pyrophosphokinase 1, chloroplastic 0.000109623840068 6.9722285617e-05 -3.9901554451e-05 +UniRef50_UPI00037D526A hypothetical protein, partial 6.47350617605e-05 5.49688823519e-05 -9.7661794086e-06 +UniRef50_F8WK85 PAP2 family protein 0.0100019317188 0.00438169397155 -0.00562023774725 +UniRef50_UPI00036C9515 hypothetical protein 0.000108175376047 0.000197463878759 8.9288502712e-05 +UniRef50_P45792 Type IV pilus assembly protein TapB 0.000678704040354 0.0117613737708 0.0110826697304 +UniRef50_Q3DDY2 0.000294190088179 1.9950000688e-05 -0.000274240087491 +UniRef50_Q2SSQ8 Glycerol kinase 1.29747286403e-05 9.97456681135e-05 8.67709394732e-05 +UniRef50_Q9M8L4 Glycerol kinase 0.00945689604232 0.0394545842843 0.029997688242 +UniRef50_V4XRX6 0.000106134767253 0.000359767365452 0.000253632598199 +UniRef50_UPI000364B546 hypothetical protein 0.000143204293309 1.99780816919e-05 -0.000123226211617 +UniRef50_UPI00036C1952 hypothetical protein, partial 0.00116995494801 0.000149937041184 -0.00102001790683 +UniRef50_Q9UZ08 2 isopropylmalate synthase 8.94198979865e-06 5.30116519347e-06 -3.64082460518e-06 +UniRef50_Q28VP7 Ubiquinone biosynthesis O methyltransferase 0.0045433762599 0.00399815931309 -0.00054521694681 +UniRef50_UPI0003771895 hypothetical protein, partial 3.40228003486e-05 5.76584700187e-05 2.36356696701e-05 +UniRef50_A7X0A3 0.0112126305457 0.00177221400291 -0.00944041654279 +UniRef50_A7X0A2 0.0106613089259 0.00226204113873 -0.00839926778717 +UniRef50_M9VDE6 0.000319268942872 0.00912339814015 0.00880412919728 +UniRef50_B1AIX1 Uridine kinase 1.03157370509e-05 5.32158137701e-05 4.29000767192e-05 +UniRef50_UPI00047145DA cobyrinic acid a c diamide adenosyltransferase 1.00780972922e-05 1.53633036926e-05 5.2852064004e-06 +UniRef50_Q0AG56 S adenosylmethionine 1.57613272581e-05 8.6603139358e-05 7.08418120999e-05 +UniRef50_A1B903 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.00982466571676 0.000633274965451 -0.00919139075131 +UniRef50_Q46807 Carbamate kinase like protein YqeA 0.00296833340408 0.000718882699722 -0.00224945070436 +UniRef50_Q5HGR7 3.35582503495e-05 0.000138991787255 0.000105433536906 +UniRef50_P0C0L2 Peroxiredoxin OsmC 0.0163595080319 0.000493565523996 -0.0158659425079 +UniRef50_A1A968 Glutathione binding protein GsiB 0.00265326495623 0.0010890675305 -0.00156419742573 +UniRef50_A1SHI2 Glycosyl transferase, family 4 0.00034877880988 0.00591578440292 0.00556700559304 +UniRef50_H9UVF3 PilL 0.000128421763707 0.000128802081986 3.80318279e-07 +UniRef50_UPI00037FAEB8 ABC transporter 1.22028656972e-05 6.31945704893e-05 5.09917047921e-05 +UniRef50_E6SFQ0 Cell envelope related transcriptional attenuator 3.40248496559e-06 6.23353018246e-06 2.83104521687e-06 +UniRef50_D3F7I1 Cupin 2 conserved barrel domain protein 0.000206362504528 1.06547213837e-05 -0.000195707783144 +UniRef50_Q9ZLW5 Glutamine synthetase 9.27424139346e-05 0.0053042947722 0.00521155235827 +UniRef50_Q9FI53 Fumarate hydratase 2, chloroplastic 0.000516015862066 0.00231881950565 0.00180280364358 +UniRef50_Q97DP6 Phospho alpha glucosidase PagL 0.000280981685127 0.0015050175279 0.00122403584277 +UniRef50_A7GYI2 Lipoprotein, nlpa family 0.000232576905162 0.00387190972858 0.00363933282342 +UniRef50_UPI00037CD319 hypothetical protein 8.78057865083e-06 5.82760173119e-06 -2.95297691964e-06 +UniRef50_UPI000376EC18 hypothetical protein 9.75728116849e-06 1.59048113404e-05 6.14753017191e-06 +UniRef50_Q67J65 UDP N acetylglucosamine 1 carboxyvinyltransferase 3 1.29158514144e-05 5.50724049496e-05 4.21565535352e-05 +UniRef50_A0A050FM21 Integral membrane protein 5.5465010055e-05 3.90061173112e-05 -1.64588927438e-05 +UniRef50_Q6GDB6 Lactonase drp35 0.0231115856261 0.00612953936135 -0.0169820462648 +UniRef50_Q0RDV0 Ribosomal protein S12 methylthiotransferase RimO 0.000660041152952 0.00654604815353 0.00588600700058 +UniRef50_B9DZW5 0.000194915312664 0.000390286394531 0.000195371081867 +UniRef50_UPI0002196F63 membrane protein 1.94427564728e-05 4.84937704412e-05 2.90510139684e-05 +UniRef50_Q9Z3S3 Probable oxidoreductase OrdL 2.57169517125e-05 4.88101906791e-06 -2.08359326446e-05 +UniRef50_D3DZ74 UPF0288 protein mru_1774 0.00302280562731 0.00110698206159 -0.00191582356572 +UniRef50_D5APE1 Polyhydroxyalkanoate synthesis repressor PhaR 0.000410454663008 3.98598105854e-05 -0.000370594852423 +UniRef50_A6M0B9 D galactose binding periplasmic protein 0.000221439696001 0.00424079628005 0.00401935658405 +UniRef50_Q7MAI3 CTP synthase 0.00202262266695 0.00651223330206 0.00448961063511 +UniRef50_G8PD79 Fibronectin binding A family protein 2.54304494842e-06 0.00119811717816 0.00119557413321 +UniRef50_U1DNW1 0.000286052886474 4.87420552149e-05 -0.000237310831259 +UniRef50_B9DNV1 3 dehydroquinate synthase 0.0179533942372 0.00717765647824 -0.010775737759 +UniRef50_A5ULI3 Antimicrobial peptide ABC transporter, permease component 0.00253862358739 0.000770523029198 -0.00176810055819 +UniRef50_T0U0F8 Sakacin A production response regulator 0.00454262292846 0.00538896950332 0.00084634657486 +UniRef50_Z5YCH8 Cupin 9.07174769539e-05 3.38366227327e-05 -5.68808542212e-05 +UniRef50_Q98IL7 Mlr2347 protein 0.000246329197527 0.000276045123666 2.9715926139e-05 +UniRef50_Q609F9 Glutamate racemase 0.0011153340084 0.000265238748426 -0.000850095259974 +UniRef50_Q8RHI6 DNA directed RNA polymerase subunit beta 1.70049930159e-06 1.9183235634e-06 2.1782426181e-07 +UniRef50_UPI000378688C hypothetical protein 3.37962831957e-05 1.05754675289e-05 -2.32208156668e-05 +UniRef50_N9R0J7 4.16420946777e-05 4.86720465508e-05 7.0299518731e-06 +UniRef50_UPI0000510061 putative ABC transport protein, ATP binding component 8.14554298237e-06 0.0013198140645 0.00131166852152 +UniRef50_I8R6Q9 Excinuclease ABC, subunit A 1.35616693059e-05 0.000104535603554 9.09739342481e-05 +UniRef50_P76361 Inner membrane protein YeeR 0.000868945758751 0.00044959160728 -0.000419354151471 +UniRef50_UPI0003A07059 virulence factor MviN 1.9901331499e-05 1.53871681942e-05 -4.5141633048e-06 +UniRef50_UPI0001C395E6 cystathionine gamma lyase 6.65959105759e-05 2.32380977849e-05 -4.3357812791e-05 +UniRef50_C6VIP9 8.2090718019e-06 1.01023680586e-05 1.8932962567e-06 +UniRef50_B6GEL4 DnaJ domain protein 2.00887044949e-05 2.05168469874e-05 4.281424925e-07 +UniRef50_W4TF65 Glycosyltransferase 0.000283143144955 0.00736899448451 0.00708585133956 +UniRef50_A5CRZ1 Chorismate synthase 1.10429462478e-05 0.000163721134632 0.000152678188384 +UniRef50_UPI0003810CDE hypothetical protein, partial 1.76861777055e-05 0.000215007181358 0.000197321003653 +UniRef50_Q2YUL0 Putative thiaminase 2 0.0181390146495 0.00476026067964 -0.0133787539699 +UniRef50_F6A0T7 Response regulator receiver domain protein 0.00389837218059 0.000358684257326 -0.00353968792326 +UniRef50_A5UJE8 DNA repair exonuclease , Rad32 0.00143457942626 0.000146075864066 -0.00128850356219 +UniRef50_B2UYL5 0.000196266545327 0.00216118105943 0.0019649145141 +UniRef50_UPI00046FD3F6 ATPase 2.43476602181e-06 0.00043911940413 0.000436684638108 +UniRef50_Q6F7X4 0.000187803974553 0.00483482457449 0.00464702059994 +UniRef50_W8S0E0 0.000311585763701 6.05379410349e-05 -0.000251047822666 +UniRef50_UPI0003B42AB6 damage inducible protein 1.77271020637e-05 9.09023612574e-06 -8.63686593796e-06 +UniRef50_G3ZGB0 0.000703252922103 0.000952634532885 0.000249381610782 +UniRef50_P21437 Fructose 1,6 bisphosphatase 2 class 2 0.00366546656703 0.000284414162307 -0.00338105240472 +UniRef50_UPI000373168E hypothetical protein 1.4989358147e-05 1.66835849874e-05 1.6942268404e-06 +UniRef50_S3ZPA8 Putative Linear gramicidin synthase subunit C 8.32892092811e-05 0.000473227745177 0.000389938535896 +UniRef50_C9D9L2 Universal stress protein 0.000411776253368 0.0282083244482 0.0277965481948 +UniRef50_P45762 Putative type II secretion system protein K 0.0032267312026 0.00098540140987 -0.00224132979273 +UniRef50_E6S5F6 Flagellar biosynthesis sigma factor 0.000151600798739 0.00298468645591 0.00283308565717 +UniRef50_B1Y7P3 Glycine tRNA ligase alpha subunit 0.000149841988814 0.000946356982569 0.000796514993755 +UniRef50_UPI0002899294 branched chain amino acid aminotransferase, partial 3.47803276422e-05 3.72560817618e-05 2.4757541196e-06 +UniRef50_P77172 Cyclic di GMP phosphodiesterase YfgF 0.00244217259085 0.000585964227889 -0.00185620836296 +UniRef50_H4GEP0 Replication initiator protein A, N terminal domain protein 0.000116787480987 2.35038486219e-05 -9.32836323651e-05 +UniRef50_K0IHJ1 Ammonium transporter NrgA 0.00027712719646 0.00129121770044 0.00101409050398 +UniRef50_UPI00036013C9 hypothetical protein, partial 0.000121894824799 0.000111074405426 -1.0820419373e-05 +UniRef50_UPI00046F81B4 hypothetical protein 2.36901228817e-05 6.81216927357e-05 4.4431569854e-05 +UniRef50_Q6FAM5 Bifunctional uridylyltransferase uridylyl removing enzyme 0.000337142789937 0.00525131810669 0.00491417531675 +UniRef50_Q0BWA4 Uroporphyrinogen decarboxylase 7.46180815603e-06 1.44741871027e-05 7.01237894667e-06 +UniRef50_Q47LW5 1.97223159411e-06 0.000109647291535 0.000107675059941 +UniRef50_P75685 Inner membrane protein RclC 0.00274211712134 0.00216625030876 -0.00057586681258 +UniRef50_D2R1Q0 1.6552174817e-05 0.000228119005864 0.000211566831047 +UniRef50_O34607 Probable L serine dehydratase, alpha chain 0.000911055321036 0.00768865007592 0.00677759475488 +UniRef50_Q2YUI8 Serine protein kinase RsbW 0.0129624453293 0.00254853302326 -0.010413912306 +UniRef50_Q57549 Probable thiol peroxidase 0.00155131228296 0.0027308363985 0.00117952411554 +UniRef50_A3PLU4 Holliday junction ATP dependent DNA helicase RuvA 8.91249002058e-05 4.50679477566e-05 -4.40569524492e-05 +UniRef50_O67703 Acetolactate synthase small subunit 4.46070866811e-05 0.000368494056094 0.000323886969413 +UniRef50_M5HHC7 0.000779037649562 3.7850948112e-05 -0.00074118670145 +UniRef50_K2DEX2 0.00319794464207 0.000915851534752 -0.00228209310732 +UniRef50_UPI00037E7ACC hypothetical protein 0.000222191351783 4.06771019415e-05 -0.000181514249841 +UniRef50_P08142 Acetolactate synthase isozyme 1 large subunit 0.00262959397591 0.00121118492679 -0.00141840904912 +UniRef50_P37903 Universal stress protein F 0.00104736415878 0.00561658638029 0.00456922222151 +UniRef50_F3U4X7 ABC sugar transporter, inner membrane subunit 0.0190906779594 0.00380598692384 -0.0152846910356 +UniRef50_V5SGS7 Multidrug ABC transporter permease 0.00925169559036 0.0014569402123 -0.00779475537806 +UniRef50_M4S6Z7 6.92675275089e-05 9.34346725083e-05 2.41671449994e-05 +UniRef50_Q8XJ36 Two component response regulator 0.000439918039809 0.00128645179122 0.000846533751411 +UniRef50_G7ZP62 Chromosome replication initiation membrane attachment protein 0.0168095416203 0.00352217783447 -0.0132873637858 +UniRef50_K4KGL9 Beta ketoacyl synthase 0.00062519620505 0.000127017937712 -0.000498178267338 +UniRef50_P07770 Benzoate 1,2 dioxygenase subunit beta 0.00343169080774 0.0109633670813 0.00753167627356 +UniRef50_A5WFZ6 Anthranilate phosphoribosyltransferase 0.000139198043701 0.0100361146912 0.0098969166475 +UniRef50_E0SBA7 4.54100488904e-06 6.70404712587e-06 2.16304223683e-06 +UniRef50_M9RBA6 0.00529716127021 0.000113454417794 -0.00518370685242 +UniRef50_UPI0004259771 peptidylprolyl isomerase 1.14014822927e-05 5.86462512229e-05 4.72447689302e-05 +UniRef50_Q47679 Hydrolase YafV 0.0017861045139 0.000573430495526 -0.00121267401837 +UniRef50_UPI0004661C80 hypothetical protein, partial 2.40379548207e-05 0.000136475775768 0.000112437820947 +UniRef50_C5AI60 Diguanylate cyclase 3.13522164665e-06 0.000167188296511 0.000164053074864 +UniRef50_UPI0002197895 phosphoribosylaminoimidazole carboxylase 6.36261923385e-06 1.21657230203e-05 5.80310378645e-06 +UniRef50_B7GHM5 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.0138887108959 0.00156797721074 -0.0123207336852 +UniRef50_D8GMQ7 Predicted acyl CoA thioesterase 1 0.000241799087552 0.00267148981811 0.00242969073056 +UniRef50_K7RVQ7 Transporter, major facilitator family protein 9.11801905478e-05 0.00296972741164 0.00287854722109 +UniRef50_UPI000367D1F7 hypothetical protein 2.50789421641e-05 1.28042496832e-05 -1.22746924809e-05 +UniRef50_A3PJB9 ABC transporter related 0.0113046243824 0.000990774276087 -0.0103138501063 +UniRef50_H8GYE3 6.17479807229e-05 0.030380257698 0.0303185097173 +UniRef50_Q8DJL3 Tlr1209 protein 0.000205047980263 7.3143871086e-05 -0.000131904109177 +UniRef50_D2ZPN4 Putative toxin antitoxin system toxin component, PIN family 2.06196697336e-05 6.69489077827e-07 -1.99501806558e-05 +UniRef50_A3PHS3 Transport associated 0.000596367730434 0.00212569066333 0.0015293229329 +UniRef50_P31961 Phosphogluconate dehydratase 0.00353345788129 0.012371743748 0.00883828586671 +UniRef50_H8GYE9 0.00026583520342 0.00238490599175 0.00211907078833 +UniRef50_M5DRD3 8.32517960408e-05 3.64392113916e-05 -4.68125846492e-05 +UniRef50_A0A058ZFX3 3.94167521259e-06 8.38018027807e-06 4.43850506548e-06 +UniRef50_Q3J2Y8 Acyltransferase domain 0.00230309228761 0.000182905842502 -0.00212018644511 +UniRef50_Q1GGL7 0.000168191978568 4.48170657139e-05 -0.000123374912854 +UniRef50_Q1GGL2 0.00483451897582 0.00267622818531 -0.00215829079051 +UniRef50_K0N9J9 Cellobiose permease IIC component 0.00571915490317 0.00336836098432 -0.00235079391885 +UniRef50_H2FLG9 Protein GRSP 2, isoform f 4.68471937896e-05 1.29369065555e-05 -3.39102872341e-05 +UniRef50_G2WZD3 6.49469523581e-06 0.000105769056209 9.92743609732e-05 +UniRef50_A9M9V6 NAD specific glutamate dehydrogenase 1.77429701554e-05 1.03784084975e-05 -7.3645616579e-06 +UniRef50_K0LFR7 0.0190458566493 0.00932978883974 -0.00971606780956 +UniRef50_Q48NP4 OsmC Ohr family protein 0.00871121512735 0.00336703131814 -0.00534418380921 +UniRef50_Q8CS08 0.0126868471177 0.00173392995839 -0.0109529171593 +UniRef50_Q2NHD8 Predicted minichromosome maintenance protein 0.00199163217154 0.000760741710875 -0.00123089046067 +UniRef50_L8MLB7 Putative membrane protein, clustering with ActP 0.000127559256993 7.51961455758e-05 -5.23631114172e-05 +UniRef50_Q6FF72 0.00101336892875 0.00315382702001 0.00214045809126 +UniRef50_Q72CF3 50S ribosomal protein L17 0.00273252794983 0.00287832928354 0.00014580133371 +UniRef50_Q6FF71 0.000463875691152 0.00378438986594 0.00332051417479 +UniRef50_T2F8G8 Type IV prepilin peptidase 1.52930342816e-05 1.4754678803e-05 -5.383554786e-07 +UniRef50_UPI00046B85CA PREDICTED 5.68362089032e-06 0.000199659429296 0.000193975808406 +UniRef50_UPI0004788AD3 hypothetical protein 6.55128639135e-06 8.38438523829e-05 7.72925659915e-05 +UniRef50_W8YT37 1.23616245605e-05 0.000216478850176 0.000204117225615 +UniRef50_E3NV91 Aldehyde dehydrogenase 0.000157505803757 0.00896770998095 0.00881020417719 +UniRef50_UPI00035FA1C3 hypothetical protein 1.19597225325e-05 1.77060938768e-05 5.7463713443e-06 +UniRef50_I0IED2 8.5083243167e-05 8.60944278648e-05 1.0111846978e-06 +UniRef50_P54689 Branched chain amino acid aminotransferase 0.00535433688493 0.0458830204376 0.0405286835527 +UniRef50_K5YUY4 Polyhydroxyalkanoate synthesis repressor PhaR 3.20981600514e-05 9.73983034321e-06 -2.23583297082e-05 +UniRef50_UPI000376564B hypothetical protein 6.41023151521e-06 1.2220771513e-05 5.81053999779e-06 +UniRef50_UPI00034CAA3F peptidase M23 1.1820383081e-05 2.87351255164e-05 1.69147424354e-05 +UniRef50_Q3JSC1 1.17015538703e-05 5.07865707662e-05 3.90850168959e-05 +UniRef50_B4UHS9 Succinate dehydrogenase fumarate reductase iron sulfur subunit 0.000301988791085 0.0171850888176 0.0168831000265 +UniRef50_Q1GZH1 UPF0301 protein Mfla_2099 7.45630790961e-06 1.15900884501e-05 4.13378054049e-06 +UniRef50_A5UK83 0.00138531939449 0.00039551344445 -0.00098980595004 +UniRef50_D3R5Q5 O acetyl L homoserine sulfhydrolase 0.00568184756274 0.00724652400136 0.00156467643862 +UniRef50_Q89WL0 Glutathione synthetase 3.61114925836e-06 0.000121708229355 0.000118097080097 +UniRef50_I7EIU7 0.00957349084765 0.00307533793018 -0.00649815291747 +UniRef50_G8VQH1 ATP dependent helicase 0.000253169120298 0.00533813871191 0.00508496959161 +UniRef50_D4KG00 Transcriptional regulator, LacI family 0.000610241838077 0.00157235757593 0.000962115737853 +UniRef50_UPI0003B47824 nitrogen regulatory protein 1.81941969903e-05 3.07644531365e-05 1.25702561462e-05 +UniRef50_H6LJ16 UV damage endonuclease UvdE 0.000794107587337 0.000946485686244 0.000152378098907 +UniRef50_B7KNT0 ATP dependent Clp protease proteolytic subunit 1.54340919095e-05 8.27687301943e-05 6.73346382848e-05 +UniRef50_UPI000225B916 hypothetical protein 3.92251966909e-05 5.37668332618e-05 1.45416365709e-05 +UniRef50_M4X3P8 L threonine synthase 9.08514498909e-05 6.82167759319e-06 -8.40297722977e-05 +UniRef50_A9H7P2 Putative secretion protein, HlyD family 8.59592353144e-06 0.000578835835111 0.00057023991158 +UniRef50_UPI0002E0E4D6 hypothetical protein 5.1568045925e-06 1.73595185726e-05 1.22027139801e-05 +UniRef50_UPI000289152D tonb dependent receptor plug 4.44966537061e-06 5.48413889386e-06 1.03447352325e-06 +UniRef50_Q28PK5 Guanylate kinase 1.56606934306e-05 2.98671869927e-05 1.42064935621e-05 +UniRef50_UPI00037BDD3D hypothetical protein, partial 2.09954188226e-05 8.402116185e-05 6.30257430274e-05 +UniRef50_Q2RFN9 DNA directed RNA polymerase subunit beta 5.81335102824e-06 2.80829125013e-06 -3.00505977811e-06 +UniRef50_UPI00029A706B MerR family transcriptional regulator 8.64021632482e-05 4.62384486945e-05 -4.01637145537e-05 +UniRef50_C5BYT3 Cysteine tRNA ligase 5.07236474411e-06 0.0021201961767 0.00211512381196 +UniRef50_UPI000380AA73 hypothetical protein 0.00163049933645 0.00024193958543 -0.00138855975102 +UniRef50_J0Y468 0.000591462339007 4.91201352948e-05 -0.000542342203712 +UniRef50_UPI00037F71A6 hypothetical protein 3.85629738323e-06 5.11063316915e-06 1.25433578592e-06 +UniRef50_D3Q457 Regulatory protein, FmdB family 0.000510116201151 0.000927696456103 0.000417580254952 +UniRef50_R4LEH4 Yd repeat containing protein 1.97864528112e-07 3.11608997065e-07 1.13744468953e-07 +UniRef50_V9WQL8 Plasmid partitioning protein ParA 0.000239073216019 6.79957537218e-05 -0.000171077462297 +UniRef50_Q7U5L7 Probable malate 2.96003022935e-06 4.81016327605e-06 1.8501330467e-06 +UniRef50_P10121 Signal recognition particle receptor FtsY 0.00277732461913 0.000685696316302 -0.00209162830283 +UniRef50_U6F3A2 Elongation factor G 0.000297036775028 0.00156753251783 0.0012704957428 +UniRef50_Q9RZA4 Bacteriophytochrome 0.000163495058621 0.00739448107072 0.0072309860121 +UniRef50_UPI00042B6A44 Aldolase type TIM barrel family protein 1.65227101973e-06 1.44191506766e-05 1.27668796569e-05 +UniRef50_UPI000382498F hypothetical protein, partial 3.52053062531e-05 0.000184239383192 0.000149034076939 +UniRef50_E0Y2I8 0.000561896007633 0.000133712698645 -0.000428183308988 +UniRef50_B9KN81 Alpha amylase, catalytic region 0.0117395508067 0.00275007942358 -0.00898947138312 +UniRef50_V9B5C8 Transketolase, thiamine pyrophosphate binding domain protein 1.69480073347e-05 1.13611043834e-05 -5.5869029513e-06 +UniRef50_D5CDT8 Ferritin Dps family protein 0.00027620926013 0.00047889195437 0.00020268269424 +UniRef50_P72146 WbpN 0.000764690905198 0.00039266751586 -0.000372023389338 +UniRef50_P0ACR6 0.00173604266467 0.000637584664119 -0.00109845800055 +UniRef50_P0ACR7 0.00547704240382 0.001107216744 -0.00436982565982 +UniRef50_P0ACR3 0.00366119331693 0.000237202172853 -0.00342399114408 +UniRef50_D2JL91 Beta lactamase regulatory sensor transducer BlaR1 0.000317281359462 0.000121151070477 -0.000196130288985 +UniRef50_A7MI52 Glutamate 5 kinase 0.00266783499276 0.00510217893609 0.00243434394333 +UniRef50_D4UF66 0.00017025144426 7.50145822548e-05 -9.52368620052e-05 +UniRef50_UPI00034FBAC3 PREDICTED 4.2036619229e-06 1.03363510457e-05 6.1326891228e-06 +UniRef50_C9A5T3 3.39376416159e-05 2.67948050343e-05 -7.1428365816e-06 +UniRef50_F5M1J1 Prophage CP4 57 regulatory 0.00286744164608 0.000573246933236 -0.00229419471284 +UniRef50_UPI0003D70A5F PREDICTED 5.11972307402e-05 0.000200668202859 0.000149470972119 +UniRef50_C5XLB4 0.000226163076213 9.07112011654e-05 -0.000135451875048 +UniRef50_UPI000255A6FD metal dependent phosphohydrolase 3.60835276666e-05 0.000298123918605 0.000262040390938 +UniRef50_K2AEI9 8.2370389023e-05 9.00584501128e-05 7.6880610898e-06 +UniRef50_U5MWI4 Flagellar basal body rod protein FlgG 0.000167771550603 0.00081901147926 0.000651239928657 +UniRef50_UPI00034B293D hypothetical protein 1.64605125481e-06 2.17102724517e-05 2.00642211969e-05 +UniRef50_V8A9V2 0.000782024517958 0.000147275850256 -0.000634748667702 +UniRef50_V7YY07 Transketolase 2.71713150349e-05 3.5030228541e-05 7.8589135061e-06 +UniRef50_Q9RUZ9 0.00025764589754 0.0434095650688 0.0431519191713 +UniRef50_UPI0003602513 hypothetical protein 0.000122992988326 2.26143829853e-05 -0.000100378605341 +UniRef50_C2ZY26 0.000263405728174 0.000596599404435 0.000333193676261 +UniRef50_Q9RUZ6 0.00014900762718 0.0413020219233 0.0411530142961 +UniRef50_F2ABV1 6.96672261587e-05 0.000514696909573 0.000445029683414 +UniRef50_W0I9Q2 Prevent host death protein 5.16687871208e-05 6.52046014071e-05 1.35358142863e-05 +UniRef50_A0KJE0 Leucyl phenylalanyl tRNA protein transferase 7.66318253377e-06 2.0796682429e-05 1.31334998952e-05 +UniRef50_Z2D8Y2 Amino acid ABC transporter substrate binding protein 0.000551056971677 9.90441716778e-05 -0.000452012799999 +UniRef50_P63235 Probable glutamate gamma aminobutyrate antiporter 0.00233134414053 0.00130020555761 -0.00103113858292 +UniRef50_UPI00034BB6BF hypothetical protein 0.000364044929442 2.97811671193e-05 -0.000334263762323 +UniRef50_X3WS87 Lipoprotein 0.00290761362201 0.00104562098175 -0.00186199264026 +UniRef50_UPI00022CAAC7 PREDICTED 1.20020807977e-06 8.25689557079e-06 7.05668749102e-06 +UniRef50_Q9JYM0 Thiol 8.63812331487e-05 0.00243807456992 0.00235169333677 +UniRef50_A6W977 1.5272274685e-06 5.60019171437e-06 4.07296424587e-06 +UniRef50_UPI000478A779 ABC transporter permease 5.50499575854e-06 3.2480661108e-05 2.69756653495e-05 +UniRef50_T2RUR1 7.93773271691e-05 0.00257643514107 0.0024970578139 +UniRef50_Q5HR30 Glycosyl transferase, group 2 family protein 0.0153082434257 0.00270899248571 -0.01259925094 +UniRef50_B0VRV3 Formamidopyrimidine DNA glycosylase 0.000592403282138 0.00408698915763 0.00349458587549 +UniRef50_UPI0003755B23 hypothetical protein 3.64501413871e-05 2.22464215188e-05 -1.42037198683e-05 +UniRef50_Q1J255 Hemin import ATP binding protein HmuV 2.57545401214e-05 0.00609301455001 0.00606726000989 +UniRef50_P20586 p hydroxybenzoate hydroxylase 0.000830103738918 0.000735729906406 -9.4373832512e-05 +UniRef50_UPI00016A5EA5 CAIB BAIF family protein, partial 1.24651467446e-05 0.000148899421654 0.000136434274909 +UniRef50_G2M909 0.000136030986974 0.000768966293593 0.000632935306619 +UniRef50_G7U5P8 Uracil xanthine permease 0.000158684313331 0.00591245085996 0.00575376654663 +UniRef50_UPI00037C0AF6 hypothetical protein, partial 2.93285905212e-05 2.01492899747e-05 -9.1793005465e-06 +UniRef50_C7ZXH6 Methyltransferase type 12 0.00822899490369 0.000724365382928 -0.00750462952076 +UniRef50_UPI0004700E9C hypothetical protein 0.000195751972439 0.00148614981153 0.00129039783909 +UniRef50_D9XX77 3.96091627931e-05 0.00012310439233 8.34952295369e-05 +UniRef50_A8LJU4 0.000439132142802 3.91636910875e-05 -0.000399968451715 +UniRef50_V1DP08 Bacteriophage replication protein 0.000119555100006 2.87878613073e-05 -9.07672386987e-05 +UniRef50_Q3YYG5 Regulatory protein RecX 0.00523708666477 0.000361612292071 -0.0048754743727 +UniRef50_A3PPL7 3.37054828519e-05 0.000175435666453 0.000141730183601 +UniRef50_UPI0002627F99 50S ribosomal protein L6 4.90755873418e-05 0.000260324938981 0.000211249351639 +UniRef50_Q9K0K9 Iron regulated protein FrpA 0.000200459260265 0.00751570554919 0.00731524628893 +UniRef50_Q5HQI7 0.000492373028943 0.00410806982311 0.00361569679417 +UniRef50_A2RN27 Methionyl tRNA formyltransferase 0.02064365986 0.0108155638671 -0.0098280959929 +UniRef50_U5MVR3 Methyl accepting chemotaxis protein McpA 0.000569473341325 0.00130359873152 0.000734125390195 +UniRef50_Q8GM57 50S ribosomal protein L2 0.0157464770065 0.00665527997003 -0.00909119703647 +UniRef50_F2LAJ8 0.000501682690607 0.00531831393439 0.00481663124378 +UniRef50_A4W2L5 Predicted membrane protein 0.000110413537989 4.30147432317e-05 -6.73987947573e-05 +UniRef50_UPI00037CA3B1 ferredoxin 0.00144514550792 0.00128283537021 -0.00016231013771 +UniRef50_P39899 Neutral protease B 5.95233971217e-06 0.000377746264455 0.000371793924743 +UniRef50_E8SKB9 Integral membrane protein 0.0327981429814 0.00767236221579 -0.0251257807656 +UniRef50_UPI0003B55E69 membrane protein 3.12486799227e-05 1.40547615027e-05 -1.719391842e-05 +UniRef50_UPI0003B397F3 tyrosine recombinase XerC 5.46388478248e-06 1.07935475165e-05 5.32966273402e-06 +UniRef50_A5CF65 Peptide deformylase 2.07802484456e-05 5.52702581998e-05 3.44900097542e-05 +UniRef50_A0A011R0F0 Aerobic C4 dicarboxylate transport protein 8.39960596469e-05 4.30710136267e-05 -4.09250460202e-05 +UniRef50_G2J2T3 Ribosomal RNA small subunit methyltransferase E 0.000179755232787 0.000801979534099 0.000622224301312 +UniRef50_UPI0003C18A10 6.70776573229e-05 0.000307327273709 0.000240249616386 +UniRef50_Q9I3N5 Heme exporter protein C 0.00068022101396 0.0012862545973 0.00060603358334 +UniRef50_P42359 Putative zinc metalloproteinase in scaA 5region 0.00613984769046 0.007371153301 0.00123130561054 +UniRef50_P17054 Phytoene desaturase 0.00979651097662 0.00196435593009 -0.00783215504653 +UniRef50_UPI00037BF3C3 hypothetical protein 4.29984189509e-06 0.000144953824067 0.000140653982172 +UniRef50_UPI00036A00B7 hypothetical protein 4.70796657348e-05 3.94562113148e-05 -7.62345442e-06 +UniRef50_C5VZF1 DNA protection during starvation protein 0.00465026338108 0.0025404247152 -0.00210983866588 +UniRef50_G7M6V3 Transcriptional regulator, RpiR family 0.000463967366218 0.00043171978722 -3.2247578998e-05 +UniRef50_Q98LB3 Dihydroxy acid dehydratase 2 2.25382327857e-05 1.84868668474e-05 -4.0513659383e-06 +UniRef50_E8Y3F7 0.000954027441696 5.11005517175e-05 -0.000902926889978 +UniRef50_UPI0003B4F713 flavine monooxygenase 3.35365908905e-05 6.85006127318e-06 -2.66865296173e-05 +UniRef50_P05050 Alpha ketoglutarate dependent dioxygenase AlkB 0.00324273370263 0.000552572116664 -0.00269016158597 +UniRef50_A7X0C7 Lipoyl synthase 0.0187682561161 0.00475348691673 -0.0140147691994 +UniRef50_UPI00020035C1 DEAD DEAH box helicase domain protein, partial 9.37768277558e-06 5.38265556906e-05 4.4448872915e-05 +UniRef50_G8V2S6 Phage tail tape measure protein, TP901 family, core region 0.0186492027847 0.00222951384391 -0.0164196889408 +UniRef50_UPI0002D9142D hypothetical protein 0.000336699547803 8.62057993071e-05 -0.000250493748496 +UniRef50_T1XU00 0.0113457995076 0.000960578699671 -0.0103852208079 +UniRef50_F0P598 Aspartate aminotransferase, putative 0.0167455262412 0.00528996583824 -0.011455560403 +UniRef50_P04818 Thymidylate synthase 2.8353846465e-05 0.000168525831808 0.000140171985343 +UniRef50_UPI00039D1855 cytochrome C 0.000299102027024 7.24571336049e-05 -0.000226644893419 +UniRef50_P56111 Phosphogluconate dehydratase 0.000152411513494 0.00410383599449 0.003951424481 +UniRef50_D9XI44 2.40430475408e-05 0.000105962673696 8.19196261552e-05 +UniRef50_R1DBS1 1.53748855689e-06 7.64128783501e-06 6.10379927812e-06 +UniRef50_UPI000464EC64 glucan biosynthesis protein G 1.04854619577e-05 1.53911090598e-05 4.9056471021e-06 +UniRef50_A0RIF4 Branched chain alpha keto acid dehydrogenase E2 component 0.0150446608564 0.00754026568759 -0.00750439516881 +UniRef50_Q8E671 Protein SprT like 0.0017775381469 0.00159293946897 -0.00018459867793 +UniRef50_B9LNN2 AzlC family protein 2.58930174213e-05 1.23322799588e-05 -1.35607374625e-05 +UniRef50_B2I7A0 Malonyl CoA acyl carrier protein transacylase 0.000127099659549 0.00180922624346 0.00168212658391 +UniRef50_Q7NN36 Hemin import ATP binding protein HmuV 1.01187224891e-05 0.00211307837509 0.0021029596526 +UniRef50_X8CB66 6.62578880557e-05 0.00105993124824 0.000993673360184 +UniRef50_Q89ER2 Alkanesulfonate monooxygenase 0.00531913566699 0.00150802721704 -0.00381110844995 +UniRef50_Q74IP8 Ribonuclease 3 1.56818298413e-05 2.38864998147e-05 8.2046699734e-06 +UniRef50_J9P129 0.000288695116451 4.60586496547e-05 -0.000242636466796 +UniRef50_A8LKW8 Porin 1.02902567466e-05 3.08614734627e-05 2.05712167161e-05 +UniRef50_B4TWJ1 Transcriptional regulator NanR 0.00235043226693 0.000541362089226 -0.0018090701777 +UniRef50_A0A024G3T5 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192 1.80972373661e-05 1.92587043378e-05 1.1614669717e-06 +UniRef50_R9YPK7 Urea transporter 0.0229957427288 0.00323466359523 -0.0197610791336 +UniRef50_UPI0004732AD3 hypothetical protein, partial 7.7012992015e-05 2.83747735995e-05 -4.86382184155e-05 +UniRef50_UPI00036124D1 hypothetical protein, partial 2.76998239044e-05 0.000150152319142 0.000122452495238 +UniRef50_UPI0004634B11 hypothetical protein 7.3288443342e-05 3.14721588951e-05 -4.18162844469e-05 +UniRef50_A3PRE1 0.00708919300054 0.00167129887266 -0.00541789412788 +UniRef50_A5UP00 Methenyltetrahydromethanopterin cyclohydrolase 0.00349368636703 0.000480578676009 -0.00301310769102 +UniRef50_R4MF75 8.67627626656e-05 3.41373280936e-05 -5.2625434572e-05 +UniRef50_T2EEM8 Maltose operon periplasmic family protein 0.00124149988968 0.000224860435429 -0.00101663945425 +UniRef50_A1WWV9 tRNA specific 2 thiouridylase MnmA 4.13947121566e-06 7.93799355641e-06 3.79852234075e-06 +UniRef50_D5BQ57 0.000991632515868 0.000275194883365 -0.000716437632503 +UniRef50_UPI00047C3270 multidrug MFS transporter 1.58655772955e-05 2.01347511612e-05 4.2691738657e-06 +UniRef50_A1B476 Beta lactamase domain protein 0.0053309609499 0.00114915899632 -0.00418180195358 +UniRef50_Q47138 0.000763846060865 0.0011155181193 0.000351672058435 +UniRef50_UPI00046CD5BB hypothetical protein 1.66552569054e-05 0.000672150957439 0.000655495700534 +UniRef50_UPI0002FDE3EE hypothetical protein 2.74235676915e-06 0.000137144205232 0.000134401848463 +UniRef50_R0UE42 Filamentous hemagglutinin family N terminal domain protein 2.73606660158e-05 0.000221589866997 0.000194229200981 +UniRef50_UPI000362807B hypothetical protein, partial 1.13730969847e-05 1.72755839245e-05 5.9024869398e-06 +UniRef50_Q8DJB8 GTP cyclohydrolase 1 5.30065283816e-05 9.9105728059e-05 4.60991996774e-05 +UniRef50_A7FBY0 0.000391853967671 0.0110086154699 0.0106167615022 +UniRef50_L8E4A2 Macro domain containing protein lmo2759 1.76202532844e-05 2.72803797275e-05 9.6601264431e-06 +UniRef50_Q9RR65 Dihydrofolate reductase 0.00181806026101 0.0516701765456 0.0498521162846 +UniRef50_A5ULU4 Glutamyl tRNA reductase 0.00320190349779 0.000836333639531 -0.00236556985826 +UniRef50_UPI0002DBA9D3 50S ribosomal protein L25 0.000291149896074 8.62404878689e-05 -0.000204909408205 +UniRef50_D4HV65 UPF0380 protein yafZ 0.000227809195324 3.05214783759e-05 -0.000197287716948 +UniRef50_UPI000400F72F hypothetical protein 1.12589163553e-05 1.00183752921e-05 -1.2405410632e-06 +UniRef50_T1LB68 0.00134477543303 0.0006911833898 -0.00065359204323 +UniRef50_Z1HLQ0 Regulatory protein BlaR1 0.00657478475533 0.00162534238039 -0.00494944237494 +UniRef50_UPI0001FFE3E3 nitrogen regulatory protein P II, partial 2.28868480007e-05 0.000114060441959 9.11735939583e-05 +UniRef50_A5UMR6 GtrA like surface polysaccharide biosynthesis protein, GtrA 0.00113807440544 0.000946448072647 -0.000191626332793 +UniRef50_Q2S2A3 Methionine tRNA ligase 2.64754050284e-06 3.28916181413e-06 6.4162131129e-07 +UniRef50_K0H8G2 Metalloendopeptidase like membrane protein 0.000293382892887 0.00922096399885 0.00892758110596 +UniRef50_A5UMV3 Polysaccharide polyol phosphate ABC transporter, ATPase component 0.00417216517648 0.000108373102823 -0.00406379207366 +UniRef50_UPI0003FEC27D hypothetical protein 6.50246005844e-06 4.76132901463e-06 -1.74113104381e-06 +UniRef50_Q8VPR1 MC8 5.69333795722e-06 7.47174199856e-05 6.90240820284e-05 +UniRef50_I0C6S9 0.00113690934606 0.000904030730184 -0.000232878615876 +UniRef50_I0K4C6 Transcriptional regulator, BadM Rrf2 family 3.1853939806e-05 6.12667868923e-05 2.94128470863e-05 +UniRef50_A3PBD7 Probable malate 2.79248673104e-06 4.27684124035e-06 1.48435450931e-06 +UniRef50_UPI0003641518 hypothetical protein 4.93249766915e-06 2.62262353492e-05 2.12937376801e-05 +UniRef50_Q2T4S8 Arabinose import ATP binding protein AraG 2 1.1001919436e-05 7.34611023579e-06 -3.65580920021e-06 +UniRef50_S6GM17 4.3656487614e-05 7.77690751943e-06 -3.58795800946e-05 +UniRef50_UPI0003697D46 hypothetical protein 2.54816105604e-05 5.27795099698e-06 -2.02036595634e-05 +UniRef50_Q1I5V8 Ribonuclease 3 2.83204116967e-05 5.13959513004e-05 2.30755396037e-05 +UniRef50_UPI0003B4A430 CRISPR associated protein Cas3 6.4371056238e-05 8.83130790199e-06 -5.5539748336e-05 +UniRef50_T0CSQ2 Glycosyltransferase, group 1 family protein 0.00825861333289 0.00124414236929 -0.0070144709636 +UniRef50_A0A011NU60 Putative esterase of the alpha beta hydrolase fold protein 5.76289870085e-06 4.04573300903e-05 3.46944313894e-05 +UniRef50_P64566 0.00297794218708 0.00461552936804 0.00163758718096 +UniRef50_B2V9F3 Gamma glutamyl phosphate reductase 0.000240496400804 0.00895005012273 0.00870955372193 +UniRef50_Q6LU53 Nucleoside diphosphate kinase 0.000125585650652 5.7447426371e-05 -6.8138224281e-05 +UniRef50_UPI000367902D hypothetical protein 9.01378616154e-07 2.53910880939e-06 1.63773019324e-06 +UniRef50_UPI0003B4B7CD ATPase AAA 4.31940548017e-06 4.26204123281e-05 3.83010068479e-05 +UniRef50_Q8NUV3 0.000833230725443 0.000342377378524 -0.000490853346919 +UniRef50_A7FAY2 0.000147840465605 0.00628232788975 0.00613448742415 +UniRef50_U9HN69 0.000965592182606 0.000904964522989 -6.0627659617e-05 +UniRef50_A7FAY1 0.000664203932916 0.01286690724 0.0122027033071 +UniRef50_UPI000420B770 porin 0.000170466851592 2.55356672855e-05 -0.000144931184306 +UniRef50_UPI0004228484 hypothetical protein 6.77187684924e-05 5.73623940484e-05 -1.0356374444e-05 +UniRef50_P0AC97 Low affinity gluconate transporter 0.00249453648066 0.000316647549866 -0.00217788893079 +UniRef50_V9VVU4 Cyclopropane fatty acyl phospholipid synthase 0.0053389579192 0.000475627258122 -0.00486333066108 +UniRef50_A7FAY9 0.000170808139747 0.00991047535682 0.00973966721707 +UniRef50_UPI000394090D PREDICTED 6.40779197425e-06 0.000247542556069 0.000241134764095 +UniRef50_H4GDU5 Replication initiation family protein 2.35130251639e-05 9.46766806418e-05 7.11636554779e-05 +UniRef50_UPI00035944E9 2.95236090692e-06 6.42203511748e-06 3.46967421056e-06 +UniRef50_A5VYC6 GTPase Obg 0.00298941513357 0.00915837583941 0.00616896070584 +UniRef50_A0A035UC67 2.89915347124e-05 6.11000079703e-05 3.21084732579e-05 +UniRef50_Z4WLK7 2.5454264509e-05 0.000411297314864 0.000385843050355 +UniRef50_P0A9S4 Galactitol 1 phosphate 5 dehydrogenase 0.00378833843973 0.00120484607875 -0.00258349236098 +UniRef50_UPI000343F687 5.38822489882e-05 9.96277122366e-05 4.57454632484e-05 +UniRef50_UPI00035EEEBA hypothetical protein 1.60227349992e-05 5.89408898632e-05 4.2918154864e-05 +UniRef50_P76193 Probable L,D transpeptidase YnhG 0.00301404599613 0.00021018982576 -0.00280385617037 +UniRef50_I1QUG7 2.09640861681e-05 0.000102496629407 8.15325432389e-05 +UniRef50_P75672 0.00608611835938 0.00177663448449 -0.00430948387489 +UniRef50_Q67FX7 DeoK 0.00305497130716 0.00817132500065 0.00511635369349 +UniRef50_P75676 0.00574230624992 0.000261897493754 -0.00548040875617 +UniRef50_B9KUH1 0.00160669236583 0.000942035690517 -0.000664656675313 +UniRef50_B9KUH0 2.88112949447e-05 0.000335368414088 0.000306557119143 +UniRef50_W0PG73 5.11629038781e-06 1.84153964542e-05 1.32991060664e-05 +UniRef50_H8E0P5 Isopropylmalate isomerase small subunit 0.00313637122386 0.00111010239601 -0.00202626882785 +UniRef50_P09835 Sensor protein UhpB 0.00274312016114 0.000715571949819 -0.00202754821132 +UniRef50_Q4L8J6 Ribose 5 phosphate isomerase A 0.0213241647537 0.00608108638278 -0.0152430783709 +UniRef50_G4NYU6 Transcriptional regulator, PadR family 0.00228804360016 0.00238830479426 0.0001002611941 +UniRef50_UPI000423B599 rod shape determining protein MreB 5.3361404481e-05 1.29200093073e-05 -4.04413951737e-05 +UniRef50_Q9RWX1 0.000673062125786 0.0352161619999 0.0345430998741 +UniRef50_L9PQ51 Beta lactamase domain containing protein 4.74802592756e-05 1.31297450269e-05 -3.43505142487e-05 +UniRef50_Q9RWX5 9.35142829476e-05 0.0548065437314 0.0547130294485 +UniRef50_A9KV03 Two component transcriptional regulator, winged helix family 0.0013952783194 0.000295809721398 -0.001099468598 +UniRef50_Q9RWX7 0.000202942061746 0.0570156631625 0.0568127211008 +UniRef50_Q9RWX8 0.000488768316632 0.0323259101218 0.0318371418052 +UniRef50_UPI00036FA720 hypothetical protein 6.76687701674e-05 8.6591793544e-05 1.89230233766e-05 +UniRef50_A5VYK1 Beta lactamase domain protein 0.00037695150538 0.000754973830792 0.000378022325412 +UniRef50_Q9RVJ1 Branched chain amino acid ABC transporter, permease protein 0.000106634460129 0.0355595659276 0.0354529314675 +UniRef50_W8S1V4 ABC type dipeptide transport system, periplasmic component 2.83628565157e-05 1.67164188834e-05 -1.16464376323e-05 +UniRef50_A9U7M5 Predicted protein 7.30734659245e-05 3.78220386206e-06 -6.92912620624e-05 +UniRef50_F0PDK0 1.82420327848e-05 0.00194926161795 0.00193101958517 +UniRef50_E8SF44 Chitinase B 0.0143632080155 0.00253050505703 -0.0118327029585 +UniRef50_UPI0003645B24 hypothetical protein 6.31854887334e-06 9.44225470738e-06 3.12370583404e-06 +UniRef50_K2EQR3 Toluene tolerance protein Ttg2B 2.80465416973e-05 5.25182027041e-05 2.44716610068e-05 +UniRef50_W3RJU2 3.85387607485e-06 1.86827433481e-05 1.48288672733e-05 +UniRef50_UPI000287E9BE thymidylate synthase 0.000105906548933 0.000458724539788 0.000352817990855 +UniRef50_UPI0004746A8A ammonia channel protein, partial 2.2892353547e-05 3.8407897002e-05 1.5515543455e-05 +UniRef50_P0AGB1 Phosphoserine phosphatase 0.00503507427588 0.00105963735911 -0.00397543691677 +UniRef50_UPI0004669E93 hypothetical protein, partial 4.15918874596e-05 1.77647149102e-05 -2.38271725494e-05 +UniRef50_Q5HQK2 Glycerophosphoryl diester phosphodiesterase GlpQ, putative 0.0213542328792 0.00346839485824 -0.017885838021 +UniRef50_UPI000464A474 quinone oxidoreductase 7.48156859629e-06 0.000177169620501 0.000169688051905 +UniRef50_UPI00047AB5CC aryl phospho beta D glucosidase 4.60667672673e-06 2.45444074515e-05 1.99377307248e-05 +UniRef50_U7PP10 3.22648245359e-05 0.000101472472332 6.92076477961e-05 +UniRef50_Q02QX6 Phospholipase D 0.000896449766574 0.000480755758051 -0.000415694008523 +UniRef50_B0SZ50 NADH quinone oxidoreductase subunit C 2.71103453326e-05 2.31509963257e-05 -3.9593490069e-06 +UniRef50_A1B541 0.000250541924799 9.34202125974e-05 -0.000157121712202 +UniRef50_UPI0000165EE8 hypothetical protein DR_A0025 1.62440558687e-05 0.00711639824143 0.00710015418556 +UniRef50_K0P5L7 Transposase IS4 family protein 4.60260214296e-06 1.93061576865e-05 1.47035555435e-05 +UniRef50_W7LA83 1.14287904974e-05 0.000537733514625 0.000526304724128 +UniRef50_UPI0003FF921B hypothetical protein 0.000391813438564 8.18433717949e-05 -0.000309970066769 +UniRef50_UPI0003453247 hypothetical protein 2.81375731532e-06 8.26238039937e-06 5.44862308405e-06 +UniRef50_P0C5W5 Transposase InsD for insertion element IS2A D F H I K 0.0100252672586 0.00515354734406 -0.00487171991454 +UniRef50_C9A9S2 0.00399389132747 0.000891741024771 -0.0031021503027 +UniRef50_Q05207 Protein translocase subunit SecY 0.0242414119776 0.00829152675134 -0.0159498852263 +UniRef50_A6LRQ1 Ubiquitin associated domain containing protein 0.000822113754382 0.00116381581644 0.000341702062058 +UniRef50_F2QW98 Tricalbin 2 3.18822625684e-05 4.98565062176e-05 1.79742436492e-05 +UniRef50_Q9K1G3 Ribosomal RNA small subunit methyltransferase G 3.10948538312e-05 0.00498913123432 0.00495803638049 +UniRef50_D4HEV9 4.18248123427e-05 0.000461549857635 0.000419725045292 +UniRef50_D4HEV8 0.00108042146364 0.00621725039158 0.00513682892794 +UniRef50_D4HEV4 0.00103895226289 0.00586788837237 0.00482893610948 +UniRef50_UPI00037EE4CD hypothetical protein 1.11138329524e-05 2.38988985803e-05 1.27850656279e-05 +UniRef50_A6W3N1 Phosphate ABC transporter, inner membrane subunit PstA 0.00110938983346 0.00117356478892 6.417495546e-05 +UniRef50_U5MQ20 0.000941085986506 0.0020779011986 0.00113681521209 +UniRef50_P50059 Superoxide dismutase [Mn] 2 1.63182683193e-05 8.72467796718e-05 7.09285113525e-05 +UniRef50_G0AAC6 3.91851037267e-05 1.73831955363e-05 -2.18019081904e-05 +UniRef50_UPI000440A67E hypothetical protein STEHIDRAFT_153002 3.87051956045e-06 2.09804570106e-05 1.71099374501e-05 +UniRef50_R1F8H0 4.36213320985e-06 0.000301588108581 0.000297225975371 +UniRef50_Q9RVD6 Tryptophan tRNA ligase 2 0.00400036576191 0.0116588399444 0.00765847418249 +UniRef50_Q97R65 Dihydroorotate dehydrogenase B ), catalytic subunit 2.04376210229e-05 0.00358563354907 0.00356519592805 +UniRef50_UPI0003B4E783 hypothetical protein 7.57807493154e-06 1.05967720245e-05 3.01869709296e-06 +UniRef50_UPI000360793F hypothetical protein 0.00010532583913 6.76790493422e-05 -3.76467897878e-05 +UniRef50_O06941 Protein GrpE 0.00453143152139 0.00469697341333 0.00016554189194 +UniRef50_Q9K0V4 Ribosomal RNA large subunit methyltransferase L 0.000165322330884 0.0034986877324 0.00333336540152 +UniRef50_UPI000476FB1B hypothetical protein 1.0021726128e-05 5.05003659103e-06 -4.97168953697e-06 +UniRef50_A0A014LMK6 Acetate CoA ligase 0.000266436372174 0.0053316610368 0.00506522466463 +UniRef50_UPI00042C3977 PREDICTED 1.49968632743e-05 2.68540203807e-05 1.18571571064e-05 +UniRef50_Q896L1 Magnesium protoporphyrin IX monomethyl ester oxidative cyclase 0.00015926064829 0.00151336391037 0.00135410326208 +UniRef50_Q3IRZ6 Urease subunit beta 5.02471571902e-05 3.98211447457e-05 -1.04260124445e-05 +UniRef50_B7UZP4 0.00107221755979 0.000418888943548 -0.000653328616242 +UniRef50_Q8RQL9 Isocitrate dehydrogenase [NADP] 0.00105270741589 0.00029716837491 -0.00075553904098 +UniRef50_I0C190 Nitrogen regulation protein NIFR3 0.000453730653816 6.43247811272e-05 -0.000389405872689 +UniRef50_UPI0004764B37 phosphoglyceromutase 1.28438085382e-05 1.7939471246e-05 5.0956627078e-06 +UniRef50_C6BBB4 Ammonium transporter 0.0060321665637 0.00195203154396 -0.00408013501974 +UniRef50_U5MV95 0.000138611746215 0.000833205058303 0.000694593312088 +UniRef50_A1SWH9 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00361754302438 0.0409124140928 0.0372948710684 +UniRef50_I2FG31 Transposase 0.00150511837172 0.000308080880347 -0.00119703749137 +UniRef50_UPI000329A113 8.43948936652e-06 1.11445132704e-05 2.70502390388e-06 +UniRef50_K2AFG9 0.000734497456935 0.000125045887866 -0.000609451569069 +UniRef50_Q3IV13 Radical SAM superfamily protein 0.0265147700768 0.00434815836549 -0.0221666117113 +UniRef50_P44875 Acetate CoA transferase subunit alpha 4.16810820686e-05 0.000571189945296 0.000529508863227 +UniRef50_R7PYU4 Predicted glycosyltransferase GT1 family 0.00398973734276 0.000296148602827 -0.00369358873993 +UniRef50_B0RZT0 Adenylate kinase 1.78529212468e-05 2.36669527292e-05 5.8140314824e-06 +UniRef50_P77529 0.00284268627407 0.00175910898203 -0.00108357729204 +UniRef50_A3PS98 Transcriptional regulator, GntR family 0.021485289554 0.00584210017551 -0.0156431893785 +UniRef50_A5UN97 0.000555713282722 0.000446322476372 -0.00010939080635 +UniRef50_Q6KHP5 Glucose 1 phosphate adenylyltransferase 8.00787185666e-06 1.64415213911e-05 8.43364953444e-06 +UniRef50_D4HDX4 8.73136442954e-05 0.00326111232968 0.00317379868538 +UniRef50_A5IVQ1 Diaminopimelate epimerase like protein 0.0288083917514 0.0079777948963 -0.0208305968551 +UniRef50_B4RI59 Putative ChaX protein 0.000264512645487 0.000250127498162 -1.4385147325e-05 +UniRef50_UPI00035F5713 hypothetical protein 6.57024285552e-05 6.23980905267e-06 -5.94626195025e-05 +UniRef50_A0A038FN38 Sulfonate binding protein 1.01722374018e-05 3.04958658948e-05 2.0323628493e-05 +UniRef50_J3NQ90 0.000288792639077 0.000132635225021 -0.000156157414056 +UniRef50_I3YR32 Nitroreductase like oxidoreductase 0.000803809735129 0.00498049260173 0.0041766828666 +UniRef50_H1ZV37 Geranial dehydrogenase 6.66486311487e-06 9.59446394946e-06 2.92960083459e-06 +UniRef50_UPI000455F234 alcohol oxidase 2.33753218424e-06 3.18887142826e-06 8.5133924402e-07 +UniRef50_Q9RYZ6 Phosphate binding protein 0.000341906559364 0.0434365082806 0.0430946017212 +UniRef50_Q1IZI8 Uridylate kinase 0.0212069719897 0.0336388067118 0.0124318347221 +UniRef50_A3MA07 0.000196949211577 0.0110825722583 0.0108856230467 +UniRef50_Q5DY13 Lateral flagellar rod protein 0.000318106170376 0.000452882033134 0.000134775862758 +UniRef50_P20186 1.92141542836e-05 0.000391013507521 0.000371799353237 +UniRef50_UPI00037D4D8D hypothetical protein 0.00152354705411 0.00105470251856 -0.00046884453555 +UniRef50_Q7NK24 Phosphoadenosine phosphosulfate reductase 9.83703970743e-06 1.28356271481e-05 2.99858744067e-06 +UniRef50_Q8TXN1 Chorismate synthase 0.00361611470529 5.55855327978e-05 -0.00356052917249 +UniRef50_W0E8G5 1.15907869334e-05 6.33063077582e-06 -5.26015615758e-06 +UniRef50_UPI00035D319D hypothetical protein, partial 2.97875525196e-06 0.000533043359689 0.000530064604437 +UniRef50_A6LUF3 Histidinol phosphate aminotransferase 0.000158164520469 0.0008446352694 0.000686470748931 +UniRef50_Q89UV8 Immunogenic protein 0.0119122050099 0.00280872315848 -0.00910348185142 +UniRef50_B7UVV3 Dihydroorotase 0.000715594344417 0.000686264645788 -2.9329698629e-05 +UniRef50_UPI000395D90C PREDICTED 3.98670697329e-06 5.11942900593e-06 1.13272203264e-06 +UniRef50_UPI00046CED3A O sialoglycoprotein endopeptidase 6.70430111077e-06 5.26773928788e-06 -1.43656182289e-06 +UniRef50_Q1IAK7 Histidine decarboxylase 9.83036429352e-05 0.0050774463313 0.00497914268836 +UniRef50_Q1IYS1 Carboxynorspermidine decarboxylase 0.000215003643526 0.00103240487771 0.000817401234184 +UniRef50_C1AU54 UDP N acetylmuramate L alanine ligase 3.84957144358e-06 5.29682588068e-06 1.4472544371e-06 +UniRef50_Q03470 DNA gyrase subunit A 2.10193850532e-06 0.00325601759165 0.00325391565314 +UniRef50_C4RE96 Diguanylate cyclase with GAF sensor 0.000289533757893 0.000641492953141 0.000351959195248 +UniRef50_Q9F4G3 HTH type transcriptional regulator TcaR 0.0332584265113 0.0446061101296 0.0113476836183 +UniRef50_P0AFR5 0.0023505384986 0.00415211676779 0.00180157826919 +UniRef50_UPI0004630051 hypothetical protein 4.32344342892e-06 1.38495823663e-05 9.52613893738e-06 +UniRef50_UPI0004641B3A hypothetical protein 4.49684601221e-05 5.21753981277e-06 -3.97509203093e-05 +UniRef50_UPI000377D7B1 ABC transporter 1.30473276215e-05 7.28176777198e-06 -5.76555984952e-06 +UniRef50_Q9EXI7 P 14 protein 5.71617838757e-05 2.68309952106e-05 -3.03307886651e-05 +UniRef50_O68926 Bacterioferritin 0.0134601290577 0.0009523991235 -0.0125077299342 +UniRef50_F1AXC6 PP241 8.19946263558e-05 0.000579978368818 0.000497983742462 +UniRef50_D4HF95 Transcriptional regulator, DeoR family 0.000371297693954 0.00220958555079 0.00183828785684 +UniRef50_C1A2V7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.29238171748e-05 7.1129800856e-05 8.2059836812e-06 +UniRef50_UPI000174615B methionine synthase 1.13597441728e-05 2.68206115918e-05 1.5460867419e-05 +UniRef50_P75851 Putative aliphatic sulfonates transport permease protein SsuC 0.00446900760337 0.000847033956834 -0.00362197364654 +UniRef50_UPI000466704B hypothetical protein, partial 1.51990168172e-05 1.69075317189e-06 -1.35082636453e-05 +UniRef50_B2EBP0 3.15695532017e-05 0.000201954627818 0.000170385074616 +UniRef50_UPI0003605AF8 hypothetical protein 4.16191983255e-05 9.982953022e-06 -3.16362453035e-05 +UniRef50_Q6AAR3 L threonine 3 dehydrogenase 0.000223268649228 0.00638901786827 0.00616574921904 +UniRef50_C5AJH9 Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein 0.00077905095874 0.000191971856025 -0.000587079102715 +UniRef50_F9MSP3 HD domain protein 1.43042944038e-05 9.53256226052e-06 -4.77173214328e-06 +UniRef50_P76103 Inner membrane protein YdcO 0.00222300306536 0.000164369223673 -0.00205863384169 +UniRef50_UPI0002BA1B2C glutathione regulated potassium efflux system protein KefB 1.96410503723e-05 2.29978808985e-05 3.3568305262e-06 +UniRef50_A6M1S5 Transcriptional regulator, AraC family 0.00106055914379 0.000492149440026 -0.000568409703764 +UniRef50_UPI0003A01203 hypothetical protein 6.39140889736e-06 7.02683163944e-06 6.3542274208e-07 +UniRef50_P39836 0.00241643168422 0.000908820968389 -0.00150761071583 +UniRef50_R5TC97 0.000666860564316 0.00212461914781 0.00145775858349 +UniRef50_P39834 0.00569748775618 0.000600644146164 -0.00509684361002 +UniRef50_P0AE14 Protein AmpE 0.00176474650751 0.000958544077683 -0.000806202429827 +UniRef50_E1M0K3 N acetyl glucosamine matabolism 3.23025793368e-05 2.23742369042e-05 -9.9283424326e-06 +UniRef50_UPI0004746698 hypothetical protein, partial 2.24435077049e-05 2.76341406543e-05 5.1906329494e-06 +UniRef50_Q49Y24 Heat inducible transcription repressor HrcA 0.018058498343 0.00325392560026 -0.0148045727427 +UniRef50_A5N6G6 Phosphate propanoyltransferase 0.000202224636884 0.00147720231117 0.00127497767429 +UniRef50_W1XPB9 4.752911469e-05 0.000177621610261 0.000130092495571 +UniRef50_UPI00028A201E LuxR family transcriptional regulator 0.000184408345397 2.25314233431e-05 -0.000161876922054 +UniRef50_UPI0003F914BA DEAD DEAH box helicase 2.01607818093e-06 6.34533320658e-05 6.14372538849e-05 +UniRef50_P76349 0.00188971289084 0.00072797167638 -0.00116174121446 +UniRef50_S7UZQ5 0.000121916196727 0.000121736170272 -1.80026455e-07 +UniRef50_A1TZQ0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 7.9543075008e-06 1.5384926262e-05 7.4306187612e-06 +UniRef50_UPI000368871C hypothetical protein 4.70376730384e-05 5.10940112794e-05 4.056338241e-06 +UniRef50_UPI0004703E16 hypothetical protein 4.69845160276e-05 2.95590428756e-05 -1.7425473152e-05 +UniRef50_B9JR02 0.000228868655391 2.32065406847e-05 -0.000205662114706 +UniRef50_UPI00035CD59F DNA binding protein 0.000279504409643 0.000158130661684 -0.000121373747959 +UniRef50_A0A024C1C5 0.00014489186566 0.00771341085464 0.00756851898898 +UniRef50_G9RS55 2.17274677144e-05 1.37131457473e-05 -8.0143219671e-06 +UniRef50_A7IDP6 Glutamine amidotransferase class I 0.0049340312349 0.000289526181564 -0.00464450505334 +UniRef50_Q5LHZ1 N acetyl gamma glutamyl phosphate reductase 7.49516335782e-05 3.03356881693e-05 -4.46159454089e-05 +UniRef50_F2DS64 Predicted protein 5.05056330883e-06 1.69710781388e-05 1.192051483e-05 +UniRef50_C4ZF78 Orotate phosphoribosyltransferase 0.000906211568661 0.000559980016127 -0.000346231552534 +UniRef50_Q9FNJ8 Arogenate dehydratase 5, chloroplastic 8.79340802478e-05 2.33438558651e-05 -6.45902243827e-05 +UniRef50_E4PLJ2 Protein containing DUF1857 4.2063438778e-05 3.97794524292e-05 -2.2839863488e-06 +UniRef50_Q8DWA1 0.00398754168064 0.000811279645925 -0.00317626203471 +UniRef50_Q9RY02 0.000154075913818 0.0191806280784 0.0190265521646 +UniRef50_UPI000377338C hypothetical protein 1.85038340325e-05 4.24007289656e-05 2.38968949331e-05 +UniRef50_UPI00034A10DE MULTISPECIES 0.000104132661485 0.00158383046207 0.00147969780058 +UniRef50_Q9RY09 7.78321626536e-05 0.0525926811499 0.0525148489872 +UniRef50_Q6FE61 NADH dehydrogenase I chain L 0.00439743968009 0.00884215587778 0.00444471619769 +UniRef50_G7U705 Efflux ABC transporter, permease protein 0.000151600798739 0.0045771046753 0.00442550387656 +UniRef50_Q2NXY9 2 keto 3 deoxygluconate permease 0.00175413494699 0.00117456501152 -0.00057956993547 +UniRef50_UPI000308C80D ATP cobalamin adenosyltransferase 3.0376833421e-05 5.10426183232e-05 2.06657849022e-05 +UniRef50_UPI00036CA62E hypothetical protein 5.26054576797e-05 1.28115760654e-05 -3.97938816143e-05 +UniRef50_Q8DWA4 0.00560554977894 0.00149506144483 -0.00411048833411 +UniRef50_Q2NI43 Predicted transcriptional regulator 0.00215130016522 0.00112145584252 -0.0010298443227 +UniRef50_A6TXC8 Nucleoid associated protein Amet_4780 0.00880800640655 0.00117824667255 -0.007629759734 +UniRef50_D3PYT6 LigA 0.000189115506523 0.000142995933387 -4.6119573136e-05 +UniRef50_P11988 6 phospho beta glucosidase BglB 0.00281451173166 0.000666271943544 -0.00214823978812 +UniRef50_Q21YW0 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.06841523874e-05 1.20132784876e-05 1.3291261002e-06 +UniRef50_D1YVK2 0.00128114492418 0.000739491307557 -0.000541653616623 +UniRef50_UPI00037CAA58 hypothetical protein 1.25319562495e-05 0.000101954218055 8.94222618055e-05 +UniRef50_E4SZ07 Alcohol dehydrogenase Acetaldehyde dehydrogenase 0.00641047743206 0.00347308136009 -0.00293739607197 +UniRef50_UPI0003B5954D TetR family transcriptional regulator 0.000239664904957 9.89047892217e-05 -0.000140760115735 +UniRef50_F8LW56 0.000194089972088 0.000128767139724 -6.5322832364e-05 +UniRef50_A5IT13 0.019420337191 0.00321040158581 -0.0162099356052 +UniRef50_P24555 Protease 2 0.0022179582456 0.000513517493638 -0.00170444075196 +UniRef50_A0A010JG94 MATE efflux family protein 0.000304517114465 0.00820184523429 0.00789732811982 +UniRef50_UPI0003C1B314 PREDICTED 0.000128348896424 2.29397670715e-05 -0.000105409129353 +UniRef50_Q1QH83 Carbohydrate ABC transporter substrate binding protein, CUT1 family 6.97135946614e-06 3.56034083206e-06 -3.41101863408e-06 +UniRef50_R4VNN3 0.00819112524916 0.00626855566828 -0.00192256958088 +UniRef50_UPI000443497D PREDICTED 4.98317027094e-06 7.07237035247e-05 6.57405332538e-05 +UniRef50_B3X836 D xylose ABC transporter, ATP binding protein 0.000833177276995 0.000122368800494 -0.000710808476501 +UniRef50_A0A029HJU3 CRISPR associated helicase Cas3 9.40092713443e-05 1.11407471319e-05 -8.28685242124e-05 +UniRef50_Q9HVD1 Lipid A deacylase PagL 0.00172814394896 0.00148064335453 -0.00024750059443 +UniRef50_UPI000462CF76 hypothetical protein, partial 7.6947215425e-05 0.000637731153259 0.000560783937834 +UniRef50_Q9RXH9 Lipase, putative 0.000210784383954 0.0391661489164 0.0389553645324 +UniRef50_Q9S358 Anthranilate synthase component 1 0.000260782549038 0.00845200646296 0.00819122391392 +UniRef50_C6CE95 UPF0115 protein Dd1591_1343 0.00243668666401 0.000457855356899 -0.00197883130711 +UniRef50_Q1YIY5 0.000201688669669 0.000444737349611 0.000243048679942 +UniRef50_U6EC46 NusA family KH domain containing protein 0.00464404513881 0.00126564302227 -0.00337840211654 +UniRef50_UPI0004659C6E hypothetical protein 1.41837521352e-05 0.00023127775024 0.000217093998105 +UniRef50_A7FHL7 Anhydro N acetylmuramic acid kinase 0.000407636138294 0.000189710945528 -0.000217925192766 +UniRef50_Q5LZ68 Ribonuclease 3 0.00947898870324 0.00719354303079 -0.00228544567245 +UniRef50_A4G0N3 Probable tRNA pseudouridine synthase B 0.00361546828679 0.00166437938319 -0.0019510889036 +UniRef50_A6LS09 PTS system fructose subfamily IIA component 0.000540580441109 0.00042188100743 -0.000118699433679 +UniRef50_Q7WDY0 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.000730588105822 0.0038973246981 0.00316673659228 +UniRef50_U1S1M7 2.38856801173e-05 0.00231986498839 0.00229597930827 +UniRef50_UPI0003F0C550 PREDICTED 2.40027445056e-05 2.58088030129e-05 1.8060585073e-06 +UniRef50_UPI00041A8363 LamB YcsF family protein 0.0001347591247 1.15191225169e-05 -0.000123240002183 +UniRef50_UPI000368F174 hypothetical protein 5.00583334817e-06 2.97331397103e-06 -2.03251937714e-06 +UniRef50_Q216H0 Phosphomethylpyrimidine synthase 1.57071132903e-06 5.32402206858e-06 3.75331073955e-06 +UniRef50_W6MC79 2.01726625277e-05 0.00066443527726 0.000644262614732 +UniRef50_UPI000444A627 hypothetical protein STEHIDRAFT_83294 2.09798390548e-06 3.79908732481e-06 1.70110341933e-06 +UniRef50_UPI00046F6DE4 hypothetical protein, partial 1.26087363561e-05 2.24559661389e-05 9.8472297828e-06 +UniRef50_Q8ZQ16 Ribosomal large subunit pseudouridine synthase C 0.00212377850328 0.000473074341638 -0.00165070416164 +UniRef50_W7TU75 0.000111682245224 1.12221248572e-05 -0.000100460120367 +UniRef50_P52123 0.00184986806261 0.00171558197687 -0.00013428608574 +UniRef50_P52126 0.00307844920532 0.00067130866365 -0.00240714054167 +UniRef50_P52127 0.00233782530982 0.00115205440456 -0.00118577090526 +UniRef50_P52124 0.00188081002821 0.000803738338836 -0.00107707168937 +UniRef50_P52125 0.00103847791253 0.000387724339418 -0.000650753573112 +UniRef50_P0C0Q4 Extracellular elastase 0.0135288171468 0.00412272935007 -0.00940608779673 +UniRef50_Q4L565 Probable quinol oxidase subunit 2 0.0104696449092 0.00147636614347 -0.00899327876573 +UniRef50_A4WP12 Ribosomal RNA small subunit methyltransferase E 0.000146312398781 0.000238800570243 9.2488171462e-05 +UniRef50_Q7NL20 1,4 alpha glucan branching enzyme GlgB 2.36567967614e-06 6.4365006629e-06 4.07082098676e-06 +UniRef50_B9KP74 Branched chain amino acid aminotransferase 0.00749168225114 0.00156206519884 -0.0059296170523 +UniRef50_Q53212 Putative peroxiredoxin y4vD 0.00769220698926 0.00133170570717 -0.00636050128209 +UniRef50_A1KV38 Ribonuclease H 5.89582173041e-05 2.94020550489e-05 -2.95561622552e-05 +UniRef50_A6LPL8 0.000115087191723 0.00355156703418 0.00343647984246 +UniRef50_UPI0004725A0F hypothetical protein 8.66209218976e-06 1.33126115805e-05 4.65051939074e-06 +UniRef50_UPI0003B7A3D3 ABC transporter 9.53521075902e-06 5.48367998409e-05 4.53015890819e-05 +UniRef50_Q4FNE4 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.3067174706e-05 2.97081088729e-05 1.66409341669e-05 +UniRef50_A4XZN0 Acetate CoA transferase YdiF 0.00219656202779 0.00745699555574 0.00526043352795 +UniRef50_UPI000368346E hypothetical protein 2.02834506414e-05 9.85638081962e-06 -1.04270698218e-05 +UniRef50_UPI00036B1EA9 hypothetical protein 5.43219826884e-07 3.81721058615e-06 3.27399075927e-06 +UniRef50_Q8YC19 Transposase 6.12064556986e-06 1.00408026586e-05 3.92015708874e-06 +UniRef50_J7L8P7 TRAP transporter solute receptor, TAXI family protein 4.15149693857e-05 4.35447544895e-05 2.0297851038e-06 +UniRef50_UPI00036DFF4F hypothetical protein 4.35285957724e-05 2.85777315348e-05 -1.49508642376e-05 +UniRef50_O32220 Copper exporting P type ATPase A 0.0138673190416 0.00394434658861 -0.00992297245299 +UniRef50_G8W9Y6 0.0158101054377 0.0130445403494 -0.0027655650883 +UniRef50_K3KRS9 Sulfurtransferase 0.000696952720578 0.00085117448384 0.000154221763262 +UniRef50_M1MQ23 Pseudaminic acid biosynthesis associated protein PseG 0.00022632300922 0.00119052380454 0.00096420079532 +UniRef50_B7VB85 Glutamine tRNA ligase 0.000679001221707 0.000426118141042 -0.000252883080665 +UniRef50_UPI000474892A acetyl CoA acetyltransferase 1.02478829327e-05 3.43890035044e-05 2.41411205717e-05 +UniRef50_J4GJ09 1.31511231356e-05 4.98347773874e-05 3.66836542518e-05 +UniRef50_T8KWL4 4.06339602003e-05 4.81876177275e-05 7.5536575272e-06 +UniRef50_Q9HXN1 Membrane bound lytic murein transglycosylase F 0.000535989871558 0.000853258940805 0.000317269069247 +UniRef50_M2C918 4.66712767272e-06 9.35854216691e-06 4.69141449419e-06 +UniRef50_A0A059ILG7 6.58281913531e-05 2.72007539688e-05 -3.86274373843e-05 +UniRef50_W8X8B8 LemA family protein 2.65091445864e-05 1.23587750057e-05 -1.41503695807e-05 +UniRef50_UPI0001D62167 PREDICTED 4.34417904005e-06 3.20704755071e-05 2.7726296467e-05 +UniRef50_Q5L1U1 3 oxoacyl [acyl carrier protein] synthase 3 0.000150385700739 0.00104393103267 0.000893545331931 +UniRef50_R3JX77 Tandem lipoprotein 1.21061314661e-05 1.68871198003e-05 4.7809883342e-06 +UniRef50_UPI0003A1637C pseudouridine synthase 1.43354572123e-06 1.15519099891e-05 1.01183642679e-05 +UniRef50_A0A011QIR3 4.29364657881e-05 4.57213543237e-05 2.7848885356e-06 +UniRef50_B1YMC1 Metallophosphoesterase 1.21163879567e-05 1.63648029484e-05 4.2484149917e-06 +UniRef50_X7ECM7 0.00110590613049 0.000151524237915 -0.000954381892575 +UniRef50_C4ZZ24 ATPase RavA 0.00205214987763 0.000834735845633 -0.001217414032 +UniRef50_A3V382 0.000642701522073 0.000652581993071 9.880470998e-06 +UniRef50_P76389 UPF0053 protein YegH 0.00290643877615 0.000994984225967 -0.00191145455018 +UniRef50_C3K789 0.000298801574284 0.00367243067673 0.00337362910245 +UniRef50_Q6A6X6 Methionine import ATP binding protein MetN 5.72618184291e-06 0.00458672835819 0.00458100217635 +UniRef50_K0B4J3 Uroporphyrin III C methyltransferase HemD 9.30532429341e-05 0.00195898026351 0.00186592702058 +UniRef50_UPI0003674EE1 hypothetical protein 7.59432646663e-05 5.05325287345e-05 -2.54107359318e-05 +UniRef50_UPI00036AFCF0 hypothetical protein 4.38988486352e-05 9.11309385136e-06 -3.47857547838e-05 +UniRef50_UPI00047853C3 hypothetical protein 0.000105822911272 2.72009771573e-06 -0.000103102813556 +UniRef50_UPI00047B85B2 hypothetical protein, partial 0.000208023084776 6.75096272765e-05 -0.000140513457499 +UniRef50_A4WVR4 0.00189171191715 0.000180224466069 -0.00171148745108 +UniRef50_Q213K6 Leucyl phenylalanyl tRNA protein transferase 0.00912001060344 0.00308205667871 -0.00603795392473 +UniRef50_UPI0003474DF5 carbon monoxide dehydrogenase 0.000227128433087 9.00934219658e-05 -0.000137035011121 +UniRef50_C8RZX1 0.00012971740702 0.000108801381811 -2.0916025209e-05 +UniRef50_UPI00032B0880 PREDICTED 2.2366106264e-05 4.54395803347e-05 2.30734740707e-05 +UniRef50_A5UJV9 Adhesin like protein 0.00337133170245 0.00166472460246 -0.00170660709999 +UniRef50_S9TE19 Proteophosphoglycan ppg4 4.87814958444e-05 1.87138204936e-05 -3.00676753508e-05 +UniRef50_I0C4G8 Glycosyltransferase 0.0196653148793 0.00716375521555 -0.0125015596638 +UniRef50_V5WWK4 Glycine betaine ABC transporter permease 0.000185953689091 0.000694862835762 0.000508909146671 +UniRef50_E6LGM1 4.46686250019e-05 5.19486737123e-05 7.2800487104e-06 +UniRef50_Q9RXB0 Alpha dextran endo 1,6 alpha glucosidase 9.79299869344e-05 0.0146463801117 0.0145484501248 +UniRef50_Q3IVA1 Translation initiation factor 2, gamma subunit, GTPase 0.0459450590166 0.00180180959921 -0.0441432494174 +UniRef50_A8FQE6 Radical SAM domain protein 0.00059713831156 0.00104647869069 0.00044934037913 +UniRef50_UPI0001913051 prolipoprotein diacylglyceryl transferase, partial 3.46279205204e-05 2.34858727296e-05 -1.11420477908e-05 +UniRef50_UPI000479F065 hypothetical protein 2.71286435317e-05 7.18522686875e-06 -1.9943416663e-05 +UniRef50_I7EDR9 TonB dependent receptor 0.000864125333459 0.056217445116 0.0553533197825 +UniRef50_UPI00036EC80A hypothetical protein 2.197157485e-05 6.62261183158e-06 -1.53489630184e-05 +UniRef50_UPI00022CAA5E PREDICTED 2.61490868123e-05 2.43188255041e-06 -2.37172042619e-05 +UniRef50_V8X5Y2 0.000346589413413 4.95708355188e-05 -0.000297018577894 +UniRef50_UPI0003B3D29A ATP dependent protease 2.49418215376e-05 3.17901481684e-05 6.8483266308e-06 +UniRef50_C6SJR7 6.52045964546e-05 4.65493011965e-05 -1.86552952581e-05 +UniRef50_U5UKU3 Membrane associated protein 0.00688229031902 0.00293655344252 -0.0039457368765 +UniRef50_M7A685 0.000230542508749 6.67698568746e-05 -0.000163772651874 +UniRef50_R1DWZ6 3.45662932904e-05 1.69174852267e-05 -1.76488080637e-05 +UniRef50_E2ZTH3 Putative membrane protein 0.000212529303263 8.13058503556e-05 -0.000131223452907 +UniRef50_A9BEV2 Protein RecA 0.000770971699111 0.0351486972826 0.0343777255835 +UniRef50_P78283 Protein translocase subunit SecY 0.00280542654437 0.0125578971215 0.00975247057713 +UniRef50_E7MXD2 Rhodanese like protein 0.00683686950706 0.000806919238892 -0.00602995026817 +UniRef50_UPI00046B96B5 PREDICTED 6.46359682911e-05 1.53280881501e-05 -4.9307880141e-05 +UniRef50_A0A014LBA0 Transposase 1.35834382169e-05 0.00028530810697 0.000271724668753 +UniRef50_D7BLK7 Sugar transporter 0.000442432708837 0.0138724854378 0.013430052729 +UniRef50_Q5HJZ6 Plasmid recombination enzyme type 3 0.740800531361 0.244512495215 -0.496288036146 +UniRef50_Q2RKZ7 Glutamate 5 kinase 1.02240166529e-05 1.46015516989e-05 4.377535046e-06 +UniRef50_UPI0003B48512 ABC transporter substrate binding protein 1.71648073527e-05 5.64742465462e-05 3.93094391935e-05 +UniRef50_UPI000255BACE patatin 4.78174000641e-06 1.60885698862e-05 1.13068298798e-05 +UniRef50_UPI0004446091 PREDICTED 1.55078193737e-07 2.42316800842e-07 8.7238607105e-08 +UniRef50_R4Z5X8 1.18814500275e-05 1.57018823401e-05 3.8204323126e-06 +UniRef50_Q9ZJG8 Membrane protein insertase YidC 0.000754882768083 0.00330047365863 0.00254559089055 +UniRef50_A0A059IR82 Chromosome partitioning protein ParA 0.000324323690749 8.70489747589e-05 -0.00023727471599 +UniRef50_Q8YFR1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.00636525194072 0.00536307950221 -0.00100217243851 +UniRef50_UPI00040C16D0 hypothetical protein 1.00228001284e-05 8.2291056723e-06 -1.7936944561e-06 +UniRef50_F7Z665 D 3 phosphoglycerate dehydrogenase 0.0108252629411 0.00406279369009 -0.00676246925101 +UniRef50_D1FI19 TRAP dicarboxylate transporter 2.11043206804e-05 4.1951982067e-05 2.08476613866e-05 +UniRef50_Q9MUM1 Light independent protochlorophyllide reductase subunit N 9.56739628346e-05 2.79851262003e-05 -6.76888366343e-05 +UniRef50_F5LXA3 Glycosyl transferase family protein 0.00107807403606 0.000185733776861 -0.000892340259199 +UniRef50_L0A408 Diguanylate cyclase domain containing protein 2.8779050152e-05 0.000768257856395 0.000739478806243 +UniRef50_UPI000308ED7E hypothetical protein 0.0118811079983 0.00401282544639 -0.00786828255191 +UniRef50_Q5JEF8 Nicotinamide nucleotide adenylyltransferase 0.0044456525845 0.000691575091185 -0.00375407749332 +UniRef50_A4WWA3 Glutathione dependent formaldehyde activating, GFA 0.00792815436951 0.00167056414792 -0.00625759022159 +UniRef50_S3FKB7 Major facilitator superfamily MFS_1 domain protein 0.000654873618774 0.00031430608951 -0.000340567529264 +UniRef50_F2US62 1.55443363869e-06 1.65940211716e-05 1.50395875329e-05 +UniRef50_E8U2Z7 Putative GAF sensor protein 1.35005050472e-05 0.00194591817792 0.00193241767287 +UniRef50_L7DFJ3 TetR family transcriptional regulator 0.000198328890814 0.000264562378528 6.6233487714e-05 +UniRef50_Q16CP9 0.00597534898873 0.000884542429376 -0.00509080655935 +UniRef50_Q3IW63 0.0245473497273 0.00923026710419 -0.0153170826231 +UniRef50_T1JH82 4.57702632721e-06 3.44502845853e-05 2.98732582581e-05 +UniRef50_B7GZC9 5.86765785751e-05 0.00462524651319 0.00456656993461 +UniRef50_D3QI51 Transporter 0.0207543590772 0.00525560843457 -0.0154987506426 +UniRef50_UPI0003744E94 hypothetical protein 8.8812845026e-06 9.3339725819e-05 8.44584413164e-05 +UniRef50_D8MLX7 Photosystem I assembly famlily protein BtpA 0.00372298184577 0.000678590938576 -0.00304439090719 +UniRef50_UPI000262C9D0 hypothetical protein 2.62702516383e-05 3.76820929481e-05 1.14118413098e-05 +UniRef50_B4U8E3 Potassium transporting ATPase A chain 5.27847786956e-05 0.00138304391499 0.00133025913629 +UniRef50_UPI00047293B6 hypothetical protein 3.53796864681e-06 7.58050961938e-06 4.04254097257e-06 +UniRef50_Q1QUD2 Probable malate 4.54918376094e-06 1.27029507494e-05 8.15376698846e-06 +UniRef50_UPI0003A0AD2C 30S ribosomal protein S7 0.000247481993963 0.00212901636073 0.00188153436677 +UniRef50_UPI0001CE1538 PREDICTED 9.7709919458e-05 0.000152881814591 5.5171895133e-05 +UniRef50_G3N4L7 3.73434634369e-05 1.06085400113e-05 -2.67349234256e-05 +UniRef50_Q3JNN4 1.93990556899e-05 2.77882674998e-05 8.3892118099e-06 +UniRef50_A6LZ55 2,5 didehydrogluconate reductase 0.000180041012167 0.00237740457833 0.00219736356616 +UniRef50_Q3JNN0 1.65362928528e-05 1.76321506551e-05 1.0958578023e-06 +UniRef50_A3PIA7 0.00090962508806 0.000810301625125 -9.9323462935e-05 +UniRef50_A7FRF2 SPFH domain Band 7 family protein 0.000155344028336 0.00580039531667 0.00564505128833 +UniRef50_X1FV54 Marine sediment metagenome DNA, contig 1.82137340759e-05 4.29233005106e-05 2.47095664347e-05 +UniRef50_UPI00037DF23F hypothetical protein 2.50826146801e-06 9.63756893095e-06 7.12930746294e-06 +UniRef50_UPI00046A73E3 nitrate ABC transporter ATP binding protein 1.29616477541e-05 6.61509582947e-05 5.31893105406e-05 +UniRef50_UPI0002559CE7 IS5 family transposase OrfA 0.000124789467833 5.39867752684e-05 -7.08026925646e-05 +UniRef50_UPI0003B38F36 ABC transporter permease 8.53575906335e-06 2.01194099959e-05 1.15836509326e-05 +UniRef50_UPI0003603238 hypothetical protein, partial 9.32840390114e-06 7.75205599853e-06 -1.57634790261e-06 +UniRef50_L7WVU0 Ribosomal silencing factor RsfS 0.00288143169243 0.000551993841485 -0.00232943785094 +UniRef50_F0KKV9 0.000179470359203 0.00884496237467 0.00866549201547 +UniRef50_UPI0003C16777 0.000173877775771 3.89234679994e-05 -0.000134954307772 +UniRef50_C4ZGW0 Aspartate aminotransferase, putative 0.00501380403145 0.000796823789625 -0.00421698024182 +UniRef50_UPI00037BAEE0 hypothetical protein 0.000109731580681 0.000259505640912 0.000149774060231 +UniRef50_A7HUJ4 AzlC family protein 1.19695348391e-05 9.22791927658e-06 -2.74161556252e-06 +UniRef50_P0AEL7 Ferrienterobactin binding periplasmic protein 0.00290998321374 0.000562028814663 -0.00234795439908 +UniRef50_Q1RKE8 NADH quinone oxidoreductase subunit J 0.00012758253863 1.40906844409e-05 -0.000113491854189 +UniRef50_B2V326 Mate efflux family protein 0.000248709922281 0.0012785923014 0.00102988237912 +UniRef50_B6IWF0 Phosphate ABC transporter, periplasmic phosphate binding protein PstS, putative 4.24949181733e-06 5.40061126888e-06 1.15111945155e-06 +UniRef50_B7GXW5 Poly depolymerase 1.34700829229e-05 0.0055332988704 0.00551982878748 +UniRef50_F0P9K4 DNA polymerase III delta prime subunit 0.0244511728763 0.0080729803258 -0.0163781925505 +UniRef50_Q8DL38 Biotin synthase 6.59096828472e-06 0.000104110235408 9.75192671233e-05 +UniRef50_M2F7K0 Putative transposase 0.000302059146735 0.000502857760576 0.000200798613841 +UniRef50_Q6C1W8 YALI0F12793p 6.39101564002e-06 0.000428500387812 0.000422109372172 +UniRef50_UPI00046D9296 3 kinase 4.22889384401e-05 0.000127241629804 8.49526913639e-05 +UniRef50_R7PVC4 O linked GlcNAc transferase 0.0033913882302 0.000237202172853 -0.00315418605735 +UniRef50_UPI00029AB782 cytochrome d ubiquinol oxidase subunit II 9.79140951064e-06 2.08076636388e-05 1.10162541282e-05 +UniRef50_U5NRE3 0.00697017061606 0.00146767932083 -0.00550249129523 +UniRef50_F8HC83 Regulatory protein spx 0.00126414950608 0.00114667829896 -0.00011747120712 +UniRef50_Q3Y3U3 Relaxase mobilization nuclease domain 0.00127485842409 0.00018833367085 -0.00108652475324 +UniRef50_C5ABI0 Major facilitator superfamily MFS_1 0.000198198688056 0.00648469005634 0.00628649136828 +UniRef50_M2XMH8 DNA polymerase II large subunit 2.02530780281e-05 0.000104394581345 8.41415033169e-05 +UniRef50_K7YBZ8 0.000228155110748 0.00197606779169 0.00174791268094 +UniRef50_P44304 Glyceraldehyde 3 phosphate dehydrogenase 0.00363824611945 0.000430280020438 -0.00320796609901 +UniRef50_B2TI69 0.000630593005367 0.00217094372115 0.00154035071578 +UniRef50_UPI000255F17A hypothetical protein 5.82559931989e-05 0.000164821230301 0.000106565237102 +UniRef50_P45524 Putative esterase YheT 0.00222919467823 0.00144345948598 -0.00078573519225 +UniRef50_UPI000462C6A7 PREDICTED 1.52949701278e-05 0.000376817551654 0.000361522581526 +UniRef50_B2WGR9 Catabolic 3 dehydroquinase 3.29341505445e-05 0.00859615212763 0.00856321797709 +UniRef50_I4AI93 0.000208172420321 0.00281671794743 0.00260854552711 +UniRef50_UPI00045E39BE PREDICTED 4.60558533168e-06 4.04538315796e-06 -5.6020217372e-07 +UniRef50_UPI00037892F1 hypothetical protein 3.64057505749e-06 2.08871737459e-06 -1.5518576829e-06 +UniRef50_U1X2L2 0.000123751680986 1.79173896482e-05 -0.000105834291338 +UniRef50_UPI0003601561 hypothetical protein 1.49523558644e-05 1.39103894639e-05 -1.0419664005e-06 +UniRef50_S5FCD6 Portal protein 9.11801905478e-05 0.00215988284241 0.00206870265186 +UniRef50_C9ABJ9 Fructose 6 phosphate aldolase 0.00732085094163 0.00231659558482 -0.00500425535681 +UniRef50_A4FIQ1 Inositol 2 dehydrogenase 3 0.00290214489783 0.00103195735108 -0.00187018754675 +UniRef50_A3CQ84 Stomatin prohibitin like membrane protease subunits, putative 0.00664379698948 0.00698751373888 0.0003437167494 +UniRef50_W3AF53 4.4674076915e-06 9.73624789762e-06 5.26884020612e-06 +UniRef50_A5UJ85 DNA helicase II 0.00305910634578 0.000404010667634 -0.00265509567815 +UniRef50_Q4L790 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00152011716229 0.000567916740756 -0.000952200421534 +UniRef50_F2N691 Methyltransferase PilK 0.000442042735691 0.000211191922662 -0.000230850813029 +UniRef50_L1KFY1 0.00012076752759 0.00133225581291 0.00121148828532 +UniRef50_M9VBK7 Protein translocase subunit SecE 0.000174762031871 0.00623746276338 0.00606270073151 +UniRef50_K0RFL8 2.23816179144e-05 7.71164771806e-05 5.47348592662e-05 +UniRef50_Q7UKQ9 Pyridoxine pyridoxamine 5 phosphate oxidase 6.51686951022e-06 4.22562704227e-05 3.57394009125e-05 +UniRef50_UPI0003B677A0 trehalose phosphatase 3.24179055267e-05 3.8594512666e-05 6.1766071393e-06 +UniRef50_D5AMV2 0.00585479990965 0.00104801845391 -0.00480678145574 +UniRef50_C5WIK5 9.40325337864e-05 4.80463894119e-05 -4.59861443745e-05 +UniRef50_A3TY58 0.000271217812282 5.86031302057e-05 -0.000212614682076 +UniRef50_I6AD38 Rhodanese domain protein 1.35942699055e-05 1.56650643619e-05 2.0707944564e-06 +UniRef50_Q3BTY0 Leucyl phenylalanyl tRNA protein transferase 7.15154571387e-06 5.20737318081e-06 -1.94417253306e-06 +UniRef50_J1EAV0 Localization of periplasmic protein complex 1.42407759349e-05 1.85357788066e-05 4.2950028717e-06 +UniRef50_Q08WY4 6.0550603539e-06 8.85087944195e-05 8.24537340656e-05 +UniRef50_A5UK74 Xanthine uracil permease, UraA 0.00257311722102 0.00441311184489 0.00183999462387 +UniRef50_R8TPL3 0.00034247910761 3.83202453147e-05 -0.000304158862295 +UniRef50_UPI0002F0AFD4 glycerol 3 phosphate dehydrogenase 1.46873079729e-05 5.47277805429e-06 -9.21452991861e-06 +UniRef50_O69763 Vanillin dehydrogenase 0.0003547788711 0.0091653848342 0.0088106059631 +UniRef50_A0A021V5W0 LctP family lactate transporter 0.00386871830562 0.00214125642029 -0.00172746188533 +UniRef50_UPI000328D943 PREDICTED 0.000247609148869 0.000343427211886 9.5818063017e-05 +UniRef50_Q8P322 tRNA lysidine synthase 0.00559811980106 0.0025382496282 -0.00305987017286 +UniRef50_P50178 Modification methylase LlaDCHIB 0.00295776896385 0.000225146153897 -0.00273262280995 +UniRef50_UPI0002DF814C hypothetical protein 7.09205888256e-05 5.94525032505e-06 -6.49753385006e-05 +UniRef50_U3T3H2 Outer membrane cobalamin receptor protein 0.00012716768271 0.00643375108484 0.00630658340213 +UniRef50_Q8A0U0 GTP cyclohydrolase 1 4.09312928036e-05 0.000933468649062 0.000892537356258 +UniRef50_E4U994 7.28460535183e-05 0.000420326020798 0.00034747996728 +UniRef50_P56148 DNA repair protein RadA homolog 0.000119331714078 0.00501095270892 0.00489162099484 +UniRef50_S1T0A0 Molybdopterin guanine dinucleotide biosynthesis protein MobA 3.60545915537e-06 3.62248736218e-06 1.702820681e-08 +UniRef50_Q9ZLF9 Ribonucleoside diphosphate reductase subunit alpha 0.000251528325992 0.00365176545422 0.00340023712823 +UniRef50_Q5L0L0 Chemotaxis response regulator protein glutamate methylesterase 5.47385240571e-06 5.86052574605e-06 3.8667334034e-07 +UniRef50_Q7UIA6 3 isopropylmalate dehydratase small subunit 3.22272789678e-05 5.30062500842e-05 2.07789711164e-05 +UniRef50_Q8E0C9 Group B oligopeptidase PepB 0.00445720595275 0.00150548358306 -0.00295172236969 +UniRef50_K1WM50 1.55668959688e-05 0.000187786539651 0.000172219643682 +UniRef50_UPI00016C089F competence damage inducible protein A 1.67431573981e-05 5.75415102687e-06 -1.09890063712e-05 +UniRef50_K2N567 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 5.33395438294e-05 3.33540933688e-05 -1.99854504606e-05 +UniRef50_V6UH50 9.00790839893e-06 0.000245429383193 0.000236421474794 +UniRef50_A1UTH5 Peptidyl tRNA hydrolase 6.81921278934e-05 3.51198236662e-05 -3.30723042272e-05 +UniRef50_J7LD22 2.23072413933e-05 9.72494841897e-06 -1.25822929743e-05 +UniRef50_W1N6M3 0.000107858990348 4.91572138841e-05 -5.87017764639e-05 +UniRef50_J7MT36 Phage infection family protein 3.79907093011e-06 0.00165251376045 0.00164871468952 +UniRef50_UPI000262CD24 dihydroorotate dehydrogenase 2 5.64432813214e-06 6.69613784165e-06 1.05180970951e-06 +UniRef50_UPI000474A0FC cation transporting ATPase PacS, partial 3.62633600666e-06 5.97220036057e-06 2.34586435391e-06 +UniRef50_P0A9S8 High affinity branched chain amino acid transport ATP binding protein LivG 0.00512397489533 0.000994326341755 -0.00412964855357 +UniRef50_UPI0003B61CAA DNA polymerase III subunit alpha 2.57949696976e-06 1.00975679278e-05 7.51807095804e-06 +UniRef50_UPI000441931B PREDICTED 2.062660605e-05 7.29575306157e-06 -1.33308529884e-05 +UniRef50_UPI0003EB11F8 hypothetical protein 0.000317946783882 0.000150828145793 -0.000167118638089 +UniRef50_B9JLP2 Dipeptide ABC transporter 0.0144319630433 0.000755232268359 -0.0136767307749 +UniRef50_S5NIJ4 6 pyruvoyl tetrahydropterin synthase family protein 0.000196949211577 0.0134595635748 0.0132626143632 +UniRef50_UPI00046D9084 hypothetical protein 1.1574838913e-05 0.000564089116712 0.000552514277799 +UniRef50_A0A024HLC2 Peptidoglycan synthase FtsI 0.00126718909768 0.000601422526307 -0.000665766571373 +UniRef50_UPI0003EABD05 PREDICTED 3.53765437387e-05 7.09944790988e-05 3.56179353601e-05 +UniRef50_UPI0003F6C60F hypothetical protein 6.23776261745e-06 7.10100760025e-06 8.632449828e-07 +UniRef50_Q02127 Dihydroorotate dehydrogenase , mitochondrial 3.88577241031e-06 5.45527593257e-06 1.56950352226e-06 +UniRef50_Q63JM0 Tryptophan synthase alpha chain 0.000730735717188 0.00933192821108 0.00860119249389 +UniRef50_UPI00037DE56E hypothetical protein 1.0181075704e-06 6.55994989111e-06 5.54184232071e-06 +UniRef50_P55798 Serine threonine protein phosphatase 1 0.00367472350853 0.0019272742775 -0.00174744923103 +UniRef50_A1AJA0 0.000367681157978 0.000757222321012 0.000389541163034 +UniRef50_V2WBL1 0.000101790673079 0.0054597983691 0.00535800769602 +UniRef50_D5BNR0 1.54963159223e-05 3.95853145172e-05 2.40889985949e-05 +UniRef50_UPI000464D525 hypothetical protein 3.67045210941e-05 1.49796554692e-05 -2.17248656249e-05 +UniRef50_F7ZCI7 YcjX like protein 0.000559933228429 0.000176726048331 -0.000383207180098 +UniRef50_P77551 Putative Rz endopeptidase from lambdoid prophage Rac 0.00200978496923 0.000453994425311 -0.00155579054392 +UniRef50_P0AFR7 Inner membrane ABC transporter permease protein YcjO 0.00371800615952 0.000974390098632 -0.00274361606089 +UniRef50_A0A011MK47 Sulfate starvation induced protein 7 1.23555401582e-05 5.65188692134e-06 -6.70365323686e-06 +UniRef50_Q8C3X4 Translation factor Guf1, mitochondrial 0.000162689593318 0.00607355481825 0.00591086522493 +UniRef50_P15034 Xaa Pro aminopeptidase 0.00272522256053 0.000661161887643 -0.00206406067289 +UniRef50_E8SF18 Aldose 1 epimerase 0.0262337392811 0.00499367281283 -0.0212400664683 +UniRef50_A0A017HMF0 0.00109951483069 7.68717325399e-05 -0.00102264309815 +UniRef50_C4ZAJ9 ABC transporter, substrate binding protein 0.000433870517968 0.00165172626081 0.00121785574284 +UniRef50_Q3KKE6 Methionyl tRNA formyltransferase 1.15994981852e-05 1.01760715423e-05 -1.4234266429e-06 +UniRef50_J9NYM1 5.62734213803e-05 0.000796812327947 0.000740538906567 +UniRef50_C3QRE5 2.04045915274e-05 5.28306306203e-05 3.24260390929e-05 +UniRef50_UPI000454A2DB PREDICTED 4.10028204569e-05 0.000583730781846 0.000542727961389 +UniRef50_A4WNL3 Alkane 1 monooxygenase 0.00461211358478 0.000797567668071 -0.00381454591671 +UniRef50_Q2KUS4 Glutamate 1 semialdehyde 2,1 aminomutase 1.30300919849e-05 5.17109824215e-05 3.86808904366e-05 +UniRef50_Q49XA7 Response regulator 0.0262766745275 0.00969861921099 -0.0165780553165 +UniRef50_W0NGN9 0.000245436890964 0.000103899038154 -0.00014153785281 +UniRef50_UPI0001DD0A5B glucose methanol choline oxidoreductase 3.25551130128e-05 1.51054561154e-05 -1.74496568974e-05 +UniRef50_UPI0002DA0766 hypothetical protein 9.97826103677e-05 1.70678993212e-05 -8.27147110465e-05 +UniRef50_UPI000465EE27 transcriptional regulator 0.00051907931128 0.000178688564362 -0.000340390746918 +UniRef50_S9S9T8 8.71142785697e-06 8.93553676139e-07 -7.81787418083e-06 +UniRef50_Q4FQM5 Possible acyl CoA dehydrogenase 0.000256184774824 0.00805647737903 0.00780029260421 +UniRef50_F0LEQ2 1.76125021984e-05 3.73462807507e-06 -1.38778741233e-05 +UniRef50_UPI0004011469 glutamine synthetase 3.88022418163e-06 3.84890521942e-05 3.46088280126e-05 +UniRef50_Q2NVF9 Ribonuclease H 4.92115386828e-05 2.27583395313e-05 -2.64531991515e-05 +UniRef50_UPI000360E579 hypothetical protein 3.48693396424e-06 3.66772317774e-06 1.807892135e-07 +UniRef50_UPI00034CA4EE hypothetical protein 1.18349023133e-05 7.84339940452e-06 -3.99150290878e-06 +UniRef50_T1Y907 Glycerol uptake operon antiterminator regulatory protein 0.010060208328 0.00517895372108 -0.00488125460692 +UniRef50_X0W5G8 Marine sediment metagenome DNA, contig 1.37658217162e-05 0.000557978103331 0.000544212281615 +UniRef50_P39634 1 pyrroline 5 carboxylate dehydrogenase 0.0312434604054 0.05662210642 0.0253786460146 +UniRef50_UPI0003D2D096 helicase subunit of the DNA excision repair complex 0.000213068221822 0.00035283242594 0.000139764204118 +UniRef50_UPI0004195273 metallophosphoesterase 3.00129406799e-05 0.000103183996409 7.31710557291e-05 +UniRef50_Q3SKN6 Ribosome recycling factor 0.00359509751005 0.00337254524287 -0.00022255226718 +UniRef50_M2SV33 3.08187578723e-06 2.11594207944e-05 1.80775450072e-05 +UniRef50_Q98HV6 Peptidyl tRNA hydrolase 6.18019648583e-05 3.148071852e-05 -3.03212463383e-05 +UniRef50_J7L680 4.04418090133e-05 1.8599765526e-05 -2.18420434873e-05 +UniRef50_UPI000475208B hypothetical protein 8.66354316966e-05 1.60894354595e-05 -7.05459962371e-05 +UniRef50_P0A9P2 Dihydrolipoyl dehydrogenase 0.00293539989047 0.00116350489329 -0.00177189499718 +UniRef50_K1V9D8 2.72130078112e-05 8.60981672297e-06 -1.86031910882e-05 +UniRef50_P56262 Putative carboxymethylenebutenolidase 0.00265468570168 0.000716965950952 -0.00193771975073 +UniRef50_P27242 Lipopolysaccharide 1,2 N acetylglucosaminetransferase 0.00223156188007 0.000223724776658 -0.00200783710341 +UniRef50_UPI00036005C8 Cro Cl family transcriptional regulator 0.000302352917294 3.32271176516e-05 -0.000269125799642 +UniRef50_D6ZGV8 Hydrolase, alpha beta domain protein 9.96005247615e-05 0.00346275126597 0.00336315074121 +UniRef50_UPI0003B63445 3 oxoacyl ACP synthase 1.15942492086e-05 3.92712444924e-05 2.76769952838e-05 +UniRef50_UPI0004701497 hypothetical protein 1.15266624298e-05 1.32079993173e-05 1.6813368875e-06 +UniRef50_UPI00037075A9 hypothetical protein 1.28464256146e-05 1.42634073441e-05 1.4169817295e-06 +UniRef50_UPI00036443D8 hypothetical protein 1.83519997307e-05 1.36747211517e-05 -4.677278579e-06 +UniRef50_X0XIH0 Marine sediment metagenome DNA, contig 0.000117136984514 2.43647132904e-05 -9.27722712236e-05 +UniRef50_Q2RJX2 Ribonuclease 3 1.36690282123e-05 5.21028633718e-05 3.84338351595e-05 +UniRef50_Q82ZC9 Mannonate dehydratase 0.00038261443205 0.0090494550284 0.00866684059635 +UniRef50_UPI0003AEBAC4 PREDICTED 1.31413635789e-05 9.60149128807e-07 -1.21812144501e-05 +UniRef50_Q4L8C1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00879889537516 0.00466730089782 -0.00413159447734 +UniRef50_UPI000380E91C hypothetical protein 7.21708016402e-05 5.59215609367e-05 -1.62492407035e-05 +UniRef50_B9KSB3 0.00139052871764 0.00135259559632 -3.793312132e-05 +UniRef50_Q83KI3 UPF0339 protein YegP 0.000801986811085 0.00308740437904 0.00228541756795 +UniRef50_A6LQL4 Methylated DNA protein cysteine methyltransferase 0.000356118857413 0.000381053813154 2.4934955741e-05 +UniRef50_Q5FKB1 Trehalose 6 P hydrolase 0.0063583902874 0.00213256877819 -0.00422582150921 +UniRef50_R1CXE8 4.17206431966e-05 0.000238378604517 0.00019665796132 +UniRef50_E6MXC7 Chorismate mutase 0.000146691446449 0.00638783807577 0.00624114662932 +UniRef50_UPI0001911376 DNA binding transcriptional activator of porin biosynthesis, partial 2.80483475261e-05 6.05030742556e-05 3.24547267295e-05 +UniRef50_D5QD63 Phosphoribosylaminoimidazole carboxylase ATPase subunit 0.00174981661799 0.00035605686715 -0.00139375975084 +UniRef50_D7CSG3 ABC transporter related protein 0.000479138807593 0.0379434082039 0.0374642693963 +UniRef50_X7EKT4 3.70977852084e-05 2.35936272629e-05 -1.35041579455e-05 +UniRef50_UPI0000166DA8 COG0583 2.22015380385e-05 1.48156109259e-05 -7.3859271126e-06 +UniRef50_Q834F4 UPF0122 protein EF_1701 0.00102950724232 0.0180393758711 0.0170098686288 +UniRef50_Q8ZKQ1 Autoinducer 2 binding protein LsrB 0.0100166848175 0.00458056345516 -0.00543612136234 +UniRef50_B7VKH0 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.00309970164874 0.00127375106598 -0.00182595058276 +UniRef50_P69925 Ribonucleoside diphosphate reductase 1 subunit beta 0.00389285407546 0.00429294621717 0.00040009214171 +UniRef50_Q28NI7 ATP dependent Clp protease proteolytic subunit 1.62277173087e-05 4.22969274885e-05 2.60692101798e-05 +UniRef50_Q9A8A3 0.000593504540491 0.000212804769119 -0.000380699771372 +UniRef50_R1CGH2 0.00011438560723 0.000262036804059 0.000147651196829 +UniRef50_Q2T0L2 UDP N acetylenolpyruvoylglucosamine reductase 0.000469722778002 0.000380209008191 -8.9513769811e-05 +UniRef50_A0A017HNY4 Paraquat inducible protein B 1.82422019514e-05 5.58002212442e-05 3.75580192928e-05 +UniRef50_P0A8Y6 Sugar phosphatase YidA 0.00678688135142 0.00489113011696 -0.00189575123446 +UniRef50_A5N3K4 CTP synthase 3.46635087934e-05 0.000177336186937 0.000142672678144 +UniRef50_C5WIG1 16S rRNA mC 967 methyltransferase 0.0051321430333 0.00557047488845 0.00043833185515 +UniRef50_P50434 Serine hydroxymethyltransferase 1.00133587018e-05 1.29526459023e-05 2.9392872005e-06 +UniRef50_UPI00037E292F Na translocating NADH quinone reductase subunit E, partial 7.14908434026e-05 8.28832726115e-05 1.13924292089e-05 +UniRef50_P76104 0.00335553458941 0.000540901625088 -0.00281463296432 +UniRef50_A6LQE3 Spore coat protein CotS 0.000607469626782 0.00125765239711 0.000650182770328 +UniRef50_UPI0000222BCC Hypothetical protein CBG04553 8.92196171329e-07 0.000130647723141 0.00012975552697 +UniRef50_P76100 0.00187818780999 0.00116713888886 -0.00071104892113 +UniRef50_Q9HXY5 Skp like protein 0.000457710083491 0.00105893827165 0.000601228188159 +UniRef50_U4Q2X2 0.0013470591303 0.000548575922964 -0.000798483207336 +UniRef50_UPI000455F125 MFS general substrate transporter 3.16447653523e-06 2.42489172182e-05 2.1084440683e-05 +UniRef50_UPI000255A9B5 polyhydroxyalkanoate depolymerase, intracellular 0.000380018624549 6.24483168639e-05 -0.000317570307685 +UniRef50_P43801 Anaerobic glycerol 3 phosphate dehydrogenase subunit C 0.00192424024098 0.000288388401881 -0.0016358518391 +UniRef50_B3EFT2 Phosphoribosyl AMP cyclohydrolase 1.43082521179e-05 6.86055428384e-05 5.42972907205e-05 +UniRef50_B9E2W7 0.00011005422415 0.00106261531073 0.00095256108658 +UniRef50_UPI0004635F62 hypothetical protein, partial 1.89931350216e-05 1.02720497608e-05 -8.7210852608e-06 +UniRef50_D5RMQ9 0.00100317457958 0.000692148527801 -0.000311026051779 +UniRef50_A6UYW1 8 amino 7 oxononanoate synthase 9.41884458769e-06 4.38616684671e-06 -5.03267774098e-06 +UniRef50_D9XAX0 Predicted protein 0.000556279417224 2.23179165768e-05 -0.000533961500647 +UniRef50_Q67PR9 Guanylate kinase 9.38150948695e-06 2.55495586822e-05 1.61680491952e-05 +UniRef50_B8I4B5 50S ribosomal protein L9 0.000510116201151 0.00111272176274 0.000602605561589 +UniRef50_B9KUZ9 0.00161887715412 0.00220767355851 0.00058879640439 +UniRef50_C5QYC3 0.0374811977381 0.0267616167579 -0.0107195809802 +UniRef50_UPI0003705808 hypothetical protein 7.87129648936e-05 0.000108678971022 2.99660061284e-05 +UniRef50_O17953 Dihydrolipoyl dehydrogenase, mitochondrial 0.000621545687068 0.0575784965126 0.0569569508255 +UniRef50_W9UQ60 Putative assembly protein 1.94758834616e-06 1.91731645075e-06 -3.027189541e-08 +UniRef50_A0A024HXW4 2.16692232949e-05 3.9768085016e-05 1.80988617211e-05 +UniRef50_G4LCZ8 ABC transporter 0.00136274538262 0.00139222348632 2.94781037e-05 +UniRef50_A0A023XD37 0.00285644599929 0.000630569477283 -0.00222587652201 +UniRef50_Q67LS2 tRNA specific 2 thiouridylase MnmA 0.000105837193141 0.00182803218533 0.00172219499219 +UniRef50_A5IUF8 0.00525435426901 0.00249457223503 -0.00275978203398 +UniRef50_B9J8J7 Phosphate ABC transporter, permease protein PstC 0.00211341990744 0.000185928670631 -0.00192749123681 +UniRef50_UPI0003A61BAB glutaredoxin 0.000263593282703 0.000119443857929 -0.000144149424774 +UniRef50_Q5M3M6 NADH nitroreductase, putative 0.0104806366719 0.00323940629224 -0.00724123037966 +UniRef50_D6T1N1 3.52258524946e-05 0.000196684230892 0.000161458378397 +UniRef50_P30864 0.0021694972146 0.00449120544414 0.00232170822954 +UniRef50_UPI0003B3E508 ATP dependent DNA helicase RecQ 3.1950876362e-05 8.76427945006e-06 -2.31865969119e-05 +UniRef50_I0C7F9 Transposase 0.00629222881243 0.00042188100743 -0.005870347805 +UniRef50_UPI00040BBC52 hypothetical protein 6.07225557301e-06 7.44802587944e-06 1.37577030643e-06 +UniRef50_E8SP74 TnaB 0.000170244177435 0.00306879754673 0.0028985533693 +UniRef50_UPI00031AADB4 hypothetical protein 7.98129398548e-06 4.80507417835e-05 4.0069447798e-05 +UniRef50_A6M044 Pyruvate phosphate dikinase, PEP pyruvate binding 0.000293205594883 0.000912992822274 0.000619787227391 +UniRef50_B1I8K9 50S ribosomal protein L24 0.000571948467958 0.00158205377784 0.00101010530988 +UniRef50_A4WU42 HAD superfamily hydrolase, subfamily IA, variant 3 0.0062012539686 0.00210555283762 -0.00409570113098 +UniRef50_A4X0H4 0.00722673297635 0.00466147221554 -0.00256526076081 +UniRef50_UPI0003B31D39 glucose 1 phosphate adenylyltransferase 8.27791414818e-06 1.74862295857e-05 9.20831543752e-06 +UniRef50_G0NKG2 1.77670334942e-06 1.69565034975e-06 -8.105299967e-08 +UniRef50_F2RAR1 2.28512392982e-05 1.77935372772e-05 -5.057702021e-06 +UniRef50_UPI0003F0A9A6 PREDICTED 1.60354202724e-05 1.89036774594e-05 2.868257187e-06 +UniRef50_A6LTB9 0.000219915479931 0.000347847745481 0.00012793226555 +UniRef50_W1CWF6 Dipeptide transport system permease protein DppC 3.99159947935e-05 4.50292672275e-05 5.113272434e-06 +UniRef50_P76027 Oligopeptide transport ATP binding protein OppD 0.00357888287322 0.00307108294839 -0.00050779992483 +UniRef50_B9E466 0.000157158450554 0.000899803575401 0.000742645124847 +UniRef50_Q9KA77 Translation initiation factor IF 2 0.00983590535411 0.00321618573988 -0.00661971961423 +UniRef50_D2ZRY0 0.00123811800729 0.000901692565299 -0.000336425441991 +UniRef50_UPI0003AE05F2 PREDICTED 7.3782790292e-05 3.0981870398e-05 -4.2800919894e-05 +UniRef50_UPI0003B3B0BA preprotein translocase subunit TatA 0.000115263405025 8.09674765753e-05 -3.42959284497e-05 +UniRef50_W8WPD9 Phage protein 0.00689815600913 0.000641992837382 -0.00625616317175 +UniRef50_A0A037XG38 Glyoxalase 1.61161911155e-05 3.31141839601e-05 1.69979928446e-05 +UniRef50_D4M1S2 RNA splicing ligase RtcB 0.000316058040362 0.00094952870824 0.000633470667878 +UniRef50_UPI0003B5B654 membrane protein 0.000174038751499 6.76193933771e-05 -0.000106419358122 +UniRef50_UPI00037C520F hypothetical protein 3.32171331842e-06 6.10559592037e-06 2.78388260195e-06 +UniRef50_S3LIB4 4.18662965203e-05 3.22706734066e-05 -9.5956231137e-06 +UniRef50_Q28NL2 2.85002946155e-05 1.51245360965e-05 -1.3375758519e-05 +UniRef50_UPI00046673FB hypothetical protein 0.000190820262984 0.000150793327316 -4.0026935668e-05 +UniRef50_UPI0004704A21 hypothetical protein 3.05012851836e-05 0.000500442944208 0.000469941659024 +UniRef50_Q3K425 Chromosomal replication initiator protein DnaA 0.00730992193626 0.00485592854234 -0.00245399339392 +UniRef50_UPI0003B72310 excinuclease ABC subunit C 8.01168615629e-06 1.68864653312e-05 8.87477917491e-06 +UniRef50_UPI0004703B9E branched chain amino acid ABC transporter permease 5.90543812748e-06 0.000145323341918 0.000139417903791 +UniRef50_UPI000471ED7E ABC transporter ATP binding protein 4.0981112959e-05 2.04501997775e-05 -2.05309131815e-05 +UniRef50_UPI000372F99D hypothetical protein, partial 2.99295866321e-05 3.41608761337e-05 4.2312895016e-06 +UniRef50_A6M1G6 2 aminoethylphosphonate pyruvate transaminase 0.000199494455397 0.002216107629 0.0020166131736 +UniRef50_UPI00042812AB hypothetical protein 1.05766180632e-05 4.39196381855e-05 3.33430201223e-05 +UniRef50_X5P2F9 Replication initiation protein 5.0336391492e-05 2.85988750002e-05 -2.17375164918e-05 +UniRef50_X5K1E3 0.00105837193136 0.000881542403566 -0.000176829527794 +UniRef50_Q4L8N9 Multidrug export protein MepA 0.0109358220442 0.0013392441898 -0.0095965778544 +UniRef50_P18200 Phosphatidylglycerophosphatase A 0.00175102496705 0.000470986401241 -0.00128003856581 +UniRef50_W7WR71 5.97175079141e-05 9.90339160079e-05 3.93164080938e-05 +UniRef50_E8PGH1 0.000264873318412 0.00617833074134 0.00591345742293 +UniRef50_A0A023S033 Peptidase C13 family protein 9.7123324747e-05 0.00543603920085 0.0053389158761 +UniRef50_Q95748 NADH dehydrogenase [ubiquinone] iron sulfur protein 3 2.31596783811e-05 1.63320142889e-05 -6.8276640922e-06 +UniRef50_C1E3Y9 Carbamoyl phosphate synthase 0.000122376929233 0.00853044695092 0.00840807002169 +UniRef50_Q04E66 30S ribosomal protein S4 0.00302240830011 0.00285194301032 -0.00017046528979 +UniRef50_A6QII8 Phage portal protein 0.0195619375102 0.00335419751104 -0.0162077399992 +UniRef50_UPI00020D9EF8 potassium transporting ATPase subunit B, partial 1.58739084151e-05 0.00139569780923 0.00137982390081 +UniRef50_M1MIF0 Ankyrin repeat containing protein 0.000950716554642 0.000279921047585 -0.000670795507057 +UniRef50_A1B6P1 HupH hydrogenase expression protein 0.000234830164501 9.51567595386e-05 -0.000139673404962 +UniRef50_C7ZU12 Membrane protein 0.0115553727064 0.00776425598109 -0.00379111672531 +UniRef50_R4Q1E8 Fumarate reductase, flavoprotein subunit 0.00608928826387 0.000838731833528 -0.00525055643034 +UniRef50_UPI00036817A2 hypothetical protein 1.14936885719e-05 3.92703272152e-05 2.77766386433e-05 +UniRef50_UPI00037FABCF hypothetical protein 0.000383675115771 0.000127374069866 -0.000256301045905 +UniRef50_S1HAB5 Peptidoglycan hydrolase flgJ 0.00417425402772 0.000736340090513 -0.00343791393721 +UniRef50_A0LUK5 Holliday junction ATP dependent DNA helicase RuvB 1.34678639395e-05 0.00747569741644 0.0074622295525 +UniRef50_J0GC54 0.00811320802385 0.004134109254 -0.00397909876985 +UniRef50_P22525 Probable L,D transpeptidase YcbB 0.00297589868023 0.0018079251832 -0.00116797349703 +UniRef50_I1AUI6 Ferrichrome ABC transporter periplasmic ferrichrome binding protein FhuD 1 3.13701111483e-05 1.58419951028e-05 -1.55281160455e-05 +UniRef50_P0AF07 Motility protein B 0.00270239899437 0.00145486187002 -0.00124753712435 +UniRef50_R3TZ40 1.05367221013e-05 7.62953861265e-06 -2.90718348865e-06 +UniRef50_UPI0004736CD6 hypothetical protein 5.23469688489e-05 2.08775311889e-05 -3.146943766e-05 +UniRef50_UPI0000352E5F nucleoside diphosphate kinase 5.76301413004e-05 3.21534571033e-05 -2.54766841971e-05 +UniRef50_F2ABU0 0.00107356687878 0.000318143429591 -0.000755423449189 +UniRef50_B9KX90 ABC polysaccharide export transporter, inner membrane subunit 0.0203645951903 0.00283948197266 -0.0175251132176 +UniRef50_T1HGL7 6.92048074568e-06 6.20125331163e-05 5.50920523706e-05 +UniRef50_UPI0002491D69 glycine betaine carnitine ABC transporter, ATP binding subunit 0.000254215752016 2.89163098988e-05 -0.000225299442117 +UniRef50_UPI0004732920 long chain fatty acid CoA ligase, partial 2.83798680388e-05 8.06922941792e-06 -2.03106386209e-05 +UniRef50_UPI0002EB7410 hypothetical protein 0.000125596036843 7.94447966809e-06 -0.000117651557175 +UniRef50_C5N039 0.00309414277407 0.00144174716362 -0.00165239561045 +UniRef50_UPI0002896C02 L glutamine synthetase 3.41657627596e-06 1.35287623231e-05 1.01121860471e-05 +UniRef50_UPI0003740E86 hypothetical protein 9.96012827383e-06 1.24335738072e-05 2.47344553337e-06 +UniRef50_D7GDS8 Protein export membrane protein SecF 9.83890500953e-05 0.004185214865 0.0040868258149 +UniRef50_UPI00035114FD PREDICTED 2.78956326815e-06 6.08758455454e-07 -2.1808048127e-06 +UniRef50_Q18CD7 Proline tRNA ligase 2 7.56279560481e-06 2.99017479952e-05 2.23389523904e-05 +UniRef50_Q9L6N7 Threonine efflux protein 0.00220539636516 0.00465375110875 0.00244835474359 +UniRef50_UPI00047C100E hypothetical protein 0.000104251224206 9.66886825505e-06 -9.45823559509e-05 +UniRef50_UPI000463C607 hypothetical protein 2.38353935364e-06 1.76945660356e-06 -6.1408275008e-07 +UniRef50_F7ZSI9 Serine protein kinase , prkA protein 0.000323529144141 0.000698845092264 0.000375315948123 +UniRef50_J2PRG5 6.77514964598e-05 5.02104489412e-05 -1.75410475186e-05 +UniRef50_S7Z9P2 1.87736526976e-05 6.85317979988e-06 -1.19204728977e-05 +UniRef50_S9QRL9 Ribulose 5 phosphate 4 epimerase 2.06732314622e-05 0.000506537018293 0.000485863786831 +UniRef50_J1E8C3 2.03862942794e-05 1.74362834037e-05 -2.9500108757e-06 +UniRef50_Q46831 0.00418288054075 0.00190629184652 -0.00227658869423 +UniRef50_Q1R0P6 7.05214081848e-06 2.34137554333e-05 1.63616146148e-05 +UniRef50_UPI000429382E hypothetical protein 1.07771965608e-05 8.21361914025e-06 -2.56357742055e-06 +UniRef50_UPI00036DD217 hypothetical protein 4.1676988856e-06 7.75111497774e-06 3.58341609214e-06 +UniRef50_W4U314 Transglutaminase like enzymes 4.97530185333e-05 2.24101367546e-05 -2.73428817787e-05 +UniRef50_Q03282 Urease subunit gamma 0.000681824738409 0.000374294570504 -0.000307530167905 +UniRef50_P16524 Putative N acetyl LL diaminopimelate aminotransferase 3.04673917925e-05 0.00267933318982 0.00264886579803 +UniRef50_UPI00037D91E8 hypothetical protein 2.69975941821e-05 1.56478033249e-05 -1.13497908572e-05 +UniRef50_A6YIY0 Major ampullate spidroin 2 6.93625593045e-06 2.38516723892e-05 1.69154164587e-05 +UniRef50_Q97KZ3 Putative ABC transporter ATP binding protein CA_C0773 0.000502922100373 0.00128041695837 0.000777494857997 +UniRef50_W6QWZ0 Putative acyl CoA thioester hydrolase 0.000281705961835 0.000501954739708 0.000220248777873 +UniRef50_Q6AQS4 Aspartate tRNA ligase 0.0268282422176 0.00590881860223 -0.0209194236154 +UniRef50_UPI00046EC96E hypothetical protein, partial 0.000133399139677 0.000142098485818 8.699346141e-06 +UniRef50_R9SMV0 Siroheme synthase CysG 0.00512865345631 0.000283958370386 -0.00484469508592 +UniRef50_E6MYI6 Esterase family protein 0.000583584479882 0.0015352030021 0.000951618522218 +UniRef50_UPI0003A50B9C hypothetical protein 2.06281087424e-05 2.66192631087e-05 5.9911543663e-06 +UniRef50_A0YEX4 0.000141178686592 0.000367185114235 0.000226006427643 +UniRef50_F5X5K7 TetR family transcriptional regulator 0.00336299485171 0.00192021489492 -0.00144277995679 +UniRef50_UPI000382E61F hypothetical protein, partial 2.08207063785e-05 5.48572424133e-05 3.40365360348e-05 +UniRef50_E0TW67 Quinol oxidase subunit 2 0.0100030010767 0.00304823568594 -0.00695476539076 +UniRef50_T2BF48 Ubiquinol cytochrome c reductase iron sulfur subunit 0.000505561592214 0.00169244544919 0.00118688385698 +UniRef50_X5E1J9 0.0192169882303 0.00192153394635 -0.0172954542839 +UniRef50_Q8DNI6 Phosphotransferase system, trehalose specific IIBC component 0.00594636626756 0.000872432519423 -0.00507393374814 +UniRef50_D4HBJ9 Adenosine deaminase 0.000184439408233 0.00357182429902 0.00338738489079 +UniRef50_X0VEK8 Marine sediment metagenome DNA, contig 1.16646909592e-05 1.49548888223e-05 3.2901978631e-06 +UniRef50_Q8DWB5 0.00143028371616 0.00131251868976 -0.0001177650264 +UniRef50_Q034T8 Holo [acyl carrier protein] synthase 0.00162028611099 0.00131908384106 -0.00030120226993 +UniRef50_P18357 Regulatory protein BlaR1 0.120613343904 0.0336519397722 -0.0869614041318 +UniRef50_UPI00036C8B47 hypothetical protein 0.00035369758798 5.27292956816e-05 -0.000300968292298 +UniRef50_K4R1X2 0.000239055457073 0.00035610077652 0.000117045319447 +UniRef50_A4EPP0 0.0010486141029 0.000334125226082 -0.000714488876818 +UniRef50_UPI000379B93E quinone oxidoreductase 7.4048007735e-05 1.62958241127e-05 -5.77521836223e-05 +UniRef50_A0A059FRG3 MFS permease 4.69824456e-06 7.69767855986e-06 2.99943399986e-06 +UniRef50_B6IW38 0.000196954482659 9.07483171773e-05 -0.000106206165482 +UniRef50_U5MV68 SCP like extracellular 0.000119710144452 0.00151120330616 0.00139149316171 +UniRef50_UPI00046EA5E6 hypothetical protein, partial 2.5254474021e-05 1.91844416248e-05 -6.0700323962e-06 +UniRef50_S0EYL5 Sugar phosphate isomerases epimerases 0.000257077607856 0.000934112148509 0.000677034540653 +UniRef50_D6U9R9 Export membrane protein SecF 0.0185926367663 0.00498651446252 -0.0136061223038 +UniRef50_UPI0003F09E85 PREDICTED 3.94443038656e-05 3.01677049929e-05 -9.2765988727e-06 +UniRef50_M4X5B0 0.000396783876871 0.000281701149624 -0.000115082727247 +UniRef50_U5MX08 Phosphoglycerate mutase 0.000185953689091 0.00288193643771 0.00269598274862 +UniRef50_UPI000255BA65 potassium transporter 1.49911007733e-05 1.67742378661e-05 1.7831370928e-06 +UniRef50_UPI000225F75F hypothetical protein 0.00023613386411 7.87565811337e-05 -0.000157377282976 +UniRef50_A7A485 0.000147258840698 0.000518798445402 0.000371539604704 +UniRef50_UPI00046F4E68 ribonucleoside diphosphate reductase, partial 3.55374393803e-05 1.49177660064e-05 -2.06196733739e-05 +UniRef50_K0T2W7 8.05763126359e-05 9.97263701178e-05 1.91500574819e-05 +UniRef50_B0VRG1 0.000151804016961 0.0014830098215 0.00133120580454 +UniRef50_A6M0V4 Methyl accepting chemotaxis sensory transducer 0.000450896885334 0.00143051930482 0.000979622419486 +UniRef50_UPI0003B6BA2C chemotaxis protein CheY 9.74131359043e-06 1.27829526296e-05 3.04163903917e-06 +UniRef50_R7GI74 Formate C acetyltransferase 0.00654164373098 0.00814634046772 0.00160469673674 +UniRef50_E7C3S2 Dehydrogenases 3.57572490414e-05 0.000108810610168 7.30533611266e-05 +UniRef50_Q3AEU3 Uroporphyrinogen decarboxylase 1.57553417194e-05 3.35784016388e-05 1.78230599194e-05 +UniRef50_A4WPB6 Orotate phosphoribosyltransferase 0.0107579918925 0.00191864824567 -0.00883934364683 +UniRef50_Q5XCE8 Dihydrolipoamide dehydrogenase 0.00845873487721 0.00456029336268 -0.00389844151453 +UniRef50_A9UUK0 Predicted protein 7.56485825242e-06 8.83300214869e-05 8.07651632345e-05 +UniRef50_A3MIQ6 Phosphoglucosamine mutase 0.000942583166592 0.0117895012217 0.0108469180551 +UniRef50_Q3J3N9 Chemotaxis protein methyltransferase 0.0129078550555 0.00301574950863 -0.00989210554687 +UniRef50_J9Z0P1 X Pro dipeptidyl peptidase 8.36724282894e-06 2.68206541528e-05 1.84534113239e-05 +UniRef50_Q7NK15 Glr1665 protein 0.00298971767865 0.0461228076745 0.0431330899958 +UniRef50_D3E1W6 tRNA guanylyltransferase ThgL 0.00473932000539 0.000494253899902 -0.00424506610549 +UniRef50_UPI000366C0D7 hypothetical protein 1.35030912641e-05 5.71257007449e-06 -7.79052118961e-06 +UniRef50_UPI000314B2B3 hypothetical protein 2.32571311341e-05 2.59970100207e-05 2.7398788866e-06 +UniRef50_B9TDV5 8.14132254934e-05 0.000127109055325 4.56958298316e-05 +UniRef50_A0A009F5X4 Pirin family protein 8.52632154369e-06 3.126515518e-05 2.27388336363e-05 +UniRef50_C4WAX5 1.76950919503e-06 1.95270862694e-05 1.77575770744e-05 +UniRef50_A6LTQ4 HAD superfamily hydrolase, subfamily IA, variant 3 0.00017132495712 0.00069687498683 0.00052555002971 +UniRef50_UPI0002DD18E5 hypothetical protein 2.23472838387e-05 3.17348135845e-05 9.3875297458e-06 +UniRef50_U1MU63 8.07254431151e-06 4.6296282207e-05 3.82237378955e-05 +UniRef50_UPI000237F107 hypothetical protein 0.000142797670471 0.000110028936377 -3.2768734094e-05 +UniRef50_F4DTR0 3.12957715226e-05 6.24227005909e-05 3.11269290683e-05 +UniRef50_E8SJR1 0.035392014305 0.00137727785043 -0.0340147364546 +UniRef50_B2IJH9 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.10527348067e-05 7.10249786579e-05 5.99722438512e-05 +UniRef50_A1WJX6 TRAP dicarboxylate transporter, DctM subunit 0.00840680729705 0.00176307805325 -0.0066437292438 +UniRef50_UPI0004174C64 hypothetical protein 2.81446306652e-05 8.99288536133e-05 6.17842229481e-05 +UniRef50_M8YJZ4 Protein rarD 0.00071790856919 0.000531162024347 -0.000186746544843 +UniRef50_B1YGD3 Thymidylate kinase 9.0325744206e-06 1.42661934269e-05 5.2336190063e-06 +UniRef50_A6SYG4 ABC type multidrug transport system, ATPase component 0.00220162131832 0.000790192288099 -0.00141142903022 +UniRef50_UPI00036B3D28 hypothetical protein 1.98503350708e-05 3.51843861112e-05 1.53340510404e-05 +UniRef50_UPI000477DA5B hypothetical protein 1.00729387197e-05 3.05747837619e-05 2.05018450422e-05 +UniRef50_UPI0004635914 hypothetical protein, partial 2.07317536624e-05 3.23748677672e-05 1.16431141048e-05 +UniRef50_UPI000360F81F hypothetical protein 1.5185123517e-05 8.59359247798e-06 -6.59153103902e-06 +UniRef50_I1AFI7 2.34543991513e-05 2.24882600838e-05 -9.661390675e-07 +UniRef50_B7MFJ5 Phosphopantetheine adenylyltransferase 0.00131176139184 0.00644754944767 0.00513578805583 +UniRef50_UPI00037AFD46 hypothetical protein 6.54189755266e-05 1.29661441851e-05 -5.24528313415e-05 +UniRef50_Q9C0V7 0.000622351616997 0.000111021317735 -0.000511330299262 +UniRef50_D4DV01 6.08061200072e-05 9.42060557543e-05 3.33999357471e-05 +UniRef50_K0NAU6 Aspartate aminotransferase 0.0048565053391 0.0037227589574 -0.0011337463817 +UniRef50_K4NFJ8 0.000231586496233 0.00268657523081 0.00245498873458 +UniRef50_V6QFW8 0.0739194987939 0.0258283992391 -0.0480910995548 +UniRef50_UPI0004642118 tRNA 2 thiouridylase 4.3859031515e-06 1.00117372046e-05 5.6258340531e-06 +UniRef50_D6M1S6 Peptide ABC transporter, permease 0.000457700434745 5.74972321476e-05 -0.000400203202597 +UniRef50_W8ZM57 7.13607219438e-05 4.67764911256e-06 -6.66830728312e-05 +UniRef50_UPI00037A84FF XRE family transcriptional regulator 1.88763688208e-05 5.16613577508e-05 3.278498893e-05 +UniRef50_A3PI40 Flagellar motor switch protein FliG 0.00166908965294 0.000174399629052 -0.00149469002389 +UniRef50_UPI000027FA94 50S ribosomal protein L18 7.65640117502e-05 0.000235728166702 0.000159164154952 +UniRef50_P77357 p aminobenzoyl glutamate hydrolase subunit A 0.00197792310116 0.00050248755358 -0.00147543554758 +UniRef50_A0A011PVU6 0.000177231219462 4.38058181897e-05 -0.000133425401272 +UniRef50_X4ZFB4 0.00705121689328 0.00592714909642 -0.00112406779686 +UniRef50_B7V5T6 Cardiolipin synthase A 0.000120427769058 0.000722241353194 0.000601813584136 +UniRef50_R1FZF8 2.39815923878e-06 9.23439108903e-06 6.83623185025e-06 +UniRef50_A3ATB7 4.66104320255e-07 7.65585110073e-07 2.99480789818e-07 +UniRef50_R4Y9R8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.0077294752871 0.00485066919433 -0.00287880609277 +UniRef50_P0C0R2 HTH type transcriptional regulator SarS 0.0113330259086 0.00147585562656 -0.00985717028204 +UniRef50_A3M5V1 Porin for benzoate transport 0.000212070780251 0.00832904083046 0.00811697005021 +UniRef50_UPI000376439F hypothetical protein 0.000327130201036 2.03710650475e-05 -0.000306759135989 +UniRef50_A8AHA1 Vitamin B12 import ATP binding protein BtuD 0.00299849454437 0.000237202172853 -0.00276129237152 +UniRef50_A7X2A9 Peptide methionine sulfoxide reductase MsrB 0.00552539110143 6.93626983989e-05 -0.00545602840303 +UniRef50_G0DUV4 0.000322637597309 0.00261280952324 0.00229017192593 +UniRef50_X5PRY3 0.000195708085028 9.82495680869e-05 -9.74585169411e-05 +UniRef50_G5RW92 Putative two component response regulator and GGDEF family protein YeaJ 1.22410701972e-06 4.50862218066e-06 3.28451516094e-06 +UniRef50_P21880 Dihydrolipoyl dehydrogenase 0.0211868576991 0.00381327038302 -0.0173735873161 +UniRef50_E1IJ03 0.000290821435395 7.10389997931e-05 -0.000219782435602 +UniRef50_UPI0003A0EB32 3 ketoacyl CoA thiolase 3.71770127718e-06 9.43197350437e-06 5.71427222719e-06 +UniRef50_F5N2M6 5.58916685314e-05 6.62816605663e-05 1.03899920349e-05 +UniRef50_UPI00034B4804 DNA methyltransferase 0.000103074374295 0.000298264133943 0.000195189759648 +UniRef50_W8SRR9 MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr 0.00216016722841 0.00100489860424 -0.00115526862417 +UniRef50_Z2DE82 Biofilm formation protein PelB 7.38238569663e-06 9.1667092666e-06 1.78432356997e-06 +UniRef50_UPI0004658778 phosphoserine phosphatase 4.69875833353e-06 1.10074501252e-05 6.30869179167e-06 +UniRef50_Q8Y3B0 Peptide deformylase 1 0.00090855523862 0.0189631901863 0.0180546349477 +UniRef50_UPI0002E0BEDB hypothetical protein 1.7760808452e-05 0.00015597211847 0.000138211310018 +UniRef50_M5Q4Y7 2.89246005691e-05 0.000109609907984 8.06853074149e-05 +UniRef50_P77425 Allantoate amidohydrolase 0.00376138962292 0.00113493120803 -0.00262645841489 +UniRef50_P54161 5 3 exonuclease 1.14458439327e-05 0.00230753040488 0.00229608456095 +UniRef50_B1HWM5 7.98241554919e-06 0.00398464379417 0.00397666137862 +UniRef50_Q9PII5 Diaminopimelate decarboxylase 1.14027009308e-05 0.000122933098996 0.000111530398065 +UniRef50_H8GZA7 0.000226447684417 0.0130842386823 0.0128577909979 +UniRef50_Q4QLY5 Glycine tRNA ligase beta subunit 0.00382498002463 0.000756874595285 -0.00306810542934 +UniRef50_P52007 Protein YecM 0.00507305819682 0.000940831981157 -0.00413222621566 +UniRef50_UPI0003ADBF76 PREDICTED 0.000126588215871 3.17782038419e-05 -9.48100120291e-05 +UniRef50_C1D104 0.00018874299443 0.0384699961574 0.038281253163 +UniRef50_A0PTP8 Aminomethyltransferase 7.11464589601e-06 1.13745332077e-05 4.25988731169e-06 +UniRef50_UPI00037044B2 hypothetical protein 8.48581228785e-06 7.96061611544e-06 -5.2519617241e-07 +UniRef50_A3QF48 Adenylate kinase 9.04088315146e-06 3.00943215498e-05 2.10534383983e-05 +UniRef50_UPI000465597A phosphate starvation inducible E 4.14509753184e-05 3.31811406148e-05 -8.2698347036e-06 +UniRef50_A4WT80 NADH quinone oxidoreductase subunit N 5.91907291573e-05 8.2773071598e-05 2.35823424407e-05 +UniRef50_I0ELD1 9.45290456222e-05 0.00067449100513 0.000579961959508 +UniRef50_UPI000395686C 30S ribosomal protein S15 0.000342145810872 0.000881804465431 0.000539658654559 +UniRef50_Q2KU87 Phosphoheptose isomerase 1.05189883984e-05 1.62116606768e-05 5.6926722784e-06 +UniRef50_B0VBV4 0.00018718313497 0.00558632761365 0.00539914447868 +UniRef50_Q9RTX1 9.58086266163e-05 0.0236445439968 0.0235487353702 +UniRef50_UPI0004648F0C mechanosensitive ion channel protein MscL 0.000408186592693 9.56309713016e-05 -0.000312555621391 +UniRef50_A5W5N5 Fatty acid cistrans isomerase 0.00059177584712 0.00027358788728 -0.00031818795984 +UniRef50_P48591 Ribonucleoside diphosphate reductase large subunit 2.46591553521e-06 8.3125960094e-05 8.06600445588e-05 +UniRef50_D2ASS3 0.000791214937858 0.0257388377059 0.024947622768 +UniRef50_Q8CR16 0.010511605922 0.00441836764752 -0.00609323827448 +UniRef50_L0RET5 3.25170106831e-05 8.35133745445e-05 5.09963638614e-05 +UniRef50_A1U1J0 6.99467051318e-06 9.23839939314e-06 2.24372887996e-06 +UniRef50_U3H8E5 7.29893643187e-07 6.00374000749e-07 -1.29519642438e-07 +UniRef50_K7S6P7 DEAD DEAH box helicase 7.85338395664e-05 0.0288323371967 0.0287538033571 +UniRef50_Q8D1U5 Protein NrdI 2.07799648781e-05 6.39510001023e-05 4.31710352242e-05 +UniRef50_M9VHZ8 0.000228779387182 0.000847562781822 0.00061878339464 +UniRef50_UPI0002000914 non ribosomal peptide synthetase like protein 7.7798209129e-05 0.000138315656511 6.0517447382e-05 +UniRef50_UPI0003B35CAD hypothetical protein 3.70378817718e-05 6.51042342623e-05 2.80663524905e-05 +UniRef50_B4SCX8 Phosphoribosyl AMP cyclohydrolase 1.38213868875e-05 6.16540771858e-05 4.78326902983e-05 +UniRef50_P37685 Aldehyde dehydrogenase B 0.00471161083383 0.008544838004 0.00383322717017 +UniRef50_A0R979 DNA topoisomerase 3 0.0134837050977 0.00602666265254 -0.00745704244516 +UniRef50_Q8RH06 0.000348280132548 0.000311430097992 -3.6850034556e-05 +UniRef50_O34514 o succinylbenzoate synthase 4.61700594718e-05 0.00227650642377 0.0022303363643 +UniRef50_UPI000382F305 hypothetical protein, partial 8.12819209331e-05 5.14264392006e-05 -2.98554817325e-05 +UniRef50_P64176 Macrolide export protein MacA 0.00251264096071 0.000636039558701 -0.00187660140201 +UniRef50_Q5ZZU2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.58356009293e-05 1.39532238939e-05 -1.8823770354e-06 +UniRef50_UPI00036CA565 50S ribosomal protein L4 1.35508233708e-05 0.00015597597618 0.000142425152809 +UniRef50_B9ADD3 0.000488128433862 0.000613114266848 0.000124985832986 +UniRef50_UPI00037ABBDF hypothetical protein 2.3662529626e-05 9.34364467829e-05 6.97739171569e-05 +UniRef50_A0QSU4 0.000264870866007 0.00551275732244 0.00524788645643 +UniRef50_UPI000369A760 hypothetical protein, partial 6.32086040011e-05 1.94475906743e-05 -4.37610133268e-05 +UniRef50_W4HGC6 5.45518734675e-06 1.21290005298e-05 6.67381318305e-06 +UniRef50_R5HWX2 Cys Met metabolism PLP dependent enzyme 0.000402431200716 0.00257612717393 0.00217369597321 +UniRef50_F2JHX4 ABC type transporter, periplasmic subunit 0.000111134245983 0.000650174786569 0.000539040540586 +UniRef50_Q1J2D3 Permease YjgP YjgQ 0.000107750520127 0.012544677399 0.0124369268789 +UniRef50_S9QS42 6.44134353292e-06 4.13556428956e-05 3.49142993627e-05 +UniRef50_B2V2J6 Sporulation protein YqfD 0.000100662930362 0.00202779999997 0.00192713706961 +UniRef50_Q9RW17 0.000562017339689 0.064927124305 0.0643651069653 +UniRef50_UPI0002489F97 hemolysin type calcium binding region, partial 5.471271286e-05 1.2017202591e-05 -4.2695510269e-05 +UniRef50_UPI00045EBAA8 surfeit 1 2.17623619606e-05 4.06264267287e-05 1.88640647681e-05 +UniRef50_U2Z2J1 1.41032048053e-06 1.17072917654e-06 -2.3959130399e-07 +UniRef50_A0RAR3 1.93211698514e-05 0.000131641919103 0.000112320749252 +UniRef50_UPI000367CE0F hypothetical protein, partial 5.12754443347e-05 5.69996666334e-05 5.7242222987e-06 +UniRef50_G2L3N1 0.00212915152782 0.000373031627616 -0.0017561199002 +UniRef50_Q9ZJL8 ATP dependent Clp protease ATP binding subunit ClpX 8.49555863898e-05 0.00375746149196 0.00367250590557 +UniRef50_S9Z4U8 5.3143967059e-05 1.879604501e-05 -3.4347922049e-05 +UniRef50_A6LUE7 0.000883734169502 0.000990110784359 0.000106376614857 +UniRef50_W8SMD0 Flagellar protein FlaF 0.000101999844656 6.88660170806e-05 -3.31338275754e-05 +UniRef50_B9UQU3 PI 2a backbone protein 0.000249279997828 8.4255836002e-05 -0.000165024161826 +UniRef50_UPI000476AC5C hypothetical protein 3.79524603294e-05 4.5218090573e-05 7.2656302436e-06 +UniRef50_Q5HQH1 Adapter protein MecA 0.0228932416539 0.00722435550387 -0.01566888615 +UniRef50_Q8XHL9 Glycine tRNA ligase 0.000352098439873 0.00143030494717 0.0010782065073 +UniRef50_F6FZF8 0.00041918899485 0.000210439457392 -0.000208749537458 +UniRef50_Q30RX5 Chemotaxis response regulator protein glutamate methylesterase 9.73473575703e-05 1.09862442536e-05 -8.63611133167e-05 +UniRef50_Q9HUK1 DNA topoisomerase 4 subunit A 0.000577647555086 0.00521748489668 0.00463983734159 +UniRef50_Q6F9W4 LPS assembly protein LptD 0.000248487335777 0.00890409248528 0.0086556051495 +UniRef50_UPI000378F2FD hypothetical protein 6.5307921523e-06 1.32152173655e-05 6.6844252132e-06 +UniRef50_A4WSI7 0.00416400641365 0.00133436256722 -0.00282964384643 +UniRef50_P9WNM4 Bifunctional enzyme CysN CysC 3.14446534612e-06 4.95579117036e-05 4.64134463575e-05 +UniRef50_P73450 Nitrate transport ATP binding protein NrtC 2.10282309429e-05 3.6045148364e-06 -1.74237161065e-05 +UniRef50_V9VLZ2 Cell wall shape determining protein 0.00918935409407 0.00268558176636 -0.00650377232771 +UniRef50_A0A024J9B5 Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit 3.35192986085e-05 4.99821955176e-05 1.64628969091e-05 +UniRef50_N6YLX8 Putative metal dependent RNase 8.45071246435e-05 3.75979763788e-05 -4.69091482647e-05 +UniRef50_G9WG62 ABC transporterpermease protein 0.0153078668516 0.00326741779454 -0.0120404490571 +UniRef50_R5LJ16 Putative phage terminase large subunit 1.65055381936e-05 1.1859735235e-05 -4.6458029586e-06 +UniRef50_B7IFM5 Ribose phosphate pyrophosphokinase 0.000112079917295 6.46640619433e-05 -4.74158553517e-05 +UniRef50_B9E484 0.00136315365789 0.000547579692773 -0.000815573965117 +UniRef50_UPI00034A1580 hypothetical protein 1.18303120535e-05 2.43131705021e-05 1.24828584486e-05 +UniRef50_H9KE53 1.43744657801e-05 1.01731281856e-05 -4.2013375945e-06 +UniRef50_P0A9K2 Protein PhoH 0.00217204459347 0.00047889195437 -0.0016931526391 +UniRef50_A4VGY1 Uroporphyrin III C methyltransferase, putative 0.000271809248739 0.000162858477137 -0.000108950771602 +UniRef50_C1C967 N anthranilate isomerase 0.00727905669673 0.00592385942309 -0.00135519727364 +UniRef50_UPI0003B66D36 hypothetical protein, partial 4.03255982831e-05 5.70835912348e-05 1.67579929517e-05 +UniRef50_N8TNI2 0.00162379728052 0.00835066260107 0.00672686532055 +UniRef50_Q6A9Q4 UDP N acetylmuramoylalanine D glutamate ligase 0.000185201372824 0.00486060792734 0.00467540655452 +UniRef50_UPI00037E4DB6 hypothetical protein 2.18520034376e-05 2.09396069493e-05 -9.123964883e-07 +UniRef50_UPI0003607BC8 hypothetical protein 4.05066145205e-05 1.523891922e-05 -2.52676953005e-05 +UniRef50_B9KSY4 0.00805241181623 0.00114932886837 -0.00690308294786 +UniRef50_UPI0003B3F32A molecular chaperone DnaK 1.40668500281e-05 2.79341150532e-06 -1.12734385228e-05 +UniRef50_E8SJW5 Membrane protein, putative 0.0113906752525 0.00194342040142 -0.00944725485108 +UniRef50_A9D6B9 1.51666587333e-05 1.93203151693e-05 4.153656436e-06 +UniRef50_UPI00035DC5BA MULTISPECIES 5.27872907138e-06 9.04177534547e-06 3.76304627409e-06 +UniRef50_UPI0002630664 dTDP 4 dehydrorhamnose reductase 1.27817555832e-05 1.46852950704e-05 1.9035394872e-06 +UniRef50_E3EZ66 2.20428722519e-06 1.58423616913e-06 -6.2005105606e-07 +UniRef50_UPI000471B278 MFS transporter 9.27278795047e-06 7.750209519e-06 -1.52257843147e-06 +UniRef50_A8I9B9 Enoyl [acyl carrier protein] reductase [NADH] 0.00343762479255 0.000468756674913 -0.00296886811764 +UniRef50_B0SHV0 0.00444469687498 0.000422817535233 -0.00402187933975 +UniRef50_A1B214 Cupin 2, conserved barrel domain protein 0.0145335169199 0.00215723238787 -0.012376284532 +UniRef50_Q83MD7 Vitamin B12 binding protein 0.0018578542311 0.000568565053978 -0.00128928917712 +UniRef50_UPI0003C7EBB2 aminodeoxychorismate synthase 4.48722221794e-06 5.9761584313e-06 1.48893621336e-06 +UniRef50_A1TT41 Non canonical purine NTP pyrophosphatase 9.65486505716e-05 1.52117039665e-05 -8.13369466051e-05 +UniRef50_R4ZCR7 MFS transporter 0.000110483704055 0.000142321303707 3.1837599652e-05 +UniRef50_F8FR25 0.0229717920433 0.0057390990122 -0.0172326930311 +UniRef50_UPI00037A465E hypothetical protein 3.29121339423e-06 5.61358938868e-06 2.32237599445e-06 +UniRef50_I0C665 RsbU 0.0224370329922 0.005916366424 -0.0165206665682 +UniRef50_D6B3Y8 FscRII 0.000279982231076 0.000578992362705 0.000299010131629 +UniRef50_UPI000237CE2F malto oligosyltrehalose synthase 2.68636393645e-06 0.000125425331759 0.000122738967823 +UniRef50_D9SLZ7 Methyltransferase type 11 0.000193914035367 0.000798082328577 0.00060416829321 +UniRef50_A5IP44 Acyl CoA dehydrogenase like protein 0.00644614401885 0.00227368634027 -0.00417245767858 +UniRef50_G8VEA6 0.000109039659282 0.00452995645857 0.00442091679929 +UniRef50_B2S968 Shikimate dehydrogenase 4.83467752864e-05 3.29684136972e-05 -1.53783615892e-05 +UniRef50_Q985A5 GTPase Era 0.00354482028004 0.000598830737824 -0.00294598954222 +UniRef50_P0AEP8 Glyoxylate carboligase 0.00226201967424 0.00183034898026 -0.00043167069398 +UniRef50_UPI000362A221 50S ribosomal protein L20 1.22305691523e-05 3.53719256442e-05 2.31413564919e-05 +UniRef50_Q9KDS9 Biotin carboxylase 0.000638164224375 6.48661460837e-06 -0.000631677609767 +UniRef50_V5XTD8 Periplasmic ribose binding protein 0.000991023531941 0.00273121725073 0.00174019371879 +UniRef50_Y2QRV2 0.0397186898838 0.00656567195954 -0.0331530179243 +UniRef50_Q8CT45 0.00305297248179 8.5042492089e-05 -0.0029679299897 +UniRef50_A5GF42 Dihydroorotase 4.18782441897e-06 1.58033532722e-05 1.16155288532e-05 +UniRef50_B0REY1 3 isopropylmalate dehydratase small subunit 1.16054085059e-05 0.00227488793147 0.00226328252296 +UniRef50_F3H6D0 Acriflavin resistance protein 0.000767357747733 0.000201226434568 -0.000566131313165 +UniRef50_M1N4V8 Signal transduction histidine kinase 0.000100484291618 0.000330894831765 0.000230410540147 +UniRef50_Q2YVN2 0.00292164706521 0.000436428628368 -0.00248521843684 +UniRef50_Q46836 Leader peptidase PppA 0.00365865134071 0.00108797187089 -0.00257067946982 +UniRef50_S9RYR7 Putative signal transduction protein 0.000244991505619 0.000191662965974 -5.3328539645e-05 +UniRef50_UPI0003706081 hypothetical protein 3.56502111641e-05 0.0041149957771 0.00407934556594 +UniRef50_UPI000289FF7D transporter 0.00017741493035 6.47335387361e-05 -0.000112681391614 +UniRef50_UPI000371D807 hypothetical protein 2.78606246914e-05 0.000141544340624 0.000113683715933 +UniRef50_Q73CC7 3.35429500157e-05 0.00052032740856 0.000486784458544 +UniRef50_M4MLZ6 0.000208734789344 8.78336770246e-05 -0.000120901112319 +UniRef50_Q8CM57 Degenerate transposase 0.000291087113737 3.08122633281e-05 -0.000260274850409 +UniRef50_UPI000363DABC hypothetical protein 0.000367877302268 6.2726447897e-05 -0.000305150854371 +UniRef50_UPI0003793433 hypothetical protein 1.80434264629e-05 3.09630487953e-06 -1.49471215834e-05 +UniRef50_X6KX92 0.00273404061406 0.00052376873415 -0.00221027187991 +UniRef50_A8LNJ7 0.00018814459526 7.12891990516e-05 -0.000116855396208 +UniRef50_UPI0003663A62 30S ribosomal protein S17 8.88165428637e-05 0.000288268292986 0.000199451750122 +UniRef50_Q5HKF0 ATP dependent dethiobiotin synthetase BioD 0.00959930863855 0.00565770607504 -0.00394160256351 +UniRef50_C4RLU4 Feruloyl esterase 0.000547216181878 0.000142968129508 -0.00040424805237 +UniRef50_A6M1U5 Methyl accepting chemotaxis sensory transducer 0.000478830310969 0.00137857108573 0.000899740774761 +UniRef50_Q72KS4 Lon protease 1 6.25254696945e-06 0.000106588458217 0.000100335911248 +UniRef50_P37093 Type II secretion system protein E 0.00367903452528 0.0116904005164 0.00801136599112 +UniRef50_Q897T7 Transcriptional regulatory protein 0.000134656119687 0.000225146153897 9.049003421e-05 +UniRef50_Q8Y5E4 Diadenylate cyclase 0.0218916624843 0.0120185736106 -0.0098730888737 +UniRef50_V5SSA5 0.00100901552059 0.000153677383443 -0.000855338137147 +UniRef50_Q9KNV7 Tryptophan tRNA ligase 0.00737278118224 0.00516879867676 -0.00220398250548 +UniRef50_A7G9R9 4.2589427e-05 2.26525643877e-05 -1.99368626123e-05 +UniRef50_P76445 Inner membrane protein YeiU 0.00493739621862 0.00143003707713 -0.00350735914149 +UniRef50_Q03RR1 Bifunctional protein FolD 5.50890689464e-06 3.16153426798e-06 -2.34737262666e-06 +UniRef50_Q8CQA9 Integral membrane protein LmrP 0.0205803565841 0.00522429252534 -0.0153560640588 +UniRef50_A0A022FNV0 LysR family transcriptional regulator 5.75000007597e-05 1.42048841905e-05 -4.32951165692e-05 +UniRef50_F8LV80 IS861, transposase OrfB 0.000256344357143 3.8387094787e-05 -0.000217957262356 +UniRef50_B9E9D4 Respiratory nitrate reductase delta chain 0.00945605383046 0.0040477736899 -0.00540828014056 +UniRef50_M9VLK0 Endonuclease III 0.000640301204992 0.00543209645913 0.00479179525414 +UniRef50_Q5WAN2 GntR family transcriptional regulator 0.00060586971003 0.00376152569634 0.00315565598631 +UniRef50_I0C1S4 Carboxylesterase 0.0257218159013 0.00771209194544 -0.0180097239559 +UniRef50_Q161I1 0.000166116858309 5.78718497574e-05 -0.000108245008552 +UniRef50_H8GVV6 Glutathione regulated potassium efflux system protein KefB, putative 6.56878170843e-05 0.00904746496659 0.00898177714951 +UniRef50_C7ZXI9 Mn2 and Fe2 transporter 0.0191542607107 0.00358632559457 -0.0155679351161 +UniRef50_Q9RUS5 Major facilitator family protein 9.10335985978e-05 0.0141888842712 0.0140978506726 +UniRef50_B7JGF8 Enterotoxin 1.67205367541e-05 0.000745041891486 0.000728321354732 +UniRef50_D5T2X9 0.000148228383511 5.20222868998e-05 -9.62060966112e-05 +UniRef50_UPI0004413622 P loop containing nucleoside triphosphate hydrolase protein 1.37844864014e-06 4.78025689588e-07 -9.00422950552e-07 +UniRef50_Q7CQY4 Chitoporin 0.00140175613114 0.000203901062277 -0.00119785506886 +UniRef50_O31645 PTS system mannose specific EIIBCA component 0.0103999745738 0.00432243540091 -0.00607753917289 +UniRef50_M2PRH7 DNA topology modulation protein 1.56254310224e-05 0.000356356982486 0.000340731551464 +UniRef50_UPI0004680367 hemolysin 7.31133660879e-06 1.27029921056e-05 5.39165549681e-06 +UniRef50_M2JNM4 Cellobiose phosphotransferase system IIC component 9.98640182185e-05 0.00116678526318 0.00106692124496 +UniRef50_A6LW23 L asparaginase, type II 0.000816905567068 0.000575803175682 -0.000241102391386 +UniRef50_Q2YUT2 0.0104591965444 0.00156914325686 -0.00889005328754 +UniRef50_UPI0003697307 ATP dependent Clp protease adaptor protein ClpS 0.000618276708037 0.000458068884413 -0.000160207823624 +UniRef50_D3FAE3 Plectin 0.000182502582427 0.000175958702661 -6.543879766e-06 +UniRef50_UPI000466A47B peptide ABC transporter ATP binding protein 1.04013050199e-05 3.92156841864e-05 2.88143791665e-05 +UniRef50_UPI00047933C3 peptide permease BMEII0860 1.51697761182e-05 5.41008384753e-05 3.89310623571e-05 +UniRef50_A1WIM3 Urease subunit alpha 0.0287686207112 0.0472948285247 0.0185262078135 +UniRef50_UPI000476A297 nitrogen regulatory protein 1.61537033214e-05 2.30484413805e-05 6.8947380591e-06 +UniRef50_D8JEK3 0.000144815596745 0.00760531777493 0.00746050217818 +UniRef50_P31133 Putrescine binding periplasmic protein 0.00199631077004 0.000342219856026 -0.00165409091401 +UniRef50_V8G5F1 Cell wall binding protein 0.000810775824679 0.00145335553833 0.000642579713651 +UniRef50_UPI0003B2E824 4 alpha glucanotransferase 8.4055187984e-06 0.000463652596055 0.000455247077257 +UniRef50_B2TBH4 Major facilitator superfamily MFS_1 0.000835113341018 0.00104840558383 0.000213292242812 +UniRef50_M1E1G1 LOV protein 0.000568373790029 0.000396398262003 -0.000171975528026 +UniRef50_UPI00047D2208 hypothetical protein 0.00113242911979 0.000281160496261 -0.000851268623529 +UniRef50_U4PPL6 0.0150330978336 0.00227362625767 -0.0127594715759 +UniRef50_B0V7I3 0.00128516843625 0.00628685166454 0.00500168322829 +UniRef50_UPI0003616A07 MULTISPECIES 0.000140459180816 4.60301497026e-05 -9.44290311134e-05 +UniRef50_P52612 Flagellum specific ATP synthase 0.00360782999344 0.000484137381696 -0.00312369261174 +UniRef50_Q7WQL9 Glutamate 5 kinase 0.000265089036265 0.00831752583732 0.00805243680106 +UniRef50_I7BYL0 8.19357388814e-06 0.000908091754472 0.000899898180584 +UniRef50_A7HIP1 LigA 0.000491029858384 0.000577620184029 8.6590325645e-05 +UniRef50_E2XUR6 Amino acid ABC transporter, permease protein 0.000838445631845 0.00539986048301 0.00456141485117 +UniRef50_Q9RRW1 Ribonucleoside diphosphate reductase 0.000190794174278 0.0301075807813 0.029916786607 +UniRef50_UPI0003671810 hypothetical protein 2.43934375552e-05 2.78321809817e-05 3.4387434265e-06 +UniRef50_M1LPJ1 Transcriptional regulator, RpiR family 0.00034933983881 0.000454333392607 0.000104993553797 +UniRef50_Q2RV04 GTPase Obg 0.00409545719957 0.00060408242017 -0.0034913747794 +UniRef50_UPI0002887BFA HAD superfamily hydrolase 6.63866576088e-05 0.000182443965008 0.000116057307399 +UniRef50_Q8FCW0 Phosphoglycolate phosphatase 0.00212946742435 0.00174204522803 -0.00038742219632 +UniRef50_B9KNX2 Transcriptional regulator, ArsR family 0.00125481069959 0.000492194508663 -0.000762616190927 +UniRef50_UPI00047A420C hypothetical protein 1.38019373523e-05 9.63401699748e-06 -4.16792035482e-06 +UniRef50_B1KX53 Putative ribosome biogenesis GTPase RsgA 0.000189058091245 0.00167472460783 0.00148566651658 +UniRef50_UPI00035FFD13 hypothetical protein 0.000163237315015 4.13073941763e-05 -0.000121929920839 +UniRef50_D6SI32 0.000390849669984 1.62694473932e-05 -0.000374580222591 +UniRef50_R7PWI6 0.00376933097395 0.000253829154983 -0.00351550181897 +UniRef50_UPI00040A8670 beta hexosaminidase 6.14562275701e-06 2.63722155292e-05 2.02265927722e-05 +UniRef50_A3ZZL8 8.50043046296e-06 3.64219781734e-05 2.79215477104e-05 +UniRef50_UPI0004764961 molecular chaperone GroEL 2.92488264445e-05 9.06408376429e-06 -2.01847426802e-05 +UniRef50_Q88ND5 Alginate biosynthesis protein AlgA 2.5468799188e-05 2.93741622563e-05 3.9053630683e-06 +UniRef50_UPI000472B134 3 oxoacyl ACP reductase 1.11663287663e-05 1.34790609291e-05 2.3127321628e-06 +UniRef50_D7FE80 Sialic acid binding adhesin SabA 7.64657641136e-05 0.0028184570463 0.00274199128219 +UniRef50_P07102 Periplasmic AppA protein 0.00514775097718 0.00058609691446 -0.00456165406272 +UniRef50_K9BV07 0.00021679158317 0.0119538457782 0.011737054195 +UniRef50_A6TE36 Undecaprenyl diphosphatase 0.00518134590673 1.63013729954e-05 -0.00516504453373 +UniRef50_UPI000288E151 ABC transporter 7.5515023376e-06 2.33972408802e-05 1.58457385426e-05 +UniRef50_R8AGJ1 0.00406232114679 8.64420507871e-05 -0.003975879096 +UniRef50_Q9HQU4 Inosine 5 monophosphate dehydrogenase 0.00256934046596 0.000833345775886 -0.00173599469007 +UniRef50_UPI0001758483 PREDICTED 1.5605983435e-06 1.6052811522e-06 4.46828087e-08 +UniRef50_P75843 0.00250472618045 0.000499894598512 -0.00200483158194 +UniRef50_UPI00047BEFD1 nucleotidyl transferase 3.16491338201e-05 5.29431667504e-06 -2.63548171451e-05 +UniRef50_H2HGS8 Phage associated protein 4.11908735051e-05 5.38977115361e-05 1.2706838031e-05 +UniRef50_M9SEQ2 0.000256690416185 0.000287646141427 3.0955725242e-05 +UniRef50_P75849 0.0022881093597 0.0160981301435 0.0138100207838 +UniRef50_M4X4D0 ATP dependent RNA helicase RhlE 7.53966688803e-05 0.00019589980848 0.0001205031396 +UniRef50_K9SGS9 ATPase associated with various cellular activities AAA_5 0.000306826554659 0.00129169752968 0.000984870975021 +UniRef50_Q83BB6 RNA polymerase sigma factor RpoD 0.00317366191555 0.000523293986209 -0.00265036792934 +UniRef50_H7CRL6 0.000832851368604 0.003942881016 0.0031100296474 +UniRef50_H7E757 RHS repeat associated core domain protein 0.000891874136272 0.000229393947457 -0.000662480188815 +UniRef50_B5ZPH5 0.000211331379804 2.7464720449e-05 -0.000183866659355 +UniRef50_W5XAZ0 OmpR family two component response regulator 1.46083727988e-05 2.9775817522e-05 1.51674447232e-05 +UniRef50_J0WVH5 2.37034264883e-05 1.48433152947e-05 -8.8601111936e-06 +UniRef50_C0DVM5 4.44723547594e-05 2.70130320718e-05 -1.74593226876e-05 +UniRef50_P37545 0.026878234352 0.0064674087178 -0.0204108256342 +UniRef50_UPI00040973E2 hypothetical protein 1.26498779992e-05 1.18028896456e-05 -8.469883536e-07 +UniRef50_Q161C9 0.00108362703757 0.00118117786705 9.755082948e-05 +UniRef50_S7VZD9 Excinuclease ABC 4.52867357689e-06 7.64508874705e-05 7.19222138936e-05 +UniRef50_G8SMI0 0.000243986431371 6.37939377317e-05 -0.000180192493639 +UniRef50_A0QP90 Glucose 6 phosphate 1 dehydrogenase 0.0100977095399 0.00304653127692 -0.00705117826298 +UniRef50_Q5HJ36 0.00270637297849 0.000904030730184 -0.00180234224831 +UniRef50_T0V0U2 Cell division initiation protein DivIVA 0.00718417671992 0.00224228769949 -0.00494188902043 +UniRef50_UPI000289A6DA transposase 6.0957187001e-05 0.00015156308984 9.0605902839e-05 +UniRef50_C5CWI4 ABC transporter related 0.00142868891815 0.00606903668809 0.00464034776994 +UniRef50_A7GTX6 Pseudouridine synthase 0.00729480451685 0.00175269365183 -0.00554211086502 +UniRef50_Q89AP7 Acetolactate synthase large subunit 0.00108658124755 0.0118663381865 0.010779756939 +UniRef50_UPI0003EE9416 peptide ABC transporter permease, partial 2.8923432937e-05 0.000259579795167 0.00023065636223 +UniRef50_L7WXH7 0.0044028690051 0.00167160399168 -0.00273126501342 +UniRef50_Q2T6U3 Acetyltransferase, GNAT family 0.00237930456555 0.00319361492506 0.00081431035951 +UniRef50_F9YYI3 Myo inositol 2 dehydrogenase 0.000116388280223 0.00389773480368 0.00378134652346 +UniRef50_UPI0001FFEA7A ferredoxin 2.41194998913e-05 0.000191653349854 0.000167533849963 +UniRef50_A5UJI4 Predicted type I restriction modification enzyme, subunit S 0.000467957837425 0.00140130584148 0.000933348004055 +UniRef50_Q2RN88 Shikimate dehydrogenase 5.56668886371e-05 4.67665148312e-05 -8.9003738059e-06 +UniRef50_UPI00017449C1 permease YjgP YjgQ family protein 0.000134816424593 0.000210940503716 7.6124079123e-05 +UniRef50_UPI0003B4DD27 hypothetical protein 1.68808845918e-05 2.26102359946e-05 5.7293514028e-06 +UniRef50_V7Z055 0.000125704848161 0.000144820213097 1.9115364936e-05 +UniRef50_E6S2L0 Transporter, major facilitator family protein 0.000157285828689 0.00442479496948 0.00426750914079 +UniRef50_UPI00046F82BE thioredoxin reductase, partial 9.36163414185e-05 0.000131847423028 3.82310816095e-05 +UniRef50_R5BF46 ATPase 4.671178724e-06 0.00296508276916 0.00296041159044 +UniRef50_P0A9L8 Pyrroline 5 carboxylate reductase 0.00227466506142 0.00316821157666 0.00089354651524 +UniRef50_A4XQZ9 0.000389196050501 9.55701308745e-05 -0.000293625919627 +UniRef50_M0HKI8 0.000169038771396 0.000105433118773 -6.3605652623e-05 +UniRef50_A9VYY8 0.0132358777563 0.00167601267052 -0.0115598650858 +UniRef50_UPI0003490FD2 hypothetical protein 0.00033353456421 0.000185056727014 -0.000148477837196 +UniRef50_F3LQG5 0.000672271536642 0.000490831088969 -0.000181440447673 +UniRef50_A5CX20 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.99971583594e-05 1.09236639091e-05 -9.0734944503e-06 +UniRef50_UPI0002194206 amino acid transporter, partial 5.30347412955e-05 9.49391575034e-05 4.19044162079e-05 +UniRef50_M9REM3 0.00018294959072 0.0140868512624 0.0139039016717 +UniRef50_UPI00037A4658 hypothetical protein 9.0978894321e-06 1.74109207959e-05 8.3130313638e-06 +UniRef50_Q5HM80 0.01259695944 0.000876320340766 -0.0117206390992 +UniRef50_UPI000464EDC8 hypothetical protein 4.15322467193e-05 6.74947754923e-06 -3.47827691701e-05 +UniRef50_UPI000479E693 ribonuclease 1.25103696981e-05 7.10842663511e-06 -5.40194306299e-06 +UniRef50_UPI00037CFC12 hypothetical protein 9.28493446813e-06 6.4782728919e-06 -2.80666157623e-06 +UniRef50_UPI00037AC159 hypothetical protein 0.00017501462148 0.000103454507633 -7.1560113847e-05 +UniRef50_D3QFC7 0.00403537440522 0.0110977386727 0.00706236426748 +UniRef50_Q49YE7 0.00720175833756 0.000697046555765 -0.0065047117818 +UniRef50_UPI000441CD41 PREDICTED 3.35893330819e-05 3.59038039356e-05 2.3144708537e-06 +UniRef50_W7VM91 Transcriptional regulator, LuxR family 0.000101119463521 0.000160607955043 5.9488491522e-05 +UniRef50_UPI0003B30FE2 DNA mismatch repair protein MutS 2.02197411948e-06 5.39539539351e-05 5.19319798156e-05 +UniRef50_Q3J221 Putative head portal protein 0.0120036240914 0.00334527746578 -0.00865834662562 +UniRef50_K9ZYD1 NADH dehydrogenase, FAD containing subunit 0.000105639735687 0.0411445664379 0.0410389267022 +UniRef50_I0DPX6 3.64367227341e-06 1.14576477496e-05 7.81397547619e-06 +UniRef50_E2PCU1 FimV domain protein 5.3977977438e-05 0.00143978941099 0.00138581143355 +UniRef50_X1C061 Marine sediment metagenome DNA, contig 1.83890501541e-05 3.81191636444e-05 1.97301134903e-05 +UniRef50_S4XSY7 1.32534925002e-05 0.000194230758481 0.000180977265981 +UniRef50_UPI00035E4DB7 hypothetical protein 4.62902798619e-05 1.22885114361e-05 -3.40017684258e-05 +UniRef50_P0C0G1 Dihydropteroate synthase 0.00270517267294 0.00438399903562 0.00167882636268 +UniRef50_T8S6T3 0.00135019294347 0.000457855356899 -0.000892337586571 +UniRef50_Q8G3N6 Inosine 5 monophosphate dehydrogenase 0.000206529276029 0.00791797129841 0.00771144202238 +UniRef50_E4R955 Peptidase C26 0.00129535878096 0.00148122032997 0.00018586154901 +UniRef50_C5BCZ7 Adenine phosphoribosyltransferase 3.80965449382e-05 5.42123738361e-05 1.61158288979e-05 +UniRef50_Q9HTU7 UPF0178 protein PA5247 0.000471366989714 0.00103017455301 0.000558807563296 +UniRef50_P50466 Aerotaxis receptor 0.00260915513211 0.000400950713092 -0.00220820441902 +UniRef50_Q55F83 Enolase B 4.33153144371e-06 3.99357440055e-05 3.56042125618e-05 +UniRef50_P42064 Oligopeptide transport ATP binding protein AppD 1.90622272107e-05 0.0256275899957 0.0256085277685 +UniRef50_P44681 Ribosome binding ATPase YchF 0.0232535153528 0.011621729977 -0.0116317853758 +UniRef50_UPI000468F00D PEP synthetase regulatory protein 1.78353928699e-05 1.29245063724e-05 -4.9108864975e-06 +UniRef50_UPI00046E1553 PREDICTED 9.36920863679e-05 0.000122160061309 2.84679749411e-05 +UniRef50_B3W746 PTS system, IID component 0.00809427137532 0.00413135976654 -0.00396291160878 +UniRef50_Q92HL2 Transcription termination factor Rho 0.0027179094229 0.00138619795747 -0.00133171146543 +UniRef50_UPI0002DB231A peptide ABC transporter ATP binding protein 5.45746799592e-05 0.000106018118421 5.14434384618e-05 +UniRef50_E8Q9V7 ABC transporter permease 0.000291957199651 0.000660935098783 0.000368977899132 +UniRef50_O88958 Glucosamine 6 phosphate isomerase 1 1.05649075872e-05 9.73035413219e-06 -8.3455345501e-07 +UniRef50_F2JYD9 Phenylalanine racemase 0.000221941723168 0.00442104988728 0.00419910816411 +UniRef50_P77324 Putative xanthine dehydrogenase YagS FAD binding subunit 0.00240827880373 0.0165337041163 0.0141254253126 +UniRef50_UPI0001744E5F methionine aminopeptidase 3.31219439428e-05 2.31237536079e-05 -9.9981903349e-06 +UniRef50_Q4ZNV9 Histidinol dehydrogenase 0.001162133287 0.012368122376 0.011205989089 +UniRef50_S4XFR3 0.00026925980265 0.00538242793412 0.00511316813147 +UniRef50_A1V623 0.000323554565342 0.000144618331822 -0.00017893623352 +UniRef50_D4HFA9 0.000241462252992 0.00614235102362 0.00590088877063 +UniRef50_U5L575 Oxidoreductase 0.00743618489624 0.00296904898176 -0.00446713591448 +UniRef50_D6AVU9 Ribosome associated heat shock protein 0.000287636788424 0.000552453054395 0.000264816265971 +UniRef50_O80448 Pyridoxal biosynthesis protein PDX1.1 0.0333515319106 0.00804014973239 -0.0253113821782 +UniRef50_Q58952 tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase 0.00252705657621 0.000292392777421 -0.00223466379879 +UniRef50_G0HAL8 Glycerol dehydrogenase 0.00511591409501 0.00139682788584 -0.00371908620917 +UniRef50_A5CSL0 LexA repressor 8.28552593836e-05 1.80794282587e-05 -6.47758311249e-05 +UniRef50_T8JJU2 ATP dependent helicase 0.00210323039841 0.000276068164607 -0.0018271622338 +UniRef50_A5UM96 0.0128754910926 0.00109330429036 -0.0117821868022 +UniRef50_P0A533 Cobyric acid synthase 7.76720141624e-05 0.00430301992896 0.0042253479148 +UniRef50_I1F524 8.65901428226e-06 0.000309363273491 0.000300704259209 +UniRef50_UPI000363B4C5 hypothetical protein 8.03517566738e-06 2.90491680591e-05 2.10139923917e-05 +UniRef50_Q3IVV1 Periplasmic sensor signal transduction histidine kinase 0.00549910638905 0.000165135156678 -0.00533397123237 +UniRef50_S5YP26 Adenylate cyclase 0.000236015896168 0.000440942779127 0.000204926882959 +UniRef50_Q6FF55 Putative Holliday junction resolvase 2.33482089301e-05 0.0075905284963 0.00756718028737 +UniRef50_Q9RQQ0 Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR 0.0126941061623 0.00286176555315 -0.00983234060915 +UniRef50_H4NAZ8 0.000899621515052 0.000192853845235 -0.000706767669817 +UniRef50_P27375 Heat shock protein C 0.00408378587983 0.0033331835299 -0.00075060234993 +UniRef50_K5NMC7 Chaperone usher secretion system usher protein 0.000207536441043 0.00234638341635 0.00213884697531 +UniRef50_UPI00037905B5 hypothetical protein 7.97833275511e-06 0.000147458699481 0.000139480366726 +UniRef50_G8VR36 Anchored repeat type ABC transporter, permease subunit 0.000346709752644 0.00492619480047 0.00457948504783 +UniRef50_D2N5X4 Transcription factor 0.00794938010802 0.00298454288961 -0.00496483721841 +UniRef50_P77174 0.00151442148193 0.00142496794622 -8.945353571e-05 +UniRef50_A9B437 DNA directed RNA polymerase subunit alpha 1.52074500618e-05 7.37153268068e-06 -7.83591738112e-06 +UniRef50_P77171 0.00249486460735 0.000309772767695 -0.00218509183966 +UniRef50_U8XP57 Chemotactic transducer PctC 0.000259402037921 0.000306543118269 4.7141080348e-05 +UniRef50_P57874 Ferrochelatase 0.00759836359763 0.00336068047145 -0.00423768312618 +UniRef50_E1I5H5 0.000488128433862 0.000649047703726 0.000160919269864 +UniRef50_UPI000376F990 hypothetical protein 5.18707273652e-06 2.85377668922e-05 2.33506941557e-05 +UniRef50_R7GG89 Single strand binding protein Primosomal replication protein n 0.000630043773094 0.00184187969737 0.00121183592428 +UniRef50_Q5HLD6 0.000678118542849 0.00107387892798 0.000395760385131 +UniRef50_P61544 UPF0316 protein SA1727 0.019160748111 0.00225458274305 -0.0169061653679 +UniRef50_A6Q235 3 dehydroquinate dehydratase 0.0249522250532 0.00656317858161 -0.0183890464716 +UniRef50_UPI00047D7B73 hypothetical protein 1.76175231887e-05 1.53180141885e-05 -2.2995090002e-06 +UniRef50_Q03KQ7 tRNA and rRNA cytosine C5 methylase 0.00242895725793 0.00242268091399 -6.27634394e-06 +UniRef50_UPI00020D99AC biotin biosynthesis protein BioC 1.73362401872e-05 0.000127198630162 0.000109862389975 +UniRef50_D3SFX6 0.00010446017013 2.69899371775e-05 -7.74702329525e-05 +UniRef50_S6CA35 Truncated bacteriocin ABC transporter ATP binding and permease components 0.00290223195251 0.000612163716228 -0.00229006823628 +UniRef50_A0A009WPV3 TonB dependent receptor family protein 0.000373304000053 0.00723296101974 0.00685965701969 +UniRef50_P77433 0.00185775633497 0.00116926576042 -0.00068849057455 +UniRef50_Q8CQR2 0.00536645704519 0.00104229425363 -0.00432416279156 +UniRef50_G9YY14 9.20947074204e-06 0.000152314126621 0.000143104655879 +UniRef50_UPI00035DA196 hypothetical protein 3.24693159248e-06 1.0167924221e-05 6.92099262852e-06 +UniRef50_B7V896 4.34889341953e-05 0.00027685941112 0.000233370476925 +UniRef50_P09622 Dihydrolipoyl dehydrogenase, mitochondrial 1.87073654482e-05 5.85826053817e-05 3.98752399335e-05 +UniRef50_S5XWD9 0.000522748633442 7.98638276788e-05 -0.000442884805763 +UniRef50_P0AA83 Cytosine permease 0.00360105503114 0.000504075776685 -0.00309697925446 +UniRef50_UPI000474B8BB hypothetical protein 4.32116017962e-05 2.43669720732e-05 -1.8844629723e-05 +UniRef50_UPI000237A428 CBS domain containing protein 0.000110591598297 0.00301825634286 0.00290766474456 +UniRef50_UPI0003B401D2 phosphoglycerate kinase 1.86446654747e-05 1.85246539133e-05 -1.200115614e-07 +UniRef50_D4H9I9 RHS repeat associated core domain protein 0.000115060639321 0.00721047355517 0.00709541291585 +UniRef50_Q893R0 Thiamine phosphate synthase 0.00266956052078 0.00029000003783 -0.00237956048295 +UniRef50_Q9I484 Amino acid ABC transporter periplasmic binding protein 0.00126404873217 0.000444667668252 -0.000819381063918 +UniRef50_P33634 0.00270406881076 0.000772664195847 -0.00193140461491 +UniRef50_A1UT83 50S ribosomal protein L13 0.0149576815013 0.00240122229045 -0.0125564592108 +UniRef50_J9YSG0 Phage infection protein 0.000415711678886 7.22929510835e-05 -0.000343418727803 +UniRef50_UPI000465431D hypothetical protein 8.60111666093e-05 2.0880125924e-05 -6.51310406853e-05 +UniRef50_F6G2W0 Threonine synthase protein 3.63690982897e-05 4.01390958874e-05 3.7699975977e-06 +UniRef50_B7N5W6 D serine dehydratase 0.0042151599935 0.00589012295654 0.00167496296304 +UniRef50_I6XTA1 UPF0225 protein HMPREF9154_3085 2.18595178398e-05 4.14520600316e-05 1.95925421918e-05 +UniRef50_UPI00046AD586 hypothetical protein 2.80778704674e-05 2.15250202293e-05 -6.5528502381e-06 +UniRef50_F8KSY3 ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 5.17813427749e-05 0.00432168989448 0.00426990855171 +UniRef50_I6RX31 0.000529185965684 0.000671174329992 0.000141988364308 +UniRef50_V4R4A7 ThiF domain containing protein 6.16764425151e-06 8.76543612882e-06 2.59779187731e-06 +UniRef50_B7H056 Outer membrane protein oprM 0.000415892670639 0.0065208038143 0.00610491114366 +UniRef50_A8AL69 0.00032493052647 0.00022560683963 -9.932368684e-05 +UniRef50_G4QBM5 4.07985784691e-06 7.96242196527e-06 3.88256411836e-06 +UniRef50_Q3IV70 Polysaccharide export protein 0.00209053076279 0.000559525779014 -0.00153100498378 +UniRef50_E8ZN21 Histone acetyltransferase HPA2 0.000130317372447 0.0011365513536 0.00100623398115 +UniRef50_L5IBW3 Tat pathway signal sequence 0.000236420737772 2.84067837922e-05 -0.00020801395398 +UniRef50_U3SVL6 0.00382102951589 0.00279612671275 -0.00102490280314 +UniRef50_UPI00042907AA hypothetical protein 1.65408186985e-05 2.83116435584e-05 1.17708248599e-05 +UniRef50_A9E033 2.66113763799e-05 4.99995559935e-05 2.33881796136e-05 +UniRef50_Q47N93 Tyrosine tRNA ligase 4.59070881346e-05 0.0011954144084 0.00114950732027 +UniRef50_K0CJC2 4.05378140546e-06 1.09983850836e-05 6.94460367814e-06 +UniRef50_V5AJL1 Competence protein ComM 8.43388398269e-06 4.57830610149e-05 3.73491770322e-05 +UniRef50_B8DJK7 Elongation factor P 1.21872224325e-05 0.000128158356373 0.00011597113394 +UniRef50_A1V9U1 Adenylosuccinate synthetase 0.000150809083773 0.00873929786154 0.00858848877777 +UniRef50_A6M360 Aminotransferase class III 0.000388150403275 0.001054727722 0.000666577318725 +UniRef50_Q55848 Ribose phosphate pyrophosphokinase 0.0240527528546 0.00729803973056 -0.016754713124 +UniRef50_UPI00046EC013 recombinase, partial 7.41869879029e-05 1.98443876556e-05 -5.43426002473e-05 +UniRef50_UPI000402DE31 hypothetical protein 2.04985903401e-05 2.62796293832e-05 5.7810390431e-06 +UniRef50_Q97GM6 Endonuclease MutS2 0.000448887423268 0.000809090988964 0.000360203565696 +UniRef50_A6LT80 Response regulator receiver protein 7.25005100276e-05 0.00186322677009 0.00179072626006 +UniRef50_P0ABI6 Magnesium transport protein CorA 0.00385483980292 0.00320266886493 -0.00065217093799 +UniRef50_P22033 Methylmalonyl CoA mutase, mitochondrial 0.000312623195002 0.00654261376453 0.00622999056953 +UniRef50_A5WFD7 Crossover junction endodeoxyribonuclease RuvC 0.00619797053389 0.00746793640847 0.00126996587458 +UniRef50_H5JT53 Gram negative pili assembly chaperone, N terminal domain protein 0.000216117932552 0.000301343576728 8.5225644176e-05 +UniRef50_N8X4K5 0.00111878636851 0.00467992290136 0.00356113653285 +UniRef50_A0LCH8 Zinc import ATP binding protein ZnuC 1.10963540866e-05 7.03861160429e-06 -4.05774248231e-06 +UniRef50_G7W6N5 NADH 0.000264379894087 0.000191764094291 -7.2615799796e-05 +UniRef50_P57388 2 oxoglutarate dehydrogenase E1 component 1.7055372447e-06 3.76014343838e-06 2.05460619368e-06 +UniRef50_UPI0003755588 hypothetical protein 1.59418311262e-05 4.76436692517e-05 3.17018381255e-05 +UniRef50_A9IIR2 1.04886342216e-05 2.74979196223e-05 1.70092854007e-05 +UniRef50_A3PG41 0.00704041212852 0.00293321179288 -0.00410720033564 +UniRef50_P22675 Argininosuccinate lyase 2.46882077459e-05 1.94930948796e-05 -5.1951128663e-06 +UniRef50_E6MV22 Factor H binding protein 0.000505884119369 0.00176830190746 0.00126241778809 +UniRef50_UPI00038330C2 PREDICTED 2.90923340259e-05 1.17461829378e-05 -1.73461510881e-05 +UniRef50_I0C482 Hydrolase 0.00542477211719 0.000482954311376 -0.00494181780581 +UniRef50_UPI0003820085 hypothetical protein 4.6482006196e-06 8.04347128653e-06 3.39527066693e-06 +UniRef50_A4VR27 0.000674760589924 0.000246636584598 -0.000428124005326 +UniRef50_UPI000367811C hypothetical protein, partial 8.90397007046e-06 7.42593749518e-06 -1.47803257528e-06 +UniRef50_A8I0S8 0.00114790956547 6.23452623492e-05 -0.00108556430312 +UniRef50_A1B9C6 Phospholipid glycerol acyltransferase 0.0131056947335 0.00360849545665 -0.00949719927685 +UniRef50_P17725 Citrate lyase subunit beta 0.00431907964295 0.002361291406 -0.00195778823695 +UniRef50_P15030 Fe dicitrate transport system permease protein FecC 0.00313752312499 0.000661020193938 -0.00247650293105 +UniRef50_UPI0003B749DD NADH ubiquinone oxidoreductase subunit 6 7.73478858482e-05 1.2806688757e-05 -6.45411970912e-05 +UniRef50_UPI00046ADE6A hypothetical protein 1.76364757447e-05 2.28132530052e-05 5.1767772605e-06 +UniRef50_UPI000366A0BF aminotransferase 3.10563681645e-06 6.07715864042e-06 2.97152182397e-06 +UniRef50_UPI0004781051 peptide ABC transporter permease 1.64171882057e-05 6.25602066756e-05 4.61430184699e-05 +UniRef50_UPI0003B6312D NADH ubiquinone oxidoreductase subunit 6 2.45321334873e-05 3.02105531374e-05 5.6784196501e-06 +UniRef50_P97056 Protein RnfH 0.00107053601078 0.000210276964128 -0.000860259046652 +UniRef50_Q3K022 GTPase Era 0.000324471379247 0.000835039960306 0.000510568581059 +UniRef50_D8TNI9 5.64543324124e-06 2.96499642505e-05 2.40045310093e-05 +UniRef50_A4T3P6 1.97823096231e-05 2.72268959114e-05 7.4445862883e-06 +UniRef50_E3A4U6 0.000469469152046 0.000211770056443 -0.000257699095603 +UniRef50_A6SYV8 Glucosyl transferase 0.000186874251907 0.000286252056733 9.9377804826e-05 +UniRef50_T1BIJ5 Appr 1 p processing domain containing protein 1.29690891921e-05 8.67862416983e-05 7.38171525062e-05 +UniRef50_UPI000360BB74 hypothetical protein 2.01195915158e-05 1.71443052184e-05 -2.9752862974e-06 +UniRef50_UPI0004785618 peptidase M20 3.95206948936e-06 6.69597071426e-05 6.30076376532e-05 +UniRef50_V5ST79 0.00105169907464 0.000272007512169 -0.000779691562471 +UniRef50_P39263 0.00291645478525 0.00116313155802 -0.00175332322723 +UniRef50_UPI0002492B0A uroporphyrinogen III C methyltransferase 2.82200684014e-05 1.47531548802e-05 -1.34669135212e-05 +UniRef50_A7X534 Multidrug resistance efflux pump SepA 0.0100052463943 0.00207756516888 -0.00792768122542 +UniRef50_P39267 0.00178568059285 0.000577193359559 -0.00120848723329 +UniRef50_W8S776 6.58429782418e-05 0.000102587991932 3.67450136902e-05 +UniRef50_Q895P7 Phosphoprotein phosphatase 2C 0.000490073031534 0.0022380741043 0.00174800107277 +UniRef50_UPI00036925F6 hypothetical protein 0.000456643225518 0.000117398228933 -0.000339244996585 +UniRef50_UPI0004700B89 hypothetical protein 1.69810054724e-05 7.76914819468e-05 6.07104764744e-05 +UniRef50_UPI0003662012 hypothetical protein 3.21977529575e-06 1.19555419159e-05 8.73576662015e-06 +UniRef50_F2TBG9 1.52732449296e-05 1.02509067208e-06 -1.42481542575e-05 +UniRef50_UPI0003111719 FAD containing monooxygenase EthA 1.5247649647e-05 0.00182930178055 0.0018140541309 +UniRef50_Q3JRY4 1.78786478154e-05 5.52933917216e-05 3.74147439062e-05 +UniRef50_Q8DW61 0.0026004696474 0.000602687153456 -0.00199778249394 +UniRef50_Q8DW63 0.00811014313031 0.000146225473079 -0.00796391765723 +UniRef50_Q8DW64 0.00372374506195 0.000326875920868 -0.00339686914108 +UniRef50_Q8DW66 0.00202575755741 0.000584785554841 -0.00144097200257 +UniRef50_Q8DW69 0.00383356099134 0.0131938518914 0.00936029090006 +UniRef50_UPI00040DB40F hypothetical protein 1.16833610463e-05 6.90030695945e-06 -4.78305408685e-06 +UniRef50_A0A011NIG9 Stalked cell differentiation controlling protein 6.34358451796e-06 9.89123971411e-06 3.54765519615e-06 +UniRef50_W1FDX5 Phenylacetate CoA oxygenase, PaaJ subunit 9.55855876496e-05 0.000132158695807 3.65731081574e-05 +UniRef50_UPI000468F800 3 methylcrotonyl CoA carboxylase 4.29607608731e-06 2.238370927e-05 1.80876331827e-05 +UniRef50_UPI00046E9B56 MULTISPECIES 7.76313591253e-06 1.58582466883e-05 8.09511077577e-06 +UniRef50_Q5HQU2 Lipoprotein, putative 0.00620680414643 0.00381570315534 -0.00239110099109 +UniRef50_F0MM24 Site specific recombinase 0.00020589502452 0.00170703821698 0.00150114319246 +UniRef50_Q9A7X1 Sulfate thiosulfate import ATP binding protein CysA 0.000125496956702 6.4226237002e-05 -6.12707197e-05 +UniRef50_P00363 Fumarate reductase flavoprotein subunit 0.00232728596957 0.0022240653276 -0.00010322064197 +UniRef50_B8FCL2 Arginine tRNA ligase 4.25298726209e-06 8.48506486459e-06 4.2320776025e-06 +UniRef50_W1JJ37 1.6494182913e-05 2.78937381601e-05 1.13995552471e-05 +UniRef50_Q63SZ9 50S ribosomal protein L3 glutamine methyltransferase 0.00145565271172 0.00368596799836 0.00223031528664 +UniRef50_Q9RT16 0.000468435979094 0.0301588426703 0.0296904066912 +UniRef50_K7S7U2 Helicase secretion neighborhood ATPase 0.000194413384814 0.00412196849724 0.00392755511243 +UniRef50_A0A024E451 4.01662914913e-05 8.01158835875e-05 3.99495920962e-05 +UniRef50_D9RN76 Conserved bacteriophage protein 0.00625725388241 0.00450279560424 -0.00175445827817 +UniRef50_Q09AM4 0.000155884507615 4.55269168186e-05 -0.000110357590796 +UniRef50_K1Z5M7 1.0860271367e-05 6.71928828519e-06 -4.14098308181e-06 +UniRef50_E4PKC3 Extracellular solute binding protein, family 1 0.0096444577482 0.000670735046264 -0.00897372270194 +UniRef50_UPI00036DECB5 hypothetical protein 2.45542828364e-06 0.000266673612821 0.000264218184537 +UniRef50_Q09049 Cytochrome bd ubiquinol oxidase subunit 1 1.40858505778e-05 4.51651124395e-05 3.10792618617e-05 +UniRef50_Q3B4E2 Bifunctional protein FolD 0.00697570623407 0.00645479279563 -0.00052091343844 +UniRef50_N1MUD6 0.013474597831 0.00178303456773 -0.0116915632633 +UniRef50_D3DA43 1.1171091624e-05 0.000223442652099 0.000212271560475 +UniRef50_G9ZJL6 6.70937797759e-05 1.30127240933e-05 -5.40810556826e-05 +UniRef50_UPI0003B42F1C hypothetical protein 2.80688806763e-05 7.40906116255e-05 4.60217309492e-05 +UniRef50_O25830 Bifunctional dihydropteroate synthase dihydropteroate reductase 0.00057051026703 0.0036305465132 0.00306003624617 +UniRef50_UPI00047B1D21 DNA gyrase subunit A 8.61520108029e-06 1.86148128217e-05 9.99961174141e-06 +UniRef50_UPI0004640DF8 ABC transporter permease 1.37623194993e-05 8.65151876701e-06 -5.11080073229e-06 +UniRef50_UPI00046E6161 hypothetical protein 3.56478057781e-05 1.75949076688e-05 -1.80528981093e-05 +UniRef50_B2INS9 Hydrolase, haloacid dehalogenase like family 0.00691060148007 0.008236867765 0.00132626628493 +UniRef50_F9YXR7 0.000207885856826 0.00541121682112 0.00520333096429 +UniRef50_Q9I6F3 0.000270922958506 0.00130816611149 0.00103724315298 +UniRef50_UPI00046835E4 hypothetical protein 0.000232254731516 3.90662628166e-05 -0.000193188468699 +UniRef50_Q9I5W0 DNA primase 0.000491170800127 0.000109376557477 -0.00038179424265 +UniRef50_UPI0003B68C85 chromosomal replication initiator protein DnaA 4.67357968212e-06 7.43135185529e-06 2.75777217317e-06 +UniRef50_UPI000377D8E1 hypothetical protein 1.31738954724e-05 3.22053806195e-05 1.90314851471e-05 +UniRef50_A5ENX4 Cysteine desulfuration protein SufE 0.00018598240212 2.62515973723e-05 -0.000159730804748 +UniRef50_P55809 Succinyl CoA 5.02222770547e-05 4.42066439934e-05 -6.0156330613e-06 +UniRef50_R6LKT9 PTS system 0.000622229651954 0.000763750099644 0.00014152044769 +UniRef50_UPI00037E8795 hypothetical protein 9.7519292095e-05 0.000101693816904 4.174524809e-06 +UniRef50_B9KL59 5 oxoprolinase 0.00194422663222 0.000756435077488 -0.00118779155473 +UniRef50_G4LIE7 0.000292230662804 0.000182294262473 -0.000109936400331 +UniRef50_Q9SAJ6 Glyceraldehyde 3 phosphate dehydrogenase GAPCP1, chloroplastic 2.23458403964e-05 3.60839327617e-05 1.37380923653e-05 +UniRef50_W5BG06 0.000223039291066 0.000307621567909 8.4582276843e-05 +UniRef50_Q9S6S1 Xaa Pro dipeptidase 0.00406600321439 0.00492330732713 0.00085730411274 +UniRef50_UPI00047AF1F1 hypothetical protein 3.65663635778e-06 0.000249102368774 0.000245445732416 +UniRef50_W5XC72 Excinuclease ABC subunit C 1.64817473128e-05 2.86139163422e-05 1.21321690294e-05 +UniRef50_B1W0Z3 Phosphoglycerate kinase 0.0237606903373 0.0216835293705 -0.0020771609668 +UniRef50_K0VIJ3 Replication initiation protein RepC 2.6392744294e-05 2.20939892299e-05 -4.2987550641e-06 +UniRef50_UPI00036C59B9 hypothetical protein 2.11188717687e-05 8.93415574944e-05 6.82226857257e-05 +UniRef50_A1WWJ6 ISXoo15 transposase 6.32979750019e-05 2.85605808873e-05 -3.47373941146e-05 +UniRef50_M4R3E4 MFS superfamily bicyclomycin multidrug transportprotein 0.000623229649913 0.00928328142758 0.00866005177767 +UniRef50_Q2G764 2,4 dihydroxyacetophenone dioxygenase 0.00081974089678 0.000666755145539 -0.000152985751241 +UniRef50_F4QZ58 8.33373403415e-05 1.11897579632e-05 -7.21475823783e-05 +UniRef50_R6PZ09 Chorismate synthase 0.000116388280223 0.00178940027096 0.00167301199074 +UniRef50_UPI000479CAE5 ABC transporter 3.05604607441e-06 1.69920190759e-05 1.39359730015e-05 +UniRef50_Q3JVM0 8.07515534964e-05 0.000113365337884 3.26137843876e-05 +UniRef50_G5JVK4 Acyl ACP thioesterase 0.00520714323114 0.00158862969528 -0.00361851353586 +UniRef50_Q9S469 L ribulose 5 phosphate 4 epimerase 0.0105501279448 0.00736697626122 -0.00318315168358 +UniRef50_C5CPN2 Transaldolase 0.00306333358167 0.000380666037909 -0.00268266754376 +UniRef50_UPI000305C0E8 hypothetical protein 3.93533351593e-05 0.000264476898853 0.000225123563694 +UniRef50_P45753 Putative DNA utilization protein HofM 0.00173602314793 0.000775213515781 -0.000960809632149 +UniRef50_G2M640 0.000340716909722 0.00475342916939 0.00441271225967 +UniRef50_F5M2B7 CRP FNR family transcriptional regulator 0.00247991749141 0.000242726059064 -0.00223719143235 +UniRef50_UPI00023768FE monosaccharide transporting ATPase, partial 0.000239829882996 0.000630682184614 0.000390852301618 +UniRef50_A9HE84 Tryptophan synthase alpha chain 0.00129551189686 0.00266575517111 0.00137024327425 +UniRef50_C3FBN6 Transposase A from transposon Tn554 0.000100932082575 0.00038841464795 0.000287482565375 +UniRef50_UPI0003B6F059 aldehyde activating protein 8.74000899081e-05 2.762399649e-05 -5.97760934181e-05 +UniRef50_UPI000219427C phosphoribosylcarboxyaminoimidazole mutase, partial 7.20641022659e-05 2.3530658128e-05 -4.85334441379e-05 +UniRef50_C2BE46 0.000649436453475 0.000184168559401 -0.000465267894074 +UniRef50_K7EXQ4 2.94932409971e-05 9.87026946978e-06 -1.96229715273e-05 +UniRef50_UPI0003D78289 PREDICTED 4.62554463156e-06 0.000187178594339 0.000182553049707 +UniRef50_D4HCD1 L fucose isomerase, first N terminal domain protein 0.000569074355048 0.00652292183753 0.00595384748248 +UniRef50_P65894 Phosphoribosylamine glycine ligase 0.000128251185346 0.00597884348432 0.00585059229897 +UniRef50_B9KUW5 Beta lactamase 0.0165141226521 0.00342850546849 -0.0130856171836 +UniRef50_V9Y4Q6 0.000297061306978 6.25716317643e-05 -0.000234489675214 +UniRef50_P58403 Protein YfdX 0.0022583545144 0.00140483904323 -0.00085351547117 +UniRef50_E2ZXX1 NalD 0.000943900692526 0.00133602740699 0.000392126714464 +UniRef50_B9JV31 0.0114179980041 0.00337611755162 -0.00804188045248 +UniRef50_I6SXW0 Acetyltransferase 0.00642502342194 0.00148828722409 -0.00493673619785 +UniRef50_Q8WEW3 Cytochrome c oxidase subunit 1 9.0089499092e-06 2.03289337254e-05 1.13199838162e-05 +UniRef50_O84561 Dihydrolipoyl dehydrogenase 2.46651352964e-05 1.33113551615e-05 -1.13537801349e-05 +UniRef50_T1B7K3 Protein containing DUF28 9.88127430833e-06 1.1703615161e-05 1.82234085267e-06 +UniRef50_UPI0003F0D458 2.32302196068e-05 2.17953637077e-05 -1.4348558991e-06 +UniRef50_M1MXD6 Xylose transport system permease protein XylH 0.000198764931501 0.000165598152454 -3.3166779047e-05 +UniRef50_R2ZFJ6 Regulatory protein BlaR1 0.000183415488809 0.00318205399168 0.00299863850287 +UniRef50_UPI000377E8CB hypothetical protein 5.12644132202e-06 8.08661296407e-06 2.96017164205e-06 +UniRef50_Q9RSS3 ABC transporter, ATP binding protein, MDR family 5.69360465787e-05 0.036495560056 0.0364386240094 +UniRef50_F5LYA4 P4 family integrase 0.000557174053809 0.000322754666944 -0.000234419386865 +UniRef50_Q8EWY8 ATP synthase subunit beta 9.23453928457e-06 4.88645398204e-06 -4.34808530253e-06 +UniRef50_UPI00037C4890 hypothetical protein 1.83430280024e-06 5.77470815267e-06 3.94040535243e-06 +UniRef50_UPI000379EBC0 hypothetical protein 6.38190008155e-05 5.28197862897e-05 -1.09992145258e-05 +UniRef50_UPI000364EE3F hypothetical protein 3.41913531614e-05 0.000180659561345 0.000146468208184 +UniRef50_UPI0003717A9D molybdopterin biosynthesis protein MoeZ, partial 2.46783343545e-05 5.80351264477e-05 3.33567920932e-05 +UniRef50_M3YWL2 1.34667590342e-05 6.46939436053e-06 -6.99736467367e-06 +UniRef50_O27333 Trk system potassium uptake protein TrkA homolog 0.00172180094971 0.000413030356916 -0.00130877059279 +UniRef50_M1MV61 ATP dependent transcriptional regulator, MalT like, LuxR family 0.000354082543669 0.000846958447112 0.000492875903443 +UniRef50_Q6AGI1 0.00622010207345 0.00201634305018 -0.00420375902327 +UniRef50_Q0K1E0 Ribulose bisphosphate carboxylase large chain, chromosomal 0.000106032576398 9.45658701477e-05 -1.14667062503e-05 +UniRef50_UPI0003A611B9 hypothetical protein 1.08700867992e-06 4.55304651729e-05 4.4443456493e-05 +UniRef50_D8JE10 Thioesterase superfamily protein 0.000681292166666 0.014016071807 0.0133347796403 +UniRef50_F4FM20 RstA 0.00921442395543 0.000349468961315 -0.00886495499411 +UniRef50_Q6Y3D2 NifD 0.000513930963861 0.000228828256293 -0.000285102707568 +UniRef50_R0S4I1 AMIN domain protein 1.11029736431e-05 0.000122639592157 0.000111536618514 +UniRef50_Q0BWU4 Phosphoribosyl AMP cyclohydrolase 1.81685278487e-05 8.90710578229e-05 7.09025299742e-05 +UniRef50_UPI0002B4BC1C 1.25781660157e-05 6.5000510997e-05 5.24223449813e-05 +UniRef50_UPI0004785FB9 alkylhydroperoxidase 0.000246705255845 0.000219260546319 -2.7444709526e-05 +UniRef50_F7QTX4 1.64437196687e-05 1.97033106601e-05 3.2595909914e-06 +UniRef50_T2E7D0 Inner membrane transport protein RhmT 0.000529215619369 0.000134336636173 -0.000394878983196 +UniRef50_UPI0003955E77 PREDICTED 4.93261552293e-05 0.000107268402587 5.79422473577e-05 +UniRef50_Q01609 0.000805444225856 0.00343587109541 0.00263042686955 +UniRef50_B3E163 DNA directed RNA polymerase subunit beta 4.04082835124e-06 2.16939305526e-06 -1.87143529598e-06 +UniRef50_Q7WZY5 Oxygen sensor histidine kinase NreB 0.0193621449013 0.00645411723966 -0.0129080276616 +UniRef50_UPI0004740AD1 histidine kinase 4.41956427434e-05 7.62785187525e-05 3.20828760091e-05 +UniRef50_P50186 NaeI very short patch repair endonuclease 1.78212880379e-05 4.0131060692e-05 2.23097726541e-05 +UniRef50_UPI000367ED7B hypothetical protein 1.93080198514e-05 5.04225965004e-06 -1.42657602014e-05 +UniRef50_UPI000470E957 major facilitator transporter, partial 6.8519039608e-06 4.19437687246e-05 3.50918647638e-05 +UniRef50_B5R646 Allantoinase 0.00438809441507 0.000868583109247 -0.00351951130582 +UniRef50_P23256 Protein MalY 0.00259120309458 0.000798956483774 -0.00179224661081 +UniRef50_B4RQQ4 Adhesin component 0.000832689681294 0.0441243405044 0.0432916508231 +UniRef50_K1RTS5 Carboxynorspermidine decarboxylase 0.000190052784136 0.000127862950305 -6.2189833831e-05 +UniRef50_I6TSK5 Osmoprotectant amino acid ABC transporter ATP binding protein 0.00500627868795 0.00237531774025 -0.0026309609477 +UniRef50_A5UJ55 SAM dependent methyltransferase 0.000955437961966 0.000715203418526 -0.00024023454344 +UniRef50_M1MCY2 Glycosyl transferase family 2 8.54685257742e-05 0.000531380222148 0.000445911696374 +UniRef50_UPI00036853DF hypothetical protein 0.000153389194184 1.26347761438e-05 -0.00014075441804 +UniRef50_P22714 Galactose 1 phosphate uridylyltransferase 0.00359057400819 0.00111825150508 -0.00247232250311 +UniRef50_UPI000225A931 proline iminopeptidase 7.37233824644e-06 9.95611564391e-06 2.58377739747e-06 +UniRef50_A0A023RRW7 Lipid A biosynthesis acyltransferase 0.000121378131464 0.00674661643638 0.00662523830492 +UniRef50_I0C613 DNA polymerase III alpha subunit 0.0136435487592 0.00309124747135 -0.0105523012879 +UniRef50_A1KRG6 DNA directed RNA polymerase subunit beta 6.64547439828e-05 0.00452214597108 0.0044556912271 +UniRef50_P05824 DNA repair protein RecN 0.00272571673226 0.000333414573864 -0.0023923021584 +UniRef50_Q9K0V3 N acetylmuramoyl L alanine amidase AmiC 3.85337367799e-05 0.0014456799173 0.00140714618052 +UniRef50_A0A023RUS2 Chemotaxis protein CheY 0.000948312219635 0.00666264754683 0.0057143353272 +UniRef50_P0ABT9 0.00159622885827 0.000496184042659 -0.00110004481561 +UniRef50_A4WWG5 Extracellular solute binding protein, family 5 0.0202623619417 0.0037954235676 -0.0164669383741 +UniRef50_Q5HR29 Histidine protein kinase SaeS 0.0168854394268 0.00227464862547 -0.0146107908013 +UniRef50_UPI00046D5F2F hypothetical protein 0.000621438639611 0.00225762175591 0.0016361831163 +UniRef50_UPI0002D4FA5D hypothetical protein 1.36815473426e-05 6.27574981451e-05 4.90759508025e-05 +UniRef50_P31550 Thiamine binding periplasmic protein 0.00269719156216 0.00216638426356 -0.0005308072986 +UniRef50_P21514 Cyclic di GMP phosphodiesterase YahA 0.00282256893515 0.00266390425937 -0.00015866467578 +UniRef50_A6VC18 Haemagglutination activity domain protein 0.000195231897789 2.74628058223e-05 -0.000167769091967 +UniRef50_UPI000377E83F hypothetical protein 3.27282406274e-05 0.000291712056764 0.000258983816137 +UniRef50_A3MND6 Bifunctional protein GlmU 0.00301999244345 0.012207617105 0.00918762466155 +UniRef50_UPI00037CB5D1 hypothetical protein, partial 7.85057669752e-05 2.82318328663e-05 -5.02739341089e-05 +UniRef50_UPI00028877C9 hypothetical protein 3.15766502025e-05 4.67013577186e-05 1.51247075161e-05 +UniRef50_UPI0004416F73 Pkinase domain containing protein 5.1620980521e-06 1.74298933999e-06 -3.41910871211e-06 +UniRef50_UPI00035DDF67 hypothetical protein 2.56298684014e-05 1.53011469741e-05 -1.03287214273e-05 +UniRef50_UPI00046CFF91 NUDIX hydrolase 9.22082808371e-06 0.000489641304528 0.000480420476444 +UniRef50_UPI0003654BCD hypothetical protein 2.21162687326e-05 0.0052855991645 0.00526348289577 +UniRef50_S5SXF8 GntR family transcriptional regulator protein 0.00537319300924 0.000273441393692 -0.00509975161555 +UniRef50_UPI000344DDDB hypothetical protein 2.6365761354e-06 1.0980688106e-06 -1.5385073248e-06 +UniRef50_UPI00041AB026 hypothetical protein 0.000201940725436 3.13974924014e-05 -0.000170543233035 +UniRef50_UPI000310D2B7 hypothetical protein 1.19185281396e-05 2.33243301623e-05 1.14058020227e-05 +UniRef50_I5XEX7 7.02856428705e-05 7.46743793596e-05 4.3887364891e-06 +UniRef50_UPI00028A0BB5 iron ABC transporter permease 6.08998464866e-05 9.43012975712e-05 3.34014510846e-05 +UniRef50_Q00267 N hydroxyarylamine O acetyltransferase 0.00187420471859 0.000809393808929 -0.00106481090966 +UniRef50_UPI0002D46590 hypothetical protein 3.13205007015e-05 4.30162259401e-06 -2.70188781075e-05 +UniRef50_UPI000310AFFC hypothetical protein 0.000169088541724 1.61850334637e-05 -0.00015290350826 +UniRef50_K7RZQ6 Phosphate ABC transporter, permease protein PstC 0.000121118499099 0.00604819593877 0.00592707743967 +UniRef50_Q9RUF1 Putative gluconeogenesis factor 0.000121118499099 0.00580637756948 0.00568525907038 +UniRef50_A3M2J5 FilF 0.000355455608344 0.00760711455061 0.00725165894227 +UniRef50_Q9RYW8 Excinuclease ABC, subunit A 4.72251028609e-05 0.0286855626743 0.0286383375714 +UniRef50_L7WWN9 N acetylmuramoyl L alanine amidase 0.00858348568774 0.00264387494539 -0.00593961074235 +UniRef50_U5MQ76 Cell wall hydrolase autolysin 0.000796181223905 0.00300282106843 0.00220663984453 +UniRef50_Q8K3J1 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 5.87869616426e-05 1.04409718317e-05 -4.83459898109e-05 +UniRef50_B2TQZ4 Ribosomal RNA small subunit methyltransferase I 0.000371749222442 0.00226600982422 0.00189426060178 +UniRef50_UPI00045E70DE phosphoglucosamine mutase 4.17142232811e-06 6.86870837911e-06 2.697286051e-06 +UniRef50_P0A2L2 UPF0047 protein YjbQ 1.67456954402e-05 0.0171151747311 0.0170984290357 +UniRef50_Q720A2 DNA polymerase III PolC type 0.0105344517625 0.00547248941566 -0.00506196234684 +UniRef50_W8UDC1 Oligopeptidase A 0.000813987272751 0.000175920374899 -0.000638066897852 +UniRef50_UPI000404E1BA hypothetical protein 7.00800868692e-05 1.11808793433e-05 -5.88992075259e-05 +UniRef50_Q3J4T9 ATPase 0.0145238603634 0.00169696210157 -0.0128268982618 +UniRef50_G7U8C9 N formimino L glutamate deiminase 0.000106434019418 0.00573644775609 0.00563001373667 +UniRef50_P0A0E5 Mercuric reductase 0.0119854730565 0.00274855919635 -0.00923691386015 +UniRef50_R5D9D5 0.000278371795454 0.00103792686452 0.000759555069066 +UniRef50_UPI0002F9EB26 hypothetical protein 2.98328993867e-05 2.03083431814e-05 -9.5245562053e-06 +UniRef50_W8G521 Electron transfer flavoprotein subunit beta 0.0068450205936 0.00580726466339 -0.00103775593021 +UniRef50_UPI0003672E42 hypothetical protein 5.14629958399e-06 7.27514297368e-06 2.12884338969e-06 +UniRef50_A3JU62 Replication protein C 6.37271107187e-05 4.63052820603e-05 -1.74218286584e-05 +UniRef50_UPI000376A3B0 hypothetical protein 3.36155985985e-06 1.10408950079e-05 7.67933514805e-06 +UniRef50_D4HC17 TOBE domain protein 0.0003380471542 0.0044738549913 0.0041358078371 +UniRef50_I1F1X0 0.00021585868997 0.000290982103433 7.5123413463e-05 +UniRef50_Q87AR8 Laccase domain protein PD_1754 0.000175032143208 0.000808772324455 0.000633740181247 +UniRef50_I4XWS9 MFS transporter, aromatic acid 0.000323724864676 0.000132726609074 -0.000190998255602 +UniRef50_UPI000252B72D 1.56873143238e-05 1.51024581311e-05 -5.848561927e-07 +UniRef50_R4PRA1 Cytochrome D ubiquinol oxidase, subunit II 0.000337638755487 0.00380807142821 0.00347043267272 +UniRef50_UPI00034C051A hypothetical protein 1.09716518469e-05 5.80057761253e-06 -5.17107423437e-06 +UniRef50_A6W2T3 3 dehydroquinate synthase 0.000136475804957 0.00412378546885 0.00398730966389 +UniRef50_Q24QJ3 Imidazole glycerol phosphate synthase subunit HisH 0.000948605138528 0.00462711755907 0.00367851242054 +UniRef50_A3PQB9 Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase 0.0048927774723 0.00135680179899 -0.00353597567331 +UniRef50_B9KR17 CrpK, Fnr type transcriptional regulator 0.0108827899111 0.0012095799515 -0.0096732099596 +UniRef50_P58423 Fructose 6 phosphate aldolase 1 0.0101171183728 0.00247981777964 -0.00763730059316 +UniRef50_E9UU02 Putative TolA domain protein 0.000101734801148 5.80239445701e-05 -4.37108565779e-05 +UniRef50_J3NBT7 1.17131462762e-05 0.000226287519003 0.000214574372727 +UniRef50_UPI00023B1DD2 PREDICTED 2.40155774287e-05 1.38392786601e-05 -1.01762987686e-05 +UniRef50_Q729A6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000396638312082 0.0111625192468 0.0107658809347 +UniRef50_J1ZV65 1.47794619325e-06 3.31261557154e-06 1.83466937829e-06 +UniRef50_UPI0002630EBE nicotinate phosphoribosyltransferase 4.05317546118e-06 6.12368248567e-06 2.07050702449e-06 +UniRef50_G0DTU8 0.00036792030283 0.00482932001029 0.00446139970746 +UniRef50_UPI00036FBE9A hypothetical protein 7.6872927043e-05 0.000144749983105 6.7877056062e-05 +UniRef50_UPI00029B2F80 GCN5 family acetyltransferase 8.41439541389e-05 0.000502563945552 0.000418419991413 +UniRef50_G7MAN7 Carboxyl terminal protease 0.000614157832573 0.000921349452598 0.000307191620025 +UniRef50_B9KR73 ABC sugar transporter, inner membrane subunit 0.0123546128529 0.002529459646 -0.0098251532069 +UniRef50_UPI00037DF359 hypothetical protein 7.22882882314e-05 1.27544964257e-05 -5.95337918057e-05 +UniRef50_O32113 0.00375068255908 0.00312825375479 -0.00062242880429 +UniRef50_Q47BM0 Argininosuccinate synthase 0.0119077110384 0.00275987148788 -0.00914783955052 +UniRef50_P0AGM8 Uracil permease 0.00462698448054 0.00179843509325 -0.00282854938729 +UniRef50_UPI0002628793 organic solvent ABC transporter ATP binding protein 0.000128200535506 3.36863349922e-05 -9.45142005138e-05 +UniRef50_D3DEH5 DnaJ like molecular chaperone domain protein 5.65631092695e-05 2.31332727519e-05 -3.34298365176e-05 +UniRef50_P0ACZ1 0.000391853967671 0.000613114266848 0.000221260299177 +UniRef50_C7C6X9 0.00143892007009 0.000592608772976 -0.000846311297114 +UniRef50_B0TY89 Threonine tRNA ligase 1.69441989805e-05 6.07784330265e-06 -1.08663556778e-05 +UniRef50_Q2FGC8 Shikimate dehydrogenase 0.0223138041455 0.00507900364977 -0.0172348004957 +UniRef50_UPI0004057B1E hypothetical protein 1.65864004034e-05 6.77126316888e-06 -9.81513723452e-06 +UniRef50_C5N0J9 0.00612411480282 0.00116402329094 -0.00496009151188 +UniRef50_UPI0001BC2CC2 glyoxalase bleomycin resistance protein dioxygenase 1.87789706636e-05 3.83704291085e-05 1.95914584449e-05 +UniRef50_Q9ZE56 Aspartate aminotransferase 0.0136697209001 0.00404807991724 -0.00962164098286 +UniRef50_K1YDE1 0.000266522718685 0.000402424925402 0.000135902206717 +UniRef50_Q4A2U1 Putative membrane protein 2.93786101704e-06 4.80583517939e-06 1.86797416235e-06 +UniRef50_D9UFW6 Replication initiation protein 2.14589833001e-05 1.48464009172e-05 -6.6125823829e-06 +UniRef50_W5X411 DoxX family protein 9.27113138416e-05 2.39597858564e-05 -6.87515279852e-05 +UniRef50_UPI00038FA33F Aliphatic sulfonates import ATP binding protein SsuB, partial 8.558454282e-05 1.50795109245e-05 -7.05050318955e-05 +UniRef50_UPI00035D0942 hypothetical protein 6.25787649218e-05 5.61775703977e-05 -6.4011945241e-06 +UniRef50_B9KT30 Transporter, DME family, DMT superfamily 0.000307197551739 0.000187701295675 -0.000119496256064 +UniRef50_Q49YA3 HemA concentration negative effector 0.0196753415344 0.00589344931534 -0.0137818922191 +UniRef50_UPI0003B4E2D0 preprotein translocase subunit SecD 2.93413130069e-06 9.88854336036e-06 6.95441205967e-06 +UniRef50_A0R033 Phospho 2 dehydro 3 deoxyheptonate aldolase AroG 3.54295369733e-05 1.06854463286e-05 -2.47440906447e-05 +UniRef50_Q8CMX2 Dihydrolipoamide dehydrogenase 0.0120638636002 0.00188143081241 -0.0101824327878 +UniRef50_G1TF83 2.0224373231e-05 2.71276105651e-06 -1.75116121745e-05 +UniRef50_Q3SFH1 Acetylglutamate kinase 5.25676752241e-05 0.00363417827872 0.0035816106035 +UniRef50_UPI0002626E83 hypothetical protein 5.73132964576e-05 2.593685298e-05 -3.13764434776e-05 +UniRef50_E7T8U3 SdiA regulated domain protein 5.29269066775e-05 5.78537161482e-05 4.9268094707e-06 +UniRef50_A5V195 Beta lactamase domain protein 2.12667180632e-05 0.00010910083823 8.78341201668e-05 +UniRef50_A6LQ08 Oleoyl hydrolase 0.000471103564113 0.00053387377675 6.2770212637e-05 +UniRef50_UPI00036116CD hypothetical protein 8.31040134358e-06 0.000609700859869 0.000601390458525 +UniRef50_UPI0004222757 acyl CoA dehydrogenase 4.8695403502e-05 4.41731641336e-05 -4.5222393684e-06 +UniRef50_UPI0001744DDB putative transporter 5.72295395266e-06 4.03240146381e-05 3.46010606854e-05 +UniRef50_Q9RUR8 0.000250013402159 0.0626882755764 0.0624382621742 +UniRef50_Q4UYY0 Tyrosine recombinase XerC 0.00311439724736 0.00107409014807 -0.00204030709929 +UniRef50_P53401 Succinyl CoA ligase [GDP forming] subunit alpha 3, mitochondrial 1.5984984343e-05 3.10533355285e-05 1.50683511855e-05 +UniRef50_A6M0K8 Amino acid permease associated region 0.000803891465594 0.0024132085664 0.00160931710081 +UniRef50_Q9CGD8 Homoserine dehydrogenase 0.00446419781525 0.0055543882634 0.00109019044815 +UniRef50_W0YNY5 Putrescine binding periplasmic protein 0.000494910711646 0.000210940503716 -0.00028397020793 +UniRef50_UPI0001CB98DC PREDICTED 3.71719048201e-06 6.16049086021e-06 2.4433003782e-06 +UniRef50_UPI00036CD3A9 hypothetical protein 6.51318103801e-07 0.000415848406819 0.000415197088715 +UniRef50_UPI0002FA5AD3 hypothetical protein 0.000791287236964 0.000262313724087 -0.000528973512877 +UniRef50_G7U4S9 0.000170808139747 0.00985672200945 0.0096859138697 +UniRef50_B8P4L0 Predicted protein 2.84950950481e-05 3.70961523149e-05 8.6010572668e-06 +UniRef50_R9SPB0 7 carboxy 7 deazaguanine synthase 0.00336279839069 0.000649686826491 -0.0027131115642 +UniRef50_W4UGA1 6.27042886125e-05 0.000590591321642 0.00052788703303 +UniRef50_UPI000237A558 molecular chaperone DnaK 2.55175879573e-05 6.89886268356e-06 -1.86187252737e-05 +UniRef50_A6LRX4 0.000248891860782 0.000456268026566 0.000207376165784 +UniRef50_A0A023RW48 0.000165806437266 0.00381096394926 0.00364515751199 +UniRef50_Q9FYA6 Branched chain amino acid aminotransferase 5, chloroplastic 7.74650309469e-06 2.344442995e-05 1.56979268553e-05 +UniRef50_Q3J497 0.0019716347238 0.00247370573148 0.00050207100768 +UniRef50_UPI000464D2A1 peptidase M32 1.95225583282e-05 8.64591242153e-06 -1.08766459067e-05 +UniRef50_Q3JNY2 Phosphonates import ATP binding protein PhnC 0.00174089322351 0.002369993062 0.00062909983849 +UniRef50_P30296 High affinity branched chain amino acid transport system permease protein LivM 0.00245697305146 0.000378818820648 -0.00207815423081 +UniRef50_UPI00036616D0 hypothetical protein 3.66593481159e-06 3.48142701735e-05 3.11483353619e-05 +UniRef50_Q7UT69 Cyclic pyranopterin monophosphate synthase 4.77682281729e-06 0.000127521274482 0.000122744451665 +UniRef50_UPI00037F4F10 hypothetical protein 7.98786483501e-06 2.44960812647e-06 -5.53825670854e-06 +UniRef50_E2S811 0.000717146488905 0.00035321685738 -0.000363929631525 +UniRef50_Q04I02 Transcriptional regulator AdcR 0.00702928057572 0.00076691700201 -0.00626236357371 +UniRef50_Q72IW9 Homoisocitrate dehydrogenase 1.17158068163e-05 5.75797227148e-05 4.58639158985e-05 +UniRef50_Q84NM0 0.000177223468942 0.00026565220857 8.8428739628e-05 +UniRef50_UPI0003EC0560 PREDICTED 2.80867551212e-05 1.76846092498e-05 -1.04021458714e-05 +UniRef50_U1FXL3 Primosome assembly protein PriA 0.0184260949013 0.00430600963914 -0.0141200852622 +UniRef50_UPI000372345A hypothetical protein 2.98587242413e-05 2.4576076766e-05 -5.2826474753e-06 +UniRef50_G8VIZ2 Dicarboxylate transport protein alpha ketoglutarate permease 0.000152828335565 0.00550374233675 0.00535091400119 +UniRef50_UPI0002625F65 thioredoxin 0.000201125524198 0.000381395031613 0.000180269507415 +UniRef50_J9UTL0 0.000838857753003 0.000102998066914 -0.000735859686089 +UniRef50_P37417 UDP N acetylenolpyruvoylglucosamine reductase 0.00282714778037 0.000470704015539 -0.00235644376483 +UniRef50_D6SIG9 0.00411352462628 0.00143631899592 -0.00267720563036 +UniRef50_W0A6T6 Peroxidase 0.000303014800698 0.061407007555 0.0611039927543 +UniRef50_UPI0001B4A052 hypothetical protein, partial 4.87486151538e-06 0.000145911559744 0.000141036698229 +UniRef50_P76081 1,2 phenylacetyl CoA epoxidase, subunit E 0.00220617548171 0.000466144569113 -0.0017400309126 +UniRef50_W0YPV2 1.59245572919e-05 0.000509797026076 0.000493872468784 +UniRef50_Q9RTL4 0.00017584751034 0.0259281341848 0.0257522866745 +UniRef50_B0VB68 Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain 0.000891699186261 0.0036072780935 0.00271557890724 +UniRef50_UPI0003767C94 MULTISPECIES 1.1393260093e-05 0.000283565679908 0.000272172419815 +UniRef50_P29915 NADH quinone oxidoreductase chain 3 0.00202506193117 0.00068993132172 -0.00133513060945 +UniRef50_P51981 L Ala D L Glu epimerase 0.00368647123907 0.000903629740692 -0.00278284149838 +UniRef50_Q7UK64 Argininosuccinate lyase 2.70250515881e-05 1.30021793732e-05 -1.40228722149e-05 +UniRef50_Q5NPZ7 Tryptophan synthase alpha chain 7.25554999669e-06 1.34671814012e-05 6.21163140451e-06 +UniRef50_Q9RZH5 5.48888741709e-05 0.00850186315981 0.00844697428564 +UniRef50_Q5HH71 UPF0477 protein SACOL1020 0.0241821953962 0.0141448367194 -0.0100373586768 +UniRef50_Q9RZH7 7.5409843749e-05 0.00779275929849 0.00771734945474 +UniRef50_Q9RZH0 0.000201453654052 0.0165961985789 0.0163947449248 +UniRef50_Q9RZH1 0.000280311377865 0.0254161321516 0.0251358207737 +UniRef50_UPI0003737D75 hypothetical protein 7.694776435e-06 3.68677845861e-06 -4.00799797639e-06 +UniRef50_W1VJK5 0.000582622505785 0.00408380435617 0.00350118185038 +UniRef50_P14949 Thioredoxin 0.00079192864794 0.00089040212621 9.847347827e-05 +UniRef50_UPI000472A2A5 hypothetical protein 3.68034083203e-06 3.48079433025e-06 -1.9954650178e-07 +UniRef50_B9KF16 0.000354666553443 3.15711286306e-06 -0.00035150944058 +UniRef50_R6IHH7 9.29742070845e-05 0.000583889189001 0.000490914981916 +UniRef50_Q6FFB5 Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes 8.65132136393e-05 0.00615470611246 0.00606819289882 +UniRef50_F5Q2F1 Putrescine ornithine antiporter 0.000547851562923 0.00159181843557 0.00104396687265 +UniRef50_A0A014NVK4 1.00942910561e-05 5.33476925123e-05 4.32534014562e-05 +UniRef50_P34956 Quinol oxidase subunit 1 0.0214904345916 0.00415652627085 -0.0173339083208 +UniRef50_I6TBP2 Oligo beta mannoside permease IIC component 0.000594254542829 0.00578379382165 0.00518953927882 +UniRef50_Q6D107 Bifunctional protein Aas 0.00312568631822 0.000897504725649 -0.00222818159257 +UniRef50_I4K2W0 0.017898833977 0.00035156750618 -0.0175472664708 +UniRef50_UPI00036C4785 hypothetical protein, partial 2.11263109756e-05 0.00013332466527 0.000112198354294 +UniRef50_Q3J232 0.00633080828617 0.00333505612436 -0.00299575216181 +UniRef50_Q3J231 0.0110379923868 0.0057373490832 -0.0053006433036 +UniRef50_Q3J230 0.0186794836082 0.00642777575693 -0.0122517078513 +UniRef50_UPI00041335DC hypothetical protein 1.95823394932e-06 2.925220169e-06 9.6698621968e-07 +UniRef50_UPI00035E09FF hypothetical protein 5.30692510043e-06 1.3545702841e-05 8.23877774057e-06 +UniRef50_A4SN85 Putative transport protein ASA_2308 0.00244992063731 0.000592570269494 -0.00185735036782 +UniRef50_A4SV52 Indole 3 glycerol phosphate synthase 8.34767104486e-06 0.00484018938354 0.0048318417125 +UniRef50_B0JHY9 50S ribosomal protein L6 0.0274918951823 0.00525017705819 -0.0222417181241 +UniRef50_Q4T085 Chromosome undetermined SCAF11289, whole genome shotgun sequence. 2.91348832916e-05 5.44712044637e-05 2.53363211721e-05 +UniRef50_J9YTG3 0.000313700267745 0.000412069821193 9.8369553448e-05 +UniRef50_UPI00044144A1 50s ribosomal protein 4.89810874842e-06 4.89991904881e-05 4.41010817397e-05 +UniRef50_A4WTJ9 3.34830368967e-05 6.60690467491e-05 3.25860098524e-05 +UniRef50_I3TNP2 Amino acid carrier protein 0.000556025739778 0.000380583802193 -0.000175441937585 +UniRef50_Q5HQ95 Cobalt transport family protein 0.0164474368722 0.00250379740831 -0.0139436394639 +UniRef50_F5XZ61 Candidate cytosine deaminase 0.00310558512113 0.00145396723899 -0.00165161788214 +UniRef50_A4WUN6 ChaC family protein 3.08348946962e-05 5.42117169395e-05 2.33768222433e-05 +UniRef50_Q5HRI6 SdrG protein 0.0043053372442 0.00109141688704 -0.00321392035716 +UniRef50_D6AJJ2 Predicted protein 6.71807294909e-05 0.000325554987993 0.000258374258502 +UniRef50_UPI000470ED8E hypothetical protein, partial 1.28670613428e-05 1.80366741489e-05 5.1696128061e-06 +UniRef50_Q9RWT4 0.000235438246685 0.0519460892705 0.0517106510238 +UniRef50_S6E1Z6 Red like rubisco 1,5 bisphosphate carboxylase oxygenease form I 0.000414123057326 9.18488364726e-06 -0.000404938173679 +UniRef50_UPI00047E6722 hypothetical protein 6.75149776873e-06 5.25080286479e-05 4.57565308792e-05 +UniRef50_UPI0003AE08B4 PREDICTED 1.63388598705e-05 2.33039177123e-05 6.9650578418e-06 +UniRef50_M4XCW5 0.000149029591146 0.000831878042813 0.000682848451667 +UniRef50_UPI0004638808 hypothetical protein, partial 0.000127447309763 1.0205860977e-05 -0.000117241448786 +UniRef50_G1Y260 0.000542823830873 0.000255257418853 -0.00028756641202 +UniRef50_Q2RFW5 Ribose 5 phosphate isomerase 0.00671319668019 0.00201300603926 -0.00470019064093 +UniRef50_UPI0004657CE9 peptidoglycan glycosyltransferase 2.40224347108e-06 4.65786628945e-06 2.25562281837e-06 +UniRef50_B7RSE7 Plasmid partitioning protein RepA 2.06001000446e-05 1.24742548114e-05 -8.1258452332e-06 +UniRef50_U2Z6B8 GfdT protein 9.78123590463e-06 4.80811777671e-06 -4.97311812792e-06 +UniRef50_F2N3U1 4.08135857568e-05 5.36517930467e-05 1.28382072899e-05 +UniRef50_Q3IUV5 TraF 0.0293013767069 0.00557410179858 -0.0237272749083 +UniRef50_F0KNJ6 0.000713440944769 0.00508117920664 0.00436773826187 +UniRef50_UPI00047C69BC multidrug transporter 4.20072353421e-06 1.4317095425e-05 1.01163718908e-05 +UniRef50_C7NCF6 2 nitropropane dioxygenase NPD 0.000255601423552 0.00631014605008 0.00605454462653 +UniRef50_Q9HTK9 Rubredoxin NAD reductase 0.000139122600314 0.000510660578947 0.000371537978633 +UniRef50_Q3JQL8 Bifunctional protein FolD 3.32814568192e-05 0.00150976281981 0.00147648136299 +UniRef50_UPI000382E191 hypothetical protein 8.49920121381e-05 9.60277145054e-06 -7.53892406876e-05 +UniRef50_UPI00047171F6 molybdopterin biosynthesis protein B 0.000120484599966 4.23403278635e-05 -7.81442721025e-05 +UniRef50_B0TI32 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00846520598424 0.00481700514044 -0.0036482008438 +UniRef50_Q9Z9A0 DNA directed RNA polymerase subunit beta 2.725571681e-06 3.42934449604e-06 7.0377281504e-07 +UniRef50_Q8ZN74 tRNA cytidine acetyltransferase TmcA 0.00249240658847 0.000592713532661 -0.00189969305581 +UniRef50_Q2Y8M6 N succinylarginine dihydrolase 1.50837536598e-05 5.0615915139e-05 3.55321614792e-05 +UniRef50_P63229 D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase 0.000223805922247 1.45494721667e-05 -0.00020925645008 +UniRef50_UPI00016C41D3 preprotein translocase subunit SecA 5.83329550424e-06 3.72411265694e-05 3.14078310652e-05 +UniRef50_A1BAM5 2.62952768077e-05 0.000378064849263 0.000351769572455 +UniRef50_UPI0003B3E9C2 cobalamin biosynthesis protein 7.65521839629e-05 0.000377546591003 0.00030099440704 +UniRef50_UPI0003651143 cold shock protein, partial 2.74741363109e-05 1.7161600205e-05 -1.03125361059e-05 +UniRef50_P33348 0.00255970780493 0.00048537799212 -0.00207432981281 +UniRef50_Y5MV84 0.00153477060641 1.65255634518e-05 -0.00151824504296 +UniRef50_UPI0003B3392D pyridine nucleotide disulfide oxidoreductase 3.83871540707e-06 2.12505022957e-05 1.74117868886e-05 +UniRef50_A0A023B4C6 4.63819422101e-06 1.34859807488e-05 8.84778652779e-06 +UniRef50_Q5DXZ5 Lateral flagellar motor protein B 0.00407980071436 0.00113377030243 -0.00294603041193 +UniRef50_P45769 0.00207592490052 0.000253853901306 -0.00182207099921 +UniRef50_B9KUP5 0.00204597794229 0.000543940685578 -0.00150203725671 +UniRef50_A7H6H5 Glucose 1 phosphate adenylyltransferase 7.89921593479e-06 1.20789433206e-05 4.17972738581e-06 +UniRef50_Q8G3W4 Permease of ABC transporter for sugars 0.000573414754476 0.00621470856633 0.00564129381185 +UniRef50_UPI00046C05A0 PREDICTED 2.29073575845e-05 9.82149473889e-05 7.53075898044e-05 +UniRef50_Q9ZMZ4 Urease subunit alpha 0.00070094077846 0.0029079147787 0.00220697400024 +UniRef50_Q2NA61 NADH quinone oxidoreductase subunit B 3.24379373945e-05 5.56783487769e-05 2.32404113824e-05 +UniRef50_P43262 Probable phospholipid binding lipoprotein MlaA 0.000822418765628 0.00287856974796 0.00205615098233 +UniRef50_G4LR38 0.0012168056243 0.000239122838212 -0.000977682786088 +UniRef50_A6QE03 Amidase 7.79929729079e-05 0.000405555985165 0.000327563012257 +UniRef50_A7C6L8 Excinuclease ABC subunit A 1.2143137735e-05 6.41820174776e-05 5.20388797426e-05 +UniRef50_UPI0001C373E9 helicase 7.25215787739e-07 1.36584905101e-05 1.29332747224e-05 +UniRef50_S6UH58 0.000124012885587 2.95276839803e-05 -9.44852016067e-05 +UniRef50_UPI000416F2B1 alpha amylase 1.50703172612e-05 1.1011041767e-05 -4.0592754942e-06 +UniRef50_UPI00026CA7A4 anhydro N acetylmuramic acid kinase 8.24970514116e-06 5.41626553079e-05 4.59129501667e-05 +UniRef50_UPI000441A65C PREDICTED 2.258502536e-05 1.43469943454e-05 -8.2380310146e-06 +UniRef50_Q4ZZY5 8.98670736003e-05 0.000183659762573 9.37926889727e-05 +UniRef50_A0A024HXK5 0.000119486966624 1.45341478699e-05 -0.000104952818754 +UniRef50_UPI0000164D05 cytochrome c oxidase, subunit II 1.19387159242e-06 0.0501669819222 0.0501657880506 +UniRef50_Q6A5B0 0.000427342628894 0.000264726264841 -0.000162616364053 +UniRef50_X1NF36 Marine sediment metagenome DNA, contig 2.55427031798e-05 0.000157001412497 0.000131458709317 +UniRef50_Q5HLC6 Transcriptional regulator, MerR family 0.00817182046483 0.0038622417981 -0.00430957866673 +UniRef50_P44528 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.00103955620248 6.78806695283e-05 -0.000971675532952 +UniRef50_F4GZX9 Amidophosphoribosyltransferase 7.94150046685e-05 0.00497816626972 0.00489875126505 +UniRef50_C6KU11 ABC transporter, permease protein 8.49810087235e-05 2.90787374061e-05 -5.59022713174e-05 +UniRef50_R9SK19 Histone acetyltransferase ELP3 family 0.00303567994113 0.0011951999861 -0.00184047995503 +UniRef50_B7IB09 Endonuclease exonuclease phosphatase 0.000202284689816 0.00607921344193 0.00587692875211 +UniRef50_R4NJP1 Signal peptidase I 0.0038641561021 0.00352264843809 -0.00034150766401 +UniRef50_Q8FBR8 5.83358310779e-05 3.20496053928e-05 -2.62862256851e-05 +UniRef50_Q46TV5 Amidase 0.000372638057105 0.000124082649234 -0.000248555407871 +UniRef50_Q99W47 Serine aspartate repeat containing protein D 0.0113450053575 0.00172772280502 -0.00961728255248 +UniRef50_UPI000477EDDF 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.34242136993e-05 1.31743773864e-05 -1.02498363129e-05 +UniRef50_B0RYF7 2 methylcitrate hydratase 0.000397261925474 0.00609777103479 0.00570050910932 +UniRef50_B9D5D5 1.98046155458e-05 3.46934103295e-05 1.48887947837e-05 +UniRef50_S6AZR4 0.000272225472725 0.000217945907889 -5.4279564836e-05 +UniRef50_A1B9D8 ABC transporter related protein 0.00223009761593 0.00141733744242 -0.00081276017351 +UniRef50_J3DVI4 8.85346085631e-05 0.000109614272475 2.10796639119e-05 +UniRef50_UPI00047C6BBB uracil transporter 6.70087451266e-05 0.000168588431059 0.000101579685932 +UniRef50_K0JC90 Mobilization protein A 0.000453282190779 5.87443714917e-05 -0.000394537819287 +UniRef50_UPI0004668D5E peptidase S11 5.16836570866e-06 2.01302633986e-05 1.49618976899e-05 +UniRef50_A6LZM4 0.000107955954865 0.00162652192923 0.00151856597436 +UniRef50_Q4KGS9 GAF domain cyclic diguanylate phosphodiesterase domain protein 2.88373856325e-06 6.64639128198e-05 6.35801742565e-05 +UniRef50_B0B7Q0 Pyruvate kinase 3.91561678854e-06 4.63457345603e-06 7.1895666749e-07 +UniRef50_K8NVT8 Diguanylate cyclase domain containing protein 3.07302012788e-05 1.4247680879e-05 -1.64825203998e-05 +UniRef50_Q3JSP4 0.000142664773573 0.000372743160096 0.000230078386523 +UniRef50_UPI000474188B dTDP 4 dehydrorhamnose 3,5 epimerase 8.56071548121e-06 1.77246660845e-05 9.16395060329e-06 +UniRef50_S6AGE8 2.1137545491e-05 0.00155605069186 0.00153491314637 +UniRef50_Q96S55 ATPase WRNIP1 2.89653416051e-06 2.51701837151e-05 2.22736495546e-05 +UniRef50_UPI0003B5BF85 ABC transporter 5.03561422951e-06 5.76073234275e-06 7.2511811324e-07 +UniRef50_F8DIK9 Phosphotransferase enzyme family 0.00688999346857 0.00571964218281 -0.00117035128576 +UniRef50_P0AFM3 Glycine betaine binding periplasmic protein 0.0162263459932 0.00563576538334 -0.0105905806099 +UniRef50_UPI00037F68CC hypothetical protein 2.20300516273e-05 2.81664358737e-05 6.1363842464e-06 +UniRef50_Q4L5D3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00470589917981 0.00100427916654 -0.00370162001327 +UniRef50_A6LWI6 GAF domain containing protein 0.00879897661091 0.00562201924473 -0.00317695736618 +UniRef50_Q9PBC7 Histidine biosynthesis bifunctional protein HisB 0.00310240144229 0.00406581295447 0.00096341151218 +UniRef50_C0RG90 3 phosphoshikimate 1 carboxyvinyltransferase 0.000509206598127 0.000297339965658 -0.000211866632469 +UniRef50_E3ZQM3 YqeL 5.18276229346e-05 0.000667388171693 0.000615560548758 +UniRef50_P72139 Putative imidazole glycerol phosphate synthase subunit hisF2 0.000673684748627 0.000685753825043 1.2069076416e-05 +UniRef50_B2G6L2 Isoleucine tRNA ligase 0.0169144496618 0.0144477881506 -0.0024666615112 +UniRef50_D5E389 Relaxase mobilization nuclease domain protein 0.000301922124451 3.64831600988e-05 -0.000265438964352 +UniRef50_F7F1K1 2.82110713739e-06 4.18458795825e-05 3.90247724451e-05 +UniRef50_B2S6U9 Carbamoyl phosphate synthase small chain 0.00219617592887 0.000177367390508 -0.00201880853836 +UniRef50_A0A058ZGI8 1.81254548438e-05 1.37027183802e-05 -4.4227364636e-06 +UniRef50_UPI00047EBD86 hypothetical protein, partial 2.6286981689e-06 1.33686134264e-05 1.07399152575e-05 +UniRef50_X1RQI5 Marine sediment metagenome DNA, contig 1.89212973806e-05 1.49858692221e-05 -3.9354281585e-06 +UniRef50_O66605 Lon protease 1.68699879454e-06 3.52058654758e-05 3.35188666813e-05 +UniRef50_Q653B9 7.814703027e-05 8.63424200089e-05 8.1953897389e-06 +UniRef50_UPI00047DCF6D dTDP 4 dehydrorhamnose 3,5 epimerase 3.23015347689e-05 1.77713318235e-05 -1.45302029454e-05 +UniRef50_UPI0004418B4E PREDICTED 1.45127312878e-05 1.45063699849e-05 -6.3613029e-09 +UniRef50_P37024 ATP dependent RNA helicase HrpB 0.000419171202939 0.000266051085761 -0.000153120117178 +UniRef50_P45404 Cytochrome c type biogenesis protein CycK 0.00582054680958 0.000492232903064 -0.00532831390652 +UniRef50_E6SIK1 Xanthine uracil vitamin C permease 0.00030581571671 0.0233851465464 0.0230793308297 +UniRef50_Q8FT67 Triosephosphate isomerase 6.72502513686e-06 9.64470854778e-05 8.97220603409e-05 +UniRef50_L0A7V5 ABC type Fe3+ hydroxamate transport system, periplasmic component 3.67252879385e-05 0.00645472485436 0.00641799956642 +UniRef50_UPI000378926F Gnt II system L idonate transporter IdnT, partial 5.22725372676e-06 7.95226320055e-06 2.72500947379e-06 +UniRef50_UPI0004628F03 hypothetical protein 2.47269880895e-05 0.000123936640101 9.92096520115e-05 +UniRef50_E3D2E3 0.00017584751034 0.00416816044096 0.00399231293062 +UniRef50_Q9RYE7 Chromosomal replication initiator protein DnaA 0.000368994553624 0.0365186791701 0.0361496846165 +UniRef50_B9KTR9 0.000382809495942 0.000743423810463 0.000360614314521 +UniRef50_UPI00037D79FE hypothetical protein 1.71290884847e-05 1.69137024146e-05 -2.153860701e-07 +UniRef50_Q5X183 0.000237911337508 0.00742330784886 0.00718539651135 +UniRef50_Q5HEM7 DNA polymerase IV 0.0210533921232 0.00446629078494 -0.0165871013383 +UniRef50_B9KTR7 0.000163829099272 0.000154276823989 -9.552275283e-06 +UniRef50_E9C843 1.2052593655e-05 1.83121313845e-06 -1.02213805166e-05 +UniRef50_F3U3B9 0.000631326331853 2.51256024573e-05 -0.000606200729396 +UniRef50_Q5M4V7 Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein 0.00359327886167 0.00417542386488 0.00058214500321 +UniRef50_UPI0003B3970A arylesterase 6.3378293779e-06 1.01839023136e-05 3.8460729357e-06 +UniRef50_UPI0003C73AEA oxidoreductase 0.000165808094573 0.000426347620372 0.000260539525799 +UniRef50_W5Y8E7 6.00723780228e-05 2.06848599848e-05 -3.9387518038e-05 +UniRef50_UPI000360A00D phage tail protein 2.03991863168e-05 2.99255321412e-05 9.5263458244e-06 +UniRef50_L7WUC8 HesA MoeB ThiF family protein 0.0128625759007 0.00109975190756 -0.0117628239931 +UniRef50_A6TKL7 2.06972554821e-05 3.71459436328e-05 1.64486881507e-05 +UniRef50_M4UHU9 0.00067323607527 7.32546582621e-06 -0.000665910609444 +UniRef50_I6TYT4 Transposase IS204 IS1001 IS1096 IS1165 family protein 0.00166847820395 0.00191516656741 0.00024668836346 +UniRef50_S2ZWU0 2.18537965716e-05 7.43670485448e-05 5.25132519732e-05 +UniRef50_Q06115 Choloylglycine hydrolase 0.00284910920615 0.00173336964275 -0.0011157395634 +UniRef50_P25553 Lactaldehyde dehydrogenase 6.43372947443e-06 0.0057758096017 0.00576937587223 +UniRef50_M9R5B4 Aminotransferase 0.00110287735399 0.000223161238178 -0.000879716115812 +UniRef50_Q9DWG9 Pr23.1 6.88629852005e-05 4.97131945548e-05 -1.91497906457e-05 +UniRef50_P17334 N,N diacetylchitobiose permease IIC component 0.00242783908131 0.00102949482912 -0.00139834425219 +UniRef50_UPI00021962A1 ABC type polar amino acid transport system, ATPase component, partial 1.66703311327e-05 1.73800840618e-05 7.097529291e-07 +UniRef50_UPI0003A69976 hypothetical protein 3.43109044047e-05 2.75755099816e-05 -6.7353944231e-06 +UniRef50_Q834B3 Phosphate import ATP binding protein PstB 2 1.2629692219e-05 0.000350098827533 0.000337469135314 +UniRef50_R9ZFP1 MFS transporter 0.000104086210166 0.000358296517874 0.000254210307708 +UniRef50_Q49ZN6 N acetylmuramic acid 6 phosphate etherase 7.80930351724e-06 1.11704058536e-05 3.36110233636e-06 +UniRef50_K8E2U7 ABC transporter, CydDC cysteine exporter family, permease ATP binding protein CydD 0.000467111196855 0.0016261327558 0.00115902155894 +UniRef50_A3M2G5 Transposition Helper 0.00036296729697 0.00889775268894 0.00853478539197 +UniRef50_C5Y3F1 6.93744129686e-06 2.52463690816e-05 1.83089277847e-05 +UniRef50_K0SHL6 0.000513563461443 0.000101260910386 -0.000412302551057 +UniRef50_D3RCC5 Ethanolamine utilisation protein EutH 0.00128451279398 0.00163383718916 0.00034932439518 +UniRef50_J7R0T4 Rhsg core protein with extension 0.00404797171324 0.00121444599548 -0.00283352571776 +UniRef50_P20384 Putative transposon Tn552 DNA invertase bin3 0.10471001284 0.0142939386056 -0.0904160742344 +UniRef50_P19672 Putative rRNA methyltransferase YqxC 1.76627683497e-05 0.00508048506365 0.0050628222953 +UniRef50_W9BCF0 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 2.54749945824e-05 3.35288037946e-05 8.0538092122e-06 +UniRef50_M3Z7R3 3.86294330453e-05 1.74725518625e-05 -2.11568811828e-05 +UniRef50_F0KK38 0.000270922958506 0.0082986334321 0.00802771047359 +UniRef50_N6VAB0 0.000170409687593 5.54253071778e-05 -0.000114984380415 +UniRef50_Q2P582 Aspartate tRNA ligase 0.00460973211363 0.00470714839121 9.741627758e-05 +UniRef50_A1JSC3 UvrABC system protein B 0.000798449460941 0.000400692295175 -0.000397757165766 +UniRef50_O26273 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.00230308016908 0.000782461541859 -0.00152061862722 +UniRef50_P37772 Inner membrane ABC transporter permease protein YjfF 0.00333839211359 0.00105283869912 -0.00228555341447 +UniRef50_A0A026SW65 1.42853735793e-06 7.26648678921e-05 7.12363305342e-05 +UniRef50_G8WJX8 2.2542552207e-05 8.32388635744e-05 6.06963113674e-05 +UniRef50_F0YA18 9.70821255751e-05 0.000333668144057 0.000236586018482 +UniRef50_UPI000368DC29 hypothetical protein 8.5600510081e-05 0.000130891511488 4.5291001407e-05 +UniRef50_UPI00029A2592 dihydrolipoamide dehydrogenase, partial 3.39935488234e-05 8.1094744461e-05 4.71011956376e-05 +UniRef50_P39858 Protein CapI 1.10882925713e-05 0.000592472033592 0.000581383741021 +UniRef50_R4KAB8 High affinity sulfate transporter 1 0.000511003436081 0.000991920492529 0.000480917056448 +UniRef50_P67185 Probable transcriptional regulatory protein SAG1645 0.0136585197178 0.0127185628028 -0.000939956915 +UniRef50_D4HEB6 Ribosomal subunit interface protein 0.000180327701681 0.000638996201181 0.0004586684995 +UniRef50_S3NMU2 0.000187571481725 0.00666265810004 0.00647508661831 +UniRef50_B7H1L0 EpsC 0.000481980756962 0.00523259545152 0.00475061469456 +UniRef50_B6TJX5 Grx_I1 glutaredoxin subgroup III 0.000268992391105 0.000185430109167 -8.3562281938e-05 +UniRef50_V5VA90 0.000126815001857 0.0131509575083 0.0130241425064 +UniRef50_UPI0003DE9A9C PREDICTED 1.53395802631e-05 0.000836015603976 0.000820676023713 +UniRef50_M4QX62 General secretion pathway protein D 5.24528933048e-05 0.00729011123658 0.00723765834328 +UniRef50_P56123 Ribonuclease R 6.27400535489e-05 0.00405287445556 0.00399013440201 +UniRef50_A6TXF8 Histidine ammonia lyase 0.0117471459976 0.0019242029618 -0.0098229430358 +UniRef50_Q9RU93 NADH dehydrogenase I, G subunit 0.000118427669881 0.0165339916394 0.0164155639695 +UniRef50_H9JIZ2 0.000224465617097 4.70482656792e-05 -0.000177417351418 +UniRef50_UPI00016C363F CheA signal transduction histidine kinase, partial 6.33645259553e-05 7.34956366756e-05 1.01311107203e-05 +UniRef50_C6XJS7 Membrane protein 1.88509248458e-05 5.86854247297e-05 3.98344998839e-05 +UniRef50_D4HDP4 Transcriptional regulator, MerR family 0.000565831322848 0.00714119684451 0.00657536552166 +UniRef50_S6VQV4 GlcG protein 3.15610562223e-05 8.55312365878e-05 5.39701803655e-05 +UniRef50_Q3HKF7 Transcriptional regulator, LysR family 0.00693773465229 0.00171023942075 -0.00522749523154 +UniRef50_Q48KH7 Response regulator 0.000427602384119 0.00199675362471 0.00156915124059 +UniRef50_Q4THH6 Chromosome undetermined SCAF2934, whole genome shotgun sequence. 0.00022033188776 5.73858704506e-06 -0.000214593300715 +UniRef50_B5YJD3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.92081699906e-05 3.43694947412e-06 -1.57712205165e-05 +UniRef50_Q02441 Denitrification regulatory protein NirQ 0.00843808006112 0.00209534084601 -0.00634273921511 +UniRef50_A6D100 3.1928899509e-06 9.29418958025e-05 8.97490058516e-05 +UniRef50_E4ZAN9 NADH dehydrogenase I chain J 0.00017055089858 0.00253261362313 0.00236206272455 +UniRef50_Q92IH1 DNA topoisomerase 1 5.41173041607e-06 5.14764548942e-06 -2.6408492665e-07 +UniRef50_R6GIU2 Anaerobic sulfite reductase subunit C 0.00044298054813 0.00191250546997 0.00146952492184 +UniRef50_UPI000478777B adenosine deaminase 2.00422032906e-05 4.54724725793e-05 2.54302692887e-05 +UniRef50_Q56220 NADH quinone oxidoreductase subunit 4 9.49286506404e-06 9.17414583619e-05 8.22485932979e-05 +UniRef50_A1SS95 Prolipoprotein diacylglyceryl transferase 0.000600584428659 0.0072837907848 0.00668320635614 +UniRef50_UPI00035E9ADC hypothetical protein 7.54738020193e-06 0.000103062445205 9.55150650031e-05 +UniRef50_Q30TV4 50S ribosomal protein L14 0.032661496305 0.0035538767047 -0.0291076196003 +UniRef50_UPI0003788832 hypothetical protein 1.32678123066e-06 1.51707448802e-05 1.38439636495e-05 +UniRef50_V1GSR8 Siderophore interacting protein 0.000448667557334 0.000355803259269 -9.2864298065e-05 +UniRef50_U4KCQ5 Isoleucine tRNA ligase 0.00101101415417 0.000480109193642 -0.000530904960528 +UniRef50_K7RTE7 UvrD REP helicase 0.000225522113463 0.004821075346 0.00459555323254 +UniRef50_I6U2U0 Permease 0.0122627903853 0.00290593248843 -0.00935685789687 +UniRef50_Q5FJI8 Acyl carrier protein 2.43750335277e-05 4.67615004598e-05 2.23864669321e-05 +UniRef50_UPI000476D930 phosphopantetheine adenylyltransferase 2.50451620642e-05 1.68717720966e-05 -8.1733899676e-06 +UniRef50_W8VWJ7 0.000987053417958 0.00218753114959 0.00120047773163 +UniRef50_A5D1G8 Methylthioribose 1 phosphate isomerase 0.000466501223218 0.00138239636781 0.000915895144592 +UniRef50_UPI00047CDE52 hypothetical protein 7.34416778829e-06 1.71365397594e-05 9.79237197111e-06 +UniRef50_Q2FH48 Phosphate binding protein PstS 0.0157006897857 0.00402567587681 -0.0116750139089 +UniRef50_Q5F4W9 Maf like protein NGO2175 0.000225140748821 0.00346288419572 0.0032377434469 +UniRef50_Q732I6 Orotidine 5 phosphate decarboxylase 0.0185636621689 0.0192418254175 0.0006781632486 +UniRef50_P76612 0.00196197953795 0.000416626258262 -0.00154535327969 +UniRef50_L1K5J8 0.0102508962883 0.00018072218278 -0.0100701741055 +UniRef50_B2EBX5 0.0001120428719 0.000237634676795 0.000125591804895 +UniRef50_S6VZ76 Inner membrane translocator 0.00062355697263 7.79797316464e-05 -0.000545577240984 +UniRef50_UPI0003B71E48 RNA polymerase subunit sigma 54 1.68506773741e-05 4.07131824725e-05 2.38625050984e-05 +UniRef50_P02930 Outer membrane protein TolC 0.00307235143049 0.00166997742763 -0.00140237400286 +UniRef50_A7ZK67 Methylglyoxal synthase 0.00359829496077 0.00380741303336 0.00020911807259 +UniRef50_G2UGP7 Putative membrane protein 2.54772868019e-05 0.000624358542957 0.000598881256155 +UniRef50_F2B298 Archaeal DNA polymerase II, large subunit 1.74794003368e-05 2.0581046512e-05 3.1016461752e-06 +UniRef50_Q9DWH3 Pr5 6.18491516412e-05 9.50590252783e-05 3.32098736371e-05 +UniRef50_UPI00046774C4 phosphoserine phosphatase 5.66450792158e-06 1.24723524107e-05 6.80784448912e-06 +UniRef50_X6JA50 4.09787025675e-05 1.88551024801e-05 -2.21236000874e-05 +UniRef50_UPI0003752D0D hypothetical protein 1.53903569265e-05 2.55692576411e-05 1.01789007146e-05 +UniRef50_Q8CTJ5 0.0178323973825 0.00553655765373 -0.0122958397288 +UniRef50_Q4UKI8 2 oxoglutarate dehydrogenase E1 component 1.5799977335e-06 1.22910629901e-05 1.07110652566e-05 +UniRef50_Q5F5X5 0.000160177930206 0.00170193674714 0.00154175881693 +UniRef50_O25441 0.000118087379206 0.00603712051017 0.00591903313096 +UniRef50_A1U1S9 Acyl carrier protein 3.62717600622e-05 4.6896223492e-05 1.06244634298e-05 +UniRef50_D9SSR9 ABC transporter related 0.000140290881731 0.00274989629911 0.00260960541738 +UniRef50_C5FF74 Splicing factor 3B subunit 4 2.61245071292e-05 2.31331994839e-05 -2.9913076453e-06 +UniRef50_UPI00037E81F2 MULTISPECIES 7.21226107067e-05 4.56287243231e-05 -2.64938863836e-05 +UniRef50_D0K3P4 Sua5 YciO YrdC YwlC family protein 0.0141575354225 0.000341406595601 -0.0138161288269 +UniRef50_Q5HDX9 Adenylate kinase 0.0212267216232 0.00581124298033 -0.0154154786429 +UniRef50_B2IR65 0.00421530084046 0.00866819375854 0.00445289291808 +UniRef50_P0A5W9 Ribonucleoside diphosphate reductase subunit alpha 0.00252396363211 0.0108357020548 0.00831173842269 +UniRef50_Q5HK23 Ribosomal RNA large subunit methyltransferase H 0.00872235820874 0.00114224991911 -0.00758010828963 +UniRef50_D5H605 3.1570149973e-05 1.13889882103e-05 -2.01811617627e-05 +UniRef50_V8NVA5 Vegetative cell wall protein gp1 2.04469755447e-05 0.00028214971834 0.000261702742795 +UniRef50_T0GPL5 0.000323103934666 0.00016067538887 -0.000162428545796 +UniRef50_B7GX14 Probable 5 dehydro 4 deoxyglucarate dehydratase 0.000131518480593 0.00504257433128 0.00491105585069 +UniRef50_A4X329 Transcriptional regulator, LacI family 0.000106334081372 0.00407252271976 0.00396618863839 +UniRef50_Q837B3 Methionine tRNA ligase 2.03105378809e-05 0.000535848122554 0.000515537584673 +UniRef50_K2DQ88 2.03127504433e-05 0.00178837402907 0.00176806127863 +UniRef50_P52002 Multidrug resistance protein MexB 0.00208737017076 0.00135063013479 -0.00073674003597 +UniRef50_UPI00039FB6D9 hypothetical protein 4.58203851822e-07 6.29603294781e-05 6.25021256263e-05 +UniRef50_UPI0004153B49 hypothetical protein 3.67592727076e-05 7.83179687777e-06 -2.89274758298e-05 +UniRef50_Q5HJ26 Single stranded DNA binding protein 2 0.00327825028214 0.000516588988672 -0.00276166129347 +UniRef50_UPI000378D9CD hypothetical protein, partial 7.86718978569e-06 0.000399144615115 0.000391277425329 +UniRef50_E3I295 Peptidase M20 0.0035318852967 0.000877903916283 -0.00265398138042 +UniRef50_V7EQE6 5.28182944685e-06 2.88254303055e-06 -2.3992864163e-06 +UniRef50_P96963 DNA repair protein RadA homolog 0.000317069060138 0.000131349164648 -0.00018571989549 +UniRef50_UPI000197AB3D hypothetical protein 2.82386295234e-05 9.17121010581e-06 -1.90674194176e-05 +UniRef50_Q3ACZ7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000143610053598 8.2116093624e-06 -0.000135398444236 +UniRef50_R9SL16 Energy converting hydrogenase A subunit P EhaP 0.00372036916144 0.00140836644364 -0.0023120027178 +UniRef50_H2JC94 Drug resistance transporter, EmrB QacA subfamily 0.000209375239973 0.00191360452669 0.00170422928672 +UniRef50_D7FCY4 7.50966821352e-05 0.00209196557611 0.00201686889397 +UniRef50_O30807 NAD dependent malic enzyme 0.00625405170713 0.00258693534741 -0.00366711635972 +UniRef50_T1YCF9 0.0109443514391 0.00473747828956 -0.00620687314954 +UniRef50_UPI000367099C 30S ribosomal protein S2 1.16223701895e-05 1.04244194839e-05 -1.1979507056e-06 +UniRef50_UPI00036ED496 hypothetical protein 3.78987397056e-05 1.05410237375e-05 -2.73577159681e-05 +UniRef50_D3QF63 0.0217426656039 0.00467904781824 -0.0170636177857 +UniRef50_G8RGA7 ATP dependent DNA helicase, RecQ family 0.00889067289667 0.00150816518683 -0.00738250770984 +UniRef50_UPI00046621BD hypothetical protein 2.97933471938e-06 9.86055100277e-05 9.56261753083e-05 +UniRef50_UPI00034B9DA0 hypothetical protein 3.24534355801e-06 6.25111964113e-06 3.00577608312e-06 +UniRef50_Q39FG9 1.98903966321e-05 4.66364665681e-05 2.6746069936e-05 +UniRef50_Q8X6C5 Xanthine dehydrogenase FAD binding subunit 0.00256421807551 0.000660389106651 -0.00190382896886 +UniRef50_J0PUR2 0.000389696812655 0.000105997482871 -0.000283699329784 +UniRef50_Q8NNF6 Pyruvate dehydrogenase E1 component 0.00021396276354 0.00415500087294 0.0039410381094 +UniRef50_UPI00035DD0A3 hypothetical protein 1.82280404061e-05 0.00187305795321 0.0018548299128 +UniRef50_B9L9V6 Inner membrane protein YjcH 0.000182049892004 6.39934054844e-05 -0.00011805648652 +UniRef50_P0AFN4 Phage shock protein C 0.00429672991919 0.00175435666453 -0.00254237325466 +UniRef50_Q3ZTZ2 1.00342729469e-05 1.42076590748e-05 4.1733861279e-06 +UniRef50_E1RPL7 2.35487204541e-05 3.68455028343e-05 1.32967823802e-05 +UniRef50_UPI00040408E0 hypothetical protein 1.31454943213e-05 3.75553480562e-05 2.44098537349e-05 +UniRef50_V4QZ67 ATPase 9.49117849326e-05 7.77178239014e-05 -1.71939610312e-05 +UniRef50_Q5HNT4 Putative Holliday junction resolvase 0.00227268171505 0.00087734816672 -0.00139533354833 +UniRef50_X6KWG2 1.6203796048e-05 4.51811738646e-06 -1.16856786615e-05 +UniRef50_Q6F6Q1 0.000476630428599 0.00899468350563 0.00851805307703 +UniRef50_A0L3B2 Diguanylate cyclase with GAF sensor 1.07582720557e-05 0.000466675098863 0.000455916826807 +UniRef50_P67702 Antitoxin HigA 0.00109153208873 0.000851875111142 -0.000239656977588 +UniRef50_N8J4Y3 sn glycerol 3 phosphate binding periplasmic protein ugpB 3.83386868628e-05 1.57989452983e-05 -2.25397415645e-05 +UniRef50_K7ARY8 0.000376892291542 0.000438170753534 6.1278461992e-05 +UniRef50_Q57SA8 7 cyano 7 deazaguanine synthase 0.0107139216711 0.0029542547064 -0.0077596669647 +UniRef50_B2VDK4 Acyl carrier protein 4.02282145421e-05 5.3495590544e-05 1.32673760019e-05 +UniRef50_B1Y7H6 50S ribosomal protein L1 0.000164124342977 0.00421378696364 0.00404966262066 +UniRef50_M4YP28 Chemotaxis protein 0.00029325353962 0.00101167241705 0.00071841887743 +UniRef50_A3M533 Lysozyme 0.00179755232787 0.00877846249942 0.00698091017155 +UniRef50_K6EM30 Peptidase S8 and S53 subtilisin kexin sedolisin 5.3287527204e-05 3.7444360177e-05 -1.5843167027e-05 +UniRef50_Q5HQ05 Laccase domain protein SERP0752 0.0223210350798 0.00517606181332 -0.0171449732665 +UniRef50_C5AB28 0.000484998188473 0.000604744106207 0.000119745917734 +UniRef50_UPI0004694578 30S ribosomal protein S15 0.000281416437767 5.16918904623e-05 -0.000229724547305 +UniRef50_Q04EV5 Arginine deiminase 0.0313816321175 0.0104047249468 -0.0209769071707 +UniRef50_Q1J141 Xanthine phosphoribosyltransferase 8.4823076815e-06 0.0503713880633 0.0503629057556 +UniRef50_Q5ZS58 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.92100490441e-05 9.58639406022e-06 -9.62365498388e-06 +UniRef50_I2FAM4 SpfH domain band 7 family protein 0.000107138880474 0.00418056465647 0.004073425776 +UniRef50_F7ZBN3 0.0130693648902 0.00154561859991 -0.0115237462903 +UniRef50_A1B198 4 hydroxyproline betaine 2 epimerase 0.00193978508911 0.000329397567353 -0.00161038752176 +UniRef50_G8QM91 3.59350329834e-06 1.14599582012e-05 7.86645490286e-06 +UniRef50_B9KJK7 0.000726568747469 0.000553513782872 -0.000173054964597 +UniRef50_UPI00036F49F7 hypothetical protein 1.30121197297e-05 0.000243758610021 0.000230746490291 +UniRef50_P75938 Flagellar basal body rod protein FlgF 0.00325817232253 0.000234378337464 -0.00302379398507 +UniRef50_A0A011Q6F6 Ribosomal RNA small subunit methyltransferase I 3.23141813121e-05 9.35460427811e-06 -2.2959577034e-05 +UniRef50_L7HXW0 2.22389871098e-05 1.23032846542e-05 -9.9357024556e-06 +UniRef50_K1V2Z1 0.00121274062033 0.00110043028406 -0.00011231033627 +UniRef50_J3M0X2 9.10612646704e-06 0.000175408750172 0.000166302623705 +UniRef50_T1YBW3 ABC transporter ATP binding and permease protein 0.0106305153567 0.00374470288152 -0.00688581247518 +UniRef50_Q216W2 Transcriptional regulator, GntR family 0.00119037347493 0.000803250551747 -0.000387122923183 +UniRef50_B9KU54 0.00221799677066 7.64921321693e-05 -0.00214150463849 +UniRef50_D8JAP3 ABC transporter 0.000259151999593 7.24189534428e-05 -0.00018673304615 +UniRef50_C4K764 Phosphopantetheine adenylyltransferase 5.56486666863e-05 2.59224291451e-05 -2.97262375412e-05 +UniRef50_Q9RWE3 0.000131528219109 0.0155940543345 0.0154625261154 +UniRef50_A4BRR9 9.24206887868e-05 2.91450418242e-05 -6.32756469626e-05 +UniRef50_F0RR64 0.000846315859607 0.301362181458 0.300515865598 +UniRef50_A5IUW4 Transport system permease protein 0.0195898797271 0.00793448507321 -0.0116553946539 +UniRef50_L2Z1P6 Evolved beta galactosidase subunit alpha 0.001210547833 0.00017361951133 -0.00103692832167 +UniRef50_F6BWB1 Transcriptional regulator, MerR family 0.0145319279065 0.0131902381243 -0.0013416897822 +UniRef50_I4SHI8 Rhs core protein with extension 0.000368619629915 0.000191556781752 -0.000177062848163 +UniRef50_UPI00018513F7 Acyl CoA dehydrogenase 5.90916572611e-06 1.17655589858e-05 5.85639325969e-06 +UniRef50_K0SMT2 7.76238838834e-06 3.10956498172e-05 2.33332614289e-05 +UniRef50_UPI00037E2E9B hypothetical protein 9.3905472127e-05 0.000195315636629 0.000101410164502 +UniRef50_A8KZZ6 ABC transporter related 7.82624717782e-05 0.00511213272173 0.00503387024995 +UniRef50_UPI0003735C5A hypothetical protein 3.34342149463e-05 2.04919650784e-05 -1.29422498679e-05 +UniRef50_A5FWE5 3.93091219731e-05 0.000101004519045 6.16953970719e-05 +UniRef50_A6T7G7 UPF0227 protein KPN78578_10770 0.00118682373879 0.000327523148093 -0.000859300590697 +UniRef50_F8IMA6 Transposase 1.57407456725e-05 3.16118340694e-05 1.58710883969e-05 +UniRef50_A3DJF6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.29341413128e-05 1.91631978345e-05 6.2290565217e-06 +UniRef50_F6GAA5 1.24331211052e-05 8.95759440317e-06 -3.47552670203e-06 +UniRef50_Q8DIA7 Phosphoribosylformylglycinamidine synthase 2 2.75870718254e-05 6.19807600038e-06 -2.1388995825e-05 +UniRef50_R6QY26 FAD dependent oxidoreductase 0.000428742249967 0.000547339060729 0.000118596810762 +UniRef50_UPI000475B264 glyoxal reductase 2.31886027958e-05 3.52995108814e-05 1.21109080856e-05 +UniRef50_A8YZY5 Anthranilate synthase 0.019819210937 0.00823369651212 -0.0115855144249 +UniRef50_Q9ZIJ1 Gluconate permease 0.000715049044288 0.00476801060226 0.00405296155797 +UniRef50_K0LVM3 Fructose phosphotransferase system enzyme fruA homolog 0.0130498656042 0.00434863162488 -0.00870123397932 +UniRef50_UPI00047E7610 peroxiredoxin 1.11570069838e-05 0.000140028250214 0.00012887124323 +UniRef50_UPI0001912667 hypothetical protein 0.000845963288604 0.000214395244822 -0.000631568043782 +UniRef50_A4J4I2 Glucose 1 phosphate adenylyltransferase 0.000567924791033 0.00211200048872 0.00154407569769 +UniRef50_P42425 Lon protease 2 6.80563681868e-05 0.00105715087767 0.000989094509483 +UniRef50_W7Z889 7.86599446498e-06 1.34590878925e-05 5.59309342752e-06 +UniRef50_I2NPW1 1.1316828138e-05 0.000316415700282 0.000305098872144 +UniRef50_A0L4I8 Transcriptional regulator, BolA protein family 3.16754093137e-05 5.10961821583e-05 1.94207728446e-05 +UniRef50_A6M0C5 Metallophosphoesterase 0.00104671728094 0.00189499835587 0.00084828107493 +UniRef50_UPI000399D7FF dihydrolipoyl dehydrogenase 3.87224790647e-06 5.84226790888e-06 1.97002000241e-06 +UniRef50_Q6A9R0 Ribosomal RNA small subunit methyltransferase H 0.000278292766648 0.00218833950979 0.00191004674314 +UniRef50_UPI0004414ABB LamB YcsF family protein 5.77368724286e-05 4.43604798223e-05 -1.33763926063e-05 +UniRef50_Q9I3J5 5 hydroxyisourate hydrolase 0.00388162789272 0.00192137387409 -0.00196025401863 +UniRef50_Q7DKE3 Nitrile hydratase activator 5.3152777933e-06 6.45843554743e-06 1.14315775413e-06 +UniRef50_C5MZU9 Formate nitrite transporter 0.0238758918873 0.00647110925669 -0.0174047826306 +UniRef50_UPI000364C078 hypothetical protein 5.59382215456e-05 1.86382696268e-05 -3.72999519188e-05 +UniRef50_Q88Z97 Methionine tRNA ligase 0.011407950296 0.00291596640528 -0.00849198389072 +UniRef50_X2HX12 Membrane protein 0.000220752040266 0.0036277104479 0.00340695840763 +UniRef50_E3HGU2 Oxidoreductase FAD binding domain protein 3 0.000214023427242 0.00018248200115 -3.1541426092e-05 +UniRef50_UPI0001816FFE transposase 0.000134295121259 4.60934723138e-06 -0.000129685774028 +UniRef50_K8C391 2.30136252884e-05 0.000212797189621 0.000189783564333 +UniRef50_P28998 NADP specific glutamate dehydrogenase 0.000101533899186 0.0151768348663 0.0150753009671 +UniRef50_UPI00029B44FF UDP N acetylglucosamine 1 carboxyvinyltransferase 1.18488096219e-05 1.56444469029e-05 3.795637281e-06 +UniRef50_A0RUI8 Proline tRNA ligase 3.8419952658e-06 1.7110977547e-05 1.32689822812e-05 +UniRef50_B2TJ76 Tetratricopeptide repeat domain protein 0.000268100697518 0.00272903020465 0.00246092950713 +UniRef50_A0A023S0D0 LysR family transcriptional regulator 0.000147072463189 0.00597869561808 0.00583162315489 +UniRef50_K0S2A3 4.76220560023e-05 5.03166655891e-05 2.6946095868e-06 +UniRef50_UPI0002DDE7B4 nitrate nitrite transport protein NarU 3.3866149284e-05 0.000134151609726 0.000100285460442 +UniRef50_G2AG81 Protein ydeP domain protein 0.000180327701681 0.00068694956856 0.000506621866879 +UniRef50_Q92ID5 NADH quinone oxidoreductase subunit A 0.0006222343482 0.00109848940743 0.00047625505923 +UniRef50_UPI00046263A7 PREDICTED 1.15637014494e-05 9.45190054243e-06 -2.11180090697e-06 +UniRef50_F3ZH54 Putative xanthine dehydrogenase YagT iron sulfur binding subunit 3.96804776801e-05 0.000323768949486 0.000284088471806 +UniRef50_P55611 Probable trehalose phosphate phosphatase 1.92109556561e-05 2.16597624687e-05 2.4488068126e-06 +UniRef50_UPI000378EE70 hypothetical protein 5.37898734179e-06 2.21950341619e-05 1.68160468201e-05 +UniRef50_A4Y1A0 Membrane protein insertase YidC 0.000493008721335 0.000952102583469 0.000459093862134 +UniRef50_X2MVD0 0.0034321860727 0.00362525870448 0.00019307263178 +UniRef50_B9KWB3 0.00105662842704 0.00158205377784 0.0005254253508 +UniRef50_F3ZFZ6 2.30789690417e-05 0.00183342994618 0.00181035097714 +UniRef50_A8IHG6 Predicted protein 8.62825117371e-05 2.02654592268e-05 -6.60170525103e-05 +UniRef50_Q1QCK7 Glutamate synthase 8.79237551642e-05 0.00539877254308 0.00531084878792 +UniRef50_J0KVM1 0.00020367949039 0.00130959946019 0.0011059199698 +UniRef50_C6SPT4 1.30773292188e-05 1.20666945286e-05 -1.0106346902e-06 +UniRef50_UPI000309C6DF N acetyl gamma glutamyl phosphate reductase 4.80840008271e-06 7.78347927058e-05 7.30263926231e-05 +UniRef50_UPI000375AEDF hypothetical protein 4.25450726983e-06 4.64529906934e-06 3.9079179951e-07 +UniRef50_B4JDR2 GH10507 7.87503365387e-07 1.3128287887e-06 5.25325423313e-07 +UniRef50_U6UKQ1 Hydroxylamine reductase 0.00249977955003 0.00195837527372 -0.00054140427631 +UniRef50_P26512 Aspartokinase 0.000305211855141 0.00292512211429 0.00261991025915 +UniRef50_W4TKQ6 6.02203169636e-06 0.000175926130882 0.000169904099186 +UniRef50_UPI000463F4EC LamB YcsF family protein 0.000125163450537 5.06938369323e-05 -7.44696136047e-05 +UniRef50_G2JZ43 Carnitine transport permease protein OpuCB 0.0240809615487 0.00622899294388 -0.0178519686048 +UniRef50_UPI00047A693B chemotaxis protein CheY 0.000147456717649 9.5615594769e-05 -5.184112288e-05 +UniRef50_J8VGX4 0.000258128433292 6.75225369695e-05 -0.000190605896322 +UniRef50_UPI00045746A5 PREDICTED 6.06270802374e-06 5.53479271961e-06 -5.2791530413e-07 +UniRef50_UPI00046E1FAA PREDICTED 2.3672919339e-06 1.45269163907e-05 1.21596244568e-05 +UniRef50_P32154 Fructose like PTS system EIIBC component 0.00297470779452 0.00126667182506 -0.00170803596946 +UniRef50_M9VG84 Class I glutamine amidotransferase 0.000770339635806 0.00383588308913 0.00306554345332 +UniRef50_UPI0003B3C78A acyl CoA synthetase 4.28009801137e-06 4.72697271789e-05 4.29896291675e-05 +UniRef50_B7IPS6 Prolipoprotein diacylglyceryl transferase 7.39549303693e-06 0.000950354969344 0.000942959476307 +UniRef50_D3DYK7 ATPase 0.00281018126737 0.00141441206235 -0.00139576920502 +UniRef50_UPI000225AB9D 3 oxoacyl ACP synthase 3.78193190808e-05 2.18405556334e-05 -1.59787634474e-05 +UniRef50_Q57GZ6 Maltoporin 0.00286651406003 0.00150177096013 -0.0013647430999 +UniRef50_R6ZP96 7.70019119217e-05 3.30663482176e-05 -4.39355637041e-05 +UniRef50_Q59660 Succinate dehydrogenase hydrophobic membrane anchor subunit 0.00583710041677 0.000649348392465 -0.00518775202431 +UniRef50_B6IRS5 50S ribosomal protein L15 0.000258552047156 0.00384645017588 0.00358789812872 +UniRef50_C6D8U7 0.000268992391105 0.000980671864723 0.000711679473618 +UniRef50_S4XBL3 1.00287016387e-05 2.66895408891e-05 1.66608392504e-05 +UniRef50_I0EUL3 N5 glutamine S adenosyl L methionine dependent methyltransferase 0.000298364448205 0.00742744916738 0.00712908471917 +UniRef50_UPI00032980B7 PREDICTED 6.87903659029e-05 8.81008018107e-05 1.93104359078e-05 +UniRef50_D1DJZ6 TspB like protein 0.000353836626628 0.00687276751936 0.00651893089273 +UniRef50_UPI0003765EEE hypothetical protein 4.53391372037e-06 2.51753788557e-05 2.06414651353e-05 +UniRef50_D1AIW2 PTS system Galactitol specific IIC component 0.000541991587796 0.00149671143839 0.000954719850594 +UniRef50_Q18KF1 ABC type transport system ATP binding protein 0.0028349868296 0.000567020387033 -0.00226796644257 +UniRef50_UPI0004293C91 UDP glucose 6 dehydrogenase 3.45078338057e-06 6.69270497986e-06 3.24192159929e-06 +UniRef50_Q9CDF7 Putative sugar uptake protein YxfA 0.00180671658487 0.000206756152991 -0.00159996043188 +UniRef50_B2I785 NADH quinone oxidoreductase subunit B 3.93303267502e-05 9.15051335606e-05 5.21748068104e-05 +UniRef50_Q3J1U1 RNA polymerase sigma 54 factor 0.000791355807249 0.000185539291214 -0.000605816516035 +UniRef50_P52073 Glycolate oxidase subunit GlcE 0.00421134513651 0.000585752142543 -0.00362559299397 +UniRef50_K0STI8 0.000172587294925 3.47052890423e-05 -0.000137882005883 +UniRef50_D2B0E6 0.000162213312073 0.000314638937302 0.000152425625229 +UniRef50_W9FWD7 3.90772245237e-05 1.99227612302e-06 -3.70849484007e-05 +UniRef50_B5QX27 Quinolinate synthase A 0.00123956515034 0.000176133223777 -0.00106343192656 +UniRef50_F4FX21 Transcriptional regulator, MerR family 0.00112021376954 0.00552619422699 0.00440598045745 +UniRef50_C6AZU8 ABC transporter related 6.44907725824e-05 0.0516041677848 0.0515396770122 +UniRef50_A5ISU0 von Willebrand factor, type A 0.0208494237473 0.00549579432466 -0.0153536294226 +UniRef50_B4W755 0.000171456900976 7.62156523879e-05 -9.52412485881e-05 +UniRef50_UPI0003B6DDE5 quaternary ammonium transporter 9.65518338205e-05 2.66445340561e-05 -6.99072997644e-05 +UniRef50_P03835 Transposase InsG for insertion sequence element IS4 0.00318025455041 0.000649310311281 -0.00253094423913 +UniRef50_L8UD09 0.00122741933534 0.00656042064705 0.00533300131171 +UniRef50_A6M0D9 Transcriptional regulator, XRE family 0.00304824396969 0.000504814880674 -0.00254342908902 +UniRef50_C7MAG4 Phosphate sulfate permease 0.000154090502289 0.00193855785986 0.00178446735757 +UniRef50_B9KUA0 CBS domain containing protein 0.0099325726005 0.000731306832862 -0.00920126576764 +UniRef50_UPI00045E7085 hypothetical protein 1.40956570296e-05 6.65012865189e-05 5.24056294893e-05 +UniRef50_Q4UKX5 DNA gyrase subunit B 8.44032146265e-06 1.0894103652e-05 2.45378218935e-06 +UniRef50_A3M4L9 0.000428703959695 0.00496136045192 0.00453265649222 +UniRef50_Q8EUR3 Spermidine putrescine import ATP binding protein PotA 4.88501174746e-06 7.8638896588e-06 2.97887791134e-06 +UniRef50_A8GIP4 Lysine tRNA ligase 0.00208551766306 0.0025269026749 0.00044138501184 +UniRef50_UPI0004654768 hypothetical protein 4.42983997484e-05 4.03003041678e-05 -3.9980955806e-06 +UniRef50_G1C7I1 Nucleoid occlusion protein 7.03770042794e-06 2.38279475843e-05 1.67902471564e-05 +UniRef50_Q28NF0 Probable chemoreceptor glutamine deamidase CheD 0.000223919160864 3.79650635368e-05 -0.000185954097327 +UniRef50_M1YTR4 0.000261008601306 0.00285549528564 0.00259448668433 +UniRef50_D7BML1 Putative molybdopterin guanine dinucleotide biosynthesis protein A 6.61523275945e-06 2.96960182763e-05 2.30807855169e-05 +UniRef50_UPI0003B32011 cytidylate kinase 6.79425891723e-06 7.53321318664e-05 6.85378729492e-05 +UniRef50_F4A9G3 Glycerol dehydratase activator 0.000123227199839 0.000906916907809 0.00078368970797 +UniRef50_B4U247 Shikimate kinase 0.00200521934516 0.0036202695891 0.00161505024394 +UniRef50_P06200 Hemolytic phospholipase C 0.00152950057983 0.000163090085884 -0.00136641049395 +UniRef50_X5PED3 0.000295715982472 0.000134223663358 -0.000161492319114 +UniRef50_Q6N9W0 Methionine import ATP binding protein MetN 1 0.00181426294761 0.000359535445064 -0.00145472750255 +UniRef50_UPI000464B4E9 hypothetical protein 7.58806900332e-05 9.00385464282e-06 -6.68768353904e-05 +UniRef50_B3EQT3 Recombination protein RecR 0.0102357935342 0.000440771201791 -0.00979502233241 +UniRef50_Q6ARX8 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000155281880435 0.00335558157129 0.00320029969086 +UniRef50_X1YMT4 0.000168558368661 4.75422653861e-05 -0.000121016103275 +UniRef50_B9KK74 Cellulose synthase 0.000568613378045 0.000462773282699 -0.000105840095346 +UniRef50_Q1GHF8 TRAP transporter solute receptor TAXI family 5.85931458442e-05 8.68942857247e-06 -4.99037172717e-05 +UniRef50_UPI000472F33D hypothetical protein 0.0001281434778 1.15206629538e-05 -0.000116622814846 +UniRef50_I6TQ16 Pyridoxamine kinase 0.0036608271265 0.00142333116197 -0.00223749596453 +UniRef50_P57024 Outer membrane lipoprotein LolB 0.000195588595265 0.00282318876454 0.00262760016927 +UniRef50_Q17X82 0.000180327701681 0.0037807739618 0.00360044626012 +UniRef50_B9KKX8 Cyclic nucleotide binding protein 0.00315808915412 0.000543476712473 -0.00261461244165 +UniRef50_UPI000255F810 TetR family transcriptional regulator 1.06956758606e-05 1.10213740362e-05 3.256981756e-07 +UniRef50_Q1QE80 Spermidine putrescine import ATP binding protein PotA 0.000116629398711 7.33743777997e-05 -4.32550209113e-05 +UniRef50_UPI00029CBAAC methylmalonate semialdehyde dehydrogenase , partial 6.10764144519e-05 8.12146028803e-06 -5.29549541639e-05 +UniRef50_UPI00036486F4 hypothetical protein 2.36189890633e-05 4.84266297218e-05 2.48076406585e-05 +UniRef50_S9UQG0 1.82284194511e-05 6.08147325114e-05 4.25863130603e-05 +UniRef50_M0SWW4 8.29850184897e-06 9.43414374549e-06 1.13564189652e-06 +UniRef50_UPI00045D969B PREDICTED 1.78804159785e-05 2.9718083555e-05 1.18376675765e-05 +UniRef50_Q03736 Cytochrome c oxidase subunit 2 0.00947661857264 0.00418342453937 -0.00529319403327 +UniRef50_UPI00046AFEA5 membrane protein 0.000105305110155 6.52494059597e-05 -4.00557041953e-05 +UniRef50_UPI0004706261 hypothetical protein 1.61726120627e-06 9.12588080482e-06 7.50861959855e-06 +UniRef50_Q5LRL4 Outer membrane transporter, OMPP1 FadL TodX family 1.33689776985e-05 8.15837109614e-06 -5.21060660236e-06 +UniRef50_UPI0002F47A97 hypothetical protein 1.54775223974e-05 6.58541654844e-05 5.0376643087e-05 +UniRef50_J9P1L3 3.93462079217e-06 0.000168120808816 0.000164186188024 +UniRef50_A6LXP7 Proton translocating NADH quinone oxidoreductase, chain L 0.000322892117453 0.00107386201179 0.000750969894337 +UniRef50_A5EWC1 Conserved hypothetical lipoprotein 6.64965350226e-06 1.05076426078e-05 3.85798910554e-06 +UniRef50_A0A024HWT5 5.60648193047e-06 3.78900625792e-05 3.22835806487e-05 +UniRef50_P42887 Urease subunit gamma 0.000110528676429 0.000400364551786 0.000289835875357 +UniRef50_A3PPK4 Amidase 0.00296405115262 0.00126790394002 -0.0016961472126 +UniRef50_X9TRB8 0.00197124959361 0.000966739235253 -0.00100451035836 +UniRef50_UPI00047046AB Fis family transcriptional regulator 4.40511671648e-06 1.10659360512e-05 6.66081933472e-06 +UniRef50_UPI00037B45E9 GTPase Era 1.90493176995e-05 0.000138637928006 0.000119588610307 +UniRef50_UPI000262D14F electron transport complex RsxE subunit 0.000714473404273 0.000204477727402 -0.000509995676871 +UniRef50_N9HZ93 0.000202949456367 0.0143846749627 0.0141817255063 +UniRef50_J9H507 Membrane protein 0.00136743942971 0.000338902452903 -0.00102853697681 +UniRef50_UPI0004646E3C ABC transporter ATP binding protein, partial 7.30321781378e-06 3.1784767616e-05 2.44815498022e-05 +UniRef50_UPI00034566D0 hypothetical protein 5.56743285462e-06 3.1318701243e-06 -2.43556273032e-06 +UniRef50_R5FYT2 Riboflavin synthase alpha subunit 0.000348986334422 0.00341722989211 0.00306824355769 +UniRef50_Q0FTZ1 ISSpo9, transposase 0.000142616061335 2.79400464184e-05 -0.000114676014917 +UniRef50_UPI00045E74EB hypothetical protein 2.79890119832e-05 9.60503450558e-05 6.80613330726e-05 +UniRef50_A0A058T3B4 Transcriptional regulator 0.000827556870044 0.000676297798153 -0.000151259071891 +UniRef50_Q9RXT9 Thiosulfate sulfurtransferase 0.000226039514279 0.0521767910053 0.051950751491 +UniRef50_L7WYV1 Lipase esterase 0.019694907946 0.00528986166887 -0.0144050462771 +UniRef50_W0HAM9 4.55428215126e-05 3.99638582148e-05 -5.5789632978e-06 +UniRef50_B9E397 0.000703276372884 0.000572087756635 -0.000131188616249 +UniRef50_N2IAD7 Response regulator 2.61156910459e-05 3.09704722598e-05 4.8547812139e-06 +UniRef50_UPI000467FD4C isopentenyl diphosphate delta isomerase 0.000364980715755 3.75132160252e-05 -0.00032746749973 +UniRef50_UPI00046ABA5E hypothetical protein 1.2674527e-05 0.000782197920545 0.000769523393545 +UniRef50_A0A033UF50 2.51624247006e-05 2.65546141239e-05 1.3921894233e-06 +UniRef50_E0MPD3 UPF0301 protein R2A130_1378 9.69915892978e-06 1.46334637461e-05 4.93430481632e-06 +UniRef50_UPI00036D5BBB hypothetical protein 0.000117619239949 8.66547325566e-05 -3.09645073924e-05 +UniRef50_F3WHU8 Peptidase M16 inactive domain protein 0.00193364966398 0.000676297798153 -0.00125735186583 +UniRef50_C0DSE0 BolA like protein 7.13933080481e-05 0.00051741578668 0.000446022478632 +UniRef50_O23346 Imidazoleglycerol phosphate dehydratase 2, chloroplastic 9.45523153798e-06 1.3736523189e-05 4.28129165102e-06 +UniRef50_UPI00035E3A63 hypothetical protein, partial 5.75684487727e-05 5.66306545362e-05 -9.377942365e-07 +UniRef50_B6JMQ6 tRNA methyltransferase 0.000173158710486 0.00191040875 0.00173725003951 +UniRef50_UPI00006CF872 ribosomal protein L33 containing protein 0.00029780203437 7.84699501181e-05 -0.000219332084252 +UniRef50_UPI00045E7D30 hypothetical protein 2.98017684117e-05 4.24904437295e-05 1.26886753178e-05 +UniRef50_F3ZJM5 Putative alpha ribazole phosphatase 0.000224228029182 0.000117500015334 -0.000106728013848 +UniRef50_Q8FFY2 0.00110848701004 0.000267658645188 -0.000840828364852 +UniRef50_Q7UM14 Tyrosine tRNA ligase 1.46242244585e-05 2.32790028281e-05 8.6547783696e-06 +UniRef50_F9YXK4 Membrane spanning protein 0.000599184109289 0.00632048969372 0.00572130558443 +UniRef50_A7IAF5 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.34326100281e-05 1.59322224952e-05 -2.75003875329e-05 +UniRef50_M1QZS4 7.99124617331e-06 1.33316332484e-05 5.34038707509e-06 +UniRef50_UPI00016C5421 molybdenum cofactor biosynthesis protein 3.04791243288e-06 9.20591243519e-06 6.15800000231e-06 +UniRef50_Q9JXP4 Probable aromatic acid decarboxylase 0.00161537609138 0.00307149463296 0.00145611854158 +UniRef50_R5EVW4 9.55119188127e-06 0.00236466685947 0.00235511566759 +UniRef50_UPI0002F70260 hypothetical protein 2.24909558592e-06 0.000114987187863 0.000112738092277 +UniRef50_Q2RZJ2 Proline tRNA ligase 4.36487920525e-06 0.00290206790404 0.00289770302483 +UniRef50_C6ECF3 3 keto L gulonate 6 phosphate decarboxylase UlaD 0.00395606356166 0.00229280855424 -0.00166325500742 +UniRef50_UPI000349CFD5 hypothetical protein 6.03736167793e-06 9.82547471564e-06 3.78811303771e-06 +UniRef50_R1CIV3 0.000153033759375 8.30318758772e-05 -7.00018834978e-05 +UniRef50_P17888 Primosomal protein N 0.00234873820062 0.000631457387298 -0.00171728081332 +UniRef50_Q9AGA7 PTS system alpha glucoside specific EIICB component 0.00261712959025 0.00165348066374 -0.00096364892651 +UniRef50_P15032 Exodeoxyribonuclease 8 0.00120423127558 0.000160820303146 -0.00104341097243 +UniRef50_A8TPL9 0.00010510202443 3.84816287297e-05 -6.66203957003e-05 +UniRef50_UPI00046AC3A5 hypothetical protein 0.000142968099677 1.44169743756e-05 -0.000128551125301 +UniRef50_P0AG04 3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein 0.0033522341444 8.69470419278e-05 -0.00326528710247 +UniRef50_G2L7T9 5.4975088094e-05 9.4307761357e-05 3.9332673263e-05 +UniRef50_UPI000479AE2C hypothetical protein 0.00012428523054 2.09906096445e-05 -0.000103294620896 +UniRef50_A3PKK4 Acyl homoserine lactone synthase 0.0160376995635 0.00615627170489 -0.00988142785861 +UniRef50_A3PS02 WGR domain protein 0.00191472046163 0.000223935335125 -0.00169078512651 +UniRef50_UPI0002B9C508 hypothetical protein 3.76422119524e-05 0.000158700198968 0.000121057987016 +UniRef50_Q9RUQ6 Carboxymethylenebutenolidase related protein 0.000129276023577 0.00411418648702 0.00398491046344 +UniRef50_UPI0001584880 hypothetical protein BC1G_07259 8.35859609336e-06 1.90444822732e-05 1.06858861798e-05 +UniRef50_H2G856 Putative terminase large subunit 1.58846476951e-05 5.92579022168e-05 4.33732545217e-05 +UniRef50_Q87UY0 Glucans biosynthesis protein G 9.53652441026e-06 1.54742804265e-05 5.93775601624e-06 +UniRef50_UPI0003B5126A addiction module toxin YoeB 3.93094160611e-06 4.35044208839e-05 3.95734792778e-05 +UniRef50_D9Y290 2.89381018236e-05 9.45662331215e-06 -1.94814785114e-05 +UniRef50_UPI0003F9F930 hypothetical protein, partial 5.18589344009e-06 0.000470595857386 0.000465409963946 +UniRef50_UPI00046644CC peptide ABC transporter permease 3.61125654178e-05 7.12372529436e-05 3.51246875258e-05 +UniRef50_Q65I39 3 phosphoshikimate 1 carboxyvinyltransferase 4.36987252951e-06 8.58249345441e-06 4.2126209249e-06 +UniRef50_P0AEB6 Low conductance mechanosensitive channel YnaI 0.0029589201153 0.000178799216058 -0.00278012089924 +UniRef50_X0V3Z0 Marine sediment metagenome DNA, contig 1.6247663189e-05 6.64267247269e-05 5.01790615379e-05 +UniRef50_D3SDU3 0.00119484603416 1.99108500208e-05 -0.00117493518414 +UniRef50_C3SN52 0.00156585348358 0.000513993913508 -0.00105185957007 +UniRef50_UPI0003745614 hypothetical protein 8.90722396307e-05 4.01457460594e-05 -4.89264935713e-05 +UniRef50_H0P3C7 1.82203646966e-05 1.67591812148e-05 -1.4611834818e-06 +UniRef50_A0A024HAE7 Glucose 6 phosphate 1 dehydrogenase 0.000910472744036 0.00126714598645 0.000356673242414 +UniRef50_UPI0001911F20 hypothetical protein, partial 0.000299893934122 0.000814136283224 0.000514242349102 +UniRef50_A0A009L0Q9 Diguanylate cyclase domain protein 9.65437311629e-05 0.00122323636676 0.0011266926356 +UniRef50_A0A008QSP4 0.00057189680724 0.000247300607664 -0.000324596199576 +UniRef50_Q3J2Z8 RNA polymerase sigma factor 0.00345616767785 0.00151915189378 -0.00193701578407 +UniRef50_UPI0003753584 hypothetical protein 0.0021955652932 0.000530410580916 -0.00166515471228 +UniRef50_Q02Y94 Na+ driven multidrug efflux pump 0.000502636168881 0.000587458034935 8.4821866054e-05 +UniRef50_UPI0003B604B4 hypothetical protein 4.24988612334e-05 7.31425835346e-05 3.06437223012e-05 +UniRef50_D0NVH9 Adenylosuccinate synthetase 2.87895369053e-06 8.45281830035e-06 5.57386460982e-06 +UniRef50_W5XEU5 Putative N acyl D glucosamine 2 epimerase 4.70181795977e-05 3.12072522623e-06 -4.38974543715e-05 +UniRef50_V4N2T0 0.000296996414055 0.000171618448761 -0.000125377965294 +UniRef50_A4THV9 0.00187935115765 0.000500637535903 -0.00137871362175 +UniRef50_UPI0003802F25 hypothetical protein 8.19038684565e-06 2.93827398834e-05 2.11923530378e-05 +UniRef50_Q8FUU5 Zinc import ATP binding protein ZnuC 1.60382392661e-05 1.1082702923e-05 -4.9555363431e-06 +UniRef50_W5XB82 Putative family S53 non peptidase like protein 1.11684397132e-05 7.25431825905e-05 6.13747428773e-05 +UniRef50_H3X653 Osmosensitive K+ channel His kinase sensor domain protein 0.00889788733323 0.00240459979292 -0.00649328754031 +UniRef50_Q2W7P1 6.09294336383e-05 2.17145619031e-05 -3.92148717352e-05 +UniRef50_R5BHR4 Phage terminase 7.60376075425e-06 0.000158288402108 0.000150684641354 +UniRef50_A5N0V8 LivM 0.000783602613819 0.00129252319866 0.000508920584841 +UniRef50_A5N2L5 Orotidine 5 phosphate decarboxylase 0.000449451779777 0.00147293199773 0.00102348021795 +UniRef50_A6LXZ9 MATE efflux family protein 8.28425725361e-05 0.00136836684351 0.00128552427097 +UniRef50_N9WGA2 7.79714799994e-05 0.000113109514366 3.51380343666e-05 +UniRef50_UPI00016C57A2 elongation factor G, partial 2.97547815642e-06 6.7423041706e-06 3.76682601418e-06 +UniRef50_C1D5R6 Membrane protein 2.03217668471e-05 0.00136717420774 0.00134685244089 +UniRef50_UPI00036AFE80 cell wall hydrolase 2.35813996351e-05 1.7178873415e-05 -6.4025262201e-06 +UniRef50_A3M865 1.89659682949e-05 0.000921776882898 0.000902810914603 +UniRef50_Q7WLL0 Cysteine tRNA ligase 2.84442733468e-06 9.84117151909e-06 6.99674418441e-06 +UniRef50_P18249 RNA polymerase principal sigma factor HrdD 0.000376532677997 0.00482601357197 0.00444948089397 +UniRef50_UPI0003B42D49 5 hydroxymethyluracil DNA glycosylase 7.71423207418e-06 0.000122700015603 0.000114985783529 +UniRef50_D6UF03 0.00467327631456 0.000935368114805 -0.00373790819976 +UniRef50_R1CXM7 7.57005622317e-06 2.49733016433e-05 1.74032454201e-05 +UniRef50_UPI000399BF1B S adenosylmethionine synthetase 9.02957723469e-06 4.59897817931e-05 3.69602045584e-05 +UniRef50_X5ZAH5 0.00339314809803 0.00224166924829 -0.00115147884974 +UniRef50_UPI0003698C0E hypothetical protein, partial 4.63196175671e-05 1.71251926698e-05 -2.91944248973e-05 +UniRef50_W6EUE7 8.40559837509e-05 2.49047435453e-05 -5.91512402056e-05 +UniRef50_V5SUH2 LysR family transcriptional regulator 0.000381683495918 0.000780790571617 0.000399107075699 +UniRef50_M7CYD5 Thioesterase 0.00437378318337 0.00245555310332 -0.00191823008005 +UniRef50_Q64GH1 Putative enoyl reductase 4.73488335197e-05 0.000248862114694 0.000201513281174 +UniRef50_D6GTM4 Rubredoxin 0.000273319257479 0.00221126545738 0.0019379461999 +UniRef50_E1VWJ8 Protein NrdI 9.53571641282e-06 0.00240274162299 0.00239320590658 +UniRef50_A8F516 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.16858307672e-05 9.96840368342e-06 -1.71742708378e-06 +UniRef50_UPI000225A8AA NUDIX hydrolase 0.00010080025987 1.89306916022e-05 -8.18695682678e-05 +UniRef50_UPI000225AEF7 D amino acid aminotransferase 3.42553362664e-05 4.13021330855e-05 7.0467968191e-06 +UniRef50_UPI00047468F0 sulfurase 5.95730804309e-05 3.4291244526e-05 -2.52818359049e-05 +UniRef50_UPI00041C6338 hydrolase 1.52788192275e-05 5.95997093552e-06 -9.31884829198e-06 +UniRef50_W4HIK8 3.16772381427e-05 6.13760513858e-06 -2.55396330041e-05 +UniRef50_B6XGE2 Putative dGTPase 1.51631070393e-05 4.54106599638e-05 3.02475529245e-05 +UniRef50_A6KZD0 1.05526087992e-05 0.00396289570355 0.00395234309475 +UniRef50_S5CIR4 EAL domain protein 0.000188258272251 0.00258798986746 0.00239973159521 +UniRef50_I6X6K9 2,5 diketo D gluconic acid reductase A 0.00529763296825 0.0024963329112 -0.00280130005705 +UniRef50_Q5HL78 Esterase, putative 0.0203190583706 0.00586911518488 -0.0144499431857 +UniRef50_K3YW20 0.000713676375634 0.000243071201698 -0.000470605173936 +UniRef50_D7I005 0.000776718220114 0.000822170111935 4.5451891821e-05 +UniRef50_UPI000380E85A hypothetical protein 4.35166584423e-06 5.45701110132e-06 1.10534525709e-06 +UniRef50_UPI0003AFAFF5 PREDICTED 1.69708702794e-05 6.88725507147e-06 -1.00836152079e-05 +UniRef50_UPI0003723B10 hypothetical protein 4.1106629957e-05 1.65486609155e-05 -2.45579690415e-05 +UniRef50_C5N5L5 0.00155131228296 0.00224291168503 0.00069159940207 +UniRef50_UPI000474FC78 hypothetical protein, partial 9.32607433999e-05 0.00216636953756 0.00207310879416 +UniRef50_G7M098 0.000720003613245 0.00133219027256 0.000612186659315 +UniRef50_F0RKF5 Riboflavin synthase, alpha subunit 0.000179186387112 0.0348376547182 0.0346584683311 +UniRef50_Q6A5X8 Arginine tRNA ligase 0.000216671069631 0.00580807181751 0.00559140074788 +UniRef50_H0YP80 4.87434185307e-05 3.34184396598e-05 -1.53249788709e-05 +UniRef50_UPI00022CA5D3 PREDICTED 1.3794472212e-05 8.18378333487e-06 -5.61068887713e-06 +UniRef50_Q8REW5 Precorrin 8X methylmutase 0.000370084302795 0.000668399608368 0.000298315305573 +UniRef50_Q56002 Serine acetyltransferase 1.14849751684e-05 3.37623211618e-05 2.22773459934e-05 +UniRef50_UPI00036189B5 DNA glycosylase 0.000116856442842 2.15878707709e-05 -9.52685720711e-05 +UniRef50_A5ULV9 Phosphatidylserine synthase, PssA 0.00551972457237 0.000551516807139 -0.00496820776523 +UniRef50_UPI0001FFE88F glycosyl transferase group 1 8.1318039808e-05 0.000285973428186 0.000204655388378 +UniRef50_UPI00047588F4 hypothetical protein 4.04482602979e-06 3.91968101177e-06 -1.2514501802e-07 +UniRef50_O27179 Pyruvate carboxylase subunit B 0.0013127135154 0.00055822710661 -0.00075448640879 +UniRef50_D1BH34 0.000935915674838 0.00835753083995 0.00742161516511 +UniRef50_UPI000441E63E PREDICTED 2.40188733004e-05 3.88841685102e-05 1.48652952098e-05 +UniRef50_UPI00037429B4 hypothetical protein, partial 4.64760218352e-06 3.27809735148e-05 2.81333713313e-05 +UniRef50_C4Z1D7 Proline tRNA ligase 8.58474907041e-06 2.72220581631e-05 1.86373090927e-05 +UniRef50_W8YSM1 6.11776620942e-05 0.000151075562601 8.98979005068e-05 +UniRef50_UPI0004785C2A hypothetical protein 8.04123270375e-05 0.000435465616824 0.000355053289786 +UniRef50_Q168G3 MFS protein, putative 0.00962455925541 0.00336029065433 -0.00626426860108 +UniRef50_UPI0003652F52 hypothetical protein 1.88415666548e-05 7.95694200055e-05 6.07278533507e-05 +UniRef50_UPI000368594E hypothetical protein 1.73921016323e-05 1.45589174227e-05 -2.8331842096e-06 +UniRef50_V9U5K5 9.16183520793e-05 0.000288539313933 0.000196920961854 +UniRef50_F8KHX1 ArsR family transcriptional regulator 0.00277035123844 0.0016681105664 -0.00110224067204 +UniRef50_A6LZC7 0.000273540571632 0.000418888943548 0.000145348371916 +UniRef50_R7NTH8 1.84957009686e-05 0.000315625747611 0.000297130046642 +UniRef50_Q8SDT5 Phi ETA orf 55 like protein 0.000712670913339 0.000214359948499 -0.00049831096484 +UniRef50_Q493G3 Protoheme IX farnesyltransferase 6.40240395441e-06 1.3938849371e-05 7.53644541659e-06 +UniRef50_G7M7B0 Cell wall binding repeat containing protein 0.000399301590658 0.00194076597371 0.00154146438305 +UniRef50_I1D602 8.34229022179e-05 0.000165705851899 8.22829496811e-05 +UniRef50_W6CDL1 Bat2 domain protein 0.000105880565126 8.12893941335e-05 -2.45911709925e-05 +UniRef50_F8KRB8 Cell division protein FtsI [Peptidoglycan synthetase] 0.000294159524814 0.00246915371529 0.00217499419048 +UniRef50_A0A011RLE4 Rhodanese like domain protein 2.03355377852e-05 5.88352129361e-05 3.84996751509e-05 +UniRef50_A5UM88 Adhesin like protein 0.00339643365866 0.000510472542113 -0.00288596111655 +UniRef50_UPI000200387F AGCS family alanine or glycine 5.45962532495e-06 0.000128396000124 0.000122936374799 +UniRef50_U5MPP2 5 nucleotidase 0.000182654510734 0.000281701149624 9.904663889e-05 +UniRef50_R9YN62 TM2 domain protein 0.0104552731741 0.00101833346619 -0.00943693970791 +UniRef50_UPI00037681F6 50S ribosomal protein L20 5.71057538871e-05 7.79527343542e-05 2.08469804671e-05 +UniRef50_P0AA55 Protein QmcA 0.00327691588784 0.000404339981157 -0.00287257590668 +UniRef50_F5NZP6 YhaO 1.23843488018e-05 3.36653233563e-05 2.12809745545e-05 +UniRef50_P37754 6 phosphogluconate dehydrogenase, decarboxylating 0.0134082062896 0.00472666050494 -0.00868154578466 +UniRef50_UPI00035F8157 hypothetical protein 1.48594170887e-06 3.14700786665e-05 2.99841369576e-05 +UniRef50_B8H8I4 Glucose 1 phosphate adenylyltransferase 2.99611913936e-06 1.12887262103e-05 8.29260707094e-06 +UniRef50_M9R3S4 Protease do 0.00645258169356 0.000488741654276 -0.00596384003928 +UniRef50_A5LX88 HAD superfamily protein phosphatase 0.000154243345532 0.000642341194012 0.00048809784848 +UniRef50_B7MG32 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 0.00365534242866 0.00172119206463 -0.00193415036403 +UniRef50_P00935 Cystathionine gamma synthase 0.0043035964479 0.0014199085249 -0.002883687923 +UniRef50_H3RCL8 Oxidoreductase domain protein 0.000189704956309 0.000158438894981 -3.1266061328e-05 +UniRef50_V4LBB0 5.23507673507e-05 6.06977076974e-05 8.3469403467e-06 +UniRef50_Q1GB50 Ribonuclease Y 0.0216023346284 0.0126846968966 -0.0089176377318 +UniRef50_I3XFP9 Inosose dehydratase IolE 0.00425460441846 0.00107856624933 -0.00317603816913 +UniRef50_P31833 Cytochrome c oxidase subunit 1 2.75598526319e-05 3.06154732534e-05 3.0556206215e-06 +UniRef50_Q49VS2 Putative lipid kinase SSP1993 0.0253841956467 0.00699861670102 -0.0183855789457 +UniRef50_A5D5L4 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.67077586759e-05 8.12046541921e-06 -8.58729325669e-06 +UniRef50_Q81CT8 Putative ABC transporter ATP binding protein BC_2655 3.80044243183e-05 0.000649554120413 0.000611549696095 +UniRef50_B9TG20 4.47852907989e-05 1.45809378546e-05 -3.02043529443e-05 +UniRef50_P39389 0.00265953340392 0.00123755480017 -0.00142197860375 +UniRef50_A4ETQ1 Flagellar protein, putative 7.5121862055e-06 1.91093208336e-05 1.15971346281e-05 +UniRef50_P39385 0.00298891776367 0.000138646340475 -0.0028502714232 +UniRef50_P39384 0.00326215942734 0.00046482802743 -0.00279733139991 +UniRef50_V5VAL8 Flavodoxin reductase 1 0.000170294431062 0.0109338742637 0.0107635798326 +UniRef50_A9APP3 Rieske domain protein 0.000221439764118 0.00532710411876 0.00510566435464 +UniRef50_P39383 0.00608255397389 0.000484788024949 -0.00559776594894 +UniRef50_P39382 0.00111684839469 0.00134351688699 0.0002266684923 +UniRef50_Q09545 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.12620533329e-05 4.51250730403e-05 2.38630197074e-05 +UniRef50_B7H275 Aminoglycoside 2 N acetyltransferase Ib) 0.000430592382719 0.00417556280892 0.0037449704262 +UniRef50_B7M6Q9 Putative ion transport protein YfeO 0.00338789742103 0.000571536380408 -0.00281636104062 +UniRef50_UPI00046FF34F peptide synthetase 3.32539611702e-07 1.23676160791e-06 9.04221996208e-07 +UniRef50_A3MAB3 0.000170808930622 0.00301136680007 0.00284055786945 +UniRef50_J5IRF9 0.000781005494173 0.0223826869487 0.0216016814545 +UniRef50_D5AMB2 ArsC family protein 0.000332332458697 9.09403099916e-05 -0.000241392148705 +UniRef50_N6U9Z2 0.000855505127333 0.000330485805926 -0.000525019321407 +UniRef50_B9KMM9 0.00242279478061 0.00165598152446 -0.00076681325615 +UniRef50_UPI0003B360B2 riboflavin synthase subunit alpha 9.85739183432e-06 0.000150523578948 0.000140666187114 +UniRef50_UPI0003768F48 hypothetical protein 2.37876145686e-06 7.87513824848e-06 5.49637679162e-06 +UniRef50_Q9JYA6 PqiA family protein 9.16970013417e-05 0.00261284265213 0.00252114565079 +UniRef50_O61573 GTP cyclohydrolase 1 3.74020596091e-05 6.34806557419e-05 2.60785961328e-05 +UniRef50_A4XX36 Integral membrane sensor signal transduction histidine kinase 0.000444395778926 0.000418284317323 -2.6111461603e-05 +UniRef50_V7N9Q7 0.0005052261241 0.00016316588308 -0.00034206024102 +UniRef50_UPI00046AE0C6 hypothetical protein 4.25755102014e-05 3.53486801914e-05 -7.22683001e-06 +UniRef50_UPI0003C11AE9 PREDICTED 1.86474335871e-05 4.24821218761e-06 -1.43992213995e-05 +UniRef50_P77858 Hydrogenase 4 component C 0.00647744161017 0.00232639236921 -0.00415104924096 +UniRef50_A9RYC3 Predicted protein 3.74437692478e-06 7.59165668272e-05 7.21721899024e-05 +UniRef50_UPI00046D2B95 hypothetical protein 3.15250729026e-05 2.31453151529e-05 -8.3797577497e-06 +UniRef50_E1S7W8 Molybdenum transport ATP binding protein 0.000142268588759 0.0027474470492 0.00260517846044 +UniRef50_A6LVV3 GCN5 related N acetyltransferase 0.00025679318969 0.000738291762994 0.000481498573304 +UniRef50_Q48253 Vacuolating cytotoxin autotransporter 4.03009952487e-05 0.00681077100843 0.00677047001318 +UniRef50_G8PQM8 FAD dependent oxidoreductase 0.000993939757428 0.000301065891062 -0.000692873866366 +UniRef50_K6YYX6 Phosphate starvation inducible E 9.51995207813e-05 5.78972584523e-05 -3.7302262329e-05 +UniRef50_Q9RU10 Glutamate racemase 0.00011322739247 0.00806458283065 0.00795135543818 +UniRef50_Q8DN97 Hexulose 6 phosphate synthase 0.00473059196531 0.00353583760831 -0.001194754357 +UniRef50_UPI0003055198 hypothetical protein 8.25261449362e-06 5.66777719857e-06 -2.58483729505e-06 +UniRef50_UPI0004771957 pyruvate kinase 3.8127668994e-06 1.53737303509e-05 1.15609634515e-05 +UniRef50_F8HG32 3 oxoacyl [acyl carrier protein] synthase 2 0.000316390699934 0.0032739558 0.00295756510007 +UniRef50_UPI0003C7DEB4 ferredoxin 7.07217185956e-06 1.31795699223e-05 6.10739806274e-06 +UniRef50_W5XG56 Transcriptional regulator 0.000514968780039 0.000248600377264 -0.000266368402775 +UniRef50_P45480 Glutathione synthetase 3.94289886739e-06 7.03827566972e-06 3.09537680233e-06 +UniRef50_Q03UE1 DNA replication and repair protein RecF 0.00901916302723 0.00689999329706 -0.00211916973017 +UniRef50_J2ZRL7 Rhamnan synthesis protein F domain protein 6.86606251652e-06 8.62137502309e-06 1.75531250657e-06 +UniRef50_UPI000346214E hypothetical protein 6.86319888592e-05 6.52780604392e-06 -6.21041828153e-05 +UniRef50_G2IM51 Major facilitator superfamily protein 0.00159990540605 0.000653786120244 -0.000946119285806 +UniRef50_UPI00047E3C0E hypothetical protein 2.54626356383e-05 0.000756866929282 0.000731404293644 +UniRef50_G0DY22 0.000167275918245 0.00318009535003 0.00301281943179 +UniRef50_A6V690 7.11790048168e-05 0.000250412567372 0.000179233562555 +UniRef50_A5UL99 Predicted permease, major facilitator superfamily 0.00172161403634 0.000891062860416 -0.000830551175924 +UniRef50_Q8AA27 Methionine aminopeptidase 0.00108587411061 0.00574543715262 0.00465956304201 +UniRef50_Q8DWJ3 0.0074366852284 0.00117834905089 -0.00625833617751 +UniRef50_Q9F664 UTP glucose 1 phosphate uridylyltransferase 0.00434404118052 0.000330856081034 -0.00401318509949 +UniRef50_Q1AX36 Leucyl phenylalanyl tRNA protein transferase 1.10771151093e-05 8.58988482637e-05 7.48217331544e-05 +UniRef50_UPI000371C01D hypothetical protein 2.4105219721e-05 1.2007658658e-05 -1.2097561063e-05 +UniRef50_B1H0H4 NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component 0.000195845444659 0.000870185123404 0.000674339678745 +UniRef50_A7X240 Tryptophan synthase alpha chain 0.0150778749374 0.00195512749292 -0.0131227474445 +UniRef50_Q4L300 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.015031829113 0.00234429426364 -0.0126875348494 +UniRef50_Q8RCZ3 0.000258505679378 0.00259748272579 0.00233897704641 +UniRef50_A7MXI6 RNA polymerase subunit sigma 32 1.64353651413e-05 3.11223763631e-05 1.46870112218e-05 +UniRef50_M2YV20 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 4.35887020209e-06 1.96790586793e-05 1.53201884772e-05 +UniRef50_W0HQE6 Outer membrane lipoprotein 2.20087826852e-05 1.90417122261e-05 -2.9670704591e-06 +UniRef50_Q1QLB8 3 dehydroquinate dehydratase 7.610261388e-05 1.22847738429e-05 -6.38178400371e-05 +UniRef50_F1WQG0 L aspartate oxidase 8.85606819696e-06 2.25552401273e-05 1.36991719303e-05 +UniRef50_G7W3F5 Phosphonate ABC transporter, permease protein 0.0166706224587 0.00522218361993 -0.0114484388388 +UniRef50_A0A029I8C3 TPR repeat family protein 0.00258016132498 0.000913898837441 -0.00166626248754 +UniRef50_K0TNT9 0.00130314259191 0.000141609653309 -0.0011615329386 +UniRef50_UPI0003807495 hypothetical protein, partial 1.4393389753e-05 2.49067969119e-05 1.05134071589e-05 +UniRef50_UPI00046EA948 peptide deformylase 2.66984218782e-05 2.48542554987e-05 -1.8441663795e-06 +UniRef50_C4Y1Q4 5.31532804839e-05 0.000197316284094 0.00014416300361 +UniRef50_UPI0003A5C3E8 methylmalonyl CoA mutase 9.25448128955e-05 6.87231659879e-05 -2.38216469076e-05 +UniRef50_M9RMW1 DNA integration recombination inversion protein 0.0132142795906 0.00204120009448 -0.0111730794961 +UniRef50_UPI00032A20C5 PREDICTED 1.31263687936e-05 3.75235413307e-05 2.43971725371e-05 +UniRef50_A6M334 Glycogen synthase 0.000735064383387 0.00201236332434 0.00127729894095 +UniRef50_UPI0003688E90 hypothetical protein 1.43451505995e-05 3.19191286489e-05 1.75739780494e-05 +UniRef50_A3V1D2 ABC phosphate transporter, periplasmic phosphate binding protein 8.86397564133e-06 7.30330337652e-06 -1.56067226481e-06 +UniRef50_Q9RAJ5 Bifunctional purine biosynthesis protein PurH 0.000303819660896 0.00569354219241 0.00538972253151 +UniRef50_A8GK38 Peptidase U62 modulator of DNA gyrase 9.64772716781e-05 0.00077273600531 0.000676258733632 +UniRef50_C7ZCJ9 6.93372400359e-06 0.000711419268889 0.000704485544885 +UniRef50_UPI0002628E3A amino acid ABC transporter, permease protein, 3 TM region, His Glu Gln Arg opine family 4.94518149961e-05 6.91008367589e-05 1.96490217628e-05 +UniRef50_UPI000470BC2E transposase, partial 7.85270562337e-05 0.0482257927107 0.0481472656545 +UniRef50_Q47142 Probable 3 phenylpropionic acid transporter 0.0016072588339 0.000434475966229 -0.00117278286767 +UniRef50_UPI000375E9A2 MULTISPECIES 6.04064948426e-05 3.07151505618e-06 -5.73349797864e-05 +UniRef50_UPI0004650867 hypothetical protein 3.57319885925e-05 0.000140991947147 0.000105259958555 +UniRef50_UPI0003B458E8 quinone oxidoreductase 1.097946951e-05 1.76531314599e-05 6.6736619499e-06 +UniRef50_C1KYN8 NADPH dehydrogenase 6.91510248763e-06 0.00180648364124 0.00179956853875 +UniRef50_UPI0003C8F987 PREDICTED 3.64996385995e-05 0.000894076435771 0.000857576797171 +UniRef50_UPI000364B2C5 hypothetical protein 4.74170603184e-06 1.57653778356e-05 1.10236718038e-05 +UniRef50_I3UG87 ABC transporter 3.04584460427e-05 0.000731826094088 0.000701367648045 +UniRef50_UPI00036731E7 hypothetical protein 0.000195742160496 0.000176857901753 -1.8884258743e-05 +UniRef50_C5N6N4 Type I restriction modification DNA specificity domain protein 0.0070121182992 0.00053587725922 -0.00647624103998 +UniRef50_Q12HP7 ATP synthase subunit b 0.00367342729998 0.00914846657284 0.00547503927286 +UniRef50_C8VXQ7 Prophage antirepressor 2.72831691879e-05 7.44536035676e-06 -1.98378088311e-05 +UniRef50_Q72VI6 Aminomethyltransferase 1.75109081146e-05 1.04062970022e-05 -7.1046111124e-06 +UniRef50_D8A1C0 0.00150665429276 3.94988772017e-05 -0.00146715541556 +UniRef50_Q49UD2 1.59735184326e-05 2.77897033592e-05 1.18161849266e-05 +UniRef50_B0TI89 Arginine tRNA ligase 8.2830548392e-06 4.84154827153e-06 -3.44150656767e-06 +UniRef50_B2IDG3 Signal recognition particle receptor FtsY 0.0020359484181 0.000347126544276 -0.00168882187382 +UniRef50_A0A058ZE84 4.14401875917e-06 1.09412114978e-05 6.79719273863e-06 +UniRef50_B9MKF3 DNA directed RNA polymerase subunit alpha 0.0246965706257 0.0149230535302 -0.0097735170955 +UniRef50_UPI000174537F tRNA isopentenyltransferase 4.82508418957e-06 7.8320085667e-06 3.00692437713e-06 +UniRef50_E1VL16 1.69424708043e-06 4.50360862439e-06 2.80936154396e-06 +UniRef50_X6GT76 0.000208539628775 3.91208210245e-05 -0.00016941880775 +UniRef50_J9NXH4 9.64970227076e-06 0.00031429828716 0.000304648584889 +UniRef50_A0RH75 LexA repressor 0.0167399148921 0.00243080914498 -0.0143091057471 +UniRef50_P37595 Isoaspartyl peptidase 0.00179815822486 0.000394656548944 -0.00140350167592 +UniRef50_UPI0003688AF0 hypothetical protein, partial 1.65388079967e-05 7.94081644156e-06 -8.59799155514e-06 +UniRef50_P20753 Peptidyl prolyl cis trans isomerase A 0.00434048017005 0.00100401511596 -0.00333646505409 +UniRef50_B1AJ89 Holliday junction ATP dependent DNA helicase RuvB 3.27046046782e-06 9.87303042699e-06 6.60256995917e-06 +UniRef50_E1SQ49 5.65769047706e-05 2.42981429986e-05 -3.2278761772e-05 +UniRef50_G7MAV9 0.000292626751416 0.000292392777421 -2.33973995e-07 +UniRef50_UPI0003622A28 hypothetical protein 1.094170138e-05 1.02655197592e-05 -6.761816208e-07 +UniRef50_Q08ZN5 Catalase 0.000250420174571 0.0667403440224 0.0664899238478 +UniRef50_I0EMB4 0.000130648092436 0.00335176627141 0.00322111817897 +UniRef50_Q2W939 FAD synthase 0.000603955346801 0.000201123749283 -0.000402831597518 +UniRef50_A0A038G0X4 8.56737998615e-05 7.4843897976e-05 -1.08299018855e-05 +UniRef50_S4P4Q3 Titin 0.00120962559505 8.84753175718e-06 -0.00120077806329 +UniRef50_P0ACR1 HTH type transcriptional activator AllS 0.00170351502938 0.000361612292071 -0.00134190273731 +UniRef50_Q8X645 NAD dependent dihydropyrimidine dehydrogenase subunit PreT 0.00305504851227 0.000539917104517 -0.00251513140775 +UniRef50_D3QIC4 0.00804072806077 0.00274006089893 -0.00530066716184 +UniRef50_Q76HT9 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 0.00113897395726 5.74730069579e-05 -0.0010815009503 +UniRef50_E4RAI6 Choline carnitine betaine transporter 0.00105942903149 0.00632157472652 0.00526214569503 +UniRef50_U4VB44 0.00057924794533 1.50192850456e-05 -0.000564228660284 +UniRef50_UPI00036A732B hypothetical protein 8.79995899515e-05 2.91052703894e-05 -5.88943195621e-05 +UniRef50_P0AE75 Citrate carrier 0.00264892763434 0.000544958111151 -0.00210396952319 +UniRef50_T1UA89 Neuraminyllactose binding hemagglutinin family protein 0.000243539347646 0.00337996469072 0.00313642534307 +UniRef50_M1M1B9 Beta fructofuranosidase 0.000363238667216 0.000937765346163 0.000574526678947 +UniRef50_A0A011MYY6 Trans aconitate 2 methyltransferase 2.42499581544e-05 3.28482757252e-05 8.5983175708e-06 +UniRef50_A5GWT2 Aspartate tRNA ligase 3.11755278831e-06 1.95032330726e-05 1.63856802843e-05 +UniRef50_C4B488 Short chain dehydrogenase reductase SDR 0.000301817465392 0.00031209981141 1.0282346018e-05 +UniRef50_A5ULF5 Possible glycosyltransferase 0.00347070022419 0.000678209532568 -0.00279249069162 +UniRef50_F4DRP3 0.000520121271721 0.00148481750506 0.000964696233339 +UniRef50_B8JBA1 Transcriptional regulator, Fis family 1.15532002572e-05 3.18791364532e-05 2.0325936196e-05 +UniRef50_W5WS06 Amino acid permease 0.000641237182429 0.00036733189682 -0.000273905285609 +UniRef50_UPI000470356D glycine cleavage system protein H 0.000120751525993 4.26893459626e-05 -7.80621800304e-05 +UniRef50_Q89A21 ATP dependent DNA helicase Rep 7.29037179949e-06 3.72458535209e-06 -3.5657864474e-06 +UniRef50_Q5F8Z9 Formamidopyrimidine DNA glycosylase 0.000163670806562 0.00149598106347 0.00133231025691 +UniRef50_B6U1Z9 1.26117239387e-05 2.89644291453e-05 1.63527052066e-05 +UniRef50_B7VBB0 Putative phosphoenolpyruvate synthase regulatory protein 1.93867530629e-05 0.000326457910787 0.000307071157724 +UniRef50_F8JQM1 1.5086005394e-05 0.000116975101514 0.00010188909612 +UniRef50_Q3IV73 0.00335655411994 0.00264894724795 -0.00070760687199 +UniRef50_Q3IV76 0.00874652027172 0.000519618836113 -0.00822690143561 +UniRef50_S6SUU4 Peptide ABC transporter permease 0.000291058934253 0.000156748357662 -0.000134310576591 +UniRef50_H0W1N8 2.30738712142e-05 3.90310774318e-05 1.59572062176e-05 +UniRef50_UPI0004770081 molybdenum cofactor biosynthesis protein A 8.1850993994e-06 9.8474331505e-05 9.02892321056e-05 +UniRef50_Q4FT48 Ornithine carbamoyltransferase 3.87760974388e-06 6.37798957415e-05 5.99022859976e-05 +UniRef50_N9CHK2 0.00033348980416 0.000734012258693 0.000400522454533 +UniRef50_Q7ULU1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.43115795898e-05 3.80821487725e-05 -1.62294308173e-05 +UniRef50_U5S306 0.000499909938178 0.00270828574347 0.00220837580529 +UniRef50_Q7NFY0 Glr3394 protein 0.000150831006835 5.16894161632e-05 -9.91415906718e-05 +UniRef50_B9KJJ0 Proton translocating NADH quinone oxidoreductase, chain L 0.00273570228255 0.000100050831806 -0.00263565145074 +UniRef50_Q4WHZ9 Inosine 5 monophosphate dehydrogenase 2.31752323061e-05 4.03791498831e-06 -1.91373173178e-05 +UniRef50_X0PKD3 1.84403811556e-05 2.76339752296e-05 9.193594074e-06 +UniRef50_UPI00046F8172 hypothetical protein, partial 6.00736054487e-06 4.02219123425e-06 -1.98516931062e-06 +UniRef50_D3QHK8 0.0166533036362 0.00569002909746 -0.0109632745387 +UniRef50_Q4FRI0 Site 2 protease, Metallo peptidase, MEROPS family M50B 0.000114044105391 0.00867650393252 0.00856245982713 +UniRef50_P13228 Tryptophan synthase 5.44816905175e-06 5.77735287324e-06 3.2918382149e-07 +UniRef50_I6T6M3 0.00476256718342 0.00145182065906 -0.00331074652436 +UniRef50_A0A013WI76 Pirin 2.25200123977e-05 3.51263812386e-06 -1.90073742738e-05 +UniRef50_Q724H7 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 2.11134291077e-05 0.000392882534625 0.000371769105517 +UniRef50_Q93SS1 Hemin import ATP binding protein HmuV 8.27087970432e-06 0.00187086142295 0.00186259054325 +UniRef50_A3PKX0 NAD transhydrogenase subunit beta 0.0102087851364 0.00182447818829 -0.00838430694811 +UniRef50_UPI0003160516 beta lactamase 5.23813342598e-05 2.24491139172e-05 -2.99322203426e-05 +UniRef50_F0Y015 0.000270352693396 0.00022095147397 -4.9401219426e-05 +UniRef50_A7H6S8 Chorismate synthase 1.56995271355e-05 0.000200708943699 0.000185009416564 +UniRef50_P12635 Uptake hydrogenase small subunit 0.00023461250138 5.90867761679e-05 -0.000175525725212 +UniRef50_H3V8P2 0.000884732786372 0.00140627002474 0.000521537238368 +UniRef50_A2BKX6 V type ATP synthase alpha chain 8.30247776054e-05 0.0442622439807 0.0441792192031 +UniRef50_Q9ZL20 Homoserine dehydrogenase 0.000204662241411 0.00597761539434 0.00577295315293 +UniRef50_UPI0003B6A98E siderophore ABC transporter permease 1.08437395644e-05 7.64013967908e-06 -3.20359988532e-06 +UniRef50_A5UNY8 0.00131989171183 0.00144506449675 0.00012517278492 +UniRef50_UPI00028983C1 iron ABC transporter ATP binding protein 6.31583313382e-05 3.22486928603e-05 -3.09096384779e-05 +UniRef50_UPI00035C388E hypothetical protein 1.20482189133e-05 9.46556279687e-06 -2.58265611643e-06 +UniRef50_Q2NHW2 4 hydroxy tetrahydrodipicolinate synthase 0.00568300732251 0.000275126075039 -0.00540788124747 +UniRef50_A5UNY0 0.000709651468135 0.000333063953224 -0.000376587514911 +UniRef50_P76278 Inner membrane protein YebZ 0.00278701617737 0.00221508751969 -0.00057192865768 +UniRef50_UPI0003F8B96B hypothetical protein 6.24657330125e-05 4.78745706916e-05 -1.45911623209e-05 +UniRef50_UPI00034A188B hypothetical protein 2.47966114014e-06 8.29736545314e-06 5.817704313e-06 +UniRef50_S9QCK8 Flagellar protein FlaF, putative 4.37928841016e-05 8.33178859481e-05 3.95250018465e-05 +UniRef50_I6WD10 3.53438711259e-06 5.93202349737e-06 2.39763638478e-06 +UniRef50_Q3IWS0 TRAP T family transporter, periplasmic binding protein 0.00225292724812 0.000703917253616 -0.0015490099945 +UniRef50_P0A0C8 Replication and maintenance protein 0.0623861574834 0.0165274521208 -0.0458587053626 +UniRef50_B3HTF1 Protein YgiQ 0.00234574987165 0.000246439531448 -0.0020993103402 +UniRef50_UPI0003B3CF72 histidine kinase 5.5405118147e-06 4.09448520666e-06 -1.44602660804e-06 +UniRef50_C6ST75 0.00500934565725 0.00258050643209 -0.00242883922516 +UniRef50_UPI00028905C7 recombinase RecQ 2.94112880377e-06 8.74222767327e-06 5.8010988695e-06 +UniRef50_P34749 Putative DNA transport protein HofQ 0.00362665813404 0.000374880651097 -0.00325177748294 +UniRef50_UPI00047D7442 multidrug ABC transporter ATPase 3.24989226794e-06 8.68934566524e-06 5.4394533973e-06 +UniRef50_Q88VG4 GTPase Obg 0.0285301072684 0.0113195805645 -0.0172105267039 +UniRef50_C1CMA0 Ribosomal protein L11 methyltransferase 0.00616934447601 0.00998821399 0.00381886951399 +UniRef50_Q9RW97 0.000172368031437 0.00900182108161 0.00882945305017 +UniRef50_L0GSA8 Glycine D amino acid oxidase, deaminating 0.00119535025924 0.000350889874761 -0.000844460384479 +UniRef50_UPI00037C253B alcohol dehydrogenase 1.63325704481e-05 1.8367759324e-05 2.0351888759e-06 +UniRef50_U5UBZ0 Integral membrane protein TerC 0.00209948226997 0.000977424880443 -0.00112205738953 +UniRef50_G2TNB0 Beta lactamase 1.12808813062e-05 4.7362608045e-05 3.60817267388e-05 +UniRef50_A7ZEL6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000142626947925 0.00118543384389 0.00104280689596 +UniRef50_Q9CE02 Glycerol facilitator aquaporin gla 0.00578647960401 0.00341511071572 -0.00237136888829 +UniRef50_A6X7L5 Cobyrinic acid ac diamide synthase 0.000290305665228 8.59117144387e-05 -0.000204393950789 +UniRef50_E5ALT8 UvrABC system protein A 8.97231649528e-05 0.00758436538607 0.00749464222112 +UniRef50_A9M1I6 Periplasmic thioredoxin 0.000370084302795 0.000360875810829 -9.208491966e-06 +UniRef50_D5HI95 Beta fructosidases 0.000366095001508 0.000827829860193 0.000461734858685 +UniRef50_A8M621 NADH quinone oxidoreductase subunit B 2 1.69801436267e-05 0.0339201317892 0.0339031516456 +UniRef50_UPI00041CBDDB phosphoenolpyruvate synthase 3.709774162e-06 1.51019291302e-05 1.13921549682e-05 +UniRef50_UPI0003B60C80 MFS transporter 8.19112865092e-06 8.28034282533e-06 8.921417441e-08 +UniRef50_O21049 Cytochrome c oxidase subunit 3 3.56245326004e-06 3.93192294643e-06 3.6946968639e-07 +UniRef50_M1GCT3 Peptidyl prolyl cis trans isomerase 0.000319002244105 0.000978950403971 0.000659948159866 +UniRef50_P49331 Glucosyltransferase S 0.00492029209645 0.00149449056862 -0.00342580152783 +UniRef50_Q1CU36 Phospho N acetylmuramoyl pentapeptide transferase 5.63620675513e-06 0.00264509988277 0.00263946367601 +UniRef50_P0AAJ9 Hydrogenase 2 operon protein HybA 0.00275494901213 0.00104855459288 -0.00170639441925 +UniRef50_P61154 Tungsten containing formylmethanofuran dehydrogenase 2 subunit B 0.00391566042739 0.00129881856166 -0.00261684186573 +UniRef50_W5X7F1 Band 7 protein 1.47790394464e-05 0.000287292161424 0.000272513121978 +UniRef50_J7R3C7 0.0030956984692 0.00236500599779 -0.00073069247141 +UniRef50_UPI000381CDD7 hypothetical protein 4.26265169235e-06 4.23548989079e-06 -2.716180156e-08 +UniRef50_X1Y977 4.2706502543e-06 2.30519724232e-05 1.87813221689e-05 +UniRef50_P26396 Glucose 1 phosphate cytidylyltransferase 0.0108249418803 0.00993978492785 -0.00088515695245 +UniRef50_Q9HZN2 Maf like protein PA2972 0.002150624633 0.000631080985278 -0.00151954364772 +UniRef50_Q2NED1 EhbF 0.00332712411382 0.00071688373595 -0.00261024037787 +UniRef50_Q9JY93 Peptide chain release factor 1 0.0111221498463 0.0162664260123 0.005144276166 +UniRef50_F2EI39 Predicted protein 3.61935744281e-05 0.000110841771634 7.46481972059e-05 +UniRef50_D8UC86 1.40745759169e-05 3.56792957775e-05 2.16047198606e-05 +UniRef50_R4ZPZ7 Glycosyl transferase, family 8 0.000671401926993 0.000167634837394 -0.000503767089599 +UniRef50_Q1GD19 Binding protein dependent transport systems inner membrane component 0.0102211275338 0.00290144483705 -0.00731968269675 +UniRef50_D8JKK4 Glutathione import ATP binding protein gsiA 0.000152512137299 0.00447226210032 0.00431974996302 +UniRef50_UPI0003642310 hypothetical protein 5.99168985199e-06 3.53014676972e-05 2.93097778452e-05 +UniRef50_F5YLA3 Ferric enterobactin transport ATP binding protein FepC 0.000318613284521 0.00158379757956 0.00126518429504 +UniRef50_M5JPC6 0.000139692598695 4.43376198464e-05 -9.53549788486e-05 +UniRef50_P70584 Short branched chain specific acyl CoA dehydrogenase, mitochondrial 7.5499766789e-06 1.14847291715e-05 3.9347524926e-06 +UniRef50_X3WXP6 3.36728049732e-05 4.1355854496e-05 7.6830495228e-06 +UniRef50_UPI00020008D2 putative magnesium translocating P type ATPase 3.36636109773e-05 0.000133885689123 0.000100222078146 +UniRef50_UPI00037C785B hypothetical protein 9.34246190593e-05 0.00015999231582 6.65676967607e-05 +UniRef50_Q8FF30 Flavohemoprotein 0.00344647789439 0.00111780293284 -0.00232867496155 +UniRef50_Q3IV85 0.00652407619201 0.00207741217372 -0.00444666401829 +UniRef50_B9KPB5 Response regulator receiver and SARP domain protein 0.000322637597309 0.0025436795637 0.00222104196639 +UniRef50_UPI00046F03A6 histidine kinase 6.98653018335e-05 2.08195212307e-05 -4.90457806028e-05 +UniRef50_P16552 Raffinose permease 0.000999665533874 0.0011762405932 0.000176575059326 +UniRef50_B4U0I9 Putative competence damage inducible protein 0.00789661600337 0.00546064795866 -0.00243596804471 +UniRef50_F4EDS5 Alkylhydroperoxidase like protein, AhpD family 0.00672305860622 0.0025759244621 -0.00414713414412 +UniRef50_UPI00036E614B hypothetical protein 3.21258892587e-05 9.05317519518e-05 5.84058626931e-05 +UniRef50_F3S3U6 4.96406924058e-05 4.22136233535e-05 -7.4270690523e-06 +UniRef50_UPI00036215C0 hypothetical protein 4.86197140317e-06 0.000150427265964 0.000145565294561 +UniRef50_Q28QW5 Ppx GppA phosphatase 0.0048484748751 0.000182670126934 -0.00466580474817 +UniRef50_UPI000180B091 PREDICTED 6.46409265431e-06 7.40834619373e-06 9.4425353942e-07 +UniRef50_I4CF79 ATPase involved in chromosome partitioning 0.00528494933203 0.00973686901799 0.00445191968596 +UniRef50_UPI000364064B hypothetical protein, partial 0.000201276570253 2.15972961107e-05 -0.000179679274142 +UniRef50_UPI000476D156 30S ribosomal protein S8 5.00552255868e-05 0.000315246829899 0.000265191604312 +UniRef50_M1N762 PAS domain S box diguanylate cyclase domain containing protein 0.000634909182436 0.00275886422822 0.00212395504578 +UniRef50_G8VEI8 9.11023266451e-05 0.00074733554289 0.000656233216245 +UniRef50_Q3J6K9 Acrylyl CoA reductase AcuI 0.00665110333348 0.00126035348037 -0.00539074985311 +UniRef50_Q8YM92 Spermidine putrescine import ATP binding protein PotA 7.54502453195e-05 4.77805003844e-05 -2.76697449351e-05 +UniRef50_V1DIU7 5.23276749134e-05 4.99210932214e-05 -2.406581692e-06 +UniRef50_C0R3V6 3 5 exonuclease 0.0168492430658 0.00383292585521 -0.0130163172106 +UniRef50_R1D2B5 8.13954027567e-06 2.41383768856e-05 1.59988366099e-05 +UniRef50_UPI00041042FA hypothetical protein 6.96805498777e-06 5.07450321446e-05 4.37769771568e-05 +UniRef50_P28303 DNA damage inducible protein F 0.00212529899665 0.000861927526551 -0.0012633714701 +UniRef50_R6NSD0 0.000174791299749 0.000644875588256 0.000470084288507 +UniRef50_P0A1J0 Basal body rod modification protein FlgD 0.00253311001131 0.000256054946702 -0.00227705506461 +UniRef50_Q1LSW5 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.00396408312137 0.000176133223777 -0.00378794989759 +UniRef50_Q164Y5 sn glycerol 3 phosphate import ATP binding protein UgpC 8.1108091523e-05 7.58093586595e-05 -5.2987328635e-06 +UniRef50_B7L4M7 Glutathione regulated potassium efflux system protein KefB 0.00276607631409 0.00128549140257 -0.00148058491152 +UniRef50_UPI000329E73C PREDICTED 3.28563903976e-06 5.20139117476e-06 1.915752135e-06 +UniRef50_P0AFJ0 Putative permease PerM 0.00358838338785 0.000298299702217 -0.00329008368563 +UniRef50_UPI00036E49BC hypothetical protein 0.000379371991491 4.96446364568e-05 -0.000329727355034 +UniRef50_Q9XC21 Protein NrdI 1.14808599181e-05 4.57990076387e-05 3.43181477206e-05 +UniRef50_Q6G5Y3 0.0234714436108 0.00560768339471 -0.0178637602161 +UniRef50_V5XV11 7.05160697779e-06 2.13011866337e-05 1.42495796559e-05 +UniRef50_UPI00037AAF5D hypothetical protein 0.00195550286055 0.0013908472994 -0.00056465556115 +UniRef50_Q8ZPD6 0.00190071834935 0.00107100541519 -0.00082971293416 +UniRef50_A1YN33 Outer membrane protein N 0.000577086829441 0.000741557572174 0.000164470742733 +UniRef50_E3HF39 Acyltransferase family protein 5 0.000425936072397 0.000259429023591 -0.000166507048806 +UniRef50_UPI0003B39CC6 ABC transporter substrate binding protein 9.10164696954e-05 0.000111626739969 2.06102702736e-05 +UniRef50_Q896J4 HPr kinase phosphorylase 0.000249990721098 0.00186973468552 0.00161974396442 +UniRef50_W0YKE6 Protein PqqC 0.000305660536572 0.00115856050729 0.000852899970718 +UniRef50_UPI00038F9E6F DNA polymerase III subunit alpha, partial 1.46101884347e-05 2.87608248385e-05 1.41506364038e-05 +UniRef50_A6LXS8 FAD dependent pyridine nucleotide disulphide oxidoreductase 9.37465204062e-05 0.00171989404948 0.00162614752907 +UniRef50_Q487E5 Protein L isoaspartate O methyltransferase 0.00244600475456 0.00106026637819 -0.00138573837637 +UniRef50_P9WKI2 0.00011674824398 0.00596144832841 0.00584470008443 +UniRef50_G2JG74 0.00365309021469 0.00177147782215 -0.00188161239254 +UniRef50_Q12680 Glutamate synthase [NADH] 9.1054271516e-07 1.37630012434e-05 1.28524585282e-05 +UniRef50_Q142P6 Lipid A export ATP binding permease protein MsbA 2.56378925683e-06 6.14249179135e-06 3.57870253452e-06 +UniRef50_UPI0003FD8434 hypothetical protein 2.83550840038e-05 1.15207367889e-05 -1.68343472149e-05 +UniRef50_P77196 Putative outer membrane usher protein YfcU 0.00302832132771 0.00129565448897 -0.00173266683874 +UniRef50_D8GR57 D alanyl D alanine carboxypeptidase 0.00019608677785 0.000897181543735 0.000701094765885 +UniRef50_E7T039 PTS system protein, cellobiose specific IIC component 0.00166790515675 0.000564553633327 -0.00110335152342 +UniRef50_U2FR71 Putative conserved inner membrane protein 1.82834875865e-05 3.11019571619e-05 1.28184695754e-05 +UniRef50_X1Y4J3 S adenosylmethionine synthase 2.86486238582e-05 0.00016347347176 0.000134824847902 +UniRef50_UPI0003B599F8 membrane protein 5.43812219043e-06 3.66967490636e-05 3.12586268732e-05 +UniRef50_UPI0003699B2C hypothetical protein 8.33033570671e-06 9.30782079632e-06 9.7748508961e-07 +UniRef50_B8DTW3 Carbamoyl phosphate synthase large chain 1.55008388122e-05 8.77927116125e-06 -6.72156765095e-06 +UniRef50_P0AE17 Protein AmpG 0.00267721610191 0.00199526830868 -0.00068194779323 +UniRef50_D2QC61 NAD dependent epimerase dehydratase 0.000654869594153 0.00138454245475 0.000729672860597 +UniRef50_UPI00037FC855 hypothetical protein 0.00173644784283 0.000559592915001 -0.00117685492783 +UniRef50_A5UNZ2 Magnesium chelatase subunit 0.00285246063776 0.000852879969053 -0.00199958066871 +UniRef50_A0A023S1G3 Transcriptional regulator 0.000653738717857 0.00568664305895 0.00503290434109 +UniRef50_V5VIA0 0.000797505610247 0.00937918408415 0.0085816784739 +UniRef50_UPI00016A5A21 ABC transporter permease 2.43642254169e-05 1.36314406812e-05 -1.07327847357e-05 +UniRef50_UPI0002DB5328 ABC transporter permease 9.80483538871e-06 1.16840538432e-05 1.87921845449e-06 +UniRef50_W1AP48 Penicillin binding protein 2 0.00269337184431 0.000531085087412 -0.0021622867569 +UniRef50_UPI0002F2CBB8 hypothetical protein 0.000158112879685 5.36905187769e-05 -0.000104422360908 +UniRef50_A4WQG9 0.00272476060112 0.00143549361474 -0.00128926698638 +UniRef50_P43725 Superoxide dismutase [Mn] 8.78067731056e-06 0.000104739421233 9.59587439224e-05 +UniRef50_W5FKJ5 0.000102297989595 0.000204857365868 0.000102559376273 +UniRef50_Q9KA74 Transcription termination antitermination protein NusA 0.00637974375497 0.000846209134264 -0.00553353462071 +UniRef50_P0A9F8 Glycine cleavage system transcriptional activator 0.00190523329316 0.00125032605101 -0.00065490724215 +UniRef50_A9LZF9 3 isopropylmalate dehydratase small subunit 5.6791288078e-05 0.00904198060709 0.00898518931901 +UniRef50_M9VJJ5 AP endonuclease, family 2 0.000559066611697 0.00560035805641 0.00504129144471 +UniRef50_P44255 Elongation factor P hydroxylase 0.000101870634305 3.84687765347e-05 -6.34018577703e-05 +UniRef50_F3G6H6 AsmA family protein 2.58727658681e-05 7.68339313342e-05 5.09611654661e-05 +UniRef50_UPI000474A6D9 hypothetical protein, partial 1.18702606973e-05 0.000106823419169 9.49531584717e-05 +UniRef50_UPI000380FF19 chemotaxis protein CheY, partial 0.000185967938469 0.000103181564122 -8.2786374347e-05 +UniRef50_Q21YC7 NADH quinone oxidoreductase subunit A 1.51014715536e-05 0.000145947211422 0.000130845739868 +UniRef50_P38674 Ketol acid reductoisomerase, mitochondrial 2.52051717726e-06 0.00271912679335 0.00271660627617 +UniRef50_C1ELB5 Bis tetraphosphatase PrpE [asymmetrical] 8.63366107376e-05 0.000186631709541 0.000100295098803 +UniRef50_UPI00046FCD40 rubredoxin 0.000415782126582 0.000102819783026 -0.000312962343556 +UniRef50_UPI000381FE78 hypothetical protein 5.38214392116e-06 1.29349761233e-05 7.55283220214e-06 +UniRef50_UPI0003BCF281 PREDICTED 1.04842106709e-05 0.000193126669675 0.000182642459004 +UniRef50_V8G1A8 Membrane protein 0.000426669239637 0.00149678010725 0.00107011086761 +UniRef50_UPI0003600AD1 hypothetical protein 5.51569213999e-05 2.83418244237e-05 -2.68150969762e-05 +UniRef50_UPI000328F489 PREDICTED 0.000102470352109 1.31547756869e-05 -8.93155764221e-05 +UniRef50_I4EZI0 4.99583431396e-05 0.000109203060076 5.92447169364e-05 +UniRef50_P9WN18 Glutamate synthase [NADPH] small chain 9.72227072197e-05 0.000134872420104 3.76497128843e-05 +UniRef50_I3UWQ8 Spermidine putrescine ABC transporter ATPase 0.00919429940831 0.00242014802246 -0.00677415138585 +UniRef50_P45061 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.00203166581647 0.00107640954189 -0.00095525627458 +UniRef50_A3LGX4 1.00608525054e-05 9.59106276218e-05 8.58497751164e-05 +UniRef50_UPI0002EE4E70 D amino acid dehydrogenase small subunit 3.14691063883e-05 2.61865031974e-05 -5.2826031909e-06 +UniRef50_A3LGX1 0.000221103934161 0.000423657556294 0.000202553622133 +UniRef50_UPI00046F4247 MarR family transcriptional regulator 1.21757414489e-05 9.49865002677e-05 8.28107588188e-05 +UniRef50_Q28TP6 0.000150656275976 2.81277828093e-05 -0.000122528493167 +UniRef50_Q4QP16 tRNA specific 2 thiouridylase MnmA 9.80428268128e-06 2.39685007704e-05 1.41642180891e-05 +UniRef50_P46861 Lysine tRNA ligase 0.000395466056609 0.00449871574785 0.00410324969124 +UniRef50_R4YER9 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.00039443356509 5.39283397707e-05 -0.000340505225319 +UniRef50_UPI00036FD96D hypothetical protein 7.21145060561e-05 0.000491446714796 0.00041933220874 +UniRef50_Q6AB12 4 hydroxythreonine 4 phosphate dehydrogenase 0.000115204269236 0.00336068083445 0.00324547656521 +UniRef50_J2XB15 0.00894331207736 0.00172029148658 -0.00722302059078 +UniRef50_C7DAC2 ISSpo9, transposase 0.000135855728571 2.3347029746e-05 -0.000112508698825 +UniRef50_Q8TT39 30S ribosomal protein S2 0.0049062006556 0.000900527402918 -0.00400567325268 +UniRef50_A2RNT2 Proline tRNA ligase 0.00476933443278 0.00493372030925 0.00016438587647 +UniRef50_A6M0B1 PAS PAC sensor signal transduction histidine kinase 0.000342244732592 0.00212083222683 0.00177858749424 +UniRef50_D3QE85 0.0188483377382 0.00522984033394 -0.0136184974043 +UniRef50_G4LM52 0.000256212209626 0.00394694243171 0.00369073022208 +UniRef50_UPI00047BC3F9 peptidase S41 2.68003025985e-05 0.00015204133707 0.000125241034472 +UniRef50_P27129 Lipopolysaccharide 1,2 glucosyltransferase 0.00283045323684 0.000280363960626 -0.00255008927621 +UniRef50_B2I9J2 Tryptophan synthase beta chain 7.29121724957e-05 0.0228873566944 0.0228144445219 +UniRef50_S9RYT9 0.000503140366143 0.000759643236156 0.000256502870013 +UniRef50_UPI0001850E7F signal recognition particle protein 4.19947873189e-05 0.00191928329826 0.00187728851094 +UniRef50_Q9HUL4 Epoxyqueuosine reductase 0.000759079037954 0.000188099812232 -0.000570979225722 +UniRef50_UPI0002D4C97B hypothetical protein 2.4975230316e-05 9.31526773862e-06 -1.56599625774e-05 +UniRef50_Q98PK9 Thioredoxin reductase 2.8050069553e-05 2.65460963868e-05 -1.5039731662e-06 +UniRef50_A8AK39 6,7 dimethyl 8 ribityllumazine synthase 0.000458485006708 0.000403248283798 -5.523672291e-05 +UniRef50_UPI000369CA42 hypothetical protein 3.61060801141e-06 0.00204435977302 0.00204074916501 +UniRef50_Q58944 0.00207529025695 0.00406632657497 0.00199103631802 +UniRef50_UPI00042A1E91 hypothetical protein 1.25922027982e-05 1.01615376546e-05 -2.4306651436e-06 +UniRef50_F3F298 AsmA family protein 4.55602266102e-05 0.000135299462802 8.97392361918e-05 +UniRef50_UPI0002DB6B05 hypothetical protein 2.13083057587e-05 6.29001136813e-05 4.15918079226e-05 +UniRef50_UPI00036C5239 hypothetical protein 6.35681253298e-06 8.24753719114e-06 1.89072465816e-06 +UniRef50_C6SRS1 0.00343071403632 0.000965131161782 -0.00246558287454 +UniRef50_A3V2W0 2.84899951708e-05 4.36951237902e-05 1.52051286194e-05 +UniRef50_Q883S2 Universal stress protein family 0.00194676558383 0.000357959642661 -0.00158880594117 +UniRef50_UPI0003B63590 LuxR family transcriptional regulator 3.89713931898e-05 0.000403670263344 0.000364698870154 +UniRef50_UPI000365B6C8 hypothetical protein 9.38863149246e-06 2.13131346101e-05 1.19245031176e-05 +UniRef50_L0A7F9 0.000148227482538 0.0452478303918 0.0450996029093 +UniRef50_D9RHP8 Enterotoxin family protein 0.0110469308107 0.00105470251856 -0.00999222829214 +UniRef50_A9KSY6 Sulfate ABC transporter, inner membrane subunit 0.000154919010474 0.00070353226378 0.000548613253306 +UniRef50_UPI00047845D7 hypothetical protein 1.69904274774e-05 2.16859141924e-05 4.695486715e-06 +UniRef50_A6LQA8 Methyl accepting chemotaxis sensory transducer 0.000289905838214 0.0010235460952 0.000733640256986 +UniRef50_Q5HPI3 Protein GlcT 0.0146013238694 0.00357745234146 -0.0110238715279 +UniRef50_UPI0003193330 hypothetical protein 0.000136466157208 3.54435595662e-05 -0.000101022597642 +UniRef50_B5EXJ5 7 cyano 7 deazaguanine synthase 5.43656356362e-05 4.73292727899e-05 -7.0363628463e-06 +UniRef50_B0U641 Lipoyl synthase 0.000895741312443 0.00280479079022 0.00190904947778 +UniRef50_B0NLN7 1.2687842486e-05 0.000342671785859 0.000329983943373 +UniRef50_S5CLP0 Zn dependent hydrolase, including glyoxylase 0.00075603967482 0.00534872958561 0.00459268991079 +UniRef50_Q6N6L4 Phosphopantetheine adenylyltransferase 2.64110495372e-05 1.62726623113e-05 -1.01383872259e-05 +UniRef50_T5BQJ5 1.74811347414e-05 6.39739018242e-06 -1.1083744559e-05 +UniRef50_UPI000465E97D excinuclease ABC subunit A 3.81118476502e-06 2.09951386392e-06 -1.7116709011e-06 +UniRef50_UPI0003715EFB hypothetical protein 6.91425932738e-06 5.51706059815e-05 4.82563466541e-05 +UniRef50_E8SKI8 Ribosomal protein S18p alanine acetyltransferase 0.0244381846984 0.00452518068606 -0.0199130040123 +UniRef50_U2LTW3 6.62444019762e-06 5.5554877205e-05 4.89304370074e-05 +UniRef50_I3U9I7 Phosphomethylpyrimidine synthase ThiC 2.05742138901e-05 6.06746821728e-05 4.01004682827e-05 +UniRef50_O75306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2, mitochondrial 2.33029437924e-05 3.40040471578e-05 1.07011033654e-05 +UniRef50_B4RJZ9 0.000295680931211 0.00532934272303 0.00503366179182 +UniRef50_UPI00037AAD6E hypothetical protein 0.000121976407489 3.32858824924e-05 -8.86905249966e-05 +UniRef50_M4UTW5 5.16966622e-05 1.95126574201e-05 -3.21840047799e-05 +UniRef50_B9KR53 Transcriptional regulator, Fis family 0.00257794229738 0.000494987553634 -0.00208295474375 +UniRef50_A0A029LHT4 0.00268632192166 0.0016958113222 -0.00099051059946 +UniRef50_A0A024HXI8 8.56689916941e-05 0.000178499755829 9.28307641349e-05 +UniRef50_C6SQS1 0.00527909842341 0.00126053388161 -0.0040185645418 +UniRef50_Q5HJ89 Protein EssA 0.0105080381829 0.00315007540302 -0.00735796277988 +UniRef50_Q887V6 Protein CysZ homolog 0.00103558584352 0.000350871332905 -0.000684714510615 +UniRef50_G7U6T9 Bacterial extracellular solute binding protein, family 5 0.000300218762002 0.0059868394597 0.0056866206977 +UniRef50_UPI0002E39CBB hypothetical protein 5.9967823003e-06 4.07640353713e-05 3.4767253071e-05 +UniRef50_UPI00035CE977 hypothetical protein 0.00191717573781 0.000560670480056 -0.00135650525775 +UniRef50_Q6FD73 0.0012582866295 0.0108565872938 0.0095983006643 +UniRef50_A3M3H0 Adhesin Ata autotransporter 0.000105657545649 0.00582996982867 0.00572431228302 +UniRef50_Q46I98 Aspartate tRNA ligase 2.71340909377e-06 1.35654558785e-05 1.08520467847e-05 +UniRef50_UPI000467166E hypothetical protein 5.02842727754e-06 7.73174702735e-06 2.70331974981e-06 +UniRef50_UPI00037BC758 dihydropyrimidine dehydrogenase subunit B, partial 0.000272485495107 0.000128852465863 -0.000143633029244 +UniRef50_Q5I3J7 Aec68 0.000759788003887 0.000435174594507 -0.00032461340938 +UniRef50_UPI00036C8B3C AraC family transcriptional regulator 0.00084999030458 0.000150217388882 -0.000699772915698 +UniRef50_Q62MT4 Methionyl tRNA formyltransferase 0.00022469404098 0.00506535232946 0.00484065828848 +UniRef50_W4KZP5 Peptidase family S11 0.000109931023379 2.17266206765e-05 -8.82044027025e-05 +UniRef50_Q3JHM0 0.000266549363836 0.0073421340745 0.00707558471066 +UniRef50_P80705 Aldehyde dehydrogenase gamma chain 0.0732701412317 0.0054821190768 -0.0677880221549 +UniRef50_V6UAA6 6.84133645646e-05 0.000101454332734 3.30409681694e-05 +UniRef50_UPI00047E4EA4 hypothetical protein 3.23101369536e-06 8.3257393168e-06 5.09472562144e-06 +UniRef50_M1P548 Dipeptide binding ABC transporter, periplasmic substrate binding component 0.00332086994703 0.000606932896307 -0.00271393705072 +UniRef50_UPI000289E1E5 sodium 2.48727342067e-05 5.75689030312e-05 3.26961688245e-05 +UniRef50_P37474 Transcription repair coupling factor 0.0135951546948 0.00251558327466 -0.0110795714201 +UniRef50_P46320 Probable 6 phospho beta glucosidase 0.00117342753866 0.00580918367303 0.00463575613437 +UniRef50_G4YC47 0.000428442915246 3.93144049521e-05 -0.000389128510294 +UniRef50_Q5HP54 0.0143919739566 0.00319683949508 -0.0111951344615 +UniRef50_R6FZP0 Flagellar M ring protein 0.000650712489061 0.000800449093565 0.000149736604504 +UniRef50_D6SFZ2 7.2968387879e-05 0.0016406483622 0.00156767997432 +UniRef50_A5ISK2 ABC 2 type transporter 0.00650822148537 0.00160100917807 -0.0049072123073 +UniRef50_UPI00035F0BE8 hypothetical protein 0.000216008261563 0.00587483206376 0.0056588238022 +UniRef50_L8DT93 Chaperone protein DnaJ 7.43797070742e-05 7.10453049938e-05 -3.3344020804e-06 +UniRef50_F8HGC4 Permease of the major facilitator family protein 2.14928393881e-05 5.11386655042e-05 2.96458261161e-05 +UniRef50_F0TCJ5 Methyltransferase MtaA CmuA family 0.00449854756675 0.000378028476564 -0.00412051909019 +UniRef50_E4PPH7 DNA repair protein RecN 0.000705128588587 0.00053448590692 -0.000170642681667 +UniRef50_D7BZV1 6.1100953038e-05 4.03203452809e-05 -2.07806077571e-05 +UniRef50_Q46948 Chaperone protein YajL 0.00592854323394 0.00298687022154 -0.0029416730124 +UniRef50_P0A7B0 Inorganic pyrophosphatase 0.00468975584017 5.07306630968e-05 -0.00463902517707 +UniRef50_UPI00037BC2EC hypothetical protein 5.36548186326e-06 1.04113297482e-05 5.04584788494e-06 +UniRef50_UPI00036A31F9 hypothetical protein 6.45871748108e-05 2.52322934429e-05 -3.93548813679e-05 +UniRef50_UPI00047ED552 hypothetical protein 1.49257996457e-05 1.81686768888e-05 3.2428772431e-06 +UniRef50_Q1GCB3 1.48225195358e-05 1.3980822569e-05 -8.416969668e-07 +UniRef50_A0Q1L0 Putative fluoride ion transporter CrcB 0.00202224636885 0.000456675317307 -0.00156557105154 +UniRef50_A3V7A8 0.000223271229081 8.23731490911e-05 -0.00014089807999 +UniRef50_M9S3N5 Glycosyl transferase family protein 0.00200291339078 0.000244063392719 -0.00175884999806 +UniRef50_U5MSV8 DNA binding protein, excisionase family 0.000452686552077 0.0018496368431 0.00139695029102 +UniRef50_Q6UB95 RepA 0.000166896197207 7.96238755497e-06 -0.000158933809652 +UniRef50_UPI000369C939 hypothetical protein 1.97935694715e-05 3.60063142644e-05 1.62127447929e-05 +UniRef50_P27298 Oligopeptidase A 0.00123253352837 0.000114611916634 -0.00111792161174 +UniRef50_A0A058Z2Y8 1.30791648539e-06 6.61907223052e-07 -6.46009262338e-07 +UniRef50_UPI0002486501 methylcitrate synthase 3.72161690008e-05 5.50823761587e-05 1.78662071579e-05 +UniRef50_R5RD02 0.00130195583421 0.00053693946399 -0.00076501637022 +UniRef50_UPI000405521B acyl CoA dehydrogenase 4.16643713376e-05 1.39261643727e-05 -2.77382069649e-05 +UniRef50_UPI0003B6EF1B dihydroxyacetone kinase 1.81633295496e-05 0.00132191334626 0.00130375001671 +UniRef50_B8I2T4 UDP N acetylmuramoylalanine D glutamate ligase 0.000577180061908 0.00126692657461 0.000689746512702 +UniRef50_Q5M1E5 0.00452175034941 0.00351972985869 -0.00100202049072 +UniRef50_G7M8Y1 Type IV pilus assembly PilZ 0.000223364490448 0.000340096013652 0.000116731523204 +UniRef50_V9WDB1 7.07268037056e-05 1.2052550087e-05 -5.86742536186e-05 +UniRef50_UPI000473B5E4 translation initiation factor IF 3, partial 0.000218261941611 0.000311851248785 9.3589307174e-05 +UniRef50_S8ZG58 Amidase 0.000191813840575 0.000290685751701 9.8871911126e-05 +UniRef50_UPI000262E88D reductase 0.000118951484509 0.000210977835457 9.2026350948e-05 +UniRef50_P72785 4 alpha glucanotransferase 1.38621375834e-05 0.000768150898684 0.000754288761101 +UniRef50_UPI00047CBF8E hypothetical protein 6.80074935093e-06 1.17248636291e-05 4.92411427817e-06 +UniRef50_F2LSI9 Metal dependent phosphohydrolase, HD region 0.00026397621598 0.00331327340308 0.0030492971871 +UniRef50_UPI00026286B7 ABC transporter permease 0.000193025738056 1.46774618893e-05 -0.000178348276167 +UniRef50_UPI00037C530D hypothetical protein 2.55150246161e-06 3.96254489078e-06 1.41104242917e-06 +UniRef50_X3WHN6 Short chain dehydrogenase 2.32259994116e-05 5.06289508849e-05 2.74029514733e-05 +UniRef50_UPI000366373C hypothetical protein 0.000348154852414 0.000134243135142 -0.000213911717272 +UniRef50_O27123 DNA directed RNA polymerase subunit B 0.0027263150849 0.000915817077032 -0.00181049800787 +UniRef50_UPI000464BDF6 amino acid permease 2.38554011583e-05 7.63671270001e-06 -1.62186884583e-05 +UniRef50_UPI0002D53655 hypothetical protein 4.23800650564e-05 2.57721182107e-05 -1.66079468457e-05 +UniRef50_D9UDJ1 Predicted protein 0.00103346272487 9.21492938561e-05 -0.000941313431014 +UniRef50_UPI0003B6AAD5 hypothetical protein 3.28656895422e-05 1.33915526063e-05 -1.94741369359e-05 +UniRef50_UPI00036396B4 hypothetical protein 1.38791313155e-05 0.000788674304946 0.000774795173631 +UniRef50_Q5HP23 Acetylglutamate kinase 0.0059154411298 0.00275544682379 -0.00315999430601 +UniRef50_R7PUS4 Adhesin like protein 0.004099221115 0.000770132169605 -0.0033290889454 +UniRef50_B0RVC3 Two component system response regulator 0.000764211441894 0.00370989493815 0.00294568349626 +UniRef50_U6HM79 Mitochondrial ribosomal protein S12 8.03480802961e-05 0.000103886971248 2.35388909519e-05 +UniRef50_C5Y1C5 3.49696237215e-05 7.7775025377e-05 4.28054016555e-05 +UniRef50_UPI00029AFBF4 excinuclease ABC subunit A 8.11635146615e-06 2.36392085813e-05 1.55228571151e-05 +UniRef50_X7F301 4.95161601479e-05 3.16890752935e-05 -1.78270848544e-05 +UniRef50_UPI0003B6DCF9 cysteine synthase 3.50528952244e-06 1.70442751601e-05 1.35389856377e-05 +UniRef50_UPI0002490F12 alcohol dehydrogenase 1.0361242598e-05 9.68459580098e-06 -6.7664679702e-07 +UniRef50_Q3J074 TRAP T family transporter, DctP subunit 0.0127254856915 0.00397289273861 -0.00875259295289 +UniRef50_C4J2K7 0.000156502016027 0.00075391217446 0.000597410158433 +UniRef50_A0A028WY26 PF04507 domain protein 1.57956794645e-05 2.93457791256e-05 1.35500996611e-05 +UniRef50_C5Y4M7 0.000241275560139 7.30141036513e-05 -0.000168261456488 +UniRef50_Q2Y5B5 Ribosomal RNA small subunit methyltransferase G 2.17335841766e-05 4.59826369244e-05 2.42490527478e-05 +UniRef50_X2I3A5 Biotin protein ligase 0.00107988336529 0.00236825759424 0.00128837422895 +UniRef50_L1K7Q7 0.00245044686356 0.000813188663273 -0.00163725820029 +UniRef50_P55177 Hydrolase in agr operon 0.0189370777488 0.00183490899356 -0.0171021687552 +UniRef50_P77966 DNA gyrase subunit B 1.15717469857e-05 1.5680260196e-05 4.1085132103e-06 +UniRef50_U3QXL3 NADH dehydrogenase 0.000162476035378 0.00719594470653 0.00703346867115 +UniRef50_L0DVV1 5.67799233753e-05 0.000525381471564 0.000468601548189 +UniRef50_V9XXU6 4.92880611665e-06 0.000312355936417 0.0003074271303 +UniRef50_P76082 2,3 dehydroadipyl CoA hydratase 0.00228813312123 0.0010361989656 -0.00125193415563 +UniRef50_UPI000462B96F PREDICTED 8.44316011577e-06 4.81819953464e-06 -3.62496058113e-06 +UniRef50_F8KNY9 0.00321151144903 0.00161223912243 -0.0015992723266 +UniRef50_N0CST0 0.000101839745189 0.000117895732041 1.6055986852e-05 +UniRef50_A6M3H8 0.000151804016961 0.000887268018229 0.000735464001268 +UniRef50_F3KGL6 8.02630746945e-05 0.00012501574942 4.47526747255e-05 +UniRef50_J7QZC7 Citrate dependent iron transport, membrane bound protein 0.00324403690212 0.000975817036696 -0.00226821986542 +UniRef50_W8RUY9 Carbonic anhydrase, family 3 0.000208566720793 0.000640403867119 0.000431837146326 +UniRef50_UPI000376C688 MULTISPECIES 0.00030104252435 7.4105265967e-05 -0.000226937258383 +UniRef50_G7LY34 ATP dependent DNA helicase RecQ 0.000372145752678 0.00172377955165 0.00135163379897 +UniRef50_UPI0003B3BF74 diguanylate cyclase 6.25603067063e-06 6.0645157761e-05 5.43891270904e-05 +UniRef50_UPI00016AC33B malto oligosyltrehalose synthase, partial 1.60060594764e-05 2.25998052077e-05 6.5937457313e-06 +UniRef50_P0ACB9 Protein HemY 0.00250102242456 0.00198237388763 -0.00051864853693 +UniRef50_B9KPD3 Small GTP binding protein 0.0026150676038 0.000852480117634 -0.00176258748617 +UniRef50_C1KXH5 3 5 exoribonuclease YhaM 0.0254843543049 0.00743461518344 -0.0180497391215 +UniRef50_UPI00035C4E67 hypothetical protein, partial 4.17887867711e-05 0.000548632219814 0.000506843433043 +UniRef50_Q5LZU3 Phosphate import ATP binding protein PstB 1 6.19608750746e-06 8.65769685155e-05 8.0380881008e-05 +UniRef50_UPI000362695F hypothetical protein 3.10218232137e-06 0.000236375038554 0.000233272856233 +UniRef50_Q81ZF5 Methionine import ATP binding protein MetN 2 2.08542584581e-05 0.000168591839309 0.000147737580851 +UniRef50_Q3J527 0.0121910723862 0.00276895955352 -0.00942211283268 +UniRef50_Q3J525 0.00361244030935 0.000193867795882 -0.00341857251347 +UniRef50_Q3J523 0.00105059262312 0.000441870381833 -0.000608722241287 +UniRef50_UPI0004098CF0 hypothetical protein 4.66871030311e-05 0.000230291735532 0.000183604632501 +UniRef50_UPI0004261724 hypothetical protein 2.96403389293e-05 4.5459373169e-05 1.58190342397e-05 +UniRef50_P37178 Phosphoenolpyruvate protein phosphotransferase PtsP 0.00239966373598 0.00103633685435 -0.00136332688163 +UniRef50_K6NB87 NADP oxidoreductase coenzyme F420 dependent 0.000615466286172 0.00104974776197 0.000434281475798 +UniRef50_Q00753 Msm operon regulatory protein 0.00275549624179 0.000429336914563 -0.00232615932723 +UniRef50_UPI000360AD7B hypothetical protein 4.47930729935e-06 0.000341186920229 0.00033670761293 +UniRef50_UPI000345C404 peptide ABC transporter ATP binding protein 4.86775225569e-05 3.61240999147e-05 -1.25534226422e-05 +UniRef50_UPI00046F1741 DNA mismatch repair protein MutL 3.49785532092e-06 5.40716037161e-06 1.90930505069e-06 +UniRef50_K2M973 0.000381264435227 3.17625567404e-05 -0.000349501878487 +UniRef50_Q8Z389 UDP N acetyl D mannosamine dehydrogenase 0.0024089561752 0.00065462505164 -0.00175433112356 +UniRef50_I1PAG3 2.59136595254e-05 0.000279710828579 0.000253797169054 +UniRef50_UPI00046359F3 hypothetical protein 2.58868812771e-05 3.86167435997e-05 1.27298623226e-05 +UniRef50_R9SHS2 Xaa Pro aminopeptidase 0.00386270886266 0.000670593214563 -0.0031921156481 +UniRef50_Q05026 UDP glucose 4 epimerase 0.000904220494495 0.00712825588158 0.00622403538708 +UniRef50_UPI000383C331 PREDICTED 3.02132796513e-05 5.05654325675e-06 -2.51567363946e-05 +UniRef50_F2GA52 Starvation protein B 0.000358372774223 0.0133533360461 0.0129949632719 +UniRef50_UPI00046CD6A6 hypothetical protein 5.12177947953e-06 3.69509054181e-05 3.18291259386e-05 +UniRef50_UPI0003B37C7C Ssp gyrB intein 6.15983921532e-06 1.08104393249e-05 4.65060010958e-06 +UniRef50_UPI00038053ED hypothetical protein 1.79764749136e-05 2.95857707503e-05 1.16092958367e-05 +UniRef50_A6TLS6 Phosphoribosylglycinamide formyltransferase 0.000740024939322 0.00158927747328 0.000849252533958 +UniRef50_UPI000379A6AD 30S ribosomal protein S4 1.25482226493e-05 5.14116048871e-05 3.88633822378e-05 +UniRef50_X0SMG4 Marine sediment metagenome DNA, contig 2.56332440775e-05 1.99653510848e-05 -5.6678929927e-06 +UniRef50_Q6FBI7 0.000132451224162 0.0100308842154 0.00989843299124 +UniRef50_A5IUD2 ATP dependent Clp protease proteolytic subunit 0.034890681551 0.00443146008775 -0.0304592214633 +UniRef50_UPI0003817364 hypothetical protein 2.59817991815e-05 2.42163405843e-05 -1.7654585972e-06 +UniRef50_Q2S1J1 Adenylosuccinate synthetase 4.33379782052e-06 1.00683879558e-05 5.73459013528e-06 +UniRef50_Q5LAB4 3 isopropylmalate dehydrogenase 2.94032841193e-05 0.00438276547754 0.00435336219342 +UniRef50_UPI0003661FA3 methionyl tRNA synthetase 1.49776098015e-05 4.33400766059e-05 2.83624668044e-05 +UniRef50_R5RTQ1 MIP family channel protein 0.00031855357709 0.000549488731932 0.000230935154842 +UniRef50_Q4L8Y1 0.0169737491982 0.00473252760718 -0.012241221591 +UniRef50_UPI0003620285 hypothetical protein 1.72211416555e-05 2.23520030114e-05 5.1308613559e-06 +UniRef50_A4X3N1 8.71054251266e-06 6.93609249395e-05 6.06503824268e-05 +UniRef50_M7AGI7 3.67785066002e-05 0.000448062821029 0.000411284314429 +UniRef50_A3UJ86 5.0458596107e-06 9.44328168304e-06 4.39742207234e-06 +UniRef50_G0EV06 Malonate decarboxylase gamma subunit 0.000593300163503 0.00887721914726 0.00828391898376 +UniRef50_Q46908 Putative electron transfer flavoprotein subunit YgcR 0.00410816030675 0.000910817538908 -0.00319734276784 +UniRef50_J9YRC9 Dihydrofolate reductase 0.00360663075539 0.00133304042597 -0.00227359032942 +UniRef50_P19669 Transaldolase 0.00050599703289 0.0347280891969 0.034222092164 +UniRef50_UPI00035C8A55 hypothetical protein, partial 5.34985256172e-06 3.37463840886e-05 2.83965315269e-05 +UniRef50_Q3JRV3 200 kDa antigen p200, putative 4.75917892965e-05 0.000192530779876 0.000144938990579 +UniRef50_UPI00016B0021 alkaline phosphatase family protein 0.000159255198506 6.87980406621e-05 -9.04571578439e-05 +UniRef50_UPI00016BFB47 excinuclease ABC subunit C 2.39863277606e-06 3.35155000666e-05 3.11168672905e-05 +UniRef50_P75957 Lipoprotein releasing system ATP binding protein LolD 0.00327849683527 0.0132777029417 0.00999920610643 +UniRef50_Q8Y6E5 Adenine deaminase 1.68644069208e-05 0.00121260965577 0.00119574524885 +UniRef50_V6QD47 7.55570608499e-05 6.3505902113e-05 -1.20511587369e-05 +UniRef50_R6XHZ3 Iron compound ABC transporter ATP binding protein 0.000782617263819 0.00149295544533 0.000710338181511 +UniRef50_UPI0004697408 DNA processing protein 2.32208004216e-05 4.83185187353e-05 2.50977183137e-05 +UniRef50_Q1C7K2 Electron transport complex subunit B 0.00159646010473 0.00134960604522 -0.00024685405951 +UniRef50_O86062 NADH pyrophosphatase 0.000152416953778 1.45365298885e-05 -0.000137880423889 +UniRef50_X6L5V7 4.78063390865e-05 1.65147512635e-05 -3.1291587823e-05 +UniRef50_UPI00046F4BB9 transcriptional regulator 0.000220981940467 2.2909487724e-05 -0.000198072452743 +UniRef50_B2V236 Flagellar hook protein FlgE 0.000631652931167 0.00190074900496 0.00126909607379 +UniRef50_G0AHQ2 TonB dependent receptor 4.28961350982e-05 0.00186985511116 0.00182695897606 +UniRef50_UPI000472C224 hypothetical protein 1.9869562248e-05 4.84201533734e-05 2.85505911254e-05 +UniRef50_UPI00035FBCBA hypothetical protein 3.68836549714e-05 1.88282219208e-05 -1.80554330506e-05 +UniRef50_V8PQC8 0.000171368740561 0.000179414666201 8.04592564e-06 +UniRef50_UPI00023781E2 acyl homoserine lactone synthase 8.48793668839e-06 1.3598673887e-05 5.11073719861e-06 +UniRef50_R7QQF1 Stackhouse genomic scaffold, scaffold_590 0.000153734525033 2.65387388015e-05 -0.000127195786231 +UniRef50_UPI0003A1834B MULTISPECIES 0.000194194385449 0.00102805543027 0.000833861044821 +UniRef50_Q9C641 Elongation factor G 1, mitochondrial 8.7461524609e-06 1.87250108941e-05 9.9788584332e-06 +UniRef50_UPI00047AAA07 beta lactamase 4.14014628745e-05 9.35891470893e-06 -3.20425481656e-05 +UniRef50_Q1CTN3 7 cyano 7 deazaguanine synthase 7.3552316648e-06 0.00152049852899 0.00151314329733 +UniRef50_T3PCK3 Transcriptional regulator family protein 1.26054585924e-05 6.1449939537e-05 4.88444809446e-05 +UniRef50_UPI0000E11B6C Hemolysin type calcium binding region 2.62992550307e-05 6.12257821973e-06 -2.0176676811e-05 +UniRef50_P18392 Sensor protein RstB 0.00331947000221 0.000311759312802 -0.00300771068941 +UniRef50_UPI0003686798 hypothetical protein 1.18589681096e-05 1.11366429858e-05 -7.223251238e-07 +UniRef50_A7IEB4 0.000127468925487 4.6006267925e-05 -8.1462657562e-05 +UniRef50_F0MK77 HAD hydrolase, IIB family 0.000345261575169 0.00263450906111 0.00228924748594 +UniRef50_UPI00035D0C83 hypothetical protein, partial 3.87200208382e-06 5.38553686665e-05 4.99833665827e-05 +UniRef50_UPI0003B7726E ABC transporter permease 1.85891441069e-05 8.50843552875e-05 6.64952111806e-05 +UniRef50_UPI0003B5ECB0 putrescine spermidine ABC transporter substrate binding protein 4.63327389952e-05 2.10230446326e-05 -2.53096943626e-05 +UniRef50_D1AJ49 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000144262161343 0.000536876708778 0.000392614547435 +UniRef50_A6LUW0 Dihydropyrimidinase 0.000522153143512 0.00179849325122 0.00127634010771 +UniRef50_P23849 Trk system potassium uptake protein TrkG 0.00297537204217 0.000424093004108 -0.00255127903806 +UniRef50_UPI000413C1F5 hypothetical protein 2.43524730173e-05 0.000136739234032 0.000112386761015 +UniRef50_UPI00036EC63D hypothetical protein 1.58246278646e-05 0.000340650364033 0.000324825736168 +UniRef50_O27465 Protein L isoaspartate methyltransferase homolog 0.00413475052348 0.000243059016624 -0.00389169150686 +UniRef50_G7M4H0 GntR domain protein 0.000535790836533 0.00137438457389 0.000838593737357 +UniRef50_UPI0003646C18 hypothetical protein 9.9569923154e-05 0.000129189679279 2.9619756125e-05 +UniRef50_UPI00035E99F6 hypothetical protein, partial 0.000954089252679 0.000194526437422 -0.000759562815257 +UniRef50_W0Z0M6 ABC transporter permease 0.000461187096749 0.0136664240062 0.0132052369095 +UniRef50_R7PVK0 Bacterial transferase hexapeptide 0.00255833705923 0.000314724730229 -0.002243612329 +UniRef50_F0TB29 Mur ligase middle domain protein 0.00234083951527 0.000737076263321 -0.00160376325195 +UniRef50_O07051 L allo threonine aldolase 8.21738197097e-06 1.09009903017e-05 2.68360833073e-06 +UniRef50_T1XRH9 Ribulose phosphate 3 epimerase 0.014711479945 0.00236184775907 -0.0123496321859 +UniRef50_A0A023S2Y3 0.000618829489919 0.0091773258282 0.00855849633828 +UniRef50_B3PM96 Uracil phosphoribosyltransferase 9.35247077329e-06 6.05640621401e-05 5.12115913668e-05 +UniRef50_UPI0003B6FCF3 sulfate permease, partial 0.000159845459402 5.54979110733e-05 -0.000104347548329 +UniRef50_Q3KK43 0.000112102810476 6.60403464128e-05 -4.60624640632e-05 +UniRef50_E6U995 Binding protein dependent transport systems inner membrane component 0.0117456894986 0.00768692955467 -0.00405875994393 +UniRef50_S9FAF7 0.000181384188751 0.000244542040453 6.3157851702e-05 +UniRef50_J9PA20 2.88428780309e-05 5.44504995258e-05 2.56076214949e-05 +UniRef50_F0L4J7 Terminase large subunit 1.52816886268e-05 7.32641926799e-06 -7.95526935881e-06 +UniRef50_UPI00047624EF DNA recombination protein RecAprecursor 0.00011287043079 0.000188898470941 7.6028040151e-05 +UniRef50_A0LGY7 Holliday junction ATP dependent DNA helicase RuvA 1.40159337328e-05 1.14111709306e-05 -2.6047628022e-06 +UniRef50_Q1GJB3 Protein NrdI 1.57258387319e-05 7.44143467281e-05 5.86885079962e-05 +UniRef50_A6FR36 8.35014631599e-05 0.000871288980447 0.000787787517287 +UniRef50_UPI0003683730 choline dehydrogenase, partial 2.42865320735e-05 8.87448009164e-06 -1.54120519819e-05 +UniRef50_A3PNW7 0.00493661758386 0.000283286608633 -0.00465333097523 +UniRef50_G8AX62 0.0132619931527 0.00378459148619 -0.00947740166651 +UniRef50_G8AX61 0.0001435134661 0.00075603260534 0.00061251913924 +UniRef50_UPI000288951C hypothetical protein 0.00022285043728 0.000402435811958 0.000179585374678 +UniRef50_Q2FJ20 Transcriptional regulator SarA 0.00467982129243 0.00362371240964 -0.00105610888279 +UniRef50_P30952 Malate synthase 1, glyoxysomal 1.07876045969e-05 7.84865810319e-06 -2.93894649371e-06 +UniRef50_U5BVT6 4.21841601109e-05 1.66278651571e-05 -2.55562949538e-05 +UniRef50_UPI00046A51CF hypothetical protein 1.04665757863e-05 3.15489913774e-05 2.10824155911e-05 +UniRef50_W4HL11 0.000184284309224 4.31173411985e-06 -0.000179972575104 +UniRef50_UPI00041A2261 hypothetical protein 6.54074356327e-05 0.00164110405488 0.00157569661925 +UniRef50_UPI000465CB11 choline dehydrogenase 2.89691893462e-05 1.35853457598e-05 -1.53838435864e-05 +UniRef50_K3Y3R8 4.34133883887e-05 0.00096304558664 0.000919632198251 +UniRef50_UPI0003D774B2 PREDICTED 6.1158071885e-06 1.1456963424e-05 5.3411562355e-06 +UniRef50_G7DEN0 0.000126933045868 7.97633307071e-05 -4.71697151609e-05 +UniRef50_UPI000303FFC3 hypothetical protein 0.000205795428692 2.90597859939e-05 -0.000176735642698 +UniRef50_T2EBD3 ATP dependent helicase HrpA 0.000433300520741 0.000138548700922 -0.000294751819819 +UniRef50_UPI0003751AA9 hypothetical protein 9.8473647344e-06 3.65590816294e-05 2.6711716895e-05 +UniRef50_UPI000174441D ATPase AAA 2 domain protein 5.61940744332e-06 1.53768649842e-05 9.75745754088e-06 +UniRef50_UPI0003B682D7 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.91845796489e-06 9.01760878804e-06 4.09915082315e-06 +UniRef50_UPI0003EFB271 hypothetical protein 0.000612139441381 0.000816543885337 0.000204404443956 +UniRef50_Q04G65 Adenylate kinase 2.18027589446e-05 1.7278852478e-05 -4.5239064666e-06 +UniRef50_UPI00047D9C2A 3 hydroxybutyryl CoA dehydrogenase 3.04837157664e-06 6.35690198217e-05 6.05206482451e-05 +UniRef50_E1W4N2 1.85081076005e-05 0.00109047705241 0.00107196894481 +UniRef50_P0A0U8 Penicillin binding protein 2 6.76979898706e-05 0.00242281598542 0.00235511799555 +UniRef50_B2S7C0 Thromboxane receptor 0.00128857402545 0.000316174464854 -0.000972399560596 +UniRef50_D5WJ02 PE PGRS family protein 2.8690382283e-06 4.11278588838e-06 1.24374766008e-06 +UniRef50_C3FB78 Transposon Tn1546 resolvase 0.00704417342713 0.00109577299846 -0.00594840042867 +UniRef50_P90597 Dihydrolipoyl dehydrogenase 0.00909333356538 0.00128845863784 -0.00780487492754 +UniRef50_G7D8J6 3.6351821613e-05 4.00939179421e-05 3.7420963291e-06 +UniRef50_M9VK36 Cobaltochelatase subunit 0.000280888951858 0.00406509453624 0.00378420558438 +UniRef50_K2G5P2 0.000157946743163 0.000297142045145 0.000139195301982 +UniRef50_UPI0003B33E99 phosphopentomutase 1.00769884913e-05 1.89219212099e-05 8.8449327186e-06 +UniRef50_UPI0003B58728 peptidase 1.29514688596e-05 8.66277331382e-05 7.36762642786e-05 +UniRef50_P65368 0.000506692602481 0.00042903153298 -7.7661069501e-05 +UniRef50_P54981 Phytoene dehydrogenase 4.01864129138e-06 5.85424014261e-06 1.83559885123e-06 +UniRef50_Q8RM03 Acetone carboxylase alpha subunit 6.09175882979e-05 0.00387753876337 0.00381662117507 +UniRef50_G7M7T5 Metallophosphoesterase 0.000141028389365 0.000216878853269 7.5850463904e-05 +UniRef50_M0DR98 Transcriptional regulator 5.23536345079e-05 4.65598535357e-05 -5.7937809722e-06 +UniRef50_U2PUQ4 5.68266512977e-06 7.87481202392e-06 2.19214689415e-06 +UniRef50_F7Y7J0 NAD dependent epimerase dehydratase 0.00673835425204 0.00150403681545 -0.00523431743659 +UniRef50_B7I4D0 Transcriptional regulator, DeoR family 0.000386504425449 0.00830031375279 0.00791380932734 +UniRef50_R9TYY8 Spore envelope assembly protein SeaA 7.23220937551e-05 0.000244400031881 0.000172077938126 +UniRef50_Q8X693 2 methylcitrate dehydratase 0.00340320085295 0.00108713551185 -0.0023160653411 +UniRef50_F2ADJ4 0.00138313035997 0.000254949673557 -0.00112818068641 +UniRef50_R5QQN1 2.54995435079e-05 3.75624999062e-05 1.20629563983e-05 +UniRef50_D4DML3 2.03329935824e-05 0.00019802893202 0.000177695938438 +UniRef50_E4CT22 9.63042046387e-05 0.00136332082892 0.00126701662428 +UniRef50_G7RE88 Outer membrane specific lipoprotein transporter subunit LolC 0.00059290993013 0.00243374318948 0.00184083325935 +UniRef50_UPI0003B33E14 threonine dehydratase, partial 2.34716605286e-05 1.42558671113e-05 -9.2157934173e-06 +UniRef50_E4WMF0 8.60873045102e-05 0.000102460966035 1.63736615248e-05 +UniRef50_UPI00036DEA69 hypothetical protein 3.42528906782e-06 4.85654044341e-06 1.43125137559e-06 +UniRef50_G0A8R2 Amino acid adenylation 0.000177007877711 0.00774729090068 0.00757028302297 +UniRef50_UPI00046677C0 dihydrolipoamide dehydrogenase 2.85647164802e-06 7.00147137054e-06 4.14499972252e-06 +UniRef50_UPI0004669176 ABC transporter permease 0.000150565574156 0.00014390675152 -6.658822636e-06 +UniRef50_UPI0004651997 hypothetical protein, partial 5.94867436361e-05 0.000123760830211 6.42740865749e-05 +UniRef50_P51649 Succinate semialdehyde dehydrogenase, mitochondrial 1.2014348092e-05 5.37934655245e-06 -6.63500153955e-06 +UniRef50_Q4L9G5 Alkaline phosphatase III 0.0222084613425 0.00397633193326 -0.0182321294092 +UniRef50_S6AK43 7.70370699852e-06 2.31953396884e-05 1.54916326899e-05 +UniRef50_W0BBW6 Acetyl coenzyme A synthetase 0.000611706170381 0.000298108859029 -0.000313597311352 +UniRef50_P24197 0.00748076639058 0.00173759247627 -0.00574317391431 +UniRef50_D3QJ12 ABC transporter ecsA 0.011552820468 0.00465031277247 -0.00690250769553 +UniRef50_A0JTB2 Homodimeric dihydroxyacetone kinase 0.000157557738449 0.00712616033919 0.00696860260074 +UniRef50_UPI000377AAAD hypothetical protein 3.82898087767e-06 1.25381998203e-05 8.70921894263e-06 +UniRef50_T1C4J3 Protein containing DUF28 4.80040828154e-05 7.17163224773e-05 2.37122396619e-05 +UniRef50_UPI00039592E8 PREDICTED 5.05038838937e-05 0.000232783355571 0.000182279471677 +UniRef50_A7HM29 Translation initiation factor IF 1 0.000618829489919 0.00081279827118 0.000193968781261 +UniRef50_P59351 UPF0229 protein PP_0396 0.00377148109125 0.000361138469877 -0.00341034262137 +UniRef50_F9P554 Conserved domain protein 4.5620194744e-05 0.000170842923096 0.000125222728352 +UniRef50_Q3IUY8 Response regulator receiver protein 0.0337235622163 0.00551672438586 -0.0282068378304 +UniRef50_UPI0002F4F600 translation elongation factor 9.3939874071e-07 1.01147992854e-05 9.17540054469e-06 +UniRef50_D0WHH7 4.8358880979e-05 0.000141733403282 9.3374522303e-05 +UniRef50_UPI0002D2633F 3 isopropylmalate dehydrogenase 1.95900133682e-05 3.27629058024e-05 1.31728924342e-05 +UniRef50_UPI0003F54605 aldehyde dehydrogenase 1.89488844077e-05 5.00370110407e-05 3.1088126633e-05 +UniRef50_B2S584 Ribulose phosphate 3 epimerase 0.00266400867833 0.000256054946702 -0.00240795373163 +UniRef50_Q8PUM8 Sodium proline symporter 0.00364758312227 0.00022576016586 -0.00342182295641 +UniRef50_Q60BY8 Type 4 fimbrial biogenesis protein PilM 0.00135499020047 0.00742300104528 0.00606801084481 +UniRef50_Q8CMK8 Membrane protein insertase YidC 1 0.0306172626198 0.0080452501302 -0.0225720124896 +UniRef50_UPI0001695299 ABC transporter like protein 2.40921666254e-05 8.68429531725e-05 6.27507865471e-05 +UniRef50_Q7UKJ8 Bifunctional purine biosynthesis protein PurH 2.64844047851e-06 1.0666131234e-05 8.01769075549e-06 +UniRef50_P0AG01 Lipopolysaccharide biosynthesis protein WzzE 0.00305385263064 0.000253490734069 -0.00280036189657 +UniRef50_UPI00026C71F4 ABC transporter ATP binding protein 4.25670285668e-06 3.95585196293e-06 -3.0085089375e-07 +UniRef50_P58083 Histidine ammonia lyase 3.26337042028e-06 1.4373723425e-05 1.11103530047e-05 +UniRef50_U7DF00 GntR family transcriptional regulator 0.00174498858837 0.000412069821193 -0.00133291876718 +UniRef50_Q8CAY6 Acetyl CoA acetyltransferase, cytosolic 0.0133477838507 0.0207103695432 0.0073625856925 +UniRef50_A3PKD3 Flagellar motor switch protein FliG 0.00745663665815 0.00260170437561 -0.00485493228254 +UniRef50_F2A6H7 0.000257851065039 8.95114064817e-05 -0.000168339658557 +UniRef50_UPI0004117F04 hypothetical protein 8.6012962144e-05 4.33820558637e-05 -4.26309062803e-05 +UniRef50_D8JDE9 Major Facilitator Superfamily protein 0.000120218467792 0.0046780585004 0.00455784003261 +UniRef50_V7ZFZ6 0.000225982271813 3.69866404465e-05 -0.000188995631367 +UniRef50_Q64737 Trifunctional purine biosynthetic protein adenosine 3 1.54385654923e-06 2.46798581498e-06 9.2412926575e-07 +UniRef50_UPI0003787A56 hypothetical protein 4.6770519013e-05 1.72593247022e-05 -2.95111943108e-05 +UniRef50_I6T745 Cell wall protein, WapE 0.00540082228613 0.00172852646243 -0.0036722958237 +UniRef50_P23388 Multiphosphoryl transfer protein 3.15628176361e-06 0.000441932789098 0.000438776507334 +UniRef50_M7D383 Transposon protein 0.00628971861234 0.002840482113 -0.00344923649934 +UniRef50_Q7UTP4 Glycerol kinase 6.97697375901e-05 0.000155400055359 8.56303177689e-05 +UniRef50_P37753 Mannose 1 phosphate guanylyltransferase 1.05861549334e-05 1.52590596126e-05 4.6729046792e-06 +UniRef50_V3L139 1.82486730767e-06 1.0281683104e-05 8.45681579633e-06 +UniRef50_M7EU96 GroEL 4.46980156721e-05 3.53736568794e-05 -9.3243587927e-06 +UniRef50_F9EHV6 Integral membrane transport protein 0.000209428952523 0.000103741231337 -0.000105687721186 +UniRef50_Q8A8M0 Glycine dehydrogenase 2.11820220981e-06 0.00302724220445 0.00302512400224 +UniRef50_X6L4K9 3.92923234993e-05 6.90149012455e-05 2.97225777462e-05 +UniRef50_Q3K9C8 Ribosomal RNA large subunit methyltransferase M 0.000526943973226 0.000719049117033 0.000192105143807 +UniRef50_D8JDM8 Dihydropteroate synthase 0.000133387275209 0.00992356387055 0.00979017659534 +UniRef50_Q88FQ7 Enoyl CoA hydratase isomerase family protein 0.0013086448302 0.000875825663483 -0.000432819166717 +UniRef50_K2JPR7 1.96068547055e-05 1.42011653263e-05 -5.4056893792e-06 +UniRef50_UPI0002557988 dihydroorotate dehydrogenase 2, partial 0.000117524137511 0.000202499387948 8.4975250437e-05 +UniRef50_A9BLG4 binding domain protein 0.000180615305666 0.0628774108913 0.0626967955856 +UniRef50_UPI00031A92CD hypothetical protein 1.02447300678e-05 2.61620079704e-05 1.59172779026e-05 +UniRef50_P11664 0.00366492134521 0.000569232459282 -0.00309568888593 +UniRef50_M4WU27 Amidohydrolase 0.000130655935614 0.000114463839216 -1.6192096398e-05 +UniRef50_B4RPU8 Lipoprotein 0.000116149535026 0.002330846218 0.00221469668297 +UniRef50_UPI00047BD119 hypothetical protein 6.12368721607e-06 3.13396619546e-05 2.52159747385e-05 +UniRef50_UPI000382255A MULTISPECIES 1.40641698285e-05 0.000306206978412 0.000292142808584 +UniRef50_A6U1W4 Segregation and condensation protein A 0.0202317503647 0.00298740575775 -0.0172443446069 +UniRef50_A7X311 0.0153648446047 0.00107635315478 -0.0142884914499 +UniRef50_UPI0003A8C9CC ArsR family transcriptional regulator 1.1215081546e-05 1.36422987263e-05 2.4272171803e-06 +UniRef50_P44975 Lipoprotein signal peptidase 1.20916049747e-05 1.71586144645e-05 5.0670094898e-06 +UniRef50_Q8D2J1 Orotidine 5 phosphate decarboxylase 2.30160379788e-05 1.2330430024e-05 -1.06856079548e-05 +UniRef50_B7UZF1 0.000288206018206 0.00149193509642 0.00120372907821 +UniRef50_Q602P0 Non canonical purine NTP pyrophosphatase 0.000824947697749 0.0011914714636 0.000366523765851 +UniRef50_UPI00047986C5 methionine aminopeptidase 6.12798423496e-05 2.34851427067e-05 -3.77946996429e-05 +UniRef50_UPI000345A820 hypothetical protein 7.75556263385e-06 5.95181092741e-06 -1.80375170644e-06 +UniRef50_P94328 Cyclic pyranopterin monophosphate synthase accessory protein 0.0122205926933 0.00116897896602 -0.0110516137273 +UniRef50_Q4A054 0.0137536410681 0.00419861891142 -0.00955502215668 +UniRef50_UPI00016C38B9 S adenosylmethionine synthetase 3.94979311068e-05 0.000214204176797 0.00017470624569 +UniRef50_A1B0J8 Extracellular solute binding protein, family 5 0.00635951168668 0.0027240595395 -0.00363545214718 +UniRef50_UPI00036C4EF7 30S ribosomal protein S2 7.60295381e-06 1.49603012688e-05 7.3573474588e-06 +UniRef50_P94427 Probable 4 aminobutyrate aminotransferase 0.000488267542428 0.00145329175297 0.000965024210542 +UniRef50_G0VNS1 PTS family mannitol porter 0.000458007796146 0.00168080938869 0.00122280159254 +UniRef50_M7A0H8 3.93391623346e-05 5.28075610996e-05 1.3468398765e-05 +UniRef50_F9P6H2 TIGR01906 like family protein 8.66905156637e-05 8.64446586345e-05 -2.458570292e-07 +UniRef50_UPI00047CB6EE serine threonine protein phosphatase 5.41039071829e-06 1.25923573661e-05 7.18196664781e-06 +UniRef50_F5X0H0 Haloacid dehalogenase like hydrolase 0.00649099431235 0.00267884446345 -0.0038121498489 +UniRef50_P77634 0.00317410621531 0.00379417421202 0.00062006799671 +UniRef50_K7S5J0 Transcriptional regulator, DeoR family 0.000865908321316 0.00319454859035 0.00232864026903 +UniRef50_C9RW76 YhgE Pip C terminal domain protein 1.90641780282e-06 3.19710204659e-06 1.29068424377e-06 +UniRef50_E8SIF5 Biotin carboxylase 0.0182747972674 0.00446490393811 -0.0138098933293 +UniRef50_UPI000255CC5F cation 0.000179013989706 0.00088573417531 0.000706720185604 +UniRef50_A0A059MIV5 Aldehyde dehydrogenase 0.000110808020209 0.0055748727915 0.00546406477129 +UniRef50_P0C0I9 UTP glucose 1 phosphate uridylyltransferase 1 0.00183361457227 0.00650551852491 0.00467190395264 +UniRef50_R4ZZZ3 Transcriptional regulator pfoR 8.48815786649e-05 0.000433262936178 0.000348381357513 +UniRef50_UPI0004755DAC hypothetical protein 6.83077195087e-05 0.00149572216293 0.00142741444342 +UniRef50_P0ADJ1 0.00297160447267 0.0009353922789 -0.00203621219377 +UniRef50_B7I3B2 2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component 0.000152622367462 0.00942516105833 0.00927253869087 +UniRef50_I4X0N6 Lysophospholipase 8.86303866825e-06 2.47853340724e-05 1.59222954042e-05 +UniRef50_H6LRG1 0.011931248862 0.000988863834058 -0.0109423850279 +UniRef50_UPI00036A88A6 hypothetical protein 3.21468966936e-05 1.4648778581e-05 -1.74981181126e-05 +UniRef50_A5UKK0 Collagenase, peptidase family U32 0.00198421124059 0.000886955923322 -0.00109725531727 +UniRef50_UPI0001FFE9A7 binding protein dependent transport systems inner membrane component 0.00022167264273 3.05591852278e-05 -0.000191113457502 +UniRef50_UPI000360AEA9 hypothetical protein 4.05601629201e-05 1.52914929706e-05 -2.52686699495e-05 +UniRef50_UPI00036C7365 hypothetical protein 0.000247839742973 0.000407369078285 0.000159529335312 +UniRef50_C6UY37 6.56731169532e-05 2.73604426853e-05 -3.83126742679e-05 +UniRef50_D9RMN6 Phage protein 0.00757295099353 0.00120785398312 -0.00636509701041 +UniRef50_Q8FMD0 Peptide deformylase 2 1.11834005135e-05 5.74261421105e-05 4.6242741597e-05 +UniRef50_Q931R7 Conserved virulence factor C 0.00818590250348 0.00117306374711 -0.00701283875637 +UniRef50_UPI0003FC08D1 serine dehydratase 9.31748550018e-06 0.000194665981511 0.000185348496011 +UniRef50_B8DLQ2 ABC transporter related 0.000161318798655 0.00227133528618 0.00211001648753 +UniRef50_F0TB22 H4MPT linked C1 transfer pathway protein 0.00612974389826 0.000398352432596 -0.00573139146566 +UniRef50_UPI0004770BE9 hypothetical protein 0.000105116539098 1.67921480033e-05 -8.83243910947e-05 +UniRef50_UPI0003B3248F methionyl tRNA synthetase 8.00179509853e-06 1.67372911062e-05 8.73549600767e-06 +UniRef50_UPI0003959E9D CDP 6 deoxy delta 3,4 glucoseen reductase 1.19939047684e-05 1.46360036764e-05 2.642098908e-06 +UniRef50_Q5HLS8 0.0015338619942 0.0141198898236 0.0125860278294 +UniRef50_Q49XT6 0.0100344504598 0.00160368542209 -0.00843076503771 +UniRef50_S1E292 PTS system, mannose fructose sorbose family, IID component 0.00215449233377 0.000914029360892 -0.00124046297288 +UniRef50_A0A030WUA6 3 hydroxyisobutyrate dehydrogenase 0.00292566960494 0.000566154320492 -0.00235951528445 +UniRef50_Q399M3 Macrolide export ATP binding permease protein MacB 2.28288406612e-06 6.35418085373e-06 4.07129678761e-06 +UniRef50_UPI0003C3A6B9 PREDICTED 7.13046547312e-06 6.88613858649e-05 6.17309203918e-05 +UniRef50_Q3IW34 0.0202136797663 0.00266052098718 -0.0175531587791 +UniRef50_X7EB18 WGR domain containing protein 4.99699233263e-05 3.15722446265e-05 -1.83976786998e-05 +UniRef50_Q3IW32 0.00565728960708 0.0163244779591 0.010667188352 +UniRef50_UPI00047D4CFB trehalose phosphatase 3.02267771686e-05 2.33227303313e-05 -6.9040468373e-06 +UniRef50_UPI0003642130 hypothetical protein 3.57683520896e-05 1.12531063733e-05 -2.45152457163e-05 +UniRef50_UPI0003692D13 hypothetical protein 2.90143361647e-05 1.15315225582e-05 -1.74828136065e-05 +UniRef50_W4LSH7 2.5014264115e-05 7.63173765068e-05 5.13031123918e-05 +UniRef50_E4NIV5 4.80253972258e-05 1.78573782578e-05 -3.0168018968e-05 +UniRef50_UPI00035CB116 hypothetical protein 1.16159131294e-05 0.000419661180619 0.00040804526749 +UniRef50_A0A011PWL1 Elongation factor G 5.79320070536e-06 2.90774461161e-05 2.32842454107e-05 +UniRef50_V4X579 2.16588274327e-05 0.000357626091479 0.000335967264046 +UniRef50_UPI00045EC544 hypothetical protein 6.24658227937e-06 2.97256453341e-05 2.34790630547e-05 +UniRef50_UPI0003463109 AraC family transcriptional regulator 9.90341988625e-06 3.64841911498e-05 2.65807712636e-05 +UniRef50_I3TU69 Lincomycin resistance protein 0.000114853749147 0.000460873039925 0.000346019290778 +UniRef50_E6Q6J2 Thioesterase superfamily 1.70514488765e-05 0.00116597676805 0.00114892531917 +UniRef50_Q4ZXL0 Alginate lyase 0.00020665566622 0.000548159853892 0.000341504187672 +UniRef50_S0AG26 0.000144187089322 0.00270534883781 0.00256116174849 +UniRef50_V4QY51 Transcriptional regulator 7.81674024414e-06 1.51687093567e-05 7.35196911256e-06 +UniRef50_L7EAU8 2.14717616161e-05 9.59208722882e-06 -1.18796743873e-05 +UniRef50_Q9X806 Ubiquinol cytochrome c reductase cytochrome b subunit 0.00023418630138 0.00665526963512 0.00642108333374 +UniRef50_Q5NLZ4 Anhydro N acetylmuramic acid kinase 4.84956762504e-06 2.49588508401e-05 2.01092832151e-05 +UniRef50_H0TL85 5.06400982369e-05 7.78075326054e-05 2.71674343685e-05 +UniRef50_U5MPM1 Methyl accepting chemotaxis protein 0.000348985323919 0.00097624178303 0.000627256459111 +UniRef50_Q4L667 Phosphatidylglycerol lysyltransferase 0.0129613755783 0.00403590980428 -0.00892546577402 +UniRef50_UPI0001FFE90B alcohol dehydrogenase 5.41216380774e-06 0.000151557469514 0.000146145305706 +UniRef50_P77439 Multiphosphoryl transfer protein 1 0.00380937836703 0.000590373526274 -0.00321900484076 +UniRef50_A9AF70 Urease subunit gamma 0.00300426887958 0.00365970109937 0.00065543221979 +UniRef50_A5UKH6 0.00787919223545 0.00029000003783 -0.00758919219762 +UniRef50_UPI00036A7FB4 hypothetical protein 1.73216097816e-05 2.14702300087e-05 4.1486202271e-06 +UniRef50_K2AEY0 0.000112053527253 7.88618524907e-06 -0.000104167342004 +UniRef50_UPI0003DF5EC3 PREDICTED 5.95232048304e-06 1.3069608062e-05 7.11728757896e-06 +UniRef50_F2TZS1 8.39066176864e-05 3.8484569641e-05 -4.54220480454e-05 +UniRef50_Q1CW26 0.000143827290066 0.000192286525626 4.845923556e-05 +UniRef50_I1B3F9 0.000506185379064 0.000322163678398 -0.000184021700666 +UniRef50_A8AVP5 ABC transporter, permease protein 0.005865556063 0.00323857698173 -0.00262697908127 +UniRef50_A8LL26 tRNA pseudouridine synthase B 0.000875338637374 0.000208950498955 -0.000666388138419 +UniRef50_Q5HKS5 0.00131681158902 0.0012478170642 -6.899452482e-05 +UniRef50_Q48FV2 Membrane protein, putative 0.00186822329162 0.000405458803526 -0.00146276448809 +UniRef50_I3UWL7 LysR family transcriptional regulator 0.00182515382211 0.000819290939821 -0.00100586288229 +UniRef50_B0VV20 p aminobenzoate synthetase 0.000253562107799 0.00727990780416 0.00702634569636 +UniRef50_C7CBT9 RepC like protein 0.000127408359687 4.17797043536e-05 -8.56286553334e-05 +UniRef50_P0AG19 N5 carboxyaminoimidazole ribonucleotide mutase 0.00123839534974 0.0152300344254 0.0139916390757 +UniRef50_UPI0003B429F7 transposase 9.21350989232e-05 9.55114349783e-05 3.3763360551e-06 +UniRef50_UPI0003B6F95F tRNA delta isopentenylpyrophosphate transferase 2.42338823814e-05 1.18214813797e-05 -1.24124010017e-05 +UniRef50_P65234 Ribose phosphate pyrophosphokinase 0.0031140583286 0.00652343819446 0.00340937986586 +UniRef50_D6CUH0 7.04385345711e-06 1.08897769728e-05 3.84592351569e-06 +UniRef50_A4WSC8 OmpA MotB domain protein 0.00110298361822 0.000162559654243 -0.000940423963977 +UniRef50_G9ADV3 1.36230754687e-05 7.53426073761e-06 -6.08881473109e-06 +UniRef50_G9ADV1 6.3409627532e-05 5.24159310503e-05 -1.09936964817e-05 +UniRef50_Q51952 OrfD 0.0803621808219 0.00129590016625 -0.0790662806556 +UniRef50_S4HRH5 8.58402116946e-05 7.602784505e-05 -9.8123666446e-06 +UniRef50_O06994 Oligo 1,6 glucosidase 1 0.0186128280921 0.0120117225731 -0.006601105519 +UniRef50_M5J6F3 1.99669152767e-05 5.04478664556e-05 3.04809511789e-05 +UniRef50_A9H974 7.94324385985e-05 7.09255150584e-05 -8.5069235401e-06 +UniRef50_A6LZS6 Metallophosphoesterase 0.000249574818357 0.00178454099476 0.0015349661764 +UniRef50_Q1NCH4 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 3.65952934849e-05 2.18751897445e-05 -1.47201037404e-05 +UniRef50_UPI0004676B57 GntR family transcriptional regulator 1.41688470632e-05 2.28531436356e-05 8.6842965724e-06 +UniRef50_L5RMF7 3.55910175748e-05 0.000680251716581 0.000644660699006 +UniRef50_P55253 Glucose 1 phosphate thymidylyltransferase 0.0433322218893 0.090252667211 0.0469204453217 +UniRef50_F3SW08 Conserved domain protein 0.000724802656383 0.00133225581291 0.000607453156527 +UniRef50_Q6GJ34 Putative N acetylmannosaminyltransferase 0.0088499282254 0.00198945301636 -0.00686047520904 +UniRef50_Q67SJ2 Valine tRNA ligase 6.72273002959e-06 3.00581620275e-06 -3.71691382684e-06 +UniRef50_A0A038FZN0 3.11239007439e-05 0.000570859183848 0.000539735283104 +UniRef50_A6LQR2 0.000226463054397 0.000707069528623 0.000480606474226 +UniRef50_Q9RV19 0.0012969221676 0.030597960872 0.0293010387044 +UniRef50_J0F0U1 0.00192766179157 0.00107387892798 -0.00085378286359 +UniRef50_B9J9V0 ABC transporter 0.00548141280069 0.00148845210052 -0.00399296070017 +UniRef50_UPI000379B10E hypothetical protein 1.82252779673e-05 0.000153731357225 0.000135506079258 +UniRef50_Q8VYV7 3 dehydroquinate synthase, chloroplastic 5.46293002982e-06 4.70395537596e-05 4.15766237298e-05 +UniRef50_U3QUQ4 Chemotaxis protein CheA 0.000644404625597 0.000173951997405 -0.000470452628192 +UniRef50_I4TNI4 0.00191810352224 0.000239122838212 -0.00167898068403 +UniRef50_A6LQ19 Drug resistance transporter, EmrB QacA subfamily 0.000773222285657 0.000849485418439 7.6263132782e-05 +UniRef50_Q5HQY3 0.0212349903896 0.00471183545339 -0.0165231549362 +UniRef50_P16219 Short chain specific acyl CoA dehydrogenase, mitochondrial 1.16599677488e-05 4.50472841041e-05 3.33873163553e-05 +UniRef50_B9KX63 0.00251657325901 0.00389475654678 0.00137818328777 +UniRef50_B9KX60 0.00210896850078 0.00043652670916 -0.00167244179162 +UniRef50_A8Z124 0.014902786921 0.00421378114946 -0.0106890057715 +UniRef50_B9KX64 0.00663373984434 0.00115538823963 -0.00547835160471 +UniRef50_UPI00037397A9 hypothetical protein 8.81097825056e-06 1.79189300496e-05 9.10795179904e-06 +UniRef50_UPI0004787AB2 transcriptional regulator 9.86840847602e-06 1.07017164835e-05 8.3330800748e-07 +UniRef50_C1CYZ3 0.000245120771981 0.0752036690738 0.0749585483018 +UniRef50_Q0SPR1 Cysteine desulfurase family protein 0.000102950724233 0.0017531927813 0.00165024205707 +UniRef50_Q16A99 tRNA 2 thiocytidine biosynthesis protein TtcA 0.00990342737699 0.00165055914397 -0.00825286823302 +UniRef50_F7ZKB0 1.26222010548e-05 1.50871173378e-05 2.464916283e-06 +UniRef50_W5X4N7 4.24013550963e-05 0.000100102394049 5.77010389527e-05 +UniRef50_Q7VTF7 Nicotinate phosphoribosyltransferase 0.000534859418552 0.00799130141458 0.00745644199603 +UniRef50_P56074 Delta aminolevulinic acid dehydratase 0.000183086630851 0.00348835491908 0.00330526828823 +UniRef50_H1S081 9.75586325411e-05 1.11973097843e-05 -8.63613227568e-05 +UniRef50_A7ZTW7 HTH type transcriptional regulator HdfR 0.00229853168731 0.000910583016323 -0.00138794867099 +UniRef50_UPI000248D3FD Fosmidomycin resistance protein 5.4399942601e-05 2.34977302149e-05 -3.09022123861e-05 +UniRef50_UPI00047C911F hyalin 2.98190065396e-06 5.85276420287e-06 2.87086354891e-06 +UniRef50_M9RZD9 ABC transporter permease 0.00087313797132 0.000490715691874 -0.000382422279446 +UniRef50_UPI000237DA3D hypothetical protein 6.22347876658e-06 0.000164733338894 0.000158509860127 +UniRef50_P25666 Protein HtrL 0.00164795945908 0.000253128604458 -0.00139483085462 +UniRef50_P42506 0.0116393218358 0.00235409634312 -0.00928522549268 +UniRef50_E6C5P3 Glycosyl hydrolase family 20, catalytic domain protein 0.000111034566433 0.00430662919825 0.00419559463182 +UniRef50_V1BIM5 0.00169023577097 0.000507143020717 -0.00118309275025 +UniRef50_UPI00032A718B PREDICTED 6.31740236157e-06 1.40419101583e-05 7.72450779673e-06 +UniRef50_UPI000464A259 hypothetical protein 0.000158919734548 6.41944385336e-05 -9.47252960144e-05 +UniRef50_A7ZTA0 Glyoxylate hydroxypyruvate reductase B 0.00287908213818 0.000191971856025 -0.00268711028215 +UniRef50_A3PIF6 0.000974229981897 0.000481360100081 -0.000492869881816 +UniRef50_UPI0003B59BB8 isopentenyl diphosphate delta isomerase 5.30712569158e-05 9.18284209925e-06 -4.38884148166e-05 +UniRef50_B3E0I7 50S ribosomal protein L2 0.00307779278476 0.00021271311299 -0.00286507967177 +UniRef50_UPI0003F9D1F7 anthranilate synthase component I 4.00621627966e-06 5.21914561507e-06 1.21292933541e-06 +UniRef50_A6M0E6 Signal transduction histidine kinase regulating citrate malate metabolism 0.000425056161391 0.00212187108621 0.00169681492482 +UniRef50_A5UMV1 Glycosyltransferase, GT2 family 0.002073329031 0.000367054108473 -0.00170627492253 +UniRef50_Q3HKG1 Mechanosensitive ion channel protein 0.00215463175044 0.000733136232408 -0.00142149551803 +UniRef50_B8JAD8 Nucleoside diphosphate kinase 0.01623942303 4.97065662658e-05 -0.0161897164637 +UniRef50_V5VIG2 Tellurite resistance protein 0.00020008091282 0.00586161167725 0.00566153076443 +UniRef50_O26800 Ketoisovalerate oxidoreductase subunit VorB 0.00312976959527 0.000723436511222 -0.00240633308405 +UniRef50_Q2G718 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.0035720013e-05 8.29626809761e-06 -1.73945191539e-06 +UniRef50_A6LPK7 Sporulation stage II, protein E 9.39799142401e-05 0.000936331511773 0.000842351597533 +UniRef50_UPI00037D5D4D hypothetical protein 0.000193458151422 5.719846723e-05 -0.000136259684192 +UniRef50_UPI0003A28CDF competence protein 1.82552004738e-05 4.0218672547e-05 2.19634720732e-05 +UniRef50_UPI0003959061 sensor histidine kinase 6.07290774423e-06 8.58761235014e-06 2.51470460591e-06 +UniRef50_U5VXD2 4.65387010281e-05 3.67866106293e-05 -9.7520903988e-06 +UniRef50_B9E115 Phosphopentomutase 5.84714586153e-06 6.79744815103e-06 9.503022895e-07 +UniRef50_C0QXM0 Pyrrolidone carboxylate peptidase 0.00953215749912 0.00192519671089 -0.00760696078823 +UniRef50_A3L8X2 0.00107644150169 0.000238800570243 -0.000837640931447 +UniRef50_P39343 HTH type transcriptional regulator IdnR 0.00351151043142 0.000181733357036 -0.00332977707438 +UniRef50_A6LUQ9 0.000912714625129 0.000564082410423 -0.000348632214706 +UniRef50_A3L8X4 0.000219130625543 0.000302791912172 8.3661286629e-05 +UniRef50_B9E9D0 0.00738174946216 0.000324523851863 -0.0070572256103 +UniRef50_B6ISP7 Phosphopantetheine adenylyltransferase 0.0075020790703 0.00133225581291 -0.00616982325739 +UniRef50_A6LUQ6 0.00184695087293 0.00188479104794 3.784017501e-05 +UniRef50_E8PCN1 FilB 0.000205901448467 0.0137702511351 0.0135643496866 +UniRef50_UPI000348A8A8 hypothetical protein 3.66627232824e-05 4.29288134592e-05 6.2660901768e-06 +UniRef50_M5SVU5 Beta Ig H3 fasciclin 6.84296448596e-05 1.23422603285e-05 -5.60873845311e-05 +UniRef50_L4FI59 Sensor protein torS 0.000181768029127 7.87861374395e-05 -0.000102981891688 +UniRef50_UPI0002E655C1 hypothetical protein 4.11056816367e-05 1.21018836167e-05 -2.900379802e-05 +UniRef50_Q1C665 Penicillin insensitive murein endopeptidase 0.0031826594036 0.00131541633836 -0.00186724306524 +UniRef50_Q8K928 Oxygen independent coproporphyrinogen III oxidase like protein BUsg_532 7.47242541377e-06 5.39038867678e-05 4.6431461354e-05 +UniRef50_A9M4C4 UPF0276 protein NMCC_2101 0.000986446572407 0.00184624887924 0.000859802306833 +UniRef50_UPI00036BDC09 hypothetical protein 1.60127931734e-05 2.54383906716e-05 9.4255974982e-06 +UniRef50_D6Z4R6 Phosphoenolpyruvate phosphomutase 0.000505075352485 0.000485253571518 -1.9821780967e-05 +UniRef50_Q1JFX3 0.00592348501943 0.00112425599012 -0.00479922902931 +UniRef50_UPI0004637872 hypothetical protein, partial 1.32088708705e-05 8.78691872519e-05 7.46603163814e-05 +UniRef50_G8V105 Penicillinase repressor family protein 0.026710534346 0.00318860756714 -0.0235219267789 +UniRef50_UPI00037E6C33 hypothetical protein 0.0014976884435 0.000216136244069 -0.00128155219943 +UniRef50_UPI000411C3F9 hypothetical protein 1.41758072518e-06 2.00765848507e-06 5.9007775989e-07 +UniRef50_Q9JY91 L asparaginase I 0.000247802618498 0.00273094464981 0.00248314203131 +UniRef50_UPI0004739998 hypothetical protein 5.12211420014e-06 1.53292263124e-05 1.02071121123e-05 +UniRef50_B1Y2J2 1.55233360863e-05 7.29637349953e-05 5.7440398909e-05 +UniRef50_P0ACY2 Putative NADH nitroreductase YdjA 0.00120703393552 0.000971798201212 -0.000235235734308 +UniRef50_UPI00037F4C0B hypothetical protein 3.06046178509e-05 0.000573065508672 0.000542460890821 +UniRef50_Q2NEQ0 Histidinol phosphate aminotransferase 0.00384302736763 0.000362576826262 -0.00348045054137 +UniRef50_Q9RRA6 Iron ABC transporter, periplasmic substrate binding protein, putative 0.000267277883954 0.0504986942049 0.0502314163209 +UniRef50_I3BQN9 6.18886778216e-06 0.000198904042376 0.000192715174594 +UniRef50_UPI00039CCA94 3 hydroxybutyryl CoA dehydratase 5.37954624491e-05 2.23840893073e-05 -3.14113731418e-05 +UniRef50_Q7NIR9 Phosphoribosylformylglycinamidine synthase 2 2.93018704473e-05 6.95259759575e-06 -2.23492728516e-05 +UniRef50_UPI0001FFE446 choline dehydrogenase 3.96035318496e-05 1.0923185124e-05 -2.86803467256e-05 +UniRef50_UPI00036ECF80 30S ribosomal protein S17 3.68128293514e-05 0.000320098707994 0.000283285878643 +UniRef50_A5IUE2 DUTPase 0.0190849074093 0.00135308466745 -0.0177318227418 +UniRef50_A6LV78 NMT1 THI5 like protein 0.000184740288181 0.000913421176036 0.000728680887855 +UniRef50_UPI0004636D79 hypothetical protein 4.2034312514e-05 2.88838686382e-06 -3.91459256502e-05 +UniRef50_L6YPP4 Autoinducer 2 aldolase 0.000712348600423 0.000823713950446 0.000111365350023 +UniRef50_A0A034W5P4 9.77963011321e-06 3.11520318775e-06 -6.66442692546e-06 +UniRef50_W8TZV3 2.00409303853e-05 0.000143204238244 0.000123163307859 +UniRef50_UPI0003607ABA heavy metal transporter CzcA 1.44982787346e-06 6.64896939681e-06 5.19914152335e-06 +UniRef50_UPI0003FD356F hypothetical protein 4.20892958171e-05 0.000105859572722 6.37702769049e-05 +UniRef50_B9TAE6 Glycine betaine L proline transport system permease protein proW, putative 0.000912140868539 0.000723824306453 -0.000188316562086 +UniRef50_T1E861 8.30410184796e-05 9.40941171797e-05 1.10530987001e-05 +UniRef50_Q8CS24 0.0254173995408 0.00427685599661 -0.0211405435442 +UniRef50_Q8FU18 Glutamyl Q tRNA synthetase 6.2466078163e-06 0.000863558533816 0.000857311926 +UniRef50_Q0VT33 0.00148551359392 0.000305141858582 -0.00118037173534 +UniRef50_I6UMD2 Acetyltransferase 0.000197636643381 0.00155076714728 0.0013531305039 +UniRef50_UPI00036CF3D9 formate dehydrogenase subunit alpha 0.00147062386559 0.000310771287926 -0.00115985257766 +UniRef50_Q87DM8 Acetylornithine aminotransferase 2.50158322521e-05 4.91354403134e-05 2.41196080613e-05 +UniRef50_UPI00017455B0 PAS PAC sensor hybrid histidine kinase 2.09053003317e-06 3.21310866679e-05 3.00405566347e-05 +UniRef50_H9UU02 Ribonucleoside diphosphage reductase 1, beta subunit, B2 0.000672408161445 5.43060465467e-05 -0.000618102114898 +UniRef50_P63884 N acetylmuramoyl L alanine amidase AmiC 0.00250295220253 0.00072849487112 -0.00177445733141 +UniRef50_Q3J1R2 Alpha keto acid binding periplasmic protein TakP 0.0109176667589 0.00125798373576 -0.00965968302314 +UniRef50_UPI0004785A72 dihydroxy acid dehydratase 3.84069397647e-05 3.22457080058e-05 -6.1612317589e-06 +UniRef50_UPI0003D742A7 PREDICTED 0.000137093695711 0.000559842095153 0.000422748399442 +UniRef50_B4RR58 Pilin glycosyl transferase A 0.00070659716582 0.00348412216106 0.00277752499524 +UniRef50_P9WG25 Transketolase 0.000133854593954 0.00534232299884 0.00520846840489 +UniRef50_F2D6B6 Predicted protein 0.00124756666298 0.000126758816316 -0.00112080784666 +UniRef50_C7U7G3 Predicted protein 4.98192571096e-06 1.7804639756e-05 1.2822714045e-05 +UniRef50_B9KS15 CheW protein 0.0166947594762 0.000402704597989 -0.0162920548782 +UniRef50_UPI00036E0B46 hypothetical protein 1.26163480025e-05 2.7006836481e-05 1.43904884785e-05 +UniRef50_Q87VF3 Lipid A export ATP binding permease protein MsbA 0.000314977212943 7.31768993062e-06 -0.000307659523012 +UniRef50_S4X152 0.00533571922682 0.00076705637713 -0.00456866284969 +UniRef50_S5YPY4 Branched chain amino acid transporter AzlC 3.75480660672e-05 3.74237190632e-05 -1.24347004e-07 +UniRef50_UPI00047E9A5D hypothetical protein 4.26052047327e-05 0.000102351786717 5.97465819843e-05 +UniRef50_A5WDF2 Major facilitator superfamily MFS_1 8.84732786372e-05 0.00655633725068 0.00646786397204 +UniRef50_UPI00047CAA5D cobyrinic acid a c diamide adenosyltransferase 1.85082170638e-05 0.000160425043412 0.000141916826348 +UniRef50_H5HII5 Protein traU 0.000296961518224 5.4275353248e-05 -0.000242686164976 +UniRef50_R1BAS7 7.90054052557e-06 2.15804317844e-05 1.36798912588e-05 +UniRef50_Q8DTW5 0.0043384912806 0.00142505874909 -0.00291343253151 +UniRef50_E4N7W5 6.20462688603e-05 0.000174932016995 0.000112885748135 +UniRef50_Q8DTW1 0.00703521644149 0.00172811565431 -0.00530710078718 +UniRef50_Q8DTW2 0.00430973285659 0.00417333399317 -0.00013639886342 +UniRef50_UPI00040D5ECC lysophospholipase 1.27992446865e-06 1.10697934957e-05 9.78986902705e-06 +UniRef50_E4BFH6 3.33357178633e-05 0.000134550394124 0.000101214676261 +UniRef50_R6S4R3 NADH 0.000375723627864 0.00200011121956 0.0016243875917 +UniRef50_Z5SAF9 1.66957544063e-05 2.75940587472e-05 1.08983043409e-05 +UniRef50_Q3IVP4 0.00131866465944 0.000299813913899 -0.00101885074554 +UniRef50_Q3IVP3 9.54042738135e-05 0.00108913158329 0.000993727309477 +UniRef50_R1DLE7 1.3648680015e-05 4.91223743389e-06 -8.73644258111e-06 +UniRef50_P44093 0.00384054017032 0.00154608898905 -0.00229445118127 +UniRef50_UPI0003457BAD hypothetical protein 2.89657668431e-06 1.53421510666e-06 -1.36236157765e-06 +UniRef50_Q73LF4 1 deoxy D xylulose 5 phosphate synthase 1.96213096368e-06 2.82392323747e-05 2.6277101411e-05 +UniRef50_Q5HNB3 O succinylbenzoic acid synthetase, putative 0.00846707961907 0.00268614893446 -0.00578093068461 +UniRef50_UPI0003C1B3E9 7.21839965648e-05 0.00010870798479 3.65239882252e-05 +UniRef50_Q8PYJ4 Methionine tRNA ligase 3.55761589789e-06 3.14218525922e-06 -4.1543063867e-07 +UniRef50_A8PM40 Transcriptional repressor NrdR 4.45241452331e-05 0.000142221993944 9.76978487109e-05 +UniRef50_A6LZR8 0.000454804230061 0.00186399702382 0.00140919279376 +UniRef50_P20372 Protocatechuate 3,4 dioxygenase beta chain 0.000160404811127 0.00320678635244 0.00304638154131 +UniRef50_K0S5L3 1.5388682191e-06 0.000143508189513 0.000141969321294 +UniRef50_UPI000248D061 iron hydroxamate transporter permease subunit, partial 1.11848160293e-05 6.42916853266e-05 5.31068692973e-05 +UniRef50_K2HGX5 2.57671894845e-05 8.66819103699e-06 -1.70989984475e-05 +UniRef50_A3PL72 0.0079256813433 0.000798709178294 -0.00712697216501 +UniRef50_Q8CPK5 Cell division protein FtsA 0.0214895024156 0.00412589127887 -0.0173636111367 +UniRef50_A0A011NNA2 0.000155787077998 0.000304872081262 0.000149085003264 +UniRef50_C4K9K2 6.13665671584e-05 5.55764024261e-05 -5.7901647323e-06 +UniRef50_A4WYS1 6.07286895414e-05 7.42635727607e-05 1.35348832193e-05 +UniRef50_C6S8M1 0.000100306285793 0.00244061111133 0.00234030482554 +UniRef50_P54457 Ribosomal silencing factor RsfS 0.00150892885602 0.00159882903855 8.990018253e-05 +UniRef50_UPI0003B3EB5D pyruvate phosphate dikinase 3.36529323403e-06 1.13646148899e-05 7.99932165587e-06 +UniRef50_V4JG08 1.67186635101e-05 1.71693054904e-05 4.506419803e-07 +UniRef50_UPI00021917AB DNA processing protein DprA 4.7265739473e-05 6.51598927318e-05 1.78941532588e-05 +UniRef50_UPI0002E59390 hypothetical protein 0.000159651351157 5.66465648891e-05 -0.000103004786268 +UniRef50_UPI000255B733 peroxiredoxin, ohr subfamily protein 2.11517888678e-05 0.000244477454495 0.000223325665627 +UniRef50_Q49V41 Putative TrmH family tRNA rRNA methyltransferase 0.0117412369192 0.0020276976335 -0.0097135392857 +UniRef50_D0K0C5 0.0001554777905 0.00577364418242 0.00561816639192 +UniRef50_V6KIY8 5.37901934053e-05 0.000275498146057 0.000221707952652 +UniRef50_UPI0003C1B40C PREDICTED 5.52857669296e-05 0.000118814909326 6.35291423964e-05 +UniRef50_P37624 0.00219563449468 0.00072817149442 -0.00146746300026 +UniRef50_F8JKY1 7.21791203027e-05 8.65269631344e-05 1.43478428317e-05 +UniRef50_C6SPT2 Predicted periplasmic or secreted lipoprotein 0.000686338161548 0.00114316143946 0.000456823277912 +UniRef50_Q034G9 6 phospho alpha glucosidase 2 0.000688478735805 0.00291371430768 0.00222523557187 +UniRef50_G4LBR0 MFS family transporter 0.000192104828933 0.000303678489364 0.000111573660431 +UniRef50_Q81L15 Translation initiation factor IF 3 0.0376830528669 0.0105168985609 -0.027166154306 +UniRef50_D8UHW0 5.09360354029e-06 6.341641821e-05 5.83228146697e-05 +UniRef50_D5G934 Whole genome shotgun sequence assembly, scaffold_16, strain Mel28 1.14703670609e-05 3.31466799726e-05 2.16763129117e-05 +UniRef50_W5XAK2 Citrate synthase 1.30046330728e-05 1.33029115607e-05 2.982784879e-07 +UniRef50_A8YTF9 Thymidylate kinase 0.0141705942381 0.00328817902601 -0.0108824152121 +UniRef50_UPI00034584B5 hypothetical protein 8.53576953858e-06 7.58682890665e-06 -9.4894063193e-07 +UniRef50_Q8XA47 Sensor histidine kinase QseE 0.00184437615146 0.00093786920799 -0.00090650694347 +UniRef50_S6AZJ1 0.00567876953349 0.000948372930447 -0.00473039660304 +UniRef50_UPI0003B76F12 glycerol kinase 7.33276056184e-06 5.02568536615e-06 -2.30707519569e-06 +UniRef50_N9ILP1 7.58003993635e-05 0.000371388028466 0.000295587629103 +UniRef50_Q6D178 23S rRNA C(5)) methyltransferase RlmD 0.00107746059401 0.000530248027869 -0.000547212566141 +UniRef50_B2UW91 Dihydroorotase 0.000438351382792 0.00138615120498 0.000947799822188 +UniRef50_B9MRD1 4 hydroxy tetrahydrodipicolinate synthase 7.25765759157e-06 0.00201076385792 0.00200350620033 +UniRef50_UPI00016A52E2 oxidoreductase, FAD binding protein, partial 5.87553929272e-05 2.53124701742e-05 -3.3442922753e-05 +UniRef50_K8D6Q9 Cell division protein FtsK 0.000819515787499 0.000137791942374 -0.000681723845125 +UniRef50_W1JGR6 1.82984188069e-05 5.17296432598e-05 3.34312244529e-05 +UniRef50_UPI00023785BE ABC transporter like protein 0.000273685323972 4.84809481384e-05 -0.000225204375834 +UniRef50_UPI00040687FC hypothetical protein 1.56891048985e-05 4.14746100136e-06 -1.15416438971e-05 +UniRef50_D3E3V9 Transporter MIP family 0.00217910284444 0.000749274055236 -0.0014298287892 +UniRef50_A5UK88 Adhesin like protein 0.00333720249728 0.000784041984177 -0.0025531605131 +UniRef50_A6M085 GCN5 related N acetyltransferase 0.00026321151084 0.000294825329643 3.1613818803e-05 +UniRef50_UPI00036FB667 hypothetical protein 2.43874978245e-05 1.44167649547e-05 -9.9707328698e-06 +UniRef50_Q6FCW7 Phosphate import ATP binding protein PstB 0.000267046584839 0.00555978468587 0.00529273810103 +UniRef50_O34364 Probable oligo 1,6 glucosidase 2 0.0133995903357 0.000947011059783 -0.0124525792759 +UniRef50_Q3JSX2 7.45267145118e-05 0.000173602243418 9.90755289062e-05 +UniRef50_Q3JSX0 6.76498187892e-05 1.09977232258e-05 -5.66520955634e-05 +UniRef50_UPI00020D97AB excinuclease ABC subunit B 0.000324017679384 0.00157794236416 0.00125392468478 +UniRef50_A1B092 0.0117466833514 0.00235156937156 -0.00939511397984 +UniRef50_F0QGI7 0.000276784193798 0.00492815662395 0.00465137243015 +UniRef50_UPI0003B3B830 2 oxoglutarate dehydrogenase E1, partial 3.65918519225e-06 8.22382597662e-06 4.56464078437e-06 +UniRef50_Q81V80 Putative pyridoxal phosphate dependent acyltransferase 0.0111030010846 0.00199959273995 -0.00910340834465 +UniRef50_Q7VK98 Methionyl tRNA formyltransferase 7.05126010592e-06 8.95076429479e-06 1.89950418887e-06 +UniRef50_UPI00034B192C ATP binding protein 0.000159392186204 3.38241088112e-05 -0.000125568077393 +UniRef50_Q9K0G6 Non canonical purine NTP pyrophosphatase 5.86249927365e-06 0.00424137357815 0.00423551107888 +UniRef50_M9VK41 KHG KDPG aldolase 0.000430592382719 0.00266872869636 0.00223813631364 +UniRef50_Q3D1H7 0.00518009571257 0.00112802489495 -0.00405207081762 +UniRef50_B1AJ73 Urease subunit alpha 3.44480342495e-06 1.90109252824e-05 1.55661218574e-05 +UniRef50_Q5P7J7 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.41446079896e-05 0.00270908324371 0.00269493863572 +UniRef50_U1VIQ4 0.000132905497161 0.00411896902597 0.00398606352881 +UniRef50_W5XFT3 General secretion pathway protein G 1.07393457727e-06 2.6248664966e-05 2.51747303887e-05 +UniRef50_Q9M5K2 Dihydrolipoyl dehydrogenase 2, mitochondrial 2.64856068779e-05 6.9621563667e-05 4.31359567891e-05 +UniRef50_UPI00035E4A51 hypothetical protein 8.85167641172e-06 0.000221962711537 0.000213111035125 +UniRef50_Q4FNA6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.20724210519e-06 8.85000584375e-06 2.64276373856e-06 +UniRef50_UPI00036C5D7B hypothetical protein 7.15576298168e-05 6.58416094096e-05 -5.7160204072e-06 +UniRef50_V9VU16 Regulator 0.000113325071635 8.88071999779e-05 -2.45178716571e-05 +UniRef50_Q2NSZ1 Macrolide export ATP binding permease protein MacB 2.29055833739e-06 1.43007728218e-05 1.20102144844e-05 +UniRef50_M9R8E0 Putative IS30 family transposase 3.37337355377e-05 2.52341314705e-05 -8.4996040672e-06 +UniRef50_F0RNU6 7.23835947954e-05 0.044316864467 0.0442444808722 +UniRef50_A0A011PXZ1 Copper exporting P type ATPase A 2.66833760644e-06 1.71722585747e-05 1.45039209683e-05 +UniRef50_B2K308 UPF0502 protein YPTS_2082 0.00138741700079 0.0028730956732 0.00148567867241 +UniRef50_UPI0003B66071 sodium 1.00742321339e-05 1.50839291223e-05 5.0096969884e-06 +UniRef50_K0LM02 Formate nitrite transporter family protein 0.00863839617475 0.00353700830558 -0.00510138786917 +UniRef50_O53182 2 oxoglutarate oxidoreductase subunit KorA 7.54468998348e-05 0.00440050512335 0.00432505822352 +UniRef50_R7PY79 0.00260576228779 0.00101148432434 -0.00159427796345 +UniRef50_B2A170 Carbamoyl phosphate synthase large chain 1.37816354611e-05 7.28277578477e-05 5.90461223866e-05 +UniRef50_Q3KGL4 Uracil DNA glycosylase 0.00997559146374 0.00371042944759 -0.00626516201615 +UniRef50_A6LYS3 PAS PAC sensor signal transduction histidine kinase 0.000541919103036 0.00175806457771 0.00121614547467 +UniRef50_G7MBX9 Xylose isomerase domain containing protein TIM barrel 0.000417264995876 0.00171974148114 0.00130247648526 +UniRef50_UPI000370772D hypothetical protein 4.53617555602e-05 4.50418281397e-05 -3.199274205e-07 +UniRef50_Q6GBK7 Putative antiporter subunit mnhA2 0.0176504979211 0.00513787995375 -0.0125126179673 +UniRef50_UPI000376D794 hypothetical protein, partial 8.88563483988e-05 0.000115544746056 2.66883976572e-05 +UniRef50_UPI0003B415C3 phospholipase C 5.30711547794e-06 1.27077311059e-05 7.40061562796e-06 +UniRef50_UPI0003A4E33B peptidase 4.72763461196e-05 1.06241992505e-05 -3.66521468691e-05 +UniRef50_A7HF60 Tetratricopeptide TPR_4 2.84678893988e-05 2.44699472956e-05 -3.9979421032e-06 +UniRef50_Q9WXB2 Phytoene disaturase 4.88382939001e-05 2.86706554049e-05 -2.01676384952e-05 +UniRef50_Q3SL19 Serine type D ala D ala carboxypeptidase 0.00148069775263 0.000389440270477 -0.00109125748215 +UniRef50_UPI0001FFE6FF oxidoreductase 6.03073649307e-05 0.000775401365077 0.000715094000146 +UniRef50_Q5HQE8 Probable glycolipid permease LtaA 0.0209051928977 0.00411150844843 -0.0167936844493 +UniRef50_Q31WQ9 0.000155344028336 0.00024781821415 9.2474185814e-05 +UniRef50_UPI00036A674F hypothetical protein 1.82795745138e-05 0.000151553016888 0.000133273442374 +UniRef50_L0IJZ9 Beta glucosidase like glycosyl hydrolase 0.000318770198599 0.000928554330425 0.000609784131826 +UniRef50_L1KBS6 0.000530061789549 0.000156593037902 -0.000373468751647 +UniRef50_Q9HUG9 Bifunctional protein HldE 0.00244615157147 0.00128061230575 -0.00116553926572 +UniRef50_Q5HR43 3.5839385221e-05 5.59712970245e-05 2.01319118035e-05 +UniRef50_W5XGK2 DNA mismatch repair protein MutL 3.1446012524e-06 7.19366444502e-06 4.04906319262e-06 +UniRef50_UPI000262634A dihydropyrimidine dehydrogenase subunit A 1.86357325897e-05 8.50014561023e-05 6.63657235126e-05 +UniRef50_A6M2S3 Threonyl alanyl tRNA synthetase, SAD 0.000107037614984 0.000586236635633 0.000479199020649 +UniRef50_B1YKT1 Ribosomal protein L11 methyltransferase 1.37411599978e-05 0.000377804316637 0.000364063156639 +UniRef50_W0AKF5 Exo poly alpha D galacturonosidase 6.82355935326e-06 8.08476620106e-06 1.2612068478e-06 +UniRef50_UPI000463C46F Surfeit locus 1 family protein 8.06419725828e-06 1.27807974673e-05 4.71660020902e-06 +UniRef50_A3M3W1 Phage integrase 0.000563838795038 0.00604813948981 0.00548430069477 +UniRef50_U4WEY2 0.000421204475535 9.83242721802e-05 -0.000322880203355 +UniRef50_Q08YP9 0.00019121352797 8.67934655405e-05 -0.000104420062429 +UniRef50_U5MNN3 Glycerate dehydrogenase HprA 0.00023741491936 0.000949524094922 0.000712109175562 +UniRef50_UPI0002BB9F78 hypothetical protein, partial 0.000547497138335 5.04381327342e-05 -0.000497059005601 +UniRef50_A8M9N8 GTPase like protein 0.00295219034839 0.00107986969598 -0.00187232065241 +UniRef50_P52041 3 hydroxybutyryl CoA dehydrogenase 0.0116037782299 0.00218463839218 -0.00941913983772 +UniRef50_V9BHA3 Elongation factor Tu 0.0257222062628 0.00529540092294 -0.0204268053399 +UniRef50_Q2FWQ0 Anti repressor 0.0179935335476 0.00265045759129 -0.0153430759563 +UniRef50_J2YEX7 Transport protein, AzlD family 0.000123251566383 0.000905654197447 0.000782402631064 +UniRef50_D3VGH0 Putative mating pair stabilization protein 1.72362134026e-05 1.17518895197e-05 -5.4843238829e-06 +UniRef50_X5JZY6 ABC transporter, ATP binding protein 0.00443075803232 0.000577541454886 -0.00385321657743 +UniRef50_Q8E5X0 Hydroxyethylthiazole kinase 0.000185953689091 0.000230716175927 4.4762486836e-05 +UniRef50_B8FP12 Lipoprotein 0.000304642453724 5.57649842618e-05 -0.000248877469462 +UniRef50_Q2FXR3 Delta aminolevulinic acid dehydratase 0.0127099871412 0.00247900742769 -0.0102309797135 +UniRef50_A0A023RZK1 Transglutaminase 0.000147647714023 0.00578241363184 0.00563476591782 +UniRef50_UPI0002E002F0 ABC transporter ATP binding protein 0.000105517309721 1.77853413704e-05 -8.77319683506e-05 +UniRef50_Q1CRS3 tRNA specific 2 thiouridylase MnmA 0.000174762031871 0.00305486172816 0.00288009969629 +UniRef50_Q6W1T0 Transporter 0.00971432354625 0.00482338947226 -0.00489093407399 +UniRef50_V6QBN8 0.000298015254361 0.000656259344878 0.000358244090517 +UniRef50_J7QD35 0.0038914941591 0.00060182009628 -0.00328967406282 +UniRef50_A6LQ54 0.000155557412985 0.000579175208544 0.000423617795559 +UniRef50_Q4FQF7 ATP phosphoribosyltransferase 0.000723050410977 0.00752993909274 0.00680688868176 +UniRef50_A6LQ58 0.00098634711073 0.000711699092776 -0.000274648017954 +UniRef50_B4R825 Succinoglycan biosynthesis protein 0.00294045115857 0.000519786285858 -0.00242066487271 +UniRef50_P31828 Probable zinc protease PqqL 0.00210058154213 0.00134629406208 -0.00075428748005 +UniRef50_A7I252 Glutamate 1 semialdehyde 2,1 aminomutase 8.55298941131e-06 0.00923302870549 0.00922447571608 +UniRef50_G1ZXK5 Sodium proline symporter 0.00214690238992 0.000616164736886 -0.00153073765303 +UniRef50_F3SDM6 0.000136996778916 6.70662793754e-05 -6.99304995406e-05 +UniRef50_UPI00035C8B7E hypothetical protein 0.00767910636879 0.00173715708938 -0.00594194927941 +UniRef50_H4A9R7 PRD domain protein 0.0113189691781 0.00206101291883 -0.00925795625927 +UniRef50_A6LRK0 UspA domain protein 0.000302796247737 0.00043858916614 0.000135792918403 +UniRef50_A5UNV2 Putative structural protein 0.000652713525392 0.00188500024592 0.00123228672053 +UniRef50_Q83LD5 0.000327599402696 3.48826529242e-05 -0.000292716749772 +UniRef50_A1TXZ0 Gluconolactonase 0.000981559362898 0.000693498507066 -0.000288060855832 +UniRef50_UPI0003169EC4 hypothetical protein 3.71517277146e-05 1.73964607788e-05 -1.97552669358e-05 +UniRef50_B9KTB3 Extracellular solute binding protein, family 5 0.0145750872264 0.00425975214059 -0.0103153350858 +UniRef50_A6LZH5 Cation diffusion facilitator family transporter 0.000372589200682 0.000153013836893 -0.000219575363789 +UniRef50_A4WR60 von Willebrand factor, type A 0.000228204618775 1.3609103593e-05 -0.000214595515182 +UniRef50_Q9KQM0 5 deoxynucleotidase VC_1978 0.000625920117967 0.000310859689677 -0.00031506042829 +UniRef50_UPI0003B76BAF malto oligosyltrehalose synthase, partial 7.38438612701e-06 5.39370716595e-06 -1.99067896106e-06 +UniRef50_F8G1E1 0.00386590431929 0.000307621567909 -0.00355828275138 +UniRef50_UPI0003B6C0E2 ATPase 6.79478754861e-06 9.62605522957e-06 2.83126768096e-06 +UniRef50_R7F196 1.43532593383e-05 0.000533879257946 0.000519525998608 +UniRef50_UPI000379E4F4 hypothetical protein 4.70351643382e-05 8.21869271254e-05 3.51517627872e-05 +UniRef50_R5BXF1 Aspartokinase 0.000128396594851 0.00253421191727 0.00240581532242 +UniRef50_UPI0003B32155 hypothetical protein 0.00146807741626 0.000101961622738 -0.00136611579352 +UniRef50_UPI000472BA56 hypothetical protein, partial 1.35702152413e-05 1.8823965657e-05 5.2537504157e-06 +UniRef50_E6AKY5 4Fe 4S binding domain protein 0.00818627382019 0.00446522960158 -0.00372104421861 +UniRef50_UPI000428EAFE hypothetical protein 1.82568715062e-06 3.07766812149e-06 1.25198097087e-06 +UniRef50_Q75ZQ4 Urease subunit gamma 5.92988908745e-05 0.000210317232829 0.000151018341954 +UniRef50_D2PVS1 2.02078485743e-06 4.17862385369e-06 2.15783899626e-06 +UniRef50_Q5HFU7 30S ribosomal protein S1 0.0108051662775 0.00375655427462 -0.00704861200288 +UniRef50_UPI00040934E7 hypothetical protein 5.88218387433e-05 0.000137005114253 7.81832755097e-05 +UniRef50_Q2FG95 Probable cell wall amidase LytH 0.0142902044621 0.00395639628541 -0.0103338081767 +UniRef50_T7NH17 L fucose proton symporter 0.000463119201756 0.000213225057899 -0.000249894143857 +UniRef50_Q5HN77 Amino acid ABC transporter, permease amino acid binding protein, putative 0.0104192918203 0.00198565752047 -0.00843363429983 +UniRef50_UPI0003665A08 hypothetical protein 0.000125288701011 2.60167215425e-05 -9.92719794685e-05 +UniRef50_B4RL88 0.000291494972086 0.00471382573257 0.00442233076048 +UniRef50_N0DYS1 1.38668152009e-05 0.000314724730229 0.000300857915028 +UniRef50_UPI0003B45643 glycosyl transferase family 1 2.58331429078e-05 6.40670073849e-06 -1.94264421693e-05 +UniRef50_UPI0001912596 SsrA binding protein, partial 3.90018812346e-05 8.60126090073e-05 4.70107277727e-05 +UniRef50_A7FPN7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.26345550728e-05 2.25000674244e-05 9.8655123516e-06 +UniRef50_U5MTV6 0.000659279987501 0.0015170537449 0.000857773757399 +UniRef50_V2EJX2 Proline specific permease 0.00442795259935 0.00202768905555 -0.0024002635438 +UniRef50_P62177 RNA polymerase sigma 35 factor 0.000552518132057 0.00244026119266 0.0018877430606 +UniRef50_P42601 Inner membrane protein alx 0.00226687723775 0.00707235761733 0.00480548037958 +UniRef50_UPI00036D10A8 hypothetical protein, partial 9.69739736537e-05 1.0433986558e-05 -8.65399870957e-05 +UniRef50_UPI00035D2E6B hypothetical protein 2.57083396302e-05 2.72707914439e-05 1.5624518137e-06 +UniRef50_P39207 Nucleoside diphosphate kinase 1 1.42948927151e-05 3.20745813366e-05 1.77796886215e-05 +UniRef50_UPI000376C41C hypothetical protein 2.75837218675e-05 0.00144532215068 0.00141773842881 +UniRef50_P80357 Arginine N succinyltransferase subunit alpha 0.000622847168474 0.000304974222238 -0.000317872946236 +UniRef50_F0YH85 7.93046054748e-05 0.00016432609633 8.50214908552e-05 +UniRef50_I2JHH7 1.09847811455e-05 1.31754993536e-05 2.1907182081e-06 +UniRef50_O25770 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000117719123342 0.001937223325 0.00181950420166 +UniRef50_R5T8M0 Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC 0.000416337090519 0.00167975164149 0.00126341455097 +UniRef50_Q38YR5 1.17011382921e-05 0.00419456472715 0.00418286358886 +UniRef50_A0A014QHI0 6.22537408221e-05 0.000837015325202 0.00077476158438 +UniRef50_UPI0001FFF018 AMP dependent synthetase 1.21794665448e-05 1.16549174777e-05 -5.245490671e-07 +UniRef50_A7AI53 4.19247545554e-05 0.000331960225017 0.000290035470462 +UniRef50_UPI0002B44D7F PREDICTED 5.71349797054e-05 0.000159519373128 0.000102384393423 +UniRef50_A0QI67 4.65531469677e-05 0.000318109111801 0.000271555964833 +UniRef50_UPI0003638900 hypothetical protein 1.64600496672e-05 0.000177172605586 0.000160712555919 +UniRef50_UPI00046489F4 ABC transporter ATPase, partial 1.48277809582e-05 4.3218372345e-05 2.83905913868e-05 +UniRef50_B6ZUP8 Formate C acetyltransferase 3 0.00318017986611 0.000410950587957 -0.00276922927815 +UniRef50_UPI00039CFDC1 hypothetical protein 9.69724154481e-05 0.00185596358941 0.00175899117396 +UniRef50_B1ZKW6 40 residue YVTN family beta propeller repeat protein 0.00977375898238 0.00362167320567 -0.00615208577671 +UniRef50_C5Z6N8 8.3521372088e-05 0.000870891786541 0.000787370414453 +UniRef50_A6UVH0 FO synthase subunit 1 0.0023753599348 0.000431077420709 -0.00194428251409 +UniRef50_Q2NGM6 Probable translation initiation factor IF 2 0.00238231420926 0.000341959782782 -0.00204035442648 +UniRef50_A0A031HYF4 Cell envelope like function transcriptional attenuator common domain protein 9.11133801595e-07 7.47006842818e-05 7.37895504802e-05 +UniRef50_A1R863 tRNA specific 2 thiouridylase MnmA 0.000113359155811 0.00850548406276 0.00839212490695 +UniRef50_F0Y2L6 Expressed protein 7.29656622112e-05 0.000317283450164 0.000244317787953 +UniRef50_U5RSG0 NAD dependent epimerase dehydratase 0.0131653208591 0.00174118974982 -0.0114241311093 +UniRef50_N0ATL3 Amidase 0.000279447710146 0.0011569135415 0.000877465831354 +UniRef50_W0YMI4 GTP binding protein LepA 2.91323089881e-05 6.41684838809e-05 3.50361748928e-05 +UniRef50_Q5HKG7 ABC transporter, ATP binding protein 0.0193444259598 0.00335772504816 -0.0159867009116 +UniRef50_A7FBL3 0.000295533451142 0.0030936133788 0.00279807992766 +UniRef50_P0AD62 Pyruvate kinase I 0.00258954854462 0.00179106862636 -0.00079847991826 +UniRef50_P17597 Acetolactate synthase, chloroplastic 9.59318751084e-06 1.31303984151e-05 3.53721090426e-06 +UniRef50_P80576 Phospho 2 dehydro 3 deoxyheptonate aldolase 4.14616224957e-05 5.30160930255e-06 -3.61600131932e-05 +UniRef50_R7PTS8 0.00106121578966 0.000194714311118 -0.000866501478542 +UniRef50_A0A032AQX4 6.65821004776e-05 6.83853287389e-05 1.8032282613e-06 +UniRef50_Q2NBB9 1.39054376913e-05 1.91448931837e-05 5.2394554924e-06 +UniRef50_Q829X3 UvrABC system protein A 0.0130642091732 0.00961050662784 -0.00345370254536 +UniRef50_UPI0003739172 hypothetical protein 7.53842800846e-06 2.64499872071e-05 1.89115591986e-05 +UniRef50_E3A6L5 0.00295061345597 0.000591606312127 -0.00235900714384 +UniRef50_J1NS24 Arabinose transport protein 4.41157495326e-05 0.000111170494778 6.70547452454e-05 +UniRef50_A4WT93 0.00964838742565 0.00142389607949 -0.00822449134616 +UniRef50_A9UZQ9 Predicted protein 6.57719188826e-06 3.18588793808e-06 -3.39130395018e-06 +UniRef50_C6SP54 0.00535080301527 0.000304450211538 -0.00504635280373 +UniRef50_UPI000255E535 malonyl CoA acyl carrier protein transacylase, partial 0.000110342367853 0.000645203842502 0.000534861474649 +UniRef50_K4H363 Ribose ABC transporter, periplasmic ribose binding protein RbsB 0.0123648614173 0.000704457579105 -0.0116604038382 +UniRef50_Q2P7B9 3 oxoacyl [acyl carrier protein] synthase 3 0.0122273940776 0.00619693545492 -0.00603045862268 +UniRef50_Q8XIK5 8.38857752959e-05 0.00154558515942 0.00146169938412 +UniRef50_UPI00034B5D93 DNA polymerase III subunit gamma tau 3.05016993121e-06 1.1320062071e-05 8.26989213979e-06 +UniRef50_R4R715 Putrescine importer PuuP 0.000200700612221 0.000507533739408 0.000306833127187 +UniRef50_Q6NGH3 Ribonuclease 3 1.3295878069e-05 0.00425827910564 0.00424498322757 +UniRef50_Q5HLI2 Amino acid ABC transporter, amino acid binding protein 0.00910198897578 0.00457118580355 -0.00453080317223 +UniRef50_UPI0003B3520D mannose 1 phosphate guanylyltransferase 2.31980193309e-05 1.03990702894e-05 -1.27989490415e-05 +UniRef50_M9VI11 Phosphoenolpyruvate sugar phosphotransferase 0.000170266531623 0.0043580213698 0.00418775483818 +UniRef50_UPI00036C530C hypothetical protein, partial 5.85139132754e-05 0.000104865347259 4.63514339836e-05 +UniRef50_A4VS44 0.000471198166788 0.000586638970279 0.000115440803491 +UniRef50_UPI000477575F spermidine putrescine ABC transporter substrate binding protein 2.66212024233e-05 0.000199872719077 0.000173251516654 +UniRef50_C3ZSQ3 0.000188117314178 9.50323128369e-05 -9.30850013411e-05 +UniRef50_A3PJG3 Outer membrane protein assembly factor BamA 0.0114694523744 0.00329031658524 -0.00817913578916 +UniRef50_B9E6Y5 0.0165050428413 0.00505682682174 -0.0114482160196 +UniRef50_UPI00047C4591 hypothetical protein 3.05535024127e-05 0.000275438989379 0.000244885486966 +UniRef50_W5XCX4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.04057649474e-06 2.86443886497e-05 2.5603812155e-05 +UniRef50_A4WW20 0.000197374617713 0.00325506892955 0.00305769431184 +UniRef50_A4WW27 0.00870691410275 0.0024919303547 -0.00621498374805 +UniRef50_U6AME7 Glycerol 3 phosphate transporter 0.00151726313252 0.000132231360532 -0.00138503177199 +UniRef50_X5EIQ4 Dihydroxyacetone kinase, L subunit 0.0253712409572 0.00438931217804 -0.0209819287792 +UniRef50_UPI0002E4364A hypothetical protein 4.02465272254e-05 4.30505468148e-05 2.8040195894e-06 +UniRef50_K7S070 ABC transporter, ATP binding protein 0.000284895085921 0.00684168899645 0.00655679391053 +UniRef50_Q99UB6 Prephenate dehydrogenase 0.00893935849316 0.00313743566727 -0.00580192282589 +UniRef50_A5IRF7 PEBP family protein 0.0291659008016 0.00316333356749 -0.0260025672341 +UniRef50_K9WCH6 3.22777795266e-05 0.000403358637159 0.000371080857632 +UniRef50_UPI000465069F mannose 1 phosphate guanyltransferase 2.29838899432e-05 7.28961213377e-06 -1.56942778094e-05 +UniRef50_B4S5Y8 Riboflavin biosynthesis protein RibBA 1.01375240772e-05 0.00256901597057 0.00255887844649 +UniRef50_UPI000328EECC PREDICTED 7.74955934733e-05 0.00202502883564 0.00194753324217 +UniRef50_Q2C9Y7 0.000378644076208 4.55312947057e-05 -0.000333112781502 +UniRef50_UPI000376B5FB hypothetical protein 0.00014496826201 2.01930245832e-05 -0.000124775237427 +UniRef50_UPI0002375AFF plasmid pRiA4b ORF 3 family protein 8.3241215135e-06 1.14900387414e-05 3.1659172279e-06 +UniRef50_UPI00046AEB45 hypothetical protein 1.81074386381e-05 2.66561100045e-05 8.5486713664e-06 +UniRef50_UPI0003FEA9DB xanthine dehydrogenase 4.97599425625e-05 3.3411869064e-05 -1.63480734985e-05 +UniRef50_A5UL20 ATPase involved in DNA repair, SbcC 0.00326217426329 0.00117084239866 -0.00209133186463 +UniRef50_O59829 Probable nitrilase C965.09 0.000303619452667 0.000239122838212 -6.4496614455e-05 +UniRef50_E8PEL6 0.000212468661645 0.00175338516407 0.00154091650243 +UniRef50_E8UAZ5 Phosphoesterase RecJ domain protein 0.000133702239266 0.00519090931062 0.00505720707135 +UniRef50_Q162C3 Sodium hydrogen exchanger family, putative 0.00533545263552 0.0005099378771 -0.00482551475842 +UniRef50_H1UZM0 Peroxiredoxin HYR1 4.58693353607e-05 7.0336116509e-05 2.44667811483e-05 +UniRef50_C0BFU0 4.78674464958e-05 8.83129780216e-06 -3.90361486936e-05 +UniRef50_UPI000466DC48 glycine dehydrogenase 1.31412964468e-05 2.94381697068e-06 -1.01974794761e-05 +UniRef50_UPI00047B371C hypothetical protein, partial 3.11101608465e-05 7.04792873234e-05 3.93691264769e-05 +UniRef50_P0AFB9 Nitrogen regulation protein NR 0.00292893310244 0.000919552899458 -0.00200938020298 +UniRef50_B4RFJ6 Type II secretion system protein N 0.00010902520255 6.76398474671e-05 -4.13853550829e-05 +UniRef50_C6AZB2 Inner membrane translocator 0.0119503801337 0.00353145082022 -0.00841892931348 +UniRef50_R7PXT2 0.00330084033994 0.000499668865723 -0.00280117147422 +UniRef50_UPI000444A373 hypothetical protein STEHIDRAFT_62958 3.15604784196e-05 0.000402661527878 0.000371101049458 +UniRef50_A6LUB1 Diguanylate cyclase 0.000546840661818 0.0017885589242 0.00124171826238 +UniRef50_UPI0003B75BCC polar amino acid ABC transporter permease 3.74940370186e-06 3.92921408307e-06 1.7981038121e-07 +UniRef50_UPI00029D9246 3.94607091047e-05 3.96742438685e-05 2.135347638e-07 +UniRef50_H8MF76 8.83605987298e-06 0.00092605040078 0.000917214340907 +UniRef50_A0A023RZ47 DNA binding protein 0.000408829590809 0.00475204682507 0.00434321723426 +UniRef50_Q01YD9 Bifunctional protein GlmU 4.13402401358e-06 5.03870273751e-06 9.0467872393e-07 +UniRef50_F2AC19 0.000234139820378 0.00010618081182 -0.000127959008558 +UniRef50_P59680 ATP dependent 6 phosphofructokinase 1.82988613489e-06 2.89796318721e-06 1.06807705232e-06 +UniRef50_P0AD05 0.00701358541667 0.0034938809681 -0.00351970444857 +UniRef50_A1B1Z9 0.0113733105752 0.00431011682069 -0.00706319375451 +UniRef50_Q2NG02 Enolase 0.00249353723587 0.000824841131346 -0.00166869610452 +UniRef50_F9NSM8 0.00055526038532 0.00371584727636 0.00316058689104 +UniRef50_Q8DW15 Glutathione biosynthesis bifunctional protein GshAB 0.00550186920965 0.00180864537669 -0.00369322383296 +UniRef50_A8ISU7 Predicted protein 0.000530577215517 0.000173387568509 -0.000357189647008 +UniRef50_A6M262 ABC transporter related 0.000479285527454 0.000851717962019 0.000372432434565 +UniRef50_F5YI36 Glutamine ABC transporter, permease substrate binding protein 0.00672618412148 0.00159114918499 -0.00513503493649 +UniRef50_UPI00047AA542 argininosuccinate lyase 5.22799159108e-06 1.0504914289e-05 5.27692269792e-06 +UniRef50_M4RCI7 Fatty acid desaturase 0.000345388135772 0.00742927624491 0.00708388810914 +UniRef50_Q5GWS2 0.000449538230973 0.000247286737867 -0.000202251493106 +UniRef50_T8CXA8 Phosphatase yihX 6.96446982968e-05 0.000178133079522 0.000108488381225 +UniRef50_O31711 0.00321012258277 0.000333063953224 -0.00287705862955 +UniRef50_O31716 0.00136807277639 0.00513923235862 0.00377115958223 +UniRef50_Q9ZPX5 Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial 0.000558323683303 0.00298833832919 0.00243001464589 +UniRef50_U5MKU3 ABC type transport system, involved in lipoprotein release, permease component 0.000295530503988 0.00140414775693 0.00110861725294 +UniRef50_A6LQ14 AMP dependent synthetase and ligase 0.000706144164955 0.000124869642797 -0.000581274522158 +UniRef50_B9DP24 4 hydroxy tetrahydrodipicolinate reductase 0.017488820534 0.00510239160521 -0.0123864289288 +UniRef50_F0N4Z5 Exodeoxyribonuclease V, gamma subunit 0.00019319368823 0.00343487096322 0.00324167727499 +UniRef50_P14756 Pseudolysin 0.000291692961966 0.000128678302919 -0.000163014659047 +UniRef50_UPI0004720360 30S ribosomal protein S3 0.000313330757321 0.00104893389463 0.000735603137309 +UniRef50_Q7UJ69 Dihydroxy acid dehydratase 2.21129427489e-06 8.38967181605e-06 6.17837754116e-06 +UniRef50_H8L8P6 PTS system, mannose fructose sorbose specific IID component 0.00105003925893 0.0032070000259 0.00215696076697 +UniRef50_A3PNL6 PpiC type peptidyl prolyl cis trans isomerase 0.0100107750419 0.00194690787508 -0.00806386716682 +UniRef50_K6Q1W9 Biotin dependent carboxylase like protein 4.70544947275e-06 6.72026763217e-05 6.2497226849e-05 +UniRef50_UPI0004761EBF cold shock protein 2.1831300464e-05 3.40359300573e-05 1.22046295933e-05 +UniRef50_Q2FFJ3 Sodium proline symporter 0.0236722969053 0.00733144905057 -0.0163408478547 +UniRef50_UPI0002F6340C hypothetical protein 4.20828014311e-06 1.42779565232e-05 1.00696763801e-05 +UniRef50_UPI0004779366 serine protease 1.81061900691e-05 2.33133975202e-05 5.2072074511e-06 +UniRef50_B7LN63 0.00469635344377 0.000781675575147 -0.00391467786862 +UniRef50_UPI0003B3C2F9 alpha amylase 2.00381127959e-05 3.47823662417e-05 1.47442534458e-05 +UniRef50_Q3AZ12 0.000170956013843 2.06794009552e-05 -0.000150276612888 +UniRef50_Q896N2 Phosphoserine phosphatase 0.000249440080738 0.00109351991179 0.000844079831052 +UniRef50_G8LZQ1 Molybdate ABC transporter, permease protein 0.000600122018428 0.000290475447734 -0.000309646570694 +UniRef50_D3SBH6 TRAP transporter solute receptor, TAXI family 7.3038614021e-05 7.79727014196e-05 4.9340873986e-06 +UniRef50_UPI0004432C18 PREDICTED 7.66028050831e-06 5.18223566459e-05 4.41620761376e-05 +UniRef50_Q92DG5 D alanine D alanine ligase 6.3270452185e-06 0.00047889195437 0.000472564909152 +UniRef50_A7ZTE9 Mannitol 1 phosphate 5 dehydrogenase 0.00411918731568 0.000660392514901 -0.00345879480078 +UniRef50_A6LTV5 Ion transport 2 domain protein 0.000419610819248 0.00134328873201 0.000923677912762 +UniRef50_UPI0004677ABB hypothetical protein 1.9718922576e-05 2.77839576715e-05 8.0650350955e-06 +UniRef50_UPI000471685A membrane protein 3.50173917045e-05 0.000899055382538 0.000864037990833 +UniRef50_UPI0003C15BF1 PREDICTED 5.69007202092e-05 3.31063191152e-06 -5.35900882977e-05 +UniRef50_UPI000027C743 hypothetical protein 7.48869126994e-06 1.52564527575e-05 7.76776148756e-06 +UniRef50_UPI0003656A67 hypothetical protein 3.59506284696e-05 3.69419166923e-05 9.912882227e-07 +UniRef50_A0A023S0W1 Acyltransferase 0.00014155724582 0.00188348695926 0.00174192971344 +UniRef50_UPI000372E136 hypothetical protein 3.7315344732e-05 0.000120172944516 8.2857599784e-05 +UniRef50_P75867 Putative Lon protease homolog 0.00366534037404 0.000102838086542 -0.0035625022875 +UniRef50_A1T5E9 3.83149698522e-05 1.50219961238e-05 -2.32929737284e-05 +UniRef50_UPI00047D7AE5 resolvase 7.29628466942e-05 0.000219817765938 0.000146854919244 +UniRef50_R7NTI0 6.4371998579e-06 1.19096215976e-05 5.4724217397e-06 +UniRef50_E6S0A0 2.06779661217e-05 3.85443347728e-05 1.78663686511e-05 +UniRef50_V6UAJ9 0.000415175957368 4.96768506484e-06 -0.000410208272303 +UniRef50_Q8CU26 0.00328533513994 0.0013943187415 -0.00189101639844 +UniRef50_UPI000367BBBE hypothetical protein 0.000405564832278 0.00045458887484 4.9024042562e-05 +UniRef50_W4XFJ9 6.76030182537e-07 2.06555424425e-07 -4.69474758112e-07 +UniRef50_UPI000379071D hypothetical protein 9.43628097165e-05 6.67104452015e-05 -2.7652364515e-05 +UniRef50_A6LT54 0.000186566386584 0.00109194426667 0.000905377880086 +UniRef50_A6LT50 0.00023728827183 0.00391685034238 0.00367956207055 +UniRef50_B9KX92 ABC polysaccharide export transporter, ATPase subunit 0.0185351010945 0.00211628906084 -0.0164188120337 +UniRef50_A6LT52 0.00027914657665 0.00050470376079 0.00022555718414 +UniRef50_A6LT53 0.000494159569863 0.000954036239284 0.000459876669421 +UniRef50_Q6ZD36 1.07522669369e-05 0.000138970134759 0.000128217867822 +UniRef50_P0A9R9 Cell division ATP binding protein FtsE 0.00261341985107 0.000268469732005 -0.00234495011907 +UniRef50_R6FNM8 DEAD DEAH box helicase domain protein 0.000685760623058 0.000984518922578 0.00029875829952 +UniRef50_A4G3E6 Isoleucine tRNA ligase 0.000739371378363 0.000334887628344 -0.000404483750019 +UniRef50_A3PLZ5 ParB family protein 0.00059611970572 0.000334730976329 -0.000261388729391 +UniRef50_UPI00025581FA cyclohexadienyl dehydrogenase, partial 4.5187314283e-05 0.000146517682055 0.000101330367772 +UniRef50_UPI00046F08B0 hypothetical protein 0.000108654210894 1.83879562934e-05 -9.02662546006e-05 +UniRef50_UPI0003B4920F preprotein translocase subunit SecB 3.45067734853e-05 5.98448434774e-05 2.53380699921e-05 +UniRef50_P0A2X3 Exodeoxyribonuclease 0.00488410503424 0.00597416025615 0.00109005522191 +UniRef50_UPI0003B559D7 4 alpha glucanotransferase 1.08044327185e-05 0.000594511498005 0.000583707065286 +UniRef50_A5N248 0.00126515337634 0.00217450115948 0.00090934778314 +UniRef50_W1GUL6 3.60839875691e-05 2.28783404467e-05 -1.32056471224e-05 +UniRef50_G7UQ41 Terminase 4.27530818981e-06 3.23509773958e-05 2.8075669206e-05 +UniRef50_Q9RQW2 Holo [acyl carrier protein] synthase 8.94334562036e-05 0.000678888977457 0.000589455521253 +UniRef50_L8UK30 0.000703390041336 0.000689966788659 -1.3423252677e-05 +UniRef50_Q8X643 NAD dependent dihydropyrimidine dehydrogenase subunit PreA 0.00165478987246 0.00297688916432 0.00132209929186 +UniRef50_U5PD31 Asparaginase 0.0049951520362 0.00819383782422 0.00319868578802 +UniRef50_UPI00037472A7 hypothetical protein 5.08574675189e-05 2.23479879209e-05 -2.8509479598e-05 +UniRef50_F9ZUX9 Succinate dehydrogenase subunit A like protein 0.000172239973521 0.000230968410904 5.8728437383e-05 +UniRef50_G0DS55 Radical SAM superfamily protein 0.000117110441217 0.0036813899534 0.00356427951218 +UniRef50_A8ZUC6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.52693719121e-05 7.6681328677e-06 -7.6012390444e-06 +UniRef50_W7VMR8 7.64165776251e-05 0.000287831791158 0.000211415213533 +UniRef50_W4Q5P9 Phage terminase large subunit 5.33696791928e-06 1.64284155842e-05 1.10914476649e-05 +UniRef50_A6LZB3 FMN binding domain protein 0.000149994432661 0.0014952984196 0.00134530398694 +UniRef50_U9XFZ5 0.000129830094458 0.000132424648145 2.594553687e-06 +UniRef50_N2GFP3 0.000235438246685 0.000525429829699 0.000289991583014 +UniRef50_I0C1E1 0.00522708544695 0.00192123651959 -0.00330584892736 +UniRef50_Q8Z9L3 L carnitine CoA transferase 0.00241797023074 0.000993651609394 -0.00142431862135 +UniRef50_Q2W0J7 Flagellar P ring protein 0.00943515421167 0.00145529811926 -0.00797985609241 +UniRef50_Q92U29 0.000103176552206 0.000391866267024 0.000288689714818 +UniRef50_Q7UID0 Thymidylate synthase 0.00142927573747 0.016106152773 0.0146768770355 +UniRef50_UPI0003691ABF hypothetical protein 3.55684061717e-06 1.04131555319e-05 6.85631491473e-06 +UniRef50_F0MG01 0.000201147063333 0.00261319095365 0.00241204389032 +UniRef50_W7TC28 1.47289251804e-05 2.17640867982e-05 7.0351616178e-06 +UniRef50_A6UPR3 Glutamyl tRNA amidotransferase subunit E 0.0027501928806 0.000211909231622 -0.00253828364898 +UniRef50_UPI00030168D3 hypothetical protein 2.99184050592e-05 0.00018820279495 0.000158284389891 +UniRef50_K0HTP9 Sulfate ABC transporter periplasmic sulfate binding protein 0.000317014417105 0.000272600035571 -4.4414381534e-05 +UniRef50_Q1RFI5 0.00059290993013 0.00118126682079 0.00058835689066 +UniRef50_A0L5M9 UDP N acetylenolpyruvoylglucosamine reductase 4.94908325217e-06 5.96385948221e-05 5.46895115699e-05 +UniRef50_B9AGR4 0.00129980860143 0.000257741985155 -0.00104206661627 +UniRef50_G7ELT9 2.51123298335e-05 1.17630425862e-05 -1.33492872473e-05 +UniRef50_U3AFI9 Urea ABC transporter, urea binding protein 0.00698261911932 0.00155133945209 -0.00543127966723 +UniRef50_D4HC81 0.000311198219146 0.00591441252345 0.0056032143043 +UniRef50_C0XT97 1.36960606861e-05 0.00186856943653 0.00185487337584 +UniRef50_Q55587 4.02299074535e-06 1.84877594776e-05 1.44647687322e-05 +UniRef50_F0VN90 8.21637708439e-06 1.26798168731e-05 4.46343978871e-06 +UniRef50_B7QVH2 Major facilitator superfamily protein 3.03517627947e-05 6.30827769979e-05 3.27310142032e-05 +UniRef50_P42620 Glutathionyl hydroquinone reductase YqjG 0.0288905955137 0.00828376693824 -0.0206068285755 +UniRef50_UPI0003758451 AsnC family transcriptional regulator 0.000135788438972 8.50665236632e-05 -5.07219153088e-05 +UniRef50_I0LIW9 1.9506904962e-05 4.26687775675e-06 -1.52400272052e-05 +UniRef50_UPI00046EAF7B hypothetical protein, partial 1.51904680505e-05 1.60009392137e-05 8.104711632e-07 +UniRef50_A7X1E9 Aspartate carbamoyltransferase 0.0123155084818 0.00121912547131 -0.0110963830105 +UniRef50_V8FVT8 9.86461643372e-05 0.0015816481678 0.00148300200346 +UniRef50_I1YHV8 Carbonic anhydrase, family 3 5.99858754362e-05 0.000133863051733 7.38771762968e-05 +UniRef50_A3PI07 0.00251802107269 0.0017897982133 -0.00072822285939 +UniRef50_A7MMQ6 8.41884243704e-05 8.04770489307e-05 -3.7113754397e-06 +UniRef50_Q9AD79 Putative membrane protein 0.00012622647155 2.18758904957e-05 -0.000104350581054 +UniRef50_UPI00036DE46F hypothetical protein 2.06797028933e-05 3.88434859113e-05 1.8163783018e-05 +UniRef50_UPI0003780756 SAM dependent methyltransferase 1.29040514176e-05 2.97713943451e-05 1.68673429275e-05 +UniRef50_Q3J1W3 Chemotaxis response regulator protein glutamate methylesterase 2 0.000100239200105 0.00034818774817 0.000247948548065 +UniRef50_T0UG31 Cell division protein FtsW 0.0047956712244 0.00446446987613 -0.00033120134827 +UniRef50_UPI0004040B20 PTS sugar transporter subunit IIA 2.16196659831e-05 6.80309602808e-05 4.64112942977e-05 +UniRef50_Q58556 Cell division cycle protein 48 homolog MJ1156 0.00200620122814 0.000360788032948 -0.00164541319519 +UniRef50_C6ABJ5 sn glycerol 3 phosphate binding periplasmic protein UgpB 1.55391390956e-05 5.93003733895e-06 -9.60910175665e-06 +UniRef50_UPI00047E8722 hypothetical protein 8.66638075146e-06 5.74659771742e-06 -2.91978303404e-06 +UniRef50_O27041 V type ATP synthase subunit I 0.00284443831233 0.000507790757045 -0.00233664755529 +UniRef50_P66938 DNA topoisomerase 4 subunit B 0.0281823127507 0.0138964129147 -0.014285899836 +UniRef50_Q49150 Bifunctional coenzyme PQQ synthesis protein C D 0.000124609438148 2.17856495128e-05 -0.000102823788635 +UniRef50_U3R1J4 3 hydroxyacyl CoA dehydrogenase 5.49470143931e-05 0.00860785630103 0.00855290928664 +UniRef50_P93033 Fumarate hydratase 1, mitochondrial 1.31605626031e-05 3.41217119469e-05 2.09611493438e-05 +UniRef50_V5VCJ0 Protease 0.000146455909076 0.00863991926869 0.00849346335961 +UniRef50_F3ZAY0 Putative transcriptional regulator 0.000173038732986 0.000331966136148 0.000158927403162 +UniRef50_Q9Z3R7 Alpha glucoside transport system permease protein AglG 0.00700470581409 0.000495442916683 -0.00650926289741 +UniRef50_UPI0004743C7F hypothetical protein, partial 0.000105011167531 0.000102141084124 -2.870083407e-06 +UniRef50_N6V2G4 2.01495321983e-06 1.5956669633e-05 1.39417164132e-05 +UniRef50_B4U501 50S ribosomal protein L4 0.00036472076218 0.000346751512944 -1.7969249236e-05 +UniRef50_V4Z4F4 2.54427060768e-06 1.83220540258e-06 -7.120652051e-07 +UniRef50_R5NSU1 0.000479744624373 0.00025438540934 -0.000225359215033 +UniRef50_R7MVM8 Terminase small subunit family protein 0.000135463262263 2.84851542838e-05 -0.000106978107979 +UniRef50_P67109 UPF0042 nucleotide binding protein SA0720 0.0106434781768 0.000197536257659 -0.0104459419191 +UniRef50_D8HCA4 ABC transporter, ATP binding protein 0.00416519825803 0.00207931435521 -0.00208588390282 +UniRef50_UPI00036EA77A hypothetical protein 1.80610902477e-05 0.00124319397702 0.00122513288677 +UniRef50_C7PA11 7.07139816428e-06 0.000762303522494 0.00075523212433 +UniRef50_A9B518 Ribosomal RNA small subunit methyltransferase H 1.05423060364e-05 3.39494327809e-05 2.34071267445e-05 +UniRef50_F3U3C4 8.25979688065e-05 1.53905932419e-05 -6.72073755646e-05 +UniRef50_Q02252 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 9.98974818758e-06 0.007699638719 0.00768964897081 +UniRef50_G8VRC7 Electron transfer flavoprotein FAD binding domain protein 0.000279619251005 0.00597674508864 0.00569712583764 +UniRef50_Q9SI75 Elongation factor G, chloroplastic 2.06612263319e-05 0.000101538544808 8.08773184761e-05 +UniRef50_A5IPV1 0.00816014635855 0.00626863708312 -0.00189150927543 +UniRef50_C1F9K5 Threonine tRNA ligase 3.16519694042e-05 3.22539463318e-06 -2.8426574771e-05 +UniRef50_Q9LEJ0 Enolase 1 3.63650876333e-06 8.3708725659e-05 8.00722168957e-05 +UniRef50_UPI000366215B hypothetical protein 0.00340280874994 0.000463938940873 -0.00293886980907 +UniRef50_T0FGA8 1.47725411873e-05 2.32908492216e-05 8.5183080343e-06 +UniRef50_D0T5H1 ATP dependent helicase HrpA 0.000284842938769 0.00322869154081 0.00294384860204 +UniRef50_W4UAP9 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.25096594217e-06 2.65595906829e-05 2.43086247407e-05 +UniRef50_K4NG74 VirB4 like protein 4.95388436774e-05 0.00346494090654 0.00341540206286 +UniRef50_Q12PV1 SsrA binding protein 0.000523354622866 0.00118046992953 0.000657115306664 +UniRef50_UPI000369C4CE hypothetical protein 0.000126584908652 2.83177192448e-05 -9.82671894072e-05 +UniRef50_G7M5A0 0.000530100818569 0.0010389180224 0.000508817203831 +UniRef50_G7M6S3 Arginine decarboxylase 0.000797441026498 0.001398689146 0.000601248119502 +UniRef50_P09184 Very short patch repair protein 0.000619375859826 0.000474277510021 -0.000145098349805 +UniRef50_Q02394 5,10 methenyltetrahydromethanopterin hydrogenase 0.00286503460298 0.000909185526621 -0.00195584907636 +UniRef50_Q88M74 Acyltransferase 0.000465143493236 0.000600194762941 0.000135051269705 +UniRef50_Q0FUI9 ISSpo9, transposase 7.99384094593e-05 7.73993796221e-05 -2.5390298372e-06 +UniRef50_UPI0003AFDE9C PREDICTED 2.36301303206e-06 1.38885423416e-05 1.15255293095e-05 +UniRef50_P18120 3 isopropylmalate dehydrogenase 1.97420323853e-05 2.45273628521e-05 4.7853304668e-06 +UniRef50_K7UE53 Putative acetylornithine succinylornithine aminotransferase family protein 2.63526470378e-06 3.76535615625e-06 1.13009145247e-06 +UniRef50_R5BW02 0.000595502666077 0.00233741110794 0.00174190844186 +UniRef50_A8MM69 TRAP transporter solute receptor, TAXI family 1.82964357938e-05 1.29344233082e-05 -5.3620124856e-06 +UniRef50_Q3IRX5 Serine hydroxymethyltransferase 8.52700158469e-05 9.55385133525e-05 1.02684975056e-05 +UniRef50_Q9RUB7 Phage shock protein A homolog 0.000176120990128 0.02049858318 0.0203224621899 +UniRef50_Q89VR4 Acyl CoA dehydrogenase 0.000511193084627 0.00384656942268 0.00333537633805 +UniRef50_C3MFT1 0.000607018859646 5.92966881915e-05 -0.000547722171454 +UniRef50_P26608 Flagellar protein FliS 0.00336237762095 0.000717368514652 -0.0026450091063 +UniRef50_UPI0002F0F5DA branched chain amino acid ABC transporter permease 4.40009523818e-05 0.000523817586644 0.000479816634262 +UniRef50_UPI00046778C2 hypothetical protein 5.14172477089e-06 1.71702099568e-05 1.20284851859e-05 +UniRef50_Q21ET8 1.94122373987e-05 1.81624712867e-05 -1.249766112e-06 +UniRef50_Q720Z5 Teichoic acids export ATP binding protein TagH 5.6667064868e-06 0.000820447142127 0.00081478043564 +UniRef50_P0AFZ1 Protein SseB 0.00523233974107 0.0011791742126 -0.00405316552847 +UniRef50_G2DDB6 3.83482075276e-05 1.23664861738e-05 -2.59817213538e-05 +UniRef50_Q1C0V9 Rhamnulokinase 0.00495804348411 0.000922905679454 -0.00403513780466 +UniRef50_C4ZJG8 Nitrite reductase H), large subunit 0.000598588698913 0.000394933150137 -0.000203655548776 +UniRef50_UPI00039C17A8 hypothetical protein 4.16500883248e-05 2.73702605186e-05 -1.42798278062e-05 +UniRef50_D1BIN8 Monosaccharide binding protein 1.03136230916e-05 0.00516190275641 0.00515158913332 +UniRef50_E6VPG8 Transcriptional regulator, AraC family 0.0284390045463 0.0091596707949 -0.0192793337514 +UniRef50_UPI00021A57D1 PREDICTED 9.84312416401e-05 5.13380031993e-05 -4.70932384408e-05 +UniRef50_E0N7V9 0.000625667384843 0.00850253712458 0.00787686973974 +UniRef50_UPI00037031A7 hypothetical protein, partial 6.92488374226e-06 2.40880117023e-05 1.716312796e-05 +UniRef50_UPI00030650F9 hypothetical protein 7.81507079725e-07 1.23352886453e-06 4.52021784805e-07 +UniRef50_M4SA42 TraU family protein 0.000115303091969 1.64602307439e-05 -9.88428612251e-05 +UniRef50_UPI0001509F0D Electron transfer flavoprotein ubiquinone oxidoreductase containing protein 2.65544836622e-06 8.60832721048e-06 5.95287884426e-06 +UniRef50_UPI0002BC4120 phosphoenolpyruvate protein phosphotransferase, partial 2.15937525589e-06 0.000173363204951 0.000171203829695 +UniRef50_G8LLV9 Coproporphyrinogen III oxidase 0.00255219309591 0.00161412635007 -0.00093806674584 +UniRef50_Q02136 Histidinol dehydrogenase 0.00588272813331 0.00306893601157 -0.00281379212174 +UniRef50_F6G400 9.92513555255e-05 4.02270795757e-05 -5.90242759498e-05 +UniRef50_U5ACW9 0.000288920644946 0.000127910409555 -0.000161010235391 +UniRef50_UPI0002BFF2B3 unnamed protein product 5.61444684709e-06 2.31897287713e-05 1.75752819242e-05 +UniRef50_K1R9M4 Phage terminase, large subunit 1.52470814135e-05 0.000180883242663 0.00016563616125 +UniRef50_A6LR81 Coenzyme F390 synthetase like protein 0.000107955954865 0.00171630553255 0.00160834957768 +UniRef50_P54019 30S ribosomal protein S13 0.000842038939477 0.000401791435631 -0.000440247503846 +UniRef50_UPI00037EC4C5 hypothetical protein 6.73867909197e-06 3.14001632931e-05 2.46614842011e-05 +UniRef50_UPI00034B83FC hypothetical protein 7.98698874288e-06 0.000812247123261 0.000804260134518 +UniRef50_UPI000427207E hypothetical protein 6.97947065103e-06 3.33088710552e-06 -3.64858354551e-06 +UniRef50_K1V4W8 0.000136357920873 1.88029716869e-05 -0.000117554949186 +UniRef50_Q8YF84 Glutamate synthase small chain 0.00204884880084 0.000303373833107 -0.00174547496773 +UniRef50_Q0BAQ4 tRNA modification GTPase MnmE 0.00504714228498 0.0131205017663 0.00807335948132 +UniRef50_UPI00036B6D82 hypothetical protein 0.00011753106094 2.79443657264e-05 -8.95866952136e-05 +UniRef50_U6EFC2 Helicase 0.00309670934647 0.000774987775745 -0.00232172157072 +UniRef50_A4HI31 6.49074672859e-06 1.46425122558e-05 8.15176552721e-06 +UniRef50_B9KS21 Two component, sigma54 specific, transcriptional regulator, Fis family 0.00306956189778 0.00139689868593 -0.00167266321185 +UniRef50_UPI00046960A8 nickel ABC transporter permease 8.99154584445e-05 4.54239999272e-05 -4.44914585173e-05 +UniRef50_UPI0004647121 hypothetical protein 3.26872267709e-06 9.2677761151e-05 8.94090384739e-05 +UniRef50_UPI00044159A7 cwf21 domain containing protein, partial 5.09910326125e-05 2.52683094059e-05 -2.57227232066e-05 +UniRef50_Q5M4T5 0.00761793149845 0.00576697869196 -0.00185095280649 +UniRef50_O87656 Iron hydroxamate import system permease protein FhuB 0.00261733815291 0.00138462431863 -0.00123271383428 +UniRef50_M1MMU8 0.000199043610132 0.00300362227614 0.00280457866601 +UniRef50_J7RCA7 0.00545297193947 0.000362351785524 -0.00509062015395 +UniRef50_I0AL38 3 oxoacyl [acyl carrier protein] reductase 0.0160072257179 0.00214648353327 -0.0138607421846 +UniRef50_P45468 UPF0718 protein YraQ 0.00223580355969 0.000847832275355 -0.00138797128433 +UniRef50_R9SN00 Transcriptional regulator ArsR family 0.00405368916017 0.000256797134949 -0.00379689202522 +UniRef50_Q07211 Fructokinase 0.00485075668772 0.00360470493283 -0.00124605175489 +UniRef50_Q99UM3 Probable cell wall hydrolase LytN 0.00631799487022 0.000951283493776 -0.00536671137644 +UniRef50_Q4L691 Phosphate import ATP binding protein PstB 2.88489690468e-05 0.000178390342974 0.000149541373927 +UniRef50_I0C432 Homoserine dehydrogenase 0.025512920913 0.00962826165726 -0.0158846592557 +UniRef50_F0MX64 Nickel dependent hydrogenase, b type cytochrome subunit 0.000352345097598 0.0056724264365 0.0053200813389 +UniRef50_P9WNP6 3 hydroxybutyryl CoA dehydrogenase 9.28238080939e-06 0.000283226390587 0.000273944009778 +UniRef50_UPI00036B09C8 hypothetical protein 4.59748784954e-07 2.80608149564e-06 2.34633271069e-06 +UniRef50_B1R255 Cell wall binding repeat domain protein 0.00025334630124 0.000888965254305 0.000635618953065 +UniRef50_S9QXB6 0.000107134058989 3.44910750752e-05 -7.26429839138e-05 +UniRef50_M9VCS0 9.41361568159e-05 0.00285582849635 0.00276169233953 +UniRef50_UPI00035E4AA0 hypothetical protein 9.0176990756e-06 1.26421157621e-05 3.6244166865e-06 +UniRef50_I6T6X2 Protein BglB 0.00342913241115 0.00284425452579 -0.00058487788536 +UniRef50_A0A024HX75 2.05694976103e-05 9.91378879242e-06 -1.06557088179e-05 +UniRef50_P73662 Phosphate acetyltransferase 3.99675354017e-06 7.52091115266e-06 3.52415761249e-06 +UniRef50_W8RVD2 ATPase of the AAA+ class 0.000130006693838 4.5610595622e-05 -8.4396098216e-05 +UniRef50_I0C816 Nitrogen regulation protein NIFR3 3.53894363537e-05 6.2401200814e-05 2.70117644603e-05 +UniRef50_UPI00047AA101 hypothetical protein 3.10917100259e-06 6.81949597648e-06 3.71032497389e-06 +UniRef50_UPI00046A4480 hypothetical protein 2.42626794625e-05 2.14704971228e-05 -2.7921823397e-06 +UniRef50_UPI00028825F3 multidrug ABC transporter permease 0.000227497471899 5.02936142125e-06 -0.000222468110478 +UniRef50_D3NVZ1 5.37917953464e-05 1.74564403813e-05 -3.63353549651e-05 +UniRef50_UPI000190AB93 branched chain amino acid aminotransferase 7.40178192707e-05 6.16403354792e-05 -1.23774837915e-05 +UniRef50_A0A022S140 4.40648613448e-05 0.000326307066793 0.000282242205448 +UniRef50_B0V541 0.000220322561583 0.00742363668812 0.00720331412654 +UniRef50_J2PC13 Arabinose efflux permease family protein 2.96451517059e-06 6.01876194731e-06 3.05424677672e-06 +UniRef50_B2A2G4 Ribosomal RNA small subunit methyltransferase H 6.47341342888e-06 6.8406330452e-06 3.6721961632e-07 +UniRef50_A0Q2Z5 ATP synthase gamma chain 0.000274202897477 0.00147606336038 0.0012018604629 +UniRef50_M1LPW4 0.00065057739139 0.00182198318117 0.00117140578978 +UniRef50_UPI00034DD1B3 hypothetical protein 0.000110289465181 3.70037767062e-05 -7.32856884748e-05 +UniRef50_A6LYK1 0.000157285828689 0.00058359593005 0.000426310101361 +UniRef50_UPI000363AA5C MULTISPECIES 2.67370096927e-05 1.45142046012e-05 -1.22228050915e-05 +UniRef50_B9ISU4 1.93769381063e-05 3.56276330317e-05 1.62506949254e-05 +UniRef50_D4HF88 Amino acid peptide transporter 0.000169768830967 0.00669466693541 0.00652489810444 +UniRef50_Q39FJ3 Hydroxypyruvate isomerase 0.000149598146176 0.000461432351874 0.000311834205698 +UniRef50_V9XDD0 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.000109099996778 0.00113476520694 0.00102566521016 +UniRef50_W1HEW1 DNA topology modulation protein 1.85592008538e-05 1.68355298619e-05 -1.7236709919e-06 +UniRef50_L0SAB5 Fusion of IS1381 orf A and B 1.78509671792e-05 0.00223625007784 0.00221839911066 +UniRef50_Q2NYD7 Indole 3 glycerol phosphate synthase 0.00100468022574 0.00228316820623 0.00127848798049 +UniRef50_E5U188 0.000254346600275 8.91690437462e-05 -0.000165177556529 +UniRef50_E4LMM6 HD domain protein 1.84577554616e-05 2.34957561941e-05 5.0380007325e-06 +UniRef50_Q49W87 Na H(+) antiporter subunit E1 0.0167931114181 0.00270143782698 -0.0140916735911 +UniRef50_UPI0003A7FBFE side tail fiber protein 8.21673355952e-06 0.000179259035012 0.000171042301452 +UniRef50_UPI0003626812 hypothetical protein 0.000103126891252 1.631480042e-05 -8.6812090832e-05 +UniRef50_UPI000381F4EB hypothetical protein 4.03856679871e-06 1.28047416867e-05 8.76617488799e-06 +UniRef50_P08368 Transcriptional regulatory protein CreB 0.00197804155607 0.000535317290393 -0.00144272426568 +UniRef50_W4N2B7 UPF0176 protein X964_08780 0.000390200610964 0.00710693968419 0.00671673907323 +UniRef50_UPI0004747C9B hypothetical protein 0.000713383940696 0.000122730661875 -0.000590653278821 +UniRef50_F2J6W6 Transcriptional regulator 0.00120321853091 0.000588322380236 -0.000614896150674 +UniRef50_UPI0003754665 hypothetical protein, partial 6.21599282306e-05 8.77136706163e-05 2.55537423857e-05 +UniRef50_M3HZS8 3.06709789931e-05 8.04105305025e-06 -2.26299259429e-05 +UniRef50_UPI0004745709 iron hydroxamate transporter permease subunit, partial 1.83188231742e-05 3.4792692823e-05 1.64738696488e-05 +UniRef50_F2JM58 Transcriptional regulator, PucR family 0.000210317289469 0.00136478127803 0.00115446398856 +UniRef50_UPI0004785665 hypothetical protein 8.43217723264e-06 0.000249816181669 0.000241384004436 +UniRef50_UPI000361AD47 flagellar P ring protein FlgI 2.25926506978e-05 2.31726511259e-05 5.800004281e-07 +UniRef50_Q6A615 9.25967266145e-05 0.00456809170202 0.00447549497541 +UniRef50_D4SL88 L ribulose 5 phosphate 3 epimerase UlaE 7.13473408885e-05 2.63127201163e-05 -4.50346207722e-05 +UniRef50_B9KN41 0.00747354552495 0.00128508363134 -0.00618846189361 +UniRef50_UPI00046AB541 MULTISPECIES 7.1351855149e-05 2.90060047643e-05 -4.23458503847e-05 +UniRef50_UPI0002195D2E peptide ABC transporter ATP binding protein 5.57782563993e-05 1.7026168218e-05 -3.87520881813e-05 +UniRef50_C5N2Z6 LPXTG motif cell wall anchor domain protein 0.0343176072486 0.000962989256073 -0.0333546179925 +UniRef50_R6A8H0 0.00178746751519 0.000676916656792 -0.0011105508584 +UniRef50_UPI000463E95A hypothetical protein 2.53026541394e-05 4.45881564215e-06 -2.08438384972e-05 +UniRef50_UPI0002D6C4DC hypothetical protein 0.000129116750375 1.44800447745e-05 -0.000114636705601 +UniRef50_UPI00047EFE08 macrolide transporter 7.78025221064e-06 4.87888741877e-06 -2.90136479187e-06 +UniRef50_UPI00035CFCF8 hypothetical protein 3.31563090706e-05 4.48996758491e-05 1.17433667785e-05 +UniRef50_UPI0003AEE1CA PREDICTED 1.28383213376e-05 3.36849617873e-05 2.08466404497e-05 +UniRef50_C6DJF9 Protein ViaA 0.00233235618564 0.000431799027627 -0.00190055715801 +UniRef50_R5J6V4 0.000324926066261 0.000813307218547 0.000488381152286 +UniRef50_P0ACI1 Right origin binding protein 0.00459072391409 0.000204371422282 -0.00438635249181 +UniRef50_U3T5M8 Acetyltransferase 0.000224249102288 0.00309169605713 0.00286744695484 +UniRef50_UPI0004634FA1 hypothetical protein 2.18078389698e-05 3.40634296299e-05 1.22555906601e-05 +UniRef50_A3PJF7 Ribosome recycling factor 0.017299628818 0.00168752402968 -0.0156121047883 +UniRef50_O28437 Putative ABC transporter ATP binding protein AF_1841 5.51470206823e-05 2.75118235993e-05 -2.7635197083e-05 +UniRef50_D4HE05 0.000838172009978 0.00786400359709 0.00702583158711 +UniRef50_A6LZK4 0.00146584990493 0.00179420528583 0.0003283553809 +UniRef50_UPI00029B0F13 NADH dehydrogenase subunit D 2.44720981649e-05 3.18146602639e-05 7.342562099e-06 +UniRef50_UPI00038304E6 hypothetical protein M271_24355 2.91594715021e-05 2.07671794396e-05 -8.3922920625e-06 +UniRef50_G3ZK67 Putative Mg chelatase like protein 7.96225869204e-06 1.28176587508e-05 4.85540005876e-06 +UniRef50_M4YVT1 7.85338395664e-05 0.000193017454369 0.000114483614803 +UniRef50_I0EPZ1 L lactate permease 0.000445879151223 0.00894735818745 0.00850147903623 +UniRef50_O34943 Putative tRNA binding protein YtpR 0.00931248616675 0.00339734594586 -0.00591514022089 +UniRef50_R9SJS2 Helicase 0.00253928950182 0.000580886733011 -0.00195840276881 +UniRef50_A4VHU4 Exonuclease SbcD 0.000647880867584 0.000210940503716 -0.000436940363868 +UniRef50_A5UM89 Adhesin like protein 0.00284270224698 0.000516472711475 -0.00232622953551 +UniRef50_Q9HWB8 Nuclease SbcCD subunit C 0.00055271194294 0.000158548466208 -0.000394163476732 +UniRef50_A3PFK8 0.00111792077592 0.000335352827567 -0.000782567948353 +UniRef50_UPI00047ACA41 hypothetical protein 4.5889840075e-06 6.59848345859e-06 2.00949945109e-06 +UniRef50_E9B5X1 7.95313633543e-07 5.73397255617e-06 4.93865892263e-06 +UniRef50_S6PZF6 Sulfur transfer complex subunit TusD 0.000124611848461 0.000198890983614 7.4279135153e-05 +UniRef50_UPI00046865DF hypothetical protein 2.07261629439e-05 1.36076070638e-05 -7.1185558801e-06 +UniRef50_W0YVS4 Respiratory nitrate reductase subunit beta 2.83433996195e-05 0.000106351641518 7.80082418985e-05 +UniRef50_Q9HI37 Probable family 20 transposase 0.00267400994058 0.000885634619393 -0.00178837532119 +UniRef50_UPI0003F0B2FB PREDICTED 1.86557023648e-06 1.37006703648e-05 1.18351001283e-05 +UniRef50_Q88J89 Ribose transport permease protein, putative 0.000676950966375 0.000856233185307 0.000179282218932 +UniRef50_P43531 Inner membrane transport protein YnfM 0.00362628754461 0.000619785889069 -0.00300650165554 +UniRef50_UPI00027FC17F 1.05325272845e-05 0.000233585255724 0.000223052728439 +UniRef50_G1XXP0 Transposase 0.000417486879282 0.00022276676701 -0.000194720112272 +UniRef50_UPI000471C1F1 hypothetical protein, partial 1.20853927633e-05 7.84337968328e-06 -4.24201308002e-06 +UniRef50_M9VD06 UvrD REP helicase 0.000114025437615 0.00527992133776 0.00516589590014 +UniRef50_A5UJE9 Predicted ATPase 0.00230159850064 0.00161060692165 -0.00069099157899 +UniRef50_Q2N696 0.000105360291355 0.000643522441542 0.000538162150187 +UniRef50_F0KNV9 Acyl CoA dehydrogenase 0.000229834539741 0.00681535197805 0.00658551743831 +UniRef50_UPI0004736CBD membrane protein, partial 0.00013592247715 0.000226640074328 9.0717597178e-05 +UniRef50_U3SV04 0.00322349338654 0.00221209138337 -0.00101140200317 +UniRef50_C2ESX2 0.000399100578701 0.000236470547981 -0.00016263003072 +UniRef50_C3BKL0 ABC transporter 0.00787893729103 0.000727865306427 -0.0071510719846 +UniRef50_O27283 Fibrillarin like rRNA tRNA 2 O methyltransferase 0.00136328801208 0.000289526181564 -0.00107376183052 +UniRef50_W0EAD6 HAD family hydrolase 0.000434842847951 0.000404543431768 -3.0299416183e-05 +UniRef50_UPI0004710EDE hypothetical protein 1.90475012029e-05 7.38127436134e-05 5.47652424105e-05 +UniRef50_N5R5Q8 0.000373748503814 0.000615243135819 0.000241494632005 +UniRef50_Q3BRW8 1 deoxy D xylulose 5 phosphate synthase 0.000876105585201 0.00440606900191 0.00352996341671 +UniRef50_UPI000369DDA4 hypothetical protein 1.30381858997e-05 4.86985554716e-06 -8.16833035254e-06 +UniRef50_F7YLR6 1.3010858115e-05 9.61388285439e-05 8.31279704289e-05 +UniRef50_U3SVV6 2 3 dephospho CoA 0.0111368347657 0.00117940697512 -0.00995742779058 +UniRef50_E3EMN0 Oxidoreductase, aldo keto reductase family 0.000285717979776 0.00447078397209 0.00418506599231 +UniRef50_UPI0003B63C22 magnesium chelatase 9.85956391135e-06 2.73759937854e-05 1.7516429874e-05 +UniRef50_X5EKC8 Ferric alcaligin siderophore receptor 7.75656141421e-05 0.003833703957 0.00375613834286 +UniRef50_P0AGA8 Transcriptional regulatory protein UhpA 0.00179373257937 0.00339772099241 0.00160398841304 +UniRef50_E4D778 6.46679036737e-05 0.00132490597001 0.00126023806634 +UniRef50_R7IGH5 2.45494199713e-05 8.36761924367e-05 5.91267724654e-05 +UniRef50_Q9RSP4 0.00054874375358 0.0484260994899 0.0478773557363 +UniRef50_UPI0001BF71FE hypothetical protein SMAC_09973 5.48887263285e-05 5.034278494e-05 -4.5459413885e-06 +UniRef50_A7X4U4 ATP synthase gamma chain 0.0193777626299 0.00307049177465 -0.0163072708553 +UniRef50_Q6A674 0.000462227741456 0.0103961208688 0.00993389312734 +UniRef50_P77619 UPF0214 protein YfeW 0.0027173400256 0.00065056967571 -0.00206677034989 +UniRef50_P32134 0.00408290859028 0.000604921056402 -0.00347798753388 +UniRef50_C1KWD9 Bifunctional protein PyrR 0.00148652291857 0.00511312006677 0.0036265971482 +UniRef50_F0KEU9 0.000881739632676 0.00621446563328 0.0053327260006 +UniRef50_P18185 Carbamoyl phosphate synthase arginine specific large chain 1.73131198462e-05 1.20900412456e-05 -5.2230786006e-06 +UniRef50_Q4UYN4 NAD NADP dependent betaine aldehyde dehydrogenase 0.00163439717145 0.000472835792305 -0.00116156137914 +UniRef50_P32139 0.00194063410902 0.00094917395303 -0.00099146015599 +UniRef50_UPI0004713D39 phenylacetic acid degradation protein 1.68709211814e-05 3.23779767256e-05 1.55070555442e-05 +UniRef50_J0BXE7 Plasmid pRiA4b ORF 3 like protein 0.000645506213359 0.000129501792169 -0.00051600442119 +UniRef50_Q3JLT3 DGPF domain protein 4.15271819029e-05 2.75652923013e-05 -1.39618896016e-05 +UniRef50_G7MBY5 ABC transporter related protein 0.000525683569173 0.00104941685076 0.000523733281587 +UniRef50_N4Y922 Phosphatidylglycerol lysyltransferase 0.00283523710223 0.000777707978657 -0.00205752912357 +UniRef50_G7SA54 Phosphodiesterase, MJ0936 family 0.0016571318731 0.00726608207777 0.00560895020467 +UniRef50_H8GT24 Transpeptidase transglycosylase component 3.95549412039e-05 0.026598505383 0.0265589504418 +UniRef50_UPI0004761F50 iron ABC transporter ATP binding protein 2.55081907644e-05 2.48588890709e-05 -6.493016935e-07 +UniRef50_Q0BVN0 Chorismate synthase 9.12599145581e-06 5.35548258598e-05 4.4428834404e-05 +UniRef50_Q9K411 4.62370076349e-06 0.000567264472049 0.000562640771286 +UniRef50_F2TZ40 3.26364463138e-05 1.04767823075e-05 -2.21596640063e-05 +UniRef50_B7I864 TonB dependent receptor 0.000164949447163 0.00764567868927 0.00748072924211 +UniRef50_C5N344 0.0103244218326 0.00194914795886 -0.00837527387374 +UniRef50_UPI00046610C2 sugar ABC transporter ATP binding protein 1.75617902777e-05 5.44454279931e-05 3.68836377154e-05 +UniRef50_C5N340 0.0118924899102 0.00506579563768 -0.00682669427252 +UniRef50_UPI00037883B0 hypothetical protein, partial 1.34787958167e-05 2.54784673162e-05 1.19996714995e-05 +UniRef50_P0AF43 0.00291307960366 0.000545657673805 -0.00236742192986 +UniRef50_Q35826 Cytochrome c oxidase subunit 3 1.8949671013e-05 5.54568853989e-05 3.65072143859e-05 +UniRef50_T9JSA5 DNA binding transcriptional activator 0.00207845350801 0.0005106351326 -0.00156781837541 +UniRef50_K2KB78 Chemotactic signal response protein 0.000137868744676 7.64906984008e-05 -6.13780462752e-05 +UniRef50_Q47KH4 Phosphoribosylaminoimidazole succinocarboxamide synthase 2.07017677382e-05 0.000680401561879 0.000659699794141 +UniRef50_G8PRB6 TRAP dicarboxylate transporter, DctM subunit 6.00443695741e-06 5.04354526996e-06 -9.6089168745e-07 +UniRef50_Q3IUZ1 Phytochrome sensor diguanylate cyclase phosphodiesterase 0.0260999277124 0.00516613635614 -0.0209337913563 +UniRef50_I0JA88 0.00953694581898 0.00200871636663 -0.00752822945235 +UniRef50_Q5XL59 Hypothetical 18.9 kDa protein 0.000179476162812 0.00334402783705 0.00316455167424 +UniRef50_A7GHG0 CBS domain protein 0.00107227235935 0.000298802737126 -0.000773469622224 +UniRef50_A4WNP3 0.000297398942163 0.000565773370924 0.000268374428761 +UniRef50_R8ZFM2 Two component sensor 0.000120859975083 0.000658107476811 0.000537247501728 +UniRef50_Q9RU62 Transcription repair coupling factor 7.86217276021e-05 0.0348094669499 0.0347308452223 +UniRef50_I3WYQ6 0.000591048949949 6.16323989078e-05 -0.000529416551041 +UniRef50_H1GBP2 LPXTG motif protein cell wall anchor domain protein 3.05704068959e-06 8.1796823781e-06 5.12264168851e-06 +UniRef50_UPI000262662B hypothetical protein 2.33110112305e-05 2.25728317477e-05 -7.381794828e-07 +UniRef50_B7Z2X9 Gamma enolase 4.38507394313e-06 5.3594191671e-05 4.92091177279e-05 +UniRef50_UPI00029A8E8E type I restriction enzyme EcoKI subunit R 2.43580403619e-05 7.32568557903e-05 4.88988154284e-05 +UniRef50_UPI0003C15755 5.77138047469e-05 9.5558275409e-06 -4.8157977206e-05 +UniRef50_H9K7J8 5.23055377949e-05 8.22754570197e-05 2.99699192248e-05 +UniRef50_P52228 Thioredoxin C 3 0.000721310806725 0.00478031232762 0.00405900152089 +UniRef50_Q3J3B6 0.0112881011445 0.00330605728405 -0.00798204386045 +UniRef50_D4HE60 Release factor glutamine methyltransferase 0.000272225472725 0.00561082195645 0.00533859648373 +UniRef50_Q2YZ40 0.0299067150563 0.00353138383334 -0.026375331223 +UniRef50_UPI0003B3D851 single stranded DNA binding protein 2.3110364842e-05 0.00122673890481 0.00120362853997 +UniRef50_Q8Z8E5 Putative potassium transporting ATPase B chain 0.000391929844405 0.00200251254745 0.00161058270304 +UniRef50_Q9ZKX5 Catalase 2.06534462778e-05 0.00425760537813 0.00423695193185 +UniRef50_Q9PIN2 Zinc transporter ZupT 0.0057333945718 0.000496330596971 -0.00523706397483 +UniRef50_D3DZ70 Methanogenesis marker protein 17 0.00351478486697 0.00108846967428 -0.00242631519269 +UniRef50_UPI000299EEED hypothetical protein, partial 3.61599541858e-05 6.70594975514e-05 3.08995433656e-05 +UniRef50_Q2SDW0 Nucleoside diphosphate kinase 0.0233934192389 0.0334221804605 0.0100287612216 +UniRef50_Q6F945 0.000133387275209 0.00707230063586 0.00693891336065 +UniRef50_E8U988 Acetylornithine acetyl lysine aminotransferase 0.000358586488294 0.0438784058726 0.0435198193843 +UniRef50_F9YXA3 Succinate dehydrogenase cytochrome b subunit, b558 family 0.000206276496643 0.00358859618098 0.00338231968434 +UniRef50_E3L9A9 1.52261947778e-05 0.000934832347121 0.000919606152343 +UniRef50_V4STF9 Ribosomal RNA small subunit methyltransferase E 8.52342509105e-05 4.16300354319e-05 -4.36042154786e-05 +UniRef50_S6AEF9 2.06407606422e-06 1.16355605131e-05 9.57148444888e-06 +UniRef50_F4A619 GTPase HflX 0.000685961470786 0.00252369536673 0.00183773389594 +UniRef50_T1Y9P7 UDP N acetylmuramoylalanyl D glutamate 2, 6 diaminopimelate ligase 0.0233279798183 0.00490515711121 -0.0184228227071 +UniRef50_B2HZE1 Enoyl CoA hydratase carnithine racemase 0.000181483648491 0.00557309594397 0.00539161229548 +UniRef50_I3US46 Major facilitator superfamily metabolite H symporter 0.000808792312943 0.00169209626092 0.000883303947977 +UniRef50_UPI00037E89DC hypothetical protein 7.14083568516e-06 4.15666081368e-05 3.44257724516e-05 +UniRef50_A7FQL2 UPF0313 protein CLB_0243 0.000653346308239 0.000964183671603 0.000310837363364 +UniRef50_P75915 Chaperone protein YcdY 0.00942729514805 0.00214719755147 -0.00728009759658 +UniRef50_B6IPB9 0.000236411963307 0.000296207677396 5.9795714089e-05 +UniRef50_UPI00036011C5 hypothetical protein 3.16710447754e-05 2.66460758575e-05 -5.0249689179e-06 +UniRef50_S5CU75 Transposase like protein 0.00077852784729 0.0314762031902 0.0306976753429 +UniRef50_I6XPP6 Methylmalonyl CoA carboxyltransferase 5S subunit 0.000218373341773 0.00742929790072 0.00721092455895 +UniRef50_UPI0003B33B7C DNA binding protein 8.99997087647e-05 4.42620591987e-05 -4.5737649566e-05 +UniRef50_UPI0003625CBC hypothetical protein 4.23940390441e-06 5.516798263e-05 5.09285787256e-05 +UniRef50_A3PJ50 Binding protein dependent transport systems inner membrane component 0.00674855654504 0.000241732637264 -0.00650682390778 +UniRef50_C9SAM1 Ribosomal RNA processing protein 1.69805020269e-06 3.03420016623e-05 2.86439514596e-05 +UniRef50_UPI000368DEE4 hypothetical protein 0.000112694511577 0.00741567422137 0.00730297970979 +UniRef50_UPI00029B09D5 CRISPR associated protein Csn1 1.33650924617e-05 0.000133988849048 0.000120623756586 +UniRef50_Q7MWR7 CTP synthase 7.48871386247e-06 0.000145450787295 0.000137962073433 +UniRef50_T1XRQ5 Teichoic acid translocation ATP binding protein, putative 0.0101175444633 0.00166715129561 -0.00845039316769 +UniRef50_I7ENI8 Thioesterase like protein 0.00577768651925 0.0012423760577 -0.00453531046155 +UniRef50_A0A021DBD0 D isomer specific 2 hydroxyacid dehydrogenase 0.00113023091057 0.00220943414517 0.0010792032346 +UniRef50_UPI00046F8C7A membrane protein 0.000111345038176 0.000167883185584 5.6538147408e-05 +UniRef50_A5UNS3 Putative ATPase 0.00220288974861 0.000515403077341 -0.00168748667127 +UniRef50_M9RKI3 0.000145922941448 0.000109442436054 -3.6480505394e-05 +UniRef50_T0C715 Thioesterase family protein 2.1844247618e-05 0.000778460223752 0.000756615976134 +UniRef50_D8JFV1 0.000296454965064 0.00352742596194 0.00323097099688 +UniRef50_Q5HQT4 0.0284274996944 0.00213090672396 -0.0262965929704 +UniRef50_UPI0004412F07 mitochondrial ribosomal protein subunit L2 2.3885510543e-05 0.000103551053693 7.966554315e-05 +UniRef50_P37344 Psp operon transcriptional activator 0.00294006308441 0.000771038796131 -0.00216902428828 +UniRef50_C6CXV0 D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein 0.0015222163604 0.000756144430105 -0.000766071930295 +UniRef50_Q8CQM7 0.0228228880897 0.00243614402236 -0.0203867440673 +UniRef50_A1SM80 Biotin synthase 5.03400278712e-06 0.000135953500361 0.000130919497574 +UniRef50_A5UKE2 0.0065112586955 0.000445201063114 -0.00606605763239 +UniRef50_A6LZ61 Aldose 1 epimerase 0.000116989459351 0.00201414771985 0.0018971582605 +UniRef50_UPI0003B60CB5 hypothetical protein 2.83494797071e-06 1.29827551119e-05 1.01478071412e-05 +UniRef50_C7Q9W5 4.4257978224e-06 0.000907632254461 0.000903206456639 +UniRef50_UPI00046D8C08 hypothetical protein 7.53665221244e-06 3.08935621506e-05 2.33569099382e-05 +UniRef50_UPI000382B4D1 hypothetical protein 8.84253717243e-05 2.19581178471e-05 -6.64672538772e-05 +UniRef50_Q7NZP2 Sigma B regulator protein 2.01521892731e-05 0.00351410074234 0.00349394855307 +UniRef50_Q6AAT0 Cysteine tRNA ligase 1.70699117237e-05 0.009131389373 0.00911431946128 +UniRef50_G7LXC6 Lytic transglycosylase catalytic 0.000199378826523 0.00119699234837 0.000997613521847 +UniRef50_E9KNQ0 Truncated transposase 0.000658405794513 0.00201718554824 0.00135877975373 +UniRef50_UPI000467240F hypothetical protein 6.34126140502e-06 6.96436251715e-06 6.2310111213e-07 +UniRef50_Q48677 Glutamyl aminopeptidase 0.00468701067804 0.00706323293218 0.00237622225414 +UniRef50_UPI000474A2DB MarR family transcriptional regulator 0.000752274713467 0.000387300634803 -0.000364974078664 +UniRef50_A6M168 Diguanylate cyclase 0.000134177484187 0.00207813613061 0.00194395864642 +UniRef50_O27596 Tungsten formylmethanofuran dehydrogenase, subunit H 0.00704285182393 0.000509166733097 -0.00653368509083 +UniRef50_F0YIK7 Expressed protein 4.00260814062e-05 2.95200521756e-05 -1.05060292306e-05 +UniRef50_UPI00032995A5 1.26546153199e-05 6.82935670758e-06 -5.82525861232e-06 +UniRef50_Q9RXU7 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.000171404197684 0.0221185688458 0.0219471646481 +UniRef50_E8U9D7 Nicotinate phosphoribosyltransferase 0.000163710997586 0.00667309409105 0.00650938309346 +UniRef50_UPI00046D1D34 hypothetical protein 1.40616078349e-05 7.59358288535e-05 6.18742210186e-05 +UniRef50_A5W7R4 Regulatory inactivation of DnaA Hda protein 0.00102080861635 0.000255685459043 -0.000765123157307 +UniRef50_UPI00047D437C cobalamin adenosyltransferase 1.04713333894e-05 2.27572033356e-05 1.22858699462e-05 +UniRef50_A3PR78 Peptidase S15 0.00580205829008 0.00207092641532 -0.00373113187476 +UniRef50_A9MUH4 0.000122576233285 0.000261458220516 0.000138881987231 +UniRef50_B7V7M2 Cysteine synthase 0.00123382869724 0.000303407573826 -0.000930421123414 +UniRef50_P76113 NADPH dependent curcumin reductase 0.00935060730476 0.00323517155805 -0.00611543574671 +UniRef50_L8ND35 Sigma 54 dependent transcriptional regulator 0.00078768567052 0.000740862020711 -4.6823649809e-05 +UniRef50_UPI00041D3C43 chromosomal replication initiation protein 4.45101593999e-06 5.31462451219e-06 8.636085722e-07 +UniRef50_B9TKF4 0.000463161329974 0.000961149009716 0.000497987679742 +UniRef50_K5DHJ7 0.000189680917929 5.71981571475e-05 -0.000132482760781 +UniRef50_UPI00037794A5 hypothetical protein 0.000331128060398 0.00386775464603 0.00353662658563 +UniRef50_G7UA09 Glycosyl hydrolase family 38 N terminal domain protein 3.62850998621e-05 0.00689659070384 0.00686030560398 +UniRef50_D7HX96 Acetate permease ActP 0.00214291167934 0.000943600812013 -0.00119931086733 +UniRef50_G8LP59 YdiK 0.000324415046484 0.000171695758841 -0.000152719287643 +UniRef50_UPI000255BF67 heptaprenyl diphosphate synthase subunit II 2.90601839633e-05 4.37765018523e-05 1.4716317889e-05 +UniRef50_UPI0002DAB67A hypothetical protein 4.51598789486e-05 1.79975945704e-05 -2.71622843782e-05 +UniRef50_V5NNB3 Iron regulated outer membrane protein FrbP_1 0.000109144223542 0.00239652893878 0.00228738471524 +UniRef50_Q0SPS1 DHH family protein 0.000307896119172 0.000761014072865 0.000453117953693 +UniRef50_UPI00047BD1F1 methionine gamma lyase 2.59735525887e-05 7.23317633179e-06 -1.87403762569e-05 +UniRef50_F9FAZ9 ATP dependent Clp protease proteolytic subunit 0.000254484936301 0.000889409481707 0.000634924545406 +UniRef50_A8LSJ7 Fe S metabolism associated SufE 0.000794794355656 7.1323222442e-05 -0.000723471133214 +UniRef50_A5UMA7 0.0017447023499 0.00202861426839 0.00028391191849 +UniRef50_UPI0003628360 hypothetical protein 4.91017747414e-05 1.33407276149e-05 -3.57610471265e-05 +UniRef50_A5UL43 Oligosaccharyl transferase, STT3 subunit 0.00373692515796 0.00112732882079 -0.00260959633717 +UniRef50_UPI000470DB6F hypothetical protein, partial 7.87580963672e-06 1.63779145671e-05 8.50210493038e-06 +UniRef50_E3D3R3 LPS biosynthesis protein related protein 0.000103044400964 0.00214631090103 0.00204326650007 +UniRef50_A6M109 Auxin Efflux Carrier 0.00012653161638 0.00105118232833 0.00092465071195 +UniRef50_Q03JU0 Transposase 0.0279697671823 0.0140827310523 -0.01388703613 +UniRef50_K6X7D8 0.000273979409355 0.000104865045787 -0.000169114363568 +UniRef50_D2NRJ6 Molybdopterin guanine dinucleotide biosynthesis protein A 4.18064878025e-06 1.82094986351e-05 1.40288498549e-05 +UniRef50_D4GB36 FeS assembly ATPase SufC 0.000758052080383 0.000867666143222 0.000109614062839 +UniRef50_E6NPZ4 Methyl accepting chemotaxis protein 0.000138388326188 0.00560959451001 0.00547120618382 +UniRef50_Q56954 Chelated iron transport system membrane protein YfeC 0.00466394107148 0.00116953026281 -0.00349441080867 +UniRef50_P24216 Flagellar hook associated protein 2 0.00217127191781 0.00202180037365 -0.00014947154416 +UniRef50_X5EK07 6.17564031299e-05 0.000201999711568 0.000140243308438 +UniRef50_A0A011NP07 4 alpha glucanotransferase 1.81349195652e-05 0.000776063703528 0.000757928783963 +UniRef50_P45682 Lipoprotein NlpD LppB homolog 0.00060916906941 0.00041601110431 -0.0001931579651 +UniRef50_I6T6E7 0.00476411949327 0.00175296451659 -0.00301115497668 +UniRef50_G7I860 NADH ubiquinone oxidoreductase chain 3.92025421638e-05 0.000115111400054 7.59088578902e-05 +UniRef50_O00217 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 7.6099688775e-05 1.0561909728e-05 -6.5537779047e-05 +UniRef50_U3T764 0.000442366393186 0.00166037704991 0.00121801065672 +UniRef50_Q6VRN6 Cag17 0.000258257232969 0.00153093308729 0.00127267585432 +UniRef50_A6TBU8 L rhamnonate dehydratase 0.00222307400377 0.00016528920067 -0.0020577848031 +UniRef50_UPI0003B65FB6 MULTISPECIES 1.45228010701e-05 3.04929786187e-05 1.59701775486e-05 +UniRef50_UPI00042B11A5 Urease isoform 4 1.13374397336e-05 2.37308179848e-05 1.23933782512e-05 +UniRef50_A6M2F4 Response regulator receiver protein 0.000174430559477 0.00161400728783 0.00143957672835 +UniRef50_Q3IV75 RES domain containing protein 0.0178043113312 0.00244403832052 -0.0153602730107 +UniRef50_A3PRF6 D amino acid dehydrogenase small subunit 0.000604843248227 0.00131841646354 0.000713573215313 +UniRef50_C6ST78 Serine protease 0.00592238070429 0.00519222251743 -0.00073015818686 +UniRef50_A3LGR5 Hypothetical 0.000155380294453 6.85413025425e-05 -8.68389919105e-05 +UniRef50_F9V7S5 Metallo beta lactamase superfamily protein 0.00569590026432 0.00152106934186 -0.00417483092246 +UniRef50_A6M2T3 Phosphotransferase system, EIIC 0.000334460340093 0.00262156722985 0.00228710688976 +UniRef50_UPI0002B42FAD PREDICTED 0.000422558942747 3.57040782652e-05 -0.000386854864482 +UniRef50_A3PXZ4 Uridylate kinase 0.000341640384292 0.00258387222873 0.00224223184444 +UniRef50_UPI0004654176 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000247244038159 0.000414910713246 0.000167666675087 +UniRef50_Q9RXQ2 Pyruvate dehydrogenase E1 component 4.43579305384e-05 0.0448182921925 0.044773934262 +UniRef50_E6SJV1 TRAP transporter solute receptor, TAXI family 1.22505073205e-05 1.00790741798e-05 -2.1714331407e-06 +UniRef50_UPI0003D0B25A PREDICTED 2.88208036847e-05 5.24802227491e-05 2.36594190644e-05 +UniRef50_A7HWY8 3.02691333502e-05 3.8924509416e-05 8.6553760658e-06 +UniRef50_D3V7P4 Multidrug resistance protein MdtC 0.00193114069126 0.000409765965806 -0.00152137472545 +UniRef50_Q57251 Putative L lactate permease 0.000305670500108 0.00282951903646 0.00252384853635 +UniRef50_UPI0003B7A308 MarR family transcriptional regulator 1.33705663331e-05 2.29161791458e-05 9.5456128127e-06 +UniRef50_A9WNC8 ATP synthase subunit beta 1.54715557594e-05 0.011927164214 0.0119116926582 +UniRef50_UPI0003B39EAE riboflavin synthase subunit alpha 7.36331468547e-06 2.41756831109e-05 1.68123684254e-05 +UniRef50_UPI000414CEF0 ATP dependent DNA helicase PcrA 1.94945348971e-05 9.74496669216e-06 -9.74956820494e-06 +UniRef50_A1AZE4 Nucleoside ABC transporter membrane protein 0.00335986080682 0.000801525340307 -0.00255833546651 +UniRef50_Q8TV83 Imidazole glycerol phosphate synthase subunit HisH 2.31354705405e-05 9.2068392276e-06 -1.39286313129e-05 +UniRef50_UPI0003B6B799 diguanylate cyclase 8.50124020438e-06 7.37682655156e-06 -1.12441365282e-06 +UniRef50_Q8DYL9 Glycosyl transferase, family 8 0.000431772176499 0.000147290127271 -0.000284482049228 +UniRef50_E9CIL8 5.6379384589e-05 7.59494312532e-05 1.95700466642e-05 +UniRef50_P10367 Histidine biosynthesis bifunctional protein HisIE 0.00156204051043 0.00243912204065 0.00087708153022 +UniRef50_UPI0003714C23 hypothetical protein 3.9018741801e-05 7.49156200146e-05 3.58968782136e-05 +UniRef50_UPI0003C73FC0 phosphonate ABC transporter 0.000149258751354 4.33446972257e-05 -0.000105914054128 +UniRef50_C1DGV0 Glycosyl transferase, group 1 9.98640182185e-05 0.000156252224977 5.63882067585e-05 +UniRef50_UPI000375CFC4 hypothetical protein 0.000145747741208 3.65044550793e-05 -0.000109243286129 +UniRef50_B7V1T0 Urease subunit beta 7.74442616791e-05 3.83477205946e-05 -3.90965410845e-05 +UniRef50_O34742 Glycine betaine carnitine choline transport system permease protein OpuCD 0.0321664789188 0.0138296580657 -0.0183368208531 +UniRef50_UPI000369F7C5 hypothetical protein 4.51016515952e-06 1.31523064377e-05 8.64214127818e-06 +UniRef50_Q39BJ9 0.000148169841899 2.29293596738e-05 -0.000125240482225 +UniRef50_D0DDW6 Replication protein C 0.000225084197754 6.41021940809e-05 -0.000160982003673 +UniRef50_D6SCB4 ABC transporter, ATP binding protein 0.0202443875171 0.00580152135911 -0.014442866158 +UniRef50_X6K2H2 0.000245083691684 5.51731384167e-05 -0.000189910553267 +UniRef50_X0W523 Marine sediment metagenome DNA, contig 8.18740114287e-06 9.79476848199e-06 1.60736733912e-06 +UniRef50_P31679 Putative metabolite transport protein YaaU 0.00241754832124 0.00095388903908 -0.00146365928216 +UniRef50_V9GEY6 Selenophosphate dependent tRNA 2 selenouridine synthase 3.06716317192e-05 2.45371921675e-05 -6.1344395517e-06 +UniRef50_A0A023SIR8 rRNA methyltransferase 0.00745848439018 0.00467557966167 -0.00278290472851 +UniRef50_UPI00028947D1 hypothetical protein 3.85401552572e-05 1.59736840924e-05 -2.25664711648e-05 +UniRef50_UPI0002F02B73 5 oxopent 3 ene 1,2,5 tricarboxylate decarboxylase 9.82375172877e-06 2.41477877312e-05 1.43240360024e-05 +UniRef50_A9BDW2 Na+ melibiose symporter 2.90166973169e-05 4.29910146347e-06 -2.47175958534e-05 +UniRef50_Q9PDT5 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00969962373736 0.00348631515657 -0.00621330858079 +UniRef50_Q9UQ39 RNA binding protein 2.24666261322e-06 6.21310444839e-05 5.98843818707e-05 +UniRef50_Q8SDK3 Phi PVL orfs 18 19 like protein 0.0211207095346 0.00399663406174 -0.0171240754729 +UniRef50_A6LR61 Diguanylate cyclase 0.000420747673314 0.000842556314044 0.00042180864073 +UniRef50_A5CD22 UDP N acetylmuramate L alanine ligase 1.12271216127e-05 5.2136403565e-06 -6.0134812562e-06 +UniRef50_UPI000374D78C hypothetical protein 1.4659643565e-05 1.02641043653e-05 -4.3955391997e-06 +UniRef50_L5S2T2 2.9257635869e-05 0.00053693946399 0.000507681828121 +UniRef50_A5UN24 Adhesin like protein 0.00270584962373 0.000854616689923 -0.00185123293381 +UniRef50_UPI0003EB198B lactoylglutathione lyase, partial 0.000383168756012 0.000183207817571 -0.000199960938441 +UniRef50_D4YPZ1 4.62201281565e-05 0.000151833781585 0.000105613653428 +UniRef50_UPI000381F0C9 resolvase 5.45648423422e-05 2.78080083112e-05 -2.6756834031e-05 +UniRef50_A9GRS6 5.34334130212e-06 0.000321385808935 0.000316042467633 +UniRef50_Q4QKB5 Dihydroorotate dehydrogenase 9.9026317861e-06 1.66783081622e-05 6.7756763761e-06 +UniRef50_UPI00042C50B5 PREDICTED 2.55460648813e-05 0.000121628143044 9.60820781627e-05 +UniRef50_UPI00041CB2A5 MerR family transcriptional regulator 0.000237609763645 3.23594432694e-05 -0.000205250320376 +UniRef50_B6YRL9 Dihydroorotate dehydrogenase B ), catalytic subunit 0.000449005832347 0.00118517636385 0.000736170531503 +UniRef50_Q0VMD0 Biotin synthase 0.00217654548435 0.0019128712217 -0.00026367426265 +UniRef50_UPI000479EB6C phosphohydrolase 4.3341075591e-06 1.32591091416e-05 8.9250015825e-06 +UniRef50_W4UE45 Hypothetical membrane protein 4.50633543808e-05 0.000258453622052 0.000213390267671 +UniRef50_Q1C165 Phosphopentomutase 0.00297725561472 0.000411712695375 -0.00256554291934 +UniRef50_I6XSN2 Peptidase, M50 family 0.00025927090726 0.00509547304371 0.00483620213645 +UniRef50_W0EW28 Fe S metabolism protein SufE 3.56118085066e-05 0.000991079264076 0.000955467455569 +UniRef50_UPI00047DC7BF hypothetical protein 5.22788846945e-06 1.11036602501e-05 5.87577178065e-06 +UniRef50_UPI00037BA2E6 hypothetical protein 5.75506280517e-06 1.24632472179e-05 6.70818441273e-06 +UniRef50_B0LU82 Putative plasmid transfer protein 1.19565724987e-05 2.80863970495e-05 1.61298245508e-05 +UniRef50_R8X1X2 0.00140563411964 0.000235322099157 -0.00117031202048 +UniRef50_UPI000299FFB6 50S ribosomal protein L6 1.04711803038e-05 0.000358799137379 0.000348327957075 +UniRef50_UPI00036AB26C hypothetical protein 3.68578667178e-05 1.76241611038e-05 -1.9233705614e-05 +UniRef50_A4STH4 Anaerobic nitric oxide reductase flavorubredoxin 0.000961559888062 0.00030097559384 -0.000660584294222 +UniRef50_F2MTI0 3 dehydroquinate synthase 0.00565285676654 0.00381054422471 -0.00184231254183 +UniRef50_Q6L8K7 Acetyl CoA acetyltransferase 1.14451936074e-05 9.38261325791e-05 8.23809389717e-05 +UniRef50_UPI00047E7907 membrane protein 7.78875803448e-06 1.22268826552e-05 4.43812462072e-06 +UniRef50_F6BN92 Tetracycline transcriptional regulator YcdC domain containing protein 0.0148694259993 0.00321942413994 -0.0116500018594 +UniRef50_P50096 Inosine 5 monophosphate dehydrogenase 1 2.22252970972e-05 9.593921748e-06 -1.26313753492e-05 +UniRef50_UPI0003B755F7 integrase, partial 0.000302300534386 1.54252667425e-05 -0.000286875267643 +UniRef50_M1N659 Diguanylate phosphodiesterase 0.000162011154012 0.000297050328755 0.000135039174743 +UniRef50_P0AEA4 Curli production assembly transport component CsgG 0.00299335305764 0.000851875111142 -0.0021414779465 +UniRef50_Q9RXZ7 9.01622545675e-05 0.0149264844492 0.0148363221946 +UniRef50_A0A024E690 8.80749289374e-05 1.1709621389e-05 -7.63653075484e-05 +UniRef50_Q16740 ATP dependent Clp protease proteolytic subunit, mitochondrial 5.74951822303e-06 6.30203818348e-05 5.72708636118e-05 +UniRef50_UPI00046321A5 hypothetical protein 4.55273926335e-05 1.1131607706e-05 -3.43957849275e-05 +UniRef50_E8NEK5 1.10318091125e-05 2.11398089243e-05 1.01079998118e-05 +UniRef50_A8NPH0 8.89217692499e-06 7.66275507963e-06 -1.22942184536e-06 +UniRef50_UPI00041CFDCE hypothetical protein 7.79283912875e-05 6.69724403366e-05 -1.09559509509e-05 +UniRef50_Q2GK85 Malate dehydrogenase 1.90186025744e-05 1.67353528245e-05 -2.2832497499e-06 +UniRef50_Q4TCA6 Chromosome 1 SCAF7036, whole genome shotgun sequence. 9.36006871689e-06 3.40699686329e-05 2.4709899916e-05 +UniRef50_Q9ZL74 Molybdenum cofactor guanylyltransferase 0.000203313818048 0.00305284140119 0.00284952758314 +UniRef50_Q6G5Z1 Putative ABC transporter ATP binding protein SAS2569 0.0120344093833 0.00643679198147 -0.00559761740183 +UniRef50_Q9RV79 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000100484291618 0.0370931619179 0.0369926776263 +UniRef50_O82392 Phosphomethylpyrimidine synthase, chloroplastic 8.57273252495e-05 0.0350158556472 0.034930128322 +UniRef50_UPI0003C10FC0 1.78071968861e-05 6.56615753094e-06 -1.12410393552e-05 +UniRef50_M9S4J7 0.000331236656831 0.000561921379301 0.00023068472247 +UniRef50_Q5ZW64 Flagellar P ring protein 0.00358054901382 0.000938689870759 -0.00264185914306 +UniRef50_UPI000378C9B2 hypothetical protein 8.79989050976e-05 1.11661033964e-05 -7.68328017012e-05 +UniRef50_Q1CEX0 UPF0301 protein YPN_3133 0.00602198628879 1.50680740527e-05 -0.00600691821474 +UniRef50_J9YRU2 0.000853669101669 0.00026565220857 -0.000588016893099 +UniRef50_U5DDJ2 TRAP transporter solute receptor, TAXI family 6.7085528789e-06 4.46587138785e-05 3.79501609996e-05 +UniRef50_K2FX44 1.04065324232e-05 1.92631149696e-05 8.8565825464e-06 +UniRef50_J2LA76 0.000624867057649 0.000161976962407 -0.000462890095242 +UniRef50_UPI00046889D2 hypothetical protein 1.1641202422e-05 3.20591483159e-05 2.04179458939e-05 +UniRef50_UPI00022CA944 PREDICTED 3.4286044744e-06 5.38475288585e-06 1.95614841145e-06 +UniRef50_X7UD14 Protein dipZ 2.88991320424e-05 2.18035387061e-05 -7.0955933363e-06 +UniRef50_UPI00032895ED PREDICTED 1.74716485148e-05 0.000120190595637 0.000102718947122 +UniRef50_UPI00037FC52E hypothetical protein 3.86661336639e-05 1.47342387998e-05 -2.39318948641e-05 +UniRef50_A3CP60 Glycosyl transferase, putative 0.00428442162741 0.00142725195492 -0.00285716967249 +UniRef50_B7I7I0 0.000312833692416 0.019301652821 0.0189888191286 +UniRef50_A6LZA6 Histidine kinase 0.000129423767612 0.000614169981592 0.00048474621398 +UniRef50_UPI00046EE93F hypothetical protein 7.11566646712e-05 1.55098193054e-05 -5.56468453658e-05 +UniRef50_P9WJQ4 Molybdopterin molybdenumtransferase 2 8.88466524069e-06 9.43675917654e-06 5.5209393585e-07 +UniRef50_F5M4L1 0.000567822872047 0.000391147953907 -0.00017667491814 +UniRef50_Q1GGT9 Phosphoribosyl AMP cyclohydrolase 1.52229105705e-05 6.03250440327e-05 4.51021334622e-05 +UniRef50_C3P5A0 Demethylmenaquinone methyltransferase 0.0203666966326 0.00295066781167 -0.0174160288209 +UniRef50_Q5ZI49 Ribose phosphate pyrophosphokinase 2 3.19824680549e-05 6.28074264308e-05 3.08249583759e-05 +UniRef50_A5UKS7 Transcriptional regulator, MarR family 0.00501779224744 0.00118830996847 -0.00382948227897 +UniRef50_UPI00046A6374 hypothetical protein 5.3870991382e-05 1.55306631778e-05 -3.83403282042e-05 +UniRef50_H7KDR0 Anaphase promoting complex, cyclosome, subunit 3 family protein 1.39140239876e-05 0.000249563412836 0.000235649388848 +UniRef50_F2E8Q7 Predicted protein 1.53109943174e-05 2.36616231369e-05 8.3506288195e-06 +UniRef50_UPI00047AC4C6 hypothetical protein 2.85618335366e-05 7.11462876788e-05 4.25844541422e-05 +UniRef50_G2Z8U2 2.01781779603e-05 0.000673676653338 0.000653498475378 +UniRef50_Q12MN3 Putative phosphoenolpyruvate synthase regulatory protein 4.05184212668e-05 3.72121888164e-05 -3.3062324504e-06 +UniRef50_UPI0002FA2625 hypothetical protein 2.13524444971e-05 7.37194517195e-05 5.23670072224e-05 +UniRef50_F0I702 5.79265807114e-05 1.04018592072e-05 -4.75247215042e-05 +UniRef50_X1JCC9 Marine sediment metagenome DNA, contig 1.43157408247e-05 6.88027091407e-06 -7.43546991063e-06 +UniRef50_UPI0003609B11 hypothetical protein 3.00375648912e-05 0.000176018516112 0.000145980951221 +UniRef50_K2JK23 2.31465442468e-05 4.02520604098e-05 1.7105516163e-05 +UniRef50_Q6G930 Probable glycine dehydrogenase subunit 1 0.0225153263841 0.00503067699706 -0.017484649387 +UniRef50_L0IML0 ABC type nitrate sulfonate bicarbonate transport system, periplasmic component 0.000452562708785 0.00275110471604 0.00229854200726 +UniRef50_A1IRX0 4.89225818179e-05 0.00105554653855 0.00100662395673 +UniRef50_UPI00036605EC hypothetical protein 0.000630043928863 0.000469643104098 -0.000160400824765 +UniRef50_UPI00047AF6CE restriction endonuclease 1.81302153688e-06 0.00120768417974 0.0012058711582 +UniRef50_Q6N535 ATP dependent Clp protease adapter protein ClpS 2 0.000353893114548 0.0151174027659 0.0147635096514 +UniRef50_Q9LPW0 Glyceraldehyde 3 phosphate dehydrogenase GAPA2, chloroplastic 6.45801536053e-05 2.47912334726e-05 -3.97889201327e-05 +UniRef50_Q6AFK7 3 isopropylmalate dehydratase large subunit 0.0316638872649 0.0108507885029 -0.020813098762 +UniRef50_Q6AJF8 3 oxoacyl [acyl carrier protein] synthase 3 2.10522133563e-05 7.25092985071e-06 -1.38012835056e-05 +UniRef50_C7JHV1 Transposase 0.000266064644591 0.000113716654793 -0.000152347989798 +UniRef50_G7ZR43 0.015951367075 0.00581044614024 -0.0101409209348 +UniRef50_B1AJD3 Glycine tRNA ligase 0.0179432179669 0.00751718549069 -0.0104260324762 +UniRef50_UPI0003C104A0 1.45480708843e-05 1.76372454175e-06 -1.27843463425e-05 +UniRef50_B2TPY0 Vancomycin B type resistance protein VanW 0.000275328181515 0.000948459646978 0.000673131465463 +UniRef50_Q9K0I2 Phosphoenolpyruvate synthase 0.0030990344491 0.0149928482711 0.011893813822 +UniRef50_G7U8X0 Drug resistance MFS transporter, drug 0.000169349946022 0.00530116903656 0.00513181909054 +UniRef50_E6PX09 0.000178820670491 0.000123541442614 -5.5279227877e-05 +UniRef50_UPI000359A0D1 PREDICTED 2.33737811333e-06 4.1325560867e-05 3.89881827537e-05 +UniRef50_UPI0003698208 hypothetical protein 1.66806906883e-06 5.5997762392e-06 3.93170717037e-06 +UniRef50_UPI0003B69E18 membrane protein 4.70523733846e-05 5.60016793901e-05 8.9493060055e-06 +UniRef50_UPI0003B51B40 protein export membrane protein SecD, partial 3.65251948803e-06 1.09341001003e-05 7.28158061227e-06 +UniRef50_Q893Q5 4 methyl 5 thiazole monophosphate biosynthesis enzyme 0.000723380590955 0.000528925442146 -0.000194455148809 +UniRef50_B7I6U8 0.000213268920259 0.0102762913914 0.0100630224711 +UniRef50_Q097C2 0.000141210881602 4.85284312551e-05 -9.26824503469e-05 +UniRef50_P0A3Q0 4 alpha glucanotransferase 0.00545378413218 0.00602578427191 0.00057200013973 +UniRef50_C6SP30 0.00382213845986 0.00262027920066 -0.0012018592592 +UniRef50_Q09AF1 Ribose transport system permease protein RbsC 0.00739949871433 0.00122845112877 -0.00617104758556 +UniRef50_K7SFB2 0.000118234072579 0.000229928120412 0.000111694047833 +UniRef50_UPI00028877F3 peptide ABC transporter permease 2.46183002323e-06 4.02927422823e-05 3.78309122591e-05 +UniRef50_B1J061 UPF0178 protein YaiI 0.00282646384514 2.52516943684e-05 -0.00280121215077 +UniRef50_UPI00046A4EAB membrane protein 2.62448552719e-06 3.97437744562e-06 1.34989191843e-06 +UniRef50_P0ACD8 Hydrogenase 1 large chain 0.00180271543214 0.000489111128395 -0.00131360430374 +UniRef50_V7ZPF8 0.000261213588882 9.16344514465e-05 -0.000169579137436 +UniRef50_W7QBW2 Immunogenic protein 5.79365472022e-05 6.87716454438e-05 1.08350982416e-05 +UniRef50_C1D094 GTPase Der 0.00040460996081 0.0538097911183 0.0534051811575 +UniRef50_X6DLZ2 0.00013878102636 5.40204635215e-05 -8.47605628385e-05 +UniRef50_UPI0004716F0E ribonuclease J 1.20744494936e-05 4.68382089622e-05 3.47637594686e-05 +UniRef50_UPI0002B8D004 hypothetical protein 9.11892253654e-05 0.000454904712919 0.000363715487554 +UniRef50_UPI0004681C8E hypothetical protein, partial 1.29166969302e-05 0.000504507901653 0.000491591204723 +UniRef50_R9YN68 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase 0.0191630867459 0.00595301160108 -0.0132100751448 +UniRef50_Q6FEV8 3 isopropylmalate dehydratase small subunit 0.000834014443975 0.00097657505395 0.000142560609975 +UniRef50_A6M0Q7 Methyl accepting chemotaxis sensory transducer 0.00039982652249 0.00183214571578 0.00143231919329 +UniRef50_P40711 Peptidyl tRNA hydrolase ArfB 0.00836595279523 0.00127474836775 -0.00709120442748 +UniRef50_B0V969 Homoserine kinase 0.000354742120506 0.00653437842298 0.00617963630247 +UniRef50_UPI000287CE50 ABC transporter periplasmic protein, partial 0.000110351733145 0.000218654012219 0.000108302279074 +UniRef50_D3DZ73 Methanogenesis marker protein 6 0.00191227824473 0.00191433466534 2.05642061e-06 +UniRef50_Q5V5M1 Nucleoside diphosphate kinase 1.3797390658e-05 9.63126384725e-05 8.25152478145e-05 +UniRef50_UPI0004026C93 ABC transporter permease 1.85351307089e-05 2.26638372701e-05 4.1287065612e-06 +UniRef50_A7ZK57 3 hydroxydecanoyl [acyl carrier protein] dehydratase 0.00857343777211 0.00448946348716 -0.00408397428495 +UniRef50_W4M3I0 7.95754998163e-05 3.45627829562e-05 -4.50127168601e-05 +UniRef50_A4VQM5 Alanine racemase 0.000426107902714 1.46662887648e-05 -0.000411441613949 +UniRef50_B9EBJ3 GTPase HflX 0.0214869546136 0.00504292918386 -0.0164440254297 +UniRef50_Q4W573 Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion 0.000166395904536 0.00351535053073 0.00334895462619 +UniRef50_R6FSH7 Oxidoreductase 0.000305692302144 0.00139886339576 0.00109317109362 +UniRef50_F9M5F2 0.00253103632371 0.000671174329992 -0.00185986199372 +UniRef50_A1BD29 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.0101549503353 0.00758757588134 -0.00256737445396 +UniRef50_M5RG91 Glutamate binding periplasmic protein 0.000300308843189 8.69907841199e-05 -0.000213318059069 +UniRef50_R9SIF8 NADPH dependent FMN reductase 0.00441212340654 0.000269695621179 -0.00414242778536 +UniRef50_K7RVB3 DNA recombination RmuC like protein 0.000128251185346 0.00404327604741 0.00391502486206 +UniRef50_D3E1G5 Cobalamin biosynthesis protein CbiX 0.00249269505297 0.000206756152991 -0.00228593889998 +UniRef50_A0KJ40 Nucleoside diphosphate kinase 0.000105895074201 5.03817715469e-05 -5.55133026541e-05 +UniRef50_UPI000466CC16 hydantoinase 2.12039564499e-06 3.8205932323e-06 1.70019758731e-06 +UniRef50_UPI0003B508F0 GntR family transcriptional regulator 0.000182113862877 1.97874144715e-05 -0.000162326448405 +UniRef50_P27868 Acetolactate synthase 1.59158413179e-05 1.74274645322e-05 1.5116232143e-06 +UniRef50_UPI00035F1C59 50S ribosomal protein L3 4.8815993232e-06 4.12397291338e-05 3.63581298106e-05 +UniRef50_F9YZE2 0.00121769673823 0.00265747758288 0.00143978084465 +UniRef50_M5S2J2 Phytoene desaturase 7.56203519325e-06 2.62545425185e-05 1.86925073252e-05 +UniRef50_H6LML3 0.00732700741234 0.000710734470096 -0.00661627294224 +UniRef50_A6LT68 Phage tail tape measure protein, TP901 family 0.000376588911931 0.00161627477518 0.00123968586325 +UniRef50_UPI00036C1C23 hypothetical protein 2.62379544808e-05 0.000202268081362 0.000176030126881 +UniRef50_A5UNK4 Ribose phosphate pyrophosphokinase 0.00237514630933 0.000613379542215 -0.00176176676711 +UniRef50_UPI00035CAC38 hypothetical protein 1.09907747246e-05 3.82473031103e-05 2.72565283857e-05 +UniRef50_UPI0003EDD3EB hypothetical protein, partial 0.000142209152858 3.38698464644e-05 -0.000108339306394 +UniRef50_P33235 Flagellar hook associated protein 1 0.00645460594033 0.00145125389464 -0.00500335204569 +UniRef50_UPI000379C48D hypothetical protein 0.00016946093568 2.97295822483e-05 -0.000139731353432 +UniRef50_F6GB14 Multidrug efflux system transmembrane protein 0.00122869387626 0.000186123973868 -0.00104256990239 +UniRef50_Q4L5F4 Succinate dehydrogenase iron sulfur protein subunit 0.00861888355762 0.00652693343613 -0.00209195012149 +UniRef50_Q2G1T7 HTH type transcriptional regulator SarU 0.00585404427429 0.00031031527691 -0.00554372899738 +UniRef50_UPI0002EB7833 hypothetical protein 7.53958815615e-05 0.000129877625108 5.44817435465e-05 +UniRef50_E8NHH4 WGS CADB00000000 data, contig 29 1.83710134169e-06 3.02034824759e-06 1.1832469059e-06 +UniRef50_F0LGR4 Sugar ABC transporter, substrate binding protein 0.0164645471064 0.00437631137942 -0.012088235727 +UniRef50_P56867 Hexagonally packed intermediate layer surface protein 8.6532816985e-05 0.0586772850657 0.0585907522487 +UniRef50_K0S670 0.000181623358584 0.00011140691636 -7.0216442224e-05 +UniRef50_I4CPJ8 C type cytochrome 0.000452232072348 0.000481873327421 2.9641255073e-05 +UniRef50_G7MDF6 0.00246186514469 0.00246461897019 2.7538255e-06 +UniRef50_UPI0003B56D5B 50S ribosomal protein L25 0.00024736567556 5.52852819292e-05 -0.000192080393631 +UniRef50_A0A024HXA7 7.2666456613e-06 2.5565016226e-06 -4.7101440387e-06 +UniRef50_F5M453 McpA 0.0134221912944 0.00437343828673 -0.00904875300767 +UniRef50_B0C6R3 Phosphoribosylformylglycinamidine synthase 2 2.28681721834e-05 5.91964645531e-06 -1.69485257281e-05 +UniRef50_A0A023RWA6 Sugar kinase 0.000592791302586 0.00931103658267 0.00871824528008 +UniRef50_UPI00036BDA1B hypothetical protein 4.34393184712e-06 6.24777549309e-05 5.81338230838e-05 +UniRef50_Z1Y9N5 Replication initiator protein 4.99800439334e-05 6.66917058327e-06 -4.33108733501e-05 +UniRef50_UPI00047572A2 tRNA delta isopentenylpyrophosphate transferase 1.27262992751e-05 1.10964415817e-05 -1.6298576934e-06 +UniRef50_V5LMT9 0.000329810918888 1.05549456817e-05 -0.000319255973206 +UniRef50_UPI0001FFF28B gas vesicle protein, partial 0.000297823836508 0.00014347771065 -0.000154346125858 +UniRef50_Q7VID0 0.000311293795653 0.00207864427227 0.00176735047662 +UniRef50_Q74LG0 Xanthine uracil permease 0.0131384593797 0.00981282502988 -0.00332563434982 +UniRef50_Q6F8J4 DNA primase 0.000137813181635 0.00513690355464 0.004999090373 +UniRef50_K2ADM0 0.000223966747393 7.69496656024e-05 -0.000147017081791 +UniRef50_A0A031M1H9 Membrane protein 0.000109756430919 2.44832277232e-05 -8.52732031958e-05 +UniRef50_R9SKE6 Iron dependent repressor 0.0012000667335 0.00123981832645 3.975159295e-05 +UniRef50_B8JFW2 Lysine tRNA ligase 3.34808825313e-06 1.38960118047e-05 1.05479235516e-05 +UniRef50_Q8FEA4 0.000298015254361 3.40211676833e-05 -0.000263994086678 +UniRef50_A1U241 Uracil phosphoribosyltransferase 0.0228969774573 0.0103019115255 -0.0125950659318 +UniRef50_V8G0X5 Cell wall binding protein 0.00024406421693 0.00154979927826 0.00130573506133 +UniRef50_UPI0001711954 GTPase CgtA 1.02665299403e-05 0.000322260203442 0.000311993673502 +UniRef50_X1HTP5 Marine sediment metagenome DNA, contig 3.30005017778e-05 1.60199051908e-05 -1.6980596587e-05 +UniRef50_R5HYZ8 0.000641569765233 0.00114989539398 0.000508325628747 +UniRef50_R5NRV6 Pseudouridine synthase 0.000185345002706 0.00124600013658 0.00106065513387 +UniRef50_D3VHY7 0.000144806323419 0.00154791136297 0.00140310503955 +UniRef50_UPI0003A646A2 GTP pyrophosphokinase 3.07170517092e-06 2.2115603808e-05 1.90438986371e-05 +UniRef50_B4THT3 UPF0257 lipoprotein YnfC 0.00603801021806 0.00201829258749 -0.00401971763057 +UniRef50_UPI00037C47E4 hypothetical protein 1.00591167078e-05 0.000113885406142 0.000103826289434 +UniRef50_E1ZV58 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.000756740954738 0.00950729585502 0.00875055490028 +UniRef50_W6QS47 Methyl accepting chemotaxis transducer 0.000117685283211 0.000505401404423 0.000387716121212 +UniRef50_L0A178 Putative branched chain amino acid permease 2.88801632582e-05 1.51749840629e-05 -1.37051791953e-05 +UniRef50_E2ZSI9 0.000165564030199 0.000174512500284 8.948470085e-06 +UniRef50_B2V1Q0 0.000365903001277 0.000287646141427 -7.825685985e-05 +UniRef50_UPI0003B54C8A ATP dependent DNA helicase Rep 5.41995110964e-06 5.21076761009e-06 -2.0918349955e-07 +UniRef50_F8KJ61 DNA 3 methyladenine glycosylase I 0.0149788462382 0.00268543931711 -0.0122934069211 +UniRef50_UPI0003777478 hypothetical protein 8.72222562852e-06 1.96122410127e-05 1.08900153842e-05 +UniRef50_F2JLA6 Transposase 0.000705511244232 0.00160480536173 0.000899294117498 +UniRef50_UPI00035F7004 hypothetical protein 8.08619725874e-06 0.000210842688373 0.000202756491114 +UniRef50_UPI00046A5F56 hypothetical protein 5.36217331936e-06 0.000155566306503 0.000150204133184 +UniRef50_W5T9B1 1.28938584919e-05 0.000177795542929 0.000164901684437 +UniRef50_C6NYG1 Flagellar biosynthesis protein FlhA 2.18276252868e-06 2.76787835919e-05 2.54960210632e-05 +UniRef50_UPI000262C262 transposase 1.35860460184e-05 1.4678155287e-05 1.0921092686e-06 +UniRef50_L1K4Y6 0.000786429143437 0.00521147126815 0.00442504212471 +UniRef50_D4HAB8 Aminodeoxychorismate synthase, component I 0.000200949521046 0.00568182059207 0.00548087107102 +UniRef50_UPI0003C75D29 pirin 7.40047974763e-06 6.54218643181e-06 -8.5829331582e-07 +UniRef50_UPI0003648088 hypothetical protein, partial 0.000157370615557 0.000121341576631 -3.6029038926e-05 +UniRef50_P26171 Bacteriochlorophyll synthase 44.5 kDa chain 0.000380638314925 1.25398873072e-05 -0.000368098427618 +UniRef50_UPI0003B578F4 peptidase M22 8.87192701375e-06 1.89972957195e-05 1.01253687057e-05 +UniRef50_G8PES7 Glycosyl transferase 2 family protein 9.18457393789e-05 0.00440512544523 0.00431327970585 +UniRef50_B9E294 9.06691726615e-05 0.0022097498788 0.00211908070614 +UniRef50_UPI00036DA897 hypothetical protein 5.69108943928e-06 0.000134081463952 0.000128390374513 +UniRef50_Q28PP3 Binding protein dependent transport systems inner membrane component 0.0125216683248 0.00467375152732 -0.00784791679748 +UniRef50_UPI0002EEB552 hypothetical protein 2.52264351431e-05 4.73736553645e-05 2.21472202214e-05 +UniRef50_A1K3T2 Phosphoheptose isomerase 1.96691480587e-05 2.5732758158e-05 6.0636100993e-06 +UniRef50_Q9RVZ7 O acetylhomoserine lyase 6.72081879274e-05 0.0362525247629 0.036185316575 +UniRef50_UPI0004268C03 hypothetical protein 1.91033687858e-05 1.35290014587e-05 -5.5743673271e-06 +UniRef50_UPI00034D0CB3 hypothetical protein 6.73260512196e-05 9.57238054426e-06 -5.77536706753e-05 +UniRef50_A2ZQQ8 0.000131243816208 0.00017103598022 3.9792164012e-05 +UniRef50_UPI00035A2A22 PREDICTED 6.76324128988e-06 1.01173852143e-05 3.35414392442e-06 +UniRef50_W2CS51 2.26614179847e-05 3.40327153341e-05 1.13712973494e-05 +UniRef50_C6S4V7 Transcriptional regulator, AraC family 0.000135299637578 0.00479043814848 0.0046551385109 +UniRef50_Q5HPM6 0.00109947375394 0.00196877803463 0.00086930428069 +UniRef50_C1D0F7 Aminomethyltransferase 4.44125679321e-05 0.000330736656182 0.00028632408825 +UniRef50_Q5Z5L8 6.08768049985e-05 0.000409681954045 0.000348805149047 +UniRef50_Q5HPM0 0.000943714972126 0.000952634532885 8.919560759e-06 +UniRef50_UPI0003C7E085 acetylornithine aminotransferase 4.6303788115e-06 9.9769887881e-06 5.3466099766e-06 +UniRef50_R6JRA3 7.45431579148e-06 1.23779204586e-05 4.92360466712e-06 +UniRef50_UPI00016AA163 hypothetical protein 0.00105267699221 0.000592971857003 -0.000459705135207 +UniRef50_J9YT54 2.73028196551e-05 3.81168692463e-05 1.08140495912e-05 +UniRef50_Q66ED4 Sulfite reductase [NADPH] flavoprotein alpha component 0.000504020981913 0.00117356737802 0.000669546396107 +UniRef50_UPI000378803E hypothetical protein 6.16707822637e-06 1.54068762077e-05 9.23979798133e-06 +UniRef50_V9WCN5 Serine pyruvate aminotransferase archaeal aspartate aminotransferase 0.000465397093427 0.000187106677001 -0.000278290416426 +UniRef50_UPI0004636D1A hypothetical protein 0.000325404348593 7.47695748767e-05 -0.000250634773716 +UniRef50_UPI00036F7C7E hypothetical protein 4.77789235249e-05 7.86297342514e-05 3.08508107265e-05 +UniRef50_UPI00037CF289 hypothetical protein 6.87794211497e-05 2.11431082024e-05 -4.76363129473e-05 +UniRef50_W7LMB8 3.31710007762e-05 5.19010026679e-05 1.87300018917e-05 +UniRef50_UPI00036C6A8F hypothetical protein 6.2128955392e-06 0.0014038902234 0.00139767732786 +UniRef50_D7GUI6 TRAP transporter solute receptor, TAXI family 2.45350367133e-05 1.40208289931e-05 -1.05142077202e-05 +UniRef50_A6M071 0.000504145084198 0.000505224962549 1.079878351e-06 +UniRef50_UPI0003B45945 glycosyl transferase 3.26367563129e-05 1.7093285637e-05 -1.55434706759e-05 +UniRef50_Q9P2T1 GMP reductase 2 0.003019874909 0.000185619234072 -0.00283425567493 +UniRef50_H8XBT6 Recombinase A 0.000135341645461 4.46246743994e-05 -9.07169710616e-05 +UniRef50_Q8P558 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 6.98185396544e-06 0.00257358912199 0.00256660726802 +UniRef50_V5XU16 Replication initiator protein A 1.05771951185e-05 3.85457136832e-06 -6.72262375018e-06 +UniRef50_Q8CUE8 0.0512549549357 0.00710261696862 -0.0441523379671 +UniRef50_Q8CUE9 0.0171736941222 0.000959617511552 -0.0162140766106 +UniRef50_Q8CUE6 0.00807024305529 0.00216629456746 -0.00590394848783 +UniRef50_Q8CUE4 0.0124821806548 0.00385142546669 -0.00863075518811 +UniRef50_Q8CUE5 0.00101253614459 0.000176884746785 -0.000835651397805 +UniRef50_Q8CUE2 0.00213368868259 0.00468761225963 0.00255392357704 +UniRef50_Q8CUE3 0.0220676404114 0.00786202891308 -0.0142056114983 +UniRef50_A4YPV8 0.000239608965621 0.000104018055452 -0.000135590910169 +UniRef50_M0SZR5 0.000258287065004 0.000285113951854 2.682688685e-05 +UniRef50_UPI0004784CAD hypothetical protein 4.80409777298e-06 2.71764899036e-05 2.23723921306e-05 +UniRef50_UPI0004738AE6 glyceraldehyde 3 phosphate dehydrogenase, partial 0.000100560209346 1.62442227101e-05 -8.43159866359e-05 +UniRef50_I7AL68 Phosphoglycerate mutase family protein 5.03721412535e-05 0.00112095563913 0.00107058349788 +UniRef50_P0ABL3 Periplasmic nitrate reductase, electron transfer subunit 0.00142657392781 0.00184572940748 0.00041915547967 +UniRef50_R6U4B5 Transposase 0.000152244641929 0.000220349434455 6.8104792526e-05 +UniRef50_Q8CNT1 Integrase 0.0175664100198 0.00378933031711 -0.0137770797027 +UniRef50_Q6MDQ6 NADH quinone oxidoreductase subunit K 1.26395194062e-05 2.37440837943e-05 1.11045643881e-05 +UniRef50_UPI00016C4514 50S ribosomal protein L18 4.91986356719e-05 0.000295837452769 0.000246638817097 +UniRef50_Q9JYT7 0.000437242458129 0.00294915342218 0.00251191096405 +UniRef50_G7UAA9 Transporter, major facilitator family protein 0.000246285914396 0.0045997293388 0.0043534434244 +UniRef50_B8CRT5 Homoserine O succinyltransferase 0.0054913811242 0.00230289634906 -0.00318848477514 +UniRef50_W0CEL3 6.3975109127e-05 0.000483282889277 0.00041930778015 +UniRef50_P77390 [Citrate [pro 3S] lyase] ligase 0.00462441753496 0.000355468702517 -0.00426894883244 +UniRef50_W0PAW0 Integral membrane protein 1.12156799708e-05 1.73394086213e-05 6.1237286505e-06 +UniRef50_C1KVA6 Glycine tRNA ligase alpha subunit 2.69774432705e-05 0.00144060409347 0.0014136266502 +UniRef50_UPI0003F0AAA6 PREDICTED 3.20306420241e-06 2.3589291299e-06 -8.4413507251e-07 +UniRef50_M1N022 Histidinol phosphatase HisK 0.000145186918795 0.000647425084459 0.000502238165664 +UniRef50_Q5HNY9 Putative GTP cyclohydrolase 1 type 2 0.0173072481957 0.00631127026367 -0.010995977932 +UniRef50_F8FMK7 Response regulator 0.00195623604944 0.001156140961 -0.00080009508844 +UniRef50_P85098 Respiratory nitrate reductase beta chain 3.67840965939e-05 3.40887612651e-05 -2.6953353288e-06 +UniRef50_C6BUI7 Phosphoglycerate kinase 1.3208990039e-05 1.6535166779e-05 3.32617674e-06 +UniRef50_UPI000287D575 putative short chain dehydrogenase 3.15110908858e-05 0.000262028109379 0.000230517018493 +UniRef50_O67161 Glyceraldehyde 3 phosphate dehydrogenase 0.0070473688668 0.00307509351284 -0.00397227535396 +UniRef50_U7DV00 5.39424189374e-05 0.000132479481228 7.85370622906e-05 +UniRef50_X1T7L9 Marine sediment metagenome DNA, contig 0.000128556427828 0.000135969877078 7.41344925e-06 +UniRef50_P46130 Putative acyl CoA thioester hydrolase YbhC 0.00277354561524 0.000877733848288 -0.00189581176695 +UniRef50_T0GKT6 ABC transporter permease 6.06225279828e-06 7.65239614333e-06 1.59014334505e-06 +UniRef50_D5VAW9 Transporter 7.83165951945e-05 0.00879202114316 0.00871370454797 +UniRef50_M4R0I6 9.58897516131e-05 0.00700602380022 0.00691013404861 +UniRef50_D5ANC8 1.08947331048e-05 1.27350230827e-05 1.8402899779e-06 +UniRef50_T0BL71 0.000280244398175 5.34407199323e-05 -0.000226803678243 +UniRef50_J7PRA1 Internalin E 2.19778961851e-05 0.00137013320297 0.00134815530678 +UniRef50_A9H8V7 0.0250567431707 0.000708052747062 -0.0243486904236 +UniRef50_A6WGM7 Cobyrinic acid ac diamide synthase 3.53655939347e-06 1.21082368182e-05 8.57167742473e-06 +UniRef50_B2ULY3 NADH quinone oxidoreductase subunit K 5.36065968397e-05 6.39288051381e-05 1.03222082984e-05 +UniRef50_C7C0M5 0.000158164520469 0.00198137557757 0.0018232110571 +UniRef50_P0ABC8 Protein HflK 0.00435588927897 0.000652150553898 -0.00370373872507 +UniRef50_Q4FU03 Pseudouridine synthase 0.000222050581675 0.00681598955466 0.00659393897298 +UniRef50_Q8FDG7 L tartrate succinate antiporter 0.00267953223578 0.000678329251449 -0.00200120298433 +UniRef50_Q6L8L1 Circadian clock protein kinase KaiC 4.61526391767e-05 1.3297255354e-05 -3.28553838227e-05 +UniRef50_UPI000375D5D1 hypothetical protein 2.2028730887e-05 1.09746632909e-05 -1.10540675961e-05 +UniRef50_A8AVA4 ABC transporter ATP binding protein 0.00493843513284 0.00128764774909 -0.00365078738375 +UniRef50_UPI0003805572 Fis family transcriptional regulator 3.5623302366e-05 2.00715540006e-05 -1.55517483654e-05 +UniRef50_O68560 Ribosome association toxin RatA 0.00514753621162 0.00139519703241 -0.00375233917921 +UniRef50_A1JJ54 Autoinducer 2 import system permease protein LsrC 0.00427234772409 0.000946953356292 -0.0033253943678 +UniRef50_U6K454 7.71419899057e-05 1.31914161208e-05 -6.39505737849e-05 +UniRef50_P09852 Exotoxin A regulatory protein 0.000297160948681 0.00144051255889 0.00114335161021 +UniRef50_A6LS16 Sigma 54 factor, interaction domain containing protein 0.00042836519913 0.00107766223372 0.00064929703459 +UniRef50_D5AT86 0.00134224984377 0.000146196388719 -0.00119605345505 +UniRef50_A3CNP4 Transcriptional regulator GntR family 0.00414922247107 0.00244720877664 -0.00170201369443 +UniRef50_A7MH24 NADH quinone oxidoreductase subunit C D 0.00482244427802 0.00189530888264 -0.00292713539538 +UniRef50_Q89AR9 NAD kinase 1.82859939085e-05 1.95001171328e-05 1.2141232243e-06 +UniRef50_Q0FLV7 6.46540453326e-05 3.13215183871e-05 -3.33325269455e-05 +UniRef50_UPI00038316EF hypothetical protein 6.1309888747e-06 9.06750797388e-05 8.45440908641e-05 +UniRef50_F2N563 0.000594119372543 0.00230491086981 0.00171079149727 +UniRef50_H8I380 8.70951731997e-05 3.73294577628e-05 -4.97657154369e-05 +UniRef50_K8FGY8 DUF2188 family protein 0.0106521976682 0.00721230557044 -0.00343989209776 +UniRef50_A0A011PD71 0.00012309325723 0.000438973151202 0.000315879893972 +UniRef50_UPI000382A08A hypothetical protein 7.37894012985e-05 0.000164582262746 9.07928614475e-05 +UniRef50_U6AC49 Phenazine specific methyltransferase PhzM 0.000338833908003 0.000488963615877 0.000150129707874 +UniRef50_P80503 Dihydrolipoyl dehydrogenase 4.90602620711e-05 0.00015509848641 0.000106038224339 +UniRef50_D7FVW5 8.66482012812e-05 0.000574734608727 0.000488086407446 +UniRef50_U5MVZ4 Sensor histidine kinase YclK 0.000219468598168 0.00077103118637 0.000551562588202 +UniRef50_P37925 Protein FimH 0.000510037145597 0.000193862169709 -0.000316174975888 +UniRef50_UPI0003735D88 hypothetical protein 2.80564414183e-05 0.00177594576919 0.00174788932777 +UniRef50_A0A011UTJ0 6.45023408896e-05 1.43013113732e-05 -5.02010295164e-05 +UniRef50_U5MNI8 Type IV pilus assembly protein TapC 0.000100306285793 0.000910359604404 0.000810053318611 +UniRef50_UPI00046D22D7 hypothetical protein 5.75099046028e-05 1.36379604412e-05 -4.38719441616e-05 +UniRef50_X1ILZ0 Marine sediment metagenome DNA, contig 6.77973617548e-05 0.000398223322359 0.000330425960604 +UniRef50_D5QFZ9 Cyclase dehydrase 0.00317140138968 0.00161081839197 -0.00156058299771 +UniRef50_Q51463 Flagellar M ring protein 0.000460245108042 0.000897837151232 0.00043759204319 +UniRef50_A7FZA6 Transcription elongation factor GreA 0.00374484003689 0.000369145881487 -0.0033756941554 +UniRef50_UPI0003B58BAE hemolysin expression modulating protein 4.65000421746e-06 3.42493600826e-06 -1.2250682092e-06 +UniRef50_UPI0003776FB7 hypothetical protein 5.79053945972e-05 8.31764780681e-05 2.52710834709e-05 +UniRef50_D4ZAK4 0.00155138706938 0.00976467356493 0.00821328649555 +UniRef50_UPI000360EB76 hypothetical protein, partial 3.04492122522e-05 0.00120606903892 0.00117561982667 +UniRef50_A4WXK1 2.39180645987e-05 0.00128593571989 0.00126201765529 +UniRef50_G0LPP3 1.75130282118e-05 8.8912564962e-06 -8.6217717156e-06 +UniRef50_UPI0003613F90 hypothetical protein 3.49462451913e-05 5.85666173664e-05 2.36203721751e-05 +UniRef50_UPI000368B7D0 hypothetical protein 1.9877668552e-05 0.000141850021303 0.000121972352751 +UniRef50_UPI00034BE6B7 hypothetical protein 0.000153780469284 0.000230882467543 7.7101998259e-05 +UniRef50_UPI00036CB57D hypothetical protein 0.000124254840656 1.9390020112e-05 -0.000104864820544 +UniRef50_U5MKL2 DEAD DEAH box helicase 0.000925872157184 0.000162363880566 -0.000763508276618 +UniRef50_O27720 Probable tRNA sulfurtransferase 0.00319728022735 0.000218214314184 -0.00297906591317 +UniRef50_A0A052I467 PF07120 family protein 3.82074606233e-06 1.08797465468e-05 7.05900048447e-06 +UniRef50_Q8YBL2 GMP synthase [glutamine hydrolyzing] 4.78292482583e-05 1.75929254972e-05 -3.02363227611e-05 +UniRef50_P48932 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 1.94990830182e-05 3.79951029156e-05 1.84960198974e-05 +UniRef50_A1B5W0 RNA polymerase sigma factor 0.0154412513056 0.00403772112068 -0.0114035301849 +UniRef50_R5NV67 tRNA dihydrouridine synthase 0.000257148580005 0.00159071473176 0.00133356615176 +UniRef50_G8UZW2 Glycerophosphoryl diester phosphodiesterase family protein 0.0113915833637 0.00172333989802 -0.00966824346568 +UniRef50_UPI000225BB06 NADH ubiquinone oxidoreductase subunit 0.00031911204997 0.000242797693111 -7.6314356859e-05 +UniRef50_Q7BHL7 Regulatory protein MsrR 0.0179261507902 0.00593844281616 -0.011987707974 +UniRef50_U3SRT1 Ribonuclease R 0.00595643053054 0.00133662877418 -0.00461980175636 +UniRef50_UPI0004091E67 enterobactin ABC transporter permease 7.60271157724e-06 1.92352257915e-05 1.16325142143e-05 +UniRef50_UPI00040FC3C0 resolvase 1.82892801543e-05 0.000186362639846 0.000168073359692 +UniRef50_Q92G90 Aconitate hydratase 9.02371754612e-06 7.14064123959e-05 6.23826948498e-05 +UniRef50_Q6A9W5 Probable cytosol aminopeptidase 0.000759784981674 0.00471514632646 0.00395536134479 +UniRef50_S1SCM6 Short chain dehydrogenase reductase SDR 0.00103537456077 0.00750095910112 0.00646558454035 +UniRef50_UPI0004560FCC hypothetical protein PFL1_00477 7.56488472929e-06 5.18794405911e-05 4.43145558618e-05 +UniRef50_UPI0003781D54 hypothetical protein 0.000101177084002 7.19540518108e-05 -2.92230321912e-05 +UniRef50_M9V9M5 0.000246626901361 0.0044088258943 0.00416219899294 +UniRef50_F5XYC9 0.000188070647974 0.000475911001366 0.000287840353392 +UniRef50_UPI00047A219A hypothetical protein 9.8210833611e-05 0.000131646324826 3.3435491215e-05 +UniRef50_P0A9V7 0.000650837911816 0.000723224584158 7.2386672342e-05 +UniRef50_K0R926 0.000127776582313 0.000120169213444 -7.607368869e-06 +UniRef50_B9KRR9 0.00114389693592 0.000576132825919 -0.000567764110001 +UniRef50_UPI00036ACC32 hypothetical protein 0.000195676435318 0.000247698959293 5.2022523975e-05 +UniRef50_B7LBZ3 1.69963288404e-05 0.000995641831884 0.000978645503044 +UniRef50_UPI000366BCAE hypothetical protein 5.31381431788e-06 2.14809482511e-05 1.61671339332e-05 +UniRef50_UPI00034FAA06 PREDICTED 2.78247205418e-06 5.06808908268e-06 2.2856170285e-06 +UniRef50_A6M1J6 PolyA polymerase related protein and P loop ATP ase domain 0.000844720945455 0.00104090717712 0.000196186231665 +UniRef50_UPI0001E2C790 helix turn helix domain containing protein 0.000350284998896 0.000223715494736 -0.00012656950416 +UniRef50_Q9HCC0 Methylcrotonoyl CoA carboxylase beta chain, mitochondrial 0.00322770954777 0.00778168753535 0.00455397798758 +UniRef50_Q9JWM8 Peptide methionine sulfoxide reductase MsrA MsrB 9.85120688569e-05 0.00321430480961 0.00311579274075 +UniRef50_UPI000383BA43 PREDICTED 2.21634236596e-05 0.000551939798563 0.000529776374903 +UniRef50_G0HC44 Adenylosuccinate lyase 0.000523871611604 0.00375189887646 0.00322802726486 +UniRef50_A6ZVT8 Cell surface flocculin 2.59740092636e-06 8.47067604244e-06 5.87327511608e-06 +UniRef50_B4SEB2 Short chain dehydrogenase reductase SDR 2.46980747615e-06 2.84914751304e-06 3.7934003689e-07 +UniRef50_UPI00037E5D09 LuxR family transcriptional regulator 1.91563005167e-05 1.95227389654e-05 3.664384487e-07 +UniRef50_A1TWN0 Methionyl tRNA formyltransferase 7.17077298158e-06 2.59810487078e-05 1.88102757262e-05 +UniRef50_B5GNF3 ABC transport system ATP binding protein 0.000467957837425 0.00482992768248 0.00436196984506 +UniRef50_O75489 NADH dehydrogenase [ubiquinone] iron sulfur protein 3, mitochondrial 1.52929146827e-05 1.09366167125e-05 -4.3562979702e-06 +UniRef50_UPI00046F9A01 hypothetical protein 0.000116831740175 7.91968438374e-05 -3.76348963376e-05 +UniRef50_D5AU36 Peptidase, U32 family 0.00056250052245 0.000396398262003 -0.000166102260447 +UniRef50_Q7VFF8 Argininosuccinate lyase 1.38147437985e-05 1.59392243539e-05 2.1244805554e-06 +UniRef50_Q6A823 1.83492112341e-05 0.00348433754644 0.00346598833521 +UniRef50_P13604 NADPH dependent butanol dehydrogenase 0.00185630581017 0.00422056016765 0.00236425435748 +UniRef50_Q6A824 0.00020761030336 0.000241516335112 3.3906031752e-05 +UniRef50_UPI00037EF460 hypothetical protein 1.55271270006e-05 0.000117054961377 0.000101527834376 +UniRef50_A2RKV6 Homoserine kinase 0.00588426858955 0.00175580523721 -0.00412846335234 +UniRef50_P56176 Bifunctional NADH hydrate repair enzyme Nnr 0.00021035703837 0.00478603416197 0.0045756771236 +UniRef50_P64804 Cobyrinic acid a,c diamide adenosyltransferase 1.12937351911e-05 2.24934383205e-05 1.11997031294e-05 +UniRef50_D1YLF7 DNA repair protein RadA 4.40712250337e-05 0.00118849658827 0.00114442536324 +UniRef50_W7IVE6 0.0101155209612 0.002807293386 -0.0073082275752 +UniRef50_P0ADT7 Putative acid amine ligase YgiC 0.00290992072721 0.000350110636804 -0.00255981009041 +UniRef50_UPI0003682914 hypothetical protein 3.42843416405e-06 4.89682200819e-06 1.46838784414e-06 +UniRef50_UPI000362C7A0 hypothetical protein 1.0223285923e-05 5.44325125059e-06 -4.78003467241e-06 +UniRef50_X1V7S4 Marine sediment metagenome DNA, contig 2.65436920173e-05 5.19350545681e-05 2.53913625508e-05 +UniRef50_Q73MY1 Phosphopantetheine adenylyltransferase 1.18084939145e-05 1.57584662553e-05 3.9499723408e-06 +UniRef50_UPI000191165B hypothetical protein 3.29533607801e-05 1.98544495681e-05 -1.3098911212e-05 +UniRef50_F0S2L5 7.90572709247e-06 1.33982421675e-05 5.49251507503e-06 +UniRef50_K0HAG9 0.000332099824425 0.00940379920514 0.00907169938072 +UniRef50_G7LZX4 0.000270323271289 0.00020994078568 -6.0382485609e-05 +UniRef50_A3PJL4 Invasion associated locus B family protein 0.00436730325782 0.000596599404435 -0.00377070385339 +UniRef50_C5WG19 Phosphomevalonate kinase 0.00448899070704 0.000194500574217 -0.00429449013282 +UniRef50_A3PS67 0.00488643287615 0.00209071030186 -0.00279572257429 +UniRef50_A4WQP0 0.000129500809316 0.000203995941812 7.4495132496e-05 +UniRef50_A3PKI7 NADH quinone oxidoreductase subunit I 2 0.0019684416847 9.30476511362e-05 -0.00187539403356 +UniRef50_F2MV72 C4 dicarboxylate binding protein 0.000849695271659 0.000283504036987 -0.000566191234672 +UniRef50_K0J3D5 Transposase 1.66678984431e-05 4.86437385485e-06 -1.18035245882e-05 +UniRef50_Q979P0 7 cyano 7 deazaguanine synthase 0.000630843018168 0.00671365209986 0.00608280908169 +UniRef50_Q5E212 Soluble pyridine nucleotide transhydrogenase 0.00345454460361 0.00666040397547 0.00320585937186 +UniRef50_A5UNU9 Bacteriophage capsid portal protein 0.00257009916019 0.001741543541 -0.00082855561919 +UniRef50_R0MT59 DNA polymerase III PolC 0.00663029151926 0.00509453878833 -0.00153575273093 +UniRef50_I6CAK2 Inner membrane transport YhjV domain protein 6.44385600304e-05 1.91820636815e-05 -4.52564963489e-05 +UniRef50_T1XSP1 0.0130758557034 0.0039072901074 -0.009168565596 +UniRef50_A7GJS9 Glutamine amidotransferase subunit PdxT 2.75535277749e-06 0.00329718849176 0.00329443313898 +UniRef50_UPI0004641AEF hypothetical protein, partial 8.87569226775e-05 5.50705844638e-05 -3.36863382137e-05 +UniRef50_W5X7V9 Aspartyl glutamyl tRNA amidotransferase subunit B 6.26772385403e-06 7.69284995455e-06 1.42512610052e-06 +UniRef50_A9MKV9 Hydroxyethylthiazole kinase 0.00383734256595 0.00056905803135 -0.0032682845346 +UniRef50_A0A023Y3W6 Radical SAM protein 0.000901141364364 0.000278600665274 -0.00062254069909 +UniRef50_M9VBI4 Amidohydrolase family protein 7.95824291342e-05 0.00805421392018 0.00797463149105 +UniRef50_UPI00036008AF hypothetical protein 0.000176842569876 2.67409760697e-05 -0.000150101593806 +UniRef50_UPI0003717A52 hypothetical protein 0.000151699831384 9.94462844837e-05 -5.22535469003e-05 +UniRef50_A5ULW7 Nitrate sulfonate bicarbonate ABC transporter, ATPase component 0.00257434508306 0.000826168343394 -0.00174817673967 +UniRef50_S9RBB4 Plasmid replication protein RepA 0.000247789052648 3.673526516e-05 -0.000211053787488 +UniRef50_UPI0003B7AD31 glycosyl transferase 2.41127994207e-06 1.03228078807e-05 7.91152793863e-06 +UniRef50_V5VEP7 Rhs element Vgr family protein 4.9109191956e-05 0.00206526033472 0.00201615114276 +UniRef50_F2D1I1 Predicted protein 2.28447557271e-05 1.71213955407e-05 -5.7233601864e-06 +UniRef50_V6QB21 0.000555780017326 0.000932065184759 0.000376285167433 +UniRef50_V2VF38 0.000162698395165 0.00666991405594 0.00650721566078 +UniRef50_G9EIS6 2.70902341021e-05 3.24078132928e-05 5.3175791907e-06 +UniRef50_D5WG02 Type VI secretion ATPase, ClpV1 family 7.43570562389e-05 0.000190931935806 0.000116574879567 +UniRef50_L2SNR0 0.000125006923455 7.02611397733e-05 -5.47457836817e-05 +UniRef50_UPI0004007565 16S rRNA methyltransferase 6.94141024494e-06 1.51255068321e-05 8.18409658716e-06 +UniRef50_UPI00037B5A68 hypothetical protein 7.71220157479e-05 2.75873776024e-05 -4.95346381455e-05 +UniRef50_B7KNU7 Peptidyl tRNA hydrolase 8.73887470506e-05 4.3373944264e-05 -4.40148027866e-05 +UniRef50_P25397 Tellurite methyltransferase 0.00200129741016 0.000461432351874 -0.00153986505829 +UniRef50_D5ZH35 Predicted protein 2.19750302058e-06 0.000984912190554 0.000982714687533 +UniRef50_P75749 0.00268932275891 0.000768596962359 -0.00192072579655 +UniRef50_A0QV20 Ribonuclease 3 2.36552435387e-05 6.99690556106e-05 4.63138120719e-05 +UniRef50_U8RNG4 0.000158198483824 0.000130362882471 -2.7835601353e-05 +UniRef50_P75745 0.002185959709 0.000623930005751 -0.00156202970325 +UniRef50_A8IJ61 Sodium sulphate symporter 8.24205215782e-05 0.00335337404437 0.00327095352279 +UniRef50_P05378 Anthranilate synthase component 1 2.17573180947e-05 0.0183615747049 0.0183398173868 +UniRef50_UPI0003777559 hypothetical protein 3.66618324796e-05 5.22737741702e-05 1.56119416906e-05 +UniRef50_A3SLT9 5.24177656364e-05 1.47601576248e-05 -3.76576080116e-05 +UniRef50_W4PGX2 1.39474060739e-05 0.000229570348736 0.000215622942662 +UniRef50_L0DV31 Pirin 5.92800374537e-06 7.78023192321e-06 1.85222817784e-06 +UniRef50_UPI0003A0D931 chemotaxis protein CheY 0.000128922923535 4.25865579769e-05 -8.63363655581e-05 +UniRef50_A5UL23 Fe S oxidoreductase 0.00190375005269 0.000125845186868 -0.00177790486582 +UniRef50_UPI00016A2EB9 ABC transporter related protein, partial 0.000444931068274 0.000147451099039 -0.000297479969235 +UniRef50_W0L514 0.000138306156408 5.54950253034e-05 -8.28111311046e-05 +UniRef50_A2RIB7 NADH oxidase 0.00628370474082 0.00784969647756 0.00156599173674 +UniRef50_B7UYN1 0.00118009165 0.00015475111189 -0.00102534053811 +UniRef50_Q6A6F2 Ubiquinone menaquinone biosynthesis methyltransferase UbiE 0.000328248685954 0.0086701239716 0.00834187528565 +UniRef50_UPI000360EAB2 MULTISPECIES 5.5033600136e-06 4.45190730437e-06 -1.05145270923e-06 +UniRef50_W9FFV8 3.61914789278e-05 4.6316238499e-05 1.01247595712e-05 +UniRef50_A5UMM1 Predicted metal dependent phosphoesterase, PHP family 0.00525369001504 0.000976325418564 -0.00427736459648 +UniRef50_UPI00047B30F5 hypothetical protein 2.4255939956e-06 6.46748846921e-06 4.04189447361e-06 +UniRef50_V7ENR3 Branched chain amino acid transporter AzlC 0.0002494610436 8.91969707368e-05 -0.000160264072863 +UniRef50_G7LXS1 Prophage antirepressor 0.00037177601129 0.00117077526062 0.00079899924933 +UniRef50_D6UB35 7.92381441214e-05 0.000109759050545 3.05209064236e-05 +UniRef50_U5NEG6 Type I restriction enzyme subunit M 0.000812968507199 0.000434547607505 -0.000378420899694 +UniRef50_UPI00042B88CF Phosphoenolpyruvate carboxylase family protein isoform 3 1.38394907115e-05 2.04988777927e-05 6.6593870812e-06 +UniRef50_I0EYG5 Adenine specific DNA methylase 5.17813427749e-05 0.0049712895887 0.00491950824593 +UniRef50_Q6MSN9 30S ribosomal protein S8 0.00506196709155 0.0149012625803 0.00983929548875 +UniRef50_Q5HM58 0.0128027835619 0.00572237341886 -0.00708041014304 +UniRef50_W1AUZ6 Exonuclease SbcC 0.000927245822186 0.000889139660443 -3.8106161743e-05 +UniRef50_G0DUX4 Phosphoesterase family protein 0.000175632466232 0.00402748797428 0.00385185550805 +UniRef50_Q8XK20 Putative ABC transporter ATP binding protein CPE1583 1.1866340796e-05 0.000586115644224 0.000574249303428 +UniRef50_R9SKG8 0.00241646311644 0.000372247947718 -0.00204421516872 +UniRef50_E6REC8 3.51591097028e-05 1.20889456265e-05 -2.30701640763e-05 +UniRef50_UPI00046CC73E PREDICTED 1.75833330936e-05 8.09000218395e-06 -9.49333090965e-06 +UniRef50_C4J675 2.63969755987e-05 0.000195343614101 0.000168946638502 +UniRef50_Q163E0 AzlC family protein 0.0112989440012 0.00292526171434 -0.00837368228686 +UniRef50_Q1GGE3 NADH dehydrogenase 0.00335945718396 0.000238640735716 -0.00312081644824 +UniRef50_C5BMG6 Probable cytosol aminopeptidase 0.000160666023111 0.00419868409331 0.0040380180702 +UniRef50_Q83EH9 ATP dependent 6 phosphofructokinase 1.64697171892e-05 7.67440222282e-06 -8.79531496638e-06 +UniRef50_UPI0002EF2687 hypothetical protein 1.4717230536e-05 6.9084116187e-05 5.4366885651e-05 +UniRef50_A5VLG3 Glutamyl tRNA amidotransferase subunit A 0.00634645374378 0.00112662563354 -0.00521982811024 +UniRef50_Q8XHR6 50S ribosomal protein L10 0.000928244234885 0.00367139723203 0.00274315299715 +UniRef50_Q3J376 Phosphate import ATP binding protein PstB 0.002224891882 0.00108801059277 -0.00113688128923 +UniRef50_A0A058ZJ58 6.4908853222e-05 4.21005135175e-05 -2.28083397045e-05 +UniRef50_UPI00046FA64C RNA helicase, partial 5.54017438752e-06 2.14884843732e-05 1.59483099857e-05 +UniRef50_UPI0003B55A40 PREDICTED 4.70605843956e-05 2.13169780389e-05 -2.57436063567e-05 +UniRef50_Q7ME63 Molybdenum import ATP binding protein ModC 0.00243594324623 0.000993869026778 -0.00144207421945 +UniRef50_UPI0002556A08 signaling repeat GGDEF domain EAL domain containing protein 0.000127123381022 1.44762443852e-05 -0.000112647136637 +UniRef50_A3M261 0.000638831835141 0.00592977954019 0.00529094770505 +UniRef50_P30845 Phosphoethanolamine transferase EptA 0.00288340517117 0.000824104998495 -0.00205930017268 +UniRef50_P0A324 Catalase 0.0218999020614 0.008089445116 -0.0138104569454 +UniRef50_A0A022GVC0 Transcriptional regulator 0.000145978913409 3.27402258693e-05 -0.00011323868754 +UniRef50_R7PY13 Trk type potassium transport system membrane component TrkH 0.00247660433669 0.000721796760355 -0.00175480757633 +UniRef50_O11346 H1 41 protein 0.00167264313709 0.000321716470927 -0.00135092666616 +UniRef50_UPI00047B8E24 ABC transporter ATP binding protein 5.2701453435e-05 1.37499523676e-05 -3.89515010674e-05 +UniRef50_UPI0003B50756 ABC transporter permease 0.000164675506124 9.53049077448e-05 -6.93705983792e-05 +UniRef50_UPI0003B32B2D glutathione ABC transporter ATP binding protein 2.9497008764e-05 2.77130461357e-05 -1.7839626283e-06 +UniRef50_UPI00037FBEE1 hypothetical protein 9.71822133426e-06 1.67728283726e-05 7.05460703834e-06 +UniRef50_A8EV23 Chaperone protein HtpG 7.12237714804e-05 0.00266567040831 0.00259444663683 +UniRef50_UPI00042B67B1 Serine hydroxymethyltransferase 6 isoform 2 2.28148999903e-06 7.13480070737e-05 6.90665170747e-05 +UniRef50_W5XBV9 Cyclic nucleotide binding protein 5.3451024781e-06 8.89776142545e-06 3.55265894735e-06 +UniRef50_W5XBZ4 PAS domain protein 4.16287863488e-06 8.61851173863e-06 4.45563310375e-06 +UniRef50_UPI00039CC563 hypothetical protein 0.000174757768699 3.16412559058e-05 -0.000143116512793 +UniRef50_T0N5V1 1.72593549094e-05 2.93909704309e-05 1.21316155215e-05 +UniRef50_UPI0003728055 hypothetical protein 6.17977239504e-05 5.4356166552e-05 -7.4415573984e-06 +UniRef50_Q4L967 Putative acetyltransferase SH0499 3.80640803241e-05 1.79385513463e-05 -2.01255289778e-05 +UniRef50_UPI0003783400 hypothetical protein 1.21556667856e-05 2.46369815485e-05 1.24813147629e-05 +UniRef50_UPI00034B61C2 hypothetical protein 1.79852050321e-06 7.35726041413e-06 5.55873991092e-06 +UniRef50_Q9RYC2 Aminotransferase, putative 0.000101293199152 0.0466745955103 0.0465733023111 +UniRef50_A5UJP7 Chaperonin , alpha subunit 0.00306177689365 0.00182276116997 -0.00123901572368 +UniRef50_UPI00021A5DF1 PREDICTED 1.99316214089e-05 1.18040457219e-05 -8.127575687e-06 +UniRef50_I0GMV1 Electron transport complex subunit C 0.000669707825774 0.00201552245038 0.00134581462461 +UniRef50_UPI0003B4DBF3 acyl CoA dehydrogenase 4.53854004898e-06 6.88560770215e-05 6.43175369725e-05 +UniRef50_P58579 Glutathione synthetase 0.000365788317407 0.000999002374291 0.000633214056884 +UniRef50_UPI00036DBC6E hypothetical protein 0.000209432960461 0.000632498893031 0.00042306593257 +UniRef50_P40709 Inner membrane protein YejM 0.00414448475494 0.000134336636173 -0.00401014811877 +UniRef50_UPI00037AA69B hypothetical protein 5.49069416205e-06 8.88053878556e-06 3.38984462351e-06 +UniRef50_A8I6E1 Lysyl tRNA synthetase protein 0.000910448998771 0.000493690561734 -0.000416758437037 +UniRef50_A3CN89 Orotidine 5 phosphate decarboxylase 0.000179933449996 1.94397124692e-05 -0.000160493737527 +UniRef50_UPI00036637FB MULTISPECIES 1.05076053952e-05 1.99784442227e-05 9.4708388275e-06 +UniRef50_G8QQL0 Succinate dehydrogenase fumarate reductase flavoprotein subunit 8.59097923129e-06 1.64054164964e-05 7.81443726511e-06 +UniRef50_Q89AR7 Superoxide dismutase [Mn] 7.77257759962e-06 2.05573013833e-05 1.27847237837e-05 +UniRef50_UPI00037AA28C hypothetical protein 1.20728724893e-05 8.78644900506e-06 -3.28642348424e-06 +UniRef50_G4LD57 AraC family transcriptional regulator 0.000612041974393 0.000557859183363 -5.418279103e-05 +UniRef50_UPI000375BAEA hypothetical protein 0.000103583104016 2.71536917671e-05 -7.64294122489e-05 +UniRef50_UPI0003711312 hypothetical protein 5.74177078363e-06 0.000147497532783 0.000141755761999 +UniRef50_Q8ZDL2 NADH quinone oxidoreductase subunit G 0.00669110959485 0.000861704689542 -0.00582940490531 +UniRef50_UPI00034B27B9 FAD binding molybdopterin dehydrogenase 0.000270555605268 0.00121201118887 0.000941455583602 +UniRef50_Q5HPQ8 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.0154699317853 0.00709908535998 -0.00837084642532 +UniRef50_UPI00035C36B2 hypothetical protein 1.27807136539e-05 4.28277777944e-06 -8.49793587446e-06 +UniRef50_B3G2P1 0.00056815402459 0.000443530872561 -0.000124623152029 +UniRef50_D8JKW7 TetR family regulatory protein 0.000169276228183 0.00773559247469 0.00756631624651 +UniRef50_UPI00034922BA hypothetical protein 4.24991535661e-06 2.72224734965e-05 2.29725581399e-05 +UniRef50_M9VD27 Hydrolase, alpha beta domain protein 0.000157467149615 0.0083401059594 0.00818263880979 +UniRef50_U6AJ35 Pyocin protein 0.00139582984111 0.000823342405398 -0.000572487435712 +UniRef50_B7MI93 Acetylornithine deacetylase 0.00363821018713 0.000491083417945 -0.00314712676919 +UniRef50_M3Z5Z5 5.79328322757e-06 3.76754491371e-06 -2.02573831386e-06 +UniRef50_A3DGK6 Acetylglutamate kinase 0.00514604855212 0.000230131283107 -0.00491591726901 +UniRef50_K8DMU1 Maltose phosphorylase Trehalose phosphorylase 0.000336040939626 0.000363839883189 2.7798943563e-05 +UniRef50_C4ZLQ1 BolA family protein 2.79587068531e-05 4.45664445129e-05 1.66077376598e-05 +UniRef50_U5ACU4 ABC transporter 0.000361191151775 1.15225413098e-05 -0.000349668610465 +UniRef50_A5UMN0 Glutamyl tRNA amidotransferase subunit A 0.00377733774606 0.000429817202491 -0.00334752054357 +UniRef50_A3UFL0 GAF sensor diguanylate cyclase 4.10822025328e-05 8.77124014748e-05 4.6630198942e-05 +UniRef50_F5TJT7 5.10265798452e-05 0.000495062725525 0.00044403614568 +UniRef50_B5Y8G1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 8.4493862904e-06 5.82291546263e-06 -2.62647082777e-06 +UniRef50_UPI0003737153 hypothetical protein 1.01041045631e-05 3.39036523184e-05 2.37995477553e-05 +UniRef50_B7MVN0 0.00174110440424 0.00253060832403 0.00078950391979 +UniRef50_Q7VI99 Arginine tRNA ligase 0.000166448543911 0.00469595857807 0.00452951003416 +UniRef50_D3QAH6 4.14061702304e-05 4.52143907568e-05 3.8082205264e-06 +UniRef50_P0AE89 Transcriptional regulatory protein CpxR 0.00207552148755 0.00141583433699 -0.00065968715056 +UniRef50_E6RH94 3.36740489104e-05 3.62051481198e-05 2.5310992094e-06 +UniRef50_B5HHN6 Regulatory protein 0.000167771550603 0.00193550772548 0.00176773617488 +UniRef50_UPI0002657849 PREDICTED 2.08751231354e-05 2.14451829943e-05 5.700598589e-07 +UniRef50_A7MKJ4 0.00346545047247 0.00143531435073 -0.00203013612174 +UniRef50_D3QET5 0.0154798366877 0.0015716112933 -0.0139082253944 +UniRef50_UPI000317D125 hypothetical protein 1.27571085867e-05 7.83521536945e-06 -4.92189321725e-06 +UniRef50_X1FS40 Marine sediment metagenome DNA, contig 3.43879872287e-05 0.000341219143654 0.000306831156425 +UniRef50_A1B573 Allergen V5 Tpx 1 family protein 0.00796148546697 0.00209110259581 -0.00587038287116 +UniRef50_Q3IYX7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.0137277419157 0.00242642967881 -0.0113013122369 +UniRef50_UPI00036A7D45 MULTISPECIES 1.13471231213e-05 1.56048651678e-05 4.2577420465e-06 +UniRef50_T9LFH4 Toxin YeeV 5.97451720276e-06 1.61393123602e-05 1.01647951574e-05 +UniRef50_P0ADW3 Inner membrane protein YhcB 0.0164671959612 0.000444085270977 -0.0160231106902 +UniRef50_R5VVL9 0.0049773965812 0.000577616151891 -0.00439978042931 +UniRef50_Q9JUC8 Lipoyl synthase 0.00361955290894 0.00372128630819 0.00010173339925 +UniRef50_UPI00017450C8 tetratricopeptide repeat protein kinase domain protein 3.55865412403e-06 0.000119050114463 0.000115491460339 +UniRef50_P76508 0.00459062602564 0.00329269292417 -0.00129793310147 +UniRef50_E3DRH8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 9.09194369937e-06 1.61480649803e-05 7.05612128093e-06 +UniRef50_C0QI21 N acetyl gamma glutamyl phosphate reductase 1.59244804546e-05 2.20097980461e-05 6.0853175915e-06 +UniRef50_K1JLF6 0.00172562351112 0.000523147878187 -0.00120247563293 +UniRef50_P76507 0.00303260726918 0.0010133336131 -0.00201927365608 +UniRef50_Q115Z7 Holliday junction ATP dependent DNA helicase RuvB 0.0133096701415 0.0129468651524 -0.0003628049891 +UniRef50_K1E5L6 Coagulation factor 5 8 type domain containing protein 1.53402792841e-05 5.0932755955e-05 3.55924766709e-05 +UniRef50_A6M156 0.000990543801162 0.00246384196221 0.00147329816105 +UniRef50_I3TGS2 0.000127400039857 2.58772846002e-05 -0.000101522755257 +UniRef50_B6AXL4 1.9995246827e-05 6.94885137342e-06 -1.30463954536e-05 +UniRef50_Q07LR9 NLPA lipoprotein 3.20293728898e-05 1.12776645384e-05 -2.07517083514e-05 +UniRef50_M4TWI8 Response regulator 8.5083243167e-05 0.000133627468419 4.8544225252e-05 +UniRef50_S5S5I1 Alcohol dehydrogenase iron type protein 0.011034620392 0.00203531443053 -0.00899930596147 +UniRef50_UPI00030FA7EB hypothetical protein 4.45654893596e-05 5.54734200101e-05 1.09079306505e-05 +UniRef50_R4NJ09 Alpha L Rha alpha 1,3 L rhamnosyltransferase 0.00629167432534 0.00141291879752 -0.00487875552782 +UniRef50_L9FSE1 Transposase IS66 family protein 5.96077156386e-05 6.8625434598e-05 9.0177189594e-06 +UniRef50_A8LR58 0.0025558112201 3.08872581373e-05 -0.00252492396196 +UniRef50_UPI000380D395 hypothetical protein, partial 0.000339514094407 9.26591834327e-05 -0.000246854910974 +UniRef50_R4X9Z7 Glutamate dehydrogenase 9.42144730903e-05 0.00494488207672 0.00485066760363 +UniRef50_UPI000478F011 hypothetical protein 7.23552906846e-06 2.47633462258e-05 1.75278171573e-05 +UniRef50_I4XXI7 Malonate transporter, MadM subunit 0.000482892448182 0.00761494326874 0.00713205082056 +UniRef50_Q667I7 Bifunctional uridylyltransferase uridylyl removing enzyme 0.00338999186219 0.000803711080825 -0.00258628078137 +UniRef50_UPI00041C4BFA manganese ABC transporter substrate binding protein 9.67563100572e-06 9.68387051791e-05 8.71630741734e-05 +UniRef50_Q0TMJ7 Amidohydrolase homolog 0.000106634460129 0.00149632263408 0.00138968817395 +UniRef50_Q2YLX5 Peptidyl tRNA hydrolase 0.00253848084632 0.000836529997742 -0.00170195084858 +UniRef50_W1BF78 Dipeptide transport system permease protein DppB 2.78279003479e-05 4.46881145938e-05 1.68602142459e-05 +UniRef50_L6WUR9 Lipoprotein 3.66457993322e-05 0.000128344243184 9.16984438518e-05 +UniRef50_UPI00031F8523 V type sodium ATP synthase subunit J 3.19525797373e-05 4.84508693346e-06 -2.71074928038e-05 +UniRef50_Q8XA44 tRNA specific adenosine deaminase 1.08406157811e-05 4.92810277164e-05 3.84404119353e-05 +UniRef50_A6W2Y7 Monosaccharide transporting ATPase 0.00324969993507 0.00068754044312 -0.00256215949195 +UniRef50_UPI00035DAB5C transposase ISM1, partial 0.000702341719641 0.000546882787401 -0.00015545893224 +UniRef50_B3PH29 Anhydrase, family 3 protein 5.78541366732e-05 0.000127346516268 6.94923795948e-05 +UniRef50_UPI00046594C3 hypothetical protein 2.36279446315e-05 1.28197397059e-05 -1.08082049256e-05 +UniRef50_UPI00036E4560 hypothetical protein, partial 4.10241029093e-05 3.74551783544e-05 -3.5689245549e-06 +UniRef50_Q8EB10 Sulfate adenylyltransferase subunit 1 0.00456290064999 0.0110216948102 0.00645879416021 +UniRef50_A7MQT1 5.61058933288e-05 0.000194172051635 0.000138066158306 +UniRef50_W0FVK3 NAD dependent dehydrogenase 9.519142912e-05 9.81958860128e-05 3.0044568928e-06 +UniRef50_Q9Z3R8 Probable alpha glucosidase 4.19021671831e-05 2.24441766589e-05 -1.94579905242e-05 +UniRef50_A6VB08 Lipoprotein, putative 0.00133040113952 0.00145368780689 0.00012328666737 +UniRef50_A6M2Z6 Transketolase, central region 0.000198676836237 0.00256601005451 0.00236733321827 +UniRef50_Q72VJ3 3.71947635408e-05 2.25696809017e-05 -1.46250826391e-05 +UniRef50_UPI00036DBF3B hypothetical protein 8.15454287158e-05 4.40496564858e-05 -3.749577223e-05 +UniRef50_E2Q4F7 TT_ORF1 domain containing protein 6.3928850031e-05 0.000161673432903 9.7744582872e-05 +UniRef50_U2ENE3 Periplasmic binding protein 2.85700007555e-06 2.89747831027e-05 2.61177830272e-05 +UniRef50_P28630 DNA polymerase III subunit delta 0.0020401622951 0.00122573156354 -0.00081443073156 +UniRef50_R4RC10 Isopenicillin N epimerase CefD 0.00065600996731 0.000506446714017 -0.000149563253293 +UniRef50_UPI0003B76D70 adenylylsulfate kinase 3.1760298261e-06 7.3139189832e-05 6.99631600059e-05 +UniRef50_D6ZZA5 Peptidoglycan binding domain 1 protein 1.12810292391e-05 2.02989113742e-06 -9.25113810168e-06 +UniRef50_A7X6Z3 Oxygen dependent choline dehydrogenase 0.0266450825195 0.00865869628658 -0.0179863862329 +UniRef50_F5YQ07 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.00123420192642 0.00130561893988 7.141701346e-05 +UniRef50_D3HD08 0.00328721950187 0.000749590940209 -0.00253762856166 +UniRef50_UPI00028A32C2 helix turn helix domain containing protein 7.49824836922e-05 4.50891182432e-05 -2.9893365449e-05 +UniRef50_Q8QNC0 EsV 1 162 1.65057960656e-05 2.7326564325e-05 1.08207682594e-05 +UniRef50_T0QKP7 1.17471851089e-05 6.84124153347e-06 -4.90594357543e-06 +UniRef50_O52618 Nod factor export ATP binding protein I 1.15440126823e-05 5.20458689605e-05 4.05018562782e-05 +UniRef50_T2ELK1 Sulfotransferase family protein 0.000686740677595 0.0003815815323 -0.000305159145295 +UniRef50_I2E190 IS5 family transposase 6.31971948042e-05 4.82977642552e-05 -1.4899430549e-05 +UniRef50_Q9RV93 0.000331128060398 0.0226977964962 0.0223666684358 +UniRef50_UPI000467A336 glutamate synthase, partial 0.000419202229909 4.64600680883e-05 -0.000372742161821 +UniRef50_UPI0003B755FD sugar ABC transporter permease 3.31841117064e-05 2.59186644596e-05 -7.2654472468e-06 +UniRef50_UPI00047BD144 hypothetical protein 1.69282454335e-06 2.68844048551e-06 9.9561594216e-07 +UniRef50_A8IEI6 Adenine phosphoribosyltransferase 6.2134786803e-05 6.53256005402e-05 3.1908137372e-06 +UniRef50_Q7UZP0 Lysine tRNA ligase 6.88212749729e-06 9.59183476848e-06 2.70970727119e-06 +UniRef50_W7X3Q1 Fasciclin domain protein 0.000277577154807 6.60890074709e-05 -0.000211488147336 +UniRef50_Q84F59 0.0163657478115 0.00397942307757 -0.0123863247339 +UniRef50_Q0WLU6 NADH dehydrogenase subunit 4 6.02061209236e-05 5.99202175085e-05 -2.859034151e-07 +UniRef50_UPI00044341F7 PREDICTED 1.69861130957e-05 8.58331240898e-06 -8.40280068672e-06 +UniRef50_A6LZ49 Transcriptional regulator, LysR family 0.000246131874043 0.000392283248233 0.00014615137419 +UniRef50_UPI000371865D hypothetical protein 7.60807085529e-06 0.000117545556005 0.00010993748515 +UniRef50_UPI000479EF00 hypothetical protein 3.73149519956e-05 3.60997969034e-05 -1.2151550922e-06 +UniRef50_L7WU99 CapB protein 0.0149037257289 0.00523064263405 -0.00967308309485 +UniRef50_B2V6Y7 Argininosuccinate lyase 3.01244571453e-05 1.96113181007e-05 -1.05131390446e-05 +UniRef50_Q4L350 Transposase for IS1272 0.00333705899427 0.00199652314501 -0.00134053584926 +UniRef50_P22350 Pyrroline 5 carboxylate reductase 0.00186415467351 0.000478086225284 -0.00138606844823 +UniRef50_F2DQI0 Predicted protein 1.08427779151e-05 1.81990559766e-05 7.3562780615e-06 +UniRef50_Q9RUB4 0.000428318283571 0.0376344763145 0.0372061580309 +UniRef50_S5YGA2 0.00241878721462 0.000885802446625 -0.001532984768 +UniRef50_G4R4C9 2.4903750192e-05 1.79583286765e-05 -6.9454215155e-06 +UniRef50_UPI00040657AE hypothetical protein 1.11079261536e-05 9.41255083237e-05 8.30175821701e-05 +UniRef50_R5HYR6 0.000628359688057 0.000958286579861 0.000329926891804 +UniRef50_P0AET9 7 alpha hydroxysteroid dehydrogenase 0.00287892899419 0.00165411092814 -0.00122481806605 +UniRef50_I6T5H3 0.00601757293409 0.00175847886082 -0.00425909407327 +UniRef50_F8LGT0 Transcriptional regulator, DeoR family 0.00523111158419 0.00087464327345 -0.00435646831074 +UniRef50_D0FNY6 2.56885584659e-05 2.83732477631e-05 2.6846892972e-06 +UniRef50_UPI0004637F8D hypothetical protein 6.50179921258e-05 0.000888771630704 0.000823753638578 +UniRef50_G5KUR8 Mg chelatase like protein 1.6126832959e-05 2.81428170992e-05 1.20159841402e-05 +UniRef50_W8ERS2 Histidine kinase 0.000183554770233 0.0089417606668 0.00875820589657 +UniRef50_D4HF76 Transglycosylase 0.000101002251891 0.00654308001118 0.00644207775929 +UniRef50_N0B0S7 PspA IM30 3.34235738504e-05 0.000268469732005 0.000235046158155 +UniRef50_O29399 tRNA splicing ligase RtcB 0.00384933982197 0.000703525357641 -0.00314581446433 +UniRef50_UPI000225AE96 prolipoprotein diacylglyceryl transferase 8.81528502218e-06 7.09577916565e-06 -1.71950585653e-06 +UniRef50_Q1GDV2 DNA topoisomerase 4 subunit A 0.00673900955291 0.00133738013414 -0.00540162941877 +UniRef50_Q58595 2 isopropylmalate synthase 1.4604619618e-05 5.26669404393e-06 -9.33792557407e-06 +UniRef50_J7R5F6 0.00396102861061 0.00118571883141 -0.0027753097792 +UniRef50_UPI0004665B0F hypothetical protein 6.58385326648e-06 8.75487939531e-06 2.17102612883e-06 +UniRef50_Q5F6F8 4.15714199126e-05 0.000147211644654 0.000105640224741 +UniRef50_UPI0004246E9D hypothetical protein 3.65810496324e-06 4.85865558552e-05 4.4928450892e-05 +UniRef50_UPI00042410AD 50S ribosomal protein L18 0.000712670454534 0.000185039029824 -0.00052763142471 +UniRef50_B9KWX6 0.00117645297998 0.000521212169004 -0.000655240810976 +UniRef50_Q91ZA3 Propionyl CoA carboxylase alpha chain, mitochondrial 9.15177534939e-06 3.35519539725e-06 -5.79657995214e-06 +UniRef50_P14853 Cytochrome c oxidase subunit 3 9.98256194566e-05 4.17520025541e-05 -5.80736169025e-05 +UniRef50_A0A028VK75 ATPase 3.24650420851e-05 1.8337368967e-05 -1.41276731181e-05 +UniRef50_Q8REG7 Phosphonates import ATP binding protein PhnC 2.58666535734e-05 1.76345514913e-05 -8.2321020821e-06 +UniRef50_A3PM78 Haloacid dehalogenase domain protein hydrolase 0.0161952996633 0.00402869674376 -0.0121666029195 +UniRef50_B1KTX4 1.03645601336e-05 7.35096575627e-06 -3.01359437733e-06 +UniRef50_UPI00026306BC gluconate transporter 1.23955417445e-05 2.60118307435e-05 1.3616288999e-05 +UniRef50_D8TM72 2.63667171485e-06 2.45553114242e-05 2.19186397094e-05 +UniRef50_D6XXB5 TRAP transporter solute receptor, TAXI family 3.32338462253e-05 4.83950273141e-05 1.51611810888e-05 +UniRef50_S5SY81 WGR domain containing protein 3.46791339162e-05 4.07557989943e-05 6.0766650781e-06 +UniRef50_K9H593 Chromosomal replication initiator protein DnaA 8.41092831116e-05 1.32487430291e-05 -7.08605400825e-05 +UniRef50_B5FN15 Multidrug resistance protein MdtL 0.00281771296233 0.00154972262673 -0.0012679903356 +UniRef50_B1I3M7 Sulfate adenylyltransferase 5.92811319744e-05 1.77912107368e-05 -4.14899212376e-05 +UniRef50_UPI0002891CEE hypothetical protein 4.90987109103e-06 1.22850232201e-05 7.37515212907e-06 +UniRef50_A1JJF7 LPS assembly protein LptD 0.000552942116325 7.48268678708e-05 -0.000478115248454 +UniRef50_UPI0003B5E20B ABC transporter permease 2.38179331863e-06 6.32744767222e-05 6.08926834036e-05 +UniRef50_UPI0003506E3F 8.64111873981e-06 0.000556432354766 0.000547791236026 +UniRef50_B0RWV1 4.12396776079e-05 2.20054004199e-05 -1.9234277188e-05 +UniRef50_Q8DQD2 ADP dependent NAD(P)H hydrate dehydratase 0.00866254544854 0.00740832900304 -0.0012542164455 +UniRef50_J7QYC7 0.00237824233763 0.000772069817495 -0.00160617252014 +UniRef50_G5QFD3 Potassium transporting ATPase B chain 1.07988772987e-05 0.00239433550442 0.00238353662712 +UniRef50_B2TQK8 Amino acid ABC transporter, amino acid binding permease protein 0.000327299990334 0.001207208971 0.000879908980666 +UniRef50_P39315 Quinone oxidoreductase 2 0.00369091838146 0.0332097076678 0.0295187892863 +UniRef50_J1HLJ2 PF06224 family protein 1.51305418063e-05 0.00172762325925 0.00171249271744 +UniRef50_UPI000443234B PREDICTED 8.25692135584e-06 0.000108058399255 9.98014778992e-05 +UniRef50_Q4FR51 Lon protease 0.00014241945601 0.00799614723719 0.00785372778118 +UniRef50_UPI00035C8CB7 hypothetical protein 1.8530286099e-05 9.65544700208e-05 7.80241839218e-05 +UniRef50_P42593 2,4 dienoyl CoA reductase [NADPH] 0.002154338277 0.000566652772132 -0.00158768550487 +UniRef50_UPI00035C6B06 hypothetical protein, partial 0.000169834903978 2.06035220209e-05 -0.000149231381957 +UniRef50_P77569 Mhp operon transcriptional activator 0.00276614843707 0.00224683881851 -0.00051930961856 +UniRef50_Q3IUW5 Type IV conjugative transfer system lipoprotein 0.00905210492279 0.00210366365798 -0.00694844126481 +UniRef50_E4CEH2 1.20325682876e-05 3.00415150249e-05 1.80089467373e-05 +UniRef50_UPI000472C3D3 hypothetical protein 1.98913436727e-05 1.08255592154e-05 -9.0657844573e-06 +UniRef50_G8V705 Poly glycerophosphotransferase family protein 0.0124867629645 0.00441201281778 -0.00807475014672 +UniRef50_P96672 UPF0750 membrane protein YdeO 0.030161554109 0.0118023373196 -0.0183592167894 +UniRef50_W9A418 2.80097172331e-05 5.38109978749e-05 2.58012806418e-05 +UniRef50_Q0C269 Transcriptional regulator, LysR family 0.00168572651712 0.000229520755339 -0.00145620576178 +UniRef50_W5X6C6 NADP oxidoreductase coenzyme F420 dependent 1.38034065239e-05 2.6045564056e-05 1.22421575321e-05 +UniRef50_P0AGI3 Ribose transport system permease protein RbsC 0.00398588254333 0.00166581919939 -0.00232006334394 +UniRef50_B3M6C2 GF24314 2.86300390338e-06 3.51630115725e-05 3.23000076691e-05 +UniRef50_T2ESK7 Integrase core domain protein 0.000804781091232 0.000893709383485 8.8928292253e-05 +UniRef50_Q59939 Citrate synthase 0.0237748489526 0.0137539406738 -0.0100209082788 +UniRef50_UPI00036F2872 hypothetical protein 5.69977372716e-06 1.95042719908e-05 1.38044982636e-05 +UniRef50_A8LU90 WGR domain protein 0.000160707770732 3.47175951729e-05 -0.000125990175559 +UniRef50_W4KZV0 Glycosyltransferase Gtf1 0.0268611872437 0.00836474990691 -0.0184964373368 +UniRef50_UPI0003074063 hypothetical protein 2.10445834887e-06 0.000138793589991 0.000136689131642 +UniRef50_P71082 Putative multidrug export ATP binding permease protein YgaD 0.0220007146912 0.00680196635461 -0.0151987483366 +UniRef50_A5WHZ1 Flavoprotein involved in K+ transport like protein 3.81984443328e-06 0.000875207158214 0.000871387313781 +UniRef50_UPI0003C116D2 0.000267446462033 1.28363987929e-05 -0.00025461006324 +UniRef50_Q8CN53 Antiholin like protein LrgB 0.0122743204635 0.000531253146621 -0.0117430673169 +UniRef50_Q02432 Chlorophyllide reductase 52.5 kDa chain 0.00263846058768 0.00057853276274 -0.00205992782494 +UniRef50_A7ZII5 Protoheme IX farnesyltransferase 0.00409059364019 0.000441892508331 -0.00364870113186 +UniRef50_UPI0004688FC2 cytochrome C biogenesis protein 4.29874587395e-05 0.000120615993409 7.76285346695e-05 +UniRef50_Q2P0E2 ISXoo4 transposase 5.42580909954e-06 1.98191545558e-05 1.43933454563e-05 +UniRef50_G7U8S7 Siderophore interacting protein 0.000153034860351 0.00507444785627 0.00492141299592 +UniRef50_D7BMW7 Portal protein 8.08370020024e-06 6.40715828389e-05 5.59878826387e-05 +UniRef50_UPI0004754826 hypothetical protein 1.12647225466e-05 1.47943447565e-05 3.5296222099e-06 +UniRef50_D3QH70 0.00527247314546 0.0033343880484 -0.00193808509706 +UniRef50_UPI0004707087 amino acid ABC transporter permease 1.67111281574e-05 1.64407915099e-05 -2.703366475e-07 +UniRef50_A5WH07 UPF0313 protein PsycPRwf_2008 6.03977582125e-05 0.00873841225987 0.00867801450166 +UniRef50_H7CWQ5 ABC transporter, permease ATP binding protein 7.58511699003e-05 0.000912489214596 0.000836638044696 +UniRef50_N0B4L4 40 residue YVTN family beta propeller repeat protein 0.000224455100741 2.31086379521e-05 -0.000201346462789 +UniRef50_Q5V468 Succinyl CoA 4.95165037583e-06 4.82212731119e-05 4.32696227361e-05 +UniRef50_Q12545 3 isopropylmalate dehydrogenase 3.15730771617e-05 2.6267715002e-05 -5.3053621597e-06 +UniRef50_F8DJT3 Phosphorylase family 0.0114088337284 0.000722241942049 -0.0106865917864 +UniRef50_Q044B7 Translation initiation factor IF 2 0.00938742386886 0.00153867335731 -0.00784875051155 +UniRef50_F0P650 Ribonuclease BN like family protein 0.0197977634555 0.00761372803618 -0.0121840354193 +UniRef50_K0B0P3 0.00164516223593 0.00125893229574 -0.00038622994019 +UniRef50_E6CDL3 0.00119582628827 0.00321641053183 0.00202058424356 +UniRef50_K7S3L7 Putative glucoamylase S1 S2 3.86064887448e-05 5.64289884223e-05 1.78224996775e-05 +UniRef50_UPI000410322D hypothetical protein 1.18331236068e-05 5.45620597643e-05 4.27289361575e-05 +UniRef50_C4LJY7 Glutamate racemase 4.80674874383e-06 3.04920371019e-05 2.56852883581e-05 +UniRef50_UPI00026292D1 oligopeptide dipeptide ABC transporter ATPase, partial 2.71110955519e-05 8.32355046718e-05 5.61244091199e-05 +UniRef50_H4BLQ2 Pyrimidine specific ribonucleoside hydrolase rihA 0.00160529200563 0.000285330149942 -0.00131996185569 +UniRef50_P0AEJ1 Multidrug export protein EmrB 0.00454750177625 0.00567373455482 0.00112623277857 +UniRef50_UPI0000056230 50S ribosomal protein L22 2.30049205596e-05 6.47734098579e-05 4.17684892983e-05 +UniRef50_P0AFK8 Spermidine putrescine transport system permease protein PotC 0.0049891954939 0.000671866591673 -0.00431732890223 +UniRef50_U1F6C3 Adhesion protein associated protein 6.78222023223e-06 7.75800965063e-05 7.07978762741e-05 +UniRef50_UPI00026291F3 3 5 exonuclease 0.000103992161944 4.84271330301e-05 -5.55650289139e-05 +UniRef50_UPI0002D58150 hypothetical protein 5.52757664424e-05 2.16218054421e-05 -3.36539610003e-05 +UniRef50_F0MXQ2 Type IV pilus assembly protein PilC 0.000200322740068 0.00296918977238 0.00276886703231 +UniRef50_Q9ZKM0 Putative 0.000158830009337 0.00476126313204 0.0046024331227 +UniRef50_K8E4E7 Metallo beta lactamase superfamily protein 0.000102920186949 1.39722942537e-05 -8.89478926953e-05 +UniRef50_F0KHD0 0.000141017584923 9.59976139252e-05 -4.50199709978e-05 +UniRef50_V4ZPA3 1.17947395895e-05 1.67846203333e-05 4.9898807438e-06 +UniRef50_C2VC63 Fructose bisphosphate aldolase, class II 0.000252217809923 0.000458815576904 0.000206597766981 +UniRef50_UPI00041FD2D5 hypothetical protein 4.31957227538e-05 0.000144203889018 0.000101008166264 +UniRef50_UPI00034AB6AD ABC transporter 6.7995594094e-06 8.03926991618e-05 7.35931397524e-05 +UniRef50_UPI0004706166 fusaric acid resistance protein, partial 4.57437543562e-06 4.88931289523e-05 4.43187535167e-05 +UniRef50_P44940 Putative acid amine ligase HI_0929 9.83036429352e-05 0.0079963170838 0.00789801344086 +UniRef50_Q54E41 Hydroxyacid oxidase 4.06618197875e-06 4.08986489175e-05 3.68324669388e-05 +UniRef50_UPI0002D41DEC protoheme IX farnesyltransferase 5.6675087087e-06 1.0039448289e-05 4.3719395803e-06 +UniRef50_UPI0004757165 phosphate acetyltransferase 3.87306574496e-06 1.42193108073e-05 1.03462450623e-05 +UniRef50_K2EIZ6 5.89657995632e-05 1.45873730064e-05 -4.43784265568e-05 +UniRef50_A3PJ18 UDP glucose pyrophosphorylase 0.00516621473399 0.000725866773884 -0.00444034796011 +UniRef50_A0A024DE18 Pyruvate dehydrogenase 0.00453337581121 0.00455614115135 2.276534014e-05 +UniRef50_G7U623 Major facilitator superfamily permease 0.000320059257349 0.00447557946953 0.00415552021218 +UniRef50_UPI000373646F hypothetical protein 8.36053778427e-05 1.1413501316e-05 -7.21918765267e-05 +UniRef50_UPI000350E784 3.01512317583e-05 4.43599348034e-05 1.42087030451e-05 +UniRef50_P0A9U1 0.00447154575327 0.00139357662439 -0.00307796912888 +UniRef50_UPI000476EE69 ArsR family transcriptional regulator 4.22195450058e-05 1.56270152851e-05 -2.65925297207e-05 +UniRef50_P0A9U5 0.00417942677078 0.00498131284816 0.00080188607738 +UniRef50_Q5KWI5 Ribonuclease PH 2.76644773432e-05 0.00131821815388 0.00129055367654 +UniRef50_T0JW92 0.0104594235933 0.0099894971916 -0.0004699264017 +UniRef50_UPI000378D30F hypothetical protein 0.000177119950835 5.26650876341e-05 -0.000124454863201 +UniRef50_Q58989 Phosphoserine phosphatase 8.11655341737e-06 1.5058154654e-05 6.94160123663e-06 +UniRef50_B8KMG5 Transposase, IS4 family protein 5.07143328158e-05 2.84763334279e-05 -2.22379993879e-05 +UniRef50_S1EIE9 2.1425023898e-05 5.67956537263e-05 3.53706298283e-05 +UniRef50_UPI00031BB00E hypothetical protein 3.43580704297e-06 5.31265247583e-06 1.87684543286e-06 +UniRef50_C0PC97 0.000151899916197 2.6793677521e-05 -0.000125106238676 +UniRef50_P42799 Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic 0.0206749201848 0.00560104593801 -0.0150738742468 +UniRef50_Q5HPM8 Surface lipoprotein related protein 0.00671119758549 0.000786006285432 -0.00592519130006 +UniRef50_A6M2Q9 Helicase, putative 0.000406663890798 0.00166458872794 0.00125792483714 +UniRef50_P77427 0.00636375824535 0.00344453904327 -0.00291921920208 +UniRef50_X5WUC6 1.45914964006e-05 4.28321461132e-05 2.82406497126e-05 +UniRef50_C5QZ07 0.0168506349734 0.00123909107075 -0.0156115439026 +UniRef50_Q4LC37 TraU protein 0.000146618981347 3.43954391347e-05 -0.000112223542212 +UniRef50_M0SF49 8.42492305231e-05 0.00076251765894 0.000678268428417 +UniRef50_UPI00046CC98D hypothetical protein 4.47163154342e-05 3.1167390124e-05 -1.35489253102e-05 +UniRef50_A3PIL0 TonB dependent receptor 0.00259910691639 0.00132761718439 -0.001271489732 +UniRef50_R8A8K0 0.000182911510156 2.86068806048e-05 -0.000154304629551 +UniRef50_UPI0003C1AE3D PREDICTED 0.000290913755577 0.000260486180146 -3.0427575431e-05 +UniRef50_A9MJT7 Membrane protein insertase YidC 0.00373025938568 0.00147585294482 -0.00225440644086 +UniRef50_M9VCF0 Dolichyl phosphate mannose protein mannosyltransferase 0.000111025290843 0.00542324650924 0.0053122212184 +UniRef50_W8YLC5 0.000228822111516 0.00152838058925 0.00129955847773 +UniRef50_UPI0002375397 NAD dependent dehydratase 1.05495154676e-05 4.29256429273e-05 3.23761274597e-05 +UniRef50_F0YP70 5.8403121334e-05 6.19487132037e-05 3.5455918697e-06 +UniRef50_A6LVH3 Methyl accepting chemotaxis sensory transducer 0.000284506683835 0.00136683592307 0.00108232923924 +UniRef50_P23482 Hydrogenase 4 component B 0.00430052573431 0.00132803842956 -0.00297248730475 +UniRef50_F0Y482 Expressed protein 0.000499429150894 0.000877005167979 0.000377576017085 +UniRef50_C4Z7U3 Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase 0.000692708706018 0.00161887257858 0.000926163872562 +UniRef50_O74942 Peptidyl prolyl cis trans isomerase 9 3.42213777703e-06 3.54338181548e-06 1.2124403845e-07 +UniRef50_W6RRV7 Magnesium transporter, CorA family 0.000318246165192 0.000199313861778 -0.000118932303414 +UniRef50_O33952 UDP glucose 6 dehydrogenase 0.00274513517939 0.004425699855 0.00168056467561 +UniRef50_UPI000392EF25 PREDICTED 3.35425704612e-06 2.0364169556e-05 1.70099125099e-05 +UniRef50_H8GU00 Peptidyl prolyl cis trans isomerase 0.00039596432397 0.0475116707915 0.0471157064675 +UniRef50_UPI0004700EA0 urocanate hydratase, partial 1.51311252485e-05 2.14046922389e-05 6.2735669904e-06 +UniRef50_G7MD42 PHP domain protein 0.000171584540393 0.00131270991032 0.00114112536993 +UniRef50_R4ZPM4 Cell wall surface anchor family protein 0.000917223072168 0.000135881919561 -0.000781341152607 +UniRef50_Q17VD8 Complete genome, strain Sheeba 7.88070957963e-05 0.00379601802801 0.00371721093221 +UniRef50_U0FZ44 8.38539003978e-05 3.42518586568e-05 -4.9602041741e-05 +UniRef50_C6SMN5 3.99938220839e-05 0.00056936897477 0.000529375152686 +UniRef50_I4EB03 0.000974197939926 0.00076705637713 -0.000207141562796 +UniRef50_UPI0003000992 hypothetical protein 5.79721264155e-05 4.64308209259e-05 -1.15413054896e-05 +UniRef50_P37630 Inner membrane protein YhiM 0.00168355501581 0.00077337651489 -0.00091017850092 +UniRef50_P62457 Histidinol dehydrogenase 4.04931564807e-06 5.94466657252e-06 1.89535092445e-06 +UniRef50_A3DIZ5 DNA directed RNA polymerase subunit beta 4.42242688008e-06 5.35491146355e-06 9.3248458347e-07 +UniRef50_UPI000479E680 FIST domain containing protein 3.99281326592e-06 5.90085750876e-06 1.90804424284e-06 +UniRef50_E9CGB4 Acyl CoA dehydrogenase 0.000261179896422 0.00453793483554 0.00427675493912 +UniRef50_P18949 Cystathionine beta lyase 0.00315150051396 0.00174372783898 -0.00140777267498 +UniRef50_R9DK57 0.00177107447034 0.00177190023117 8.2576083e-07 +UniRef50_Q67MT5 Peptide chain release factor 3 0.0269745585661 0.0156042547514 -0.0113703038147 +UniRef50_P77526 Disulfide bond oxidoreductase YfcG 0.00320530481829 0.000481494628027 -0.00272381019026 +UniRef50_H8FYF0 0.000126889792417 0.0001511926604 2.4302867983e-05 +UniRef50_C1F2I6 Metallo beta lactamase family protein 4.72678641906e-06 0.000144945952648 0.000140219166229 +UniRef50_N3SI82 6.96715965178e-05 0.000326121270881 0.000256449674363 +UniRef50_UPI0003B41E49 lactose phosphotransferase system repressor 8.76831007685e-06 2.59562911509e-05 1.7187981074e-05 +UniRef50_M0YT93 4.83187260919e-05 5.80663959685e-05 9.7476698766e-06 +UniRef50_Q2FF88 Accessory gene regulator protein B 0.00517729525747 0.00100538030667 -0.0041719149508 +UniRef50_O52376 Thiol 0.000178903312256 0.000325119308468 0.000146215996212 +UniRef50_A7FJ95 0.00315869328292 0.00312720690777 -3.148637515e-05 +UniRef50_UPI0003826EC3 hypothetical protein 1.42553205343e-05 1.60760342414e-05 1.8207137071e-06 +UniRef50_O06456 N5 carboxyaminoimidazole ribonucleotide mutase 0.000409452414595 0.00222783185919 0.00181837944459 +UniRef50_Q8CQE0 Galactosamine containing minor teichoic acid biosynthesis protein 0.00945522039515 0.00238012943504 -0.00707509096011 +UniRef50_UPI0003C1158B 1.16455332131e-05 1.06438965085e-05 -1.0016367046e-06 +UniRef50_UPI00037E8C2C hypothetical protein 3.06378498639e-06 1.21123342843e-05 9.04854929791e-06 +UniRef50_F0RKJ6 Transposase IS4 family protein 0.00427372358825 0.871496431206 0.867222707618 +UniRef50_J8VEE3 Plasmid pRiA4b ORF 3 like protein 0.000370357774747 7.43621022499e-05 -0.000295995672497 +UniRef50_B7MNC1 Ribosomal RNA small subunit methyltransferase C 0.00312178913159 0.00131068876385 -0.00181110036774 +UniRef50_Q49WJ7 Bifunctional purine biosynthesis protein PurH 8.86602575264e-06 1.02267683366e-05 1.36074258396e-06 +UniRef50_UPI00005C7E8C hypothetical protein 0.0124749400872 0.00272922113577 -0.00974571895143 +UniRef50_Q4FMW8 GMP synthase [glutamine hydrolyzing] 6.48587772557e-06 0.00457245723309 0.00456597135536 +UniRef50_E0NC31 0.000959710141151 0.000329570359183 -0.000630139781968 +UniRef50_A7WZ80 Putative antiporter subunit mnhE2 0.0230557001751 0.00192880236101 -0.0211268978141 +UniRef50_UPI00036BF214 hypothetical protein 3.98175603579e-05 9.36164526744e-05 5.37988923165e-05 +UniRef50_P63651 Probable succinyl CoA 6.75436559509e-05 9.40602551564e-05 2.65165992055e-05 +UniRef50_UPI0003AB3DEF hypothetical protein 4.66826366622e-05 2.345354503e-05 -2.32290916322e-05 +UniRef50_R4R8Z7 Rhs family protein 0.00197923249357 0.000508051146677 -0.00147118134689 +UniRef50_UPI000471A1D9 branched chain amino acid transporter II carrier protein 2.16251055637e-05 8.2264918714e-06 -1.33986136923e-05 +UniRef50_UPI00046FA3C6 hypothetical protein 1.13205205058e-05 6.48459643173e-06 -4.83592407407e-06 +UniRef50_UPI00047136FE hypothetical protein 3.50774152836e-05 1.57386658726e-05 -1.9338749411e-05 +UniRef50_B2V995 Protease HtpX homolog 0.000265368097293 0.0012064799108 0.000941111813507 +UniRef50_K7YQ94 0.000149615584159 0.00313043664521 0.00298082106105 +UniRef50_Q6LU24 Phosphoribosylformylglycinamidine synthase 1.18064922724e-05 8.29883450018e-06 -3.50765777222e-06 +UniRef50_Q3IWC2 0.00281554618479 0.00169401577093 -0.00112153041386 +UniRef50_D0Z2D3 4.11723962756e-06 1.36034314392e-06 -2.75689648364e-06 +UniRef50_R8ZFX9 0.000920697533784 0.000723224584158 -0.000197472949626 +UniRef50_A3PQQ0 GCN5 related N acetyltransferase 0.000541910816138 0.000751668921763 0.000209758105625 +UniRef50_A0A058Z6L2 5.75771898761e-05 0.000116266419368 5.86892294919e-05 +UniRef50_Q8CNV6 Smooth muscle caldesmon 0.00486611404903 0.00195886224467 -0.00290725180436 +UniRef50_UPI00037E8BDB hypothetical protein 4.39000968191e-06 1.50908533185e-05 1.07008436366e-05 +UniRef50_UPI00036ED2AC hypothetical protein 3.21455397372e-06 6.21796107984e-06 3.00340710612e-06 +UniRef50_S5XSF5 Nitrilotriacetate monooxygenase family FMN dependent 0.000379713282874 0.000180254347023 -0.000199458935851 +UniRef50_J5PQD7 5.30414795111e-05 4.5425061136e-05 -7.6164183751e-06 +UniRef50_A0A022S8H0 Export membrane family protein 2.7375729983e-05 5.47673915852e-05 2.73916616022e-05 +UniRef50_O07002 Aspartate proton symporter 8.86811250236e-05 0.009474006699 0.00938532557398 +UniRef50_UPI0002FCB073 hypothetical protein 7.51329904929e-06 4.97449641589e-05 4.22316651096e-05 +UniRef50_A5UK56 Arginine biosynthesis bifunctional protein ArgJ 0.00191873740922 0.00190796007487 -1.077733435e-05 +UniRef50_U5MQZ5 0.000670253571197 0.00175372810923 0.00108347453803 +UniRef50_Q3JUT4 0.000195875822572 2.82900307522e-05 -0.00016758579182 +UniRef50_U6FWJ6 SdrH protein 7.37232847333e-06 1.20544441243e-05 4.68211565097e-06 +UniRef50_UPI00037A959D hypothetical protein 8.98398331053e-06 2.06452220273e-05 1.16612387168e-05 +UniRef50_V6QG63 Integrase 0.340495265028 0.114492453346 -0.226002811682 +UniRef50_A2RFC7 ATP synthase subunit a 0.000181774954504 0.00118928529676 0.00100751034226 +UniRef50_D3QCQ2 Ferric uptake regulation protein FUR 0.0227315782888 0.00494963994773 -0.0177819383411 +UniRef50_UPI000311159F hypothetical protein 2.42489382401e-05 8.50752791715e-06 -1.5741410323e-05 +UniRef50_Q5HKX7 Glycosyl transferase, group 1 family protein 0.00911407783292 0.00357043674433 -0.00554364108859 +UniRef50_Q67N36 Aminomethyltransferase 4.53434975293e-05 0.00028568963967 0.000240346142141 +UniRef50_P42096 Protein LacX, chromosomal 0.00374587985865 0.00165523416637 -0.00209064569228 +UniRef50_C2LZG9 Transcriptional regulator, PadR family 9.82532889278e-05 0.000540069447397 0.000441816158469 +UniRef50_A0A022FMT2 0.000113855603187 2.34909539014e-05 -9.03646492856e-05 +UniRef50_Q6NDQ0 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00011924982064 5.38699017568e-05 -6.53799188832e-05 +UniRef50_G4LIM7 3 hydroxyacyl CoA dehydrogenase NAD binding subunit 0.000118706285809 0.000150671788373 3.1965502564e-05 +UniRef50_X1PRM6 Marine sediment metagenome DNA, contig 1.98981235626e-05 3.39402990781e-05 1.40421755155e-05 +UniRef50_I6G892 HTH type transcriptional regulator AdiY domain protein 4.07802318573e-06 1.20924809573e-05 8.01445777157e-06 +UniRef50_Q7M8H4 7 cyano 7 deazaguanine synthase 1.71209854195e-05 2.88239751146e-05 1.17029896951e-05 +UniRef50_P51763 Reaction center protein M chain 0.0118997366126 0.0028989646317 -0.0090007719809 +UniRef50_I0C0V7 Multidrug resistance efflux pump 0.0143810148794 0.00286481722427 -0.0115161976551 +UniRef50_UPI0003B40FE5 membrane protein 1.01575227073e-05 2.86329163576e-05 1.84753936503e-05 +UniRef50_Q39ZB4 NADH quinone oxidoreductase subunit I 1 6.16906823588e-05 9.05301873108e-05 2.8839504952e-05 +UniRef50_P0ACM7 0.00181380880315 0.00259337466179 0.00077956585864 +UniRef50_Q8ZT92 GMP synthase [glutamine hydrolyzing] 1.16401488397e-05 1.75574987619e-05 5.9173499222e-06 +UniRef50_E4GGL7 HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein 0.000173689872173 0.00513727960718 0.00496358973501 +UniRef50_C3EUD3 0.000826858130036 0.00081618149141 -1.0676638626e-05 +UniRef50_P42360 0.00542758992229 0.00562067849748 0.00019308857519 +UniRef50_UPI0003725E3A hypothetical protein 4.81687860299e-05 0.00120899684931 0.00116082806328 +UniRef50_T0Z4X5 1.95129377807e-05 2.02479324225e-05 7.349946418e-07 +UniRef50_UPI0003A412EC hypothetical protein 2.38001694506e-06 3.87066651267e-06 1.49064956761e-06 +UniRef50_U6ANF3 0.000718193585248 0.000309772767695 -0.000408420817553 +UniRef50_UPI0004704A43 hydroxyethylthiazole kinase 4.37833872865e-06 6.71846892307e-06 2.34013019442e-06 +UniRef50_D8ACP8 0.000498197140088 0.000538571498834 4.0374358746e-05 +UniRef50_Q7A7G4 0.0467306695097 0.00811540816471 -0.038615261345 +UniRef50_P37351 Ribose 5 phosphate isomerase B 0.00615641821572 0.00721498487204 0.00105856665632 +UniRef50_F2ENL3 1.23294685411e-05 1.85918619296e-05 6.2623933885e-06 +UniRef50_UPI0002D4EE34 hypothetical protein 3.02069634802e-05 2.45073141908e-05 -5.6996492894e-06 +UniRef50_UPI00037CDEEA hypothetical protein 3.56144046778e-05 5.57240743102e-05 2.01096696324e-05 +UniRef50_P39176 Probable L,D transpeptidase ErfK SrfK 0.00348394284473 0.00284713635616 -0.00063680648857 +UniRef50_V4QXI1 AMP binding protein 1.16985549064e-05 7.15839379637e-06 -4.54016111003e-06 +UniRef50_E1NTN7 4.88442278438e-05 1.77971188191e-05 -3.10471090247e-05 +UniRef50_L7U7P5 PT repeat DnaJ domain containing protein 6.00408038037e-06 8.06888900044e-06 2.06480862007e-06 +UniRef50_J5KRR9 0.000101632535199 0.000185567090397 8.3934555198e-05 +UniRef50_A6LTF1 YodP 0.0006669567196 0.000917857565392 0.000250900845792 +UniRef50_UPI0003F9ADEE hypothetical protein 2.83977218502e-05 7.6415692039e-05 4.80179701888e-05 +UniRef50_Q9KTK8 tRNA sulfurtransferase 0.007127516305 0.000632190111243 -0.00649532619376 +UniRef50_D2S427 LigA 5.71206999427e-05 0.000480643688481 0.000423522988538 +UniRef50_UPI0002D844FC hypothetical protein 0.000336650147472 7.16804902958e-05 -0.000264969657176 +UniRef50_UPI00037FB4E4 hypothetical protein 4.93765590195e-06 1.50746208874e-06 -3.43019381321e-06 +UniRef50_UPI0004270BC7 hypothetical protein 1.01205177747e-05 1.12415530168e-05 1.1210352421e-06 +UniRef50_Q0K7P2 ABC type transporter, ATPase component 0.00114980559286 0.000987185526324 -0.000162620066536 +UniRef50_D0MEX8 FAD dependent oxidoreductase 7.84794155617e-05 0.0225019104155 0.0224234309999 +UniRef50_B7LTE9 Transporter 1.90214857557e-05 6.9348195183e-06 -1.20866662374e-05 +UniRef50_UPI00030DD9C9 hypothetical protein 2.71494169217e-05 3.1086703741e-05 3.9372868193e-06 +UniRef50_G2TPA3 PfkB domain protein 0.000245120771981 0.0022918118216 0.00204669104962 +UniRef50_Q9VM33 Elongation factor G, mitochondrial 7.81991071876e-06 3.92191805353e-06 -3.89799266523e-06 +UniRef50_O31248 Peptidyl prolyl cis trans isomerase (Rotamase) 0.000187506171368 0.00768826125224 0.00750075508087 +UniRef50_P13656 Probable bifunctional chitinase lysozyme 0.000309418910305 7.6705637713e-05 -0.000232713272592 +UniRef50_G9AU18 0.00034796642424 7.12848869907e-05 -0.000276681537249 +UniRef50_D3E347 0.000566232522232 0.00061738684013 5.1154317898e-05 +UniRef50_D3E1C8 Hydrolase HAD superfamily 0.00458072974067 0.000463735485513 -0.00411699425516 +UniRef50_P33941 ABC transporter ATP binding protein YojI 0.00153226538779 0.000444785353012 -0.00108748003478 +UniRef50_X6DV46 0.000568701744273 0.00012064113701 -0.000448060607263 +UniRef50_UPI0003B521C3 cytochrome C biogenesis protein 4.07808394097e-05 0.000192002172122 0.000151221332712 +UniRef50_E6MXZ6 Exonuclease, DNA polymerase III, epsilon subunit 0.000333057942696 0.00321163670353 0.00287857876083 +UniRef50_E7DWP7 WdaG 0.000185000346112 2.61925899583e-05 -0.000158807756154 +UniRef50_M4YXM1 Cell division protein FtsX 0.00402878123008 0.00174187812226 -0.00228690310782 +UniRef50_D8JH95 ABC transporter family protein 9.87321679628e-05 0.0062230426131 0.00612431044514 +UniRef50_A3PIS2 0.0126556561302 0.00334320798334 -0.00931244814686 +UniRef50_P76085 Phenylacetate coenzyme A ligase 0.00348159402361 0.00645734179598 0.00297574777237 +UniRef50_P0AEG3 Dipeptide transport system permease protein DppC 0.00382370326485 0.000846996592862 -0.00297670667199 +UniRef50_A6NPX7 2.94773550239e-05 1.24306693792e-05 -1.70466856447e-05 +UniRef50_B7IJP9 Probable manganese dependent inorganic pyrophosphatase 0.0220385364733 0.00414181365992 -0.0178967228134 +UniRef50_A9KFA0 Ribonuclease 3 7.19583834191e-06 1.91850239598e-05 1.19891856179e-05 +UniRef50_I0JK39 0.000140155688933 0.000458139504879 0.000317983815946 +UniRef50_U5MPS5 Acetyltransferase 0.000241462252992 0.000373031627616 0.000131569374624 +UniRef50_U5UQU4 TetR family transcriptional regulator 0.00784496537669 0.000329349485352 -0.00751561589134 +UniRef50_N1N5F7 Clumping factor ClfB, fibrinogen binding protein 4.65457446223e-05 8.75444778166e-05 4.09987331943e-05 +UniRef50_P71237 Putative colanic acid biosynthesis glycosyl transferase WcaC 0.0018559679204 0.000910964758709 -0.000945003161691 +UniRef50_UPI00036F4FFA hypothetical protein 5.50707252338e-05 1.72251895581e-05 -3.78455356757e-05 +UniRef50_P39830 Inner membrane protein YbaL 0.00380738246987 0.000508316790971 -0.0032990656789 +UniRef50_F8DI48 Cytoplasmic alpha amylase 0.00660532032062 0.00343393571422 -0.0031713846064 +UniRef50_UPI0003B686EF hypothetical protein 3.9335523464e-05 0.000130407717908 9.1072194444e-05 +UniRef50_Q5HRM6 PIN domain protein 0.0145722666425 0.00317355799789 -0.0113987086446 +UniRef50_A0RH88 tRNA dimethylallyltransferase 1.22169338261e-05 0.000728461723526 0.0007162447897 +UniRef50_Q83FR2 Hexulose 6 phosphate synthase 0.000173956676891 0.00461536800775 0.00444141133086 +UniRef50_C5W449 0.00367160193727 0.000793589111246 -0.00287801282602 +UniRef50_B6VLA0 3.11625000867e-06 5.61482663574e-06 2.49857662707e-06 +UniRef50_B7MGB3 D galactonate dehydratase 0.00022368293636 0.000152750019926 -7.0932916434e-05 +UniRef50_G8RA51 Exotoxin 15 0.01095422475 0.00433777186573 -0.00661645288427 +UniRef50_UPI000248470C hemolysin type calcium binding region 4.32758235328e-05 1.10390279212e-05 -3.22367956116e-05 +UniRef50_A7IPS8 ParB domain protein nuclease 0.000104832309532 1.92018643122e-05 -8.56304452198e-05 +UniRef50_A3PSB0 0.00371338731486 0.000880668731604 -0.00283271858326 +UniRef50_C4ZYY9 HTH type transcriptional regulator YidZ 0.0024083939575 0.000572870158602 -0.0018355237989 +UniRef50_A3PR77 Major facilitator superfamily MFS_1 0.00533483320643 0.00130158375924 -0.00403324944719 +UniRef50_D4HCV0 FAD linked oxidase, C terminal domain protein 0.000337950167046 0.00572166321347 0.00538371304642 +UniRef50_E8SIU9 Phosphate regulon sensor protein PhoR SphS 0.0186450848692 0.00662723171096 -0.0120178531582 +UniRef50_G7U4H3 0.000870376173622 0.00913563313681 0.00826525696319 +UniRef50_B3H2W6 RNA pyrophosphohydrolase 0.02035591341 0.000439677476724 -0.0199162359333 +UniRef50_Q47SB4 3 isopropylmalate dehydrogenase 9.37601209206e-05 0.000270034028822 0.000176273907901 +UniRef50_S5CRE9 0.000470740409928 0.00981397533082 0.00934323492089 +UniRef50_K4KJS3 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 0.000178339837253 0.00505187568862 0.00487353585137 +UniRef50_Q1B492 LigA 3.62434192937e-06 0.000199620239258 0.000195995897329 +UniRef50_U3STE7 0.00368500366505 0.000296800708731 -0.00338820295632 +UniRef50_M9VIL3 0.00010544301365 0.00721478848789 0.00710934547424 +UniRef50_I0C1G5 SIR2 family protein 0.0149109102003 0.00455407993982 -0.0103568302605 +UniRef50_H8H8S2 ABC transport system permease 0.000343716196778 0.00301894934907 0.00267523315229 +UniRef50_Q2T751 Taurine import ATP binding protein TauB 2.18686184419e-05 1.18088977163e-05 -1.00597207256e-05 +UniRef50_D6TV92 ATPase 9.92791472557e-07 2.33964619527e-06 1.34685472271e-06 +UniRef50_UPI0002557200 2 nitropropane dioxygenase 8.3740781244e-05 8.11484121652e-05 -2.5923690788e-06 +UniRef50_X1J3J4 Marine sediment metagenome DNA, contig 6.18713133906e-06 4.57098792142e-05 3.95227478751e-05 +UniRef50_R1DBP2 4.76785465843e-05 0.00271453924715 0.00266686070057 +UniRef50_C5Z1P3 0.00182510547351 0.000634218855091 -0.00119088661842 +UniRef50_Q972W3 Urease accessory protein UreG 0.000373471097578 0.00309051314972 0.00271704205214 +UniRef50_B8LZL2 7.53780234808e-06 1.53612126377e-05 7.82341028962e-06 +UniRef50_Q9UVC0 Glyceraldehyde 3 phosphate dehydrogenase 1.74288279122e-05 2.82863309712e-05 1.0857503059e-05 +UniRef50_G0EU06 2.90189864788e-05 5.60601499892e-05 2.70411635104e-05 +UniRef50_V4RI55 Pirin domain protein 3.64266539258e-05 1.00310700359e-05 -2.63955838899e-05 +UniRef50_Q2LQN4 Glutamate tRNA ligase 1 3.7248495557e-06 1.23336278964e-05 8.6087783407e-06 +UniRef50_E8XZE4 7.74228935449e-06 1.19695568317e-05 4.22726747721e-06 +UniRef50_P0AAV9 Putative isomerase YbhH 0.00406045425313 0.000941470031499 -0.00311898422163 +UniRef50_Q04MW7 Argininosuccinate synthase 3.85897195451e-06 5.04172335607e-05 4.65582616062e-05 +UniRef50_K0AYA8 Bifunctional chorismate mutase prephenate dehydratase 0.000307959690379 0.000226585707308 -8.1373983071e-05 +UniRef50_A6LVB7 0.000124369773306 0.00084004571323 0.000715675939924 +UniRef50_Q08NW1 3.01908282191e-05 2.20416803253e-06 -2.79866601866e-05 +UniRef50_U5MUC9 Cyclic di GMP phosphodiesterase response regulator RpfG 0.000169276228183 0.00293056635321 0.00276129012503 +UniRef50_P13518 RNase E specificity factor CsrD 0.00270523577673 0.000966616504477 -0.00173861927225 +UniRef50_UPI0004762DA1 acetate permease, partial 0.000117064957277 0.000222839171496 0.000105774214219 +UniRef50_A3JZH8 0.000240350261531 3.44913502691e-05 -0.000205858911262 +UniRef50_A5UJJ6 Predicted CRISPR associated protein 0.00289384722685 0.000142895179933 -0.00275095204692 +UniRef50_B0V8Z8 ATP dependent dsDNA exonuclease 3.23651890987e-05 0.00266649832585 0.00263413313675 +UniRef50_Q5HP88 Probable ATP dependent helicase DinG homolog 0.0192091188015 0.00526460941745 -0.013944509384 +UniRef50_E8PIL7 Rossmann fold nucleotide binding protein 0.000101202677982 0.0080634397514 0.00796223707342 +UniRef50_UPI0004422EE7 PREDICTED 2.37848299677e-06 3.80944178882e-05 3.57159348914e-05 +UniRef50_E3YUW5 0.000234250633169 0.0013374323091 0.00110318167593 +UniRef50_P75691 Aldehyde reductase YahK 0.00276580565744 0.00830423302692 0.00553842736948 +UniRef50_V1QTW1 0.00331640875209 0.00125451616966 -0.00206189258243 +UniRef50_UPI0004646ABC MULTISPECIES 0.000278058394687 5.64464571438e-05 -0.000221611937543 +UniRef50_UPI0004769729 thioesterase 1.83598123204e-05 3.33894051787e-05 1.50295928583e-05 +UniRef50_R6Q2D0 Iron only hydrogenase maturation protein HydF 0.000210846599972 0.00138081998809 0.00116997338812 +UniRef50_Q6FDN2 1.64274324883e-05 0.0010361989656 0.00101977153311 +UniRef50_UPI000273D0E2 3.1410525742e-05 8.1391306694e-06 -2.32713950726e-05 +UniRef50_R7PTK0 0.00351102554309 0.000719999982592 -0.0027910255605 +UniRef50_F0Y6N7 Expressed protein 0.000160983535335 0.000455512719133 0.000294529183798 +UniRef50_B2A9N0 Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1 4.00086407947e-06 0.000591443128976 0.000587442264897 +UniRef50_Q9RZN7 Potassium transporting ATPase A chain 8.98733040216e-05 0.0158759128115 0.0157860395075 +UniRef50_K2DR39 1.0667325353e-05 3.24972316179e-05 2.18299062649e-05 +UniRef50_R5J2P0 HTH type transcriptional regulator GmuR 0.0010260506466 0.00470647846601 0.00368042781941 +UniRef50_H3VA73 PF03904 domain protein 0.032992205684 0.00777645372905 -0.0252157519549 +UniRef50_UPI000273C7FC PREDICTED 1.74243648387e-05 1.16347223511e-05 -5.7896424876e-06 +UniRef50_Q68X45 DNA topoisomerase 1 5.2131528358e-06 1.75226801959e-06 -3.46088481621e-06 +UniRef50_B2HZ46 0.000230220986119 0.00995534458788 0.00972512360176 +UniRef50_UPI000469439E hypothetical protein, partial 1.23646480421e-05 0.000318149124638 0.000305784476596 +UniRef50_A3CPL4 Cystathionine gamma synthase, putative 0.00469070086003 0.00167444463834 -0.00301625622169 +UniRef50_Q0TN75 Sulfatase 0.000836831555326 0.000188953929026 -0.0006478776263 +UniRef50_Q833W8 Tagatose 1,6 diphosphate aldolase 2 1.96878754934e-05 0.00157779437103 0.00155810649554 +UniRef50_L5P9E1 Rhodanese like domain protein 0.00020367949039 0.000298996164153 9.5316673763e-05 +UniRef50_T6ITD7 DNA mismatch repair protein mutS 0.000350854302435 0.000146453967375 -0.00020440033506 +UniRef50_P96995 UDP glucose 4 epimerase 0.00659704004829 0.0098737395285 0.00327669948021 +UniRef50_UPI0003B31677 sugar ABC transporter ATP binding protein 7.59381692397e-06 6.30603990144e-06 -1.28777702253e-06 +UniRef50_G2C2A9 2.82042470236e-05 0.000391374275872 0.000363170028848 +UniRef50_Q1IJ73 7.03677280897e-06 7.28270575926e-05 6.57902847836e-05 +UniRef50_Q2FEK4 Urease subunit beta 0.0120110715355 0.00196404039226 -0.0100470311432 +UniRef50_A1R4R1 Glutamyl tRNA amidotransferase subunit A 0.000101043282575 0.0076287402783 0.00752769699573 +UniRef50_UPI0003685835 hypothetical protein 6.92141938234e-05 9.27440452985e-06 -5.99397892936e-05 +UniRef50_K0S5Y4 0.000186772022854 0.000114225875159 -7.2546147695e-05 +UniRef50_A0A023X9G2 ABC transporter permease protein 0.0125265939867 0.00524608298953 -0.00728051099717 +UniRef50_B9E1A4 0.000182360381085 0.00134167359752 0.00115931321644 +UniRef50_UPI0003FA3257 protein HflC 8.46458372455e-05 1.58682334723e-05 -6.87776037732e-05 +UniRef50_M9S6A9 Two component response regulator, PprB 0.000655509560464 0.00092474989088 0.000269240330416 +UniRef50_W4TN66 Integral membrane protein 6.63018518973e-05 0.000586914312731 0.000520612460834 +UniRef50_Q6AAW0 Phosphoenolpyruvate protein phosphotransferase 9.56467877165e-05 0.00536074619651 0.00526509940879 +UniRef50_A8L3Z7 2.6539170441e-05 8.1324634341e-06 -1.84067070069e-05 +UniRef50_M9Z693 Nitrite oxidordeuctase B subunit 2.31930484293e-05 2.70267873688e-05 3.8337389395e-06 +UniRef50_W6ICP5 Methyl accepting chemotaxis protein 2.49426301013e-05 9.84770667696e-06 -1.50949234243e-05 +UniRef50_W8YNW6 6 pyruvoyl tetrahydropterin synthase 4.28283374897e-05 0.000121434553499 7.86062160093e-05 +UniRef50_X5DUC9 Thioesterase like superfamily protein 0.0309976534356 0.00554374880551 -0.0254539046301 +UniRef50_V8G0E6 Cell wall binding protein 0.00121668485799 0.00576806634254 0.00455138148455 +UniRef50_Q5ZZI2 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.00118386410449 0.000437506229925 -0.000746357874565 +UniRef50_O74197 Phosphoribosylaminoimidazole carboxylase 2.05450491225e-05 2.35679343728e-05 3.0228852503e-06 +UniRef50_R1BXE4 0.000245285910898 0.000263346271411 1.8060360513e-05 +UniRef50_UPI0004695C98 amino acid ABC transporter permease 3.94346356983e-05 6.42011089939e-05 2.47664732956e-05 +UniRef50_UPI000426690E hypothetical protein 3.152159372e-05 3.33629431599e-05 1.8413494399e-06 +UniRef50_O34947 0.000325418955908 0.00103062362617 0.000705204670262 +UniRef50_V9WEG0 Permease of the drug metabolite transporter superfamily 0.0035492444399 0.000623312452362 -0.00292593198754 +UniRef50_S9SJZ0 0.00100391711547 0.00123669967403 0.00023278255856 +UniRef50_UPI000473A780 threonine dehydratase 2.91705153567e-06 1.326628594e-05 1.03492344043e-05 +UniRef50_UPI0001E89D91 Transcriptional regulator of sugar metabolism 1.76451323327e-05 5.13127890767e-05 3.3667656744e-05 +UniRef50_A7FAZ1 0.000255633852495 0.0132088966659 0.0129532628134 +UniRef50_UPI0003B54A85 alpha beta hydrolase, partial 6.82256066011e-05 2.12202446364e-05 -4.70053619647e-05 +UniRef50_UPI0002883AB7 acyl CoA dehydrogenase 6.71816367596e-06 2.18771260062e-05 1.51589623302e-05 +UniRef50_K5CST2 Branched chain amino acid ABC transporter nucleotide binding protein ATPase 3.48034276897e-05 6.82958710244e-05 3.34924433347e-05 +UniRef50_M9R3P2 PHB depolymerase 0.00534868159634 0.00156691845204 -0.0037817631443 +UniRef50_Q6A9Z4 Glutamate ammonia ligase adenylyltransferase 0.00030647782972 0.00621268788677 0.00590621005705 +UniRef50_Q8Y0U6 Thymidylate synthase 0.000116419168241 0.000592112726583 0.000475693558342 +UniRef50_A4WPC2 OmpA MotB domain protein 0.00457116043312 0.000292403313158 -0.00427875711996 +UniRef50_F7Y7I2 0.000235925219919 9.8771950446e-05 -0.000137153269473 +UniRef50_A6LVU2 Cobalt precorrin 5B C methyltransferase 0.000400162934655 0.00119678460493 0.000796621670275 +UniRef50_R7G9U3 Phosphosugar isomerase transcriptional regulator 0.000182654510734 0.00153272544283 0.0013500709321 +UniRef50_L0NA87 0.0014493950259 0.000406514791478 -0.00104288023442 +UniRef50_X5EJ50 PAP2 superfamily protein 0.01758576534 0.00665892548799 -0.010926839852 +UniRef50_UPI0003B68328 mandelate racemase, partial 0.00300881820171 0.00147301580115 -0.00153580240056 +UniRef50_UPI00046BB227 PREDICTED 1.7670102895e-05 5.42736769949e-05 3.66035740999e-05 +UniRef50_G5PRD3 Putative outer membrane lipoprotein 4.32018040191e-05 6.2168073141e-05 1.89662691219e-05 +UniRef50_Q17WK3 0.000226626619354 0.000364887769871 0.000138261150517 +UniRef50_UPI0003EAE12A PREDICTED 4.10932777566e-05 9.23586255471e-05 5.12653477905e-05 +UniRef50_J0XW17 0.000940642595952 5.96728995901e-05 -0.000880969696362 +UniRef50_A6M391 Methyl accepting chemotaxis sensory transducer 8.51472155251e-05 0.00047202046696 0.000386873251435 +UniRef50_E8SJA6 SAM dependent methyltransferase, MraW methylase family 0.00844644924925 0.00301843669099 -0.00542801255826 +UniRef50_A4WQ24 Lytic transglycosylase, catalytic 0.000188546467221 8.09214193954e-05 -0.000107625047826 +UniRef50_A7X2X9 Ribosomal protein L11 methyltransferase 0.0251022106608 0.00941444649834 -0.0156877641625 +UniRef50_UPI0003B390C8 cell division protein FtsW 5.27111737973e-06 6.88426817924e-06 1.61315079951e-06 +UniRef50_I0C5T1 0.00992961581786 0.00358578591712 -0.00634382990074 +UniRef50_L2F8J3 1.5221857645e-05 2.0103074511e-05 4.881216866e-06 +UniRef50_UPI00035F908D hypothetical protein 0.000107952056299 1.73164591113e-05 -9.06355971877e-05 +UniRef50_C0PP21 7.76547371345e-06 0.000130104692687 0.000122339218974 +UniRef50_I0C5T9 0.0153779240783 0.00444446379825 -0.01093346028 +UniRef50_UPI00046F3223 hypothetical protein 3.94147101909e-06 1.87848131648e-05 1.48433421457e-05 +UniRef50_P19769 Putative transposase InsK for insertion sequence element IS150 0.00217549997282 0.000818447020154 -0.00135705295267 +UniRef50_P20371 Protocatechuate 3,4 dioxygenase alpha chain 0.000180327701681 0.00491392696038 0.0047335992587 +UniRef50_O32091 0.0249523986244 0.00873419215956 -0.0162182064648 +UniRef50_UPI0003D730BE PREDICTED 8.52505562555e-06 1.2896724412e-05 4.37166878645e-06 +UniRef50_UPI00039597D2 PREDICTED 4.54951296648e-06 9.35059940619e-05 8.89564810954e-05 +UniRef50_Q9RWU2 3.89428461667e-05 0.00739051920356 0.00735157635739 +UniRef50_UPI0002F9456A hypothetical protein 5.47838889643e-06 8.59315772455e-06 3.11476882812e-06 +UniRef50_W1A536 0.000102887379937 1.03360219152e-05 -9.25513580218e-05 +UniRef50_Q313W4 Bifunctional protein GlmU 3.69003116161e-06 4.82712523398e-06 1.13709407237e-06 +UniRef50_F0Y3L5 0.000181725211559 0.00068655495424 0.000504829742681 +UniRef50_C0LZW7 Cross beta structure silk protein 2 2.05621529976e-06 6.19971148202e-06 4.14349618226e-06 +UniRef50_UPI00035C4CDB hypothetical protein 1.6295955568e-05 1.97135661528e-05 3.4176105848e-06 +UniRef50_R0NY94 7.42541994644e-05 0.000426317845042 0.000352063645578 +UniRef50_M4IMI2 Transposase like protein 0.0223684188054 0.00259087657702 -0.0197775422284 +UniRef50_G8UVE6 TraU 0.000115115752359 9.88747952918e-06 -0.00010522827283 +UniRef50_A6W320 Transposase, IS4 6.88737749315e-06 1.35881082586e-05 6.70073076545e-06 +UniRef50_F4S3R3 0.00016511649144 2.51796976323e-05 -0.000139936793808 +UniRef50_Q1IYK3 UDP N acetylglucosamine 1 carboxyvinyltransferase 5.08919248061e-06 0.0277089566415 0.027703867449 +UniRef50_UPI0003B63C0F hypothetical protein 0.000133164688161 0.000405271343799 0.000272106655638 +UniRef50_H2JMH7 0.000145815104486 6.89038615915e-05 -7.69112428945e-05 +UniRef50_B9KTJ2 ABC spermidine putrescine transporter, ATPase subunit 0.000116149535026 0.000275139787458 0.000158990252432 +UniRef50_H4PPD3 NADP dependent dehydrogenase domain protein 0.000112941896091 0.000255453146905 0.000142511250814 +UniRef50_Q5DZU8 3 methyl 2 oxobutanoate hydroxymethyltransferase 2 0.00321401240101 0.000706249254594 -0.00250776314642 +UniRef50_P37216 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 0.0152427514228 0.00186527772818 -0.0133774736946 +UniRef50_X1KHN3 Marine sediment metagenome DNA, contig 0.000240039219062 7.28941881769e-05 -0.000167145030885 +UniRef50_O67762 DNA directed RNA polymerase subunit beta 3.62788629631e-06 1.80988567904e-06 -1.81800061727e-06 +UniRef50_Q161C7 DNA damage inducible protein, putative 0.000508364935933 0.000147045662343 -0.00036131927359 +UniRef50_UPI000443E2D6 PREDICTED 1.90475579618e-07 3.42990413301e-07 1.52514833683e-07 +UniRef50_Q49WP2 0.0178506743972 0.00056429943668 -0.0172863749605 +UniRef50_H6SJN5 2.21368221653e-05 3.01378270517e-05 8.0010048864e-06 +UniRef50_M9VCC8 0.000257963090329 0.0039355432355 0.00367758014517 +UniRef50_X2M4F7 4.1179666769e-05 0.00026609308024 0.000224913413471 +UniRef50_A5IU85 Parallel beta helix repeat 0.0198223398133 0.00704339995686 -0.0127789398564 +UniRef50_UPI00029A6665 citrate synthase I 0.000142082111628 0.000312074401971 0.000169992290343 +UniRef50_A4WZ48 0.00418123846518 0.00126989570376 -0.00291134276142 +UniRef50_B9HS46 2.08866336533e-05 0.000144618590572 0.000123731956919 +UniRef50_A3UKH7 2.17470530655e-05 4.39510230037e-05 2.22039699382e-05 +UniRef50_B9KTI0 0.00607274542549 0.00199463570617 -0.00407810971932 +UniRef50_B0VS88 Putative acetyltransferase 0.000685900834344 0.00113328011316 0.000447379278816 +UniRef50_UPI000376ED10 hypothetical protein 8.79797964888e-06 0.00011433797813 0.000105539998481 +UniRef50_Q2NHY7 L tyrosine decarboxylase 0.00279557795958 0.00049237674387 -0.00230320121571 +UniRef50_B7LMR0 2.74594098728e-05 0.000279539883017 0.000252080473144 +UniRef50_A8GCA1 Ecotin 0.002595228835 0.000423899576834 -0.00217132925817 +UniRef50_O26607 UPF0145 protein MTH_507 0.000671685653511 0.00358488623641 0.0029132005829 +UniRef50_W8XBA5 Inner membrane transport protein YhjV 5.20480697164e-06 5.94114343242e-06 7.3633646078e-07 +UniRef50_B0K0N0 Adenine phosphoribosyltransferase 1.19993768166e-05 2.20063123107e-05 1.00069354941e-05 +UniRef50_UPI000248DA1A hypothetical protein 2.11245748043e-05 6.29764871351e-06 -1.48269260908e-05 +UniRef50_Q8CQ91 Histidine biosynthesis bifunctional protein HisIE 0.0187881375942 0.00528486439151 -0.0135032732027 +UniRef50_N1X5N0 8.33821909882e-05 8.46126057925e-05 1.2304148043e-06 +UniRef50_UPI0002E805CD hypothetical protein 1.12041394767e-05 9.91443755596e-06 -1.28970192074e-06 +UniRef50_UPI00047183C3 nuclease PIN 6.50615162227e-06 1.22689647541e-05 5.76281313183e-06 +UniRef50_UPI0003829CBF hypothetical protein 9.1810244964e-06 5.75839824161e-05 4.84029579197e-05 +UniRef50_U5MRK8 Secretion protein HlyD family protein 0.000251754444034 0.00219989460152 0.00194814015749 +UniRef50_K4JRS2 4.12236960552e-06 6.02417669013e-05 5.61193972958e-05 +UniRef50_P39131 UDP N acetylglucosamine 2 epimerase 0.0233225716582 0.0160905437937 -0.0072320278645 +UniRef50_UPI00037118F4 hypothetical protein 6.24211182907e-05 1.9651341287e-05 -4.27697770037e-05 +UniRef50_A0A023AZR5 Malic enzyme 0.000577775103057 0.00272109331488 0.00214331821182 +UniRef50_M9R8K1 FlgD like flagellar basal body rod modification protein 6.98583655964e-06 9.55808885768e-06 2.57225229804e-06 +UniRef50_C5E391 KLTH0H11330p 2.23768594054e-05 5.87312083815e-06 -1.65037385673e-05 +UniRef50_A6M0V7 Dihydroxy acid dehydratase 0.000526390587233 0.00149373630218 0.000967345714947 +UniRef50_Q1ATH8 Pyridoxine pyridoxamine 5 phosphate oxidase 9.85136234499e-06 0.000842867902735 0.00083301654039 +UniRef50_A7X1Z3 0.00770158232403 0.00174335395872 -0.00595822836531 +UniRef50_Q72CS6 3 oxoacyl [acyl carrier protein] synthase 3 9.54152844758e-06 5.38223001887e-05 4.42807717411e-05 +UniRef50_B4RL22 Arginine tRNA ligase 0.000236596649626 0.004096024886 0.00385942823637 +UniRef50_O27398 Imidazole glycerol phosphate synthase subunit HisF 0.00606857690043 0.0023446945466 -0.00372388235383 +UniRef50_UPI000478B1E4 hypothetical protein 0.000341506129317 0.0001267940435 -0.000214712085817 +UniRef50_E9SHD5 0.000763508688274 0.00032725157279 -0.000436257115484 +UniRef50_UPI000382B9BD hypothetical protein 9.5503782023e-05 4.29717406836e-05 -5.25320413394e-05 +UniRef50_M4YVY6 Cytoplasmic protein 1.97171985107e-05 3.01725163753e-05 1.04553178646e-05 +UniRef50_A0A022NW71 LigA 3.90511167018e-05 0.000216032471014 0.000176981354312 +UniRef50_A3UE81 1.08925180623e-05 2.70446681811e-05 1.61521501188e-05 +UniRef50_Q8GPJ0 MobB like protein 0.00327342837087 0.00115443035494 -0.00211899801593 +UniRef50_UPI0004657E4B hypothetical protein 3.46965296144e-05 1.23058847584e-05 -2.2390644856e-05 +UniRef50_I6RK04 Tryptophan repressor binding protein 0.000226039514279 0.000908267716836 0.000682228202557 +UniRef50_A0A013LHN9 Putative membrane protein 0.000106425553219 0.00663002205389 0.00652359650067 +UniRef50_E1V4H9 ATP dependent RNA helicase RhlB 0.000136112736362 0.00913936661665 0.00900325388029 +UniRef50_R6LJ53 Cell cycle protein FtsW 0.000860300972659 0.000300936919299 -0.00055936405336 +UniRef50_UPI0003673C2F hypothetical protein 0.000104751216878 2.60006400417e-05 -7.87505768363e-05 +UniRef50_A6M1A4 Flagellin domain protein 0.000285974233984 0.000621667794785 0.000335693560801 +UniRef50_F6B016 Bile acid 0.000928959554168 0.0110455204903 0.0101165609361 +UniRef50_Q02N70 Tryptophan 2,3 dioxygenase 0.000515339900907 0.008674958868 0.00815961896709 +UniRef50_A6VDM0 0.000738285820078 0.000349499462025 -0.000388786358053 +UniRef50_UPI000415BF03 hypothetical protein 5.708289041e-06 0.000112575768776 0.000106867479735 +UniRef50_G8V752 0.000270276364337 0.00377142335926 0.00350114699492 +UniRef50_UPI0003637379 hypothetical protein 1.4239309719e-05 7.62252303945e-06 -6.61678667955e-06 +UniRef50_V8G5A1 Cell wall binding protein 0.00136476669845 0.00199526506377 0.00063049836532 +UniRef50_Q97MB4 NAD dependent protein deacetylase 0.00151854711387 0.00287113721157 0.0013525900977 +UniRef50_UPI00021A56DC PREDICTED 4.49065897872e-05 2.3776331528e-05 -2.11302582592e-05 +UniRef50_UPI00034D5672 ABC transporter permease 2.58330817777e-05 6.56317551676e-05 3.97986733899e-05 +UniRef50_B9KM82 0.000563657267121 0.000169413235378 -0.000394244031743 +UniRef50_Q9ZMV8 Flagellin B 8.72463764734e-05 0.0103836479531 0.0102964015766 +UniRef50_UPI00036E1801 hypothetical protein, partial 0.000123239060004 2.49553087584e-05 -9.82837512456e-05 +UniRef50_L7VNU0 0.000239927535287 0.00188703207725 0.00164710454196 +UniRef50_A0A024JC88 Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit 5.77732860484e-06 9.16358811928e-05 8.5858552588e-05 +UniRef50_T0ZIX4 0.000522578289285 0.000130234602707 -0.000392343686578 +UniRef50_P76482 0.0040963467608 0.000346074263901 -0.0037502724969 +UniRef50_P44502 Cystathionine gamma synthase 0.00878512064938 0.00640410821106 -0.00238101243832 +UniRef50_C0QC86 Probable cytosol aminopeptidase 3.26589686605e-06 1.2685345698e-05 9.41944883195e-06 +UniRef50_H9UNY1 0.00277161544013 0.00201745860869 -0.00075415683144 +UniRef50_Q2J5A7 Biotin synthase 2 4.76668358137e-06 0.000160072557049 0.000155305873468 +UniRef50_D4LLK4 Recombinational DNA repair ATPase 1.12080004449e-05 6.22726301918e-05 5.10646297469e-05 +UniRef50_UPI0002897140 O acetylhomoserine aminocarboxypropyltransferase 3.53218211389e-05 4.30604935715e-05 7.7386724326e-06 +UniRef50_UPI000380E239 hypothetical protein 2.41036223664e-05 2.14445108593e-05 -2.6591115071e-06 +UniRef50_UPI0003775D90 hypothetical protein 0.000150492243732 6.04661664596e-05 -9.00260772724e-05 +UniRef50_F8JSQ7 2.06305722802e-05 0.000171218707466 0.000150588135186 +UniRef50_G7M8J1 Methyl accepting chemotaxis sensory transducer 0.000314937771968 0.000495506544538 0.00018056877257 +UniRef50_A1SG46 Alpha amylase, catalytic region 0.000444348118141 0.00584589697302 0.00540154885488 +UniRef50_J9NZQ0 1.53035106275e-05 7.81166539077e-05 6.28131432802e-05 +UniRef50_UPI00046C792F hypothetical protein 0.000183672389571 2.18971271982e-05 -0.000161775262373 +UniRef50_A8G9Z1 Cell division protein FtsB 0.0048838469263 0.000630569477283 -0.00425327744902 +UniRef50_A0A033TLC6 1.71444663125e-05 7.41134868753e-05 5.69690205628e-05 +UniRef50_A6M2Q2 Phage replisome organizer, putative 0.000525904163991 0.00277416077794 0.00224825661395 +UniRef50_UPI0002FAA418 hypothetical protein 7.73262622655e-06 2.29383081243e-05 1.52056818978e-05 +UniRef50_UPI0002C5976A 5.96567173213e-06 6.09788866822e-06 1.3221693609e-07 +UniRef50_S5XYL7 Aldo keto reductase 0.00229811133678 0.00104165228257 -0.00125645905421 +UniRef50_UPI0003B570ED plasmid stablization protein ParB 2.9588984486e-05 0.00103146354448 0.00100187455999 +UniRef50_Q9RT21 Trigger factor 0.000330363426013 0.0337305945028 0.0334002310768 +UniRef50_D2AEN1 2.62563161996e-06 8.50464443302e-06 5.87901281306e-06 +UniRef50_K2LKK6 Phosphate ABC transporter, periplasmic binding protein 4.51349724722e-06 6.4636836324e-06 1.95018638518e-06 +UniRef50_Q88X60 Adenylyl sulfate kinase 0.0024292441303 0.00151248477249 -0.00091675935781 +UniRef50_Q4XSF0 GTP binding protein, putative 4.18943202232e-06 8.14083548549e-06 3.95140346317e-06 +UniRef50_O67216 4 hydroxy tetrahydrodipicolinate synthase 5.80485769541e-06 2.58854994841e-05 2.00806417887e-05 +UniRef50_UPI0004064E58 transcription termination factor Rho 5.35295054771e-06 3.08276636042e-05 2.54747130565e-05 +UniRef50_Q9R5L5 HSP62=62 kDa urease associated heat shock protein 2.6861316512e-05 0.000222100815177 0.000195239498665 +UniRef50_X0NX98 0.000116823150831 7.34835007715e-06 -0.000109474800754 +UniRef50_UPI00035F4BA7 hypothetical protein 3.39790978671e-05 2.72527165732e-05 -6.7263812939e-06 +UniRef50_Q8FL68 Ribosomal RNA small subunit methyltransferase H 0.00543903914276 0.00148927930947 -0.00394975983329 +UniRef50_W5Y8P3 2.05807583193e-05 5.50256669524e-05 3.44449086331e-05 +UniRef50_A0A024HQB8 Carbamoyl transferase 0.00146064270313 0.000451114012991 -0.00100952869014 +UniRef50_UPI0004761289 hypothetical protein 2.61026842679e-05 0.000209503676374 0.000183400992106 +UniRef50_UPI0003B465F4 hypothetical protein 8.68486359453e-05 1.70073329717e-05 -6.98413029736e-05 +UniRef50_UPI00046A5F3F hypothetical protein 1.72773869583e-05 2.85792285601e-05 1.13018416018e-05 +UniRef50_UPI000382BE44 hypothetical protein 0.00729196509462 0.00372588348113 -0.00356608161349 +UniRef50_Q8CSL5 0.0124931392739 0.00125621761105 -0.0112369216629 +UniRef50_Q8CSL4 0.0101824391723 0.00412948725159 -0.00605295192071 +UniRef50_R6GNH1 0.000476685345143 0.000396398262003 -8.028708314e-05 +UniRef50_B1AIC1 ATP synthase subunit alpha 2.43325345432e-06 1.0090054486e-05 7.65680103168e-06 +UniRef50_UPI000413242B hypothetical protein 9.73092522962e-05 3.39748544459e-05 -6.33343978503e-05 +UniRef50_UPI00036CCC09 hypothetical protein 2.15785364573e-05 5.07217102697e-06 -1.65063654303e-05 +UniRef50_B2TIC3 DNA mismatch repair protein MutS 0.000256009480455 0.000459741978473 0.000203732498018 +UniRef50_Q6LUX5 Isopentenyl diphosphate Delta isomerase 7.33371850124e-05 1.92643355253e-05 -5.40728494871e-05 +UniRef50_UPI00046D5342 hypothetical protein 0.000186456225036 7.74066725508e-05 -0.000109049552485 +UniRef50_UPI00047A154A phosphoribosylaminoimidazolecarboxamide formyltransferase 4.07756012367e-06 1.48324981628e-05 1.07549380391e-05 +UniRef50_O68823 DNA polymerase III subunit chi 1.72047697332e-05 0.000461432351874 0.000444227582141 +UniRef50_I2DEN6 9.5244572462e-05 0.00297213776782 0.00287689319536 +UniRef50_UPI000376424C hypothetical protein 6.55809772965e-06 5.14108864348e-06 -1.41700908617e-06 +UniRef50_M1MMR2 O antigen polymerase 0.000546940534044 0.000576928209253 2.9987675209e-05 +UniRef50_Q08021 0.00240825899851 0.00173715708938 -0.00067110190913 +UniRef50_UPI000472C3EA acetyl CoA carboxylase subunit beta 7.3055853757e-06 2.86476255569e-05 2.13420401812e-05 +UniRef50_G2ZT62 3.94041155936e-06 1.2922390883e-05 8.98197932364e-06 +UniRef50_B1VDD6 Protein RecA 0.00333731304989 0.00560137954926 0.00226406649937 +UniRef50_A9L6A7 TraU family protein 0.000100087686809 1.21362841915e-05 -8.79514026175e-05 +UniRef50_A7X3N2 S adenosylmethionine synthase 0.0144977636378 0.0299510085769 0.0154532449391 +UniRef50_A7X1N2 GTP sensing transcriptional pleiotropic repressor CodY 0.0174538645695 0.00668805024443 -0.0107658143251 +UniRef50_J2YJ27 TonB dependent outermembrane ferric citrate receptor 0.000893668571185 0.000186841609055 -0.00070682696213 +UniRef50_G8AGG5 4.23997252515e-05 7.82620243768e-05 3.58622991253e-05 +UniRef50_UPI0004682C49 hypothetical protein 5.06132220083e-05 2.24810251316e-05 -2.81321968767e-05 +UniRef50_F6G1Z6 Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons 0.000151845707213 0.00442802506102 0.00427617935381 +UniRef50_M4K135 Phospholipid binding domain lipoprotein 0.00297286683172 0.00110743764448 -0.00186542918724 +UniRef50_UPI000361F619 hypothetical protein 0.000119843344702 0.000185671587221 6.5828242519e-05 +UniRef50_UPI000319FA33 hypothetical protein 8.93336198644e-06 5.46646711269e-06 -3.46689487375e-06 +UniRef50_UPI000376B2F3 hypothetical protein 5.46382753106e-05 4.07642915703e-05 -1.38739837403e-05 +UniRef50_Q8DR50 Diphosphomevalonate decarboxylase 0.00413633887785 0.00375201178648 -0.00038432709137 +UniRef50_UPI0003C1AF0C 1.30949726307e-05 1.57479621295e-05 2.6529894988e-06 +UniRef50_Q9K621 Sensory transduction protein BceR 0.0206297389337 0.00315669771627 -0.0174730412174 +UniRef50_Q852F2 1.59873449516e-05 2.49809617098e-05 8.9936167582e-06 +UniRef50_Q3J5W8 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.00108817409996 0.000331196304892 -0.000756977795068 +UniRef50_UPI00045EA5EB hypothetical protein 2.06070361911e-05 7.82702132316e-06 -1.27800148679e-05 +UniRef50_Q8DSX2 Bifunctional protein GlmU 0.0328777645638 0.0132768631814 -0.0196009013824 +UniRef50_Q8ZIL5 Carbamoyl phosphate synthase small chain 2.01184364086e-05 7.73405978241e-06 -1.23843766262e-05 +UniRef50_Q28M29 Lipoprotein releasing system transmembrane protein LolC E family 0.00399804927816 0.000762735456185 -0.00323531382198 +UniRef50_D2NAM2 Transcriptional regulator 0.0113218052105 0.00225351116361 -0.00906829404689 +UniRef50_P65765 FKBP type peptidyl prolyl cis trans isomerase FkpA 0.00163072079315 0.00024712694996 -0.00138359384319 +UniRef50_D3E2L0 Mevalonate kinase 0.0025388584601 0.00038481895406 -0.00215403950604 +UniRef50_I0JI98 DUF21 CBS domain protein 0.0194989067414 0.00411736181688 -0.0153815449245 +UniRef50_UPI0003766160 hypothetical protein 0.00145400719562 0.000269400635831 -0.00118460655979 +UniRef50_F0L4M9 Cytochrome c oxidase fixO chain 0.016375269256 0.00303107391853 -0.0133441953375 +UniRef50_B7V416 0.00116431639298 0.00130714924403 0.00014283285105 +UniRef50_A0A024HQA8 Amino acid ABC transporter substrate binding protein 0.000650175201672 0.00069387749016 4.3702288488e-05 +UniRef50_A8FAK7 2 isopropylmalate synthase 2 1.95732159589e-06 6.28859173408e-06 4.33127013819e-06 +UniRef50_Q1ITT1 50S ribosomal protein L35 0.0052427317198 0.00196877803463 -0.00327395368517 +UniRef50_Q4FME5 9.75961111015e-06 2.590002352e-05 1.61404124099e-05 +UniRef50_R1E3V2 7.8588339106e-05 0.000524630997291 0.000446042658185 +UniRef50_UPI00036F4F1C peptidase S8 2.67341351859e-05 0.0117551088368 0.0117283747016 +UniRef50_A6LVW2 3D domain protein 0.000230643170378 0.000340750044459 0.000110106874081 +UniRef50_K6VBL3 Type IV secretion system family protein 1.5088801761e-05 1.46202403204e-05 -4.685614406e-07 +UniRef50_U3T564 Acyl coenzyme A dehydrogenase 0.000642769589172 0.0196419098187 0.0189991402295 +UniRef50_UPI0001BF5D6F hypothetical protein SMAC_10343 7.54981539425e-06 1.72347675116e-05 9.68495211735e-06 +UniRef50_UPI0003638F6E hypothetical protein 0.000177061599184 6.59648093136e-05 -0.00011109678987 +UniRef50_UPI000348D250 hypothetical protein 9.35840352805e-06 0.00271998365698 0.00271062525345 +UniRef50_UPI000367510D hypothetical protein 2.10493739897e-05 1.10247382545e-05 -1.00246357352e-05 +UniRef50_Q9ZJT0 Methionine aminopeptidase 2.62257615776e-05 0.00247429277342 0.00244806701184 +UniRef50_A3QBC5 S malonyltransferase 0.000331497548229 0.000184765404716 -0.000146732143513 +UniRef50_UPI0003B4C933 peptide ABC transporter permease 1.0358182119e-05 8.35811540694e-06 -2.00006671206e-06 +UniRef50_A2RHJ5 Protein translocase subunit SecA 0.000108576986252 0.00226940823142 0.00216083124517 +UniRef50_L5VNR4 Ybl54 0.000589821857578 0.000220133152856 -0.000369688704722 +UniRef50_UPI000364F3E3 hypothetical protein 2.04908596272e-05 4.35789242388e-05 2.30880646116e-05 +UniRef50_Q0ARE4 UspA domain protein 0.00188739639982 0.000255685459043 -0.00163171094078 +UniRef50_B7IH88 CTP synthase 6.80181005635e-06 4.93693339968e-06 -1.86487665667e-06 +UniRef50_A6LQR9 GTPase Obg 0.000471312984821 0.00353675744525 0.00306544446043 +UniRef50_UPI000360EF04 hypothetical protein 2.11495001476e-05 2.64565329433e-05 5.3070327957e-06 +UniRef50_UPI000225C0BC Holliday junction ATP dependent DNA helicase ruvA 2.09897138278e-05 1.28583914059e-05 -8.1313224219e-06 +UniRef50_UPI0003B42254 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.28967063179e-05 2.06422080959e-05 7.745501778e-06 +UniRef50_F0XVT1 1.22585381348e-05 4.89111039943e-05 3.66525658595e-05 +UniRef50_UPI000376F4CA hypothetical protein 2.9524877422e-06 6.01458357621e-06 3.06209583401e-06 +UniRef50_A6LST7 Response regulator receiver protein 0.000219044094112 0.00107691621115 0.000857872117038 +UniRef50_Q53175 MotB 4.41182617886e-05 0.000148577832251 0.000104459570462 +UniRef50_UPI00014C4177 MULTISPECIES 4.42083521267e-05 2.9219488549e-05 -1.49888635777e-05 +UniRef50_R4YW23 Chromosome partitioning protein transcriptional regulator 1.44487000872e-05 2.90170254168e-05 1.45683253296e-05 +UniRef50_UPI0003769C11 hypothetical protein 2.838140338e-05 5.03961067691e-05 2.20147033891e-05 +UniRef50_X1QL65 Marine sediment metagenome DNA, contig 5.54631798105e-05 0.000328024924245 0.000272561744434 +UniRef50_P52599 Probable multidrug resistance protein EmrK 0.00312974664089 0.00116232029316 -0.00196742634773 +UniRef50_H0Q3N8 Thioesterase superfamily protein 9.80414369471e-06 6.10130100964e-05 5.12088664017e-05 +UniRef50_UPI00041EC5EE DNA polymerase III subunit alpha 1.76054779241e-05 3.36536824856e-06 -1.42401096755e-05 +UniRef50_A0A023YHP1 1.40823327104e-05 1.16263358233e-05 -2.4559968871e-06 +UniRef50_A1T8K1 Riboflavin biosynthesis protein RibBA 1.20032128141e-05 9.21068752911e-06 -2.79252528499e-06 +UniRef50_UPI0003B3F8B2 ABC transporter 6.68832178913e-06 1.10430792647e-05 4.35475747557e-06 +UniRef50_I2F1Y3 L serine deaminase 6.85361146959e-06 8.64448717586e-06 1.79087570627e-06 +UniRef50_UPI0003A7C9ED hypothetical protein 8.89437277231e-07 9.61497780369e-05 9.52603407597e-05 +UniRef50_R6Z842 [citrate lyase] ligase 0.00377497816404 0.00153210687733 -0.00224287128671 +UniRef50_F4E2U8 Glycerol dehydrogenase 0.000371928764129 0.00184820190651 0.00147627314238 +UniRef50_UPI0002E02ECB cold shock protein 4.69098449881e-05 5.01173411478e-05 3.2074961597e-06 +UniRef50_P71405 Serine acetyltransferase 1.03358513842e-05 0.0134222940227 0.0134119581713 +UniRef50_P52137 Putative arsenical pump membrane protein 0.000490320830018 0.000313056577946 -0.000177264252072 +UniRef50_UPI000372B1CF hypothetical protein 8.72784112518e-06 3.09073577937e-06 -5.63710534581e-06 +UniRef50_P23481 Hydrogenase 4 component A 0.00141542985494 0.00273542286067 0.00131999300573 +UniRef50_Q5HE46 Mannitol specific phosphotransferase enzyme IIA component 0.0103421027892 0.0014041804641 -0.0089379223251 +UniRef50_Q836B1 UPF0473 protein EF_1204 0.00211550647335 0.000694862835762 -0.00142064363759 +UniRef50_A6LQW6 UPF0272 protein Cbei_0559 0.000298884839366 0.000530524226449 0.000231639387083 +UniRef50_UPI00046EF03F hypothetical protein 8.88023820204e-06 6.26985560787e-06 -2.61038259417e-06 +UniRef50_A3PLE1 0.0113166176695 0.00113189833496 -0.0101847193345 +UniRef50_M1MRV5 Neutral endopeptidase PepO 0.000242611209003 0.00195584195819 0.00171323074919 +UniRef50_Q897S6 S1 RNA binding domain 0.000335914792664 0.000241074861385 -9.4839931279e-05 +UniRef50_C0ZES6 LexA repressor 0.000206230662615 0.0035678678546 0.00336163719198 +UniRef50_W1FU82 Cell division protein FtsK 0.000221744272145 5.07271752353e-05 -0.00017101709691 +UniRef50_B5BP16 Truncated transposase of IS3 family 0.0193935035512 0.0066155824657 -0.0127779210855 +UniRef50_M9V8F1 0.00026397621598 0.00375162316872 0.00348764695274 +UniRef50_UPI0002E99FC0 hypothetical protein 1.91105116965e-05 7.70596536515e-06 -1.14045463314e-05 +UniRef50_Q97L15 Permease 0.0010577591384 0.000160207977501 -0.000897551160899 +UniRef50_UPI00037D00A3 hypothetical protein 3.64965246119e-05 1.13379803589e-05 -2.5158544253e-05 +UniRef50_A4WVZ8 FxsA cytoplasmic membrane protein 0.000481916641496 0.000543527678278 6.1611036782e-05 +UniRef50_Q2W2I2 DNA directed RNA polymerase subunit beta 6.6431934524e-06 1.22754694176e-05 5.6322759652e-06 +UniRef50_UPI000466CD21 hypothetical protein, partial 5.92340799314e-06 1.12488391237e-05 5.32543113056e-06 +UniRef50_P0A9S2 Lactaldehyde reductase 0.00426831983883 0.0085677523087 0.00429943246987 +UniRef50_Q2S8W1 Glucose 6 phosphate isomerase 0.000727623401213 0.000378390983644 -0.000349232417569 +UniRef50_A8LL11 HTH type transcriptional regulator 0.006037973454 0.00297789462745 -0.00306007882655 +UniRef50_Q9RRG5 0.000234949785595 0.0870772692128 0.0868423194272 +UniRef50_Q9RRG4 0.000154972173725 0.0165091959811 0.0163542238074 +UniRef50_F5MXW8 Baseplate J like family protein 1.2694355784e-05 6.15003670202e-06 -6.54431908198e-06 +UniRef50_A8LSD5 3 oxoadipate enol lactonase 0.00273259970254 0.000225432599378 -0.00250716710316 +UniRef50_J9YYN1 0.000162373661847 5.2545325181e-05 -0.000109828336666 +UniRef50_Q833W9 Tagatose 6 phosphate kinase 0.000215781432963 0.00487715894696 0.004661377514 +UniRef50_A3M8U5 Heavy metal RND efflux outer membrane protein CzcC family 9.19202894945e-05 0.00606440998336 0.00597248969387 +UniRef50_R4Q8N7 Oxidoreductase 0.000137267632307 0.00294210782748 0.00280484019517 +UniRef50_W7S9M8 Pyruvate dehydrogenase E1 component 4.4969498337e-05 3.44323924682e-05 -1.05371058688e-05 +UniRef50_A6LSX8 0.000240999160205 0.00260918625837 0.00236818709817 +UniRef50_U3U1D9 2.1983670475e-05 2.47420462487e-05 2.7583757737e-06 +UniRef50_UPI000363B64B hypothetical protein 1.71544928236e-05 0.000248909483523 0.000231754990699 +UniRef50_C5N6E7 Hydrolase, haloacid dehalogenase like family protein 0.0177621043601 0.00627112219694 -0.0114909821632 +UniRef50_C7ZTC0 FecCD transporter 0.0128123104741 0.0033236168844 -0.0094886935897 +UniRef50_L1KZ69 7.8981788932e-05 0.000142425725899 6.3443936967e-05 +UniRef50_UPI000174446D ABC transporter permease 6.37787228755e-06 3.06930037227e-05 2.43151314351e-05 +UniRef50_Q1AVI9 NADH quinone oxidoreductase subunit K 1.01199095881e-05 4.16409347091e-05 3.1521025121e-05 +UniRef50_M1MG71 Methyl accepting chemotaxis sensory transducer 0.000423377497034 0.000796090942569 0.000372713445535 +UniRef50_UPI00028A050D translation factor Sua5 9.12939659951e-05 0.000220134323994 0.000128840357999 +UniRef50_F6EUQ1 4.06285268822e-06 6.93003343858e-06 2.86718075036e-06 +UniRef50_UPI000379F19F hypothetical protein 1.44277008172e-05 1.67778906207e-05 2.3501898035e-06 +UniRef50_O33948 Catechol 1,2 dioxygenase 1 0.000751167016841 0.00367103122382 0.00291986420698 +UniRef50_Q4L7V3 mRNA interferase MazF 0.00282097991807 0.00462715892414 0.00180617900607 +UniRef50_A6LZS0 0.000143712939918 0.000570141748584 0.000426428808666 +UniRef50_E4SGC1 ABC transporter related protein 0.000240436935571 0.00106674234722 0.000826305411649 +UniRef50_A6LZS9 0.00108378220493 0.00183792253709 0.00075414033216 +UniRef50_UPI00037BA2BE hypothetical protein 4.78138007728e-06 8.19412800736e-06 3.41274793008e-06 +UniRef50_UPI00036A311B hypothetical protein 1.15765830002e-05 0.000282422434126 0.000270845851126 +UniRef50_A4WVM4 0.0201965704813 0.00795222918528 -0.012244341296 +UniRef50_I3TI18 Cysteine desulfuration protein SufE 0.000168348456038 3.06108642751e-05 -0.000137737591763 +UniRef50_UPI000262CF2F amino acid ABC transporter 1.27416411248e-05 4.83747643416e-05 3.56331232168e-05 +UniRef50_F0YPX2 0.000333240887747 0.000746958566597 0.00041371767885 +UniRef50_O27818 dTDP 4 dehydrorhamnose 3,5 epimerase 0.000827545755014 0.00648464173753 0.00565709598252 +UniRef50_M1Z2C4 1.05473220211e-05 8.90333474272e-06 -1.64398727838e-06 +UniRef50_UPI0003682E40 hypothetical protein 2.32208044079e-06 0.000675528563406 0.000673206482965 +UniRef50_UPI0003B7B255 hypothetical protein 0.000189027419028 0.000103801116887 -8.5226302141e-05 +UniRef50_E6TTW0 Cyclic nucleotide binding protein 0.000302934855009 0.00120646291406 0.000903528059051 +UniRef50_P57134 DNA replication protein DnaC 0.00126079232907 0.00224602758449 0.00098523525542 +UniRef50_UPI0004706BF7 hypothetical protein 0.000178104630444 7.87506913905e-05 -9.93539390535e-05 +UniRef50_G4LJE6 TonB dependent receptor 0.000864656494443 0.000259481057142 -0.000605175437301 +UniRef50_G7M1W4 Two component transcriptional regulator, winged helix family 0.000569102953191 0.00252385069592 0.00195474774273 +UniRef50_B1JZW0 Glutamate putrescine ligase 0.00942648811488 0.00249460941909 -0.00693187869579 +UniRef50_Q9X4Q9 Flagellar motor switch protein FliG 0.0009211028829 0.00047382629598 -0.00044727658692 +UniRef50_H2HFL3 Metal nicotianamine transporter YSL2 5.87374464015e-05 0.00867126481957 0.00861252737317 +UniRef50_A5ULB0 Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF 0.00545187566083 0.00072313042547 -0.00472874523536 +UniRef50_X5E2B2 Nucleoside triphosphatase YtkD 0.0213950811135 0.00456794902128 -0.0168271320922 +UniRef50_A6LTZ5 0.000257963090329 0.000897261753016 0.000639298662687 +UniRef50_Q3IV04 Transposase, IS3 IS911family 0.00289787223765 0.00370120566977 0.00080333343212 +UniRef50_UPI0003957091 1.29797881341e-05 3.45854819551e-05 2.1605693821e-05 +UniRef50_V8FTX6 Hemerythrin 0.000406627636108 0.00079457409469 0.000387946458582 +UniRef50_Q92WJ0 Fe ions import ATP binding protein FbpC 1 8.26290704735e-05 2.72263338115e-05 -5.5402736662e-05 +UniRef50_C9D087 0.000759504616145 0.000207309765447 -0.000552194850698 +UniRef50_UPI0004717DF9 hypothetical protein 3.99775878913e-06 0.000176562291225 0.000172564532436 +UniRef50_R4XYL7 Glutamate dehydrogenase 0.000138951897734 0.0234558784526 0.0233169265549 +UniRef50_C6AN40 Tellurite resistance protein TehB 3.30304864109e-05 2.87522496565e-05 -4.2782367544e-06 +UniRef50_A6LTZ8 0.000718751433046 0.000513594269898 -0.000205157163148 +UniRef50_UPI0003B4BD8A Ktr system potassium transporter B 3.04919139807e-05 5.64864932295e-06 -2.48432646577e-05 +UniRef50_B5EXJ7 HMP PP phosphatase 0.00304790282174 0.0013422546532 -0.00170564816854 +UniRef50_B3DTE2 DNA directed RNA polymerase subunit beta 1.48871412452e-06 0.00385044474073 0.00384895602661 +UniRef50_G9PNM2 0.000258353423654 0.000190970498982 -6.7382924672e-05 +UniRef50_UPI00037627C6 hypothetical protein 4.28919418554e-05 6.98706438644e-06 -3.5904877469e-05 +UniRef50_UPI0004561990 hypothetical protein PFL1_04301 2.17716637439e-06 4.16438530641e-07 -1.76072784375e-06 +UniRef50_Q8PLY8 Sulfoxide reductase catalytic subunit YedY 0.0133045836728 0.000561192911587 -0.0127433907612 +UniRef50_U3T5A3 AraC family transcriptional regulator 0.000123361434261 0.00703138033169 0.00690801889743 +UniRef50_V8FJ54 3.83157000272e-05 2.4237662799e-05 -1.40780372282e-05 +UniRef50_Q71YZ5 2 succinylbenzoate CoA ligase 4.90055444994e-06 0.000873825703817 0.000868925149367 +UniRef50_R6QTT5 2.34641165126e-05 1.23850825502e-05 -1.10790339624e-05 +UniRef50_UPI0002626035 N acylamino acid racemase 3.52179748339e-05 0.00276789484125 0.00273267686642 +UniRef50_G7ZBU5 8.79195836987e-07 3.31687698982e-05 3.22895740612e-05 +UniRef50_B1I4C7 Phospho N acetylmuramoyl pentapeptide transferase 5.48397506244e-06 1.64567015084e-05 1.0972726446e-05 +UniRef50_Q0BXH7 Elongation factor P 0.0125352836038 0.00201011751363 -0.0105251660902 +UniRef50_A0A024K7R9 6.68034991922e-06 0.000270644910385 0.000263964560466 +UniRef50_B2V461 Molecular chaperone, DnaJ family 0.000437242458129 0.00130123826738 0.000863995809251 +UniRef50_Q46892 Inner membrane permease YgbN 0.00247658805084 0.00205933583358 -0.00041725221726 +UniRef50_Q57962 Probable phosphoenolpyruvate synthase 1.57251730505e-06 4.20223841815e-05 4.04498668765e-05 +UniRef50_Q9RSQ3 Phosphoglucosamine mutase 0.000134018694272 0.0367130268057 0.0365790081114 +UniRef50_Q9KV02 Sulfurtransferase TusD homolog 0.000589821857578 0.0010054338974 0.000415612039822 +UniRef50_A4WUU1 0.000697061115739 0.000723499297692 2.6438181953e-05 +UniRef50_B9L5K2 3 isopropylmalate dehydratase small subunit 0.00233998126793 0.000496087612676 -0.00184389365525 +UniRef50_P9WQ18 Trehalose synthase amylase TreS 2.66596022611e-06 5.73543476545e-05 5.46883874284e-05 +UniRef50_Q7WK82 ATP dependent Clp protease ATP binding subunit ClpX 0.0429285828639 0.0376689359364 -0.0052596469275 +UniRef50_M1HJ56 Arginine serine rich splicing factor SR45 transcript VII 0.000106997490651 0.000189531391223 8.2533900572e-05 +UniRef50_B9JX70 ABC transporter membrane spanning protein 0.00840451577838 0.00111187498437 -0.00729264079401 +UniRef50_E4PYK4 0.00900846710666 0.00154078280971 -0.00746768429695 +UniRef50_UPI00034DD06F hypothetical protein 2.76008213713e-06 1.0810459117e-05 8.05037697987e-06 +UniRef50_Q49YI2 Putative dipeptidase SSP1012 0.0217334617115 0.00539371980972 -0.0163397419018 +UniRef50_Q6NAT0 Holliday junction ATP dependent DNA helicase RuvA 2.538957945e-05 6.44195602122e-05 3.90299807622e-05 +UniRef50_UPI000370A604 hypothetical protein 2.18501642579e-05 1.45329207227e-05 -7.3172435352e-06 +UniRef50_Q7ML43 0.00014842175184 0.000228043787796 7.9622035956e-05 +UniRef50_UPI000367EFAE hypothetical protein 2.98632019236e-05 9.22717732702e-05 6.24085713466e-05 +UniRef50_R6UK77 1.39077664779e-05 3.32930191572e-05 1.93852526793e-05 +UniRef50_J7M6X3 MarR family transcriptional regulator 0.0101004177232 0.00299801127546 -0.00710240644774 +UniRef50_H6RV56 ABC transporter substrate binding protein 5.45057158398e-05 1.06610341326e-05 -4.38446817072e-05 +UniRef50_P17055 Spheroidene monooxygenase 0.00116089620059 0.000706460974096 -0.000454435226494 +UniRef50_B7UZN8 0.00121866500854 0.00121363029532 -5.03471322e-06 +UniRef50_W6LVN7 5.96561725863e-05 7.89554215805e-06 -5.17606304283e-05 +UniRef50_A4YNQ7 Fructose 1,6 bisphosphatase class 1 2.17259422031e-05 9.14272245072e-06 -1.25832197524e-05 +UniRef50_UPI00039CC0CD hypothetical protein 0.000100735112938 0.000606815147654 0.000506080034716 +UniRef50_UPI00047A1A5F hypothetical protein 1.91603932424e-06 1.37760435985e-05 1.18600042743e-05 +UniRef50_Q4L6F4 Penicillin binding protein 2 0.0197790564135 0.00529411681174 -0.0144849396018 +UniRef50_G0K3J8 Aspartate transaminase 0.000866220535402 0.000152750019926 -0.000713470515476 +UniRef50_N6A8S2 0.128624641912 0.0408651374255 -0.0877595044865 +UniRef50_UPI000381D193 hypothetical protein 4.95329075139e-05 1.34710916129e-05 -3.6061815901e-05 +UniRef50_V9AXK3 4.292866749e-05 0.0010361989656 0.00099327029811 +UniRef50_Q9SZX3 Argininosuccinate synthase, chloroplastic 6.78255081935e-06 0.000106036094597 9.92535437777e-05 +UniRef50_UPI00046EE386 hypothetical protein 2.85873698862e-05 4.70552027218e-05 1.84678328356e-05 +UniRef50_Q2RJ31 Glutamate 1 semialdehyde 2,1 aminomutase 0.0211707455126 0.0084053287015 -0.0127654168111 +UniRef50_T1IAF8 4.42162544977e-05 0.000138321641777 9.41053872793e-05 +UniRef50_Q652A8 UDP glucose 4 epimerase 3 0.0033148135432 0.00350173337234 0.00018691982914 +UniRef50_C7NJ54 2.67793570637e-05 5.98741611968e-05 3.30948041331e-05 +UniRef50_A0A009P2J7 SnoaL like polyketide cyclase family protein 0.000106376226475 7.74113834311e-05 -2.89648430439e-05 +UniRef50_P31884 Quinone reactive Ni Fe hydrogenase small chain 0.000199661560248 0.00172780677606 0.00152814521581 +UniRef50_M7MSG6 Putative metal ABC transporter metal binding protein 1.18972563322e-05 6.63670239507e-05 5.44697676185e-05 +UniRef50_A6LQU3 Integral membrane sensor signal transduction histidine kinase 0.00011268238473 0.00192036119138 0.00180767880665 +UniRef50_C1DR09 0.000141330594788 0.000123212229257 -1.8118365531e-05 +UniRef50_K9IDN1 Lactose PTS family porter repressor 1.35709196075e-05 1.44875779552e-05 9.166583477e-07 +UniRef50_Q0SA63 Flavin binding monooxygenase 0.00102276836437 0.000120783928514 -0.000901984435856 +UniRef50_UPI00046253F9 PTS sugar transporter subunit IIA 9.73041004731e-06 2.92513105482e-05 1.95209005009e-05 +UniRef50_UPI00026C726F cell division protein FtsZ 5.52723730095e-06 2.12603970475e-05 1.57331597465e-05 +UniRef50_W5X4V3 1.59664538314e-05 0.0003666684518 0.000350701997969 +UniRef50_A3TWL6 0.000887359015352 0.00022139832901 -0.000665960686342 +UniRef50_D9RF73 0.000132463599085 0.000229411710101 9.6948111016e-05 +UniRef50_F4NHW2 0.000320417141437 0.00111440266111 0.000793985519673 +UniRef50_UPI0003B4D2F4 hypothetical protein 0.000631498966191 0.00134739296056 0.000715893994369 +UniRef50_UPI0002628E38 arginine ABC transporter ATP binding protein 7.84742675097e-05 4.14489817624e-05 -3.70252857473e-05 +UniRef50_A4EQN9 2.63945509496e-05 0.000167120686114 0.000140726135164 +UniRef50_UPI0003A677C1 histidine kinase 7.87357538774e-06 5.57419051372e-06 -2.29938487402e-06 +UniRef50_A5UNL6 Transposase, RNaseH like family 0.00522851761134 0.00163624599604 -0.0035922716153 +UniRef50_U5NRH5 0.0178924692635 0.0295316705195 0.011639201256 +UniRef50_W5X9W9 Glucose 6 phosphate 1 dehydrogenase 1.01761908466e-05 0.000185033285536 0.000174857094689 +UniRef50_D5WDJ8 Ectoine hydroxyectoine ABC transporter, ATP binding protein 0.0165254093452 0.00655526342436 -0.00997014592084 +UniRef50_UPI0003B7A139 NUDIX hydrolase 0.00037520921556 2.42947689639e-05 -0.000350914446596 +UniRef50_Q1NAN1 4.69575343559e-06 1.57499562437e-05 1.10542028081e-05 +UniRef50_UPI0003A86DCB sec independent translocation protein mttA Hcf106 5.64491131968e-05 4.25773162061e-05 -1.38717969907e-05 +UniRef50_A6V2V4 3 isopropylmalate dehydratase small subunit 0.00161415264876 0.000934882362 -0.00067927028676 +UniRef50_T0ZWG6 Phosphoribosylformylglycinamidine synthase I 2.51528009255e-05 3.30100747039e-05 7.8572737784e-06 +UniRef50_UPI000369DCC7 hypothetical protein 5.44969019987e-05 0.000181409750662 0.000126912848663 +UniRef50_A0A024HJZ5 0.000307627504106 0.000102067985674 -0.000205559518432 +UniRef50_P61951 Flavodoxin 1 0.0038303605491 0.000678239944027 -0.00315212060507 +UniRef50_Q9ZL73 Flagellar biosynthetic protein FlhB 0.000217752206347 0.00254292551931 0.00232517331296 +UniRef50_U3ST65 Fructan hydrolase FruB 0.00755109695962 0.00214277347298 -0.00540832348664 +UniRef50_B7VA67 0.00182034059833 0.000706318945962 -0.00111402165237 +UniRef50_Q0A562 2.69180165648e-05 2.02413706683e-05 -6.6766458965e-06 +UniRef50_Q8EGH1 Ditrans,polycis undecaprenyl diphosphate synthase farnesyl diphosphate specific) 0.00204856703827 0.000256660035054 -0.00179190700322 +UniRef50_P77544 Glutathione S transferase YfcF 0.00592090285717 4.53046920905e-05 -0.00587559816508 +UniRef50_B6JMC7 Phosphotransacetylase 0.000230643170378 0.000655044012135 0.000424400841757 +UniRef50_Q6G6T1 MerR family regulatory protein 0.011570972894 0.000720639688898 -0.0108503332051 +UniRef50_B1JFW5 Putative sialic acid transporter 0.00286525587553 0.000725416944637 -0.00213983893089 +UniRef50_O31688 Zinc transporting ATPase 1.64451683429e-05 0.00220835824755 0.00219191307921 +UniRef50_B0T2U9 ChaC family protein 3.88340830237e-06 3.35206932227e-06 -5.313389801e-07 +UniRef50_Q5HG20 Diaminopimelate decarboxylase 0.00728391697913 0.00115654227328 -0.00612737470585 +UniRef50_P39405 Ferric iron reductase protein FhuF 0.00338635659748 0.000295316705201 -0.00309103989228 +UniRef50_UPI0004674EC8 pseudouridine synthase 1.14431618646e-05 1.78352939312e-05 6.3921320666e-06 +UniRef50_UPI00037DA301 hypothetical protein 4.69697654229e-05 9.824339406e-06 -3.71454260169e-05 +UniRef50_UPI0002DDF67E hypothetical protein 3.86829135201e-05 4.27191730501e-05 4.03625953e-06 +UniRef50_G8RZN0 5.49893768598e-06 2.69898278689e-05 2.14908901829e-05 +UniRef50_Q3J3J9 0.000702504504244 0.00089040212621 0.000187897621966 +UniRef50_B7UZJ0 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000111572213456 0.000185900385592 7.4328172136e-05 +UniRef50_W0YUW2 Phosphoketolase 0.00038164938633 0.000256564237252 -0.000125085149078 +UniRef50_I0ZXX0 ATPase associated with various cellular activities AAA_5 0.00291453612608 0.0013148308522 -0.00159970527388 +UniRef50_Q9WZR0 CTP synthase 6.73195784069e-06 2.94483785455e-05 2.27164207048e-05 +UniRef50_Q8ZJF2 Tryptophan tRNA ligase 0.00467345301486 0.00142611555949 -0.00324733745537 +UniRef50_P44638 Lactoylglutathione lyase 0.000401441553581 3.23672091182e-05 -0.000369074344463 +UniRef50_UPI000360EF37 hypothetical protein, partial 1.70013249845e-05 5.69880686071e-05 3.99867436226e-05 +UniRef50_G3NMT4 5.40058208084e-06 0.00038476553164 0.000379364949559 +UniRef50_P0ABJ0 Cytochrome bo ubiquinol oxidase subunit 1 0.00453517414156 0.010635895701 0.00610072155944 +UniRef50_Q04664 Galactosyl transferase CpsE 0.000178207040781 0.000454172093428 0.000275965052647 +UniRef50_Q88HN0 CobW P47K family protein 1.05248090398e-05 1.28976731937e-05 2.3728641539e-06 +UniRef50_A5UMX1 Predicted membrane associated Zn dependent protease 0.00278865623254 0.000534025617684 -0.00225463061486 +UniRef50_A5UP18 0.00275383464472 0.00101647693896 -0.00173735770576 +UniRef50_UPI00045E2399 PREDICTED 6.30840724341e-05 0.000108234168055 4.51500956209e-05 +UniRef50_A3SUN2 0.00157400855818 0.000129125227348 -0.00144488333083 +UniRef50_P64452 0.00459439886299 0.00172019043043 -0.00287420843256 +UniRef50_W1GE26 Aerotaxis sensor receptor protein 0.00011069970347 0.00017303713195 6.233742848e-05 +UniRef50_Q167K9 Chemotaxis response regulator protein glutamate methylesterase 6.75217610652e-05 9.34288145708e-06 -5.81788796081e-05 +UniRef50_Q9A7N9 Guanylate kinase 9.64062507658e-06 5.33993978369e-05 4.37587727603e-05 +UniRef50_P0AGJ6 0.00223556044187 0.000189710945528 -0.00204584949634 +UniRef50_K4PRE7 PTS system beta glucoside specific EIIBCA component 0.000216351331064 0.00352738739095 0.00331103605989 +UniRef50_U5MWY6 0.000402960371937 0.000942500122969 0.000539539751032 +UniRef50_R4GFK2 1.15173507714e-05 0.000103191756571 9.16744057996e-05 +UniRef50_W7WSH9 3.93286986155e-05 0.00144003239666 0.00140070369804 +UniRef50_D0JTC4 Uroporphyrinogen decarboxylase 0.00262486529261 0.00188317231262 -0.00074169297999 +UniRef50_P0CQ36 Phosphoribosylaminoimidazole carboxylase 1.86080582161e-05 2.64283030819e-05 7.8202448658e-06 +UniRef50_A0A038FKH8 0.00193966093626 0.000576005642589 -0.00136365529367 +UniRef50_B9TKN7 3.55867028307e-05 2.50262236609e-05 -1.05604791698e-05 +UniRef50_F4SG83 Glycerol 3 phosphate transporter 0.0023413107756 0.000348799258104 -0.0019925115175 +UniRef50_F9EIW4 0.000190580605219 3.9239345132e-05 -0.000151341260087 +UniRef50_UPI0003A9F6F6 molybdenum cofactor biosynthesis protein MoeA 5.18705800324e-06 4.43569703789e-05 3.91699123757e-05 +UniRef50_P67634 Tyrosine recombinase XerS 0.00671138930197 0.00202780881376 -0.00468358048821 +UniRef50_P54473 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.54900295746e-05 0.000382699833941 0.000317209804366 +UniRef50_K8AXM7 NADH ubiquinone oxidoreductase chain G 0.00018718313497 0.000541565658592 0.000354382523622 +UniRef50_O27633 Probable S methyl 5 thioinosine phosphorylase 0.00165980436191 0.000245415544476 -0.00141438881743 +UniRef50_F2LRZ3 2.40111447617e-05 7.63664887617e-06 -1.63744958855e-05 +UniRef50_X7Y8I7 2.95705784655e-05 0.000171586182546 0.000142015604081 +UniRef50_W1GDJ6 Ribonucleotide reductase transcriptional regulator NrdR 4.40364545087e-05 0.000134075017318 9.00385628093e-05 +UniRef50_P30871 Inorganic triphosphatase 0.00355307580835 0.00113066236903 -0.00242241343932 +UniRef50_Q16DT4 Magnesium chelatase 30 kDa subunit 0.000854534121249 0.000329349485352 -0.000525184635897 +UniRef50_P25747 0.0022693521386 0.00047242612268 -0.00179692601592 +UniRef50_V8G0E8 0.000276851539012 0.000506239808945 0.000229388269933 +UniRef50_Q5M061 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000124040711925 0.000930716877779 0.000806676165854 +UniRef50_Q1GFL6 0.00200139507124 0.00100287358992 -0.00099852148132 +UniRef50_A9UPG1 2.09257023546e-06 9.65457440677e-07 -1.12711279478e-06 +UniRef50_UPI00035F8DA2 hypothetical protein 6.89922137727e-05 1.52387752177e-05 -5.3753438555e-05 +UniRef50_UPI00036C24C5 hypothetical protein 0.000455452176102 0.00015574698134 -0.000299705194762 +UniRef50_R7HEN4 Pseudouridine synthase 0.00892488928241 0.00182687061985 -0.00709801866256 +UniRef50_Q9JLJ2 4 trimethylaminobutyraldehyde dehydrogenase 8.71099199654e-06 2.15301774336e-05 1.28191854371e-05 +UniRef50_R9WF85 Oxidoreductase 0.000328492065214 0.00777148264131 0.0074429905761 +UniRef50_L0KAS8 Sulfite reductase, subunit C 0.00011723167356 0.000895515963488 0.000778284289928 +UniRef50_A6UYG3 0.000682940365616 0.000183807077915 -0.000499133287701 +UniRef50_U6F043 Transposase YhgA family protein 0.00053809445313 0.00128288667888 0.00074479222575 +UniRef50_A6DUS0 CarR 2.05241936746e-05 0.000589466105706 0.000568941912031 +UniRef50_UPI000470D4BA amino acid permease, partial 2.1060328233e-05 1.52635786492e-05 -5.7967495838e-06 +UniRef50_E6UW30 5 nucleotidase domain containing protein 2.12511366872e-06 0.000595572937899 0.00059344782423 +UniRef50_P75736 Esterase YbfF 0.00283156575095 0.00143997590485 -0.0013915898461 +UniRef50_UPI00036D73AB hypothetical protein 8.07279930707e-06 0.000608081637672 0.000600008838365 +UniRef50_A6LRB4 Histidine kinase 0.000165699211876 0.00130872574362 0.00114302653174 +UniRef50_P37747 UDP galactopyranose mutase 0.00263856609784 0.00450356420655 0.00186499810871 +UniRef50_Q1IEH7 GTPase Der 0.000493452122986 0.00713725598739 0.0066438038644 +UniRef50_UPI0003B66950 tetracycline transporter 8.49049924826e-06 0.000270153062244 0.000261662562996 +UniRef50_D3QIS4 0.000674082122953 0.00158205377784 0.000907971654887 +UniRef50_P0AC26 Nitrite transporter NirC 0.00372812402679 0.000610326077257 -0.00311779794953 +UniRef50_P71103 Phosphate acetyltransferase 0.000328267440274 0.00637220414335 0.00604393670308 +UniRef50_A1JNH2 UPF0283 membrane protein YE2117 0.00352579726221 0.00021271311299 -0.00331308414922 +UniRef50_W7Z054 2.23931863463e-05 1.24868292432e-05 -9.9063571031e-06 +UniRef50_Q9K1N7 0.000770379569081 0.0082242215653 0.00745384199622 +UniRef50_W1YTD2 9.77363753634e-05 7.72603175785e-05 -2.04760577849e-05 +UniRef50_E1VH08 Exodeoxyribonuclease III 0.00106866094732 0.00664296341073 0.00557430246341 +UniRef50_A6R2L6 ATP dependent RNA helicase DBP9 5.51433992969e-06 1.202547554e-05 6.51113561031e-06 +UniRef50_B8CX69 Predicted ATPase of the ABC class 0.0110890097835 0.00490845656294 -0.00618055322056 +UniRef50_D4JAE0 0.000131375634168 0.00150236799977 0.0013709923656 +UniRef50_A4XKE2 Phosphopantetheine adenylyltransferase 6.38122885107e-05 0.000823995582221 0.00076018329371 +UniRef50_G7MBQ3 PTS system transcriptional activator 0.000583018612708 0.00160141105018 0.00101839243747 +UniRef50_M1JGK6 Ammonium transporter 0.000185042151398 0.000281701149624 9.6658998226e-05 +UniRef50_UPI000255A1E5 multi anti extrusion protein MatE 2.11833229753e-05 2.46248850868e-05 3.4415621115e-06 +UniRef50_UPI00037C177B hypothetical protein 0.000131624482939 1.66551436497e-05 -0.000114969339289 +UniRef50_Q8CS21 2 succinylbenzoate CoA ligase 0.014886252707 0.00209148257495 -0.012794770132 +UniRef50_D3E0E9 0.00310933180482 0.000890088631769 -0.00221924317305 +UniRef50_P44869 Ribosomal RNA small subunit methyltransferase D 3.00482509118e-05 1.91981395121e-05 -1.08501113997e-05 +UniRef50_Q4A602 ATP synthase subunit alpha 3.30896185304e-06 1.82022052457e-05 1.48932433927e-05 +UniRef50_B9KML1 Response regulator receiver protein 0.00620160854692 0.0053693946399 -0.00083221390702 +UniRef50_UPI0002C45261 PREDICTED 4.56796072939e-06 1.69065940293e-06 -2.87730132646e-06 +UniRef50_UPI0004702537 methionine ABC transporter ATP binding protein 1.0287804658e-05 8.39973985947e-06 -1.88806479853e-06 +UniRef50_W7VUU1 4.05152839959e-05 0.00024475759231 0.000204242308314 +UniRef50_UPI0003B4C98F RpiR family transcriptional regulator 2.67166508842e-05 2.61933151795e-05 -5.233357047e-07 +UniRef50_D8JJP4 AraC type DNA binding domain containing protein 0.000907152231135 0.00475156940661 0.00384441717547 +UniRef50_UPI0003793A77 hypothetical protein 2.22061545941e-05 2.47095054959e-05 2.5033509018e-06 +UniRef50_A3M540 TonB dependent receptor 0.000100829278981 0.00773435178394 0.00763352250496 +UniRef50_UPI00047C9351 hypothetical protein, partial 2.10941005529e-05 5.99423469122e-05 3.88482463593e-05 +UniRef50_U3SV52 Acyl CoA thioesterase 0.00468943279864 0.00152550702457 -0.00316392577407 +UniRef50_K1UTW6 0.000188913398596 0.000709109927963 0.000520196529367 +UniRef50_D2ZP15 0.00206972402462 0.000325418131361 -0.00174430589326 +UniRef50_Q79UU3 Bll2159 protein 5.6315505217e-05 2.31395545636e-05 -3.31759506534e-05 +UniRef50_Q5F9U0 Phenylalanine tRNA ligase alpha subunit 0.00239804719611 0.00111561813651 -0.0012824290596 +UniRef50_Q3KDB9 Alanine racemase domain protein 0.000790909724559 0.000538004977289 -0.00025290474727 +UniRef50_P0A9P5 Thioredoxin reductase 0.00385173378469 0.00328319143056 -0.00056854235413 +UniRef50_C7NFG6 Cell envelope related function transcriptional attenuator common domain protein 4.74505730337e-06 1.40892797847e-05 9.34422248133e-06 +UniRef50_E1ZFT3 2.8933970481e-06 1.22562919287e-05 9.3628948806e-06 +UniRef50_A3P9L6 0.000427406885532 0.000200895717825 -0.000226511167707 +UniRef50_U3T490 0.00042533670047 0.00415039625779 0.00372505955732 +UniRef50_A4A899 4.58992754656e-05 3.92777035471e-05 -6.6215719185e-06 +UniRef50_A6LY62 0.000423387974682 0.00077608441084 0.000352696436158 +UniRef50_UPI0001DD0936 hypothetical protein, partial 0.000102953479764 2.48684564639e-05 -7.80850233001e-05 +UniRef50_U6M2X4 2.40207525351e-05 3.32218023406e-05 9.2010498055e-06 +UniRef50_I3ZJH3 GAF domain containing protein 1.16771233205e-05 3.32999393312e-05 2.16228160107e-05 +UniRef50_Q6GF11 Protein SprT like 0.0246783458307 0.00196456929443 -0.0227137765363 +UniRef50_UPI000471A4D9 hypothetical protein 1.366666894e-05 7.81281424482e-06 -5.85385469518e-06 +UniRef50_UPI000362ADEC hypothetical protein 3.58753342159e-06 1.49736897647e-05 1.13861563431e-05 +UniRef50_A6Q6L7 Transketolase 6.01411559548e-05 0.00543562825294 0.00537548709699 +UniRef50_A9LZ37 Tail fibre protein, putative 0.000204054251647 0.000914150998865 0.000710096747218 +UniRef50_P45550 0.00440370040747 0.0007540986435 -0.00364960176397 +UniRef50_M1XJU0 Transposase for IS1272 0.00822775888012 0.00106747481519 -0.00716028406493 +UniRef50_P75167 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.59154608006e-05 1.00764874535e-05 -5.8389733471e-06 +UniRef50_B9DM19 50S ribosomal protein L3 0.0131992639121 0.00507207856933 -0.00812718534277 +UniRef50_I6T7R3 ATP binding protein 0.00257799506289 0.00120065454453 -0.00137734051836 +UniRef50_P0ADP0 Flavin mononucleotide phosphatase YigB 0.00272353993782 0.00107417808242 -0.0016493618554 +UniRef50_Q5HQS0 Acetyltransferase, GNAT family 0.00687482466354 0.00157658366718 -0.00529824099636 +UniRef50_UPI000365881D UDP N acetylmuramate alanine ligase, partial 1.82290035162e-05 8.76216695518e-06 -9.46683656102e-06 +UniRef50_UPI000464B7EB hypothetical protein, partial 0.000106851270543 4.88981293079e-05 -5.79531412351e-05 +UniRef50_Q06464 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.25589886554e-05 1.1271693837e-05 -1.2872948184e-06 +UniRef50_B3GYD9 7.48849716324e-05 3.13331011751e-05 -4.35518704573e-05 +UniRef50_UPI0003745C94 hypothetical protein 0.000965271707964 0.00182967339842 0.000864401690456 +UniRef50_O67444 9.03924561723e-06 2.23520817014e-05 1.33128360842e-05 +UniRef50_UPI00029AB2BE DNA processing protein 6.2870907391e-05 4.95373006235e-05 -1.33336067675e-05 +UniRef50_UPI000373702C hypothetical protein 1.93157409838e-05 2.90885747303e-05 9.7728337465e-06 +UniRef50_B2VK30 Protein TsgA homolog 0.00297374290412 0.000797447901047 -0.00217629500307 +UniRef50_K6LK64 Diguanylate cyclase domain protein 8.94516561282e-05 0.000456037688626 0.000366586032498 +UniRef50_K2SED6 0.000137047494064 7.48867184436e-05 -6.21607756204e-05 +UniRef50_Q9RXB5 3.86504425414e-05 0.021732239059 0.0216935886165 +UniRef50_Q9RXB7 0.000245120771981 0.0553583475266 0.0551132267546 +UniRef50_G7U855 Ser Thr phosphatase family protein 0.00011005422415 0.00218455871511 0.00207450449096 +UniRef50_I3YFJ2 NADH dehydrogenase subunit M 7.78856923336e-05 0.00344596700088 0.00336808130855 +UniRef50_Q58690 Putative fumarate hydratase subunit alpha 0.00329739899649 0.000231318568035 -0.00306608042845 +UniRef50_A6LR96 Radical SAM domain protein 0.000332029699854 0.000186712353132 -0.000145317346722 +UniRef50_L7WSQ0 0.026303276134 0.00625083781117 -0.0200524383228 +UniRef50_B4RIY5 Rsp 0.000100932082575 0.00416155179136 0.00406061970878 +UniRef50_UPI0002889AF8 alcohol dehydrogenase 0.000100515736442 3.3151049514e-05 -6.7364686928e-05 +UniRef50_D6PE21 Predicted flagellar hook capping protein 8.52565299713e-06 1.17276706558e-05 3.20201765867e-06 +UniRef50_G7UVD4 Dihydrolipoamide dehydrogenase 8.81290246311e-05 0.00197869076315 0.00189056173852 +UniRef50_Q6FDN3 Glycerol kinase 2.71176616565e-05 0.000126431651399 9.93139897425e-05 +UniRef50_A5IV34 50S ribosomal protein L3 0.00872987569824 0.00186377152345 -0.00686610417479 +UniRef50_J9B6L5 9.79177642702e-06 1.77784766037e-05 7.98670017668e-06 +UniRef50_UPI00029ABC7B LysR family transcriptional regulator, partial 4.01233001367e-05 2.06466716722e-05 -1.94766284645e-05 +UniRef50_Q0BS24 Acetolactate synthase small subunit 0.0119247875902 0.00151493399138 -0.0104098535988 +UniRef50_P37924 Outer membrane usher protein FimD 0.00301939227975 0.00115883470606 -0.00186055757369 +UniRef50_U3TX51 Malonyl CoA acyl carrier protein transacylase 0.00175527998524 0.00225744585272 0.00050216586748 +UniRef50_UPI000361F37C hypothetical protein 4.30138955065e-05 1.8323822648e-05 -2.46900728585e-05 +UniRef50_UPI0002EB7738 hypothetical protein 1.07653267706e-05 4.43384112479e-05 3.35730844773e-05 +UniRef50_V9UBP5 0.000138211946844 0.000165443532329 2.7231585485e-05 +UniRef50_I1EPG5 2.26497517312e-05 4.74130017204e-05 2.47632499892e-05 +UniRef50_E9BYY8 2.07160620757e-06 1.65232513169e-05 1.44516451093e-05 +UniRef50_I2QVL7 4.2822554174e-05 2.68064956953e-05 -1.60160584787e-05 +UniRef50_E3A0E2 0.000439648606825 0.00336450188563 0.00292485327881 +UniRef50_UPI0003777C1D hypothetical protein 0.000204098969672 2.63837077196e-05 -0.000177715261952 +UniRef50_A9BF34 50S ribosomal protein L7 L12 0.00191628639599 0.00194109119692 2.480480093e-05 +UniRef50_T0TSM6 Histidine kinase, putative 0.00415797235325 0.00145964223484 -0.00269833011841 +UniRef50_UPI00037689C2 hypothetical protein 9.79272942437e-06 0.000237088538711 0.000227295809287 +UniRef50_UPI00023B2B80 PREDICTED 8.66862299559e-06 3.89941196861e-05 3.03254966905e-05 +UniRef50_A4X0E6 5.44875341365e-05 3.36138450299e-05 -2.08736891066e-05 +UniRef50_G8V4L1 0.0136699162563 0.00315188589135 -0.0105180303649 +UniRef50_W4S2X5 Alkyl hydroperoxide reductase subunit F 7.71198234451e-05 0.000236343706486 0.000159223883041 +UniRef50_E2XSQ7 Transcriptional regulator, AraC family 0.000227653299757 0.000176133223777 -5.152007598e-05 +UniRef50_U4TYH6 0.00162769612583 0.00070230451535 -0.00092539161048 +UniRef50_UPI0003B7313F GNAT family acetyltransferase 3.8705863834e-05 2.4049220093e-05 -1.4656643741e-05 +UniRef50_UPI000262A595 membrane protein 0.000502517358481 3.35477697895e-05 -0.000468969588692 +UniRef50_UPI0002378354 AraC family transcriptional regulator 0.000113637457606 1.35740812762e-05 -0.00010006337633 +UniRef50_F0Y7I6 0.000229612588454 0.000329159633223 9.9547044769e-05 +UniRef50_UPI00041D5BF9 transcription termination factor Rho 1.18847788764e-05 6.62469381435e-06 -5.26008506205e-06 +UniRef50_D0IRH3 0.000206276496643 0.00126519994175 0.00105892344511 +UniRef50_Q3AE81 Adenine deaminase 2 2.77284915682e-05 7.39974158041e-06 -2.03287499878e-05 +UniRef50_W1FF26 0.000532620805937 2.69659595577e-05 -0.000505654846379 +UniRef50_Q3IV87 Caspase 1, p20 0.00381179151706 0.00108746078944 -0.00272433072762 +UniRef50_W6BZ44 Cupin domain protein 1.87966852506e-05 4.93107487202e-05 3.05140634696e-05 +UniRef50_UPI000363D9BF hypothetical protein, partial 2.91478981214e-05 1.49245080691e-05 -1.42233900523e-05 +UniRef50_Q8FT12 Tryptophan synthase beta chain 2 1.53395825733e-05 9.96895226372e-06 -5.37063030958e-06 +UniRef50_Q73NM0 Chorismate synthase 4.45875422911e-06 1.84711140873e-05 1.40123598582e-05 +UniRef50_S5YXU8 ErfK YbiS YcfS YnhG family protein 0.00457504033361 0.00539274364427 0.00081770331066 +UniRef50_Q0AK81 Ferric uptake regulator, Fur family 0.0107162869468 0.00228920951453 -0.00842707743227 +UniRef50_F0K4Y1 2,3 cyclic nucleotide 2phosphodiesterase 0.000378840155347 0.00109852474362 0.000719684588273 +UniRef50_D7A6Y6 1.07554198471e-05 8.03888284457e-06 -2.71653700253e-06 +UniRef50_X8ACG0 Pyridine nucleotide disulfide oxidoreductase family protein 4.94833773131e-05 0.00275404860856 0.00270456523125 +UniRef50_P29928 Uroporphyrinogen III C methyltransferase 5.39947344412e-05 0.000255685309762 0.000201690575321 +UniRef50_Q2LTA1 4 hydroxy tetrahydrodipicolinate synthase 5.4353334221e-06 2.92788927977e-05 2.38435593756e-05 +UniRef50_O83571 Transketolase 3.84857391345e-05 1.77006576692e-05 -2.07850814653e-05 +UniRef50_P37518 Ribosome binding ATPase YchF 0.00777465762818 0.0052464797859 -0.00252817784228 +UniRef50_D9RHA1 0.00795710956243 0.00154159034787 -0.00641551921456 +UniRef50_A5IVA9 0.0116418063965 0.00308676477226 -0.00855504162424 +UniRef50_UPI0003763331 hypothetical protein 2.26811341459e-05 2.92831333271e-05 6.6019991812e-06 +UniRef50_UPI00016C4318 hypothetical protein 7.72614087193e-05 4.30126679112e-05 -3.42487408081e-05 +UniRef50_UPI000255CEAC 3,4 dihydroxy 2 butanone 4 phosphate synthase 1.49147321113e-06 1.0078794131e-05 8.58732091987e-06 +UniRef50_UPI00036D0344 hypothetical protein, partial 2.91147073638e-05 9.78105420454e-06 -1.93336531593e-05 +UniRef50_F8GWB2 Aromatic compounds catabolic protein 1.12588349656e-05 1.58774503126e-05 4.618615347e-06 +UniRef50_X5DV87 Molybdate ABC transporter, periplasmic molybdate binding protein 0.0171209960761 0.00546666404902 -0.0116543320271 +UniRef50_UPI0004541A53 PREDICTED 5.74572735962e-05 0.000239555096073 0.000182097822477 +UniRef50_UPI000360E9DE hypothetical protein 3.41240950785e-05 6.04828651842e-06 -2.80758085601e-05 +UniRef50_P55734 Inner membrane protein YgaP 0.00140151864724 0.000714348523532 -0.000687170123708 +UniRef50_UPI0003B40AC8 ABC transporter 4.67874074605e-06 1.9489042721e-05 1.48103019749e-05 +UniRef50_G7MCR1 Taurine transporting ATPase 0.000137267632307 0.000809821909556 0.000672554277249 +UniRef50_Q8DVQ3 Ribosome maturation factor RimP 0.00557184888849 0.00279103792231 -0.00278081096618 +UniRef50_C7NA19 Ribonucleoside diphosphate reductase subunit beta 0.0180563286137 0.00482699858703 -0.0132293300267 +UniRef50_X1LB27 Marine sediment metagenome DNA, contig 2.58856459014e-05 0.000167794102236 0.000141908456335 +UniRef50_UPI0001E2E6F3 transport system permease 2.75687258931e-05 1.9233045929e-05 -8.3356799641e-06 +UniRef50_A3N3F8 3 dehydroquinate dehydratase 5.38926304002e-05 2.33646412647e-05 -3.05279891355e-05 +UniRef50_K0RWJ4 4.3110427424e-06 5.49345924854e-06 1.18241650614e-06 +UniRef50_A3TPX9 7.10684697507e-05 0.00138480778634 0.00131373931659 +UniRef50_UPI0003B75E06 preprotein translocase subunit TatA 6.39738583724e-05 4.78766491838e-05 -1.60972091886e-05 +UniRef50_Q73FJ4 Glutamine amidotransferase subunit PdxT 0.0182328691833 0.00659721995591 -0.0116356492274 +UniRef50_Q1JAW0 DNA repair protein RecN 0.00597392746286 0.0055106608689 -0.00046326659396 +UniRef50_UPI00037D1EFC ABC transporter 5.86171435572e-06 9.13151682254e-05 8.54534538697e-05 +UniRef50_P0A0S5 Cell division protein FtsZ 0.000334640182345 0.00348741758183 0.00315277739949 +UniRef50_A3PKK1 Transcriptional regulator, LuxR family 0.0131331314106 0.00484255997554 -0.00829057143506 +UniRef50_UPI000185FC5F hypothetical protein TGME49_010350 2.75889714784e-05 2.14958174354e-05 -6.093154043e-06 +UniRef50_F3R0E6 Cobalt transport protein 2.01429840546e-05 4.29729208224e-05 2.28299367678e-05 +UniRef50_A0KF56 Trap transporter solute receptor, taxi family 4.95380895057e-05 1.14927135311e-05 -3.80453759746e-05 +UniRef50_Q8TY21 GTP cyclohydrolase MptA 0.00303708332945 0.000444693080934 -0.00259239024852 +UniRef50_A3PPL1 Aminotransferase 0.00784683725582 0.0025784171095 -0.00526842014632 +UniRef50_R5G6A1 Cyclopropane fatty acyl phospholipid synthase 0.000298329240325 0.000480738846681 0.000182409606356 +UniRef50_P43799 Anaerobic glycerol 3 phosphate dehydrogenase subunit A 0.00258865051196 0.000389996268726 -0.00219865424323 +UniRef50_Q99RJ0 Protein flp 0.00926277548262 0.00313874176223 -0.00612403372039 +UniRef50_F0VWI5 PTT family thiamin transporter 0.00409308345524 0.000289053871314 -0.00380402958393 +UniRef50_Q12PZ2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 6.37047600074e-06 8.80479674846e-06 2.43432074772e-06 +UniRef50_Q8FGS9 Ribosomal RNA small subunit methyltransferase F 0.00313701740099 0.000836132980282 -0.00230088442071 +UniRef50_U7PCU9 4.56260682599e-05 0.00334322687445 0.00329760080619 +UniRef50_UPI0001851281 aldehyde dehydrogenase 3.82550067579e-06 6.1713825183e-06 2.34588184251e-06 +UniRef50_G8NCG2 Short chain dehydrogenase reductase SDR 3.98671185418e-06 3.87488562505e-05 3.47621443963e-05 +UniRef50_Q99XQ7 Elongation factor Ts 0.00503874227619 0.00400189716792 -0.00103684510827 +UniRef50_A4WSL4 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00243289321406 1.79209363191e-05 -0.00241497227774 +UniRef50_UPI00045EAF7F amidase 1.88830149901e-05 7.52902236264e-06 -1.13539926275e-05 +UniRef50_P22098 Tryptophan biosynthesis protein TrpCF 0.0035386865701 0.00059973047584 -0.00293895609426 +UniRef50_UPI00037775E1 hypothetical protein 4.00046294021e-06 7.73820259147e-06 3.73773965126e-06 +UniRef50_D6GRE6 CobQ CobB MinD ParA nucleotide binding domain protein 6.97683137846e-06 6.44040381182e-05 5.74272067397e-05 +UniRef50_UPI0000510540 aspartate ammonia lyase 3.65968013866e-05 2.36622660532e-05 -1.29345353334e-05 +UniRef50_UPI00034B0665 glucose 1 phosphate adenylyltransferase 1.08510914136e-05 2.50861817701e-05 1.42350903565e-05 +UniRef50_Q46802 0.00513301387663 0.0010626632033 -0.00407035067333 +UniRef50_O30019 Pyruvate carboxylase subunit A 7.81776381628e-06 1.54343987264e-05 7.61663491012e-06 +UniRef50_Q49VK7 Secretory antigen SsaA like protein 0.00876382083714 0.00438970089801 -0.00437411993913 +UniRef50_W4UBQ2 Glucoamylase S1 S2 0.00019844214558 0.000187200103754 -1.1242041826e-05 +UniRef50_Q46809 0.0033355749656 0.000509919233309 -0.00282565573229 +UniRef50_Q46808 0.00316614729655 0.00210960890249 -0.00105653839406 +UniRef50_B0VB06 0.000268354968373 0.000754810784963 0.00048645581659 +UniRef50_G7M9G8 Signal peptidase I 0.00105139244997 0.000883465702945 -0.000167926747025 +UniRef50_Q6F985 Protein TolB 0.000249855161395 0.0107880724089 0.0105382172475 +UniRef50_A8MIR6 Heavy metal translocating P type ATPase 0.000361482705049 0.0003223409879 -3.9141717149e-05 +UniRef50_Q6GI34 Glutamyl endopeptidase 0.00839670068442 0.00114078481692 -0.0072559158675 +UniRef50_A0A011EDI0 2.18466032552e-05 6.36254469059e-05 4.17788436507e-05 +UniRef50_W5VF17 Beta aspartyl peptidase 0.00152685626444 0.00034213617568 -0.00118472008876 +UniRef50_A6FSN1 3.58206187165e-06 1.93326186952e-06 -1.64880000213e-06 +UniRef50_UPI00046B7987 PREDICTED 8.1365818119e-05 3.69616260525e-05 -4.44041920665e-05 +UniRef50_UPI00037A4252 hypothetical protein 4.63296885611e-06 3.26417426446e-06 -1.36879459165e-06 +UniRef50_UPI00037DFE14 hypothetical protein 8.6566233011e-07 3.43503299921e-05 3.3484667662e-05 +UniRef50_UPI0004698FEC anti sigma regulatory factor 2.319668029e-05 0.00104768952259 0.0010244928423 +UniRef50_B7H2F2 TonB dependent siderophore receptor family protein 0.00012042550199 0.0068487807895 0.00672835528751 +UniRef50_UPI0003621DA0 hypothetical protein 0.000454301580043 3.96682270623e-05 -0.000414633352981 +UniRef50_F8HDH3 N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase 0.004236401228 0.000933405304551 -0.00330299592345 +UniRef50_E1VQ96 0.000751268586283 0.000187900342655 -0.000563368243628 +UniRef50_V1VWE5 Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA 0.000862377428233 0.000214988314519 -0.000647389113714 +UniRef50_Q57624 Aspartyl glutamyl tRNA amidotransferase subunit B 0.00320227283329 0.000330808282006 -0.00287146455128 +UniRef50_P38942 4 hydroxybutyrate coenzyme A transferase 0.000863015462288 0.0021048861233 0.00124187066101 +UniRef50_Q8DW17 Putative agmatine deiminase 0.00607781779478 0.00443874315847 -0.00163907463631 +UniRef50_Q2RRP2 Fructose 1,6 bisphosphatase class 1 1.73683689598e-05 9.76920788205e-06 -7.59916107775e-06 +UniRef50_G7LXK3 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.000754316477018 0.0011580912414 0.000403774764382 +UniRef50_A2RLU5 Bifunctional protein FolD 1.31799939057e-05 4.16954470778e-06 -9.01044919792e-06 +UniRef50_UPI00047C45C3 hypothetical protein 2.64976359936e-05 5.3034021998e-06 -2.11942337938e-05 +UniRef50_D4HC59 MazG family protein 0.00059290993013 0.00528837608123 0.0046954661511 +UniRef50_P76909 0.00334963636146 0.000983787813649 -0.00236584854781 +UniRef50_F0RK09 Peptidase U32 5.5951480556e-05 0.0198055112287 0.0197495597481 +UniRef50_UPI000479CC6C pseudouridine synthase 6.18259839294e-06 5.25351429563e-06 -9.2908409731e-07 +UniRef50_R7G2P1 tRNA 2 O) methyltransferase 0.0308319054726 0.0260197849502 -0.0048121205224 +UniRef50_Q2KAV8 UPF0061 protein RHE_CH01223 7.73008850942e-05 0.000973556115833 0.000896255230739 +UniRef50_V4HW78 3.38994761404e-06 0.000198627150752 0.000195237203138 +UniRef50_A4EDG0 0.00022802672554 7.21354113454e-05 -0.000155891314195 +UniRef50_B4RQC6 Lipid II flippase FtsW 0.000299461383637 0.00290998726558 0.00261052588194 +UniRef50_D8THS2 Pathogenesis related protein 1 like protein 1.22103071691e-05 4.41507377948e-05 3.19404306257e-05 +UniRef50_UPI000376F8EF hypothetical protein, partial 2.6152056604e-05 1.95916943942e-05 -6.5603622098e-06 +UniRef50_F4DL94 Beta lactamase domain containing protein 0.000316225937685 6.52887496932e-05 -0.000250937187992 +UniRef50_C5QMP7 Nitrite reductase [NADH], large subunit 0.0287029985913 0.00779141621946 -0.0209115823718 +UniRef50_Q9RYB4 GTP cyclohydrolase 1 0.000414398256095 0.0534840979209 0.0530696996648 +UniRef50_P23224 Zinc metalloproteinase 2.17273418304e-06 0.0012685183819 0.00126634564772 +UniRef50_Q5HRK1 Ornithine cyclodeaminase mu crystallin family protein 0.00799383814489 0.00389776504399 -0.0040960731009 +UniRef50_UPI000426573E hypothetical protein 2.49961566783e-05 3.23741967131e-05 7.3780400348e-06 +UniRef50_F0L5S4 Segregation and condensation protein B 0.0017456127819 0.00253060927577 0.00078499649387 +UniRef50_R5FRB0 Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase 0.00349878368374 0.00113848388587 -0.00236029979787 +UniRef50_Q2W403 Electron transport complex subunit E 0.00370689577757 0.00205786826871 -0.00164902750886 +UniRef50_UPI0004636746 arabinose transporter permease 8.77583822708e-06 7.78268938935e-06 -9.9314883773e-07 +UniRef50_Q57661 0.00651000329718 0.000777149224201 -0.00573285407298 +UniRef50_Q5V230 Probable aminomethyltransferase 7.87921482457e-06 5.22885264269e-05 4.44093116023e-05 +UniRef50_U1W1Q2 1.7456605566e-05 0.00111286693995 0.00109541033438 +UniRef50_V5VE78 0.000176225963693 0.0052998456188 0.00512361965511 +UniRef50_V5VBQ5 Ribonuclease Z 0.000465673600297 0.00556461686254 0.00509894326224 +UniRef50_X2HF59 Membrane protein 0.00346172378566 0.0020428034206 -0.00141892036506 +UniRef50_R5LLF3 Acetate CoA transferase subunit alpha 0.00132775169757 0.0015179614607 0.00019020976313 +UniRef50_A5UII8 Lipid A disaccharide synthase 0.00309136058486 0.00120898086735 -0.00188237971751 +UniRef50_UPI0003F49601 hypothetical protein TREMEDRAFT_38243 1.90677045136e-05 0.000128580122778 0.000109512418264 +UniRef50_Q3JKL4 3.85977493742e-05 5.79086730159e-05 1.93109236417e-05 +UniRef50_UPI0004726B74 hypothetical protein 0.000106858286018 9.00974785897e-06 -9.7848538159e-05 +UniRef50_F0RLT4 Homoserine dehydrogenase 0.000119457591412 0.0174633231119 0.0173438655205 +UniRef50_R5ZCF8 3.41042121969e-06 1.45869125781e-05 1.11764913584e-05 +UniRef50_UPI000375252A hypothetical protein 4.12266136068e-06 3.18372412896e-05 2.77145799289e-05 +UniRef50_Q8RQP4 NADP specific glutamate dehydrogenase 1.22197083254e-05 7.24035703897e-05 6.01838620643e-05 +UniRef50_UPI00036DFBB3 hypothetical protein 3.49596279114e-06 5.5560639212e-06 2.06010113006e-06 +UniRef50_R0DWK7 7.36988509447e-05 0.000101804349493 2.81054985483e-05 +UniRef50_F9YX60 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 0.000212868038824 0.0059591309578 0.00574626291898 +UniRef50_UPI0003769C5D hypothetical protein 6.04704569972e-06 3.47491385231e-05 2.87020928234e-05 +UniRef50_UPI000472FB88 adenosylcobinamide kinase 2.38483063204e-05 4.0627813099e-05 1.67795067786e-05 +UniRef50_I4E1R6 0.0181235642659 0.00259972979109 -0.0155238344748 +UniRef50_A4E9H7 3.38279665272e-05 0.000456840723113 0.000423012756586 +UniRef50_UPI000248CE53 sugar ABC transporter substrate binding protein 4.97041496653e-06 2.08644474421e-05 1.58940324756e-05 +UniRef50_UPI0003B44826 hypothetical protein 6.8329956159e-06 1.03860906595e-05 3.5530950436e-06 +UniRef50_A8AXR0 Multidrug resistance protein B 0.00622038485082 0.00206625626737 -0.00415412858345 +UniRef50_B9TDS9 4.42472585015e-05 2.43124019051e-05 -1.99348565964e-05 +UniRef50_UPI000382B615 hypothetical protein 1.37545895225e-05 8.63210481455e-05 7.2566458623e-05 +UniRef50_F2E6Z5 Predicted protein 0.000139345151067 3.90115343114e-05 -0.000100333616756 +UniRef50_A8IJS1 Glutamate synthase 0.00128026563425 0.000127017937712 -0.00115324769654 +UniRef50_P76108 Putative ABC transporter periplasmic binding protein YdcS 0.00383756302508 0.00147457741304 -0.00236298561204 +UniRef50_Q05197 Phosphatidylethanolamine N methyltransferase 0.00254228775841 0.00130914273516 -0.00123314502325 +UniRef50_F5L317 1.93781542303e-05 1.70899863588e-05 -2.2881678715e-06 +UniRef50_UPI00040DE43B hypothetical protein 7.89711055954e-06 2.05019636101e-05 1.26048530506e-05 +UniRef50_UPI0004786ABC hypothetical protein 1.25214168143e-05 2.09603533671e-05 8.4389365528e-06 +UniRef50_F8JXJ3 1.24419487848e-05 6.62529227364e-06 -5.81665651116e-06 +UniRef50_F4T079 Exodeoxyribonuclease 8 (EXOVIII) 0.000754721586371 0.000375188756835 -0.000379532829536 +UniRef50_H3WGZ6 0.000467034846539 0.000364707653094 -0.000102327193445 +UniRef50_O27859 Ribonuclease Z 0.00332272675451 0.00071117995287 -0.00261154680164 +UniRef50_Q9P9X3 0.00231544251776 0.000211696562859 -0.0021037459549 +UniRef50_Q21CC1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.00881266530114 0.00110600657098 -0.00770665873016 +UniRef50_R4SH81 PE PGRS family protein 3.20660931678e-06 8.31074428152e-05 7.99008334984e-05 +UniRef50_V8FTC7 0.00160982980627 0.000874450751439 -0.000735379054831 +UniRef50_P66898 L threonine dehydratase biosynthetic IlvA 1.40675682896e-05 0.000500809339492 0.000486741771202 +UniRef50_Q9RU40 0.000137768609074 0.0256262282209 0.0254884596118 +UniRef50_UPI000470AB53 zinc ABC transporter permease, partial 0.000110755119304 8.88107179085e-05 -2.19444013955e-05 +UniRef50_F0VW84 Ferrous iron transport protein B 0.00470576956129 0.00149056574322 -0.00321520381807 +UniRef50_UPI00030520A7 hypothetical protein 2.38136568778e-05 2.72781041647e-05 3.4644472869e-06 +UniRef50_P08624 Nitrogenase iron protein 2 0.00594265137104 0.00166299556588 -0.00427965580516 +UniRef50_UPI0002BAC68C hypothetical protein, partial 4.34832725849e-05 0.00240442358078 0.0023609403082 +UniRef50_A7FMJ5 Autoinducer 2 kinase LsrK 0.000744706888764 0.000138863654487 -0.000605843234277 +UniRef50_Q3JQJ9 0.000370074476117 5.6586143233e-05 -0.000313488332884 +UniRef50_Q4L8H3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00933771098491 0.00207819541404 -0.00725951557087 +UniRef50_UPI000329E5F9 PREDICTED 2.6034869797e-05 2.17222966907e-05 -4.3125731063e-06 +UniRef50_Q1IHH4 DNA directed RNA polymerase subunit beta 4.56061017122e-06 3.30273703284e-06 -1.25787313838e-06 +UniRef50_D4GDT5 YliJ 0.000363844029575 0.00402220485901 0.00365836082944 +UniRef50_N1HFC9 M48B family peptidase 0.00171999664275 0.00272600035565 0.0010060037129 +UniRef50_UPI000475CBB8 SAM dependent methyltransferase 1.64028433492e-05 2.19798537827e-05 5.5770104335e-06 +UniRef50_D3QF90 Manganese ABC transporter, inner membrane permease protein SitD 0.01529007816 0.00422250359934 -0.0110675745607 +UniRef50_Q8D2L6 Tyrosine tRNA ligase 3.66546513597e-06 4.64881871882e-06 9.8335358285e-07 +UniRef50_A0A011DVL1 Bacterial regulatory s, tetR family protein 0.000214075229968 0.00435064986238 0.00413657463241 +UniRef50_UPI0003EBE8AE PREDICTED 1.13609537399e-05 6.66329161322e-06 -4.69766212668e-06 +UniRef50_UPI0004683656 aspartate aminotransferase 1.32163654772e-05 2.40974447675e-05 1.08810792903e-05 +UniRef50_P33117 Ferric uptake regulation protein 0.00611031459481 0.0333446053364 0.0272342907416 +UniRef50_K7RVV7 FAD linked oxidase protein 4.34557930395e-05 0.00119227808727 0.00114882229423 +UniRef50_V5WXJ2 Alpha beta hydrolase 0.000338835264902 0.00125887495664 0.000920039691738 +UniRef50_P0A3M5 Penicillin binding protein 2B 0.0004049340737 0.00444297502824 0.00403804095454 +UniRef50_UPI0003B419E6 DNA mismatch repair protein MutS 2.11337006829e-06 6.21057326233e-05 5.9992362555e-05 +UniRef50_L7EXS1 4.58347582821e-05 2.53472539933e-05 -2.04875042888e-05 +UniRef50_UPI00024870CC phosphoribosylaminoimidazole carboxylase ATPase subunit, partial 1.58957070306e-05 1.35198277288e-05 -2.3758793018e-06 +UniRef50_H6VX40 GroEL 1.86179806429e-06 2.25988144675e-05 2.07370164032e-05 +UniRef50_Q81MY9 Probable transaldolase 2 0.000163297636635 0.000513624747486 0.000350327110851 +UniRef50_P22513 Glyceraldehyde 3 phosphate dehydrogenase, glycosomal 4.83410427503e-05 0.00593583495336 0.00588749391061 +UniRef50_A5UKB5 V type ATP synthase subunit E 0.0054689829169 0.00150800019675 -0.00396098272015 +UniRef50_UPI0002F6015E hypothetical protein 1.34318779699e-05 2.53515245917e-05 1.19196466218e-05 +UniRef50_W5XGC5 Cation exchanger, putative 0.000148857450797 0.000153256531817 4.39908102e-06 +UniRef50_L6Y993 Electron transfer flavoprotein ubiquinone oxidoreductase 2.37677285614e-05 4.51650964392e-05 2.13973678778e-05 +UniRef50_Q60316 Formate dehydrogenase subunit beta 0.00451785636311 0.00133179106264 -0.00318606530047 +UniRef50_R6G0X7 Rubrerythrin 0.000231113870722 0.000663082457162 0.00043196858644 +UniRef50_V8G1N6 Transcriptional regulator 0.000278245200628 0.000413030356916 0.000134785156288 +UniRef50_A0A023UJB1 Type F conjugative transfer system protein TraW 7.68470659158e-05 1.94102586855e-05 -5.74368072303e-05 +UniRef50_Q9K1P6 Efem EfeO family lipoprotein NMB0035 0.00208313352415 0.00568878830717 0.00360565478302 +UniRef50_A4SHC0 ADP L glycero D manno heptose 6 epimerase 0.00245043138879 0.000557370735232 -0.00189306065356 +UniRef50_UPI00036EB160 hypothetical protein 2.7038648977e-05 2.60091641931e-05 -1.0294847839e-06 +UniRef50_UPI000476D9A7 hypothetical protein 3.15301630974e-06 1.00573701916e-05 6.90435388186e-06 +UniRef50_F8HEJ4 Pts system, trehalose specific iibc component 0.000511452773432 0.00266625324643 0.002154800473 +UniRef50_G4PGT5 Pirin 7.18521550115e-06 1.19266849614e-05 4.74146946025e-06 +UniRef50_S4XAN4 Cobalamin biosynthesis like protein 0.0228222197272 0.00975569824653 -0.0130665214807 +UniRef50_UPI0003B3E06E alcohol dehydrogenase 5.31632929185e-06 9.6094338663e-06 4.29310457445e-06 +UniRef50_Q6DB87 Ribose import ATP binding protein RbsA 3.20784919178e-05 1.76700566509e-05 -1.44084352669e-05 +UniRef50_Q4UNK0 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.65657941189e-05 2.08575002644e-05 4.2917061455e-06 +UniRef50_UPI00038035A6 hypothetical protein 1.92438974087e-06 2.05054057921e-06 1.2615083834e-07 +UniRef50_UPI00036EABAC hypothetical protein 4.85183077887e-05 1.92274578163e-05 -2.92908499724e-05 +UniRef50_G2QJ48 8.29757207833e-06 3.49134073358e-06 -4.80623134475e-06 +UniRef50_Q5HKG5 Drug transporter, putative 0.0104188732573 0.00431732254809 -0.00610155070921 +UniRef50_Q89EZ8 Outer membrane lipoprotein 0.013056144916 0.00651806616689 -0.00653807874911 +UniRef50_Q5HKF6 Extracellular cysteine protease 0.020511466984 0.00323062289731 -0.0172808440867 +UniRef50_A6LXP0 Multicopper oxidase, type 3 0.000127816926252 0.000211696562859 8.3879636607e-05 +UniRef50_Q3JMW6 Phenol hydroxylase, putative 6.4951472281e-05 7.20022784698e-06 -5.7751244434e-05 +UniRef50_E0RTD9 ATP dependent 6 phosphofructokinase 7.52266160023e-06 0.00822220835326 0.00821468569166 +UniRef50_P80668 Phenylacetaldehyde dehydrogenase 0.00297000694387 0.00109678376115 -0.00187322318272 +UniRef50_UPI0004673888 acyl transferase 0.00013714820517 1.56669803885e-05 -0.000121481224781 +UniRef50_Q2S6J2 Uridylate kinase 0.000259960437622 0.00976978260282 0.0095098221652 +UniRef50_UPI00041D7A97 hypothetical protein 2.2624251643e-05 1.14782333498e-05 -1.11460182932e-05 +UniRef50_P00936 Adenylate cyclase 0.000951323161686 7.07063140959e-05 -0.00088061684759 +UniRef50_Q11ID5 Hemin import ATP binding protein HmuV 1.17827522955e-05 0.00134519591855 0.00133341316625 +UniRef50_B7UZ76 TadG 0.00120557254603 0.000106038314257 -0.00109953423177 +UniRef50_A5UNR9 0.000328248685954 0.000533704888912 0.000205456202958 +UniRef50_Q3HKE6 TonB dependent receptor protein 0.0127815967563 0.00276460436609 -0.0100169923902 +UniRef50_M3AAW3 7.38719942778e-05 2.73444576467e-05 -4.65275366311e-05 +UniRef50_UPI0003B55AAB GntR family transcriptional regulator 1.93522666488e-05 1.59758707413e-05 -3.3763959075e-06 +UniRef50_O29406 Serine hydroxymethyltransferase 0.00278474687837 0.00104012522049 -0.00174462165788 +UniRef50_UPI00028943C6 transposase Tn3 6.99176911057e-06 0.000528512625202 0.000521520856091 +UniRef50_B2V085 Pyruvate kinase 0.000845953828843 0.00220541622381 0.00135946239497 +UniRef50_UPI000465D378 transposase, partial 0.000123925235991 0.000424177955472 0.000300252719481 +UniRef50_J7R4E7 0.00321652300828 0.00537204854973 0.00215552554145 +UniRef50_W8EY20 3.33270007001e-05 2.72608974897e-05 -6.0661032104e-06 +UniRef50_A0A037YSW4 9.4391746441e-05 6.05501271725e-05 -3.38416192685e-05 +UniRef50_UPI000371DAEA hypothetical protein, partial 8.20457134599e-06 2.82703045944e-05 2.00657332484e-05 +UniRef50_B9JXV9 Folylpolyglutamate synthase 0.00145318338233 0.000490749768476 -0.000962433613854 +UniRef50_D3E3E5 0.000818351807542 0.00163870332492 0.000820351517378 +UniRef50_UPI0003749DD6 hypothetical protein, partial 2.39995742348e-05 5.89133456386e-05 3.49137714038e-05 +UniRef50_W5L6H6 9.63794014105e-05 0.000161270261368 6.48908599575e-05 +UniRef50_D7FUW4 4.93466257772e-05 1.99810742541e-05 -2.93655515231e-05 +UniRef50_C1KVY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.0131713318436 0.00502067804079 -0.00815065380281 +UniRef50_F0VXH5 ABC transporter permease protein 0.00435676651663 0.00150052326942 -0.00285624324721 +UniRef50_UPI000380067C hypothetical protein, partial 1.16905077393e-05 1.28448538401e-05 1.1543461008e-06 +UniRef50_Q6G6X4 Isopentenyl diphosphate delta isomerase 0.0262882716244 0.00565924812996 -0.0206290234944 +UniRef50_Q8PYF8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00148878526022 0.000407265126568 -0.00108152013365 +UniRef50_P73098 Chaperone protein dnaK3 0.0121213094143 0.00324177494165 -0.00887953447265 +UniRef50_UPI000255C532 hypothetical protein 1.46143178747e-05 2.10441132174e-05 6.4297953427e-06 +UniRef50_P46133 p aminobenzoyl glutamate transport protein 0.00262515738265 0.000383339004761 -0.00224181837789 +UniRef50_K8EYP9 0.00577351635868 0.00501398776238 -0.0007595285963 +UniRef50_X1D6B5 Marine sediment metagenome DNA, contig 7.3552518905e-06 0.00197887404921 0.00197151879732 +UniRef50_M4ZDD2 Polysaccharide ABC exporter membrane spanning protein 0.00271439481466 0.000708273885348 -0.00200612092931 +UniRef50_X7E7Z7 0.000149421981184 0.000110774196888 -3.8647784296e-05 +UniRef50_J9YQL3 DedA family protein 0.0073083428704 0.00148428718383 -0.00582405568657 +UniRef50_A1A1X1 Acetylglutamate kinase 0.000450072501766 0.00872876985413 0.00827869735236 +UniRef50_UPI0003C18C5D 9.76973528437e-06 4.72483694378e-05 3.74786341534e-05 +UniRef50_J8RTD6 8.29820635671e-06 1.55852217401e-05 7.28701538339e-06 +UniRef50_W1BD39 9.13208205257e-06 0.000158910072683 0.00014977799063 +UniRef50_I0C802 0.00483736697966 0.00199727011273 -0.00284009686693 +UniRef50_UPI00034D0909 Organic hydroperoxide resistance protein 8.36906584845e-06 4.47397394563e-05 3.63706736078e-05 +UniRef50_UPI000373CB86 hypothetical protein 1.03472334475e-05 1.33182347236e-05 2.9710012761e-06 +UniRef50_UPI0003B6D6B9 DNA invertase 3.26401553855e-05 1.69514851748e-05 -1.56886702107e-05 +UniRef50_A4IK10 7.81984225036e-06 1.41507299935e-05 6.33088774314e-06 +UniRef50_P0A9F0 Regulatory protein YeiL 0.0013189593164 0.000266852444456 -0.00105210687194 +UniRef50_UPI00046AC99E hypothetical protein 9.41843317363e-05 6.31348604636e-05 -3.10494712727e-05 +UniRef50_UPI000462BAFD PREDICTED 9.3426033839e-06 4.04106537376e-06 -5.30153801014e-06 +UniRef50_G0DS62 Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase 0.000226201894437 0.00583473427998 0.00560853238554 +UniRef50_F2CUB3 Predicted protein 0.000234398358574 0.000280773100505 4.6374741931e-05 +UniRef50_UPI000468D55C glucose methanol choline oxidoreductase 8.40877830686e-06 1.15299299743e-05 3.12115166744e-06 +UniRef50_A1AZK3 Peptidoglycan glycosyltransferase 0.00226108806212 0.000535229110448 -0.00172585895167 +UniRef50_A3PKF9 0.00028079754916 0.000496198594142 0.000215401044982 +UniRef50_Q9ZDI2 Protoheme IX farnesyltransferase 9.28385601708e-06 3.21221116034e-05 2.28382555863e-05 +UniRef50_P58313 UTP glucose 1 phosphate uridylyltransferase 0.00753888765713 0.00488141294869 -0.00265747470844 +UniRef50_P66798 Response regulator UvrY 0.00201572423268 0.000275996920751 -0.00173972731193 +UniRef50_C6DY30 Poly A polymerase family protein 0.000508920101799 0.00187723084725 0.00136831074545 +UniRef50_M4HS21 Transposase, IS4 family 2.16911797637e-05 0.0334677002086 0.0334460090288 +UniRef50_P00805 L asparaginase 2 0.00242332982599 0.00478877939887 0.00236544957288 +UniRef50_P40882 0.0027546653934 6.45695094487e-05 -0.00269009588395 +UniRef50_Q7V024 Fumarate hydratase class II 6.40377630095e-06 4.35046174585e-06 -2.0533145551e-06 +UniRef50_Q7UX42 Glutamine tRNA ligase 0.000176347760566 0.00517505650465 0.00499870874408 +UniRef50_W3SJV3 0.000389160813245 0.00133475535477 0.000945594541525 +UniRef50_K7SGJ6 Tat pathway signal sequence 0.000470329394297 0.00493925375816 0.00446892436386 +UniRef50_UPI0003798A30 hypothetical protein 0.000467957837425 0.00165598152446 0.00118802368703 +UniRef50_UPI000426481D hypothetical protein 2.08575276943e-05 2.8152299193e-05 7.2947714987e-06 +UniRef50_G7LXY6 Signal peptidase I 0.000222050581675 0.000738015388428 0.000515964806753 +UniRef50_A5UM93 Adhesin like protein 0.00377013147539 0.000712167491182 -0.00305796398421 +UniRef50_H1SKR8 Site specific recombinase, phage integrase family 0.000214491047391 0.000341411665556 0.000126920618165 +UniRef50_Q4A4A3 0.000216513838793 0.00113583348153 0.000919319642737 +UniRef50_A5W7U2 Protein SprT 0.000690731139244 0.000355803259269 -0.000334927879975 +UniRef50_Q65G88 Isocitrate dehydrogenase [NADP] 0.0101495983207 0.00280601678391 -0.00734358153679 +UniRef50_Q9K1H0 Outer membrane protein assembly factor BamA 5.89208099186e-05 0.00363931853555 0.00358039772563 +UniRef50_Q8CT38 0.0149898852132 0.00403772345519 -0.010952161758 +UniRef50_P42910 N acetylgalactosamine permease IIC component 1 0.00323521971087 0.001595649159 -0.00163957055187 +UniRef50_Q48E25 GAF domain GGDEF domain EAL domain protein 0.000616417066886 0.000702022361005 8.5605294119e-05 +UniRef50_UPI0003634A2A hypothetical protein 5.37824942765e-05 3.5503205821e-05 -1.82792884555e-05 +UniRef50_UPI000328E1F2 PREDICTED 7.14830438815e-05 0.000119720037426 4.82369935445e-05 +UniRef50_E8SI06 Hydroxyacylglutathione hydrolase 0.0155133185695 0.00780660633664 -0.00770671223286 +UniRef50_UPI0003B3DE75 ketol acid reductoisomerase 3.86458515229e-06 1.9578964939e-05 1.57143797867e-05 +UniRef50_Q2FER8 Energy coupling factor transporter ATP binding protein EcfA2 0.00988050516368 0.00372165482025 -0.00615885034343 +UniRef50_UPI00046AC673 hypothetical protein 3.19451029893e-05 2.5288522783e-05 -6.6565802063e-06 +UniRef50_B7UX08 0.000558601020844 0.000519064849397 -3.9536171447e-05 +UniRef50_UPI000381E035 hypothetical protein 3.98627127821e-05 2.96778193902e-05 -1.01848933919e-05 +UniRef50_I0EI71 ATP dependent helicase 0.000356352377494 0.00287833307069 0.0025219806932 +UniRef50_Q3J6C1 Sensor histidine kinase RegB 0.00410677823804 0.00171470316757 -0.00239207507047 +UniRef50_Q1RF65 0.000279825468181 0.000472506728318 0.000192681260137 +UniRef50_F0KIU0 Sel1 like repeat protein 0.000401580839207 0.0062948791084 0.00589329826919 +UniRef50_UPI000360580F methyltransferase, partial 3.92985179878e-05 3.79056335245e-05 -1.3928844633e-06 +UniRef50_L2YYW7 6.41885005032e-05 0.000447449553334 0.000383261052831 +UniRef50_P21369 Pyrazinamidase nicotinamidase 0.00645797089485 0.00110743764448 -0.00535053325037 +UniRef50_A5UKM8 0.00433655915246 0.000669429755475 -0.00366712939698 +UniRef50_UPI00045434B5 PREDICTED 7.04386749506e-05 0.000106882685776 3.64440108254e-05 +UniRef50_B9KRZ3 0.010544480628 0.00167482958151 -0.00886965104649 +UniRef50_D0K3I1 Phage amidase 0.0135554250523 0.00135285320894 -0.0122025718434 +UniRef50_A6LXA4 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000581388210392 0.000910262242916 0.000328874032524 +UniRef50_I3XDK3 2.65798142895e-05 1.70234409092e-05 -9.5563733803e-06 +UniRef50_X2H5V8 Glutamate cysteine ligase , divergent, of Alpha and Beta proteobacteria type 0.000171050941748 0.00324486862164 0.00307381767989 +UniRef50_I0ERW5 Integral membrane protein 9.30532429341e-05 0.00284140224443 0.0027483490015 +UniRef50_UPI0002559D47 DNA primase 3.62662900751e-06 4.50889156264e-06 8.8226255513e-07 +UniRef50_P08075 Glucose 1 phosphate thymidylyltransferase 8.0797394285e-06 1.54741502804e-05 7.3944108519e-06 +UniRef50_UPI0004782C1A ABC transporter permease 6.55789931169e-06 1.15804945317e-05 5.02259522001e-06 +UniRef50_D9Q0N2 Membrane protein 9.28666313124e-06 8.25839684161e-05 7.32973052849e-05 +UniRef50_A0A059IJL8 0.000223246575787 0.000142418962609 -8.0827613178e-05 +UniRef50_U1ASZ8 Diguanylate cyclase domain protein 0.00125450157067 7.11892419069e-05 -0.00118331232876 +UniRef50_K8R3V6 6 pyruvoyl tetrahydropterin synthase 0.00031569509448 0.000144464724426 -0.000171230370054 +UniRef50_O05410 Probable metal binding protein YrpE 0.00986766075661 0.000558959063463 -0.00930870169315 +UniRef50_Q30ST8 Two component transcriptional regulator, winged helix family 0.000382587150866 0.0022926005332 0.00191001338233 +UniRef50_UPI00036A4579 hypothetical protein 2.79302367466e-06 1.03899798919e-05 7.59695621724e-06 +UniRef50_G8VC64 0.00181560304853 0.00443145692385 0.00261585387532 +UniRef50_UPI0002556399 urea ABC transporter ATP binding protein UrtE, partial 0.000118686716787 4.8000356259e-05 -7.0686360528e-05 +UniRef50_UPI000456060D hypothetical protein PFL1_06357 7.08431227327e-06 1.77543534046e-05 1.06700411313e-05 +UniRef50_UPI0003B73D80 Fis family transcriptional regulator 3.70642052476e-05 4.23267588288e-05 5.2625535812e-06 +UniRef50_C2QZX3 6.53760003662e-06 0.000883452257164 0.000876914657127 +UniRef50_C5N0K5 Isochorismatase family protein 0.00654156399139 0.000322750497486 -0.0062188134939 +UniRef50_UPI00034B4110 hypothetical protein 5.89790302282e-05 1.77037172624e-05 -4.12753129658e-05 +UniRef50_J9JHU2 0.000222050581675 0.000279775012387 5.7724430712e-05 +UniRef50_A0A031K6Z2 3.3536644218e-05 1.96971676237e-05 -1.38394765943e-05 +UniRef50_UPI00046C5540 hypothetical protein 0.000252318230565 4.11945804426e-05 -0.000211123650122 +UniRef50_UPI000369A903 hypothetical protein 0.00878701524772 0.00323669294599 -0.00555032230173 +UniRef50_UPI00036FC1C6 hypothetical protein 1.5084749634e-05 0.000161817372704 0.00014673262307 +UniRef50_O27842 Conserved protein 0.00298133603751 0.00256210193584 -0.00041923410167 +UniRef50_UPI000466B8EE UDP pyrophosphate phosphatase 9.41724120953e-05 1.45326671992e-05 -7.96397448961e-05 +UniRef50_M2ADJ2 7.38261381104e-05 2.49866823428e-05 -4.88394557676e-05 +UniRef50_UPI00016A5286 hypothetical protein 0.000371978780981 0.000780207725342 0.000408228944361 +UniRef50_P33135 Flagellar biosynthetic protein FliR 0.00352392990211 0.000645162854675 -0.00287876704743 +UniRef50_UPI00016C427F glutamine ABC transporter ATP binding protein 8.4316884434e-05 2.68829707144e-05 -5.74339137196e-05 +UniRef50_F3U500 ABC branched chain amino acid transporter, inner membrane subunit 0.00451293510437 0.00228849857164 -0.00222443653273 +UniRef50_H1V624 1.01087174494e-05 7.30431809063e-06 -2.80439935877e-06 +UniRef50_UPI00046F0C1E cold shock protein, partial 4.50098745969e-05 2.05530696425e-05 -2.44568049544e-05 +UniRef50_UPI000395A7E4 membrane protein 8.57343519813e-05 3.26783351839e-05 -5.30560167974e-05 +UniRef50_A4WQX9 0.0060728156165 0.000877435153289 -0.00519538046321 +UniRef50_G0DVB4 LacI family transcription regulator 0.000364840264139 0.00407507899632 0.00371023873218 +UniRef50_U6HG59 Iron sulfur cluster assembly 2 6.73458884178e-05 0.000135577186281 6.82312978632e-05 +UniRef50_Q8E0W8 Prophage LambdaSa1, minor structural protein, putative 0.000254306725739 0.000192046958903 -6.2259766836e-05 +UniRef50_F0YEK3 9.00407302426e-06 9.48317474274e-05 8.58276744031e-05 +UniRef50_UPI000359DA59 PREDICTED 4.6136500439e-05 1.18354229565e-05 -3.43010774825e-05 +UniRef50_UPI0003683526 hypothetical protein 2.82596257356e-06 4.24280753753e-06 1.41684496397e-06 +UniRef50_Q9Z615 Ferredoxin NADP reductase 0.00420155795097 3.59526697015e-05 -0.00416560528127 +UniRef50_UPI00034F34D0 PREDICTED 6.60636838809e-06 3.04342928579e-06 -3.5629391023e-06 +UniRef50_F8H2S7 Long chain fatty acid transporter, putative 0.000644370723791 1.00578522725e-05 -0.000634312871518 +UniRef50_D8TNQ9 1.83703742462e-05 1.77726164335e-05 -5.977578127e-07 +UniRef50_P72524 DNA gyrase subunit A 0.00514208190287 0.00774654078998 0.00260445888711 +UniRef50_D9PWJ1 Phosphomethylpyrimidine kinase 0.00226549864282 0.00070736439591 -0.00155813424691 +UniRef50_UPI00016AD9D7 hypothetical protein 5.16092917995e-05 0.00013771067013 8.61013783305e-05 +UniRef50_J3P8W6 0.000190649489319 0.000298299702217 0.000107650212898 +UniRef50_Q9KLP4 Glucose 1 phosphate adenylyltransferase 2 9.29747761786e-06 2.04213752841e-05 1.11238976662e-05 +UniRef50_G4LJ72 0.000566124859295 0.000554583416193 -1.1541443102e-05 +UniRef50_X6F3D8 7.89961489974e-06 0.000324819849179 0.000316920234279 +UniRef50_E8TAD2 ABC transporter related protein 0.00194314002282 0.00080832760716 -0.00113481241566 +UniRef50_UPI0003745162 hypothetical protein 3.06306989581e-06 3.13168062666e-05 2.82537363708e-05 +UniRef50_UPI0004171916 hypothetical protein 3.94152150406e-06 3.1698361167e-06 -7.7168538736e-07 +UniRef50_J9FU21 Ferredoxin NADP reductase subunit alpha 0.00013163457348 8.4734520254e-05 -4.6900053226e-05 +UniRef50_A6VPF4 30S ribosomal protein S9 0.00202985976468 0.00596656554769 0.00393670578301 +UniRef50_Q9I0Q0 2 heptyl 3 hydroxy 4 quinolone synthase 0.000749681006178 0.000349199151072 -0.000400481855106 +UniRef50_Q56213 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.52501200813e-05 4.89048813642e-05 3.36547612829e-05 +UniRef50_UPI00041994DB hypothetical protein 2.76898403701e-05 4.62117644264e-05 1.85219240563e-05 +UniRef50_UPI0001B417EE 50S ribosomal protein L6 2.88366635093e-05 0.000328043211159 0.00029920654765 +UniRef50_UPI00037C13D8 hypothetical protein 3.89206032654e-06 0.000219191881322 0.000215299820995 +UniRef50_UPI00025597AC 8 amino 7 oxononanoate synthase 5.15177184737e-06 4.79048800729e-06 -3.6128384008e-07 +UniRef50_Q8TVF7 Transcription factor homologous to NACalpha BTF3 fused to metal binding domain 0.000963171708067 0.000757900550379 -0.000205271157688 +UniRef50_Q8TX94 3 isopropylmalate dehydratase small subunit 1 0.00112773213166 0.000480844798537 -0.000646887333123 +UniRef50_W1DGA8 0.00038794800939 2.65983455961e-05 -0.000361349663794 +UniRef50_Q7WTJ2 Phenol hydroxylase P5 protein 1.45745340375e-05 2.15862597415e-05 7.011725704e-06 +UniRef50_UPI000375778F hypothetical protein, partial 0.000316913422896 3.42746345561e-05 -0.00028263878834 +UniRef50_G7UA75 Periplasmic solute binding family protein 0.000321792500054 0.00700168733252 0.00667989483247 +UniRef50_P37171 Hypoxanthine guanine phosphoribosyltransferase 0.0120676538095 0.00309881508539 -0.00896883872411 +UniRef50_Q6A5B2 Ribosomal RNA small subunit methyltransferase G 0.000178903312256 0.0104525814307 0.0102736781184 +UniRef50_W5X3P5 Ammonium transporter 1.44944940828e-05 0.000140346177045 0.000125851682962 +UniRef50_Q2YSG3 0.000128960183316 0.000750357954763 0.000621397771447 +UniRef50_Q59337 Catalase 0.000204162577277 0.050591180255 0.0503870176777 +UniRef50_UPI000371F98A 50S ribosomal protein L13 0.000987008417249 0.000143456352271 -0.000843552064978 +UniRef50_Q9RWN6 Cell division protein FtsA 0.000169326811797 0.0197204112317 0.0195510844199 +UniRef50_U5MV88 Protein tyrosine phosphatase 0.000256288431409 0.000972152997477 0.000715864566068 +UniRef50_B0V4J6 Methylenetetrahydrofolate reductase 0.000167399551592 0.00582692513909 0.0056595255875 +UniRef50_O34720 Probable oxidoreductase YjgC 0.0140711568424 0.00564239172051 -0.00842876512189 +UniRef50_D5ZK04 Predicted protein 6.14341677533e-05 2.17615083999e-05 -3.96726593534e-05 +UniRef50_P16691 Protein PhnO 0.000490241543964 0.000608900423076 0.000118658879112 +UniRef50_UPI0003665D5A hypothetical protein 1.18073293852e-05 1.81279223507e-05 6.3205929655e-06 +UniRef50_B9KW91 Serine acetyltransferase 0.00554435751003 0.00113251152756 -0.00441184598247 +UniRef50_UPI0004541D3D PREDICTED 1.88462957993e-05 2.50569861347e-05 6.2106903354e-06 +UniRef50_X2LXG1 Phosphatase 3.62322127841e-05 3.14894002818e-05 -4.7428125023e-06 +UniRef50_UPI0002BCA4B1 0.000108777066287 0.000238713898062 0.000129936831775 +UniRef50_UPI000479C59F hypothetical protein 4.26367621235e-05 1.61614257814e-05 -2.64753363421e-05 +UniRef50_O83369 FKBP type peptidyl prolyl cis trans isomerase SlyD 1.84232763407e-05 1.93391368429e-05 9.158605022e-07 +UniRef50_F0WVE4 AlNc14C294G10284 protein 5.4765738381e-06 1.69636527251e-05 1.1487078887e-05 +UniRef50_X0WP46 Marine sediment metagenome DNA, contig 2.43431563422e-05 1.25775526967e-05 -1.17656036455e-05 +UniRef50_R5WGC0 0.000169602425034 0.00275864530679 0.00258904288176 +UniRef50_UPI000371C267 hypothetical protein, partial 1.0381607114e-05 8.12088215242e-06 -2.26072496158e-06 +UniRef50_Q47944 L sorbose 1 dehydrogenase 2.50037787432e-05 2.28359993492e-05 -2.167779394e-06 +UniRef50_UPI0003AED982 PREDICTED 5.45279938247e-05 5.13727159297e-05 -3.155277895e-06 +UniRef50_UPI000474FA07 hypothetical protein 2.11696464163e-05 1.53833424135e-05 -5.7863040028e-06 +UniRef50_X5EFM7 Glycosyl transferase 0.000701107466431 0.00144041866408 0.000739311197649 +UniRef50_A0A025XI46 Membrane protein 0.00141569092926 0.000336863161818 -0.00107882776744 +UniRef50_N6UVZ9 5.01738446473e-06 2.05984372875e-06 -2.95754073598e-06 +UniRef50_A5WEH0 Sulfate adenylyltransferase 1.80404960693e-05 2.36530338858e-05 5.6125378165e-06 +UniRef50_Q1C7J0 Arabinose import ATP binding protein AraG 0.00454624986954 0.000768795893013 -0.00377745397653 +UniRef50_Q2H308 0.000126271640598 6.32754476704e-05 -6.29961929276e-05 +UniRef50_UPI0004643586 hypothetical protein 0.000357033770159 1.8103914591e-05 -0.000338929855568 +UniRef50_A6LYY5 Helix turn helix domain containing protein, AraC type 0.000889336037005 0.000607306927345 -0.00028202910966 +UniRef50_Q8ZH39 D methionine transport system permease protein MetI 0.00410931176021 0.0112691967879 0.00715988502769 +UniRef50_W6L3I5 Genomic scaffold, scaffold_5 2.0578314192e-05 1.1188885639e-05 -9.389428553e-06 +UniRef50_Q4L6W7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0182527296794 0.00416956805143 -0.014083161628 +UniRef50_Q83NS5 Phosphoglucosamine mutase 5.17948945823e-06 7.77930543201e-06 2.59981597378e-06 +UniRef50_P18358 Transposon Tn552 resolvase 0.182991894827 0.0377164489243 -0.145275445903 +UniRef50_D8JFF2 Major Facilitator Superfamily protein 0.000238123637387 0.00789717693536 0.00765905329797 +UniRef50_C0QDY4 3 isopropylmalate dehydratase small subunit 1.88739547375e-05 1.46837164313e-05 -4.1902383062e-06 +UniRef50_Q1J087 Inositol monophosphatase 0.00011268238473 0.00910486947061 0.00899218708588 +UniRef50_D4GG42 0.00188742994426 0.000942500122969 -0.000944929821291 +UniRef50_A5GQQ3 Permease of the major facilitator superfamily 1.97703257604e-05 4.18848337991e-06 -1.55818423805e-05 +UniRef50_Q3ZXS0 NADH quinone oxidoreductase subunit B 1.24545126698e-05 0.000160091853733 0.000147637341063 +UniRef50_Q8XSL7 Remnant of isrso5 transposase protein 0.018967382822 0.0035621660227 -0.0154052167993 +UniRef50_UPI00045609D0 hypothetical protein PFL1_01311 4.33995645309e-05 0.000189495219492 0.000146095654961 +UniRef50_UPI00047256F0 ABC transporter ATP binding protein 8.16840336776e-06 4.22491927799e-05 3.40807894121e-05 +UniRef50_P71019 Malonyl CoA acyl carrier protein transacylase 4.25584042199e-06 0.00178171873192 0.0017774628915 +UniRef50_Q8XCU1 UDP 2,3 diacylglucosamine hydrolase 0.0033913216472 0.000780095898344 -0.00261122574886 +UniRef50_C0ME26 Adenylate kinase 0.0047492331881 0.00852450735492 0.00377527416682 +UniRef50_UPI0004668B02 hypothetical protein 0.000213568450271 5.32188704928e-05 -0.000160349579778 +UniRef50_W5ASR4 0.000214480675479 8.22925987192e-05 -0.00013218807676 +UniRef50_UPI00040BD6B1 spermidine putrescine import ATP binding protein PotA 0.000121230432105 5.88027187665e-05 -6.24277133385e-05 +UniRef50_A6M079 NADPH dependent FMN reductase 0.000145935304967 0.00225847941097 0.002112544106 +UniRef50_K9EK44 ATPase involved in chromosome partitioning 9.37334282295e-06 0.000774729282488 0.000765355939665 +UniRef50_Q5M456 0.00495015616552 0.00214666494895 -0.00280349121657 +UniRef50_UPI000380AA86 hypothetical protein 7.07911062204e-06 0.000158245676685 0.000151166566063 +UniRef50_A2SM89 PKHD type hydroxylase Mpe_A3725 3.6361193586e-05 3.87634980646e-05 2.4023044786e-06 +UniRef50_UPI00037B8173 hypothetical protein 7.97786649952e-06 8.56589329369e-05 7.76810664374e-05 +UniRef50_U2NH71 MaoC domain containing protein dehydratase 3.40094179343e-05 2.03048025881e-05 -1.37046153462e-05 +UniRef50_J0P6S9 0.0066412792172 0.000545200071126 -0.00609607914607 +UniRef50_Q3JN62 Colicin V processing peptidase 0.000257882340289 0.0125804267854 0.0123225444451 +UniRef50_A0A024JLS1 Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 1.04926977865e-06 2.78766826282e-07 -7.70502952368e-07 +UniRef50_V5PVU9 ABC transporter ATP binding protein 0.00144474807409 0.000450865198773 -0.000993882875317 +UniRef50_D0ZY51 Serine endoprotease DegS 0.00440595210465 0.00171130634038 -0.00269464576427 +UniRef50_A3PGU0 Lytic transglycosylase, catalytic 0.00944313632268 0.00184161125264 -0.00760152507004 +UniRef50_UPI00034D4180 hypothetical protein 1.46630338496e-05 1.44213868324e-06 -1.32208951664e-05 +UniRef50_UPI0003A7AC6C TetR family transcriptional regulator 1.00978521947e-05 2.14542936622e-05 1.13564414675e-05 +UniRef50_UPI00036F4D48 hypothetical protein, partial 3.59600682995e-05 0.00119997942833 0.00116401936003 +UniRef50_V6VI70 Membrane protein 1.654097799e-06 2.77579812598e-06 1.12170032698e-06 +UniRef50_D5WEA6 Major facilitator superfamily MFS_1 8.88202326721e-05 0.00472029775061 0.00463147751794 +UniRef50_UPI00042A98EF 0.000158191760126 0.000133068886191 -2.5122873935e-05 +UniRef50_I0C7K3 Lantibiotic transport ATP binding protein 0.027815223462 0.00898827491848 -0.0188269485435 +UniRef50_Q6F8J3 Glutamyl tRNA reductase 8.84042128456e-05 0.0108766803581 0.0107882761453 +UniRef50_Q00750 Multiple sugar binding transport system permease protein MsmF 0.00399315911685 0.00305592942163 -0.00093722969522 +UniRef50_A9CJS1 ABC transporter, substrate binding protein 0.0085308855927 0.00106988607869 -0.00746099951401 +UniRef50_F2AEH0 0.000476191270254 0.000100123917959 -0.000376067352295 +UniRef50_G2QPJ3 4.56485111306e-06 7.00805355466e-06 2.4432024416e-06 +UniRef50_UPI00037BF3DC hypothetical protein 0.000102784028504 6.02186436742e-05 -4.25653848298e-05 +UniRef50_Q3IWE5 Sulfotransferase domain protein 0.00244391640739 0.00023625336415 -0.00220766304324 +UniRef50_D3QDZ4 Na+ H+ antiporter like protein 0.0199525397091 0.00518556963026 -0.0147669700788 +UniRef50_E3D365 5.48138488079e-05 3.09336172134e-05 -2.38802315945e-05 +UniRef50_V6F2D8 Transposase 1.950931464e-05 2.17959754208e-05 2.2866607808e-06 +UniRef50_B8EL88 Regulatory protein ArsR 0.00231408567858 0.00655301302039 0.00423892734181 +UniRef50_P30690 Major outer membrane protein P.IB 0.000119963767644 0.00235910143414 0.0022391376665 +UniRef50_D5HFR4 Alpha galactosidase 0.00100469747645 0.00121915752403 0.00021446004758 +UniRef50_F7QLE1 0.00613943741257 0.000864898339608 -0.00527453907296 +UniRef50_Q4FPV2 Na translocating NADH quinone reductase subunit F 0.000604007731951 0.0027064981941 0.00210249046215 +UniRef50_UPI00035E03F5 DNA glycosylase 4.24754714919e-05 4.08924404982e-05 -1.5830309937e-06 +UniRef50_A0A021XF37 Transposase 0.000140970128412 7.98291143459e-05 -6.11410140661e-05 +UniRef50_UPI00036477DE hypothetical protein 8.47553531107e-06 1.36182166177e-05 5.14268130663e-06 +UniRef50_P0ABE7 Soluble cytochrome b562 0.000352790643786 0.00186515813808 0.00151236749429 +UniRef50_D6XQD7 Outer membrane protein BabA 6.0591651505e-05 0.00335047915388 0.00328988750237 +UniRef50_UPI00042B81D2 Ribosomal protein L1p L10e family, putative isoform 1 2.08226093155e-05 8.05057642927e-05 5.96831549772e-05 +UniRef50_UPI00046F39AE hypothetical protein, partial 9.81476212908e-05 0.000225728386352 0.000127580765061 +UniRef50_UPI00037C645E hypothetical protein 8.79240811422e-06 6.16533241813e-06 -2.62707569609e-06 +UniRef50_P58120 Multi drug resistance efflux pump PmrA homolog 9.80483087926e-05 0.000989601544539 0.000891553235746 +UniRef50_UPI0003B4A46E hypothetical protein 1.38133041726e-06 2.94196760298e-06 1.56063718572e-06 +UniRef50_U2Z407 0.000148018633632 4.76696931327e-05 -0.000100348940499 +UniRef50_P0ACV7 Protein MpaA 0.0028572638114 0.000488126785439 -0.00236913702596 +UniRef50_B6IU75 2.95996073721e-05 7.30050021087e-05 4.34053947366e-05 +UniRef50_D1B330 5.27760038451e-06 8.49621022335e-06 3.21860983884e-06 +UniRef50_I7DDI7 Sec independent protein translocase protein TatC 0.0122316688597 0.00217311360683 -0.0100585552529 +UniRef50_B2TLC0 Aminotransferase, class V 0.000226031762367 0.000653282952549 0.000427251190182 +UniRef50_Q7MLH6 Phosphoserine aminotransferase 0.00469658748439 0.010312165551 0.00561557806661 +UniRef50_G0G0R8 Recombinase 5.03716733898e-06 0.000151508885799 0.00014647171846 +UniRef50_UPI0003B50543 translation initiation factor IF 3 0.000140270457489 0.000228310012369 8.803955488e-05 +UniRef50_B1GZA3 Adenylate kinase 7.90642272743e-06 1.63533629934e-05 8.44694026597e-06 +UniRef50_W1U046 Alanine dehydrogenase 3.13465260238e-05 0.000661723753502 0.000630377227478 +UniRef50_J2E9X6 0.000325261373385 3.0317943244e-05 -0.000294943430141 +UniRef50_A9LZ58 0.000660102427422 0.00531723770366 0.00465713527624 +UniRef50_UPI00035F961E hypothetical protein 4.09927329857e-05 0.000182341356622 0.000141348623636 +UniRef50_UPI000473026F hypothetical protein, partial 6.55919410637e-05 4.23439308988e-05 -2.32480101649e-05 +UniRef50_G8R9L3 Branched chain amino acid transport systemcarrier protein 0.00946418679202 0.00197177645069 -0.00749241034133 +UniRef50_UPI0003EBE04C PREDICTED 2.02939351524e-05 2.09057957794e-05 6.11860627e-07 +UniRef50_B0VCQ6 Deoxyribodipyrimidine photolyase , FAD binding 0.0001623085577 0.00582569878535 0.00566339022765 +UniRef50_UPI0003C1772B PREDICTED 1.13998709749e-05 3.2764717216e-05 2.13648462411e-05 +UniRef50_Q5HNU6 UPF0271 protein SERP1168 0.0227324314793 0.0044201665478 -0.0183122649315 +UniRef50_B0RNQ5 Nicotinamide phosphoribosyltransferase 0.000172720188924 0.0479323900871 0.0477596698982 +UniRef50_C1KVV7 N acetylmuramic acid 6 phosphate etherase 8.21494718634e-06 1.1572859892e-05 3.35791270566e-06 +UniRef50_S9QJ95 Glycine D amino acid oxidase 0.000288165055197 3.79759298035e-05 -0.000250189125393 +UniRef50_Q72JJ7 Ribonuclease J 3.53070335027e-05 0.000137639874405 0.000102332840902 +UniRef50_P36667 Rhamnosyltransferase WbbL 0.000935596626266 0.000223442652099 -0.000712153974167 +UniRef50_I6U2T3 0.00334843794837 0.00037540259135 -0.00297303535702 +UniRef50_W4UBR6 L threonine 3 O phosphate decarboxylase 6.06271562253e-06 0.000385726967488 0.000379664251865 +UniRef50_E3ZT62 Lipoprotein 9.90432530904e-06 0.0019972707632 0.00198736643789 +UniRef50_UPI0003812E06 hypothetical protein 5.67895875678e-05 1.62617379262e-05 -4.05278496416e-05 +UniRef50_B2JIJ5 Malate dehydrogenase (NADP(+)), Phosphate acetyltransferase 0.00289391902837 0.00703727510855 0.00414335608018 +UniRef50_UPI00038F56D4 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 2.71607338912e-05 0.000151632961111 0.00012447222722 +UniRef50_UPI000465DB23 peptide ABC transporter permease 0.000118103993689 2.08977522207e-05 -9.72062414683e-05 +UniRef50_UPI000475E2DE hypothetical protein, partial 2.92182427977e-06 3.20951566067e-05 2.91733323269e-05 +UniRef50_UPI00047C3548 membrane protein 1.11251869534e-05 1.07147035377e-05 -4.104834157e-07 +UniRef50_B2TJ59 Riboflavin biosynthesis protein RibF 0.000123361434261 0.00160656757126 0.001483206137 +UniRef50_UPI0003B40EDF methylmalonyl CoA mutase 6.26717710786e-05 5.05106605443e-05 -1.21611105343e-05 +UniRef50_Q3J4Q5 Putative Transcriptional regulator 0.000998807067205 0.0104229425363 0.0094241354691 +UniRef50_I4L4Y8 ISPa7 like transposase 0.000232472048569 3.50626105846e-05 -0.000197409437984 +UniRef50_A5UKX6 0.0011064985217 0.000206997690564 -0.000899500831136 +UniRef50_L4FV79 1.53358820744e-05 3.50723518012e-05 1.97364697268e-05 +UniRef50_A5UJS4 Ribonuclease P protein component 3 0.00338966963348 0.000299307471484 -0.003090362162 +UniRef50_D4ZLV9 Thioesterase superfamily 5.77629089963e-06 6.2291042769e-06 4.5281337727e-07 +UniRef50_D3E066 Aminotransferase 0.0024753553038 0.000828506976381 -0.00164684832742 +UniRef50_Q2FC63 Beta lactamase regulatory protein 0.000636056628392 0.000218497650033 -0.000417558978359 +UniRef50_UPI000477F0AC hypothetical protein 5.63440110753e-06 8.41769386891e-06 2.78329276138e-06 +UniRef50_G8UZP3 Dyp type peroxidase family protein 0.013414803489 0.0024215711543 -0.0109932323347 +UniRef50_I6T4S9 Cation efflux pump 0.00702501658968 0.00644922367955 -0.00057579291013 +UniRef50_K2FDY9 UPF0301 protein ACD_16C00235G0006 3.71019406836e-05 5.79525516267e-05 2.08506109431e-05 +UniRef50_P77183 0.00721455719959 0.00113714854899 -0.0060774086506 +UniRef50_Q8Z591 Multiphosphoryl transfer protein 0.00224229482716 0.000836490671637 -0.00140580415552 +UniRef50_UPI0003644847 chromosome partitioning protein ParA 1.21326451948e-05 0.000104578082718 9.24454375232e-05 +UniRef50_P24602 Bacterioferritin 9.94732164756e-05 0.000121327517702 2.18543012264e-05 +UniRef50_L1K7Z2 0.000499137783886 0.000877178332262 0.000378040548376 +UniRef50_P12425 Glutamine synthetase 0.00044817033512 0.00358146409408 0.00313329375896 +UniRef50_N6V491 6.63808890152e-05 0.0001038628506 3.74819615848e-05 +UniRef50_UPI0003B3ECFC hypothetical protein, partial 2.0982846682e-05 2.71775519452e-05 6.1947052632e-06 +UniRef50_UPI00037C5312 hypothetical protein 5.57350946552e-06 1.9490856881e-05 1.39173474155e-05 +UniRef50_UPI00029AA298 heme exporter protein CcmA 3.45454801059e-06 2.68888746682e-05 2.34343266576e-05 +UniRef50_UPI0003B71736 hypothetical protein 9.80327529196e-06 6.93150289315e-06 -2.87177239881e-06 +UniRef50_P83851 Inosine uridine preferring nucleoside hydrolase 5.21857965365e-06 2.04956640618e-05 1.52770844082e-05 +UniRef50_W7W6N9 6.02018788493e-06 1.23933575369e-05 6.37316965197e-06 +UniRef50_Q1AW66 Uridylate kinase 1.65437688647e-05 2.74353229763e-05 1.08915541116e-05 +UniRef50_A7NN67 Thioesterase superfamily protein 1.19920211283e-05 0.00188663725543 0.0018746452343 +UniRef50_F8LMW5 Branched chain amino acid ABC uptake transporter substrate binding protein 0.00924786476785 0.00541295254251 -0.00383491222534 +UniRef50_UPI0003B44F91 16S rRNA methyltransferase 1.5373923727e-05 7.3861450865e-05 5.8487527138e-05 +UniRef50_UPI00037A1640 hypothetical protein 2.30349759035e-05 7.25454670661e-05 4.95104911626e-05 +UniRef50_P0ABU5 Enhancing lycopene biosynthesis protein 2 0.00494671915031 0.006372351934 0.00142563278369 +UniRef50_D6GRJ0 Relaxase mobilization nuclease domain protein 1.2401022456e-05 3.36917078191e-06 -9.03185167409e-06 +UniRef50_G7M3W5 PAS modulated sigma54 specific transcriptional regulator, Fis family 6.68906064094e-05 0.00131422210259 0.00124733149618 +UniRef50_D3EHS5 Copper amine oxidase domain protein 7.04373921475e-06 1.41130079209e-05 7.06926870615e-06 +UniRef50_F0YJ43 0.000167549084728 3.92962752234e-05 -0.000128252809505 +UniRef50_Q82MV1 Aliphatic sulfonates import ATP binding protein SsuB 1 7.91874768648e-06 3.51491665465e-05 2.723041886e-05 +UniRef50_UPI00047B469E hypothetical protein 2.75204390519e-06 6.26175625193e-06 3.50971234674e-06 +UniRef50_P26365 N acetylmuramoyl L alanine amidase AmiB 0.00399805733287 0.000833499978781 -0.00316455735409 +UniRef50_W9B7R7 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.000245652435359 0.00121187489983 0.000966222464471 +UniRef50_A0A030STE3 0.000234346116747 4.84410280591e-05 -0.000185905088688 +UniRef50_Q1LTQ4 Alanine tRNA ligase 0.00292534922718 0.00202511396585 -0.00090023526133 +UniRef50_Q2KVV8 Glutaminase 0.00334818572691 0.00126497674854 -0.00208320897837 +UniRef50_N6V723 3.28215521288e-05 3.41293618959e-05 1.3078097671e-06 +UniRef50_R5EPL7 1.90066601483e-06 0.00411377303504 0.00411187236903 +UniRef50_UPI000420BB24 hypothetical protein 3.91304214536e-05 0.000393957903549 0.000354827482095 +UniRef50_B2TI10 Peptidyl tRNA hydrolase 0.000198676836237 0.0014781244494 0.00127944761316 +UniRef50_P76586 0.00092586571394 0.00129642388 0.00037055816606 +UniRef50_P76584 0.00312978011251 0.000542877351096 -0.00258690276141 +UniRef50_P76585 0.00355788907512 0.000908469170782 -0.00264941990434 +UniRef50_E7DRS8 Cobyrinic acid a,c diamide synthase 2.39120283713e-05 0.000101972561014 7.80605326427e-05 +UniRef50_B2TPC7 Homoserine kinase 0.000354954565215 0.00391774681766 0.00356279225245 +UniRef50_UPI00016AE1F0 amino acid ABC transporter, permease ATP binding protein, His Glu Gln Arg opine family, partial 4.12868098063e-05 3.53260354305e-05 -5.9607743758e-06 +UniRef50_UPI00037DC74D hypothetical protein 8.46128187802e-06 3.79508251134e-06 -4.66619936668e-06 +UniRef50_UPI0003B5A1CC type I secretion protein 7.85933382285e-07 1.40141391306e-06 6.15480530775e-07 +UniRef50_C3ISU2 Transcriptional regulator, PadR 0.000159578864664 4.54386748582e-05 -0.000114140189806 +UniRef50_X1FD15 Marine sediment metagenome DNA, contig 0.000173471105778 0.000130865930918 -4.260517486e-05 +UniRef50_W5X9W4 30S ribosomal protein S4 5.52417369412e-05 7.64246466026e-05 2.11829096614e-05 +UniRef50_Q8NY74 0.0143367645915 0.00269157438495 -0.0116451902066 +UniRef50_B9DK14 Homolog of FecCD transport family protein SstB 0.0175640000954 0.00527726088709 -0.0122867392083 +UniRef50_V9VUC0 2.00016855866e-05 1.70338607102e-05 -2.9678248764e-06 +UniRef50_Q475Q2 4 hydroxythreonine 4 phosphate dehydrogenase 0.000463075779513 0.00520022121367 0.00473714543416 +UniRef50_K1TVZ4 Anthranilate synthase component II 1.52295452453e-05 1.70722442509e-05 1.8426990056e-06 +UniRef50_Q5HRY7 0.00190829504482 0.0027197815235 0.00081148647868 +UniRef50_Q9RU78 2 phosphoglycerate kinase, putative 9.2445548289e-05 0.0126550890118 0.0125626434635 +UniRef50_Q5HKC7 0.019010564897 0.0124597019271 -0.0065508629699 +UniRef50_A0A020CZ32 0.000807587477663 0.000202093948186 -0.000605493529477 +UniRef50_B5B0J6 FAD dependent urate hydroxylase 0.000108058966276 0.0118502250003 0.011742166034 +UniRef50_UPI0003B6355C multidrug transporter CflA 6.14581544474e-06 8.38554509585e-06 2.23972965111e-06 +UniRef50_B8H806 Shikimate dehydrogenase 0.000142268588759 0.000207239793125 6.4971204366e-05 +UniRef50_A6LTJ7 Glycosyl transferase 0.000629226230738 0.00365508196157 0.00302585573083 +UniRef50_UPI0000164CF0 helicase related protein, partial 9.72902033113e-05 0.0268198312983 0.026722541095 +UniRef50_UPI00037DA311 hypothetical protein 2.52829376611e-05 8.10499894506e-06 -1.7177938716e-05 +UniRef50_E3F454 0.000172874674004 9.03720311285e-05 -8.25026428755e-05 +UniRef50_M1MT01 Oxygen independent coproporphyrinogen III oxidase 1 0.000265081999205 0.00088027600776 0.000615194008555 +UniRef50_Q55G10 Nicotinate phosphoribosyltransferase 3.03665302617e-06 0.000109067745708 0.000106031092682 +UniRef50_UPI00047AB801 hypothetical protein 1.83305680202e-05 6.80403001619e-06 -1.1526538004e-05 +UniRef50_R9YSK0 Sugar transporter family protein 0.0213252190984 0.00433367772277 -0.0169915413756 +UniRef50_UPI0002003470 hypothetical protein 4.42851679736e-06 9.77764035525e-06 5.34912355789e-06 +UniRef50_UPI000403F45D hypothetical protein 8.5134660394e-06 0.000168966491453 0.000160453025414 +UniRef50_S5K798 Ethanolamine utilization protein EutJ 2.21989985356e-05 0.00294988300468 0.00292768400614 +UniRef50_V6AIC2 0.00012163107099 0.000376217510327 0.000254586439337 +UniRef50_O86793 tRNA N6 adenosine threonylcarbamoyltransferase 0.000256499189752 0.00957653322151 0.00932003403176 +UniRef50_I0KVQ6 1.56485924717e-05 5.42419030496e-05 3.85933105779e-05 +UniRef50_UPI00034BACF0 hypothetical protein 0.000100395209802 0.000138998740688 3.8603530886e-05 +UniRef50_P0AFY0 Sigma E factor regulatory protein RseB 0.00358964978852 0.000399850131071 -0.00318979965745 +UniRef50_P93345 Putative carbamoyl phosphate synthetase, large chain 1.90631552941e-05 2.31294108423e-05 4.0662555482e-06 +UniRef50_UPI000465AFB9 D ribose transporter ATP binding protein 1.53792627001e-05 3.52925904415e-05 1.99133277414e-05 +UniRef50_A6X8A8 Endoribonuclease L PSP 0.000148642022207 3.93120157926e-05 -0.000109330006414 +UniRef50_Q46898 CRISPR system Cascade subunit CasD 0.00288141984952 0.00026367562964 -0.00261774421988 +UniRef50_Q9Z661 Diaminopimelate decarboxylase 0.00450554675364 0.00176108635576 -0.00274446039788 +UniRef50_Q6GDP8 Ferrous iron transport protein B 0.0209020726164 0.00639129503441 -0.014510777582 +UniRef50_Q42891 Lactoylglutathione lyase 2.3451899556e-05 2.45196745238e-05 1.0677749678e-06 +UniRef50_R7IF37 3.05259361323e-05 8.75890958238e-05 5.70631596915e-05 +UniRef50_B5GQH0 2.83136443545e-05 2.37817446124e-05 -4.5318997421e-06 +UniRef50_Q0APS4 Thioesterase superfamily protein 4.47766582417e-06 0.000170681726014 0.00016620406019 +UniRef50_Q9RVA0 0.000185953689091 0.0350571295756 0.0348711758865 +UniRef50_Q5HQK8 Putative peptidyl prolyl cis trans isomerase 0.022865317284 0.00924922384474 -0.0136160934393 +UniRef50_A5ULZ8 0.00457474481691 0.000637026600826 -0.00393771821608 +UniRef50_B1HUU8 Glucosamine 6 phosphate deaminase 9.28424862893e-06 2.26717866347e-05 1.33875380058e-05 +UniRef50_A6QDY0 Phage portal protein 0.0140110621464 0.00457572913938 -0.00943533300702 +UniRef50_A6LQB8 0.000473376866408 0.00209928865201 0.0016259117856 +UniRef50_R7U693 8.55581319638e-05 2.57614484477e-05 -5.97966835161e-05 +UniRef50_Q5HK21 YycI protein 0.0130570038066 0.00574225790973 -0.00731474589687 +UniRef50_W8YHT8 0.000557076405129 0.000210012952802 -0.000347063452327 +UniRef50_Q9JYB8 ComE operon protein 1 related protein 0.000855993139133 0.00366942864526 0.00281343550613 +UniRef50_Q0JKD0 Glutamate synthase 1 [NADH], chloroplastic 1.08568678439e-06 9.25828034407e-06 8.17259355968e-06 +UniRef50_P06720 Alpha galactosidase 0.00247666901049 0.000602410150965 -0.00187425885952 +UniRef50_Q9ZLY0 UDP N acetylmuramoylalanine D glutamate ligase 0.000109416228655 0.00222430853286 0.0021148923042 +UniRef50_N6VE85 0.000151795370894 5.60086100893e-05 -9.57867608047e-05 +UniRef50_A0A011RZR4 7.92704098307e-05 0.000110618001118 3.13475912873e-05 +UniRef50_UPI000381C6B2 MULTISPECIES 0.00019537650557 0.000104944706081 -9.0431799489e-05 +UniRef50_UPI000471AF5A hypothetical protein 5.82125789506e-05 6.51147693787e-06 -5.17011020127e-05 +UniRef50_UPI0003B2EAF3 DNA polymerase I 3.18457384774e-06 5.43108452778e-05 5.11262714301e-05 +UniRef50_A1VT86 Phosphate butyryltransferase 0.00233738756365 0.000448362190553 -0.0018890253731 +UniRef50_D8JIA1 DMT family permease 0.000657347096919 0.0081603201383 0.00750297304138 +UniRef50_UPI0003623153 hypothetical protein 2.24992414766e-05 1.46980204326e-05 -7.801221044e-06 +UniRef50_E7B1W7 Zinc ABC transporter, inner membrane permease protein ZnuB 0.000738122076317 0.00433553632714 0.00359741425082 +UniRef50_UPI0003AD1FFA hypothetical protein 8.95711683243e-07 2.02657947538e-05 1.93700830706e-05 +UniRef50_R7PV41 Bacterial membrane flanked domain protein 0.00419024055796 0.000252767508006 -0.00393747304995 +UniRef50_C2L1L8 0.000278746967941 0.000340948018057 6.2201050116e-05 +UniRef50_K9NJK2 Putrescine transport system permease protein 0.00591478240338 0.00172187764801 -0.00419290475537 +UniRef50_Q187P1 LexA repressor 0.00012410876684 1.34111523212e-05 -0.000110697614519 +UniRef50_Q8Z3W5 UPF0149 protein YgfB 0.000602894181434 0.000899031594298 0.000296137412864 +UniRef50_A6LQ92 Transcriptional antiterminator, BglG 0.000195056752111 0.00290301448196 0.00270795772985 +UniRef50_J4SG21 8.16219549366e-06 1.10664444803e-05 2.90424898664e-06 +UniRef50_Q8XZ19 DNA polymerase IV 0.0001791883287 0.000408227522167 0.000229039193467 +UniRef50_Q8GAA6 Queuine tRNA ribosyltransferase 5.50097624621e-06 8.28509605048e-05 7.73499842586e-05 +UniRef50_A6LZ80 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000797505610247 0.000463848228053 -0.000333657382194 +UniRef50_P55037 Ferredoxin dependent glutamate synthase 1 2.26505862282e-06 2.3035349926e-06 3.847636978e-08 +UniRef50_UPI000362A514 hypothetical protein 1.94988805121e-06 5.68135266534e-06 3.73146461413e-06 +UniRef50_Q5H330 Glutamine synthetase 0.0120301380891 0.00118324725498 -0.0108468908341 +UniRef50_UPI000381B208 amino acid ABC transporter ATPase 1.73748018419e-05 9.57705157626e-05 7.83957139207e-05 +UniRef50_UPI000344FAE6 hypothetical protein 2.03646341296e-05 3.91564974383e-06 -1.64489843858e-05 +UniRef50_Q5XA93 0.00115166531804 0.0013723860311 0.00022072071306 +UniRef50_Q6FDD7 0.000292624797564 0.00374707693971 0.00345445214215 +UniRef50_F0Y880 0.000688024426533 0.000778219039123 9.019461259e-05 +UniRef50_X2LK66 Penicillin binding protein 1C 0.00217106335617 0.000185246984181 -0.00198581637199 +UniRef50_G7U7D2 ABC transporter, permease protein 0.000143530794236 0.00684035888162 0.00669682808738 +UniRef50_Q2GDL7 Ribosomal RNA large subunit methyltransferase E 4.14432326013e-05 2.85099962365e-05 -1.29332363648e-05 +UniRef50_V5VAN9 Major facilitator superfamily permease 0.000109924050077 0.00694594145321 0.00683601740313 +UniRef50_Q9RYA2 1.753118713e-05 0.0342240586871 0.0342065275 +UniRef50_Q2C7C0 5.45179186972e-05 0.000634481228811 0.000579963310114 +UniRef50_UPI0003B42B48 hypothetical protein, partial 7.32559288431e-06 4.53704650804e-06 -2.78854637627e-06 +UniRef50_F3NYW4 3 carboxymuconate cyclase 6.08809614591e-06 1.08744785457e-05 4.78638239979e-06 +UniRef50_B1GZ76 DNA directed RNA polymerase subunit beta 1.10445918904e-06 1.72797468269e-06 6.2351549365e-07 +UniRef50_UPI000365AE70 hypothetical protein 6.97429563521e-06 6.25887114119e-05 5.56144157767e-05 +UniRef50_UPI000464E1A7 hypothetical protein 3.98951082257e-05 5.87058170866e-05 1.88107088609e-05 +UniRef50_UPI0004787718 hypothetical protein 2.38888173542e-05 4.07163749228e-06 -1.98171798619e-05 +UniRef50_K0RCG6 1.8467444704e-05 4.00912145008e-06 -1.44583232539e-05 +UniRef50_F0XXW5 0.000167278673357 5.92254492795e-05 -0.000108053224077 +UniRef50_C5WE22 0.000932585034739 0.000993389506473 6.0804471734e-05 +UniRef50_UPI000373B5E9 hypothetical protein 5.29360107224e-05 8.49958957022e-05 3.20598849798e-05 +UniRef50_R6N0L8 Transcriptional regulator PadR family 0.000160657664224 3.12974167876e-05 -0.000129360247436 +UniRef50_A3MAB2 Resolvase 0.00105592535631 0.0412507766369 0.0401948512806 +UniRef50_UPI00026C7388 bicyclomycin resistance protein 9.08346436372e-06 3.24934822947e-05 2.3410017931e-05 +UniRef50_A0ZZN9 Aspartate semialdehyde dehydrogenase 0.000254090324097 0.00083357061716 0.000579480293063 +UniRef50_Q8RE73 Transcriptional regulator, DeoR family 0.00549508542838 0.00208820290026 -0.00340688252812 +UniRef50_N0AI85 2.31676005021e-05 0.000146423512291 0.000123255911789 +UniRef50_UPI00029D989C PREDICTED 2.17679963127e-05 4.93332494081e-05 2.75652530954e-05 +UniRef50_F8KPA7 Glutathione regulated potassium efflux system protein KefB 9.14747953543e-05 0.00350693449124 0.00341545969589 +UniRef50_Q3IV28 DNA binding HTH domain containing proteins 0.0130366038994 0.00676836190193 -0.00626824199747 +UniRef50_M8W9J3 Glycosyl hydrolase family 65 central catalytic domain protein 0.000215291091346 7.92796524076e-05 -0.000136011438938 +UniRef50_B3WXF3 Glycolate oxidase iron sulfur subunit 2.55866356295e-05 5.56840732904e-05 3.00974376609e-05 +UniRef50_UPI00024851F3 hemolysin type calcium binding protein 2.07228005402e-06 4.11353091572e-05 3.90630291032e-05 +UniRef50_UPI0003B6F611 aldehyde activating protein 0.000156920145125 3.91968327626e-05 -0.000117723312362 +UniRef50_UPI00029AFF26 30S ribosomal protein S15 8.03830162395e-05 2.41897538769e-05 -5.61932623626e-05 +UniRef50_Q96RP9 Elongation factor G, mitochondrial 1.15220608226e-05 7.19418740366e-06 -4.32787341894e-06 +UniRef50_D0LJQ7 Extracellular solute binding protein family 1 0.0110876281656 0.00183648778218 -0.00925114038342 +UniRef50_Q9RWX4 0.000482723819801 0.0196451101969 0.0191623863771 +UniRef50_P25740 Lipopolysaccharide core biosynthesis protein RfaG 0.00396643837659 0.00152439095337 -0.00244204742322 +UniRef50_T2L9X3 0.000180959195655 5.2507838966e-05 -0.000128451356689 +UniRef50_Q9RRP0 Transcriptional regulator, MerR family 0.000294680013299 0.0309331585454 0.0306384785321 +UniRef50_B9KNU8 Transcriptional regulator, MerR family 0.00617601716693 0.00105355235223 -0.0051224648147 +UniRef50_G7U539 5.08056512592e-05 0.00321032300084 0.00315951734958 +UniRef50_UPI00035E9032 MULTISPECIES 8.01458044706e-06 2.34611146232e-05 1.54465341761e-05 +UniRef50_UPI000411B532 hypothetical protein 0.000134436053524 7.2731883108e-05 -6.1704170416e-05 +UniRef50_UPI0004638A40 hypothetical protein 8.12777733285e-05 2.94846182109e-05 -5.17931551176e-05 +UniRef50_UPI000304092F hypothetical protein 1.1240277524e-05 2.27595106865e-05 1.15192331625e-05 +UniRef50_UPI00047D1DA4 methyltransferase 3.02877527938e-05 2.60433689021e-05 -4.2443838917e-06 +UniRef50_B9E5C1 0.000227401198102 0.000442975057792 0.00021557385969 +UniRef50_U5MS98 0.000420570896694 0.0014263004297 0.00100572953301 +UniRef50_A3M1H8 7.75656232471e-05 0.00692520649548 0.00684764087223 +UniRef50_A4WTR8 0.00208684961886 0.00089040212621 -0.00119644749265 +UniRef50_F9YXU6 0.000154091083615 0.000651518130776 0.000497427047161 +UniRef50_B2V7W7 ATP dependent 6 phosphofructokinase 2.21733406052e-05 7.39473080604e-06 -1.47786097992e-05 +UniRef50_UPI00046226A0 histidine kinase, partial 0.000158164520469 0.000228043787796 6.9879267327e-05 +UniRef50_UPI000464D5F8 quercetin 2,3 dioxygenase 5.54654045468e-06 1.15753878975e-05 6.02884744282e-06 +UniRef50_Q89GJ0 ABC transporter permease protein 0.00101112772668 0.00048545211813 -0.00052567560855 +UniRef50_Q82SA8 Glucans biosynthesis glucosyltransferase H 0.00322620876065 0.000982470916933 -0.00224373784372 +UniRef50_M1Z980 1.57908939236e-05 5.36752964174e-05 3.78844024938e-05 +UniRef50_UPI0004704D11 translation initiation factor IF 3 0.000163534295685 0.000210350854973 4.6816559288e-05 +UniRef50_G0DSU9 S adenosylmethionine synthase 0.00019595176491 0.00378181688188 0.00358586511697 +UniRef50_Q2FFH9 Sodium dependent dicarboxylate transporter SdcS 0.0115303940844 0.00144442504443 -0.01008596904 +UniRef50_UPI000362FFAD hypothetical protein, partial 1.20421391428e-05 3.58845595754e-05 2.38424204326e-05 +UniRef50_G0DRS5 Sugar binding protein 0.000228474222761 0.00811337326417 0.00788489904141 +UniRef50_UPI000223620B PREDICTED 0.000118768533466 0.000185394721555 6.6626188089e-05 +UniRef50_UPI0003B6A033 ABC transporter 2.22087090568e-06 3.4907305443e-06 1.26985963862e-06 +UniRef50_Q96533 Alcohol dehydrogenase class 3 5.86393070053e-06 0.00317914242224 0.00317327849154 +UniRef50_W9EWM1 8.03232046339e-05 5.49111602742e-05 -2.54120443597e-05 +UniRef50_C1KYP9 Prolipoprotein diacylglyceryl transferase 1.04729237001e-05 0.000521147126817 0.000510674203117 +UniRef50_UPI000479DF45 hypothetical protein 1.97659534534e-05 1.03216520701e-05 -9.4443013833e-06 +UniRef50_M9M1D4 0.00097309487519 0.000216799876999 -0.000756294998191 +UniRef50_D5ATM2 Transcriptional regulator, LysR family 0.00465043345512 0.00171587947862 -0.0029345539765 +UniRef50_A0A024J7I0 Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA dependent ATPase and ssDNA annealing activities involved in maintenance of genome 3.25484789268e-06 1.69036836831e-05 1.36488357904e-05 +UniRef50_Q182G9 Uracil DNA glycosylase 0.00793373466344 0.00210595479533 -0.00582777986811 +UniRef50_UPI00037EDDB2 hypothetical protein 2.09756641805e-05 3.20341797078e-05 1.10585155273e-05 +UniRef50_D9WFC1 Allergen V5 Tpx 1 related protein 5.85849700527e-05 5.10745646213e-05 -7.5104054314e-06 +UniRef50_P0A911 Outer membrane protein A 0.00362566167161 0.00101563638109 -0.00261002529052 +UniRef50_UPI0003B56FE6 hypothetical protein 1.85993862493e-06 8.14728887017e-07 -1.04520973791e-06 +UniRef50_UPI000465FC10 oxidoreductase 8.1911951262e-06 1.22535146878e-05 4.0623195616e-06 +UniRef50_K9NBL7 Formate dehydrogenase family accessory protein FdhD 0.000196949211577 0.000228337658653 3.1388447076e-05 +UniRef50_C8RZ45 Entericidin EcnAB 0.000141183299524 0.000259390794772 0.000118207495248 +UniRef50_V9ZPI5 GntR family transcriptional regulator 0.000157067679132 0.000599275541181 0.000442207862049 +UniRef50_B8GVF8 Potassium transporting ATPase A chain 1.01130731999e-05 0.00124857913595 0.00123846606275 +UniRef50_Q4FR66 Possible tRNA io(6)a) hydroxylase 8.83975236542e-06 0.00356371275777 0.0035548730054 +UniRef50_V5XTH0 HIT family protein 0.00301580741199 0.00951262795234 0.00649682054035 +UniRef50_S5XKF8 Aminodeoxychorismate lyase 0.00183606468922 0.00060333333611 -0.00123273135311 +UniRef50_UPI00037864CC hypothetical protein 5.6464639105e-05 2.57262109159e-05 -3.07384281891e-05 +UniRef50_A3M8R9 9.73963701246e-05 0.00748761566958 0.00739021929946 +UniRef50_D3CS21 Terminase 1.72422524725e-06 4.6478982698e-06 2.92367302255e-06 +UniRef50_D7CM96 Metallophosphoesterase 7.27848586041e-06 1.50496903043e-05 7.77120444389e-06 +UniRef50_A8U0I4 1.42041880074e-06 3.62886407675e-06 2.20844527601e-06 +UniRef50_Q28TH8 Protein L isoaspartate O methyltransferase 0.00211989791279 0.000694862835762 -0.00142503507703 +UniRef50_D7A8N8 0.00223793177468 0.00140481492064 -0.00083311685404 +UniRef50_UPI000361C4AD hypothetical protein 0.000217337939078 1.66883101846e-05 -0.000200649628893 +UniRef50_P57028 DNA primase 0.000455340207854 0.00318368260169 0.00272834239384 +UniRef50_Q3AAI8 Adenine phosphoribosyltransferase 2.38630710129e-05 4.06513086556e-05 1.67882376427e-05 +UniRef50_G0MS24 1.89928228595e-05 2.23184584061e-05 3.3256355466e-06 +UniRef50_A5UL10 0.0058959180495 0.000477601140485 -0.00541831690901 +UniRef50_A6LT75 Ig domain protein, group 2 domain protein 0.00029455243046 0.00162078119211 0.00132622876165 +UniRef50_UPI0003735B5E hypothetical protein 4.91138850543e-06 1.39821651909e-06 -3.51317198634e-06 +UniRef50_Q8FPF5 LexA repressor 6.25249684799e-05 1.56114780767e-05 -4.69134904032e-05 +UniRef50_C1AAF1 UDP glucose 6 dehydrogenase 0.00490943510961 0.00331580644179 -0.00159362866782 +UniRef50_UPI0003C1975D 2.31212779318e-05 3.53568746275e-05 1.22355966957e-05 +UniRef50_UPI00037D4B02 hypothetical protein 7.75701654001e-06 3.80178452906e-06 -3.95523201095e-06 +UniRef50_P45335 0.000204830812332 0.00252247365718 0.00231764284485 +UniRef50_Q47690 Homocysteine S methyltransferase 0.00167519669018 0.000376199624447 -0.00129899706573 +UniRef50_A6QBN8 ATP dependent zinc metalloprotease FtsH 6.04622512861e-05 0.0058378907646 0.00577742851331 +UniRef50_B2SDP9 3 dehydroquinate dehydratase 6.18834267726e-05 1.63361000428e-05 -4.55473267298e-05 +UniRef50_UPI0003BD59E0 PREDICTED 6.73408053123e-06 1.1513208162e-05 4.77912763077e-06 +UniRef50_G7M9Q4 SSS sodium solute transporter superfamily 0.000284017336483 0.00130927035157 0.00102525301509 +UniRef50_UPI00046850A9 membrane protein 3.69663463273e-05 4.75414985962e-06 -3.22121964677e-05 +UniRef50_Q1MIN0 Phosphate import ATP binding protein PstB 2 6.21180647702e-06 0.0001572358992 0.000151024092723 +UniRef50_A0A031W8S5 4.81562368441e-05 4.6812926905e-05 -1.3433099391e-06 +UniRef50_A6VAP8 0.000224697354869 0.000578158651396 0.000353461296527 +UniRef50_Q9I425 Cytochrome bo ubiquinol oxidase subunit 3 0.00448453814469 0.00260926823191 -0.00187526991278 +UniRef50_Q6A9N0 Hemin receptor 4.16778983442e-05 0.00753389953111 0.00749222163277 +UniRef50_Q63Q93 Phosphoribosyl AMP cyclohydrolase 2.37393536606e-05 5.94870099621e-05 3.57476563015e-05 +UniRef50_I2DKJ5 Urea ABC transporter, urea binding protein 0.0178486838905 0.00391405306036 -0.0139346308301 +UniRef50_F0RXH0 Ornithine decarboxylase 0.00143909360312 0.00580920910375 0.00437011550063 +UniRef50_K4RK14 Cysteine desulfurase 0.000115321585189 0.00284997237502 0.00273465078983 +UniRef50_UPI00045D877D PREDICTED 7.2745867193e-05 8.07695811183e-05 8.0237139253e-06 +UniRef50_UPI000262B349 TonB like protein 0.000151484918653 0.000172868315237 2.1383396584e-05 +UniRef50_A0A024HEM4 0.000169162777717 0.000136404944659 -3.2757833058e-05 +UniRef50_UPI00032AF593 PREDICTED 4.33393104288e-06 1.59844688163e-05 1.16505377734e-05 +UniRef50_E3I3E7 Enoyl CoA hydratase isomerase 0.000531922390186 0.000192597851207 -0.000339324538979 +UniRef50_S3ZTJ7 0.000225140748821 2.69796864334e-05 -0.000198161062388 +UniRef50_C2V3W1 Flavodoxin 0.000331128060398 0.00114001973896 0.000808891678562 +UniRef50_I0EKX0 0.000126673150626 0.00571418335711 0.00558751020648 +UniRef50_I0EKX8 0.000237973923262 0.00272474654236 0.0024867726191 +UniRef50_UPI0003B5754D 30S ribosomal protein S2 2.10117484474e-05 0.000115285731913 9.42739834656e-05 +UniRef50_UPI000477AE59 GMP synthase 3.12373823975e-06 1.3286428388e-05 1.01626901482e-05 +UniRef50_UPI00036D316E hypothetical protein 2.2212781002e-05 2.46660446637e-05 2.4532636617e-06 +UniRef50_X1RBN9 Marine sediment metagenome DNA, contig 0.000123893850246 0.00160080283871 0.00147690898846 +UniRef50_S1SGR9 0.000281678685418 4.48482495811e-05 -0.000236830435837 +UniRef50_G7ZV51 3.22760195962e-05 3.04050563091e-05 -1.8709632871e-06 +UniRef50_A6M2G9 Polysaccharide biosynthesis protein 0.000163189554473 0.00319644103373 0.00303325147926 +UniRef50_N0C5G3 0.00583284352253 0.00556745899574 -0.00026538452679 +UniRef50_A3VF16 0.000260954772703 4.05986804015e-05 -0.000220356092301 +UniRef50_A1WKV0 Succinate dehydrogenase 0.00327041598736 0.00113403931895 -0.00213637666841 +UniRef50_Q0SRW4 Phospho N acetylmuramoyl pentapeptide transferase 7.30710392256e-06 9.7699286379e-06 2.46282471534e-06 +UniRef50_UPI00046AE78D type III secretion protein HrpI 6.03321920333e-06 5.61542458118e-06 -4.1779462215e-07 +UniRef50_U7DL84 TetR family transcriptional regulator 0.000446336597065 0.000285330149942 -0.000161006447123 +UniRef50_N6TVC0 0.000353630632388 2.18061715372e-05 -0.000331824460851 +UniRef50_V6QG29 Type III restriction enzyme, res subunit 0.0098841505013 0.00534783224654 -0.00453631825476 +UniRef50_Q8PG33 RNA polymerase sigma factor RpoD 0.000804082964542 0.0028458886189 0.00204180565436 +UniRef50_D5SSK6 Beta Ig H3 fasciclin 6.91947766764e-05 1.40332555597e-05 -5.51615211167e-05 +UniRef50_A5N5W0 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.53294511175e-05 0.00212374664228 0.00210841719116 +UniRef50_S9QZ13 4.98589119372e-05 7.57493512734e-05 2.58904393362e-05 +UniRef50_D9UUH5 Predicted protein 2.27303077583e-05 0.000125404795578 0.00010267448782 +UniRef50_P0C8K1 D tagatose 1,6 bisphosphate aldolase subunit KbaZ 0.0045407407648 0.00193279716663 -0.00260794359817 +UniRef50_Q73Z69 2.59945604314e-06 2.11930838157e-06 -4.8014766157e-07 +UniRef50_UPI0003B6885A hypothetical protein 0.000106908486396 3.12815155955e-05 -7.56269708005e-05 +UniRef50_UPI00047712DF cystathionine beta lyase 8.58356784087e-05 1.92484643492e-05 -6.65872140595e-05 +UniRef50_M9VBT0 RpiR family transcriptional regulator 0.00048452050887 0.00581842192246 0.00533390141359 +UniRef50_A7ZUM9 0.011615942642 0.00272246400014 -0.00889347864186 +UniRef50_UPI0003B566EA glycine betaine ABC transporter ATP binding protein 0.000172952101627 1.34709640893e-05 -0.000159481137538 +UniRef50_UPI0003682815 transcriptional regulator 3.36887347044e-05 7.96106693115e-05 4.59219346071e-05 +UniRef50_UPI0003C1848F 1.27091099107e-05 0.000136644285801 0.00012393517589 +UniRef50_H2A7K3 COG4478, integral membrane protein 0.000241472812415 1.86518256558e-05 -0.000222820986759 +UniRef50_UPI0002485ACF sugar ABC transporter ATP binding protein 1.14597753175e-05 1.66444082555e-05 5.184632938e-06 +UniRef50_K8B0J3 Acetyl coenzyme A synthetase 0.00142914633767 0.000899005750461 -0.000530140587209 +UniRef50_UPI00045E771A hypothetical protein 0.000578139924697 0.000348735440883 -0.000229404483814 +UniRef50_UPI00036DBE20 hypothetical protein 0.000249659097226 6.11217046404e-05 -0.000188537392586 +UniRef50_F0Y5J9 Expressed protein 0.000134490739149 0.000288787895961 0.000154297156812 +UniRef50_Q9HZ17 FMN dependent NADH azoreductase 3 0.000267720559474 0.00316308162324 0.00289536106377 +UniRef50_UPI000379F901 hypothetical protein 1.50613992114e-05 1.18607171512e-05 -3.2006820602e-06 +UniRef50_A8Z481 Competence protein ComGD 0.00351526128724 0.00237611142112 -0.00113914986612 +UniRef50_Z8E4W9 0.000476012824855 1.71162602195e-05 -0.000458896564636 +UniRef50_A7Z3A7 N acetyl gamma glutamyl phosphate reductase 4.96997921935e-06 5.16366006545e-06 1.936808461e-07 +UniRef50_UPI00036800B9 hypothetical protein 0.000174790674043 0.0001428713354 -3.1919338643e-05 +UniRef50_K0DDY7 3 oxoacyl [acyl carrier protein] synthase 2 0.00820619844652 0.00179326603883 -0.00641293240769 +UniRef50_A0A023RSC6 D Ala D Ala carboxypeptidase 0.000270922958506 0.0084795181715 0.00820859521299 +UniRef50_Q9ZKG9 Methionine tRNA ligase 6.44726582038e-05 0.00208569193564 0.00202121927744 +UniRef50_M4YY04 Ribosome biogenesis GTPase A 0.00568120929523 0.0028965674175 -0.00278464187773 +UniRef50_W6I1I5 2.26439125401e-06 3.6976552859e-06 1.43326403189e-06 +UniRef50_W1X1F9 0.00085636406403 0.000322829721041 -0.000533534342989 +UniRef50_B6IWY4 2.50266742009e-06 4.70144629967e-06 2.19877887958e-06 +UniRef50_R9SI06 Chorismate lyase 0.00306318153505 0.000315846743525 -0.00274733479152 +UniRef50_D0Z8H8 1.53513617329e-05 0.000971037898047 0.000955686536314 +UniRef50_G5LKX8 Potassium transporting ATPase B chain 1.88203351291e-05 0.00136688918081 0.00134806884568 +UniRef50_Q31N34 3 isopropylmalate dehydrogenase 5.25456489393e-05 6.20758076026e-05 9.5301586633e-06 +UniRef50_Q9LV03 Glutamate synthase 1 [NADH], chloroplastic 1.03833201265e-06 1.09541629013e-05 9.91583088865e-06 +UniRef50_P21599 Pyruvate kinase II 0.00272713402986 0.000796271081831 -0.00193086294803 +UniRef50_I0ZLD5 Cation acetate symporter ActP 0.000729757742592 0.000655754929427 -7.4002813165e-05 +UniRef50_F0N2E1 Antioxidant, AhpC TSA family 0.00174224302547 0.0116455577096 0.00990331468413 +UniRef50_R6LNJ5 Calcium translocating P type ATPase PMCA type 0.000452391273821 0.00122306857789 0.000770677304069 +UniRef50_V6IYX1 Sugar ABC transporter substrate binding protein 0.000143159730023 1.83939685458e-05 -0.000124765761477 +UniRef50_M9RA73 0.0327263496618 0.00037381861418 -0.0323525310476 +UniRef50_H1CG66 Inosine 5 monophosphate dehydrogenase 0.00360713766123 0.000555707614596 -0.00305143004663 +UniRef50_Q9FV81-2 Isoform 2 of Glutamyl tRNA amidotransferase subunit B, chloroplastic mitochondrial 2.81065472929e-05 2.01819405499e-05 -7.924606743e-06 +UniRef50_UPI00036930E8 hypothetical protein 2.78148761753e-05 6.41161053227e-07 -2.71737151221e-05 +UniRef50_C1DKH4 Tartrate transporter 0.0002529622901 0.00255069249602 0.00229773020592 +UniRef50_UPI0004798495 16S rRNA methyltransferase, partial 4.56538767165e-05 0.000196307537731 0.000150653661014 +UniRef50_UPI0004702790 hypothetical protein 6.97296660518e-05 2.15342069828e-05 -4.8195459069e-05 +UniRef50_I6RS84 Type 4 fimbrial biogenesis protein PilX 0.000687548156749 0.000301343576728 -0.000386204580021 +UniRef50_P39853 Capsular polysaccharide biosynthesis protein CapD 2.26011804391e-05 0.00109703689735 0.00107443571691 +UniRef50_D7HYR3 D alanyl D alanine carboxypeptidase 0.00060983822042 0.000376795021552 -0.000233043198868 +UniRef50_UPI0004678721 hypothetical protein 0.000223880535938 1.2644111223e-05 -0.000211236424715 +UniRef50_I6U2K4 Transcriptional regulator 0.00381352079595 0.00115905607187 -0.00265446472408 +UniRef50_A0A024JDH6 Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD dependent butanediol dehydrogenase 5.92366936443e-06 2.76717582201e-05 2.17480888557e-05 +UniRef50_P23876 Ferric enterobactin transport system permease protein FepD 0.004472983898 0.00234787763293 -0.00212510626507 +UniRef50_L0Q6W3 9.70357819977e-07 0.000122930762834 0.000121960405014 +UniRef50_C5N3X1 0.00330275162702 0.00170330479738 -0.00159944682964 +UniRef50_UPI0001F85E2B multiple sugar binding transporter like protein 1.44149256948e-05 2.57700423232e-05 1.13551166284e-05 +UniRef50_UPI0003090106 cyclase 9.95716216258e-06 0.000288604169593 0.00027864700743 +UniRef50_W6C5N4 Polyketide synthase domain protein 4.76123327522e-05 0.00025197336371 0.000204361030958 +UniRef50_P33770 Coproporphyrinogen III oxidase, anaerobic 1 0.0108854704053 0.00327250201761 -0.00761296838769 +UniRef50_E4L4M2 SNF2 family protein 0.000528156953586 0.000164396283177 -0.000363760670409 +UniRef50_C3I167 Collagen adhesion protein 3.59742425399e-05 0.000107845418814 7.18711762741e-05 +UniRef50_UPI00037939BE hypothetical protein 7.95098310251e-06 6.13312270941e-06 -1.8178603931e-06 +UniRef50_UPI0003020997 hypothetical protein 3.15777251882e-05 8.01736272467e-05 4.85959020585e-05 +UniRef50_Q8ER36 Orotidine 5 phosphate decarboxylase 9.60224096871e-06 1.63491526927e-05 6.74691172399e-06 +UniRef50_U1EEA4 0.000839504551366 9.87769640377e-05 -0.000740727587328 +UniRef50_U5PCG2 ABC transporter ATP binding protein 0.00552725008652 0.0044889882581 -0.00103826182842 +UniRef50_T1XT07 BioX, putative 0.0131425871141 0.000606815147654 -0.0125357719664 +UniRef50_UPI00034AA460 hypothetical protein 0.000114739585902 5.59794423611e-06 -0.000109141641666 +UniRef50_K1E310 FAD dependent oxidoreductase 3.05825273444e-05 3.14466609142e-05 8.641335698e-07 +UniRef50_D2JAL6 0.00822902625585 0.00279886365124 -0.00543016260461 +UniRef50_UPI0004721ABE 2 hydroxy acid oxidase 8.53819721138e-06 1.27129561562e-05 4.17475894482e-06 +UniRef50_K0HFL9 MFS superfamily metabolite transporter 0.000105639735687 0.00583376253161 0.00572812279592 +UniRef50_P48728 Aminomethyltransferase, mitochondrial 5.32506301152e-06 6.92545911867e-06 1.60039610715e-06 +UniRef50_UPI0004779493 multidrug ABC transporter substrate binding protein 8.17822032878e-06 7.24349100422e-05 6.42566897134e-05 +UniRef50_A7FC02 0.0141068245209 0.00242436319857 -0.0116824613223 +UniRef50_Q92ID9 NADH quinone oxidoreductase subunit E 0.000300906119878 9.8706789506e-05 -0.000202199330372 +UniRef50_Q7U8U2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 9.10692511038e-06 0.00211419670339 0.00210508977828 +UniRef50_A4WSV4 Integral membrane sensor hybrid histidine kinase 0.000666595996722 0.000510168072101 -0.000156427924621 +UniRef50_Q3J222 Prohead peptidase 0.041744510576 0.0070430691237 -0.0347014414523 +UniRef50_A6LU68 0.000195551255929 0.00121666916275 0.00102111790682 +UniRef50_P0ACU0 0.000762063535662 0.000527351259279 -0.000234712276383 +UniRef50_J4PCY6 5.85446639824e-06 1.79255691649e-05 1.20711027667e-05 +UniRef50_J9NX48 8.87022816825e-05 0.000123942982866 3.52407011835e-05 +UniRef50_Q7UKG6 Phosphopantetheine adenylyltransferase 2.48556342499e-05 1.80010471357e-05 -6.8545871142e-06 +UniRef50_Q6AL57 Transcription elongation factor GreA 0.0424748192723 0.00113664421205 -0.0413381750602 +UniRef50_Q47VJ8 Ribosomal RNA small subunit methyltransferase A 0.00377904592018 0.00149791803645 -0.00228112788373 +UniRef50_W4HH92 Flagellar protein FlgJ 4.50157599244e-05 1.97277047827e-05 -2.52880551417e-05 +UniRef50_Q9X1K5 Diaminopimelate decarboxylase 1.08975216127e-05 9.08471114237e-05 7.9949589811e-05 +UniRef50_A6L467 8.21812747825e-05 0.00394472516381 0.00386254388903 +UniRef50_UPI00047E3BE8 antibiotic ABC transporter ATP binding protein 2.9623144854e-05 1.78654303749e-05 -1.17577144791e-05 +UniRef50_UPI00036A881E hypothetical protein 8.0357552537e-05 6.67203906117e-05 -1.36371619253e-05 +UniRef50_UPI000403EBB4 hypothetical protein 9.70183621895e-06 8.53820200852e-06 -1.16363421043e-06 +UniRef50_Q9BPL7 Enolase 2 8.38809970367e-06 4.30740755944e-05 3.46859758907e-05 +UniRef50_Q9RUW7 0.000170038733717 0.0289186642674 0.0287486255337 +UniRef50_A8LSK1 Methionine synthase 0.012184668792 0.00138735665121 -0.0107973121408 +UniRef50_UPI0003809DD9 hypothetical protein 2.10612319231e-05 5.44494481158e-05 3.33882161927e-05 +UniRef50_S9Q9U8 0.000834591893387 9.25449644757e-05 -0.000742046928911 +UniRef50_B0JXU3 Tryptophan synthase alpha chain 6.49564389585e-06 3.70669364265e-05 3.05712925307e-05 +UniRef50_E3D2G5 Histone deacetylase family protein 0.000222917906442 0.00258032085162 0.00235740294518 +UniRef50_UPI0003B5E34E hypothetical protein 2.99272533724e-05 3.46818292249e-05 4.7545758525e-06 +UniRef50_R4K9U0 DNA binding domain containing protein, AraC type 0.000271087517886 0.00238800287816 0.00211691536027 +UniRef50_A1B0L9 DSBA oxidoreductase 0.00199578442658 0.000301343576728 -0.00169444084985 +UniRef50_F4M1U9 0.00301041584131 0.00035723794984 -0.00265317789147 +UniRef50_D9XYR1 0.00039875280513 0.000635089688595 0.000236336883465 +UniRef50_A1TVS9 DNA directed RNA polymerase subunit beta 0.000126277227183 0.00293098533946 0.00280470811228 +UniRef50_UPI00036C2011 hypothetical protein 7.47838627615e-06 2.54514868394e-05 1.79731005633e-05 +UniRef50_V4ZLE5 1.74412130954e-05 9.66926280407e-06 -7.77195029133e-06 +UniRef50_UPI00046E5BCC hypothetical protein 6.55102502005e-05 6.36638103887e-05 -1.8464398118e-06 +UniRef50_H8H091 Protein tyrosine kinase 0.00044538609018 0.0545585207055 0.0541131346153 +UniRef50_Q9RRQ3 Methionyl tRNA formyltransferase 0.000209326796037 0.00570343623668 0.00549410944064 +UniRef50_UPI00040B88AD UDP N acetylglucosamine 2 epimerase 4.05347440743e-06 4.90554424733e-05 4.50019680659e-05 +UniRef50_UPI00047E5ED7 methionyl tRNA synthetase 2.10297402489e-06 8.66949829182e-06 6.56652426693e-06 +UniRef50_UPI00029B3D72 methionine ABC transporter ATP binding protein 9.19939068838e-06 1.86256509507e-05 9.42626026232e-06 +UniRef50_I3TSH3 0.000188531238391 4.68510926259e-05 -0.000141680145765 +UniRef50_UPI0003659DC3 hypothetical protein 0.000350531002865 5.15543361463e-05 -0.000298976666719 +UniRef50_A9NFF0 3 oxoacyl [acyl carrier protein] synthase 3 0.000121767321402 1.92632414655e-05 -0.000102504079936 +UniRef50_UPI00039AD4F5 hypothetical protein 0.000332441010353 0.000189713694348 -0.000142727316005 +UniRef50_D8LEP5 0.000122216611348 7.77078933929e-05 -4.45087179551e-05 +UniRef50_UPI000371B6BB hypothetical protein 5.29112489966e-06 5.27032488013e-06 -2.080001953e-08 +UniRef50_UPI0003730F41 hypothetical protein 1.40201020954e-06 8.85775344207e-06 7.45574323253e-06 +UniRef50_D9W6W3 Pyruvate dehydrogenase E1 component, beta subunit 2.47599037503e-05 0.000374788992773 0.000350029089023 +UniRef50_F2A904 0.00141878477885 0.000153810783964 -0.00126497399489 +UniRef50_P66840 Putative 5 deoxyribonucleotidase 0.0177196171343 0.0050474372536 -0.0126721798807 +UniRef50_UPI000419C490 hypothetical protein 3.46984835007e-05 0.000427102615472 0.000392404131971 +UniRef50_T1XMS0 0.0039938364311 0.00661569203381 0.00262185560271 +UniRef50_E3HMU2 NLPA lipoprotein family protein 2 5.56157572879e-05 7.69588947928e-05 2.13431375049e-05 +UniRef50_F2MTP7 Permease protein 4.04792763964e-06 0.00102796593386 0.00102391800622 +UniRef50_A5G7C7 Cyclic pyranopterin monophosphate synthase accessory protein 1.25844989131e-05 3.74793595656e-05 2.48948606525e-05 +UniRef50_P37660 Inner membrane transport protein YhjV 0.00245190682832 0.000609342895392 -0.00184256393293 +UniRef50_M4R188 Alpha beta hydrolase 0.000281006939596 0.00551155654442 0.00523054960482 +UniRef50_Q9ZDG4 Enoyl [acyl carrier protein] reductase [NADH] FabI 2.08916828417e-05 3.39680460079e-05 1.30763631662e-05 +UniRef50_UPI000252B2C6 PREDICTED 2.09952197365e-05 6.40869817149e-05 4.30917619784e-05 +UniRef50_B4G025 0.000146841261068 5.45100947855e-05 -9.23311662825e-05 +UniRef50_N1MD27 4.47737094911e-05 0.000399577778152 0.000354804068661 +UniRef50_UPI00037C0828 hypothetical protein 1.41609120888e-05 6.74575120229e-05 5.32965999341e-05 +UniRef50_A6LR24 Binding protein dependent transport systems inner membrane component 0.000433451080824 0.000984986740368 0.000551535659544 +UniRef50_Q7VQF3 Chaperone protein ClpB 0.0035705687169 0.00117565948613 -0.00239490923077 +UniRef50_A6LUL9 0.000260935015331 0.00343546800525 0.00317453298992 +UniRef50_O34912 Histidine biosynthesis bifunctional protein HisIE 1.14887686762e-05 5.41589352388e-05 4.26701665626e-05 +UniRef50_A4WZN4 0.00487722060015 0.000265094120383 -0.00461212647977 +UniRef50_UPI000455DB27 general APC amino acid permease 2.90463622911e-06 1.46374330329e-05 1.17327968038e-05 +UniRef50_UPI0002B43AC6 PREDICTED 8.60918848724e-05 4.5009761955e-05 -4.10821229174e-05 +UniRef50_B2GAM0 Enolase 0.0286501256718 0.0794844618692 0.0508343361974 +UniRef50_UPI00047EF87F adenine deaminase 3.35184571582e-05 6.53916915152e-06 -2.69792880067e-05 +UniRef50_P0AG16 Amidophosphoribosyltransferase 0.00384859536076 0.00218887038083 -0.00165972497993 +UniRef50_UPI000329AF58 PREDICTED 1.19165666318e-05 7.93251833153e-06 -3.98404830027e-06 +UniRef50_W5XCC8 Translation initiation factor IF 2 6.21549227664e-06 1.72147081658e-05 1.09992158892e-05 +UniRef50_B5GE97 6.21881242257e-05 0.000121763004674 5.95748804483e-05 +UniRef50_P14575 Cytochrome c oxidase subunit 3 6.55914734379e-05 1.14461067609e-05 -5.4145366677e-05 +UniRef50_E8S6A2 Cobyrinic acid ac diamide synthase 4.4303808345e-06 2.06567297751e-05 1.62263489406e-05 +UniRef50_P25798 Flagellar M ring protein 0.0034134737437 0.00186829663424 -0.00154517710946 +UniRef50_A5UP72 Predicted ATPase, AAA+ superfamily 0.00900112584029 0.00225262405115 -0.00674850178914 +UniRef50_Q71YD4 30S ribosomal protein S14 0.000352790643786 0.01197465751 0.0116218668662 +UniRef50_J9RWY1 1.93533091896e-05 1.8284568998e-05 -1.0687401916e-06 +UniRef50_P0AFU1 Inner membrane ABC transporter permease protein YejB 0.0112458799449 0.00282785097814 -0.00841802896676 +UniRef50_UPI00037FB943 hypothetical protein 1.62361831908e-05 6.18902403542e-06 -1.00471591554e-05 +UniRef50_Q0VSU8 Pyridoxine pyridoxamine 5 phosphate oxidase 1.02203536949e-05 1.5077204566e-05 4.8568508711e-06 +UniRef50_Q9ZM43 0.000124582834604 0.00777195086413 0.00764736802953 +UniRef50_H6SQR1 1.9269091371e-05 0.000197619685755 0.000178350594384 +UniRef50_F3YB73 ABC transporter, substrate binding protein 3.02290428433e-05 2.33459958245e-05 -6.8830470188e-06 +UniRef50_I0C1S7 Cystathionine beta lyase 0.0296191243874 0.00721835302993 -0.0224007713575 +UniRef50_R4LHW2 2.87512876844e-05 0.000382881563503 0.000354130275819 +UniRef50_B3DWK0 Potassium transporting ATPase A chain 3.60600399222e-06 0.00123864952253 0.00123504351854 +UniRef50_O34849 Glutamate synthase large subunit like protein YerD 0.0227681889695 0.00362687116443 -0.0191413178051 +UniRef50_UPI0002557A0F siderophore interacting protein 6.59130498712e-06 0.00072864450845 0.000722053203463 +UniRef50_Q8E6D9 0.000310262456591 0.000798153257284 0.000487890800693 +UniRef50_O68826 0.000931733320452 0.000208950498955 -0.000722782821497 +UniRef50_U3TU21 6.38643809769e-05 8.63676481117e-05 2.25032671348e-05 +UniRef50_G7L9I0 Acyl coa ligase acetate coa synthetase like protein 3.9860053148e-05 8.94260459322e-05 4.95659927842e-05 +UniRef50_A5UN41 Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC 0.00641577670655 0.000204607416996 -0.00621116928955 +UniRef50_Q2RWR8 Light independent protochlorophyllide reductase subunit N 0.00279925995383 0.000247765632391 -0.00255149432144 +UniRef50_A0A038C8Y6 Cytochrome C 0.00037308813651 0.000100241184142 -0.000272846952368 +UniRef50_E3PS54 Chemotaxis protein cheV 0.000260684454239 0.000394193599824 0.000133509145585 +UniRef50_E2PUY3 0.000394650836142 0.000493294214213 9.8643378071e-05 +UniRef50_Q4UTY2 1.87975087287e-05 0.00139275840481 0.00137396089608 +UniRef50_P59342 Signal transduction histidine protein kinase BarA 0.00255674962222 0.00111423204895 -0.00144251757327 +UniRef50_F4QP68 Con 0.000351724753556 0.000244870308802 -0.000106854444754 +UniRef50_Q8CTA4 Probable cysteine desulfurase 0.0116012133078 0.00334362107704 -0.00825759223076 +UniRef50_P0AEZ0 Multidrug transporter MdfA 0.00338887515633 0.000202966807698 -0.00318590834863 +UniRef50_UPI000472B3B4 citrate synthase 2.52264029814e-05 2.88395252757e-05 3.6131222943e-06 +UniRef50_H1QU98 3.32211935216e-05 4.05030751855e-05 7.2818816639e-06 +UniRef50_A6U5R2 CDP alcohol phosphatidyltransferase 0.00559283866341 0.00284050331352 -0.00275233534989 +UniRef50_UPI00037E82AA hypothetical protein 4.07924383952e-06 9.35558676313e-05 8.94766237918e-05 +UniRef50_UPI000469723A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.63540976938e-05 4.70010769993e-06 -2.16539899939e-05 +UniRef50_S2KTE6 5.79290312825e-05 4.80815273452e-05 -9.8475039373e-06 +UniRef50_Q89XM4 Probable malate 4.51833002291e-06 1.23823168975e-05 7.86398687459e-06 +UniRef50_X1HXX0 Marine sediment metagenome DNA, contig 8.3250523713e-06 1.85283957945e-05 1.02033434232e-05 +UniRef50_P31435 Inner membrane symporter YicJ 0.00231572115467 0.000128959259902 -0.00218676189477 +UniRef50_UPI000262EE20 dihydrodipicolinate synthase 0.000295215906576 1.84269865245e-05 -0.000276788920052 +UniRef50_G9ZDP3 0.000138369049228 0.000966936400493 0.000828567351265 +UniRef50_P39838 Phosphotransferase RcsD 0.00260629142624 0.000894692820875 -0.00171159860537 +UniRef50_A6QGC0 Serine threonine protein kinase PrkC 0.0200006900278 0.00628270961267 -0.0137179804151 +UniRef50_Q1D6P1 Adenylyl sulfate kinase 9.70175687895e-06 0.000283770433577 0.000274068676698 +UniRef50_I4W1C3 1.13760467093e-05 2.25652833288e-05 1.11892366195e-05 +UniRef50_UPI0002485EB3 hypothetical protein 1.60740062749e-05 2.07056127816e-05 4.6316065067e-06 +UniRef50_I0HUK7 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 7.62172273348e-05 6.69296159532e-05 -9.2876113816e-06 +UniRef50_UPI0003958A44 PREDICTED 8.82774132372e-07 1.62064737223e-06 7.37873239858e-07 +UniRef50_UPI00036FE39E hypothetical protein, partial 0.000483316287144 0.000243759331503 -0.000239556955641 +UniRef50_A3PQ32 0.00279762514892 0.000259809418055 -0.00253781573086 +UniRef50_R9ZF14 Amino acid permease 0.000283099100471 0.000275675246015 -7.423854456e-06 +UniRef50_A3PQ31 0.00229846696065 0.000172586821474 -0.00212588013918 +UniRef50_Q6GHV7 Iron regulated surface determinant protein B 0.00735749900875 0.00150770996298 -0.00584978904577 +UniRef50_UPI0003C39CE6 PREDICTED 8.80318725684e-06 0.000121115870208 0.000112312682951 +UniRef50_UPI000332F601 PREDICTED 5.89394213897e-06 1.07491112001e-05 4.85516906113e-06 +UniRef50_Q6A8F8 Prephenate dehydrogenase 0.000314285284399 0.00457819241861 0.00426390713421 +UniRef50_A7GYD5 Queuine tRNA ribosyltransferase 0.000157504585052 0.00338067109926 0.00322316651421 +UniRef50_UPI00021A56D6 PREDICTED 8.01070467196e-05 5.63002897271e-06 -7.44770177469e-05 +UniRef50_K9ZXB7 CBS domain containing protein 0.000328465724026 0.0539731037927 0.0536446380687 +UniRef50_H7D9R4 2.71412411866e-05 2.76477902219e-05 5.065490353e-07 +UniRef50_A4G4T2 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 8.41005303552e-06 2.34400621804e-05 1.50300091449e-05 +UniRef50_Q1ITV2 Uroporphyrinogen decarboxylase 8.42151379326e-06 3.02433779968e-05 2.18218642035e-05 +UniRef50_R7B6C4 1.69834659412e-05 0.00451752463745 0.00450054117151 +UniRef50_Q5GRY9 Bifunctional DNA directed RNA polymerase subunit beta beta 1.79792369786e-06 9.76987833366e-07 -8.20935864494e-07 +UniRef50_Q73CC8 4.3774950384e-05 0.000287402917485 0.000243627967101 +UniRef50_W2BNM9 0.000351477028217 0.000180254347023 -0.000171222681194 +UniRef50_L7VQV4 Chemotaxis signal transduction protein 0.00188742994426 0.000798153257284 -0.00108927668698 +UniRef50_Q5HR61 Lipoprotein, putative 0.00352892021664 0.000515087276506 -0.00301383294013 +UniRef50_Q8CNG1 Alkaline shock protein 23 0.00939906504637 0.00467786345862 -0.00472120158775 +UniRef50_A0A009JWB2 NMT1 like family protein 0.000219214033654 0.0045170019846 0.00429778795095 +UniRef50_UPI0004646F16 MULTISPECIES 5.32047382301e-05 4.96484554156e-06 -4.82398926885e-05 +UniRef50_Q10663 Bifunctional glyoxylate cycle protein 1.61892842561e-05 7.23137931487e-05 5.61245088926e-05 +UniRef50_UPI000479F146 membrane protein 0.000126899833684 2.54220062823e-05 -0.000101477827402 +UniRef50_UPI00047D9998 hypothetical protein 4.28445629851e-06 1.64898361668e-05 1.22053798683e-05 +UniRef50_UPI000463D3E1 hypothetical protein, partial 0.00028511064625 4.70778567852e-05 -0.000238032789465 +UniRef50_D7A1G5 CoA binding domain protein 0.0119510548909 0.00373121547901 -0.00821983941189 +UniRef50_B8D8U8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.84864750408e-05 1.40563332668e-05 -3.4430141774e-05 +UniRef50_A6LSU4 NLP P60 protein 0.000797843429186 0.00146881804754 0.000670974618354 +UniRef50_D3VF61 0.000125076155752 0.00172894053548 0.00160386437973 +UniRef50_UPI000225EED0 hypothetical protein 0.000524182851017 5.77344291136e-05 -0.000466448421903 +UniRef50_Q0VLR3 2 isopropylmalate synthase 3.30115460854e-06 1.02117725323e-05 6.91061792376e-06 +UniRef50_D3E453 0.000281006939596 0.000448582337002 0.000167575397406 +UniRef50_A6LZX3 Integral membrane sensor signal transduction histidine kinase 0.000486333402586 0.000311497818071 -0.000174835584515 +UniRef50_P75955 Inner membrane protein YcfT 0.00241182691576 0.00262680601437 0.00021497909861 +UniRef50_Q47MV7 Glutamate 5 kinase 3.29849662778e-06 2.36970014462e-05 2.03985048184e-05 +UniRef50_S6AZQ2 0.00050005205796 0.000352266447552 -0.000147785610408 +UniRef50_UPI000462853E hypothetical protein, partial 0.000112162495156 0.000367120772478 0.000254958277322 +UniRef50_M4U374 5.57805457311e-05 3.0362871688e-05 -2.54176740431e-05 +UniRef50_A0A016RSJ2 1.19382925661e-05 4.65045140085e-06 -7.28784116525e-06 +UniRef50_C4LD11 Lipoprotein signal peptidase 1.52633460013e-05 4.59392997355e-05 3.06759537342e-05 +UniRef50_UPI00034B23A9 short chain dehydrogenase 1.00200318349e-05 3.88574995336e-05 2.88374676987e-05 +UniRef50_Q5FKL1 ABC transporter permease protein 0.00547395882956 0.00459091603716 -0.0008830427924 +UniRef50_N9UUM3 0.000106368692312 3.63701127046e-05 -6.99985796074e-05 +UniRef50_UPI0003B52215 DNA binding protein 4.42376714408e-06 1.68870941609e-05 1.24633270168e-05 +UniRef50_UPI00035FA7D7 hypothetical protein, partial 0.000647238695935 0.000137016865797 -0.000510221830138 +UniRef50_Q62EE6 0.000208058327649 0.000133244660059 -7.481366759e-05 +UniRef50_A3U2E2 Conserved hypothetical membrane transport protein 2.41536815043e-05 5.09473578659e-06 -1.90589457177e-05 +UniRef50_W4YD04 4.03457436118e-05 3.43988386493e-06 -3.69058597469e-05 +UniRef50_P24058 Argininosuccinate lyase 1.08917128847e-05 1.51956498948e-05 4.3039370101e-06 +UniRef50_M1LMT5 0.000200183947922 0.000609794605777 0.000409610657855 +UniRef50_A6M2W5 PTS system, glucose subfamily, IIA subunit 0.000342317683734 0.00147436408563 0.0011320464019 +UniRef50_Q48KY0 ABC transporter, periplasmic substrate binding protein 0.000733202216425 0.00107055885817 0.000337356641745 +UniRef50_E3NWX2 1.35906150107e-05 2.00419922195e-05 6.4513772088e-06 +UniRef50_L7WTB5 0.0126853930021 0.00409309231191 -0.00859230069019 +UniRef50_UPI0003F8C100 hypothetical protein 2.50796875593e-05 8.60872697421e-05 6.10075821828e-05 +UniRef50_V1V9W3 CRISPR associated helicase Cas3 4.60609109534e-05 1.8084069521e-05 -2.79768414324e-05 +UniRef50_V9T452 Metabolite transporter 0.000453319643236 0.000691796571308 0.000238476928072 +UniRef50_UPI000365F8BA hypothetical protein 3.65426245409e-05 2.21009095989e-05 -1.4441714942e-05 +UniRef50_UPI0003752AFD hypothetical protein 4.11786268328e-06 3.70246650888e-06 -4.153961744e-07 +UniRef50_UPI00037D7BC7 hypothetical protein 8.26747672476e-06 1.01294357838e-05 1.86195905904e-06 +UniRef50_R7PV18 0.00254528818971 0.00153425705328 -0.00101103113643 +UniRef50_B2I366 AraC type DNA binding domain containing protein 0.000174224302552 0.0035624932681 0.00338826896555 +UniRef50_D9UQS5 Predicted protein 0.000153704938436 0.00288204546397 0.00272834052553 +UniRef50_A0A013KTF4 RND transporter, hydrophobe amphiphile efflux 1 family protein 0.000190155436503 0.00424562984796 0.00405547441146 +UniRef50_Q8CNB4 Suppressor protein suhB 0.0205363734508 0.00387997249331 -0.0166564009575 +UniRef50_W1JGD0 Chromosome partitioning protein ParA 3.67464134888e-05 5.19238706528e-05 1.5177457164e-05 +UniRef50_A9W1N1 NADH quinone oxidoreductase subunit C 2.29895916313e-05 1.9370559757e-05 -3.6190318743e-06 +UniRef50_G2KMP2 7.48751664942e-05 1.14823989632e-05 -6.3392767531e-05 +UniRef50_B4RBF0 2.81039508838e-05 1.18978572786e-05 -1.62060936052e-05 +UniRef50_U7I221 1.00178593389e-05 0.00023545333027 0.000225435470931 +UniRef50_F7YAM4 40 residue YVTN family beta propeller repeat protein 8.35260083823e-06 1.37899573565e-05 5.43735651827e-06 +UniRef50_F3U494 0.00211103411265 0.000419881571359 -0.00169115254129 +UniRef50_A1WXI4 PUCC protein 6.21373522621e-05 1.37220155077e-05 -4.84153367544e-05 +UniRef50_W7Q5R4 0.000107365377118 5.74125272899e-05 -4.99528498281e-05 +UniRef50_Q6A6L3 0.000422202443506 0.00268888563384 0.00226668319033 +UniRef50_S6D6P3 WGR domain containing protein 1.27499681222e-05 3.15993610435e-05 1.88493929213e-05 +UniRef50_U5UEG4 0.0019194202823 0.000735228311697 -0.0011841919706 +UniRef50_J9P5M7 0.000136814236102 3.27126918155e-05 -0.000104101544287 +UniRef50_Q99UZ6 UPF0637 protein SA0957 0.0127713706438 0.00134852561107 -0.0114228450327 +UniRef50_UPI000255A9F7 hypothetical protein 8.83748543371e-06 5.41006802445e-06 -3.42741740926e-06 +UniRef50_UPI0003643826 hypothetical protein 0.000158139427465 0.000189548075737 3.1408648272e-05 +UniRef50_J2ESL9 4.93930104175e-05 0.000275731505796 0.000226338495379 +UniRef50_A1SQR8 MATE efflux family protein 8.47014185883e-05 0.0025880742242 0.00250337280561 +UniRef50_UPI0003B7A75E 30S ribosomal protein S3 0.000778606674529 0.0010117449914 0.000233138316871 +UniRef50_Q49XH5 Anthranilate phosphoribosyltransferase 0.0135250915562 0.00226916526297 -0.0112559262932 +UniRef50_L7VTP9 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.0007691484078 0.00319424384842 0.00242509544062 +UniRef50_UPI00016AD049 hypothetical protein 5.83768591014e-05 0.000117344386165 5.89675270636e-05 +UniRef50_UPI0003B3A739 LysR family transcriptional regulator 5.86357539184e-06 7.64784512391e-06 1.78426973207e-06 +UniRef50_UPI000361DB5D hypothetical protein 3.48987221364e-05 5.29513615232e-05 1.80526393868e-05 +UniRef50_N2K746 Carbon nitrogen hydrolase family protein 0.00212394063714 0.00173001133681 -0.00039392930033 +UniRef50_K9ZW90 ABC type dipeptide transport system, periplasmic component 0.000274144141253 0.0451789999792 0.0449048558379 +UniRef50_Q9K4A0 Peptide deformylase 4 9.87069931391e-06 4.760157762e-05 3.77308783061e-05 +UniRef50_S6AT93 Cell envelope biogenesis, outer membrane 0.00666171340015 0.00277307897506 -0.00388863442509 +UniRef50_Q1CUW5 UDP 3 O acylglucosamine N acyltransferase 0.00019259489227 0.00265767275438 0.00246507786211 +UniRef50_G0DWZ2 RNA polymerase sigma factor 0.000471006785139 0.00430168989131 0.00383068310617 +UniRef50_UPI000262CE6F hypothetical protein 6.87885144361e-06 2.59154683061e-05 1.90366168625e-05 +UniRef50_UPI0003B63E94 ABC transporter ATP binding protein, partial 5.52649090923e-06 1.49318050023e-05 9.40531409307e-06 +UniRef50_H7CIC3 Transposase 1.98455668339e-05 0.000881542403566 0.000861696836732 +UniRef50_G5N518 Fatty acid oxidation complex subunit alpha 0.000318128658783 0.000163766609902 -0.000154362048881 +UniRef50_Q81E30 Isoleucine tRNA ligase 2 1.01306427643e-05 0.0010777983624 0.00106766771964 +UniRef50_A0M554 Bifunctional protein FolD 5.50032623799e-06 0.00348817449062 0.00348267416438 +UniRef50_Q9HY42 0.000654521766087 0.000246782762008 -0.000407739004079 +UniRef50_UPI00046FBD60 zinc ABC transporter permease 8.90258036447e-05 7.00717408614e-05 -1.89540627833e-05 +UniRef50_UPI000454835D PREDICTED 0.000115709365715 0.00013398452951 1.8275163795e-05 +UniRef50_D4HAD9 Transcriptional regulator, GntR family 0.000201147063333 0.00825319342539 0.00805204636206 +UniRef50_K8BR71 1.52221549152e-05 0.000152729341708 0.000137507186793 +UniRef50_F0IYA9 Fis family transcriptional regulator 0.000750339080106 0.000100107357691 -0.000650231722415 +UniRef50_UPI00035D0C93 hypothetical protein 3.4565128931e-06 0.000698399980968 0.000694943468075 +UniRef50_UPI0002555FCE imidazole glycerol phosphate dehydratase histidinol phosphatase, partial 3.03751079853e-05 1.07909440812e-05 -1.95841639041e-05 +UniRef50_A8LPP5 Fasciclin domain protein 0.000136141074323 2.32521827794e-05 -0.000112888891544 +UniRef50_H0HUE0 9.3042639515e-05 0.000118906037747 2.5863398232e-05 +UniRef50_Q3JW66 6.12099358892e-05 0.000175555559619 0.00011434562373 +UniRef50_X9N9G2 2.41080840469e-05 2.4213514173e-05 1.054301261e-07 +UniRef50_R4ZLZ8 CRISPR associated protein, Csd1 family 0.00407796947547 0.00358852439641 -0.00048944507906 +UniRef50_T2G5V0 Alcohol dehydrogenase 0.00179821987898 0.0011505845657 -0.00064763531328 +UniRef50_R4K4U3 Acetyltransferase 0.000214075229968 0.0041299634809 0.00391588825093 +UniRef50_R5SMM9 Ribose 5 phosphate isomerase B 0.000292624797564 0.00269832289913 0.00240569810157 +UniRef50_P07767 Staphylocoagulase 0.000891101614873 0.000279670721547 -0.000611430893326 +UniRef50_I2DEZ6 0.000309414744966 0.010244307799 0.00993489305403 +UniRef50_Q08YM3 8.06019904975e-05 0.000141484359108 6.08823686105e-05 +UniRef50_P23686 S adenosylmethionine synthase 1 2.68634781478e-05 0.000143100081182 0.000116236603034 +UniRef50_Q2FUW5 Accessory Sec system protein Asp3 0.0180184349975 0.00118715602158 -0.0168312789759 +UniRef50_R9SJT9 GTP binding protein 0.0038798835156 0.000262503737955 -0.00361737977765 +UniRef50_D4HAU1 Protoporphyrinogen oxidase 0.000120859975083 0.00581960564746 0.00569874567238 +UniRef50_UPI00045FEC12 BACTERIOPHYTOCHROME 9.19910082896e-05 0.000136254213057 4.42632047674e-05 +UniRef50_L7U2C9 Acetyltransferase 0.00079031779135 0.00629367813348 0.00550336034213 +UniRef50_E2ZQ75 Transcriptional regulator MvfR 0.000471070856723 0.00031754484429 -0.000153526012433 +UniRef50_F6CTL5 6.8079414737e-05 4.38958042668e-05 -2.41836104702e-05 +UniRef50_UPI00037028AC hypothetical protein 1.41825565881e-06 2.05269676918e-06 6.3444111037e-07 +UniRef50_A3IGB3 0.000106128809742 0.000130786162504 2.4657352762e-05 +UniRef50_W0BIN9 Type F conjugative transfer system protein TraU 7.72731483335e-05 6.17944928903e-06 -7.10936990445e-05 +UniRef50_I3U834 Class I fumarate hydratase 0.0124444202278 0.00253967620413 -0.00990474402367 +UniRef50_B0T5G6 7.13552987952e-05 2.18760238842e-05 -4.9479274911e-05 +UniRef50_A3RI32 InlD 8.96351454047e-06 0.00186182077585 0.00185285726131 +UniRef50_C8VZF1 0.000165648127513 0.00110664458971 0.000940996462197 +UniRef50_S6GJT1 Transposase IS4 family protein 8.00135581017e-05 2.26016569499e-05 -5.74119011518e-05 +UniRef50_A1VL02 3.79569549192e-06 1.37483009212e-05 9.95260542928e-06 +UniRef50_A3PSC3 Exopolysaccharide synthesis, ExoD 0.0179426048629 0.000307088428274 -0.0176355164346 +UniRef50_R9YTG8 2 dehydropantoate 2 reductase 0.0120323072358 0.0025850160321 -0.0094472912037 +UniRef50_A0A017HHJ1 GTA NlpC P60 family peptidase 2.17264650816e-06 1.60954727843e-05 1.39228262761e-05 +UniRef50_P0CN05 Sulfate adenylyltransferase 8.66673763086e-05 4.8258784417e-05 -3.84085918916e-05 +UniRef50_H3XP79 Polysaccharide lyase family 8, N terminal alpha helical domain protein 0.00148021225853 0.000147904860699 -0.00133230739783 +UniRef50_UPI000364E3EA hypothetical protein 3.13583077314e-06 5.34240374384e-05 5.02882066653e-05 +UniRef50_A4WQ10 0.00957533188303 0.00482204096459 -0.00475329091844 +UniRef50_J9CA10 Heat shock protein 70 9.34312941969e-05 2.73159324097e-05 -6.61153617872e-05 +UniRef50_UPI000360AA50 hypothetical protein 0.00042500984386 0.000129809540745 -0.000295200303115 +UniRef50_UPI00036E022C hypothetical protein 4.40548697361e-06 1.61974918006e-05 1.1792004827e-05 +UniRef50_F0MD69 DNA polymerase III, subunits gamma and tau 6.85507243663e-05 0.00200319236008 0.00193464163571 +UniRef50_B1MWT1 ABC type dipeptide oligopeptide nickel transport system, permease component 0.00498890056194 0.00176785652579 -0.00322104403615 +UniRef50_A3PM79 Serine type D Ala D Ala carboxypeptidase 0.00243249388246 0.00126905425843 -0.00116343962403 +UniRef50_UPI00045E67CF glycine cleavage system protein T 2.88806059134e-05 7.08638166951e-05 4.19832107817e-05 +UniRef50_P77395 0.00275595423458 0.000674553615773 -0.00208140061881 +UniRef50_P77396 0.00518909163125 0.000209692335056 -0.00497939929619 +UniRef50_Q9AAI4 Nitrate transporter, NarK NasA family 0.000187961899644 0.000149653735742 -3.8308163902e-05 +UniRef50_P77393 0.00303542744177 0.000454333392607 -0.00258109404916 +UniRef50_UPI0003B386AE riboflavin biosynthesis protein RibD 3.95619473929e-06 2.17629826385e-05 1.78067878992e-05 +UniRef50_UPI00046F45E9 acetolactate synthase, partial 1.26145973697e-05 1.29499774205e-05 3.353800508e-07 +UniRef50_E0RYK6 0.000477064205795 0.000366095089089 -0.000110969116706 +UniRef50_Q1D2V0 0.000229270690754 6.96554779793e-05 -0.000159615212775 +UniRef50_A6LYQ9 MgtE intracellular region 0.000778783445918 0.00182375975708 0.00104497631116 +UniRef50_Q9ZJ66 Protein translocase subunit SecD 7.19477742357e-05 0.00430349867376 0.00423155089952 +UniRef50_Q9RY56 0.0012868840529 0.0856974139648 0.0844105299119 +UniRef50_F0Y593 Expressed protein 6.79746678562e-05 0.000203621740952 0.000135647073096 +UniRef50_UPI00016C4E10 L lactate transport 6.40087889592e-06 2.37563049446e-05 1.73554260487e-05 +UniRef50_F7XJ23 Probabable oxidoreductase 0.00152973631894 0.000163610362995 -0.00136612595594 +UniRef50_A5UJA6 FO synthase subunit 2 0.0043849179996 0.000669869052369 -0.00371504894723 +UniRef50_G7M8E1 Methyl accepting chemotaxis sensory transducer 0.000315646709896 0.0010186938379 0.000703047128004 +UniRef50_A7HAH7 0.00122974048291 2.67046014032e-05 -0.00120303588151 +UniRef50_UPI0003C10094 PREDICTED 0.000148208300138 0.000272552474527 0.000124344174389 +UniRef50_X0W6C2 Marine sediment metagenome DNA, contig 1.40198881287e-05 2.29401031479e-05 8.9202150192e-06 +UniRef50_F0L9R1 0.00274742857058 0.000246782762008 -0.00250064580857 +UniRef50_Q3IVS2 DNA RNA helicase, superfamily I 0.0145698263695 0.00561308000246 -0.00895674636704 +UniRef50_L0GGN0 Sortase like acyltransferase 0.00289346571643 0.00218304703237 -0.00071041868406 +UniRef50_K0F249 0.00129513709669 0.000410730566622 -0.000884406530068 +UniRef50_G7M575 Glycosyl transferase family 2 0.000219044094112 0.00125029145194 0.00103124735783 +UniRef50_B5GAK8 0.000105658346524 5.86305601958e-06 -9.97952905044e-05 +UniRef50_P42630 L serine dehydratase TdcG 0.00247132578896 0.00207823377355 -0.00039309201541 +UniRef50_B8CN82 Membrane protein, putative 0.00021151823521 0.00475515729874 0.00454363906353 +UniRef50_UPI00037851B2 Cro Cl family transcriptional regulator 0.000223169118924 2.32010012462e-05 -0.000199968117678 +UniRef50_A0A009R342 SIR2 like domain protein 0.000174934374443 0.00447790858427 0.00430297420983 +UniRef50_B9IYZ4 Holliday junction ATP dependent DNA helicase RuvB 2.26009559294e-05 1.69288290383e-05 -5.6721268911e-06 +UniRef50_K0DBQ7 N acetylmuramidase 9.04519142585e-05 9.87614594499e-05 8.3095451914e-06 +UniRef50_F0YLQ9 Expressed protein 7.70467574157e-05 0.000117269817374 4.02230599583e-05 +UniRef50_R6W776 4.1083078976e-06 1.4152027308e-05 1.00437194104e-05 +UniRef50_Q9Z507 UvrABC system protein A 0.00240516396843 0.00350956576135 0.00110440179292 +UniRef50_Q6Q6S9 Transposase 0.00328366531921 0.00112814533443 -0.00215551998478 +UniRef50_A3PMA4 0.00301625501939 0.000575142650046 -0.00244111236934 +UniRef50_UPI00047EB0D1 hypothetical protein 1.53697446174e-05 2.11723949313e-05 5.8026503139e-06 +UniRef50_UPI00046FEBC7 hypothetical protein, partial 0.000211218215929 3.13933268058e-05 -0.000179824889123 +UniRef50_A0CK68 Chromosome undetermined scaffold_2, whole genome shotgun sequence 5.06454839465e-06 4.77845779698e-06 -2.8609059767e-07 +UniRef50_P0ABG8 Rod shape determining protein RodA 0.00204996373829 0.000390389599975 -0.00165957413832 +UniRef50_P45302 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.67241204059e-05 0.000105627474753 8.89033543471e-05 +UniRef50_E8ZM45 Glycosyl transferase 0.00021502495634 0.000651366546483 0.000436341590143 +UniRef50_A7FBG3 0.000220752040266 0.00518396144049 0.00496320940022 +UniRef50_UPI00036C2B1F hypothetical protein 1.89413571635e-05 7.995280597e-06 -1.09460765665e-05 +UniRef50_A5CER5 UDP N acetylglucosamine 1 carboxyvinyltransferase 4.26516018867e-06 2.81389213817e-05 2.3873761193e-05 +UniRef50_A7FBG6 0.000283824051773 0.0165990338495 0.0163152097977 +UniRef50_W5X953 7.5461739983e-06 2.20288306643e-05 1.4482656666e-05 +UniRef50_P64591 Inner membrane protein YhaH 0.000309414744966 0.000509166733097 0.000199751988131 +UniRef50_UPI000362EFC5 hypothetical protein 0.00045758375803 0.000129576420532 -0.000328007337498 +UniRef50_P65337 4 alpha glucanotransferase 0.000464388236668 0.0032671639809 0.00280277574423 +UniRef50_P57495 2 C methyl D erythritol 4 phosphate cytidylyltransferase 4.75384970703e-06 9.78780420531e-06 5.03395449828e-06 +UniRef50_A3QD67 Putative phosphoenolpyruvate synthase regulatory protein 4.8070327858e-05 4.1351098822e-05 -6.719229036e-06 +UniRef50_UPI0003825FE8 hypothetical protein 5.67729384766e-06 1.31512163646e-05 7.47392251694e-06 +UniRef50_UPI00042AFCA9 3 deoxy d arabino heptulosonate 7 phosphate synthase isoform 2 8.93999551072e-05 7.270313004e-06 -8.21296421032e-05 +UniRef50_B9QHN7 Fop carboxy terminal duplication domain protein 1.24604536009e-05 1.39347806097e-05 1.4743270088e-06 +UniRef50_F2K6Q0 0.00034883931899 0.000310219687605 -3.8619631385e-05 +UniRef50_A5UJV7 Predicted ATPase 0.00138651162624 0.000555154535075 -0.000831357091165 +UniRef50_UPI0004638AC0 pseudouridylate synthase 3.79522823976e-06 1.59041197854e-05 1.21088915456e-05 +UniRef50_U3SSX9 0.00109920758824 0.00131074944342 0.00021154185518 +UniRef50_B6JNM2 0.000145373294809 0.00143427378236 0.00128890048755 +UniRef50_UPI0003B66BEF hypothetical protein 2.80925328084e-06 7.10154014485e-06 4.29228686401e-06 +UniRef50_UPI00016A3D53 hypothetical protein 2.05957893886e-05 0.00011257307694 9.19772875514e-05 +UniRef50_L7ZK34 4.21954090877e-06 4.65013189178e-06 4.3059098301e-07 +UniRef50_UPI00016C4097 N acetylglucosamine 6 phosphate deacetylase 3.90915292231e-06 4.34025037695e-05 3.94933508472e-05 +UniRef50_W7WGN1 Conjugal transfer pilus assembly protein TraU 4.34282615706e-05 2.09811551215e-05 -2.24471064491e-05 +UniRef50_X1K791 Marine sediment metagenome DNA, contig 6.95458895387e-05 4.07912186597e-05 -2.8754670879e-05 +UniRef50_F5M3F1 0.0140979278469 0.00176340253976 -0.0123345253071 +UniRef50_Q28TC8 Poly hydroxyalkanoic acid synthase class I 0.0128254359661 0.0025555499169 -0.0102698860492 +UniRef50_K4RP34 2.42331580952e-05 3.99913894867e-05 1.57582313915e-05 +UniRef50_K0CEM4 1.78619122722e-05 2.99332135945e-05 1.20713013223e-05 +UniRef50_G3JJ51 0.00036464516813 0.000124316695035 -0.000240328473095 +UniRef50_B0VMS2 Glucose 6 phosphate isomerase 0.000140315632812 0.00541471397371 0.0052743983409 +UniRef50_M7N0E8 1.07805409696e-05 0.000175789264417 0.000165008723447 +UniRef50_A1AHM5 Protein CbrA 0.00270850118131 0.00103644776956 -0.00167205341175 +UniRef50_U5US29 Sugar binding domain containing protein 0.0238283979351 0.00430065906079 -0.0195277388743 +UniRef50_F9Y8V6 Sugar ABC transporter, permease protein 0.00499629151528 0.000561743921953 -0.00443454759333 +UniRef50_K4SRD4 Dipeptide transport system permease protein DppB 0.00129624045077 0.00057177546971 -0.00072446498106 +UniRef50_Q9CGD4 Spermidine putrescine import ATP binding protein PotA 0.0220717240045 0.0117986208112 -0.0102731031933 +UniRef50_R7NLL0 DNA gyrase subunit A 0.000670232166133 0.00173053561961 0.00106030345348 +UniRef50_UPI00047067CD glucosamine 6 phosphate deaminase, partial 8.22353266728e-06 3.18872935021e-05 2.36637608348e-05 +UniRef50_V7CWH6 3.02727971801e-05 0.00109113158883 0.00106085879165 +UniRef50_UPI0003B4DB15 cytidylate kinase, partial 3.79102273253e-06 2.15961074492e-05 1.78050847167e-05 +UniRef50_UPI0003671825 hypothetical protein 2.71097325595e-06 1.19476356439e-05 9.23666238795e-06 +UniRef50_B2TRK3 0.000327307629567 0.00128035550184 0.000953047872273 +UniRef50_Q9PJJ6 Uracil phosphoribosyltransferase 4.28211371521e-05 8.4011087215e-05 4.11899500629e-05 +UniRef50_Q9KPM0 Purine nucleoside phosphorylase DeoD type 1 4.48666169995e-05 0.000199162292457 0.000154295675458 +UniRef50_Q9T074 Phosphoenolpyruvate carboxykinase [ATP] 2.27931273648e-05 0.000100344595358 7.75514679932e-05 +UniRef50_D7FYR4 4.48323268177e-06 2.03353743523e-05 1.58521416705e-05 +UniRef50_N0AZY0 O succinylhomoserine sulfhydrylase 0.00675324090328 0.00119881111659 -0.00555442978669 +UniRef50_U3SUT1 0.00109731845795 0.000475040276462 -0.000622278181488 +UniRef50_Q5WLC5 DNA topology modulation protein 7.81215853437e-06 5.113833143e-05 4.33261728956e-05 +UniRef50_B8H4F1 30S ribosomal protein S5 0.000450396837036 0.00302886435331 0.00257846751627 +UniRef50_G7MCN9 Multi copper polyphenol oxidoreductase, laccase 0.000684347708219 0.00417265236202 0.0034883046538 +UniRef50_Q4L5J1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0219691222633 0.00404841343878 -0.0179207088245 +UniRef50_H2A5L6 Methionine aminopeptidase 0.00767421224142 0.00563499588463 -0.00203921635679 +UniRef50_B2J1L7 GTP cyclohydrolase 1 4.8682242234e-05 7.07227873637e-05 2.20405451297e-05 +UniRef50_A3XAI3 YjeF family protein 0.000140951311241 0.000142949085815 1.997774574e-06 +UniRef50_B7H075 PAP2 superfamily protein 0.000249990721098 0.00695879246941 0.00670880174831 +UniRef50_Q2FHE2 DNA mismatch repair protein MutL 0.00952032784163 0.00216783625253 -0.0073524915891 +UniRef50_UPI000464DC75 single stranded DNA binding protein 3.14535636632e-05 1.98411718515e-05 -1.16123918117e-05 +UniRef50_Q3JR54 TGS domain protein 0.00010987338872 5.89633641674e-05 -5.09100245526e-05 +UniRef50_UPI0003AE8A89 PREDICTED 3.2236419172e-05 5.22552828144e-05 2.00188636424e-05 +UniRef50_Q0E488 Os02g0130900 protein 2.47839761942e-05 0.000115159096259 9.03751200648e-05 +UniRef50_A6QIU2 0.0133631829497 0.00660254714741 -0.00676063580229 +UniRef50_Q81LI6 Histidine tRNA ligase 2 6.05683659156e-06 0.000157923371754 0.000151866535162 +UniRef50_W8S4A4 Protein YicC 0.000136770285816 0.000306027673785 0.000169257387969 +UniRef50_V5SV57 0.000514559926055 0.000233302174728 -0.000281257751327 +UniRef50_Q8LJZ2 7.40195490323e-05 4.54619261406e-06 -6.94733564182e-05 +UniRef50_S9U807 Cysteine peptidase, Clan CA, family C2 3.81383318105e-05 0.000113510584958 7.53722531475e-05 +UniRef50_B9KLW3 Methyltransferase type 11 0.000181193274649 0.00033432079833 0.000153127523681 +UniRef50_Q8CR86 0.0130258184829 0.00416449475046 -0.00886132373244 +UniRef50_Q99TF2 Acetate kinase 0.0110429406593 0.00252228914876 -0.00852065151054 +UniRef50_C9X377 Transferrin binding protein like lipoprotein 0.000235770934863 0.00332350705495 0.00308773612009 +UniRef50_I8D2T2 3.91736585175e-05 3.48437649235e-05 -4.329893594e-06 +UniRef50_H4F9I1 0.00020409186668 0.00028441761388 8.03257472e-05 +UniRef50_D3QE86 0.0149390681443 0.00380037664747 -0.0111386914968 +UniRef50_M0P490 8.47914995835e-06 3.91037367168e-05 3.06245867584e-05 +UniRef50_Q4L8R9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0371536610459 0.00463115467488 -0.032522506371 +UniRef50_UPI00037720B7 hypothetical protein 4.27844974146e-06 5.11636622322e-06 8.3791648176e-07 +UniRef50_R2QE79 6.07454758073e-05 2.14500213981e-05 -3.92954544092e-05 +UniRef50_Q3J608 0.00241180997245 0.00113249892452 -0.00127931104793 +UniRef50_Q2FF48 Potassium transporting ATPase A chain 0.0121757605997 0.00308036059727 -0.00909540000243 +UniRef50_G8VKL1 Aminopeptidase 0.000228443951264 0.00501687071736 0.0047884267661 +UniRef50_T3IE94 Lantibiotic protection ABC transporter, ATP binding subunit 0.00491760168657 0.00459536472765 -0.00032223695892 +UniRef50_UPI0003C1083C 1.15636922085e-05 7.81096278804e-05 6.65459356719e-05 +UniRef50_UPI0004777ACC cytochrome C oxidase assembly protein 1.24873401575e-05 3.43151508444e-05 2.18278106869e-05 +UniRef50_R5XYA5 1.88780176796e-05 0.000422464464533 0.000403586446853 +UniRef50_D9SWT5 Peptidase S8 and S53 subtilisin kexin sedolisin 0.000784146366399 0.0028236090099 0.0020394626435 +UniRef50_UPI00028A379D elongation factor Ts 1.02046940209e-05 7.60011162895e-05 6.57964222686e-05 +UniRef50_J9FJB0 Saccharopine dehydrogenase 0.000231153987785 0.00306225818797 0.00283110420018 +UniRef50_U3K301 1.32199103878e-05 1.25374028727e-05 -6.825075151e-07 +UniRef50_I4EDU8 0.000156642173136 8.08576556341e-05 -7.57845175019e-05 +UniRef50_UPI0003B69687 TetR family transcriptional regulator 0.000209714438257 1.16432028074e-05 -0.00019807123545 +UniRef50_D0W128 2.25521382485e-05 0.000239127205183 0.000216575066934 +UniRef50_UPI0001A43259 putative phosphotransferase 6.89634486948e-05 0.000192792871721 0.000123829423026 +UniRef50_I6GVM8 Sulfite reductase [NADPH] flavoprotein, alpha component 0.0021950314548 0.00142451398855 -0.00077051746625 +UniRef50_UPI00037830BD hypothetical protein 1.5906559715e-05 7.43200530196e-05 5.84134933046e-05 +UniRef50_R6E4P6 Serine type site specific recombinase 1.3712473388e-05 0.00129618864504 0.00128247617165 +UniRef50_UPI00035FAB77 hypothetical protein 2.31886157963e-05 1.55446743371e-05 -7.6439414592e-06 +UniRef50_UPI000465FD2A serine hydroxymethyltransferase, partial 6.53710428049e-06 2.2336452372e-05 1.57993480915e-05 +UniRef50_A7HI44 LigA 0.000420840921965 0.000494900115158 7.4059193193e-05 +UniRef50_Q92BC5 Probable thiol peroxidase 0.0035057383495 0.0115952506138 0.0080895122643 +UniRef50_B8ISV4 Trans aconitate 2 methyltransferase 1.14950461625e-05 1.58143801086e-05 4.3193339461e-06 +UniRef50_B8CXG6 Probable transcriptional regulatory protein Hore_12350 0.000520188784642 0.00213255541097 0.00161236662633 +UniRef50_A5WCE7 ppGpp synthetase I, SpoT RelA 0.000282235933671 0.00852296119669 0.00824072526302 +UniRef50_P34439 Probable 3 hydroxyacyl CoA dehydrogenase F54C8.1 4.79699846193e-06 0.000203934005924 0.000199137007462 +UniRef50_Q7UA36 ATP dependent Clp protease proteolytic subunit 1 0.0151744662169 0.00662953992431 -0.00854492629259 +UniRef50_Q49X60 Riboflavin kinase FAD synthase 0.0195883003266 0.00626948808107 -0.0133188122455 +UniRef50_Q7N8K6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 3.9274915163e-05 0.000319303263761 0.000280028348598 +UniRef50_Q8CUA2 Mobilization protein 0.0218652473694 0.00875040557276 -0.0131148417966 +UniRef50_P95468 Aromatic amino acid aminotransferase 0.00274196332831 0.000237520138222 -0.00250444319009 +UniRef50_C0R0E0 Polyribonucleotide nucleotidyltransferase 7.64798160711e-06 3.80371496121e-06 -3.8442666459e-06 +UniRef50_UPI0003A14A99 MULTISPECIES 7.09286965793e-06 7.1966078548e-06 1.0373819687e-07 +UniRef50_X4ZKX4 Short chain dehydrogenase family protein 2.82573100517e-05 0.000146495961606 0.000118238651554 +UniRef50_B9K138 Aliphatic sulfonates import ATP binding protein SsuB 0.000143167884525 0.00823110031938 0.00808793243486 +UniRef50_Q8E7Y8 Peptidyl tRNA hydrolase 0.00870714843981 0.00198346027255 -0.00672368816726 +UniRef50_UPI000255A87B molybdopterin guanine dinucleotide biosynthesis protein A 7.28757194439e-06 8.76743166058e-06 1.47985971619e-06 +UniRef50_W5XDK2 PTS family mannose porter, IIC component 0.00491100226207 0.0087842133876 0.00387321112553 +UniRef50_A5ULS3 Phosphoglycolate phosphatase 0.0072767734872 0.000254583366547 -0.00702219012065 +UniRef50_L4FKH2 4.51634131801e-05 5.22527054792e-05 7.0892922991e-06 +UniRef50_K4RIH9 Transporter 8.55330790492e-05 0.00254250391956 0.00245697084051 +UniRef50_UPI000289E54D type III effector Hrp dependent outer protein 5.08948921857e-06 8.36154763084e-06 3.27205841227e-06 +UniRef50_A4WVU5 1.84443091994e-05 5.18069187171e-06 -1.32636173277e-05 +UniRef50_Q8CPJ9 Bifunctional protein PyrR 0.0291188033147 0.0128620895508 -0.0162567137639 +UniRef50_D3SY39 Phosphate ABC transporter permease 0.00992980646005 0.00185358413255 -0.0080762223275 +UniRef50_M4S0Q6 Terminase 6.80381581268e-05 8.51773331828e-06 -5.95204248085e-05 +UniRef50_W7WA58 0.000363623768165 8.16008857599e-05 -0.000282022882405 +UniRef50_UPI0002F5E3FA hypothetical protein 2.85276503042e-05 4.37596678433e-05 1.52320175391e-05 +UniRef50_F0Y592 Expressed protein 9.64991544013e-05 1.60507949224e-05 -8.04483594789e-05 +UniRef50_P38376 Protein translocase subunit SecY 0.000131681158905 0.0135813830618 0.0134497019029 +UniRef50_G7IR91 0.00104465973016 0.00124818201005 0.00020352227989 +UniRef50_Z7M6T4 Metallopeptidase M24 family protein 0.000489060365118 0.00021415374756 -0.000274906617558 +UniRef50_UPI0003814739 hypothetical protein 2.49613338224e-05 1.81011256377e-05 -6.8602081847e-06 +UniRef50_UPI00047A93E4 spermidine putrescine ABC transporter ATP binding protein 3.24504463327e-05 1.49239317408e-05 -1.75265145919e-05 +UniRef50_P45595 Phosphoenolpyruvate protein phosphotransferase 0.00712261071457 0.00764606899859 0.00052345828402 +UniRef50_Y0ZY08 0.00112537936997 0.000932579069031 -0.000192800300939 +UniRef50_A5ULH9 Predicted ATP utilizing enzyme 0.00457451444521 0.000164674742667 -0.00440983970254 +UniRef50_UPI0003F0B3EF PREDICTED 2.72129061617e-06 4.87548917991e-06 2.15419856374e-06 +UniRef50_O27269 5 formaminoimidazole 4 carboxamide 1 D ribofuranosyl 5 monophosphate synthetase 0.00277832014223 0.00198739273996 -0.00079092740227 +UniRef50_UPI00047132A1 nitrogen regulatory protein P II 1 0.00104688960934 0.000444827548547 -0.000602062060793 +UniRef50_M1ZE43 0.000206427806697 0.000142242103311 -6.4185703386e-05 +UniRef50_Q16CU0 0.000124497710774 2.24648628146e-05 -0.000102032847959 +UniRef50_S6T1V4 Dihydrolipoamide acetyltransferase 0.000269977075502 0.000159630651457 -0.000110346424045 +UniRef50_A3U124 Replication protein C 0.000144395785653 3.70473243083e-05 -0.000107348461345 +UniRef50_V4L8B5 2.02828865414e-05 2.39629190012e-05 3.6800324598e-06 +UniRef50_UPI00036FD615 hypothetical protein 0.000316046122464 3.26561663377e-05 -0.000283389956126 +UniRef50_B1HU19 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0127415276859 0.00398495056213 -0.00875657712377 +UniRef50_K1XG94 FeS assembly protein SufB 4.55686335477e-06 2.47627585042e-05 2.02058951494e-05 +UniRef50_UPI000255B9CD GntR family transcriptional regulator 2.47366677286e-05 3.71815409845e-05 1.24448732559e-05 +UniRef50_UPI0004014E85 hypothetical protein 0.000113418449329 0.000136921144716 2.3502695387e-05 +UniRef50_UPI0003780E79 hypothetical protein 1.66172407105e-05 4.69825289602e-05 3.03652882497e-05 +UniRef50_R4YWZ2 0.000171751546086 0.000236883181481 6.5131635395e-05 +UniRef50_G4LKC9 Large exoprotein 0.000633462824039 0.000509882369332 -0.000123580454707 +UniRef50_Q45NQ1 Putative nitrate reductase beta chain 4.33214401288e-05 5.23194922086e-05 8.9980520798e-06 +UniRef50_UPI0003B3B541 diguanylate cyclase 1.21098794376e-05 6.74555408015e-05 5.53456613639e-05 +UniRef50_Q9K068 Tyrosine recombinase XerD 0.000129276023577 0.00720445303334 0.00707517700976 +UniRef50_F8H7Y3 Group II intron encoding maturase 6.4897322048e-06 1.34226116253e-05 6.9328794205e-06 +UniRef50_UPI00028A2BD8 hypothetical protein 0.000132007371169 3.55946220344e-05 -9.64127491346e-05 +UniRef50_A1WTR8 Electron transport complex subunit D 0.00303474203949 0.000788979475443 -0.00224576256405 +UniRef50_Q9ZBH3 UPF0264 protein SCO6440 0.00504759804874 0.00155008753881 -0.00349751050993 +UniRef50_Q9ZA63 3.36284749287e-05 0.0013595067137 0.00132587823877 +UniRef50_F2SDC0 Phosphoenolpyruvate carboxykinase AcuF 3.797216768e-06 0.000128243407336 0.000124446190568 +UniRef50_UPI000467C040 glycine betaine ABC transporter ATP binding protein 1.46720750883e-05 8.17481255838e-06 -6.49726252992e-06 +UniRef50_B2U2H8 Aldehyde ferredoxin oxidoreductase 0.00176280371618 0.000708755990927 -0.00105404772525 +UniRef50_UPI0004232642 polynucleotide phosphorylase 6.4225493511e-06 7.04006434985e-06 6.1751499875e-07 +UniRef50_P68893 Transcription termination antitermination protein NusG 0.00253920995688 0.00416391836106 0.00162470840418 +UniRef50_W5X8W1 Short chain dehydrogenase reductase SDR 8.15588739702e-06 1.93069870244e-05 1.11510996274e-05 +UniRef50_F9DQX8 Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein 3.59962830256e-05 2.27894610807e-05 -1.32068219449e-05 +UniRef50_Q2IIV4 Histidine ammonia lyase 4.24788743016e-06 0.000135289036428 0.000131041148998 +UniRef50_Q03QA4 S adenosylmethionine synthase 5.37626076578e-05 0.000524094490389 0.000470331882731 +UniRef50_P54901 Stationary phase inducible protein CsiE 0.00306428870178 0.00129228986543 -0.00177199883635 +UniRef50_UPI0004785809 hypothetical protein 4.83857648517e-05 3.69019282176e-05 -1.14838366341e-05 +UniRef50_P39912 Protein AroA 0.0144967239422 0.00381752784746 -0.0106791960947 +UniRef50_Q8RBK3 Aspartate ammonia lyase 0.000204290380606 0.000710844217325 0.000506553836719 +UniRef50_Q9I1W4 Alpha 1,4 glucan 0.000547145854924 0.000114242439148 -0.000432903415776 +UniRef50_U3SW26 LysR family transcriptional regulator 0.00620858638015 0.0014462985252 -0.00476228785495 +UniRef50_G7TAD9 D mannonate dehydratase 0.00143693770769 0.000474521661606 -0.000962416046084 +UniRef50_Q60356 0.0029049157066 0.000754154399494 -0.00215076130711 +UniRef50_UPI00016A34C2 riboflavin biosynthesis protein RibD, partial 0.000232243632318 0.000259442957549 2.7199325231e-05 +UniRef50_W1IMF3 0.0001074532841 0.000875224785573 0.000767771501473 +UniRef50_C5E0T6 ZYRO0G15466p 0.000183245625651 0.00743816864834 0.00725492302269 +UniRef50_F8H0W5 Cbb3 type cytochrome c oxidase subunit I 0.00346178947111 0.00187543937931 -0.0015863500918 +UniRef50_P46340 Probable ABC transporter permease protein YqgI 0.00552910019028 0.00584788196858 0.0003187817783 +UniRef50_UPI00046FE6B9 hypothetical protein 4.04509623426e-06 2.93432378485e-06 -1.11077244941e-06 +UniRef50_E1SCP3 MFS citrate proton symporter 0.00175413040368 0.000781799345993 -0.000972331057687 +UniRef50_UPI0003B6BBA6 glyoxalase 2.84206316335e-05 2.20377643726e-05 -6.3828672609e-06 +UniRef50_UPI00046F677B hypothetical protein 2.11381125353e-05 2.10479716719e-05 -9.01408634e-08 +UniRef50_N5H245 0.000370335015456 6.65102731009e-05 -0.000303824742355 +UniRef50_I4CUW0 8.8953698268e-05 3.87665396731e-05 -5.01871585949e-05 +UniRef50_Q1LT01 Hydroxyacylglutathione hydrolase 0.00234897712933 0.00101547804472 -0.00133349908461 +UniRef50_UPI0002B4BA19 PREDICTED 0.000110690678879 8.30296091562e-05 -2.76610697228e-05 +UniRef50_W8F1J2 3 hydroxybutyryl CoA dehydratase 4.97623487979e-05 1.98369673094e-05 -2.99253814885e-05 +UniRef50_UPI00034525BD hypothetical protein 5.60482751131e-06 1.61557599886e-05 1.05509324773e-05 +UniRef50_R7M168 GTP binding protein typA 1.14037781701e-05 1.61070925693e-05 4.7033143992e-06 +UniRef50_Q0VTE1 Peptide deformylase 0.0056791860911 0.00146845102931 -0.00421073506179 +UniRef50_UPI000466577D hypothetical protein 1.11773476842e-05 8.96983799811e-05 7.85210322969e-05 +UniRef50_A0A017HLF1 Protein YqgE 8.80489980847e-05 0.000169457001208 8.14080031233e-05 +UniRef50_UPI0003347753 1.80412313516e-06 8.43093480092e-06 6.62681166576e-06 +UniRef50_Y4VDJ3 0.000333446211516 0.000708991421239 0.000375545209723 +UniRef50_UPI0004754608 hypothetical protein 9.74406113729e-06 0.00133808077568 0.00132833671454 +UniRef50_UPI0003AD1A5F hypothetical protein 2.83727876173e-06 3.7167996012e-05 3.43307172503e-05 +UniRef50_I7DR67 2.2499228057e-05 2.23680381238e-05 -1.311899332e-07 +UniRef50_Q9WXX0 Ribose import ATP binding protein RbsA 1 0.000101291479085 1.37256263215e-05 -8.75658527635e-05 +UniRef50_Q7DC27 0.0080889854754 0.00047889195437 -0.00761009352103 +UniRef50_Q2NFJ6 Putative methylthioribose 1 phosphate isomerase 0.00277044648956 0.0010492868014 -0.00172115968816 +UniRef50_Q8CQM9 Ribosomal protein serine N acetyltransferase 0.0116905914398 0.00209544252398 -0.00959514891582 +UniRef50_UPI0003342D90 PREDICTED 3.35661875776e-05 1.1019179839e-05 -2.25470077386e-05 +UniRef50_A0A023XMZ3 Type VI secretion protein, ImpJ SciO VasE family 4.03206692032e-06 5.31217191876e-06 1.28010499844e-06 +UniRef50_D4DRQ8 0.000182578240891 0.00106107841111 0.000878500170219 +UniRef50_UPI0004664E29 hypothetical protein 7.73089215029e-06 8.43013971386e-06 6.9924756357e-07 +UniRef50_P74741 Bifunctional purine biosynthesis protein PurH 0.00742689055338 0.00241182707523 -0.00501506347815 +UniRef50_P50199 Gluconate 5 dehydrogenase 0.0033244252075 0.00103736999352 -0.00228705521398 +UniRef50_Q5HPR6 Ribonuclease J 2 0.0216662235562 0.00699340715506 -0.0146728164011 +UniRef50_D3EHQ7 ABC transporter related protein 0.0116195812861 0.0053760478519 -0.0062435334342 +UniRef50_R8BTP6 1.32414545965e-05 1.84136781362e-05 5.1722235397e-06 +UniRef50_Q08YP5 1.9045133743e-05 2.42395671664e-06 -1.66211770264e-05 +UniRef50_A6TKS3 0.00047415615755 0.00134987031606 0.00087571415851 +UniRef50_P76187 Oxidoreductase YdhF 0.00266784689748 0.000617393448592 -0.00205045344889 +UniRef50_UPI0003B3589F ATP synthase subunit B 7.19098695313e-05 6.11393355263e-05 -1.0770534005e-05 +UniRef50_Q9FJP9 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 3, mitochondrial 1.75007358789e-05 6.82334783952e-06 -1.06773880394e-05 +UniRef50_UPI0003B6819C MFS transporter 1.01837021571e-05 9.15367991719e-06 -1.03002223991e-06 +UniRef50_UPI0003B502A9 ABC transporter ATP binding protein 8.66050955711e-05 1.34359606786e-05 -7.31691348925e-05 +UniRef50_R5GI81 1.91121306131e-05 0.0007822918272 0.000763179696587 +UniRef50_E1V871 7.00176116206e-05 3.23688548768e-05 -3.76487567438e-05 +UniRef50_Q67M06 7.21949267093e-06 4.89916358143e-05 4.17721431434e-05 +UniRef50_UPI0003C19124 0.000127359719021 1.38622409633e-05 -0.000113497478058 +UniRef50_A3V0X2 Beta Ig H3 Fasciclin 0.000111007596165 1.83191625327e-05 -9.26884336323e-05 +UniRef50_Q49WG6 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 0.0207265992396 0.00501562261932 -0.0157109766203 +UniRef50_Q0TKF3 Copper transporting P type ATPase 0.00302902176289 0.000710560228815 -0.00231846153408 +UniRef50_UPI000288A457 ectoine utilization protein EutE, partial 0.00054584682315 0.000370784368688 -0.000175062454462 +UniRef50_UPI0003A4755B histidine kinase 1.95451411935e-06 0.000102831524842 0.000100877010723 +UniRef50_G0DU47 Myo inositol catabolism IolH protein 0.000235438246685 0.00557785662113 0.00534241837444 +UniRef50_Q7UQD2 UPF0365 protein RB6389 0.0244102325396 0.0106647313511 -0.0137455011885 +UniRef50_B0KCX0 Phosphotransferase system, lactose cellobiose specific IIB subunit 0.000464122117436 0.00115810472625 0.000693982608814 +UniRef50_G7ZS06 AraC family regulatory protein 0.0116901478072 0.00241100721425 -0.00927914059295 +UniRef50_P21693 ATP dependent RNA helicase DbpA 0.00254536012456 0.000887208417441 -0.00165815170712 +UniRef50_C0LZW6 Cross beta structure silk protein 1 1.10728395821e-06 3.61218661687e-05 3.50145822105e-05 +UniRef50_UPI0003B32CE6 multidrug transporter, partial 1.36319114721e-06 1.19251442764e-05 1.05619531292e-05 +UniRef50_E6MC83 0.0127045230683 0.00242863417382 -0.0102758888945 +UniRef50_UPI000374A1F2 hypothetical protein 7.0842375956e-05 6.27748345763e-05 -8.0675413797e-06 +UniRef50_F0KHS2 ABC1 family protein 9.59710141129e-05 0.00823798252577 0.00814201151166 +UniRef50_P0DMC8 Transcriptional regulatory protein RcsB 0.00177381126783 0.00343606866512 0.00166225739729 +UniRef50_Q5HQ65 0.0024653728858 0.00074998165468 -0.00171539123112 +UniRef50_X3PZA5 AraC family transcriptional regulator 2.219143939e-05 7.6096116791e-05 5.3904677401e-05 +UniRef50_UPI0004434B3D PREDICTED 5.81045080113e-05 9.00361004973e-06 -4.91008979616e-05 +UniRef50_U1R336 0.00898107341212 0.00314301472057 -0.00583805869155 +UniRef50_B9T9L5 0.000189660178773 7.92655588017e-05 -0.000110394619971 +UniRef50_Q9RZ19 0.000100484291618 0.00637578905013 0.00627530475851 +UniRef50_D3E128 0.00346310587719 0.000695547251841 -0.00276755862535 +UniRef50_J9PBA5 3.12860344905e-05 0.000110880380242 7.95943457515e-05 +UniRef50_G8LLE6 6.33484268762e-05 3.30393696901e-05 -3.03090571861e-05 +UniRef50_C0QJ00 Phosphomethylpyrimidine synthase 0.00302753996169 0.00137123869806 -0.00165630126363 +UniRef50_Q7AX67 9.70093629878e-05 0.00400058025321 0.00390357089022 +UniRef50_K0M6S7 0.025064170427 0.00165716908155 -0.0234070013455 +UniRef50_Q3HKJ7 ABC di oligopeptide transporter, periplasmic ligand binding protein 0.016754813031 0.00217750049971 -0.0145773125313 +UniRef50_U5MW97 HD GYP domain protein 0.00035111570859 0.00196486258453 0.00161374687594 +UniRef50_B9KR36 Two component transcriptional regulator, LuxR family 0.0044670858139 0.000342065681693 -0.00412502013221 +UniRef50_UPI00005103EC tetracycline resistance protein 9.64877768565e-05 9.68963457492e-05 4.085688927e-07 +UniRef50_K7EFD4 1.09181530603e-05 7.82500401119e-05 6.73318870516e-05 +UniRef50_Q9JVD1 N anthranilate isomerase 1.03929423388e-05 0.00118273631672 0.00117234337438 +UniRef50_M9VF28 Cobalt precorrin 6x reductase 0.000806121274595 0.00859560470018 0.00778948342559 +UniRef50_H3VSI0 GA module 0.00967442385753 0.00182059788498 -0.00785382597255 +UniRef50_S4X8J4 IS1272 transposase 0.000829227583357 0.00227166696304 0.00144243937968 +UniRef50_G2JKN3 0.000451178472729 0.00176197361923 0.0013107951465 +UniRef50_P25534 2 octaprenyl 6 methoxyphenol hydroxylase 0.00350731782037 0.00164490386176 -0.00186241395861 +UniRef50_P77585 Aminopeptidase YpdE 0.00256261189357 0.0026804732928 0.00011786139923 +UniRef50_Q5FA21 Imidazole glycerol phosphate synthase subunit HisH 0.000191546712075 0.00182891408959 0.00163736737751 +UniRef50_UPI00029AB9CD hypothetical protein 3.89249301608e-07 4.2446591201e-06 3.85540981849e-06 +UniRef50_U5LBL2 MFS transporter 2.32773817474e-05 0.00132462531955 0.0013013479378 +UniRef50_B5F2L4 Elongation factor P 0.00282536402785 0.00102737363235 -0.0017979903955 +UniRef50_S3BX82 4.69509936411e-05 0.000110192800452 6.32418068109e-05 +UniRef50_Q9KUY6 Alanine racemase 1 0.00338572327071 0.000523716562709 -0.002862006708 +UniRef50_A6M043 Transcriptional regulator, TetR family 0.000196949211577 0.000298299702217 0.00010135049064 +UniRef50_I6SUR3 Glucan binding protein D 0.00446754818519 0.00129649246414 -0.00317105572105 +UniRef50_A0A010QNG4 DnaJ domain protein 0.000114221874883 8.6486749079e-05 -2.7735125804e-05 +UniRef50_D6X5L6 Predicted protein 0.000179339606614 1.25392137016e-05 -0.000166800392912 +UniRef50_A4WVP5 Ribonuclease 3 0.000616646087665 0.000545728217174 -7.0917870491e-05 +UniRef50_UPI00045416B9 PREDICTED 3.2850053729e-05 3.37213561042e-05 8.713023752e-07 +UniRef50_UPI000380E1DF hypothetical protein 1.88403687521e-05 2.15154016462e-05 2.6750328941e-06 +UniRef50_P50923 Fructose bisphosphate aldolase 2 0.000211428874798 0.000315757315898 0.0001043284411 +UniRef50_Q4L800 Thymidine kinase 4.87080161507e-05 3.36217123202e-05 -1.50863038305e-05 +UniRef50_UPI00037BF977 MULTISPECIES 1.40931052054e-05 1.44150948679e-05 3.219896625e-07 +UniRef50_E1ZPF1 1.40696414917e-05 0.000124793257578 0.000110723616086 +UniRef50_D6ZZT0 0.000154802253334 3.63134704231e-05 -0.000118488782911 +UniRef50_UPI0003671796 hypothetical protein 0.000124184803828 8.45522069762e-05 -3.96325968518e-05 +UniRef50_P76237 Putative diguanylate cyclase YeaJ 0.00343423532584 0.001016608184 -0.00241762714184 +UniRef50_UPI00031C8415 hypothetical protein 3.2750058891e-05 1.81598822747e-06 -3.09340706635e-05 +UniRef50_UPI00036D4271 hypothetical protein 5.98224001006e-05 9.71176129956e-06 -5.0110638801e-05 +UniRef50_S5RLF1 MarR family transcriptional regulator 0.00109070545513 0.00246767410024 0.00137696864511 +UniRef50_E2Q1G7 Transcriptional regulator, LysR family 0.000568122725694 0.000592608772976 2.4486047282e-05 +UniRef50_P62421 Phosphoglycerate kinase 1.74719654898e-05 2.53114798946e-05 7.8395144048e-06 +UniRef50_Q46817 Guanine hypoxanthine permease GhxQ 0.00582714921277 0.00145283203827 -0.0043743171745 +UniRef50_P37292 Serine hydroxymethyltransferase, mitochondrial 7.70530386618e-06 2.24582444128e-05 1.47529405466e-05 +UniRef50_UPI0001BF6B4F hypothetical protein SMAC_10997 7.57362920392e-05 0.0014715995772 0.00139586328516 +UniRef50_P0AAK2 Formate hydrogenlyase subunit 2 0.00179951463985 0.00607743906027 0.00427792442042 +UniRef50_Q96343 Myrosinase binding protein related protein 5.96327785188e-06 0.000153895466939 0.000147932189087 +UniRef50_O83217 Elongation factor Tu 0.000918790977924 0.11576946479 0.114850673812 +UniRef50_UPI00046F7098 hypothetical protein 3.37421008915e-05 3.58360387631e-05 2.0939378716e-06 +UniRef50_UPI0003F07DB8 PREDICTED 3.2488642679e-06 8.1231689137e-06 4.8743046458e-06 +UniRef50_Q5HKG0 Conserved domain protein 0.0216113904356 0.00632706735449 -0.0152843230811 +UniRef50_P77625 Sugar phosphatase YfbT 0.00379654687476 0.00144078094161 -0.00235576593315 +UniRef50_A7ZRX6 Uronate isomerase 0.00349205351899 0.000961848082086 -0.0025302054369 +UniRef50_B9DZC4 0.00142395486747 0.00110980205093 -0.00031415281654 +UniRef50_UPI00044165DC ribosomal protein L6 4.87485824258e-06 7.84735948814e-05 7.35987366388e-05 +UniRef50_Q9RSP5 0.000279619251005 0.0506729719604 0.0503933527094 +UniRef50_A3CNT6 ATP phosphoribosyltransferase regulatory subunit 0.00489396349765 0.00117500833881 -0.00371895515884 +UniRef50_Q9RSP7 0.000732859080189 0.0233764988878 0.0226436398076 +UniRef50_Q8CMY4 Probable malate 0.038808282829 0.0156758474657 -0.0231324353633 +UniRef50_UPI0001850D56 YvrB 1.53537226474e-05 0.000263618894315 0.000248265171668 +UniRef50_A6LGA2 Leucine tRNA ligase 3.6709968534e-06 0.00479286587067 0.00478919487382 +UniRef50_Q0E079 Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic 9.04898211712e-06 4.16035026079e-05 3.25545204908e-05 +UniRef50_A5UMQ3 0.00248221534853 0.000209444471765 -0.00227277087676 +UniRef50_W8RY01 0.000307421441272 0.0001770810905 -0.000130340350772 +UniRef50_UPI00037FD000 hypothetical protein 1.91230581417e-06 0.000124549423481 0.000122637117667 +UniRef50_J7TAV9 0.000195926983831 0.00177420355993 0.0015782765761 +UniRef50_UPI000370BEF1 hypothetical protein 6.99891006209e-06 3.08541802505e-05 2.38552701884e-05 +UniRef50_UPI00047191F0 hypothetical protein, partial 0.000102372518171 7.59026178616e-05 -2.64699003094e-05 +UniRef50_A7I5Y0 0.00483912457585 0.000328929840496 -0.00451019473535 +UniRef50_T2A2T5 0.000636212340763 0.00149649568314 0.000860283342377 +UniRef50_UPI000372FA01 hypothetical protein, partial 3.91387592434e-05 0.000447010905452 0.000407872146209 +UniRef50_Q7NSL8 0.000200540943711 4.56137019227e-05 -0.000154927241788 +UniRef50_I6TSJ0 0.0087174462219 0.00125770715913 -0.00745973906277 +UniRef50_D6M601 Xanthine dehydrogenase, large subunit molybdenum cofactor binding domain containing protein 0.000361731678481 0.00119208049558 0.000830348817099 +UniRef50_U5MPL0 Protease YdeA 0.00405951299313 0.00100710898981 -0.00305240400332 +UniRef50_Q04L26 Xaa Pro dipeptidyl peptidase 0.000290027629119 0.00302703518969 0.00273700756057 +UniRef50_UPI000319F04C hypothetical protein 9.66727109909e-06 1.61407180441e-05 6.47344694501e-06 +UniRef50_Q8XA27 Protein FixB 0.00400793294563 0.000379019994174 -0.00362891295146 +UniRef50_I0ES06 Methyl accepting chemotaxis protein 5.73686913185e-05 0.00455815540481 0.00450078671349 +UniRef50_UPI0002F687DE hypothetical protein 8.88112558704e-05 2.65855498364e-05 -6.2225706034e-05 +UniRef50_G5PKT0 Formate transporter 4.79811294099e-05 0.000140735544572 9.27544151621e-05 +UniRef50_P22731 High affinity branched chain amino acid transport ATP binding protein LivF 0.00363357001503 0.0530235171263 0.0493899471113 +UniRef50_P0C0Q2 Glutamyl endopeptidase 0.00676333496186 0.00306930894782 -0.00369402601404 +UniRef50_UPI00047910E5 hypothetical protein 4.2493622664e-05 0.000114235298691 7.1741676027e-05 +UniRef50_A0PPL6 Riboflavin biosynthesis protein RibBA 1.19441321876e-05 9.16512766845e-06 -2.77900451915e-06 +UniRef50_Q3JPM4 3 octaprenyl 4 hydroxybenzoate carboxy lyase 7.63604668922e-06 6.44462028408e-05 5.68101561516e-05 +UniRef50_P09831 Glutamate synthase [NADPH] large chain 0.00205185280714 9.94704140617e-06 -0.00204190576573 +UniRef50_L0KED0 TRAP type C4 dicarboxylate transport system, small permease component 7.25597933415e-05 3.37848236568e-05 -3.87749696847e-05 +UniRef50_W3RDE1 Topology modulation protein 1.1504390628e-05 0.00043686615788 0.000425361767252 +UniRef50_UPI000371284B hypothetical protein 3.85155743624e-05 0.000586845013447 0.000548329439085 +UniRef50_Q9KNX6 FKBP type peptidyl prolyl cis trans isomerase SlyD 0.00628316119511 0.00101286330318 -0.00527029789193 +UniRef50_UPI00037B0FBB hypothetical protein 2.63798601725e-05 4.16603095343e-05 1.52804493618e-05 +UniRef50_G7U8F4 0.000319468064949 0.00578521362959 0.00546574556464 +UniRef50_UPI0002626037 large conductance mechanosensitive channel protein MscL 9.44066046179e-06 1.51802597009e-05 5.73959923911e-06 +UniRef50_UPI0003EF9C6D hypothetical protein, partial 0.00031685493981 0.000201796071116 -0.000115058868694 +UniRef50_T1YDR0 Transcriptional regulator, MerR family protein 0.0112499855261 0.00307314930111 -0.00817683622499 +UniRef50_P69807 Mannose permease IID component 0.0039837282253 0.00492393232473 0.00094020409943 +UniRef50_P73860 KaiC like protein 1 0.00401608538091 0.00212751884619 -0.00188856653472 +UniRef50_A0A022GSW2 Sulfonate ABC transporter substrate binding protein 1.35811522259e-05 9.7415179896e-06 -3.8396342363e-06 +UniRef50_UPI000468B631 patatin 2.28857798777e-05 2.37782212419e-05 8.924413642e-07 +UniRef50_UPI0003C1000B PREDICTED 1.63575980523e-05 6.55845274172e-06 -9.79914531058e-06 +UniRef50_F8FV37 0.00073239963812 0.000200214715383 -0.000532184922737 +UniRef50_U6PZV7 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94 1.90527905971e-06 9.29972050125e-06 7.39444144154e-06 +UniRef50_V5T4P8 Fimbrial biogenesis outer membrane usher protein 9.73911569336e-05 0.000261700745498 0.000164309588564 +UniRef50_S2J745 8.21264177371e-06 6.20771604132e-06 -2.00492573239e-06 +UniRef50_P0AFR3 C4 dicarboxylic acid transporter DauA 0.00248270458825 0.000680639398058 -0.00180206519019 +UniRef50_UPI00047D2CC8 hypothetical protein 0.000123579790265 0.000186343702007 6.2763911742e-05 +UniRef50_E4U3H9 2.39984961348e-06 4.2968767187e-05 4.05689175735e-05 +UniRef50_S5ED07 Jag protein 0.00545480856881 0.001486558597 -0.00396824997181 +UniRef50_A6LS15 PHP C terminal domain protein 0.00028948879442 0.00149290968803 0.00120342089361 +UniRef50_A0A041VEI8 5.10838424916e-05 3.99641642221e-05 -1.11196782695e-05 +UniRef50_P9WHP0 Phosphate acetyltransferase 3.67559223194e-06 1.01420257019e-05 6.46643346996e-06 +UniRef50_Q98AP4 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.00227445433735 0.00170073445714 -0.00057371988021 +UniRef50_Q5NQ45 50S ribosomal protein L15 0.00333051034397 0.000366853049924 -0.00296365729405 +UniRef50_UPI00047247B2 hypothetical protein 4.95291149235e-06 6.43111143543e-05 5.93582028619e-05 +UniRef50_UPI0003B31EFA cold shock protein 1.72151775542e-05 2.67238492364e-05 9.5086716822e-06 +UniRef50_A0A037Y9B8 Transcription repair coupling factor 0.000807318361382 0.000161813835158 -0.000645504526224 +UniRef50_UPI0004707564 hypothetical protein 0.0001021091678 9.69575717417e-05 -5.1515960583e-06 +UniRef50_O24850 0.000280658727775 0.00425948412301 0.00397882539523 +UniRef50_W5X364 Binding protein dependent transport systems inner membrane component 5.65696246739e-06 7.06052269221e-06 1.40356022482e-06 +UniRef50_C8YZ36 WejK 0.0012597236144 0.000319707956312 -0.000940015658088 +UniRef50_Q981X2 D amino acid dehydrogenase 3 small subunit 0.000235687925627 0.0074347127147 0.00719902478907 +UniRef50_UPI0003A61917 hypothetical protein 1.3498145707e-05 5.33849852889e-06 -8.15964717811e-06 +UniRef50_P63206 Transcriptional regulator GadE 0.0030843316497 0.00135524173526 -0.00172908991444 +UniRef50_G7U9H2 0.000424198000405 0.00449412028707 0.00406992228666 +UniRef50_UPI00016C38BC purine binding chemotaxis protein 2.13677875472e-05 6.68662127914e-05 4.54984252442e-05 +UniRef50_UPI000471A1E2 hypothetical protein 4.4915792254e-06 1.37603492935e-05 9.2687700681e-06 +UniRef50_L1Q181 Transcriptional regulator, PadR family 0.000121046833049 2.022596614e-05 -0.000100820866909 +UniRef50_P39766 Uracil permease 0.0248188749329 0.00413355643052 -0.0206853185024 +UniRef50_M4HU62 Degenerate transposase 0.000144928409285 0.00123909107075 0.00109416266147 +UniRef50_UPI00046E9748 excinuclease ABC subunit C 3.08155630952e-06 6.52863412377e-06 3.44707781425e-06 +UniRef50_R7VY37 1.73980758575e-06 6.27593375723e-06 4.53612617148e-06 +UniRef50_B1YSV0 RNA pyrophosphohydrolase 8.16224121098e-06 0.000346751512944 0.000338589271733 +UniRef50_UPI0003665980 hypothetical protein 2.96904135255e-05 1.72706766645e-05 -1.2419736861e-05 +UniRef50_Q02W25 50S ribosomal protein L4 0.018965278998 0.0116631846706 -0.0073020943274 +UniRef50_A6LTI5 Pentapeptide repeat protein 0.00026123804592 0.00075707002913 0.00049583198321 +UniRef50_I3UGR0 5.23707044998e-06 3.82671195818e-06 -1.4103584918e-06 +UniRef50_B9CVK2 0.00374162679871 0.000241023242371 -0.00350060355634 +UniRef50_Q6B458 3 isopropylmalate dehydrogenase 3.42094115286e-05 3.28700295392e-05 -1.3393819894e-06 +UniRef50_B0TCA6 N acetyl gamma glutamyl phosphate reductase 1.44975802346e-05 1.1414441061e-05 -3.0831391736e-06 +UniRef50_A1SR02 Phosphopantetheine adenylyltransferase 1.00564096803e-05 2.74550178423e-05 1.7398608162e-05 +UniRef50_UPI0000EBCE17 0.000173223488792 0.000137319680817 -3.5903807975e-05 +UniRef50_Q4ZQC8 Response regulator receiver 0.000491097380771 0.000251945610402 -0.000239151770369 +UniRef50_B7I2N1 Protein YaaA 2.03653314859e-05 7.94927696569e-05 5.9127438171e-05 +UniRef50_B0TBM7 Light independent protochlorophyllide reductase subunit N 9.8496441775e-05 3.15801904828e-05 -6.69162512922e-05 +UniRef50_B7HCU0 Chaperone protein DnaK 0.0235189057069 0.0108706538395 -0.0126482518674 +UniRef50_UPI00035CF421 hypothetical protein 0.000129743356286 4.72193086969e-05 -8.25240475891e-05 +UniRef50_T2F9D3 Competence protein ComGB 1.2100300474e-05 0.00269757315558 0.00268547285511 +UniRef50_Q3J223 Putative phage major capsid protein, gp36 0.0178247308348 0.00401214769632 -0.0138125831385 +UniRef50_F0YS40 0.000233684193117 0.000525503796043 0.000291819602926 +UniRef50_F0LFC9 Spermidine putrescine ABC transporter inner membrane protein 0.00163687352949 0.000892356812781 -0.000744516716709 +UniRef50_A5UMP4 Cobalamin biosynthesis protein G, CbiG 0.00286231074676 0.000391619977445 -0.00247069076931 +UniRef50_W5X8L8 NifC like ABC type porter molybdate ABC transporter, permease protein 4.25740703717e-05 3.10839334636e-05 -1.14901369081e-05 +UniRef50_Q8CXJ8 Chloramphenicol resistance protein 0.00977450808796 0.00304105728618 -0.00673345080178 +UniRef50_R7PU88 DNA helicase related protein 0.0036871480735 0.000436545389188 -0.00325060268431 +UniRef50_F8FUQ7 ApbE family lipoprotein 0.000770026640391 0.000327523148093 -0.000442503492298 +UniRef50_L0KF64 Cu responsive transcriptional regulator 0.00223962796545 0.0150229467589 0.0127833187935 +UniRef50_UPI0003B42D39 serine threonine phosphatase 9.32279511995e-06 1.24283668126e-05 3.10557169265e-06 +UniRef50_D7GDY6 Transporter 0.000131796108519 0.00409750496142 0.0039657088529 +UniRef50_P21112 Methyl coenzyme M reductase II subunit gamma 0.00225626521311 0.000473770115279 -0.00178249509783 +UniRef50_M1N2U9 0.000114159069206 0.00127470594847 0.00116054687926 +UniRef50_UPI00035E5F38 hypothetical protein 5.6248685973e-06 1.08653441697e-05 5.2404755724e-06 +UniRef50_B9DVZ2 Transcription antiterminator 0.00634927773585 0.00245800369442 -0.00389127404143 +UniRef50_P0A952 Spermidine N acetyltransferase 0.00345658209019 0.000346074263901 -0.00311050782629 +UniRef50_UPI000472AC52 spore coat protein 4.256339768e-06 6.30397223561e-06 2.04763246761e-06 +UniRef50_Q2CDQ9 0.000110629500544 0.000172220670765 6.1591170221e-05 +UniRef50_UPI0001F85CA4 biotin synthase like protein 2.23867605986e-05 0.000258641879789 0.00023625511919 +UniRef50_W6IE22 CreA protein 4.26844728381e-06 1.65191027138e-05 1.225065543e-05 +UniRef50_B7V9N9 Paraquat inducible protein A 0.000192922992602 0.000718420556123 0.000525497563521 +UniRef50_V6UC46 1.51742397239e-05 3.36289117989e-05 1.8454672075e-05 +UniRef50_Q2FD76 DMT family permease 0.000462868282251 0.00464583459179 0.00418296630954 +UniRef50_UPI000359EAD9 PREDICTED 1.15594344043e-05 0.000436324405871 0.000424764971467 +UniRef50_UPI0003627C1A hypothetical protein 8.5870014387e-06 1.85488055868e-05 9.9618041481e-06 +UniRef50_G7I9Q9 ATP synthase subunit alpha 1.76660779241e-06 7.85285015334e-06 6.08624236093e-06 +UniRef50_C1CQV0 HAD superfamily subfamily IIA hydrolase 0.00431379423955 0.00473012759536 0.00041633335581 +UniRef50_W5XBH9 Protein kinase transcriptional regulator 4.66401047005e-05 6.81864771467e-06 -3.98214569858e-05 +UniRef50_E3A4M7 0.00137408347012 0.000477741842759 -0.000896341627361 +UniRef50_F4LPV2 Oligo 1,6 glucosidase 0.00030863655156 0.00145191779112 0.00114328123956 +UniRef50_Q9A1V9 50S ribosomal protein L6 0.00774107392977 0.00138438138682 -0.00635669254295 +UniRef50_Q1J3M1 Diguanylate cyclase with GAF sensor 1.25110416421e-05 0.00627203966506 0.00625952862342 +UniRef50_M1ZLS1 7.39725919232e-05 0.000684908528555 0.000610935936632 +UniRef50_Q4L8P5 PTS system sucrose specific IIBC component 0.00345156558358 0.00412351723323 0.00067195164965 +UniRef50_Q8CPS7 Transcription factor 0.0107864174889 0.00316675117994 -0.00761966630896 +UniRef50_UPI000308EC67 hypothetical protein 1.33953975691e-05 1.33162246622e-05 -7.91729069e-08 +UniRef50_D9RMZ4 0.00210883738145 0.000962989256073 -0.00114584812538 +UniRef50_UPI0003FCC1FE hypothetical protein 7.82943915215e-06 9.76475245663e-06 1.93531330448e-06 +UniRef50_P05425 Copper exporting P type ATPase B 0.00528049996497 0.00163733544358 -0.00364316452139 +UniRef50_UPI0003F7499A hypothetical protein 6.52848384058e-06 1.04256912122e-06 -5.48591471936e-06 +UniRef50_G4I6C2 1.02664530691e-06 3.37655566162e-05 3.27389113093e-05 +UniRef50_G8ATH1 2.65043528962e-05 1.74587905057e-05 -9.0455623905e-06 +UniRef50_L0M824 4.58774653671e-06 2.65571667765e-06 -1.93202985906e-06 +UniRef50_I4YHY8 DUF28 domain containing protein 5.67875563572e-06 2.54681105062e-05 1.97893548705e-05 +UniRef50_Q2IYS5 Phosphonates import ATP binding protein PhnC 1 9.4286980365e-06 1.99289242181e-05 1.05002261816e-05 +UniRef50_B5EPG1 PilT protein domain protein 0.00414276976552 0.00550799602651 0.00136522626099 +UniRef50_Q2YAA3 NADH quinone oxidoreductase subunit C D 0.0113402043212 0.00917382870069 -0.00216637562051 +UniRef50_Q8A1G1 TonB dependent receptor SusC 1.41220911466e-06 2.16178303966e-05 2.02056212819e-05 +UniRef50_B7V600 0.000987894514217 0.000371467553704 -0.000616426960513 +UniRef50_P75982 0.00176337947782 0.00170027341104 -6.310606678e-05 +UniRef50_UPI00035F8CE7 hypothetical protein 0.000173986584642 3.49730740916e-05 -0.00013901351055 +UniRef50_W0ILL7 Membrane protein 0.00975661458426 0.00319177774856 -0.0065648368357 +UniRef50_UPI0004650B13 hypothetical protein 2.91089309336e-06 1.3018886904e-05 1.01079938106e-05 +UniRef50_Q9ZJ96 Chromosomal replication initiator protein DnaA 9.548549465e-05 0.00222032851903 0.00212484302438 +UniRef50_B0VE30 Acetoacetyl CoA transferase, beta subunit 0.000957083569726 0.0113687619983 0.0104116784286 +UniRef50_Q8CPK2 Cell divisio initiation protein 0.0201319674034 0.00505664470798 -0.0150753226954 +UniRef50_UPI0002257056 PREDICTED 3.19801260639e-05 0.000510333018914 0.00047835289285 +UniRef50_F0RPV6 NLPA lipoprotein 0.000750138624118 0.0572126970414 0.0564625584173 +UniRef50_P42269 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 1.72413502659e-05 1.48641259263e-05 -2.3772243396e-06 +UniRef50_Q8KFL5 Isoleucine tRNA ligase 1.41909781117e-06 2.12184831195e-06 7.0275050078e-07 +UniRef50_H1Y7F7 NAD dependent protein deacylase 0.000336047597323 0.00777923751283 0.00744318991551 +UniRef50_M9VFI4 0.00013183445478 0.00298585805511 0.00285402360033 +UniRef50_UPI00022CAAEE PREDICTED 1.79824495354e-06 2.35061390333e-06 5.5236894979e-07 +UniRef50_UPI0003613834 hypothetical protein 0.000173950425021 0.000181067113069 7.116688048e-06 +UniRef50_Q5HKX5 Conserved domain protein 0.0050910459403 0.00559862653529 0.00050758059499 +UniRef50_D6K6B4 Membrane protein 0.000180597205172 0.000482200774443 0.000301603569271 +UniRef50_Q46888 0.00388241312794 0.00209705797622 -0.00178535515172 +UniRef50_UPI00037BC975 hypothetical protein 6.3947995105e-06 1.702219459e-05 1.06273950795e-05 +UniRef50_P67097 Phosphodiesterase YfcE 0.0020277725865 0.000336223952777 -0.00169154863372 +UniRef50_Q01464 Septum site determining protein MinD 0.000417676669498 0.0328186939356 0.0324010172661 +UniRef50_Q7NV70 2.04700640185e-05 3.827502394e-05 1.78049599215e-05 +UniRef50_E3DHU2 Copper homeostasis protein CutC 0.00179262147948 0.0014011612397 -0.00039146023978 +UniRef50_W9A1R1 4.8992425257e-05 0.000668714084441 0.000619721659184 +UniRef50_V5XRZ5 Iron sulfur cluster formation protein IscU 0.00222277638252 0.00316565061885 0.00094287423633 +UniRef50_Q88AZ5 33 kDa chaperonin 0.000624942113372 0.000198421078525 -0.000426521034847 +UniRef50_Q038S0 Histidine tRNA ligase 0.00769056039925 0.00781927531165 0.0001287149124 +UniRef50_I7ECV7 Peptidoglycan binding like protein 0.00863556432081 0.00174931666715 -0.00688624765366 +UniRef50_O82357 3 methyl 2 oxobutanoate hydroxymethyltransferase 1, mitochondrial 9.72161221918e-06 7.9729716289e-06 -1.74864059028e-06 +UniRef50_A6M083 0.000698474112219 0.00144301891136 0.000744544799141 +UniRef50_Q9RUA4 Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase 6.47488831609e-05 0.0299037189407 0.0298389700575 +UniRef50_Q1R133 Binding protein dependent transport systems inner membrane component 0.0087607889705 0.00370258506363 -0.00505820390687 +UniRef50_UPI00036278A6 hypothetical protein 2.62376669271e-05 7.26632620899e-05 4.64255951628e-05 +UniRef50_Q46897 CRISPR system Cascade subunit CasE 0.000617034080573 0.000651433908512 3.4399827939e-05 +UniRef50_Q5HK76 Type 1 restriction enzyme R protein 0.0136900575712 0.00266824228147 -0.0110218152897 +UniRef50_B8ETJ4 Exodeoxyribonuclease III Xth 0.00471640929746 0.00112539609278 -0.00359101320468 +UniRef50_Q2G1E0 0.0222947432011 0.00628311318205 -0.0160116300191 +UniRef50_UPI00037146D6 hypothetical protein 1.18453923054e-05 0.000173148644897 0.000161303252592 +UniRef50_C3BKF8 Glucose 6 phosphate 1 dehydrogenase 0.00969858678207 0.00466866331903 -0.00502992346304 +UniRef50_UPI0003770934 hypothetical protein, partial 2.1729149811e-05 5.39791895155e-05 3.22500397045e-05 +UniRef50_P25894 Metalloprotease LoiP 0.00493017241239 0.000469380838447 -0.00446079157394 +UniRef50_D5WIJ5 0.00383572031393 0.0019881862466 -0.00184753406733 +UniRef50_Q2FG30 0.0168787941101 0.00497717591496 -0.0119016181951 +UniRef50_UPI0003486BCB hypothetical protein 2.87771395707e-05 1.08168123539e-05 -1.79603272168e-05 +UniRef50_A0A058ZKQ4 0.000121523931441 8.89771026182e-05 -3.25468288228e-05 +UniRef50_Q8ZGW9 ATP dependent dethiobiotin synthetase BioD 1 0.0030759846226 0.000530567313021 -0.00254541730958 +UniRef50_Q4T799 Chromosome undetermined SCAF8206, whole genome shotgun sequence. 8.06559542486e-06 6.78036336496e-06 -1.2852320599e-06 +UniRef50_UPI000471EE06 cobyrinic acid a c diamide adenosyltransferase, partial 1.49181877615e-05 2.27416587031e-05 7.8234709416e-06 +UniRef50_A1B4D6 Glutathione S transferase, N terminal domain 0.00800627668805 0.00423926028254 -0.00376701640551 +UniRef50_Q08XU8 Cupin domain protein 0.000141852398023 9.24841724393e-05 -4.93682255837e-05 +UniRef50_UPI000363B7A3 hypothetical protein 5.80431917768e-06 4.25010454162e-06 -1.55421463606e-06 +UniRef50_UPI0003C11C7F PREDICTED 6.12215409447e-06 7.49450367301e-06 1.37234957854e-06 +UniRef50_Q731B9 Arginine repressor 0.0218166278284 0.0126797083368 -0.0091369194916 +UniRef50_G8AXA5 2.91621116805e-05 7.4922148386e-06 -2.16698968419e-05 +UniRef50_Q83HH5 Tyrosine tRNA ligase 4.76171256653e-06 7.42471970714e-05 6.94854845049e-05 +UniRef50_Q0AVU0 tRNA N6 adenosine threonylcarbamoyltransferase 1.19305216735e-05 2.09555511277e-05 9.0250294542e-06 +UniRef50_P0AE38 Arginine N succinyltransferase 0.00287075485404 0.0130608765108 0.0101901216568 +UniRef50_P04395 DNA 3 methyladenine glycosylase 2 0.00374228533493 0.00136447910301 -0.00237780623192 +UniRef50_F5J5S5 0.00017772548577 0.000193256287437 1.5530801667e-05 +UniRef50_UPI00046D4F30 hypothetical protein 1.57251818611e-05 3.61426025222e-05 2.04174206611e-05 +UniRef50_A9M0E5 Aminopeptidase 6.75287994386e-05 0.00389519881441 0.00382767001497 +UniRef50_I0C1S3 Phosphatidylglycerophosphatase B like protein 0.00797868131592 0.00527489367419 -0.00270378764173 +UniRef50_C7QKF9 YCII related protein 2.55600322554e-05 2.16222071142e-05 -3.9378251412e-06 +UniRef50_M9VHR6 Glycerophosphodiester phosphodiesterase family protein 0.000377485988848 0.00693370461968 0.00655621863083 +UniRef50_UPI00046FEF92 hypothetical protein 3.37331790253e-05 7.01902221953e-06 -2.67141568058e-05 +UniRef50_I4CSN5 0.00140162593151 0.000632418901693 -0.000769207029817 +UniRef50_F9Z0L2 Iron compound ABC transporter 0.000107749874196 0.00740240563125 0.00729465575705 +UniRef50_M5JV17 Phosphate ABC transporter substrate binding protein 0.000231989994359 2.70898563501e-05 -0.000204900138009 +UniRef50_Q31GL4 Leucyl phenylalanyl tRNA protein transferase 7.3705388953e-06 3.13081134835e-05 2.39375745882e-05 +UniRef50_K7TDT2 Putative transposase 2.41750561162e-05 6.58260801216e-06 -1.7592448104e-05 +UniRef50_F8B2H9 Molybdopterin guanine dinucleotide biosynthesis protein 4.58387003117e-06 1.89335242328e-05 1.43496542016e-05 +UniRef50_UPI0004432FDF PREDICTED 1.27225090402e-05 3.27118837227e-05 1.99893746825e-05 +UniRef50_S5KCJ9 Membrane protein 3.46400417276e-05 0.0010509487984 0.00101630875667 +UniRef50_D4LGK2 Phosphate starvation inducible protein PhoH, predicted ATPase 0.00329981237393 0.00201655029881 -0.00128326207512 +UniRef50_UPI000377EEE9 hypothetical protein 4.05954613745e-06 0.00313657959448 0.00313252004834 +UniRef50_Q9RRI3 Medium chain fatty acid CoA ligase 0.000336805123903 0.0357362648588 0.0353994597349 +UniRef50_B0VCS4 0.000137434219241 0.00664408001158 0.00650664579234 +UniRef50_P24203 0.00182285521896 0.000386099473648 -0.00143675574531 +UniRef50_UPI0003012608 hypothetical protein 4.10902224077e-06 6.27155953802e-06 2.16253729725e-06 +UniRef50_Q899J0 PUR operon repressor 0.000344449151545 0.00333640587569 0.00299195672414 +UniRef50_Q5XE79 Thioredoxin 0.00059603050871 0.000569742839604 -2.6287669106e-05 +UniRef50_P17330 Glyceraldehyde 3 phosphate dehydrogenase 3 1.12216060667e-05 9.96818648388e-06 -1.25341958282e-06 +UniRef50_M1P7F7 Cytoplasmic membrane protein 1.91190200118e-05 0.00305365020471 0.0030345311847 +UniRef50_Q9A0R7 Putative gluconeogenesis factor 0.00677759652053 0.00298372904513 -0.0037938674754 +UniRef50_J6CKR7 Transketolase 0.000158772547921 6.45371934968e-05 -9.42353544242e-05 +UniRef50_UPI000478E5C6 hypothetical protein 1.03273291624e-05 0.000175103096212 0.00016477576705 +UniRef50_Q39K93 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.65393807056e-05 7.47428814301e-05 3.82035007245e-05 +UniRef50_B6JM63 Polyamine aminopropyl transferase 0.000169783803081 0.00330963782393 0.00313985402085 +UniRef50_UPI0004742BB7 glucose 1 phosphate thymidylyltransferase 0.00021560237932 0.000142075918507 -7.3526460813e-05 +UniRef50_Q2L0H5 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00480072726845 0.00129300445818 -0.00350772281027 +UniRef50_UPI00046FFCEC ABC transporter ATP binding protein, partial 6.29182304652e-06 2.63032216502e-05 2.00113986037e-05 +UniRef50_Q5M1U2 D alanyl D alanine carboxypeptidase 0.00784593992108 0.00184091945706 -0.00600502046402 +UniRef50_Q6MHV9 Bifunctional protein GlmU 4.22081263642e-06 6.82482787235e-06 2.60401523593e-06 +UniRef50_B9KRH9 Glycosyl transferase, family 2 0.00311542428208 0.00124814614927 -0.00186727813281 +UniRef50_UPI0004785B9B DNA directed RNA polymerase subunit beta 3.25383094543e-06 1.58504676033e-06 -1.6687841851e-06 +UniRef50_Q3JM24 Potassium efflux system protein 0.000227061636911 0.0092295274757 0.00900246583879 +UniRef50_UPI00036DE10D hypothetical protein 0.000452827932954 7.85547781407e-05 -0.000374273154813 +UniRef50_A0A021WXJ4 1.54809588524e-05 2.59345571643e-05 1.04535983119e-05 +UniRef50_UPI000369982C hypothetical protein 1.19239854999e-05 1.1585809878e-05 -3.381756219e-07 +UniRef50_UPI00045EC2D5 hypothetical protein 6.84942887198e-05 7.26341988685e-06 -6.1230868833e-05 +UniRef50_UPI000441EDB2 PREDICTED 7.4692537161e-06 2.22672187371e-05 1.4797965021e-05 +UniRef50_G8VLT1 Tryptophanase L cysteine desulfhydrase, PLP dependent 0.000332441248351 0.00558806556191 0.00525562431356 +UniRef50_B2VB13 TraW protein 8.43207081217e-05 2.98953532783e-05 -5.44253548434e-05 +UniRef50_UPI0002192F7F molybdopterin biosynthesis protein MoeB, partial 8.10518595153e-06 2.08271782494e-05 1.27219922979e-05 +UniRef50_UPI0003803CF1 hypothetical protein 4.59949261723e-06 1.87177710338e-05 1.41182784166e-05 +UniRef50_C5N2S8 0.0201677760263 0.00989047471669 -0.0102773013096 +UniRef50_A9M1X9 0.000300386728529 0.0015111157669 0.00121072903837 +UniRef50_UPI0003622625 hypothetical protein 8.03838721625e-06 5.78172758859e-06 -2.25665962766e-06 +UniRef50_M4RDW5 Glycosyltransferase 0.00031632904094 0.00575967175538 0.00544334271444 +UniRef50_Q49ZP2 3.93217206925e-05 6.27008115306e-05 2.33790908381e-05 +UniRef50_G5P8G8 Peptide transport system permease protein sapB 0.000138163080354 0.000161712070374 2.354899002e-05 +UniRef50_UPI0003F6BA02 cysteinyl tRNA synthetase 2.97018692777e-06 6.57885778531e-06 3.60867085754e-06 +UniRef50_UPI00034C3E89 hypothetical protein 8.55928739509e-06 1.16634588696e-05 3.10417147451e-06 +UniRef50_F5YFX0 Polar amino acid ABC transporter, inner membrane subunit 0.000542471217641 0.00111728182699 0.000574810609349 +UniRef50_F2AIJ3 0.000706935002209 0.000506526527332 -0.000200408474877 +UniRef50_R6Z8P0 1.21604351698e-05 6.27948006139e-05 5.06343654441e-05 +UniRef50_UPI00036C444A hypothetical protein 4.26933167686e-06 4.8833886478e-06 6.1405697094e-07 +UniRef50_A2SNL7 Essential for conjugative transfer protein 8.80703315204e-06 5.96376414866e-06 -2.84326900338e-06 +UniRef50_UPI000471BC8E protease I 6.46407211153e-06 2.40343131672e-05 1.75702410557e-05 +UniRef50_Q5LSV7 Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein 0.00693969864512 0.00187100436971 -0.00506869427541 +UniRef50_U5URI8 0.0125376454674 0.00351300905302 -0.00902463641438 +UniRef50_B9KPC4 0.00087821285884 0.000691814432947 -0.000186398425893 +UniRef50_D3Q1B6 3.21442600597e-06 1.62603260229e-05 1.30459000169e-05 +UniRef50_M9VB10 LysR family transcriptional regulator 0.000409926333486 0.00408736463252 0.00367743829903 +UniRef50_N6DL92 4.78986197002e-05 9.62554032953e-05 4.83567835951e-05 +UniRef50_T1ATE5 0.00100685038387 8.61069163238e-05 -0.000920743467546 +UniRef50_Q91TH9 T121.1 4.57947330841e-06 6.45239662439e-05 5.99444929355e-05 +UniRef50_Z5XAD0 Aldehyde dehydrogenase 4.61808795981e-05 5.52692201143e-05 9.0883405162e-06 +UniRef50_K2I608 Flp pilus assembly protein, pilin Flp 6.10388052284e-05 4.91993938983e-05 -1.18394113301e-05 +UniRef50_UPI0003C13F57 PREDICTED 2.40038874048e-05 1.33115865362e-05 -1.06923008686e-05 +UniRef50_I6U0J6 0.00347990655782 0.00221683611563 -0.00126307044219 +UniRef50_Q8FHD1 0.00183686914013 0.0002590497414 -0.00157781939873 +UniRef50_Q9PMA7 NADH quinone oxidoreductase subunit L 0.000134199311951 0.00417688888495 0.004042689573 +UniRef50_A4QB30 0.000711093234097 0.00368305228797 0.00297195905387 +UniRef50_UPI000376F2DA hypothetical protein 5.08046253202e-06 1.66458676634e-05 1.15654051314e-05 +UniRef50_H6PBU2 Nitroreductase 0.00542263006044 0.00104947157278 -0.00437315848766 +UniRef50_UPI00035E79DC transcriptional regulator 6.25107013103e-06 1.03226073193e-05 4.07153718827e-06 +UniRef50_UPI00037CCCC7 hypothetical protein 0.000148393381764 3.37766509089e-05 -0.000114616730855 +UniRef50_M5E3Y3 5.0715559381e-05 3.22137325423e-05 -1.85018268387e-05 +UniRef50_A0B5U4 Glycine tRNA ligase 0.00249789424029 0.000695418270102 -0.00180247597019 +UniRef50_A4EG79 2.20651283011e-05 5.39840861795e-05 3.19189578784e-05 +UniRef50_D1BHZ8 Ribonucleoside triphosphate reductase class III catalytic subunit 0.0178772329257 0.00945252018795 -0.00842471273775 +UniRef50_Q3IV40 0.0180353974429 0.00394939770027 -0.0140859997426 +UniRef50_UPI0003823B5A hypothetical protein 0.000162208389222 5.25972924986e-05 -0.000109611096723 +UniRef50_UPI000466ECBC 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 6.20964248235e-05 4.50018327546e-05 -1.70945920689e-05 +UniRef50_UPI0003F0E20A PREDICTED 2.60919668781e-05 2.88660950613e-06 -2.3205357372e-05 +UniRef50_K0L2H6 0.00348731917626 0.00182388052857 -0.00166343864769 +UniRef50_O06997 0.000326367193234 0.00185325487027 0.00152688767704 +UniRef50_UPI00038F646F Response regulator MprA 6.4631430147e-05 0.000259967892613 0.000195336462466 +UniRef50_W7SSQ1 GGDEF domain protein 1.97908183121e-05 0.000213362176081 0.000193571357769 +UniRef50_Q03Q51 Phosphopentomutase 1.32177393866e-05 0.00227975597455 0.00226653823516 +UniRef50_Q0BT08 Ribosomal RNA large subunit methyltransferase E 8.58114061088e-05 4.851893146e-05 -3.72924746488e-05 +UniRef50_A7ZVQ2 Primosomal protein 1 0.00112346754031 0.0053693946399 0.00424592709959 +UniRef50_A9GTV7 0.000239495960222 0.000354925767779 0.000115429807557 +UniRef50_Q4UU98 Probable chemoreceptor glutamine deamidase CheD 0.000303126252081 0.000157181386636 -0.000145944865445 +UniRef50_UPI0003781C90 hypothetical protein 0.000258853552028 3.6919614546e-05 -0.000221933937482 +UniRef50_UPI00037EAB74 hypothetical protein 1.81590546566e-05 2.73744602056e-05 9.215405549e-06 +UniRef50_V6FEQ6 0.000318009513062 0.000473178529513 0.000155169016451 +UniRef50_I6T6N0 0.00367469673017 0.00223414832775 -0.00144054840242 +UniRef50_UPI0003608CB6 MULTISPECIES 3.69775141068e-06 7.29794709932e-06 3.60019568864e-06 +UniRef50_K7RUR3 ABC 2 type transporter 0.00067957666549 0.00972553870458 0.00904596203909 +UniRef50_A3VVX3 4.47437526371e-06 2.40643469648e-06 -2.06794056723e-06 +UniRef50_UPI0001DEA90D PREDICTED 7.61120464961e-05 0.000366215655028 0.000290103608532 +UniRef50_UPI00047E64E1 CreA 1.41969949062e-05 1.83563993704e-05 4.1594044642e-06 +UniRef50_UPI0003B67BBB 23S rRNA tRNA pseudouridine synthase A 0.000113436626706 3.72191998179e-05 -7.62174268881e-05 +UniRef50_U1T6A5 0.000171240474828 4.61076010919e-06 -0.000166629714719 +UniRef50_A6LRD1 Aldehyde dehydrogenase 0.000268525912586 0.00168832351465 0.00141979760206 +UniRef50_UPI000369B8F0 hypothetical protein 4.19299672821e-06 6.20294369383e-06 2.00994696562e-06 +UniRef50_UPI0003476644 hypothetical protein 6.06753103765e-06 6.52343398641e-06 4.5590294876e-07 +UniRef50_R9ZF26 TonB denpendent receptor 0.000260148305909 0.000638992454516 0.000378844148607 +UniRef50_Q7A363 Accessory Sec system protein translocase subunit SecY2 0.0107025730992 0.00320866134013 -0.00749391175907 +UniRef50_UPI000380209B hypothetical protein 9.0739652157e-06 7.99926156069e-06 -1.07470365501e-06 +UniRef50_P0DF46 Ribosomal RNA small subunit methyltransferase I 0.00448546933394 0.00214544793178 -0.00234002140216 +UniRef50_A5W3B8 Peptidase S14, ClpP 0.000676360138888 0.00135736744886 0.000681007309972 +UniRef50_Q5FQ01 0.000274202897477 0.000871440366181 0.000597237468704 +UniRef50_Q92GB7 DNA polymerase I 4.22315376677e-06 4.59737825617e-05 4.17506287949e-05 +UniRef50_I6TNQ1 Aminotransferase 0.00515219495143 0.00141488660305 -0.00373730834838 +UniRef50_Q1QU75 tRNA pseudouridine synthase D 5.35700096481e-06 7.43303865114e-06 2.07603768633e-06 +UniRef50_A5UNR6 Heavy metal cation efflux system protein, CzcD family 0.00261759245498 0.00121116054319 -0.00140643191179 +UniRef50_G7TK32 Transposase 8.81354951222e-05 5.98437280839e-05 -2.82917670383e-05 +UniRef50_Q7VR12 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.38796330284e-05 4.4122286499e-05 3.02426534706e-05 +UniRef50_S5XNV8 0.000661221835203 5.53493731199e-05 -0.000605872462083 +UniRef50_UPI00037F4A8F hypothetical protein 1.75055290185e-06 1.37416490305e-05 1.19910961287e-05 +UniRef50_F9Z292 0.000308571653009 0.00766125039411 0.0073526787411 +UniRef50_A1AT66 Ribonuclease H 4.32874287242e-05 2.44220327035e-05 -1.88653960207e-05 +UniRef50_O64174 Ribonucleoside diphosphate reductase subunit beta 0.000268415998084 0.0305957264838 0.0303273104857 +UniRef50_UPI000470D991 hypothetical protein 8.4171636485e-06 0.000129691557244 0.000121274393596 +UniRef50_A0A037J8C0 0.000167180069528 6.07438984785e-05 -0.00010643617105 +UniRef50_UPI0003B5DFE1 ABC transporter 5.70795251979e-06 5.77510498744e-06 6.715246765e-08 +UniRef50_A5N2H8 FprA 9.87321679628e-05 0.000405566271772 0.000306834103809 +UniRef50_Q5HNZ9 5 formyltetrahydrofolate cyclo ligase family protein 0.00953598762576 0.00101669026154 -0.00851929736422 +UniRef50_A5F9H5 Glutaminase 0.0010432399595 0.00193212608989 0.00088888613039 +UniRef50_UPI00036F62C9 hypothetical protein 0.000113869069403 2.41150541602e-05 -8.97540152428e-05 +UniRef50_P33744 Aldehyde alcohol dehydrogenase 0.000785668334076 0.00201154903379 0.00122588069971 +UniRef50_Q2JPT8 GTP cyclohydrolase 1 3.78649620518e-05 5.55934811879e-05 1.77285191361e-05 +UniRef50_K4W2H2 Cyclic di GMP phosphodiesterase 0.00360044551279 0.000807352330822 -0.00279309318197 +UniRef50_B9TCQ2 5.116307668e-05 0.000565602267857 0.000514439191177 +UniRef50_UPI0003648E77 hypothetical protein 7.64492004097e-06 1.45186538781e-06 -6.19305465316e-06 +UniRef50_Q2Y7Q1 6.11820043457e-06 1.75842189288e-05 1.14660184942e-05 +UniRef50_A0A023PYQ4 9.50540892723e-06 0.000797864081147 0.00078835867222 +UniRef50_D3E0R6 Chaperone protein DnaJ 0.00434622944607 0.000175262139585 -0.00417096730648 +UniRef50_P27896 Nitrate nitrite sensor protein NarQ 0.00319346006189 0.00120516911142 -0.00198829095047 +UniRef50_A7ZS72 Phosphoglucosamine mutase 0.00383661085 0.00168063508078 -0.00215597576922 +UniRef50_UPI00035EC538 hypothetical protein 0.000111578469607 0.000141815483016 3.0237013409e-05 +UniRef50_P27756 Alpha galactosidase 0.00411525060023 0.00293537268932 -0.00117987791091 +UniRef50_Q6D3F5 Isopentenyl diphosphate Delta isomerase 5.6549084627e-05 1.44530011473e-05 -4.20960834797e-05 +UniRef50_UPI0003706CCB hypothetical protein 8.68242173544e-06 3.58327583379e-05 2.71503366025e-05 +UniRef50_D3E1V5 CBS domain containing protein 0.00282302681276 0.000875435417395 -0.00194759139537 +UniRef50_F0QEA5 Sphingosine kinase 0.000126108904961 0.00413647106439 0.00401036215943 +UniRef50_Q8DTR9 0.00474861512093 0.00179310416651 -0.00295551095442 +UniRef50_Q1GIV4 UDP N acetylmuramoylalanine D glutamate ligase 0.00309118556446 0.000276671673455 -0.00281451389101 +UniRef50_P46534 Orotate phosphoribosyltransferase 2.18888001338e-05 7.29022429163e-05 5.10134427825e-05 +UniRef50_F0YBU9 Expressed protein 0.000314838525889 0.000745568273148 0.000430729747259 +UniRef50_C0W8D6 Rhamnan synthesis protein F 3.90861041832e-06 6.73469947604e-06 2.82608905772e-06 +UniRef50_UPI0003B75B95 50S ribosomal protein L5 0.000285079679051 0.00030907090492 2.3991225869e-05 +UniRef50_Q3KIW5 NH dependent NAD(+) synthetase 3.72762508221e-05 8.54712936459e-05 4.81950428238e-05 +UniRef50_J7P463 3.06995049524e-06 0.00147482838249 0.00147175843199 +UniRef50_Q9CM47 Macrolide export ATP binding permease protein MacB 4.92591917552e-06 5.45788115749e-06 5.3196198197e-07 +UniRef50_G9AIM1 1.80366662437e-05 0.000153524453604 0.00013548778736 +UniRef50_B5JD39 9.86043697982e-06 0.00044602812168 0.0004361676847 +UniRef50_Q9RSR2 WD repeat family protein 0.000170294431062 0.00224370664436 0.0020734122133 +UniRef50_X6XZ89 0.000335093665908 0.000476317266442 0.000141223600534 +UniRef50_A0A059LAV6 0.000254362452988 0.00104140303084 0.000787040577852 +UniRef50_B4U4I6 Holliday junction resolvase RecU 0.00523255317461 0.00374657647497 -0.00148597669964 +UniRef50_K1Y1K5 0.000268197404208 2.43707715944e-05 -0.000243826632614 +UniRef50_UPI00035C76C3 hypothetical protein 3.69101124056e-05 0.000115819582152 7.89094697464e-05 +UniRef50_A6VC61 Peptide chain release factor 1 0.000104857219123 0.000524727750822 0.000419870531699 +UniRef50_UPI0003B52326 histidinol dehydrogenase 4.25276531165e-06 6.79367154058e-06 2.54090622893e-06 +UniRef50_F2I852 Oxidoreductase, FAD FMN binding protein 0.0123860860977 0.00262569456892 -0.00976039152878 +UniRef50_P16145 Probable Ni Fe hydrogenase B type cytochrome subunit 0.0133509655413 0.00361854205527 -0.00973242348603 +UniRef50_A6LWU3 0.000164171288694 0.000695123701435 0.000530952412741 +UniRef50_D3A715 4.20715349579e-05 0.000373344124034 0.000331272589076 +UniRef50_A0L482 N acetyl gamma glutamyl phosphate reductase 1.80478029372e-05 4.57015280711e-05 2.76537251339e-05 +UniRef50_UPI000422BA91 hypothetical protein 4.89180370941e-06 2.23317412968e-05 1.74399375874e-05 +UniRef50_P76161 Antitermination protein Q homolog from lambdoid prophage Qin 0.00411988336238 0.000671401975318 -0.00344848138706 +UniRef50_U2ZTD9 3.64853280566e-07 1.02019073006e-06 6.55337449494e-07 +UniRef50_O85309 Excision nuclease UvrA 0.000165397083937 0.000220896865529 5.5499781592e-05 +UniRef50_Q8DHS3 Acyl carrier protein 3.06587621384e-05 0.000410015961402 0.000379357199264 +UniRef50_Q8UJC5 Shikimate dehydrogenase 4.31228389481e-05 3.66856330652e-05 -6.4372058829e-06 +UniRef50_UPI00046D3AA4 hypothetical protein 3.11426395258e-05 3.33634067777e-05 2.2207672519e-06 +UniRef50_UPI0003B31446 peptide ABC transporter ATP binding protein 2.24321947669e-06 7.84466514374e-06 5.60144566705e-06 +UniRef50_D5ZSF1 0.000390903464139 0.00149262702056 0.00110172355642 +UniRef50_B2V197 Helix turn helix domain protein 0.000112235675575 0.000654633767157 0.000542398091582 +UniRef50_UPI000373CA50 hypothetical protein 3.03701598461e-05 0.000128539087464 9.81689276179e-05 +UniRef50_A7HRI8 UPF0260 protein Plav_0898 0.0168196798655 0.00235573535507 -0.0144639445104 +UniRef50_UPI0002F72AC7 hypothetical protein 1.02926004363e-05 0.000194158547558 0.000183865947122 +UniRef50_S5XR90 Aminotransferase 0.0127036950058 0.00375226913531 -0.00895142587049 +UniRef50_A1B4T6 0.000320802591739 0.000796650812189 0.00047584822045 +UniRef50_A0A058TF07 Periplasmic binding protein LacI transcriptionalregulator 0.000129417307607 2.58216515044e-05 -0.000103595656103 +UniRef50_B8J6J0 1.23483872819e-05 9.7951084547e-05 8.56026972651e-05 +UniRef50_UPI0003692945 hypothetical protein 2.10807954063e-05 2.62882541962e-05 5.2074587899e-06 +UniRef50_A7ZSA7 Monofunctional biosynthetic peptidoglycan transglycosylase 0.00712280325678 0.00042288788334 -0.00669991537344 +UniRef50_P0A6C2 Endonuclease 4 0.00320459178605 0.00528843867512 0.00208384688907 +UniRef50_G8ATW7 0.000124628748879 3.27827436784e-05 -9.18460052006e-05 +UniRef50_UPI000471B5FA hypothetical protein, partial 4.3003955889e-05 0.000107944283316 6.4940327427e-05 +UniRef50_U6I1P7 Fibrillar collagen chain FAp1 alpha 8.39830604904e-06 5.24758030807e-06 -3.15072574097e-06 +UniRef50_F0KI43 Transcriptional regulator, LysR family 0.000173158710486 0.00672179916575 0.00654864045526 +UniRef50_UPI0004763F0C GTP binding protein Era, partial 1.8388975208e-05 0.000153093910305 0.000134704935097 +UniRef50_W0YTS0 Periplasmic tail specific protease 0.000918601726542 0.000170656713888 -0.000747945012654 +UniRef50_P53652 Superoxide dismutase [Mn] 0.000229242503354 6.56831859363e-05 -0.000163559317418 +UniRef50_UPI000427CAFD hypothetical protein 1.2400920263e-06 1.63439733752e-05 1.51038813489e-05 +UniRef50_B2FUP3 0.00012609140758 8.08936753714e-05 -4.51977322086e-05 +UniRef50_H0JKI3 DNA polymerase II large subunit 2.84570488317e-06 6.65832759929e-05 6.37375711097e-05 +UniRef50_V5S959 Dihydroorotate dehydrogenase 0.000336627398679 2.034295502e-05 -0.000316284443659 +UniRef50_Q9RSJ1 2.02236956248e-06 0.00150945756858 0.00150743519902 +UniRef50_Q2C7C2 3.25193248383e-05 3.15305420154e-05 -9.887828229e-07 +UniRef50_A8SBF8 2.68210129445e-05 1.96921715916e-05 -7.1288413529e-06 +UniRef50_P32129 Probable acyltransferase YihG 0.00285654272014 0.000209197193767 -0.00264734552637 +UniRef50_UPI00016A4C3D hypothetical protein 0.000184144043637 7.97452775599e-05 -0.000104398766077 +UniRef50_B5Z3J3 8.52570495091e-05 1.28756323673e-05 -7.23814171418e-05 +UniRef50_Q1BAN7 0.00197988196541 0.00621022837143 0.00423034640602 +UniRef50_G0NRW8 2.22064278335e-06 2.62719878332e-05 2.40513450499e-05 +UniRef50_UPI00022CA8A0 PREDICTED 5.27460627209e-05 0.00808391205407 0.00803116599135 +UniRef50_C1F933 Aminomethyltransferase 2.21622872946e-05 1.48384872564e-05 -7.3238000382e-06 +UniRef50_R7ACY8 Dyp type peroxidase 0.000267089143052 0.00411570230027 0.00384861315722 +UniRef50_F0VQM4 6.46002187561e-06 1.01089698222e-05 3.64894794659e-06 +UniRef50_UPI0004710988 hypothetical protein 5.2294531821e-05 6.91296175571e-05 1.68350857361e-05 +UniRef50_Q8FHF8 Protein YdeP 0.0017293100796 0.000756766628069 -0.000972543451531 +UniRef50_R4ZTR9 Hydrolase, haloacid dehalogenase like family 0.0102276243361 0.000296800708731 -0.00993082362737 +UniRef50_UPI0003B58A15 hypothetical protein 5.80443599072e-06 8.726629228e-06 2.92219323728e-06 +UniRef50_UPI00046F911C riboflavin biosynthesis protein RibF 1.00971532303e-05 1.28967646164e-05 2.7996113861e-06 +UniRef50_UPI0003B578C2 LuxR family transcriptional regulator 9.23911855955e-06 1.17084296089e-05 2.46931104935e-06 +UniRef50_D9W2E7 BldA regulated nucleotide binding protein 0.000185918559711 0.000303465333238 0.000117546773527 +UniRef50_Q4PIL0 Catabolic 3 dehydroquinase 0.000115137153741 4.08506579921e-05 -7.42864957489e-05 +UniRef50_D2ZRP9 Conserved repeat protein 0.000607759462445 0.000314926774661 -0.000292832687784 +UniRef50_K4Z6Z2 Lipoprotein, YaeC family 8.08844018573e-05 4.80546487882e-05 -3.28297530691e-05 +UniRef50_UPI0003730702 hypothetical protein 6.56974493527e-06 3.84611870077e-05 3.18914420724e-05 +UniRef50_UPI000237AA64 binding protein dependent transporter inner membrane component 5.12804946669e-05 1.11302818994e-05 -4.01502127675e-05 +UniRef50_P41338 Acetyl CoA acetyltransferase 4.83959499634e-06 6.12146257819e-06 1.28186758185e-06 +UniRef50_R4RQD5 Exodeoxyribonuclease I 0.000514829119411 0.000471844902017 -4.2984217394e-05 +UniRef50_B6JP11 L seryl tRNA selenium transferase 0.000125828662949 0.00298919840628 0.00286336974333 +UniRef50_B9KSR5 Acetyltransferase 0.00579538265564 0.00203620737595 -0.00375917527969 +UniRef50_A5WGD9 Endonuclease exonuclease phosphatase 0.000106835657221 0.00736630417068 0.00725946851346 +UniRef50_UPI0003B3F986 esterase, partial 2.71214784362e-05 2.51235417726e-05 -1.9979366636e-06 +UniRef50_B5F9P6 Isopentenyl diphosphate Delta isomerase 6.0617201478e-05 1.58329251885e-05 -4.47842762895e-05 +UniRef50_UPI00046D1DF4 hypothetical protein 8.38863447297e-06 0.000123517531901 0.000115128897428 +UniRef50_A0A059IPL7 0.000534735206893 0.00142895179933 0.000894216592437 +UniRef50_D7I1Z5 Protein involved in meta pathway of phenol degradation 0.000161779709512 0.003745383422 0.00358360371249 +UniRef50_UPI0003B7A9E3 methionine aminopeptidase 5.43914057364e-05 1.16668616977e-05 -4.27245440387e-05 +UniRef50_UPI00046D808E hypothetical protein 2.91123084894e-06 0.00144467485761 0.00144176362676 +UniRef50_UPI0002898699 glycosyl transferase family protein 3.17717022939e-05 3.0717773612e-05 -1.0539286819e-06 +UniRef50_P33639 Sensor protein PilS 0.000515975548047 0.000697369982521 0.000181394434474 +UniRef50_P27250 Aldehyde reductase Ahr 0.00354454248924 0.00928659750962 0.00574205502038 +UniRef50_I0J9Y4 0.00650534735772 0.00104229425363 -0.00546305310409 +UniRef50_UPI00047854C4 hypothetical protein 5.98539522028e-06 7.8823458602e-06 1.89695063992e-06 +UniRef50_B9KRB9 0.00562887624012 0.000122483601538 -0.00550639263858 +UniRef50_C9TQ56 TRAP dicarboxylate transporter 2.98489511065e-05 3.89094289149e-05 9.0604778084e-06 +UniRef50_Q4V0C6 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.82223519066e-06 1.14161343066e-05 3.59389911594e-06 +UniRef50_Q9HTN0 0.00160643458038 0.00050384727275 -0.00110258730763 +UniRef50_E8QKR2 Zinc dependent alcohol dehydrogenase 0.000146123608583 0.00400907448043 0.00386295087185 +UniRef50_UPI000413BA09 sugar kinase 0.00011875082649 9.68496145918e-05 -2.19012118982e-05 +UniRef50_Q4LAB5 Protein ArsC 1 0.00814343949632 0.000835801995839 -0.00730763750048 +UniRef50_R8ZEH6 Putative major facilitator superfamily transporter 0.000344911741645 0.000687418122876 0.000342506381231 +UniRef50_UPI0002E5E41F hypothetical protein 4.35266714093e-06 2.93482529109e-05 2.499558577e-05 +UniRef50_Q5LQC3 Putative arginyl tRNA protein transferase 0.0092098333498 0.00185965957167 -0.00735017377813 +UniRef50_UPI000288DE5F cation 0.000273441013945 0.00025927681651 -1.4164197435e-05 +UniRef50_UPI0004716842 hypothetical protein 1.12614959586e-05 1.61564020544e-05 4.8949060958e-06 +UniRef50_Q13T51 UPF0271 protein Bxeno_A4200 0.0054363477413 0.000591786387407 -0.00484456135389 +UniRef50_Q9RSD6 Aminopeptidase 0.000267149184478 0.0325248783089 0.0322577291244 +UniRef50_E6RJK7 7.76909041162e-05 2.99503847075e-05 -4.77405194087e-05 +UniRef50_Q3HKI4 0.0263919569899 0.00851841232426 -0.0178735446656 +UniRef50_Q3HKI5 0.052782319054 0.0105830691393 -0.0421992499147 +UniRef50_UPI00034472D6 3.26787048208e-05 8.96767271476e-05 5.69980223268e-05 +UniRef50_Q0SI65 Putative 3 methyladenine DNA glycosylase 7.1850293024e-06 2.37330304149e-05 1.65480011125e-05 +UniRef50_UPI000412412A phosphohydrolase 4.15305453937e-05 0.000325038833951 0.000283508288557 +UniRef50_UPI00028909B3 Sua5 YciO YrdC YwlC family protein, partial 2.59489038596e-05 9.4729313822e-05 6.87804099624e-05 +UniRef50_E8RT81 0.000104126466159 3.74703858831e-05 -6.66560802759e-05 +UniRef50_P74839 Propionate catabolism operon regulatory protein 0.00639791717654 0.0026670868257 -0.00373083035084 +UniRef50_A4IR80 Alanine tRNA ligase 0.0114864035546 0.00686248743583 -0.00462391611877 +UniRef50_B9G127 8.27822558884e-05 0.00010427503067 2.14927747816e-05 +UniRef50_UPI0003C17643 5.34516296268e-06 3.26701377001e-06 -2.07814919267e-06 +UniRef50_Q83EL0 Chaperone protein HtpG 0.00101411078308 0.00122586469392 0.00021175391084 +UniRef50_UPI0001FFFE99 hypothetical protein 8.16381786993e-05 9.03203561744e-06 -7.26061430819e-05 +UniRef50_Q5F551 Phosphopantetheine adenylyltransferase 6.60402272903e-05 0.00126831973152 0.00120227950423 +UniRef50_G4LM89 0.00118070589173 0.000350826816659 -0.000829879075071 +UniRef50_S0F055 2.93964992691e-06 5.5889742747e-06 2.64932434779e-06 +UniRef50_UPI0003458B5D hypothetical protein 8.61247106387e-06 8.05708223206e-05 7.19583512567e-05 +UniRef50_UPI00038FF0AB Ribonuclease H 1.44765806814e-05 9.29622841725e-05 7.84857034911e-05 +UniRef50_Q28TL6 Phosphatidylcholine synthase 0.00890816149968 0.00450534443628 -0.0044028170634 +UniRef50_P15531 Nucleoside diphosphate kinase A 1.27208491738e-05 1.81766861968e-05 5.455837023e-06 +UniRef50_Q4L8S8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0130298642878 0.00316301830304 -0.00986684598476 +UniRef50_UPI00046D6A82 hypothetical protein 5.25579369349e-05 1.37847939152e-05 -3.87731430197e-05 +UniRef50_O35046 Putative carboxypeptidase YocD 9.39045459123e-06 0.00156859634034 0.00155920588575 +UniRef50_Q3S2Y2 Glycosyltransferase Gtf1 0.000110874356845 0.00312765459478 0.00301678023793 +UniRef50_F8WKF3 0.0195116928842 0.00236061479183 -0.0171510780924 +UniRef50_J4VP36 DNA polymerase III, alpha subunit 3.33370022518e-05 0.00679362194553 0.00676028494328 +UniRef50_M1LZD3 0.000275580846929 0.000331919299987 5.6338453058e-05 +UniRef50_D7W4Z4 2.07328842744e-05 1.62776448947e-05 -4.4552393797e-06 +UniRef50_F9Z273 Glycerol 3 phosphate dehydrogenase 0.00015428582651 0.00691240397387 0.00675811814736 +UniRef50_R7PG96 0.000250543797907 0.00126564302227 0.00101509922436 +UniRef50_A0A024DEK4 Lactoylglutathione lyase 0.00221796076653 0.00652768859602 0.00430972782949 +UniRef50_X1FSK7 Marine sediment metagenome DNA, contig 1.35953098304e-05 1.92455974855e-05 5.6502876551e-06 +UniRef50_E5QVT2 Riboflavin transporter RibU 0.00874963798593 0.000369145881487 -0.00838049210444 +UniRef50_W4RLM9 Transketolase 0.000157708015486 8.4563939649e-05 -7.3144075837e-05 +UniRef50_P45564 0.00351669937676 0.00109130256553 -0.00242539681123 +UniRef50_Q8CQW0 0.00939593818585 0.00409978365661 -0.00529615452924 +UniRef50_UPI0002FD0224 hypothetical protein 1.04280371092e-05 8.9150362921e-05 7.87223258118e-05 +UniRef50_U6I5L2 Propionyl coenzyme A carboxylase alpha chain 4.88410051516e-06 3.57671691119e-06 -1.30738360397e-06 +UniRef50_G2JJI4 0.000486358319742 0.00509848402169 0.00461212570195 +UniRef50_UPI0003694B5F hypothetical protein 2.66912031495e-05 2.22280554895e-05 -4.46314766e-06 +UniRef50_I4YT79 2.81324974766e-05 2.10773274871e-05 -7.0551699895e-06 +UniRef50_O31038 FMN reductase 0.000202586398316 0.000584785554841 0.000382199156525 +UniRef50_Q5HM43 Alcohol dehydrogenase, zinc containing 0.010941895819 0.00268490864115 -0.00825698717785 +UniRef50_Q8CY30 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.00358513413841 0.0218297286986 0.0182445945602 +UniRef50_F0KMP6 0.000156850133866 0.00625977282899 0.00610292269512 +UniRef50_UPI0003500B2C PREDICTED 2.52665832468e-05 0.000350876504993 0.000325609921746 +UniRef50_N2QIY6 RNA pseudouridylate synthase family protein 0.00154934087445 0.000700355822605 -0.000848985051845 +UniRef50_D0IT38 Sodium D alanine glycine symporter 0.000492090723093 0.00184740328571 0.00135531256262 +UniRef50_F0LF03 Oligopeptide ABC transporter membrane spanning protein 0.00252680484021 0.00141341384763 -0.00111339099258 +UniRef50_UPI000255B4D9 citryl CoA lyase 5.71887759999e-05 9.99928749691e-06 -4.7189488503e-05 +UniRef50_A8GL06 TRAP dicarboxylate transporter, DctM subunit 0.00412448432507 0.000941564521568 -0.0031829198035 +UniRef50_UPI00035EC92D hypothetical protein 7.18523765202e-06 4.48221764235e-06 -2.70302000967e-06 +UniRef50_G0LSM2 Phage protein 0.00407882990441 0.0024976139356 -0.00158121596881 +UniRef50_Q1ISS4 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.58752471503e-05 1.2686922388e-05 -3.1883247623e-06 +UniRef50_B9DKA9 Teichoic acid biosynthesis protein B 0.00732376567237 0.00295544893095 -0.00436831674142 +UniRef50_UPI000462E9F8 hypothetical protein 6.23254076204e-05 2.84884634669e-05 -3.38369441535e-05 +UniRef50_Q8DSW4 0.004315714206 0.00152988630413 -0.00278582790187 +UniRef50_UPI0003071439 hypothetical protein 8.99014894395e-06 4.35195287432e-05 3.45293797993e-05 +UniRef50_P71067 L lactate permease 0.0073065777602 0.0454291398461 0.0381225620859 +UniRef50_U5MKH7 Short chain dehydrogenase reductase SDR 0.00117083215973 0.00158110023274 0.00041026807301 +UniRef50_UPI000371974E hypothetical protein 2.49536545569e-06 7.55413752459e-06 5.0587720689e-06 +UniRef50_C9AA28 FeS assembly protein SufD 0.00866677828 0.00159370275064 -0.00707307552936 +UniRef50_M9VHT5 Primosome assembly protein PriA 0.000203715074394 0.00602311698012 0.00581940190573 +UniRef50_UPI00038C29BD PREDICTED 1.78877359603e-06 4.72714023511e-06 2.93836663908e-06 +UniRef50_L7ETS7 D5 like N terminal domain protein 9.04112640343e-06 1.77434146317e-05 8.70228822827e-06 +UniRef50_G7M7Y7 Transcriptional regulator, TetR family 0.000767876918728 0.00244342714415 0.00167555022542 +UniRef50_Q3J4U2 0.0129019035377 0.00288389260971 -0.010018010928 +UniRef50_UPI0003786C39 hypothetical protein 0.000239535022129 8.81242411625e-05 -0.000151410780967 +UniRef50_P26218 Cryptic outer membrane porin BglH 0.00471028844198 0.00119313119806 -0.00351715724392 +UniRef50_Q3IZ97 Transglutaminase like domain protein 0.00298869620373 0.000697168144763 -0.00229152805897 +UniRef50_B4EU40 UPF0234 protein PMI0103 0.00292071125052 0.00520958115688 0.00228886990636 +UniRef50_UPI0002627F9F 30S ribosomal protein S17 9.95257731363e-05 0.000426421138727 0.000326895365591 +UniRef50_F5ZJK9 Methyltransferase 0.00016508133623 0.0120228916284 0.0118578102922 +UniRef50_D9SQV1 Inner membrane translocator 0.000125828662949 0.0037853569928 0.00365952832985 +UniRef50_A6QIK5 0.00174974136927 0.0124033016182 0.0106535602489 +UniRef50_Q6F9V8 Pseudouridine synthase 0.000134977111625 0.00590089982846 0.00576592271683 +UniRef50_UPI000377859E hypothetical protein 1.78626419942e-05 2.54639258093e-05 7.6012838151e-06 +UniRef50_UPI00025564DF thioredoxin 0.000249463772597 0.000143962163713 -0.000105501608884 +UniRef50_I6U015 0.00363010004224 0.00174298982337 -0.00188711021887 +UniRef50_A6QJ17 Iron compound ABC transporter, permease protein 0.0172786390315 0.00313635667709 -0.0141422823544 +UniRef50_UPI0002559088 major facilitator transporter 0.000517782558451 0.000131251868968 -0.000386530689483 +UniRef50_W9T9W7 Lon protease 0.000570727039869 0.00025598649862 -0.000314740541249 +UniRef50_V8G2W5 Integrase 0.000128749190972 8.85918105145e-05 -4.01573804575e-05 +UniRef50_A0A023XXU1 Alanine dehydrogenase 0.000392620184869 0.00869380317236 0.00830118298749 +UniRef50_E6E9V0 0.000130087027394 0.00131794026067 0.00118785323328 +UniRef50_Q88KQ9 Membrane protein, putative 0.000370757938214 0.00614232502475 0.00577156708654 +UniRef50_A5UP71 Predicted tubulin like protein 0.00180544108894 0.000245415544476 -0.00156002554446 +UniRef50_Q2FJ09 Putative antiporter subunit mnhG2 0.0154441559366 0.000446322476372 -0.0149978334602 +UniRef50_A6LWW3 GCN5 related N acetyltransferase 0.000432235865095 0.000827990762236 0.000395754897141 +UniRef50_D3E4D7 Transcriptional regulator MarR family 0.00199474803725 0.000905817906907 -0.00108893013034 +UniRef50_F6A8J6 Flagellar hook basal body protein 0.00102556865495 0.000565346542769 -0.000460222112181 +UniRef50_B7V109 Adenylate kinase 7.79202111019e-06 2.81608597213e-05 2.03688386111e-05 +UniRef50_X0UW79 Marine sediment metagenome DNA, contig 3.02979048604e-05 0.00390856953861 0.00387827163375 +UniRef50_P0ABS6 DNA primase 0.0035856819892 0.00111745540535 -0.00246822658385 +UniRef50_Q7NM67 Ribose phosphate pyrophosphokinase 4.79180533923e-05 6.51786640479e-05 1.72606106556e-05 +UniRef50_D8PHS6 4.74284231752e-06 0.00044644563042 0.000441702788102 +UniRef50_UPI000299E436 putative oxidase 3.08064086561e-05 0.00019343485972 0.000162628451064 +UniRef50_L7VT93 Chemotaxis protein methyltransferase 2 0.000978407110204 0.00119610414582 0.000217697035616 +UniRef50_F9YAM3 0.000821758338519 8.23467551486e-05 -0.00073941158337 +UniRef50_J0MX42 ISSep1, transposase family protein 0.00116956693662 0.000212623548732 -0.000956943387888 +UniRef50_S5Y434 Sulfolipid biosynthesis protein 0.000840976058686 0.000217945907889 -0.000623030150797 +UniRef50_A3PLB3 0.0109125476458 0.00314947772749 -0.00776306991831 +UniRef50_B3JPS9 2.45764342125e-05 2.17978518278e-05 -2.7785823847e-06 +UniRef50_UPI0003B4FC9A transcriptional regulator 0.000141727885356 5.38844088179e-05 -8.78434765381e-05 +UniRef50_Q7N475 UPF0259 membrane protein plu2479 0.00224444518027 0.00099620377663 -0.00124824140364 +UniRef50_I0C6V2 Acetyltransferase 0.0145504805201 0.00150239529729 -0.0130480852228 +UniRef50_Q64XQ0 Lipoyl synthase 5.32053171879e-06 3.37243015871e-05 2.84037698683e-05 +UniRef50_A0A059KIS0 1.18689501377e-05 4.00683429897e-05 2.8199392852e-05 +UniRef50_A5FPX2 Glutamate tRNA ligase 4.85804950872e-06 5.7378424164e-05 5.25203746553e-05 +UniRef50_UPI0004765137 hypothetical protein 3.6435553358e-06 4.63673154192e-06 9.9317620612e-07 +UniRef50_UPI0004545C86 PREDICTED 1.045482162e-05 1.09778222878e-05 5.230006678e-07 +UniRef50_A5UMB6 Cell wall biosynthesis protein, MurD like peptide ligase family 0.00403136630546 0.000948192125586 -0.00308317417987 +UniRef50_M7DM48 Permease 0.00465703242077 0.00171617433912 -0.00294085808165 +UniRef50_Q01T92 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.59703192049e-05 2.06726420239e-05 4.702322819e-06 +UniRef50_UPI0002892E6E extracellular solute binding protein 9.91785971057e-06 0.00051265670649 0.000502738846779 +UniRef50_Q5HS30 0.00355439322914 0.00324151543941 -0.00031287778973 +UniRef50_UPI0002D8B23E acetyltransferase 0.000121707723196 0.000129111977662 7.404254466e-06 +UniRef50_UPI0003B5C533 PTS glucose transporter subunit IIA 1.12939753627e-05 6.93470540792e-06 -4.35926995478e-06 +UniRef50_E1RMJ4 2.6141688974e-05 4.090259074e-05 1.4760901766e-05 +UniRef50_Q9ZAH9 Bacterial PH domain protein 0.00491793474577 0.00150391192687 -0.0034140228189 +UniRef50_V9WPU7 0.000160055073261 0.000132033228208 -2.8021845053e-05 +UniRef50_D4HFD7 4.07927914051e-05 0.000355749293159 0.000314956501754 +UniRef50_U5NML8 0.00236501981175 0.000637374183882 -0.00172764562787 +UniRef50_Q9I082 3.60671742488e-05 0.000876906889179 0.00084083971493 +UniRef50_U5NML2 0.0096052396591 0.00304824766512 -0.00655699199398 +UniRef50_Q9I089 0.000435560756373 0.000578279453069 0.000142718696696 +UniRef50_Q9T0P4 Ferredoxin dependent glutamate synthase 2, chloroplastic 2.2043027059e-06 2.76034657124e-06 5.5604386534e-07 +UniRef50_P0A9G2 Transcriptional activator protein NhaR 0.00269825184057 0.000432848373346 -0.00226540346722 +UniRef50_Q4L7Y8 ATP synthase subunit b 0.028689000604 0.00603601213826 -0.0226529884657 +UniRef50_UPI00046E378F electron transporter RnfB, partial 4.69633123263e-05 2.28598502957e-05 -2.41034620306e-05 +UniRef50_F3ZK40 Putative ABC transporter solute binding lipoprotein 5.3217053099e-05 8.32660562008e-05 3.00490031018e-05 +UniRef50_M4Z7B3 Putative membrane protein 3.94917804559e-05 0.000111859106646 7.23673261901e-05 +UniRef50_UPI0003804CCC hypothetical protein 9.61335363832e-05 8.18933468588e-05 -1.42401895244e-05 +UniRef50_Q9HTF1 Low specificity L threonine aldolase 0.000547735871686 0.00108877547075 0.000541039599064 +UniRef50_Q9I1P2 HTH type transcriptional regulator VqsM 0.000549286809212 0.000216085394041 -0.000333201415171 +UniRef50_P25524 Cytosine deaminase 0.00293986125375 0.00203887727803 -0.00090098397572 +UniRef50_UPI00047C40EA lysophospholipase 2.35864983119e-05 4.63655183047e-05 2.27790199928e-05 +UniRef50_E0IXH7 ShET2 enterotoxin domain protein 0.00319604708711 0.000562917894681 -0.00263312919243 +UniRef50_UPI00036ACAB2 hypothetical protein 9.25319813766e-06 1.72405633087e-05 7.98736517104e-06 +UniRef50_A7K3E5 Nucleoside diphosphate sugar epimerase dehydratase 7.6933285773e-05 0.00291488132792 0.00283794804215 +UniRef50_D4M7N5 Monosaccharide ABC transporter membrane protein, CUT2 family 0.000545323508899 0.000367653718447 -0.000177669790452 +UniRef50_V5XTJ1 0.00156568770498 0.000948969425598 -0.000616718279382 +UniRef50_UPI00046F6DC9 hypothetical protein 9.42259609704e-05 4.13499985605e-05 -5.28759624099e-05 +UniRef50_W7SUS4 Non ribosomal peptide synthetase 3.66192767703e-05 1.91233476565e-05 -1.74959291138e-05 +UniRef50_Q8XPQ1 Probable remnant of a transposase protein 4.70934889244e-05 4.27787669631e-05 -4.3147219613e-06 +UniRef50_W1K3W6 2.21303591483e-05 1.03519971196e-05 -1.17783620287e-05 +UniRef50_I4DYX6 ABC transporter homolog 0.00647510067623 0.000214256376199 -0.00626084430003 +UniRef50_P24200 5 methylcytosine specific restriction enzyme A 0.00282313711647 0.00578825307607 0.0029651159596 +UniRef50_Q49XC4 0.0211849846689 0.00456685995472 -0.0166181247142 +UniRef50_A0A024TW04 Secondary thiamine phosphate synthase enzyme, variant 1.5965533313e-05 2.6701071707e-05 1.0735538394e-05 +UniRef50_G8VL07 Universal stress protein UspA 0.000132761778031 0.00617243139378 0.00603966961575 +UniRef50_UPI00006D0388 conserved hypothetical protein 5.31860992743e-05 1.68007818884e-05 -3.63853173859e-05 +UniRef50_Q795M6 Putative aminotransferase YugH 0.000220693214703 0.0013806425441 0.0011599493294 +UniRef50_I3TTH4 9.43560993708e-05 5.11235423888e-05 -4.3232556982e-05 +UniRef50_UPI0003B46BA7 hypothetical protein 0.000168082562019 1.98123795181e-05 -0.000148270182501 +UniRef50_I3TTH2 0.0150853829615 0.00350986064304 -0.0115755223185 +UniRef50_I3TTH3 0.000368796561965 8.30781764986e-05 -0.000285718385466 +UniRef50_J3XAF4 Membrane flanked domain containing protein 3.86906259438e-05 0.000342260255617 0.000303569629673 +UniRef50_Q9FFF4 Acetolactate synthase small subunit 1, chloroplastic 2.1690630046e-05 0.000165208476793 0.000143517846747 +UniRef50_Q49XL3 0.00866062858509 0.00523311632171 -0.00342751226338 +UniRef50_I1G1I4 3.64713277618e-05 6.49754156272e-06 -2.99737861991e-05 +UniRef50_UPI0003B53CAB LolC E family lipoprotein releasing system, transmembrane protein 6.94733639748e-06 1.84101566972e-05 1.14628202997e-05 +UniRef50_UPI0003B4AD44 cytochrome C550 0.00043842693117 8.36313648316e-05 -0.000354795566338 +UniRef50_H1Z0J9 NADPH dependent FMN reductase 0.00129537751391 0.0033397006438 0.00204432312989 +UniRef50_M4QZZ1 Chloride channel protein 9.42929197787e-05 0.00451480551647 0.00442051259669 +UniRef50_U1RIR7 0.000126550057598 4.24569875954e-05 -8.40930700026e-05 +UniRef50_B2S8N8 Argininosuccinate lyase 0.00240599619993 0.000989815494563 -0.00141618070537 +UniRef50_P0A3S3 DNA entry nuclease 0.00646575110679 0.00268998530994 -0.00377576579685 +UniRef50_B4TBG4 UDP 4 amino 4 deoxy L arabinose oxoglutarate aminotransferase 0.0029749323127 0.000369263391484 -0.00260566892122 +UniRef50_Q8CPC5 Nuclease SbcCD subunit C 0.00930050015102 0.00336481434269 -0.00593568580833 +UniRef50_Q8CQW1 0.00241949840593 0.00030853947811 -0.00211095892782 +UniRef50_A3QJF9 Ribosomal RNA large subunit methyltransferase F 0.000466750924797 0.00116991495242 0.000703164027623 +UniRef50_Q8CQW3 0.0101312948381 0.00471674221971 -0.00541455261839 +UniRef50_Q8CQW5 0.00499984721893 0.00357622625113 -0.0014236209678 +UniRef50_Q8CQW7 0.017322910438 0.000881542403566 -0.0164413680344 +UniRef50_H6P8E7 Pyridoxal phosphate enzyme, YggS family 0.00542658740054 0.0046973860078 -0.00072920139274 +UniRef50_A6LZ09 0.00128748175706 0.00210647097253 0.00081898921547 +UniRef50_G2SXD8 Aspartate aminotransferase 0.00039575677738 0.000859754110769 0.000463997333389 +UniRef50_A6M2G5 Phage infection protein, putative 0.000351590580038 0.0007821927186 0.000430602138562 +UniRef50_U5MXH4 DNA helicase, Rad3 0.000255406871656 0.000840464325227 0.000585057453571 +UniRef50_I0EP63 8.03731700836e-05 0.00215002115924 0.00206964798916 +UniRef50_UPI0003A9ADDB hypothetical protein 0.00016440309413 0.000357350394256 0.000192947300126 +UniRef50_UPI0003B779BE spermidine putrescine ABC transporter permease, partial 3.04269767458e-05 0.000215346823979 0.000184919847233 +UniRef50_A6M0M4 Respiratory chain NADH dehydrogenase domain, 51 kDa subunit 0.000840815573878 0.00272419067155 0.00188337509767 +UniRef50_UPI0002624FE5 Bcr CflA subfamily drug resistance transporter 9.52011697421e-06 8.52932413276e-06 -9.9079284145e-07 +UniRef50_UPI00037F95F5 hypothetical protein 8.1669980282e-05 0.000664535275814 0.000582865295532 +UniRef50_R5J671 Arabitol phosphate dehydrogenase 0.000119710144452 0.00197433174467 0.00185462160022 +UniRef50_P41006 Uracil permease 0.00473546390597 0.00304206396544 -0.00169339994053 +UniRef50_C4J3V7 0.000186800307713 0.000187548114652 7.47806939e-07 +UniRef50_E5ARK1 Transposase 9.4514906556e-06 1.44994245789e-05 5.0479339233e-06 +UniRef50_M4ZCC6 Acetylornithine deacetylase 0.00956568730844 0.00422832255539 -0.00533736475305 +UniRef50_A5UKP7 0.00259160533764 0.000233759924953 -0.00235784541269 +UniRef50_UPI00041293AC membrane protein 0.00028893540153 0.000238199907919 -5.0735493611e-05 +UniRef50_D3DZ29 GTP binding protein 0.00302130446044 0.000960167684075 -0.00206113677636 +UniRef50_C7ZTN4 Acyl CoA dehydrogenase 0.0150278471013 0.00260501344824 -0.0124228336531 +UniRef50_E9WE17 LysR family bacterial regulatory helix turn helix protein 0.00016629338716 0.000630167165795 0.000463873778635 +UniRef50_Q8RG52 Lysine tRNA ligase 1.48982537835e-05 4.33919008605e-06 -1.05590636974e-05 +UniRef50_A0A022NN79 Putative transcriptional regulator 6.2296976176e-05 0.000332100182845 0.000269803206669 +UniRef50_Q5F7E0 ATP phosphoribosyltransferase 3.88254468993e-05 0.001991412023 0.0019525865761 +UniRef50_B9DNZ7 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.0174892627418 0.003845889404 -0.0136433733378 +UniRef50_A4J5C2 Methylenetetrahydrofolate reductase 0.000272012488274 0.00115860436454 0.000886591876266 +UniRef50_E4RJQ9 Cysteine desulfurase, SufS subfamily 0.000278235589752 0.000690406627596 0.000412171037844 +UniRef50_UPI0001E8958F inosine uridine nucleoside hydrolase 1.12008384976e-05 7.75092426812e-06 -3.44991422948e-06 +UniRef50_P29849 Maltodextrin phosphorylase 0.00459365359943 0.00537675140239 0.00078309780296 +UniRef50_P76272 0.00338203376751 0.00118543516999 -0.00219659859752 +UniRef50_D3QGG7 Tributyrin esterase 0.039792210454 0.00738705035634 -0.0324051600977 +UniRef50_G4KXX3 0.000100573531661 0.0014600370791 0.00135946354744 +UniRef50_W7DIL1 Shikimate 5 dehydrogenase 3.31789155702e-05 2.76999942654e-05 -5.4789213048e-06 +UniRef50_A3PGM6 50S ribosomal protein L6 0.0269542735652 0.00459529538046 -0.0223589781847 +UniRef50_A6M2I8 0.000440024954543 0.000867287131708 0.000427262177165 +UniRef50_A0A024DHC4 MarR family transcriptional regulator 0.00154145689254 0.000880443303739 -0.000661013588801 +UniRef50_Q8VRM3 Type II secretion system protein L 0.0042201370393 0.000556873012072 -0.00366326402723 +UniRef50_Q5HRK2 Acetyltransferase, GNAT family 0.0213467308785 0.00148941191592 -0.0198573189626 +UniRef50_A9KMQ0 L lactate dehydrogenase 0.000282471710003 0.00102085761574 0.000738385905737 +UniRef50_Q73JJ6 50S ribosomal protein L7 L12 0.0306060120911 0.00372633536007 -0.026879676731 +UniRef50_D4HCK8 0.00068729941948 0.00519892218567 0.00451162276619 +UniRef50_Q8D2Y0 Polyribonucleotide nucleotidyltransferase 4.56349494935e-06 1.85124106852e-05 1.39489157359e-05 +UniRef50_Q9RTI8 MutT nudix family protein 0.000282408470458 0.0437800975533 0.0434976890828 +UniRef50_G7U580 Pyridine nucleotide disulfide oxidoreductase 0.000205155428724 0.00376148124089 0.00355632581217 +UniRef50_O08368 Glutathione peroxidase 0.00266660622481 0.00101602243346 -0.00165058379135 +UniRef50_A1JIE0 sn glycerol 3 phosphate import ATP binding protein UgpC 6.3587661951e-05 5.14939589649e-05 -1.20937029861e-05 +UniRef50_UPI0003FD6A90 sugar ABC transporter permease 6.17822081552e-05 0.000193125491769 0.000131343283614 +UniRef50_P0A9G4 HTH type transcriptional regulator CueR 0.00467817562702 0.0233820775185 0.0187039018915 +UniRef50_Q6G970 Segregation and condensation protein B 0.0163450291323 0.00168235266177 -0.0146626764705 +UniRef50_F6D4R4 Peptidase U32 0.00274039518634 0.00124288501598 -0.00149751017036 +UniRef50_Q99VJ4 Clumping factor A 0.0251381137507 0.00420200427075 -0.0209361094799 +UniRef50_Q9RVI9 0.000686338161548 0.0469049569648 0.0462186188033 +UniRef50_Q9RVI8 0.000108265579982 0.047548525461 0.047440259881 +UniRef50_P27669 Regulatory protein UhpC 0.0020414298206 0.00102347696792 -0.00101795285268 +UniRef50_C7DA27 2.76995036226e-05 1.91020987809e-05 -8.5974048417e-06 +UniRef50_UPI00036D28EF hypothetical protein 0.000165717272362 2.0706756809e-05 -0.000145010515553 +UniRef50_U1KC82 7.78695067687e-06 1.14565344292e-05 3.66958375233e-06 +UniRef50_UPI0003B7607C 50S ribosomal protein L13 2.01445036772e-05 8.76840848259e-05 6.75395811487e-05 +UniRef50_Q46PS3 Pseudouridine 5 phosphate glycosidase 0.00313379370701 0.000843077797164 -0.00229071590985 +UniRef50_I0C2G5 Permease 0.00537189978128 0.00145665641492 -0.00391524336636 +UniRef50_UPI0003B4774F coproporphyrinogen III oxidase 2.95770805295e-05 1.21472574101e-05 -1.74298231194e-05 +UniRef50_Q2YSR3 HTH type transcriptional regulator SarX 0.00646980990613 0.00288228180553 -0.0035875281006 +UniRef50_Q0DU63 Os03g0204900 protein 0.000286580420309 0.000601363125089 0.00031478270478 +UniRef50_I6T4Q5 Transcriptional regulator 0.0117581380805 0.000515087276506 -0.011243050804 +UniRef50_UPI00035E2F93 hypothetical protein 4.51260818845e-06 0.000358965536761 0.000354452928573 +UniRef50_UPI000378F4AE hypothetical protein 3.81157553097e-06 4.36387679719e-05 3.98271924409e-05 +UniRef50_UPI000424F3F7 2 hydroxyacid dehydrogenase 1.70942989117e-05 6.22645418748e-05 4.51702429631e-05 +UniRef50_B7MG07 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.00242674528026 0.000858582712558 -0.0015681625677 +UniRef50_N9PED4 Ferrous iron transporter B 0.000226680206122 0.00757456492926 0.00734788472314 +UniRef50_F2DIT6 Predicted protein 0.000110435142015 0.00015710855739 4.6673415375e-05 +UniRef50_C5YL49 6.85905204115e-05 4.48919709712e-05 -2.36985494403e-05 +UniRef50_UPI00046D46EC PTS sugar transporter subunit IIA 1.95535616753e-05 9.27513891516e-05 7.31978274763e-05 +UniRef50_UPI000466BC57 branched chain amino acid ABC transporter ATP binding protein 1.08751809236e-05 0.000347672104276 0.000336796923352 +UniRef50_Q5JN18 0.000249815525412 0.000327962805693 7.8147280281e-05 +UniRef50_A0A059ILG1 3.58062078039e-05 2.11364456803e-05 -1.46697621236e-05 +UniRef50_C4KRY7 Class II aldolase adducin family protein 0.000765258239834 0.00486031881027 0.00409506057044 +UniRef50_Q17Y79 ATP synthase gamma chain 0.00028574536304 0.00621061849578 0.00592487313274 +UniRef50_Q1GUM2 Valine tRNA ligase 2.08212162336e-06 4.06325590807e-06 1.98113428471e-06 +UniRef50_E3A2F4 0.000667332534303 0.000286616227945 -0.000380716306358 +UniRef50_UPI00046731A3 hypothetical protein, partial 1.6445131153e-05 2.08546365369e-05 4.4095053839e-06 +UniRef50_A8NT37 7.00879236708e-05 8.52695010185e-05 1.51815773477e-05 +UniRef50_O95396 Adenylyltransferase and sulfurtransferase MOCS3 3.67437882588e-06 6.92430281201e-06 3.24992398613e-06 +UniRef50_G6X002 3 oxoacyl [acyl carrier protein] reductase 7.7942881778e-06 4.86746480723e-05 4.08803598945e-05 +UniRef50_A6LZM1 Cell wall associated hydrolase like protein 0.000417881168475 0.00188983880345 0.00147195763497 +UniRef50_J5HE89 Adenylosuccinate lyase 0.000287051380608 0.000141979185193 -0.000145072195415 +UniRef50_Q1C0H3 Chaperone SurA 0.00375298963505 0.000458743602547 -0.0032942460325 +UniRef50_F0VVV7 Two component sensor protein 0.00555297600271 0.000630179848313 -0.0049227961544 +UniRef50_G8VLG4 ErfK YbiS YcfS YnhG 0.000381099892006 0.00572559985553 0.00534449996352 +UniRef50_Q57625 Probable acetolactate synthase small subunit 4.42239433663e-05 0.000504575356638 0.000460351413272 +UniRef50_Q6FE82 0.000303608033935 0.00234112223242 0.00203751419848 +UniRef50_B1K4I6 Putative reductase Bcenmc03_4815 0.000490699864458 0.0002590497414 -0.000231650123058 +UniRef50_G8VKU4 Oxidoreductase 0.000224086283212 0.00443774209115 0.00421365580794 +UniRef50_UPI00036AEC25 sodium 6.510111881e-05 0.00609818877438 0.00603308765557 +UniRef50_UPI00035F3E55 hypothetical protein, partial 6.75795015523e-05 0.000323184168135 0.000255604666583 +UniRef50_UPI000345C0EA acetyl CoA acetyltransferase 4.76058058419e-06 0.000120741072892 0.000115980492308 +UniRef50_Q9RYY7 4.80822460382e-05 0.0122430696456 0.0121949873996 +UniRef50_UPI000373C694 hypothetical protein 2.04888543159e-06 0.000130470098932 0.0001284212135 +UniRef50_Q8DW90 0.00614368875423 0.00156838304913 -0.0045753057051 +UniRef50_A6EWF4 1.98247538873e-05 0.00127873594207 0.00125891118818 +UniRef50_Q8FFV5 tRNA dihydrouridine synthase C 0.00477128604952 0.00166703114196 -0.00310425490756 +UniRef50_U5MMM3 D galactose binding periplasmic protein MglB 0.000134977111625 0.0001707032978 3.5726186175e-05 +UniRef50_F0RLL3 DEAD DEAH box helicase domain protein 0.000198556229644 0.0241900656545 0.0239915094249 +UniRef50_F8E027 Phage primase 6.06890657318e-05 0.00503696636669 0.00497627730096 +UniRef50_M5ADI0 1.01223703853e-05 1.18825014242e-05 1.7601310389e-06 +UniRef50_P20506 L Threonine dehydratase biosynthetic IlvA 0.0038204926019 0.0378869260907 0.0340664334888 +UniRef50_UPI00035D7F4D hypothetical protein 4.50577313646e-06 6.48644736758e-05 6.03587005393e-05 +UniRef50_I0JFD7 0.00390014284455 0.000920894782945 -0.00297924806161 +UniRef50_UPI0003771410 hypothetical protein 0.000164712626692 3.89358831551e-05 -0.000125776743537 +UniRef50_X5FYX4 2.7314779204e-05 3.0160507853e-05 2.845728649e-06 +UniRef50_UPI00047310EB hypothetical protein 2.92271743464e-05 0.000207697045711 0.000178469871365 +UniRef50_A9GJ97 6.94968456379e-05 1.39921322537e-05 -5.55047133842e-05 +UniRef50_X0QIZ7 Respiratory nitrate reductase beta chain 4.51914607553e-05 5.43761202395e-05 9.1846594842e-06 +UniRef50_A5UM16 Phosphoribosylformylglycinamidine cyclo ligase 0.0028471679797 0.00115247388795 -0.00169469409175 +UniRef50_UPI00037699BE hypothetical protein 7.35060752184e-06 2.44860212302e-05 1.71354137084e-05 +UniRef50_O64903 Nucleoside diphosphate kinase II, chloroplastic 8.16670830468e-06 3.80956862676e-05 2.99289779629e-05 +UniRef50_Q8CRX7 Two component sensor histidine kinase like protein 0.0280098433614 0.00548567432829 -0.0225241690331 +UniRef50_Q6AB62 Thymidylate kinase 0.000416344840642 0.0148703929239 0.0144540480833 +UniRef50_A7X0T7 0.0109938934598 0.00588073305572 -0.00511316040408 +UniRef50_UPI00016C59FB Hemolysin type calcium binding region 2.88337921734e-05 2.2231734291e-05 -6.6020578824e-06 +UniRef50_UPI0004654759 hypothetical protein, partial 2.10295561339e-05 1.78638541988e-05 -3.1657019351e-06 +UniRef50_F2LTP6 ABC type transporter, periplasmic subunit family 3 0.00245915481614 0.000527351259279 -0.00193180355686 +UniRef50_A0A011RSG6 NAD transhydrogenase subunit beta 6.73222358327e-06 5.61542929444e-06 -1.11679428883e-06 +UniRef50_A4W0M7 ATP dependent helicase nuclease subunit A 0.000396738966758 0.00380525990969 0.00340852094293 +UniRef50_F0J0R1 1.29254983483e-06 2.31000684049e-06 1.01745700566e-06 +UniRef50_I4JFC2 7.17728998954e-05 9.25072874803e-05 2.07343875849e-05 +UniRef50_UPI000466A8A4 hypothetical protein 9.92925711068e-05 0.00010906985457 9.7772834632e-06 +UniRef50_W4FWB3 1.38953207421e-05 2.69713275471e-05 1.3076006805e-05 +UniRef50_UPI000288F47D AraC family transcriptional regulator 0.000273324948351 7.34887984343e-05 -0.000199836149917 +UniRef50_P51056 2 oxoglutarate dehydrogenase E1 component 1.54512024775e-06 3.65329671866e-05 3.49878469388e-05 +UniRef50_UPI0003834F1F PREDICTED 1.8342475476e-05 4.37393413302e-05 2.53968658542e-05 +UniRef50_UPI000262CDFD recombination and repair protein 2.73608127597e-06 5.71832129056e-06 2.98224001459e-06 +UniRef50_Q7N3E1 Multidrug resistance protein MdtC 3.69963399748e-05 0.00011769820902 8.07018690452e-05 +UniRef50_Q0FUB4 Replication initiator RepC 0.000499614958437 9.82180971187e-05 -0.000401396861318 +UniRef50_J3IXG8 0.000170038733717 0.000359613128836 0.000189574395119 +UniRef50_D3E2B7 Transporter CDF family 0.00265342289965 0.000695117961878 -0.00195830493777 +UniRef50_UPI000225A94B Hsp33 like chaperonin 0.000779396375078 0.000255434602639 -0.000523961772439 +UniRef50_E3J1U8 DNA polymerase I 0.000101395470254 0.00633086625638 0.00622947078613 +UniRef50_UPI0003B712C5 DNA invertase 0.000223578042452 0.000230587298608 7.009256156e-06 +UniRef50_G8V5D6 Bacterial extracellular solute binding family protein 0.0138644302921 0.00240490301547 -0.0114595272766 +UniRef50_Q03UL2 Dihydroxy acid dehydratase 5.9740342955e-05 9.67298599527e-05 3.69895169977e-05 +UniRef50_UPI0004770CE7 hypothetical protein 3.76233949515e-05 5.62861832217e-05 1.86627882702e-05 +UniRef50_Q1ZXF1 Probable enoyl CoA hydratase, mitochondrial 1.11722743404e-05 1.72701200398e-05 6.0978456994e-06 +UniRef50_UPI000377CE34 hypothetical protein 2.37850172196e-05 5.39901299185e-05 3.02051126989e-05 +UniRef50_J9V4P4 0.00233306266731 0.000835801995839 -0.00149726067147 +UniRef50_UPI0003802583 PE family protein 6.08282753244e-06 0.000175040623174 0.000168957795642 +UniRef50_G8AVW9 7.2682884003e-05 0.000125366249979 5.2683365976e-05 +UniRef50_K4Q9Y1 ATP dependent RNA helicase DBP2 0.00412756262897 0.00389303732075 -0.00023452530822 +UniRef50_P30979 0.00540839498659 0.000459824699511 -0.00494857028708 +UniRef50_E1PKG3 Putative aliphatic sulfonates binding protein 1.85556602353e-05 5.61727967036e-05 3.76171364683e-05 +UniRef50_UPI000383147C hypothetical protein M271_01890 1.05612347882e-05 7.75544796485e-06 -2.80578682335e-06 +UniRef50_Q0APX2 3.65529882866e-05 1.72398465042e-05 -1.93131417824e-05 +UniRef50_M7XX40 6.88539407456e-05 5.33094020849e-05 -1.55445386607e-05 +UniRef50_R9ZJZ3 TonB denpendent receptor 0.00118929246388 0.000532329678268 -0.000656962785612 +UniRef50_A6LV94 0.00068557575284 0.00472633868302 0.00404076293018 +UniRef50_V6VNG0 HTH like domain protein 0.000228989867768 8.49952681128e-05 -0.000143994599655 +UniRef50_C2ZZN3 8.82749090328e-06 0.000619985902531 0.000611158411628 +UniRef50_R9SHV7 Metallophosphoesterase 0.00234114998256 0.000421988593527 -0.00191916138903 +UniRef50_UPI0002DF27A4 hypothetical protein 6.97233916572e-05 1.44271334238e-05 -5.52962582334e-05 +UniRef50_UPI0003649624 hypothetical protein 4.93026556505e-05 1.16813941146e-05 -3.76212615359e-05 +UniRef50_UPI00047E508E light independent protochlorophyllide reductase subunit B 0.000258127195561 1.65369861839e-05 -0.000241590209377 +UniRef50_UPI000363054E hypothetical protein, partial 7.46707381039e-05 1.81557248829e-05 -5.6515013221e-05 +UniRef50_I5BWG8 9.39403967344e-05 1.78204294956e-05 -7.61199672388e-05 +UniRef50_UPI000308C935 hypothetical protein 1.3857867073e-05 4.51762083976e-05 3.13183413246e-05 +UniRef50_UPI0003B370F2 flagellin 1.36188348666e-06 1.32988448902e-05 1.19369614035e-05 +UniRef50_UPI00039E8E1C hypothetical protein 0.000133678609704 4.91943275571e-05 -8.44842821469e-05 +UniRef50_P11160 Lipopolysaccharide export system ATP binding protein LptB 2.96361027666e-05 0.00015508154327 0.000125445440503 +UniRef50_Q5LNW7 CpaB family protein 0.0057411477203 0.000848208924025 -0.00489293879627 +UniRef50_X5ERA2 8.15304511551e-05 0.000355758580433 0.000274228129278 +UniRef50_UPI00047E842D DNA recombination protein RecO 1.81919628433e-05 6.44128974776e-05 4.62209346343e-05 +UniRef50_UPI000372993F hypothetical protein 6.11863226911e-05 4.1243467418e-05 -1.99428552731e-05 +UniRef50_E3ZRD8 6.16076619219e-05 0.000362978813281 0.000301371151359 +UniRef50_O67291 Isoprenyl transferase 9.07479923701e-06 1.10673354271e-05 1.99253619009e-06 +UniRef50_B2RH63 3 oxoacyl [acyl carrier protein] synthase 3 1.2330106398e-05 4.54685968132e-05 3.31384904152e-05 +UniRef50_UPI000371500A hypothetical protein 7.43504380413e-05 5.49434999341e-05 -1.94069381072e-05 +UniRef50_UPI0003B3003D type I secretion protein 1.37053793429e-06 9.57996948663e-06 8.20943155234e-06 +UniRef50_UPI00037EBA03 hypothetical protein 6.85830631191e-06 1.32291926616e-05 6.37088634969e-06 +UniRef50_A8EVQ3 Uroporphyrinogen decarboxylase 5.63080529302e-06 0.00346356819282 0.00345793738753 +UniRef50_UPI0003B5001E translation initiation factor IF 3 2.29158055057e-05 4.53818132684e-05 2.24660077627e-05 +UniRef50_UPI0004411670 hypothetical protein DICSQDRAFT_95428 7.12647788253e-05 0.000316164281707 0.000244899502882 +UniRef50_Q6Z707 Non ribosomal peptide synthetase modules and related proteins like 6.99501460941e-05 0.000198393877463 0.000128443731369 +UniRef50_A0A031HIT4 Flagellar FlaF family protein 4.57779304089e-05 2.22678073091e-05 -2.35101230998e-05 +UniRef50_UPI00047D2222 3 keto L gulonate 6 phosphate decarboxylase 2.85202572222e-05 6.90856471265e-05 4.05653899043e-05 +UniRef50_W7X754 0.000148175227134 7.07395874586e-06 -0.000141101268388 +UniRef50_Q5HL20 Lipoprotein, putative 0.00763066974425 0.00228203963559 -0.00534863010866 +UniRef50_Q89XX5 Cobalt insertion protein 0.01380695419 0.00197047802827 -0.0118364761617 +UniRef50_Q3SNY6 UPF0301 protein Nwi_2752 1.77837407826e-05 3.61706666577e-05 1.83869258751e-05 +UniRef50_P52215 Thioredoxin reductase 0.000443357276977 0.00521152425718 0.0047681669802 +UniRef50_A6M1X0 ThiW protein 0.000247802618498 0.00170529207169 0.00145748945319 +UniRef50_UPI00035CB3DD hypothetical protein 1.00000008845e-05 4.01016605615e-05 3.0101659677e-05 +UniRef50_UPI0003B37751 translation initiation factor IF 3 0.000298270122633 0.000456584023284 0.000158313900651 +UniRef50_I2FHZ3 Glycosyl transferases group 1 family protein 0.00803664835769 0.00422010241172 -0.00381654594597 +UniRef50_UPI00037E157B hypothetical protein 1.38134316873e-05 1.09336995977e-05 -2.8797320896e-06 +UniRef50_UPI00036B9069 hypothetical protein 0.000182861087103 0.000623706072522 0.000440844985419 +UniRef50_S1EU50 Trimethylamine N oxide reductase 2 0.002328174063 0.00326165762352 0.00093348356052 +UniRef50_UPI00036A682A hypothetical protein, partial 0.000329294625389 0.000116877607045 -0.000212417018344 +UniRef50_P45482 Cell division protein FtsZ 0.0218687320212 0.00531121753436 -0.0165575144868 +UniRef50_A9AYE8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.43346911045e-05 5.47769971981e-06 -8.85699138469e-06 +UniRef50_UPI0003B6D0DD peptidase M24 3.10160420158e-06 6.47976396898e-05 6.16960354882e-05 +UniRef50_U5MLD2 Anti sigma factor N terminus 0.000118087379206 0.00150944749926 0.00139136012005 +UniRef50_P76079 1,2 phenylacetyl CoA epoxidase, subunit C 0.00254045564221 0.0089886404172 0.00644818477499 +UniRef50_G4LCX9 Transcriptional regulator 0.000215170033855 0.000348433791827 0.000133263757972 +UniRef50_Q57747 0.00195994796636 0.000956771484301 -0.00100317648206 +UniRef50_E3M3A4 7.76745941055e-06 0.000231120928599 0.000223353469188 +UniRef50_Q7VRR0 Ribonuclease 3 6.23469419994e-06 3.32882281163e-05 2.70535339164e-05 +UniRef50_A5FRK6 DNA directed RNA polymerase subunit beta 5.18634167827e-06 1.15591546513e-05 6.37281297303e-06 +UniRef50_A6M049 Alcohol dehydrogenase GroES domain protein 0.000315474160481 0.000201123749283 -0.000114350411198 +UniRef50_C5X103 3.91518366528e-05 0.000265411367142 0.000226259530489 +UniRef50_Q6F9W1 tRNA dimethylallyltransferase 0.000360272948004 0.00393948227439 0.00357920932639 +UniRef50_J0P427 Type III restriction modification system DNA endonuclease 8.37491901067e-05 0.00449107667134 0.00440732748123 +UniRef50_Q492E0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.42565749954e-06 2.60074437664e-06 -1.8249131229e-06 +UniRef50_I2ZQB3 L lactate dehydrogenase 0.00500150632283 0.000572327537919 -0.00442917878491 +UniRef50_Q5HLD9 Peptidase, M20 M25 M40 family 0.0131572385744 0.00438155773378 -0.00877568084062 +UniRef50_B5ERH7 1.89337661166e-05 2.20970767307e-05 3.1633106141e-06 +UniRef50_S5XXA0 Exodeoxyribonuclease III 0.00289726586772 0.00185673542679 -0.00104053044093 +UniRef50_B6GDZ1 0.000101492317696 5.52094119079e-06 -9.59713765052e-05 +UniRef50_Q3Y002 8.23121811592e-06 0.000213225057899 0.000204993839783 +UniRef50_X2HWL3 TonB dependent receptor 4.42366393186e-05 0.00427443641213 0.00423019977281 +UniRef50_A8LL44 0.000181776878108 0.000284913067946 0.000103136189838 +UniRef50_A6M0N1 Response regulator receiver protein 0.00011626878507 0.000666847955777 0.000550579170707 +UniRef50_UPI0003C14EB6 5.89214799713e-06 2.58420501692e-06 -3.30794298021e-06 +UniRef50_F4DM00 Glutamate dehydrogenase 0.000737372743047 0.000561721442847 -0.0001756513002 +UniRef50_L1K914 0.00144343637847 0.00031208044929 -0.00113135592918 +UniRef50_UPI00047DD927 damage inducible protein CinA 1.78436775247e-05 4.62040231184e-06 -1.32232752129e-05 +UniRef50_X6J8Z0 4.9705646752e-05 6.58109557836e-05 1.61053090316e-05 +UniRef50_UPI0001BF5AE1 hypothetical protein SMAC_10035 0.000182342335854 1.12392023253e-05 -0.000171103133529 +UniRef50_Q97WN9 NH dependent NAD(+) synthetase 0.000145935304967 1.43769547331e-05 -0.000131558350234 +UniRef50_A3PKG7 Two component transcriptional regulator, LuxR family 0.0133780028405 0.00378085122552 -0.00959715161498 +UniRef50_P11000 Wall associated protein 0.00501275968581 0.00100929105052 -0.00400346863529 +UniRef50_A8YV22 ATP dependent 6 phosphofructokinase 2.61918372251e-05 1.37534725664e-05 -1.24383646587e-05 +UniRef50_UPI0003B46133 PREDICTED 1.34491395397e-05 1.6240284839e-05 2.7911452993e-06 +UniRef50_A0A037Z3Z8 1.98459908036e-05 4.4983075206e-05 2.51370844024e-05 +UniRef50_P16683 Putative phosphonates transport system permease protein PhnE 0.00484596011886 0.000406399135599 -0.00443956098326 +UniRef50_M7A0E0 9.12422142401e-06 0.00060932809448 0.000600203873056 +UniRef50_P32670 Multiphosphoryl transfer protein 2 0.00328149266186 0.00072600247699 -0.00255549018487 +UniRef50_R9CAH0 Cobalt transporter 2.00183578594e-05 1.94187857959e-05 -5.995720635e-07 +UniRef50_K4RS80 Potassium efflux system KefA protein Small conductance mechanosensitive channel 0.000190274961439 5.33704888947e-05 -0.000136904472544 +UniRef50_A0A017HSP4 7.1350756846e-05 3.60468051083e-05 -3.53039517377e-05 +UniRef50_A6LTV6 SEC C motif domain protein 0.000280706847759 0.00225456132015 0.00197385447239 +UniRef50_UPI0002652F6C PREDICTED 1.42095731848e-06 1.15256404696e-05 1.01046831511e-05 +UniRef50_P50843 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.07508711214e-06 1.61342697802e-05 9.05918266806e-06 +UniRef50_W1IC39 Chromosome I, genome 0.000130105447887 7.60929564831e-05 -5.40124914039e-05 +UniRef50_T2ENN0 Rhs element Vgr family protein 5.88719949895e-05 9.71117083152e-06 -4.9160824158e-05 +UniRef50_Q8Y0Z5 Ubiquinone biosynthesis O methyltransferase 0.00632588714021 0.00252935979752 -0.00379652734269 +UniRef50_L7WZX4 0.00102862739793 0.000107184172829 -0.000921443225101 +UniRef50_W1ELN4 Formate dehydrogenase N alpha subunit @ selenocysteine containing 0.00182811565854 0.000469955787221 -0.00135815987132 +UniRef50_A0A017HCQ2 3.4983140185e-05 1.6863370614e-05 -1.8119769571e-05 +UniRef50_C6LQB4 Deoxyribose phosphate aldolase 0.000703390041336 0.00347454415185 0.00277115411051 +UniRef50_X0T0E9 Marine sediment metagenome DNA, contig 2.99540692409e-05 0.000259955724479 0.000230001655238 +UniRef50_P39376 HTH type transcriptional regulator YjiE 0.00145593584431 0.000399622420079 -0.00105631342423 +UniRef50_V1A381 Diguanylate cyclase domain protein 0.000801783565377 0.000474585543039 -0.000327198022338 +UniRef50_F8JJM3 2.98299933071e-06 8.37502234739e-06 5.39202301668e-06 +UniRef50_Z2DBM9 Oxoglutarate dehydrogenase , E1 component 0.000179321511895 0.000127981838255 -5.133967364e-05 +UniRef50_P44908 0.00386357924937 0.00408590375589 0.00022232450652 +UniRef50_E3F0C5 0.00326124338712 0.00090628582768 -0.00235495755944 +UniRef50_UPI0003620071 hypothetical protein 0.000130390419599 4.4109367663e-05 -8.6281051936e-05 +UniRef50_Q4KJ83 Chemotaxis protein MotB 0.000647927800583 0.00017897982133 -0.000468947979253 +UniRef50_Q9KN05 Tryptophanase 0.00202232319463 0.000427342839429 -0.0015949803552 +UniRef50_F3U1C5 0.00292540284984 0.00132231360536 -0.00160308924448 +UniRef50_X3ELX1 Chloride channel protein 0.00306700943729 0.000842754567673 -0.00222425486962 +UniRef50_B2TNE9 Biotin [acetyl CoA carboxylase] ligase 0.000555498754472 0.00125014055836 0.000694641803888 +UniRef50_UPI000380DD01 hypothetical protein, partial 1.17234603637e-05 1.41508968534e-05 2.4274364897e-06 +UniRef50_F4N161 0.00146298841641 0.000202964855242 -0.00126002356117 +UniRef50_UPI0003B799F9 ribonucleoside diphosphate reductase 6.77111049682e-05 1.59109061456e-05 -5.18001988226e-05 +UniRef50_K1T508 Excinuclease ABC, A subunit 1.23183481096e-05 2.52506955659e-05 1.29323474563e-05 +UniRef50_A6M335 1,4 alpha glucan branching enzyme 0.000241258610414 0.000940232616997 0.000698974006583 +UniRef50_UPI00035EBE88 hypothetical protein 0.000803610696332 3.37284266417e-05 -0.00076988226969 +UniRef50_W5XAJ1 Ribosomal protein L25 L23 1.55945185437e-06 5.68907861104e-06 4.12962675667e-06 +UniRef50_Z4K4V4 0.000380912420951 0.00017423410001 -0.000206678320941 +UniRef50_X1YKP1 0.000183840578989 0.000286715247755 0.000102874668766 +UniRef50_UPI00037EB0E7 hypothetical protein 5.68451315394e-06 5.01663665263e-05 4.44818533724e-05 +UniRef50_Q2CDG7 Flagellar protein FlaF, putative 2.73616851826e-05 7.29541969626e-05 4.559251178e-05 +UniRef50_I6TW14 Alpha glucosidase 0.00673120494887 0.00166542436028 -0.00506578058859 +UniRef50_P33485 Probable nuclear antigen 3.76231801468e-05 2.89250173533e-05 -8.6981627935e-06 +UniRef50_Q4L9L8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00828413820323 0.00219932175912 -0.00608481644411 +UniRef50_D9QKH6 NAD dependent epimerase dehydratase 0.0102313738529 0.00115401881988 -0.00907735503302 +UniRef50_Q8Z9U9 DNA replication and repair protein RecF 0.000751049695102 0.000486121877901 -0.000264927817201 +UniRef50_Q8ZES9 Long chain fatty acid CoA ligase 0.00374516453351 0.00513407284004 0.00138890830653 +UniRef50_G8NWZ5 Sigma 54 interacting domain protein 8.02024055691e-05 0.0512552923016 0.051175089896 +UniRef50_D3DZ67 Met 10+ like protein 0.000657471857311 0.00149713603876 0.000839664181449 +UniRef50_I6TX91 Histidine kinase 0.0022214135967 0.000265578539903 -0.0019558350568 +UniRef50_C8N7Z4 4.25239937372e-05 1.11979969449e-05 -3.13259967923e-05 +UniRef50_UPI00047D1D69 hypothetical protein 4.57065981839e-06 3.53270964266e-06 -1.03795017573e-06 +UniRef50_UPI0001B4124B hypothetical protein, partial 3.59331030031e-05 0.000143826239368 0.000107893136365 +UniRef50_Q88K39 Glutaminase asparaginase 0.000406069153273 0.000169397727654 -0.000236671425619 +UniRef50_L8DZR6 Internalin J 1.66938321836e-05 9.94603168881e-06 -6.74780049479e-06 +UniRef50_A3SID6 Cation transport protein ChaC, putative 1.74670463075e-05 2.16788182281e-05 4.2117719206e-06 +UniRef50_UPI0002375A77 extracellular solute binding protein 3.40710149843e-05 0.000118570169965 8.44991549807e-05 +UniRef50_Q49VQ7 7 cyano 7 deazaguanine synthase 0.00806521111542 0.0048059425412 -0.00325926857422 +UniRef50_L6MLX7 Nitrate reductase Z subunit beta 5.31724348327e-05 9.65891227545e-05 4.34166879218e-05 +UniRef50_R4GKP1 4.9299173365e-05 5.87200702166e-06 -4.34271663433e-05 +UniRef50_E4RQB3 9.97499405749e-05 4.37307969438e-05 -5.60191436311e-05 +UniRef50_B7GYT0 Ribonuclease 3 0.000172393362484 0.00721667229284 0.00704427893036 +UniRef50_F8DL52 Rhodanese like protein 1.33248896037e-05 4.92388941969e-05 3.59140045932e-05 +UniRef50_I6TRN9 0.00693633553132 0.00222237314395 -0.00471396238737 +UniRef50_A7B8Z2 Cell wall binding repeat protein 1.3932031632e-06 0.00270170017441 0.00270030697125 +UniRef50_UPI0003764F6C hypothetical protein 1.22795300099e-05 4.83845410668e-05 3.61050110569e-05 +UniRef50_D7GE62 ATP dependent helicase 0.00025397269057 0.00568920690393 0.00543523421336 +UniRef50_U6KE00 6.91272852732e-06 2.06300261578e-05 1.37172976305e-05 +UniRef50_J2YGZ8 FAD dependent oxidoreductase 2.23039762679e-05 0.00228928990928 0.00226698593301 +UniRef50_UPI000365642F hypothetical protein 0.000109000725988 4.04795181971e-05 -6.85212077909e-05 +UniRef50_P00148 Cytochrome c 0.00765824938661 0.000919082695981 -0.00673916669063 +UniRef50_Q5HRL1 0.0114621021255 0.00453243147221 -0.00692967065329 +UniRef50_E3A2F6 0.00245090097262 0.00223511229618 -0.00021578867644 +UniRef50_Q0C2D0 Peptidyl tRNA hydrolase 4.52633397422e-05 2.91375234034e-05 -1.61258163388e-05 +UniRef50_UPI00046FE521 hypothetical protein 4.3759171598e-06 6.2115372859e-06 1.8356201261e-06 +UniRef50_M1MYZ3 Methyl accepting chemotaxis protein TlpC 0.000324649418513 0.000493596486554 0.000168947068041 +UniRef50_C1CXQ2 0.000266593902716 0.0333236553237 0.033057061421 +UniRef50_F8KQA4 Phospholipid binding protein 0.00018874299443 0.00623784617623 0.0060491031818 +UniRef50_UPI00045DC843 PREDICTED 1.85653597038e-05 9.28641798507e-05 7.42988201469e-05 +UniRef50_UPI000375A3E4 hypothetical protein 1.79743523816e-05 6.30039292273e-05 4.50295768457e-05 +UniRef50_A0RBY1 8.07209506317e-05 0.0018079607547 0.00172723980407 +UniRef50_U3T289 0.000310056570229 0.00536462497939 0.00505456840916 +UniRef50_J0JAX6 6.51987325532e-05 3.00506865576e-05 -3.51480459956e-05 +UniRef50_B9TMP1 5.43559444234e-06 0.000222042635489 0.000216607041047 +UniRef50_F4ED07 Ribosomal protein L7Ae L30e S12e Gadd45 0.000425736077648 0.000661156802679 0.000235420725031 +UniRef50_A5UJE1 0.00275099529625 0.000167793582503 -0.00258320171375 +UniRef50_G0DRR1 0.000588148512511 0.00216699033911 0.0015788418266 +UniRef50_UPI0003DF491B PREDICTED 2.90374386356e-06 2.37067446649e-05 2.08030008013e-05 +UniRef50_A3CLV1 0.00628972659019 0.00324213009939 -0.0030475964908 +UniRef50_UPI00037FE503 hypothetical protein 0.000390842627692 3.54248857044e-05 -0.000355417741988 +UniRef50_I6U158 0.00494516401457 0.000346751512944 -0.00459841250163 +UniRef50_UPI000373EEF8 MULTISPECIES 1.84981967927e-05 4.07988863808e-05 2.23006895881e-05 +UniRef50_UPI0003647A42 hypothetical protein 8.46230620889e-06 4.67913487571e-05 3.83290425482e-05 +UniRef50_J8V820 0.000322905958286 0.000168758027001 -0.000154147931285 +UniRef50_B7GVN1 Ribosomal RNA small subunit methyltransferase H 0.000190348590571 0.00703397757491 0.00684362898434 +UniRef50_S5ZQH2 4.56437616925e-05 0.00536708471361 0.00532144095192 +UniRef50_Q2RS21 Nickel import ATP binding protein NikD 0.00235669579698 0.000241732637264 -0.00211496315972 +UniRef50_B7JYJ9 Quinolinate synthase A 1.33474814719e-05 0.00173985370345 0.00172650622198 +UniRef50_U5RSM0 0.000521069616518 0.00119424906527 0.000673179448752 +UniRef50_R5FEK9 3.63194734268e-05 0.000884882185469 0.000848562712042 +UniRef50_A1VIU6 ATP synthase subunit a 0.000131071523907 0.000207725701201 7.6654177294e-05 +UniRef50_I8QU08 4.77851717485e-05 0.000202450957361 0.000154665785613 +UniRef50_UPI000329212D PREDICTED 0.000189659863134 3.16783074381e-05 -0.000157981555696 +UniRef50_P15047 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.00346408025147 0.000397664880272 -0.0030664153712 +UniRef50_UPI0001D2E7B0 Hemolysin type calcium binding region 1.11803027427e-05 5.60295394736e-06 -5.57734879534e-06 +UniRef50_P37439 PTS system glucose specific EIICB component 0.004142464285 0.00172404924137 -0.00241841504363 +UniRef50_A5UM83 Hydrogenase maturation factor, HypF 0.00234968631646 0.00152548570694 -0.00082420060952 +UniRef50_R6UTM8 1.35949819499e-05 2.59932886935e-05 1.23983067436e-05 +UniRef50_UPI0002ADB961 1.23235463975e-05 2.42462693968e-05 1.19227229993e-05 +UniRef50_Q5HQZ0 0.0131103479716 0.00310488144008 -0.0100054665315 +UniRef50_P32722 Porin D 0.000916558785393 0.00100090428843 8.4345503037e-05 +UniRef50_UPI0004661A11 3 5 exonuclease 7.10425737099e-05 0.00144890115476 0.00137785858105 +UniRef50_N0B552 HupH hydrogenase expression protein 0.000150600057615 3.2782478053e-05 -0.000117817579562 +UniRef50_UPI00035DB243 hypothetical protein 2.28332697156e-05 1.96762052644e-05 -3.1570644512e-06 +UniRef50_A0A030TPT1 0.000527371275902 0.000328091711381 -0.000199279564521 +UniRef50_A5UKE8 Type II secretion system protein F, GspF 0.002061537307 0.000325119308468 -0.00173641799853 +UniRef50_UPI000479F301 hypothetical protein 3.50860868992e-05 8.44838057622e-06 -2.6637706323e-05 +UniRef50_A6LUH2 Alanine racemase 0.000171066158086 0.000606425617678 0.000435359459592 +UniRef50_A5IVF9 Mg2+ transporter protein, CorA family protein 0.0220142577497 0.00418403523091 -0.0178302225188 +UniRef50_Q89XA0 3 isopropylmalate dehydrogenase 1 5.27731411045e-06 7.14496164088e-06 1.86764753043e-06 +UniRef50_B0VUU2 0.000172632652776 0.00848203621595 0.00830940356317 +UniRef50_Q8VVU3 Replication associated protein 0.0156344361669 0.00620062292766 -0.00943381323924 +UniRef50_E3A4C5 2.75693867163e-06 7.81516991353e-05 7.53947604637e-05 +UniRef50_A1SPT8 Phosphoribosylformylglycinamidine synthase 2 1.89351416906e-05 0.00217968614132 0.00216075099963 +UniRef50_S5RIW0 0.000229085035006 0.00233706388735 0.00210797885234 +UniRef50_UPI00036A417A hypothetical protein 0.000317915608956 0.000248023991515 -6.9891617441e-05 +UniRef50_O33259 Methionine synthase 2.56379121598e-06 7.17471628083e-05 6.91833715923e-05 +UniRef50_UPI00047BB1A3 hypothetical protein 1.39638587177e-05 8.65137120671e-05 7.25498533494e-05 +UniRef50_A6LRU6 0.000136112736362 0.00234870030592 0.00221258756956 +UniRef50_A6LRU7 0.000473412696177 0.00203037814871 0.00155696545253 +UniRef50_A1SVB2 3.6137383823e-05 0.00370206705049 0.00366592966667 +UniRef50_B0V786 0.000216945970609 0.0182036185133 0.0179866725427 +UniRef50_UPI0003B5372C TetR family transcriptional regulator 0.000356697056625 4.08908760697e-05 -0.000315806180555 +UniRef50_UPI0003B59C0B dihydroorotase 2.00723904639e-05 5.22738711286e-06 -1.4845003351e-05 +UniRef50_UPI00037651B9 hypothetical protein 1.22315692599e-05 0.00119615242555 0.00118392085629 +UniRef50_A6FKW5 3.00780998878e-05 2.38624979909e-05 -6.2156018969e-06 +UniRef50_UPI0002899E1F DNA mismatch repair protein MutS 3.97252134049e-06 5.50024096988e-05 5.10298883583e-05 +UniRef50_UPI00030D0981 hypothetical protein 5.31250666865e-06 0.000663296952683 0.000657984446014 +UniRef50_UPI00046F9613 hypothetical protein 5.36744908996e-06 5.00021355613e-06 -3.6723553383e-07 +UniRef50_Q73D76 4.30636082256e-05 0.000164216888892 0.000121153280666 +UniRef50_UPI00046CFC68 hypothetical protein 2.83228030063e-05 0.000207084000656 0.00017876119765 +UniRef50_Q0VN76 PhoH family protein 0.000997252693451 0.000295201448707 -0.000702051244744 +UniRef50_Q8H580 9.2087217049e-05 3.24395649477e-05 -5.96476521013e-05 +UniRef50_D7B233 1.68705425893e-05 1.65801358349e-05 -2.904067544e-07 +UniRef50_UPI000289E08F glutathione ABC transporter substrate binding protein GsiB 2.27080401129e-05 2.41766017171e-05 1.4685616042e-06 +UniRef50_A6M367 Extracellular solute binding protein, family 1 0.000490017689378 0.000421720443767 -6.8297245611e-05 +UniRef50_M3DCH5 3 deoxy D manno octulosonic acid 8 phosphate synthase 2.94283067293e-05 5.30833351331e-05 2.36550284038e-05 +UniRef50_UPI0003B45A6F MULTISPECIES 0.000155705562304 8.44071788382e-05 -7.12983834658e-05 +UniRef50_A6Q773 50S ribosomal protein L19 0.0236262437361 0.000735228311697 -0.0228910154244 +UniRef50_Q28MI3 0.000235525447874 2.40717833819e-05 -0.000211453664492 +UniRef50_Q28MI2 8.87149931269e-05 3.61383847973e-05 -5.25766083296e-05 +UniRef50_UPI0004696A5C glyceraldehyde 3 phosphate dehydrogenase 9.18406024137e-05 4.96701491977e-05 -4.2170453216e-05 +UniRef50_Q03UP2 Aryl alcohol dehydrogenase family enzyme 0.00556827580353 0.00287911864757 -0.00268915715596 +UniRef50_D5ZLN9 Predicted protein 4.53374215072e-05 2.58598590777e-05 -1.94775624295e-05 +UniRef50_A5ULA0 Multidrug ABC transporter, ATPase component 0.00380683345404 0.00102260498507 -0.00278422846897 +UniRef50_F0YBG4 2.60529422634e-06 9.39380051857e-06 6.78850629223e-06 +UniRef50_P59495 Glutathione synthetase 6.14820115543e-05 1.09680640788e-05 -5.05139474755e-05 +UniRef50_UPI0003D30C55 sulfoxide reductase heme binding subunit yedz 5.63469727133e-05 1.63265863384e-05 -4.00203863749e-05 +UniRef50_N6Z631 Cytosine deaminase 0.000543536161781 0.000332660204175 -0.000210875957606 +UniRef50_Q9HZK8 Na translocating NADH quinone reductase subunit C 0.000948779344854 0.000322552694912 -0.000626226649942 +UniRef50_UPI0002B49D99 PREDICTED 1.02818443732e-05 2.63854480093e-05 1.61036036361e-05 +UniRef50_P0A8Z9 Esterase YqiA 0.00122407307144 0.000726425818614 -0.000497647252826 +UniRef50_UPI0003458FD8 hypothetical protein 1.8023635718e-05 4.63878449032e-05 2.83642091852e-05 +UniRef50_K0HFH6 0.000293382892887 0.00532954987164 0.00503616697875 +UniRef50_Q3J266 0.00401887937646 0.00147899144678 -0.00253988792968 +UniRef50_Q3J267 0.00233338886165 0.000342648156063 -0.00199074070559 +UniRef50_M9VDE3 ABC transporter 0.000142809746505 0.00567602304324 0.00553321329673 +UniRef50_Q8CU42 Carbamate kinase 2 0.0122333741852 0.00575793985231 -0.00647543433289 +UniRef50_F7YL25 Thiamine binding protein 0.00194503454444 0.000277727308957 -0.00166730723548 +UniRef50_E8QNM4 0.000111753251029 0.00348421551617 0.00337246226514 +UniRef50_H8L2K5 Phage tail sheath protein FI 0.00111117451391 0.00114957701733 3.840250342e-05 +UniRef50_A2RCF8 Ribonuclease P protein component 0.00186152913728 0.00104321338437 -0.00081831575291 +UniRef50_G7U4V3 Oxidoreductase, Gfo Idh MocA family protein 0.000138781613551 0.00637509469001 0.00623631307646 +UniRef50_P39365 Putative permease IIC component 0.00301314573935 0.000139629647843 -0.00287351609151 +UniRef50_UPI00034B692F hypothetical protein 1.09266394512e-05 5.06024177953e-06 -5.86639767167e-06 +UniRef50_UPI00047130C0 hypothetical protein 6.32803965929e-05 5.64194487772e-05 -6.8609478157e-06 +UniRef50_X6KZ77 0.000562266550961 0.000260860702499 -0.000301405848462 +UniRef50_UPI0004651C83 hypothetical protein 2.60498876052e-05 2.59308762719e-05 -1.190113333e-07 +UniRef50_UPI0003B2E3F6 DNA polymerase III subunit alpha 7.28137946038e-06 2.8354446112e-06 -4.44593484918e-06 +UniRef50_C1DRR2 3 phosphoshikimate 1 carboxyvinyltransferase 0.000685481902221 0.000795735973312 0.000110254071091 +UniRef50_F0XXB3 0.000106792685367 0.000198210538999 9.1417853632e-05 +UniRef50_W0YJM1 Putative TonB dependent receptor 0.000328008067129 0.000405190701873 7.7182634744e-05 +UniRef50_E2XUN1 Iron containing alcohol dehydrogenase 0.00112123478886 0.000816680140779 -0.000304554648081 +UniRef50_D8MEB7 Serine rich repeat protein 2.59948188583e-06 6.53885502903e-06 3.9393731432e-06 +UniRef50_Q8H3H1 0.000294329214524 2.73132470593e-05 -0.000267015967465 +UniRef50_A1B945 Glutamate racemase 0.000113865216658 0.000100996588728 -1.286862793e-05 +UniRef50_Q1IXY0 DNA polymerase of the X family containing C terminal PHP hydrolase domain 6.80563681868e-05 0.00555368635114 0.00548562998295 +UniRef50_UPI000363D712 hypothetical protein 5.64554493897e-05 0.000276817518846 0.000220362069456 +UniRef50_A0A037W4W5 3.41352956428e-05 1.42529408535e-05 -1.98823547893e-05 +UniRef50_A6LQ35 Cyclase family protein 0.000775656141478 0.000921800269252 0.000146144127774 +UniRef50_W1HHP3 Ribose ABC transporter, periplasmic ribose binding protein RbsB 0.00046375043112 7.0702896632e-05 -0.000393047534488 +UniRef50_B0UBE5 NAD dependent epimerase dehydratase 0.000299578219869 0.000188700770092 -0.000110877449777 +UniRef50_W0YRT6 Putative phosphatase 0.00033516374106 0.000190875411799 -0.000144288329261 +UniRef50_C9RRF6 von Willebrand factor type A 0.00790326671147 0.000703346168896 -0.00719992054257 +UniRef50_UPI00036F1B6D hypothetical protein 5.2016679182e-05 2.12509484603e-05 -3.07657307217e-05 +UniRef50_Q4FRK9 N acetyl gamma glutamyl phosphate reductase 0.000550735507107 0.0100520141822 0.00950127867509 +UniRef50_B5F4E2 Fatty acid metabolism regulator protein 0.00225678985915 0.00274263208003 0.00048584222088 +UniRef50_A6QFE8 0.0199393980434 0.00840442294886 -0.0115349750945 +UniRef50_O29388 Probable amidophosphoribosyltransferase 0.000516832228728 0.000903138373516 0.000386306144788 +UniRef50_UPI0002192A6F hypothetical protein, partial 4.63514613452e-05 6.41552819661e-05 1.78038206209e-05 +UniRef50_U5MW64 Diguanylate cyclase and metal dependent phosphohydrolase 0.00035747651459 0.000840571999087 0.000483095484497 +UniRef50_M7DL42 Type I restriction modification system, specificity determinant 0.00541487252299 0.00223062602793 -0.00318424649506 +UniRef50_B9KJA0 Acetyl CoA hydrolase 0.00946553154836 0.0014150338646 -0.00805049768376 +UniRef50_UPI0002003A9E L serine ammonia lyase, partial 1.96088494963e-05 0.000202295259513 0.000182686410017 +UniRef50_UPI000469BD09 hypothetical protein 2.73897386692e-05 1.46430802207e-05 -1.27466584485e-05 +UniRef50_B5YJ32 Elongation factor P 9.87868361822e-06 3.56460190837e-05 2.57673354655e-05 +UniRef50_Q8P1D8 0.00588093440391 0.00116547973889 -0.00471545466502 +UniRef50_UPI0003B5C7ED histidine kinase, partial 5.54160302854e-05 0.00516405219345 0.00510863616316 +UniRef50_Q8E7L9 Adapter protein MecA 0.000184439408233 0.000235312115686 5.0872707453e-05 +UniRef50_J0EKQ4 0.000544450945461 0.000443205038943 -0.000101245906518 +UniRef50_Q49YT7 Ferritin 0.0109082595338 0.00248498315549 -0.00842327637831 +UniRef50_R0ESP5 Replication initiation protein RepC 0.00032405888911 4.00430322278e-05 -0.000284015856882 +UniRef50_Q2LUE0 Tryptophan synthase alpha chain 1.45735328541e-05 5.42814606691e-06 -9.14538678719e-06 +UniRef50_E8SIH2 Cysteine desulfurase 0.0289048267827 0.00639126715288 -0.0225135596298 +UniRef50_U6LM07 Transportin, putative 1.05499274558e-06 0.000358658140367 0.000357603147621 +UniRef50_Q4L4T7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0213467713986 0.00482954677885 -0.0165172246198 +UniRef50_A8Z4C3 9.24953798595e-05 0.000545910648302 0.000453415268442 +UniRef50_Q8CNM7 Ser Asp rich fibrinogen binding protein 0.0128466320814 0.00327703494994 -0.00956959713146 +UniRef50_UPI000410849B hypothetical protein 4.71534871703e-05 1.58472817266e-05 -3.13062054437e-05 +UniRef50_K8EKX2 DNA 3 methylpurine glycosylase 0.000134177484187 0.00155608945971 0.00142191197552 +UniRef50_UPI00031BCDF1 hypothetical protein 8.14589267407e-06 0.000494525980692 0.000486380088018 +UniRef50_B0V5G5 0.000725701070767 0.00702175553421 0.00629605446344 +UniRef50_Q98C73 Mll5269 protein 0.00233615701709 0.00112865405765 -0.00120750295944 +UniRef50_UPI0003AD207F hypothetical protein 2.9460439771e-06 5.93182510478e-05 5.63722070707e-05 +UniRef50_M1N642 Transcriptional regulator, TetR family 0.000190009725932 0.00196949366017 0.00177948393424 +UniRef50_UPI00037F1905 hypothetical protein 1.72336501293e-05 6.85726130118e-06 -1.03763888281e-05 +UniRef50_G7M799 Signal transduction histidine kinase, LytS 0.00115930237388 0.0017832294396 0.00062392706572 +UniRef50_Q5FRT7 Peptidyl tRNA hydrolase 7.24277916288e-05 3.53587290098e-05 -3.7069062619e-05 +UniRef50_Q6ABX1 Replicative DNA helicase 9.08874772519e-05 0.00818994932366 0.00809906184641 +UniRef50_A0KZD8 Glucose 1 phosphate adenylyltransferase 1.0929205567e-05 2.37085077764e-05 1.27793022094e-05 +UniRef50_B9KTQ6 TRAP T family transporter, large inner membrane subunit 0.00381999849935 0.000307463663354 -0.003512534836 +UniRef50_A1KKI2 Dihydroorotate dehydrogenase 5.820659425e-06 6.96606713835e-06 1.14540771335e-06 +UniRef50_UPI00030DA7F9 thioredoxin 0.000339479509458 0.000207784924361 -0.000131694585097 +UniRef50_K9ERP2 6.51849752047e-06 2.14195184547e-05 1.49010209342e-05 +UniRef50_A0A023RSC8 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.000211725075906 0.00344782874165 0.00323610366574 +UniRef50_J7N582 3.08504985742e-05 0.00309070888943 0.00305985839086 +UniRef50_Q6N6C1 Ribonuclease 3 1.58274438912e-05 1.30235498012e-05 -2.80389409e-06 +UniRef50_Q8CR64 0.0112002390839 0.00360771804439 -0.00759252103951 +UniRef50_D5BRY1 Trimethylamine methyltransferase MttB like protein 0.00465065265852 0.00165498210449 -0.00299567055403 +UniRef50_B9KX93 ParB like nuclease 3.86496640219e-05 0.000226875829852 0.00018822616583 +UniRef50_B6J667 Arginine tRNA ligase 3.17083194595e-06 7.91840525252e-06 4.74757330657e-06 +UniRef50_A0RJK0 Malate dehydrogenase 0.0113140302627 0.00309514517328 -0.00821888508942 +UniRef50_P9WHH0 Thioredoxin reductase 7.24085468987e-05 0.000111937120171 3.95285732723e-05 +UniRef50_G8S3A0 Zonadhesin 6.51586862235e-05 1.55159507712e-05 -4.96427354523e-05 +UniRef50_UPI0003B45B4C porphyrin biosynthesis protein HemD 3.7267613486e-06 1.05788362479e-05 6.8520748993e-06 +UniRef50_UPI0002D482D7 hypothetical protein 4.90027264004e-05 0.000332736312694 0.000283733586294 +UniRef50_F4MZ90 0.000106130995183 0.000117132006168 1.1001010985e-05 +UniRef50_Q3IWQ9 0.000591599765443 0.000643532891962 5.1933126519e-05 +UniRef50_B2TK25 Ribosomal protein alanine acetyltransferase 0.000522528263136 0.00220179936463 0.00167927110149 +UniRef50_UPI0002F7E60E hypothetical protein 8.03853303153e-05 7.88351408466e-05 -1.5501894687e-06 +UniRef50_P37498 9.4766357036e-05 0.0021519156283 0.00205714927126 +UniRef50_P37497 0.000449726431648 0.000864936928866 0.000415210497218 +UniRef50_M8Y264 Inner membrane transporter ygjI 9.13272553671e-05 0.000150671788373 5.93445330059e-05 +UniRef50_A3M617 0.000267720559474 0.00223904450587 0.0019713239464 +UniRef50_Q3IXS5 0.00283033569829 0.00315322674608 0.00032289104779 +UniRef50_Q98DN4 Non canonical purine NTP pyrophosphatase 0.000126005386141 3.68436427288e-05 -8.91617434122e-05 +UniRef50_Q8RFX8 tRNA N6 adenosine threonylcarbamoyltransferase 1.11875605072e-05 3.24009683361e-06 -7.94746367359e-06 +UniRef50_UPI0003642424 hypothetical protein 0.00028420229073 5.67957048102e-05 -0.00022740658592 +UniRef50_P26208 Beta glucosidase A 3.21071776104e-06 8.54588592476e-06 5.33516816372e-06 +UniRef50_N0BCG1 Thioesterase superfamily protein 1.37161196875e-05 0.000540150306769 0.000526434187082 +UniRef50_UPI0003B6024A amidohydrolase 1.16630095649e-05 1.99861919805e-05 8.3231824156e-06 +UniRef50_I0C5D3 0.00294346456335 0.000584785554841 -0.00235867900851 +UniRef50_P32444 MreB like protein 0.000388095115748 0.00939529103395 0.0090071959182 +UniRef50_UPI0003B44D54 hypothetical protein, partial 3.231654542e-06 1.55313984278e-05 1.22997438858e-05 +UniRef50_UPI00047E3099 antitermination protein NusG 3.19485371456e-05 0.000718119465745 0.000686170928599 +UniRef50_O54479 DNA topoisomerase 4 subunit B 4.06104526265e-06 7.73769783026e-06 3.67665256761e-06 +UniRef50_A0A033LNC5 Plasmid recombination enzyme type 3 0.0010767727695 0.000303304278421 -0.000773468491079 +UniRef50_F9YWG0 0.000703390041336 0.00344074685892 0.00273735681758 +UniRef50_Q836B6 Membrane protein 1.94542757785e-05 0.00188197701013 0.00186252273435 +UniRef50_F6E617 1.93742648487e-05 8.8250253285e-06 -1.05492395202e-05 +UniRef50_Q9JXS4 Membrane protein insertase YidC 8.89597774156e-05 0.00239224766876 0.00230328789134 +UniRef50_S0ZBX9 FhuE receptor 0.00343515259148 0.00159065668768 -0.0018444959038 +UniRef50_V8FSB8 Chitinase 0.000143052151964 0.00186008668324 0.00171703453128 +UniRef50_F6BYP3 Soluble epoxide hydrolase 0.000332022841676 0.000298299702217 -3.3723139459e-05 +UniRef50_N6YQC2 NAD specific glutamate dehydrogenase 5.18265812319e-05 4.17822705968e-05 -1.00443106351e-05 +UniRef50_M5EIH7 0.000269597361079 0.000211517762764 -5.8079598315e-05 +UniRef50_Q9F1K0 DNA polymerase III subunit alpha 0.0118030692909 0.00234609896372 -0.00945697032718 +UniRef50_Q3Z7J2 DNA methylase 0.000402913677185 0.000872582720359 0.000469669043174 +UniRef50_UPI000463CA0D hypothetical protein 0.000183518623069 2.58781360691e-05 -0.000157640487 +UniRef50_A6LXM6 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.000125968628095 0.00236280055991 0.00223683193182 +UniRef50_E6KS29 8.91168977822e-05 0.00645756586073 0.00636844896295 +UniRef50_D6UC71 0.00066629616825 3.24591100703e-05 -0.00063383705818 +UniRef50_B8JAU2 Peptide chain release factor 1 0.000319120933889 0.00521291326167 0.00489379232778 +UniRef50_UPI0003B32316 flagellar P ring protein FlgI 7.36970633485e-06 1.49242733809e-05 7.55456704605e-06 +UniRef50_P76594 0.00177605367585 0.000720319967982 -0.00105573370787 +UniRef50_B7GV54 Probable allantoicase 0.000167771550603 0.00504667208343 0.00487890053283 +UniRef50_K8E4H2 Transcription termination factor NusA 0.00157035508195 0.00354535485164 0.00197499976969 +UniRef50_Q8X958 0.0022824864527 0.00123949875793 -0.00104298769477 +UniRef50_M4D1J6 3.83473347309e-05 0.000415188416117 0.000376841081386 +UniRef50_W1W4W6 Fibrinogen binding protein 7.08146216309e-05 4.6848854273e-05 -2.39657673579e-05 +UniRef50_UPI0003B49B6A aminoglycoside resistance protein 6.57446914222e-06 9.91654400867e-06 3.34207486645e-06 +UniRef50_M4IFW7 0.000236270519647 7.59540531662e-05 -0.000160316466481 +UniRef50_W1IYA0 2.66037451308e-06 7.86653808263e-06 5.20616356955e-06 +UniRef50_A0A011NJ23 3.80912136999e-06 1.41565822079e-05 1.03474608379e-05 +UniRef50_D7GGE9 Glyoxalase bleomycin resistance protein dioxygenase 0.000786429143437 0.0350020384246 0.0342156092812 +UniRef50_P94558 Non canonical purine NTP pyrophosphatase 8.57356079452e-05 2.12877795506e-05 -6.44478283946e-05 +UniRef50_C1DMW2 Apolipoprotein N acyltransferase 0.000658577891726 0.000428888196953 -0.000229689694773 +UniRef50_Q7U836 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000275589461605 0.000429094424593 0.000153504962988 +UniRef50_UPI0002893D0F integrase catalytic subunit 0.000630060806927 2.65757676359e-05 -0.000603485039291 +UniRef50_Q47HX8 BRO, N terminal 8.53595661837e-05 2.43852100651e-05 -6.09743561186e-05 +UniRef50_Q9I122 8.14717961515e-05 7.55648366401e-05 -5.9069595114e-06 +UniRef50_UPI000467C382 hypothetical protein, partial 1.7205564345e-05 2.8946862243e-05 1.1741297898e-05 +UniRef50_Q1QM99 Bifunctional enzyme IspD IspF 5.72157068923e-06 8.19997713861e-06 2.47840644938e-06 +UniRef50_H8GX99 Minor tail protein gp26 related protein 1.22357445078e-05 0.00237500198363 0.00236276623912 +UniRef50_UPI0003150799 hypothetical protein 7.16677369495e-06 0.0010623551574 0.00105518838371 +UniRef50_A5UK29 Predicted DNA modification methylase 0.0031050708363 0.000536718182534 -0.00256835265377 +UniRef50_U2FHG3 0.000221121022929 0.000301386404106 8.0265381177e-05 +UniRef50_A0A011QRD8 2.87540708244e-05 0.000458123897433 0.000429369826609 +UniRef50_UPI00036BFACB hypothetical protein 2.12640813726e-05 1.89001960121e-06 -1.93740617714e-05 +UniRef50_X7YZZ8 Secretory lipase family protein 1.45302078434e-05 1.26563758911e-05 -1.8738319523e-06 +UniRef50_Q54800 UTP glucose 1 phosphate uridylyltransferase 0.000311862247187 0.000117392733756 -0.000194469513431 +UniRef50_R9SMD3 0.00341750059888 0.000696166975294 -0.00272133362359 +UniRef50_UPI000470CD83 cell division protein FtsZ 1.20496486528e-05 1.5034923146e-05 2.9852744932e-06 +UniRef50_Q28RD6 Ribosomal RNA small subunit methyltransferase A 0.00289946658605 0.00268393358856 -0.00021553299749 +UniRef50_UPI0004750A2D gas vesicle protein 4.41991053582e-05 9.4393944192e-05 5.01948388338e-05 +UniRef50_UPI0002BA7CDC hypothetical protein, partial 0.000731463294014 0.000185035929831 -0.000546427364183 +UniRef50_UPI00047D5FC6 hypothetical protein 4.5162956086e-05 3.04948972678e-05 -1.46680588182e-05 +UniRef50_UPI0003AA219E hypothetical protein 0.000120631958295 0.000177069892924 5.6437934629e-05 +UniRef50_P22939 Farnesyl diphosphate synthase 0.00312635788628 0.00285008169582 -0.00027627619046 +UniRef50_D3QDI5 0.0129653403119 0.0013258776586 -0.0116394626533 +UniRef50_Q2RSB2 NAD transhydrogenase subunit alpha part 1 0.000201236462023 0.0102328570823 0.0100316206203 +UniRef50_R6EN42 Selenium dependent molybdenum hydroxylase 1 0.000594656477845 0.00150534575444 0.000910689276595 +UniRef50_D4HEA1 Hydrolase, NUDIX family 0.000403539301834 0.00620362742993 0.0058000881281 +UniRef50_UPI00025560C0 dihydropyrimidine dehydrogenase subunit A 1.15072816461e-05 3.02805556708e-05 1.87732740247e-05 +UniRef50_Z6NTK4 4.74316208288e-05 0.00180806146039 0.00176062983956 +UniRef50_P31672 NifS IcsS protein homolog 0.00382850273939 0.0020865021916 -0.00174200054779 +UniRef50_Q8CQ61 Mercuric reductase like protein 0.0210919927057 0.00358806324045 -0.0175039294652 +UniRef50_Q1QE74 1 deoxy D xylulose 5 phosphate synthase 2.37149062373e-06 9.97685745486e-06 7.60536683113e-06 +UniRef50_UPI0002193BBE ribonucleotide diphosphate reductase subunit alpha, partial 4.15251596048e-05 0.00781014792494 0.00776862276534 +UniRef50_C7MAW1 Ferritin like protein 0.000219044094112 0.00335669577408 0.00313765167997 +UniRef50_Q6GCR4 FMN dependent NADH azoreductase 0.0107569970558 0.00308064544506 -0.00767635161074 +UniRef50_UPI0002000E25 3 hydroxybutyrate dehydrogenase 9.74184696341e-05 4.87616428808e-05 -4.86568267533e-05 +UniRef50_Q5HRI8 Hydrolase, haloacid dehalogenase like family 0.0219191948775 0.00717344310014 -0.0147457517774 +UniRef50_UPI0003099509 hypothetical protein 1.32549338813e-05 9.60880601117e-06 -3.64612787013e-06 +UniRef50_U5MWZ3 HTH type transcriptional regulator GlvR 0.00029414691084 0.00024372767966 -5.041923118e-05 +UniRef50_UPI00037E3C64 hypothetical protein 0.000109251194106 0.0003534458039 0.000244194609794 +UniRef50_UPI0003634D70 glutathione synthetase 3.91675247402e-05 2.90444991552e-05 -1.0123025585e-05 +UniRef50_A0A038FYY7 0.000233091636094 2.27798263378e-05 -0.000210311809756 +UniRef50_C9SB93 Predicted protein 9.26689968771e-05 2.09375278016e-05 -7.17314690755e-05 +UniRef50_UPI000050F857 peptide ABC transporter ATPase 1.29348605029e-05 5.34676616222e-06 -7.58809434068e-06 +UniRef50_UPI000328D76F PREDICTED 8.08509800443e-06 2.38466608707e-05 1.57615628663e-05 +UniRef50_S6BC90 0.00713667380605 0.0017176893057 -0.00541898450035 +UniRef50_L6YLT0 Pheromone autoinducer 2 transporter 0.000111981204558 2.47322297618e-05 -8.72489747962e-05 +UniRef50_UPI0004077040 hypothetical protein 1.32803496355e-05 2.69428624307e-05 1.36625127952e-05 +UniRef50_A0A028CJ48 Type IV fimbrial assembly protein PilC 0.00194067913801 0.000211949788416 -0.00172872934959 +UniRef50_Q6GJR0 UPF0355 protein MRSA252 0.00443737335821 0.000875012459831 -0.00356236089838 +UniRef50_G8RDK6 0.0154599776358 0.000423899576834 -0.015036078059 +UniRef50_Q14P38 Hypothetical glucose inhibited protein n terminal and c terminal truncated 1.41119440627e-05 2.31265807809e-05 9.0146367182e-06 +UniRef50_Q8CPD8 Cardiolipin synthase 1 0.0100857979182 0.00365707694915 -0.00642872096905 +UniRef50_F0PBS4 PTS system, IIC component 0.000136770285816 0.000326316801329 0.000189546515513 +UniRef50_D4HDK7 0.000180903828528 0.00778319479267 0.00760229096414 +UniRef50_Q8CN46 Para nitrobenzyl esterase chain A 0.0172311438625 0.00526992318813 -0.0119612206744 +UniRef50_A6LQ09 0.00066991763206 0.00123406324237 0.00056414561031 +UniRef50_Q50028 Amidophosphoribosyltransferase 8.05744746907e-06 9.35200774792e-05 8.54626300101e-05 +UniRef50_R4QJK7 MFS transporter 9.83036429352e-05 0.00319199577081 0.00309369212787 +UniRef50_Q87Q74 Imidazolonepropionase 0.000102857217666 0.00765379509256 0.00755093787489 +UniRef50_P0C7I7 Succinyl CoA 0.000212252091912 0.000118245936551 -9.4006155361e-05 +UniRef50_X1Y946 Translation factor GUF1 homolog, mitochondrial 1.21292830404e-05 4.90522478435e-06 -7.22405825605e-06 +UniRef50_Q985R7 Mlr7559 protein 2.83690946718e-06 3.98673524484e-06 1.14982577766e-06 +UniRef50_P47691 UTP glucose 1 phosphate uridylyltransferase 0.000217607645211 8.03295264533e-05 -0.000137278118758 +UniRef50_D8K235 DNA gyrase subunit A 8.04138150306e-06 1.5984467948e-05 7.94308644494e-06 +UniRef50_Q5ZY07 Tyrosine tRNA ligase 0.00150561129129 0.00516109050061 0.00365547920932 +UniRef50_Q8CP00 Truncated transposase 4.78012896264e-05 0.00182670126925 0.00177889997962 +UniRef50_UPI0003B60438 ABC transporter 7.11122879581e-05 3.24187566549e-05 -3.86935313032e-05 +UniRef50_UPI00047C8194 PTS fructose transporter subunit IIC, partial 0.000380747750328 0.00100627540486 0.000625527654532 +UniRef50_UPI000370B249 hypothetical protein 7.3371337306e-05 2.17347598294e-05 -5.16365774766e-05 +UniRef50_P47203 Cell division protein FtsA 0.000817907866714 0.00096279209358 0.000144884226866 +UniRef50_E2RPM1 1.77946294791e-05 0.000152618452293 0.000134823822814 +UniRef50_I0ETC3 0.000173689872173 0.00304514785587 0.0028714579837 +UniRef50_S3ASG0 0.000205678611677 0.000204843957368 -8.34654309e-07 +UniRef50_U7QZ50 2.97044685065e-05 1.41328971289e-05 -1.55715713776e-05 +UniRef50_A0NWG0 0.000492472452184 0.00133832246948 0.000845850017296 +UniRef50_D6SE59 Transcriptional regulator, GntR family 0.0121394162887 0.00212499713052 -0.0100144191582 +UniRef50_F4FR09 Succinate semialdehyde dehydrogenase (+)) 0.00871020571909 0.00191572780956 -0.00679447790953 +UniRef50_Q8XNK5 Tagatose 6 phosphate kinase 0.0250734245553 0.0064086872466 -0.0186647373087 +UniRef50_UPI000407C5D8 acyl CoA dehydrogenase 1.74269428e-05 4.15848954229e-05 2.41579526229e-05 +UniRef50_UPI0003690E4C ATPase, partial 0.0011266004134 7.83151932378e-05 -0.00104828522016 +UniRef50_B9AFH1 7.45618551809e-05 1.30355088166e-05 -6.15263463643e-05 +UniRef50_F6D286 Glycosyl transferase family 2 0.00228073329637 0.000699684090318 -0.00158104920605 +UniRef50_A6LXN5 Methyl accepting chemotaxis sensory transducer 0.000227945118015 0.00136200969454 0.00113406457652 +UniRef50_P77316 0.0117604719164 0.006644245834 -0.0051162260824 +UniRef50_P59626 Probable dihydroorotate dehydrogenase A 0.00603590507505 0.00709525803535 0.0010593529603 +UniRef50_A6M2U8 Methyl accepting chemotaxis sensory transducer 0.000375640604108 0.00273822716372 0.00236258655961 +UniRef50_P77318 0.00148311792614 0.000377721279616 -0.00110539664652 +UniRef50_G2RMW8 Acetylxylan esterase enzyme 0.000382381826815 0.00144537080383 0.00106298897702 +UniRef50_P60480 Isoprenyl transferase 1 0.000273540571632 0.00752340909078 0.00724986851915 +UniRef50_UPI0003808BDF hypothetical protein 2.96754254782e-06 0.000410890034081 0.000407922491533 +UniRef50_R4XZE6 Integral membrane protein 0.0001837331267 4.41403866548e-05 -0.000139592740045 +UniRef50_D7PDW2 RmlC 0.0218160111106 0.0054850596379 -0.0163309514727 +UniRef50_UPI00036788A9 hypothetical protein 4.25852773795e-05 2.19327890648e-05 -2.06524883147e-05 +UniRef50_Q2KZM3 Integration host factor subunit alpha 0.00102363426994 0.000611000079721 -0.000412634190219 +UniRef50_D1GN41 0.000177048591137 1.78116821735e-05 -0.000159236908963 +UniRef50_K1ZZ76 0.000129471578378 3.85052287397e-05 -9.09663496383e-05 +UniRef50_UPI0003B64AAF hydrogenase nickel incorporation protein HypA 0.000833060908762 6.71011738496e-05 -0.000765959734912 +UniRef50_UPI0004693869 hypothetical protein 3.35859695798e-05 3.35039691245e-05 -8.20004553e-08 +UniRef50_D9SVX2 Ion transport 2 domain protein 0.000318654513624 0.0019960143724 0.00167735985878 +UniRef50_M5DTK5 FMN oxidoreductase 0.000106234330817 0.00858893494279 0.00848270061197 +UniRef50_D3E3M3 RNA binding protein 0.00105861423623 0.00296794882833 0.0019093345921 +UniRef50_A9KCU3 Aspartate aminotransferase 9.25967266145e-05 0.00556275901368 0.00547016228707 +UniRef50_Q02JU1 Protein phosphatase CheZ 0.00149114289821 0.00163570894843 0.00014456605022 +UniRef50_Q8CNS6 Secretory antigen SsaA like protein 0.011082962571 0.0052096720672 -0.0058732905038 +UniRef50_UPI000402B9E3 methionyl tRNA formyltransferase 4.78971947736e-05 1.15107410921e-05 -3.63864536815e-05 +UniRef50_P80046 Isocitrate dehydrogenase [NADP] 0.0132358594195 0.0042534766752 -0.0089823827443 +UniRef50_Q9HHK0 Vng6359h 2.4449883858e-05 0.000102530749951 7.8080866093e-05 +UniRef50_H6U1K2 0.000109484242337 5.62970908979e-05 -5.31871514391e-05 +UniRef50_UPI0004676D4F hypothetical protein 4.04652937113e-06 0.000242242140974 0.000238195611603 +UniRef50_A6LX18 0.000399183219358 0.000789180981163 0.000389997761805 +UniRef50_Q8R9W1 Acyl carrier protein 4.82925544334e-05 0.000296622347216 0.000248329792783 +UniRef50_Q322I7 IS911 ORF2 3.891943817e-05 7.66018237618e-05 3.76823855918e-05 +UniRef50_W7WXB1 0.000182605614369 0.000885069547031 0.000702463932662 +UniRef50_G8WN72 Tetratricopeptide TPR_4 1.50219540583e-05 2.13185463301e-05 6.2965922718e-06 +UniRef50_UPI00046660B8 cobinamide adenolsyltransferase 0.000161230397139 0.00208486648215 0.00192363608501 +UniRef50_B5EZV0 Probable protein kinase UbiB 0.00320088833449 0.00149242452105 -0.00170846381344 +UniRef50_Q9RZR2 0.000287425879838 0.0187789073947 0.0184914815149 +UniRef50_UPI00047ADAC8 hypothetical protein 5.77294694377e-06 0.000161884680638 0.000156111733694 +UniRef50_P0ABR8 Putative dioxygenase subunit alpha YeaW 0.00288350644618 0.00679031030624 0.00390680386006 +UniRef50_G4LKP1 AraC family transcriptional regulator 0.00103952444466 0.000172531668084 -0.000866992776576 +UniRef50_Q9RZR8 0.00113303676326 0.158341167947 0.157208131184 +UniRef50_K0CFL0 2.72527822831e-05 3.61488997494e-05 8.8961174663e-06 +UniRef50_D4HCQ6 0.000390502747092 0.00326432554259 0.0028738227955 +UniRef50_A6M372 SH3, type 3 domain protein 0.000129128616484 0.00141398748134 0.00128485886486 +UniRef50_I1EBV8 2.38469521385e-05 0.00301175355727 0.00298790660513 +UniRef50_P0CE45 Glucuronide carrier protein 0.00271726228068 0.00163473681388 -0.0010825254668 +UniRef50_V7EQN7 5.61042367013e-05 1.56936735516e-05 -4.04105631497e-05 +UniRef50_A6W322 Transposase IS4 family protein 3.26690077532e-05 3.09878303438e-05 -1.6811774094e-06 +UniRef50_I6TWA3 Integral membrane protein 0.00670483481502 0.000740453155812 -0.00596438165921 +UniRef50_A0A022P2T6 0.000252946066768 7.94925630535e-05 -0.000173453503715 +UniRef50_P75728 2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.0029925394521 0.00265402550568 -0.00033851394642 +UniRef50_UPI0002FBC2B3 hypothetical protein 9.45348808271e-05 0.000135864749085 4.13298682579e-05 +UniRef50_U5MLY8 Periplasmic metal binding protein 0.000738162390631 0.00439164984525 0.00365348745462 +UniRef50_A4EN59 0.00139767420995 0.00050338074749 -0.00089429346246 +UniRef50_O30853 Pyruvate kinase I 0.00114877359079 0.00188384634257 0.00073507275178 +UniRef50_M9RKI9 Multidrug resistance protein 0.00399278537596 0.00141512970503 -0.00257765567093 +UniRef50_UPI0003A400F2 diaminohydroxyphosphoribosylaminopyrimidine deaminase 4.36234148132e-05 0.00025418971329 0.000210566298477 +UniRef50_D9PYH9 tRNA pseudouridine synthase Pus10 0.00213657975183 0.000147045662343 -0.00198953408949 +UniRef50_UPI000444934A hypothetical protein STEHIDRAFT_148098 1.71341464609e-05 2.18146737348e-05 4.6805272739e-06 +UniRef50_D1DJ22 2.46820239252e-05 0.000115362268151 9.06802442258e-05 +UniRef50_F0K4V5 Proline glycine betaine ABC type transport system, ATPase component 0.000695669353697 0.000491215608188 -0.000204453745509 +UniRef50_UPI00016C406D methylcitrate synthase 2.29927847324e-05 4.95925860547e-05 2.65998013223e-05 +UniRef50_UPI0003B5D4F6 hypothetical protein 1.31665866566e-05 2.06532255058e-05 7.4866388492e-06 +UniRef50_UPI00036DB78E hypothetical protein 0.000159089249315 3.94591102498e-05 -0.000119630139065 +UniRef50_Q2NAA1 4.28897515685e-06 6.71800854796e-06 2.42903339111e-06 +UniRef50_UPI00035ED814 hypothetical protein, partial 1.39391620064e-05 0.000160799853503 0.000146860691497 +UniRef50_UPI000373BE23 glyceraldehyde 3 phosphate dehydrogenase, partial 0.000183222535819 5.28532042217e-05 -0.000130369331597 +UniRef50_M9VD52 Efflux ABC transporter permease 5.18762238404e-05 0.0069319656701 0.00688008944626 +UniRef50_UPI00037FDD41 hypothetical protein 8.19069551971e-06 1.37281173828e-05 5.53742186309e-06 +UniRef50_I0GDF4 1.64033268748e-05 3.0410020518e-05 1.40066936432e-05 +UniRef50_S0AE89 Allophanate hydrolase AtzF 0.000337611916097 0.00729824214236 0.00696063022626 +UniRef50_D1NC80 0.000143575956807 5.44984247138e-05 -8.90775320932e-05 +UniRef50_UPI000442239B PREDICTED 1.6915460085e-05 0.000680029183118 0.000663113723033 +UniRef50_UPI0003FC0AD6 hypothetical protein 0.000151788253939 3.87734223892e-05 -0.00011301483155 +UniRef50_A7FNV8 Pimeloyl [acyl carrier protein] methyl ester esterase 0.00327254034239 0.00130909069981 -0.00196344964258 +UniRef50_A3JZS3 0.00019766040074 0.000313688679274 0.000116028278534 +UniRef50_E5CPU2 0.00177697564769 0.000390758585583 -0.00138621706211 +UniRef50_Q6GER3 Arginase 0.0125076170316 0.00141810767885 -0.0110895093528 +UniRef50_UPI000375E276 hypothetical protein 5.50145364519e-06 0.000138115146792 0.000132613693147 +UniRef50_D4HA59 Precorrin 6A synthase 0.000707502677738 0.00582490901771 0.00511740633997 +UniRef50_Q8CMZ3 2 dehydropantoate 2 reductase 0.00830883951017 0.00240740348744 -0.00590143602273 +UniRef50_UPI000361337E 30S ribosomal protein S5 1.2134212494e-05 1.81763538415e-05 6.0421413475e-06 +UniRef50_Q7NFC3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.00517132403331 0.00626246737375 0.00109114334044 +UniRef50_O34997 0.0183054763861 0.0053761287071 -0.012929347679 +UniRef50_G9WGT8 dTDP 4 dehydrorhamnose reductase 0.00907222853237 0.00292478934515 -0.00614743918722 +UniRef50_A7FAW9 0.000286255250654 0.00746640847699 0.00718015322634 +UniRef50_Q2FUW4 Accessory Sec system protein Asp2 0.0215119186918 0.00767607657642 -0.0138358421154 +UniRef50_A7FAW6 0.00014842175184 0.0137011994221 0.0135527776703 +UniRef50_A7FAW0 0.000582358090914 0.0136350344581 0.0130526763672 +UniRef50_A7FAW2 0.000373313578779 0.00872122293026 0.00834790935148 +UniRef50_R9SHN0 ABC transporter ATP binding protein 0.00278389426139 0.000337506030452 -0.00244638823094 +UniRef50_UPI00046352F2 hypothetical protein 1.45136677172e-05 1.84512413226e-05 3.9375736054e-06 +UniRef50_U3SSP8 0.00539114000969 0.00078162964425 -0.00460951036544 +UniRef50_UPI000366C569 hypothetical protein 0.000166569049624 3.54394713138e-05 -0.00013112957831 +UniRef50_UPI0003C16BB8 PREDICTED 1.61029536785e-05 2.73006163166e-05 1.11976626381e-05 +UniRef50_UPI000376CC75 hypothetical protein 0.000458270968608 0.000254982075216 -0.000203288893392 +UniRef50_A6UV64 30S ribosomal protein S19 0.00192898075128 0.000433227440392 -0.00149575331089 +UniRef50_Q9K0Q4 Beta hexosaminidase 5.00383185329e-06 0.00874156825064 0.00873656441879 +UniRef50_P37669 Inner membrane protein YiaH 0.00152577712655 0.000275996920751 -0.0012497802058 +UniRef50_U3SSP7 0.00638318592068 0.00507242298452 -0.00131076293616 +UniRef50_Q08QR2 ABC D methionine uptake transporter, substrate binding protein 3.76411238867e-05 2.08963529864e-05 -1.67447709003e-05 +UniRef50_X7F6B4 Membrane protein 9.75095939175e-06 2.02717284401e-05 1.05207690484e-05 +UniRef50_Q9RS79 Dipeptidyl peptidase IV related protein 0.000240627612955 0.0433269637271 0.0430863361141 +UniRef50_UPI000369B201 NADH 2.79896104986e-06 1.15976244304e-05 8.79866338054e-06 +UniRef50_UPI00036BA5B6 hypothetical protein 7.77735127234e-06 2.12370083188e-05 1.34596570465e-05 +UniRef50_A4A467 Type IV pilus biogenesis stability protein PilW 8.36324678114e-06 1.55344313008e-05 7.17118451966e-06 +UniRef50_D6SDK6 0.000244859079133 0.000177723192699 -6.7135886434e-05 +UniRef50_UPI00045E77FA MarR family transcriptional regulator 2.83046098879e-05 0.000184591410704 0.000156286800816 +UniRef50_R7PVC1 DNA helicase UvrD REP helicase family 0.00258092133347 0.00112856014145 -0.00145236119202 +UniRef50_P57527 0.00250056053256 0.000275139787458 -0.0022254207451 +UniRef50_P76219 TVP38 TMEM64 family membrane protein YdjX 0.0033828227249 0.000517120838683 -0.00286570188622 +UniRef50_G8V0Z4 0.00877412993885 0.00515987979217 -0.00361425014668 +UniRef50_UPI000383F1E5 PREDICTED 3.15361001781e-05 3.19561047692e-05 4.200045911e-07 +UniRef50_UPI000328DEDF PREDICTED 9.04831890783e-05 0.000160063254856 6.95800657777e-05 +UniRef50_B3EH06 Polyribonucleotide nucleotidyltransferase 7.78843028982e-06 6.37613110064e-06 -1.41229918918e-06 +UniRef50_K7RKE8 Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR 0.00018832569052 0.00630946895641 0.00612114326589 +UniRef50_Q57766 Formylmethanofuran tetrahydromethanopterin formyltransferase 0.00264523642331 0.000206034910605 -0.0024392015127 +UniRef50_A6M1R7 Methyl accepting chemotaxis sensory transducer 0.000863901800333 0.00179298914907 0.000929087348737 +UniRef50_Q5HPB5 Glucose specific phosphotransferase enzyme IIA component 0.0254539302591 0.00040920415787 -0.0250447261012 +UniRef50_A3SND6 ArsC family protein 0.000132792131607 9.15015893171e-05 -4.12905422899e-05 +UniRef50_A3PMB5 Large conductance mechanosensitive channel 0.0201084386923 0.00375054136981 -0.0163578973225 +UniRef50_B6AX96 0.000313884603069 9.19852653131e-05 -0.000221899337756 +UniRef50_A1KU06 Sulfite reductase [NADPH] flavoprotein alpha component 0.000127731434113 0.0033734789105 0.00324574747639 +UniRef50_M7E309 MDR permease 0.00460302035819 0.00150254674536 -0.00310047361283 +UniRef50_Q6F6V8 0.000498880161478 0.00878332463362 0.00828444447214 +UniRef50_UPI000344EB03 hypothetical protein 3.00953045403e-06 1.06341754032e-05 7.62464494917e-06 +UniRef50_M4S586 Beta lactamase domain containing protein 8.24029015742e-06 2.76703350653e-05 1.94300449079e-05 +UniRef50_H6LL43 0.000290185129516 7.36758633105e-05 -0.000216509266206 +UniRef50_F5XF11 Two component histidine kinase SenX3 0.000171066158086 0.00438125706264 0.00421019090455 +UniRef50_Q8CU74 0.00715247381234 0.00275936863705 -0.00439310517529 +UniRef50_F5WYS0 ICESt1 ORFD ATP GTP binding protein 0.000660051449838 8.84181752067e-05 -0.000571633274631 +UniRef50_UPI000360AFBD hypothetical protein 2.81811938373e-05 7.60395207207e-06 -2.05772417652e-05 +UniRef50_K7RZE6 Transcription termination antitermination protein NusG 0.000281006939596 0.00781113212247 0.00753012518287 +UniRef50_H8I846 Formate nitrite transporter 0.00462186480245 0.000221211015129 -0.00440065378732 +UniRef50_B9KPG8 1.79712611338e-05 2.77095231551e-06 -1.52003088183e-05 +UniRef50_J9D1K7 0.000324128190113 0.00252053617521 0.0021964079851 +UniRef50_A5VTC2 D isomer specific 2 hydroxyacid dehydrogenases family protein 0.00195032563519 0.000251333366122 -0.00169899226907 +UniRef50_P52046 3 hydroxybutyryl CoA dehydratase 0.000887650654886 0.00659054324976 0.00570289259487 +UniRef50_Q0VRV2 Acetyl CoA C acetyltransferase 0.000562472016648 0.012347988704 0.0117855166874 +UniRef50_Q9RR73 0.00100078876231 0.0502645881787 0.0492637994164 +UniRef50_A5VNQ2 0.000565182321255 5.65472888275e-05 -0.000508635032428 +UniRef50_A9M492 Adhesin MafA 3 0.000123227199839 0.011298120541 0.0111748933412 +UniRef50_A6DYV3 Flagellar scaffolding protein FlgD 9.9206446965e-06 1.36952560755e-05 3.774611379e-06 +UniRef50_W4U0B3 0.000163143287358 0.000141822583322 -2.1320704036e-05 +UniRef50_Z5JZC3 6.01971740866e-05 0.000336153457143 0.000275956283056 +UniRef50_K7RUT9 0.000167771550603 0.0063029752548 0.0061352037042 +UniRef50_UPI00046E091D PilS cassette 6.33796658764e-05 0.000164624242536 0.00010124457666 +UniRef50_M9R624 Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme 0.000749810928391 0.000480447284148 -0.000269363644243 +UniRef50_O07020 Lactate utilization protein A 0.00330081361737 0.000625536701782 -0.00267527691559 +UniRef50_UPI0003759AA3 purine nucleoside phosphorylase 4.7543742004e-05 0.000194131173471 0.000146587431467 +UniRef50_T1Y5U5 ABC transporter permease protein 0.0178999304822 0.00309685030896 -0.0148030801732 +UniRef50_C5BUP0 Urease subunit beta 7.22728688083e-05 3.12071793663e-05 -4.1065689442e-05 +UniRef50_D4W6Z6 Membrane family protein 6.2199946917e-06 2.99726827608e-05 2.37526880691e-05 +UniRef50_UPI0003C179AB PREDICTED 2.55770629397e-05 2.84526028641e-05 2.8755399244e-06 +UniRef50_Q5HGK2 3 oxoacyl [acyl carrier protein] reductase FabG 0.0309970729355 0.0134952954547 -0.0175017774808 +UniRef50_U6KAI1 2.54745231289e-05 3.36412184966e-05 8.1666953677e-06 +UniRef50_UPI0003B35B8E cupin 8.08235397045e-05 2.4469623906e-05 -5.63539157985e-05 +UniRef50_Q9EUS8 Polyphosphate kinase 1.17880767505e-05 0.000524350687989 0.000512562611238 +UniRef50_G8VFL4 Cystathionine beta synthase 0.000239020447962 0.00736416276298 0.00712514231502 +UniRef50_Q99YM5 Guanylate kinase 0.0346915167994 0.0140835460324 -0.020607970767 +UniRef50_Q9CJJ1 DNA polymerase III subunit beta 0.00898002172417 0.0086717461674 -0.00030827555677 +UniRef50_D8GNU7 Cell shape determining protein MreC 0.000798831241898 0.00247413493888 0.00167530369698 +UniRef50_UPI0001A44424 betaine aldehyde dehydrogenase, partial 6.54044397151e-05 0.000292765031581 0.000227360591866 +UniRef50_UPI0003F82984 damage inducible protein CinA 2.43914407826e-05 7.59169964777e-06 -1.67997411348e-05 +UniRef50_H5Y5I7 ABC type multidrug transport system, ATPase and permease component 0.000269060549412 0.000821297541102 0.00055223699169 +UniRef50_B4TGE4 Succinylglutamate desuccinylase 0.00209478361568 0.000599826634225 -0.00149495698145 +UniRef50_Q65RE8 7 cyano 7 deazaguanine synthase 4.03911714157e-05 0.00326241652494 0.00322202535352 +UniRef50_Q3JJR8 9.95305699112e-06 0.000195985852983 0.000186032795992 +UniRef50_A5UMJ4 Type II restriction endonuclease 0.00272281622131 0.0013599855927 -0.00136283062861 +UniRef50_Q3JU21 2.18634165189e-05 2.98486573284e-06 -1.88785507861e-05 +UniRef50_UPI00047AABBE fucose isomerase 0.000148872981473 0.000677948946537 0.000529075965064 +UniRef50_B7UNN6 ATP dependent 6 phosphofructokinase isozyme 1 0.034993714843 0.00849376788707 -0.0264999469559 +UniRef50_P46392 Acetyl propionyl coenzyme A carboxylase alpha chain 8.87369493691e-05 0.00653772305711 0.00644898610774 +UniRef50_T0YVF7 Pyridine nucleotide transhydrogenase subunit alpha 7.75725682494e-06 1.41895951367e-05 6.43233831176e-06 +UniRef50_UPI00045E62A3 hypothetical protein 8.80963342274e-06 9.08741216152e-05 8.20644881925e-05 +UniRef50_I2RL58 PF09994 domain protein 4.04924392951e-06 2.51497573201e-05 2.11005133906e-05 +UniRef50_UPI000472C37E PTS fructose transporter subunit IIC, partial 6.0311729084e-06 0.000153809705904 0.000147778532996 +UniRef50_C6SPS1 0.00192246950163 0.000905358373282 -0.00101711112835 +UniRef50_UPI00037FA03F hypothetical protein 8.46849092423e-06 2.8140379124e-06 -5.65445301183e-06 +UniRef50_V4L8J8 0.000140764764599 2.94050790979e-05 -0.000111359685501 +UniRef50_A1SWY4 Leucyl phenylalanyl tRNA protein transferase 5.9329126449e-06 1.03524407857e-05 4.4195281408e-06 +UniRef50_I4Y4D8 Thioesterase family protein 0.000147072463189 0.000102045193119 -4.502727007e-05 +UniRef50_UPI000464BB09 glycine betaine ABC transporter ATP binding protein 8.82756527973e-05 7.70220340832e-06 -8.0573449389e-05 +UniRef50_T5X6I4 Colicin I receptor 0.00364837481422 0.00222825857959 -0.00142011623463 +UniRef50_K9ZX93 Threonine tRNA ligase 0.000137622107211 0.0420964261582 0.041958804051 +UniRef50_D4Z4T4 Aminomethyltransferase 0.000967034568974 0.000674196757176 -0.000292837811798 +UniRef50_T0VCJ2 1.95432764089e-05 0.00561807633148 0.00559853305507 +UniRef50_D7GTN9 Predicted phosphatase homologous to the C terminal domain of histone macroH2A1 1.38637711087e-05 0.000156109150731 0.000142245379622 +UniRef50_P11502 Lactose specific phosphotransferase enzyme IIA component 4.81078295433e-05 0.00166687811773 0.00161877028819 +UniRef50_UPI0004209A5E hypothetical protein 9.4096064599e-06 0.000115076435093 0.000105666828633 +UniRef50_UPI0001FFECE5 modular polyketide synthase, partial 1.58923174253e-05 8.92442581824e-05 7.33519407571e-05 +UniRef50_UPI00017449FD LuxR family transcriptional regulator 4.20695383552e-05 5.78168787499e-05 1.57473403947e-05 +UniRef50_UPI000378F680 hypothetical protein 1.72182927649e-05 2.04383980537e-05 3.2201052888e-06 +UniRef50_Q8XA81 0.00320240401711 0.000816114675605 -0.0023862893415 +UniRef50_A6LQJ4 Integral membrane sensor signal transduction histidine kinase 0.00030068195338 0.00107831884218 0.0007776368888 +UniRef50_Q6A662 Chaperone protein DnaJ 2 0.000515760254413 0.00496195432916 0.00444619407475 +UniRef50_Q88RZ3 Putative ribose uptake protein RbsU 0.0273427435426 0.00867479699412 -0.0186679465485 +UniRef50_A0A023RQK0 0.000227401198102 0.00552252863506 0.00529512743696 +UniRef50_A6V0G0 0.000214847805227 0.000144056929367 -7.079087586e-05 +UniRef50_Q9KD29 Manganese transport system membrane protein MntC 0.0184274774468 0.00738252906251 -0.0110449483843 +UniRef50_Q2RX27 Dihydroorotate dehydrogenase 0.000112547909083 7.13944362462e-06 -0.000105408465458 +UniRef50_M7D5Z8 Glucosyltransferase SI 0.00180152405111 0.000160935534159 -0.00164058851695 +UniRef50_H6VUW6 Universal stress protein 1.2077110532e-05 0.000231670922108 0.000219593811576 +UniRef50_O07641 Nitrogenase iron protein 0.0134032232764 0.00834483981311 -0.00505838346329 +UniRef50_X1BTL4 Marine sediment metagenome DNA, contig 0.00018301282492 3.56922694185e-05 -0.000147320555501 +UniRef50_UPI0003B672DD serine threonine protein phosphatase 6.01750873852e-06 1.65059218846e-05 1.04884131461e-05 +UniRef50_UPI0004764F09 hypothetical protein 1.25049829354e-05 6.37591113694e-06 -6.12907179846e-06 +UniRef50_S9SME8 0.00142380156698 0.000624224374848 -0.000799577192132 +UniRef50_B7N3G5 Putative aminoacrylate hydrolase RutD 0.00223532897472 0.00158416517713 -0.00065116379759 +UniRef50_C1E2L9 Serine pyruvate aminotransferase and or alanine glyoxylate transaminase 0.000156416846208 0.000175088955651 1.8672109443e-05 +UniRef50_UPI00034AE262 hypothetical protein 1.89565847143e-05 4.19644071805e-06 -1.47601439963e-05 +UniRef50_R0WMM8 Dehydrogenase E1 component family protein 8.91395623543e-05 0.00347903591988 0.00338989635753 +UniRef50_A0A025BQD1 Peptide ABC transporter permease 0.000444101163361 0.000551993841485 0.000107892678124 +UniRef50_Q89AJ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.5119010553e-05 4.19928780027e-05 2.68738674497e-05 +UniRef50_UPI00037341E7 hypothetical protein 3.05648755069e-05 7.42368384363e-05 4.36719629294e-05 +UniRef50_UPI0003699727 hypothetical protein 2.95001406898e-06 1.03926800907e-05 7.44266602172e-06 +UniRef50_S2VYA1 0.00161203981004 0.000630569477283 -0.000981470332757 +UniRef50_Q98GP9 Phosphoadenosine phosphosulfate reductase 8.84548647801e-05 1.45326902693e-05 -7.39221745108e-05 +UniRef50_UPI0003737277 hypothetical protein 1.24347800654e-05 8.61100334685e-06 -3.82377671855e-06 +UniRef50_UPI00016C406B hypothetical protein 2.06782893365e-05 0.00336119132743 0.00334051303809 +UniRef50_K9ZZM6 9.08594968655e-05 0.00129011517711 0.00119925568024 +UniRef50_Q8ZNB8 UPF0226 protein YfcJ 0.00151599417384 0.000407635758131 -0.00110835841571 +UniRef50_UPI0003C17609 PREDICTED 1.24720416017e-05 1.58288043865e-05 3.3567627848e-06 +UniRef50_UPI000366A6AC molybdenum ABC transporter permease, partial 6.96715264752e-05 0.000169556098307 9.98845718318e-05 +UniRef50_UPI000361A0EC hypothetical protein 7.81388499599e-05 4.51565414392e-05 -3.29823085207e-05 +UniRef50_A1TJX6 Respiratory nitrate reductase alpha subunit apoprotein 0.00347904978328 0.000998907020898 -0.00248014276238 +UniRef50_A6LQT2 Transcriptional antiterminator, BglG 0.000585535498806 0.000854432450413 0.000268896951607 +UniRef50_Q7W5I7 Acyl carrier protein 4.43742718615e-05 0.000135375276389 9.10010045275e-05 +UniRef50_P42592 Glucosidase YgjK 0.00267833676706 0.0018147854047 -0.00086355136236 +UniRef50_Q8DSD7 30S ribosomal protein S6 0.0053352614749 0.0030092323109 -0.002326029164 +UniRef50_F5XFZ9 0.00011626878507 0.00502198955515 0.00490572077008 +UniRef50_L7VWI6 0.0002965222684 0.00215381935616 0.00185729708776 +UniRef50_Q3JWK6 0.000111061051714 6.16077896587e-05 -4.94532620553e-05 +UniRef50_Q2SVL7 Amino acid ABC transporter, permease protein 0.000920828364241 0.00936874807574 0.0084479197115 +UniRef50_A8HTG7 Glycine rich protein 3.75818057951e-05 8.35102338868e-05 4.59284280917e-05 +UniRef50_V9WKD4 1.66865494709e-05 2.71903574682e-05 1.05038079973e-05 +UniRef50_UPI0002654825 PREDICTED 0.000218779327025 0.000125590932598 -9.3188394427e-05 +UniRef50_R9ZLH4 binding protein 0.000276271495287 0.000372247947718 9.5976452431e-05 +UniRef50_A7X4S8 Thiamine phosphate synthase 0.0162512165071 0.00532096088876 -0.0109302556183 +UniRef50_S9TII9 2.75742172611e-05 5.61566310732e-05 2.85824138121e-05 +UniRef50_UPI00037C37FD hypothetical protein 1.49964699717e-05 4.36028973401e-05 2.86064273684e-05 +UniRef50_D2PYN9 1.34243047478e-06 3.62960602276e-05 3.49536297528e-05 +UniRef50_A3PMH2 Chromosomal replication initiator, DnaA 0.00025369362184 0.00030361581695 4.992219511e-05 +UniRef50_Q9VC54 CG6695, isoform A 2.26051916846e-05 9.81732509088e-06 -1.27878665937e-05 +UniRef50_Q9KXR1 Bifunctional protein PyrR 3.79477537662e-05 7.92772366519e-05 4.13294828857e-05 +UniRef50_R1HQL9 Putative thioesterase 1.87746586939e-06 0.00104193686432 0.00104005939845 +UniRef50_UPI0003B6B26D heme ABC transporter ATP binding protein 3.69274342109e-06 4.48568236291e-06 7.9293894182e-07 +UniRef50_U5VKS0 6 pyruvoyl tetrahydropterin synthase 0.00106924502244 0.000603519713684 -0.000465725308756 +UniRef50_G2PZY4 1.9551527407e-05 8.31430732305e-05 6.35915458235e-05 +UniRef50_UPI000380DC6B 50S ribosomal protein L6 0.000223111110249 0.000382306720477 0.000159195610228 +UniRef50_UPI00037713A6 hypothetical protein 3.0419894852e-06 1.05508197765e-05 7.5088302913e-06 +UniRef50_UPI00016C3B98 serine threonine protein kinase 3.44119985311e-06 4.47586506109e-06 1.03466520798e-06 +UniRef50_B9KTH1 Transcriptional regulator, TetR family 0.00155322168978 0.00192006140307 0.00036683971329 +UniRef50_G2JGS2 ABC type dipeptide transport system, periplasmic component 0.000318071736837 0.0043397590703 0.00402168733346 +UniRef50_P0A349 GTP sensing transcriptional pleiotropic repressor CodY 0.00621486404786 0.00274243345645 -0.00347243059141 +UniRef50_Q9CPL9 Probable uracil permease 0.00133975908274 0.00400057022574 0.002660811143 +UniRef50_I0DAK7 UDP glucose GDP mannose dehydrogenase family protein 0.0108976994247 0.00230629229535 -0.00859140712935 +UniRef50_B3WA65 Probable potassium transport system protein kup 0.000129792056282 9.45517732816e-05 -3.52402830004e-05 +UniRef50_D2Q0P5 1.15145700096e-05 5.85915982714e-05 4.70770282618e-05 +UniRef50_K2FFC0 0.000131455139547 0.000557404254872 0.000425949115325 +UniRef50_H0B2B9 0.0109977344134 0.00309004981378 -0.00790768459962 +UniRef50_Q117D2 Formamidopyrimidine DNA glycosylase 4.80485102739e-06 1.09680837115e-05 6.16323268411e-06 +UniRef50_UPI00039DBFBF MULTISPECIES 1.15303042107e-05 6.014540962e-06 -5.5157632487e-06 +UniRef50_G2T8N1 0.00410414141744 0.000810929493278 -0.00329321192416 +UniRef50_UPI0002557290 2,3 dihydroxybenzoate 2,3 dehydrogenase 1.6664444401e-05 2.52742763686e-05 8.6098319676e-06 +UniRef50_M9TV63 0.000294144926378 0.000460233826278 0.0001660888999 +UniRef50_A4EKM3 5.98588638428e-05 5.55798901992e-05 -4.2789736436e-06 +UniRef50_Q3JMQ9 5.02290349863e-05 0.000135798517315 8.55694823287e-05 +UniRef50_U3T560 0.000218412983181 0.00559418576684 0.00537577278366 +UniRef50_G6Y004 0.00029103906 6.44738758116e-05 -0.000226565184188 +UniRef50_A6LWZ4 Transcriptional regulator, XRE family 0.000111134245983 0.00233306378487 0.00222192953889 +UniRef50_A8ALR8 Carnitine operon protein CaiE 0.00835468738804 0.0105478625622 0.00219317517416 +UniRef50_UPI0001FFE0D7 large conductance mechanosensitive channel protein 1.05354747894e-05 2.46353667449e-05 1.40998919555e-05 +UniRef50_UPI000262A240 polar amino acid ABC transporter permease 7.11716380304e-06 3.06577852564e-05 2.35406214534e-05 +UniRef50_P57011 Signal recognition particle receptor FtsY 0.000232896301478 0.00267137741287 0.00243848111139 +UniRef50_J3XF98 Response regulator aspartate phosphatase 1.57214837176e-05 0.000177013010107 0.000161291526389 +UniRef50_UPI00036D551C hypothetical protein 4.24201385311e-05 0.000474332582522 0.000431912443991 +UniRef50_P20925 Frd operon probable iron sulfur subunit A 0.000240436935571 0.00116572383629 0.000925286900719 +UniRef50_B0V8H4 Outer membrane lipoprotein 0.000654599980668 0.00229743613671 0.00164283615604 +UniRef50_UPI0002F817F3 hypothetical protein 1.34716177885e-05 1.87569456925e-05 5.285327904e-06 +UniRef50_UPI0003D0DACE 2.66191742024e-05 8.26985916499e-06 -1.83493150374e-05 +UniRef50_UPI0002628372 ABC transporter permease 7.01591137044e-06 9.1167597641e-05 8.41516862706e-05 +UniRef50_UPI00046E6C82 hypothetical protein 0.00018876178714 2.53766985984e-05 -0.000163385088542 +UniRef50_Q8TMA8 0.000571027154808 0.00345213122577 0.00288110407096 +UniRef50_UPI00030EAE4B hypothetical protein 9.31604913579e-06 5.92884746189e-05 4.99724254831e-05 +UniRef50_Q5HNQ0 0.0230934674574 0.00860544904211 -0.0144880184153 +UniRef50_C5N6Q3 0.00756979456186 0.000864341576184 -0.00670545298568 +UniRef50_B9KQJ6 Flagellar hook capping protein 0.0055570871755 0.00275216540885 -0.00280492176665 +UniRef50_C5N6Q5 0.000712237714815 0.000322779077901 -0.000389458636914 +UniRef50_UPI0002FA4ABF hypothetical protein 1.63812690171e-05 9.94876450826e-06 -6.43250450884e-06 +UniRef50_UPI0004628FA4 hypothetical protein 7.83942943586e-05 5.5462092872e-05 -2.29322014866e-05 +UniRef50_P32718 D allose kinase 0.00422505255531 0.000762029008334 -0.00346302354698 +UniRef50_L7MJF8 5.05872473975e-05 4.73908548811e-05 -3.1963925164e-06 +UniRef50_UPI0003639553 hypothetical protein, partial 3.05847426813e-06 2.39833486033e-05 2.09248743352e-05 +UniRef50_G8B073 0.000774391466711 0.00129855481407 0.000524163347359 +UniRef50_P0A8Y3 Alpha D glucose 1 phosphate phosphatase YihX 0.00622026159926 0.000295809721398 -0.00592445187786 +UniRef50_R9SMW4 Transporter ExbD Tol family 0.00239157124303 0.000466289534524 -0.00192528170851 +UniRef50_V8G3J5 0.000436309142546 0.000282599717884 -0.000153709424662 +UniRef50_D4LWG1 ATPase components of various ABC type transport systems, contain duplicated ATPase 0.00350717226372 0.000594922189873 -0.00291225007385 +UniRef50_Q07UN5 Leucine tRNA ligase 1.56642599484e-06 2.10485024268e-06 5.3842424784e-07 +UniRef50_P41441 Putative type II secretion system protein F 0.00168466941769 0.0016544779646 -3.019145309e-05 +UniRef50_Q8EPE6 Formamidopyrimidine DNA glycosylase 7.11819513252e-06 9.37007812337e-06 2.25188299085e-06 +UniRef50_Q87MG2 Ribonuclease HI 4.7919820593e-05 2.4437233428e-05 -2.3482587165e-05 +UniRef50_P0A2J8 Spermidine putrescine transport system permease protein PotB 0.0025142441585 0.000828959172479 -0.00168528498602 +UniRef50_F3WY50 2.35959591489e-05 2.1645342408e-05 -1.9506167409e-06 +UniRef50_X7TVE6 0.000169561674168 8.01204318782e-05 -8.94412422898e-05 +UniRef50_A0A023WMY2 Amino acid transporter 0.00211417757871 0.00138376435324 -0.00073041322547 +UniRef50_B2SB84 Zinc containing alcohol dehydrogenase superfamily 0.00091854574269 0.000417987402093 -0.000500558340597 +UniRef50_UPI000471E251 hypothetical protein 6.72164099799e-05 6.87707667232e-05 1.5543567433e-06 +UniRef50_UPI0004742581 hypothetical protein, partial 7.34301894932e-05 1.69442846507e-05 -5.64859048425e-05 +UniRef50_UPI000371C1F0 hypothetical protein 7.08006868148e-06 2.69391720763e-05 1.98591033948e-05 +UniRef50_L1JWK7 1.70422559791e-05 2.72199399273e-05 1.01776839482e-05 +UniRef50_M1X9S4 0.00136171667226 0.000302521418897 -0.00105919525336 +UniRef50_Q98D52 Peptide deformylase 6.06404125177e-05 7.8806581022e-05 1.81661685043e-05 +UniRef50_B0VM85 0.00011796437152 0.00487379042999 0.00475582605847 +UniRef50_Q9L0Q7 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.000297233062088 0.00327866215539 0.0029814290933 +UniRef50_A6LWL7 Glycosyl transferase, family 2 0.000210103733117 0.000608542521751 0.000398438788634 +UniRef50_Q98DM9 Ribosomal RNA small subunit methyltransferase I 4.01160229619e-05 1.5082016923e-05 -2.50340060389e-05 +UniRef50_Q3J1K3 Cellulose synthase like protein 0.00446604179901 0.000394399866942 -0.00407164193207 +UniRef50_A7IBU8 LigA 0.000196793621444 4.46584471011e-05 -0.000152135174343 +UniRef50_P0AGM1 UPF0118 inner membrane protein YhhT 0.00258692665867 0.00101684159176 -0.00157008506691 +UniRef50_I6WV66 Transcriptional regulator 0.000122560385996 0.00033432079833 0.000211760412334 +UniRef50_C1DCM4 Hydroxyethylthiazole kinase 1.12570303711e-05 9.41087477955e-06 -1.84615559155e-06 +UniRef50_UPI00046F396F hypothetical protein 0.000295356594739 0.000195190639787 -0.000100165954952 +UniRef50_S3L5X6 4.34331037458e-05 0.000197774059711 0.000154340955965 +UniRef50_K8EUS8 6.02973776707e-06 0.00160194392297 0.0015959141852 +UniRef50_Q8K7S6 Ribonuclease J 2 0.000519571685317 0.00473855465759 0.00421898297227 +UniRef50_P45848 0.00287596320364 0.00109582558109 -0.00178013762255 +UniRef50_Q59650 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000111572213456 0.000125134197123 1.3561983667e-05 +UniRef50_UPI000382C69D hypothetical protein 4.93171770119e-05 0.000163079356461 0.000113762179449 +UniRef50_Q9Z515 Sporulation transcription regulator WhiA 0.000173689872173 0.00671002286067 0.0065363329885 +UniRef50_Q8X8Q3 0.00203545767749 0.000353836440799 -0.00168162123669 +UniRef50_R6XPV2 0.000209522808884 0.000293934127809 8.4411318925e-05 +UniRef50_G7QNB5 ABC transporter permease protein 0.014729546539 0.00196490360154 -0.0127646429375 +UniRef50_A7Z7M0 Argininosuccinate synthase 0.0212370251456 0.00584811491052 -0.0153889102351 +UniRef50_B2W926 Predicted protein 2.93586788875e-05 0.000227166696312 0.000197808017424 +UniRef50_W8N413 Lytic transglycosylase 0.000613600488153 0.000248550477328 -0.000365050010825 +UniRef50_A4CBF5 1.32776770007e-05 1.95166864731e-05 6.2390094724e-06 +UniRef50_UPI000237DF5D cobalamin adenosyltransferase family protein 3.14085390483e-05 1.59405553876e-05 -1.54679836607e-05 +UniRef50_P62221 Protein RecA 0.0249784217034 0.0070800593789 -0.0178983623245 +UniRef50_C8RX55 2.65600949801e-05 8.08480424375e-06 -1.84752907364e-05 +UniRef50_T1JH80 1.22257321865e-06 9.74880742766e-07 -2.47692475884e-07 +UniRef50_A3DJK3 Energy coupling factor transporter ATP binding protein EcfA1 2.42264085212e-05 1.00705557871e-05 -1.41558527341e-05 +UniRef50_P0A9P7 ATP dependent RNA helicase DeaD 0.00784208772218 0.00156345348448 -0.0062786342377 +UniRef50_D6EHT9 Nitrate reductase subunit beta NarH2 2.1620539244e-05 1.01530060791e-05 -1.14675331649e-05 +UniRef50_M1MQI8 Monosaccharide ABC transporter substrate binding protein, CUT2 family 0.00108386420635 0.0012867077159 0.00020284350955 +UniRef50_Q9CLL7 Bifunctional protein PyrR 8.96691382823e-06 8.59545839347e-05 7.69876701065e-05 +UniRef50_S5CVX5 0.000108442606287 0.00411327509227 0.00400483248598 +UniRef50_D9SR17 GCN5 related N acetyltransferase 0.0017813189581 0.00218181243891 0.00040049348081 +UniRef50_C5MZ73 0.00975885037427 0.00281695741394 -0.00694189296033 +UniRef50_M9VQH6 MarR family transcriptional regulator 0.000330162672461 0.00439814740684 0.00406798473438 +UniRef50_O25001 Beta lactamase HcpA 0.000363260863075 0.00673722934297 0.00637396847989 +UniRef50_Q8FL94 DnaJ like protein DjlA 0.00386936121043 0.00123333728707 -0.00263602392336 +UniRef50_UPI0003B6B2AB nickel ABC transporter permease 4.60357662078e-05 6.93050738469e-05 2.32693076391e-05 +UniRef50_A6WVV0 AMP dependent synthetase and ligase 0.000407168992871 0.00583266953428 0.00542550054141 +UniRef50_Q7VGP6 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000103990630532 0.00468624729504 0.00458225666451 +UniRef50_C5Y6L8 0.000334753322404 4.29683419841e-05 -0.00029178498042 +UniRef50_D8LGM3 1.99146489782e-06 1.24146286499e-05 1.04231637521e-05 +UniRef50_F0P516 Replication initiation protein, truncated 0.219429720121 0.0852047566562 -0.134224963465 +UniRef50_Q895N8 Phosphopantetheine adenylyltransferase 8.71225288318e-05 1.573147295e-05 -7.13910558818e-05 +UniRef50_E3EY08 Glutathionylspermidine synthase 0.00696088495222 0.00079392691396 -0.00616695803826 +UniRef50_E2XT92 Long chain fatty acid transporter 0.000883718489308 0.000802132812382 -8.1585676926e-05 +UniRef50_P37338 HTH type transcriptional repressor CsiR 0.00359283916966 0.000952634532885 -0.00264020463678 +UniRef50_Q52881 Chemotaxis protein CheW 0.0181141240439 0.00535184842335 -0.0127622756206 +UniRef50_A8LLG1 1.92225614363e-05 1.53880859677e-05 -3.8344754686e-06 +UniRef50_UPI00047C9DA6 hypothetical protein 8.32481204106e-06 1.16471279208e-05 3.32231587974e-06 +UniRef50_P51057 Succinate dehydrogenase hydrophobic membrane anchor subunit 3.96101928542e-05 0.000155482499379 0.000115872306525 +UniRef50_D9PYS7 Predicted single stranded DNA specific exonuclease 0.00391804148773 0.000181919941603 -0.00373612154613 +UniRef50_S9SJ05 0.000745797889687 0.000130438261925 -0.000615359627762 +UniRef50_E8TFR7 TRAP transporter, 4TM 12TM fusion protein 0.00625654657014 0.00169769241938 -0.00455885415076 +UniRef50_A6M215 ATPase, BadF BadG BcrA BcrD type 0.000474958740952 0.00119896792092 0.000724009179968 +UniRef50_J9P613 2.02585331461e-05 2.94931492196e-05 9.2346160735e-06 +UniRef50_K5P2M6 4.73633612113e-05 0.00077228955095 0.000724926189739 +UniRef50_D8GSG1 Predicted transcriptional regulator, AraC family 0.000302796247737 0.00162635393454 0.0013235576868 +UniRef50_UPI0002F0964C hypothetical protein 3.42915877634e-05 5.14111931861e-05 1.71196054227e-05 +UniRef50_F2QGL2 Competence protein 1.19670167055e-05 0.000788495367634 0.000776528350928 +UniRef50_F5X6K5 ABC transport system ATP binding protein 0.000625577626837 0.000899658995962 0.000274081369125 +UniRef50_Q1Q9B8 Single stranded DNA binding protein 0.000390502747092 0.0103297203555 0.00993921760841 +UniRef50_A4WVV8 Ferrochelatase 0.0142166060705 0.00243006482229 -0.0117865412482 +UniRef50_Q9RSX3 0.000725934593951 0.0151140807316 0.0143881461376 +UniRef50_Q9RSX2 0.000161779709512 0.0465547427678 0.0463929630583 +UniRef50_UPI000376B804 hypothetical protein 0.000379449078029 0.000126359388452 -0.000253089689577 +UniRef50_A0A023X2K9 Nitroreductase family 0.000397353672473 0.0387526127649 0.0383552590924 +UniRef50_UPI00036A2930 hypothetical protein 0.000216786443294 9.3647601387e-05 -0.000123138841907 +UniRef50_Q8Y213 Glycine tRNA ligase beta subunit 0.000190792034906 0.0016507512256 0.00145995919069 +UniRef50_UPI000470A4B9 5 methyltetrahydrofolate homocysteine methyltransferase 0.00164355857136 0.000150269598844 -0.00149328897252 +UniRef50_E3HK42 Lysine specific permease 2 0.00895196411539 0.0153483084517 0.00639634433631 +UniRef50_UPI0003B67722 30S ribosomal protein S15 0.000109369899132 5.34020438687e-05 -5.59678552633e-05 +UniRef50_A6LS13 Sugar isomerase 0.00115527821766 0.000684977584469 -0.000470300633191 +UniRef50_B8JF24 Cupin 2 conserved barrel domain protein 0.000106706368685 3.33916215777e-05 -7.33147471073e-05 +UniRef50_A5UL58 Putative DNA helicase II, UvrD 0.000884829174592 0.000826856766784 -5.7972407808e-05 +UniRef50_I6SXV6 Transmembrane protein 0.00677777313624 0.00197745414317 -0.00480031899307 +UniRef50_Q7R6Y8 0.00011095544113 0.00216664253068 0.00205568708955 +UniRef50_J0I3X2 Cag pathogenicity island protein Cagb 0.000106658669702 0.00338849253255 0.00328183386285 +UniRef50_A3LE40 Glycerol kinase 0.000578120848726 0.000117034361371 -0.000461086487355 +UniRef50_M1CWM3 3.0930972113e-06 8.62684289458e-06 5.53374568328e-06 +UniRef50_A5UP04 Multimeric flavodoxin 0.00942140029875 0.00925054564337 -0.00017085465538 +UniRef50_A6LYF1 0.000558779583827 0.000224007614567 -0.00033477196926 +UniRef50_B2TS40 Protein MurJ homolog 0.00034134121422 0.000814935255896 0.000473594041676 +UniRef50_A0A031I8F2 3.77092415845e-05 3.39168486341e-05 -3.7923929504e-06 +UniRef50_UPI0003B74B63 aldolase 2.93763442465e-05 4.56357029522e-06 -2.48127739513e-05 +UniRef50_UPI00047054F2 hypothetical protein, partial 1.24095323454e-05 9.56799856411e-06 -2.84153378129e-06 +UniRef50_B1Y0J8 Non canonical purine NTP pyrophosphatase 6.39526934465e-05 1.4219636323e-05 -4.97330571235e-05 +UniRef50_Q8K9W5 Phosphate acetyltransferase 3.33175437022e-06 6.37894867006e-06 3.04719429984e-06 +UniRef50_UPI0002486152 MerR family transcriptional regulator 0.000517453224534 6.24837777437e-05 -0.00045496944679 +UniRef50_B9KUZ2 Phage portal protein, lambda family 0.00365716099605 0.000128212751885 -0.00352894824416 +UniRef50_UPI0004745B47 RNA directed DNA polymerase, partial 1.15141999224e-05 5.97308129621e-05 4.82166130397e-05 +UniRef50_UPI000387178C PREDICTED 1.08822213128e-05 1.41920044072e-05 3.3097830944e-06 +UniRef50_UPI000410CB45 chemotaxis protein 0.000141618129636 7.77385847604e-05 -6.38795448756e-05 +UniRef50_R4U7U8 Phosphoribosylglycinamide formyltransferase 0.000398598357149 0.00502328840371 0.00462469004656 +UniRef50_V4I3S7 Integral membrane protein 2.22021392152e-05 0.000100088149566 7.78860103508e-05 +UniRef50_L8XYT3 5.8561959107e-06 9.46652545255e-06 3.61032954185e-06 +UniRef50_UPI000265943A PREDICTED 6.73521922903e-06 6.22339174143e-06 -5.118274876e-07 +UniRef50_A5VYM5 Outer membrane porin 0.000712052542299 0.000135259559627 -0.000576792982672 +UniRef50_P45867 Acyl CoA dehydrogenase 0.000321602418365 0.00639429722542 0.00607269480705 +UniRef50_I1E8F4 0.000935297887875 0.000253518831711 -0.000681779056164 +UniRef50_P49323 Non heme chloroperoxidase 2.15748109197e-05 0.00568611399293 0.00566453918201 +UniRef50_UPI00046F109B isoleucyl tRNA synthase 3.30833019063e-06 8.14625551568e-06 4.83792532505e-06 +UniRef50_B1IIB8 Sensor histidine kinase 0.000167029198609 0.00160599260059 0.00143896340198 +UniRef50_B9KWJ6 Transcriptional regulator, GntR family 0.00780084468892 0.00050194971513 -0.00729889497379 +UniRef50_D1APR3 Deoxyribose phosphate aldolase 0.000236421287378 0.00111057233113 0.000874151043752 +UniRef50_A9ANN8 AMP nucleosidase 0.00924485626481 0.00295668899393 -0.00628816727088 +UniRef50_S5RJR0 0.000900629909451 0.000174228144654 -0.000726401764797 +UniRef50_UPI00037E9476 hypothetical protein 2.74504301606e-06 3.2550825026e-06 5.1003948654e-07 +UniRef50_D5ALJ5 Phage integrase 0.00955352880636 0.00347152709262 -0.00608200171374 +UniRef50_A6LVF9 Response regulator receiver and SARP domain protein 0.00101801246464 0.000663093745618 -0.000354918719022 +UniRef50_A5UM43 Energy converting hydrogenase B, subunit K, EhbK 0.00447485495977 0.000645790574129 -0.00382906438564 +UniRef50_UPI00046FBB36 hypothetical protein, partial 8.61911705199e-05 9.58202374981e-05 9.6290669782e-06 +UniRef50_X1UX68 Marine sediment metagenome DNA, contig 0.000109323446385 3.03563092429e-05 -7.89671371421e-05 +UniRef50_Q8CNT2 Phage phi PVL amidase like protein 0.00127206490012 0.00716227120475 0.00589020630463 +UniRef50_O05100 Peptide deformylase 1 1.02396419002e-05 1.35541607587e-05 3.3145188585e-06 +UniRef50_UPI0004622CC9 hypothetical protein TRAVEDRAFT_74361 7.58527652731e-05 7.22163702643e-06 -6.86311282467e-05 +UniRef50_UPI00047DE100 hypothetical protein 1.65016345996e-05 3.44549679833e-05 1.79533333837e-05 +UniRef50_UPI00037530DA hypothetical protein 3.02183990295e-05 3.05098368141e-05 2.914377846e-07 +UniRef50_D5AMF4 ABC transporter, periplasmic substrate binding protein 0.00740140719947 0.00179561635316 -0.00560579084631 +UniRef50_A6LZL2 0.000580937019762 0.00151826894179 0.000937331922028 +UniRef50_UPI000475B6F2 4 alpha glucanotransferase 1.09153834079e-05 0.000605308000484 0.000594392617076 +UniRef50_I4B854 Pirin domain protein 0.00032713973769 0.000861831578614 0.000534691840924 +UniRef50_B9KW74 DMSO membrane protein 0.000496973199177 0.000243351804232 -0.000253621394945 +UniRef50_UPI00036F9198 DNA invertase, partial 0.000219688036698 0.000217341483536 -2.346553162e-06 +UniRef50_O66849 Anthranilate synthase component 1 2.71614728087e-05 2.26486541938e-05 -4.5128186149e-06 +UniRef50_G2I7Y6 Transposase 0.000105079604605 3.70826446056e-05 -6.79969599994e-05 +UniRef50_UPI0003B53587 GntR family transcriptional regulator 6.60938519156e-05 2.30752970623e-05 -4.30185548533e-05 +UniRef50_F3SV61 4.38530721135e-05 5.29308980956e-05 9.0778259821e-06 +UniRef50_F7YWV7 Phosphoribosylformylglycinamidine synthase, purS 2.62768944782e-05 2.76469710546e-05 1.3700765764e-06 +UniRef50_P63459 Malonyl CoA acyl carrier protein transacylase 2.29576325689e-05 6.49321669801e-05 4.19745344112e-05 +UniRef50_UPI000359C10F PREDICTED 8.81385521473e-06 2.11432831952e-05 1.23294279805e-05 +UniRef50_Q1IZN6 Membrane associated PIN like nuclease 0.000111025290843 0.0196895551073 0.0195785298165 +UniRef50_A3X2R1 0.000171462759804 1.17956751058e-05 -0.000159667084698 +UniRef50_D9RH26 Site specific DNA methyltransferase 0.0186619635287 0.00359423619915 -0.0150677273296 +UniRef50_UPI000226002C hypothetical protein 0.000339514536961 4.1210001379e-05 -0.000298304535582 +UniRef50_Q1WSV7 Redox sensing transcriptional repressor Rex 0.013285517983 0.00918448931643 -0.00410102866657 +UniRef50_R5MZ93 7.78036730234e-07 0.000184692765612 0.000183914728882 +UniRef50_A4XV16 TRAP dicarboxylate transporter, DctP subunit 0.00113644968715 0.000472027018757 -0.000664422668393 +UniRef50_A6LTW4 0.000275537218136 0.00043007287164 0.000154535653504 +UniRef50_A6LTW3 0.000500744598622 0.000574929415443 7.4184816821e-05 +UniRef50_S2TB06 Protein chain release factor B 0.000994069041706 0.000120016208388 -0.000874052833318 +UniRef50_Q06801 4 alpha glucanotransferase, chloroplastic amyloplastic 7.78501768437e-06 0.000479983725298 0.000472198707614 +UniRef50_A6LTW8 0.000636445321137 0.00311681033554 0.0024803650144 +UniRef50_B9E4P1 0.00030045898646 0.00032752979006 2.70708036e-05 +UniRef50_F4DT19 Integral membrane sensor hybrid histidine kinase 0.000477945694102 0.000305104535311 -0.000172841158791 +UniRef50_UPI0001B469EF DNA recombination protein RecA, partial 0.000172406829549 0.000278371352803 0.000105964523254 +UniRef50_P03030 Transcriptional activator protein LysR 0.00234564869706 0.00111818786032 -0.00122746083674 +UniRef50_P98008 Nitric oxide reductase subunit B 0.0115524648824 0.00197562615567 -0.00957683872673 +UniRef50_UPI000468BEB6 hypothetical protein 6.48858194459e-06 2.87618385071e-05 2.22732565625e-05 +UniRef50_P63353 Sulfate thiosulfate import ATP binding protein CysA 0.000105477001375 2.93885309673e-05 -7.60884704077e-05 +UniRef50_UPI000376EAD9 resolvase 3.45469618252e-05 1.92979332521e-05 -1.52490285731e-05 +UniRef50_Q7UE67 3.88231862867e-06 4.84508997405e-05 4.45685811118e-05 +UniRef50_UPI00016C4079 sodium hydrogen exchanger family protein 8.28076051333e-06 6.47461040956e-06 -1.80615010377e-06 +UniRef50_P39356 0.00277116509995 0.00147919686197 -0.00129196823798 +UniRef50_P39357 0.0340379965054 0.00565478683134 -0.0283832096741 +UniRef50_Q8D1Y6 Nucleoside diphosphate kinase 6.00934656132e-05 2.03257832336e-05 -3.97676823796e-05 +UniRef50_Q9USZ1 Elongation factor G, mitochondrial 9.01198402455e-06 3.88156926285e-06 -5.1304147617e-06 +UniRef50_P39353 0.00224877196048 0.00914534370761 0.00689657174713 +UniRef50_P39351 0.00155212226196 0.000575292282856 -0.000976829979104 +UniRef50_D5ARH0 Biotin transport ATP binding protein BioM 0.000225140748821 2.47771374569e-05 -0.000200363611364 +UniRef50_C5WG38 0.000856232715292 0.000305577555117 -0.000550655160175 +UniRef50_Q8CU46 Alginate lyase 0.0101048716863 0.00498971374503 -0.00511515794127 +UniRef50_UPI0001912A18 adenylosuccinate lyase, partial 2.68019224664e-05 2.58574382721e-05 -9.444841943e-07 +UniRef50_Q8DVI5 0.00173211342997 0.00322153078716 0.00148941735719 +UniRef50_P53597 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 4.3035404292e-05 8.06553301431e-05 3.76199258511e-05 +UniRef50_Q8RCX1 K insensitive pyrophosphate energized proton pump 0.000431607138667 0.00130398187341 0.000872374734743 +UniRef50_A9DEP6 9.31808403366e-05 9.85185169912e-05 5.3376766546e-06 +UniRef50_UPI0003AD3579 hypothetical protein 1.88580987405e-05 2.45772717178e-05 5.7191729773e-06 +UniRef50_F8JJ47 1.43529559755e-05 5.88230709542e-06 -8.47064888008e-06 +UniRef50_C3L318 Precorrin 2 C methyltransferase 0.000479855070575 0.0020546533804 0.00157479830983 +UniRef50_P44421 Methionine aminopeptidase 4.3842782238e-05 0.00721671165618 0.00717286887394 +UniRef50_E6MUY1 Amino acid carrier family protein 0.00019649594095 0.00359311770453 0.00339662176358 +UniRef50_UPI0003B5FC66 ABC transporter ATP binding protein 0.000194517563835 3.37717805397e-05 -0.000160745783295 +UniRef50_UPI00047BD4E4 hypothetical protein 2.43668381673e-06 2.1902132905e-06 -2.4647052623e-07 +UniRef50_A0A059MR78 Nitrogen fixation protein NifU 0.000891699186261 0.00324111206341 0.00234941287715 +UniRef50_UPI0002E2A0B8 hypothetical protein 6.69394705665e-05 4.21525309445e-05 -2.4786939622e-05 +UniRef50_S5S0J3 DnaJ family heat shock protein 8.24717421085e-06 1.28142056539e-05 4.56703144305e-06 +UniRef50_B1IK08 Argininosuccinate synthase 0.000316564767207 0.00173881625666 0.00142225148945 +UniRef50_O33407 Esterase EstA 0.000717375093178 0.00020794297274 -0.000509432120438 +UniRef50_UPI00047D5868 hypothetical protein 3.75638531654e-06 7.44710947036e-06 3.69072415382e-06 +UniRef50_UPI0004763C22 CREA protein 0.000237057051715 0.000130104305279 -0.000106952746436 +UniRef50_R7PWQ3 Minor teichoic acid biosynthesis protein GgaB 0.00358427962013 0.000283616829334 -0.0033006627908 +UniRef50_K0WKW0 Putrescine binding periplasmic protein 0.00204970957042 0.00026565220857 -0.00178405736185 +UniRef50_D4HAV0 0.000490241543964 0.00133225581291 0.000842014268946 +UniRef50_I0C5C5 Peptidoglycan endo beta N acetylglucosaminidase 0.01416976684 0.00399622705984 -0.0101735397802 +UniRef50_X1M7F5 Marine sediment metagenome DNA, contig 1.26461843855e-05 2.16754146203e-05 9.0292302348e-06 +UniRef50_F9L838 Phenol soluble modulin beta 1 family protein 0.00149007627177 0.00370760454945 0.00221752827768 +UniRef50_E3ZCM1 Internalin A 5.98127674244e-06 3.43789790143e-06 -2.54337884101e-06 +UniRef50_R7AAF8 9.74116746711e-05 6.81435219618e-05 -2.92681527093e-05 +UniRef50_F7QQI7 N acetylneuraminate synthase 0.00352067091798 0.00162313600065 -0.00189753491733 +UniRef50_Q1YUP9 5.66670185165e-05 1.07169596983e-05 -4.59500588182e-05 +UniRef50_UPI000471DB3E hypothetical protein 1.3612593653e-05 1.47388679423e-05 1.1262742893e-06 +UniRef50_V4JMQ3 7.59982990658e-05 6.87441037177e-05 -7.2541953481e-06 +UniRef50_G7MAU3 Cobalt ABC transporter, inner membrane subunit CbiQ 0.000127816926252 0.000414873607316 0.000287056681064 +UniRef50_UPI000306B7B0 hypothetical protein 0.000136462009784 8.90809707896e-06 -0.000127553912705 +UniRef50_F2ABZ8 0.000355498851954 8.283445715e-05 -0.000272664394804 +UniRef50_R5XW73 Glycerol 3 phosphate cytidyltransferase 0.00855074222465 0.000646678916486 -0.00790406330816 +UniRef50_Q039P7 tRNA specific 2 thiouridylase MnmA 0.00732019289523 0.0124862816118 0.00516608871657 +UniRef50_UPI0003AD23FF hypothetical protein 4.06983453619e-05 0.000787746183197 0.000747047837835 +UniRef50_Q0VM47 Type II secretion system protein, putative 0.000233718436937 0.0088389869067 0.00860526846976 +UniRef50_Q47BQ9 Tripartite ATP independent periplasmic transporter, DctQ component 0.00764418838133 0.00291980844924 -0.00472437993209 +UniRef50_P76630 Inner membrane protein YgaZ 0.00355843919074 0.001808541622 -0.00174989756874 +UniRef50_Z5X8T7 Pyridine nucleotide transhydrogenase 8.1405552264e-05 6.31343540901e-05 -1.82711981739e-05 +UniRef50_G8RA57 Tandem lipo protein within Pathogenicity island 1.41899657622e-05 2.80650802923e-05 1.38751145301e-05 +UniRef50_E6JNN1 0.00166646925468 0.000563644714229 -0.00110282454045 +UniRef50_B7GZW3 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000116208749974 0.00833815779723 0.00822194904726 +UniRef50_UPI0003B3F639 thioredoxin 1.76473952329e-05 6.50077638984e-05 4.73603686655e-05 +UniRef50_B6ZQQ2 Inner membrane protein YicO 0.000114044105391 0.000244063392719 0.000130019287328 +UniRef50_T1U7S9 TrbL VirB6 plasmid conjugal transfer family protein 0.00019525137354 0.0029708647117 0.00277561333816 +UniRef50_P74309 Fructose bisphosphate aldolase class 1 0.0251530955936 0.0131061484868 -0.0120469471068 +UniRef50_Q5P706 Arginine biosynthesis bifunctional protein ArgJ 5.65379877053e-05 0.00453907614432 0.00448253815661 +UniRef50_G8VD08 Amino acid carrier protein 0.000179029881523 0.00672715510309 0.00654812522157 +UniRef50_Q88PJ9 Type IV pili biogenesis protein PilF 1.3149674167e-05 0.000649540969014 0.000636391294847 +UniRef50_B9KMF9 0.0017508937293 2.1564357708e-05 -0.00172932937159 +UniRef50_UPI0004572EA5 PREDICTED 3.5391665733e-05 9.42746626859e-06 -2.59641994644e-05 +UniRef50_F5XQJ4 0.000775656141478 0.00223027598747 0.00145461984599 +UniRef50_C1D2J4 Putative Diguanylate cyclase with GAF sensor 4.82616860866e-06 0.00282720723132 0.00282238106271 +UniRef50_B9KMF2 3.33930059447e-06 0.000501954739708 0.000498615439114 +UniRef50_Q73WQ0 0.000244901483682 0.000339874548272 9.497306459e-05 +UniRef50_O31605 Oligoendopeptidase F homolog 0.0238633223081 0.00545540402824 -0.0184079182799 +UniRef50_Q04F01 Adenine phosphoribosyltransferase 0.0352800527814 0.00613083508048 -0.0291492177009 +UniRef50_UPI0003346C39 PREDICTED 9.34383507123e-05 3.29543263994e-06 -9.01429180724e-05 +UniRef50_UPI00034AF933 glycogen debranching protein 9.29581018675e-06 1.66210552484e-05 7.32524506165e-06 +UniRef50_Q9LAM9 Peptide methionine sulfoxide reductase MsrA MsrB 4.20241421468e-06 0.00216399217451 0.0021597897603 +UniRef50_Q3Z6G6 Anthranilate phosphoribosyltransferase 6.31159246716e-06 7.89124547717e-06 1.57965301001e-06 +UniRef50_P40510 D 3 phosphoglycerate dehydrogenase 2 2.38637578147e-05 2.45644127012e-05 7.006548865e-07 +UniRef50_X1MDH4 Marine sediment metagenome DNA, contig 1.17311309431e-05 3.73967078264e-05 2.56655768833e-05 +UniRef50_K7SNQ8 RfbX family protein involved in the export of O antigen and teichoic acid 9.59710141129e-05 0.00647120080121 0.0063752297871 +UniRef50_A4EKV5 0.000130886118624 4.63296112428e-05 -8.45565073812e-05 +UniRef50_UPI0002E79C21 hypothetical protein 0.000115895761955 0.000211795479862 9.5899717907e-05 +UniRef50_R8XI05 Taurine binding periplasmic protein 0.000672489310732 0.000754000098364 8.1510787632e-05 +UniRef50_Q9RYQ5 Resolvase, putative 0.000674082122953 0.361753596131 0.361079514008 +UniRef50_Q3JXV9 0.000196687193883 1.89265081635e-05 -0.00017776068572 +UniRef50_X1MF22 Marine sediment metagenome DNA, contig 5.44671356808e-05 0.000754669389664 0.000700202253983 +UniRef50_V6EZW5 Putative chromosomal replication initiator, DnaA homolog protein 5.91905164251e-05 1.02598448589e-05 -4.89306715662e-05 +UniRef50_UPI0004701EC5 transcriptional regulator 0.000111709601932 1.35579980213e-05 -9.81516039107e-05 +UniRef50_UPI000370F20A DNA polymerase I, partial 3.06884607693e-06 0.000114981045429 0.000111912199352 +UniRef50_UPI00039553CA PREDICTED 4.08219086886e-06 3.44167776329e-05 3.0334586764e-05 +UniRef50_UPI000364FAD7 hypothetical protein 4.76555787286e-06 3.60160714458e-05 3.12505135729e-05 +UniRef50_A0RGP9 DNA mismatch repair protein 0.000527639869078 0.00117328730425 0.000645647435172 +UniRef50_Q9P6J4 0.00165767830291 0.000461925744776 -0.00119575255813 +UniRef50_UPI000369C449 aminotransferase, partial 0.000264024772165 1.21541360509e-05 -0.000251870636114 +UniRef50_M9R9X0 0.00199934724674 0.000318044784504 -0.00168130246224 +UniRef50_Q9PB92 0.000107434141846 4.14186265777e-05 -6.60155152683e-05 +UniRef50_Q9RYT4 Homoprotocatechuate 2,3 dioxygenase, putative 0.000312398971088 0.0580886041364 0.0577762051653 +UniRef50_UPI00047C50D0 hypothetical protein 1.16764988606e-05 7.65849700846e-06 -4.01800185214e-06 +UniRef50_A0KKD3 Adenine phosphoribosyltransferase 4.94830160703e-05 3.75798315712e-05 -1.19031844991e-05 +UniRef50_P22255 3,5 bisphosphate nucleotidase CysQ 0.00394678988047 0.000360875810829 -0.00358591406964 +UniRef50_UPI000288FCAE MULTISPECIES 9.33792368141e-05 3.64279342212e-05 -5.69513025929e-05 +UniRef50_UPI0003795D58 hypothetical protein 0.000171996264047 3.42776244782e-05 -0.000137718639569 +UniRef50_S1U9Z1 NrdI protein 3.82323857287e-05 3.70071570311e-05 -1.2252286976e-06 +UniRef50_C1L2U0 UPF0176 protein Lm4b_01393 0.0160934807047 0.0186977141859 0.0026042334812 +UniRef50_X1HZW5 Marine sediment metagenome DNA, contig 1.46499965405e-05 3.34288917627e-05 1.87788952222e-05 +UniRef50_Q5E530 Permease 1.14683465747e-05 1.62295239117e-05 4.761177337e-06 +UniRef50_L7WWR2 Anaerobic ribonucleoside triphosphate reductase activating protein 0.0289332005253 0.00499952525389 -0.0239336752714 +UniRef50_UPI0003662A30 hypothetical protein 5.59472645169e-05 3.41806576102e-05 -2.17666069067e-05 +UniRef50_F0MTV5 MafB family protein 6.90944457927e-05 0.000938519785064 0.000869425339271 +UniRef50_P0AC49 Fumarate reductase iron sulfur subunit 0.00198322470253 0.00136893867733 -0.0006142860252 +UniRef50_UPI00041436A6 hypothetical protein 3.1459580401e-05 3.81786826413e-05 6.7191022403e-06 +UniRef50_A3K301 6.26924712324e-06 4.65342608468e-06 -1.61582103856e-06 +UniRef50_A7ZIA3 S formylglutathione hydrolase FrmB 0.0148527493421 0.00419113373722 -0.0106616156049 +UniRef50_S9E849 Neutral zinc metallopeptidase 0.000343032573815 1.09237650138e-05 -0.000332108808801 +UniRef50_UPI00035E2411 hypothetical protein 1.00096892549e-05 4.11394191861e-05 3.11297299312e-05 +UniRef50_H8GZZ4 Peptide ABC transporter, permease protein 0.00232330927841 0.054070602717 0.0517472934386 +UniRef50_UPI00047D0EF5 alcohol dehydrogenase, partial 1.34056451246e-05 0.000106093545024 9.26878998994e-05 +UniRef50_A4W0T4 GMP reductase 0.0212390512543 0.0159234121013 -0.005315639153 +UniRef50_F2LNV1 2.03235849065e-05 2.00423680751e-05 -2.812168314e-07 +UniRef50_B5Z6V3 0.000128981545165 0.00368880240914 0.00355982086397 +UniRef50_D3QCT2 0.0129106470757 0.00772308498336 -0.00518756209234 +UniRef50_P16679 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL 0.00803274304733 0.00101251441781 -0.00702022862952 +UniRef50_M5RF79 Magnesium protoporphyrin chelatase 8.81582568252e-05 0.00111955898243 0.0010314007256 +UniRef50_UPI0004069A6C hypothetical protein 3.21403157652e-05 4.38143704256e-05 1.16740546604e-05 +UniRef50_D7CRR2 Cytochrome c assembly protein 0.000128971280521 0.0194379270854 0.0193089558049 +UniRef50_P76502 Phosphohistidine phosphatase SixA 0.00196427812318 0.000366095089089 -0.00159818303409 +UniRef50_Q3IUV8 TrbC, sex pilus assembly and mating pair formation protein 0.00109267956391 0.000409214833994 -0.000683464729916 +UniRef50_A0A023LBQ7 2.28571859482e-05 7.93910154335e-06 -1.49180844048e-05 +UniRef50_A5MYM8 0.000332092538599 0.00154678452539 0.00121469198679 +UniRef50_L1L1V6 6.65317925159e-05 9.74409957735e-06 -5.67876929385e-05 +UniRef50_UPI0003A7F275 xanthine dehydrogenase 4.61465257156e-06 0.000143135179761 0.000138520527189 +UniRef50_UPI000470BD2F hypothetical protein 1.06356088972e-05 0.000139429508718 0.000128793899821 +UniRef50_I0I1B3 1.26664865258e-05 9.23978562686e-05 7.97313697428e-05 +UniRef50_Q5HP11 Shikimate kinase 0.0169750629144 0.00146750453051 -0.0155075583839 +UniRef50_K0LNC6 Na+transporting ATP synthase 0.0159233560347 0.00468866960147 -0.0112346864332 +UniRef50_F0YGA0 Expressed protein 0.000418446480179 0.000266414579294 -0.000152031900885 +UniRef50_UPI0004262E77 hypothetical protein 1.71552724417e-05 0.00061546409844 0.000598308825998 +UniRef50_K3ZIS6 2.7226186519e-05 0.000214301174639 0.00018707498812 +UniRef50_UPI0003B62EF2 hypothetical protein 6.6164229807e-05 8.5782127543e-05 1.9617897736e-05 +UniRef50_G2JE35 Lipid A core O antigen ligase 0.000173705695169 0.00418384410855 0.00401013841338 +UniRef50_Q98LT6 Glycine dehydrogenase 3.30524962184e-06 6.83476247395e-06 3.52951285211e-06 +UniRef50_B7KTM9 Phage cell wall peptidase, NlpC P60 family 0.0022693786963 0.000516588988672 -0.00175278970763 +UniRef50_A5UMD8 0.00301238810486 0.000894927932988 -0.00211746017187 +UniRef50_K0LRB0 Ferrous iron transport protein B 0.000227401198102 0.000612055347554 0.000384654149452 +UniRef50_UPI0004421582 PREDICTED 7.87289520971e-05 4.88455515706e-05 -2.98834005265e-05 +UniRef50_C4J1N8 0.000137592833116 3.40814210265e-05 -0.00010351141209 +UniRef50_Q8XWR3 Prolipoprotein diacylglyceryl transferase 0.00142173060169 0.00386976263432 0.00244803203263 +UniRef50_C6SPD3 Putative potassium uptake system protein 0.00619511255583 0.00225667419769 -0.00393843835814 +UniRef50_UPI0003A9FA54 amino acid transporter 7.46754994442e-06 0.000608960482025 0.000601492932081 +UniRef50_UPI000469E754 DNA repair protein RadA 1.02825922711e-05 7.77657507373e-05 6.74831584662e-05 +UniRef50_P36938 Phosphoglucomutase 0.00180423843021 0.00687662661879 0.00507238818858 +UniRef50_UPI00046E8175 hypothetical protein 1.65285557188e-06 2.42990330773e-05 2.26461775054e-05 +UniRef50_P32382 NADH oxidase 7.60559641199e-06 8.20577479618e-06 6.0017838419e-07 +UniRef50_B9KJE4 Flagellar biosynthetic protein FlhB 0.00260108961525 0.00095933242503 -0.00164175719022 +UniRef50_J9P7D1 1.9775680871e-06 1.93370355109e-06 -4.386453601e-08 +UniRef50_D7GE04 8.74916503464e-05 0.000399775173314 0.000312283522968 +UniRef50_Q9I6M4 5 aminovalerate aminotransferase DavT 0.00105157280429 0.0115695824996 0.0105180096953 +UniRef50_UPI000262CACD citrate lyase subunit beta 8.62709919896e-05 3.43895831461e-05 -5.18814088435e-05 +UniRef50_Q48KB0 Acyl homoserine lactone acylase PvdQ 0.000354011428865 7.83260111316e-05 -0.000275685417733 +UniRef50_UPI0002657863 PREDICTED 6.21849165951e-06 1.74328109222e-05 1.12143192627e-05 +UniRef50_UPI0003B7969B LysR family transcriptional regulator 5.97281562804e-06 0.000176413365332 0.000170440549704 +UniRef50_C5X3K1 2.81949398159e-05 0.000294702936378 0.000266507996562 +UniRef50_UPI0003EDCB7F PREDICTED 5.31620110893e-06 7.66185301585e-05 7.13023290496e-05 +UniRef50_P76053 Probable DNA endonuclease SmrA 0.00269784452705 0.00148899179089 -0.00120885273616 +UniRef50_V4IVP0 0.00177829349423 0.00170803701125 -7.025648298e-05 +UniRef50_A2RNI8 Arginine tRNA ligase 6.38924935664e-06 0.00582469574036 0.005818306491 +UniRef50_A6LY18 Small acid soluble spore protein, alpha beta type 0.00984746057875 0.000860145743281 -0.00898731483547 +UniRef50_F8G289 Cro CI family transcriptional regulator 0.000681162479595 0.000677390310903 -3.772168692e-06 +UniRef50_K6M6J3 Transporter, major facilitator family protein 9.64614963009e-05 0.00191596772533 0.00181950622903 +UniRef50_F6CLL2 PSP1 domain protein 0.0133542522397 0.00140780158883 -0.0119464506509 +UniRef50_J2DHS3 1.91775867741e-05 5.77166199039e-05 3.85390331298e-05 +UniRef50_P77297 0.00450739102959 0.00238103988529 -0.0021263511443 +UniRef50_P77296 0.00703524920178 0.000506257208899 -0.00652899199288 +UniRef50_L1K9E2 0.0131018993676 0.00615426256831 -0.00694763679929 +UniRef50_R9SJS7 Adenylate cyclase CyaA 0.00252224647012 0.000710691241489 -0.00181155522863 +UniRef50_E3J3H5 8.16196415514e-06 3.00656690371e-06 -5.15539725143e-06 +UniRef50_UPI0003B2F361 ribose phosphate pyrophosphokinase 9.03460841929e-05 3.52785804517e-05 -5.50675037412e-05 +UniRef50_D4HCR1 Hydrolase, alpha beta domain protein 0.000176120990128 0.00544634586267 0.00527022487254 +UniRef50_UPI000410CB72 hypothetical protein 9.19159344349e-06 3.14569551052e-05 2.22653616617e-05 +UniRef50_UPI0003B62778 2 deoxy D gluconate 3 dehydrogenase 7.550303427e-06 1.12947808465e-05 3.7444774195e-06 +UniRef50_D8JEW7 0.000413524934136 0.00701216898307 0.00659864404893 +UniRef50_A1B817 Transposase IS66 1.05705553249e-05 6.62005042576e-06 -3.95050489914e-06 +UniRef50_A5UNB4 0.00188646291916 0.00115112143082 -0.00073534148834 +UniRef50_A0A024C317 0.00514753621162 0.000703135012379 -0.00444440119924 +UniRef50_UPI000370F732 hypothetical protein 6.35417219591e-06 5.06502337633e-06 -1.28914881958e-06 +UniRef50_L8M031 NAD dependent epimerase dehydratase family protein 0.00323683029269 0.000277634711436 -0.00295919558125 +UniRef50_A7Q0V4 S adenosylmethionine synthase 5 4.32143854799e-05 0.000107647867442 6.44334819621e-05 +UniRef50_Q1IZH8 tRNA N6 adenosine threonylcarbamoyltransferase 0.00041504516033 0.0165747970024 0.0161597518421 +UniRef50_E3G1M3 Ribose 1,5 bisphosphate phosphokinase PhnN 0.0037971304474 0.000318114942752 -0.00347901550465 +UniRef50_UPI00046961B9 hypothetical protein 3.86524198017e-05 2.58504101894e-05 -1.28020096123e-05 +UniRef50_D3E3F0 4Fe 4S binding domain containing protein 0.00363322800798 0.0013357832772 -0.00229744473078 +UniRef50_Q6FYD4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.00268170694242 0.0116761971744 0.00899449023198 +UniRef50_UPI000477D162 iron ABC transporter permease 9.79089316643e-06 8.75591517729e-05 7.77682586065e-05 +UniRef50_D7AQD0 NADH 0.000279458722235 0.00123120035496 0.000951741632725 +UniRef50_I7EMW2 0.00639179441936 0.000238800570243 -0.00615299384912 +UniRef50_P28246 Bicyclomycin resistance protein 0.00283663273053 0.0014592590558 -0.00137737367473 +UniRef50_UPI00047BE7E7 hypothetical protein 4.3539261556e-05 1.44264680044e-05 -2.91127935516e-05 +UniRef50_Q02H49 0.0010801395194 0.00065379243675 -0.00042634708265 +UniRef50_K2F5A0 0.000506914449864 0.00218019681134 0.00167328236148 +UniRef50_S4B4H2 Accessory colonization factor AcfD 0.00035689939649 0.000229215558903 -0.000127683837587 +UniRef50_A6LYR9 Peptidoglycan binding domain 1 protein 0.000218199993555 0.00109020191915 0.000872001925595 +UniRef50_B9KM18 Pyruvate kinase 0.00053675768345 0.000263506281125 -0.000273251402325 +UniRef50_UPI000366947C hypothetical protein 0.000466531931967 2.74680952811e-05 -0.000439063836686 +UniRef50_F9SJR5 Putative sulfate permease 0.000954491242982 0.000410703117443 -0.000543788125539 +UniRef50_Q4L4H7 0.0380724844609 0.0133869550201 -0.0246855294408 +UniRef50_D1FMX0 InlA 1.41077967412e-05 4.50083205673e-06 -9.60696468447e-06 +UniRef50_Q1C1V0 Regulator of sigma D 0.0071784323343 0.014097614816 0.0069191824817 +UniRef50_A9B5I3 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.96654231779e-05 5.56442114355e-05 3.59787882576e-05 +UniRef50_P30363 L asparaginase 5.31448501724e-05 0.00295247749418 0.00289933264401 +UniRef50_Q92Q90 Bifunctional enzyme IspD IspF 5.59309950482e-06 7.35606071364e-06 1.76296120882e-06 +UniRef50_D0K261 Cbb3 type cytochrome c oxidase subunit CcoP 0.000440202340584 0.003679862354 0.00323966001342 +UniRef50_A0A011TPN1 0.000110318566055 2.91757436635e-05 -8.11428223915e-05 +UniRef50_UPI0004663F53 hypothetical protein 1.57197096882e-05 1.11189821549e-05 -4.6007275333e-06 +UniRef50_P46118 HTH type transcriptional regulator HexR 0.00481614900316 0.00295865574251 -0.00185749326065 +UniRef50_X7ED55 8.57880058693e-05 7.71018679163e-05 -8.686137953e-06 +UniRef50_UPI0004674A11 hypothetical protein, partial 1.02318610646e-05 3.91001985156e-05 2.8868337451e-05 +UniRef50_A0A022FVN3 Calcium transporter ChaC 2.46138505784e-06 2.10305054135e-06 -3.5833451649e-07 +UniRef50_G3XDA3 Methyl accepting chemotaxis protein CtpH 7.01646819436e-05 0.00010661252895 3.64478470064e-05 +UniRef50_F1YSU2 Folylpolyglutamate Synthase 1.05345260388e-05 8.16512993868e-06 -2.36939610012e-06 +UniRef50_S5SLF3 sn glycerol 3 phosphate ABC transporter substrate binding protein UgpB 1 1.49400390137e-05 5.57662040911e-06 -9.36341860459e-06 +UniRef50_D8UC33 6.57701548528e-06 2.07342768294e-06 -4.50358780234e-06 +UniRef50_UPI0002628085 PTS system sucrose specific transporter subunit IIABC 8.84991987881e-06 1.22508995579e-05 3.40097967909e-06 +UniRef50_R6G0R0 Glutamine ABC transporter permease substrate binding protein 0.00485225236123 0.00112778825551 -0.00372446410572 +UniRef50_Q6F6W5 Two component sensor 0.000206916889359 0.00692757814205 0.00672066125269 +UniRef50_UPI0001AF2CE2 aldehyde dehydrogenase 3.01992502523e-06 0.000355132392361 0.000352112467336 +UniRef50_B8DVI9 Uracil phosphoribosyltransferase 1.77830714206e-05 0.00970130110951 0.00968351803809 +UniRef50_Q0SAY4 Proline tRNA ligase 2 4.83060766271e-06 0.0424797862746 0.0424749556669 +UniRef50_Q3IX83 0.00200164334153 0.000497397827948 -0.00150424551358 +UniRef50_Q8Z7H3 Virulence sensor histidine kinase PhoQ 0.00320474905523 0.000338845567286 -0.00286590348794 +UniRef50_Q6MS86 Uracil phosphoribosyltransferase 3.67235518238e-05 0.00338156044231 0.00334483689049 +UniRef50_UPI000362A0E4 hypothetical protein 5.73965021646e-05 1.78473294218e-05 -3.95491727428e-05 +UniRef50_R1CV54 2.08432337532e-05 9.78987662691e-05 7.70555325159e-05 +UniRef50_UPI000273CDF3 0.0005618634754 0.000142026709046 -0.000419836766354 +UniRef50_UPI0002F1A5E0 hypothetical protein 4.92002978257e-06 1.26248816403e-06 -3.65754161854e-06 +UniRef50_I6CNQ8 Tail protein 0.000102284336647 0.000111425695703 9.141359056e-06 +UniRef50_F9Z2A5 0.000247810571456 0.00183884168898 0.00159103111752 +UniRef50_D2NS08 6 pyruvoyl tetrahydropterin synthase 0.000124105167333 0.00137175954301 0.00124765437568 +UniRef50_UPI00022CA8F3 PREDICTED 7.33091784889e-06 5.80434141213e-06 -1.52657643676e-06 +UniRef50_UPI0003B40293 hypothetical protein 1.76939269228e-05 1.28395651609e-05 -4.8543617619e-06 +UniRef50_D2ZQZ2 0.00124195771905 0.000619545535373 -0.000622412183677 +UniRef50_F5ZJC0 PpGpp synthetase 0.00442178227922 0.00296005296257 -0.00146172931665 +UniRef50_Q8DUK3 Probable thiol peroxidase 0.0132764082642 0.00396168975493 -0.00931471850927 +UniRef50_UPI0003EAABA8 PREDICTED 3.04499093141e-05 2.30839478692e-05 -7.3659614449e-06 +UniRef50_C4L7S9 30S ribosomal protein S10 0.00183051427246 0.0301069628024 0.0282764485299 +UniRef50_B5YGX0 Phosphoglucosamine mutase 4.01942056969e-06 4.88869548899e-06 8.692749193e-07 +UniRef50_UPI00047DE500 ABC transporter ATP binding protein 4.19774035681e-06 7.97986228311e-06 3.7821219263e-06 +UniRef50_UPI000466389B hypothetical protein 6.51287080114e-06 1.7961927778e-05 1.14490569769e-05 +UniRef50_Q92PK6 Anhydro N acetylmuramic acid kinase 5.95729418181e-06 3.02656637883e-05 2.43083696065e-05 +UniRef50_UPI00035E7A12 hypothetical protein, partial 6.50548491029e-06 9.91944172116e-06 3.41395681087e-06 +UniRef50_Q5LKT8 Branched chain amino acid aminotransferase, putative 0.0100355162323 0.00201462623339 -0.00802088999891 +UniRef50_P0AF42 Inner membrane protein YijD 0.00106122453314 0.000777149224201 -0.000284075308939 +UniRef50_V4QDE8 6.61748464419e-05 0.000293759826162 0.00022758497972 +UniRef50_U8EUK5 0.00236554099546 0.000921188697658 -0.0014443522978 +UniRef50_F6BNG0 Mov34 MPN PAD 1 family protein 0.000480777368385 0.000326931133971 -0.000153846234414 +UniRef50_UPI0003820CC8 hypothetical protein 1.31987820968e-05 1.88003025141e-05 5.6015204173e-06 +UniRef50_UPI0003C7BE7D MerR family transcriptional regulator 5.15843506585e-05 9.00199368689e-06 -4.25823569716e-05 +UniRef50_J3L9G7 0.00144053926662 0.000372639375648 -0.00106789989097 +UniRef50_K7RLI9 Myo inositol catabolism protein 0.000749056148611 0.00479571949045 0.00404666334184 +UniRef50_A7I8B8 Proteasome activating nucleotidase 0.00208487388978 0.000145000018924 -0.00193987387086 +UniRef50_U7JTW3 1.0092564522e-05 6.32702863908e-05 5.31777218688e-05 +UniRef50_UPI00036B2583 MULTISPECIES 1.39920720054e-05 3.100750804e-05 1.70154360346e-05 +UniRef50_A0A022SAV9 Glucose Sorbosone dehydrogenase family protein 0.00039276103946 0.00389324109081 0.00350048005135 +UniRef50_UPI00034D4ECA hypothetical protein 9.29005714967e-05 5.21233971085e-06 -8.76882317858e-05 +UniRef50_D3HHR2 0.00233307915385 0.00151761138162 -0.00081546777223 +UniRef50_UPI00036B57D3 hypothetical protein, partial 4.48650145262e-05 1.71174512554e-05 -2.77475632708e-05 +UniRef50_W8YGK7 9.16362016213e-05 8.21340861547e-05 -9.5021154666e-06 +UniRef50_J0D235 4.06239303486e-06 7.95638042336e-06 3.8939873885e-06 +UniRef50_UPI000464FCC9 resolvase, partial 0.000142984079293 5.12961252941e-05 -9.16879539989e-05 +UniRef50_A9WEB9 Thioesterase superfamily protein 8.25199620555e-06 0.000629068314867 0.000620816318661 +UniRef50_B7LPQ4 N acetyl D glucosamine kinase 0.00616413128626 0.000223442652099 -0.00594068863416 +UniRef50_Q8KWX4 DNA directed RNA polymerase subunit beta 3.93210529726e-06 2.11245015313e-06 -1.81965514413e-06 +UniRef50_D4JIJ4 Saccharopine dehydrogenase and related proteins 0.000298749486303 0.00597277926776 0.00567402978146 +UniRef50_F2CTX8 Predicted protein 0.000149932759589 0.000240747314022 9.0814554433e-05 +UniRef50_A7A5J4 3.90513767709e-05 4.33379377629e-05 4.286560992e-06 +UniRef50_UPI0003609C50 MULTISPECIES 1.95878741325e-05 1.9527613959e-05 -6.02601735e-08 +UniRef50_UPI00042A54EF 2,5 diketo D gluconic acid reductase 2.40433167827e-05 8.6415045362e-06 -1.54018122465e-05 +UniRef50_Q5KX02 Deoxyribose phosphate aldolase 0.0508528279081 0.0400455472515 -0.0108072806566 +UniRef50_UPI0003657039 flagellar P ring protein FlgI 3.01610381989e-05 3.24171446688e-05 2.2561064699e-06 +UniRef50_S5YTM5 Acetamidase formamidase 0.00142646230667 0.00079870498931 -0.00062775731736 +UniRef50_UPI0004704B80 hypothetical protein, partial 1.18179146397e-05 7.39476584358e-05 6.21297437961e-05 +UniRef50_Q9FFE6 Probable acyl activating enzyme 5, peroxisomal 0.0128671048739 0.00183563832995 -0.0110314665439 +UniRef50_I0B601 0.000462891497923 0.0319668995254 0.0315040080275 +UniRef50_P36843 Arginine biosynthesis bifunctional protein ArgJ 0.00998622489401 0.00289275356942 -0.00709347132459 +UniRef50_P00644 Thermonuclease 0.00854510824123 0.000663214998362 -0.00788189324287 +UniRef50_M1LU25 Ferredoxin NADP+ reductase 0.000177501248674 0.0063475597419 0.00617005849323 +UniRef50_UPI00039B2C8B hypothetical protein, partial 5.4923098772e-05 0.000644922595971 0.000589999497199 +UniRef50_Q21E72 Phosphate import ATP binding protein PstB 0.0120518066965 0.00436244992538 -0.00768935677112 +UniRef50_A4WXS2 0.00159506452928 0.000355803259269 -0.00123926127001 +UniRef50_A6QDJ4 0.0114607069271 0.0018364580597 -0.0096242488674 +UniRef50_Q6LLL9 3 octaprenyl 4 hydroxybenzoate carboxy lyase 1.02789871251e-05 0.00290687069189 0.00289659170476 +UniRef50_F6F2F7 Sodium hydrogen exchanger 0.00121380345087 0.000426177426962 -0.000787626023908 +UniRef50_W9TLX8 Cytochrome C type biogenesis protein CcmF 0.000126255393394 0.000104056579505 -2.2198813889e-05 +UniRef50_U7J4M5 8.50193668641e-05 0.00647734652608 0.00639232715922 +UniRef50_B8ENG6 Peptide deformylase 8.19476024657e-05 4.98654364176e-05 -3.20821660481e-05 +UniRef50_UPI00046F07FD chromosome partitioning protein ParB 6.56309060546e-05 0.000869496830371 0.000803865924316 +UniRef50_E0VHF0 1.12645075267e-06 3.3141491512e-06 2.18769839853e-06 +UniRef50_L4XF07 D galactonate transporter 0.000457707913475 0.00053693946399 7.9231550515e-05 +UniRef50_B2TRD7 Peptidase, M23 M37 family 4.44450038838e-06 9.28820811107e-06 4.84370772269e-06 +UniRef50_UPI00040D222C hypothetical protein 0.000139715267809 3.88486708281e-05 -0.000100866596981 +UniRef50_M2LUA1 Myosin cross reactive antigen 0.00249459351656 0.000309772767695 -0.00218482074887 +UniRef50_A8GM77 NADH quinone oxidoreductase subunit F 0.00941043928249 0.00115221776751 -0.00825822151498 +UniRef50_A3JRD5 0.000119319330955 0.000240736907866 0.000121417576911 +UniRef50_UPI0003684E03 hypothetical protein 6.76028254867e-05 3.67686959915e-05 -3.08341294952e-05 +UniRef50_Q2YVA6 0.000737788945268 0.000396595223403 -0.000341193721865 +UniRef50_A4WT37 Flagellin domain protein 0.0102634184283 0.00329895712411 -0.00696446130419 +UniRef50_A3CMD6 Cobalamin independent methionine synthase II, putative 0.00419311024892 0.00191845933426 -0.00227465091466 +UniRef50_UPI00037F264A hypothetical protein 5.67475642836e-06 1.16666072528e-05 5.99185082444e-06 +UniRef50_A3M7T3 0.000372858440026 0.0090595612816 0.00868670284157 +UniRef50_Q3IVA4 DNA binding protein, H NS family 0.0024991030916 0.000608900423076 -0.00189020266852 +UniRef50_A7C736 Cell shape determining protein 0.000207621189872 5.26987626334e-05 -0.000154922427239 +UniRef50_P21639 Precorrin 2 C methyltransferase 7.50677087757e-05 3.24921963736e-05 -4.25755124021e-05 +UniRef50_UPI000370964C hypothetical protein 0.00022785701659 0.000162375754193 -6.5481262397e-05 +UniRef50_Q3IYL4 0.00806789015315 0.000232017692675 -0.00783587246048 +UniRef50_I4D0J0 DNA repair protein radA 0.000884305702589 0.000744845875768 -0.000139459826821 +UniRef50_W7WR28 Lactate utilization protein A 1.07442457145e-05 7.18754806513e-05 6.11312349368e-05 +UniRef50_C5CNW9 Alkanesulfonate monooxygenase 0.000341977887354 0.00375965410765 0.0034176762203 +UniRef50_Q182W3 Stage IV sporulation protein A 0.00017560537547 0.00084958646112 0.00067398108565 +UniRef50_V5BSI8 7.39796990369e-06 8.11245863088e-05 7.37266164051e-05 +UniRef50_L7WY01 0.0235516526839 0.00458101272811 -0.0189706399558 +UniRef50_UPI00035E8B7E hypothetical protein 1.79704080645e-05 1.34367887939e-05 -4.5336192706e-06 +UniRef50_UPI00035057EC PREDICTED 0.000146683648299 0.000229508553963 8.2824905664e-05 +UniRef50_F5M5C7 XRE family transcriptional regulator 0.00566962244404 0.000572528021041 -0.005097094423 +UniRef50_UPI000381892F hypothetical protein 1.3085769077e-05 1.32518457505e-05 1.660766735e-07 +UniRef50_Q5LN51 RmuC domain protein 0.00557481358019 0.00106066614965 -0.00451414743054 +UniRef50_Q7MT83 Ribose phosphate pyrophosphokinase 5.31376958578e-06 0.00390926662888 0.00390395285929 +UniRef50_UPI00046FE313 hypothetical protein, partial 6.30764648533e-06 5.13486245894e-05 4.50409781041e-05 +UniRef50_UPI0003610E12 hypothetical protein 4.44040307618e-06 1.25774356981e-05 8.13703262192e-06 +UniRef50_R9SMA2 Radical SAM domain containing protein 0.0046907940812 0.000356820562545 -0.00433397351865 +UniRef50_F5XLU5 NADH quinone oxidoreductase subunit M 8.37616839153e-05 0.00469347864328 0.00460971695936 +UniRef50_Q8X582 Laminin binding fimbrial subunit ElfA 0.00391702566762 0.00353407048578 -0.00038295518184 +UniRef50_UPI0003943B89 PREDICTED 3.13016932926e-05 7.11250804251e-05 3.98233871325e-05 +UniRef50_R9YQF0 Alpha acetolactate decarboxylase 0.0158262965387 0.00382500466219 -0.0120012918765 +UniRef50_P77416 Hydrogenase 4 component D 0.00330967145201 0.00109671905878 -0.00221295239323 +UniRef50_UPI000477B336 ABC transporter 2.47088178354e-05 7.16676652111e-06 -1.75420513143e-05 +UniRef50_Q02F98 NH dependent NAD(+) synthetase 7.97629574974e-05 7.88879228307e-05 -8.750346667e-07 +UniRef50_G2IZ95 FIST domain protein 3.31182700567e-06 4.83924754767e-06 1.527420542e-06 +UniRef50_P77333 HTH type transcriptional regulator PgrR 0.0025749633512 0.00268400702123 0.00010904367003 +UniRef50_I4CYH2 Epoxide hydrolase 0.000252780796101 0.00146700395093 0.00121422315483 +UniRef50_A3PI48 Glucose 1 phosphate adenylyltransferase 0.000887401536012 0.000140404138754 -0.000746997397258 +UniRef50_Q0ALN8 MotA TolQ ExbB proton channel 0.00886136565012 0.0071162089237 -0.00174515672642 +UniRef50_C3AI25 1.639984699e-05 0.000436744134342 0.000420344287352 +UniRef50_UPI00036C9A3E hypothetical protein 1.4810252468e-05 1.61597839032e-05 1.3495314352e-06 +UniRef50_UPI000474F64C hypothetical protein 8.49267190284e-06 1.11269107706e-05 2.63423886776e-06 +UniRef50_UPI0004778BE4 hypothetical protein 2.44373119892e-05 1.1803962921e-05 -1.26333490682e-05 +UniRef50_A0A023RZD3 7.90822602291e-05 0.00766419433836 0.00758511207813 +UniRef50_D9SU99 Glycosyl transferase group 1 0.000181774954504 0.000326178306595 0.000144403352091 +UniRef50_UPI00037EBCF0 hypothetical protein 1.46522514342e-05 5.33448000093e-06 -9.31777143327e-06 +UniRef50_UPI00030C6615 ATPase AAA 1.71232694626e-05 3.72552006136e-05 2.0131931151e-05 +UniRef50_A3S801 0.000408457936484 1.15595843902e-05 -0.000396898352094 +UniRef50_P49938 Iron hydroxamate import ATP binding protein FhuC 7.42215529435e-05 0.000984724077882 0.000910502524939 +UniRef50_A4WQH4 0.00729226865601 0.000898718987384 -0.00639354966863 +UniRef50_UPI0003B6A5DD serine threonine phosphatase 5.46071425124e-06 1.07893241568e-05 5.32860990556e-06 +UniRef50_C9D174 Recombinase 9.98298423132e-06 1.72516716525e-05 7.26868742118e-06 +UniRef50_UPI000464FB82 hypothetical protein 8.58951548407e-06 8.46273051401e-05 7.6037789656e-05 +UniRef50_Q887Q9 Alginate biosynthesis protein AlgA 2.5141855572e-05 2.9724820054e-05 4.582964482e-06 +UniRef50_W8S5E9 ATP synthase protein I2 3.07669181821e-05 5.63896783551e-05 2.5622760173e-05 +UniRef50_Q8DSN0 Trans 2 decenoyl [acyl carrier protein] isomerase 0.00830792710601 0.00873288127745 0.00042495417144 +UniRef50_X1B5W7 Marine sediment metagenome DNA, contig 3.17998647229e-05 1.97600604251e-05 -1.20398042978e-05 +UniRef50_P0ACV2 Protein Ddg 0.00543324024235 0.00168206461126 -0.00375117563109 +UniRef50_X2I2X2 Type I restriction enzyme, S subunit 0.000487620538287 0.00163614093352 0.00114852039523 +UniRef50_UPI0003743283 hypothetical protein 7.97343472719e-06 3.35799047064e-05 2.56064699792e-05 +UniRef50_UPI000376D2EE hypothetical protein 0.0001269026374 0.000134860043275 7.957405875e-06 +UniRef50_H8H3X9 8.15177148986e-06 0.000301835713761 0.000293683942271 +UniRef50_UPI00016C4EB2 CoA transferase 1.01505351359e-05 0.000348845601499 0.000338695066363 +UniRef50_R4KIZ1 6.11390627853e-06 0.000160063254856 0.000153949348577 +UniRef50_UPI00046550E0 ABC transporter permease 1.17369052217e-05 1.14269056527e-05 -3.09999569e-07 +UniRef50_P41443 Putative type II secretion system protein H 0.00322546607497 0.000390286394531 -0.00283517968044 +UniRef50_Q6LUZ6 Glutamate ammonia ligase adenylyltransferase 0.000360306724402 0.000142715668596 -0.000217591055806 +UniRef50_A5UN96 Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA 0.00239991180861 0.000307088428274 -0.00209282338034 +UniRef50_R1GH14 6 pyruvoyl tetrahydropterin synthase 0.000100925695388 0.000610351192916 0.000509425497528 +UniRef50_Q2FME4 Transport system permease protein 0.00437976746225 0.000706722931278 -0.00367304453097 +UniRef50_UPI000255A6BC hypothetical protein 0.000100694496065 3.04524302059e-05 -7.02420658591e-05 +UniRef50_D6SDT2 PTS system, glucose subfamily, IIA component 0.0113602376407 0.00223398084898 -0.00912625679172 +UniRef50_G0LQ60 0.0166362182491 0.0024564233749 -0.0141797948742 +UniRef50_X2MMA8 0.000674396850982 2.30687264842e-05 -0.000651328124498 +UniRef50_V5IK03 Putative thyroid hormone receptor associated protein complex subunit 5.08071213708e-06 9.97158431522e-05 9.46351310151e-05 +UniRef50_B8FK17 Putative flagellar rod assembly protein muramidase FlgJ 5.37513920886e-05 8.69758197847e-05 3.32244276961e-05 +UniRef50_R0J3J3 1.14163449089e-05 5.4219283804e-06 -5.9944165285e-06 +UniRef50_I1ZKX0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.00441891616026 0.00434231544878 -7.660071148e-05 +UniRef50_UPI0004059FEB methionine aminopeptidase 5.29558507064e-05 1.88071700096e-05 -3.41486806968e-05 +UniRef50_UPI0003C3A0E4 PREDICTED 1.06134224488e-06 2.68380106598e-07 -7.92962138282e-07 +UniRef50_UPI000366D9A0 hypothetical protein, partial 1.53450681884e-05 0.0002283977417 0.000213052673512 +UniRef50_UPI0003B4B64F hypothetical protein 0.000124976474321 4.48242286738e-05 -8.01522456472e-05 +UniRef50_L1N290 TRAP transporter, DctM subunit 8.57371853798e-05 3.38266379331e-05 -5.19105474467e-05 +UniRef50_A5ULG2 Shikimate kinase 0.00235423511663 0.00119908770842 -0.00115514740821 +UniRef50_UPI0004202308 hypothetical protein 3.84937293502e-06 1.04701711882e-05 6.62079825318e-06 +UniRef50_UPI00040D932D DNA processing protein DprA 5.37955974041e-05 6.09627153994e-05 7.1671179953e-06 +UniRef50_Q1CWT2 ATP synthase subunit alpha 4.85062844372e-06 1.9238707664e-05 1.43880792203e-05 +UniRef50_T0U356 ABC transporter, ATP binding permease protein 0.00704849539221 0.00158954306946 -0.00545895232275 +UniRef50_U2YP81 L proline glycine betaine binding ABC transporter protein ProX 0.00302279062866 0.000873463451147 -0.00214932717751 +UniRef50_Q4L675 Anthranilate synthase component II 0.0159380057571 0.0056253479845 -0.0103126577726 +UniRef50_P06770 FeMo cofactor biosynthesis protein NifB 0.000673450979859 0.000135259559627 -0.000538191420232 +UniRef50_G7LYR7 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.000311067123082 0.00158535467558 0.0012742875525 +UniRef50_A0A059ECE9 3.25825728876e-05 3.46915907829e-05 2.1090178953e-06 +UniRef50_UPI0002625F09 monosaccharide transporting ATPase 0.000180946036086 3.47152703867e-05 -0.000146230765699 +UniRef50_A5UKX5 Phosphomannomutase, ManB 0.00266061919226 0.000936704149232 -0.00172391504303 +UniRef50_UPI00036BA739 hypothetical protein 5.95164408854e-06 6.368226193e-06 4.1658210446e-07 +UniRef50_Q8XXJ7 5 hydroxyisourate hydrolase 4.77681442691e-05 5.71751069759e-05 9.4069627068e-06 +UniRef50_Q5HKE5 Serine protease 0.00974384965142 0.0032848677284 -0.00645898192302 +UniRef50_Q99335 Transposase for insertion sequence element IS232 0.000461368338436 0.00100010437559 0.000538736037154 +UniRef50_UPI0003EC0F26 PREDICTED 6.90617549135e-06 4.65020657738e-06 -2.25596891397e-06 +UniRef50_X8EYS2 8.47011057242e-05 0.000437602860485 0.000352901754761 +UniRef50_F6D6R1 Polymorphic outer membrane protein 1.00857377483e-05 4.42481601298e-07 -9.643256147e-06 +UniRef50_UPI0003B67906 glycine cleavage system protein H 8.82755565383e-05 2.96688322415e-05 -5.86067242968e-05 +UniRef50_Q02000 Anthranilate phosphoribosyltransferase 0.00629780606486 0.00448887046593 -0.00180893559893 +UniRef50_Q2T960 Transposase 4.77975386085e-05 1.44435619335e-05 -3.3353976675e-05 +UniRef50_O05393 O acetylserine dependent cystathionine beta synthase 1.17113361781e-05 0.00517569080136 0.00516397946518 +UniRef50_Q3JHP8 3.68666959603e-06 1.09853862995e-05 7.29871670347e-06 +UniRef50_Q3I510 EaeH 0.000108494650488 8.96414333579e-05 -1.88532171301e-05 +UniRef50_Q5HRF6 Octanoyl [GcvH] 0.0214411729638 0.00652189713856 -0.0149192758252 +UniRef50_E6MUI1 Transposase for insertion sequence element IS4351 0.000524674184769 0.0286007485361 0.0280760743513 +UniRef50_F0P3X1 Membrane protein, putative 0.00632371041829 0.00144815043485 -0.00487555998344 +UniRef50_A0A011PV93 NADH quinone oxidoreductase subunit M 2.22330913299e-05 9.31644300459e-06 -1.29166483253e-05 +UniRef50_M9VNY9 Trehalose 6 phosphate phosphatase 0.000324855730792 0.00197213275456 0.00164727702377 +UniRef50_Q7VRS0 Probable malate 4.63596837488e-06 1.2737354106e-05 8.10138573112e-06 +UniRef50_S0AB89 FAD dependent pyridine nucleotide disulfide oxidoreductase 0.000256634365371 0.000220111829952 -3.6522535419e-05 +UniRef50_Q725Q3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.38544440489e-05 3.24318867546e-06 -1.06112553734e-05 +UniRef50_K5Z1T4 8.26457386128e-06 1.28724154824e-05 4.60784162112e-06 +UniRef50_E6UA31 IstB domain protein ATP binding protein 0.000537835630213 0.000851840697171 0.000314005066958 +UniRef50_Q5HP08 0.00664782325246 0.00324875898239 -0.00339906427007 +UniRef50_UPI000262C9F7 malonyl CoA ACP transacylase 1.04632654191e-05 2.639056469e-05 1.59272992709e-05 +UniRef50_D3E006 0.00319549904747 0.00151444464203 -0.00168105440544 +UniRef50_Z6ILY0 0.226654902022 0.0411737778722 -0.18548112415 +UniRef50_UPI000365DBB0 hypothetical protein 2.56461183579e-05 1.94489192451e-05 -6.1971991128e-06 +UniRef50_B1ZNE5 50S ribosomal protein L2 0.00202072289189 0.0498711478545 0.0478504249626 +UniRef50_H0J5U8 Beta lactamase like protein 6.96761715234e-05 1.75200021458e-05 -5.21561693776e-05 +UniRef50_Q9CD72 ATP dependent DNA helicase UvrD1 1.93192650571e-05 1.24664089258e-05 -6.8528561313e-06 +UniRef50_Q2IQ01 Polyribonucleotide nucleotidyltransferase 7.40046492376e-06 1.58790309362e-05 8.47856601244e-06 +UniRef50_P13458 Nuclease SbcCD subunit C 0.00268512304215 0.0019846916723 -0.00070043136985 +UniRef50_A6LTD7 Regulatory protein, LacI 0.000515861012312 0.000848543808525 0.000332682796213 +UniRef50_UPI000471A07E hypothetical protein 5.02070021107e-06 7.35647215596e-05 6.85440213485e-05 +UniRef50_Q9ZFV2 Ethanolamine utilization protein EutA 0.00320409139833 0.00056465813467 -0.00263943326366 +UniRef50_Q5HHC7 NAD specific glutamate dehydrogenase 0.0248217825334 0.00714889696559 -0.0176728855678 +UniRef50_Q8ZQZ8 Nicotinate nucleotide adenylyltransferase 0.00110496810652 0.00233932127486 0.00123435316834 +UniRef50_UPI00016C532F competence protein 1.74057420092e-05 7.02930914578e-06 -1.03764328634e-05 +UniRef50_W8ESZ0 MFS transporter 0.000168771679067 0.0068281039657 0.00665933228663 +UniRef50_Q18GT4 Ketol acid reductoisomerase 0.0159798551999 0.0170780799244 0.0010982247245 +UniRef50_B2UX29 Probable tRNA sulfurtransferase 0.000176946557275 0.00149699501733 0.00132004846006 +UniRef50_L8P9Y5 4.53929195576e-05 3.13175768306e-05 -1.4075342727e-05 +UniRef50_UPI0003782695 hypothetical protein 2.50134773737e-05 0.000163637526545 0.000138624049171 +UniRef50_UPI0004687CD1 hypothetical protein 6.89609248198e-06 2.88948601074e-05 2.19987676254e-05 +UniRef50_D4FA45 0.000446110900423 5.79864769071e-05 -0.000388124423516 +UniRef50_P77161 2 hydroxy 3 oxopropionate reductase 0.00389204218141 0.000674366264168 -0.00321767591724 +UniRef50_P0AG22 GTP pyrophosphokinase 0.00455354363415 0.00105659819438 -0.00349694543977 +UniRef50_UPI000376960F hypothetical protein 1.32689773114e-05 1.78053790282e-05 4.5364017168e-06 +UniRef50_R6GAB3 1.30609916553e-05 0.000385889205454 0.000372828213799 +UniRef50_V5TWY7 PTS system glucose specific transporter subunit IICBA 0.0117664701107 0.00412166415741 -0.00764480595329 +UniRef50_P0AAY8 0.0033763923461 0.00037381861418 -0.00300257373192 +UniRef50_B9DPU7 SpoU rRNA Methylase family protein 0.017012111595 0.00279649005363 -0.0142156215414 +UniRef50_Q9KT08 Phosphate acetyltransferase 4.00843983823e-06 4.23201108894e-05 3.83116710512e-05 +UniRef50_E8RV78 Thioesterase superfamily protein 1.08181752544e-05 2.64311388665e-05 1.56129636121e-05 +UniRef50_R5QLK2 UPF0301 protein BN820_01713 1.89509260256e-05 2.82676538848e-05 9.3167278592e-06 +UniRef50_A6LR77 0.000604442779257 0.000395869853358 -0.000208572925899 +UniRef50_I0C756 Phage infection protein 0.00964486780758 0.00222376163346 -0.00742110617412 +UniRef50_UPI0003B7187B hypothetical protein 3.12724277815e-06 5.39258776798e-06 2.26534498983e-06 +UniRef50_Q8X5K0 2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase 0.00207556511661 0.000929020796484 -0.00114654432013 +UniRef50_A3M2F6 TraB protein 0.000321587976525 0.0139663629227 0.0136447749462 +UniRef50_W9R3M0 F box LRR repeat protein 20 2.67066679275e-05 3.74101057663e-05 1.07034378388e-05 +UniRef50_P0A042 Penicillinase repressor 0.102743611817 0.00946449512329 -0.0932791166937 +UniRef50_UPI000477F667 oligo 1,6 glucosidase 4.85469934699e-06 2.55836396239e-05 2.07289402769e-05 +UniRef50_D0Z4T1 Sex pilus assembly and synthesis protein TraW 0.000110133046984 2.11818667481e-05 -8.89511802359e-05 +UniRef50_UPI0003B35337 metallophosphatase 2.20994136925e-05 0.000157609166976 0.000135509753283 +UniRef50_E5AMJ1 5 methyltetrahydrofolate homocysteine methyltransferase homocysteine binding subunit 0.00123840239869 0.000164521841338 -0.00107388055735 +UniRef50_A7N2P9 Oxygen dependent choline dehydrogenase 0.00288520093223 0.000630939344942 -0.00225426158729 +UniRef50_Q02443 Protein PucC 0.00282622137911 0.000587102980539 -0.00223911839857 +UniRef50_UPI0003654508 hypothetical protein 1.9634204879e-05 0.000100444086032 8.0809881153e-05 +UniRef50_A5ULF0 Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA 0.00237091503971 0.000205473280904 -0.00216544175881 +UniRef50_A3M7N4 Chaperone protein 0.000179541746759 0.0074079265746 0.00722838482784 +UniRef50_UPI00034630B7 hypothetical protein 4.96103621917e-05 7.67689218563e-06 -4.19334700061e-05 +UniRef50_UPI0004666EB5 peptide ABC transporter permease 1.26140567229e-05 2.08310111708e-05 8.2169544479e-06 +UniRef50_E4RBH8 FolC 0.000211718678311 0.000140627002483 -7.1091675828e-05 +UniRef50_Q2YSR2 Probable transcriptional regulatory protein SAB0618 0.024892059746 0.00451488566039 -0.0203771740856 +UniRef50_G7M175 Regulatory protein MerR 0.000411862138822 0.00633557074342 0.0059237086046 +UniRef50_C6A2X9 Protein TSIB_0916 0.00139391642619 0.000775553708256 -0.000618362717934 +UniRef50_A6LR78 0.000248346045292 0.00042903153298 0.000180685487688 +UniRef50_H6P8H2 0.0047483481857 0.00582404369511 0.00107569550941 +UniRef50_F7S8I9 Integral membrane protein MviN 0.000339951426538 0.000296463095397 -4.3488331141e-05 +UniRef50_S9S8H7 Enoyl [acyl carrier protein] reductase 7.50879790259e-05 0.000133694097981 5.86061189551e-05 +UniRef50_K8BPK1 TRAP type C4 dicarboxylate transport system,large permease component 5.38096767783e-05 3.42863122114e-05 -1.95233645669e-05 +UniRef50_A1AYY0 Phage portal protein, HK97 family 0.0118287700269 0.00373650347458 -0.00809226655232 +UniRef50_UPI00035D2BA5 hypothetical protein 0.00332808398622 0.000630558278289 -0.00269752570793 +UniRef50_UPI0003B75FCC SpeB arginase agmatinase formimionoglutamate hydrolase SpeB 5.31753949305e-06 1.99802208185e-05 1.46626813254e-05 +UniRef50_Q72ZS2 4.56636276892e-05 0.00021883532944 0.000173171701751 +UniRef50_Q5HKE8 Accumulation associated protein 0.00469941004339 0.00199446713919 -0.0027049429042 +UniRef50_UPI0004726693 hypothetical protein 2.72384181748e-06 0.000234744223097 0.00023202038128 +UniRef50_Q9HWU3 Chaperone CupB2 0.00119165504671 0.000531199922635 -0.000660455124075 +UniRef50_B2FQX2 tRNA specific 2 thiouridylase MnmA 0.000848508938512 1.0976850808e-05 -0.000837532087704 +UniRef50_I0E539 Integral membrane protein 0.000159247779219 0.00283844938843 0.00267920160921 +UniRef50_D9WMQ1 Linear gramicidin synthetase LgrC 2.61840860033e-05 4.51626827214e-05 1.89785967181e-05 +UniRef50_Q8CUF5 0.0134756277929 0.00364147086919 -0.00983415692371 +UniRef50_B2IUI4 S adenosylmethionine synthase 0.00280797324293 0.00532278314709 0.00251480990416 +UniRef50_C1CSL1 Transposase 0.000498864703879 6.32538489508e-05 -0.000435610854928 +UniRef50_UPI000288C7BA 30S ribosomal protein S4 4.15653772414e-05 2.84579714207e-05 -1.31074058207e-05 +UniRef50_S2E7R7 GMP synthase , N terminal domain protein (Fragment) 0.00011558767407 0.00010599065434 -9.59701973e-06 +UniRef50_UPI0003787C04 hypothetical protein 1.29711857342e-05 4.45244240939e-05 3.15532383597e-05 +UniRef50_Q8CUF8 0.0407873277028 0.0133660968503 -0.0274212308525 +UniRef50_P39434 Soluble lytic murein transglycosylase 0.00351587897532 0.000324226819846 -0.00319165215547 +UniRef50_T1YBP6 0.00412326218797 0.0022963030733 -0.00182695911467 +UniRef50_D8LEF1 9.07709684701e-06 3.31295799127e-05 2.40524830657e-05 +UniRef50_UPI0001912679 hypothetical protein, partial 0.000105609823837 0.000365477262384 0.000259867438547 +UniRef50_C7RGN8 NusA antitermination factor 0.000218158599058 0.000646189081135 0.000428030482077 +UniRef50_UPI0004715BAF hypothetical protein 1.99921429523e-05 0.000663640337699 0.000643648194747 +UniRef50_F0KKH9 6.94887207843e-05 0.00351622771526 0.00344673899448 +UniRef50_A1KR53 Truncated pilin 0.000416344840642 0.000513594269898 9.7249429256e-05 +UniRef50_C1FK14 Transcriptional regulator, PadR family 0.000342132316185 0.000573430495526 0.000231298179341 +UniRef50_C6DIM2 p hydroxybenzoic acid efflux pump subunit AaeA 0.00266710302094 0.00177452980835 -0.00089257321259 +UniRef50_UPI0003B3D425 hypothetical protein 1.35848518416e-05 5.61264042979e-06 -7.97221141181e-06 +UniRef50_W9UYG1 0.000113929372892 4.63803771412e-05 -6.75489957508e-05 +UniRef50_UPI00046605A2 ABC transporter permease, partial 9.86204550387e-05 1.5208704671e-05 -8.34117503677e-05 +UniRef50_UPI0003634E25 hypothetical protein 0.000101104543546 3.66176712293e-05 -6.44868723167e-05 +UniRef50_UPI0004779514 ABC transporter ATP binding protein 4.34915219524e-06 1.22987128859e-05 7.94956069066e-06 +UniRef50_UPI0002881118 ribosome biogenesis GTPase ObgE 1.59775341625e-05 0.00103421837341 0.00101824083925 +UniRef50_UPI0003FA120A hypothetical protein 1.58689415224e-05 2.76042739469e-05 1.17353324245e-05 +UniRef50_A5UL98 Cobalt ABC transporter, permease component, CbiQ 0.00253568526927 0.000495290313477 -0.00204039495579 +UniRef50_A4IK74 Phosphomethylpyrimidine synthase 2.60596728008e-06 9.66913450079e-06 7.06316722071e-06 +UniRef50_A9XTE3 Jhp0563 like glycosyltransferase 0.000387356403882 0.000575298332566 0.000187941928684 +UniRef50_W7X9E0 4.34368587273e-05 0.000249305229591 0.000205868370864 +UniRef50_UPI00016A4104 Succinate semialdehyde dehydrogenase (+)) 1.24268124649e-05 1.84423515042e-05 6.0155390393e-06 +UniRef50_A6LY03 ABC transporter related 0.000232625774347 0.00132706855048 0.00109444277613 +UniRef50_X1JM57 Marine sediment metagenome DNA, contig 2.99629469866e-05 1.64638928718e-05 -1.34990541148e-05 +UniRef50_UPI00046E044E 7.48804682208e-06 4.62227673421e-06 -2.86577008787e-06 +UniRef50_C5YVS6 1.9807607126e-06 1.27037929336e-05 1.0723032221e-05 +UniRef50_UPI00047E12F0 hypothetical protein 3.74879285403e-06 4.82506144331e-05 4.45018215791e-05 +UniRef50_A7FM33 Polyamine aminopropyl transferase 0.00376831176294 0.000753665078294 -0.00301464668465 +UniRef50_D3D5C3 2.45874977153e-05 2.66737712782e-06 -2.19201205875e-05 +UniRef50_F7Q1E0 Carbonic anhydrase Gamma family Zn dependent enzyme protein 1.6452639757e-05 1.48339560468e-05 -1.6186837102e-06 +UniRef50_D5BS21 Surface presentation of antigens protein 0.0110688456128 0.00207929368858 -0.00898955192422 +UniRef50_UPI000363FFD6 hypothetical protein 9.27389603794e-06 2.44196351808e-05 1.51457391429e-05 +UniRef50_A0A017HJR6 Uracil DNA glycosylase, family 4 6.67122256848e-06 0.000149401368563 0.000142730145995 +UniRef50_UPI000363A8BB hypothetical protein 1.63555119175e-05 0.000233811113467 0.00021745560155 +UniRef50_W0F5U5 Spermidine putrescine ABC transporter permease protein 0.0189661852469 0.0133830857683 -0.0055830994786 +UniRef50_D9RGW2 SWIM zinc finger domain protein 0.0146069619984 0.00159961517614 -0.0130073468223 +UniRef50_N8ZPV3 7.68164587931e-06 0.00142624545122 0.00141856380534 +UniRef50_P28306 UPF0755 protein YceG 0.00373805359765 0.000557007659957 -0.00318104593769 +UniRef50_UPI0003B40484 ABC transporter substrate binding protein 4.16479467449e-06 1.02418607803e-05 6.07706610581e-06 +UniRef50_A0A023LG84 0.000729966895211 0.000641992837382 -8.7974057829e-05 +UniRef50_T2A0U3 0.00644175557497 0.00291901259026 -0.00352274298471 +UniRef50_M7DV55 ATP binding protein 0.00528052208862 0.00150175179625 -0.00377877029237 +UniRef50_O67260 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.7183587158e-05 2.13268607061e-05 -4.58567264519e-05 +UniRef50_T2SKF0 5.41069262592e-05 0.000945032115242 0.000890925188983 +UniRef50_R4MC14 Poly polymerase 0.000180486374365 0.00357467742193 0.00339419104757 +UniRef50_N0C862 Histidine kinase 0.00457806341145 0.0070485833319 0.00247051992045 +UniRef50_Q4SDM4 Chromosome 10 SCAF14634, whole genome shotgun sequence 8.88202326721e-05 0.000138321641777 4.95014091049e-05 +UniRef50_UPI00047BEAD1 carnitine dehydratase 9.43135891636e-06 0.000180250783341 0.000170819424425 +UniRef50_A4VS16 Predicted esterase of the alpha beta hydrolase superfamily 0.000105051759422 0.000161081839199 5.6030079777e-05 +UniRef50_R5N6D2 DNA repair protein radA 7.1041348413e-05 0.000502203814538 0.000431162466125 +UniRef50_A0LT91 S malonyltransferase like protein 0.000287425879838 0.00725903193647 0.00697160605663 +UniRef50_UPI00047DAB1B 3 ketoacyl ACP reductase 9.36161069431e-06 7.88780938876e-05 6.95164831933e-05 +UniRef50_UPI000350AD27 PREDICTED 2.42238996511e-05 9.72645983213e-06 -1.4497439819e-05 +UniRef50_UPI0003689445 hypothetical protein 0.000106552373166 2.56273932271e-05 -8.09249799389e-05 +UniRef50_A3XF72 8.200264802e-05 2.9407621757e-05 -5.2595026263e-05 +UniRef50_UPI0003767FF8 MULTISPECIES 3.94504180628e-06 0.000485169128244 0.000481224086438 +UniRef50_A6M2A6 0.000646321432094 0.00215613081364 0.00150980938155 +UniRef50_UPI0001AF2BB8 hypothetical protein 3.13933506579e-05 2.98851871602e-05 -1.5081634977e-06 +UniRef50_UPI00046AF737 iron transporter FeoB 2.02745698268e-06 1.75810874318e-05 1.55536304491e-05 +UniRef50_UPI0003B74184 pyridine nucleotide disulfide oxidoreductase 6.93318721851e-06 5.84914695182e-05 5.15582822997e-05 +UniRef50_Q1C306 Serine threonine transporter SstT 0.00151173674236 0.0174023159613 0.0158905792189 +UniRef50_UPI0004728704 dihydrofolate reductase 9.39461044018e-06 1.67579754899e-05 7.36336504972e-06 +UniRef50_O06745 Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase 0.000204579640357 0.0003430472397 0.000138467599343 +UniRef50_Q1BQE2 Oxygen dependent choline dehydrogenase 0.00199009862921 0.00883979572834 0.00684969709913 +UniRef50_Q17WJ2 Lipid A disaccharide synthase 0.000113814871007 0.00480051968337 0.00468670481236 +UniRef50_Q8R9S4 Diaminopimelate epimerase 6.99981141936e-06 1.2596920151e-05 5.59710873164e-06 +UniRef50_Q67Q92 Queuine tRNA ribosyltransferase 0.00715441280628 0.00749925503936 0.00034484223308 +UniRef50_UPI0001A64225 ubiquitin activating enzyme E1C 7.26104725343e-06 5.80967837562e-06 -1.45136887781e-06 +UniRef50_UPI0001B43C5C hypothetical protein 0.000359370354861 0.000448340793706 8.8970438845e-05 +UniRef50_I6DSS5 Inner membrane transport YhaO domain protein 6.64039115119e-06 5.33471461469e-05 4.67067549957e-05 +UniRef50_UPI000328C4DC PREDICTED 5.27424085961e-05 6.42183268496e-05 1.14759182535e-05 +UniRef50_B2SSQ5 MazG family protein 1.23772007498e-05 8.22109049933e-06 -4.15611025047e-06 +UniRef50_P56468 Adenylosuccinate lyase 2.19245649797e-05 0.00389146945085 0.00386954488587 +UniRef50_A4W496 Glutamate tRNA ligase 0.0306025236873 0.0143672193783 -0.016235304309 +UniRef50_A3M472 Putative VGR related protein 0.000218687245022 0.00613097234509 0.00591228510007 +UniRef50_L1ENB1 4Fe 4S binding domain protein 0.000239690393573 0.000498665076251 0.000258974682678 +UniRef50_UPI00035C121E hypothetical protein 5.05027168959e-06 3.85313244358e-06 -1.19713924601e-06 +UniRef50_A7ZV28 Elongation factor P beta lysine ligase 0.00260751095839 0.000813093308337 -0.00179441765005 +UniRef50_D9WVR9 Putative PE PGRS family protein 1.67315728401e-05 0.000159818499389 0.000143086926549 +UniRef50_P62410 Phosphoglycerate kinase 3.89912285422e-05 3.51353345263e-05 -3.8558940159e-06 +UniRef50_F2QFE8 ABC transporter, membrane spanning permease amino acid transport 0.00392621463373 0.00166205695057 -0.00226415768316 +UniRef50_UPI00038138EB hypothetical protein 9.74520957538e-05 6.70327217113e-05 -3.04193740425e-05 +UniRef50_A0A009ENE3 0.000843973069637 0.00168582303174 0.000841849962103 +UniRef50_R4YI13 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 2.18983818154e-05 8.19958858392e-05 6.00975040238e-05 +UniRef50_B2JNG5 Response regulator receiver modulated diguanylate cyclase 0.000308517570146 0.000672437675137 0.000363920104991 +UniRef50_N6UYM2 0.000922155916471 0.00186240189643 0.000940245979959 +UniRef50_Q5HKC3 Membrane protein, putative 0.00726108399416 0.00309896527255 -0.00416211872161 +UniRef50_Q6F9M2 0.000151804016961 0.0028152436106 0.00266343959364 +UniRef50_UPI0002F008CE hypothetical protein 3.05510220014e-05 2.92928165668e-05 -1.2582054346e-06 +UniRef50_D6SFU4 0.0104844913194 0.000760127631047 -0.00972436368835 +UniRef50_UPI00036F8D63 acriflavine resistance protein B, partial 0.00106048843486 0.000499540787336 -0.000560947647524 +UniRef50_E1SCF3 Protein CreA 2.11541297717e-05 1.45553518633e-05 -6.5987779084e-06 +UniRef50_Q09CY9 Glycerophosphoryl diester phosphodiesterase family protein 0.000204599451951 0.00422326132078 0.00401866186883 +UniRef50_UPI0003B43E42 ferredoxin 4.46274154567e-06 3.92315621134e-05 3.47688205677e-05 +UniRef50_Q5F9U6 Ferrochelatase 0.000122353727569 0.00366894321078 0.00354658948321 +UniRef50_B2UCS2 MJ0042 family finger like protein 0.000436415527039 2.88660891432e-05 -0.000407549437896 +UniRef50_Q2SQX2 Methionyl tRNA formyltransferase 7.03321240642e-06 8.12177811378e-06 1.08856570736e-06 +UniRef50_M2P9Q5 7.17253100933e-06 1.38216466581e-05 6.64911564877e-06 +UniRef50_Q0DG35 Glutamate synthase 2 [NADH], chloroplastic 1.1608916872e-06 7.63134752787e-06 6.47045584067e-06 +UniRef50_S5N4L1 Phosphodiesterase 1.11725266408e-05 1.40569125541e-05 2.8843859133e-06 +UniRef50_E2CN00 RNA binding region RNP 1 0.000396145670546 7.73765875453e-05 -0.000318769083001 +UniRef50_M1LU43 ABC type multidrug transport system, permease component 0.000240268655239 0.00135462214449 0.00111435348925 +UniRef50_Q73UD7 Uracil phosphoribosyltransferase 6.27443715546e-06 3.12001698176e-05 2.49257326621e-05 +UniRef50_G3VFK2 0.000230091468406 0.000109538040348 -0.000120553428058 +UniRef50_UPI00046F72B6 hypothetical protein 6.2197453924e-06 8.59113495867e-06 2.37138956627e-06 +UniRef50_M1MME7 Diguanylate cyclase with GAF sensor 0.000381712520228 0.000671718341601 0.000290005821373 +UniRef50_Q9RXG2 0.000387828070733 0.00530660967886 0.00491878160813 +UniRef50_Q492H7 NADH quinone oxidoreductase subunit B 0.00404767099453 0.00502923563427 0.00098156463974 +UniRef50_Q9RU97 NADH quinone oxidoreductase subunit K 1.34522316482e-05 0.00418202630395 0.0041685740723 +UniRef50_M4JWD8 Peptidase, M48 family protein 0.000162141165429 0.000127842729522 -3.4298435907e-05 +UniRef50_A7ZV66 3 keto L gulonate 6 phosphate decarboxylase UlaD 0.000103341699514 7.2991824593e-05 -3.0349874921e-05 +UniRef50_E0S0B7 HD domain containing protein 0.000468041431179 0.000295883924982 -0.000172157506197 +UniRef50_UPI00037812FE hypothetical protein 3.35813047136e-06 0.000287064064529 0.000283705934058 +UniRef50_A0A016QQ81 Ferripyochelin binding protein 6.54836586944e-05 2.78214091041e-05 -3.76622495903e-05 +UniRef50_UPI0002481AAE ATP dependent DNA helicase 2.42694999284e-05 7.7027657563e-06 -1.65667341721e-05 +UniRef50_Q9HVI1 Cyclic diguanosine monophosphate binding protein PA4608 0.00105837193136 0.00466289534518 0.00360452341382 +UniRef50_C7NJL3 0.000109848409144 0.000906500687807 0.000796652278663 +UniRef50_Q6GCB8 Probable acetyl CoA acyltransferase 0.0203482312237 0.00454040359876 -0.0158078276249 +UniRef50_UPI0001744E0A heme oxygenase BphO 7.89527497315e-05 0.00023252591904 0.000153573169309 +UniRef50_U3T6D3 2.72456884078e-05 0.000584785554841 0.000557539866433 +UniRef50_Q9I5S3 0.000501945955988 0.000806210423977 0.000304264467989 +UniRef50_Q9I5S0 0.00174343484166 0.000180806146044 -0.00156262869562 +UniRef50_G7ZR16 6 phospho beta glucosidase 0.00467654438836 0.000567947675405 -0.00410859671295 +UniRef50_D9W5N7 Modular polyketide synthase 0.000410239963179 0.000593776310854 0.000183536347675 +UniRef50_A6LR15 Heavy metal transport detoxification protein 0.000316180921983 0.000512459086671 0.000196278164688 +UniRef50_F8TV67 3.46312723582e-05 1.03103551076e-05 -2.43209172506e-05 +UniRef50_UPI00039592BB PREDICTED 7.9666718241e-05 0.000268347866217 0.000188681147976 +UniRef50_C5C3V4 Dihydrodipicolinate synthetase 0.000246186514471 0.00753736372692 0.00729117721245 +UniRef50_Q8VPM9 Putative minor silk ampullate protein 4.7304008625e-05 3.87749774621e-05 -8.5290311629e-06 +UniRef50_Q6A9K7 UvrABC system protein B 0.00270230565789 0.00831561808501 0.00561331242712 +UniRef50_M9VGK7 AsnC family transcriptional regulator 0.000143530794236 0.00551264336394 0.0053691125697 +UniRef50_F0BGS2 8.07267186025e-06 4.23917160179e-05 3.43190441576e-05 +UniRef50_A7X1H8 Probable dual specificity RNA methyltransferase RlmN 0.0173155908513 0.00438866654436 -0.0129269243069 +UniRef50_I0C1J1 ABC transporter ATP binding protein 0.0261910592652 0.0105394015222 -0.015651657743 +UniRef50_Q6A6A0 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.000281006939596 0.0013911193257 0.0011101123861 +UniRef50_B9KJF4 Flagellar protein FlgJ 0.000715610509157 0.00112698588731 0.000411375378153 +UniRef50_Q9KZ75 Urocanate hydratase 0.0182166153492 0.0681099405334 0.0498933251842 +UniRef50_A6LXE4 0.000149203948168 0.000738619916081 0.000589415967913 +UniRef50_Q4L666 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0145257566457 0.00476950824406 -0.00975624840164 +UniRef50_C4Z005 Sex pilus assembly 8.8555487215e-05 6.91722850034e-06 -8.16382587147e-05 +UniRef50_R6X9T8 HAD hydrolase family IIA 0.000278930533636 0.0011980488161 0.000919118282464 +UniRef50_UPI0002B45CA4 PREDICTED 2.98187693916e-05 1.34323196185e-05 -1.63864497731e-05 +UniRef50_X5A6R4 NMT1 THI5 like domain containing protein 0.000221225350812 0.00152028612435 0.00129906077354 +UniRef50_UPI00036E0775 hypothetical protein 6.32796426477e-06 4.37819395129e-06 -1.94977031348e-06 +UniRef50_A6LY63 Restriction modification system DNA specificity domain 0.000631529146184 0.000962204258572 0.000330675112388 +UniRef50_A0A016QUC8 UvrABC system protein B 0.000162050388312 0.0521461707026 0.0519841203143 +UniRef50_P64625 0.00346788922668 0.000372247947718 -0.00309564127896 +UniRef50_A6M107 AzlC family protein 0.000478643582965 0.000829265443732 0.000350621860767 +UniRef50_UPI0003C16A5C PREDICTED 0.000251337971586 9.19579373135e-05 -0.000159380034272 +UniRef50_UPI0002E46BCB hypothetical protein 5.50110513577e-05 0.000450612827147 0.000395601775789 +UniRef50_A9FT06 Succinate dehydrogenase 0.00779650447133 0.0030815218532 -0.00471498261813 +UniRef50_B4EW02 Exoribonuclease 2 0.00326555404829 0.000878606472084 -0.00238694757621 +UniRef50_D3QD55 Hydrolase 0.0231365541319 0.0076293262034 -0.0155072279285 +UniRef50_T0U7I8 7.23954326956e-06 1.65422229641e-05 9.30267969454e-06 +UniRef50_UPI0003B4922D aliphatic sulfonate ABC transporter ATP binding protein 2.23952646445e-05 1.33864378036e-05 -9.0088268409e-06 +UniRef50_UPI0002C44C85 9.46637939872e-05 9.77869884769e-05 3.1231944897e-06 +UniRef50_UPI000479BB48 MerR family transcriptional regulator 0.000215980572717 0.000155763447928 -6.0217124789e-05 +UniRef50_L7X2B6 0.00944755731629 0.001823243788 -0.00762431352829 +UniRef50_E1HW74 0.000244259788288 0.000138828911316 -0.000105430876972 +UniRef50_Q6GGX3 Extracellular matrix binding protein ebh 0.003334960755 4.60832309785e-05 -0.00328887752402 +UniRef50_M1VHC0 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide a dehydrogenase 0.000293814387718 0.000159090209926 -0.000134724177792 +UniRef50_A0A011PNT7 N acetylmuramoyl L alanine amidase AmiC 1.31242779817e-05 8.68316240677e-06 -4.44111557493e-06 +UniRef50_UPI00042B1EB5 Urease isoform 3 1.12520559249e-05 1.84403915345e-05 7.1883356096e-06 +UniRef50_B9JSW9 Altronate oxidoreductase 0.000334571641719 0.000131641919103 -0.000202929722616 +UniRef50_D4TSX0 8.82751808228e-06 0.0017486384547 0.00173981093662 +UniRef50_UPI00022CADD1 PREDICTED 1.6286251196e-05 4.72618973113e-05 3.09756461153e-05 +UniRef50_U6HVE2 NADH dehydrogenase iron sulfur 1.49300869617e-05 2.99851778646e-05 1.50550909029e-05 +UniRef50_H4AYY9 0.000271572653853 0.000424916122588 0.000153343468735 +UniRef50_UPI000467CE02 hypothetical protein 1.16220723644e-05 8.99413266923e-06 -2.62793969517e-06 +UniRef50_F4QVG8 ABC transporter ATP binding protein 4.76204554315e-05 0.000146436949921 9.88164944895e-05 +UniRef50_C4LBT6 CreA family protein 3.36022263197e-05 1.89467968641e-05 -1.46554294556e-05 +UniRef50_P75713 0.00323162144966 0.00268839973059 -0.00054322171907 +UniRef50_Q9A5B6 Histidinol phosphate aminotransferase 2 2.27177554584e-05 3.28487897182e-05 1.01310342598e-05 +UniRef50_UPI00046D93F6 30S ribosomal protein S2 1.41273048132e-05 7.10809810176e-05 5.69536762044e-05 +UniRef50_UPI00046FBC18 ribonucleoside diphosphate reductase, partial 2.52582639161e-05 6.91638117411e-05 4.3905547825e-05 +UniRef50_E5QQY5 Magnesium transporter 0.017965537466 0.00240778700589 -0.0155577504601 +UniRef50_E8SE09 0.00472048239387 0.00187938577467 -0.0028410966192 +UniRef50_B4V430 Secreted protein 3.40701929331e-05 1.29466452027e-05 -2.11235477304e-05 +UniRef50_UPI0001BF7CE0 hypothetical protein SMAC_11079 0.000128207828784 0.000414173488835 0.000285965660051 +UniRef50_Q04677 Acetyl CoA acetyltransferase IB 1.21298909665e-05 4.07787402473e-05 2.86488492808e-05 +UniRef50_G8VNQ8 L lactate dehydrogenase 0.000446262692631 0.00571270550924 0.00526644281661 +UniRef50_UPI00037C43AF hypothetical protein 2.00906876099e-05 3.70002381506e-05 1.69095505407e-05 +UniRef50_UPI00037D4375 hypothetical protein 2.13910017578e-05 5.40325035305e-05 3.26415017727e-05 +UniRef50_Q88J90 Ribose import ATP binding protein RbsA 0.00440773607674 0.000307383772219 -0.00410035230452 +UniRef50_U2ZG68 7.98678786862e-05 1.57130771881e-05 -6.41548014981e-05 +UniRef50_Q896G3 Glutamate 5 kinase 7.47678913671e-06 0.0024131528176 0.00240567602846 +UniRef50_G7VUW1 2.1019726512e-05 2.11359497786e-05 1.162232666e-07 +UniRef50_D6XC51 Transcriptional regulator 1.36787110789e-05 9.94961436477e-06 -3.72909671413e-06 +UniRef50_P33655 DNA primase 8.35762336971e-05 0.000530095324728 0.000446519091031 +UniRef50_A1SJN3 Putative spermidine synthase 7.89399475999e-06 4.33104682062e-05 3.54164734462e-05 +UniRef50_A5ULC4 Archaeosine tRNA ribosyltransferase 0.00192138966956 0.00240659929951 0.00048520962995 +UniRef50_UPI00037F7E70 hypothetical protein 7.29407301526e-05 0.000288014754741 0.000215074024588 +UniRef50_UPI000155436C hypothetical protein ORF028 6.20073369599e-05 1.49679770166e-05 -4.70393599433e-05 +UniRef50_D6TC11 2.05278831548e-05 4.74473247922e-05 2.69194416374e-05 +UniRef50_H6MGY8 0.0008644717302 0.00144056929363 0.00057609756343 +UniRef50_UPI00029A30E6 DEAD DEAH box helicase 1.17690045276e-05 4.14982408194e-05 2.97292362918e-05 +UniRef50_D2AI68 0.000679051253281 7.64917025722e-06 -0.000671402083024 +UniRef50_Q5HM66 0.0188302815262 0.00564301100836 -0.0131872705178 +UniRef50_C1L1N4 Protease HtpX homolog 0.00319280056892 0.00528929293076 0.00209649236184 +UniRef50_R7IC53 4.71667980926e-06 1.14380848547e-05 6.72140504544e-06 +UniRef50_Q2LSL3 Chemotaxis response regulator protein glutamate methylesterase 2 8.44274447877e-05 9.1517727501e-06 -7.52756720376e-05 +UniRef50_UPI0004659E7D hypothetical protein 6.88292749957e-06 7.5503558979e-05 6.86206314794e-05 +UniRef50_P48372 DNA gyrase subunit A 0.000930594521004 0.00364226957599 0.00271167505499 +UniRef50_Q89AT7 NADH quinone oxidoreductase subunit K 4.0262775166e-05 5.81517340679e-05 1.78889589019e-05 +UniRef50_UPI00041970DE hypothetical protein 6.13008733624e-06 4.52171149826e-05 3.90870276464e-05 +UniRef50_UPI00016C51C4 hypothetical protein 0.000154749066346 6.04312757241e-05 -9.43177906219e-05 +UniRef50_M5Q8W3 Opacity protein 0.00366758055408 0.000600644146164 -0.00306693640792 +UniRef50_UPI00046AB508 ABC transporter permease 5.60732507828e-05 4.31860228865e-05 -1.28872278963e-05 +UniRef50_C6S5R7 0.00060237125881 0.00448312547227 0.00388075421346 +UniRef50_Q28TI8 Chromosomal replication initiator DnaA 8.29777069447e-05 1.35544832623e-05 -6.94232236824e-05 +UniRef50_Q9I633 0.00110122422018 0.00112976333564 2.853911546e-05 +UniRef50_S5UJA4 0.000563272726229 0.000215762773233 -0.000347509952996 +UniRef50_UPI0003612EB0 hypothetical protein 1.236221516e-05 1.34671040401e-05 1.1048888801e-06 +UniRef50_A6QI12 0.0179601373816 0.00728077508766 -0.0106793622939 +UniRef50_UPI0003C17432 PREDICTED 5.79010549164e-05 5.03991597532e-06 -5.28611389411e-05 +UniRef50_F3ZDJ3 2.35894280487e-05 6.04648472623e-06 -1.75429433225e-05 +UniRef50_U5NMQ2 Phage major tail protein 2 0.0102943503063 0.000987839050157 -0.00930651125614 +UniRef50_C6D5Z2 Inosine uridine preferring nucleoside hydrolase 0.01789529746 0.00573741625865 -0.0121578812014 +UniRef50_A0A032VXU1 0.00013212252015 2.93015154984e-05 -0.000102821004652 +UniRef50_J4TL27 5.00051400286e-05 2.65842247385e-05 -2.34209152901e-05 +UniRef50_P33517 Cytochrome c oxidase subunit 1 0.0136412285444 0.00313674057469 -0.0105044879697 +UniRef50_UPI000363849B hypothetical protein 1.01937742949e-05 1.12750633357e-05 1.0812890408e-06 +UniRef50_R7B083 0.000699377019834 0.00201040717165 0.00131103015182 +UniRef50_P05101 Modification methylase EcoRII 0.00277558740306 0.00180407385009 -0.00097151355297 +UniRef50_Q83EC8 Lipoprotein signal peptidase 1.53027344975e-05 2.2156846363e-05 6.8541118655e-06 +UniRef50_Q5PK75 N acetyl gamma glutamyl phosphate reductase 0.00187205310246 0.000545553657893 -0.00132649944457 +UniRef50_E7HD27 EAL domain protein 0.00288123176201 0.00150581795258 -0.00137541380943 +UniRef50_F3U4M2 TRAP dicarboxylate family transporter DctQ subunit 0.0208209957479 0.00031754484429 -0.0205034509036 +UniRef50_B3Q9Q6 Polyphosphate kinase 2.36701005378e-06 0.000307542962394 0.00030517595234 +UniRef50_W5YF86 4.9834501953e-05 3.10333472713e-05 -1.88011546817e-05 +UniRef50_P30866 0.00516235348174 0.000350871332905 -0.00481148214884 +UniRef50_M1FJM0 0.000121777348094 4.70100154563e-05 -7.47673326377e-05 +UniRef50_Q6F7D3 Septum formation, penicillin binding protein 3, peptidoglycan synthetase 6.90523150384e-05 0.00740593690898 0.00733688459394 +UniRef50_UPI000382D7E4 hypothetical protein 5.45345376878e-06 9.18193274234e-06 3.72847897356e-06 +UniRef50_P37755 Phosphomannomutase 0.00303176942356 0.00613549440538 0.00310372498182 +UniRef50_F2J6H9 Bacteriophage related protein 0.00501063747204 0.000252407440337 -0.0047582300317 +UniRef50_F4DMU6 0.00190827878082 0.000597588102367 -0.00131069067845 +UniRef50_UPI00036D9AC5 hypothetical protein 4.26343589344e-05 5.13812084703e-05 8.7468495359e-06 +UniRef50_Q2RYZ8 Glyoxalase family protein 1.18913295002e-05 2.83455037213e-05 1.64541742211e-05 +UniRef50_P39400 Putative L galactonate oxidoreductase 0.00242366681941 0.00124901404606 -0.00117465277335 +UniRef50_K6KS82 Thiamine biosynthesis protein ThiH 0.000537631260744 0.00022323218345 -0.000314399077294 +UniRef50_B8GCI5 SAF domain protein 0.00481591578526 0.00175863145623 -0.00305728432903 +UniRef50_F9YY04 N acetylgalactosaminoglycan deacetylase 0.000892585745973 0.00489596295345 0.00400337720748 +UniRef50_P23842 0.00278058507856 0.000965219277847 -0.00181536580071 +UniRef50_UPI0003781C48 hypothetical protein 4.13030439537e-05 2.47627958913e-05 -1.65402480624e-05 +UniRef50_Q7WJ90 Isoprenyl transferase 0.000159053085188 0.00236730761292 0.00220825452773 +UniRef50_P21883 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.011853523903 0.00201255846901 -0.00984096543399 +UniRef50_P11512 DNA directed RNA polymerase subunit A 0.00362178105971 0.000415063051819 -0.00320671800789 +UniRef50_U5MVJ3 Isochorismatase hydrolase 0.000236421287378 0.000326316801329 8.9895513951e-05 +UniRef50_UPI000462F18D hypothetical protein 7.98109725941e-05 2.04315075058e-05 -5.93794650883e-05 +UniRef50_Q8KLH5 Cbb3 type cytochrome c oxidase subunit FixP 5.85796773065e-05 3.70552172911e-05 -2.15244600154e-05 +UniRef50_Q49YW6 0.0240410890848 0.00369208288584 -0.020349006199 +UniRef50_UPI0002880B99 putative tartrate dehydrogenase 5.16879667234e-05 7.2030985309e-05 2.03430185856e-05 +UniRef50_M1MKH3 Xylose transport system permease protein XylH 0.000458041194981 0.000839849003335 0.000381807808354 +UniRef50_W6IFL4 ABC transporter ATP binding protein uup 0.0023587129122 0.000659668875454 -0.00169904403675 +UniRef50_Q2RPU1 UPF0301 protein Rru_A3059 3.09504684075e-05 4.27170627701e-05 1.17665943626e-05 +UniRef50_R5BPH7 0.000158830009337 0.00313271613378 0.00297388612444 +UniRef50_V2PEB0 Virulence factor MviN 2.1484164896e-05 2.20039700713e-05 5.198051753e-07 +UniRef50_M1XJR0 6.63581375609e-06 1.20984357469e-05 5.46262199081e-06 +UniRef50_UPI0003B68FE0 MerR family transcriptional regulator 5.31846975178e-05 8.94839451467e-05 3.62992476289e-05 +UniRef50_Q9RVH4 Aspartate tRNA ligase 0.000201469908573 0.0414308882991 0.0412294183905 +UniRef50_UPI000468F8E2 cystathionine beta lyase 1.23996303595e-05 4.8227116963e-05 3.58274866035e-05 +UniRef50_R9U1S9 RNA polymerase sigma factor 0.00129483588609 0.00023625336415 -0.00105858252194 +UniRef50_UPI0004687562 MerR family transcriptional regulator 0.000290881013318 0.000129877749424 -0.000161003263894 +UniRef50_O25534 Plasminogen binding protein PgbB 8.72463764734e-05 0.00320398865443 0.00311674227796 +UniRef50_G7M904 Protein FdhD homolog 0.00103937441773 0.00157398702709 0.00053461260936 +UniRef50_K2EJ34 NADH dehydrogenase 1 alpha subcomplex subunit 9 7.29156488472e-05 7.48647990631e-06 -6.54291689409e-05 +UniRef50_UPI00036C5DD6 hypothetical protein 1.98068723647e-05 8.00193321237e-05 6.0212459759e-05 +UniRef50_M2IF34 0.00310512668249 0.00196877803463 -0.00113634864786 +UniRef50_Q163W1 Ferredoxin flavodoxin oxidoreductase family protein, putative 0.0065292919727 0.00229630977559 -0.00423298219711 +UniRef50_C5XYX3 0.000306057379469 5.84501891865e-05 -0.000247607190282 +UniRef50_A3MMR3 6,7 dimethyl 8 ribityllumazine synthase 1.93804017857e-05 0.00790566518263 0.00788628478084 +UniRef50_C6A0C0 0.000586072951818 0.00193065899772 0.0013445860459 +UniRef50_G8VCJ9 Thioredoxin 0.000419629596194 0.00385010181324 0.00343047221705 +UniRef50_T3IDK7 Pyridoxal phosphate dependent enzyme family protein 0.000746352796944 0.00518364784753 0.00443729505059 +UniRef50_UPI0003AA60F6 hypothetical protein 0.000140200449436 5.66717307982e-05 -8.35287186378e-05 +UniRef50_Q8XHI3 Probable cytosol aminopeptidase 0.000583662719966 0.00259482982871 0.00201116710874 +UniRef50_UPI000382BCA5 hypothetical protein 1.39573917259e-05 1.41648661781e-05 2.074744522e-07 +UniRef50_D4HCP3 0.00010342081886 0.00209105665189 0.00198763583303 +UniRef50_W5XBB1 Histidine ammonia lyase 3.61367647422e-06 9.26555519941e-05 8.90418755199e-05 +UniRef50_C9ADA6 0.00198676836238 0.000560727921252 -0.00142604044113 +UniRef50_C9ADA5 0.00308347474601 0.00222782084296 -0.00085565390305 +UniRef50_Q46858 0.002701613847 0.000938775529307 -0.00176283831769 +UniRef50_P77622 Probable D,D dipeptide transport ATP binding protein DdpF 0.00244855463794 0.0021873905373 -0.00026116410064 +UniRef50_UPI00036F0C0F MULTISPECIES 4.84202910377e-05 9.34398274799e-05 4.50195364422e-05 +UniRef50_Q5HF07 Riboflavin biosynthesis protein RibBA 0.0190624057742 0.00555824631039 -0.0135041594638 +UniRef50_C4ZZR6 Phosphoadenosine phosphosulfate reductase 0.00328279120666 0.000818494850332 -0.00246429635633 +UniRef50_B2VEQ1 Electron transport complex subunit A 0.0170314075983 0.00126680153349 -0.0157646060648 +UniRef50_A8J087 Vasa intronic gene 0.000152141560531 0.000228901958219 7.6760397688e-05 +UniRef50_Q2RXH9 S methyl 5 thioadenosine phosphorylase 0.000730391775106 0.000238479169743 -0.000491912605363 +UniRef50_UPI0002626AF6 binding protein dependent transport systems inner membrane component 6.71206543511e-06 2.71629193096e-05 2.04508538745e-05 +UniRef50_P05165 Propionyl CoA carboxylase alpha chain, mitochondrial 1.61935911975e-05 3.24110961633e-06 -1.29524815812e-05 +UniRef50_UPI0001CBB1BB PREDICTED 8.53039829045e-06 5.21788023025e-06 -3.3125180602e-06 +UniRef50_W4TUT3 Transglutaminase like enzymes 2.5862456118e-05 0.000107251474331 8.1389018213e-05 +UniRef50_K2BIT5 0.000129059078639 0.000287330651315 0.000158271572676 +UniRef50_A8IAB0 Amino acid ABC transporter permease protein 0.00281637280679 0.000841597151491 -0.0019747756553 +UniRef50_UPI0004708F04 hypothetical protein 6.2257393452e-06 2.43093788484e-05 1.80836395032e-05 +UniRef50_E2XPH3 0.000290564872999 0.000345399655201 5.4834782202e-05 +UniRef50_Q39XE0 8 amino 7 oxononanoate synthase 1.25556389014e-05 5.04897623632e-05 3.79341234618e-05 +UniRef50_C6S4Z8 1.45198687173e-05 0.00119479420507 0.00118027433635 +UniRef50_U7DLP3 Glutathione S transferase 0.000390104399963 0.000331816522686 -5.8287877277e-05 +UniRef50_B7MUC3 Orotidine 5 phosphate decarboxylase 0.00388374367237 0.00119287884832 -0.00269086482405 +UniRef50_Q837G9 Probable potassium transport system protein kup 0.000443530771157 0.00180347286273 0.00135994209157 +UniRef50_Q3IW67 0.00229514943092 0.00230880025573 1.365082481e-05 +UniRef50_C4ZAX1 Chorismate synthase 5.7795286649e-06 1.45660469822e-05 8.7865183173e-06 +UniRef50_UPI00046B80C4 PREDICTED 4.18902954676e-06 2.9089235791e-05 2.49002062442e-05 +UniRef50_H4FA07 Pirin domain protein 2.01974655201e-05 1.76610919166e-05 -2.5363736035e-06 +UniRef50_F3MX46 0.000875973587294 0.00127482698404 0.000398853396746 +UniRef50_UPI0003B5EAE0 oxidoreductase 1.39866628539e-05 1.10941363218e-05 -2.8925265321e-06 +UniRef50_C6SS05 0.00598815968907 0.000194287306055 -0.00579387238301 +UniRef50_C6SS04 0.00587935260479 0.00225630437445 -0.00362304823034 +UniRef50_S9QXJ6 CRISPR associated helicase Cas3 0.000377661764705 2.18823682261e-05 -0.000355779396479 +UniRef50_I6FFI0 0.000191584057255 3.06088970939e-05 -0.000160975160161 +UniRef50_F3ZKC2 Putative ADP ribosylation Crystallin J1 8.55179844037e-05 0.000270957744136 0.000185439759732 +UniRef50_Q9RX93 Trans aconitate 2 methyltransferase 0.000152007780746 0.0243229490084 0.0241709412277 +UniRef50_A5UKU5 pH regulator (Monovalent cation 0.00252867423531 0.00252135717113 -7.31706418e-06 +UniRef50_S6GN96 Transporting ATPase 6.22803714885e-05 2.56353706763e-05 -3.66450008122e-05 +UniRef50_X8L2K3 Putative aldehyde alcohol dehydrogenase 0.00282206543533 0.000672122116716 -0.00214994331861 +UniRef50_P55604 0.000658665929235 4.46762366605e-05 -0.000613989692575 +UniRef50_D4H9L5 Cyclic nucleotide binding domain protein 0.000507828684551 0.00602888510839 0.00552105642384 +UniRef50_A5EBW8 ATP synthase subunit a 2 0.00449838640915 0.00150499976281 -0.00299338664634 +UniRef50_Z9WHX3 0.0002209039276 7.44130526917e-05 -0.000146490874908 +UniRef50_UPI000466F07F phosphogluconate dehydratase 1.05947354315e-05 4.83108469034e-05 3.77161114719e-05 +UniRef50_UPI0004768B65 3 oxoacyl ACP synthase 1.1281742801e-05 7.64733761624e-06 -3.63440518476e-06 +UniRef50_A6LU78 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000703390041336 0.00115209973879 0.000448709697454 +UniRef50_D7GFP5 Iron sulfur protein 0.000172660699175 0.00414534096087 0.0039726802617 +UniRef50_UPI00047E8C5B hypothetical protein 1.79336051512e-05 1.26032279032e-05 -5.330377248e-06 +UniRef50_UPI00036C9333 hypothetical protein 0.000397152344639 0.000486348309227 8.9195964588e-05 +UniRef50_F0YDM5 1.5176269066e-05 0.000284353565144 0.000269177296078 +UniRef50_B4S8V9 3 methyl 2 oxobutanoate hydroxymethyltransferase 7.20326931592e-06 1.10056351147e-05 3.80236579878e-06 +UniRef50_UPI0002631405 anaerobic dehydrogenase iron sulfur binding subunit 1, partial 1.19232248618e-05 1.87243630519e-05 6.8011381901e-06 +UniRef50_F8KPC2 Arginase 0.000230583183354 0.00397294523244 0.00374236204909 +UniRef50_UPI00040E124F sodium 1.33710768226e-05 0.00303005492361 0.00301668384679 +UniRef50_H3VVP7 Gram positive signal peptide protein, YSIRK family 0.0103226323892 0.00261871323479 -0.00770391915441 +UniRef50_UPI00037B942A hypothetical protein 9.43495658811e-06 9.06567190075e-05 8.12217624194e-05 +UniRef50_X1YQR0 6.13492178685e-05 1.7436954316e-05 -4.39122635525e-05 +UniRef50_A6UIR4 Tripartite ATP independent periplasmic transporter DctQ component 7.83111358524e-05 2.30901302771e-05 -5.52210055753e-05 +UniRef50_X1TSL9 Marine sediment metagenome DNA, contig 8.16098982228e-06 1.53847382988e-05 7.22374847652e-06 +UniRef50_G4LLH9 0.00107510097027 0.000938402286798 -0.000136698683472 +UniRef50_UPI0002376205 rtx family calcium binding cytotoxins and bacteriocins protein, partial 1.10250642722e-05 2.78836809785e-05 1.68586167063e-05 +UniRef50_UPI000263050C tryptophan synthase subunit alpha, partial 1.29998909956e-05 1.22609418911e-05 -7.389491045e-07 +UniRef50_E0TAZ2 Plasma membrane H+ transporting two sector ATPase, C subunit 0.000146007179933 6.08014709546e-05 -8.52057089784e-05 +UniRef50_U5MY05 SH3, type 3 domain protein 0.00022469404098 0.000535790788628 0.000311096747648 +UniRef50_H7CVA1 Iron chelate ABC transporter permease protein 0.000234441534824 0.000961314176563 0.000726872641739 +UniRef50_E3I0H1 L carnitine dehydratase bile acid inducible protein F 0.000879268488435 0.000331278904589 -0.000547989583846 +UniRef50_A0A037XJM6 3.23587209859e-06 1.73340412166e-06 -1.50246797693e-06 +UniRef50_V8HAI2 2.1256264004e-05 1.59266287479e-05 -5.3296352561e-06 +UniRef50_K2HT96 0.000273963012405 1.8895318272e-05 -0.000255067694133 +UniRef50_U4TIA1 Phage portal protein, HK97 family 3.7623194529e-06 6.75123771946e-06 2.98891826656e-06 +UniRef50_H5TPA6 Putative uracil permease 6.24446444935e-05 3.06187918985e-05 -3.1825852595e-05 +UniRef50_Q6FER0 Sec independent protein translocase protein TatB 0.000529185965684 0.00206979674078 0.0015406107751 +UniRef50_B7RPE0 0.000386673330433 0.000368378426439 -1.8294903994e-05 +UniRef50_Q65I16 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000601175682778 0.00390136299412 0.00330018731134 +UniRef50_V4IFH3 8.36475922404e-06 2.58604758054e-05 1.74957165814e-05 +UniRef50_UPI000367658B hypothetical protein 2.17704235779e-05 3.81355705191e-06 -1.7956866526e-05 +UniRef50_UPI00044077DF carboxymuconolactone decarboxylase 2.55063761025e-05 6.22334868425e-05 3.672711074e-05 +UniRef50_UPI0003B3D63E DEAD DEAH box helicase 2.61441615261e-06 9.81634331638e-06 7.20192716377e-06 +UniRef50_C5N0Y3 0.0116853212466 0.00232857505071 -0.00935674619589 +UniRef50_UPI0003B528A9 ribonuclease D 5.87504737223e-05 1.08728215709e-05 -4.78776521514e-05 +UniRef50_C5N0Y1 0.00949016883411 0.0038952447552 -0.00559492407891 +UniRef50_B4U5D1 Pyruvate formate lyase activating enzyme 0.00576430219594 0.00422583836511 -0.00153846383083 +UniRef50_UPI0003B42040 phosphoenolpyruvate synthase 2.07058458325e-06 9.04947398264e-05 8.84241552432e-05 +UniRef50_UPI00041405D4 hypothetical protein 9.54553442703e-06 1.86528030537e-05 9.10726862667e-06 +UniRef50_K0LAR2 APC family amino acid polyamine organocation transporter 0.0128754117271 0.00680745298341 -0.00606795874369 +UniRef50_UPI0003696CB7 hypothetical protein 0.00106841111076 0.000188171055716 -0.000880240055044 +UniRef50_P51362 Anthranilate synthase component 2 1.16010562662e-05 1.71166158398e-05 5.5155595736e-06 +UniRef50_L0KYG3 Methanol cobalamin methyltransferase B subunit 0.00268090451571 0.000311464309399 -0.00236944020631 +UniRef50_UPI000476424B glycerol 3 phosphate ABC transporter ATPase 3.52149775234e-05 4.31231558842e-05 7.9081783608e-06 +UniRef50_UPI000190A758 pyrroline 5 carboxylate reductase, partial 3.14170453931e-05 8.42404785176e-05 5.28234331245e-05 +UniRef50_P68898 HPr kinase phosphorylase 0.00497873466573 0.00629147406749 0.00131273940176 +UniRef50_B9KZY0 50S ribosomal protein L16 0.0261491624965 0.0244104387282 -0.0017387237683 +UniRef50_UPI000366C8A8 calcium binding protein 1.64669888487e-06 3.14233362043e-06 1.49563473556e-06 +UniRef50_Q47QB9 0.00112843414284 0.0745696251234 0.0734411909806 +UniRef50_UPI000364349F hypothetical protein 2.15885116566e-05 7.04746708322e-06 -1.45410445734e-05 +UniRef50_D0K393 Lipoprotein 0.00821212528409 0.00185166752122 -0.00636045776287 +UniRef50_P0AE07 Multidrug efflux pump subunit AcrA 0.00307260862145 0.000634719588446 -0.002437889033 +UniRef50_K1QDX5 0.000170367404275 1.90086793457e-05 -0.000151358724929 +UniRef50_UPI0003EF0A28 hypothetical protein 0.000101113144247 8.30030510118e-05 -1.81100932352e-05 +UniRef50_U5LCP0 1.29815170349e-05 0.000872513739769 0.000859532222734 +UniRef50_M9VES2 0.000443826550027 0.00186232437716 0.00141849782713 +UniRef50_UPI0003677933 hypothetical protein 0.00012614892914 3.93480271489e-05 -8.68009019911e-05 +UniRef50_UPI000333F6F9 PREDICTED 8.82159566685e-06 0.000330305502409 0.000321483906742 +UniRef50_D3DZ41 Arginase agmatinase family protein 0.00226449580392 0.00050225715194 -0.00176223865198 +UniRef50_E4U2W7 3.99549222094e-05 3.13019215606e-05 -8.6530006488e-06 +UniRef50_UPI00047C1003 30S ribosomal protein S2 1.42201355636e-05 0.000143951690365 0.000129731554801 +UniRef50_Q57657 Probable amidophosphoribosyltransferase 7.83462283127e-06 6.39014213947e-05 5.60667985634e-05 +UniRef50_UPI000373F66D hypothetical protein 0.000204905612754 7.13502236322e-05 -0.000133555389122 +UniRef50_X1H0M2 Marine sediment metagenome DNA, contig 4.95879619353e-05 0.000159663677551 0.000110075715616 +UniRef50_G2JLL9 0.00013291760171 0.00448864269382 0.00435572509211 +UniRef50_P71362 L 2,4 diaminobutyrate decarboxylase 0.000104760218922 0.00482345320867 0.00471869298975 +UniRef50_A0A008Q9S3 7.56481722007e-05 0.000137537026618 6.18888544173e-05 +UniRef50_P0ACP3 Catabolite repressor activator 0.00234896333666 0.00105020469483 -0.00129875864183 +UniRef50_B7V6Q1 0.000642555301206 0.000735228311697 9.2673010491e-05 +UniRef50_K0DWJ8 9.15736378938e-05 7.34684501446e-05 -1.81051877492e-05 +UniRef50_UPI000377E049 hypothetical protein 3.90093367829e-06 1.87471346809e-05 1.48462010026e-05 +UniRef50_UPI00037626C6 peptidase 3.71102718145e-05 3.36700446023e-05 -3.4402272122e-06 +UniRef50_H4F7M3 1.13485180716e-05 3.72372914155e-05 2.58887733439e-05 +UniRef50_P75747 Protein AbrB 0.00225633196586 0.00158806502216 -0.0006682669437 +UniRef50_T1JYL1 8.0231088521e-06 1.17260441222e-05 3.7029352701e-06 +UniRef50_F3ZCA1 Putative glutamate binding periplasmic protein 0.000120705753764 9.04845510458e-05 -3.02212027182e-05 +UniRef50_Q9RYQ0 Catalase 0.000401590909646 0.0475205488625 0.0471189579529 +UniRef50_Q97M68 Prolipoprotein diacylglyceryl transferase 0.000334390924066 0.00469245024513 0.00435805932106 +UniRef50_P38021 Ornithine aminotransferase 0.0363448777619 0.0038629155494 -0.0324819622125 +UniRef50_A4Y017 Transcriptional regulator, TetR family 0.00162511351231 0.000864341576184 -0.000760771936126 +UniRef50_W4U293 0.000629143314759 0.00262827018416 0.0019991268694 +UniRef50_A3PNI0 0.0198044188252 0.00435366330203 -0.0154507555232 +UniRef50_UPI00037C3547 hypothetical protein 8.41604956353e-05 0.000153301484076 6.91409884407e-05 +UniRef50_A0A023S1T5 Mutlidrug resistance protein 0.000102577714356 0.00462696631728 0.00452438860292 +UniRef50_G5M3D2 Glucan biosynthesis protein MdoG 6.79525928643e-05 0.000291965305604 0.00022401271274 +UniRef50_UPI0003793B75 hypothetical protein, partial 8.66730654038e-05 7.07040147895e-06 -7.96026639248e-05 +UniRef50_G7U887 0.00127044430963 0.006285730969 0.00501528665937 +UniRef50_F4A797 Transferase hexapeptide repeat containing protein 0.000469819556092 0.00335385138297 0.00288403182688 +UniRef50_UPI00047EC165 hypothetical protein 1.79678737142e-05 1.02221188172e-05 -7.745754897e-06 +UniRef50_UPI000225ABB3 Glycine cleavage system T protein 2.01638269094e-05 7.60073896135e-06 -1.2563087948e-05 +UniRef50_Q1AT13 Lipoyl synthase 5.5855448211e-06 3.91666730715e-05 3.35811282504e-05 +UniRef50_UPI000252BB02 PREDICTED 1.38727294061e-05 1.26269232769e-05 -1.2458061292e-06 +UniRef50_M4MFI8 Oxidoreductase,likely required for utilization of stachydrine 0.00633455674473 0.00202261065394 -0.00431194609079 +UniRef50_A5URF1 Spermidine putrescine ABC transporter ATPase subunit 0.00113433524055 0.000828419672073 -0.000305915568477 +UniRef50_Q8KCS2 3 methyl 2 oxobutanoate hydroxymethyltransferase 6.65282901631e-06 0.00196488159383 0.00195822876481 +UniRef50_A0A035ZUD7 4.08331425698e-05 7.855590716e-06 -3.29775518538e-05 +UniRef50_R6DSS9 Dihydroorotate dehydrogenase 0.00357087758517 0.000191764094291 -0.00337911349088 +UniRef50_A3TG55 0.000106409529527 0.000149731011855 4.3321482328e-05 +UniRef50_UPI0003B6DC28 taurine pyruvate aminotransferase, partial 0.000405768803778 9.90501091207e-05 -0.000306718694657 +UniRef50_I1ZMS2 Oxidoreductase, short chain dehydrogenase 0.00803246549993 0.00646922075891 -0.00156324474102 +UniRef50_F3U214 Binding protein dependent transport systems inner membrane component 0.012168571997 0.001255647078 -0.010912924919 +UniRef50_D5D972 Small heat shock protein 0.000867783882414 0.00423626721934 0.00336848333693 +UniRef50_A6LYN9 D galactose binding periplasmic protein 0.00090570956882 0.00264022433003 0.00173451476121 +UniRef50_UPI0003B622F4 transcriptional regulator 0.000166659418173 6.35450722712e-05 -0.000103114345902 +UniRef50_W4SPZ4 1.8858534114e-05 9.3676222342e-06 -9.4909118798e-06 +UniRef50_UPI0004709FDA molybdenum ABC transporter permease, partial 1.2366956433e-05 3.623277736e-05 2.3865820927e-05 +UniRef50_Q92L73 Argininosuccinate synthase 4.67005755664e-06 0.000189802026764 0.000185131969207 +UniRef50_UPI000425B71D hypothetical protein 5.80497949466e-05 1.35475765192e-05 -4.45022184274e-05 +UniRef50_A4WTW6 0.0137101381369 0.00234596779109 -0.0113641703458 +UniRef50_G5SIY2 0.000160474594636 0.00153002624741 0.00136955165277 +UniRef50_K7SJ66 von Willebrand factor type A domain containing protein 0.000664998357309 0.00926626598169 0.00860126762438 +UniRef50_P45419 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.6277332444e-05 6.13007848381e-05 4.50234523941e-05 +UniRef50_Q8XAR3 Poly beta 1,6 N acetyl D glucosamine N deacetylase 0.00330013676025 0.000943144675865 -0.00235699208439 +UniRef50_W4TPM5 Phosphoglycerate mutase family protein 0.000216945970609 0.00667100905552 0.00645406308491 +UniRef50_V5VCE3 Outer membrane protein assembly factor BamA 9.78018025449e-05 0.00266655611519 0.00256875431265 +UniRef50_W4TKT8 Molybdopterin guanine dinucleotide biosynthesis protein 9.21476590258e-05 0.000446279081066 0.00035413142204 +UniRef50_UPI0003787FA8 hypothetical protein 0.00023980166999 4.76333997079e-05 -0.000192168270282 +UniRef50_P18080 5 aminolevulinate synthase, erythroid specific, mitochondrial 7.33743180374e-06 3.50860214266e-06 -3.82882966108e-06 +UniRef50_UPI00046369B9 MULTISPECIES 1.10939165388e-05 1.58155976344e-05 4.7216810956e-06 +UniRef50_UPI0003B333D6 AsnC family transcriptional regulator, partial 0.000198299294229 9.76501286571e-05 -0.000100649165572 +UniRef50_F0KP66 Outer membrane usher protein 0.00014365236857 0.00966348105333 0.00951982868476 +UniRef50_Q2IL11 NADH quinone oxidoreductase subunit A 1.9229155422e-05 7.20028541249e-05 5.27736987029e-05 +UniRef50_UPI0003B77D72 serine dehydratase subunit beta 1.1138583195e-05 0.000168171352961 0.000157032769766 +UniRef50_Q92375 Thioredoxin reductase 5.97150396427e-05 1.71529286139e-05 -4.25621110288e-05 +UniRef50_S3BAZ0 2.48229769934e-05 0.000666157861379 0.000641334884386 +UniRef50_K5JB68 Bacterial extracellular solute binding s, 3 family protein 0.000394388856035 9.29155863266e-05 -0.000301473269708 +UniRef50_UPI000474C9A9 hypothetical protein 1.11335927472e-05 9.86498908306e-06 -1.26860366414e-06 +UniRef50_UPI0002628E30 Sua5 YciO YrdC YwlC family protein 2.45053473685e-05 2.45530355425e-05 4.7688174e-08 +UniRef50_A6LYF6 Rubrerythrin 0.000146312398781 0.00151286287989 0.00136655048111 +UniRef50_W0HD99 0.000282637119679 0.000177723192699 -0.00010491392698 +UniRef50_D9RK78 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter 0.0210254084466 0.00424839052006 -0.0167770179265 +UniRef50_UPI00037C2AEE hypothetical protein 2.9989791008e-05 4.26299618248e-05 1.26401708168e-05 +UniRef50_P26280 Reaction center protein L chain 0.0162234028551 0.0024262788167 -0.0137971240384 +UniRef50_UPI0004686580 hypothetical protein 3.20446510048e-05 5.01386596235e-05 1.80940086187e-05 +UniRef50_UPI00037303BE hypothetical protein, partial 6.76016295205e-06 7.77020633451e-06 1.01004338246e-06 +UniRef50_W8XZ85 0.000184261935083 0.000478812194975 0.000294550259892 +UniRef50_O22854 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 5.61031719189e-06 1.54845813153e-05 9.87426412341e-06 +UniRef50_P08401 Sensor protein CreC 0.00200194553282 0.000445482219259 -0.00155646331356 +UniRef50_T2EES2 3 beta hydroxysteroid dehydrogenase isomerase family protein 0.000498029375613 0.000184572940753 -0.00031345643486 +UniRef50_A6LY79 Lysine exporter protein 0.00100013271503 0.000581904837826 -0.000418227877204 +UniRef50_UPI0003946175 PREDICTED 2.06571140033e-05 2.10283417814e-05 3.712277781e-07 +UniRef50_Q7UIA7 3 isopropylmalate dehydratase large subunit 0.00542823582668 0.0195604947191 0.0141322588924 +UniRef50_Q8Y8Q5 Calcium transporting ATPase lmo0841 1.38360603378e-05 0.00166581633166 0.00165198027132 +UniRef50_K0YSF4 6.74878785343e-06 3.15992659455e-05 2.48504780921e-05 +UniRef50_G7M906 Molybdenum cofactor synthesis domain protein 0.000321493711482 0.000974327058143 0.000652833346661 +UniRef50_UPI00046F0789 multidrug MFS transporter 1.68228922347e-05 7.92689848418e-06 -8.89599375052e-06 +UniRef50_Q8XBQ1 Rare lipoprotein A 0.0024712615255 0.00031754484429 -0.00215371668121 +UniRef50_A6M2G0 Methyl accepting chemotaxis sensory transducer 0.000274075114113 0.000888881501153 0.00061480638704 +UniRef50_A6LWZ6 Response regulator receiver sensor signal transduction histidine kinase 8.92401864878e-05 0.000994924280792 0.000905684094304 +UniRef50_UPI0000057DE0 50S ribosomal protein L4 2.56734370151e-05 0.000125390682676 9.97172456609e-05 +UniRef50_A9H7F9 0.000121118499099 0.000205693106709 8.457460761e-05 +UniRef50_UPI00037D5622 hypothetical protein 1.46995381452e-05 1.09329641528e-05 -3.7665739924e-06 +UniRef50_R9SK92 Energy converting hydrogenase A subunit Q EhaQ 0.00405870528582 0.000715390932757 -0.00334331435306 +UniRef50_UPI00036E2295 hypothetical protein, partial 5.78408004857e-05 0.000105255598858 4.74147983723e-05 +UniRef50_Q9RZL8 Protein NrdI 0.000278245200628 0.0101826758014 0.00990443060077 +UniRef50_K1X086 0.00029875766889 0.000225723155117 -7.3034513773e-05 +UniRef50_G7MBG6 Glucokinase 0.000266160989946 0.00240744600086 0.00214128501091 +UniRef50_UPI00037CC8E0 hypothetical protein 1.23954220777e-05 6.62348816027e-06 -5.77193391743e-06 +UniRef50_H8LBR4 Zeta toxin 0.00191510734549 0.00341394391089 0.0014988365654 +UniRef50_F2PQ83 1.91187153239e-05 1.70566806412e-05 -2.0620346827e-06 +UniRef50_I6TQY8 Gramicidin S synthetase 0.00516329398556 0.00130933774444 -0.00385395624112 +UniRef50_U1FPP9 Serine dehydratase alpha chain domain protein 2.19768768144e-05 1.99568423137e-05 -2.0200345007e-06 +UniRef50_UPI0002FF8C25 hypothetical protein 5.18060364965e-06 2.91863915789e-05 2.40057879293e-05 +UniRef50_O34900 L cystine import ATP binding protein TcyN 0.00920332650164 0.0267580495836 0.017554723082 +UniRef50_A5UJG8 Dephospho CoA kinase, CoaE 0.000905531718019 0.00215119755502 0.001245665837 +UniRef50_UPI000376DDCE hypothetical protein, partial 4.37904073141e-05 0.000126496198145 8.27057908309e-05 +UniRef50_Q9KE44 BH1014 protein 8.26588420574e-06 8.50737326924e-05 7.68078484867e-05 +UniRef50_Q9RXS7 Endoglucanase, putative 0.00011301975714 0.0316685225141 0.031555502757 +UniRef50_D5AV16 Cobalamin biosynthesis protein CobD 3.0888789141e-05 0.00012038008543 8.9491296289e-05 +UniRef50_UPI0003B61FEB amino acid transporter 7.07188653678e-06 2.03446260814e-05 1.32727395446e-05 +UniRef50_B5XSL3 5.44891854867e-05 8.28115556762e-05 2.83223701895e-05 +UniRef50_P50511 RNA polymerase sigma factor RpoH 0.000604457946096 0.00499983723944 0.00439537929334 +UniRef50_W5X4I3 Tyrosine recombinase XerC 4.61731604475e-06 9.4382950065e-06 4.82097896175e-06 +UniRef50_A0R8M9 Gluconate kinase, FGGY family 0.00988890244243 0.00350907738141 -0.00637982506102 +UniRef50_UPI000255F256 hypothetical protein 1.04914179958e-06 7.77307564342e-06 6.72393384384e-06 +UniRef50_Q6GEF9 Molybdenum cofactor biosynthesis protein B 0.0211021224292 0.0138333145366 -0.0072688078926 +UniRef50_Q828A3 Acetylornithine aminotransferase 0.000479505048972 0.00615153820326 0.00567203315429 +UniRef50_UPI0004418616 P loop containing nucleoside triphosphate hydrolase protein 8.16108710042e-07 3.61456324717e-07 -4.54652385325e-07 +UniRef50_Q47456 Transcriptional regulatory protein PcoR 0.000168520530738 0.000333063953224 0.000164543422486 +UniRef50_G0DX35 Beta D glucuronidase 0.000313215449466 0.00455608773225 0.00424287228278 +UniRef50_Q822W9 Tryptophan synthase beta chain 1 2.05611663096e-05 1.63249310823e-05 -4.2362352273e-06 +UniRef50_B7UNM8 L rhamnose proton symporter 0.00313025659774 0.0012857160748 -0.00184454052294 +UniRef50_W7NL02 0.0322735090222 0.000121814230132 -0.0321516947921 +UniRef50_P44431 DNA adenine methylase 0.00443627168968 0.00117020474367 -0.00326606694601 +UniRef50_UPI0004656CA8 ATPase AAA 9.78529869158e-05 1.23736926869e-05 -8.54792942289e-05 +UniRef50_Q2KX38 Cysteine tRNA ligase 2.75913620631e-06 1.09322295052e-05 8.17309329889e-06 +UniRef50_UPI0003304FE8 ABC transporter 1.25909622698e-05 0.00038373369304 0.00037114273077 +UniRef50_B9DSF8 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 0.00814614715665 0.00242390601841 -0.00572224113824 +UniRef50_W5VLQ9 ABC transporter ATP binding protein 0.00124312127399 0.000196659293133 -0.00104646198086 +UniRef50_UPI0003B78B56 acetolactate synthase 1.7002649666e-05 0.000167465970217 0.000150463320551 +UniRef50_Q4ZMZ5 0.00161866315074 0.000325281081862 -0.00129338206888 +UniRef50_UPI00046F9C6C hypothetical protein, partial 4.45136224903e-05 7.88859333588e-05 3.43723108685e-05 +UniRef50_F0KJU7 Siderophore interacting protein 0.000502292002391 0.00803342513719 0.0075311331348 +UniRef50_B4U3Z1 0.000127072047585 8.41813353406e-05 -4.28907122444e-05 +UniRef50_B0VQL7 0.000186566386584 0.00438317843742 0.00419661205084 +UniRef50_Q83LB6 Gamma glutamyl gamma aminobutyrate hydrolase 0.0060048065699 0.00361292493342 -0.00239188163648 +UniRef50_J8UT53 Multidrug transport protein, mfs family 3.79377457142e-05 0.000647393139862 0.000609455394148 +UniRef50_X5A2G4 Epoxide hydrolase domain containing protein 0.000233649238274 0.00191517651442 0.00168152727615 +UniRef50_Q9I163 Putative quercetin 2,3 dioxygenase PA2418 0.000147343870432 0.000425020189921 0.000277676319489 +UniRef50_D0W9Q2 Translation initiation factor IF 2 0.000173507682131 0.00329846500267 0.00312495732054 +UniRef50_A3M0R3 RND type efflux pump 0.00113288269163 0.0119147136524 0.0107818309608 +UniRef50_UPI00047675B7 iron ABC transporter 1.32370888919e-05 0.000965568362127 0.000952331273235 +UniRef50_S9QHG5 ABC type dipeptide transport system, periplasmic component 1.36807721072e-05 2.07009942528e-05 7.0202221456e-06 +UniRef50_P42371 Formamidopyrimidine DNA glycosylase 1.01617983137e-05 1.01465294293e-05 -1.52688844e-08 +UniRef50_UPI0003F5623F hypothetical protein 2.19120802761e-05 6.56053275946e-05 4.36932473185e-05 +UniRef50_Q8DTP8 0.00785950500436 0.000606815147654 -0.00725268985671 +UniRef50_Q5HKT3 Transcriptional antiterminator, BglG family 0.0080330598484 0.00338442272027 -0.00464863712813 +UniRef50_Q9VDT6 Putative ribosomal RNA methyltransferase CG11447 3.4203571375e-05 3.47570760337e-05 5.535046587e-07 +UniRef50_Q1WV73 Ribosomal RNA small subunit methyltransferase A 0.0127550352222 0.00793547853733 -0.00481955668487 +UniRef50_Q79VG7 ATP synthase subunit alpha 0.000661884294734 0.00426824127388 0.00360635697915 +UniRef50_M8LWS9 Amidohydrolase family protein 0.000359510465573 0.00148228462067 0.0011227741551 +UniRef50_B2VBD6 7.33966667669e-05 7.23261155984e-05 -1.0705511685e-06 +UniRef50_B6AY70 0.000167320852626 0.000115783081663 -5.1537770963e-05 +UniRef50_Q9ZCH1 3 oxoacyl [acyl carrier protein] synthase 3 0.000116176713701 1.02103949507e-05 -0.00010596631875 +UniRef50_UPI00042C6A1E PREDICTED 1.07785186262e-06 5.81138049842e-06 4.7335286358e-06 +UniRef50_A0LUZ1 LexA repressor 3.00909365593e-05 1.14742367934e-05 -1.86166997659e-05 +UniRef50_C9A6P4 0.00311794085032 0.023964964783 0.0208470239327 +UniRef50_X8DM60 1.26927740234e-05 0.000224920061928 0.000212227287905 +UniRef50_W5X752 Aldo keto reductase 2.39150912737e-05 0.000184566515081 0.000160651423807 +UniRef50_A0A058ZFV0 2.06101103276e-06 4.88508471071e-06 2.82407367795e-06 +UniRef50_UPI0003B55097 ABC transporter 7.8177563681e-05 5.6982733203e-06 -7.24792903607e-05 +UniRef50_UPI000466B8BE ATP dependent DNA helicase RecQ 1.87579726053e-05 5.65353682624e-06 -1.31044357791e-05 +UniRef50_X0Z3F5 Marine sediment metagenome DNA, contig 8.21597430873e-05 2.71646853979e-05 -5.49950576894e-05 +UniRef50_UPI0003AB2F70 zinc transporter 1.98773376251e-05 5.15238626873e-05 3.16465250622e-05 +UniRef50_A8EWF0 3 oxoacyl [acyl carrier protein] synthase 2 9.17713100965e-05 0.00260283090423 0.00251105959413 +UniRef50_P0ADP3 0.000336040939626 0.00120178510303 0.000865744163404 +UniRef50_R9SKB3 0.00385526461448 0.000248513356408 -0.00360675125807 +UniRef50_I6L8Z7 0.00601876726467 0.00256756463594 -0.00345120262873 +UniRef50_UPI000377F0F1 50S ribosomal protein L15 6.13261178776e-05 0.000145989328959 8.46632110814e-05 +UniRef50_P00911 Indole 3 glycerol phosphate synthase 1.22512000564e-05 0.00905962278299 0.00904737158293 +UniRef50_UPI00037E35A9 hypothetical protein 6.94091127264e-06 1.05712898489e-05 3.63037857626e-06 +UniRef50_J9QWN8 3.48788335131e-05 0.000121300039977 8.64212064639e-05 +UniRef50_UPI0003C13804 PREDICTED 2.78452660133e-05 4.61999413689e-06 -2.32252718764e-05 +UniRef50_A5IXT6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 7.03409129573e-06 5.12989326396e-06 -1.90419803177e-06 +UniRef50_M9RBK8 0.000113559130255 2.03588949812e-05 -9.32002352738e-05 +UniRef50_P75969 Prophage lambda integrase 0.00396475513483 0.00125177959805 -0.00271297553678 +UniRef50_UPI000299D232 arginyl tRNA ligase 0.00018030618242 5.24788616285e-05 -0.000127827320792 +UniRef50_Q9KD27 Polyphosphate kinase 9.34569674946e-06 0.00040192648549 0.000392580788741 +UniRef50_Q5HLU4 Putative 2 hydroxyacid dehydrogenase SERP1888 0.0201636215518 0.00742616435466 -0.0127374571971 +UniRef50_UPI00047D602E membrane protein 4.01897727128e-05 2.81449598051e-05 -1.20448129077e-05 +UniRef50_UPI00040C0EAB dipeptidase PepV 6.97615980824e-06 7.93343298644e-06 9.572731782e-07 +UniRef50_A3SGM5 2.4354311642e-05 4.91453191356e-05 2.47910074936e-05 +UniRef50_X5RWX0 0.000615435794799 0.000163047421043 -0.000452388373756 +UniRef50_B0V917 0.00039875280513 0.000942500122969 0.000543747317839 +UniRef50_L8NGN8 Sulfite oxidoreductase, molibdopterin binding subunit 0.00196451818634 0.00066212885384 -0.0013023893325 +UniRef50_Q5HM71 Lytic regulatory protein, putative 0.0106591044736 0.00304269334014 -0.00761641113346 +UniRef50_Q2SS11 S adenosylmethionine synthase 4.22719497926e-05 0.000231242044482 0.000188970094689 +UniRef50_D2BQV2 NTPase, KAP P loop domain containing family 3.64612774804e-06 1.1282990835e-05 7.63686308696e-06 +UniRef50_UPI00046D1EDA hypothetical protein 5.77388519766e-05 6.34105973761e-06 -5.1397792239e-05 +UniRef50_M4VPY4 3.40716538266e-05 3.02978667462e-05 -3.7737870804e-06 +UniRef50_O27101 Putative biopolymer transport protein ExbB homolog 0.00376786834011 0.000975301049817 -0.00279256729029 +UniRef50_UPI000470CC65 hypothetical protein, partial 8.86593165557e-05 0.000357899152787 0.000269239836231 +UniRef50_UPI000362B8D4 hypothetical protein 1.04342017914e-05 1.95364356833e-05 9.1022338919e-06 +UniRef50_Q6FF14 0.000403089064699 0.0054382963575 0.0050352072928 +UniRef50_F9Y8H3 2.56310598718e-05 6.78628471887e-06 -1.88447751529e-05 +UniRef50_UPI00047C7174 GTPase CgtA 8.37016453651e-06 0.000406645514871 0.000398275350334 +UniRef50_D0Z2G0 6.13247720305e-05 3.14402685538e-05 -2.98845034767e-05 +UniRef50_UPI00047E6697 hypothetical protein 6.81435544836e-06 6.69073885102e-05 6.00930330618e-05 +UniRef50_O34374 Putative cytochrome P450 YjiB 8.59152279979e-06 8.06218856681e-05 7.20303628683e-05 +UniRef50_A6M3B7 Phage minor structural protein 0.000352234460215 0.00253464274132 0.0021824082811 +UniRef50_Q94IN5 Pyruvate dehydrogenase [NADP], mitochondrial 0.000596731744541 0.00149681627909 0.000900084534549 +UniRef50_B4RAW2 0.0102067713539 0.00234980091651 -0.00785697043739 +UniRef50_B5SGS2 Phosphoribosylaminoimidazole carboxylase atpase subunit protein 0.000139465266818 0.00214557730186 0.00200611203504 +UniRef50_O32219 Cadmium, zinc and cobalt transporting ATPase 5.23737610038e-06 0.00157417235599 0.00156893497989 +UniRef50_UPI0002DD1873 multidrug transporter 0.00016275042563 0.00010664661744 -5.610380819e-05 +UniRef50_UPI000372E87D hypothetical protein 2.62099004393e-05 5.43407215181e-05 2.81308210788e-05 +UniRef50_Q5HPN2 Glutamine synthetase 0.0102613150723 0.00456067526779 -0.00570063980451 +UniRef50_A6M2W7 Helix turn helix domain containing protein, AraC type 0.000479247809865 0.0024504709217 0.00197122311183 +UniRef50_A6LZ11 Transcriptional regulator, LysR family 0.000134656119687 0.00131707722284 0.00118242110315 +UniRef50_F4A8L7 0.000371297693954 0.000606736994061 0.000235439300107 +UniRef50_UPI0004746BAC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 5.18097135648e-05 5.28324483951e-05 1.0227348303e-06 +UniRef50_UPI0003B6272C 30S ribosomal protein S2, partial 1.40725504025e-05 4.22369177815e-05 2.8164367379e-05 +UniRef50_G0LQ11 ABC transport system, ATP binding protein 0.0112223281127 0.0033863795942 -0.0078359485185 +UniRef50_Q1GE51 Cytochrome c oxidase assembly protein CtaG 0.00341928785143 0.000337504805945 -0.00308178304548 +UniRef50_A6LSR5 Cell divisionFtsK SpoIIIE 0.000161336404174 0.00091888573031 0.000757549326136 +UniRef50_UPI0003946AEB PREDICTED 3.54119356436e-05 8.72393522557e-05 5.18274166121e-05 +UniRef50_W1V573 0.000259933944651 0.00212518216721 0.00186524822256 +UniRef50_A2WHS9 0.000263864555761 0.000113878716332 -0.000149985839429 +UniRef50_Q89W19 Partitioning protein 0.0111071938086 0.00770964164969 -0.00339755215891 +UniRef50_UPI00036C0568 hypothetical protein 1.69707125734e-05 1.77359228603e-05 7.652102869e-07 +UniRef50_Q28JJ0 Flagellar protein FlgJ putative 0.000107128364311 5.93790608919e-05 -4.77493034191e-05 +UniRef50_V9TVW8 Signal transduction histidine kinase CheA 0.000293100271592 0.000248775317081 -4.4324954511e-05 +UniRef50_UPI00022CAC9E PREDICTED 5.30579222346e-06 3.97601370512e-05 3.44543448277e-05 +UniRef50_V5VGK2 Universal bacterial protein YeaZ 0.000170808139747 0.00356547527068 0.00339466713093 +UniRef50_UPI000380AFF0 hypothetical protein 1.66656978508e-05 5.08469811353e-06 -1.15809997373e-05 +UniRef50_Q5M3F8 Polysaccharide biosynthesis protein 0.00549775011829 0.00121997095475 -0.00427777916354 +UniRef50_L0LMR9 ABC transporter, ATP binding protein 0.00658143586887 0.00200426881728 -0.00457716705159 +UniRef50_Q8DVD7 Cell division protein SepF 0.0037044273976 0.00306231074306 -0.00064211665454 +UniRef50_UPI0003B704ED hypothetical protein 3.48028651978e-05 5.64344277132e-06 -2.91594224265e-05 +UniRef50_UPI00036F3039 hypothetical protein 0.000149608177669 3.79962076068e-05 -0.000111611970062 +UniRef50_C5WTK0 5.89371531896e-05 8.96203735086e-05 3.0683220319e-05 +UniRef50_T1B3T8 Virulence factor MviN 0.00012264531826 0.000148901838437 2.6256520177e-05 +UniRef50_Q11IP6 Phosphate transporter 0.00342110329637 0.000557443864461 -0.00286365943191 +UniRef50_A1URR2 sn glycerol 3 phosphate import ATP binding protein UgpC 0.000103514073048 4.81610057707e-05 -5.53530672773e-05 +UniRef50_P0A4S1 Fructose bisphosphate aldolase 8.37627983898e-05 0.00393775090089 0.0038539881025 +UniRef50_Q48460 UDP glucose 0.0024706186238 0.00108779160929 -0.00138282701451 +UniRef50_F0QG73 SAM dependent methyltransferase 0.000188812356745 0.0145240795621 0.0143352672054 +UniRef50_UPI0003A87FEF hypothetical protein 6.31376195086e-06 2.32078735436e-05 1.68941115927e-05 +UniRef50_Q12R52 Hemin import ATP binding protein HmuV 7.02972441324e-06 0.000431572149605 0.000424542425192 +UniRef50_UPI000376155F hypothetical protein 2.75090985045e-05 1.30446929653e-05 -1.44644055392e-05 +UniRef50_Y1HNL2 PTS system maltose and glucose specific EIICB component 9.45995589328e-05 4.15230617395e-05 -5.30764971933e-05 +UniRef50_A1AC10 Phosphoribosylglycinamide formyltransferase 2 0.00209067197729 0.000855692277837 -0.00123497969945 +UniRef50_A0A011NL09 3.98316651332e-06 0.00163957371157 0.00163559054506 +UniRef50_UPI000467180A aldehyde activating protein 1.41404095602e-05 2.66801214851e-05 1.25397119249e-05 +UniRef50_B9KWD4 Periplasmic sensor diguanylate cyclase phosphodiesterase 0.00342251007916 0.000970801575124 -0.00245170850404 +UniRef50_Q8RTQ0 Putative 1 deoxy D xylulose 5 phosphate synthase 0.000123703418686 7.55808518896e-05 -4.81225667964e-05 +UniRef50_D9WU07 Putative vgr related protein 4.79723715915e-05 4.51060092898e-05 -2.8663623017e-06 +UniRef50_UPI00042AFC27 D aminoacid aminotransferase like PLP dependent enzymes superfamily protein isoform 3 9.17567555769e-06 2.74262788609e-05 1.82506033032e-05 +UniRef50_P58224 Putative outer membrane protein YiaT 0.00138908439056 0.000274287961482 -0.00111479642908 +UniRef50_D4H950 YD repeat protein 0.000147833050033 0.00602378263988 0.00587594958985 +UniRef50_P31078 HTH type transcriptional regulator PetP 0.00840860761431 0.000348113994329 -0.00806049361998 +UniRef50_A6U9L1 0.000118841560449 4.76696931327e-05 -7.11718673163e-05 +UniRef50_G0DWF3 0.00015141640003 0.00318388821914 0.00303247181911 +UniRef50_Q6GJE0 Serine acetyltransferase 0.0263765257778 0.00813626238588 -0.0182402633919 +UniRef50_B1K1C0 Recombinase 0.0109288769219 0.00266357594883 -0.00826530097307 +UniRef50_UPI0004795AC6 hypothetical protein 2.81983729982e-05 3.29087854625e-05 4.7104124643e-06 +UniRef50_D0D0I6 GumN family protein 1.15946197148e-05 9.68905498281e-06 -1.90556473199e-06 +UniRef50_UPI000362BAED hypothetical protein, partial 7.36698666684e-05 2.88024204799e-05 -4.48674461885e-05 +UniRef50_Q6A8I8 Alanine tRNA ligase 5.14052640274e-05 0.00451194116323 0.0044605358992 +UniRef50_UPI00035CA936 hypothetical protein 0.000246027875671 9.37832296474e-05 -0.000152244646024 +UniRef50_UPI0004759D2E magnesium transporter 4.65908818374e-05 0.000504982730728 0.000458391848891 +UniRef50_UPI00036009B3 hypothetical protein 1.62787238837e-05 1.53580791207e-05 -9.20644763e-07 +UniRef50_C1MWX1 Predicted protein 0.000138104630066 0.0123825617926 0.0122444571625 +UniRef50_B6SHE9 Insect intestinal mucin IIM22 0.000506809100946 0.00013633849615 -0.000370470604796 +UniRef50_Q9R9Y4 Cell division protein FtsX 0.000359212890386 0.000999925282614 0.000640712392228 +UniRef50_UPI000420B7BC O acetylhomoserine aminocarboxypropyltransferase 1.87359997725e-05 7.41706087748e-06 -1.1318938895e-05 +UniRef50_Q47147 Putative glutamine amidotransferase YafJ 0.00256523373906 0.00133607621753 -0.00122915752153 +UniRef50_P0A9M3 Hypoxanthine phosphoribosyltransferase 0.00256931430375 0.00637384421507 0.00380452991132 +UniRef50_UPI00041235F6 lysine transporter LysE 7.57858179594e-05 5.91965958154e-05 -1.6589222144e-05 +UniRef50_UPI00029AB95D phenylacetate CoA oxygenase reductase subunit PaaK 1.15980606543e-05 1.54913002901e-05 3.8932396358e-06 +UniRef50_A8JGS9 DnaJ like protein 4.59788049763e-05 7.1649827385e-05 2.56710224087e-05 +UniRef50_D5ARW9 Nif specific regulatory protein 0.00220134471261 0.00122444967874 -0.00097689503387 +UniRef50_U0B3S9 0.000219035091853 0.000208953584437 -1.0081507416e-05 +UniRef50_P72525 DNA topoisomerase 4 subunit A 0.00500858121419 0.00718753218222 0.00217895096803 +UniRef50_Q9Z3R6 Alpha glucoside transport system permease protein AglF 0.0122473902765 0.00324814999465 -0.00899924028185 +UniRef50_Q0TPM3 ATP dependent DNA helicase RecG 0.000178086788681 0.000937600943891 0.00075951415521 +UniRef50_Q7N9D9 PTS system N acetylmuramic acid specific EIIBC component 0.00184996480888 0.000846242392495 -0.00100372241639 +UniRef50_D8QID1 0.000132209443208 9.72004629573e-05 -3.50089802507e-05 +UniRef50_X7XPI4 0.000147118098131 0.00027113589694 0.000124017798809 +UniRef50_B9KT83 Transport system permease protein 0.00039010580463 0.000222321233524 -0.000167784571106 +UniRef50_Q9SRW7 Adenylyl sulfate kinase 3 1.05498967662e-05 0.000473997824286 0.00046344792752 +UniRef50_UPI000381376E hypothetical protein 0.00023976791245 7.04552706155e-05 -0.000169312641835 +UniRef50_D3P3D0 D xylose transport system substrate binding protein 0.00892024616867 0.00284149075135 -0.00607875541732 +UniRef50_D9VWR6 Septum site determining protein 8.79308911103e-05 0.000305076678753 0.000217145787643 +UniRef50_E3A1I4 0.00195719318858 0.000821814941568 -0.00113537824701 +UniRef50_A9WDZ1 Imidazoleglycerol phosphate dehydratase 0.000128447008822 1.32021008741e-05 -0.000115244907948 +UniRef50_A6LUX7 Regulatory protein, LysR 0.000122163750441 0.00143743726056 0.00131527351012 +UniRef50_F4A4S9 Transcriptional regulator, GntR family, putative 0.000739387693764 0.00263156061344 0.00189217291968 +UniRef50_B9KKN4 Transcriptional regulator, GntR family 0.00114077658589 0.00249926348355 0.00135848689766 +UniRef50_C7M5H1 0.00805404203975 0.000704141888288 -0.00734990015146 +UniRef50_F9EIQ5 0.000130234882555 0.000768316637908 0.000638081755353 +UniRef50_B2UFB1 Cyclohexanone monooxygenase 0.000446765503447 0.000718890373892 0.000272124870445 +UniRef50_V4ITY3 Sodium 0.000312662486085 0.000282664608751 -2.9997877334e-05 +UniRef50_X4ZS10 Bacterial regulatory s, gntR family protein 0.000837128535452 0.00506646704298 0.00422933850753 +UniRef50_R0MDF2 DNA mismatch repair protein MutS 0.00824262772619 0.00260586914204 -0.00563675858415 +UniRef50_Q0VTE2 Methionyl tRNA formyltransferase 5.29504113183e-06 3.45748586689e-05 2.92798175371e-05 +UniRef50_S1PI08 0.00356082596515 0.00288609757052 -0.00067472839463 +UniRef50_A6LZ46 Response regulator receiver protein 0.000263634949602 0.001041490288 0.000777855338398 +UniRef50_R5I1Z2 0.000159501122048 0.00390617697768 0.00374667585563 +UniRef50_M3NMQ8 TonB dependent receptor plug domain protein 4.75223653651e-05 0.00464695047785 0.00459942811248 +UniRef50_F0MSR5 0.000205155428724 0.0055229370175 0.00531778158878 +UniRef50_D0IYV6 0.000131625844663 3.38751255575e-05 -9.77507191055e-05 +UniRef50_I1XGF6 Stringent starvation protein A 7.55455320202e-06 0.00010226350363 9.4708950428e-05 +UniRef50_B7UY15 0.000312703089435 0.000881320525776 0.000568617436341 +UniRef50_A6LX91 0.000308624183919 0.00121686861632 0.000908244432401 +UniRef50_P0A0K1 0.0086698967236 0.00363051842324 -0.00503937830036 +UniRef50_UPI0003B6C3E5 6 phosphofructokinase 1.67033405045e-05 6.43430380783e-06 -1.02690366967e-05 +UniRef50_G7M347 ABC transporter related protein 0.00030220313273 0.00234322816515 0.00204102503242 +UniRef50_M9VKH9 Extracellular solute binding protein 0.000552035673073 0.010488586884 0.00993655121093 +UniRef50_K2FKB3 4.02524532308e-05 0.000376860886875 0.000336608433644 +UniRef50_K4JSU1 0.000154929083008 9.18053031875e-05 -6.31237798205e-05 +UniRef50_U6BC07 Aconitate hydratase 0.0172458521589 0.00513364833695 -0.0121122038219 +UniRef50_P16923 N anthranilate isomerase 1.15740233055e-05 0.00552730526878 0.00551573124547 +UniRef50_I6SU46 Cell division protein DivIB 0.00367299644346 0.00181595875336 -0.0018570376901 +UniRef50_UPI00036BA80E hypothetical protein 5.60114658805e-05 7.29454143619e-05 1.69339484814e-05 +UniRef50_A6LX65 0.000394994349159 0.00119919758711 0.000804203237951 +UniRef50_D3SBH0 Riboflavin synthase, alpha subunit 0.00621272484125 0.00061738684013 -0.00559533800112 +UniRef50_U2YCQ7 4.4013913601e-05 0.000162321060825 0.000118307147224 +UniRef50_R7PTH2 0.000403566941078 0.000244063392719 -0.000159503548359 +UniRef50_Q2SCI9 1.66852351515e-05 2.16654082745e-05 4.980173123e-06 +UniRef50_UPI0003691CE3 hypothetical protein 4.72107510513e-06 1.03587452776e-05 5.63767017247e-06 +UniRef50_F4FSV5 RelA SpoT domain protein 0.0102423799544 0.0062712501834 -0.003971129771 +UniRef50_B9DZ64 9.78788216567e-05 0.000204843957368 0.000106965135711 +UniRef50_A7FBW9 0.00188425779309 0.0139652676252 0.0120810098321 +UniRef50_A7FBW8 0.00157000498395 0.00833218854948 0.00676218356553 +UniRef50_P76046 0.0029985575029 0.000564877565235 -0.00243367993767 +UniRef50_P76044 0.00326001518145 0.0014471150023 -0.00181290017915 +UniRef50_C5N0D9 Glyoxalase family protein 0.0179814613733 0.00207460814254 -0.0159068532308 +UniRef50_P03880 Intron encoded DNA endonuclease I AniI 0.000196302400859 7.40190271575e-05 -0.000122283373701 +UniRef50_Q2K6L3 sn glycerol 3 phosphate import ATP binding protein UgpC 1 1.90749312261e-05 4.13584427284e-05 2.22835115023e-05 +UniRef50_C6STT6 0.00236050906249 0.000877955758006 -0.00148255330448 +UniRef50_D2NPJ7 Protein containing PAS PAC domain 2.89985479906e-06 0.000221211015129 0.00021831116033 +UniRef50_A5CPE6 Thymidine kinase 0.000194580406623 0.00475722127357 0.00456264086695 +UniRef50_A5UK48 Glutamine amidotransferase subunit PdxT 0.00151583333931 0.00243427355675 0.00091844021744 +UniRef50_UPI000361F456 hypothetical protein 0.000291252555585 4.9840392167e-05 -0.000241412163418 +UniRef50_A6LQV8 Phosphomannomutase 0.00100809362922 0.00442312223232 0.0034150286031 +UniRef50_O50236 Carbamoyl phosphate synthase large chain 1.94991240811e-05 1.5481229961e-05 -4.0178941201e-06 +UniRef50_J8V402 6.17805349938e-05 7.320990373e-05 1.14293687362e-05 +UniRef50_UPI000382615E hypothetical protein 3.56567611084e-06 4.69986108862e-05 4.34329347754e-05 +UniRef50_D8TJQ5 1.01875783796e-05 3.5862244884e-05 2.56746665044e-05 +UniRef50_H3VMS8 0.000240948503526 3.97181061602e-05 -0.000201230397366 +UniRef50_UPI0002484D08 glycerophosphoryl diester phosphodiesterase 1.12113579903e-06 0.000602957402776 0.000601836266977 +UniRef50_R1FE37 0.000122663424213 3.06796173529e-05 -9.19838068601e-05 +UniRef50_UPI00039572EC molybdopterin guanine dinucleotide biosynthesis protein A 6.84918709221e-06 8.27068875096e-06 1.42150165875e-06 +UniRef50_P31434 Alpha xylosidase 0.00710594607545 0.00124080422324 -0.00586514185221 +UniRef50_J8V5R5 0.000117750627813 2.12403397037e-05 -9.65102881093e-05 +UniRef50_UPI00016C54C0 histidinol dehydrogenase 1.7086051979e-05 5.65303843146e-05 3.94443323356e-05 +UniRef50_Q4DRG1 MaoC like dehydratase, putative 2.02092077729e-05 1.13155281681e-05 -8.8936796048e-06 +UniRef50_B3QY47 NADH quinone oxidoreductase subunit B 2 6.25436198249e-06 0.00162873018128 0.0016224758193 +UniRef50_A3M2E1 DNA polymerase V component 0.00151678867335 0.0132586826657 0.0117418939923 +UniRef50_Q47CM9 Phenylalanine tRNA ligase beta subunit 0.000118528752683 0.00306482708079 0.00294629832811 +UniRef50_P44704 CDP diacylglycerol serine O phosphatidyltransferase 0.00367129718611 0.000453412403041 -0.00321788478307 +UniRef50_Q1CA93 Leucyl phenylalanyl tRNA protein transferase 0.00170733670721 0.000799414180825 -0.000907922526385 +UniRef50_UPI00037210F0 hypothetical protein, partial 6.78244562533e-06 7.81107243145e-06 1.02862680612e-06 +UniRef50_UPI0003114778 hypothetical protein 1.05833445011e-05 1.13717107124e-05 7.883662113e-07 +UniRef50_Q3BY50 3.66750891684e-06 2.55397815315e-05 2.18722726147e-05 +UniRef50_N6D480 0.00923996744515 0.00233829655505 -0.0069016708901 +UniRef50_P0ADQ4 0.00407021694859 0.00207743922445 -0.00199277772414 +UniRef50_A3M418 0.000383234506454 0.00512967614181 0.00474644163536 +UniRef50_UPI000255A3BD acetyl CoA acetyltransferase, partial 0.000118948978912 0.000372416874894 0.000253467895982 +UniRef50_D3QHV4 Transcription repressor of sporulation, septation and degradation PaiA 0.0124538539675 0.0103939553095 -0.002059898658 +UniRef50_F8I0C3 3.68724254049e-06 6.79816775513e-06 3.11092521464e-06 +UniRef50_UPI0002886B91 NAD dependent malic enzyme 1 2.57107897143e-05 2.2080164244e-05 -3.6306254703e-06 +UniRef50_Q6CEK4 YALI0B14971p 1.27921083893e-06 3.9761792892e-05 3.84825820531e-05 +UniRef50_S5XJ53 0.000163309455408 0.000161935132449 -1.374322959e-06 +UniRef50_G8VB45 Exonuclease V subunit alpha 7.0208181432e-05 0.00503767104597 0.00496746286454 +UniRef50_A3L1C1 0.000440128622474 0.00100351627844 0.000563387655966 +UniRef50_UPI000477E357 hypothetical protein 5.33023002087e-06 8.92884565857e-06 3.5986156377e-06 +UniRef50_UPI0003DE7F24 PREDICTED 4.84549121802e-06 5.82588949084e-06 9.8039827282e-07 +UniRef50_D2ZNL5 0.0070553989254 0.000732234273367 -0.00632316465203 +UniRef50_R3B8E7 3.5481001118e-05 5.7087317789e-05 2.1606316671e-05 +UniRef50_UPI0003731F30 hypothetical protein 3.09230035725e-06 0.000214689072251 0.000211596771894 +UniRef50_UPI00046581AB peptide ABC transporter permease 4.68831999283e-06 9.57363031865e-06 4.88531032582e-06 +UniRef50_UPI000470EA3B orotidine 5 phosphate decarboxylase, partial 2.31907387926e-05 1.75210819596e-05 -5.669656833e-06 +UniRef50_UPI0003779D2C hypothetical protein 4.59421782733e-05 1.02500716242e-05 -3.56921066491e-05 +UniRef50_W1XGP9 Branched chain amino acid transport system 5.00924052576e-05 0.000119876242002 6.97838367444e-05 +UniRef50_H0PS77 0.000179797593136 0.000307967615435 0.000128170022299 +UniRef50_Q4L3C5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0192114288008 0.00283572001439 -0.0163757087864 +UniRef50_G0A952 Inner membrane translocator 0.000251754082824 0.00286032303523 0.00260856895241 +UniRef50_A4XYG1 Protein RnfH 3.67391132005e-05 4.16432394374e-05 4.9041262369e-06 +UniRef50_Q59801 Hyaluronate lyase 0.0183602992503 0.00365940401754 -0.0147008952328 +UniRef50_P21507 ATP dependent RNA helicase SrmB 0.00233325991696 0.000358059855331 -0.00197520006163 +UniRef50_UPI00046D65C0 hypothetical protein 4.20213290307e-05 3.20806108295e-05 -9.9407182012e-06 +UniRef50_D6U054 Short chain dehydrogenase reductase SDR 4.93134509874e-06 1.73094039184e-05 1.23780588197e-05 +UniRef50_P50205 Acetoacetyl CoA reductase 0.0152883076888 0.00683420031243 -0.00845410737637 +UniRef50_P28721 Protein GltF 0.00364575528263 0.001195018539 -0.00245073674363 +UniRef50_F2UKD5 7.36915143044e-06 2.19470278957e-05 1.45778764653e-05 +UniRef50_D3QJ79 Multimodular transpeptidase transglycosylase 0.020232266713 0.00457664506267 -0.0156556216503 +UniRef50_P72158 N5 carboxyaminoimidazole ribonucleotide synthase 0.000957598683487 6.1988622634e-06 -0.000951399821224 +UniRef50_S3DKH9 0.000130580479645 4.2622482067e-06 -0.000126318231438 +UniRef50_O85674 Anthranilate 1,2 dioxygenase small subunit 0.0053477181754 0.00953068634601 0.00418296817061 +UniRef50_Q7MYS8 Oligoribonuclease 8.16328159899e-05 7.82972890187e-05 -3.3355269712e-06 +UniRef50_UPI000369E32A single stranded DNA binding protein 1.70068572342e-05 8.67826352611e-05 6.97757780269e-05 +UniRef50_Q168P4 GTP cyclohydrolase FolE2 0.0116537868542 0.00277842197801 -0.00887536487619 +UniRef50_E3I2H2 NADH ubiquinone oxidoreductase 20 kDa subunit 0.00162846859475 0.000448274859085 -0.00118019373567 +UniRef50_A3M2G1 0.000500521725877 0.00626723211893 0.00576671039305 +UniRef50_W9T9K1 Sulfate transporter 0.00117179153738 0.000515654955492 -0.000656136581888 +UniRef50_UPI000468F97A adenosylcobinamide kinase 6.21623501958e-05 2.98840681696e-05 -3.22782820262e-05 +UniRef50_H6VX70 Tyrosine recombinase XerC 0.000258046204092 0.00540768208926 0.00514963588517 +UniRef50_K1E1R3 Exodeoxyribonuclease V subunit gamma 1.88493849747e-05 0.000102497995773 8.36486107983e-05 +UniRef50_Q5GWV2 0.00201416007059 1.02298592394e-05 -0.00200393021135 +UniRef50_Q1HTP5 X2R 4.98852190603e-05 2.54160464958e-05 -2.44691725645e-05 +UniRef50_A0A018ZXW4 Molybdopterin guanine dinucleotide biosynthesis protein MobA 1.6314008624e-05 1.9308756249e-05 2.994747625e-06 +UniRef50_C6BD53 MscS Mechanosensitive ion channel 0.000698807652753 0.000208213893202 -0.000490593759551 +UniRef50_Q9HZ76 UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase 0.000782575120573 0.00932760165831 0.00854502653774 +UniRef50_UPI00036DC1D7 MULTISPECIES 1.05941589764e-05 8.30658682949e-06 -2.28757214691e-06 +UniRef50_P43505 Membrane fusion protein MtrC 0.000509278897222 0.00120404363229 0.000694764735068 +UniRef50_A1B1U3 Magnesium transporter 0.00707307148112 0.0022687688197 -0.00480430266142 +UniRef50_Q8DUY3 Putative two component membrane permease complex subunit SMU_747c 0.00387047323499 0.0059095452334 0.00203907199841 +UniRef50_O85786 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 6.94937636196e-06 7.70800290866e-06 7.586265467e-07 +UniRef50_A0A020CZ26 0.0210461784723 0.00555299514891 -0.0154931833234 +UniRef50_Q2CIE7 2.54243507904e-05 3.95407679884e-05 1.4116417198e-05 +UniRef50_UPI0003C88714 PREDICTED 5.82509846771e-06 1.38944004386e-05 8.06930197089e-06 +UniRef50_UPI00041F5BCB inositol monophosphatase 1.69274544343e-05 6.35805586309e-05 4.66531041966e-05 +UniRef50_T1BV79 Potassium transporting ATPase subunit B 2.37188003866e-05 0.00245986548492 0.00243614668453 +UniRef50_F5M3E9 0.0020153994224 0.00089040212621 -0.00112499729619 +UniRef50_UPI0004725E16 hypothetical protein 1.0976794078e-05 4.08059186099e-06 -6.89620221701e-06 +UniRef50_E3IHD0 Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein 0.000109099996778 0.000788430457683 0.000679330460905 +UniRef50_A4FA42 2.15557500101e-05 1.12897904313e-05 -1.02659595788e-05 +UniRef50_T6N9U5 0.000853968258333 0.000177013010107 -0.000676955248226 +UniRef50_M4YYU6 A G specific adenine glycosylase 0.00397771338546 0.00125144344785 -0.00272626993761 +UniRef50_B5R8Z8 D amino acid dehydrogenase Alanine racemase fusion protein 0.00309300441818 0.000879730768933 -0.00221327364925 +UniRef50_G7ZH30 7.60806220332e-06 5.25966197436e-06 -2.34840022896e-06 +UniRef50_A4VT18 Mevalonate kinase 0.00400837697981 0.00153019205453 -0.00247818492528 +UniRef50_P0AF19 N acetylglucosamine 6 phosphate deacetylase 0.00283087753654 0.000235312115686 -0.00259556542085 +UniRef50_B9KUF9 2.26617868603e-05 1.96387671742e-05 -3.0230196861e-06 +UniRef50_Q7UFS3 GMP synthase [glutamine hydrolyzing] 0.0412571411158 0.0610338261949 0.0197766850791 +UniRef50_H8FW24 2.3042972393e-05 1.75590035836e-05 -5.4839688094e-06 +UniRef50_A6LW90 0.000123630782379 0.000876527289091 0.000752896506712 +UniRef50_M5ABS1 Antiholin like protein LrgB 0.00549715953097 0.00255176966193 -0.00294538986904 +UniRef50_G3Z6Q7 UPF0125 protein HMPREF1028_02272 1.97795416353e-05 9.65123544505e-05 7.67328128152e-05 +UniRef50_B0VLI0 0.000331128060398 0.00749117790417 0.00716004984377 +UniRef50_N6W8Z6 Putative oxidoreductase 0.000151383310707 0.00135550477381 0.0012041214631 +UniRef50_A6WEM4 2.8436482489e-06 3.31287153493e-05 3.02850671004e-05 +UniRef50_A5N6U5 Transcriptional regulator 0.000486033462046 0.000383528188565 -0.000102505273481 +UniRef50_Q8PNB5 Adenylosuccinate synthetase 0.00200103022677 0.000769906449362 -0.00123112377741 +UniRef50_UPI00035FCD7D hypothetical protein 4.85293926949e-06 2.96587232849e-05 2.48057840154e-05 +UniRef50_Q16D47 3,5 bisphosphate nucleotidase 0.00661194819128 0.00151661303362 -0.00509533515766 +UniRef50_G0DW29 Penicillin binding protein 0.000189057975903 0.0049596214952 0.0047705635193 +UniRef50_Q5HNL5 Formamidopyrimidine DNA glycosylase 0.0180271665343 0.00358042415733 -0.014446742377 +UniRef50_C6E3P1 3.13611472904e-05 6.77750222451e-06 -2.45836450659e-05 +UniRef50_E1S7F7 Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase 6.785248452e-05 0.00214070425634 0.00207285177182 +UniRef50_UPI000379B136 hypothetical protein 6.06515050908e-06 7.8108707715e-06 1.74572026242e-06 +UniRef50_E5QW86 0.00107782489575 0.000831878042813 -0.000245946852937 +UniRef50_Q3IV65 Capsular polysaccharide biosynthesis protein, putative 0.00657103657571 0.00130880822469 -0.00526222835102 +UniRef50_T0K2V4 3.90142498159e-05 3.40263642946e-05 -4.9878855213e-06 +UniRef50_Q56734 Aspartate semialdehyde dehydrogenase 0.0138164559658 0.00220703876686 -0.0116094171989 +UniRef50_A0RKK5 Cell wall surface anchor family protein 3.03612921906e-06 0.000223276804629 0.00022024067541 +UniRef50_T1ZLK9 DNA repair protein radA 0.00686882455541 0.00326756133696 -0.00360126321845 +UniRef50_UPI0004660A11 hypothetical protein 1.12856037578e-05 4.229914993e-05 3.10135461722e-05 +UniRef50_Q2NI31 Methionine tRNA ligase 0.00307220756712 0.000715195859351 -0.00235701170777 +UniRef50_UPI00036BF67A hypothetical protein 0.000395323398558 4.96013099524e-05 -0.000345722088606 +UniRef50_UPI0004249615 fructose 1,6 bisphosphatase 1.64181957988e-05 0.000310426781458 0.000294008585659 +UniRef50_Q2RKK1 Xanthine phosphoribosyltransferase 4.86394466476e-05 6.64478940087e-05 1.78084473611e-05 +UniRef50_B8FB52 Sulfate adenylyltransferase 6.88008286142e-05 4.3482667566e-05 -2.53181610482e-05 +UniRef50_H9U2W8 Transposase 0.000702229395936 0.0123859094175 0.0116836800216 +UniRef50_W5XCI5 N acetyl gamma glutamyl phosphate reductase 1.01003334328e-05 1.16240872642e-05 1.5237538314e-06 +UniRef50_U6ECP8 0.000178982268597 4.02756036838e-05 -0.000138706664913 +UniRef50_Q3JPC5 4.76455084367e-05 0.00369719291179 0.00364954740335 +UniRef50_UPI0004752042 formyltetrahydrofolate deformylase, partial 5.20083847201e-05 1.58032021469e-05 -3.62051825732e-05 +UniRef50_Q4ZWM4 DNA polymerase IV 4.26798686037e-06 1.40088563695e-05 9.74086950913e-06 +UniRef50_Q6A6W0 0.000119457591412 0.00540956641899 0.00529010882758 +UniRef50_Q0BQG5 Nucleoside diphosphate kinase 0.000187483359791 0.000190110559529 2.627199738e-06 +UniRef50_J9QTZ5 Prophage antirepressor 8.41461234527e-06 1.53268392262e-05 6.91222688093e-06 +UniRef50_G8RG67 0.0146805635927 0.00374089903989 -0.0109396645528 +UniRef50_A5UJT9 Desulfoferrodoxin 0.0133420144443 0.00181733357043 -0.0115246808739 +UniRef50_I1F5H5 1.35354130867e-05 2.23027702495e-05 8.7673571628e-06 +UniRef50_D2VS44 Predicted protein 1.5557643085e-05 1.12936181256e-05 -4.2640249594e-06 +UniRef50_UPI0002002642 GAF domain GGDEF domain EAL domain containing protein 3.03044404226e-06 7.44145217387e-05 7.13840776964e-05 +UniRef50_Q6A9G3 Conjugal transfer protein 0.000304424184557 0.000583610289954 0.000279186105397 +UniRef50_C4LJM5 Peptide chain release factor 1 0.000441195532936 0.00749346034408 0.00705226481114 +UniRef50_P56259 0.00031632904094 0.000453171414615 0.000136842373675 +UniRef50_W9H1I0 0.000111691703264 8.05677432011e-05 -3.11239600629e-05 +UniRef50_E3A0A4 2,4 dienoyl CoA reductase FadH2 8.1354738977e-05 0.000278616464193 0.000197261725216 +UniRef50_UPI0002EF5C1B accessory secretory protein Asp2 4.1773836899e-05 0.000115734828939 7.396099204e-05 +UniRef50_H4F217 7.70793398961e-05 8.49963256006e-06 -6.8579707336e-05 +UniRef50_UPI00030A8FAF membrane protein 0.000142639908964 6.21053009884e-05 -8.05346079756e-05 +UniRef50_A9WDI1 Dihydroorotate dehydrogenase 4.41362597166e-06 1.54882662299e-05 1.10746402582e-05 +UniRef50_P37464 Serine tRNA ligase 0.032221307589 0.017607073002 -0.014614234587 +UniRef50_UPI0003622EE4 hypothetical protein 1.31106623149e-05 7.30551405241e-06 -5.80514826249e-06 +UniRef50_UPI00047159CC hypothetical protein 0.000103443648182 3.07649440946e-05 -7.26787040874e-05 +UniRef50_A8WTI8 Elongation factor G, mitochondrial 5.12331633824e-06 9.13898021517e-06 4.01566387693e-06 +UniRef50_B0C079 Pyridoxine pyridoxamine 5 phosphate oxidase 9.71765560356e-06 0.00044750773437 0.000437790078766 +UniRef50_UPI0002DCCC59 hypothetical protein 0.000141796347298 2.77973911559e-05 -0.000113998956142 +UniRef50_UPI000477E15D hypothetical protein 4.22602557826e-05 0.000135597867936 9.33376121534e-05 +UniRef50_F2RAT0 UDP galactose lipid carrier transferase 0.000214075229968 0.000869444584582 0.000655369354614 +UniRef50_Q2YYV8 Imidazolonepropionase 0.0151904070268 0.00433615085942 -0.0108542561674 +UniRef50_M1MXQ5 Amylopullulanase AmyB 0.000243656894405 0.00150982077313 0.00126616387872 +UniRef50_Q9RRU0 Na+ H+ antiporter, putative 0.000205246765242 0.0217040660457 0.0214988192805 +UniRef50_B9KNM4 Urea amidolyase related protein 0.0122818941539 0.000784326980384 -0.0114975671735 +UniRef50_Q72NX7 Polyribonucleotide nucleotidyltransferase 2.362651744e-06 5.65294447998e-05 5.41667930558e-05 +UniRef50_B6ISK5 Acyl CoA dehydrogenase, putative 0.00040931767137 0.051379674755 0.0509703570836 +UniRef50_E3A0N8 Protease subunit HflC 0.000308571653009 0.000220385600888 -8.8186052121e-05 +UniRef50_A6LU25 0.000615466286172 0.000902457376142 0.00028699108997 +UniRef50_UPI00036B07DE hypothetical protein, partial 3.03854375534e-06 3.42147649177e-05 3.11762211624e-05 +UniRef50_O25758 Probable chromosome partitioning protein ParB 0.000138104630066 0.00294753368337 0.0028094290533 +UniRef50_UPI00024850D8 hemolysin type calcium binding protein, partial 3.03287245114e-06 2.7039357176e-06 -3.2893673354e-07 +UniRef50_UPI000466B878 potassium transporter KefB 2.1823675817e-05 6.24224584607e-05 4.05987826437e-05 +UniRef50_B0K1N2 N acetylmuramic acid 6 phosphate etherase 8.47771690075e-06 1.08135324425e-05 2.33581554175e-06 +UniRef50_UPI0003A7C1AD 30S ribosomal protein S15 0.000268621455664 6.81394152462e-05 -0.000200482040418 +UniRef50_A1B7K4 TRAP dicarboxylate transporter DctP subunit 0.0125587248754 0.00243415027228 -0.0101245746031 +UniRef50_X2MU03 Glutamate ammonia ligase adenylyltransferase 0.000569363059183 6.36687111458e-05 -0.000505694348037 +UniRef50_A7HA47 LigA 3.83410873907e-05 0.000417899137682 0.000379558050291 +UniRef50_M9S6C0 0.00071500184404 0.000973849677425 0.000258847833385 +UniRef50_Q3JNY9 4.17877728475e-05 6.3191877006e-05 2.14041041585e-05 +UniRef50_UPI0003725615 hypothetical protein 7.5418105732e-05 4.14632317031e-05 -3.39548740289e-05 +UniRef50_P77588 0.00321753592959 0.00101233745279 -0.0022051984768 +UniRef50_B2TL20 [Fe] hydrogenase 0.000653821901209 0.000135570025341 -0.000518251875868 +UniRef50_UPI00047C43F4 hypothetical protein 0.00412212797885 0.00632698803512 0.00220486005627 +UniRef50_UPI0004719EA1 aminotransferase, partial 3.53565899653e-05 4.99914290137e-05 1.46348390484e-05 +UniRef50_UPI00038F9F8C Spermidine putrescine binding periplasmic protein 2 9.42697870372e-05 0.000164791741151 7.05219541138e-05 +UniRef50_B6IYF9 NAD dependent epimerase 0.0108325900845 0.00254087885557 -0.00829171122893 +UniRef50_P57260 NADH quinone oxidoreductase subunit J 5.38774265065e-05 0.000115264928635 6.13875021285e-05 +UniRef50_UPI00036191C4 hypothetical protein 1.87487897527e-05 2.15882252395e-05 2.8394354868e-06 +UniRef50_J9P5P7 1.73669516433e-05 1.32026735168e-05 -4.1642781265e-06 +UniRef50_UPI0002D709E2 hypothetical protein 2.3756107776e-06 4.47033358192e-05 4.23277250416e-05 +UniRef50_UPI00035DB1EC 50S ribosomal protein L3, partial 2.95061011445e-05 6.16587413941e-05 3.21526402496e-05 +UniRef50_F2MUA2 Metallo beta lactamase 0.00573624024849 0.00208747442115 -0.00364876582734 +UniRef50_UPI0004708144 hypothetical protein, partial 2.36668896684e-05 0.000242044837703 0.000218377948035 +UniRef50_UPI0003AF4F98 PREDICTED 1.08085086159e-05 5.84974476085e-06 -4.95876385505e-06 +UniRef50_Q0HP98 Shikimate dehydrogenase 0.00247599250204 0.000619849234165 -0.00185614326788 +UniRef50_UPI00026CDAF4 flagellar biosynthetic protein FliQ 0.00169861907655 9.58487216093e-05 -0.00160277035494 +UniRef50_A3TWT0 0.000760769161291 0.000225618165918 -0.000535150995373 +UniRef50_B5E1P6 Aspartyl glutamyl tRNA amidotransferase subunit B 0.00774318969066 0.00467991271449 -0.00306327697617 +UniRef50_D5MJP7 0.000367495176206 0.000662740410904 0.000295245234698 +UniRef50_UPI00047D5D86 hypothetical protein 4.53740360476e-05 0.00011708792494 7.17138888924e-05 +UniRef50_A5FEC6 N acetyl gamma glutamyl phosphate reductase 2.6316477576e-05 0.00280311982482 0.00277680334724 +UniRef50_UPI0003777642 hypothetical protein 4.33339445031e-06 1.81372341649e-05 1.38038397146e-05 +UniRef50_UPI0003B4B360 cation 8.30870661117e-05 0.000160297229232 7.72101631203e-05 +UniRef50_U3SQI4 Putative glutathione reductase 0.00705520332116 0.0014877919812 -0.00556741133996 +UniRef50_V8N2X3 Gar1 6.3128562812e-05 0.000233363571585 0.000170235008773 +UniRef50_Q8CR31 N succinyldiaminopimelate aminotransferase 0.0250390556123 0.00866522052559 -0.0163738350867 +UniRef50_UPI0003B58990 tRNA methyltransferase 8.91109431823e-06 6.3789094402e-06 -2.53218487803e-06 +UniRef50_UPI00042BDC6C PREDICTED 2.72115544825e-05 0.000396644874722 0.00036943332024 +UniRef50_Q65U21 Lipid A export ATP binding permease protein MsbA 0.00291514674987 0.000491303313492 -0.00242384343638 +UniRef50_C4UBB8 sn glycerol 3 phosphate binding periplasmic protein ugpB 3.35470966465e-05 1.73339725023e-05 -1.62131241442e-05 +UniRef50_M4X3Z5 Nitrous oxide reductase 0.000814688529057 0.000435432614899 -0.000379255914158 +UniRef50_Q9RXJ6 30S ribosomal protein S3 0.000151398123869 0.0101164858475 0.00996508772363 +UniRef50_X1GQT1 Marine sediment metagenome DNA, contig 3.59423430675e-05 2.68583301737e-05 -9.0840128938e-06 +UniRef50_Q97KH7 Phosphoribosyl AMP cyclohydrolase 2.6292623538e-05 1.81208014558e-05 -8.1718220822e-06 +UniRef50_Q7URW6 DNA directed RNA polymerase subunit beta 4.31090170609e-06 4.23388298992e-06 -7.701871617e-08 +UniRef50_D9VIN0 Predicted protein 0.000122152884961 8.5310555185e-05 -3.6842329776e-05 +UniRef50_M8UUK1 0.000130018136227 0.000146409034395 1.6390898168e-05 +UniRef50_UPI00042BD38E PREDICTED 2.48287255425e-05 1.79204354384e-05 -6.9082901041e-06 +UniRef50_Q9K005 Orotidine 5 phosphate decarboxylase 0.000626876905465 0.00389737484814 0.00327049794267 +UniRef50_B4RNK3 TspB3 0.000124995360549 0.0056296372884 0.00550464192785 +UniRef50_UPI00040ED66A riboflavin biosynthesis protein RibD 4.14196120762e-06 3.30863421451e-05 2.89443809375e-05 +UniRef50_B0TFC9 Bifunctional protein FolD 5.98370234284e-06 4.95828400011e-06 -1.02541834273e-06 +UniRef50_A5UMF6 Shikimate dehydrogenase 0.00392696061352 0.00233615403594 -0.00159080657758 +UniRef50_UPI0003457810 hypothetical protein 4.16954027244e-05 1.69769539017e-05 -2.47184488227e-05 +UniRef50_UPI00016B2503 excinuclease ABC, B subunit, partial 0.000181333147499 3.80083682114e-05 -0.000143324779288 +UniRef50_W4UC70 8.95941775374e-05 0.000752451400967 0.00066285722343 +UniRef50_W1GWA4 GTP binding protein TypA BipA 2.24634476511e-05 2.4377617384e-05 1.9141697329e-06 +UniRef50_UPI000372735A hypothetical protein, partial 6.96153010697e-05 0.000137299685561 6.76843844913e-05 +UniRef50_A0A059LBF3 0.000288405505015 0.000166658928276 -0.000121746576739 +UniRef50_B7V938 0.000440433163965 0.000292392777421 -0.000148040386544 +UniRef50_UPI00036DDC82 hypothetical protein 1.62964196266e-05 6.67797237896e-05 5.0483304163e-05 +UniRef50_P76542 Putative prophage CPZ 55 integrase 0.00360295403007 0.000174399629052 -0.00342855440102 +UniRef50_A4WCP1 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 6.38327903825e-05 5.68908654031e-05 -6.9419249794e-06 +UniRef50_A3SZC0 0.00116471448102 0.000296774096314 -0.000867940384706 +UniRef50_C4LEY6 Beta hexosaminidase 2.53338068237e-05 3.43735801228e-05 9.0397732991e-06 +UniRef50_UPI000366F960 hypothetical protein 0.00028388464448 0.000456541799664 0.000172657155184 +UniRef50_S2XRA0 Heme A synthase 0.00779347380956 0.00256761225037 -0.00522586155919 +UniRef50_A8HVZ9 Predicted protein 6.82698715631e-06 1.82982920464e-05 1.14713048901e-05 +UniRef50_X1CFP7 Marine sediment metagenome DNA, contig 6.61209206847e-06 1.07737059726e-05 4.16161390413e-06 +UniRef50_UPI0004778F7D hypothetical protein 6.36857025517e-06 3.40418260908e-06 -2.96438764609e-06 +UniRef50_Q3JR20 2.82542739658e-06 8.4325648074e-06 5.60713741082e-06 +UniRef50_UPI00041694C7 Rrf2 family transcriptional regulator 2.44891098578e-05 4.51420239594e-05 2.06529141016e-05 +UniRef50_A5FHP3 Malate dehydrogenase 1.71895566326e-05 2.77028828526e-05 1.051332622e-05 +UniRef50_Q69PS6 Thioredoxin reductase NTRA 5.36994816989e-05 2.05194235429e-05 -3.3180058156e-05 +UniRef50_UPI0002628AE7 methionyl tRNA synthetase 2.53490138657e-06 1.47520354114e-05 1.22171340248e-05 +UniRef50_B0VUW8 Membrane bound lytic murein transglycosylase B 0.000113132663991 0.00719134187582 0.00707820921183 +UniRef50_K9EE72 9.98553725587e-06 5.21859029268e-05 4.22003656709e-05 +UniRef50_G1L4H7 2.44881488766e-05 2.7374238541e-05 2.8860896644e-06 +UniRef50_K7RS07 Iojap like protein 0.000413305827211 0.0091109141766 0.00869760834939 +UniRef50_UPI000466C5B8 hypothetical protein, partial 0.000819284072046 0.000144484648222 -0.000674799423824 +UniRef50_F3U4V8 0.0015165396145 0.000974442904323 -0.000542096710177 +UniRef50_UPI000474972D hypothetical protein, partial 2.42452542185e-05 8.49097927619e-05 6.06645385434e-05 +UniRef50_I6ST97 Transcriptional regulator 0.00413539053031 0.00218142416353 -0.00195396636678 +UniRef50_UPI00037FD271 hypothetical protein 5.32169847099e-05 7.50401192001e-06 -4.57129727899e-05 +UniRef50_UPI0002378711 hypothetical protein 1.59430938622e-05 3.17697038061e-05 1.58266099439e-05 +UniRef50_O27273 L sulfolactate dehydrogenase 0.00184100770609 0.000536565705238 -0.00130444200085 +UniRef50_G2MPZ1 3.56813724097e-05 7.6070867585e-06 -2.80742856512e-05 +UniRef50_R0LYS9 Excinuclease ABC subunit C 5.41931538964e-05 2.98715491098e-05 -2.43216047866e-05 +UniRef50_A6LX48 Beta lactamase domain protein 0.000151398123869 0.000444085270977 0.000292687147108 +UniRef50_Q4L686 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00976213551725 0.00111453922216 -0.00864759629509 +UniRef50_M1MPJ0 0.000167029198609 0.000592774535802 0.000425745337193 +UniRef50_V1IJP0 Anaerobic C4 dicarboxylate transporter 0.000416395654823 0.000206515178457 -0.000209880476366 +UniRef50_B1I0S9 Bifunctional enzyme IspD IspF 5.08863326154e-06 1.76924978559e-05 1.26038645944e-05 +UniRef50_UPI000376EAF4 hypothetical protein 5.76886044655e-06 1.17422421785e-05 5.97338173195e-06 +UniRef50_Q6MQ03 Aminomethyltransferase 4.14340012683e-05 2.09009880117e-05 -2.05330132566e-05 +UniRef50_X5KCP0 DNA binding response regulator VncR 0.000820621714897 0.00436262695167 0.00354200523677 +UniRef50_M4EC72 1.06049596924e-05 2.84454720289e-05 1.78405123365e-05 +UniRef50_D0LWP0 ABC transporter related protein 0.00063254472526 0.000915520564698 0.000282975839438 +UniRef50_G7M0T0 NADPH dependent FMN reductase 0.00600958204098 0.00734483669639 0.00133525465541 +UniRef50_A0A024E7D7 Peptidase M42 0.000436857647962 0.000454467678334 1.7610030372e-05 +UniRef50_UPI0003B54765 enoyl CoA hydratase 7.19413366425e-06 1.8051375552e-05 1.08572418878e-05 +UniRef50_D5ALC3 4.98816405951e-05 0.000117670762799 6.77891222039e-05 +UniRef50_A0A059LAL0 0.000227943356578 3.36297561803e-05 -0.000194313600398 +UniRef50_G5JVU3 GBS Bsp like repeat protein 0.0011433681447 0.00128448740433 0.00014111925963 +UniRef50_A1WZ50 4 hydroxy tetrahydrodipicolinate synthase 0.00181250372922 2.60895492644e-05 -0.00178641417996 +UniRef50_Q8R7Y4 Energy coupling factor transporter ATP binding protein EcfA1 0.000154438136513 0.00193935043895 0.00178491230244 +UniRef50_B4RP36 CadB 0.0601506131513 0.0122786966974 -0.0478719164539 +UniRef50_UPI00031DDA32 hypothetical protein 1.44664281278e-06 0.000392809243585 0.000391362600772 +UniRef50_R9ZL92 0.000490907633022 0.000553918706303 6.3011073281e-05 +UniRef50_D3QDJ7 Predicted ring cleavage extradiol dioxygenase 0.0227593006241 0.00593385838246 -0.0168254422416 +UniRef50_F6CD95 Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific 0.0100075344918 0.00345170927419 -0.00655582521761 +UniRef50_D7CSB0 ABC transporter related protein 6.65368958018e-05 0.00955728395314 0.00949074705734 +UniRef50_P52143 0.00299116675964 0.000759502413463 -0.00223166434618 +UniRef50_UPI00036FBDE9 helicase SNF2 4.01061715854e-06 0.000382990457936 0.000378979840777 +UniRef50_A0QX20 Aconitate hydratase 1.53353377698e-05 0.000104779051713 8.94437139432e-05 +UniRef50_O59439 30S ribosomal protein S5 0.0030588302176 0.000525786418738 -0.00253304379886 +UniRef50_UPI00036C31D6 succinylarginine dihydrolase, partial 3.34293500994e-05 0.000110365601957 7.69362518576e-05 +UniRef50_Q59086 Quinate shikimate dehydrogenase 0.000106972992731 0.00591891734488 0.00581194435215 +UniRef50_UPI0003B4E02A HNH endonuclease 0.000589296819748 9.66429109124e-05 -0.000492653908836 +UniRef50_V4ZHB5 1.9544232849e-06 1.9442325331e-05 1.74879020461e-05 +UniRef50_Q9RZD4 0.000377343172071 0.00705571253511 0.00667836936304 +UniRef50_V2VFK5 Methionine biosynthesis protein MetW 0.000193914035367 0.00688358372877 0.0066896696934 +UniRef50_F6DMK6 4.51885396252e-05 6.79195222504e-05 2.27309826252e-05 +UniRef50_Q2G2M4 Mini ribonuclease 3 0.00480663734947 0.00471820927473 -8.842807474e-05 +UniRef50_A3JQ23 1.29608316484e-05 1.96164124734e-05 6.655580825e-06 +UniRef50_C5AYY6 ABC family transporter, periplasmic protein 0.000568360251346 0.000299188066121 -0.000269172185225 +UniRef50_J1K243 1.16659721542e-05 1.8035559039e-05 6.3695868848e-06 +UniRef50_UPI000287B619 UBA THIF type NAD FAD binding protein 6.68116794457e-05 1.72557420262e-05 -4.95559374195e-05 +UniRef50_C5WHW2 Arginine repressor 0.00416717736112 0.000767895536374 -0.00339928182475 +UniRef50_UPI0003F95C37 PTS system cellobiose specific transporter subunit IIA 3.88116023515e-05 2.90294954126e-05 -9.7821069389e-06 +UniRef50_U5MQ56 Serine threonine protein phosphatase 0.000128650114592 0.00183399075822 0.00170534064363 +UniRef50_B0YLW6 Cysteine desulfurase, mitosomal 0.00121077993915 0.0132257090831 0.012014929144 +UniRef50_UPI000476C43C cell division protein FtsZ 1.34343999424e-05 3.01403834785e-05 1.67059835361e-05 +UniRef50_D3HAC9 Single stranded DNA specific exonuclease 0.00357539021211 0.00363865811261 6.32679005e-05 +UniRef50_U6HVX7 Heat shock 70 kDa protein, mitochondrial, putative 8.06800389116e-06 2.53330721822e-06 -5.53469667294e-06 +UniRef50_W5N2Q1 3.01489705002e-05 0.000374161376496 0.000344012405996 +UniRef50_UPI00047E91BA ferredoxin 3.95305467569e-05 0.000377678613216 0.000338148066459 +UniRef50_G7MC40 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.000401476229602 0.00132896834504 0.000927492115438 +UniRef50_P15038 Helicase IV 0.00347264656256 0.000755643951553 -0.00271700261101 +UniRef50_UPI0003787F1C hypothetical protein 8.38464440454e-06 0.000100402503308 9.20178589035e-05 +UniRef50_O26663 Succinyl CoA ligase [ADP forming] subunit alpha 2.50018353435e-05 5.31228835388e-05 2.81210481953e-05 +UniRef50_G0DVB6 Alpha galactosidase 0.000140046063163 0.00654373297158 0.00640368690842 +UniRef50_UPI000472DA74 membrane protein 0.000144429780783 0.000152293026922 7.863246139e-06 +UniRef50_K0HCK8 ComE operon protein 3 0.000357633900494 0.00691330143899 0.0065556675385 +UniRef50_UPI0003B6E09E ABC transporter 3.05554356883e-05 1.685337575e-05 -1.37020599383e-05 +UniRef50_Q5P3C5 Crossover junction endodeoxyribonuclease RuvC 0.00672973679377 0.00324440790271 -0.00348532889106 +UniRef50_Q27580 Adenosylhomocysteinase 0.00147056985734 0.00878137630401 0.00731080644667 +UniRef50_I5C553 Bacteriophage replication gene A protein 0.00014377790448 0.000231459564019 8.7681659539e-05 +UniRef50_UPI000248C2C2 electron transfer flavoprotein, alpha subunit FixB family protein 7.92925169843e-06 6.58521061466e-06 -1.34404108377e-06 +UniRef50_UPI0002E17ECF hypothetical protein 1.80025876165e-05 1.2444170816e-05 -5.5584168005e-06 +UniRef50_X7YY04 1.26007477712e-05 0.000178320725581 0.00016571997781 +UniRef50_F3SAU0 0.000369781082124 0.000160367720189 -0.000209413361935 +UniRef50_Q44472 Putative hydroxypyruvate reductase 0.000221723287586 0.000358481974484 0.000136758686898 +UniRef50_Z4XCQ6 Putative cross wall targeting lipoprotein signal 0.0011687222984 0.000399058474063 -0.000769663824337 +UniRef50_A3PHP4 Putative ECF RNA polymerase sigma factor protein 0.00209271500155 0.002041949508 -5.076549355e-05 +UniRef50_Q6F2A0 Serine tRNA ligase 4.55409117694e-06 5.01428674969e-06 4.6019557275e-07 +UniRef50_Q029K6 Queuine tRNA ribosyltransferase 5.11012980515e-06 2.66600471668e-05 2.15499173616e-05 +UniRef50_A5UM57 Predicted deacylase 0.00262030114659 0.0031753989484 0.00055509780181 +UniRef50_A6QBY0 3 oxoacyl [acyl carrier protein] synthase 3 0.00023313351618 0.00525262503571 0.00501949151953 +UniRef50_A6LXB6 Methyl accepting chemotaxis sensory transducer 0.000388869115435 0.00182248306777 0.00143361395234 +UniRef50_R7MK20 PTS system fructose specific IIABC component 3.28898923433e-05 0.00322523933261 0.00319234944027 +UniRef50_Q5L925 GTP cyclohydrolase 1 4.14401765163e-05 5.01032910244e-05 8.6631145081e-06 +UniRef50_P0AAE6 Putative arginine ornithine antiporter 0.00321731849906 0.00118887122218 -0.00202844727688 +UniRef50_A3PM57 OmpA domain protein 0.00205159269046 0.000506257208899 -0.00154533548156 +UniRef50_N8JY23 0.000814371038283 0.000195905694112 -0.000618465344171 +UniRef50_P0A201 Curli production assembly transport component CsgE 0.000294910928794 0.000457855356899 0.000162944428105 +UniRef50_UPI00047B3E5B hypothetical protein 2.88526552427e-06 3.8645633795e-06 9.7929785523e-07 +UniRef50_UPI00035D0534 hypothetical protein 1.38642134921e-05 9.04969157907e-05 7.66327022986e-05 +UniRef50_A5UYT7 PUCC protein 2.52927104903e-05 7.46671855865e-06 -1.78259919317e-05 +UniRef50_Q8XJR2 Putative zinc metalloprotease CPE1693 0.000115674971054 0.00190739236163 0.00179171739058 +UniRef50_Q9SEY5 Probable acyl activating enzyme 2 2.74732972388e-05 2.49179190056e-05 -2.5553782332e-06 +UniRef50_W4SG00 2.22444323188e-05 3.56667229583e-05 1.34222906395e-05 +UniRef50_A5UNX6 Predicted universal stress protein, UspA 0.000267720559474 0.000418888943548 0.000151168384074 +UniRef50_D6EFB5 Regulatory protein 0.000178666647148 1.77787487498e-05 -0.000160887898398 +UniRef50_Q94522 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 3.58557555352e-05 3.31760241465e-05 -2.6797313887e-06 +UniRef50_Q8DX72 Transcriptional regulator, Cro CI family 0.000316034781363 0.000176133223777 -0.000139901557586 +UniRef50_Q53599 Protein map 0.000410859895788 7.51760810916e-05 -0.000335683814696 +UniRef50_P06576 ATP synthase subunit beta, mitochondrial 2.10459577151e-05 6.5573744164e-06 -1.44885832987e-05 +UniRef50_UPI00021A56D7 PREDICTED 0.000160165382243 5.30646424894e-05 -0.000107100739754 +UniRef50_P44910 GTP binding protein TypA BipA homolog 0.00277243939937 0.00862394085157 0.0058515014522 +UniRef50_T0IMD9 1.22010289975e-05 1.61676746888e-05 3.9666456913e-06 +UniRef50_A7HYI4 50S ribosomal protein L9 0.0084537481466 0.00312428523868 -0.00532946290792 +UniRef50_B9L2J1 Acetaldehyde dehydrogenase 0.003183070885 0.00085277936566 -0.00233029151934 +UniRef50_UPI0003B61C67 50S ribosomal protein L4 1.53808126387e-05 8.25228664921e-05 6.71420538534e-05 +UniRef50_A6LZH7 Transcriptional regulator, MarR family 0.000501087595826 0.00199220938814 0.00149112179231 +UniRef50_Q2FF13 Low molecular weight protein tyrosine phosphatase PtpB 0.00282003811312 0.00146321569137 -0.00135682242175 +UniRef50_Q5HHD1 Putative peptidyl prolyl cis trans isomerase 7.82183758467e-06 0.000244340854826 0.000236519017241 +UniRef50_UPI00040BC9E5 butanediol dehydrogenase 3.31628385514e-05 3.9065104171e-05 5.9022656196e-06 +UniRef50_A1R669 Oxidoreductase family, NAD binding Rossmann fold domain protein 0.000100040456404 0.00555578241785 0.00545574196145 +UniRef50_UPI00039B5846 hypothetical protein 1.99663654005e-05 2.87625972349e-05 8.7962318344e-06 +UniRef50_F2MM74 Cytidine deaminase 0.00218789767709 0.00412203269675 0.00193413501966 +UniRef50_UPI00022CE1AC 1.44801159207e-06 1.4950238736e-05 1.35022271439e-05 +UniRef50_N9Z7F0 YhgE Pip domain containing protein 0.000202627359004 0.000846011625188 0.000643384266184 +UniRef50_F5YEL5 Nitrogenase 0.000172041329329 0.00027447804323 0.000102436713901 +UniRef50_F0RQS6 4.07036361602e-05 0.000175951169409 0.000135247533249 +UniRef50_P45799 ADP compounds hydrolase NudE 0.00505668406772 0.000328738447346 -0.00472794562037 +UniRef50_O26664 0.00442429830978 0.00117420219928 -0.0032500961105 +UniRef50_UPI0000164CEE putative transposase 7.43361581767e-05 0.124709122894 0.124634786736 +UniRef50_UPI0004415ED9 GTP binding protein Obg CgtA 3.32974925147e-06 0.000162329367688 0.000158999618437 +UniRef50_UPI00038219EB hypothetical protein 0.000255697695808 0.000473665301161 0.000217967605353 +UniRef50_A0A023UVB3 MFS transporter 0.000222866963081 0.000151186026547 -7.1680936534e-05 +UniRef50_Q93PN3 Ferric hydroxamate receptor 1 0.00587358546412 0.00119907596136 -0.00467450950276 +UniRef50_UPI000466770B BCCT transporter 7.18521343554e-05 2.38078511347e-05 -4.80442832207e-05 +UniRef50_L2ZQX2 Melibiose carrier protein 0.0027949020284 0.00112097381491 -0.00167392821349 +UniRef50_P37746 Putative O antigen transporter 0.0036819077642 0.000518282303339 -0.00316362546086 +UniRef50_UPI0004718772 30S ribosomal protein S2 2.26820062065e-05 1.81507737684e-05 -4.5312324381e-06 +UniRef50_L1KZ53 1.89982943189e-05 0.000441975583678 0.000422977289359 +UniRef50_E1M0K4 N acetyl glucosamine matabolism 2.15832256713e-05 1.64239543469e-05 -5.1592713244e-06 +UniRef50_H8XGR9 0.0120099486241 0.00163145268247 -0.0103784959416 +UniRef50_UPI0002064BBF PREDICTED 4.39544944375e-06 8.51102350421e-06 4.11557406046e-06 +UniRef50_U5UMZ1 N acetylglucosamine 6 phosphate deacetylase 0.0253303677845 0.00391479829046 -0.021415569494 +UniRef50_Q6A9W9 Cation transporting P type ATPase A 0.000131223579037 0.00646341304687 0.00633218946783 +UniRef50_F4M600 0.00195046875892 0.000849499201307 -0.00110096955761 +UniRef50_UPI00046BAD61 PREDICTED 3.55781656944e-06 3.84097047477e-06 2.8315390533e-07 +UniRef50_UPI0003A27C90 hypothetical protein 8.11993465715e-05 1.3815079482e-05 -6.73842670895e-05 +UniRef50_UPI00037AE98E hypothetical protein 2.62055422881e-05 7.08113241508e-05 4.46057818627e-05 +UniRef50_P42778 Aminopeptidase T 0.000104374006137 6.03549396929e-05 -4.40190664441e-05 +UniRef50_M4YX89 Stage 0 sporulation protein 0.00549170061236 0.00416064540081 -0.00133105521155 +UniRef50_R9ZFL5 ABC transporter permease 0.00081882291189 0.00117060013925 0.00035177722736 +UniRef50_UPI000428106D hypothetical protein 5.37267293737e-06 3.62345242764e-06 -1.74922050973e-06 +UniRef50_A0A029PSG2 2.72482044463e-05 4.64456117212e-05 1.91974072749e-05 +UniRef50_A0A024IS11 Plasmid partitioning protein 0.000155161686285 2.61026807106e-05 -0.000129059005574 +UniRef50_P9WQK2 0.00291735582738 0.0178384257432 0.0149210699158 +UniRef50_Q7M8H7 Valine tRNA ligase 9.74505257933e-05 0.00339688354859 0.0032994330228 +UniRef50_A6LZT7 0.000976256867724 0.00150291410778 0.000526657240056 +UniRef50_W7G027 8.65801201392e-05 3.67742887112e-05 -4.9805831428e-05 +UniRef50_D5AM27 Pseudouridine synthase 0.00736051960925 0.00213257429764 -0.00522794531161 +UniRef50_P76561 Esterase YpfH 0.00225488975585 0.00118454319802 -0.00107034655783 +UniRef50_UPI00021974F8 DeoR family transcriptional regulator 1.34285385325e-05 3.15364545099e-05 1.81079159774e-05 +UniRef50_D2QMM0 2.44558858853e-05 0.000156756003057 0.000132300117172 +UniRef50_UPI00016C4288 CheA Signal Transduction Histidine Kinases , partial 3.47015662212e-06 1.88282300538e-05 1.53580734317e-05 +UniRef50_UPI00046451D1 polyamine ABC transporter ATPase 7.70399117753e-05 1.91074257509e-05 -5.79324860244e-05 +UniRef50_R5ELQ2 Topology modulation protein 1.84657547031e-05 3.22028087596e-05 1.37370540565e-05 +UniRef50_P25857 Glyceraldehyde 3 phosphate dehydrogenase GAPB, chloroplastic 3.95322378677e-05 1.66939328316e-05 -2.28383050361e-05 +UniRef50_Q67TG7 4.67716271118e-06 1.03796425551e-05 5.70247984392e-06 +UniRef50_W4UAM7 3.51049601379e-05 0.000342681357451 0.000307576397313 +UniRef50_UPI0003B31F76 hypothetical protein 1.83619984512e-05 3.53820842673e-05 1.70200858161e-05 +UniRef50_E3CUZ5 NLPA lipoprotein 3.80733402177e-05 7.63512111011e-05 3.82778708834e-05 +UniRef50_UPI0004758E9D hypothetical protein, partial 0.000456925779047 0.000203392862809 -0.000253532916238 +UniRef50_G8V940 MutT Nudix family protein 0.00124906335495 0.00967047615812 0.00842141280317 +UniRef50_UPI00045E611A cytidine deaminase 3.52740427485e-05 3.12633425969e-05 -4.0107001516e-06 +UniRef50_UPI000349A3D9 hypothetical protein 4.99171129157e-06 2.22797850888e-05 1.72880737972e-05 +UniRef50_UPI0003B40D78 sugar ABC transporter, partial 2.90286549519e-05 5.67016168015e-06 -2.33584932718e-05 +UniRef50_G2SQ27 Glycosyltransferase 0.0049933749049 0.00222203034387 -0.00277134456103 +UniRef50_X6L644 7.68364419879e-05 4.75555776371e-05 -2.92808643508e-05 +UniRef50_A5UHD3 Bifunctional protein GlmU 2.40471064061e-05 6.26200091589e-06 -1.77851054902e-05 +UniRef50_UPI00046B76DF PREDICTED 5.04899414111e-06 0.000249563412836 0.000244514418695 +UniRef50_A7X6P6 Holin like protein CidA 0.00937027488317 0.00362824018862 -0.00574203469455 +UniRef50_P0A1J8 Flagella synthesis protein FlgN 0.00119810770375 0.00179099540274 0.00059288769899 +UniRef50_Q39NK6 Endoribonuclease L PSP 2.84660207752e-05 5.63131650807e-05 2.78471443055e-05 +UniRef50_UPI0001B44150 hypothetical protein 0.000199443979412 0.00048018976455 0.000280745785138 +UniRef50_P00490 Maltodextrin phosphorylase 0.00417851816225 0.0014514079557 -0.00272711020655 +UniRef50_A5UJI7 Asparagine synthetase, AsnB 0.00277802607671 0.000444286616466 -0.00233373946024 +UniRef50_K2DSG6 9.47148534366e-05 7.57196065083e-05 -1.89952469283e-05 +UniRef50_UPI00046C2950 cytochrome b 0.000182421291978 7.00135235024e-05 -0.000112407768476 +UniRef50_UPI0003B5555F MFS transporter 2.5915732082e-05 0.000146975885355 0.000121060153273 +UniRef50_A6QHT5 0.0121458381922 0.000432170788082 -0.0117136674041 +UniRef50_Q8DV31 0.000890941918006 0.00428434342103 0.00339340150302 +UniRef50_P0A3T3 31 kDa immunogenic protein 9.48415684732e-06 3.55014442685e-05 2.60172874212e-05 +UniRef50_D3NZU9 0.00762712272573 0.000671757737056 -0.00695536498867 +UniRef50_Q9KPB3 GTPase Era 0.00118255818439 0.00603129469943 0.00484873651504 +UniRef50_UPI00046411BA diaminopimelate decarboxylase, partial 8.60334502678e-06 1.05949688857e-05 1.99162385892e-06 +UniRef50_UPI00037DE21F multidrug transporter 0.000164501174775 0.000155239578183 -9.261596592e-06 +UniRef50_Q839Y4 Adenylosuccinate synthetase 0.0347473135737 0.0140876365168 -0.0206596770569 +UniRef50_M9VFY2 0.000108785587569 0.00431494178593 0.00420615619836 +UniRef50_W0E3L8 Flagellar hook capping protein 7.32679813667e-06 1.00367653662e-05 2.70996722953e-06 +UniRef50_Q5HKD7 Oxidoreductase, short chain dehydrogenase reductase family 0.0132319131403 0.00499700710651 -0.00823490603379 +UniRef50_UPI00036E9589 hypothetical protein, partial 6.63350689618e-05 2.75294293418e-05 -3.880563962e-05 +UniRef50_M3F475 1.49444886109e-05 0.00102414303003 0.00100919854142 +UniRef50_UPI000463B4EA carnitine dehydratase 1.05141878525e-05 0.000181113420105 0.000170599232252 +UniRef50_D6EJW5 Predicted protein 1.28993004054e-06 0.000216715425948 0.000215425495907 +UniRef50_H4XQD7 Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein 0.00112624474485 0.000297298696507 -0.000828946048343 +UniRef50_UPI0003A6E25E serine dehydratase 7.84921346501e-06 1.15845442806e-05 3.73533081559e-06 +UniRef50_UPI00039D719D DNA binding protein 1.646249897e-05 7.62296948745e-06 -8.83952948255e-06 +UniRef50_G5RJ22 0.000297856595278 0.000458721991281 0.000160865396003 +UniRef50_W0YK09 0.00188742994426 0.000522684433979 -0.00136474551028 +UniRef50_I6B1F5 0.000143154764953 7.05798232947e-05 -7.25749416583e-05 +UniRef50_B9KLE9 Transcriptional regulator, AraC family 0.00220524596689 0.000723224584158 -0.00148202138273 +UniRef50_UPI0004764017 peptide ABC transporter permease 5.79321490638e-06 1.88023816264e-06 -3.91297674374e-06 +UniRef50_UPI00037A033B hypothetical protein 5.52278806612e-06 2.41599996676e-05 1.86372116015e-05 +UniRef50_Q0K7G7 Acyl CoA synthetase 0.00146380294672 0.000799607146322 -0.000664195800398 +UniRef50_C2ZQ18 ABC transporter ATP binding protein yxdL 0.0142986704227 0.00118600761412 -0.0131126628086 +UniRef50_Q6FDY0 Cell shape determining protein MreC 0.00116538673977 0.00465542170944 0.00349003496967 +UniRef50_C6CXW7 LmbE family protein 5.88736323765e-06 1.7798412076e-05 1.19110488383e-05 +UniRef50_I0C3E8 Myo inositol 1 monophosphatase 0.0125863151521 0.0065766851731 -0.006009629979 +UniRef50_Q3AHV1 Glutamyl Q tRNA synthetase 5.46980659771e-06 9.86217989472e-06 4.39237329701e-06 +UniRef50_A3M2F5 Conjugal transfer protein 0.000138781613551 0.0105792594756 0.010440477862 +UniRef50_UPI00046744B6 ABC transporter permease, partial 0.000255394058913 0.000129835462706 -0.000125558596207 +UniRef50_UPI000362E5AE hypothetical protein 4.99055866453e-06 8.32020359926e-06 3.32964493473e-06 +UniRef50_D3SBY0 Ribonuclease, Rne Rng family 0.00087350077108 0.000568480292046 -0.000305020479034 +UniRef50_B1LM32 Fatty acid oxidation complex subunit alpha 0.00219675556078 0.00898546085097 0.00678870529019 +UniRef50_UPI0003FCFBC7 GTP binding protein Era 1.4978195305e-05 7.17873565932e-05 5.68091612882e-05 +UniRef50_UPI00036244E1 MULTISPECIES 2.32920935315e-05 3.91430741955e-05 1.5850980664e-05 +UniRef50_F4EDN7 Ribulose phosphate 3 epimerase 0.00399043971041 0.002485363064 -0.00150507664641 +UniRef50_Q8CQF2 Capsular polysaccharide synthesis enzyme Cap5B 0.00917460579185 0.00283808374536 -0.00633652204649 +UniRef50_P08997 Malate synthase A 0.00330262831587 0.000239826397051 -0.00306280191882 +UniRef50_A0A036W4K8 0.000175972960421 1.05574901127e-05 -0.000165415470308 +UniRef50_UPI00047C7627 glutathione synthetase 6.76957271516e-06 1.3231054911e-05 6.46148219584e-06 +UniRef50_P32167 0.00631360126312 0.00387100126126 -0.00244260000186 +UniRef50_F7X4C7 Delta aminolevulinic acid dehydratase 0.00032238132368 0.000516274360376 0.000193893036696 +UniRef50_P65897 Phosphoribosylglycinamide formyltransferase 0.00460402110486 0.00135545998455 -0.00324856112031 +UniRef50_UPI000287C995 membrane protein 2.47886402903e-05 0.00013213731124 0.00010734867095 +UniRef50_M5DTI1 1.32813830827e-05 1.86778831321e-05 5.3965000494e-06 +UniRef50_B6ERK3 L allo threonine aldolase 0.00353744798453 0.000502783432462 -0.00303466455207 +UniRef50_V8CW46 0.0021583852341 0.000604621637068 -0.00155376359703 +UniRef50_H0UKG1 Urocanate hydratase 5.67079602693e-05 0.00831233597702 0.00825562801675 +UniRef50_M7AG58 5.65768941141e-05 2.65313754221e-05 -3.0045518692e-05 +UniRef50_P37643 Inner membrane metabolite transport protein YhjE 0.00290675726449 0.00735094201163 0.00444418474714 +UniRef50_UPI000466C516 flagellar biosynthesis protein FlhB 0.000152961130101 2.0631210496e-05 -0.000132329919605 +UniRef50_UPI0003648093 hypothetical protein 4.65536964476e-06 7.53183002715e-06 2.87646038239e-06 +UniRef50_P43669 Tail specific protease 0.00313247374606 0.00120983697504 -0.00192263677102 +UniRef50_E6S4X2 Outer membrane protein 5.83741219845e-05 0.00927612093405 0.00921774681207 +UniRef50_G4R850 Molybdopterin guanine dinucleotide biosynthesis protein MobA 7.40469363506e-06 1.96668148133e-05 1.22621211782e-05 +UniRef50_B7H1A9 DNA polymerase III, subunits gamma and tau 0.000122424811164 0.00431159539542 0.00418917058426 +UniRef50_K4L2S2 Flagellar motor rotation protein MotA 0.000159951690188 0.000645185269355 0.000485233579167 +UniRef50_G5M6M8 0.000230069696257 0.00175435666453 0.00152428696827 +UniRef50_N6UCJ2 7.76268620214e-06 0.000119857349329 0.000112094663127 +UniRef50_C5N315 0.0152296120901 0.000619545535373 -0.0146100665547 +UniRef50_UPI000465C017 ferredoxin 1.93723789665e-05 0.000167761450846 0.000148389071879 +UniRef50_A0A022H1C7 DNA binding protein 3.43926884354e-05 4.61142098899e-05 1.17215214545e-05 +UniRef50_A1AZ02 1.7016476536e-05 8.81937904438e-06 -8.19709749162e-06 +UniRef50_UPI0002484134 hemolysin type calcium binding protein 3.84764336707e-05 1.72492509887e-05 -2.1227182682e-05 +UniRef50_A0A023S0A7 DcaP like protein 0.000259409943429 0.00820890118734 0.00794949124391 +UniRef50_V4A4N8 3.99879225442e-05 7.17293110198e-05 3.17413884756e-05 +UniRef50_Q59977 Citrate synthase 1.64762271917e-05 8.97766192279e-05 7.33003920362e-05 +UniRef50_V4YV07 0.000456636276836 0.000714475899663 0.000257839622827 +UniRef50_F3U350 0.00743902633541 0.00224180998752 -0.00519721634789 +UniRef50_R7BMM6 Glycerol 3 phosphate cytidyltransferase TagD 0.00379100297471 0.000765336638399 -0.00302566633631 +UniRef50_UPI0002B41A80 PREDICTED 1.31749187047e-06 2.08007236196e-06 7.6258049149e-07 +UniRef50_UPI0004762A43 iron ABC transporter 8.82551747071e-06 4.00482074699e-05 3.12226899992e-05 +UniRef50_P39142 Pyrimidine nucleoside phosphorylase 0.0101609472363 0.0082711488146 -0.0018897984217 +UniRef50_Q1R031 Uridylate kinase 0.000503713269936 0.0067419351698 0.00623822189986 +UniRef50_A9NG27 Thymidylate synthase 3.66256855311e-05 0.000352304721448 0.000315679035917 +UniRef50_A6UJH5 5.44900500844e-05 0.000216878853269 0.000162388803185 +UniRef50_H5LJB5 0.00159869564113 0.000242394012474 -0.00135630162866 +UniRef50_D6K6K4 0.00016643821842 0.000163292597318 -3.145621102e-06 +UniRef50_B1TED8 6.22426323493e-05 0.000100004406744 3.77617743947e-05 +UniRef50_P0A5T7 Formyltetrahydrofolate deformylase 1.9670168743e-05 2.60927527183e-05 6.4225839753e-06 +UniRef50_X2GNK8 Arsenic transporter ATPase 0.000158764481514 0.00579713249654 0.00563836801503 +UniRef50_G7M542 Two component transcriptional regulator, winged helix family 0.000172368031437 0.00281842012135 0.00264605208991 +UniRef50_P55910 L lactate permease 0.0104828072799 0.00125029396343 -0.00923251331647 +UniRef50_A6LWU2 ABC transporter related 0.000244264005313 0.00110788236617 0.000863618360857 +UniRef50_B8ZUC1 Phosphoglucosamine mutase 4.12083920184e-06 4.34954885932e-05 3.93746493914e-05 +UniRef50_A0A024HWF4 7.19532428526e-06 0.000129565183052 0.000122369858767 +UniRef50_G8V8M1 Membrane spanning protein 0.000332099110422 0.00630498737476 0.00597288826434 +UniRef50_A8HYX7 ABC type branched chain amino acid transport ATPase component 0.0123506018978 0.00223487074113 -0.0101157311567 +UniRef50_A6LZK9 Methyl accepting chemotaxis sensory transducer 0.00032748132922 0.000845520705842 0.000518039376622 +UniRef50_K2KCN1 2.36104821523e-05 1.75743252226e-05 -6.0361569297e-06 +UniRef50_P54933 ATP binding transport protein SmoK 0.00193713174033 0.00155532118149 -0.00038181055884 +UniRef50_UPI0004698811 DNA topoisomerase I 1.96474976141e-06 9.49962261751e-06 7.5348728561e-06 +UniRef50_P0AA51 0.00334585969751 0.00292305487312 -0.00042280482439 +UniRef50_F8KLF6 0.0161395852245 0.00122485690681 -0.0149147283177 +UniRef50_Q6B945 3 oxoacyl [acyl carrier protein] synthase 3 4.10706383138e-05 1.24820701495e-05 -2.85885681643e-05 +UniRef50_A0A024L5K6 Amino acid ABC transporter permease 0.000359510465573 0.0011483803807 0.000788869915127 +UniRef50_UPI000262D62D glucose 6 phosphate 1 dehydrogenase, partial 1.05059878376e-05 1.03288499718e-05 -1.771378658e-07 +UniRef50_Q9JZ77 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.000268190343332 0.00488176321812 0.00461357287479 +UniRef50_Q08WZ7 0.000167211316105 6.34923387838e-05 -0.000103718977321 +UniRef50_UPI0003B3DE24 multidrug ABC transporter ATP binding protein 1.69221278616e-05 7.77250975164e-06 -9.14961810996e-06 +UniRef50_UPI0004737AC7 hypothetical protein 0.000103062271139 0.000383389254612 0.000280326983473 +UniRef50_UPI0003B6AFA9 glycerol 3 phosphate dehydrogenase 1.86023845111e-05 5.93021304059e-06 -1.26721714705e-05 +UniRef50_Q9AF05 1.86027704527e-05 9.35565678686e-06 -9.24711366584e-06 +UniRef50_B6ITD9 2.43993609106e-05 6.75563235453e-05 4.31569626347e-05 +UniRef50_P69424 Sec independent protein translocase protein TatC 0.00245849186491 0.00132319596881 -0.0011352958961 +UniRef50_F0KHC4 Cell division protein ftsA 0.000306533843866 0.00473524918581 0.00442871534194 +UniRef50_Q9RTP9 1.083114388e-05 0.102880427759 0.102869596615 +UniRef50_R0PW25 0.000168270128756 0.00256412201142 0.00239585188266 +UniRef50_Q6A6H1 NADH quinone oxidoreductase subunit N 0.000103997588196 0.00625544529755 0.00615144770935 +UniRef50_UPI00029A832E aspartyl glutamyl tRNA amidotransferase subunit B 9.36553079156e-05 2.36942158064e-05 -6.99610921092e-05 +UniRef50_Q9HA92 Radical S adenosyl methionine domain containing protein 1, mitochondrial 2.53181032556e-05 9.99153284642e-06 -1.53265704092e-05 +UniRef50_UPI00045EA718 hypothetical protein 8.91871129846e-06 4.0771068876e-06 -4.84160441086e-06 +UniRef50_UPI00037A936B hypothetical protein 1.7297532389e-05 3.72679047838e-05 1.99703723948e-05 +UniRef50_A5CSI8 Argininosuccinate lyase 4.7338225616e-06 0.00627576491785 0.00627103109529 +UniRef50_Q82Z40 DNA directed RNA polymerase subunit beta 0.0072572200655 0.005897493267 -0.0013597267985 +UniRef50_I4YRS4 Replication protein C 8.03090426695e-05 1.43582989626e-05 -6.59507437069e-05 +UniRef50_A5HY11 Spore coat protein 0.000331365286798 0.00154988058338 0.00121851529658 +UniRef50_UPI0003680468 hypothetical protein 7.78512611721e-05 2.78911788629e-05 -4.99600823092e-05 +UniRef50_UPI000392E29D PREDICTED 2.18805900061e-05 1.37838425997e-05 -8.0967474064e-06 +UniRef50_P37487 Manganese dependent inorganic pyrophosphatase 0.00493600771547 0.00921295754804 0.00427694983257 +UniRef50_Q2NFD4 Flap endonuclease 1 0.00190689529131 0.000185928670631 -0.00172096662068 +UniRef50_P43010 NAD transhydrogenase subunit beta 0.000247026354042 0.00874579628668 0.00849876993264 +UniRef50_A0A037XJH2 Membrane protein 4.92629381754e-05 7.2392851173e-06 -4.20236530581e-05 +UniRef50_UPI000237ADAF branched chain amino acid ABC transporter ATP binding protein 6.88760517269e-05 8.37878857449e-06 -6.04972631524e-05 +UniRef50_R7PX51 Peptidase M50 0.00558849007108 0.00144300766143 -0.00414548240965 +UniRef50_UPI0003D2B83C catalase 0.000120029996956 0.000144385632098 2.4355635142e-05 +UniRef50_Q9AC07 NifU like domain protein 0.00409168324117 0.000866501500009 -0.00322518174116 +UniRef50_UPI0004785B50 hypothetical protein 5.22529040024e-05 1.46463247118e-05 -3.76065792906e-05 +UniRef50_I7EPM1 Gamma glutamyltranspeptidase Ggt 0.00136020741089 0.00088002878136 -0.00048017862953 +UniRef50_UPI0004785B1F LuxR family transcriptional regulator 4.22536934038e-05 0.000995542231388 0.000953288537984 +UniRef50_C9JF41 Transcription cofactor HES 6 1.55468564229e-05 0.000137167252976 0.000121620396553 +UniRef50_P62423 Phosphoglycerate kinase 0.00179555853644 0.00299905857252 0.00120350003608 +UniRef50_L7WTC3 Lipoprotein 0.00994670720227 0.000675427690666 -0.0092712795116 +UniRef50_G7MAA3 0.000189691451679 0.00313423375231 0.00294454230063 +UniRef50_UPI0003AE3085 PREDICTED 0.000145969244132 4.4634705658e-05 -0.000101334538474 +UniRef50_F7MME9 Radical SAM family protein 3.62424329115e-05 3.30274587994e-05 -3.2149741121e-06 +UniRef50_UPI000367D5BE hypothetical protein 8.68124865621e-06 1.82511209614e-05 9.56987230519e-06 +UniRef50_T2K0U5 Plasmid replication protein 3.77228265956e-05 6.70767184903e-06 -3.10151547466e-05 +UniRef50_D9QK96 FAD dependent oxidoreductase 1.40727113362e-05 3.7128363778e-06 -1.03598749584e-05 +UniRef50_O67262 Diaminopimelate decarboxylase 1.54228866344e-05 9.96394916168e-05 8.42166049824e-05 +UniRef50_Q9XJJ6 Spanin, inner membrane subunit 0.000838857753003 0.00653054548712 0.00569168773412 +UniRef50_C5IBJ2 RhsA 0.000761381634286 0.000389300886958 -0.000372080747328 +UniRef50_A5VCY9 Polyribonucleotide nucleotidyltransferase 1.45816899375e-05 2.96065127916e-05 1.50248228541e-05 +UniRef50_T1XSM0 Cell shape determinant MreD 0.0115770177727 0.00803400690555 -0.00354301086715 +UniRef50_Q07T82 Protease HtpX homolog 0.00252656485065 0.00108266774844 -0.00144389710221 +UniRef50_Q12A19 Histone deacetylase superfamily 0.00294968877164 0.000600541100723 -0.00234914767092 +UniRef50_F2MQQ8 Tagatose 6 phosphate kinase 0.00763103817039 0.00339285856977 -0.00423817960062 +UniRef50_Q9K1M6 9.04771327611e-05 0.0029869506689 0.00289647353614 +UniRef50_G9P654 0.000211992637469 0.000250870066872 3.8877429403e-05 +UniRef50_A6LY61 AAA ATPase 0.000329615525915 0.000826180358046 0.000496564832131 +UniRef50_P77216 0.00324359650427 0.00158361671743 -0.00165997978684 +UniRef50_P22983 Pyruvate, phosphate dikinase 0.00100711043243 0.00623050255463 0.0052233921222 +UniRef50_UPI000289D44B AMP dependent synthetase ligase 3.11363157333e-05 2.73178130336e-05 -3.8185026997e-06 +UniRef50_P43712 Malonyl CoA acyl carrier protein transacylase 0.000606724884815 0.0009322051588 0.000325480273985 +UniRef50_R3W3Z9 Regulatory protein BlaR1 0.000423383718283 0.000154347329742 -0.000269036388541 +UniRef50_G7M658 0.000817523306876 0.000385684116258 -0.000431839190618 +UniRef50_B9NM77 0.000917851048195 0.000393339400741 -0.000524511647454 +UniRef50_G9L997 GMP synthase 0.000126979662922 9.81998749854e-05 -2.87797879366e-05 +UniRef50_U5UNZ2 Cell division protein DivIB 0.00883444999799 0.00343873603891 -0.00539571395908 +UniRef50_UPI0003BCFABD PREDICTED 1.37276829101e-05 1.20484130898e-05 -1.6792698203e-06 +UniRef50_H8GRZ1 0.000184538064811 0.00441625287451 0.0042317148097 +UniRef50_UPI000252B988 PREDICTED 7.52495179263e-06 6.129126153e-06 -1.39582563963e-06 +UniRef50_P0A9Q3 Aerobic respiration control protein ArcA 0.00209069326909 0.00312937584048 0.00103868257139 +UniRef50_Q62CS2 Conserved domain protein 0.000122481085786 6.6379520224e-05 -5.6101565562e-05 +UniRef50_I7BX60 0.000692922191886 0.000439246632237 -0.000253675559649 +UniRef50_N8WA96 0.000258967631858 0.00706703195947 0.00680806432761 +UniRef50_Q9ZIG2 Thymidine kinase 1.79794644102e-05 1.08213928046e-05 -7.1580716056e-06 +UniRef50_H8GUV3 GTPase, G3E family 0.000166537936259 0.0192423497852 0.0190758118489 +UniRef50_K9BES8 Type I secretion C terminal target domain protein, VC_A0849 subclass family 8.91442553166e-05 0.00255416038734 0.00246501613202 +UniRef50_U6H4I5 2.7705225072e-05 0.00018278765798 0.000155082432908 +UniRef50_Q8L7B5 Chaperonin CPN60 like 1, mitochondrial 0.0330292442193 0.0614562438329 0.0284269996136 +UniRef50_P37725 Uroporphyrinogen III C methyltransferase 2.24046064489e-05 2.63905492569e-05 3.985942808e-06 +UniRef50_UPI00037CF2DE hypothetical protein 3.21744569382e-06 0.000439102108772 0.000435884663078 +UniRef50_P76641 Guanine deaminase 0.000680806716102 0.00668236540545 0.00600155868935 +UniRef50_U3TW22 Glycine betaine ABC transporter substrate binding protein 0.00181643860444 0.000558141041216 -0.00125829756322 +UniRef50_UPI000368C576 hypothetical protein 0.000691926137349 0.000116396359191 -0.000575529778158 +UniRef50_Q8AAB1 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.26910642384e-05 4.11822586129e-05 2.84911943745e-05 +UniRef50_Q4L7J6 Sensor protein VraS 0.0172759452698 0.00346547147105 -0.0138104737987 +UniRef50_P39366 Putative aminopeptidase SgcX 0.00314707647034 0.00311622320841 -3.085326193e-05 +UniRef50_UPI00036B883D hypothetical protein 6.01140992804e-05 3.87656002647e-05 -2.13484990157e-05 +UniRef50_Q9ZE99 Prolipoprotein diacylglyceryl transferase 1.55172015048e-05 1.33995511588e-05 -2.117650346e-06 +UniRef50_P48632 Ferripyoverdine receptor 0.0011528000235 0.000565769953355 -0.000587030070145 +UniRef50_UPI00037AF8F5 50S ribosomal protein L10 0.000197079205272 0.000133012450425 -6.4066754847e-05 +UniRef50_UPI00035D9CD4 hypothetical protein 1.04867074349e-05 2.20535250532e-05 1.15668176183e-05 +UniRef50_Q73DE0 Quinol oxidase subunit 2 5.8386679675e-05 0.000347431417872 0.000289044738197 +UniRef50_G6XJ67 6.98003965453e-06 2.49942494553e-05 1.80142098008e-05 +UniRef50_UPI00016C3B3C autotransporter associated beta strand repeat protein, partial 4.05438320609e-05 4.23918719097e-06 -3.63046448699e-05 +UniRef50_P56453 Glycine tRNA ligase alpha subunit 0.0011651247949 0.00370800724976 0.00254288245486 +UniRef50_A6M1U7 Transcriptional regulator, GntR family 0.000642529342721 0.00160126541707 0.000958736074349 +UniRef50_X5DX47 Bacterial regulatory s, tetR family protein 0.00940476762368 0.00142347219139 -0.00798129543229 +UniRef50_F8HGF9 0.00822854273072 0.0236089422457 0.015380399515 +UniRef50_UPI0004719644 phosphoenolpyruvate carboxykinase 2.72049244395e-05 0.0001159383943 8.87334698605e-05 +UniRef50_UPI000255D4C6 ferredoxin NADP reductase subunit alpha 9.04421235478e-05 0.00017960068757 8.91585640222e-05 +UniRef50_UPI000262CC71 mannose 1 phosphate guanyltransferase 2.66215683657e-05 1.18020487549e-05 -1.48195196108e-05 +UniRef50_A4X0F9 0.00169373056156 0.000671174329992 -0.00102255623157 +UniRef50_G7U4K0 Hydrolase, NUDIX family protein 0.000256212209626 0.00550827275118 0.00525206054155 +UniRef50_W0T788 7.92680359609e-06 6.59641250591e-05 5.8037321463e-05 +UniRef50_K1ER07 Major facilitator transporter 0.000176768395805 3.61346748635e-05 -0.000140633720942 +UniRef50_A7X202 Nuclease SbcCD subunit D 0.0246215119242 0.00570094479188 -0.0189205671323 +UniRef50_U6AXU2 ABC transporter, periplasmic spermidine putrescine binding protein PotD 0.00181530426283 0.00122363040151 -0.00059167386132 +UniRef50_Q1MRB9 ATP synthase subunit alpha 0.000601431102195 0.00588077105119 0.00527933994899 +UniRef50_Q4L700 UPF0758 protein SH1266 0.0162152868427 0.00220835798357 -0.0140069288591 +UniRef50_G7U594 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 9.66261063593e-05 0.00576842997014 0.00567180386378 +UniRef50_UPI000479001A uridine kinase 9.89054462057e-06 0.000256250654091 0.00024636010947 +UniRef50_F3KRZ8 7.5192958706e-05 2.62319045263e-05 -4.89610541797e-05 +UniRef50_R5Q800 0.0026269996782 0.000794912925284 -0.00183208675292 +UniRef50_K0HYU5 0.000671378910635 0.0114090895128 0.0107377106022 +UniRef50_T9BKY3 Xanthine dehydrogenase accessory factor 0.000167955557231 3.0107772009e-05 -0.000137847785222 +UniRef50_A4WZ55 Heme A synthase 0.00596508311088 0.000570587245925 -0.00539449586496 +UniRef50_F7XW34 30S ribosomal protein S1 0.0119959516228 0.00464029319678 -0.00735565842602 +UniRef50_V5WF15 Oligopeptide transport system permease protein OppB 0.000765516270981 0.00116422200583 0.000398705734849 +UniRef50_N3GRF4 Type VII secretion system , usher family protein 0.00109103283534 0.000556554468458 -0.000534478366882 +UniRef50_D0WC80 2.55406071133e-05 0.000349879066668 0.000324338459555 +UniRef50_P0ACI5 Xylose operon regulatory protein 0.00393616738578 0.000305238942662 -0.00363092844312 +UniRef50_Q60151 Glutathione reductase 0.00601246333006 0.00593158841279 -8.087491727e-05 +UniRef50_P20370 4 carboxymuconolactone decarboxylase 3.76687772533e-05 0.000275436083939 0.000237767306686 +UniRef50_A4XU74 Elongation factor P 0.00127242468152 9.74772781063e-05 -0.00117494740341 +UniRef50_S5Y8U0 Glyoxalase bleomycin resistance protein dioxygenase 0.0003380471542 0.000831878042813 0.000493830888613 +UniRef50_A5FMG2 Leucine tRNA ligase 6.00887002074e-06 2.15704384974e-06 -3.851826171e-06 +UniRef50_D4HCU9 Cysteine rich domain protein 0.000577784676811 0.00635551188357 0.00577772720676 +UniRef50_Q75AN4 ADL112Wp 0.000287009044144 0.00014151430695 -0.000145494737194 +UniRef50_UPI00047A0692 hypothetical protein 3.33296290105e-05 5.88666255555e-05 2.5536996545e-05 +UniRef50_Q0TLW2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.96110222257e-05 5.46533636745e-05 -2.49576585512e-05 +UniRef50_Q21Y74 Penicillin amidase 0.000445437462131 8.43762014861e-05 -0.000361061260645 +UniRef50_A4WV32 0.000827774426284 0.000980244008616 0.000152469582332 +UniRef50_UPI0002489B60 hemolysin type calcium binding region 2.20736930467e-05 3.08847668455e-05 8.8110737988e-06 +UniRef50_I6SV43 0.00270985826164 0.00488969432594 0.0021798360643 +UniRef50_UPI00037DDE2A hypothetical protein 1.31876817892e-05 2.35911233374e-05 1.04034415482e-05 +UniRef50_A6M0W1 0.00036734713342 0.00117287919229 0.00080553205887 +UniRef50_Q9CHL8 Multidrug resistance ABC transporter ATP binding and permease protein 3.79380803442e-05 3.45257736482e-05 -3.412306696e-06 +UniRef50_A3M5M9 Aldehyde dehydrogenase 0.00161779709507 0.000892788613137 -0.000725008481933 +UniRef50_B7MT79 Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor] 0.0039868811774 0.00216231605159 -0.00182456512581 +UniRef50_Q8A2T6 S adenosylmethionine synthase 4.6309620919e-05 0.00418181746631 0.00413550784539 +UniRef50_Q87ZG4 Non homologous end joining protein Ku 0.000463098809869 0.000811031327626 0.000347932517757 +UniRef50_A0A023S0C8 Long chain fatty acid transporter 0.000438197115076 0.0180022572371 0.017564060122 +UniRef50_Q1MPL2 Porphobilinogen deaminase 9.6689147599e-06 9.77905084099e-06 1.1013608109e-07 +UniRef50_C2RB76 Glyoxalase 8.86165257367e-06 0.000237838957205 0.000228977304631 +UniRef50_A6LTD1 0.000435560756373 0.000434289272355 -1.271484018e-06 +UniRef50_Q5HFS5 Tyrosine recombinase XerD 0.00872999922707 0.00152204699815 -0.00720795222892 +UniRef50_K8NEW5 9.11216619719e-05 0.000150873625599 5.97519636271e-05 +UniRef50_H6NGS7 Glutamine ABC transporter substrate binding protein 0.000335140754847 0.000285330149942 -4.9810604905e-05 +UniRef50_Q5HKU1 Arginine repressor 0.0125086002255 0.00740974031135 -0.00509885991415 +UniRef50_E8QXQ6 Magnesium protoporphyrin chelatase, putative 2.25699950721e-05 0.000313866754202 0.00029129675913 +UniRef50_D3D6E8 5.46359858431e-05 9.98706445071e-06 -4.46489213924e-05 +UniRef50_P12011 Gluconokinase 0.0141270022645 0.00249369216922 -0.0116333100953 +UniRef50_UPI0004111510 hypothetical protein 3.64522810078e-06 9.41683890714e-06 5.77161080636e-06 +UniRef50_G7M433 Transglutaminase domain containing protein 0.00110825846102 0.00134472761166 0.00023646915064 +UniRef50_UPI00042062D8 hypothetical protein 5.58610110711e-06 3.26864189117e-05 2.71003178046e-05 +UniRef50_B0UDK8 Light independent protochlorophyllide reductase iron sulfur ATP binding protein 0.0127444497704 0.00104203776195 -0.0117024120084 +UniRef50_C2ZDZ0 9.33091993623e-05 0.000183616604275 9.03074049127e-05 +UniRef50_Q8CWX8 Signal recognition particle receptor FtsY 0.00453225023052 0.00248380827919 -0.00204844195133 +UniRef50_Q6F9W0 DNA mismatch repair protein MutL 5.81045647247e-05 0.0086032855284 0.00854518096368 +UniRef50_UPI000255B291 ribosomal large subunit pseudouridine synthase A 4.39709536948e-06 4.57035153459e-06 1.7325616511e-07 +UniRef50_E6SIA9 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 0.000370977058843 0.0443345427276 0.0439635656688 +UniRef50_UPI00037DBD2E hypothetical protein 0.00194805508597 0.000456675317307 -0.00149137976866 +UniRef50_UPI0002EC1AE8 hypothetical protein 3.36831035119e-06 0.000110842792958 0.000107474482607 +UniRef50_UPI0003A0F247 30S ribosomal protein S13 4.29788998148e-05 0.000257430416149 0.000214451516334 +UniRef50_G2ZGH2 Gyrase B 4.84374055578e-05 8.62020229093e-06 -3.98172032669e-05 +UniRef50_UPI000465F37A ABC transporter 1.63858586201e-05 4.28736713038e-05 2.64878126837e-05 +UniRef50_Q8DV69 0.0159086476172 0.000363839883189 -0.015544807734 +UniRef50_D2N5G1 LysM domain protein 0.0103363034143 0.00315116686925 -0.00718513654505 +UniRef50_F9NYN4 Conserved domain protein 1.42849738216e-05 2.87807051516e-05 1.449573133e-05 +UniRef50_Q219F8 Peptidyl tRNA hydrolase 7.23210324156e-05 3.35713450462e-05 -3.87496873694e-05 +UniRef50_A9LZL8 Type II restriction endonuclease 0.000117474892792 0.0022743775068 0.00215690261401 +UniRef50_S4AF74 4.46418878164e-05 1.12982766285e-05 -3.33436111879e-05 +UniRef50_F4FDU4 3.04192586597e-05 0.000197821328162 0.000167402069502 +UniRef50_Q932N6 0.000754306752964 0.000220760383266 -0.000533546369698 +UniRef50_D2NSF8 3.07909073336e-05 0.000426455262018 0.000395664354684 +UniRef50_M0TB60 8.67765209201e-05 0.000416504302426 0.000329727781506 +UniRef50_B4RCU4 Ribonuclease 3 1.56741382206e-05 1.17962455336e-05 -3.877892687e-06 +UniRef50_A0A017HMU6 Secreted hemolysin type calcium binding protein bacteriocin, putative 1.19910626612e-06 2.75352645637e-06 1.55442019025e-06 +UniRef50_R1DNP7 5.59780954246e-05 4.25736197387e-05 -1.34044756859e-05 +UniRef50_UPI0003B5DB85 hypothetical protein, partial 6.99021298875e-06 8.66887360839e-06 1.67866061964e-06 +UniRef50_W6IYR1 Auxin binding protein 7.0033383238e-06 3.17342072226e-05 2.47308688988e-05 +UniRef50_Q0TMI0 tRNA lysidine synthase 0.000442540974491 0.000714828076404 0.000272287101913 +UniRef50_B8GQB0 Flagellar hook capping protein 7.84049383311e-06 1.22582275171e-05 4.41773368399e-06 +UniRef50_UPI00039DC1E4 3 oxoadipate enol lactonase 9.83179082138e-06 3.81141198949e-05 2.82823290735e-05 +UniRef50_U5MQD6 TIGR03943 family protein 0.000833451241271 0.00141981968315 0.000586368441879 +UniRef50_P0A913 Peptidoglycan associated lipoprotein 0.00203267977688 0.00110657623782 -0.00092610353906 +UniRef50_B4TF25 Nitric oxide reductase FlRd NAD reductase 0.00421109277935 0.00116223282026 -0.00304885995909 +UniRef50_R9BBW4 HAE1 family hydrophobic amphiphilic exporter 1 0.000234597045345 0.00730659950531 0.00707200245997 +UniRef50_L7WTZ4 0.0134312978767 0.00331779071393 -0.0101135071628 +UniRef50_B4R909 0.000114209820231 4.5341666563e-05 -6.8868153668e-05 +UniRef50_UPI0003B6B13E ABC transporter permease 0.000122793294573 1.87966287625e-05 -0.00010399666581 +UniRef50_V1XPG8 0.000460879377242 0.000179924051069 -0.000280955326173 +UniRef50_B9DXX3 0.000424355854593 0.00372440498799 0.0033000491334 +UniRef50_P0A1Q3 Lactoylglutathione lyase 0.00010092957212 3.19574935491e-05 -6.89720785709e-05 +UniRef50_Q3HKI1 Possible replication protein C 0.0399137244924 0.00949697881737 -0.030416745675 +UniRef50_K9YB57 PUCC protein 2.71051295482e-05 1.07896829135e-05 -1.63154466347e-05 +UniRef50_UPI00036A764A hypothetical protein 3.0617160072e-05 3.25853016508e-05 1.9681415788e-06 +UniRef50_W4KF41 7.81686305015e-05 6.11403854125e-05 -1.7028245089e-05 +UniRef50_Q13BG6 NADH quinone oxidoreductase subunit K 0.000126163005581 2.94459071699e-05 -9.67170984111e-05 +UniRef50_UPI00029CB7E1 hypothetical protein, partial 0.000852323929784 0.00231825727847 0.00146593334869 +UniRef50_UPI00037A794A hypothetical protein 1.14358175463e-05 1.80487944072e-05 6.6129768609e-06 +UniRef50_W4KF45 6.09956871518e-06 1.06557100331e-05 4.55614131792e-06 +UniRef50_UPI00037E1072 hypothetical protein 5.08539077618e-05 9.81698492146e-06 -4.10369228403e-05 +UniRef50_D8NYU1 3.12001958753e-05 2.79900684554e-05 -3.2101274199e-06 +UniRef50_V6L4N0 1.05994254609e-05 1.46478400054e-05 4.0484145445e-06 +UniRef50_O27710 Phosphosulfolactate synthase 0.00333280018207 0.00108925824294 -0.00224354193913 +UniRef50_A1BCD3 0.00240814851133 0.000352968173539 -0.00205518033779 +UniRef50_UPI00047DD048 glucose 6 phosphate dehydrogenase 3.38520627299e-06 5.29182485174e-06 1.90661857875e-06 +UniRef50_G2TC10 ChaC like protein 1.10700891022e-05 1.97799130966e-05 8.7098239944e-06 +UniRef50_G8S496 Replication associated recombination protein A 8.17069239939e-05 0.00643759371496 0.00635588679097 +UniRef50_D6YPZ0 47 kDa protein 8.60285291717e-06 1.00515693978e-05 1.44871648063e-06 +UniRef50_UPI0004784B81 phosphoesterase 1.3258339726e-05 1.48909011993e-05 1.6325614733e-06 +UniRef50_Q1IYN8 0.000536111567746 0.00980643409211 0.00927032252436 +UniRef50_UPI00025577F3 hydrogenase nickel insertion protein HypA 0.000209432980981 4.6966614284e-05 -0.000162466366697 +UniRef50_UPI0003B54717 hydantoinase 3.88075202029e-06 6.94634257532e-06 3.06559055503e-06 +UniRef50_UPI000463C9AE carboxypeptidase 1.13171730167e-05 5.38259837921e-06 -5.93457463749e-06 +UniRef50_O43895 Xaa Pro aminopeptidase 2 4.72134874094e-06 2.81932979345e-05 2.34719491936e-05 +UniRef50_UPI00036806EE hypothetical protein 4.96339050416e-05 0.000199211097749 0.000149577192707 +UniRef50_UPI000262636B DNA gyrase subunit A 2.58771086859e-06 3.40799692556e-06 8.2028605697e-07 +UniRef50_F4FTG4 Galactonate dehydratase 0.000108890189088 0.00151581581718 0.00140692562809 +UniRef50_S5GEI0 Catecholate siderophore receptor CirA 0.00054048556745 0.000108705535652 -0.000431780031798 +UniRef50_A6LR14 Heavy metal translocating P type ATPase 0.000399984267679 0.0012763435474 0.000876359279721 +UniRef50_C4J951 4.39847392415e-05 0.00183861138937 0.00179462665013 +UniRef50_D2Q478 Spermidine synthase like protein 8.58804900762e-06 3.33284292898e-05 2.47403802822e-05 +UniRef50_C6DEY0 RNA polymerase associated protein RapA 0.00150987729449 0.000199485169109 -0.00131039212538 +UniRef50_UPI0004692C05 hydrogenase 0.000138993631686 8.93476370612e-05 -4.96459946248e-05 +UniRef50_Q3JT43 0.000138310262633 3.09381373665e-05 -0.000107372125267 +UniRef50_B9KVR7 Transcriptional regulator, MerR family 0.0226956087143 0.00560804043464 -0.0170875682797 +UniRef50_B2KEK1 Adenylate kinase 9.98002542441e-06 2.25091531795e-05 1.25291277551e-05 +UniRef50_Q46855 0.00279434620188 0.00180938255289 -0.00098496364899 +UniRef50_UPI0003A592DF transcriptional regulator 0.000191478620933 3.37712280436e-05 -0.000157707392889 +UniRef50_P04816 Leucine specific binding protein 0.00456776130769 0.00159741202639 -0.0029703492813 +UniRef50_M3G6K7 Mg transport ATPase protein C 0.00049347560123 0.00412996962068 0.00363649401945 +UniRef50_S6DCW1 0.000183327125707 0.000216796944823 3.3469819116e-05 +UniRef50_B9KL47 Protein tyrosine phosphatase 0.0214966044989 0.00248772224485 -0.0190088822541 +UniRef50_Q7VZ05 Tryptophan tRNA ligase 0.00139914842629 0.000455783882222 -0.000943364544068 +UniRef50_Q5HEB2 Cardiolipin synthase 2 0.0239397309071 0.00816247351671 -0.0157772573904 +UniRef50_X5K4N5 Membrane protein, putative 8.65793552431e-05 0.000130382651297 4.38032960539e-05 +UniRef50_W4TSQ7 0.000251754755085 0.000310320057551 5.8565302466e-05 +UniRef50_W4TSQ5 0.000340756501337 0.00531958090506 0.00497882440372 +UniRef50_Q9I048 tRNA dihydrouridine synthase A 0.000841950817805 0.000245950323951 -0.000596000493854 +UniRef50_E0Q484 0.000242521057489 2.86299041271e-06 -0.000239658067076 +UniRef50_UPI000375D23B hypothetical protein, partial 5.50613882311e-05 0.000212718448872 0.000157657060641 +UniRef50_Q83J60 HTH type transcriptional regulator DctR 0.00109287248752 0.000855990449842 -0.000236882037678 +UniRef50_B4EY85 DnaA regulatory inactivator Hda 0.00442248171812 0.000772455356727 -0.00365002636139 +UniRef50_UPI000471D4BC hypothetical protein, partial 8.57598592947e-06 7.18395561893e-06 -1.39203031054e-06 +UniRef50_M1MLW2 dTDP glucose 4,6 dehydratase 2 0.000242514144524 0.00153846359622 0.0012959494517 +UniRef50_UPI00047D17AA hypothetical protein 1.4157799109e-05 8.12347972273e-06 -6.03431938627e-06 +UniRef50_H8GSQ0 VanW like protein 8.55330790492e-05 0.0171574523692 0.0170719192902 +UniRef50_A5EY11 Ribosomal RNA small subunit methyltransferase H 1.5825019865e-05 9.33228205619e-06 -6.49273780881e-06 +UniRef50_UPI000470B3CF ribosome binding factor A 2.11426364671e-05 6.80882719153e-05 4.69456354482e-05 +UniRef50_A3PR72 Binding protein dependent transport systems inner membrane component 0.00308811386997 0.000800360338922 -0.00228775353105 +UniRef50_Q1INX8 DGPFAETKE domain protein 2.77849700215e-05 2.41196122496e-05 -3.6653577719e-06 +UniRef50_UPI000365E142 hypothetical protein 9.86995092907e-06 1.96945478338e-05 9.82459690473e-06 +UniRef50_UPI00037A3857 helicase 2.71397631932e-06 6.1906767045e-06 3.47670038518e-06 +UniRef50_UPI0003B7A6B2 branched chain amino acid ABC transporter ATP binding protein 9.71799392539e-06 1.28538573967e-05 3.13586347131e-06 +UniRef50_K0C423 MaoC like dehydratase 4.10710811275e-05 2.44621592625e-05 -1.6608921865e-05 +UniRef50_G8LZB4 4.68915684868e-05 4.76521239978e-05 7.60555511e-07 +UniRef50_A0A009XXP0 RecF RecN SMC N terminal domain protein 3.28534367999e-05 0.000492552110271 0.000459698673471 +UniRef50_P26266 Ferric enterobactin transport protein FepE 0.00199100890319 0.00161339547218 -0.00037761343101 +UniRef50_E9AEN0 Proteophosphoglycan ppg1 1.80671612417e-06 2.43313345527e-05 2.25246184285e-05 +UniRef50_B2KCN5 Dihydroorotase 1.8650369405e-05 6.00951168899e-06 -1.2640857716e-05 +UniRef50_UPI00024929D9 putative N acylamino acid racemase 1.47927670904e-05 0.000536841179644 0.000522048412554 +UniRef50_G4U7X4 1.33251904412e-06 1.38176042095e-06 4.924137683e-08 +UniRef50_UPI00039427DC phosphatase 8.28397872105e-06 1.98525445273e-05 1.15685658062e-05 +UniRef50_UPI0003B3863F carboxynorspermidine decarboxylase 3.09783952287e-05 3.88751230482e-05 7.8967278195e-06 +UniRef50_UPI00047C82E1 hypothetical protein 1.44520122436e-05 0.00344715948779 0.00343270747555 +UniRef50_X1KVA0 Marine sediment metagenome DNA, contig 8.86410354113e-06 3.61719251499e-05 2.73078216088e-05 +UniRef50_E3E7X0 Formate dehydrogenase, alpha subunit 0.000391748896025 0.00193325895473 0.0015415100587 +UniRef50_N6V3N6 Sulfate transporter 0.000233868521761 7.22879104881e-05 -0.000161580611273 +UniRef50_R6HNH6 8.60836599321e-05 4.46689868421e-05 -4.141467309e-05 +UniRef50_D3QF31 Phosphohydrolase, Icc family 0.0136169009713 0.00220175929637 -0.0114151416749 +UniRef50_UPI0004163F11 quinone oxidoreductase 6.62639838732e-06 6.93976101315e-05 6.27712117442e-05 +UniRef50_B1ZSZ2 Phosphate transporter 0.000902655575258 0.0748742055766 0.0739715500013 +UniRef50_Q6A8L4 Histidinol phosphate aminotransferase 0.000100662930362 0.0064710586767 0.00637039574634 +UniRef50_G9ZDV2 5.34013212348e-05 5.15260477059e-05 -1.8752735289e-06 +UniRef50_V4I6Z5 Phenylacetate CoA oxygenase subunit PaaA 0.000144815596745 0.00575190871803 0.00560709312128 +UniRef50_UPI00037394E3 hypothetical protein 2.44302591315e-05 7.14735209376e-06 -1.72829070377e-05 +UniRef50_UPI00037AD4AC hypothetical protein 5.84966394976e-06 3.05808327101e-05 2.47311687603e-05 +UniRef50_U5MNP0 0.000236279194446 0.00169861027446 0.00146233108001 +UniRef50_R9SMA4 Cell wall biosynthesis protein Mur ligase family 0.00186229519288 0.000131251868968 -0.00173104332391 +UniRef50_UPI000376DBC0 hypothetical protein 0.000139560472831 2.93584994025e-05 -0.000110201973428 +UniRef50_Q47083 HTH type transcriptional regulator cbl 0.00312781552367 0.00095501936351 -0.00217279616016 +UniRef50_U4TH79 0.00418600848012 0.000476317266442 -0.00370969121368 +UniRef50_F4DVS4 Periplasmic binding protein 0.000150994395537 0.000847619051331 0.000696624655794 +UniRef50_P0ABX0 Flagellar basal body rod protein FlgB 0.000822618361401 0.000427995224921 -0.00039462313648 +UniRef50_A0A059DWP9 2.75809257042e-05 1.79851733549e-05 -9.5957523493e-06 +UniRef50_Z8B9P7 0.0144565389511 0.0028962080146 -0.0115603309365 +UniRef50_UPI00037E3FD0 hypothetical protein 1.70123333366e-05 2.15335157468e-05 4.5211824102e-06 +UniRef50_A4GAA6 ABC transporter, permease component 0.00953114606574 0.0017456209993 -0.00778552506644 +UniRef50_P52642 UDP N acetylglucosamine 2 epimerase 0.00034076456275 0.00612892928251 0.00578816471976 +UniRef50_UPI0004703E7C hypothetical protein, partial 5.75760551305e-06 4.85529950903e-05 4.27953895773e-05 +UniRef50_UPI00029A41E2 hypothetical protein 1.1891837283e-05 1.37626696677e-05 1.8708323847e-06 +UniRef50_UPI000375C1B4 hypothetical protein 1.40226852773e-05 3.81888269298e-05 2.41661416525e-05 +UniRef50_B5E972 NADH quinone oxidoreductase subunit B C D 9.75325627698e-06 3.47281700506e-05 2.49749137736e-05 +UniRef50_I3R6R8 Branched chain amino acids ABC transporter permease,azaleucine resistance protein 5.2676726555e-05 8.01865116547e-05 2.75097850997e-05 +UniRef50_N6UXN6 Putative secreted adhesin 1.07169251094e-05 5.47112903536e-06 -5.24579607404e-06 +UniRef50_Q28MM7 Phosphorylase 0.0106124843879 0.00228406714962 -0.00832841723828 +UniRef50_A3M6U7 CsuD 0.000186701138799 0.00411483172854 0.00392813058974 +UniRef50_Q0FEW4 Cation transport protein ChaC, putative 6.16379579696e-06 2.7587423158e-05 2.1423627361e-05 +UniRef50_UPI0002C30275 PREDICTED 7.11700882617e-06 5.88617774061e-06 -1.23083108556e-06 +UniRef50_F3G839 1.43903178701e-05 1.21358788339e-05 -2.2544390362e-06 +UniRef50_B9J7K1 7.82720989392e-05 4.7223456485e-05 -3.10486424542e-05 +UniRef50_M4R0D2 Glycosyltransferase 0.000191942028225 0.00674051719041 0.00654857516218 +UniRef50_U3TVU1 0.000137248050342 0.00121795579043 0.00108070774009 +UniRef50_X3W353 Enterobactin synthase subunit F 0.00320173908992 0.00101765042506 -0.00218408866486 +UniRef50_U6BEE8 Cytochrome D ubiquinol oxidase subunit I 0.0237706751042 0.00645331091147 -0.0173173641927 +UniRef50_Q15RL2 Electron transport complex subunit D 0.00348986666908 0.000179888348343 -0.00330997832074 +UniRef50_R4ZIA7 Cell surface protein 0.000241904160026 7.6705637713e-05 -0.000165198522313 +UniRef50_A5ULR0 Cobalamin synthase 0.00334042009846 0.000495172963909 -0.00284524713455 +UniRef50_B9DY53 Transcription repair coupling factor 0.000762288352078 0.00127080506178 0.000508516709702 +UniRef50_Q48K36 Potassium transporting ATPase B chain 0.000239370461106 0.000201415116304 -3.7955344802e-05 +UniRef50_Q2NG20 Predicted multimeric flavodoxin 0.00439068691512 0.000370690424931 -0.00401999649019 +UniRef50_D2ZS60 0.00298471826539 0.000368664155221 -0.00261605411017 +UniRef50_A5UM77 0.00189017537927 0.00150589104918 -0.00038428433009 +UniRef50_UPI0003B68375 50S ribosomal protein L22 1.13117758353e-05 3.31207577631e-05 2.18089819278e-05 +UniRef50_Q11H35 0.000334548449671 7.5148268371e-05 -0.0002594001813 +UniRef50_Q1QC36 Urease subunit alpha 2 5.43904531355e-06 1.67095423867e-05 1.12704970732e-05 +UniRef50_J9NYD9 1.26550674652e-05 2.83646142146e-05 1.57095467494e-05 +UniRef50_L0A4U7 Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED 0.000178903312256 0.0407501413074 0.0405712379951 +UniRef50_UPI00035D30E0 hypothetical protein 0.000153109085598 4.88253577022e-05 -0.000104283727896 +UniRef50_Q8YNJ3 Phosphate import ATP binding protein PstB 3 2.3217171075e-05 0.000200226041529 0.000177008870454 +UniRef50_UPI0003B49864 transporter 3.32651286779e-06 0.000401553268179 0.000398226755311 +UniRef50_A9WS29 1.96216499744e-05 9.10210365788e-05 7.13993866044e-05 +UniRef50_UPI000363E420 hypothetical protein 0.000157147688443 0.0002182730407 6.1125352257e-05 +UniRef50_A0RKD1 Possible membrane protein 0.00021049404583 0.000731758892311 0.000521264846481 +UniRef50_Q9HX91 0.00121256810956 0.000883428226811 -0.000329139882749 +UniRef50_D9UD16 Predicted protein 5.59763855716e-05 0.000801297103416 0.000745320717844 +UniRef50_P45428 Putative cryptic C4 dicarboxylate transporter DcuD 0.00239335129304 0.00110588297413 -0.00128746831891 +UniRef50_X6M7B3 9.85296333479e-07 1.9042138687e-06 9.18917535221e-07 +UniRef50_A1TZP8 Type IV pilus biogenesis stability protein PilW 5.09730254437e-06 9.2477889228e-06 4.15048637843e-06 +UniRef50_T1VWL4 Oligopeptide dipeptide ABC transporter ATPase subunit 0.000564404081815 0.00473751438551 0.00417311030369 +UniRef50_Q2YW86 D specific D 2 hydroxyacid dehydrogenase 0.00779483233244 0.000235625030732 -0.00755920730171 +UniRef50_T1Z3D7 0.00633034572464 0.00546534763075 -0.00086499809389 +UniRef50_H2HHM8 0.000109235507514 0.00526814967935 0.00515891417184 +UniRef50_UPI00040D05AB hypothetical protein 8.21528884891e-06 8.8296773994e-06 6.1438855049e-07 +UniRef50_UPI0003A7F193 sulfate 2.95718148604e-06 5.01938378018e-06 2.06220229414e-06 +UniRef50_UPI000465E42E hypothetical protein 1.11607215592e-05 0.000115486902692 0.000104326181133 +UniRef50_K9NK52 Putrescine binding periplasmic protein 0.000761787438696 0.000350939072136 -0.00041084836656 +UniRef50_T3GIH5 AAA domain family protein 0.000333344154562 0.000333680751748 3.36597186e-07 +UniRef50_UPI00040C7D51 hypothetical protein 4.19618720203e-05 7.79637473166e-06 -3.41654972886e-05 +UniRef50_UPI0003634400 hypothetical protein 0.000123344510752 1.27924486504e-05 -0.000110552062102 +UniRef50_Q1Q8K4 Phosphate import ATP binding protein PstB 1.86412917012e-05 0.000237219767078 0.000218578475377 +UniRef50_A6LUQ8 Phosphotransferase system, EIIC 8.3391602835e-05 0.00133180116422 0.00124840956139 +UniRef50_Q01244 Yop proteins translocation protein C 0.000546498721004 0.000117969389561 -0.000428529331443 +UniRef50_X2HA66 Macrolide specific efflux protein MacA 0.000141028389365 0.0059816485191 0.00584062012974 +UniRef50_D7JTM0 Predicted protein 0.000118614241335 0.000305157177599 0.000186542936264 +UniRef50_V9G8C1 Transketolase 3.37823824328e-05 3.04965106184e-05 -3.2858718144e-06 +UniRef50_D1BYT2 Succinyl diaminopimelate desuccinylase 0.000153657797359 0.00473699729004 0.00458333949268 +UniRef50_UPI0003803CC2 hypothetical protein 3.25841139817e-06 0.000663188510564 0.000659930099166 +UniRef50_U7PWZ9 1.31086609446e-05 3.81991450591e-05 2.50904841145e-05 +UniRef50_I6F1W3 7.74994548266e-05 7.58064904667e-05 -1.6929643599e-06 +UniRef50_L1J0A5 1.80092600248e-06 1.54888823019e-06 -2.5203777229e-07 +UniRef50_K8F0R0 Internalin J 4.96092509334e-06 3.08413378543e-05 2.5880412761e-05 +UniRef50_B9E249 0.000782305421019 0.000685955355659 -9.635006536e-05 +UniRef50_D2UPM2 SdrD protein 0.000530444391198 0.000405739173213 -0.000124705217985 +UniRef50_Q9I2W4 Uroporphyrinogen III C methyltransferase 0.000863346591525 3.61568103094e-05 -0.000827189781216 +UniRef50_E4QDT6 0.000176120990128 0.000656002864533 0.000479881874405 +UniRef50_P52086 Alpha ribazole phosphatase 0.00191958373824 0.000754223859081 -0.00116535987916 +UniRef50_UPI00047E8AFF hypothetical protein 5.93958941323e-06 2.37004531963e-05 1.77608637831e-05 +UniRef50_T0NEN1 Seg 5.89943200075e-05 0.000113229994581 5.42356745735e-05 +UniRef50_Q8Y4A9 Release factor glutamine methyltransferase 9.20958647924e-06 0.00212814190296 0.00211893231648 +UniRef50_UPI0004711AD3 type II secretion system protein F 3.43188022232e-06 5.94428875025e-06 2.51240852793e-06 +UniRef50_C6XQ34 Prephenate dehydratase 0.00121129334836 0.0023370329872 0.00112573963884 +UniRef50_P27128 Lipopolysaccharide 1,3 galactosyltransferase 0.0013450564653 0.00044835808033 -0.00089669838497 +UniRef50_W0YR49 Acetoacetyl CoA synthetase 0.000260600540258 9.15237722678e-05 -0.00016907676799 +UniRef50_UPI0004675627 molybdopterin guanine dinucleotide biosynthesis protein A 7.22964941464e-06 2.09672965228e-05 1.37376471082e-05 +UniRef50_UPI00046465E7 hypothetical protein 0.00017279702682 2.20393258775e-05 -0.000150757700943 +UniRef50_S6AM82 0.000534272929636 0.000666127906449 0.000131854976813 +UniRef50_Q54TC2 Alcohol dehydrogenase class 3 0.000525474010647 0.00609316128661 0.00556768727596 +UniRef50_UPI0003B589A1 cell wall hydrolase 2.00265351458e-05 1.22273679964e-05 -7.7991671494e-06 +UniRef50_C1DMM9 Transcriptional regulator, LysR family 0.000548832102549 0.000578583137367 2.9751034818e-05 +UniRef50_D3PTH4 0.000152007780746 0.00047567791441 0.000323670133664 +UniRef50_Q98457 1.24108099618e-05 2.24871120341e-05 1.00763020723e-05 +UniRef50_S9R6B1 Transcriptional regulator, LysR family 3.63046046953e-05 5.93796545671e-05 2.30750498718e-05 +UniRef50_UPI00047D5268 hypothetical protein 2.33026941308e-05 1.81431292769e-05 -5.1595648539e-06 +UniRef50_A7ZXV0 8.8271932537e-05 9.68592979732e-05 8.5873654362e-06 +UniRef50_A2C536 Bifunctional pantoate ligase cytidylate kinase 3.73425144824e-06 1.6094218651e-05 1.23599672028e-05 +UniRef50_Q83RZ7 Anaerobic dimethyl sulfoxide reductase chain B 0.00461856062089 0.000738291762994 -0.0038802688579 +UniRef50_UPI0004785D8D hypothetical protein 1.56296548754e-05 1.80036624782e-05 2.3740076028e-06 +UniRef50_UPI0003827A64 hypothetical protein 3.09298301424e-06 5.978815945e-06 2.88583293076e-06 +UniRef50_Q9L646 Anaerobic ribonucleoside triphosphate reductase 0.00326720389651 0.00231418762758 -0.00095301626893 +UniRef50_V7ZGN6 Phosphatidylserine synthase 0.00030606972069 0.000475040276462 0.000168970555772 +UniRef50_UPI000315C43C hypothetical protein 0.000121239080211 4.45210210708e-05 -7.67180591402e-05 +UniRef50_S9SA83 2.20698226112e-05 0.00011843926272 9.63694401088e-05 +UniRef50_UPI000467D8F5 hypothetical protein, partial 7.08474948132e-06 1.75652842789e-05 1.04805347976e-05 +UniRef50_UPI00037A985E hypothetical protein 2.51799753303e-05 1.58438342998e-05 -9.3361410305e-06 +UniRef50_UPI00035D529A hypothetical protein 3.96247719595e-05 1.44225781518e-05 -2.52021938077e-05 +UniRef50_S9SA88 0.000154011607261 0.00037577033466 0.000221758727399 +UniRef50_UPI0004661BBA hypothetical protein, partial 3.15173760049e-05 1.28135299397e-05 -1.87038460652e-05 +UniRef50_Q38854 1 deoxy D xylulose 5 phosphate synthase, chloroplastic 1.94815225927e-05 8.92550025601e-05 6.97734799674e-05 +UniRef50_Q6GI66 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 0.0253182517682 0.00533237024999 -0.0199858815182 +UniRef50_G2IIB3 UPF0301 protein SLG_23610 1.2507684244e-05 1.8413571521e-05 5.905887277e-06 +UniRef50_P23905 D galactose binding periplasmic protein 0.00346274129006 0.000405546712688 -0.00305719457737 +UniRef50_Q022D1 1.74468395316e-05 1.3679974322e-05 -3.7668652096e-06 +UniRef50_Q1J9N5 Para aminobenzoate synthetase component I 4 amino 4 deoxychorismate lyase 0.000134351964319 0.00501592486069 0.00488157289637 +UniRef50_E6TY02 Binding protein dependent transport systems inner membrane component 0.0118491495563 0.0025400799286 -0.0093090696277 +UniRef50_V9UQ05 3.21896031218e-05 1.12221994542e-05 -2.09674036676e-05 +UniRef50_C8NMF6 0.000247477620977 0.000455318714892 0.000207841093915 +UniRef50_A3PKK7 0.000614146619484 0.000514757296004 -9.938932348e-05 +UniRef50_UPI00016C558B DNA gyrase subunit A 3.408732803e-05 0.000102573196371 6.8485868341e-05 +UniRef50_Q5YWD4 NADH quinone oxidoreductase subunits H I 2.23639858044e-06 3.20873879936e-05 2.98509894132e-05 +UniRef50_UPI00036E3130 hypothetical protein 5.64032516502e-06 1.77651688001e-05 1.21248436351e-05 +UniRef50_UPI0002558195 ABC transporter ATP binding protein, partial 0.000108526225885 1.37063456903e-05 -9.48198801947e-05 +UniRef50_H9JRN0 9.82216877676e-05 0.000320355447479 0.000222133759711 +UniRef50_P52276 Asparagine tRNA ligase 0.00229198608535 0.00126289788874 -0.00102908819661 +UniRef50_UPI00037E9004 hypothetical protein 4.36198360535e-05 0.000708053883612 0.000664434047558 +UniRef50_X6F5A2 ABC transporter permease 4.58466101908e-06 7.71129394756e-06 3.12663292848e-06 +UniRef50_A9M1A6 Ribosomal RNA small subunit methyltransferase J 0.000452179490217 0.0016001640409 0.00114798455068 +UniRef50_W5HYZ3 8.29032186386e-05 0.000131935981468 4.90327628294e-05 +UniRef50_J9YT00 0.000204046480461 0.000173375756472 -3.0670723989e-05 +UniRef50_P77790 D alanyl D alanine dipeptidase 0.00655190302961 0.000311406016025 -0.00624049701358 +UniRef50_E3GEX1 Glyoxalase 0.000242496352579 0.000381053813154 0.000138557460575 +UniRef50_UPI0003723E28 hypothetical protein 1.41675297315e-05 2.03189561906e-05 6.1514264591e-06 +UniRef50_W6RE07 0.000371618233475 0.000117267073799 -0.000254351159676 +UniRef50_UPI0001913E60 hypothetical protein, partial 0.000534102705541 0.00058528226382 5.1179558279e-05 +UniRef50_Q1Q8J3 Trigger factor 8.49555863898e-05 0.00805462955226 0.00796967396587 +UniRef50_P19066 Nitrogenase molybdenum iron protein alpha chain 0.0144885354579 0.00154395360669 -0.0129445818512 +UniRef50_UPI0002F6860E hypothetical protein 1.93890810907e-05 0.00116786842418 0.00114847934309 +UniRef50_A6TT61 Biotin synthase 0.000139809625497 0.000846201930427 0.00070639230493 +UniRef50_C1CRY7 S1 RNA binding domain protein 0.00425992736669 0.00559193946457 0.00133201209788 +UniRef50_X1MW22 Marine sediment metagenome DNA, contig 0.000298357384804 7.68121571965e-05 -0.000221545227607 +UniRef50_UPI000470373F amidophosphoribosyltransferase, partial 1.8198806015e-05 0.000106780516308 8.8581710293e-05 +UniRef50_J8WK23 Type III restriction modification system EcoPI enzyme, subunit res 7.84118886106e-05 0.00314278181702 0.00306436992841 +UniRef50_E3F2Y8 Arsenate reductase like protein 0.000124805804095 7.33712978296e-05 -5.14345062654e-05 +UniRef50_UPI0003B7001D hypothetical protein 5.73180080942e-05 3.87182781961e-05 -1.85997298981e-05 +UniRef50_B9KXJ4 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 7.66775953251e-06 1.97727214673e-05 1.21049619348e-05 +UniRef50_UPI000379C639 hypothetical protein 1.66630372767e-05 2.95135632112e-05 1.28505259345e-05 +UniRef50_Q6FDX8 Maf like protein ACIAD0829 0.000219044094112 0.0104349213209 0.0102158772268 +UniRef50_B1IMR8 Transposase C for 0.000304424184557 0.00192741751511 0.00162299333055 +UniRef50_UPI0003716807 hypothetical protein 1.20722191403e-05 4.89677230817e-05 3.68955039414e-05 +UniRef50_A1B4U8 Rhs element Vgr protein 0.00305110867345 0.000571627003944 -0.00247948166951 +UniRef50_F0RMF0 Aminomethyltransferase 0.000211064491351 0.046324697242 0.0461136327506 +UniRef50_G5JYJ7 Phosphatidate cytidylyltransferase like protein 0.00448395932219 0.000333691192315 -0.00415026812988 +UniRef50_Q9I4X6 Chaperone CupC2 0.0002066529136 0.00053050905124 0.00032385613764 +UniRef50_UPI0004781EE1 NADH dehydrogenase 3.03663793051e-06 5.73246184821e-05 5.42879805516e-05 +UniRef50_UPI00047C938B cold shock protein 3.37886871772e-05 2.09617821213e-05 -1.28269050559e-05 +UniRef50_UPI0003B3943C xanthine CO dehydrogenase maturation protein 3.67234948385e-06 1.56522615145e-05 1.19799120306e-05 +UniRef50_Q13LM2 ABC putrescine transporter, inner membrane subunit PotI 0.000143167884525 0.00310453657663 0.0029613686921 +UniRef50_UPI000289739C amino acid carrier protein, partial 1.64955637756e-05 0.00092876876301 0.000912273199234 +UniRef50_Q4FMW6 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.88313139591e-05 9.30230463347e-05 6.41917323756e-05 +UniRef50_I4F4V3 6.73437744018e-05 1.8383107134e-05 -4.89606672678e-05 +UniRef50_A0A059ABD6 4.27008770127e-05 3.55776615116e-05 -7.1232155011e-06 +UniRef50_UPI00047AED65 hypothetical protein 1.44619946454e-05 9.36617646108e-05 7.91997699654e-05 +UniRef50_F3ZC19 Putative 3 oxoacyl ACP synthase II 1.75296749475e-06 0.000247177834149 0.000245424866654 +UniRef50_H3F275 0.000198328890814 0.000630033363477 0.000431704472663 +UniRef50_D9SKB5 0.000374986081636 0.000500932806491 0.000125946724855 +UniRef50_A0A023RVI8 Magnesium transporter 0.000301185629405 0.00918823414902 0.00888704851962 +UniRef50_F5M3S4 0.00856842380994 0.000114250158396 -0.00845417365154 +UniRef50_B5F621 Mannonate dehydratase 0.00209359949345 0.00050543648718 -0.00158816300627 +UniRef50_M9VAU8 0.000246722868534 0.00563197060303 0.0053852477345 +UniRef50_UPI000408DFD9 hypothetical protein 3.44769909732e-06 0.000301681764831 0.000298234065734 +UniRef50_P0A130 0.00133204368662 0.000706947747623 -0.000625095938997 +UniRef50_Q3IZJ1 0.00391797543566 0.000214256376199 -0.00370371905946 +UniRef50_B8EFC6 Lipoprotein signal peptidase 1.09586699489e-05 3.61799090311e-05 2.52212390822e-05 +UniRef50_Q8CPS1 Glucose 6 phosphate 1 dehydrogenase 0.00766633030792 0.00100442060216 -0.00666190970576 +UniRef50_UPI0004659DA3 glutamyl tRNA synthetase 7.02323465901e-06 4.23636132906e-06 -2.78687332995e-06 +UniRef50_A6QDY9 0.0114495888984 0.00192582947912 -0.00952375941928 +UniRef50_Q5HLX2 Molybdenum ABC transporter, ATP binding protein ModC 0.0304860752542 0.00623789802915 -0.024248177225 +UniRef50_F4T4M6 0.000405623910255 1.18624748408e-05 -0.000393761435414 +UniRef50_M4YZ38 Mutator protein 0.00254381906842 0.00197047055441 -0.00057334851401 +UniRef50_UPI000473A889 hypothetical protein, partial 2.19733420959e-05 0.000227223392726 0.00020525005063 +UniRef50_M9VKV2 Efflux ABC transporter permease 0.000264238813255 0.0066006347032 0.00633639588995 +UniRef50_UPI000288B881 ABC transporter ATP binding protein 2.73946790058e-05 4.0037731358e-05 1.26430523522e-05 +UniRef50_M7A534 Tex like N terminal domain protein 6.50154837314e-06 0.000321953948561 0.000315452400188 +UniRef50_UPI0002376558 ribose galactose ABC transporterpermease, partial 0.000481395714206 0.00047353849886 -7.857215346e-06 +UniRef50_Q02N09 0.000227401198102 0.0003565191612 0.000129117963098 +UniRef50_Q0K9Q9 Cation multidrug efflux pump 0.000480478171689 0.000427814023884 -5.2664147805e-05 +UniRef50_F0SEF6 Transcriptional regulator, BadM Rrf2 family 3.07672933767e-05 4.82817918505e-05 1.75144984738e-05 +UniRef50_UPI0004788904 glucose 6 phosphate dehydrogenase 4.00982226365e-06 6.27362188813e-06 2.26379962448e-06 +UniRef50_UPI0004434C05 PREDICTED 2.89876910028e-06 7.70846661495e-06 4.80969751467e-06 +UniRef50_UPI0002DB754C hypothetical protein 1.48669932552e-05 2.31199342946e-05 8.2529410394e-06 +UniRef50_M4MUD1 3.93715181761e-05 0.000366739167718 0.000327367649542 +UniRef50_Q4L9F7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0113744248511 0.00363708004323 -0.00773734480787 +UniRef50_G8V7N9 0.00022356095159 0.00613739302249 0.0059138320709 +UniRef50_Q023V7 Chorismate synthase 1.31826381159e-05 0.000125872165644 0.000112689527528 +UniRef50_A7BEJ6 LPXTG motif cell wall anchor domain protein 0.000244788292356 0.00229374617795 0.00204895788559 +UniRef50_UPI0003B44F1F transcriptional regulator 0.000292909441915 6.97460678316e-05 -0.000223163374083 +UniRef50_Q9HTE2 0.000748118971379 0.000353672700827 -0.000394446270552 +UniRef50_Q989G8 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 0.0152931653212 0.00111396529743 -0.0141792000238 +UniRef50_UPI0004715D8D alkane 1 monooxygenase 4.88503086336e-06 1.57246154303e-05 1.08395845669e-05 +UniRef50_UPI000289EDA6 GAF sensor hybrid histidine kinase 5.36278806284e-06 0.000247100604107 0.000241737816044 +UniRef50_Q6FCV5 Lipoprotein 0.000781278586898 0.0115673418346 0.0107860632477 +UniRef50_UPI0003F7499C 3 oxoacyl ACP reductase 8.65916829654e-06 4.06237063481e-05 3.19645380516e-05 +UniRef50_UPI0003B3ACCD ABC transporter permease 0.000148837292117 9.29802496461e-05 -5.58570424709e-05 +UniRef50_P69799 PTS system mannose specific EIIAB component 0.00453439695357 0.000273864023365 -0.00426053293021 +UniRef50_I7DNJ2 Pyruvate carboxylase 0.00631582210675 0.00211157548887 -0.00420424661788 +UniRef50_Q8FHG0 HTH type transcriptional regulator YdeO 0.00259678317979 0.00023815863322 -0.00235862454657 +UniRef50_Q8FBT8 Phosphate specific transport system accessory protein PhoU 0.00336421687162 0.0017583751909 -0.00160584168072 +UniRef50_Q8E4M4 0.0074888439944 0.00157853883591 -0.00591030515849 +UniRef50_UPI0003B6CE98 gas vesicle protein 0.000327849446176 0.000198514041641 -0.000129335404535 +UniRef50_Q9RVY3 0.000817831775596 0.0437856768564 0.0429678450808 +UniRef50_P27238 0.000667859826427 0.000700355822605 3.2495996178e-05 +UniRef50_F0XVM8 Expressed protein 0.000183035479424 1.61661083112e-05 -0.000166869371113 +UniRef50_UPI00046666B3 maltooligosyl trehalose synthase 3.00394124171e-06 1.99795068666e-06 -1.00599055505e-06 +UniRef50_P11959 Dihydrolipoyl dehydrogenase 0.0120707170418 0.00357307212383 -0.00849764491797 +UniRef50_Q9ZH99 Isocitrate dehydrogenase [NADP] 0.0177947085274 0.0505071278369 0.0327124193095 +UniRef50_D4HEQ0 Phosphofructokinase 0.000321442448304 0.00524117010157 0.00491972765327 +UniRef50_N6YIN7 2.92471219367e-05 1.40525406206e-05 -1.51945813161e-05 +UniRef50_D6M4Q7 7.6348343069e-05 0.000576013143876 0.000499664800807 +UniRef50_E1V3L9 0.000248578436584 0.000174239613579 -7.4338823005e-05 +UniRef50_C6STB9 0.00623048199751 0.00393991603926 -0.00229056595825 +UniRef50_UPI000474260B DNA gyrase subunit B 2.10075203363e-05 2.83705726897e-05 7.3630523534e-06 +UniRef50_UPI00036EEE9D hypothetical protein 1.2125159659e-05 1.48645824741e-05 2.7394228151e-06 +UniRef50_G7LZP2 SMC domain protein 0.000100976296509 0.000837118377555 0.000736142081046 +UniRef50_M1WSJ3 Protein CreA 1.25914867791e-05 1.44075415584e-05 1.8160547793e-06 +UniRef50_A6LR21 Binding protein dependent transport systems inner membrane component 0.000149203948168 0.00149618833866 0.00134698439049 +UniRef50_Q9WYT7 Probable transcriptional regulatory protein TM_0466 0.0126217631373 0.00119873009354 -0.0114230330438 +UniRef50_J9P642 1.22827108352e-05 1.58829650154e-05 3.6002541802e-06 +UniRef50_O65396 Aminomethyltransferase, mitochondrial 1.61649018132e-05 6.08946753519e-06 -1.0075434278e-05 +UniRef50_I6U214 Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system 0.00528532609915 0.00209060148228 -0.00319472461687 +UniRef50_U6A7W2 Extracellular Matrix protein PelB 6.35676657784e-06 7.88961355707e-06 1.53284697923e-06 +UniRef50_UPI0003652A76 hypothetical protein, partial 3.47208997701e-05 2.43194607304e-05 -1.04014390397e-05 +UniRef50_UPI0001FFEBC1 alpha dehydro beta deoxy D glucarate aldolase 5.66794851686e-05 0.000387442773627 0.000330763288458 +UniRef50_UPI00047E6581 hypothetical protein 2.78169934413e-06 4.07028030531e-06 1.28858096118e-06 +UniRef50_A7MK41 Ribosomal RNA large subunit methyltransferase H 0.00284209371122 0.00156950570598 -0.00127258800524 +UniRef50_UPI00003793A9 hypothetical protein 0.0158119949092 0.00289894976593 -0.0129130451433 +UniRef50_D9ST52 0.000567908745949 0.000921853242513 0.000353944496564 +UniRef50_R0XB61 0.00868509441421 0.00136832650265 -0.00731676791156 +UniRef50_Q4KEY4 Chitinase 0.000242373475001 0.000790942824762 0.000548569349761 +UniRef50_UPI00035CFB31 hypothetical protein 3.22622799594e-06 1.14221783469e-05 8.19595035096e-06 +UniRef50_A1BBC0 Dihydrodipicolinate synthetase 0.0015038378906 0.000618743774582 -0.000885094116018 +UniRef50_UPI0003606737 hypothetical protein, partial 7.84895808442e-06 7.27858325265e-05 6.49368744421e-05 +UniRef50_P77555 Ureidoglycolate dehydrogenase ) 0.00202580429175 0.00139285310958 -0.00063295118217 +UniRef50_B0KQI9 Mammalian cell entry related domain protein 0.00162148323626 6.08574197497e-05 -0.00156062581651 +UniRef50_Q5N7D3 0.00010612648894 2.33360722439e-05 -8.27904166961e-05 +UniRef50_Q6A5B4 0.000269632849186 0.00188150082771 0.00161186797852 +UniRef50_UPI0004729581 aminotransferase 6.15799168942e-06 7.13631583799e-05 6.52051666905e-05 +UniRef50_Q1WSM8 1,4 alpha glucan branching enzyme GlgB 0.000405253999462 0.00222668756542 0.00182143356596 +UniRef50_UPI0002196E5D biotin biosynthesis protein BioY 1.32949176993e-05 4.57623178041e-05 3.24674001048e-05 +UniRef50_O27236 Methyl coenzyme M reductase I subunit beta 0.00486698395396 0.00243579822391 -0.00243118573005 +UniRef50_A5VZ70 Permease YjgP YjgQ family protein 0.00123493442736 0.000960869232393 -0.000274065194967 +UniRef50_K2AI23 0.000106211860257 3.45863517985e-05 -7.16255084585e-05 +UniRef50_UPI0004758DC8 hypothetical protein 1.25772857788e-05 7.41964046299e-06 -5.15764531581e-06 +UniRef50_C8XBK0 Transcriptional regulator, Fis family 3.86754475757e-05 0.000288314795161 0.000249639347585 +UniRef50_X1DSN1 Marine sediment metagenome DNA, contig 2.65336766156e-05 8.48440293581e-05 5.83103527425e-05 +UniRef50_A6LQD7 2 alkenal reductase 9.35142829476e-05 0.00165442969298 0.00156091541003 +UniRef50_P75828 0.00439320652914 0.00158271498759 -0.00281049154155 +UniRef50_Q96397 LRG5 1.59805106584e-05 1.12312682522e-05 -4.7492424062e-06 +UniRef50_Q979N7 Peroxiredoxin 8.97950839155e-06 0.000574016101235 0.000565036592843 +UniRef50_UPI0002F0BE06 hypothetical protein 2.05065009442e-05 9.39769623437e-05 7.34704613995e-05 +UniRef50_UPI00045492E4 PREDICTED 3.81407449199e-06 2.91352151312e-05 2.53211406392e-05 +UniRef50_UPI00042548B2 hypothetical protein 4.2928636857e-05 6.06703456241e-05 1.77417087671e-05 +UniRef50_B8CXX9 Predicted nucleotide kinase 0.000234463347108 0.000355803259269 0.000121339912161 +UniRef50_F0C0C2 TRAP type C4 dicarboxylate transport system, large permease component 0.00048581506978 0.000191399145994 -0.000294415923786 +UniRef50_A5UMP3 Probable cobalamin biosynthesis protein CobD 0.00210044954735 0.000209692335056 -0.00189075721229 +UniRef50_A0A015CJF0 DnaJ domain protein 3.43760850162e-05 0.000109628869531 7.52527845148e-05 +UniRef50_A6LQC6 Polysaccharide deacetylase 0.000146123608583 0.00384767221542 0.00370154860684 +UniRef50_U2W2Q1 TIGR01906 family protein 3.53827307983e-05 2.582116448e-05 -9.5615663183e-06 +UniRef50_U5MRU9 0.000210886027289 0.00110803352691 0.000897147499621 +UniRef50_UPI0003B6A7C9 flagellar biosynthesis protein FlhA, partial 1.57274318512e-06 1.46080846596e-05 1.30353414745e-05 +UniRef50_B4WWC7 9.46072664305e-06 0.00112480450166 0.00111534377502 +UniRef50_I8QJJ6 0.000158348065441 0.000172637998293 1.4289932852e-05 +UniRef50_UPI0001D61AB0 1.85766623704e-05 6.3396049898e-06 -1.22370573806e-05 +UniRef50_B9KKZ2 0.000971793574354 0.000760472202226 -0.000211321372128 +UniRef50_P39165 0.00337734796223 0.00163202158092 -0.00174532638131 +UniRef50_Q6GJA0 Glucosamine 6 phosphate deaminase 0.0202986336909 0.0070823497383 -0.0132162839526 +UniRef50_C1EN33 CCA adding enzyme 9.76621801715e-06 0.00032583937137 0.000316073153353 +UniRef50_P37621 UPF0226 protein YhhS 0.00262132005974 0.000467241607633 -0.00215407845211 +UniRef50_D2JDV7 Replication initiator protein 0.00157057708253 0.000130508168705 -0.00144006891383 +UniRef50_M8L412 Bacterial regulatory helix turn helix , lysR family protein 0.000194580406623 0.000860145743281 0.000665565336658 +UniRef50_UPI00037BFAD6 hypothetical protein 1.22954391191e-05 9.90281165785e-06 -2.39262746125e-06 +UniRef50_Q088F4 Drug resistance transporter, EmrB QacA subfamily 0.00124781442938 0.00074042245952 -0.00050739196986 +UniRef50_UPI0003B6C95A isoleucyl tRNA synthase 1.42603758153e-06 2.86211815939e-06 1.43608057786e-06 +UniRef50_P0AC99 Succinate acetate proton symporter SatP 0.00149840670868 0.00510153832381 0.00360313161513 +UniRef50_UPI00036D3FBE hypothetical protein 2.6321064597e-06 0.000260428755943 0.000257796649483 +UniRef50_P0ACP6 HTH type transcriptional regulator GntR 0.00201005529766 0.000239122838212 -0.00177093245945 +UniRef50_Q2NGT2 UvrABC system protein C 0.0024010658379 0.00118837878991 -0.00121268704799 +UniRef50_UPI00029AE452 hypothetical protein 2.88057995679e-06 1.89391482973e-05 1.60585683405e-05 +UniRef50_Q9JUD9 Sulfite reductase [NADPH] hemoprotein beta component 0.00451982864619 0.003800083113 -0.00071974553319 +UniRef50_B9E1W5 Arginine tRNA ligase 0.000598467216048 0.000827577271651 0.000229110055603 +UniRef50_UPI000426EB18 hypothetical protein 0.000133733353107 1.0266025052e-05 -0.000123467328055 +UniRef50_Q9X1B8 Isoprenyl transferase 9.95319935242e-06 1.50295297829e-05 5.07633043048e-06 +UniRef50_G7M3S8 Dihydropyrimidinase 0.000134018694272 0.00060098254429 0.000466963850018 +UniRef50_H0YAA0 0.000318149953669 2.16834004861e-05 -0.000296466553183 +UniRef50_X5ENC8 Fructose bisphosphate aldolase 0.000129128616484 0.00521952377765 0.00509039516117 +UniRef50_A0A023LEN6 0.000333179824425 0.00114115354466 0.000807973720235 +UniRef50_UPI000368781F ferredoxin 2.31249364166e-05 8.78298635762e-05 6.47049271596e-05 +UniRef50_A6LQ12 Male sterility C terminal domain 0.000334566672732 0.00213499511305 0.00180042844032 +UniRef50_UPI00046FDE0E hypothetical protein 2.6406486128e-06 7.12157110488e-06 4.48092249208e-06 +UniRef50_P14294 DNA topoisomerase 3 0.00256902142559 0.00130756232685 -0.00126145909874 +UniRef50_UPI000379CA00 hypothetical protein 0.000121181810849 9.77046815494e-05 -2.34771292996e-05 +UniRef50_A6QIC9 Aspartyl glutamyl tRNA amidotransferase subunit C 0.00643061121219 0.000656259344878 -0.00577435186731 +UniRef50_L7WTC7 0.0141131368465 0.00207341700487 -0.0120397198416 +UniRef50_UPI00037FDD54 hypothetical protein 0.000196252436814 0.000120833246362 -7.5419190452e-05 +UniRef50_P37648 Protein YhjJ 0.00370946003206 0.00065039344471 -0.00305906658735 +UniRef50_D4MIN1 Phage portal protein, HK97 family 1.13082847392e-05 2.33988867451e-05 1.20906020059e-05 +UniRef50_A7MLE5 Glucans biosynthesis protein D 0.00312058113402 0.000555438491655 -0.00256514264237 +UniRef50_N6VC63 1.83304830633e-05 8.94310258223e-05 7.1100542759e-05 +UniRef50_UPI0002D4E509 diacylglyceryl transferase 3.7695062803e-06 1.22668116473e-05 8.497305367e-06 +UniRef50_Q1QSC0 Ribosomal RNA small subunit methyltransferase G 4.23181801808e-05 4.27671122008e-05 4.4893202e-07 +UniRef50_P75791 0.0031443388624 0.00101190376258 -0.00213243509982 +UniRef50_UPI0004785E92 hypothetical protein 4.84213461261e-06 7.51860702676e-06 2.67647241415e-06 +UniRef50_Q3J6L2 0.0133665133121 0.00340248274179 -0.00996403057031 +UniRef50_Q5HQ32 Bacteriocin production protein, putative 0.00664213673359 0.00253352190475 -0.00410861482884 +UniRef50_B7RN53 0.000215345364451 3.05768799197e-05 -0.000184768484531 +UniRef50_B2S1L1 Holliday junction ATP dependent DNA helicase RuvB 1.18510462944e-05 9.82946776368e-06 -2.02157853072e-06 +UniRef50_O32090 Nicotinate phosphoribosyltransferase 0.0178360404444 0.0075607708909 -0.0102752695535 +UniRef50_M5VMV2 1.00634205237e-05 1.90530917592e-05 8.9896712355e-06 +UniRef50_A5W827 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.000177779900556 1.05942893619e-05 -0.000167185611194 +UniRef50_F0XWS4 Expressed protein 0.000104095888582 7.5512280715e-05 -2.8583607867e-05 +UniRef50_UPI0002ECD2DE hypothetical protein 4.61217208092e-06 0.000101438606145 9.68264340641e-05 +UniRef50_Q5FP95 Siroheme synthase 1.07557063363e-05 1.14006352649e-05 6.449289286e-07 +UniRef50_Q0SPB0 Triosephosphate isomerase 7.01049886686e-06 1.05086785847e-05 3.49817971784e-06 +UniRef50_UPI0004651951 chemotaxis protein CheY 0.000149129767041 0.000144602834871 -4.52693217e-06 +UniRef50_P74892 Sucrose operon repressor 0.0240869588049 0.00440291493836 -0.0196840438665 +UniRef50_G8V9H7 Amino acid permease 0.000100752488128 0.0059431305216 0.00584237803347 +UniRef50_Q7VN08 Cytochrome c type biogenesis protein CcmE 0.00179808786101 0.000441870381833 -0.00135621747918 +UniRef50_UPI00035F3E28 hypothetical protein 1.33631278623e-05 0.000106559701747 9.31965738847e-05 +UniRef50_C6SQA7 0.00395246756188 0.000243059016624 -0.00370940854526 +UniRef50_Q12V31 NH dependent NAD(+) synthetase 2.9797804152e-05 7.65573468689e-06 -2.21420694651e-05 +UniRef50_UPI0004752D4B hypothetical protein 2.58875730278e-05 5.69140067745e-05 3.10264337467e-05 +UniRef50_Q6GI89 Tryptophan tRNA ligase 0.0109333146344 0.00113014502294 -0.00980316961146 +UniRef50_UPI000368C1C4 hypothetical protein 1.55716083415e-05 9.1018956368e-06 -6.4697127047e-06 +UniRef50_H5YKA6 ABC type metal ion transport system, periplasmic component surface antigen 4.08522627183e-05 1.81465921016e-05 -2.27056706167e-05 +UniRef50_F7CCI5 3.116824508e-05 6.5003732542e-06 -2.46678718258e-05 +UniRef50_O02604 Bifunctional dihydrofolate reductase thymidylate synthase 7.93608516497e-06 3.96615543874e-06 -3.96992972623e-06 +UniRef50_F0QJF6 0.000471857486069 0.00277689329651 0.00230503581044 +UniRef50_UPI0003725CB2 hypothetical protein 1.04217873342e-05 1.55481626594e-05 5.1263753252e-06 +UniRef50_B9E8W4 0.0256654013309 0.00422908758093 -0.02143631375 +UniRef50_UPI000374716A hypothetical protein 2.50054354727e-05 4.18729287735e-05 1.68674933008e-05 +UniRef50_UPI000364771D hypothetical protein 6.98819719093e-06 1.06245334663e-05 3.63633627537e-06 +UniRef50_K2JZV8 0.000190693909314 0.000116707012549 -7.3986896765e-05 +UniRef50_UPI0003F9070E hypothetical protein 3.62920662566e-05 2.48770715314e-05 -1.14149947252e-05 +UniRef50_C0Q1R0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 0.00233425917312 0.000340914024259 -0.00199334514886 +UniRef50_F0RPF4 Protoporphyrinogen oxidase 0.000608234299602 0.0317714930706 0.031163258771 +UniRef50_Q8K9C8 GTP binding protein TypA BipA homolog 0.000210644617408 0.00900850071806 0.00879785610065 +UniRef50_F0GD65 Putative binding protein dependent transport system protein 7.15512481104e-05 0.000269931663895 0.000198380415785 +UniRef50_R6FYV1 0.00122986344501 0.00407297720698 0.00284311376197 +UniRef50_S5YQ77 YGGT family protein 0.0137530770647 0.000673726323636 -0.0130793507411 +UniRef50_UPI000403B702 helicase UvrD 5.20635737455e-06 2.57846564603e-05 2.05782990858e-05 +UniRef50_UPI00036F2F3A hypothetical protein, partial 3.63651196026e-05 5.60019036418e-05 1.96367840392e-05 +UniRef50_UPI0001BF7409 hypothetical protein SMAC_09879, partial 3.3998007537e-05 4.12073585897e-05 7.2093510527e-06 +UniRef50_F4VSV6 Putative ribosomal protein 0.000781005494173 0.00122200015942 0.000440994665247 +UniRef50_G7ZRG1 AraC family transcriptional regulator, putative 0.011698448521 0.00189312447431 -0.00980532404669 +UniRef50_UPI0003B76C42 hypothetical protein, partial 1.94481730646e-05 2.87641334546e-05 9.31596039e-06 +UniRef50_UPI000299D763 L serine dehydratase, beta subunit 1.08169863321e-05 0.000258667918695 0.000247850932363 +UniRef50_Q031Z8 UPF0397 protein LACR_0367 0.0212358444449 0.00994222922908 -0.0112936152158 +UniRef50_P57178 Flagellum specific ATP synthase 0.000382467245661 0.000343079672703 -3.9387572958e-05 +UniRef50_U3SZ43 Acyl CoA thioesterase 0.0002881572434 0.0073306351108 0.0070424778674 +UniRef50_UPI0004666EB7 sulfate ABC transporter ATP binding protein 0.000122388281795 0.000170641703146 4.8253421351e-05 +UniRef50_D4HA77 0.000234463347108 0.0147060945156 0.0144716311685 +UniRef50_E6IF75 0.00207177487215 0.00108042697022 -0.00099134790193 +UniRef50_Q74D60 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 5.96663777539e-06 1.51969689682e-05 9.23033119281e-06 +UniRef50_UPI0000557724 COG1620 1.75235532535e-05 2.6521977848e-05 8.9984245945e-06 +UniRef50_O25515 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.000144630647073 0.00100819142047 0.000863560773397 +UniRef50_UPI0001DCFDB5 200 kDa antigen p200, putative 0.000675759143863 0.00105541305319 0.000379653909327 +UniRef50_P69832 Galactitol permease IIC component 0.0022981789217 0.000655256825911 -0.00164292209579 +UniRef50_J5ICW8 Putative lysophospholipase 2.71684416606e-05 2.11684601435e-05 -5.9999815171e-06 +UniRef50_I6TY61 ABC transporter ATP binding protein 0.00450230988964 0.000620774206503 -0.00388153568314 +UniRef50_UPI000475C521 deaminase reductase, partial 4.53696528916e-05 0.000442474356264 0.000397104703372 +UniRef50_A5UM23 Pre mRNA splicing ribonucleoprotein PRP31 0.00220931194104 0.000237838957205 -0.00197147298384 +UniRef50_J2X7R8 0.000646116202093 0.000186223068576 -0.000459893133517 +UniRef50_UPI000440E4B2 PREDICTED 5.81413082748e-06 0.000148482965794 0.000142668834967 +UniRef50_G7M114 Stage III sporulation protein AF 0.000189374241902 0.00148201825466 0.00129264401276 +UniRef50_UPI00034B4D85 phosphoenolpyruvate synthase 1.99062207731e-06 0.000561983870749 0.000559993248672 +UniRef50_X7UI62 PPE family protein 1.99959931282e-05 5.40012751533e-05 3.40052820251e-05 +UniRef50_F8KL74 0.00977436275283 0.00270292832158 -0.00707143443125 +UniRef50_Q8TZ14 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.49597359468e-05 3.38465102549e-05 8.8867743081e-06 +UniRef50_Q4KFA5 Glycerophosphodiester phosphodiesterase family protein 0.00109767267228 0.000614283862328 -0.000483388809952 +UniRef50_UPI00047B798B glycine cleavage system potein H 2.11491785069e-05 3.30937755676e-05 1.19445970607e-05 +UniRef50_E1SRN0 Type IV pilus biogenesis stability protein PilW 6.48411070611e-06 1.56604531864e-05 9.17634248029e-06 +UniRef50_J9NUS4 0.000213380003615 3.73359149747e-05 -0.00017604408864 +UniRef50_J9NUS2 3.45555450412e-05 9.67128867077e-05 6.21573416665e-05 +UniRef50_UPI00034A41B8 hypothetical protein 2.25359465795e-05 0.00631021569517 0.00628767974859 +UniRef50_UPI0003C7E91A GntR family transcriptional regulator, partial 2.3991121863e-05 3.75377061492e-05 1.35465842862e-05 +UniRef50_Q49174 Methyl coenzyme M reductase II subunit alpha 0.00294859230613 0.00194905370055 -0.00099953860558 +UniRef50_Q1JM47 Transporter 0.0057880553415 0.00151525078939 -0.00427280455211 +UniRef50_N3KST8 Trehalose 6 phosphate phosphatase 0.0086909620675 0.00410886328969 -0.00458209877781 +UniRef50_UPI000287F633 D amino acid dehydrogenase 2.09000273695e-05 1.10942734315e-05 -9.805753938e-06 +UniRef50_A0A023LC15 0.000688396038288 0.000964807604116 0.000276411565828 +UniRef50_A5N1N7 Acyl protein synthetase related protein 0.00021189380417 0.00146048479544 0.00124859099127 +UniRef50_W0YM34 Protein YqjC 0.000686338161548 0.000456675317307 -0.000229662844241 +UniRef50_Q3J8Q5 50S ribosomal protein L10 0.0140700515183 0.00043007287164 -0.0136399786467 +UniRef50_UPI00037516DE O acetylhomoserine lyase, partial 1.76495236422e-05 1.44173451457e-05 -3.2321784965e-06 +UniRef50_Q8CRJ8 0.0182927710192 0.0105527874228 -0.0077399835964 +UniRef50_A6LQ15 BAAT Acyl CoA thioester hydrolase like protein 0.000146881707723 0.0013322924822 0.00118541077448 +UniRef50_UPI00022CA5D6 4.34105410157e-06 5.81796254078e-06 1.47690843921e-06 +UniRef50_UPI00036E56FD hypothetical protein 4.58424089983e-06 4.89660714756e-06 3.1236624773e-07 +UniRef50_UPI0002D738C7 hypothetical protein 2.1801144637e-05 2.49374435035e-05 3.1362988665e-06 +UniRef50_B9TD78 Circumsporozoite protein, putative 7.70119206871e-05 0.000102412649186 2.54007284989e-05 +UniRef50_Q9I1W8 Catalase HPII 0.00876617686367 0.00211350414225 -0.00665267272142 +UniRef50_K7U318 6.75967944459e-05 0.000325174686853 0.000257577892407 +UniRef50_Q9JWJ3 Cysteine tRNA ligase 5.72623314325e-06 0.000353169547732 0.000347443314589 +UniRef50_UPI00047AB713 ferredoxin 4.29483646938e-05 7.0244730666e-05 2.72963659722e-05 +UniRef50_E0S112 Iron ABC transporter permease protein 0.000634842803854 0.00199531177304 0.00136046896919 +UniRef50_UPI000477640E PTS mannose transporter subunit IIA 1.01073529622e-05 3.85738088801e-05 2.84664559179e-05 +UniRef50_A5UKG0 0.000608848369114 0.000649047703726 4.0199334612e-05 +UniRef50_A5IRE1 SNARE associated Golgi protein 0.0114950751302 0.00656497924798 -0.00493009588222 +UniRef50_A8LR27 8.1983488224e-05 0.000560727921252 0.000478744433028 +UniRef50_UPI000381B84D hypothetical protein 5.08342949261e-05 4.09768897416e-05 -9.8574051845e-06 +UniRef50_D8GPH6 Conserved protein with a HD domain 0.000157504585052 0.000806703602053 0.000649199017001 +UniRef50_Q5PJX5 Ribose import ATP binding protein RbsA 0.00305614885899 0.00117288146481 -0.00188326739418 +UniRef50_Q44532 Ferredoxin NADP reductase 0.0136533612924 0.00375399056117 -0.00989937073123 +UniRef50_C7IYC6 Os02g0235900 protein 0.000245218609646 0.00047279892046 0.000227580310814 +UniRef50_B9DTQ1 Replication initiation and membrane attachment protein 0.00638270324875 0.00258071224544 -0.00380199100331 +UniRef50_UPI0004754009 flagellar biosynthesis protein FliQ 0.000567263248362 0.000107060932472 -0.00046020231589 +UniRef50_Q42601 Carbamoyl phosphate synthase large chain, chloroplastic 0.000123454295123 0.00431263341502 0.0041891791199 +UniRef50_UPI000476D67D peptide ABC transporter permease 3.11754917464e-05 9.38404971617e-06 -2.17914420302e-05 +UniRef50_O33525 Malate dehydrogenase 8.66209450564e-05 2.53539615393e-05 -6.12669835171e-05 +UniRef50_Q0FSC8 Replication initiator RepC 4.76618007924e-06 1.50810307365e-05 1.03148506573e-05 +UniRef50_G8VEZ7 Long chain fatty acid CoA ligase synthetase 0.000182054112119 0.00467357938346 0.00449152527134 +UniRef50_A4QEG9 Riboflavin biosynthesis protein RibBA 0.00042503120067 0.0176430629816 0.0172180317809 +UniRef50_UPI00047D89FD hypothetical protein 6.02961556353e-06 1.83051267617e-05 1.22755111982e-05 +UniRef50_Q0A4L8 Ribosomal RNA small subunit methyltransferase G 3.8442205593e-05 3.16942279971e-05 -6.7479775959e-06 +UniRef50_UPI0003782025 hypothetical protein 0.000472151979452 0.000162683215526 -0.000309468763926 +UniRef50_H0A863 1.3739936094e-05 4.70609164091e-05 3.33209803151e-05 +UniRef50_T1BAH6 Glutaredoxin family protein 6.59318775172e-05 0.000176460548997 0.00011052867148 +UniRef50_M4ZG23 Transcriptional regulator, MarR family 0.000301988791085 0.00216550340304 0.00186351461195 +UniRef50_Q7N8S4 Amino acid acetyltransferase 0.00338193026959 0.000926804756968 -0.00245512551262 +UniRef50_I5BUN0 NAD dependent dehydrogenase 0.00276611621106 0.000706889539336 -0.00205922667172 +UniRef50_UPI00047AB05A ABC transporter substrate binding protein, partial 1.66464539699e-05 7.94879623323e-05 6.28415083624e-05 +UniRef50_Q4ZVS4 Glycosyl hydrolase, BNR repeat protein 0.00046437059817 0.000283051155147 -0.000181319443023 +UniRef50_Q8CQX8 0.00594310377868 0.00451227493297 -0.00143082884571 +UniRef50_P44428 2Fe 2S ferredoxin 0.00310217006879 0.0032880902994 0.00018592023061 +UniRef50_P0ACK8 L fucose operon activator 0.00307520693864 0.00183493591065 -0.00124027102799 +UniRef50_UPI000310B4FE hypothetical protein 4.33549600919e-06 5.86138257498e-05 5.42783297406e-05 +UniRef50_UPI00040DEDFB glycine cleavage system protein H 8.06376412934e-05 3.06482543468e-05 -4.99893869466e-05 +UniRef50_K0CDY8 0.000197001942772 0.00118921699665 0.000992215053878 +UniRef50_D5HAF9 CobW P47K family protein 5.1219642627e-06 1.00019236592e-05 4.8799593965e-06 +UniRef50_X1PT48 Marine sediment metagenome DNA, contig 4.64186968129e-06 2.32413128802e-05 1.85994431989e-05 +UniRef50_Q5F569 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.00108674433531 0.00261092456822 0.00152418023291 +UniRef50_G8V1X3 Citrate transporter family protein 0.015747758559 0.00661122042263 -0.00913653813637 +UniRef50_R6M017 0.000141478480163 9.25089029219e-05 -4.89695772411e-05 +UniRef50_G5JW97 Competence specific sigma factor ComX 0.0112295571732 0.00325395258503 -0.00797560458817 +UniRef50_T9NAD2 0.00375133364687 0.000630040348308 -0.00312129329856 +UniRef50_M9RZ40 Transport protein 0.00106849269852 0.00046506567747 -0.00060342702105 +UniRef50_F0KLI1 Phosphoribosyl dephospho CoA transferase 0.00069475948869 0.0143329141269 0.0136381546382 +UniRef50_B9KSK9 Mammalian cell entry related domain protein 0.000357886933336 0.000375005339931 1.7118406595e-05 +UniRef50_Q46WX7 AMP dependent synthetase and ligase 0.000170749215151 0.0153451446618 0.0151743954466 +UniRef50_Q892J3 Chorismate synthase 1.30750893188e-05 8.52223895935e-05 7.21473002747e-05 +UniRef50_F0A5S1 2.29463251347e-06 0.00196980995407 0.00196751532156 +UniRef50_G4LSM0 0.00133295779697 0.000828259604455 -0.000504698192515 +UniRef50_Q06173 Periplasmic [NiFe] hydrogenase small subunit 1 6.85440469864e-05 1.74750579851e-05 -5.10689890013e-05 +UniRef50_Q1II76 Bifunctional protein FolD 2.23029168195e-05 3.16991803165e-06 -1.91329987878e-05 +UniRef50_Q8ZM40 tRNA ) methyltransferase 0.00199051628087 0.00208864760108 9.813132021e-05 +UniRef50_Q8CNS2 Protoporphyrinogen oxidase 0.0231678697017 0.00374872006018 -0.0194191496415 +UniRef50_X0UVH5 Marine sediment metagenome DNA, contig 4.01001471582e-05 0.000803456767446 0.000763356620288 +UniRef50_I3V422 LysR family transcriptional regulator 0.000154075913818 0.000641323746361 0.000487247832543 +UniRef50_R9SK04 Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2 0.00131020889286 0.000268063575066 -0.00104214531779 +UniRef50_UPI0003A45EE2 alkyl hydroperoxide reductase 1.28324102355e-05 0.000960719036631 0.000947886626395 +UniRef50_UPI0003B56E34 dihydrolipoyllysine succinyltransferase 1.2347089168e-05 1.34345761335e-05 1.0874869655e-06 +UniRef50_E8SI43 ABC transporter ATP binding protein 0.0639937988302 0.0130824058303 -0.0509113929999 +UniRef50_P69814 Galactitol specific phosphotransferase enzyme IIA component 0.00390452283234 0.000787511213846 -0.00311701161849 +UniRef50_P19576 Maltose binding periplasmic protein 0.00234061946529 0.00160938696811 -0.00073123249718 +UniRef50_UPI0002002889 hypothetical protein 1.80381855945e-05 5.29800647831e-05 3.49418791886e-05 +UniRef50_A6LUN8 Mg2+ transporter protein, CorA family protein 0.000392424296107 0.000923911364415 0.000531487068308 +UniRef50_A5IRS3 DoxX family protein 0.00397828644654 0.00236171905481 -0.00161656739173 +UniRef50_W5V4L7 Membrane protein 0.000799323643602 0.000626562891387 -0.000172760752215 +UniRef50_U3SVR2 0.0059717229701 0.00233717582009 -0.00363454715001 +UniRef50_UPI0002378562 queuine tRNA ribosyltransferase, partial 5.8684450064e-06 5.37921963833e-05 4.79237513769e-05 +UniRef50_UPI000473FB58 helicase DnaB, partial 8.34678641399e-06 0.000342245150645 0.000333898364231 +UniRef50_B7VMX2 Methionyl tRNA formyltransferase 8.21849574338e-06 1.56413115431e-05 7.42281579972e-06 +UniRef50_F4DWI2 Regulatory protein, LuxR 0.000385392888794 0.000279835768189 -0.000105557120605 +UniRef50_Q2GUA3 1.31138389048e-06 2.18667363629e-06 8.7528974581e-07 +UniRef50_UPI0002EEDC88 hypothetical protein 7.74915325016e-06 1.15922477231e-05 3.84309447294e-06 +UniRef50_Q8Y7N5 Non canonical purine NTP pyrophosphatase 5.10247432929e-05 0.000575292282856 0.000524267539563 +UniRef50_R1D6J3 2.5894043904e-05 1.20846599668e-05 -1.38093839372e-05 +UniRef50_A2SNI4 Sex pilus assembly protein 5.87130928703e-05 4.99822888612e-06 -5.37148639842e-05 +UniRef50_I3X709 Extracellular solute binding protein family 3 0.0021259061298 0.000840334111646 -0.00128557201815 +UniRef50_UPI0001CE27CE PREDICTED 3.55027344812e-06 0.00019492851828 0.000191378244832 +UniRef50_Q9I4D3 Putative quercetin 2,3 dioxygenase PA1205 0.000175394533608 0.000191143498515 1.5748964907e-05 +UniRef50_H6MX85 Peptide methionine sulfoxide reductase MsrA 0.0388578222829 0.010084061677 -0.0287737606059 +UniRef50_G2JLT4 1.68582102353e-05 0.01649300103 0.0164761428198 +UniRef50_X6G7G7 5.50035310102e-05 2.04393714295e-05 -3.45641595807e-05 +UniRef50_P44123 6 carboxy 5,6,7,8 tetrahydropterin synthase 2.16456536964e-05 0.00223023737812 0.00220859172442 +UniRef50_UPI000349B87B hypothetical protein 6.72640854751e-06 1.23771956628e-05 5.65078711529e-06 +UniRef50_P69829 Nitrogen regulatory protein 0.000247515499001 0.00222773292896 0.00198021742996 +UniRef50_A8F8I3 Phosphoribosylformylglycinamidine synthase 2 1.52471762569e-05 3.64482455666e-06 -1.16023517002e-05 +UniRef50_Q1NB30 0.000184104728343 4.75683352301e-05 -0.000136536393113 +UniRef50_U3T7G4 Oligopeptide transport system permease protein 0.000375048866284 0.00767821631672 0.00730316745044 +UniRef50_A0Q4T9 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.62598784966e-05 5.25013161228e-05 -3.7585623738e-06 +UniRef50_G8V7H1 ABC transporter ATP binding protein 0.000185528854924 0.0043520856322 0.00416655677728 +UniRef50_F7TW27 Nickel transport system permease protein NikB 9.14017480104e-06 2.61672345976e-05 1.70270597966e-05 +UniRef50_F2I8E8 Branched chain amino acid ABC transporter, permease protein 0.00797411816463 0.00483739634805 -0.00313672181658 +UniRef50_UPI000328BD8B PREDICTED 7.22892610694e-05 0.000214775785594 0.000142486524525 +UniRef50_R9PHP0 Membrane protein related to purine degradation 0.000166354274214 3.03338644409e-05 -0.000136020409773 +UniRef50_UPI0000E10DEA Mg chelatase, subunit ChlI 2.51206953912e-06 6.13881015478e-06 3.62674061566e-06 +UniRef50_D4GS06 Citrate synthase 2.32584276399e-05 5.41970175741e-05 3.09385899342e-05 +UniRef50_B2URB8 Ketol acid reductoisomerase 2.22470787145e-05 3.82707957609e-05 1.60237170464e-05 +UniRef50_A0A017HSW8 Cation transport protein chaC 1.15982875084e-05 1.08713229509e-05 -7.269645575e-07 +UniRef50_UPI00021979C2 oligo 1,6 glucosidase 3.5274192233e-06 5.78638646359e-06 2.25896724029e-06 +UniRef50_UPI0003507592 PREDICTED 2.5460167367e-05 5.67874949761e-05 3.13273276091e-05 +UniRef50_UPI0003AA57B2 sodium 1.36897052753e-05 0.00360154819851 0.00358785849323 +UniRef50_UPI0003B38D86 chemotaxis protein CheR 9.66713981777e-05 2.44111729396e-05 -7.22602252381e-05 +UniRef50_C1C8T6 Alanine racemase 0.00576830142862 0.003166047133 -0.00260225429562 +UniRef50_UPI00034AEEE6 hypothetical protein 0.00173278246411 0.00143441051275 -0.00029837195136 +UniRef50_Q6X7U6 2,3 diaminopropionate biosynthesis protein SbnB 0.0139060159203 0.00200661648535 -0.011899399435 +UniRef50_UPI00046E80FA hypothetical protein 3.77990207457e-06 9.671988784e-06 5.89208670943e-06 +UniRef50_R6AVV6 5.14333897648e-06 3.67568203441e-05 3.16134813676e-05 +UniRef50_I6TPH6 N acetylmuramoyl L alanine amidase 0.00214288541827 0.000201810960268 -0.001941074458 +UniRef50_A5VKT1 Peptide methionine sulfoxide reductase MsrA 0.0260769476688 0.0018263270428 -0.024250620626 +UniRef50_G8VNH2 Cysteine synthase ornithine cyclodeaminase 0.000117353157162 0.00495137234234 0.00483401918518 +UniRef50_B9KN38 UvrB protein 0.0198485892128 0.0102377783882 -0.0096108108246 +UniRef50_Q54XM6 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 8.52052509155e-06 1.66929649665e-05 8.17243987495e-06 +UniRef50_UPI0001FFDC47 5 nucleotidase ;exopolyphosphatase ;3 nucleotidase 6.07959572842e-05 0.000278040026756 0.000217244069472 +UniRef50_UPI00036C2D64 hypothetical protein 1.04431833722e-05 3.05179150314e-06 -7.39139186906e-06 +UniRef50_F7YPH9 ABC transporter ATP binding protein 0.00056831105291 0.0110292115999 0.010460900547 +UniRef50_Q2CFL1 4.39711490438e-06 6.87994534513e-06 2.48283044075e-06 +UniRef50_H5YAU5 Spermidine putrescine binding periplasmic protein 0.0136950160159 0.00257365827797 -0.0111213577379 +UniRef50_Q7WJI7 Argininosuccinate lyase 0.000342624921585 0.00321252954467 0.00286990462309 +UniRef50_Q8E0X1 Prophage LambdaSa1, pblA protein, internal deletion 0.000121737379666 0.000208700704506 8.696332484e-05 +UniRef50_R4WZZ5 0.00814857330499 0.00236691857474 -0.00578165473025 +UniRef50_UPI0004135EFA ATP dependent DNA helicase RecQ 1.74792101858e-05 9.53229261273e-06 -7.94691757307e-06 +UniRef50_UPI00047C6850 hypothetical protein 3.74920263848e-05 0.000276249073565 0.00023875704718 +UniRef50_A6QGQ2 0.000175784765011 0.000116336382583 -5.9448382428e-05 +UniRef50_UPI000379AA44 hypothetical protein 3.62742611183e-05 5.15634302116e-06 -3.11179180971e-05 +UniRef50_UPI00034B0709 hypothetical protein 0.0015816474433 0.000209629725795 -0.0013720177175 +UniRef50_A6V155 0.000552257736994 0.000239445977193 -0.000312811759801 +UniRef50_UPI000416D15E hypothetical protein 5.88035396834e-06 9.38108295273e-06 3.50072898439e-06 +UniRef50_C1KVB2 Endoribonuclease YbeY 0.0118816058363 0.00202371685621 -0.00985788898009 +UniRef50_P0ABV8 Protein TolR 0.00405291947666 0.000414964925331 -0.00363795455133 +UniRef50_J9NZ26 0.000113245796655 0.000336331460735 0.00022308566408 +UniRef50_UPI0004637A95 MULTISPECIES 9.15488519108e-05 9.61392715899e-05 4.5904196791e-06 +UniRef50_Q1R1E5 1 deoxy D xylulose 5 phosphate synthase 6.74651421758e-06 7.41970937218e-06 6.731951546e-07 +UniRef50_UPI00035C7334 hypothetical protein 0.000599514009231 0.000141677645391 -0.00045783636384 +UniRef50_UPI000367B022 hypothetical protein 2.26822633197e-05 3.6274889918e-05 1.35926265983e-05 +UniRef50_P32157 Protein YiiM 0.00399161709896 0.0011303700054 -0.00286124709356 +UniRef50_Q5LR99 Peptidase, M23 M37 family 0.00234259958688 0.00039631795236 -0.00194628163452 +UniRef50_UPI0001DD0925 bile acid 0.000253977178749 0.000146638628562 -0.000107338550187 +UniRef50_Q1IW67 PPC, peptidase containing PKD repeats 7.93789774321e-06 0.00127980353978 0.00127186564204 +UniRef50_L0A6E5 Phytoene desaturase 7.06461613625e-05 0.0385141613059 0.0384435151445 +UniRef50_Q7VA47 Fumarate hydratase class II 5.36259246469e-06 4.05765998134e-06 -1.30493248335e-06 +UniRef50_Q9ZKW2 Probable iron chelatin transport system permease protein jhp_0822 0.000125133476969 0.00179791040875 0.00167277693178 +UniRef50_R5AM14 Transketolase 0.00143201188526 0.00488682913879 0.00345481725353 +UniRef50_Q9HXC0 0.000751656975743 9.49571399342e-05 -0.000656699835809 +UniRef50_UPI0004785DA5 hypothetical protein 1.01680207739e-05 0.000656611577274 0.0006464435565 +UniRef50_UPI0001C4F400 sulfate ABC transporter permease 9.62878022308e-06 9.49572744923e-06 -1.3305277385e-07 +UniRef50_W3MN34 8.15399645607e-05 0.00144526035913 0.00136372039457 +UniRef50_U2YW33 CRISPR associated protein, Cas5h family 0.000321816075461 6.31375525294e-05 -0.000258678522932 +UniRef50_Q9RT77 0.000271572653853 0.00241511090729 0.00214353825344 +UniRef50_Q9RT76 0.0033887333048 0.0397589987529 0.0363702654481 +UniRef50_W8TN29 ACT domain containing protein 0.000292624797564 0.0140372066139 0.0137445818163 +UniRef50_P52986 Homoserine dehydrogenase 4.02740615366e-06 6.25441730872e-05 5.85167669335e-05 +UniRef50_B2S5S6 Threonine tRNA ligase 0.0124345707482 0.00725875749814 -0.00517581325006 +UniRef50_D5AQ72 Glycine betaine L proline ABC transporter, permease protein ProW 1 0.0127347731774 0.00108488013118 -0.0116498930462 +UniRef50_A3JTA0 Arsenate reductase 0.000404919655234 0.000221786797212 -0.000183132858022 +UniRef50_G4LDX4 0.000141601051163 0.000249471483268 0.000107870432105 +UniRef50_G2JZ44 Carnitine transport ATP binding protein OpuCA 0.0347290092841 0.0131295798624 -0.0215994294217 +UniRef50_A5USV3 Queuine tRNA ribosyltransferase 5.19715643669e-06 3.19758409382e-05 2.67786845015e-05 +UniRef50_O52788 Tyrosine protein kinase ptk 0.000355909480386 0.0065052323679 0.00614932288751 +UniRef50_E5QV38 0.0104953728179 0.00118297732925 -0.00931239548865 +UniRef50_UPI000472FBDB S formylglutathione hydrolase 2.83168861965e-05 3.82243209264e-05 9.9074347299e-06 +UniRef50_P52613 Flagellar FliJ protein 0.00141130233383 0.00122593107804 -0.00018537125579 +UniRef50_UPI00035FA621 hypothetical protein 5.29796777693e-06 1.96857333744e-05 1.43877655975e-05 +UniRef50_UPI0002891631 HAD family hydrolase 7.91027594963e-05 0.000245118627756 0.00016601586826 +UniRef50_C1KVA9 GTPase Era 0.0236719701152 0.0119461568689 -0.0117258132463 +UniRef50_UPI00047412C9 hypothetical protein, partial 4.21815344166e-05 5.74483338498e-05 1.52667994332e-05 +UniRef50_T7XDH6 Cytochrome bd II oxidase subunit 2 0.000768093580892 0.000387889518544 -0.000380204062348 +UniRef50_A0A010ITK8 1.86632233352e-05 4.17804104913e-05 2.31171871561e-05 +UniRef50_Q5LVP8 Xanthine dehydrogenase accessory factor 6.71868334959e-06 4.3690587779e-05 3.69719044294e-05 +UniRef50_F3U4A0 RND family efflux transporter MFP subunit 0.000255485527578 0.000491118925637 0.000235633398059 +UniRef50_B9DZY6 0.000283342373642 0.00496713285668 0.00468379048304 +UniRef50_UPI0004701B61 hypothetical protein 6.25599781802e-06 8.14137681872e-06 1.8853790007e-06 +UniRef50_Q839H4 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.0049189487464 0.0121219237083 0.0072029749619 +UniRef50_UPI000362C020 hypothetical protein 3.11903779177e-06 0.000377434580452 0.00037431554266 +UniRef50_UPI000455F0CE hypothetical protein CONPUDRAFT_85381 8.53092037622e-06 9.37901574761e-07 -7.59301880146e-06 +UniRef50_UPI000417B443 hypothetical protein 1.13260124627e-05 2.37311884538e-05 1.24051759911e-05 +UniRef50_A8FY28 Ribonuclease HII 0.000595790580038 0.000643231907845 4.7441327807e-05 +UniRef50_F9ECL7 6.73848948113e-05 0.00324199064956 0.00317460575475 +UniRef50_A3M1W3 0.000205901448467 0.00380607907314 0.00360017762467 +UniRef50_UPI0004168D45 DEAD DEAH box helicase 3.35799902697e-06 1.90921731628e-05 1.57341741358e-05 +UniRef50_Q87DC2 Fumarate hydratase class II 0.000952430105442 0.00068039294302 -0.000272037162422 +UniRef50_X1CXM9 Marine sediment metagenome DNA, contig 1.44821891795e-05 8.33833166245e-06 -6.14385751705e-06 +UniRef50_Q5VQ95 PE PGRS FAMILY PROTEIN like 5.41901981131e-05 2.18721494118e-05 -3.23180487013e-05 +UniRef50_Q0MQH9 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.28347282207e-05 2.89022101445e-05 -3.9325180762e-06 +UniRef50_P05448 Putative L,D transpeptidase in ATP synthase subunits region ORF 5 0.012404094123 0.00495968904425 -0.00744440507875 +UniRef50_UPI000364300D hypothetical protein 3.49162223831e-06 5.54494374112e-06 2.05332150281e-06 +UniRef50_UPI00046AFE1E fimbrial protein, partial 7.80354965687e-06 7.99769463389e-06 1.9414497702e-07 +UniRef50_C1C8M1 Threonine tRNA ligase 0.0127555711153 0.00433481805511 -0.00842075306019 +UniRef50_Q9WY54 Aminomethyltransferase 3.8555108957e-05 3.18539284437e-05 -6.7011805133e-06 +UniRef50_UPI000478F558 hypothetical protein 1.81335620539e-05 0.00020806905574 0.000189935493686 +UniRef50_Z2DM67 0.000406030234906 0.000203832524573 -0.000202197710333 +UniRef50_Q59935 Mannose 6 phosphate isomerase 0.028466988923 0.010110724363 -0.01835626456 +UniRef50_E0MU16 Putative replication protein A 0.000782900747004 0.000252649811376 -0.000530250935628 +UniRef50_A6LPF8 Transcriptional regulator, TrmB 0.00220666947375 0.000423899576834 -0.00178276989692 +UniRef50_F1AX13 PP177 0.000407412710497 0.000185733256082 -0.000221679454415 +UniRef50_UPI0003771110 hypothetical protein 0.000197215145787 0.00329601488918 0.00309879974339 +UniRef50_P52560 GTP pyrophosphokinase 0.000175001246301 0.00661396813026 0.00643896688396 +UniRef50_P72871 S adenosylmethionine synthase 8.67734417895e-06 0.000311232407899 0.00030255506372 +UniRef50_UPI000380FDEA hypothetical protein 7.4055781187e-06 4.42270073442e-05 3.68214292255e-05 +UniRef50_A7BLF8 Serine threonine protein phosphatase 4.34916835541e-06 0.000116369495057 0.000112020326702 +UniRef50_Q74NK6 0.000126634813833 0.00201264223045 0.00188600741662 +UniRef50_P43319 0.003001642598 0.000164369223673 -0.00283727337433 +UniRef50_M8E6M3 5.18836542369e-05 0.000916856693408 0.000864973039171 +UniRef50_A1B1I1 Leucyl phenylalanyl tRNA protein transferase 1.63040435828e-05 0.000119106719942 0.000102802676359 +UniRef50_Q57847 0.00291361999475 0.000473770115279 -0.00243984987947 +UniRef50_Q745F5 4.93242201077e-05 0.000113656204698 6.43319845903e-05 +UniRef50_UPI0003628FC3 hypothetical protein, partial 5.1714812704e-06 0.000134319236006 0.000129147754736 +UniRef50_UPI000158478A hypothetical protein BC1G_06634 4.44073690214e-06 3.37066668032e-05 2.92659299011e-05 +UniRef50_G9EQ58 4.11888742638e-05 0.000166729575426 0.000125540701162 +UniRef50_F3YMS0 Permease 0.00484423132479 0.00506488682277 0.00022065549798 +UniRef50_UPI0003651736 hypothetical protein, partial 9.88434426598e-06 1.54371702619e-05 5.55282599592e-06 +UniRef50_Q7VR76 Ribose phosphate pyrophosphokinase 3.61466314181e-05 7.74923634178e-05 4.13457319997e-05 +UniRef50_UPI0003B40518 ABC transporter ATP binding protein 6.07183430997e-07 4.92400882273e-06 4.31682539173e-06 +UniRef50_UPI0004708F5B ABC transporter substrate binding protein, partial 1.59398045474e-05 0.000568516621707 0.00055257681716 +UniRef50_Q9K107 L aspartate oxidase 0.000322734424493 0.00331094834525 0.00298821392076 +UniRef50_Q6A6B1 BadF BadG BcrA BcrD ATPase family protein 0.000212070780251 0.00953832485507 0.00932625407482 +UniRef50_UPI0001CBF5BB macrolide ABC transporter ATP binding protein 5.7914471395e-06 2.2992336605e-05 1.72008894655e-05 +UniRef50_D8JDP8 Protein visC 9.20697533807e-05 0.00669928486401 0.00660721511063 +UniRef50_UPI0003B5F778 iron ABC transporter 4.85694526029e-06 2.82073012087e-05 2.33503559484e-05 +UniRef50_UPI000382A943 hypothetical protein 1.10087946562e-05 1.71522656751e-05 6.1434710189e-06 +UniRef50_U3T3A9 3.44216046284e-05 0.00104743294192 0.00101301133729 +UniRef50_UPI000455D09C lamb YcsF family protein 0.000112239228912 2.70073731009e-05 -8.52318558111e-05 +UniRef50_Q9RWW8 0.000187478528205 0.0481271771429 0.0479396986147 +UniRef50_C6ZBM7 4.09421260664e-05 5.05283847915e-05 9.5862587251e-06 +UniRef50_A6LRH1 Response regulator receiver protein 0.000261537636621 0.000476637802963 0.000215100166342 +UniRef50_B3QI42 Phosphoribosylformylglycinamidine synthase, purS 3.63675254415e-05 7.64707369879e-05 4.01032115464e-05 +UniRef50_UPI0004712E3C hypothetical protein 6.18921543543e-06 4.83015211799e-06 -1.35906331744e-06 +UniRef50_C1N8X0 Predicted protein 2.13355405122e-05 5.77388870196e-06 -1.55616518102e-05 +UniRef50_A5UNU8 Large terminase subunit 0.00398758493451 0.000131154717327 -0.00385643021718 +UniRef50_N8WPF6 0.000250543797907 0.0095014668419 0.00925092304399 +UniRef50_Q8TYX3 HSP70 class molecular chaperones involved in cell morphogenesis 0.00416940365777 0.000389379600506 -0.00378002405726 +UniRef50_P94544 DNA polymerase 3 5 exonuclease PolX 0.0194270517834 0.00734696994585 -0.0120800818375 +UniRef50_UPI0001745B7C iron sulfur cluster assembly accessory protein 0.000829585364471 0.000138146755862 -0.000691438608609 +UniRef50_Q13SP0 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0172264453457 0.0123561935057 -0.00487025184 +UniRef50_K0S5W4 7.33932577173e-05 0.00013484035594 6.14470982227e-05 +UniRef50_UPI0002FE110D Fosmidomycin resistance protein 0.000116565489397 0.000125985484617 9.41999522e-06 +UniRef50_A8A6H8 Inner membrane protein CbrB 0.0011177014855 0.00053050905124 -0.00058719243426 +UniRef50_B4G1R8 0.000433062319907 0.00033879545529 -9.4266864617e-05 +UniRef50_Q21TR5 Putative ribose galactose methyl galactoside import ATP binding protein 0.000256469145597 0.00553008744338 0.00527361829778 +UniRef50_N0CFH5 L cystine ABC transporter substrate binding component 0.00400655896638 0.0039472097551 -5.934921128e-05 +UniRef50_M9VK56 Membrane associated protein 0.000217856681064 0.00480952172692 0.00459166504586 +UniRef50_U5UTH9 0.000174705665644 0.000142727768354 -3.197789729e-05 +UniRef50_K0S8Y4 7.41622767867e-05 5.47047881885e-05 -1.94574885982e-05 +UniRef50_F7Z9W9 Transposase 8.96458704271e-05 2.2205186778e-05 -6.74406836491e-05 +UniRef50_UPI00041D675E DNA primase 3.35866750559e-06 3.93695014633e-06 5.7828264074e-07 +UniRef50_Q6Z5U8 0.000680313186504 0.000521914648349 -0.000158398538155 +UniRef50_I3TMV8 Phosphoribosylformylglycinamidine synthase protein 0.000109734009961 5.63056938811e-05 -5.34283160799e-05 +UniRef50_UPI000406D548 hypothetical protein 7.69833893033e-05 5.50344431742e-05 -2.19489461291e-05 +UniRef50_Q8CNT0 Abortive phage resistance protein 0.0098942135046 0.00411971861189 -0.00577449489271 +UniRef50_UPI0003610508 hypothetical protein 9.21608645163e-05 2.93963939164e-05 -6.27644705999e-05 +UniRef50_A0A024IFX7 5.2348506908e-05 0.00379439805762 0.00374204955071 +UniRef50_S4X548 O acetylserine dependent cystathionine beta synthase 0.0246360035439 0.00777237761742 -0.0168636259265 +UniRef50_P0DC76 N utilization substance protein B homolog 0.00110334866358 0.00774683621263 0.00664348754905 +UniRef50_A4X990 Cobalamin synthesis protein, P47K 5.43176844442e-06 1.18232927224e-05 6.39152427798e-06 +UniRef50_S9TDP6 Proteophosphoglycan ppg3 7.6541798406e-05 0.000465274564787 0.000388732766381 +UniRef50_A9M1F1 Ferric enterobactin transporter binding protein 1.5285507377e-05 0.00162534217049 0.00161005666311 +UniRef50_UPI0003B45A90 cytochrome C oxidase 2.86529933905e-06 2.6050401202e-05 2.31851018629e-05 +UniRef50_B0VKG9 3.61731445806e-05 0.000103321865681 6.71487211004e-05 +UniRef50_A6M1U3 Response regulator receiver protein 0.000573514395093 0.00065631404195 8.2799646857e-05 +UniRef50_M9R1A8 0.00010607212978 7.10948993649e-05 -3.49772304151e-05 +UniRef50_R4K891 rRNA methylase 0.000167771550603 0.000256425503788 8.8653953185e-05 +UniRef50_S9QSU8 DNA polymerase III, beta subunit 0.00704671175177 0.00310655056767 -0.0039401611841 +UniRef50_UPI0003825004 hypothetical protein 0.000205302863325 6.72658797193e-05 -0.000138036983606 +UniRef50_A5VZZ2 Cyclic pyranopterin monophosphate synthase 0.000236911298339 0.000317266707001 8.0355408662e-05 +UniRef50_H3XB68 YhgE Pip C terminal domain protein 0.0162104351988 0.00337409065168 -0.0128363445471 +UniRef50_D8HBY6 0.00990628747066 0.000805343386522 -0.00910094408414 +UniRef50_A0A032VR07 0.00952389555968 0.000806062850735 -0.00871783270894 +UniRef50_Q5HR98 UDP N acetyl D mannosamine transferase 0.0101178003165 0.0024694031881 -0.0076483971284 +UniRef50_M2I9S9 0.000563411923659 0.000711606518538 0.000148194594879 +UniRef50_R1D153 0.000954834283356 4.43976776073e-05 -0.000910436605749 +UniRef50_Q07417 Short chain specific acyl CoA dehydrogenase, mitochondrial 1.18623500481e-05 4.52552076834e-05 3.33928576353e-05 +UniRef50_W4TL26 0.000139205042914 0.000329647337439 0.000190442294525 +UniRef50_A3NXX0 Cytidylate kinase 9.21545642789e-06 0.00491395256901 0.00490473711258 +UniRef50_R7D247 Oxidoreductase short chain dehydrogenase reductase family protein 0.00311868194033 0.00096247304246 -0.00215620889787 +UniRef50_A8MH33 Phospho N acetylmuramoyl pentapeptide transferase 7.50793313504e-06 1.52173379182e-05 7.70940478316e-06 +UniRef50_UPI000464379E DNA mismatch repair protein Vsr 1.0541421145e-05 6.5803724269e-05 5.5262303124e-05 +UniRef50_UPI00035EB80A hypothetical protein 1.42600425103e-05 1.16230705833e-05 -2.636971927e-06 +UniRef50_K6EM35 DEAD DEAH box helicase 1.08439223771e-06 3.27575224684e-05 3.16731302307e-05 +UniRef50_UPI00028A299B deoxyribonucleotide triphosphate pyrophosphatase 6.55068632452e-06 1.24763887995e-05 5.92570247498e-06 +UniRef50_I7HG53 Penicillin binding protein 0.000141560784841 0.00434561570214 0.0042040549173 +UniRef50_E2X4D1 0.000320907874997 0.000852014557138 0.000531106682141 +UniRef50_Q02IQ8 0.00018571363304 0.000144522502443 -4.1191130597e-05 +UniRef50_R4RFT5 3 oxoacyl [acyl carrier protein] synthase 3 0.000405422601424 0.00640143485144 0.00599601225002 +UniRef50_M0SUV4 2.01841312353e-05 5.09695283423e-05 3.0785397107e-05 +UniRef50_O31776 L threonine 3 dehydrogenase 5.64158826333e-06 4.68237030175e-05 4.11821147542e-05 +UniRef50_A8AW17 Cell division protein ftsA 0.00796597623952 0.00333844878707 -0.00462752745245 +UniRef50_UPI0003754678 hypothetical protein, partial 5.33893601912e-05 2.8768124341e-05 -2.46212358502e-05 +UniRef50_O86018 GroESL operon, partial sequence. 4.46003321695e-05 0.00026496189759 0.000220361565421 +UniRef50_P9WGZ8 Ribonuclease J 0.000326626648787 0.00542626754707 0.00509964089828 +UniRef50_X1R855 Marine sediment metagenome DNA, contig 1.63500340257e-05 3.96915548909e-05 2.33415208652e-05 +UniRef50_P33362 Putative osmoprotectant uptake system substrate binding protein OsmF 0.00123993949482 0.00061897148499 -0.00062096800983 +UniRef50_P50107 Lactoylglutathione lyase 7.2768919145e-06 1.60619398382e-05 8.7850479237e-06 +UniRef50_D4H934 DNA binding helix turn helix protein 0.000265949721148 0.00882892694115 0.00856297722 +UniRef50_UPI0004786584 hypothetical protein 6.23613550185e-07 8.93333448607e-05 8.87097313105e-05 +UniRef50_P77319 Chaperone protein HscC 0.0022052610613 0.000755929562201 -0.0014493314991 +UniRef50_A8EWD3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.000202949456367 0.00240083105717 0.0021978816008 +UniRef50_Q87VD5 Glutamate ammonia ligase adenylyltransferase 0.000556645922626 0.000123520421499 -0.000433125501127 +UniRef50_Q02ID7 7 carboxy 7 deazaguanine synthase 0.00118059889226 0.00646815487788 0.00528755598562 +UniRef50_A9I0G7 Orotate phosphoribosyltransferase 0.0037843849584 0.000419307505292 -0.00336507745311 +UniRef50_F8FNN8 YbaR 0.0292391920903 0.0364224380777 0.0071832459874 +UniRef50_A6LZF6 Transcriptional regulator, XRE family 0.00040735898078 0.00151164968918 0.0011042907084 +UniRef50_H0HX43 Transposase 1.48775538787e-05 4.90979575359e-05 3.42204036572e-05 +UniRef50_V9AHX5 PF12266 family protein 4.8701666323e-05 0.00100682866465 0.000958126998327 +UniRef50_B9DW70 DNA mismatch repair protein MutL 0.00594288439686 0.00262201802624 -0.00332086637062 +UniRef50_M8SYD2 3.92585912343e-05 8.3244671013e-05 4.39860797787e-05 +UniRef50_UPI00045E6B47 Fis family transcriptional regulator 2.40798265933e-05 3.80250706568e-05 1.39452440635e-05 +UniRef50_A5UMR0 Thiamine monphosphate kinase, ThiL 0.00157722361694 0.000534201632247 -0.00104302198469 +UniRef50_C1FHC6 Predicted protein 2.01109125958e-05 0.000963300793573 0.000943189880977 +UniRef50_L7WU68 Precorrin 2 dehydrogenase 0.0116835812124 0.0116723705241 -1.12106883e-05 +UniRef50_UPI00037FCE7E hypothetical protein, partial 1.42571754891e-06 4.76052131163e-06 3.33480376272e-06 +UniRef50_J6MTI6 0.00879421180364 0.00164756192873 -0.00714664987491 +UniRef50_Q9KV18 Putative ribosome biogenesis GTPase RsgA 0.00206445193545 0.0040782409254 0.00201378898995 +UniRef50_UPI0003760B8C hypothetical protein 8.22771995326e-05 4.57790021053e-05 -3.64981974273e-05 +UniRef50_UPI0003FB1D7B hypothetical protein 4.3997779812e-06 0.000196860050102 0.000192460272121 +UniRef50_UPI00047AC70D hypothetical protein 2.44721652517e-06 7.73612441828e-06 5.28890789311e-06 +UniRef50_A4XP48 Glutamate putrescine ligase 0.00133240539279 0.000725164600672 -0.000607240792118 +UniRef50_L1KHU2 0.00132027117581 0.000530192149453 -0.000790079026357 +UniRef50_UPI0004280637 5 nucleotidase 2.09467522568e-06 0.000186577618849 0.000184482943623 +UniRef50_A1TL07 Phosphoribosyl AMP cyclohydrolase 2.42246028509e-05 2.16911203011e-05 -2.5334825498e-06 +UniRef50_A0ALI9 NLP P60 family protein 3.02842799869e-05 0.00106018823997 0.00102990395998 +UniRef50_Q6A964 Glycine tRNA ligase 0.000369458045884 0.00620760084721 0.00583814280133 +UniRef50_P75030 Urease subunit gamma 0.000228775385315 0.000278430288296 4.9654902981e-05 +UniRef50_G0DXU0 0.00063712318923 0.00717982706466 0.00654270387543 +UniRef50_UPI00036F5C26 hypothetical protein, partial 0.000150962244195 5.37267459149e-05 -9.72354982801e-05 +UniRef50_A0A017HQ29 3.3840152443e-06 1.72669400636e-06 -1.65732123794e-06 +UniRef50_R6TVK2 Aldehyde dehydrogenase A 0.00238425112088 0.000520546726894 -0.00186370439399 +UniRef50_P77522 FeS cluster assembly protein SufB 0.002194884004 0.00489967365281 0.00270478964881 +UniRef50_UPI00029A24D2 acyl CoA dehydrogenase 4.309022075e-06 6.86808408551e-06 2.55906201051e-06 +UniRef50_Q8ERS7 Bis tetraphosphatase PrpE [asymmetrical] 3.28643635132e-05 0.000796766116559 0.000763901753046 +UniRef50_Q55738 DNA gyrase subunit A 5.6300028786e-06 1.28834540842e-05 7.2534512056e-06 +UniRef50_UPI00046F2BB5 chromosomal replication initiation protein, partial 6.24353061092e-06 2.12836954623e-05 1.50401648514e-05 +UniRef50_A3PFT2 Sulfoxide reductase heme binding subunit YedZ 0.0102911880121 0.00160284365739 -0.00868834435471 +UniRef50_UPI00047E1D32 iron transporter FeoB 7.30384168488e-06 3.77573686919e-06 -3.52810481569e-06 +UniRef50_Q5X1A0 Ribosomal RNA large subunit methyltransferase E 0.00501580223808 0.00878000365372 0.00376420141564 +UniRef50_UPI0003113A1C hypothetical protein 4.93465890176e-05 8.76729481496e-05 3.8326359132e-05 +UniRef50_UPI000424F2DF hypothetical protein 1.57351742057e-05 8.87868259603e-06 -6.85649160967e-06 +UniRef50_P45527 0.0127285823465 0.00367660677636 -0.00905197557014 +UniRef50_UPI000344EADE thioredoxin 0.00027198151641 0.000536984920001 0.000265003403591 +UniRef50_E2ZZT1 Type I ferripyoverdine receptor, FpvB 0.00062425813578 0.0001680055727 -0.00045625256308 +UniRef50_UPI0004630EAC hypothetical protein 5.94956593079e-05 3.52127009707e-05 -2.42829583372e-05 +UniRef50_P46125 Inner membrane protein YedI 0.00431975865781 0.00151175354775 -0.00280800511006 +UniRef50_D4DXV5 Type III restriction enzyme, res subunit 0.00159672408566 0.000446443165814 -0.00115028091985 +UniRef50_UPI00037CF6F9 nitrate ABC transporter ATP binding protein 4.3460363266e-05 1.287005905e-05 -3.0590304216e-05 +UniRef50_M9VF54 5 formyltetrahydrofolate cyclo ligase 0.000446728980886 0.00339413890867 0.00294740992778 +UniRef50_UPI00026CD1F6 transposase IS3 IS911 family protein 4.20943527516e-05 6.41314270505e-05 2.20370742989e-05 +UniRef50_B7GKM4 NADH dehydrogenase, FAD containing subunit 0.00395064786358 0.000891817979781 -0.0030588298838 +UniRef50_C6HWC8 Glutamate dehydrogenase 8.45171261952e-07 6.19806783192e-06 5.35289656997e-06 +UniRef50_UPI00047D654A 8 amino 7 oxononanoate synthase 3.33820943951e-05 5.17454296682e-05 1.83633352731e-05 +UniRef50_A5UKW4 Dihydrolipoamide dehydrogenase 0.00224504898119 0.000332407356562 -0.00191264162463 +UniRef50_Q832Z5 Ribose phosphate pyrophosphokinase 2 0.00594965991736 0.00139032658826 -0.0045593333291 +UniRef50_Q9RUT4 9.76256867702e-05 0.0349363729666 0.0348387472798 +UniRef50_UPI00038FBDD6 UPF0135 protein BH1380 1.48526971285e-05 1.09039070798e-05 -3.9487900487e-06 +UniRef50_Q5L3C1 Heptaprenylglyceryl phosphate synthase 0.0137927109517 0.00485487033369 -0.00893784061801 +UniRef50_I4F0A8 0.000220565278525 7.76581089855e-05 -0.00014290716954 +UniRef50_J9YQH5 PTS system transporter subunit IIBC 0.000279484325444 0.000129524870691 -0.000149959454753 +UniRef50_D3V6J7 0.000171907562261 0.00234371663499 0.00217180907273 +UniRef50_A1SKT2 3.22159987012e-05 9.4674236784e-05 6.24582380828e-05 +UniRef50_UPI00047E9906 methionine aminopeptidase 2.30407798864e-05 1.27104351497e-05 -1.03303447367e-05 +UniRef50_UPI00021A445D PREDICTED 8.64995647575e-06 3.88653152084e-05 3.02153587326e-05 +UniRef50_A6M169 Transmembrane protein 0.000211087783962 0.000818432552111 0.000607344768149 +UniRef50_P58696 Asparagine tRNA ligase 3.02253144633e-05 0.00595329403583 0.00592306872137 +UniRef50_F0PD68 Fructokinase 0.000737291825313 0.00393238749438 0.00319509566907 +UniRef50_P24242 HTH type transcriptional regulator AscG 0.00460157237382 0.000526254894912 -0.00407531747891 +UniRef50_G4E3T8 Putative solute symporter protein 1.90333193413e-05 5.37310786893e-05 3.4697759348e-05 +UniRef50_UPI00036ED55B hypothetical protein 0.000135862715917 1.9327338592e-05 -0.000116535377325 +UniRef50_I6SVK1 Putative transcriptional regulator 0.00184419286763 0.000214256376199 -0.00162993649143 +UniRef50_UPI00032A2B8F 6.87453639372e-05 0.00112799947878 0.00105925411484 +UniRef50_A5UMS2 Predicted DNA binding protein 0.00255817467002 0.00156406705021 -0.00099410761981 +UniRef50_L7WZG7 BirA bifunctional protein 0.0180208431651 0.00740753401297 -0.0106133091521 +UniRef50_Q9RZR4 5.54582745574e-05 0.0302559043963 0.0302004461217 +UniRef50_UPI0003780887 hypothetical protein 5.31543062983e-06 1.02129340483e-05 4.89750341847e-06 +UniRef50_Q6F0T3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 2 1.26833734559e-05 1.01867889339e-05 -2.496584522e-06 +UniRef50_A2RF77 UPF0342 protein SpyM51181 0.000695866054262 6.14075150183e-05 -0.000634458539244 +UniRef50_F1Z1C1 TIGR01906 family protein 2.25774079495e-05 1.72364044285e-05 -5.341003521e-06 +UniRef50_P37426 Ribonucleoside diphosphate reductase 1 subunit alpha 0.00253085217977 0.000809567738229 -0.00172128444154 +UniRef50_D3QGY3 0.00603252463098 0.000705763054916 -0.00532676157606 +UniRef50_UPI0003B78806 dihydrolipoamide dehydrogenase 2.81910875676e-06 6.04358031595e-06 3.22447155919e-06 +UniRef50_UPI00047995E8 potassium transporter 1.33189599745e-05 2.42800537047e-05 1.09610937302e-05 +UniRef50_UPI0000379B08 hypothetical protein 0.000788561535673 0.00124311861241 0.000454557076737 +UniRef50_W1UDI4 0.00177640465342 0.000711606518538 -0.00106479813488 +UniRef50_Q88ZS6 Glucosamine 6 phosphate deaminase 0.00786569421299 0.00975855637412 0.00189286216113 +UniRef50_A7HHV0 0.00063658958353 0.000330154796252 -0.000306434787278 +UniRef50_X0XC51 Marine sediment metagenome DNA, contig 1.79999834953e-06 8.43793196406e-06 6.63793361453e-06 +UniRef50_P0AEK2 3 oxoacyl [acyl carrier protein] reductase FabG 0.000331598992002 0.00362724289278 0.00329564390078 +UniRef50_V8FZY5 Histidine kinase 0.000129571849717 0.00189074750183 0.00176117565211 +UniRef50_Q9XAR5 NADH quinone oxidoreductase subunit L 0.000201701098746 0.0101841890695 0.00998248797075 +UniRef50_Q53178 Cytochrome c type protein NapC 0.0168376407817 0.00481472865397 -0.0120229121277 +UniRef50_U6I176 Nucleoside diphosphate kinase 8.90647370853e-06 1.51968441378e-05 6.29037042927e-06 +UniRef50_UPI0004726D5E amino acid permease 3.31078158842e-06 2.07785460556e-05 1.74677644672e-05 +UniRef50_U3T2J2 S8 S53 family peptidase 0.000236205835381 0.00138802323788 0.0011518174025 +UniRef50_B1IMN8 Exodeoxyribonuclease 7 large subunit 0.000486634798018 0.00181646193523 0.00132982713721 +UniRef50_C4TE51 Non ribosomal peptide synthetase 0.000322161316393 0.000129899549467 -0.000192261766926 +UniRef50_A6M093 0.000635705284803 0.000909771765783 0.00027406648098 +UniRef50_B9E104 1 deoxy D xylulose 5 phosphate synthase 0.000282209324565 0.00188268109063 0.00160047176607 +UniRef50_UPI000425BC50 tartrate dehydrogenase 6.71102796659e-05 5.54985291652e-05 -1.16117505007e-05 +UniRef50_D8JLT1 Cyanide insensitive terminal oxidase 0.000103138248322 0.00520480541534 0.00510166716702 +UniRef50_UPI00044067F2 PREDICTED 6.91579781683e-06 2.40413670135e-06 -4.51166111548e-06 +UniRef50_V4RP20 1.63603309111e-05 8.48396015568e-06 -7.87637075542e-06 +UniRef50_Q3A9L0 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.25492943861e-05 2.23974399198e-05 -1.518544663e-07 +UniRef50_P35450 Elongation factor G, chloroplastic 2.81349798471e-05 9.46761059615e-05 6.65411261144e-05 +UniRef50_Q75JD5 Phosphoenolpyruvate carboxykinase [ATP] 1.02740654968e-05 0.000133142198032 0.000122868132535 +UniRef50_Q2NBQ3 Acyl carrier protein 0.000600574589762 0.000723224584158 0.000122649994396 +UniRef50_N9WEN9 1.638328862e-05 1.22819883803e-05 -4.1013002397e-06 +UniRef50_R1DJF2 6.02867697897e-05 4.94710712632e-05 -1.08156985265e-05 +UniRef50_Q5QU71 1.9843216055e-05 1.33051948491e-05 -6.5380212059e-06 +UniRef50_B6IQY7 Potassium transporting ATPase C chain 1.93222982665e-06 0.000305885613509 0.000303953383682 +UniRef50_Q5LMZ8 Lipoprotein, putative 0.00669305513444 0.00669106970626 -1.98542818e-06 +UniRef50_P76938 Elongation factor P hydroxylase 0.00331194357482 0.00057158071973 -0.00274036285509 +UniRef50_UPI0003801D4F hypothetical protein 5.4750036738e-06 3.94985385028e-05 3.4023534829e-05 +UniRef50_F4A6Q6 Homoserine dehydrogenase 0.000464628869536 0.000327546700935 -0.000137082168601 +UniRef50_A3PR64 Transcriptional regulator, TetR family 0.00639075890412 0.000604684459685 -0.00578607444443 +UniRef50_I6TVX8 0.00769598861689 0.00294558827978 -0.00475040033711 +UniRef50_UPI000174552F ribonuclease III 1.23602613189e-05 1.37482742541e-05 1.3880129352e-06 +UniRef50_S1SWX2 Serine phosphatase RsbU, regulator of sigma subunit 0.000166006318407 0.000102776497683 -6.3229820724e-05 +UniRef50_A6LVE7 Multi sensor hybrid histidine kinase 0.000377015750433 0.000755862401371 0.000378846650938 +UniRef50_F7WGV5 2.68025521131e-05 0.000197536257659 0.000170733705546 +UniRef50_E1VBD1 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.00111140344635 0.000208950498955 -0.000902452947395 +UniRef50_P45148 Carbonic anhydrase 2 0.00379259477021 8.28325376683e-05 -0.00370976223254 +UniRef50_P26410 Hydrogenase nickel incorporation protein HypB 0.0105157348383 0.00187217868679 -0.00864355615151 +UniRef50_Q8FD60 N acetylmannosamine kinase 0.00363085074547 0.000202966807698 -0.00342788393777 +UniRef50_UPI0003945864 PREDICTED 3.08064589258e-06 2.92379467526e-06 -1.5685121732e-07 +UniRef50_UPI0002D3C2A9 MULTISPECIES 1.71413965814e-05 1.90291582421e-05 1.8877616607e-06 +UniRef50_UPI0004009643 triosephosphate isomerase 1.41242434395e-05 3.46680699944e-05 2.05438265549e-05 +UniRef50_U6HBJ2 2 amino 3 ketobutyrate coenzyme A ligase 8.8164978824e-05 1.06969564153e-05 -7.74680224087e-05 +UniRef50_F1ZDB1 3.43451518249e-05 1.59729804885e-05 -1.83721713364e-05 +UniRef50_Q5HFW6 CCA adding enzyme 0.0202562764823 0.00552434820371 -0.0147319282786 +UniRef50_I0C1Q8 Membrane lipoprotein 0.000226105212186 5.0534525294e-05 -0.000175570686892 +UniRef50_M9VIA3 0.00014334910969 0.00910784166428 0.00896449255459 +UniRef50_P0A957 KHG KDPG aldolase 0.00369856599315 0.000368759639664 -0.00332980635349 +UniRef50_I0EP41 Outer membrane protein P1 0.00014152966364 0.0029398597359 0.00279833007226 +UniRef50_UPI00036E82C7 hypothetical protein 9.26864831832e-06 0.000322827463534 0.000313558815216 +UniRef50_O07603 Putative aminopeptidase YhfE 0.00857580652702 0.00593408679096 -0.00264171973606 +UniRef50_D8TJY5 1.19851500528e-05 7.49333306713e-06 -4.49181698567e-06 +UniRef50_UPI0003AF1724 PREDICTED 5.77795349287e-05 0.000186287283038 0.000128507748109 +UniRef50_Q1QU74 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.72652167609e-05 0.000358156489471 0.00034089127271 +UniRef50_Q6FCN6 tRNA ) methyltransferase 0.000256212209626 0.00849171418077 0.00823550197114 +UniRef50_UPI00047DEB0D hypothetical protein 4.52367962977e-06 0.000617534076128 0.000613010396498 +UniRef50_UPI0004785335 hypothetical protein 1.82122398656e-05 4.0466542554e-05 2.22543026884e-05 +UniRef50_UPI0003690A51 hypothetical protein 1.37397559538e-05 1.59597392021e-05 2.2199832483e-06 +UniRef50_A0A035VZY3 0.000585156271758 0.000307131509617 -0.000278024762141 +UniRef50_A8FBX4 3 oxoacyl [acyl carrier protein] synthase 3 0.000122094595367 3.53406750296e-05 -8.67539203374e-05 +UniRef50_UPI00037C1BAA hypothetical protein 5.34376118582e-05 5.86476080023e-06 -4.7572851058e-05 +UniRef50_B1M613 GntR domain protein 0.00263808013418 0.00106454292821 -0.00157353720597 +UniRef50_R7PTP8 0.00199189146274 0.000248165298485 -0.00174372616425 +UniRef50_P0A0T2 Lactoylglutathione lyase 0.00013613610624 0.00275124955612 0.00261511344988 +UniRef50_Q0FYC5 8.26531849996e-05 0.000340338832007 0.000257685647007 +UniRef50_UPI00036FE1F3 hypothetical protein 5.83821530933e-06 3.42435388057e-05 2.84053234964e-05 +UniRef50_A3PL07 Isopentenyl diphosphate Delta isomerase 0.0111087583992 0.00641128999484 -0.00469746840436 +UniRef50_A3PRG0 0.00083672077002 0.000985325696855 0.000148604926835 +UniRef50_A7ZM51 Voltage gated ClC type chloride channel ClcB 0.000926872944512 0.000808875892042 -0.00011799705247 +UniRef50_O07631 GTP binding protein TypA BipA homolog 0.0226456624636 0.00692764458553 -0.0157180178781 +UniRef50_V0KMQ9 Pyruvate 0.00257194294777 0.000921906527381 -0.00165003642039 +UniRef50_M4NGZ8 ATP dependent zinc metalloprotease FtsH 0.000693778316813 0.00366050917015 0.00296673085334 +UniRef50_Q7VFS3 NADH quinone oxidoreductase subunit B 2.71711053829e-05 0.000189596656067 0.000162425550684 +UniRef50_UPI0002F2BA6C phosphoglyceromutase 1.65574222083e-05 1.65738181424e-05 1.63959341e-08 +UniRef50_X1FPD3 Marine sediment metagenome DNA, contig 6.87964836561e-06 7.59979584973e-06 7.2014748412e-07 +UniRef50_O27906 CoB CoM heterodisulfide reductase iron sulfur subunit C 0.00202701179436 0.000173206278698 -0.00185380551566 +UniRef50_K2AN26 1.73297512937e-05 3.21869275367e-05 1.4857176243e-05 +UniRef50_I4GV48 2.48062101151e-06 3.33649226382e-06 8.5587125231e-07 +UniRef50_F0RC69 2.00433523731e-06 2.46233829052e-05 2.26190476679e-05 +UniRef50_X5EHY0 Sodium hydrogen exchanger family protein 0.0210619565628 0.00733053838988 -0.0137314181729 +UniRef50_A6LVZ4 Glycerol 1 phosphate dehydrogenase (+)) 0.00066279883438 0.000678200889273 1.5402054893e-05 +UniRef50_A8ZUH7 Holliday junction ATP dependent DNA helicase RuvB 1.55527721116e-05 9.46713363959e-06 -6.08563847201e-06 +UniRef50_B9NXF6 Plasmid partitioning protein RepA 0.000333308458276 0.000106249749494 -0.000227058708782 +UniRef50_UPI0003F56407 hypothetical protein 5.17218252234e-06 1.075876593e-05 5.58658340766e-06 +UniRef50_B9KYR9 Polyribonucleotide nucleotidyltransferase 0.000527091752672 0.00326769737766 0.00274060562499 +UniRef50_Q7U9I1 Ribonuclease PH 7.65695853346e-06 2.11686589682e-05 1.35117004347e-05 +UniRef50_U5UJE9 0.0180600207159 0.00389625051803 -0.0141637701979 +UniRef50_A6LVF8 Signal transduction histidine kinase, LytS 0.000210856006213 0.000729932545394 0.000519076539181 +UniRef50_C0Z7Z0 Formamidopyrimidine DNA glycosylase 6.30584853844e-06 0.000435971349292 0.000429665500754 +UniRef50_W7Z395 Cold shock DEAD box protein A 8.90717327312e-06 1.138993359e-05 2.48276031688e-06 +UniRef50_Q3ZXC2 1 deoxy D xylulose 5 phosphate synthase 2.78982478667e-06 9.67666088446e-05 9.39767840579e-05 +UniRef50_I0KD42 8.63919048438e-05 2.80825071437e-05 -5.83093977001e-05 +UniRef50_Y3FJT1 0.004216438889 0.000300322073074 -0.00391611681593 +UniRef50_V4VCN9 0.00016508133623 3.27259672642e-06 -0.000161808739504 +UniRef50_Q6AHE8 Glutamate 1 semialdehyde 2,1 aminomutase 7.1248763967e-06 3.65273912647e-05 2.9402514868e-05 +UniRef50_S1HH61 Cyclic di GMP binding protein 0.00547941209687 0.00142553044142 -0.00405388165545 +UniRef50_L5QQP7 Type I restriction modification DNA specificity domain protein 0.000396974130375 0.00355308990285 0.00315611577247 +UniRef50_P55222 Cyclic AMP receptor like protein 0.000593084818241 0.000431119277652 -0.000161965540589 +UniRef50_C6SU58 Bacteriocin operon protein ScnE homolog 0.0051498495613 0.000696238046426 -0.00445361151487 +UniRef50_Q1Q2Q1 2.23583800242e-05 3.06716228936e-05 8.3132428694e-06 +UniRef50_Q7VIT0 1 deoxy D xylulose 5 phosphate reductoisomerase 0.000445958476869 0.00655205534562 0.00610609686875 +UniRef50_UPI0003AD0F18 hypothetical protein 1.51962883634e-05 3.04422987284e-05 1.5246010365e-05 +UniRef50_H2K2L5 Anti sigma factor 2.87028174756e-05 0.00140606938378 0.0013773665663 +UniRef50_B9E8P7 0.0117585639058 0.00363372371757 -0.00812484018823 +UniRef50_UPI00045E98AE hypothetical protein 2.17673155582e-06 4.38527923101e-06 2.20854767519e-06 +UniRef50_Q3IUW6 Putative conjugative transfer factor, TraB 0.00586413496936 0.00138521226105 -0.00447892270831 +UniRef50_A3JQQ6 9.05133237508e-06 5.71553800739e-06 -3.33579436769e-06 +UniRef50_B1JLB8 0.00129331771088 0.00158343711284 0.00029011940196 +UniRef50_A1B1W2 0.000308728681172 4.12145865429e-05 -0.000267514094629 +UniRef50_P64543 0.000828479400653 0.000851875111142 2.3395710489e-05 +UniRef50_B0KJ12 KAP P loop domain protein 9.15918502187e-06 0.00130775344652 0.0012985942615 +UniRef50_J7MB46 Quinolone resistance protein 0.000809880982916 0.0015087873687 0.000698906385784 +UniRef50_A0A058ZI44 5.48959453517e-05 5.39378129694e-05 -9.581323823e-07 +UniRef50_UPI0004756747 6,7 dimethyl 8 ribityllumazine synthase 1.8030550393e-05 2.82858879607e-05 1.02553375677e-05 +UniRef50_E6MX89 0.000748941698309 0.0412613346166 0.0405123929183 +UniRef50_Q38V64 Alanine racemase 1.29249195263e-05 0.00219934897039 0.00218642405086 +UniRef50_Q8XV10 Elongation factor G 1 0.000258038355446 0.0135612186774 0.013303180322 +UniRef50_E7IEY2 0.000138415488225 2.67370526219e-05 -0.000111678435603 +UniRef50_K7SMY3 Phosphoglycerate mutase family protein 0.000794707344946 0.009442226434 0.00864751908905 +UniRef50_A5IPM4 0.0160587725539 0.00557751520879 -0.0104812573451 +UniRef50_UPI00039C12F7 hypothetical protein 9.40642543756e-05 2.29309603022e-05 -7.11332940734e-05 +UniRef50_UPI000373BCBB hypothetical protein 5.46306918626e-06 7.76895718027e-06 2.30588799401e-06 +UniRef50_H5M601 Beta galactosidase small chain family protein 0.00211102532133 0.000338502154399 -0.00177252316693 +UniRef50_UPI0002374DEC ABC transporter, permease ATP binding protein 6.04482510819e-06 1.16327372381e-05 5.58791212991e-06 +UniRef50_B3CQC3 Phosphoglycerate kinase 2.60933511721e-05 2.65253410208e-05 4.319898487e-07 +UniRef50_Q2K5Z5 Leucine responsive transcriptional regulator protein, AsnC family 0.0186330557244 0.00178918484814 -0.0168438708763 +UniRef50_Q2YZ71 Imidazole glycerol phosphate synthase subunit HisF 0.0288196427476 0.00322805593995 -0.0255915868076 +UniRef50_B2SII2 Glycine tRNA ligase alpha subunit 0.0123748733341 0.0147236726277 0.0023487992936 +UniRef50_UPI00039E6CDE 50S ribosomal protein L17 1.11967442657e-05 7.20993760686e-05 6.09026318029e-05 +UniRef50_UPI0003F05D85 PREDICTED 1.78195132838e-05 0.000345589255063 0.000327769741779 +UniRef50_Q28RK4 Orotate phosphoribosyltransferase 0.000111220159952 5.91975211019e-05 -5.20226388501e-05 +UniRef50_Q5HM44 Zinc type alcohol dehydrogenase like protein SERP1785 0.0234720409477 0.00754857999409 -0.0159234609536 +UniRef50_A3PRI0 Forkhead associated protein 0.000768581913618 0.000145955537989 -0.000622626375629 +UniRef50_UPI00047CBFD0 hypothetical protein 0.00038753355487 0.000146293075096 -0.000241240479774 +UniRef50_B5F731 Non specific ribonucleoside hydrolase RihC 0.00313533492155 0.000407333386473 -0.00272800153508 +UniRef50_P0AFI1 Probable oxalyl CoA decarboxylase 0.0021352762228 0.000797929980985 -0.00133734624181 +UniRef50_B4EX96 HTH type transcriptional regulator BetI 0.0119489730753 0.00139318247705 -0.0105557905983 +UniRef50_B4RQ09 PglB 9.28244234828e-05 0.00232654876292 0.00223372433944 +UniRef50_A0A023KRT9 0.00233754801327 0.0003565191612 -0.00198102885207 +UniRef50_A0A046SJ38 PE PGRS family protein PE_PGRS54 5.01645641543e-07 2.14054200114e-06 1.6388963596e-06 +UniRef50_UPI000360B5E8 hypothetical protein 4.64195982495e-06 7.58066416452e-06 2.93870433957e-06 +UniRef50_UPI0003C15BBB 8.84322945304e-06 2.70551086603e-06 -6.13771858701e-06 +UniRef50_A6LRJ1 Amino acid permease associated region 0.000432414948181 0.00134089189795 0.000908476949769 +UniRef50_UPI0004791D16 hypothetical protein 2.29303341488e-05 5.45545329802e-05 3.16241988314e-05 +UniRef50_Q49YA1 Uroporphyrinogen III synthase 0.00739001850706 0.00113501117807 -0.00625500732899 +UniRef50_Q89EB1 Bll7176 protein 0.00767217901022 0.00224520260367 -0.00542697640655 +UniRef50_Q6F885 0.000294910928794 0.00647658193312 0.00618167100433 +UniRef50_R9YS82 tRNA threonylcarbamoyl adenosine modification protein YeaZ 0.0240280820458 0.00855779619975 -0.015470285846 +UniRef50_X1ABS4 Marine sediment metagenome DNA, contig 3.99884952848e-05 3.63689403977e-05 -3.6195548871e-06 +UniRef50_Q5HL89 0.00947641034654 0.00353413568556 -0.00594227466098 +UniRef50_W0NHL6 Branched chain amino acid ABC transporter ATP binding protein 0.00997378282825 0.00274964161527 -0.00722414121298 +UniRef50_Q9ZKU5 Acetate kinase 0.00095828622276 0.00456224764565 0.00360396142289 +UniRef50_A3PP96 TonB dependent siderophore receptor 0.0109029725924 0.00201798695158 -0.00888498564082 +UniRef50_UPI000349F59B hypothetical protein 9.82989582285e-06 2.24207230432e-05 1.25908272204e-05 +UniRef50_B0KMS2 1.04417019246e-05 8.29103858392e-05 7.24686839146e-05 +UniRef50_UPI000369906D hypothetical protein 0.000462492093701 0.000101742789409 -0.000360749304292 +UniRef50_X0ZTS5 Marine sediment metagenome DNA, contig 0.000446719007521 0.000342676011522 -0.000104042995999 +UniRef50_UPI00016A7F76 branched chain amino acid ABC transporter, ATP binding protein, putative, partial 0.000172634369719 5.79557177821e-05 -0.000114678651937 +UniRef50_Q28Q04 Phosphate ABC transporter membrane protein 2, PhoT family 0.00359254093474 0.000440137395082 -0.00315240353966 +UniRef50_A5ULX2 Adhesin like protein 0.00450304950556 0.0011305085534 -0.00337254095216 +UniRef50_M9VA38 Anchored repeat type ABC transporter, ATP binding subunit 0.000794399234004 0.00214980360775 0.00135540437375 +UniRef50_UPI000350B839 PREDICTED 0.0010021312947 0.00050641974357 -0.00049571155113 +UniRef50_UPI000377C272 hypothetical protein 7.02417672814e-06 2.13400455753e-06 -4.89017217061e-06 +UniRef50_G0DVM2 ABC transporter ATP binding protein 0.000371996109852 0.00559158482614 0.00521958871629 +UniRef50_UPI0003B35C64 MerR family transcriptional regulator 0.000179094947032 2.84034325442e-05 -0.000150691514488 +UniRef50_Q8FMG3 GTP cyclohydrolase 1 0.0068051226662 0.0043980082463 -0.0024071144199 +UniRef50_UPI0002D62563 hypothetical protein 0.000431990838211 5.9146847785e-05 -0.000372843990426 +UniRef50_A5ULL0 PyrE like protein 0.00365881650461 0.00134674446517 -0.00231207203944 +UniRef50_F2AIM9 0.00245026320497 0.0012905598376 -0.00115970336737 +UniRef50_A5UNK0 N acetyltransferase, GNAT family 0.00273621213779 0.00104158181736 -0.00169463032043 +UniRef50_G2SIS1 Gamma glutamyltransferase 0.000148645555952 0.00535202403857 0.00520337848262 +UniRef50_A6V4P3 Trans aconitate 2 methyltransferase 0.000421259974083 0.000938933079941 0.000517673105858 +UniRef50_UPI0002736FFE GntR family transcriptional regulator 5.01361488927e-05 0.000122067286509 7.19311376163e-05 +UniRef50_R4K9K7 0.000268217239288 0.00154533666847 0.00127711942918 +UniRef50_B7A6L8 4.41067028242e-05 0.000699786618047 0.000655679915223 +UniRef50_A6UW73 Argininosuccinate lyase 0.00295695614437 0.00138190100552 -0.00157505513885 +UniRef50_B0VLA1 0.000171712260249 0.0059044610884 0.00573274882815 +UniRef50_Q46RL8 Trans feruloyl CoA synthase 7.10450418114e-05 0.00809788957508 0.00802684453327 +UniRef50_UPI00037F929E hypothetical protein 7.52991739432e-06 2.5397030622e-05 1.78671132277e-05 +UniRef50_K5YBM6 6.0082264109e-05 7.0117833249e-05 1.003556914e-05 +UniRef50_R5ZXT3 7.84129352962e-06 1.27651696617e-05 4.92387613208e-06 +UniRef50_UPI0003F68FC8 hypothetical protein 4.98293520664e-06 2.79970255203e-05 2.30140903137e-05 +UniRef50_A5UKD8 Adhesin like protein 0.00221644117185 0.0007231065879 -0.00149333458395 +UniRef50_G7M5R9 0.000458179202255 0.00127204744013 0.000813868237875 +UniRef50_R5VLQ7 Predicted acyltransferase 0.000279619251005 0.00337504805937 0.00309542880837 +UniRef50_B0TI92 S adenosylmethionine decarboxylase proenzyme 0.0040729586849 0.00562030481807 0.00154734613317 +UniRef50_P37251 Acetolactate synthase large subunit 1.42796143058e-05 3.74434981121e-05 2.31638838063e-05 +UniRef50_M1PXL5 Sensor histidine kinase 0.000347352227904 0.00110573844036 0.000758386212456 +UniRef50_C2Z7L9 6.22343944084e-05 0.000739338656704 0.000677104262296 +UniRef50_E8SFE6 0.00780593506899 0.00356521842326 -0.00424071664573 +UniRef50_M4R5V1 0.000341631850066 0.00379064368286 0.00344901183279 +UniRef50_Q9Z8R3 DNA gyrase subunit B 6.09051204113e-06 1.75457671522e-05 1.14552551111e-05 +UniRef50_Q8FCZ8 0.00130033358621 0.000697598516207 -0.000602735070003 +UniRef50_Q8FIB4 0.00322946452092 0.000661381253552 -0.00256808326737 +UniRef50_W8T781 Enterobactin synthase 7.64199186819e-05 0.000138450791829 6.20308731471e-05 +UniRef50_A9GRJ8 1.21864883278e-05 0.000626409934916 0.000614223446588 +UniRef50_Q9KD39 Putative GTP cyclohydrolase 1 type 2 9.29101982161e-06 0.000220660053703 0.000211369033881 +UniRef50_UPI0002FB4076 hypothetical protein 3.89553160012e-05 5.86104233824e-05 1.96551073812e-05 +UniRef50_B9KTP9 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.00087481225201 0.000493470210772 -0.000381342041238 +UniRef50_UPI000350BA5C 5.29900924189e-06 7.26721007003e-06 1.96820082814e-06 +UniRef50_A8IG02 Phosphate starvation inducible protein 0.00812923575682 0.00348297700341 -0.00464625875341 +UniRef50_P77503 0.00347480436562 0.00494073766593 0.00146593330031 +UniRef50_Q8FK36 Cation efflux system protein CusA 0.000421167021005 0.000123514856297 -0.000297652164708 +UniRef50_K0C7J8 Glutathione S transferase domain protein 0.00223435732697 0.000370690424931 -0.00186366690204 +UniRef50_UPI0003C7F072 DNA binding protein 0.000162006688492 0.00111269118695 0.000950684498458 +UniRef50_Q9CJR2 0.000119987176185 0.00141222290873 0.00129223573255 +UniRef50_P77509 0.000543104811486 0.0005755298106 3.2424999114e-05 +UniRef50_B9KPE8 0.0100933085386 0.000574905051763 -0.00951840348684 +UniRef50_J9P5H2 4.84595718711e-05 0.000137250211555 8.87906396839e-05 +UniRef50_Q6FD84 Urease subunit beta 0.00153612540492 0.000579052363126 -0.000957073041794 +UniRef50_B9JTR3 ATP synthase gamma chain 0.00776772345897 0.000750842177285 -0.00701688128168 +UniRef50_UPI00040C67E8 hypothetical protein 5.20270139255e-05 7.73221387876e-05 2.52951248621e-05 +UniRef50_UPI00047E5667 PTS fructose transporter subunit IIBC 5.09837372503e-06 0.000378278982343 0.000373180608618 +UniRef50_A5UL83 30S ribosomal protein S3 0.00236489475572 0.00121828693992 -0.0011466078158 +UniRef50_C7N8H5 Lipoyltransferase and lipoate protein ligase 0.00573633539 0.00179093935162 -0.00394539603838 +UniRef50_UPI00047C1EB1 hypothetical protein 1.37364212615e-06 2.92557476167e-06 1.55193263552e-06 +UniRef50_M1BG02 8.73615990094e-07 1.70063429579e-05 1.61327269678e-05 +UniRef50_Q21Y67 ATP dependent Clp protease proteolytic subunit 8.63984350154e-06 0.000160692457284 0.000152052613782 +UniRef50_UPI0003C19464 PREDICTED 7.82982570874e-05 1.74076596667e-05 -6.08905974207e-05 +UniRef50_A5WGE7 1 deoxy D xylulose 5 phosphate reductoisomerase 0.000271778695192 0.00539467744712 0.00512289875193 +UniRef50_UPI0004407D87 hypothetical protein FOMMEDRAFT_83654 9.26572566966e-05 0.000343726909496 0.000251069652799 +UniRef50_G8W4V0 Aromatic amino acid transporter 0.00175660869402 0.000212203620496 -0.00154440507352 +UniRef50_Q04IT2 Segregation and condensation protein A 0.00321624152886 0.00267591608365 -0.00054032544521 +UniRef50_Q73YR0 FtsQ 2.31021089177e-05 2.69962151971e-05 3.8941062794e-06 +UniRef50_UPI0003818A60 hypothetical protein 1.47632401516e-05 1.60566958286e-05 1.293455677e-06 +UniRef50_A0RRT8 Imidazole glycerol phosphate synthase subunit HisF 0.00682627689427 0.00338360232196 -0.00344267457231 +UniRef50_UPI000255E8B6 molybdopterin molybdochelatase 7.92298501578e-06 1.5978580845e-05 8.05559582922e-06 +UniRef50_A9W3A9 5.63597684238e-05 1.22996209139e-05 -4.40601475099e-05 +UniRef50_H4PDP4 Integrase core domain protein 0.00301412334254 0.00180806146039 -0.00120606188215 +UniRef50_I6TUC0 UDP glucose 6 dehydrogenase 0.000608950878337 0.00131685031215 0.000707899433813 +UniRef50_Q9JWJ7 Ribosomal RNA small subunit methyltransferase I 0.00040555503329 0.00116852640315 0.00076297136986 +UniRef50_UPI00046E904F allantoinase, partial 6.46328634424e-06 1.37995389956e-05 7.33625265136e-06 +UniRef50_Q0FVS1 3.70773414769e-05 1.57193413515e-05 -2.13580001254e-05 +UniRef50_D7GCL3 Cation transport protein 0.000747907192158 0.0035194524375 0.00277154524534 +UniRef50_F4BLG0 8.07432540743e-06 3.01031027507e-05 2.20287773433e-05 +UniRef50_D5C7M7 6 phospho alpha glucosidase 0.000613401120288 0.00294017768569 0.0023267765654 +UniRef50_X1Y8J9 6.99299033059e-06 1.39728562473e-05 6.97986591671e-06 +UniRef50_C1KVE4 Uridine kinase 0.0225478616875 0.0161253363425 -0.006422525345 +UniRef50_W8RU50 GTA host specificity protein 8.41663061186e-06 7.9391185713e-06 -4.7751204056e-07 +UniRef50_UPI0003EFB0C6 hypothetical protein, partial 8.03299795863e-05 4.08349777735e-06 -7.62464818089e-05 +UniRef50_O34436 Probable low affinity inorganic phosphate transporter 0.0265132166772 0.00727277337269 -0.0192404433045 +UniRef50_R0ZXH9 3.1244887706e-05 9.3936415809e-05 6.2691528103e-05 +UniRef50_Q9L7S0 3 sulfolactaldehyde reductase 0.00419477277585 0.00146917406662 -0.00272559870923 +UniRef50_Q9CMC7 tRNA dimethylallyltransferase 0.00442254404504 0.00095941948423 -0.00346312456081 +UniRef50_A3PLQ2 Glycoside hydrolase, family 16 0.00171565394798 0.000373031627616 -0.00134262232036 +UniRef50_Q9PMT4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.000250647684992 0.00459216815504 0.00434152047005 +UniRef50_UPI0002DDE806 hypothetical protein 4.88277720631e-05 1.73249803567e-05 -3.15027917064e-05 +UniRef50_A0A033NL01 0.000103362779302 1.7964420062e-05 -8.539835924e-05 +UniRef50_Q5HRE0 UPF0272 protein SERP0253 0.0121644600107 0.00300921628803 -0.00915524372267 +UniRef50_Q5HNA8 0.00879492359642 0.00184692369288 -0.00694799990354 +UniRef50_R4REY2 9.35959437895e-05 0.000207830890927 0.000114234947137 +UniRef50_A6M2K2 Methyl accepting chemotaxis sensory transducer 0.000215597116244 0.00137921739413 0.00116362027789 +UniRef50_Q89XS8 Branched chain amino acid transaminase 0.00786612504329 0.00231936364357 -0.00554676139972 +UniRef50_P0C2L2 Glutathione transport system permease protein GsiD 0.00197209305265 0.000233451940873 -0.00173864111178 +UniRef50_I4F571 0.000344983293 0.000144062992721 -0.000200920300279 +UniRef50_G7M5T5 0.000509441935021 0.000560459658694 5.1017723673e-05 +UniRef50_E8XP36 Outer membrane protein assembly factor BamC 0.00205858621324 0.000275996920751 -0.00178258929249 +UniRef50_UPI0003B65F02 3 hydroxyacyl CoA dehydrogenase 1.26027651884e-05 2.69618085624e-05 1.4359043374e-05 +UniRef50_UPI0003651249 hypothetical protein 0.000104693635558 5.58823125138e-05 -4.88113230442e-05 +UniRef50_D8JEK9 Phage related protein family protein 0.00035201879381 0.00783711567608 0.00748509688227 +UniRef50_Q2W276 0.000132714905255 0.000110493452284 -2.2221452971e-05 +UniRef50_A6LX89 Elongation factor G, domain IV 0.000773205535494 0.000648277767855 -0.000124927767639 +UniRef50_UPI0001FFE2B2 MarR family transcriptional regulator 1.50351838174e-05 0.000117080923471 0.000102045739654 +UniRef50_UPI0003B50DDF transposase 0.000188613600258 0.000170101437937 -1.8512162321e-05 +UniRef50_P39396 Inner membrane protein YjiY 0.00301120479254 0.00167419231318 -0.00133701247936 +UniRef50_UPI00047720D7 mannitol ABC transporter permease 0.000387679761388 0.000178484901848 -0.00020919485954 +UniRef50_UPI0004059D26 hypothetical protein 1.14764978599e-05 5.3870103275e-05 4.23936054151e-05 +UniRef50_I2NDA2 PF06738 domain protein 6.07945638739e-05 4.71042512946e-05 -1.36903125793e-05 +UniRef50_H8HC20 Rhodanese like domain protein 0.00300114682395 0.00110181953877 -0.00189932728518 +UniRef50_A7MGP9 0.000299592054644 0.000686783035329 0.000387190980685 +UniRef50_W5X3Y6 50S ribosomal protein L1 3.42040678106e-05 0.000302036460737 0.000267832392926 +UniRef50_Q46814 Probable hypoxanthine oxidase XdhD 0.00245513973548 0.000804560244025 -0.00165057949146 +UniRef50_UPI0003AF618D PREDICTED 1.40825318871e-05 0.000129639478793 0.000115556946906 +UniRef50_B9T9T8 0.000200416346621 4.82091617308e-05 -0.00015220718489 +UniRef50_P76369 0.00278244392301 0.000299307471484 -0.00248313645153 +UniRef50_A0A023B4Y6 1.44340266822e-05 1.65926709305e-05 2.1586442483e-06 +UniRef50_Q88PG8 Dipeptide ABC transporter, periplasmic dipeptide binding protein 0.00147125311932 0.000742504450425 -0.000728748668895 +UniRef50_A5F3J8 30S ribosomal protein S7 0.0551593175362 0.0557451758787 0.0005858583425 +UniRef50_D4KTJ1 ABC type Fe3+ hydroxamate transport system, periplasmic component 0.000243459729101 0.00182230372662 0.00157884399752 +UniRef50_UPI0002F2DA04 hypothetical protein 2.07721582677e-05 8.40478702869e-06 -1.2367371239e-05 +UniRef50_P10346 Glutamine transport ATP binding protein GlnQ 0.00763480675589 0.00276649053952 -0.00486831621637 +UniRef50_A0RA50 Alcohol dehydrogenase, zinc containing protein 0.00100611995971 0.000179160791827 -0.000826959167883 +UniRef50_Z4CKX6 0.000238277775142 6.1503483509e-05 -0.000176774291633 +UniRef50_A8Y0M2 Protein CBG21728 0.000376653230877 0.000407252046241 3.0598815364e-05 +UniRef50_UPI00026573D2 PREDICTED 2.42271584122e-05 1.0628956714e-05 -1.35982016982e-05 +UniRef50_P27833 dTDP 4 amino 4,6 dideoxygalactose transaminase 0.002802401752 0.00046452078599 -0.00233788096601 +UniRef50_D3E2C7 RNA binding protein 0.00210425562608 0.000628310334557 -0.00147594529152 +UniRef50_UPI0003DEB96B PREDICTED 5.11596203503e-05 6.93134371095e-05 1.81538167592e-05 +UniRef50_UPI00027F4AD8 0.000561400445783 0.000717068506854 0.000155668061071 +UniRef50_N1M8P2 0.000581519728681 0.000299865272711 -0.00028165445597 +UniRef50_D3ZUH5 Protein RGD1566084 1.93227575235e-05 9.168420621e-06 -1.01543369025e-05 +UniRef50_Q63NI4 Methionine import ATP binding protein MetN 2 0.000219608050819 8.84523200785e-06 -0.000210762818811 +UniRef50_UPI000367D0D4 hypothetical protein 4.00211803659e-05 6.30263613247e-05 2.30051809588e-05 +UniRef50_C0DRQ8 7.96543573264e-05 3.43539445801e-05 -4.53004127463e-05 +UniRef50_UPI0003B3FD89 ribonuclease E 7.87893460917e-06 3.23299969984e-06 -4.64593490933e-06 +UniRef50_Q8CMU9 Protein translocase subunit SecA 2 0.0256575032881 0.00545343430768 -0.0202040689804 +UniRef50_D5ALK5 0.00153500836213 0.000563990854904 -0.000971017507226 +UniRef50_P33234 HTH type transcriptional regulator AdiY 0.00654895919509 0.00298291729603 -0.00356604189906 +UniRef50_UPI0003B59851 alpha amylase 3.27064237454e-06 4.53503308009e-06 1.26439070555e-06 +UniRef50_UPI00037EDB2C hypothetical protein 1.07268040385e-05 6.98923856825e-05 5.9165581644e-05 +UniRef50_Q8KE45 UPF0324 membrane protein CT0845 0.000300655877108 0.00147110814645 0.00117045226934 +UniRef50_G0DSM5 Phosphotransferase enzyme family protein 0.000335744749695 0.00469595653126 0.00436021178156 +UniRef50_UPI00037A1055 hypothetical protein 1.17830562925e-05 7.76230358328e-05 6.58399795403e-05 +UniRef50_A0A059DM35 1.34959902318e-05 7.0976116436e-05 5.74801262042e-05 +UniRef50_O86810 DNA translocase FtsK 0.000221840760214 0.00580795293583 0.00558611217562 +UniRef50_Q03PU9 DNA directed RNA polymerase subunit beta 0.000215529640536 0.000156615034484 -5.8914606052e-05 +UniRef50_UPI0003C10113 2.39757844185e-05 4.56746563182e-05 2.16988718997e-05 +UniRef50_W7WPQ3 0.00123012413117 0.00293242250447 0.0017022983733 +UniRef50_A7ZTX6 Ketol acid reductoisomerase 0.00262761631757 0.00122262686577 -0.0014049894518 +UniRef50_J4SMJ9 0.000101280545124 6.10338767555e-05 -4.02466683685e-05 +UniRef50_Q0SIB7 Hemin import ATP binding protein HmuV 6.2887668822e-06 4.16240961109e-05 3.53353292287e-05 +UniRef50_O32176 Probable acyl CoA dehydrogenase 0.000178909383646 0.000466944115205 0.000288034731559 +UniRef50_A7ZKS4 Phosphatase NudJ 0.00502338986561 0.00119605812642 -0.00382733173919 +UniRef50_Q6GCC9 Efem EfeO family lipoprotein 0.0119688526748 0.00273928442559 -0.00922956824921 +UniRef50_A0A017HGM4 Putative outer membrane lipoprotein 1.14911380274e-05 7.07627926185e-06 -4.41485876555e-06 +UniRef50_UPI000476B824 CpxR 1.38566080968e-05 2.92956886931e-05 1.54390805963e-05 +UniRef50_UPI00046D7612 hypothetical protein 3.63242282101e-06 0.000262616567884 0.000258984145063 +UniRef50_L8UE55 PTS system, galactitol specific IIC component 0.0017309970547 0.000388574612093 -0.00134242244261 +UniRef50_Q9RTN2 Putative phosphoenolpyruvate synthase regulatory protein 0.000408502003005 0.0270017661622 0.0265932641592 +UniRef50_UPI00036E3FCF phospholipase C, partial 4.94717838992e-06 1.49713180762e-05 1.00241396863e-05 +UniRef50_Q6XQN6 Nicotinate phosphoribosyltransferase 3.11684037033e-06 7.58539051349e-06 4.46855014316e-06 +UniRef50_G8T537 Transposase IS66 2.81387596293e-06 4.44976321649e-06 1.63588725356e-06 +UniRef50_A0A022H366 Transposase 5.13472494063e-05 0.00268484778297 0.00263350053356 +UniRef50_D7DUK5 Tryptophan tRNA ligase 0.00241132256863 0.000333961071697 -0.00207736149693 +UniRef50_A5UJH1 0.00266266408825 0.000733240097973 -0.00192942399028 +UniRef50_UPI000365D184 hypothetical protein 3.18876760572e-05 0.000207832948651 0.000175945272594 +UniRef50_A0A031Z188 Replication initiation protein 0.000245440372718 0.000165475243496 -7.9965129222e-05 +UniRef50_G8R9I8 Secretory antigen SsaA 0.0121556998458 0.000577713106287 -0.0115779867395 +UniRef50_D3QGA7 Luciferase like monooxygenase 0.0213540442619 0.00610190014142 -0.0152521441205 +UniRef50_H5IJ08 Putative phosphotransferase ydiA domain protein 0.00130167582364 0.000437506229925 -0.000864169593715 +UniRef50_UPI0002B461E9 PREDICTED 0.000199899698526 0.000341226561394 0.000141326862868 +UniRef50_UPI0003724D90 hypothetical protein, partial 4.04813725308e-05 6.07076929753e-05 2.02263204445e-05 +UniRef50_P07962 Methyl coenzyme M reductase subunit alpha 0.00467328378824 0.000245986392399 -0.00442729739584 +UniRef50_A1SJB1 Adenine phosphoribosyltransferase 0.000213268920259 0.0129652779239 0.0127520090036 +UniRef50_UPI00036946A1 MULTISPECIES 9.17883611198e-05 8.59461812826e-05 -5.8421798372e-06 +UniRef50_UPI0003C7ADB6 hypothetical protein, partial 1.64130390382e-05 0.000284851560469 0.000268438521431 +UniRef50_E6M7L3 0.000521870030673 0.00012431477853 -0.000397555252143 +UniRef50_B8ID11 Dihydroorotate dehydrogenase 6.5998345586e-06 8.49687964727e-06 1.89704508867e-06 +UniRef50_A0A058Z181 3.89781183141e-07 8.42553071784e-06 8.0357495347e-06 +UniRef50_UPI000378D9D6 MULTISPECIES 0.000121566238292 0.000114130524423 -7.435713869e-06 +UniRef50_A1V5P8 Nitrite extrusion protein 0.0002059468112 0.000507635054785 0.000301688243585 +UniRef50_A0A059MV07 3D trihydroxycyclohexane 1,2 dione hydrolase 7.89169314675e-05 0.00562200671941 0.00554308978794 +UniRef50_Q2RS22 Nickel import ATP binding protein NikE 0.00172865639535 0.000343391517665 -0.00138526487768 +UniRef50_UPI000475FACA phage tail protein 2.17647527493e-05 3.38772112259e-05 1.21124584766e-05 +UniRef50_I6U0Z2 Transcriptional regulator 0.00534926201181 0.0022149155666 -0.00313434644521 +UniRef50_B9KX94 ATPase, ParA type 0.0196446599325 0.00458150337815 -0.0150631565543 +UniRef50_G0HAA3 Putative membrane protein 3.27737682008e-05 0.000313172873074 0.000280399104873 +UniRef50_B1XW26 Lipoprotein signal peptidase 1.13026914727e-05 2.87216727006e-05 1.74189812279e-05 +UniRef50_B1KEG2 40 residue YVTN family beta propeller repeat protein 0.000107976115006 1.1364668986e-05 -9.661144602e-05 +UniRef50_K7RRX2 Lipoprotein signal peptidase 0.00044150408053 0.0047975496827 0.00435604560217 +UniRef50_G7M388 CoA disulfide reductase 4.59414996592e-05 0.00127761251622 0.00123167101656 +UniRef50_E7C400 Fe S oxidoreductase 5.49645143113e-06 1.17585981643e-05 6.26214673317e-06 +UniRef50_D9SNP1 OmpA MotB domain protein 0.0027159816135 0.00187080877618 -0.00084517283732 +UniRef50_F2AJ88 0.000402185676218 0.000156094570083 -0.000246091106135 +UniRef50_UPI00046577D3 dihydroxy acid dehydratase 4.67397024988e-05 3.10562978799e-05 -1.56834046189e-05 +UniRef50_E3GX46 Triphosphoribosyl dephospho CoA protein 0.0036065429991 0.0015770722748 -0.0020294707243 +UniRef50_E6CES2 2.16840228218e-06 0.00649775330824 0.00649558490596 +UniRef50_U3P882 0.000114274265039 0.00573424167317 0.00561996740813 +UniRef50_L0WHQ4 Short chain dehydrogenase reductase SDR 0.000308845282678 0.00633977153008 0.0060309262474 +UniRef50_Q0FGF7 Fe S metabolism associated family protein 0.000207408041022 2.62907580684e-05 -0.000181117282954 +UniRef50_UPI0003B39369 hypothetical protein 0.000216455590433 4.52497292161e-05 -0.000171205861217 +UniRef50_UPI0003840079 PREDICTED 1.3903645837e-05 6.56049110031e-05 5.17012651661e-05 +UniRef50_UPI00037D595A hypothetical protein 2.97089594838e-06 2.59681137122e-05 2.29972177638e-05 +UniRef50_UPI0003B59F3E iron ABC transporter substrate binding protein 3.34235057783e-05 3.60612104801e-05 2.6377047018e-06 +UniRef50_I1B3N6 0.00109098768827 0.000471597269197 -0.000619390419073 +UniRef50_A3CTF1 Nucleoside diphosphate kinase 1.56121172689e-05 1.79321490278e-05 2.3200317589e-06 +UniRef50_O27714 Transcription elongation factor Spt5 0.000241462252992 0.000755607774488 0.000514145521496 +UniRef50_UPI00047C566A macrolide ABC transporter ATP binding protein 4.11000424037e-06 0.000620222673958 0.000616112669718 +UniRef50_A3CMZ5 Dihydrolipoamide acetyl transferase, E2 component, putative 0.00544956103083 0.0021517964312 -0.00329776459963 +UniRef50_R7KL80 0.000484204971575 0.00441158866774 0.00392738369616 +UniRef50_D0ZSY8 Anti sigma E factor RseA 0.00272039707059 0.00137272082355 -0.00134767624704 +UniRef50_UPI00026C6BF8 6 pyruvoyl tetrahydropterin synthase 9.84517308623e-05 0.000220109919488 0.000121658188626 +UniRef50_G2I067 DNA gyrase modulator 0.00239704322997 0.000728326609419 -0.00166871662055 +UniRef50_O33406 Uptake hydrogenase large subunit 0.0100702773329 0.00212717096976 -0.00794310636314 +UniRef50_S4MZL0 0.000143336645087 0.000151696611984 8.359966897e-06 +UniRef50_Q7A7M5 UPF0324 membrane protein SA0329 0.0217176533114 0.0101676502468 -0.0115500030646 +UniRef50_UPI0004778F57 hypothetical protein 2.24821107509e-05 0.000200138698081 0.00017765658733 +UniRef50_R7PUY3 0.00239415561391 0.000972995717799 -0.00142115989611 +UniRef50_P0A960 Glutamate pyruvate aminotransferase AlaA 0.00290092267126 0.00107226908642 -0.00182865358484 +UniRef50_B9KJF9 Flagellar hook protein FlgE 0.000788725468533 0.000302850801117 -0.000485874667416 +UniRef50_B4F105 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.000881023632128 0.00817040286877 0.00728937923664 +UniRef50_R0XQP3 1.67798834742e-05 2.68246152003e-05 1.00447317261e-05 +UniRef50_A8IEX2 2.31765666474e-05 9.26347065269e-05 6.94581398795e-05 +UniRef50_Q8DUY4 Putative two component membrane permease complex subunit SMU_746c 0.00742575607476 0.00182493819015 -0.00560081788461 +UniRef50_Q6FB27 Nitrate reductase, large subunit 9.94325010105e-05 0.00739611194907 0.00729667944806 +UniRef50_P74104 Riboflavin biosynthesis protein RibBA 2.87757048937e-05 8.48763930982e-05 5.61006882045e-05 +UniRef50_UPI000262CBE2 tRNA 2 selenouridine synthase 3.04451991156e-05 2.28536840298e-05 -7.5915150858e-06 +UniRef50_K0HTN3 0.000319472344066 0.00636900174076 0.00604952939669 +UniRef50_Q8XJE0 Geranyltranstransferase 0.000831550474524 0.000433977193254 -0.00039757328127 +UniRef50_UPI0002E69439 hypothetical protein 1.77358706065e-05 8.30491888664e-06 -9.43095171986e-06 +UniRef50_UPI0003B34D8A ribonuclease PH 2.72227797231e-05 6.69047162367e-06 -2.05323080994e-05 +UniRef50_UPI00046F223A hypothetical protein, partial 3.52851272132e-05 0.000159034388654 0.000123749261441 +UniRef50_P30860 ABC transporter arginine binding protein 1 0.00406067731075 0.000474638795622 -0.00358603851513 +UniRef50_W7VJ75 Fatty acid binding protein 0.000183480753267 0.000157340680608 -2.6140072659e-05 +UniRef50_D1B150 CreA family protein 1.01616129983e-05 1.71288733495e-05 6.9672603512e-06 +UniRef50_B9KJQ4 0.00364493649149 0.000409626445797 -0.00323531004569 +UniRef50_UPI00040C080C hypothetical protein 1.95684440754e-05 9.57558559283e-06 -9.99285848257e-06 +UniRef50_UPI0004448111 PREDICTED 4.89139670403e-06 5.95014580189e-06 1.05874909786e-06 +UniRef50_P32141 Sulfofructosephosphate aldolase 0.00377029824083 0.0011508679836 -0.00261943025723 +UniRef50_UPI000248C1C0 acyl CoA dehydrogenase domain containing protein 5.14947900503e-06 1.1427533118e-05 6.27805411297e-06 +UniRef50_B0V590 0.000510693947458 0.00754407083579 0.00703337688833 +UniRef50_W0W629 0.00033839678925 0.000469318901815 0.000130922112565 +UniRef50_P96611 Thioredoxin like protein YdbP 0.00297999794683 0.00127474836775 -0.00170524957908 +UniRef50_C5N3Y4 XkdX family protein 0.000775656141478 0.00141752018494 0.000641864043462 +UniRef50_Q9RDF2 GTPase Era 0.000342251190037 0.00687982472135 0.00653757353131 +UniRef50_B9KJN1 0.000317307645012 0.000295688183394 -2.1619461618e-05 +UniRef50_A9BIZ6 Glutamate synthase, NADH NADPH, small subunit 0.0274640610088 0.00878213327488 -0.0186819277339 +UniRef50_UPI000479919E phosphoribosylaminoimidazolecarboxamide formyltransferase 2.94591333676e-06 3.16372912258e-05 2.8691377889e-05 +UniRef50_UPI00037E9975 30S ribosomal protein S2 2.05255626578e-05 2.71068196902e-05 6.5812570324e-06 +UniRef50_UPI00037F5062 hypothetical protein 0.00014989529959 3.71726637111e-05 -0.000112722635879 +UniRef50_A3M5J5 0.000455529371447 0.00786880308308 0.00741327371163 +UniRef50_A0A058ZCQ6 0.000104422126926 8.1692034629e-05 -2.2730092297e-05 +UniRef50_A0NWH9 0.000857712349539 0.00064117767888 -0.000216534670659 +UniRef50_E1VQ88 Transcriptional regulator 0.000521844591342 0.00129579706428 0.000773952472938 +UniRef50_H5YDF6 8.63204288759e-05 0.000120547869604 3.42274407281e-05 +UniRef50_UPI00037EF636 hypothetical protein 4.24156623778e-05 0.000101588713435 5.91730510572e-05 +UniRef50_UPI00025582F7 aldehyde dehydrogenase 4.13492953149e-05 1.94162164875e-05 -2.19330788274e-05 +UniRef50_C5Q4V1 0.0085010914948 0.00115810472625 -0.00734298676855 +UniRef50_UPI000474476C hypothetical protein 2.8642377673e-05 1.34936514644e-05 -1.51487262086e-05 +UniRef50_F0JCL8 0.000136650160722 1.32994108175e-05 -0.000123350749904 +UniRef50_B7V9P7 RNA binding protein, putative 0.000807625501377 0.000381995238133 -0.000425630263244 +UniRef50_C3TQZ2 Thiamine import ATP binding protein ThiQ 0.00267146684242 0.000632387253784 -0.00203907958864 +UniRef50_K9AHZ4 6 pyruvoyl tetrahydropterin synthase 3.03659412023e-05 0.000143730540932 0.00011336459973 +UniRef50_P26239 Magnesium chelatase 38 kDa subunit 0.00160119057009 0.000394357039049 -0.00120683353104 +UniRef50_L7WEC7 ATG13 multi domain protein 0.000147974074888 1.94054226737e-05 -0.000128568652214 +UniRef50_L7WZ17 0.00703156611742 0.00446446055689 -0.00256710556053 +UniRef50_H6RCQ6 3.72708499602e-05 4.49166958368e-05 7.6458458766e-06 +UniRef50_UPI0003C42A4B PREDICTED 1.21048607915e-05 0.00119135674826 0.00117925188747 +UniRef50_UPI0002D92AB4 excinuclease ABC subunit A 1.12336526902e-06 1.17277901881e-05 1.06044249191e-05 +UniRef50_C5N6A8 Primosomal protein DnaI 0.0125825112181 0.00359176041581 -0.00899075080229 +UniRef50_UPI0001D2E559 AraC family transcriptional regulator 0.000498413298512 0.000130111790902 -0.00036830150761 +UniRef50_I6XQ31 Major ampullate silk protein 1 7.49712955625e-05 2.91066961843e-05 -4.58645993782e-05 +UniRef50_UPI000466460D hypothetical protein 2.92983877879e-05 0.000129589420485 0.000100291032697 +UniRef50_UPI00046FD040 TetR family transcriptional regulator 2.76536573302e-05 7.93912806693e-05 5.17376233391e-05 +UniRef50_R7PSI9 Adhesin like protein 0.00419591326205 0.000431876156779 -0.00376403710527 +UniRef50_Q99R75 Dehydrosqualene synthase 0.0124457164121 0.0031388646772 -0.0093068517349 +UniRef50_Q58730 Putative UTP glucose 1 phosphate uridylyltransferase 0.000197650782571 0.000101780333973 -9.5870448598e-05 +UniRef50_U7IYF3 0.000440645123179 0.00105160987611 0.000610964752931 +UniRef50_X0XJV9 Marine sediment metagenome DNA, contig 0.000487124451429 0.00021535575781 -0.000271768693619 +UniRef50_UPI0003753443 hypothetical protein 5.9234878654e-06 4.09400099948e-06 -1.82948686592e-06 +UniRef50_UPI000362D291 hypothetical protein 1.98247170144e-05 0.000149364125737 0.000129539408723 +UniRef50_Q8P0D4 Superoxide dismutase [Mn] 1.0760164393e-05 3.43225837357e-05 2.35624193427e-05 +UniRef50_Q2YX92 High affinity heme uptake system protein IsdE 0.00945460577931 0.00128149805755 -0.00817310772176 +UniRef50_A0A059ITV9 3.2647470543e-05 0.000178830144151 0.000146182673608 +UniRef50_O26254 Methyl coenzyme M reductase system, component A2 homolog 0.00244655021471 0.000830909189524 -0.00161564102519 +UniRef50_UPI00047B06F8 glyoxylate reductase 1.40047515937e-05 9.20334966499e-06 -4.80140192871e-06 +UniRef50_UPI00023753A7 FAD dependent oxidoreductase, partial 4.09417910627e-05 2.0344674525e-05 -2.05971165377e-05 +UniRef50_T1XU32 Lipoprotein, putative 3.31923274171e-05 6.64203869765e-05 3.32280595594e-05 +UniRef50_L7TP46 5.67569622804e-05 4.209882153e-05 -1.46581407504e-05 +UniRef50_UPI00037C0C48 hypothetical protein 4.02294012448e-06 0.000751431919193 0.000747408979069 +UniRef50_UPI000466A942 hypothetical protein 6.19738943776e-06 1.97472116324e-06 -4.22266827452e-06 +UniRef50_X1XR73 8.19424930871e-06 3.40148926758e-06 -4.79276004113e-06 +UniRef50_UPI000382799A hypothetical protein, partial 3.02858159622e-05 2.21170516455e-06 -2.80741107977e-05 +UniRef50_W1MW06 7.58326625022e-05 7.41787279937e-05 -1.6539345085e-06 +UniRef50_E8SHT5 8.36408920982e-05 9.93180775617e-05 1.56771854635e-05 +UniRef50_W0A6S5 2.4732936121e-05 1.50521049613e-05 -9.6808311597e-06 +UniRef50_D3QYX7 Leucine tRNA ligase 0.000478640917691 0.00100100136565 0.000522360447959 +UniRef50_Q9RXI9 Serine cycle enzyme, putative 0.000176395321898 0.036435498939 0.0362591036171 +UniRef50_UPI000469863D transcriptional regulator 0.00113370293364 0.000372560645709 -0.000761142287931 +UniRef50_X5DRL9 Nitroreductase family protein 0.00788957150914 0.00230825328073 -0.00558131822841 +UniRef50_S5E3S7 ABC transport protein permease component 0.00492901755771 0.000670635845474 -0.00425838171224 +UniRef50_O27918 Phosphopantetheine adenylyltransferase 0.00227029796111 0.0112875923052 0.00901729434409 +UniRef50_R5TNC8 0.000784342483387 0.0010411170146 0.000256774531213 +UniRef50_UPI00036F39E5 hypothetical protein 3.72269442025e-06 1.78175480315e-05 1.40948536113e-05 +UniRef50_C8S4K0 2.91383894493e-05 3.63018564145e-05 7.1634669652e-06 +UniRef50_Q96RQ3 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.51743658583e-06 8.27836749323e-06 5.7609309074e-06 +UniRef50_UPI00046231D8 hypothetical protein, partial 4.47373488591e-05 3.63930832826e-05 -8.3442655765e-06 +UniRef50_H3V6W0 Ornithine cyclodeaminase domain protein 0.000802447279365 0.000308927216958 -0.000493520062407 +UniRef50_UPI000471846E hypothetical protein 0.000808383915555 0.000278164153082 -0.000530219762473 +UniRef50_UPI000372055F 50S ribosomal protein L6, partial 0.000229646599554 4.01649805326e-05 -0.000189481619021 +UniRef50_D4GJK9 Protein CreA 2.11603448256e-05 1.66001093677e-05 -4.5602354579e-06 +UniRef50_F7XFL7 0.00351030479105 0.000506228361158 -0.00300407642989 +UniRef50_Q2RZH4 Thymidine kinase 1.63990413481e-05 1.27587419518e-05 -3.6402993963e-06 +UniRef50_C6XKW1 Cytochrome c type biogenesis protein CcmB 0.000524761460416 0.00144178507883 0.000917023618414 +UniRef50_UPI0003503A2D PREDICTED 0.000101293199152 4.26478368962e-05 -5.86453622558e-05 +UniRef50_Q99707 Methionine synthase 1.75343293271e-05 3.65250306683e-05 1.89907013412e-05 +UniRef50_B0JUG8 Bifunctional protein PyrR 4.19995227598e-05 9.26584859952e-05 5.06589632354e-05 +UniRef50_Q81G11 3 isopropylmalate dehydrogenase 4.06080723244e-05 0.00375632999248 0.00371572192016 +UniRef50_UPI0004730E10 50S ribosomal protein L22, partial 6.11187045318e-05 1.9772129883e-05 -4.13465746488e-05 +UniRef50_A0A050BZL5 PE PGRS family protein PE_PGRS6 9.90555305202e-06 8.87609487572e-05 7.88553957052e-05 +UniRef50_A7ZRN9 UPF0114 protein YqhA 0.00114947692097 0.000719554135001 -0.000429922785969 +UniRef50_UPI000345BBD3 hypothetical protein 1.5878632622e-05 3.04966947543e-06 -1.28289631466e-05 +UniRef50_UPI00036781FF hypothetical protein 5.40088668938e-06 5.55655161902e-06 1.5566492964e-07 +UniRef50_UPI000470525C spore coat protein 7.15587442686e-05 1.18755178693e-05 -5.96832263993e-05 +UniRef50_U5L7I3 Topology modulation protein 9.81988046651e-06 9.7325116865e-05 8.75052363985e-05 +UniRef50_UPI000475A3D2 dehydrogenase 3.3322310886e-05 2.61722457796e-05 -7.1500651064e-06 +UniRef50_R9VB07 0.000481015811204 0.000361871881834 -0.00011914392937 +UniRef50_UPI0003336D92 PREDICTED 5.76799049574e-05 0.000178613785405 0.000120933880448 +UniRef50_A0A017HNY0 Dipeptide transport system permease protein DppC 1.54081792102e-05 2.46237879085e-05 9.2156086983e-06 +UniRef50_UPI0003771DAE hypothetical protein 1.38375321028e-05 3.25235487128e-05 1.868601661e-05 +UniRef50_UPI00047A9CE7 luciferase 4.79947006276e-05 2.65037645741e-05 -2.14909360535e-05 +UniRef50_G7M9S8 UvrD REP helicase 0.000342980682439 0.000505095641597 0.000162114959158 +UniRef50_P06864 Evolved beta galactosidase subunit alpha 0.000558951884317 0.000135792327377 -0.00042315955694 +UniRef50_B7V1N9 Arylamine N acetyltransferase 0.000609376081685 0.000993901661408 0.000384525579723 +UniRef50_E8U3M5 0.000146371138664 0.00223672922498 0.00209035808632 +UniRef50_C9XJX6 DeoR family transcriptional regulator 0.000381265006881 0.000926405262164 0.000545140255283 +UniRef50_P38105 Starvation sensing protein RspB 0.00092003925548 0.000239445977193 -0.000680593278287 +UniRef50_A4XE82 0.000223954181186 8.16530038662e-05 -0.00014230117732 +UniRef50_A6DYV9 0.000454725954148 6.14241866327e-05 -0.000393301767515 +UniRef50_W3E224 0.000471875732651 0.0119228382227 0.01145096249 +UniRef50_P24270 Catalase 1.84643067649e-05 4.42845313411e-05 2.58202245762e-05 +UniRef50_UPI0003B51789 ABC transporter 5.41035393606e-06 9.90539939411e-06 4.49504545805e-06 +UniRef50_A3CNT7 Histidinol phosphate aminotransferase 0.00471494331624 0.000470108519721 -0.00424483479652 +UniRef50_Q8EKI8 L seryl tRNA selenium transferase 0.00236470531243 0.000815652915127 -0.0015490523973 +UniRef50_Q5KBM9 Chaperone, putative 4.78670042144e-06 5.54404161357e-06 7.5734119213e-07 +UniRef50_A0PXA5 Glutamate 5 kinase 9.99925997383e-06 1.28847315179e-05 2.88547154407e-06 +UniRef50_B0S912 DNA gyrase subunit A 2.10379307511e-06 2.56744734136e-06 4.6365426625e-07 +UniRef50_UPI0003B5B207 oxidoreductase 6.56698444893e-05 0.000163746378186 9.80765336967e-05 +UniRef50_UPI00037350A3 hypothetical protein 4.78316257745e-06 1.21223713726e-05 7.33920879515e-06 +UniRef50_UPI000225FBCC resolvase domain containing protein 7.58755049498e-05 4.54064440993e-05 -3.04690608505e-05 +UniRef50_Q9HZQ2 Protein CobW 0.00114708357177 0.000160063254856 -0.000987020316914 +UniRef50_I9CAP4 3 oxoadipate enol lactonase 3.24882497161e-06 3.01667808584e-05 2.69179558868e-05 +UniRef50_S5CZX0 Site specific DNA methylase 9.5244572462e-05 0.0061648714253 0.00606962685284 +UniRef50_A1U4W5 5.30977397964e-06 1.62822857141e-05 1.09725117345e-05 +UniRef50_P76577 Penicillin binding protein 1C 0.00180664128352 0.000317607508622 -0.0014890337749 +UniRef50_L7WU63 0.0116410636345 0.00675195025273 -0.00488911338177 +UniRef50_F0MRE3 Di tripeptide transporter 0.000159326034159 0.005186442751 0.00502711671684 +UniRef50_UPI000262D0B4 flagellin FliC 6.13210018968e-06 2.74781586998e-06 -3.3842843197e-06 +UniRef50_W5X9X7 Transcriptional regulator, LacI family 2.83040555723e-06 9.71265952894e-06 6.88225397171e-06 +UniRef50_P24395 Ribulose bisphosphate carboxylase small chain 0.000558864572034 7.55699860657e-05 -0.000483294585968 +UniRef50_UPI0003346733 PREDICTED 0.000121085031761 9.32579069084e-05 -2.78271248526e-05 +UniRef50_Q3IW03 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.0107570601971 0.00246356419112 -0.00829349600598 +UniRef50_P45946 Arsenite resistance protein ArsB 0.000223781255477 0.00116460884001 0.000940827584533 +UniRef50_U6N0Z9 1.8112517712e-05 1.40591220251e-05 -4.0533956869e-06 +UniRef50_A0A059II46 0.000122713958859 4.04595479601e-05 -8.22544108989e-05 +UniRef50_K0K2V8 1.64040255787e-05 0.000650945692359 0.00063454166678 +UniRef50_B9J7R7 Biphenyl 2,3 diol 1,2 dioxygenase protein 0.000758523593186 0.000955646635363 0.000197123042177 +UniRef50_B6IN07 DNA directed RNA polymerase subunit omega 0.0117925885861 0.000504814880674 -0.0112877737054 +UniRef50_Q2Y5B3 Transposase 0.000114814081331 3.85161526286e-05 -7.62979287024e-05 +UniRef50_P37682 0.00170879567553 0.00153979637747 -0.00016899929806 +UniRef50_V5VC89 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00011069970347 0.00689038510508 0.00677968540161 +UniRef50_UPI00047A404B hypothetical protein 7.19443627514e-05 8.73330694941e-05 1.53887067427e-05 +UniRef50_A5UP62 0.00398338138838 0.000205081045272 -0.00377830034311 +UniRef50_A5UP68 0.00425861482496 0.00110824643173 -0.00315036839323 +UniRef50_C0F8A8 1.04771205441e-05 3.33111398848e-05 2.28340193407e-05 +UniRef50_Q9K0Y0 D alanine D alanine ligase 0.000180041012167 0.00316280294963 0.00298276193746 +UniRef50_C6CBJ2 Oligogalacturonide transporter 0.000679211324629 0.000517283158157 -0.000161928166472 +UniRef50_UPI00036B05F9 3 oxoacyl ACP synthase, partial 2.46719458646e-05 2.77174566258e-05 3.0455107612e-06 +UniRef50_A5UND0 Glycosyltransferase, GT2 family 0.00122484785614 0.000211191922662 -0.00101365593348 +UniRef50_E6MVK2 0.00020760016828 0.00349054217588 0.0032829420076 +UniRef50_Q9JX72 Glutamate ammonia ligase adenylyltransferase 0.000250119878552 0.00533423663274 0.00508411675419 +UniRef50_K4NHA2 1.16589878896e-05 0.00243052574325 0.00241886675536 +UniRef50_A0A011QY25 Efflux pump membrane transporter BepE 2.25934219017e-06 1.27492102803e-05 1.04898680901e-05 +UniRef50_P09738 Superoxide dismutase [Mn Fe] 0.00440846237805 0.000295809721398 -0.00411265265665 +UniRef50_UPI0003B50A76 amino acid ABC transporter substrate binding protein 1.66894735227e-05 0.000335954684364 0.000319265210841 +UniRef50_UPI0004771768 hypothetical protein 0.000309560423554 8.40756064081e-05 -0.000225484817146 +UniRef50_UPI0004678EBB deoxyguanosinetriphosphate triphosphohydrolase 0.000525484613408 0.000179797292587 -0.000345687320821 +UniRef50_Q4L427 Transcriptional regulator, MerR family 0.00923102738949 0.00369732422525 -0.00553370316424 +UniRef50_X6LEJ6 TRAP transporter solute receptor TAXI family 7.26158795454e-05 8.13822762045e-06 -6.44776519249e-05 +UniRef50_E1HGR2 0.000117080946541 0.00016150196213 4.4421015589e-05 +UniRef50_UPI0004630420 hypothetical protein 0.000397912864204 6.92754584126e-05 -0.000328637405791 +UniRef50_L7ZH95 23S rRNA C(5)) methyltransferase RlmD 0.00169059228849 0.000139409931648 -0.00155118235684 +UniRef50_Q3JXF7 0.000517711979141 0.000450912390201 -6.679958894e-05 +UniRef50_L0DDS9 4.45388448999e-05 1.97688750795e-05 -2.47699698204e-05 +UniRef50_UPI00036A6475 hypothetical protein 3.32216469351e-06 1.1489147511e-05 8.16698281749e-06 +UniRef50_Q6FMA3 FK506 binding protein 1 2.56242208789e-05 2.54615525616e-05 -1.626683173e-07 +UniRef50_Q8XIA9 4 diphosphocytidyl 2 C methyl D erythritol kinase 7.00229050575e-06 0.00185288478188 0.00184588249137 +UniRef50_S6NZ74 Glutamate synthase subunit alpha 0.000832536924097 0.000171712920262 -0.000660824003835 +UniRef50_Q9A311 UPF0301 protein CC_3395 2.99959277185e-05 4.42806576127e-05 1.42847298942e-05 +UniRef50_UPI0000E0EE96 pilus modification protein PilQ 3.72083720051e-06 5.95912215987e-06 2.23828495936e-06 +UniRef50_U5MRW2 NADP reducing hydrogenase subunit HndC 0.000623306056286 0.00111669668042 0.000493390624134 +UniRef50_R7YUC0 3.43544959394e-06 0.000664092128154 0.00066065667856 +UniRef50_A7C4B4 Short chain dehydrogenase reductase SDR 8.70939128307e-05 0.000293626980776 0.000206533067945 +UniRef50_Q88VE3 Probable GTP binding protein EngB 0.0116139307511 0.00660061792373 -0.00501331282737 +UniRef50_I1W617 Metallo beta lactamase superfamily domain protein 0.00201748141082 0.00041760732602 -0.0015998740848 +UniRef50_UPI000414FA05 zinc iron permease 3.77930202926e-05 3.1825321008e-06 -3.46104881918e-05 +UniRef50_UPI00036EBE75 hypothetical protein 1.88452011993e-06 6.61182397139e-05 6.4233719594e-05 +UniRef50_X1Y0Y0 4.84327477355e-05 1.40307477007e-05 -3.44020000348e-05 +UniRef50_V2HBE7 Cupin 0.000102347497237 4.19141480811e-05 -6.04333491559e-05 +UniRef50_Q92CE4 Glutamate 5 kinase 0.00339997043709 0.00320433582191 -0.00019563461518 +UniRef50_UPI00039CB03A acyltransferase 0.000408737690532 1.90287745902e-05 -0.000389708915942 +UniRef50_D6AF37 0.000205663650323 0.000191320549107 -1.4343101216e-05 +UniRef50_A6LRK6 Dephospho CoA kinase 0.000797261735345 0.000596599404435 -0.00020066233091 +UniRef50_C5YML5 0.000405931280309 0.000825486054037 0.000419554773728 +UniRef50_R7A629 Cell division ATP binding protein FtsE 0.0033693416474 0.000744495895456 -0.00262484575194 +UniRef50_UPI00037DADC1 hypothetical protein 2.3292794874e-05 2.43865324165e-05 1.0937375425e-06 +UniRef50_P29131 Cell division protein FtsN 0.00324220939089 0.000191556781752 -0.00305065260914 +UniRef50_Q4KEZ9 N anthranilate isomerase 1.02601007952e-05 0.000153595595735 0.00014333549494 +UniRef50_D2UBU1 1.35609470921e-05 2.05937536237e-05 7.0328065316e-06 +UniRef50_UPI000376D12A hypothetical protein 1.35131977267e-05 5.98374563722e-06 -7.52945208948e-06 +UniRef50_D3QIX9 0.0177761571934 0.0058410180758 -0.0119351391176 +UniRef50_UPI00039B183B helicase 4.84121768405e-06 0.000595745423049 0.000590904205365 +UniRef50_UPI000374642A hypothetical protein 1.40557262107e-05 2.68987008473e-05 1.28429746366e-05 +UniRef50_R7YU19 0.0193059569459 0.00171026331519 -0.0175956936307 +UniRef50_A0A028ILN1 0.00014334910969 0.00390258783748 0.00375923872779 +UniRef50_F0RMH9 Thioredoxin reductase 0.00025679318969 0.0541254570811 0.0538686638914 +UniRef50_Z1D1L3 Serine aspartate repeat containing protein D 0.000711333053306 4.42311590482e-05 -0.000667101894258 +UniRef50_UPI0003B4CF71 30S ribosomal protein S3 0.00119208161134 0.00240161280902 0.00120953119768 +UniRef50_P43850 N5 carboxyaminoimidazole ribonucleotide synthase 0.00459312406955 0.00231689491927 -0.00227622915028 +UniRef50_P0AEB8 RutC family protein YoaB 0.00164124342979 0.000504814880674 -0.00113642854912 +UniRef50_G8QQ16 Aminoacyl histidine dipeptidase 0.000273872777893 0.00773616953062 0.00746229675273 +UniRef50_K0F919 Phosphate transporter 0.000104181965648 0.0040015074312 0.00389732546555 +UniRef50_Q9RSU4 0.000216117932552 0.0656287083932 0.0654125904606 +UniRef50_R7NVL6 AICARFT IMPCHase bienzyme 0.000421321216007 0.00715609365736 0.00673477244135 +UniRef50_E6N0K4 0.000252062366568 0.0114387395791 0.0111866772125 +UniRef50_Q4L628 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00892515031597 0.00127224663586 -0.00765290368011 +UniRef50_K1YQK0 3.42969770403e-06 1.77146092217e-05 1.42849115177e-05 +UniRef50_A4XID9 Type II secretion system protein E 0.000333745068237 0.00117734964386 0.000843604575623 +UniRef50_B9DL96 SirB protein 0.0097181349086 0.00476879152068 -0.00494934338792 +UniRef50_UPI0003B65A97 hypothetical protein 5.39663444561e-06 9.23655686496e-06 3.83992241935e-06 +UniRef50_A6LWV9 Transcription activator, effector binding 0.000144815596745 0.000665487067368 0.000520671470623 +UniRef50_UPI0003AD00EB ABC transporter permease 3.92971143175e-05 5.26471030416e-05 1.33499887241e-05 +UniRef50_UPI00029A0867 HNH endonuclease 5.87356667664e-05 4.1660811939e-05 -1.70748548274e-05 +UniRef50_A4WUM0 HAD superfamily hydrolase, subfamily IIA 0.00449822119752 0.000302372053093 -0.00419584914443 +UniRef50_Q0JN66 Os01g0323600 protein 3.17616105306e-05 4.20974276115e-05 1.03358170809e-05 +UniRef50_UPI000425885C ABC transporter 3.09085322094e-05 2.66990219196e-05 -4.2095102898e-06 +UniRef50_A6LPJ7 PpiC type peptidyl prolyl cis trans isomerase 0.000323461863408 0.00278205206636 0.00245859020295 +UniRef50_UPI000376B01F hypothetical protein 6.6838362273e-05 1.18580684616e-05 -5.49802938114e-05 +UniRef50_P62904 Transposase from transposon Tn1545 0.00532791552797 0.000814460075612 -0.00451345545236 +UniRef50_UPI00036D74AB hypothetical protein 9.88637148125e-05 3.22523867407e-05 -6.66113280718e-05 +UniRef50_P03740 Tail fiber assembly protein 0.00206508142092 0.000576033462575 -0.00148904795834 +UniRef50_UPI00036AE08D hypothetical protein 9.23186072931e-05 1.23849710268e-05 -7.99336362663e-05 +UniRef50_UPI000349BBCB transcription factor WhiB 2.5334135078e-05 5.19309771244e-05 2.65968420464e-05 +UniRef50_UPI0003B720CE peptide ABC transporter permease 2.2812624769e-05 5.79208003795e-05 3.51081756105e-05 +UniRef50_Q8Z8G7 Apolipoprotein N acyltransferase 0.00243975478069 0.000702461648296 -0.00173729313239 +UniRef50_A6LY96 0.000898789562983 0.00237157264769 0.00147278308471 +UniRef50_UPI00037F0E4A hypothetical protein 3.51002513324e-06 0.00127236295714 0.00126885293201 +UniRef50_Q0FWM3 0.000293846080516 7.5679153973e-05 -0.000218166926543 +UniRef50_UPI000372A004 30S ribosomal protein S11 0.000174453712998 0.000705832061959 0.000531378348961 +UniRef50_UPI000406AC71 hypothetical protein 9.85958385394e-06 4.69188527309e-05 3.7059268877e-05 +UniRef50_P44931 tRNA specific adenosine deaminase 1.28912553334e-05 4.2527082994e-05 2.96358276606e-05 +UniRef50_UPI00047200C5 hypothetical protein 0.000155033439847 3.11189660221e-05 -0.000123914473825 +UniRef50_C5A6Q6 tRNA binding protein, putative 0.002692523666 0.000680971069289 -0.00201155259671 +UniRef50_UPI000476F5C1 hypothetical protein 9.6427293307e-06 1.22285426599e-05 2.5858133292e-06 +UniRef50_F3SBC7 0.000979394828674 0.000706552584989 -0.000272842243685 +UniRef50_UPI000467C7DA hypothetical protein 0.000373442604188 7.80074132817e-05 -0.000295435190906 +UniRef50_UPI000348A11C hypothetical protein 1.3152696482e-05 9.59639051888e-06 -3.55630596312e-06 +UniRef50_Q8Y3E7 Acetylglutamate kinase 4.15455675846e-05 1.55582899729e-05 -2.59872776117e-05 +UniRef50_P76162 0.00357079995732 0.00202340442568 -0.00154739553164 +UniRef50_UPI000316A923 hypothetical protein 7.09646976444e-06 5.05677696507e-05 4.34712998863e-05 +UniRef50_T5D7P0 1 pyrroline 5 carboxylate dehydrogenase 0.000161736894571 0.00404711962454 0.00388538272997 +UniRef50_D9SWK1 MmpL domain containing protein 0.000346577486773 0.000998418597716 0.000651841110943 +UniRef50_F3ZHY8 Putative lipoyl synthase 1.46141785711e-05 0.000256734126088 0.000242119947517 +UniRef50_Q2P1U6 Lysine tRNA ligase 0.00388062588244 0.0111181477765 0.00723752189406 +UniRef50_UPI0001D2F0AE putrescine spermidine ABC transporter substrate binding protein 4.94423994687e-05 0.000156918570774 0.000107476171305 +UniRef50_S5XYD0 Type I secretion outer membrane protein, TolC 0.00184104795783 0.000285970248103 -0.00155507770973 +UniRef50_P71242 Colanic acid biosynthesis protein WcaK 0.00403863322402 0.00280416529586 -0.00123446792816 +UniRef50_A6LXV6 Xylan 1,4 beta xylosidase 0.000281514035724 0.000435633401281 0.000154119365557 +UniRef50_K2CIP8 0.000287434078471 0.000272519277143 -1.4914801328e-05 +UniRef50_F3Z911 Putative LysR family transcriptional regulator 6.46449363503e-06 8.63963822913e-06 2.1751445941e-06 +UniRef50_K0H1B5 0.000199026004668 0.00477943069043 0.00458040468576 +UniRef50_UPI0003A37396 spermidine putrescine ABC transporter substrate binding protein 2.1858112165e-05 0.000140247148855 0.00011838903669 +UniRef50_UPI0003F726C9 5 methyltetrahydrofolate homocysteine methyltransferase 2.5703228032e-06 9.44013082095e-05 9.18309854063e-05 +UniRef50_UPI00036FE7ED hypothetical protein 3.82274812346e-06 7.5605265184e-06 3.73777839494e-06 +UniRef50_P07738 Bisphosphoglycerate mutase 6.93865428391e-06 1.08268953876e-05 3.88824110369e-06 +UniRef50_UPI000365C798 Cro Cl family transcriptional regulator 0.000149950899505 1.89136212394e-05 -0.000131037278266 +UniRef50_A7X393 Glutamyl tRNA reductase 0.0224842324256 0.00773057805568 -0.0147536543699 +UniRef50_Q5JFN5 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.43601521343e-05 1.41923253337e-05 -1.678268006e-07 +UniRef50_UPI0003B3B62E iron ABC transporter permease 2.72473713082e-05 3.73991359144e-05 1.01517646062e-05 +UniRef50_Q55498 N5 carboxyaminoimidazole ribonucleotide mutase 6.79865379295e-05 0.00128191708905 0.00121393055112 +UniRef50_UPI000479DC3A hypothetical protein 1.23714420198e-05 1.91842564612e-05 6.8128144414e-06 +UniRef50_Q4K8R5 ErfK YbiS YcfS YnhG family protein 0.000162709477954 0.000256425503788 9.3716025834e-05 +UniRef50_UPI00047C9C40 hypothetical protein 2.92911779603e-05 9.24224415084e-06 -2.00489338095e-05 +UniRef50_P13061 Periplasmic [NiFe] hydrogenase small subunit 7.69108722329e-05 1.8856320254e-05 -5.80545519789e-05 +UniRef50_B1J449 Peptidase M23B 0.000162943592314 0.000575097842339 0.000412154250025 +UniRef50_B9DQ98 Processive diacylglycerol beta glucosyltransferase 0.0198464767666 0.00675950586718 -0.0130869708994 +UniRef50_R5FWD3 Ribokinase family Sugar kinase 0.000134496195558 0.0034156083976 0.00328111220204 +UniRef50_A8YNI5 Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328 0.0105982934744 0.00114121458492 -0.00945707888948 +UniRef50_M7DS31 Surfactin synthetase 0.00450390897081 0.00161306756 -0.00289084141081 +UniRef50_P0AFE2 NADH quinone oxidoreductase subunit J 0.00137227545386 0.000921880746498 -0.000450394707362 +UniRef50_P21649 Protein MrkE 0.00217848286038 0.000242062873115 -0.00193641998727 +UniRef50_F1B2P1 8.58316077885e-05 0.000184389507422 9.85578996335e-05 +UniRef50_UPI00047188E0 hypothetical protein 1.89694365947e-06 8.47390249912e-05 8.28420813317e-05 +UniRef50_Q59679 Superoxide dismutase [Mn] 8.98493947876e-06 0.000101625309855 9.26403703762e-05 +UniRef50_UPI000466807B hypothetical protein 3.08554171336e-05 9.31008585714e-05 6.22454414378e-05 +UniRef50_E6NJW8 Poly E rich protein 9.72902033113e-05 0.0016157725006 0.00151848229729 +UniRef50_Q9RRU7 Lipoprotein signal peptidase 0.000210886027289 0.0589720930584 0.0587612070311 +UniRef50_I4CUQ3 1.19451267234e-05 2.52492187934e-05 1.330409207e-05 +UniRef50_UPI00046AEF9B ABC transporter ATP binding protein 3.94553123196e-06 1.06847874475e-05 6.73925621554e-06 +UniRef50_E1ZBZ0 2.86716874178e-05 1.71968047086e-05 -1.14748827092e-05 +UniRef50_Q6BX45 FK506 binding protein 1 2.33589223222e-05 3.98636179738e-05 1.65046956516e-05 +UniRef50_A6LTL3 0.00065137301791 0.00190684295112 0.00125546993321 +UniRef50_F0YG09 Expressed protein 7.80565758921e-05 0.000157820203341 7.97636274489e-05 +UniRef50_UPI0001744DA7 translation initiation factor IF 3 0.000105004466992 0.000159689471882 5.468500489e-05 +UniRef50_P76010 Flagellar brake protein YcgR 0.00241238935191 0.00105097769196 -0.00136141165995 +UniRef50_V4JQ05 0.00420718582365 0.00155030985672 -0.00265687596693 +UniRef50_Q5LX99 TPR domain protein 0.00430307842293 0.00109205905205 -0.00321101937088 +UniRef50_X5EHV6 0.0101430927956 0.00457866986304 -0.00556442293256 +UniRef50_E8QKL2 0.000227368276202 0.00251283127724 0.00228546300104 +UniRef50_UPI000329FDA5 6.54716222631e-05 7.12910084452e-05 5.8193861821e-06 +UniRef50_B9TMP8 1.30933047694e-05 2.87360192984e-05 1.5642714529e-05 +UniRef50_X2LS39 Ribonuclease E 0.00274999332299 0.00138714312318 -0.00136285019981 +UniRef50_W4HN66 5.19164956879e-05 6.44240431552e-06 -4.54740913724e-05 +UniRef50_Q8DKV8 Tlr0743 protein 4.3262647894e-05 5.04287455258e-05 7.1660976318e-06 +UniRef50_UPI0004795C04 hypothetical protein 6.7156382041e-06 1.66941434042e-05 9.9785052001e-06 +UniRef50_UPI00046D9877 hemolysin, partial 4.51711379703e-06 6.18913240484e-05 5.73742102514e-05 +UniRef50_E6V9U6 3.22811072996e-07 2.8967950797e-06 2.5739840067e-06 +UniRef50_Q6FFH7 0.000321496728861 0.00978488556199 0.00946338883313 +UniRef50_A6LW46 Ppx GppA phosphatase 0.000290597391961 0.000496017377705 0.000205419985744 +UniRef50_C4Z2C3 0.000933193774585 0.00320042020036 0.00226722642578 +UniRef50_UPI000471C2D7 hypothetical protein 8.11991646648e-06 7.91676388818e-06 -2.031525783e-07 +UniRef50_F0RP65 Peptidase S41 8.4574904144e-05 0.0229642203728 0.0228796454687 +UniRef50_S4XIK9 Iron ABC transport system substrate binding protein 1.01346881533e-05 3.39299526337e-05 2.37952644804e-05 +UniRef50_UPI0003013893 hypothetical protein 1.40359868907e-05 2.16174082945e-05 7.5814214038e-06 +UniRef50_A3PJZ0 LPS assembly protein LptD 0.00356102265516 0.00172213444474 -0.00183888821042 +UniRef50_UPI00036BEF36 hypothetical protein 3.54152569162e-05 0.000235044337973 0.000199629081057 +UniRef50_Q8X7J5 Multidrug resistance protein MdtA 0.00266231431142 0.00160990403123 -0.00105241028019 +UniRef50_I3THN2 Dehydrogenase 0.0022161951311 0.00132104325577 -0.00089515187533 +UniRef50_P42463 Acetolactate synthase large subunit 1.69097736512e-05 0.00230555534205 0.0022886455684 +UniRef50_UPI00047BA501 hypothetical protein 4.02117844229e-05 5.56810994926e-05 1.54693150697e-05 +UniRef50_UPI000328B2BB PREDICTED 4.248480136e-06 4.92893816057e-06 6.8045802457e-07 +UniRef50_UPI0003799127 hypothetical protein 0.000732633833179 5.45869184791e-05 -0.0006780469147 +UniRef50_A5UMH3 Predicted ATPase, AAA+ superfamily 0.00213266956327 0.000781683078755 -0.00135098648451 +UniRef50_UPI0000164CF9 ferredoxin, putative, partial 0.000187493040823 0.0468189019154 0.0466314088746 +UniRef50_UPI0003668456 hypothetical protein 4.24703662581e-06 1.22141981353e-05 7.96716150949e-06 +UniRef50_Q818I1 Superoxide dismutase [Mn] 1 2.02637594056e-05 8.74674783861e-05 6.72037189805e-05 +UniRef50_UPI00046F3B88 hypothetical protein 4.25430876693e-05 3.23861634539e-05 -1.01569242154e-05 +UniRef50_UPI00047E80CF hypothetical protein 0.000108843291093 6.88861501375e-05 -3.99571409555e-05 +UniRef50_P0AEN0 Cystine binding periplasmic protein 0.00191394142 0.000454046998212 -0.00145989442179 +UniRef50_B1JXE0 6.66348875595e-05 0.000173290188611 0.000106655301051 +UniRef50_A4WSN3 Transcriptional regulator, TetR family 0.0105358659897 0.00224653346222 -0.00828933252748 +UniRef50_D9REU8 Poly alpha glucosyltransferase 0.0079873345677 0.00342822467136 -0.00455910989634 +UniRef50_R9ZGV6 ABC transporter substrate binding protein 0.000676826074404 0.000371851407592 -0.000304974666812 +UniRef50_O25046 Adenosine deaminase 0.000205867189564 0.00310145812432 0.00289559093476 +UniRef50_P0AFU3 0.00381426467027 0.000577873072428 -0.00323639159784 +UniRef50_G7M452 Integral membrane sensor signal transduction histidine kinase 0.000266786014426 0.000639492970865 0.000372706956439 +UniRef50_Q02LE1 0.0002066529136 1.30307797212e-05 -0.000193622133879 +UniRef50_D4KM36 Dihydroxyacid dehydratase phosphogluconate dehydratase 0.000176811119401 0.00218247055578 0.00200565943638 +UniRef50_Q17XN9 Aspartate carbamoyltransferase 0.000265418137248 0.00284269616841 0.00257727803116 +UniRef50_G8NMF7 Oligopeptide ABC transporter, permease protein 0.00873258730521 0.00163441828101 -0.0070981690242 +UniRef50_B2UX24 Histidinol phosphate aminotransferase 0.000541329825509 0.00258933431853 0.00204800449302 +UniRef50_UPI00037E9746 hypothetical protein, partial 2.69602660008e-07 6.08557227832e-06 5.81596961831e-06 +UniRef50_G8QIK2 Cysteine synthase 0.000373664887828 0.000486087065181 0.000112422177353 +UniRef50_W8S4A8 2.83022467878e-05 0.000186553295655 0.000158251048867 +UniRef50_N2L427 CSS motif domain associated with EAL family protein 0.000367681157978 0.000379421891038 1.174073306e-05 +UniRef50_UPI0003B5F916 ABC transporter ATP binding protein 6.22119388654e-05 2.25546934608e-05 -3.96572454046e-05 +UniRef50_A7X5Y6 Heme sensor protein HssS 0.020711942119 0.00680491665805 -0.013907025461 +UniRef50_M1VXV3 Related to ECM4 protein 0.000100020510852 1.49171220093e-05 -8.51033888427e-05 +UniRef50_H8H0N8 Diguanylate cyclase with GAF sensor 5.15596817037e-06 0.00148609462042 0.00148093865225 +UniRef50_D5UF49 Zn dependent hydrolase, glyoxylase 0.000345789498071 0.00602446012333 0.00567867062526 +UniRef50_Q1C8A9 N succinylglutamate 5 semialdehyde dehydrogenase 0.000212715512557 0.00725039413563 0.00703767862307 +UniRef50_O67078 3 isopropylmalate dehydratase large subunit 0.00300386851349 0.00329882926347 0.00029496074998 +UniRef50_A5WE51 Inner membrane peptidase, Serine peptidase, MEROPS family S49 0.000998820398352 0.00849768141504 0.00749886101669 +UniRef50_Q8CP91 ABC transporter protein 0.00555704034401 0.00213595798967 -0.00342108235434 +UniRef50_Q2S5G4 Phosphoadenosine phosphosulfate reductase 3.9666519241e-06 6.17905155058e-06 2.21239962648e-06 +UniRef50_UPI000471DE1F indole 3 glycerol phosphate synthase 7.13455546964e-06 1.26556823339e-05 5.52112686426e-06 +UniRef50_Q9RUK2 Transcriptional regulator, TetR family 0.000216117932552 0.0368675735952 0.0366514556626 +UniRef50_UPI00036055AD GTP cyclohydrolase I 2.55656355782e-05 9.84271622627e-05 7.28615266845e-05 +UniRef50_Q5HKY3 ABC transporter, ATP binding protein 0.0103189522032 0.00222667898673 -0.00809227321647 +UniRef50_G7M5B9 Type II secretion system protein E 0.000168020469813 0.00179333160157 0.00162531113176 +UniRef50_W4K0D8 0.000122470552319 1.58772825845e-05 -0.000106593269735 +UniRef50_C3BHS6 Aldehyde dehydrogenase 7.88070957963e-05 0.000320705924188 0.000241898828392 +UniRef50_K2D6N5 2.51673317541e-05 1.37062155265e-05 -1.14611162276e-05 +UniRef50_UPI00031C1838 hypothetical protein 0.000257251664199 2.43583553933e-05 -0.000232893308806 +UniRef50_UPI000475EE77 histidine kinase 2.83204896551e-05 7.27693870242e-05 4.44488973691e-05 +UniRef50_P39156 Putative sugar phosphate isomerase YwlF 0.000259143699447 0.0230945126387 0.0228353689393 +UniRef50_G7U731 0.00103746350656 0.0110051348113 0.00996767130474 +UniRef50_B9J3P1 0.000376050029429 5.34275165115e-05 -0.000322622512917 +UniRef50_P32153 Putative aminopeptidase FrvX 0.00263847019278 0.00111739504775 -0.00152107514503 +UniRef50_Q03WF6 Pseudouridine synthase 0.00622973340576 0.00159720051878 -0.00463253288698 +UniRef50_C7CLY8 Pirin like protein 1.07691096558e-05 1.62733079208e-05 5.504198265e-06 +UniRef50_W9H6Y5 Anti sigma regulatory factor 2.49108787771e-05 0.00196427302199 0.00193936214321 +UniRef50_Q744M7 8.2278572502e-05 0.00041010340218 0.000327824829678 +UniRef50_A6FZQ4 1.17721964737e-06 1.90281984392e-06 7.2560019655e-07 +UniRef50_B9KU19 Proline racemase 0.00671027587605 0.000987401770517 -0.00572287410553 +UniRef50_UPI000376B5E0 hypothetical protein 3.45512211015e-06 2.05776696778e-05 1.71225475676e-05 +UniRef50_X0NIS7 0.000251657325899 6.48520454435e-05 -0.000186805280456 +UniRef50_P0AEQ0 Glycolate oxidase subunit GlcD 0.010533790776 0.00268810835807 -0.00784568241793 +UniRef50_Q4ZLN0 9.62974461409e-05 0.000213739472998 0.000117442026857 +UniRef50_UPI0003C1B110 4.42669354004e-06 3.22239022395e-05 2.77972086995e-05 +UniRef50_Q6A8L2 Imidazole glycerol phosphate synthase subunit HisH 0.000456636276836 0.00308746143726 0.00263082516042 +UniRef50_Q1Q8B0 UvrABC system protein C 9.14747953543e-05 0.00870733995616 0.00861586516081 +UniRef50_UPI00036C8E2B hypothetical protein 0.000241861192974 0.000109549949697 -0.000132311243277 +UniRef50_UPI0003C12083 PREDICTED 0.000253758691267 7.30402197775e-05 -0.00018071847149 +UniRef50_J9YQK1 Cobyric acid synthase 0.00650470710924 0.00223013663677 -0.00427457047247 +UniRef50_A8AVW5 Competence protein ComFC 0.00675505114439 0.000801764810481 -0.00595328633391 +UniRef50_D4J129 9.50234955805e-06 1.52845018673e-05 5.78215230925e-06 +UniRef50_A5VGR7 Type F conjugative transfer system protein TraW 0.000339730411081 0.000131072656658 -0.000208657754423 +UniRef50_F5ZGN4 Membrane protein 0.000189691451679 0.000369920168561 0.000180228716882 +UniRef50_J0VQZ8 8.44407444647e-05 0.000109289535097 2.48487906323e-05 +UniRef50_UPI00036E2511 hypothetical protein 1.57539346744e-05 1.47464640963e-05 -1.0074705781e-06 +UniRef50_UPI000372ECF2 hypothetical protein 7.90877581427e-05 7.07682426647e-05 -8.319515478e-06 +UniRef50_UPI00036BAEE5 hypothetical protein, partial 1.07418130249e-05 6.64488281368e-05 5.57070151119e-05 +UniRef50_B9DKX8 Glutamine amidotransferase subunit PdxT 0.0135433070421 0.00233047565188 -0.0112128313902 +UniRef50_J9YPK5 SorC family transcriptional regulator 0.000117719123342 0.00456610404785 0.00444838492451 +UniRef50_R6U1L8 Glycosyltransferases involved in cell wall biogenesis 0.00214650030179 0.00199769355328 -0.00014880674851 +UniRef50_U4VDJ5 Threonine dehydratase 7.80101255919e-05 0.000118362641484 4.03525158921e-05 +UniRef50_UPI0003BB97B6 PREDICTED 3.11763471032e-05 1.20789275329e-05 -1.90974195703e-05 +UniRef50_UPI00038069E1 hypothetical protein 2.97388836664e-06 1.87239576766e-05 1.575006931e-05 +UniRef50_V4I3L2 DNA polymerase II large subunit 5.20884945589e-05 0.000103192264344 5.11037697851e-05 +UniRef50_D1AIE5 Selenate reductase YgfK 0.000234992315178 0.00129197734883 0.00105698503365 +UniRef50_D3EVZ5 Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated 0.00385591040675 0.00050770780263 -0.00334820260412 +UniRef50_UPI000361B549 hypothetical protein 0.000240524230697 6.21544949988e-06 -0.000234308781197 +UniRef50_G4B724 Transporting ATPase 0.00014674982724 6.30975081868e-05 -8.36523190532e-05 +UniRef50_K9ZWQ1 1.8977846103e-05 0.00115138430546 0.00113240645936 +UniRef50_UPI0002000114 hypothetical protein 8.99262839273e-05 6.39903477161e-06 -8.35272491557e-05 +UniRef50_Q3JRN2 5.66217485885e-05 0.000135466378533 7.88446299445e-05 +UniRef50_K9ZWQ8 0.000463826619528 0.0590811091549 0.0586172825354 +UniRef50_P94462 Peptide deformylase 1 5.11030596013e-05 0.00050770780263 0.000456604743029 +UniRef50_Q164M5 5,10 methylenetetrahydrofolate reductase, putative 0.00830675860726 0.00146924406929 -0.00683751453797 +UniRef50_UPI00037A0B76 hypothetical protein, partial 0.000103142713456 4.15820020515e-05 -6.15607114045e-05 +UniRef50_Q57981 Adenylosuccinate synthetase 0.00475470242676 0.00112723611237 -0.00362746631439 +UniRef50_UPI00041516F3 chemotaxis protein CheW 0.000253626809017 0.000101188468796 -0.000152438340221 +UniRef50_Q0AUL1 Energy coupling factor transporter ATP binding protein EcfA 1.12799243792e-05 3.08964276854e-05 1.96165033062e-05 +UniRef50_Q46841 Inner membrane protein YghQ 0.00254128261388 0.000298802737126 -0.00224247987675 +UniRef50_K8DRW2 Phosphoribosylformylglycinamidine synthase,synthetase subunit Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit 0.000543184994289 0.000139541839325 -0.000403643154964 +UniRef50_V4JYH9 4.99075633506e-05 8.51757946241e-05 3.52682312735e-05 +UniRef50_UPI000395D985 PREDICTED 3.83182932993e-05 0.000231016979293 0.000192698685994 +UniRef50_UPI0004445EDA PREDICTED 1.24795071496e-05 1.53524892008e-05 2.8729820512e-06 +UniRef50_A6LU01 0.00142776083898 0.00110234670396 -0.00032541413502 +UniRef50_C5N580 0.0157424653439 0.0028091859804 -0.0129332793635 +UniRef50_M9S177 Oxidoreductase 0.000608848369114 0.00100107357693 0.000392225207816 +UniRef50_A4WZ24 4.07631310852e-05 0.000107947036194 6.71839051088e-05 +UniRef50_D0K9R4 0.0194132776122 0.000725006767648 -0.0186882708446 +UniRef50_Q9ZHF6 DNA polymerase III PolC type 3.50595821622e-06 1.62863361008e-06 -1.87732460614e-06 +UniRef50_P39386 Multidrug resistance protein MdtM 0.0016552044875 0.00126853813681 -0.00038666635069 +UniRef50_I0C5I2 EcsB 0.0107112776757 0.00186295964339 -0.00884831803231 +UniRef50_S5CTA0 AraC type DNA binding domain containing protein 0.000282796742494 0.00286096025943 0.00257816351694 +UniRef50_UPI0003B4EBEF adenosylcobinamide kinase 6.21816298963e-05 0.000136175736748 7.39941068517e-05 +UniRef50_UPI0003F6C3B5 family 2 glycosyl transferase 0.000470615557377 0.000110153115611 -0.000360462441766 +UniRef50_R7E4L4 Hydrolase NUDIX family 0.00400540652602 0.00158163581531 -0.00242377071071 +UniRef50_B2S710 Oxygen dependent coproporphyrinogen III oxidase 0.00264773689023 0.00160641367452 -0.00104132321571 +UniRef50_UPI0003178DCE hypothetical protein 9.88420958276e-06 8.74408379193e-06 -1.14012579083e-06 +UniRef50_P24207 Phenylalanine specific permease 0.0104204752047 0.025340974758 0.0149204995533 +UniRef50_Q3J2Z9 0.0018010249781 0.000851875111142 -0.000949149866958 +UniRef50_T1CKZ6 Snf2 family protein 2.59872112095e-05 0.00121101552606 0.00118502831485 +UniRef50_Q093G7 1.26682609742e-05 7.58872719654e-06 -5.07953377766e-06 +UniRef50_UPI0004719E67 hypothetical protein 2.59642711444e-06 4.41125574911e-06 1.81482863467e-06 +UniRef50_UPI000379C92D hypothetical protein 1.62446777127e-05 1.53782460741e-05 -8.664316386e-07 +UniRef50_D0D8I9 5.51402648911e-05 4.64388417158e-06 -5.04963807195e-05 +UniRef50_D5V7X1 5.82945409357e-06 0.000140427456678 0.000134598002584 +UniRef50_A0A017HKQ1 Mobile element protein 0.000190585736692 9.06566037808e-05 -9.99291329112e-05 +UniRef50_UPI00037AC60C hypothetical protein 8.46456825631e-05 2.25955496882e-05 -6.20501328749e-05 +UniRef50_Q080R9 Beta hexosaminidase 1.48491524218e-05 2.46760553683e-05 9.8269029465e-06 +UniRef50_I1F0Y4 4.68361260514e-05 9.72843530599e-06 -3.71076907454e-05 +UniRef50_X1GXU9 Marine sediment metagenome DNA, contig 2.44837517688e-05 2.67237940063e-05 2.2400422375e-06 +UniRef50_O27502 Hydroxylamine reductase 0.00452198374966 0.000309605316568 -0.00421237843309 +UniRef50_A0KQA4 DNA directed RNA polymerase subunit beta 5.64639397329e-06 3.24564807299e-06 -2.4007459003e-06 +UniRef50_K2SHY0 0.000841342734295 8.18174650896e-05 -0.000759525269205 +UniRef50_Q46DD8 Acetyltransferase 0.00190049520132 0.000982516736696 -0.000917978464624 +UniRef50_A5VPU4 Transcriptional regulator, MarR family 0.0142413238766 0.000715919285321 -0.0135254045913 +UniRef50_P07661 Citrate proton symporter 0.00013198810799 0.00550458138936 0.00537259328137 +UniRef50_UPI00046F7539 hypothetical protein 3.7508012116e-06 3.20622109569e-06 -5.4458011591e-07 +UniRef50_Q7UXF5 Glucose 1 phosphate adenylyltransferase 7.89082454583e-06 6.55718983757e-06 -1.33363470826e-06 +UniRef50_UPI000476E759 hypothetical protein 2.05574624699e-06 6.17399741779e-06 4.1182511708e-06 +UniRef50_UPI000478E93F hypothetical protein, partial 4.42318025113e-05 5.28710938048e-05 8.6392912935e-06 +UniRef50_P77884 Dihydroorotase 4.58789429982e-06 7.18377052623e-06 2.59587622641e-06 +UniRef50_UPI0001850CBB hydrolase 0.000291870609934 1.07807596416e-05 -0.000281089850292 +UniRef50_Y5FPX8 3.38026184034e-05 4.04053851872e-05 6.6027667838e-06 +UniRef50_UPI0003F0DCE2 PREDICTED 1.45973419674e-05 6.5187567758e-05 5.05902257906e-05 +UniRef50_G8AE70 0.000132195944694 6.03323453248e-05 -7.18635993692e-05 +UniRef50_R0VSS0 Tetrapyrrole Methylases family protein (Fragment) 0.00039596432397 0.000537769710152 0.000141805386182 +UniRef50_Q9JLZ1-2 Isoform 2 of Glutaredoxin 3 9.92745199079e-05 7.6030284992e-05 -2.32442349159e-05 +UniRef50_UPI000365E816 hypothetical protein 6.03346431253e-06 1.63191835873e-05 1.02857192748e-05 +UniRef50_Q21NT4 5.2003617978e-05 1.06351794859e-05 -4.13684384921e-05 +UniRef50_UPI0003298B2A PREDICTED 4.92823123569e-06 6.47775133308e-06 1.54952009739e-06 +UniRef50_Q5HNZ4 Ferric uptake regulation protein 0.0149948230784 0.00226035592642 -0.012734467152 +UniRef50_UPI00037B54FA hypothetical protein 1.11340890809e-05 1.83762037399e-05 7.242114659e-06 +UniRef50_U5MNS8 Permease 0.000245205163361 0.000378673401363 0.000133468238002 +UniRef50_A5VZX6 2.41132732977e-05 1.02386853225e-05 -1.38745879752e-05 +UniRef50_B2KCI5 Tryptophan synthase beta chain 0.000117629774232 2.04643832186e-05 -9.71653910134e-05 +UniRef50_D8JK92 LysR family transcriptional regulator 0.000146501677432 0.00816274919585 0.00801624751842 +UniRef50_UPI00036EAD03 hypothetical protein 2.11771781224e-06 3.31527060457e-06 1.19755279233e-06 +UniRef50_J3JJ09 0.000141773346578 4.48651825862e-05 -9.69081639918e-05 +UniRef50_UPI00036EDC4E hypothetical protein 2.22817708509e-05 3.38874267446e-05 1.16056558937e-05 +UniRef50_D9VUJ1 Rim protein 9.27165255943e-06 0.000569117992702 0.000559846340143 +UniRef50_A3PH50 0.00845558079176 0.00183629394278 -0.00661928684898 +UniRef50_Q3IV16 0.0239036241221 0.00241953917364 -0.0214840849485 +UniRef50_A5UMF4 Replication factor C large subunit 0.0020421134256 0.000562429418714 -0.00147968400689 +UniRef50_Q3IV10 0.0091409655003 0.00457739040826 -0.00456357509204 +UniRef50_UPI000372C9B6 MULTISPECIES 6.93226034356e-05 5.04271825325e-06 -6.42798851823e-05 +UniRef50_UPI00038172EF hypothetical protein, partial 6.17480180261e-05 0.000105800390049 4.40523720229e-05 +UniRef50_UPI00046F18A1 oxidoreductase 2.06668985647e-06 7.20076490994e-06 5.13407505347e-06 +UniRef50_Q2NEJ8 Predicted Fe S oxidoreductase 0.00260911485228 0.000393153774187 -0.00221596107809 +UniRef50_A6LSG6 Penicillin binding protein, transpeptidase 0.000331882878003 0.00182343453349 0.00149155165549 +UniRef50_UPI0004790007 hypothetical protein 3.28075863175e-05 6.69997818735e-06 -2.61076081302e-05 +UniRef50_UPI000365533E hypothetical protein 6.505621983e-06 0.000240386649613 0.00023388102763 +UniRef50_M8PZ54 PTS system, glucose like IIB component domain protein 0.00164604523284 0.000235625030732 -0.00141042020211 +UniRef50_UPI0003775AE8 hypothetical protein 0.000515857817048 8.96537279181e-05 -0.00042620408913 +UniRef50_UPI000477A38C molybdopterin biosynthesis protein MoeB 1.68808741053e-05 2.67215868743e-05 9.840712769e-06 +UniRef50_Q8ZNT5 Cellulose synthesis regulatory protein 0.00141494910134 0.000292368137996 -0.00112258096334 +UniRef50_O27097 2 phospho L lactate transferase 0.00228994347001 0.00156414781145 -0.00072579565856 +UniRef50_A6LR83 Drug resistance transporter, EmrB QacA subfamily 9.65437311629e-05 0.00103278156127 0.000936237830107 +UniRef50_UPI00036A9345 hypothetical protein 5.32848429275e-05 1.86717049058e-05 -3.46131380217e-05 +UniRef50_Q8FE40 9.65283474009e-06 0.000145779848251 0.000136127013511 +UniRef50_K9VLK6 0.000135511232593 1.56960430429e-05 -0.00011981518955 +UniRef50_G8UZK4 Replication protein Rep 0.00439265995996 0.000800016090176 -0.00359264386978 +UniRef50_UPI00047CA240 hypothetical protein 8.59037087487e-06 0.000212552231732 0.000203961860857 +UniRef50_Q5LY98 Probable dual specificity RNA methyltransferase RlmN 0.00771002923959 0.00665418278146 -0.00105584645813 +UniRef50_X2N374 0.00163099844591 0.000376199624447 -0.00125479882146 +UniRef50_G8PS78 2.85023979977e-06 4.78823315793e-06 1.93799335816e-06 +UniRef50_F0QDW1 Adenylate guanylate cyclase 0.000183133219776 0.00950985509696 0.00932672187718 +UniRef50_UPI0003C1B148 PREDICTED 4.5065170515e-05 3.72256559668e-05 -7.8395145482e-06 +UniRef50_P77802 Probable outer membrane usher protein EcpC 0.000750848481408 0.00131489472524 0.000564046243832 +UniRef50_Q1J1F1 Diguanylate cyclase 3.37831024948e-06 0.00101143677659 0.00100805846634 +UniRef50_E6N053 O succinylhomoserine sulfhydrylase 0.000353998304629 0.00368434343958 0.00333034513495 +UniRef50_M9VKY5 Mannose 6 phosphate isomerase 0.000197497483254 0.0040960472943 0.00389854981105 +UniRef50_U5NZ17 0.00121850256087 0.000740505583435 -0.000477996977435 +UniRef50_P46723 Delta aminolevulinic acid dehydratase 5.68046062819e-05 6.50359977466e-05 8.2313914647e-06 +UniRef50_Z5R973 2.12106902489e-05 3.54871501192e-05 1.42764598703e-05 +UniRef50_D3E4F5 Archaea specific RecJ like exonuclease 0.00463683983834 0.000251730228627 -0.00438510960971 +UniRef50_Q03CK3 Pyrrolidone carboxylate peptidase 1.29313011648e-05 3.79850278201e-05 2.50537266553e-05 +UniRef50_B7A2D4 Beta glucuronidase UidA 0.00183743949821 0.000496090318404 -0.00134134917981 +UniRef50_Q88UE0 Imidazoleglycerol phosphate dehydratase 1.40955356415e-05 0.000308693420057 0.000294597884415 +UniRef50_UPI00047854CC hypothetical protein 2.66800936349e-06 6.33683522622e-06 3.66882586273e-06 +UniRef50_X5E185 0.000620334373313 0.000271843494808 -0.000348490878505 +UniRef50_UPI00036C176D hypothetical protein 1.88419793905e-05 0.000159095109903 0.000140253130512 +UniRef50_A1V6Q7 4.46632625869e-05 4.60640697911e-05 1.4008072042e-06 +UniRef50_P80651 Tetrahydromethanopterin S methyltransferase subunit E 0.00178714235988 0.00110371478556 -0.00068342757432 +UniRef50_Q83QI5 GTPase Era 0.00159063071802 0.000932449164947 -0.000658181553073 +UniRef50_A5UNW2 0.00285667453409 0.00136811960901 -0.00148855492508 +UniRef50_A5UNW3 0.00242155541944 0.000324816550467 -0.00209673886897 +UniRef50_A5UNW4 0.00247557280243 0.000506243385578 -0.00196932941685 +UniRef50_A5UNW5 0.00341217129683 0.00100274137072 -0.00240942992611 +UniRef50_A1WS37 NAD transhydrogenase, subunit alpha part 2 5.16930851842e-05 5.24131401657e-05 7.200549815e-07 +UniRef50_Q10216 3.18232637393e-05 4.70028660337e-05 1.51796022944e-05 +UniRef50_F2ZBV1 60 kDa chaperonin 2.34873842884e-05 8.27722815076e-05 5.92848972192e-05 +UniRef50_D6D7L5 Phage tail tape measure protein, TP901 family, core region 4.52788031274e-06 0.00296170169458 0.00295717381427 +UniRef50_E4PGW6 L carnitine dehydratase bile acid inducible protein F 0.000101474728189 0.00488797135005 0.00478649662186 +UniRef50_P76319 0.00703951790252 0.00074293510741 -0.00629658279511 +UniRef50_W8T2N2 Mannitol 1 phosphate 5 dehydrogenase 0.00069767491037 0.000105599780768 -0.000592075129602 +UniRef50_UPI000225A95D UDP N acetylglucosamine pyrophosphorylase 3.83319357599e-06 1.13923735143e-05 7.55917993831e-06 +UniRef50_UPI00037DA29D hypothetical protein 2.56199191014e-06 3.89654848214e-06 1.334556572e-06 +UniRef50_P94909 4.82366086317e-05 2.57393219854e-05 -2.24972866463e-05 +UniRef50_D7GCK3 Mannose 1 phosphate guanylyltransferase 0.000219071332796 0.00419968170138 0.00398061036858 +UniRef50_R7VTK3 Neurofilament heavy polypeptide 5.30764219547e-06 3.86684098007e-06 -1.4408012154e-06 +UniRef50_Q9XGI9 N carbamoylputrescine amidase 0.00132858208304 0.00337382397018 0.00204524188714 +UniRef50_U5T4K4 0.00646947657082 0.000984116545227 -0.00548536002559 +UniRef50_Q9RW76 0.000808898547544 0.0447192904455 0.043910391898 +UniRef50_I6SVC2 0.00280303646625 0.00198808735513 -0.00081494911112 +UniRef50_UPI00040EFCE1 hypothetical protein 2.4498473779e-05 2.07891197993e-05 -3.7093539797e-06 +UniRef50_D2N9E8 MAP domain protein 0.00854667035152 0.00167395991889 -0.00687271043263 +UniRef50_UPI0003C75CB7 hypothetical protein 0.000165023126249 0.00013016607264 -3.4857053609e-05 +UniRef50_B9NSA4 7.84094741989e-05 4.15359892577e-05 -3.68734849412e-05 +UniRef50_UPI000413A679 hypothetical protein 0.000110056964347 4.43657873899e-05 -6.56911769571e-05 +UniRef50_E7B190 Methyl viologen resistance protein smvA 0.000247054934676 0.00680520638547 0.00655815145079 +UniRef50_UPI000361644F hypothetical protein 6.24905034921e-05 5.22278513714e-05 -1.02626521207e-05 +UniRef50_G4T2X8 0.00221089323748 0.00142895179933 -0.00078194143815 +UniRef50_F9YYN2 0.0030606972069 0.00565630314522 0.00259560593832 +UniRef50_Q0AZJ3 Chorismate synthase 1.68724057885e-05 0.000113186278063 9.63138722745e-05 +UniRef50_S5CTY8 8.27820150938e-05 0.00527786407966 0.00519508206457 +UniRef50_P08660 Lysine sensitive aspartokinase 3 0.00471721180914 0.00136173150206 -0.00335548030708 +UniRef50_A6U596 Ribonuclease P protein component 0.00776329579911 0.000513594269898 -0.00724970152921 +UniRef50_P45213 Peptide methionine sulfoxide reductase MsrA MsrB 0.00264406343735 0.000476513409224 -0.00216755002813 +UniRef50_S3G9A5 8.31974926995e-05 2.84939044588e-05 -5.47035882407e-05 +UniRef50_W4KUQ3 Cytochrome C biogenesis protein CcmI 2.8766646521e-05 0.000470000061318 0.000441233414797 +UniRef50_UPI0003A1B331 MFS transporter 0.000104642943705 6.44653014978e-06 -9.81964135552e-05 +UniRef50_F3STZ2 Valine tRNA ligase 0.00999356050885 0.00311975584142 -0.00687380466743 +UniRef50_Q8CNH3 Repressor protein 0.00344877995438 0.000588671173145 -0.00286010878123 +UniRef50_UPI0003B68F93 ABC transporter ATPase 7.71706047856e-06 0.000313999243079 0.0003062821826 +UniRef50_A4U2D7 7.77543090901e-05 4.82600080912e-05 -2.94943009989e-05 +UniRef50_UPI0003DEC987 PREDICTED 3.8218700801e-05 0.000100385043428 6.2166342627e-05 +UniRef50_D3DZ44 Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase 0.00256211965701 0.000697670961853 -0.00186444869516 +UniRef50_H8GUK3 Peptidase M20D, amidohydrolase 0.0004455255288 0.0882152863352 0.0877697608064 +UniRef50_J3N2U1 0.00113386794639 4.35696086151e-05 -0.00109029833777 +UniRef50_UPI0003B7917E DNA binding protein 4.13946727472e-06 0.000392638113001 0.000388498645726 +UniRef50_A0Z0Z6 3.14897189465e-06 5.01303605391e-06 1.86406415926e-06 +UniRef50_UPI0003B5A232 ribosomal protein L36 5.0667129952e-05 0.000459378159744 0.000408711029792 +UniRef50_Q7VKM9 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.84622647066e-05 6.4982807109e-06 -2.19639839957e-05 +UniRef50_UPI00036E6417 hypothetical protein 1.52698667396e-06 1.72611975298e-05 1.57342108558e-05 +UniRef50_UPI0003292B2A PREDICTED 1.73186854581e-05 6.82763102027e-05 5.09576247446e-05 +UniRef50_M1N3H4 Exopolysaccharide biosynthesis protein 0.000244962190495 0.000923735088712 0.000678772898217 +UniRef50_F0JXQ7 8.75632513603e-05 0.000370638226522 0.000283074975162 +UniRef50_UPI0002EF3F38 hypothetical protein 2.62164310186e-05 3.32727668159e-06 -2.2889154337e-05 +UniRef50_Q8Z2V9 Superoxide dismutase [Mn] 0.00172662976306 0.00228414191033 0.00055751214727 +UniRef50_Q9RYV9 0.000338251556951 0.00891760645308 0.00857935489613 +UniRef50_J3F9J8 Nicotinamide mononucleotide transporter 0.00418713704251 0.00100758225853 -0.00317955478398 +UniRef50_B5Y0Y6 Queuine tRNA ribosyltransferase 0.00348088671559 0.00257498700551 -0.00090589971008 +UniRef50_K7S0T6 5 Nucleotidase domain containing protein 0.000264021945448 0.00228925626309 0.00202523431764 +UniRef50_G7ZMN3 Iron transporting membrane protein, putative 0.00760783733088 0.000676536190194 -0.00693130114069 +UniRef50_A0A031JAP0 Plasmid stabilization system 0.000209615527261 4.27047485242e-05 -0.000166910778737 +UniRef50_Q0VT82 Monooxygenase, putative 7.93037791655e-05 0.00769352718979 0.00761422341062 +UniRef50_G7U5S7 HAD hydrolase, family IIA 0.000454346682378 0.0061452184808 0.00569087179842 +UniRef50_Q5HLV3 Transcriptional regulator, AraC family 0.0093275210869 0.00209506782327 -0.00723245326363 +UniRef50_F1UC42 0.000137972896485 0.000570682823659 0.000432709927174 +UniRef50_H7CSE8 GntR family transcriptional regulator 0.000256345594659 0.000744558989598 0.000488213394939 +UniRef50_UPI000479951F PTS glucose transporter subunit IIA 1.98508316764e-05 6.26298415928e-05 4.27790099164e-05 +UniRef50_C7ZSD0 GtrA family protein 0.0113369013403 0.000995277041056 -0.0103416242992 +UniRef50_A3JMR3 0.00017439017889 3.5041424328e-05 -0.000139348754562 +UniRef50_UPI00046681A8 hypothetical protein 5.55779695436e-05 3.45500979934e-05 -2.10278715502e-05 +UniRef50_A6M2M1 0.000277276821291 0.00218159784021 0.00190432101892 +UniRef50_UPI0004417C25 hypothetical protein PUNSTDRAFT_59595 3.99121004518e-06 1.35721080172e-05 9.58089797202e-06 +UniRef50_A6LPG6 Hydrolase, TatD family 0.00113515263772 0.00112204662369 -1.310601403e-05 +UniRef50_UPI0003FC161E hypothetical protein 4.26923956839e-05 2.94999216703e-05 -1.31924740136e-05 +UniRef50_G7M238 Transcriptional regulator, TetR family 0.00181163480643 0.00137454010541 -0.00043709470102 +UniRef50_Q8ZAX7 tRNA dihydrouridine synthase B 0.00120825837784 0.00431531295247 0.00310705457463 +UniRef50_Q47SC0 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000175187788843 0.00699325139052 0.00681806360168 +UniRef50_L8E1V7 Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG 0.0141592244189 0.00481627715774 -0.00934294726116 +UniRef50_UPI0003727421 hypothetical protein 1.73729237397e-05 3.58992703517e-05 1.8526346612e-05 +UniRef50_UPI0002D60E46 hypothetical protein 1.34272214726e-05 3.44113955746e-06 -9.98608191514e-06 +UniRef50_Q3HKG9 0.017265930779 0.00265882810498 -0.014607102674 +UniRef50_W0LIC7 Branched chain amino acid transport 4.29519926248e-05 4.48018707836e-05 1.8498781588e-06 +UniRef50_UPI0004702F9D hypothetical protein, partial 0.000211205101001 5.18849272802e-05 -0.000159320173721 +UniRef50_UPI000473FCD3 hypothetical protein, partial 8.54158379408e-05 0.00070817097023 0.000622755132289 +UniRef50_C4K578 UPF0145 protein HDEF_1024 0.000447692830401 0.00211205948976 0.00166436665936 +UniRef50_UPI0003621977 hypothetical protein 8.20029271594e-06 0.000126054317289 0.000117854024573 +UniRef50_Q2NE86 Bifunctional enzyme Fae Hps 0.00209764063385 0.000292763539482 -0.00180487709437 +UniRef50_Q6A9R8 Glycine dehydrogenase 0.000350818823421 0.00680483377118 0.00645401494776 +UniRef50_A8A338 0.00409376665691 0.00193650298488 -0.00215726367203 +UniRef50_P45763 Putative type II secretion system protein L 0.0033416882143 0.000798691199691 -0.00254299701461 +UniRef50_M9VKX5 0.000769967304622 0.00932205000829 0.00855208270367 +UniRef50_Q8A624 ATP dependent 6 phosphofructokinase 2 1.86254678661e-05 2.59001272116e-05 7.2746593455e-06 +UniRef50_V6PAD8 Putative peptidase, aminobenzoyl glutamate utilization protein 0.00299955417645 0.000343391517665 -0.00265616265879 +UniRef50_UPI000471F071 cobinamide kinase 8.91746531157e-06 0.000123197666257 0.000114280200945 +UniRef50_C4ZVV8 HTH type transcriptional regulator MurR 0.00460447238516 0.00169853105957 -0.00290594132559 +UniRef50_K0SVQ3 0.000114183282777 0.00031024253672 0.000196059253943 +UniRef50_I0TP75 0.0123179737632 0.00294292680883 -0.00937504695437 +UniRef50_F8FB46 Iron ABC transporter permease 0.000346376403132 0.00170023368121 0.00135385727808 +UniRef50_Q8ZPN4 0.00482190448347 0.00301192962947 -0.001809974854 +UniRef50_V5BVX1 0.000755547429813 0.000151880351022 -0.000603667078791 +UniRef50_G5ML36 Permease protein HisM 0.00015093983677 0.000198420687431 4.7480850661e-05 +UniRef50_UPI0003712D9F cold shock protein 1.39807736308e-05 1.10369855935e-05 -2.9437880373e-06 +UniRef50_P52614 Flagellar hook length control protein 0.00358840843536 0.000511266433277 -0.00307714200208 +UniRef50_W9CKC5 2.15410417027e-05 1.81642870237e-05 -3.376754679e-06 +UniRef50_V8HF01 Transposase IS5 0.000495757062521 0.000118484775626 -0.000377272286895 +UniRef50_A4WVU4 Surface antigen 0.00158803482858 0.000327340409736 -0.00126069441884 +UniRef50_I6TXF6 0.00130488493397 0.000972432875408 -0.000332452058562 +UniRef50_D4HD50 0.000290483666308 0.000257375315014 -3.3108351294e-05 +UniRef50_UPI00046FE274 hypothetical protein 3.37683565218e-05 1.47411157041e-05 -1.90272408177e-05 +UniRef50_D4HD52 0.000111025290843 0.00470598960883 0.00459496431799 +UniRef50_G4Q6N7 Inner membrane translocator 0.0064481718642 0.00527372306114 -0.00117444880306 +UniRef50_UPI00046D7550 hypothetical protein 1.8196074651e-05 2.00989171014e-05 1.9028424504e-06 +UniRef50_S4YYU3 GntR family transcriptional regulator 0.000241462252992 0.00524339973559 0.0050019374826 +UniRef50_P50045 Urease subunit beta 9.56859371734e-06 3.71457135516e-05 2.75771198343e-05 +UniRef50_L0WLU4 Apolipoprotein N acyltransferase 0.000177081527952 0.00839953829536 0.00822245676741 +UniRef50_UPI0004659182 phosphoadenosine phosphosulfate reductase 1.12127392719e-05 1.66251038809e-05 5.412364609e-06 +UniRef50_UPI000225A9BC bacteriophage replication gene A protein 0.00022371803292 0.000252878997653 2.9160964733e-05 +UniRef50_E4PPI0 UPF0125 protein HP15_3087 1.70732814203e-05 3.4631863056e-05 1.75585816357e-05 +UniRef50_B7V3C6 0.000620833664586 0.000192807424497 -0.000428026240089 +UniRef50_UPI00047C25CC cytochrome D ubiquinol oxidase subunit II 1.45975191631e-05 2.0504367565e-05 5.9068484019e-06 +UniRef50_A6LSC2 3 oxoacyl [acyl carrier protein] synthase 3 0.000600102861441 0.000208453041384 -0.000391649820057 +UniRef50_UPI0004771F9A hypothetical protein 4.1757239244e-06 1.11573688496e-05 6.9816449252e-06 +UniRef50_A6LR66 Signal transduction histidine kinase regulating citrate malate metabolism 9.214466774e-05 0.000388596770786 0.000296452103046 +UniRef50_A4XYX3 Lipoyl synthase 3.94357719838e-06 0.0563654446876 0.0563615011104 +UniRef50_UPI000386F412 PREDICTED 6.52068591621e-06 1.02025904921e-05 3.68190457589e-06 +UniRef50_A0A058YZC5 1.48948292193e-05 0.000108221522658 9.33266934387e-05 +UniRef50_UPI0004548432 PREDICTED 2.04429158187e-05 0.000111479742682 9.10368268633e-05 +UniRef50_R8A9F1 0.0022233228711 0.00131594079692 -0.00090738207418 +UniRef50_F6II99 YVTN beta propeller repeat containing protein 0.000162106227539 1.48045921339e-05 -0.000147301635405 +UniRef50_P0AFH0 Methylated DNA protein cysteine methyltransferase 0.00375778777938 0.000346751512944 -0.00341103626644 +UniRef50_UPI000370022D hypothetical protein 7.92407470081e-06 3.02541310036e-06 -4.89866160045e-06 +UniRef50_P24205 Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase 0.00336801201352 0.000985982117213 -0.00238202989631 +UniRef50_UPI000379C912 hypothetical protein 2.70993756199e-05 5.67495541447e-06 -2.14244202054e-05 +UniRef50_UPI00035D44F9 hypothetical protein 2.53655065304e-06 1.43741449778e-05 1.18375943248e-05 +UniRef50_UPI0003B7A57E prolipoprotein diacylglyceryl transferase 0.000137634071901 1.00455974915e-05 -0.00012758847441 +UniRef50_Q8CP86 Putative branched chain amino acid carrier protein SE_1090 0.0155643108753 0.00480222598513 -0.0107620848902 +UniRef50_G8AFT7 0.0118807814263 0.000163379172346 -0.011717402254 +UniRef50_UPI00046E7A1E TonB dependent receptor 0.000213842960087 0.000179398412117 -3.444454797e-05 +UniRef50_U2RQ03 0.000639806760763 0.00495573661168 0.00431592985092 +UniRef50_F5M4B6 0.000296661755423 0.000694993764996 0.000398332009573 +UniRef50_Q9I7A3 0.000752274247313 0.000188500024587 -0.000563774222726 +UniRef50_V5SRZ3 Aminoglycoside phosphotransferase 0.00080641702341 0.000329962799096 -0.000476454224314 +UniRef50_Q0T1Y1 3 phenylpropionate cinnamic acid dioxygenase subunit alpha 0.0036595801954 0.0023085886548 -0.0013509915406 +UniRef50_Q0TMN9 DNA directed RNA polymerase subunit beta 4.25549847631e-06 4.85212492119e-06 5.9662644488e-07 +UniRef50_C5F4X4 Spermidine putrescine ABC transporter permease 0.0187750295822 0.00864786608688 -0.0101271634953 +UniRef50_A6LQT7 Ribulose phosphate 3 epimerase 0.000542965031826 0.00111168135594 0.000568716324114 +UniRef50_Q7UKV0 Peptidyl tRNA hydrolase 1.73284287074e-05 2.8350129515e-05 1.10217008076e-05 +UniRef50_UPI000477C8DB alcohol dehydrogenase 1.16730695514e-05 1.73136486649e-05 5.6405791135e-06 +UniRef50_A2FBD4 Alanine dehydrogenase 2, putative 1.30916503275e-05 1.20698673995e-05 -1.021782928e-06 +UniRef50_D5ALB3 0.000330691039377 5.32549878972e-05 -0.00027743605148 +UniRef50_A4WQF1 Homocysteine S methyltransferase 0.000331442869217 0.000192807424497 -0.00013863544472 +UniRef50_Q9KL04 Maltose maltodextrin import ATP binding protein MalK 7.78327777594e-05 2.29644103942e-05 -5.48683673652e-05 +UniRef50_A9WP05 Dihydroxy acid dehydratase 3.77364924188e-05 3.58646342559e-05 -1.8718581629e-06 +UniRef50_UPI0002FFECEA hypothetical protein 4.24335872169e-05 4.23905152011e-05 -4.30720158e-08 +UniRef50_Q3J7W9 2.83638882642e-05 0.000108647044534 8.02831562698e-05 +UniRef50_UPI0002192F2F putative nitrate transport ATP binding protein, partial 0.000106128058674 0.000153041771148 4.6913712474e-05 +UniRef50_UPI0002E83586 hypothetical protein 9.80496521369e-06 8.35181853421e-06 -1.45314667948e-06 +UniRef50_UPI000367925C hypothetical protein 1.05795066237e-05 2.2947070667e-06 -8.284799557e-06 +UniRef50_A8ZXR7 Phosphopantetheine adenylyltransferase 3.22051603876e-05 1.5069480091e-05 -1.71356802966e-05 +UniRef50_UPI00029A061A adenylosuccinate lyase 5.94167392635e-05 6.11477142931e-05 1.7309750296e-06 +UniRef50_UPI000363D694 hypothetical protein 0.000117411954549 4.9575529495e-05 -6.7836425054e-05 +UniRef50_Q3HKJ2 0.00269523790358 0.00108495875889 -0.00161027914469 +UniRef50_UPI00036EA5DF hypothetical protein 0.00788801390558 0.000551993841485 -0.00733602006409 +UniRef50_U6ZV82 0.000324665739305 0.00027688397003 -4.7781769275e-05 +UniRef50_Q9HZJ5 DNA topoisomerase 1 0.00295712263778 0.00405126519879 0.00109414256101 +UniRef50_E8TEM3 2 oxo hepta 3 ene 1,7 dioic acid hydratase 0.000657885372515 0.000893307354578 0.000235421982063 +UniRef50_I0TLB8 Cupin domain protein 0.000356597114027 0.000430914410902 7.4317296875e-05 +UniRef50_B2IPX4 ATP dependent helicase deoxyribonuclease subunit B 1.15243091141e-05 0.00368289538595 0.00367137107684 +UniRef50_Q9RW95 General secretion pathway protein D, putative 0.000118768598299 0.0408669558821 0.0407481872838 +UniRef50_A6LZ07 Abortive infection protein 0.000321530260182 0.00182389037252 0.00150236011234 +UniRef50_W8RWR3 Isopropylmalate homocitrate citramalate synthase 0.000539975417129 0.000232434771269 -0.00030754064586 +UniRef50_E8P8P5 0.000142447542961 0.00855328807824 0.00841084053528 +UniRef50_E8SK14 Teichoic acid export ATP binding protein TagH 0.00940812031823 0.00280428507158 -0.00660383524665 +UniRef50_E8P8P8 8.03161678458e-05 0.00715194512967 0.00707162896182 +UniRef50_B9DKZ2 Protein containing tetrapyrrole methyltransferase domain and MazG like domain 0.0207868554593 0.00594930985708 -0.0148375456022 +UniRef50_F5XQT8 LytR family regulatory protein 5.56587208972e-06 2.10428146095e-05 1.54769425198e-05 +UniRef50_UPI00047372AD hypothetical protein, partial 5.16139642758e-05 9.66415441571e-06 -4.19498098601e-05 +UniRef50_A4VGB2 1.4026429172e-05 0.00094954506201 0.000935518632838 +UniRef50_Q7N1I3 Antitoxin HicB 1 0.0041488346692 0.000418888943548 -0.00372994572565 +UniRef50_Q9X7L2 2 isopropylmalate synthase 2.74042676633e-06 1.88238035281e-05 1.60833767618e-05 +UniRef50_D4BTI9 Cardiolipin synthetase 0.000532307127821 0.000253128604458 -0.000279178523363 +UniRef50_W9FRU9 2.1366917559e-05 0.000380120859522 0.000358753941963 +UniRef50_K0SKL9 4.29105761455e-05 0.00103586261032 0.000992952034175 +UniRef50_A3MKU1 Uridylate kinase 0.0157517403776 0.0133283830394 -0.0024233573382 +UniRef50_Q6G726 0.0012443011832 0.00438504426591 0.00314074308271 +UniRef50_Q7V4J6 Acyl carrier protein 2.20533689596e-05 0.000107846393731 8.57930247714e-05 +UniRef50_UPI000346B698 hypothetical protein 7.86193726444e-06 2.46085373935e-06 -5.40108352509e-06 +UniRef50_UPI00036E5C3C hypothetical protein 1.74793804508e-06 1.42354088044e-05 1.24874707593e-05 +UniRef50_M7Y540 Dipeptide transporter permease DppB 0.000126798281886 9.80153948154e-05 -2.87828870706e-05 +UniRef50_F0RJ20 6.64877596397e-05 0.000680804966381 0.000614317206741 +UniRef50_Q4K4P3 Permease, cytosine purine, uracil, thiamine, allantoin family 0.000441796181201 0.000316820360017 -0.000124975821184 +UniRef50_O31611 GTP pyrophosphokinase YjbM 0.00329889737152 0.00257424011629 -0.00072465725523 +UniRef50_A6W7I0 4.32204273809e-05 0.000183970974469 0.000140750547088 +UniRef50_G9A888 Multidrug resistance protein, AcrB family 0.00355628985989 0.000186848059888 -0.0033694418 +UniRef50_W0X4S5 0.000134018694272 0.000612407914008 0.000478389219736 +UniRef50_Q3IXT7 ABC peptide opine transporter, ATPase subunit 0.000310355949796 0.000337504805945 2.7148856149e-05 +UniRef50_UPI00036250D8 hypothetical protein 0.000269425781806 1.42946448112e-05 -0.000255131136995 +UniRef50_UPI000169B03B FKBP type peptidyl prolyl cis trans isomerase 0.000350998626548 7.69030954929e-05 -0.000274095531055 +UniRef50_UPI0000E11708 beta hexosaminidase 1.23875862612e-05 2.58390102263e-05 1.34514239651e-05 +UniRef50_A5UK53 Alcohol dehydrogenase , GroES like protein 0.00399095188806 0.00131679807146 -0.0026741538166 +UniRef50_P65239 Ribose phosphate pyrophosphokinase 1 1.79723412269e-05 0.0126940964913 0.0126761241501 +UniRef50_UPI0002F7DE76 hypothetical protein 6.16494005513e-06 0.000116539159572 0.000110374219517 +UniRef50_A5IUX4 Choline carnitine betaine transporter 0.00995484830915 0.00221901340908 -0.00773583490007 +UniRef50_A4XP60 Acetylornithine deacetylase 0.000220165381129 0.000219566323568 -5.99057561e-07 +UniRef50_I0ELI9 DnaA initiator associating factor for replication initiation HobA 0.000536709936758 0.00167018452953 0.00113347459277 +UniRef50_B9MQ98 Phospho N acetylmuramoyl pentapeptide transferase 6.00312187926e-06 3.09970590735e-05 2.49939371942e-05 +UniRef50_U3AIN5 9.97033956804e-06 1.3263118562e-05 3.29277899396e-06 +UniRef50_C5MYS8 Acyl coenzyme A 0.0225218291506 0.00513925545284 -0.0173825736978 +UniRef50_A3V0X0 Membrane protein, putative 2.96234008235e-05 1.64512640605e-05 -1.3172136763e-05 +UniRef50_A6LUJ9 DegV family protein 0.00100167007762 0.000469515830098 -0.000532154247522 +UniRef50_Q1RIM1 DNA topoisomerase 1 5.33705420125e-06 1.70560998832e-06 -3.63144421293e-06 +UniRef50_F0VRX4 Autolysin 0.00629277981773 0.00184090115647 -0.00445187866126 +UniRef50_Q9FKK7 Xylose isomerase 0.000225341521387 0.00687447082843 0.00664912930704 +UniRef50_UPI000468EE55 ATP dependent DNA helicase PcrA 2.02305340402e-05 4.5308788777e-06 -1.56996551625e-05 +UniRef50_P37617 Lead, cadmium, zinc and mercury transporting ATPase 0.00371605280545 0.000984643946884 -0.00273140885857 +UniRef50_UPI0004669FC1 oxidoreductase 9.08145923477e-05 0.00525690664124 0.00516609204889 +UniRef50_UPI000471FBF4 thioredoxin 5.26428284755e-05 6.31718181032e-05 1.05289896277e-05 +UniRef50_UPI000467E3B3 transposase 7.1175157891e-05 0.000134233565215 6.3058407324e-05 +UniRef50_R9SIT6 0.00105447552396 0.000354167404262 -0.000700308119698 +UniRef50_UPI0004780904 cobinamide adenolsyltransferase 8.42087887165e-05 0.0267519938802 0.0266677850915 +UniRef50_P30526 Anthranilate synthase component 1 1.07151405708e-05 5.81191912066e-06 -4.90322145014e-06 +UniRef50_Q2FFK2 Ferritin 0.0437379970517 0.00258336485784 -0.0411546321939 +UniRef50_UPI00047870AD GTP pyrophosphokinase 6.260201921e-06 2.68810685441e-06 -3.57209506659e-06 +UniRef50_Q99V46 Staphopain B 0.00756196738298 0.0032146623785 -0.00434730500448 +UniRef50_A5UMY4 Predicted RNA binding protein 0.00215854439897 0.00292264550899 0.00076410111002 +UniRef50_Q89UE3 Malate synthase G 0.00334350506728 0.000650725569601 -0.00269277949768 +UniRef50_Q9CEY4 Putrescine carbamoyltransferase 0.00840628351147 0.00355173537106 -0.00485454814041 +UniRef50_J9NSA1 3.61931089539e-05 2.23689870118e-05 -1.38241219421e-05 +UniRef50_UPI0003B73B69 glutaredoxin 6.26566082592e-05 0.000370809750344 0.000308153142085 +UniRef50_F3SCH8 Thymocyte nuclear protein 1 2.49606771213e-05 1.76728271941e-05 -7.2878499272e-06 +UniRef50_A5MC69 6.48813894289e-05 0.00395893790491 0.00389405651548 +UniRef50_M4AFD6 1.83432535653e-05 2.7888944479e-05 9.5456909137e-06 +UniRef50_UPI00034ACF0F hypothetical protein 2.19233243606e-05 0.000158987969475 0.000137064645114 +UniRef50_C8S1S6 Plasmid partitioning protein RepA 0.000319265879641 9.50834551224e-05 -0.000224182424519 +UniRef50_A6LRW1 Phage portal protein 0.00028744254467 0.00250912031843 0.00222167777376 +UniRef50_Q886P5 Bifunctional uridylyltransferase uridylyl removing enzyme 0.000821351494297 0.00020991480622 -0.000611436688077 +UniRef50_A1SWU5 Threonine tRNA ligase 0.00148057926367 0.00155480886701 7.422960334e-05 +UniRef50_R4PYA3 Ribonucleoside diphosphate reductase 0.00458453426269 0.00531181366406 0.00072727940137 +UniRef50_O94634 Threonine dehydratase, mitochondrial 6.7003977773e-06 1.35929351983e-05 6.892537421e-06 +UniRef50_Q4L5E4 Phenylalanine tRNA ligase beta subunit 0.0191294504504 0.00700138403892 -0.0121280664115 +UniRef50_V6NXW6 7.25465146038e-05 0.000157644172158 8.50976575542e-05 +UniRef50_Q9RU25 Peptide ABC transporter, permease protein 0.000314822511971 0.0592678085587 0.0589529860467 +UniRef50_R4K2V5 Phosphatidate cytidylyltransferase 0.000214887659684 0.00137783290954 0.00116294524986 +UniRef50_UPI0002B41FFA PREDICTED 6.91155891341e-06 4.64619820241e-06 -2.265360711e-06 +UniRef50_Q5H5P3 Integral membrane protein 8.29663312346e-06 0.06248737091 0.0624790742769 +UniRef50_UPI00046F521F ribonucleoside hydrolase, partial 8.88573458678e-06 5.80196141169e-05 4.91338795301e-05 +UniRef50_UPI00036EE5B3 endonuclease 8.84565813259e-05 0.000165004225743 7.65476444171e-05 +UniRef50_UPI0003B7257B TetR family transcriptional regulator 7.24634714497e-05 7.20076022857e-05 -4.55869164e-07 +UniRef50_C4U4D5 5.8802189703e-05 6.41585800394e-05 5.3563903364e-06 +UniRef50_A4X048 0.000786422430849 0.000401854706556 -0.000384567724293 +UniRef50_A7GMD4 2 oxoglutarate dehydrogenase E1 component 5.329557137e-06 0.000418319637284 0.000412990080147 +UniRef50_H8GVT2 Cytochrome P450 0.000100573531661 0.0474756170523 0.0473750435206 +UniRef50_UPI00016C05CE glycogen starch alpha glucan phosphorylase 0.000632550941626 0.00153541029098 0.000902859349354 +UniRef50_UPI0003C13A7A PREDICTED 9.54813530928e-06 8.31517912632e-05 7.36036559539e-05 +UniRef50_UPI00047D9051 hypothetical protein 0.000335690007277 0.000114209131322 -0.000221480875955 +UniRef50_UPI00046657E8 hypothetical protein 1.67704013358e-05 7.31284328736e-07 -1.60391170071e-05 +UniRef50_S4MC93 0.00035774733061 0.000312281141212 -4.5466189398e-05 +UniRef50_P52067 Fosmidomycin resistance protein 0.00217636788641 0.00117454805599 -0.00100181983042 +UniRef50_A0A059DRC5 0.000219847190836 8.34085961124e-05 -0.000136438594724 +UniRef50_S5CP54 0.000158156601349 0.00662009964046 0.00646194303911 +UniRef50_P12655 PTS system sucrose specific EIIBCA component 0.00421321265955 0.00099123625233 -0.00322197640722 +UniRef50_A3CNS7 0.00907791188288 0.00884019256131 -0.00023771932157 +UniRef50_D3DZS9 ABC transporter ATP binding protein 0.00366346890755 0.00120590444208 -0.00245756446547 +UniRef50_Q00277 Glutathione peroxidase 0.00606583482233 0.00145580599575 -0.00461002882658 +UniRef50_UPI00046E9599 hypothetical protein 6.86331472052e-06 3.58280171403e-05 2.89647024198e-05 +UniRef50_A6UGG8 2.57726533676e-06 3.01131687212e-05 2.75359033844e-05 +UniRef50_UPI0003F4971B hypothetical protein TREMEDRAFT_28317 8.30692322542e-06 5.35310911676e-05 4.52241679422e-05 +UniRef50_UPI00029A7679 histidine kinase 5.09012454788e-05 0.000104874073389 5.39728279102e-05 +UniRef50_Q5YRD1 Methionine import ATP binding protein MetN 2.34829594014e-05 8.33825182062e-06 -1.51447075808e-05 +UniRef50_UPI0004561653 hypothetical protein PFL1_00418 1.44351542592e-05 1.6930141662e-05 2.4949874028e-06 +UniRef50_C5MYZ4 0.0157058398563 0.0029073386529 -0.0127985012034 +UniRef50_A0A059IL85 4.3909652103e-05 3.60330953846e-05 -7.8765567184e-06 +UniRef50_P36674 HTH type transcriptional regulator TreR 0.00204397456903 0.00244413423677 0.00040015966774 +UniRef50_UPI000360C55F hypothetical protein 5.98192800769e-06 3.44116182315e-05 2.84296902238e-05 +UniRef50_E2PIJ4 0.00102950724232 0.00218130469219 0.00115179744987 +UniRef50_Q99QS1 Protein map 0.0060240792885 0.000743240575922 -0.00528083871258 +UniRef50_V6JB74 Thioesterase superfamily protein 2.89059043789e-05 0.000788673671916 0.000759767767537 +UniRef50_UPI00030E967A hypothetical protein 5.10257720516e-06 1.09033715407e-05 5.80079433554e-06 +UniRef50_B5FD80 Type VI secretion protein, family 6.24297267153e-06 9.63935303958e-06 3.39638036805e-06 +UniRef50_Q67KF8 Phosphoribosylformylglycinamidine synthase 2 1.77683552199e-05 3.24065620478e-06 -1.45276990151e-05 +UniRef50_Q5GVA4 Dehydrogenase 0.000844599915232 0.0044410477957 0.00359644788047 +UniRef50_A4EC20 5.86619003005e-05 4.57209879124e-05 -1.29409123881e-05 +UniRef50_C3M9I7 0.00017268983657 5.74324696195e-05 -0.00011525736695 +UniRef50_Q7X1N2 Lfe103p1 2.53626234397e-05 6.37290777491e-05 3.83664543094e-05 +UniRef50_L7WUJ3 ABC transporter permease 0.00749172007414 0.00410359688673 -0.00338812318741 +UniRef50_P36672 PTS system trehalose specific EIIBC component 0.00348580978333 0.00448846038804 0.00100265060471 +UniRef50_UPI0003CFF16B SsrA binding protein 1.09328068852e-05 3.76746411507e-05 2.67418342655e-05 +UniRef50_Q9VQX4 Nicotinate phosphoribosyltransferase 2.78788704917e-06 7.95108143169e-06 5.16319438252e-06 +UniRef50_W0NF85 4.77447072474e-06 6.61782828567e-06 1.84335756093e-06 +UniRef50_UPI0003A03E70 FAD dependent oxidoreductase 2.76775127724e-05 1.01169724679e-05 -1.75605403045e-05 +UniRef50_O67642 Transketolase 5.82247897919e-06 1.07195573749e-05 4.89707839571e-06 +UniRef50_L7DMI2 0.000930544261681 0.000121953453206 -0.000808590808475 +UniRef50_P77263 Probable fimbrial chaperone EcpE 0.00410762734431 0.000255685459043 -0.00385194188527 +UniRef50_UPI0003B721B0 ATPase P 2.66782867982e-06 2.72188900409e-05 2.45510613611e-05 +UniRef50_Q11I48 ATP dependent Clp protease proteolytic subunit 2 7.7979696401e-06 0.000306027673785 0.000298229704145 +UniRef50_A1B0S4 Transposase, IS5 family 0.000306837909612 0.000128754718473 -0.000178083191139 +UniRef50_P23840 DNA damage inducible protein D 0.00157981000808 0.00143570803253 -0.00014410197555 +UniRef50_I1Y3Y4 Multidrug resistance efflux pump 0.000538408292668 0.0054899375577 0.00495152926503 +UniRef50_D4J6G0 Amino acid ABC transporter substrate binding protein, PAAT family 0.00281348997862 0.000874316134225 -0.00193917384439 +UniRef50_UPI0003644DE3 hypothetical protein 2.89671946234e-05 5.32933931082e-06 -2.36378553126e-05 +UniRef50_A8FNH9 Carboxynorspermidine carboxyspermidine decarboxylase 6.91463769744e-05 8.41177223149e-06 -6.07346047429e-05 +UniRef50_L7UHD0 DGPF domain containing protein 4.71875756953e-05 2.49290811974e-05 -2.22584944979e-05 +UniRef50_UPI00046ADB22 3 hydroxyisobutyrate dehydrogenase 7.74342288829e-06 8.73457519056e-06 9.9115230227e-07 +UniRef50_A6LZ68 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000424320049013 0.000499387474997 7.5067425984e-05 +UniRef50_P77154 0.00178739776729 0.00121963045875 -0.00056776730854 +UniRef50_UPI00029AD7C0 ribosomal large subunit pseudouridine synthase A, partial 0.000384195037709 7.25258829261e-05 -0.000311669154783 +UniRef50_A5UM01 Pheromone shutdown protein, TraB family 0.00247638550246 0.00134747560098 -0.00112890990148 +UniRef50_Q02RK7 0.000728722208372 0.000194074505054 -0.000534647703318 +UniRef50_Q9RVA9 Probable butyrate kinase 9.57276387603e-05 0.00128239424401 0.00118666660525 +UniRef50_Q8XMG8 Zinc transporter ZupT 0.000119963767644 0.000536874721219 0.000416910953575 +UniRef50_A1W1W9 3 isopropylmalate dehydratase small subunit 1.19296027404e-05 2.26478447543e-05 1.07182420139e-05 +UniRef50_E6MWH5 0.00224337068985 0.00260573563408 0.00036236494423 +UniRef50_S5N5Q9 Ribulose phosphate 3 epimerase 0.000819174802876 0.00205266893707 0.00123349413419 +UniRef50_Q8XI79 Putative pyruvate, phosphate dikinase regulatory protein 0.000232061058724 0.0011330555826 0.000900994523876 +UniRef50_Q6ZKP4 8.31037641478e-05 3.74387782484e-05 -4.56649858994e-05 +UniRef50_UPI0003B52784 ATPase 5.75239184644e-06 3.61564552382e-06 -2.13674632262e-06 +UniRef50_Q87QK9 Histidine biosynthesis bifunctional protein HisB 0.000911200984642 0.000354844347581 -0.000556356637061 +UniRef50_D8LJV9 3.57580665174e-05 5.58606630291e-05 2.01025965117e-05 +UniRef50_UPI0003625364 alkaline phosphatase 5.75414261513e-06 3.29535977939e-06 -2.45878283574e-06 +UniRef50_H9UZ27 0.000794942020893 0.00053693946399 -0.000258002556903 +UniRef50_F3U4H9 0.00130997634709 0.000462287616326 -0.000847688730764 +UniRef50_A0A022NNU5 8.88518243538e-05 1.71604656927e-05 -7.16913586611e-05 +UniRef50_A5ULV6 Ribonuclease HII 0.00300657107502 0.000284871419803 -0.00272169965522 +UniRef50_UPI00036D09DC hypothetical protein, partial 5.43824717982e-05 1.79665267805e-05 -3.64159450177e-05 +UniRef50_F9Z1I9 3 oxoacyl [acyl carrier protein] synthase 1 0.000461460406091 0.00477535766012 0.00431389725403 +UniRef50_UPI0003B52617 transporter 0.000227603734835 4.02957882144e-05 -0.000187307946621 +UniRef50_H5Y2B5 Cytosine deaminase like metal dependent hydrolase 8.57273252495e-05 0.00118128824708 0.00109556092183 +UniRef50_P16678 Putative phosphonates utilization ATP binding protein PhnK 0.00271970167633 0.000272181295113 -0.00244752038122 +UniRef50_B4RDA5 1.71103444027e-05 4.65761627788e-05 2.94658183761e-05 +UniRef50_UPI00015FC63D hypothetical protein 0.000151282223013 5.32226048435e-05 -9.80596181695e-05 +UniRef50_U6LWE1 1.04748990013e-05 1.14716119181e-05 9.967129168e-07 +UniRef50_Q8CTH6 Urea amidolyase 0.0189818111781 0.00457581813622 -0.0144059930419 +UniRef50_Q9RRX1 Acyl CoA dehydrogenase, putative 0.000147444917754 0.0531942052309 0.0530467603131 +UniRef50_UPI00035ED69A hypothetical protein 5.40722671001e-06 8.15881019073e-06 2.75158348072e-06 +UniRef50_Q8A1F7 Elongation factor P 1.58786034046e-05 0.0065645201445 0.0065486415411 +UniRef50_A3PHK3 ComEC Rec2 related protein 0.000877295710645 0.000197497658938 -0.000679798051707 +UniRef50_P46920 Glycine betaine transport ATP binding protein OpuAA 0.00459674635824 0.00447427891711 -0.00012246744113 +UniRef50_UPI00035CE6C9 hypothetical protein 0.000202867599011 3.80399362617e-05 -0.000164827662749 +UniRef50_I7BZ98 1.64279156742e-05 0.000637310285562 0.000620882369888 +UniRef50_U3T4G5 Pseudouridine synthase 0.000541845917011 0.00861812180895 0.00807627589194 +UniRef50_D6M2H8 Fatty oxidation complex, alpha subunit 0.000320612664711 0.000771731647059 0.000451118982348 +UniRef50_UPI00047E1145 sugar ABC transporter permease 0.00355996176418 0.000685775888195 -0.00287418587599 +UniRef50_P44468 Rod shape determining protein RodA 0.000423400043966 0.000161817372704 -0.000261582671262 +UniRef50_UPI0004255E92 adenylosuccinate synthetase 1.90407271338e-05 1.30306912679e-05 -6.0100358659e-06 +UniRef50_G8VQJ8 0.000259143699447 0.00698571364398 0.00672656994453 +UniRef50_R9IVY1 1.52114184662e-05 0.004097579608 0.00408236818953 +UniRef50_UPI000346609E hypothetical protein 4.14152799715e-06 6.08732020474e-06 1.94579220759e-06 +UniRef50_UPI000478591D amino acid ABC transporter permease 2.17703288817e-05 4.48057822709e-05 2.30354533892e-05 +UniRef50_UPI000479F6B7 transporter 2.69775984851e-05 0.000199357786174 0.000172380187689 +UniRef50_Q9RY77 Phosphate acetyltransferase 4.09872310179e-06 0.0215410898964 0.0215369911733 +UniRef50_C9CZK5 0.000131769352783 9.55312495184e-05 -3.62381032646e-05 +UniRef50_Y5PA95 1.82108238854e-05 2.64770361678e-05 8.2662122824e-06 +UniRef50_A6M280 RelA SpoT domain protein 0.00122526368747 0.0041141556324 0.00288889194493 +UniRef50_O32035 0.0192825334003 0.00248698571214 -0.0167955476882 +UniRef50_O32034 0.0222695974246 0.00555000856796 -0.0167195888566 +UniRef50_UPI000467BFBE hypothetical protein 1.76155561431e-05 0.000123700533988 0.000106084977845 +UniRef50_UPI0002B4A544 4.9770038448e-07 4.07776717737e-05 4.02799713892e-05 +UniRef50_B8J198 Lon protease 4.85677086175e-06 4.45031583673e-06 -4.0645502502e-07 +UniRef50_A6M0E8 TPR repeat containing protein 0.000309024063976 0.000803119987383 0.000494095923407 +UniRef50_L8E534 Undefined function 0.00308482605995 0.00116451614519 -0.00192030991476 +UniRef50_Q03K84 Phosphoribosyl ATP pyrophosphatase 0.00131485339287 0.0010076174605 -0.00030723593237 +UniRef50_P34559 Probable enoyl CoA hydratase, mitochondrial 8.83951690476e-06 1.65801515694e-05 7.74063466464e-06 +UniRef50_U1EG57 3.92919240134e-05 0.000152594129773 0.00011330220576 +UniRef50_A6M1X1 FMN binding domain protein 0.000516279836014 0.00117829586626 0.000662016030246 +UniRef50_UPI00035DE7E6 hypothetical protein 7.08492961009e-06 2.51051795707e-05 1.80202499606e-05 +UniRef50_A0A023S135 Ferrous iron transporter B 0.000549736876965 0.0115642022308 0.0110144653538 +UniRef50_P33224 Putative acyl CoA dehydrogenase AidB 0.00373902454694 0.00108251365615 -0.00265651089079 +UniRef50_W5X8Z0 Ribose phosphate pyrophosphokinase 1.89606206925e-05 1.65731157611e-05 -2.3875049314e-06 +UniRef50_UPI000378494C hypothetical protein 0.000143473277397 6.12769494843e-05 -8.21963279127e-05 +UniRef50_UPI0003B44A26 membrane protein 5.18520910706e-06 0.00103989937472 0.00103471416561 +UniRef50_N0AUD5 0.000240516974948 2.94791027639e-05 -0.000211037872184 +UniRef50_M4WTT8 0.000249440080738 0.00026057356341 1.1133482672e-05 +UniRef50_X6L243 0.00051456069069 0.000134071258569 -0.000380489432121 +UniRef50_UPI0003F95F23 phosphonate ABC transporter ATP binding protein 9.86836993847e-06 0.000111168036762 0.000101299666824 +UniRef50_R5G6K3 Histidinol phosphate phosphatase HisJ family 0.000191293575433 0.00050321563993 0.000311922064497 +UniRef50_UPI00047094F6 ABC transporter 3.88380847905e-06 1.33642628266e-05 9.48045434755e-06 +UniRef50_Q9RS47 Uracil permease 0.000257493506759 0.0227836959836 0.0225262024768 +UniRef50_UPI000360D3DC hypothetical protein 5.02406901305e-06 0.000173265353639 0.000168241284626 +UniRef50_W5X572 L aspartate aminotransferase 2.3107970826e-06 3.35640392357e-05 3.12532421531e-05 +UniRef50_UPI0002ECDC1A hypothetical protein 4.63564673417e-06 6.86068578189e-06 2.22503904772e-06 +UniRef50_W6IAM9 Putative membrane spanning protein 1.10833186687e-06 1.96018066643e-06 8.5184879956e-07 +UniRef50_A5ULW0 0.00384399294531 0.000917465041578 -0.00292652790373 +UniRef50_UPI0003B49F43 hypothetical protein 3.75532743659e-05 5.03889230957e-05 1.28356487298e-05 +UniRef50_Q9MUN1 Sulfate thiosulfate import ATP binding protein CysA 0.000117384284026 5.31804455429e-05 -6.42038384831e-05 +UniRef50_H5FVP6 Amidohydrolase family protein 0.000480959390166 0.000136090647547 -0.000344868742619 +UniRef50_A6LXR8 hydrogenase maturation protein HypF 0.000843671853631 0.00153450821843 0.000690836364799 +UniRef50_C0VQW3 6.54339857247e-06 0.000108705535652 0.00010216213708 +UniRef50_UPI000471077D hypothetical protein, partial 7.12238041405e-06 1.55443768174e-05 8.42199640335e-06 +UniRef50_Q5H2Q9 IS1478 transposase 3.63207482007e-05 2.83227934887e-05 -7.997954712e-06 +UniRef50_G8AGV1 RepB plasmid partition 1.95383615074e-06 1.129302826e-05 9.33919210926e-06 +UniRef50_H2JWP6 Permease for cytosine purines uracil thiamine allantoin 7.94707344991e-05 0.00579436111513 0.00571489038063 +UniRef50_W6K6P7 0.00178344578038 0.000942500122969 -0.000840945657411 +UniRef50_UPI00047DE1A1 spermidine putrescine ABC transporter substrate binding protein 8.17412784086e-06 0.000194481319863 0.000186307192022 +UniRef50_E1Q026 Iron regulated outer membrane protein 0.000177131573659 0.00576244977216 0.0055853181985 +UniRef50_D8GLI1 0.000262143047812 0.00122482886349 0.000962685815678 +UniRef50_UPI00046EAE05 2 amino 3 ketobutyrate CoA ligase 3.4402725433e-05 8.32174359318e-06 -2.60809818398e-05 +UniRef50_C4ZA66 Xanthine phosphoribosyltransferase 2.3788113858e-05 4.16351219371e-05 1.78470080791e-05 +UniRef50_F0Y306 Expressed protein 5.30495330086e-05 0.000225863230617 0.000172813697608 +UniRef50_D8JG86 Sensor protein gacS 9.19623735464e-05 0.00536989537175 0.0052779329982 +UniRef50_UPI00029A8D53 alpha amylase, catalytic subdomain 5.13561924834e-06 2.93891979105e-05 2.42535786622e-05 +UniRef50_UPI0004785413 hypothetical protein 3.26114025268e-05 3.45112972587e-05 1.8998947319e-06 +UniRef50_D3QI48 RND multidrug efflux transporter Acriflavin resistance protein 0.0121518293451 0.00285767655938 -0.00929415278572 +UniRef50_K0SH63 6.35288603168e-05 0.000423377036971 0.000359848176654 +UniRef50_UPI00028A1721 3 oxoacyl ACP reductase 4.38911243546e-06 5.54597887106e-05 5.10706762751e-05 +UniRef50_A6LZZ2 0.00153262881566 0.000518015641142 -0.00101461317452 +UniRef50_UPI00037FAA98 hypothetical protein, partial 7.45545589806e-05 4.68826047022e-05 -2.76719542784e-05 +UniRef50_Q5F653 7.83165951945e-05 0.00215307533758 0.00207475874239 +UniRef50_Q0A911 Beta hexosaminidase 1.88565193693e-05 3.06259493478e-05 1.17694299785e-05 +UniRef50_D3NSC7 sn glycerol 3 phosphate transport system substrate binding protein 7.45093599332e-06 5.83698771707e-06 -1.61394827625e-06 +UniRef50_W6M4I0 1.12389641899e-05 0.000393281939311 0.000382042975121 +UniRef50_UPI0002378B1B glutathione dependent formaldehyde activating protein 4.36045039317e-05 6.81049796057e-05 2.4500475674e-05 +UniRef50_E6U6T7 LemA family protein 0.00112124551144 0.000719635868098 -0.000401609643342 +UniRef50_Q1J1I0 O antigen polymerase 0.00016629338716 0.0254571932968 0.0252908999096 +UniRef50_UPI00047AE469 hypothetical protein 1.11050789278e-05 3.10313867524e-05 1.99263078246e-05 +UniRef50_Z7T5S7 4.51907673512e-05 8.91297903088e-05 4.39390229576e-05 +UniRef50_P39160 D mannonate oxidoreductase 0.0069161112056 0.00252223745215 -0.00439387375345 +UniRef50_UPI0003594B33 PREDICTED 4.15125577144e-05 2.04988802556e-05 -2.10136774588e-05 +UniRef50_A6LZZ5 0.000496829472686 0.00149135069072 0.000994521218034 +UniRef50_UPI000255C6FB ADP ribose pyrophosphatase 1.74476226376e-05 0.000111812262122 9.43646394844e-05 +UniRef50_P64555 7 carboxy 7 deazaguanine synthase 0.0015782923388 0.00121121615205 -0.00036707618675 +UniRef50_B9E3V1 0.000759819500351 0.000404558899058 -0.000355260601293 +UniRef50_UPI00036B19F3 hypothetical protein 2.3784329761e-06 0.000154705233477 0.000152326800501 +UniRef50_A0A031MEU2 ATPase 1.73526008415e-05 6.48656935404e-06 -1.08660314875e-05 +UniRef50_UPI0003ACEC40 hypothetical protein 6.72821354282e-05 2.08448366528e-05 -4.64372987754e-05 +UniRef50_B2TJ96 Nudix family hydrolase 0.000766555119553 0.00163687387631 0.000870318756757 +UniRef50_W5BNZ7 7.72359308498e-06 1.3427016144e-05 5.70342305902e-06 +UniRef50_A1U0K1 1,4 alpha glucan branching enzyme GlgB 3.84798542487e-06 7.48850876751e-06 3.64052334264e-06 +UniRef50_I6TPZ0 Permease 0.00408799558549 0.000195790080794 -0.0038922055047 +UniRef50_A6LXJ6 Diguanylate cyclase 0.000205155428724 0.00123501167588 0.00102985624716 +UniRef50_G8V5E5 Coagulase family protein 0.00947424866577 0.00207634032504 -0.00739790834073 +UniRef50_Q5Z8R4 6.0620691136e-06 1.32289793957e-05 7.1669102821e-06 +UniRef50_H3FSC0 0.000101226352186 1.69027803684e-05 -8.43235718176e-05 +UniRef50_UPI0003B6DB9D anthranilate synthase subunit I 1.36509235275e-05 4.98954784012e-05 3.62445548737e-05 +UniRef50_A8AY72 Glycosyl transferase, family 8 SP1766 0.000534061447799 0.000158205377791 -0.000375856070008 +UniRef50_U4PWQ9 DNA gyrase subunit A 0.011134047428 0.00386367116224 -0.00727037626576 +UniRef50_A0A011QMZ0 0.00190433151023 0.000331196304892 -0.00157313520534 +UniRef50_UPI0003292DB3 PREDICTED 1.96918075461e-05 3.45672160025e-05 1.48754084564e-05 +UniRef50_Q8KDG0 Prolipoprotein diacylglyceryl transferase 5.28628688069e-06 1.10977009067e-05 5.81141402601e-06 +UniRef50_M4XH87 0.0032867367212 0.000371467553704 -0.0029152691675 +UniRef50_UPI00047B1D04 DNA repair protein RadA 5.14111376452e-06 4.93072692929e-06 -2.1038683523e-07 +UniRef50_UPI00037F4D6C hypothetical protein, partial 7.55549839673e-06 1.92686222481e-05 1.17131238514e-05 +UniRef50_UPI000463A207 glycoside hydrolase 8.04755903862e-05 4.96504410956e-05 -3.08251492906e-05 +UniRef50_UPI000462BEE8 hypothetical protein 1.74788509248e-05 0.00204745880296 0.00202997995204 +UniRef50_UPI0003C175AF 4.09886979926e-05 2.17506402903e-05 -1.92380577023e-05 +UniRef50_Q07637 Pyruvate kinase 0.00554048499219 0.00463314984442 -0.00090733514777 +UniRef50_P60543 Phosphoribosyl AMP cyclohydrolase 0.00330022842704 0.00425636872028 0.00095614029324 +UniRef50_O03063 ATP synthase subunit beta, chloroplastic 1.52151036883e-05 9.45936111063e-06 -5.75574257767e-06 +UniRef50_Q1I6V1 0.000106071283675 4.51641326141e-05 -6.09071510609e-05 +UniRef50_M5Q933 Clumping factor 0.000613126540622 0.00050870817159 -0.000104418369032 +UniRef50_V6Q8F3 0.0213988305269 0.00376499755387 -0.017633832973 +UniRef50_Q1AU48 50S ribosomal protein L15 0.027577613847 0.00504782880356 -0.0225297850434 +UniRef50_O83675 DNA polymerase III subunit alpha 5.93265733226e-06 8.98800749364e-06 3.05535016138e-06 +UniRef50_T2DYY9 Bacterial type II and III secretion system family protein 0.00102211583538 0.000406555349265 -0.000615560486115 +UniRef50_A6U466 0.000131700917714 0.00112859887336 0.000996897955646 +UniRef50_Q8GFD7 MobA 0.000332087227834 4.54936245674e-05 -0.000286593603267 +UniRef50_F5XM79 0.000336191020962 0.00544719796078 0.00511100693982 +UniRef50_B7UXA6 Flagellar L ring protein 0.000384876383243 0.000567112411859 0.000182236028616 +UniRef50_UPI0003789BA4 hypothetical protein 1.39486283132e-05 3.55292053207e-05 2.15805770075e-05 +UniRef50_UPI0003B325A0 short chain dehydrogenase 1.1707467713e-05 4.44111229989e-05 3.27036552859e-05 +UniRef50_Q06ZX9 2.75863211756e-05 0.000137282803604 0.000109696482428 +UniRef50_D4KHH9 Alcohol dehydrogenase, class IV 0.000101931410131 0.00183026528076 0.00172833387063 +UniRef50_UPI00046FD571 hypothetical protein, partial 3.68714596787e-05 0.00021123705693 0.000174365597251 +UniRef50_E0IXG6 0.00045158265196 0.00105773717125 0.00060615451929 +UniRef50_Q2FYR1 Aminoacyltransferase FemB 0.0178541464293 0.00353719740354 -0.0143169490258 +UniRef50_Q8PI35 6.14962753154e-05 7.47412694261e-05 1.32449941107e-05 +UniRef50_R9SLG3 HD domain containing protein 0.00362077164333 0.000480597673454 -0.00314017396988 +UniRef50_UPI000348EEAA RNA helicase 2.60788949725e-05 4.49642805009e-05 1.88853855284e-05 +UniRef50_F9CJM1 0.000102405174997 0.000791026888919 0.000688621713922 +UniRef50_T0TL30 0.00484919848617 0.000646094250825 -0.00420310423534 +UniRef50_O05956 Endonuclease III 0.0142690824359 0.00192240843871 -0.0123466739972 +UniRef50_E4DG75 Helicase C terminal domain protein 0.000320196634375 0.00566606278949 0.00534586615512 +UniRef50_UPI0003721D8E hypothetical protein 9.89879382944e-06 2.44139592528e-05 1.45151654234e-05 +UniRef50_F8ABT6 TRAP transporter solute receptor, TAXI family 0.000117855168938 0.000112194173777 -5.660995161e-06 +UniRef50_UPI000369C5C3 hypothetical protein 3.62131131331e-06 2.46749824828e-05 2.10536711695e-05 +UniRef50_Q48656 Aminopeptidase N 0.0043008628774 0.00615863999066 0.00185777711326 +UniRef50_UPI0004544631 PREDICTED 3.36606668357e-05 0.000318938784929 0.000285278118093 +UniRef50_UPI0000D9989C PREDICTED 3.15830432221e-06 3.18411804011e-06 2.58137179e-08 +UniRef50_Q8YX97 Valine tRNA ligase 2.98329819769e-06 2.17511225306e-06 -8.0818594463e-07 +UniRef50_A3CRB9 Energy coupling factor transporter ATP binding protein EcfA1 0.00790892298894 0.0118898709521 0.00398094796316 +UniRef50_B6IXR1 Replication protein A, putative 0.000107942522011 3.00447093003e-05 -7.78978127107e-05 +UniRef50_UPI00047D3AFF hypothetical protein 2.61450638686e-06 4.17492012152e-06 1.56041373466e-06 +UniRef50_L5KY59 0.00019615403736 3.1685761344e-05 -0.000164468276016 +UniRef50_C5MZU4 Uroporphyrinogen III C methyltransferase 0.0128995940244 0.00391278318903 -0.00898681083537 +UniRef50_UPI0003809E92 hypothetical protein 0.000872259865734 0.000548115766357 -0.000324144099377 +UniRef50_UPI000411FAC5 hypothetical protein 7.20801642117e-06 5.00514283551e-05 4.28434119339e-05 +UniRef50_UPI0002B964D7 hypothetical protein 0.000137786941122 3.71767906084e-05 -0.000100610150514 +UniRef50_Q5HKN0 UPF0312 protein SERP2314 0.0106164419685 0.000688119189111 -0.00992832277939 +UniRef50_M1MSQ2 Methyl accepting chemotaxis protein 0.000624803421619 0.000869907891557 0.000245104469938 +UniRef50_E0TB06 1.60633812371e-05 2.51715115062e-05 9.1081302691e-06 +UniRef50_M9R6I4 2.16758446181e-05 1.39830484123e-05 -7.6927962058e-06 +UniRef50_UPI000476DD64 acetolactate synthase catalytic subunit 1.90902602677e-05 1.69741306799e-05 -2.1161295878e-06 +UniRef50_P09431 Nitrogen regulation protein NtrB 0.0058937018836 0.000493630095444 -0.00540007178816 +UniRef50_E2QNK3 PTS system galactitol specific enzyme IIC component 0.000123630782379 0.00957852684744 0.00945489606506 +UniRef50_E3DQN8 Lipoprotein 3.23804433189e-05 4.67343809066e-05 1.43539375877e-05 +UniRef50_C9U0N0 Acyl CoA dehydrogenase 0.000529471203513 0.000685128820353 0.00015565761684 +UniRef50_Q57QC3 Virulence transcriptional regulatory protein PhoP 0.00475020971055 0.00173845147417 -0.00301175823638 +UniRef50_K6UZ95 Benzoate transport porin BenP 0.000228318138423 0.00380975251275 0.00358143437433 +UniRef50_UPI00036BFE12 hypothetical protein 3.06860341385e-06 0.00019291238228 0.000189843778866 +UniRef50_F5LYA7 0.00251107528548 0.00508656143347 0.00257548614799 +UniRef50_B5YRT3 Transposase InsI for insertion sequence element IS30B C D 0.00627876232202 0.000444723418224 -0.0058340389038 +UniRef50_UPI00039A65D3 MULTISPECIES 1.51086504085e-05 9.40432695259e-06 -5.70432345591e-06 +UniRef50_F0KEE0 Membrane flavodoxin oxidoreductase 0.000502388050647 0.000608678835417 0.00010629078477 +UniRef50_L7WYV5 Dihydroxyacetone kinase subunit DhaK 0.0243269613471 0.00359019264559 -0.0207367687015 +UniRef50_O26914 Probable threonylcarbamoyladenosine tRNA methylthiotransferase 0.00302646513729 0.000165908261343 -0.00286055687595 +UniRef50_D4GIJ6 YyaJ 0.000177922554112 0.00750791400857 0.00732999145446 +UniRef50_B2JED1 6,7 dimethyl 8 ribityllumazine synthase 1.77930090337e-05 7.74850806244e-05 5.96920715907e-05 +UniRef50_Q6AA35 NAD transhydrogenase subunit alpha 0.000153763885274 0.00435916063617 0.0042053967509 +UniRef50_R4Q3R7 Tetratricopeptide repeat family protein 1.02331795288e-05 7.50791412271e-06 -2.72526540609e-06 +UniRef50_P33341 Outer membrane usher protein YehB 0.00192717668067 0.00262921601492 0.00070203933425 +UniRef50_P0A6B3 Acyl carrier protein 0.0133955596999 0.00999842154002 -0.00339713815988 +UniRef50_M9VIB3 Type III restriction enzyme, res subunit 6.6303159637e-05 0.00595267119433 0.00588636803469 +UniRef50_D3EJ05 Cytochrome bd type ubiquinol oxidase subunit II 0.0172877263814 0.00626645424125 -0.0110212721402 +UniRef50_Z4WXY4 0.00238086637257 0.000812815335304 -0.00156805103727 +UniRef50_A0A011NRP5 Tellurite resistance protein TerB 3.35163766064e-05 9.82794722521e-06 -2.36884293812e-05 +UniRef50_Q39GU7 Transcriptional regulator, HxlR family 4.73209455078e-05 0.00479872549471 0.0047514045492 +UniRef50_UPI0003822F5F hypothetical protein 0.000102855020686 7.5913802911e-05 -2.6941217775e-05 +UniRef50_B9DLQ3 TcaB protein 0.0252361838304 0.00634674290883 -0.0188894409216 +UniRef50_Q3AC01 Dihydroorotase 4.62784421202e-06 9.66250621185e-06 5.03466199983e-06 +UniRef50_D1CTE1 Replication protein RepA 9.25558371926e-05 6.8791184684e-05 -2.37646525086e-05 +UniRef50_A9G7W0 Probable bifunctional SAT APS kinase 2 3.32630066782e-06 0.00019931264466 0.000195986343992 +UniRef50_A6LQC9 0.000309414744966 0.00144465008854 0.00113523534357 +UniRef50_D4HAA4 NlpC P60 family protein 0.000150193364259 0.00341552370466 0.0032653303404 +UniRef50_Q2CCV7 0.00056938969883 0.000332925366387 -0.000236464332443 +UniRef50_P69743 Hydrogenase 2 small chain 0.00328809742048 0.000767532454686 -0.00252056496579 +UniRef50_UPI0003B574AD hypothetical protein 6.25289368052e-05 3.08439646255e-05 -3.16849721797e-05 +UniRef50_V9VZ32 0.000790458637027 0.000210385017086 -0.000580073619941 +UniRef50_Q9X429 CylG 0.00078468636418 0.000327523148093 -0.000457163216087 +UniRef50_K0RNQ3 0.00126229391177 0.00028214971834 -0.00098014419343 +UniRef50_UPI00047375C6 XRE family transcriptional regulator, partial 3.99668421902e-05 1.89520133916e-05 -2.10148287986e-05 +UniRef50_P00914 Deoxyribodipyrimidine photo lyase 0.0026413251553 0.00161740854284 -0.00102391661246 +UniRef50_UPI000350AF0A PREDICTED 2.83260320517e-06 1.01339497882e-06 -1.81920822635e-06 +UniRef50_W7ST93 0.00011301975714 0.00119820617911 0.00108518642197 +UniRef50_Q9RXT4 Phosphoribosylformylglycinamidine synthase 2 6.21458368296e-06 0.0138241782778 0.0138179636941 +UniRef50_A0KFN8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.87549981139e-05 5.52941199019e-06 -1.32255861237e-05 +UniRef50_B9L9J4 0.000209326796037 0.00270606078645 0.00249673399041 +UniRef50_UPI0003C12600 1.84712287898e-05 3.54554300041e-05 1.69842012143e-05 +UniRef50_Q9I4U3 DNA recombination protein RmuC homolog 0.00050681757557 0.00170997370487 0.0012031561293 +UniRef50_UPI0003C176FD PREDICTED 2.36110590491e-06 0.000103075740127 0.000100714634222 +UniRef50_UPI00022CAACE PREDICTED 8.2700175199e-05 5.83544262361e-05 -2.43457489629e-05 +UniRef50_A5UZW4 Triosephosphate isomerase 1.45227456022e-05 5.74300169551e-05 4.29072713529e-05 +UniRef50_UPI0002557ECE hypothetical protein 1.58826851002e-05 1.52557206261e-05 -6.269644741e-07 +UniRef50_W1PEW2 1.30907068881e-05 2.23837545244e-06 -1.08523314357e-05 +UniRef50_UPI00026276DF cell division protein FtsZ 8.73687859274e-06 9.56177853871e-06 8.2489994597e-07 +UniRef50_R4RK88 Ferrichrysobactin receptor 0.000129626831276 0.000280196432526 0.00015056960125 +UniRef50_UPI00035C5909 hypothetical protein 1.40424184592e-05 0.000175774062098 0.000161731643639 +UniRef50_UPI0003819143 30S ribosomal protein S5 1.27897800331e-05 1.40721790516e-05 1.2823990185e-06 +UniRef50_H8L2T6 Flagellar hook capping protein 6.66107666239e-06 9.06468300322e-06 2.40360634083e-06 +UniRef50_UPI00037CA814 hypothetical protein 4.81551138649e-06 3.16864137045e-05 2.6870902318e-05 +UniRef50_Q82S57 L sorbosone dehydrogenase 0.00100543522061 0.00019886646815 -0.00080656875246 +UniRef50_Q3JSM3 1.50494369559e-05 2.8789035581e-05 1.37395986251e-05 +UniRef50_H4Q189 HdhA domain protein 3.77690715698e-05 0.000330552930043 0.000292783858473 +UniRef50_UPI0003B6CB71 sulfonate ABC transporter ATP binding protein 5.13284618379e-05 2.70209832084e-05 -2.43074786295e-05 +UniRef50_B0VPR5 0.000306468466276 0.00592010089146 0.00561363242518 +UniRef50_B2HZL6 Cobalamin synthase 0.000154075913818 0.00570820544599 0.00555412953217 +UniRef50_Q9HV71 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000708934065062 0.000784908294054 7.5974228992e-05 +UniRef50_Q89VT1 Blr0964 protein 1.47151370516e-05 0.000827616600412 0.00081290146336 +UniRef50_G0VM95 Inner membrane transport protein YhaO 2.34789040921e-05 2.85289545944e-05 5.0500505023e-06 +UniRef50_S4X2L4 Mercury transport protein 0.0101345858563 0.00244314356595 -0.00769144229035 +UniRef50_M7XVH9 0.000112979087244 0.000357569806377 0.000244590719133 +UniRef50_A5UL22 DNA repair helicase 0.00261559551078 0.000927941796405 -0.00168765371438 +UniRef50_Q8TI16 Energy coupling factor transporter ATP binding protein EcfA 1.00863230139e-05 1.31644035549e-05 3.078080541e-06 +UniRef50_A4Y9D9 Peptidyl tRNA hydrolase 0.00112105413996 0.000611443586101 -0.000509610553859 +UniRef50_UPI000262C9FD ribonuclease, Rne Rng family protein 2.17494163806e-06 1.67390803533e-06 -5.0103360273e-07 +UniRef50_UPI00047C08EE short chain dehydrogenase 7.55969237554e-06 1.13088261504e-05 3.74913377486e-06 +UniRef50_UPI00026257AD inosine uridine preferring nucleoside hydrolase, partial 8.92970214276e-06 3.57062880019e-05 2.67765858591e-05 +UniRef50_D3QFZ0 Penicillin amidase V 0.0106202423416 0.00508979217296 -0.00553045016864 +UniRef50_UPI0003B42BB6 GntR family transcriptional regulator 2.18369763659e-05 4.85482653925e-05 2.67112890266e-05 +UniRef50_Q49XR9 0.0186048008768 0.005676133054 -0.0129286678228 +UniRef50_M4R497 Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II 0.000107673689615 0.00647730187985 0.00636962819024 +UniRef50_Q9RSH0 Amino acid ABC transporter, periplasmic amino acid binding protein 0.000529318112793 0.0730961929478 0.072566874835 +UniRef50_P0A0M5 Thymidylate synthase 0.0181731349413 0.00954795892753 -0.00862517601377 +UniRef50_A4VHG9 tRNA N6 adenosine threonylcarbamoyltransferase 0.00427081853895 0.0148486763185 0.0105778577796 +UniRef50_Q8CQ28 ABC transporter 0.0240270293557 0.00547106398333 -0.0185559653724 +UniRef50_UPI00046FA309 hypothetical protein 0.000138509477888 1.36841122583e-05 -0.00012482536563 +UniRef50_Q1AS60 Glutamate tRNA ligase 2 4.48203596814e-06 5.15201944286e-06 6.6998347472e-07 +UniRef50_UPI00037B162D MULTISPECIES 7.17095078314e-05 1.21268087424e-05 -5.9582699089e-05 +UniRef50_P52662 HTH type transcriptional regulator PecT 0.00275816168391 0.0012444199892 -0.00151374169471 +UniRef50_S9S860 2.06007863142e-05 9.12186169211e-06 -1.14789246221e-05 +UniRef50_UPI0003D719FF 3.71604734836e-05 0.000139620773387 0.000102460299903 +UniRef50_UPI000467E030 calcium binding protein, partial 3.40173475522e-05 5.47186407626e-05 2.07012932104e-05 +UniRef50_A5UL93 Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA 0.00268936863328 0.000396204540274 -0.00229316409301 +UniRef50_F4A673 Hydrogenase maturation factor 0.00137150052624 0.000862596146583 -0.000508904379657 +UniRef50_A5F3A7 Aldehyde dehydrogenase 0.000285898751085 0.000124303029555 -0.00016159572153 +UniRef50_Q8U1E4 Translation initiation factor 5A 0.00121839193345 0.00142945357351 0.00021106164006 +UniRef50_Q5FPL0 GMP synthase [glutamine hydrolyzing] 4.63863651493e-05 2.45414202402e-05 -2.18449449091e-05 +UniRef50_D8K701 UPF0125 protein Nwat_1827 0.000240788535107 3.39674089035e-05 -0.000206821126204 +UniRef50_P63811 Pantothenate kinase 2.28964772681e-05 0.00982962184725 0.00980672536998 +UniRef50_F2L7R0 NAD NADP transhydrogenase alpha subunit like protein 6.90445917882e-05 7.93875962153e-05 1.03430044271e-05 +UniRef50_D4H9R8 Triacylglycerol lipase 0.000122959605492 0.000780978135531 0.000658018530039 +UniRef50_M7DU42 Transcriptional regulator 0.020000401014 0.00201690014581 -0.0179835008682 +UniRef50_Q2S3A7 Phosphoglycerate kinase 1.26613379189e-05 6.02078225909e-05 4.7546484672e-05 +UniRef50_UPI0003725ECA hypothetical protein 0.000144439603769 9.46587886666e-05 -4.97808151024e-05 +UniRef50_P0AFS7 UPF0118 inner membrane protein YdiK 0.00138765668479 0.000221211015129 -0.00116644566966 +UniRef50_Q2RPW6 0.00178451391895 0.000355090226682 -0.00142942369227 +UniRef50_A0A024E8U2 Mandelate racemase muconate lactonizing enzyme family protein 0.00128339356896 0.000152618452293 -0.00113077511667 +UniRef50_I6U2V2 Transcriptional regulator 0.00437074281514 0.00283379297683 -0.00153694983831 +UniRef50_P45858 2 methylcitrate synthase 1.37783269286e-05 2.32746613714e-05 9.4963344428e-06 +UniRef50_Q6CBZ1 YALI0C14234p 6.34366737652e-05 3.66382605505e-05 -2.67984132147e-05 +UniRef50_W0YNG1 0.000456636276836 0.000562508009894 0.000105871733058 +UniRef50_O26830 Putative phospho N acetylmuramoyl pentapeptide transferase 0.00251354107868 0.000167952628551 -0.00234558845013 +UniRef50_P23878 Ferric enterobactin transport ATP binding protein FepC 0.0029883307859 0.000330578401339 -0.00265775238456 +UniRef50_D9RDD4 0.0118574844678 0.00143913607484 -0.010418348393 +UniRef50_K0HJZ6 HTH domain protein 0.000261449209184 0.00506221296237 0.00480076375319 +UniRef50_UPI00045603DB hypothetical protein PFL1_00982 0.000171018606143 0.000105955935372 -6.5062670771e-05 +UniRef50_A9NFP2 50S ribosomal protein L32 0.0143104300398 0.00131251868976 -0.01299791135 +UniRef50_UPI00024926A7 DNA 3 methyladenine glycosylase 2.59914714258e-05 2.39860354065e-05 -2.0054360193e-06 +UniRef50_P28916 H repeat associated protein YbfD 0.00397026537791 0.00084252980344 -0.00312773557447 +UniRef50_UPI000262D669 FKBP type peptidyl prolyl cis trans isomerase 6.57563479367e-05 7.34406922112e-05 7.6843442745e-06 +UniRef50_UPI0003B77EBB ABC transporter 4.973639969e-06 1.14254128622e-05 6.4517728932e-06 +UniRef50_A6LQ88 Type II secretory pathway pseudopilin PulG like protein 0.000278930533636 0.00219212680326 0.00191319626962 +UniRef50_O32197 Transcriptional regulatory protein LiaR 0.0269240769037 0.0094963912138 -0.0174276856899 +UniRef50_UPI00016BFC87 ribonuclease III 1.33226155261e-05 4.19702565599e-05 2.86476410338e-05 +UniRef50_G2JLA5 0.00290896410951 0.00442741603415 0.00151845192464 +UniRef50_A0A022GY86 2.6587365406e-05 1.58102333837e-05 -1.07771320223e-05 +UniRef50_L8EHD4 Major facilitator transporter 2.577396566e-06 8.71502747379e-05 8.45728781719e-05 +UniRef50_UPI000225F112 hypothetical protein 0.000432544562197 2.81547347408e-05 -0.000404389827456 +UniRef50_O08385 ATP phosphoribosyltransferase 0.000991351460727 0.00135435873523 0.000363007274503 +UniRef50_Q3IVA5 Aldo keto reductase 0.0111008236061 0.00323010674666 -0.00787071685944 +UniRef50_UPI00037D4803 hypothetical protein 3.95387702816e-06 3.04347110971e-05 2.64808340689e-05 +UniRef50_UPI0004015A16 MULTISPECIES 1.07708635954e-05 8.3000362986e-05 7.22294993906e-05 +UniRef50_Q9AAA2 MaoC family protein 4.65400514843e-05 2.54519743246e-05 -2.10880771597e-05 +UniRef50_P42810 TPR repeat containing protein PA4667 0.000186076124692 0.000231644734857 4.5568610165e-05 +UniRef50_Q3XXT3 Amino acid permease associated region 0.0111250079144 0.0046166597895 -0.0065083481249 +UniRef50_UPI000474EE1B hypothetical protein 3.15407426103e-05 6.35040851712e-05 3.19633425609e-05 +UniRef50_A8LKL8 AFG1 family ATPase 0.0105735808999 0.00145115805369 -0.00912242284621 +UniRef50_Q87XY9 Decarboxylase family protein 0.00147746944521 0.0012055871232 -0.00027188232201 +UniRef50_B1N5W5 Diaphanous protein, putative 5.76129969286e-06 5.22737074051e-06 -5.3392895235e-07 +UniRef50_A4X0A4 HipA domain protein 0.0125561241003 0.0024732534568 -0.0100828706435 +UniRef50_UPI000364B97F hypothetical protein 2.8631219123e-05 4.03376147698e-06 -2.4597457646e-05 +UniRef50_UPI0003B7A32E chromosome partitioning protein ParB 5.48520703516e-05 0.0014724578973 0.00141760582695 +UniRef50_Q17058 Alpha glucosidase 1.06694861621e-05 8.0930281643e-06 -2.5764579978e-06 +UniRef50_G0HDD8 7.15387218342e-05 0.00724632690383 0.007174788182 +UniRef50_A4CMU2 1.68421787526e-05 1.39232721e-05 -2.9189066526e-06 +UniRef50_I6RKC9 0.000700587372529 0.000392685618868 -0.000307901753661 +UniRef50_UPI00025588CA phage terminase, partial 0.000307310065221 2.38934011889e-05 -0.000283416664032 +UniRef50_H3LAA4 4.91331526942e-05 3.92439353637e-05 -9.8892173305e-06 +UniRef50_D3E1C3 0.00436285950222 0.000375805506968 -0.00398705399525 +UniRef50_B9KX02 0.00217811564083 0.000388507227435 -0.0017896084134 +UniRef50_G4YDD7 2.28282756213e-05 6.03193271208e-05 3.74910514995e-05 +UniRef50_Q9HYT1 0.00138255559842 0.000207239793125 -0.00117531580529 +UniRef50_UPI0003797423 hypothetical protein, partial 3.98716356562e-05 3.6635790752e-06 -3.6208056581e-05 +UniRef50_Q9HYT3 0.000339139844059 0.000272457711549 -6.668213251e-05 +UniRef50_I6U0G5 ComB, accessory factor for ComA 0.00483145832485 0.00213812750687 -0.00269333081798 +UniRef50_W8KRF0 Flagellar hook capping protein 7.38024235006e-06 1.08043072921e-05 3.42406494204e-06 +UniRef50_K4PRA4 Phosphotransferase system, EIIC 9.33600961682e-05 0.000193017454369 9.96573582008e-05 +UniRef50_D0RWK6 0.00396792102761 0.000244737600989 -0.00372318342662 +UniRef50_Q9RUL2 0.0010000042236 0.0427452685108 0.0417452642872 +UniRef50_UPI000408C0D1 L threonine 3 dehydrogenase 5.9951888187e-06 0.000100911293367 9.49161045483e-05 +UniRef50_Q67PA6 Proline tRNA ligase 4.85933386328e-06 7.16625984978e-05 6.68032646345e-05 +UniRef50_C4UFH2 1.09575374683e-05 9.96495131301e-06 -9.9258615529e-07 +UniRef50_B7I478 Transcriptional regulator, TetR family 0.00063476438756 0.0159508354081 0.0153160710205 +UniRef50_C5BM48 Ethanolamine ammonia lyase, large subunit 0.00105224780203 0.00826546092781 0.00721321312578 +UniRef50_D2P376 1.46061579715e-05 0.000392882534625 0.000378276376653 +UniRef50_Q9ZL96 tRNA ) methyltransferase 9.7709919458e-05 0.00418355403412 0.00408584411466 +UniRef50_V0L6T7 Glycine dehydrogenase 0.00207656711224 0.00101588119878 -0.00106068591346 +UniRef50_UPI000470D224 sugar ABC transporter permease 2.16092626466e-05 1.12991154461e-05 -1.03101472005e-05 +UniRef50_A0A024HX03 4.1721630349e-06 6.48750116095e-06 2.31533812605e-06 +UniRef50_UPI0004691DC1 mechanosensitive ion channel protein MscL 0.000387408570048 7.66063542803e-05 -0.000310802215768 +UniRef50_T7H4C9 Periplasmic endochitinase 0.00131351461295 0.00021287170559 -0.00110064290736 +UniRef50_G2JK97 0.000349656531858 0.00191037331937 0.00156071678751 +UniRef50_UPI0003616A00 hypothetical protein 1.98787154188e-05 0.000457112840812 0.000437234125393 +UniRef50_M4MLE9 0.00793743329946 0.000376919454664 -0.0075605138448 +UniRef50_I3UFE6 Saccharopine dehydrogenase 0.0107269916045 0.00384223409919 -0.00688475750531 +UniRef50_UPI00046ED2B4 hypothetical protein 0.000192849680478 3.08237033184e-05 -0.00016202597716 +UniRef50_UPI0002E5AE52 choline dehydrogenase 5.30227941019e-05 1.63196421019e-05 -3.6703152e-05 +UniRef50_M4QZX1 0.00058854715767 0.0104978088938 0.00990926173613 +UniRef50_P13512 Cobalt zinc cadmium resistance protein CzcD 0.00120458752684 0.00652892166771 0.00532433414087 +UniRef50_V8R0S1 Deoxyribonuclease 3.38117407713e-06 0.00016304357694 0.000159662402863 +UniRef50_UPI00036A5DE2 peptidase 6.45374007465e-06 1.94865172316e-05 1.30327771569e-05 +UniRef50_X5DX77 0.00537426714876 0.00190688163344 -0.00346738551532 +UniRef50_D6ZZK2 Sulfate ABC transporter, periplasmic sulfate binding protein 0.0115071100577 0.00215277780634 -0.00935433225136 +UniRef50_UPI000472CD56 hypothetical protein 3.9891164237e-05 3.31834844312e-05 -6.7076798058e-06 +UniRef50_UPI000289BAA8 acetyl CoA 6.17782641891e-06 1.74262646191e-05 1.12484382002e-05 +UniRef50_UPI000474C455 hypothetical protein, partial 0.00039268102794 3.16291897258e-05 -0.000361051838214 +UniRef50_B1GYQ3 3 phosphoshikimate 1 carboxyvinyltransferase 4.62881862416e-06 6.12078938013e-06 1.49197075597e-06 +UniRef50_Q7P3Y5 NagD protein 2.92518313198e-05 0.000108569821968 7.93179906482e-05 +UniRef50_UPI0001BF64A8 hypothetical protein SMAC_11040, partial 3.3115664033e-05 0.00106056017007 0.00102744450604 +UniRef50_D8GQL0 0.000208940584237 0.00193525063326 0.00172631004902 +UniRef50_UPI0001C36D2D hypothetical protein 1.83718360343e-06 4.10116016747e-06 2.26397656404e-06 +UniRef50_Q5XE77 Single stranded DNA binding protein 1 0.0039355426687 0.00304400667739 -0.00089153599131 +UniRef50_P75788 Inner membrane protein YbiR 0.00302248965996 0.00206589444548 -0.00095659521448 +UniRef50_D4Z138 0.00010693465288 5.75975357341e-05 -4.93371171459e-05 +UniRef50_UPI000237EFA3 transposase IS3 family protein 0.000286604444997 8.68699389826e-05 -0.000199734506014 +UniRef50_U3SWI7 0.00601158467119 0.00183399137865 -0.00417759329254 +UniRef50_X0PLV2 Excinuclease ABC 2.97484220653e-05 0.000135801477647 0.000106053055582 +UniRef50_C7ZYL4 Phage major tail protein 0.0204212647858 0.00494129306886 -0.0154799717169 +UniRef50_UPI0004713D66 hypothetical protein 7.21640072095e-06 1.12640253541e-05 4.04762463315e-06 +UniRef50_C5CT24 Polyribonucleotide nucleotidyltransferase 0.000124506955017 0.00459928233292 0.0044747753779 +UniRef50_L7WT15 Glycosyltransferase stabilizing protein Gtf2 0.00875125543601 0.003063620881 -0.00568763455501 +UniRef50_I6SK88 0.000238412203486 0.000600644146164 0.000362231942678 +UniRef50_UPI0001C39745 ABC type dipeptide transport system, periplasmic component, partial 3.13337892238e-05 0.000135986465501 0.000104652676277 +UniRef50_A3W978 2.61473206309e-06 0.000313593498676 0.000310978766613 +UniRef50_A2FR65 Basic proline rich protein, putative 2.11169831119e-06 3.18342517219e-05 2.97225534107e-05 +UniRef50_UPI000181656F hypothetical protein, partial 2.16900262647e-05 1.5155570114e-05 -6.5344561507e-06 +UniRef50_A0A011PGA8 Hydrogenase 2 maturation protease 0.000248256548396 0.00017256791668 -7.5688631716e-05 +UniRef50_O27051 D 3 phosphoglycerate dehydrogenase 0.00358423364029 0.000354210289475 -0.00323002335081 +UniRef50_UPI000262927F GTPase Der 1.12727972097e-05 2.35203809827e-05 1.2247583773e-05 +UniRef50_K4HIZ1 DnaJ related protein 1.49019470913e-05 1.48192455894e-05 -8.27015019e-08 +UniRef50_UPI0003637E5A hypothetical protein, partial 9.18675973125e-05 0.000258422851782 0.000166555254469 +UniRef50_P76102 Putative transposase InsQ for insertion sequence element IS609 0.00175907738129 0.000312664261817 -0.00144641311947 +UniRef50_F0KM17 Lipid A biosynthesis lauroyl acyltransferase 0.000373308522105 0.011063586228 0.0106902777059 +UniRef50_S5YHY9 Partition protein A 0.0145321861429 0.00264323265894 -0.011888953484 +UniRef50_Q3J218 0.0030720523076 0.00171474215919 -0.00135731014841 +UniRef50_K0TK24 0.000246962555471 4.81494526799e-05 -0.000198813102791 +UniRef50_UPI000471D82C hypothetical protein 3.84688142104e-05 0.000811410424334 0.000772941610124 +UniRef50_UPI000363C207 hypothetical protein 4.74333979498e-06 6.84645238196e-05 6.37211840246e-05 +UniRef50_D3E2Q4 Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family 0.00315403853425 0.000270519119271 -0.00288351941498 +UniRef50_UPI0003B72DF0 GntR family transcriptional regulator 1.5939806031e-05 3.10123742982e-05 1.50725682672e-05 +UniRef50_Q3J215 0.001203240963 0.00630565214824 0.00510241118524 +UniRef50_UPI0003B5B026 zinc metalloprotease 1.84205551687e-05 1.54374997467e-05 -2.983055422e-06 +UniRef50_O14556 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 4.33825724748e-06 7.77553162118e-06 3.4372743737e-06 +UniRef50_P65671 Sulfate adenylyltransferase subunit 2 0.000213268920259 0.00564501940932 0.00543175048906 +UniRef50_F0QP46 Flavoprotein 0.000157397867263 0.00604211782 0.00588471995274 +UniRef50_D5UQ22 Cell envelope related transcriptional attenuator 3.31078256233e-06 1.1268986533e-05 7.95820397067e-06 +UniRef50_Q1IX28 Periplasmic YigE like protein 2.17226819131e-05 0.000691747021624 0.000670024339711 +UniRef50_Q3JG98 Acyl CoA dehydrogenase, C terminal domain family 0.000124720040369 0.006136361895 0.00601164185463 +UniRef50_UPI00046FA5DF hypothetical protein 0.00012337205503 3.93800954421e-05 -8.39919595879e-05 +UniRef50_UPI00035D1933 glycine cleavage system protein H 0.000124853802669 4.6589547855e-05 -7.8264254814e-05 +UniRef50_V9T6E9 Sugar ABC transporter permease 0.000860792997232 0.00065188957927 -0.000208903417962 +UniRef50_UPI0003B3F1EE transposase 0.000384892189275 3.95470821019e-05 -0.000345345107173 +UniRef50_B8EJI5 Holliday junction ATP dependent DNA helicase RuvA 2.04898634152e-05 9.87572791475e-06 -1.06141355004e-05 +UniRef50_UPI00046E909F hypothetical protein 3.38564496456e-06 0.000221696813083 0.000218311168118 +UniRef50_A1BAZ5 0.00974840854578 0.00142477357769 -0.00832363496809 +UniRef50_A5UML2 Predicted flavoprotein 0.00464997341681 0.000766833645921 -0.00388313977089 +UniRef50_UPI000349F337 hypothetical protein 1.4036090839e-05 1.12698204955e-05 -2.7662703435e-06 +UniRef50_UPI0004624C72 polymerase 4.17309261302e-05 2.16815619447e-05 -2.00493641855e-05 +UniRef50_Q3J4T5 Putative metal dependent protease of the PAD1 JAB1 superfamily 0.0230458028673 0.0175647305321 -0.0054810723352 +UniRef50_Q6GE10 6 carboxyhexanoate CoA ligase 0.0266472780519 0.00584916836143 -0.0207981096905 +UniRef50_P07018 Methyl accepting chemotaxis protein IV 0.00162047782135 0.00113776911677 -0.00048270870458 +UniRef50_I3Y049 3.44811547833e-05 2.53411013532e-05 -9.1400534301e-06 +UniRef50_UPI0003476A90 hypothetical protein 9.66656837494e-05 9.70359987393e-06 -8.69620838755e-05 +UniRef50_UPI0003F0CB72 PREDICTED 6.93545577416e-05 1.0174843704e-05 -5.91797140376e-05 +UniRef50_O68872 2.72126846076e-05 1.34368848486e-05 -1.3775799759e-05 +UniRef50_Q2GDJ8 NADH quinone oxidoreductase subunit D 3.06954159752e-05 6.20545543858e-05 3.13591384106e-05 +UniRef50_A1AJH6 N acetylneuraminate epimerase 0.000769666761398 0.000610086487235 -0.000159580274163 +UniRef50_F2J2D8 Putative HTH type transcriptional regulator rrf2 like protein 4.90750144085e-05 2.29800756401e-05 -2.60949387684e-05 +UniRef50_Q9RXY1 50S ribosomal protein L13 0.000258552047156 0.0549214743431 0.0546629222959 +UniRef50_D3E348 0.00386453019058 0.00176908813741 -0.00209544205317 +UniRef50_K0C281 Flagellar hook capping protein 7.71910395366e-06 1.05748344467e-05 2.85573049304e-06 +UniRef50_UPI0003697B4B ABC transporter, partial 6.41654148153e-05 0.000118127265163 5.39618503477e-05 +UniRef50_A3WH30 0.000164333357018 0.000182799932358 1.846657534e-05 +UniRef50_UPI00036F7350 hypothetical protein 1.19850643372e-05 6.02588518114e-06 -5.95917915606e-06 +UniRef50_A0A011PL33 0.000374556825403 1.17355788946e-05 -0.000362821246508 +UniRef50_Q9LUW5 DEAD box ATP dependent RNA helicase 53 8.50081762769e-06 0.000106866592368 9.83657747403e-05 +UniRef50_UPI0003C14327 PREDICTED 0.000162178424441 5.27710566236e-05 -0.000109407367817 +UniRef50_Q016E9 Glyoxalase bleomycin resistance protein dioxygenas 0.000962416231123 0.000173248252835 -0.000789167978288 +UniRef50_UPI0003B4F316 ABC transporter ATP binding protein 0.000363357806267 2.17217093411e-05 -0.000341636096926 +UniRef50_C5AQC0 DNA helicase, ATP dependent resolution of Holliday junctions, branch migration 0.00104658638442 0.000348211301669 -0.000698375082751 +UniRef50_Q49Y17 0.0203020479131 0.0056986131494 -0.0146034347637 +UniRef50_A8AKZ3 0.0105053070929 0.000730151811032 -0.00977515528187 +UniRef50_P0AE54 Putative peroxiredoxin bcp 0.00495091743456 0.000391147953907 -0.00455976948065 +UniRef50_Q5HLM6 0.00403612911074 0.000985874696806 -0.00305025441393 +UniRef50_W0IR18 C4 dicarboxylate ABC transporter 0.00797326769653 0.00166761276481 -0.00630565493172 +UniRef50_A4WSF9 0.000111665054727 1.04485138187e-05 -0.000101216540908 +UniRef50_UPI00030293EE hypothetical protein 2.6584012096e-05 7.62252711482e-06 -1.89614849812e-05 +UniRef50_W4U1X8 4.79721629021e-06 1.21189552376e-05 7.32173894739e-06 +UniRef50_B2T0E3 0.000124904224454 4.23617813936e-05 -8.25424430604e-05 +UniRef50_B0VUD5 High frequency lysogenization protein HflD homolog 0.000324448646184 0.00524252596288 0.0049180773167 +UniRef50_A0A029AVJ5 8.88994172475e-06 6.25809746045e-05 5.36910328797e-05 +UniRef50_S6WIX2 Fosmidomycin resistance protein 0.000272636125244 7.31894960285e-05 -0.000199446629216 +UniRef50_Q6LKZ5 ATP synthase epsilon chain 2 0.000267720559474 0.00258153816371 0.00231381760424 +UniRef50_UPI00046E6D22 LysR family transcriptional regulator, partial 7.839716899e-06 7.92737002227e-06 8.765312327e-08 +UniRef50_P33368 0.00371291664563 0.00295360639918 -0.00075931024645 +UniRef50_UPI000370601D hypothetical protein 1.60624268695e-05 5.77164115815e-05 4.1653984712e-05 +UniRef50_C3FDC0 0.000264134060577 0.00111415002597 0.000850015965393 +UniRef50_B9KUV4 0.000381257569712 0.000167793582503 -0.000213463987209 +UniRef50_C6STH9 0.00899353871183 0.000800805684286 -0.00819273302754 +UniRef50_V5EUP7 3.85221178065e-06 0.00045831473518 0.000454462523399 +UniRef50_UPI00029A0BC2 3 hydroxybutyryl CoA epimerase 2.14084001059e-06 6.97326654617e-06 4.83242653558e-06 +UniRef50_C9CS38 Rb142 9.56265565135e-06 3.86333736629e-06 -5.69931828506e-06 +UniRef50_UPI0003B6D51E DNA topoisomerase I 2.83705753605e-06 1.05980405102e-05 7.76098297415e-06 +UniRef50_UPI0003597373 PREDICTED 5.07142653666e-06 6.54546077233e-05 6.03831811866e-05 +UniRef50_T1YC46 Integral membrane protein 0.0207937568195 0.00578644829849 -0.015007308521 +UniRef50_P37460 Proline specific permease ProY 0.000592191124291 0.00622326276457 0.00563107164028 +UniRef50_A9BFZ1 30S ribosomal protein S4 0.000368279013511 0.0466653065696 0.0462970275561 +UniRef50_UPI00037C9C7B hypothetical protein 6.45164087129e-06 3.74823998982e-06 -2.70340088147e-06 +UniRef50_Q3KHK6 GntR family transcriptional regulator 0.000738824547026 0.000951154104944 0.000212329557918 +UniRef50_Q5H1Q0 Beta hexosaminidase 5.06447053817e-06 1.35511392081e-05 8.48666866993e-06 +UniRef50_UPI0002F5F4FB hypothetical protein 9.92241861262e-06 0.000195528914058 0.000185606495445 +UniRef50_P18179 Potential ATP binding protein 0.0963378801446 0.0232054379517 -0.0731324421929 +UniRef50_UPI00035C1F2F hypothetical protein 4.79370706344e-06 6.44979159794e-06 1.6560845345e-06 +UniRef50_Q1AR89 Aminomethyltransferase 6.85779632759e-05 7.64576784375e-05 7.8797151616e-06 +UniRef50_UPI0002B48709 PREDICTED 5.78312169356e-06 4.48981749963e-06 -1.29330419393e-06 +UniRef50_UPI00037FBF9D hypothetical protein 3.38471567748e-05 1.86828954834e-06 -3.19788672265e-05 +UniRef50_G7ZS60 0.0649074988819 0.00118672743544 -0.0637207714465 +UniRef50_R5A691 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.61360957856e-05 1.48437299725e-05 -1.2923658131e-06 +UniRef50_X4ZCF7 ABC transporter family protein 0.00748640814696 0.00525444214884 -0.00223196599812 +UniRef50_I3WXC9 Dissimilatory sulfite reductase 0.000478163254587 0.000192936276143 -0.000285226978444 +UniRef50_Q8DUY9 0.00406087927091 0.00123408248075 -0.00282679679016 +UniRef50_P0AGL8 Ribosomal RNA small subunit methyltransferase E 0.00167321558672 0.000242726059064 -0.00143048952766 +UniRef50_Q9I2V5 Aconitate hydratase 2 0.00146339021553 0.00703722012203 0.0055738299065 +UniRef50_A6L1U8 Lipoyl synthase 4.99056838101e-06 0.00104289989206 0.00103790932368 +UniRef50_UPI00046AA788 hypothetical protein 7.87343176829e-05 9.25174812046e-05 1.37831635217e-05 +UniRef50_Q2SPQ1 Chemotaxis response regulator protein glutamate methylesterase 1 6.91105173079e-05 9.12754628472e-06 -5.99829710232e-05 +UniRef50_Q51465 Flagellar motor switch protein FliM 0.000732560789549 0.000316410755563 -0.000416150033986 +UniRef50_UPI000479C05A malate 2.94586139091e-06 9.01905228428e-06 6.07319089337e-06 +UniRef50_I2FD14 UDP glucose 4 epimerase 0.000327230863435 0.00272999298272 0.00240276211928 +UniRef50_Q2IFU3 Pantothenate synthetase 0.0017014366498 0.000366853049924 -0.00133458359988 +UniRef50_Q1J0G9 Aminotransferase, class V 0.000264902448311 0.00944622575209 0.00918132330378 +UniRef50_H8GYV6 0.000202224636884 0.0250286813448 0.0248264567079 +UniRef50_A5X3K4 Polyphenol oxidase 0.00127442879115 0.000327523148093 -0.000946905643057 +UniRef50_P76555 Ethanolamine utilization protein EutQ 0.00158995578719 0.00139084880992 -0.00019910697727 +UniRef50_Q83II9 Ascorbate specific permease IIC component UlaA 0.00355915577359 0.00147891567685 -0.00208024009674 +UniRef50_UPI0004688BBC flagellar motor switch protein 6.37310095676e-05 4.83741372484e-05 -1.53568723192e-05 +UniRef50_D8N1D9 4.34669031089e-07 6.62266369511e-07 2.27597338422e-07 +UniRef50_C5B779 Protein CreA 2.30157294746e-05 1.96712669253e-05 -3.3444625493e-06 +UniRef50_K0HWI3 NADPH dependent FMN reductase 0.000218621229065 0.00474455018938 0.00452592896031 +UniRef50_P75693 0.00160137149409 0.000905635345209 -0.000695736148881 +UniRef50_UPI00034B5B3B hypothetical protein 7.50510702956e-06 1.07457068127e-05 3.24059978314e-06 +UniRef50_E7B3D1 Metallo beta lactamase superfamily protein PA0057 0.000490388584265 1.24872037343e-05 -0.000477901380531 +UniRef50_D8HDI6 Pyridoxal dependent decarboxylase 0.0147138284894 0.00301774935129 -0.0116960791381 +UniRef50_X7FEK2 3.98682728336e-05 3.37435988918e-05 -6.1246739418e-06 +UniRef50_UPI00047DFC44 hypothetical protein 6.11709534811e-06 3.40405525375e-05 2.79234571894e-05 +UniRef50_B0VLY8 7.96383942783e-05 0.0070697329979 0.00699009460362 +UniRef50_Q6A7P4 Riboflavin biosynthesis protein RibF 0.000346062750835 0.00734999540155 0.00700393265071 +UniRef50_Q08052 Ribulose bisphosphate carboxylase small chain 0.000402794549515 5.31370998841e-05 -0.000349657449631 +UniRef50_D4HAX6 ROK family protein 0.000224249102288 0.00700035354057 0.00677610443828 +UniRef50_E0RV96 Rhamnulose 1 phosphate aldolase 0.000304424184557 0.000360142323408 5.5718138851e-05 +UniRef50_P69854 Tat proofreading chaperone DmsD 0.00225767937135 0.00110743764448 -0.00115024172687 +UniRef50_U6I0U9 Glutamyl tRNA amidotransferase subunit B, mitochondrial 6.25866030598e-06 5.55175549263e-06 -7.0690481335e-07 +UniRef50_UPI00036CBFA7 hypothetical protein 4.85183895068e-06 7.69823187115e-06 2.84639292047e-06 +UniRef50_A3PIF9 PRC barrel domain protein 0.00583982593218 0.000516588988672 -0.00532323694351 +UniRef50_Q8RD56 AAA superfamily ATPases with N terminal receiver domain 0.000125809280332 0.000484200692328 0.000358391411996 +UniRef50_P09384 Chemotaxis protein CheA 0.00218454274231 0.000543667850736 -0.00164087489157 +UniRef50_A6QE42 0.00196482446064 0.00135675809661 -0.00060806636403 +UniRef50_Q6F806 0.000171066158086 0.00586978844928 0.00569872229119 +UniRef50_I1ZNS6 Cation efflux protein 0.000522429306784 0.00401458253734 0.00349215323056 +UniRef50_Q4SPJ4 Chromosome 16 SCAF14537, whole genome shotgun sequence. 0.00034342620462 3.53180417329e-05 -0.000308108162887 +UniRef50_Q9LDF4 2.27250809553e-05 0.000385587851347 0.000362862770392 +UniRef50_Q37370 Cytochrome c oxidase subunit 1+2 6.78222520371e-06 2.14012945669e-05 1.46190693632e-05 +UniRef50_B2S5Z1 Indole 3 glycerol phosphate synthase 0.00633943426866 0.000944133167229 -0.00539530110143 +UniRef50_A7MEJ4 Spermidine export protein MdtJ 0.000660266673678 0.000801764810481 0.000141498136803 +UniRef50_R9YQ52 Sugar transporter family protein 0.0102970729819 0.00324175932818 -0.00705531365372 +UniRef50_UPI000476FBDE hypothetical protein 9.66007984378e-06 2.81550733155e-06 -6.84457251223e-06 +UniRef50_Q5HL84 Gamma glutamyltranspeptidase 0.00974316376915 0.00447760741072 -0.00526555635843 +UniRef50_UPI00041118D3 PTS beta glucoside transporter subunit IIABC 3.12226329252e-06 1.10058678006e-05 7.88360450808e-06 +UniRef50_Q58991 Homoisocitrate dehydrogenase 1.16354700669e-05 1.97641285663e-05 8.1286584994e-06 +UniRef50_D7I1Z9 Dienelactone hydrolase 0.000398462105027 0.00619258482255 0.00579412271752 +UniRef50_UPI0003B77390 DNA directed RNA polymerase subunit alpha 3.85468930198e-05 2.88554297813e-05 -9.6914632385e-06 +UniRef50_F3ZLH7 0.00113699202626 0.000224878562908 -0.000912113463352 +UniRef50_Q8U8I2 Serine 3 dehydrogenase 0.00153880232243 0.0013717453524 -0.00016705697003 +UniRef50_D6B8D3 Primosome assembly protein PriA 7.26432665917e-06 0.000749686775877 0.000742422449218 +UniRef50_Q03IX4 Protein translocase subunit SecA 0.00599226893105 0.00121529080841 -0.00477697812264 +UniRef50_H8GTG2 Putative serine protease 0.000148616531043 0.000958398244057 0.000809781713014 +UniRef50_H9UPI6 Porin thermoregulatory protein envY 0.000265864360815 4.67067784397e-05 -0.000219157582375 +UniRef50_UPI00041B2F47 hypothetical protein 9.39336506483e-06 1.55887241844e-05 6.19535911957e-06 +UniRef50_B9KJW8 Methyl accepting chemotaxis sensory transducer 0.00175365505308 0.00258203385907 0.00082837880599 +UniRef50_J0MRE5 0.0528191405412 0.00998150389135 -0.0428376366499 +UniRef50_UPI000373B743 hypothetical protein 1.57819486834e-05 7.41505037315e-06 -8.36689831025e-06 +UniRef50_A6LQ39 0.000284895085921 0.000252767508006 -3.2127577915e-05 +UniRef50_UPI00037EEBFC hypothetical protein 1.18742615807e-05 1.89315876876e-05 7.0573261069e-06 +UniRef50_A6LXC6 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.0005083513987 0.00168124529959 0.00117289390089 +UniRef50_T1ZMP3 Competence protein 1.0931122354e-05 5.08414499362e-05 3.99103275822e-05 +UniRef50_Q3JTH0 1.33643758423e-05 0.000118125161829 0.000104760785987 +UniRef50_D2NF85 0.000143679791753 6.40026319106e-05 -7.96771598424e-05 +UniRef50_B1ZB21 ABC transporter related 0.00784396451984 0.00212351892044 -0.0057204455994 +UniRef50_E6S7U2 Molybdopterin dehydrogenase FAD binding protein 0.000118955668759 0.00679574812345 0.00667679245469 +UniRef50_UPI00046CF8F3 hypothetical protein, partial 0.00017928416197 8.24921492373e-05 -9.67920127327e-05 +UniRef50_G6CYT2 Arrestin domain containing 4 2.2220380984e-05 2.91265614185e-05 6.9061804345e-06 +UniRef50_Q2S026 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.59818701289e-05 5.08153725614e-06 -1.09003328728e-05 +UniRef50_G2SQT2 ABC transporter, ATP binding protein 0.0128933254692 0.00301955959575 -0.00987376587345 +UniRef50_B3DTC2 Phosphoglucosamine mutase 0.00017371648652 0.00935113035538 0.00917741386886 +UniRef50_I6TYE3 Transcription regulator 0.00276949827888 0.000583373649418 -0.00218612462946 +UniRef50_P0AAA0 Putative L,D transpeptidase YafK 0.00693298412826 0.00164678958507 -0.00528619454319 +UniRef50_Q8L847 Biotin synthase Bio B 9.23647046514e-06 2.51091183984e-05 1.58726479333e-05 +UniRef50_F5M104 ABC transporter related protein 0.000707340993622 0.000320415955001 -0.000386925038621 +UniRef50_C5MZ72 0.00216946400912 0.000504814880674 -0.00166464912845 +UniRef50_UPI0003C75BDD hypothetical protein 0.000414819767969 0.000367382518893 -4.7437249076e-05 +UniRef50_Q8CMX3 Phosphoadenosine phosphosulfate reductase 0.00793024604776 0.00960322523248 0.00167297918472 +UniRef50_M9S1K0 Type III secretion protein PcrV 0.000305331686769 0.000361612292071 5.6280605302e-05 +UniRef50_UPI000372BC15 hypothetical protein 6.28449967867e-06 1.09305883712e-05 4.64608869253e-06 +UniRef50_D4MD52 ABC type proline glycine betaine transport system, permease component 0.00300871855084 0.00159066728045 -0.00141805127039 +UniRef50_C6XQD6 Polygalacturonase 7.25839627125e-06 0.00295404007112 0.00294678167485 +UniRef50_Q52666 Glutamate glutamine aspartate asparagine transport ATP binding protein BztD 0.0165164957471 0.00562201927878 -0.0108944764683 +UniRef50_UPI000465B0D7 hypothetical protein 0.000130206382325 5.50820824129e-05 -7.51242999121e-05 +UniRef50_F6K0S0 Silk fibroin 2.67337493688e-05 1.07406211578e-05 -1.5993128211e-05 +UniRef50_H2WUA1 1.00004210264e-06 9.78907534882e-06 8.78903324618e-06 +UniRef50_Q1RFT2 0.000343169080774 0.00553466328478 0.00519149420401 +UniRef50_R1H4G9 Immunogenic protein 5.26631450205e-05 1.02444919458e-05 -4.24186530747e-05 +UniRef50_UPI00036D594A hypothetical protein 1.23420876788e-05 0.000467862080669 0.00045551999299 +UniRef50_UPI0003C19FB7 PREDICTED 1.23634289964e-05 1.99667556879e-05 7.6033266915e-06 +UniRef50_UPI00035D526E hypothetical protein 0.00036162929496 0.000101203590973 -0.000260425703987 +UniRef50_UPI00046A043A hypothetical protein 0.00247501074101 0.000497724784029 -0.00197728595698 +UniRef50_R4XQ21 Phage minor tail protein 0.000489535144044 0.00200817889419 0.00151864375015 +UniRef50_Q017S2 Probable membrane protein YCR013c yeast 0.000107573079025 0.000173284562526 6.5711483501e-05 +UniRef50_B5XJ20 Bifunctional purine biosynthesis protein PurH 0.000257953270843 0.000182458371159 -7.5494899684e-05 +UniRef50_P56117 0.000160024982324 0.00353860842852 0.0033785834462 +UniRef50_UPI0002B49AD0 PREDICTED 2.11853219787e-05 1.94239349735e-05 -1.7613870052e-06 +UniRef50_A6LTX3 0.000653341134548 0.000341406595601 -0.000311934538947 +UniRef50_UPI00046A5CCB PA phosphatase 8.12053070035e-05 3.74352975807e-05 -4.37700094228e-05 +UniRef50_Q3IW22 L alanine exporter AlaE 0.000985628140097 0.000436428628368 -0.000549199511729 +UniRef50_F9Z196 Oligopeptide binding protein OppA 6.80154934868e-05 0.0038254108771 0.00375739538361 +UniRef50_O83940 Ribosomal RNA small subunit methyltransferase I 9.18041392036e-06 2.92724300042e-05 2.00920160838e-05 +UniRef50_UPI0002628324 arginine ABC transporter ATP binding protein 0.000157884942429 5.32265602563e-05 -0.000104658382173 +UniRef50_D5APQ0 0.0108600032869 0.00534544925084 -0.00551455403606 +UniRef50_Q4EQ49 0.000876509573523 0.00024182256549 -0.000634687008033 +UniRef50_A8Z3H2 TetR family transcriptional regulator 0.0122563423778 0.00349498374392 -0.00876135863388 +UniRef50_Q5M103 ATP synthase epsilon chain 0.00301885716408 0.00364148684768 0.0006226296836 +UniRef50_Q88LV4 GTP cyclohydrolase 1 1 0.000131743092193 0.000115666046802 -1.6077045391e-05 +UniRef50_UPI0003775137 hypothetical protein 6.73748840301e-06 2.49797678211e-05 1.82422794181e-05 +UniRef50_Q8NM41 Peptide deformylase 2 1.11834005135e-05 5.74261421105e-05 4.6242741597e-05 +UniRef50_Q99SN7 0.00860900896339 0.00390416651894 -0.00470484244445 +UniRef50_G0DRT9 Regulatory protein 1.09960114367e-05 0.00430559168726 0.00429459567582 +UniRef50_Q8X7W7 Catecholate siderophore receptor Fiu 0.0034462689335 0.000778999423286 -0.00266726951021 +UniRef50_S6BDB2 Methionine tRNA ligase 0.00636862377881 0.00424605634746 -0.00212256743135 +UniRef50_G0FNR8 0.000203176833565 5.47233998387e-05 -0.000148453433726 +UniRef50_J5L0G3 Chaperone protein HscA 0.000113981592443 0.000124831197151 1.0849604708e-05 +UniRef50_B9EUP4 2.08735671268e-05 6.26459478293e-06 -1.46089723439e-05 +UniRef50_Q21WE1 Alcohol dehydrogenase, zinc binding 0.000667010080329 0.000275139787458 -0.000391870292871 +UniRef50_U6IF34 Heat shock protein 71 kDa protein 1.43780746859e-05 4.99161521535e-06 -9.38645947055e-06 +UniRef50_Q6LV34 RNA polymerase associated protein RapA 0.00226172063096 0.000912572316718 -0.00134914831424 +UniRef50_H8GTZ6 9.41659307779e-05 0.0221552131783 0.0220610472475 +UniRef50_UPI0003C7D07B hypothetical protein 0.000162249896705 9.17207710547e-05 -7.05291256503e-05 +UniRef50_B6EJ93 Imidazole glycerol phosphate synthase subunit HisF 0.000821793480819 0.00783774071396 0.00701594723314 +UniRef50_Q8UBB7 sn glycerol 3 phosphate import ATP binding protein UgpC 2 0.000106545254932 6.15781519342e-05 -4.49671029978e-05 +UniRef50_A8F986 50S ribosomal protein L4 0.000536709936758 0.000344058297312 -0.000192651639446 +UniRef50_UPI0003B645FE protein pucC, partial 0.000151247293605 7.58006029206e-05 -7.54466906844e-05 +UniRef50_C8X890 Two component transcriptional regulator, LuxR family 0.000670093471334 0.00566498681681 0.00499489334548 +UniRef50_K0ECU0 CreA protein 0.000112903302432 5.83457074415e-05 -5.45575949905e-05 +UniRef50_UPI00040FE389 O sialoglycoprotein endopeptidase 4.66671804002e-06 2.17386421514e-05 1.70719241114e-05 +UniRef50_R5FR54 1.37261117605e-05 0.00524577168719 0.00523204557543 +UniRef50_UPI00036C9093 hypothetical protein 9.7154259184e-06 9.44246944398e-06 -2.7295647442e-07 +UniRef50_O13774 GTP cyclohydrolase 1 4.46575438327e-05 5.61799705961e-05 1.15224267634e-05 +UniRef50_G0DV83 HAD hydrolase, family IIB 0.000783264504791 0.00294531019607 0.00216204569128 +UniRef50_B0TH67 tRNA ) methyltransferase 0.0175094261163 0.0060852830873 -0.011424143029 +UniRef50_D2TMN6 Proofreading thioesterase EntH 0.00657434899225 0.00042903153298 -0.00614531745927 +UniRef50_B2V2W5 Sensor histidine kinase 0.000113950976906 0.000630027398056 0.00051607642115 +UniRef50_UPI0003671A9B hypothetical protein 0.000212796006683 0.000119542118496 -9.3253888187e-05 +UniRef50_UPI0004719C11 DNA topoisomerase III, partial 4.02274700642e-06 1.29115194069e-05 8.88877240048e-06 +UniRef50_Q7CQ37 Flagellar regulator flk 0.00214833044401 0.00106172128245 -0.00108660916156 +UniRef50_O84867 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.51538399953e-05 4.6207042454e-05 -2.89467975413e-05 +UniRef50_Q882G0 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.000268390073234 0.00939833132412 0.00912994125089 +UniRef50_Q8RDK3 2 isopropylmalate synthase 1 9.83741549096e-06 6.53262219278e-06 -3.30479329818e-06 +UniRef50_B2RIJ1 GTP cyclohydrolase 1 5.62486140959e-05 7.56482212017e-05 1.93996071058e-05 +UniRef50_UPI0002376FCC putative D amino acid dehydrogenase small subunit, partial 4.78591065771e-05 3.22706550321e-05 -1.5588451545e-05 +UniRef50_Q8DWE5 Tagatose 1,6 diphosphate aldolase 2 0.0275943336869 0.00889453172035 -0.0186998019666 +UniRef50_N0A6X1 Pirin family protein 5.64329380165e-06 1.04939788473e-05 4.85068504565e-06 +UniRef50_D4H966 2.04104886097e-05 0.000846495552049 0.000826085063439 +UniRef50_Q2NCT3 Peptide deformylase 2.96563645232e-05 4.49691802303e-05 1.53128157071e-05 +UniRef50_G7M922 GAF modulated sigma54 specific transcriptional regulator, Fis family 0.000428724063848 0.00210461111834 0.00167588705449 +UniRef50_D4DVN6 3.91690230953e-06 0.000526783747844 0.000522866845534 +UniRef50_D9RE87 Superantigen like protein 0.0134769906841 0.00116587542225 -0.0123111152619 +UniRef50_UPI0003781EF8 hypothetical protein 8.94347122921e-05 5.32774660994e-05 -3.61572461927e-05 +UniRef50_UPI000467DD39 hypothetical protein 0.000831727033985 0.000212550177213 -0.000619176856772 +UniRef50_U5MQB3 BglP 0.000373830511131 0.00107548828906 0.000701657777929 +UniRef50_W7YQJ5 L serine dehydratase 1.57695371932e-05 3.17883450827e-05 1.60188078895e-05 +UniRef50_Q3J213 Histone like nucleoid structuring protein H NS 0.002630737868 0.0121548003248 0.0095240624568 +UniRef50_UPI0002481AA6 type II secretion system protein E 5.09082006052e-06 7.09979625838e-06 2.00897619786e-06 +UniRef50_UPI0002C431F7 PREDICTED 6.72885756713e-06 6.86282515649e-06 1.3396758936e-07 +UniRef50_Q9RZQ5 3.79499055155e-05 0.0172530032125 0.017215053307 +UniRef50_UPI00036E554C hypothetical protein 7.06318469579e-06 6.62054898533e-06 -4.4263571046e-07 +UniRef50_Q9RZQ2 6.45391313574e-05 0.0325822703044 0.032517731173 +UniRef50_D8JIG9 TetR family regulatory protein 0.000800297196335 0.0108055842713 0.010005287075 +UniRef50_A3PMN1 0.00760536301962 0.0015746592138 -0.00603070380582 +UniRef50_UPI00041FCE8E 16S rRNA methyltransferase 2.04454325707e-05 2.3697005486e-05 3.2515729153e-06 +UniRef50_U3AG04 0.000243051842678 2.9903588716e-05 -0.000213148253962 +UniRef50_Q4FQ57 tRNA dihydrouridine synthase 0.00030916337053 0.0107160553481 0.0104068919776 +UniRef50_F6B6L3 Biotin and thiamin synthesis associated 0.000181281340016 0.00438811635572 0.0042068350157 +UniRef50_W8T306 0.000210103518845 0.000320415955001 0.000110312436156 +UniRef50_UPI0000E48B78 8.04452697527e-05 6.95406902601e-05 -1.09045794926e-05 +UniRef50_G7U5D1 0.000449388081972 0.00129916046564 0.000849772383668 +UniRef50_UPI0003B78451 Fur family transcriptional regulator 2.42643321264e-05 5.45372352293e-05 3.02729031029e-05 +UniRef50_B7VBB6 0.00089678458948 0.000673163926063 -0.000223620663417 +UniRef50_Q9XAQ2 Peptide deformylase 3 2.46144694101e-05 4.26219599765e-05 1.80074905664e-05 +UniRef50_UPI0003F78D52 dihydrolipoamide dehydrogenase 4.4091165399e-05 5.05302669038e-06 -3.90381387086e-05 +UniRef50_UPI000470E763 50S ribosomal protein L20 4.16856163057e-05 0.000111221826355 6.95362100493e-05 +UniRef50_P76097 0.00356301645962 0.00106325344239 -0.00249976301723 +UniRef50_P76091 0.00201711653875 0.000509967374951 -0.0015071491638 +UniRef50_P76092 0.00235729780894 0.00078029831934 -0.0015769994896 +UniRef50_P76093 0.0025000717507 0.00171674625812 -0.00078332549258 +UniRef50_UPI0004726B91 succinylglutamate desuccinylase 0.000172806796874 7.40117175019e-05 -9.87950793721e-05 +UniRef50_Q65WJ9 2,3 diketo L gulonate reductase 0.00335716395959 0.0008173320351 -0.00253983192449 +UniRef50_P37079 Sorbitol 6 phosphate 2 dehydrogenase 0.0070650700495 0.00297491079493 -0.00409015925457 +UniRef50_M4VE07 0.000409534680746 0.000111620052693 -0.000297914628053 +UniRef50_Q4L9T6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0138370971311 0.00156073432148 -0.0122763628096 +UniRef50_G0W8W8 3.2724375537e-05 2.37833821672e-05 -8.9409933698e-06 +UniRef50_H8E1H7 Rhamnan synthesis F 3.62110766339e-06 5.42965374139e-06 1.808546078e-06 +UniRef50_K8BHL7 0.000119502669921 0.000126482326098 6.979656177e-06 +UniRef50_A0LK48 Cytidylate kinase 1.7875011221e-05 1.26760826466e-05 -5.1989285744e-06 +UniRef50_A3PN16 malyl CoA thioesterase 0.00737608676664 0.0071144095129 -0.00026167725374 +UniRef50_W5XB80 7.88820605388e-06 1.05544241583e-05 2.66621810442e-06 +UniRef50_I7EVV9 Protease DegQ 0.00438899668242 0.00171705793376 -0.00267193874866 +UniRef50_UPI0003C16653 PREDICTED 4.4709067907e-05 2.38428490702e-05 -2.08662188368e-05 +UniRef50_UPI0003748772 hypothetical protein 3.10366119822e-06 7.90650956488e-06 4.80284836666e-06 +UniRef50_N2KX33 Permease family protein 0.0041119048066 0.000501954739708 -0.00360995006689 +UniRef50_UPI000422BE1C hypothetical protein 6.96464088406e-05 1.2196799528e-05 -5.74496093126e-05 +UniRef50_A3PIC8 GumN family protein 0.00223667336386 0.000474139974964 -0.0017625333889 +UniRef50_UPI000476E7CA hypothetical protein, partial 3.24332460515e-05 0.000360332619486 0.000327899373434 +UniRef50_Q45388 Protein tex 0.00210180891784 0.00673021747364 0.0046284085558 +UniRef50_A3PKD8 Flagellar basal body associated protein FliL 0.000654599980668 0.000763380190275 0.000108780209607 +UniRef50_UPI0004631839 hypothetical protein 2.03760254449e-05 0.000108845823106 8.84697976611e-05 +UniRef50_P0AEU2 Histidine binding periplasmic protein 0.00328814752836 0.000369916540948 -0.00291823098741 +UniRef50_D2N8C9 Membrane protein, putative 0.00413771502081 0.000438838993689 -0.00369887602712 +UniRef50_W0RB11 2.89708651689e-06 0.000221091908687 0.00021819482217 +UniRef50_A3PRR5 0.00111785653596 0.00020319956779 -0.00091465696817 +UniRef50_A4WV09 Heme NO binding domain protein 0.00428101146838 0.000950314467692 -0.00333069700069 +UniRef50_Q8CN58 Beta lactamase 0.00974171953173 0.00155538470796 -0.00818633482377 +UniRef50_A0LG38 Non canonical purine NTP pyrophosphatase 5.85935234284e-06 3.1034087394e-05 2.51747350512e-05 +UniRef50_E4BAZ7 0.000167275918245 0.00319024270853 0.00302296679028 +UniRef50_M4R8Z6 Allophanate hydrolase subunit 1 and 2 0.000106035390125 0.00944855307062 0.00934251768049 +UniRef50_B2A6S5 5.48627576404e-06 0.000527905288201 0.000522419012437 +UniRef50_A6LQH2 ATP synthase subunit b 0.00176946557275 0.000761289914267 -0.00100817565848 +UniRef50_A0A059IQJ7 1.71804120686e-05 2.2215893237e-05 5.0354811684e-06 +UniRef50_UPI00047A44A8 hypothetical protein 7.61422876536e-06 8.04535933483e-06 4.3113056947e-07 +UniRef50_M1MIH5 Methionine tRNA ligase MetG 0.000329270528303 0.000716797792498 0.000387527264195 +UniRef50_Q2J3G4 ABC transporter related 0.000164841043168 0.000257918519823 9.3077476655e-05 +UniRef50_D5AR59 Long chain fatty acid CoA ligase 0.00739043140798 0.00269263623804 -0.00469779516994 +UniRef50_M1MSQ9 Glycosyltransferase 0.000126673150626 0.000613973891223 0.000487300740597 +UniRef50_U5MP56 ATP dependent DNA helicase PcrA 0.000264406580561 0.000761487357835 0.000497080777274 +UniRef50_UPI0000557635 COG1494 0.000231845659421 6.4397287639e-05 -0.000167448371782 +UniRef50_B4U3D2 Glycerol 3 phosphate acyltransferase 0.00710924348572 0.00438501291583 -0.00272423056989 +UniRef50_Q47151 Probable endopeptidase YafL 0.00401376420638 0.00147455324372 -0.00253921096266 +UniRef50_P34918 Glyceraldehyde 3 phosphate dehydrogenase 3 0.0113657976531 0.0032136113748 -0.0081521862783 +UniRef50_A9V0F3 Predicted protein 5.67595553148e-06 3.21047883019e-06 -2.46547670129e-06 +UniRef50_UPI00026C7458 uridylate kinase 1.18602595647e-05 0.00032347256221 0.000311612302645 +UniRef50_UPI000466CCAB hypothetical protein 7.58130286368e-05 5.42555512351e-06 -7.03874735133e-05 +UniRef50_G4SV55 0.000162787776744 0.00017011488705 7.327110306e-06 +UniRef50_D0CPI8 Membrane bound lytic murein transglycosylase A 0.000124726858763 4.67247053037e-05 -7.80021534593e-05 +UniRef50_Q9HTX6 Glycine cleavage system H protein 2 0.000265212638537 0.0121478660649 0.0118826534264 +UniRef50_UPI0002FE2DAD hypothetical protein 9.84303334315e-06 0.00141506220113 0.00140521916779 +UniRef50_A5V6A9 1 deoxy D xylulose 5 phosphate synthase 0.00322264409689 0.000728099062133 -0.00249454503476 +UniRef50_P37051 Formyltetrahydrofolate deformylase 0.002969319614 0.00194674785454 -0.00102257175946 +UniRef50_M1MN84 Transcriptional regulator, TetR family 0.00069714595573 0.00448209912357 0.00378495316784 +UniRef50_UPI0003B5D266 RNA polymerase sigma70 factor 5.2779075524e-06 6.56252586194e-06 1.28461830954e-06 +UniRef50_B2UC97 1.49952456488e-05 3.35773187243e-05 1.85820730755e-05 +UniRef50_Q89AM1 Enoyl [acyl carrier protein] reductase [NADH] FabI 7.7142035136e-06 3.89567304826e-05 3.1242526969e-05 +UniRef50_UPI000379D6F2 hypothetical protein 8.01371242936e-06 9.34545198818e-06 1.33173955882e-06 +UniRef50_D6SDD7 0.00314858377232 0.000889353538793 -0.00225923023353 +UniRef50_A6M2T4 Transcriptional regulator, RpiR family 0.000964709876066 0.00189169310385 0.000926983227784 +UniRef50_P0C0G7 Glyceraldehyde 3 phosphate dehydrogenase 0.0312091721497 0.0262510387645 -0.0049581333852 +UniRef50_U5MXQ9 Neutral endopeptidase PepO 0.000184277992011 0.00142288521904 0.00123860722703 +UniRef50_Q1YYL9 8.0179446909e-05 0.000238822870829 0.00015864342392 +UniRef50_UPI0003DE8BE2 PREDICTED 9.03868372557e-06 2.64923870609e-05 1.74537033353e-05 +UniRef50_B2TKY4 0.000298015254361 0.00324529316528 0.00294727791092 +UniRef50_V4KU43 1.52960440491e-05 6.4422989229e-06 -8.8537451262e-06 +UniRef50_Q2S8X6 0.00103273619944 0.000791504684792 -0.000241231514648 +UniRef50_Q9RWK1 0.000331128060398 0.0589119176438 0.0585807895834 +UniRef50_G7U9N4 Sugar kinase 0.000202224636884 0.00371618222463 0.00351395758775 +UniRef50_P0AAF8 Arginine transport ATP binding protein ArtP 0.00112252473688 0.00142918795512 0.00030666321824 +UniRef50_Q5HNW5 Protein GrpE 0.0217446947066 0.0045715881213 -0.0171731065853 +UniRef50_D9RBB0 ABC 2 type transport system permease protein 0.0152254918157 0.00323793116598 -0.0119875606497 +UniRef50_B2IX22 Nucleoside diphosphate kinase 2.96625841749e-05 0.000122981531816 9.33189476411e-05 +UniRef50_P51599 GTP cyclohydrolase 1 1.78342529037e-05 2.65029180842e-05 8.6686651805e-06 +UniRef50_P39211 Xylulose kinase 0.0121707827446 0.00477951394816 -0.00739126879644 +UniRef50_Q8TUT7 Carbamoyl phosphate synthase large chain, C terminal section 2.19675455646e-06 1.18542587344e-05 9.65750417794e-06 +UniRef50_P42455 2 isopropylmalate synthase 0.000233778443676 0.00755147484335 0.00731769639967 +UniRef50_Z5QLE0 0.000195801475224 7.64499399824e-05 -0.000119351535242 +UniRef50_Q7UUJ7 Arginine biosynthesis bifunctional protein ArgJ 7.61013046793e-06 1.56223566404e-05 8.01222617247e-06 +UniRef50_P37640 Putative HTH type transcriptional regulator YhjB 0.00168348343601 0.00112215745199 -0.00056132598402 +UniRef50_Q6N6M8 Putative 3 methyladenine DNA glycosylase 3.46496940633e-05 3.03142830297e-05 -4.3354110336e-06 +UniRef50_Q9HWF5 Protein translocase subunit SecY 0.0153597488857 0.0028233898868 -0.0125363589989 +UniRef50_Q1H4S2 Transcriptional regulator, BolA protein family 3.47820639494e-05 0.000101699846043 6.69177820936e-05 +UniRef50_UPI00047D0941 ribonuclease J 4.41658138232e-05 7.60871799111e-05 3.19213660879e-05 +UniRef50_D6RK40 3.88803457436e-06 5.72259483041e-06 1.83456025605e-06 +UniRef50_UPI00037D2EDA Fis family transcriptional regulator 2.85690616081e-05 6.85223115284e-05 3.99532499203e-05 +UniRef50_B7H290 Bacterial regulatory helix turn helix protein, AraC family protein 0.000569942571355 0.00432311624254 0.00375317367119 +UniRef50_D9SLQ3 0.000381211316936 0.00432041352107 0.00393920220413 +UniRef50_D1QZF9 0.00199861059831 0.00096825149244 -0.00103035910587 +UniRef50_UPI0003773794 hypothetical protein, partial 7.11328550823e-06 1.0451608283e-05 3.33832277477e-06 +UniRef50_M2SBT2 2.34907269986e-05 2.41590832408e-05 6.683562422e-07 +UniRef50_W4SVI6 1.75669727904e-05 8.50826327346e-06 -9.05870951694e-06 +UniRef50_T0U4L8 0.000164197362179 3.85445307448e-05 -0.000125652831434 +UniRef50_UPI00037CC475 RNaseH ribonuclease 1.21193660833e-05 2.00647528096e-05 7.9453867263e-06 +UniRef50_J0G9L6 0.0237918001072 0.00464661078999 -0.0191451893172 +UniRef50_R5WWI1 Sugar efflux transporter 0.000249865680095 0.000642196130241 0.000392330450146 +UniRef50_Q8CSQ8 Two component sensor histidine kinase 0.00790436750321 0.00218217187302 -0.00572219563019 +UniRef50_UPI00034B82F7 hypothetical protein 1.48941021585e-05 2.05197166506e-05 5.6256144921e-06 +UniRef50_Q3STT6 Ribosomal RNA small subunit methyltransferase H 6.03893489987e-06 9.82304937404e-06 3.78411447417e-06 +UniRef50_UPI00016C4B38 hypothetical protein 4.34435018842e-06 0.00013459701863 0.000130252668442 +UniRef50_M1XJ95 0.00062011904865 0.00245638279711 0.00183626374846 +UniRef50_S1SS99 0.000186469437616 0.000283166868808 9.6697431192e-05 +UniRef50_Q9MB35 Peroxiredoxin Q, chloroplastic 1.26087283836e-05 0.000289937078423 0.000277328350039 +UniRef50_Q9RU52 Propionyl CoA carboxylase, beta subunit, putative 0.00024566050805 0.0375754021169 0.0373297416088 +UniRef50_A6LSX6 Metal dependent phosphohydrolase 0.000276095179701 0.00110832621713 0.000832231037429 +UniRef50_UPI000380524A hypothetical protein 9.07208606024e-06 8.46940201252e-05 7.5621934065e-05 +UniRef50_A5UNL2 Adhesin like protein 0.00269941434356 0.000393507004076 -0.00230590733948 +UniRef50_UPI00037DF1FA hypothetical protein, partial 2.35975321104e-05 3.81466499987e-05 1.45491178883e-05 +UniRef50_P45475 0.00282392780224 0.00049732744901 -0.00232660035323 +UniRef50_A3PQA6 Transcriptional activator, TenA family 0.00362950200244 0.00125414943877 -0.00237535256367 +UniRef50_Q1QVP5 Phosphoribosylformylglycinamidine cyclo ligase 0.000135592317297 0.00020589203825 7.0299720953e-05 +UniRef50_M8BCA5 4.3274159533e-05 5.21507714433e-05 8.8766119103e-06 +UniRef50_UPI0003699F3D hypothetical protein 0.000254326332754 5.41322522287e-05 -0.000200194080525 +UniRef50_P44990 Putative L ribulose 5 phosphate 3 epimerase SgbU 0.00502164878361 0.0048863558954 -0.00013529288821 +UniRef50_U3NFX9 ABC transporter ATP binding protein 0.0114803453649 0.00348412896761 -0.00799621639729 +UniRef50_UPI00035F71CA hypothetical protein, partial 0.000120677405022 0.000102916041577 -1.7761363445e-05 +UniRef50_I5C4V6 4.76553083995e-05 3.63396328313e-05 -1.13156755682e-05 +UniRef50_C6DH09 Dipeptide and tripeptide permease A 0.00380633421698 0.00167401192526 -0.00213232229172 +UniRef50_K6WI65 2.42416031627e-05 7.89125253998e-05 5.46709222371e-05 +UniRef50_Q6FWS8 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.44177514164e-05 3.74429258416e-05 1.30251744252e-05 +UniRef50_P39361 Putative sgc region transcriptional regulator 0.00310448986857 0.000730729744925 -0.00237376012364 +UniRef50_UPI00046EB60D FAD dependent oxidoreductase 3.76532761913e-05 6.45134814142e-06 -3.12019280499e-05 +UniRef50_A2C638 Holliday junction ATP dependent DNA helicase RuvB 1.34899598818e-05 1.5472354052e-05 1.9823941702e-06 +UniRef50_I0C1C0 0.013969418527 0.00321716328876 -0.0107522552382 +UniRef50_UPI00041A4D89 ABC transporter 2.14139228768e-06 7.48307264848e-06 5.3416803608e-06 +UniRef50_C6SPV4 0.00551911855697 0.00113055741727 -0.0043885611397 +UniRef50_A9M100 Inner membrane protein 9.61339530144e-05 0.00404695253804 0.00395081858503 +UniRef50_Q8DXA0 Membrane protein, putative 0.000111352799069 0.000423394934474 0.000312042135405 +UniRef50_I6TR24 Transcriptional regulator 0.00402767363987 0.00140129314112 -0.00262638049875 +UniRef50_X6L6D5 0.000467357646695 5.79202984179e-05 -0.000409437348277 +UniRef50_N6V1G3 0.000271450233574 8.4644289495e-05 -0.000186805944079 +UniRef50_P18005 UPF0380 protein YubP 5.50028846938e-05 1.35426340338e-05 -4.146025066e-05 +UniRef50_P96704 0.00107565091756 0.00120742214588 0.00013177122832 +UniRef50_K7RW82 Inositol monophosphatase family protein 0.00075196865095 0.00537599664904 0.00462402799809 +UniRef50_D5AQI9 RNA polymerase sigma factor RpoD 0.00917695135375 0.00166812086099 -0.00750883049276 +UniRef50_UPI000476E737 16S rRNA methyltransferase 1.77588786757e-05 4.03341764505e-05 2.25752977748e-05 +UniRef50_A4WNN4 Succinate dehydrogenase subunit D 0.00612085748838 0.00047889195437 -0.00564196553401 +UniRef50_P18190 Uptake hydrogenase small subunit 0.00022767267507 5.20272514985e-05 -0.000175645423572 +UniRef50_K2DSW0 4.84310846305e-05 0.000241382637143 0.000192951552513 +UniRef50_G1XZ93 5.43026453118e-05 2.26977700987e-05 -3.16048752131e-05 +UniRef50_Q8S4Y1 Acetyl CoA acetyltransferase, cytosolic 1 6.08264120912e-06 6.04291516233e-06 -3.972604679e-08 +UniRef50_G7LY81 Multi sensor signal transduction histidine kinase 0.000147476250443 0.000941798867973 0.00079432261753 +UniRef50_Q7NF44 Glutathione synthetase 5.16051069709e-06 9.9042308259e-06 4.74372012881e-06 +UniRef50_A0M0D8 30S ribosomal protein S18 0.00354273107629 0.00151237753588 -0.00203035354041 +UniRef50_P11290 0.000565927500567 0.000174916113641 -0.000391011386926 +UniRef50_I6U2C8 Transcriptional regulator 0.00300806379549 0.00512603096127 0.00211796716578 +UniRef50_A6V7V9 0.0013383957765 9.43149365607e-06 -0.00132896428284 +UniRef50_A3M2U1 Chromosome partition protein Smc 0.000141191198509 0.00699114061376 0.00684994941525 +UniRef50_P39762 Aminopeptidase AmpS 0.000120474251758 0.00152043786618 0.00139996361442 +UniRef50_Q6A6Z0 0.000152949049345 0.00491401698154 0.00476106793219 +UniRef50_F5M502 0.00234765907505 0.00115198789165 -0.0011956711834 +UniRef50_UPI000287F837 alpha beta hydrolase 7.78967760848e-05 2.64978040258e-05 -5.1398972059e-05 +UniRef50_F5M500 0.00174749995948 0.000204622019741 -0.00154287793974 +UniRef50_UPI0003AD3586 hypothetical protein 9.80286148051e-06 1.02295035835e-05 4.2664210299e-07 +UniRef50_G7U769 Translocase subunit 0.000243016731023 0.00517288475424 0.00492986802322 +UniRef50_P37387 D xylose binding periplasmic protein 0.00403690109778 0.000200895717825 -0.00383600537996 +UniRef50_W0YQG2 NADH dependent enoyl ACP reductase 3.2073309994e-05 0.000109545252939 7.7471942945e-05 +UniRef50_B8DVQ6 30S ribosomal protein S16 0.00174224302547 0.0012478170642 -0.00049442596127 +UniRef50_UPI0003B54983 heme ABC transporter ATP binding protein 1.0908174305e-05 7.40248864949e-05 6.31167121899e-05 +UniRef50_G8V7W6 Myo inositol catabolism protein 0.000294144926378 0.00814745696907 0.00785331204269 +UniRef50_R8ZC75 Sensor response regulator hybrid 9.53766746351e-05 4.57382609982e-05 -4.96384136369e-05 +UniRef50_UPI000237926B polar amino acid ABC transporter, inner membrane subunit 6.25109496583e-06 1.12882999088e-05 5.03720494297e-06 +UniRef50_Q9ZMX5 Threonine synthase 8.78555443445e-05 0.0048185830238 0.00473072747946 +UniRef50_E4ZD88 CobW related protein 0.000453238579631 0.00184058102211 0.00138734244248 +UniRef50_Q8DVW8 Ribonuclease M5 0.00614246376994 0.00280927412234 -0.0033331896476 +UniRef50_A0A023RUP9 0.000460348766892 0.00245216220496 0.00199181343807 +UniRef50_A4YJX9 Argininosuccinate synthase 2.28043905765e-05 4.5133528938e-05 2.23291383615e-05 +UniRef50_B8A191 1.39101390792e-05 2.54200530281e-05 1.15099139489e-05 +UniRef50_E3I166 Response regulator receiver protein 0.0128393501946 0.00265977656136 -0.0101795736332 +UniRef50_B2S5M8 Glutamate tRNA ligase 1 0.00551398269547 0.00180957186633 -0.00370441082914 +UniRef50_P68398 tRNA specific adenosine deaminase 0.000226039514279 0.00363257854014 0.00340653902586 +UniRef50_D4HA24 1.10105365464e-05 0.00390960683218 0.00389859629563 +UniRef50_P22610 Type 4 prepilin like proteins leader peptide processing enzyme 0.000473106579946 0.00024982807633 -0.000223278503616 +UniRef50_UPI00031B36EE hypothetical protein 4.18543658605e-06 7.72020159125e-06 3.5347650052e-06 +UniRef50_A7IKH6 Chitin deacetylase 0.00705397979079 0.000896868348018 -0.00615711144277 +UniRef50_W1YCR6 DNA polymerase II protein 1.00134637373e-05 0.000337174067088 0.000327160603351 +UniRef50_R4UR16 Cobalamin synthesis protein P47K 5.19168052679e-06 6.77820634222e-06 1.58652581543e-06 +UniRef50_J3UP44 0.00857094071114 0.00167522890869 -0.00689571180245 +UniRef50_P48925 NADH ubiquinone oxidoreductase chain 6 0.000110682708458 1.44067371866e-05 -9.62759712714e-05 +UniRef50_UPI0004727F6C major facilitator transporter 1.77570623264e-05 1.15141893517e-05 -6.2428729747e-06 +UniRef50_G7U931 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.000517764178998 0.00480363774912 0.00428587357012 +UniRef50_Q67QM2 Oligopeptide ABC transporter permease protein 0.000425251298767 0.00113366620795 0.000708414909183 +UniRef50_F9YZR2 0.000398783766156 0.00175693348648 0.00135814972032 +UniRef50_E8ZNH1 Magnesium transporter 0.000360286142419 0.00206637851517 0.00170609237275 +UniRef50_UPI0004707272 peptide ABC transporter substrate binding protein 6.20658054929e-05 4.88667733008e-06 -5.71791281628e-05 +UniRef50_A4VMC4 Isocitrate dehydrogenase kinase phosphatase 0.000720082109218 0.000733333500788 1.325139157e-05 +UniRef50_F9YZR4 0.0003594538252 0.000615243135819 0.000255789310619 +UniRef50_Q81G03 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.61253024194e-05 8.07831529704e-06 -8.04698712236e-06 +UniRef50_UPI000185F617 GTP binding protein lepA, putative 2.12087921474e-05 1.27303855591e-05 -8.4784065883e-06 +UniRef50_UPI00035F1A33 hypothetical protein 1.24949684171e-05 5.31051634378e-06 -7.18445207332e-06 +UniRef50_UPI00038FD59B Leu Ile Val binding protein homolog 1 5.50769749069e-05 0.000164773576958 0.000109696602051 +UniRef50_Q796Y8 Putative peroxiredoxin YgaF 1.5503080275e-05 0.000423870777005 0.00040836769673 +UniRef50_C0QKP4 Holliday junction ATP dependent DNA helicase RuvB 1.08471768462e-05 9.73932967508e-06 -1.10784717112e-06 +UniRef50_Q1QUS4 Leucyl phenylalanyl tRNA protein transferase 0.00186638178171 2.3423010334e-05 -0.00184295877138 +UniRef50_Q9FEA2 Glutamate tRNA ligase, chloroplastic mitochondrial 3.51923865272e-06 5.687859083e-06 2.16862043028e-06 +UniRef50_R0D1R5 1.6114000738e-05 1.57092991778e-05 -4.047015602e-07 +UniRef50_UPI0003C19684 7.94027972473e-05 2.94397424455e-06 -7.64588230027e-05 +UniRef50_UPI00022B367A PREDICTED 3.97294913556e-05 3.67435541448e-05 -2.9859372108e-06 +UniRef50_A3PJ06 0.000511393577465 0.00101529936426 0.000503905786795 +UniRef50_Q89IA9 Blr5730 protein 0.00147020726376 3.78468844891e-05 -0.00143236037927 +UniRef50_UPI000395A40D hemin ABC transporter ATP binding protein 9.04485964171e-06 0.0001824528903 0.000173408030658 +UniRef50_UPI0004737F0F 50S ribosomal protein L4, partial 2.69624230048e-05 0.000274116468261 0.000247154045256 +UniRef50_P36645 Protein transport protein HofB homolog 0.00387705485979 0.00089830085079 -0.002978754009 +UniRef50_UPI00036C1E72 hypothetical protein 1.6034634256e-05 3.21817571849e-05 1.61471229289e-05 +UniRef50_Q479B1 D amino acid dehydrogenase small subunit 3.27093417385e-05 2.13242302316e-05 -1.13851115069e-05 +UniRef50_R5BVY8 Adenylylsulfate reductase 0.00050326031403 0.000405983747733 -9.7276566297e-05 +UniRef50_H8XBT8 Recombinase A 9.04781887215e-05 0.000103567946051 1.30897573295e-05 +UniRef50_A8LGN1 Thioesterase superfamily protein 2.55159319187e-05 7.28315827601e-05 4.73156508414e-05 +UniRef50_Q59643 Delta aminolevulinic acid dehydratase 0.0103385774077 0.00260028995401 -0.00773828745369 +UniRef50_UPI000367F7CA hypothetical protein 0.00103641467131 0.000805409195995 -0.000231005475315 +UniRef50_Q5HNG0 D alanine aminotransferase 0.01288906538 0.00382529543471 -0.00906376994529 +UniRef50_Q2FZK3 Protein FmtA 0.0172714855141 0.00501362938122 -0.0122578561329 +UniRef50_W0RCE0 CHAT domain protein 6.81742071424e-05 0.000207274046011 0.000139099838869 +UniRef50_C9XLF6 NUDIX family protein 0.00022469404098 0.000847799153669 0.000623105112689 +UniRef50_K2FFD1 4.67746337876e-06 8.8691289884e-06 4.19166560964e-06 +UniRef50_B4SL85 Phosphatidate cytidylyltransferase 0.000120989098994 0.000436802156898 0.000315813057904 +UniRef50_B9DKR8 Mevalonate kinase 0.0235668667175 0.00658274570528 -0.0169841210122 +UniRef50_F0YFQ2 Expressed protein 0.000356460470221 9.81636267971e-05 -0.000258296843424 +UniRef50_UPI0003AD8CD3 PREDICTED 5.69224233244e-05 3.83696408609e-05 -1.85527824635e-05 +UniRef50_C1KYW0 Peptide chain release factor 1 0.0103663097957 0.00647748035097 -0.00388882944473 +UniRef50_A8EQZ6 Phosphate ABC transporter, periplasmic phosphate binding protein 5.17540087729e-06 8.86415627443e-06 3.68875539714e-06 +UniRef50_UPI0004720687 hypothetical protein 7.73567847482e-05 0.000232758917577 0.000155402132829 +UniRef50_UPI000380DC03 hypothetical protein 8.88661127911e-06 2.17568984116e-05 1.28702871325e-05 +UniRef50_Q989X4 Mlr6247 protein 0.0137836325786 0.00206133706904 -0.0117222955096 +UniRef50_Q9RZ42 0.000407163231412 0.0589261063404 0.058518943109 +UniRef50_UPI0003646AAD alkaline phosphatase 7.55662202152e-06 1.78873493124e-06 -5.76788709028e-06 +UniRef50_Q9RZ45 0.000112338638698 0.023027951335 0.0229156126963 +UniRef50_Q9RZ47 0.000422007264252 0.0646013149426 0.0641793076783 +UniRef50_Q9RZ48 0.000304850160433 0.105786969309 0.105482119149 +UniRef50_Q6GIG7 Probable nitronate monooxygenase 0.017993146217 0.00150349809539 -0.0164896481216 +UniRef50_D5GYN2 Transcriptional regulator, repressor of sugar transport operon 0.00557419310884 0.0033112742603 -0.00226291884854 +UniRef50_P63946 4 hydroxy tetrahydrodipicolinate synthase 0.000141028389365 0.00659797121806 0.0064569428287 +UniRef50_D4GJL5 UPF0246 protein PANA_0658 3.26698352855e-05 4.33227891144e-05 1.06529538289e-05 +UniRef50_A0A021ZQ34 ThiC associated domain protein 2.42191359894e-05 9.92110420654e-05 7.4991906076e-05 +UniRef50_I6T523 0.00948815322503 0.00351216795452 -0.00597598527051 +UniRef50_UPI00037F2099 hypothetical protein 1.01779810248e-05 2.69185504356e-05 1.67405694108e-05 +UniRef50_UPI0002559CF1 sulfate ABC transporter ATPase 8.22121588816e-05 5.07888145943e-05 -3.14233442873e-05 +UniRef50_UPI0004768E22 hypothetical protein 3.74800787946e-06 0.000109851739266 0.000106103731387 +UniRef50_Q9PQU6 Methionine tRNA ligase 1.12830008144e-05 1.84705436418e-05 7.1875428274e-06 +UniRef50_B2N0Z3 Anaerobic dimethyl sulfoxide reductase chain A 0.00422868366749 0.00145920469569 -0.0027694789718 +UniRef50_C6DKE8 Altronate oxidoreductase 0.00261399181079 0.000351346461041 -0.00226264534975 +UniRef50_Q8CQJ8 Penicillin binding protein 4 0.00897662413118 0.00385433456954 -0.00512228956164 +UniRef50_Q4A044 Histidinol dehydrogenase 0.0154982370418 0.00280294191569 -0.0126952951261 +UniRef50_Z5YDT5 Replication initiator protein 3.54545398333e-05 5.43716860061e-06 -3.00173712327e-05 +UniRef50_V9FLN1 2.49543689114e-05 0.00101306417375 0.000988109804839 +UniRef50_Q2VP64 1.03828821597e-05 1.49398557018e-05 4.5569735421e-06 +UniRef50_A9M916 Modification methylase BabI 0.00647115852041 0.0024321683294 -0.00403899019101 +UniRef50_D2NA34 0.00962311234154 0.00313183120487 -0.00649128113667 +UniRef50_P06202 Periplasmic oligopeptide binding protein 0.00263512751505 0.000473095131148 -0.0021620323839 +UniRef50_UPI0002F32181 glycerophosphoryl diester phosphodiesterase 5.66175492305e-05 1.99639767635e-05 -3.6653572467e-05 +UniRef50_M9V9X8 6 phosphogluconolactonase 0.000608028606607 0.00640365433242 0.00579562572581 +UniRef50_D5BS61 RNA polymerase, sigma 28 subunit, FliA WhiG 0.00854063031988 0.00339406749657 -0.00514656282331 +UniRef50_UPI0003AD846F PREDICTED 8.6025359705e-05 5.17228213197e-05 -3.43025383853e-05 +UniRef50_I0C6W8 Staphylococcal accessory regulator 0.0114407131788 0.000810599740996 -0.0106301134378 +UniRef50_A6LWF3 Diguanylate cyclase phosphodiesterase 0.000340403280732 0.000704190322897 0.000363787042165 +UniRef50_UPI00041214C6 biotin attachment protein 3.34093086964e-05 2.91290404665e-05 -4.2802682299e-06 +UniRef50_D3E6A1 Respiratory nitrate reductase, gamma subunit 0.0174236468167 0.00751953314765 -0.00990411366905 +UniRef50_Q21JR5 3.98266638365e-05 4.05159521514e-05 6.892883149e-07 +UniRef50_A0JXX3 D alanine D alanine ligase 0.000335165084517 0.00511480524772 0.0047796401632 +UniRef50_UPI00035DE730 hypothetical protein 6.36899821103e-06 8.50295718001e-05 7.86605735891e-05 +UniRef50_B7KZS8 3.31451076911e-05 2.13681774328e-05 -1.17769302583e-05 +UniRef50_UPI000382DE8E MULTISPECIES 1.37744383511e-05 3.05569592427e-05 1.67825208916e-05 +UniRef50_UPI0000E116E2 two component LuxR family transcriptional regulator 1.53708360804e-05 2.47717924667e-05 9.4009563863e-06 +UniRef50_A4WNW4 Transposase, IS4 family 0.00165184404296 0.00124904543779 -0.00040279860517 +UniRef50_A1BF67 Bifunctional protein FolD 8.14143598766e-06 2.45187334144e-06 -5.68956264622e-06 +UniRef50_P0ABZ3 Flagellar motor switch protein FliG 0.00195196439836 0.000460048431843 -0.00149191596652 +UniRef50_N5AMH8 Diacetyl reductase [ acetoin forming] 0.00253194908843 0.00157730838189 -0.00095464070654 +UniRef50_F0YAY5 0.000248619208242 0.000146692105592 -0.00010192710265 +UniRef50_A6KXK3 3 oxoacyl [acyl carrier protein] synthase 3 3.85278219633e-05 0.00448236204553 0.00444383422357 +UniRef50_Q5NQ43 Adenylate kinase 0.000232169034401 0.000401798482461 0.00016962944806 +UniRef50_UPI00036D1E75 NADPH 9.33339050994e-06 8.20403086894e-05 7.27069181795e-05 +UniRef50_I0UU63 1.85710498861e-06 8.04980375673e-06 6.19269876812e-06 +UniRef50_Q5HQ74 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.0131044623867 0.00404670757669 -0.00905775481001 +UniRef50_D3DYQ8 Isoleucine tRNA ligase 0.00318713445573 0.000861884565147 -0.00232524989058 +UniRef50_UPI00046F3F36 hypothetical protein, partial 3.71511401727e-05 2.88384731921e-05 -8.3126669806e-06 +UniRef50_Q96528 Catalase 1 1.57921564784e-05 4.43056457471e-05 2.85134892687e-05 +UniRef50_K8DL52 Ribonuclease E 0.00940047039555 0.00110661535764 -0.00829385503791 +UniRef50_P30793 GTP cyclohydrolase 1 6.10870781631e-05 4.01977104534e-05 -2.08893677097e-05 +UniRef50_Q8X7L9 Tyrosine protein kinase wzc 0.00357717346774 0.000856916072981 -0.00272025739476 +UniRef50_UPI00036966F0 30S ribosomal protein S2 1.31022188669e-05 1.06063153197e-05 -2.4959035472e-06 +UniRef50_W1MMZ8 4.09490814421e-05 0.000152031729916 0.000111082648474 +UniRef50_UPI000377C983 phospholipase C 3.42781538902e-06 4.70761518805e-06 1.27979979903e-06 +UniRef50_P32151 0.00390592085378 0.000987483548604 -0.00291843730518 +UniRef50_B4D0M3 6.47122377157e-05 8.55227474138e-06 -5.61599629743e-05 +UniRef50_UPI0003B38626 hypothetical protein 4.94356569047e-06 0.000208644187816 0.000203700622126 +UniRef50_UPI00037E7CCD hypothetical protein 3.57962790692e-05 1.70328989228e-05 -1.87633801464e-05 +UniRef50_UPI0003B6D2EE diaminopimelate decarboxylase 4.77516726566e-06 0.000101277774783 9.65026075173e-05 +UniRef50_E3D189 Adhesin MafB2 0.000233016042498 0.00265727457858 0.00242425853608 +UniRef50_UPI0003B777B8 hypothetical protein, partial 0.00118780063651 0.000366858754132 -0.000820941882378 +UniRef50_V6F621 1.806542464e-05 5.71892126128e-05 3.91237879728e-05 +UniRef50_UPI0003F4A07E hypothetical protein TREMEDRAFT_69682 3.75365990922e-06 6.95035490164e-06 3.19669499242e-06 +UniRef50_UPI0004772D62 hypothetical protein 1.48847945658e-06 1.12413892046e-05 9.75290974802e-06 +UniRef50_P51973 Competence protein ComA 0.000222726908368 0.00396872555079 0.00374599864242 +UniRef50_R8HF68 5.78941968868e-06 0.00053050905124 0.000524719631551 +UniRef50_UPI00034D0998 hypothetical protein 7.2713593817e-06 1.34450908375e-05 6.1737314558e-06 +UniRef50_UPI000470E01F transposase 1.5289836662e-05 0.00266616597531 0.00265087613865 +UniRef50_R1CYW6 9.61288668513e-06 6.32065426698e-05 5.35936559847e-05 +UniRef50_UPI0004753801 5 hydroxyisourate hydrolase 3.89129792753e-05 4.80584334076e-05 9.1454541323e-06 +UniRef50_Q1QUQ7 Transcriptional regulator, LysR family 0.000216117932552 0.000296304386488 8.0186453936e-05 +UniRef50_UPI0002C376E7 6.25633958252e-05 6.15626849461e-05 -1.0007108791e-06 +UniRef50_UPI00037266A5 MULTISPECIES 9.43123630514e-06 7.26291881117e-06 -2.16831749397e-06 +UniRef50_A5ISN2 7.45947997873e-05 0.000139850305379 6.52555055917e-05 +UniRef50_I4API8 Mg chelatase subunit ChlI 1.35185705489e-05 8.69719154025e-05 7.34533448536e-05 +UniRef50_X6KUI6 8.33995770377e-06 6.16099870099e-05 5.32700293061e-05 +UniRef50_Q849Z0 0.00368411555032 0.000773755559468 -0.00291035999085 +UniRef50_G6A195 4.10657088035e-05 6.18016290057e-05 2.07359202022e-05 +UniRef50_P46331 0.0316653564599 0.00671076062587 -0.024954595834 +UniRef50_B6JCL5 0.000732697442754 0.00606678126014 0.00533408381739 +UniRef50_F0P804 0.0236306598737 0.00176527747472 -0.021865382399 +UniRef50_W1YTI2 0.000170649850073 0.00255650819785 0.00238585834778 +UniRef50_P77279 Probable iron export ATP binding protein FetA 0.00380299104152 0.00168416334469 -0.00211882769683 +UniRef50_A3CKQ0 Malate permease, putative 0.00501887956223 0.00258908036465 -0.00242979919758 +UniRef50_UPI000288D813 hypothetical protein 0.000617162498962 7.29966006614e-05 -0.000544165898301 +UniRef50_Q03LK9 ABC type amino acid transport system, permease component 0.00616350332049 0.00210814387477 -0.00405535944572 +UniRef50_D5ASM5 Type I secretion membrane fusion protein, HlyD family 0.00591531589236 0.00204698684809 -0.00386832904427 +UniRef50_B8ZUE2 GMP synthase [glutamine hydrolyzing] 2.45355627173e-05 4.57355168031e-05 2.11999540858e-05 +UniRef50_A0PZM2 4 hydroxy tetrahydrodipicolinate reductase 0.000354802524375 0.00141187269415 0.00105707016978 +UniRef50_UPI0004207E45 hypothetical protein 2.55505842038e-05 3.44103333913e-05 8.8597491875e-06 +UniRef50_G5JDC1 1.84699267914e-05 6.09773218817e-05 4.25073950903e-05 +UniRef50_H8HKL3 Acyl CoA dehydrogenase FadE23 0.000794684292609 0.000155021892496 -0.000639662400113 +UniRef50_UPI00022CA85D PREDICTED 6.28874870626e-07 1.61546926491e-05 1.55258177785e-05 +UniRef50_UPI00016C57C9 lysyl tRNA synthetase 4.16065734123e-06 5.25286073023e-06 1.092203389e-06 +UniRef50_P30852 Protein smf 0.00337566204641 0.000936140724188 -0.00243952132222 +UniRef50_UPI0003A4112D cell division protein FtsZ 8.83313311464e-06 2.68003637158e-05 1.79672306012e-05 +UniRef50_A9WLY4 Cysteine tRNA ligase 4.58947098707e-06 1.20296299373e-05 7.44015895023e-06 +UniRef50_UPI00037650D9 hypothetical protein 2.33189679708e-05 6.42410066233e-05 4.09220386525e-05 +UniRef50_UPI0003C1696D PREDICTED 1.13142446051e-05 7.8544689614e-06 -3.4597756437e-06 +UniRef50_Q9RZG7 Transposase related 4.24739620612e-05 0.0427974200824 0.0427549461203 +UniRef50_UPI0004726E09 porin 3.84824649493e-05 1.19311906733e-05 -2.6551274276e-05 +UniRef50_J6J4P6 0.000119667036976 0.000115029588815 -4.637448161e-06 +UniRef50_UPI0004785436 acetolactate synthase 9.32716781195e-06 0.000359678666412 0.0003503514986 +UniRef50_A0A058ZLV2 Tim44 family protein 0.000380360437791 0.000275996920751 -0.00010436351704 +UniRef50_C5QYU7 0.000605275665785 5.86226139851e-05 -0.0005466530518 +UniRef50_M9KGL8 Alpha beta hydrolase family protein 0.00104451415198 0.00031754484429 -0.00072696930769 +UniRef50_L0WM00 NAD+ synthetase 0.000209717802518 0.00604869661018 0.00583897880766 +UniRef50_UPI000314C40B hypothetical protein 3.05130591452e-05 4.03205846823e-05 9.8075255371e-06 +UniRef50_Q89FG2 Coenzyme PQQ synthesis protein D 0.000642670136543 0.000444167895145 -0.000198502241398 +UniRef50_U6JTT0 Beta tubulin cofactor d, putative 3.2491915743e-05 5.28149452811e-05 2.03230295381e-05 +UniRef50_UPI0003492D90 MULTISPECIES 6.50377774349e-05 0.00404964141828 0.00398460364085 +UniRef50_Q57975 Putative aminopeptidase MJ0555 0.00303179156342 0.00167118666206 -0.00136060490136 +UniRef50_E3GPG2 Phage prohead protease 0.000383234506454 0.000377803887234 -5.43061922e-06 +UniRef50_I6TPD4 MutE 0.00321702208702 0.000237202172853 -0.00297981991417 +UniRef50_UPI00047CC989 magnesium transporter 0.000487292539311 1.75671358437e-05 -0.000469725403467 +UniRef50_UPI0003ACFD18 hypothetical protein 1.03578613843e-05 0.00198407323305 0.00197371537167 +UniRef50_UPI0001FFE023 cation diffusion facilitator family transporter 7.76395698985e-06 4.17724681257e-05 3.40085111358e-05 +UniRef50_V7ABJ2 Branched chain amino acid transport family protein 3.46912113766e-05 4.02368333017e-05 5.5456219251e-06 +UniRef50_W4UL00 Secreted lipoprotein 0.000130802481382 0.000266654366494 0.000135851885112 +UniRef50_Q9ZMN9 Fumarate reductase cytochrome b subunit 0.00014803372112 0.0100900560791 0.00994202235798 +UniRef50_A0A023Z2T1 0.000147795082047 3.95512644243e-05 -0.000108243817623 +UniRef50_P30744 L serine dehydratase 2 0.00710356582203 0.00275965049683 -0.0043439153252 +UniRef50_Q30T29 Phosphoheptose isomerase 8.86768145148e-06 1.22836990791e-05 3.41601762762e-06 +UniRef50_UPI0002492490 L serine ammonia lyase beta subunit, partial 1.41727946985e-05 0.00017206634699 0.000157893552292 +UniRef50_P33650 Ferrous iron transport protein B 0.00484834336017 0.00258321166408 -0.00226513169609 +UniRef50_Q98IW6 Mll2216 protein 0.00546588430334 0.00200304344281 -0.00346284086053 +UniRef50_Q8TYM1 Putative citramalate synthase CimA 0.00746579313362 0.00129361766876 -0.00617217546486 +UniRef50_G3NJA9 3.40925183228e-06 2.53102228199e-06 -8.7822955029e-07 +UniRef50_UPI0001744894 3 phosphoglycerate dehydrogenase 6.1305383263e-06 5.656835945e-06 -4.737023813e-07 +UniRef50_T4EWY4 DEAD DEAH box helicase family protein 0.000744974825181 0.00187169854179 0.00112672371661 +UniRef50_UPI00035CD489 hypothetical protein 5.82240599793e-05 7.05673848386e-05 1.23433248593e-05 +UniRef50_B1ZP50 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.13182010803e-06 9.64575321409e-06 2.51393310606e-06 +UniRef50_A7X235 N anthranilate isomerase 0.00981547052031 0.000558078812965 -0.00925739170734 +UniRef50_Q6MMY0 Lipoprotein releasing system ATP binding protein LolD 3.65080841992e-05 3.74812467634e-05 9.731625642e-07 +UniRef50_U5MQT2 Diguanylate cyclase 0.000206743710026 0.00164873069431 0.00144198698428 +UniRef50_A5D504 N acetyl gamma glutamyl phosphate reductase 1.98480593853e-05 2.86938491005e-05 8.8457897152e-06 +UniRef50_UPI00036A45EE hypothetical protein, partial 1.06528225414e-05 1.30048508318e-05 2.3520282904e-06 +UniRef50_A1VBW6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 7.75530083221e-06 6.1755188245e-06 -1.57978200771e-06 +UniRef50_UPI0003A8F6AB hypothetical protein 7.57235631324e-06 0.000196647594516 0.000189075238203 +UniRef50_K0R3E3 2.41131458509e-05 5.64515405483e-05 3.23383946974e-05 +UniRef50_Q5LQ58 Translation initiation factor IF 3 0.0122617240416 0.00339701217924 -0.00886471186236 +UniRef50_UPI00037C5039 hypothetical protein 2.9457026203e-06 0.000239746868444 0.000236801165824 +UniRef50_A6LSJ0 0.000317869054209 0.000754609631724 0.000436740577515 +UniRef50_Q4MH05 6.26394460399e-06 9.75656280464e-06 3.49261820065e-06 +UniRef50_A3M6B4 0.000240948503526 0.0043275868743 0.00408663837077 +UniRef50_R0FJ43 0.000123938716906 6.99342745911e-05 -5.40044423149e-05 +UniRef50_P57371 DNA topoisomerase 1 1.80109174903e-06 4.83483665009e-06 3.03374490106e-06 +UniRef50_A3M6B3 0.000306558539943 0.00575762125619 0.00545106271625 +UniRef50_A3M6B2 0.000340909339201 0.009609108098 0.0092681987588 +UniRef50_P37469 Replicative DNA helicase 0.0357807243797 0.0153279110926 -0.0204528132871 +UniRef50_O06851 Valine tRNA ligase 8.23660122089e-06 4.17019627095e-06 -4.06640494994e-06 +UniRef50_UPI00036C4ADF hypothetical protein 2.73986679984e-06 1.34524004575e-05 1.07125336577e-05 +UniRef50_G7DHM9 3.06513214593e-05 8.03486007643e-05 4.9697279305e-05 +UniRef50_UPI0003B33000 ABC transporter ATP binding protein, partial 0.000182507419585 3.38468337329e-05 -0.000148660585852 +UniRef50_UPI0002198415 LysR family transcriptional regulator 0.000175734877293 9.31124003574e-05 -8.26224769356e-05 +UniRef50_F2DNI7 Predicted protein 2.45002123398e-05 4.0497043141e-05 1.59968308012e-05 +UniRef50_J4Q6B5 IS1167, transposase domain protein 0.000123310242767 0.00045254477494 0.000329234532173 +UniRef50_P67641 UPF0735 ACT domain containing protein SA1469 0.0115389244963 0.00164478861935 -0.00989413587695 +UniRef50_A6LZA0 0.00101532567238 0.000943374700462 -7.1950971918e-05 +UniRef50_Q6F925 0.000364136273772 0.00777325857487 0.0074091223011 +UniRef50_Q1RJH2 ATP dependent Clp protease proteolytic subunit 0.000854434721756 0.00108135758837 0.000226922866614 +UniRef50_G7LZU7 GerA spore germination protein 0.000191503915899 0.00141084126532 0.00121933734942 +UniRef50_A5UP49 0.00240771727614 0.000352968173539 -0.0020547491026 +UniRef50_A3PFM0 0.00217100033568 0.000870005657286 -0.00130099467839 +UniRef50_Q1RB71 0.000667297812554 0.000494944198654 -0.0001723536139 +UniRef50_Q4L5M1 Antibacterial protein 3 homolog 0.0447548604793 0.0055611587342 -0.0391937017451 +UniRef50_U9FRQ4 0.000177353468843 0.000568300433186 0.000390946964343 +UniRef50_P37017 0.00433974174284 0.00046506567747 -0.00387467606537 +UniRef50_UPI0003B51420 ABC transporter ATP binding protein 4.11567404632e-05 9.38442180989e-05 5.26874776357e-05 +UniRef50_UPI000378DF42 hypothetical protein 2.39148461759e-05 0.000152830941635 0.000128916095459 +UniRef50_T1XUW5 0.00829449092945 0.000646094215422 -0.00764839671403 +UniRef50_P13039 Enterochelin esterase 0.00237586305733 0.000589362993517 -0.00178650006381 +UniRef50_K0CJ28 Quinohemoprotein alcohol dehydrogenase protein 3.93425988461e-05 2.31084507864e-05 -1.62341480597e-05 +UniRef50_UPI0003611858 hypothetical protein 1.38014475868e-05 2.1490762647e-05 7.6893150602e-06 +UniRef50_UPI00047763D0 metal ABC transporter permease 1.22558446742e-05 5.9920730456e-05 4.76648857818e-05 +UniRef50_D1GS39 MarR family regulatory protein 0.0135348964404 0.00172631129432 -0.0118085851461 +UniRef50_UPI0003594BA5 PREDICTED 3.764625998e-06 0.000177190023117 0.000173425397119 +UniRef50_Q8E035 0.00147511760958 1.25154072652e-05 -0.00146260220231 +UniRef50_UPI0003F5F292 hypothetical protein 9.95347504138e-05 3.77728152675e-05 -6.17619351463e-05 +UniRef50_R9ZBZ3 0.00257203727339 0.000392882534625 -0.00217915473877 +UniRef50_R5RCP3 7.80426296949e-06 0.00245722545362 0.00244942119065 +UniRef50_UPI00037F2711 hypothetical protein, partial 0.000172327325745 9.69205256492e-05 -7.54068000958e-05 +UniRef50_E5ASL7 Folylpolyglutamate synthase Dihydrofolate synthase (EC 6.3.2.12) 0.000140503469798 0.00222540170714 0.00208489823734 +UniRef50_B9EUD8 4.60777015226e-05 6.01668163898e-05 1.40891148672e-05 +UniRef50_Q3J1Y6 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.0046125438215 0.00085041605354 -0.00376212776796 +UniRef50_Q92405 Catalase B 1.7444891636e-05 3.26536838345e-05 1.52087921985e-05 +UniRef50_UPI00017448C8 DEAD DEAH box helicase like protein 2.51440941243e-06 4.45530808413e-05 4.20386714289e-05 +UniRef50_U7DNX2 TonB denpendent receptor 0.00080300629774 0.00139593103838 0.00059292474064 +UniRef50_A5ULE5 Predicted transcriptional regulator 0.00298974039677 0.000932671573616 -0.00205706882315 +UniRef50_UPI00036B87E5 hypothetical protein 2.48173530599e-05 5.69929680531e-06 -1.91180562546e-05 +UniRef50_S1T170 0.000707786229098 0.00105470251856 0.000346916289462 +UniRef50_Q5H1A4 Transposase 2.96078588798e-05 3.162297817e-05 2.0151192902e-06 +UniRef50_F0Y5C9 Expressed protein 3.78430977197e-05 6.47928182961e-06 -3.13638158901e-05 +UniRef50_U3TBQ8 0.000501222343795 0.00604316250271 0.00554194015891 +UniRef50_Q2FEJ8 HTH type transcriptional regulator SarR 0.00379722229942 0.000518099482802 -0.00327912281662 +UniRef50_I7FYE4 Ethanolamine permease 0.00146219713943 0.00718500312068 0.00572280598125 +UniRef50_UPI0002628848 short chain dehydrogenase 3.39459896091e-05 3.27535609423e-05 -1.1924286668e-06 +UniRef50_P39369 0.00214852658782 0.000192388733031 -0.00195613785479 +UniRef50_Q8AA15 Phosphomethylpyrimidine synthase 3.21008279185e-06 0.00355795151387 0.00355474143108 +UniRef50_UPI0003B3A510 MULTISPECIES 2.84976823295e-06 4.23871893089e-06 1.38895069794e-06 +UniRef50_UPI00029B3B69 guanosine 3,5 bis 3 pyrophosphohydrolase 8.4290072563e-06 1.0529428068e-05 2.1004208117e-06 +UniRef50_Q5HQL5 Na H(+) antiporter subunit F1 0.000892475465054 0.000619545535373 -0.000272929929681 +UniRef50_P27127 Lipopolysaccharide 1,6 galactosyltransferase 0.00272732606936 0.00135527202931 -0.00137205404005 +UniRef50_UPI000465DD48 hypothetical protein 5.81972756272e-05 3.25791709824e-05 -2.56181046448e-05 +UniRef50_Q880Z2 Xylose import ATP binding protein XylG 0.00265430499479 0.00135704457577 -0.00129726041902 +UniRef50_I2AGX0 3.71566219601e-07 2.94793120608e-05 2.91077458412e-05 +UniRef50_R6VPX6 Lipoprotein 6.15535587085e-06 8.91776410593e-06 2.76240823508e-06 +UniRef50_P23145 Probable serine acetyltransferase 1.05163317766e-05 2.91954482395e-05 1.86791164629e-05 +UniRef50_V0UHK4 0.000468558664494 0.000314243077726 -0.000154315586768 +UniRef50_Q6W109 Tartrate dehydrogenase 0.00170101345321 0.000354720933048 -0.00134629252016 +UniRef50_D6AP01 0.000154888062119 0.00226360138587 0.00210871332375 +UniRef50_UPI00037CB222 hypothetical protein 1.90285388738e-05 6.20098372411e-06 -1.28275551497e-05 +UniRef50_G8VN68 Glycosyl hydrolase, alpha L fucosidase 0.000117353157162 0.00673428716931 0.00661693401215 +UniRef50_B9KTR8 Methyl accepting chemotaxis sensory transducer 0.00217916152551 0.00114027634466 -0.00103888518085 +UniRef50_V5PNN3 Hydrogenase expression protein HypA 0.000241094453622 0.000113858597291 -0.000127235856331 +UniRef50_UPI000382E44E hypothetical protein 0.000120266319339 6.11381107711e-05 -5.91282085679e-05 +UniRef50_UPI0002E512FA hypothetical protein 4.3628165463e-06 2.41442461632e-05 1.97814296169e-05 +UniRef50_R5MTV1 0.000127908898271 4.15301014282e-05 -8.63787968428e-05 +UniRef50_K7SJY0 CoA substrate specific enzyme activase 0.00016310900447 0.00729524248233 0.00713213347786 +UniRef50_R0FCW6 Replication initiation protein RepC 0.00010345292094 9.16161395486e-05 -1.18367813914e-05 +UniRef50_Q8DGX5 Phosphoribosylformylglycinamidine synthase 1 0.00056316983505 0.00344103592028 0.00287786608523 +UniRef50_R9ZNN5 Potassium transporter 0.000620973006857 0.000541392002198 -7.9581004659e-05 +UniRef50_UPI0003826E10 hypothetical protein 5.07272350452e-05 3.11447431836e-05 -1.95824918616e-05 +UniRef50_G7UAA4 Arginine ornithine antiporter ArcD 0.000281143086592 0.00584692481287 0.00556578172628 +UniRef50_H6CP54 2.5234562726e-05 0.000219001613913 0.000193767051187 +UniRef50_V9WDP4 MmoB DmpM family 0.0269938026983 0.00193650298488 -0.0250572997134 +UniRef50_M1N619 0.000310929842145 0.000677602912104 0.000366673069959 +UniRef50_U3T2N9 0.00025679318969 0.0100075998265 0.00975080663681 +UniRef50_B9DTE1 Major Facilitator Superfamily protein 0.00284323173286 0.00223738178969 -0.00060584994317 +UniRef50_UPI0002F7BEAC hypothetical protein 4.06232226189e-05 3.25400368825e-05 -8.0831857364e-06 +UniRef50_W5X9K0 Cell division protein FtsZ 6.12669530755e-06 4.9238376607e-05 4.31116812994e-05 +UniRef50_UPI0003A0AA3D hypothetical protein 3.8664232652e-05 5.25722333465e-05 1.39080006945e-05 +UniRef50_A0A059IQN5 Membrane protein 0.000400915743948 9.56182631268e-05 -0.000305297480821 +UniRef50_UPI00046FD731 hypothetical protein 4.08283930411e-05 4.06886571585e-05 -1.397358826e-07 +UniRef50_U6GJB3 JmjC domain containing protein, putative 7.46977592644e-06 6.31130753047e-06 -1.15846839597e-06 +UniRef50_A1S9I7 NAD transhydrogenase subunit beta 0.000937149678997 0.000255053168034 -0.000682096510963 +UniRef50_UPI00039D9A64 membrane protein 6.63058500514e-06 6.23931291176e-05 5.57625441125e-05 +UniRef50_P38035 Transcriptional regulatory protein RtcR 0.00335469576323 0.0021477832089 -0.00120691255433 +UniRef50_D3E234 0.00380484586612 0.000412143602128 -0.00339270226399 +UniRef50_E8SEX9 Staphylococcal secretory antigen SssA 0.0408122742115 0.00230393477294 -0.0385083394386 +UniRef50_M9Y2Q0 TonB dependent vitamin B12 receptor 0.000603120245989 0.000615595322767 1.2475076778e-05 +UniRef50_UPI00047539FF orotate phosphoribosyltransferase 1.45468308428e-05 6.61549051494e-05 5.16080743066e-05 +UniRef50_P77315 Probable ABC transporter permease protein YphD 0.00617959944311 0.000466412197916 -0.00571318724519 +UniRef50_G7M256 Sporulation protein YtaF 0.00118542081731 0.000824171855499 -0.000361248961811 +UniRef50_UPI00046F04B8 hypothetical protein 2.28849750511e-05 2.86256406163e-05 5.7406655652e-06 +UniRef50_T2ES40 0.0025124520616 0.00244436066334 -6.809139826e-05 +UniRef50_P39587 Putative ribosomal RNA large subunit methyltransferase YwbD 0.00068702086705 0.00159597290482 0.00090895203777 +UniRef50_A0K5P1 Transcriptional regulator, AsnC family 0.000385189784541 0.00590865577611 0.00552346599157 +UniRef50_N1ZJ21 0.000185625772682 2.89417166979e-05 -0.000156684055984 +UniRef50_UPI00046FF2AA succinate dehydrogenase 4.89300748618e-05 0.000246128671611 0.000197198596749 +UniRef50_Q2W2A3 Holliday junction ATP dependent DNA helicase RuvA 1.37218555191e-05 9.18956109002e-05 7.81737553811e-05 +UniRef50_N6V8V2 0.000244293122551 5.67115135731e-06 -0.000238621971194 +UniRef50_A3N3J7 0.00604427909286 0.00109306460701 -0.00495121448585 +UniRef50_Q887Q2 Alginate production protein AlgE 0.000879124192724 0.000654847976765 -0.000224276215959 +UniRef50_UPI000470382C response regulator receiver protein 6.37036480469e-06 1.03172366365e-05 3.94687183181e-06 +UniRef50_P38102 0.000923453859705 0.000546882787401 -0.000376571072304 +UniRef50_Q9V1I6 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 1.15087897063e-05 0.0001878060782 0.000176297288494 +UniRef50_Q8U194 Sulfide dehydrogenase subunit beta 0.000385189784541 0.00290510485719 0.00251991507265 +UniRef50_A6LU85 0.000159276788545 0.000997249908705 0.00083797312016 +UniRef50_UPI00046CF004 hypothetical protein 0.000239272284566 0.000422767932055 0.000183495647489 +UniRef50_Q9HYB8 Electron transport complex subunit C 0.000171454993011 0.000181037355936 9.582362925e-06 +UniRef50_Q0BUN4 50S ribosomal protein L18 0.0247471780619 0.0334628826732 0.0087157046113 +UniRef50_UPI00037ECE30 hypothetical protein 4.49136837305e-06 2.33473111236e-05 1.88559427505e-05 +UniRef50_F3P4A4 Periplasmic binding protein 1.73250918181e-05 0.000172117081508 0.00015479198969 +UniRef50_UPI0003B4D558 prephenate dehydrogenase 6.12548668045e-06 0.000160025556704 0.000153900070024 +UniRef50_UPI0003B57E0D flagellar biosynthesis protein FlhB 0.00148152817125 0.000149109227168 -0.00133241894408 +UniRef50_Q51785 Acyl homoserine lactone synthase 7.89655009476e-06 1.24788372467e-05 4.58228715194e-06 +UniRef50_UPI00041DC25F hypothetical protein 0.000232053498718 1.05508851951e-05 -0.000221502613523 +UniRef50_U6I036 GTP cyclohydrolase I 4.48072804713e-06 2.53531234127e-05 2.08723953656e-05 +UniRef50_A0A017HMU3 0.000247598948413 3.3257838468e-05 -0.000214341109945 +UniRef50_E8TGI4 0.000221131563735 8.42079373926e-05 -0.000136923626342 +UniRef50_P60776 Lipoate protein ligase A 0.00169835670208 0.00135518716045 -0.00034316954163 +UniRef50_F5LYA2 Glycosyltransferase 0.00304725544523 0.000374237548822 -0.00267301789641 +UniRef50_A0RAL4 Serine protein kinase RsbW 5.95003560074e-05 0.000784026650967 0.00072452629496 +UniRef50_K7S7B4 Phosphoribosylformylglycinamidine synthase 2 5.0309105574e-05 0.00531814190361 0.00526783279804 +UniRef50_UPI0004767068 PTS lactose transporter subunit IIC 1.60778100086e-05 2.96049888157e-05 1.35271788071e-05 +UniRef50_D5VBA0 Ribosomal RNA small subunit methyltransferase E 0.000364134394391 0.00720391378882 0.00683977939443 +UniRef50_E8U946 Methylenetetrahydrofolate reductase 0.000163413847988 0.0365775115942 0.0364140977462 +UniRef50_UPI00046A6655 hypothetical protein 0.000138059236055 1.24872035394e-05 -0.000125572032516 +UniRef50_F0KGP8 LysR family transcriptional regulatory protein 0.000204784442414 0.00498413998453 0.00477935554212 +UniRef50_UPI0003B71411 ACP S malonyltransferase 6.92181816722e-06 5.1773911405e-05 4.48520932378e-05 +UniRef50_A5UJE7 Purine NTPase involved in DNA repair, Rad50 0.00263412409884 0.000198128296286 -0.00243599580255 +UniRef50_Q9RWR2 Acetyltransferase, putative 0.000200790419604 0.0342045220262 0.0340037316066 +UniRef50_C9XDD0 Inner membrane protein 9.86698803626e-05 0.000231198450901 0.000132528570538 +UniRef50_W7D2J3 2.35661539424e-05 1.98257365628e-05 -3.7404173796e-06 +UniRef50_I6WPK4 6.89775913169e-06 4.20201076087e-05 3.5122348477e-05 +UniRef50_U4V0C7 0.00138119634243 0.000173630741616 -0.00120756560081 +UniRef50_P65931 Uridylate kinase 0.000334343474711 0.00350478851296 0.00317044503825 +UniRef50_UPI00036A819E hypothetical protein 5.65976369844e-05 2.09121798119e-05 -3.56854571725e-05 +UniRef50_UPI000362D7F9 hypothetical protein 3.06172837477e-05 5.37536964289e-05 2.31364126812e-05 +UniRef50_A8LNR0 Sulphur oxidation protein SoxZ 0.00390237519106 0.000354380046235 -0.00354799514483 +UniRef50_UPI00046EDA6C transcriptional regulator, partial 0.000114707433721 5.87684088776e-05 -5.59390248434e-05 +UniRef50_V5SCF0 Membrane protein 8.34476107634e-05 2.6013900004e-05 -5.74337107594e-05 +UniRef50_A3M2C8 DNA mismatch repair enzyme 0.000183875238476 0.00800986208095 0.00782598684247 +UniRef50_F4FMG8 Sulfite reductase flavoprotein alpha component 0.0105496624651 0.00218041066354 -0.00836925180156 +UniRef50_UPI00046D0275 hypothetical protein 0.00100020642563 5.16566032464e-05 -0.000948549822384 +UniRef50_A6LRC8 Transposase IS116 IS110 IS902 family protein 0.000549226401503 0.00298314804689 0.00243392164539 +UniRef50_UPI000462DF28 MFS transporter 2.80833750738e-06 4.10054593824e-06 1.29220843086e-06 +UniRef50_UPI000470E3CB hypothetical protein 1.33367713526e-05 0.000387527993931 0.000374191222578 +UniRef50_UPI0004725AED hypothetical protein 7.57633848617e-05 1.43512803772e-05 -6.14121044845e-05 +UniRef50_O27587 0.00314919061744 0.000211949788416 -0.00293724082902 +UniRef50_UPI0003482043 hypothetical protein 5.46699181681e-06 7.87409872776e-06 2.40710691095e-06 +UniRef50_A7X3Z2 Monofunctional glycosyltransferase 0.0228572298249 0.00227744200029 -0.0205797878246 +UniRef50_UPI0003752A98 hypothetical protein 4.67634041306e-05 8.31317115757e-06 -3.8450232973e-05 +UniRef50_A3N1B7 Beta hexosaminidase 0.00438465495445 0.00116152897987 -0.00322312597458 +UniRef50_UPI000255F2C8 serine threonine protein phosphatase 6.60008505831e-06 1.03548995631e-05 3.75481450479e-06 +UniRef50_J0JV07 0.00079192864794 0.00128026355953 0.00048833491159 +UniRef50_Q6A5V6 Calcineurin like phosphoesterase 0.000124857548682 0.00476534631565 0.00464048876697 +UniRef50_Q9F9J0 Hypothetical CdoFa 1.76551519923e-05 9.62905337337e-06 -8.02609861893e-06 +UniRef50_E6WRK7 Inner membrane translocator 0.000589003532625 0.00280448592793 0.00221548239531 +UniRef50_Q19842 Propionyl CoA carboxylase alpha chain, mitochondrial 8.15356107921e-06 3.56917699729e-06 -4.58438408192e-06 +UniRef50_P77460 0.00212527261898 0.000564580020288 -0.00156069259869 +UniRef50_A0A023S045 Metallophosphatase 0.000146312398781 0.00537499734598 0.0052286849472 +UniRef50_D3QDA3 Peptidase, M16 family 0.015992610221 0.00437260005116 -0.0116200101698 +UniRef50_F9JXI9 Conserved domain protein 0.000153034860351 0.000132619833392 -2.0415026959e-05 +UniRef50_U6KFK3 Nuclease, putative 2.82437032181e-05 8.27191359472e-06 -1.99717896234e-05 +UniRef50_G9E8D1 Protein fecR 5.44109810878e-06 9.39606500707e-06 3.95496689829e-06 +UniRef50_UPI0002629810 hypothetical protein 0.0011779168355 0.00011827770915 -0.00105963912635 +UniRef50_N0B0K5 ATP dependent RNA helicase 2.87284742054e-06 0.000920987257213 0.000918114409792 +UniRef50_Q8CSL7 Signal transduction histidine protein kinase ArlS 0.0160604993807 0.00233487249357 -0.0137256268871 +UniRef50_Q3IV94 0.0370096748735 0.00147525559777 -0.0355344192757 +UniRef50_Q3IV95 0.0112488780811 0.00082750872119 -0.0104213693599 +UniRef50_Q3IV96 0.00988995503002 0.00448860384084 -0.00540135118918 +UniRef50_Q3IUU5 0.0194068654384 0.00551817604994 -0.0138886893885 +UniRef50_Q3IV90 0.0139038845912 0.00310057298992 -0.0108033116013 +UniRef50_Q3IV91 0.0155931747404 0.00147055964764 -0.0141226150928 +UniRef50_Q3IV92 0.0161697855904 0.00556637989482 -0.0106034056956 +UniRef50_UPI000360ED21 hypothetical protein 1.03979873937e-05 0.000235370940222 0.000224972952828 +UniRef50_J9NYT9 2.01122576501e-05 2.98616720242e-05 9.7494143741e-06 +UniRef50_M9RZ09 0.00117094380385 0.000565073685071 -0.000605870118779 +UniRef50_A7HTG1 1.67622854285e-05 8.23756394436e-06 -8.52472148414e-06 +UniRef50_Q3JGL0 0.000159726088367 0.000177244726568 1.7518638201e-05 +UniRef50_UPI00046F01F9 mannose 1 phosphate guanylyltransferase, partial 1.21575643888e-05 3.80569748721e-06 -8.35186690159e-06 +UniRef50_W5YSI9 7.17075152151e-05 6.00101630625e-05 -1.16973521526e-05 +UniRef50_Q3IUU4 0.0308839586523 0.00552509204126 -0.025358866611 +UniRef50_I0EQF7 0.000209326796037 0.00242766685714 0.0022183400611 +UniRef50_UPI00047690D0 LuxR family transcriptional regulator 4.18502968937e-05 1.20592782225e-05 -2.97910186712e-05 +UniRef50_UPI0003B652E5 surfeit locus 1 family protein 1.37548737128e-05 2.31637537949e-05 9.4088800821e-06 +UniRef50_Q9KKL3 Chemotaxis protein methyltransferase 3 3.75800678458e-05 2.4541978566e-05 -1.30380892798e-05 +UniRef50_D3QHI5 0.0104129599782 0.000738468952486 -0.00967449102571 +UniRef50_S1T9V9 Thiamine monophosphate kinase 0.000118706285809 0.00377699243766 0.00365828615185 +UniRef50_P40320-2 Isoform 1 of S adenosylmethionine synthase 0.000118467254157 0.000695544544856 0.000577077290699 +UniRef50_Q28VX1 Sigma 54 modulation protein SSU ribosomal protein S30P 0.0214224240428 0.00216892028786 -0.0192535037549 +UniRef50_D3QHI9 0.000836690289677 0.000301856938874 -0.000534833350803 +UniRef50_P0A207 Ethanolamine utilization protein EutJ 0.00408048864205 0.000460695907647 -0.0036197927344 +UniRef50_Q1GW94 0.000124306770898 2.95427824485e-05 -9.47639884495e-05 +UniRef50_Q5ZY26 Phosphopantetheine adenylyltransferase 0.00152142799879 2.6391295971e-05 -0.00149503670282 +UniRef50_F0Y7E7 Expressed protein 6.70507188771e-05 0.000107408979818 4.03582609409e-05 +UniRef50_Q0VKW4 Ribosomal RNA small subunit methyltransferase G 4.88214887221e-05 5.19645839234e-05 3.1430952013e-06 +UniRef50_Q89B37 DNA gyrase subunit B 9.20540963452e-06 9.44319409802e-06 2.377844635e-07 +UniRef50_P50487 Putative purine permease CPE0397 0.000326315189428 0.000288318177648 -3.799701178e-05 +UniRef50_J4UL42 2.82391045668e-05 9.43244768258e-06 -1.88066568842e-05 +UniRef50_M1NX79 0.000315920730615 5.95899378392e-05 -0.000256330792776 +UniRef50_G0DX90 Phosphatidylglycerophosphate synthase 0.000826611654421 0.00675323241645 0.00592662076203 +UniRef50_Q2LR47 UDP N acetylmuramate L alanine ligase 1.43271045874e-05 1.1739787512e-05 -2.5873170754e-06 +UniRef50_A3VYM7 0.000349405195303 5.41937599002e-05 -0.000295211435403 +UniRef50_Q02MT4 0.000486033462046 0.000220534945056 -0.00026549851699 +UniRef50_Q5FIJ4 Elongation factor P 1 0.00443493513201 0.00772919344222 0.00329425831021 +UniRef50_E8N7U3 Predicted Fe S cluster redox enzyme 5.35147200718e-05 0.00407351189508 0.00401999717501 +UniRef50_D5AV34 Nonfunctional major facilitator superfamily MFS_1 0.00235969418882 0.000171695758841 -0.00218799842998 +UniRef50_Q5LYI8 Tryptophan synthase alpha chain 0.00582126078289 0.00327378881762 -0.00254747196527 +UniRef50_Q9RX01 0.00277034584862 0.0105613099768 0.00779096412818 +UniRef50_UPI00047A3CEB hypothetical protein 1.21903402477e-05 8.17833940707e-05 6.9593053823e-05 +UniRef50_Q65PC9 Serine acetyltransferase 1.40131692896e-05 0.00032679217514 0.00031277900585 +UniRef50_UPI0004794B50 hypothetical protein 1.11601934714e-05 4.28297592572e-05 3.16695657858e-05 +UniRef50_Q9K7H6 Probable adenylyl sulfate kinase 9.6030805051e-06 1.95447941974e-05 9.9417136923e-06 +UniRef50_C0MBU0 50S ribosomal protein L11 0.000857922701941 0.00595638778275 0.00509846508081 +UniRef50_UPI000410106E beta methylgalactoside transporter permease 1.16327288619e-05 8.6837129716e-06 -2.9490158903e-06 +UniRef50_Q8R966 Triosephosphate isomerase 1.89462706947e-05 9.97992648351e-05 8.08529941404e-05 +UniRef50_Q1MYB0 5.44821279861e-06 4.98484350879e-05 4.44002222893e-05 +UniRef50_R5H1H3 Zinc finger protein 0.000524286095625 0.000666127906449 0.000141841810824 +UniRef50_UPI0003AD21EA hypothetical protein 1.01122332671e-05 0.000164600439767 0.0001544882065 +UniRef50_B9ADZ7 0.00090223612652 0.000492194508663 -0.000410041617857 +UniRef50_P38684 TorCAD operon transcriptional regulatory protein TorR 0.00120003583557 0.00141739270752 0.00021735687195 +UniRef50_R1CDN5 2.22440303416e-05 1.9711579268e-05 -2.5324510736e-06 +UniRef50_UPI00046252B9 adenine deaminase 3.34732567859e-06 0.000103718286434 0.000100370960755 +UniRef50_O27089 Type 2 DNA topoisomerase 6 subunit A 0.00338062962478 0.00103595268279 -0.00234467694199 +UniRef50_UPI000158407C hypothetical protein BC1G_05447 4.54645339686e-05 0.000308033504502 0.000262568970533 +UniRef50_P37349 PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM 0.00610937255773 0.000823597770438 -0.00528577478729 +UniRef50_O59521 Elongation factor 2 0.00380774845533 0.000441194419507 -0.00336655403582 +UniRef50_Q160Y9 Zinc import ATP binding protein ZnuC 2.39226109871e-05 1.82719073179e-05 -5.6507036692e-06 +UniRef50_UPI00031F41C2 hypothetical protein 5.85024012966e-05 5.49454977517e-05 -3.5569035449e-06 +UniRef50_U5VFI8 Transcriptional regulator 0.000204784442414 0.000711606518538 0.000506822076124 +UniRef50_Q5M018 DNA topoisomerase 1 0.00583597841961 0.000814635789979 -0.00502134262963 +UniRef50_Q3JX48 4.5673472067e-05 6.59598869572e-05 2.02864148902e-05 +UniRef50_G1Y3U3 3.47448062748e-05 0.00028719071257 0.000252445906295 +UniRef50_Q5PCT4 Thymidine kinase 0.000368279013511 0.00117595015342 0.000807671139909 +UniRef50_UPI0004776C9C uracil phosphoribosyltransferase 8.36139504249e-06 4.90377573497e-05 4.06763623072e-05 +UniRef50_B9KZP8 N acetyl gamma glutamyl phosphate reductase 1.23105259846e-05 0.000216698024188 0.000204387498203 +UniRef50_G7M047 Enoyl CoA hydratase isomerase 0.000336646207595 0.00147346465931 0.00113681845171 +UniRef50_UPI00047BE467 phosphoenolpyruvate protein phosphotransferase 3.25697516968e-06 0.000241243356713 0.000237986381543 +UniRef50_UPI000378D9A5 hypothetical protein 1.59020496785e-05 1.48042835398e-05 -1.0977661387e-06 +UniRef50_UPI00047C7B9C hypothetical protein, partial 6.19533661195e-05 5.75437463715e-05 -4.409619748e-06 +UniRef50_UPI0003C10252 0.000547867017453 5.28871142104e-05 -0.000494979903243 +UniRef50_UPI00004C2470 COG1166 0.000913703626762 0.00122293767187 0.000309234045108 +UniRef50_P05379 Anthranilate synthase component 2 0.00613607730587 0.00467789779397 -0.0014581795119 +UniRef50_UPI000466FBB9 hypothetical protein 1.0852272488e-05 1.62343196838e-05 5.3820471958e-06 +UniRef50_E3BCS0 1.1611637274e-05 0.00150482605996 0.00149321442269 +UniRef50_L7WT69 0.00847469413296 0.000795241800863 -0.0076794523321 +UniRef50_P54425 0.0254816648885 0.00533616798942 -0.0201454968991 +UniRef50_F8DJ95 Tat pathway signal sequence domain protein 0.00580651755474 0.00422750901743 -0.00157900853731 +UniRef50_T0ZN95 0.000121697516795 0.00163501593642 0.00151331841962 +UniRef50_P32677 0.00212299715208 0.00149671743737 -0.00062627971471 +UniRef50_Q83JV1 IS911 ORF2 1.4971715539e-05 3.8106622808e-05 2.3134907269e-05 +UniRef50_Q042B4 Putative RNA 2 O) methyltransferase 0.00171031409699 0.0108062290325 0.00909591493551 +UniRef50_A6LWX2 RNA polymerase, sigma 24 subunit, ECF subfamily 0.00736451688131 0.000557201330567 -0.00680731555074 +UniRef50_A6W862 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 0.000237334656096 0.00670101555851 0.00646368090241 +UniRef50_P28638 DNA adenine methyltransferase YhdJ 0.003460968852 0.00185136280437 -0.00160960604763 +UniRef50_D9PXD9 Predicted biotin biosynthesis protein 0.000686338161548 0.000848054408814 0.000161716247266 +UniRef50_A4YZY5 Pyrroloquinoline quinone synthase 0.00621692927988 0.0034882699116 -0.00272865936828 +UniRef50_B2VCR3 Iron dicitrate sensor protein FecR 3.58298049777e-05 1.52049552237e-05 -2.0624849754e-05 +UniRef50_A5N275 FolC 0.000305247551134 0.000820306827793 0.000515059276659 +UniRef50_Q2NFU9 UPF0425 pyridoxal phosphate dependent protein Msp_0916 0.00279530461177 0.000314465525801 -0.00248083908597 +UniRef50_F2MU09 Phospholipase carboxylesterase 3.55473314347e-05 0.000709805102506 0.000674257771071 +UniRef50_Q5HLB6 Glycine oxidase, putative 0.00754095217395 0.00196274755759 -0.00557820461636 +UniRef50_P0CS91 Heat shock protein SSC1, mitochondrial 0.000218575431332 0.005189588184 0.00497101275267 +UniRef50_D6UDQ3 Tandem lipoprotein 0.00106781261774 3.97636165494e-05 -0.00102804900119 +UniRef50_I6SXL7 Transcriptional regulator 0.00915016764153 0.00706192025914 -0.00208824738239 +UniRef50_Q1J5E1 Glycine tRNA ligase beta subunit 0.00726507032039 0.00216833002658 -0.00509674029381 +UniRef50_Q5FSM8 DNA polymerase IV 4.44787391271e-06 1.00259447791e-05 5.57807086639e-06 +UniRef50_UPI0003628E06 hypothetical protein 8.90318913877e-06 0.000113707424611 0.000104804235472 +UniRef50_I6T999 Putative DNA binding protein 0.00534185608288 0.00755106700499 0.00220921092211 +UniRef50_Q2G506 ATM1 type heavy metal exporter 0.00332426932883 0.00103110508692 -0.00229316424191 +UniRef50_Q92M99 Phosphoglucosamine mutase 0.000712538667275 0.000473196623433 -0.000239342043842 +UniRef50_UPI000474F1D7 GntR family transcriptional regulator 2.86867725733e-05 3.44374369266e-05 5.7506643533e-06 +UniRef50_V9TEA7 Membrane protein 0.000880826779157 0.000403621920536 -0.000477204858621 +UniRef50_A6LWP9 0.000194915312664 0.00118373546568 0.000988820153016 +UniRef50_C8XAV6 5.91903043269e-05 2.12013810219e-05 -3.7988923305e-05 +UniRef50_B7GT76 2 isopropylmalate synthase 2.89137793217e-06 1.81961061171e-05 1.53047281849e-05 +UniRef50_A1B1J8 Multisubunit potassium proton antiporter, PhaD subunit 0.00472524768805 0.000729142247698 -0.00399610544035 +UniRef50_A6LWP5 0.000202949456367 0.0015554572052 0.00135250774883 +UniRef50_A0A024E8N7 LysR family transcriptional regulator 0.000229707498285 0.00055446503265 0.000324757534365 +UniRef50_A1AT80 Glutamate 5 kinase 8.79259766504e-06 6.3693331168e-06 -2.42326454824e-06 +UniRef50_A1ZV16 6.80091804187e-06 0.000685311454025 0.000678510535983 +UniRef50_F2K1C2 Cytochrome b 0.00122225995043 0.000305552698654 -0.000916707251776 +UniRef50_Q869Z4 Phosphoenolpyruvate carboxykinase [GTP], mitochondrial 0.000251908367335 0.00980676409642 0.00955485572908 +UniRef50_Q8CN10 PTS enzyme II glucose specific factor IIABC component 0.00442989965018 0.00243733647365 -0.00199256317653 +UniRef50_Q6GC59 Exotoxin 0.0118168768448 0.00185094368724 -0.00996593315756 +UniRef50_Q8DWC2 Peptide deformylase 0.00285621120808 0.00584253982118 0.0029863286131 +UniRef50_A3W5J9 Flagellar protein FlgJ, putative 4.87205142173e-05 2.51568973161e-05 -2.35636169012e-05 +UniRef50_UPI00045E6DFA hypothetical protein 9.66802408398e-05 0.000110816689341 1.41364485012e-05 +UniRef50_F2DJV5 Predicted protein 7.8518275517e-07 0.00018652292323 0.000185737740475 +UniRef50_D8JDR1 0.000117474892792 0.00777465670553 0.00765718181274 +UniRef50_A3PJK1 0.00295903026021 0.00258643445711 -0.0003725958031 +UniRef50_O05389 0.000178339837253 0.00170920855092 0.00153086871367 +UniRef50_A3PJK2 0.00484115957411 0.00161081839197 -0.00323034118214 +UniRef50_UPI00016C499F dimethyladenosine transferase, partial 9.64260839552e-06 3.64661975384e-05 2.68235891429e-05 +UniRef50_UPI0004749CAE ketodeoxygluconokinase 1.23084589658e-05 1.4500448755e-05 2.1919897892e-06 +UniRef50_R6XMV8 9.00798728142e-05 1.74903880052e-05 -7.2589484809e-05 +UniRef50_Q7VEG3 Nucleoside diphosphate kinase 4.41466594858e-05 9.93947754327e-05 5.52481159469e-05 +UniRef50_E3I2G3 HupH hydrogenase expression protein 0.000156956709815 2.58213713316e-05 -0.000131135338483 +UniRef50_W5XCB4 DegT DnrJ EryC1 StrS family protein 3.81361203014e-06 1.09591344281e-05 7.14552239796e-06 +UniRef50_Q8SDT3 Phi105 orf 44 like protein 0.00286660113217 0.000714475899663 -0.00215212523251 +UniRef50_I6T631 ABC transporter substrate binding protein 0.00317403621288 0.000968168861503 -0.00220586735138 +UniRef50_I4L8Z6 5.97313242863e-05 9.38806767182e-05 3.41493524319e-05 +UniRef50_UPI00047863ED hypothetical protein 3.3761668814e-05 1.18400770828e-05 -2.19215917312e-05 +UniRef50_B9KL61 Transporter, RhaT family, DMT superfamily 0.000128834808487 0.000197536257659 6.8701449172e-05 +UniRef50_R7PSP1 0.00286218390364 0.00068237070487 -0.00217981319877 +UniRef50_I3UXJ0 Homocysteine S methyltransferase 0.000226039514279 0.00460748400648 0.0043814444922 +UniRef50_B3T1S1 0.000694467053355 0.00230521136462 0.00161074431127 +UniRef50_UPI0003775D8A hypothetical protein 1.56952429452e-05 2.73756178236e-05 1.16803748784e-05 +UniRef50_UPI00035142FA PREDICTED 8.98039164874e-05 0.000157753013168 6.79490966806e-05 +UniRef50_F9Y4R9 0.000474835567621 0.000737650781258 0.000262815213637 +UniRef50_A5UJU3 Adhesin like protein 0.0035910587592 0.000766157579497 -0.0028249011797 +UniRef50_U7XVU8 4.62804059383e-05 0.000204770702883 0.000158490296945 +UniRef50_Q7N964 Thiamine phosphate synthase 0.00196729849616 0.00300092558576 0.0010336270896 +UniRef50_Q6UXR0 GWSI6489 8.63153937979e-05 0.00570393597839 0.00561762058459 +UniRef50_K1ZGG7 0.000438113956219 2.65477180654e-05 -0.000411566238154 +UniRef50_B7UWX0 0.000173274777077 0.000104391512769 -6.8883264308e-05 +UniRef50_B3PNG9 Serine tRNA ligase 4.53124456224e-06 1.38124542524e-05 9.28120969016e-06 +UniRef50_UPI0003A2F50C hypothetical protein 5.40361122358e-05 2.19373336876e-05 -3.20987785482e-05 +UniRef50_A4WXV4 0.00378599139669 0.00801800731847 0.00423201592178 +UniRef50_UPI0003666757 hypothetical protein 3.55645335052e-05 0.000338245967872 0.000302681434367 +UniRef50_M9VE13 LacI family transcriptional regulator 0.000125410627529 0.00892062491184 0.00879521428431 +UniRef50_U5WUM2 Zinc binding dehydrogenase 0.00033546625972 0.00261009207997 0.00227462582025 +UniRef50_A0B8A2 0.00256630616398 0.00034631809876 -0.00221998806522 +UniRef50_T8GQ95 Glyoxylate carboligase 0.000587385912372 0.000120701650628 -0.000466684261744 +UniRef50_C1FAE8 Aspartate tRNA ligase 3.23384215636e-06 9.5712017522e-06 6.33735959584e-06 +UniRef50_Q88MC6 0.000279619251005 4.63681665336e-05 -0.000233251084471 +UniRef50_G8AMM6 0.000314672552125 0.00019851292274 -0.000116159629385 +UniRef50_UPI0003717327 hypothetical protein 7.75182707403e-06 1.26986986495e-05 4.94687157547e-06 +UniRef50_C6NS61 2 isopropylmalate synthase 1.68527932359e-05 1.06639040794e-05 -6.1888891565e-06 +UniRef50_Q57060 0.00969989369764 0.00630671349842 -0.00339318019922 +UniRef50_X5X5U8 0.00197509012991 0.000125041384493 -0.00185004874542 +UniRef50_F3ZHT3 Putative transcriptional regulator, MerR family protein 2.33580878932e-05 0.000332069428132 0.000308711340239 +UniRef50_UPI000372025C hypothetical protein 2.51731079127e-05 3.55126379471e-05 1.03395300344e-05 +UniRef50_UPI0003636A8B hypothetical protein 4.29338463108e-06 1.04520123471e-05 6.15862771602e-06 +UniRef50_UPI000380509C hypothetical protein 5.38222826097e-05 5.45919704146e-06 -4.83630855682e-05 +UniRef50_A7IB90 2.03545358546e-05 9.97340430481e-06 -1.03811315498e-05 +UniRef50_UPI0003810DDB hypothetical protein 1.45856266558e-05 1.13250550909e-05 -3.2605715649e-06 +UniRef50_W4RTV0 1.81238837283e-05 2.69978209462e-05 8.8739372179e-06 +UniRef50_UPI00045DC04C PREDICTED 3.10482415329e-05 2.63505259997e-06 -2.84131889329e-05 +UniRef50_D7GCK2 Cell envelope related transcriptional attenuator 4.62587843487e-06 1.61862955883e-05 1.15604171534e-05 +UniRef50_D5ANZ4 Cytochrome c1 0.0134026609234 0.00436792146564 -0.00903473945776 +UniRef50_A4FPJ2 DNA directed RNA polymerase subunit alpha 3.17979134865e-05 0.012584070998 0.0125522730845 +UniRef50_UPI0004730699 hypothetical protein, partial 5.90007538297e-05 7.20348592853e-05 1.30341054556e-05 +UniRef50_UPI00047D1B9F hypothetical protein 5.87799486135e-05 4.78548480246e-05 -1.09251005889e-05 +UniRef50_E2QG11 Receptor protein 0.00415290197654 0.00204806734375 -0.00210483463279 +UniRef50_T1ADV2 Pyridine nucleotide transhydrogenase subunit alpha 2.38841538244e-05 4.180411274e-05 1.79199589156e-05 +UniRef50_N0SZ54 Ribosomal RNA large subunit methyltransferase F 0.000608029457276 0.000190731994744 -0.000417297462532 +UniRef50_UPI0002379B91 glutamine ABC transporter ATP binding protein 8.88855142422e-05 7.36755713723e-05 -1.52099428699e-05 +UniRef50_U5MMN5 Sensor protein GtcS 0.000240136730035 0.000871504193622 0.000631367463587 +UniRef50_A8IMG6 1.05213898548e-05 1.62660381331e-05 5.7446482783e-06 +UniRef50_UPI0003B34E5F NADH quinone oxidoreductase subunit F 3.53993288383e-06 8.39531118976e-06 4.85537830593e-06 +UniRef50_A3CP57 0.00907002511004 0.000863415031478 -0.00820661007856 +UniRef50_R7JSE9 Appr 1 p processing domain protein 5.35329799714e-06 9.56916415376e-05 9.03383435405e-05 +UniRef50_A6U0P1 Bifunctional purine biosynthesis protein PurH 0.0218753187337 0.00457302768351 -0.0173022910502 +UniRef50_D3DYR0 Molybdopterin biosynthesis protein MoeA1 0.00324944342893 0.000452450660442 -0.00279699276849 +UniRef50_A6WXN2 Cysteine synthase A 0.000130018136227 0.00557131604534 0.00544129790911 +UniRef50_F9ZDK1 3.37111282454e-05 6.67430696767e-06 -2.70368212777e-05 +UniRef50_Q2NUJ6 8 amino 7 oxononanoate synthase 0.00399810123578 0.00337579472008 -0.0006223065157 +UniRef50_B0VSH8 0.000143895548483 0.0110025074475 0.010858611899 +UniRef50_D1WNS1 3.7892125551e-05 0.0016406483622 0.00160275623665 +UniRef50_V9Y3L4 0.000402885329893 0.000331623239557 -7.1262090336e-05 +UniRef50_S9QX59 Asparagine synthetase A 4.63086470958e-05 3.31497843772e-05 -1.31588627186e-05 +UniRef50_I2NA66 Putative transposase 6.64192932355e-06 0.000852258612792 0.000845616683468 +UniRef50_K7SNW3 Biotin requiring enzyme 8.04874176639e-05 0.00195593859233 0.00187545117467 +UniRef50_Z3WPG1 Quinolone resistance protein norA 0.000682914692114 0.00269066780044 0.00200775310833 +UniRef50_U3JHG3 1.38918322733e-05 5.00532640968e-06 -8.88650586362e-06 +UniRef50_G8P8V7 Transcriptional regulator, TetR family 0.000218199993555 0.000682813191202 0.000464613197647 +UniRef50_M9VE40 DNA polymerase III subunit beta 0.000257388808393 0.00619901311715 0.00594162430876 +UniRef50_UPI0003B45127 adenosylcobinamide amidohydrolase 8.24948297216e-05 0.000117808899184 3.53140694624e-05 +UniRef50_Q7VRJ3 3 octaprenyl 4 hydroxybenzoate carboxy lyase 5.72408336432e-06 4.8384120152e-05 4.26600367877e-05 +UniRef50_E1ZM35 3.16669191744e-06 2.84236216817e-05 2.52569297643e-05 +UniRef50_Q3IUW2 Sex pilus assembly protein 0.0281196200925 0.00315021751953 -0.024969402573 +UniRef50_A0A059LE43 3.06260763212e-05 0.000121002849056 9.03767727348e-05 +UniRef50_L7X117 0.0191231733148 0.00223825152444 -0.0168849217904 +UniRef50_Q5HM49 Transporter, putative 0.0213051256247 0.0049672390802 -0.0163378865445 +UniRef50_E8ZPJ7 Flagellar motor rotation protein MotB 0.00094128649863 0.00218132411405 0.00124003761542 +UniRef50_Q8FDB4 Toxin YhaV 0.00347749112547 0.00208458850726 -0.00139290261821 +UniRef50_P31448 0.00107272792866 0.00102212553568 -5.060239298e-05 +UniRef50_A0A017IJ86 0.000244789231481 0.000281382160804 3.6592929323e-05 +UniRef50_UPI000409D88E ABC transporter ATP binding protein 3.58313550975e-06 6.41405502813e-06 2.83091951838e-06 +UniRef50_U1GJH2 1.47030468737e-05 1.0239062436e-05 -4.4639844377e-06 +UniRef50_R5LKI5 0.00232839171695 0.00115725372531 -0.00117113799164 +UniRef50_UPI00047A834E hypothetical protein 0.000111014512165 1.42301692954e-05 -9.67843428696e-05 +UniRef50_I6T4P1 Peptidoglycan hydrolase 0.00670845175229 0.00348859502504 -0.00321985672725 +UniRef50_F8HDN7 GTPase HflX 0.00531731433307 0.00361993831836 -0.00169737601471 +UniRef50_S5CMF0 Lysine ornithine N monooxygenase 0.00010202324023 0.00795027182549 0.00784824858526 +UniRef50_D9VIL0 Predicted protein 0.000153573611612 0.00015899866043 5.425048818e-06 +UniRef50_A5EJC6 3 dehydroquinate dehydratase 9.49616816534e-05 8.89289109897e-05 -6.0327706637e-06 +UniRef50_R9SJV5 0.00263635198837 0.000294335586571 -0.0023420164018 +UniRef50_X6L1Q7 0.000116778683408 2.93396353982e-05 -8.74390480098e-05 +UniRef50_A6LY84 RNA directed DNA polymerase 0.000434393979868 0.00130425650155 0.000869862521682 +UniRef50_P08395 Protease 4 0.00222398001135 0.00157480391412 -0.00064917609723 +UniRef50_P21881 Pyruvate dehydrogenase E1 component subunit alpha 0.0179371443628 0.0086235632723 -0.0093135810905 +UniRef50_C1F934 Glycine cleavage system H protein 0.0288539773614 0.00307449230898 -0.0257794850524 +UniRef50_S5F6B6 Carbonic anhydrase 4.15446119826e-05 8.42574207011e-06 -3.31188699125e-05 +UniRef50_D4G4T6 5.7469821423e-05 3.49773580148e-05 -2.24924634082e-05 +UniRef50_A0A024HMN0 0.000391853967671 0.000138406772972 -0.000253447194699 +UniRef50_Q1GK69 Peptidyl tRNA hydrolase 8.85381953972e-05 4.42063883791e-05 -4.43318070181e-05 +UniRef50_A0KZ99 Ribosomal RNA large subunit methyltransferase M 0.00227457323911 0.000967514881814 -0.0013070583573 +UniRef50_A4VKN0 DNA ligase 0.000536467342314 0.000403952028561 -0.000132515313753 +UniRef50_F0P455 Transcriptional regulator, LysR family 0.0126720514182 0.00365741191777 -0.00901463950043 +UniRef50_Q47208 Protein FdrA 0.00269823892419 0.000998169253062 -0.00170006967113 +UniRef50_UPI000470719A hypothetical protein 0.000809405787415 0.000376273312674 -0.000433132474741 +UniRef50_Q98I23 Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2 0.0112907531346 0.00180753727094 -0.00948321586366 +UniRef50_A8MGM7 Histidine tRNA ligase 3.83531696865e-06 0.00127237515733 0.00126853984036 +UniRef50_Q5HNS1 Histidine tRNA ligase 0.00709239387417 0.00249233214643 -0.00460006172774 +UniRef50_A8MHC4 tRNA ) methyltransferase 0.000492502060568 0.00229233378357 0.001799831723 +UniRef50_Q6FAF0 0.0114581508055 0.0125134159118 0.0010552651063 +UniRef50_B9KN35 Tyrosine recombinase 0.0110153288993 0.0016529579735 -0.0093623709258 +UniRef50_J8RT93 0.000102560902995 0.000108563047887 6.002144892e-06 +UniRef50_P31447 0.00261199428869 0.0016911398858 -0.00092085440289 +UniRef50_I4WA77 Cupin 9.78337770766e-05 6.17355340618e-05 -3.60982430148e-05 +UniRef50_A9NHF4 Tyrosine tRNA ligase 6.02686790342e-06 2.75516539321e-05 2.15247860287e-05 +UniRef50_UPI0002B46B6C PREDICTED 7.27489706034e-05 1.02217714716e-05 -6.25271991318e-05 +UniRef50_U5MSB6 Actin like ATPase involved in cell division 0.000312263919734 0.000333837366925 2.1573447191e-05 +UniRef50_D9RE66 0.0171733699952 0.00330947177673 -0.0138638982185 +UniRef50_A8G7C4 Lysine tRNA ligase 3.16598278359e-06 9.21418366545e-06 6.04820088186e-06 +UniRef50_W9GGB6 4.63256884592e-05 2.54756518198e-05 -2.08500366394e-05 +UniRef50_Q8CP80 Maltose maltodextrin transport permease like protein 0.00989120722369 0.00395888975696 -0.00593231746673 +UniRef50_B7H087 Acetate kinase 0.000259452833451 0.00718777906633 0.00692832623288 +UniRef50_Q3IUU3 0.0188881920516 0.00670040016913 -0.0121877918825 +UniRef50_Q3IUU2 0.0159041357202 0.00246280133573 -0.0134413343845 +UniRef50_Q3IUU1 0.0230438108927 0.0060360527903 -0.0170077581024 +UniRef50_Q3IUU0 0.00651793720796 0.00438939776545 -0.00212853944251 +UniRef50_C7NTI4 Oxidoreductase 1.703150927e-05 1.12845321756e-05 -5.7469770944e-06 +UniRef50_UPI0002E8C668 hypothetical protein 1.53638399363e-05 1.04544214404e-05 -4.9094184959e-06 +UniRef50_X9ZAP3 0.0126048090474 0.00116228549627 -0.0114425235511 +UniRef50_C4REF2 9.02213839011e-06 1.52850913431e-05 6.26295295299e-06 +UniRef50_W8X9Y2 0.000492853497076 0.000352968173539 -0.000139885323537 +UniRef50_UPI000372F67C hypothetical protein 4.46136915496e-05 0.000244394639562 0.000199780948012 +UniRef50_D5AN32 Na+ solute symporter histidine kinase 0.00418552828243 0.00171525271346 -0.00247027556897 +UniRef50_UPI0004686CF3 DNA processing protein 8.14873273029e-05 7.77469149418e-05 -3.7404123611e-06 +UniRef50_UPI0003709489 hypothetical protein 5.93749840887e-06 1.14775116548e-05 5.54001324593e-06 +UniRef50_A0A021W377 0.000455616423831 9.55954285953e-05 -0.000360020995236 +UniRef50_I0C6Z8 Transcriptional regulator, RpiR family 0.0198593555728 0.00403829350683 -0.015821062066 +UniRef50_A4FXY0 ATP phosphoribosyltransferase 0.0021917006289 0.000557440784418 -0.00163425984448 +UniRef50_UPI0004793307 arginine ABC transporter ATP binding protein 3.11739942067e-05 3.19267971495e-05 7.528029428e-07 +UniRef50_UPI0003346A33 PREDICTED 0.000101502877674 0.000110491093052 8.988215378e-06 +UniRef50_UPI00037EBF8D hypothetical protein 3.31220580153e-06 3.49998163542e-06 1.8777583389e-07 +UniRef50_UPI0004749A8E hypothetical protein, partial 1.54484434021e-05 2.29404779047e-05 7.4920345026e-06 +UniRef50_D3E438 Transcriptional regulator 0.000235438246685 0.000376199624447 0.000140761377762 +UniRef50_UPI00037D9D80 hypothetical protein 1.31082291724e-05 6.5785020285e-05 5.26767911126e-05 +UniRef50_UPI00046F048D hypothetical protein 7.62181273444e-06 4.74164384982e-05 3.97946257638e-05 +UniRef50_H8GSQ7 2 oxoisovalerate dehydrogenase, ODBB 0.000109734299089 0.0414945050286 0.0413847707295 +UniRef50_UPI0002F0E78D hypothetical protein 4.616173654e-05 1.11029690496e-05 -3.50587674904e-05 +UniRef50_S2EW51 4.12393286296e-05 2.70843064575e-05 -1.41550221721e-05 +UniRef50_X5EI43 0.000266460698017 0.00246387372732 0.0021974130293 +UniRef50_H3K0N4 ABC transporter ATP binding protein 0.0123130925283 0.00161917052688 -0.0106939220014 +UniRef50_P33983 RNA polymerase sigma 54 factor 0.000222985006094 0.00628274989442 0.00605976488833 +UniRef50_Q3JQY5 0.000124041122045 2.41998405252e-05 -9.98412815198e-05 +UniRef50_UPI0004679CCC 50S ribosomal protein L6, partial 7.43227108272e-05 7.41801608231e-05 -1.425500041e-07 +UniRef50_Q0A5K0 Succinyl CoA ligase [ADP forming] subunit beta 1.25601820849e-05 1.67423955609e-05 4.182213476e-06 +UniRef50_G2JIW3 Enoyl CoA hydratase carnithine racemase 0.000348448605091 0.00730990622933 0.00696145762424 +UniRef50_UPI00037A4F24 hypothetical protein, partial 6.90312984757e-05 7.16722269859e-05 2.6409285102e-06 +UniRef50_P67371 DegV domain containing protein SA1258 0.0188807561605 0.00372933095145 -0.0151514252091 +UniRef50_G8VAM5 Transferase 8.55330790492e-05 0.0058082201334 0.00572268705435 +UniRef50_UPI00046527B9 diguanylate cyclase 8.51910015367e-06 1.09405114023e-05 2.42141124863e-06 +UniRef50_B9EB64 Bifunctional protein PyrR 3.19139163426e-05 6.52042832446e-05 3.3290366902e-05 +UniRef50_P45053 Oligopeptide transport system permease protein OppC 0.00160299492796 0.000677046210608 -0.000925948717352 +UniRef50_A5FG89 Lon protease 1.37771355036e-06 5.28039767225e-06 3.90268412189e-06 +UniRef50_P10768 S formylglutathione hydrolase 0.00427875368191 0.00108034769734 -0.00319840598457 +UniRef50_Q5LZ72 Phenylalanine tRNA ligase beta subunit 0.00559061506466 0.00611890388621 0.00052828882155 +UniRef50_W1UDP7 Surface protective antigen SpaA 0.000387899399708 0.00392408042021 0.0035361810205 +UniRef50_UPI00047EAA8B hypothetical protein 2.97014066686e-06 6.16556953381e-06 3.19542886695e-06 +UniRef50_D6M4Y7 Peptidase C14, caspase catalytic subunit p20 4.58566943327e-05 0.000371379696512 0.000325523002179 +UniRef50_UPI0001E896F1 ATPase 1.16187525186e-05 2.25994083022e-05 1.09806557836e-05 +UniRef50_UPI00037DE191 hypothetical protein 6.4112953349e-06 0.000533948350804 0.000527537055469 +UniRef50_UPI000467F219 type I secretion protein 1.07008823361e-05 7.11283328012e-06 -3.58804905598e-06 +UniRef50_I1ELJ8 0.000199602454323 9.14968757791e-05 -0.000108105578544 +UniRef50_UPI0001B41487 ATP dependent protease ATP binding subunit HslU 2.56320928773e-05 0.000132826104285 0.000107194011408 +UniRef50_B9IYP4 Formate tetrahydrofolate ligase 0.000188838473161 0.000269829818879 8.0991345718e-05 +UniRef50_UPI00046EB4AA hypothetical protein, partial 1.95854501175e-05 1.50517408535e-05 -4.533709264e-06 +UniRef50_B0VBG2 0.000278497783418 0.00672224117113 0.00644374338771 +UniRef50_Q9CMM8 Selenide, water dikinase 0.00471221466806 0.00188696620209 -0.00282524846597 +UniRef50_UPI0003B5EFE3 hypothetical protein 7.18860393996e-06 0.000142598597216 0.000135409993276 +UniRef50_UPI00047CBC2F diacylglycerol kinase 1.68109342939e-05 6.46445264066e-05 4.78335921127e-05 +UniRef50_U1TXR6 0.000383209154752 0.000262846566382 -0.00012036258837 +UniRef50_D5AS82 SsrA binding protein 0.004217737032 0.000454333392607 -0.00376340363939 +UniRef50_UPI00037E7A93 hypothetical protein 6.21520284304e-06 1.809391916e-05 1.1878716317e-05 +UniRef50_B9NUC1 0.00263684126974 0.000898109404517 -0.00173873186522 +UniRef50_P0ADH6 Type 1 fimbriae regulatory protein FimB 0.00117594377016 0.000715919285321 -0.000460024484839 +UniRef50_R7PU85 0.00157966338382 0.00544818206587 0.00386851868205 +UniRef50_P06134 Bifunctional transcriptional activator DNA repair enzyme Ada 0.00335467093571 0.00138236693724 -0.00197230399847 +UniRef50_W1XPX0 NADH quinone oxidoreductase subunit L 0.000115829105569 6.49002375505e-05 -5.09288680185e-05 +UniRef50_UPI0003C1934F 3.78417411257e-05 2.5895969802e-06 -3.52521441455e-05 +UniRef50_C7MB99 Methyltransferase family protein 0.00744243175817 0.00227391446052 -0.00516851729765 +UniRef50_UPI0002B4434D 2.78046370792e-06 6.21010806232e-05 5.93206169153e-05 +UniRef50_E6JE24 Integral membrane protein 4.09823469531e-07 5.50411747651e-07 1.4058827812e-07 +UniRef50_R4R862 Sensor protein RstB 0.00106447486408 0.000287328884659 -0.000777145979421 +UniRef50_B9KTV5 Extracellular solute binding protein, family 3 0.0050268720665 0.000606661121221 -0.00442021094528 +UniRef50_Q7N772 Protein NrdI 1.25669523943e-05 6.82413956352e-05 5.56744432409e-05 +UniRef50_P09162 0.000424141560512 0.00327500377695 0.00285086221644 +UniRef50_G7M7A9 Transcriptional regulator, MarR family 0.000361502176702 0.000911075144815 0.000549572968113 +UniRef50_A6LW07 Periplasmic binding protein LacI transcriptional regulator 0.000352588665638 0.00104338790602 0.000690799240382 +UniRef50_G7U7C0 Transporter, major facilitator family protein 0.00012653161638 0.00821193458673 0.00808540297035 +UniRef50_X7V429 HD domain protein 1.58293703042e-05 2.6534702342e-05 1.07053320378e-05 +UniRef50_B2V5D3 UV damage endonuclease UvdE 0.000941992832652 0.0028184960095 0.00187650317685 +UniRef50_P63590 3 dehydroquinate dehydratase 0.00370560175667 0.006739333854 0.00303373209733 +UniRef50_Q51161 Dihydropteroate synthase 7.90613099492e-06 0.00327148269588 0.00326357656489 +UniRef50_Q89376 2.39686355964e-06 6.45927211468e-06 4.06240855504e-06 +UniRef50_Q8CRZ8 0.00790010380089 0.00530120797493 -0.00259889582596 +UniRef50_Q8CRZ9 0.00962120989327 0.00322620327274 -0.00639500662053 +UniRef50_W8U6I9 AAA domain containing protein YrvN 0.000313453926406 0.00177363963041 0.001460185704 +UniRef50_Q8CRZ1 0.00207115559023 0.0014586493131 -0.00061250627713 +UniRef50_Q8CRZ2 0.00750356750985 0.00250352311195 -0.0050000443979 +UniRef50_Q8CRZ3 0.0077284168268 0.00389350518463 -0.00383491164217 +UniRef50_Q8CRZ4 0.00731681357456 0.0026196801655 -0.00469713340906 +UniRef50_Q8CRZ7 0.0108567159428 0.00387078172572 -0.00698593421708 +UniRef50_A7ZQU2 Bifunctional protein Aas 0.000654323084117 9.40000122672e-05 -0.00056032307185 +UniRef50_UPI00047B3496 molybdenum cofactor biosynthesis protein MoeB 1.66385641126e-05 4.43993430872e-05 2.77607789746e-05 +UniRef50_UPI0003A35158 hypothetical protein 4.70725546009e-06 6.97508947712e-06 2.26783401703e-06 +UniRef50_A5WHC3 4 hydroxy tetrahydrodipicolinate synthase 0.000138969684288 0.0050351708271 0.00489620114281 +UniRef50_P65103 Isopentenyl diphosphate delta isomerase 0.00405480175395 0.00400813441353 -4.666734042e-05 +UniRef50_UPI0000557F47 hypothetical protein 0.000227065328509 0.000231952606917 4.887278408e-06 +UniRef50_Q6GHN9 Lipoprotein signal peptidase 0.0141048611762 0.00280216732161 -0.0113026938546 +UniRef50_S4YB05 0.000124376858201 7.96430386153e-05 -4.47338195857e-05 +UniRef50_I0LGH2 ABC type transporter, periplasmic component 1.14119418896e-05 4.70868645767e-05 3.56749226871e-05 +UniRef50_UPI000471C41C spermidine putrescine ABC transporter ATPase 5.47967384213e-05 2.78837464855e-05 -2.69129919358e-05 +UniRef50_UPI00037D6690 hypothetical protein 3.14905879948e-06 8.85293101891e-05 8.53802513896e-05 +UniRef50_UPI0003B79E24 inner membrane translocator 6.71891356697e-06 4.995245077e-06 -1.72366848997e-06 +UniRef50_UPI00029ADD09 dehydrogenase E1 component 2.29540197336e-06 6.95669276728e-05 6.72715256994e-05 +UniRef50_A0A023S2F8 Type I deoxyribonuclease HsdR 0.000178621130367 0.00883110911525 0.00865248798488 +UniRef50_H4UHR1 K H(+) antiporter NhaP2 0.00103752419948 0.000213869711137 -0.000823654488343 +UniRef50_A6LYC9 ThiJ PfpI domain protein 0.000475987449258 0.00208335419594 0.00160736674668 +UniRef50_B9KL85 Transporter, RhaT family, DMT superfamily 0.00275848749377 0.000385414392769 -0.002373073101 +UniRef50_Q9XE67 3.48750152386e-05 2.1993264817e-05 -1.28817504216e-05 +UniRef50_F8FDJ3 1.10903701447e-06 1.16098682432e-05 1.05008312287e-05 +UniRef50_Q5H175 Dihydrolipoyl dehydrogenase 8.42602653634e-05 0.00647369290447 0.00638943263911 +UniRef50_C6WVP9 DoxX family protein 4.10038053669e-05 4.71766814374e-05 6.1728760705e-06 +UniRef50_UPI0003B7B25C alanine glycine permease 4.4189377499e-05 0.00392555254348 0.00388136316598 +UniRef50_D3DZS4 0.0024448721345 0.000332336463118 -0.00211253567138 +UniRef50_C0PAL9 0.000104808220079 3.18844231656e-05 -7.29237969134e-05 +UniRef50_UPI00038F99E9 hypothetical protein, partial 6.52365554942e-06 5.61078940713e-05 4.95842385219e-05 +UniRef50_Q2RFS8 Energy coupling factor transporter ATP binding protein EcfA 1.37678363702e-05 6.46066778025e-05 5.08388414323e-05 +UniRef50_H1XUH5 Cysteine desulfurase 0.00536623894244 0.00477537728117 -0.00059086166127 +UniRef50_X2M2B8 Multidrug transporter 0.00368490472939 0.00117825399277 -0.00250665073662 +UniRef50_UPI0003642FB6 hypothetical protein 7.43860068587e-05 2.40273149764e-05 -5.03586918823e-05 +UniRef50_Q42577 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.39975530249e-05 2.95833410853e-05 -4.4142119396e-06 +UniRef50_M9VCQ3 UvrD REP helicase 0.000290220748966 0.00679535657305 0.00650513582408 +UniRef50_A1YRL8 Cassette chromosome recombinase A 0.00817738679606 0.00176457998533 -0.00641280681073 +UniRef50_Q8L940 Pyridoxal biosynthesis protein PDX1.3 2.58182898383e-05 0.00374091744826 0.00371509915842 +UniRef50_UPI00047114BD hypothetical protein 2.53149989052e-06 2.11421898796e-05 1.86106899891e-05 +UniRef50_UPI00016C4C7D molecular chaperone GroEL 3.34732511688e-05 1.10966693241e-05 -2.23765818447e-05 +UniRef50_Q44058 Acyl homoserine lactone synthase 9.26002480944e-06 1.26777051579e-05 3.41768034846e-06 +UniRef50_B1FL99 RemN protein 0.000657733614019 0.000373015824303 -0.000284717789716 +UniRef50_UPI00045E9959 sarcosine oxidase subunit alpha 1.40493937095e-05 6.81528934358e-06 -7.23410436592e-06 +UniRef50_UPI00047E113B hypothetical protein 2.09772275841e-05 2.94914456261e-05 8.514218042e-06 +UniRef50_A1B2B5 Polysaccharide export protein 0.00210196899702 0.00033816666398 -0.00176380233304 +UniRef50_UPI000225EB41 FAD dependent oxidoreductase 2.36573505899e-05 0.00252717590457 0.00250351855398 +UniRef50_UPI0003B63FA5 hemolysin III 7.76568791787e-06 1.03646502946e-05 2.59896237673e-06 +UniRef50_Q67KN6 NADH quinone oxidoreductase subunit B 2 1.24321375994e-05 1.47641445421e-05 2.3320069427e-06 +UniRef50_Q46901 CRISPR system Cascade subunit CasA 0.00128953394128 0.00109734315681 -0.00019219078447 +UniRef50_UPI0003AB1459 hypothetical protein 0.000165871459254 0.000651749256272 0.000485877797018 +UniRef50_UPI000473BBBF ABC transporter, partial 1.08017190095e-05 7.25055494675e-05 6.1703830458e-05 +UniRef50_P26647 1 acyl sn glycerol 3 phosphate acyltransferase 0.00361027609027 0.000682304693505 -0.00292797139677 +UniRef50_A0A059E9X7 0.000177802645998 8.8480133685e-05 -8.9322512313e-05 +UniRef50_UPI000473AECE 4 alpha glucanotransferase 1.56260874176e-05 0.00062188175466 0.000606255667242 +UniRef50_P24241 PTS system arbutin , cellobiose , and salicin specific EIIBC component 0.000959976124565 0.00167955131452 0.000719575189955 +UniRef50_I4KLQ2 Phosphate ABC transporter, permease protein 0.00064206337963 0.000693388382863 5.1325003233e-05 +UniRef50_A7X4U8 ATP synthase subunit delta 0.0274847006939 0.00529113851919 -0.0221935621747 +UniRef50_X2NAF9 Glycerol 3 phosphate dehydrogenase 0.00125208932704 0.000652027110056 -0.000600062216984 +UniRef50_UPI000361DA3C hypothetical protein 0.000833399264168 0.000124167937525 -0.000709231326643 +UniRef50_B4RQ53 0.000428969156652 0.00466222470045 0.0042332555438 +UniRef50_Q9FZ42 Glucose and ribitol dehydrogenase homolog 1 1.89084954643e-05 3.78563893164e-05 1.89478938521e-05 +UniRef50_A3PPH2 0.000674917133269 0.000707415861126 3.2498727857e-05 +UniRef50_I4YVW1 TRAP type C4 dicarboxylate transport system, small permease component 5.31021978418e-05 3.43527978771e-05 -1.87493999647e-05 +UniRef50_Q9RRJ1 Nucleoside diphosphate kinase 1.3146618852e-05 0.00609016050498 0.00607701388613 +UniRef50_S5N397 p6.9 0.000227579096253 3.60965429503e-05 -0.000191482553303 +UniRef50_UPI000328C952 PREDICTED 0.000259285633722 0.000367228242781 0.000107942609059 +UniRef50_Q0BEA7 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.000302262802495 0.000317166439827 1.4903637332e-05 +UniRef50_A6M2L1 0.000224186990672 0.000986691849689 0.000762504859017 +UniRef50_UPI0004095AFD hypothetical protein 5.36155723618e-05 3.46015217629e-05 -1.90140505989e-05 +UniRef50_M1MFL6 ATP dependent DNA helicase Rep 0.000111519982377 0.00108831705254 0.000976797070163 +UniRef50_B7K205 Peptide chain release factor 1 0.00557848924943 0.000929519190096 -0.00464897005933 +UniRef50_S6AT82 0.00216982459302 0.00649894566187 0.00432912106885 +UniRef50_Q2J4N0 Phosphoribosylformylglycinamidine synthase 1 0.00024657308765 0.0124109828601 0.0121644097725 +UniRef50_P76657 Inner membrane protein YqiJ 0.00304621659419 0.00145955537989 -0.0015866612143 +UniRef50_UPI000474867C helicase 6.52713525415e-05 0.000108687316974 4.34159644325e-05 +UniRef50_W5X6U2 Glycoside hydrolase family 28 4.81315052871e-05 2.86777787273e-05 -1.94537265598e-05 +UniRef50_Q83MG9 Probable crotonobetaine carnitine CoA ligase 0.00424737238161 0.000738914603909 -0.0035084577777 +UniRef50_UPI000374E0DC hypothetical protein 2.71531122792e-05 0.000173432073752 0.000146278961473 +UniRef50_UPI0003182F0E amino acid ABC transporter ATP binding protein 0.000151848825991 7.40032027594e-05 -7.78456232316e-05 +UniRef50_A1VXS2 GTP cyclohydrolase 1 3.11475697043e-05 0.00803465479294 0.00800350722324 +UniRef50_A3NGW6 2 aminoethylphosphonate pyruvate transaminase 0.000635841260221 0.000527875642999 -0.000107965617222 +UniRef50_Q5F904 Cytidylate kinase 9.03460444211e-06 5.43577638848e-05 4.53231594427e-05 +UniRef50_D2ZRU8 Transglutaminase like protein 0.00359887721456 0.00086684012795 -0.00273203708661 +UniRef50_D5QFG0 Oligopeptide dipeptide ABC transporter, ATP binding protein like protein 0.00744897272059 0.00146101880512 -0.00598795391547 +UniRef50_UPI0003B64D82 DNA topoisomerase III 4.59698119917e-06 6.22626347786e-06 1.62928227869e-06 +UniRef50_UPI00016AA13E hypothetical protein 0.00016667708334 0.000406548696204 0.000239871612864 +UniRef50_Q9CM13 Magnesium and cobalt efflux protein CorC 0.00155357691633 0.000203432862359 -0.00135014405397 +UniRef50_A5UMG3 Potassium transport system, membrane component, KefB 0.00272328369291 0.000406295068956 -0.00231698862395 +UniRef50_Q9HZP9 Precorrin 4 C methyltransferase 0.000312833692416 2.17181010258e-05 -0.00029111559139 +UniRef50_Q9RVT2 0.000871121512734 0.0590542470524 0.0581831255397 +UniRef50_UPI000375E2EF hypothetical protein 0.000324993960027 9.30806073818e-05 -0.000231913352645 +UniRef50_Q6GE66 Probable malate 0.0166860722604 0.00215418778532 -0.0145318844751 +UniRef50_G7M706 Helix turn helix domain protein 0.000660666894504 0.000836811138647 0.000176144244143 +UniRef50_C5VY51 AzlC family protein 0.00324217012165 0.00294864050536 -0.00029352961629 +UniRef50_G5JXL5 Rod shape determining protein MreD 0.0041767438353 0.000350177911301 -0.003826565924 +UniRef50_F3EJZ8 Nitrate reductase 0.000289289472983 0.000149088990278 -0.000140200482705 +UniRef50_X0YTR7 Marine sediment metagenome DNA, contig 1.7824664518e-05 5.81656972798e-05 4.03410327618e-05 +UniRef50_UPI000471CA6A hypothetical protein 1.17911908514e-05 3.01185690832e-05 1.83273782318e-05 +UniRef50_UPI0003637C6B hypothetical protein 4.09722061318e-06 6.52884024894e-06 2.43161963576e-06 +UniRef50_X2GN29 Metal ABC transporter permease 0.0193804739881 0.00609686235275 -0.0132836116353 +UniRef50_UPI000423E6F5 hypothetical protein 1.84440341707e-05 4.29187666253e-05 2.44747324546e-05 +UniRef50_UPI00046990FD O acetylhomoserine aminocarboxypropyltransferase 2.68455580989e-05 3.32256545049e-05 6.380096406e-06 +UniRef50_F3U3H0 ABC peptide opine transporter, periplasmic substrate binding protein 0.00649281197224 0.00256849384026 -0.00392431813198 +UniRef50_UPI0003B4A86D ABC transporter ATP binding protein 2.75671047908e-05 0.000145948801259 0.000118381696468 +UniRef50_B3PG87 Metallo beta lactamase superfamily domain protein 0.00191698106923 0.00135118073172 -0.00056580033751 +UniRef50_A0A023X460 HGPRTase 0.0116587614098 0.00874283461916 -0.00291592679064 +UniRef50_A0A059IPV7 3.22776355119e-05 5.47785584726e-05 2.25009229607e-05 +UniRef50_F9NYN7 Conserved domain protein 2.10792734961e-05 1.82277505187e-05 -2.8515229774e-06 +UniRef50_UPI00046C8F06 50S ribosomal protein L1 2.87599279876e-05 0.00029912818424 0.000270368256252 +UniRef50_H5T409 ABC transporter substrate binding protein 1.64349257588e-05 1.36336056775e-05 -2.8013200813e-06 +UniRef50_D8N394 5.14014845735e-07 0.000230198674676 0.00022968465983 +UniRef50_E0MSL9 Thymocyte nuclear protein 1 0.000214039403528 7.68021641043e-05 -0.000137237239424 +UniRef50_A6M2L8 Protein tyrosine phosphatase 0.000761355179524 0.000794866846363 3.3511666839e-05 +UniRef50_A6LYX8 ABC transporter related 0.000444407956235 0.00233264697442 0.00188823901818 +UniRef50_A8Z6F5 Chorismate synthase 4.66752535798e-06 2.32425642669e-05 1.85750389089e-05 +UniRef50_B5L3R8 WfeY 0.000121904558218 1.17898064305e-05 -0.000110114751788 +UniRef50_UPI00047E8000 hypothetical protein 1.44412795432e-05 2.92841500612e-05 1.4842870518e-05 +UniRef50_M9V9W9 0.000320355860411 0.00334421710288 0.00302386124247 +UniRef50_W5ENS0 0.000122295676732 0.000216403482487 9.4107805755e-05 +UniRef50_Q8CNA9 Phosphoglycolate phosphatase 0.0264437636495 0.00605454864904 -0.0203892150005 +UniRef50_B9KMF0 0.00061197918371 7.85355569744e-05 -0.000533443626736 +UniRef50_R8ZAQ7 Sarcosine oxidase subunit alpha 0.00048718082496 0.000970181975066 0.000483001150106 +UniRef50_UPI00023B2764 9.24284892252e-05 0.000111694104904 1.92656156788e-05 +UniRef50_UPI0003C11580 PREDICTED 4.00856192739e-05 0.00073225148054 0.000692165861266 +UniRef50_Q9K8U9 Oligo 1,6 glucosidase 2.96870063558e-05 5.45003182906e-05 2.48133119348e-05 +UniRef50_UPI0002557D02 hypothetical protein 9.42131105622e-05 2.63325686945e-05 -6.78805418677e-05 +UniRef50_G7M7C0 Cell wall binding repeat containing protein 0.000524837713307 0.00174192079327 0.00121708307996 +UniRef50_P0AAF0 Probable cadaverine lysine antiporter 0.00328549138473 0.00261423317635 -0.00067125820838 +UniRef50_X1BS27 Marine sediment metagenome DNA, contig 8.39219792183e-06 0.000833278922693 0.000824886724771 +UniRef50_UPI000478AB20 ABC transporter ATP binding protein 7.94809058969e-06 3.53692605646e-05 2.74211699749e-05 +UniRef50_F0RJQ8 Acetolactate synthase 6.66543829593e-05 0.0181524746349 0.0180858202519 +UniRef50_A8IE40 Chromate transport protein 0.000227858745785 0.0114583824763 0.0112305237305 +UniRef50_W1YMN4 2.71576867072e-05 1.93955156783e-05 -7.7621710289e-06 +UniRef50_UPI000403C5BD hypothetical protein 1.15042475194e-06 5.97033688853e-06 4.81991213659e-06 +UniRef50_UPI000373B07D hypothetical protein 5.03149491931e-05 0.0023452986544 0.00229498370521 +UniRef50_D4ZGG3 6.26483866483e-05 3.45759184601e-05 -2.80724681882e-05 +UniRef50_C7RB36 Acyl CoA dehydrogenase domain protein 0.000419858406031 0.00715211876228 0.00673226035625 +UniRef50_P56904 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.000297730951128 0.00155432747759 0.00125659652646 +UniRef50_Q04760 Lactoylglutathione lyase 9.65764210344e-06 2.45987469006e-05 1.49411047972e-05 +UniRef50_Q8CNV0 Spore cortex protein like protein 0.0202037879956 0.00581123780409 -0.0143925501915 +UniRef50_UPI00029B28E4 hydrogenase nickel incorporation protein HypA 4.29119391833e-05 2.93511963384e-05 -1.35607428449e-05 +UniRef50_UPI0003B738BF O acetylhomoserine aminocarboxypropyltransferase 3.37917667269e-05 1.98595781917e-05 -1.39321885352e-05 +UniRef50_UPI00037956D5 hypothetical protein 0.000355002497348 0.000538571498834 0.000183569001486 +UniRef50_UPI00017458ED ATP binding transport protein; multicopy suppressor of HtrB 3.79513768276e-05 3.10307854756e-05 -6.920591352e-06 +UniRef50_K1H2M5 Carbamoyl phosphate synthase small chain 3.3765307492e-05 1.50871337279e-05 -1.86781737641e-05 +UniRef50_Q59330 Phosphate acetyltransferase 9.94885703294e-06 0.000917584688273 0.00090763583124 +UniRef50_Q5HQY7 Glycerate kinase family protein 0.0230993969468 0.00753952607299 -0.0155598708738 +UniRef50_B0S0R4 Transcriptional regulator PadR family 0.000166711485341 3.28638116755e-05 -0.000133847673665 +UniRef50_A6LXB1 0.000542483980407 0.000779854278838 0.000237370298431 +UniRef50_P08194 Glycerol 3 phosphate transporter 0.00284773049005 0.00177966095472 -0.00106806953533 +UniRef50_UPI000471094A choline dehydrogenase 4.33495444514e-05 9.76951704318e-06 -3.35800274082e-05 +UniRef50_M0E7L5 DRTGG domain protein 0.000665300784727 0.000446857376782 -0.000218443407945 +UniRef50_UPI0003EDAB70 hypothetical protein, partial 1.2175805297e-05 3.21435333812e-06 -8.96145195888e-06 +UniRef50_A9U7B4 Predicted protein 1.19998569447e-05 5.56513266428e-05 4.36514696981e-05 +UniRef50_A3PJJ0 Rhodanese domain protein 0.00462663793668 0.000728319353752 -0.00389831858293 +UniRef50_UPI00035C57AE hypothetical protein 8.81151380126e-06 3.50981612289e-05 2.62866474276e-05 +UniRef50_UPI00046311A7 alpha beta hydrolase 6.79545757869e-06 1.98103872999e-05 1.30149297212e-05 +UniRef50_UPI00046F6433 hypothetical protein 9.04574574476e-06 1.36758151937e-05 4.63006944894e-06 +UniRef50_UPI000289D647 acetylglutamate kinase 3.03362657076e-05 1.1136113666e-05 -1.92001520416e-05 +UniRef50_R6BWJ5 Efflux ABC transporter permease ATP binding protein 0.0039281974601 0.00127546790154 -0.00265272955856 +UniRef50_H9UWH8 4.09173312276e-05 8.86865088187e-05 4.77691775911e-05 +UniRef50_Q4SXX9 Chromosome undetermined SCAF12296, whole genome shotgun sequence. 0.000218209544355 0.000315105744735 9.689620038e-05 +UniRef50_F9YXR6 6 aminohexanoate dimer hydrolase 0.000203154129289 0.00703700367635 0.00683384954706 +UniRef50_Q0A9A9 3 isopropylmalate dehydratase small subunit 0.00435489648606 0.00266770011918 -0.00168719636688 +UniRef50_Q88FY7 Porin like protein NicP 0.000710914110435 0.000233144767263 -0.000477769343172 +UniRef50_A4WTZ9 Glycoside hydrolase, family 16 0.0151570967007 0.00233932231203 -0.0128177743887 +UniRef50_U4K6F1 Methylmalonate semialdehyde dehydrogenase [acylating] 0.00042724051235 0.0040759234227 0.00364868291035 +UniRef50_A0A023RX61 Metal binding protein 0.000207030706866 0.00749591711923 0.00728888641236 +UniRef50_Q75JL2 Mitochondrial DNA repair protein recA homolog 0.0171291469068 0.00717525230782 -0.00995389459898 +UniRef50_Q03SY7 Dipeptide tripeptide permease 0.000305245126778 0.00104756524836 0.000742320121582 +UniRef50_Q1CBV8 Phosphoenolpyruvate carboxylase 0.00323069753667 0.000503146823898 -0.00272755071277 +UniRef50_E9MXH2 Clumping factor A 2.19662327627e-05 3.06516250148e-05 8.6853922521e-06 +UniRef50_Q8GPI8 0.00650048990936 0.00168592373696 -0.0048145661724 +UniRef50_P0ACL3 Exu regulon transcriptional regulator 0.00643298976639 0.00163618490691 -0.00479680485948 +UniRef50_U1FCM2 7.27781730365e-05 0.000227966559755 0.000155188386719 +UniRef50_S5XWF4 Transcriptional regulator, MerR family 0.0408945019794 0.00107350078112 -0.0398210011983 +UniRef50_Q48QI5 Oxidoreductase alpha subunit, fusion 0.000266838818597 0.000269285749417 2.44693082e-06 +UniRef50_C5N6C7 DHHA1 domain protein 0.0144190351288 0.00772569847387 -0.00669333665493 +UniRef50_F5YTR0 3.88411229488e-06 1.67695379008e-06 -2.2071585048e-06 +UniRef50_G8VCG0 Acyltransferase 0.000124173022652 0.00271566575488 0.00259149273223 +UniRef50_P0AAN4 Hydrogenase isoenzymes nickel incorporation protein HypB 0.000897783075371 0.000898070266572 2.87191201e-07 +UniRef50_G3XD29 Na H(+) antiporter NhaP 0.000649990968404 0.000169559830726 -0.000480431137678 +UniRef50_G7U530 ABC transporter, ATP binding protein 0.000171066158086 0.00362712468574 0.00345605852765 +UniRef50_UPI0003B392E0 hypothetical protein 1.49313321786e-05 3.74806216369e-05 2.25492894583e-05 +UniRef50_M9V971 NADH quinone oxidoreductase subunit C 0.000236915892584 0.00403669441218 0.0037997785196 +UniRef50_Q2IMR8 0.000151415191822 0.000822296315087 0.000670881123265 +UniRef50_K8AK15 Putative threonine efflux protein 0.000418586823927 0.000469632869441 5.1046045514e-05 +UniRef50_Q7VFT4 Donor ubiquinone reductase I 7.9806762976e-05 0.002299864913 0.00222005815002 +UniRef50_C1DNP3 Short chain dehydrogenase reductase SDR 0.000355002497348 0.00207380049203 0.00171879799468 +UniRef50_C7ZV90 Thioredoxin 0.00553694694329 0.00182670126925 -0.00371024567404 +UniRef50_K9RE57 GAF domain containing protein 3.50148333121e-06 0.000401341716278 0.000397840232947 +UniRef50_L1AYN6 Inner membrane protein ybjJ 0.00096647296573 0.000472721838441 -0.000493751127289 +UniRef50_Q0B621 Sigma54 specific transcriptional regulator, Fis family 9.43714972093e-05 0.00012262285337 2.82513561607e-05 +UniRef50_UPI000371346A hypothetical protein 2.06154441932e-05 1.11367090776e-05 -9.4787351156e-06 +UniRef50_A3M4G7 Surface antigen 0.000716745548459 0.0086049177893 0.00788817224084 +UniRef50_E2XNF0 Fatty acid oxidation complex subunit alpha 0.000619969900142 0.000272526302036 -0.000347443598106 +UniRef50_I0G4P6 9.93697147663e-05 3.18488107351e-05 -6.75209040312e-05 +UniRef50_Q9HJL5 Malate dehydrogenase 4.05335437595e-05 2.2644805839e-05 -1.78887379205e-05 +UniRef50_P0ACU3 HTH type transcriptional regulator RutR 0.000557344305512 0.000824139642406 0.000266795336894 +UniRef50_C1FT82 D alanyl D alanine carboxypeptidase family protein 0.000639806760763 0.00053975262049 -0.000100054140273 +UniRef50_O32333 Glucitol sorbitol specific phosphotransferase enzyme IIB component 0.00380853036399 0.00914603950022 0.00533750913623 +UniRef50_UPI00037CE211 hypothetical protein 2.30410280647e-06 5.24551457363e-06 2.94141176716e-06 +UniRef50_G5LK96 Putative cytoplasmic protein 1.87403410728e-05 9.79140335994e-06 -8.94893771286e-06 +UniRef50_UPI0004694C70 glucosamine fructose 6 phosphate aminotransferase 2.29731541851e-05 3.95087757806e-05 1.65356215955e-05 +UniRef50_V5VA73 0.000102763880809 0.00508829324991 0.0049855293691 +UniRef50_UPI0002491573 N acylamino acid racemase 1.32760121742e-05 0.000621143354204 0.00060786734203 +UniRef50_UPI00046F1E63 spermidine putrescine ABC transporter ATP binding protein 0.000144007283286 4.16227035212e-05 -0.000102384579765 +UniRef50_M9VHY4 DeoR family transcriptional regulator 0.000302796247737 0.00625510872728 0.00595231247954 +UniRef50_UPI000345870C hypothetical protein 0.000241581313303 0.000123692308472 -0.000117889004831 +UniRef50_L8N0M9 1.65873532762e-05 0.013027794984 0.0130112076307 +UniRef50_P16684 Probable transcriptional regulator PhnF 0.0020767266039 0.000591429379792 -0.00148529722411 +UniRef50_P63978 DNA polymerase III subunit alpha 3.33008563678e-06 0.00437896057995 0.00437563049431 +UniRef50_D8IGU8 ABC superfamily ATP binding cassette transporter, ABC protein 0.00313284475072 0.00237521610529 -0.00075762864543 +UniRef50_Q604M0 tRNA pseudouridine synthase D 4.58948250417e-06 2.18074369399e-05 1.72179544357e-05 +UniRef50_M0EDY5 8.16215159392e-05 3.98979030029e-05 -4.17236129363e-05 +UniRef50_Y1FPC0 5.78450819582e-06 9.58127039807e-06 3.79676220225e-06 +UniRef50_UPI0000E48FF4 PREDICTED 4.09363282213e-05 5.18116360823e-05 1.0875307861e-05 +UniRef50_Q0S277 Probable dual specificity RNA methyltransferase RlmN 2.19875717813e-05 3.2801672109e-05 1.08141003277e-05 +UniRef50_Q3IVM7 0.00478719323747 0.00142567740779 -0.00336151582968 +UniRef50_A3V1R1 Flagellar protein FlgJ, putative 0.000116815451647 6.1708474133e-05 -5.5106977514e-05 +UniRef50_UPI000370C492 hypothetical protein 6.90633429479e-05 2.48681221594e-05 -4.41952207885e-05 +UniRef50_UPI0004647D08 hypothetical protein 3.94375058902e-06 5.33625610055e-06 1.39250551153e-06 +UniRef50_P58839 Glyceraldehyde 3 phosphate dehydrogenase 0.00383353550346 0.00218700099375 -0.00164653450971 +UniRef50_UPI0003B6456C ATP dependent Clp protease ClpS 0.000466581291291 0.000180998448197 -0.000285582843094 +UniRef50_H9V023 TRAP transporter, DctM subunit 0.00038819860474 7.77946338983e-05 -0.000310403970842 +UniRef50_U7IWX4 4.90081696955e-05 0.000102163458263 5.31552885675e-05 +UniRef50_UPI0001746414 glycogen debranching protein 6.7671981773e-06 2.35994486284e-05 1.68322504511e-05 +UniRef50_F4CX14 FAD dependent oxidoreductase 7.96889859886e-06 0.000855440987 0.000847472088401 +UniRef50_N1MM41 3.26353404007e-05 3.30118681505e-05 3.765277498e-07 +UniRef50_UPI0003B5E825 ArsR family transcriptional regulator, partial 0.000126418600835 2.22867962678e-05 -0.000104131804567 +UniRef50_UPI00039D6F74 ubiquinol cytochrome C oxidoreductase 0.000117058806297 0.000326570611313 0.000209511805016 +UniRef50_Q0E4C7 Os02g0125700 protein 0.000184294076221 0.000118522075738 -6.5772000483e-05 +UniRef50_UPI00036A48DC hypothetical protein 6.93114996286e-05 3.0885181098e-05 -3.84263185306e-05 +UniRef50_Q5WDJ2 Putative sporulation transcription regulator WhiA 0.0232197598952 0.00729635775466 -0.0159234021405 +UniRef50_UPI00047AAA82 hypothetical protein 5.1133017633e-06 2.08152779195e-05 1.57019761562e-05 +UniRef50_Q0Q2J7 Putative antiporter subunit mnhD2 0.0167697175769 0.00669537082244 -0.0100743467545 +UniRef50_P43948 UDP N acetylmuramate 0.000262772192774 0.00749404349647 0.0072312713037 +UniRef50_Q28RG9 Transcriptional regulator, AsnC family 0.00126323970846 0.00464631616173 0.00338307645327 +UniRef50_B7L8J6 2 3 dephosphocoenzyme A synthase 0.00331605033119 0.000970283455674 -0.00234576687552 +UniRef50_UPI0003AEE558 PREDICTED 0.000200790419604 4.53085188458e-05 -0.000155481900758 +UniRef50_UPI00036ED489 hypothetical protein 1.7605382809e-05 6.9202572094e-05 5.1597189285e-05 +UniRef50_UPI0003B77D2D DNA repair protein RadA 7.92941540656e-06 5.43068307366e-06 -2.4987323329e-06 +UniRef50_H6LCQ4 Branched chain amino acid ABC transport system permease protein LivM2 0.000344817063516 0.0011131923804 0.000768375316884 +UniRef50_UPI0004663E52 hypothetical protein 5.87993363731e-05 1.26598349593e-05 -4.61395014138e-05 +UniRef50_D8HCQ5 Aminopeptidase 0.00907523285814 0.00184063450864 -0.0072345983495 +UniRef50_Q2YQI5 Adenylosuccinate synthetase 0.00191397932047 0.0141961314676 0.0122821521471 +UniRef50_UPI0003B6ABA5 sugar ABC transporter ATPase, partial 6.02864137675e-05 1.21251564985e-05 -4.8161257269e-05 +UniRef50_A1APQ8 Succinyl CoA ligase [ADP forming] subunit beta 1.94654465478e-05 1.25561975779e-05 -6.9092489699e-06 +UniRef50_K4MG34 Beta Ig H3 fasciclin 1.42956855037e-05 3.28145401269e-06 -1.1014231491e-05 +UniRef50_P56145 Phenylalanine tRNA ligase beta subunit 0.000167694835908 0.00406839703335 0.00390070219744 +UniRef50_Q1RH95 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.6665989051e-05 1.81121988447e-05 1.4462097937e-06 +UniRef50_D5WB27 Histidine ammonia lyase 0.00017612479445 0.00760901936351 0.00743289456906 +UniRef50_J9NST0 1.73336490442e-05 5.22636825252e-05 3.4930033481e-05 +UniRef50_P00561 Bifunctional aspartokinase homoserine dehydrogenase 1 0.000530309264921 0.00057016696198 3.9857697059e-05 +UniRef50_UPI00047E7181 hypothetical protein 2.53902412244e-06 0.000205978482689 0.000203439458567 +UniRef50_UPI000421E015 hypothetical protein 2.90051009587e-06 3.02782724178e-05 2.73777623219e-05 +UniRef50_UPI0003B5F4A9 hypothetical protein 4.49433847056e-05 5.48705522192e-05 9.9271675136e-06 +UniRef50_P77615 0.00277974044814 0.00306723218398 0.00028749173584 +UniRef50_P77616 0.00149638617425 0.000237202172853 -0.0012591840014 +UniRef50_D5AQK3 Cache sensor protein 0.00898676496674 0.00322197543682 -0.00576478952992 +UniRef50_UPI0003B4A397 hypothetical protein, partial 3.10325434458e-05 2.71625023638e-05 -3.870041082e-06 +UniRef50_UPI00047E19A4 ABC transporter ATP binding protein 2.84490179267e-05 1.91452053039e-05 -9.3038126228e-06 +UniRef50_Q9V8M5 Probable 3 hydroxyisobutyrate dehydrogenase, mitochondrial 9.54187117465e-06 3.7021116699e-05 2.74792455244e-05 +UniRef50_I0KAK8 Major facilitator superfamily MFS_1 9.07418242453e-05 0.00551195591426 0.00542121409001 +UniRef50_UPI00046328AB hypothetical protein 1.67185495395e-05 1.31065009385e-05 -3.612048601e-06 +UniRef50_I6TSN2 Peptidase 0.00590506649337 0.00307190401022 -0.00283316248315 +UniRef50_UPI000463E283 ABC transporter substrate binding protein 8.08805608656e-06 7.575058767e-05 6.76625315834e-05 +UniRef50_G0AA04 Sulfate binding protein sbp 0.00408174572246 0.00764593547626 0.0035641897538 +UniRef50_I6TQ24 Folyl polyglutamate synthetase 0.00654218379533 0.0044296181832 -0.00211256561213 +UniRef50_UPI000366242D hypothetical protein 1.01129802477e-05 2.18898030309e-05 1.17768227832e-05 +UniRef50_S9RVB4 Gene Transfer Agent NlpC P60 family peptidase 3.7055222693e-06 3.98363849304e-05 3.61308626611e-05 +UniRef50_M1MRW4 Haloacid dehalogenase superfamily enzyme, subfamily IA 0.000172368031437 0.000591689469991 0.000419321438554 +UniRef50_U6AND4 Transcriptional regulator, LysR family 0.000326625231868 0.000520367091081 0.000193741859213 +UniRef50_UPI0003809FBC gluconate transporter, partial 6.67594907431e-06 0.000187257969817 0.000180582020743 +UniRef50_A9ANH6 Transcriptional regulator, AraC family 0.000135786326927 0.000216349234575 8.0562907648e-05 +UniRef50_UPI0004708F76 ABC transporter ATP binding protein 2.36265625571e-05 4.57605766819e-05 2.21340141248e-05 +UniRef50_UPI00036BF64F hypothetical protein 6.29481283748e-06 8.80365369561e-06 2.50884085813e-06 +UniRef50_Q8G5P8 Methionine import ATP binding protein MetN 1.11933076521e-05 7.63900334175e-06 -3.55430431035e-06 +UniRef50_D3E2P1 Bicarbonate ABC transporter ATP binding protein BtcA 0.00452309951396 0.00129070068068 -0.00323239883328 +UniRef50_I6TQK5 0.00578422433849 0.00033432079833 -0.00544990354016 +UniRef50_A1UAJ5 0.00920037897169 0.00319629765922 -0.00600408131247 +UniRef50_I6U427 Sugar binding periplasmic protein 0.00481288687163 0.00146180753323 -0.0033510793384 +UniRef50_C7D6Q8 Lipoprotein, putative 1.84903573751e-05 1.48174907703e-05 -3.6728666048e-06 +UniRef50_P36928 0.00398547122777 0.000813460942127 -0.00317201028564 +UniRef50_Q5HLU9 0.0102665343482 0.00204692028092 -0.00821961406728 +UniRef50_A6UM37 0.000987740897369 0.000334363005098 -0.000653377892271 +UniRef50_W1MWT9 0.000756600516044 0.000229223833269 -0.000527376682775 +UniRef50_Q5HLU0 0.00084672416931 0.00096825149244 0.00012152732313 +UniRef50_G7Z253 0.00108788854871 0.000758250307607 -0.000329638241103 +UniRef50_UPI0003784C38 hypothetical protein 8.29434288576e-06 3.78072509614e-05 2.95129080756e-05 +UniRef50_Q168A3 Holliday junction ATP dependent DNA helicase RuvA 4.47058521567e-05 2.13994459434e-05 -2.33064062133e-05 +UniRef50_Q9RSC3 UDP glucose 4 epimerase 0.000405304692528 0.0203168803191 0.0199115756266 +UniRef50_A8AJ50 0.000424141560512 0.000661156802679 0.000237015242167 +UniRef50_UPI000465930A MULTISPECIES 1.83696336188e-05 2.38254004777e-05 5.4557668589e-06 +UniRef50_A7ZQY1 D phenylhydantoinase 0.00343279192196 0.00105400190068 -0.00237879002128 +UniRef50_Q8RGA3 Tryptophan tRNA ligase 7.81405623949e-06 1.61317779569e-05 8.31772171741e-06 +UniRef50_UPI000475AC4B lactate permease 4.80190225406e-06 2.58909894511e-05 2.1089087197e-05 +UniRef50_UPI0000164CFE hypothetical protein DR_2417m 0.000657459458912 0.0487816943293 0.0481242348704 +UniRef50_E4PYL2 Plasmid recombination protein, Mob family 0.027198422793 0.00449850209926 -0.0226999206937 +UniRef50_UPI0003614BF9 hypothetical protein 0.000929398911926 0.000637981684785 -0.000291417227141 +UniRef50_K0LK11 ABC transporter, ATP binding protein 0.0182013804019 0.00609182674174 -0.0121095536602 +UniRef50_A5UME7 Arsenite transporting ATPase 0.0038032037515 0.000981813823058 -0.00282138992844 +UniRef50_Q8CQM8 0.0141874817969 0.00577124006317 -0.00841624173373 +UniRef50_UPI0003A8604F DNA polymerase I 1.83482923464e-06 3.89210870262e-06 2.05727946798e-06 +UniRef50_Q9KVU3 Peptide deformylase 1 8.77624864117e-05 5.50704173912e-05 -3.26920690205e-05 +UniRef50_T1Y647 Ribitol 5 phosphate 2 dehydrogenase 0.0251449596379 0.0109745763734 -0.0141703832645 +UniRef50_A5ULT4 Adhesin like protein 0.00300512413483 0.00102613917044 -0.00197898496439 +UniRef50_B5F295 NAD kinase 6.04582796427e-05 8.55455051512e-05 2.50872255085e-05 +UniRef50_UPI0003796137 hypothetical protein 3.01303514984e-05 0.000275245003707 0.000245114652209 +UniRef50_UPI00032895A1 PREDICTED 2.23098804281e-05 5.17511559535e-06 -1.71347648327e-05 +UniRef50_A5KZG1 Sex pilus assembly and synthesis protein TraW 0.000127498867064 2.70174144772e-05 -0.000100481452587 +UniRef50_UPI000377C2D0 hypothetical protein 8.06877810059e-05 2.69348466021e-05 -5.37529344038e-05 +UniRef50_P0AFB0 Nickel transport system permease protein NikC 0.00339311427549 0.00107420143177 -0.00231891284372 +UniRef50_D8JIG5 3.41654998594e-05 5.37531484332e-05 1.95876485738e-05 +UniRef50_UPI0002195926 spermidine putrescine ABC transporter substrate binding protein 2.63265855334e-05 0.000111378965981 8.50523804476e-05 +UniRef50_M1MNN2 0.000173158710486 0.00076512568067 0.000591966970184 +UniRef50_D8FZ53 1.44890968787e-05 0.000285515219498 0.000271026122619 +UniRef50_J7LRM2 Gamma aminobutyraldehyde dehydrogenase 7.97505610236e-05 0.00720929462535 0.00712954406433 +UniRef50_E6U6T5 Major facilitator superfamily MFS_1 0.00110852314383 0.0016799595578 0.00057143641397 +UniRef50_F2JM65 Alcohol dehydrogenase 0.000435691095207 0.00114048192533 0.000704790830123 +UniRef50_A5UKJ6 0.00258369193486 0.000322750497486 -0.00226094143737 +UniRef50_P40924 Phosphoglycerate kinase 5.23413886284e-05 0.0203077273163 0.0202553859277 +UniRef50_UPI0003804C63 hypothetical protein 1.92743421822e-05 1.88740800277e-05 -4.002621545e-07 +UniRef50_UPI000362831E hypothetical protein 2.54620468734e-06 0.000689441014069 0.000686894809382 +UniRef50_W8RX73 Cytochrome C 0.00112888599176 0.0013691531857 0.00024026719394 +UniRef50_P32014 Capsule polysaccharide export inner membrane protein CtrB 0.000334034435074 0.00335474366775 0.00302070923268 +UniRef50_I7DUX8 ABC transporter ATP binding protein 0.00447182700257 0.00101300364074 -0.00345882336183 +UniRef50_G2L2K0 Penicillin binding protein 3A 0.000158068812007 0.000545330940557 0.00038726212855 +UniRef50_Q2LR78 Glutamate 5 kinase 4.25806369744e-06 6.18060963561e-06 1.92254593817e-06 +UniRef50_UPI000468E962 hypothetical protein 5.42210797777e-06 6.94435740917e-06 1.5222494314e-06 +UniRef50_Q5HRW9 0.0105854037675 0.00204636272098 -0.00853904104652 +UniRef50_Q5HKM6 0.0121409400019 0.00326961798458 -0.00887132201732 +UniRef50_UPI0002B8EE79 5.58404174135e-05 1.43148306175e-05 -4.1525586796e-05 +UniRef50_Q5HRW3 0.00352379205711 0.00251973321369 -0.00100405884342 +UniRef50_R6W4I9 Glycerol 3 phosphate dehydrogenase anaerobic B subunit 4.59991657778e-05 4.60013256345e-05 2.1598567e-09 +UniRef50_Q6DAT5 L threonine 3 dehydrogenase 8.62132554775e-05 0.000103134636585 1.69213811075e-05 +UniRef50_D6DGD0 Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain 0.00067836330399 0.00524925567144 0.00457089236745 +UniRef50_Q9FA54 Glucans biosynthesis protein G 0.00563411520595 0.00265096000823 -0.00298315519772 +UniRef50_UPI0002629408 riboflavin biosynthesis protein RibD 7.5952552475e-06 6.37567767136e-06 -1.21957757614e-06 +UniRef50_UPI00037ECE7A hypothetical protein 8.82781830821e-06 1.44908772334e-05 5.66305892519e-06 +UniRef50_H3CIZ8 0.000328248685954 9.13330065475e-05 -0.000236915679407 +UniRef50_C0ZDE1 ABC transporter substrate binding protein 0.022127574577 0.00916300584971 -0.0129645687273 +UniRef50_P56891 Phosphoadenosine phosphosulfate reductase 1.01505447278e-05 1.04529853861e-05 3.024406583e-07 +UniRef50_J0WNU1 5.05197272186e-05 2.02289879385e-06 -4.84968284248e-05 +UniRef50_UPI000467B474 integrase, partial 0.000549736876965 0.000286715247755 -0.00026302162921 +UniRef50_L9MX54 Phage like baseplate assembly protein 8.50596860029e-05 0.00500460460188 0.00491954491588 +UniRef50_UPI000454729B PREDICTED 1.62484531464e-05 5.08849853831e-06 -1.11599546081e-05 +UniRef50_E8RQD7 Peptidase M15A 4.15147683291e-06 1.10806945981e-05 6.92921776519e-06 +UniRef50_D1GNQ1 Aldo keto reductase family protein 0.0189278288728 0.00975261312967 -0.00917521574313 +UniRef50_P75835 Inner membrane transporter YcaM 0.00342985438353 0.00150097962544 -0.00192887475809 +UniRef50_B4T6V0 Orotidine 5 phosphate decarboxylase 9.11470863667e-05 0.00540022006541 0.00530907297904 +UniRef50_B9QX37 5.6926271745e-05 7.46556695816e-05 1.77293978366e-05 +UniRef50_UPI00046968BE hypothetical protein 3.09168702935e-06 5.04028006537e-06 1.94859303602e-06 +UniRef50_E6VT00 Periplasmic phosphate binding protein 5.53701504496e-06 7.83872394454e-06 2.30170889958e-06 +UniRef50_A6X6Y3 0.000196287472017 8.34500045881e-05 -0.000112837467429 +UniRef50_Q00UL4 WGS project CAID00000000 data, contig chromosome 16 0.0002271911947 3.21821203537e-05 -0.000195009074346 +UniRef50_W5XBC0 30S ribosomal protein S3 0.000286980109978 0.000586742306421 0.000299762196443 +UniRef50_T1ZLX4 Transaldolase 0.0322541136059 0.00365621992571 -0.0285978936802 +UniRef50_UPI00036712C2 hypothetical protein, partial 0.000164683891353 2.54545804178e-05 -0.000139229310935 +UniRef50_A5UL05 Conserved hypothetical membrane protein Msm_0678 0.00189966820991 0.000316410755563 -0.00158325745435 +UniRef50_C2THV2 0.000168689352317 0.00048412574623 0.000315436393913 +UniRef50_A6LQP6 0.000971819739094 0.000920158245145 -5.1661493949e-05 +UniRef50_Q9RV37 0.00131681158902 0.0313659508802 0.0300491392912 +UniRef50_F8JYV1 0.000104415643072 0.000113733545964 9.317902892e-06 +UniRef50_Q9RV33 0.000368878816464 0.284296397807 0.283927518991 +UniRef50_A6LQP1 0.000172894346045 0.00236709482168 0.00219420047563 +UniRef50_P66936 DNA gyrase subunit B 0.0265086483188 0.00810541267735 -0.0184032356415 +UniRef50_UPI00037BCD79 hypothetical protein, partial 4.2036591597e-05 0.000146838433029 0.000104801841432 +UniRef50_W5X9F8 Polyphosphate kinase 2.42284768311e-06 0.0001191110645 0.000116688216817 +UniRef50_B2VFX0 Protein Syd 0.00466402111213 0.000325716954257 -0.00433830415787 +UniRef50_Q5HLU5 SugE protein 0.00129914009151 0.000600644146164 -0.000698495945346 +UniRef50_Q88F38 Cation transporting P type ATPase 0.000168155470433 8.49832245247e-05 -8.31722459083e-05 +UniRef50_UPI0003B6672C 50S ribosomal protein L24, partial 5.60503169801e-05 0.000265006347746 0.000208956030766 +UniRef50_L5UXA6 Glycosyl transferase, group 2 family protein 0.000529873048328 0.0024938656632 0.00196399261487 +UniRef50_K4A3K7 0.000930730898387 0.000431164163464 -0.000499566734923 +UniRef50_UPI000475C24E phosphoribosylaminoimidazole carboxylase 6.1735596004e-06 6.12098101113e-06 -5.257858927e-08 +UniRef50_UPI0002F5CF5E hypothetical protein 1.05122041938e-05 1.31217912326e-05 2.6095870388e-06 +UniRef50_A5FNF9 Lipoyl synthase 5.47672342448e-06 4.08591233341e-05 3.53823999096e-05 +UniRef50_Q1LTX5 Adenylate kinase 7.8679174239e-06 1.31521698773e-05 5.2842524534e-06 +UniRef50_B2GLQ7 Biotin synthase 0.000435037591562 0.00673261521158 0.00629757762002 +UniRef50_B9KX84 0.000134364899842 0.00018248200115 4.8117101308e-05 +UniRef50_D2J7P9 Replication initiator protein 0.00834619944178 0.000133697660085 -0.0082125017817 +UniRef50_UPI0003F8A6FF hypothetical protein 5.24200468485e-05 8.5866025566e-05 3.34459787175e-05 +UniRef50_G2T679 CRISPR associated helicase Cas3 family protein 4.60988269145e-05 7.63116500443e-06 -3.84676619101e-05 +UniRef50_F4LK69 Regulatory protein TetR 0.00616809800164 0.00363507015887 -0.00253302784277 +UniRef50_Q8TWX0 Carbamoyl phosphate synthase large chain, N terminal section 1.94036608189e-05 7.10908551621e-06 -1.22945753027e-05 +UniRef50_D9PX81 FAD synthase 0.00131070661436 0.00212814756194 0.00081744094758 +UniRef50_X6N172 4.24489266771e-06 2.07307355095e-05 1.64858428418e-05 +UniRef50_X1SQS0 Marine sediment metagenome DNA, contig 2.16217787872e-05 0.000170333857364 0.000148712078577 +UniRef50_UPI000406F11E permease 3.64315753729e-06 1.49815793631e-05 1.13384218258e-05 +UniRef50_Q3IWF1 AMP binding enzyme 0.00115958987202 0.000562250478975 -0.000597339393045 +UniRef50_UPI0003B50149 5 amino 6 uracil reductase 6.02656334017e-06 5.99559404169e-05 5.39293770767e-05 +UniRef50_UPI0004787588 NAD dependent dehydratase 0.000402718204 3.94025422642e-05 -0.000363315661736 +UniRef50_UPI00036D4BC8 hypothetical protein, partial 6.87133260219e-05 6.20816136414e-05 -6.6317123805e-06 +UniRef50_I6T8B1 0.00117658764336 0.00280405393727 0.00162746629391 +UniRef50_UPI00034FE692 PREDICTED 5.26565911919e-05 0.00014013856307 8.74819718781e-05 +UniRef50_Q9RUD9 0.000126390398057 0.0249739433388 0.0248475529407 +UniRef50_M9S778 Two component sensor 0.000325859434811 0.000105219728687 -0.000220639706124 +UniRef50_UPI00037416F3 hypothetical protein 1.79114179214e-06 2.15382021394e-06 3.626784218e-07 +UniRef50_D4H976 Dihydrofolate reductase 0.000795642209936 0.00143022103662 0.000634578826684 +UniRef50_I3UPT4 AMP dependent synthetase and ligase 0.000416701857449 0.0158768196205 0.0154601177631 +UniRef50_A6LTP7 Multi sensor signal transduction histidine kinase 0.000349453338786 0.00188722532225 0.00153777198346 +UniRef50_U5MZ96 Sulfate adenylyltransferase subunit 1 0.000255381049746 0.00163710706659 0.00138172601684 +UniRef50_UPI00039A293C amino acid ABC transporter permease 4.96692090564e-05 3.83234720158e-05 -1.13457370406e-05 +UniRef50_UPI000417C130 MerR family transcriptional regulator 3.90654319672e-05 4.47251553353e-05 5.6597233681e-06 +UniRef50_B9KQ54 Phosphate starvation inducible E 0.00615068307641 0.00403373445639 -0.00211694862002 +UniRef50_K7UQK0 0.00040172288342 0.00037540259135 -2.632029207e-05 +UniRef50_UPI0003FD08E7 MULTISPECIES 7.90011968155e-06 9.5045789591e-06 1.60445927755e-06 +UniRef50_P95907 Glycerol kinase 2 2.36208727825e-05 8.13554320578e-05 5.77345592753e-05 +UniRef50_B3PN30 DNA gyrase subunit A 7.30528499122e-06 1.18001024997e-05 4.49481750848e-06 +UniRef50_K0HFT9 5.28198678376e-05 0.00409030991727 0.00403749004943 +UniRef50_UPI00046EC477 hypothetical protein, partial 4.89167655137e-05 3.51008431594e-05 -1.38159223543e-05 +UniRef50_UPI0004639765 hypothetical protein, partial 1.76355109358e-05 3.79588827765e-05 2.03233718407e-05 +UniRef50_UPI000225FA9E hypothetical protein 3.41257426237e-05 1.98715735663e-05 -1.42541690574e-05 +UniRef50_UPI0003041FF9 hypothetical protein 0.000165560394148 5.35261402834e-05 -0.000112034253865 +UniRef50_P44450 Formate dehydrogenase iron sulfur subunit 0.00497099228313 0.0010493614941 -0.00392163078903 +UniRef50_D4MEH6 Hemolysins and related proteins containing CBS domains 0.00751433152063 0.00421041737216 -0.00330391414847 +UniRef50_W6KFD1 2.01765961771e-05 1.03614413656e-05 -9.8151548115e-06 +UniRef50_P0AFF4 Nucleoside permease NupG 0.00695202810137 0.000827585499186 -0.00612444260218 +UniRef50_UPI0003B5C461 30S ribosomal protein S4 3.14893792771e-05 0.000267101127091 0.000235611747814 +UniRef50_UPI00036F3F50 hypothetical protein 1.37032091684e-05 2.40843544294e-05 1.0381145261e-05 +UniRef50_P52078 0.0171996635391 0.00520707337005 -0.0119925901691 +UniRef50_R7LL20 6.17942048372e-05 5.15338195262e-05 -1.0260385311e-05 +UniRef50_Q6FD51 Aminopeptidase P 8.93810549727e-05 0.00540022150259 0.00531084044762 +UniRef50_Q5GUU6 9.85568104139e-06 4.17115420451e-05 3.18558610037e-05 +UniRef50_A3K9P8 5.1674524753e-05 0.000106299060078 5.4624535325e-05 +UniRef50_Q2RVQ3 0.00158284656614 0.00083536463216 -0.00074748193398 +UniRef50_W4HQH1 1.3106406923e-05 1.5370601937e-05 2.264195014e-06 +UniRef50_P67051 Thymidylate synthase 0.00377263560373 0.00403727310054 0.00026463749681 +UniRef50_UPI0002492BAD sugar ABC transporter ATPase 1.42634758285e-05 2.08202325954e-05 6.5567567669e-06 +UniRef50_Q57180 0.000453037391315 0.0114759069772 0.0110228695859 +UniRef50_D0LYV0 2.59058104479e-05 7.32110425834e-06 -1.85847061896e-05 +UniRef50_UPI000478D57C hypothetical protein 5.16369785282e-06 1.97626488878e-05 1.4598951035e-05 +UniRef50_F9YXY3 Phosphate binding protein PstS 0.000330532551907 0.00631221279842 0.00598168024651 +UniRef50_Q9RTB2 6.6213513098e-05 0.0426761947741 0.042609981261 +UniRef50_R6QEM9 Oxidoreductase short chain dehydrogenase reductase family protein 0.000174762031871 0.00215212519749 0.00197736316562 +UniRef50_D8GL93 Adenine deaminase 0.000136645604629 0.00118400466695 0.00104735906232 +UniRef50_V8UF34 0.000232599735175 0.000114680532496 -0.000117919202679 +UniRef50_P0ACL0 Glycerol 3 phosphate regulon repressor 0.00307562852661 0.000776998345638 -0.00229863018097 +UniRef50_X5EPD5 Iron ascorbate oxidoreductase 0.000555064216431 0.0012547447402 0.000699680523769 +UniRef50_Q74RF9 Maltose transport system permease protein MalF 0.00267831639582 0.000629533809413 -0.00204878258641 +UniRef50_A5IVI8 Protein disulfide isomerase like protein 0.0100620037701 0.000321578989328 -0.00974042478077 +UniRef50_N5SB54 6.11306513292e-05 0.000126734486814 6.56038354848e-05 +UniRef50_UPI000371F13D hypothetical protein, partial 1.30533238052e-05 1.66867831787e-05 3.6334593735e-06 +UniRef50_UPI00037C627C hypothetical protein 3.94121017778e-05 3.83338501595e-05 -1.0782516183e-06 +UniRef50_O05220 0.0112105640704 0.000341406595601 -0.0108691574748 +UniRef50_UPI000418FC9B biotin attachment protein 3.07298493448e-05 9.69662840157e-05 6.62364346709e-05 +UniRef50_UPI00046AABC6 recombinase RecF 2.20395303685e-05 1.13561158464e-05 -1.06834145221e-05 +UniRef50_B4V9Q0 5.88009157444e-05 6.02733221586e-05 1.4724064142e-06 +UniRef50_O06924 Acetyl S ACP 9.08874772519e-05 0.0052620970499 0.00517120957265 +UniRef50_C6S5H1 Protein disulfide isomerase 0.000222050581675 0.00203896762174 0.00181691704006 +UniRef50_G7M244 Mannosyl glycoprotein endo beta N acetylglucosamidase 0.0002066529136 0.000215822196247 9.169282647e-06 +UniRef50_L0FRW3 3.63087897843e-05 1.7104474177e-05 -1.92043156073e-05 +UniRef50_G8V6G8 0.0124681276502 0.000577414994704 -0.0118907126555 +UniRef50_U3H984 0.000317066401727 0.00235522488852 0.00203815848679 +UniRef50_Q6G9J2 Anthranilate synthase component I 0.018531529984 0.00378665942533 -0.0147448705587 +UniRef50_C6SPU8 Glucan binding protein C 0.00505614040375 0.0017301255981 -0.00332601480565 +UniRef50_Q47S88 8.85322585204e-06 1.30946994982e-05 4.24147364616e-06 +UniRef50_UPI0001F2A777 hypothetical protein AOR_1_134104 1.40055810171e-05 1.66715157775e-05 2.6659347604e-06 +UniRef50_W7VUT6 Alanine dehydrogenase 0.000312602695192 0.000254016518955 -5.8586176237e-05 +UniRef50_UPI0003615879 hypothetical protein 1.6202379547e-05 2.30232240154e-05 6.8208444684e-06 +UniRef50_UPI0002E18D8D hypothetical protein 6.02237927036e-06 1.12106639584e-05 5.18828468804e-06 +UniRef50_Q58899 UDP N acetylglucosamine 2 epimerase 0.00404145023959 0.00179373964349 -0.0022477105961 +UniRef50_A3DGC7 DNA integrity scanning protein DisA 0.00065907517044 0.00231026667376 0.00165119150332 +UniRef50_I1B4H1 0.00199291615538 0.00108895556455 -0.00090396059083 +UniRef50_UPI00037C4D1B hypothetical protein 7.98404689114e-05 3.37282980195e-05 -4.61121708919e-05 +UniRef50_L0A6W7 2.67957437305e-05 1.3686057415e-05 -1.31096863155e-05 +UniRef50_E5ASY5 DNA polymerase III subunit beta 0.000135299637578 0.00431908246866 0.00418378283108 +UniRef50_Q9RTT6 Cysteine tRNA ligase 0.000161903457372 0.0459015585923 0.0457396551349 +UniRef50_Q2I2W2 Egg case silk protein 2 6.32895762293e-06 2.30380696157e-06 -4.02515066136e-06 +UniRef50_Q9WZ28 Carbamoyl phosphate synthase small chain 1.44193478073e-05 7.33359147716e-06 -7.08575633014e-06 +UniRef50_P52696 0.00165666679941 0.000755412048227 -0.000901254751183 +UniRef50_P56580 Glucitol sorbitol specific phosphotransferase enzyme IIB component 0.000267720559474 0.00127636705322 0.00100864649375 +UniRef50_C1MVJ6 Predicted protein 0.000171625332922 3.06430626791e-05 -0.000140982270243 +UniRef50_UPI0003EF10EB hypothetical protein 0.0002413527699 0.000123217151347 -0.000118135618553 +UniRef50_UPI0003780D4B hypothetical protein, partial 5.7468164637e-05 1.61195475573e-05 -4.13486170797e-05 +UniRef50_R7PQW4 6.88577835491e-05 0.00157333010141 0.00150447231786 +UniRef50_UPI00016B142B F0F1 ATP synthase subunit beta, partial 2.09604706262e-06 4.59165817419e-06 2.49561111157e-06 +UniRef50_UPI000473C475 hypothetical protein, partial 3.31677221518e-05 2.56264924994e-05 -7.5412296524e-06 +UniRef50_W7J736 5.5617700212e-05 8.13425793846e-05 2.57248791726e-05 +UniRef50_O27739 Energy coupling factor transporter ATP binding protein EcfA 0.00649504207326 0.000300997260245 -0.00619404481302 +UniRef50_A5UNK3 0.000696691088564 0.000701092508093 4.401419529e-06 +UniRef50_Q92210 Phosphoribosylaminoimidazole carboxylase 1.76639495373e-05 2.51827994675e-05 7.5188499302e-06 +UniRef50_Q1CJW8 Macrolide export ATP binding permease protein MacB 1 1.90100044099e-06 8.53340917787e-06 6.63240873688e-06 +UniRef50_UPI00042688B1 hypothetical protein 0.000117001401368 0.000136717160549 1.9715759181e-05 +UniRef50_Q5LNV7 0.010257615189 0.00202796789503 -0.00822964729397 +UniRef50_R1BQD4 0.000131907310205 0.00028548621078 0.000153578900575 +UniRef50_Q16762 Thiosulfate sulfurtransferase 2.92758525086e-05 1.15355356642e-05 -1.77403168444e-05 +UniRef50_Q5FA95 5.94131169041e-05 0.00186707040297 0.00180765728607 +UniRef50_UPI0000167758 hypothetical protein 6.23814840172e-05 1.85270405389e-05 -4.38544434783e-05 +UniRef50_UPI0003EAFD31 PREDICTED 4.8819231337e-05 4.90204567108e-05 2.012253738e-07 +UniRef50_D0K910 0.0156974061215 0.00442474955693 -0.0112726565646 +UniRef50_E1M6K4 Aldehyde alcohol dehydrogenase 2 0.000233654863306 6.76039767643e-05 -0.000166050886542 +UniRef50_R7PUN2 Chlamydial polymorphic outer membrane protein repeat containing domain protein 2.50210721805e-05 8.12521568883e-06 -1.68958564917e-05 +UniRef50_UPI0003738034 hypothetical protein 1.49516142289e-06 2.34898526123e-06 8.5382383834e-07 +UniRef50_UPI000377F542 universal stress protein A, partial 0.000141320207057 6.50326098557e-05 -7.62875972013e-05 +UniRef50_B1YLN1 Cyclic nucleotide binding protein 1.05967860751e-05 2.57433155472e-05 1.51465294721e-05 +UniRef50_UPI0004575D3A PREDICTED 2.88780381556e-06 4.08202001257e-06 1.19421619701e-06 +UniRef50_E1V7V8 Aspartate semialdehyde dehydrogenase 8.3778196919e-06 2.36778144776e-05 1.52999947857e-05 +UniRef50_W8QZ31 5.79738522702e-05 2.11834607849e-05 -3.67903914853e-05 +UniRef50_E0DRL2 Transcriptional regulator 0.00011496810387 2.4045312681e-05 -9.0922791189e-05 +UniRef50_G8AUU4 8.23621158739e-05 8.96540434935e-05 7.2919276196e-06 +UniRef50_A2SME8 3.23686449414e-05 7.59187922985e-05 4.35501473571e-05 +UniRef50_UPI00029DABF0 PREDICTED 3.9427531914e-05 0.000108626350954 6.919881904e-05 +UniRef50_B2S0D7 DNA gyrase subunit A 5.96746080054e-06 1.29487910802e-05 6.98133027966e-06 +UniRef50_Q3IVR0 0.011310750354 0.00243727111011 -0.00887347924389 +UniRef50_Q3IVR4 0.00352757188072 0.00377150376131 0.00024393188059 +UniRef50_Q3IVR7 0.00978083173765 0.00014851893365 -0.009632312804 +UniRef50_Q5HKL3 RarD protein 0.0160009279628 0.00845938645724 -0.00754154150556 +UniRef50_T5YD38 0.00059290993013 0.000493565523996 -9.9344406134e-05 +UniRef50_F1SH72 0.000150907332576 0.000364478183102 0.000213570850526 +UniRef50_Q47RR4 tRNA dimethylallyltransferase 6.3661461836e-06 8.15210145751e-06 1.78595527391e-06 +UniRef50_UPI000364980E hypothetical protein 2.93587283872e-05 1.85272146281e-05 -1.08315137591e-05 +UniRef50_I6TW93 Transposase 0.000344536686639 0.00861510112398 0.00827056443734 +UniRef50_K0L2R6 Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein 0.010125978931 0.00343907320571 -0.00668690572529 +UniRef50_B3PGL6 Pyoverdine ABC transporter, permease ATP binding protein 0.000932474316509 0.0002384449538 -0.000694029362709 +UniRef50_R6TDY4 ATPase histidine kinase DNA gyrase B HSP90 domain protein 7.01212363148e-05 0.00177204818259 0.00170192694628 +UniRef50_UPI0002F6E2AD hypothetical protein 6.57259928765e-05 2.37857204022e-05 -4.19402724743e-05 +UniRef50_A4VRC8 Membrane protein, TIGR01666 0.000972376807363 0.000444084928647 -0.000528291878716 +UniRef50_E2XRI8 YcaO like fatty acid binding protein 0.000904624437586 0.000144220611698 -0.000760403825888 +UniRef50_W7SJH2 Transcriptional regulator 7.25828961296e-05 7.98647575189e-05 7.2818613893e-06 +UniRef50_UPI00047CB349 DNA gyrase subunit B 2.89052448466e-05 3.82519617194e-05 9.3467168728e-06 +UniRef50_UPI000393D820 PREDICTED 3.45431607188e-06 1.19779256582e-05 8.52360958632e-06 +UniRef50_P35595 PTS system glucose specific EIICBA component 0.0080054416916 0.00594505330486 -0.00206038838674 +UniRef50_P11701 Levansucrase 0.00812051859562 0.00149210009294 -0.00662841850268 +UniRef50_Q4KEM3 Two component sensor histidine kinase PedS1 0.000398470911846 0.000149017247225 -0.000249453664621 +UniRef50_I4KPZ2 Choline ABC transporter, ATP binding protein 0.000679080754717 0.00177869486044 0.00109961410572 +UniRef50_D9RD76 MFS family major facilitator transporter, bicyclomycin 0.0209513376319 0.00395586317548 -0.0169954744564 +UniRef50_B3EQY1 ABC type phosphate transport system periplasmic component like protein 3.6972000622e-06 6.57447823267e-06 2.87727817047e-06 +UniRef50_Q8FVT0 Putative ATP binding protein BRA0745 BS1330_II0738 0.00614958929933 0.00285589370023 -0.0032936955991 +UniRef50_G9PKM7 1.53370912451e-05 2.70943838033e-05 1.17572925582e-05 +UniRef50_B0VQI7 0.000832689681294 0.00750388422842 0.00667119454713 +UniRef50_A5F3F4 Vibriobactin specific isochorismatase 1.9368865006e-05 4.06100307513e-05 2.12411657453e-05 +UniRef50_W8S0N6 3.04325263901e-05 1.19657019564e-05 -1.84668244337e-05 +UniRef50_W8S6V4 5.21227415034e-06 3.08744378365e-06 -2.12483036669e-06 +UniRef50_F0YCB9 1.45505589963e-05 5.99963086808e-05 4.54457496845e-05 +UniRef50_UPI0001BF5B06 hypothetical protein SMAC_11105, partial 8.4195206378e-05 4.60459504988e-05 -3.81492558792e-05 +UniRef50_M5R665 7.30955119821e-06 3.60626555355e-05 2.87531043373e-05 +UniRef50_UPI00041E8F2C hypothetical protein 2.46094983047e-05 6.81262103192e-05 4.35167120145e-05 +UniRef50_N5FY18 P loop ATPase 0.00192557945717 0.000289526181564 -0.00163605327561 +UniRef50_R1FJP7 0.00013435673277 0.000173943778871 3.9587046101e-05 +UniRef50_P54291 Acyl homoserine lactone synthase 0.00195418032151 0.000767380806037 -0.00118679951547 +UniRef50_D8UHU1 5.00940402212e-06 1.96611934953e-05 1.46517894732e-05 +UniRef50_UPI00045E12F9 PREDICTED 5.38230710835e-06 0.000194714311118 0.00018933200401 +UniRef50_Q12GA5 Dyp type peroxidase 0.000232537570129 0.000399977478817 0.000167439908688 +UniRef50_B9KSF4 0.00210033065119 3.87640262326e-05 -0.00206156662496 +UniRef50_Q2YA20 NADH quinone oxidoreductase subunit H 2 4.34706464487e-06 0.00301519424442 0.00301084717978 +UniRef50_A8AYH1 Glucose 1 phosphate adenylyltransferase, GlgD subunit 0.00826045846617 0.003469549694 -0.00479090877217 +UniRef50_Q49WT2 Excinuclease ATPase subunit 0.00935152060119 0.00248964988262 -0.00686187071857 +UniRef50_D7A127 3.07649580786e-06 2.12238952825e-05 1.81473994746e-05 +UniRef50_A5V6E6 1.47054139374e-05 5.2415280001e-05 3.77098660636e-05 +UniRef50_UPI0003B309A2 flagellin 1.3676023054e-05 4.48284689728e-06 -9.19317615672e-06 +UniRef50_UPI0003754A94 hypothetical protein 6.87126877685e-06 0.00017969230399 0.000172821035213 +UniRef50_UPI0004785717 hypothetical protein 3.13948965423e-05 2.45214542912e-05 -6.8734422511e-06 +UniRef50_D8JJ99 Fatty acid desaturase 0.000200270500699 0.00919027800764 0.00899000750694 +UniRef50_B2IML2 Ascorbate specific PTS system enzyme IIC 0.00659982236963 0.00573127687669 -0.00086854549294 +UniRef50_UPI00046730B7 hypothetical protein 1.01640728895e-05 2.03031126737e-05 1.01390397842e-05 +UniRef50_Q8X524 Sensor protein QseC 0.002382693266 0.000413024683256 -0.00196966858274 +UniRef50_B8GNE7 Peptidase M24 0.00174912788259 0.00201313558902 0.00026400770643 +UniRef50_D8GPC7 Regulatory protein 0.000411242934588 0.000930523458585 0.000519280523997 +UniRef50_UPI000379B182 hypothetical protein 0.000103416525565 5.13929596241e-05 -5.20235659409e-05 +UniRef50_E0XV83 0.000107586050663 8.72918284808e-05 -2.02942221822e-05 +UniRef50_A0A042PYY0 3.09732808672e-05 1.51336378342e-05 -1.5839643033e-05 +UniRef50_Q9I466 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.000130577892319 0.000182553415976 5.1975523657e-05 +UniRef50_Q9I489 0.000125968628095 0.000332439067766 0.000206470439671 +UniRef50_Q47269 0.000530997660683 0.000391147953907 -0.000139849706776 +UniRef50_P37774 0.000695313524011 0.000472506728318 -0.000222806795693 +UniRef50_Q8A9K9 Isoleucine tRNA ligase 1.19980617044e-06 6.67226883943e-06 5.47246266899e-06 +UniRef50_UPI0003670352 chemotaxis protein CheW 1.61346786277e-05 4.93524104889e-05 3.32177318612e-05 +UniRef50_K0T1C7 0.000206131182559 7.33145957287e-05 -0.00013281658683 +UniRef50_V9T5G7 ATPase 0.000676991035218 0.000592171034274 -8.4820000944e-05 +UniRef50_A4WS75 ATPase associated with various cellular activities, AAA_3 0.00370258999365 0.000169074449542 -0.00353351554411 +UniRef50_UPI00046413C1 hypothetical protein 1.55849813904e-05 1.08209353708e-05 -4.7640460196e-06 +UniRef50_UPI0001CC0058 putative ISRSO12 transposase 6.19763590592e-06 1.93253848239e-05 1.3127748918e-05 +UniRef50_UPI00045EAD98 D amino acid aminotransferase 0.000103476034068 5.3091327679e-05 -5.0384706389e-05 +UniRef50_M9REZ0 0.0130916601532 0.0024233045962 -0.010668355557 +UniRef50_P81140 Glutaryl CoA dehydrogenase, mitochondrial 2.58388453094e-05 0.000259730054698 0.000233891209389 +UniRef50_P44501 2 hydroxyacid dehydrogenase homolog 0.00537679030812 0.00053566519634 -0.00484112511178 +UniRef50_UPI000378023E catalase 7.51403980138e-06 2.53557096606e-05 1.78416698592e-05 +UniRef50_UPI000255D957 thioesterase 9.21478880994e-06 8.67430340529e-05 7.7528245243e-05 +UniRef50_B0VCQ8 NADH dehydrogenase 0.000132761778031 0.00397741755827 0.00384465578024 +UniRef50_Q3IUV7 TraN 0.0330142938932 0.00843538952719 -0.024578904366 +UniRef50_G0AKF2 7.67047828324e-05 1.90495393119e-05 -5.76552435205e-05 +UniRef50_Q8D1X9 Phosphoenolpyruvate carboxykinase [ATP] 2.89501727837e-06 0.00469063728929 0.00468774227201 +UniRef50_Q0DGM2 Os05g0524100 protein 0.000350780307088 5.71860085388e-05 -0.000293594298549 +UniRef50_UPI000361FC4E hypothetical protein 0.000847477586539 0.000746047030207 -0.000101430556332 +UniRef50_UPI00046278DB long chain fatty acid CoA ligase, partial 3.38282779757e-05 6.65185490798e-05 3.26902711041e-05 +UniRef50_F4A5L9 PIS system, IIC component 0.00112228756118 0.00220313451772 0.00108084695654 +UniRef50_P37180 Probable Ni Fe hydrogenase 2 b type cytochrome subunit 0.00291153056421 0.000677594078739 -0.00223393648547 +UniRef50_Q9KNM2 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.00264748460205 0.00190385416374 -0.00074363043831 +UniRef50_UPI0003EB0EAA hypothetical protein, partial 0.000103530154109 4.73782935614e-05 -5.61518605476e-05 +UniRef50_W6BIT8 ParB like nuclease domain protein 0.000229690032861 4.83662623568e-05 -0.000181323770504 +UniRef50_X5DX57 0.00187087248108 0.000787511213846 -0.00108336126723 +UniRef50_Q98A81 Serine hydroxymethyltransferase 2 3.07639907102e-05 9.99653378854e-05 6.92013471752e-05 +UniRef50_A6M258 Sensor histidine kinase like protein 0.000173357743485 0.000602550751425 0.00042919300794 +UniRef50_G8VH52 Aminotransferase 0.000348196785645 0.00543838853477 0.00509019174912 +UniRef50_UPI0003FA6D6A serine dehydratase 1.070499394e-05 0.000155669653754 0.000144964659814 +UniRef50_P55045 Formamidopyrimidine DNA glycosylase 0.00581960378923 0.00311430364661 -0.00270530014262 +UniRef50_UPI000362483E hypothetical protein 2.95449488693e-05 2.94105557934e-05 -1.343930759e-07 +UniRef50_A5UNN3 Arylsulfatase regulator, AslB 0.00275554758971 0.00058437429166 -0.00217117329805 +UniRef50_A8AQ08 Threonine serine transporter TdcC 0.00317696380378 0.000331443215042 -0.00284552058874 +UniRef50_Q09C64 1.29116101556e-05 3.95200261598e-05 2.66084160042e-05 +UniRef50_H8FWZ7 0.000177815856776 0.000176687276992 -1.128579784e-06 +UniRef50_UPI000477C548 alcohol dehydrogenase 9.15367668969e-06 1.67687426542e-05 7.61506596451e-06 +UniRef50_Q8CNS9 LtrC like protein 0.00878701398648 0.00287014353032 -0.00591687045616 +UniRef50_F6BYQ8 0.000230803317782 7.01546021278e-05 -0.000160648715654 +UniRef50_UPI00037DF186 hypothetical protein 0.000728494181778 2.90158400686e-05 -0.000699478341709 +UniRef50_UPI0002F6EC83 hypothetical protein 2.18248232461e-06 0.000680534130847 0.000678351648522 +UniRef50_Q99R72 Glycosyl 4,4 diaponeurosporenoate acyltransferase 0.00636388360471 0.00407430070286 -0.00228958290185 +UniRef50_P76223 Protein YnjB 0.00343271367511 0.00092934880502 -0.00250336487009 +UniRef50_O59536 Triosephosphate isomerase 0.00249911254594 0.00282807281052 0.00032896026458 +UniRef50_F0VQ97 2.68581202174e-06 1.45897754727e-06 -1.22683447447e-06 +UniRef50_B6IR83 0.00333049782179 0.00184499448705 -0.00148550333474 +UniRef50_U9YKK0 0.00172813002195 0.000272181295113 -0.00145594872684 +UniRef50_Q5HQL1 Na H(+) antiporter subunit B1 0.00653895011582 0.00663145982577 9.250970995e-05 +UniRef50_M7E7M7 Integrase 0.00251488895654 0.00178990121966 -0.00072498773688 +UniRef50_F0LCG3 Cation transport protein chaC 8.53494934457e-06 1.98739380255e-05 1.13389886809e-05 +UniRef50_Q5HR27 0.016836610319 0.00253844147617 -0.0142981688428 +UniRef50_UPI00035FFCE6 hypothetical protein 3.92096369903e-05 8.87245618645e-05 4.95149248742e-05 +UniRef50_Q3JNN5 Gamma glutamyl phosphate reductase 0.00324097021463 0.0003199436242 -0.00292102659043 +UniRef50_E6V0C3 Nicotinamidase 0.000769546202562 0.00303592964662 0.00226638344406 +UniRef50_Q9I158 0.000986405635988 0.000516282486185 -0.000470123149803 +UniRef50_B8D0S4 Adenylyl sulfate kinase 1.21404346371e-05 0.000226502490934 0.000214362056297 +UniRef50_UPI000369E4B0 hypothetical protein 2.15420966212e-06 1.73581704932e-05 1.52039608311e-05 +UniRef50_I0EQA8 Paralysed flagella protein 0.000200956636653 0.00371954140219 0.00351858476554 +UniRef50_G7U4F0 Transcriptional regulator, LuxR family protein 0.000173158710486 0.0039870470697 0.00381388835921 +UniRef50_W4JRF8 0.000115721957538 0.000562848543728 0.00044712658619 +UniRef50_T0T886 Guanine deaminase 9.03076528389e-05 0.000434737406406 0.000344429753567 +UniRef50_F7QRG4 Glyoxalase family protein 3.06597030299e-05 4.0463741038e-05 9.8040380081e-06 +UniRef50_UPI0003804921 hypothetical protein 1.31990149642e-05 1.1774396728e-05 -1.4246182362e-06 +UniRef50_U9G1I6 2.25522783674e-05 7.05056539254e-06 -1.55017129749e-05 +UniRef50_Q42523 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.18261448245e-06 4.07323888256e-06 1.89062440011e-06 +UniRef50_UPI000375CE36 hypothetical protein 6.55230537703e-06 0.000726200007453 0.000719647702076 +UniRef50_P39409 0.00353316818497 0.0017335041206 -0.00179966406437 +UniRef50_UPI0002629A6E putative hydrolase 0.000142861304553 7.27190238609e-05 -7.01422806921e-05 +UniRef50_A0A011RU24 Putative L lactate dehydrogenase operon regulatory protein 2.24001608492e-05 3.84660956498e-05 1.60659348006e-05 +UniRef50_A9FGU9 2.41065882284e-06 3.84885124911e-06 1.43819242627e-06 +UniRef50_A8FH40 8.56619610214e-06 3.87254999477e-05 3.01593038456e-05 +UniRef50_A6M1K4 0.00147020331343 0.000608900423076 -0.000861302890354 +UniRef50_Q5PCT5 DNA binding protein H NS 0.00139298586548 0.000506257208899 -0.000886728656581 +UniRef50_F4DU26 0.000506692602481 0.00218223734865 0.00167554474617 +UniRef50_B3DX55 Predicted phosphatase, Macro Appr 1 family 1.19794098047e-05 0.000228911281232 0.000216931871427 +UniRef50_T2SUX4 Cation transporter 0.000117770017646 0.00523051381228 0.00511274379463 +UniRef50_K0WI88 Type VI secretion system protein 0.000509548472204 8.9399608029e-05 -0.000420148864175 +UniRef50_UPI000473E94E MULTISPECIES 0.000313060947342 8.32317831851e-05 -0.000229829164157 +UniRef50_A1TN83 Ribonuclease HII 1.97219205547e-05 1.43765397541e-05 -5.3453808006e-06 +UniRef50_R6ED70 6.89745180299e-05 9.07930933087e-06 -5.9895208699e-05 +UniRef50_V4RKF1 2.41373948449e-05 9.02725317012e-06 -1.51101416748e-05 +UniRef50_G7QBD3 SEC C motif domain protein 1.09036436804e-05 4.57854292127e-05 3.48817855323e-05 +UniRef50_W5V0V9 Diguanylate cyclase 0.000941863439182 0.00046175625396 -0.000480107185222 +UniRef50_Q87VK2 23S rRNA methyltransferase RlmB 0.00230316973423 0.00214507735106 -0.00015809238317 +UniRef50_J3NBY7 0.000120530694889 0.000650640477246 0.000530109782357 +UniRef50_A7HSL3 Cobyrinic acid ac diamide synthase 0.0148672134401 0.00365074459378 -0.0112164688463 +UniRef50_Q5HRG3 UPF0382 membrane protein SERP0230 0.016053330234 0.0290199228086 0.0129665925746 +UniRef50_K0WGN5 0.000477548506983 0.000282374538832 -0.000195173968151 +UniRef50_F2A341 3.72942688965e-05 6.69305281982e-05 2.96362593017e-05 +UniRef50_Q3IVE7 Transcriptional regulator, LysR family 0.000130018136227 0.000313056577946 0.000183038441719 +UniRef50_D1ABZ6 6.74185480987e-06 3.24769725612e-05 2.57351177513e-05 +UniRef50_Q8CTY1 0.00380740178412 0.00254195888779 -0.00126544289633 +UniRef50_N4DJP8 LysR substrate binding domain protein 0.0165015303699 0.00868372233138 -0.00781780803852 +UniRef50_UPI00046D6061 hypothetical protein 1.3662100412e-05 1.78345391372e-05 4.1724387252e-06 +UniRef50_UPI00031728D0 hypothetical protein 8.38000235742e-06 1.06201148078e-05 2.24011245038e-06 +UniRef50_A5MZF0 Predicted signal transduction protein 0.000266817972855 0.000955268522999 0.000688450550144 +UniRef50_UPI000478BE40 cell division protein FtsY 4.4937198201e-06 4.99444260112e-06 5.0072278102e-07 +UniRef50_H3VHH5 0.00216623604627 0.000177013010107 -0.00198922303616 +UniRef50_A1AZI3 0.000258175290983 0.000199184284167 -5.8991006816e-05 +UniRef50_P31777 Ribosomal RNA large subunit methyltransferase J 0.00316398745274 0.00153695522832 -0.00162703222442 +UniRef50_I0ETN8 0.000328018114884 0.00199484573836 0.00166682762348 +UniRef50_C8S0X4 0.00123528781913 8.91322057633e-05 -0.00114615561337 +UniRef50_P75966 Ribosomal large subunit pseudouridine synthase E 0.0033564393373 0.000833305232026 -0.00252313410527 +UniRef50_E2QQW0 0.00254431218071 0.00347431417878 0.00093000199807 +UniRef50_UPI000378A4F9 hypothetical protein 8.19284926225e-06 0.000666130595076 0.000657937745814 +UniRef50_A3PJC9 MgtC SapB transporter 0.00766071982215 0.000866553596055 -0.00679416622609 +UniRef50_A8LHS0 Type II secretion system protein 0.0104727742299 0.00189637569442 -0.00857639853548 +UniRef50_N0AZ28 Short chain acyl CoA synthetase 0.00227995720259 0.000296880863012 -0.00198307633958 +UniRef50_A0A018QNM9 Glucan biosynthesis protein G 5.63269110392e-05 8.26795838205e-05 2.63526727813e-05 +UniRef50_UPI000425424A leucyl tRNA synthetase 1.74457684189e-06 2.31904836894e-06 5.7447152705e-07 +UniRef50_UPI000361D7A6 hypothetical protein, partial 7.41257975185e-05 0.0007016652789 0.000627539481381 +UniRef50_B5F095 UPF0194 membrane protein YbhG 0.00410699612823 0.001559162677 -0.00254783345123 +UniRef50_A0A038GAC7 4.62578920171e-05 0.000269659717006 0.000223401824989 +UniRef50_A7IGL7 Fructose 1,6 bisphosphatase class 1 1 2.39869896485e-05 2.39258956952e-05 -6.10939533e-08 +UniRef50_X0UWW1 Marine sediment metagenome DNA, contig 0.000814339825635 0.000292059306647 -0.000522280518988 +UniRef50_UPI00046D96F8 PREDICTED 6.0731794209e-05 6.0793935683e-05 6.2141474e-08 +UniRef50_UPI00047DA76B UTP glucose 1 phosphate uridylyltransferase 0.000190319808949 0.000106826509575 -8.3493299374e-05 +UniRef50_T1DQ54 Putative dosage compensation complex subunit mle 3.25045340539e-05 6.27084539134e-06 -2.62336886626e-05 +UniRef50_Q60317 Probable aspartate aminotransferase 1 0.00235168158573 0.00055882807145 -0.00179285351428 +UniRef50_P57061 Lipoprotein releasing system transmembrane protein LolC 0.000124995360549 0.00149496598633 0.00136997062578 +UniRef50_I3U950 1.84589809737e-05 1.45515088597e-05 -3.907472114e-06 +UniRef50_C0ZTQ3 0.000234949785595 0.00326621253566 0.00303126275006 +UniRef50_S5VEZ7 Alpha galactosidase 0.000417487277896 0.000929494223385 0.000512006945489 +UniRef50_UPI00036308A8 hypothetical protein 2.41299024464e-05 1.89814350507e-05 -5.1484673957e-06 +UniRef50_B2S842 Porphobilinogen deaminase 3.06435229914e-05 8.22282976115e-06 -2.24206932303e-05 +UniRef50_Q9RXS6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.000560622755721 0.0354419827311 0.0348813599754 +UniRef50_Q9RUR7 0.000440645123179 0.0538495595985 0.0534089144753 +UniRef50_D7BIR4 0.000385250327578 6.21687670526e-05 -0.000323081560525 +UniRef50_Q5SI49 tRNA pseudouridine synthase D 1.33116038787e-05 4.97740017588e-05 3.64623978801e-05 +UniRef50_O07134 Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.000307733143081 0.00326070662046 0.00295297347738 +UniRef50_E3A1T0 0.00101832388616 0.000665838472429 -0.000352485413731 +UniRef50_J9YRE4 Permease 0.000305046228192 0.000297673757941 -7.372470251e-06 +UniRef50_N1NMR4 0.000419130082496 0.000413989260398 -5.140822098e-06 +UniRef50_UPI000273BF3C PREDICTED 2.01047016641e-05 0.00103208153753 0.00101197683587 +UniRef50_Q9A176 Protein NrdI 1.19568256144e-05 4.8972160221e-05 3.70153346066e-05 +UniRef50_A8LHW3 Aminotransferase class I and II 0.00367212573027 0.00032612323016 -0.00334600250011 +UniRef50_Q88XV1 Energy coupling factor transporter ATP binding protein EcfA2 0.00694285955778 0.00529908676943 -0.00164377278835 +UniRef50_J8W6V4 Putative phage associated protein 1.10403802565e-05 6.74218271393e-05 5.63814468828e-05 +UniRef50_A6LX69 0.000260423895184 0.000683892032202 0.000423468137018 +UniRef50_UPI000479C5D4 hypothetical protein 0.000189999040989 2.48246695313e-05 -0.000165174371458 +UniRef50_UPI000426B838 sulfate permease 5.68407074452e-05 1.80334646706e-05 -3.88072427746e-05 +UniRef50_I4DYV1 Branched chain amino acid ABC transporter permease protein 0.000354712598539 0.00135551109466 0.00100079849612 +UniRef50_E9C0U9 GTP binding protein TypA 0.00794444714053 0.00252287959768 -0.00542156754285 +UniRef50_S5XU71 8.19930893159e-05 6.38009451897e-05 -1.81921441262e-05 +UniRef50_UPI0004748AC6 aldolase 0.000120739065241 3.78468844891e-05 -8.28921807519e-05 +UniRef50_F6FQD2 Nicotinate phosphoribosyltransferase 0.000135299637578 0.0018037064542 0.00166840681662 +UniRef50_Q92V09 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 1.32314507799e-05 1.65877858902e-05 3.3563351103e-06 +UniRef50_UPI000379F656 hypothetical protein 3.29441715631e-05 6.43868306279e-05 3.14426590648e-05 +UniRef50_A5G208 6.69571599676e-05 3.88776787839e-05 -2.80794811837e-05 +UniRef50_D5Z124 Phosphoribosylformylglycinamidine synthase subunit I 2.51703186687e-05 2.46718300064e-05 -4.984886623e-07 +UniRef50_D8JJB8 Riboflavin biosynthesis protein RibF 0.00026475727968 0.00725609991529 0.00699134263561 +UniRef50_D9QJC6 Cysteine desulfurase 0.00664871113548 0.00165431861469 -0.00499439252079 +UniRef50_T0TC75 Poly D alaninet ransfer protein DltD 0.00473674329413 0.00115899275952 -0.00357775053461 +UniRef50_B5F7E7 Phosphoenolpyruvate synthase regulatory protein 0.00456153042611 0.00073957950839 -0.00382195091772 +UniRef50_Q52986 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI 0.003342519993 0.00101311366358 -0.00232940632942 +UniRef50_Q8DUN5 Ferredoxin NADP reductase 0.0060242820727 0.00132603322691 -0.00469824884579 +UniRef50_UPI00047D9459 hypothetical protein 9.82030943027e-06 7.5251691884e-06 -2.29514024187e-06 +UniRef50_UPI000472033F hypothetical protein 7.77162903018e-07 4.72664108727e-05 4.64892479697e-05 +UniRef50_R4RQA1 MFS type transporter 7.74595052315e-05 0.000140738699848 6.32791946165e-05 +UniRef50_UPI000377EFC4 hypothetical protein 5.89117691443e-06 8.98611234003e-06 3.0949354256e-06 +UniRef50_D3QJ40 Riboflavin biosynthesis protein RibD 0.0257206235796 0.00537257116554 -0.0203480524141 +UniRef50_B0SGE9 Pyridoxine pyridoxamine 5 phosphate oxidase 1.0061762005e-05 9.32392407724e-05 8.31774787674e-05 +UniRef50_T0TDK7 Chorismate mutase I 0.000834248644471 0.000673726323636 -0.000160522320835 +UniRef50_Q9RZG4 0.000199376402564 0.0201966654755 0.0199972890729 +UniRef50_T1BKR4 DNA repair protein RadA 7.94560936296e-06 3.56516053712e-05 2.77059960082e-05 +UniRef50_O32232 Carboxylesterase 0.018312527669 0.00918979181966 -0.00912273584934 +UniRef50_O25039 Exodeoxyribonuclease 7 large subunit 9.94256335816e-05 0.00257500949559 0.00247558386201 +UniRef50_F5M463 4 alpha glucanotransferase 0.000624703563073 0.000326795801954 -0.000297907761119 +UniRef50_A7ILS7 0.000195131380502 5.86705342295e-05 -0.000136460846272 +UniRef50_X1FUR4 Marine sediment metagenome DNA, contig 5.73541250892e-05 7.33990986429e-05 1.60449735537e-05 +UniRef50_J1C3T0 0.00677065814862 0.00272088707168 -0.00404977107694 +UniRef50_Q2NYV9 ATP dependent protease ATPase subunit HslU 0.00466495914154 0.00126406691381 -0.00340089222773 +UniRef50_C1DN07 Polysaccharide biosynthesis protein 0.0004631099309 9.51100499805e-05 -0.000367999880919 +UniRef50_UPI0004758B17 NUDIX hydrolase 5.7461720283e-05 9.05738826716e-06 -4.84043320158e-05 +UniRef50_H1SB32 0.000172122406604 0.000768411982585 0.000596289575981 +UniRef50_A5UXK1 NADH quinone oxidoreductase subunit B 1 1.46523285773e-05 0.000122680776647 0.00010802844807 +UniRef50_UPI000467AAFA hypothetical protein 2.31629721577e-06 1.24192951441e-06 -1.07436770136e-06 +UniRef50_Q9A0C6 Carbamoyl phosphate synthase large chain 0.000781758507262 0.00205153872519 0.00126978021793 +UniRef50_UPI0004722C63 hypothetical protein 1.84074761173e-05 3.08474762305e-05 1.24400001132e-05 +UniRef50_UPI000367B5A7 peptidase S14 6.13528049403e-06 1.06297807008e-05 4.49450020677e-06 +UniRef50_Q8XJ76 Phenylalanine tRNA ligase beta subunit 0.000531019916438 0.000813067194797 0.000282047278359 +UniRef50_P32689 0.00638341394546 0.00141919615665 -0.00496421778881 +UniRef50_P32688 0.00312582134213 0.00061813542191 -0.00250768592022 +UniRef50_A5UKK2 Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF 0.00368550201413 0.00123855306996 -0.00244694894417 +UniRef50_UPI0003B45101 recombinase RecF 1.31776464676e-05 1.40945977535e-05 9.169512859e-07 +UniRef50_P39651 0.0245750725437 0.00722354848411 -0.0173515240596 +UniRef50_UPI0004735386 hypothetical protein, partial 1.43575808658e-05 4.5761733786e-06 -9.7814074872e-06 +UniRef50_Q1ARM2 Biotin lipoyl attachment 3.10784266904e-05 3.73818573356e-05 6.3034306452e-06 +UniRef50_C1F2D1 NAD specific glutamate dehydrogenase domain protein 3.70416471266e-06 7.83154241518e-06 4.12737770252e-06 +UniRef50_P32687 0.00441561342627 0.00072743604818 -0.00368817737809 +UniRef50_UPI00047736AE threonine aldolase 5.80882714178e-06 8.71874967627e-06 2.90992253449e-06 +UniRef50_Q9ZGN9 ABC transporter family protein 0.0231026341526 0.00281019902571 -0.0202924351269 +UniRef50_UPI000011E309 transposase, pseudogene 0.000130716080354 0.0151274084754 0.014996692395 +UniRef50_D4JCQ5 NADPH dependent glutamate synthase beta chain and related oxidoreductases 0.000406263274426 0.00112893847319 0.000722675198764 +UniRef50_Q18B68 1 deoxy D xylulose 5 phosphate synthase 2.07099384224e-06 7.90805629204e-06 5.8370624498e-06 +UniRef50_C5C7N2 4.34439023213e-06 1.75737853778e-05 1.32293951457e-05 +UniRef50_C7ZS00 0.00701141806626 0.00138297340731 -0.00562844465895 +UniRef50_M7N0H7 1.40641553897e-05 0.000136500446927 0.000122436291537 +UniRef50_A4WW43 0.000174762031871 8.00426769978e-05 -9.47193548732e-05 +UniRef50_R4K685 Fe S oxidoreductase 0.0024214986201 0.000622434657062 -0.00179906396304 +UniRef50_UPI00036082CE hypothetical protein 3.78895586084e-06 4.10599987904e-05 3.72710429296e-05 +UniRef50_M4WXK7 0.00161906284018 0.000361665506771 -0.00125739733341 +UniRef50_A3PRJ1 0.00222871928188 0.0012289177358 -0.00099980154608 +UniRef50_A6M0J7 Methyl accepting chemotaxis sensory transducer 0.000257035560643 0.000895202361581 0.000638166800938 +UniRef50_O59778 Biotin synthase 0.00156055492876 0.001124401892 -0.00043615303676 +UniRef50_A0A011NHA3 0.000162804305058 2.51812244254e-05 -0.000137623080633 +UniRef50_I0JR51 TetR family transcription regulator 0.00736492188731 0.00278067092202 -0.00458425096529 +UniRef50_T2SYZ3 9.20334809672e-06 0.00336602471348 0.00335682136538 +UniRef50_A6M003 Two component, sigma54 specific, transcriptional regulator, Fis family 0.000398514318507 0.00079673729552 0.000398222977013 +UniRef50_C9A997 Alpha acetolactate decarboxylase 0.0265054845912 0.00862250635303 -0.0178829782382 +UniRef50_F3Y7S3 Low molecular weight protein tyrosine phosphatase 0.0059758445174 0.000415939021406 -0.00555990549599 +UniRef50_W4TWJ0 GMP synthase 0.000103136495798 0.000304825480215 0.000201688984417 +UniRef50_UPI000304C6B6 hypothetical protein 3.03277086967e-05 6.1948372485e-05 3.16206637883e-05 +UniRef50_UPI00047969EC ferrichrome ABC transporter 1.58582755803e-05 3.38348184242e-05 1.79765428439e-05 +UniRef50_UPI00036BADB7 hypothetical protein 1.05451137734e-05 1.40705537584e-05 3.525439985e-06 +UniRef50_UPI000476CE7F formyltetrahydrofolate deformylase 1.92575875458e-05 1.86895804732e-05 -5.680070726e-07 +UniRef50_E6X978 NADP dependent oxidoreductase domain protein 0.000187803974553 0.00202465598241 0.00183685200786 +UniRef50_Q9I596 Neutral ceramidase 0.000747080080554 0.000326476831722 -0.000420603248832 +UniRef50_E2QM67 0.00214901423075 0.00130578687325 -0.0008432273575 +UniRef50_UPI0004756DAB chromosome partitioning protein 8.17605639413e-06 1.29659318228e-05 4.78987542867e-06 +UniRef50_K9IFC3 Purine nucleosidase 1.53882886279e-05 1.42061755336e-05 -1.1821130943e-06 +UniRef50_U5MVL7 Low specificity L threonine aldolase LtaE 0.00052686354827 0.000950233193128 0.000423369644858 +UniRef50_UPI000467F4BE hypothetical protein 0.000150542335541 2.79367605533e-05 -0.000122605574988 +UniRef50_Q4A072 Na+ H+ exchanger 0.00857290661587 0.00323854595074 -0.00533436066513 +UniRef50_A6LQ30 Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein 0.000437100657518 0.000752530591529 0.000315429934011 +UniRef50_Q6FAA9 Elongation factor P 0.000216117932552 0.00452430942389 0.00430819149134 +UniRef50_UPI000287DA5E heavy metal transporting P type ATPase 4.8042382204e-06 5.34025931399e-05 4.85983549195e-05 +UniRef50_F5M2C8 Inositol monophosphatase 0.00464371332074 0.000452357064562 -0.00419135625618 +UniRef50_M1N6B4 Ribonuclease E 0.000837681513816 0.00242474244203 0.00158706092821 +UniRef50_S9RVU8 Mobile element protein 2.42881846922e-05 1.17539025047e-05 -1.25342821875e-05 +UniRef50_UPI0004768A02 hypothetical protein 3.80517971301e-05 0.00713747840495 0.00709942660782 +UniRef50_UPI0003B4B8C4 rRNA methyltransferase 3.59520715948e-05 2.1174259502e-05 -1.47778120928e-05 +UniRef50_UPI0003827792 hypothetical protein 1.32423340973e-05 9.17165658924e-06 -4.07067750806e-06 +UniRef50_Q8UD63 2 isopropylmalate synthase 3.42790571387e-06 1.8136583151e-05 1.47086774371e-05 +UniRef50_Q4FQ21 UDP N acetylmuramoylalanine D glutamate ligase 8.50193668641e-05 0.0061263127281 0.00604129336124 +UniRef50_A3PS43 RepA 0.000811322712027 0.000295809721398 -0.000515512990629 +UniRef50_UPI000472BDAD hypothetical protein, partial 0.000219233112502 0.000106540698524 -0.000112692413978 +UniRef50_P00893 Acetolactate synthase isozyme 3 large subunit 0.00263134643519 0.00228647244295 -0.00034487399224 +UniRef50_Q16134 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 6.77978060068e-06 1.61953006511e-05 9.41552005042e-06 +UniRef50_Q9RWS6 1.80149902168e-05 0.0178655269123 0.0178475119221 +UniRef50_UPI000473521A glutamate synthase, partial 1.77432696565e-06 2.83195674963e-06 1.05762978398e-06 +UniRef50_D2Q2X8 Cell envelope related transcriptional attenuator 3.83383480767e-06 1.33563431059e-05 9.52250829823e-06 +UniRef50_Q1R8C8 0.00239204786417 0.000373031627616 -0.00201901623655 +UniRef50_P31660 2 methylcitrate synthase 0.00224962882798 0.0128614066204 0.0106117777924 +UniRef50_Q5M2Y8 Polar amino acid ABC uptake transporter membrane spanning protein 0.00577906079839 0.00537740734636 -0.00040165345203 +UniRef50_Q2S1S3 Glutamate 1 semialdehyde 2,1 aminomutase 9.04314876951e-06 2.44276965825e-05 1.5384547813e-05 +UniRef50_M9RWZ9 RNA methyltransferase 0.000797513117142 0.000952864192453 0.000155351075311 +UniRef50_B6JIZ7 Crossover junction endodeoxyribonuclease RuvC 0.0046648044647 0.0028204990672 -0.0018443053975 +UniRef50_Q0BQU0 1.12821560914e-06 2.30266026039e-05 2.18983869948e-05 +UniRef50_U6I6D8 Dihydropyrimidine dehydrogenase 1.11580789459e-05 9.28411541135e-06 -1.87396353455e-06 +UniRef50_A3M2D6 0.000705949687179 0.0102144213192 0.00950847163202 +UniRef50_A3M2D5 0.000223648994873 0.0157066851758 0.0154830361809 +UniRef50_UPI00046DDB7F PREDICTED 0.000104156638361 5.42494403056e-06 -9.87316943304e-05 +UniRef50_A3M2D9 0.000351945069607 0.0123522579442 0.0120003128746 +UniRef50_A3M2D8 9.68473818285e-05 0.00986230622784 0.00976545884601 +UniRef50_Q5E727 Urease subunit beta 3.86473069012e-05 2.15352461845e-05 -1.71120607167e-05 +UniRef50_UPI0003C1B3D1 3.29972921767e-06 1.42042003433e-05 1.09044711256e-05 +UniRef50_UPI00041EF0AD hypothetical protein 1.79569004117e-05 6.02985700891e-05 4.23416696774e-05 +UniRef50_UPI000369A5D7 hypothetical protein 1.14320495302e-05 1.72387678422e-05 5.806718312e-06 +UniRef50_UPI000467E096 hypothetical protein 6.30358355682e-05 4.84440774108e-05 -1.45917581574e-05 +UniRef50_Q88WP5 tRNA dimethylallyltransferase 2.95371902639e-05 0.00341033193067 0.00338079474041 +UniRef50_A8F961 Serine acetyltransferase 0.000492897018218 0.00109320600233 0.000600308984112 +UniRef50_P77968 Superoxide dismutase [Fe] 0.00509775378426 0.000366438191664 -0.0047313155926 +UniRef50_E6S1Z5 Menaquinone biosynthesis protein, SCO4494 family 0.000107240337745 0.00261019214687 0.00250295180912 +UniRef50_UPI00016C3B63 L aspartate oxidase, partial 5.13564402652e-06 9.50703334215e-06 4.37138931563e-06 +UniRef50_Q7NPZ7 UDP N acetylmuramoylalanine D glutamate ligase 0.000130467507666 0.00243187437997 0.0023014068723 +UniRef50_A0A058VD88 Phosphoribosylaminoimidazolesuccinocarboxamide synthase like protein 4.56932642727e-05 4.42091165916e-05 -1.4841476811e-06 +UniRef50_Q9I0I6 Methyl accepting chemotaxis protein PA2652 0.000352490786946 0.00039004886388 3.7558076934e-05 +UniRef50_T1K2G0 0.00965610707001 0.00105173805588 -0.00860436901413 +UniRef50_D3P3A4 Transposase 0.00737916836446 7.61084223548e-05 -0.00730305994211 +UniRef50_A3PLJ3 0.013076074232 0.00297060972472 -0.0101054645073 +UniRef50_UPI0003720E8F hypothetical protein 9.49329018536e-05 0.000109745865198 1.48129633444e-05 +UniRef50_UPI00037E700F hypothetical protein 4.5864165894e-06 5.7364189125e-06 1.1500023231e-06 +UniRef50_Q05624 Phosphate butyryltransferase 0.000124857548682 0.00152569703067 0.00140083948199 +UniRef50_A0A023RYG5 Hydrolase 0.000212673599042 0.00802945430199 0.00781678070295 +UniRef50_A5IS38 Phosphodiesterase, MJ0936 family 0.0131558039801 0.0009042730315 -0.0122515309486 +UniRef50_Q6GI75 Enoyl [acyl carrier protein] reductase [NADPH] FabI 0.0179188376293 0.00380824134455 -0.0141105962848 +UniRef50_UPI00045E7AD4 2 polyprenylphenol hydroxylase 6.95508288561e-06 1.05811140966e-05 3.62603121099e-06 +UniRef50_P52308 DNA primase 6.02106915919e-05 0.0019527130863 0.00189250239471 +UniRef50_A4WQE3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.00257883166041 0.0019227576281 -0.00065607403231 +UniRef50_G7M2Z2 Acriflavin resistance protein 0.000388936743934 0.000548785424775 0.000159848680841 +UniRef50_UPI0003C4AE88 PREDICTED 5.4153621612e-05 2.15401070385e-05 -3.26135145735e-05 +UniRef50_N0B1P0 Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase 0.000825155147243 0.00134257029589 0.000517415148647 +UniRef50_J9Z1D2 Hypoxia induced family protein 2.13565309037e-05 2.53920855143e-05 4.0355546106e-06 +UniRef50_UPI00037EB16F thymidylate synthase 1.08099390009e-05 5.5912709852e-05 4.51027708511e-05 +UniRef50_F5RE08 0.000521561848398 0.000323358572359 -0.000198203276039 +UniRef50_R0EX71 TRAP C4 dicarboxylate transport system permease DctM subunit 1.1025893288e-05 8.11070396768e-06 -2.91518932032e-06 +UniRef50_UPI00046EE358 hypothetical protein, partial 1.54291497045e-05 0.000111014171378 9.55850216735e-05 +UniRef50_G7LXD6 0.000107138880474 0.00126655150632 0.00115941262585 +UniRef50_B4VB07 Type I PKS 0.00025325859972 8.09269813902e-05 -0.00017233161833 +UniRef50_P55189 Putative sulfate transporter YbaR 0.0332638873465 0.00979420999235 -0.0234696773542 +UniRef50_B9EBL7 0.0147188271841 0.00224854317062 -0.0124702840135 +UniRef50_E4NJ63 3.07827872702e-07 4.1342699129e-07 1.05599118588e-07 +UniRef50_A1B623 0.000693799523845 7.17820107701e-05 -0.000622017513075 +UniRef50_UPI00021954C2 thymidylate kinase 1.00235012671e-05 1.42640886043e-05 4.2405873372e-06 +UniRef50_Q4L540 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0191855804536 0.00502667276234 -0.0141589076913 +UniRef50_UPI00046E93BA Holliday junction resolvase 1.76975454317e-05 1.42982953332e-05 -3.3992500985e-06 +UniRef50_P39346 L idonate 5 dehydrogenase (+)) 0.00189798702301 0.000454320676636 -0.00144366634637 +UniRef50_I6DGS5 Response regulator 0.00010113535271 0.00014959060866 4.845525595e-05 +UniRef50_UPI000376418A xanthine phosphoribosyltransferase 3.47631047232e-05 5.3162084705e-05 1.83989799818e-05 +UniRef50_UPI00047230A9 carbamoyl phosphate synthase large subunit 1.43848954576e-06 4.62011510452e-06 3.18162555876e-06 +UniRef50_A6LT71 0.000190329070009 0.00316875556521 0.0029784264952 +UniRef50_F4A863 8.38802052221e-06 1.38886124734e-05 5.50059195119e-06 +UniRef50_UPI00037C86FD hypothetical protein 1.28239747486e-05 2.16149143981e-05 8.7909396495e-06 +UniRef50_A3PGH0 Acyltransferase 3 0.00180608458437 0.000726140859349 -0.00107994372502 +UniRef50_A0A012LJX4 PTS system mannitol specific EIICB component 1.18758394005e-05 2.99492061989e-05 1.80733667984e-05 +UniRef50_UPI00047AF5BF hypothetical protein 4.93267020139e-05 5.42699650765e-05 4.9432630626e-06 +UniRef50_UPI00047D7213 antitermination protein NusG 2.6258829305e-05 5.57646079986e-05 2.95057786936e-05 +UniRef50_J9NZJ3 9.07280274307e-05 0.000374123687487 0.000283395660056 +UniRef50_Q3JPN7 0.00011424244143 2.95136361072e-05 -8.47288053228e-05 +UniRef50_J9NZJ0 6.76170516728e-06 0.000121835406466 0.000115073701299 +UniRef50_UPI00006CADE3 Glutamate Leucine Phenylalanine Valine dehydrogenase family protein 5.04609241008e-06 7.09297487305e-05 6.58836563204e-05 +UniRef50_K7S7N6 AXE1 multi domain protein 0.000114737382625 0.00416092608606 0.00404618870344 +UniRef50_Q86ZM3 Catabolic 3 dehydroquinase 4.36126849552e-05 2.23471679917e-05 -2.12655169635e-05 +UniRef50_Q838A4 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 0.00659566765884 0.00835561685915 0.00175994920031 +UniRef50_Q46904 Probable electron transfer flavoprotein quinone oxidoreductase YgcN 0.00450671294569 0.00139201722548 -0.00311469572021 +UniRef50_Q9ZLD6 UvrABC system protein A 4.52802065825e-05 0.0034339979654 0.00338871775882 +UniRef50_Q2FRE6 Nucleoside diphosphate kinase 1.06555755807e-05 4.75735487631e-05 3.69179731824e-05 +UniRef50_P46859 Thermoresistant gluconokinase 0.000619543379916 0.0023801048857 0.00176056150578 +UniRef50_P0A9C3 Aldose 1 epimerase 0.00258067039322 0.00130548031936 -0.00127519007386 +UniRef50_UPI0003F77CB8 hypothetical protein 3.53088560919e-06 5.80156056179e-05 5.44847200087e-05 +UniRef50_M9VF11 0.00175850184045 0.00889661509526 0.00713811325481 +UniRef50_A6LR82 Transposase 0.000294910928794 0.00127720519856 0.000982294269766 +UniRef50_V5VI78 Thiol 0.000162476035378 0.00410126531656 0.00393878928118 +UniRef50_Q54433 Probable phosphopantothenoylcysteine decarboxylase 0.00107745967448 0.00396123237492 0.00288377270044 +UniRef50_B0VEJ2 6.86338161594e-05 0.00511761076274 0.00504897694658 +UniRef50_Q5HP16 Octanoyltransferase LipM 0.00623460419002 0.00451189382822 -0.0017227103618 +UniRef50_C7J469 Os06g0328400 protein 4.32644533038e-05 0.0001572496307 0.000113985177396 +UniRef50_D3FFF2 ABC transporter related protein 0.00170486514729 0.000481839989651 -0.00122302515764 +UniRef50_A6LTK9 Transcriptional regulator, GntR family 0.000166783205682 0.00141169236652 0.00124490916084 +UniRef50_UPI0003B2EB2A glycerol kinase 1.30864608729e-05 5.55243145485e-06 -7.53402941805e-06 +UniRef50_E5CQ05 Replication initiation protein 0.000252022280953 0.000285752892185 3.3730611232e-05 +UniRef50_UPI000255E431 cystine transporter permease 6.66403429153e-05 0.000109528254037 4.28879111217e-05 +UniRef50_UPI00037539AF S adenosylmethionine synthetase 1.7943762393e-05 0.00160165593925 0.00158371217686 +UniRef50_A6E1L3 2 hydroxyacid dehydrogenase 0.000261608366741 0.0001913708631 -7.0237503641e-05 +UniRef50_UPI0004672A57 hypothetical protein 0.000111682245224 1.56004909309e-05 -9.60817542931e-05 +UniRef50_M9RK54 UPF0717 family protein 0.00568106025131 0.00445715976106 -0.00122390049025 +UniRef50_UPI0004628C07 hypothetical protein 1.55257226169e-05 1.49894808155e-05 -5.362418014e-07 +UniRef50_Q49VT5 0.000797990404066 0.00114872277836 0.000350732374294 +UniRef50_M1MBM4 0.000561364523412 0.00218356047383 0.00162219595042 +UniRef50_B6ISU5 1 deoxy D xylulose 5 phosphate reductoisomerase 0.00300656720842 0.00171140520722 -0.0012951620012 +UniRef50_A5IVI2 GCN5 related N acetyltransferase 0.0174203900916 0.00535429124419 -0.0120660988474 +UniRef50_G3A8C8 Putative transposase 5.80401440153e-05 2.06172713112e-05 -3.74228727041e-05 +UniRef50_V9G5F4 Iojap protein 3.58681641036e-05 0.000983865104399 0.000947996940295 +UniRef50_UPI0004774299 aldehyde dehydrogenase, partial 1.90479037125e-05 0.000206548502196 0.000187500598484 +UniRef50_P50141 GTP cyclohydrolase 1 2.93670348758e-05 3.37790018659e-05 4.4119669901e-06 +UniRef50_A0A037UUK8 0.000219783825067 8.67799590184e-05 -0.000133003866049 +UniRef50_Q6A5P9 0.000613639472531 0.0104821050853 0.00986846561277 +UniRef50_Q53074 UvrB protein 0.0052310331042 0.00029694267887 -0.00493409042533 +UniRef50_Q97PK0 Putative GTP cyclohydrolase 1 type 2 0.00434769471106 0.00474624853255 0.00039855382149 +UniRef50_UPI0003707E4A hypothetical protein 0.000132912306155 1.72820546738e-05 -0.000115630251481 +UniRef50_B4FZA3 6.81491647936e-06 1.10499416571e-05 4.23502517774e-06 +UniRef50_UPI000366285D ATPase AAA 5.06646848846e-06 7.82940424901e-05 7.32275740016e-05 +UniRef50_V0V0Z7 0.000343169080774 0.00048412574623 0.000140956665456 +UniRef50_UPI000377C6CE hypothetical protein 2.05073781574e-06 1.74474566522e-05 1.53967188365e-05 +UniRef50_E3GXW6 CobB CobQ domain protein glutamine amidotransferase 0.00221183120807 0.00149131048148 -0.00072052072659 +UniRef50_A5UL08 0.00340474721315 0.000710170474252 -0.0026945767389 +UniRef50_R4RG70 Cyclase family protein 0.0185230147964 0.00562504453324 -0.0128979702632 +UniRef50_UPI00040EF0A5 hypothetical protein 2.55961049826e-06 6.92807511495e-05 6.67211406512e-05 +UniRef50_F8TVB7 1.97370042719e-05 1.78455386154e-05 -1.8914656565e-06 +UniRef50_V5YQU8 YycH protein 0.0219938124284 0.00461887532639 -0.017374937102 +UniRef50_UPI00047D67EB thioredoxin reductase 1.28772586399e-05 1.31331204614e-05 2.558618215e-07 +UniRef50_G7M4A9 Exonuclease RNase T and DNA polymerase III 0.00014803372112 0.000234378337464 8.6344616344e-05 +UniRef50_F1VZ41 0.000140049385308 2.33971483692e-05 -0.000116652236939 +UniRef50_M1KV66 Mucin 17 like protein 4.47502244079e-06 1.42213285055e-05 9.74630606471e-06 +UniRef50_F2JM36 ABC type transporter, periplasmic subunit family 3 0.000705143430581 0.00116441901343 0.000459275582849 +UniRef50_UPI0003FD0BE2 D ribose transporter ATP binding protein 3.49936720893e-06 5.71028827454e-06 2.21092106561e-06 +UniRef50_J7R096 5.70409440876e-05 5.38698830455e-05 -3.1710610421e-06 +UniRef50_M7RJM0 Mg chelatase, subunit ChlI 8.8684293154e-06 2.11383979777e-05 1.22699686623e-05 +UniRef50_A6M192 Flagellar hook capping protein 0.000345123738524 0.000765675231504 0.00042055149298 +UniRef50_B2IDX6 Signal recognition particle protein 0.0061461913419 0.00155959532189 -0.00458659602001 +UniRef50_A1JMA3 Formate tetrahydrofolate ligase 2.69741483613e-05 4.3496199444e-05 1.65220510827e-05 +UniRef50_Q6ZEM6 Arsenate reductase ArsI1 0.00628721445997 0.00164367513208 -0.00464353932789 +UniRef50_I4Z0I0 0.000148008297087 3.29094813587e-05 -0.000115098815728 +UniRef50_UPI0004655B4D chemotaxis protein CheY 2.00210299506e-05 2.36994274255e-05 3.6783974749e-06 +UniRef50_Q313L3 Protein translocase subunit SecA 0.000392081843457 0.00152683184065 0.00113474999719 +UniRef50_A0JSX3 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.000242672580455 0.00701389251153 0.00677121993107 +UniRef50_A4SMY4 Serine threonine protein kinase, RI01 family 0.000430484341631 0.000703533841073 0.000273049499442 +UniRef50_UPI0003793F1D hypothetical protein 4.57069822343e-05 3.12458430267e-05 -1.44611392076e-05 +UniRef50_UPI0003C112FF PREDICTED 1.59055496191e-05 1.43128647474e-05 -1.5926848717e-06 +UniRef50_P0ABM9 Cytochrome c type biogenesis protein CcmH 0.00311220942337 0.00101510923214 -0.00209710019123 +UniRef50_B3PGS4 Flagellar basal body rod protein FlgF 0.000160177930206 0.000301343576728 0.000141165646522 +UniRef50_F6BJB1 N acetylglucosamine 6 phosphate deacetylase 0.000389661516172 0.00114106500078 0.000751403484608 +UniRef50_Q9RW85 MutT nudix family protein 0.000243016731023 0.0372221973502 0.0369791806192 +UniRef50_W5YET9 NADH quinone oxidoreductase, chain I 8.37404603167e-05 6.2501547139e-05 -2.12389131777e-05 +UniRef50_A6LVB6 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000197072619077 0.00120862278872 0.00101155016964 +UniRef50_W0A553 0.000300386728529 0.00330786237509 0.00300747564656 +UniRef50_UPI00046278A4 hypothetical protein 0.000810758331273 0.000276517025475 -0.000534241305798 +UniRef50_Q3J4U6 0.00258327018712 0.00326089690688 0.00067762671976 +UniRef50_Q9ZM69 Copper transporting ATPase 0.000103073608538 0.00539555313043 0.00529247952189 +UniRef50_T8TFL3 Exonuclease VIII 0.000454282958651 0.000150077429885 -0.000304205528766 +UniRef50_Q0SAE7 0.000120107238596 8.18196257271e-05 -3.82876128689e-05 +UniRef50_P55255 Glucose 1 phosphate thymidylyltransferase 0.00161138241622 0.00484057112833 0.00322918871211 +UniRef50_P40733 Deoxyguanosinetriphosphate triphosphohydrolase 0.00154295699281 0.000670265255215 -0.000872691737595 +UniRef50_R9SLI5 von Willebrand factor type A domain containing protein 0.00246779820902 0.000532583745424 -0.0019352144636 +UniRef50_C6NYG2 Flagellar biosynthesis protein FlhB 9.14892244882e-05 3.13016641743e-05 -6.01875603139e-05 +UniRef50_UPI0004658BA2 ABC transporter ATP binding protein 0.000142569188243 4.3875420929e-05 -9.8693767314e-05 +UniRef50_J1L2V8 Beta Ig H3 fasciclin 5.30556213744e-05 1.23186796677e-05 -4.07369417067e-05 +UniRef50_Y8DDU0 0.00622958067642 0.000230716175927 -0.00599886450049 +UniRef50_UPI000373827F peptidase 2.7849031436e-05 2.97640846367e-05 1.9150532007e-06 +UniRef50_G8B089 6.35136322225e-05 0.000118710243746 5.51966115235e-05 +UniRef50_UPI0002DC68DF hypothetical protein 7.38687925474e-05 9.47998532056e-06 -6.43888072268e-05 +UniRef50_Q9I1P5 0.000705744710068 0.00175102031702 0.00104527560695 +UniRef50_B8EMG0 0.00095691803505 0.000695845906121 -0.000261072128929 +UniRef50_UPI00005C8244 transposase 0.00530276686792 0.00116572383629 -0.00413704303163 +UniRef50_K4FFQ5 Lysine decarboxylase 0.000215604834896 0.00899432625473 0.00877872141983 +UniRef50_Q8CSF5 0.0106079243499 0.000459041510662 -0.0101488828392 +UniRef50_UPI0003798946 hypothetical protein 0.00018489448043 5.45780386188e-05 -0.000130316441811 +UniRef50_Q9JW21 Amino acid acetyltransferase 0.000141878567076 0.00294290087203 0.00280102230495 +UniRef50_UPI00046441BB hypothetical protein, partial 2.77478391595e-05 7.52691037452e-05 4.75212645857e-05 +UniRef50_A8IPV3 Acetylglutamate kinase 0.00570593237411 0.0019096560019 -0.00379627637221 +UniRef50_UPI0003823B10 hypothetical protein 0.000136966638286 1.58733586583e-05 -0.000121093279628 +UniRef50_O29313 Glutamine synthetase 8.29429869726e-06 1.28309922823e-05 4.53669358504e-06 +UniRef50_P26503 UDP glucose 4 epimerase 0.000982529560611 0.000203473150108 -0.000779056410503 +UniRef50_H4EPB9 7.28156244633e-05 2.53510505022e-05 -4.74645739611e-05 +UniRef50_UPI00046D45A2 hypothetical protein 7.41324548199e-06 0.000222481318952 0.00021506807347 +UniRef50_UPI00047D5506 hypothetical protein 6.01104862865e-05 1.37015801647e-05 -4.64089061218e-05 +UniRef50_W1MTL3 0.00107876667732 0.000385455424858 -0.000693311252462 +UniRef50_U5S0M7 Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein 0.000669918486442 0.000715373051998 4.5454565556e-05 +UniRef50_W7VQA0 0.00140555984924 0.000781046212398 -0.000624513636842 +UniRef50_UPI000377C3F1 resolvase 0.000113212928966 2.60393643897e-05 -8.71735645763e-05 +UniRef50_Q9ZMY3 RNA polymerase sigma factor RpoD 0.000345497038117 0.00291801703149 0.00257251999337 +UniRef50_P46450 Long chain fatty acid CoA ligase 0.000939180578539 0.00701150887057 0.00607232829203 +UniRef50_A4JN97 0.00160424906864 0.000767690581897 -0.000836558486743 +UniRef50_A6FSV8 0.000139876655356 0.000130160823173 -9.715832183e-06 +UniRef50_UPI0004279983 hypothetical protein 3.67917922461e-06 7.26875706296e-06 3.58957783835e-06 +UniRef50_A7X0H4 Argininosuccinate lyase 0.0117212605862 0.00250056503979 -0.00922069554641 +UniRef50_Q9I1V0 Glycogen synthase 0.000407735096774 0.000254176614783 -0.000153558481991 +UniRef50_Q5HMZ9 0.00884548794109 0.00335199617572 -0.00549349176537 +UniRef50_W4U346 DeoR family transcriptional regulator 1.13204102724e-05 4.47881573567e-05 3.34677470843e-05 +UniRef50_R7AGH6 M42 glutamyl aminopeptidase 0.000433405071934 0.000746332107514 0.00031292703558 +UniRef50_G0P7V6 5.77902730311e-06 3.8321928354e-06 -1.94683446771e-06 +UniRef50_P14081 Selenocysteine specific elongation factor 0.00307511351861 0.00108050685201 -0.0019946066666 +UniRef50_I6TYL9 0.00549049537977 0.00177108757975 -0.00371940780002 +UniRef50_UPI0003D073EE PREDICTED 4.77159757469e-05 8.28974042425e-05 3.51814284956e-05 +UniRef50_P39755 Probable NADH quinone oxidoreductase subunit 5 0.0206132666973 0.0051755362641 -0.0154377304332 +UniRef50_UPI000347DE5C hypothetical protein 1.48289786683e-05 0.000198449184087 0.000183620205419 +UniRef50_UPI0003D31A3C ABC type dipeptide oligopeptide nickel transport systems 0.000306841023033 6.42854944311e-05 -0.000242555528602 +UniRef50_U6A643 Nicotinamidase family protein YcaC 0.000387165116772 0.00426859035205 0.00388142523528 +UniRef50_B2ILL9 Acetyl CoA carboxylase, biotin carboxylase 0.000266728620143 0.00811163231694 0.0078449036968 +UniRef50_UPI0001E8EA99 phospho N acetylmuramoyl pentapeptide transferase 6.62080952606e-06 1.45888631213e-05 7.96805359524e-06 +UniRef50_Q02CU2 NADH quinone oxidoreductase subunit A 6.99487687194e-05 0.000101830225562 3.18814568426e-05 +UniRef50_Q2SKM8 ABC type multidrug transport system, permease component 0.000944425537599 0.000206756152991 -0.000737669384608 +UniRef50_A5WCU0 D alanine D alanine ligase 7.04444012695e-06 0.0065885560069 0.00658151156677 +UniRef50_A0A024HNL0 Diguanylate cyclase 4.05143560939e-06 3.43072804711e-05 3.02558448617e-05 +UniRef50_I1ZKL5 Pseudouridine synthase 0.00638055860822 0.0101266352365 0.00374607662828 +UniRef50_Z7MRV5 EAL domain protein 8.52802165753e-06 7.98820009254e-05 7.13539792679e-05 +UniRef50_UPI000471D234 hypothetical protein 6.49560312737e-06 2.53911563829e-05 1.88955532555e-05 +UniRef50_UPI0003D05F43 hypothetical protein 8.29706154929e-05 0.000531761810539 0.000448791195046 +UniRef50_Q5YYN2 Prolipoprotein diacylglyceryl transferase 5.2166377034e-06 2.09813023488e-05 1.57646646454e-05 +UniRef50_UPI00035D1759 DNA invertase 6.23891323779e-05 5.58853861582e-05 -6.5037462197e-06 +UniRef50_P74193 Threonine synthase 0.0171966409042 0.0148887435881 -0.0023078973161 +UniRef50_UPI000409380C orotidine 5 phosphate decarboxylase 5.9463045832e-06 1.49168702931e-05 8.9705657099e-06 +UniRef50_Q99WV0 Glycyl glycine endopeptidase LytM 0.0124148092938 0.00190392494214 -0.0105108843517 +UniRef50_P64427 UPF0748 lipoprotein YddW 0.00176247697209 0.000155566306503 -0.00160691066559 +UniRef50_Q5LLU6 50S ribosomal protein L3 0.00890530689748 0.0040670688692 -0.00483823802828 +UniRef50_P54452 0.0239797302527 0.00836967941145 -0.0156100508413 +UniRef50_UPI000262729B diguanylate cyclase 1.32497692275e-05 9.32520815207e-06 -3.92456107543e-06 +UniRef50_UPI0003029904 hypothetical protein 1.46632997847e-05 3.12985779494e-05 1.66352781647e-05 +UniRef50_A0A022G9Q8 0.000378118168027 0.000181964720127 -0.0001961534479 +UniRef50_Q9ZLB9 Probable L asparaginase 0.00025679318969 0.00339785519996 0.00314106201027 +UniRef50_C3PF03 Bifunctional purine biosynthesis protein PurH 3.33090273918e-06 2.10543918866e-05 1.77234891474e-05 +UniRef50_D9PXM6 Predicted serine threonine protein kinase 0.00106585281482 0.00211625124959 0.00105039843477 +UniRef50_P77735 0.00346603896349 0.00126457590845 -0.00220146305504 +UniRef50_G8VB53 Amino acid permease 0.000324446809098 0.00372422486106 0.00339977805196 +UniRef50_Q2P0U3 Tryptophan synthase alpha chain 1.61264990198e-05 3.56779987997e-05 1.95514997799e-05 +UniRef50_L1FI55 Citrate carrier 0.00192866308867 0.000445499117303 -0.00148316397137 +UniRef50_Q0FMS9 0.00153034860346 0.000930435885393 -0.000599912718067 +UniRef50_T1Y8E9 2 oxoacid ferredoxin oxidoreductase, alpha subunit 0.0198602005341 0.003277275121 -0.0165829254131 +UniRef50_A5UJE2 0.00248787035764 0.00277295820046 0.00028508784282 +UniRef50_UPI000474A3E0 transcriptional regulator 7.40912305188e-06 0.00012568434344 0.000118275220388 +UniRef50_W5VFG0 0.00500866852388 0.0028685024806 -0.00214016604328 +UniRef50_Q04661 Tyrosine protein phosphatase CpsB 0.000158607558343 0.00414148094738 0.00398287338904 +UniRef50_J8RX83 Thioesterase family protein 0.000142626947925 2.37146561462e-05 -0.000118912291779 +UniRef50_D3A297 9.48090552991e-05 0.000259666475798 0.000164857420499 +UniRef50_B9E8V3 Putative septation protein SpoVG 0.00402749747522 0.00926232168594 0.00523482421072 +UniRef50_X2M604 7.36797636035e-05 0.000160207977501 8.65282138975e-05 +UniRef50_UPI00046A9133 hypothetical protein 1.41482857487e-05 9.01894795478e-06 -5.12933779392e-06 +UniRef50_UPI000375D747 cold shock protein 2.07195172502e-05 1.33807533173e-05 -7.3387639329e-06 +UniRef50_R6JIT7 0.0196303988558 0.00590671668225 -0.0137236821736 +UniRef50_UPI00036CC3FF hypothetical protein 4.16752659457e-05 5.95286567939e-05 1.78533908482e-05 +UniRef50_F6CST0 Peroxiredoxin 0.00123078383155 0.00132206999562 9.128616407e-05 +UniRef50_Q7MU77 Phosphoglycerate kinase 5.22437976361e-06 0.00479080225146 0.0047855778717 +UniRef50_A5FWQ8 Fructose 1,6 bisphosphatase class 1 3.82220601129e-05 2.64084401867e-05 -1.18136199262e-05 +UniRef50_Q4L8W8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.021539143469 0.00800008620146 -0.0135390572675 +UniRef50_Q8A883 Spermidine putrescine import ATP binding protein PotA 8.08585898108e-05 0.00580272971393 0.00572187112412 +UniRef50_UPI000409F09E hypothetical protein 4.01551425785e-06 5.30661169585e-06 1.291097438e-06 +UniRef50_D2JLI1 Conjugal transfer protein, putative 0.0123358784789 0.00312583087785 -0.00921004760105 +UniRef50_M9SAS9 Transcriptional regulator 0.000553112996021 0.000271763839138 -0.000281349156883 +UniRef50_A0A011ME20 2.52762134088e-05 0.000382253627912 0.000356977414503 +UniRef50_Q3J233 0.0119113447684 0.00475681591974 -0.00715452884866 +UniRef50_B7N3F3 Chaperone protein TorD 0.00522173509315 0.00266647443365 -0.0025552606595 +UniRef50_UPI00047D14F9 hypothetical protein 4.50993869057e-06 6.95645994845e-06 2.44652125788e-06 +UniRef50_Q63QK7 Arginine biosynthesis bifunctional protein ArgJ 0.000287587800444 0.0135742045261 0.0132866167257 +UniRef50_D6T8U6 0.0110219587789 0.00126474873508 -0.00975721004382 +UniRef50_M4V953 4.69207520079e-06 8.32937711656e-06 3.63730191577e-06 +UniRef50_E8ZZL4 EtfB protein 0.000236915892584 0.00364592574369 0.00340900985111 +UniRef50_H1QUK8 8.55626286146e-05 6.94085024983e-05 -1.61541261163e-05 +UniRef50_UPI00036C1506 hypothetical protein 4.08143320466e-05 3.53341976536e-05 -5.480134393e-06 +UniRef50_UPI0003945D12 PREDICTED 1.30451569939e-05 8.04623183622e-06 -4.99892515768e-06 +UniRef50_G7DIA2 9.74015453895e-05 8.34897140595e-05 -1.391183133e-05 +UniRef50_Q2P4Y9 Coenzyme PQQ synthesis protein E 0.00175926292942 0.000174228144654 -0.00158503478477 +UniRef50_UPI0004184600 GTP pyrophosphokinase 2.65559882458e-06 1.77088068155e-05 1.50532079909e-05 +UniRef50_A6QIK9 0.00643768430981 0.00270767554157 -0.00373000876824 +UniRef50_P45627 Glutamine synthetase 5.18456172615e-06 0.0012002902599 0.00119510569817 +UniRef50_B2T5I0 Ribonuclease HII 2.18466481345e-05 9.19637160294e-06 -1.26502765316e-05 +UniRef50_UPI00036856CA hypothetical protein 0.00027386493518 4.80139875405e-05 -0.000225850947639 +UniRef50_R7M1V7 DEAD DEAH box helicase domain protein 0.000666095097609 0.00236650721688 0.00170041211927 +UniRef50_H1BUU0 Inner membrane metabolite transporter ygcS 0.00262683084276 0.00138244233851 -0.00124438850425 +UniRef50_J7QJW8 0.000125745658831 0.000184889009233 5.9143350402e-05 +UniRef50_K5GQ46 0.00111966198608 0.00010854187655 -0.00101112010953 +UniRef50_A6LYI1 0.00060317442049 0.000411113742723 -0.000192060677767 +UniRef50_UPI0003EC3EE0 PREDICTED 1.65961049793e-05 0.000141962838917 0.000125366733938 +UniRef50_A0A014I7A1 Pyridine nucleotide disulfide oxidoreductase family protein 0.000135265622063 0.00035110911428 0.000215843492217 +UniRef50_Q5HNI2 Aminotransferase, class V 0.0164863780619 0.00587086214606 -0.0106155159158 +UniRef50_X2H2G3 RND efflux system, outer membrane lipoprotein CmeC 0.000196035806721 0.00243418162646 0.00223814581974 +UniRef50_A0R5R7 Putative aminotransferase MSMEG_6286 MSMEI_6121 0.000279278289246 0.00503858320069 0.00475930491144 +UniRef50_A6LWI0 GCN5 related N acetyltransferase 0.000150592814697 0.00046334784557 0.000312755030873 +UniRef50_A6LPV1 TPR repeat containing protein 0.000409207252008 0.000235000030651 -0.000174207221357 +UniRef50_Q8CWR9 30S Ribosomal protein S1 0.004909127607 0.00507423977484 0.00016511216784 +UniRef50_UPI0003A07669 hypothetical protein 2.06629740203e-05 0.000248933166937 0.000228270192917 +UniRef50_D3E2P3 2 phospho L lactate guanylyltransferase 0.00172021417878 0.00238968223095 0.00066946805217 +UniRef50_B9KPQ3 0.00494509457258 0.000385755698885 -0.00455933887369 +UniRef50_T0TBW3 Late competence protein ComGD 2.28759285352e-05 2.85739526563e-05 5.6980241211e-06 +UniRef50_A7AK72 3.44063939853e-05 0.0001989991499 0.000164592755915 +UniRef50_D4FM51 Plasmid recombination enzyme 0.240102320308 0.0660335100375 -0.17406881027 +UniRef50_Q9RRA3 0.00124788756646 0.013878437658 0.0126305500915 +UniRef50_B7H011 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000475820556097 0.00639284500169 0.00591702444559 +UniRef50_Q9Z3R5 Alpha glucosides binding periplasmic protein AglE 0.0123909599914 0.00226435783225 -0.0101266021592 +UniRef50_UPI0002558932 hypothetical protein 9.60562720262e-05 4.55910656136e-05 -5.04652064126e-05 +UniRef50_UPI00036947AC hypothetical protein 1.54268043047e-05 1.38998641816e-05 -1.5269401231e-06 +UniRef50_UPI000329BBE6 PREDICTED 3.46071572661e-05 4.37339130431e-06 -3.02337659618e-05 +UniRef50_A4WS76 Multi sensor signal transduction histidine kinase 0.00435282231411 0.00144453862634 -0.00290828368777 +UniRef50_UPI000363EF1A hypothetical protein 2.0230960003e-06 2.05139470601e-06 2.829870571e-08 +UniRef50_A6CJT6 1.92164955045e-05 0.000162885354401 0.000143668858897 +UniRef50_UPI00028868C0 ribonucleotide diphosphate reductase subunit beta 0.000143104370948 0.00245520790807 0.00231210353712 +UniRef50_Q39RR0 Peptidyl tRNA hydrolase 2.48340452411e-05 2.54769220243e-05 6.428767832e-07 +UniRef50_W4U5J7 Hypothetical radical SAM family enzyme 2.54747923368e-05 0.000229745583095 0.000204270790758 +UniRef50_Q3C148 DNA repair and recombination protein 0.000307369899816 0.000312039484729 4.669584913e-06 +UniRef50_UPI0002885658 3 hydroxyacyl CoA dehydrogenase 7.49944571364e-06 6.16964778192e-05 5.41970321056e-05 +UniRef50_Q46078 Pyruvate kinase 4.10722507528e-06 1.46519114423e-05 1.0544686367e-05 +UniRef50_Q2J2E9 sn glycerol 3 phosphate import ATP binding protein UgpC 7.42127560666e-05 6.93997617146e-05 -4.812994352e-06 +UniRef50_Q7WF76 Putative Holliday junction resolvase 2.98719514976e-05 2.05217218392e-05 -9.3502296584e-06 +UniRef50_M4YXX5 Glycosyl hydrolase, family 3 0.000612076421126 0.000100676149502 -0.000511400271624 +UniRef50_UPI00034F86F8 PREDICTED 0.00036472076218 0.000136301410845 -0.000228419351335 +UniRef50_Q58493 0.00390209051187 0.000744952766978 -0.00315713774489 +UniRef50_A4WTJ0 0.0001581635 7.80656323595e-05 -8.00978676405e-05 +UniRef50_P0A9T4 Protein tas 0.00322141072683 0.00951298081662 0.00629157008979 +UniRef50_U6FW85 0.000636001215368 0.00076156012448 0.000125558909112 +UniRef50_B7UZW2 Ecotin 0.00210753622359 0.000580562715609 -0.00152697350798 +UniRef50_UPI0004782022 peptide ABC transporter permease 1.57498051211e-05 1.49573783599e-05 -7.924267612e-07 +UniRef50_H8DHC5 ATP dependent OLD family endonuclease 0.00365791904567 0.00242597264769 -0.00123194639798 +UniRef50_I0HUP6 Diguanylate cyclase 3.15710943184e-06 4.31775296905e-05 4.00204202587e-05 +UniRef50_D2BL86 Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase 0.00382885290478 0.00226008180602 -0.00156877109876 +UniRef50_Q8XP36 UPF0324 membrane protein CPE0129 0.000454286268022 0.00201433866532 0.0015600523973 +UniRef50_C6DHE2 UDP N acetyl D mannosaminuronic acid transferase 0.00329855186385 0.000479217720496 -0.00281933414335 +UniRef50_J2FLN3 Alcohol dehydrogenase Adh4 0.000577784676811 0.00266263900478 0.00208485432797 +UniRef50_UPI000225FA9C ABC transporter related protein, partial 4.04390984072e-05 1.55620113355e-05 -2.48770870717e-05 +UniRef50_UPI0003B37CEF hypothetical protein 5.36775258869e-05 1.95722761396e-05 -3.41052497473e-05 +UniRef50_Q8DUK9 7 carboxy 7 deazaguanine synthase 0.00486054989841 0.00150801556633 -0.00335253433208 +UniRef50_Q0FEK0 4.80649975142e-05 1.02757762974e-05 -3.77892212168e-05 +UniRef50_Q1BY14 Methionine import ATP binding protein MetN 1 4.78332482471e-06 1.24888941271e-05 7.70556930239e-06 +UniRef50_UPI0003016AD5 hypothetical protein 8.81693766339e-06 5.1040721061e-06 -3.71286555729e-06 +UniRef50_K0B0R4 Para aminobenzoate synthase component 1 8.72463764734e-05 0.000800660411786 0.000713414035313 +UniRef50_F0DCU8 7.83947972266e-05 3.19259254101e-05 -4.64688718165e-05 +UniRef50_A8LPC9 Endoribonuclease L PSP 0.000470455168012 0.000221510019484 -0.000248945148528 +UniRef50_T9QA68 Adhesin invasin 0.000182594781991 0.000230611542828 4.8016760837e-05 +UniRef50_Q9ZI33 Ribulose bisphosphate carboxylase small chain 0.00803583869336 0.000572765435544 -0.00746307325782 +UniRef50_Q5H5Y6 Phenol hydroxylase 1.13173389672e-05 0.000173418600772 0.000162101261805 +UniRef50_C6SPE5 0.00319907264003 0.000777149224201 -0.00242192341583 +UniRef50_I6Z3X6 0.00202968843911 3.3002896435e-05 -0.00199668554268 +UniRef50_F3ZHG8 Putative zinc binding oxidoreductase 0.00010740760634 0.000199189901464 9.1782295124e-05 +UniRef50_Q9CIR1 tRNA N6 adenosine threonylcarbamoyltransferase 1.51396572322e-05 4.18550408913e-06 -1.09541531431e-05 +UniRef50_A1WG08 Binding protein dependent transport systems inner membrane component 0.00229928496834 0.00109443493432 -0.00120485003402 +UniRef50_B7GYQ7 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.000993258212345 0.00757204158262 0.00657878337027 +UniRef50_C3KT41 D isomer specific 2 hydroxyacid dehydrogenase family protein 0.000134656119687 0.00122836599102 0.00109370987133 +UniRef50_D5ASZ5 Flagellar basal body associated protein FliL 2 0.00698407376846 0.000348799258104 -0.00663527451036 +UniRef50_UPI0004636BA5 DNA repair protein 3.82769862948e-06 3.74479619542e-06 -8.290243406e-08 +UniRef50_N2UKS8 Electron transfer flavodomain protein 0.00364892438374 0.000728142626337 -0.0029207817574 +UniRef50_G7VQ62 Dehydrogenase 0.000446383790597 0.00161146937431 0.00116508558371 +UniRef50_UPI0003AF9315 PREDICTED 2.4760991295e-06 1.75642186049e-05 1.50881194754e-05 +UniRef50_Q03027 Alkaline protease secretion protein AprF 0.000243106414525 0.000366698694133 0.000123592279608 +UniRef50_P50939 NADH quinone oxidoreductase subunit L 0.00921382484706 0.00207187908037 -0.00714194576669 +UniRef50_F2KIT5 Glycine betaine ABC transporter, ATP binding component 0.0112604217102 0.00533058238626 -0.00592983932394 +UniRef50_Q89P06 Blr3677 protein 0.0126741799096 0.00409077981821 -0.00858340009139 +UniRef50_D6FNR4 5.54683132424e-05 2.41601509524e-06 -5.30522981472e-05 +UniRef50_A8AY63 Membrane protein, putative 0.00665838492907 0.00102743141551 -0.00563095351356 +UniRef50_A0A023RYQ0 0.000331560432068 0.00613921131723 0.00580765088516 +UniRef50_S6BF09 ATP dependent DNA helicase RecQ 0.000948887703246 9.07270983708e-05 -0.000858160604875 +UniRef50_UPI00034547F6 hypothetical protein 6.62139703393e-06 1.1325869155e-05 4.70447212107e-06 +UniRef50_C4K0T2 Queuine tRNA ribosyltransferase 5.56987846554e-06 1.60754334432e-05 1.05055549777e-05 +UniRef50_P76045 Outer membrane protein G 0.00286948503479 0.000796876361409 -0.00207260867338 +UniRef50_Q87WZ6 MutT nudix family protein 0.000791368862338 0.000303927998483 -0.000487440863855 +UniRef50_B2S8A9 Nicotinate phosphoribosyltransferase 0.00587895368077 0.0016896042043 -0.00418934947647 +UniRef50_F7X314 Phage major capsid protein, HK97 family 0.0101520557457 0.00143571977989 -0.00871633596581 +UniRef50_F0VY37 PTS system, beta glucosides specific IIA component 0.00567315879734 0.00270948350905 -0.00296367528829 +UniRef50_B8ZUM2 S adenosylmethionine synthase 3.84847036829e-05 0.000474096272763 0.00043561156908 +UniRef50_B7LN16 Ribosomal protein S6 L glutamate ligase 0.00227782588061 0.00183060678154 -0.00044721909907 +UniRef50_B0VE73 0.000285459560716 0.00767900298141 0.00739354342069 +UniRef50_U1FWN3 Putative glucoamylase S1 S2 2.22724625107e-05 0.000218009940572 0.000195737478061 +UniRef50_G9AFA8 Sugar ABC transporter, ATP binding protein 0.000696435768328 0.000116649126482 -0.000579786641846 +UniRef50_UPI00041E0388 hypothetical protein 2.01972134237e-05 9.63787431796e-06 -1.05593391057e-05 +UniRef50_B8J249 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.34033495984e-05 4.5339372661e-05 3.19360230626e-05 +UniRef50_Q9RV43 0.000831749761635 0.0323108680729 0.0314791183113 +UniRef50_E4PJS6 5.19306913542e-06 1.23305304199e-05 7.13746128448e-06 +UniRef50_M1MMU0 Amino acid ABC transporter substrate binding protein, PAAT family 0.00167788350834 0.00143364479164 -0.0002442387167 +UniRef50_P42407 Putative UTP glucose 1 phosphate uridylyltransferase 9.87933817892e-05 6.23100114394e-05 -3.64833703498e-05 +UniRef50_O86422 UDP glucose 6 dehydrogenase 2.77401116628e-06 0.000270624343531 0.000267850332365 +UniRef50_H5YG53 N terminal double transmembrane domain containing protein 1.12854843854e-06 1.99982062614e-06 8.712721876e-07 +UniRef50_Q1CXY2 0.00104962070547 2.65041967582e-05 -0.00102311650871 +UniRef50_X4YWC2 7.73206701881e-06 2.04282594886e-05 1.26961924698e-05 +UniRef50_P07769 Benzoate 1,2 dioxygenase subunit alpha 0.000490798519983 0.00912964140078 0.0086388428808 +UniRef50_O30826 Superoxide dismutase [Mn] 0.00126235748581 0.00695113265559 0.00568877516978 +UniRef50_P58362 Trimethylamine N oxide reductase 2 0.000891613326797 0.000297374549075 -0.000594238777722 +UniRef50_A4VYI2 Transcription repair coupling factor 0.000521069885137 5.07417019289e-05 -0.000470328183208 +UniRef50_Q81QB6 Methylmalonate semialdehyde dehydrogenase [acylating] 2 1.35149002753e-05 0.00428298221083 0.00426946731055 +UniRef50_F4GAH1 Transposase IS4 family protein 0.000748197907821 3.98182635472e-05 -0.000708379644274 +UniRef50_K0S0E9 3.22227152755e-06 1.1041515421e-05 7.81924389345e-06 +UniRef50_J0YAZ5 0.000943714972126 0.000112537289145 -0.000831177682981 +UniRef50_P46561 ATP synthase subunit beta, mitochondrial 1.88796007539e-05 1.67017945757e-05 -2.1778061782e-06 +UniRef50_W4TMC7 9.6666693449e-06 0.000260132555142 0.000250465885797 +UniRef50_D3QC48 Glycerophosphoryl diester phosphodiesterase 0.00819854319724 0.00313345987695 -0.00506508332029 +UniRef50_UPI0003EC2A72 PREDICTED 1.943127028e-05 1.03059774686e-05 -9.1252928114e-06 +UniRef50_V7ZEH0 ABC transporter permease and ATP binding protein 0.00498199210856 0.0016058858543 -0.00337610625426 +UniRef50_A0A017HVI0 Mobile element protein 2.48892011534e-05 7.10630492633e-06 -1.77828962271e-05 +UniRef50_UPI00046E240D PREDICTED 6.26010721355e-06 6.8202529925e-05 6.19424227114e-05 +UniRef50_A6LU76 0.000108994991968 0.00144734949684 0.00133835450487 +UniRef50_T5XQY7 Membrane protein 0.00134223008634 0.000112430217714 -0.00122979986863 +UniRef50_P0ADS0 LOG family protein YgdH 0.00335978591208 0.000406592361637 -0.00295319355044 +UniRef50_Q9HI36 Major exported protein 0.000481006234789 0.000345399655201 -0.000135606579588 +UniRef50_D2NU09 6.33454757134e-06 6.02303815742e-05 5.38958340029e-05 +UniRef50_D9RIX1 0.000300502717536 0.000220408171759 -8.0094545777e-05 +UniRef50_UPI000419A0DE hypothetical protein 4.7369935798e-06 9.2212428451e-06 4.4842492653e-06 +UniRef50_A6L050 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.00475359888e-05 0.00626266337721 0.00625261584122 +UniRef50_UPI0002E5C3C1 hypothetical protein 4.36628745523e-05 9.57003068738e-05 5.20374323215e-05 +UniRef50_Q03KT7 Dihydroorotate dehydrogenase B ), electron transfer subunit 0.0056163042561 0.0027594789636 -0.0028568252925 +UniRef50_Q5HKN3 Acetyltransferase, GNAT family 0.0195241026204 0.00568079280125 -0.0138433098191 +UniRef50_F2EDX4 Predicted protein 6.66180020111e-06 1.93469623516e-05 1.26851621505e-05 +UniRef50_UPI00036EAACB hypothetical protein 0.000297908085549 0.000995449568075 0.000697541482526 +UniRef50_UPI000441BADB PREDICTED 1.6202714075e-05 2.76286544791e-05 1.14259404041e-05 +UniRef50_P37631 0.0023970278766 0.00306671512104 0.00066968724444 +UniRef50_UPI00036F2919 hypothetical protein 1.76312314451e-05 1.85725749019e-05 9.413434568e-07 +UniRef50_P80521 Pyruvate synthase subunit PorA 0.00476276083121 0.00169305634929 -0.00306970448192 +UniRef50_G7U8S0 CoA transferase family III 0.000961759036027 0.0061183082032 0.00515654916717 +UniRef50_Q6F964 0.000130317372447 0.00557526767679 0.00544495030434 +UniRef50_F0P513 Replication initiation protein, truncated 0.000155014365938 6.5408497528e-05 -8.960586841e-05 +UniRef50_Q2RN85 Uroporphyrinogen decarboxylase 7.34158177522e-06 2.37978976802e-05 1.6456315905e-05 +UniRef50_F3Z4V2 8.71622374851e-05 4.35384635348e-05 -4.36237739503e-05 +UniRef50_U5NRR7 0.0178701955913 0.00435807404342 -0.0135121215479 +UniRef50_B2UNA2 Dihydroorotate dehydrogenase 8.24979655317e-06 0.00661451815751 0.00660626836096 +UniRef50_A5V4D5 2.1633631885e-05 2.20348044488e-05 4.011725638e-07 +UniRef50_UPI00040B6C97 hypothetical protein 2.81612700626e-06 5.17388827095e-06 2.35776126469e-06 +UniRef50_Q4L7R6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0129153798986 0.00188978133068 -0.0110255985679 +UniRef50_C8NS74 Formamidopyrimidine DNA glycosylase H2TH domain protein 0.000196607285859 0.00812714584714 0.00793053856128 +UniRef50_UPI0003B44FF8 N acetylglucosamine 1 phosphate uridyltransferase, partial 1.44931641581e-05 8.72975360197e-06 -5.76341055613e-06 +UniRef50_Q0FP15 ABC peptide transporter, inner membrane subunit 0.0012957576308 0.000529431418181 -0.000766326212619 +UniRef50_W8QUX6 Transcriptional regulator PdhR 0.000744714257679 0.000503687953156 -0.000241026304523 +UniRef50_V5ESH7 4.93068535137e-06 0.000314797489609 0.000309866804258 +UniRef50_F9Y7Q5 Carbonic anhydrase 0.0195187590679 0.0012758348223 -0.0182429242456 +UniRef50_K0K6Y3 1.96883294732e-05 2.51794637945e-05 5.4911343213e-06 +UniRef50_P0AEX3 Alpha ketoglutarate permease 0.00292871950988 0.00541792867589 0.00248920916601 +UniRef50_M1XFP7 0.000118042719085 0.000606372868261 0.000488330149176 +UniRef50_R4GHV6 7.05271752157e-05 0.000119155509215 4.86283339993e-05 +UniRef50_UPI000374C07B hypothetical protein, partial 3.47340689879e-05 1.63003801997e-05 -1.84336887882e-05 +UniRef50_A5IQH4 Phage integrase family protein 0.00796668772165 0.00464112046482 -0.00332556725683 +UniRef50_Q8DND7 0.00745880730675 0.000950408473414 -0.00650839883334 +UniRef50_C3KNX2 0.000200396216705 0.000124352586522 -7.6043630183e-05 +UniRef50_UPI0003DEB94F PREDICTED 6.29944425082e-06 8.0295191492e-06 1.73007489838e-06 +UniRef50_D2VIA9 Predicted protein 8.63375220039e-05 0.00018081824869 9.44807266861e-05 +UniRef50_O34599 Putative cysteine desulfurase IscS 1 9.74178797707e-06 0.000881061934195 0.000871320146218 +UniRef50_UPI0002558DCB heat shock protein HSP33 2.15857936444e-05 2.0035748238e-05 -1.5500454064e-06 +UniRef50_B1XYL1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.00368459714855 0.00031474998002 -0.00336984716853 +UniRef50_B1MLZ3 Ribonuclease PH 0.001265649655 2.21303801448e-05 -0.00124351927486 +UniRef50_A6LWJ3 Leucyl phenylalanyl tRNA protein transferase 0.00147404339564 0.000770391404865 -0.000703651990775 +UniRef50_Q9RU74 Ketol acid reductoisomerase 0.0345635300434 0.0356633327832 0.0010998027398 +UniRef50_UPI00045E0C55 PREDICTED 9.18811302645e-06 3.81662388165e-05 2.89781257901e-05 +UniRef50_UPI0003B5B300 preprotein translocase subunit TatA 8.32311736754e-05 4.69820677701e-05 -3.62491059053e-05 +UniRef50_Q5HLM4 Acetyltransferase, GNAT family 0.0122964494695 0.00133223057407 -0.0109642188954 +UniRef50_Q7VRS2 GMP synthase [glutamine hydrolyzing] 5.85095789624e-06 1.87342324122e-05 1.2883274516e-05 +UniRef50_A7ZIS2 0.00024057403108 6.34175550613e-05 -0.000177156476019 +UniRef50_UPI00035E4867 hypothetical protein 6.04793029774e-05 1.11856354779e-05 -4.92936674995e-05 +UniRef50_P72097 CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase 0.000141380520171 0.0044268424835 0.00428546196333 +UniRef50_A6LXH9 NHL repeat containing protein 9.29768445451e-05 0.00087280270583 0.000779825861285 +UniRef50_UPI0004721624 malate dehydrogenase, partial 6.81315371794e-05 3.56775277755e-05 -3.24540094039e-05 +UniRef50_Q7MUV7 Lysine tRNA ligase 0.000643565679842 0.00544020543667 0.00479663975683 +UniRef50_Q8VNN2 Beta galactosidase 0.00282343659554 0.00109666103591 -0.00172677555963 +UniRef50_Q3IV38 0.0153032259772 0.00253890594903 -0.0127643200282 +UniRef50_P63858 Capsular polysaccharide biosynthesis protein CapA 0.0101339182863 0.00111417183229 -0.00901974645401 +UniRef50_UPI000347E827 3 beta hydroxysteroid dehydrogenase 7.21531759285e-06 4.32703889925e-05 3.60550713996e-05 +UniRef50_C2DDU8 Putative L xylulose 5 phosphate 3 epimerase 8.76998914849e-05 2.11702670564e-05 -6.65296244285e-05 +UniRef50_UPI000365187A chromosome partitioning protein ParA, partial 0.000569845787601 0.000154800056222 -0.000415045731379 +UniRef50_UPI00046F371B chorismate synthase 1.51307463395e-05 0.00016949091412 0.000154360167781 +UniRef50_B7GWT8 Ribosomal RNA small subunit methyltransferase C 0.000355815146342 0.00638547615168 0.00602966100534 +UniRef50_UPI0003EE05C6 PREDICTED 1.29706877245e-05 1.87376025664e-05 5.7669148419e-06 +UniRef50_X3EN79 0.000607383470784 0.000711606518538 0.000104223047754 +UniRef50_UPI00047A30AA hypothetical protein 0.000733331025094 0.000162708928474 -0.00057062209662 +UniRef50_Q1C1E1 Glucose 1 phosphate adenylyltransferase 0.0146105118213 0.00280394115917 -0.0118065706621 +UniRef50_UPI00036C8CDE hypothetical protein 0.00209310138369 0.000490213643435 -0.00160288774025 +UniRef50_UPI00037C3A9D hypothetical protein, partial 7.1749049923e-07 5.25935869592e-07 -1.91554629638e-07 +UniRef50_UPI0003C11566 PREDICTED 0.000507628667435 0.000616714956331 0.000109086288896 +UniRef50_UPI00040E5729 ABC transporter 7.13162582353e-06 0.000107823965266 0.000100692339442 +UniRef50_X1PNE8 Marine sediment metagenome DNA, contig 3.43854112944e-05 6.74345318944e-05 3.30491206e-05 +UniRef50_G7MAQ1 Membrane bound O acyl transferase MBOAT family protein 0.000103704941998 0.00102623323107 0.000922528289072 +UniRef50_Q7W8T4 Peptide chain release factor 2 0.00391579861939 0.0140551801167 0.0101393814973 +UniRef50_A7WYY0 Molecular chaperone Hsp31 and glyoxalase 3 0.0119154523855 0.0108137618934 -0.0011016904921 +UniRef50_UPI000421D154 hypothetical protein 2.04316553362e-06 2.60813903017e-06 5.6497349655e-07 +UniRef50_UPI000412790F hypothetical protein 4.11239513658e-05 7.31339895527e-06 -3.38105524105e-05 +UniRef50_U9X3Y3 Rhamnan synthesis protein F domain protein 3.74385527953e-05 6.92212407108e-05 3.17826879155e-05 +UniRef50_U5MVV7 HTH type transcriptional regulator YybE 0.000301576958057 0.00211714282057 0.00181556586251 +UniRef50_A7IIB6 Dihydrodipicolinate synthetase 0.000340613114707 0.000193650298495 -0.000146962816212 +UniRef50_C5CFW2 UDP N acetylglucosamine 1 carboxyvinyltransferase 7.66293856835e-06 2.66349645368e-05 1.89720259684e-05 +UniRef50_UPI00042449ED hypothetical protein 3.57504886523e-06 4.40591584425e-06 8.3086697902e-07 +UniRef50_C7C7I3 0.00706909805164 0.00133281873626 -0.00573627931538 +UniRef50_E8U7F9 Response regulator receiver protein 0.000227401198102 0.117670917672 0.117443516474 +UniRef50_V0X9G6 dGTPase 0.00237612601739 0.000503066310752 -0.00187305970664 +UniRef50_B4F298 Fructose 1,6 bisphosphatase class 1 0.0031179689885 0.00259089780759 -0.00052707118091 +UniRef50_Q831F7 Release factor glutamine methyltransferase 8.94480009502e-06 0.000555729973354 0.000546785173259 +UniRef50_A3PFV7 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.00121434716993 9.90441716778e-05 -0.00111530299825 +UniRef50_UPI0004746084 hypothetical protein 0.000246092734189 0.000555514176567 0.000309421442378 +UniRef50_UPI0003608471 hypothetical protein 1.41129241711e-05 2.23272824339e-05 8.2143582628e-06 +UniRef50_Q5HH10 Phosphoribosylamine glycine ligase 0.0179634239187 0.00563114731999 -0.0123322765987 +UniRef50_A6WEY6 Carbamoyl phosphate synthase L chain ATP binding 7.44548301457e-05 0.00427397955166 0.00419952472151 +UniRef50_UPI0003F48E6E hypothetical protein TREMEDRAFT_44294 2.21180825112e-05 4.18100491019e-05 1.96919665907e-05 +UniRef50_UPI00047B5729 hypothetical protein 2.22683159818e-05 2.59780853997e-05 3.7097694179e-06 +UniRef50_P67129 UPF0053 inner membrane protein YgdQ 0.00341827803617 0.000746239122265 -0.00267203891391 +UniRef50_L2T6M0 Phenol hydroxylase 0.000112426538546 8.19981063315e-06 -0.000104226727913 +UniRef50_Q49WG8 1,4 Dihydroxy 2 naphthoyl CoA synthase 6.90296991846e-05 2.99098170517e-05 -3.91198821329e-05 +UniRef50_P44316 Diaminopimelate decarboxylase 1.11393716802e-05 0.00326164028778 0.0032505009161 +UniRef50_W4VJA0 PTS system 4.09727825416e-05 3.23332853973e-05 -8.6394971443e-06 +UniRef50_UPI00046A542B hypothetical protein 6.42202537412e-06 4.06509540806e-05 3.42289287065e-05 +UniRef50_UPI00037E6930 hypothetical protein 6.05608913533e-06 6.74768392549e-06 6.9159479016e-07 +UniRef50_C4L3Y8 Polyphosphate kinase 2.29918954698e-06 0.000151549774789 0.000149250585242 +UniRef50_UPI0002002F71 hypothetical protein 0.000168159727512 2.91080135921e-05 -0.00013905171392 +UniRef50_B9DKN5 Biotin synthase 0.0245126456752 0.00636023733733 -0.0181524083379 +UniRef50_F4A413 Transcriptional regulator 0.000517035759702 0.000208213893202 -0.0003088218665 +UniRef50_E3I461 Arsenical resistance protein 0.000142626947925 0.0120677017563 0.0119250748084 +UniRef50_UPI0003A6D827 sulfite oxidase 1.01200806686e-05 7.82739070587e-05 6.81538263901e-05 +UniRef50_C9SSZ1 Oxidoreductase FAD NAD binding 5.01311429643e-05 1.32658248915e-05 -3.68653180728e-05 +UniRef50_Q1GW15 0.000102624145099 5.76288639402e-05 -4.49952811588e-05 +UniRef50_I1F5A5 1.39959896984e-05 7.55433985786e-06 -6.44164984054e-06 +UniRef50_B8G5R5 Peptide deformylase 9.47820163591e-06 1.25462462496e-05 3.06804461369e-06 +UniRef50_C6T9B8 0.000109541432732 5.2251204662e-05 -5.729022807e-05 +UniRef50_A6QEA3 0.0132291254386 0.00260674501126 -0.0106223804273 +UniRef50_Q05098 Ferric enterobactin receptor 0.00124647008613 0.00118438003259 -6.209005354e-05 +UniRef50_UPI0004792802 transcription antiterminator NusG 2.63086439452e-05 5.23383824546e-05 2.60297385094e-05 +UniRef50_UPI0003F4A35E hypothetical protein TREMEDRAFT_74449 1.89351258361e-06 2.74200557878e-06 8.4849299517e-07 +UniRef50_Q7VIA9 Ribonuclease 3 6.21444178598e-06 0.00132849598711 0.00132228154532 +UniRef50_Q927P1 tRNA pseudouridine synthase A 7.43579762364e-06 0.00274548306196 0.00273804726434 +UniRef50_UPI00035A1EA0 PREDICTED 1.58781606928e-05 1.52564703525e-05 -6.216903403e-07 +UniRef50_R2NN08 PemK family transcriptional regulator 0.00173388432926 0.00252917940354 0.00079529507428 +UniRef50_UPI00047C7F40 hypothetical protein 0.00562562701337 0.0023647063448 -0.00326092066857 +UniRef50_Q4JV62 4 hydroxy tetrahydrodipicolinate reductase 0.000355002497348 0.00672055018433 0.00636554768698 +UniRef50_F0E145 Hydrophobe amphiphile efflux 1 family protein (Fragment) 0.000589341537003 0.000294914266632 -0.000294427270371 +UniRef50_D9SR21 0.000237412571605 0.000372247947718 0.000134835376113 +UniRef50_H5UVK0 4.26846650389e-05 2.81674891621e-05 -1.45171758768e-05 +UniRef50_I3GYQ4 3.07148892466e-05 4.9425389992e-05 1.87105007454e-05 +UniRef50_O31760 Ribonuclease J2 6.49331477975e-05 4.89756907145e-05 -1.5957457083e-05 +UniRef50_I1EYN0 0.000328152899579 5.06670061103e-05 -0.000277485893469 +UniRef50_P00964 Glutamine synthetase 0.0131530285518 0.00382147249017 -0.00933155606163 +UniRef50_UPI0003490F7B hypothetical protein 1.14728637909e-05 6.1924361837e-06 -5.2804276072e-06 +UniRef50_P54745 Heat responsive suppressor HrsA 0.00351697439169 0.000818838298675 -0.00269813609301 +UniRef50_Q9RVP6 Phosphoenolpyruvate carboxykinase [ATP] 1.03971711973e-05 0.044581085496 0.0445706883248 +UniRef50_A3PIK5 Putrescine binding periplasmic protein 0.0134480689331 0.00280411781676 -0.0106439511163 +UniRef50_Q8XBV3 Enterobactin synthase component E 0.00368344859595 0.0102789562906 0.00659550769465 +UniRef50_UPI00035FD10F hypothetical protein 0.000261102186081 0.000195226594638 -6.5875591443e-05 +UniRef50_UPI0003743277 hypothetical protein 2.39073400293e-05 8.91157397248e-06 -1.49957660568e-05 +UniRef50_U3QMM7 ABC transporter ATP binding protein 0.000140409629971 0.000304188330053 0.000163778700082 +UniRef50_A9IQ26 0.00941456641079 0.00162520872735 -0.00778935768344 +UniRef50_Q9RZE6 Succinate semialdehyde dehydrogenase 0.000256230296385 0.0643787763394 0.064122546043 +UniRef50_UPI00036FBC00 hypothetical protein 6.65587960894e-06 6.48869933759e-06 -1.6718027135e-07 +UniRef50_H4HIB4 0.00514611612858 0.000715737239671 -0.00443037888891 +UniRef50_C8VZ79 Beta lactamase domain protein 0.000373748503814 0.0022048209743 0.00183107247049 +UniRef50_E6SKM4 Electron transfer flavoprotein alpha subunit 5.89571095904e-06 8.17876380729e-06 2.28305284825e-06 +UniRef50_P93306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2 2.91622736447e-05 2.34356359381e-05 -5.7266377066e-06 +UniRef50_Q9KTJ5 Methionine import ATP binding protein MetN 9.12062034357e-06 1.00549448677e-05 9.3432452413e-07 +UniRef50_UPI0003769C5A hypothetical protein 8.04479105088e-06 1.60751300407e-05 8.03033898982e-06 +UniRef50_UPI00039A55CB hypothetical protein 3.12469733653e-05 2.22286446993e-05 -9.018328666e-06 +UniRef50_W1FXV5 Iron uptake factor PiuC 0.000163962913269 8.78595552198e-05 -7.61033580492e-05 +UniRef50_UPI00042A0F4E hypothetical protein 9.5583776e-05 2.15164812296e-05 -7.40672947704e-05 +UniRef50_F0MZJ7 Lipopolysaccharide N acetylglucosaminyltransferase 0.000238857099643 0.00308676362059 0.00284790652095 +UniRef50_UPI0002BC466A hypothetical protein, partial 1.66856985306e-05 0.00021636836013 0.000199682661599 +UniRef50_A7Z9P0 Cyclic pyranopterin monophosphate synthase 0.0144864843454 0.00162431299659 -0.0128621713488 +UniRef50_UPI0003626443 hypothetical protein, partial 6.41493409221e-06 7.25583475405e-06 8.4090066184e-07 +UniRef50_F4LW30 Galactitol specific enzyme IIC component of PTS 0.0159246353103 0.00468285717887 -0.0112417781314 +UniRef50_UPI0004724E83 hypothetical protein 1.86589141741e-05 0.00368351165259 0.00366485273842 +UniRef50_B5ZCH4 Sporulation domain protein 7.14277561963e-06 2.78937947192e-05 2.07510190996e-05 +UniRef50_Q4L9C4 Putative pyruvate, phosphate dikinase regulatory protein 1 0.0140220294402 0.00418523288181 -0.00983679655839 +UniRef50_Q8DSC8 Ribonuclease HIII 0.00787490637491 0.00424435233857 -0.00363055403634 +UniRef50_UPI00035C68B7 hypothetical protein 7.74895755011e-06 1.9437431378e-05 1.16884738279e-05 +UniRef50_R4VHN6 AzlC family protein 4.6241825768e-05 1.67570746735e-05 -2.94847510945e-05 +UniRef50_Q88F11 0.000184566013681 0.000350302005361 0.00016573599168 +UniRef50_F2N3V4 Peptide ABC transporter, periplasmic peptide binding protein 0.000138819999912 9.89335695768e-05 -3.98864303352e-05 +UniRef50_M1E792 Protein tyrosine phosphatase 1.15958817487e-05 5.33451056974e-05 4.17492239487e-05 +UniRef50_G0DVB5 Beta glucanase 0.000215500847 0.00672234447109 0.00650684362409 +UniRef50_N0APD1 2.19748717749e-06 3.36918387625e-06 1.17169669876e-06 +UniRef50_W6SQC5 0.000740249189385 0.000706090250575 -3.415893881e-05 +UniRef50_Q9RXH6 0.000143030297574 0.00358038805558 0.00343735775801 +UniRef50_Q255E7 0.000334481087742 0.000199919808566 -0.000134561279176 +UniRef50_UPI00045E6D39 hypothetical protein 0.000364408161665 0.000101679229027 -0.000262728932638 +UniRef50_M5EG32 0.000381903940063 0.000214523445595 -0.000167380494468 +UniRef50_P0ADW7 0.00385221223143 0.000767572239215 -0.00308463999221 +UniRef50_E6SFW3 Acyl CoA dehydrogenase domain containing protein 9.84746057885e-05 0.019374117907 0.0192756433012 +UniRef50_UPI000472D6AB arginine ABC transporter ATP binding protein 3.90039433386e-05 2.6381682491e-05 -1.26222608476e-05 +UniRef50_Q4FS54 Dihydroxy acid dehydratase 0.000164685839464 0.000397676496707 0.000232990657243 +UniRef50_Q5HNG2 tRNA ) methyltransferase 0.0105528050772 0.00370953722634 -0.00684326785086 +UniRef50_I3X570 Phosphotriesterase protein Php 0.00381993050899 0.000432558727564 -0.00338737178143 +UniRef50_O31404 Acetoin 0.0184022723598 0.00633182727105 -0.0120704450887 +UniRef50_X5Z2U4 1.12001162952e-05 3.0968893674e-05 1.97687773788e-05 +UniRef50_UPI0004752454 50S ribosomal protein L18, partial 7.58225725509e-05 0.000478325350467 0.000402502777916 +UniRef50_T1XNC8 0.00674358826406 0.000319261302914 -0.00642432696115 +UniRef50_UPI00047D8D50 PTS sugar transporter 5.73279120733e-06 7.17278600284e-06 1.43999479551e-06 +UniRef50_A3M7U1 Phosphopantetheinyl transferase component of siderophore synthetase 0.000166783205682 0.0101576989298 0.00999091572412 +UniRef50_UPI0003694178 hypothetical protein 2.34031223265e-06 8.03963942825e-06 5.6993271956e-06 +UniRef50_A6TDX1 Membrane bound lytic murein transglycosylase C 0.00194047499521 0.00063806929983 -0.00130240569538 +UniRef50_Q1YML4 0.000109613713572 3.73717697836e-05 -7.22419437884e-05 +UniRef50_Q3IXU4 Transcriptional regulator, IclR family MhpR 0.00726619844944 0.000855747270728 -0.00641045117871 +UniRef50_F9Z2J9 0.000216945970609 0.00417675248357 0.00395980651296 +UniRef50_S9V0F9 Plectin 4.99734712492e-05 2.27038231402e-05 -2.7269648109e-05 +UniRef50_UPI000475D84B spermidine putrescine ABC transporter substrate binding protein 8.9332761801e-06 2.79369190498e-05 1.90036428697e-05 +UniRef50_F3U2V0 Gas vesicle operon protein 0.0102161334589 0.00300276689147 -0.00721336656743 +UniRef50_K7U3H6 1.88215337338e-06 9.9597207344e-06 8.07756736102e-06 +UniRef50_W7WRB6 0.000312385792788 0.00018048425152 -0.000131901541268 +UniRef50_UPI000345BA64 hypothetical protein 0.000405254368462 0.000116213482927 -0.000289040885535 +UniRef50_Q5Z7E3 2.35390357303e-05 4.94986379554e-05 2.59596022251e-05 +UniRef50_E8SMG2 PetC 0.000173689872173 0.00186316201436 0.00168947214219 +UniRef50_E4EZN9 5.92886023805e-05 0.000366718545812 0.000307429943432 +UniRef50_UPI00042B0CC2 Non intrinsic ABC protein 7 isoform 6 3.30675926418e-05 1.79033815897e-05 -1.51642110521e-05 +UniRef50_K0EQ96 NADP dependent isocitrate dehydrogenase 0.000369448863451 0.000147092484913 -0.000222356378538 +UniRef50_A5UM19 Predicted permease 0.00204574534145 0.000412218931968 -0.00163352640948 +UniRef50_U6K4H4 2.6510600078e-05 1.38633217339e-05 -1.26472783441e-05 +UniRef50_W8U7U4 ABC type transport system involved in resistance to organic solvents, periplasmic component 0.000709169836922 0.000820661926468 0.000111492089546 +UniRef50_C3Z9G8 1.670201896e-05 7.73288820198e-06 -8.96913075802e-06 +UniRef50_C4IYT1 2.00616378548e-05 0.000176836350414 0.000156774712559 +UniRef50_UPI000470303C hypothetical protein 3.28967757738e-06 4.6579597572e-06 1.36828217982e-06 +UniRef50_Q8DU86 0.00273643935438 0.0020366669324 -0.00069977242198 +UniRef50_X1QUX5 Marine sediment metagenome DNA, contig 9.22344759715e-05 4.15593295073e-05 -5.06751464642e-05 +UniRef50_UPI00047A6123 transcriptional regulator 4.62745804386e-05 4.03757359807e-05 -5.8988444579e-06 +UniRef50_D5CZH2 Pyrimidine monooxygenase RutA 0.00407044737873 0.000581731435362 -0.00348871594337 +UniRef50_Q4L7G4 Peroxide responsive repressor PerR 0.0126420309016 0.00245292168467 -0.0101891092169 +UniRef50_Q31EP3 ATP binding cassette superfamily transporter, ATP binding component 0.000141204235229 0.00383455747249 0.00369335323726 +UniRef50_UPI0002DB68C6 hypothetical protein 8.81981913474e-06 1.04487444493e-05 1.62892531456e-06 +UniRef50_B2TL50 CoA transferase, A subunit 0.000339059271419 0.000743454642449 0.00040439537103 +UniRef50_I7EE24 0.00049760760615 5.46130297325e-05 -0.000442994576418 +UniRef50_UPI00046E59C8 30S ribosomal protein S5 7.55763561671e-06 1.32760435288e-05 5.71840791209e-06 +UniRef50_W9BYI7 Permease 0.000188196479694 5.12424234278e-05 -0.000136954056266 +UniRef50_UPI0003F65C64 PTS beta glucoside transporter subunit IIA 4.30760916382e-06 9.33676817093e-06 5.02915900711e-06 +UniRef50_S9Q8L7 XdhC protein 3.05451570015e-05 3.16080178392e-05 1.0628608377e-06 +UniRef50_A0A014NSW5 3.1138976817e-05 8.40181812125e-06 -2.27371586957e-05 +UniRef50_W4HZ56 1.43467971594e-05 3.31469282512e-05 1.88001310918e-05 +UniRef50_B9KX06 Transcriptional regulator, GntR family 0.0029892983123 0.00050009538222 -0.00248920293008 +UniRef50_A0A038FVF0 0.000344055501749 6.26747112453e-05 -0.000281380790504 +UniRef50_P55792 4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase 0.000605113540747 0.00250946707022 0.00190435352947 +UniRef50_UPI00040A1C88 glycerol 3 phosphate ABC transporter permease 6.05755715192e-06 9.2311083373e-05 8.62535262211e-05 +UniRef50_Q62C32 0.000227024636271 0.000435679305636 0.000208654669365 +UniRef50_U5MNP4 Penicillin binding protein 1A 0.000541216002363 0.0017899970886 0.00124878108624 +UniRef50_UPI0003BD7FE7 1.2380791638e-05 1.86627778243e-05 6.2819861863e-06 +UniRef50_P0A0H1 rRNA adenine N 6 methyltransferase 0.0710695482894 0.015250564999 -0.0558189832904 +UniRef50_Q46821 Uric acid transporter UacT 0.00208716939372 0.000901464150756 -0.00118570524296 +UniRef50_Q8DV32 0.00624729803654 0.00273695481469 -0.00351034322185 +UniRef50_UPI00047156EA hypothetical protein 1.18738483808e-05 6.66745940074e-05 5.48007456266e-05 +UniRef50_Q8G7H1 Ribonuclease 3 1.8068345351e-05 5.10460533467e-05 3.29777079957e-05 +UniRef50_P75989 HTH type transcriptional repressor YcgE 0.00653831875561 0.000864063278628 -0.00567425547698 +UniRef50_B9KRF9 Electron transport protein SCO1 SenC 0.0107427363269 0.00135282965922 -0.00938990666768 +UniRef50_D5C9N5 IS911 transposase orfB 2.74675665259e-05 5.3360102565e-05 2.58925360391e-05 +UniRef50_C1AE27 Aminotransferase 0.00152811983905 0.000557345394294 -0.000970774444756 +UniRef50_P77212 Probable pyridine nucleotide disulfide oxidoreductase RclA 0.00154307635008 0.000531832458592 -0.00101124389149 +UniRef50_U5WJX6 9.75170777661e-07 6.99869588374e-06 6.02352510608e-06 +UniRef50_U1G994 Putative adhesion protein like protein 1.35953912994e-05 1.53446156912e-05 1.7492243918e-06 +UniRef50_UPI00036FB1EC hypothetical protein 3.8192973519e-05 1.20642543562e-05 -2.61287191628e-05 +UniRef50_G6YS95 0.000138602962078 3.24302539132e-05 -0.000106172708165 +UniRef50_A6LWX5 Acriflavin resistance protein 0.000231691695838 0.000827583578552 0.000595891882714 +UniRef50_UPI0002D36C87 hypothetical protein 0.000252873935684 0.000719329472493 0.000466455536809 +UniRef50_Q21LG2 tRNA ) methyltransferase 0.00378426341098 0.00506320593819 0.00127894252721 +UniRef50_U3T3T5 Lipid A biosynthesis lauroyl acyltransferase 9.38249783738e-05 0.00784515633825 0.00775133135988 +UniRef50_F4QAU5 WH2 domain containing protein 3.30225670531e-06 2.09645037068e-05 1.76622470015e-05 +UniRef50_A5UKD0 Putative HTH type transcriptional regulatory protein Msm_0453 0.0032452428957 0.00079141834743 -0.00245382454827 +UniRef50_UPI000376FFD8 hypothetical protein 3.8237498165e-06 6.63765184477e-06 2.81390202827e-06 +UniRef50_Q9RU03 0.000151398123869 0.0202540496638 0.0201026515399 +UniRef50_Q9RU05 0.0012166247329 0.0428166763999 0.041600051667 +UniRef50_D5ARQ5 Methyltransferase small domain protein 0.000983190070638 0.000190526906577 -0.000792663164061 +UniRef50_B8FJP4 Phosphoglycerate kinase 2.9113669953e-05 4.64350843305e-05 1.73214143775e-05 +UniRef50_UPI000479F495 oxidoreductase 1.67870164307e-05 1.68778862333e-05 9.08698026e-08 +UniRef50_A0A011F836 TonB dependent Receptor Plug domain protein 0.000237962800056 0.00174289009336 0.0015049272933 +UniRef50_I6Q293 0.000310495959855 1.90246331987e-06 -0.000308593496535 +UniRef50_O07575 0.00857377147127 0.00414676789055 -0.00442700358072 +UniRef50_UPI0002F93554 hypothetical protein 3.25391568499e-05 0.00020005628824 0.00016751713139 +UniRef50_D4DM85 DNA gyrase, B subunit, C terminal domain protein 0.000237370727057 0.00359899417335 0.00336162344629 +UniRef50_UPI00046EE6DC dTDP 4 dehydrorhamnose 3,5 epimerase 8.09720927999e-06 1.33780657522e-05 5.28085647221e-06 +UniRef50_Q8FRR3 Tryptophan tRNA ligase 6.96678118772e-06 0.00104168742263 0.00103472064144 +UniRef50_O69282 Malate 4.50397808867e-06 1.30083901139e-05 8.50441202523e-06 +UniRef50_F2AE05 0.000742844876609 0.00121815905214 0.000475314175531 +UniRef50_UPI0004717CFE hypothetical protein 1.65266953169e-06 1.1828102581e-06 -4.6985927359e-07 +UniRef50_Q87ST5 4 hydroxythreonine 4 phosphate dehydrogenase 2.79010069193e-05 5.24443039217e-05 2.45432970024e-05 +UniRef50_A5UMP7 Fuculose 1 phosphate aldolase, class II aldolase adducin family 0.00226042650783 0.000586721930844 -0.00167370457699 +UniRef50_A6LXI3 Integral membrane sensor signal transduction histidine kinase 0.000282756489039 0.0014810680286 0.00119831153956 +UniRef50_UPI000368FC1C hypothetical protein 8.43077872633e-06 3.10569945556e-05 2.26262158293e-05 +UniRef50_Q1IVY6 FAD dependent oxidoreductase 9.35142829476e-05 0.0150304900812 0.0149369757983 +UniRef50_UPI00041819DF glycine cleavage system protein T 7.66125304056e-06 5.97556055673e-06 -1.68569248383e-06 +UniRef50_B2TQB0 Amylovoran biosynthesis AmsK 0.000419479947242 0.00286781137482 0.00244833142758 +UniRef50_A1IRV5 0.000376248493809 0.00837739838349 0.00800114988968 +UniRef50_Q2FD95 AdeI 0.000241857910556 0.0039325935646 0.00369073565404 +UniRef50_R9SJQ0 Cell wall biosynthesis protein Mur ligase family 0.00303316314678 0.000536311970277 -0.0024968511765 +UniRef50_UPI00047BD281 hypothetical protein 0.000326038076861 4.98465635184e-05 -0.000276191513343 +UniRef50_UPI00035D739B hypothetical protein 4.77989472503e-05 2.5664848983e-06 -4.5232462352e-05 +UniRef50_UPI00047BB945 SAM dependent methyltransferase 3.27997534341e-05 1.76416281773e-05 -1.51581252568e-05 +UniRef50_A0A023Y271 Carbon nitrogen hydrolase 0.00161607676697 0.00129897041445 -0.00031710635252 +UniRef50_Z2DBY9 Glycolate oxidase 1.46951476283e-05 2.55338874649e-05 1.08387398366e-05 +UniRef50_Q67PR5 Peptide deformylase 5.69533365392e-05 5.46136799135e-05 -2.3396566257e-06 +UniRef50_R7NQ15 Gluconate 5 dehydrogenase 0.00014900762718 0.00960413462624 0.00945512699906 +UniRef50_UPI0003B557FA hydrolase 0.000102624549964 4.90561887621e-05 -5.35683612019e-05 +UniRef50_B7ELK9 cDNA clone 3.48527519644e-05 7.51291275249e-05 4.02763755605e-05 +UniRef50_Q1YMK1 N acetyl gamma glutamyl phosphate reductase 2.49780161966e-05 2.17201642265e-05 -3.2578519701e-06 +UniRef50_H5DQ87 6.21593375632e-05 7.09802853806e-05 8.8209478174e-06 +UniRef50_UPI00035E02BE hypothetical protein 5.46594627386e-05 9.52746351128e-06 -4.51319992273e-05 +UniRef50_D6CMF6 Sulfite reductase 0.000921020160606 0.000507659308166 -0.00041336085244 +UniRef50_D5UQG6 6.34738694943e-06 2.47999378792e-05 1.84525509298e-05 +UniRef50_UPI0004690DDD pesticidal protein Cry5Ba 0.00173696051446 0.000259404547005 -0.00147755596745 +UniRef50_A4WT11 Methyl accepting chemotaxis sensory transducer 0.00294387287978 0.00095833591277 -0.00198553696701 +UniRef50_I0JFL4 BioY family protein 0.0112587901427 0.00514966187553 -0.00610912826717 +UniRef50_W1FZE6 TRAP type C4 dicarboxylate transport system, large permease component 8.45353666165e-05 6.67317486163e-05 -1.78036180002e-05 +UniRef50_D4H9D0 Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II 9.27484002093e-05 0.00360248207781 0.0035097336776 +UniRef50_Q8EXQ7 Adenosylcobalamin biosynthesis bifunctional protein CobDQ 6.48511705355e-06 5.93945308035e-05 5.29094137499e-05 +UniRef50_D8JE40 Soluble lytic transglycosylase fused to an ABC type amino acid binding protein 0.000563161913801 0.00192763556202 0.00136447364822 +UniRef50_A1HQK7 1.17167859395e-05 2.83740968929e-05 1.66573109534e-05 +UniRef50_U7PXV4 5.03073008551e-06 6.64049255522e-07 -4.36668082999e-06 +UniRef50_O27762 Phosphate transporter permease PstC 0.00432885079117 0.000352266447552 -0.00397658434362 +UniRef50_Q1IXT2 Cysteine synthase 0.000566132060278 0.0389249431035 0.0383588110432 +UniRef50_F0KPZ6 Oligopeptidase A 0.000255896112659 0.00601024709726 0.0057543509846 +UniRef50_B2UVS5 Purine nucleoside phosphorylase 0.00102950724232 0.00296465705605 0.00193514981373 +UniRef50_F8X9S0 Ribonucleoside diphosphage reductase 1, beta subunit, B2 0.000410245834973 7.61465601684e-05 -0.000334099274805 +UniRef50_Q9I0J7 NADH quinone oxidoreductase subunit F 0.00342625131585 0.00678094031501 0.00335468899916 +UniRef50_P0A3B9 4 phosphopantetheinyl transferase EntD 0.00214344532893 0.00214800826273 4.5629338e-06 +UniRef50_A6LP26 Adenine phosphoribosyltransferase 2.68037226555e-05 1.70730222569e-05 -9.7307003986e-06 +UniRef50_A9M1L0 Valine pyruvate aminotransferase 8.35145992986e-05 0.00414379382515 0.00406027922585 +UniRef50_B7HEG4 HPr kinase phosphorylase 0.0259769095693 0.0067024937685 -0.0192744158008 +UniRef50_UPI00035EE4F1 hypothetical protein, partial 1.91921330609e-05 3.73627273159e-05 1.8170594255e-05 +UniRef50_UPI000371E3B5 hypothetical protein 5.660720733e-06 1.23711448007e-05 6.7104240677e-06 +UniRef50_A4YBV8 DNA directed RNA polymerase subunit alpha 0.000355026420161 0.00338735792118 0.00303233150102 +UniRef50_P07003 Pyruvate dehydrogenase [ubiquinone] 0.00274332577794 0.00169456374456 -0.00104876203338 +UniRef50_Q5ZT84 4 hydroxyphenylpyruvate dioxygenase 0.000158385729588 0.00824153990315 0.00808315417356 +UniRef50_S4N129 4.24903846836e-05 0.000536436119069 0.000493945734385 +UniRef50_A6LV69 Adenylosuccinate synthetase 0.000193785441027 0.00122167915969 0.00102789371866 +UniRef50_P37872 0.00662693611282 0.000292392777421 -0.0063345433354 +UniRef50_K4KM08 Phosphatidylserine phosphatidylglycerophosphate cardiolipin synthase like protein 0.000711250787108 0.000524323775164 -0.000186927011944 +UniRef50_Q5FIF8 N acetylmuramic acid 6 phosphate etherase 7.28262728184e-06 1.13769710944e-05 4.09434381256e-06 +UniRef50_G7ZP06 0.00898205778025 0.00454895843689 -0.00443309934336 +UniRef50_UPI0004734490 hypothetical protein, partial 7.26582664506e-06 1.00571454438e-05 2.79131879874e-06 +UniRef50_UPI0003804668 hypothetical protein, partial 3.27128438195e-05 3.78289598399e-06 -2.89299478355e-05 +UniRef50_A9KJX4 Two component transcriptional regulator, winged helix family 0.00098006653273 0.000518099482802 -0.000461967049928 +UniRef50_P39381 0.0018171307634 0.000628962295273 -0.00118816846813 +UniRef50_UPI00036F79EF hypothetical protein 2.04829005201e-05 2.08469189899e-05 3.640184698e-07 +UniRef50_UPI00035C1F0F PhoB family transcriptional regulator 1.19974411968e-05 3.18909407107e-05 1.98934995139e-05 +UniRef50_Q2L1W2 Phosphonoacetaldehyde hydrolase 0.000564786096375 0.0010537782868 0.000488992190425 +UniRef50_Q9RYF4 Oxidoreductase, short chain dehydrogenase reductase family 0.000303369295793 0.0481947194562 0.0478913501604 +UniRef50_S5K087 0.00020051685915 0.00224837509715 0.002047858238 +UniRef50_UPI00016B0FEC hypothetical protein 0.000272225472725 0.000446322476372 0.000174097003647 +UniRef50_A3PN29 0.00525917967236 0.000466289534524 -0.00479289013784 +UniRef50_A3M3L2 Transcription regulator LysR family 0.000146123608583 0.00688485413227 0.00673873052369 +UniRef50_UPI0003C27927 PREDICTED 1.1805216264e-05 1.21754720508e-05 3.702557868e-07 +UniRef50_Q0S2H3 Ketol acid reductoisomerase 2.2804197232e-05 3.91952302383e-05 1.63910330063e-05 +UniRef50_Q98BA9 Mll5655 protein 0.000889600871452 0.00318015763219 0.00229055676074 +UniRef50_B8DA95 Ggdef motif membrane protein 0.000101799161961 0.000704875498837 0.000603076336876 +UniRef50_Q8VNM5 Orf513 protein 1.85780990745e-05 7.50066528596e-05 5.64285537851e-05 +UniRef50_A4W448 ATPases with chaperone activity, ATP binding subunit 0.00749593764114 0.00562690196658 -0.00186903567456 +UniRef50_R9SJ71 Type II secretion system protein E GspE 0.00239202141976 0.00177817982011 -0.00061384159965 +UniRef50_UPI000376BA8C hypothetical protein 9.48507284613e-05 1.65663314918e-05 -7.82843969695e-05 +UniRef50_A6M2J8 Glycerophosphoryl diester phosphodiesterase 0.000649550450817 0.000960775223075 0.000311224772258 +UniRef50_A0A017HNC7 4.02499631709e-06 2.15117888125e-05 1.74867924954e-05 +UniRef50_A3QG19 Homoserine O succinyltransferase 0.00662165468051 0.0163075785497 0.00968592386919 +UniRef50_UPI0003B4CB27 MarR family transcriptional regulator 1.49238087733e-05 8.15505867925e-05 6.66267780192e-05 +UniRef50_H9KGM6 1.01928736284e-05 2.20836331286e-05 1.18907595002e-05 +UniRef50_UPI00047DD55E electron transfer flavoprotein subunit alpha 1.0167012003e-05 1.36027365176e-05 3.4357245146e-06 +UniRef50_H3YNY8 Penicillin binding protein, transpeptidase domain protein 0.0173990111027 0.00467672177978 -0.0127222893229 +UniRef50_A5UP25 Predicted type II restriction enzyme, methylase subunit 0.00559611369867 0.000411456557505 -0.00518465714117 +UniRef50_G8MLW9 Binding protein dependent transport systems inner membrane component 0.000507217107692 0.0015949476058 0.00108773049811 +UniRef50_G2KXV7 0.000117033712309 0.00654737190689 0.00643033819458 +UniRef50_UPI00035CE0CD hypothetical protein 1.40269029924e-05 1.29074661319e-05 -1.1194368605e-06 +UniRef50_I0ESN6 Alanine dehydrogenase 0.00010342081886 0.00436034903428 0.00425692821542 +UniRef50_P73002 Cobyrinic acid A,C diamide synthase 1.10603340866e-05 0.000371790995168 0.000360730661081 +UniRef50_UPI0003645BA6 hypothetical protein 2.42269586579e-07 8.1319791206e-07 5.70928325481e-07 +UniRef50_A4WRS0 SAM dependent methyltransferase 9.516453501e-05 0.000149024409689 5.3859874679e-05 +UniRef50_B9KQ53 0.000936602790663 0.000703135012379 -0.000233467778284 +UniRef50_UPI000465DFCD hypothetical protein 1.55286322412e-05 5.08126450223e-05 3.52840127811e-05 +UniRef50_UPI0003651ACE hypothetical protein 3.55366880624e-06 3.1956570336e-05 2.84029015298e-05 +UniRef50_Q1IZ90 Drug resistance transporter EmrB QacA subfamily 0.000137912002714 0.0330351825307 0.032897270528 +UniRef50_UPI0003681123 hypothetical protein 5.66697429046e-06 1.87441322491e-05 1.30771579586e-05 +UniRef50_UPI000419642D MULTISPECIES 0.000297298079047 9.93951751378e-05 -0.000197902903909 +UniRef50_R7PVV2 0.00199467256595 0.00116982940041 -0.00082484316554 +UniRef50_J7RBB7 Fdhd protein 0.000158502778779 0.000166069600779 7.566822e-06 +UniRef50_X8A316 0.00099524258552 0.000223643230125 -0.000771599355395 +UniRef50_I7L4T0 Phosphate import ATP binding protein pstB 0.000272881437722 0.00433012411265 0.00405724267493 +UniRef50_M4WV43 Cis,cis muconate transporter MucK 8.75160715986e-05 0.000274946358252 0.000187430286653 +UniRef50_O26307 Hydrogenase expression formation protein HypE 0.00184768815042 0.000607463870433 -0.00124022427999 +UniRef50_P0AD04 Inner membrane protein YebS 0.00231831291635 0.000672491541523 -0.00164582137483 +UniRef50_Q3JHW2 8.95077155721e-07 3.92315100904e-05 3.83364329347e-05 +UniRef50_K0L036 Formate dehydrogenase 0.0117134009283 0.0014173807587 -0.0102960201696 +UniRef50_Q2GPL7 Predicted protein 4.68581199479e-06 4.22726290486e-06 -4.5854908993e-07 +UniRef50_P02929 Protein TonB 0.00416827720089 0.00139023834552 -0.00277803885537 +UniRef50_Y0BJC5 5.56445672337e-05 0.000117453029342 6.18084621083e-05 +UniRef50_Q3JEN4 Cytidylate kinase 0.0030630079815 0.0026786689622 -0.0003843390193 +UniRef50_A6T1E5 60 kDa chaperonin 0.000758693464667 0.000348865577547 -0.00040982788712 +UniRef50_UPI00047C3395 hypothetical protein 1.68109620053e-05 9.70455211084e-06 -7.10640989446e-06 +UniRef50_UPI0003791B6C hypothetical protein 7.37081740068e-06 2.89324819614e-05 2.15616645607e-05 +UniRef50_UPI0003EB0A2B GTPase 7.47574908731e-06 0.000709715475647 0.00070223972656 +UniRef50_B5F7X0 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.00414634585082 0.000959486386399 -0.00318685946442 +UniRef50_UPI0001E892A8 probable mannose 1 phosphate guanyltransferase 6.88439991802e-05 7.83492809126e-06 -6.10090710889e-05 +UniRef50_U5MUF8 0.00143349109691 0.000694667506903 -0.000738823590007 +UniRef50_G8PBV9 PTS system, lactose cellobiose IIC component family protein 0.000112235675575 0.00120817404873 0.00109593837316 +UniRef50_Q46863 Putative binding protein YgiS 0.00496299031516 0.000366356472688 -0.00459663384247 +UniRef50_UPI0003C17ADD PREDICTED 7.47564838915e-06 0.0005007437225 0.000493268074111 +UniRef50_P21912 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.94011728551e-05 3.91688387943e-05 9.7676659392e-06 +UniRef50_P77726 Inner membrane transport protein YajR 0.00230917749029 0.000189305580258 -0.00211987191003 +UniRef50_A9WS85 Leucine tRNA ligase 0.000315224109719 0.00657415066267 0.00625892655295 +UniRef50_D2RJ96 CRISPR associated protein Cas4 0.00641169304169 0.00360300894259 -0.0028086840991 +UniRef50_A6M3G8 Extracellular ligand binding receptor 0.00060846503087 0.00199566028927 0.0013871952584 +UniRef50_H8GYP5 3.42358033143e-05 0.000394202561313 0.000359966757999 +UniRef50_G8VEM4 Glycosyl transferase 0.000335545549501 0.00638348381479 0.00604793826529 +UniRef50_F0ME34 Sodium alanine symporter family protein 0.000126673150626 0.00165094312532 0.00152426997469 +UniRef50_F8JQP0 2.0445906561e-05 0.000352435599669 0.000331989693108 +UniRef50_V5NK98 0.00073801364786 0.00318122909438 0.00244321544652 +UniRef50_P45856 Probable 3 hydroxybutyryl CoA dehydrogenase 7.47097841561e-06 8.49836080879e-05 7.75126296723e-05 +UniRef50_I1HGX9 6.76900919389e-05 3.78371488187e-05 -2.98529431202e-05 +UniRef50_D6M5U2 Transcriptional regulator 2.20421068803e-05 1.73055318203e-05 -4.73657506e-06 +UniRef50_UPI00047B87C7 resolvase 0.000166082738007 0.000148930119471 -1.7152618536e-05 +UniRef50_P31471 0.0015782699698 0.00139317978913 -0.00018509018067 +UniRef50_P31470 0.00408368660701 0.000270106742557 -0.00381357986445 +UniRef50_B2V075 Ser Thr protein phosphatase family protein 0.000117353157162 0.00123286111148 0.00111550795432 +UniRef50_Q5L7W2 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 1.81637554896e-06 0.00369317750004 0.00369136112449 +UniRef50_M4U7I0 8.71076362508e-06 1.53955181854e-05 6.68475456032e-06 +UniRef50_U5NMY3 0.00272276246603 0.000680665341122 -0.00204209712491 +UniRef50_UPI0002379CD5 IS5 family transposase OrfA 1.43397962364e-05 2.48454257831e-05 1.05056295467e-05 +UniRef50_Q73F23 Tn7 like transposition protein C 3.30071623406e-06 0.000236417545201 0.000233116828967 +UniRef50_UPI000364A211 hypothetical protein 0.00301238287585 0.000364588524928 -0.00264779435092 +UniRef50_Q53199 Probable glutamate dehydrogenase 1.11411276695e-05 7.32779240207e-06 -3.81333526743e-06 +UniRef50_UPI0003641B94 hypothetical protein, partial 9.81817981587e-05 4.70173132578e-05 -5.11644849009e-05 +UniRef50_Q1LDL8 0.000803468928268 0.00184584933892 0.00104238041065 +UniRef50_UPI0003B6B0F4 hypothetical protein 5.28199585023e-06 3.33549767674e-05 2.80729809172e-05 +UniRef50_N9CNB8 9.46769974165e-06 2.93669261701e-05 1.98992264284e-05 +UniRef50_G2J0I7 0.000413835263349 0.00132096291232 0.000907127648971 +UniRef50_J0FRW1 0.000990128757628 0.000155279690407 -0.000834849067221 +UniRef50_UPI000411C2A5 hypothetical protein 0.000152485521016 7.29994343906e-05 -7.94860866254e-05 +UniRef50_UPI0003B57812 ABC transporter ATP binding protein 8.03968854634e-06 4.76007031518e-05 3.95610146055e-05 +UniRef50_W5X841 Phage associated DNA primase 1.01294888463e-05 0.000412216041804 0.000402086552958 +UniRef50_Q74L45 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2 0.0224244593613 0.00365361251891 -0.0187708468424 +UniRef50_F0TCP3 0.00323483186316 0.00115134382828 -0.00208348803488 +UniRef50_Q5UBV9 Resuscitation promoting factor 5.78245943101e-05 7.67520567149e-05 1.89274624048e-05 +UniRef50_Q6GI36 Staphostatin B 0.00146042537418 0.00053693946399 -0.00092348591019 +UniRef50_D4HBN4 Trypsin 0.000509160138868 0.00391973859595 0.00341057845708 +UniRef50_P76417 Putative nucleoside transporter YegT 0.00218786512907 0.000210689682662 -0.00197717544641 +UniRef50_B7S018 Oxidoreductase, short chain dehydrogenase reductase family 5.80179615192e-06 0.000281965618596 0.000276163822444 +UniRef50_T6VVX4 Galactitol 1 phosphate 5 dehydrogenase 0.000516991680384 0.000292392777421 -0.000224598902963 +UniRef50_A6LXN2 NLP P60 protein 0.000104857219123 0.00276303772658 0.00265818050746 +UniRef50_UPI00037E23C1 hypothetical protein 8.26092340567e-06 9.51068804585e-06 1.24976464018e-06 +UniRef50_B3HGM5 0.00145106314815 0.000457855356899 -0.000993207791251 +UniRef50_A6T6B5 tRNA 2 methylthio N dimethylallyladenosine synthase 0.00361416626661 0.0156928468018 0.0120786805352 +UniRef50_A0A009GFK1 0.000913272553671 0.0170646064139 0.0161513338602 +UniRef50_Q04JY7 Homoserine kinase 0.00031457165738 0.00297997355262 0.00266540189524 +UniRef50_UPI00035FAAB9 hypothetical protein 4.77501492741e-06 9.28672028189e-06 4.51170535448e-06 +UniRef50_H3XMI1 Periplasmic binding domain protein 6.32670742894e-05 0.000119400285112 5.61332108226e-05 +UniRef50_Q4UMZ3 Putative export ATP binding permease protein RF_0214 6.35949153104e-05 7.74314191575e-05 1.38365038471e-05 +UniRef50_UPI000361120A hypothetical protein 8.40803186985e-06 0.000119028408526 0.000110620376656 +UniRef50_Q5WVI7 2.30312102203e-05 0.00176784514883 0.00174481393861 +UniRef50_H3F815 1.27395869027e-05 0.000210074258441 0.000197334671538 +UniRef50_B5EN70 NADH quinone oxidoreductase subunit B 2 3.61010732909e-05 0.000143093900298 0.000106992827007 +UniRef50_UPI00037A86DD hypothetical protein 9.49220195328e-06 1.08675751515e-05 1.37537319822e-06 +UniRef50_D8TR27 9.7123324747e-05 7.59819996298e-05 -2.11413251172e-05 +UniRef50_UPI00042C3CC5 PREDICTED 1.60034511086e-05 1.32223924275e-05 -2.7810586811e-06 +UniRef50_K0HTI4 YD repeat protein 9.644414632e-05 0.00370034648493 0.00360390233861 +UniRef50_C5CI63 Adenine deaminase 1.84376755211e-05 6.20522698217e-06 -1.22324485389e-05 +UniRef50_A6M0R7 ABC transporter, periplasmic substrate binding protein 0.000309685371786 0.00361705747001 0.00330737209822 +UniRef50_B9KWE3 Methyl accepting chemotaxis sensory transducer 0.00440953233595 0.00164325783259 -0.00276627450336 +UniRef50_Q48K66 Branched chain amino acid transport system II carrier protein 0.000318522141699 0.00755936087353 0.00724083873183 +UniRef50_UPI0003780D5B hypothetical protein, partial 0.000301958839214 0.000646943829869 0.000344984990655 +UniRef50_B6JHG4 N acetyl gamma glutamyl phosphate reductase 5.29826498259e-05 4.21125530479e-05 -1.0870096778e-05 +UniRef50_A3PKL4 0.00440071333486 0.000477790105511 -0.00392292322935 +UniRef50_UPI00047265F4 hypothetical protein 2.82982757334e-06 2.04584009291e-05 1.76285733558e-05 +UniRef50_Q8RWV0 Transketolase 1, chloroplastic 4.08513644073e-05 1.72453155097e-05 -2.36060488976e-05 +UniRef50_Q1IRT8 Histidine ammonia lyase 4.28038896247e-06 4.88825145435e-05 4.4602125581e-05 +UniRef50_A6M3B4 0.000175303090798 0.000683855261656 0.000508552170858 +UniRef50_D0ISP2 Aminodeoxychorismate lyase 0.000140503469798 0.00376593821096 0.00362543474116 +UniRef50_I4DZ43 0.00667688312194 0.00174723469169 -0.00492964843025 +UniRef50_I6T9F6 Transcriptional regulator 0.00607751964798 0.00342578926584 -0.00265173038214 +UniRef50_UPI00047B64CE hypothetical protein 4.56528187742e-06 1.64584238309e-05 1.18931419535e-05 +UniRef50_Q2YQE0 Urease subunit gamma 2 5.7132099174e-05 0.00280250394319 0.00274537184402 +UniRef50_A8IHJ3 Altronate oxidoreductase 0.000943328049709 0.000740517866176 -0.000202810183533 +UniRef50_UPI000225ED80 DNA damage repair protein MutT 0.0001890738036 1.70532133868e-05 -0.000172020590213 +UniRef50_A5WC44 Membrane protein like protein 2.99238693049e-05 0.000100614891863 7.06910225581e-05 +UniRef50_W0MF84 0.000333022505855 0.00925260462548 0.00891958211962 +UniRef50_UPI0001FFF273 hypothetical protein, partial 2.50573607881e-05 0.000350998230871 0.000325940870083 +UniRef50_D3QIV7 Immunodominant antigen B 0.011228205139 0.00270456715148 -0.00852363798752 +UniRef50_A5UJ84 Adhesin like protein 0.00268025077318 0.000245076103906 -0.00243517466927 +UniRef50_UPI00035E8644 hypothetical protein, partial 3.01743483058e-05 3.81599280698e-05 7.985579764e-06 +UniRef50_UPI0003B6B470 hypothetical protein 0.000595194555565 0.000105749566174 -0.000489444989391 +UniRef50_UPI000362BA63 hypothetical protein 1.95592461839e-06 0.000730533611889 0.000728577687271 +UniRef50_A9M2L0 Transcriptional regulator, Fnr family 0.000796364292508 0.00259298060845 0.00179661631594 +UniRef50_Q9M439 Branched chain amino acid aminotransferase 2, chloroplastic 6.88732373537e-06 2.05608250904e-05 1.3673501355e-05 +UniRef50_F4LTT4 DNA methylase N 4 N 6 domain protein 0.000246241277342 0.00706890209602 0.00682266081868 +UniRef50_Q4L9Y1 PTS system mannitol specific EIICB component 0.00767983501024 0.00312703496244 -0.0045528000478 +UniRef50_UPI00047BEA91 hypothetical protein 1.06360246451e-05 9.10414453258e-05 8.04054206807e-05 +UniRef50_A6LWG3 0.000285569292609 0.00112970576838 0.000844136475771 +UniRef50_B9KWP4 ABC sugar transporter, inner membrane subunit 0.00758924334585 0.00288027685276 -0.00470896649309 +UniRef50_UPI00026C8165 peptidase A8 1.19733616071e-05 1.77552085591e-05 5.781846952e-06 +UniRef50_C3C2K9 0.000857677302841 0.00314670086138 0.00228902355854 +UniRef50_B5F445 Aspartate carbamoyltransferase regulatory chain 0.000493445737057 0.00222743179208 0.00173398605502 +UniRef50_UPI00037CE05A hypothetical protein 6.14154385859e-06 2.92317876983e-05 2.30902438397e-05 +UniRef50_P16682 Phosphonates binding periplasmic protein 0.00459295954877 0.000892910800665 -0.0037000487481 +UniRef50_Q5FSJ7 Anhydro N acetylmuramic acid kinase 9.14293144155e-06 5.24623869964e-05 4.33194555548e-05 +UniRef50_Q5HRD0 Endonuclease III 0.0191347268313 0.00385395803607 -0.0152807687952 +UniRef50_E6MWX9 5.61450906434e-05 0.000435288705025 0.000379143614382 +UniRef50_Q4L8H1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.006813252479 0.00190532872175 -0.00490792375725 +UniRef50_UPI00035DC37A hypothetical protein 3.92402545882e-06 4.91393459536e-06 9.8990913654e-07 +UniRef50_B2TR74 P type ATPase metal cation transport 0.000306540410571 0.00227759965536 0.00197105924479 +UniRef50_Q9CPY0 Putative ribosomal RNA methyltransferase 2 1.58624720732e-05 3.39665865469e-05 1.81041144737e-05 +UniRef50_U2YLP5 Possible lipoprotein 5.53750190449e-05 3.8870143796e-05 -1.65048752489e-05 +UniRef50_UPI000376B5CE hypothetical protein 1.15789176755e-05 3.79914350291e-05 2.64125173536e-05 +UniRef50_E8U4R9 GAF domain protein 8.08303031738e-06 0.00258434682014 0.00257626378982 +UniRef50_UPI00039595AE amino acid carrier protein 2.27907604823e-05 0.00231573459769 0.00229294383721 +UniRef50_UPI00037DB88D hypothetical protein 4.4087330398e-06 2.59238280605e-05 2.15150950207e-05 +UniRef50_UPI0003B53AEE hemolysin secretion protein D, partial 0.000127509562846 0.000187003006468 5.9493443622e-05 +UniRef50_UPI000465E12B hypothetical protein, partial 1.08803681926e-05 7.34977782121e-06 -3.53059037139e-06 +UniRef50_S1U9M8 Respiratory nitrate reductase 2 beta chain domain protein 4.01688940269e-05 0.000153124499628 0.000112955605601 +UniRef50_Q0RF16 Potassium transporting ATPase A chain 3.99613545594e-06 0.00142940576034 0.00142540962488 +UniRef50_X1GYM7 Marine sediment metagenome DNA, contig 3.11715608716e-05 4.76730438315e-05 1.65014829599e-05 +UniRef50_F2U6L8 SAM domain and HD domain containing protein 1 2.76295375609e-06 2.8560456801e-06 9.309192401e-08 +UniRef50_P23883 Aldehyde dehydrogenase PuuC 0.00531195182793 0.000937634185837 -0.00437431764209 +UniRef50_UPI00037CF752 hypothetical protein 1.11349720131e-05 1.8394083737e-05 7.2591117239e-06 +UniRef50_UPI00037C0B53 50S ribosomal protein L3 6.23917493977e-06 0.000340814098583 0.000334574923643 +UniRef50_A5UP78 Exoribonuclease VII, large subunit, XseA 0.00215857067305 0.000391078004213 -0.00176749266884 +UniRef50_P31131 Protein YdeJ 0.00292769080694 0.00221508008896 -0.00071261071798 +UniRef50_D7AQ31 Transcriptional regulator, DeoR family 0.000459429269956 0.000801836292727 0.000342407022771 +UniRef50_E7PVM6 Streptococcal histidine triad protein 0.000114621985566 0.000154651280037 4.0029294471e-05 +UniRef50_Q56953 Chelated iron transport system membrane protein YfeB 0.00213059780018 0.000390286394531 -0.00174031140565 +UniRef50_Q53CQ0 JM170 0.000209244122337 0.000270504075483 6.1259953146e-05 +UniRef50_Q98NF5 Threonine dehydratase 0.00315123497302 0.00102587252864 -0.00212536244438 +UniRef50_P76042 Putative ABC transporter periplasmic binding protein YcjN 0.00229229309692 0.00263038294274 0.00033808984582 +UniRef50_Q9BYC2 Succinyl CoA 5.56656991258e-05 3.5509475619e-05 -2.01562235068e-05 +UniRef50_UPI0002E54E33 hypothetical protein 9.82025663508e-05 1.41242329797e-05 -8.40783333711e-05 +UniRef50_X5EK24 Integral membrane transporter 7.46019740784e-05 0.00328373813961 0.00320913616553 +UniRef50_UPI00016A5F2C deoxyribodipyrimidine photolyase, partial 1.8824471964e-05 0.000214989296045 0.000196164824081 +UniRef50_UPI000478533A ribose ABC transporter permease 0.000130797652061 6.4056112945e-05 -6.6741539116e-05 +UniRef50_Q8ZYR9 DNA repair and recombination protein RadA 0.00299372232861 0.00148089947023 -0.00151282285838 +UniRef50_UPI000382A2F1 hypothetical protein 3.54409921254e-05 4.56870033621e-06 -3.08722917892e-05 +UniRef50_G7ZRL2 0.0171826271024 0.00560910229823 -0.0115735248042 +UniRef50_S4YXA5 Meta pathway phenol degradation like protein 7.64823676121e-06 9.51941935003e-06 1.87118258882e-06 +UniRef50_B2TNM6 DNA polymerase 8.97592399675e-05 0.0015944452856 0.00150468604563 +UniRef50_Q5HNN0 Probable GTP binding protein EngB 0.0111553700708 0.00477534449053 -0.00638002558027 +UniRef50_A5IS41 0.00518126123941 0.00214145439617 -0.00303980684324 +UniRef50_T2HRY4 Transposase DDE domain protein 0.000190810983781 0.000180254347023 -1.0556636758e-05 +UniRef50_Q5HRQ4 50S ribosomal protein L25 0.0254628850566 0.00893083873549 -0.0165320463211 +UniRef50_C5ASM5 Enoyl CoA hydratase 0.000635921096979 0.000748799869256 0.000112878772277 +UniRef50_A5VBZ8 DNA directed RNA polymerase subunit beta 1.26709949315e-05 2.49085934594e-06 -1.01801355856e-05 +UniRef50_D2GMB8 0.00120721971164 3.99118210134e-05 -0.00116730789063 +UniRef50_A3CNT1 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.00371627697137 0.00126518946121 -0.00245108751016 +UniRef50_UPI00031618D7 hypothetical protein 1.26569992233e-05 6.59325799901e-05 5.32755807668e-05 +UniRef50_UPI0003C8E1FD PREDICTED 7.96052706528e-05 1.94522517642e-05 -6.01530188886e-05 +UniRef50_M3X368 0.000175369346644 0.000102962392396 -7.2406954248e-05 +UniRef50_B7I751 NADH quinone oxidoreductase subunit N 0.00109528870245 0.00991772383966 0.00882243513721 +UniRef50_UPI00037AC0F7 hypothetical protein 0.000415012029582 4.66075767625e-05 -0.00036840445282 +UniRef50_W0NQ86 0.000173125784067 0.000172221570483 -9.04213584e-07 +UniRef50_UPI00040AFE18 DNA primase 4.34732605014e-06 1.74681419572e-05 1.31208159071e-05 +UniRef50_R1DKY4 3.62810417783e-05 0.000224555930352 0.000188274888574 +UniRef50_P0AFI5 D alanyl D alanine endopeptidase 0.00351682754093 0.00114984705152 -0.00236698048941 +UniRef50_Q54IJ8 3.9009919625e-05 6.63207975011e-07 -3.834671165e-05 +UniRef50_A0A059LB29 9.34525275573e-05 0.000733225041784 0.000639772514227 +UniRef50_K9XNW0 2.70520364308e-06 0.00152418098013 0.00152147577649 +UniRef50_Q9AK82 DNA polymerase IV 8.3887696239e-05 0.00536219246456 0.00527830476832 +UniRef50_U3SRM8 0.00445585099275 0.00158659460002 -0.00286925639273 +UniRef50_F7SKK4 Pirin like protein 5.06929127244e-05 3.64614498735e-05 -1.42314628509e-05 +UniRef50_Q49VP4 UTP glucose 1 phosphate uridylyltransferase 2 0.0214025197099 0.0070510296093 -0.0143514901006 +UniRef50_A7I262 DedA family protein 0.000788118449162 0.00153897694497 0.000750858495808 +UniRef50_A8AQ14 5 keto 4 deoxy D glucarate aldolase 0.00411022060924 0.000510998980884 -0.00359922162836 +UniRef50_UPI0000F2F781 two component response regulator 1.17928995719e-05 1.67265293638e-05 4.9336297919e-06 +UniRef50_UPI00026CD75D rare lipoprotein A 1.01343426064e-05 5.5350877534e-05 4.52165349276e-05 +UniRef50_P37327 Inner membrane protein YfdC 0.00312410409659 0.000483227980161 -0.00264087611643 +UniRef50_C5Z886 0.000108802350393 0.00132409392729 0.0012152915769 +UniRef50_B9TC98 Xanthosine phosphorylase, putative 0.0014002308986 0.000242062873115 -0.00115816802549 +UniRef50_P39851 Putative tyrosine protein kinase CapB 0.0258133970862 0.00394277478097 -0.0218706223052 +UniRef50_UPI00035DBD49 hypothetical protein 1.18899010743e-05 0.000190542928152 0.000178653027078 +UniRef50_UPI000329916F PREDICTED 3.93095096021e-06 1.30466569572e-05 9.11570599699e-06 +UniRef50_U3U1E2 Alkyl hydroperoxide reductase subunit F 8.38787326643e-05 0.000531341062728 0.000447462330064 +UniRef50_UPI000369BED8 hypothetical protein 2.45204019703e-05 2.5944529224e-05 1.4241272537e-06 +UniRef50_U8KDA3 0.000481897007041 0.00268684851974 0.0022049515127 +UniRef50_S6SYK4 Alkanesulfonate transporter substrate binding subunit 1.64367512698e-05 5.61668295816e-05 3.97300783118e-05 +UniRef50_UPI000415C161 phospholipase C 2.45859708223e-06 4.05222703401e-06 1.59362995178e-06 +UniRef50_G5KHM6 5.11210656376e-05 0.000137289552241 8.61684866034e-05 +UniRef50_UPI00046F982B hypothetical protein 9.16156515407e-06 8.34461994146e-06 -8.1694521261e-07 +UniRef50_UPI00045E9E9F hypothetical protein 2.56130020935e-05 8.57604175303e-05 6.01474154368e-05 +UniRef50_R7PWF8 0.00160719875038 0.000382094348328 -0.00122510440205 +UniRef50_UPI0004290598 luciferase 4.53953629829e-05 7.04463643718e-06 -3.83507265457e-05 +UniRef50_Q8FEN7 Arabinose 5 phosphate isomerase GutQ 0.00237728752386 0.000488709141147 -0.00188857838271 +UniRef50_O34133 Putative regulator AldR 0.000959953619953 0.0269602341966 0.0260002805766 +UniRef50_UPI00027F9D39 PREDICTED 0.00010441532621 1.44087256308e-05 -9.00066005792e-05 +UniRef50_A0NLI7 0.00047631933423 0.00211235857593 0.0016360392417 +UniRef50_A0A045UMF7 6.67631110754e-05 1.70044478929e-05 -4.97586631825e-05 +UniRef50_H0YQH9 2.25250653346e-05 7.03642243928e-06 -1.54886428953e-05 +UniRef50_G7QF23 Peptide chain release factor 3 0.000198235735785 0.0412329953604 0.0410347596246 +UniRef50_D9UK32 0.000257248533406 4.61275472664e-05 -0.00021112098614 +UniRef50_UPI000456151B hypothetical protein PFL1_04047 1.8900081494e-05 0.000113046338114 9.414625662e-05 +UniRef50_I6TYU2 Peptide synthetase 0.00568245088731 0.00131991713018 -0.00436253375713 +UniRef50_D3QF29 ABC transporter 0.0108437550286 0.00300708603153 -0.00783666899707 +UniRef50_Q8D820 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.78194721416e-05 5.95071185313e-06 -1.18687602885e-05 +UniRef50_UPI0003B36CD8 metal dependent hydrolase 5.52168911759e-06 1.15389153335e-05 6.01722621591e-06 +UniRef50_UPI000470D6FC hypothetical protein 0.000558524529389 9.01576586826e-05 -0.000468366870706 +UniRef50_S4X9L5 2 oxoglutarate ferredoxin oxidoreductase subunit beta 0.0114404834969 0.000704497677118 -0.0107359858198 +UniRef50_Q97L63 Spore photoproduct lyase 0.000251798222424 0.00101598528715 0.000764187064726 +UniRef50_UPI000427F61C O acetylhomoserine aminocarboxypropyltransferase 4.80092053304e-05 6.75559670035e-06 -4.12536086301e-05 +UniRef50_H9UVF1 Short chain dehydrogenase reductase SDR 0.00417589910305 0.00163271561365 -0.0025431834894 +UniRef50_V9R1Z5 Chemotaxis protein CheY 0.000741983596461 0.0002428287112 -0.000499154885261 +UniRef50_Q9RT22 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.000127526494248 0.0306512436277 0.0305237171335 +UniRef50_V4FVJ2 IS3 Spn1, transposase 0.000381917154385 4.11371599247e-05 -0.00034077999446 +UniRef50_UPI0000167300 COG0174 2.95723761745e-05 5.03560344835e-05 2.0783658309e-05 +UniRef50_U3ST30 0.00321881920049 0.00312375900188 -9.506019861e-05 +UniRef50_A6C7R0 4.84496331142e-06 5.39135851219e-06 5.4639520077e-07 +UniRef50_Q07GL5 Pirin protein, putative 0.000163318030493 7.6313959539e-06 -0.000155686634539 +UniRef50_A1B348 Cbb3 type cytochrome c oxidase subunit CcoP 0.0136581272347 0.00506429725071 -0.00859382998399 +UniRef50_M7M6N5 Transposase domain protein 0.000244243585442 0.000644118984519 0.000399875399077 +UniRef50_M1LYE3 Flagellar basal body protein FliL 0.000706339265833 0.000501954739708 -0.000204384526125 +UniRef50_Q9RXG4 Lon protease 0.000284005533994 0.0504697663211 0.0501857607871 +UniRef50_UPI000287D648 multidrug efflux associated protein 3.35002361247e-06 2.88471350202e-06 -4.6531011045e-07 +UniRef50_UPI0003B6CDE7 serine ammonia lyase 4.24305704395e-06 3.48140028116e-05 3.05709457677e-05 +UniRef50_A4AEG2 3.72612544287e-05 9.34581160418e-05 5.61968616131e-05 +UniRef50_B9DLC6 Transcription repair coupling factor 0.0101739401259 0.00358605458647 -0.00658788553943 +UniRef50_UPI0003C808C2 PREDICTED 4.02129300966e-07 1.01094027683e-06 6.08810975864e-07 +UniRef50_UPI0003775EA0 30S ribosomal protein S4, partial 2.09074650817e-05 0.000269567901264 0.000248660436182 +UniRef50_C5CV27 0.000312298694041 0.000285482025943 -2.6816668098e-05 +UniRef50_P54978 Phytoene desaturase 1.679693469e-05 3.01378114058e-05 1.33408767158e-05 +UniRef50_Q4L5Y5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.016400846572 0.0246547981902 0.0082539516182 +UniRef50_G8RAR9 Proline dehydrogenase 0.00948274430694 0.000915805065464 -0.00856693924148 +UniRef50_Q2FWK2 3 isopropylmalate dehydrogenase 0.0113165078642 0.000949521928702 -0.0103669859355 +UniRef50_R9YQ24 0.00887621566963 0.00163250803704 -0.00724370763259 +UniRef50_UPI0003626E85 PhoB family transcriptional regulator 9.96388947703e-05 2.95977809913e-05 -7.0041113779e-05 +UniRef50_UPI0003F822DA ABC transporter permease 5.73126320897e-05 0.000196446744309 0.000139134112219 +UniRef50_C5VTT8 tRNA specific adenosine deaminase 0.000256212209626 0.000792796524005 0.000536584314379 +UniRef50_K6U2B0 ABC type sugar transport system, periplasmic component 0.000158385729588 0.00184013748086 0.00168175175127 +UniRef50_A5ITW6 0.0121051911068 0.000315284738642 -0.0117899063682 +UniRef50_D8JKJ3 Transcription repair coupling factor 3.80274669728e-05 0.00630447377816 0.00626644631119 +UniRef50_U6B4B7 Lipoprotein 3.25593662758e-05 9.57026190087e-06 -2.29891043749e-05 +UniRef50_C3T922 Membrane associated protein 0.00325192515238 0.000758152611373 -0.00249377254101 +UniRef50_B2JSF8 Major facilitator superfamily MFS_1 0.000770992638191 0.000367038528455 -0.000403954109736 +UniRef50_A7GWQ0 S ribosylhomocysteine lyase 8.93000762329e-06 0.000469883756694 0.000460953749071 +UniRef50_UPI00046650D5 DNA recombination protein RecN 3.92385279295e-06 1.19037562535e-05 7.97990346055e-06 +UniRef50_UPI0000E0F611 UTP glucose 1 phosphate uridylyltransferase 0.00085692130517 0.000261145479274 -0.000595775825896 +UniRef50_D8HI13 NPQTN specific sortase B 0.0138265985307 0.000533704888912 -0.0132928936418 +UniRef50_A5UK93 Mg dependent DNase, TatD related 0.0021290659579 0.00118196942019 -0.00094709653771 +UniRef50_Q9RSH5 Membrane protein insertase YidC 0.000227982246464 0.0380320244727 0.0378040422262 +UniRef50_A0A059IP43 9.13671249766e-05 5.92477950321e-05 -3.21193299445e-05 +UniRef50_Q2FJ80 FMN dependent NADPH azoreductase 0.0185592461058 0.00557423277481 -0.012985013331 +UniRef50_UPI00046F326D hypothetical protein 0.000337634843705 0.000330787682637 -6.847161068e-06 +UniRef50_C6SQB9 0.00471556158544 0.00131761107357 -0.00339795051187 +UniRef50_Q930I4 Histidinol dehydrogenase 2 0.000552067536772 0.00013536289008 -0.000416704646692 +UniRef50_A0A023VI11 Beta lactamase 0.00440264323697 0.000971503193893 -0.00343114004308 +UniRef50_F5X3F3 HI0933 like oxidoreductase dehydrogenase 0.00461334314387 0.00496447499705 0.00035113185318 +UniRef50_UPI00036BFC25 hypothetical protein 8.17238696985e-06 4.46865155601e-05 3.65141285903e-05 +UniRef50_UPI00046A9281 glycine cleavage system protein H 7.25175726586e-05 4.2109723022e-05 -3.04078496366e-05 +UniRef50_W6JZG7 0.00018996331545 5.51749449576e-05 -0.000134788370492 +UniRef50_B9KSX5 Sporulation domain protein 0.000114853749147 0.000292844959078 0.000177991209931 +UniRef50_UPI00037A69CE hypothetical protein 3.71292529424e-06 0.000180340969236 0.000176628043942 +UniRef50_B9KUJ5 0.000320667299987 6.88145081358e-05 -0.000251852791851 +UniRef50_L5N059 6.54809863542e-06 2.80456329253e-05 2.14975342899e-05 +UniRef50_Q8VVL8 ORF 5 0.000806448360266 0.000529094249114 -0.000277354111152 +UniRef50_UPI000441F366 0.000129681746904 2.5530086296e-05 -0.000104151660608 +UniRef50_UPI000363D669 hypothetical protein 1.35543753366e-05 7.95990891992e-05 6.60447138626e-05 +UniRef50_T0MER8 0.000348005966761 0.000518180593909 0.000170174627148 +UniRef50_F1VLT2 0.0005789719829 0.000639342072811 6.0370089911e-05 +UniRef50_A3M519 EsvK1 0.000408829590809 0.00210564495683 0.00169681536602 +UniRef50_A6M0I4 Transcriptional regulatory protein 0.000418554545908 0.0012225577219 0.000804003175992 +UniRef50_UPI000372ED7A hypothetical protein 1.0482815913e-05 6.92945939606e-06 -3.55335651694e-06 +UniRef50_A7X766 Imidazoleglycerol phosphate dehydratase 0.0131656631923 0.0109802267631 -0.0021854364292 +UniRef50_F3T6C6 Conserved domain protein 1.82463189118e-05 0.000102903168863 8.46568499512e-05 +UniRef50_D3G1Y7 Cadmium resistance transporter, putative 0.0130973520699 0.00678809564193 -0.00630925642797 +UniRef50_A9FQ61 9.35086209409e-05 2.84356395773e-05 -6.50729813636e-05 +UniRef50_I0IJ24 1.55541118659e-05 3.13118097559e-05 1.575769789e-05 +UniRef50_S5YT17 Transposase 0.00129478547536 7.61189957441e-05 -0.00121866647962 +UniRef50_UPI00047ABD8A arginine tRNA ligase 3.20281599027e-06 1.10506827367e-05 7.84786674643e-06 +UniRef50_UPI00028A110F UrtA 5.67815879186e-05 0.000289335144547 0.000232553556628 +UniRef50_Q2CDM2 0.000618388949015 0.000149146733034 -0.000469242215981 +UniRef50_F8CGQ9 1.99876564936e-05 6.66717267717e-06 -1.33204838164e-05 +UniRef50_Q4L732 DNA polymerase 0.0096210484349 0.00386334423775 -0.00575770419715 +UniRef50_S5CN83 Outer membrane receptor for monomeric catechols 0.000103895576076 0.00748927075989 0.00738537518381 +UniRef50_Q5LMC4 Peptidase, family S49 0.00537228637452 0.000299307471484 -0.00507297890304 +UniRef50_W7J7H8 Basic proline rich protein 0.00026314464008 0.000308821568063 4.5676927983e-05 +UniRef50_UPI00037AC687 hypothetical protein 5.74955104166e-06 3.1246709291e-06 -2.62488011256e-06 +UniRef50_G7M7P5 Aspartate semialdehyde dehydrogenase 0.0151801086402 0.00557957797411 -0.00960053066609 +UniRef50_P77280 0.00322488994571 0.00132915114518 -0.00189573880053 +UniRef50_UPI000472DE9D hypothetical protein, partial 9.77964138116e-06 3.42787963245e-05 2.44991549433e-05 +UniRef50_UPI00047A4340 hypothetical protein 1.82734146786e-06 3.74954873306e-07 -1.45238659455e-06 +UniRef50_P35598 Putative ABC transporter ATP binding protein exp8 0.00615679346361 0.00346641124066 -0.00269038222295 +UniRef50_D2N3U7 Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative 0.0185189684308 0.00114316143946 -0.0173758069913 +UniRef50_UPI000365A456 hypothetical protein 1.46711065423e-05 4.99379291617e-06 -9.67731362613e-06 +UniRef50_UPI0003676E73 hypothetical protein 8.49407490501e-06 8.23047469559e-06 -2.6360020942e-07 +UniRef50_UPI0003A0CBF8 MULTISPECIES 2.1761733673e-05 2.69720846801e-05 5.2103510071e-06 +UniRef50_P0AAG7 Multidrug resistance like ATP binding protein MdlB 0.00362555793418 0.00138551737165 -0.00224004056253 +UniRef50_J8RWM9 Sulfate ABC transporter permease 3.59470576485e-05 4.88450919042e-05 1.28980342557e-05 +UniRef50_UPI0003AD9F9E PREDICTED 2.62024477787e-06 0.000111650426235 0.000109030181457 +UniRef50_UPI0004268641 50S ribosomal protein L21 0.000174170271306 0.000533610056723 0.000359439785417 +UniRef50_Q7MGT4 Phosphoribosylamine glycine ligase 0.00269549286978 0.00191132722778 -0.000784165642 +UniRef50_F0YT45 9.30648393263e-05 0.000304541484263 0.000211476644937 +UniRef50_S4YSN2 NAD transhydrogenase subunit alpha 3.47675440264e-05 2.82355334621e-05 -6.5320105643e-06 +UniRef50_C3P7X7 3 dehydroquinate dehydratase 1.40149481772e-05 0.00797302724206 0.00795901229388 +UniRef50_UPI00016B1721 pyrophosphatase, MutT nudix family protein 8.64472431158e-05 0.000485697079988 0.000399249836872 +UniRef50_UPI0003B5F58F anthranilate synthase subunit I 3.37609441314e-05 3.46722114391e-05 9.112673077e-07 +UniRef50_Q4UV65 Lipid A export ATP binding permease protein MsbA 2.82857286653e-06 4.28928363009e-06 1.46071076356e-06 +UniRef50_I0C7F8 Aminobenzoyl glutamate transport protein 0.011505852907 0.00255722850754 -0.00894862439946 +UniRef50_UPI00041D865E peptide ABC transporter permease 1.42774826121e-05 6.55129913751e-06 -7.72618347459e-06 +UniRef50_Q1LNK1 1.90446807371e-05 1.99719684057e-05 9.272876686e-07 +UniRef50_A6LQM0 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 0.0018596256697 0.000336863161818 -0.00152276250788 +UniRef50_A3PS70 YD repeat protein 0.0178464423983 0.00394190970567 -0.0139045326926 +UniRef50_I6U2R2 0.00282659351591 0.00113809634826 -0.00168849716765 +UniRef50_UPI00038092FF hypothetical protein 8.68289799064e-06 1.18108598478e-05 3.12796185716e-06 +UniRef50_Q828X4 Putative cytochrome c oxidase subunit 1 beta 4.2835530908e-05 0.000104455297438 6.161976653e-05 +UniRef50_T3I3Z9 Homocitrate synthase 0.00023436273396 0.00393933040863 0.00370496767467 +UniRef50_Q3SFK0 Chromate transporter 8.47648178546e-05 0.00681067727041 0.00672591245256 +UniRef50_U2BSH5 Glyoxalase family protein 6.98444338041e-05 3.73485901213e-05 -3.24958436828e-05 +UniRef50_G8RET5 D specific D 2 hydroxyacid dehydrogenase ddh like protein 0.0192881411404 0.00885030533241 -0.010437835808 +UniRef50_UPI00046F8D3D hypothetical protein, partial 1.71870560522e-05 5.44835496114e-05 3.72964935592e-05 +UniRef50_S5Z097 0.0013772739649 0.000272600035571 -0.00110467392933 +UniRef50_UPI0002557980 hemolysin type calcium binding protein 1.6239079418e-06 4.02398115472e-06 2.40007321292e-06 +UniRef50_X1M4K5 Marine sediment metagenome DNA, contig 0.000191819905193 0.0105954605861 0.0104036406809 +UniRef50_K0NK11 MaoC domain protein dehydratase 0.000440637162124 0.000425937555561 -1.4699606563e-05 +UniRef50_F0KIW4 0.000101383882411 0.00729510827071 0.0071937243883 +UniRef50_UPI00036F6565 hypothetical protein 6.44861232762e-06 0.00095556043908 0.000949111826752 +UniRef50_UPI0003735CF6 hypothetical protein 7.46106680375e-06 2.82210088947e-05 2.07599420909e-05 +UniRef50_A7GPF0 40 residue YVTN family beta propeller repeat protein 6.10500934901e-06 0.000595819283947 0.000589714274598 +UniRef50_Q9V150 Tryptophan synthase beta chain 2 0.00383061466461 0.00571815498712 0.00188754032251 +UniRef50_UPI00047A278A hypothetical protein 0.000114516141402 1.04477878889e-05 -0.000104068353513 +UniRef50_I0C7M3 Transporter, drug metabolite exporter family 0.0115676540833 0.0017248427924 -0.0098428112909 +UniRef50_A0A024HE97 Lon protease 2 0.000708907774043 0.000651036257387 -5.7871516656e-05 +UniRef50_B2V4S9 Elongation factor P 0.000353485280728 0.00118438200682 0.000830896726092 +UniRef50_B7JB82 Bifunctional protein GlmU 4.25502632061e-06 6.87990841872e-06 2.62488209811e-06 +UniRef50_Q49XB9 0.00271001707394 0.00505559369371 0.00234557661977 +UniRef50_Q9JVD3 Ribonuclease 3 5.97440078609e-06 0.00201162066148 0.00200564626069 +UniRef50_A4G9I7 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.000178136611464 0.0108084973648 0.0106303607533 +UniRef50_B7UT13 1.64708801895e-05 0.000346527359113 0.000330056478923 +UniRef50_UPI00016A620A SsrA binding protein, partial 0.000108351431927 0.000580690553869 0.000472339121942 +UniRef50_P02906 Sulfate binding protein 0.00269219432221 0.000653199635336 -0.00203899468687 +UniRef50_C1D8I2 DUF1376 domain containing protein 3.89975733757e-06 1.16332526839e-05 7.73349534633e-06 +UniRef50_R7AXX0 1.30129559593e-05 0.00433771551145 0.00432470255549 +UniRef50_X1YKE3 1.82972162046e-05 2.8474602299e-05 1.01773860944e-05 +UniRef50_Q820K4 tRNA ) methyltransferase 9.34392744243e-06 0.00483039032914 0.0048210464017 +UniRef50_L7WWS4 0.00975176111395 0.00198692980585 -0.0077648313081 +UniRef50_D9STU2 Transcriptional antiterminator, BglG 0.00040438159484 0.00113424131447 0.00072985971963 +UniRef50_UPI00047C795E hypothetical protein 3.19877229204e-05 7.42457073818e-05 4.22579844614e-05 +UniRef50_M9VJN7 Isochorismate synthetase, enterochelin 0.000297419644424 0.00488981503896 0.00459239539454 +UniRef50_Q0I781 Membrane protein, putative 2.06330480711e-05 3.10989259013e-06 -1.7523155481e-05 +UniRef50_A0A029LEA3 Prepilin type N terminal cleavage methylation domain protein 0.000674082122953 0.000496063427586 -0.000178018695367 +UniRef50_A6LVZ7 Ribose 5 phosphate isomerase A 0.000327333484896 0.00574098971917 0.00541365623427 +UniRef50_A0A031J2A8 Conjugative relaxase domain containing protein 8.73801015494e-05 8.14698142777e-06 -7.92331201216e-05 +UniRef50_P77698 0.00357416084623 0.00300319327654 -0.00057096756969 +UniRef50_B1FEG9 7.58562577622e-06 0.000144612251227 0.000137026625451 +UniRef50_A3PRL8 WD 40 repeat protein 0.0021571385514 0.000894030959313 -0.00126310759209 +UniRef50_A7X1Y2 Homoserine kinase 0.0177115504993 0.00328287360686 -0.0144286768924 +UniRef50_W4HHB0 Lipoprotein 2.95059924398e-05 2.57707069277e-05 -3.7352855121e-06 +UniRef50_U5P9W8 Haloacid dehalogenase 0.00516875808853 0.00644806941442 0.00127931132589 +UniRef50_R7PUA8 0.00277105543127 0.00116995512095 -0.00160110031032 +UniRef50_P42454 Rubredoxin NAD reductase 9.61339530144e-05 0.00891875489119 0.00882262093818 +UniRef50_Q46509 Aldehyde oxidoreductase 1.95527903808e-06 1.04484689719e-05 8.49318993382e-06 +UniRef50_F8FKS7 YyzM 3.83291087711e-05 4.31317648386e-05 4.8026560675e-06 +UniRef50_A1AHE9 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00474038978031 0.00993496555168 0.00519457577137 +UniRef50_UPI00032A0F3F PREDICTED 1.84358759547e-05 1.06604097327e-05 -7.775466222e-06 +UniRef50_B7MIX6 Thiazole synthase 0.00360554367745 0.000798748159054 -0.0028067955184 +UniRef50_Q6MCC8 Leucine tRNA ligase 6.80970865623e-06 2.43997740574e-06 -4.36973125049e-06 +UniRef50_G7U922 0.000344965000067 0.0093852481019 0.00904028310183 +UniRef50_Q9HUG6 Putative lipopolysaccharide biosynthesis protein PA4999 0.000923671013764 0.00044745209392 -0.000476218919844 +UniRef50_UPI0003957ECC PREDICTED 2.21134360022e-05 4.86451413621e-06 -1.7248921866e-05 +UniRef50_Q00673 Probable NADH ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial 1.40622820891e-05 1.067456555e-05 -3.3877165391e-06 +UniRef50_T7R7U1 Cardiolipin synthase 2 0.000632740158944 0.000514282224196 -0.000118457934748 +UniRef50_L8A918 Glucitol operon activator protein 1.67613653178e-05 0.000391147953907 0.000374386588589 +UniRef50_R6GV45 Relaxase Mobilisation nuclease domain 1.31773661277e-05 1.40072476613e-05 8.298815336e-07 +UniRef50_UPI000467E284 transposase, partial 0.00618360991507 0.00246476735922 -0.00371884255585 +UniRef50_W1MJT1 0.000119302751488 0.000526959262801 0.000407656511313 +UniRef50_A3PPZ3 HNH endonuclease 0.00170321982326 0.000604112608529 -0.00109910721473 +UniRef50_UPI0002485FE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 9.05170018724e-05 6.00337928758e-05 -3.04832089966e-05 +UniRef50_A4WUJ0 Membrane protein involved in aromatic hydrocarbon degradation 0.0143834913405 0.00321030908671 -0.0111731822538 +UniRef50_G4LLE1 0.000240948503526 0.000279921047585 3.8972544059e-05 +UniRef50_D3E1F7 Glycyl radical enzyme activating protein 0.00242993795847 0.000224575441206 -0.00220536251726 +UniRef50_I1ZNG1 0.00028453717753 0.000996146410384 0.000711609232854 +UniRef50_W1S615 Transposase 2.23952286323e-05 5.84388035934e-05 3.60435749611e-05 +UniRef50_UPI0002BB9C7E hypothetical protein, partial 4.29745563515e-05 0.0207335782421 0.0206906036857 +UniRef50_UPI0003630D50 hypothetical protein 6.25724804935e-05 0.000418477321272 0.000355904840778 +UniRef50_UPI000372EB1D hypothetical protein 5.17999672013e-06 7.73057034385e-06 2.55057362372e-06 +UniRef50_UPI0003C7B9A1 hypothetical protein 1.04853287353e-05 9.32691887922e-05 8.27838600569e-05 +UniRef50_K0N5S7 ATP dependent DNA helicase recG 0.00485367531638 0.00192149056604 -0.00293218475034 +UniRef50_UPI000361113C hypothetical protein 1.84665459854e-05 1.25629740332e-05 -5.9035719522e-06 +UniRef50_A1B0G9 Permease YjgP YjgQ family protein 0.0045826395547 0.00255635345531 -0.00202628609939 +UniRef50_UPI0003704086 hypothetical protein 2.3059155659e-05 1.26316462061e-05 -1.04275094529e-05 +UniRef50_D8MD39 Histidine triad protein 0.0235903287683 0.000847823271214 -0.0227425054971 +UniRef50_A6KYZ4 2.82590521797e-05 0.00798051071653 0.00795225166435 +UniRef50_C0PBW7 0.000134018694272 0.000629077005151 0.000495058310879 +UniRef50_UPI00047AE4DE hypothetical protein 3.16455890568e-05 2.09721836894e-05 -1.06734053674e-05 +UniRef50_UPI0003B51919 LysR family transcriptional regulator 2.10407545011e-05 3.5714977826e-05 1.46742233249e-05 +UniRef50_UPI000362B9D7 hypothetical protein 2.5924171793e-05 1.77580499252e-05 -8.1661218678e-06 +UniRef50_Q8CQE3 0.0188346667523 0.00508187303468 -0.0137527937176 +UniRef50_A6VWE9 Hemolysin type calcium binding region 2.25830962632e-06 5.28616807798e-07 -1.72969281852e-06 +UniRef50_G0DXM7 0.00025679318969 0.00178078822592 0.00152399503623 +UniRef50_O75600 2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial 0.00382283411204 0.000935963212015 -0.00288687090002 +UniRef50_Y5VS88 0.0201595997002 0.00123048627164 -0.0189291134286 +UniRef50_Q8ZAW9 Sulfoxide reductase catalytic subunit YedY 0.00526538135016 0.00164094774279 -0.00362443360737 +UniRef50_UPI0002B44272 PREDICTED 4.17696313465e-05 7.61169957825e-05 3.4347364436e-05 +UniRef50_I2FJ48 Type II R M system DNA modification enzyme 0.000362036563254 0.00462002353444 0.00425798697119 +UniRef50_UPI00021A4B49 PREDICTED 1.47353047464e-05 1.11556483699e-05 -3.5796563765e-06 +UniRef50_Z5X4K7 Peptide chain release factor 3 2.251193855e-05 4.76300227494e-05 2.51180841994e-05 +UniRef50_X5EDT3 Transcriptional regulator 0.000116989459351 0.000181547154827 6.4557695476e-05 +UniRef50_C7C6J2 0.000240645211634 1.22912768053e-05 -0.000228353934829 +UniRef50_R7Y8S1 Phenol hydroxylase 0.000109257947678 7.35711851151e-05 -3.56867625629e-05 +UniRef50_A6LPT1 Protein translocase subunit SecY 9.11801905478e-05 0.00207757073798 0.00198639054743 +UniRef50_C5YXP4 3.00116684653e-05 4.61774897982e-05 1.61658213329e-05 +UniRef50_W8G3Q0 RNA helicase 0.000286709251694 0.000397078411985 0.000110369160291 +UniRef50_UPI0004743A90 hypothetical protein, partial 2.3604179684e-05 0.000159302789758 0.000135698610074 +UniRef50_A7WY72 0.00817496347434 0.00348899025683 -0.00468597321751 +UniRef50_UPI0004710467 membrane protein 1.02983807623e-05 1.50779122806e-05 4.7795315183e-06 +UniRef50_Q3J0K0 PAS PAC sensor hybrid histidine kinase 3.99315220946e-05 6.2766568591e-05 2.28350464964e-05 +UniRef50_Q0C161 Methionine tRNA ligase 0.00705542363086 0.00197500707064 -0.00508041656022 +UniRef50_S4YUV8 ABC transporter 0.000235855267876 0.00986755039602 0.00963169512814 +UniRef50_Q9RYR2 Extracellular solute binding protein, family 5 0.00106094764695 0.224438113631 0.223377165984 +UniRef50_Q57I24 Small heat shock protein IbpA 0.000999406228507 0.000431119277652 -0.000568286950855 +UniRef50_A6M276 0.000174492752936 0.00101238837568 0.000837895622744 +UniRef50_D3QC45 D 3 phosphoglycerate dehydrogenase 0.00954437552519 0.00787562453815 -0.00166875098704 +UniRef50_D3E414 Thioredoxin disulfide reductase TrxB 0.00265195827691 0.000977441371624 -0.00167451690529 +UniRef50_G2DRR8 1.12212809947e-05 8.98508127128e-06 -2.23619972342e-06 +UniRef50_UPI000382579F hypothetical protein 3.50006607366e-05 0.000160898216948 0.000125897556211 +UniRef50_W4ANY2 Diadenosine tetraphosphatase 3.47891440653e-06 4.2650031749e-06 7.8608876837e-07 +UniRef50_UPI000441FCBD PREDICTED 9.18104448428e-06 1.48384140238e-05 5.65736953952e-06 +UniRef50_I6STV8 0.00088878967274 0.00324926679388 0.00236047712114 +UniRef50_UPI0003167C65 hypothetical protein 5.05361426384e-06 2.9193153044e-05 2.41395387802e-05 +UniRef50_UPI0002D70FB9 hypothetical protein 9.99291300444e-05 0.000158275039623 5.83459095786e-05 +UniRef50_Q9FNM5 Translation factor GUF1 homolog, chloroplastic 0.000234051297385 0.00545133271958 0.0052172814222 +UniRef50_Q17ZB6 30S ribosomal protein S11 0.000305244734926 0.000945013456618 0.000639768721692 +UniRef50_W5X7S1 FHA domain containing protein 1.88499303439e-06 0.000572487607239 0.000570602614205 +UniRef50_Q06584 Pyocin S2 0.00048432801628 9.40499061074e-05 -0.000390278110173 +UniRef50_P59339 Transcriptional regulatory protein DcuR 0.00396153735527 0.000461432351874 -0.0035001050034 +UniRef50_M1N6P4 0.000961804890904 0.00100229692073 4.0492029826e-05 +UniRef50_R1FSG8 0.00049203935164 0.000343391517665 -0.000148647833975 +UniRef50_UPI0002DB7074 hypothetical protein 6.17747138994e-05 2.5498953495e-05 -3.62757604044e-05 +UniRef50_Q5HF39 Acetoin utilization protein AcuC 0.00882286997334 0.0012707270887 -0.00755214288464 +UniRef50_E1VHW6 0.00221644887336 0.000545891850939 -0.00167055702242 +UniRef50_UPI0002555FE2 cobalamin adenolsyltransferase cobinamide ATP dependent adenolsyltransferase 3.60711697531e-05 0.000945321112419 0.000909249942666 +UniRef50_A6M1L4 Putative cell wall binding repeat containing protein 0.000762295016662 0.000883768062641 0.000121473045979 +UniRef50_UPI0003304489 50S ribosomal protein L21 0.000204887761299 5.12385842871e-05 -0.000153649177012 +UniRef50_UPI000470B9A7 hypothetical protein 0.000165145844943 0.000133854160303 -3.129168464e-05 +UniRef50_Q5HHC0 Inactive signal peptidase IA 0.0146351372408 0.00232630589915 -0.0123088313416 +UniRef50_UPI000225E6BE two component transcriptional regulator, winged helix family protein 0.000110624387564 3.37255606108e-05 -7.68988269532e-05 +UniRef50_UPI0002000266 preprotein translocase subunit SecF 0.000116640169769 0.000255182945321 0.000138542775552 +UniRef50_UPI00037E0BE4 hypothetical protein, partial 1.25982197285e-05 0.000149323860013 0.000136725640285 +UniRef50_P69789 Phosphotransferase enzyme IIB component GlvB 0.0122033296646 0.00273594243939 -0.00946738722521 +UniRef50_UPI0002236A65 PREDICTED 8.78010452465e-06 1.78392596034e-05 9.05915507875e-06 +UniRef50_W5X9J0 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.38081106343e-06 9.66901326737e-06 4.28820220394e-06 +UniRef50_C4WZ51 Sugar ABC transport system permease component 0.00386602781633 0.00120447347645 -0.00266155433988 +UniRef50_G7M6K7 Phosphoglycerate mutase 0.000206276496643 0.00674934090445 0.00654306440781 +UniRef50_U5MSL5 NADPH dependent FMN reductase 0.00127460586271 0.00119011211164 -8.449375107e-05 +UniRef50_E1VM94 0.000364134394391 0.000508378985802 0.000144244591411 +UniRef50_M9VFH2 ABC transporter associated permease 0.000199556703666 0.00508080667036 0.00488124996669 +UniRef50_UPI000350CE44 PREDICTED 2.08207074995e-05 4.75823740487e-05 2.67616665492e-05 +UniRef50_UPI00037A0BCD hypothetical protein 4.98511274778e-05 2.90609822392e-05 -2.07901452386e-05 +UniRef50_UPI000366EF31 hypothetical protein 1.17229900425e-06 3.02941265129e-05 2.91218275087e-05 +UniRef50_UPI00035CAB47 phosphoribosylglycinamide synthetase 2.7887496877e-05 7.10194828436e-06 -2.07855485926e-05 +UniRef50_Q8A9V4 ATP synthase subunit beta 1.44847987138e-05 5.84272603368e-06 -8.64207268012e-06 +UniRef50_Q8DNY1 1 acyl sn glycerol 3 phosphate acyltransferase 0.0057831945315 0.00302372163657 -0.00275947289493 +UniRef50_Q8KG38 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.228931421e-05 4.07051787282e-05 1.84158645182e-05 +UniRef50_L0GWW9 2.07934498478e-05 4.58425124139e-06 -1.62091986064e-05 +UniRef50_X1R6D7 Marine sediment metagenome DNA, contig 1.10229011529e-05 2.28582736057e-05 1.18353724528e-05 +UniRef50_UPI000288AE11 1 phosphofructokinase 8.25260328229e-06 9.14031768089e-06 8.877143986e-07 +UniRef50_B9DKC4 Haloacid dehalogenase like hydrolase family protein 0.0150043086498 0.00463430995065 -0.0103699986992 +UniRef50_E2XJ48 1 acyl sn glycerol 3 phosphate acyltransferase 0.00147134102421 0.000538897619392 -0.000932443404818 +UniRef50_Q92Q22 Serine tRNA ligase 0.000732513781457 0.0011643139597 0.000431800178243 +UniRef50_M4VHL0 Glyoxalase family protein 8.61958004611e-06 1.93713087747e-05 1.07517287286e-05 +UniRef50_UPI0001744949 GNAT family acetyltransferase 0.000102167828602 0.000316920128224 0.000214752299622 +UniRef50_UPI000329B94F 0.00162682036952 0.000950796708307 -0.000676023661213 +UniRef50_UPI00037660D4 hypothetical protein 8.96495645163e-05 1.6214916189e-05 -7.34346483273e-05 +UniRef50_Q3AT37 Adenine phosphoribosyltransferase 4.61923597209e-05 0.00282451985682 0.0027783274971 +UniRef50_K7S318 Proline dehydrogenase aldehyde dehydrogenase family protein 0.000217994359766 0.00580806907749 0.00559007471772 +UniRef50_Q6ZTJ3 cDNA FLJ44595 fis, clone BLADE2004849 1.2091643331e-05 1.02773546884e-05 -1.8142886426e-06 +UniRef50_A0A011PEW7 NAD specific glutamate dehydrogenase 0.000100246760541 6.34323547162e-05 -3.68144058248e-05 +UniRef50_A4WR24 IS66 Orf2 family protein 4.75439372512e-05 7.8644938945e-05 3.11010016938e-05 +UniRef50_Q1MR60 Glutamate tRNA ligase 1.28695657397e-05 7.04329953844e-06 -5.82626620126e-06 +UniRef50_UPI000372FBE5 hypothetical protein 4.97414268974e-06 2.73130863481e-05 2.23389436584e-05 +UniRef50_R7PTD3 Chlamydial polymorphic outer membrane protein repeat containing domain protein 0.00269258271682 0.00192805360378 -0.00076452911304 +UniRef50_A6M0N3 Iron containing alcohol dehydrogenase 0.000254807680966 0.00107140151355 0.000816593832584 +UniRef50_E4BLL0 0.000135513936518 6.7932281385e-05 -6.7581655133e-05 +UniRef50_Q034H8 Ribose 5 phosphate isomerase A 0.00909402298277 0.00257807785393 -0.00651594512884 +UniRef50_P53607 L threonine dehydratase biosynthetic IlvA 4.09806198415e-06 2.59333444582e-05 2.18352824741e-05 +UniRef50_A6LPD2 0.000191617253221 0.000325716954257 0.000134099701036 +UniRef50_G8AVE8 1.06699385904e-05 7.97499189639e-06 -2.69494669401e-06 +UniRef50_Q75V35 0.000811914200962 0.000501978491339 -0.000309935709623 +UniRef50_I6XYY5 Periplasmic binding protein 1.0490026975e-05 2.90578520179e-05 1.85678250429e-05 +UniRef50_UPI00026286B5 ABC type sugar transport system, ATPase component 1.10288939619e-05 3.06366256846e-05 1.96077317227e-05 +UniRef50_Q9AGG3 Rubrerythrin 0.000194580406623 0.0118817226393 0.0116871422327 +UniRef50_T1YAJ7 Conserved membrane protein 0.0256686025569 0.00789280131187 -0.017775801245 +UniRef50_K0L607 Indigoidine systhesis protein 0.0140152343203 0.00508321729657 -0.00893201702373 +UniRef50_Q9RVK7 ATP dependent zinc metalloprotease FtsH 0.000201755112325 0.0521394967435 0.0519377416312 +UniRef50_A3PHB5 Secretion protein HlyD family protein 0.0146666115421 0.00379464817189 -0.0108719633702 +UniRef50_I1F0I8 4.43264007568e-05 0.000997767456984 0.000953441056227 +UniRef50_B1M6B8 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 3.66994623591e-05 8.48792930964e-05 4.81798307373e-05 +UniRef50_T0W257 0.000257376810578 0.00420236376757 0.00394498695699 +UniRef50_P02921 Melibiose carrier protein 0.000833340156917 0.000360065131389 -0.000473275025528 +UniRef50_Q2CBB5 6.59289861935e-05 4.57086518367e-05 -2.02203343568e-05 +UniRef50_A3M2F1 IcmB protein 3.47166758604e-05 0.0111191475114 0.0110844308355 +UniRef50_Q0FPA9 0.000686338161548 0.000338320794688 -0.00034801736686 +UniRef50_U5UJV7 Aminopeptidase PepS 0.0126981782461 0.00430566177993 -0.00839251646617 +UniRef50_Q4L629 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00723699810416 0.000632406461821 -0.00660459164234 +UniRef50_F3U1Z6 0.000952365178106 0.000667203396607 -0.000285161781499 +UniRef50_R0NVZ1 0.000291120299886 0.00303406875011 0.00274294845022 +UniRef50_UPI00036593BA hypothetical protein 4.12917606974e-05 0.000116043539108 7.47517784106e-05 +UniRef50_W7VW27 1.25360097357e-05 8.61674282229e-05 7.36314184872e-05 +UniRef50_F7ZK72 6.65294073215e-05 2.72608722224e-05 -3.92685350991e-05 +UniRef50_B3PB28 Membrane protein, PerM family 0.00120905144553 0.00142751526495 0.00021846381942 +UniRef50_A4WNY6 ATP synthase subunit a 0.0172635590343 0.00435651928708 -0.0129070397472 +UniRef50_UPI000376746B hypothetical protein 5.06398633312e-06 2.76758781362e-05 2.26118918031e-05 +UniRef50_UPI00047040E8 hypothetical protein 7.02101346729e-06 5.23850836493e-05 4.5364070182e-05 +UniRef50_UPI0001850BCC bis tetraphosphatase PrpE 8.95183704161e-06 0.00029806458431 0.000289112747268 +UniRef50_A1U0M3 Transposase, IS4 family 3.40882927822e-06 6.03320669062e-06 2.6243774124e-06 +UniRef50_UPI00047D0A7B DNA methyltransferase 0.000133275499648 0.000162424970458 2.914947081e-05 +UniRef50_Q9RSK3 Branched chain amino acid ABC transporter, permease protein 0.000169529635709 0.00934793434431 0.0091784047086 +UniRef50_Q1AVI4 NADH quinone oxidoreductase subunit B 8.14984762497e-06 0.00013693838263 0.000128788535005 +UniRef50_Q2YUT9 0.00832557777277 0.00151469847612 -0.00681087929665 +UniRef50_A8FEL7 Glycerol 3 phosphate dehydrogenase [NAD+] 1.65743093309e-05 0.00045708646179 0.000440512152459 +UniRef50_Q9RS18 0.000173158710486 0.00722106594778 0.00704790723729 +UniRef50_J9YPZ0 0.000444453170174 0.000559074181959 0.000114621011785 +UniRef50_B9DZV8 0.000598119123326 0.00143691611792 0.000838796994594 +UniRef50_Q9RS17 0.000221579796577 0.0366633591274 0.0364417793308 +UniRef50_H8GVZ3 PPC, peptidase containing PKD repeats 7.83158733431e-06 0.00110766770009 0.00109983611276 +UniRef50_B1WUS6 Glutathione S transferase 0.000249990721098 0.00649842662101 0.00624843589991 +UniRef50_Q9NZB8 Molybdenum cofactor biosynthesis protein 1 2.37606010295e-06 9.35006550252e-06 6.97400539957e-06 +UniRef50_U5MS35 0.00050016346648 0.000787736682816 0.000287573216336 +UniRef50_Q9KCM5 Diaminopimelate decarboxylase 8.34887874333e-06 0.000322446104942 0.000314097226199 +UniRef50_Q9RX22 Formamidopyrimidine DNA glycosylase 0.000613949201586 0.0241224530083 0.0235085038067 +UniRef50_Q9L7R4 Putative sulfoquinovose importer 0.00212078077617 0.000763193871103 -0.00135758690507 +UniRef50_E5G5K3 Putative conjugative transfer protein 1.38682181352e-05 1.58339775555e-05 1.9657594203e-06 +UniRef50_Q1QCP2 tRNA 2 thiocytidine biosynthesis protein TtcA 0.000242032345401 0.00188960662919 0.00164757428379 +UniRef50_Q4L842 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0113959047079 0.00152231337021 -0.00987359133769 +UniRef50_F9HIH2 Conserved domain protein 5.58631046687e-05 6.07512673153e-06 -4.97879779372e-05 +UniRef50_A0A011QZ11 5.69049313221e-07 8.23624520585e-05 8.17934027453e-05 +UniRef50_E2SFH7 0.000113029677675 0.000420878914765 0.00030784923709 +UniRef50_A6UYI4 6 aminohexanoate dimer hydrolase 0.000196448785151 0.000408998840153 0.000212550055002 +UniRef50_P67082 UPF0001 protein YggS 0.00251694113206 0.000298002080405 -0.00221893905166 +UniRef50_P37745 dTDP 4 dehydrorhamnose 3,5 epimerase 0.00135245527309 0.00467199205858 0.00331953678549 +UniRef50_B9KLT3 0.00307309099608 0.00101022344065 -0.00206286755543 +UniRef50_P26973 DNA topoisomerase 4 subunit A 0.000305549731936 0.000279588378933 -2.5961353003e-05 +UniRef50_UPI0003FC94D0 cysteinyl tRNA synthetase 3.92745545883e-06 1.01932268322e-05 6.26577137337e-06 +UniRef50_UPI000470A448 hypothetical protein 5.88686375574e-06 0.000159616944887 0.000153730081131 +UniRef50_L5S037 ACT domain protein 0.000104782384182 0.00133525992958 0.0012304775454 +UniRef50_UPI0003013AD2 hypothetical protein 1.51012460813e-05 2.93121179116e-05 1.42108718303e-05 +UniRef50_A6LV61 Histidine kinase 0.000187882514284 0.00151914524908 0.0013312627348 +UniRef50_UPI0002E3E4A1 hypothetical protein 8.54528630764e-05 1.56453968895e-05 -6.98074661869e-05 +UniRef50_Q28VZ9 Shikimate dehydrogenase 9.60419361502e-05 8.25331412278e-05 -1.35087949224e-05 +UniRef50_G7M2K6 Phosphoesterase, HXTX 0.000214887659684 0.00102372921604 0.000808841556356 +UniRef50_D3UYE0 9.34630741609e-06 0.00688077435364 0.00687142804622 +UniRef50_P0AB60 Lipopolysaccharide regulatory protein 0.00288266801513 0.000795531318942 -0.00208713669619 +UniRef50_Q5HLQ3 Putative 3 methyladenine DNA glycosylase 0.00631521739014 0.00160986108954 -0.0047053563006 +UniRef50_B9MQ93 Ribosomal RNA small subunit methyltransferase H 2.19554492941e-05 9.43642024745e-06 -1.25190290467e-05 +UniRef50_UPI0003667B7C hypothetical protein 0.000163784045111 0.000335909631657 0.000172125586546 +UniRef50_UPI00047095B2 hypothetical protein 3.96904865814e-05 8.59422575513e-06 -3.10962608263e-05 +UniRef50_UPI0003189EE0 hypothetical protein 7.52531950173e-06 8.34012494952e-06 8.1480544779e-07 +UniRef50_UPI00036C1384 hypothetical protein 8.60744518598e-05 0.000143392030538 5.73175786782e-05 +UniRef50_P47734 S glutathione dehydrogenase 7.09550053898e-06 0.0511591141552 0.0511520186547 +UniRef50_Q1IZT5 Oligopeptidase A 0.000297772575356 0.0382019092963 0.0379041367209 +UniRef50_P44742 0.0049647723182 0.00905030485776 0.00408553253956 +UniRef50_A0A023S121 Cation transporter 0.000117110441217 0.00588601975751 0.00576890931629 +UniRef50_UPI000477260F sulfite oxidase 1.18050150715e-05 2.12289600643e-05 9.4239449928e-06 +UniRef50_UPI00047DFE8E phosphoribosylaminoimidazole carboxylase 5.47024916228e-06 1.15648935703e-05 6.09464440802e-06 +UniRef50_Q99J99 3 mercaptopyruvate sulfurtransferase 3.85318637964e-05 1.23930831582e-05 -2.61387806382e-05 +UniRef50_R9SLZ6 SAM dependent methyltransferase 0.00234044764352 0.000222321233524 -0.00211812641 +UniRef50_UPI00035E4699 hypothetical protein 1.39177235013e-05 3.81583415989e-05 2.42406180976e-05 +UniRef50_C5ZSV0 Transcriptional regulator, LuxR family 0.000149796027328 0.00173203169082 0.00158223566349 +UniRef50_E9G921 1.21774833618e-06 8.60145743281e-05 8.47968259919e-05 +UniRef50_V6Q9S0 0.0395163555086 0.0131467175661 -0.0263696379425 +UniRef50_G6DMD6 0.000308258473899 3.33924797446e-05 -0.000274865994154 +UniRef50_UPI00046C8B78 hypothetical protein 3.86324313751e-05 0.000297095777552 0.000258463346177 +UniRef50_UPI000476D6FD hypothetical protein 1.39505005493e-05 1.35071264644e-05 -4.433740849e-07 +UniRef50_UPI00035D082A hypothetical protein 5.72897374815e-06 2.94966096167e-05 2.37676358685e-05 +UniRef50_I3X451 4.8762730393e-05 2.1677387844e-05 -2.7085342549e-05 +UniRef50_C8VYT7 dTDP 4 dehydrorhamnose reductase 0.00338181581552 0.00214675516122 -0.0012350606543 +UniRef50_K2J0W9 Cupin 0.000308514691359 0.000148052931154 -0.000160461760205 +UniRef50_UPI00034BFA99 hypothetical protein 5.53053643752e-05 7.15518069096e-05 1.62464425344e-05 +UniRef50_UPI000350BCA6 PREDICTED 5.52223373927e-06 0.00206376998464 0.0020582477509 +UniRef50_UPI00046D05B1 hypothetical protein 8.19920323476e-06 9.36854709526e-06 1.1693438605e-06 +UniRef50_F3RDV1 Amino acid ABC transporter permease 0.000815436775779 0.00542440417343 0.00460896739765 +UniRef50_UPI00037F5AC8 hypothetical protein 1.56087895639e-05 1.491240312e-05 -6.963864439e-07 +UniRef50_P45073 Lipopolysaccharide export system ATP binding protein LptB 0.00433148914032 0.00199718365805 -0.00233430548227 +UniRef50_B9KSN1 0.0086120016255 0.000382699833941 -0.00822930179156 +UniRef50_UPI000023CA35 hypothetical protein FG01684.1 4.8471439838e-07 1.26775090262e-06 7.8303650424e-07 +UniRef50_UPI0003ACFD99 hypothetical protein 9.75169014309e-05 3.35815546289e-05 -6.3935346802e-05 +UniRef50_P38036 CRISPR associated endonuclease helicase Cas3 0.00252200016565 0.000933709121083 -0.00158829104457 +UniRef50_V5SXK1 Histidine kinase 0.000149670514747 0.000160698750524 1.1028235777e-05 +UniRef50_C1EGE2 Predicted protein 2.96478676684e-05 7.51153078373e-06 -2.21363368847e-05 +UniRef50_C6STX0 0.00216928373759 0.000881542403566 -0.00128774133402 +UniRef50_UPI0003615DBA hypothetical protein 4.25434712329e-05 3.92108605423e-05 -3.3326106906e-06 +UniRef50_D3QHK9 Glycerate kinase 0.0244992486178 0.0060040213785 -0.0184952272393 +UniRef50_UPI0003B42182 DeoR family transcriptional regulator 1.09721850873e-05 1.19975695998e-05 1.0253845125e-06 +UniRef50_I6U493 0.0260687080754 0.0023778289647 -0.0236908791107 +UniRef50_K2KBP7 1.36452838754e-06 2.45095057125e-06 1.08642218371e-06 +UniRef50_UPI00047AB8B0 high frequency lysogenization protein HflD 6.41019431396e-06 7.17850332245e-06 7.6830900849e-07 +UniRef50_S5Y296 Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB 0.00635899830222 0.00153919198301 -0.00481980631921 +UniRef50_P0ADU0 0.00166235689929 0.00161934166987 -4.301522942e-05 +UniRef50_A0K2M1 Chromosome segregation ATPase 0.000347974776446 0.00875851366357 0.00841053888712 +UniRef50_B7VQP3 NH dependent NAD(+) synthetase 1.56596828703e-05 2.04306344906e-05 4.7709516203e-06 +UniRef50_K9P9J8 LysM repeat containing protein 3.67610835645e-05 2.72627421618e-05 -9.4983414027e-06 +UniRef50_C4Z3J5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.0217274662798 0.00603758633555 -0.0156898799443 +UniRef50_Q8R5T0 Glucosamine 6 phosphate deaminase 6.36972999405e-06 1.6543655634e-05 1.01739256399e-05 +UniRef50_M3E127 Cation transport ATPase 0.000109698263541 1.65372475746e-05 -9.31610159664e-05 +UniRef50_K0SY54 2.37159856396e-05 1.98458041834e-05 -3.8701814562e-06 +UniRef50_X5EXI6 0.000911107363322 0.000223779524654 -0.000687327838668 +UniRef50_UPI0004643DB1 hypothetical protein 0.000334123146079 0.000114206805968 -0.000219916340111 +UniRef50_Q6D8D5 Outer membrane protein assembly factor BamA 0.00136656872567 0.000863440062441 -0.000503128663229 +UniRef50_Q4L4Z3 3 oxoacyl [acyl carrier protein] synthase 3 0.00759353037144 0.000950607340545 -0.00664292303089 +UniRef50_Q6FD06 0.000126108904961 0.00677745921864 0.00665135031368 +UniRef50_Q5HRT0 Acetyltransferase, GNAT family 0.0373369972196 0.00404780401371 -0.0332891932059 +UniRef50_F4EG72 ABC type polar amino acid transport system, ATPase component 0.00411955312168 0.00224005046027 -0.00187950266141 +UniRef50_UPI0002559D42 non specific serine threonine protein kinase 3.51381330707e-06 0.000442407617322 0.000438893804015 +UniRef50_Q1IZL1 Glutamyl Q tRNA synthetase 7.42782831309e-06 0.000425497156138 0.000418069327825 +UniRef50_UPI000470F3D8 hypothetical protein 1.50262562888e-05 4.2914682856e-05 2.78884265672e-05 +UniRef50_D5ANE3 0.000323673981177 6.76969056312e-05 -0.000255977075546 +UniRef50_P0A9J7 Ribokinase 0.00210078679337 0.000322750497486 -0.00177803629588 +UniRef50_M1LZF7 Transcriptional antiterminator 0.000495929021099 0.000771205913753 0.000275276892654 +UniRef50_E0XU72 0.000133456988552 0.000111740431165 -2.1716557387e-05 +UniRef50_P37443 0.00486089344957 0.00143711638644 -0.00342377706313 +UniRef50_UPI00036CABD5 hypothetical protein 1.21622232756e-05 9.33585339199e-06 -2.82636988361e-06 +UniRef50_B0V9N7 9.45290456222e-05 0.00469445572516 0.00459992667954 +UniRef50_Q2GAK4 6.15627096257e-05 2.03465912603e-05 -4.12161183654e-05 +UniRef50_P55891 Motility protein A 0.00137322593366 0.000824767182313 -0.000548458751347 +UniRef50_G8P8U5 Transporter 0.00723046083601 0.00351244434113 -0.00371801649488 +UniRef50_G8LNB8 0.000231745730627 0.000183221813758 -4.8523916869e-05 +UniRef50_K0I6Y3 Tricarballylate dehydrogenase 0.000712659891238 0.00592589504898 0.00521323515774 +UniRef50_B9MFW6 5 nucleotidase SurE 0.000159053085188 0.000989988395348 0.00083093531016 +UniRef50_Q97JJ9 Germination protease 0.0013089170066 0.00185094809295 0.00054203108635 +UniRef50_UPI0004710C19 hypothetical protein 2.95762252406e-05 1.1047200244e-05 -1.85290249966e-05 +UniRef50_U0EEM2 1.3058071386e-05 4.85819789306e-05 3.55239075446e-05 +UniRef50_B9KX11 ABC branched chain amino acid transporter, inner membrane subunit 0.0126700902744 0.00254854146672 -0.0101215488077 +UniRef50_Q8DUL1 0.000747067521347 0.0010610181025 0.000313950581153 +UniRef50_A5UK96 0.00152883265696 0.000636874212322 -0.000891958444638 +UniRef50_D8IV87 1,4 alpha glucan branching enzyme GlgB 0.000412010222809 0.000282260087542 -0.000129750135267 +UniRef50_D7BEZ9 ATP dependent DNA helicase RecG 4.93445737068e-05 0.0304549403388 0.0304055957651 +UniRef50_UPI00047DE858 ABC transporter ATPase 1.66654644852e-05 1.36103750377e-05 -3.0550894475e-06 +UniRef50_D4DLY8 Primosomal protein N 5.17576767137e-05 0.00438107830364 0.00432932062693 +UniRef50_UPI00047D2C54 DNA 3 methyladenine glycosylase 3.22053326685e-05 2.17002329181e-05 -1.05050997504e-05 +UniRef50_B2ACV0 Putative glutathione dependent formaldehyde activating enzyme 0.00573646791987 0.00112035727572 -0.00461611064415 +UniRef50_UPI00040EADB4 hypothetical protein 0.000380798967031 9.57838597129e-05 -0.000285015107318 +UniRef50_X4ZHJ1 Methionine import ATP binding protein MetN 0.000523055684959 0.00492009958595 0.00439704390099 +UniRef50_J7QS02 2.20650776349e-05 1.05298207211e-05 -1.15352569138e-05 +UniRef50_UPI0003C0FD3F 2.20550207061e-05 4.5186868752e-06 -1.75363338309e-05 +UniRef50_UPI00037837C4 hypothetical protein, partial 4.37943223119e-05 2.69912429616e-05 -1.68030793503e-05 +UniRef50_UPI00035A0C3F PREDICTED 4.17016094433e-05 9.57450763253e-05 5.4043466882e-05 +UniRef50_B9KLU7 GCN5 related N acetyltransferase 0.00511802537321 0.000365340253849 -0.00475268511936 +UniRef50_UPI00037510F3 hypothetical protein, partial 0.000245519509095 0.000489475201976 0.000243955692881 +UniRef50_Q5NYZ2 Nitrate proton symporter 0.000349074629554 0.00062682038244 0.000277745752886 +UniRef50_S3BZ34 1.80368166228e-05 8.25891952738e-05 6.4552378651e-05 +UniRef50_S5XXA3 0.00220036285277 0.000175333428801 -0.00202502942397 +UniRef50_M1N724 0.000608125428094 0.00112402670773 0.000515901279636 +UniRef50_A0A022G4G2 LysR family transcriptional regulator 1.54507264034e-05 1.12377309394e-05 -4.212995464e-06 +UniRef50_UPI00026C800D sodium 4.89000157243e-06 6.50795470143e-06 1.617953129e-06 +UniRef50_V7EQ63 Ribonuclease E 0.00267758359708 0.000324636333967 -0.00235294726311 +UniRef50_UPI0003C45913 PREDICTED 5.47608902606e-05 0.000107714299774 5.29534095134e-05 +UniRef50_A3PS91 0.0112434888451 0.00264514244081 -0.00859834640429 +UniRef50_P22447 DNA gyrase subunit B 6.51699890487e-06 1.57828625218e-05 9.26586361693e-06 +UniRef50_Q97K30 Probable M18 family aminopeptidase 1 0.000493679508123 0.00185293951898 0.00135926001086 +UniRef50_B9MJR9 ATP phosphoribosyltransferase 1.37703672779e-05 4.46407116557e-05 3.08703443778e-05 +UniRef50_Q9JTQ0 Tryptophan tRNA ligase 2.15538909898e-05 0.00092541790524 0.00090386401425 +UniRef50_E3GYA2 Phosphate uptake regulator, PhoU 0.00276933240745 0.00107286780249 -0.00169646460496 +UniRef50_R7PS35 0.000444101163361 0.000521147126817 7.7045963456e-05 +UniRef50_UPI0003610FEF hypothetical protein 3.87068967488e-05 6.00610930389e-06 -3.27007874449e-05 +UniRef50_I9KTK5 Oligoendopeptidase F 0.00787300823183 0.00167735282022 -0.00619565541161 +UniRef50_A6LWM9 Collagen triple helix repeat 6.60325344921e-05 0.000200991470693 0.000134958936201 +UniRef50_Q37383 NADH ubiquinone oxidoreductase subunit 9 8.77889723386e-06 1.41006136028e-05 5.32171636894e-06 +UniRef50_A5UQY7 0.000142638779632 6.66460680616e-05 -7.59927115704e-05 +UniRef50_A1B5M1 5 nucleotidase SurE 0.000164750955752 0.000369916540948 0.000205165585196 +UniRef50_Q1R6G9 0.000652851043194 0.000251964177045 -0.000400886866149 +UniRef50_P48596 GTP cyclohydrolase 1 3.2438361115e-05 5.07853277604e-05 1.83469666454e-05 +UniRef50_UPI000464508F spermidine putrescine ABC transporter ATP binding protein 4.88906220308e-05 9.58505283096e-05 4.69599062788e-05 +UniRef50_UPI00047B2829 hypothetical protein 2.68694792578e-05 1.79602351349e-05 -8.9092441229e-06 +UniRef50_A1B894 Protein HflC 0.00158167437796 0.000697022966759 -0.000884651411201 +UniRef50_P59199 DNA polymerase I 0.00742786197298 0.00537093494678 -0.0020569270262 +UniRef50_Q3JTX2 6.81300817105e-05 0.000140071164521 7.19410828105e-05 +UniRef50_A8LJI8 Purine nucleoside phosphorylase DeoD type 3.02773346334e-05 0.000329039341415 0.000298762006782 +UniRef50_P52028 DNA polymerase I, thermostable 1.97336231941e-06 9.14825501075e-05 8.95091877881e-05 +UniRef50_UPI000262577A single stranded DNA binding protein 1.61365321897e-05 0.0013353735878 0.00131923705561 +UniRef50_E4GKY2 Membrane alanyl aminopeptidase 0.000110108142818 0.00600378608755 0.00589367794473 +UniRef50_Q6A780 Error prone DNA polymerase 0.000200238704937 0.00459049506526 0.00439025636032 +UniRef50_D7CX24 Peptidase M20 8.46381140973e-05 0.0361286655965 0.0360440274824 +UniRef50_UPI0003694929 hypothetical protein 3.39362049457e-05 1.69781222573e-05 -1.69580826884e-05 +UniRef50_UPI000255571F ABC transporter 0.00011370858558 5.98872240883e-06 -0.000107719863171 +UniRef50_A0A023VS51 1.53179704397e-05 2.0453904998e-05 5.1359345583e-06 +UniRef50_UPI000255A6AD transcriptional regulator 0.00188154993113 0.00094746350882 -0.00093408642231 +UniRef50_L0LNE1 SecY stabilizing membrane protein 0.0215461158202 0.00649633466086 -0.0150497811593 +UniRef50_W1S564 Cupin 0.000151641815833 5.68258266711e-05 -9.48159891619e-05 +UniRef50_C7MNW3 Acyl CoA synthetase AMP acid ligase II 0.0032397771704 0.00490080435177 0.00166102718137 +UniRef50_Q9KA05 Ribonuclease 3 0.00748017508687 0.00350115034765 -0.00397902473922 +UniRef50_X1WZZ9 0.000551181268383 5.34402971215e-05 -0.000497740971262 +UniRef50_UPI00014D324F ABC transporter permease 0.000300452900777 0.000148352777391 -0.000152100123386 +UniRef50_E8P8N2 Major facilitator superfamily permease 0.000183067675657 0.00726249387333 0.00707942619767 +UniRef50_UPI0002E55EAF hypothetical protein 6.78022435433e-06 7.41652055421e-05 6.73849811878e-05 +UniRef50_A4FQ90 Xaa Pro dipeptidase 6.26325850433e-06 1.27870180243e-05 6.52375951997e-06 +UniRef50_U7G8B2 Toxin PIN 4.25068467947e-05 0.000219499344533 0.000176992497738 +UniRef50_B2K316 tRNA methyltransferase 2 0.00471833538305 0.000702208615786 -0.00401612676726 +UniRef50_M1MIQ5 0.000903608936504 0.00121052071101 0.000306911774506 +UniRef50_F0YS51 Expressed protein 0.00043023513216 0.000667801724293 0.000237566592133 +UniRef50_D9RDU7 Glyoxalase bleomycin resistance protein dioxygenase superfamily protein 0.0176985158771 0.00374676900778 -0.0139517468693 +UniRef50_Q3ILQ9 Siroheme synthase 3.65184047643e-05 3.07469632762e-05 -5.7714414881e-06 +UniRef50_D3F1T9 0.000771446441153 0.000261676851705 -0.000509769589448 +UniRef50_Q28KF1 Acyl CoA dehydrogenase like protein 0.00176935905105 0.000114316143943 -0.00165504290711 +UniRef50_D5RUB7 1.64442762717e-05 0.000860733030521 0.000844288754249 +UniRef50_Q9K1R6 Glutamate tRNA ligase 8.35762336971e-05 0.00378289945056 0.00369932321686 +UniRef50_R6YL47 1.95277663098e-05 0.000253739644554 0.000234211878244 +UniRef50_Q8NYY1 0.0224784443033 0.00880158059737 -0.0136768637059 +UniRef50_Q88PE3 RND efflux membrane fusion protein related protein 0.00123345153797 0.000611942019472 -0.000621509518498 +UniRef50_B5EZ88 LPS assembly lipoprotein LptE 0.00272225826673 0.00372204800439 0.00099978973766 +UniRef50_UPI0004634C4E hypothetical protein 0.000189458515494 7.52161363492e-05 -0.000114242379145 +UniRef50_UPI0003827005 50S ribosomal protein L11 6.90908858546e-05 0.00101745198954 0.000948361103685 +UniRef50_A1ADH3 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 0.00316968178677 0.000689968208696 -0.00247971357807 +UniRef50_V2D6G8 Putative cation 3.54310242984e-05 0.000120581675316 8.51506510176e-05 +UniRef50_UPI00047D8F91 PTS cellobiose transporter subunit IIC 6.48030120811e-06 5.09985608212e-06 -1.38044512599e-06 +UniRef50_D6A8A0 5.66129093464e-05 0.000111080003284 5.44670939376e-05 +UniRef50_D5AL25 Membrane protein, putative 5.0710157364e-05 0.00033718462327 0.000286474465906 +UniRef50_A0KMY1 Dipeptide and tripeptide permease B 0.00397534031014 0.00123196065224 -0.0027433796579 +UniRef50_UPI000476AB7B membrane protein 0.000550970137325 0.000283228407808 -0.000267741729517 +UniRef50_A6QE85 Staphylococcal enterotoxin like toxin 0.029258219362 0.00298369980929 -0.0262745195527 +UniRef50_D4HAK8 Protoporphyrinogen oxidase 0.000192096331671 0.00668360246861 0.00649150613694 +UniRef50_Q8F0X6 Hydroxyethylthiazole kinase 6.92589543491e-06 1.02258733143e-05 3.29997787939e-06 +UniRef50_UPI0001B434CE glyoxalase I 0.000666976975332 0.000605890401675 -6.1086573657e-05 +UniRef50_Q9RTU9 0.00065922954574 0.0302011951903 0.0295419656446 +UniRef50_Q9RTU8 0.000319387789692 0.0472635026843 0.0469441148946 +UniRef50_M1MCZ5 0.00122359420713 0.000696507046023 -0.000527087161107 +UniRef50_S1H4E1 Outer membrane autotransporter barrel domain containing protein 0.000140678008262 0.000157782745423 1.7104737161e-05 +UniRef50_UPI00035CEBAE hypothetical protein 1.4108831989e-06 2.35101470715e-06 9.4013150825e-07 +UniRef50_Q4L869 PTS system lactose specific EIICB component 0.0299982705729 0.00739260136927 -0.0226056692036 +UniRef50_D9V5U8 Predicted protein 1.69832787799e-05 1.49106118352e-05 -2.0726669447e-06 +UniRef50_UPI0002892C39 acetoacetyl CoA synthetase 5.69353430165e-05 1.62510958225e-05 -4.0684247194e-05 +UniRef50_R9I899 7.5186695953e-06 1.19220511233e-05 4.403381528e-06 +UniRef50_UPI00023751B8 6 pyruvoyl tetrahydropterin synthase 0.000840770262649 0.00105630511526 0.000215534852611 +UniRef50_S5Y0M6 Transcriptional regulator, TetR family 0.000269632849186 0.000947689460791 0.000678056611605 +UniRef50_A9AST0 Isopentenyl diphosphate Delta isomerase 6.17723908317e-05 1.47155827812e-05 -4.70568080505e-05 +UniRef50_Q04D22 Cys tRNA Cys tRNA(Cys) deacylase 0.00147443843198 0.00536222606216 0.00388778763018 +UniRef50_J9P557 0.000119836821857 2.97798788237e-05 -9.00569430333e-05 +UniRef50_C5BV15 Mandelate racemase muconate lactonizing protein 0.00722135272139 0.00190159585312 -0.00531975686827 +UniRef50_J3L617 1.89161651264e-05 3.38875665475e-05 1.49714014211e-05 +UniRef50_D6SCW3 5.64069200778e-05 5.93064095273e-05 2.8994894495e-06 +UniRef50_I7EWS3 0.00237970344177 0.000436182837952 -0.00194352060382 +UniRef50_Q8FH89 Pyridoxamine kinase 0.0067198160392 0.002726190734 -0.0039936253052 +UniRef50_UPI00037451EF hypothetical protein 3.05083653787e-05 2.77842628282e-05 -2.7241025505e-06 +UniRef50_Q9RRP9 0.000375607949105 0.0543968560736 0.0540212481245 +UniRef50_UPI0003767955 hypothetical protein, partial 3.11694750878e-05 6.5323383645e-05 3.41539085572e-05 +UniRef50_P44594 Queuine tRNA ribosyltransferase 0.0236153839526 0.0189804711445 -0.0046349128081 +UniRef50_A9MN50 0.00273767167473 0.00162702832326 -0.00111064335147 +UniRef50_UPI00036CE8A3 hypothetical protein 1.75948052325e-05 0.00312444420656 0.00310684940133 +UniRef50_Q0VKZ2 Rubredoxin 2 0.000185375071345 3.05722509722e-05 -0.000154802820373 +UniRef50_A6LZX0 Methyl accepting chemotaxis sensory transducer 0.000812419448737 0.000732775381417 -7.964406732e-05 +UniRef50_R9SHV3 NH dependent NAD(+) synthetase 0.00448797927173 0.000810016271225 -0.0036779630005 +UniRef50_A6WJ89 PKHD type hydroxylase Shew185_0721 0.00196986792966 0.00687744465717 0.00490757672751 +UniRef50_D4HAH8 GDSL like protein 0.000249990721098 0.00206261328125 0.00181262256015 +UniRef50_R5U1M5 Glycoside hydrolase family 3 domain containing protein 0.000550532298556 0.00237358158408 0.00182304928552 +UniRef50_A3PG26 0.00296293505533 0.000114983791768 -0.00284795126356 +UniRef50_UPI0003B75FB1 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.3366368247e-06 1.45679627962e-05 1.02313259715e-05 +UniRef50_UPI0004560989 hypothetical protein PFL1_01444 4.09437749366e-05 0.000143155624938 0.000102211850001 +UniRef50_Q9S2L4 Probable proline iminopeptidase 3.29486153056e-05 9.02977403485e-06 -2.39188412707e-05 +UniRef50_UPI00016C0749 hypothetical protein 8.54750813356e-06 1.88119691482e-05 1.02644610146e-05 +UniRef50_I6ABZ2 Isrso9 transposase protein 4.82318570193e-05 7.65362096936e-06 -4.05782360499e-05 +UniRef50_T1Y9Z4 0.00070353231279 0.000521147126817 -0.000182385185973 +UniRef50_R6MIG6 0.000414139361527 0.000993864223318 0.000579724861791 +UniRef50_UPI000348D44D hypothetical protein 1.16040801554e-05 7.31219936109e-06 -4.29188079431e-06 +UniRef50_UPI000370B19E hypothetical protein, partial 5.5693747856e-05 1.68292008647e-05 -3.88645469913e-05 +UniRef50_A3MML4 Ribonuclease PH 4.33534068578e-05 1.3105145169e-05 -3.02482616888e-05 +UniRef50_Q6GJN1 0.0543144771585 0.0115744881537 -0.0427399890048 +UniRef50_P62448 Imidazole glycerol phosphate synthase subunit HisH 0.00411468152794 0.00172175676057 -0.00239292476737 +UniRef50_J9P132 0.000109968755837 0.000347542702579 0.000237573946742 +UniRef50_Q8DS10 0.00580935695515 0.00184491074961 -0.00396444620554 +UniRef50_E4SGD8 Natural resistance associated macrophage protein 9.99521594492e-05 0.000675503587462 0.000575551428013 +UniRef50_UPI000473AE7C hypothetical protein, partial 3.61148972506e-05 0.000275959125357 0.000239844228106 +UniRef50_UPI000471B809 hypothetical protein 1.86680080947e-05 4.85345487407e-06 -1.38145532206e-05 +UniRef50_B4RND3 Electron transfer flavoprotein ubiquinone oxidoreductase 0.00014170233467 0.00924397152446 0.00910226918979 +UniRef50_A9KDE5 Phosphoenolpyruvate carboxykinase [ATP] 0.00151117489766 0.00040202249454 -0.00110915240312 +UniRef50_M9VP93 PTS system, sucrose specific IIBC component 7.2733331189e-05 0.00630008879507 0.00622735546388 +UniRef50_B4TR32 Ethanolamine ammonia lyase light chain 0.00168857802146 0.00317247378427 0.00148389576281 +UniRef50_I1XWU0 Soluble lytic murein transglycosylase like protein 5.90744896513e-05 0.00551085363816 0.00545177914851 +UniRef50_A5UMU4 Glycosyltransferase , GT1 family 0.00223033983618 0.000528029326888 -0.00170231050929 +UniRef50_Q5F919 0.000110862246227 0.00199375778595 0.00188289553972 +UniRef50_Q54VU7 Methionine aminopeptidase 1D, mitochondrial 7.63945019991e-05 2.35126934341e-05 -5.2881808565e-05 +UniRef50_G2I4C8 UTP glucose 1 phosphate uridylyltransferase 0.0137419941268 0.00167822680893 -0.0120637673179 +UniRef50_L0WME5 N acetyl anhydromuranmyl L alanine amidase 0.0020349771538 0.00665598561088 0.00462100845708 +UniRef50_UPI0004689B76 ABC transporter ATP binding protein 3.35251334848e-05 9.24389563274e-06 -2.42812378521e-05 +UniRef50_Q03I89 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0165194865636 0.00716430489965 -0.00935518166395 +UniRef50_G0DVW8 GntR family transcriptional regulator 0.000410310857448 0.00522564689838 0.00481533604093 +UniRef50_Q2L004 Glycerol 3 phosphate acyltransferase 8.18331650288e-06 0.00318808162536 0.00317989830886 +UniRef50_UPI00044124E5 PH domain like protein, partial 1.95431732533e-05 2.92083179584e-05 9.6651447051e-06 +UniRef50_F4DQW9 FAD dependent oxidoreductase 0.000371345213544 0.000168752402972 -0.000202592810572 +UniRef50_E6SMC9 AzlC family protein 2.67853063411e-05 1.21085813642e-05 -1.46767249769e-05 +UniRef50_Q9LC43 TagG homolog 0.00787595751274 0.000936013722495 -0.00693994379024 +UniRef50_Q59695 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 2.51114921091e-05 1.36313632669e-05 -1.14801288422e-05 +UniRef50_O83540 V type ATP synthase beta chain 2 0.00241820749037 0.0450704226573 0.0426522151669 +UniRef50_Q04614 NADH ubiquinone oxidoreductase chain 4L 2.17196048097e-05 3.58298339582e-05 1.41102291485e-05 +UniRef50_E7ACI0 Na+ H+ Antiporter 0.00011005422415 0.00300221106742 0.00289215684327 +UniRef50_P37642 Inner membrane protein YhjD 0.00218345002039 0.00254353396624 0.00036008394585 +UniRef50_F2IUQ0 Integrase, catalytic region 0.0139177360053 0.00728791606601 -0.00662981993929 +UniRef50_UPI0003718EA8 5 keto 4 deoxyuronate isomerase 9.56121932094e-06 1.25785662059e-05 3.01734688496e-06 +UniRef50_UPI00047E791A saccharopine dehydrogenase 6.14208627651e-05 0.000531942761933 0.000470521899168 +UniRef50_S5XU55 Arsenate reductase 0.000119914941797 9.1203677162e-05 -2.8711264635e-05 +UniRef50_F0P418 ABC transporter, substrate binding protein 0.0225357777741 0.00598221194518 -0.0165535658289 +UniRef50_R4KAP5 Ribulose phosphate 3 epimerase 0.000536709936758 0.000269285749417 -0.000267424187341 +UniRef50_T2EFY2 Bacterial extracellular solute binding s, 3 family protein 0.00059603050871 0.00390433225243 0.00330830174372 +UniRef50_UPI0001746A5A 2 dehydro 3 deoxyglucarate aldolase 2.20901928235e-05 3.66152152692e-05 1.45250224457e-05 +UniRef50_P9WQI2 Trehalose import ATP binding protein SugC 0.0291615498054 0.0140531174001 -0.0151084324053 +UniRef50_Q89XW5 Tyrosine recombinase XerD 0.000662748815921 0.000532080092299 -0.000130668723622 +UniRef50_UPI00044166F3 Metallo dependent phosphatase 2.59504571842e-05 4.86404858712e-06 -2.10864085971e-05 +UniRef50_U5WTC2 Magnesium transporter 0.000555443345432 0.00531589410318 0.00476045075775 +UniRef50_A0A037Y901 Gluconate 8.03731700836e-05 0.00700170306844 0.00692132989836 +UniRef50_Q02430 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase 0.00185320264948 0.000428060392718 -0.00142514225676 +UniRef50_UPI0003B555DD iron ABC transporter ATP binding protein 1.59766218884e-05 1.17246730613e-05 -4.2519488271e-06 +UniRef50_W8RSD6 LysR family transcriptional regulator 0.000322927313917 0.000199988739417 -0.0001229385745 +UniRef50_A6LS03 Glycoside hydrolase, family 46 0.000289631193489 0.0015230976353 0.00123346644181 +UniRef50_P30844 Sensor protein BasS 0.0031343595362 0.00104332382149 -0.00209103571471 +UniRef50_A4WYB5 0.000178145644131 0.00028437823696 0.000106232592829 +UniRef50_A4WYB3 7.25298054809e-05 0.00016024142513 8.77116196491e-05 +UniRef50_V5LN28 9.26659148588e-05 5.29706391776e-05 -3.96952756812e-05 +UniRef50_M7D8T2 Glycosyltransferase 0.00516387043397 0.00271493269726 -0.00244893773671 +UniRef50_A3SEI8 Xanthine dehydrogenase accessory factor 6.69667893256e-06 1.00128444828e-05 3.31616555024e-06 +UniRef50_J3LXD1 0.000191701699445 6.65242966635e-05 -0.000125177402782 +UniRef50_K2BFC0 0.00262159904976 0.000242122003781 -0.00237947704598 +UniRef50_Q7D3Z9 Dihydrodipicolinate synthase 0.00486270449281 0.00105972596199 -0.00380297853082 +UniRef50_A7FAX6 0.00019525137354 0.0140023685856 0.0138071172121 +UniRef50_A7FAX1 0.000310899245916 0.00945459576041 0.00914369651449 +UniRef50_A7FAX3 0.000226067454316 0.0114478702269 0.0112218027726 +UniRef50_A4XW77 HAD superfamily hydrolase, subfamily IB 0.00145377468432 0.00154078280971 8.700812539e-05 +UniRef50_E3D438 0.000272405814481 0.00140473606342 0.00113233024894 +UniRef50_A7FAX8 0.000456400243355 0.0138130063006 0.0133566060572 +UniRef50_I0ENV0 Outer membrane protein HofB 0.00020860147467 0.00353483855602 0.00332623708135 +UniRef50_B1W4V9 NADH quinone oxidoreductase subunit B 2 8.21349711922e-06 0.000230421867322 0.000222208370203 +UniRef50_Q8DTF8 0.00535184531923 0.00140477849407 -0.00394706682516 +UniRef50_Q8DTF4 0.00372171021 0.00134916433814 -0.00237254587186 +UniRef50_UPI000360F750 hypothetical protein 0.000178871073942 3.30951658892e-05 -0.000145775908053 +UniRef50_N1SEI4 EamA like transporter family protein 0.000333075872518 0.00146438035634 0.00113130448382 +UniRef50_B9KSS7 0.00120220789427 0.000604744106207 -0.000597463788063 +UniRef50_C0Z6P5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 8.05338730149e-06 4.3383277394e-05 3.53298900925e-05 +UniRef50_Q54UH8 D 3 phosphoglycerate dehydrogenase 2.63276724327e-05 2.87333893377e-05 2.405716905e-06 +UniRef50_P71349 L serine dehydratase 0.000687785283856 0.0132816241494 0.0125938388655 +UniRef50_V6KSS1 1.91443938763e-06 9.8439891594e-06 7.92954977177e-06 +UniRef50_D4GZ01 DNA gyrase subunit B 2.2650161579e-05 3.37753445576e-05 1.11251829786e-05 +UniRef50_D5HC82 DNA repair protein radA 0.0222028500405 0.00820791815277 -0.0139949318877 +UniRef50_Q9RTR7 Glucose 1 phosphate adenylyltransferase 0.000409671666293 0.0457672966502 0.0453576249839 +UniRef50_Q3IY01 Conserved hypoothetical protein 0.00132516083155 0.000600644146164 -0.000724516685386 +UniRef50_P19930 Hydrogenase 1 maturation protease 0.00446969307827 0.000646678916486 -0.00382301416178 +UniRef50_B5GZL5 8.37078597283e-06 0.000116362539126 0.000107991753153 +UniRef50_F0YEL0 9.51325576245e-06 1.51416281297e-07 -9.36183948115e-06 +UniRef50_O30085 Copper exporting P type ATPase B 4.46295039356e-06 1.88440613622e-05 1.43811109686e-05 +UniRef50_UPI0003A50805 translation initiation factor IF 3 7.41723003533e-06 6.25720752178e-05 5.51548451825e-05 +UniRef50_UPI00019B35BE hypothetical protein 6.79436043077e-06 1.27510649106e-05 5.95670447983e-06 +UniRef50_P77455 Bifunctional protein PaaZ 0.00332990917147 0.0338927958422 0.0305628866707 +UniRef50_UPI0003814B4D hypothetical protein 2.31530886873e-05 5.7301398899e-05 3.41483102117e-05 +UniRef50_A6LQ13 Peptidase U32 0.000737336957692 0.00124993852289 0.000512601565198 +UniRef50_S1MU41 3.54840489248e-06 5.93640071111e-06 2.38799581863e-06 +UniRef50_UPI00036AC04F hypothetical protein 4.56719885131e-05 2.35673394042e-06 -4.33152545727e-05 +UniRef50_P57864 0.00389180523647 0.00364407093129 -0.00024773430518 +UniRef50_UPI000361AD9C hypothetical protein 1.24232143742e-05 2.31865467043e-06 -1.01045597038e-05 +UniRef50_UPI000469CEAC ribonucleotide diphosphate reductase subunit alpha, partial 1.39828623589e-05 0.00945971654909 0.00944573368673 +UniRef50_Q3AMY6 Ribonuclease PH 1.3723587523e-05 1.9527613959e-05 5.804026436e-06 +UniRef50_W7ZFA7 Serine threonine phosphatase 4.73918615432e-06 3.18380167086e-05 2.70988305543e-05 +UniRef50_UPI00046D13E9 hypothetical protein 4.02090943482e-06 9.95106597632e-06 5.9301565415e-06 +UniRef50_Q9HTD7 Aspartate ammonia lyase 0.000844567942513 0.0050981405566 0.00425357261409 +UniRef50_P9WLT0 0.000123765897988 0.00508568826974 0.00496192237175 +UniRef50_M4QWY4 Acyl CoA dehydrogenase 0.000127672825993 0.00787025258794 0.00774257976195 +UniRef50_Q8NXN8 MW0677 protein 0.0102793538839 0.00155810868787 -0.00872124519603 +UniRef50_P76613 0.00334073913898 0.000136510033226 -0.00320422910575 +UniRef50_Q89WR0 Exodeoxyribonuclease III 0.0127234329472 0.00265585597345 -0.0100675769738 +UniRef50_Q8DUL3 0.00613286616598 0.00581903031313 -0.00031383585285 +UniRef50_A6LPZ2 Binding protein dependent transport systems inner membrane component 0.000884366006203 0.00190942752185 0.00102506151565 +UniRef50_Q9RYC4 Methyltransferase, putative 0.000771546010255 0.0571315857243 0.056360039714 +UniRef50_A9G3I5 Malate dehydrogenase (NADP(+)) 0.000144475269083 0.0669948974642 0.0668504221951 +UniRef50_Q3JPF1 2.64991597272e-05 0.000116879962485 9.03808027578e-05 +UniRef50_UPI0001B4442A hypothetical protein 4.76108207396e-05 8.39508034304e-05 3.63399826908e-05 +UniRef50_A6TDP3 Isopentenyl diphosphate Delta isomerase 0.000622229651954 0.000324523851863 -0.000297705800091 +UniRef50_Q04K89 Phosphopantothenate cysteine ligase 0.00451833879012 0.00171854821777 -0.00279979057235 +UniRef50_UPI0004778BF4 nickel transporter permease NikB 4.62725449699e-05 8.62853903544e-05 4.00128453845e-05 +UniRef50_B0KRB8 Ribosomal RNA small subunit methyltransferase G 7.82948668254e-05 2.84965044919e-05 -4.97983623335e-05 +UniRef50_B1QWY3 0.000525629594426 0.00155481219115 0.00102918259672 +UniRef50_P65631 Membrane protein insertase YidC 1 0.00418470916251 0.00223976116242 -0.00194494800009 +UniRef50_UPI0003B43DEF leucyl phenylalanyl tRNA protein transferase 1.00792661474e-05 3.34040703286e-05 2.33248041812e-05 +UniRef50_B2UZ33 Phosphodiesterase, family 0.000577784676811 0.000742157978635 0.000164373301824 +UniRef50_Q8XBY4 Sensor kinase CusS 0.00248220948872 0.0012502049496 -0.00123200453912 +UniRef50_E9AEM8 Proteophosphoglycan ppg4 1.21174796688e-05 2.50735879183e-05 1.29561082495e-05 +UniRef50_W8EKH5 Fatty acid CoA ligase 8.89597774156e-05 0.00595848275364 0.00586952297622 +UniRef50_UPI00036DBE7B hypothetical protein 6.57903534864e-06 0.000292342138515 0.000285763103166 +UniRef50_D8JKA9 Homoserine dehydrogenase 0.000382233208592 0.00499735234705 0.00461511913846 +UniRef50_UPI000367DF3F hypothetical protein 2.48405683576e-05 6.87286022487e-05 4.38880338911e-05 +UniRef50_UPI0003808AE5 hypothetical protein 8.08324761341e-06 2.29618747517e-05 1.48786271383e-05 +UniRef50_UPI0003B5E6AE peptidase M24 3.89856407794e-06 1.50807185631e-05 1.11821544852e-05 +UniRef50_UPI0003B421A5 heme ABC transporter ATP binding protein 5.81287411282e-05 5.79419619714e-05 -1.867791568e-07 +UniRef50_UPI0003753359 hypothetical protein 1.61072015283e-05 3.42710038439e-06 -1.26801011439e-05 +UniRef50_P0AB04 0.00194950393666 0.0013505102435 -0.00059899369316 +UniRef50_UPI0002A4C202 5.55525589308e-05 2.72340887632e-05 -2.83184701676e-05 +UniRef50_UPI00036E9616 alpha L fucosidase 1.54419626849e-05 4.72784427132e-05 3.18364800283e-05 +UniRef50_A0A017Y7E3 2.9767910727e-05 4.46189247071e-05 1.48510139801e-05 +UniRef50_Q97FA7 0.000297920703939 0.00212965617169 0.00183173546775 +UniRef50_A6LTV0 Fibronectin, type III domain protein 0.000232107329756 0.000968568529317 0.000736461199561 +UniRef50_UPI000463D2BB oxidoreductase 5.61898751659e-06 1.72615614073e-05 1.16425738907e-05 +UniRef50_UPI000219711C branched chain amino acid transporter II carrier protein 1.58941721423e-05 1.26151252564e-05 -3.2790468859e-06 +UniRef50_K0S2S0 2.86793669097e-05 0.000499802341001 0.000471122974091 +UniRef50_Q4L709 Porphobilinogen deaminase 0.00787394947315 0.00123977484846 -0.00663417462469 +UniRef50_P45174 Sodium proline symporter 0.00172509854048 0.0132769626526 0.0115518641121 +UniRef50_UPI0004294A5C hypothetical protein 2.3854643408e-05 0.000161567506456 0.000137712863048 +UniRef50_UPI0004730D89 hypothetical protein 5.97964782623e-05 5.05455149912e-06 -5.47419267632e-05 +UniRef50_K8Z2D7 1.3812899602e-05 2.46549338392e-05 1.08420342372e-05 +UniRef50_P67446 Xanthine permease XanQ 0.00379919491288 0.00221854695027 -0.00158064796261 +UniRef50_F3L0R4 UPF0246 protein YaaA 1.34689232179e-05 1.58400623849e-05 2.371139167e-06 +UniRef50_Q8XKT3 DegV domain containing protein CPE1310 0.000454116200659 0.000890132602642 0.000436016401983 +UniRef50_UPI0003B581A8 taurine pyruvate aminotransferase 4.74853506028e-05 1.65980319741e-05 -3.08873186287e-05 +UniRef50_UPI0004766D5E malyl CoA thiolesterase 0.00010122795894 4.47789761493e-05 -5.64489827907e-05 +UniRef50_E3D1E7 0.000285654843523 0.00126361117974 0.000977956336217 +UniRef50_UPI0004692352 peptide ABC transporter permease 5.40927499806e-06 2.43665928334e-05 1.89573178353e-05 +UniRef50_W3PE26 DnaK domain protein 9.47651841946e-05 6.37123709624e-05 -3.10528132322e-05 +UniRef50_UPI000371AEC6 hypothetical protein, partial 3.70251797835e-05 2.14913216992e-05 -1.55338580843e-05 +UniRef50_UPI000441DE45 PREDICTED 1.2652266455e-05 1.60395922604e-06 -1.1048307229e-05 +UniRef50_M1MSX4 Phage infection protein Pip 0.000482315278466 0.00128096311338 0.000798647834914 +UniRef50_G7L1M9 50S ribosomal protein L22 8.40541386484e-06 3.14240493409e-05 2.30186354761e-05 +UniRef50_A8G2K7 0.000566697337317 0.00294743438332 0.002380737046 +UniRef50_V9U122 0.00037836467757 0.000260790930809 -0.000117573746761 +UniRef50_Q81WF1 Carbamoyl phosphate synthase small chain 0.000336544305143 0.00244579174399 0.00210924743885 +UniRef50_Q64QH6 1.77190352826e-06 3.10012895916e-06 1.3282254309e-06 +UniRef50_UPI0003722F98 hypothetical protein 3.11076713415e-06 5.97056521558e-06 2.85979808143e-06 +UniRef50_V5VGJ6 Membrane fusion protein 8.51472155251e-05 0.00611497234421 0.00602982512868 +UniRef50_R4REL3 Peptidase family M48 family 0.000608546229884 0.000412069821193 -0.000196476408691 +UniRef50_UPI0003B6D53E MarR family transcriptional regulator, partial 1.19401063788e-05 4.26634331797e-05 3.07233268009e-05 +UniRef50_UPI000371A422 hypothetical protein 0.000149729190961 3.76661214999e-05 -0.000112063069461 +UniRef50_A6LRF3 Transcriptional regulator, RpiR family 0.000316507820176 0.0015608070061 0.00124429918592 +UniRef50_A1TJ24 Potassium transporting ATPase A chain 0.00814353413742 0.0122663514283 0.00412281729088 +UniRef50_B9DNM2 Putative pyruvate, phosphate dikinase regulatory protein 0.0224430959464 0.0040564575784 -0.018386638368 diff -r 000000000000 -r 72633301cc0d test-data/output_column_percentage.tabular --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/output_column_percentage.tabular Fri Apr 15 08:42:40 2016 -0400 @@ -0,0 +1,44933 @@ +UniRef50_F0RML5 Peptidoglycan glycosyltransferase 0.000181399063257 0.023462188863 9.39874052956e+12 +UniRef50_D9SMK5 4Fe 4S ferredoxin iron sulfur binding domain containing protein 0.000974298729943 0.00104942971233 30331299550.5 +UniRef50_UPI000289C850 glutamine synthetase 3.02071076987e-06 1.13251396637e-05 3352599851.24 +UniRef50_UPI0003344A46 PREDICTED 2.92448096954e-06 1.23166316876e-05 3791726499.53 +UniRef50_A5MZ45 CheA2 0.000168607563575 0.00156010359401 5.61764023065e+11 +UniRef50_Q2LVL0 Lipid A export ATP binding permease protein MsbA 1.24797999013e-05 2.11666856208e-05 3507002365.04 +UniRef50_P31134 Putrescine transport ATP binding protein PotG 0.00276274252245 0.0013215449275 -5.81829154565e+11 +UniRef50_T1T0E7 0.000113062785186 0.00014719447673 13779382719.3 +UniRef50_B1ES30 4.65083689682e-05 7.40274272935e-05 11109781542.7 +UniRef50_U5FV07 6.97112841074e-06 1.69093447272e-05 4012179882.58 +UniRef50_UPI00037AE754 hypothetical protein 4.96975012537e-05 7.77591897983e-05 11328848021.1 +UniRef50_E3EZF3 3.7834529758e-05 5.98806720443e-05 8900298177.57 +UniRef50_UPI00040F4463 MULTISPECIES 0.000347916254551 0.000538916925611 77109314748.7 +UniRef50_A6TTD6 Xanthine phosphoribosyltransferase 3.29952916783e-05 8.400468316e-05 20593117296.8 +UniRef50_UPI00047775E1 osmotically inducible protein C 3.20342739866e-05 0.000143696613898 45079456873.1 +UniRef50_UPI00035F4F82 hypothetical protein 1.38179068894e-05 2.13437062856e-05 3038257568.19 +UniRef50_V6QDM9 0.00879068711831 0.000649365504839 -3.28675144061e+12 +UniRef50_UPI000366B462 hypothetical protein 8.96520934309e-06 5.13157979404e-06 -1547683292.88 +UniRef50_UPI0003A50DF1 hypothetical protein 1.78941032845e-05 2.0766777608e-05 1159733876.08 +UniRef50_A7X4V0 ATP synthase subunit c 0.00200926083898 0.00378523004621 7.16980562552e+11 +UniRef50_A6M004 Signal transduction histidine kinase, nitrogen specific, NtrB 0.00056455066055 0.00112908749909 2.27910449365e+11 +UniRef50_Q6G4Z3 Ribosomal RNA large subunit methyltransferase E 9.91937485213e-05 4.15778712915e-05 -23260236664.0 +UniRef50_UPI00031D9BC6 hypothetical protein 1.21726134302e-05 5.23901784827e-06 -2799177621.21 +UniRef50_K6GJU3 Pyridoxal phosphate dependent protein 5.22036525674e-06 7.45619049448e-06 902630085.137 +UniRef50_UPI0004781473 ppGpp synthetase 7.9055593981e-06 6.36800227798e-06 -620730677.34 +UniRef50_A7MGX5 tRNA methyltransferase TrmJ 0.00212961214357 0.000294172368815 -7.40989560449e+11 +UniRef50_Q4JXU5 Aminomethyltransferase 2.61473105294e-05 2.98878317567e-05 1510094320.82 +UniRef50_G3A3C4 2.43165574186e-05 5.52071853911e-05 12470925583.1 +UniRef50_L7WPW4 Cation efflux family protein 0.0220787994494 0.00729898175619 -5.9667937715e+12 +UniRef50_Q4JXJ2 Cysteine tRNA ligase 1.46406253943e-05 1.21697869621e-05 -997507795.676 +UniRef50_C1KWN7 GTPase Der 0.0221045853772 0.0112808239108 -4.36968532648e+12 +UniRef50_UPI0002003BFB transcriptional regulator, partial 7.87344330917e-06 1.02617563671e-05 964191289.383 +UniRef50_A6M2Q1 M18 family aminopeptidase 0.000278330413639 0.00197325854824 6.84263287045e+11 +UniRef50_UPI00037CE245 hypothetical protein 1.19456994074e-05 2.06099674676e-05 3497871338.43 +UniRef50_Q8CTD2 0.00400791961979 0.000845403015075 -1.27674676177e+12 +UniRef50_N6UZ26 0.000184609644252 0.000174056997165 -4260233124.56 +UniRef50_Q8CTD8 0.00467178630856 0.00176140084145 -1.17495832752e+12 +UniRef50_Q213B4 Aspartate racemase 0.00420809284222 0.00254295130469 -6.72238072285e+11 +UniRef50_S9QQA7 pH adaptation potassium efflux system a 8.62911388131e-06 8.32021938689e-06 -124704497.959 +UniRef50_L8PMS9 Putative secreted protein 6.8034549289e-07 9.4093242251e-06 3523995830.81 +UniRef50_P0AFQ9 0.00385881354037 0.000873804337357 -1.20508484544e+12 +UniRef50_UPI000366BC2B MULTISPECIES 1.19391317174e-05 1.78601929922e-05 2390405096.23 +UniRef50_Q49VL4 0.00958062041709 0.00687547851727 -1.09209898078e+12 +UniRef50_Q9ZFS6 Exotoxin 3 0.0134071014543 0.00367840610916 -3.92759369535e+12 +UniRef50_Q49VL2 0.0115447480988 0.00587318414106 -2.28967996766e+12 +UniRef50_U4W1Q6 1.65509910814e-05 5.0345135915e-05 13643110970.1 +UniRef50_A0A023Y807 4.47259288811e-06 5.34024471886e-06 350281691.359 +UniRef50_P39380 RNA 2 phosphotransferase 0.00405186331914 0.00047889195437 -1.44245238525e+12 +UniRef50_F6D690 Metallophosphoesterase 0.00269501196954 0.001183685322 -6.10141113675e+11 +UniRef50_UPI0002558482 multidrug transporter 5.69408882215e-06 2.10785393429e-05 6210891463.64 +UniRef50_B0VT73 0.000185513842053 0.00318682804429 1.21166737371e+12 +UniRef50_Q28UP9 Periplasmic sensor signal transduction histidine kinase 0.00228296634791 0.000435691148858 -7.45767666472e+11 +UniRef50_UPI0003667138 hypothetical protein 5.59750229755e-06 0.000137249322398 53149455323.9 +UniRef50_C6SR58 0.00229496650516 0.000905494784279 -5.60946784455e+11 +UniRef50_UPI000369C54D hypothetical protein 4.45569141727e-05 3.39343449794e-05 -4288461536.92 +UniRef50_UPI00036B1698 hypothetical protein 1.29140086902e-05 0.000553364217023 2.18186381174e+11 +UniRef50_UPI00046E1459 hypothetical protein 5.28399444941e-05 0.00179693810088 7.04113828226e+11 +UniRef50_I1ZLT1 Thiamine biosynthesis protein ApbE, putative 0.0049240598846 0.00147292172806 -1.39326682402e+12 +UniRef50_UPI0003B2E5CE quinone oxidoreductase 6.72862514147e-06 1.0147057367e-05 1380063038.33 +UniRef50_Q1IC36 3.85170594679e-05 3.0445887783e-05 -3258431053.61 +UniRef50_Q8RE57 Methionine tRNA ligase 6.85189237575e-06 1.23893578974e-05 2235542783.43 +UniRef50_UPI0003620A0A hypothetical protein 7.60915619622e-05 0.000165413928944 36060535659.3 +UniRef50_J3K6Q4 6.28763007674e-05 4.67621584372e-05 -6505477001.46 +UniRef50_W8RQ92 Membrane protein 0.000709208969743 0.000106038314257 -2.43507395356e+11 +UniRef50_V4SQT0 0.000118993701262 0.000401124822048 1.13899795599e+11 +UniRef50_UPI000367FC54 hypothetical protein 1.65609129421e-05 2.4728863878e-05 3297502024.85 +UniRef50_Q3JR57 8.27798318848e-05 9.56233260128e-05 5185076186.87 +UniRef50_Q6A6J6 UPF0336 protein PPA1896 0.00026583520342 0.0323661355571 1.29592851678e+13 +UniRef50_UPI0002F2D647 hypothetical protein 0.000234623756597 8.17062694021e-05 -61734666089.2 +UniRef50_UPI000344933C ABC transporter permease 4.6646117135e-06 5.44448818935e-05 20096905944.3 +UniRef50_P55573 0.000310201548483 0.00524951017719 1.99405950554e+12 +UniRef50_P77306 Inner membrane protein YqiK 0.00352192733794 0.000678998696655 -1.14772517915e+12 +UniRef50_UPI0004659A64 hypothetical protein 1.24064365563e-05 6.73323112003e-06 -2290342652.68 +UniRef50_A0R6E0 Trehalose synthase amylase TreS 0.000179009657205 0.0422492777565 1.69842834919e+13 +UniRef50_Q1IZH7 Protein translocase subunit SecA 4.53164452374e-05 0.0375674284729 1.51481370737e+13 +UniRef50_P77806 Methionine aminotransferase 0.00129444171825 0.000166052228432 -4.55544683936e+11 +UniRef50_Q8CSN4 0.0139370888828 0.0040446271353 -3.99370820162e+12 +UniRef50_R7PW99 0.001769843077 0.000279479531722 -6.01678052047e+11 +UniRef50_B0SVK0 5.16114447607e-05 8.32823298463e-05 12785924954.5 +UniRef50_UPI00047131A0 hypothetical protein, partial 6.18569422725e-05 4.1457876436e-05 -8235353202.88 +UniRef50_W5ZFT8 Oxidoreductase, putative 0.00400137817428 0.00669233267561 1.08637135391e+12 +UniRef50_P76352 0.00377418782733 0.000482029585704 -1.32908468147e+12 +UniRef50_UPI0003B4CE11 glycosyl hydrolase family 20 8.67507024865e-07 1.25162269462e-06 155072209.509 +UniRef50_P94364 Cytochrome bd ubiquinol oxidase subunit 1 2.25221118163e-05 0.00133169031774 5.2852727003e+11 +UniRef50_U9N986 0.000155302086056 0.00026525452562 44389149120.1 +UniRef50_P76359 0.00181112086248 0.00183681561418 10373286571.4 +UniRef50_B7MDB8 Cobalamin synthase 0.00359246200571 0.000511495595117 -1.24382394766e+12 +UniRef50_UPI0003B4027B MULTISPECIES 1.00508343406e-05 7.08990790867e-05 24565183095.9 +UniRef50_F5ZLB8 Transglycosylase protein 0.00270264968209 0.0053301964375 1.06077286878e+12 +UniRef50_I1EV25 0.00024063742345 0.00213740376979 7.65747849958e+11 +UniRef50_Q1RJJ1 NADH quinone oxidoreductase subunit E 0.000295013468356 9.44377105531e-05 -80974894766.4 +UniRef50_C1DH85 Deoxyribonuclease I 0.00397942135757 0.00245570704289 -6.15142166914e+11 +UniRef50_UPI0001CBBA36 PREDICTED 1.11577543041e-05 1.81078333964e-05 2805832216.62 +UniRef50_Q9RRB5 Queuine tRNA ribosyltransferase 4.7592026773e-06 0.0605007602104 2.44229779762e+13 +UniRef50_UPI0003B6BA24 GTPase Era 1.71025038414e-05 9.74575415476e-05 32440314789.2 +UniRef50_V7F7P6 0.000175809706843 1.09324706077e-05 -66562963539.3 +UniRef50_Q2G5F9 Hemimethylated DNA binding region protein 0.000829121011225 0.00885950115586 3.24196300824e+12 +UniRef50_Q329H4 Phosphonate metabolism 0.00059910060023 0.000360546006472 -96307416894.2 +UniRef50_UPI00036463CF hypothetical protein 7.50889669823e-06 1.6809831922e-05 3754901685.15 +UniRef50_UPI000455DF56 2 isopropylmalate synthase 3.22585223506e-06 1.01056091831e-05 2777442304.04 +UniRef50_D9SMY3 RNA polymerase sigma factor 0.000684801384175 0.000362351785524 -1.30176859877e+11 +UniRef50_P21865 Sensor protein KdpD 0.00391689714282 0.00121962454941 -1.08892204522e+12 +UniRef50_Q1GCD6 Flagellar fliL protein 0.00583205487323 0.000988723146173 -1.95531245258e+12 +UniRef50_Q6MJ09 DNA directed RNA polymerase subunit beta 1.0581793113e-05 6.537319961e-06 -1632803442.73 +UniRef50_Q2FH43 4 hydroxy tetrahydrodipicolinate synthase 0.0173611926901 0.00347989036311 -5.60405209214e+12 +UniRef50_D2JBF4 DNA recombination protein RmuC 0.00013992100865 4.57428493162e-05 -38020878619.0 +UniRef50_Q03K16 4 hydroxy tetrahydrodipicolinate synthase 0.00498099101573 0.00478988731751 -77150908077.5 +UniRef50_UPI000475E634 leucine isoleucine valine transporter ATP binding subunit 1.09976698195e-05 0.000556803813077 2.20348637827e+11 +UniRef50_X4Z848 Short chain dehydrogenase family protein 0.012742667348 0.00478472358504 -3.21271955206e+12 +UniRef50_K0NAB4 Dehydrogenase 0.000877630524198 0.00484888309251 1.60324339458e+12 +UniRef50_Q58927 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 4.57160507878e-05 2.77788469619e-05 -7241469298.76 +UniRef50_Q9RXT3 Phosphoribosylformylglycinamidine synthase 1 1.36728029777e-05 0.0320173365451 1.29202717818e+13 +UniRef50_UPI000375A953 hypothetical protein 2.20086869924e-05 1.29548291137e-05 -3655153528.96 +UniRef50_P45768 Inner membrane amino acid ABC transporter permease protein YhdY 0.00282955632043 0.0019702558924 -3.46910127598e+11 +UniRef50_Q9CFC2 CCA adding enzyme 0.00640568999331 0.00351547025219 -1.16681717647e+12 +UniRef50_D7WL32 0.000538686170741 0.00241897746651 7.59096669871e+11 +UniRef50_L1KE49 0.000841676254502 0.00114316143946 1.21713268807e+11 +UniRef50_Q45604 9.92513555255e-05 3.25422896763e-05 -26931268495.6 +UniRef50_M1MVG4 Transcriptional regulator, AraC family 0.000471857486069 0.00131840712176 3.41762476261e+11 +UniRef50_R1HR76 8.20621714942e-05 0.000179611818045 39381989381.3 +UniRef50_L0LIX3 3.14292843872e-05 4.30251589219e-05 4681396847.04 +UniRef50_UPI00038168DE hypothetical protein 5.54862983169e-05 3.21001600808e-05 -9441270986.1 +UniRef50_W7SZX8 0.000113301462751 0.000168365443616 22230004786.2 +UniRef50_UPI0003716923 hypothetical protein 2.03033141466e-05 0.00162556007734 6.48061854015e+11 +UniRef50_F2DTP4 Predicted protein 0.000293170380287 7.32390847827e-05 -88788962855.5 +UniRef50_Q0SQN8 Mannose 1 phosphate guanylyltransferase 0.00043672968815 0.000192388733031 -98643441982.2 +UniRef50_W0II99 C4 dicarboxylate ABC transporter permease 0.0136874572094 0.000353683605065 -5.38300802786e+12 +UniRef50_UPI00024843D9 LysR family transcriptional regulator 4.89372785742e-06 1.68415470048e-05 4823481206.03 +UniRef50_J7Q3B6 4.84016146315e-06 6.70039663929e-06 750999768.26 +UniRef50_I0C2L0 FatD 0.0264162995858 0.00786869512614 -7.48789552508e+12 +UniRef50_UPI0003C17D4A 2.16087322599e-06 6.07646988507e-06 1580774421.04 +UniRef50_UPI0001CB9AD0 PREDICTED 1.44847105293e-05 4.19227742584e-06 -4155181546.24 +UniRef50_W8BRR9 1.61516869121e-05 2.22241800246e-06 -5623416790.16 +UniRef50_P19480 Alkyl hydroperoxide reductase subunit F 0.0350548772664 0.0333419141668 -6.9154422373e+11 +UniRef50_F0RMK3 Peptidase S54, rhomboid domain protein 0.00022469404098 0.0175415869413 6.99104216602e+12 +UniRef50_F3U2Q5 0.0130278982207 0.00089754380941 -4.89717293203e+12 +UniRef50_N6U5R6 0.000990278853131 0.000388597505292 -2.42906143583e+11 +UniRef50_R7D6K7 0.000133702239266 0.00295374395045 1.13848544461e+12 +UniRef50_F9EYP6 2.27931254283e-06 4.10102522307e-05 15636155634.1 +UniRef50_X3WVZ6 5.60797452027e-05 0.000134363742738 31604210457.7 +UniRef50_A6LXH6 Na+ H+ antiporter 0.000429714616836 0.00127015885956 3.39297654198e+11 +UniRef50_Q5HGN0 Carbamoyl phosphate synthase small chain 0.0267902175384 0.0155625482972 -4.53274785167e+12 +UniRef50_P37454 Exodeoxyribonuclease 0.000160404811127 0.00165249028366 6.02373215208e+11 +UniRef50_A0A059LAI1 2.0835918992e-05 0.000103930779142 33546414731.2 +UniRef50_C3K6C6 0.000251744598828 0.000124156860881 -51508735486.8 +UniRef50_H2DK93 Truncated internaline 3.67562850117e-05 1.5743253783e-05 -8483218565.92 +UniRef50_A8I3Y9 NADH quinone oxidoreductase subunit C 2.4436044395e-05 9.21263150744e-05 27327392926.3 +UniRef50_Q7UNC2 Imidazoleglycerol phosphate dehydratase 0.00515072657715 0.00147806793631 -1.4826973619e+12 +UniRef50_Q54HJ6 2.3522367206e-06 3.78920563213e-07 -796651948.051 +UniRef50_A6LUV0 2 dehydropantoate 2 reductase 0.000124173022652 0.00111610607976 4.00455547542e+11 +UniRef50_Q9RSM5 0.000263362317798 0.0361775510149 1.44989986937e+13 +UniRef50_E8SFA5 Glycerophosphoryl diester phosphodiesterase 0.0204621605844 0.00612862085794 -5.7866258799e+12 +UniRef50_B2ICY0 N acylglucosamine 2 epimerase 0.00289528374842 0.000200668202859 -1.08784936239e+12 +UniRef50_B1LZZ2 Electron transfer flavoprotein alpha subunit 4.99928052058e-05 4.22085162053e-05 -3142612993.47 +UniRef50_I4SI86 Phenylacetate CoA ligase 0.00281670546175 0.0004124715484 -9.70618734087e+11 +UniRef50_Q57JH6 0.00042426137469 0.000161649871325 -1.06019486514e+11 +UniRef50_Q9L6Q3 Uroporphyrinogen III synthase 0.00179866140932 0.00186452732822 26590879725.6 +UniRef50_C8N6S7 Periplasmic binding protein 2.56273899946e-05 4.48586588393e-05 7763899226.81 +UniRef50_UPI00035FDB03 hypothetical protein 2.75762575879e-05 4.71167135119e-05 7888721844.88 +UniRef50_UPI000262CF7A proline iminopeptidase 5.95466499945e-06 1.06806379229e-05 1907933263.41 +UniRef50_Q9RXD5 Outer membrane protein 4.51178472729e-05 0.0321202726649 1.29491336063e+13 +UniRef50_K1YE78 0.000354233414624 0.000554251272714 80749663806.1 +UniRef50_S5YEK4 Transcriptional regulator, GntR family 0.00325086715779 0.000237202172853 -1.21665353625e+12 +UniRef50_Q4L460 Teichoic acid translocation permease protein 0.0918666683286 0.0371758073129 -2.20793717244e+13 +UniRef50_I7DPX0 5.98979718292e-05 0.000185349951005 50646503462.3 +UniRef50_P52135 0.00605852267453 0.00427219732618 -7.21161463806e+11 +UniRef50_Q3IV29 Two component transcriptional regulator, LuxR family 0.0177157167515 0.00154566708624 -6.5280474787e+12 +UniRef50_P52131 0.00626593510651 0.000977705100014 -2.1349233475e+12 +UniRef50_D3DZN3 Heavy metal translocating P type ATPase 0.00438136307585 0.00237724597806 -8.0908666566e+11 +UniRef50_P52133 0.00284936732982 0.00026057356341 -1.04512781157e+12 +UniRef50_A0A023S217 0.000156201098833 0.00293825853796 1.12315072786e+12 +UniRef50_P52139 0.00161589807204 0.000147317340239 -5.9288406294e+11 +UniRef50_P52138 0.00198838666401 0.00120311256979 -3.17024788233e+11 +UniRef50_J7RFM5 Tpr protein 6.78656391744e-05 5.63066444877e-05 -4666507999.84 +UniRef50_B3PWI5 Imidazoleglycerol phosphate dehydratase 0.000253082601495 4.61524086922e-05 -83540258153.6 +UniRef50_W8ZDB9 1.99166633945e-05 6.93794274937e-05 19968724843.2 +UniRef50_B7N578 Protein Ves 0.00133788147562 0.00297669744834 6.61610118721e+11 +UniRef50_UPI00047CFF00 hypothetical protein 1.10880818888e-05 5.73400275999e-05 18672478058.8 +UniRef50_UPI00046CDEFF transposase 5.55776770298e-05 2.05808732025e-05 -14128639164.2 +UniRef50_Q8CRI9 50S ribosomal protein L13 0.00766988732486 0.00161057477153 -2.44621883391e+12 +UniRef50_A6LYQ3 0.000134496195558 0.000660017440637 2.12159375509e+11 +UniRef50_UPI0002EBAF2D hypothetical protein 6.94285922604e-05 4.36910058409e-05 -10390579473.3 +UniRef50_UPI0003750B35 hypothetical protein 7.88304917776e-05 1.7995378632e-05 -24559881707.7 +UniRef50_A1B1I9 0.0098995977242 0.00210880302798 -3.14523942267e+12 +UniRef50_UPI00047BF436 histidine ammonia lyase, partial 1.26904510803e-05 4.06190243854e-05 11275107765.4 +UniRef50_P96589 0.0197932069637 0.00713943178039 -5.10848432078e+12 +UniRef50_P85097 Respiratory nitrate reductase alpha chain 4.66672593325e-06 2.13421901947e-05 6732089553.28 +UniRef50_J2K6A4 6 pyruvoyl tetrahydropterin synthase 8.90646920701e-05 0.00138182310047 5.21902433401e+11 +UniRef50_A0ZZF7 L asparaginase I 0.000202586398316 0.0093522834691 3.69384498688e+12 +UniRef50_X7Z663 PE PGRS family protein 1.41512795825e-05 0.000114150879588 40371065655.3 +UniRef50_V8H036 0.000214625581086 0.000107716315346 -43160582503.5 +UniRef50_C1CXX6 Non canonical purine NTP pyrophosphatase 1.01899098614e-05 0.00571844618173 2.30449310514e+12 +UniRef50_UPI0004776B86 hypothetical protein 5.00717425768e-06 7.18214312445e-06 878061621.384 +UniRef50_A6LU83 1 acyl sn glycerol 3 phosphate acyltransferase 0.000332587491469 0.00132277403927 3.99750460303e+11 +UniRef50_V5SGX2 C4 dicarboxylate ABC transporter 7.29056136163e-06 1.81117323743e-05 4368639528.53 +UniRef50_Q8CTD3 0.00560786381026 0.000515087276506 -2.05601638207e+12 +UniRef50_Q8CP66 Heptaprenyl diphosphate syntase component II 0.0193791028179 0.00653627216723 -5.18480833294e+12 +UniRef50_UPI00046D37AA N succinylarginine dihydrolase 9.07071271714e-06 2.99347464476e-05 8423066447.49 +UniRef50_Q2RM79 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.54680738702e-05 1.42873521305e-05 -476671855.402 +UniRef50_UPI000367B671 hypothetical protein 1.44487475485e-05 0.000100471185261 34728313718.6 +UniRef50_L0A0T1 Putative phosphatase, C terminal domain of histone macro H2A1 like protein 1.92429788947e-05 0.000445745887049 1.72184457801e+11 +UniRef50_Q6ABS5 Formate tetrahydrofolate ligase 0.000588718773702 0.00551418981851 1.98847310312e+12 +UniRef50_UPI0003C1A241 PREDICTED 0.000521399776348 2.13602096581e-05 -2.01872109248e+11 +UniRef50_A9KJR8 Urease accessory protein UreE 0.00474796526595 0.0006396751737 -1.65856712463e+12 +UniRef50_P25605 Acetolactate synthase small subunit, mitochondrial 2.56525616588e-05 0.000166008437689 56663389513.6 +UniRef50_UPI00036577C7 hypothetical protein 1.87237543234e-05 2.77323367249e-06 -6439420921.67 +UniRef50_A6LSZ9 0.000424666948962 0.00147381176374 4.23552636181e+11 +UniRef50_A3W226 0.000491028485652 4.77973634881e-05 -1.78937843075e+11 +UniRef50_A6LSZ0 0.000415325951833 0.0010683790577 2.63645552701e+11 +UniRef50_A3W220 2.88169891019e-05 2.20689788937e-05 -2724254528.45 +UniRef50_E6DRN3 0.000955354509541 0.00188365842032 3.74767680351e+11 +UniRef50_P80876 General stress protein 18 0.00843385255331 0.00582767273259 -1.05214677505e+12 +UniRef50_O32135 UPF0759 protein YunF 9.69853833149e-06 3.70558142974e-05 11044468019.0 +UniRef50_UPI00046D55BC nitrate transporter 2.74516516297e-06 6.95817197617e-06 1700842549.9 +UniRef50_J2MVR4 2.58420658952e-05 0.000131773563795 42765845627.9 +UniRef50_UPI00016C4574 Catalase, partial 0.00031571789138 0.000919420520224 2.43722159529e+11 +UniRef50_UPI0003682E3B hypothetical protein 0.000185767870711 0.000109744822948 -30691437289.6 +UniRef50_P06846 HTH type transcriptional regulator EbgR 0.00223657892649 0.000180437905414 -8.30089361898e+11 +UniRef50_Q8G7I0 Ribonuclease PH 1.99258830518e-05 0.00256106051173 1.02588723283e+12 +UniRef50_UPI0003767C06 hypothetical protein 0.000142841372682 2.73555479348e-05 -46623044620.8 +UniRef50_L1NJN4 0.00018294959072 0.000657849952057 1.91723103555e+11 +UniRef50_F0MTL8 Carbonate dehydratase 0.00119776378691 0.00188897774361 2.79051556469e+11 +UniRef50_UPI000376F581 hypothetical protein 9.03808218655e-06 1.35204046595e-05 1809568586.61 +UniRef50_P36556 Transcriptional regulatory protein BasR 0.00614644468857 0.00238502708738 -1.51853044338e+12 +UniRef50_UPI0004650D3F iron ABC transporter permease 1.1018809469e-05 1.62341271668e-05 2105487753.75 +UniRef50_W4U8H5 TsaD Kae1 Qri7 protein 1.46809502519e-05 0.00010259391807 35491543921.6 +UniRef50_UPI0003D768D4 PREDICTED 1.51984202496e-05 3.36542016879e-05 7450825444.55 +UniRef50_D3QH01 Branched chain amino acid permease 5.18266232913e-05 2.09592878172e-05 -12461522115.7 +UniRef50_A9M387 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.000112907075432 0.00258204649305 9.96821882641e+11 +UniRef50_UPI00037FC5AF hypothetical protein 9.14370214715e-06 6.88288721336e-05 24095635542.9 +UniRef50_P29013 0.00273296266096 0.00158468312409 -4.63574540009e+11 +UniRef50_Q1GJ00 Aminodeoxychorismate synthase, subunit I 0.00168245053275 0.00033322120471 -5.44700436635e+11 +UniRef50_Q83Q93 Biosynthetic arginine decarboxylase 0.00382047035778 0.00547223014453 6.66835695283e+11 +UniRef50_UPI00038015E1 hypothetical protein 1.48147866146e-05 3.31670635407e-05 7409039402.83 +UniRef50_Q4L4Q7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0151724224858 0.00170586946154 -5.4366127091e+12 +UniRef50_Q1GI12 Sarcosine oxidase alpha subunit family 0.00433596334087 0.00138701226791 -1.19052773585e+12 +UniRef50_UPI0003B6C2BF inosine uridine preferring nucleoside hydrolase 5.80032462471e-06 2.46730154963e-05 7619136898.83 +UniRef50_A6VCM9 Oxidoreductase, FAD binding 0.000459669958711 0.000408651797653 -20596657682.4 +UniRef50_UPI0003B30607 transcriptional regulator 1.31855150121e-05 4.02375460841e-05 10921236909.5 +UniRef50_B9KPI4 0.00517023883235 0.00110332198569 -1.64186423768e+12 +UniRef50_P52616 Phase 2 flagellin 0.00347365908733 0.00117890532258 -9.26420254625e+11 +UniRef50_J9P338 0.000141384974083 0.000352859771623 85374970854.5 +UniRef50_Q2P0J5 Thiazole synthase 0.0017478248921 0.00572216112251 1.60448830681e+12 +UniRef50_F8JVM5 LigA 0.000332142357587 0.000124313146858 -83903202722.5 +UniRef50_P65769 Polyphosphate kinase 9.91740508531e-06 0.000528332132287 2.09290387036e+11 +UniRef50_B2TS76 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.000405478513173 0.00179132797507 5.59484434054e+11 +UniRef50_R6KLR0 Polysaccharide deacetylase 0.000158607558343 0.00246832381868 9.32460797705e+11 +UniRef50_M9VL85 0.00111479896583 0.00994431647601 3.56458456922e+12 +UniRef50_M2BGU5 0.000401580839207 0.00459991145523 1.694917589e+12 +UniRef50_UPI0004726713 2 hydroxychromene 2 carboxylate isomerase 8.11696062435e-05 6.43211708804e-05 -6801920109.64 +UniRef50_B4SQ60 DoxX family protein 8.86079142093e-05 3.49859424817e-05 -21647848002.0 +UniRef50_Q0I3Q6 Glutamyl tRNA reductase 3.51516019594e-06 6.62623191235e-06 1255977829.06 +UniRef50_A0A023NRD3 0.0112226755099 0.00134148928712 -3.98915613393e+12 +UniRef50_B6I2P2 Phosphoglycerol transferase I 0.00293177228019 0.000589520087834 -9.45595952722e+11 +UniRef50_Q9KCT8 NADPH dehydrogenase 1.02148070517e-05 8.51113263554e-06 -687794268.24 +UniRef50_A1T1H6 1.14774714567e-05 3.40976421885e-05 9132040505.14 +UniRef50_R7UXT3 1.90887934969e-05 4.50735666292e-05 10490371782.5 +UniRef50_A6LZQ9 0.000262143047812 0.000410162090547 59757103950.0 +UniRef50_UPI000370658C hypothetical protein 5.52473277956e-06 6.58412176425e-06 427688333.284 +UniRef50_A6LZQ3 0.000174762031871 0.000362917224226 75960560077.6 +UniRef50_UPI00037BAE23 mutator mutT protein, partial 8.48405241532e-05 8.24014448672e-06 -30924513263.7 +UniRef50_Q1JUQ1 L arabonate dehydratase 0.000160209109763 0.0118967778257 4.7381968145e+12 +UniRef50_E9KNS2 Crp family transcriptional regulator 0.00820414834355 0.00428170386247 -1.58353897082e+12 +UniRef50_UPI000384168E PREDICTED 6.39356631133e-05 2.36831143021e-05 -16250447909.4 +UniRef50_L7WTA8 LysM domain containing protein 0.0122281866817 0.00651630362905 -2.30595728104e+12 +UniRef50_Q6LUK6 Carbamoyl phosphate synthase small chain 2.26725165598e-05 7.51544078281e-06 -6119097489.41 +UniRef50_Q8CNU4 Proline dehydrohenase like protein 0.0111986869792 0.00426772827281 -2.7981130822e+12 +UniRef50_A4WXA3 0.0129108795898 0.0034183021443 -3.83227000177e+12 +UniRef50_UPI0004418811 PREDICTED 3.77837194267e-06 0.000285237867215 1.13628652138e+11 +UniRef50_U2JRM5 0.000995598241079 7.44449176773e-05 -3.7188090048e+11 +UniRef50_Q9KNM9 K H(+) antiporter NhaP2 0.00282865702426 0.000826995252695 -8.08095420331e+11 +UniRef50_Q9KX08 Putative ribosome biogenesis GTPase RsgA 0.0160066737988 0.00310100882932 -5.21017531851e+12 +UniRef50_Q18A91 DNA polymerase IV 3.79355087699e-06 8.25998046682e-06 1803152434.67 +UniRef50_B3W6P3 Divalent metal cation transporter MntH 0.00562368593445 0.00570844622845 34218770813.6 +UniRef50_D4HBR1 Mannose 6 phosphate isomerase, class I 0.000693339835125 0.00579753449531 2.06062601983e+12 +UniRef50_M1XIG8 SCCmec staphylococcal cassette region, isolate CMFT535 0.0133596767733 0.00136000526311 -4.8444146412e+12 +UniRef50_R6CBZ9 0.000376867282714 0.000311954266055 -26206181397.5 +UniRef50_P17815 Malate synthase, glyoxysomal 1.39143681189e-05 0.0656070587306 2.64807572975e+13 +UniRef50_P23105 2 hydroxymuconic semialdehyde dehydrogenase 1.2812223153e-05 4.92800349914e-05 14722503149.5 +UniRef50_B5EXV0 Uridine kinase 0.00481223996375 0.00265467130732 -8.71036942946e+11 +UniRef50_Q4K681 Spermidine putrescine import ATP binding protein PotA 0.000414588012089 0.000234914576457 -72536370805.6 +UniRef50_W0BHE5 ABC type transport system involved in Fe S cluster assembly, ATPase component 1.48932592701e-05 0.000177125595354 65495184891.7 +UniRef50_B7GXR8 0.000213671314441 0.0042112727081 1.61388073871e+12 +UniRef50_E0TNV6 Gp34 0.000535919048192 0.000141979185193 -1.59038356878e+11 +UniRef50_M7RDL9 5.8186488478e-05 0.0001334564237 30387396515.1 +UniRef50_Q1IVV5 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 6.88424295821e-05 0.0385699683013 1.55433769763e+13 +UniRef50_O27661 DNA topoisomerase 1 0.0033327700218 0.00170153386149 -6.58550055436e+11 +UniRef50_Q37371 NADH ubiquinone oxidoreductase chain 6 6.90015632437e-05 8.51423307113e-06 -24419477453.7 +UniRef50_B7I2D1 Glycerophosphoryl diester phosphodiesterase 0.000107037614984 0.00718031715919 2.8555697509e+12 +UniRef50_D8U6B8 4.16014276365e-06 1.2944692356e-05 3546430468.98 +UniRef50_A0A022GZQ6 LacI family transcriptional regulator 8.95451841103e-05 2.74789644893e-05 -25056894499.2 +UniRef50_UPI000471138D hypothetical protein 0.000192006834979 0.000165278410825 -10790592825.6 +UniRef50_M4ZMN9 Gas vesicle structural protein 0.00110779387647 0.0161081839197 6.05584153593e+12 +UniRef50_Q11DH5 Holliday junction ATP dependent DNA helicase RuvA 2.25708882418e-05 1.01306997688e-05 -5022256744.83 +UniRef50_F5ZH83 Phosphohydrolase 0.00722792978235 0.0075412615888 1.26495895278e+11 +UniRef50_O66976 Histidinol dehydrogenase 0.000191101505964 0.00233133236627 8.64037461893e+11 +UniRef50_A7GJ81 DNA directed RNA polymerase subunit beta 0.000354598993163 0.00116690458447 3.27937735321e+11 +UniRef50_R7HT16 0.000923180881063 0.00144218740724 2.09529303544e+11 +UniRef50_A0A024H9M2 HTH type transcriptional regulator HexR 0.000849730540512 0.000402476048286 -1.80562126941e+11 +UniRef50_UPI00036B500B hypothetical protein, partial 0.000111461199474 3.46523069927e-05 -31008692445.8 +UniRef50_F6D5Z8 ABC type transporter, periplasmic subunit 0.00276253793539 0.000509021827504 -9.09772106508e+11 +UniRef50_Q6FEG1 Kinase sensor component of a two component signal transduction system 0.000331084856469 0.00762263271973 2.94368734975e+12 +UniRef50_Q7MN25 Methionine import ATP binding protein MetN 1.7418074601e-05 9.50659814573e-06 -3193960129.73 +UniRef50_UPI00047C1764 hydrogenase maturation protease 8.59907463197e-05 0.000252634990795 67276326449.4 +UniRef50_E1PW93 Transposase B 0.000102670713198 0.0181127847642 7.27090405134e+12 +UniRef50_F0RJQ2 3 mercaptopyruvate sulfurtransferase 0.000144815596745 0.000456911748174 1.25997046182e+11 +UniRef50_P00887 Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive 0.00125492103727 0.00101086734115 -98527471999.3 +UniRef50_G7ZT27 0.00657414280083 0.0108490850961 1.72584666404e+12 +UniRef50_Q9M315 3 methyl 2 oxobutanoate hydroxymethyltransferase 2, mitochondrial 2.51906096655e-05 1.45998657535e-05 -4275613280.32 +UniRef50_Q46106 Ferritin 9.78757152452e-05 0.0017626841933 6.72103612086e+11 +UniRef50_P10996 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.000292838285346 0.00111331700517 3.31237327599e+11 +UniRef50_X5DZU0 NAD dependent epimerase dehydratase family protein 0.0135841464478 0.00275185034063 -4.3731308657e+12 +UniRef50_G7V8Z9 0.0129126186976 0.00943264208836 -1.40490926127e+12 +UniRef50_B2TN34 0.000317136869388 0.00112562002417 3.26394570789e+11 +UniRef50_Q4L6M0 DNA repair protein RecN 0.0175914822821 0.0072221969977 -4.18620771475e+12 +UniRef50_I6Y1G9 Putative membrane protein 1.51273736531e-05 0.000120716798603 42627746580.3 +UniRef50_Q7VK73 UvrABC system protein C 7.33457232246e-05 0.00323513663939 1.2764537924e+12 +UniRef50_E2QNB6 Cystine transporter subunit 0.00152716231474 0.000293290139211 -4.98129338576e+11 +UniRef50_Q5WEL9 Glutamate racemase 0.00724095123122 0.00230557859273 -1.99247049799e+12 +UniRef50_C2X6L3 Alpha glucosidase 0.000153889795835 0.00238744855777 9.01715081039e+11 +UniRef50_UPI0002D7F533 succinyl CoA synthetase subunit alpha 2.47174097259e-05 4.80255943907e-05 9409800172.77 +UniRef50_D2PWU8 ResB family protein 0.000190523329085 0.00534754501453 2.08195293818e+12 +UniRef50_X2MBD9 PTS mannitol transporter subunit IIBC 2.32234677225e-05 5.30091646653e-05 12024851367.4 +UniRef50_P37646 Cyclic di GMP phosphodiesterase YhjH 0.00390400950836 0.00298051383061 -3.72826537674e+11 +UniRef50_Q8ZCA7 Copper exporting P type ATPase A 7.58973237456e-06 2.12246169774e-05 5504570233.0 +UniRef50_P23378 Glycine dehydrogenase , mitochondrial 0.000368651209684 0.00350154872658 1.26478917255e+12 +UniRef50_Q3IUX7 Acyltransferase 3 family 0.00859084275982 0.00247993089834 -2.4670501078e+12 +UniRef50_A3PFZ9 DNA translocase FtsK 0.00448200008599 0.000633924089602 -1.55351550095e+12 +UniRef50_Q5HNA3 Signal transduction protein TRAP 0.00704223430034 0.00567898452593 -5.50360662885e+11 +UniRef50_P25527 GABA permease 0.00359210397676 0.00189679345445 -6.84417661656e+11 +UniRef50_UPI0003C7ED51 hypothetical protein 0.00013576584553 0.00254517422546 9.72707729743e+11 +UniRef50_UPI000289BAFB deoxyguanosinetriphosphate triphosphohydrolase 7.56074420363e-05 9.33353704351e-05 7156982240.74 +UniRef50_M1MT32 Two component transcriptional regulator, AraC family 0.000370221366583 0.00119519449111 3.3305177393e+11 +UniRef50_K6GMQ5 0.000549455248371 0.000279515271677 -1.08978081127e+11 +UniRef50_UPI00032893EC 4.0790492991e-05 0.000293933399063 1.02196897594e+11 +UniRef50_W4JVY5 0.000196396323594 0.000321759177124 50610522345.3 +UniRef50_F1UED2 0.000152622367462 0.00856112650074 3.39461630255e+12 +UniRef50_UPI000299DF64 tRNA 2 selenouridine synthase 1.22727410263e-05 9.82810556222e-06 -986929335.9 +UniRef50_A5UP39 0.00325280687339 0.000157782745423 -1.24949922068e+12 +UniRef50_E0UH66 Amine oxidase 1.17218339161e-05 5.62502700467e-06 -2461355766.38 +UniRef50_A5UP37 0.000310262456591 0.000600644146164 1.17230651465e+11 +UniRef50_A5UP34 0.00193596381494 0.000580950895467 -5.47035343468e+11 +UniRef50_A1B0E4 Membrane protein insertase YidC 0.00725385144355 0.0021378463581 -2.06539403344e+12 +UniRef50_A9HRV7 Trigger factor 6.77679702012e-05 2.35810042456e-05 -17838820391.3 +UniRef50_P39149 Uracil phosphoribosyltransferase 5.54699389765e-05 0.00384097674364 1.52825555043e+12 +UniRef50_UPI00047EB418 amino acid ABC transporter permease 5.48649509851e-06 3.06939847882e-05 10176572918.4 +UniRef50_D3E0M0 Calcineurin like phosphoesterase 0.00234522392032 0.000739604659451 -6.48208198777e+11 +UniRef50_S1FKD9 0.000288063929283 0.000616850746259 1.32735272681e+11 +UniRef50_A5UJ82 3 dehydroquinate synthase 0.00324360433651 0.000442885821655 -1.13068443313e+12 +UniRef50_B7LJH6 4.00815766368e-05 4.90701128327e-05 3628782364.03 +UniRef50_F9Y4V0 6.53863805325e-05 3.80381106198e-05 -11040832164.8 +UniRef50_I7JVN9 2.2242637305e-05 8.36343804463e-05 24784600067.5 +UniRef50_A8I6P0 Predicted protein 3.64132072445e-06 2.86750750026e-06 -312397894.362 +UniRef50_Q890U2 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.000177436903749 0.000350804061526 69990449048.8 +UniRef50_Q0D831 Os07g0187900 protein 0.000172067918298 0.000399034535673 91629208627.9 +UniRef50_A1B1L1 0.00516213074887 0.00168645087742 -1.40317461549e+12 +UniRef50_C6CW74 Sulfate ABC transporter, ATPase subunit 0.000184740288181 0.00096579111761 3.15319804412e+11 +UniRef50_F7KI55 Excinuclease ABC subunit A 8.61720574606e-06 6.03327691101e-05 20878207551.4 +UniRef50_G0ICQ4 Transposase like protein, IS1381 ISSpn7 5.00565686819e-05 8.56113752942e-05 14353911735.9 +UniRef50_K0HZ43 Transporter, major facilitator family protein 0.000190836185841 0.0075868043089 2.98584309001e+12 +UniRef50_Q7A441 Molybdopterin synthase sulfur carrier subunit 9.62329973805e-05 0.0081433898321 3.2487359639e+12 +UniRef50_A1U404 Type II secretion system protein E 0.000526333702828 0.000660285866956 54078132436.4 +UniRef50_B2UX09 0.000233016042498 0.00204275857248 7.30615267391e+11 +UniRef50_A6VAG5 Haloacid dehalogenase, type II 0.000161548925324 0.000403621920536 97727838736.8 +UniRef50_UPI0003735394 hypothetical protein 1.09421026098e-05 1.71205596291e-05 2494318916.88 +UniRef50_Q9KSC2 Methylisocitrate lyase 0.0031894638228 0.0127252157453 3.84970006795e+12 +UniRef50_Q06172 Flagellar basal body rod protein FlgG 0.00726670960472 0.00171086309173 -2.2429634152e+12 +UniRef50_A9C1V3 1.01312670431e-05 3.06718235967e-05 8292474741.66 +UniRef50_X5IXK7 IS431mec, transposase 3.24643977845e-05 3.97666395352e-05 2948004603.34 +UniRef50_UPI000225B431 dTDP glucose 4,6 dehydratase 5.910974035e-06 8.17960333362e-06 915873487.065 +UniRef50_P0ACS8 HTH type transcriptional regulator RpiR 0.0034413698919 0.000809449387504 -1.06253860492e+12 +UniRef50_W5X9M8 Type I phosphodiesterase nucleotide pyrophosphatase 1.26652104041e-05 0.000106135991692 37735301421.4 +UniRef50_W9H4Y7 ABC transporter permease 2.72008265724e-06 4.35452320697e-06 659843706.767 +UniRef50_Q7V3R5 Phosphoribosylformylglycinamidine synthase 2 6.95673629689e-06 2.58160813765e-06 -1766292926.75 +UniRef50_P45743 Isochorismatase 2.27169953979e-05 3.91111870967e-05 6618536368.16 +UniRef50_UPI00036B0594 hypothetical protein 2.56793189679e-05 2.99345808814e-05 1717901452.42 +UniRef50_UPI000478FCEB alkyl hydroperoxide reductase 1.51010878429e-05 0.000729572356491 2.88440818702e+11 +UniRef50_UPI00037BF563 hypothetical protein 0.000241287367666 5.07249500475e-05 -76932386456.2 +UniRef50_UPI0002D56393 hypothetical protein 2.16036598222e-05 7.5871107522e-05 21908434572.9 +UniRef50_C9M6I7 5.83225699386e-05 3.76409876268e-05 -8349408570.83 +UniRef50_UPI0003822EF9 hypothetical protein 2.06208242519e-05 9.25352878274e-05 29032751435.1 +UniRef50_Q9JV11 UPF0307 protein NMA1049 0.000247802618498 0.000353672700827 42741051408.2 +UniRef50_Q5FPZ9 Holo [acyl carrier protein] synthase 2.04172189206e-05 4.28458375686e-05 9054708578.3 +UniRef50_P27303 Multidrug export protein EmrA 0.00389260861418 0.000960432850044 -1.18375533783e+12 +UniRef50_P14532 Cytochrome c551 peroxidase 0.00030970212708 0.000172196329551 -55512777848.3 +UniRef50_A0A016QQV6 2.87280869728e-05 0.000408089066644 1.53152682776e+11 +UniRef50_D4H9H0 0.000294230502286 0.00260978332472 9.34817089443e+11 +UniRef50_D0K339 0.000158013571195 4.58857290075e-05 -45267385854.6 +UniRef50_UPI00037E8439 iron transporter FeoB 7.66538554955e-06 9.46109048526e-06 724948118.324 +UniRef50_K0LZX2 0.0152168515458 0.00221487528896 -5.24905736706e+12 +UniRef50_UPI0001CC3EEF hypothetical protein 5.37969314622e-06 1.17278568293e-05 2562831579.59 +UniRef50_Q4L4W4 Na+ H+ antiporter, MnhD subunit 0.0171138321528 0.00418039142987 -5.221388731e+12 +UniRef50_UPI00037D2BB8 hypothetical protein 3.8027169578e-06 1.47447747489e-05 4417443004.42 +UniRef50_A3PS55 0.0234428653813 0.00253304662746 -8.44155042324e+12 +UniRef50_K6YKE1 8.64205710921e-05 4.3202245342e-05 -17447768453.8 +UniRef50_P0A2J0 Histidine transport system permease protein HisQ 0.00615811942655 0.000790280777913 -2.16706233324e+12 +UniRef50_Q8X6V3 0.00274385337905 0.00013842970556 -1.05184150913e+12 +UniRef50_J9P815 2.07291676946e-05 7.50827592702e-06 -5337436245.17 +UniRef50_Q9ZKV9 IS606 TRANSPOSASE 0.000175329979574 0.00339728423799 1.30074247195e+12 +UniRef50_W4UM07 TsaD Kae1 Qri7 protein 1.46809502519e-05 0.000117506156474 41511797559.0 +UniRef50_W4TJV2 Transcription termination protein NusB 0.000636212340763 0.00101251441781 1.5191776625e+11 +UniRef50_G7M0Z9 Type II secretion system F domain containing protein 0.000102857217666 0.000479183477566 1.51927529164e+11 +UniRef50_Q6YWZ7 0.00011708624299 1.1097513351e-05 -42788950783.2 +UniRef50_A5UNC4 Predicted coenzyme PQQ synthesis protein 0.0037799615595 0.00274871176414 -4.16328197245e+11 +UniRef50_UPI00036D5C8E hypothetical protein 3.57566335505e-05 3.9744882142e-05 1610104897.7 +UniRef50_M1MYX8 Methyl accepting chemotaxis protein 0.000379124979432 0.00413025994186 1.51437921594e+12 +UniRef50_UPI000360D29B hypothetical protein 5.86441218768e-06 4.93857835919e-05 17570111703.2 +UniRef50_B9KUN2 Oxidoreductase domain protein 0.0053418468593 0.00288618486724 -9.91380880556e+11 +UniRef50_Q51700 Nitrite reductase 0.000982429626756 0.000739220709474 -98186424415.8 +UniRef50_R6AHC9 8.42472741453e-06 0.000223911196739 86994531982.4 +UniRef50_J9NWS4 2.60340323218e-05 7.28447638374e-05 18898066745.1 +UniRef50_UPI000373A5D7 hypothetical protein 4.48555982627e-06 0.000306265621011 1.21832313958e+11 +UniRef50_K4YWM5 4.41601516807e-05 0.000116105547305 29045239082.8 +UniRef50_P76090 Inner membrane protein YnbA 0.00119147640467 0.000966677545342 -90754058102.9 +UniRef50_Q6FEM6 Dual specificity RNA methyltransferase RlmN 0.00117003443421 0.00609768359198 1.98935243405e+12 +UniRef50_F0HFQ0 1.73959396342e-05 1.91182023772e-05 695298603.89 +UniRef50_I2DWY9 MotA TolQ ExbB proton channel family protein 0.000287756739867 0.000498632401153 85133092196.5 +UniRef50_P0ADB2 Osmotically inducible lipoprotein E 0.000449388081972 0.00191676530768 5.92398192763e+11 +UniRef50_F3U4S4 Blue light receptor BLUF domain containing protein 0.00527954765308 0.00050770780263 -1.92645030469e+12 +UniRef50_UPI0003FEC0C1 hypothetical protein 3.18312182146e-06 8.24968335214e-06 2045433063.64 +UniRef50_UPI0003656647 hypothetical protein 0.000270582155676 0.000114409524502 -63048807658.6 +UniRef50_Q9RSV9 0.000127672825993 0.0194578190858 7.80381725265e+12 +UniRef50_UPI0003B6AB5A ABC transporter permease 1.55436298576e-05 0.000186338019594 68951791019.3 +UniRef50_UPI0004120031 glycerol 3 phosphate ABC transporter substrate binding protein 2.58580869479e-05 9.84088138813e-06 -6466342437.71 +UniRef50_UPI0003713513 hypothetical protein 0.000134469093019 1.84741208071e-05 -46828593700.4 +UniRef50_Q45592 Probable peptide export permease protein YydJ 0.0107566520619 0.00226054613848 -3.42998222023e+12 +UniRef50_E8SHI1 Predicted oxidoreductase 0.00849377236132 0.000395788692335 -3.26925538061e+12 +UniRef50_Q1IUD5 Potassium transporting ATPase A chain 3.49290054553e-06 0.00184081997239 7.4175148544e+11 +UniRef50_S3DA11 FAD NAD binding protein 3.22068775111e-06 0.000766965658036 3.08333216709e+11 +UniRef50_M2EZJ0 0.00279912750829 0.000303927998483 -1.00734266165e+12 +UniRef50_B3PS08 Bacterioferritin 0.00815992141695 0.0007130383224 -3.0063980888e+12 +UniRef50_UPI0003598731 PREDICTED 8.41918166822e-05 7.15202028187e-05 -5115686014.88 +UniRef50_UPI0002626701 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.58362261254e-05 1.88770077385e-05 1227600851.79 +UniRef50_Q8CNC7 Urease accessory protein UreF 0.008283002803 0.00673125712415 -6.26458772613e+11 +UniRef50_Q9RSI9 Phosphopentomutase 1.2584233918e-05 0.0235201359659 9.49028710431e+12 +UniRef50_Q5HKJ8 Glycerol dehydrogenase 0.0122438563176 0.0057312047889 -2.62923734136e+12 +UniRef50_Q11190 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 0.000795720613581 0.000266870491225 -2.13503284116e+11 +UniRef50_B0CG85 1.59704254521e-05 1.64620885281e-05 198490417.166 +UniRef50_G8VFK8 Biotin carboxylase 0.000346986305232 0.00610201571927 2.3233759966e+12 +UniRef50_Q6GER8 Mannitol 1 phosphate 5 dehydrogenase 0.0107364848067 0.00218374082753 -3.45284769836e+12 +UniRef50_C5N1D9 0.000935915674838 0.00172029148658 3.16662140574e+11 +UniRef50_C6B577 Peptidase S8 and S53, subtilisin, kexin, sedolisin 0.00273207134254 0.000572852811789 -8.71703017455e+11 +UniRef50_A1B2H5 Flagellin domain protein 0.00471763552964 0.0016595672718 -1.23457968241e+12 +UniRef50_Q6FF20 Polyphosphate AMP phosphotransferase 8.00323651255e-05 0.00627597523877 2.50137817086e+12 +UniRef50_Q5HPK8 Catalase 0.0097405230881 0.00160855096368 -3.28297693715e+12 +UniRef50_D3QEW8 0.013834812556 0.00334070707763 -4.23659915879e+12 +UniRef50_O34645 Alpha galactosidase 0.000302118604617 0.00151596541635 4.90044853471e+11 +UniRef50_UPI0003B72D82 hypothetical protein 2.43270322244e-05 0.000648835250992 2.52121631494e+11 +UniRef50_A4SUD8 TraN protein 6.7680655042e-06 4.3483147875e-06 -976883058.012 +UniRef50_Q9JZD0 5.99501305782e-05 0.00282028712693 1.11438191857e+12 +UniRef50_Q2G6V6 Thymidylate synthase 0.0085838222656 0.00188852209428 -2.70297483973e+12 +UniRef50_Q5HFZ7 Dihydrofolate reductase 0.0205051196372 0.00361133348255 -6.82022878068e+12 +UniRef50_Q6A812 N acetyl gamma glutamyl phosphate reductase 0.00043324502106 0.00257786299378 8.65808593009e+11 +UniRef50_A6LY45 0.000312833692416 0.0032365364023 1.18033466185e+12 +UniRef50_UPI0002F39B78 hypothetical protein 3.60419074469e-05 3.15640897746e-05 -1807749943.31 +UniRef50_UPI0001BF786C hypothetical protein SMAC_11506, partial 0.000274250362674 1.08738361078e-05 -1.06328335768e+11 +UniRef50_A5ISU2 0.0114435979021 0.000482930776554 -4.42495582108e+12 +UniRef50_F3J2W3 AsmA family protein 1.31034739134e-05 1.57702505258e-05 1076610443.45 +UniRef50_UPI00047EDDA8 ACGS family amino acid carrier protein 1.93977796476e-06 0.000538148330432 2.1647397265e+11 +UniRef50_B7GJM7 2 oxoglutarate ferredoxin oxidoreductase, beta subunit 0.0127508646162 0.00325310898128 -3.83436050039e+12 +UniRef50_UPI000262500B dihydropteroate synthase 1.52809991299e-05 1.15182885366e-05 -1519052440.17 +UniRef50_F7ZT52 ABC type transporter, duplicate ATPase component 0.000498898971513 0.00212976963129 6.58402498387e+11 +UniRef50_U5NN33 0.0418522193713 0.00480877260914 -1.49548940321e+13 +UniRef50_Q7VFA9 ATP dependent RNA helicase DeaD 0.000159480178144 0.00443469579344 1.72595700669e+12 +UniRef50_F2U351 1.36382083913e-06 5.5543749636e-06 1691778123.93 +UniRef50_UPI000369F682 hypothetical protein 0.000180204914258 9.35406129701e-06 -68974585916.1 +UniRef50_B9KZ43 GTPase Der 0.000766566470157 0.00086915135331 41414776186.9 +UniRef50_B8HHC7 Formyltetrahydrofolate deformylase 0.000601677278104 0.000230116913138 -1.50003478895e+11 +UniRef50_D1BX90 Transcriptional regulator, LysR family 6.18396851872e-05 3.52262837378e-05 -10744156748.3 +UniRef50_B4S6J0 UDP N acetylglucosamine 1 carboxyvinyltransferase 9.46832203863e-06 6.89920504126e-05 24030459582.9 +UniRef50_P76117 0.00350581838882 0.000812398710068 -1.08736657629e+12 +UniRef50_I0C7E7 NikE 0.0254935710989 0.00297588058451 -9.0906679838e+12 +UniRef50_G7MCM7 Aminodeoxychorismate lyase 0.000189058091245 0.00105208141205 3.48413105096e+11 +UniRef50_A6LSA1 0.000143167884525 0.000433757706537 1.17314677084e+11 +UniRef50_I9LBA0 Alkaline phosphatase 0.000118017386351 0.0159990893513 6.4113836349e+12 +UniRef50_C5WFH4 UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase 0.00434467724944 0.00367750703236 -2.69344803734e+11 +UniRef50_Q55S44 1.1702548157e-05 4.02060549517e-05 11507215470.4 +UniRef50_U5MVS9 Cytochrome b5 0.00201948088615 0.00129565060247 -2.92219167918e+11 +UniRef50_Q6GEQ8 Probable uridylyltransferase SAR2262 0.0208410287977 0.00445415142352 -6.61558348556e+12 +UniRef50_I0C5M6 Acyl CoA hydrolase 0.0164633051779 0.00155654286643 -6.0180428717e+12 +UniRef50_P39197 Phosphate acetyltransferase 2.39105784739e-05 6.40813151249e-06 -7065952617.49 +UniRef50_X2N154 Glutamate synthase 0.00258080008632 0.000177929259451 -9.70068439348e+11 +UniRef50_P33315 Transketolase 2 5.28172458124e-06 4.38479513016e-06 -362101425.963 +UniRef50_P23354 1 phosphofructokinase 8.01266000219e-06 0.000182959842845 70628324557.1 +UniRef50_P0AD42 Phosphatidylglycerophosphatase C 0.00296350704177 0.00136144382608 -6.467725797e+11 +UniRef50_P0CB40 Phosphoethanolamine transferase EptC 0.0037319946603 0.00172392246925 -8.10683385344e+11 +UniRef50_UPI0003653436 hypothetical protein 0.000226927368029 4.5416144615e-05 -73278308285.4 +UniRef50_T1A1M3 Cobyrinic acid a,c diamide synthase 2.44515119022e-05 7.7565575713e-05 21442799343.3 +UniRef50_Q9HU82 0.000142447542961 0.000360875810829 88182172154.6 +UniRef50_Q0T052 Malate dehydrogenase 0.00213015398234 0.000189103546545 -7.83625880296e+11 +UniRef50_UPI00047042B3 protoheme IX farnesyltransferase, partial 1.83988975329e-05 8.811365902e-05 28144704708.7 +UniRef50_I3KYK8 0.00123456361474 0.000245625701145 -3.99246371351e+11 +UniRef50_B9E056 DNA repair protein RecO 0.000478397722615 0.000247472099328 -93227507897.0 +UniRef50_W8UX70 Pirin 8.53728172102e-06 8.72226812083e-06 74681279.6417 +UniRef50_A4WV68 0.00115905678836 0.00053693946399 -2.51156398086e+11 +UniRef50_UPI00047437FE 30S ribosomal protein S15, partial 0.00036668433021 0.000475094805256 43766639122.2 +UniRef50_A4X0K4 0.0300055571713 0.00436688331536 -1.03506472575e+13 +UniRef50_UPI0003B358DD phytoene desaturase 6.30617128896e-06 3.13531484542e-05 10111772042.6 +UniRef50_G7U9F5 0.00020046288771 0.0041452329292 1.59255207352e+12 +UniRef50_A4X0K2 0.0114331359002 0.00272021454746 -3.51751326967e+12 +UniRef50_V9W010 0.000216487923241 1.55822723944e-05 -81108076636.5 +UniRef50_Q8A8R5 ATP dependent 6 phosphofructokinase 1 1.6131739956e-05 0.0140149105755 5.65147880023e+12 +UniRef50_E4RMY1 CoA substrate specific enzyme activase 0.000429789246994 0.00255939253788 8.59746981703e+11 +UniRef50_A0A031IYL1 0.000125689338356 0.000127654570816 793388460.216 +UniRef50_P00358 Glyceraldehyde 3 phosphate dehydrogenase 2 1.08008182864e-05 8.2187355376e-06 -1042418491.41 +UniRef50_W6TF97 Outer membrane protein assembly factor BamD 8.52202351465e-06 2.16384639622e-05 5295267965.48 +UniRef50_UPI00016C52B2 potassium transporting ATPase subunit A 4.87815568839e-06 0.000386021959834 1.53872430894e+11 +UniRef50_P0AFR0 NTE family protein RssA 0.00317174674159 0.00215136218476 -4.11941767119e+11 +UniRef50_P0A9R0 Aspartate semialdehyde dehydrogenase 0.00411128250197 0.0118431750768 3.12145991345e+12 +UniRef50_Q8DU04 0.00202187564251 0.00117085918359 -3.43565787612e+11 +UniRef50_R9YS20 Phage portal family protein 0.0024987985815 0.000379421891038 -8.55618377615e+11 +UniRef50_V8EVN4 0.00124347018405 0.00089040212621 -1.42537907582e+11 +UniRef50_G8LI42 0.00142978596829 0.000614749501921 -3.29040223095e+11 +UniRef50_Q8DU03 0.00793800496678 0.000412069821193 -3.03831237188e+12 +UniRef50_A6LTA9 0.000976256867724 0.00935926788773 3.38432441989e+12 +UniRef50_UPI000402B508 peptide deformylase 2.87131447448e-05 1.93873141191e-05 -3764952264.41 +UniRef50_W7U2M8 1.3349098486e-05 5.367577662e-06 -3222237900.92 +UniRef50_E8QFC4 0.000301988791085 0.00260166041199 9.28405653502e+11 +UniRef50_P45303 2 oxoglutarate dehydrogenase E1 component 4.8595850617e-05 0.0104775174901 4.21028364313e+12 +UniRef50_A6LQ67 GntR domain protein 0.000477830365635 0.00339045928521 1.17586403681e+12 +UniRef50_A0A036I5S3 8.81176511406e-05 0.000145671086782 23235028228.5 +UniRef50_P45240 Sodium glutamate symport carrier protein 0.0036658949996 0.0100387145615 2.57278546043e+12 +UniRef50_UPI00047875CB hypothetical protein 7.94316094354e-06 6.19839150672e-05 21816915594.4 +UniRef50_A6TGA9 HTH type transcriptional activator RhaS 0.00211730969928 0.000219838738361 -7.66032311511e+11 +UniRef50_B7V1B6 0.00132391861385 0.00043858916614 -3.57418362255e+11 +UniRef50_L9BSL0 Penicillin binding protein activator LpoA 0.00107250441969 0.000190734858542 -3.55981192365e+11 +UniRef50_A0A043WFQ4 2.83124416727e-05 2.2149529354e-05 -2488043330.5 +UniRef50_P73426 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00329222940049 0.000401679048146 -1.16695064828e+12 +UniRef50_P71239 Putative colanic acid biosynthesis glycosyl transferase WcaE 0.000866590360751 0.000795244486817 -28803204819.5 +UniRef50_UPI000410C3F5 bacitracin ABC transporter ATP binding protein 1.10225717888e-05 1.27685304248e-05 704864926.675 +UniRef50_UPI0002D5F775 ATPase 4.9885532083e-05 4.4625668772e-05 -2123471364.43 +UniRef50_UPI00037CF9B5 hypothetical protein 7.45201199033e-05 4.87106337714e-05 -10419606269.5 +UniRef50_UPI000405E993 acetyltransferase 5.37854786543e-05 0.000299012328242 99001088450.5 +UniRef50_I7B8G3 Poly 0.000637231987322 0.000826821320576 76539540357.4 +UniRef50_B4RA53 3.03222068082e-05 3.16480523303e-05 535260107.226 +UniRef50_UPI000373244E hypothetical protein 9.52816567006e-06 6.1216679113e-05 20867287166.3 +UniRef50_P35482 Alkaline phosphatase L 0.00215315467719 0.000382286997012 -7.14921013479e+11 +UniRef50_B9KJR5 Binding protein dependent transport systems inner membrane component 0.0012975591023 0.000461259753837 -3.37624309522e+11 +UniRef50_UPI0003B5FEB1 sulfate transporter 5.66195050081e-05 1.2972346332e-05 -17620893568.4 +UniRef50_UPI0004657597 hypothetical protein 2.32343274735e-05 7.35403034455e-05 20309139823.6 +UniRef50_Q5F8F6 tRNA lysidine synthase 0.00036905839131 0.00294703239931 1.04075974233e+12 +UniRef50_UPI00047939C9 Fis family transcriptional regulator 0.000360070132245 0.000146950401638 -86039050519.2 +UniRef50_D6AYQ3 0.000437027514448 0.000217448020881 -88646936096.4 +UniRef50_C7RP31 0.000410149103732 0.00111166927105 2.83212300167e+11 +UniRef50_UPI000347473B ABC transporter permease 4.17237915091e-05 6.96944164614e-05 11292084531.4 +UniRef50_H6PD14 Oxidoreductase,pyridinenucleotide disulfide, class I 0.0022202328079 0.00182498836633 -1.59565031257e+11 +UniRef50_Q99WQ6 Lipase 2 0.014421842654 0.0028858997087 -4.65720172896e+12 +UniRef50_A3PMS2 Chromosome partition protein Smc 0.00106247713254 0.00043733494839 -2.52377571099e+11 +UniRef50_UPI00046813B7 hypothetical protein 8.61351368169e-05 1.73546326286e-05 -27767533572.5 +UniRef50_Q9K0Y6 Phospho N acetylmuramoyl pentapeptide transferase 0.00280896417523 0.010830892556 3.23855092745e+12 +UniRef50_UPI000248DDD1 sugar ABC transporter permease 1.77521528267e-05 0.000202410115945 74548685718.8 +UniRef50_P49433 Glyceraldehyde 3 phosphate dehydrogenase 1 2.49020807337e-05 2.75708028578e-05 1077395870.4 +UniRef50_Q99Y18 6 phospho beta galactosidase 0.0264831448372 0.0073104365963 -7.74025759244e+12 +UniRef50_P14953 Anthranilate synthase component 1 1.04165324688e-05 1.56973389576e-05 2131926382.31 +UniRef50_U5RY54 0.000197208268834 0.00172746271754 6.17782499278e+11 +UniRef50_Q97GY4 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000640548442558 0.00209242508865 5.86140418556e+11 +UniRef50_P0DC56 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.00778206562738 0.00601532214999 -7.13256022203e+11 +UniRef50_UPI0003C7A2A0 hypothetical protein 7.77195970112e-05 0.000577900624486 2.01929218703e+11 +UniRef50_K2JJ46 NAD specific glutamate dehydrogenase 7.19633193391e-05 5.9241299866e-05 -5136035378.03 +UniRef50_M9B494 7.78576930011e-05 8.63214005412e-05 3416902595.31 +UniRef50_Q9RSU0 Glutamine synthase 9.75631551138e-05 0.0499112496199 2.01103965085e+13 +UniRef50_UPI000375E388 hypothetical protein, partial 7.4192639978e-05 2.57091751582e-05 -19573369706.8 +UniRef50_W4TMV5 2.22941369635e-05 0.000136458157977 46089416233.0 +UniRef50_Q46267 Pyruvate formate lyase activating enzyme 5.20290834472e-05 0.00229710190775 9.06363449312e+11 +UniRef50_F8JI17 0.000282171367632 1.25680876309e-05 -1.08842152541e+11 +UniRef50_A7INU8 Anhydro N acetylmuramic acid kinase 4.50929574888e-06 2.44405435681e-05 8046489328.53 +UniRef50_D0D2I8 ArsC family protein 0.000120915942346 7.22677741709e-05 -19639862472.4 +UniRef50_B2Y834 Abortive phage resistance protein like protein 0.00867933720424 0.00352586565796 -2.08051970344e+12 +UniRef50_P0AA69 Threonine homoserine exporter RhtA 0.00303146107685 0.00183958609873 -4.81174554618e+11 +UniRef50_UPI00047DFAFF hypothetical protein 3.39537933543e-06 2.79241872734e-06 -243422596.645 +UniRef50_M4NGT3 Arsenical resistance protein ArsH 0.000296067442241 0.00812320374969 3.15991097708e+12 +UniRef50_Q47539 Taurine transport system permease protein TauC 0.00266478013264 0.00814200202826 2.21122169233e+12 +UniRef50_W4UB64 Menaquinone specific isochorismate synthase 0.00036296729697 0.00135047144752 3.98667543616e+11 +UniRef50_C2W144 Cell wall surface anchor 3.40130826249e-06 0.000299474824448 1.19528511715e+11 +UniRef50_UPI00035CC609 hypothetical protein 0.000121836328929 9.02753853642e-05 -12741540213.4 +UniRef50_Q2RP22 Dual specificity RNA methyltransferase RlmN 0.0107307669935 0.00214281541268 -3.46706143919e+12 +UniRef50_UPI0003C16468 PREDICTED 7.89544409101e-06 4.72636564893e-06 -1279395856.03 +UniRef50_UPI000476C674 hypothetical protein 9.69708710926e-06 1.56551135474e-05 2405328386.28 +UniRef50_Z5XDL4 Glutamate synthase 3.23186144207e-06 3.06062049218e-06 -69132072.8334 +UniRef50_UPI0004774B62 hypothetical protein, partial 4.06777620211e-05 3.20489455372e-05 -3483559102.04 +UniRef50_A1IRN6 8.90841136789e-05 0.00130722608256 4.9177886112e+11 +UniRef50_UPI000477DB28 NrdR family transcriptional regulator 9.34125128345e-05 0.000133689831989 16260448001.0 +UniRef50_UPI0002E108A4 hypothetical protein 3.17006815175e-05 0.000212236204661 72884406113.2 +UniRef50_C3YD63 1.52303062457e-06 4.07171857443e-06 1028936601.28 +UniRef50_UPI00037451D4 hypothetical protein 8.28759168097e-06 9.29504144432e-06 406719832.263 +UniRef50_P0A585 Glucose 6 phosphate 1 dehydrogenase 2 1.17362633558e-05 0.00740612531387 2.98520559905e+12 +UniRef50_A5UNF6 Putative Zn peptidase 0.00466781943369 0.000254218110649 -1.78182501509e+12 +UniRef50_Q46820 0.00213469435242 0.000465842697415 -6.7373589224e+11 +UniRef50_G0LV16 CAAX amino terminal protease family protein 0.00752090649818 0.00149350521893 -2.43333586096e+12 +UniRef50_K0HMU2 Polysaccharide deacetylase 0.000493834622703 0.00530509906634 1.94236649675e+12 +UniRef50_A6LYX7 0.000461536301295 0.000255317036191 -83253247917.4 +UniRef50_UPI0003795D86 hypothetical protein 4.33034926066e-05 0.000318144203592 1.10956567699e+11 +UniRef50_UPI00046281E4 PREDICTED 0.000141084058665 0.000712975280051 2.30879503968e+11 +UniRef50_O25242 DNA polymerase III subunit beta 0.000101112318447 0.00403959574074 1.5900140882e+12 +UniRef50_Q8D5U6 0.000159434593721 0.00230683569368 8.66932175629e+11 +UniRef50_B9KJP6 NADH hydrate epimerase 7.31925595303e-05 7.15655687981e-05 -656836124.011 +UniRef50_M9B696 Bifunctional glmU domain protein 0.00165646172412 0.000851875111142 -3.24821489047e+11 +UniRef50_Q820V5 Enoyl [acyl carrier protein] reductase [NADH] FabI 1.25395055315e-05 0.00189832920819 7.61316444206e+11 +UniRef50_Q1CG91 Methionine import ATP binding protein MetN 1 1.82552416953e-05 2.23241459225e-05 1642666567.59 +UniRef50_Q186R1 Thiazole synthase 0.000837528356113 0.00297397047942 8.62507902273e+11 +UniRef50_H6LJB5 Chemotaxis protein methyltransferase CheR2 0.000300788024613 0.0016249039914 5.34561864523e+11 +UniRef50_UPI000328B359 PREDICTED 4.09183807218e-05 4.40997348515e-05 1284351701.77 +UniRef50_Q8K9N2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.62645836624e-05 2.52217190258e-05 3616105462.62 +UniRef50_D2AAC8 Biotin sulfoxide reductase 0.00133387709286 8.05043267146e-05 -5.06001966308e+11 +UniRef50_B8CY71 Lon protease 6.7944948875e-06 1.5359773394e-05 3457908040.86 +UniRef50_R9SL42 0.0031431773612 0.000815840095442 -9.39574613827e+11 +UniRef50_M1FGU0 0.00042825448039 0.00236253364156 7.80892233639e+11 +UniRef50_P19496 Coenzyme F420 hydrogenase subunit alpha 0.00165309763648 0.000367596858647 -5.18972438878e+11 +UniRef50_A7ZU67 Der GTPase activating protein YihI 0.00304624412835 0.000714075750017 -9.41524993256e+11 +UniRef50_Q8TX50 50S ribosomal protein L10 0.00165989492411 0.000797251355547 -3.48259794456e+11 +UniRef50_A6LX70 MukB N terminal domain M protein repeat protein 0.00065873309663 0.00143271639743 3.12466556376e+11 +UniRef50_E3DSX1 KdgR1 0.000818368301181 0.00129675182196 1.93129297764e+11 +UniRef50_UPI000464DA5F ABC transporter 5.59939890418e-06 1.38348009265e-05 3324732856.16 +UniRef50_UPI0003FDD6FE FAD containing monooxygenase EthA 1.17356455547e-05 0.00238205925472 9.56928728164e+11 +UniRef50_A0A022LQG6 Glyoxalase 2.9420058585e-05 3.7942528545e-05 3440625705.32 +UniRef50_Q3J3Q2 0.00326318618142 0.00112057516709 -8.64998359279e+11 +UniRef50_UPI0003F48E9A hypothetical protein TREMEDRAFT_26315 2.69750014306e-06 3.42607698797e-06 294135412.933 +UniRef50_S5RL61 ATP dependent DNA helicase 0.0056491774676 0.00253834531831 -1.25588111287e+12 +UniRef50_B8FP23 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.53507860593e-05 8.37965866608e-06 -2814329674.0 +UniRef50_A4EPQ9 0.00681816818623 0.00361091044288 -1.29480930847e+12 +UniRef50_UPI000329816A PREDICTED 5.08374541215e-05 0.00018976776119 56087869829.9 +UniRef50_G1XX87 0.000181024986141 0.00131706190063 4.5863204312e+11 +UniRef50_A0A024L1D8 Antirestriction protein 4.98892606782e-05 0.000391147953907 1.37770322172e+11 +UniRef50_U5MT98 0.000590476353155 0.00166053057755 4.31994021428e+11 +UniRef50_Q1RK88 0.00456424049103 0.00488387348001 1.29039759989e+11 +UniRef50_X0PNW8 DNA gyrase subunit B 1.62962300532e-05 0.000137760030061 49036426591.7 +UniRef50_UPI0003752FD7 hypothetical protein, partial 0.000239535396236 0.000101061680298 -55903538387.8 +UniRef50_Q03KB7 ATP dependent 6 phosphofructokinase 0.00478124301285 0.00382948422281 -3.84236702933e+11 +UniRef50_Q2FH56 Putative oligopeptide transport system permease protein oppC2 0.0205963816924 0.00237620889639 -7.35570734441e+12 +UniRef50_A1SW90 Beta hexosaminidase 4.07470685053e-06 2.49014504511e-05 8408011964.45 +UniRef50_UPI0001B664E4 Os08g0187500 8.10315376137e-05 0.00044673363675 1.47638425091e+11 +UniRef50_B2UZH1 Cyanophycinase 0.00119936410372 0.00292835996884 6.98016847914e+11 +UniRef50_A6M0N2 Signal transduction histidine kinase, LytS 0.000932503262961 0.000970362057043 15284059750.5 +UniRef50_A6LYP0 PTS system, mannose fructose sorbose family, IIA subunit 0.000286698219379 0.00254783039777 9.12846807628e+11 +UniRef50_A0A023KNT6 0.000150395407342 0.000215814277023 26410400470.0 +UniRef50_Q2YU28 0.00161615964863 0.000153332570187 -5.90561242473e+11 +UniRef50_UPI0001FFEA10 ABC transporter 9.42562944799e-05 2.49498033757e-05 -27979880945.1 +UniRef50_G5J8I8 Transposase, Tn3 family 2.55846774511e-05 0.00128569724911 5.08722908499e+11 +UniRef50_UPI000361DFBB hypothetical protein 4.81947407208e-06 8.02953902992e-06 1295942615.41 +UniRef50_A3PNG9 Transferase hexapeptide repeat containing protein 0.0104750361539 0.0018630623084 -3.47675952223e+12 +UniRef50_B9NR02 0.00377552927356 0.000428149721403 -1.35137820217e+12 +UniRef50_P39916 Thioredoxin reductase 0.0101142581658 0.0101379492084 9564364619.41 +UniRef50_B0VT23 Erythronate 4 phosphate dehydrogenase 0.000420854951058 0.00871508239562 3.34848140099e+12 +UniRef50_Q02RB8 UDP 3 O acylglucosamine N acyltransferase 0.0015265059377 0.000982087922008 -2.19788233695e+11 +UniRef50_A0LM36 Macrolide export ATP binding permease protein MacB 3.17051649979e-06 1.41139116432e-05 4417982909.95 +UniRef50_UPI0004713629 hypothetical protein 0.000299420651106 0.00028588446127 -5464725944.52 +UniRef50_Q3V7R9 4 hydroxythreonine 4 phosphate dehydrogenase 0.000926690746418 7.09958081303e-06 -3.71250238207e+11 +UniRef50_A3M2D7 DNA primase 0.000191933123357 0.0103129813918 4.08599138518e+12 +UniRef50_G3GPU6 9.52024639151e-06 2.19460337709e-05 5016442846.62 +UniRef50_Q5HRQ3 Peptidyl tRNA hydrolase 0.00964635371193 0.00245405725638 -2.90361833851e+12 +UniRef50_Q4L4Y2 ATP dependent helicase deoxyribonuclease subunit B 0.0115570726846 0.00263892526894 -3.60036554968e+12 +UniRef50_A3SHH8 5.73401723464e-05 3.61154484524e-05 -8568681492.66 +UniRef50_UPI00045E8170 hypothetical protein 6.09339181379e-06 1.01273537124e-05 1628559920.75 +UniRef50_UPI000371708D hypothetical protein 0.000101912128211 5.48238585019e-05 -19010112319.6 +UniRef50_R8S9D2 9.50442621984e-05 0.011640101584 4.6608813146e+12 +UniRef50_C1DIU1 Response regulator 0.00309420256021 0.00130341252148 -7.229639141e+11 +UniRef50_R7MTU6 0.00503446074007 0.00147724168973 -1.43609298261e+12 +UniRef50_P77768 0.00192106833763 0.00040664849239 -6.11389875545e+11 +UniRef50_UPI00046ADC84 transposase 3.91429399837e-06 8.86595122707e-06 1999044786.89 +UniRef50_UPI00047D345D hypothetical protein 3.17999080168e-05 2.37858741144e-05 -3235363829.65 +UniRef50_B2TQ47 Shikimate kinase 0.000235928743029 0.00130787911857 4.32759520916e+11 +UniRef50_P50852 PTS system mannitol specific EIICB component 7.99085938229e-06 9.66299220863e-06 675060541.371 +UniRef50_UPI000368B6A3 hypothetical protein, partial 3.07655091778e-05 3.1218179004e-05 182748363.72 +UniRef50_A6LU00 Baseplate J family protein 0.000357453725764 0.00246599753734 8.51245011477e+11 +UniRef50_UPI0003B708C3 DNA glycosylase, partial 5.75759874775e-05 0.000161466798753 41941995395.3 +UniRef50_A0A011PVV2 0.000162938363087 0.000666152906117 2.03153886158e+11 +UniRef50_G7M9T7 0.00088114942308 0.00141687953598 2.16280820725e+11 +UniRef50_A4VN57 Oxidoreductase, molybdopterin binding 0.000241258907866 9.62989256126e-05 -58522123694.6 +UniRef50_Q9I0H4 Flavohemoprotein 0.00101717425989 5.11872506009e-05 -3.89980809644e+11 +UniRef50_UPI00026306CB ubiquinol cytochrome C reductase 0.000109625419348 4.49333072065e-05 -26116999533.0 +UniRef50_Q9RZD6 Ferredoxin nitrite reductase 0.000301421464354 0.0344282270331 1.37774101911e+13 +UniRef50_U3T069 Nicotinamide nucleotide adenylyltransferase 0.000382587150866 0.00277462359093 9.6569446444e+11 +UniRef50_A5UJ97 0.00394226652981 0.000346988903649 -1.4514576967e+12 +UniRef50_A8L7A1 Putative transcriptional regulator 6.43992197656e-05 2.27393772044e-05 -16818589665.7 +UniRef50_UPI0004729065 membrane protein 3.05030440267e-05 1.04666874197e-05 -8088923035.99 +UniRef50_M4VIT1 MotA TolQ ExbB proton channel family protein 0.00298165438002 0.0019559822084 -4.14076442096e+11 +UniRef50_Q5HKI1 Probable succinyl diaminopimelate desuccinylase 0.0202955628631 0.00582029046095 -5.84384510034e+12 +UniRef50_UPI0003620D57 hypothetical protein 1.65138140605e-06 9.06269473625e-06 2992038138.44 +UniRef50_G4QII0 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein 0.00499633516867 0.0060963709524 4.44097944849e+11 +UniRef50_UPI0001FFF2A8 putative hydrolase 1.01513511738e-05 7.81778520282e-05 27463133174.0 +UniRef50_UPI0003D0D2FE PREDICTED 2.78207475169e-05 2.46269420503e-05 -1289378459.27 +UniRef50_V9U2A1 Thioesterase PvdG involved in non ribosomal peptide biosynthesis 0.000719562651032 0.000681500088921 -15366323404.4 +UniRef50_E4CZ61 0.000589821857578 0.00184572940748 5.07025289613e+11 +UniRef50_A6TRD7 0.000202711978108 0.00120527589669 4.04747356774e+11 +UniRef50_UPI0002D6A2EC deoxyguanosinetriphosphate triphosphohydrolase 7.32536050167e-05 5.6176240941e-06 -27305475485.3 +UniRef50_P9WGC6 Succinyl CoA ligase [ADP forming] subunit alpha 0.011603345089 0.00796659258257 -1.46820161482e+12 +UniRef50_UPI00037FF954 hypothetical protein 1.35283566279e-05 7.86820024732e-05 26303326352.9 +UniRef50_UPI0003B73915 potassium transporter TrkA 8.12097968596e-06 1.34428828904e-05 2148517630.73 +UniRef50_UPI000463E242 hypothetical protein 5.12334019912e-06 3.41577203972e-05 11721535577.9 +UniRef50_A3PH06 0.0138328769499 0.00357363137893 -4.14178333211e+12 +UniRef50_P23630 Diaminopimelate decarboxylase 9.09729700937e-06 0.00148169990653 5.94507744329e+11 +UniRef50_A8F7Z9 Ornithine carbamoyltransferase 6.04205672409e-06 8.36436123122e-06 937542827.409 +UniRef50_P0AFS5 AI 2 transport protein TqsA 0.00334426124009 0.00144804104504 -7.6552736198e+11 +UniRef50_UPI0003449BF9 acetolactate synthase 3.29398305574e-05 0.000984241736536 3.84052253231e+11 +UniRef50_UPI0003B58311 citrate synthase, partial 2.32538742189e-05 5.71442172265e-05 13681947353.4 +UniRef50_A0A023RXS3 Magnesium transporter 0.000337842557968 0.00644628195509 2.4660519436e+12 +UniRef50_A9NAA5 Phosphoheptose isomerase 0.00637758434682 0.00281154134615 -1.43965531964e+12 +UniRef50_UPI000249446F cellobiose phosphorylase 0.000114378563817 0.000150705006754 14665430789.3 +UniRef50_A9M3I8 dTDP 4 dehydrorhamnose reductase 0.00110523249462 0.00216042348677 4.25993552181e+11 +UniRef50_Q46851 L glyceraldehyde 3 phosphate reductase 0.00442795078185 0.00598245808684 6.27573674974e+11 +UniRef50_UPI000300C9AC heme ABC transporter ATP binding protein 2.01490003621e-05 8.0258825366e-05 24267073984.6 +UniRef50_K4NDS6 0.000120989098994 0.00198480952046 7.52447175796e+11 +UniRef50_T0ZCE6 Thiamine biosynthesis protein ThiC 2.04562772034e-05 8.12653630909e-05 24549374184.2 +UniRef50_A8FEQ2 Pseudouridine synthase 0.0071191407092 0.00283095504139 -1.73119317605e+12 +UniRef50_A6M2V9 Methyl accepting chemotaxis sensory transducer 7.84794155617e-05 0.00150074286437 5.7418520742e+11 +UniRef50_P64434 Inner membrane protein YpjD 0.00293604828794 0.000208213893202 -1.10126021945e+12 +UniRef50_D3E0C1 0.00420301781789 0.000428129877289 -1.5239685847e+12 +UniRef50_UPI0002196E63 amino acid ABC transporter periplasmic protein 6.73356453807e-06 9.21004062606e-06 999783786.501 +UniRef50_I6D8C7 Sensor atoS domain protein 0.00237183370661 0.000404543431768 -7.94219225319e+11 +UniRef50_E6MU88 DNA binding response regulator, Fis family 0.000215115103052 0.00451759698677 1.73696473385e+12 +UniRef50_B8DW19 30S ribosomal protein S3 0.00161659948589 0.00409237941937 9.99502740382e+11 +UniRef50_Q83BS0 Transcription termination antitermination protein NusA 0.00395200935005 0.00915030030039 2.09861384686e+12 +UniRef50_P02924 L arabinose binding periplasmic protein 0.00148123092923 0.00021848338239 -5.09786680314e+11 +UniRef50_E5WAH0 0.000432235865095 0.000215284477612 -87585937419.8 +UniRef50_UPI000477EDEC hypothetical protein 9.95893161909e-05 6.26745704145e-05 -14902935864.8 +UniRef50_UPI00036184DA hypothetical protein 1.81090887652e-05 3.91604677352e-06 -5729905220.26 +UniRef50_Q0ASX6 1.93664009927e-05 4.16074123058e-05 8978969195.0 +UniRef50_A9BTA7 Non canonical purine NTP pyrophosphatase 3.31090980871e-05 1.34930922527e-05 -7919222270.81 +UniRef50_C7Q8K8 6.33023679082e-06 0.00071063468417 2.84336348194e+11 +UniRef50_U5AI32 DNA polymerase III subunit beta 0.0015099439554 0.000188500024587 -5.33483130809e+11 +UniRef50_G5MH51 3.47493861839e-05 3.6410037568e-05 670425342.245 +UniRef50_UPI000475DCB4 ATPase, partial 0.000181680432359 0.00316450718534 1.20420376358e+12 +UniRef50_UPI0003B5589D hypothetical protein 2.45949660491e-06 1.50185023973e-05 5070224754.72 +UniRef50_UPI000363404F MULTISPECIES 1.78925068132e-05 1.79820425666e-05 36146682.3748 +UniRef50_S1SPS9 PTS system transporter subunit IIA 0.00572303066785 0.000957783908741 -1.92378859281e+12 +UniRef50_UPI00037ACE4F hypothetical protein 5.24489057051e-06 7.48844184284e-06 905749180.11 +UniRef50_A5UJD7 Predicted transposase 0.00360697537197 0.000713394269692 -1.16817419922e+12 +UniRef50_A9B4Z7 NADH quinone oxidoreductase subunit D 1 6.21073167249e-06 7.42080091766e-05 27451335348.8 +UniRef50_F3SFL5 0.000309270081671 7.20353275986e-05 -95774581416.7 +UniRef50_UPI00036E2F89 hypothetical protein 0.000492745695945 2.14110756335e-05 -1.90283570146e+11 +UniRef50_UPI000469CEC8 hypothetical protein 1.82046109492e-05 3.98851393146e-06 -5739212817.17 +UniRef50_A8GE31 PTS system, maltose and glucose specific IIAbc component 0.000191602065363 5.95596999188e-05 -53307123271.8 +UniRef50_K7TAU7 0.000786184567758 0.000110712867877 -2.72696214212e+11 +UniRef50_Q1C1E0 Glycogen debranching enzyme 0.00298322902965 0.000241700997045 -1.10678850909e+12 +UniRef50_Q2RRM4 N acetyl gamma glutamyl phosphate reductase 5.85980225593e-05 2.24794465634e-05 -14581512354.3 +UniRef50_T2DXA7 0.00105603699885 0.00268469731995 6.57510157538e+11 +UniRef50_UPI00035EBF42 hypothetical protein 0.000341046528148 0.000128732906505 -85713614438.4 +UniRef50_P52146 Arsenical pump membrane protein 0.0226288889207 0.00655159883118 -6.49059929967e+12 +UniRef50_B9DN29 6,7 dimethyl 8 ribityllumazine synthase 1.60933768439e-05 6.21860919488e-05 18608194709.1 +UniRef50_UPI0002D3715C hypothetical protein 0.00164033516518 8.51871004283e-06 -6.5878432758e+11 +UniRef50_Q55038 Amidophosphoribosyltransferase 4.3283230997e-06 6.73673434576e-05 25449626094.3 +UniRef50_M4KMH2 Cysteine desulfurase 0.00336005900066 0.00473844407918 5.56470970886e+11 +UniRef50_UPI000476ECF5 hypothetical protein 0.000207713318283 5.93918699409e-05 -59879188804.5 +UniRef50_Q9UZU7 Phosphate import ATP binding protein PstB 0.00729162451769 0.0105844478216 1.32935317527e+12 +UniRef50_UPI0003C1AD3B PREDICTED 3.37736341156e-05 6.45326877495e-06 -11029566746.6 +UniRef50_S6B705 0.00811158127318 0.00294201310697 -2.08701810643e+12 +UniRef50_A6M0A3 0.00023349648795 0.000335587164987 41215259113.3 +UniRef50_Q38451 C repressor 0.00155293136979 0.00272362141742 4.72621938211e+11 +UniRef50_Q88VD4 30S ribosomal protein S20 0.0022117862046 0.00133225581291 -3.55077212177e+11 +UniRef50_B0CHX9 Adenine phosphoribosyltransferase 0.00757968032653 0.000798046467691 -2.73782880882e+12 +UniRef50_A3WPC3 0.000190849599432 0.000272116370809 32808392860.3 +UniRef50_UPI00028995EB 6 pyruvoyl tetrahydropterin synthase 0.000107300780255 0.00083595193852 2.94165414147e+11 +UniRef50_A0A022NGW7 2.10984624753e-05 0.000273676672327 1.019689228e+11 +UniRef50_Q890R5 tRNA pseudouridine synthase A 2 0.000471857486069 0.00275353749934 9.21142220719e+11 +UniRef50_UPI000464C09A GntR family transcriptional regulator, partial 2.24152182028e-05 3.00769829037e-05 3093148430.18 +UniRef50_H3V9W4 0.00129230863228 0.000211763948756 -4.36229148511e+11 +UniRef50_A6LSW5 Cobalamin synthase 0.000151398123869 0.00051088667735 1.45129940461e+11 +UniRef50_U5MTT1 Transcriptional regulator, AraC family 0.000135949335724 0.00156429884676 5.76642225426e+11 +UniRef50_A9IYN9 Elongation factor P 0.0203834695393 0.00372004565284 -6.72722870619e+12 +UniRef50_B5QX24 Protein TolB 0.00317935108626 0.00183648513329 -5.42131464032e+11 +UniRef50_P0A9D0 Fructose 1,6 bisphosphatase class 2 0.00265203254394 0.00224914685275 -1.62649897497e+11 +UniRef50_K2EHJ4 5.01000550452e-06 0.000686783035329 2.75240138436e+11 +UniRef50_O25582 Protease HtpX homolog 0.000132451224162 0.00208228370361 7.87171299089e+11 +UniRef50_Q2IGL4 Bifunctional protein GlmU 5.86563372479e-06 6.48345017174e-06 249420081.094 +UniRef50_D3E2G7 0.000636573839715 0.000316410755563 -1.29253765915e+11 +UniRef50_W1TXW2 Prophage LambdaSa04, terminase, large subunit 1.07736379702e-05 0.000108341431842 39389315677.5 +UniRef50_D5ZU02 Modular polyketide synthase 0.000118450535691 0.000436624021654 1.28450540711e+11 +UniRef50_UPI00047270A3 ribosome associated protein IOJAP 5.07169856552e-05 4.30986570067e-05 -3075612762.8 +UniRef50_UPI00042AA310 PREDICTED 1.12532928975e-05 4.17376532099e-06 -2858092158.21 +UniRef50_D8GM15 Membrane associated dicarboxylate carrier protein 0.00039875280513 0.00604089305011 2.27780125375e+12 +UniRef50_UPI0003B419EF serine threonine protein phosphatase 1.55083930543e-05 2.05315042169e-05 2027891616.85 +UniRef50_A0A011PK79 Glucose inhibited division protein A 1.3425977207e-05 1.92770218348e-05 2362138516.63 +UniRef50_D9CIX9 SAD1f 2.41047234099e-07 9.02138052573e-06 3544728296.64 +UniRef50_Q3IXN3 Phosphatidylethanolamine 0.00406268926363 0.00155421583442 -1.0127015058e+12 +UniRef50_G8VAR4 Bacterial extracellular solute binding protein 0.000114621251678 0.00681250589398 2.70401822238e+12 +UniRef50_Q5HL87 Ribokinase 0.0215121393573 0.00457780099036 -6.83660020642e+12 +UniRef50_V8R0S4 Peptidase M16 0.000469493692399 0.000351568890229 -47607689736.1 +UniRef50_UPI0002EDB6DA hypothetical protein 7.7083630768e-05 0.000144628714395 27268779131.6 +UniRef50_C0P8W3 2.30967847119e-05 2.80874434628e-05 2014790180.01 +UniRef50_M4WUF5 0.000148426917094 0.000117084282232 -12653406311.2 +UniRef50_UPI00037D4258 hypothetical protein 0.004240520582 0.00236773269547 -7.56067451484e+11 +UniRef50_UPI000380CC39 hypothetical protein 2.24558682685e-05 0.000224591615183 81604681514.1 +UniRef50_B9T8B0 4.12408609019e-05 8.60050235732e-06 -13177313286.7 +UniRef50_Q8ZBY6 Acyl coenzyme A dehydrogenase 0.00201516242167 0.000318566984978 -6.84936397359e+11 +UniRef50_UPI000476F4CB ATPase P 4.09500726938e-06 0.000153035889006 60129261667.4 +UniRef50_UPI0002DC070B hypothetical protein 1.30842289681e-05 0.000700175960592 2.7738736362e+11 +UniRef50_A6TLH7 Electron transfer flavoprotein, alpha subunit like protein 4.72161977211e-06 7.61534739281e-06 1168233350.51 +UniRef50_W5X2T3 PAS PAC sensor signal transduction histidine kinase 0.000130823131346 8.4483527255e-05 -18707866822.4 +UniRef50_Q88GV8 0.000192573175068 4.66856678433e-05 -58896576907.8 +UniRef50_F4AJ46 Peptidase M24 0.000185953689091 0.000392488313224 83380562227.3 +UniRef50_UPI000367681C hypothetical protein 1.73858808707e-05 8.20919341188e-06 -3704741337.74 +UniRef50_A9M0F1 Lipoprotein 1.00069625113e-05 0.00262745013248 1.05669392736e+12 +UniRef50_A5UN02 Predicted RNA binding protein 0.00345593901787 0.000298802737126 -1.27457465895e+12 +UniRef50_L8ME45 2.45392808487e-05 2.43777178331e-05 -65224971.9989 +UniRef50_UPI0001FFE55B large conductance mechanosensitive channel, partial 3.03324270148e-05 2.33083961723e-05 -2835687445.67 +UniRef50_B9EB85 Signal peptidase I 0.0700970244098 0.0233782198032 -1.88609547239e+13 +UniRef50_R5TSV1 Phosphoglucomutase phosphomannomutase family protein 8.04302533035e-05 0.00578139942827 2.30155121469e+12 +UniRef50_E3DAW5 Transposase of insertion element IS911A 2.94643236828e-05 6.97937974018e-05 16281503438.7 +UniRef50_M9S895 Glycosyl transferase 0.00071670502361 0.000147535406424 -2.29780758955e+11 +UniRef50_S5DC92 0.000159501122048 0.00568037415438 2.22884419188e+12 +UniRef50_Q53554 Citrate synthase 1.97364103883e-05 2.67283437677e-05 2822729305.93 +UniRef50_A0A011R9T0 Cyclolysin 2.15217698048e-05 4.71279253878e-06 -6785990391.63 +UniRef50_I1ZNE0 SpoU rRNA methylase family protein 0.00949442730922 0.00444242804509 -2.03955409793e+12 +UniRef50_UPI000289013C enoyl CoA hydratase 1.14525905737e-05 1.88313456746e-05 2978893981.74 +UniRef50_R7D190 6 phosphogluconate dehydrogenase 0.00012796135215 0.000731948967574 2.43837212108e+11 +UniRef50_A0A016QRP5 4.43528600823e-06 0.0005974070917 2.3938999454e+11 +UniRef50_P13510 Cobalt zinc cadmium resistance protein CzcB 0.000106134767253 0.000417998563486 1.25903241538e+11 +UniRef50_A4WRH7 0.000333931582955 0.000157447247136 -71248892076.5 +UniRef50_F2E7K1 Predicted protein 6.7904108613e-05 7.48491993067e-05 2803818338.89 +UniRef50_P34107 Superoxide dismutase [Fe] 1.03293699876e-05 1.16852801753e-05 547397581.664 +UniRef50_UPI0004423401 PREDICTED 0.000557195265686 0.0012944890027 2.97654529244e+11 +UniRef50_C9LYG0 Lipoprotein 0.000335266072023 0.00064281895211 1.24162871789e+11 +UniRef50_Q9HXK5 2 isopropylmalate synthase 0.00200916904916 0.00874221048132 2.71821144987e+12 +UniRef50_UPI00047437D2 hypothetical protein 5.57461330627e-06 8.00865325031e-05 30081376143.8 +UniRef50_A6M2U6 Response regulator receiver protein 0.0157892387145 0.000805409195995 -6.04915584888e+12 +UniRef50_UPI0001FFE930 peptide ABC transporter ATP binding protein 6.93823201299e-06 1.29976423518e-05 2446258311.1 +UniRef50_M0QW80 Protein Gm26571 5.9704915627e-05 0.00013691602474 31171072235.8 +UniRef50_F8H984 Two component sensor 0.000796705380501 0.000765641599191 -12540829710.3 +UniRef50_L8NI67 0.000880181536158 2.48026924754e-05 -3.45326935874e+11 +UniRef50_P45868 Probable NAD dependent malic enzyme 2 6.70093471299e-05 0.00813897742778 3.25875256835e+12 +UniRef50_A5I0L6 Cyclic nucleotide binding domain protein 0.000329682086335 0.00082334917808 1.99299462914e+11 +UniRef50_X2H6U2 Two component system histidine kinase 0.000170231443998 0.00157595063205 5.6750608633e+11 +UniRef50_B6J695 NADH quinone oxidoreductase subunit B 4.69843950471e-05 0.000149777612459 41498883283.9 +UniRef50_V4YKS4 DNA directed RNA polymerase 0.000201189692619 0.00859336482555 3.38802408473e+12 +UniRef50_L9TGP7 Exonuclease V subunit beta 0.00308265853862 0.00118325238587 -7.668135722e+11 +UniRef50_Q6GE63 0.0151652193927 0.0010687929148 -5.69090035173e+12 +UniRef50_D4HD09 7.75125233802e-05 0.00058085561343 2.03205782167e+11 +UniRef50_UPI0003635A0A hypothetical protein 1.59214330895e-05 1.63979885134e-05 192391272.621 +UniRef50_C0QFA3 PstS1 8.17862377826e-06 8.98200190359e-06 324333607.754 +UniRef50_A6M264 Lantibiotic modifying like protein 0.000117093750791 0.00152073231466 5.66666112816e+11 +UniRef50_UPI0001850C5F exsB protein 0.000105394585716 1.93409763765e-05 -34740898086.9 +UniRef50_B4U3E4 Histidine protein kinase 0.00325160366933 0.00148515355014 -7.13137589898e+11 +UniRef50_R4QKT1 Fibronectin 0.000137434219241 0.00218021209411 8.24694495788e+11 +UniRef50_F2UJQ2 3.11738797491e-05 4.33162780722e-05 4902035207.02 +UniRef50_UPI0003B71026 MerR family transcriptional regulator 8.57997512137e-05 0.000921781003275 3.37495890101e+11 +UniRef50_M4S432 LysR family transcriptional regulator 0.000354053911814 0.00874173380978 3.38620930322e+12 +UniRef50_V4PX87 2.59364552135e-05 2.69536001639e-05 410633898.249 +UniRef50_A6LXR1 0.000431554443823 0.000562278508468 52774909061.9 +UniRef50_A6LX56 PAS PAC sensor signal transduction histidine kinase 0.000242967424109 0.000695364885176 1.82638406574e+11 +UniRef50_G8V9G8 Luciferase family oxidoreductase, group 1 0.000163886825841 0.00491061912461 1.91631407797e+12 +UniRef50_B9DIP6 Pseudouridine synthase 0.0110775720678 0.00844545331001 -1.06261864225e+12 +UniRef50_UPI00034DB930 hypothetical protein 2.57171408444e-06 1.12304112018e-05 3495622280.44 +UniRef50_Q0FVR8 7.29873637411e-05 0.000131633456649 23676147375.4 +UniRef50_Q7V5R2 Fumarate hydratase class II 7.30019021005e-06 1.31343062525e-05 2355304238.99 +UniRef50_B2IAX9 Tyrosine tRNA ligase 0.00761203348401 0.00244901056399 -2.08437571023e+12 +UniRef50_D3A3L2 1.26825838155e-05 7.11301881401e-05 23596015098.6 +UniRef50_H1KT40 0.00290318737689 0.00105163999278 -7.47492400007e+11 +UniRef50_Q2JKE8 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 3.64322486192e-06 3.70735589038e-06 25890483.1655 +UniRef50_A3VLI2 Replication initiator RepC 0.000230453306088 7.71870186729e-05 -61875481018.3 +UniRef50_UPI00035F5471 hypothetical protein 1.27245397751e-05 5.60399985577e-05 17486982251.0 +UniRef50_P44270 0.000264592982837 0.0029445705021 1.08193981155e+12 +UniRef50_N6WGS6 Glycolate oxidase iron sulfur subunit 5.94651311854e-05 0.000180123734392 48711358762.2 +UniRef50_UPI0003637414 hypothetical protein 2.90185171882e-06 9.13743986684e-06 2517383454.63 +UniRef50_B9ADC4 CRISPR associated endonuclease Cas1 0.00228873926688 0.000319261302914 -7.95102422267e+11 +UniRef50_Q28KP2 N acetylmuramic acid 6 phosphate etherase 0.00321927078461 0.000947854742547 -9.16998529589e+11 +UniRef50_O32507 Succinate semialdehyde dehydrogenase [NADP] 4.0595132169e-06 0.0369246351424 1.49052894479e+13 +UniRef50_Q8KBK4 50S ribosomal protein L13 0.00061383806848 0.00266548780668 8.28276175885e+11 +UniRef50_UPI0002378E6D type II secretion system protein E 3.92166305184e-05 1.83717811655e-05 -8415321478.83 +UniRef50_P32135 Inner membrane protein YihN 0.00179553623626 0.00113263184739 -2.67622636538e+11 +UniRef50_B7GVD0 LysR substrate binding domain protein 0.000247638574341 0.0118613511056 4.68859826516e+12 +UniRef50_A6M010 GCN5 related N acetyltransferase 0.000226491593311 0.00166791829766 5.81921648841e+11 +UniRef50_F8G3F6 TetR family transcriptional regulator 0.000965146910892 0.000284414162307 -2.74820164134e+11 +UniRef50_UPI00047242E7 3 hydroxybutyryl CoA dehydrogenase 1.47167077255e-05 3.03264893491e-05 6301860395.01 +UniRef50_A8B6F6 3.55149838826e-05 2.53285854649e-05 -4112374042.39 +UniRef50_C5L3X3 Cysteine synthase, putative 0.00807227220333 0.00120342180401 -2.77303919648e+12 +UniRef50_UPI0002EB3FDF hypothetical protein 6.69042830817e-06 3.16499317672e-05 10076457833.9 +UniRef50_Q6F7U5 0.000200790419604 0.00458029509603 1.76805978044e+12 +UniRef50_Q9I676 D hydantoinase dihydropyrimidinase 0.00511537562015 0.00130846340369 -1.53689717785e+12 +UniRef50_UPI00041336EE alkylhydroperoxidase 6.76031610453e-05 5.01882416977e-05 -7030616645.72 +UniRef50_Q3BPQ5 0.0016517012413 1.94127552044e-05 -6.58974892271e+11 +UniRef50_F7W5G6 WGS project CABT00000000 data, contig 2.30 9.08206131398e-05 2.532379795e-05 -26441868028.4 +UniRef50_O34808 Uronate isomerase 0.000377522927091 0.00134205138309 3.89391973782e+11 +UniRef50_UPI000362A126 hypothetical protein 2.03913702504e-05 2.79775292489e-05 3062625480.33 +UniRef50_UPI000373C086 hypothetical protein 9.60690850746e-06 0.000191478854448 73423936396.1 +UniRef50_A6M385 Response regulator receiver protein 0.000279243089872 0.00160011816692 5.33253477565e+11 +UniRef50_UPI0004560391 hypothetical protein PFL1_05761 9.48782743802e-06 1.03893234915e-05 363945019.39 +UniRef50_D6SI05 9.45418269506e-05 7.19506100539e-05 -9120351486.6 +UniRef50_W7VQI3 Basic proline rich protein 0.000324458933387 0.000233759924953 -36616302706.8 +UniRef50_C1AFW3 Cobyrinic acid a,c diamide adenosyltransferase 0.000420988091661 0.00615147218567 2.3134667497e+12 +UniRef50_UPI000474482D hypothetical protein, partial 4.8799441215e-05 7.01148922844e-05 8605309166.72 +UniRef50_Q97IA9 UPF0348 protein CA_C1741 0.000530770698644 0.00136149150242 3.35372182575e+11 +UniRef50_UPI00042BA8AC PREDICTED 4.20936786899e-06 8.03451239949e-06 1544257786.76 +UniRef50_UPI0001BC2D00 helicase 1.83468362206e-05 1.72958481906e-05 -424296764.784 +UniRef50_P21517 Maltodextrin glucosidase 0.00128397278196 0.000468616028117 -3.29169527079e+11 +UniRef50_H3VA72 PF04394 family protein 0.0034541003871 0.001163868767 -9.24594609337e+11 +UniRef50_UPI00044163EB hypothetical protein PUNSTDRAFT_130809 3.15292419561e-06 1.42937091592e-05 4497671602.61 +UniRef50_E3CRS2 6.67433513938e-05 0.000100156663863 13489364271.3 +UniRef50_Q6FC54 DNA mismatch repair protein MutS 4.44101163304e-05 0.00707147443315 2.83691209648e+12 +UniRef50_UPI00032905A5 PREDICTED 3.68416892952e-05 2.85016180189e-06 -13722796772.0 +UniRef50_E5API3 Transposase 0.000221659388509 1.12396165602e-05 -84949044076.8 +UniRef50_Q3IUX0 0.00886254944158 0.0308796085115 8.88855692622e+12 +UniRef50_UPI00047647D3 hypothetical protein 0.00910473193407 0.00054309287487 -3.45643875132e+12 +UniRef50_O27047 tRNA 2 agmatinylcytidine synthetase TiaS 0.00282869476521 0.000669285643586 -8.71779961328e+11 +UniRef50_E3A3J4 Fimbrial subunit CupA4 0.000657234504483 0.000662817636785 2253979023.06 +UniRef50_UPI00047BE124 sulfite oxidase 5.79121391884e-05 1.67979497185e-05 -16598302816.8 +UniRef50_P54954 Probable amino acid import ATP binding protein YxeO 8.15265684097e-05 0.00382811443517 1.51254349761e+12 +UniRef50_Q9X3Y6 DNA gyrase subunit B 0.000214882968851 0.00511277747173 1.97734011474e+12 +UniRef50_UPI000381C95D hypothetical protein 1.96172913023e-05 1.16112093236e-05 -3232153540.48 +UniRef50_N8PPS0 0.000383372504894 0.00848735799787 3.2716783906e+12 +UniRef50_Q2S2A1 Imidazoleglycerol phosphate dehydratase 0.0062062804444 0.00280114894422 -1.37469337229e+12 +UniRef50_F2F5B1 Predicted acetamidase formamidase 0.00142387186085 0.000770110546665 -2.6393146509e+11 +UniRef50_P75859 0.00240530100595 0.000393755606923 -8.12085562026e+11 +UniRef50_C6SRL3 0.00495608320902 0.00113958131605 -1.54076864794e+12 +UniRef50_P58356 Sensor protein TorS 0.00366918755646 0.000363692462295 -1.3344689325e+12 +UniRef50_M2HZ79 Putative transposase, IS150 like protein 0.00109552298365 0.00127724543838 73363584959.8 +UniRef50_A0A017HPG3 0.000904025779242 0.000356942450676 -2.20864253209e+11 +UniRef50_P20712 Bifunctional dihydrofolate reductase thymidylate synthase 5.12073118583e-06 2.4129427053e-05 7674043784.52 +UniRef50_Q48BK0 Glucans biosynthesis protein D 1.53915406961e-05 1.52418596176e-05 -60428088.1838 +UniRef50_K7S7X3 1.48883121388e-05 2.02888098596e-05 2180247201.45 +UniRef50_C8RX73 Flagellar FlaF family protein 0.000167318378477 0.000165757425253 -630175971.579 +UniRef50_Q5FUN5 50S ribosomal protein L32 0.00209714438251 0.000978950403971 -4.5142863092e+11 +UniRef50_Q3JHB3 3.27857395839e-05 7.34097109433e-05 16400395750.0 +UniRef50_C6S564 ATPase involved in chromosome partitioning 0.00011257037441 0.00416988611967 1.63798815522e+12 +UniRef50_B0VRQ2 7.1000499465e-05 0.00646945647554 2.58313519543e+12 +UniRef50_F9WBG1 WGS project CAEQ00000000 data, annotated contig 2102 6.10418093335e-07 1.18630956615e-06 232494454.558 +UniRef50_M9VFS0 Beta galactosidase 0.000123862344655 0.00633195477416 2.50628309565e+12 +UniRef50_UPI00038210EB hypothetical protein 0.000237210850672 4.61895850905e-05 -77117629010.0 +UniRef50_Q5XAF5 PTS system mannose specific EIIAB component 0.00552220298693 0.00554790947272 10378023767.5 +UniRef50_UPI0003B66035 preprotein translocase subunit TatA 9.55732753513e-05 6.86300217818e-05 -10877322096.9 +UniRef50_A8LLI4 Transcriptional regulator 0.0143903698112 0.000388574612093 -5.65269654323e+12 +UniRef50_UPI00036B21D8 hypothetical protein 1.18102176627e-05 8.63653118435e-06 -1281256176.82 +UniRef50_P0A9G7 Isocitrate lyase 0.00406611707766 0.0364770124365 1.30846761828e+13 +UniRef50_Q726S7 Phosphate acetyltransferase 3.82973365645e-06 1.31027200223e-05 3743618388.23 +UniRef50_Q57083 HTH type transcriptional regulator PerR 0.00330879058509 0.0015641985692 -7.04313205366e+11 +UniRef50_N4K7E1 Intergenic region domain protein 0.000526200647601 0.0006396751737 45811058675.2 +UniRef50_UPI00029A45C7 alkyl hydroperoxide reductase thiol specific antioxidant mal allergen 6.75623760359e-06 0.00033362896853 1.31962532654e+11 +UniRef50_P0AEX1 1 phosphofructokinase 0.00166472052111 0.000496883622962 -4.71470086753e+11 +UniRef50_J9CDN0 2.25505843576e-05 0.000186497259647 66187284666.1 +UniRef50_Q9I399 0.000228569321711 0.000416917701458 76038552198.4 +UniRef50_D8JJR4 Indoleacetamide hydrolase (Indole 3 acetamidehydrolase) 9.92513555255e-05 0.00832622448222 3.32133000756e+12 +UniRef50_UPI00039D5255 cation 5.28631549336e-05 9.35584788275e-05 16429201643.7 +UniRef50_UPI000369419C hypothetical protein 3.05585062349e-07 4.39177225311e-06 1649643912.07 +UniRef50_UPI00040205B3 hypothetical protein 1.77045770218e-05 2.59565185919e-05 3331410074.56 +UniRef50_UPI0002DD9DEF hypothetical protein 1.98681123168e-06 0.000397944536964 1.59852992826e+11 +UniRef50_Q3A6U9 Flotillin band_7_stomatin like domain protein 0.000379446938613 0.00388060305515 1.41345968826e+12 +UniRef50_H2J1V2 ABC type dipeptide oligopeptide nickel transport system, permease component 0.0104684002547 0.00154426802674 -3.60278169184e+12 +UniRef50_B0R6S2 Glycerol kinase 9.40084142776e-06 8.94217569414e-05 32305425559.9 +UniRef50_UPI000345EF10 hypothetical protein 2.09841306288e-05 4.23716354448e-05 8634398148.42 +UniRef50_UPI00035FBF65 hypothetical protein 9.62833370623e-06 0.000311324140237 1.2179829932e+11 +UniRef50_R9SJL7 Precorrin 6y C5,15 methyltransferase CbiE 0.00276703466835 0.00220302988858 -2.2769565071e+11 +UniRef50_UPI0004714D3A NADH dehydrogenase 0.000240732262149 0.000191502405819 -19874697118.7 +UniRef50_W9A1H3 0.000141607432314 0.000161604499835 8073061549.84 +UniRef50_Q0RAT5 Spermidine putrescine import ATP binding protein PotA 5.54537504897e-05 6.35948160311e-05 3286648061.17 +UniRef50_W7HYY6 2.89944484927e-06 3.5577540296e-05 13192548137.2 +UniRef50_UPI000470BDCC ABC transporter permease 9.59655943502e-05 2.47907956537e-05 -28734139646.8 +UniRef50_M9VFR5 D alanine D alanine ligase 0.000434178863226 0.00404067806697 1.45598798527e+12 +UniRef50_I0EM51 Zinc protease 8.75160715986e-05 0.00355021791245 1.39793522528e+12 +UniRef50_A6LYZ9 Peptidase C45, acyl coenzyme A 0.000103610060989 0.00103244253139 3.74981066357e+11 +UniRef50_B0I1W2 0.00738657644376 0.00877093063844 5.58880776329e+11 +UniRef50_Q8CS09 DNA topoisomerase 0.0100096381826 0.00315384583435 -2.76776750102e+12 +UniRef50_A9CR98 0.005501777326 0.000939029469613 -1.84203730084e+12 +UniRef50_D4U0U9 Cell wall binding repeat protein 2.16064499154e-05 0.000867345646852 3.4143529219e+11 +UniRef50_A9CR91 0.000775656141478 0.00158205377784 3.25552621411e+11 +UniRef50_A0A023S1K2 ABC transporter substrate binding protein 0.000487586068939 0.00813239015291 3.08630122099e+12 +UniRef50_UPI0003B30E52 organic solvent ABC transporter ATP binding protein 9.79427308235e-05 2.7827318037e-05 -28306452554.8 +UniRef50_Q9I024 7.95767266761e-06 0.000267427461059 1.04751137626e+11 +UniRef50_Q52282 Putative protein KleG 8.69561404066e-05 0.00111536420528 4.15180955774e+11 +UniRef50_UPI0004784EFD hypothetical protein, partial 1.40560501389e-05 2.03070045285e-06 -4854781235.91 +UniRef50_UPI000478461E zinc binding protein 1.27069862803e-05 4.33439134787e-05 12368503467.4 +UniRef50_D8JNP8 Xylanase chitin deacetylase 0.0003945667096 0.00837177758103 3.22049792018e+12 +UniRef50_UPI000248C70B chemotaxis protein CheY 5.89487244187e-06 2.24819804161e-05 6696419035.89 +UniRef50_P76056 Putative lambdoid prophage Rac integrase 0.00315295215498 0.00456038663251 5.68198569742e+11 +UniRef50_A6QIJ7 Endodeoxyribonuclease RusA 0.00974354191081 0.00101310797225 -3.52458331547e+12 +UniRef50_D3JD05 Spermidine N acetyltransferase 0.0114905674303 0.00963653962298 -7.48493777295e+11 +UniRef50_UPI00047076F4 hypothetical protein, partial 5.73127305683e-06 7.8917831603e-06 872224441.211 +UniRef50_Q7XUN3 OSJNBa0064M23.10 protein 8.87556271456e-05 1.04342488347e-05 -31619301535.5 +UniRef50_A0A059DVD1 0.0001409944013 3.12750485673e-05 -44295049106.2 +UniRef50_UPI000288E019 sulfate ABC transporter membrane protein 7.79318589304e-05 0.0011003091503 4.12746258506e+11 +UniRef50_UPI0003B6935E hypothetical protein, partial 9.32422163195e-06 1.93674835256e-05 4054588071.17 +UniRef50_Q0C1E4 NADH quinone oxidoreductase subunit D 3.79463021475e-05 7.18210537235e-05 13675652901.2 +UniRef50_UPI000373A2A8 hypothetical protein 6.69850194074e-06 1.41749897706e-05 3018349883.74 +UniRef50_S2TS61 Hydantoin utilization protein A 7.10570824329e-06 1.5850383438e-05 3530332685.34 +UniRef50_W4PJR5 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.000213624823735 0.00019947411488 -5712814813.49 +UniRef50_Q5SJB6 Membrane lipoprotein 0.000104374006137 0.0404368926637 1.62827327177e+13 +UniRef50_UPI0004702CE7 hypothetical protein, partial 1.06970698258e-05 0.000129899702666 48123565658.3 +UniRef50_O07084 Cadmium, cobalt and zinc H K(+) antiporter 0.0140655539784 0.00468497082314 -3.78705653248e+12 +UniRef50_UPI0003F0E976 PREDICTED 4.71417691862e-06 7.29928382084e-07 -1608490026.43 +UniRef50_UPI00037CFCEC hypothetical protein 2.56147191602e-05 2.98218650096e-05 1698476406.89 +UniRef50_UPI00047A74FB hypothetical protein 1.26699819705e-05 2.39003794814e-05 4533849287.63 +UniRef50_F4CWU8 Cell envelope related transcriptional attenuator 7.91737377942e-05 7.25037726058e-05 -2692746796.23 +UniRef50_UPI0003724082 hypothetical protein 3.12326353603e-06 1.11746234723e-05 3250432807.57 +UniRef50_A4X015 0.00231209691715 0.000518600874398 -7.2405636113e+11 +UniRef50_A5IQC1 LmbE family protein 0.0188806080329 0.00618837815922 -5.12400895119e+12 +UniRef50_A5ZX27 0.000150624019712 0.000228650594716 31500285822.9 +UniRef50_Q989X5 Msl6246 protein 0.000211870472886 0.000311680074788 40294361089.4 +UniRef50_P27241 Lipopolysaccharide core biosynthesis protein RfaZ 0.000976340616286 0.00178001823852 3.24454518329e+11 +UniRef50_UPI000468A625 ABC transporter ATP binding protein 2.96059481515e-05 1.26753101335e-05 -6835106330.16 +UniRef50_L7WYU2 Aldo keto reductase 0.0153542038489 0.00637945666426 -3.62321557097e+12 +UniRef50_UPI0002ED3852 hypothetical protein 4.51884115782e-06 1.50426395766e-05 4248586563.2 +UniRef50_B3HH44 Tail protein 1.67314421091e-05 1.9682711682e-05 1191463742.73 +UniRef50_F5M3A2 Transposase IS116 IS110 IS902 0.00219003295135 0.00233164559305 57170761236.8 +UniRef50_Q2NHQ3 Probable cobyrinic acid A,C diamide synthase 0.00289056898019 0.00111411570605 -7.17175986303e+11 +UniRef50_UPI000237D266 carboxymuconolactone decarboxylase 4.28729914398e-05 0.000110021053441 27108496629.3 +UniRef50_D7CX06 Lysine biosynthesis enzyme LysX 0.000134977111625 0.0169099333639 6.77225569092e+12 +UniRef50_U1QU88 Rhamnan synthesis protein F 1.18882098503e-05 0.00332921994334 1.33924752905e+12 +UniRef50_W0R6T6 Glutamine tRNA ligase 0.000118488940003 9.26726062326e-05 -10422370745.2 +UniRef50_D6SHR9 C4 dicarboxylate transporter malic acid transport protein 0.00746210946698 0.000668772824989 -2.74255336599e+12 +UniRef50_UPI00036FEF96 hypothetical protein 2.65945332647e-06 5.4307625168e-05 20851000766.8 +UniRef50_Q3JJE8 Oxidoreductase, short chain dehydrogenase reductase family 0.000931631409754 0.0090824130777 3.29057058069e+12 +UniRef50_UPI0004663F41 calcium binding protein, partial 4.65340251205e-05 6.45410108432e-05 7269641106.82 +UniRef50_M2C9Y4 0.0046359595579 0.000702739344115 -1.58788926634e+12 +UniRef50_Q2CH95 ISSpo7, transposase 8.65420751798e-05 3.98931533181e-05 -18832742202.2 +UniRef50_A8LQ48 3.28438982311e-05 9.46479144264e-05 24951039758.6 +UniRef50_D4HAW2 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.000312156767467 0.00669283984319 2.57596005745e+12 +UniRef50_E8SJ70 Organic hydroperoxide resistance protein 0.00845402222539 0.00194442281051 -2.62800516555e+12 +UniRef50_Q8CRU1 0.0208980376172 0.00535415623644 -6.2752556583e+12 +UniRef50_R9YKU7 Na+ dependent nucleoside transporter family protein 0.0130965931634 0.00130294767671 -4.76123940729e+12 +UniRef50_UPI0004681F99 hypothetical protein 2.18201349041e-05 4.52877878434e-05 9474179472.08 +UniRef50_Q83JF8 0.000770725451415 0.000617459040989 -61875530679.3 +UniRef50_E8RC09 1.21507807391e-05 3.30418598477e-05 8433984998.51 +UniRef50_Q8CRU7 0.00905912877877 0.00250111982835 -2.6475486891e+12 +UniRef50_Q8CRU6 0.0202551760532 0.00700439190925 -5.3495041643e+12 +UniRef50_UPI000468FB82 ATPase 8.09673416179e-05 4.98072205115e-06 -30676730779.8 +UniRef50_Q6AAE4 Thiazole synthase 0.000294910928794 0.00589684684204 2.26157027166e+12 +UniRef50_F8DI84 ABC transporter, ATP binding protein 0.0078696013055 0.00512919794881 -1.10633446363e+12 +UniRef50_J9P994 0.000151128403931 0.000345113394584 78314121190.1 +UniRef50_B0N8M0 5.72681403756e-05 2.67043850895e-05 -12338963068.5 +UniRef50_P37353 2 succinylbenzoate CoA ligase 0.00220631883784 0.00094224191637 -5.10323365166e+11 +UniRef50_D3H4R6 0.000318106170376 0.000481494628027 65961925355.6 +UniRef50_A3K475 7.80425843399e-05 6.56087725053e-06 -28858042331.2 +UniRef50_P76037 Putrescine importer PuuP 0.00300800385047 0.000710053935861 -9.27710579545e+11 +UniRef50_Q2W0K2 ATPase involved in chromosome partitioning 0.0132786698995 0.00169783033703 -4.67532704426e+12 +UniRef50_A0A017HBN8 Polyhydroxyalkanoate depolymerase, intracellular 0.000184538549911 3.13817029099e-05 -61831298580.2 +UniRef50_A6LXH8 MORN repeat containing protein 0.000164601448628 0.00221318432562 8.2703804638e+11 +UniRef50_UPI00004C2754 COG1063 0.000118682454114 0.000251270480125 53527413138.7 +UniRef50_P22825 PTS system sucrose specific EIIBC component 0.0179015994423 0.00437863971091 -5.45938478894e+12 +UniRef50_M9VJF8 Phosphate transport system permease protein PstA 0.000214480675479 0.00454799722793 1.74949381045e+12 +UniRef50_V6ZI12 Pyridoxal phosphate dependent enzyme family protein 7.90139290404e-06 8.64466728953e-06 300068990.425 +UniRef50_O58855 Orotate phosphoribosyltransferase 0.00328111795697 0.000348113994329 -1.18408969172e+12 +UniRef50_A5N2B2 Phage related protein 0.000495367129679 0.00143118211249 3.77799992302e+11 +UniRef50_B5YH68 3 phosphoshikimate 1 carboxyvinyltransferase 3.98276657448e-06 7.01631016675e-06 1224678773.97 +UniRef50_A6LZC1 AraC type transcriptional regulator domain protein 0.00035687200642 0.00221010326777 7.48172201912e+11 +UniRef50_D6SEI0 Mannose 6 phosphate isomerase, class I 0.0220032198485 0.00870628829274 -5.36813444078e+12 +UniRef50_P15428 15 hydroxyprostaglandin dehydrogenase [NAD] 5.21341958627e-06 0.000270365116228 1.07044993712e+11 +UniRef50_Q4DJ07 Prostaglandin F synthase 0.00394190405067 0.00155506705056 -9.63595386728e+11 +UniRef50_Q53151 Flagellar M ring protein 0.000725442927608 0.000350083318107 -1.51537280536e+11 +UniRef50_J3M9R4 0.000175032143208 1.98746334431e-05 -62638990688.9 +UniRef50_M8HET6 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.000794453930614 0.00218137384537 5.5991658901e+11 +UniRef50_D5RKR4 0.000153893664641 0.000484679163936 1.3354216526e+11 +UniRef50_A1KRZ2 Phosphate acyltransferase 0.000453526844223 0.00364821947194 1.2897366171e+12 +UniRef50_A0A014H8V3 Thi4 family protein 2.99328774418e-05 0.000540495024715 2.06120204156e+11 +UniRef50_O83092 Ribonucleoside diphosphate reductase subunit beta 0.000109734299089 0.00697558362287 2.77182762546e+12 +UniRef50_B4RLX4 DNA mismatch repair protein MutL 0.000133621742511 0.00283707314926 1.09141650798e+12 +UniRef50_X8C7Q8 Cell envelope related transcriptional attenuator domain protein 2.11802092254e-05 3.41231306189e-05 5225216194.06 +UniRef50_F2E943 Predicted protein 0.000101244853536 0.000569742839604 1.89138386092e+11 +UniRef50_Q3J0Q8 Multisensor hybrid histidine kinase 0.00481944327022 0.00110707413718 -1.4987289749e+12 +UniRef50_Q57565 Signal recognition particle 54 kDa protein 0.00298199030185 0.000437834133528 -1.02710706546e+12 +UniRef50_UPI000474AE61 TetR family transcriptional regulator 1.82501648975e-05 8.07373830509e-05 25226856772.9 +UniRef50_M7DFK4 2 hydroxyglutaryl CoA dehydratase activator related protein 0.00589427502809 0.00350227862284 -9.65678301896e+11 +UniRef50_A0A038G1M9 0.000294123975044 0.00201150523929 6.93327891016e+11 +UniRef50_UPI00037E7CFC hypothetical protein 1.1237851448e-05 5.65156145869e-06 -2255253820.17 +UniRef50_UPI000424F639 hypothetical protein 1.28284449339e-05 2.02716643682e-05 3004919024.2 +UniRef50_UPI0003B51DAD aconitate hydratase 2.23554105722e-05 7.41590195195e-05 20913752633.8 +UniRef50_UPI00047DF06C RNA polymerase subunit sigma 24 9.49034262603e-05 6.90599778205e-05 -10433317269.9 +UniRef50_J1B9G8 0.00164774944455 2.9344579425e-05 -6.5336990411e+11 +UniRef50_S4RE69 0.00013570348689 3.72843634866e-05 -39733007856.4 +UniRef50_V9U3F4 Penicillin binding protein 0.000419767396092 0.00104802450963 2.53635106317e+11 +UniRef50_P26946 0.0100390637737 0.0039875222856 -2.44308155951e+12 +UniRef50_UPI0001B42DB2 3 methyl 2 oxobutanoate hydroxymethyltransferase, partial 0.000162202918645 4.98364829831e-05 -45363708968.0 +UniRef50_G7ZME4 Acetyltransferase family protein 0.00271225571149 0.00105470251856 -6.69174564451e+11 +UniRef50_I6SXG2 0.000680652124152 0.000992661193941 1.25961890256e+11 +UniRef50_J9P1W0 8.59253110526e-05 0.000181733357036 38678883860.4 +UniRef50_UPI000478FE81 ATP dependent DNA helicase PcrA 1.23646480308e-05 1.18578432176e-05 -204603322.283 +UniRef50_D4HCQ0 0.000569895014224 0.00193210233564 5.49939811821e+11 +UniRef50_R1DZ31 5.32492756502e-05 3.0180203605e-05 -9313267474.0 +UniRef50_W4ZID1 9.96005247615e-05 0.00583932096293 2.31719557518e+12 +UniRef50_Q3IUV9 TraU 0.023698888244 0.00727457943765 -6.63069501404e+12 +UniRef50_A0A017SU62 0.000212497233934 0.00019642443403 -6488786556.68 +UniRef50_R5RCL0 Chromosomal replication initiator 4.9091866844e-05 8.91886753909e-06 -16218332797.5 +UniRef50_UPI0003738950 hypothetical protein 0.00014720435024 0.000174121796513 10866903374.6 +UniRef50_UPI0003B5CBF4 thioredoxin 0.000295694953917 0.000181200916148 -46222648047.2 +UniRef50_A7IGI6 Appr 1 p processing domain protein 1.21413645436e-05 0.000179107407591 67406240481.8 +UniRef50_A0A059LGP9 6.09503749491e-05 0.0005346945478 1.91256336075e+11 +UniRef50_P35886 DNA gyrase subunit B 0.000452024604441 0.00932271560414 3.5812068122e+12 +UniRef50_Q6C7L4 Thioredoxin reductase 5.86665245226e-05 2.81184696662e-05 -12332624612.3 +UniRef50_K0B2S0 0.000245120771981 0.00511086831627 1.96436199307e+12 +UniRef50_UPI000360C821 MULTISPECIES 1.68230764177e-05 4.81168088911e-05 12633663816.8 +UniRef50_UPI00036ED5A7 hypothetical protein 3.41519815276e-05 7.73957714307e-06 -10663011766.7 +UniRef50_W0IKU6 5.52633853587e-05 6.6461075653e-05 4520644982.92 +UniRef50_I4MVU8 Membrane protein 0.000214690793282 5.948567076e-05 -62658212543.2 +UniRef50_V4R951 0.000126073244041 0.000273128680499 59368084271.2 +UniRef50_Q8FJC7 DNA translocase FtsK 2.97780164762e-05 9.53302382989e-05 26464236366.0 +UniRef50_UPI00040EF117 hypothetical protein 0.000151860625829 2.49074582914e-05 -51252551625.6 +UniRef50_M4X643 SAM dependent methyltransferase 0.000391946617829 0.000298059150193 -37903522813.4 +UniRef50_H6VX66 0.000157625183536 0.0109747634241 4.36701144894e+12 +UniRef50_B8IA33 Fumarylacetoacetate hydrolase 0.0160042483505 0.00130551539799 -5.93405886666e+12 +UniRef50_A1T726 2.28465553048e-05 4.17149733653e-05 7617411912.55 +UniRef50_T1YCU2 Siderophore synthase 0.00412571744192 0.000995686157226 -1.26363203943e+12 +UniRef50_Q85FX6 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 4.55765306074e-05 2.6282608798e-05 -7789192997.5 +UniRef50_I1ZJT5 Competence protein ComYD 1.12681524106e-05 4.25625392314e-05 12633927984.9 +UniRef50_P45857 Acyl CoA dehydrogenase 0.00120863770361 0.00612752978245 1.98581709382e+12 +UniRef50_Q3JIW0 2.14590229815e-05 0.000110696815719 36026391999.0 +UniRef50_F8M7U6 PE PGRS family protein 5.8006759245e-06 6.03249372757e-05 22012113395.4 +UniRef50_F4D588 Type I restriction modification system, M subunit 0.000139486422152 0.00297363532628 1.14418069152e+12 +UniRef50_UPI0002484AC1 patatin family phospholipase 1.07279676391e-05 3.65023817433e-05 10405447261.5 +UniRef50_Q57609 GTP cyclohydrolase III 0.00191365931277 0.00186878444584 -18116534456.2 +UniRef50_S5XQ93 8.56010614182e-05 3.01400843818e-05 -22390277012.3 +UniRef50_Q8DBE9 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 0.00388600185752 0.0030267787823 -3.46878899319e+11 +UniRef50_J1LSW8 0.000252349393555 0.0111318420207 4.39218467995e+12 +UniRef50_U4UXP2 8.67849896899e-06 2.58459573864e-06 -2460183514.69 +UniRef50_A4VYZ2 ABC type sugar transport system, periplasmic component 0.00011005422415 0.000588996451395 1.93354854421e+11 +UniRef50_Q73WG1 Serine hydroxymethyltransferase 0.0388325848407 0.0808033939056 1.69441306592e+13 +UniRef50_Q4A0F8 ABC type transport system involved in lipoprotein release permease component 0.0229243076733 0.00431996528257 -7.51080132408e+12 +UniRef50_D9RM99 Phage N acetylglucosaminidase 0.0149220238362 0.00100972494741 -5.61656578451e+12 +UniRef50_A1A081 50S ribosomal protein L5 0.0167610836704 0.00301571026798 -5.54917591725e+12 +UniRef50_P44839 RutC family protein HI_0719 0.00146867967203 0.000217259795995 -5.05213560606e+11 +UniRef50_V7EMQ8 1.48617681167e-05 6.96244050155e-06 -3189055493.89 +UniRef50_UPI0002653244 PREDICTED 0.000204309426951 0.00015149470491 -21321951397.5 +UniRef50_UPI000362C6BE hypothetical protein 7.01205917876e-06 0.000135489938019 51868096288.6 +UniRef50_Q6D734 Fe ions import ATP binding protein FbpC 1 0.00397103455162 0.00144373426971 -1.02030213727e+12 +UniRef50_P08064 Succinate dehydrogenase cytochrome b558 subunit 0.0195262250668 0.00478029374548 -5.95311342733e+12 +UniRef50_Q59638 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.0006128088198 0.000124714807971 -1.97049542162e+11 +UniRef50_UPI0003C1126B PREDICTED 1.37646937881e-05 6.01738145983e-06 -3127685057.14 +UniRef50_Q3ACC4 LexA repressor 9.14673504851e-05 1.92803224066e-05 -29142789069.7 +UniRef50_Q48QB2 Fatty acid desaturase 0.000398314730706 0.000394708023921 -1456071788.37 +UniRef50_UPI0003B5C4DC 30S ribosomal protein S3 0.000340321676898 0.000595262499083 1.02922738392e+11 +UniRef50_O31632 Cystathionine beta lyase MetC 6.96312354554e-05 0.000509088227462 1.77414180417e+11 +UniRef50_Q2G2P8 ADP dependent NAD(P)H hydrate dehydratase 0.0213170531994 0.0063032729479 -6.06124732733e+12 +UniRef50_K7SJI3 Transporter, major facilitator family protein 8.4574904144e-05 0.00721192155396 2.87739730491e+12 +UniRef50_UPI00035DD1FA diaminopimelate decarboxylase, partial 5.61477189877e-05 0.0024698542888 9.74442961743e+11 +UniRef50_Q58094 Putative transketolase N terminal section 0.000206005975062 0.000481678458582 1.11292364479e+11 +UniRef50_A1WVC8 DNA directed RNA polymerase subunit beta 6.58293198928e-06 1.33242092168e-05 2721536341.52 +UniRef50_UPI000347C25A hypothetical protein 2.93161369941e-06 1.1913038087e-06 -702584458.884 +UniRef50_Q9ZLS9 Transcription termination factor Rho 0.0131763709854 0.0153368314818 8.72204414228e+11 +UniRef50_T1Y682 Transporter 0.0248764651984 0.00655874741448 -7.39508745304e+12 +UniRef50_H1Z450 AMP dependent synthetase and ligase 0.00229690689784 0.000842616402564 -5.87114919096e+11 +UniRef50_Q58575 Chorismate synthase 4.79627776568e-06 2.53921610327e-05 8314810814.8 +UniRef50_B9KRV4 Outer membrane protein 0.0107642216899 0.000738291762994 -4.04759094348e+12 +UniRef50_I4D2I9 Calcium proton exchanger Cax 0.00011257037441 0.000955485161652 3.40295043337e+11 +UniRef50_F3WH46 Pertactin family protein 0.00179063917586 0.000228337658653 -6.30720294093e+11 +UniRef50_F8G2I2 ppGpp synthetase I, SpoT RelA 0.000935885431234 0.00106640765046 52693421589.3 +UniRef50_Q45223 3 hydroxybutyryl CoA dehydrogenase 0.000174933492712 0.00357056113726 1.37085654914e+12 +UniRef50_Q9RYC5 0.000116030529356 0.0574548466078 2.31483836772e+13 +UniRef50_F9Y8G5 4 hydroxybenzoate polyprenyl transferase 0.0061269702069 0.00173893788458 -1.77150249573e+12 +UniRef50_Q8DW77 0.00526456765524 0.00175934535362 -1.41510125708e+12 +UniRef50_Q8DW75 0.00246584663068 0.000965087271884 -6.05874969536e+11 +UniRef50_Q6FF92 50S ribosomal protein L10 0.00453623678777 0.012840420261 3.35250077193e+12 +UniRef50_Q8DW79 0.000462227741456 0.00101251441781 2.22157484021e+11 +UniRef50_P18416 Transposase for transposon Tn552 0.103830460453 0.0242464343416 -3.2129047947e+13 +UniRef50_R7B660 Dihydrodipicolinate reductase domain protein 0.00520935606531 0.00241088508415 -1.12977707619e+12 +UniRef50_UPI00046F0297 hypothetical protein 2.62615157897e-05 1.22483568634e-05 -5657284219.34 +UniRef50_UPI000475E0B3 hypothetical protein 2.32746264998e-05 5.84427383992e-05 14197798335.1 +UniRef50_UPI000382CD04 hypothetical protein, partial 0.000103012012927 1.63515756245e-05 -34985881982.2 +UniRef50_Q7VFL0 Lysine tRNA ligase 0.00016873147673 0.00404087269238 1.56323092527e+12 +UniRef50_Q9ZKB2 Glucose 6 phosphate 1 dehydrogenase 3.16108344428e-05 0.00338097321378 1.35217869384e+12 +UniRef50_P21264 Phosphoribosylaminoimidazole carboxylase 2.02610606337e-05 2.54830741858e-05 2108190952.3 +UniRef50_P96060 2 aminoethylphosphonate pyruvate transaminase 1.7863811812e-05 0.000632711060134 2.48221379172e+11 +UniRef50_L7ZNE5 ABC transporter ATP binding protein 0.000214374214012 0.000996377327045 3.15704252989e+11 +UniRef50_A8Z2F6 0.000920697533784 0.00135524898288 1.75433752546e+11 +UniRef50_T9L0J3 0.00179108882815 0.000199589497337 -6.42507809741e+11 +UniRef50_I4EST6 0.000500203806966 5.82184256462e-05 -1.78434922209e+11 +UniRef50_R5P601 Anthranilate synthase component II 1.33740539413e-05 4.2797390804e-05 11878562156.4 +UniRef50_B1ZAH8 Binding protein dependent transport systems inner membrane component 0.000290181611547 0.00618268683156 2.37887666649e+12 +UniRef50_A3PS89 Alpha beta hydrolase fold 0.0325916959504 0.00400769519733 -1.15397118692e+13 +UniRef50_A0A011M2C2 Lipopolysaccharide export system ATP binding protein LptB 1.22354986738e-05 5.78794618054e-05 18427028030.6 +UniRef50_D3V7P3 Multidrug resistance protein MdtB 0.000847193707175 0.00018700475792 -2.66526380244e+11 +UniRef50_B7M9X6 Adenosine deaminase 0.00293612082579 0.00760526813175 1.8849920643e+12 +UniRef50_UPI000370A178 hypothetical protein 1.11099132776e-05 2.63773023535e-05 6163632321.87 +UniRef50_J9YXD5 Amino acid amide ABC transporter membrane protein, 2, HAAT family 0.0055638105715 0.00135565897634 -1.69888243879e+12 +UniRef50_E9UN53 0.000163716853074 4.09078992645e-06 -64443000524.9 +UniRef50_O83658 Spermidine putrescine import ATP binding protein PotA 1.03368087302e-05 9.12794824028e-06 -488031814.167 +UniRef50_E1W4Y0 1.51741188907e-05 0.000554940802781 2.17910433968e+11 +UniRef50_E1W4Y6 0.000210203892207 0.000266183633431 22599708480.8 +UniRef50_Q8E4F9 Probable tRNA sulfurtransferase 0.00742815332759 0.00726385694108 -66328467377.5 +UniRef50_B7GPE3 Ribosomal RNA small subunit methyltransferase A 0.000370070964026 0.00452618126687 1.67787273047e+12 +UniRef50_UPI000359998F PREDICTED 2.54441259526e-06 5.0551769622e-07 -823126890.796 +UniRef50_R1DHJ6 0.000369869795461 0.000226485232255 -57886107692.7 +UniRef50_Q97FC1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 2 0.000546908666088 0.00142168546925 3.53158130155e+11 +UniRef50_H1C309 Cellulose synthase operon protein C 0.000566772463717 0.000637374183882 28502780811.1 +UniRef50_U6KCN1 4.6561534076e-06 4.27020120015e-05 15359579989.5 +UniRef50_UPI000371DD5B hypothetical protein 2.47538444773e-05 8.34763287353e-05 23706987500.9 +UniRef50_E8XUV9 Lysozyme 0.000406508886758 8.70284985912e-05 -1.28978153168e+11 +UniRef50_U5SV18 5.33913109406e-05 0.000121300913257 27415939799.7 +UniRef50_R7CJA9 Binding protein dependent transport system inner membrane component 0.000514506176723 0.000902026531548 1.56446722652e+11 +UniRef50_UPI00037382D8 ABC transporter permease 3.97907249998e-05 0.000190860152584 60988581746.0 +UniRef50_M9R962 0.000165550127556 3.60480907106e-05 -52281561443.0 +UniRef50_Q9RS94 0.000152212092278 0.0209032626466 8.3774537528e+12 +UniRef50_B0BPX9 DNA polymerase IV 0.00252879355514 0.000232519409964 -9.27034050862e+11 +UniRef50_Q9RS99 0.000137751984987 0.0415124518216 1.67034740487e+13 +UniRef50_UPI0004753E7E polyamine ABC transporter substrate binding protein 2.62758037287e-05 1.768057318e-05 -3470000047.85 +UniRef50_Q5FL50 Phosphoglycerate kinase 3.68887929331e-06 3.6694862858e-05 13324920594.0 +UniRef50_B7H3D4 FhuE receptor 6.69697200815e-05 0.00362576379561 1.43672883961e+12 +UniRef50_G0VME5 Citrate transporter 0.000784722294375 0.00262078420304 7.41240723539e+11 +UniRef50_A5UMK8 Arginine tRNA ligase 0.00315356095886 0.00115189207294 -8.08098292485e+11 +UniRef50_Q3JUL5 Benzoate transport protein 0.000231770764675 0.000954764302493 2.91881363346e+11 +UniRef50_Q9JZR3 23S rRNA methyltransferase RlmB 0.000153034860351 0.00294028169751 1.12524575153e+12 +UniRef50_UPI0003810BBD hypothetical protein 0.000116379072422 3.26480020593e-05 -33803260601.2 +UniRef50_P63342 Inner membrane transport protein YqeG 0.00295335552993 0.00138752174296 -6.32146314741e+11 +UniRef50_V6LYC7 0.000219895167655 0.000403932776796 74298241205.6 +UniRef50_Q55905 Phosphoenolpyruvate synthase 9.60800511635e-05 0.0500040139396 2.014844535e+13 +UniRef50_M4X1W1 5.41292857132e-05 0.00506257208906 2.02196982022e+12 +UniRef50_F2A9W7 0.000431543014717 0.000124333182531 -1.24024379142e+11 +UniRef50_F2A9W6 0.000485496315761 0.000265229639724 -88924360092.2 +UniRef50_K7A9D1 Inner membrane transport permease 0.000248346045292 0.00349636270585 1.31126418351e+12 +UniRef50_UPI00035C805A hypothetical protein 5.97272120369e-06 7.34791364041e-06 555182062.213 +UniRef50_UPI000369165B hypothetical protein 5.08913105609e-06 6.90038095399e-06 731223810.318 +UniRef50_P76002 Inhibitor of g type lysozyme 0.00125555758451 0.000456675317307 -3.22518574658e+11 +UniRef50_R5T4K7 Basic membrane protein A immunodominant antigen P39 0.000518420611702 0.00234080195559 7.35717711662e+11 +UniRef50_K2GDX3 0.000255532586744 7.5076281894e-05 -72852424715.8 +UniRef50_Q487E8 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.43705646096e-05 0.000118606543196 42081343674.5 +UniRef50_P46139 Probable diguanylate cyclase YfiN 0.00282136737505 8.83149217962e-06 -1.13545524961e+12 +UniRef50_UPI00046CFF5C sodium 1.12647131358e-05 0.000852755529669 3.39720168888e+11 +UniRef50_UPI00046EF3B8 hypothetical protein, partial 6.96024129732e-05 0.000169024971301 40138106848.9 +UniRef50_A3PQB2 Transcriptional regulator, LacI family 0.00379763213736 0.000542727143109 -1.31404508835e+12 +UniRef50_UPI0004632850 LysR family transcriptional regulator 4.40900824294e-05 1.86738286168e-05 -10260853556.7 +UniRef50_Q6DB92 Low affinity potassium transport system protein kup 6.68116794457e-05 0.00314883151536 1.24424922839e+12 +UniRef50_UPI000287F836 transposon Tn917 resolvase 1.08478437167e-05 7.32555037242e-05 25194738173.1 +UniRef50_C1DCE3 Probable chemoreceptor glutamine deamidase CheD 0.000124801105618 1.62496523971e-05 -43823553741.4 +UniRef50_U5MLL1 3 methylornithine synthase PylB 0.000209326796037 0.00209783918011 7.62415624102e+11 +UniRef50_UPI0003B7B4C4 ABC transporter 1.04254286395e-05 1.73081239331e-05 2778628550.2 +UniRef50_Q1AU97 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.61268729234e-05 2.73529827372e-05 4532118291.69 +UniRef50_K8B033 3.05646799428e-05 6.87953323833e-05 15434183533.1 +UniRef50_C5N619 Hydrolase, HD family 0.0297202808879 0.00287591532902 -1.08373997935e+13 +UniRef50_UPI00036B8F43 hypothetical protein 0.000120879174583 0.00232444794617 8.89607753921e+11 +UniRef50_P24893 Cytochrome c oxidase subunit 1 1.71276514181e-05 3.06467247363e-05 5457815796.24 +UniRef50_A1UR85 Holliday junction ATP dependent DNA helicase RuvA 2.34458687644e-05 1.11701225268e-05 -4955869396.47 +UniRef50_R4QAT2 Membrane protein required for colicin V production 0.000166783205682 0.00130056671512 4.57722315849e+11 +UniRef50_P96676 0.00139541660183 0.000307621567909 -4.3915620394e+11 +UniRef50_A4WVS1 0.000346808505299 0.000172410817933 -70406486489.9 +UniRef50_A6U922 8.29481660539e-05 3.63042056884e-05 -18830739185.3 +UniRef50_X1YLX5 1.18094687116e-05 3.27676245146e-05 8461064683.16 +UniRef50_Q5HKG8 Conserved domain protein 0.00485406931504 0.000415939021406 -1.79172766152e+12 +UniRef50_Q8CP81 Maltose maltodextrin transport permease 0.00745959039993 0.00578483868586 -6.76117818485e+11 +UniRef50_M4ZKD5 ADP heptose lps heptosyltransferase II 0.000221139773364 0.00299946755119 1.12164501783e+12 +UniRef50_B4RNI0 0.000149203948168 0.0058996704105 2.321533877e+12 +UniRef50_F4MUN4 DnaK suppressor protein 0.000147134128787 0.000195380462006 19477636769.6 +UniRef50_E4RMK3 Molybdenum cofactor synthesis domain protein 0.000486569551453 0.00179745599668 5.29220944325e+11 +UniRef50_P52235 Thiol 0.00294465705472 0.00221978428959 -2.92640030472e+11 +UniRef50_A7Z1S6 Cadmium, cobalt and zinc H K(+) antiporter 0.00829467770501 0.000836793205583 -3.01083949095e+12 +UniRef50_G2J491 Formate dehydrogenase, alpha subunit 0.00628879025298 0.0030187419961 -1.32015860931e+12 +UniRef50_O54408 GTP pyrophosphokinase 2.67326664106e-05 0.00130467029473 5.15919102611e+11 +UniRef50_D2NTC3 Threonine dehydrogenase 0.000402659675209 0.0113946600073 4.43760542108e+12 +UniRef50_G3XN37 0.00101731439954 0.00258903289983 6.34522045722e+11 +UniRef50_T2EB50 AAA domain family protein 0.000625066984903 0.000129430257935 -2.00094628824e+11 +UniRef50_B0T9Q7 Cobyrinic acid ac diamide synthase 7.23954200121e-06 9.66289236382e-05 36087590297.9 +UniRef50_F9Y9C1 0.00010417855499 2.57524749425e-06 -41018502048.9 +UniRef50_A3SVY2 0.000420892033417 0.00014234586935 -1.1245250458e+11 +UniRef50_Q6FEG4 Acyl CoA dehydrogenase 0.00044092189141 0.00131965177566 3.547540375e+11 +UniRef50_F5X205 GNAT family acetyltransferase 0.00287310901502 0.000333063953224 -1.02544736131e+12 +UniRef50_Q8TQ68 Aspartate tRNA ligase 0.00287598294181 0.0019677597241 -3.66660858142e+11 +UniRef50_W4K1D0 4.2231207862e-05 8.58672097447e-05 17616389434.0 +UniRef50_B5EXE3 UPF0758 protein YicR 0.00254445436623 0.000877821463386 -6.72840154762e+11 +UniRef50_D0S9A9 Excinuclease ABC, A subunit family protein 6.20494840218e-07 3.40172926792e-05 13482697112.4 +UniRef50_A2BXS2 0.000167762912531 6.03940638348e-05 -43346121782.5 +UniRef50_G8PGZ1 Rubrerythrin 0.00114742725143 0.000399411518114 -3.01983130725e+11 +UniRef50_H3WY71 0.000154899397491 0.000101151284814 -21698772651.2 +UniRef50_Q8X6C4 Xanthine dehydrogenase iron sulfur binding subunit 0.0057262632188 9.55719785765e-06 -2.30790437253e+12 +UniRef50_UPI0001AF2B31 LysR family transcriptional regulator 0.000455807503724 0.000280865905817 -70626069849.9 +UniRef50_F8DHP6 ABC transporter, permease protein 0.00601260649746 0.00554254826549 -1.89768276509e+11 +UniRef50_C9LYN2 Diaminopimelate decarboxylase 0.00798364433565 0.00147871398556 -2.6261202068e+12 +UniRef50_Q3JLX9 6.13355565863e-06 7.83798525705e-06 688099144.585 +UniRef50_F6AGQ7 HemY domain protein 0.000314791769769 0.000382754946241 27437568343.7 +UniRef50_Q61503 5 nucleotidase 2.7313881346e-05 2.68261863265e-05 -196888464.063 +UniRef50_G7SHI8 Phosphatase 0.0073741049642 0.00261223632849 -1.92242480294e+12 +UniRef50_C4RLJ2 4.33797350561e-05 6.13989249169e-05 7274568067.13 +UniRef50_W0H5K7 Serine threonine protein kinase 0.00075092718418 0.000179160791827 -2.30829108956e+11 +UniRef50_A0A055F483 PE PGRS family protein PE_PGRS6 5.24269515353e-06 4.69783558164e-05 16849198363.8 +UniRef50_H1LB61 6.89648139183e-05 1.01050670348e-05 -23762402107.2 +UniRef50_W4UK26 0.000235222506455 0.00449592019857 1.72009594295e+12 +UniRef50_UPI000470BCA6 RNA polymerase sigma 70 factor, partial 0.00024508163787 7.43715148851e-05 -68917771497.8 +UniRef50_A7K529 Trap transporter solute receptor, taxi family 0.0152917753311 0.00103865457336 -5.75415975534e+12 +UniRef50_Q9SIB9 Aconitate hydratase 2, mitochondrial 0.000149202737921 0.0442865745655 1.78187986333e+13 +UniRef50_UPI000375E9C9 hypothetical protein 5.10851337995e-06 1.05968755035e-05 2215719139.05 +UniRef50_O29757 Exosome complex component Rrp41 0.00392500596221 0.00157441357557 -9.48962991499e+11 +UniRef50_Q9JRT1 Phosphoadenosine phosphosulfate reductase 9.09720862102e-06 0.00508060624088 2.04743043074e+12 +UniRef50_UPI000467A91C alkaline phosphatase, partial 2.40574183757e-05 0.000139525093504 46615717396.9 +UniRef50_Q3IWD8 0.00383402105623 0.000366853049924 -1.39973827108e+12 +UniRef50_UPI000255A89F type IV pilus biogenesis stability protein PilW 4.7897552721e-06 1.81736912425e-05 5403259190.61 +UniRef50_UPI0003B2F6BE aspartyl glutamyl tRNA amidotransferase subunit B 1.71966044055e-05 4.56949446645e-05 11505129676.5 +UniRef50_UPI000376A46D hypothetical protein 6.40214219808e-06 3.80909968804e-05 12793179501.2 +UniRef50_P44914 dTDP glucose 4,6 dehydratase 7.79676901949e-06 1.66338729443e-05 3567647297.91 +UniRef50_UPI000472A285 multidrug ABC transporter ATP binding protein, partial 4.05435192647e-06 1.36816707216e-05 3886666738.08 +UniRef50_Q8XQG4 L aspartate oxidase 2 4.19091525915e-06 8.74353739104e-06 1837949421.6 +UniRef50_UPI000379010F hypothetical protein 2.1441090736e-05 2.80008316861e-05 2648247918.63 +UniRef50_G7U9P9 Transcriptional regulator 0.00036296729697 0.00405385045661 1.49005482378e+12 +UniRef50_R4ZW20 YfaA 0.0044119407745 0.000971962899638 -1.38876128136e+12 +UniRef50_F0J5L6 L sorbosone dehydrogenase 0.000275497146315 0.000149653735742 -50804529120.6 +UniRef50_P0A9A0 Ferritin 1 0.00193749913548 0.000794522227467 -4.61433803668e+11 +UniRef50_UPI000399D476 hemolysin expression modulating protein 1.32598977617e-05 7.96395584613e-06 -2138036739.83 +UniRef50_A5UP13 Permease, xanthine uracil vitamin C permease family 0.00240171134475 0.000957182627863 -5.83173969369e+11 +UniRef50_UPI000383E553 PREDICTED 1.27221266204e-05 8.72306524738e-05 30080006209.4 +UniRef50_H9K4X2 5.15271053613e-05 4.54424579714e-05 -2456446818.32 +UniRef50_Q5HN24 UPF0316 protein SERP1448 0.0108582554337 0.000978121816698 -3.98873118406e+12 +UniRef50_A0A029IUD7 Major Facilitator Superfamily protein 0.00224504877258 0.00131251868976 -3.76473837865e+11 +UniRef50_Q1J3T7 5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit 0.000704658589914 0.0406231344061 1.61155785418e+13 +UniRef50_P07129 Beta xylosidase 0.0026141908774 0.0037643316804 4.64325955986e+11 +UniRef50_D4HBL6 0.000669794694541 0.0069232613565 2.5246012301e+12 +UniRef50_F7V2B8 Serine pyruvate aminotransferase 0.000180327701681 0.00052725835155 1.4006016067e+11 +UniRef50_A0A024HIN5 Transcriptional regulator 0.000647506031278 0.0072190967899 2.65303183174e+12 +UniRef50_K0M4V6 0.00953326852359 0.000566102310275 -3.62015503982e+12 +UniRef50_A7X232 Anthranilate phosphoribosyltransferase 0.00761748851797 0.000371347250307 -2.92535614991e+12 +UniRef50_B9JGE0 1.72308081581e-05 7.29267359996e-05 22485129535.5 +UniRef50_W5YGZ9 0.000137818167212 3.31353646709e-05 -42261731988.2 +UniRef50_Q3JSJ3 5.1064696557e-06 0.000102540522637 39335322838.8 +UniRef50_F0KG04 0.000792453281958 0.00394549588024 1.27292198911e+12 +UniRef50_UPI00029A2946 endo 1,4 D glucanase 7.5788551158e-06 2.73733660396e-05 7991286965.9 +UniRef50_UPI0003714199 hypothetical protein 2.97164246694e-05 0.000391409332385 1.46019865316e+11 +UniRef50_A5UK18 0.00554873160905 0.000475040276462 -2.04831145216e+12 +UniRef50_UPI0002485E7A gluconate transporter 4.03587723368e-06 0.000150138213788 58983306144.1 +UniRef50_G8SGJ4 6.16819921255e-06 0.000143594943857 55480863228.6 +UniRef50_UPI0003C0FE99 PREDICTED 0.00010035359504 6.19967052099e-05 -15485147116.4 +UniRef50_Q3J099 Transcriptional regulator, HxlR family 0.00321777376035 0.00186405141247 -5.4651432388e+11 +UniRef50_Q9RVW0 DNA directed RNA polymerase subunit beta 0.000159427368944 0.0434378002333 1.74720102107e+13 +UniRef50_D0CTG3 1.69566472415e-05 6.07952414494e-06 -4391228071.41 +UniRef50_U6EYS7 Chemotaxis protein CheW 0.000252780796101 0.000399977478817 59425107118.9 +UniRef50_F0N6L8 0.000413305827211 0.00141126752413 4.02889383413e+11 +UniRef50_Q9RRC4 Arginine tRNA ligase 0.000104914971274 0.0334171756495 1.34485684232e+13 +UniRef50_N0B321 2.25281628562e-05 1.1530579234e-05 -4439859463.81 +UniRef50_U6A8Y3 Non ribosomal peptide synthetase modules related protein 6.59857201406e-05 0.000104571512175 15577557745.2 +UniRef50_UPI00028904E4 two component response regulator 1.29835264004e-05 1.26506539823e-05 -134384679.991 +UniRef50_F8JIF2 Recombination protein 0.000613275378259 0.000207969510703 -1.63626952395e+11 +UniRef50_UPI0002482319 hypothetical protein 7.74158406986e-05 8.42704791274e-05 2767301649.58 +UniRef50_U6EZC2 Transcriptional regulatory component of sensorytransduction system 0.000737916887843 0.00227179404699 6.19245031938e+11 +UniRef50_A9MHF6 0.0025991799967 0.000964300264889 -6.60021009962e+11 +UniRef50_Q895P9 16S rRNA MC 967 methyltransferase 9.91644454127e-05 0.000273020066435 70187647655.0 +UniRef50_UPI00047BB63F ABC transporter ATP binding protein 0.00018354529618 0.000106550970726 -31083554012.4 +UniRef50_H0DJE3 HTH domain protein 2.12496381283e-05 2.92288399119e-05 3221301675.86 +UniRef50_Q5HRV3 PAP2 family protein 0.0135542815494 0.00238987762634 -4.5072068664e+12 +UniRef50_A6VPG7 Hydroxyethylthiazole kinase 7.18508108971e-06 0.000865156529641 3.46373602274e+11 +UniRef50_UPI0003A5B886 chaperonin 9.09640796191e-06 9.35234104767e-06 103323327.373 +UniRef50_U5NV97 0.00302969116022 0.000112162173241 -1.17784225415e+12 +UniRef50_E3EXD3 Flagellar protein, putative 0.000241902573871 9.85308938737e-05 -57880906583.1 +UniRef50_R5K4V5 Indole 3 glycerol phosphate synthase 0.00327655201467 0.000234688772347 -1.22803751878e+12 +UniRef50_UPI00034C05DA hypothetical protein 2.55809434088e-06 2.21093917207e-06 -140150801.722 +UniRef50_Q9I6Q3 4 hydroxybenzoate transporter PcaK 0.000645601310283 0.00699666111386 2.56400077897e+12 +UniRef50_V8HPC0 Transposase 6.81747919664e-05 2.38226382092e-05 -17905508733.9 +UniRef50_R5VPY7 Phosphorylase 0.000242213525199 0.00171388127012 5.94130328018e+11 +UniRef50_Q57PU8 Phenylalanine tRNA ligase beta subunit 0.00407795171589 0.000640808398073 -1.3876169359e+12 +UniRef50_A6M2B6 PTS system, lactose cellobiose family IIC subunit 0.000229627019321 0.00150964229402 5.1675787395e+11 +UniRef50_F5X5Y4 Oxidoreductase dehydrogenase 0.00289657565217 0.0029074440528 4387706704.6 +UniRef50_UPI000363AE14 hypothetical protein 1.34266488905e-05 3.37036676317e-05 8186081292.82 +UniRef50_A6TSP5 DEAD DEAH box helicase domain protein 0.00317438306632 0.00045691072329 -1.09707693202e+12 +UniRef50_UPI00041C3470 major facilitator transporter 3.84117167443e-06 0.000139013172337 54570595414.6 +UniRef50_UPI00046337D4 histidine ammonia lyase, partial 4.30376647347e-06 2.65539469503e-05 8982670898.9 +UniRef50_V6F9W2 0.000243016731023 0.00109990021337 3.45934376966e+11 +UniRef50_A8LMR7 6.33456340649e-05 2.87558541267e-05 -13964318625.4 +UniRef50_I6S1H3 5.66972802055e-06 0.00119862096242 4.81609052485e+11 +UniRef50_UPI0003292D89 PREDICTED 5.29761665494e-05 6.49921351006e-05 4850993956.63 +UniRef50_N8PWN0 DNA ligase 0.000227360656141 0.00392176688639 1.49147713061e+12 +UniRef50_Q72R38 Lysine tRNA ligase 8.84648468082e-06 9.72346927208e-06 354049441.303 +UniRef50_W5Y8Y3 Polyprenyl synthetase 0.00113283138747 0.000970455382071 -65553185957.2 +UniRef50_R7IF91 Lipoprotein 7.85533926989e-06 5.51382765986e-05 19088702026.5 +UniRef50_Q5HRB4 0.000519476131447 0.000798153257284 1.12505375453e+11 +UniRef50_UPI00037CCB39 hypothetical protein 8.42188390204e-05 1.1021743814e-05 -29550565564.2 +UniRef50_P35163 Transcriptional regulatory protein ResD 0.0151705998784 0.00554784862343 -3.88482276607e+12 +UniRef50_A5IRW7 0.00614297103839 0.00152607960721 -1.8638957264e+12 +UniRef50_P57355 UPF0056 membrane protein BU267 0.002142525006 0.000336863161818 -7.28967844458e+11 +UniRef50_G7M6S5 Peptidase M16 domain protein 0.000746490515554 0.000864431519168 47614230457.8 +UniRef50_A4WPQ5 Periplasmic protein thiol disulphide oxidoreductase DsbE 0.00230846799262 0.000816543885337 -6.02308070077e+11 +UniRef50_X5E5J7 Lipoprotein 0.0252470232476 0.00301273581933 -8.97625468019e+12 +UniRef50_P40892 Putative acetyltransferase YJL218W 0.000517104094322 0.000288583099537 -92256729862.7 +UniRef50_E3A496 0.000198756851854 0.000606424305037 1.64580353492e+11 +UniRef50_I6E2A6 Inner membrane protein yghQ 0.00178740284979 0.000393755606923 -5.62632493921e+11 +UniRef50_Q8U3B8 Arsenical resistance protein acr3 0.0169055493578 0.00134877350399 -6.28046131529e+12 +UniRef50_I6TZW1 ATP binding protein 0.00685592074412 0.00189858921362 -2.00133557216e+12 +UniRef50_X6L6R2 MFS transporter 1.44688777476e-05 2.76764163509e-05 5332045408.88 +UniRef50_K6PSM8 ATPase component of an ABC superfamily transporter 0.022146934598 0.0109078405415 -4.5373601898e+12 +UniRef50_A6M2B1 Beta lactamase domain protein 0.000142963258193 0.00223607035037 8.45013018425e+11 +UniRef50_UPI0003FB35D8 chemotaxis protein CheY 1.12722596319e-05 1.4905301397e-05 1466703543.01 +UniRef50_F7ZEB4 TatD family deoxyribonuclease 0.00104734834323 0.000660803075986 -1.5605306783e+11 +UniRef50_UPI0003B3F7AD phosphoribosylaminoimidazole carboxylase 5.88989665937e-06 7.38341770147e-06 602952772.26 +UniRef50_A5UKF2 0.0014215734479 0.000302888928405 -4.51626668321e+11 +UniRef50_S5CXQ6 0.000119613739235 0.00621412458414 2.46042881615e+12 +UniRef50_L7WXI7 CorA like Mg2+ transporter protein 0.0181109598927 0.00555523275515 -5.06890112155e+12 +UniRef50_G0DRH6 6.07672236434e-05 0.00873991007228 3.50387647306e+12 +UniRef50_A5WG42 NADH quinone oxidoreductase subunit H 0.00270402425458 0.00884178449282 2.47788912697e+12 +UniRef50_G9Z7C4 Amine oxidase 0.00408617393598 0.000768521484726 -1.33937700674e+12 +UniRef50_UPI0003B6CB25 GTPase Era 8.97370131697e-06 0.000109569257421 40611660445.5 +UniRef50_B9KRR2 ATP dependent DNA ligase 0.00259902429154 0.000426730544845 -8.76981642585e+11 +UniRef50_S3X9I7 1.29251208434e-05 8.25629609088e-05 28113650586.8 +UniRef50_P06744 Glucose 6 phosphate isomerase 0.00233553106705 0.00356994827639 4.98349375413e+11 +UniRef50_D8JHR5 0.000241462252992 0.00454613680704 1.73784994177e+12 +UniRef50_B9KPJ0 Ribose phosphate pyrophosphokinase 0.0120963824909 0.0139462796982 7.46826203378e+11 +UniRef50_P08555 DsdX permease 0.00263963721621 0.00209838004817 -2.1851216071e+11 +UniRef50_P0ABU8 Biopolymer transport protein ExbB 0.00332545517822 0.00108791572777 -9.03322133843e+11 +UniRef50_S5XVE4 Type VI secretion system ATPase 0.00091007064607 7.02856101231e-05 -3.39031524333e+11 +UniRef50_E0RCX2 2.04353808852e-05 3.59588519144e-05 6267015748.9 +UniRef50_T0USP0 VanZF related protein 0.00363962522306 0.000668641596675 -1.19942254804e+12 +UniRef50_D2N5R5 Kinase associated protein B 0.00777254753491 0.00122597899592 -2.64293005462e+12 +UniRef50_Q0C5T7 Peptide ABC transporter, ATP binding protein 0.00603051808392 0.00175573516821 -1.72578232056e+12 +UniRef50_Q4L7E3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0161186311388 0.00249863880463 -5.49855804142e+12 +UniRef50_D2ABX7 0.00171584540388 0.000159914152712 -6.28148539521e+11 +UniRef50_UPI00037710EA hypothetical protein 2.35365370977e-05 1.12322138445e-05 -4967406288.34 +UniRef50_B2V422 7.73008850942e-05 0.00261002638502 1.02249236436e+12 +UniRef50_Q03MZ6 Bifunctional purine biosynthesis protein PurH 0.000641718181199 0.00518262115673 1.83321825437e+12 +UniRef50_P42915 Outer membrane usher protein YraJ 0.00217130659328 0.00121422452384 -3.86385776151e+11 +UniRef50_Q49775 Methionine synthase 1.06033349663e-06 7.09635890482e-05 28220802075.6 +UniRef50_UPI0003B44CF0 streptomycin 3 kinase 2.68776543359e-05 4.31263542171e-05 6559799536.01 +UniRef50_UPI0004639093 hypothetical protein 4.57172883606e-06 7.8368142082e-06 1318155031.84 +UniRef50_F0RPF2 0.000743242554228 0.0731273562321 2.92223549447e+13 +UniRef50_F0RPF3 0.000299592054644 0.0549428872926 2.20601688362e+13 +UniRef50_UPI0002002483 hypothetical protein 7.99985027071e-05 2.38248331151e-05 -22677999742.7 +UniRef50_S5FCX8 Carboxylate amine ligase 0.00502558112002 0.00259492638056 -9.81285145808e+11 +UniRef50_A5D1A4 Dihydroorotase 5.30457669969e-06 2.61393843482e-05 8411267519.54 +UniRef50_W8TQE0 Pili assembly chaperone 0.00321978963707 0.000835801995839 -9.62445065583e+11 +UniRef50_UPI000364022E hypothetical protein 0.000686235417419 5.82756857009e-05 -2.53515049627e+11 +UniRef50_R5UAJ8 0.000323590301479 0.000978075620281 2.64223754638e+11 +UniRef50_UPI000262CCDC Mutator MutT protein 1.6192284341e-05 6.63987735146e-06 -3856423922.89 +UniRef50_UPI00036EE512 hypothetical protein 6.18832522155e-06 1.48418233902e-05 3493523401.05 +UniRef50_UPI0003B63CEB molybdopterin biosynthesis protein MoeA 4.70409997922e-06 6.52810499892e-06 736373209.512 +UniRef50_Q98E39 Msr4423 protein 0.000228260779246 0.000171625714296 -22864270710.7 +UniRef50_UPI0003615A32 hypothetical protein 7.16885277453e-06 9.94518622662e-06 1120839884.05 +UniRef50_C9CVV7 0.00183469183877 3.05974496968e-05 -7.28335043595e+11 +UniRef50_UPI00035A01D7 PREDICTED 5.97540589915e-06 2.5749973728e-06 -1372786649.79 +UniRef50_UPI00047B26FB glyoxalase 1.78391682808e-05 6.48510055506e-06 -4583776470.94 +UniRef50_B9KU28 Transcriptional regulator 0.00254934295449 0.00103109280248 -6.12936217391e+11 +UniRef50_UPI00036F2709 LysR family transcriptional regulator 2.38286186519e-05 1.26865360074e-05 -4498195492.31 +UniRef50_S2L5Z7 Alkaline phosphatase 2.47608820128e-05 5.33231287834e-06 -7843551774.95 +UniRef50_A3MFR5 NADH quinone oxidoreductase subunit B 2 1.68268890753e-05 3.94110923383e-05 9117519996.61 +UniRef50_Q28RF2 Anhydro N acetylmuramic acid kinase 1 0.000219977504789 6.01735922779e-05 -64514800495.2 +UniRef50_UPI00044199D7 PREDICTED 8.96143697272e-05 3.38607804837e-05 -22508408151.1 +UniRef50_P61676 UDP N acetylmuramate L alanine ligase 3.91961596194e-06 7.01197188165e-06 1248422032.26 +UniRef50_B9KT87 Periplasmic sensor signal transduction histidine kinase 0.00725706855587 0.00256896710157 -1.89264408658e+12 +UniRef50_A5WG85 0.000139982443328 0.00483058577809 1.89365412642e+12 +UniRef50_H9JZZ5 4.09301926887e-05 6.89294317242e-06 -13741255313.8 +UniRef50_U5SUC1 Protein co occurring with transport systems 0.0205793186279 0.00609787688609 -5.84633573844e+12 +UniRef50_UPI000368DF15 hypothetical protein 3.21418074842e-05 3.44409141213e-05 928177562.608 +UniRef50_D4GE62 Fcy21 0.000617548560134 0.000172196329551 -1.79794160573e+11 +UniRef50_P28905 DNA polymerase III subunit chi 0.00102659177871 0.000906606316307 -48439603559.3 +UniRef50_UPI0002493F0F sugar transporter 5.92872628753e-06 2.42033782658e-05 7377701258.84 +UniRef50_X1IEE0 Marine sediment metagenome DNA, contig 8.16988967355e-06 0.000563977337749 2.24386287312e+11 +UniRef50_I1ZKN3 1.32932482751e-05 7.39323493242e-06 -2381907787.75 +UniRef50_UPI000287D4FC ribose phosphate diphosphokinase 7.23853254403e-05 0.000112823302299 16325307487.6 +UniRef50_Q9RTM5 0.00018874299443 0.0404617512149 1.6258707624e+13 +UniRef50_P0A9A4 Ferritin like protein 2 0.000754424998393 0.000767668081954 5346395344.49 +UniRef50_Q08Z31 6.23625198308e-05 0.000225364770328 65806008788.2 +UniRef50_B9E9S0 0.00370260526954 0.00101068384146 -1.08676171411e+12 +UniRef50_Q9RZI4 8.72272203127e-05 0.0171631502825 6.89375968535e+12 +UniRef50_UPI00030FEE7F AsnC family transcriptional regulator 0.000106045450984 1.61533359405e-05 -36290549943.4 +UniRef50_UPI0003B3D4FC purine nucleoside phosphorylase 1.39977150548e-05 5.70636982172e-05 17386265881.7 +UniRef50_C5X3F1 0.000111708386012 9.36938504283e-05 -7272689078.35 +UniRef50_A4YXJ9 Cobyric acid synthase 0.000319064178391 6.46553154361e-05 -1.02707979923e+11 +UniRef50_A6LUJ6 0.000117558934525 0.00101587414635 3.62660874581e+11 +UniRef50_I1HS37 0.000280311377865 0.000187638168363 -37413311904.1 +UniRef50_Q5LI72 Lipoprotein releasing system ATP binding protein LolD 0.000263766443623 0.00733216708209 2.85360007678e+12 +UniRef50_UPI0004715EC0 hypothetical protein 4.63349699827e-05 3.40102172866e-05 -4975653905.14 +UniRef50_P77467 1,2 epoxyphenylacetyl CoA isomerase 0.00386228291096 0.000956518227577 -1.17309286042e+12 +UniRef50_Q9L6X9 DNA replication terminus site binding protein 0.00167109980127 0.00106795401294 -2.4349735618e+11 +UniRef50_UPI0002C2EB05 4.35911761018e-06 6.6063254106e-06 907225365.37 +UniRef50_F2MXH3 Hydrolase 0.000209326796037 0.000936724490257 2.9365937533e+11 +UniRef50_C7M9T6 Cation diffusion facilitator family transporter 0.000387180070617 0.00758046665167 2.90401806432e+12 +UniRef50_Q6GJ30 Putative glycosyltransferase TagX 0.0133445251833 0.00171439082339 -4.69522795889e+12 +UniRef50_J1H1W6 Putative transposase 2.84709620404e-05 0.00176922074009 7.02762046801e+11 +UniRef50_W6KCI0 Putative chaC like cation transporter 4.14539079995e-06 3.57896173158e-06 -228674365.767 +UniRef50_Q4L9R4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0118303588053 0.00109366960582 -4.33453318383e+12 +UniRef50_UPI00037EBF23 hypothetical protein 1.15796857651e-05 1.07844693274e-05 -321038634.303 +UniRef50_Q9V2R2 Quinolinate synthase A 0.00504431959733 0.000193227942332 -1.95844523071e+12 +UniRef50_Q9RU50 Acyl CoA dehydrogenase 0.000179471373386 0.0379073307501 1.52311998033e+13 +UniRef50_UPI0002D896B4 hypothetical protein 5.96124217941e-06 0.000151184646095 58628470252.5 +UniRef50_UPI0003731541 hypothetical protein 3.23776645162e-06 0.000542962673159 2.17893568007e+11 +UniRef50_UPI00047C50BA hypothetical protein 4.57091440853e-05 0.000172937752693 51363750565.6 +UniRef50_A3PHA2 0.00528896316931 0.000548575922964 -1.91375250244e+12 +UniRef50_A3PHA5 0.00119658113546 0.000354841190446 -3.39820745113e+11 +UniRef50_K1TC59 Branched chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein 4.07214265313e-05 0.000113297149972 29299710157.3 +UniRef50_A3PHA6 0.00497949806314 5.58452792495e-05 -1.98773904887e+12 +UniRef50_A3PHA9 0.00577566646291 0.000740200596614 -2.03287936234e+12 +UniRef50_A3PHA8 0.00812423433082 0.00599107607165 -8.61182166022e+11 +UniRef50_H0YUU4 2.36512539798e-05 5.48232768401e-05 12584528152.4 +UniRef50_A1AZJ2 UPF0173 metal dependent hydrolase Pden_0574 0.0121511147485 0.0014224080271 -4.33131055947e+12 +UniRef50_Q9RXG0 Ribonuclease R 5.52418520216e-05 0.0481502799253 1.94165570627e+13 +UniRef50_Q8P0D6 0.000134481635014 5.38353182688e-05 -32557907711.6 +UniRef50_P44023 0.0145922422725 0.00803075455965 -2.64895310819e+12 +UniRef50_R7CLA1 0.000213268920259 0.00151776782542 5.26642216015e+11 +UniRef50_A4WSE9 IS66 Orf2 family protein 9.36151616917e-05 4.17979058444e-05 -20919262054.8 +UniRef50_J2PZW7 0.000664270819961 0.00231459153056 6.66254722582e+11 +UniRef50_A0A017HSQ6 Transport protein 2.59697993965e-05 7.30076489908e-06 -7536918321.42 +UniRef50_P0AEC3 Aerobic respiration control sensor protein ArcB 0.00375703801352 0.000408005870559 -1.35204537336e+12 +UniRef50_UPI0003698849 DNA glycosylase 8.22525092424e-05 4.70710103576e-05 -14203202825.3 +UniRef50_UPI00035C8219 hypothetical protein 4.90660247307e-05 4.86524241201e-05 -166975641.949 +UniRef50_P0ABD0 High affinity choline transport protein 0.0031724971962 0.00443552315145 5.09899077206e+11 +UniRef50_E0TF91 Prephenate dehydrogenase 0.00296500306601 0.000227166696312 -1.10529813948e+12 +UniRef50_J1E0S9 0.00480727184423 0.000230815250453 -1.84757168635e+12 +UniRef50_UPI00037D56C5 hypothetical protein, partial 2.98378584541e-06 5.35593608257e-06 957666160.298 +UniRef50_P13794 Outer membrane porin F 0.00100611509587 0.0013240281445 1.28345398964e+11 +UniRef50_Q5HQN6 0.00224826876127 0.00098995752842 -5.07995685917e+11 +UniRef50_UPI00047A7DC3 sodium 3.5253327397e-05 3.92722179035e-05 1622475414.81 +UniRef50_UPI0003480247 membrane protein 6.85792997348e-06 7.78987254177e-05 28680040889.4 +UniRef50_X4QYD5 Ribonucleotide reductase 1.39779348191e-05 5.43807193306e-05 16311099905.2 +UniRef50_T2EHJ1 Hpt domain protein 0.000626118777209 9.56749584945e-05 -2.14146678892e+11 +UniRef50_A1B2U2 ABC polyamine opine transporter, periplasmic substrate binding protein 0.0200368239311 0.00627577632576 -5.5555037853e+12 +UniRef50_Q89AP8 Acetolactate synthase small subunit 8.62318649553e-05 0.000298353382378 85636059607.4 +UniRef50_V4JFT6 0.000449520935758 0.000324999072492 -50271004255.6 +UniRef50_K2R125 Insertion sequence transposase 8.18980895121e-05 5.44436216117e-05 -11083705595.6 +UniRef50_B9K5L2 0.000599094993713 0.00111352392269 2.07681271381e+11 +UniRef50_Q9RVK2 MutT nudix family protein 0.000385189784541 0.0270357674711 1.07591652514e+13 +UniRef50_P49058 Inosine 5 monophosphate dehydrogenase 3.71012071226e-05 0.000125736386471 35783109578.9 +UniRef50_T2EMC8 0.000579345115376 0.00113920109527 2.26020729289e+11 +UniRef50_N9ANA5 0.000134496195558 0.00722662622128 2.86317992161e+12 +UniRef50_S9RPX9 Integral membrane protein 1.22371556864e-05 8.31062832128e-06 -1585187281.21 +UniRef50_V3H5M7 1.75775724271e-05 2.90463776173e-05 4630097393.35 +UniRef50_E8SI82 0.00639120747705 0.00148456803506 -1.98087055397e+12 +UniRef50_A8L741 Putative glyoxalase family protein 2.04615741509e-05 4.8396485535e-05 11277666525.7 +UniRef50_UPI0002E43044 hypothetical protein 1.33103668495e-05 1.66952516746e-05 1366519541.1 +UniRef50_UPI000366CBF5 hypothetical protein 9.45196917233e-05 2.92934850871e-05 -26332620034.6 +UniRef50_UPI000368F6D6 hypothetical protein 6.65688152847e-06 1.37525744079e-05 2864618289.37 +UniRef50_UPI0003777C13 hypothetical protein 8.18571119849e-06 1.49005647356e-05 2710868773.45 +UniRef50_UPI00047CBCB4 C4 dicarboxylate ABC transporter substrate binding protein 0.000181236696587 5.38413564618e-05 -51431062125.1 +UniRef50_UPI0003446A8D PREDICTED 8.8862908388e-06 5.11361579109e-06 -1523075212.69 +UniRef50_UPI0003A59A55 chorismate synthase 1.6986118373e-05 0.000113943713425 39142970926.0 +UniRef50_UPI0003B6EE3B diguanylate cyclase, partial 0.000145257274841 0.000115571782826 -11984397408.4 +UniRef50_U3ASA7 1.84666518703e-06 3.32757774516e-06 597862572.558 +UniRef50_Q0TRI9 MTA SAH nucleosidase 0.000214887659684 0.00126097901204 4.22319915932e+11 +UniRef50_C7NKD3 2.7372526667e-05 0.0101278999495 4.07770686799e+12 +UniRef50_Q5HLN7 Membrane associated protein TcaA 0.0210737201956 0.00622385896204 -5.99507120829e+12 +UniRef50_Q7NLT7 Leucyl phenylalanyl tRNA protein transferase 1.91321353472e-05 9.47108371906e-05 30512049389.1 +UniRef50_Q2II05 LigA 0.000120024294193 0.000125184506651 2083241092.22 +UniRef50_Q15UL9 Deoxycytidine triphosphate deaminase 0.00471563737819 0.0020244395898 -1.08646957188e+12 +UniRef50_G2L306 Two component sensor EnvZ 0.000506403057564 0.00013536289008 -1.49793468788e+11 +UniRef50_A1JKQ0 tRNA methyltransferase TrmJ 0.00268542258647 0.00143373181154 -5.05322925812e+11 +UniRef50_G2KD33 7.26400235152e-05 0.00363100634327 1.43655614935e+12 +UniRef50_P39334 HTH type transcriptional repressor BdcR 0.000971755101824 0.0036535801658 1.08268568802e+12 +UniRef50_UPI0001744E68 hypothetical protein 0.000763607740057 0.0087906150325 3.24060134641e+12 +UniRef50_UPI000469DAE1 hypothetical protein 0.000651446342605 8.25540506605e-05 -2.29668799352e+11 +UniRef50_UPI000474FED4 response regulator receiver protein 0.000109206605601 0.00249825532604 9.64488285366e+11 +UniRef50_Q0RCK1 N acetylglucosamine 6 phosphate deacetylase 0.000298801574284 0.00145297309222 4.6595320507e+11 +UniRef50_P75908 Probable diguanylate cyclase YcdT 0.0026302912369 0.000568847564351 -8.32230107367e+11 +UniRef50_Q46I59 Phosphoribosylformylglycinamidine synthase 2 1.02701295032e-05 2.8966734919e-06 -2976754674.24 +UniRef50_D6Y938 Binding protein dependent transport systems inner membrane component 0.000128688405295 0.00569369801193 2.24666266855e+12 +UniRef50_Q9RVJ3 Branched chain amino acid ABC transporter, ATP binding protein 0.000171584540393 0.0426391594977 1.7144681146e+13 +UniRef50_Q8CR74 0.0105912759731 0.00168928151801 -3.59384440128e+12 +UniRef50_X1SN69 Marine sediment metagenome DNA, contig 4.84133274969e-05 0.0082493986287 3.3108384035e+12 +UniRef50_Q3J097 Acetyltransferase 0.0138220763884 0.00306056003084 -4.34455621222e+12 +UniRef50_UPI00045E8316 ribose ABC transporter permease 7.24140710852e-05 2.99689809244e-05 -17135603757.7 +UniRef50_X5DRJ8 Phosphate ABC transporter, permease protein PstA 0.00720423078315 0.00159667186083 -2.26384034943e+12 +UniRef50_B1B3J5 0.00389429937343 0.00466289534518 3.10291625529e+11 +UniRef50_H6PD11 Ion transport protein 0.00389017138533 0.0017940217818 -8.46241317593e+11 +UniRef50_Q8DUD5 0.0017953761144 0.00126564302227 -2.13859749849e+11 +UniRef50_B9KWI5 0.00186189251815 0.0002365687892 -6.56163134342e+11 +UniRef50_UPI0003765EEA hypothetical protein 1.90713493748e-05 6.18247837019e-06 -5203395388.79 +UniRef50_UPI00037DF3B3 MULTISPECIES 1.1026280147e-05 0.000375998452924 1.47343744862e+11 +UniRef50_C2Z2I2 ATPase 2.85439985693e-05 0.000214515766481 75079084836.3 +UniRef50_K0CB29 0.000131681158905 0.00780161198911 3.09644519679e+12 +UniRef50_P33590 Nickel binding periplasmic protein 0.00308633580725 0.000139081650806 -1.18984266983e+12 +UniRef50_Q3IXY3 0.0100315788801 0.0020453797212 -3.22412660213e+12 +UniRef50_W4MVL4 Phosphoenolpyruvate protein phosphotransferase 8.84394027992e-05 0.00566500633226 2.25132850159e+12 +UniRef50_I9L186 Transposase 0.000268252701597 0.000100874665903 -67572566969.1 +UniRef50_A3MMQ8 Glutamate 1 semialdehyde 2,1 aminomutase 1.01704747537e-05 0.00209939595549 8.43445964254e+11 +UniRef50_UPI000382D4BD hypothetical protein 3.16324837096e-05 2.58408976722e-05 -2338134354.05 +UniRef50_Q3IUW7 TraK protein 0.0270197165389 0.00613296556956 -8.43223767556e+12 +UniRef50_UPI0003F107C2 2.08705570988e-05 1.59810680259e-05 -1973946739.51 +UniRef50_Q91TW1 T2 3.849585135e-06 0.000112002814878 43662786036.6 +UniRef50_B5Y1K1 Elongation factor Ts 0.00341785048679 0.00363727122243 88582843573.1 +UniRef50_UPI00047479E9 hypothetical protein 0.000149745182071 0.000598902432132 1.81330293629e+11 +UniRef50_UPI000412A15D hypothetical protein 1.85038909385e-06 1.12116690157e-05 3779263580.27 +UniRef50_S5AVG1 MazG protein 9.85236584997e-06 9.19402427812e-06 -265780571.315 +UniRef50_P27876 Triosephosphate isomerase 0.000636483511888 7.07672886736e-05 -2.2838658143e+11 +UniRef50_UPI00031DE78E hypothetical protein 7.67795590093e-06 8.65493879494e-05 31841364979.3 +UniRef50_UPI000363D58E protein meaA, partial 0.000436129319092 0.000169330583355 -1.07709923606e+11 +UniRef50_M4N5D5 0.000625117970063 0.000304433363087 -1.29464311079e+11 +UniRef50_E2Q9I1 Prevent host death family protein 6.79113370469e-05 4.48144983192e-05 -9324477224.46 +UniRef50_F2MT10 HD domain protein 0.00575005918993 0.00342255767114 -9.39640924791e+11 +UniRef50_B9KPZ0 Potassium transporting ATPase C chain 4.37640569085e-06 0.000338042128949 1.34704947018e+11 +UniRef50_J8EJF8 LPXTG domain containing protein cell wall anchor domain 1.73579669935e-05 3.5876061967e-05 7475982183.38 +UniRef50_E0J5J4 2 dehydro 3 deoxygluconokinase 0.00268762105149 0.00109599367054 -6.42559505154e+11 +UniRef50_A0A028QNK4 0.00535510596134 0.000747637228341 -1.86009166751e+12 +UniRef50_F0RNA5 ATPase AAA 2 domain protein 0.000316657994906 0.0272149981083 1.08591899835e+13 +UniRef50_A6LUR0 Transcriptional regulator, RpiR family 0.000146123608583 0.00219104229317 8.25558766943e+11 +UniRef50_UPI000477413F regulator 9.9232886914e-06 1.95382552831e-05 3881680001.98 +UniRef50_A8FXN6 8.91868556561e-05 3.25860433506e-05 -22850442497.8 +UniRef50_A4WWH1 Glycosyl transferase, group 1 0.000409200429515 0.00064435333893 94934115181.5 +UniRef50_K7S6T7 Glycosyltransferase, group 1 family protein 0.000341622791841 0.00350980706601 1.27903486948e+12 +UniRef50_UPI0003B3B81F indole 3 glycerol phosphate synthase 7.58102927655e-06 1.34523656752e-05 2370330553.53 +UniRef50_C4ZXX6 PKHD type hydroxylase YbiX 0.00397935412408 0.000911282999557 -1.23861796244e+12 +UniRef50_Q6A5N5 Undecaprenyl diphosphatase 0.000209714438257 0.00588217807873 2.29004318061e+12 +UniRef50_X5ENW5 ABC transporter family protein 0.0121317188201 0.00169002397752 -4.21544034196e+12 +UniRef50_UPI00047B3063 ABC transporter ATP binding protein 0.000119824536116 4.6367389077e-05 -29655551680.2 +UniRef50_Q9RYM8 Probable subtilase type serine protease DR_A0283 0.000490388316337 0.0553858390182 2.21619670913e+13 +UniRef50_E0MS58 Molecular chaperone, DnaJ family 8.95990221473e-06 1.07998695502e-05 742817392.267 +UniRef50_A1B8N7 ATP synthase subunit delta 0.000975711642676 0.000361612292071 -2.47919443686e+11 +UniRef50_P0AE26 L arabinose transport system permease protein AraH 0.00244277036179 0.00203201800685 -1.65825766187e+11 +UniRef50_C2LZ77 1.4368761125e-05 3.91382597653e-05 9999750557.02 +UniRef50_UPI000382715E hypothetical protein 6.39860316502e-06 1.01609084706e-05 1518888820.54 +UniRef50_W4UHC4 Helicase 4.18189795614e-05 0.00461271207283 1.84532563292e+12 +UniRef50_A0A011Q8A5 2.10665604662e-05 8.70133191825e-05 26623515751.5 +UniRef50_P27675 Glutamine transport ATP binding protein GlnQ 0.00353196235531 0.00589444925253 9.53764951382e+11 +UniRef50_N6UYQ4 2.72408954719e-05 7.79436149862e-06 -7850804400.83 +UniRef50_A6LWG5 7 carboxy 7 deazaguanine synthase 0.000185345002706 0.000603410104149 1.68778011688e+11 +UniRef50_A0A023RTQ5 GntR family transcriptional regulator 8.21812747825e-05 0.00417395668058 1.65189994305e+12 +UniRef50_UPI00029DA75A PREDICTED 4.21568476482e-06 8.68822477888e-06 1805619287.91 +UniRef50_D0SBY2 Oxidoreductase alpha subunit 4.74427300602e-05 0.00500766804199 2.00250382724e+12 +UniRef50_X1SF25 Marine sediment metagenome DNA, contig 1.24128541504e-05 3.99621678043e-05 11121995990.2 +UniRef50_Q7TUT1 Glutamyl Q tRNA synthetase 4.64230348064e-06 8.57262829356e-06 1586720357.48 +UniRef50_L5R254 Replication initiation factor domain protein 0.0003380471542 0.00114957157856 3.27622368639e+11 +UniRef50_A6SXI6 Tricarboxylate transport protein TctA 2.92389927118e-06 1.83808000136e-05 6240140507.21 +UniRef50_A6KYS6 S ribosylhomocysteine lyase 0.000236915892584 0.00671094847844 2.61364640023e+12 +UniRef50_S5UDS6 0.0125828662951 4.78899414478e-05 -5.06052377545e+12 +UniRef50_C7PD55 Chitinase 6.3380173546e-06 1.27918525655e-05 2605492472.1 +UniRef50_Q9ZDH5 NADH quinone oxidoreductase subunit E 0.000269817055093 8.66908802427e-05 -73930283997.8 +UniRef50_X1TNP8 Marine sediment metagenome DNA, contig 5.84861665717e-05 0.00188040248669 7.3552997586e+11 +UniRef50_P16926 Cell shape determining protein MreC 0.00399894980063 0.00243699442131 -6.30580553979e+11 +UniRef50_S1T2A2 0.000143897943507 0.000383111194313 96573324827.1 +UniRef50_UPI00038199B5 hypothetical protein 0.00113065314754 0.000274345876413 -3.45701753426e+11 +UniRef50_B0VLQ7 General secretion pathway protein F 0.00030006202761 0.00894105033112 3.48847301498e+12 +UniRef50_A0KKZ8 Fumarate hydratase, class I 0.000994349423305 0.0114826175936 4.23424256587e+12 +UniRef50_S1T2A8 0.000113691658697 0.000900225191442 3.17533239021e+11 +UniRef50_J3NR99 0.000514380360552 8.0431240632e-05 -1.75190584866e+11 +UniRef50_UPI0003FEFECF hypothetical protein 2.66619999237e-05 1.62775802912e-05 -4192317636.8 +UniRef50_A4WQ31 Signal transduction histidine kinase 0.00300998224502 0.00170884813059 -5.25283808706e+11 +UniRef50_A6M1A3 MotA TolQ ExbB proton channel 0.000321887277318 0.00118861898917 3.49910228069e+11 +UniRef50_Q08SF7 0.00083594031154 0.00248449545256 6.65541940476e+11 +UniRef50_A0A031D1F0 0.000658183592274 0.000457199374696 -81139794989.9 +UniRef50_A6LRT2 Resolvase, N terminal domain 0.00017087408573 0.000961856027269 3.19329116239e+11 +UniRef50_X6C1Q7 0.000374759710808 7.48860906593e-05 -1.21062660317e+11 +UniRef50_Q43768 Glutamate tRNA ligase, chloroplastic mitochondrial 3.68853550172e-06 1.49986084406e-05 4566015235.64 +UniRef50_P45015 Protein NrfC homolog 0.00378982437037 0.000895571743794 -1.16844530182e+12 +UniRef50_UPI0004408DA8 ribosomal protein S5 domain 2 like protein 1.80614508677e-05 1.53391085013e-05 -1099043020.21 +UniRef50_Q57E96 4 hydroxy tetrahydrodipicolinate synthase 5.39320107088e-06 2.52128569731e-05 8001438302.25 +UniRef50_L0GKZ5 Asparagine synthetase 0.000241981424281 0.000221786687866 -8152862908.02 +UniRef50_G2JGA5 Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA 0.00043472474724 0.00774091839019 2.94960003074e+12 +UniRef50_P41504 Probable tRNA dihydrouridine synthase 0.000138442294196 6.55268931905e-05 -29436842158.5 +UniRef50_F7Y0P1 Binding protein dependent transport systems inner membrane component 0.0137820788626 0.00324446720485 -4.25416313725e+12 +UniRef50_A6LSC4 Malonyl CoA acyl carrier protein transacylase 0.000351095044177 0.000187701295675 -65964061337.0 +UniRef50_X3EYH3 DNA mismatch repair protein MutL 0.00382169413602 0.000136090647547 -1.48792335574e+12 +UniRef50_Q9ZMK8 Peptide methionine sulfoxide reductase MsrA MsrB 5.18477651944e-06 0.00189459144901 7.62776659311e+11 +UniRef50_O27156 CRISPR associated endonuclease Cas1 0.00206935928118 0.000439551067004 -6.5797357606e+11 +UniRef50_F0KK42 0.000823043613343 0.00482213573608 1.61448256433e+12 +UniRef50_P40420 Glucose uptake protein GlcU 0.0214172740005 0.00697255889135 -5.83150874613e+12 +UniRef50_F0YA24 0.000222576249581 0.000177848630087 -18057088859.3 +UniRef50_P77554 0.00312453658081 0.000749099544771 -9.5899308134e+11 +UniRef50_Q887Q4 Alginate biosynthesis protein AlgX 0.000166774630257 0.000191143498515 9838011155.4 +UniRef50_A4VKL4 Cbb3 type cytochrome c oxidase subunit CcoP 0.00351646903291 0.000972469033247 -1.02704401825e+12 +UniRef50_M2QHJ0 9.3826335217e-05 2.92471506049e-05 -26071409303.6 +UniRef50_P77559 0.00249228701283 0.000532084065573 -7.91357984204e+11 +UniRef50_B8EN54 Ribonuclease D 7.88377952255e-05 1.36867311269e-05 -26302284070.1 +UniRef50_Q8NXR4 ABC transporter permease 0.0168686296564 0.00303371433348 -5.58532508936e+12 +UniRef50_D3E2D0 0.00203919020356 0.000422762417725 -6.52571732943e+11 +UniRef50_Q2YNG3 Phosphoribosylformylglycinamidine synthase 1 2.56275835543e-05 1.63884622108e-05 -3729946663.14 +UniRef50_A6U9U3 Cyclic pyranopterin monophosphate synthase 0.00500703146175 0.000987594615084 -1.62269597904e+12 +UniRef50_K4NN39 Type I restriction enzyme R protein 3.70205284955e-05 0.00345600286235 1.38028512381e+12 +UniRef50_UPI0003B6F790 50S ribosomal protein L9 5.81509672466e-05 2.30492772212e-05 -14170983009.4 +UniRef50_UPI00029A559A acetate CoA ligase 1.46979324671e-05 0.000314681606359 1.21107090364e+11 +UniRef50_B4U7T6 Acyl carrier protein 3.06045015022e-05 0.000389791843337 1.45008337623e+11 +UniRef50_Q9M5K2-2 Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial 9.00511491391e-05 0.000187334446076 39274460773.7 +UniRef50_UPI0003B5C4DF UDP N acetylglucosamine 2 epimerase 6.74493295519e-06 1.91877371643e-05 5023312749.59 +UniRef50_Q4L7F0 UPF0754 membrane protein SH1116 0.0190769105313 0.00825999096347 -4.36692316805e+12 +UniRef50_UPI00025578B3 3 oxoacyl ACP reductase 1.64407145895e-05 2.10454509844e-05 1858988589.09 +UniRef50_G4QEZ4 2 nitropropane dioxygenase family protein 0.00361548512267 0.000383629288373 -1.30473985964e+12 +UniRef50_D5ARQ6 Lipoprotein, putative 5.99493976514e-05 3.32617827532e-05 -10774117628.3 +UniRef50_Q2S2L8 ATP dependent Clp protease proteolytic subunit 1 6.9064334766e-06 3.75906691686e-05 12387602486.8 +UniRef50_UPI0003A2476A hypothetical protein 5.04477507042e-05 1.2665813457e-05 -15253031703.2 +UniRef50_E6J991 Metallophosphoesterase 8.97830776414e-05 0.000518576168439 1.73109032638e+11 +UniRef50_UPI0003F99510 hypothetical protein 6.51156150194e-05 3.26137602645e-05 -13121397607.2 +UniRef50_E3GC98 Multidrug resistance protein MdtG 0.00116203125828 0.000227750672386 -3.77180537437e+11 +UniRef50_E8JLX0 0.000370333918682 0.000792842493087 1.70571896251e+11 +UniRef50_Q6LMV3 S ribosylhomocysteine lyase 0.00155607427943 0.000351463317331 -4.86316227639e+11 +UniRef50_UPI0002C376D2 PREDICTED 6.32028421002e-05 0.000240579075657 71608962138.1 +UniRef50_UPI000319E332 hypothetical protein 6.93645771181e-06 5.92772717087e-06 -407236897.893 +UniRef50_UPI00035F7937 hypothetical protein 7.26162069617e-07 8.85054628926e-05 35437580915.4 +UniRef50_Q8LK02 5.08306137583e-05 3.67716347234e-06 -19036426518.4 +UniRef50_UPI00045E23DB PREDICTED 1.10079216784e-05 1.11334202005e-05 50665293.4118 +UniRef50_P76318 Putative SOS response associated peptidase YedK 0.00316381574327 0.00133772994399 -7.37213245762e+11 +UniRef50_O31019 Carbamate kinase 0.000316356056823 0.00342545872957 1.25518290197e+12 +UniRef50_J7Q543 0.0123097419915 0.00315180457104 -3.69717171717e+12 +UniRef50_Q7NZ19 Phosphopantetheine adenylyltransferase 2.6903143847e-05 0.000119709202044 37466944552.5 +UniRef50_I1PC32 3.70569975378e-05 3.9326509848e-05 916229969.676 +UniRef50_A5V3M9 N succinylarginine dihydrolase 1.43662811328e-05 4.73381871135e-05 13311163055.2 +UniRef50_F3GLY7 Periplasmic binding protein LacI transcriptional regulator 0.000268176307705 5.50062197804e-05 -86059380386.5 +UniRef50_UPI00016A69C6 hypothetical protein 0.00435234330555 0.00141279077093 -1.18673343059e+12 +UniRef50_Q49016 Arabinose transport protein 1.59395040383e-05 4.85963194684e-05 13183957133.3 +UniRef50_O28733 Succinyl CoA ligase [ADP forming] subunit alpha 1 3.95267603724e-05 4.76327467094e-05 3272486155.89 +UniRef50_V6FRW4 Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein 0.000524889416796 0.00304846731061 1.01879936351e+12 +UniRef50_P95785 ATP synthase subunit b 0.00604819541684 0.000737678309092 -2.14392092377e+12 +UniRef50_H2ITE9 1.75146934346e-05 2.0699160779e-05 1285608544.74 +UniRef50_A6W759 3.38994915078e-05 1.1077853675e-05 -9213375246.09 +UniRef50_F9XKQ7 0.000342067777326 0.000410180933783 27498117104.1 +UniRef50_A8LS45 Glycine tRNA ligase beta subunit 0.0014829288782 9.40000122672e-05 -5.6072762725e+11 +UniRef50_J9GQF0 Heat shock protein 70 0.000114428572481 0.000113230775014 -483565536.056 +UniRef50_B0C3D3 2 isopropylmalate synthase homocitrate synthase family protein 0.000391951961456 0.000768012456789 1.51820236747e+11 +UniRef50_B3PE41 Rrf2 family protein 2.11573155118e-05 0.00910391602823 3.66682115031e+12 +UniRef50_B7LNX4 UPF0319 protein YccT 0.00905270177581 0.00303640627508 -2.42885232189e+12 +UniRef50_A0KTT2 4 hydroxy tetrahydrodipicolinate reductase 0.00286565120064 0.00843442358593 2.24818174846e+12 +UniRef50_UPI00029A5235 molybdenum cofactor biosynthesis protein A, partial 8.20232448143e-06 4.56917032921e-05 15134922272.3 +UniRef50_F0VSK8 Complete chromosome sequence, strain ATCC BAA 2069 0.00173843772901 0.00281618893625 4.35101387857e+11 +UniRef50_UPI000475CB6C methionine synthase 1.76655782045e-05 2.76983408875e-05 4050349410.97 +UniRef50_F8HCE7 0.0022828177701 0.000782295907797 -6.05779089284e+11 +UniRef50_UPI00035E8FBB hypothetical protein 0.000475130985215 2.0171079404e-05 -1.83672896962e+11 +UniRef50_Q9RY78 0.000274202897477 0.00278498984103 1.01363549993e+12 +UniRef50_A3JAP6 0.000100630534148 7.29030957143e-06 -37682594074.9 +UniRef50_UPI0003B4F317 ABC transporter ATP binding protein, partial 1.27565215432e-05 2.45005391177e-05 4741204010.13 +UniRef50_Q5XD15 Zinc binding protein AdcA 0.00463993307252 0.00600987054649 5.53060569265e+11 +UniRef50_Q5F8G9 ADP dependent NAD(P)H hydrate dehydratase 0.000149400787142 0.00234077256309 8.84683677107e+11 +UniRef50_Q21YB9 NADH quinone oxidoreductase subunit I 5.97710367334e-05 0.00831890020682 3.33431179688e+12 +UniRef50_D7GI06 Proline specific permease proY 0.000643983504138 0.00348807417514 1.1481943048e+12 +UniRef50_A7MY01 Ribonuclease HII 2.55677494469e-05 1.15731896604e-05 -5649775518.37 +UniRef50_W1GG79 CFA I fimbrial auxiliary subunit 0.000735362315945 0.00403944670667 1.33389941421e+12 +UniRef50_R7EZG6 1.3906840331e-05 1.83055392069e-05 1775808714.31 +UniRef50_F7V4L9 L lactate permease 0.000106134767253 0.00204241926651 7.81701813234e+11 +UniRef50_UPI0003483AFA hypothetical protein 5.41856301628e-05 1.71110510454e-05 -14967462545.9 +UniRef50_Q8CSV4 0.018113792202 0.00751950250096 -4.27704475885e+12 +UniRef50_UPI000362C8FC hypothetical protein 1.34677635697e-05 1.86676787232e-05 2099269557.6 +UniRef50_G9EJ55 1.08910196392e-05 1.79799905998e-05 2861904568.25 +UniRef50_D3QEL4 ComF operon protein A, DNA transporter ATPase 0.0162273314327 0.010714810302 -2.2254724267e+12 +UniRef50_S9R468 Mobile element protein 5.17178942919e-05 2.32665657187e-05 -11486150482.1 +UniRef50_K7RQ95 Integral membrane protein MviN 0.00013827325599 0.00537598928512 2.11453023496e+12 +UniRef50_S5E1S4 Chromosome partitioning protein ParB 9.90664722385e-05 2.10305892066e-05 -31504043587.9 +UniRef50_Q89B29 Ribosomal RNA small subunit methyltransferase D 2.02605062616e-05 1.70557319127e-05 -1293806731.65 +UniRef50_UPI000370F5E4 hypothetical protein, partial 1.4348701999e-05 2.46322225257e-05 4151583429.62 +UniRef50_R8ZG28 Putative glucosyl transferase 0.000407276519902 0.000150347381809 -1.03725445923e+11 +UniRef50_G7U5G6 3.40462405978e-05 0.000169336258575 54618240452.5 +UniRef50_UPI000366A264 hypothetical protein 2.7558138804e-06 5.04891132806e-06 925751579.09 +UniRef50_B1ES29 Inner membrane protein YeaI 0.000939128150774 0.00046506567747 -1.91384837874e+11 +UniRef50_J9UQW7 0.0019194202823 0.00285790359866 3.788772313e+11 +UniRef50_A0A011NUN7 N5 carboxyaminoimidazole ribonucleotide synthase 8.02895683107e-06 5.55983778517e-06 -996813658.328 +UniRef50_Q6FDQ7 0.000155771384668 0.0060001545221 2.35944919123e+12 +UniRef50_UPI00036983C7 hypothetical protein 2.61384873002e-05 2.99715415684e-05 1547451044.94 +UniRef50_B5HTP9 0.00023884679799 0.000333691192315 38289845860.6 +UniRef50_UPI00046A99F4 spermidine putrescine ABC transporter permease 6.64952969062e-06 0.000192814297149 75157001121.4 +UniRef50_A6M301 Carbohydrate kinase, YjeF related protein 0.00056353282674 0.000745740636852 73559528883.5 +UniRef50_Q2NFN1 Predicted peptidase 0.00349579322556 0.000837596861015 -1.0731464921e+12 +UniRef50_U5UFJ6 0.0043371692672 0.00273190259626 -6.48065853896e+11 +UniRef50_UPI0002D512F5 hypothetical protein 3.32791509763e-05 3.50532334761e-05 716218875.61 +UniRef50_P32016 Capsule polysaccharide export ATP binding protein CtrD 0.000225017016282 0.00115893900599 3.77035767757e+11 +UniRef50_UPI000368193C hypothetical protein 3.69599017695e-05 1.13431851564e-05 -10341782849.2 +UniRef50_A9MZ05 0.000102086107456 1.33424453305e-05 -35826905407.3 +UniRef50_A6LSS4 0.000202586398316 0.000963847612847 3.07330494032e+11 +UniRef50_Q5F4W7 0.000159951690188 0.00196362532888 7.28165181504e+11 +UniRef50_W1Y671 Protein AraJ 0.000213065782269 4.56883817763e-05 -67572310530.7 +UniRef50_R6V897 Extracellular solute binding protein family 1 0.00014334910969 0.00138396398987 5.00851451185e+11 +UniRef50_U5V3F5 8.6798602231e-05 0.000287678953141 81097862741.5 +UniRef50_K7UNN0 8.32368429412e-06 8.94230568605e-06 249745047.26 +UniRef50_K2H9R9 0.000196599667576 0.000157452455265 -15804210000.3 +UniRef50_UPI00036568A9 hypothetical protein 2.34182749085e-05 7.37526142144e-05 20320590449.6 +UniRef50_P77334 Cyclic di GMP phosphodiesterase Gmr 0.00202340489233 0.000119480797778 -7.68637520746e+11 +UniRef50_UPI000377D288 hypothetical protein 6.49821045329e-06 2.06404001375e-06 -1790129019.83 +UniRef50_K3YVC5 0.000169529635709 5.09174919915e-05 -47885177953.6 +UniRef50_Q4L8M6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00739820577065 0.00357050478837 -1.54528985772e+12 +UniRef50_X1E4N0 Marine sediment metagenome DNA, contig 2.00750935732e-05 0.000530990699226 2.06262899642e+11 +UniRef50_A3JZY7 0.000650837911816 0.000957783908741 1.2391786561e+11 +UniRef50_Q8K986 7 cyano 7 deazaguanine synthase 8.64329073757e-06 2.35766420221e-05 6028777166.38 +UniRef50_Q9RXF1 D alanine D alanine ligase 0.000599084280798 0.023093455771 9.08125380757e+12 +UniRef50_Q06986 E3 ubiquitin protein ligase SIAH2 1.2255282069e-05 1.34837897587e-05 495963629.817 +UniRef50_A4WPA7 0.000349360394337 0.00016070796965 -76161298871.7 +UniRef50_B7RMN2 Flagellar protein, putative 6.7206946878e-05 7.57132292623e-05 3434090582.36 +UniRef50_A4WPA8 0.00100442351114 0.00049611907576 -2.0520873816e+11 +UniRef50_K6TWJ0 0.0018759738336 0.000372247947718 -6.07072592921e+11 +UniRef50_UPI00037DF98D hypothetical protein 5.20660431834e-06 3.41393670369e-05 11680511354.4 +UniRef50_Q5HPV8 Ribonuclease 3 0.0156286721779 0.00478453119349 -4.37791278798e+12 +UniRef50_B8DTT6 Phosphoribosylformylglycinamidine cyclo ligase 0.00809619427983 0.0036342108669 -1.80135745849e+12 +UniRef50_Q6CX30 FK506 binding protein 1 2.31808009757e-05 3.05153377848e-05 2961042514.72 +UniRef50_UPI000466CF90 nitrate reductase, partial 9.32738393023e-07 2.96004615928e-06 818449023.103 +UniRef50_UPI0003B7B122 malonyl CoA ACP transacylase 7.95515606289e-06 1.18188858294e-05 1559835120.04 +UniRef50_Q18DZ3 Probable cell surface glycoprotein 1.12428152944e-05 6.41919392861e-06 -1947355137.86 +UniRef50_A6M1K6 0.000361302641379 0.000541224463645 72636647537.8 +UniRef50_F0YBF5 Expressed protein 7.48433102705e-05 7.52481930542e-05 163456148.25 +UniRef50_UPI0004210B91 thioredoxin 0.000493178159571 0.000349524690767 -57994668182.5 +UniRef50_UPI00037B4F64 hypothetical protein 0.00011587387323 1.89234699748e-05 -39140067509.4 +UniRef50_J7Q7A9 0.00082632854156 0.000412069821193 -1.67241328938e+11 +UniRef50_UPI000423006B antiporter 5.31157010441e-05 4.43559775125e-05 -3536407883.6 +UniRef50_E8PEU6 4.10151771361e-06 0.00604117135677 2.43723917721e+12 +UniRef50_Z2D7Y6 0.000556147481478 3.0053561448e-05 -2.12390571414e+11 +UniRef50_UPI0003B393A2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 5.69890129287e-06 0.000184221216962 72071649550.7 +UniRef50_P77694 Fimbria adhesin EcpD 0.00328011894763 0.00182262096975 -5.88409819182e+11 +UniRef50_R9SL72 DNA primase large subunit PriL 0.00218222646683 0.000420188348721 -7.1135641092e+11 +UniRef50_UPI0003D007CA hypothetical protein 1.01259721453e-05 2.18846110266e-05 4747106811.11 +UniRef50_UPI0002EC7A35 hypothetical protein 8.02518868703e-05 0.000218773200257 55922754062.0 +UniRef50_UPI00036B4C2E hypothetical protein 3.80383581835e-05 3.4335038192e-05 -1495075725.42 +UniRef50_UPI0004669DE9 malate dehydrogenase 5.51636765796e-05 2.00708246155e-05 -14167414975.6 +UniRef50_A3PJ14 Lipopolysaccharide biosynthesis 0.00528967320725 0.00103965213058 -1.71578566228e+12 +UniRef50_D6SDA6 0.00241154845084 0.00123784804092 -4.73837258408e+11 +UniRef50_Q5LP30 Valine tRNA ligase 2.11234786303e-05 2.04317590448e-05 -279255685.02 +UniRef50_Q0K7S4 Undecaprenyl diphosphatase 0.000120728080037 2.28565910625e-05 -39511921117.2 +UniRef50_B9KU47 0.00118668487779 0.0015542984484 1.48410109581e+11 +UniRef50_B8NDP1 Putative glutathione dependent formaldehyde activating enzyme 0.000115760293108 3.13745345103e-05 -34067566275.6 +UniRef50_UPI0000393886 peptidase 4.90776077713e-05 2.4850801693e-05 -9780658910.15 +UniRef50_D8HS39 9.4121642657e-05 2.51938920415e-05 -27826978762.1 +UniRef50_N3DVV4 0.000900524150175 0.000626113155893 -1.10783085793e+11 +UniRef50_F6HHF0 6.73770234243e-05 9.26216610533e-05 10191569997.4 +UniRef50_UPI0002483870 rod shape determining protein MreB 4.75216239676e-05 8.39423738277e-06 -15796206111.3 +UniRef50_P21108 Ribose phosphate pyrophosphokinase 3 1.4225941132e-05 8.3466995995e-05 27953463531.5 +UniRef50_UPI0003B4201A transcriptional regulator 6.09487069631e-05 6.56004784885e-05 1877977248.46 +UniRef50_D3QI08 Autolysin 0.0215291072408 0.00749875433849 -5.66422563845e+12 +UniRef50_C1DNK0 0.000383990500841 0.00127536273223 3.59857908179e+11 +UniRef50_A7K6E8 Aconitase family 0.00163977241011 0.00140708530747 -93938638727.6 +UniRef50_I0C2F4 0.0152122343978 0.00460380080298 -4.28275482234e+12 +UniRef50_Q753M0 Phosphoenolpyruvate carboxykinase [ATP] 8.20230582985e-06 9.66170692182e-05 35694124951.1 +UniRef50_F3ZB33 Putative ABC transporter substrate binding protein 0.000135864358377 0.000119425219434 -6636682122.21 +UniRef50_UPI00040A2517 hypothetical protein 0.00033213772076 4.02931165964e-05 -1.17821248037e+11 +UniRef50_A0A059IKZ4 0.000161471986946 9.44430084815e-05 -27060421144.2 +UniRef50_UPI000289D94C aspartyl glutamyl tRNA amidotransferase subunit B 4.93947260234e-05 1.52029134454e-05 -13803654318.5 +UniRef50_T1YAV1 Transposase 0.0183137785987 0.00785360256338 -4.22290142625e+12 +UniRef50_B4SDX3 Leucine tRNA ligase 6.79643785696e-06 0.00192147086118 7.72977560392e+11 +UniRef50_Q0C3D1 Protoheme IX farnesyltransferase 1.19822319692e-05 3.44526903829e-05 9071599805.14 +UniRef50_X5QZB1 0.0033688443945 0.00291068386847 -1.8496502662e+11 +UniRef50_H9UQR5 0.000585195313439 0.000314724730229 -1.09192293489e+11 +UniRef50_W4SVT3 7.34010055984e-05 9.2401462068e-05 7670717438.6 +UniRef50_M9VDN7 DeoR family transcriptional regulator 0.00019226790604 0.00403398612018 1.55094878623e+12 +UniRef50_UPI00037E4101 polyamine ABC transporter substrate binding protein 1.01306117802e-05 0.000318600146338 1.24532936448e+11 +UniRef50_UPI00038013D7 hypothetical protein 7.62767558371e-05 1.1081647278e-05 -26320065359.3 +UniRef50_K7RSS9 Pseudouridine synthase 0.000348448605091 0.00376961961972 1.3811687211e+12 +UniRef50_Q9KRL3 Carboxynorspermidine synthase 0.000107410806881 0.000193611674065 34800347885.8 +UniRef50_J3I1E6 2.0642442648e-05 1.70940173787e-05 -1432542825.29 +UniRef50_UPI00037A3195 hypothetical protein, partial 1.70893235369e-05 0.00826822692035 3.33108550068e+12 +UniRef50_A3PIJ7 NUDIX hydrolase 0.00361605067409 0.000413030356916 -1.29309860752e+12 +UniRef50_A0A010IZE0 5.08699593909e-05 0.000261784107254 85148629699.9 +UniRef50_Q82K60 6.96230609209e-05 2.25346633513e-05 -19010163938.5 +UniRef50_A7BWG5 1.73354793907e-05 2.07158598045e-05 1364701054.98 +UniRef50_D7REY5 Caffeine dehydrogenase subunit gamma 8.22779693662e-05 0.000133646217534 20737992144.6 +UniRef50_Q033L0 tRNA modification GTPase MnmE 0.0353775648642 0.0121140186976 -9.39177906327e+12 +UniRef50_UPI000365C459 hypothetical protein 8.19106581083e-06 1.39278241648e-05 2315999745.44 +UniRef50_F7X9S0 Phosphosugar isomerase 0.0130800191909 0.00164423422159 -4.61676672497e+12 +UniRef50_E3H2R2 PTS system, mannose fructose sorbose family, IIC component 0.000692040185662 0.00467764090842 1.6090359206e+12 +UniRef50_X8C840 Transketolase, thiamine diphosphate binding domain protein 5.76837509771e-05 4.93859767822e-05 -3349913267.62 +UniRef50_A5UJG6 0.0013213779871 0.00123047226354 -36699756139.8 +UniRef50_L1INE5 7.41488434345e-05 9.81322363619e-05 9682390034.12 +UniRef50_Q8YNF7 Aminomethyltransferase 4.69890776135e-06 4.68138184012e-05 17002306233.4 +UniRef50_UPI000287F8C3 50S ribosomal protein L18 0.00142954482967 0.000370945629594 -4.27369487545e+11 +UniRef50_E2XNC4 Oligopeptidase B 0.000374127080514 9.44006516318e-05 -1.12928991969e+11 +UniRef50_A8FKX4 Elongation factor P 0.000268744403058 0.0042707649781 1.61566481646e+12 +UniRef50_A3TSE6 ISSfl4 5.06874471652e-05 3.25863489324e-05 -7307635482.04 +UniRef50_K0SGI4 0.000283169731715 3.51964995301e-05 -1.00109836807e+11 +UniRef50_K9DHZ5 Inner membrane transporter YhaO 1.33070237883e-05 2.63503906619e-05 5265767266.98 +UniRef50_K2CR97 0.000163478186016 1.85231234168e-05 -58520137569.9 +UniRef50_UPI000382A7B2 hypothetical protein 0.00011633839862 4.2650992739e-05 -29748510000.3 +UniRef50_I0C1L9 0.0077424418145 0.00334918325015 -1.77361239377e+12 +UniRef50_M9RMB0 Amino acid ABC transporter permease protein 0.00701602023124 0.000463680559831 -2.6452599316e+12 +UniRef50_B9KWA6 0.000175128358184 0.00053133981494 1.43806936299e+11 +UniRef50_A0A058T6Z9 0.000251726533089 0.000801008046243 2.21751687302e+11 +UniRef50_D6K2W1 0.000636009757362 0.000217267557662 -1.69051364564e+11 +UniRef50_A0RR59 Uracil phosphoribosyltransferase 8.99994128535e-06 8.49884162279e-05 30677479817.8 +UniRef50_UPI00037904B4 amino acid ABC transporter ATP binding protein, partial 2.87801029189e-05 0.000282599717884 1.02470093278e+11 +UniRef50_Q1GHA7 Ferredoxin 0.00294303938972 0.000973185433509 -7.95254214948e+11 +UniRef50_UPI00036F7268 MULTISPECIES 5.38517757108e-05 0.00113687333978 4.37229095584e+11 +UniRef50_UPI00047D88C2 stage V sporulation protein D 1.83584615925e-06 4.9107949299e-06 1241394552.58 +UniRef50_UPI000287A5C2 organic hydroperoxide resistance protein 3.46390341799e-05 6.13599021632e-05 10787542306.8 +UniRef50_A9ALK8 FAD dependent oxidoreductase 0.000650079717867 0.000428578711365 -89422674447.9 +UniRef50_UPI00045EB579 hypothetical protein 5.88422342093e-05 7.42582458616e-05 6223633079.77 +UniRef50_Q69XT0 8.6758480038e-05 0.000265019951527 71966343554.4 +UniRef50_UPI00047E74A6 hypothetical protein 2.95534504691e-06 4.17079818546e-06 490693347.32 +UniRef50_B9KQD9 Phage phi C31 gp36 major capsid like protein 0.00597959573684 0.00146385166116 -1.82306129776e+12 +UniRef50_A5W9S9 GTPase HflX 0.00117001585493 0.000578585926887 -2.38767519612e+11 +UniRef50_C8S226 Endoribonuclease L PSP 0.000553065015373 0.000200968105726 -1.42145843139e+11 +UniRef50_UPI000475C0DD iron ABC transporter 3.64264635142e-05 0.000705786027797 2.70228670067e+11 +UniRef50_P56861 Adenylyl sulfate kinase 0.000611933435908 0.0653218668405 2.61241941956e+13 +UniRef50_Q6GJM1 UPF0753 protein SAR0453 0.0144999723743 0.00283211721259 -4.71045630946e+12 +UniRef50_E1PY57 Riboflavin biosynthesis protein 0.000150392824239 0.00336462745012 1.29762596156e+12 +UniRef50_E8P9Z6 DNA repair protein RecN 0.000230261577886 0.00553840728224 2.14296355912e+12 +UniRef50_UPI0003FA1CD0 leucyl tRNA synthase 9.2068801765e-06 3.39818458505e-06 -2345041690.98 +UniRef50_E4PYJ4 Thiol disulfide isomerase and thioredoxin 0.00410369278631 0.00161921754179 -1.00301314415e+12 +UniRef50_F0YAU6 3.78888960073e-05 1.70909184492e-05 -8396398760.09 +UniRef50_V9QPJ8 7.64386143059e-06 2.53199315928e-05 7136046434.25 +UniRef50_UPI0001745568 4 alpha glucanotransferase 1.30591475721e-05 0.000661971863283 2.61974026387e+11 +UniRef50_J2F940 Multidrug efflux RND transporter, membrane fusion protein MexE 0.000226293248633 0.000814365563854 2.37412010114e+11 +UniRef50_UPI0003090BBE chemotaxis protein CheY 3.35779407133e-05 2.87905011906e-06 -12393518850.6 +UniRef50_Q50784 Polyferredoxin protein MvhB 0.00845645231742 0.0014811835677 -2.81600159044e+12 +UniRef50_C0HHH0 2.07205774913e-05 1.20713337178e-05 -3491805849.52 +UniRef50_P75853 Putative aliphatic sulfonates binding protein 0.0037666796059 0.000806757493532 -1.19495687909e+12 +UniRef50_Q2KTS9 Phosphoribosyl ATP pyrophosphatase 4.92649040658e-05 0.000151076227879 41102480788.7 +UniRef50_Q3IXK5 0.0154678049422 0.0018331334815 -5.50448418492e+12 +UniRef50_Q9KUI0 Sulfate thiosulfate import ATP binding protein CysA 0.00438973686944 0.00143047372762 -1.1946908446e+12 +UniRef50_Q3J5B1 0.0019020657152 0.00020627476498 -6.84611616299e+11 +UniRef50_F3ZY36 MATE efflux family protein 0.000206000862184 0.00208388289696 7.58124021645e+11 +UniRef50_Q891I6 Xanthine phosphoribosyltransferase 4.04198800632e-05 2.20562928676e-05 -7413605497.42 +UniRef50_R7TBI6 8.53117590403e-06 3.43876879217e-05 10438591196.6 +UniRef50_UPI00037EC417 hypothetical protein, partial 1.82849133624e-05 7.48610044857e-05 22840462253.2 +UniRef50_UPI000469EAA1 hypothetical protein 4.88133817726e-05 2.52310769979e-05 -9520465824.97 +UniRef50_W7S895 3.82067070859e-05 0.000133325826272 38400755658.3 +UniRef50_UPI00037EBED1 hypothetical protein 0.000167229533186 0.000134465473679 -13227252883.2 +UniRef50_F0PBM9 7.40846026952e-06 0.000815496488974 3.26235053543e+11 +UniRef50_X1YAY8 4.08789242554e-05 0.000115833198071 30259960131.7 +UniRef50_UPI0003B33944 ATPase 1.716573376e-06 5.12628069606e-05 20002422498.8 +UniRef50_H3FTW8 2.38567656569e-05 6.64804947937e-06 -6947369895.55 +UniRef50_S4RAN5 2.1530352262e-05 1.4302145318e-05 -2918115843.37 +UniRef50_UPI0003658A58 hypothetical protein 7.22472887346e-06 0.000107583958687 40516252622.2 +UniRef50_V5VE79 AdaA 0.000223805922247 0.00753602561511 2.95203282103e+12 +UniRef50_Y5XPW9 Serine aspartate repeat containing protein C 0.0016538351933 0.00106540301821 -2.37557289959e+11 +UniRef50_P64588 Transcriptional regulator YqjI 0.00261544531006 0.00135707150627 -5.08020946573e+11 +UniRef50_Q5XHA8 CTP synthase 1 A 2.86620627935e-06 0.000119156222015 46947706391.6 +UniRef50_Q3JNW3 0.000134073408106 0.00030006777835 67013964247.5 +UniRef50_Q93R93 Acetylornithine acetyl lysine aminotransferase 4.89927379852e-06 0.000146790872994 57283379800.7 +UniRef50_UPI0003B5FA5F arginyl tRNA synthetase 4.75176717345e-06 8.32268108788e-06 1441621767.3 +UniRef50_P37325 0.0019003511684 0.000216613720186 -6.79745469624e+11 +UniRef50_B4U1Q9 CRISPR associated endoribonuclease Cas2 0.00223485324481 0.000606815147654 -6.57258958098e+11 +UniRef50_UPI00047540FD ATP dependent DNA helicase RecQ 2.31410617912e-05 8.05548872144e-06 -6090230969.08 +UniRef50_Q9HWZ6 Inorganic pyrophosphatase 0.00484351747574 6.28111270444e-05 -1.93002981883e+12 +UniRef50_UPI00041DD57B hypothetical protein 2.39299532104e-05 1.25557180309e-05 -4591918319.53 +UniRef50_I0CNI8 1.26247943044e-05 0.00250134510197 1.00472692824e+12 +UniRef50_P19072 Branched chain amino acid transport system 2 carrier protein 0.00434696734427 0.000991417624319 -1.35467659917e+12 +UniRef50_UPI00037B9617 hypothetical protein 3.77235867806e-05 1.75025607471e-05 -8163476349.62 +UniRef50_C9YGV0 4.6389785614e-06 2.43927506878e-05 7974840213.47 +UniRef50_P44555 0.00016740442782 0.0109087080578 4.33639608605e+12 +UniRef50_UPI0004408592 acyl CoA dehydrogenase NM domain like protein 6.31859110269e-06 0.0001148399398 43811400175.7 +UniRef50_L8DV59 Pyrimidine nucleoside phosphorylase 0.000334058397217 0.000864341576184 2.14081826655e+11 +UniRef50_I7DAX1 2.10783956259e-06 9.06653965343e-06 2809312619.52 +UniRef50_X2HWT2 Membrane protein 7.14034026878e-05 0.00536752917368 2.13811096452e+12 +UniRef50_R6H7C0 0.000188165395862 7.52651739008e-05 -45579205047.2 +UniRef50_A5ZTX7 TRAP transporter, DctM like membrane protein 7.85583173735e-05 4.36826055632e-05 -14079752830.9 +UniRef50_A8ACU9 0.000187226529253 0.00232250559567 8.62038361934e+11 +UniRef50_O87014 USG 1 protein homolog 0.000235438501092 0.000756893320425 2.10517709535e+11 +UniRef50_B9KU14 Transcriptional regulator, AraC family with amidase like domain 0.00234364589398 0.000186712353132 -8.70780538992e+11 +UniRef50_A6LR19 Nitrogenase 0.000620235931743 0.00178315933054 4.6948644677e+11 +UniRef50_UPI0003FC1CC9 DNA mismatch repair protein MutS 2.77612010877e-06 5.88477466318e-05 22636803703.6 +UniRef50_UPI0002B472DF PREDICTED 2.19545220715e-06 1.48459877987e-05 5107176457.82 +UniRef50_G3XDA7 Cell division protein FtsQ 0.000537898391826 0.000262115418808 -1.11336970445e+11 +UniRef50_A8EWJ4 Dihydroxy acid dehydratase 6.11296593526e-05 8.60642524568e-05 10066401218.0 +UniRef50_UPI0002FFF8E0 hypothetical protein 2.34090951023e-05 0.00332985445807 1.33485256768e+12 +UniRef50_C3KCS9 Lipid II flippase FtsW 0.000751130258207 0.000308584917056 -1.78660984865e+11 +UniRef50_W1DNY7 Acyl CoA dehydrogenases 0.000110096073692 6.47603733676e-05 -18302578552.6 +UniRef50_UPI0000164CF4 4 alpha glucanotransferase 3.97163360216e-05 0.00655871213079 2.63179859942e+12 +UniRef50_S9ULD0 1.2989500354e-05 0.000218990911885 83165297756.7 +UniRef50_R6NN79 Asparagine synthetase 0.000626936148384 0.00116536040765 2.17368480674e+11 +UniRef50_UPI000362C4BE hypothetical protein 1.14666147068e-05 1.60418720227e-05 1847087523.15 +UniRef50_A7MGN4 5.64816940918e-05 6.82246386152e-05 4740770806.23 +UniRef50_UPI00036F08F2 hypothetical protein 8.52882913404e-06 1.33446315541e-05 1944198533.52 +UniRef50_Q8EQK9 GTP cyclohydrolase FolE2 0.0117798639933 0.0017554060213 -4.04699669723e+12 +UniRef50_UPI0001FFEE83 carbohydrate kinase, FGGY 0.000251991762604 0.000123649702104 -51813264758.0 +UniRef50_G7M6Z6 SNF2 related protein 8.65915149539e-05 0.000809803939848 2.91969730744e+11 +UniRef50_A0A016QN06 Peptidase like protein 9.40362566627e-06 0.00167036143697 6.70549050666e+11 +UniRef50_O87050 Z47f protein 9.4060435331e-05 1.24002184055e-05 -32967231656.4 +UniRef50_Q5HQ44 0.0233144648132 0.00896620202729 -5.79256975965e+12 +UniRef50_UPI0003B47736 ABC transporter 5.48534508744e-05 1.50137789542e-05 -16083764441.9 +UniRef50_Q9RYX6 Xanthine dehydrogenase, C terminal subunit 0.00018969919819 0.0154462706107 6.15926509841e+12 +UniRef50_A5N5A2 Predicted methyl accepting chemotaxis protein 0.000711431388129 0.00209672976631 5.59261954794e+11 +UniRef50_Q896Z8 2 hydroxyacid dehydrogenase 0.000888222259522 0.000890936513813 1095777764.92 +UniRef50_A0A023L6S3 AraC family transcriptional regulator 0.00369649322654 0.00111975540808 -1.04026067744e+12 +UniRef50_S6AEX2 0.000872536361223 0.000342307869233 -2.14059748852e+11 +UniRef50_UPI000374E005 hypothetical protein 8.01029820221e-05 1.30437963661e-05 -27072616158.1 +UniRef50_A4BQV7 0.000225601952872 3.43161175401e-05 -77224439064.7 +UniRef50_B2I1F3 GGDEF domain protein 7.8588339106e-05 0.00734373196011 2.93302763314e+12 +UniRef50_Q9RZ34 0.000512598112666 0.066926493974 2.68121047494e+13 +UniRef50_P32053 Prophage CP4 57 integrase 0.00108704608187 0.00117557706547 35741044476.7 +UniRef50_P53579 Methionine aminopeptidase A 6.51516167641e-05 3.98612518492e-05 -10210030663.8 +UniRef50_X1SD71 Marine sediment metagenome DNA, contig 5.37499953376e-05 0.000848859192237 3.20995339875e+11 +UniRef50_UPI0002483124 anaerobic glycerol 3 phosphate dehydrogenase subunit B, partial 8.25213401889e-05 0.000121782328858 15850142912.2 +UniRef50_UPI0002EC7919 citrate lyase 6.96986107929e-05 4.19627471405e-05 -11197308513.8 +UniRef50_N6U9J3 6.0213976558e-06 8.99072720102e-06 1198754775.18 +UniRef50_UPI000219384C amino acid transport protein, partial 8.58069097523e-05 0.000362302042933 1.11624478242e+11 +UniRef50_UPI0003488777 hypothetical protein 0.000169971883727 4.52986058613e-05 -50332132187.7 +UniRef50_UPI000477CFFE hypothetical protein, partial 0.000187598409299 0.000169494629795 -7308717944.12 +UniRef50_A7IPN7 TRAP dicarboxylate transporter, DctM subunit 4.81515137809e-06 8.57893005674e-06 1519483639.33 +UniRef50_P76537 0.00209079907652 0.000312504449935 -7.17919362879e+11 +UniRef50_Q02SV2 Tyrosine tRNA ligase 0.000143811297212 0.000149492989024 2293768706.7 +UniRef50_UPI000379976F hypothetical protein 1.7442224856e-05 6.7817546433e-06 -4303762643.55 +UniRef50_D3E3L7 Ribonuclease III Rnc 0.00349403387883 0.00236911011144 -4.54145529262e+11 +UniRef50_Q8FAM3 0.00199452606254 0.000922864703728 -4.32642841315e+11 +UniRef50_E3H102 0.00318779069318 0.00162760157032 -6.29867494572e+11 +UniRef50_B7A940 Carbamoyl phosphate synthase small chain 3.61833149931e-05 1.85070185093e-05 -7136137803.06 +UniRef50_P0A0V1 LPP20 lipoprotein 0.000898776163933 0.00486273282123 1.60029794577e+12 +UniRef50_A0A023RX60 Membrane protein insertase 0.000287097672285 0.00858287455781 3.34910692932e+12 +UniRef50_Q1CSU8 tRNA pseudouridine synthase D 0.000121638879333 0.00365313791682 1.4257094978e+12 +UniRef50_B3PB14 2.94241870736e-06 9.06645050914e-06 2472346788.7 +UniRef50_U5QR95 ATPase 0.000104676274751 0.000148014819033 17496302150.4 +UniRef50_UPI00036F0DA2 hypothetical protein 1.68735068094e-05 4.6403893996e-06 -4938659615.57 +UniRef50_UPI00046FF35E hypothetical protein, partial 0.000131904504881 0.00199314374117 7.51405119664e+11 +UniRef50_K7VAT5 1.03650276802e-05 3.39550108645e-05 9523565693.15 +UniRef50_A0A024BZJ6 Peptide ABC transporter ATP binding protein 7.63111837258e-05 0.00561826297187 2.23735394427e+12 +UniRef50_W0YTU6 Aminoglycoside response regulator 0.00139879654241 0.00292403335831 6.15756819339e+11 +UniRef50_Q38YN7 Putative Holliday junction resolvase 0.0159539920915 0.00871287441779 -2.92332806338e+12 +UniRef50_D3V3Z5 2.59352942516e-05 3.64886123068e-05 4260504002.66 +UniRef50_S0JG44 0.00277490168795 0.000630240733497 -8.65825945261e+11 +UniRef50_UPI00041DC2F9 ABC transporter 6.6377822421e-05 1.9381710839e-05 -18972906952.8 +UniRef50_A7MUU9 Glutamate 1 semialdehyde 2,1 aminomutase 0.00448710573816 4.0387479338e-05 -1.79519472845e+12 +UniRef50_C1DQZ5 Transcriptional regulator PsrA 0.00133353279737 0.00050698146814 -3.33688914536e+11 +UniRef50_UPI0003A41BA8 succinate semialdehyde dehdyrogenase 1.04463163511e-05 0.000110295071468 40310167722.7 +UniRef50_K8E2T1 3.88114116683e-05 0.000107844034216 27869316848.0 +UniRef50_UPI00047B06D7 acetyltransferase 2.63064605777e-05 5.72319419515e-05 12484996328.9 +UniRef50_UPI0003673946 hypothetical protein 0.00047650590164 0.000255513215777 -89217459168.1 +UniRef50_Q1R4J9 0.00410762933058 0.00182939648424 -9.19750557128e+11 +UniRef50_F9Z1V7 0.000130784016554 0.00155387354433 5.74518705637e+11 +UniRef50_P31058 0.00195010595022 0.00087323945645 -4.34744218173e+11 +UniRef50_L0GJH1 0.00182700804616 0.00158234372656 -98773988191.3 +UniRef50_UPI00047B6853 NAD binding oxidoreductase 1.62431559609e-05 2.65279926873e-05 4152114795.59 +UniRef50_M1MHE2 Glycosyl transferase, family 2 7.44059110757e-05 0.00109975658954 4.13946651362e+11 +UniRef50_UPI00029A566E glycoside hydrolase family protein 1.85400331874e-05 2.42365246543e-05 2299743509.0 +UniRef50_UPI00030D2211 hypothetical protein 6.06044624924e-05 9.06308093076e-05 12122004674.0 +UniRef50_Q67KH8 Imidazole glycerol phosphate synthase subunit HisH 1.14195399126e-05 1.16149392268e-05 78885100.9618 +UniRef50_P39794 PTS system trehalose specific EIIBC component 0.0126677351851 0.00419699302187 -3.41974255899e+12 +UniRef50_A4EHJ0 AzlC family protein 6.29202129575e-05 2.23128649955e-05 -16393684680.5 +UniRef50_U6ED29 Ferrous iron transport protein B 0.0037477827622 0.000722463488991 -1.22135851544e+12 +UniRef50_Q21SX1 D alanine D alanine ligase 0.00486232265292 0.00134949699205 -1.41817082651e+12 +UniRef50_X7X2Q6 2.99192168505e-05 1.04641759106e-05 -7854238767.64 +UniRef50_A6M1J5 0.000186720699949 0.000479394136731 1.18155857936e+11 +UniRef50_A6M1J9 0.000784941123248 0.0030897850838 9.3049379049e+11 +UniRef50_Q98IL5 Mlr2349 protein 0.000102756812312 5.51135375225e-05 -19234174681.2 +UniRef50_B2IM62 Cmp binding factor 1 0.00685109997428 0.00481311565228 -8.22759279671e+11 +UniRef50_U3SS19 0.00483975215599 0.000342065681693 -1.81577122249e+12 +UniRef50_UPI0003D32881 hypothetical protein 0.00101020864089 1.04850860876e-05 -4.03600667061e+11 +UniRef50_R5ZJK5 Pyruvate dehydrogenase complex repressor 0.000165564030199 0.000565809443022 1.6158398472e+11 +UniRef50_P23173 Low affinity tryptophan permease 0.00385371302162 0.000605733083301 -1.3112493583e+12 +UniRef50_E0TBL9 3.47367607272e-05 1.1184156012e-05 -9508475546.49 +UniRef50_J3KZC6 0.000108190273645 0.00046189898304 1.42796546477e+11 +UniRef50_P08987 Glucosyltransferase I 0.00469119221995 0.0019732121045 -1.09728192597e+12 +UniRef50_S5N864 Molecular chaperone GroES 0.00762707122606 0.00231030505892 -2.14644374573e+12 +UniRef50_UPI0001FFE2F2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridin epyrophosphokinase 0.000111894335927 0.000115583837648 1489497120.05 +UniRef50_E8P8Z7 Transposase 5.35260825662e-05 1.8088448861e-05 -14306607595.5 +UniRef50_B7H383 Fumarate reductase flavoprotein subunit 7.09115821271e-05 0.00957584426058 3.83725796093e+12 +UniRef50_UPI0003B789C4 DNA mismatch repair protein MutS 2.01800429941e-06 7.38274774422e-05 28990365509.1 +UniRef50_Q49WG0 Organic hydroperoxide resistance protein like 2 0.00925329932551 0.0074116136236 -7.43511117886e+11 +UniRef50_X5MDF7 Thioesterase family protein domain protein 1.04842235922e-05 1.14341128037e-05 383481931.134 +UniRef50_A4WNH8 Major facilitator superfamily MFS_1 0.00635630223941 0.000293368202811 -2.44768087114e+12 +UniRef50_A2SMC9 Phosphoheptose isomerase 2.06739875477e-05 1.97260897133e-05 -382677987.762 +UniRef50_A8F5R0 Holliday junction ATP dependent DNA helicase RuvB 1.03102797246e-05 1.07474888836e-05 176506702.648 +UniRef50_Q6MAC7 Glutamate 1 semialdehyde 2,1 aminomutase 3.8063877297e-06 6.88982650623e-06 1244822072.13 +UniRef50_Q9JSQ9 Dihydrofolate reductase 1.37734124348e-05 0.00831015680389 3.34935178321e+12 +UniRef50_Q8UEB0 Phosphoribosylformylglycinamidine synthase 2 6.73114358529e-05 1.61416090264e-05 -20657887014.2 +UniRef50_A5UKW8 Prephenate dehydrogenase 0.00241892254872 0.00027871060906 -8.64029823395e+11 +UniRef50_I1VJZ3 PhoH 0.000228938364882 0.00688393220252 2.68670267821e+12 +UniRef50_A3M2Y1 Pseudouridine synthase 0.000127385598041 0.00302870484292 1.17129818235e+12 +UniRef50_C7MCQ3 Pseudouridine synthase 0.000154075913818 0.00713291459184 2.8174428143e+12 +UniRef50_UPI0002F44DE1 amino acid dehydrogenase 2.04340808687e-05 1.10657337888e-05 -3782116678.7 +UniRef50_D2SFI0 SAF domain protein 0.000149165601091 2.45476866008e-05 -50309781313.4 +UniRef50_Q041N3 1.13739241886e-05 1.92577607478e-05 3182801564.5 +UniRef50_Q2NEB6 Phosphoribosylformylglycinamidine synthase 2 0.00404265552258 0.000690512270379 -1.35330136634e+12 +UniRef50_UPI000472CD1A anhydro N acetylmuramic acid kinase 2.59910544547e-06 2.59577889735e-05 9430187183.53 +UniRef50_F0S3X5 4.39325474021e-05 6.14604192458e-05 7076216954.48 +UniRef50_UPI00035C5DE1 hypothetical protein 0.00028201575767 9.02944725924e-05 -77400235470.7 +UniRef50_K9SGR1 Transposase IS4 family protein 6.4290731221e-05 1.72704547517e-05 -18982662614.3 +UniRef50_A0A022S5M2 NAD binding domain of 6 phosphogluconate dehydrogenase family protein 8.1839675541e-05 0.000277514886541 78996483885.6 +UniRef50_P77211 Cation efflux system protein CusC 0.00627290823104 0.00341711104428 -1.15292036887e+12 +UniRef50_Q3IUV3 TraH 0.0366612917254 0.00983177993298 -1.08314031457e+13 +UniRef50_UPI0003B5C889 6 phosphofructokinase 2.27206508363e-05 9.3115154918e-06 -5413432487.17 +UniRef50_E4BA85 8.43449572516e-06 6.02015836948e-05 20899008666.9 +UniRef50_UPI00016A5A20 ABC type spermidine putrescine transport system, permease component II 3.96802204763e-05 0.000114820200813 30334932133.2 +UniRef50_A3M530 Phage tail tape meausure protein lambda family 6.15466286206e-05 0.00534266354363 2.13205170518e+12 +UniRef50_G1UVN7 8.49230890476e-05 2.60476582826e-05 -23768733882.6 +UniRef50_D5AUR3 Tyrosine protein kinase Wzc 0.0019106135318 0.000895621616885 -4.09764691401e+11 +UniRef50_UPI00040C0F6B hypothetical protein 3.70014875625e-06 8.71714428149e-06 2025422659.0 +UniRef50_Q6A666 9.89046258984e-05 0.00627880106146 2.49490002689e+12 +UniRef50_A8AQ52 0.00278632419218 0.00131338164962 -5.94644979469e+11 +UniRef50_Q2GCH6 Malate dehydrogenase 3.42967318858e-05 1.76359014312e-05 -6726181705.9 +UniRef50_E2ZRH0 0.000320621656529 0.000622844134027 1.22010922853e+11 +UniRef50_UPI00047014CA hypothetical protein 0.000186307243351 7.40277057652e-05 -45328627148.3 +UniRef50_UPI000161E9D3 2 methyl branched chain enoyl CoA reductase isoform I 3.74463278101e-06 3.06672046248e-05 10868972630.5 +UniRef50_P0ADV7 Probable phospholipid binding protein MlaC 0.00607319025028 0.00186853258617 -1.69747189595e+12 +UniRef50_UPI00039F6CD4 glutathione ABC transporter permease 1.53736692184e-05 2.6495755142e-05 4490122570.7 +UniRef50_Q47NN7 Uroporphyrinogen decarboxylase 1.03579746867e-05 1.00471023132e-05 -125502992.015 +UniRef50_Q9RXX4 0.000405898912746 0.0188208162243 7.43432809514e+12 +UniRef50_A4WS74 0.000330741114618 8.7435946252e-05 -98225282159.5 +UniRef50_P39310 0.00114051067353 0.00275961606811 6.53652716449e+11 +UniRef50_B3DX01 Aspartate tRNA ligase 2.75347321435e-06 3.92312955488e-06 472204617.969 +UniRef50_M9RV27 UPF0301 protein OA238_c37660 5.05275766811e-05 0.000110945811078 24391582641.1 +UniRef50_P0AE13 AMP nucleosidase 0.00458100208324 0.00066283845966 -1.58181073611e+12 +UniRef50_UPI00046665BD hypothetical protein 6.18100265434e-05 2.85437845488e-05 -13429990115.9 +UniRef50_UPI000473A39B 30S ribosomal protein S15, partial 0.000164852158096 0.000133539151667 -12641444949.2 +UniRef50_UPI00026CDD90 putative esterase 0.000182992757039 0.000113772798055 -27944946866.3 +UniRef50_M2JJ86 Aryl alcohol dehydrogenase 0.00035985959882 0.00175435666453 5.6297557783e+11 +UniRef50_M9RIF3 5.95076213481e-05 0.000227692871371 67898449299.4 +UniRef50_UPI000467C7F7 hypothetical protein 1.49539822438e-05 0.00010157590637 34970333740.3 +UniRef50_Q4L8I6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0277376706018 0.00566421499871 -8.91132489873e+12 +UniRef50_G7M6V2 Cof like hydrolase 0.0012355547902 0.00142666982638 77155485351.1 +UniRef50_UPI0003B6B463 protein phosphatase 8.57644775715e-06 1.0581766776e-05 809571895.941 +UniRef50_Q9RS72 0.000129720271086 0.0445737677852 1.79426073712e+13 +UniRef50_L0LHI9 8.82023075829e-05 7.20336255997e-05 -6527495328.66 +UniRef50_Q3IVA7 Phosphoglucomutase phosphomannomutase 0.000802297378384 0.000376567163405 -1.71872512084e+11 +UniRef50_W5X4J6 Glycoside hydrolase family protein 7.48994529727e-06 0.000100935265689 37725022545.2 +UniRef50_P0A635 Cysteine tRNA ligase 4.56035083835e-06 1.15090948905e-05 2805293244.53 +UniRef50_Q838S5 Glyoxalase 4.20870301763e-05 0.00119523348917 4.65539376193e+11 +UniRef50_K7RWW8 3 5 exonuclease 0.000543019546019 0.003928756062 1.36686337916e+12 +UniRef50_Q1GDK6 Uroporphyrinogen decarboxylase 0.0142716639859 0.00348555649866 -4.35448395301e+12 +UniRef50_B0RVK3 Succinyl CoA 0.0133136531123 0.0399481304585 1.07526653465e+13 +UniRef50_A8ACZ6 Xaa Pro dipeptidase 0.00451495223133 0.00080613097734 -1.49729665259e+12 +UniRef50_A8LRK2 0.000437041328714 0.000204775113178 -93768721438.9 +UniRef50_R7S2B2 HD domain PDEase like protein 2.41597887256e-06 6.70515302197e-06 1731592238.2 +UniRef50_F0XZC7 0.000269520191837 0.000535785712312 1.07494658061e+11 +UniRef50_Q6GBA6 Histidinol phosphate aminotransferase 0.0186552743932 0.00669131202621 -4.82999842189e+12 +UniRef50_UPI00037E8A1E hypothetical protein 1.17587631553e-05 0.000174776342465 65812197218.1 +UniRef50_UPI000255621F hypothetical protein 3.3329442087e-05 3.02511250281e-05 -1242754371.88 +UniRef50_G2RRU8 Glycerol uptake facilitator Permease 0.0148307840887 0.000525786418738 -5.77510310144e+12 +UniRef50_UPI0003FB737F DNA gyrase subunit A 6.87623927077e-06 1.39678457209e-05 2862968547.71 +UniRef50_J3I8M6 3.09107475349e-05 0.000591634499551 2.26371059543e+11 +UniRef50_Q8XBT3 Universal stress protein G 0.00657223082255 0.000566102310275 -2.42474778389e+12 +UniRef50_M9VBX6 0.000224004066923 0.00475112126189 1.82765276558e+12 +UniRef50_M4WZP2 0.000238412203486 0.000661156802679 1.70667182354e+11 +UniRef50_UPI00016C466B Extracellular ligand binding receptor 7.59667976638e-06 2.38021061735e-05 6542329503.49 +UniRef50_Q1IL91 NADH quinone oxidoreductase subunit B 2 2.91782887407e-05 0.000134068517014 42345472301.7 +UniRef50_A6VB56 0.00140130727096 0.000383528188565 -4.10889905119e+11 +UniRef50_T1A5J7 1.08886392692e-05 4.41908693859e-05 13444518962.4 +UniRef50_UPI0003B56320 DNA repair protein RadA 8.88224326416e-06 2.19455277163e-05 5273808237.84 +UniRef50_UPI000382943F hypothetical protein, partial 0.00013233442521 2.71424058965e-05 -42467309048.3 +UniRef50_S8UV07 0.000149500838014 4.5608757559e-05 -41942507778.9 +UniRef50_UPI0001913D8E hypothetical protein, partial 5.60626694013e-05 6.13547616856e-05 2136482596.45 +UniRef50_W4TLW8 ABC type multidrug transport system 0.000416344840642 0.000714475899663 1.20359167006e+11 +UniRef50_Q93K67 Arginine deiminase 0.00034531198059 0.00609572905263 2.32151393754e+12 +UniRef50_UPI00036FB25E GMP synthase 1.35509705451e-05 1.07792058092e-05 -1118995437.26 +UniRef50_V9U0L1 Transcriptional regulator 0.000238387123302 0.00026057356341 8956938129.84 +UniRef50_F8FR22 ABC transporter permease protein 0.0245589962513 0.00768157444921 -6.81362229076e+12 +UniRef50_UPI00035D0F9F hypothetical protein, partial 1.50770599952e-05 0.000144315739263 52175240757.4 +UniRef50_S5S114 CarD family transcriptional regulator protein 0.00476040117614 0.00083803972742 -1.58350544964e+12 +UniRef50_UPI00037BA794 hypothetical protein 1.33490158393e-05 1.64159890884e-05 1238174736.66 +UniRef50_E8SJL6 Manganese ABC transporter, ATP binding protein SitB 0.0194900015167 0.00492071690459 -5.88179898313e+12 +UniRef50_E1W2A8 Deoxyribose phosphate aldolase 0.000393113982 0.0012902373158 3.62179698796e+11 +UniRef50_UPI0003175B32 hypothetical protein 1.88641176413e-05 2.55057759843e-05 2681318975.38 +UniRef50_A6LZB7 0.000672355115255 0.0044009909253 1.50529603202e+12 +UniRef50_A6LZB6 0.000216945970609 0.000301856938874 34279599863.3 +UniRef50_Q6GB21 0.00295060832698 0.000896840665248 -8.29131207604e+11 +UniRef50_UPI0003B57978 siderophore interacting protein 1.14355928213e-05 0.000610495452829 2.41847816776e+11 +UniRef50_C1N717 Predicted protein 6.18829489886e-05 0.000157460542253 38585847269.8 +UniRef50_Q5HIS8 Single stranded DNA binding protein 1 0.055049965532 0.0245721877675 -1.23042528879e+13 +UniRef50_UPI00046AB08C hypothetical protein 8.68352887165e-06 0.000109258858791 40603494886.4 +UniRef50_U7I8Y0 0.00129634534954 0.000474642211084 -3.31731640426e+11 +UniRef50_Q8DW20 AguR protein 0.00545234688493 0.00100319420213 -1.79617753529e+12 +UniRef50_UPI00046CE535 hypothetical protein 5.24391124012e-05 9.07922112568e-06 -17504920193.6 +UniRef50_Q4EE14 0.000283498777876 0.000438160392755 62438791838.1 +UniRef50_A6M0G1 Extracellular solute binding protein, family 5 0.000834814193266 0.00194451863003 4.48001298725e+11 +UniRef50_M1Y549 0.000165011658617 4.22318236215e-05 -49567726065.9 +UniRef50_P37597 Inner membrane transport protein YdhC 0.00314854546762 0.000317902734364 -1.14276520731e+12 +UniRef50_UPI00046FDF41 hypothetical protein 1.16432129652e-05 2.66589005524e-05 6062017342.16 +UniRef50_M3EIH0 Alkaline phosphatase 8.92785718753e-06 0.000371051242698 1.46193654484e+11 +UniRef50_Q88FX9 Nicotinate dehydrogenase subunit A 0.000249085644463 0.00101493398536 3.09182373236e+11 +UniRef50_P77923 Delta aminolevulinic acid dehydratase 0.000279099075769 0.00633465280423 2.44470135018e+12 +UniRef50_K5YXR4 2.56515961025e-06 1.58673936802e-05 5370275130.83 +UniRef50_Q6FED0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.000373009181642 0.00588864850608 2.22673127978e+12 +UniRef50_B0KA54 GTPase Era 0.00169028099822 0.000719824693411 -3.91785119089e+11 +UniRef50_UPI00037E38E9 hypothetical protein, partial 1.93050692661e-05 0.000132412544879 45662875889.8 +UniRef50_B9DIA5 Methylenetetrahydrofolate reductase 0.0237864330294 0.00515324347738 -7.52244727709e+12 +UniRef50_W5XBY9 Sugar ABC transporter permease 3.88534849052e-05 7.3502942433e-05 13988411200.6 +UniRef50_P71348 Glutamate pyruvate aminotransferase AlaA 0.000716282105868 0.00231379459493 6.44935395516e+11 +UniRef50_UPI00036FDD71 hypothetical protein 5.21628421797e-06 9.220967669e-06 1616739852.17 +UniRef50_Q8CVL1 Multidrug resistance protein MdtE 0.00404971879983 0.0018552535062 -8.85932568156e+11 +UniRef50_A6LTI4 0.000150592814697 0.0013614924166 4.88855028696e+11 +UniRef50_A6LTI6 0.000152416953778 0.00374207894439 1.44919059572e+12 +UniRef50_A6LTI7 0.000138803792491 0.00162901646139 6.01617141401e+11 +UniRef50_Q98QY9 Glycerol kinase 2.17158329999e-06 8.02616276262e-05 31525909167.1 +UniRef50_Q03ZA4 Ribosomal RNA small subunit methyltransferase G 0.0147534322414 0.0128532572221 -7.67123973061e+11 +UniRef50_X6FLX7 C4 dicarboxylate ABC transporter 1.28831672507e-05 2.86776151455e-05 6376412434.8 +UniRef50_X0T626 Marine sediment metagenome DNA, contig 3.95622022752e-05 1.29442402025e-05 -10745997927.9 +UniRef50_A4WNY5 0.0150506381063 0.00980029789019 -2.11962677416e+12 +UniRef50_F2D9R2 Predicted protein 5.16745400073e-06 0.000122148700345 47226764670.4 +UniRef50_O25042 0.000182360381085 0.00698167885197 2.74496830371e+12 +UniRef50_UPI000377F130 hypothetical protein 0.000121574936125 8.00361562986e-05 -16769715154.1 +UniRef50_Q2LUS9 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.73045032e-05 8.36942852922e-06 -3607199290.29 +UniRef50_B7V621 0.000657658069571 0.00109985116255 1.78518777955e+11 +UniRef50_Q18CF3 DNA directed RNA polymerase subunit beta 4.24912972522e-06 3.0088349183e-06 -500722233.682 +UniRef50_X4QVT5 Antitoxin HicB 5.99138378937e-05 0.000176523274017 47076660321.6 +UniRef50_R0U5E9 3.26576008664e-05 1.08033761939e-05 -8822818681.78 +UniRef50_H7CZX2 DNA replication protein DnaC 0.000246086316459 0.00157599001565 5.36898443117e+11 +UniRef50_X5K1L0 0.000247832284945 0.000462096708163 86501176973.3 +UniRef50_B1LXW0 0.00254370283955 0.00117886895209 -5.51000188763e+11 +UniRef50_UPI0003ACEF34 dihydrofolate synthase 2.00470741962e-06 2.02209855765e-05 7354135030.81 +UniRef50_B2UX43 Chromosomal replication initiator protein DnaA 0.0112623430536 0.00456642502132 -2.70322427779e+12 +UniRef50_Q6G904 DNA primase 0.0190406576145 0.00471023152792 -5.78536886526e+12 +UniRef50_Q0TMX8 Threonine tRNA ligase 0.000204451528796 0.000833818936025 2.54083345505e+11 +UniRef50_D0CZU1 2 oxoglutarate dehydrogenase E1 component 0.00835458268566 0.0021186019053 -2.51754196512e+12 +UniRef50_A5UN27 Putative antimicrobial peptide ABC transporter, permease component 0.00123730632132 0.000673240753426 -2.27720191622e+11 +UniRef50_UPI0003093DAF hypothetical protein 8.82278766945e-06 5.10323507815e-06 -1501629025.15 +UniRef50_Q9HZS1 Histidine transport ATP binding protein HisP 0.00054202023741 0.000244737600989 -1.20016648391e+11 +UniRef50_Q02F58 Phosphoserine phosphatase 0.00039839037489 0.00577165786004 2.16925402116e+12 +UniRef50_Q04849 Nitrogen assimilation regulatory protein NtrX 0.0042029536618 0.00092009278594 -1.32533122082e+12 +UniRef50_UPI0002378F3D ABC transporter 3.81340870863e-06 3.00118447326e-06 -327904890.931 +UniRef50_A0M4U6 Phosphopantetheine adenylyltransferase 1.26616957756e-05 1.68303758117e-05 1682947286.03 +UniRef50_Q9CHW5 Phosphoserine aminotransferase 0.00447947331171 0.00131520116333 -1.27745549629e+12 +UniRef50_UPI0002E6BDE4 hypothetical protein 7.77256900993e-05 1.06899487625e-05 -27063151398.7 +UniRef50_P66901 Diaminopropionate ammonia lyase 0.00335974377099 0.00232366285866 -4.1827857845e+11 +UniRef50_P0A2E0 Nitrogen regulation protein NR 0.00350135714236 0.000418586134499 -1.24455248573e+12 +UniRef50_B9KU76 Gas vesicle protein 0.0012505997281 0.00081279827118 -1.76745820587e+11 +UniRef50_A6M095 Pentapeptide repeat protein 0.000342525236349 0.00135590410539 4.09113484989e+11 +UniRef50_Q8D653 Sulfate thiosulfate import ATP binding protein CysA 0.000116661898341 4.376729536e-05 -29428445740.8 +UniRef50_A5UM14 Proteasome subunit beta 0.00158955364513 0.00216260462366 2.31347712159e+11 +UniRef50_P68209 Succinyl CoA ligase [ADP forming] subunit alpha 1, mitochondrial 5.60996344374e-05 3.62113745594e-05 -8029134569.14 +UniRef50_Q9RZP0 Potassium transporting ATPase B chain 1.38425487671e-05 0.00784244833036 3.16050422182e+12 +UniRef50_V9ZQ34 0.000223384954315 0.000315846743525 37327958937.8 +UniRef50_B0K4D2 N acetyl gamma glutamyl phosphate reductase 5.3310024025e-06 1.70557550182e-05 4733426509.85 +UniRef50_UPI0003B7561B transposase, partial 9.69707931002e-05 8.32649203064e-05 -5533229036.83 +UniRef50_UPI00029A0E68 dgpfaetke family protein 2.63646142194e-05 1.51699170307e-05 -4519436629.46 +UniRef50_Q2CH80 2.78907460348e-05 0.000326119481191 1.20398600061e+11 +UniRef50_UPI000467FCE1 ABC transporter ATP binding protein 2.5975302123e-05 4.54469068407e-05 7860925768.0 +UniRef50_L2Q9X2 9.66958834137e-05 1.61625606657e-05 -32512290648.4 +UniRef50_UPI000361DBC6 hypothetical protein 6.53103590256e-06 6.82083735101e-05 24899898058.2 +UniRef50_D8J0Q1 2 isopropylmalate synthase 3.21998901321e-06 1.2083083206e-05 3578139888.03 +UniRef50_A0A014L0D1 Polyketide cyclase 2.79246277729e-05 4.74736117826e-05 7892164737.73 +UniRef50_UPI00031B5027 hypothetical protein 8.94809452849e-06 2.11444371808e-06 -2758828690.49 +UniRef50_B0CEH5 0.000116660721695 4.58869325352e-05 -28572247175.9 +UniRef50_P0AA79 Hexuronate transporter 0.0034566739948 0.00069089442604 -1.11657915184e+12 +UniRef50_X2GRS8 FAD dependent pyridine nucleotide disulfide oxidoreductase 0.0158425986149 0.00172405589693 -5.69982894926e+12 +UniRef50_A4W853 Negative modulator of initiation of replication 0.00269488381753 0.000326316801329 -9.56219570026e+11 +UniRef50_Q2NUD2 Cytidine deaminase 0.00291438493102 0.000755369253966 -8.71621122927e+11 +UniRef50_F0Y8N9 6.72786260995e-05 4.58191542328e-05 -8663452129.92 +UniRef50_T1YB06 Ribosomal RNA small subunit methyltransferase E 0.0200712432531 0.00498183350878 -6.09177988165e+12 +UniRef50_Q8DWK3 0.00605372499495 0.00204170473111 -1.61970181354e+12 +UniRef50_M1XHY8 Membrane protein, putative 0.0048650516939 0.00205254462429 -1.13544361734e+12 +UniRef50_Q9RVM4 Transcriptional regulator 0.000436232529273 0.0420832337783 1.68134054704e+13 +UniRef50_D7AF64 NADPH Fe oxidoreductase subunit beta 3.03344909874e-06 3.92985887758e-06 361891627.903 +UniRef50_UPI000427FE74 hypothetical protein 6.26062635493e-06 8.81401445695e-06 1030834110.38 +UniRef50_A1WXT0 Zinc import ATP binding protein ZnuC 2.19873152004e-05 3.53139133472e-05 5380111207.61 +UniRef50_UPI000380220D hypothetical protein, partial 3.97351870416e-05 0.000198504469146 64097107503.6 +UniRef50_P35630 NADP dependent isopropanol dehydrogenase 0.00220148601437 0.00137493197121 -3.33690010182e+11 +UniRef50_UPI0003641C87 hypothetical protein 1.00212644815e-06 1.75723760438e-05 6689613101.61 +UniRef50_Q47152 0.00549178776369 0.00403200465087 -5.89332356199e+11 +UniRef50_UPI00036884C8 hypothetical protein 0.000200884117885 6.63884889273e-05 -54297535857.3 +UniRef50_Q8KA76 RNA polymerase sigma factor RpoH 0.0022789234777 0.000414479586229 -7.52698878286e+11 +UniRef50_W4KQX7 1.72670631544e-06 9.4363042766e-06 3112459304.33 +UniRef50_UPI0003734279 hypothetical protein 2.74371199291e-06 2.59455287883e-06 -60217364.7423 +UniRef50_UPI000395CB52 2.44573020013e-05 4.11891037648e-05 6754833694.22 +UniRef50_C5N1M7 0.000761034404067 2.45897694793e-05 -2.97311736175e+11 +UniRef50_UPI0003F148E4 glutamate rich protein 2 isoform 3 3.49335774146e-06 0.000598228434046 2.40101848524e+11 +UniRef50_UPI0003A99930 hypothetical protein 3.4046696582e-06 1.13995932104e-05 3227648746.77 +UniRef50_B1M288 1.97176912657e-05 9.95149945399e-06 -3942731479.04 +UniRef50_Q5Y0N1 RNA binding tegument protein 0.000124384520751 0.00013493960599 4261217436.45 +UniRef50_A9M0X9 0.00108390792412 0.00386389038262 1.12231303272e+12 +UniRef50_W5V8H5 O methyltransferase 0.000137267632307 0.000497740449558 1.45527299823e+11 +UniRef50_Q8E7H4 Sensor protein LytS 0.00577726689744 0.00158359786283 -1.69303565138e+12 +UniRef50_UPI00021977F6 DNA repair ATPase 3.0831970033e-06 5.20041056974e-06 854745097.904 +UniRef50_A0LBS6 Plasmid pRiA4b ORF 3 family protein 0.000121394663855 1.01435046007e-05 -44913458196.1 +UniRef50_Q5PJK8 sn glycerol 3 phosphate binding periplasmic protein UgpB 0.00223863487834 0.000543540262579 -6.84330497532e+11 +UniRef50_Q58400 Putative hydrogenase expression formation protein MJ0993 0.00450158673608 0.000933629868734 -1.4404279711e+12 +UniRef50_Q3IF99 Twitching motility protein PilU 0.000245428490074 0.00494108344441 1.89569352723e+12 +UniRef50_B9KX88 0.0358514246382 0.00541999804001 -1.22855403533e+13 +UniRef50_UPI0003B52C75 ATP binding protein 4.92991863429e-05 1.65065199187e-05 -13238801846.7 +UniRef50_UPI00037FF3F7 hypothetical protein 9.33313758677e-06 5.01751984567e-05 16488441161.6 +UniRef50_Q3JNU0 NAD transhydrogenase subunit beta 0.000935208884628 0.0101613367368 3.72470103124e+12 +UniRef50_Q87NA5 Probable intracellular septation protein A 0.00331967903984 0.0010287948211 -9.24858071416e+11 +UniRef50_A4WC00 Protein MtfA 0.00172841700889 0.000516954293387 -4.89082364567e+11 +UniRef50_V6USS0 Leucyl tRNA synthetase 0.000331184007446 0.000205214057872 -50855614468.1 +UniRef50_P25131 0.00457780669233 0.00186285211532 -1.09606047898e+12 +UniRef50_A4XZS6 GCN5 related N acetyltransferase 0.000768644479962 0.000575292282856 -78058654670.0 +UniRef50_I6SSZ2 Transcriptional regulator 0.00666524396169 0.00288034041398 -1.5280120082e+12 +UniRef50_UPI0004777E62 molecular chaperone GroES 1.23073522032e-05 0.000134086356488 49163678426.3 +UniRef50_L7WXY9 0.120662254724 0.0336332433747 -3.51346798478e+13 +UniRef50_X1NEY9 Marine sediment metagenome DNA, contig 0.000230812002296 5.86934495774e-05 -69486371864.8 +UniRef50_Q4L9U1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0108801536274 0.00283087359372 -3.24959312537e+12 +UniRef50_A3PS34 Methyltransferase type 11 0.000201864165162 0.000299813913899 39543515543.7 +UniRef50_F2DK91 Predicted protein 7.83506406181e-05 4.48228842268e-05 -13535566687.0 +UniRef50_Q9RUN0 UvrABC system protein C 6.14131218259e-05 0.0159052575331 6.39635441468e+12 +UniRef50_A6Q9M2 Imidazoleglycerol phosphate dehydratase 1.14988276095e-05 2.39261597791e-05 5017066497.38 +UniRef50_B0VKB6 Type II secretion system protein L 0.000315693634753 0.0100234597846 3.91914432238e+12 +UniRef50_W8T948 3.73374070743e-05 0.000135562049752 39654493600.9 +UniRef50_Q1CHM2 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 6.12250743721e-05 2.020250005e-05 -16561316657.4 +UniRef50_D2ATJ4 2 isopropylmalate synthase 2.35739608585e-06 1.17798286299e-05 3803951644.28 +UniRef50_UPI000349D801 hypothetical protein 1.09341186113e-05 0.00159030631402 6.37611936363e+11 +UniRef50_L7VSY8 0.000100800241366 0.00270507731418 1.05137861237e+12 +UniRef50_UPI00035C1945 hypothetical protein, partial 2.55300425828e-05 1.00574178025e-05 -6246488494.26 +UniRef50_F5XRW0 0.000781403775608 0.00447389694955 1.49070480631e+12 +UniRef50_E9USM4 3.23090073268e-06 4.03717959656e-06 325504671.503 +UniRef50_B8A2U2 0.000124141865608 2.29945034618e-05 -40834431316.1 +UniRef50_D8JJP8 8.95931935559e-05 0.0064113700103 2.55217887784e+12 +UniRef50_L7VTK0 0.00013198810799 0.000978427621959 3.4171801877e+11 +UniRef50_A0A017HMR2 0.000481737024421 8.39305871475e-05 -1.60599340361e+11 +UniRef50_UPI0003F79B23 N anthranilate isomerase 7.6025546299e-06 8.23527065541e-05 30177553619.3 +UniRef50_B9KL86 0.00228494165222 0.00157007379245 -2.88600927404e+11 +UniRef50_Q2YXZ9 Probable CtpA like serine protease 0.0159507206765 0.00423847117099 -4.72837885083e+12 +UniRef50_C5MZV6 0.00200184172698 0.00212563122969 49975341312.0 +UniRef50_A3PGB9 Two component, sigma54 specific, transcriptional regulator, Fis family 8.90297143505e-05 0.000134438560782 18332108533.6 +UniRef50_UPI000308CCAF hypothetical protein 1.15697317314e-05 1.08862330483e-05 -275936805.84 +UniRef50_I6SVD2 ABC transporter permease 0.0054905474429 0.00137523189429 -1.66140338757e+12 +UniRef50_X5NVN5 Oxidoreductase 6.60304303512e-05 4.78625120955e-05 -7334611545.25 +UniRef50_E5ANB9 Transposase 8.41450708557e-05 4.46984999313e-05 -15925064746.0 +UniRef50_UPI00035E5C37 hypothetical protein 1.90399327373e-05 0.000590036323223 2.30518249753e+11 +UniRef50_B0VTM3 Signal peptidase I 0.000380643142163 0.00462802623346 1.71472067521e+12 +UniRef50_Q6ASN4 GMP synthase [glutamine hydrolyzing] 2.58234881714e-05 3.22168882966e-05 2581094086.39 +UniRef50_Q8RBE5 Dephospho CoA kinase 1.59608343145e-05 1.35740187458e-05 -963586734.605 +UniRef50_A6LWC7 Glycerol 1 phosphate dehydrogenase (+)) 0.000119206101737 0.000718768717791 2.42050785562e+11 +UniRef50_W1GFB3 ABC peptide transporter, inner membrane subunit 0.000672732690309 0.000285336752184 -1.56396494104e+11 +UniRef50_U5UCP9 Putative transposase 0.000399030676636 0.000192226710349 -83489298960.1 +UniRef50_UPI000255CD61 peptidase M24 5.11554200297e-06 2.17259459547e-05 6705823907.88 +UniRef50_U3TGB3 ATPase components of ABC transporters 0.00564049648223 0.000637189910954 -2.0198962603e+12 +UniRef50_F8ACN4 TraU family protein 0.000105155868877 1.56713989583e-05 -36125978604.1 +UniRef50_UPI0003710E05 hypothetical protein 5.48727988055e-06 8.86800168774e-06 1364838879.68 +UniRef50_UPI000287BD0C iron siderophore uptake system transmembrane protein 1.85570698396e-05 2.46666861624e-05 2466527082.94 +UniRef50_U2SDU2 Macro domain protein 1.86379009635e-05 0.000170827956918 61440993171.0 +UniRef50_P21362 Protein YciF 0.00246758976008 0.000392882534625 -8.37584766439e+11 +UniRef50_L8FTT7 0.000174130730822 0.000293779615222 48303722889.2 +UniRef50_Q1GEB3 0.000428390235975 7.15630141786e-05 -1.44055528201e+11 +UniRef50_D8JLE3 Cell division protein FtsQ 0.00014334910969 0.0052397511638 2.05748004913e+12 +UniRef50_Q1GEB7 0.000144532557278 8.38466394581e-05 -24499649723.8 +UniRef50_G9F1Y9 2 enoate reductase FldZ 0.00033784934993 0.00168181456954 5.42575251464e+11 +UniRef50_J3PLS0 1.76417593292e-05 6.45814050655e-05 18950110998.0 +UniRef50_Q01V55 Dihydroorotase 1.89253211283e-05 7.18785523468e-06 -4738559016.15 +UniRef50_R0VGG6 6.24316632184e-05 1.11943812053e-05 -20685119500.8 +UniRef50_UPI00021958FB inosine 5 monophosphate dehydrogenase 1.16221459969e-05 6.74000538166e-05 22518225858.7 +UniRef50_C5N5S9 Streptolysin associated protein SagD 0.0065610370904 0.00158912095191 -2.00722355738e+12 +UniRef50_UPI000472128D hypothetical protein, partial 8.55214457501e-06 1.20275982234e-05 1403083286.47 +UniRef50_P36647 Prepilin peptidase dependent protein D 0.000267089143052 0.000404543431768 55491983108.5 +UniRef50_Q3KIW4 Nicotinate phosphoribosyltransferase 0.00184569590458 0.000481871637809 -5.50592592501e+11 +UniRef50_UPI00040FE5F8 hypothetical protein 0.000140245922481 0.000111898014332 -11444398387.7 +UniRef50_P45394 Inner membrane protein YrbG 0.00248425803855 0.000438650232183 -8.25836973862e+11 +UniRef50_Q8PWQ2 UPF0107 protein MM_1524 0.000687448771559 0.0221487528896 8.66419183225e+12 +UniRef50_P25718 Alpha amylase 0.00293335089222 0.000944551521626 -8.0290271122e+11 +UniRef50_UPI00047A8026 D ribose transporter ATP binding protein 3.1122563277e-06 1.14662674595e-05 3372616809.15 +UniRef50_Q3IV67 0.00452853633036 0.00113110222496 -1.37158583955e+12 +UniRef50_Q5FL71 Prolipoprotein diacylglyceryl transferase 7.28625190608e-06 0.000677372903543 2.70522204154e+11 +UniRef50_K7RVZ0 TIGR01777 family protein 0.000126249494601 0.00810572466251 3.22141204446e+12 +UniRef50_B0VR24 9.03442746157e-06 0.00300645552726 1.21009568048e+12 +UniRef50_Q17ZN4 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000451427665587 0.00765920185557 2.90986688983e+12 +UniRef50_A0A017TGF9 0.000117392175095 5.00305302093e-05 -27194722660.7 +UniRef50_R7C015 ABC transporter permease protein 0.000658106748512 0.000983244159752 1.31261962802e+11 +UniRef50_P23874 Serine threonine protein kinase HipA 0.00188077423819 0.00165633768778 -90607789546.7 +UniRef50_P54385 Glutamate dehydrogenase, mitochondrial 6.52898490794e-06 1.27182257874e-05 2498672493.56 +UniRef50_V9T176 Phage tail length tape measure protein 0.000690280184256 0.000828016336657 55605774936.9 +UniRef50_UPI0004690011 hypothetical protein 1.4585432813e-06 3.19258010404e-06 700051944.365 +UniRef50_Q729V5 1,4 alpha glucan branching enzyme GlgB 3.77878698851e-06 7.6275014235e-06 1553773246.44 +UniRef50_P76251 D malate dehydrogenase [decarboxylating] 0.00279773383952 0.00723658526859 1.79201879275e+12 +UniRef50_M4QX58 0.000154919010474 0.00433940503256 1.68932835654e+12 +UniRef50_P05417 Ubiquinol cytochrome c reductase iron sulfur subunit 0.0039820486114 0.000602687153456 -1.36428969e+12 +UniRef50_B4V7N1 Integral membrane protein 3.56200252365e-05 3.51090316775e-05 -206294370.364 +UniRef50_S5XTF2 0.000275438385494 6.99930109575e-05 -82940818798.4 +UniRef50_P76418 0.00334559105602 0.0014774852516 -7.5417723748e+11 +UniRef50_P65264 Lipoprotein signal peptidase 0.000678118542849 7.33652145062e-05 -2.4414633981e+11 +UniRef50_Q8NXI7 MW0768 protein 0.0165691126842 0.000600644146164 -6.44666670394e+12 +UniRef50_J7M936 Competence protein 9.31772114203e-06 2.36436077487e-05 5783536221.52 +UniRef50_UPI000466F951 hypothetical protein 1.11235640618e-05 4.83065357461e-05 15011221955.3 +UniRef50_A0A023S2A4 Anhydratase 0.000226319551871 0.0104032284435 4.10854300425e+12 +UniRef50_UPI00036D0961 hypothetical protein 1.08090106798e-05 6.91415519432e-05 23549562728.8 +UniRef50_F4AWZ4 Acetyl CoA acetyltransferase 0.0119538864178 0.00416581225511 -3.1441411099e+12 +UniRef50_UPI0004692135 cell division protein 2.41999729773e-06 2.92030284286e-05 10812638332.3 +UniRef50_I6T6L1 0.00490303065892 0.00115237180559 -1.51418700485e+12 +UniRef50_F9YRZ6 HD domain containing protein 2 2.69534117763e-05 2.25242321922e-05 -1788114150.25 +UniRef50_X1T676 Marine sediment metagenome DNA, contig 1.63419450484e-05 0.00021614616051 80663413655.5 +UniRef50_I0I0B9 2.982452067e-05 1.82535131153e-05 -4671357742.06 +UniRef50_Q8CPM1 Protoheme IX farnesyltransferase 0.0209683406444 0.00601370238337 -6.03737098001e+12 +UniRef50_UPI0003613269 hypothetical protein 9.33464011615e-05 8.58097414564e-05 -3042642008.16 +UniRef50_A5UJC1 Predicted transcription regulator 0.00308898325174 0.000303407573826 -1.12457108403e+12 +UniRef50_Q9HSC3 Archaeal Lon protease 0.00252692122893 0.000281117718886 -9.06658436111e+11 +UniRef50_A3I3T9 0.000214034627228 0.000197007803564 -6873937655.78 +UniRef50_D6SE14 4 phosphopantetheinyl transferase family protein 0.0172477035074 0.000998060263055 -6.56018038327e+12 +UniRef50_O26872 0.00220884133646 0.00154178300083 -2.6929963582e+11 +UniRef50_F6DA35 2.36597432698e-05 1.36035498907e-05 -4059808670.51 +UniRef50_A0A016QP53 0.000369661543406 0.000100050246086 -1.08845389231e+11 +UniRef50_C6D6V1 Extradiol ring cleavage dioxygenase class III protein subunit B 0.000964540787351 0.00192377730863 3.87255554796e+11 +UniRef50_Q9RX31 0.000409285711357 0.0576873507816 2.31238577497e+13 +UniRef50_Q5HH87 Regulatory protein Spx 0.0108788541575 0.0120331991202 4.66023226848e+11 +UniRef50_UPI0003641212 hypothetical protein 1.82340779019e-05 9.99261487502e-06 -3327179758.08 +UniRef50_UPI00034C12E9 hypothetical protein 6.9637076968e-07 1.39642356514e-05 5356399867.75 +UniRef50_Q9RX39 0.000230044792465 0.0220865498423 8.82373929808e+12 +UniRef50_UPI00026C7577 oxidoreductase 1.38659649176e-05 1.86974401265e-05 1950525830.7 +UniRef50_UPI000428654A hypothetical protein 4.47392491801e-05 2.09588827432e-05 -9600425748.49 +UniRef50_A8LTG8 NADH dehydrogenase 0.00934019849585 0.00102085984401 -3.35861910351e+12 +UniRef50_E3I8L4 0.00611876282111 0.00200808416269 -1.6595314181e+12 +UniRef50_J0XSF7 0.0513049709221 0.00233144767259 -1.97712123085e+13 +UniRef50_UPI000454614C 1.66461712178e-06 1.64901363444e-05 5985244039.74 +UniRef50_E7EWU3 Acetyl coenzyme A synthetase, cytoplasmic 3.81541307996e-06 2.14397251516e-05 7115151057.93 +UniRef50_D0C8Q0 0.000117110441217 0.00563391484364 2.22720163606e+12 +UniRef50_A3U071 1.47238885055e-05 3.25295088891e-05 7188347448.39 +UniRef50_M1MFW2 Cobalamin biosynthesis protein CobD 0.000779562398727 0.00031361066038 -1.88110434642e+11 +UniRef50_P19318 Respiratory nitrate reductase 2 beta chain 0.00288732484574 0.00143133738948 -5.87800003067e+11 +UniRef50_UPI000376E605 hypothetical protein 2.6674446554e-05 2.61901875984e-05 -195501282.901 +UniRef50_X5EIL9 Tandem five TM family protein 0.00795500277792 0.00106777734317 -2.78045742377e+12 +UniRef50_H0PXP7 0.000786677190994 0.000118144031415 -2.69895040346e+11 +UniRef50_Q4L3J2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0206001290036 0.00575165995132 -5.99450916762e+12 +UniRef50_B9KQG2 Chemotaxis MotB protein 0.0142613161985 0.00325941138405 -4.44160398217e+12 +UniRef50_Q3J6K8 Transcriptional regulator AcuR 0.010457243851 0.00266519052993 -3.14574754496e+12 +UniRef50_D5BS88 Aerobic glycerol 3 phosphate dehydrogenase 0.00123740947687 0.000654333801122 -2.35394805443e+11 +UniRef50_A6M2L9 Capsular exopolysaccharide family 0.000170038733717 0.00146291508511 5.21950048433e+11 +UniRef50_J9DL69 1.61626434882e-05 5.78101069547e-06 -4191192555.37 +UniRef50_UPI0003EFB221 hypothetical protein 4.53211126404e-05 5.01662530361e-05 1956042634.3 +UniRef50_UPI00046939D9 hypothetical protein 1.74752379989e-05 1.01333503721e-05 -2964010130.03 +UniRef50_UPI00038308DC hypothetical protein M271_48570 9.66337255591e-06 4.15433201229e-05 12870326043.7 +UniRef50_A6M0I9 0.00016508133623 0.000708465746741 2.193709546e+11 +UniRef50_R9YNN7 ABC 2 transporter family protein 0.00546480751441 0.00722300561842 7.09806150106e+11 +UniRef50_P0A1A6 Branched chain amino acid aminotransferase 0.0020358755766 0.000993391537532 -4.2086359929e+11 +UniRef50_R7PVV7 Conserved hypothetical membrane protein Msm_1770 0.00139895125516 0.00053693946399 -3.4800473817e+11 +UniRef50_T0MQ15 2.07086548719e-05 4.62836384938e-06 -6491810813.14 +UniRef50_UPI000364254B hypothetical protein 1.81432309913e-05 6.19993327076e-06 -4821655850.51 +UniRef50_UPI0003B3327B 16S rRNA methyltransferase 7.16663046167e-06 1.09414866562e-05 1523955768.43 +UniRef50_Q9ZKX6 Putative 0.000521395803504 0.00245194622331 7.79386894995e+11 +UniRef50_UPI000469FF0C hypothetical protein 7.41243022549e-06 1.08800575862e-05 1399923718.09 +UniRef50_P39829 D galactarate dehydratase 0.00292883297348 0.00618345656555 1.31393148284e+12 +UniRef50_UPI00035E2496 hypothetical protein 5.44078358104e-05 3.22410668852e-05 -8948996631.95 +UniRef50_A3PPP4 0.000114161201013 1.13822235914e-05 -41493134425.1 +UniRef50_Q74IL5 50S ribosomal protein L27 0.00662760749953 0.0024620569401 -1.6816838779e+12 +UniRef50_UPI000379C346 hypothetical protein 3.16654567748e-05 0.000414242237802 1.54450941246e+11 +UniRef50_UPI0003FF1625 hypothetical protein 3.5415317548e-05 3.0683708334e-05 -1910208703.07 +UniRef50_B4QTQ4 GD21117 3.60705131652e-05 2.22494684607e-05 -5579725350.5 +UniRef50_S4GRW5 Polyphosphate kinase 0.000292512079526 0.0233776446907 9.31975132157e+12 +UniRef50_UPI000380F5C4 hypothetical protein 9.00158313422e-07 8.46389058594e-07 -21707307.997 +UniRef50_Q6F8V1 2,3 dihydroxybenzoate AMP ligase 0.00019719975882 0.00670947507743 2.62908546073e+12 +UniRef50_O34987 Guanine hypoxanthine permease PbuG 0.0210958936531 0.0105009596311 -4.27730487914e+12 +UniRef50_X4UKI9 Membrane protein 7.80810490109e-06 8.24156514316e-06 174993218.879 +UniRef50_U5PB64 Uroporphyrinogen decarboxylase 0.00291163590113 0.00189291625163 -4.11269623599e+11 +UniRef50_N2JS66 Cyanate hydratase 0.00238476753563 0.000345399655201 -8.23317839188e+11 +UniRef50_UPI00031EB597 hypothetical protein 3.44031671482e-05 7.15982024871e-05 15016092200.7 +UniRef50_Q9KN37 Ribose import ATP binding protein RbsA 1.76644650209e-05 1.82101642495e-05 220305475.068 +UniRef50_Q1XDM0 Pyruvate dehydrogenase E1 component subunit alpha 5.09700187677e-06 1.57494231675e-05 4300513194.96 +UniRef50_UPI0001FFE0CA DEAD DEAH box helicase 2.14073724003e-06 0.00010708786431 42368443044.2 +UniRef50_UPI0003175780 hypothetical protein 5.15056249552e-06 1.00541843327e-05 1979652309.88 +UniRef50_G7M2K8 YibE F family protein 0.000104277897476 0.00139816367086 5.22357564477e+11 +UniRef50_A6LWW9 0.000229707498285 0.000569742839604 1.37276439993e+11 +UniRef50_Q1QA11 Ribosomal protein S12 methylthiotransferase RimO 0.00315974778708 0.0577544898855 2.20405673379e+13 +UniRef50_Q03224 Fructose 1,6 bisphosphatase class 2 0.00274947101137 0.00149352001702 -5.07042828671e+11 +UniRef50_B2TBY2 VRR NUC domain protein 0.000810055288423 0.000107453015844 -2.8364915934e+11 +UniRef50_Q160T4 Histidine tRNA ligase 0.00123608981799 0.000126473963685 -4.47965536899e+11 +UniRef50_Q8VQS9 MntC 0.0118001290659 0.000459207073564 -4.57846937705e+12 +UniRef50_A6LW09 Response regulator receiver protein 8.48283121002e-05 0.00153786222414 5.86607621022e+11 +UniRef50_E4GYP5 Phenylalanine tRNA ligase beta subunit 0.000156956296637 0.00433814918197 1.68799887681e+12 +UniRef50_Q05756 Glutamate synthase [NADPH] small chain 0.00182548531874 0.000385792153819 -5.812217977e+11 +UniRef50_Q58569 Protein FwdA 0.00372795827053 0.000448156465229 -1.32409623649e+12 +UniRef50_W0RSQ0 1.94683583351e-05 5.80051521861e-05 15557776577.3 +UniRef50_UPI00045E8969 hypothetical protein 1.30023489956e-05 1.77161130512e-05 1903004393.64 +UniRef50_UPI00035A2281 PREDICTED 1.05773835482e-05 4.84319633896e-05 15282358409.9 +UniRef50_X6ZDD4 0.000158557191652 4.64836144275e-05 -45245478422.8 +UniRef50_U6ED09 ATP dependent RNA helicase, DEAD DEAH box family 0.00276072421958 0.00085373104716 -7.69876545144e+11 +UniRef50_V6EN15 Oligopeptidase A 0.00537317263568 0.00241130511707 -1.19574226346e+12 +UniRef50_UPI0003761157 hypothetical protein 6.19705686204e-05 9.0598183929e-06 -21360719154.8 +UniRef50_W9EJG3 Tandem lipoprotein 5.52826268501e-05 8.12209023577e-05 10471600120.9 +UniRef50_Q8XDN0 Septum site determining protein MinC 0.00295121637515 0.00147212539437 -5.97127179428e+11 +UniRef50_A9B6J1 DNA directed RNA polymerase subunit beta 9.42652847353e-07 3.60212737802e-06 1073662503.45 +UniRef50_UPI0003AB99D7 0.000405189863182 1.20865445599e-05 -1.58700633648e+11 +UniRef50_A3DEM3 4 hydroxy tetrahydrodipicolinate reductase 0.000281705961835 0.000631980646712 1.41410188639e+11 +UniRef50_B5YHP1 Adenylate kinase 2.87008915949e-05 5.48688779862e-05 10564337223.5 +UniRef50_A0A024L5Z4 Glycyl radical enzyme activating protein family 0.000726139519627 0.00154078280971 3.28881493004e+11 +UniRef50_Q1Q8C1 Sec independent protein translocase protein TatC 0.000347379744345 0.00446130776241 1.66084322447e+12 +UniRef50_R4LTT1 2.53735323054e-05 6.16975961362e-05 14664470314.9 +UniRef50_Q7BQS4 Se3 9.5563583074e-05 6.47729163482e-05 -12430570001.2 +UniRef50_A0A013GNM0 Penicillin binding transpeptidase domain protein 0.000452675413254 0.00697751451027 2.63415761225e+12 +UniRef50_W7T589 4.8865870735e-05 1.45747900163e-05 -13843730085.0 +UniRef50_U3SVP2 Signal peptidase type IV 0.00346104486116 0.00239060605953 -4.32149279979e+11 +UniRef50_UPI000463AB2B proline iminopeptidase 6.90262166838e-06 9.19897813907e-06 927067286.68 +UniRef50_UPI00046A179B dihydropteroate synthase 5.19730628353e-06 9.26754626421e-05 35316005199.7 +UniRef50_UPI0003A95978 hypothetical protein 3.87422294827e-05 3.85563551135e-05 -75039763.781 +UniRef50_F3ZGB9 Putative AraC family transcription regulator 1.92649951006e-06 0.000156722388568 62492999971.9 +UniRef50_A0A011NPY8 Phosphofructokinase 1.13278885152e-05 0.000329593880414 1.28487886493e+11 +UniRef50_D3DJ42 2 oxoglutarate carboxylase small subunit 0.0357993525907 0.0158055817562 -8.07173063705e+12 +UniRef50_UPI00037C16F6 ABC transporter permease 5.13008799522e-06 2.08503899299e-05 6346478800.84 +UniRef50_UPI0003B5FDE5 PREDICTED 1.12113284331e-06 8.81558939275e-07 -96718924.9613 +UniRef50_L2Y6Z3 Inner membrane ABC transporter ATP binding protein YddA 0.00158184742444 0.00174776241254 66981916701.8 +UniRef50_UPI0003B5FA7B diacylglycerol kinase 1.11200722409e-05 8.94418242077e-05 31619452385.0 +UniRef50_UPI00035D784B hypothetical protein 1.07665698244e-05 3.42478378076e-05 9479676032.38 +UniRef50_C8KCZ1 1.63128915561e-06 9.31824982898e-06 3103320353.45 +UniRef50_A4WTQ5 Cytochrome c biogenesis factor like protein 0.000308658515242 0.000269526413726 -15798109586.9 +UniRef50_UPI00026CD046 cell wall hydrolase 4.63368908805e-06 6.81650702886e-06 881230388.893 +UniRef50_M3K7Q0 Replication initiation protein RepC 8.41080854467e-05 3.34422769452e-05 -20454408631.4 +UniRef50_W0ISJ9 Sulfate thiosulfate transporter subunit 0.00695766637868 0.00237123855438 -1.85159719447e+12 +UniRef50_UPI000378F5B1 hypothetical protein, partial 9.77547095748e-06 4.15153315766e-05 12813771223.8 +UniRef50_N7TQJ5 0.000239646540089 0.000365166229343 50673838851.6 +UniRef50_C9R5I1 Lipopolysaccharide biosynthesis protein 3.12894684428e-06 5.41625872492e-06 923415874.688 +UniRef50_A5D5F2 1.78563270122e-06 2.46849605136e-06 275680314.127 +UniRef50_A0A023L0Z2 Tail assembly protein 0.000519235789519 0.000538571498834 7806063126.3 +UniRef50_UPI0003799A1D hypothetical protein 2.02649546358e-05 0.00039076128183 1.49573913789e+11 +UniRef50_UPI0003836BE8 1.16835891119e-06 5.25259459081e-06 1648856063.07 +UniRef50_P23101 Toluate 1,2 dioxygenase electron transfer component 0.00105164845735 0.000221408825359 -3.35177927621e+11 +UniRef50_X7EHW6 0.000387392749395 0.000301386165342 -34721913401.7 +UniRef50_UPI0003646727 hypothetical protein 6.93350505529e-05 6.85112377367e-05 -332583343.22 +UniRef50_A5N1Z0 0.000158997433803 0.00225674895649 8.46888032016e+11 +UniRef50_H0PW14 Transcriptional regulator, LuxR family 0.00050800391874 0.00130151586895 3.20350511786e+11 +UniRef50_B1LE56 Cysteine desulfurase 0.000623482142684 0.00101949863082 1.59876715929e+11 +UniRef50_E3G1U2 Alpha L rhamnosidase 0.000799906236806 0.000248148876585 -2.22751217145e+11 +UniRef50_UPI000265785F PREDICTED 5.01642342693e-06 8.08781842324e-06 1239959850.27 +UniRef50_Q9ZS97 UPF0051 protein ABCI8, chloroplastic 0.0123884638089 0.00359875269364 -3.54851423912e+12 +UniRef50_UPI00047644EC glycogen debranching protein 3.25812123978e-06 1.07034997416e-05 3005790666.25 +UniRef50_UPI0003B33C48 hypothetical protein 0.000154015127585 0.000321355637372 67557417300.0 +UniRef50_Q3J226 Phage protein, HK97 gp10 family 0.00508585783294 0.0011743897636 -1.5791076587e+12 +UniRef50_Q8DRY1 0.00558598359346 0.000750590748787 -1.95210742834e+12 +UniRef50_UPI0003B70F3D multidrug ABC transporter ATP binding protein 1.06783807927e-05 2.32430738122e-05 5072520758.09 +UniRef50_UPI00042929E4 hypothetical protein 3.65831068215e-05 2.74822333085e-05 -3674134317.47 +UniRef50_P37056 Probable endopeptidase YaeF 0.002005502287 0.000316976785549 -6.81678465473e+11 +UniRef50_A7IM59 Pyridoxine 5 phosphate synthase 0.000482003584857 0.00764284989672 2.89092152956e+12 +UniRef50_Q8TQ79 Enolase 8.58745161339e-06 7.43581556257e-05 26552440307.1 +UniRef50_UPI0002DF017A hypothetical protein 7.00675146039e-05 1.26460936427e-05 -23181732282.1 +UniRef50_UPI00038FD033 KDP operon transcriptional regulatory protein KdpE 2.41348165212e-05 3.97396415166e-05 6299859343.38 +UniRef50_E8U6Y9 3.38849076462e-05 0.00022134952232 75681765393.4 +UniRef50_Q7CJM5 Outer membrane protein assembly factor BamB 0.002310704462 0.00183072346489 -1.93774218562e+11 +UniRef50_UPI000370F145 hypothetical protein 7.15946695159e-06 4.33823841614e-06 -1138964580.13 +UniRef50_K8C533 2 ketogluconate transporter 4.81146857949e-05 6.1138344272e-05 5257810745.47 +UniRef50_UPI00046A53B5 nickel transporter permease NikC 7.83920258189e-06 8.73067670882e-06 359899044.659 +UniRef50_Q3IWB5 Zinc import ATP binding protein ZnuC 0.00017861401246 1.05175051994e-05 -67862622757.4 +UniRef50_F4DWP9 Methyl accepting chemotaxis sensory transducer 0.000468115415633 0.000285984355477 -73528543984.4 +UniRef50_D9UC41 Membrane protein 4.48853793592e-05 2.63910373091e-06 -17055339891.2 +UniRef50_X8APG4 FeS assembly SufB domain protein 3.01690121525e-06 3.94588810191e-05 14712074440.2 +UniRef50_E6WPS1 Appr 1 p processing domain protein 1.25609106857e-05 0.000207488831115 78694793511.8 +UniRef50_UPI00047CA54F chemotaxis protein CheY 0.000829526474472 9.55028964568e-05 -2.96334325927e+11 +UniRef50_P10482 Beta glucosidase A 3.15703538041e-06 7.68800377198e-06 1829207540.91 +UniRef50_Q7UF84 Biotin synthase 6.61076097737e-06 0.000882401865048 3.53567615879e+11 +UniRef50_A9M323 0.00169228986145 0.0104597686755 3.5395387863e+12 +UniRef50_A3CP26 0.000519476131447 0.00124580779575 2.93229005971e+11 +UniRef50_UPI000374A30D hypothetical protein 0.000269299040371 4.11904180894e-05 -92090250022.8 +UniRef50_S0RSE8 1.48469144131e-05 0.000130806730846 46814400881.0 +UniRef50_UPI000474435D Phyllosphere induced regulator PhyR 0.000331370467465 5.24076867529e-05 -1.12620697832e+11 +UniRef50_UPI0003A55370 tRNA synthetase RNA binding protein 6.33410463306e-06 1.28190600404e-05 2618056077.29 +UniRef50_F2EPT9 Transporting ATPase YfcM 0.000281164778654 9.88859968553e-05 -73588181024.4 +UniRef50_UPI00047D26C2 branched chain amino acid ABC transporter ATP binding protein 1.09777596683e-05 1.83477044788e-05 2975337159.39 +UniRef50_A3PJ45 Histidine kinase 0.00304653473166 0.000693604921494 -9.49906638061e+11 +UniRef50_UPI00047C6448 ribosomal protein S3 3.01173807326e-05 4.4705426059e-05 5889372913.71 +UniRef50_UPI000421C8B5 cation 0.000249817127137 0.000514471137146 1.06844071511e+11 +UniRef50_UPI0004792DA6 DSBA oxidoreductase 2.50302560182e-05 1.05228545308e-05 -5856816006.3 +UniRef50_F4BY74 Acyl coenzyme A synthetase 0.0028741246228 0.000356919098857 -1.0162267596e+12 +UniRef50_P34897 Serine hydroxymethyltransferase, mitochondrial 7.05503156805e-05 0.000100935017392 12266676943.2 +UniRef50_B7MGN9 Cyclic pyranopterin monophosphate synthase 0.00330987781524 0.0013184955654 -8.03945451269e+11 +UniRef50_V9WDD5 Deacetylase 0.00123122913801 0.000440311476324 -3.19303165674e+11 +UniRef50_UPI0003819A1B hypothetical protein 8.02084964377e-06 6.73676450172e-06 -518400929.342 +UniRef50_A1A1W2 Tyrosine tRNA ligase 0.000643103339528 0.00682843678021 2.49709501258e+12 +UniRef50_Q1GTK0 NADH quinone oxidoreductase subunit D 0.0116929002798 0.00363099731956 -3.25468915572e+12 +UniRef50_D9PVP5 F420 dependent NADP reductase 0.00151987522171 0.000680202050891 -3.38986363008e+11 +UniRef50_I4E028 Hydrolase homolog 0.00731864863656 0.0014992249874 -2.34937273952e+12 +UniRef50_UPI000379680D hypothetical protein 1.96280875449e-05 0.00644027175759 2.59209263976e+12 +UniRef50_Q890M8 Tetracycline resistance protein 0.000247802618498 0.00117216524735 3.73176536473e+11 +UniRef50_F0YEB9 0.000541332395452 0.000199584384148 -1.37967865883e+11 +UniRef50_Q1QIW5 Prolipoprotein diacylglyceryl transferase 7.700206674e-05 1.26862258717e-05 -25965094202.7 +UniRef50_Q5HL74 Abortive infection family protein 0.0115231647495 0.00195733636432 -3.86184230501e+12 +UniRef50_Q3J4Z5 Valine tRNA ligase 0.00826419911155 0.00162811758998 -2.67906754414e+12 +UniRef50_UPI0004731B78 4 alpha glucanotransferase, partial 1.6272736737e-05 0.000442375209303 1.7202279704e+11 +UniRef50_W2GPF9 8.58381750483e-05 2.94628994452e-05 -22759390563.4 +UniRef50_UPI0004724CFB hypothetical protein 1.08151292936e-05 1.62936773492e-05 2211757079.39 +UniRef50_S9S8F9 3.20913733553e-05 5.07126284481e-05 7517629189.46 +UniRef50_UPI0003B55E14 ammonium transporter 5.0134854799e-06 4.66810920171e-06 -139432641.749 +UniRef50_UPI00040CCFDE Fur family transcriptional regulator 7.56307758571e-05 0.000115599588495 16135900134.4 +UniRef50_UPI00037BF338 hypothetical protein 4.01029163123e-05 0.000303534761746 1.06350668674e+11 +UniRef50_UPI0004410CB8 ClpX, ATPase regulatory subunit 1.68281664312e-05 1.35535079021e-05 -1322019832.78 +UniRef50_Y0KNL3 Hemagglutinin 3.59107075597e-07 1.02330906184e-06 268146492.521 +UniRef50_V5VFP2 OsmC family protein 0.000213671314441 0.00636314923485 2.48261969905e+12 +UniRef50_Q57NA5 Zinc import ATP binding protein ZnuC 0.000863080774716 7.80432315716e-05 -3.16929289661e+11 +UniRef50_F6EKX3 Tartrate dehydrogenase 0.00197523441112 0.000382020315467 -6.43200081349e+11 +UniRef50_B2HMS4 3.67369319959e-05 8.75781235443e-05 20525212919.7 +UniRef50_G1Q986 3.28684299998e-05 1.46296030058e-05 -7363238273.05 +UniRef50_Q7G491 Transposon protein, putative, CACTA, En Spm sub class 2.3308408978e-06 2.41658807462e-06 34617187.5184 +UniRef50_L8P6V5 Putative Non ribosomal peptide synthetase 0.000208926916398 0.000268257275904 23952394198.0 +UniRef50_X6G717 Transposase 0.000241860069485 9.85911331836e-05 -57839427692.3 +UniRef50_P45508 0.00304124058859 0.000995689179185 -8.25814205713e+11 +UniRef50_C1MS99 Predicted protein 8.6270624122e-05 7.39140245093e-06 -31844509745.5 +UniRef50_B6IWR2 2.34744647776e-05 3.75418278904e-05 5679167114.59 +UniRef50_F3U250 McpJ 0.00315581788163 0.00168306035032 -5.94570288157e+11 +UniRef50_UPI00036970FF hypothetical protein 3.88987340299e-06 1.30163996522e-06 -1044901600.02 +UniRef50_D4HBY8 Alanine racemase domain protein 0.000461377385892 0.00448844410466 1.62577625203e+12 +UniRef50_UPI00031FC917 hypothetical protein 1.3266108784e-05 2.17266184439e-05 3415611571.83 +UniRef50_Q5F8E8 Chaperone protein HscA homolog 0.00347263625001 0.0134614546163 4.03260855106e+12 +UniRef50_J9PAT3 5.63630486903e-05 6.44451526532e-05 3262844548.39 +UniRef50_UPI0003B753D6 glutamyl tRNA amidotransferase 2.33925093268e-05 4.81914533953e-06 -7498294962.48 +UniRef50_I6TW73 Putative transcriptional regulator 0.00813667244045 0.000840358355689 -2.94561153186e+12 +UniRef50_Q3HKF1 Transcriptional regulator, AraC family 0.0016145544307 0.000232532838735 -5.5793907599e+11 +UniRef50_K7SJ58 Cof like hydrolase 0.000257376810578 0.0110258101865 4.34734869739e+12 +UniRef50_U3U4T1 1.31718641598e-05 2.53051877882e-05 4898371641.41 +UniRef50_UPI00047935B6 cytochrome C oxidase 3.75058053632e-05 0.000118017700935 32503640234.4 +UniRef50_UPI00045E9BEE hypothetical protein 0.000151010198331 4.34258095203e-05 -43433137971.9 +UniRef50_X1UXC6 Marine sediment metagenome DNA, contig 5.94114739228e-06 4.16462256031e-05 14414578224.3 +UniRef50_UPI0001BF6223 hypothetical protein SMAC_10415, partial 7.89868783907e-05 3.36444731406e-05 -18305285413.3 +UniRef50_P05704 Methyl accepting chemotaxis protein III 0.0035633590764 0.00152065099726 -8.24666318396e+11 +UniRef50_A0A013Y7Z1 His Kinase A domain protein 0.000238626828392 0.00683471039618 2.66291987936e+12 +UniRef50_B8EMX2 Alpha,alpha trehalose phosphate synthase 0.00842480781385 0.000861012552018 -3.05359696541e+12 +UniRef50_A8AQY2 Glycogen debranching enzyme 3.13527384277e-05 5.54389298125e-05 9723891032.85 +UniRef50_Q88NS8 Hydrolase, putative 0.000176281644805 0.000196878046531 8315020123.06 +UniRef50_B2TH59 7.48322539702e-05 2.17626178751e-05 -21424863329.3 +UniRef50_Q7N3N2 ProP effector 0.00358148557637 0.000816580961978 -1.11622592202e+12 +UniRef50_UPI00036B28F1 hypothetical protein 0.000127872616119 0.00027120266627 57864100103.5 +UniRef50_Q9RX36 Penicillin binding protein 1 5.25258797111e-05 0.0342474652614 1.38049166475e+13 +UniRef50_F3U3S2 Serine threonine protein kinase 0.00422230041635 0.000316411007811 -1.57685548488e+12 +UniRef50_Q0P9X7 Probable ABC transporter ATP binding protein PEB1C 0.00153510308042 0.00226073373775 2.92946000854e+11 +UniRef50_UPI000363DE89 hypothetical protein 0.000403606592508 0.00036439927948 -15828473397.2 +UniRef50_UPI00047A233F hypothetical protein 5.81258633147e-05 3.28293989457e-05 -10212493088.3 +UniRef50_Q837R5 UPF0042 nucleotide binding protein EF_0766 0.00514746982934 0.00833648927281 1.287446283e+12 +UniRef50_K7S1A1 Membrane associated protein 0.000160404811127 0.00442794777195 1.72285946192e+12 +UniRef50_UPI0002F99648 MFS transporter 5.29925797496e-06 8.55827313752e-06 1315704413.74 +UniRef50_Q9RVG7 FemA related protein 0.000220752040266 0.021228711111 8.48117087349e+12 +UniRef50_C6SQR5 0.00341999350939 0.00171121230295 -6.89855942143e+11 +UniRef50_W5X8X9 30S ribosomal protein S2 2.1572894563e-05 0.000170829856554 60256867144.7 +UniRef50_H4SSE2 Putative MFS family efflux protein 2.25848739051e-05 2.23581836828e-05 -91517624.5444 +UniRef50_UPI0001AF2B76 hypothetical protein 9.23443831462e-06 6.08285203936e-06 -1272334053.64 +UniRef50_Q6FD60 9.3437125959e-05 0.00474711118343 1.878745324e+12 +UniRef50_UPI0003ABA7EF PREDICTED 8.59890718334e-05 0.000107416870798 8650665390.67 +UniRef50_UPI0003FBECCD flagellin 1.2604370674e-05 5.37014252303e-06 -2920546678.51 +UniRef50_R7PVE4 Glycosyltransferase GT2 family 0.00270820645013 0.000924321479 -7.20176253575e+11 +UniRef50_A1WI30 Endoribonuclease L PSP 0.000170936059991 9.53615163247e-05 -30510370682.0 +UniRef50_P46855 0.00275224374224 0.000401405775434 -9.49062135227e+11 +UniRef50_P46854 0.00219214000515 0.000635089688595 -6.28600319951e+11 +UniRef50_P46853 0.00428164554385 0.00395698224055 -1.31070559609e+11 +UniRef50_B8DKX1 4Fe 4S ferredoxin iron sulfur binding domain protein 0.000547375962807 0.000431561830731 -46755586318.3 +UniRef50_Q0C1N8 Macrolide export ATP binding permease protein MacB 2.21376173093e-06 2.54554451051e-05 9382952785.69 +UniRef50_Q9RS60 DNA modification methyltransferase related protein 0.00014454168712 0.0503735329407 2.02780601481e+13 +UniRef50_X2HAY5 SUN family protein 0.000100752488128 0.00400374723183 1.57568687316e+12 +UniRef50_A8ESW7 Aspartate tRNA ligase 8.14968288292e-05 0.00407133114359 1.61074507364e+12 +UniRef50_B2HZZ5 0.000125410627529 0.00510458401914 2.01015339952e+12 +UniRef50_E7B4R3 Trap type C4 dicarboxylate transport system,large permease component 0.00777087935318 0.000474065069405 -2.94581346834e+12 +UniRef50_O34319 0.000137601211005 0.00393670200305 1.53374360996e+12 +UniRef50_Q8EUY3 Orotidine 5 phosphate decarboxylase 1.06615424111e-05 1.54805640986e-05 1945498191.29 +UniRef50_C0MHK2 Phosphoglycerate mutase family protein 0.0115743545876 0.0037713592142 -3.15016498576e+12 +UniRef50_UPI00035C8FD2 hypothetical protein 4.92197646649e-06 1.21681034265e-05 2925350373.73 +UniRef50_UPI000328B62B PREDICTED 2.0173282605e-05 2.54648761325e-05 2136281242.21 +UniRef50_P76536 Probable deferrochelatase peroxidase YfeX 0.00333416638731 0.00235903236722 -3.9367357015e+11 +UniRef50_Q97BK5 Nucleoside diphosphate kinase 2.81504836949e-05 3.75766775356e-05 3805470125.9 +UniRef50_Q2UJU5 Mannose 1 phosphate guanyltransferase 9.84461536427e-06 7.66521394558e-06 -879851096.988 +UniRef50_M2HJP8 0.00695934136265 0.0018015002488 -2.08228375149e+12 +UniRef50_E8R1M1 2.44265059733e-05 3.81229987629e-05 5529442214.03 +UniRef50_A0A023YKE2 LemA family protein 2.26448279738e-05 1.02951584584e-05 -4985713130.85 +UniRef50_Q6HHL1 0.00226573241326 0.00142036661101 -3.41284548173e+11 +UniRef50_B2II06 1.59348905292e-05 4.28487924601e-05 10865472480.2 +UniRef50_N6V6H2 0.000308351183352 0.0001735505138 -54420684488.4 +UniRef50_A3PM06 RNA polymerase, sigma 24 subunit, ECF subfamily 0.0102226334813 0.00200723177373 -3.31665848366e+12 +UniRef50_UPI00023B21D9 7.15054746349e-06 0.000208923299366 81458135973.3 +UniRef50_UPI0004769BB2 hypothetical protein 0.000100441420779 2.05126701755e-05 -32268217454.7 +UniRef50_D3FUC5 [Ni Fe] hydrogenase, large subunit 0.000280410616358 0.000545173065257 1.06887849621e+11 +UniRef50_V9VZS0 0.000500169377934 0.000168627845899 -1.33847384955e+11 +UniRef50_G8PG31 Ferric anguibactin binding protein 1.70370806914e-05 1.62704178984e-05 -309511177.545 +UniRef50_C5B1E9 5.21456768009e-05 2.75908403208e-05 -9913088808.74 +UniRef50_UPI0003C186B8 PREDICTED 1.02776111547e-05 4.24145935179e-06 -2436868554.75 +UniRef50_UPI000255891A TonB dependent siderophore receptor 4.62854555117e-05 4.1016051802e-06 -17030138032.9 +UniRef50_Q9K4U8 Nitric oxide reductase transcription regulator NorR2 2.99105009897e-06 1.29539098696e-05 4022128747.44 +UniRef50_Q9RYH2 Serine protease, subtilase family 8.4574904144e-05 0.0454124818458 1.82994322683e+13 +UniRef50_W9QZ02 F box like WD repeat containing protein 1.13155663193e-06 4.20467610281e-06 1240656041.81 +UniRef50_UPI0003C12BAB PREDICTED 9.07965576036e-06 8.92600083377e-05 32369792259.0 +UniRef50_D3E2Y7 Poly gamma glutamate biosynthesis protein 0.00304871459303 0.000163913064863 -1.16462977742e+12 +UniRef50_Q4L8D2 Cyclic pyranopterin monophosphate synthase 0.00762540631274 0.00149539706111 -2.47475995856e+12 +UniRef50_A6M1L8 Putative cell wall binding repeat containing protein 0.000622251968849 0.0018278829389 4.86728017365e+11 +UniRef50_UPI0003697AAB hypothetical protein 5.7114235397e-05 6.22075283093e-05 2056224850.43 +UniRef50_U5NMN3 0.0170444915299 0.00217022691981 -6.00492315085e+12 +UniRef50_O26778 Exosome complex component Rrp42 0.00323624141242 0.000225719774668 -1.21538452841e+12 +UniRef50_I6T2I9 Type 4 fimbrial biogenesis protein PilW 0.00132306618415 0.00141295791279 36290393947.5 +UniRef50_F2AE29 0.00196794277604 0.000605867311565 -5.49886579556e+11 +UniRef50_UPI00036B7282 hypothetical protein 8.89218531649e-07 6.56024477075e-06 2289462884.04 +UniRef50_A5WCX2 30S ribosomal protein S2 0.000157285828689 0.00591025012365 2.32254228269e+12 +UniRef50_UPI0002377ACD calcium binding hemolysin protein 1.04799702387e-05 3.38662181974e-06 -2863671801.91 +UniRef50_Q8CPR8 Alcohol dehydrogenase 0.00145936560009 0.00220477513343 3.00930975813e+11 +UniRef50_UPI0003A88A02 molecular chaperone Hsp33 1.82202718123e-05 2.38751615669e-05 2282948387.23 +UniRef50_Q4V2F4 3.0002725422e-05 2.7532756244e-05 -997156867.089 +UniRef50_UPI0003B71C77 dihydrolipoamide dehydrogenase 3.156344649e-06 3.50913682242e-05 12892560904.1 +UniRef50_S9S2N5 Transposase 0.000110209404129 5.34852280284e-05 -22900245975.7 +UniRef50_M9VCM8 2 amino 3 ketobutyrate coenzyme A ligase 0.0001033264568 0.00492676877642 1.94728285472e+12 +UniRef50_B2ICH3 6,7 dimethyl 8 ribityllumazine synthase 1.69136773131e-05 1.5991001086e-05 -372495715.391 +UniRef50_E3EYN7 Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC 0.00909006346632 0.00228761020337 -2.74623385774e+12 +UniRef50_UPI00047B3379 hypothetical protein 2.50696880234e-05 4.78101163677e-06 -8190787627.33 +UniRef50_R6HE72 0.000225140748821 0.0027347963805 1.01317877545e+12 +UniRef50_C5WEU2 Aminodeoxychorismate lyase family 0.00590731015886 0.00119507734092 -1.9023862142e+12 +UniRef50_A1W8H0 Ribosomal RNA large subunit methyltransferase E 1.85884378042e-05 2.35304656643e-05 1995157292.62 +UniRef50_A0A009NBC4 5.52891319945e-05 0.000432940504095 1.5246249322e+11 +UniRef50_T5E2V5 ThiC associated domain protein 2.83767197944e-05 8.00205248783e-05 20849237853.1 +UniRef50_C7ZS16 Membrane protein 0.00418141283125 0.00148157246071 -1.08995868835e+12 +UniRef50_A5UN23 Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE 0.00324282049437 0.00150330185974 -7.02265019094e+11 +UniRef50_B0X4X0 6.93196604378e-06 1.55370600211e-05 3473982035.02 +UniRef50_UPI000479C781 hypothetical protein 1.56698517994e-05 7.2933346853e-05 23117975655.2 +UniRef50_Q033R5 Fructosamine 3 kinase 0.030538318404 0.00840488775066 -8.93553756247e+12 +UniRef50_K0T107 5.29590301274e-05 8.39412795021e-05 12507914267.5 +UniRef50_H3VZC8 0.00887478403467 0.000515087276506 -3.37491216628e+12 +UniRef50_G2DQA0 Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase 0.000124754625602 0.00489309030068 1.92503562609e+12 +UniRef50_E3CJI9 DNA ligase 0.00755478665068 0.00244522764585 -2.06279167159e+12 +UniRef50_Q2YUD5 Membrane anchored Ser Asp rich fibrinogen binding protein 0.00577887054116 0.00116652747034 -1.8620594975e+12 +UniRef50_UPI0003B7AB15 magnesium chelatase 1.41012549505e-05 0.000133419077023 48170068965.2 +UniRef50_J0D169 6.0545117233e-06 8.37630268351e-05 31371881141.3 +UniRef50_W8RQ15 Type IV secretion protein Rhs 0.000347486809367 0.00025841069091 -35961122108.0 +UniRef50_W5WGU1 0.000630677394866 0.0037037786916 1.24064870468e+12 +UniRef50_J9YS58 0.00442215143228 0.00295773816031 -5.91201608266e+11 +UniRef50_P18775 Dimethyl sulfoxide reductase DmsA 0.00210598937471 0.000802724450294 -5.26144042847e+11 +UniRef50_O27719 0.00351147148896 0.000304911461639 -1.29452763195e+12 +UniRef50_Q4MQ56 0.000351837842848 0.000680131471693 1.32536166581e+11 +UniRef50_UPI000379EBC4 hypothetical protein 3.11620229595e-05 1.98658488225e-05 -4560404118.75 +UniRef50_Q54Z26 Serine hydroxymethyltransferase 1 5.30607948274e-05 0.000132265373628 31975860411.3 +UniRef50_Q9RJ16 Cobyrinic acid A,C diamide synthase 5.82417625057e-06 0.000261579339181 1.03251497744e+11 +UniRef50_V9XXT7 0.000125121145634 0.00091717389817 3.19761415779e+11 +UniRef50_T9IBZ3 Protein icc 0.000153866571546 0.000239122838212 34419001065.1 +UniRef50_B9DIE1 MarR family regulatory protein 0.0133926798052 0.000435356322155 -5.23103049433e+12 +UniRef50_Q8DZB5 Membrane protein, putative 0.000530719837873 0.000303282243973 -91819347630.6 +UniRef50_P37837 Transaldolase 0.00257630553125 0.00165758168455 -3.70900090922e+11 +UniRef50_A1TL16 9.81663276505e-05 0.00118731633383 4.39703222868e+11 +UniRef50_Q9RTF6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 0.000610475865724 0.0501739544973 2.00093845359e+13 +UniRef50_UPI00021A5788 PREDICTED 1.51872319612e-05 4.89913529305e-05 13647138458.5 +UniRef50_UPI0004692177 hypothetical protein 1.10348698633e-05 1.1486159662e-05 182191229.684 +UniRef50_B2TPF4 Cobyrinic acid a,c diamide adenosyltransferase 0.0021301041578 0.0013120439764 -3.30260933958e+11 +UniRef50_Q3J098 RhtB family transporter 0.0105711746592 0.00158619998401 -3.62734453441e+12 +UniRef50_UPI0004113202 hypothetical protein 6.06304949379e-06 0.000405428611373 1.61228778097e+11 +UniRef50_N4EZP0 FAD binding domain protein 0.00417910734816 0.000421324643037 -1.51706299124e+12 +UniRef50_R9SH54 Oxidoreductase aldo keto reductase family 0.00300334438134 0.000640983350009 -9.53714137778e+11 +UniRef50_P58991 Polyphosphate kinase 1 2.39656085362e-06 0.000229690377311 91761302912.5 +UniRef50_UPI0003790149 hypothetical protein, partial 0.000113849986966 4.73061642873e-05 -26864557799.9 +UniRef50_I1EEC9 7.36732126513e-07 5.2525319187e-06 1823083791.2 +UniRef50_N9BDB1 2.55479678749e-05 6.87607483993e-05 17445529778.1 +UniRef50_E6CCB2 4.78597595523e-05 0.00051797088769 1.89789631342e+11 +UniRef50_A5UKL7 Predicted transcriptional regulator 0.00176074857349 0.000122031696369 -6.61570112611e+11 +UniRef50_K9ZE84 0.000187319166319 4.3782624813e-05 -57947463197.4 +UniRef50_UPI0001BF6909 hypothetical protein SMAC_10569, partial 3.00559933004e-06 2.97060291052e-06 -14128484.0146 +UniRef50_Q2LQU2 Porphobilinogen deaminase 1.33147676378e-05 8.12304812327e-06 -2095960877.58 +UniRef50_A3PR63 Glyoxalase bleomycin resistance protein dioxygenase 0.00577103534748 0.00113296871704 -1.87244441419e+12 +UniRef50_P07464 Galactoside O acetyltransferase 0.00464807711369 0.00131964205227 -1.34373007879e+12 +UniRef50_R5UMD4 1.63756008612e-05 9.77521791956e-06 -2664655589.35 +UniRef50_UPI000371DE88 hypothetical protein 1.2015283944e-05 7.0178312545e-06 -2017532976.39 +UniRef50_UPI00021965CD 3 keto L gulonate 6 phosphate decarboxylase 2.54844520333e-05 4.20939699962e-05 6705466223.33 +UniRef50_Q1M6X3 0.000144424149999 5.43066362882e-05 -36381546151.3 +UniRef50_UPI000225B96A conjugal transfer protein TraW 0.000258207304041 8.70345144229e-05 -69104555695.1 +UniRef50_UPI00036AEC1C hypothetical protein 1.95649152685e-06 7.36908635977e-06 2185130954.06 +UniRef50_Q53222 2 vinyl bacteriochlorophyllide hydratase 0.0147498326847 0.000406399135599 -5.79062013749e+12 +UniRef50_B5SDA9 Hemagglutinin related protein 2.18206417582e-07 6.56922672792e-07 177115135.882 +UniRef50_UPI00037FDE39 histidinol phosphate aminotransferase, partial 1.52951537333e-05 1.66619200518e-05 551780334.887 +UniRef50_UPI00047119F6 hypothetical protein, partial 0.000421332458301 8.59123338065e-05 -1.35413220326e+11 +UniRef50_P45499 Cell division protein FtsZ 0.000334031035322 0.0101610578236 3.96729130561e+12 +UniRef50_Q3A7A3 Cobyrinic acid A,C diamide synthase 1.1700405388e-05 0.00041160707049 1.61447228108e+11 +UniRef50_A2RE15 Cell envelope related transcriptional attenuator domain protein 0.00561918856303 0.00144889657695 -1.68359805002e+12 +UniRef50_UPI00037A3F8A hypothetical protein 6.5907662429e-06 2.72100577207e-05 8324260996.75 +UniRef50_R5A8C5 0.000146107889251 7.6780599671e-05 -27988277545.0 +UniRef50_UPI0003B46C21 alcohol dehydrogenase 0.000237494452879 1.02903150932e-05 -91725098532.5 +UniRef50_O32068 0.0123955048755 0.00336562588311 -3.6454729583e+12 +UniRef50_Q02LX8 Adenylate cyclase ExoY 0.000185042151398 0.000255685459043 28519570187.2 +UniRef50_H4F527 Na+ H+ antiporter MnhB subunit related protein 6.80010327006e-05 1.89452033056e-05 -19804440309.5 +UniRef50_Q48662 Malolactic enzyme 0.00561092101531 0.00208791204426 -1.42228195379e+12 +UniRef50_K2LWC9 4.27573799271e-05 1.45601143058e-05 -11383582150.7 +UniRef50_I4SXS6 Choline transport protein BetT 0.00122560859231 0.000353672700827 -3.52011219248e+11 +UniRef50_UPI00035D7CEB hypothetical protein 9.22314525125e-07 2.26169241915e-06 540723291.831 +UniRef50_UPI0004713CDC methionine synthase, partial 1.41229752451e-05 9.23927996375e-05 31598488586.0 +UniRef50_L0FJC9 Sodium 0.00175006015661 0.000814238824702 -3.7780255551e+11 +UniRef50_UPI000362C162 hypothetical protein 0.000321089500135 2.67582292394e-05 -1.18825145912e+11 +UniRef50_O26134 Protein translocase subunit SecY 0.00187712737577 0.000662687738033 -4.90284184606e+11 +UniRef50_D3DZ14 ABC transporter ATP binding protein 0.00279780477395 0.00140993158868 -5.60301436013e+11 +UniRef50_R9ZEH0 Ring hydroxylating dioxygenase subunit 0.000594079514485 0.000490861889379 -41670221878.0 +UniRef50_I6S279 Flagellar hook associated protein FlgL 0.00107143407317 0.000334845143421 -2.97369989902e+11 +UniRef50_UPI0004719539 hypothetical protein 4.20462934777e-06 2.92203904107e-06 -517797445.968 +UniRef50_UPI0004779E49 quinone oxidoreductase 1.00768143419e-05 6.89046016435e-05 23749499631.8 +UniRef50_A6UJ92 0.0159920560835 0.00276490553281 -5.33996299271e+12 +UniRef50_Q8X800 D methionine transport system permease protein MetI 0.00382312818186 0.00112408288806 -1.08963770612e+12 +UniRef50_F9YY95 0.000241264145619 0.00443288701656 1.69220959e+12 +UniRef50_UPI000252BB00 PREDICTED 1.64506806726e-05 1.3274986484e-05 -1282066714.09 +UniRef50_Q2YKR3 Adenine deaminase 0.00572208066794 0.00152790838885 -1.69323881735e+12 +UniRef50_S8F394 1.23076400401e-06 2.81704741406e-06 640402078.524 +UniRef50_P26899 Aspartate ammonia lyase 0.000675772979986 0.00159342285875 3.70466516887e+11 +UniRef50_UPI000479F1A9 peptidase S1 and S6 chymotrypsin Hap 4.62201385411e-06 3.43204678563e-05 11989630321.7 +UniRef50_G7MCG2 7TM receptor with intracellular metal dependent phosphohydrolase 0.000340611285754 0.000535336256847 78612860374.3 +UniRef50_UPI0003B66F39 DNA gyrase subunit A 2.06424301116e-06 3.53656793769e-06 594395640.299 +UniRef50_UPI0002EC0588 hypothetical protein 1.78121241201e-06 4.22113064167e-06 985024930.477 +UniRef50_T2ERE8 Zinc binding dehydrogenase family protein 0.000719664581671 0.000491015202922 -92308560044.4 +UniRef50_E7BGF6 6.12563604033e-06 4.6068281598e-05 16125336163.0 +UniRef50_UPI00034FCB25 PREDICTED 0.000122663424055 3.35909124416e-05 -35959665981.0 +UniRef50_UPI00036E0F49 hypothetical protein 4.29316048369e-06 9.48551141668e-06 2096215788.96 +UniRef50_UPI00042B506F Translation initiation factor 3 family protein, putative isoform 1 6.62549461791e-06 1.65244132582e-05 3996314928.48 +UniRef50_UPI0003EB658E hypothetical protein 8.23250858574e-06 2.71011056132e-05 7617484163.72 +UniRef50_X0TKS1 Marine sediment metagenome DNA, contig 2.42855635616e-05 4.83692113125e-05 9722864136.63 +UniRef50_Q9KP38 Probable aromatic acid decarboxylase 5.62598240481e-05 9.44809975973e-05 15430356788.4 +UniRef50_K9DMW3 3.10742435378e-05 1.21846747513e-05 -7625950720.19 +UniRef50_P67586 Tryptophan tRNA ligase 0.00918688837973 0.000566246187334 -3.48025904025e+12 +UniRef50_A0AK10 CCA adding enzyme 1.52165488179e-05 0.00172677118275 6.90975608855e+11 +UniRef50_O83796 1 deoxy D xylulose 5 phosphate synthase 2.29782747183e-06 0.000151587334786 60270006090.9 +UniRef50_B2TPF9 Precorrin 6x reductase 0.000299592054644 0.00136898659386 4.3172769843e+11 +UniRef50_A0A011N6I9 1.51918001834e-07 4.01161738419e-07 100622755.024 +UniRef50_P23485 Protein FecR 0.00483654908614 0.000612226884417 -1.7054107111e+12 +UniRef50_Q839D4 Energy coupling factor transporter ATP binding protein EcfA2 5.09868159505e-06 0.00171026528269 6.88396681607e+11 +UniRef50_A8I2E1 Ribonuclease R 0.00330884834172 0.000996243787342 -9.33626837452e+11 +UniRef50_C7QFW5 Nucleic acid binding OB fold tRNA helicase type 7.45038135845e-05 0.00641402011208 2.55934052432e+12 +UniRef50_Q1JBS9 Short chain dehydrogenase 0.00438029932662 0.014920154065 4.25506869645e+12 +UniRef50_G0DT71 0.000113814871007 0.0059984507223 2.37569970577e+12 +UniRef50_Q8U5S6 ABC transporter, membrane spanning protein 0.0169268753561 0.0053760734939 -4.66320045605e+12 +UniRef50_A0AKE9 UPF0348 protein lwe2063 2.67265019322e-05 0.000918633020216 3.60073606355e+11 +UniRef50_O08437 FKBP type peptidyl prolyl cis trans isomerase FkpA 6.17831122416e-06 1.35240788541e-05 2965576534.91 +UniRef50_UPI00034BD3ED hypothetical protein 1.24081759212e-05 0.00310949114955 1.25033040194e+12 +UniRef50_B0SXA7 Acetyl CoA carboxylase, biotin carboxyl carrier protein 0.000785653419287 0.000361612292071 -1.71190606627e+11 +UniRef50_C9U024 Replication initiation protein RepC 6.93384818212e-05 2.5306105349e-05 -17776410719.8 +UniRef50_T2GFI0 Putative anti sigma regulatory factor 1.86958375698e-05 0.000946909395129 3.74731203648e+11 +UniRef50_UPI00030A24CF hypothetical protein 1.01600470694e-05 0.000216523365891 83311404171.1 +UniRef50_A0A024PW13 0.000658240640477 0.005562001892 1.97970859316e+12 +UniRef50_J0USZ4 ABC transporter permease protein 2.48782464005e-05 5.93865535669e-05 13931427067.6 +UniRef50_Q5WKY5 6 phospho 5 dehydro 2 deoxy D gluconate aldolase 1.58775035275e-05 2.40454216882e-05 3297488793.1 +UniRef50_Q82WT5 Sulfate thiosulfate import ATP binding protein CysA 0.000128625228738 0.00693231697643 2.74673384923e+12 +UniRef50_P77031 Inner membrane protein YqcE 0.00170148971795 0.000510394988325 -4.80859558724e+11 +UniRef50_U6JNN9 9.72836141953e-05 8.17941718665e-05 -6253277944.97 +UniRef50_UPI00047CF42A aldo keto reductase 8.03032126173e-06 5.96560617539e-05 20841944955.8 +UniRef50_UPI0003608BB9 hypothetical protein 5.24213951303e-06 5.34062704177e-06 39760623.9302 +UniRef50_Q9CL63 Ribose import ATP binding protein RbsA 2 4.6283280377e-05 5.31932586317e-05 2789643016.39 +UniRef50_P23886 ATP binding permease protein CydC 0.00250865488251 0.000483041824818 -8.17764848457e+11 +UniRef50_F0YQI4 0.000325214207009 0.00183319522719 6.08790442855e+11 +UniRef50_Q3KFI9 Methylthioribulose 1 phosphate dehydratase 0.000562887990554 0.000602730735611 16085005105.0 +UniRef50_L8A867 Glycerol dehydrogenase 0.000107853139674 0.000534689303488 1.723189972e+11 +UniRef50_M1IWL8 0.00438653516404 0.000452015365101 -1.58841392482e+12 +UniRef50_V7ZHE5 Potassium transporting ATPase A chain 0.000185837285921 0.00526789577783 2.05168937705e+12 +UniRef50_C1CAY3 Transposase protein B 6.20231587339e-05 4.52339138902e-05 -6778024170.6 +UniRef50_UPI0002DC9866 hypothetical protein 1.30826781236e-05 2.20847933335e-05 3634264378.61 +UniRef50_Q09AD1 6.8364900086e-05 3.4696640663e-05 -13592289485.1 +UniRef50_UPI00031EE013 hypothetical protein 3.86313915974e-05 5.78540911886e-06 -13260326192.1 +UniRef50_UPI0003F0CAAC PREDICTED 2.40743436396e-06 1.82455789359e-05 6394053319.57 +UniRef50_UPI0003B6428F prolipoprotein diacylglyceryl transferase 2.66348963769e-05 7.40145033012e-06 -7764778190.02 +UniRef50_P59952 Methionine tRNA ligase 5.7947118686e-06 1.91434482877e-05 5389048699.81 +UniRef50_P16256 Sodium pantothenate symporter 0.00149268364943 0.00232568396625 3.36292449964e+11 +UniRef50_V9TIA6 FAD linked oxidoreductase 0.000540846487693 0.000141525577565 -1.61210751637e+11 +UniRef50_Q1GE40 0.000103418820932 3.78457387961e-05 -26472657930.5 +UniRef50_Q1GE41 0.000133876601203 4.05184742565e-05 -37689821481.3 +UniRef50_UPI00029A1476 large conductance mechanosensitive channel protein MscL 0.000302968559292 8.70364239287e-05 -87174452831.3 +UniRef50_Q28UC9 ATP synthase F0 subunit I 3.99963057228e-05 7.53271278961e-05 14263486469.3 +UniRef50_Q2FK78 N acetyl gamma glutamyl phosphate reductase 0.0123017086062 0.00473288708206 -3.05562612918e+12 +UniRef50_A3UCX1 3.21156217719e-05 5.15375710997e-06 -10884835623.3 +UniRef50_Q57714 Pyruvate synthase subunit PorB 0.00261614267694 0.00023688505764 -9.60535497686e+11 +UniRef50_B1LDG8 0.0151668477663 0.00177190023117 -5.40770469441e+12 +UniRef50_UPI00041FFD36 hypothetical protein 0.000138953488655 0.00112396107969 3.97659651903e+11 +UniRef50_D3DZ23 GMC oxidoreductase family protein 0.00283513583057 0.000506879780025 -9.39945538518e+11 +UniRef50_P31806 Bifunctional NADH hydrate repair enzyme Nnr 0.00349387460562 0.00151515902239 -7.98831762521e+11 +UniRef50_W8KGC4 Flagellar biosynthesis protein FlhB 0.000411009779397 0.000204135971329 -83517494944.2 +UniRef50_F8LHA2 Acetyltransferase, including N acetylase of ribosomal protein 0.000530495328908 0.000559613457528 11755345843.5 +UniRef50_A1B2J7 0.0017627622719 0.00160826934277 -62370691331.2 +UniRef50_I7ZAU8 7.05686831409e-05 6.64167214818e-05 -1676197872.08 +UniRef50_F9YXK8 0.000190649489319 0.0013119871208 4.52697762189e+11 +UniRef50_UPI0002377E10 FAD dependent oxidoreductase, partial 1.13758206593e-05 1.47236602542e-05 1351563927.07 +UniRef50_R6BDT2 0.000943433287974 0.00232425162529 5.57453307323e+11 +UniRef50_A9N4N9 0.000263348335306 0.000215708090639 -19232951383.6 +UniRef50_C3KDN7 Ferrochelatase 0.000569083175843 0.000189710945528 -1.53157224799e+11 +UniRef50_UPI00041EEA6A hypothetical protein 3.51542205647e-05 9.27948146877e-05 23270215177.1 +UniRef50_UPI0002F4135C hypothetical protein 7.66941211709e-06 2.22294511089e-05 5878066412.76 +UniRef50_B9KWR6 ABC sugar transporter, periplasmic lignad binding protein 0.00562456176975 0.000961188052067 -1.88266119586e+12 +UniRef50_UPI000200107B putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 2.08668255253e-05 5.95367829764e-06 -6020620540.72 +UniRef50_F2QGL0 Competence protein 0.000169923786482 0.00103424912004 3.48938743622e+11 +UniRef50_Q1D8I9 Triosephosphate isomerase 0.000705086242439 0.00312883228154 9.78496018693e+11 +UniRef50_E2Q677 Transcriptional regulator 1.7574079134e-05 2.56652457115e-06 -6058733940.41 +UniRef50_P18256 Threonine tRNA ligase 2 8.81188665171e-06 8.72380200171e-06 -35560854.1252 +UniRef50_UPI0003B50469 MULTISPECIES 5.35970811351e-05 0.000639088190285 2.36369945548e+11 +UniRef50_P39187 0.00263109519152 0.000656766108858 -7.97060878412e+11 +UniRef50_G4LES1 AsmA family protein 4.64053046482e-05 5.3554876288e-05 2886369806.1 +UniRef50_A4WX29 NH dependent NAD(+) synthetase 0.0027661491707 0.00247867042243 -1.16058698438e+11 +UniRef50_Q46906 0.00155107167279 0.000316410755563 -4.98447763279e+11 +UniRef50_UPI00034690F7 hypothetical protein 3.87141437211e-06 1.7480214073e-05 5494039438.01 +UniRef50_Q60759 Glutaryl CoA dehydrogenase, mitochondrial 0.00122127935186 0.0222356432992 8.48375660077e+12 +UniRef50_B6TP29 0.000955660731271 4.5942225497e-05 -3.67264524282e+11 +UniRef50_E8SI80 Disulfide bond regulator 0.00744334668654 0.00519267137046 -9.08625243993e+11 +UniRef50_I4E0I3 Arabinose efflux permease homolog 0.0039646496868 0.000841015482165 -1.26104945972e+12 +UniRef50_UPI0004758598 hypothetical protein 0.000103322863703 0.00012014684595 6792048086.59 +UniRef50_S9QAC1 Mobile element protein 1.75690414174e-05 1.29538176776e-05 -1863222458.92 +UniRef50_UPI00036AF80F hypothetical protein 3.3492886665e-05 2.43792539112e-05 -3679285379.56 +UniRef50_UPI00036D58A4 hypothetical protein 1.71947717262e-05 0.000153584672502 55062276635.6 +UniRef50_Q3JVF3 0.000133507487321 0.000453350341598 1.29124485185e+11 +UniRef50_C8PGN6 NLPA lipoprotein 9.3853897817e-05 8.98200582303e-05 -1628510541.93 +UniRef50_Q6FFC1 Lipid II flippase FtsW 9.48457258396e-05 0.00742819281348 2.96056220957e+12 +UniRef50_D9VLM5 Predicted protein 2.72881676196e-06 0.000233759924953 93270093447.2 +UniRef50_UPI0003B4E250 phosphohydrolase 5.05283365151e-05 0.000446014519245 1.59662625129e+11 +UniRef50_P56431 Thioredoxin reductase 0.000293352938116 0.00297950758623 1.08443359427e+12 +UniRef50_V4R4P9 Amino acid ABC transporter substrate binding protein 0.000528592450262 0.000311954266055 -87459493413.8 +UniRef50_Q5L0Z2 UPF0348 protein GK1103 5.33717073118e-06 0.000603177239407 2.41355372047e+11 +UniRef50_V9W180 Transposase 0.000208172420321 0.028190081614 1.12966401181e+13 +UniRef50_UPI000476CA5A hypothetical protein 0.000108159826629 2.11898835158e-05 -35110833276.0 +UniRef50_Q47129 Transcriptional activator FeaR 0.0057719588533 0.000431006693396 -2.1562079278e+12 +UniRef50_B0VAR2 0.000310262456591 0.00824925253297 3.2050677162e+12 +UniRef50_UPI0003C12F22 PREDICTED 1.00212523302e-05 1.38971306711e-05 1564739648.6 +UniRef50_K9AD18 Putative relaxase 0.000165116274744 2.45830705802e-05 -56734979057.3 +UniRef50_F0P9I7 Conserved integral membrane protein, putative 0.0214175323826 0.00553038332947 -6.41383702998e+12 +UniRef50_UPI00035F08CC hypothetical protein 7.11423311508e-06 6.12048326664e-06 -401189008.497 +UniRef50_UPI0004692399 spermidine putrescine ABC transporter ATPase 4.65941328524e-05 2.25009538529e-05 -9726712018.65 +UniRef50_A5FZW4 50S ribosomal protein L4 0.0161045284736 0.000861087213001 -6.15396429496e+12 +UniRef50_C5CJ75 Glycogen synthase 0.00485630786845 0.000485998855931 -1.76434737808e+12 +UniRef50_UPI0003600771 hypothetical protein 1.40228097457e-05 9.96411839586e-06 -1638543503.67 +UniRef50_V4R4P8 Phosphoribosylformylglycinamidine cyclo ligase 0.000133702129055 0.000214104543468 32459441347.1 +UniRef50_U6R7W5 4.98625704559e-06 8.04118694745e-05 30450245313.9 +UniRef50_E8U4E2 8.23413949508e-05 0.0709306429242 2.86023287338e+13 +UniRef50_H9KEJ9 2.12844644722e-06 2.21847098839e-06 36344011.9957 +UniRef50_L1BUX8 2.08156706662e-05 0.000513217935299 1.98788836688e+11 +UniRef50_Q8SDJ9 Amidase 0.0185940463825 0.00485060747131 -5.54839493941e+12 +UniRef50_A8ARE5 0.000260040996763 3.45971725452e-05 -91014438343.6 +UniRef50_P0AFV6 Murein DD endopeptidase MepS Murein LD carboxypeptidase 0.00245758881366 0.00290730719629 1.81556829733e+11 +UniRef50_M9RIA5 0.0286609732276 0.00175862905252 -1.08608064724e+13 +UniRef50_F8ETX3 ParB like partition protein 0.00508878308153 0.00194378626674 -1.26967380758e+12 +UniRef50_I0P9H0 Cellobiose phosphorylase 5.59718780152e-05 1.75678653173e-05 -15504171196.4 +UniRef50_UPI000380D689 hypothetical protein 7.53590808564e-06 1.8465251277e-05 4412309964.49 +UniRef50_UPI000362D231 hypothetical protein 1.84505432559e-05 9.22579209264e-06 -3724145245.03 +UniRef50_Q50245 ORF492 1.81400632233e-05 5.57851705111e-06 -5071250337.22 +UniRef50_UPI00037B94E6 hypothetical protein 5.80896567536e-06 2.37692786564e-05 7250798748.25 +UniRef50_UPI0003B6AEBD ATPase AAA 4.28792879967e-06 3.89942195503e-06 -156844980.696 +UniRef50_A3VC61 0.000575193348679 0.000148939998204 -1.72083708304e+11 +UniRef50_UPI0004785D9F hypothetical protein 2.11763211688e-05 0.000306866241995 1.15336526847e+11 +UniRef50_A4WUP0 30S ribosomal protein S4 0.0223286660813 0.00766989852299 -5.91792434659e+12 +UniRef50_L9IWH1 CarD like TRCF domain protein 0.00197320793986 0.000668998565575 -5.26525328846e+11 +UniRef50_A1APL2 Carbonic anhydrase 0.00210305619399 0.00255540773338 1.82619867429e+11 +UniRef50_UPI00036630BD hypothetical protein, partial 2.18362737097e-05 0.00080044626609 3.14334408543e+11 +UniRef50_A3K318 Flagellar protein FlaF, putative 0.000110318707228 0.000215945770765 42642941739.7 +UniRef50_B9KP57 0.00167077292697 0.00123961789519 -1.74062577197e+11 +UniRef50_G9RRJ9 2.70857963504e-05 1.92731318228e-05 -3154068541.97 +UniRef50_V5SXS6 Multidrug transporter 0.000924099335345 0.000680228272872 -98453740554.8 +UniRef50_L1K935 0.000717974040016 0.000782531669559 26062707257.7 +UniRef50_K4TPI5 LysE family efflux protein 0.000723683791117 0.000824584446383 40734832721.2 +UniRef50_UPI0003B59697 transketolase 2.31652842518e-05 1.12423272131e-05 -4813444067.66 +UniRef50_UPI000376937D hypothetical protein 8.54503017963e-06 1.87584368174e-05 4123277592.27 +UniRef50_UPI0004561BB0 hypothetical protein PFL1_05640 1.86796112704e-06 7.45079128412e-06 2253857043.44 +UniRef50_Q7VHW3 Dihydroxy acid dehydratase 7.02203490247e-05 9.78701946437e-05 11162581978.2 +UniRef50_X5DHG9 Membrane protein 5.82886316341e-05 2.70248089712e-05 -12621588859.3 +UniRef50_M9R6L8 0.00122880219295 0.000244063392719 -3.97551137757e+11 +UniRef50_O27115 Succinyl CoA ligase [ADP forming] subunit beta 0.00255977515612 3.26764381874e-05 -1.02022076342e+12 +UniRef50_Q0FGA1 ArsC family protein 3.36816800802e-05 6.32920284748e-05 11954061006.7 +UniRef50_M0LR14 1.56671892774e-06 1.26040490372e-05 4455905608.48 +UniRef50_Q2G6B7 9.04922605423e-05 1.96758324388e-05 -28589461040.7 +UniRef50_G7ZM83 LysR family regulatory protein 0.0100596731468 0.00132789202267 -3.52512719082e+12 +UniRef50_UPI0003737615 hypothetical protein 4.88062952016e-06 2.68209586006e-06 -887575017.624 +UniRef50_UPI000225B453 superfamily II DNA RNA helicase 2.10154509848e-05 4.25262794549e-05 8684185420.93 +UniRef50_R0DQJ6 9.81542836656e-06 8.84457661741e-06 -391944764.823 +UniRef50_Q2G6B8 0.000260032384171 7.36737421688e-05 -75235270653.9 +UniRef50_UPI000470B11D hypothetical protein, partial 9.05990986426e-05 0.000119472416867 11656512882.6 +UniRef50_U5UEE2 Putative transposase 0.000794579813612 0.000425549426858 -1.48982095645e+11 +UniRef50_D5APM3 Response regulator receiver protein 0.00573606833002 0.00152859377045 -1.69860911122e+12 +UniRef50_Q89LH6 UPF0271 protein blr4568 0.00334743294007 0.00178581042589 -6.30446172238e+11 +UniRef50_UPI00035D3C47 MULTISPECIES 3.76546728857e-05 0.000412827848174 1.51462014756e+11 +UniRef50_UPI000470BC53 4 alpha glucanotransferase, partial 1.17772791602e-05 0.000513795743814 2.0267101464e+11 +UniRef50_UPI000255652B arginyl tRNA synthetase 2.48446608002e-06 5.20173887474e-06 1096996371.92 +UniRef50_G7M9U0 Flagellar hook length control protein 0.000477484479373 0.00175016469241 5.13796619547e+11 +UniRef50_Q7NNG3 Phosphate import ATP binding protein PstB 2 0.00284611287239 0.000374294022347 -9.97903602389e+11 +UniRef50_T0UHU4 4 carboxymuconolactone decarboxylase 0.00362610164857 0.000945013456618 -1.08238820374e+12 +UniRef50_D3LR53 0.000153190505464 0.00021067185738 23205927144.0 +UniRef50_F8DFL1 DHHA1 domain protein 0.000269332731969 0.00266160559166 9.65789909946e+11 +UniRef50_A6M0Z6 0.000429176598265 0.00130610906882 3.54028399535e+11 +UniRef50_Q9RY66 GTPase Obg 0.000487021664979 0.0483118291317 1.93074616507e+13 +UniRef50_D4HCN2 0.000372519067945 0.00180833181262 5.79655224427e+11 +UniRef50_UPI000367C16B MULTISPECIES 3.13205186056e-05 3.91998659723e-05 3180989222.4 +UniRef50_A0A058ZKH3 HupH hydrogenase expression protein 0.000210498323396 9.15873718623e-05 -48005810335.7 +UniRef50_E6JKQ2 0.00278306881583 0.000770391404865 -8.12542569134e+11 +UniRef50_S5MQR6 3.35196496251e-05 5.68746720068e-05 9428709133.85 +UniRef50_Q6A9F2 0.000284117166548 0.00544885458829 2.08506787561e+12 +UniRef50_UPI00035E22E6 hypothetical protein 1.03103298132e-06 1.62102524768e-06 238187117.949 +UniRef50_O07319 Transcriptional regulator MraZ 0.011630499547 0.00242971734755 -3.71446868021e+12 +UniRef50_B9KXA3 2 dehydro 3 deoxyphosphooctonate aldolase 0.00680399872152 0.000436429290281 -2.57066591826e+12 +UniRef50_F0KLN9 Alkanesulfonate monooxygenase 0.000498067367165 0.00747921768352 2.81837605106e+12 +UniRef50_Q9X6A2 0.00157310789199 0.00037755569733 -4.82659092059e+11 +UniRef50_UPI00047341A0 3 isopropylmalate dehydrogenase, partial 1.70827308988e-05 4.28890039641e-05 10418309115.0 +UniRef50_A5CW53 UDP N acetylmuramate L alanine ligase 3.93384244249e-06 6.08193954618e-06 867213160.875 +UniRef50_Q9ZN31 ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT 0.000104080915098 0.00477422529246 1.88539459426e+12 +UniRef50_Q92UW6 Probable sulfoacetaldehyde acetyltransferase 0.0035996341033 0.00123617120207 -9.54158976178e+11 +UniRef50_UPI00047B8BC4 hypothetical protein 1.48984379325e-05 1.28767861933e-05 -816165615.572 +UniRef50_Q5HLP5 0.0243081285757 0.00089040212621 -9.45402353548e+12 +UniRef50_W1MLM9 5.76377878717e-05 0.000185932252757 51794049824.2 +UniRef50_UPI0002651735 6.29648843361e-06 9.61603403342e-05 36279139765.7 +UniRef50_P0ACM1 Pyruvate dehydrogenase complex repressor 0.00276770458698 0.000996507867737 -7.15053850585e+11 +UniRef50_R6M784 9.70700149224e-05 6.12839599899e-05 -14447269520.5 +UniRef50_C3DTJ7 Carbon starvation protein A 0.000236560785725 0.0111471603305 4.40474292435e+12 +UniRef50_Q3KFU0 3.07103943511e-05 2.62924668182e-05 -1783571559.1 +UniRef50_Q3J1W1 Chemotaxis histidine protein kinase, CheA4 0.00029177334441 0.000314237246508 9068952940.04 +UniRef50_UPI00036536A6 hypothetical protein 3.62750760237e-05 5.10358019115e-06 -12584315384.8 +UniRef50_UPI0004672B34 molecular chaperone 0.000384233683506 0.000121421235011 -1.06100610529e+11 +UniRef50_F9NYD0 Cobalt transport protein 0.000205155428724 0.00926790208234 3.65874203647e+12 +UniRef50_Q3JP97 3.06003056662e-05 2.27326996034e-05 -3176249113.94 +UniRef50_A7MKS2 0.000220341252157 2.92718630493e-05 -77137057068.0 +UniRef50_V9VW16 Short chain dehydrogenase 0.00210200881844 0.00114123418586 -3.87876509203e+11 +UniRef50_UPI0004792999 hypothetical protein 7.91885140831e-06 0.000211191922662 82063833306.3 +UniRef50_Q7N3Z6 D amino acid dehydrogenase small subunit 2.66758935861e-05 2.5544815252e-05 -456630203.368 +UniRef50_P0A1I8 Flagellar basal body rod protein FlgC 0.00729981178358 0.000558959063463 -2.72136496268e+12 +UniRef50_Q166G1 Oligopeptide ABC transporter, permease protein, putative 0.000335162883982 0.000434289272355 40018539403.8 +UniRef50_B9KSM2 Alcohol dehydrogenase GroES domain protein 0.00381265161128 0.000463339605172 -1.35215835755e+12 +UniRef50_Q8CQN2 0.0122954271695 0.00157026861228 -4.32987812204e+12 +UniRef50_UPI0003FD0CB4 ribonucleotide diphosphate reductase subunit alpha 5.1041979337e-06 2.84045098594e-05 9406621851.39 +UniRef50_I1ZLL6 Glutamine amidotransferase 0.00329992149264 0.00113718275107 -8.73124169761e+11 +UniRef50_C5WGZ9 0.000195423301531 0.000128136437524 -27164532702.3 +UniRef50_A0A016ULG1 1.0334150104e-05 1.02480028067e-05 -34778721.0662 +UniRef50_A0A023RVX8 Protein TniQ 0.000754492273666 0.0250971120869 9.82741433613e+12 +UniRef50_A0NZT5 0.000164870192273 3.54631234886e-05 -52243221671.4 +UniRef50_A0A017HEA9 Transport protein 4.58034513117e-05 6.34801634195e-06 -15928643269.9 +UniRef50_P44595 S adenosylmethionine 0.00220367576955 0.00821909583901 2.42849889955e+12 +UniRef50_E3EXK7 Peptidase, M48 family, putative 0.00904542431408 0.00442658819906 -1.86468081913e+12 +UniRef50_P65742 Phosphate acyltransferase 0.0198432634069 0.0101572824026 -3.91034939179e+12 +UniRef50_G0DTI5 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.000997700502833 0.00367843500875 1.08224541635e+12 +UniRef50_P0ACL7 Putative L lactate dehydrogenase operon regulatory protein 0.00257106029993 0.00391159728505 5.41191231132e+11 +UniRef50_UPI00047E9930 ABC transporter permease 0.000149820153733 5.85388505556e-05 -36851382240.3 +UniRef50_UPI0002D53BE1 hypothetical protein 3.55164984885e-05 0.000125481695144 36320053886.9 +UniRef50_A5UKI1 0.00112241721228 0.000499126825692 -2.51629977699e+11 +UniRef50_UPI000380963E hypothetical protein 2.69994222525e-05 1.75395288762e-05 -3819075041.96 +UniRef50_C1DH36 0.000134930295167 0.000184335031093 19945298157.6 +UniRef50_A0A010D0D1 Ribonuclease R 0.000405239932148 0.00590488475736 2.22027410417e+12 +UniRef50_UPI0002630D1B hypothetical protein 1.31392680446e-05 0.000107984511547 38290188683.9 +UniRef50_UPI00035EED6C hypothetical protein 9.26224322665e-05 7.49295799483e-05 -7142821596.57 +UniRef50_E6YJ75 8.1286825971e-06 0.00101445041805 4.06264433558e+11 +UniRef50_UPI000315AE23 hypothetical protein 0.000278627140287 8.02381318748e-05 -80092077202.8 +UniRef50_A6LR92 AMP dependent synthetase and ligase 8.41976183323e-05 0.00133383467156 5.0449381316e+11 +UniRef50_Q4L3C7 Transcription activator of glutamate synthase operon 0.0181089007795 0.00469507687983 -5.41532531444e+12 +UniRef50_O05267 NADH dehydrogenase like protein YumB 0.0108935172027 0.00384170912194 -2.84690145762e+12 +UniRef50_UPI0003AEB97B PREDICTED 1.67041915013e-05 0.000345399655201 1.32698392243e+11 +UniRef50_P0ABU3 Ribosome binding ATPase YchF 0.00403226623261 0.051238621047 1.90577847257e+13 +UniRef50_Q59829 Putative cystathionine gamma lyase 2.20070183609e-05 3.11388734628e-05 3686641965.1 +UniRef50_E6PJS8 7.60253689221e-05 0.000117472433191 16732688458.0 +UniRef50_T2GDK5 2.30137774795e-05 6.51203412961e-06 -6661956289.52 +UniRef50_UPI00036891D5 hypothetical protein 2.17302023173e-05 6.07627279662e-06 -6319683442.82 +UniRef50_Q2GKK2 Ribosomal RNA large subunit methyltransferase E 9.39633076161e-05 4.26220018819e-05 -20727115153.6 +UniRef50_P72622 Peptide methionine sulfoxide reductase MsrA 1 8.82127461275e-05 9.02387653957e-05 817928840.625 +UniRef50_UPI0003F87E98 hypothetical protein 6.48121695892e-07 1.48504368275e-05 5733648900.63 +UniRef50_UPI0003AA29AA flagellar basal body P ring protein 2.97679158004e-05 1.7232214983e-05 -5060816250.33 +UniRef50_G8SD75 2.87613702974e-06 8.22785508283e-06 2160554251.0 +UniRef50_UPI00046737F8 hypothetical protein 2.6625117591e-05 2.925875198e-05 1063230521.17 +UniRef50_V4NZE7 0.000297816355649 0.000107483552135 -76839688424.7 +UniRef50_UPI000469A681 hypothetical protein 1.42772106637e-05 5.80756907016e-05 17681983859.1 +UniRef50_UPI00029A7A9B 30S ribosomal protein S17 1.82272082306e-05 0.000203679016919 74869170917.0 +UniRef50_UPI0003608DE6 hypothetical protein 0.000109147639092 9.34767852255e-06 -40290468765.1 +UniRef50_K2I8R3 3.28297044332e-05 1.89365796444e-05 -5608824965.05 +UniRef50_A6UWL8 N acetyl gamma glutamyl phosphate reductase 0.00318066399445 0.000292444432406 -1.16600967964e+12 +UniRef50_UPI0003EC17DE PREDICTED 1.57166635462e-05 4.0899559249e-05 10166644024.1 +UniRef50_D3EJM2 Peptidyl prolyl cis trans isomerase 0.000541845917011 0.00130467347959 3.0796284796e+11 +UniRef50_M4ZCL2 DNA polymerase III subunit delta 0.00424997687245 0.00191617420191 -9.42184777076e+11 +UniRef50_Q1REU7 0.000272607979711 0.000127200303739 -58702863142.7 +UniRef50_UPI000444942A GIDA domain containing protein 9.28899600597e-06 9.21096842847e-06 -31500690.5428 +UniRef50_N1MZ98 8.2577830148e-05 5.68391109791e-05 -10391036778.1 +UniRef50_Q9RYF7 Cation transporter, putative 0.000108058966276 0.0542342682921 2.18514149081e+13 +UniRef50_A5ULI1 0.00172036473231 0.00293105347974 4.88769904159e+11 +UniRef50_B8GZV6 Prolipoprotein diacylglyceryl transferase 0.000123644673244 8.70299119297e-06 -46403367537.0 +UniRef50_Q9RV78 3 hydroxybutyryl CoA dehydratase 0.000268992391105 0.0177578846902 7.06048043399e+12 +UniRef50_A3PPE9 0.00596690696791 0.00087054853906 -2.05746243708e+12 +UniRef50_U1J219 2.87447238108e-05 4.90123661611e-05 8182295928.76 +UniRef50_UPI00047A7925 nitrate reductase 2.5192530971e-05 9.30408375773e-05 27391193969.3 +UniRef50_D8JNU4 Patatin like phospholipase family protein 0.000136770285816 0.00759635910017 3.0115275438e+12 +UniRef50_B9KX78 0.00091851766883 0.000379293370738 -2.17691466166e+11 +UniRef50_D3SQB6 Urea ABC transporter, urea binding protein 0.000128688405295 0.0618487860277 2.49171608009e+13 +UniRef50_B9KX77 0.00109867249485 0.000282515018784 -3.29492788466e+11 +UniRef50_UPI000360A512 single stranded DNA binding protein, partial 2.07733649357e-05 0.000476190512958 1.83857491253e+11 +UniRef50_A8Z136 0.00772150459114 0.00433666362347 -1.36650183532e+12 +UniRef50_R7CC37 2.56217476247e-05 2.29716559246e-05 -1069874539.61 +UniRef50_Q9HYQ2 0.000767475317639 0.000737121468519 -12254221373.4 +UniRef50_J5K8F9 Phosphate starvation inducible E 5.72100298805e-05 3.74015636479e-05 -7996920895.32 +UniRef50_UPI0003C1568F PREDICTED 5.9952218072e-06 6.31849921281e-06 130511055.705 +UniRef50_J8G7J1 4.35950683145e-05 3.88036940467e-05 -1934336588.68 +UniRef50_H5UTL4 1.86714398839e-05 2.66000917684e-05 3200894061.27 +UniRef50_A9D8H9 3.25946618424e-05 5.55862262664e-05 9281976696.19 +UniRef50_Q5HNG8 FtsK SpoIIIE family protein 0.00923194586035 0.0054246635279 -1.53704659822e+12 +UniRef50_F4CQG8 Amidohydrolase 2 0.0147318179917 0.00283234314216 -4.80396401972e+12 +UniRef50_M7ECE4 NADH dehydrogenase subunit B 0.000413355379642 5.91969440825e-05 -1.42978106448e+11 +UniRef50_U5W2D0 Cellulose synthesis regulatory protein 2.60578034524e-06 6.01811832403e-05 23243896678.4 +UniRef50_UPI0003B6414D polynucleotide phosphorylase, partial 3.9454300695e-06 1.2730723301e-05 3546730685.23 +UniRef50_B2TMR9 0.000264236791467 0.00234978666762 8.41962077577e+11 +UniRef50_UPI000393CC0B 1.62757991185e-05 2.40881767194e-06 -5598270576.99 +UniRef50_UPI000472C56D ABC transporter permease 6.56644040707e-05 4.31914850348e-05 -9072593188.52 +UniRef50_A6LYF9 HAD superfamily hydrolase, subfamily IA, variant 1 0.000754168816027 0.00114580788056 1.58109496304e+11 +UniRef50_UPI00035D9B42 hypothetical protein 6.85547744323e-06 8.10728450146e-06 505369870.807 +UniRef50_M1MIG9 Methyl accepting chemotaxis protein 0.00028552964153 0.00153995975188 5.06428829137e+11 +UniRef50_Q5FAD3 Shikimate kinase 1.50716256125e-05 0.0038363489849 1.54269656229e+12 +UniRef50_Q6A8V3 1 deoxy D xylulose 5 phosphate synthase 0.000139932985774 0.00541676813877 2.13032310532e+12 +UniRef50_Q60AI1 Spermidine putrescine import ATP binding protein PotA 0.00372957701979 0.000914842873652 -1.13634271547e+12 +UniRef50_M0WIY9 4.6876150298e-05 0.000537528435832 1.98082348651e+11 +UniRef50_A6LRS1 0.000715813189066 0.00150598707512 3.19002894324e+11 +UniRef50_J7MB25 Transposase 0.00235590746396 0.00187721445581 -1.93254241614e+11 +UniRef50_UPI00037C3240 hypothetical protein 5.48597857197e-05 1.28356194049e-05 -16965671635.8 +UniRef50_UPI0003A6B902 calcium binding protein 5.78782445176e-05 2.02561946162e-05 -15188483219.7 +UniRef50_Q8CS10 0.00823331486545 0.00387249481842 -1.76051656627e+12 +UniRef50_Q8CS11 0.00194400419344 0.00111440266111 -3.34920318957e+11 +UniRef50_I0GNK9 8.81444873594e-06 1.18734742659e-05 1234966144.91 +UniRef50_Q8CS13 0.00815329953045 0.00230065736676 -2.36278346148e+12 +UniRef50_Q8CS14 0.00804306199481 0.00165604434775 -2.57851740164e+12 +UniRef50_A1VUK8 4.8776090849e-06 7.23005814175e-06 949712552.047 +UniRef50_Q98FZ6 Mlr3554 protein 0.00440984587446 0.000941128479584 -1.40036377826e+12 +UniRef50_B5EPN2 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.000463284621103 0.000348113994329 -46495795331.2 +UniRef50_D3QJ51 Rhodanese like domain protein 0.00507984219759 0.00141752018494 -1.47852433825e+12 +UniRef50_Q9RTE5 0.000159276788545 0.0356110179335 1.4312302942e+13 +UniRef50_UPI00037196F6 hypothetical protein 8.12062391296e-06 5.12016024434e-05 17392319695.8 +UniRef50_Q9CBQ2 Ribonucleoside diphosphate reductase subunit beta 0.000113221590412 0.000571729163774 1.85105133887e+11 +UniRef50_Q8BIG7 Catechol O methyltransferase domain containing protein 1 1.46444276445e-05 1.81569509493e-05 1418048761.66 +UniRef50_Q8CPK8 Penicillin binding protein 1 0.0199481914462 0.00494624654849 -6.05646924977e+12 +UniRef50_T1XRT4 Competence protein ComGF, putative 0.0118698365882 0.00105790219461 -4.36491059205e+12 +UniRef50_B8DMV4 Integral membrane protein MviN 5.00164091291e-05 3.90412577959e-05 -4430803273.46 +UniRef50_A6M167 0.000207983258652 0.00228430180642 8.38235277029e+11 +UniRef50_A6M161 0.000383140797233 0.000940410881359 2.24976771435e+11 +UniRef50_A6LUR8 0.000155771384668 0.00174260392332 6.40623768478e+11 +UniRef50_UPI000366A76F hypothetical protein, partial 1.09585347221e-05 1.99912497457e-05 3646617898.91 +UniRef50_O05253 0.000797613011656 0.00272358384753 7.77538060761e+11 +UniRef50_O05255 0.00282833464044 0.00468627791081 7.50074497776e+11 +UniRef50_Q1IZU9 Serine tRNA ligase 9.25967266145e-05 0.0200639303506 8.06267245983e+12 +UniRef50_M9VH54 Transporter, major facilitator family protein 0.000139809625497 0.00386088035741 1.50224191714e+12 +UniRef50_Q9PEV8 DNA topoisomerase 1 5.62756909166e-05 0.00437707701427 1.74436051643e+12 +UniRef50_D7CV09 ATP dependent zinc metalloprotease FtsH 0.000192775420736 0.0620828788116 2.49857942159e+13 +UniRef50_F5X6L2 Thiamine transporter protein 0.0026632988611 0.00286202509202 80228218067.5 +UniRef50_Q7NMY2 Gsl0633 protein 2.30903238694e-05 0.000141420698737 47771424411.2 +UniRef50_UPI000225C104 PhoP family transcriptional regulator 1.63473903479e-05 6.03633039479e-05 17769764456.3 +UniRef50_UPI00037A9D80 hypothetical protein 8.45543840624e-06 8.04193253294e-06 -166937395.339 +UniRef50_UPI0003626827 hypothetical protein 5.27403769438e-06 1.66955763931e-05 4611015330.71 +UniRef50_Q2YYZ3 0.00460131953246 0.0020366669324 -1.03538172647e+12 +UniRef50_UPI0002490914 transcriptional regulator 1.59367230047e-05 2.26936951888e-05 2727872588.09 +UniRef50_I0C454 Nitrogen regulation protein NIFR3 0.000110831171716 4.14853337665e-05 -27995765749.3 +UniRef50_E7C5A1 MoxR like ATPases 2.69302501344e-05 4.79892533018e-05 8501778001.71 +UniRef50_D2ZNN2 0.00204929816724 0.00100428328925 -4.21885330019e+11 +UniRef50_B2ITM7 30S ribosomal protein S9 0.0288692210003 0.000477601140485 -1.14620453418e+13 +UniRef50_A4WTC5 0.000717761607152 0.000333691192315 -1.55053939544e+11 +UniRef50_M4YY80 Ribose ABC transporter permease 0.000649422652878 0.000579920873349 -28058721278.6 +UniRef50_P77453 Hydrogenase 4 component J 0.000462229666611 0.000392013325476 -28347198567.6 +UniRef50_P06225 DNA polymerase 1.89393207435e-05 9.31201518538e-06 -3886661394.14 +UniRef50_R8T1N5 3.2742992727e-05 0.000972204752947 3.79272241093e+11 +UniRef50_E8SF08 N acetyl L,L diaminopimelate deacetylase like protein 0.0243524177879 0.0061210757926 -7.36021648723e+12 +UniRef50_UPI00037C81CE hypothetical protein 1.34195091168e-05 4.10166321171e-05 11141297210.0 +UniRef50_K6VNK5 Putative ABC transporter substrate binding protein 4.07047724799e-05 1.21350655317e-05 -11533941284.7 +UniRef50_UPI00046779B7 secretin 2.69256767708e-06 4.71974861155e-06 818397819.553 +UniRef50_L7WTQ2 Serine threonine rich antigen 0.000441576898586 5.8362985223e-05 -1.54708159388e+11 +UniRef50_UPI0003B4AC14 general secretion pathway protein I 3.97486276189e-05 2.64272190157e-05 -5378016125.18 +UniRef50_A6TVR2 Aspartate carbamoyltransferase 0.000362658213269 0.000652725909678 1.17103888571e+11 +UniRef50_P10151 HTH type transcriptional regulator LeuO 0.000914623912942 0.000213225057899 -2.83163324913e+11 +UniRef50_D8JPC9 NUDIX domain protein 0.000345261575169 0.00631925724759 2.41177536213e+12 +UniRef50_Q6GGG1 Shikimate kinase 0.0115576285403 0.000365340253849 -4.51846412608e+12 +UniRef50_I9PDN2 0.000359510465573 0.000558959063463 80519846477.7 +UniRef50_UPI000470E9F4 uroporphyrinogen decarboxylase 4.02946166679e-06 1.06858031716e-05 2687246747.99 +UniRef50_Q43923 Putative porin QuiX 8.86811250236e-05 0.00584402323672 2.32350223648e+12 +UniRef50_A5UNK1 Nitroreductase, NfnB 0.00203394135176 0.00039907662865 -6.60014950766e+11 +UniRef50_F0MEP6 Acetyltransferase PglI 6.46380117888e-05 0.00338773567771 1.34157530673e+12 +UniRef50_H4G9C2 0.00634882130816 0.00334320798334 -1.21340298225e+12 +UniRef50_UPI000429B909 ribonucleotide diphosphate reductase subunit alpha 3.98872813898e-06 3.34971783169e-05 11912923446.2 +UniRef50_Q0TPV7 Stage V sporulation protein B 0.000156905386118 0.0017071025982 6.25833637576e+11 +UniRef50_UPI00024917F8 transcriptional regulator 1.99986538608e-05 2.67748715997e-05 2735642254.74 +UniRef50_UPI000377B35F hypothetical protein 7.93661496278e-06 1.31248640088e-05 2094559806.85 +UniRef50_UPI00037AAF89 hypothetical protein 8.45833243654e-06 2.66927805075e-05 7361470448.1 +UniRef50_J4KJZ5 TonB dependent siderophore receptor 0.000235085127254 0.00972025109182 3.82927789597e+12 +UniRef50_P75824 NADH oxidoreductase hcr 0.00334663307471 0.00115202491063 -8.8599024671e+11 +UniRef50_Q0F3C9 2.09997779138e-05 0.000336168293794 1.27237397413e+11 +UniRef50_P74241 Sulfate adenylyltransferase 0.0116975100777 0.00261589694111 -3.66635866717e+12 +UniRef50_B2TX82 0.00327154021598 0.000369916540948 -1.17142108454e+12 +UniRef50_A3PNK5 PTS IIA like nitrogen regulatory protein PtsN 0.00672088823442 0.00156998050926 -2.07948465739e+12 +UniRef50_Q73TT9 2.35365498718e-05 0.000791026888919 3.09845268039e+11 +UniRef50_P76552 Ethanolamine utilization protein EutH 0.0024427510306 0.000756495595641 -6.80762011774e+11 +UniRef50_Q73TT2 0.000115216776329 0.000165137306153 20153530483.7 +UniRef50_A6LRT3 0.00147072463189 0.00108996252638 -1.53718334471e+11 +UniRef50_A8IJV0 BioY family protein 0.000506559858125 0.000671825604273 66719809758.7 +UniRef50_B2AGC3 0.000148329850475 3.28531998182e-05 -46619340928.1 +UniRef50_I4W6U8 Putative NAD specific glutamate dehydrogenase 2.52732430622e-05 1.43516863018e-05 -4409166486.75 +UniRef50_R7N6I4 Amino acid transporters Alcohol dehydrogenase class IV 0.000204647714421 0.00247340480424 9.15925077941e+11 +UniRef50_A6LR22 Binding protein dependent transport systems inner membrane component 0.000433338977621 0.000226296325824 -83585659229.5 +UniRef50_UPI0002F61CB0 hypothetical protein 0.00014733738634 8.25342595979e-06 -56149901557.5 +UniRef50_UPI00034BD8C9 hypothetical protein 3.43273522016e-05 3.62213920152e-06 -12396071283.5 +UniRef50_UPI00047221AF bifunctional glyoxylate hydroxypyruvate reductase B 3.73201983903e-05 9.3457149736e-06 -11293642240.8 +UniRef50_P13511 Cobalt zinc cadmium resistance protein CzcA 0.000636812986412 0.00687374501912 2.51792599737e+12 +UniRef50_E8SJT4 Lipid A export ATP binding permease protein MsbA 0.0168473947198 0.00572730624667 -4.48931617542e+12 +UniRef50_A3PG03 Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03 0.00245506229071 0.001308352585 -4.62940779906e+11 +UniRef50_UPI00046F85CB L threonine 3 dehydrogenase 7.17556608728e-06 5.79518336705e-05 20499002318.2 +UniRef50_S1T400 3.36401700486e-05 4.23304245184e-05 3508362370.87 +UniRef50_X7DMX2 0.00362287185685 0.000540213485111 -1.24450701314e+12 +UniRef50_A6LRT8 0.00014334910969 0.00201882224934 7.5715152112e+11 +UniRef50_P76134 Anaerobic sulfatase maturating enzyme homolog YdeM 0.00136385636199 0.000245755926652 -4.51390866382e+11 +UniRef50_A6LZF4 Virginiamycin B lyase 0.000748679098248 0.000533675014833 -86799786871.4 +UniRef50_P16431 Formate hydrogenlyase subunit 5 0.00687312360461 0.0026984294597 -1.68537525556e+12 +UniRef50_A8FP74 Methionyl tRNA formyltransferase 0.003521665815 0.00168539264391 -7.41326012775e+11 +UniRef50_B0V5A3 0.000142987116986 0.00666431884964 2.63274164621e+12 +UniRef50_F8I069 Spermidine putrescine binding periplasmic protein 0.00709307934009 0.00331790905842 -1.52408256926e+12 +UniRef50_UPI000464AFE5 hypothetical protein 2.52303004713e-05 2.65922321505e-05 549828531.674 +UniRef50_UPI0002491C94 N 6 DNA methylase 3.26698126137e-05 2.15029564568e-05 -4508196863.28 +UniRef50_A6M1E5 Transposase, IS4 family protein 0.000209079791089 0.00147778559951 5.1219210363e+11 +UniRef50_UPI0003781939 30S ribosomal protein S2 2.01132048946e-05 1.63961366473e-05 -1500626064.99 +UniRef50_Q2JFL7 NADH quinone oxidoreductase subunit D 0.000248631699718 0.0491417942289 1.97387696996e+13 +UniRef50_C3A9F0 Beta glucosidase 0.000406286439817 0.00161150897409 4.86563126828e+11 +UniRef50_UPI00037F85FD hypothetical protein 0.000251272699936 1.50580758753e-05 -95362742412.8 +UniRef50_A3K670 NADP dependent isocitrate dehydrogenase protein 0.000419709008393 9.9184753374e-05 -1.29399575026e+11 +UniRef50_B7MFR7 Pyrimidine specific ribonucleoside hydrolase RihA 0.00244733732991 0.000792212748529 -6.68194104166e+11 +UniRef50_Q925Z1 Lin1243 protein 0.000120499050039 7.4057380629e-06 -45657157855.7 +UniRef50_UPI000366F76E hypothetical protein 7.68153527215e-06 5.82544259988e-06 -749327388.614 +UniRef50_Q8NUG3 0.0075844509417 0.001072666723 -2.62888719767e+12 +UniRef50_P11961 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 7.0615459272e-06 8.66837023811e-05 32144441634.2 +UniRef50_D2SAY9 ATPase involved in chromosome partitioning like protein 0.000171676391487 6.00223650408e-05 -45076100625.2 +UniRef50_F3R5J1 8.99494302583e-05 1.63425567409e-05 -29715998096.9 +UniRef50_Q3JPV0 7.62582162546e-05 1.09256542847e-05 -26375556987.9 +UniRef50_Q036S8 Glucose 1 phosphate adenylyltransferase 4.49378779022e-06 0.00364863359982 1.47118396074e+12 +UniRef50_B6JGW9 Replicative DNA helicase 0.00650011849208 0.00107466508921 -2.19032211654e+12 +UniRef50_Q8CNU7 Multidrug resistance protein like protein 0.00983015157263 0.0037811319924 -2.44206343436e+12 +UniRef50_H3UQK1 0.000435495026938 0.000301349651069 -54156134387.2 +UniRef50_UPI000475A83D hypothetical protein 2.47063053415e-05 1.8397109239e-05 -2547099889.12 +UniRef50_P0AA74 0.00153943678432 0.000332439067766 -4.87279789699e+11 +UniRef50_Q9RYX0 Pyridoxamine kinase 5.47434663642e-05 0.00268819853244 1.0631581263e+12 +UniRef50_N1N3N6 Mobile element protein 0.0063255603062 0.000593074004909 -2.31427506535e+12 +UniRef50_V9W2G7 Nitrate reductase 0.00693561683809 0.000899406346395 -2.43689224813e+12 +UniRef50_P52196 Thiosulfate sulfurtransferase 3.6146229101e-05 1.15355356642e-05 -9935638947.61 +UniRef50_Q9NJP9 Glycerol kinase, glycosomal 2.81083823504e-06 5.36105207239e-06 1029552620.78 +UniRef50_R6CPB8 Methionine tRNA ligase 7.61572270731e-05 0.00102081946198 3.81371736541e+11 +UniRef50_P24252 0.00300040104459 0.000349487225087 -1.0702064393e+12 +UniRef50_Q2YX94 Iron regulated surface determinant protein C 0.00812975078207 0.00346241069239 -1.88426246891e+12 +UniRef50_B7V9D9 Glutamate 1 semialdehyde 2,1 aminomutase 0.00168314435661 0.000589807824604 -4.4139337472e+11 +UniRef50_E0NC84 9.14851879891e-05 0.000184940509885 37729060275.1 +UniRef50_P33913 0.00107561712744 0.000874731953247 -81099809960.0 +UniRef50_Q3IWW9 0.0155892846467 0.00113153930161 -5.8367692123e+12 +UniRef50_B9DJK9 UPF0042 nucleotide binding protein Sca_0414 0.0105302911569 0.00311176490031 -2.99495008534e+12 +UniRef50_P33916 0.00251994775363 0.00204350723066 -1.92344885706e+11 +UniRef50_D8HEB7 0.0173873045571 0.00476957997903 -5.09393024907e+12 +UniRef50_UPI000375905C hypothetical protein 4.61692733082e-05 4.51763639174e-05 -400849705.434 +UniRef50_R4XS51 ABC transporter, periplasmic spermidine putrescine binding protein PotD 0.00793009865866 0.00202095332423 -2.38559448488e+12 +UniRef50_E6VA72 ABC transporter related protein 0.000145186918795 0.000744084444311 2.4178228035e+11 +UniRef50_E3GWS4 Oxidoreductase domain protein 0.00288791918355 0.000685884161275 -8.88988560503e+11 +UniRef50_UPI00035E9C46 hypothetical protein 1.41237259742e-05 5.60530703086e-06 -3438990260.18 +UniRef50_UPI00032913FE PREDICTED 2.22371218383e-05 1.13306078541e-05 -4403093533.4 +UniRef50_F2A5X0 6 pyruvoyl tetrahydropterin synthase 2.21458549105e-05 8.21690040535e-05 24232081875.9 +UniRef50_UPI00016A2F14 potassium transporting ATPase subunit A, partial 2.99809487876e-05 0.00569127869408 2.28553537171e+12 +UniRef50_A4WNG3 Histidine kinase 0.00135006226483 0.0001488060628 -4.84961869831e+11 +UniRef50_A4WWM3 Outer membrane lipoprotein carrier protein LolA 0.00710456835784 0.00886214222692 7.09554138804e+11 +UniRef50_P28249 Protein AsmA 0.00281614356189 0.000434798932434 -9.61378049298e+11 +UniRef50_Q8DFM1 Adenylate kinase 2.57944081683e-05 2.86360223214e-05 1147194504.13 +UniRef50_B0K5G6 50S ribosomal protein L10 0.0114714954327 0.000879203595179 -4.27623819684e+12 +UniRef50_R5P840 3.30488570308e-05 0.000132681864341 40223067685.6 +UniRef50_Q1R7P6 0.00303365266544 0.00107718886632 -7.89848444215e+11 +UniRef50_B4KEQ1 GI22193 2.02625207005e-06 8.66083866101e-06 2678464022.3 +UniRef50_Q3JSW3 7.85643680285e-05 3.68012859322e-05 -16860268732.9 +UniRef50_A5UNT1 Putative Gp40 related protein, ERF family single strand annealing protein 0.00265479455166 0.00031983758685 -9.42650779838e+11 +UniRef50_UPI0004686FFD hypothetical protein 1.82261617715e-05 2.81943627224e-05 4024285047.46 +UniRef50_Q48RL4 Xaa Pro dipeptidase 0.00631110062102 0.00824579642618 7.8106043793e+11 +UniRef50_I2FE21 Riboflavin synthase subunit alpha 0.00018294959072 0.00850610275909 3.36015907065e+12 +UniRef50_UPI0003761549 hypothetical protein 5.36408134229e-05 2.61282928728e-05 -11107142162.7 +UniRef50_M9R9R9 Methylenetetrahydrofolate reductase 0.00610159751872 0.000744368906608 -2.1627789313e+12 +UniRef50_K2CW16 Short chain dehydrogenase reductase SDR 4.8865538721e-06 5.14684494134e-05 18805682854.2 +UniRef50_F6AYF9 ABC type transporter, integral membrane subunit 0.000469001381553 0.00402249145926 1.4345875506e+12 +UniRef50_Q28TZ9 Protein MurJ homolog 0.0024160809991 0.000611732986985 -7.28437434329e+11 +UniRef50_K4SH63 6.57297906535e-05 4.5472997044e-05 -8177916158.97 +UniRef50_J8ST30 3.19164994001e-05 0.00480553833288 1.9271697131e+12 +UniRef50_E7S6W5 0.000491028659405 0.000780379842539 1.1681462337e+11 +UniRef50_U0CZ19 7.10808439944e-05 0.000626113155893 2.24073355326e+11 +UniRef50_UPI000368BB4B hypothetical protein 1.00566704627e-05 2.60486945075e-05 6456176351.09 +UniRef50_Q8CQ95 Histidinol dehydrogenase 0.00969720235544 0.00468322482678 -2.02420425674e+12 +UniRef50_P15713 Non hemolytic phospholipase C 0.000681265816543 0.000625523251695 -22503957467.3 +UniRef50_D0K1D5 0.000111792494231 0.00346006906629 1.35174034011e+12 +UniRef50_A4VLC1 Rad3 related DNA helicase 0.000174621930468 0.000162376611368 -4943585587.63 +UniRef50_S5Y961 Phage terminase 0.00109174991792 0.000350875569572 -2.99100065979e+11 +UniRef50_UPI000289E091 6 pyruvoyl tetrahydropterin synthase 0.000522431132873 0.000623523758693 40812333589.6 +UniRef50_O24990 Enoyl [acyl carrier protein] reductase [NADH] FabI 2.41213351301e-05 0.00244947618799 9.7914551655e+11 +UniRef50_A6LX16 Zinc finger, SWIM domain protein 0.000167692230552 0.00121534271162 4.22949355325e+11 +UniRef50_B2VB14 TraU protein 9.35781268509e-05 8.1059802057e-06 -34506154461.9 +UniRef50_UPI0003943901 PREDICTED 1.59857054583e-05 0.000272425337655 1.03527826386e+11 +UniRef50_Q58811 0.0040673964371 0.000585546207708 -1.40566566471e+12 +UniRef50_X7ZA42 Integral membrane nitrite extrusion NarU domain protein 2.21214070116e-05 1.83188997953e-05 -1535118825.23 +UniRef50_Q5HYK3 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 6.68709754544e-06 7.0573538081e-06 149476996.791 +UniRef50_Q59659 Succinate dehydrogenase cytochrome b556 subunit 0.00581920965314 0.000463848228053 -2.16202512498e+12 +UniRef50_M3H3A2 CRISPR associated helicase Cas3 3.18408876843e-05 1.02760345164e-05 -8705995854.39 +UniRef50_UPI0003347ABB PREDICTED 2.59274261715e-06 4.75901200702e-06 874549535.805 +UniRef50_UPI0003697ED9 hypothetical protein, partial 9.87500695752e-06 2.22133773691e-05 4981151543.99 +UniRef50_D3E1C7 Xylose isomerase like TIM barrel domain containing protein 0.0022864169283 0.000283958370386 -8.08417092758e+11 +UniRef50_F1U7I1 2.96049839993e-05 5.40870788903e-05 9883722136.58 +UniRef50_UPI0004727931 hypothetical protein 4.98240243046e-05 1.13157059074e-05 -15546280687.2 +UniRef50_UPI000468C176 hypothetical protein 6.07452314229e-05 7.94187198909e-05 7538716444.0 +UniRef50_P0AGH4 Peptide transport system permease protein SapB 0.00202190115476 0.000643645314655 -5.56418795749e+11 +UniRef50_A6M060 PfkB domain protein 0.00100356483133 0.00175371248917 3.02843814817e+11 +UniRef50_B1GYM8 UDP N acetylmuramate L alanine ligase 1.25775450324e-05 6.36184159349e-06 -2509355753.55 +UniRef50_Q9I0K4 Isocitrate lyase 0.000498819853153 0.00901115400854 3.43653375662e+12 +UniRef50_Q21KT5 Tetratricopeptide TPR_2 7.72789238238e-06 1.99831961578e-05 4947616523.62 +UniRef50_D6DNI5 Cation multidrug efflux pump 0.00158890227015 0.00036874383908 -4.92592931651e+11 +UniRef50_UPI000023E6F1 hypothetical protein FG03809.1 1.14531060573e-06 3.32584107032e-06 880306906.673 +UniRef50_H7CZP9 ABC transporter, ATP binding protein 0.000186871904876 0.000723172021518 2.16510938231e+11 +UniRef50_UPI0003650601 30S ribosomal protein S4 5.03937248265e-05 0.000155151661348 42292064498.4 +UniRef50_C7NH75 Chromosome segregation ATPase 1.0720748933e-05 4.06528973413e-05 12083975621.2 +UniRef50_U7G8A4 2.12763906924e-05 1.36856425068e-05 -3064478191.48 +UniRef50_L7WSV6 0.0208110411396 0.00294384330578 -7.21320702068e+12 +UniRef50_E0QAI5 TQXA domain protein 8.26423419184e-06 0.000105450547113 39235307136.5 +UniRef50_Q9L883 0.000684137332974 0.000538345552708 -58857930759.7 +UniRef50_H6SQS4 Cyclic nucleotide binding 0.000110903970089 0.000675509359373 2.27938124141e+11 +UniRef50_B5XNE4 3 dehydroquinate dehydratase 0.00106066752266 1.47115546141e-05 -4.22265259625e+11 +UniRef50_P38135 Short chain fatty acid CoA ligase 0.00309957241856 0.000814990096881 -9.2231391824e+11 +UniRef50_Q9RNH6 Glycogen synthase 0.00296091135405 0.0008706735064 -8.43854669199e+11 +UniRef50_R4R8F1 Transcriptional regulator, LysR family 0.000279619251005 0.000297798358178 7339128648.47 +UniRef50_Q5HR55 0.00874170233776 0.00155512799746 -2.90130825036e+12 +UniRef50_Q97QF9 Putative 3 isopropylmalate dehydratase small subunit 2.13626211155e-05 0.0027431953502 1.09883727337e+12 +UniRef50_P76524 Aminopeptidase YpdF 0.00573786613051 0.0012032102586 -1.83069622198e+12 +UniRef50_UPI0004663E5A spermidine putrescine ABC transporter permease 6.79019900333e-05 0.000289056145141 89282646283.8 +UniRef50_M7D3U9 0.00554402087679 0.00208121531034 -1.39797710058e+12 +UniRef50_UPI00044496EC mannitol 1 phosphate dehydrogenase M1PDH1 2.22039048191e-05 1.18965866313e-05 -4161190837.43 +UniRef50_A0A058ZQ19 Putative cation transport protein 7.76279430658e-06 3.45729977485e-05 10823608127.7 +UniRef50_F4FMY2 Group 2 glycosyl transferase 0.0113482289735 0.000954524416758 -4.19606607464e+12 +UniRef50_Q9I4G8 Arachidonate 15 lipoxygenase 0.000548856310141 0.000492696825262 -22672273200.0 +UniRef50_D4HAN6 ABC transporter, ATP binding protein 0.000157504585052 0.00340993991455 1.31304805439e+12 +UniRef50_I3GFM4 0.0012368876137 0.00144401183055 83618588042.3 +UniRef50_UPI0002F4F624 hypothetical protein 2.99466639964e-05 2.41311659071e-05 -2347787942.84 +UniRef50_D9XXK0 0.000237412571605 0.000727669038904 1.97922551972e+11 +UniRef50_UPI000382A772 hypothetical protein 4.76973672202e-05 4.62804987576e-05 -572007185.283 +UniRef50_A7HVG2 7.36637439323e-05 3.96149586029e-05 -13745912463.1 +UniRef50_UPI00042B174B Beta carbonic anhydrase 5, putative isoform 3 1.1733833101e-05 1.52502201871e-05 1419608617.58 +UniRef50_Q9KAF4 BH2333 protein 0.012144786948 0.000632821511128 -4.64752171458e+12 +UniRef50_M7MZC8 Cytoplasmic protein 3.22471803311e-06 9.68828248747e-06 2609420287.08 +UniRef50_U5UPA0 Transcription termination factor NusA 0.0246171850219 0.00358436003725 -8.49120954807e+12 +UniRef50_S6AFF6 8.92401864878e-05 0.000114168829327 10063999023.0 +UniRef50_A6LUU0 8.14132254934e-05 0.000630980644676 2.21867111075e+11 +UniRef50_Q9JZ56 Aspartate 1 decarboxylase 0.000302796247737 0.00621472997773 2.38672019438e+12 +UniRef50_A7ZI94 3 propionate 3 hydroxycinnamic acid hydroxylase 0.000879836348917 0.000116419200473 -3.08200871009e+11 +UniRef50_Q830B9 Probable nicotinate nucleotide adenylyltransferase 0.00439049541418 0.00617097548013 7.18801651571e+11 +UniRef50_UPI0003637298 hypothetical protein 3.08735039141e-05 1.32229969289e-05 -7125726266.0 +UniRef50_UPI0002F798B9 hypothetical protein 4.14840343257e-06 6.32428485689e-06 878430032.066 +UniRef50_UPI0003680D49 hypothetical protein 8.83531079733e-06 0.00010668911023 39504779632.1 +UniRef50_F9YXS7 Tyrosine recombinase XerC 0.000405192966456 0.00493891817861 1.83032050321e+12 +UniRef50_I3XDQ4 TOP1E 0.00015344958896 0.000656139274964 2.02941994936e+11 +UniRef50_Q00518 Type II secretion system protein K 0.000689954749221 0.00019218006846 -2.00957747005e+11 +UniRef50_A6LUU6 0.000290373837578 0.00228147001429 8.03829960036e+11 +UniRef50_P0AFY4 Protein SanA 0.00413161446614 0.00259867378184 -6.18866965549e+11 +UniRef50_P34896 Serine hydroxymethyltransferase, cytosolic 8.00527001523e-05 0.00012054364263 16346690358.0 +UniRef50_F4DTG1 TetR family transcriptional regulator 0.000160632335681 0.000499126825692 1.36654379412e+11 +UniRef50_M5JL13 YaeC family lipoprotein 6.47576439463e-05 2.08769302488e-05 -17715182596.6 +UniRef50_UPI0003A8766A hypothetical protein 3.1051190023e-05 2.66290425096e-05 -1785275217.01 +UniRef50_A0RGM3 7.37601891602e-06 0.000349487225087 1.38114492108e+11 +UniRef50_U6I6N8 Mechanosensory protein 2 4.44830441661e-06 7.70382742575e-06 1314294588.55 +UniRef50_D5SMQ9 0.000231767657539 9.27589780055e-05 -56119509755.8 +UniRef50_UPI00035E630D hypothetical protein 9.6952148618e-06 5.69142231235e-05 19062893077.6 +UniRef50_D6AZ23 Integral membrane protein 9.02898588779e-06 6.60884833075e-06 -977039230.205 +UniRef50_D2NRU7 Cytosine deaminase 1.94734193464e-06 3.86462821333e-05 14815812504.9 +UniRef50_UPI00041D1FA9 hypothetical protein 3.86153910082e-06 6.03383241947e-06 876981469.776 +UniRef50_S5VIT0 Relaxase mobilization nuclease domain protein 0.000457819746427 5.90424993402e-05 -1.60991268196e+11 +UniRef50_P77339 0.0012013631812 0.000468445833732 -2.9588772708e+11 +UniRef50_UPI00047C5809 short chain dehydrogenase 1.87741603106e-05 4.18647560786e-05 9321956865.02 +UniRef50_UPI000441CA6F PREDICTED 0.000187705338427 7.48656594271e-05 -45554763110.9 +UniRef50_P71015 HTH type transcriptional repressor GbsR 0.0267089046572 0.00386938121516 -9.22059588601e+12 +UniRef50_A3JNE7 0.000149229721474 8.52516392897e-05 -25828736877.2 +UniRef50_A0REF7 DNA binding response regulator 0.000977727025268 0.00992519376363 3.61220212004e+12 +UniRef50_Q6NCE2 3.52595635827e-05 1.18003008639e-05 -9470792237.11 +UniRef50_A7ZJJ2 Cyclic pyranopterin monophosphate synthase accessory protein 0.000987988099604 0.000673726323636 -1.26871335384e+11 +UniRef50_Q888H1 Uronate dehydrogenase 6.96161873087e-06 5.0203135352e-05 17457130893.0 +UniRef50_A6LV74 Integral membrane sensor signal transduction histidine kinase 0.000199475307231 0.000724256541209 2.11860623947e+11 +UniRef50_C8VDQ3 Putative glutathione dependent formaldehyde activating enzyme 8.91023047476e-05 2.49646046077e-05 -25893176604.6 +UniRef50_K8B5X1 3.83331743519e-05 0.0001182843946 32277288726.0 +UniRef50_F4H898 CRISPR associated HD domain protein 1.42027855374e-05 6.96184103225e-06 -2923258153.11 +UniRef50_M4UMY3 Transcriptional regulator, Crp Fnr family 0.000183542620181 0.000322163678398 55963022273.9 +UniRef50_I1AQG2 IS5 family transposase OrfA 9.62907484674e-05 7.80155010848e-05 -7377941630.86 +UniRef50_UPI0003B76181 hypothetical protein 2.92105033648e-05 3.17162967487e-05 1011619538.62 +UniRef50_UPI000474B984 sugar ABC transporter ATP binding protein 1.37329812279e-05 4.65897606602e-05 13264685054.8 +UniRef50_W4UB24 L xylulose 5 phosphate 3 epimerase 1.12346353354e-05 0.000252765520183 97508982130.4 +UniRef50_UPI0002BA5A10 MerR family transcriptional regulator 0.00144268123538 0.00249045105171 4.22997532434e+11 +UniRef50_Q893S7 Chemotaxis protein methyltransferase cheR 0.000368878816464 0.00162061810776 5.05342512466e+11 +UniRef50_S5Y8D8 DNA topoisomerase 1 0.005545819188 0.00124078986083 -1.73799316803e+12 +UniRef50_D4MGJ2 Cyclopropane fatty acyl phospholipid synthase 0.000115087191723 0.000956930029311 3.39862284108e+11 +UniRef50_UPI00036A03D0 hypothetical protein, partial 0.000153215269274 0.000232182404569 31880001554.3 +UniRef50_UPI000473270B hypothetical protein 8.94454828167e-06 1.57686001425e-05 2754953476.75 +UniRef50_G7M9J3 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.000940292506537 0.00074930822433 -77102698367.7 +UniRef50_UPI0003595AF6 0.000112942660081 0.000121114164807 3298936733.53 +UniRef50_B4SRW3 Acetyl CoA acetyltransferase 0.000106035390125 0.00568825099663 2.25360894183e+12 +UniRef50_A6LX32 0.000255097986351 0.000384774759058 52352104454.8 +UniRef50_B5GLS3 9.90513790878e-05 0.000324318294177 90943017957.3 +UniRef50_X4QTL9 0.000209565552343 0.0135372652476 5.38055591626e+12 +UniRef50_V8R9C6 Cytochrome C assembly protein 0.000622310584964 0.000268877121583 -1.42685426283e+11 +UniRef50_UPI000470A12B hypothetical protein 4.98012429875e-06 1.83618579394e-05 5402370083.05 +UniRef50_C5C6A7 2.30846910008e-06 1.83656647608e-05 6482486932.17 +UniRef50_U2Z7C1 6.67267421198e-05 4.03016204772e-05 -10668145879.8 +UniRef50_F8LKD4 0.00615826928226 0.00107432749897 -2.0524496849e+12 +UniRef50_I0C2E4 Hydrogen peroxide inducible genes activator 0.0157288754141 0.00311570116055 -5.09209322723e+12 +UniRef50_UPI0004728112 shikimate dehydrogenase, partial 3.85580903565e-05 3.38828718271e-05 -1887443091.7 +UniRef50_UPI0003B52B26 ABC transporter 1.89613097026e-05 7.15774437721e-06 -4765244167.9 +UniRef50_M7DCE8 Anticodon nuclease 0.00333468321886 0.0021962252729 -4.59609443234e+11 +UniRef50_UPI0004773C4C peptidylprolyl isomerase 6.44559936658e-06 2.53633220983e-05 7637316813.35 +UniRef50_L8N8P7 HflK protein 0.00116066238137 0.00156205134455 1.62045650032e+11 +UniRef50_B2TPA5 Cell division protein FtsA 0.000380561247775 0.00150451390765 4.5375348124e+11 +UniRef50_N0AQS7 D 3 phosphoglycerate dehydrogenase 0.00367858797636 0.00222687901887 -5.86072720611e+11 +UniRef50_U3TMH1 Chloride channel protein 0.0115080046447 0.00162874223364 -3.98837946753e+12 +UniRef50_UPI00022337B0 PREDICTED 4.97875541753e-07 7.7248953018e-06 2917636562.64 +UniRef50_UPI000370CB23 hypothetical protein 0.000151167679488 8.93179447265e-05 -24969496904.8 +UniRef50_F4DXM1 Short chain dehydrogenase 0.000281705961835 0.000234068722742 -19231737996.5 +UniRef50_E1R075 FAD dependent oxidoreductase 0.000734509607042 0.000597391113129 -55356418625.8 +UniRef50_UPI0003A40543 hypothetical protein 0.000192532944305 5.45928348185e-05 -55688114915.0 +UniRef50_B9KSE8 FAD dependent oxidoreductase 0.00302282200461 0.000529762607153 -1.00647867203e+12 +UniRef50_Q11NV4 Isoleucine tRNA ligase 2.61784077345e-06 4.13882837431e-06 614041359.084 +UniRef50_X0YWS3 Marine sediment metagenome DNA, contig 1.12947381864e-05 2.11295975518e-05 3970453413.11 +UniRef50_U3STL6 0.00335445708426 0.0019635407469 -5.61529993855e+11 +UniRef50_D9VBW9 Predicted protein 3.32320876086e-05 4.69074606352e-05 5520915906.54 +UniRef50_B9KLG3 Membrane protein 0.000129571849717 0.000273864023365 58252521165.8 +UniRef50_S5YCD9 6.49824300693e-05 1.15094696474e-05 -21587690309.3 +UniRef50_K5RU55 0.000406513133883 0.00793056907271 3.03755371305e+12 +UniRef50_L8P717 Putative UPF0225 protein 8.11625701915e-06 5.30623068058e-05 18145271848.9 +UniRef50_P97089 Electron transfer flavoprotein subunit beta 0.00123269506041 0.00502244926693 1.52997027869e+12 +UniRef50_D3P6N7 Peptide nickel transport system ATP binding protein 0.000190434500872 0.000385158373492 78612416907.3 +UniRef50_J2GHT5 5.17778347599e-05 1.23377137212e-05 -15922460848.0 +UniRef50_D7I331 Phenylalanine hydroxylase transcriptional activator PhhR 0.000338415015832 0.000159630651457 -72177441829.1 +UniRef50_Q8DSP8 Membrane protein insertase YidC 2 0.00653334374049 0.00699150135768 1.84963852286e+11 +UniRef50_D2JDJ5 Replication initiator protein 0.000152293368515 3.15623109994e-05 -48740609455.9 +UniRef50_UPI000273B72B PREDICTED 9.5420187226e-06 4.42176667899e-05 13998984642.8 +UniRef50_F0RNI2 0.000467147949714 0.0186302563141 7.33266973311e+12 +UniRef50_Q9I4X3 Anthranilate CoA ligase 0.000896382203803 0.000155566306503 -2.99076468573e+11 +UniRef50_UPI000477551D acetyl CoA hydrolase 6.45123520899e-05 4.09232928958e-05 -9523192666.97 +UniRef50_E8SEC6 Acid phosphatase 0.0197872925081 0.00652914356851 -5.3524774227e+12 +UniRef50_Q2W0I4 0.000628173082596 0.000168201568715 -1.85696144639e+11 +UniRef50_Q0D8N0-3 Isoform 3 of DEAD box ATP dependent RNA helicase 53 1.06555769396e-05 0.00017226997901 65245717347.4 +UniRef50_UPI0003700CC6 hypothetical protein, partial 7.60524286994e-07 1.03685676294e-05 3878885001.28 +UniRef50_I6T7T0 Transposase 0.00042896135097 0.000311670146086 -47351898736.6 +UniRef50_F7YG57 7.09008418504e-06 5.57908908074e-05 19661113259.6 +UniRef50_A3PRI3 0.000427809343597 0.000219498346369 -84097705844.3 +UniRef50_UPI00046735F8 methionine gamma lyase, partial 5.56661806243e-06 8.90237086444e-06 1346684340.46 +UniRef50_UPI0004753FFF hypothetical protein 3.12109510551e-06 2.36978900896e-05 8307104640.75 +UniRef50_UPI0002883A7C phosphoribosylaminoimidazole carboxylase 3.64934125607e-06 6.46133519128e-06 1135236458.69 +UniRef50_Q8CPQ1 Bifunctional autolysin 0.0187552720207 0.00469974413244 -5.67438908923e+12 +UniRef50_UPI000225B6E8 flagellar biosynthesis protein FliQ 0.000468296934658 0.000149756290545 -1.28598766962e+11 +UniRef50_F2FNL1 0.000171385230033 9.42515328672e-05 -31139820082.7 +UniRef50_R9VQB8 Major facilitator transporter 0.000375773105201 0.00227920907105 7.684404572e+11 +UniRef50_Q56318 3.09902032432e-05 0.00043845233274 1.64497461801e+11 +UniRef50_A7FAU5 0.000650837911816 0.015686549076 6.07010110591e+12 +UniRef50_U5P8L4 Membrane protein 0.00558026408043 0.00255596465028 -1.22094679228e+12 +UniRef50_Q826Q0 Peptide deformylase 2 1.40409634433e-05 4.75203004678e-05 13516019194.5 +UniRef50_Q7UJL3 Inosine 5 monophosphate dehydrogenase 0.00867871221614 0.00255875222324 -2.47070294949e+12 +UniRef50_A3K7K9 0.000288438103518 0.000160638752866 -51594166132.6 +UniRef50_E3JT91 2.37562605899e-05 9.3430345138e-06 -5818796237.09 +UniRef50_Q89ZA3 6.53597731495e-06 0.00374432355559 1.50899071316e+12 +UniRef50_Q9HXE9 Phosphatidylcholine synthase 0.00263114249638 6.41905360119e-05 -1.03631000644e+12 +UniRef50_UPI0003D71460 PREDICTED 6.00943169724e-06 3.86548482433e-05 13179355264.0 +UniRef50_Q3J224 Phage related protein, putative DNA packing 0.000333075872518 0.000522684433979 76547303020.5 +UniRef50_P43671 Paraquat inducible protein B 0.00405579005205 0.000767517498713 -1.32751598143e+12 +UniRef50_UPI00006CBA16 Carbonic anhydrase family protein 1.81786432917e-05 9.50550847316e-05 31035962789.3 +UniRef50_W7WVT2 0.000386805509454 0.000102319047865 -1.14850675585e+11 +UniRef50_UPI000362D292 hypothetical protein 1.27606570305e-05 1.89459236717e-05 2497068044.81 +UniRef50_P37906 Gamma glutamylputrescine oxidoreductase 0.00448105289624 0.000728979094331 -1.51475823695e+12 +UniRef50_UPI0001FFEB3E acyltransferase 3, partial 6.39145599516e-05 1.44080514404e-05 -19986384999.1 +UniRef50_UPI00037F5E94 hypothetical protein 1.363233158e-05 1.23792924587e-05 -505867269.788 +UniRef50_P0ADP7 0.00291741151191 0.000294335586571 -1.05896793982e+12 +UniRef50_G9E7X5 Protein fecR 2.95138286299e-05 1.36285921389e-05 -6413064905.19 +UniRef50_A6LS23 Helix turn helix domain protein 0.000145001020044 0.00119249429921 4.22885890989e+11 +UniRef50_UPI0003A885D5 translation initiation factor IF 2 2.63013036585e-06 7.58688947198e-05 29567387910.4 +UniRef50_E6C679 0.000752976542231 0.00687258354044 2.4705604412e+12 +UniRef50_W4TI22 Lysophospholipase L2 3.95370910729e-05 0.00035402877194 1.26964150813e+11 +UniRef50_E7T8A0 Mg chelatase subunit ChlD 0.00490348905408 0.00154027580513 -1.35777045987e+12 +UniRef50_Q1IVF1 Queuine tRNA ribosyltransferase 6.46852211643e-06 4.6756597222e-05 16264790310.4 +UniRef50_P23910 Protein AraJ 0.00246757895168 0.00143330075411 -4.1755080038e+11 +UniRef50_A6LPC4 ATP dependent helicase nuclease subunit A 0.00041999196467 0.00115353815113 2.96141597098e+11 +UniRef50_UPI000379410F hypothetical protein 0.000262342987558 1.46378192363e-05 -1.00001616136e+11 +UniRef50_N2DXX0 Dihydrouridine synthase family protein 0.000400802427531 0.000553718822241 61734225039.6 +UniRef50_M9RF98 Peptidyl prolyl cis trans isomerase 0.00401723530971 0.000623153372152 -1.37023252826e+12 +UniRef50_Q9L6V4 Transposase 1.00184098154e-05 3.26347939783e-05 9130511820.81 +UniRef50_Q1IQY5 Bifunctional protein GlmU 4.10585882136e-06 5.30013897974e-06 482145555.404 +UniRef50_A0A011NHH5 Periplasmic [NiFeSe] hydrogenase small subunit 0.00010971566267 1.10355598163e-05 -39838368463.1 +UniRef50_D4HEK1 Bacterial type II secretion system domain protein F 0.00106312334069 0.00613748913487 2.04858374058e+12 +UniRef50_V9VZ19 Membrane protein 0.00466072222998 4.65498952615e-05 -1.86279799379e+12 +UniRef50_Q9I3X4 0.00139341763647 0.000242172737698 -4.64771692997e+11 +UniRef50_A5IV60 Molybdate ABC transporter, inner membrane subunit 0.0209006427244 0.00357607465006 -6.99414072795e+12 +UniRef50_UPI0004625430 PREDICTED 1.26918562342e-05 4.41524394923e-05 12701023526.1 +UniRef50_UPI000376710A hypothetical protein, partial 2.30396987402e-05 2.55688421838e-05 1021046244.26 +UniRef50_Q6F6X6 0.000391769482445 0.00819260071316 3.1492912948e+12 +UniRef50_B7V4B9 0.00208375718604 0.000424916122588 -6.69694493584e+11 +UniRef50_O31766 1.42187698079e-05 0.00029460116961 1.13193815479e+11 +UniRef50_W0Z2F6 Putative major facilitator superfamily transporter 0.000268773044517 0.00037631903353 43417635502.2 +UniRef50_P0A6G4 Nicotinamide nucleotide amidohydrolase PncC 0.00413301879053 0.000971841663992 -1.27620599799e+12 +UniRef50_A6LT79 Periplasmic binding protein LacI transcriptional regulator 0.000259959046035 0.000905519268575 2.60620583754e+11 +UniRef50_UPI00046F3756 50S ribosomal protein L3 3.18885010302e-05 9.83781746433e-05 26842697157.7 +UniRef50_M2GKY0 0.00232349308678 0.000712771551959 -6.50268049383e+11 +UniRef50_UPI0003B5DDE6 ATPase 5.02070069802e-05 2.0190129812e-05 -12118181661.3 +UniRef50_Q8F4Q4 Inosine 5 monophosphate dehydrogenase 2.58031064534e-05 4.35773474071e-06 -8657759724.72 +UniRef50_J9YME8 ABC superfamily ATP binding cassette transporter, membrane protein 0.000421485147643 0.000258671566595 -65729840616.4 +UniRef50_UPI00039B3F34 aldehyde activating protein 6.24089332808e-05 0.000102345566425 16122908877.9 +UniRef50_A0A017SYI4 9.76617089557e-06 4.08607911706e-06 -2293122753.55 +UniRef50_G1WMK0 1.13022738335e-05 7.26703929428e-05 24775062755.9 +UniRef50_Q5LMW0 Ribonuclease HII 1.34569502043e-05 3.029848459e-05 6799134100.37 +UniRef50_P39814 DNA topoisomerase 1 0.0220510460708 0.0049457739908 -6.90560824399e+12 +UniRef50_A0A023KT22 DNA polymerase II 0.000792370158037 0.000162782198958 -2.54172384993e+11 +UniRef50_A0A014PEH8 3.46158632631e-05 8.12425598867e-05 18823769600.9 +UniRef50_B9KJL3 0.0103562773928 0.00141752018494 -3.6086859757e+12 +UniRef50_UPI000350C992 PREDICTED 9.3073579535e-05 1.40336191537e-05 -31909401935.3 +UniRef50_A8HYP6 3.95861867723e-05 9.14682872319e-06 -12288742377.3 +UniRef50_UPI00042B224B Tubulin FtsZ family protein, putative isoform 4 3.20329347985e-06 1.33144282389e-05 4081989179.82 +UniRef50_I2C5T3 Ribonucleoside diphosphate reductase 0.010004639477 0.0042595998408 -2.3193430007e+12 +UniRef50_G9EUU6 0.000470454097827 0.0239414267189 9.47551966836e+12 +UniRef50_I4CQD2 5.48359523491e-05 7.90088972637e-05 9758914497.42 +UniRef50_Q5HR38 Cys tRNA Cys tRNA(Cys) deacylase 0.014542394519 0.00211327855548 -5.01778663687e+12 +UniRef50_Q9HVZ2 0.000520626827673 0.000131935981468 -1.56919264386e+11 +UniRef50_UPI000363B12A NADH dehydrogenase, partial 0.000114582432049 4.73088528801e-06 -44348417457.5 +UniRef50_Z5X6G1 2.79755658908e-05 3.90549550631e-05 4472885368.25 +UniRef50_P0AG42 Riboflavin biosynthesis protein RibF 0.00400826467786 0.000861049857057 -1.27056924383e+12 +UniRef50_C6S7Y9 0.000222924796565 0.00504770345406 1.94782235072e+12 +UniRef50_P76422 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.00415509071857 0.000454909502082 -1.49380856343e+12 +UniRef50_B8H627 Ribonuclease 3 1.99106079718e-05 1.41145614699e-05 -2339935098.31 +UniRef50_P49376 ATP synthase subunit beta, mitochondrial 2.37544018979e-05 0.000977517537553 3.85045881854e+11 +UniRef50_W0YWB6 Protein PelB 1.32995650804e-05 1.65574701479e-05 1315256254.74 +UniRef50_UPI00036635D2 hypothetical protein 0.000423636293519 0.000392324677706 -12640883540.4 +UniRef50_Q2T4E0 DNA binding response regulator 0.000171584540393 0.00643806753779 2.52985608444e+12 +UniRef50_UPI0003ACD19D PREDICTED 0.000139972127338 9.28995362949e-05 -19003782649.7 +UniRef50_UPI0003711349 hypothetical protein 0.00036627084632 0.000122071493478 -98586275405.4 +UniRef50_UPI000378A2B6 hypothetical protein 1.47202043254e-05 1.48936210484e-05 70010459.1376 +UniRef50_UPI0004253BDC phosphopentomutase 8.92103776348e-06 1.60697768643e-05 2886033699.89 +UniRef50_UPI00034DE29F hypothetical protein 2.92713625505e-05 0.000100444004967 28733269130.1 +UniRef50_Q8CU58 0.00582953518667 0.00577027629805 -23923540524.2 +UniRef50_Q8CU59 0.00708778879664 0.00270396869368 -1.76980197109e+12 +UniRef50_X8BCV4 FAD binding domain protein 4.26204407769e-05 0.00175477472867 6.91217696517e+11 +UniRef50_UPI0004769DD4 hypothetical protein, partial 0.000250241001873 0.000198427422761 -20917777711.6 +UniRef50_P94132 Probable electron transfer flavoprotein ubiquinone oxidoreductase 8.94942108975e-06 0.00606438667237 2.44465432691e+12 +UniRef50_Q8CU51 0.0153658943739 0.0028005218736 -5.07279507283e+12 +UniRef50_UPI0003074F79 hypothetical protein 7.72744111147e-05 2.76852406622e-05 -20019756639.2 +UniRef50_A6LT48 0.0002881572434 0.000357959642661 28180085153.4 +UniRef50_O67610 3 oxoacyl [acyl carrier protein] reductase FabG 1.29087399635e-05 3.73124738155e-05 9852086823.54 +UniRef50_A6LT46 0.000246186514471 0.00037540259135 52166115895.6 +UniRef50_B4REX9 UPF0301 protein PHZ_c0553 4.84866925293e-05 9.12973086759e-05 17283171083.7 +UniRef50_Q0IS03 Os11g0579700 protein 5.19157162963e-06 0.000179631578807 70423571517.0 +UniRef50_A6LT42 8.2002749205e-05 0.000250990709374 68222513235.7 +UniRef50_Q2NGX9 Phenylalanine tRNA ligase beta subunit 0.00360382400105 0.000216098972538 -1.36766616607e+12 +UniRef50_UPI00016C0C74 DNA mismatch repair protein MutS 2.14564311589e-06 3.31929308211e-05 12534171039.7 +UniRef50_UPI0004723041 hypothetical protein 0.00197739518055 0.000261811851881 -6.92602042359e+11 +UniRef50_F2JLI9 MATE efflux family protein 0.000464833609578 0.000442080971927 -9185519025.97 +UniRef50_UPI000464D0AC hypothetical protein 4.29365125812e-05 3.40182117107e-05 -3600427501.28 +UniRef50_UPI0003B58353 preprotein translocase subunit SecB 5.21614936035e-05 9.16598403316e-05 15945967273.4 +UniRef50_Q8FT41 Carbamoyl phosphate synthase small chain 4.86765306937e-06 7.95470631431e-06 1246281277.39 +UniRef50_F5XZV5 Candidate signal transduction protein , STAS domain protein 2.50703971573e-05 0.00556343690481 2.23590652254e+12 +UniRef50_A6VBI2 Membrane protein, putative 0.00055774807656 0.000469477201255 -35636035566.1 +UniRef50_UPI00030DD393 hypothetical protein 3.49878184027e-05 0.000212340242704 71599350049.3 +UniRef50_P0AFT0 Murein DD endopeptidase MepM 0.00277489039148 0.000420682623693 -9.50422565235e+11 +UniRef50_Q2FK43 Pyruvate formate lyase activating enzyme 0.0249632559056 0.00427335225639 -8.35276799685e+12 +UniRef50_I7L6K8 Rhodanese like domain protein 2.10893064847e-05 2.89865110268e-05 3188198383.24 +UniRef50_O33367 DNA gyrase subunit B 1.4741424855e-05 1.20167081245e-05 -1100001580.14 +UniRef50_J9ZQJ4 0.000251099327394 0.000490831088969 96782653987.4 +UniRef50_B2HGA4 Isopentenyl diphosphate delta isomerase 0.000142806805364 0.00587166537189 2.31281050431e+12 +UniRef50_UPI0002626EA5 hypothetical protein 1.15228457292e-05 5.11895670415e-05 16013942159.2 +UniRef50_A4EG23 6.37334960829e-05 2.57806518948e-05 -15322028932.5 +UniRef50_O33818 4 hydroxybenzoyl CoA reductase subunit gamma 0.000615068737902 0.000227424037889 -1.56496922331e+11 +UniRef50_F0QNA7 0.000243539347646 0.00237210857846 8.5932951896e+11 +UniRef50_UPI000467E119 hypothetical protein 7.27970005919e-06 1.28422223556e-05 2245658510.89 +UniRef50_W1K4B0 ABC transporter glycerol 3 phosphate binding protein 7.75238429883e-05 2.9140143902e-05 -19533093055.9 +UniRef50_Q65GR3 Histidine tRNA ligase 0.0106715233029 0.00109291647713 -3.86700111829e+12 +UniRef50_UPI00047342DF hypothetical protein, partial 2.63105914219e-05 2.56093625476e-05 -283094701.601 +UniRef50_F0MV13 CoA binding domain acetyltransferase, GNAT family 9.69868945575e-05 0.00424945530025 1.67640245189e+12 +UniRef50_Q3JS21 EutG protein 0.00014842175184 0.00306474867415 1.17735696589e+12 +UniRef50_A9IBR9 6.4386472309e-05 6.29141111262e-05 -594410277.4 +UniRef50_P0ABI1 ATP dependent Clp protease ATP binding subunit ClpA 0.00302631730226 0.0110599480006 3.24327529665e+12 +UniRef50_UPI000347EC3A cell division protein FtsW 1.03774201338e-05 6.71910728558e-06 -1476905789.37 +UniRef50_I0C1D1 0.0152956111508 0.00245054159883 -5.18571220487e+12 +UniRef50_Q5F4X8 Lipid A export ATP binding permease protein MsbA 6.3301171976e-05 0.00411609759999 1.63616365139e+12 +UniRef50_V5VD21 0.000291120299886 0.00445790363574 1.68218156486e+12 +UniRef50_A6LW40 NUDIX hydrolase 0.000215296191359 0.0011734438617 3.86815972311e+11 +UniRef50_A0A011R4M2 N formylmethionyl tRNA deformylase 1.25143292356e-05 0.00130466144873 5.21655648566e+11 +UniRef50_Q31N84 3 oxoacyl [acyl carrier protein] synthase 3 1.81201588023e-05 2.34286401925e-05 2143099079.62 +UniRef50_F9YZY2 0.000119457591412 0.00565632369959 2.23530079286e+12 +UniRef50_B6B233 PucC protein 0.000147214940286 3.79736872511e-05 -44102034391.2 +UniRef50_A6LYW0 Lysine exporter protein 0.000643443565143 0.000528925442146 -46232371549.3 +UniRef50_P77733 Probable formate transporter 2 0.00296658010794 0.00023688505764 -1.10201138893e+12 +UniRef50_K0C8T6 Oxidoreductase, short chain dehydrogenase reductase family 0.000348954021977 0.00778331598507 3.00134315438e+12 +UniRef50_UPI0003B430E0 preprotein translocase subunit SecA 8.92039028064e-06 1.93822003087e-05 4223561089.19 +UniRef50_Q9RR67 Thymidylate synthase 0.000196266545327 0.0399768523249 1.60599106419e+13 +UniRef50_X0TUW0 Marine sediment metagenome DNA, contig 9.00394108045e-05 5.56900715447e-05 -13867249773.0 +UniRef50_A6LRF1 Glycosyl hydrolase, BNR repeat containing protein 0.000398289525115 0.000352146686695 -18628430106.5 +UniRef50_Q8XU08 2.09185418909e-05 5.74538965356e-06 -6125587753.71 +UniRef50_A5UJG2 Coenzyme F420 reducing hydrogenase, beta subunit 0.00230374770485 0.00189654404796 -1.64393113237e+11 +UniRef50_A3CX71 Glycerol 1 phosphate dehydrogenase [NAD+] 0.00192676720314 0.000366887969667 -6.29742388423e+11 +UniRef50_Q5HM56 Heme degrading monooxygenase 0.000703390041336 0.000567916740756 -54692233888.5 +UniRef50_D9UMJ7 Secreted protein 4.08137245055e-05 1.15734616825e-05 -11804652920.0 +UniRef50_UPI0001FFDC99 DEAD DEAH box helicase domain protein, partial 3.39560496635e-05 0.000162512728265 51899908719.1 +UniRef50_A6LWX4 Efflux transporter, RND family, MFP subunit 0.000443601321544 0.000367539916684 -30706922520.4 +UniRef50_Z6ADI2 5.84187962169e-05 5.87645765409e-05 139595760.001 +UniRef50_A9M186 Imidazoleglycerol phosphate dehydratase 0.000186819427941 0.00237721283452 8.84288697386e+11 +UniRef50_Q31TM6 5.88070452071e-06 1.25539138289e-05 2694056487.2 +UniRef50_UPI00035E404B ABC transporter 5.99677005843e-06 2.00761006079e-05 5683998515.65 +UniRef50_G1Y0V7 0.000152418055466 4.84870768046e-05 -41958211462.0 +UniRef50_G8R9K4 0.00939670421942 0.00196907053381 -2.9986268662e+12 +UniRef50_M7MVN0 5 formyltetrahydrofolate cyclo ligase 0.0045721643028 0.00995763014749 2.1741786486e+12 +UniRef50_A1KSK9 Sec independent protein translocase protein TatB 0.000165564030199 0.00153817002584 5.5413788421e+11 +UniRef50_L1KLU3 0.000207433296092 9.79651469675e-05 -44193635126.6 +UniRef50_UPI00042C20EE PREDICTED 9.29036540359e-05 8.54121402629e-05 -3024416041.37 +UniRef50_A5UP53 TPR repeat protein 0.00138543198662 0.00107331649067 -1.26004855803e+11 +UniRef50_UPI000474AE63 MerR family transcriptional regulator 1.05167551913e-05 8.72318063174e-06 -724088059.329 +UniRef50_A6QHZ9 Lantibiotic ABC transporter protein 0.000431172703782 0.00031361066038 -47461239569.9 +UniRef50_Q3IV58 Site specific recombinase and resolvase superfamily 0.00724804969167 0.00134246987694 -2.38415504082e+12 +UniRef50_S1FXN2 1.51986187015e-05 0.000100072425741 34264597420.6 +UniRef50_Q2CBI1 ISxac3 transposase 0.000656962133133 0.000650449797428 -2629109839.45 +UniRef50_UPI000311BF3E hypothetical protein 3.9527842787e-05 4.60580464467e-05 2636323352.03 +UniRef50_G7ZQ52 Ammonium transporter family protein 0.0222808854984 0.00500572796551 -6.97419308605e+12 +UniRef50_A5IR30 0.0111682032066 0.00165544625296 -3.84041671684e+12 +UniRef50_UPI000381D79B hypothetical protein 1.4144977386e-05 1.93099320289e-05 2085155570.46 +UniRef50_F0M765 GAF domain containing protein 4.4005151332e-05 4.02309753996e-05 -1523681138.26 +UniRef50_Q8XLH3 3 oxoacyl [acyl carrier protein] synthase 3 0.000217979243354 4.56963730996e-05 -69552708870.1 +UniRef50_UPI0001FFE008 error prone DNA polymerase 1.52768092279e-05 5.78849924198e-05 17201446415.8 +UniRef50_Q9RYV3 Oxidoreductase, putative 0.000227594145271 0.0295205947652 1.18259438158e+13 +UniRef50_A7INL3 Integration host factor subunit alpha 0.00104757946018 0.00204141256406 4.0122261974e+11 +UniRef50_A5IR39 0.000536709936758 0.000787511213846 1.01251553238e+11 +UniRef50_B9KKS1 Non homologous end joining protein Ku 0.000481303355044 0.000221211015129 -1.05002469316e+11 +UniRef50_D8J4V6 1.05481019223e-05 3.76767781686e-05 10952179506.9 +UniRef50_Q8H8U0 Cardiolipin synthase, mitochondrial 6.63792098858e-06 2.69286954149e-05 8191634631.7 +UniRef50_H0ABG8 9.34537072161e-05 4.9973405404e-05 -17553531404.8 +UniRef50_W7QLC2 0.000318272232416 0.000328215428467 4014190262.53 +UniRef50_B9R471 Transporter, major facilitator family 2.98026445605e-05 1.52720242345e-05 -5866189736.37 +UniRef50_L3RWN4 Transcriptional regulator 0.000353070979283 0.000275996920751 -31115743234.4 +UniRef50_P42912 Putative galactosamine 6 phosphate isomerase 0.00245010903402 0.00193981339456 -2.06012611682e+11 +UniRef50_Q97J66 Protein CA_C1420 0.000177657439292 0.00153125434169 5.46463680001e+11 +UniRef50_UPI0001BF5ACC hypothetical protein SMAC_10820, partial 0.00101409996284 9.31851078381e-05 -3.7178462786e+11 +UniRef50_Z6NK79 ABC transporter, permease 0.0107142757125 0.0012531601458 -3.81956845522e+12 +UniRef50_R9PQX7 1.89631882126e-05 2.80422996974e-05 3665348719.64 +UniRef50_Q9F7B2 Low molecular weight protein tyrosine phosphatase wzb 0.00132208368756 0.00210014848429 3.14114306369e+11 +UniRef50_I4W6D9 4.26788677261e-05 5.72908213811e-05 5899024999.36 +UniRef50_Q9X0C4 Putative UDP N acetylglucosamine 2 epimerase 8.09625970267e-06 5.91659604223e-05 20617464876.2 +UniRef50_B9E6S4 Exogenous DNA binding protein comGC homolog 0.00207900680528 0.0010361989656 -4.2099432157e+11 +UniRef50_UPI00037DFA06 hypothetical protein 2.66427995971e-05 2.6532199958e-05 -44650431.5149 +UniRef50_C9QWV1 Autotransporter family porin 0.000496110121037 0.000224893517213 -1.09493471166e+11 +UniRef50_G0DVD7 CBS domain protein 0.000416324534108 0.00631040328758 2.37951192126e+12 +UniRef50_F8J6S6 Dihydrodipicolinate synthase 0.000471378691141 0.000342727317444 -51938138291.4 +UniRef50_UPI0003782A09 hypothetical protein 1.83687879783e-05 8.65825767569e-06 -3920260244.77 +UniRef50_E0SUZ8 0.00251747209223 0.00182930011172 -2.77823473352e+11 +UniRef50_D8TJ66 1.99097777103e-06 4.4221469465e-06 981492829.938 +UniRef50_P00892 Acetolactate synthase isozyme 2 large subunit 0.00443890317642 0.000687836501052 -1.51435164761e+12 +UniRef50_UPI0003B4985D lipase 1.09039583792e-05 0.000140566138454 52346213230.2 +UniRef50_F4CKZ8 PE PGRS family protein 0.000155872867906 0.000134448460885 -8649296021.42 +UniRef50_A4WYR6 Alcohol dehydrogenase, zinc binding domain protein 0.00029224246766 0.00036878919223 30902852042.8 +UniRef50_I3TIJ2 Ornithine cyclodeaminase mu crystallin 0.00391273889278 0.000689406569852 -1.3012988135e+12 +UniRef50_UPI00047B0B98 hypothetical protein 6.84476966812e-06 1.17697263002e-05 1988265428.38 +UniRef50_K9BMT1 Alkyl hydroperoxide reductase subunit F domain protein 4.02806911721e-05 0.000388964060348 1.40767754962e+11 +UniRef50_R6LGJ5 Methionine synthase vitamin B12 independent 0.000105639735687 0.000173715708945 27483105790.4 +UniRef50_A1B479 NADH quinone oxidoreductase subunit N 0.00934928840233 0.001790344957 -3.05163822755e+12 +UniRef50_UPI0003B7991F hypothetical protein 8.12225280766e-05 0.000343424025975 1.05853962276e+11 +UniRef50_M9XAR7 2 nitropropane dioxygenase 0.000112013646546 0.0132666431113 5.3106853404e+12 +UniRef50_UPI0003B68CBF isomerase 8.64166534329e-06 2.42152662458e-05 6287253793.91 +UniRef50_V9WST0 Phage terminase like protein, large subunit 0.0112989734633 0.00397970376628 -2.95487899423e+12 +UniRef50_A6M1B5 0.000999154317139 0.000994116719189 -2033740110.69 +UniRef50_A6M1B4 0.000367658467971 0.000669289904245 1.21772312258e+11 +UniRef50_UPI000371C67C hypothetical protein 3.74374854311e-05 4.50404923928e-05 3069427209.83 +UniRef50_UPI000412F481 hypothetical protein 1.78940174216e-05 7.25445671181e-06 -4295321220.64 +UniRef50_B2VDT9 0.000517104094322 0.0020526704875 6.19926996445e+11 +UniRef50_UPI0001C39674 dehydrogenase 2.3038297867e-05 4.29774687056e-05 8049687948.68 +UniRef50_P57041 Major outer membrane protein P.IA 0.000464408840608 0.00247659906486 8.1234588588e+11 +UniRef50_R9SN55 Phosphopantothenate cysteine ligase CoaB 0.00263989396921 0.000632917699228 -8.10240948559e+11 +UniRef50_J9UQD4 0.00161042853938 0.00141721158092 -78004057169.0 +UniRef50_UPI000467BC4C type I secretion protein 2.88135520354e-06 8.53324359379e-06 2281736699.61 +UniRef50_Q5LSU1 Lipid A disaccharide synthase 0.000151398123869 0.000466698919528 1.27290800383e+11 +UniRef50_Q9RRX9 Probable L asparaginase 1.74774173576e-05 0.00443193311577 1.78216993691e+12 +UniRef50_Q0ARD7 Pyridoxine pyridoxamine 5 phosphate oxidase 0.00184372989813 0.000777267929574 -4.30543783668e+11 +UniRef50_W0YV34 0.000272293666138 0.00170375022228 5.77896577661e+11 +UniRef50_Q2GCI6 Uridylate kinase 8.24467954184e-06 1.1261468821e-05 1217914852.16 +UniRef50_B9KJE9 Flagellar hook associated 2 domain protein 0.00474307812168 0.00129889310699 -1.39045975533e+12 +UniRef50_S5CLC3 0.000300643564515 0.00640348392577 2.46379154411e+12 +UniRef50_UPI000381DE4F hypothetical protein 5.59717388927e-05 0.000278542166094 89854412707.3 +UniRef50_Q9RSN5 Ferripyochelin binding protein 4.4387673018e-05 0.00791450170799 3.17726161308e+12 +UniRef50_Q1YEW0 0.00108999629045 0.00317769596398 8.4282997716e+11 +UniRef50_A8J5U5 Predicted protein 7.53136887589e-05 9.72072263005e-05 8838689769.46 +UniRef50_U5MSZ1 0.00018874299443 0.000756904160379 2.29373634815e+11 +UniRef50_UPI000248490E Resolvase 2.51124537924e-05 5.80101009795e-06 -7796266797.49 +UniRef50_E0Y0D2 Nuclease subunit of the excinuclease complex 0.000361232877188 7.72536841864e-05 -1.14645885031e+11 +UniRef50_Q2NF24 Predicted thioesterase 0.000900868386582 0.00174976876848 3.42711501351e+11 +UniRef50_B1JX98 Serine tRNA ligase 0.00429866099047 0.0126044756765 3.35315931256e+12 +UniRef50_UPI00047A8CC8 hypothetical protein 0.000305089044288 3.92740496053e-05 -1.0731277527e+11 +UniRef50_A6UY58 0.000256832733503 0.000933243904903 2.73075490393e+11 +UniRef50_G0JNN6 Integral membrane protein MviN 4.03294040779e-05 3.42751020719e-05 -2444196014.46 +UniRef50_Q8ZH57 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.0021139604217 0.000784600436967 -5.36678938917e+11 +UniRef50_I0GCY5 0.000695993328778 0.00024920390399 -1.8037437351e+11 +UniRef50_W1MH71 4.3951530342e-06 0.00037932076754 1.51362071431e+11 +UniRef50_UPI00035C5743 hypothetical protein 2.71462072187e-06 1.14907084665e-05 3543014317.21 +UniRef50_A3UG89 1.27368875872e-06 2.49056560031e-06 491268113.708 +UniRef50_B6J655 Methionyl tRNA formyltransferase 6.32262001443e-06 5.47331691219e-05 19543932738.9 +UniRef50_F5XDX0 Diaminopimelate epimerase 0.000138442294196 0.00672061300365 2.65730308772e+12 +UniRef50_UPI0003B3BC3C acetoacetate metabolism regulatory protein AtoC 5.05151450558e-06 9.50665823088e-06 1798596192.66 +UniRef50_UPI0002E4BD4A hypothetical protein 4.21855300906e-06 9.37878150949e-05 36160210242.5 +UniRef50_A5UJF5 0.00370809153955 0.000460233826278 -1.31120001454e+12 +UniRef50_A5UJF0 0.00309672956657 0.000533718096869 -1.03471918201e+12 +UniRef50_D2P269 4.0240429698e-05 0.00115831433797 4.51380157078e+11 +UniRef50_W4UBC8 0.000343108868539 0.00459337104676 1.71588299793e+12 +UniRef50_A5IPS9 Phage envelope protein like protein 0.00298810917937 0.00160236626432 -5.59441419784e+11 +UniRef50_UPI000234E1DF PREDICTED 5.35348652987e-05 2.87153219976e-05 -10019954200.7 +UniRef50_N5MF41 0.00125023751016 0.00045699401107 -3.20242134775e+11 +UniRef50_Q6GIN8 Protein translocase subunit SecA 1 0.0263615777707 0.00668538907199 -7.94351883165e+12 +UniRef50_UPI00037BBD41 hypothetical protein 1.07820983598e-05 6.3752980063e-06 -1779079380.23 +UniRef50_P56690 Isoleucine tRNA ligase 3.6271550682e-06 7.46995573177e-06 1551385784.35 +UniRef50_B7I7J4 Gp12 6.43697788028e-05 1.67973178235e-05 -19205586277.1 +UniRef50_A4XRT9 0.000209714438257 0.000524235426359 1.26975982503e+11 +UniRef50_Q5KYA3 Glutamate 5 kinase 4.50948462023e-06 1.30324641959e-05 3440831443.42 +UniRef50_D2ZQE3 Topoisomerase DNA binding C4 zinc finger domain protein 0.00312598734959 0.00105311394093 -8.36844432093e+11 +UniRef50_UPI00047AE2E4 hypothetical protein 1.55301952936e-05 2.41081799138e-05 3463037654.88 +UniRef50_Q9RSF1 0.000532889630565 0.0426798148613 1.70152309166e+13 +UniRef50_R7E1V4 2.72131888346e-05 8.5021082059e-06 -7553892860.59 +UniRef50_Q650K4 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.000146570997778 0.00848172218468 3.36500281796e+12 +UniRef50_O23404 Pyruvate, phosphate dikinase 1, chloroplastic 5.3450631818e-06 1.51984399466e-05 3977929114.48 +UniRef50_UPI000262D9D9 ABC transporter ATP binding protein, partial 0.00232173908504 0.00024231643939 -8.39488439434e+11 +UniRef50_A6LZA1 Transcriptional regulator like protein 0.000177262648794 0.00163319366473 5.87777217418e+11 +UniRef50_C6AUH7 Acriflavin resistance protein 0.00606721395648 0.0012301847637 -1.95276804215e+12 +UniRef50_S9R213 TRAP type mannitol chloroaromatic compound transport system, large permease component 4.27747540973e-05 0.000105814169692 25449785656.2 +UniRef50_A8IC01 Aminotransferase 0.000940435703163 0.000151186026547 -3.18629779633e+11 +UniRef50_R7II06 Oligopeptide transport ATP binding protein OppD 0.000131375634168 0.00305765515478 1.18137495196e+12 +UniRef50_C5N1T5 0.00998338770953 0.00598672507348 -1.61350175074e+12 +UniRef50_C5N1T1 0.00930784972031 0.00121973853774 -3.26526973669e+12 +UniRef50_Q6A6S6 ABC transporter associated permease 0.000182825274275 0.00744661276013 2.93248014474e+12 +UniRef50_A0A023S256 LysR family transcriptional regulator 0.00025844995223 0.0121824555466 4.81386738246e+12 +UniRef50_Q6FFA8 Uroporphyrinogen III synthase (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing]) 0.000223805922247 0.00710997283463 2.7800300853e+12 +UniRef50_Q9R9D5 Lipopolysaccharide core heptosyltransferase RfaQ 0.00323524453727 0.000331661323203 -1.17221217449e+12 +UniRef50_R0DKH2 Binding protein dependent transport systems inner membrane component 1.86320994153e-05 4.99971063768e-05 12662438202.3 +UniRef50_UPI00036FA71C hypothetical protein 5.92837316449e-06 9.27582841116e-06 1351408760.98 +UniRef50_UPI00037E9002 hypothetical protein 0.0423848837478 0.000608194912561 -1.68657619404e+13 +UniRef50_A0A023B3E8 1.70853790725e-06 4.41606052237e-07 -511475936.87 +UniRef50_I0C5P0 CobB CobQ like glutamine amidotransferase domain protein 0.0215385728682 0.00442743007176 -6.90797832424e+12 +UniRef50_A8L8V5 Cobyrinic acid ac diamide synthase 9.11023536428e-06 1.45874398602e-05 2211214667.86 +UniRef50_P32712 Formate dependent nitrite reductase complex subunit NrfG 0.0036331233913 0.000298299702217 -1.34630924617e+12 +UniRef50_UPI0003B66B13 hypothetical protein 4.08610093254e-05 1.95525529941e-05 -8602485305.11 +UniRef50_UPI0004672483 hypothetical protein 0.00042384777163 0.000632821511128 84365263031.5 +UniRef50_Q5F629 NADH quinone oxidoreductase subunit N 7.86429143391e-05 0.00106878018414 3.99730566169e+11 +UniRef50_W4UKK8 DNA binding protein 0.000187383008162 0.00539007325924 2.10038989855e+12 +UniRef50_Q87LZ7 Phosphoglucosamine mutase 4.17461772813e-06 8.10450830413e-05 31033550153.6 +UniRef50_Q8XMU3 Diaminopimelate decarboxylase 0.000207257297833 0.00150093142864 5.22272121775e+11 +UniRef50_Q58197 0.00446884734839 0.00103472934489 -1.38639557938e+12 +UniRef50_UPI00037BD840 hypothetical protein 7.96841393742e-05 2.96158090307e-05 -20213199367.2 +UniRef50_Q1IS93 DNA directed RNA polymerase subunit alpha 0.0128356428086 0.00440918622334 -3.40186392772e+12 +UniRef50_UPI00026CC0A8 cell wall hydrolase 2.45775202057e-05 1.78947830185e-05 -2697903008.88 +UniRef50_UPI000377CCD2 hypothetical protein 1.95951013886e-06 6.05348479528e-06 1652787807.52 +UniRef50_UPI000380B7CD hypothetical protein 7.46249120938e-06 3.56681407973e-05 11386966860.9 +UniRef50_UPI0003450375 hypothetical protein 7.93213199202e-06 4.89403613806e-06 -1226516577.87 +UniRef50_B9KW49 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.00308357767643 0.000243059016624 -1.14675224005e+12 +UniRef50_Q1G991 Orotidine 5 phosphate decarboxylase 1.647912984e-05 1.85393006001e-05 831716216.991 +UniRef50_A0LDR9 NADH quinone oxidoreductase subunit I 3.81039098334e-05 1.57425800357e-05 -9027543243.71 +UniRef50_F1BCI2 0.000281032373911 0.000409091265907 51698946158.1 +UniRef50_Q9RXP2 0.00017184491147 0.0640882879768 2.58038524084e+13 +UniRef50_Q9RXP3 7.43570562389e-05 0.00589429468746 2.34958024039e+12 +UniRef50_M5JML7 Inner membrane translocator 6.21868805603e-05 0.000450152708175 1.56626565484e+11 +UniRef50_W9V4Y7 4.37646018133e-05 3.87564821193e-05 -2021839377.01 +UniRef50_Y9M1E8 Nitrate reductase, alpha subunit 0.013263697848 0.00231696803401 -4.41932915739e+12 +UniRef50_A3K427 Possible phenol degradation enzyme 0.00615001607609 0.00139959996445 -1.91780127843e+12 +UniRef50_UPI00017453E0 probable helicase 5.51662841208e-06 0.000627575390458 2.51132755757e+11 +UniRef50_UPI00046FF946 hypothetical protein 0.000148753252773 8.41800360771e-05 -26068999982.6 +UniRef50_B2JWI7 Major facilitator superfamily MFS_1 9.4766357036e-05 0.00489354478327 1.9373257383e+12 +UniRef50_E3NTU6 0.000438069876142 0.000420800787856 -6971742856.6 +UniRef50_UPI00046C1753 PREDICTED 1.4031919668e-05 6.07647541518e-05 18866618757.5 +UniRef50_G2AN26 4 alpha L fucosyltransferase family protein 0.000833797486433 0.000318114942752 -2.0818737102e+11 +UniRef50_P24169 Ornithine decarboxylase, inducible 0.00417644607316 0.000819058828315 -1.35541843052e+12 +UniRef50_G4KST8 Aminopeptidase 0.000261064235557 0.000147045662343 -46030697171.7 +UniRef50_Q21VQ3 Transposase, IS4 family 7.88169233005e-05 1.65997815307e-05 -25117823622.7 +UniRef50_X4YVT9 Nitronate monooxygenase family protein 0.00743873686032 0.00801951731881 2.3446819807e+11 +UniRef50_A5F974 Pantothenate synthetase 0.00268498612858 0.00116905671335 -6.11999307474e+11 +UniRef50_UPI0003C1ACBA PREDICTED 1.42532056124e-05 1.9025709132e-05 1926718236.07 +UniRef50_B7UFR8 Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD 0.00347182694892 0.000852848478275 -1.05731374708e+12 +UniRef50_UPI0002555659 inner membrane translocator 1.7451607157e-05 2.09116261108e-05 1396852110.86 +UniRef50_P76017 0.00246487907319 0.000315089770205 -8.67896322494e+11 +UniRef50_UPI000380A70F hypothetical protein 0.000171168184271 5.88902687112e-05 -45327972316.5 +UniRef50_UPI00035FC337 general secretion pathway protein I, partial 0.00067380566763 9.17955376606e-05 -2.34964631536e+11 +UniRef50_P0DD78 DNA repair protein RadA homolog 9.85603103999e-05 0.00308994113823 1.20765714857e+12 +UniRef50_P9WPR0 7.9806762976e-05 0.00738719073985 2.95008058315e+12 +UniRef50_A7WYY2 Ribulokinase 0.0220242009424 0.00394761243042 -7.29774060698e+12 +UniRef50_D3ZPT0 Protein RGD1566084 1.98648664883e-05 1.51384834852e-05 -1908098817.59 +UniRef50_S1S766 0.000115374790714 2.83473428829e-05 -35134048636.3 +UniRef50_Q5HFZ9 Glucose specific phosphotransferase enzyme IIA component 0.0237000252558 0.000741680068775 -9.26856568257e+12 +UniRef50_G4L4Q8 Cation transporting ATPase 0.00947563118184 0.00373889441871 -2.31599102895e+12 +UniRef50_D5V8P7 23S ribosomal RNA G745 methyltransferase 0.000297092631875 0.00807238626402 3.13898145288e+12 +UniRef50_F3U2V4 Heat shock protein Hsp20 0.0100007569525 0.00894115872954 -4.27772805341e+11 +UniRef50_I7EN44 Acetylornithine deacetylase ArgE 0.0014200836406 0.000525503072435 -3.61153153106e+11 +UniRef50_Q0A8Z1 Ribonuclease 3 2.30263064621e-05 5.41485144986e-05 12564417296.8 +UniRef50_O59469 3 hydroxy 3 methylglutaryl coenzyme A reductase 0.0029299139847 0.000967870203856 -7.9210115131e+11 +UniRef50_B1Y4X6 Mg2 transporter protein CorA family protein 0.000839843190883 0.000470811396981 -1.48982663728e+11 +UniRef50_J8V3X8 0.000162737238304 0.000920726248106 3.06009464828e+11 +UniRef50_F2QCR4 ABC transporter, ATP binding permease protein 0.00414869679308 0.0039511032403 -79770942002.8 +UniRef50_UPI0003799B60 hypothetical protein 4.95041079867e-06 1.1217148564e-05 2529958937.38 +UniRef50_D7T3T0 5.91356721652e-06 6.9181370599e-06 405557173.231 +UniRef50_UPI00037A9531 hypothetical protein, partial 5.48281957028e-06 7.89531889862e-06 973955583.547 +UniRef50_Q5VJ09 3.95221564212e-05 8.85744192428e-06 -12379721540.8 +UniRef50_A4WGI4 Transcriptional regulator, MarR family 0.00134850994534 0.000664423667769 -2.76174024938e+11 +UniRef50_R9SJH6 Energy converting hydrogenase A subunit J EhaJ 0.00214704736384 0.000211443941661 -7.81426854059e+11 +UniRef50_UPI0001BF5D71 hypothetical protein SMAC_11478, partial 0.00100550959349 0.000123354759653 -3.56136731677e+11 +UniRef50_G7UA16 UDP glucose 4 epimerase 0.000136935667056 0.00461290382191 1.80700327042e+12 +UniRef50_UPI00046386D9 aldehyde activating protein 0.000259727270574 8.96305328935e-05 -68670140323.5 +UniRef50_A4ACP7 Arabinose efflux permease 6.87495341457e-05 1.64830945294e-05 -21100603054.4 +UniRef50_T9BKP2 0.00196144680482 0.00113549836751 -3.33445519669e+11 +UniRef50_T1ZVL8 TetR AcrR family transcriptional regulator 0.00288938029336 0.00216098845638 -2.94060722962e+11 +UniRef50_B2I6G9 Beta hexosaminidase 4.71467724987e-06 1.14975335073e-05 2738322306.13 +UniRef50_P19940 RNA polymerase sigma G factor 0.000146312398781 0.00182856844879 6.79147410992e+11 +UniRef50_M9RAR4 3.25873353263e-05 1.11332846147e-05 -8661263543.08 +UniRef50_D7CI61 Two component system response regulator 0.00182774032426 0.00509338498578 1.31838082382e+12 +UniRef50_P39336 0.00233050519877 0.00045698479377 -7.56363178179e+11 +UniRef50_UPI000373730F hypothetical protein 1.68660482147e-05 7.17189443581e-06 -3913648841.18 +UniRef50_M9VFS5 0.000136276530269 0.00479390722486 1.88034266696e+12 +UniRef50_UPI000479ED1E 50S ribosomal protein L4 1.49263388996e-05 4.48869899116e-05 12095482472.1 +UniRef50_E6U991 Cys Met metabolism pyridoxal phosphate dependent protein 0.000217848032856 0.00162473756342 5.67978567963e+11 +UniRef50_E3QJF9 THO complex subunit 2 9.53890596936e-06 2.09871419826e-05 4621793364.18 +UniRef50_Q2JDK2 Elongation factor 4 0.0275981586261 0.068332859228 1.6445098504e+13 +UniRef50_UPI000262AF83 anhydrase 2.64089175491e-05 8.42254449895e-06 -7261319517.98 +UniRef50_P42403 Aryl phospho beta D glucosidase BglC 0.00121746087969 0.00680641567764 2.25632963612e+12 +UniRef50_B0JXE8 N acetyl gamma glutamyl phosphate reductase 1.17499261781e-05 2.5407562425e-05 5513755350.92 +UniRef50_B9DV71 ABC transporter ATP binding protein 0.00444841646062 0.000952587404094 -1.41130908877e+12 +UniRef50_UPI000469FAB8 MULTISPECIES 2.77093944878e-05 2.87288784341e-05 411578179.596 +UniRef50_UPI00036048A6 hypothetical protein 9.49489645015e-05 5.99640612838e-05 -14123834742.0 +UniRef50_R4Q5Z5 Phosphoribosylglycinamide formyltransferase 0.0102107997844 0.00575428048635 -1.79915152826e+12 +UniRef50_V5PK16 Response regulator receiver protein ExsF 2.43007156907e-05 4.97213616151e-05 10262626706.1 +UniRef50_UPI000361FBB1 hypothetical protein 7.79901561225e-06 5.82155248329e-05 20353763452.5 +UniRef50_UPI00047CDCB7 ABC transporter permease 3.78768270404e-05 9.13657493146e-06 -11602792458.9 +UniRef50_UPI00041FB107 symporter 8.06112057043e-05 0.000210052302028 52256959006.9 +UniRef50_G7LZ27 Transcriptional regulator, TetR family 0.00121454345351 0.00134412873477 52315168234.9 +UniRef50_A5F649 Glutamate tRNA ligase 0.00224585750647 0.000462977585948 -7.19770502311e+11 +UniRef50_B1MB87 Urease accessory protein UreG 0.0252455685787 0.0464607963299 8.56484778328e+12 +UniRef50_A5UN12 Predicted acyltransferase 0.000560904700247 0.000244063392719 -1.27912723929e+11 +UniRef50_Q6GFH6 Low molecular weight protein tyrosine phosphatase PtpA 0.0602798153093 0.000937329667736 -2.39572896677e+13 +UniRef50_P20580 Anthranilate synthase component 1 0.00107137371998 0.000478253038084 -2.39450097691e+11 +UniRef50_G3TAD7 0.000386599249733 3.60085752092e-05 -1.41537757537e+11 +UniRef50_K0DH79 Alpha beta hydrolase fold protein 0.000818432918586 0.000716026379468 -41342776511.5 +UniRef50_B9EBX9 DNA damage repair protein homolog 0.0167956175137 0.00732120057833 -3.82493838098e+12 +UniRef50_U6IMY1 Growth factor receptor bound protein 1.15911126283e-05 7.07463750768e-06 -1823356429.58 +UniRef50_D4KGU1 Transcriptional regulator, LacI family 0.00111127647533 0.00124935010227 55742017549.6 +UniRef50_Q2YXL5 ATP dependent protease subunit HslV 0.032602442122 0.0130957267463 -7.87510037149e+12 +UniRef50_Q5LFB0 0.000146312398781 0.00403402987726 1.56951925372e+12 +UniRef50_UPI000248515B hypothetical protein 5.26650162827e-06 2.52907117708e-05 8084019359.22 +UniRef50_E8RRB9 Fe S metabolism associated SufE 0.000178665097311 2.63449781625e-05 -61493501278.1 +UniRef50_Q54J34 Adenylosuccinate lyase 2.71477811088e-06 0.00362350523105 1.46175753795e+12 +UniRef50_Q6GC63 Exotoxin 0.0139026155469 0.00306395030568 -4.37570216325e+12 +UniRef50_Q8ZJR1 UPF0761 membrane protein YPO0028 y3801 YP_0029 0.00197095925607 0.000247472099328 -6.95792914742e+11 +UniRef50_UPI000372EDA6 hypothetical protein 5.05846124056e-06 4.56076928064e-05 16370222378.1 +UniRef50_A5UN19 Formate dehydrogenase accessory protein FdhD, FdhD 0.00442383343158 0.000367614155849 -1.63754549702e+12 +UniRef50_Q89ZL8 Alpha N acetylglucosaminidase 3.65321426232e-06 0.00409620997556 1.65221538586e+12 +UniRef50_W8RNU6 PhbF 0.00037519764091 4.47892959973e-05 -1.33389903408e+11 +UniRef50_P57099 Glycerate kinase 0.00585627605924 0.0102439860954 1.77137238485e+12 +UniRef50_X2HW61 Iron ABC transporter substrate binding protein 0.000112347020496 0.0121133877849 4.84496742592e+12 +UniRef50_UPI00047EF55F amidohydrolase 1.39886147811e-05 2.37297030521e-05 3932596871.6 +UniRef50_Q5HM69 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0261802491718 0.013839224818 -4.98222297303e+12 +UniRef50_UPI0002886FB4 histidine ammonia lyase 0.000114158806351 2.1406582573e-05 -37445210937.0 +UniRef50_B0V4X0 Type IV pilus biogenesis protein 0.000122028536353 0.00750919244064 2.98228871886e+12 +UniRef50_D3QJ04 DNA repair exonuclease family protein YhaO 0.0195842396823 0.00282669271731 -6.765227348e+12 +UniRef50_Q1GKI8 Peptidase M16 like protein 0.00419620753013 0.000749823240174 -1.39134762975e+12 +UniRef50_A6LXP5 NADH quinone oxidoreductase subunit N 0.000108369183398 0.00178184843867 6.75604111252e+11 +UniRef50_E0NA78 0.000299988912829 0.000510357041009 84928194853.5 +UniRef50_E2XU95 Transcription factor jumonji 0.000443949146643 0.000346074588866 -39513160030.5 +UniRef50_V9WFJ2 0.0463255626377 0.00443972613021 -1.69098261951e+13 +UniRef50_UPI0003958BDE endonuclease 7.78154268047e-07 0.000327438093957 1.31876626221e+11 +UniRef50_Q5GWI0 Phenol hydroxylase 0.000147065317888 2.17133020999e-05 -50606147015.8 +UniRef50_Q49YF5 OsmC like protein 0.00707660991824 0.00199538314321 -2.05135360274e+12 +UniRef50_A4T2T4 Peptide deformylase 9.64759829975e-06 5.32643944902e-05 17608635860.3 +UniRef50_U5NRQ9 0.00109248292142 0.00448469382986 1.36947717085e+12 +UniRef50_G2JHQ9 Histone acetyltransferase HPA2 0.000231586496233 0.00183692709911 6.48095701127e+11 +UniRef50_UPI00036803C3 hypothetical protein 4.07414486826e-06 0.000190993644128 75461695611.5 +UniRef50_Q3IV36 0.0163512920163 0.000575947224952 -6.3687002775e+12 +UniRef50_R9SMB0 Dihydropteroate synthase related protein 0.00275224760895 0.00219908147813 -2.23319955124e+11 +UniRef50_Q8R7B8 N acetyl gamma glutamyl phosphate reductase 5.98860314529e-06 2.91103422057e-05 9334529794.33 +UniRef50_UPI0003721DDA hypothetical protein 2.85847882784e-06 5.64687380804e-06 1125709270.96 +UniRef50_P0AFD8 NADH quinone oxidoreductase subunit I 0.0153623825534 0.00662627301432 -3.52687462505e+12 +UniRef50_F8DZR5 Pyruvate 0.000191850396126 0.00862315452881 3.4038209421e+12 +UniRef50_K7RJP7 Molybdenum cofactor synthesis domain containing protein 0.00290972546522 0.0100150474729 2.86850568661e+12 +UniRef50_R9ZCH5 NADH dehydrogenase 2.30268795425e-05 0.000199059997274 71066729797.7 +UniRef50_B1KCA5 Transcriptional regulator, LysR family 0.000610688476316 0.00583035794767 2.10724461813e+12 +UniRef50_UPI00039CA1F9 hypothetical protein 5.62031342102e-06 0.000105329796542 40253941908.9 +UniRef50_C1CY21 0.000151393573381 0.00257986490857 9.80403678711e+11 +UniRef50_A1AZ65 0.000148899910315 3.28399845965e-05 -46854816227.8 +UniRef50_H8FQH1 0.000466864224341 0.000131805538018 -1.35267303301e+11 +UniRef50_X2HD61 Phosphopantothenoylcysteine decarboxylase Phosphopantothenoylcysteine synthetase 0.000240620241729 0.0045521835064 1.74063099878e+12 +UniRef50_UPI0003503787 PREDICTED 6.6815079696e-05 0.000255008737831 75976089185.0 +UniRef50_L0A294 1.68250939369e-05 0.00061020541397 2.39554916793e+11 +UniRef50_M4YWX8 Acetyl transferase GNAT family 0.0101882247088 0.0113517936388 4.69747055637e+11 +UniRef50_UPI0003B796E5 hydrolase 1.00451697405e-05 5.33177551417e-06 -1902855089.02 +UniRef50_R5QRF5 5.0122610437e-06 2.91026892623e-05 9725601494.65 +UniRef50_E1ZM28 Expressed protein 1.93707655196e-05 0.000766271832032 3.01533126058e+11 +UniRef50_F8KP37 Phospholipase A1 0.00015344958896 0.0032847708167 1.26415280527e+12 +UniRef50_E4CH69 0.00036296729697 0.00339511860912 1.2241166934e+12 +UniRef50_B2TQB7 LicD family protein 0.000974408304798 0.00139840642983 1.71173246118e+11 +UniRef50_F2A4B5 0.000107138880474 5.06931692096e-06 -41206735340.7 +UniRef50_B9TM50 0.000190576807068 0.000899441741714 2.86177472868e+11 +UniRef50_T1IZI3 5.16367131933e-06 1.68537003267e-06 -1404232912.98 +UniRef50_Q8Y489 Lipoyl [GcvH] 6.42906118825e-06 0.00104936613748 4.21046495975e+11 +UniRef50_UPI00047DCDB5 hypothetical protein 8.70414937975e-06 1.1451826951e-05 1109271153.31 +UniRef50_UPI0003668AD0 hypothetical protein 8.018520941e-05 0.000116964075422 14848079536.5 +UniRef50_R7KQ82 ABC type antimicrobial peptide transport system ATPase component 0.000835092905202 0.00185230689413 4.1066176995e+11 +UniRef50_UPI00035D87E2 hypothetical protein, partial 0.000110036544522 6.94733390921e-05 -16375863798.6 +UniRef50_Q08WK0 6.63170275248e-06 2.41908881056e-06 -1700683942.94 +UniRef50_C6VMG4 Bifunctional protein 0.00599672343014 0.00396685622436 -8.19482300245e+11 +UniRef50_UPI0003800150 hypothetical protein 2.88067384887e-06 1.47620535935e-05 4796658803.82 +UniRef50_A5UJI5 Type I restriction modification system methylase, subunit S 0.00165950697979 0.000302372053093 -5.47892023827e+11 +UniRef50_UPI0003C11576 PREDICTED 0.000153373935604 9.96009123698e-05 -21708829348.8 +UniRef50_UPI00037C0DCF MULTISPECIES 6.18036895804e-05 9.63828935724e-05 13960048986.1 +UniRef50_B5YFK5 Queuine tRNA ribosyltransferase 4.97834995228e-06 6.70574443087e-05 25062092187.8 +UniRef50_Q5HKG6 Diacetyl reductase [ acetoin forming] 0.0118060912709 0.00326473860871 -3.44824888391e+12 +UniRef50_D4H9E3 0.000142447542961 0.00724002882446 2.86538066046e+12 +UniRef50_Q5HKY5 0.0126351677471 0.00154011986029 -4.47920698345e+12 +UniRef50_UPI00046A628C PAS sensor protein 0.000237981553299 7.59611350085e-05 -65409631077.8 +UniRef50_A5UP86 0.000270922958506 0.000801764810481 2.14307369804e+11 +UniRef50_B9KX55 AcrB AcrD AcrF family protein 0.00196494400835 0.000353186430201 -6.50686312789e+11 +UniRef50_Q8XS05 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.04790631602e-06 3.59592143921e-06 -2201033198.15 +UniRef50_E8QNX4 Type II adenine specific DNA methyltransferase 0.000137267632307 0.00312030774909 1.20428990116e+12 +UniRef50_K7E6V3 4.5867758379e-05 2.6470728522e-05 -7830818981.59 +UniRef50_X0UE20 Marine sediment metagenome DNA, contig 2.11539601747e-05 3.95847297191e-05 7440727836.05 +UniRef50_Q1GLI8 Inner membrane protein 0.0223609477621 0.000553718822241 -8.80384592783e+12 +UniRef50_E5QR95 0.00243688858955 0.00172957573403 -2.85550879478e+11 +UniRef50_O32037 tRNA threonylcarbamoyladenosine dehydratase 0.00872754530524 0.00147079260956 -2.92964011362e+12 +UniRef50_UPI0002375EA2 ABC transporter like protein 3.09280551505e-05 6.32267070895e-06 -9933495641.05 +UniRef50_Q9ZK41 Putative glucose galactose transporter 9.42929197787e-05 0.00546910420443 2.16987727196e+12 +UniRef50_U6MX87 3.95121475878e-05 3.02166697193e-05 -3752698483.85 +UniRef50_UPI000478606A phosphodiesterase 2.85727387897e-05 1.56260222767e-05 -5226748330.38 +UniRef50_Q5HRH5 Hydrolase, haloacid dehalogenase like family 0.00806485397718 0.00364355297745 -1.78493346906e+12 +UniRef50_P19581 Capsule biosynthesis protein CapC 0.0260090826627 0.00526870309618 -8.37314574407e+12 +UniRef50_B3E8Z1 Glucose 1 phosphate adenylyltransferase 4.41758046959e-06 2.63465882349e-05 8853009534.04 +UniRef50_H8H606 4.85408472581e-05 0.00343647983281 1.36775254315e+12 +UniRef50_Q5HKS4 IS1272 like transposase, degenerate 0.00560407353273 0.00327916601224 -9.38593695845e+11 +UniRef50_Q72PA7 Adenylosuccinate synthetase 4.8197237564e-06 9.02609937956e-06 1698165457.1 +UniRef50_UPI0003B5996F coproporphyrinogen III oxidase 4.32175726922e-05 1.27271392252e-05 -12309362150.3 +UniRef50_A6U4R9 PTS system glucoside specific EIICBA component 0.0405297631219 0.00692904236015 -1.35650232987e+13 +UniRef50_Q2FEB2 HTH type transcriptional regulator SarZ 0.00853992392461 0.000798153257284 -3.12544782061e+12 +UniRef50_T2FXM3 Sulfatase 0.00179932205866 0.000401791435631 -5.64200262146e+11 +UniRef50_UPI000372A769 hypothetical protein 7.4136398718e-06 7.86772038307e-06 183317874.594 +UniRef50_F5ZKR4 Oxidoreductase 0.000181774954504 0.000922098481126 2.98877692489e+11 +UniRef50_N9B926 9.07418242453e-05 0.00614008279025 2.44219318174e+12 +UniRef50_UPI00047A6086 AMP binding protein 6.76094308422e-05 0.000239991459267 69592740240.5 +UniRef50_A7WXZ6 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.0125288834037 0.00540050450354 -2.87781403704e+12 +UniRef50_UPI00046EFEDF ABC transporter substrate binding protein 7.01895217862e-06 4.82083142133e-05 16628650903.7 +UniRef50_C1N027 Predicted protein 0.000209495082077 0.000463177670129 1.02414773832e+11 +UniRef50_F0XWK7 Expressed protein 3.05331708627e-05 0.000237157257432 83416679310.6 +UniRef50_UPI000455FDEB hypothetical protein CONPUDRAFT_131066 1.58456162517e-05 2.33181913963e-05 3016770284.68 +UniRef50_L8MS48 1.72015231234e-05 1.26613840431e-05 -1832909860.49 +UniRef50_A9GPH2 Serine hydroxymethyltransferase 7.55849061455e-05 7.94781646276e-05 1571756224.88 +UniRef50_C3A4D2 Permease, probably tetracycline resistance protein 0.000712165429876 0.00215620013285 5.82974529887e+11 +UniRef50_U4QA39 Xanthine dehydrogenase, iron sulfur binding subunit 0.00997156568122 0.00272763895826 -2.92446211104e+12 +UniRef50_B1LL17 D galactonate dehydratase 2 0.00211680353613 0.000839149493093 -5.15804615753e+11 +UniRef50_Q6GIA3 3 oxoacyl [acyl carrier protein] synthase 2 0.0142773923639 0.00712598335296 -2.88711157537e+12 +UniRef50_Q9Z913 Putative GMP synthase [glutamine hydrolyzing] 1.34882106984e-05 2.18266354433e-05 3366324393.49 +UniRef50_UPI00035C8380 hypothetical protein 0.00185071072853 0.000478850859645 -5.53836663681e+11 +UniRef50_A5UMB3 0.00139143036675 0.00133321449211 -23502462981.3 +UniRef50_UPI000370ED97 hypothetical protein, partial 2.32651918679e-05 3.69070203753e-05 5507373572.5 +UniRef50_P27243 O antigen ligase 0.00263937895003 0.000972610698141 -6.72894796834e+11 +UniRef50_A0A014MKE4 0.000548811665997 0.0154443280694 6.01350276059e+12 +UniRef50_UPI000350731C PREDICTED 2.3073715705e-05 3.61022867067e-05 5259793991.93 +UniRef50_M4WZV5 Dicarboxylate transporter 0.000599184109289 0.000647861144854 19651516592.0 +UniRef50_K1X7T9 1.22774148162e-05 7.92890767729e-06 -1755545694.16 +UniRef50_A5UM90 Adhesin like protein 0.00379875505127 0.000323189022329 -1.40312865587e+12 +UniRef50_UPI00037FBFF6 hypothetical protein 7.9962931421e-06 0.00100297576993 4.01685424551e+11 +UniRef50_L7WZN3 0.00737517567007 0.0025899977473 -1.93183504816e+12 +UniRef50_B1N6N2 Putative hemolysin activator related protein 2.51414277974e-05 0.000255082714311 92830119062.6 +UniRef50_Q2KWY0 Ribonuclease 3 6.91259732074e-06 5.15514829972e-05 18021265928.3 +UniRef50_A5IT97 Diacylglycerol kinase 0.00421577180547 0.0017730616839 -9.86152051502e+11 +UniRef50_K6ZP91 3.22896389661e-05 1.44504775538e-05 -7201888373.27 +UniRef50_UPI00037C95EF hypothetical protein, partial 0.000268083552852 2.75735429243e-05 -97096842397.6 +UniRef50_P77228 Putative inner membrane metabolite transport protein YdfJ 0.00305053395198 0.000909304605775 -8.644405629e+11 +UniRef50_UPI00042356A9 exodeoxyribonuclease III 8.45882300374e-05 2.46361785765e-05 -24203378869.2 +UniRef50_B5E2W4 Acetate kinase 0.00700227893116 0.00810106834429 4.43594769743e+11 +UniRef50_R4YDZ3 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.000436770336414 0.000137569893719 -1.20790890318e+11 +UniRef50_B9DND6 Pyrrolidone carboxylate peptidase 3.30425434305e-05 5.832169449e-05 10205503492.8 +UniRef50_UPI0004754876 shikimate kinase 1.84592757073e-05 1.45019687619e-05 -1597613375.48 +UniRef50_UPI000252B25E PREDICTED 0.000215375695616 0.000234678585836 7792813654.91 +UniRef50_I3UA32 Transketolase 0.000121813938717 3.07901362632e-05 -36747426038.3 +UniRef50_A0A024J8E7 Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit 3.36976957085e-05 6.54536719473e-05 12820277297.3 +UniRef50_G4KZ65 ATP dependent zinc metalloprotease FtsH 0.000282389844379 0.00184294018492 6.30013322582e+11 +UniRef50_UPI00046FC736 hypothetical protein 1.33169101916e-05 9.24807512013e-06 -1642638648.57 +UniRef50_Q7W2B7 Shikimate kinase 1.51015677332e-05 1.41973602414e-05 -365039660.313 +UniRef50_R9SIK3 2 5 RNA ligase LigT 0.00299703261793 0.000660899396553 -9.43125649049e+11 +UniRef50_P33924 0.00390289729606 0.000481982532273 -1.38106526949e+12 +UniRef50_UPI00047E33F6 ABC transporter ATP binding protein 9.75603447948e-06 3.0628788109e-05 8426586777.72 +UniRef50_UPI0004649A94 hypothetical protein 4.78784669426e-05 4.58787879958e-06 -17476941668.6 +UniRef50_UPI000471C14A tryptophan synthase subunit alpha, partial 9.70385336441e-06 1.94486019864e-05 3934074600.21 +UniRef50_UPI000225DE65 nitrogen regulatory IIA 1.4768953368e-05 3.66114899909e-05 8818100072.73 +UniRef50_UPI0002558CA8 membrane protein 1.65377251517e-05 3.94865898355e-05 9264738287.09 +UniRef50_Q4K9S7 NADH quinone oxidoreductase subunit K 6.37780455637e-05 0.00524558314715 2.09195830741e+12 +UniRef50_A4XGW8 0.000342914982539 0.00026134221699 -32931926462.5 +UniRef50_B4RKU4 Drug resistance translocase family protein 0.000126390398057 0.00283004940982 1.09150032067e+12 +UniRef50_G3GQA9 2.2672675387e-06 1.4187648155e-05 4812403934.32 +UniRef50_Q9JPD1 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 7.09666095732e-06 1.73053226474e-05 4121361998.66 +UniRef50_Q9LV91 4 alpha glucanotransferase DPE1, chloroplastic amyloplastic 8.6937134172e-06 0.000490259193479 1.94413893774e+11 +UniRef50_UPI0002491571 tRNA delta isopentenylpyrophosphate transferase 2.56385431654e-05 9.62958256908e-06 -6463013844.76 +UniRef50_Q6BSU5 Sulfate adenylyltransferase 6.64377924913e-05 4.05552810896e-05 -10449087467.0 +UniRef50_I3TNE9 5.85087720182e-05 1.67487468487e-05 -16859034614.1 +UniRef50_UPI00036C6220 MULTISPECIES 3.31066369954e-06 1.1749367326e-05 3406808208.54 +UniRef50_UPI00046D83DE hypothetical protein 1.92573511679e-05 2.59776496185e-06 -6725679387.51 +UniRef50_UPI00036A4575 hypothetical protein 6.06509876934e-05 1.15977455752e-05 -19803395794.1 +UniRef50_G2LQE7 6.88290388782e-06 2.8311956795e-05 8651171622.69 +UniRef50_UPI0003619428 Cro Cl family transcriptional regulator 0.000170891160263 2.21229077935e-05 -60059569113.9 +UniRef50_A7HCR8 tRNA dimethylallyltransferase 2.40210377898e-05 9.24970101577e-06 -5963369920.35 +UniRef50_UPI00044020B0 PREDICTED 1.95561353559e-05 1.48932452284e-05 -1882465964.57 +UniRef50_A6LRG0 ErfK YbiS YcfS YnhG family protein 0.000265765921374 0.00309480315259 1.14211704643e+12 +UniRef50_UPI0004724C7E 30S ribosomal protein S15, partial 0.000267370777035 0.000409628047311 57431005703.4 +UniRef50_UPI0004545041 PREDICTED 1.66897971451e-05 8.74826914429e-06 -3206092307.43 +UniRef50_UPI00047AA68A protein phosphatase 9.28596304572e-06 1.32390658846e-05 1595916126.08 +UniRef50_A5UX75 Dihydroorotate dehydrogenase 8.97886785067e-06 1.58302236431e-05 2765976408.99 +UniRef50_UPI000365F67B hypothetical protein 4.35313762625e-05 1.24329168043e-05 -12554829704.3 +UniRef50_V6U9N7 LacI family transcriptional regulator 5.64343859773e-06 1.26471651462e-05 2827490353.01 +UniRef50_P76498 0.000931155044788 0.000746871350035 -74397588987.0 +UniRef50_P76499 0.00353293480451 0.000720284646817 -1.13550138376e+12 +UniRef50_W8EV27 1.07989108761e-05 2.08548832562e-05 4059719450.5 +UniRef50_Q5HGC3 Glutamine synthetase 0.0142097980388 0.0309080522931 6.74129015308e+12 +UniRef50_Q2FEH9 Phosphosugar binding transcriptional regulator, RpiR family 0.0272650312859 0.0111762501149 -6.49523839028e+12 +UniRef50_P33361 Putative osmoprotectant uptake system permease protein YehY 0.00290695454741 0.000163459430921 -1.107582645e+12 +UniRef50_E8LCX8 Lipoprotein 7.88247515973e-06 1.11570387623e-05 1321981509.77 +UniRef50_A0A059FU98 Dehydrogenase 1.41400017054e-05 8.29958870596e-05 27797965874.2 +UniRef50_Q82BB8 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 1.51288475812e-05 2.31623581222e-05 3243226787.66 +UniRef50_UPI0003C18AE4 PREDICTED 4.4369607437e-06 9.48666853842e-06 2038629003.61 +UniRef50_Q2FH00 Alanine dehydrogenase 1 0.00756553594373 0.000724035293526 -2.76199776714e+12 +UniRef50_A5UKT6 Ferredoxin, iron sulfur binding 0.00178225761195 0.00024781821415 -6.19472014581e+11 +UniRef50_A6M115 Metal dependent phosphohydrolase 0.00021049404583 0.00442526318907 1.70155402416e+12 +UniRef50_D8TH60 4.544817456e-06 1.14394249783e-05 2783437663.1 +UniRef50_UPI000479FA8A hypothetical protein 0.000107765987204 3.9621945613e-05 -27510585811.7 +UniRef50_P0AET6 Protein HdeD 0.000198676836237 0.000348113994329 60329614521.9 +UniRef50_Q1GSN3 DNA mismatch repair protein MutL 7.22230845972e-05 0.000230657339484 63961852904.8 +UniRef50_UPI000378A614 hypothetical protein 2.00347906511e-07 1.1435229597e-06 380771343.032 +UniRef50_R5A3J3 0.000968393999545 0.000253128604458 -2.8876141729e+11 +UniRef50_U5MM11 Response regulator GtcR 0.000553650214931 0.00203291194923 5.9719611472e+11 +UniRef50_Q9RT94 Chloromuconate cycloisomerase, putative 0.000133387275209 0.00283701782407 1.09148882985e+12 +UniRef50_UPI00046B9072 PREDICTED 1.76117037477e-06 8.88867178989e-06 2877459785.56 +UniRef50_UPI00036EA45A hypothetical protein 0.000385778194956 0.000113987488734 -1.09725243349e+11 +UniRef50_UPI00046E002C hypothetical protein 2.02372731164e-06 0.000414552208057 1.6654280997e+11 +UniRef50_UPI0003ABC022 PREDICTED 2.61479896871e-06 6.4089809969e-06 1531757844.63 +UniRef50_B8H9Q5 Pyridoxal 5 phosphate dependent protein beta subunit 1.10386635635e-05 6.57305468802e-06 -1802821102.21 +UniRef50_Q2FIE3 D alanine poly ligase subunit 1 0.0198247832664 0.00794660540071 -4.79536616602e+12 +UniRef50_Q9RXK8 8.11797825447e-05 0.0331584097141 1.33536836266e+13 +UniRef50_O27113 2 oxoglutarate synthase subunit KorB 0.0034485042802 0.000207725701201 -1.30834208117e+12 +UniRef50_I3USW1 Multi sensor signal transduction histidine kinase 0.000878779187298 0.000389056146569 -1.9770720112e+11 +UniRef50_B2VKE4 Cation acetate symporter ActP 0.0127578199634 0.0133974896044 2.58242483701e+11 +UniRef50_A7HME6 Cytidylate kinase 1.06297795698e-05 1.18826781713e-05 505810540.22 +UniRef50_UPI0003B60C69 translation factor Sua5 3.03886109838e-05 8.61776802427e-05 22522731868.7 +UniRef50_B0RVB2 Ribosomal RNA small subunit methyltransferase H 1.88894591176e-05 8.8755190985e-06 -4042750470.57 +UniRef50_F7U1Y8 Ribonucleoside diphosphate reductase subunit alpha 8.63849769869e-05 0.0126447878802 5.06998136096e+12 +UniRef50_P19642 PTS system maltose and glucose specific EIICB component 0.00348452658119 0.00166961774741 -7.32700967633e+11 +UniRef50_K7S7B0 Peptidase dimerization domain containing protein 0.000316725541448 0.00545668026469 2.07506279611e+12 +UniRef50_G0LRP3 Haloacid dehalogenase like hydrolase 0.016471640274 0.00856123556742 -3.19352745163e+12 +UniRef50_W0YRX8 0.00369081143881 0.00122264372525 -9.96429593788e+11 +UniRef50_UPI0003506C1B PREDICTED 3.03414288326e-05 0.000111238744476 32659239046.9 +UniRef50_A0A011R518 CRISPR associated endonuclease helicase Cas3 6.24966168059e-05 6.28857904726e-06 -22691874593.3 +UniRef50_UPI000366C818 hypothetical protein 1.39762740695e-05 1.66702496839e-05 1087591014.33 +UniRef50_P09143 Succinyl CoA ligase [ADP forming] subunit alpha 2.82939774891e-05 5.19471214745e-05 9549064483.62 +UniRef50_Q24TX4 Guanylate kinase 1.03385757157e-05 1.28003960305e-05 993867071.017 +UniRef50_A3TWR1 Phenol hydroxylase, putative 0.000105973706805 3.05164321458e-05 -30463027744.8 +UniRef50_UPI0003513255 2.93176517926e-05 0.000149664378147 48585450249.5 +UniRef50_P26840 Probable macrolide acetyltransferase 1.65438521456e-05 0.00103210362294 4.09993941788e+11 +UniRef50_P05823 Transposon Tn2501 resolvase 0.00108912845703 0.00100676149498 -33252553335.9 +UniRef50_F0YCT2 Expressed protein 0.000146918110199 0.000230887322796 33899401543.5 +UniRef50_F0GIC2 Putative exported alkaline phosphatase 6.78439904738e-06 0.000153485379855 59224986175.7 +UniRef50_D9UFT2 0.000240294930518 4.20372328648e-05 -80039065438.1 +UniRef50_Q1AS32 N acetyl gamma glutamyl phosphate reductase 6.7926635784e-06 9.30933885413e-06 1016012691.89 +UniRef50_UPI00046F7B75 hypothetical protein 8.49556580971e-05 6.64925818111e-05 -7453770464.08 +UniRef50_A0A022NVZ1 0.00103148076066 0.000341443648143 -2.78576450031e+11 +UniRef50_R5W852 5.90257362713e-05 3.22493384344e-05 -10809960390.1 +UniRef50_A3LL65 Aflatoxin B1 aldehyde reductase member 1 0.000397428711086 0.00122890830151 3.35678514056e+11 +UniRef50_UPI000258F562 PREDICTED 3.0344593645e-06 5.97989015065e-05 22916501870.8 +UniRef50_M9UY12 2.95247270203e-05 7.32099277214e-05 17636251600.7 +UniRef50_F0RLX6 0.00026583520342 0.0081147119939 3.16868787687e+12 +UniRef50_B1ZI45 2.09287667406e-05 0.000184853831095 66178560066.5 +UniRef50_V1UZX9 Thiamine biosynthesis protein ThiC 1.07333557156e-05 3.40260234162e-05 9403535783.91 +UniRef50_G6XLM0 8.9289854724e-05 5.63414591201e-05 -13301671627.6 +UniRef50_I0C0X1 AmrA 0.0137990897548 0.00150732073288 -4.96233799111e+12 +UniRef50_Q2RMS9 Endoribonuclease YbeY 0.00167024032482 0.00265295787897 3.96735135911e+11 +UniRef50_P21822 Methyl accepting chemotaxis serine transducer 0.00418358039712 0.000487685969885 -1.492077934e+12 +UniRef50_A3PPX9 0.00218610505484 0.00117681285142 -4.07463647929e+11 +UniRef50_W2F2K9 8.2334764183e-06 9.52877283924e-06 522927060.208 +UniRef50_D2ZRM1 0.00312684121942 0.000117111713888 -1.21506473492e+12 +UniRef50_A3M9B5 0.000180615305666 0.00610091303075 2.39009684184e+12 +UniRef50_D3AVG0 RNase P protein subunit, RNase MRP protein subunit 9.73415350036e-06 6.18609152283e-06 -1432396159.95 +UniRef50_A3M9B3 0.000101687329291 0.00862773406449 3.44206969336e+12 +UniRef50_Q1GY83 Outer membrane autotransporter barrel 3.78876780148e-05 9.83510447954e-06 -11325168180.0 +UniRef50_M5Y1W9 3.96247105123e-05 0.000310224891056 1.09244613523e+11 +UniRef50_U7DKX9 Glutathione S transferase 0.000888899502794 0.00495683034939 1.6422736019e+12 +UniRef50_Q1D0T1 UDP N acetylmuramate L alanine ligase 1.63212475218e-05 4.91353669745e-06 -4605432848.16 +UniRef50_G9G286 IS5 transposase 0.00205405338176 0.000424407240993 -6.57908145036e+11 +UniRef50_V6ET42 0.000344259763556 0.000492558914032 59870186882.4 +UniRef50_R7PSW3 0.00284162898078 0.000202974864068 -1.06525704684e+12 +UniRef50_I6TY91 Phosphoglycerate mutase 0.00924846529452 0.00159563255196 -3.08954248899e+12 +UniRef50_Q3J3M8 Alpha 1,4 glucan 0.0105803303394 0.0029891816198 -3.06463989197e+12 +UniRef50_F4RCY2 3.33201057751e-06 0.000448078451278 1.79549595763e+11 +UniRef50_E2ZZ10 Peptide chain release factor 3 0.000943714972126 0.000678888977457 -1.06913503828e+11 +UniRef50_UPI00036CAA44 hypothetical protein 6.78214739253e-06 1.12233578694e-05 1792971169.29 +UniRef50_D3QD86 0.00356563985316 0.000486785777803 -1.24297117201e+12 +UniRef50_D4J7S8 FAD FMN containing dehydrogenases 0.000905017179151 0.00326654113725 9.53376201043e+11 +UniRef50_B0D259 Predicted protein 0.000275120487342 0.000112004748003 -65851825626.4 +UniRef50_M9VAJ1 0.000227401198102 0.00556040137569 2.15299761496e+12 +UniRef50_Q6G9H0 Conserved virulence factor B 0.0208976058795 0.00395898866511 -6.83832762966e+12 +UniRef50_K9Z9U6 Plasmid maintenance system killer 0.000416344840642 0.00149336463372 4.34806106985e+11 +UniRef50_M5A5P1 Geranyltranstransferase 0.000357120404745 0.00359702477028 1.30798915046e+12 +UniRef50_Q5WAG0 Ribonuclease P protein component 0.00263897056914 0.000513594269898 -8.58040493303e+11 +UniRef50_UPI00021A4D09 PREDICTED 1.75518316009e-06 4.3719775937e-07 -532086879.77 +UniRef50_C3I9I9 0.000175303090798 0.00275645982594 1.04204464833e+12 +UniRef50_I2QLC8 4.09622871137e-05 5.11715971912e-05 4121623760.61 +UniRef50_UPI0003C1A367 PREDICTED 7.08418270876e-06 6.15747714143e-06 -374122409.487 +UniRef50_UPI0001E2AEC5 hypothetical protein, partial 1.37657663957e-05 0.000140475453415 51154255552.3 +UniRef50_Q3B4Y6 Imidazoleglycerol phosphate dehydratase 0.000181219588941 3.07671247899e-05 -60739506037.1 +UniRef50_V9WJV3 2 polyprenyl 6 methoxyphenol hydroxylase 0.0014458717797 0.000183236838799 -5.09741219914e+11 +UniRef50_H5SYI3 1.49917534994e-05 2.38810135155e-05 3588703351.99 +UniRef50_UPI00035C6608 hypothetical protein 4.88519287279e-06 5.74876753327e-06 348635687.689 +UniRef50_J9YRR4 0.000314454583716 0.000202271715884 -45289600382.4 +UniRef50_U6EZ18 Rubrerythrin 0.00681176625195 0.00043007287164 -2.57636792982e+12 +UniRef50_UPI0004670A8C hypothetical protein 1.11817872931e-05 6.12794977072e-06 -2040296225.35 +UniRef50_P23382 Immune inhibitor A 2.35666150226e-05 0.000545681492822 2.10784183237e+11 +UniRef50_Q897Q2 NH3 dependent NAD+ synthetase 7.28737430216e-05 0.00137088377339 5.24022577635e+11 +UniRef50_F6G8K0 Lipoprotein 2.70807099381e-05 8.00106308709e-06 -7702687567.34 +UniRef50_A4WT68 NADH quinone oxidoreductase subunit 0.000706824376332 0.00113772993221 1.73961860714e+11 +UniRef50_Q9RU53 0.00014842175184 0.0123773187149 4.93695576944e+12 +UniRef50_D2ZUU5 2.62699209946e-05 0.000656259344878 2.54334461261e+11 +UniRef50_UPI0003B370CA taurine ABC transporter substrate binding protein 2.72756881027e-05 5.65361333867e-05 11812800827.2 +UniRef50_Q9RU59 0.000103610060989 0.00808585709169 3.22253107948e+12 +UniRef50_P25888 ATP dependent RNA helicase RhlE 0.00111619192147 0.000630647411922 -1.96020276806e+11 +UniRef50_S6ETI6 2.02243322926e-05 3.26281289402e-05 5007564918.34 +UniRef50_F9Y8Y0 Oxidoreductase, aldo keto reductase family protein 0.000149203948168 0.00438106733407 1.70845517969e+12 +UniRef50_F0XZ87 1.65566406425e-05 8.19945478244e-06 -3373898485.91 +UniRef50_G8VGA8 Protease 0.000163649995166 0.00354839161829 1.3664617287e+12 +UniRef50_S1SW71 0.000142626947925 0.000137256393928 -2168158552.7 +UniRef50_A8LI88 Rhomboid family protein 0.00276595968193 0.000758258887237 -8.10533448076e+11 +UniRef50_Q1MFZ6 Pseudouridine 5 phosphate glycosidase 1 0.000120859975083 0.00926146026174 3.6901725035e+12 +UniRef50_UPI00047858B2 hypothetical protein 9.64586650427e-05 8.64005586956e-05 -4060580959.17 +UniRef50_UPI0003B760AC citrate synthase, partial 1.76923480839e-05 9.83189193583e-06 -3173362605.62 +UniRef50_P56902 3 oxoacyl [acyl carrier protein] synthase 2 0.00283841465137 0.00037366579436 -9.95049359445e+11 +UniRef50_Q5HQM9 DltB protein 0.0193753840766 0.00905398509003 -4.1668754287e+12 +UniRef50_Q57RM6 Dipeptide permease D 0.00476377060849 0.00111918718808 -1.47136305089e+12 +UniRef50_P26612 Cytoplasmic alpha amylase 0.00303487843724 0.000946361467673 -8.43159929601e+11 +UniRef50_UPI0002625B7F glutaredoxin 0.000151639177376 0.000202333961764 20466106552.4 +UniRef50_P10423 Alkaline phosphatase isozyme conversion protein 0.00584935992427 0.00390921693153 -7.83259534401e+11 +UniRef50_U3KIJ5 0.000100306285793 1.23362746369e-05 -35514573017.1 +UniRef50_G8UQE5 FAD dependent oxidoreductase 3.49797191879e-06 7.13931193699e-06 1470053649.61 +UniRef50_W1WTC0 0.00115184492656 0.00157531237624 1.70959005966e+11 +UniRef50_Q9I3D2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.000210546186166 0.000640976225501 1.7376988885e+11 +UniRef50_W4STC6 0.000245551154116 0.000168645251753 -31047856525.5 +UniRef50_F0YPY3 Expressed protein 0.000506178427924 0.00033384129576 -69574615069.0 +UniRef50_W4MCA9 0.000230194937626 0.000100274026064 -52450666306.4 +UniRef50_UPI000225AF78 chemotaxis protein CheY 6.55886830048e-05 5.99686926589e-05 -2268859067.68 +UniRef50_UPI000367F02C hypothetical protein 4.65259054762e-06 6.65222150704e-06 807275556.549 +UniRef50_C6W4P9 Aldehyde Dehydrogenase 0.0040503937086 0.00088213402259 -1.27906531416e+12 +UniRef50_R9BZ13 ABC transporter periplasmic protein 1.17805336745e-05 1.97220940783e-05 3206105388.92 +UniRef50_UPI00037C0FB7 hypothetical protein, partial 1.52338356982e-05 2.65965170129e-05 4587253882.52 +UniRef50_B5YEP5 Glutamate tRNA ligase 4.40635389283e-06 6.27205104542e-06 753204835.179 +UniRef50_Q9KYS1 1 deoxy D xylulose 5 phosphate reductoisomerase 0.000578357361836 0.00410091389546 1.42209929925e+12 +UniRef50_A8AXV1 Transporter 0.00497484296298 0.00269751357433 -9.19385820172e+11 +UniRef50_L5N6N7 Transducer protein Htr38 1.49849224224e-05 0.000218371924905 82109828741.6 +UniRef50_Q49WX1 Cell division protein SepF 0.0160646866225 0.00554511218203 -4.24688129132e+12 +UniRef50_UPI0004769219 glycerophosphodiester phosphodiesterase 9.39608466264e-06 0.00159814949027 6.41399246041e+11 +UniRef50_UPI0002F2BD70 hypothetical protein 6.35060328633e-05 0.00011850954975 22205594736.2 +UniRef50_Q2YUG1 4.86188445306e-05 2.21961210099e-05 -10667177728.6 +UniRef50_I6SW45 Enoyl ACP reductase 0.0071489070075 0.00158560160088 -2.24597466209e+12 +UniRef50_H8LF45 Xanthine uracil vitamin C permease 0.00574149914444 0.0057639337417 9057122217.33 +UniRef50_UPI0003B35348 amino acid ABC transporter permease 6.49304400225e-05 1.51459404032e-05 -20098613420.8 +UniRef50_UPI0002487593 citrate lyase, partial 0.000146180603765 2.36873484171e-05 -49452030345.3 +UniRef50_UPI0004418637 hypothetical protein PUNSTDRAFT_120887 4.28253670298e-06 7.50487179661e-05 28569175774.6 +UniRef50_D4HBG9 Zinc binding alcohol dehydrogenase family protein 0.000112347020496 0.00362778240351 1.41922440336e+12 +UniRef50_UPI000477DEB8 hypothetical protein 6.00198442829e-05 5.10850563969e-05 -3607083511.76 +UniRef50_Q89BK7 Phosphoenolpyruvate carboxykinase [ATP] 0.0110368987713 0.00215068283114 -3.58747442117e+12 +UniRef50_B5YHP2 Non canonical purine NTP pyrophosphatase 7.7502729793e-06 4.16827437049e-05 13698954830.2 +UniRef50_W1DH05 Shikimate transporter 0.00191943054766 0.000486118033249 -5.7864585079e+11 +UniRef50_Q57242 ABC transporter ATP binding protein uup 1 0.00209485243691 0.00022039632969 -7.56740932648e+11 +UniRef50_Q1QVP8 2.05437352787e-05 0.000186996043467 67198839415.0 +UniRef50_C3JXG2 0.000367029645114 9.32854758332e-05 -1.10513880357e+11 +UniRef50_Q28S78 YjeF related protein like protein 1.94738188209e-05 1.96375041106e-05 66081760.0963 +UniRef50_A0A011QSB3 Multiple resistance and pH homeostasis protein B 7.76284445182e-06 2.17945365846e-05 5664766302.24 +UniRef50_M2L7K7 Putative type I restriction modification system, specificity determinant 0.00056693040472 0.000929334277671 1.46306890706e+11 +UniRef50_Q5HLR4 Formimidoylglutamase 0.0148528999508 0.00174109860626 -5.29339510267e+12 +UniRef50_P45793 Type IV pilus assembly protein TapC 0.000277393359766 0.00566652306322 2.17565779334e+12 +UniRef50_H9K906 4.31069336779e-05 4.45779258594e-05 593857594.776 +UniRef50_P00632 3 oxoadipate enol lactonase 2 0.000340077467434 0.0151477871992 5.97805412976e+12 +UniRef50_Q0W662 Pyruvate carboxylase, subunit B 0.00369344684918 0.00108716449443 -1.05218816929e+12 +UniRef50_D0D597 9.51258804145e-05 0.00013426422327 15800629292.2 +UniRef50_Q0JR18 Os01g0126200 protein 6.51045149722e-06 6.98515090606e-05 25571562220.5 +UniRef50_Q87CM2 Ketol acid reductoisomerase 2.04759517127e-05 3.84332302317e-05 7249573698.71 +UniRef50_W5X9Y1 50S ribosomal protein L21 0.000357865914587 0.000525751207925 67777353104.8 +UniRef50_UPI000383BB6B PREDICTED 4.24659264566e-06 0.000109931348706 42666232919.2 +UniRef50_Q9JZG4 DNA translocase FtsK 2 0.000157592301055 0.00285431975419 1.0887019654e+12 +UniRef50_I3Y8S8 Alkyl sulfatase like hydrolase 0.000462216033901 0.000290441846676 -69347347289.0 +UniRef50_D3E4K2 MFS transporter 0.00242142277609 0.000281052812108 -8.64093619752e+11 +UniRef50_B2TIE4 Putative ATP 0.000480976230066 0.00141885111969 3.7863160196e+11 +UniRef50_A3NQD4 Multifunctional CCA protein 0.00557373180286 0.0150195145802 3.81337842e+12 +UniRef50_C7LD35 0.000223597114788 7.5308575835e-05 -59865902880.3 +UniRef50_E7SW38 0.000255385853633 3.92555272236e-05 -87254464988.7 +UniRef50_A0A023XLY7 0.000196664983143 4.82817041415e-05 -59904150600.3 +UniRef50_E7GLY7 6.06707874525e-06 7.95678243208e-06 762896567.645 +UniRef50_D3B9J3 Electron transfer flavoprotein ubiquinone oxidoreductase 1.16378622033e-05 3.07168523126e-05 7702422432.66 +UniRef50_I2GQ39 UvrABC system protein A Short=UvrA protein 5.71015212688e-06 0.000188076002093 73623331511.9 +UniRef50_UPI00047D4973 hypothetical protein 4.04682651678e-06 6.6167702185e-05 25078959816.1 +UniRef50_UPI00046D0079 hypothetical protein 1.8215671519e-05 0.000211146574471 77888573050.1 +UniRef50_H7CVL3 Beta lactamase 0.000632231981035 0.000565151631228 -27081160385.5 +UniRef50_Q48838 Probable L serine dehydratase, alpha chain 2.07811754869e-05 1.4119558831e-05 -2689376391.22 +UniRef50_L0FK70 5.05580598562e-05 6.52156998636e-05 5917469140.46 +UniRef50_Q24UB9 NADH quinone oxidoreductase subunit H 0.000158164520469 0.00317611604452 1.21838406469e+12 +UniRef50_A3SBX3 4.47365814602e-06 2.3998701605e-06 -837213657.995 +UniRef50_UPI000255C58A amino acid permease associated protein, partial 1.58186036073e-05 8.03473744677e-05 26051056653.4 +UniRef50_Q38XW7 Phosphoribosylformylglycinamidine synthase 2 1.51032290944e-05 3.41735658098e-06 -4717730135.44 +UniRef50_E8WDB2 Prevent host death family protein 8.13551367075e-05 8.86099895376e-05 2928873114.57 +UniRef50_UPI0003B627AC NAD dependent epimerase 1.00581306653e-05 2.43261656893e-05 5760180827.67 +UniRef50_UPI00046A94A2 MFS transporter permease 3.26918874016e-06 0.000164364515663 65036160340.8 +UniRef50_UPI0003FD0D46 peptide ABC transporter permease 6.16355774297e-06 6.01695993539e-05 21802901727.0 +UniRef50_A3JZB9 0.000983654153861 0.000148302226566 -3.3724182397e+11 +UniRef50_P51601 GTP cyclohydrolase 1 3.2640448862e-05 1.30504462899e-05 -7908724434.72 +UniRef50_A0A037YFV8 Transposase 0.00275561179728 0.00120435106898 -6.26262992125e+11 +UniRef50_B9KT97 ABC transporter related 0.0077655580059 0.000648041933358 -2.87342858023e+12 +UniRef50_UPI0002DCE8E8 hypothetical protein 4.68985942221e-06 1.06959485762e-05 2424731894.47 +UniRef50_B9KQ64 0.00168577660971 0.000609880727552 -4.34352370355e+11 +UniRef50_B2V2R9 0.000299592054644 0.000919741390482 2.50361896966e+11 +UniRef50_A6WC54 Triosephosphate isomerase 6.50666978973e-06 0.00659893916741 2.66144589753e+12 +UniRef50_UPI0003615D0A 30S ribosomal protein S15, partial 0.000375016582941 7.39062837505e-05 -1.21561922822e+11 +UniRef50_P0C0C8 S ribosylhomocysteine lyase 0.0026854542958 0.00932380943447 2.67998543126e+12 +UniRef50_UPI00037B7B2D hypothetical protein 6.08925832862e-05 1.03799398977e-05 -20392573995.8 +UniRef50_B9AFV8 Transcriptional regulator, MarR family 0.00128360092158 0.000705178068698 -2.33516403755e+11 +UniRef50_UPI000375A8C0 hypothetical protein 7.60377006306e-06 2.29213778303e-05 6183906223.8 +UniRef50_Q3JHR7 3.5088691428e-06 5.61300070671e-05 21243799114.0 +UniRef50_Q9CI68 DegV domain containing protein YejH 0.00406596168558 0.00722095005853 1.27370752222e+12 +UniRef50_Q3JHR1 6.26504097732e-05 7.73080380057e-05 5917464386.79 +UniRef50_Q8EBR2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.6229333059e-06 7.77056158277e-06 867023889.735 +UniRef50_D6B6K5 Deaminase 0.000257341602245 0.000353771381212 38929885095.4 +UniRef50_Q8UDF7 Carbamoyl phosphate synthase small chain 0.00238562670839 0.00965060876847 2.93296240901e+12 +UniRef50_UPI00047BA94E hypothetical protein 7.08238053779e-06 2.52217165451e-05 7323072540.83 +UniRef50_B7GJX4 Predicted dithiol disulfide isomerase involved in polyketide biosynthesis 0.000177779900556 0.000564193826766 1.56000043843e+11 +UniRef50_W1CVX6 Potassium efflux system KefA protein Small conductance mechanosensitive channel 0.00269667925213 0.000811633639819 -7.610160458e+11 +UniRef50_O69762 Hydroxycinnamoyl CoA hydratase lyase 0.000423018810486 0.0101261400964 3.91726913381e+12 +UniRef50_UPI00047E8386 hypothetical protein 5.01224808839e-06 2.66863896531e-05 8750116921.3 +UniRef50_Q6A5D0 Uronate isomerase 0.000115729023204 0.00466194750909 1.83536419113e+12 +UniRef50_A4KKZ2 Integral membrane protein 3.73569140138e-05 2.94512025292e-05 -3191632740.32 +UniRef50_L8A4F6 ATP dependent DNA helicase RecG 5.62013879147e-05 0.00211363286974 8.30610336738e+11 +UniRef50_B5FHH0 Protein FixA 0.000848634949623 0.000500982907698 -1.40351395495e+11 +UniRef50_K7RV74 2.77022252248e-05 0.000132839462127 42445192716.3 +UniRef50_Q7N253 Complete genome; segment 12 17 1.80785787962e-06 1.10319243023e-05 3723868806.86 +UniRef50_F1WXM9 8.04793256855e-05 0.0019896929736 7.70772978347e+11 +UniRef50_B7UXK4 0.000416344840642 0.000410162090547 -2496052084.23 +UniRef50_T1Y6Z9 Transcription antiterminator, BglG family 0.0119335605342 0.00275654756203 -3.70487275148e+12 +UniRef50_A0A011NCB6 Endonuclease III 6.28370743373e-06 1.33601972724e-05 2856865786.17 +UniRef50_P61653 2 dehydro 3 deoxyphosphooctonate aldolase 0.00348581006844 0.0146052026306 4.48903522765e+12 +UniRef50_UPI0003760644 hypothetical protein 0.000471702405281 0.000191841128628 -1.12983431669e+11 +UniRef50_F7WSN7 PE PGRS family protein 6.69981599401e-05 0.000172787419362 42708422208.9 +UniRef50_V6ICR3 Peptidase 0.000504079082691 0.000300220762586 -82300105449.3 +UniRef50_UPI0002ED547D hypothetical protein 2.6163040914e-05 1.88445620658e-05 -2954559718.85 +UniRef50_UPI00037F3F52 hypothetical protein 0.000405034301632 6.4274643633e-05 -1.37568855525e+11 +UniRef50_UPI000473CF45 magnesium transporter 0.000172991116152 2.37795079427e-05 -60238557266.3 +UniRef50_W2ELZ6 4.64690927099e-05 6.02498720692e-05 5563469736.53 +UniRef50_A1KAD0 GTPase Obg 0.00107324554186 0.00361806054868 1.02737304665e+12 +UniRef50_R9SJH3 MATE efflux family protein 0.00712111820969 0.000924117333518 -2.50180529946e+12 +UniRef50_V5SG04 NAD NADP transhydrogenase subunit alpha 2.04776273881e-05 1.6000457558e-05 -1807488401.46 +UniRef50_UPI000289DD7B protein export cytoplasm protein SecA ATPase RNA helicase 2.36371257514e-05 5.60627129897e-05 13090607474.8 +UniRef50_A5IQ87 RNA polymerase, sigma 24 subunit, ECF subfamily 0.00631954881368 0.00178840449647 -1.82927856425e+12 +UniRef50_Q51368 Protein TonB 0.000184439408233 0.000548982512883 1.47170524794e+11 +UniRef50_UPI0002FEF856 hypothetical protein 1.22128516096e-05 1.10156253539e-05 -483334931.044 +UniRef50_U5NMV6 0.0032428446394 0.00215298537194 -4.39989560351e+11 +UniRef50_U5UNI0 0.0211711439897 0.00436810590223 -6.78359267239e+12 +UniRef50_Q4FBH4 Superfamily I DNA helicase 0.000133408830187 0.000154274456624 8423709442.65 +UniRef50_UPI000371EB10 hypothetical protein 1.13742843895e-05 4.39721540659e-06 -2816728366.67 +UniRef50_Q03U25 4 deoxy L threo 5 hexosulose uronate ketol isomerase 4.34639281418e-06 7.45230684356e-06 1253895607.51 +UniRef50_L7MHU7 Putative glycine rich protein 1.1455558112e-05 2.21939040262e-05 4335202019.89 +UniRef50_UPI00047BE3BA hypothetical protein 1.07937967412e-05 8.38168699571e-06 -973798304.169 +UniRef50_P45207 Stringent starvation protein A homolog 1.22137164791e-05 5.4876164855e-05 17223353936.5 +UniRef50_T2E6P2 Outer membrane autotransporter barrel domain protein 0.000454809645883 0.000415994549764 -15670130618.0 +UniRef50_Q87UP6 Polyphosphate kinase 0.00105330587512 0.0119892544016 4.41497661933e+12 +UniRef50_UPI0001B412E7 histidine transporter permease 8.99426628706e-05 0.000175833604537 34675227151.1 +UniRef50_A3M5I7 AdeS 0.00148370731676 0.00603766790133 1.83848977137e+12 +UniRef50_A8GDW2 Isopentenyl diphosphate Delta isomerase 4.02743418312e-05 9.54498119029e-06 -12405819982.4 +UniRef50_P76014 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 0.00143125628549 0.00181553184676 1.55136759676e+11 +UniRef50_R7PTX8 Hydrolase TatD family 0.00245137427705 0.000827443186981 -6.55600908937e+11 +UniRef50_UPI00047C0852 glycine cleavage system protein H 8.75776946726e-05 3.16549518795e-05 -22576697514.8 +UniRef50_Q839B2 Hypoxanthine guanine phosphoribosyltransferase 3.12911457716e-05 0.000352784343301 1.29790749008e+11 +UniRef50_B2UYP0 WblI protein 0.000297444520913 0.00239951448613 8.48631440259e+11 +UniRef50_Q1PY54 2.64981722691e-05 2.22005871553e-05 -1734987847.74 +UniRef50_P40727 Flagellar biosynthetic protein FlhB 0.00303280264224 0.00374753857016 2.88547664897e+11 +UniRef50_B9KW14 Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32 0.0031099238158 0.000547988466506 -1.03428473899e+12 +UniRef50_UPI00036FCE04 50S ribosomal protein L13 0.00016025339571 7.38949428271e-05 -34863967166.2 +UniRef50_O29458 Diaminopimelate decarboxylase 5.13512760304e-06 0.000133052340701 51641748648.4 +UniRef50_B1YMX6 Transposase, IS4 6.33869285446e-05 5.81391298683e-06 -23242932881.0 +UniRef50_U3SU32 0.00329413616876 0.000673726323636 -1.05789161052e+12 +UniRef50_Q4ZX12 Exodeoxyribonuclease 7 large subunit 0.000173823172146 0.000171363658722 -992935750.893 +UniRef50_UPI0002F5B1BD hypothetical protein 1.6393428139e-05 0.000175602855711 64274799630.2 +UniRef50_I3TX99 Sulfite reductase 0.00828798106504 0.0059691824769 -9.36127444891e+11 +UniRef50_UPI0003EBBF6F PREDICTED 3.16307625095e-06 1.50963772352e-05 4817620045.39 +UniRef50_Q8CUD0 0.00271715603282 0.000487605167142 -9.00097044141e+11 +UniRef50_Q8CUD7 0.0337973615811 0.0095621073783 -9.78406952168e+12 +UniRef50_M0FQF4 0.000522032318356 9.62021548053e-05 -1.71912862549e+11 +UniRef50_Q1QVC8 UPF0042 nucleotide binding protein Csal_2229 0.000700876816112 0.0012380459907 2.16861787588e+11 +UniRef50_H6CMH0 0.000189003079664 0.00128094471297 4.40830236998e+11 +UniRef50_UPI00035CA530 hypothetical protein 8.33271950809e-06 1.22703095555e-05 1589653421.8 +UniRef50_UPI0004777D24 phosphate starvation inducible E 2.62183551667e-05 2.83260904812e-05 850918611.285 +UniRef50_Q7VRW1 NADH quinone oxidoreductase subunit K 4.59366177349e-05 5.50764921917e-05 3689879477.08 +UniRef50_G4LBC3 2.53890301285e-05 0.000231335216862 83143002828.4 +UniRef50_F3U4G5 0.00211872700608 0.000122014787727 -8.06097224962e+11 +UniRef50_G7M1G9 Calcium transporting ATPase 0.000278428181941 0.000966798628852 2.77903596673e+11 +UniRef50_UPI00034DCD19 hypothetical protein 1.30549585875e-05 0.000232300114808 88511960006.6 +UniRef50_M9VKR8 0.000147678170721 0.00145338287171 5.27129010588e+11 +UniRef50_H4WKP6 Conjugal transfer pilus assembly protein TraU 0.000450409544857 8.12128046143e-05 -1.4904925459e+11 +UniRef50_V8GU79 Transposase 0.000351418873432 0.000399810952284 19536476070.1 +UniRef50_UPI0004697DC4 hypothetical protein 1.7691636017e-05 0.000414934456923 1.60371801517e+11 +UniRef50_W0YRC1 5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase 0.000466319169037 0.000582433654521 46876842674.9 +UniRef50_G7LZV6 Xenobiotic transporting ATPase 0.000312669926367 0.000358171905251 18369707247.5 +UniRef50_Q9S7G6 Polyribonucleotide nucleotidyltransferase 2, mitochondrial 1.76896391652e-06 8.43792677239e-06 2692342142.29 +UniRef50_UPI00039AB780 elongation factor P 1.98234833713e-05 3.38986798349e-05 5682329534.44 +UniRef50_D3E3L9 0.000678672588022 0.000435356322155 -98229762356.9 +UniRef50_M1MSP8 Lactose binding protein LacE 8.90297143505e-05 0.000790265526973 2.83097502687e+11 +UniRef50_W5X7C7 Dihydrolipoyl dehydrogenase 3.18576357751e-05 3.03595849903e-05 -604781484.974 +UniRef50_B2UX27 ATP phosphoribosyltransferase regulatory subunit 0.000369265408737 0.000343168439732 -10535666633.1 +UniRef50_E4G4A0 8.87490624453e-05 0.00073257481342 2.59920356299e+11 +UniRef50_UPI0004628EFB hypothetical protein 0.000843817974988 0.00048327235487 -1.45556691234e+11 +UniRef50_F5M013 Phage integrase family protein 0.0163883479143 0.000279039406483 -6.50352552804e+12 +UniRef50_Q8FP97 Proline tRNA ligase 0.000155119067611 0.00519760659706 2.03571409392e+12 +UniRef50_B2TK67 Sterol regulatory element binding protein 0.00055678913232 0.00069033799591 53915315060.1 +UniRef50_UPI00029B24E7 30S ribosomal protein S10 0.000121661376437 0.000967470368209 3.41463469222e+11 +UniRef50_Q02MJ3 Pyoverdine synthetase D 0.000264286330954 0.000391171544172 51225117632.8 +UniRef50_A6LWJ6 0.000128251185346 0.000367867372334 96735995108.3 +UniRef50_C1DKJ6 Type III pantothenate kinase 0.000724902498396 0.00124986842306 2.11935185843e+11 +UniRef50_Q0C348 Histidinol phosphate aminotransferase 2.01922765412e-05 2.57565274909e-05 2246356389.43 +UniRef50_Q6F755 0.000252498989202 0.00784201618484 3.06398122573e+12 +UniRef50_UPI0003B54DE9 peptide chain release factor 3 2.10761379011e-05 9.10066435929e-05 28231803291.6 +UniRef50_Q1J276 Acyl CoA dehydrogenase like protein 0.000672350459777 0.000204315377964 -1.88951505964e+11 +UniRef50_K5VLJ3 0.000286555936363 0.000137814154189 -60048882730.6 +UniRef50_UPI000468B1D5 hypothetical protein 2.15993982242e-05 9.171725463e-06 -5017203998.39 +UniRef50_UPI0003687009 hypothetical protein, partial 4.10014439316e-06 9.83316820012e-06 2314492062.98 +UniRef50_R9VAP8 LysR family transcriptional regulator 0.000654260306819 0.00524283480283 1.85246383218e+12 +UniRef50_Q6GHY8 UPF0223 protein SAR1071 0.004844023293 0.0042067884795 -2.5725951396e+11 +UniRef50_D4I0J4 Protein CreA 2.30783372321e-05 1.59493724517e-05 -2878050564.08 +UniRef50_Q6NAB4 1.23627546063e-05 3.80045506522e-05 10351907724.0 +UniRef50_UPI0003664B75 hypothetical protein 0.000242451652096 1.43914308745e-05 -92070709920.9 +UniRef50_I6TNU2 0.00135483613969 0.00207278156552 2.89843378589e+11 +UniRef50_A0A011NYR8 1.37240791457e-05 0.000364486060402 1.41606916167e+11 +UniRef50_A0A022NSH9 0.000277603564518 0.000134442192823 -57796002540.9 +UniRef50_Q4FPU1 Imidazole glycerol phosphate synthase subunit HisH 0.000506182081834 1.05711113831e-05 -2.00084230602e+11 +UniRef50_A3M4F0 Transporter LysE family 0.000190649489319 0.00727538407615 2.86019429217e+12 +UniRef50_I0C381 1,4 dihydroxy 2 naphthoate polyprenyltransferase 0.0165060182837 0.00548337201447 -4.44997756196e+12 +UniRef50_UPI0003794EB4 hypothetical protein 0.000182562347908 2.90823985241e-05 -61961738977.1 +UniRef50_Q8CQA3 Dihydrolipoyl dehydrogenase 0.0102468733009 0.00232993945533 -3.19616334516e+12 +UniRef50_UPI000363BDDF hypothetical protein 7.54909502641e-06 6.42635912814e-05 22896338103.3 +UniRef50_Q9WYD1 Transaldolase 0.000191665019551 0.00156688825397 5.55194495622e+11 +UniRef50_F0S5S6 3.81689562598e-06 0.00016771912419 66169340977.8 +UniRef50_A9A450 Malate dehydrogenase 2.86800635299e-05 7.82078191315e-06 -8421147960.83 +UniRef50_R0DXB9 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 0.000819836513727 3.92725078927e-05 -3.15123267753e+11 +UniRef50_Q3HKN1 Hemolysin type calcium binding protein 0.00592265129916 0.00115913371379 -1.92309050415e+12 +UniRef50_UPI00046A80FC anthranilate synthase 6.87777030864e-06 1.40677714852e-05 2902691706.21 +UniRef50_I6TXL9 0.00380837574833 0.00147658352597 -9.41373134475e+11 +UniRef50_UPI0003704CF4 hypothetical protein 1.56774465267e-05 0.000193727418557 71880958627.4 +UniRef50_G3VGY4 0.000344884622118 3.87205276236e-05 -1.23602202003e+11 +UniRef50_Q9KNK2 33 kDa chaperonin 0.00218167187132 0.000808164301569 -5.54501860741e+11 +UniRef50_A0A023S0I7 Rod shape determining protein MreD 0.0012506844993 0.00123239839793 -7382323518.77 +UniRef50_Q9KVL7 Diaminopimelate decarboxylase 0.000489289122748 0.00743741344272 2.80504305105e+12 +UniRef50_B1LBM8 50S ribosomal protein L5 0.000727592398308 0.0482839205738 1.91990732662e+13 +UniRef50_UPI0003739253 hypothetical protein, partial 0.000316088626613 4.73148021591e-05 -1.08507291158e+11 +UniRef50_UPI0003EDF954 PREDICTED 2.86292100406e-05 2.77297029724e-05 -363142041.625 +UniRef50_Q74LG2 CTP synthase 8.59428914546e-06 0.000167714476779 64238772372.1 +UniRef50_Q6F9J2 Coenzyme PQQ synthesis protein B 0.000178777062219 0.00568493917273 2.22290521222e+12 +UniRef50_UPI0003679109 hypothetical protein 3.49580104331e-05 6.0754970392e-05 10414549299.7 +UniRef50_P31049 Probable fatty acid methyltransferase 0.00104239874653 0.000698168724668 -1.38969884003e+11 +UniRef50_Q1IYR1 NH dependent NAD(+) synthetase 0.000170968813824 0.00563738763957 2.20686036046e+12 +UniRef50_P39671 Phosphoglucomutase 0.00551805352326 0.000275775041881 -2.11637215292e+12 +UniRef50_UPI00036E3AFC hypothetical protein 4.49338876866e-06 0.000270740211807 1.07487109676e+11 +UniRef50_Q0IAT1 Two component response regulator 0.000503434517162 0.00606694230887 2.24605636743e+12 +UniRef50_W1WM64 0.00106453343623 0.000250064482336 -3.28811111345e+11 +UniRef50_G5LNV5 Respiratory nitrate reductase alpha chain 4.90081520632e-05 1.71178924762e-05 -12874489132.8 +UniRef50_M4YXM6 0.00396904435117 0.00415223072005 73954585066.4 +UniRef50_Q2NQH3 Rhomboid protease GlpG 0.00478841872084 0.00124037835444 -1.43238743527e+12 +UniRef50_N0GIW3 1.14716156977e-05 1.78567583231e-05 2577760432.39 +UniRef50_F2NB99 Nucleoside ABC transporter membrane protein 0.00147087608227 0.00330624730476 7.40961885057e+11 +UniRef50_UPI00046AD244 carbonic anhydrase 9.04369490869e-06 9.66183071032e-06 249549008.497 +UniRef50_UPI0004626526 hypothetical protein 5.84583158743e-06 4.62241011753e-05 16301202929.7 +UniRef50_P27897 UTP glucose 1 phosphate uridylyltransferase 0.000383970746052 0.00026117075777 -49575862194.8 +UniRef50_P22256 4 aminobutyrate aminotransferase GabT 0.0122335533159 0.00539273839892 -2.76172092822e+12 +UniRef50_Q9RU94 NADH quinone oxidoreductase subunit H 9.52825487377e-06 0.0260376145002 1.05078578178e+13 +UniRef50_A6TI09 Probable phosphoglycerate mutase GpmB 0.00277235416766 0.000329024001791 -9.86402370995e+11 +UniRef50_A6F5Z7 NAD dependent 4 hydroxybutyrate dehydrogenase 0.00567942515837 0.000130722835427 -2.24007921801e+12 +UniRef50_E8SH67 Zn peptidase with DNA binding domain 0.0111030342812 0.00207493502593 -3.64475445659e+12 +UniRef50_UPI0003B5F4E2 N acetyl gamma glutamyl phosphate reductase 1.966641144e-05 2.27919884659e-05 1261833800.5 +UniRef50_Q89WH6 Blr0711 protein 0.000112884760857 1.66103549201e-05 -38867159096.5 +UniRef50_G9MRN8 0.000472227014612 9.87080454821e-06 -1.86658875752e+11 +UniRef50_I0C7B0 ATP dependent dethiobiotin synthetase BioD 0.0147915496597 0.00128502006866 -5.45275173964e+12 +UniRef50_UPI000328AD5C 2.88292949224e-05 4.18144497047e-05 5242266331.38 +UniRef50_UPI0003A730C5 pyruvate kinase 1.67044562134e-05 6.745549335e-06 -4020532916.34 +UniRef50_UPI00044428D0 PREDICTED 5.30260981272e-06 4.45303386968e-05 15836715528.9 +UniRef50_F9I1V8 0.00300182514456 0.000787002116894 -8.94151235205e+11 +UniRef50_UPI0003B495EE exonuclease subunit SbcD 8.0532360051e-06 1.79453086473e-05 3993551115.04 +UniRef50_Q5WHY0 Glucosamine 6 phosphate deaminase 6.28482314263e-06 0.00419083756032 1.68935529024e+12 +UniRef50_I3U5U5 Mobilization protein C 0.113317013222 0.0618804861852 -2.07655571619e+13 +UniRef50_UPI0003734C10 hypothetical protein 0.0011202885584 0.000180420100493 -3.7943642994e+11 +UniRef50_UPI00047099BD hypothetical protein 7.58028491194e-06 3.43928733877e-05 10824570995.1 +UniRef50_A4XUQ2 0.000641980769516 0.00112508861926 1.95036567342e+11 +UniRef50_P48812 Glyceraldehyde 3 phosphate dehydrogenase 9.55543030906e-06 8.1817438777e-06 -554574069.368 +UniRef50_K9NNF0 LysR family transcriptional regulator 0.000275537218136 0.000398179827223 49512326282.5 +UniRef50_Q8X5L9 Endoglucanase 0.0044222616687 0.0006994108916 -1.50296054323e+12 +UniRef50_O54537 Glucose 6 phosphate 1 dehydrogenase 1.06819159075e-05 0.00436204469986 1.75669855311e+12 +UniRef50_Q2CB82 7.55593300012e-06 1.47404604022e-05 2900481876.29 +UniRef50_H3NTE5 3.239869152e-05 2.62876213621e-05 -2467114014.01 +UniRef50_Q8DWT2 Membrane protein, putative 0.000195790967962 7.13038322365e-05 -50256984321.1 +UniRef50_Q6GFS7 RNA polymerase sigma factor SigS 0.0115843250797 0.0021644985149 -3.80289957848e+12 +UniRef50_X4ZMG7 Enoyl reductase family protein 6.46704411723e-05 0.00015791583324 37644309027.4 +UniRef50_Q3HKI6 TraI 0.0282669681769 0.00664516987275 -8.72898530471e+12 +UniRef50_A9FGM6 PhoH family protein 0.00679385006258 0.00406179090732 -1.10296580711e+12 +UniRef50_U5MSH8 Signal transduction and transcriptional control protein Stc 0.000628883106539 0.0014520799739 3.32334677115e+11 +UniRef50_P0CF89 Transposase InsI for insertion sequence element IS30C 0.00484720797524 0.00184781077051 -1.21089345829e+12 +UniRef50_Q9RSL3 50S ribosomal protein L6 0.000220752040266 0.0500645173627 2.01225397124e+13 +UniRef50_U3AK46 Hypotheical conserved protein 0.000597651633194 0.000303079901881 -1.18922222733e+11 +UniRef50_P0ABH6 Rod shape determining protein MreD 0.00103727625684 0.00154491510429 2.04940032145e+11 +UniRef50_S5XQY4 Cytochrome b561 0.00116432762227 0.0011852192031 8434187549.6 +UniRef50_UPI0003825EF9 hypothetical protein 7.04998149293e-06 1.14304381484e-05 1768444106.06 +UniRef50_Q6A834 8.16151459085e-05 0.00140275108861 5.33358792229e+11 +UniRef50_UPI0004744DBC hypothetical protein 3.91432963682e-05 9.22235361923e-05 21429144184.8 +UniRef50_A4VSE4 3 methyladenine DNA glycosylase 0.00910898931407 0.00336191686088 -2.32016367386e+12 +UniRef50_A6L4N0 2 aminoethylphosphonate pyruvate transaminase 1.77471256079e-05 0.0018467462766 7.38389401598e+11 +UniRef50_Q9L6R5 UDP N acetylglucosamine 2 epimerase 6.08051888097e-06 5.33762701444e-05 19093875169.2 +UniRef50_G9ZVF4 7.09681836332e-05 6.4194085199e-05 -2734786665.42 +UniRef50_J9JHL4 0.000372691554418 0.000355465398277 -6954410622.83 +UniRef50_D8TYM2 4.28697862213e-06 5.15758783423e-06 351475622.501 +UniRef50_UPI00036C70D3 hypothetical protein 1.91671464743e-05 5.66684041263e-06 -5450239224.49 +UniRef50_F0N5W3 Rhodanese domain protein 0.000185648846977 0.000272175910237 34932037244.5 +UniRef50_B9GC78 Os12g0188566 protein 6.34711525125e-05 0.000133008534525 28073094438.1 +UniRef50_W8ZGJ2 0.000183245625651 0.000286715247755 41771956158.4 +UniRef50_A6M046 Transcriptional regulator, TetR family 0.000183840578989 0.00111398945006 3.75512513462e+11 +UniRef50_Q8DRN9 0.00207808048828 0.00371757178312 6.61882754548e+11 +UniRef50_UPI000475D486 pseudouridine synthase 0.0001224482672 5.48829504709e-05 -27276947483.2 +UniRef50_B2S7V7 Glyoxalase Bleomycin resistance protein 0.00591721865607 0.000450865198773 -2.20683397041e+12 +UniRef50_UPI00035ECC54 hypothetical protein 1.00138563831e-05 1.39230182398e-05 1578176612.36 +UniRef50_UPI00037E3E52 hypothetical protein 5.40514946274e-05 3.91999289988e-05 -5995759293.47 +UniRef50_Q9HXZ1 DNA polymerase III subunit alpha 0.000709095521666 0.000674647887156 -13906932771.7 +UniRef50_A6M0Z1 Methyl accepting chemotaxis sensory transducer 0.00108619768978 0.00114994972905 25737480578.8 +UniRef50_C7IW70 Os01g0561500 protein 0.00013129895143 0.000251946170197 48706762724.1 +UniRef50_B2TPI9 0.00043543623929 0.000204371422282 -93283702110.3 +UniRef50_P75883 0.00177561483703 6.40590329834e-05 -6.90976081247e+11 +UniRef50_V4REQ5 Bacteriophytochrome heme oxygenase BphO 2.89382400061e-05 2.79350992374e-05 -404980238.246 +UniRef50_UPI0002000915 NRPS siderophore biosynthesis protein 3.22637597309e-05 0.000106962200756 30156677294.8 +UniRef50_Q54430 Sucrose operon repressor 0.00405992107902 0.00178205600625 -9.19602082425e+11 +UniRef50_A6LTD5 Lipoprotein, putative 0.000113359155811 0.00172308340428 6.49865432645e+11 +UniRef50_Q2FJI0 Methionine import ATP binding protein MetN 1 0.0247257056837 0.00673051906752 -7.26487766273e+12 +UniRef50_UPI000470E6C8 hypothetical protein 1.11705950525e-05 3.42235449316e-05 9306758757.7 +UniRef50_P39636 Amino acid permease RocC 0.00122384584998 0.00162295916673 1.61126943643e+11 +UniRef50_A7GKI0 Phosphoribosylformylglycinamidine cyclo ligase 2.43998777417e-06 9.46726695737e-06 2836998840.67 +UniRef50_P22608 Type 4 fimbrial assembly protein PilB 0.00169203240639 0.00096174613359 -2.9482552995e+11 +UniRef50_UPI0003627506 Cro Cl family transcriptional regulator 0.000171136209819 2.18980312572e-05 -60249284043.9 +UniRef50_C1D205 Putative diguanylate cyclase 3.16548291664e-06 0.00013168081389 51883216174.3 +UniRef50_Q9KU46 Lipoprotein signal peptidase 1.86195772501e-05 1.70684160959e-05 -626222792.838 +UniRef50_I6Y4U3 NAD dependent malic enzyme 1.37917729531e-05 1.28807427933e-05 -367794055.108 +UniRef50_E0DCF6 0.00051445369767 0.0182942495379 7.17792176332e+12 +UniRef50_K0WMD7 Glycosyltransferase 0.00151054400983 0.000208213893202 -5.25766649471e+11 +UniRef50_W7VMD9 Peptidase M23 0.000146481743545 0.000227616506777 32755099552.3 +UniRef50_UPI0004724D89 hypothetical protein 3.92340660451e-06 4.95742120871e-06 417444384.502 +UniRef50_C6S911 Deoxyribodipyrimidine photolyase 8.87506243427e-05 0.0025977328384 1.01290690849e+12 +UniRef50_X5MKP4 FIG003603 1.67802005625e-06 4.41277098959e-06 1104052510.96 +UniRef50_UPI00047E4FB4 hypothetical protein 0.000164687805049 0.000166464014484 717077545.45 +UniRef50_A6LX64 ABC transporter related 0.000584154764232 0.00139860132819 3.28802072253e+11 +UniRef50_U4VGY9 0.000106436640526 2.16645479638e-05 -34223534037.9 +UniRef50_A0A024E6B6 Cytochrome B561 0.00174259606357 0.00137356607068 -1.48981936637e+11 +UniRef50_UPI00046BD92F PREDICTED 6.17918487358e-05 7.85352274896e-06 -21775564098.6 +UniRef50_A9M1B3 Potassium uptake protein 0.000381960850639 0.00310080548537 1.09763094302e+12 +UniRef50_P0A9J2 Ribonuclease G 0.00426004794361 0.00792478167688 1.47949797946e+12 +UniRef50_C7ZY18 0.0049096229059 0.00112567615605 -1.52762573716e+12 +UniRef50_P69955 Low calcium response locus protein D 0.000410352372292 0.000549664559346 56242039466.5 +UniRef50_T1JU83 7.86192350507e-06 1.88855631107e-05 4450378584.05 +UniRef50_B0TEJ5 1 deoxy D xylulose 5 phosphate synthase 1.98501182392e-06 0.000357841472046 1.43663619841e+11 +UniRef50_R6STG9 Putative glutamate binding periplasmic protein 8.94101527327e-06 0.000357524488061 1.40727425565e+11 +UniRef50_O67546 Succinyl CoA ligase [ADP forming] subunit beta 8.42002469031e-06 3.66883338309e-05 11412263291.2 +UniRef50_F0YAV0 Expressed protein 8.76257844775e-05 3.23736101786e-05 -22305980784.9 +UniRef50_UPI00016C49DC histidinol phosphate phosphatase, putative 6.01969953508e-06 0.000152555607759 59158344347.8 +UniRef50_Q08653 Anthranilate synthase component 1 7.72206193387e-06 0.000312795323146 1.23161819221e+11 +UniRef50_A6M2V0 Methyl accepting chemotaxis sensory transducer 0.00041346384146 0.00150171352841 4.39339752947e+11 +UniRef50_UPI0003AE1EC3 PREDICTED 3.15622314758e-06 7.54000098382e-05 29165703218.0 +UniRef50_Q2FIM4 Epimerase family protein SAUSA300_0753 0.0219596516598 0.00538802337317 -6.69016969605e+12 +UniRef50_UPI0003752D61 hypothetical protein 0.00150102311343 0.000644566176804 -3.45762175224e+11 +UniRef50_Q9HWF9 Bacterioferritin 0.00289881212598 0.000322489892283 -1.04009290077e+12 +UniRef50_F9Z1G0 DNA primase 6.05592495497e-05 0.00698334080533 2.79481186615e+12 +UniRef50_K4RZ48 5.02644459164e-05 4.72510527858e-06 -18384790646.0 +UniRef50_V9U4M1 0.000129534797437 0.000738291762994 2.45762657283e+11 +UniRef50_C7ZTX4 SSS sodium solute transporter superfamily protein 0.00955989008909 0.00604764664588 -1.4179357781e+12 +UniRef50_UPI0002F68D16 hypothetical protein 8.30130371985e-06 3.52691292777e-05 10887242110.2 +UniRef50_A3DK16 Diaminopimelate epimerase 4.77606624477e-06 1.75014019244e-05 5137374171.28 +UniRef50_F9YXC7 0.000199381964576 0.0057706712088 2.2491978353e+12 +UniRef50_P69740 Hydrogenase 1 small chain 0.00353433071634 4.85548468854e-05 -1.40725049378e+12 +UniRef50_J9NRS4 8.86811250236e-05 1.11866619574e-05 -31285465703.8 +UniRef50_A1VYJ5 DNA directed RNA polymerase subunit beta 3.35481735234e-06 1.46557461534e-06 -762710476.542 +UniRef50_Q28M41 Kef type potassium proton antiporter, CPA2 family 0.00171619171337 0.000991779207053 -2.92454218341e+11 +UniRef50_P0A9H6 Cobyrinic acid a,c diamide adenosyltransferase 0.00494984621138 0.00188839693665 -1.23594464042e+12 +UniRef50_UPI000466B185 hydrolase 1.15889222849e-05 8.06826111519e-05 27893970070.5 +UniRef50_UPI0004738B15 MFS transporter 1.00781317642e-05 4.12420822351e-05 12581269229.8 +UniRef50_Q9RCA1 DNA polymerase III subunit beta 0.0188437795847 0.00767141116464 -4.51042223157e+12 +UniRef50_A8GHR1 Putative multidrug resistance protein MdtD 0.0010995547975 0.000178439096792 -3.71865711737e+11 +UniRef50_UPI00016A58F4 hypothetical protein, partial 7.11546619533e-05 0.000219928727789 60061916041.1 +UniRef50_P76345 Cytochrome b561 homolog 1 0.00496316258967 0.000364588524928 -1.85650078079e+12 +UniRef50_A0A023VMN5 DNA polymerase III subunit epsilon 0.000386834771105 0.00410034998887 1.49919166337e+12 +UniRef50_UPI00036CE3D7 hypothetical protein, partial 3.86987674786e-05 7.71998788235e-06 -12506513475.4 +UniRef50_A0A024GR22 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763 0.000518041383486 0.00256615948379 8.26850410326e+11 +UniRef50_Q7VGX8 Isoleucine tRNA ligase 8.22413465362e-05 0.00245674715692 9.58617134113e+11 +UniRef50_G1P8T6 7.97070917265e-06 5.21797079207e-06 -1111314264.14 +UniRef50_B1ZT49 Tryptophan synthase alpha chain 6.67968532493e-06 9.08665724165e-06 971724099.647 +UniRef50_C9X0B4 Cystathionine beta lyase 0.000177501248674 0.00252986390946 9.49677672897e+11 +UniRef50_UPI0004680597 hypothetical protein 1.52544471013e-05 1.56314532927e-05 152202025.854 +UniRef50_P59019 3 isopropylmalate dehydratase small subunit 1.04805145886e-05 1.53438588772e-05 1963391769.25 +UniRef50_G7D6B1 0.00102521133079 0.000435895748475 -2.37913932296e+11 +UniRef50_D0K7S8 0.00558332118742 5.59379743674e-05 -2.23147243173e+12 +UniRef50_A8WP91 Probable medium chain specific acyl CoA dehydrogenase 2, mitochondrial 3.03142666471e-06 2.21974185725e-05 7737546126.35 +UniRef50_P07654 Phosphate transport system permease protein PstA 0.00228669852005 0.000292392777421 -8.05125701183e+11 +UniRef50_UPI00046BF57D PREDICTED 1.38818464288e-05 1.00907034622e-05 -1530530938.17 +UniRef50_D5AUV7 1.60777963965e-05 1.24047297343e-05 -1482862085.13 +UniRef50_E6WAB3 Thymidine phosphorylase 0.000428519336342 0.00066356430709 94890539017.1 +UniRef50_P16919 Protein RhsD 0.00484954582135 0.000996077702367 -1.555692367e+12 +UniRef50_Q8CNS3 Integrase 0.00785160938702 0.00179204034191 -2.44632238278e+12 +UniRef50_UPI00038257CA hypothetical protein 6.83880852264e-06 2.36795046223e-05 6798795674.03 +UniRef50_B3E616 Phosphoribosyl ATP pyrophosphatase 0.000111853768214 4.81819890207e-05 -25705078600.9 +UniRef50_UPI000255D14E uracil xanthine permease 2.53026562798e-05 6.7637007731e-05 17090897181.8 +UniRef50_A0A011PEE7 0.00424676589076 0.000595872852833 -1.47391032091e+12 +UniRef50_Q2J8T7 NAD NADP transhydrogenase alpha subunit like 1.83450686689e-05 2.68237798202e-05 3422959737.27 +UniRef50_X1LFP4 Marine sediment metagenome DNA, contig 1.92213537492e-05 8.89434529748e-05 28147667043.7 +UniRef50_F5H1R7 Protein FLJ22184 1.07167977419e-06 3.61869434395e-06 1028261037.2 +UniRef50_B5YJV0 GTP cyclohydrolase 1 0.000212070780251 0.00259996471084 9.64022082533e+11 +UniRef50_I6SZZ6 Glutathione synthase 0.00107632511589 0.000671756349428 -1.63329375638e+11 +UniRef50_A4IWK9 Ribonuclease 3 7.55124492991e-06 1.45028689935e-05 2806455940.49 +UniRef50_P0AAD4 Tyrosine specific transport protein 0.00198736736912 0.000242394012474 -7.04467157311e+11 +UniRef50_UPI0004573F1D PREDICTED 0.000165041695185 1.74606595238e-05 -59580275119.3 +UniRef50_UPI0003805ECB hypothetical protein 2.79384434769e-05 2.26324843107e-05 -2142080826.84 +UniRef50_G5LNP8 Glucans biosynthesis protein G 3.93808099937e-05 0.000217783843728 72023493969.8 +UniRef50_A6LZ85 O acetylhomoserine aminocarboxypropyltransferase 0.000867498566062 0.00192631588812 4.27457546065e+11 +UniRef50_Q04LT6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.38650992893e-06 0.00346756180107 1.39933749979e+12 +UniRef50_I6U4A9 0.00263590785676 4.48588694827e-05 -1.04603827191e+12 +UniRef50_A0A017HQJ0 Mobile element protein 0.000104471362314 3.02093758868e-05 -29980475217.7 +UniRef50_Q49UU5 UPF0355 protein SSP2326 0.00296687845538 0.000437506229925 -1.0211386063e+12 +UniRef50_Q1JF79 ComE operon protein 2 0.00635302784126 0.00582690077184 -2.1240395423e+11 +UniRef50_Q93GF3 Rep 0.410004761703 0.131513750747 -1.12430238592e+14 +UniRef50_A1U4H5 D 3 phosphoglycerate dehydrogenase 0.000159726088367 0.0076288399733 3.01537293168e+12 +UniRef50_B6VK40 Type iii secretion component protein sctt 0.000472631611028 0.000519520793169 18929738225.3 +UniRef50_UPI00036474E6 hypothetical protein 2.34510016302e-06 1.77062695784e-05 6201492595.74 +UniRef50_P0ADM6 0.00285776723549 0.000336863161818 -1.01771990951e+12 +UniRef50_U7R6W7 4.19126630413e-05 2.4592809316e-05 -6992237487.41 +UniRef50_E3I502 Oligoendopeptidase, pepF M3 family 0.00998412673087 0.00221708312703 -3.13565081521e+12 +UniRef50_R6WGW0 Macro domain protein 3.80640496571e-06 1.72239453829e-05 5416825718.16 +UniRef50_UPI0003661C28 hypothetical protein, partial 1.14581658908e-05 2.56216461218e-05 5717970774.7 +UniRef50_A0YRN0 Putative transposase 1.08015430708e-05 0.00101446595357 4.05191638866e+11 +UniRef50_Q1GHV9 YjeF related protein like protein 1.9045333418e-05 1.73331521479e-05 -691228589.566 +UniRef50_A0A023YXN9 Type 1 fimbriae anchoring protein FimD 0.000403664049756 6.78369154289e-05 -1.3557753519e+11 +UniRef50_Q4L8X8 Ppx GppA, Ppx GppA phosphatase family protein 0.00819689273811 0.00144506122901 -2.72579723451e+12 +UniRef50_B0V1R4 Novel protein 0.000316928750669 0.000185173704217 -53191129068.9 +UniRef50_B9KPX1 Periplasmic binding protein LacI transcriptional regulator 0.0127659845375 0.00165325258792 -4.48634625661e+12 +UniRef50_C7ZSW5 ABC transporter 0.0122512577802 0.00142808143217 -4.369449107e+12 +UniRef50_D8JP76 0.000129720271086 0.00593238323664 2.34260624587e+12 +UniRef50_I6TX73 Acetyltransferase 0.00215644753586 0.000596599404435 -6.29729832147e+11 +UniRef50_P51995 NAD transhydrogenase subunit alpha part 2 2.01399775711e-05 0.000791140163099 3.11262236134e+11 +UniRef50_C5N4H6 0.0152087068687 0.00326213299753 -4.82297847275e+12 +UniRef50_R6RWM5 Prophage LambdaSa04 DNA polymerase 0.00017104095588 0.00499753408088 1.94851450229e+12 +UniRef50_Q9JY85 0.000267431008715 0.0021931560169 7.7743881711e+11 +UniRef50_A4WW73 0.00491223134508 0.00109832298906 -1.53972160524e+12 +UniRef50_UPI00016AAA4C MFS transporter 5.30389645485e-06 8.14194767184e-06 1145756103.1 +UniRef50_Q46915 Glucarate dehydratase related protein 0.00468365670371 0.000743707890032 -1.59060568469e+12 +UniRef50_Q5HRD9 AIR carboxylase, putative 0.0103709130938 0.00367530658485 -2.70309851199e+12 +UniRef50_Q3IW48 0.00535357754704 0.000816543885337 -1.83165616489e+12 +UniRef50_J9NUI2 4.69515057499e-05 5.01796159812e-05 1303227713.74 +UniRef50_UPI0003B47644 ABC transporter 1.83672405538e-05 0.000103730443885 34462172709.1 +UniRef50_A8LE21 Peptide deformylase 1.696153339e-05 0.000193122815757 71118471433.6 +UniRef50_UPI0003B50607 MarR family transcriptional regulator, partial 3.0900146007e-05 8.12584791168e-05 20330277042.7 +UniRef50_A0A023L4E6 Multidrug transporter membrane component ATP binding component 0.00117657751455 0.000145356868839 -4.16316429173e+11 +UniRef50_G8AI77 0.00229120217543 0.00129545146294 -4.01996781868e+11 +UniRef50_W7WQX4 0.000798181908449 0.000330170971717 -1.88941758299e+11 +UniRef50_UPI00036C7DC7 hypothetical protein 6.15263919252e-05 9.07270591586e-05 11788667694.6 +UniRef50_UPI0003B4B204 hypothetical protein 1.84678636003e-05 2.95382614627e-05 4469255466.11 +UniRef50_P76518 0.00334107914555 0.000762727160681 -1.04091233623e+12 +UniRef50_O32177 3 ketoacyl CoA thiolase 0.000121238847423 0.0342031515765 1.37592864008e+13 +UniRef50_Q6MGU4 Nucleoside diphosphate kinase 7.25805057486e-05 4.44787777822e-05 -11345012427.0 +UniRef50_P76514 0.00182054674941 0.000716176659606 -4.45847757397e+11 +UniRef50_Q7P1W4 7.6165503042e-05 7.23003177589e-06 -27830095683.5 +UniRef50_E0SN31 Oxidoreductase 0.000315976689791 0.000193650298495 -49384665279.8 +UniRef50_B4EH82 Catalase related peroxidase 0.000335375767292 0.00475938632788 1.78602735202e+12 +UniRef50_H8FXV9 0.000810729358581 0.00447904146487 1.48094261256e+12 +UniRef50_M9VA45 0.000159138626748 0.00593386507711 2.33132793187e+12 +UniRef50_B7V4I1 LPS assembly protein LptD 0.000511203357662 0.000488725577381 -9074555732.82 +UniRef50_Q8CU34 ABC transporter 0.0106969552657 0.00372461379786 -2.81481981082e+12 +UniRef50_C6B907 NAD dependent epimerase dehydratase 0.00221361893687 0.000365877338409 -7.45955957637e+11 +UniRef50_Q88EH6 Acetyl coenzyme A synthetase 1 0.0151427980615 0.00319060675343 -4.82524630096e+12 +UniRef50_A0A059LIS0 7.28405287655e-06 7.52696297692e-05 27446611668.4 +UniRef50_Q00X46 WGS project CAID00000000 data, contig chromosome 13 7.27289578742e-07 6.60833575544e-07 -26829103.9979 +UniRef50_S6ASW9 0.000215831558213 3.58999369761e-05 -72640603502.7 +UniRef50_UPI0002D680F8 hydroxymethylglutaryl CoA lyase 2.5264454022e-06 1.56204284232e-05 5286201626.82 +UniRef50_G4MEB0 Protein containing domains DUF404, DUF407 5.63163527146e-06 1.66738390577e-05 4457873171.57 +UniRef50_A1AYY2 Phage major capsid protein, HK97 family 0.0103398344141 0.00274959383635 -3.06427326396e+12 +UniRef50_I0C4W3 Enterotoxin 0.00835627548538 0.00133541063328 -2.83440929649e+12 +UniRef50_B2GK44 2.24052420409e-06 1.46040817952e-05 4991319917.44 +UniRef50_A8ZUK6 Tyrosine tRNA ligase 3.48333187251e-05 2.39419345286e-05 -4396985452.44 +UniRef50_UPI00047522DD hypothetical protein 6.79500627155e-06 5.34219322439e-05 18823862191.7 +UniRef50_F9PNH7 RDD family protein 4.20792043256e-05 3.98273878766e-05 -909085933.357 +UniRef50_R6Q8V3 O 6 methylguanine DNA methyltransferase 0.00397910536368 0.000592608772976 -1.36717023065e+12 +UniRef50_A7X782 Pyrrolidone carboxylate peptidase 0.012958682208 0.00377134784834 -3.70903962227e+12 +UniRef50_A7HQ81 Thioesterase superfamily protein 6.61333752309e-06 9.71734329914e-06 1253125222.23 +UniRef50_Q722V6 Homoserine O acetyltransferase 3.23983775801e-05 0.000650659733354 2.49599696246e+11 +UniRef50_E5S583 Glycine cleavage system H protein 1.1053599948e-05 7.95195916018e-06 -1252170447.46 +UniRef50_W8Z324 0.000178596510549 0.000107780104746 -28589452037.7 +UniRef50_D3HCJ2 2 isopropylmalate synthase 0.0325299845153 0.0102834088525 -8.98121559125e+12 +UniRef50_A3DJH8 30S ribosomal protein S3 0.000237412571605 0.00110541003727 3.50421228416e+11 +UniRef50_T2E8G6 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 0.000711361824182 0.000272181295113 -1.77302568936e+11 +UniRef50_U7JH15 2.85594305966e-05 9.55191819211e-05 27032473298.3 +UniRef50_S9Q8I1 3.18800240954e-06 1.44620329834e-06 -703185675.47 +UniRef50_UPI0003497FAE hypothetical protein 4.60002496307e-06 2.35791847876e-05 7662119721.63 +UniRef50_A7GB27 Transcriptional regulator, AraC family 0.00100509758833 0.000385195702433 -2.50261998388e+11 +UniRef50_UPI0004687B18 hypothetical protein 3.4445770466e-06 4.0115550257e-05 14804521888.5 +UniRef50_D2UWK2 Probable membrane protein 0.00103126608158 0.000412069821193 -2.49977128711e+11 +UniRef50_P23862 Primosomal replication protein N 0.0010358695633 0.00067500961187 -1.45683590642e+11 +UniRef50_L1KG88 0.0103058147219 0.000199340585259 -4.08010762933e+12 +UniRef50_U8CNV5 0.000303339457655 0.000451305691949 59735784534.4 +UniRef50_Q88U22 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00789963687168 0.00533031842319 -1.03726538674e+12 +UniRef50_G0DXB0 0.000128834808487 0.00402822417894 1.57423133974e+12 +UniRef50_UPI0004548C9D 7.26695443163e-05 0.000172100242396 40141392966.6 +UniRef50_P0A232 Phospholipase A1 0.00180049533662 9.0168451203e-05 -6.90479951715e+11 +UniRef50_F3LPE7 Outer membrane autotransporter 0.000152372987829 0.00010047976645 -20949930272.1 +UniRef50_O26834 Putative nickel responsive regulator 2 0.000561939947183 0.000387724339418 -70332978720.6 +UniRef50_UPI00037DF050 hypothetical protein 2.65827695857e-05 6.02606020945e-06 -8298995834.36 +UniRef50_Q9ZJU5 Anthranilate synthase component 1 3.17734809777e-06 0.00700497237441 2.82671057381e+12 +UniRef50_U5RZU5 0.000118210643688 0.00227849388766 8.72132855247e+11 +UniRef50_M4MKF6 0.000132993263525 4.86892572658e-05 -34034561853.3 +UniRef50_G4STG9 Pyrophosphate fructose 6 phosphate 1 phosphotransferase 0.000484937658063 0.00694317847354 2.60727106874e+12 +UniRef50_F3WSY6 MazG family protein 1.71453090991e-05 1.43330302478e-05 -1135351482.81 +UniRef50_UPI00047EE3D3 hypothetical protein 1.3724154624e-05 4.2644265968e-05 11675403839.2 +UniRef50_UPI00047A45E7 hypothetical protein 3.1945837796e-06 4.54948336944e-06 546989590.906 +UniRef50_Q92GE0 3 oxoacyl [acyl carrier protein] reductase FabG 0.00563328565342 0.00190110756164 -1.50672609463e+12 +UniRef50_UPI000366025E MULTISPECIES 6.0343034299e-06 1.17576622643e-05 2310590194.96 +UniRef50_O07329 Catabolite control protein A 0.00775324485625 0.00143682834209 -2.55001485791e+12 +UniRef50_Q03UU4 Ketol acid reductoisomerase 1.61763794219e-05 4.76643938576e-05 12712097829.1 +UniRef50_C6PR80 8.59958840324e-06 0.000837314712711 3.34562465161e+11 +UniRef50_G4B1K2 Transcription repair coupling factor 7.67656962516e-06 2.51827087108e-05 7067443173.34 +UniRef50_A4IS03 S ribosylhomocysteine lyase 1.37257987945e-05 0.00149446556353 5.97792813746e+11 +UniRef50_A0A011NLS4 2.65868900793e-06 0.000162134824985 64382473086.2 +UniRef50_Q59094 Superoxide dismutase [Mn] 1.11953640826e-05 7.67772889463e-05 26476227848.2 +UniRef50_A4WT79 Proton translocating NADH quinone oxidoreductase, chain M 0.00322850470546 0.000520835782613 -1.09311917099e+12 +UniRef50_P23621 Phosphate regulon sensor protein PhoR 0.000993159616954 0.00105765974777 26039494316.0 +UniRef50_B9E752 1.47793850838e-05 1.7308604313e-05 1021076839.84 +UniRef50_S5YGB9 0.00757046076543 0.00443825608546 -1.26450946578e+12 +UniRef50_B9E750 0.0100627651212 0.00291008267101 -2.88762567843e+12 +UniRef50_A3NT46 Oxygen dependent coproporphyrinogen III oxidase 0.00076262879123 0.000206756152991 -2.24412605381e+11 +UniRef50_UPI00034B714A hypothetical protein 1.99770194631e-05 6.26937490907e-06 -5533944318.16 +UniRef50_I6STQ9 0.00960206659121 0.00405190869683 -2.24066685006e+12 +UniRef50_U4TS42 Phosphorylase 0.00233377451391 0.00171165407588 -2.51157655109e+11 +UniRef50_G4LBK7 Two component sensor 0.00038118130373 0.000244184573207 -55307261251.1 +UniRef50_UPI0003F8C513 acetolactate synthase 1.24514609108e-05 0.000331298606118 1.28722505215e+11 +UniRef50_S0L1H4 Diphosphomevalonate decarboxylase 0.0224097743413 0.00827111886757 -5.70794871555e+12 +UniRef50_UPI00037B22BE hypothetical protein 5.60411553498e-06 2.28570770593e-05 6965232285.01 +UniRef50_A6TQQ4 2.41172753023e-05 3.71459436328e-05 5259833284.76 +UniRef50_G7SBD4 0.00528946620781 0.00519678615034 -37416076512.8 +UniRef50_J9NTF4 3.48785187238e-05 0.000126663710155 37054808111.7 +UniRef50_P31440 Adenine permease AdeQ 0.003833588985 0.00112276001969 -1.09439491891e+12 +UniRef50_UPI00037ECA28 hypothetical protein, partial 0.000150557666723 4.11869905611e-05 -44154284095.7 +UniRef50_UPI00035E1B99 hypothetical protein 1.41812304231e-05 2.08689040547e-05 2699895912.06 +UniRef50_A4T5H7 7.58097985609e-06 0.000152733662239 58599919101.7 +UniRef50_P15977 4 alpha glucanotransferase 0.00302820226699 0.00118934239425 -7.42370295973e+11 +UniRef50_I4N9F9 Lipoprotein 0.000169982398226 0.000225488709275 22408578909.5 +UniRef50_A0KCX4 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.000134336650837 0.00020994078568 30522317003.2 +UniRef50_D3H3M8 0.00187379828837 0.000337504805945 -6.20220531298e+11 +UniRef50_E8U8Y0 Oligoendopeptidase F 6.4971770888e-05 0.0283176471771 1.14059517608e+13 +UniRef50_W4TXL6 Iron ABC transporter 0.000493445737057 0.00179578795789 5.25771536085e+11 +UniRef50_A1B3M6 0.00215590058288 0.000359858680012 -7.25084156101e+11 +UniRef50_Q9I5L2 0.00249770293208 0.00122523496665 -5.13710932582e+11 +UniRef50_Q9I5L3 0.0025091048076 0.0015206475195 -3.99052336941e+11 +UniRef50_A6LZM7 ABC transporter related 0.000612118787511 0.00176004050141 4.63430082485e+11 +UniRef50_UPI00047CD6DA hypothetical protein 0.000161038052937 0.000521836076233 1.45658589494e+11 +UniRef50_Q9TKX3 Sulfate thiosulfate import ATP binding protein CysA 1.48581398574e-05 3.79247889356e-05 9312289292.48 +UniRef50_D5AUK2 Transcriptional regulator, GntR family 0.000113245796655 0.000161669729117 19549335763.4 +UniRef50_Q14VU5 ORF13 1.93518972071e-06 1.94596379658e-05 7074834805.71 +UniRef50_UPI0003B67745 exonuclease, partial 2.50358626704e-05 1.97468816337e-05 -2135226547.61 +UniRef50_D5ANZ3 Cytochrome b 0.0126426079407 0.0033334568963 -3.75821851275e+12 +UniRef50_Q5HQP3 0.00121954699548 0.000916896867559 -1.22183570576e+11 +UniRef50_C8NEG6 ABC transporter, substrate binding protein, family 3 0.00229294731724 0.000443700710633 -7.46563547896e+11 +UniRef50_A6LW01 0.000841611976392 0.000676307631791 -66735392427.8 +UniRef50_UPI00047A328A ABC transporter substrate binding protein 7.32498305569e-06 3.73056864454e-05 12103577863.0 +UniRef50_O83668 Fructose bisphosphate aldolase 1.39281752955e-05 0.0057998256801 2.33583782363e+12 +UniRef50_X6KYL5 ATPase 4.06935588584e-05 4.00442577627e-05 -262130820.155 +UniRef50_Q2CBA4 0.000523034630674 0.000527351259279 1742675938.83 +UniRef50_I6T7T2 Permease 0.00392482061747 0.000879043425551 -1.22961762827e+12 +UniRef50_P0ACQ6 Hydrogen peroxide inducible genes activator 0.00443159449783 0.00116770140896 -1.31767369245e+12 +UniRef50_Q8D0W8 Sulfate thiosulfate import ATP binding protein CysA 0.000259261559997 0.000437233491368 71849452655.7 +UniRef50_R9SKE9 Radical SAM domain containing protein 0.00308670795166 0.000279971292315 -1.13311403191e+12 +UniRef50_G9ZYG4 ABC transporter, solute binding protein 8.28349461792e-06 1.86651188944e-05 4191189117.28 +UniRef50_UPI0003B488FD histidinol dehydrogenase 4.17337978171e-06 6.66248458354e-06 1004882153.25 +UniRef50_W5X7W3 Preprotein translocase subunit SecA 3.37029915123e-05 6.82188862652e-06 -10852231103.2 +UniRef50_Q8YMN9 All4894 protein 6.81247790327e-05 1.55701436842e-05 -21216951208.1 +UniRef50_P76407 Lipid kinase YegS 0.00185186760525 0.000547872620502 -5.26438777161e+11 +UniRef50_UPI00046E91F0 ATP dependent DNA helicase RuvB 7.69870648316e-06 1.26859993343e-05 2013431324.97 +UniRef50_F2KCE9 Protein tldE, 9.13769319381e-05 0.000149780239319 23578131878.8 +UniRef50_R7CNB5 0.000424838133132 0.00174538209066 5.33119800551e+11 +UniRef50_A4W3H4 Ribosomal RNA small subunit methyltransferase H 1.72877259824e-05 0.00238205449579 9.54685363924e+11 +UniRef50_B4UFY0 Holliday junction ATP dependent DNA helicase RuvA 1.26924115802e-05 8.83077160094e-06 -1558991447.28 +UniRef50_Q089C0 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.19221837037e-05 5.62072362602e-06 -6581099474.78 +UniRef50_UPI0003B490B8 ArsR family transcriptional regulator 0.000104827875076 6.71874375898e-05 -15195906513.3 +UniRef50_UPI0002003580 Rhamnan synthesis F, partial 9.34932539392e-06 1.05091762229e-05 468246012.629 +UniRef50_A2BPB2 S adenosylmethionine synthase 0.0135892131308 0.00741983032761 -2.49065554449e+12 +UniRef50_A5I6S3 0.000216226306108 0.000164674742667 -20811998770.0 +UniRef50_Q1JDC3 SAM dependent methyltransferase 0.00675928954462 0.00534677932484 -5.70247709175e+11 +UniRef50_UPI0002555D97 glutamine ABC transporter ATP binding protein 0.000160097709647 0.000131743554077 -11446920548.2 +UniRef50_A6TC48 Cell division protein ZipA homolog 0.00205184445951 0.00295328780334 3.63923739858e+11 +UniRef50_UPI00021940CD 3 phosphoshikimate 1 carboxyvinyltransferase 4.45028863019e-06 7.3057439033e-06 1152782334.13 +UniRef50_UPI00016C05A2 alpha amylase, catalytic region 4.05949264013e-06 6.26836083283e-06 891747195.254 +UniRef50_Q5JCY6 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.04570743768e-05 1.95754533339e-05 -8430166661.32 +UniRef50_M8VH72 Mechanosensitive ion channel family protein 0.0015737790242 0.000759188153723 -3.28860330566e+11 +UniRef50_F0YHZ1 6.07856218612e-06 3.85281084015e-05 13100280007.9 +UniRef50_Q251B6 Nitrate reductase gamma chain 0.0063023160944 0.00235881727735 -1.59203886462e+12 +UniRef50_UPI00047789D2 hypothetical protein, partial 0.000449010851424 4.7884433868e-05 -1.61939657142e+11 +UniRef50_UPI00046CC1E2 hypothetical protein 0.000134674404318 7.71772579833e-05 -23212303544.6 +UniRef50_D1CT73 Replication protein RepA 0.000272968042264 8.45758248116e-05 -76056250017.9 +UniRef50_Q7W0R9 DNA directed RNA polymerase subunit beta 7.60029842256e-06 6.92035962524e-06 -274499636.265 +UniRef50_B2TQ13 Thiamine phosphate synthase 0.00022248683036 0.00231163709501 8.43415598596e+11 +UniRef50_Q6LQV5 1.63350827495e-05 0.000157920637463 57159825888.2 +UniRef50_U6LL89 3.99386249955e-06 1.749187447e-06 -906202863.975 +UniRef50_I6TNX3 0.00523875341133 0.00288666764683 -9.49565886467e+11 +UniRef50_UPI000371A755 hypothetical protein 4.14615818744e-06 0.000282952112497 1.12557385089e+11 +UniRef50_Q9RY41 Putative GTP cyclohydrolase 1 type 2 0.000334058397217 0.0377857979011 1.51197268222e+13 +UniRef50_B7UYR5 0.000526851875572 0.000460233826278 -26894523995.4 +UniRef50_M9VDI6 0.00027565167683 0.000486423162389 85091035177.1 +UniRef50_Q097V6 NTR 1.67351199363e-05 0.000114500822689 39469213921.3 +UniRef50_P77301 0.00185344238781 0.000606428443274 -5.03434831993e+11 +UniRef50_Q3JVY5 0.000106960636822 0.000354108125162 99776473883.6 +UniRef50_W7CT60 XRE family transcriptional regulator 4.03886623871e-05 5.64007903666e-05 6464292556.23 +UniRef50_UPI0004707E78 hypothetical protein 0.000116165537314 3.40778121796e-05 -33139821966.4 +UniRef50_M5U388 5.5510866732e-06 2.12902135391e-06 -1381529762.86 +UniRef50_UPI0003738D5A hypothetical protein 0.000174775047618 6.98364877408e-05 -42364984363.3 +UniRef50_Q167I1 0.000197397444238 4.69496575001e-05 -60737617708.1 +UniRef50_A3M3F4 Urease accessory protein UreF 0.000302796247737 0.00470890023083 1.77879824695e+12 +UniRef50_Q63060 Glycerol kinase 4.18707507153e-06 4.56472314666e-06 152461162.193 +UniRef50_UPI00042B2928 Chloroplast heat shock protein 70 isoform 1 1.65512041081e-05 9.37853173534e-06 -2895695855.47 +UniRef50_M9VEF8 Glucoamylase S1 S2 0.000283767961447 0.000911239439799 2.53317935752e+11 +UniRef50_A5V2F8 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.000119399629891 3.62130472155e-05 -33583444240.3 +UniRef50_UPI00036140A6 hypothetical protein 2.8346551216e-05 2.55882409651e-05 -1113563696.56 +UniRef50_W8S0L8 Flagellar protein FlgJ, putative 0.000137968433853 0.000115718910595 -8982405571.61 +UniRef50_W0PCE9 5.09321514118e-06 1.37532608598e-05 3496166727.32 +UniRef50_UPI0002EE0684 hypothetical protein 1.2069164233e-05 2.47984120959e-06 -3871327378.78 +UniRef50_B9KPQ7 Ribonuclease BN 0.00257933656796 0.000979770789844 -6.45764333506e+11 +UniRef50_Q9RS22 0.000486033462046 0.0400403389859 1.59685585259e+13 +UniRef50_Q2A1U9 Lipid A export ATP binding permease protein MsbA 3.31853988807e-06 4.57945793233e-06 509048087.672 +UniRef50_Q83QP2 Fructose like permease IIC component 0.00155343295917 0.000369439691128 -4.77992611539e+11 +UniRef50_Q4L8U4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0106294602453 0.00321301323198 -2.99411066932e+12 +UniRef50_H8GX31 9.79096584758e-06 0.00306632169627 1.23395896372e+12 +UniRef50_U1KQC4 Branched chain amino acid transport 3.82393626324e-05 3.90854927715e-05 341593120.339 +UniRef50_UPI0004709E67 membrane protein 1.14674010968e-05 1.34000682525e-05 780241447.249 +UniRef50_UPI000407D6C0 MULTISPECIES 3.60985479097e-05 5.04164491759e-05 5780312441.57 +UniRef50_K9QPP2 Mannose 1 phosphate guanylyltransferase 0.00047469097309 0.0571037799429 2.28618581342e+13 +UniRef50_UPI0003F78AFE serine protease 8.5754265292e-06 4.00950421952e-05 12724855633.5 +UniRef50_UPI0004714520 hypothetical protein 2.06772670667e-05 1.25788225822e-05 -3269441417.48 +UniRef50_E7Q0E7 9.69401391164e-05 1.69128734311e-05 -32307989202.1 +UniRef50_T1UAW5 CobW HypB UreG, nucleotide binding domain protein 0.000118581986021 0.00511122365075 2.01559070665e+12 +UniRef50_Q9UTM8 Putative succinate semialdehyde dehydrogenase C139.05 [NADP] 3.82118012215e-06 6.86081670759e-06 1227138590.08 +UniRef50_UPI0003B349C5 2 hydroxy acid oxidase, partial 1.20057820554e-05 1.8338811223e-05 2556721589.97 +UniRef50_S5SX20 Amino acid ABC transporter ATP binding protein 0.000815351264251 0.000687397337742 -51656570302.9 +UniRef50_Q3IUW9 TraL 0.00666372010756 0.0030291105647 -1.46733647413e+12 +UniRef50_I2B6D3 5.86381905036e-05 9.35600269367e-05 14098373907.2 +UniRef50_G2JEX5 0.000119331714078 0.00714952761314 2.83817635466e+12 +UniRef50_R1DUC8 4.2229519084e-05 0.000102341758949 24268048893.6 +UniRef50_C8S343 2.06150960869e-05 6.69573156264e-06 -5619418268.27 +UniRef50_W0ACQ7 4.55814597666e-06 7.98606375673e-06 1383892473.1 +UniRef50_J4SHG0 PTS system N acetylmuramic acid transporter subunits EIIBC 3.18136347097e-05 5.49032302234e-05 9321553050.08 +UniRef50_UPI00047B5F70 iron ABC transporter ATP binding protein 0.000181664410594 1.18999859333e-05 -68535981479.4 +UniRef50_A6QJP6 Zn binding lipoprotein adcA like protein 0.0132101779348 0.00230858690386 -4.40110607674e+12 +UniRef50_E6SMQ6 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein 0.0348640666911 0.0103510307359 -9.89621342389e+12 +UniRef50_C0M7M5 Thymidylate kinase 0.00375126159729 0.00730833487767 1.43603413349e+12 +UniRef50_Q1J230 TatD related deoxyribonuclease 0.000210103518845 0.0302188966039 1.21149180178e+13 +UniRef50_UPI00041E2B86 hypothetical protein 1.91921822435e-06 2.42544412233e-05 9017003608.66 +UniRef50_S9SAD7 0.000218405197906 2.71388424458e-05 -77216574801.3 +UniRef50_UPI00037D7D9D hypothetical protein 4.45902826129e-06 0.000935053533002 3.75692421243e+11 +UniRef50_UPI0003648262 hypothetical protein 6.83420315356e-05 1.83896522323e-05 -20166388509.4 +UniRef50_B8GAP1 1.1262094893e-05 2.44379317871e-05 5319247039.85 +UniRef50_C3KRZ1 1.16653090434e-05 1.89902066833e-05 2957151063.83 +UniRef50_K0AWK4 Signal transduction response regulator 0.00034485110672 0.000309772767695 -14161555924.0 +UniRef50_F2MTK1 Cysteine synthase 0.00404609803256 0.00165486259673 -9.65371089203e+11 +UniRef50_A5WC68 Short chain dehydrogenase reductase SDR 0.000413215248013 0.000475040276462 24959522663.3 +UniRef50_E3EXD1 Flagellar biosynthesis regulatory protein FlaF 9.92641436033e-05 0.000106292919008 2837602883.65 +UniRef50_UPI0003713DCA hypothetical protein 8.73847807637e-06 0.000498005929809 1.97523274251e+11 +UniRef50_T2H287 0.000535853192817 0.000103104535349 -1.74705943443e+11 +UniRef50_P0ACK4 Putative aga operon transcriptional repressor 0.00386527900076 0.000564228969712 -1.33267440597e+12 +UniRef50_X5ET90 M23 peptidase domain protein 0.000126673150626 0.00191181472931 7.20683561464e+11 +UniRef50_P46333 Probable metabolite transport protein CsbC 0.0121403459608 0.00207179873112 -4.0647960716e+12 +UniRef50_I0TGY1 0.00307319972126 0.00120888942708 -7.5264494342e+11 +UniRef50_P76268 Transcriptional regulator KdgR 0.00448900218816 0.000675749033314 -1.53945709249e+12 +UniRef50_UPI0004410E83 hypothetical protein AURDEDRAFT_58877, partial 3.37857074765e-05 2.12392714251e-05 -5065150196.03 +UniRef50_H8GVU2 ABC transporter, ATP binding protein 0.000124173022652 0.0129759961736 5.18843871562e+12 +UniRef50_B2AGK5 5.12890227549e-05 2.05391591804e-05 -12414097268.3 +UniRef50_UPI000473B328 ABC transporter ATP binding protein, partial 8.79557546893e-05 6.31648074203e-05 -10008409631.6 +UniRef50_Q3IXI2 0.00323927395556 0.00160749233432 -6.58770264707e+11 +UniRef50_W8S015 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 9.89335753291e-06 3.95055436573e-05 11954802920.8 +UniRef50_B9KSK5 0.0013938905445 0.000175262139585 -4.91975241314e+11 +UniRef50_H2PRE9 6.636561201e-05 0.000151399236449 34329117665.9 +UniRef50_K7E9E4 6.36125515652e-05 0.00213885938448 8.37802612588e+11 +UniRef50_A7X538 0.00447993564031 0.000509166733097 -1.60304813465e+12 +UniRef50_B2UUZ0 RNA pyrophosphohydrolase 0.000381298978638 0.00310228041941 1.09849359784e+12 +UniRef50_UPI00036109FB hypothetical protein 4.04573095656e-05 3.84114796426e-05 -825926645.071 +UniRef50_UPI00037C9F7B hypothetical protein 1.90335792403e-06 4.55954634524e-06 1072335860.74 +UniRef50_UPI00037F00C2 hypothetical protein 8.74258589778e-06 5.63583277875e-06 -1254234358.3 +UniRef50_UPI0003A983A5 amidophosphoribosyltransferase 8.17854053128e-06 6.03716547012e-05 21071000671.9 +UniRef50_B8GWS6 DNA polymerase III subunit alpha 1.11023881397e-05 5.60117892858e-06 -2220905665.96 +UniRef50_W1JGI9 0.000116744393623 4.91756503465e-05 -27278330822.4 +UniRef50_D2T8K9 Aromatic amino acid transaminase 0.000160177930206 0.0118484525728 4.71869990448e+12 +UniRef50_UPI00046FDA71 acyl transferase 0.00019679621671 1.90938039666e-05 -71740644678.2 +UniRef50_M9VAR4 Response regulator MprA 0.000215706279348 0.00881764770999 3.47270931324e+12 +UniRef50_A0A016QSU1 5.61820336645e-05 0.00815484568749 3.26952989883e+12 +UniRef50_UPI000379C227 dehydrogenase 3.62774354659e-05 2.08413466472e-05 -6231738478.22 +UniRef50_A6QIG0 GntR family regulatory protein 0.0105588467751 0.00325332184047 -2.94933006498e+12 +UniRef50_I6SY16 0.000240760195392 6.04125547655e-05 -72808555635.1 +UniRef50_D2PY67 ABC transporter related protein 0.000301988791085 0.00680960494108 2.62720449718e+12 +UniRef50_P22344 0.0351935426953 0.00642975647167 -1.16122934698e+13 +UniRef50_H4CJE2 Bacterial regulatory s, gntR family protein 0.00389415190696 0.000456675317307 -1.38775148182e+12 +UniRef50_UPI00021A48D6 PREDICTED 8.32206896854e-05 8.6570499113e-05 1352359172.71 +UniRef50_A6VAY7 Membrane protein, putative 0.00183908970067 0.00254914428892 2.86657750626e+11 +UniRef50_P17802 A G specific adenine glycosylase 0.00541156774029 0.00141551153993 -1.61325692521e+12 +UniRef50_Q8ET44 2 hydroxypenta 2,4 dienoate hydratase 0.00815080018727 0.00491796919772 -1.30513354178e+12 +UniRef50_G2JI07 Transcriptional regulator 0.000784345074076 0.00361623073966 1.14326699434e+12 +UniRef50_Q2NFZ8 50S ribosomal protein L13 0.00189180433271 0.0274751738243 1.0328320207e+13 +UniRef50_P47385 Ribonuclease J 4.55987292977e-06 3.11483224045e-06 -583380658.922 +UniRef50_C1CA92 Mobile genetic element 2.6428768201e-05 0.00012287974001 38938440905.8 +UniRef50_UPI00037DF719 hypothetical protein, partial 5.76331182378e-05 2.03944170625e-05 -15033720634.7 +UniRef50_Q8DUT9 0.00551095360208 0.00208127453603 -1.38460352586e+12 +UniRef50_UPI00037DF44A molybdate ABC transporter permease 4.24050906562e-05 4.48225756857e-05 975968372.286 +UniRef50_Q21RX2 0.000381076924197 0.000107670793581 -1.1037741e+11 +UniRef50_A0A024HLH2 9.21628968707e-05 2.31199679607e-05 -27873477653.0 +UniRef50_A3X988 0.00023671967473 1.80090402131e-05 -88296167035.8 +UniRef50_C4ZT30 Endoribonuclease SymE 0.000666157507638 0.0010361989656 1.49390277499e+11 +UniRef50_K1LFR3 1.87187419284e-05 9.06098124848e-05 29023307386.3 +UniRef50_A0Q196 DNA gyrase, A subunit 0.000454878417847 0.000705479092612 1.01170567619e+11 +UniRef50_P25748 HTH type transcriptional regulator GalS 0.00906802042389 0.00125388142012 -3.15466380609e+12 +UniRef50_D6AT21 0.000121900749898 9.99867107053e-05 -8846966537.59 +UniRef50_UPI000367E513 hypothetical protein 0.000142653801834 3.14117731554e-05 -44909772070.9 +UniRef50_Q5HGH1 Isoprenyl transferase 0.00639455120327 0.0030854806892 -1.33591237339e+12 +UniRef50_A0A058ZPK5 2.86432061453e-05 5.89014362011e-05 12215618783.8 +UniRef50_UPI000466E6FA 3 oxoacyl ACP synthase, partial 3.39841490146e-05 3.26659521527e-05 -532172249.244 +UniRef50_O26091 RlpA like lipoprotein 0.000340685847228 0.00355536265083 1.29780447413e+12 +UniRef50_UPI000380CA6B hypothetical protein 4.68509779545e-05 4.07735366546e-05 -2453537631.36 +UniRef50_A8MM09 Diguanylate cyclase 0.000477780525616 0.000165443532329 -1.26094276996e+11 +UniRef50_P33772 N acetylmuramoyl L alanine amidase AmiA 0.0017278024531 0.000619934767226 -4.47259779851e+11 +UniRef50_UPI00036F5D2F hypothetical protein, partial 8.00072190209e-06 3.48437832804e-05 10836873279.8 +UniRef50_UPI000416A546 hypothetical protein 3.22802967201e-05 9.06029141938e-06 -9374201081.4 +UniRef50_B5FV81 KLLA0D19929p 0.00264584140756 0.00522324190859 1.04052821053e+12 +UniRef50_Q6MIR4 NADH quinone oxidoreductase subunit B 1.03992571282e-05 3.35844194903e-05 9360134559.52 +UniRef50_I0C718 Integral membrane protein 0.01477288785 0.000477601140485 -5.77118266752e+12 +UniRef50_UPI0004640768 hypothetical protein 5.40357463613e-05 2.45202074406e-05 -11915785258.7 +UniRef50_UPI0003B6DF5B hemin receptor 1.15137464635e-05 5.52635647935e-05 17662338530.5 +UniRef50_D4X8Q2 ParB like protein 4.16891923588e-05 1.54690481469e-05 -10585393975.7 +UniRef50_G7EHM5 0.00010656326808 0.000195590001222 35941184650.3 +UniRef50_P45563 Purine nucleoside phosphorylase 2 0.0028885442046 0.000218753114953 -1.07782742491e+12 +UniRef50_B6TQL9 6.96584544903e-06 0.000151517577573 58357308107.7 +UniRef50_Q9C550 2 isopropylmalate synthase 2, chloroplastic 1.15794674952e-05 5.14381570425e-06 -2598151602.33 +UniRef50_A5EYT7 NH dependent NAD(+) synthetase 1.44185027218e-05 0.000106878215892 37327120815.1 +UniRef50_I8HVI3 0.00131681158902 3.62998440141e-05 -5.16958305107e+11 +UniRef50_R7BPR1 D amino acid transaminase 0.000358628526425 0.00221779501072 7.50568324246e+11 +UniRef50_P59872 Acetyl coenzyme A synthetase 0.000273613063041 0.0468117745856 1.87880268941e+13 +UniRef50_UPI000474B8D5 ABC transporter ATP binding protein 2.62477395065e-05 1.51588743181e-05 -4476710952.23 +UniRef50_UPI0004772A28 phospholipase 3.32334991836e-05 4.04094670606e-05 2897026290.97 +UniRef50_UPI0003806FFB hypothetical protein 0.000203647012719 3.11288361973e-05 -69647704898.0 +UniRef50_X5PNE7 0.00139836171138 0.000278010385417 -4.52299578547e+11 +UniRef50_C5C445 YCII related protein 3.86717879019e-05 1.93713029451e-05 -7791842620.64 +UniRef50_S5XXL2 3.22692709622e-06 6.46454656554e-06 1307066709.82 +UniRef50_Q9LCJ9 FmtB 0.000670591900274 0.000121159347838 -2.21812663714e+11 +UniRef50_UPI00041BC991 mechanosensitive ion channel protein MscL 1.33203356731e-05 1.98705563716e-05 2644404476.23 +UniRef50_A0A017HRC2 0.00026345740223 2.74169289687e-05 -95292435597.8 +UniRef50_UPI00037F91DA hypothetical protein 2.52918923461e-06 1.17066579213e-05 3705056729.02 +UniRef50_Q1GDV5 4.50863202773e-05 6.20203134595e-05 6836460851.12 +UniRef50_F8UHK9 IS4 family transposase 1.4757032753e-05 3.03000379087e-05 6274901915.48 +UniRef50_A2SD53 8 amino 7 oxononanoate synthase 2.78247957257e-05 5.42821088302e-06 -9041776138.0 +UniRef50_UPI000479CA29 ABC transporter permease 5.14586969163e-06 5.59848395694e-05 20524316004.0 +UniRef50_Q5SJ45 Valine tRNA ligase 2.01663350434e-06 4.20065913411e-06 881717947.746 +UniRef50_P37127 Protein AegA 0.00559429278276 0.00384082208818 -7.07897636907e+11 +UniRef50_P45537 0.00230285736921 0.000480143836312 -7.35851820442e+11 +UniRef50_UPI0003730FF4 hypothetical protein 2.0507725822e-06 6.87904131277e-05 26943611875.7 +UniRef50_UPI0003792FEF thioredoxin, partial 0.000241897474492 7.1392197663e-05 -68835072590.9 +UniRef50_UPI00039C7ED5 UDP N acetylglucosamine 1 carboxyvinyltransferase 8.46256784066e-06 1.33416252064e-05 1969735331.32 +UniRef50_P0ACN0 0.00165098908463 0.000546882787401 -4.457412611e+11 +UniRef50_Q83GA7 Oligoribonuclease 4.64134230695e-05 1.8172971284e-05 -11401016935.1 +UniRef50_UPI00037DBB4D hypothetical protein 4.94693563624e-06 7.82835838134e-06 1163265721.23 +UniRef50_E1VBT7 Na H(+) antiporter NhaD 0.0129402022105 0.00213583080506 -4.36185732091e+12 +UniRef50_Q3M8C8 Lysine tRNA ligase 3.70186612876e-06 1.46029912792e-05 4400917995.07 +UniRef50_UPI00037733AF hypothetical protein, partial 6.90420791812e-05 0.000196108699003 51298353704.9 +UniRef50_UPI000364EBAA hypothetical protein 1.13175177822e-05 3.01349704651e-05 7596836564.2 +UniRef50_A4EBS8 5.85008665216e-05 1.68311918781e-06 -22938021830.8 +UniRef50_D8LTU3 0.000218438073365 2.36353112865e-05 -78644265549.6 +UniRef50_Q5HEZ3 Putative fluoride ion transporter CrcB 1 0.0039885252192 0.00147963431839 -1.01287004421e+12 +UniRef50_W2EZB5 6.44563408774e-06 9.85697653249e-06 1377200806.82 +UniRef50_B1YHH7 Na+ H+ antiporter MnhB subunit related protein 7.97976087521e-06 7.49897557177e-05 27052757223.0 +UniRef50_F0P908 Transcriptional regulator, GntR family 0.00521188900623 0.0015092310375 -1.4948084587e+12 +UniRef50_V9W7G7 2.97935388736e-05 0.000182954545271 61832977779.4 +UniRef50_A0A038GMN1 0.000413305827211 0.000256425503788 -63334511703.9 +UniRef50_U4QJA4 Extracellular ligand binding receptor 0.000695194900568 0.00200064694203 5.27027008835e+11 +UniRef50_UPI00045E1D0A PREDICTED 3.02749735265e-06 7.14136420501e-06 1660818531.12 +UniRef50_A9KHS7 Radical SAM domain protein 8.57273252495e-05 0.000282527757878 79450749665.2 +UniRef50_Q9KWU8 DNA directed RNA polymerase subunit alpha 1.66600072268e-05 0.0001094389646 37456003617.4 +UniRef50_P46707 Probable acetyl CoA acetyltransferase 6.26475621396e-06 6.09770284373e-05 22088015691.6 +UniRef50_D9X888 Integral membrane protein 1.42132163247e-05 6.13919298622e-05 19046625603.0 +UniRef50_Q3IV17 Putative threonine efflux protein 0.00991865729053 0.00238140564875 -3.04288098027e+12 +UniRef50_P31126 0.00319862055069 0.000832040179338 -9.55417537121e+11 +UniRef50_UPI000475237F hypothetical protein 0.000154174154842 5.68930370085e-05 -39273581042.9 +UniRef50_Q6MBY2 Protoheme IX farnesyltransferase 5.4557248113e-06 1.59576093072e-05 4239739643.61 +UniRef50_UPI0002558CFD HD superfamily hydrolase like protein, partial 0.000185163183024 0.000291960368577 43115334356.6 +UniRef50_UPI00016C46AD probable chromosome partitioning protein parB 7.56617608243e-06 0.000592340631102 2.36080623481e+11 +UniRef50_UPI00037F23A8 hypothetical protein 3.81823609609e-05 4.05665449352e-05 962524327.652 +UniRef50_B2ICS4 Putative DNA topology modulation protein FlaR 1.08381131848e-05 2.174523502e-05 4403338930.31 +UniRef50_E3A1I0 Putative transcriptional accessory protein 0.000513718119008 0.000697316913152 74121086206.5 +UniRef50_B1GZT3 Chorismate synthase 1.63136524433e-05 0.000158076098603 57231239135.6 +UniRef50_UPI0002B47979 PREDICTED 6.35580399989e-06 4.18161164959e-05 14315763301.6 +UniRef50_Q02C42 Allantoinase 9.99641442404e-06 3.97076371003e-05 11994785192.1 +UniRef50_A0A011PY56 Putative acetyltransferase 0.000255571688864 5.1126970555e-05 -82536841600.2 +UniRef50_UPI0003B33483 MULTISPECIES 4.9594058738e-05 2.7088950413e-05 -9085588399.54 +UniRef50_A4WVT7 Lytic transglycosylase, catalytic 0.00354223458085 0.00026134221699 -1.32453650837e+12 +UniRef50_A6FVD1 4.71569952194e-05 2.46568339008e-05 -9083591232.35 +UniRef50_W4YP60 3.62713540647e-05 8.74686114986e-05 20668961087.1 +UniRef50_W4YP61 2.9119806403e-05 2.61324401648e-06 -10701024507.5 +UniRef50_A0A024HY78 7.33608045297e-06 7.29619251054e-05 26493958805.8 +UniRef50_A0A024HY79 4.28769904659e-06 6.44825016876e-06 872241000.964 +UniRef50_L6T5N5 CRISPR associated helicase Cas3 1.99475568817e-05 3.18868695041e-05 4820047017.5 +UniRef50_UPI000368B121 hypothetical protein 6.66846154536e-06 5.97946071645e-05 21447676917.5 +UniRef50_Q2FDY2 Putative NADH nitroreductase SAUSA300_2462 0.0163025235974 0.00437974558027 -4.81337179444e+12 +UniRef50_UPI000471156C MULTISPECIES 0.000157818309519 1.55737033255e-05 -57425893057.7 +UniRef50_UPI0003683BB9 hypothetical protein 7.64237766151e-06 0.00089575464249 3.58541819674e+11 +UniRef50_Z9JK63 Transposase 6.03336371628e-06 0.000908198255688 3.64215037697e+11 +UniRef50_A0A023Y025 Multidrug transporter 0.00584173558641 0.001378610379 -1.80181841494e+12 +UniRef50_UPI000474A653 guanine permease 2.25674243247e-05 5.92086387479e-06 -6720420729.89 +UniRef50_D0K5S8 Ftsk spoiiie family protein 0.00854272438723 0.000912030060158 -3.08060493899e+12 +UniRef50_UPI00036ED578 hypothetical protein, partial 4.36651411896e-05 4.2235817148e-05 -577035655.372 +UniRef50_J7N103 Cell wall surface anchor family protein 1.77054004094e-05 8.71998145347e-05 28055747774.7 +UniRef50_P77828 10 kDa chaperonin 1 0.00040300995251 0.0100291862261 3.88620548811e+12 +UniRef50_R5QB36 0.0060207087997 0.00518220577343 -3.38513961294e+11 +UniRef50_UPI00040C1A22 succinate semialdehyde dehydrogenase 9.88462858088e-06 2.81851516231e-05 7388145724.81 +UniRef50_O54151 3 oxoacyl [acyl carrier protein] synthase 3 protein 3 4.45758900914e-06 7.47580764492e-06 1218491900.97 +UniRef50_E3DNN6 Binding protein dependent transport systems inner membrane component 0.000136605303564 0.0563983677778 2.27135639203e+13 +UniRef50_Q46834 Putative type II secretion system C type protein YghF 0.00413750315515 0.00193058979619 -8.90958004884e+11 +UniRef50_UPI0003677725 hypothetical protein 1.45210897562e-05 2.09982697464e-05 2614917045.98 +UniRef50_R9K990 0.000141367985016 7.68845884024e-05 -26032738513.2 +UniRef50_Q6GJM8 0.0755007529771 0.01629437357 -2.39023419106e+13 +UniRef50_Q9LXS6 Citrate synthase 2, peroxisomal 9.69541613356e-06 4.03679563109e-05 12382880864.0 +UniRef50_R6ND25 N acetylmannosamine kinase 0.000985350082675 0.00164154672689 2.64914637708e+11 +UniRef50_G2JIZ7 Methionine import ATP binding protein MetN 0.000438987184999 0.00327827958547 1.14625718411e+12 +UniRef50_A5IQI8 0.0125731150065 0.00442567338981 -3.28922216101e+12 +UniRef50_Q9I1X7 Multifunctional non homologous end joining protein LigD 9.36179702101e-05 0.000238244598237 58387544502.8 +UniRef50_C9WZF0 0.000996210958277 0.000832357385113 -66149698195.8 +UniRef50_L1ITB2 0.000206659019779 6.49339461628e-05 -57216151381.0 +UniRef50_UPI00036D7E16 hypothetical protein 5.24416439317e-06 6.60785268229e-06 550537696.655 +UniRef50_G2U6X6 0.000201603468197 0.000109936523364 -37007070509.0 +UniRef50_Y1DKJ6 Alpha glucosidase yihQ 0.00224037425686 0.000481869487784 -7.09929954558e+11 +UniRef50_UPI0003762D52 hypothetical protein 2.36734195231e-05 1.6921106725e-05 -2725991536.79 +UniRef50_P78285 Lysozyme RrrD 0.000845679486144 0.00234885877881 6.06851926535e+11 +UniRef50_O26565 0.00297764657233 0.000436386296078 -1.02593795829e+12 +UniRef50_Q8XAS8 Ferrous iron permease EfeU 0.0033069104539 0.000232228077477 -1.24128700596e+12 +UniRef50_A5UMC5 Predicted metal dependent membrane protease 0.00395799030476 0.000711609072484 -1.31060394105e+12 +UniRef50_Q05762 Bifunctional dihydrofolate reductase thymidylate synthase 1 9.39046864504e-06 1.98891741525e-05 4238456246.98 +UniRef50_P76065 0.00144194394776 0.000913545328939 -2.13321006598e+11 +UniRef50_UPI0003F08F9D PREDICTED 1.41126510563e-05 2.10916002321e-05 2817487423.61 +UniRef50_Q2NBI6 0.000289726178842 8.42070123898e-05 -82970609500.4 +UniRef50_E3A6K9 5.35868456969e-05 4.02338835485e-05 -5390754678.58 +UniRef50_UPI00031A8C2B hypothetical protein 5.2269522121e-05 3.28552967736e-05 -7837761012.08 +UniRef50_Q8P013 0.000235142866621 0.00023455441151 -237566549.467 +UniRef50_A0LH56 Bifunctional protein PyrR 1.97230956949e-05 7.88110498961e-05 23854532201.8 +UniRef50_C9A4C5 Universal bacterial protein YeaZ 0.00475317918058 0.00300126290854 -7.07270097453e+11 +UniRef50_UPI00036C9E20 hypothetical protein 2.35852343077e-05 2.48210644939e-05 498919811.511 +UniRef50_P0AEA0 Curli production assembly transport component CsgF 0.00185648846977 0.000866454880764 -3.9968870896e+11 +UniRef50_UPI00035005CE PREDICTED 0.000242659520452 0.000363094309672 48621002309.2 +UniRef50_E2CI08 Membrane bound lytic murein transglycosylase A 0.000256230695123 0.000336626033459 32456584648.0 +UniRef50_UPI000299DD27 signal recognition particle protein, partial 1.3826971185e-05 7.07536180026e-05 22981985888.8 +UniRef50_P32701 Putative cyclic di GMP phosphodiesterase YjcC 0.00115728853815 0.00102980320599 -51467393013.9 +UniRef50_G9RRR3 1.11519059968e-05 0.000349501736738 1.36595978689e+11 +UniRef50_UPI00047ACFC0 glutamyl tRNA amidotransferase 1.29682592136e-05 5.49689336837e-06 -3016282075.69 +UniRef50_J1CAV3 0.0004438756278 8.72091777161e-05 -1.43990622688e+11 +UniRef50_Q5HL30 Transcriptional regulator, LysR family 0.00785878644397 0.00256951626669 -2.13534327721e+12 +UniRef50_UPI00046AB4F5 hypothetical protein 0.000371846177253 2.06689908995e-05 -1.4177453956e+11 +UniRef50_A6LTS7 Stage V sporulation protein E 0.000124582834604 0.00124398430982 4.51916112147e+11 +UniRef50_R7EZW8 6.66559876749e-05 5.44434779106e-05 -4930340056.2 +UniRef50_U8X5K1 7.54222420008e-06 0.00310507668615 1.25051267331e+12 +UniRef50_D7A419 ABC transporter related protein 0.00269122528164 0.00139676538112 -5.22589346649e+11 +UniRef50_Q2NRT0 0.00059968629877 0.000138537938329 -1.86171252037e+11 +UniRef50_Q0AW39 Imidazoleglycerol phosphate dehydratase 1.0143461962e-05 1.53887614515e-05 2117591770.97 +UniRef50_J4J838 Proline glycine betaine ABC transporter periplasmic protein 5.39796058107e-05 7.94777510129e-06 -18583614931.5 +UniRef50_Q8CUB7 0.037625246692 0.0112208022931 -1.06597982228e+13 +UniRef50_Q9RV62 NADH pyrophosphatase 0.000141028389365 0.0311817471377 1.25315190711e+13 +UniRef50_Q52664 Glutamate glutamine aspartate asparagine transport system permease protein BztB 0.00901788248812 0.00299393813178 -2.43194025876e+12 +UniRef50_A3MLT7 Histidine ammonia lyase 0.000813483937471 0.0078150551855 2.82662023177e+12 +UniRef50_M4WY62 Non specific serine threonine protein kinase 5.83741219845e-05 7.64079444229e-05 7280475418.27 +UniRef50_UPI0003123F96 hypothetical protein 2.077372337e-05 2.09310507443e-05 63514991.6289 +UniRef50_UPI00036BA2FA hypothetical protein 1.87425802593e-05 0.000587294078934 2.29531216927e+11 +UniRef50_UPI0004279204 ABC transporter substrate binding protein 9.93880033057e-06 4.8305296426e-05 15489025283.6 +UniRef50_I0C5Y5 0.0127271333544 0.0170454250119 1.74334733353e+12 +UniRef50_V9VWJ8 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 7.30273036311e-05 4.63605909159e-05 -10765679160.5 +UniRef50_W4TIC1 Lysophospholipase L2 1.37000918514e-05 7.36587209376e-05 24206034337.2 +UniRef50_UPI000475C78C hypothetical protein 4.05272102845e-06 4.51399431638e-06 186221686.797 +UniRef50_UPI000478596D hypothetical protein, partial 5.46589816024e-05 0.000179831154806 50533542357.8 +UniRef50_UPI0004776897 50S ribosomal protein L21 1.75735937399e-05 0.000427376557539 1.65442485334e+11 +UniRef50_Q57725 Probable acetolactate synthase large subunit 0.00317878869786 0.000755076734394 -9.78482261943e+11 +UniRef50_I0DU68 Pirin like protein 6.40012533574e-06 9.73732670135e-06 1347269143.36 +UniRef50_G4RE73 Glutaredoxin 0.00321116601003 0.00195250714179 -5.0813603059e+11 +UniRef50_B5EZL8 UPF0208 membrane protein YfbV 0.00319075492974 0.000473770115279 -1.09688011075e+12 +UniRef50_UPI0003792331 hypothetical protein 0.000122042895546 2.60174489607e-05 -38766651151.2 +UniRef50_P63482 Alanine racemase 2 0.0194382773403 0.00493593055764 -5.85477535998e+12 +UniRef50_U9FP56 0.000345281634012 0.000271763839138 -29680035955.4 +UniRef50_B4UAT5 MJ0042 family finger like protein 1.93000214367e-05 0.000140330047224 48861306615.6 +UniRef50_A7FBU7 0.000612830389931 0.0091483827415 3.44590722733e+12 +UniRef50_Q8FDG8 L tartrate dehydratase subunit alpha 0.00474467535037 0.000147448845305 -1.85595675441e+12 +UniRef50_G5Q5Z8 Outer membrane protein NlpB 0.0016344332665 0.000649697949665 -3.97549731468e+11 +UniRef50_A5IPG6 0.0137905195811 0.00246252002941 -4.57325242921e+12 +UniRef50_UPI0002ADAB72 0.000357916926859 0.000107403963639 -1.01135157392e+11 +UniRef50_A5IPG3 0.0140582363333 0.000300831957759 -5.55403296873e+12 +UniRef50_D0LXH2 1.12636842298e-05 7.26125288652e-05 24767281414.3 +UniRef50_A6M239 PTS system fructose subfamily IIA component 0.000268354968373 0.000420878914765 61575788837.7 +UniRef50_Q6MBM7 Succinyl CoA ligase [ADP forming] subunit beta 8.02649982762e-06 1.88494142906e-05 4369343380.81 +UniRef50_UPI000463ADD2 hypothetical protein 3.13657862573e-06 3.92441346315e-05 14577063449.1 +UniRef50_P24735 Beta lactamase 0.00159601701204 0.000224575441206 -5.53667791625e+11 +UniRef50_UPI00036198F2 hypothetical protein 2.11409597385e-06 1.74394885941e-05 6187049064.53 +UniRef50_UPI0003B66134 deoxyguanosinetriphosphate triphosphohydrolase 7.86416237334e-05 2.10119971713e-05 -23265787438.2 +UniRef50_Q4KJK0 Arginine tRNA ligase 0.00645536126859 0.00196814494161 -1.81154429554e+12 +UniRef50_A5UMU3 Glycosyltransferase, GT2 family 0.00466841516088 0.000531396657464 -1.67016513676e+12 +UniRef50_Q8XE72 2 dehydropantoate 2 reductase 0.00502073030654 0.00109589483159 -1.58450424438e+12 +UniRef50_B5YKP8 Phenylacrylic acid decarboxylase 0.000846406121886 0.000324523851863 -2.10690276624e+11 +UniRef50_Q0SR44 Cell division topological specificity factor 0.000477830365635 0.0011734438617 2.80827704499e+11 +UniRef50_S4X915 Beta hemolysin 0.00343307767155 0.00089489910665 -1.0246938336e+12 +UniRef50_W6M0A7 0.000192414723598 0.00325572043706 1.23669410751e+12 +UniRef50_G0DV19 Efflux ABC transporter, permease protein 0.00024066891731 0.00457644486667 1.75040595671e+12 +UniRef50_UPI000362EEF4 hypothetical protein 2.58021666945e-06 5.27664686068e-06 1088581957.12 +UniRef50_Q0A4X2 DNA polymerase IV 3.56584603617e-06 8.80782033673e-06 2116249351.39 +UniRef50_UPI0003736343 hypothetical protein, partial 2.87496441029e-05 9.98253651381e-05 28694140779.1 +UniRef50_U5MKI7 Subtilisin like serine protease 0.000317632099203 0.00152716326649 4.88302574851e+11 +UniRef50_Q2GEH7 Adenylosuccinate synthetase 3.83765424865e-06 1.31342562849e-05 3753152324.17 +UniRef50_I1Q3T9 7.45960385152e-05 0.000127305251015 21279355900.9 +UniRef50_R5PZK9 Aldo keto reductase 0.000299371166668 0.0015931120747 5.22299080558e+11 +UniRef50_Q4UUD9 Flagellar biosynthesis switch protein 0.000852955945528 0.000212968777781 -2.58370673145e+11 +UniRef50_Q9I3P5 0.000145560149942 0.000183807077915 15440754165.3 +UniRef50_A4WCP8 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 0.00244889870577 0.000262893209369 -8.82517244201e+11 +UniRef50_A9LZI0 ABC transporter ATP binding protein 0.000183542620181 0.00240146314219 8.95401731681e+11 +UniRef50_F4FKW9 0.005389676597 0.00242726059064 -1.1959636947e+12 +UniRef50_B5EZK0 NADH quinone oxidoreductase subunit K 6.16442237463e-05 8.22490148817e-05 8318407030.58 +UniRef50_U5MVT4 Nodulation protein NolG 0.000624701597215 0.00248638227097 7.51583333388e+11 +UniRef50_A5G6M1 Tryptophan synthase alpha chain 1.46743032333e-05 8.24713619239e-06 -2594726204.62 +UniRef50_UPI000372C358 hypothetical protein 4.38937431636e-06 1.17332775682e-05 2964823862.59 +UniRef50_K7RNR2 Succinate dehydrogenase subunit C 0.00117113257725 0.00761459230597 2.60130376263e+12 +UniRef50_M1CWG1 2.34057918923e-05 0.000209732892648 75222537065.8 +UniRef50_P28304 Quinone oxidoreductase 1 0.00388343496321 0.000794674597738 -1.24697046289e+12 +UniRef50_T0V3S5 8.55779831705e-05 1.5291291665e-05 -28375599875.5 +UniRef50_UPI0003291247 PREDICTED 1.20396535447e-05 0.000880102260044 3.5044752657e+11 +UniRef50_Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 2.74739080526e-06 4.4004260012e-06 667350593.624 +UniRef50_Q46832 Putative type II secretion system M type protein YghD 0.00474062141734 0.00191710303513 -1.13988901937e+12 +UniRef50_UPI000378EA8F hypothetical protein 1.77333219193e-06 2.82764477725e-06 425638928.564 +UniRef50_I1ZM50 Cytosine specific methyltransferase 0.000813507857067 0.00486354440158 1.63504945256e+12 +UniRef50_D8JGN7 Surface antigen family protein 0.000129127810593 0.00618591702472 2.44520013091e+12 +UniRef50_UPI0002BA2677 hypothetical protein, partial 1.9838755858e-05 0.000655513760179 2.56629799854e+11 +UniRef50_A6M2Z1 Membrane protein containing C terminal PDZ domain 0.000102392221207 0.000961970691309 3.47022376594e+11 +UniRef50_A0JW97 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 0.000188307819643 0.000348748837992 64772007940.2 +UniRef50_UPI000255C63D FhuG, partial 0.00012800735402 3.39194000109e-05 -37984461622.5 +UniRef50_UPI0002653F14 PREDICTED 4.25237102377e-05 4.65983926492e-07 -16979220218.2 +UniRef50_UPI0003B5B2C4 NADH dehydrogenase subunit L, partial 9.34724069736e-06 7.78127528894e-06 -632199451.936 +UniRef50_X7EC41 0.000118063471479 0.000379988849641 1.0574248935e+11 +UniRef50_U5W2Y7 1.14247247241e-05 7.7444781128e-06 -1485760718.69 +UniRef50_B9KUD4 0.00108890189092 0.0015542984484 1.87886301313e+11 +UniRef50_F0RMA7 Polyphosphate 0.000448502806262 0.0500165458335 2.00112272384e+13 +UniRef50_R6CQ31 1.84534311822e-05 0.000129756681949 44934488179.1 +UniRef50_U6LIN1 TPR domain containing protein, putative 2.37272158289e-06 3.20404851566e-06 335616884.288 +UniRef50_I0THL6 Branched chain amino acid transport protein AzlD 0.000250918091595 8.21251801589e-05 -68143769668.7 +UniRef50_Q2FX83 0.00295250778181 0.000258463341208 -1.08761880031e+12 +UniRef50_Q2FX82 0.00600738176552 0.000282186342579 -2.31133164829e+12 +UniRef50_Q87VA4 Glutathione synthetase 0.00250477832542 1.47756337913e-05 -1.00524464238e+12 +UniRef50_Q92W60 Ribose import ATP binding protein RbsA 2 2.85111657138e-05 1.43370311099e-05 -5722272075.79 +UniRef50_G7LXK1 0.000382028850527 0.00101946315988 2.57340052884e+11 +UniRef50_Q8ZP50 Outer membrane protein W 0.00214371774459 0.00265284403128 2.05540529619e+11 +UniRef50_A9M0L0 ATP dependent RNA helicase HrpA 8.21669762549e-05 0.00291963578525 1.14552097785e+12 +UniRef50_W4TIL7 0.000431371003163 0.00335523347021 1.18039915778e+12 +UniRef50_E1HJW0 Pertactin 0.00228474159094 0.000276362630948 -8.10807231729e+11 +UniRef50_U5US72 0.00160775083463 0.0113542326449 3.93477430959e+12 +UniRef50_UPI00036A56E1 hypothetical protein 2.7243295977e-05 9.33061411336e-06 -7231569481.66 +UniRef50_S9SLK2 9.9059743932e-05 2.9423694168e-05 -28112927820.2 +UniRef50_UPI0004203E19 hypothetical protein 8.30973138143e-06 1.08022290303e-05 1006251887.23 +UniRef50_UPI0003C154AA PREDICTED 1.8195759318e-06 2.75172738936e-05 10374476013.4 +UniRef50_G7U653 0.000146123608583 0.00168723475994 6.22165483365e+11 +UniRef50_C6W3G1 Aminotransferase class I and II 0.00058010425734 0.00277925056774 8.87822352068e+11 +UniRef50_UPI00042431D1 hypothetical protein 2.08164410094e-05 7.53906005341e-06 -5360241623.72 +UniRef50_T2HSJ7 F pilus assembly protein 8.75712949714e-05 2.40291068814e-05 -25652761082.3 +UniRef50_I0C7C9 dTDP glucose 4,6 dehydratase 0.0106241732942 0.00110387198207 -3.84346246694e+12 +UniRef50_R7PW61 Type IV leader peptidase 0.000518067696928 0.00107603825425 2.2525956106e+11 +UniRef50_E8SGS1 0.0118104355609 0.00184705884496 -4.02233744461e+12 +UniRef50_Q8DUK2 0.0108637471843 0.00300698495088 -3.17187132695e+12 +UniRef50_A8GY42 ATP synthase subunit alpha 4.03695507321e-06 1.0537664197e-05 2624416045.95 +UniRef50_Q6FUF3 GMP synthase [glutamine hydrolyzing] 3.01478731712e-05 3.14852876128e-05 539930621.995 +UniRef50_G4Q6V2 Carbamoyl phosphate synthase large chain 0.0053950695308 0.00909900178838 1.49532290475e+12 +UniRef50_K4PQ99 Clostridial hydrophobic W 0.000370043538567 0.000180502254133 -76520142459.1 +UniRef50_UPI00035C4E3D hypothetical protein 8.62094795342e-06 0.000166166518087 63603079964.6 +UniRef50_P13570 Bacterioferritin 0.000121118115786 4.95380389212e-05 -28897755416.6 +UniRef50_G7M0S1 Lysine tRNA ligase 0.000498355565453 0.000534690105858 14668699836.4 +UniRef50_R9YJ81 Thioester reductase domain protein 0.0139008014083 0.00316885958878 -4.33261660827e+12 +UniRef50_UPI0003B42AEE C4 dicarboxylate ABC transporter 1.21380618432e-05 5.35186028148e-05 16705832186.6 +UniRef50_B3QR98 DNA directed RNA polymerase subunit alpha 1.70546956108e-05 5.2309565297e-05 14232823518.2 +UniRef50_C4LJ74 Polyribonucleotide nucleotidyltransferase 2.43187919393e-06 7.08024576682e-06 1876602627.35 +UniRef50_UPI0003B4EE97 helicase SNF2 1.57710266133e-06 0.000145822703997 58233719351.9 +UniRef50_UPI00036D95BA hypothetical protein 1.24205654077e-05 1.57224219241e-05 1332999994.01 +UniRef50_B4RQR5 MafB5 7.73008850942e-05 0.0112981725091 4.53000357019e+12 +UniRef50_S2WYG7 4.4949093766e-06 1.39708656945e-05 3825559848.6 +UniRef50_Q2NFU2 Glutamate tRNA ligase 0.00417260545942 0.00025223600293 -1.58270125793e+12 +UniRef50_C5N0Q7 Transition metal uptake transporter, Ni2+ Co2+ transporter family 0.0119055975031 0.00189995209721 -4.03940183344e+12 +UniRef50_P0A084 Peptide methionine sulfoxide reductase MsrA 1 0.00359161530083 0.00157319561264 -8.14860796917e+11 +UniRef50_J9P4P6 0.000187498079265 0.000366771152395 72374739550.6 +UniRef50_F0Y4U2 0.000248090074845 0.000406830410055 64085421287.2 +UniRef50_UPI0002652BE7 PREDICTED 2.43837977446e-05 1.37315801897e-05 -4300430944.32 +UniRef50_A6LTC6 Methyl accepting chemotaxis sensory transducer 0.000376434544841 0.00169311165696 5.31558707608e+11 +UniRef50_P0AGG1 Thiamine monophosphate kinase 0.00213029514292 0.00128822028526 -3.39955953458e+11 +UniRef50_O31875 Ribonucleoside diphosphate reductase NrdEB subunit alpha 1.32583882405e-05 0.00618116651266 2.49006019857e+12 +UniRef50_W4FVH2 5.9417141252e-05 4.83822280636e-05 -4454929867.77 +UniRef50_A5UKG7 SAM dependent methyltransferase, UbiE CobQ family 0.00233279535001 0.000406399135599 -7.77709791297e+11 +UniRef50_UPI0002629825 monosaccharide ABC transporter ATP binding protein 1.98586295553e-05 5.45882800605e-05 14020786089.7 +UniRef50_J3LY38 0.00336713743001 0.00220120321928 -4.70701948493e+11 +UniRef50_O85673 Anthranilate 1,2 dioxygenase large subunit 0.000551156015442 0.00752400659321 2.81502534474e+12 +UniRef50_Q1GKJ0 2.9560558398e-05 2.35686286387e-05 -2419015573.08 +UniRef50_O24457 Pyruvate dehydrogenase E1 component subunit alpha 3, chloroplastic 4.11267291154e-06 1.48091951232e-05 4318317277.95 +UniRef50_UPI0002FF342B hypothetical protein 1.32109089438e-05 4.07281135847e-06 -3689162132.27 +UniRef50_I0JK96 Hit like protein involved in cell cycle regulation 0.00788202306286 0.00492513605913 -1.19373156849e+12 +UniRef50_A4G1V2 Valine tRNA ligase 3.32539668324e-06 1.84665725121e-06 -596985254.884 +UniRef50_W7VMY1 3.61027535641e-05 0.00235043235336 9.34323259457e+11 +UniRef50_UPI000262925E hypothetical protein 6.33125089561e-06 2.10032995687e-05 5923286095.61 +UniRef50_Q53143 Diheme cytochrome c type 0.00414200089627 0.000362351785524 -1.52589072752e+12 +UniRef50_UPI0003760E73 hypothetical protein 0.000206083504335 1.87444355275e-05 -75631080986.3 +UniRef50_P36547 HTH type transcriptional regulator eutR 0.00467455047681 0.00100464669488 -1.48158519155e+12 +UniRef50_UPI0003C7FEAE cation 0.000194262517925 0.000875624012626 2.75073996657e+11 +UniRef50_M7DZA1 Transcriptional regulator 0.00706374476827 0.00194175979174 -2.06780818885e+12 +UniRef50_UPI00046569ED MULTISPECIES 8.68274969527e-06 0.000104171394334 38549937618.1 +UniRef50_S9S8N1 2.55010418744e-05 1.64202098079e-05 -3666043339.59 +UniRef50_A3SJL5 3.73345220017e-05 4.82590790839e-05 4410377753.47 +UniRef50_P0AAP2 Protein AdrA 0.00174797592104 0.00156902743598 -72243699363.6 +UniRef50_E8SHK7 0.0060322112258 0.00229383215423 -1.50922950626e+12 +UniRef50_Q4K5Z7 Hemin import ATP binding protein HmuV 1.15190688688e-05 0.00228224289719 9.16719074408e+11 +UniRef50_A6DX59 FlgJ 7.35022472387e-05 3.94961655918e-05 -13728672462.4 +UniRef50_E6DXQ9 0.000218621229065 0.00298319847351 1.11609375876e+12 +UniRef50_A3NGC1 3.58875481148e-05 0.00015255365112 47099537437.2 +UniRef50_C3P501 ATP phosphoribosyltransferase 0.00301331552906 0.00202051483892 -4.00805821644e+11 +UniRef50_P58939 Carbamoyl phosphate synthase large chain 1.22039021227e-05 1.0202939716e-05 -807813078.155 +UniRef50_O52058 Biotin carboxylase 0.000292925225503 0.00203149462811 7.01881802479e+11 +UniRef50_D3QZW7 0.00980680125511 0.00345261939479 -2.56526119159e+12 +UniRef50_B9JEG2 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.00771781921498 0.00174667507939 -2.41062416172e+12 +UniRef50_A0A031JSK7 FAD dependent oxidoreductase 1.89086488443e-05 3.71663561538e-06 -6133202167.47 +UniRef50_UPI00025555DE ribose transport ATP binding protein RbsA 3.39473502347e-06 4.75876652797e-06 550676256.915 +UniRef50_UPI0003C17A60 PREDICTED 6.85570190773e-06 3.39654147539e-05 10944523749.6 +UniRef50_Q6A948 Pyridoxal biosynthesis lyase PdxS 0.000163763416959 0.00308210759861 1.17817135824e+12 +UniRef50_C6D7D6 3.21318552284e-06 5.81024279496e-05 22159460734.4 +UniRef50_Q9VMC6 CG9547 0.00568403392361 0.00624238946759 2.25414984898e+11 +UniRef50_Q04D50 Dipeptidase A, Cysteine peptidase, MEROPS family C69 0.00625520797827 0.00131196366206 -1.99564839088e+12 +UniRef50_X1BPY3 Marine sediment metagenome DNA, contig 1.56859376853e-05 1.13933600198e-05 -1732966279.41 +UniRef50_UPI0003DEC72F PREDICTED 1.03534241082e-05 9.52733061877e-06 -333504078.99 +UniRef50_A3M193 Transposition Helper 0.000160404811127 0.0102587095515 4.07680954383e+12 +UniRef50_UPI000471875A TetR family transcriptional regulator 9.26285140189e-06 1.75328009356e-05 3338680110.45 +UniRef50_UPI00037E1773 DeoR family transcripitonal regulator 3.59992831786e-05 7.5506123645e-06 -11485077512.1 +UniRef50_UPI00036F7656 MULTISPECIES 6.38815966369e-05 1.62419008121e-05 -19232729809.3 +UniRef50_A9B436 30S ribosomal protein S4 0.0168491938428 0.00825516082248 -3.46951659095e+12 +UniRef50_J7TT99 Transport protein SgaT, putative 0.000199049651704 0.000738472278661 2.17771533963e+11 +UniRef50_A5UNM1 Glycosyltransferase CDP glycerol 0.00329511126452 0.000256960016771 -1.22653894102e+12 +UniRef50_C4S247 Hydrogenase nickel incorporation protein 0.000658094955333 0.000123668170407 -2.15754651229e+11 +UniRef50_W7CHL0 4.11514823816e-06 1.20703088507e-05 3211595960.08 +UniRef50_F2U144 7.35776316135e-05 2.53679291629e-05 -19462848478.9 +UniRef50_J0ZPP4 0.000104784471121 0.00100107357693 3.61842910719e+11 +UniRef50_W4U3A3 Valyl tRNA synthetase 0.000197807464495 0.00480105231662 1.85838643497e+12 +UniRef50_P05096 DNA primase 4.15172593969e-06 3.45062285609e-06 -283043918.352 +UniRef50_P44808 0.0010815860551 0.000699858047475 -1.54108281008e+11 +UniRef50_Q9ZSS6 Threonine dehydratase biosynthetic, chloroplastic 2.12151621216e-06 2.07767117667e-05 7531331370.34 +UniRef50_Q8RLE0 Thymidine kinase 1.20864204236e-05 2.690913555e-05 5984111991.7 +UniRef50_UPI000377E217 hypothetical protein 9.70316545848e-05 0.00111759193717 4.12012709765e+11 +UniRef50_UPI000467D001 hypothetical protein 7.54851052634e-05 5.24087867663e-05 -9316192955.55 +UniRef50_X7U6C1 PPE family protein 0.000174808702695 4.20955336095e-05 -53577934933.3 +UniRef50_A3PGB8 Histidine kinase 0.000765268017034 9.94890640735e-05 -2.68783133337e+11 +UniRef50_G8R7R2 Methyltransferase family protein 0.000565439845776 0.00179088111745 4.94725679229e+11 +UniRef50_O86564 L serine dehydratase 0.000957011210521 0.000226770720448 -2.94807046901e+11 +UniRef50_Q040L6 Pyrrolidone carboxylate peptidase 1.79060036398e-05 0.0047394824134 1.90615833688e+12 +UniRef50_UPI0003F05B0E PREDICTED 1.19402384799e-05 1.85724110366e-05 2677489447.05 +UniRef50_V4HTY9 0.000283061874041 0.000386506188734 41761739246.1 +UniRef50_A4XXI2 AzlC family protein 3.45280353157e-05 1.25711181296e-05 -8864276909.7 +UniRef50_F8JSP7 9.36826702177e-07 0.000445451068846 1.79455854357e+11 +UniRef50_E8UAV0 Ferripyochelin binding protein 6.39937393516e-05 2.70821797696e-05 -14901649559.0 +UniRef50_UPI00047643BC hypothetical protein 1.34814383621e-05 2.57719857434e-05 4961844799.81 +UniRef50_A6LZP3 LuxR family transcriptional regulator 0.000248772061791 0.000556971100481 1.24423733947e+11 +UniRef50_UPI00045EBBEF hypothetical protein 0.000104358822424 8.85737719854e-05 -6372618566.41 +UniRef50_UPI0003799247 hypothetical protein 2.66700391635e-05 3.74003767051e-05 4331968941.59 +UniRef50_F5TD70 Type I site specific deoxyribonuclease, HsdR family 0.00559880477804 0.00146444714773 -1.66909090963e+12 +UniRef50_UPI00036F6A1E hypothetical protein 1.38135283087e-05 6.97845353602e-06 -2759403561.53 +UniRef50_H3W5C9 0.000323244902479 0.0016406483622 5.31851943047e+11 +UniRef50_UPI000479F12E hypothetical protein 6.12922761945e-06 1.06620708538e-05 1829964437.95 +UniRef50_P0AEV5 Formate hydrogenlyase regulatory protein HycA 0.00312321793233 0.00162559654236 -6.04608133012e+11 +UniRef50_UPI0004766E4B hemolysin secretion protein D 1.63186940329e-05 2.74038489784e-05 4475213081.65 +UniRef50_UPI000441FC52 PREDICTED 8.09156270868e-06 1.13267357206e-05 1306079044.95 +UniRef50_A5VUC7 Tetracycline resistance protein 8.65696593872e-05 7.56746574395e-05 -4398445982.99 +UniRef50_UPI0002DF600A hypothetical protein 2.67984579038e-05 3.77087794666e-06 -9296516608.86 +UniRef50_E0RHV7 Predicted transcriptional regulator 0.000323112341457 0.000883943065643 2.26414245521e+11 +UniRef50_Q9RY38 Oxidoreductase, short chain dehydrogenase reductase family 0.000118830846434 0.00854821222625 3.40304470317e+12 +UniRef50_E1VLU5 Short chain dehydrogenase reductase SDR 0.000312396270696 0.00682340946668 2.62857592633e+12 +UniRef50_W7X1H4 0.00179053598994 0.00023000036649 -6.30007381112e+11 +UniRef50_UPI000289460A xanthine permease 7.57070346026e-05 0.000216710396056 56924787324.4 +UniRef50_H8H074 Phosphoglucomutase phosphomannomutase alpha beta alpha domain I 0.000320127685782 0.0611466447986 2.45564113837e+13 +UniRef50_R9SM76 CDP glycerol 0.00320596217537 0.00065750923437 -1.02884172532e+12 +UniRef50_Q9YAS0 UPF0219 protein APE_1873.1 0.00309430619939 0.00149517423546 -6.45589197394e+11 +UniRef50_P0A9E1 Arabinose operon regulatory protein 0.00503968012991 0.000661023478047 -1.76771742252e+12 +UniRef50_Q3JGP6 5.6645440651e-05 1.70727389123e-06 -22179212088.0 +UniRef50_Q99ZP1 Serine hydroxymethyltransferase 0.000127483777174 0.00851200866412 3.38493558655e+12 +UniRef50_Q8XMJ3 3 dehydroquinate synthase 0.000147840465605 0.00195151448496 7.28165335181e+11 +UniRef50_UPI000362B451 PTS fructose transporter subunit IIA 5.68516927744e-06 0.000465761661879 1.85738525837e+11 +UniRef50_I7DVA3 0.0112495100977 0.00375996269249 -3.02362219457e+12 +UniRef50_UPI000473C32B branched chain amino acid aminotransferase, partial 0.000531434996234 5.37079496503e-05 -1.92864271076e+11 +UniRef50_C4RR63 Secreted protein 1.35657630168e-06 0.000162933354593 65230528166.1 +UniRef50_Q4UTD4 Serine tRNA ligase 2.78132886957e-05 1.19513497594e-05 -6403659396.46 +UniRef50_Q97DA2 3 oxoacyl [acyl carrier protein] synthase 3 0.000367413304853 0.000132802062717 -94715437454.0 +UniRef50_Q5HQF6 Transposase, putative, truncation 0.000608848369114 4.87380049521e-05 -2.26123427339e+11 +UniRef50_P11901 Transposase for insertion sequence element IS421 0.0121123026975 0.00351301569196 -3.47163768925e+12 +UniRef50_UPI000467ECCA hypothetical protein 1.10996397435e-05 2.46013044436e-05 5450787723.49 +UniRef50_Q04JH1 Adenine phosphoribosyltransferase 0.000864296606538 0.00456015581562 1.492063716e+12 +UniRef50_A6M3C4 ATPase like protein 0.000477774808878 0.000422284350448 -22402179012.7 +UniRef50_Q4PJD9 Predicted acetyl CoA carboxylase 2.52208017196e-05 4.17310028785e-05 6665370810.8 +UniRef50_W5XBC3 50S ribosomal protein L24 7.23894009866e-05 9.32581063359e-06 -25459545302.8 +UniRef50_E8PH61 AdeT, RND type efflux pump 0.000255663786733 0.0150266631524 5.96323370448e+12 +UniRef50_B9M8U3 8 amino 7 oxononanoate synthase 2.50071097098e-05 5.85229974351e-05 13530775160.9 +UniRef50_Q1GGF9 Endoribonuclease L PSP 0.000114021392599 1.91445928643e-05 -38302928322.2 +UniRef50_X1CCA7 Marine sediment metagenome DNA, contig 0.000138381650314 4.62192843001e-05 -37207078119.2 +UniRef50_A6LSR6 Ribosomal protein S12 methylthiotransferase RimO 0.000750680178348 0.00214731201104 5.63837409457e+11 +UniRef50_UPI00030C0032 hypothetical protein 7.73314708927e-05 2.86575260671e-05 -19650268822.6 +UniRef50_UPI0003B76375 acetyl CoA carboxylase biotin carboxylase subunit 2.6273768849e-06 1.93268379593e-05 6741777361.17 +UniRef50_S4XY12 0.000335619750061 0.000165135156678 -68826722429.9 +UniRef50_A6LY74 Resolvase helix turn helix domain protein 0.000283114491639 0.00358695557167 1.3338011867e+12 +UniRef50_UPI00035E0C27 hypothetical protein 3.96740022967e-06 6.17925468122e-06 892952784.597 +UniRef50_A7FB80 0.000115556935367 0.00604809169925 2.39503708457e+12 +UniRef50_A6LR67 Accessory gene regulator B 0.00110247393114 0.000652642456561 -1.8160248634e+11 +UniRef50_Q8CP92 Membrane spanning protein 0.00744565362627 0.00483684485023 -1.05320811657e+12 +UniRef50_Q47482 ORF114 0.000493688641771 0.00057158071973 31445987715.3 +UniRef50_C7ZV35 II DNA RNA helicase ComFC 0.0210091560338 0.00754229594776 -5.43673667367e+12 +UniRef50_M3ID57 E1 E2 ATPase 0.000249990721098 0.000789265136377 2.17711699089e+11 +UniRef50_A0A023FF30 3.62139561122e-05 0.00142827675171 5.61992833115e+11 +UniRef50_H0DLY7 Surface protein G 0.00157394557062 0.000319912896401 -5.06268379294e+11 +UniRef50_UPI00046D439D hypothetical protein 2.38020122541e-05 9.0603070688e-05 26968407030.9 +UniRef50_UPI0003B4EBBD nitrogen regulatory protein P II 1 0.00159542406813 0.00135634088186 -96520816177.8 +UniRef50_M1MAL1 Glycosyltransferase 0.000250972966228 0.00160676762963 5.47350943086e+11 +UniRef50_P55294 dTDP glucose 4,6 dehydratase 0.030414237891 0.0248018092279 -2.26580632354e+12 +UniRef50_G1Y1D6 9.64896299881e-05 2.63589067334e-06 -37889906276.3 +UniRef50_A1U6L0 Acetylglutamate kinase 5.78979809045e-05 2.84418948458e-05 -11891783408.7 +UniRef50_D2J655 Replication initiation protein 0.0122474735701 0.00604259091261 -2.5049872713e+12 +UniRef50_A8LJQ4 Pyrophosphate phospho hydrolase 0.0163185787048 0.00175023911835 -5.88141746466e+12 +UniRef50_R6VGJ2 Transcriptional regulator 3.43311342375e-06 4.50064458968e-06 430975431.766 +UniRef50_P34750 Fimbrial assembly protein PilQ 0.000762210711383 0.000636221986797 -50863194170.9 +UniRef50_Q4L4Y3 ATP dependent helicase nuclease subunit A 0.010431432022 0.00238436368062 -3.24870023805e+12 +UniRef50_UPI00037D8E01 hypothetical protein 2.33980037298e-05 5.80809211738e-06 -7101263170.41 +UniRef50_Q46PF7 Flagellar P ring protein 0.00153967282916 0.000247472099328 -5.21677291718e+11 +UniRef50_UPI0003B3AA9D alpha amylase 1.93087461307e-05 2.18815178027e-05 1038659495.45 +UniRef50_Q88BP2 3.39033404267e-05 8.75099966028e-06 -10154308621.3 +UniRef50_F2EDD7 Predicted protein 2.80319485155e-05 3.2441954798e-05 1780373653.11 +UniRef50_Q89DX7 Arginine deiminase 0.000510375683227 0.00699897750424 2.61952817924e+12 +UniRef50_Q9PBX0 Ribose 5 phosphate isomerase A 0.000715213027021 0.00381047271182 1.24959431786e+12 +UniRef50_P0A925 Phosphatidylglycerophosphatase B 0.00137073378749 0.00313813200463 7.13520348674e+11 +UniRef50_UPI00037F38F9 hypothetical protein 1.2004610822e-06 3.86118987638e-06 1074168865.02 +UniRef50_D8JJE0 0.000334568976163 0.0108057389389 4.22733980965e+12 +UniRef50_UPI00046934E1 hypothetical protein 0.000266495917335 2.3411680485e-05 -98136089395.4 +UniRef50_Q8ZPK6 ATP dependent dethiobiotin synthetase BioD 2 0.00209755211865 0.00198044188274 -47278839341.1 +UniRef50_B9KRH6 CBR SDC 3 protein 0.00210983179633 0.0018639736818 -99255937854.1 +UniRef50_UPI0002EB1E79 hypothetical protein 4.64891720504e-06 2.72914598628e-05 9141072326.2 +UniRef50_Q0C397 Intracellular protease, PfpI family 0.00662979260241 0.00136300017782 -2.12626873262e+12 +UniRef50_K2EJR9 1.10642568531e-05 3.11507874188e-05 8109178878.82 +UniRef50_O48917 UDP sulfoquinovose synthase, chloroplastic 0.000374055007741 3.74532390097e-05 -1.35890264605e+11 +UniRef50_A5UJN9 0.00133111087142 0.000859534186694 -1.90381294521e+11 +UniRef50_A9U6J3 Predicted protein 2.79313676191e-06 6.25435518412e-06 1397336350.97 +UniRef50_UPI00035E9CFE 50S ribosomal protein L24 0.000110607488233 0.000271515398775 64960498047.9 +UniRef50_UPI000472DFA0 hypothetical protein, partial 2.74092417244e-05 1.75612436021e-05 -3975757690.5 +UniRef50_UPI00040078F0 hypothetical protein 0.000135155001406 9.24941621294e-05 -17222704323.3 +UniRef50_W5V1P4 Type II secretion system protein E 0.00086047314663 0.000302051193502 -2.25441795086e+11 +UniRef50_P65904 Phosphoribosylformylglycinamidine synthase 1 0.0241475662707 0.00262203693888 -8.6901203392e+12 +UniRef50_Q7MAB8 GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE 0.000252851661188 0.0037854676914 1.42616044147e+12 +UniRef50_K1Y7A4 3.3965001404e-06 4.97122702253e-06 635736566.388 +UniRef50_T1Y669 Multidrug resistance protein B 0.0136958739464 0.00174634284999 -4.82417234085e+12 +UniRef50_Q8RHI7 DNA directed RNA polymerase subunit beta 2.4971001548e-06 2.13760256041e-06 -145133590.387 +UniRef50_C3AKR0 Cobalamin synthesis protein 4.05000960698e-06 6.67603705106e-06 1060159504.16 +UniRef50_Q9VLJ8 Adenylyltransferase and sulfurtransferase MOCS3 9.47662301215e-06 1.59556152992e-05 2615648692.46 +UniRef50_Q9RSN4 9.05242179512e-05 0.00757152767279 3.02017289695e+12 +UniRef50_A3CP54 ABC transporter membrane spanning permease, arginine histidine transport, putative 0.00353588336533 0.00386679912588 1.33594753327e+11 +UniRef50_UPI000345D7AA diaminopimelate decarboxylase 4.34609108208e-06 2.39633102191e-05 7919712095.96 +UniRef50_I6TNC0 Serine acetyltransferase 0.00851035619071 0.0063426358078 -8.75135319501e+11 +UniRef50_G7U472 Membrane spanning protein 0.000110161280792 0.00601291757033 2.38301514905e+12 +UniRef50_UPI000374B781 hypothetical protein, partial 0.000214689757061 2.24315485918e-05 -77616998032.5 +UniRef50_M9VCZ7 1.71256856409e-05 9.66367756369e-05 32099602742.2 +UniRef50_Q2GW43 Predicted protein 4.3477166281e-05 0.000177385147269 54060295160.6 +UniRef50_UPI00029AD767 Gnt II system L idonate transporter IdnT 1.72851080794e-05 7.85614078471e-06 -3806589803.31 +UniRef50_A5UDU8 0.000524025360031 0.000135881919561 -1.56698269973e+11 +UniRef50_UPI0003718E98 30S ribosomal protein S1 2.18921912679e-05 7.2780034869e-05 20544046925.8 +UniRef50_R9SII2 Hmd co occurring protein HcgC 0.00172424918664 0.000460542401304 -5.10173936668e+11 +UniRef50_K4ADF5 1.25559604402e-05 0.000442420454189 1.73541571157e+11 +UniRef50_UPI0002195D49 NADPH 9.73611157681e-06 6.47032043887e-05 22190889890.2 +UniRef50_Q0TM34 Pyridine nucleotide disulphide oxidoreductase 0.00033207216226 0.00170295475624 5.53442125811e+11 +UniRef50_A5W887 0.000241705488396 0.000898421567906 2.65124340111e+11 +UniRef50_A1AT17 Cobyrinic acid A,C diamide synthase 1.51923968868e-05 0.000219469456068 82469155552.8 +UniRef50_W9AMV1 3 oxoadipate enol lactonase 2.28444236225e-06 1.4579366498e-05 4963611749.31 +UniRef50_P31469 UPF0167 protein CbrC 0.00216536828323 0.00171556918863 -1.81589414146e+11 +UniRef50_A6D355 1.74580398694e-05 8.23222475182e-05 26186476601.2 +UniRef50_E3B8X8 CobQ CobB MinD ParA nucleotide binding domain protein 2.61866800002e-06 7.4442877724e-06 1948161919.12 +UniRef50_B2TKG7 0.000216399407732 0.00086928381685 2.63577447754e+11 +UniRef50_UPI000289DAB7 ABC transporter 0.000113413739141 2.64098519837e-05 -35124536903.2 +UniRef50_B2TKG9 0.00102643486032 0.000993315951759 -13370509800.8 +UniRef50_A6LPH0 0.000750394818849 0.00128100895609 2.14215438572e+11 +UniRef50_Q2YTW8 0.000439193115912 0.000753213285907 1.26773796088e+11 +UniRef50_Q39242 Thioredoxin reductase 2 6.00663567777e-05 2.0663385369e-05 -15907463086.5 +UniRef50_U6ZY01 0.00020564138946 8.17945692505e-05 -49998481090.2 +UniRef50_A0RWW0 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 6.32058527058e-06 3.50662434408e-05 11604974952.2 +UniRef50_Q6LLR8 UPF0761 membrane protein PBPRA3489 0.00177760099104 0.000808242823505 -3.91341787596e+11 +UniRef50_B5XXZ2 4 hydroxybenzoate octaprenyltransferase 0.000596847879521 0.000324082819905 -1.10118601771e+11 +UniRef50_UPI000406F7B4 MULTISPECIES 1.58434904583e-05 2.49197695075e-05 3664205230.63 +UniRef50_I6ST36 Transcriptional regulator MutR 0.00624037941467 0.00443695388435 -7.2806501711e+11 +UniRef50_O34453 Nitric oxide synthase oxygenase 0.017196129162 0.00620526817423 -4.43714545381e+12 +UniRef50_UPI0003B677CD streptomycin 3 kinase 4.04359492681e-05 3.30317809956e-05 -2989153590.97 +UniRef50_D9RG71 Colicin V production protein 0.00672710458867 0.00273586636745 -1.61131184791e+12 +UniRef50_P57067 Outer membrane lipoprotein carrier protein 0.000841162307276 0.00507186423073 1.70798628305e+12 +UniRef50_A9LZF1 P type cation transporting ATPase 4.68344899327e-05 7.25891123e-05 10397457094.4 +UniRef50_A7HZX6 Serine tRNA ligase 0.000104893050104 0.00256121763324 9.91648376706e+11 +UniRef50_A9TBR6 Predicted protein 0.0145760983376 0.00435395015742 -4.12680666021e+12 +UniRef50_F6D6D0 Peptidyl tRNA hydrolase 0.000337041061476 0.00290475447734 1.03661741537e+12 +UniRef50_UPI0003B5DDB2 ABC transporter ATP binding protein, partial 6.78812102337e-05 0.000125750896615 23362702533.0 +UniRef50_E2BKF3 3.96643296335e-06 0.000136438871888 53480749213.7 +UniRef50_K4A2U8 0.000304970727084 4.61271704896e-06 -1.21258214458e+11 +UniRef50_F4FN41 Transcriptional regulator, AraC family 0.0155775375806 0.00293833408134 -5.10260155314e+12 +UniRef50_E3A746 0.000140156412891 5.64479207156e-05 -33794145509.9 +UniRef50_F2D3N2 Predicted protein 0.000133567755941 0.000259395788164 50798320692.0 +UniRef50_Q7WFR5 Ribosomal RNA small subunit methyltransferase H 1.36602863729e-05 0.0038174383672 1.53563188884e+12 +UniRef50_UPI000475712A MFS transporter 1.75256842449e-05 7.44057420618e-06 -4071482680.84 +UniRef50_UPI0002FE50F2 ABC transporter ATP binding protein 1.85584804407e-05 3.70529158408e-05 7466430523.26 +UniRef50_I0C492 Transposase 0.00130975222434 0.000231620945253 -4.35254827527e+11 +UniRef50_P37105 Signal recognition particle protein 0.0224193313677 0.00663389889878 -6.37277279673e+12 +UniRef50_Q9HU72 Lactoylglutathione lyase 0.000680299541495 0.00241787225508 7.01479426887e+11 +UniRef50_Q49VK4 Sensor histidine kinase GraS 0.0220620443689 0.00195780223641 -8.11632925568e+12 +UniRef50_U6LXV1 1.27464680231e-05 1.0041373937e-05 -1092079677.8 +UniRef50_UPI0004712B82 deoxyguanosinetriphosphate triphosphohydrolase 7.23374901893e-05 5.49917380398e-06 -26983448523.1 +UniRef50_X7ECQ0 2.99058323184e-06 4.02256535327e-06 416623846.266 +UniRef50_C7J660 Os08g0537001 protein 7.25487460329e-05 0.00186602925987 7.24050091918e+11 +UniRef50_UPI0003B571D7 NAD synthetase 1.39661225465e-05 5.49529399806e-06 -3419777433.76 +UniRef50_A6QIL3 0.00287740971635 0.00171699017539 -4.68475608635e+11 +UniRef50_Q8CR15 0.00316949491293 0.00255735160822 -2.47129763954e+11 +UniRef50_O03077 ATP synthase subunit beta, chloroplastic 2.17568855978e-05 1.33017848625e-05 -3413427922.59 +UniRef50_UPI000359A7EA PREDICTED 1.04670684848e-05 2.64353075984e-05 6446574082.49 +UniRef50_Q8H107 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2, mitochondrial 6.03303344623e-06 5.79615092735e-06 -95632379.7472 +UniRef50_R4LTE6 4.53103929857e-05 7.91328701238e-05 13654549069.1 +UniRef50_A6LZR2 0.00042555437847 0.000629305670241 82256896797.5 +UniRef50_A6LZR6 0.000260727048894 0.00160567895302 5.42973588113e+11 +UniRef50_Q2Y639 UDP N acetylmuramate L alanine ligase 0.00018293613576 0.00731875406767 2.88081726545e+12 +UniRef50_V8B5L5 0.000863045765934 0.000156252224977 -2.85341225816e+11 +UniRef50_F3SUZ8 Radical SAM domain protein 0.00201568528409 0.000629795527281 -5.59500701604e+11 +UniRef50_Y1QUK6 8.13734964445e-05 3.69775393467e-05 -17923192680.0 +UniRef50_UPI00047377E9 hypothetical protein, partial 3.94525681701e-05 8.87784107276e-05 19913447936.6 +UniRef50_A3M2I8 Histidinol phosphate aminotransferase 0.00046885235971 0.00567610350902 2.10223118913e+12 +UniRef50_A4WVN9 0.00290065566427 0.000323945366127 -1.04024956715e+12 +UniRef50_UPI000237EED8 CP4 like integrase 7.58327646046e-05 5.910362196e-05 -6753760175.29 +UniRef50_UPI000463B864 lysine transporter LysE 5.39093855123e-05 7.24673588335e-05 7492081561.71 +UniRef50_Q89KP5 Uridylate kinase 8.17442297073e-06 2.76865616493e-05 7877289825.42 +UniRef50_B1M0V9 1.3377247099e-05 2.36096310302e-05 4130938958.5 +UniRef50_B1M0V4 4.05579581943e-05 6.49182479773e-05 9834547919.77 +UniRef50_UPI0003C18CC4 6.59008925046e-05 2.15749481963e-05 -17894927657.8 +UniRef50_G5RK09 Membrane bound lytic murein transglycosylase A 0.000277436384188 0.000141726147669 -54787887834.6 +UniRef50_UPI0003B301C3 transcriptional regulator 4.51441636142e-06 8.83461974299e-06 1744119120.0 +UniRef50_T1Y750 IolE protein like protein 0.0135275379538 0.00604186639642 -3.02205746723e+12 +UniRef50_A6M054 Glycosyl hydrolase family 32, N terminal domain protein 0.000296335201666 0.00221755969591 7.756219044e+11 +UniRef50_U5MWS1 Cna B domain protein 0.00147754306325 0.000986657194776 -1.9817664895e+11 +UniRef50_Q8E2K7 DNA replication and repair protein RecF 0.000688625625614 0.00317949993775 1.00559652628e+12 +UniRef50_UPI00047CBDF2 hypothetical protein 0.000240575889047 0.000278700690247 15391450088.4 +UniRef50_Q92PH0 Glutaminase 0.000395056542981 3.31770832467e-05 -1.46095178655e+11 +UniRef50_UPI0004777D5E competence protein 1.67227393961e-05 4.62272983391e-05 11911352506.9 +UniRef50_A6LTY9 0.000403648665065 0.00086916539709 1.87934817251e+11 +UniRef50_Q8NZX4 Transketolase 0.0100067845775 0.0089052511478 -4.44702562905e+11 +UniRef50_UPI0003FFF64C hypothetical protein 4.05869280772e-06 9.74515360993e-06 2295694006.57 +UniRef50_A4WVF5 L malyl CoA beta methylmalyl CoA lyase 0.0110867481252 0.00625155815433 -1.95202552569e+12 +UniRef50_Q9SR52 Urease 2.73049017245e-06 2.21385589703e-05 7835275537.5 +UniRef50_UPI00040A8344 potassium ABC transporter ATPase 6.70967284587e-06 1.02219574503e-05 1417952395.39 +UniRef50_UPI000380F703 hypothetical protein 2.47089203454e-05 1.46005608877e-05 -4080868756.59 +UniRef50_D6SH06 0.0183974481137 0.00231373795736 -6.49319115942e+12 +UniRef50_Q892X8 Oligoendopeptidase F 0.000226404643234 0.00157831737671 5.45783760341e+11 +UniRef50_F7Y3H5 Enoyl CoA hydratase 0.000246186514471 0.0590711926567 2.37483768436e+13 +UniRef50_A1VBP9 Binding protein dependent transport systems inner membrane component 0.000154075913818 0.00997984902347 3.96678518016e+12 +UniRef50_A4WQT8 Membrane protein like protein 0.00595654681931 0.000169416164506 -2.33633566142e+12 +UniRef50_UPI0004686834 glycoside hydrolase family 13 1.39139135503e-06 0.000133664790574 53400394441.8 +UniRef50_P37182 Hydrogenase 2 maturation protease 0.0012659285297 0.0159027051226 5.909046324e+12 +UniRef50_Q93SE0 Vitamin B12 transporter BtuB 0.00289727394483 0.000389327202494 -1.01248887585e+12 +UniRef50_R7PWN2 0.00335139666452 0.000526319731719 -1.14051822536e+12 +UniRef50_A0A009DJS4 7.55210588108e-05 0.000216302604238 56835237472.7 +UniRef50_UPI000467756F N succinylarginine dihydrolase, partial 1.73659323971e-05 6.10571141461e-05 17638666223.2 +UniRef50_A0A011P1Z9 Inner membrane protein YgaZ 2.79496348456e-05 1.4148988127e-05 -5571490433.28 +UniRef50_Q126M1 Tryptophan synthase beta chain 0.0390244254185 0.034919170447 -1.65734180914e+12 +UniRef50_Q87EJ9 Divalent metal cation transporter MntH 0.000533505103497 0.00169933831719 4.70661174749e+11 +UniRef50_UPI00045E71E0 hypothetical protein 6.35215729272e-06 9.87891253154e-05 37317938319.9 +UniRef50_Q9RYV0 Oligoendopeptidase F, putative 6.53844091497e-05 0.042862623316 1.72777705279e+13 +UniRef50_UPI000299DE22 insertion element transposase 2.13229361984e-05 4.98160277947e-05 11503010727.0 +UniRef50_UPI0002C37426 PREDICTED 8.2749926433e-05 6.47373315948e-05 -7271905575.58 +UniRef50_UPI00032A12CA PREDICTED 8.21602733608e-05 0.000113563759223 12677972606.7 +UniRef50_N6V3L4 0.000599909796145 0.000267276486635 -1.34288148919e+11 +UniRef50_Q46793 0.000685965317271 0.000270932757067 -1.67553737577e+11 +UniRef50_UPI000470AE3D phage infection protein 2.15417488433e-06 1.50393423538e-06 -262510129.331 +UniRef50_UPI00037632C6 hypothetical protein 9.33547047284e-07 4.0935953938e-06 1275750295.64 +UniRef50_UPI00037FBEB2 hypothetical protein 4.27434906246e-05 5.85990885898e-06 -14890354571.2 +UniRef50_V5VD88 0.000378420750072 0.00438671684144 1.61819831941e+12 +UniRef50_UPI0003C0FBBA PREDICTED 7.48071362449e-06 6.66086152294e-06 -330984354.112 +UniRef50_P0A9X5 Rod shape determining protein MreB 0.00330849815233 0.000474401201749 -1.14415971723e+12 +UniRef50_Q2YWJ9 3 dehydroquinate dehydratase 0.0129695489765 0.00174171401473 -4.53281475511e+12 +UniRef50_Q2LRC2 UDP N acetylglucosamine pyrophosphorylase 0.000157723950778 0.00465736058541 1.81655852615e+12 +UniRef50_Q9KDA5 DNA binding protein HU 1 0.0013591268233 0.000656259344878 -2.83756226193e+11 +UniRef50_A0A017SZJ0 7.69620674074e-06 0.000230694069895 90026973846.8 +UniRef50_D3P3K9 Transposase 0.000197329598523 0.000319289732468 49236802692.7 +UniRef50_Q9RWI1 2.54771196058e-05 0.0111339034122 4.48460801004e+12 +UniRef50_UPI0004650D81 DNA polymerase III subunit alpha 3.28332557535e-06 2.04905317529e-06 -498290914.13 +UniRef50_A5N5C6 Redox sensing transcriptional repressor Rex 0.000593527946053 0.000372247947718 -89333450738.8 +UniRef50_A6LXW2 FMN binding domain protein 0.000407947092057 0.000839336190158 1.74157072643e+11 +UniRef50_W5X9T1 Capsule biosynthesis protein, putative 4.89792640796e-05 0.00226521937824 8.94723330411e+11 +UniRef50_Q5HJ91 Virulence factor EsxA 0.00372004184177 0.00340750044457 -1.26176797364e+11 +UniRef50_UPI00035D6DF9 hypothetical protein 3.73643105384e-05 2.04757585346e-05 -6818115689.77 +UniRef50_A6LUC6 HIRAN 0.00104182623438 0.000375130960621 -2.69153063288e+11 +UniRef50_O34760 Probable quorum quenching lactonase YtnP 0.00764133599172 0.00479555153508 -1.14887810685e+12 +UniRef50_P32709 Protein NrfD 0.0016338349976 0.000375802375719 -5.07883207249e+11 +UniRef50_A8LAR7 Pyrimidine nucleoside phosphorylase 0.000212341184589 0.00447234074609 1.71981409905e+12 +UniRef50_W5FVF8 6.9311237827e-05 0.00023199549927 65677632704.9 +UniRef50_UPI00040BC8B6 hypothetical protein 8.16253013499e-06 2.05466357489e-05 4999615406.4 +UniRef50_UPI00036FB676 hypothetical protein 0.000610333952445 4.84818932346e-05 -2.26826571003e+11 +UniRef50_R7PY44 0.00116355851109 0.000153752720228 -4.07670989481e+11 +UniRef50_Q8NSL1 2 methylcitrate synthase 2 1.41759844362e-05 1.19090337343e-05 -915195816.97 +UniRef50_A9FRC1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.22092137243e-05 8.4996594575e-06 -1497592578.86 +UniRef50_Q74GU4 Acetylglutamate kinase 5.65200365026e-05 1.94846213692e-05 -14951651565.0 +UniRef50_A1B414 General secretory system II, protein E domain protein 0.00210708305497 0.00034781511842 -7.10238054631e+11 +UniRef50_O34990 Formyltetrahydrofolate deformylase 9.69478794779e-06 0.0420678430526 1.6979390566e+13 +UniRef50_UPI0003B4C8ED 3 5 exonuclease, partial 0.000486049074949 0.000615903480777 52423817125.5 +UniRef50_D3E1K6 Cytidyltransferase related domain containing protein 0.00300214912185 0.000313833281181 -1.08530609422e+12 +UniRef50_M9RAZ0 5.05876655689e-05 5.34024642696e-05 1136368776.94 +UniRef50_P32144 0.00199228377555 0.00110530096434 -3.58085845389e+11 +UniRef50_C2ZP74 Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein 0.0103726473532 0.00303941058357 -2.96051767283e+12 +UniRef50_UPI00047AA5CF hypothetical protein, partial 1.64180391911e-05 8.53622670478e-05 27833630826.6 +UniRef50_V4QYP1 HupE UreJ family metal transporter 0.000142095862126 1.90912916601e-05 -49658454532.9 +UniRef50_A5IUJ4 DNA mismatch repair protein MutS domain protein 0.0107425217306 0.00215060550812 -3.46866201368e+12 +UniRef50_I1ZMC2 Multidrug ABC transporter, ATPase and permease component 0.00558132555468 0.00526401058772 -1.28103946054e+11 +UniRef50_A3JX48 0.000159893359667 9.91594747543e-05 -24519014627.8 +UniRef50_UPI0003B4645F hypothetical protein 9.41212324581e-06 3.7632110885e-05 11392755308.1 +UniRef50_UPI00047B8895 DNA primase 3.25774208154e-06 7.41038416249e-06 1676472566.73 +UniRef50_P37662 0.00492642113745 0.000784772776271 -1.67203426715e+12 +UniRef50_P37663 0.00286626541508 0.00104841250564 -7.33889527105e+11 +UniRef50_P37664 0.000258552047156 0.00194714311118 6.81704933887e+11 +UniRef50_Q28WI0 Chromosomal replication initiator protein DnaA 0.00835778969479 0.00197801508343 -2.57559329924e+12 +UniRef50_Q31DK9 Ribosomal RNA small subunit methyltransferase G 3.29002600525e-05 3.93699810458e-05 2611905757.4 +UniRef50_B0SXH8 Transglutaminase domain protein 7.13480526043e-05 6.95608355963e-05 -721521437.749 +UniRef50_U4GBY1 Putative signal peptide protein 0.000165295635543 0.000235417567459 28309084407.4 +UniRef50_Q4ZUG2 Phenylalanine tRNA ligase beta subunit 0.000210874217451 0.000170239220598 -16404846877.0 +UniRef50_C5WFX1 Ribosomal protein L21 0.00130175416232 0.00089040212621 -1.66067864835e+11 +UniRef50_Q51392 Probable alginate O acetylase AlgI 0.000747853101288 0.000968536553959 89092617933.8 +UniRef50_C7ZXN9 Peptidase A24A 0.0124913439708 0.000874758491299 -4.68975810961e+12 +UniRef50_U5NRI8 0.000492737936354 0.00210146179404 6.49461562611e+11 +UniRef50_A4WPL6 0.0167966931418 0.0069845382664 -3.96128733188e+12 +UniRef50_A3ZQR3 0.000151110456182 3.40474006485e-05 -47259792044.3 +UniRef50_W1JLJ8 0.000247076569867 4.10305972424e-05 -83183287617.1 +UniRef50_B2V4B1 Peptide deformylase 1.50756821902e-05 2.68779406796e-05 4764716582.17 +UniRef50_A9GXK1 Peptidyl tRNA hydrolase 4.41622785726e-05 2.15409242388e-05 -9132518339.79 +UniRef50_P0A4K2 Cystathionine beta lyase 7.72438350101e-05 0.00490272783015 1.94810710419e+12 +UniRef50_A6LWY3 Transcriptional antiterminator, BglG 0.000220351590581 0.000998516514623 3.14154728993e+11 +UniRef50_A5UN38 Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD 0.00210743012443 0.00103745359071 -4.31962656751e+11 +UniRef50_UPI0003A61C77 hypothetical protein 4.04609101818e-05 0.000161322566286 48793333708.5 +UniRef50_Q72L31 Uroporphyrinogen decarboxylase 1.58948273712e-05 2.51241192528e-05 3725978388.75 +UniRef50_E6NII4 Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase 9.87321679628e-05 0.00301672439636 1.1780292704e+12 +UniRef50_A5IPW8 Uracil xanthine permease 0.0144146479779 0.00319911161925 -4.52784965812e+12 +UniRef50_UPI0003B7912D D ribose transporter ATP binding protein 4.23903796195e-06 6.0308726196e-06 723385639.577 +UniRef50_Q5HRP0 Dihydropteroate synthase 0.0286146329528 0.00601408980101 -9.12411661023e+12 +UniRef50_R9ZGA8 AraC family transcriptional regulator 0.000382300568732 0.000598390490412 87238153103.7 +UniRef50_C5DAG0 Extracellular solute binding protein family 1 2.2219893676e-05 0.000797002201073 3.12789125144e+11 +UniRef50_K9NKD1 NAD dependent epimerase dehydratase 0.00459788822913 0.00359675538793 -4.04169613274e+11 +UniRef50_I1ZK66 Oligoendopeptidase F 0.000153928255183 0.00507883314062 1.98824453763e+12 +UniRef50_F4EDJ1 Phosphatidate cytidylyltransferase 0.00643715005119 0.00576353629175 -2.71946140856e+11 +UniRef50_R6UCD8 Aminotransferase class I and II 0.00674578927021 0.00367682280454 -1.23897942264e+12 +UniRef50_W8EXQ8 2.83637118726e-06 4.1713364533e-06 538941859.766 +UniRef50_UPI0001584DF8 conserved hypothetical protein 2.59693270029e-06 1.1985325149e-05 3790209240.08 +UniRef50_R7PWY7 0.00396490603807 0.000661420965292 -1.3336574622e+12 +UniRef50_P19317 Probable nitrate reductase molybdenum cofactor assembly chaperone NarW 0.00444603370354 0.000303407573826 -1.6724290043e+12 +UniRef50_Q18JB5 Formate tetrahydrofolate ligase 0.0331755428504 0.0230001547629 -4.10792903698e+12 +UniRef50_Q7VL09 8 amino 7 oxononanoate synthase 0.000258702422127 0.0146959408894 5.82849033409e+12 +UniRef50_E2XWM2 Amidotransferase 0.000949809775798 0.000390286394531 -2.25886455141e+11 +UniRef50_B7RLJ4 0.00114523459095 0.000109458496327 -4.181555198e+11 +UniRef50_R4R6C5 HlyD family secretion protein domain protein 0.000463043204404 0.000588437754967 50623318826.5 +UniRef50_Q9XAQ9 NADH quinone oxidoreductase subunit F 0.000129720271086 0.00613986998772 2.42637119343e+12 +UniRef50_T5JDW5 8.47623822773e-06 0.000268710233989 1.05059657519e+11 +UniRef50_Q6LTY5 Na translocating NADH quinone reductase subunit E 0.000117706487853 0.00010927429796 -3404178534.41 +UniRef50_Q2NEW4 Alanine tRNA ligase 0.00330038608059 0.00200041518123 -5.24814204508e+11 +UniRef50_Q5HNU8 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.0106082168038 0.00338301680929 -2.91690190096e+12 +UniRef50_Q6GGZ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.0105951139712 3.94944358452e-05 -4.26143313846e+12 +UniRef50_C7NZH8 Chorismate synthase 4.20192635179e-06 1.94741746707e-05 6165594057.9 +UniRef50_A5UP06 0.00223265652286 0.000953286768366 -5.1649726952e+11 +UniRef50_UPI000361F275 hypothetical protein 3.36439162762e-06 6.18237852361e-06 1137655890.5 +UniRef50_A6LQ11 Erythronolide synthase., Aspartate racemase 0.000438115619619 0.0011981649277 3.06841232526e+11 +UniRef50_A0A023X8X0 0.000181149506258 0.000195319865074 5720747743.88 +UniRef50_Q6A7E9 ATP dependent Clp protease proteolytic subunit 2 0.000208555794952 0.0102651487825 4.05996999733e+12 +UniRef50_A1R5F0 Ribosomal RNA small subunit methyltransferase H 6.80470288626e-06 0.00359082503308 1.44691298817e+12 +UniRef50_A5UP09 0.00195575710316 0.000835757948297 -4.52157402752e+11 +UniRef50_X2H8Z5 0.000185042151398 0.0040240633382 1.5498599632e+12 +UniRef50_V7FG71 5.00727469764e-05 0.000270369689397 88936579002.8 +UniRef50_UPI00032911E8 PREDICTED 1.96502606983e-06 2.92197862106e-05 11003081122.4 +UniRef50_R7B346 0.0045825992868 0.000926976715102 -1.47581969173e+12 +UniRef50_K0TNG1 7.23799936697e-06 5.26275926482e-05 18324335800.6 +UniRef50_UPI0003604578 hypothetical protein 9.7420849302e-06 8.23942497118e-06 -606642265.168 +UniRef50_UPI0003A753CE hypothetical protein 0.000341496392274 9.87091553117e-05 -98016186896.0 +UniRef50_UPI00037FE958 hypothetical protein 4.8793045217e-06 2.04239654656e-05 6275570377.49 +UniRef50_B7UR12 Purine nucleoside phosphorylase DeoD type 0.00439971004135 0.00241404502703 -8.01637333131e+11 +UniRef50_C7ZTK0 0.0109440861639 0.00403931476013 -2.78754094678e+12 +UniRef50_UPI0004704B3B ABC transporter permease 2.40406699e-05 4.70773513151e-05 9300190979.15 +UniRef50_B9KCQ6 Polyphosphate kinase 6.0591651505e-05 0.00240530526739 9.46589659602e+11 +UniRef50_C5X9K2 9.90454725722e-05 0.000953050437718 3.44772284249e+11 +UniRef50_G7M2R9 ABC type transporter, periplasmic subunit family 3 0.000279619251005 0.000739837358076 1.85795697336e+11 +UniRef50_I0E8W5 8.53397111153e-05 0.00219286963168 8.5083569123e+11 +UniRef50_UPI000470B5F1 hypothetical protein, partial 0.000165226214149 0.000180399754985 6125744635.78 +UniRef50_Q41805 Extensin like protein 3.466733666e-06 1.8099495206e-06 -668864090.526 +UniRef50_Q5X5I2 Ribonuclease H 4.95919986044e-05 2.73818670852e-05 -8966502643.26 +UniRef50_G8VGX4 0.000412722542063 0.00686393774067 2.60443474099e+12 +UniRef50_A3PR71 Transcriptional regulator, GntR family 0.00476397688187 0.000670022927747 -1.65277944974e+12 +UniRef50_A1W649 Membrane lipoprotein lipid attachment site 0.000125389147293 9.51908017289e-06 -46778167982.0 +UniRef50_U3B280 1.05079898647e-05 7.10833080719e-05 24454999303.0 +UniRef50_A6M1W5 Periplasmic binding protein LacI transcriptional regulator 0.000475383202959 0.0015816981088 4.46632903498e+11 +UniRef50_C4RK38 Polyketide synthase 0.000133860279732 0.000226353014903 37340452202.0 +UniRef50_A7HH59 Ribosomal RNA small subunit methyltransferase H 6.13104205493e-06 0.00017040101598 66317804292.8 +UniRef50_UPI00038ED75B PREDICTED 9.8600309257e-06 1.10516635721e-05 481076722.329 +UniRef50_UPI00037D470D hypothetical protein 0.000169069567209 7.80030842106e-06 -65106378769.1 +UniRef50_A9GG06 3.64478080255e-06 0.000228597461204 90816157557.7 +UniRef50_Q03283 Urease subunit beta 2.19499168179e-05 0.00353325343717 1.4175563197e+12 +UniRef50_R7H8U8 Nitroreductase 0.000555126454193 0.000341406595601 -86281329551.2 +UniRef50_P75858 0.00467126415092 0.000856589379178 -1.54003101667e+12 +UniRef50_Q0ST10 Transcriptional regulator, Crp Fnr family 0.00306264660003 0.00103939205231 -8.1681268904e+11 +UniRef50_G8VPJ1 NAD specific glutamate dehydrogenase 9.62826894095e-06 0.00316864463512 1.27533367252e+12 +UniRef50_F0P4A3 Acetyltransferase, GNAT family 0.0229276700966 0.00649948025381 -6.6322618361e+12 +UniRef50_UPI000365B96C cytochrome C oxidase subunit I, partial 3.76491108749e-05 5.55042274723e-05 7208329677.29 +UniRef50_Q5HW32 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.000191711901895 0.00422387100072 1.62783210835e+12 +UniRef50_Q129M4 Ribosomal RNA large subunit methyltransferase E 4.52416574076e-05 4.01809671834e-05 -2043062745.16 +UniRef50_Q9SFH9 Delta aminolevulinic acid dehydratase 1, chloroplastic 1.27871054051e-05 2.35862525078e-05 4359748205.8 +UniRef50_UPI00036BED26 hypothetical protein 5.66051980098e-06 1.52793417572e-05 3883236459.94 +UniRef50_E8SNN7 Ribosomal protein 8.46591860258e-06 0.000221052354027 85823752709.6 +UniRef50_UPI000379BCC8 hypothetical protein 8.4442287031e-06 2.78851101755e-05 7848522416.85 +UniRef50_Q92947 Glutaryl CoA dehydrogenase, mitochondrial 2.53509656796e-05 0.000240517076478 86865199314.2 +UniRef50_Q5HS21 Lipase, putative 0.0124046045783 0.00518442855378 -2.91487366262e+12 +UniRef50_I2HEM4 3.6544216505e-05 0.000644327253476 2.45369470362e+11 +UniRef50_A0RIM4 L cystine uptake protein TcyP 0.00851916075504 0.0102571248938 7.01637450036e+11 +UniRef50_UPI0003C1735E PREDICTED 8.21900938102e-07 1.33362698152e-06 206590083.313 +UniRef50_Q49ZB9 0.0233936410807 0.00597432165255 -7.03239301221e+12 +UniRef50_W1WJ70 4.95299346306e-05 3.63500087069e-05 -5320897831.28 +UniRef50_C5N256 Bacteriocin, lactococcin 972 family 0.0109756638068 0.000608900423076 -4.18518959249e+12 +UniRef50_Q1R4E5 0.000865327217169 0.000294335586571 -2.30516328128e+11 +UniRef50_Q9X5W3 Cyclic pyranopterin monophosphate synthase 1.06380096741e-05 7.97185750055e-05 27888671938.2 +UniRef50_UPI0003B792B2 FAD dependent oxidoreductase 1.42125134306e-05 1.69452598868e-05 1103243278.94 +UniRef50_M9VD00 0.0006738233878 0.00566662922101 2.01565698348e+12 +UniRef50_A7IJF9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding 0.00202519472778 0.000487002524188 -6.2098706833e+11 +UniRef50_UPI000373BD8F hypothetical protein 0.000199730517482 4.13157993623e-05 -63953965672.2 +UniRef50_Q2G607 Phosphate import ATP binding protein PstB 1.9246639282e-05 0.000193023861011 70155996898.3 +UniRef50_G0A719 Type VI secretion protein, VC_A0114 family 3.57544057112e-06 6.3434105708e-06 1117463455.68 +UniRef50_Q9I696 Component of chemotactic signal transduction system 0.000193068430848 0.000285978824189 37509065930.5 +UniRef50_M1FEG3 Sporulation initiation inhibitor protein soj 0.000648522788994 2.30725731556e-05 -2.52501927271e+11 +UniRef50_C0ERG4 0.00027008406986 0.000316902353442 18901115607.0 +UniRef50_UPI0003B646B9 hypothetical protein 3.66028307627e-06 4.50495268159e-06 341003484.929 +UniRef50_B9KQI0 Type III secretion system inner membrane R protein 0.0146759790381 0.00319868674853 -4.63352373953e+12 +UniRef50_P44614 Tryptophan specific transport protein 0.00485095542886 0.000963352338842 -1.5694730737e+12 +UniRef50_G2JMU8 0.000243016731023 0.0133790551135 5.30317989233e+12 +UniRef50_B1J5I1 6.89853022232e-06 1.18341773461e-05 1992581311.07 +UniRef50_B4VCX3 3.8983717979e-05 5.41642554932e-06 -13551527870.9 +UniRef50_UPI0003B55D0D CTP synthetase 3.30068040309e-06 1.95316094877e-05 6552625247.35 +UniRef50_P56860 Phosphoadenosine phosphosulfate reductase 1.18425721906e-05 0.0139365158458 5.62156147551e+12 +UniRef50_Q03T56 Ribosomal RNA small subunit methyltransferase A 2.72266313712e-05 3.76328447706e-05 4201116047.94 +UniRef50_W6KBC4 3.2801619204e-05 5.87263941285e-06 -10871559597.4 +UniRef50_P42628 Inner membrane transport protein YhaO 0.002577755407 0.00441545478478 7.41901789917e+11 +UniRef50_R4KE37 0.00104523293712 0.000561183422741 -1.9541672891e+11 +UniRef50_A4WUY8 Substrate binding region of ABC type glycine betaine transport system 0.00920759330504 0.00069423888041 -3.43694565183e+12 +UniRef50_UPI00026C5B6F transcriptional regulator 6.84447946218e-05 0.000374176062183 1.23427464459e+11 +UniRef50_UPI00035D359F hypothetical protein, partial 3.56834704693e-06 2.51514632171e-06 -425190056.998 +UniRef50_UPI0004648BE1 chemotaxis protein CheW 2.82681472667e-05 4.79417105607e-05 7942458923.56 +UniRef50_UPI0002B4606A PREDICTED 0.000117872905744 7.0167976165e-06 -44753971208.3 +UniRef50_P30177 0.00536453528811 0.00128311148592 -1.64772087365e+12 +UniRef50_UPI0004723693 PTS system lactose specific transporter subunit IIA 5.06920177655e-05 4.63991260427e-05 -1733093068.2 +UniRef50_Q04804 Sensor protein PfeS 0.000942034586082 0.00020632363615 -2.97015538676e+11 +UniRef50_O33566 ORF700 protein 0.00256060600159 5.80317228756e-05 -1.01031994636e+12 +UniRef50_UPI0004678A2B cystathionine beta lyase, partial 2.93689426824e-05 0.000101260101921 29023343188.4 +UniRef50_UPI00037D0482 50S ribosomal protein L6 8.61366620339e-06 0.000269362574228 1.05267533919e+11 +UniRef50_F0VF06 1.06869509062e-06 1.68125183531e-06 247296674.748 +UniRef50_P37047 Carbohydrate diacid regulator 0.0026678854304 0.00055877126603 -8.51475269897e+11 +UniRef50_UPI000475D4DC hypothetical protein 3.67780271062e-06 4.85887077572e-06 476811671.216 +UniRef50_UPI0003124421 hypothetical protein 2.05663687536e-05 5.50077780602e-05 13904419580.7 +UniRef50_P50735 Cryptic catabolic NAD specific glutamate dehydrogenase GudB 4.96965260715e-06 0.000377390158577 1.50350728374e+11 +UniRef50_A4XNZ9 Lysine exporter protein 0.000501087595826 0.00478388132025 1.72901638234e+12 +UniRef50_U4V580 UPF0301 protein HIMB11_01782 3.76897860925e-05 7.26699372455e-05 14121916275.2 +UniRef50_UPI00036AF0AB hypothetical protein 1.51049159358e-05 5.07284145377e-05 14381643535.1 +UniRef50_B8D1K3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.54160793162e-05 0.00346950774597 1.3944591923e+12 +UniRef50_A5UJ58 Adhesin like protein 0.00229880269678 0.000476317266442 -7.35759732639e+11 +UniRef50_UPI0003703272 hypothetical protein 1.61316082511e-06 8.23581394483e-06 2673646333.52 +UniRef50_E2ZSG3 Glycolate oxidase, iron sulfur subunit 1.31330069224e-05 2.24412737548e-05 3757861545.52 +UniRef50_L6WWY8 0.000302396989976 0.000137044480224 -66754837290.4 +UniRef50_UPI000225FE4D coenzyme PQQ biosynthesis protein D 0.000106206693939 7.11232719528e-05 -14163607977.8 +UniRef50_UPI0004700C7A hypothetical protein, partial 5.57525325827e-06 1.6687846053e-05 4486290078.07 +UniRef50_K1ZX87 1.78410397243e-05 3.86097305425e-05 8384575343.8 +UniRef50_D3QET9 0.0137331681876 0.00329273510606 -4.21493095352e+12 +UniRef50_M5X9E3 3.44256423507e-05 2.68035573355e-05 -3077129254.14 +UniRef50_A0A024HK83 DNA polymerase III subunit epsilon 0.000220752040266 0.00072121761978 2.02044095853e+11 +UniRef50_Q0FDU0 2.19411619326e-05 2.26554242169e-05 288356449.156 +UniRef50_O34591 Acetoin 0.0116559460306 0.0115344620238 -49044584321.6 +UniRef50_UPI00034B0D3D hypothetical protein 1.99674784254e-05 6.36726592939e-06 -5490572678.01 +UniRef50_A7ZKH0 Multidrug resistance protein MdtH 0.00279545926657 0.00149043239446 -5.26855362751e+11 +UniRef50_A6M3F8 Metal dependent phosphohydrolase 0.000262143047812 0.00207258329605 7.30896944815e+11 +UniRef50_A7ZMQ9 UPF0756 membrane protein YeaL 0.00514753621162 0.000407333386473 -1.91367804934e+12 +UniRef50_A4WXX3 Transcriptional regulator, DeoR family 0.00138947465983 0.000233144767263 -4.66824567394e+11 +UniRef50_F6AYF6 TonB dependent siderophore receptor 0.000213304303761 0.0096243078876 3.7993376328e+12 +UniRef50_UPI00037C438D hypothetical protein 1.24226973165e-06 2.03582519587e-06 320368078.926 +UniRef50_UPI00047806EC hypothetical protein 3.68664442149e-06 2.51068396993e-05 8647595689.0 +UniRef50_D6B3T3 Polyketide synthase 0.000380166456054 6.73002942567e-05 -1.26307908817e+11 +UniRef50_L8UIS8 8.76434499951e-05 4.95871227016e-05 -15363806332.0 +UniRef50_Q9RXC5 0.000209496058222 0.0390166753048 1.56669344795e+13 +UniRef50_C1D4B9 Recombination associated protein RdgC 0.000851879013176 0.00344743405807 1.04785742266e+12 +UniRef50_Q71YN8 Peptidase T 0.0323403818888 0.0188104559663 -5.46219712577e+12 +UniRef50_Q2RMC1 Peptidyl tRNA hydrolase 4.53925548609e-05 1.30148930409e-05 -13071259395.3 +UniRef50_A0A009R5V4 TetR family transcriptional regulator domain protein 0.000216014603453 8.7780808855e-05 -51769556484.8 +UniRef50_UPI000466D206 50S ribosomal protein L17 7.04515482458e-05 9.68359430347e-05 10651703949.2 +UniRef50_R7PX92 Chlamydial polymorphic outer membrane protein repeat containing domain protein 7.13851464801e-05 4.91934179698e-06 -26833060977.7 +UniRef50_Q5H1S4 Acyl CoA dehydrogenase 0.00518503437907 0.00270163367077 -1.00257934069e+12 +UniRef50_Q2NGB7 Transporter 0.00443202770759 0.00101835446879 -1.37814177698e+12 +UniRef50_A5UNH0 0.0022498671239 0.000896201212874 -5.46491539632e+11 +UniRef50_A5UNH3 0.0019004762106 0.0021572463838 1.03661269845e+11 +UniRef50_E6UB19 Arginine biosynthesis bifunctional protein ArgJ 0.000434972063444 0.00113807229048 2.83850189664e+11 +UniRef50_UPI00036661AC hypothetical protein 3.44615632153e-05 4.88145171633e-05 5794463639.36 +UniRef50_K2EUH3 5.69023122866e-05 1.85209847686e-05 -15495012910.9 +UniRef50_P06971 Ferrichrome iron receptor 0.00295515708199 0.000350439699142 -1.05155637093e+12 +UniRef50_Q04CP4 Fhu operon transcription regulator 0.00497367021258 0.00112074036404 -1.55547506062e+12 +UniRef50_O19889 Uroporphyrinogen III C methyltransferase 2.11040011233e-05 3.01510580434e-05 3652407898.52 +UniRef50_Q47427 Tail fiber assembly protein homolog 0.00205524027409 2.27201665278e-05 -8.20553309248e+11 +UniRef50_Q04G79 30S ribosomal protein S3 0.00481408644045 0.00521175482733 1.60543607723e+11 +UniRef50_A4WDR5 Anaerobic nitric oxide reductase transcription regulator NorR 0.00330482542509 0.000200291431097 -1.25333847029e+12 +UniRef50_I2JKJ5 Bifunctional adenylate cyclase hybrid sensor diguanylate cyclase response regulator 1.96575340115e-05 9.81945340175e-05 31706350659.8 +UniRef50_K7Y9Y7 Outer membrane protein 0.000154707372483 0.00417709019422 1.62388530532e+12 +UniRef50_Q4L6H4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0198217411377 0.0228644933931 1.22839642427e+12 +UniRef50_UPI0003B53166 hypothetical protein 0.00025846962913 0.000339476459576 32703451516.6 +UniRef50_UPI00046E53C7 hypothetical protein 1.36957664735e-06 2.28230021775e-05 8661011149.64 +UniRef50_U3SZE2 0.000295172210686 0.00449701408499 1.69633512705e+12 +UniRef50_A6LP67 Aminomethyltransferase 3.7794114564e-05 1.43697569023e-05 -9456700637.22 +UniRef50_C3K475 Acetylglutamate kinase 0.000879493298011 0.00833109184008 3.00830177283e+12 +UniRef50_UPI0003677E0E hypothetical protein 1.00606321404e-05 0.000156532233852 59132383019.8 +UniRef50_UPI0002BC90CC PREDICTED 3.58747273317e-06 1.37844349105e-05 4116638761.77 +UniRef50_Q1M667 Blue light activated histidine kinase 3.50797147394e-05 3.28226154736e-05 -911218671.326 +UniRef50_E3A0D4 0.000926455114066 0.000304974222238 -2.50899462459e+11 +UniRef50_Q3J430 ATP synthase epsilon chain 1 0.00648982891585 0.000760472202226 -2.3130116124e+12 +UniRef50_R0TGF0 0.000228140541416 0.000632821511128 1.63374673467e+11 +UniRef50_E3HHW2 Pirin C terminal cupin domain protein 2 1.9741991764e-05 4.82260231688e-06 -6023140601.29 +UniRef50_UPI0003B4B661 hypothetical protein, partial 0.0001321497423 4.16887110219e-05 -36520228408.7 +UniRef50_C6BYG5 UDP N acetylmuramate L alanine ligase 3.94110094315e-06 7.09810001829e-06 1274519267.37 +UniRef50_Q2J728 Translation initiation factor IF 2 0.0003308209786 0.0105939275634 4.14334207076e+12 +UniRef50_W8SB38 Pe pgrs family protein 7.43773360583e-06 6.66474944059e-05 23903707020.5 +UniRef50_A0A009HBV1 Ferrous iron transport protein B 0.000153768728707 0.0110218444381 4.38757553017e+12 +UniRef50_UPI000382BA5B DNA glycosylase 6.91541118095e-05 4.88608850105e-05 -8192624684.65 +UniRef50_E2PFC0 4.14773871599e-05 0.000219345176899 71807409400.9 +UniRef50_D6SIZ2 Luciferase family oxidoreductase, FMN dependent, PP_0088 family 0.0264795109874 0.00766559231302 -7.5954098416e+12 +UniRef50_E8SJV4 Secretory antigen SsaA 0.0105223202959 0.000222880532219 -4.15801022094e+12 +UniRef50_Q8FJN9 Cardiolipin synthase B 0.00269441546301 0.000796215476306 -7.66326628164e+11 +UniRef50_A8TW43 Beta lactamase like protein 4.44002558944e-05 9.32076139124e-06 -14162022404.7 +UniRef50_UPI0004652B1C hypothetical protein 1.12853808788e-05 7.37062759403e-06 -1580433940.49 +UniRef50_UPI00031CBF3C hypothetical protein 2.7158762497e-05 3.12182724186e-06 -9704005728.85 +UniRef50_UPI000310C5E8 hypothetical protein 7.92521408376e-05 0.000109597617659 12250841373.7 +UniRef50_F5M2T1 Diguanylate cyclase 0.0091085131109 0.000725118959036 -3.38447909492e+12 +UniRef50_UPI0003769589 hypothetical protein 8.12213480441e-06 5.6289108381e-05 19445598308.1 +UniRef50_P26276 Phosphomannomutase phosphoglucomutase 0.000394684521467 0.000364709898942 -12101122943.3 +UniRef50_C8RWL5 0.000203803755852 0.000103253912421 -40593205678.4 +UniRef50_Q3Z396 Deferrochelatase peroxidase EfeB 0.00426707625365 0.000313407946967 -1.59614441237e+12 +UniRef50_A9UTR3 Predicted protein 8.24993790657e-06 1.29082644261e-05 1880623580.03 +UniRef50_T0I6W5 2.58476803046e-05 2.00381440775e-05 -2345381065.91 +UniRef50_P0AC04 Outer membrane protein assembly factor BamD 0.00367800029486 0.00119036375135 -1.00428939935e+12 +UniRef50_A0A022S625 UvrD REP helicase N terminal domain protein 6.73652114688e-05 0.00815320498135 3.26435273951e+12 +UniRef50_A1B5D2 0.00153811082933 0.000710995997344 -3.33916407513e+11 +UniRef50_A1B5D1 6.37106323794e-05 2.6083315932e-05 -15190609388.9 +UniRef50_C1A399 Arginine deiminase 6.52745271495e-06 1.17929395753e-05 2125741660.31 +UniRef50_W5XHV0 Glycosyltransferase 36 0.000147953364439 0.000291414085125 57916853401.9 +UniRef50_C4Z0Q8 Galactose 6 phosphate isomerase 0.000537362878444 0.00427524006556 1.50902688935e+12 +UniRef50_Q3IX62 0.00138206341026 0.000101729979102 -5.16886317617e+11 +UniRef50_Q3IX61 0.00759564519592 0.00224270375944 -2.16104814589e+12 +UniRef50_A3YTK8 MazG 1.46690931906e-05 9.38683732276e-06 -2132511514.42 +UniRef50_W5X9I3 UDP glucose pyrophosphorylase 4.93940207852e-05 1.41117955691e-05 -14243867281.3 +UniRef50_A3CQV0 33 kDa chaperonin 0.00347770362184 0.00409774080656 2.50316620183e+11 +UniRef50_UPI0003666D5F hypothetical protein 5.19693405252e-05 4.26306526711e-05 -3770142885.29 +UniRef50_L0DXM3 ADP heptose lipooligosaccharide heptosyltransferase II 0.000161548925324 0.00399347606755 1.54699601035e+12 +UniRef50_UPI000370C5F4 MULTISPECIES 6.85062166732e-06 0.000197348534025 76906344891.2 +UniRef50_Q8DV84 0.00565142415826 0.00216863125405 -1.4060462341e+12 +UniRef50_G0EVT1 D lactate dehydrogenase 0.00124223561794 0.000190118050557 -4.24752772886e+11 +UniRef50_F4BQ82 NADH peroxidase 0.00867277368233 0.00169250067474 -2.81802187075e+12 +UniRef50_A4WXA2 Sulfotransferase 0.000925636674667 8.38967912513e-05 -3.39820720245e+11 +UniRef50_W0Z1I7 0.000329279650037 0.000195263113306 -54104120446.1 +UniRef50_W7JJV3 0.000248346045292 8.0920393093e-05 -67591790336.5 +UniRef50_Q5XAQ1 Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase 0.00463445492129 0.00441034321433 -90476646259.7 +UniRef50_Q9MA93 Glucose and ribitol dehydrogenase homolog 2 2.59182594791e-05 6.19301784008e-05 14538453584.6 +UniRef50_UPI000255EED3 acetolactate synthase 3 regulatory subunit 1.25558028247e-05 0.000225534882495 85982268010.0 +UniRef50_UPI0003B75ED8 3 hydroxyacyl CoA dehydrogenase 2.37520368161e-06 4.9808186197e-06 1051918725.0 +UniRef50_I6TX78 Competence protein transcription factor 0.00562646504624 0.00262115587353 -1.21328019231e+12 +UniRef50_A9FDL0 tRNA N6 adenosine threonylcarbamoyltransferase 5.88576930307e-06 1.28147942615e-05 2797332404.42 +UniRef50_D3DZK4 Sortase family protein 0.00546430550572 0.00105267516554 -1.78102930512e+12 +UniRef50_Q9RWY1 Serine threonine protein kinase related protein 0.000239043627327 0.0579704021936 2.33068578967e+13 +UniRef50_Q47153 Putative protein FhiA 0.00547909844496 0.000411373672018 -2.04590267881e+12 +UniRef50_U6GAH2 6.61143300058e-06 3.22046580918e-06 -1368975067.01 +UniRef50_I4YVM4 3.00215148816e-05 1.8691572408e-05 -4574036810.62 +UniRef50_V9XXU2 0.000417092972124 0.00053921152176 49300757051.2 +UniRef50_P77766 Protein TrpH 0.00240220542502 0.00129411112873 -4.47351265258e+11 +UniRef50_P69827 PTS system mannitol specific cryptic EIICB component 0.00168743322254 0.00127301288228 -1.67306576872e+11 +UniRef50_T2EKM2 Fic DOC family protein 0.000345092107772 0.000357341313693 4945154744.97 +UniRef50_UPI000309099A hypothetical protein 8.04936175202e-05 0.000201972825941 49042647157.1 +UniRef50_S5Y902 2.73905820559e-05 2.67366148739e-05 -264014576.453 +UniRef50_UPI0003B7338D proline iminopeptidase 8.27447744401e-06 1.2374039873e-05 1655043659.87 +UniRef50_Q3IWE2 Integrase family protein 0.012260760857 0.00277028221382 -3.83142268952e+12 +UniRef50_P0DH75 Orotate phosphoribosyltransferase 0.0214324677234 0.00643371012611 -6.05518249748e+12 +UniRef50_A0A037X3F6 Sodium 0.000638143883878 0.000128959259902 -2.05564081097e+11 +UniRef50_X1CKD2 Marine sediment metagenome DNA, contig 2.43074058672e-05 1.04917836046e-05 -5577536244.16 +UniRef50_UPI000382C157 MULTISPECIES 1.16472740954e-05 6.30917958462e-06 -2155054259.79 +UniRef50_Q8PY83 CoB CoM heterodisulfide reductase 1 subunit B 0.00316998445477 0.000360875810829 -1.1340716312e+12 +UniRef50_P58253 Stage 0 sporulation protein A homolog 0.00013827325599 0.00116843210215 4.15887767665e+11 +UniRef50_Q06400 UPF0394 inner membrane protein YedE 0.00239822768777 0.000350907583857 -8.26528249391e+11 +UniRef50_A6L2R5 L arabinose isomerase 1.56083842572e-05 0.00583986046704 2.35132203743e+12 +UniRef50_UPI000382BAEE hypothetical protein, partial 7.69763534325e-05 2.22378650835e-05 -22098599463.3 +UniRef50_Q12SM7 Argininosuccinate synthase 4.28170401796e-06 6.36284076096e-05 23958992505.9 +UniRef50_UPI0003760F37 hypothetical protein 7.75438859203e-06 1.31032623301e-05 2159405966.12 +UniRef50_G7U6J5 Transporter, major facilitator family protein 0.000189834543044 0.00796609843678 3.13937315939e+12 +UniRef50_UPI00040DB596 hypothetical protein 8.94430757772e-06 5.13048862245e-06 -1539685513.06 +UniRef50_P31446 Inner membrane protein YidI 0.0021773525917 0.00212403689804 -21524199787.7 +UniRef50_G2QV25 0.000149994432661 0.000226875829852 31037963486.8 +UniRef50_UPI0003B518FF glycerophosphoryl diester phosphodiesterase 6.36631692428e-06 1.32402635297e-05 2775096597.42 +UniRef50_D5ATD5 Flagellar protein, putative 0.000149956634045 5.75843959422e-05 -37291806056.9 +UniRef50_UPI00046CA2CA hypothetical protein 1.8191231751e-06 0.000297830893155 1.19503584014e+11 +UniRef50_UPI0003C18CFE PREDICTED 6.73724572859e-06 2.29166212526e-05 6531812442.3 +UniRef50_P57487 Endonuclease 1 0.00237116977459 0.00195932616735 -1.66266318132e+11 +UniRef50_P0C0R4 Lipase 0.0228640233925 0.00621830992186 -6.72007879396e+12 +UniRef50_Q5QKR8 UDP N acetylglucosamine 4,6 dehydratase 0.00529579086442 0.00437979518392 -3.69798696749e+11 +UniRef50_L7LQU6 Putative monotil peptide 0.0001081934572 0.000111490969176 1331246049.73 +UniRef50_U6MR10 2.09210782683e-05 7.51430106113e-06 -5412480478.2 +UniRef50_W4TVZ8 Heme ABC transporter 0.000147698784763 0.00063988827649 1.98702937654e+11 +UniRef50_E1PY25 0.000115793248112 0.0030632883327 1.18993993548e+12 +UniRef50_W6R6D1 3.66191644304e-06 5.24363577465e-06 638559504.05 +UniRef50_M0DCT7 ABC transporter 0.000170001773494 0.000220143564313 20242856262.6 +UniRef50_A1TM37 Adenylosuccinate synthetase 8.4201052194e-06 1.48190700826e-05 2583340639.4 +UniRef50_C7ND01 Diphosphomevalonate decarboxylase 0.000465935712518 0.000188099812232 -1.12165762375e+11 +UniRef50_A6LU62 0.00025679318969 0.000417900997911 65041199193.9 +UniRef50_A3PMY6 ABC transporter related 0.00227250364417 0.000837480395854 -5.79336495062e+11 +UniRef50_R6SI27 MATE family multi antimicrobial extrusion protein 0.000323989112238 0.00126778811233 3.81023238053e+11 +UniRef50_K9GVE2 Flp pilus assembly protein TadB 0.000104393563199 2.08546251968e-05 -33725694409.5 +UniRef50_UPI000464BD2D hypothetical protein 9.46996333261e-06 5.1657024994e-06 -1737682917.59 +UniRef50_UPI0004702CEA UDP diphosphatase 3.5680475922e-05 2.49229883237e-05 -4342929752.65 +UniRef50_K6DGD7 0.000144486421937 4.85375355443e-05 -38735742862.0 +UniRef50_Q6GIU7 Quinolone resistance protein NorA 0.0179421536492 0.00516981772652 -5.15634874618e+12 +UniRef50_D9SRN1 Cation diffusion facilitator family transporter 0.000294339764276 0.00128103038671 3.98339112332e+11 +UniRef50_B0BXC2 Holliday junction ATP dependent DNA helicase RuvA 1.39302050565e-05 1.10428037697e-05 -1165679331.88 +UniRef50_UPI0003592A52 PREDICTED 3.64537532825e-05 5.72209603517e-05 8383976336.12 +UniRef50_F8LQS7 0.00369522145188 0.00256434807235 -4.56547460693e+11 +UniRef50_UPI00047D9DA7 membrane protein 2.80203427805e-05 1.99766895275e-05 -3247321524.96 +UniRef50_G7M6Q3 Lysophospholipase 0.000115556935367 0.00086050984064 3.00746629459e+11 +UniRef50_UPI00034C319E hypothetical protein 0.00150171477598 0.000548501996132 -3.84823696461e+11 +UniRef50_B0KR46 N succinylarginine dihydrolase 0.00548156161458 0.0100844671499 1.85824944861e+12 +UniRef50_UPI000360EE81 hypothetical protein, partial 0.00476070088473 0.000993782766318 -1.52075106969e+12 +UniRef50_UPI000373527A hypothetical protein, partial 6.57580309844e-06 0.000180891701378 70373467232.3 +UniRef50_UPI000273E344 1.75723901069e-05 0.000206515178457 76278522245.6 +UniRef50_UPI0003B4641B tRNA delta isopentenylpyrophosphate transferase 5.85922950512e-06 6.47617179033e-06 249067171.272 +UniRef50_P65858 tRNA pseudouridine synthase B 0.00472598894426 0.00228511505579 -9.85410741666e+11 +UniRef50_A6LF29 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.12815880732e-05 4.85591010407e-05 15049389431.5 +UniRef50_W0Z6N6 Rhs element Vgr protein 1.3950637452e-05 2.8895959412e-05 6033609874.98 +UniRef50_Q49UP7 0.000986091429104 0.000107946332005 -3.54517951751e+11 +UniRef50_E4A2Y9 0.000120843330125 0.000333756487901 85955654532.4 +UniRef50_Q3JRD1 4.77007516841e-06 1.3897682051e-06 -1364671402.12 +UniRef50_Q65UG3 Zinc import ATP binding protein ZnuC 1.83482592107e-05 6.27546989148e-06 -4873933197.95 +UniRef50_C6SJL2 Glutaminyl tRNA synthetase 0.000101839745189 0.000938655064242 3.3783261318e+11 +UniRef50_Q6FFB2 Argininosuccinate lyase 0.000276989087549 0.0091263797547 3.57260760656e+12 +UniRef50_O67691 Phosphoribosylformylglycinamidine synthase 2 1.32131126277e-05 2.42464281413e-06 -4355437653.16 +UniRef50_Q1I3E4 4.01668764398e-05 9.58809611391e-05 22492459681.8 +UniRef50_I3DVS9 Ribosylpyrimidine nucleosidase 8.61534528749e-06 4.07296790408e-05 12964950623.4 +UniRef50_A5UKN8 Formate dehydrogenase, iron sulfur subunit 0.00278333064957 0.000353672700827 -9.80882729162e+11 +UniRef50_A0A029LKQ2 Transposase IS66 family protein 1.65370147268e-05 3.4898894268e-05 7412916096.38 +UniRef50_I0BK74 Transcriptional regulator 0.000147647714023 0.000767527508587 2.50253079846e+11 +UniRef50_UPI0004281C6D hypothetical protein 8.78828452901e-06 2.66158836521e-06 -2473422424.34 +UniRef50_UPI0004776DB1 hypothetical protein, partial 2.51637073451e-05 0.000101320463775 30745417119.2 +UniRef50_Q3JKK7 9.83702684725e-05 0.000351928292478 1.02364485798e+11 +UniRef50_Q5F973 Phosphoribosylformylglycinamidine cyclo ligase 0.0258141219175 0.0179972795609 -3.1557551828e+12 +UniRef50_M9S656 Short chain dehydrogenase 0.000189691451679 0.00145539612703 5.10980509382e+11 +UniRef50_Q48P72 Acyl CoA dehydrogenase family protein 0.000327102125375 0.000523577800771 79319641185.0 +UniRef50_J1KAC8 0.00773985994521 0.00272877465217 -2.02303662573e+12 +UniRef50_D3E112 Polysaccharide biosynthesis protein 0.00135832960428 0.00166877178344 1.25329317281e+11 +UniRef50_UPI000443C5AC PREDICTED 5.08267091565e-06 5.92579757507e-05 21871235367.6 +UniRef50_P64634 Putative DNA utilization protein HofN 0.000212070780251 0.00292405338383 1.09486065683e+12 +UniRef50_UPI0003B6BEF2 3 dehydroquinate dehydratase 7.33240170063e-05 6.43211608159e-05 -3634563521.53 +UniRef50_X6KT46 7.1725400588e-05 8.1206852571e-05 3827778516.04 +UniRef50_A7FFL7 Protein NrdI 2.00179836386e-05 6.50117522155e-05 18164536510.1 +UniRef50_UPI000381D661 hypothetical protein 5.20169759313e-06 3.01022016333e-05 10052639044.6 +UniRef50_UPI00031610FF hypothetical protein 6.30823079966e-06 3.16510609459e-05 10231211521.5 +UniRef50_W8AT56 Putative transposase, IS630 family 3.33182604122e-05 0.000464386041358 1.74027352964e+11 +UniRef50_UPI0003B5E3DD GTPase Era 6.86347782843e-06 8.35234719837e-05 30948580364.4 +UniRef50_A3VZS1 1.84528921436e-05 6.18775269702e-06 -4951587304.78 +UniRef50_P21893 Single stranded DNA specific exonuclease RecJ 0.00341374718866 0.000626122744708 -1.12539819602e+12 +UniRef50_W6RJG6 8.70158500796e-06 1.69582412709e-05 3333313453.91 +UniRef50_Q5HDD6 Gamma hemolysin component A 0.0287295199174 0.00455629671131 -9.75902684711e+12 +UniRef50_UPI0002F9333F hypothetical protein 4.14411895905e-06 1.20072126175e-05 3174427400.93 +UniRef50_Q3IV09 O acetylhomoserine sulfhydrylase 0.022417953824 0.00400494112946 -7.43355917784e+12 +UniRef50_A4VNQ6 Long chain fatty acid CoA ligase 0.000844313373164 0.000728833268361 -46620735409.2 +UniRef50_UPI00046FBE0E purine nucleoside phosphorylase 2.07941840203e-05 9.29909893461e-05 29146736264.5 +UniRef50_UPI00016C0F2D oligopeptide transport system permease protein 4.9244683723e-06 4.50967561077e-06 -167456927.909 +UniRef50_V4RCH7 2.08972145252e-05 2.84080852529e-05 3032230681.52 +UniRef50_W8RY81 ATP phosphoribosyltransferase regulatory subunit 0.000376530714836 0.000259429023591 -47275389755.0 +UniRef50_F9JWB9 Tandem lipoprotein 4.10940930017e-05 5.05991465309e-05 3837306749.86 +UniRef50_W7Q3C9 2.5314171067e-05 9.84306664612e-05 29518026430.9 +UniRef50_Q9RSL6 Molybdate metabolism regulator related protein 0.000118581986021 0.0339540040705 1.36597751028e+13 +UniRef50_Q89DJ1 Ribose phosphate pyrophosphokinase 0.00783753989287 0.00262088552144 -2.10602738529e+12 +UniRef50_V5SZD4 Chemotaxis protein 0.000713818312355 0.000667165698207 -18834232823.5 +UniRef50_P31069 Voltage gated potassium channel Kch 0.00270026405514 0.00176148646986 -3.78996031274e+11 +UniRef50_UPI00037DB293 glutaredoxin, partial 0.000154490156105 0.000129934472292 -9913430887.43 +UniRef50_X3EPV1 1.74051061113e-05 2.42703907175e-05 2771599642.04 +UniRef50_N6UFE0 4.08838834928e-05 0.000347020118898 1.23590954947e+11 +UniRef50_A5ULK1 Adenine deaminase 0.00301534187372 0.000549811784091 -9.9536475264e+11 +UniRef50_K8EIP5 Radical SAM superfamily protein 0.00506574266553 0.00122666056066 -1.54988455657e+12 +UniRef50_UPI0001CE17CF PREDICTED 4.57914633382e-06 3.7486955631e-06 -335263166.917 +UniRef50_A8LML0 Major facilitator superfamiy transporter 0.00804211490641 0.00248969110144 -2.24158162597e+12 +UniRef50_D8UEV7 3.77171590964e-06 4.8541817855e-05 18074239546.3 +UniRef50_Q49ZY7 0.00228693613597 0.00419304919855 7.69521234001e+11 +UniRef50_Q8FP91 Probable malate 3.07473975058e-06 1.03634110099e-05 2942526029.44 +UniRef50_D3E2A1 Adhesin like protein 9.04497122279e-08 2.28645810921e-07 55791460.8992 +UniRef50_C6M427 0.0001771428932 0.00131784323675 4.60514726658e+11 +UniRef50_B0VBR0 1.22767796998e-05 0.0054060114159 2.1775168612e+12 +UniRef50_F2HSU2 0.000205600681968 0.000289162496845 33734930084.6 +UniRef50_UPI00037460BA hypothetical protein 0.000344723354045 0.000311406016025 -13450618208.4 +UniRef50_UPI00046ED203 hypothetical protein 3.42862577594e-06 2.7790672943e-05 9835257397.3 +UniRef50_Q5HHH0 Probable cysteine desulfurase 0.0135115519945 0.00325912101124 -4.13903219943e+12 +UniRef50_K0LZ01 Aminoacylase 0.0154030767049 0.00126939282875 -5.70594162059e+12 +UniRef50_O05158 PAGS 5 0.00542398282029 0.000453379909403 -2.00669339128e+12 +UniRef50_UPI00036B729E hypothetical protein 1.31138581793e-05 1.63627005533e-05 1311597534.16 +UniRef50_UPI0001CBAA68 PREDICTED 1.35280573419e-05 1.11812774006e-05 -947423860.531 +UniRef50_UPI000476A0F0 hypothetical protein 8.08136948849e-06 0.000126264849105 47712120995.8 +UniRef50_UPI000225A96D DNA replication and repair protein 6.77785150383e-06 9.36341710742e-06 1043824562.63 +UniRef50_I3TRT4 1.27970421916e-05 4.0302512434e-05 11104295866.9 +UniRef50_A3PS72 0.0321057999872 0.0247517978237 -2.96890091716e+12 +UniRef50_D0D1V0 ISSpo9, transposase 0.000322852848804 5.27379461516e-06 -1.28210561309e+11 +UniRef50_E1RJD9 Radical SAM domain protein 0.00366313905256 0.0011019615324 -1.03397879407e+12 +UniRef50_P56480 ATP synthase subunit beta, mitochondrial 2.10459577151e-05 6.5573744164e-06 -5849218872.6 +UniRef50_UPI0003663FE6 hypothetical protein 7.5032212379e-06 3.04894990675e-05 9279842433.16 +UniRef50_Q1CT84 Outer membrane lipoprotein carrier protein 0.000205155428724 0.0014441743997 5.00207163057e+11 +UniRef50_UPI0003B62AA1 MULTISPECIES 6.75688760049e-06 5.76319452037e-05 20538885061.6 +UniRef50_Q74I98 tRNA ) methyltransferase 0.0174224187073 0.00594022313677 -4.6355032542e+12 +UniRef50_UPI0002629E92 molybdenum cofactor biosynthesis protein 7.3835195362e-06 2.64159803486e-06 -1914371900.01 +UniRef50_R4ZNC7 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 0.000477843286018 0.000144644916828 -1.34516270446e+11 +UniRef50_UPI00036F9B44 hypothetical protein, partial 6.15284834845e-06 1.22263262076e-05 2451937541.69 +UniRef50_Q0BGD7 Putative ribose galactose methyl galactoside import ATP binding protein 1 1.24595346227e-05 1.93302950253e-05 2773810288.24 +UniRef50_T2EKK2 Type I restriction modification DNA specificity domain protein 0.00111828402562 0.000170211357467 -3.82748570293e+11 +UniRef50_B4RVP1 Lipoprotein signal peptidase 8.20562129306e-06 3.22802041214e-05 9719204516.14 +UniRef50_Q2YYZ8 UPF0060 membrane protein SAB2216c 0.00305000736918 0.0019978107061 -4.2478470479e+11 +UniRef50_B5F8H0 Glutathione regulated potassium efflux system ancillary protein KefG 0.00688455291034 0.00096825149244 -2.38848348359e+12 +UniRef50_UPI000374D55A MULTISPECIES 3.59359338876e-05 0.00153745336461 6.06181012473e+11 +UniRef50_A0A024JQ60 Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Fragment) 2.30009104127e-05 5.05836967834e-05 11135509336.7 +UniRef50_A6LWE1 Multi sensor hybrid histidine kinase 0.00034557873077 0.000586993701942 97462186357.0 +UniRef50_G7LY47 Multi sensor signal transduction histidine kinase 6.45275194619e-05 0.00194883387429 7.60717598484e+11 +UniRef50_D3P6U6 ATP dependent helicase Lhr and Lhr like helicase 0.0143689982943 0.00473817093866 -3.88808318701e+12 +UniRef50_C4ZIQ5 Transcriptional regulator, BadM Rrf2 family 1.8870070735e-05 2.5112341999e-05 2520081510.56 +UniRef50_UPI0003B7698F hypothetical protein 1.08765144268e-05 2.0407747564e-05 3847875778.87 +UniRef50_UPI00046423BB MULTISPECIES 5.87092710625e-05 2.23733678578e-05 -14669250015.4 +UniRef50_P0AAC5 Inner membrane protein YbhL 0.00218575393679 0.00278728730773 2.42846403493e+11 +UniRef50_Q67JV0 50S ribosomal protein L16 0.0206450779195 0.0136209186424 -2.83573929629e+12 +UniRef50_S3XCS7 5.50306351345e-06 7.55404738801e-05 28274962020.7 +UniRef50_Q89AM3 Adenylosuccinate lyase 2.75143678314e-06 9.59641371305e-06 2763401183.92 +UniRef50_K0RMT8 2.3883482039e-05 4.35249437589e-05 7929499124.16 +UniRef50_C7ZXZ9 0.0146302537775 0.0017738603728 -5.19028378317e+12 +UniRef50_UPI0002D7A7D9 hypothetical protein 4.75934573618e-05 9.43348172102e-05 18870060551.8 +UniRef50_Q6G7M7 D alanine D alanine ligase 0.0183743927206 0.00529793732398 -5.27912550976e+12 +UniRef50_A5ULE1 Phosphoribosylformylglycinamidine synthase related protein 0.00252084535205 0.000437318496723 -8.41145359246e+11 +UniRef50_Q46856 Alcohol dehydrogenase YqhD 0.00164692097917 0.00330937667248 6.71153764015e+11 +UniRef50_Q4JIU1 0.00011083265784 1.27192495205e-05 -39609586925.5 +UniRef50_B6YWH0 Glyoxylate reductase 0.0108289555712 0.000888291245996 -4.01316817375e+12 +UniRef50_T2HA74 Polysaccharide biosynthesis protein WbpM 0.000740280554145 0.000182443948742 -2.25205483026e+11 +UniRef50_Q9I4V0 Nitronate monooxygenase 0.000382129693134 0.000271763839138 -44556049599.5 +UniRef50_UPI00021A5C77 PREDICTED 1.06611313742e-05 5.88649092397e-06 -1927580941.18 +UniRef50_UPI0001AF28DC putative NRPS 8.88131607553e-06 0.000170972538076 65438215404.4 +UniRef50_P0AC61 Glutaredoxin 2 0.00271683729835 0.00074138084986 -7.97516009832e+11 +UniRef50_B2THH4 HDIG domain HD domain protein 0.00059784359491 0.00444841180885 1.55452163975e+12 +UniRef50_H7QP44 Thioesterase superfamily protein 0.000755819453827 0.000332508871333 -1.70895676758e+11 +UniRef50_F7ZCY2 High affinity branched chain amino acid transport system permease protein 0.00615122281328 0.00249991667745 -1.4740770936e+12 +UniRef50_A5IQI7 Iron dependent repressor 0.0232660925804 0.00768758985763 -6.28923271892e+12 +UniRef50_UPI000479C12C hypothetical protein 6.02602611344e-06 6.90276423422e-05 25434525588.3 +UniRef50_U3QQX1 C4 dicarboxylate ABC transporter 3.8443589434e-06 1.00981124681e-05 2524717040.11 +UniRef50_Q8XHH1 Prolipoprotein diacylglyceryl transferase 2 0.000925760004832 0.00164255456126 2.89378758488e+11 +UniRef50_UPI000371D403 hypothetical protein 1.4740653753e-05 2.14141258889e-05 2694162593.97 +UniRef50_UPI00036A9BE8 hypothetical protein, partial 2.94180246904e-06 1.6815662466e-05 5601047532.2 +UniRef50_T5YMK1 Putrescine aminotransferase 0.000272278290666 0.000154886383839 -47392553346.8 +UniRef50_A6X0F3 Glutathione S transferase domain protein 0.00264457427067 0.000854494036845 -7.22677357152e+11 +UniRef50_P0AAS6 0.00301479302705 0.000770104003268 -9.06208504332e+11 +UniRef50_A1B5Z0 UPF0042 nucleotide binding protein Pden_2850 0.00700874022664 0.000794654133621 -2.50870281116e+12 +UniRef50_P76221 TVP38 TMEM64 family inner membrane protein YdjZ 0.00155573092963 0.000510634072383 -4.21918426052e+11 +UniRef50_UPI000464FB5D hypothetical protein 0.000237132667756 4.09555212804e-05 -79199121396.7 +UniRef50_E7I7N1 Cryptic beta glucoside bgl operon antiterminator 0.000954801304345 0.000400882405239 -2.23623856918e+11 +UniRef50_V4JK35 0.00197016763895 0.000173886185593 -7.25180865574e+11 +UniRef50_UPI00040B5335 peptide ABC transporter ATP binding protein 8.69241183796e-06 3.43539528549e-05 10359879011.0 +UniRef50_Q49UZ0 Orn Lys Arg decarboxylase family protein 0.0202895657818 0.00587962248506 -5.81747093877e+12 +UniRef50_J7GCQ9 0.00256455449198 0.000957397270738 -6.48829092251e+11 +UniRef50_V5V9H0 SAM dependent methyltransferase 0.000259143699447 0.00588214827094 2.27007594754e+12 +UniRef50_Q8ESX1 Rhamnulokinase 0.000280994464564 0.00164436613851 5.50409875225e+11 +UniRef50_Q7MDH6 Sugar phosphate permease 0.0238094070165 0.00486401042311 -7.64848909092e+12 +UniRef50_U5T5B4 0.000864431759734 0.00296617766466 8.48500613143e+11 +UniRef50_L5TAD4 9.98448045177e-05 0.000535886123772 1.76035231412e+11 +UniRef50_T9KFG8 Phage protein 0.00104748831144 0.000625584547041 -1.70327727029e+11 +UniRef50_Q0TD54 Glutamate ammonia ligase adenylyltransferase 0.0012656267177 0.000133808174176 -4.56929034994e+11 +UniRef50_D5AQD8 6.7804990909e-05 2.21095397275e-05 -18447814388.2 +UniRef50_K1YSK2 6.12396331385e-05 0.00011110249862 20130250681.0 +UniRef50_W0H8V7 GGDEF domain EAL domain protein 0.000782519312829 0.000442905096598 -1.37106426628e+11 +UniRef50_Q9HXI1 Protein translocase subunit SecD 0.000643077416886 0.00265285813075 8.11373136968e+11 +UniRef50_UPI0003B4F453 uridine cytidine kinase 1.18723353037e-05 3.85310012767e-05 10762430591.9 +UniRef50_UPI00037F9CB9 hypothetical protein 3.87295067252e-05 0.000216620761222 71816882411.6 +UniRef50_UPI00047891B3 hypothetical protein 0.000157924934525 6.08227769029e-05 -39201332609.5 +UniRef50_G2FHS7 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 5.40513820837e-06 8.43963892416e-06 1225065176.48 +UniRef50_Q6GEF4 Protein FdhD homolog 0.016648549859 0.00292836153648 -5.53900839144e+12 +UniRef50_D2QKI4 AMP dependent synthetase and ligase 0.000913356729407 0.000242506213982 -2.70830585339e+11 +UniRef50_UPI000377E954 hypothetical protein 6.0421387367e-06 3.28961181655e-05 10841281030.8 +UniRef50_S9SK01 1.61523697842e-05 2.53453578297e-05 3711322084.62 +UniRef50_Q8NMT1 Uronate isomerase 1.03021610202e-05 2.22559137301e-05 4825876658.03 +UniRef50_Q8DSG4 Aspartyl glutamyl tRNA amidotransferase subunit C 0.00124987846965 0.00074138084986 -2.05286729077e+11 +UniRef50_B4F1G9 Argininosuccinate lyase 4.75591485511e-05 1.20014105834e-05 -14355095160.1 +UniRef50_UPI0003592D1E PREDICTED 4.77048258149e-06 1.15095785661e-05 2720655746.99 +UniRef50_UPI000317A305 hypothetical protein 0.000321737431657 0.000135637366249 -75130880109.8 +UniRef50_Q6FEF0 0.000225589236365 0.00633991003753 2.46842633859e+12 +UniRef50_P07024 Protein UshA 0.0015439512631 0.000227167628864 -5.31601711895e+11 +UniRef50_UPI000381BCCD hypothetical protein 2.88109959191e-05 6.66095275099e-05 15259731043.3 +UniRef50_A1WG04 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.0149789830921 0.00315943209358 -4.7716977803e+12 +UniRef50_Q6FEF8 7.86429143391e-05 0.00579589388412 2.30812437506e+12 +UniRef50_M1MKU0 0.000513241402379 0.00093852908226 1.71693855235e+11 +UniRef50_D5AT19 4.63438560633e-06 4.73956676633e-06 42462925.01 +UniRef50_W0M3M5 RNA pseudouridine synthase family protein 1.74322341986e-05 9.11896896221e-05 29776789860.2 +UniRef50_UPI000472066C hypothetical protein 2.77891824027e-05 1.15261445221e-05 -6565587962.32 +UniRef50_R7N6I1 Thiamine pyrophosphate protein domain protein TPP binding 6.86754376362e-05 0.00103036665919 3.8824654742e+11 +UniRef50_W5LSB3 3.75221782819e-05 9.3547261122e-05 22618013447.6 +UniRef50_UPI00047AC46D hypothetical protein 3.80168977992e-05 7.45856714779e-05 14763262683.4 +UniRef50_A3W953 0.000190085568398 0.000122538051944 -27269761293.7 +UniRef50_G2T956 Thioesterase superfamily protein 9.66680118566e-06 0.000604595219791 2.40179903184e+11 +UniRef50_A4WT88 Autoinducer binding domain protein 0.00448971747239 0.00158544849517 -1.17248902549e+12 +UniRef50_Q883F3 Urease subunit gamma beta 0.000207467420505 0.0257169777574 1.02985023599e+13 +UniRef50_G8VJT5 Lysophospholipase 1.93823857275e-05 0.000153978666532 54338170242.7 +UniRef50_UPI0004638C41 D alanyl D alanine carboxypeptidase 7.93593623542e-06 1.24220730052e-05 1811108465.05 +UniRef50_UPI00038F7D5E Allantoinase 9.98666050696e-06 1.39260278478e-05 1590370936.97 +UniRef50_B4T534 Isopentenyl diphosphate Delta isomerase 0.000903556888214 0.00117107907278 1.08001988776e+11 +UniRef50_M1MET0 Cell wall binding repeat containing protein 0.00036550513354 0.00139822002058 4.16919672735e+11 +UniRef50_W6M800 1.84503154394e-05 3.54459088754e-05 6861329629.5 +UniRef50_Q9RYT6 TDP glucose 4,6 dehydratase related protein 0.000440012030796 0.0311743831295 1.24078427657e+13 +UniRef50_O85342 Mannose 1 phosphate guanylyltransferase 2 2.13623819176e-05 1.10212775562e-05 -4174830730.32 +UniRef50_F0QHU9 Lipid A phosphoethanolamine transferase, associated with polymyxin resistance 0.000306490256408 0.0054900629274 2.09267189687e+12 +UniRef50_W8V286 Beta hydroxyacyl ACP dehydratase 1.08741288248e-05 3.23312192553e-05 8662490714.9 +UniRef50_Q8XRC2 UPF0271 protein RSp0936 0.0012512724306 0.00835377675494 2.86736815327e+12 +UniRef50_UPI000470CB6A hypothetical protein, partial 1.26733500137e-05 3.1825497064e-05 7731956787.48 +UniRef50_V9QR17 GntR family transcriptional regulator 0.00190857951352 0.000509166733097 -5.64960112181e+11 +UniRef50_S5XZH4 Replication protein C 0.000184642246177 3.13422065627e-05 -61889107195.2 +UniRef50_S2ZMR6 1.02866352819e-05 3.0152447036e-05 8020071986.05 +UniRef50_P42604 Altronate dehydratase 0.00313392792794 0.00640670936184 1.32126202641e+12 +UniRef50_UPI0004081C8A ABC transporter ATP binding protein 1.20953506588e-05 9.49766499023e-05 33460197572.5 +UniRef50_UPI00037C4CDF hypothetical protein 2.53745218018e-05 2.88784410243e-05 1414575188.05 +UniRef50_A0A035VXH8 0.000967583739845 0.000198724759845 -3.10397805187e+11 +UniRef50_UPI0002F80216 ABC transporter ATP binding protein 2.08447367061e-06 5.05992499922e-06 1201226214.25 +UniRef50_UPI00036DADFE hypothetical protein 0.000697208023748 0.000251333366122 -1.80005070781e+11 +UniRef50_UPI0003FA02C9 hypothetical protein 1.97810536707e-05 7.8648812496e-05 23765636626.4 +UniRef50_Q67N85 L threonine 3 dehydrogenase 7.19269073162e-06 5.21037960824e-05 18131164351.4 +UniRef50_P70971 2.20248668497e-05 6.30162755622e-05 16548734718.4 +UniRef50_Q6SSE6 Plus agglutinin 3.68410569987e-06 2.91717431202e-05 10289671995.1 +UniRef50_Q8YI99 Pyrazinamidase nicotinamidase 0.00133796852055 0.00135133707812 5397050741.66 +UniRef50_B7V5U6 0.000259035845508 0.000427013063902 67814464377.9 +UniRef50_M3VMM8 Insoluble matrix protein 1.43744135852e-05 2.9879449446e-05 6259573245.19 +UniRef50_Q8CT01 0.00902546522588 0.00417425620137 -1.95849261422e+12 +UniRef50_T5MN46 Inner membrane amino acid ABC transporter permease yhdY 0.000154496311943 0.000233451940873 31875356293.6 +UniRef50_G7ZNW2 0.0154060712507 0.00475080998459 -4.30165972788e+12 +UniRef50_Q28RH4 0.000454887226161 0.00177734319615 5.33891703445e+11 +UniRef50_Q2W825 Predicted transcriptional regulator 0.000148174061495 2.25362641568e-05 -50721520534.5 +UniRef50_C6S923 Thiol 0.00175606438739 0.00450851826651 1.11119940741e+12 +UniRef50_UPI0004449CBD SKN1 domain containing protein 1.43157328522e-06 1.00999994179e-05 3499550003.31 +UniRef50_B2J5F8 Malate dehydrogenase 2.88278501439e-05 7.66585811992e-06 -8543355866.93 +UniRef50_UPI00036B8B42 hypothetical protein 4.34231434949e-05 1.20113109164e-05 -12681342278.5 +UniRef50_P30847 Signal transduction histidine protein kinase BaeS 0.00283913936315 0.00110697990601 -6.99294028834e+11 +UniRef50_N4UTL9 0.000523658787645 0.000227775885127 -1.19451558638e+11 +UniRef50_UPI0002375E1A epimerase 0.0001376674116 3.05813491483e-05 -43231957505.6 +UniRef50_H8GXK1 Coenzyme F390 synthetase FtsA 2.00579423501e-05 0.000346570489416 1.3181712201e+11 +UniRef50_A5IVA2 Bile acid 0.00795558545244 0.00335820270768 -1.85601983029e+12 +UniRef50_Q83MN8 Chromosome partitioning protein ParA 5.55397165518e-06 7.68949897227e-06 862138583.776 +UniRef50_Q1IWN0 Carbamoyl phosphate synthase small chain 0.000301118567589 0.0550800785935 2.21149383759e+13 +UniRef50_P0AFN8 Inner membrane transport permease YadH 0.00244864436126 0.00123289537138 -4.90812786132e+11 +UniRef50_P0AD69 Peptidoglycan synthase FtsI 0.00261793849627 0.000567080351345 -8.27956599964e+11 +UniRef50_Q931T2 0.0122302880241 0.0025435732345 -3.91064562992e+12 +UniRef50_UPI0004769FCE hypothetical protein 4.97505730809e-06 1.57074115725e-05 4332783117.34 +UniRef50_Q7UKI3 Succinyl CoA ligase [ADP forming] subunit beta 0.0014845285354 0.000606322096462 -3.54542716204e+11 +UniRef50_Q9PQK7 CTP synthase 2.94704100442e-06 4.09975345587e-06 465364162.023 +UniRef50_Y1DSI1 Nitrite extrusion protein 1 6.58300129118e-05 3.9422910718e-05 -10660871207.2 +UniRef50_W0RI86 von Willebrand factor type A 0.000143895548483 0.0610781603149 2.45999104337e+13 +UniRef50_Q6GDQ8 Holin like protein CidB 0.0259488486569 0.00796754149783 -7.25927435558e+12 +UniRef50_Q9RVB8 Transcriptional regulator, MerR family 0.00198676836238 0.0381449868971 1.45975165337e+13 +UniRef50_D0IUG7 Type III R M system restriction enzyme 0.0001707555879 0.00475460780327 1.85055738954e+12 +UniRef50_N1M5F6 0.000147343818849 0.000266370749727 48052632620.1 +UniRef50_U3SRF9 0.000666151745035 0.00167160399168 4.05913410255e+11 +UniRef50_X3EWC3 1.32467294272e-05 6.33690691732e-06 -2789580140.3 +UniRef50_D7A0M4 Short chain dehydrogenase reductase SDR 0.00877924111885 0.000872234390519 -3.19215564611e+12 +UniRef50_Q1NBV4 0.00110871202587 4.34268147368e-05 -4.30068712253e+11 +UniRef50_C0MBF3 Energy coupling factor transporter transmembrane protein EcfT 0.00564031534735 0.00452306164188 -4.51049031143e+11 +UniRef50_D4HEP8 Sugar binding domain protein 0.000111572213456 0.00486377036047 1.91852070798e+12 +UniRef50_UPI000363A6EC hypothetical protein 2.98388335005e-06 3.6893903618e-05 13689891304.9 +UniRef50_UPI00037796C2 hypothetical protein 2.89873871077e-05 1.03616020415e-05 -7519457995.31 +UniRef50_Q58158 Type A flavoprotein FprA 0.00697409339168 0.00128788814155 -2.29559083706e+12 +UniRef50_C2R4M4 Phage infection protein 2.700486933e-06 1.8829256746e-06 -330059512.621 +UniRef50_M9VCW9 Proteasome subunit beta 0.000352790643786 0.00241366787056 8.32001426255e+11 +UniRef50_U5VGF8 0.000142987116986 0.000581565935203 1.77059650882e+11 +UniRef50_Q2JLL9 LL diaminopimelate aminotransferase 0.00420088824962 0.00487632106739 2.72680517026e+11 +UniRef50_Q8FMN9 Phosphate import ATP binding protein PstB 1.38779177283e-05 0.000332644324494 1.28689910115e+11 +UniRef50_Q2G260 0.0111926408092 0.00310509037974 -3.26504335378e+12 +UniRef50_W4S5W1 Translation initiation inhibitor 0.000101692942466 0.000165651161136 25820717732.7 +UniRef50_M5T1U6 Permease large protein, C4 dicarboxylate transport system 4.41260130784e-05 1.60643652507e-05 -11328831583.2 +UniRef50_Q0TNA9 Protein methyltransferase, release factor specific 0.000265022765889 0.00104215524505 3.13737918325e+11 +UniRef50_P0A2C8 Spermidine putrescine binding periplasmic protein 0.00299187353789 0.000234688772347 -1.11310932431e+12 +UniRef50_G6CLR5 1.35237877262e-05 4.41822506859e-05 12377197718.5 +UniRef50_D8U8L9 2.56811730167e-05 7.825235028e-05 21223629382.1 +UniRef50_B7H0C7 AraC like ligand binding domain protein 0.000280936493587 0.0055995603536 2.14719371914e+12 +UniRef50_UPI0004671146 hypothetical protein 2.64411489676e-05 5.35062801878e-06 -8514502116.83 +UniRef50_Q47163 Type I restriction enzyme EcoprrI M protein 0.00489734158324 0.00579547465568 3.62587342676e+11 +UniRef50_Q4L635 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0198611736033 0.00473540929011 -6.10645666724e+12 +UniRef50_U3SR89 Tellurite resistance protein TehB 0.00366285990988 0.00133839258884 -9.38415981926e+11 +UniRef50_UPI00047D168D amino acid permease 2.46105033951e-05 5.28461779285e-05 11399088299.8 +UniRef50_UPI00046D0817 hypothetical protein 5.10636954303e-05 3.66510568241e-05 -5818559068.29 +UniRef50_Q4L3Y7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00564789907553 0.000983595794895 -1.88303647183e+12 +UniRef50_T2EA26 Methyltransferase domain protein 0.00283945806736 0.00239439423374 -1.7967773118e+11 +UniRef50_X1QW39 Marine sediment metagenome DNA, contig 0.000105202302099 0.000246626196089 57094561470.1 +UniRef50_E0NML2 Transcriptional regulator, PadR family 8.66901159514e-05 2.35070981275e-05 -25507759638.3 +UniRef50_D0JDL8 Ribonucleoside diphosphate reductase 2 alpha chain 3.81348963068e-05 0.00602952176116 2.41879639992e+12 +UniRef50_UPI0003B62F85 damage inducible protein CinA 1.99272415598e-05 8.16656957218e-06 -4747927601.07 +UniRef50_Q6N6K5 Aliphatic sulfonates import ATP binding protein SsuB 0.00389664261975 0.00177473358414 -8.56640716428e+11 +UniRef50_Q3K2F6 Fructose 1,6 bisphosphatase class 3 0.000178127109519 0.000103317797734 -30201437181.1 +UniRef50_UPI0004158481 multidrug transporter 3.45771356581e-05 5.76813688346e-06 -11630546331.5 +UniRef50_Q6GAW6 Argininosuccinate lyase 0.0122654042128 0.00536687885828 -2.78501934005e+12 +UniRef50_Q07QW9 NADH quinone oxidoreductase subunit H 1 0.00233150045958 0.000801684589787 -6.17605439586e+11 +UniRef50_F0Y0E3 Expressed protein 1.78850695994e-05 0.000159963203925 57358686322.2 +UniRef50_W4UDN2 Maltose phosphorylase 0.000472441474382 0.00760944279293 2.88129501315e+12 +UniRef50_M7TQJ9 2.89254899563e-06 1.00572915369e-06 -761732324.074 +UniRef50_UPI000287CF8F thioredoxin 2.02419041673e-05 2.74146982525e-05 2895744992.28 +UniRef50_UPI00036E2E8C hypothetical protein, partial 0.000489337402342 4.83465119948e-05 -1.78033434e+11 +UniRef50_UPI0003800615 hypothetical protein, partial 0.000475890717744 0.000325584313987 -60680539663.7 +UniRef50_UPI000479B301 hypothetical protein 7.36339304023e-06 2.13900097419e-05 5662717288.42 +UniRef50_I5ASV0 Anthranilate synthase component I 0.00172051101113 0.000981332947463 -2.98415255037e+11 +UniRef50_F8FZ21 Acyl CoA synthetase 0.000332794437405 0.000366523901933 13616998737.0 +UniRef50_J8HFC8 0.000491411054244 6.45934746829e-05 -1.72311494509e+11 +UniRef50_U7JJA9 1.55021816583e-05 6.57876117424e-05 20300845196.6 +UniRef50_UPI0003710DBF hypothetical protein 6.32855892977e-06 3.96347081498e-06 -954815094.836 +UniRef50_Q71YR0 DNA ligase 0.0220782850341 0.00652495408817 -6.27907056369e+12 +UniRef50_F0KGW3 0.00323559419016 0.00391656799256 2.74917480517e+11 +UniRef50_Q3SMI5 Phosphoheptose isomerase 2.39696147082e-05 2.35092708847e-05 -185846450.601 +UniRef50_Q05825 ATP synthase subunit beta, mitochondrial 0.000283631546115 0.00564877390879 2.16597380951e+12 +UniRef50_UPI00047AF754 2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase 1.11076657223e-05 3.10322575173e-05 8043802209.88 +UniRef50_B4F0Z5 Cell division protein ZapD 0.0019909416466 0.00393537816325 7.84992882691e+11 +UniRef50_R6FIZ1 0.000262143047812 0.00345435819611 1.28873642825e+12 +UniRef50_UPI0001BF61D0 hypothetical protein SMAC_10790, partial 5.79136296957e-05 3.05510581239e-05 -11046605920.0 +UniRef50_E2NSK7 1.44700467954e-05 0.000535678710623 2.10418333537e+11 +UniRef50_A6F174 0.000497127201061 9.5440856542e-06 -1.96843287007e+11 +UniRef50_Q75LR2 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 9.23534473397e-05 0.0067368257392 2.68245500107e+12 +UniRef50_L0BJA1 0.000261584803461 0.00132084978881 4.27638273229e+11 +UniRef50_E0R9G5 ABC type multidrug transport system protein 0.000507023896072 0.000492565949362 -5836850505.78 +UniRef50_UPI0003B6C406 3 oxoacyl ACP synthase, partial 1.86953739527e-05 5.83344361892e-05 16002775850.9 +UniRef50_H5MQG0 Putative transport domain protein 0.00108575814295 0.000604744106207 -1.94191269339e+11 +UniRef50_UPI0003665115 hypothetical protein 2.33658479595e-05 1.18268482351e-05 -4658435788.19 +UniRef50_E8SES7 0.0214601544789 0.00951057482903 -4.8241919425e+12 +UniRef50_F4GHR3 Glutamate synthase 0.000333686259254 0.000740169443101 1.64102249429e+11 +UniRef50_UPI0001744B3D possible HAD superfamily hydrolase 1.30415176251e-05 0.00015114801142 55755286302.3 +UniRef50_E3EXE9 1.67253200754e-05 7.34209255833e-06 -3788124093.79 +UniRef50_UPI00037D9792 hypothetical protein 3.86101563685e-05 5.45383300156e-05 6430399162.0 +UniRef50_P55785 Heptaprenyl diphosphate synthase component 2 3.85552455315e-05 4.23101809126e-05 1515913491.59 +UniRef50_U5WDI7 0.000116628008914 1.13408568086e-05 -42505715323.4 +UniRef50_A1B739 3.99393433136e-06 5.96230132098e-06 794653908.289 +UniRef50_A6LT02 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000836046935096 0.000333063953224 -2.03060402077e+11 +UniRef50_I4E1N1 0.00362766682043 0.00337731875774 -1.01068585024e+11 +UniRef50_P36646 Protein transport protein HofC homolog 0.0022147536356 0.000812052714213 -5.66287575041e+11 +UniRef50_UPI00018167BC putative redox regulated molecular chaperone heat shock like protein 1.65209891556e-05 1.43595343314e-05 -872605836.563 +UniRef50_P55393 Putative replication protein A 0.0358742848444 0.00531238549544 -1.23382138039e+13 +UniRef50_UPI000363A7D4 hypothetical protein 2.45180147715e-05 2.54075172947e-05 359103084.039 +UniRef50_B9KRZ0 AMP dependent synthetase and ligase 0.000281051579798 0.000291053422665 4037866701.82 +UniRef50_F9Z1W7 Acyl CoA thioesterase 2 0.000486214821984 0.00761211321461 2.87681262571e+12 +UniRef50_Q9I692 7.73536862413e-05 0.000297369481369 88823076390.6 +UniRef50_G2I8Q0 4.21980094491e-05 2.83023336403e-05 -5609854843.13 +UniRef50_UPI00046CEC40 hypothetical protein 0.000271171961937 0.000164573219357 -43035220493.2 +UniRef50_O05103 HTH type transcriptional regulator MalR 0.000183245625651 0.00170092504709 6.12705806456e+11 +UniRef50_P27294 Protein InaA 0.00328990296069 0.00351022651577 88947322859.9 +UniRef50_UPI00037C8975 hypothetical protein 1.94321941732e-05 0.000143256513695 49989397286.3 +UniRef50_Q3J6L3 Putative Pre type recombination enzyme 0.00178065259978 0.000658668145238 -4.52958892595e+11 +UniRef50_C6KV56 UDP glucose pyrophosphorylase 0.00283650970942 0.000426963911123 -9.72763207226e+11 +UniRef50_UPI0002880FB3 FAD dependent oxidoreductase 2.11162533447e-05 1.24399616847e-05 -3502725413.21 +UniRef50_UPI000362260F hypothetical protein 3.25354219129e-06 0.000158916484676 62843040080.3 +UniRef50_A5UJF1 Geranylgeranylglyceryl phosphate synthase 0.00119219032156 0.00120760424101 6222788432.03 +UniRef50_Q0A6T1 Phosphoadenosine phosphosulfate reductase 3.86156438181e-05 2.08068915864e-05 -7189611813.9 +UniRef50_C3PFR3 ATP synthase subunit alpha 0.0240277761545 0.0153294774359 -3.51160993283e+12 +UniRef50_UPI0003F0E940 PREDICTED 4.51425535422e-05 4.42171335188e-05 -373603419.627 +UniRef50_A4ELE1 Transcriptional regulator, LuxR family protein 0.000103901544877 0.00014787896365 17754223622.3 +UniRef50_Q54431 Signal recognition particle protein 0.00426226049327 0.0108936639526 2.677178953e+12 +UniRef50_Q6N143 Acetate kinase 0.00174198349438 0.000396684881891 -5.43113558533e+11 +UniRef50_UPI0003B5831F 3 phosphoshikimate 1 carboxyvinyltransferase 6.69884612869e-06 5.41171029246e-06 -519632532.019 +UniRef50_UPI00046A2E06 hypothetical protein 1.1848347715e-05 0.000197294892723 74867045904.7 +UniRef50_B8HW51 Urease subunit beta 8.33232234602e-05 4.10671373868e-05 -17059300488.3 +UniRef50_UPI0004743F92 GMP synthase, partial 1.77844166674e-05 3.21860592347e-05 5814119832.45 +UniRef50_G8AZ63 0.000101843620483 0.000159263612335 23181155333.2 +UniRef50_UPI00047CA294 ATP dependent DNA helicase PcrA 1.87357624206e-05 9.93293968501e-06 -3553807561.14 +UniRef50_A7ZV50 4.11475880512e-05 9.03496939694e-05 19863493936.9 +UniRef50_R5EU95 Serine type site specific recombinase 5.34563921787e-06 0.000122193134571 47172767754.0 +UniRef50_Q928B5 Thioredoxin reductase 0.0292537242529 0.0145177471353 -5.94909479315e+12 +UniRef50_G0J229 Carbohydrate binding CenC domain protein 5.57223722826e-07 1.07856417584e-05 4129337877.78 +UniRef50_UPI00046D1393 transcription elongation factor GreA 1.83144151382e-05 3.04884210611e-05 4914795582.93 +UniRef50_Q8XCB3 Valine tRNA ligase 0.00117339827899 0.00079733562092 -1.51821109871e+11 +UniRef50_A0A017SM38 1.97398119636e-05 6.29731471563e-05 17453827950.0 +UniRef50_F9D1U7 Saccharopine dehydrogenase 0.000506281391558 0.0550079101617 2.20029763447e+13 +UniRef50_UPI000367DEE0 hypothetical protein 8.95315899716e-05 8.70618213898e-05 -997075883.941 +UniRef50_Q07806 Penicillin binding protein 1A 0.000790534358864 0.000300828421596 -1.97700296243e+11 +UniRef50_P11557 Protein DamX 0.00361087114036 0.00125955078296 -9.49256882228e+11 +UniRef50_A1U6F9 4 hydroxythreonine 4 phosphate dehydrogenase 3.35240707976e-05 6.56985467164e-05 12989230753.6 +UniRef50_UPI00035C0B1A hypothetical protein 5.67599645851e-06 2.81706251065e-06 -1154186717.82 +UniRef50_Q9FN42 ATP dependent Clp protease proteolytic subunit 2, mitochondrial 6.21149074774e-06 6.44156327244e-05 23497726361.1 +UniRef50_Q49YA8 0.0119785947914 0.00395184140683 -3.24049884069e+12 +UniRef50_F8K305 8.64963227569e-06 0.000243773621366 94922439691.4 +UniRef50_A0A023YXD9 Anaerobic dimethyl sulfoxide reductase chain A 6.92634841923e-05 0.000317587236346 1.0025134602e+11 +UniRef50_C4K9M3 NADH 0.00018641364977 0.00822295439131 3.2444501168e+12 +UniRef50_UPI0004655D13 type VI secretion protein 6.13110916438e-06 8.61008234854e-06 1000791894.87 +UniRef50_UPI000479C70C hypothetical protein 4.58629542771e-06 1.5694018328e-05 4484324041.94 +UniRef50_P06131 Formate dehydrogenase subunit alpha 0.00281948850349 0.00110971446987 -6.90256758659e+11 +UniRef50_D2U3Z3 1.98364621323e-05 8.58033498578e-05 26631642079.5 +UniRef50_U5NMC4 0.0310048799419 0.0042970219004 -1.07822900336e+13 +UniRef50_A0A020LY90 4.02836358685e-05 0.000267947791132 91910813233.4 +UniRef50_A5UL75 50S ribosomal protein L5 0.000935517168202 0.000347431417872 -2.37417434032e+11 +UniRef50_Q9RSR5 Glycine tRNA ligase 7.56484947587e-05 0.0416666311895 1.67907900926e+13 +UniRef50_F0J7L0 0.00015401192538 7.17237333259e-05 -33220752921.9 +UniRef50_P56900 Transketolase 0.00753905414224 0.0102792807092 1.10626309144e+12 +UniRef50_M5FH04 4.20263226947e-05 7.04266987598e-06 -14123329940.6 +UniRef50_D7AH61 4.21471842938e-05 1.97145795203e-05 -9056317826.08 +UniRef50_P39270 Inner membrane protein YjdF 0.00329065740032 0.000950638432417 -9.44694372603e+11 +UniRef50_F4TUJ1 NADH quinone oxidoreductase subunit I 0.000541797588994 0.000100946852693 -1.77976852092e+11 +UniRef50_I6S3Y4 0.000417683559236 9.3964145764e-05 -1.30689499703e+11 +UniRef50_F5LY46 0.007336089401 0.000339444488737 -2.82463140957e+12 +UniRef50_Q6A651 Putative pyruvate, phosphate dikinase regulatory protein 0.000173689872173 0.00234292480256 8.75746760904e+11 +UniRef50_D9UMS0 Lipoprotein 3.77704423875e-05 0.000181375126013 57974973007.5 +UniRef50_UPI00029A9C68 phenylacetate CoA ligase 9.43775428021e-06 0.000146757795143 55437785602.8 +UniRef50_A6T5Z2 Putative glutamate cysteine ligase 2 0.00503022649029 0.000452867913463 -1.84793582797e+12 +UniRef50_I0C5L3 Integral membrane protein 0.0178260243422 0.00382954969333 -5.65054857182e+12 +UniRef50_UPI0003B39740 50S ribosomal protein L5 0.000135128879021 0.000105622043206 -11912271708.1 +UniRef50_P77510 Sensor histidine kinase DpiB 0.00390216362572 0.00175754268296 -8.65809792051e+11 +UniRef50_P37710 Autolysin 5.05033084919e-06 0.000593141447913 2.37419600648e+11 +UniRef50_B1HUK4 Alanine tRNA ligase 0.0112107694589 0.00192283739056 -3.74965215173e+12 +UniRef50_Q9K6G3 UPF0340 protein BH3766 0.0284885260525 0.00630060159755 -8.95753737889e+12 +UniRef50_Q1GJP7 Urease subunit beta 8.73352489095e-05 3.16158949634e-05 -22494586941.4 +UniRef50_UPI0000164CD8 hypothetical protein DR_0251 0.000284598252313 0.00383419427424 1.43301547249e+12 +UniRef50_F0F251 2.39069405547e-05 3.09198785015e-05 2831209107.55 +UniRef50_H7CPK2 0.0190035357371 0.00804454476465 -4.42427913754e+12 +UniRef50_V8RAR8 0.0161475072447 0.00705792891766 -3.6695743123e+12 +UniRef50_H9KEV5 3.96739753443e-06 6.16428373669e-06 886909918.678 +UniRef50_Q7UNZ2 Isoleucine tRNA ligase 1.2034398317e-06 2.88278181182e-06 677970965.218 +UniRef50_UPI00034D189F aldehyde activating protein 0.000106080760536 0.000412414924368 1.23670861082e+11 +UniRef50_Q8ZRW8 Ferredoxin like protein FixX 0.00196693702436 0.000137676785639 -7.38494805919e+11 +UniRef50_Q8XCN6 Long chain fatty acid transport protein 0.0030173134943 0.000487377034738 -1.02136639454e+12 +UniRef50_F0RM21 Serine threonine protein kinase 0.00034952981194 0.0316877879209 1.26516393623e+13 +UniRef50_P0AAC2 Universal stress protein E 0.00251558309524 0.00206528111656 -1.8179243462e+11 +UniRef50_T2S877 0.000138822232327 9.25675644253e-05 -18673577040.5 +UniRef50_Q7N4I9 Complete genome; segment 8 17 0.000440645123179 0.00861901001715 3.30170626752e+12 +UniRef50_Q5JGR7 Nucleoside diphosphate kinase 0.021381397079 0.00104824877617 -8.20874148563e+12 +UniRef50_UPI0003C11FE8 PREDICTED 5.71180374095e-05 6.56421888604e-05 3441304543.83 +UniRef50_UPI000417E643 hypothetical protein 0.000120045833248 0.000411043995059 1.17479528872e+11 +UniRef50_M1XGX9 0.000100788929923 0.000140153652767 15892021671.6 +UniRef50_Q7N3U5 Cysteine desulfurase 0.000471357894479 0.000606637450263 54614016736.8 +UniRef50_UPI000379DB36 hypothetical protein, partial 6.49868853174e-06 0.000219373194044 85940050139.1 +UniRef50_UPI00046F039B DNA gyrase subunit B 1.24684212581e-05 4.21721120721e-05 11991744486.9 +UniRef50_Q8CUA4 Mobilization protein 0.00590071374576 0.00106740977781 -1.95126412317e+12 +UniRef50_Q3J611 Putative sensor histidine protein kinase 0.0189560659285 0.00414201157734 -5.98061553047e+12 +UniRef50_W9T208 AsmA family protein 2.54539119975e-05 2.79687171638e-05 1015257705.76 +UniRef50_B9MJY9 Ribosomal protein L11 methyltransferase 6.5834730777e-06 2.15463652128e-05 6040703170.27 +UniRef50_A6LZQ4 Methyltransferase type 11 0.000285074490886 0.000843882759885 2.25597755543e+11 +UniRef50_UPI0003EC04D4 PREDICTED 5.2206804198e-06 2.43613867957e-05 7727338046.83 +UniRef50_UPI0002EC1250 patatin 2.11122327112e-05 2.72975723515e-05 2497097515.44 +UniRef50_UPI0002493F15 oxidoreductase 1.29891624285e-05 2.75393679302e-05 5874096512.14 +UniRef50_G2PAE6 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.000235295251898 0.00383254128439 1.45225236649e+12 +UniRef50_UPI0003AE4F02 PREDICTED 4.13886492145e-05 0.000469069334647 1.72659940941e+11 +UniRef50_V2EDG8 Porin thermoregulatory protein EnvY 2.31831780843e-05 5.88423127631e-05 14396030256.6 +UniRef50_B5EWS4 Recombination associated protein RdgC 0.00191341840512 0.000465050509721 -5.84723892846e+11 +UniRef50_UPI000467B16B hypothetical protein 7.85765155653e-06 1.01093559547e-05 909040697.061 +UniRef50_UPI000050FD81 peptide ABC transporter permease 1.04094897579e-05 0.00010351556379 37588064626.8 +UniRef50_P0A9L3 FKBP type 22 kDa peptidyl prolyl cis trans isomerase 0.00422851125853 0.00214978026674 -8.39209210283e+11 +UniRef50_UPI00036605E2 hypothetical protein 1.36485500088e-05 2.95295507657e-05 6411354887.35 +UniRef50_C4JA46 1.05578835166e-05 0.000942733670122 3.76330804136e+11 +UniRef50_P30149 Inner membrane protein YabI 0.0046284194217 0.000930131354942 -1.49304427565e+12 +UniRef50_Q89B04 Phosphoenolpyruvate protein phosphotransferase 0.00309963184691 0.000523884471679 -1.03986082336e+12 +UniRef50_Q3J217 Putative Endonuclease 0.0177400029565 0.00434655175628 -5.40710060565e+12 +UniRef50_B7GQS6 Phosphoribosyl AMP cyclohydrolase 1.33029630545e-05 6.23335768974e-05 19794260481.7 +UniRef50_C0ZZE5 Riboflavin biosynthesis protein RibBA 1.00873968671e-05 7.851320401e-06 -902731509.108 +UniRef50_C1N2I9 Predicted protein 2.84236666888e-06 4.2044413969e-06 549886282.238 +UniRef50_Q5HMG3 Dihydroxy acid dehydratase 0.0278417200064 0.00997571700595 -7.21272465177e+12 +UniRef50_R6V2L6 YhgE Pip domain protein 1.37149606168e-06 1.94437019558e-06 231276317.812 +UniRef50_Q5XA33 0.00897848608486 0.00733581451576 -6.63166670293e+11 +UniRef50_F8KRE5 Chemotaxis protein Che 0.000117474892792 0.00393178877904 1.53988532277e+12 +UniRef50_D4MWH4 Lysophospholipase 0.000252674474934 0.000612637372854 1.45321439132e+11 +UniRef50_A6M2R6 4.62394367686e-05 0.000674694394134 2.53714978298e+11 +UniRef50_UPI00037C1A9F hypothetical protein 7.62932694411e-06 0.000372918563175 1.47471747269e+11 +UniRef50_Q6ABL2 DNA replication and repair protein RecF 0.00109947375394 0.0169823561784 6.41211453966e+12 +UniRef50_Q983N4 Isoleucine tRNA ligase 3.81298978638e-05 5.69672735505e-06 -13093668934.2 +UniRef50_UPI00037926CF hypothetical protein 3.82243688097e-05 1.03420626775e-05 -11256429139.9 +UniRef50_D6GPL1 RNA polymerase sigma factor, sigma 70 family 0.00877626901761 0.000419881571359 -3.37357615646e+12 +UniRef50_O25751 Protein TolB 9.07418242453e-05 0.0021652883405 8.37519886159e+11 +UniRef50_N0B087 Transporter 2.43820164448e-05 3.98234848235e-05 6233910272.61 +UniRef50_UPI000378CCBF hypothetical protein 2.04076438527e-05 5.74602985705e-05 14958611396.8 +UniRef50_L9BMS0 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 0.000156850133866 0.000777570127407 2.50592278483e+11 +UniRef50_J0HGY2 0.000610118134256 0.000152448715308 -1.84766760665e+11 +UniRef50_D2SC05 2.43321325773e-05 6.58648433981e-05 16767265022.0 +UniRef50_T0T191 1.48976615759e-05 2.32681182578e-05 3379256079.54 +UniRef50_Q11IE7 Putative 3 methyladenine DNA glycosylase 4.52369476735e-05 1.35206731201e-05 -12804249239.7 +UniRef50_Q6A923 Endo beta N acetylglucosaminidase H 0.000540130200985 0.00334218049256 1.13122208773e+12 +UniRef50_V6EZI7 2.80061647579e-05 2.19185043949e-05 -2457663192.54 +UniRef50_Q4A0N2 Ornithine aminotransferase 1 5.15106177358e-06 1.4151613144e-05 3633633037.42 +UniRef50_O26837 Phenylalanine tRNA ligase alpha subunit 0.00215766086932 0.00139550726349 -3.0769076335e+11 +UniRef50_Q9CGF7 Oxygen independent coproporphyrinogen III oxidase like protein LL1139 0.00696048032706 0.00821433143512 5.06195078807e+11 +UniRef50_UPI00037C546A hypothetical protein 0.0001030943203 1.7867677357e-05 -34407041604.6 +UniRef50_C5B1H6 Amidase, hydantoinase carbamoylase 0.000707200560896 0.000283512927957 -1.71047896649e+11 +UniRef50_G8YPB5 Piso0_001875 protein 4.24551452304e-06 0.000120594920288 46971682875.1 +UniRef50_I5C3W2 6 pyruvoyl tetrahydropterin synthase 5.22148831758e-05 0.000415042995505 1.46478161349e+11 +UniRef50_Q58787 citramalate synthase CimA 9.32536865333e-06 5.59145360609e-06 -1507427324.86 +UniRef50_Q9I0J1 NADH quinone oxidoreductase subunit L 0.000511070398343 0.000154018909841 -1.44146067423e+11 +UniRef50_Q27527-2 Isoform b of Enolase 1.0736412095e-05 5.84563935484e-05 19265142102.8 +UniRef50_F3T921 DoxX family protein 0.000302989164364 0.000487523180539 74498646816.9 +UniRef50_E0Y1Z2 0.00633631576555 0.000510634072383 -2.35189918869e+12 +UniRef50_I1AXI9 Transposase IS4 family protein 6.84369146396e-05 2.55404883603e-05 -17317813687.3 +UniRef50_C3MZM4 Nucleoside diphosphate kinase 1.69572866386e-05 0.000109297174681 37278745940.6 +UniRef50_L1JUV8 6.31120983793e-05 3.80735356896e-05 -10108375015.5 +UniRef50_U2YT78 0.000201741583823 0.000284371308104 33358633673.0 +UniRef50_A9V5N5 Predicted protein 0.000427428881343 6.06545267013e-06 -1.70109586866e+11 +UniRef50_E6JPP5 Sodium 7.41137412691e-05 0.000115358087973 16650848889.4 +UniRef50_Q1IZ16 Acyl CoA dehydrogenase like protein 0.000101839745189 0.0261731496901 1.05253077557e+13 +UniRef50_Q8K9X9 NADH quinone oxidoreductase subunit J 5.42235242221e-05 0.000135933735682 32987415063.4 +UniRef50_UPI000467B0DE arginine ABC transporter ATP binding protein 2.41270846872e-05 2.70264831867e-05 1170522753.87 +UniRef50_A3PRL7 ABC transporter related 0.00405176363618 0.000623379548785 -1.38408072709e+12 +UniRef50_G5SBT2 Respiratory nitrate reductase alpha chain 4.46055850191e-05 4.44199046251e-05 -74961453.6125 +UniRef50_Q72HC1 Probable dual specificity RNA methyltransferase RlmN 0.000128106104819 0.0370130584752 1.48909079012e+13 +UniRef50_UPI000470C939 5 nucleotidase 1.60836945321e-05 8.64254946121e-06 -3004081578.24 +UniRef50_UPI00045EBAFF hypothetical protein 1.49409141998e-05 8.8222923673e-06 -2470162717.71 +UniRef50_C5N3B0 0.0221744339752 0.00814028246988 -5.66575918109e+12 +UniRef50_O43414 ERI1 exoribonuclease 3 1.31640634156e-05 0.000200911759369 75796048779.5 +UniRef50_P37049 Phosphodiesterase YaeI 0.00221819713783 0.00202961135234 -76134395810.1 +UniRef50_D8JDR3 NADH 0.000678474817046 0.0216023908292 8.44724165945e+12 +UniRef50_V9TSS5 Thymidylate synthase 0.000106449664279 2.51028653802e-05 -32840700952.9 +UniRef50_UPI0004401CD8 PREDICTED 4.38379304258e-06 8.78184286181e-06 1775546682.16 +UniRef50_B1HZV3 HTH type transcriptional regulator 0.00755730833363 0.000470000061318 -2.86123332058e+12 +UniRef50_Q5ZVR0 Histidine ammonia lyase 5.94715228461e-06 1.35496058943e-05 3069203814.83 +UniRef50_R5Y1H5 Cassette chromosome recombinase B 7.16434922814e-05 4.27836966907e-05 -11651053629.5 +UniRef50_B2N3Y4 Transketolase 2 0.00249971598778 0.000571819965561 -7.78315282115e+11 +UniRef50_UPI0002E7F1BB hypothetical protein 0.000126801541191 4.37895592331e-05 -33512955788.0 +UniRef50_Q6A7E7 Trigger factor 0.000322508423853 0.00671194017356 2.5794920045e+12 +UniRef50_UPI00046F5CB6 hypothetical protein 4.45340343316e-06 8.18667704286e-06 1507168368.65 +UniRef50_P45059 Peptidoglycan synthase FtsI 3.90992342407e-06 7.03408016436e-06 1261260413.77 +UniRef50_UPI00034B1305 MULTISPECIES 3.77718131373e-05 0.0042946509886 1.71855436091e+12 +UniRef50_UPI0002193AE6 excinuclease ABC subunit A 2.09848798857e-05 3.37778503435e-05 5164679161.21 +UniRef50_G8VI88 Molybdopterin guanine dinucleotide biosynthesis protein A 3.04687093507e-05 0.00556136170989 2.23288937601e+12 +UniRef50_F0RNI0 DEAD DEAH box helicase domain protein 0.000202104336689 0.00869243819248 3.4276519657e+12 +UniRef50_UPI00035D0365 hypothetical protein 0.000918423020553 0.00018077021033 -2.97799491505e+11 +UniRef50_F7WRG0 2.51793568383e-05 2.90534813073e-06 -8992290648.08 +UniRef50_Q8T6Z1 Thioredoxin reductase 3.2709694737e-05 1.8004269797e-05 -5936760504.13 +UniRef50_Q7MU65 Lipoprotein releasing system ATP binding protein LolD 7.6507873374e-05 5.55574264911e-05 -8457952497.52 +UniRef50_UPI000465AFEA GABA permease 1.93310624153e-05 2.92272062554e-05 3995194707.59 +UniRef50_K0HE29 9.93384181239e-05 0.00808485284325 3.22385016671e+12 +UniRef50_D3S8T8 Flagellar hook capping protein 8.93857676286e-06 1.23236670352e-05 1366602482.67 +UniRef50_F0PEG3 Maltose Maltotriose maltodextrin ABC transporter, MalX subunit 7.76010824086e-06 0.000344508200748 1.35949337309e+11 +UniRef50_D3QGU6 Cystathionine gamma lyase 0.0115934488544 0.00175972216375 -3.96999613841e+12 +UniRef50_Q32FA3 0.00025679318969 0.000870703284919 2.47843038968e+11 +UniRef50_Q9RVF4 0.000327401032446 0.00984087094509 3.84070454714e+12 +UniRef50_G8V619 HMGL like family protein 0.00972349490448 0.00332747917869 -2.58215003644e+12 +UniRef50_A6LQC0 0.0102950724232 0.00158337032744 -3.51702104066e+12 +UniRef50_Q5JGT7 Thymidine kinase 1.54529703237e-05 3.34862514866e-05 7280256898.71 +UniRef50_Q00853 Homocitrate synthase subunit alpha 0.000379517719931 0.000578487596381 80326580757.8 +UniRef50_Q5HMY5 Accessory gene regulator protein B 0.0071665246348 0.000308156561946 -2.76880735265e+12 +UniRef50_UPI00036F3EF0 hypothetical protein 7.58243675421e-05 8.32581504958e-05 3001109401.18 +UniRef50_Q9I509 NADH dehydrogenase (quinone) 0.000761851590707 0.00831087570182 3.0476336706e+12 +UniRef50_P97532 3 mercaptopyruvate sulfurtransferase 3.979460334e-05 1.28988716716e-05 -10858136922.3 +UniRef50_UPI00025564EE bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase, partial 7.87835450758e-06 2.4515723399e-05 6716709984.93 +UniRef50_W0YLC7 0.000387510204934 0.000203208475363 -74404869864.4 +UniRef50_A9IQX3 Single stranded DNA specific exonuclease 0.000507530772989 0.00303570739452 1.02065592633e+12 +UniRef50_A7ZNH9 UPF0265 protein YeeX 0.000344212147888 0.000102674584023 -97511678531.5 +UniRef50_J3RWH0 WbhQ 0.00100479921392 0.00114518323135 56674750542.1 +UniRef50_A9M4D7 Lipoprotein 0.000135786326927 0.00187558179737 7.02376781108e+11 +UniRef50_A5UNI6 Polysaccharide biosynthesis protein, MviN like family 0.00655439402026 0.00154505000471 -2.02233365064e+12 +UniRef50_P76016 PTS dependent dihydroxyacetone kinase operon regulatory protein 0.00385106209914 0.000653816933714 -1.29076710789e+12 +UniRef50_M9TX56 0.000175258571181 1.42422395861e-05 -65004268957.5 +UniRef50_P53381 Protein mrp homolog 0.000426487092165 0.00170765807063 5.17224445744e+11 +UniRef50_A6V8Q7 Signal peptidase I 0.00380241208883 0.000357959642661 -1.3905677207e+12 +UniRef50_Q6MN06 Adenylosuccinate synthetase 1.20895064055e-05 1.29133177616e-05 332582753.76 +UniRef50_Q8Y303 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.12081588883e-05 1.73534510015e-05 -1556192876.49 +UniRef50_V6K8C7 9.3477188766e-05 5.61697358523e-05 -15061476555.2 +UniRef50_A8LJB0 NADH 0.00204417660808 0.00398153074428 7.82133638793e+11 +UniRef50_UPI000328E67C PREDICTED 7.13449271789e-05 9.99960886291e-05 11566825466.7 +UniRef50_T1DQZ2 0.000189023937943 0.000111658158719 -31233514457.6 +UniRef50_P36999 23S rRNA N(1)) methyltransferase 0.00277424420379 0.00148655894267 -5.19854341589e+11 +UniRef50_A1VRZ2 LPS biosynthesis protein WbpG 0.00172103585868 0.000157362365106 -6.31274177786e+11 +UniRef50_P51776 Pyruvate, phosphate dikinase 5.84735500387e-06 1.42729671888e-05 3401523032.94 +UniRef50_UPI000288452E heme peroxidase 7.39790400596e-06 1.70871873412e-06 -2296793908.4 +UniRef50_M4QXM9 Tetraacyldisaccharide 4 kinase 0.00103721523468 0.00725125543768 2.5086842848e+12 +UniRef50_UPI0002625F2D dipeptide transport system permease, partial 1.00642983485e-05 1.64529143729e-05 2579162686.18 +UniRef50_A0A011PAY1 ATP dependent Clp protease ATP binding subunit ClpX 7.35471580755e-06 2.08586526197e-05 5451705002.98 +UniRef50_A7Z4X0 L threonine 3 dehydrogenase 5.45376253231e-05 4.40860151698e-05 -4219443274.57 +UniRef50_B5SL97 Choline dehydrogenase lipoprotein 0.00431846814926 0.00123787649314 -1.24367265469e+12 +UniRef50_UPI0004216EAC tRNA delta isopentenylpyrophosphate transferase 1.04837980938e-05 1.58579744889e-05 2169620959.26 +UniRef50_Q8DW27 0.00458769054685 0.00120134029755 -1.36711115083e+12 +UniRef50_Q5FAC7 Penicillin binding protein 1A 0.000115491267187 0.00302519999064 1.1746851178e+12 +UniRef50_Q24751 ATP synthase subunit beta, mitochondrial 2.44156839332e-05 2.34600763429e-05 -385790510.828 +UniRef50_UPI00047ECC3E 4 alpha glucanotransferase 1.15540305867e-05 0.000633452529062 2.51068055387e+11 +UniRef50_F4WQV6 U6 snRNA associated Sm like protein LSm6 6.6654913799e-06 7.1168373848e-06 182213920.816 +UniRef50_A0B2R8 1.54204126213e-05 0.000968628250913 3.84821701494e+11 +UniRef50_R7WKM5 9.54483149226e-05 4.42265085189e-05 -20678871807.4 +UniRef50_V8G079 0.000194546412126 0.0011885662969 4.01298025479e+11 +UniRef50_T3G6D1 Bacterial regulatory s, gntR family protein 0.00017132495712 0.00168080571582 6.09395905699e+11 +UniRef50_A3QD88 Leucyl phenylalanyl tRNA protein transferase 9.254905805e-06 5.76925125987e-05 19554856258.9 +UniRef50_Q8CMQ4 NADPH dependent oxidoreductase 0.0316362653507 0.00534895192664 -1.06125110109e+13 +UniRef50_B7V2Q5 Thymidylate synthase 0.00216837010033 0.00308090504584 3.68401555565e+11 +UniRef50_UPI000476F303 transcriptional regulator 4.36391684813e-05 0.000144916941397 40887079744.2 +UniRef50_Q9RZ67 0.00162969107833 0.045601538748 1.77519744995e+13 +UniRef50_UPI0002194D92 SSU ribosomal protein S1P 4.73045478222e-05 0.000284983197772 95953787629.8 +UniRef50_G7M597 Peptidase M56 BlaR1 6.72480977733e-05 0.000956863553371 3.59148676234e+11 +UniRef50_UPI0003B6979D thioredoxin reductase 1.56655545743e-05 7.93480484476e-06 -3120998532.78 +UniRef50_Q0SRR9 Polysaccharide deacetylase family protein 0.000148811822151 0.00079108261465 2.59292600481e+11 +UniRef50_A0A024C6Z7 HrgA like protein 0.000374279108692 0.00338853478266 1.21689200466e+12 +UniRef50_UPI0003B569E4 hypothetical protein 2.32953878291e-05 7.41844540488e-06 -6409716488.64 +UniRef50_J0NAX3 Glucose 6 phosphate 1 dehydrogenase 0.00293462497108 0.000801764810481 -8.61061819972e+11 +UniRef50_UPI00047D6EDF fasciclin 5.45626444904e-05 1.69978680831e-05 -15165361207.3 +UniRef50_P15567 Phosphoribosylaminoimidazole carboxylase 2.68727365352e-05 2.42878655697e-05 -1043544128.71 +UniRef50_Q6AJM7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.13908644359e-05 3.33120995991e-05 4812748925.39 +UniRef50_UPI000470F989 argininosuccinate lyase 4.38501341778e-05 2.55665682688e-05 -7381299922.05 +UniRef50_A0A024KA53 Auxin binding protein, putative 0.000198139791579 8.23669582666e-05 -46738913500.5 +UniRef50_G4CKE5 YjbE family integral membrane protein 1.05698215261e-05 1.44526983295e-05 1567565013.79 +UniRef50_A4FE07 0.000110210020356 0.000244063392719 54038248988.5 +UniRef50_C1MUY0 Predicted protein 5.83548789303e-05 8.08825747708e-05 9094707256.72 +UniRef50_I1QZW6 2.32345039331e-05 3.18141933328e-05 3463725895.29 +UniRef50_A3PL14 Regulatory protein, PpaA 0.00286739884442 0.000231016979293 -1.064339711e+12 +UniRef50_UPI000361C323 hypothetical protein 2.47260219103e-05 6.4747931102e-05 16157335864.7 +UniRef50_O67258 Lysine tRNA ligase 2.70904922119e-06 3.06091537182e-06 142052682.893 +UniRef50_X0U279 Marine sediment metagenome DNA, contig 5.45576066492e-06 5.34497397728e-05 19375758318.2 +UniRef50_O83833 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.61499445359e-05 1.58240461965e-05 -4168691872.64 +UniRef50_D3E1H7 DNA polymerase II small subunit 0.00247488635045 0.00025035956941 -8.98068759519e+11 +UniRef50_X7FC77 Flagellar protein FlgJ 0.000157369054181 8.7725751042e-05 -28115856096.6 +UniRef50_P07771 Benzoate 1,2 dioxygenase electron transfer component 0.000234949785595 0.00717333129157 2.80110975748e+12 +UniRef50_E0TD47 0.000162033811619 2.40515488838e-05 -55705132698.9 +UniRef50_B2TQ92 Ser Thr protein phosphatase family protein 0.000221183196593 0.000778459318204 2.24979208841e+11 +UniRef50_E3HVR7 Aspartate aminotransferase 9.58897516131e-05 0.000762006286372 2.68919419251e+11 +UniRef50_A1B2A8 0.000491432385076 3.37332386089e-05 -1.84778762029e+11 +UniRef50_UPI0004688DE5 hypothetical protein 0.000137706740517 4.10380736337e-05 -39026327078.7 +UniRef50_UPI00045E7101 hypothetical protein 9.325894329e-05 1.80681130102e-05 -30355460879.2 +UniRef50_UPI00046779A8 UGMP family protein 4.95734977632e-06 8.66876355568e-06 1498343286.9 +UniRef50_W7W844 0.00025135219425 0.000219192199981 -12983384333.9 +UniRef50_UPI00047A6C43 hypothetical protein, partial 5.06747060277e-05 9.53815124139e-06 -16607331969.5 +UniRef50_A6LPV7 Tetratricopeptide TPR_2 repeat protein 0.000390547980192 0.000346369534932 -17835380481.9 +UniRef50_R6IK84 Lipoprotein 1.93685426405e-05 2.1724875461e-05 951280475.091 +UniRef50_UPI00046A2248 integrase 0.00194862242842 0.000870903832291 -4.35088222352e+11 +UniRef50_N1U5S5 Winged helix turn helix 7.22168025357e-05 0.00128248186273 4.88598856421e+11 +UniRef50_C3K6N0 Succinyl CoA ligase [ADP forming] subunit beta 0.00201538613998 0.00263212067666 2.48983300642e+11 +UniRef50_I6TXK4 Prephenate dehydrogenase 0.00381289350851 0.00416541324067 1.42316541777e+11 +UniRef50_UPI00041D4010 hypothetical protein 3.18315926619e-05 1.6129962716e-05 -6338940689.83 +UniRef50_UPI00037D201C hypothetical protein 1.09445413241e-05 0.000369322158221 1.44681441729e+11 +UniRef50_M5RF68 Glutamate binding periplasmic protein 0.000269567345224 7.92089737881e-05 -76850010508.6 +UniRef50_Q7N0A6 Isopentenyl diphosphate Delta isomerase 2 5.15215713675e-05 9.63827124133e-06 -16908802226.8 +UniRef50_Q8X4L9 Ribosomal large subunit pseudouridine synthase F 0.00252454833992 0.000231923123861 -9.25560933399e+11 +UniRef50_D8JG12 Copper resistance protein A 0.000524241950828 0.00883711014326 3.35600689965e+12 +UniRef50_UPI000366B651 hypothetical protein 1.45759240617e-05 5.53260661999e-06 -3650898225.2 +UniRef50_Q3BZD0 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.48859370868e-06 1.06587181173e-05 1279818125.56 +UniRef50_Q8DJY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.8322802131e-06 4.00790791106e-06 -2351370571.42 +UniRef50_UPI00034D05EE hypothetical protein 0.000163833346204 7.55068960341e-05 -35658471821.0 +UniRef50_L0A753 PRPP binding protein, adenine guanine phosphoribosyltransferase 0.00138104630068 0.0188960615746 7.07102659948e+12 +UniRef50_G0D380 5.76774076497e-05 1.30380961276e-05 -18021437847.4 +UniRef50_P77268 Probable D,D dipeptide transport ATP binding protein DdpD 0.00196116113863 0.00169090038935 -1.09107580957e+11 +UniRef50_P61614 LexA repressor 0.00157319010669 0.00131885519435 -1.02678125152e+11 +UniRef50_UPI0002653AC6 PREDICTED 2.74726729261e-05 1.46052986122e-05 -5194716910.96 +UniRef50_K9ZKB4 SNARE associated Golgi family protein 0.00114536214939 0.0374541272953 1.46582940481e+13 +UniRef50_UPI000413BC23 hypothetical protein 0.000383890031311 0.000533581829112 60432415697.2 +UniRef50_F0K2U2 Phosphate starvation inducible protein family 0.000127099659549 0.00438062943966 1.71720216891e+12 +UniRef50_UPI00040DC67E hypothetical protein 1.46794670038e-05 4.15109483206e-05 10832198266.9 +UniRef50_A6TUT9 Membrane spanning protein 0.000177223468942 0.00140837775611 4.97032093693e+11 +UniRef50_T1A735 UDP N acetylglucosamine pyrophosphorylase 1.00855106338e-05 1.361318171e-05 1424164102.85 +UniRef50_Q5HPS0 tRNA pseudouridine synthase B 0.0155060684356 0.00275916333653 -5.14608201062e+12 +UniRef50_W5XJD4 Translation initiation factor IF 2 8.51931272736e-06 1.20923669355e-05 1442485830.13 +UniRef50_A5UL38 Ribonuclease P protein component 4 0.000311971891609 0.00150249699774 4.80629594731e+11 +UniRef50_UPI0002491B34 amino acid 0.000128136857337 0.000118720032609 -3801687700.13 +UniRef50_UPI000368B66A hypothetical protein 2.95170288089e-06 9.76114674597e-06 2749056049.61 +UniRef50_P11460 Ferric anguibactin binding protein 0.000303826063881 0.00590062806842 2.25949764972e+12 +UniRef50_P19906 Nitrogen regulation protein NtrB 1.62978715283e-05 2.34660104544e-05 2893865647.42 +UniRef50_B5XYC7 Isocitrate dehydrogenase kinase phosphatase 0.000992593992974 0.000330575863979 -2.67264842551e+11 +UniRef50_A5EV79 Dihydroorotate dehydrogenase 9.47349283038e-06 1.63944322388e-05 2794068168.66 +UniRef50_B9J9J5 0.00458344520386 0.00315692339651 -5.75904359018e+11 +UniRef50_G7M6P0 0.000286995034155 0.00159784731786 5.29207152896e+11 +UniRef50_A6L1E7 Thymidine kinase 2.01187252421e-05 0.00124542289424 4.94670329198e+11 +UniRef50_C1D5X5 Protein export membrane protein SecF 0.000423496731925 0.00479101777982 1.76322184254e+12 +UniRef50_S5YUZ3 Homoserine dehydrogenase 0.00115924945427 0.000622501869013 -2.16691586802e+11 +UniRef50_R9P548 Glycoside hydrolase 0.000136734263788 0.0011051466973 3.90959983166e+11 +UniRef50_D0K2M7 0.0226619215243 0.000476317266442 -8.95660068689e+12 +UniRef50_P32057 Putative colanic acid biosynthesis glycosyl transferase WcaI 0.00343250562133 0.000472761530975 -1.19488500942e+12 +UniRef50_F1VXE0 Structural constituent of cell wall 1.98840147218e-05 7.41527650307e-06 -5033782627.51 +UniRef50_V5UK09 Formate dehydrogenase subunit beta 0.00210430502271 0.000550945453515 -6.27110319947e+11 +UniRef50_X1RXD5 Marine sediment metagenome DNA, contig 6.51937653887e-05 0.00010577378169 16382650553.6 +UniRef50_UPI000465978A hypothetical protein 4.09615569275e-05 6.62596708413e-06 -13861698964.8 +UniRef50_S1SMM7 0.000147087991781 0.000110175365929 -14902080025.3 +UniRef50_B5YZ54 0.000820621714897 3.62156086568e-05 -3.16674370834e+11 +UniRef50_Q7TUK9 Glutathione synthetase 4.65311950741e-06 8.40970938525e-06 1516581432.23 +UniRef50_UPI000377FA81 hypothetical protein 3.48602426756e-05 1.49144849256e-05 -8052347165.65 +UniRef50_A2D765 1.1771103176e-05 2.49951883145e-05 5338725448.19 +UniRef50_G3VCD6 3.2992866078e-05 3.27425355059e-05 -101061523.858 +UniRef50_N0C6M2 Integrase recombinase, phage associated protein 0.000597651544228 0.000358018986097 -96742604339.7 +UniRef50_Q4L884 Energy coupling factor transporter ATP binding protein EcfA2 0.00739544804854 0.000901613223168 -2.62164080732e+12 +UniRef50_K0YRV5 7.24120891139e-06 4.44751703172e-05 15031807131.6 +UniRef50_P26277 Chlorophyllide reductase subunit Z 0.00968912381287 0.00337752784376 -2.54806874472e+12 +UniRef50_UPI00028A2E90 glycoside hydrolase family 3 domain containing protein 4.31965219746e-06 2.00158425337e-05 6336744652.64 +UniRef50_A6WZN8 Glycoside hydrolase family 25 0.00407202681989 0.000536159497837 -1.42747302788e+12 +UniRef50_A6V3Q5 Major facilitator superfamily MFS_1 0.000522225000813 0.000130191052996 -1.58268915531e+11 +UniRef50_A4XKS9 Bifunctional protein PyrR 0.0116595986579 0.00311958449445 -3.44770851554e+12 +UniRef50_UPI00046FC8FA 5 hydroxymethyluracil DNA glycosylase 6.85011326164e-06 0.000101781477911 38324956847.8 +UniRef50_Q1RKI0 Transcription elongation factor GreA 0.0038920506607 0.00355890695659 -1.34494201482e+11 +UniRef50_X7FDX5 0.000151899243654 7.5198281885e-05 -30965119492.8 +UniRef50_B9DNY9 Peptide methionine sulfoxide reductase MsrB 2.70405509402e-05 9.72982012043e-05 28363875569.9 +UniRef50_P0A0Q1 0.00953817216138 0.00458823744912 -1.99834938587e+12 +UniRef50_B0V512 0.000177779900556 0.00424091626018 1.64033800867e+12 +UniRef50_R7PVB1 Formate dehydrogenase alpha subunit FdhA 0.00380454465566 0.00162457344837 -8.80081127638e+11 +UniRef50_F0YC19 4.75003182884e-05 5.83417328566e-05 4376812100.3 +UniRef50_UPI00036B39EC hypothetical protein 6.81075721039e-06 0.000387313116175 1.53613471603e+11 +UniRef50_F3N0H6 TPR repeats containing protein 1.72560709512e-05 2.48489921398e-05 3065355459.46 +UniRef50_A0A024HEL1 0.00128419923616 0.000359581890218 -3.73279368888e+11 +UniRef50_Q4JT56 30S ribosomal protein S17 0.0199426560148 0.0182401494385 -6.87322796957e+11 +UniRef50_UPI0004707041 flagellar motor protein MotA 3.84695688012e-05 0.00010844084613 28248263301.8 +UniRef50_P15005 5 methylcytosine specific restriction enzyme B 0.00301289823091 0.000429364413392 -1.04300430566e+12 +UniRef50_K2JGI2 4.0016631271e-05 1.1436053566e-05 -11538329942.6 +UniRef50_UPI0003B70013 phytoene dehydrogenase 1.07987814814e-05 8.63453572346e-06 -873732570.762 +UniRef50_P37769 2 dehydro 3 deoxy D gluconate 5 dehydrogenase 0.00430956673109 0.00234193606269 -7.94356646377e+11 +UniRef50_M4R3K2 0.000292852633973 0.00641654026862 2.47220784421e+12 +UniRef50_G3XD01 UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase 0.00290533867476 8.04837182746e-05 -1.1404286108e+12 +UniRef50_K0JWH3 Putative membrane protein 8.5362456375e-05 8.78827532743e-05 1017474785.77 +UniRef50_A8IMX0 Ribonuclease VapC 0.00396939063587 0.0165862952757 5.09359922992e+12 +UniRef50_I1PF78 0.000152416953778 2.73265051256e-06 -60429390061.0 +UniRef50_UPI000466F096 hypothetical protein 0.00115780608925 0.000203956712401 -3.85080698482e+11 +UniRef50_B7LNV2 Alkanesulfonate monooxygenase 0.00162112557046 0.000780887635834 -3.39214365087e+11 +UniRef50_D0J2L9 Transcriptional regulator, LysR family 0.000120218467792 0.000223161238178 41559259654.7 +UniRef50_F5M0P1 Gifsy 1 prophage protein 0.0114219327633 0.00480379288109 -2.67182428416e+12 +UniRef50_UPI00037B280F lysyl tRNA synthetase 6.98866724026e-06 9.08185225577e-06 845044477.03 +UniRef50_UPI0003754233 hypothetical protein 0.000120140696659 6.05602076369e-05 -24053374553.0 +UniRef50_Q03G75 tRNA dimethylallyltransferase 2.57213951039e-05 9.49414686105e-06 -6551139246.39 +UniRef50_P59588 Lysophospholipase L2 0.0029489420786 0.0021366537172 -3.27930779396e+11 +UniRef50_T1C6H9 Acyl CoA dehydrogenase domain containing protein 0.000875520798991 0.000886758559896 4536821980.18 +UniRef50_UPI00047960F2 PTS mannose transporter subunit IID 1.02498666254e-05 4.00148300791e-05 12016481003.4 +UniRef50_P26381 Fructose permease IIC component 0.0026701964215 0.00192592937028 -3.00469741761e+11 +UniRef50_B2TLW3 Flagellar biosynthetic protein FliR FlhB 0.000481169260526 0.000750222775946 1.08620205833e+11 +UniRef50_UPI0004720299 hypothetical protein 2.94636820662e-05 3.22703334321e-05 1133079597.9 +UniRef50_D5ZRU0 Predicted protein 0.000161311165684 0.00017522198666 5615969132.98 +UniRef50_UPI0003605DC7 hypothetical protein 9.87806786005e-05 2.03280359034e-05 -31672294579.0 +UniRef50_W6RN06 0.000333507365367 7.5307103758e-05 -1.04238614085e+11 +UniRef50_UPI00047B8AE5 acetylornithine aminotransferase 1.99972552186e-05 2.84572483613e-05 3415403047.5 +UniRef50_B4RRC4 7.59020084865e-05 0.00302427920053 1.19029605308e+12 +UniRef50_X0ZZA4 Marine sediment metagenome DNA, contig 4.01387658661e-05 2.89942342969e-05 -4499184153.27 +UniRef50_P62087 0.0327288898215 0.00128509363861 -1.26942463778e+13 +UniRef50_A8AZX9 0.00840303727242 0.00232336340322 -2.45443894698e+12 +UniRef50_UPI0002E4B515 hypothetical protein 2.94503811662e-06 8.86958468569e-06 2391812152.3 +UniRef50_UPI00036DD363 hypothetical protein 7.38496337481e-06 4.74455424024e-06 -1065965569.09 +UniRef50_B3CLB3 Lon protease 6.08164819071e-06 3.09102364229e-06 -1207351829.29 +UniRef50_P32719 D allulose 6 phosphate 3 epimerase 0.00324611413719 0.000435356322155 -1.1347374218e+12 +UniRef50_Q4A0X5 Probable transglycosylase SceD 1 0.031396573588 0.00806031017998 -9.42113590596e+12 +UniRef50_U5MQS6 0.000203157967427 0.00028647152185 33634704292.8 +UniRef50_D9SWT2 Peptidase S8 and S53 subtilisin kexin sedolisin 0.00126380276027 0.00338026991817 8.54443763617e+11 +UniRef50_F3U1Z7 0.000750245327852 0.00022745116196 -2.11058420176e+11 +UniRef50_T2E5I8 Aminotransferase 0.000618819791379 0.000725770298117 43177232000.4 +UniRef50_B1N6N5 0.000175882948698 9.98160252925e-05 -30709150424.9 +UniRef50_E3NW25 2.33661547537e-05 0.000119457122285 38793102761.2 +UniRef50_UPI00047D9B65 diaminopimelate decarboxylase 4.09545332192e-06 1.92779447645e-05 6129358105.5 +UniRef50_W8S2N5 Transamidase GatB domain protein 0.00544791810618 0.000777149224201 -1.88564671443e+12 +UniRef50_UPI0004762BB1 hypothetical protein 7.65220972952e-06 1.17290669309e-05 1645877280.86 +UniRef50_UPI00035C4CBC hypothetical protein 1.21541344001e-05 1.28816090754e-05 293690453.537 +UniRef50_B8ET52 Major facilitator superfamily MFS_1 0.000335604557333 0.00706067967682 2.71499535169e+12 +UniRef50_X2MTV9 ABC transporter ATP binding protein 0.000181672056531 0.000194429484835 5150330357.57 +UniRef50_P45543 Fructoselysine kinase 0.00466679239644 0.00100465188097 -1.47845106561e+12 +UniRef50_P36634 Peptide transport periplasmic protein SapA 0.00370878016206 0.00146986070418 -9.03879259777e+11 +UniRef50_F0PCZ7 Purine catabolism regulatory protein family protein 3.29575012276e-06 0.000668192687577 2.68427052853e+11 +UniRef50_W8H188 0.0164734291377 0.00325138839181 -5.33790010181e+12 +UniRef50_A0A024H2L6 0.000732171040279 0.0033313356393 1.04931464396e+12 +UniRef50_A5UNJ9 ADP ribosylglycohydrolase 0.00232805861492 0.000429073490513 -7.66643597892e+11 +UniRef50_O67589 Aspartate tRNA ligase 4.30621813173e-06 8.59134643497e-06 1729958880.46 +UniRef50_B7N653 Succinyl diaminopimelate desuccinylase 0.00363875712286 0.000874884065336 -1.11580946986e+12 +UniRef50_H0AAM1 FeS assembly ATPase SufC 2.87776688251e-05 0.000160934711767 53353419985.0 +UniRef50_Q59787 Sorbitol dehydrogenase 0.00250653198203 0.000893052862394 -6.51381320214e+11 +UniRef50_D0UZ77 PCQ3_28 4.15623592636e-05 5.39601139639e-05 5005125710.07 +UniRef50_V1SPC6 Pheromone autoinducer 2 transporter 8.5909099192e-05 5.99226595592e-05 -10491044569.2 +UniRef50_UPI000478598D hypothetical protein 7.10373662491e-05 6.73410119392e-06 -25960017192.6 +UniRef50_Q74JW2 Peptide deformylase 2.41731385704e-05 2.23474274156e-05 -737061997.188 +UniRef50_F2E297 Predicted protein 4.86956681008e-05 0.000523252489599 1.91584412306e+11 +UniRef50_UPI0004752275 hypothetical protein 0.00114028249723 0.000459041510662 -2.75025346044e+11 +UniRef50_C6EBU6 Protein phosphatase CheZ 0.000723433061809 0.000678888977457 -17982993470.3 +UniRef50_A4WNW7 IS66 Orf2 family protein 0.0070523954477 0.000780792468577 -2.53192308389e+12 +UniRef50_A7Z5S1 Peptide methionine sulfoxide reductase MsrB 1.56517462426e-05 6.19181240749e-05 18678304483.2 +UniRef50_R5XIL5 Lactate dehydrogenase and related dehydrogenases 0.00022248683036 0.00216256098738 7.83231744576e+11 +UniRef50_Q1QYW1 NADH 0.000455243224798 0.000482544212137 11021743609.5 +UniRef50_UPI000463660C enolase 0.000280812897045 0.000497759078396 87583835640.4 +UniRef50_UPI000376E944 hypothetical protein 0.00043877914092 6.63507474169e-05 -1.50353912667e+11 +UniRef50_Q98DS8 Mll4564 protein 0.00676823217318 0.00112745575856 -2.27725065869e+12 +UniRef50_R4K6M8 Glucose inhibited division protein A 0.00171984288714 0.00242275307553 2.83773468731e+11 +UniRef50_B3CL83 Adenylosuccinate synthetase 1.93766977761e-05 1.48099357066e-05 -1843657887.93 +UniRef50_A4SQR5 Short chain dehydrogenase reductase 0.000982568100816 0.000224860435429 -3.05895882635e+11 +UniRef50_UPI0003695FD7 D alanyl D alanine carboxypeptidase, partial 2.36203726778e-05 0.000104757275838 32755963467.5 +UniRef50_O34113 LctF 0.00581812747746 0.000846471370218 -2.00711857957e+12 +UniRef50_S4P7C3 8.85163895114e-05 0.000308156561946 88671432900.0 +UniRef50_UPI00036089CB hypothetical protein 1.6381062638e-05 3.2229661057e-05 6398273665.92 +UniRef50_Q03075 Cbb3 type cytochrome c oxidase subunit FixP 5.14392962691e-05 3.31098721828e-05 -7399813430.97 +UniRef50_UPI0003658182 hypothetical protein, partial 2.41254644682e-05 1.50789038183e-05 -3652207548.15 +UniRef50_UPI0004674DF5 amino acid permease 1.33139121903e-05 6.32123518271e-05 20144612404.1 +UniRef50_L1K8T7 0.00378891467489 0.00226151214981 -6.16631142712e+11 +UniRef50_Q9RUV1 0.000517104094322 0.0242074170036 9.56407003432e+12 +UniRef50_Q3J2V7 Cysteine tRNA ligase 0.013321024907 0.00366749135977 -3.89724995519e+12 +UniRef50_Q7UDG1 IS150 orfB 2.15112910013e-05 3.79095398557e-05 6620174291.66 +UniRef50_UPI00047119E7 hypothetical protein 1.3482816269e-05 1.72602988575e-05 1525016075.9 +UniRef50_U5P9Q9 PTS sorbitol transporter subunit IIB 0.00455599138761 0.00137658153812 -1.28356677199e+12 +UniRef50_UPI000377D2DD hypothetical protein 1.32659532636e-06 1.58533270959e-06 104455456.675 +UniRef50_P76015 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 0.00222489802156 0.00126748420619 -3.86519706054e+11 +UniRef50_UPI00037EA2E6 50S ribosomal protein L22 2.44714247261e-05 0.000485340727426 1.86058593002e+11 +UniRef50_M4RZJ4 0.00805921539269 0.00283257047125 -2.11006069293e+12 +UniRef50_Q9K1M2 Putative outer membrane protein NMB0088 0.000182584478593 0.0042871878156 1.6570787363e+12 +UniRef50_E3GXS5 0.00207712611303 0.000461491420949 -6.5225155126e+11 +UniRef50_Q2YY67 L threonine dehydratase catabolic TdcB 0.00955045652567 0.00271362620379 -2.76011229829e+12 +UniRef50_A6LZV8 Glycoside hydrolase, family 3 domain protein 0.000108375534935 0.0012283847382 4.52161459419e+11 +UniRef50_Q4V182 L carnitine dehydrogenase 0.0101480539402 0.00356905336446 -2.65602326584e+12 +UniRef50_Q0TTK8 ATP dependent zinc metalloprotease FtsH 0.00018612263233 0.00126585669549 4.35901891125e+11 +UniRef50_Q493R1 3 isopropylmalate dehydrogenase 4.7371828611e-05 5.00492365676e-06 -17104039430.4 +UniRef50_I1P669 0.00101280628442 0.000336931000897 -2.72859145881e+11 +UniRef50_Q97PA9 Serine threonine protein kinase StkP 0.00696820233415 0.00270429604159 -1.72139129432e+12 +UniRef50_Q601J1 30S ribosomal protein S13 0.000496692090597 0.000584785554841 35564412543.7 +UniRef50_P08967 Phosphoglycerate kinase, glycosomal 1.06910205071e-05 7.47959375274e-06 -1296492389.37 +UniRef50_O62584 Thymidylate synthase 1 2 2.9258513422e-05 0.000205602591933 71192268480.1 +UniRef50_S5CQF3 0.000399553315002 0.00715075457254 2.72554279422e+12 +UniRef50_A7MER9 Outer membrane lipoprotein carrier protein 0.00202636880284 0.000368378426439 -6.69351060783e+11 +UniRef50_A6TF99 Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase 0.00210514683691 0.000472480396285 -6.59127477153e+11 +UniRef50_B2GGG9 Serine tRNA ligase 0.000512995877055 0.0122645969753 4.74426557171e+12 +UniRef50_A0A023RZA8 Membrane protein 0.000190433602957 0.00864352207243 3.41261554619e+12 +UniRef50_Q8X4V6 0.00179725305493 0.000337282909284 -5.89407863647e+11 +UniRef50_P0ABG6 Lipid II flippase FtsW 0.00235333090038 0.000385869110511 -7.94288468042e+11 +UniRef50_Q5HP96 UPF0398 protein SERP1017 0.0267946354678 0.00399158954331 -9.20586946456e+12 +UniRef50_A3PIJ2 0.0159060543423 0.00940274233268 -2.6254668629e+12 +UniRef50_UPI00047E8C89 hypothetical protein 0.000102988680736 1.14711632553e-05 -36946744853.2 +UniRef50_R5IVN1 0.000755024440023 0.0012043787995 1.81409869119e+11 +UniRef50_U5MNN1 ABC transporter permease protein YtlD 0.0007072841997 0.00129521100198 2.37353264754e+11 +UniRef50_Q0TLV3 Carnitinyl CoA dehydratase 0.00279965172778 0.000997654519112 -7.27488386132e+11 +UniRef50_UPI0003B62712 dihydropteroate synthase 9.18529581076e-06 9.25593165488e-06 28516557.0705 +UniRef50_P36204 Bifunctional PGK TIM 2.72064941961e-05 5.97239697416e-05 13127703912.0 +UniRef50_Q040Z6 PTS system IIC component, Glc family PTS system IIA component, Glc family PTS system IIB component, Glc family 7.77253237152e-05 0.0058361120881 2.32473140013e+12 +UniRef50_UPI0003791F03 hypothetical protein 3.72904934968e-05 4.38467538158e-05 2646842745.14 +UniRef50_E2XKU2 Amino acid ABC transporter, permease protein 0.000189691451679 0.000306027673785 46966360470.2 +UniRef50_Q9HYZ2 0.000935915674838 0.000412069821193 -2.11482999428e+11 +UniRef50_UPI00035E2D1C hypothetical protein, partial 0.000140661884157 9.18979706105e-05 -19686590299.2 +UniRef50_J3X3P8 9.61872981717e-06 0.00185844440888 7.46393614279e+11 +UniRef50_B4RBF7 Shikimate dehydrogenase 7.14829064464e-06 3.51008448781e-05 11284789160.5 +UniRef50_Q1QDQ1 DNA polymerase I 0.000126294524063 0.00652444139612 2.58301040634e+12 +UniRef50_UPI000237E1F7 glutathione S transferase domain containing protein 0.000189719968907 0.00015044558316 -15855551477.0 +UniRef50_Q9RZD1 0.000181785552974 0.0390509033601 1.56919398364e+13 +UniRef50_UPI000368F5E5 hypothetical protein 3.621121288e-05 0.000361975321753 1.31514968327e+11 +UniRef50_UPI0003B79537 ArsR family transcriptional regulator 0.000298520184878 0.000650198267348 1.41976757469e+11 +UniRef50_A5V938 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.00359135230845 0.00282243281589 -3.1042223485e+11 +UniRef50_W6I678 ThiJ PfpI family protein 0.000309414744966 0.00473497887393 1.78665454664e+12 +UniRef50_X2HDH4 Prolyl endopeptidase 0.000192831070286 0.00297778804545 1.12432130614e+12 +UniRef50_UPI00037D6405 hypothetical protein 8.09772237406e-06 0.000606515826502 2.41588732052e+11 +UniRef50_UPI0000557872 hemolysin E 1.85850226055e-05 0.000126798194406 43686985380.6 +UniRef50_P09432 Nitrogen regulation protein NtrC 0.00238181079388 0.000129524870691 -9.09275465848e+11 +UniRef50_D5AL29 Two component response regulator receiver protein 0.0084743438328 0.00154412879824 -2.79781285275e+12 +UniRef50_UPI00036494B1 hypothetical protein 1.14520053082e-05 1.33906661955e-05 782661190.247 +UniRef50_Q052H7 Phosphoglycerate kinase 4.16179339248e-05 8.1299334423e-05 16019868326.7 +UniRef50_UPI0003EABFC2 PREDICTED 7.10896622294e-06 1.53219417471e-05 3315679003.65 +UniRef50_Q9RSL1 30S ribosomal protein S5 0.00104045668665 0.0333469280332 1.30425189276e+13 +UniRef50_K1UC05 Protein containing DUF939, bacterial 0.000269290506802 0.000769210317071 2.01823762112e+11 +UniRef50_A4A5I0 Transcriptional regulator, LysR family 0.000115439140317 0.00900198469442 3.58760749037e+12 +UniRef50_E0SZL8 Transposase like protein, IS1381 ISSpn7 0.000322620719948 0.0125389865674 4.9318968043e+12 +UniRef50_E4ZDR8 0.000134816424593 0.00165133884099 6.12238709323e+11 +UniRef50_N1UYX5 Phenol hydroxylase 5.89116420825e-06 0.000155200713376 60278097233.3 +UniRef50_S9SLF7 Autoinducer binding domain protein 0.00093932713066 0.000191993246635 -3.01707859799e+11 +UniRef50_D2NRK7 3.3230263015e-06 9.39544695055e-06 2451510733.0 +UniRef50_A0A023RRK9 Threonine transporter 0.000184139506761 0.00828312346459 3.26965920949e+12 +UniRef50_B8D184 Undecaprenyl phosphate galactose phosphotransferase 0.0178802662006 0.00203197898556 -6.39814802905e+12 +UniRef50_B8GW31 Chromosome partitioning protein ParA 0.00164223749933 0.00270776806683 4.3016776563e+11 +UniRef50_Q2YX06 Serine protease HtrA like 0.00719860748447 0.00169102115768 -2.22348018581e+12 +UniRef50_R1DBW6 2.43095049914e-05 0.00220676144991 8.81082631861e+11 +UniRef50_F0KH23 Leucine responsive regulatory protein 0.000357242260744 0.0157264629202 6.20474298179e+12 +UniRef50_UPI00037AFA99 hypothetical protein 1.61645342173e-05 2.68569374246e-05 4316654385.33 +UniRef50_F6BRI2 ABC transporter related protein 0.00458187885437 0.00136207816973 -1.29987304779e+12 +UniRef50_UPI000475B74E thioredoxin 6.44921637278e-05 3.00267419484e-05 -13914113710.6 +UniRef50_UPI0003B651BF hypothetical protein 3.59877954457e-06 1.51365858863e-05 4657954004.95 +UniRef50_E8SGD2 Histidinol phosphate aminotransferase 0.0113688942098 0.00288484775792 -3.42511366358e+12 +UniRef50_UPI00035E63FD hypothetical protein 2.26884410251e-05 5.66026617906e-05 13691587097.3 +UniRef50_Q6G9C7 0.0569236867706 0.00719891760732 -2.00744995028e+13 +UniRef50_D7ZSZ7 PAS domain S box protein 0.00125882278881 0.0002365687892 -4.1269648411e+11 +UniRef50_UPI00036BE173 hypothetical protein 0.000213194056304 0.0166347881054 6.62959903324e+12 +UniRef50_X0ZMI1 Marine sediment metagenome DNA, contig 1.09933861727e-05 1.37482681765e-05 1112179671.14 +UniRef50_B9TQ51 2.34613584905e-05 2.38969980578e-05 175873039.218 +UniRef50_UPI000361BC07 hypothetical protein 8.18239258705e-06 1.2240346634e-05 1638245845.45 +UniRef50_D4GML0 2.92979205697e-05 0.00016259441306 53813429750.1 +UniRef50_UPI0003B5D96D isoleucyl tRNA synthase 1.30225950678e-06 9.47509600995e-06 3299474388.31 +UniRef50_P21979 Cell surface antigen I II 0.00168513266848 0.000558986200168 -4.54639148628e+11 +UniRef50_U6JYK1 1.18503624596e-06 9.5229616426e-05 37966951075.4 +UniRef50_UPI000388F8F9 PREDICTED 3.95096325119e-05 3.74273189267e-05 -840655547.206 +UniRef50_Q83I82 Ribonuclease 3 1.36958573419e-05 3.17529083359e-05 7289853071.21 +UniRef50_A0A010CBA8 Sensory box protein 0.000126314455301 0.00407593419031 1.59450995431e+12 +UniRef50_UPI00036F9D46 hypothetical protein 0.00128250611703 0.000286046940196 -4.02282797617e+11 +UniRef50_I3URK7 0.000357242260744 0.000166419186879 -77037616581.7 +UniRef50_UPI0003840A4F 4.26474190853e-05 2.6737376543e-05 -6423079412.5 +UniRef50_Q046F5 Ribose xylose arabinose galactoside ABC type transport system, permease component 0.00497908598323 0.000711740139129 -1.72277988349e+12 +UniRef50_UPI00047D7A3C hypothetical protein 4.26630180822e-06 9.73429077711e-05 37576168005.6 +UniRef50_UPI00047EF134 hypothetical protein 1.42436275094e-05 5.48506620011e-06 -3535938680.19 +UniRef50_M0E9W2 ABC transporter 3.71357906449e-05 8.37799471534e-05 18830818370.6 +UniRef50_Q4JX51 Glucose 6 phosphate isomerase 0.000353900328692 0.0586143601304 2.35204625582e+13 +UniRef50_E0WQQ5 Methionine import ATP binding protein MetN 0.00122423816102 0.00107365529275 -60792151780.2 +UniRef50_Q02UV9 C4 dicarboxylate transport protein 1 0.00148177567685 0.00648072472859 2.01813707619e+12 +UniRef50_M4RCM3 Transcriptional regulator, LysR family 0.000135623708568 0.00628328739222 2.48188726941e+12 +UniRef50_F0K514 PTS cellobiose specific component IIC 0.000591433385354 0.00134115428163 3.02671525937e+11 +UniRef50_Q1QEI9 Ubiquinone biosynthesis O methyltransferase 0.000834226009116 0.00611269719309 2.13098359109e+12 +UniRef50_Q8GFF3 Putative PHA synthase 7.85591894568e-05 0.00016609176027 35337972982.7 +UniRef50_P37690 Murein hydrolase activator EnvC 0.00302434250169 0.000771325695306 -9.09570532361e+11 +UniRef50_E4PQ84 1.2040700253e-05 9.92077130194e-06 -855841331.997 +UniRef50_J0QIU8 5.85101560969e-05 5.21675004671e-05 -2560607910.89 +UniRef50_A6TEB9 Transcriptional regulator LsrR 0.00175953018171 0.000336223952777 -5.74606190551e+11 +UniRef50_UPI00047D6083 hypothetical protein 0.000189691451679 0.000727618187069 2.1716762418e+11 +UniRef50_R9SM88 Cell wall biosynthesis glycosyl transferase GT2 family 0.00168402716208 0.00162444142754 -24055492233.0 +UniRef50_A1B0F4 Trigger factor 0.01941329768 0.00572273330803 -5.52704883909e+12 +UniRef50_A5UMS8 Predicted Fe S oxidoreductase 0.00363183121526 0.000271347661734 -1.35666844833e+12 +UniRef50_Q9KVQ7 DNA recombination protein RmuC homolog 0.00256967020238 0.000729789765887 -7.42782310083e+11 +UniRef50_UPI0003940AB8 PREDICTED 0.000179755232787 7.60655666265e-05 -41860790644.1 +UniRef50_A6LVE6 0.000611295128081 0.000166531976621 -1.79556342102e+11 +UniRef50_UPI00045EBD23 ribonuclease 1.19504333421e-05 6.88081965385e-06 -2046665257.1 +UniRef50_UPI00037A1E81 hypothetical protein 8.87392739883e-06 2.06787931047e-05 4765769147.46 +UniRef50_UPI00034A9AF9 hypothetical protein 3.26363488318e-06 8.04327478279e-07 -992852578.454 +UniRef50_A0A046SME3 2.96200792677e-05 1.44724594823e-05 -6115279989.56 +UniRef50_F9EX65 4.73639024017e-06 0.000106345959956 41021030184.0 +UniRef50_UPI0004420089 PREDICTED 6.45264576919e-06 1.31355339313e-05 2697963959.3 +UniRef50_B2TRU1 0.000227401198102 0.000355090226682 51549627758.3 +UniRef50_UPI0004713B45 molecular chaperone GroEL 1.41056271895e-05 7.91225073426e-06 -2500342076.26 +UniRef50_A3VY81 0.000198337229906 9.01256656242e-05 -43686336405.9 +UniRef50_UPI0002192600 putative ATP dependent DNA helicase 0.000232984283383 0.000728006461457 1.99846527894e+11 +UniRef50_Q4FNX4 Argininosuccinate synthase 4.60417650868e-06 0.000115503887791 44771574337.0 +UniRef50_D7GFL4 Permease 0.000303017887677 0.00422676574533 1.58406515993e+12 +UniRef50_UPI00047891E2 phytoene desaturase 5.3667327197e-06 7.2543480766e-06 762053483.226 +UniRef50_A3U7R8 O acetylhomoserine sulfhydrylase 0.00365375674043 0.00106991692891 -1.04312783919e+12 +UniRef50_UPI0004412677 hypothetical protein DICSQDRAFT_154134 5.55126454158e-05 1.99279368089e-05 -14365983538.1 +UniRef50_Z3FT61 Fructose 1,6 bisphosphatase class 3 0.00921474306472 0.00581094762015 -1.37415399024e+12 +UniRef50_M7TDD9 1.71223410963e-05 0.000211344316552 78409794863.2 +UniRef50_UPI00036A8806 hypothetical protein 1.47694365878e-05 1.20058522411e-05 -1115692913.76 +UniRef50_X0VQS5 Marine sediment metagenome DNA, contig 6.85867987582e-06 2.2722108619e-05 6404260849.79 +UniRef50_UPI0003B398BB UDP N acetylglucosamine 1 carboxyvinyltransferase 3.77740652225e-06 5.39125423055e-05 20240169543.0 +UniRef50_P20708 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.68746688471e-05 0.000219307359587 81724561380.2 +UniRef50_UPI000464E54F MULTISPECIES 4.820905431e-06 0.000130193572939 50614484368.6 +UniRef50_B1JTI2 Probable chemoreceptor glutamine deamidase CheD 0.000109289381948 2.20349851648e-05 -35225670713.2 +UniRef50_E4BFD9 0.00061631723639 5.80557912342e-05 -2.25376996048e+11 +UniRef50_UPI000466A1C5 sugar ABC transporter 3.91315781462e-06 2.76754962563e-05 9593147625.6 +UniRef50_F0J4U6 0.0111589484345 0.000773554567154 -4.19271094734e+12 +UniRef50_P22348 Probable N5 carboxyaminoimidazole ribonucleotide mutase 0.00218475570302 0.000402932550225 -7.1934387221e+11 +UniRef50_UPI00034A55E9 hypothetical protein 7.05684739646e-05 9.35797057316e-05 9289916643.91 +UniRef50_R4Q3N6 Membrane protein 0.000182123770809 0.00472225207694 1.83290551082e+12 +UniRef50_UPI0004634E35 hypothetical protein, partial 3.7630948582e-07 1.76644394791e-06 561214341.214 +UniRef50_Q39189 DEAD box ATP dependent RNA helicase 7 9.34927762685e-07 7.86056544817e-05 31356625503.5 +UniRef50_T0YWI9 Molecular chaperone DnaK 0.000161053846977 6.58745568312e-05 -38425047413.1 +UniRef50_W6K8T3 Putative TRAP_TAXI 0.000114743225202 2.26318262268e-05 -37186502100.3 +UniRef50_A4WWQ1 Lipoprotein signal peptidase 0.00371567398925 0.00272756744012 -3.98910739315e+11 +UniRef50_Q4L4B4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.39971236081e-05 7.46491246428e-05 16411711673.9 +UniRef50_A4WY58 CobB CobQ domain protein glutamine amidotransferase 0.000246320457081 0.000196877803461 -19960605996.0 +UniRef50_D8GTF6 0.000422402401927 0.000260190929686 -65486761902.3 +UniRef50_A6LQW7 ExsB family protein 0.000373206855759 0.00068955586235 1.27713976e+11 +UniRef50_P28297 Isocitrate lyase 4.26335849334e-06 2.36275284275e-05 7817553027.52 +UniRef50_P42597 0.00631196308603 0.000812811340909 -2.22007504169e+12 +UniRef50_C6STB3 0.0107871716727 0.00206669624854 -3.520562941e+12 +UniRef50_P42591 0.00193054519094 0.00320678251048 5.15232667091e+11 +UniRef50_Q8X7Z7 2,5 diketo D gluconic acid reductase B 0.00313150716317 0.00760622112409 1.80649693694e+12 +UniRef50_P28629 Biodegradative arginine decarboxylase 0.00409763984274 0.00085685515374 -1.30834454785e+12 +UniRef50_Q12S01 4 hydroxybenzoate octaprenyltransferase 0.0042587374413 0.0011077741925 -1.27208253021e+12 +UniRef50_P42599 0.004950465828 0.001822522206 -1.26278922439e+12 +UniRef50_O26899 Cobalt precorrin 5B C methyltransferase 0.00260262151464 0.0012322035567 -5.5325454654e+11 +UniRef50_V5VH70 Phosphatase 5.77897974214e-05 0.00572430436815 2.28764146816e+12 +UniRef50_Q3AAW2 Homoserine O acetyltransferase 1.08403569238e-05 3.86216739475e-05 11215658597.6 +UniRef50_UPI0003B4A61E DEAD DEAH box helicase 3.38437072626e-05 3.77751647364e-05 1587177626.58 +UniRef50_A0A023XYH0 Chromosome partitioning protein ParB 0.000260335164724 0.00039551344445 54573130349.4 +UniRef50_Q28TB6 Amino acid ABC transporter membrane protein 2, PAAT family 0.0187706893392 0.00522536824028 -5.46841234741e+12 +UniRef50_UPI00046853C2 riboflavin synthase subunit alpha 1.67601060698e-05 1.82718435472e-05 610306970.731 +UniRef50_G9ETY0 1.11146514251e-05 6.48812752766e-06 -1867784471.23 +UniRef50_K2HGL3 0.000243492123435 7.08970167188e-05 -69678762561.4 +UniRef50_A7ZPD3 tRNA pseudouridine synthase A 0.00290047114457 0.000392013325476 -1.01269520381e+12 +UniRef50_UPI000288F464 putative sugar permease 5.30496442386e-05 2.92260381479e-05 -9617882127.34 +UniRef50_A6LW08 Signal transduction histidine kinase, LytS 0.000451598522543 0.000149653735742 -1.21898815711e+11 +UniRef50_UPI00017458E1 hypothetical protein 5.17666048763e-06 0.000215387750992 84864796816.6 +UniRef50_D0LK45 1.52058451083e-05 1.33784034764e-05 -737760612.029 +UniRef50_UPI00037DE0EA hypothetical protein 3.35671865527e-05 0.00360582251116 1.44216331105e+12 +UniRef50_D2G3Z9 FemAB family protein 0.00296593495892 0.00090988641634 -8.30052027192e+11 +UniRef50_N8EHW1 0.00034027458933 3.87422662346e-05 -1.21732299051e+11 +UniRef50_UPI000429DAEA LamB YcsF family protein 0.000194408159709 7.36805082408e-05 -48739234392.5 +UniRef50_Q2S6G3 N acetylmuramic acid 6 phosphate etherase 6.34452877274e-06 1.19211350155e-05 2251344372.86 +UniRef50_U3KRA1 2.01935365818e-05 5.93521871013e-05 15808827745.4 +UniRef50_UPI0004002A98 peroxiredoxin 2.14039525811e-05 0.00146770844706 5.83890872574e+11 +UniRef50_O26293 Putative glutamine amidotransferase MTH_191 0.00246585552814 0.000631636943427 -7.40496551041e+11 +UniRef50_M9REL9 0.000120005114013 2.49764231824e-05 -38364248621.5 +UniRef50_UPI000262CE83 molybdopterin biosynthesis protein MoeB 3.08415629599e-05 3.93587812719e-05 3438505550.58 +UniRef50_M9R8D3 0.00149498981563 0.000257918519823 -4.9942086269e+11 +UniRef50_M0XFB3 6.75989933849e-06 4.94023284623e-05 17215271918.7 +UniRef50_Q8DUC6 0.000124417927162 0.000658698970703 2.15695813643e+11 +UniRef50_N6YKC6 ISPsy6, transposase 0.000202453183491 2.62525826019e-05 -71134344803.4 +UniRef50_UPI00029CD3E9 cation transport ATPase, partial 3.66033828133e-05 2.00560950748e-05 -6680343118.09 +UniRef50_UPI0003B71BA4 ABC transporter permease, partial 2.95187469514e-05 0.000111775702274 33208142270.1 +UniRef50_O27280 Probable dihydroorotate dehydrogenase B ), electron transfer subunit 0.00327646536977 0.000701064507089 -1.03972093199e+12 +UniRef50_W0YRK3 Putative thioesterase 7.1434913512e-05 0.000122569586611 20643695023.1 +UniRef50_P50456 Protein mlc 0.00450629227192 0.00192374181264 -1.04260731187e+12 +UniRef50_UPI0001CB956C PREDICTED 7.42741603044e-06 3.6137647226e-06 -1539617831.74 +UniRef50_A3UCU0 5.89282781618e-05 1.64214993614e-05 -17160508218.6 +UniRef50_G3XCV3 Pseudaminidase 0.000894680172104 0.000348423188776 -2.20530647497e+11 +UniRef50_UPI00046CA980 hypothetical protein 0.000103134540428 0.000830384340167 2.93599668513e+11 +UniRef50_UPI0000222793 Hypothetical protein CBG15144 4.76798104979e-06 7.43423387758e-05 28088021987.4 +UniRef50_UPI000475010A CoA transferase 1.77751223697e-05 1.03484718355e-05 -2998229955.91 +UniRef50_B4D594 4.8185079133e-05 4.41455210369e-06 -17670698886.5 +UniRef50_F4LXR7 PTS system transcriptional activator 0.000258344947161 0.00115214692699 3.60838827441e+11 +UniRef50_UPI000362454E hypothetical protein, partial 0.000279195077368 7.40173396883e-05 -82832770515.4 +UniRef50_UPI00047529B6 XRE family transcriptional regulator 0.000134734766548 0.00209618877371 7.91863052438e+11 +UniRef50_I1ZJL0 Nicotinate phosphoribosyltransferase 0.00887987135156 0.00801017535971 -3.5110694428e+11 +UniRef50_F8HYA2 Nucleoside permease 0.0119047796699 0.00354020740774 -3.37688046708e+12 +UniRef50_J9P4X2 0.000166866507466 0.000895894213725 2.94317431193e+11 +UniRef50_A0A058Z6X5 2.32379403655e-05 2.89762915922e-05 2316642807.71 +UniRef50_A6M027 YCII related 0.00283495056924 0.00124343875871 -6.42512847957e+11 +UniRef50_P65213 Potassium transporting ATPase C chain 1 0.00553997013872 0.00309685078509 -9.86317263506e+11 +UniRef50_Q6FE54 0.000512424419253 0.0132589333071 5.14592205526e+12 +UniRef50_J0MDM2 0.000269631637761 7.1028548275e-05 -80178504359.5 +UniRef50_A6LW35 0.000547508094968 0.000713710053181 67097770058.0 +UniRef50_A6LW34 0.000436399987111 0.000885387665832 1.81261835598e+11 +UniRef50_P23504 Cell surface antigen I II 0.00181275939383 0.000650220892318 -4.69331059011e+11 +UniRef50_A5UL13 Acetolactate synthase , large subunit, IlvB 0.00279597425515 0.000584644573848 -8.92740928408e+11 +UniRef50_P76655 Putative outer membrane usher protein YqiG 0.00162472913007 0.000645227681151 -3.95436754763e+11 +UniRef50_UPI00035C946D hypothetical protein 2.47893644858e-05 0.000340754936465 1.27559178742e+11 +UniRef50_UPI000377D66B hypothetical protein 1.31790862294e-05 8.04769440166e-05 27168971026.3 +UniRef50_E8SK78 ABC transporter ATP binding protein 0.0217874363306 0.00634562869259 -6.23404723575e+12 +UniRef50_P43085 Phosphoenolpyruvate carboxykinase [ATP] 0.00676049522965 0.00353198982013 -1.30338725204e+12 +UniRef50_F5HTK1 Alcaligin biosynthesis enzyme family protein 0.000337213365454 0.0086628498287 3.36116160726e+12 +UniRef50_Q48KB4 Tat pathway signal sequence domain protein 0.00117050282886 0.00050992959632 -2.66681520122e+11 +UniRef50_W4THQ3 Exodeoxyribonuclease V alpha chain 8.82891222297e-05 0.000184990175522 39039401869.5 +UniRef50_UPI0003604119 hypothetical protein 1.13143981663e-05 1.54021950422e-05 1650293761.71 +UniRef50_UPI0003B700CE molybdopterin biosynthesis MoeZ 3.57262595896e-05 5.10606179944e-05 6190668661.76 +UniRef50_B6BAZ3 2.23612922757e-05 1.41637150277e-05 -3309462530.6 +UniRef50_A0A058T111 Glycerol 3 phosphate acyltransferase 0.00333973788365 0.000701930699578 -1.06491512974e+12 +UniRef50_Q1QVF5 Phosphoheptose isomerase 2.80360261003e-05 0.000996154590681 3.90841344672e+11 +UniRef50_UPI0002BA0065 hypothetical protein, partial 0.000365959281483 0.000368773989167 1136332032.38 +UniRef50_B5Y0W4 UPF0234 protein KPK_4305 0.000771382803832 0.000809076916587 15217575878.0 +UniRef50_UPI0003B69561 IMP cyclohydrolase 3.64198487707e-06 1.13631075166e-05 3117111958.41 +UniRef50_UPI0001744350 glycine hydroxymethyltransferase 5.43278517763e-05 0.00011810801453 25748834374.3 +UniRef50_UPI000470759E ATP dependent DNA helicase PcrA 2.2767975394e-05 3.54729822884e-06 -7759623235.82 +UniRef50_Q2G1Q2 1 phosphatidylinositol phosphodiesterase 0.0122526986999 0.000767549261549 -4.63669576691e+12 +UniRef50_B9KLG1 Membrane anchored oxidoreductase 0.00316724992267 0.000923417572624 -9.05862654634e+11 +UniRef50_UPI00047BB328 phosphoenolpyruvate carboxykinase 3.70943559105e-06 3.01753922579e-05 10684631480.2 +UniRef50_P03014 DNA invertase from lambdoid prophage e14 0.00383349400254 0.00212528194228 -6.89626170846e+11 +UniRef50_Q5L3T0 Type III pantothenate kinase 0.000587109070158 0.00280214634288 8.94237728561e+11 +UniRef50_G8LV00 Transposase 0.000284407251873 0.000671530690386 1.56286482666e+11 +UniRef50_D0KD36 Lipid A palmitoyltransferase PagP 0.0014690437816 0.000319261302914 -4.64181296065e+11 +UniRef50_UPI00047780D2 alanine dehydrogenase 1.27751402393e-05 1.35502889441e-05 312937044.272 +UniRef50_D6CRU4 2.54366637794e-05 7.21115035386e-06 -7357863422.07 +UniRef50_B9JWD9 5.9942485479e-05 4.89198339163e-05 -4449979699.01 +UniRef50_UPI0003479767 hypothetical protein 2.21732765988e-06 0.000101266775305 39987477487.7 +UniRef50_UPI0003605B2B hydrogenase nickel incorporation protein HypA 0.000864059133047 0.000349089772983 -2.07899450043e+11 +UniRef50_A4WW77 Ribosome maturation factor RimP 0.0117719189282 0.00247377764146 -3.75377373848e+12 +UniRef50_E3EZC8 0.00176408721327 0.000459099731777 -5.26839460275e+11 +UniRef50_W7DGX3 Bleomycin resistance protein 0.00025492751768 0.000186448281897 -27645907820.3 +UniRef50_B2TRM3 NAD kinase 0.000135786326927 0.000586882801755 1.82113182464e+11 +UniRef50_C1A7Q5 0.00932520563225 0.00179019189762 -3.04197750969e+12 +UniRef50_N6UYT1 2.25987607162e-05 3.62094898069e-06 -7661575481.56 +UniRef50_Q3ABL6 Dephospho CoA kinase 1.20243908199e-05 2.08714931199e-05 3571683764.66 +UniRef50_UPI0003C0FD63 PREDICTED 1.92332436971e-06 6.0561121335e-06 1668457135.25 +UniRef50_O34011 Fructose 1,6 bisphosphatase class 1 0.014432083949 0.00263944714889 -4.76083218813e+12 +UniRef50_UPI00046969A6 glutamine amidotransferase 2.42198891871e-05 0.000193209237267 68223073552.4 +UniRef50_UPI000191383D hypothetical protein, partial 0.000219393285239 0.000570092336986 1.41581510752e+11 +UniRef50_D2J6T4 0.0146825025136 0.0184641894148 1.52671340853e+12 +UniRef50_H8L0H5 Plasmid stabilization system protein 0.000786429143437 0.00133388549242 2.21014846129e+11 +UniRef50_D5MJN8 3.4300926193e-05 2.01767967235e-05 -5702084389.4 +UniRef50_U5ULW6 0.000200748310105 1.91019005938e-05 -73332884571.7 +UniRef50_Q57QS3 Ribosomal RNA large subunit methyltransferase I 0.00379190236464 0.00175416308921 -8.22660351364e+11 +UniRef50_J3CV04 0.0011256696039 0.000345886947823 -3.14807827268e+11 +UniRef50_S5KGZ8 2.44073701629e-05 0.00277223710451 1.10933258342e+12 +UniRef50_Q66FE1 Thiol 0.000696968325316 0.000272439138384 -1.71387642323e+11 +UniRef50_B4U9I4 Cysteine tRNA ligase 2.53322269882e-06 1.05301970904e-05 3228476695.79 +UniRef50_A0A038GF87 Plasmid pRiA4b ORF 3 family protein 5.63196768525e-05 1.35083780639e-05 -17283446674.7 +UniRef50_R4QCF3 Membrane protein 0.000171703875971 0.00616852914197 2.42099194921e+12 +UniRef50_Q8CTK1 0.0324925758293 0.00518341774847 -1.10250422383e+13 +UniRef50_P77935 Amidophosphoribosyltransferase 0.00644337706952 0.00276435319734 -1.4852670839e+12 +UniRef50_UPI00030EA43E hypothetical protein 3.03099895798e-06 5.64913886355e-06 1056975208.07 +UniRef50_B3R9A8 YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal 0.00313301799874 0.0411856486794 1.53623139641e+13 +UniRef50_UPI00040764A3 amidohydrolase 4.027611842e-06 6.82205019724e-05 25915457481.0 +UniRef50_B2K1F3 0.000312549922843 0.000485734848502 69916879706.6 +UniRef50_E0TI30 0.000143836894815 5.26031724255e-05 -36832173292.3 +UniRef50_UPI000471B390 hypothetical protein, partial 3.29708045511e-06 6.5103841184e-06 1297250120.54 +UniRef50_F3IHL1 Transcriptional regulator, AsnC family protein 7.158995421e-05 0.000112538268527 16531336982.1 +UniRef50_UPI000288AE42 MarR family transcriptional regulator 1.50946792519e-05 3.70789004918e-05 8875299891.28 +UniRef50_Q8D2C5 Oligoribonuclease 0.00199303131102 5.14815856262e-05 -7.83827449634e+11 +UniRef50_Q6M0B4 UDP N acetylglucosamine 2 epimerase homolog 0.000961199021542 0.00133927003941 1.52631909366e+11 +UniRef50_P77562 0.00143411795248 0.000335732882396 -4.43431531492e+11 +UniRef50_Q8CWZ2 0.000555126454193 0.0015542984484 4.03377995281e+11 +UniRef50_F6D1U5 Sulfate transporting ATPase 0.00423660680077 0.00149112131277 -1.1083861824e+12 +UniRef50_Q70AC7 Methylmalonyl CoA carboxyltransferase 5S subunit 0.00554549785474 0.00183141626312 -1.49942031544e+12 +UniRef50_UPI000380FAC7 hypothetical protein, partial 1.08593169994e-05 6.49801391588e-06 -1760711574.02 +UniRef50_O25369 Outer membrane protein assembly factor BamA 0.000366470436589 0.00418504270778 1.54160448503e+12 +UniRef50_G5P5B1 Potassium transporting ATPase B chain 8.00975621009e-06 0.000824558971844 3.29650938537e+11 +UniRef50_C5N6G1 0.0027401988873 0.000588847750693 -8.68526853897e+11 +UniRef50_A9M2U6 Oxygen independent coproporphyrinogen III oxidase 0.000131681158905 0.00244451735921 9.33720355753e+11 +UniRef50_B9L274 Ribosomal RNA small subunit methyltransferase H 1.14168869486e-05 0.0321372181383 1.29695801931e+13 +UniRef50_P35159 Ribosomal large subunit pseudouridine synthase B 1.53937981152e-05 0.0066519374124 2.67925409663e+12 +UniRef50_A7ZIN4 Adenylate kinase 0.00274337209643 0.00155478157458 -4.79848579317e+11 +UniRef50_I4CR94 6.01972024774e-06 1.29901047237e-05 2814029749.18 +UniRef50_U3HDX0 4.34886805021e-05 6.23068150023e-05 7597111822.21 +UniRef50_M9S9D1 0.000102642635941 0.000320511788102 87956450282.5 +UniRef50_A8LU40 Replication protein C 0.00238194922091 0.000292132676889 -8.43684583754e+11 +UniRef50_S5XWE5 Sarcosine oxidase 0.000405759707163 0.000132034294431 -1.10506308108e+11 +UniRef50_R7D072 6.78633164352e-06 1.19527736585e-05 2085756040.82 +UniRef50_Q895M3 Ribosome maturation factor RimM 0.000905966373245 0.000455501344774 -1.81858259821e+11 +UniRef50_P78271 0.00298557451354 0.00124006736609 -7.04682655207e+11 +UniRef50_Q5M3Y0 Cell division protein 0.0042033385397 0.00310893202238 -4.4182534092e+11 +UniRef50_Q3JY00 CarR 6.30810512401e-05 0.000707586644453 2.60194816953e+11 +UniRef50_R4K7H3 DNA repair protein RecN 0.000372408169587 0.000923721794552 2.22572075777e+11 +UniRef50_A3PGQ0 ErfK YbiS YcfS YnhG family protein 0.00548844726795 0.00095184917707 -1.83148031961e+12 +UniRef50_B9KM31 0.000811676282119 0.000915562800384 41940262254.5 +UniRef50_A4WW68 Flagellar M ring protein 0.00135440902046 0.000436405557855 -3.70609263023e+11 +UniRef50_UPI000467700F hypothetical protein 2.10324750216e-06 2.8180648569e-06 288580537.904 +UniRef50_I6U0E0 Stress response protein 0.0050821074154 0.00137879705175 -1.49507183853e+12 +UniRef50_UPI0003653B40 hypothetical protein 0.000118262841564 2.08634390892e-05 -39321334004.2 +UniRef50_A4J700 Endoribonuclease L PSP 0.00683772871804 0.00472523032654 -8.52841523919e+11 +UniRef50_L5RDB7 Putative gluconolactonase domain protein 0.000294144926378 0.00212555573097 7.39363015751e+11 +UniRef50_Q4JVZ1 Thiamine phosphate synthase 0.00210065254141 0.00600514836908 1.57629287918e+12 +UniRef50_UPI0003318BBF 2.60408591974e-05 2.24369714747e-05 -1454933698.33 +UniRef50_J0CD84 3.39176229073e-05 0.000189403013897 62771360363.0 +UniRef50_C5YXG0 1.23072411431e-05 1.78250453312e-05 2227605261.81 +UniRef50_UPI0003B2FF21 hydantoinase 3.77970207116e-06 6.94631480963e-06 1278400421.23 +UniRef50_I4KQZ4 1.01044746277e-05 1.73338582147e-05 2918590868.58 +UniRef50_UPI0003595520 PREDICTED 3.81360134766e-05 0.00012552185264 35278735615.1 +UniRef50_I6RQF7 0.00143349109691 0.00224291168503 3.26773024132e+11 +UniRef50_UPI00047616F1 hypothetical protein 4.2441254048e-06 3.45654141749e-05 12241076360.5 +UniRef50_D8JKH6 Acyl CoA dehydrogenase 0.000298272492969 0.00607280268115 2.33124869842e+12 +UniRef50_E8SH59 Chromosome replication initiation protein dnaD 0.0153268633487 0.0033208542881 -4.84697318806e+12 +UniRef50_Q4LA96 0.00175064309322 0.000360065744148 -5.61393140123e+11 +UniRef50_F6EZI7 Diguanylate cyclase with GAF sensor 0.00262519084803 0.00105644592491 -6.33321576129e+11 +UniRef50_P77381 0.00336650823539 0.000719478523288 -1.06863837748e+12 +UniRef50_A1WPN7 Peptidase C39, bacteriocin processing 0.00120873094671 0.00969341301591 3.42537027009e+12 +UniRef50_Q2T3A1 Transcriptional regulator, LysR family 0.0001909709893 0.000223161238178 12995598490.8 +UniRef50_C6SR09 0.00387280221803 0.000719678751628 -1.27295463656e+12 +UniRef50_E4PKD1 Adenylate guanylate cyclase 0.00103831307265 0.000560886954259 -1.92742782672e+11 +UniRef50_Q4L4W9 Putative peptidyl prolyl cis trans isomerase 7.77862301132e-06 0.000297577405515 1.16995324728e+11 +UniRef50_Q9RZC3 Glucose 1 phosphate thymidylyltransferase, putative 0.000487500640715 0.0653683785222 2.61932065787e+13 +UniRef50_UPI00046624C5 ribonuclease E 2.15714332845e-06 2.80005668047e-06 259552009.644 +UniRef50_P45092 Arginine transport ATP binding protein ArtP 0.00253248980406 0.002121031902 -1.66110604218e+11 +UniRef50_Q1YHY0 0.000321687752459 4.10844560814e-05 -1.13282994137e+11 +UniRef50_X2HE44 DNA polymerase III delta prime subunit 0.000709831890636 0.00252572322166 7.33097613825e+11 +UniRef50_Q890R3 Energy coupling factor transporter ATP binding protein EcfA2 0.000292525046714 0.00317174375859 1.16237592597e+12 +UniRef50_UPI00047DDBCA molecular chaperone DnaJ 1.04507773522e-05 2.13350803741e-05 4394126695.36 +UniRef50_UPI000476F810 alkylhydroperoxidase 4.12207709729e-05 0.000254622433705 86152869977.8 +UniRef50_Q81L09 S adenosylmethionine decarboxylase proenzyme 1 1.29976962468e-05 0.00250575289812 1.00635586454e+12 +UniRef50_UPI0003B4E07A peptide deformylase 2.48539670114e-05 8.77124661315e-05 25376747455.3 +UniRef50_A5IW20 LPXTG motif cell wall anchor domain 0.00581041161264 0.0025407396483 -1.32000669539e+12 +UniRef50_A6W2Y5 Short chain dehydrogenase reductase SDR 0.00698268786814 0.00302390183661 -1.5982105007e+12 +UniRef50_P70720 3 oxoacyl [acyl carrier protein] reductase FabG 0.00166978133217 0.0193489412926 7.1372938237e+12 +UniRef50_UPI000363345A hypothetical protein 0.000155330571043 0.000157250349826 775038253.032 +UniRef50_R5PT01 6 pyruvoyl tetrahydropterin synthase 0.000165703016709 0.000105785492798 -24189439673.6 +UniRef50_E1S9J4 Signal transduction histidine kinase 0.00021821731031 0.00518512110986 2.00520001464e+12 +UniRef50_A3IDC9 0.000707315649066 0.000456403040261 -1.01296499219e+11 +UniRef50_M4K0X3 0.000775693449478 0.000553299269543 -89783259523.2 +UniRef50_J9M4I5 6.25602599357e-06 1.50104862497e-06 -1919642713.84 +UniRef50_O31440 Fatty acid peroxygenase 7.22193721735e-06 1.29426314057e-05 2309514444.65 +UniRef50_UPI000371B5AE hypothetical protein 5.37853417855e-05 1.70369201795e-05 -14835788756.2 +UniRef50_S5YFU3 SMP 30 Gluconolaconase LRE domain protein 0.000223400713147 0.000215297719466 -3271277983.93 +UniRef50_UPI000225EF72 magnesium transporter 0.000106497184209 7.85751203881e-05 -11272479806.8 +UniRef50_B2V488 Metallo beta lactamase family protein 0.000366794708838 0.000604560087828 95988801207.6 +UniRef50_G7RAI1 0.000370084302795 0.00159456500466 4.94337885413e+11 +UniRef50_U6LJB2 1.70234329309e-05 3.49829073229e-05 7250460199.58 +UniRef50_UPI0003B686A2 AraC family transcriptional regulator 8.52065457567e-05 1.16493741055e-05 -29695932843.6 +UniRef50_P09394 Glycerophosphoryl diester phosphodiesterase 0.00394757382618 0.00104354922623 -1.17239036739e+12 +UniRef50_D7GCV1 Folylpolyglutamate synthase 0.000118087379206 0.00523841012773 2.067137127e+12 +UniRef50_X9G8K3 Surface protein G 0.00158805050229 0.000167793582503 -5.73375147032e+11 +UniRef50_G8VA48 Lactate malate dehydrogenase, NAD binding domain protein 0.000228779387182 0.00631749488628 2.45808916393e+12 +UniRef50_Q21DG3 Ribosomal RNA small subunit methyltransferase G 2.29568351826e-05 3.55005037617e-05 5064032933.51 +UniRef50_UPI0002D3A901 transaldolase 0.000101589045223 6.94478239413e-05 -12975805448.6 +UniRef50_W1BA41 Chromosome partition protein MukF 0.000449241696888 0.000322676294362 -51096006131.9 +UniRef50_F3U217 GntR family transcriptional regulator 0.00630367019057 0.00225580969172 -1.63417095622e+12 +UniRef50_V9XEY4 Glutaminase 0.000196622159211 0.00620868217029 2.42714240275e+12 +UniRef50_D9XFH8 0.000654978288092 0.00220493869669 6.25738037105e+11 +UniRef50_UPI00035F6847 cold shock protein 2.57376312444e-05 1.96995627722e-05 -2437642337.66 +UniRef50_D5WIA8 Acyl CoA dehydrogenase domain protein 0.000578069824507 0.00862829250615 3.24997368392e+12 +UniRef50_A0A013SXP0 Phosphoenolpyruvate protein phosphotransferase 8.25829468874e-05 0.00253833850772 9.91418655417e+11 +UniRef50_U3T0Z6 dGTP pyrophosphohydrolase thiamine phosphate synthase 0.000547145136573 0.00313359720103 1.04418243776e+12 +UniRef50_P50600 Protein TolA 0.00126554723212 0.000294335586571 -3.92090059415e+11 +UniRef50_Q6GK25 Protein EssB 0.0119329809133 0.00254262469166 -3.79100203931e+12 +UniRef50_C8UCL7 0.00100072855528 0.000355803259269 -2.60364256123e+11 +UniRef50_X5J954 Transposase ISCca5, IS5 ssgr IS5 family 4.45942749009e-05 1.31710752731e-05 -12685931295.8 +UniRef50_A0QL30 1.49369550588e-05 6.96787679778e-05 22099941633.0 +UniRef50_Q892Q8 Heat inducible transcription repressor HrcA 0.000142806805364 0.000742270567195 2.42010876899e+11 +UniRef50_UPI000370A1E5 hypothetical protein 6.44574868682e-05 9.22253716506e-06 -22299027004.2 +UniRef50_Q9FDM1 Prolipoprotein diacylglyceryl transferase 9.18026690241e-05 1.12085412574e-05 -32536838380.6 +UniRef50_P36638 Peptide transport system ATP binding protein SapF 0.00424071720815 0.00119102980072 -1.23119623025e+12 +UniRef50_UPI00037F8A46 hypothetical protein 4.30682170917e-06 5.63542892726e-06 536375037.787 +UniRef50_P75905 Poly beta 1,6 N acetyl D glucosamine synthase 0.002431219069 0.00599056576316 1.43695193853e+12 +UniRef50_I1FPH4 2.60639077406e-06 7.03007481933e-06 1785895533.78 +UniRef50_S1EVH2 Transcriptional regulator 0.00134492173059 0.000630291045772 -2.88505176966e+11 +UniRef50_P25519 GTPase HflX 0.00370532114766 0.000506708949174 -1.29131899592e+12 +UniRef50_F3J1W5 0.000503119092704 0.00305500039855 1.03022579828e+12 +UniRef50_UPI0004286E00 hypothetical protein 5.49754718614e-06 6.52530133892e-06 414916963.439 +UniRef50_Q9A2A6 9.22732239607e-05 2.50293809212e-05 -27147164609.8 +UniRef50_UPI0003B41A8E MerR family transcriptional regulator 0.000518794096916 0.000130833047108 -1.56624636625e+11 +UniRef50_UPI00047DA8A6 transcriptional regulator 3.37829415838e-05 1.44823157659e-05 -7791899488.0 +UniRef50_UPI000380DF8A hypothetical protein 4.67356673812e-06 1.10739915172e-05 2583930025.36 +UniRef50_A0A023RW94 Acyltransferase 0.000492253223462 0.00753322163417 2.8425253498e+12 +UniRef50_UPI0004074116 hypothetical protein 1.81753631272e-05 2.3802491491e-05 2271740773.1 +UniRef50_A7IK15 Chromosomal replication initiator, DnaA 4.50718373516e-05 1.21896824604e-05 -13274929439.0 +UniRef50_Q0AMH8 UPF0301 protein Mmar10_2223 3.07703332223e-05 2.3100879244e-05 -3096252685.82 +UniRef50_Q8DY37 UPF0348 protein SAG1656 0.00596244851989 0.00239852503203 -1.43879964631e+12 +UniRef50_UPI00038154C1 hypothetical protein 1.57646450315e-05 1.41896326655e-05 -635851819.729 +UniRef50_G7D6S7 0.000201932427667 6.04803049477e-05 -57105957754.4 +UniRef50_F7U6Q0 3.81006170307e-05 4.56870186004e-06 -13537245637.3 +UniRef50_D7FE46 RBL01243 0.000112309283497 0.00612568863742 2.42767503764e+12 +UniRef50_A5UNG5 CMP sialic acid synthetase, NeuA 0.00406270603338 0.000707610763133 -1.35449313225e+12 +UniRef50_UPI0001745DFF Response regulator consisting of a CheY like receiver domain and a winged helix DNA binding domain 9.54160152509e-06 0.000124488313335 46405398112.5 +UniRef50_C5WGS2 Amino acid ABC transporter extracellular binding protein 0.00380953621996 0.00183643653005 -7.96564557473e+11 +UniRef50_P13716 Delta aminolevulinic acid dehydratase 1.75799955361e-05 8.07306120531e-06 -3838066052.54 +UniRef50_F7ZTM8 Riboflavin biosynthesis protein RibD 0.000314684211198 0.000679962167477 1.47467193414e+11 +UniRef50_Q6G7T8 0.00671469129317 0.00223391417608 -1.80894470749e+12 +UniRef50_UPI00037BBACA hypothetical protein, partial 4.11444894537e-06 6.01750962138e-06 768288948.086 +UniRef50_R9ZHE0 Type II secretion system protein 0.00156136021166 0.00222017253215 2.65970618318e+11 +UniRef50_P46354 Purine nucleoside phosphorylase 1 0.00940296002323 0.0059824157719 -1.38091568906e+12 +UniRef50_A1VVY8 LemA family protein 2.69446105961e-05 1.39501559727e-05 -5246020791.36 +UniRef50_UPI0002490C4B DeoR faimly transcriptional regulator 0.000162474778373 1.22968628094e-05 -60628667403.4 +UniRef50_H2A790 Amino acid ABC transporter, amino acid binding permease protein 0.00779444803455 0.00754774716137 -99596169862.9 +UniRef50_UPI0003C13A29 PREDICTED 1.8100239229e-05 5.30812739702e-06 -5164332523.44 +UniRef50_UPI000360760D hypothetical protein 2.35823071417e-05 8.52589376936e-06 -6078458841.37 +UniRef50_UPI0001FFDEF3 hypothetical protein 2.60430978063e-06 0.000124112749991 49054448389.0 +UniRef50_UPI00036476ED hypothetical protein 1.82202713707e-05 2.82817237649e-05 4061931799.44 +UniRef50_UPI0002555726 macrolide ABC transporter ATP binding protein 5.29845423556e-06 3.96332700578e-05 13861386483.0 +UniRef50_UPI000287EE3A rhizobiocin RTX toxin and hemolysin type calcium binding protein 2.79745432699e-05 4.18818086338e-06 -9602846394.99 +UniRef50_U3SUU9 0.00525092837966 0.00194749894873 -1.3336349989e+12 +UniRef50_P10249 Sucrose phosphorylase 0.00499788296314 0.00848982805772 1.40974108567e+12 +UniRef50_C3Z7Q3 6.93080651327e-05 5.49170719359e-06 -25763446814.8 +UniRef50_Q09067 Urease accessory protein UreH 0.000255633852495 0.00418986501494 1.58829739872e+12 +UniRef50_UPI000464113C multidrug ABC transporter 6.2276009702e-06 3.46831031503e-05 11487835418.4 +UniRef50_I2BZM7 Transcriptional regulator, AraC family 0.000332530554699 0.000790316694578 1.84813882337e+11 +UniRef50_UPI00047C04E2 diguanylate cyclase 5.45297305169e-06 8.51236180273e-06 1235112781.72 +UniRef50_A0KL52 Adenylate kinase 8.53103151564e-06 1.44153518997e-05 2375572347.78 +UniRef50_UPI000262D071 pyrroline 5 carboxylate reductase 1.10598522484e-05 1.53571852148e-05 1734886052.74 +UniRef50_L7WZS3 Lipase 0.00779010151918 0.00311786590358 -1.8862388528e+12 +UniRef50_A6LR40 Ribonuclease R 0.000279850845443 0.00186752537675 6.40963691247e+11 +UniRef50_U6HJZ8 Succinate dehydrogenase iron sulfur protein 3.7476923495e-05 0.000136065769359 39801526896.5 +UniRef50_Q9B6E7 Cytochrome c oxidase subunit 1 2.07046673402e-05 1.03680969772e-05 -4173000299.53 +UniRef50_UPI000288E3B9 DNA polymerase I, partial 0.000121075766092 6.88984415082e-05 -21064626222.3 +UniRef50_Q87U89 0.000558983172193 0.000320771188731 -96169100913.4 +UniRef50_UPI0001BF7861 hypothetical protein SMAC_10214, partial 5.08393907492e-05 0.000150504638575 40236083577.4 +UniRef50_Q97K95 L aspartate oxidase 0.000288047013599 0.000743680229215 1.83944720392e+11 +UniRef50_O31462 0.00640013399744 0.00343945847283 -1.19526104086e+12 +UniRef50_A6QIT1 0.00153908507774 0.00146283289675 -30783941185.1 +UniRef50_D0CS40 Outer membrane transporter, ompp1 fadl todx family 1.42236894092e-05 5.62289464677e-06 -3472246389.21 +UniRef50_G9PLE0 3.56914126801e-05 0.000179815884782 58184817993.7 +UniRef50_B9KU12 0.000124016601692 0.000518889107334 1.59414876158e+11 +UniRef50_UPI0003B6C6DF histidine kinase 0.000383086464505 7.33909615101e-05 -1.2502787495e+11 +UniRef50_Q9Z4W7 Anthranilate synthase component 1 2.87569026375e-06 6.6070863e-06 1506410369.21 +UniRef50_K0I5D9 Protease 0.000233016042498 0.000209692335056 -9416066908.41 +UniRef50_Q3J615 0.0110028199121 0.00300144665437 -3.23025257204e+12 +UniRef50_Q3J617 0.0145977411356 0.00627458025541 -3.360162184e+12 +UniRef50_Q9RWA3 0.000200793136132 0.01954974652 7.81140991944e+12 +UniRef50_B7GLM2 ABC type oligopeptide transport system, permease component 0.0234645505474 0.00643591413794 -6.87466948338e+12 +UniRef50_A6LYT7 0.00084818820978 0.0019924469491 4.61951294697e+11 +UniRef50_Q9RWA8 0.000367416162542 0.00773262416766 2.97342485293e+12 +UniRef50_A6LYT5 0.000322637597309 0.000252048397039 -28497726375.9 +UniRef50_R7LD69 1.46581612115e-05 0.000308718426884 1.18715737777e+11 +UniRef50_UPI0003B71B68 molybdopterin dehydrogenase, partial 1.47504267633e-05 4.24301559936e-05 11174646358.7 +UniRef50_UPI0004679659 hypothetical protein 0.000164377266094 3.16029364193e-05 -53602626214.0 +UniRef50_UPI0003604091 hypothetical protein 3.12885741974e-05 7.63406363828e-06 -9549616186.2 +UniRef50_UPI000367D1C3 hypothetical protein 3.14901085121e-05 4.6210633582e-05 5942856611.87 +UniRef50_U5MT62 Nodulation protein NolG 0.000397447769323 0.00246574377197 8.34996477116e+11 +UniRef50_A0KEB8 Tetratricopeptide repeat family 4.50246784272e-06 8.23583706457e-05 31431383360.9 +UniRef50_H6NKR1 6.75751366856e-06 0.000796761159791 3.18934166374e+11 +UniRef50_A5UMM4 Serine threonine protein kinase related protein 0.00371371749971 0.000854600463143 -1.15426063297e+12 +UniRef50_C5YW74 9.9400863872e-05 5.99955498646e-05 -15908408822.4 +UniRef50_Q8D954 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00113757837482 6.91402132548e-06 -4.56463074316e+11 +UniRef50_E6US82 TROVE domain containing protein 0.000584131469492 0.00161814837078 4.17445311865e+11 +UniRef50_O32168 Methionine import system permease protein MetP 0.0205838245752 0.0113935068067 -3.71024406102e+12 +UniRef50_UPI0003B3F610 peptidylprolyl isomerase 8.87647443269e-06 1.4272946369e-05 2178621942.85 +UniRef50_A5INZ6 0.00838553059702 0.00452688570361 -1.55778229437e+12 +UniRef50_U3QUF7 Chemotaxis protein 0.00175134628674 0.000884700872465 -3.49875388678e+11 +UniRef50_D4HF48 8.75670734285e-06 0.00281789063998 1.13408184056e+12 +UniRef50_UPI0003B6D344 MarR family transcriptional regulator 1.98043609353e-05 0.000117973947863 39632266919.0 +UniRef50_G8VM83 Serine threonine protein kinase 0.00013214499857 0.00629469775834 2.48789817215e+12 +UniRef50_Q9RSR9 Oligoendopeptidase F, putative 0.000245113602402 0.0167108129191 6.647404871e+12 +UniRef50_J3L6D3 0.000160804316036 0.000259699546669 39925218187.5 +UniRef50_Q6F8Q1 Protease HtpX 0.000228779387182 0.0094073233205 3.70549081928e+12 +UniRef50_W1EDI8 Error prone, lesion bypass DNA polymerase V 0.00328856517855 0.000885735765023 -9.70051720275e+11 +UniRef50_F1XKP7 0.000266221352618 0.00020319956779 -25442667899.3 +UniRef50_N2GZC1 Inner membrane transport protein YhjV 0.00126002025586 0.000217945907889 -4.20698201966e+11 +UniRef50_UPI00036F024D hypothetical protein 2.11663099346e-05 2.21282658602e-05 388353411.691 +UniRef50_A4X0E7 Transport system permease protein 6.10599482752e-05 5.34558720004e-05 -3069858904.65 +UniRef50_B9KGQ3 Transcriptional activator protein 0.00968448593373 0.0023318276558 -2.96835837406e+12 +UniRef50_Q9PB21 3 phosphoshikimate 1 carboxyvinyltransferase 1.1719286871e-05 5.41456039399e-06 -2545295446.46 +UniRef50_UPI0003F0BF74 PREDICTED 4.47457613344e-05 3.42524106214e-05 -4236294450.73 +UniRef50_A4WX47 Heat shock protein DnaJ domain protein 0.0124123753124 0.00333487280647 -3.66469915513e+12 +UniRef50_R9ZG29 Chemotaxis protein CheY 0.000873554667212 0.00162470352679 3.03248012245e+11 +UniRef50_A8LHQ6 Protein TolB 0.00335261676944 0.000867576778374 -1.00324113926e+12 +UniRef50_D4HB86 ABC transporter, ATP binding protein 0.000122693170804 0.00582952625621 2.3039185473e+12 +UniRef50_Q2NAE1 Bifunctional enzyme IspD IspF 4.21011749954e-06 8.94643206959e-05 34418168017.1 +UniRef50_UPI000478A42E peptide ABC transporter permease 1.08031624291e-05 3.21643854929e-05 8623787882.54 +UniRef50_Q12BS8 Prolipoprotein diacylglyceryl transferase 2.29538173633e-05 2.82769538627e-05 2149015527.04 +UniRef50_L0WHY8 Ppx GppA phosphatase 0.000102763880809 0.00752989454377 2.99842378978e+12 +UniRef50_P0A2J6 Peptide transport system permease protein SapC 0.00162156892181 0.000826934852159 -3.20803525175e+11 +UniRef50_A9WJ95 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.32847458146e-05 9.21340891981e-06 -1643648665.35 +UniRef50_U4V848 2.67494990054e-05 4.01361224971e-05 5404344175.94 +UniRef50_M9VBD0 2 dehydropantoate 2 reductase 0.000450336783549 0.00308168074534 1.0623058476e+12 +UniRef50_UPI000349B178 hypothetical protein 4.55180592093e-05 4.76336786757e-05 854101540.156 +UniRef50_UPI00046469DD competence protein 1.28414290628e-05 4.33445910534e-05 12314500811.5 +UniRef50_P02915 Histidine transport ATP binding protein HisP 0.00685999148608 0.0134109215993 2.64469087566e+12 +UniRef50_M9VL55 0.000160154949157 0.00633562160272 2.49311166954e+12 +UniRef50_UPI0002C58260 1.26261422577e-06 0.000149683041838 59919147950.4 +UniRef50_A1ARJ7 3 dehydroquinate dehydratase 1.45604886031e-05 0.000106337860936 37051651445.8 +UniRef50_P0A9N6 Pyruvate formate lyase 1 activating enzyme 0.00601868320962 0.000231620945253 -2.33630805137e+12 +UniRef50_B7K5B1 Adenylyl sulfate kinase 9.75498311682e-06 0.000353388667842 1.38729135383e+11 +UniRef50_A7ZSR5 Shikimate kinase 1 0.00525713490787 0.00163677609501 -1.46158327955e+12 +UniRef50_S0U1N3 0.000499834642214 0.000472886993363 -10879096526.0 +UniRef50_P42199 L cystine binding protein TcyA 0.0114896460309 0.00629208601573 -2.09831875936e+12 +UniRef50_UPI0004292B6B hypothetical protein 2.41984150549e-05 4.46471776208e-05 8255416382.39 +UniRef50_G1XC43 0.00114017675518 0.000279301707413 -3.47545820908e+11 +UniRef50_P65942 Bifunctional protein PyrR 9.21955804342e-06 4.22062422726e-05 13317129215.5 +UniRef50_UPI0002D9966A hypothetical protein 0.000103519685204 0.000590574614253 1.96630051693e+11 +UniRef50_W5XD81 UDP N acetylglucosamine 2 epimerase 7.18094234088e-06 3.40355660737e-05 10841541144.2 +UniRef50_R6V945 ATP dependent protease La 0.0021754033241 0.00029101479221 -7.60750774372e+11 +UniRef50_E2PXX4 Putative regulator 1.51124735866e-05 4.0498032003e-05 10248461448.5 +UniRef50_Q57947 0.00414096473853 0.000715197592501 -1.38302423574e+12 +UniRef50_P0AF33 Respiratory nitrate reductase 2 gamma chain 0.0044851366167 0.00276428664807 -6.9472824954e+11 +UniRef50_Q57942 0.00175042492011 0.000836424207519 -3.68993303723e+11 +UniRef50_O27477 UPF0284 protein MTH_1426 0.00357850911503 0.000566488133949 -1.21598983172e+12 +UniRef50_V8FR31 Histidine kinase 0.00039372983494 0.000540373763642 59201953540.4 +UniRef50_K2AHW0 0.000588733301473 0.000389092338127 -80597506772.9 +UniRef50_A4TIY8 Alkaline phosphatase 0.00132590129434 0.00183950852537 2.07349541836e+11 +UniRef50_I3X7J2 0.00011437196751 5.26123058271e-05 -24933133297.7 +UniRef50_C6SPX6 0.00930701633793 0.00224596537411 -2.85063292293e+12 +UniRef50_C6SPX8 8.47767079612e-05 5.04814880674e-05 -13845401120.8 +UniRef50_UPI000361A3EB hypothetical protein 1.64371302355e-05 3.99193813927e-05 9480072951.79 +UniRef50_Q6A9R6 Aminomethyltransferase 0.000251627241247 0.0048984124473 1.87596421015e+12 +UniRef50_A4WVB3 CDP alcohol phosphatidyltransferase 0.00918299573764 0.00315883965281 -2.43202573615e+12 +UniRef50_UPI0003B32207 adenosylcobinamide kinase 3.05216719863e-05 4.12456694471e-05 4329409373.17 +UniRef50_UPI00047017D2 hypothetical protein 1.35133781385e-05 1.05584870192e-05 -1192925805.45 +UniRef50_Q6F856 UPF0042 nucleotide binding protein ACIAD3059 0.000133387275209 0.00675668462065 2.67390641535e+12 +UniRef50_UPI00047859F1 hypothetical protein 1.98337833257e-06 7.89900020386e-05 31088518967.6 +UniRef50_A4ZNV6 Truncated internalin A 2.1781502233e-05 9.61514581704e-06 -4911707383.12 +UniRef50_E9C0L1 Cobalamin synthesis protein P47K 5.04717407731e-06 9.20136414449e-06 1677097507.77 +UniRef50_UPI0003C13F84 PREDICTED 1.37984256e-05 1.10826202284e-05 -1096403955.19 +UniRef50_A6LXV4 Methyl accepting chemotaxis sensory transducer 0.000383207940757 0.000510109131453 51231567936.7 +UniRef50_N6U8E6 0.000792875117908 0.00016988496944 -2.51508767885e+11 +UniRef50_Q0SNA5 Proline tRNA ligase 4.2240035066e-06 2.86562140638e-05 9863583218.88 +UniRef50_UPI00029A8E4B MFS transporter 3.38944857379e-06 4.89725397974e-06 608719545.235 +UniRef50_UPI00021A5132 PREDICTED 3.65016156333e-06 6.64635600343e-06 1209600462.91 +UniRef50_UPI0002B43A90 PREDICTED 7.19553211168e-05 0.000513608747989 1.78300908125e+11 +UniRef50_B1J909 Peptidase C39 bacteriocin processing 0.00233852197222 0.00152261998247 -3.29389645505e+11 +UniRef50_A6V4I6 Transcriptional regulator, LuxR family 0.000176946557275 0.00157769544621 5.65499515587e+11 +UniRef50_Q8ZBZ2 Na translocating NADH quinone reductase subunit C 0.000376231882575 0.00256640646819 8.84200356679e+11 +UniRef50_F7XFJ7 0.000316597803972 0.000136976954789 -72515141010.9 +UniRef50_J9ZMG3 Sulfatase 0.00106336595782 0.000349487225087 -2.88201604681e+11 +UniRef50_UPI00025561EE acetyl transferase 1.36337218307e-05 2.03879841079e-05 2726778565.42 +UniRef50_H1XS41 UDP N acetylglucosamine 2 epimerase 0.0142640826506 0.00132368405204 -5.2241977108e+12 +UniRef50_UPI000440B669 GTP binding protein TypA 4.40734722834e-06 1.05360835202e-05 2474246049.08 +UniRef50_O34996 DNA polymerase I 0.00982209783596 0.00381261050911 -2.42610377855e+12 +UniRef50_UPI0003C8E764 PREDICTED 1.53252988244e-05 1.23413255449e-05 -1204666630.4 +UniRef50_A1A1J0 Prolipoprotein diacylglyceryl transferase 1.23395672917e-05 5.45854487587e-06 -2777953188.91 +UniRef50_UPI000422F3ED selenocysteine specific elongation factor 8.61093315199e-07 7.85166322825e-06 2822178857.84 +UniRef50_Q6AL48 DNA polymerase IV 4.21910786817e-06 8.2810095914e-06 1639839570.81 +UniRef50_D8ULE3 6.05268669368e-05 0.00107170768154 4.08226103438e+11 +UniRef50_F0J3V7 Spermidine putrescine ABC transporter ATP binding protein 0.000159053085188 0.0298462876047 1.19851008789e+13 +UniRef50_W6B709 Polyketide synthase module 7.43089220076e-06 3.58533568197e-06 -1552498356.92 +UniRef50_A5UMQ8 Sirohydrochlorin cobaltochelatase 0.000976860718184 0.000830350615323 -59147926406.1 +UniRef50_I0C110 ABC transporter ATP binding protein 0.0127319458355 0.00399872566427 -3.52570815179e+12 +UniRef50_W9R7E8 0.000197460722377 6.26499385029e-05 -54424767764.3 +UniRef50_Q0AQ30 Cupin 2, conserved barrel domain protein 0.000179654636704 6.64589877522e-05 -45698472548.7 +UniRef50_Q7R6Z1 4.03418588281e-05 4.09073072904e-05 228278483.063 +UniRef50_W4UBI3 Methionine aminopeptidase 0.000505419007863 0.00323559328821 1.10220485998e+12 +UniRef50_UPI00036C6884 hypothetical protein 1.50251759691e-05 1.33356450077e-05 -682084381.994 +UniRef50_UPI0004773996 glutathione dependent formaldehyde activating protein 0.000106449046546 2.51234401897e-05 -32832145263.5 +UniRef50_L0GI71 3.12763205378e-05 0.000123181196302 37103126145.7 +UniRef50_L3S9H3 Ribonucleoside diphosphate reductase subunit beta 3.11647079041e-05 3.1755083627e-05 238341924.06 +UniRef50_A5UMT8 Glycosyltransferase, GT2 family 0.00207778081188 0.00073274760759 -5.43006409985e+11 +UniRef50_UPI0002D9EB50 hypothetical protein 0.000165823926834 0.00017304324272 2914526414.15 +UniRef50_Q4QN88 Autotransported protein Lav 5.88289852779e-05 0.00332850886158 1.32000988955e+12 +UniRef50_UPI0003C7D864 glutamine ABC transporter permease, partial 0.000115141974253 6.24198187368e-05 -21284581155.5 +UniRef50_Q3JNJ8 7.75502670264e-05 1.40137015244e-05 -25650491174.5 +UniRef50_Q2YUE8 L threonine dehydratase biosynthetic IlvA 0.018827011969 0.00724451459336 -4.67599632376e+12 +UniRef50_F7ZM05 Transcriptional repressor protein, GntR family 0.00445347944015 0.00138381121022 -1.23926273349e+12 +UniRef50_A7ZR72 Putative Holliday junction resolvase 0.0006505796702 2.07034705365e-05 -2.54288751254e+11 +UniRef50_A0A023RUU7 Amino acid transporter LysE 0.000213268920259 0.00696996595112 2.72776150535e+12 +UniRef50_P0C2U0 Ornithine carbamoyltransferase, catabolic 0.0295050067199 0.00999124110298 -7.87794664037e+12 +UniRef50_UPI0003819001 hypothetical protein 0.000204966655252 0.000120043324752 -34284590649.3 +UniRef50_D8JNQ8 TonB dependent receptor family protein 5.7397768196e-05 0.00939099981864 3.76808968394e+12 +UniRef50_P00927 Threonine dehydratase, mitochondrial 8.80547639605e-06 1.37606657017e-05 2000470729.7 +UniRef50_B1JZ61 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.03356108728e-05 1.25732171049e-05 903349094.415 +UniRef50_UPI0004763D11 phospholipase C 3.43978032837e-06 5.41026465223e-06 795508702.104 +UniRef50_UPI0003C19153 2.87191293888e-06 3.25073466698e-06 152934980.299 +UniRef50_UPI0004775FF2 hypothetical protein 0.000103673245258 4.85830007678e-05 -22240607734.0 +UniRef50_A0A011QW65 Peroxiredoxin OsmC 1.74850914136e-05 0.0022598909459 9.05286760872e+11 +UniRef50_A0A059IQB9 Intracellular septation protein 0.00812817760958 0.0013563348077 -2.73387603897e+12 +UniRef50_K8EXK1 0.00355880363919 0.00360660255706 19297009702.8 +UniRef50_UPI0003632065 hypothetical protein 0.000142597570754 0.00061673910237 1.91416754684e+11 +UniRef50_A6LZ50 Type I phosphodiesterase nucleotide pyrophosphatase 0.00058711732273 0.000830234785445 98149503084.8 +UniRef50_L9LRB5 Phage like baseplate assembly protein 0.000237333191273 0.00663186863478 2.58155242832e+12 +UniRef50_B7K765 tRNA N6 adenosine threonylcarbamoyltransferase 5.34433307483e-06 4.21542372312e-06 -455754558.561 +UniRef50_J9GQJ1 0.000110425064815 0.000157625480542 19055387043.2 +UniRef50_C1DCA4 NADH quinone oxidoreductase subunit B 3.29010767813e-05 3.15816401984e-05 -532672739.824 +UniRef50_A0A024HWH6 6.56748887516e-06 1.53868259162e-05 3560474588.9 +UniRef50_UPI0003B3FB93 phosphoglyceromutase, partial 2.72469684363e-05 1.72497032308e-05 -4036018643.7 +UniRef50_K0LDS3 0.117476636053 0.0364053648054 -3.2729467059e+13 +UniRef50_UPI00047CA582 hypothetical protein, partial 4.13977621038e-05 5.83649452105e-05 6849860030.93 +UniRef50_G7W9E1 0.000117353157162 0.00105347548955 3.77924073098e+11 +UniRef50_UPI0003678819 30S ribosomal protein S4 4.49903194599e-05 0.000145600803013 40617686839.8 +UniRef50_Q74M23 50S ribosomal protein L9 0.00248180294505 0.0105642783415 3.26299450067e+12 +UniRef50_R1FCU5 5.85484551006e-05 0.000356195151825 1.20163624003e+11 +UniRef50_UPI0002F40D47 hypothetical protein 7.89521503667e-05 8.32518483605e-06 -28512972675.1 +UniRef50_UPI0003B5C775 serine hydroxymethyltransferase 5.11351828926e-06 5.75250346088e-06 257966155.013 +UniRef50_P04424 Argininosuccinate lyase 3.64537628291e-06 1.13340510461e-05 3104012352.55 +UniRef50_F0MZR9 Division cluster competence associated protein Dca 0.000395175533181 0.00308298142422 1.0851002213e+12 +UniRef50_UPI00046E5BF5 molybdopterin converting factor 2.85198526403e-05 0.000153393233725 50412916312.7 +UniRef50_UPI0004285813 LysR family transcriptional regulator 4.06204007828e-05 0.000334446640774 1.18621258738e+11 +UniRef50_E1UN96 Acetoin utilization protein AcuA 0.0109976347622 0.00143462369291 -3.86070492001e+12 +UniRef50_UPI00047EB5DF GTP binding protein Der 3.92410933432e-05 8.15770978929e-05 17091564557.9 +UniRef50_G7LY49 Transcriptional regulator, GntR family with LacI sensor 0.000107138880474 0.00216360782098 8.30221746996e+11 +UniRef50_UPI00037C0A9E hypothetical protein 4.84249425861e-06 1.65707148363e-05 4734826568.67 +UniRef50_D7A512 Phosphoesterase PA phosphatase related protein 0.00938876887294 0.00107784142672 -3.35522339659e+12 +UniRef50_Q18DL1 Imidazoleglycerol phosphate dehydratase 0.00249770903956 0.000339750673168 -8.71194273639e+11 +UniRef50_D4HC08 Acetyltransferase, GNAT family 0.000454802396205 0.00358749940603 1.26470822538e+12 +UniRef50_C7ZRN4 Ferrichrome ABC transporter lipoprotein 0.0174759500666 0.00526883332903 -4.92816282514e+12 +UniRef50_B1GZJ8 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.64299537135e-05 1.38398800962e-05 -1045644503.08 +UniRef50_R7PT43 0.0026658983673 0.00100878681768 -6.68996267627e+11 +UniRef50_UPI00037A8649 hypothetical protein 3.8983062535e-05 6.46594232678e-06 -13127560458.0 +UniRef50_UPI00035EAC91 hypothetical protein 7.41049517192e-06 1.46466068515e-05 2921307082.12 +UniRef50_P58115 Pirin like protein YhaK 0.00320708062047 0.000643648938937 -1.03488882668e+12 +UniRef50_UPI000255F0AC hypothetical protein 0.000248537621893 0.000420917449006 69591851543.9 +UniRef50_A0L4V9 Holliday junction ATP dependent DNA helicase RuvA 1.19688803803e-05 9.31464856579e-06 -1071545954.6 +UniRef50_UPI0002195D67 branched chain amino acid transporter II carrier protein 1.18329702381e-05 8.20476773667e-06 -1464749872.88 +UniRef50_UPI000466B529 hypothetical protein 4.08420978095e-06 1.64574307339e-05 4995221135.18 +UniRef50_W4UAD6 0.000128525962353 0.000415548640033 1.15874577144e+11 +UniRef50_T1UCZ0 5.56276600439e-05 0.00192575512206 7.54993405462e+11 +UniRef50_R5EMC4 High affinity branched chain amino acid ABC transporter permease protein 0.000304424184557 0.0020662400917 7.11266701625e+11 +UniRef50_T2J2D2 1.44973390097e-05 0.00132613907844 5.29525865862e+11 +UniRef50_P39399 Probable HTH type transcriptional regulator YjjM 0.00260266046293 0.00101931496087 -6.39216009016e+11 +UniRef50_M1MSH2 0.00016508133623 0.00055267694285 1.56477102725e+11 +UniRef50_UPI0002F5C7CD alpha beta hydrolase 1.51696291932e-05 0.000102605566348 35298960789.0 +UniRef50_Q93PU4 Toluene efflux pump membrane transporter TtgH 0.00250666853077 0.00059345301947 -7.72388579706e+11 +UniRef50_D9SQU7 Integral membrane sensor signal transduction histidine kinase 0.000144033330159 0.000841740202064 2.81672826014e+11 +UniRef50_E6MUI2 9.80794368573e-05 0.000656747023401 2.2554096031e+11 +UniRef50_UPI00047B6725 hypothetical protein 1.06633597457e-05 8.77705209188e-05 31129107176.9 +UniRef50_D2N524 0.017992293918 0.00455666665755 -5.42412759871e+12 +UniRef50_A6LT70 Phage portal protein, SPP1 8.55977298968e-05 0.00188320343794 7.25715483438e+11 +UniRef50_Q9HZX3 Protein glutamine gamma glutamyltransferase 0.000129612184348 0.000211277513186 32969295398.2 +UniRef50_UPI0003B4BDBC ammonia channel protein, partial 5.56072361872e-06 1.97273490028e-05 5719240511.6 +UniRef50_UPI0003825C93 hypothetical protein 4.21165474215e-05 2.60926426477e-05 -6469046992.61 +UniRef50_A6E305 0.00117001108687 0.000440141575438 -2.94657278271e+11 +UniRef50_B7VHW1 4.40053634301e-05 4.42692030221e-05 106515280.966 +UniRef50_Q8RFZ3 UPF0324 membrane protein FN0533 0.00510608146403 0.0064889686054 5.58288508905e+11 +UniRef50_UPI00046D88F2 chemotaxis protein CheY 0.000212329841369 0.000124014358267 -35654044281.1 +UniRef50_J9NWV1 0.000146619056202 1.38566019263e-05 -53597831969.7 +UniRef50_UPI0004656FEC exodeoxyribonuclease III, partial 0.000115242140884 3.31921655198e-05 -33124581920.9 +UniRef50_J9NWV5 0.000186367862954 0.000131385092849 -22197219005.9 +UniRef50_G7LHS1 50S ribosomal protein L11 0.000127966030119 0.00107634812363 3.82873489107e+11 +UniRef50_Q1GI13 Sarcosine oxidase delta subunit heterotetrameric 0.0013059350353 0.000584785554841 -2.91136894761e+11 +UniRef50_P0AEZ1 5,10 methylenetetrahydrofolate reductase 0.003265715104 0.00496821647135 6.8732069404e+11 +UniRef50_UPI000371CC88 hypothetical protein 5.92390921903e-06 1.44421765379e-05 3438929047.52 +UniRef50_UPI00046F08F9 hypothetical protein 6.22515870003e-06 1.65123695283e-05 4153073249.66 +UniRef50_O24339 Catalase 1.28731583493e-05 3.99030818598e-05 10912311815.7 +UniRef50_U1WYS6 3.14411773589e-05 3.27789641976e-05 540080963.274 +UniRef50_Q0PAB6 Methionine import ATP binding protein MetN 5.05238817765e-05 7.07785350661e-06 -17539694755.3 +UniRef50_P76340 Probable transcriptional regulatory protein YedW 0.00314392418503 0.000652742079738 -1.00572078615e+12 +UniRef50_Q7CYZ1 0.00588388808465 0.000691259520325 -2.09632787214e+12 +UniRef50_UPI0003653AAE hypothetical protein 2.09634422185e-05 3.7200749198e-05 6555200081.79 +UniRef50_UPI00036708EA hypothetical protein 1.08760833453e-05 4.13817692101e-05 12315519730.5 +UniRef50_Q5HP06 ComG operon protein 2, putative 0.00761373105567 0.00427481076298 -1.34796309532e+12 +UniRef50_U3SS47 0.00613601895476 0.00276704045436 -1.36009796263e+12 +UniRef50_X5X320 0.000803209253459 3.62952899294e-05 -3.0961257817e+11 +UniRef50_X1XW63 8.61472439476e-07 3.72888720691e-05 14706188244.9 +UniRef50_P31904 Hydrogenase expression formation protein hypD2 0.00238867649176 0.000673703378874 -6.9235569076e+11 +UniRef50_UPI00038BE2EA PREDICTED 9.97878154277e-05 6.96934046356e-05 -12149482936.7 +UniRef50_UPI00037774DA hypothetical protein, partial 1.13094008105e-05 6.90680109783e-06 -1777383529.98 +UniRef50_C6X1R3 9.0582828132e-06 1.2863918831e-05 1536381960.79 +UniRef50_UPI0003B3A17D diguanylate cyclase 3.51950136031e-06 6.03642121887e-06 1016111432.98 +UniRef50_F3NZ35 DeaD DeaH box helicase 0.000107893232944 0.00522110099308 2.06426471888e+12 +UniRef50_A5UMR2 0.0033681173745 0.000438012851869 -1.18291915221e+12 +UniRef50_A4WV08 Diguanylate cyclase 0.000927445709589 0.000262893209369 -2.68287999315e+11 +UniRef50_A0A011T5F4 Endoribonuclease L PSP 0.000260275134305 0.000101977974932 -63906505763.5 +UniRef50_B0S9J5 Phosphopantetheine adenylyltransferase 1.18176026702e-05 3.51256386528e-05 9409740147.94 +UniRef50_B9JJI7 Taurine uptake ABC transporter 0.0112127263255 0.00172877541624 -3.82878736323e+12 +UniRef50_P50933 L lactate dehydrogenase 0.000127529050285 0.0132898486497 5.3137899421e+12 +UniRef50_V9WHB8 Glycosidase 0.00807762967539 0.00207450535687 -2.42353495401e+12 +UniRef50_V4XDY8 0.000373886772526 0.0021251265856 7.06997002665e+11 +UniRef50_R5PCX4 Exo poly alpha D galacturonosidase 4.50593096713e-06 9.67740039764e-06 2087785670.16 +UniRef50_UPI0003B768A4 recombinase 4.5199645901e-06 5.74372865655e-06 494048570.9 +UniRef50_UPI00036E0818 hypothetical protein 0.000205790536235 5.03367443727e-05 -62758603407.2 +UniRef50_W5PP12 0.000138810376398 0.000115327315612 -9480399808.87 +UniRef50_M5D5M6 Sel1 repeat protein 8.2360579389e-05 0.00409570297522 1.62023557445e+12 +UniRef50_UPI000440198D PREDICTED 7.00474893723e-05 4.8471628333e-05 -8710439867.15 +UniRef50_UPI000161C024 Centromere kinetochore Zw10 family protein 2.3199443646e-06 1.12713598516e-05 3613796278.32 +UniRef50_S5Y0K2 0.00169391620219 8.05878861274e-05 -6.51320438958e+11 +UniRef50_UPI0003760BC3 MULTISPECIES 4.89424047585e-06 2.31013675797e-05 7350440638.38 +UniRef50_Q9I190 Macrolide export ATP binding permease protein MacB 0.000455447095804 0.000135034294035 -1.29354579981e+11 +UniRef50_R6EZ78 3.81873320664e-05 0.00100869720292 3.91806744359e+11 +UniRef50_UPI00047838E9 hypothetical protein 6.98116780916e-06 0.00119247077706 4.78596702848e+11 +UniRef50_Y0F5P3 4.56871183667e-05 9.36827734116e-05 19376434914.5 +UniRef50_UPI000289CB1A major facilitator superfamily protein, partial 1.07816483097e-05 1.48881112715e-05 1657829489.65 +UniRef50_A3PSA8 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.00736660458483 0.000985693114313 -2.57605226324e+12 +UniRef50_UPI0003C1628B PREDICTED 7.98279663603e-05 5.66855738396e-06 -29939063442.0 +UniRef50_UPI0002B4638C PREDICTED 2.9622551027e-05 1.85519084676e-05 -4469354253.29 +UniRef50_I1QQ05 1.64209631864e-05 0.000244059077488 91900300177.5 +UniRef50_UPI0002D42EAE hypothetical protein 1.27617033424e-05 0.000127253073745 46221571198.8 +UniRef50_P33218 Inner membrane protein YebE 0.00718146866408 0.000284871419803 -2.78424093828e+12 +UniRef50_Q2FEZ8 Type II pantothenate kinase 0.00837728495441 0.00498212897562 -1.37066613189e+12 +UniRef50_W0A724 9.65574988622e-05 3.11998371079e-05 -26385690078.9 +UniRef50_Q2NAY0 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.00247660068201 0.000937907685442 -6.21189244602e+11 +UniRef50_Q08T18 3.95785337346e-05 0.000147654682969 43631667689.3 +UniRef50_UPI000379B915 hypothetical protein 1.28128443628e-05 1.34702476568e-05 265401777.033 +UniRef50_Q83P86 Multidrug resistance protein MdtN 0.00349633074957 0.000224575441206 -1.32084776694e+12 +UniRef50_J0S1W5 0.0100519370973 0.00825894786802 -7.23851754312e+11 +UniRef50_X0Y200 Marine sediment metagenome DNA, contig 0.000257872450093 0.000519784693273 1.05737186596e+11 +UniRef50_F9NYE7 8.95461295654e-06 6.40177234507e-05 22229653406.9 +UniRef50_Q929Y1 UDP N acetylmuramoylalanine D glutamate ligase 0.00769029302553 0.00752038726644 -68593039922.8 +UniRef50_UPI00035EF123 RNA helicase, partial 0.00508005154185 0.00129224588278 -1.52918362617e+12 +UniRef50_D8JM33 Transcriptional regulator 0.000161318798655 0.00576074415175 2.26055672772e+12 +UniRef50_UPI0004642A6F hypothetical protein 4.44720228586e-06 2.53742864399e-05 8448520677.17 +UniRef50_Q2RPX0 Bifunctional protein GlmU 4.02604257234e-06 8.94799120005e-06 1987051060.11 +UniRef50_P0ACS3 Redox sensitive transcriptional activator SoxR 0.0109616726199 0.00486518883354 -2.46122531682e+12 +UniRef50_O27492 Probable acetolactate synthase small subunit 4.16845121931e-05 0.000476732928314 1.75634384232e+11 +UniRef50_Q5HKP7 Probable poly beta 1,6 N acetyl D glucosamine export protein 0.0140034374031 0.00187437927169 -4.89664960793e+12 +UniRef50_E4PHF9 Acyl CoA dehydrogenase domain protein 0.00210715970442 0.00899283327745 2.77983091815e+12 +UniRef50_Q4FRE8 0.000148811822151 0.00378412614624 1.46762100296e+12 +UniRef50_Q7F1Y2 B1065G12.2 protein 6.18880855235e-05 0.000101020537696 15798251151.2 +UniRef50_Q9KG60 Urease subunit beta 4.75823324231e-05 2.45806091628e-05 -9286077943.07 +UniRef50_Q8ERU3 UPF0736 protein OB1207 3.32028304098e-05 0.00023815863322 82743172684.9 +UniRef50_C5N1I8 0.00834218501901 0.000447449553334 -3.18720158679e+12 +UniRef50_UPI000381384D hypothetical protein 3.51619133743e-05 2.06081518015e-05 -5875532141.68 +UniRef50_UPI0003618EAB hypothetical protein, partial 5.43648348073e-05 9.71650887234e-05 17278987724.1 +UniRef50_Q9RXH3 Folyl polyglutamate synthetase 9.20697533807e-05 0.00168304273219 6.4229531498e+11 +UniRef50_Q1B677 Methionine import ATP binding protein MetN 5.01470944613e-05 8.14555327617e-06 -16956537593.3 +UniRef50_P45756 Putative general secretion pathway protein A 0.00306506657814 0.000490316835839 -1.0394580667e+12 +UniRef50_M0X8Z7 7.53570987378e-05 0.00173711773053 6.7087315915e+11 +UniRef50_S5XST5 Apolipoprotein N acyltransferase 0.00131256940276 0.000413993030489 -3.62766308258e+11 +UniRef50_P77775 Epimerase family protein YfcH 0.00462617505083 0.00238109626062 -9.06365857823e+11 +UniRef50_B3E5B6 Carbon starvation protein CstA 0.00016823606177 0.000792005695395 2.51823455609e+11 +UniRef50_U9LZ47 0.000778813866117 0.000297551213411 -1.94291638654e+11 +UniRef50_D9RBR2 7.08175081756e-05 5.29053836182e-05 -7231344490.31 +UniRef50_Q0AAE8 Choline carnitine betaine transporter 0.00746092788761 0.00307461818209 -1.77080705419e+12 +UniRef50_P43924 Pyruvate kinase 0.00084739262491 0.00185659826242 4.07428700209e+11 +UniRef50_Q98NZ9 Mll9669 protein 0.00813232557983 0.00104703439739 -2.86041899665e+12 +UniRef50_P31459 2 dehydro 3 deoxygalactonokinase 0.00964904222789 0.000905922907199 -3.5297045599e+12 +UniRef50_A3M531 0.000319488031859 0.00842750609 3.27330638664e+12 +UniRef50_A3M532 0.000322542287064 0.0164587911412 6.51440167644e+12 +UniRef50_UPI0003B75002 NAD synthetase, partial 6.8785157491e-06 6.02225722074e-05 21535650197.4 +UniRef50_UPI000369E819 hypothetical protein 0.00235928743033 0.000770391404865 -6.41456823429e+11 +UniRef50_UPI0003B3957E 50S ribosomal protein L21 0.000354746208623 0.00018040743114 -70382703847.3 +UniRef50_B5XIZ5 0.000231586496233 0.00780749523569 3.05848732497e+12 +UniRef50_Q747W9 Cyclic pyranopterin monophosphate synthase 9.90184247422e-06 0.000158802993864 60113222038.7 +UniRef50_Q82ZQ1 Allantoinase 5.7814671419e-05 0.000925703107414 3.503772118e+11 +UniRef50_A6LYV3 Putative cell wall binding repeat containing protein 0.000253888640807 0.00304546633062 1.12699416989e+12 +UniRef50_D8R6N5 7.02068109087e-07 3.42717333352e-06 1100158419.9 +UniRef50_Q8DU77 0.00334807762799 0.00194832319792 -5.65098040338e+11 +UniRef50_B5QY15 Glucans biosynthesis protein G 0.0036080294815 0.000374663143364 -1.30534966857e+12 +UniRef50_B2SD76 Leu Ile Val binding protein family 0.0145561061685 0.00413918022378 -4.20544083393e+12 +UniRef50_E8QKJ5 0.000179755232787 0.000654329403602 1.91591416438e+11 +UniRef50_B4TUR5 tRNA modifying protein YgfZ 0.00469172810982 0.000926099184118 -1.52023060677e+12 +UniRef50_Q8FAD6 Ornithine carbamoyltransferase 0.0293808554165 0.0156584006965 -5.53992336392e+12 +UniRef50_C7ZTG4 Polysaccharide biosynthesis protein 0.00837963379925 0.00328607708217 -2.05633135165e+12 +UniRef50_X0Z8U3 Marine sediment metagenome DNA, contig 5.12435074799e-06 1.84918151269e-05 5396609407.0 +UniRef50_E8TLE8 0.0016795067491 0.000259595204728 -5.73235714736e+11 +UniRef50_I4YKM8 4.87422842948e-05 2.7754541718e-05 -8473009226.82 +UniRef50_A5V3U6 Trigger factor 9.24320539651e-06 3.74457668001e-05 11385720123.0 +UniRef50_C7J1D9 Os04g0448000 protein 6.13138236987e-06 1.31758419328e-05 2843934770.79 +UniRef50_L7WY02 Aldo keto reductase 0.00937115843088 0.00485654776626 -1.82260372581e+12 +UniRef50_B1GZ10 Peptide deformylase 9.38659618238e-06 4.33917978598e-05 13728317207.9 +UniRef50_C1N707 Predicted protein 1.7997358605e-05 0.000299289718371 1.13561177483e+11 +UniRef50_O98946 Ribulose bisphosphate carboxylase small chain 0.000510700580774 6.52632221923e-05 -1.79828527791e+11 +UniRef50_Q83RQ0 Endo type membrane bound lytic murein transglycosylase A like protein 0.00247605709102 0.00250503445938 11698519199.2 +UniRef50_Q7VF52 Phosphoribosylformylglycinamidine synthase 2 2.39814681004e-05 6.2925027963e-06 -7141252361.28 +UniRef50_A6LZG6 0.000133230349002 0.000941179045577 3.26178803453e+11 +UniRef50_Q21CR1 4.10145374898e-05 2.23737053871e-05 -7525532668.59 +UniRef50_UPI000477F471 hypothetical protein 2.90615170702e-06 1.03856858866e-05 3019579732.5 +UniRef50_UPI0003B5D675 peptide chain release factor 1 3.24051018211e-06 3.57622475881e-05 13129424477.4 +UniRef50_UPI0002558465 threonine dehydratase 1.01564200217e-05 3.8635999938e-05 11497555896.0 +UniRef50_I6L918 0.0054388088772 0.00368939077079 -7.06261557332e+11 +UniRef50_B9JG36 2.87870076623e-05 1.41714137393e-05 -5900494620.22 +UniRef50_UPI000248E5FB phenazine biosynthesis protein PhzF 1.08909207077e-05 2.10203693822e-05 4089382732.21 +UniRef50_B8A1Z2 0.000700083609837 0.00134847935489 2.61765318988e+11 +UniRef50_B6VA55 Nitrite oxidoreductase 6.46893964235e-05 5.16987403629e-05 -5244487264.94 +UniRef50_P54932 Protein RdxB 0.0215385073674 0.00460038668437 -6.83812717384e+12 +UniRef50_A0A023SBI8 5.10693985452e-05 2.41645725522e-05 -10861808412.7 +UniRef50_UPI000328C02F PREDICTED 7.84896938634e-06 1.2727671947e-05 1969592092.15 +UniRef50_W9GJ48 Sugar ABC transporter substrate binding protein 0.00012785591139 2.74210266296e-05 -40546795452.2 +UniRef50_Q5HRJ0 Deoxynucleoside kinase family protein 0.019953037022 0.00263820951177 -6.99020834269e+12 +UniRef50_UPI0003B78493 5 hydroxyisourate hydrolase 2.51682042903e-05 3.39041629979e-05 3526813732.53 +UniRef50_F7ZII7 0.00106249025572 9.62020478533e-05 -3.90102407206e+11 +UniRef50_A0A034TUN2 Excinuclease ABC subunit B 4.37431623795e-05 0.00167173109308 6.57238705282e+11 +UniRef50_V4R3G1 Mucoidy inhibitor A 7.39916989239e-05 0.00018248200115 43798866334.4 +UniRef50_UPI0003712D73 MULTISPECIES 3.38903913587e-05 1.1634377876e-05 -8985025754.96 +UniRef50_P75857 Probable outer membrane usher protein ElfC 0.00192456015529 0.000592241177033 -5.37873520916e+11 +UniRef50_UPI0003B39972 LuxR family transcriptional regulator 6.96695990318e-05 1.80647820858e-05 -20833497863.4 +UniRef50_Q2S5J0 NADH quinone oxidoreductase subunit D 7.65477497331e-06 1.40351332424e-05 2575828929.03 +UniRef50_P76173 Anaerobic dimethyl sulfoxide reductase chain YnfH 0.000816390205017 0.000214775785594 -2.4287912376e+11 +UniRef50_Q97FQ5 DNA ligase 2 0.000433010862591 0.000704647954935 1.09663227541e+11 +UniRef50_T2QCI3 2.27418815467e-05 7.11468063849e-05 19541662152.4 +UniRef50_A4VMJ3 Transcriptional regulator FleQ 0.000702497623611 0.000648446879999 -21820948473.4 +UniRef50_Q7DDH4 Putative lipoprotein NMB1126 NMB1164 0.00313094532513 0.00274762591159 -1.54750751104e+11 +UniRef50_Q5FQD6 Bifunctional enzyme IspD IspF 5.76549021767e-06 1.88766602511e-05 5293140234.63 +UniRef50_L7WZU8 0.00881179534533 0.00266189880022 -2.48278870298e+12 +UniRef50_K2AF52 0.000704701485112 0.00059112148686 -45853639077.6 +UniRef50_F0KP57 Phospholipase D 0.000108681186813 0.00470513163512 1.85564345077e+12 +UniRef50_B1ERT8 0.000120346239139 0.00137356607068 5.05940224729e+11 +UniRef50_Q4A047 Imidazole glycerol phosphate synthase subunit HisH 0.0413805192798 0.00649619394876 -1.40832302149e+13 +UniRef50_P0CZ69 Arginine regulator 0.00496270249132 0.00388427336852 -4.35375070688e+11 +UniRef50_P80480 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 2.93073393585e-05 4.66582837276e-05 7004789161.84 +UniRef50_D9SZV9 PKD domain containing protein 2.80676642579e-06 2.7807121103e-05 10092949972.0 +UniRef50_A5FW26 MaoC domain protein dehydratase 1.63492746221e-05 2.41295965706e-05 3141011445.9 +UniRef50_Q42565 Anthranilate synthase beta subunit 1, chloroplastic 6.86365626983e-06 9.51794943474e-06 1071570722.51 +UniRef50_A5UMG8 Cell wall biosynthesis protein, MurD like peptide ligase family 0.00415382107225 0.0011493684761 -1.21293438185e+12 +UniRef50_F5LZS4 Hemolysin type calcium binding region RTX toxin 0.00253565646349 0.000717798532973 -7.33891554176e+11 +UniRef50_A7FX06 Aminotransferase, class IV 0.000154496311943 0.00121200914548 4.26930908042e+11 +UniRef50_R8A4W3 3.538727371e-05 3.42998225786e-05 -439017366.272 +UniRef50_UPI0003785F11 hypothetical protein 1.09495978848e-05 1.9242845689e-05 3348085908.15 +UniRef50_UPI00047E325C AsnC family transcriptional regulator 0.000175254310477 5.93208242369e-05 -46803771058.9 +UniRef50_UPI0003C1951F PREDICTED 3.10570402783e-06 1.60796633943e-05 5237746604.64 +UniRef50_C3F9W4 UTP glucose 1 phosphate uridylyltransferase 0.0268080905321 0.00522621891568 -8.71286641089e+12 +UniRef50_A0A023S292 Lysozyme 0.000159276788545 0.0046453489691 1.81108238959e+12 +UniRef50_UPI00047B031E hypothetical protein 2.93037015638e-05 7.30223488702e-05 17649754405.7 +UniRef50_Q9PE70 30S ribosomal protein S3 0.00396026569084 0.0054993372217 6.2134206354e+11 +UniRef50_Q3SSY2 50S ribosomal protein L10 0.0220554035469 0.00906485510652 -5.24444381735e+12 +UniRef50_A6LYQ4 Integral membrane sensor signal transduction histidine kinase 0.00055024423871 0.00184962317073 5.24575220029e+11 +UniRef50_Q9UYX0 Probable L threonine 3 dehydrogenase 1.755425112e-05 4.73576510301e-05 12031998272.6 +UniRef50_P04993 RecBCD enzyme subunit RecD 0.0036139973315 0.000946272575355 -1.07699322072e+12 +UniRef50_A9MFX7 Anaerobic nitric oxide reductase transcription regulator NorR 9.04691662704e-05 3.90320603757e-05 -20765790854.0 +UniRef50_B9E7Y2 0.00472022732158 0.000818843617088 -1.57503647686e+12 +UniRef50_E8QJ87 0.000177693370281 0.00408584807692 1.57777001352e+12 +UniRef50_UPI000475BC46 hypothetical protein 4.41665249955e-06 1.98309544545e-05 6222942853.99 +UniRef50_F2AHK1 0.000356204434747 5.35614800893e-05 -1.22180674642e+11 +UniRef50_UPI0004757A91 hypothetical protein, partial 6.29486685346e-05 0.000105471167815 17166854769.2 +UniRef50_Q8X613 Transcriptional regulatory protein ZraR 0.00280972716817 0.00142828352556 -5.57705750741e+11 +UniRef50_UPI0003B659FC ribose ABC transporter permease 9.68496902309e-05 1.23103396877e-05 -34129573228.8 +UniRef50_E1VQY8 Transcriptional regulator, ArsR family 0.000201147063333 0.000184380877328 -6768715034.46 +UniRef50_E0TTE0 Alpha,alpha phosphotrehalase 0.000217572516048 0.00404261283732 1.54421571622e+12 +UniRef50_UPI00046F1189 acriflavine resistance protein B 3.70692306318e-06 7.74186057319e-06 1628953787.04 +UniRef50_UPI00018172F7 putative 3 oxoadipate coa transferase subunit b protein 4.29546475366e-05 7.18146875696e-05 11651152313.8 +UniRef50_V5SS13 0.00166234588963 0.00105014791021 -2.47151836806e+11 +UniRef50_A0A023RZV0 0.000316093099584 0.005587631498 2.12818474049e+12 +UniRef50_T5ME54 Cysteine and O acetyl L serine efflux system protein 0.00017055089858 0.000322750497486 61444845777.5 +UniRef50_M1XIF6 7.6549315979e-05 0.000167211608127 36601479891.6 +UniRef50_Q2T6R3 1,4 alpha glucan branching enzyme GlgB 2.21986409392e-06 2.38353364791e-06 66075407.397 +UniRef50_L0A7U4 ATPase involved in chromosome partitioning 1.64498616111e-05 0.00176178405531 7.04612831656e+11 +UniRef50_I0BSQ6 Diguanylate cyclase 3.20243605063e-06 4.38854943236e-06 478848527.452 +UniRef50_B9KLX0 Class I monoheme cytochrome c 0.00234342667449 0.000541865514113 -7.27312348087e+11 +UniRef50_Q9X7Q6 Isopentenyl diphosphate Delta isomerase 6.73496260952e-05 1.48061081009e-05 -21212462995.8 +UniRef50_UPI0001744EBE organic solvent ABC transporter ATP binding protein 0.000281047071947 5.64196916871e-05 -90684829898.9 +UniRef50_U3SSQ2 Two component sensor histidine kinase 0.00692994102605 0.00200782120446 -1.98712017318e+12 +UniRef50_P71229 Hydrogenase 4 transcriptional activator 0.003178199986 0.000271301274573 -1.17355068146e+12 +UniRef50_UPI000368F50B hypothetical protein 1.10865871462e-05 1.63199368221e-05 2112767484.58 +UniRef50_J8V9R1 Monovalent cation H+ antiporter subunit C 0.00147101440344 9.34814084677e-05 -5.561269743e+11 +UniRef50_H9USG2 0.000505624573592 0.000389428622235 -46909731447.5 +UniRef50_Q09BZ8 2.00828485434e-05 0.000230280437258 84859345978.7 +UniRef50_G7MBG2 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 0.000517529831499 0.000719557700774 81561129987.1 +UniRef50_O26010 Phosphopantetheine adenylyltransferase 0.000335797090271 0.00135841420174 4.12843076824e+11 +UniRef50_K9NP10 L glutamine synthetase 0.000780105026029 0.000132034294431 -2.61634107068e+11 +UniRef50_R5CIR9 0.00405337209432 0.000999760285355 -1.23278055931e+12 +UniRef50_Q4BUD1 1.67334413844e-05 5.82590430039e-05 16764394950.2 +UniRef50_F0MM85 Hemagglutinin hemolysin family protein 3.43846694326e-05 0.00322654577832 1.28871461188e+12 +UniRef50_UPI0004127258 patatin 5.19166647299e-06 1.87730061253e-05 5482953479.41 +UniRef50_A0A056S3J4 Integral membrane protein 5.77598128449e-05 4.44386686764e-05 -5377909369.64 +UniRef50_Q6A8D2 0.000100117637944 0.00249533088139 9.66976978953e+11 +UniRef50_B9KV10 0.017709685862 0.00491575854061 -5.16506545879e+12 +UniRef50_A6LRB3 Uroporphyrinogen decarboxylase 0.000963312257075 0.00151073541187 2.21001445228e+11 +UniRef50_Q6FEM0 Outer membrane protein assembly factor BamB 0.000883306680243 0.00642988052296 2.23921992442e+12 +UniRef50_W4KYJ2 Transposase IS861 0.000328412050456 4.09367210291e-05 -1.16057318209e+11 +UniRef50_UPI0002558C10 AsmA family protein 2.81577533277e-06 4.37578616922e-06 629795518.161 +UniRef50_UPI000288B7A4 ATP binding protein 4.32932306348e-05 2.92501517255e-05 -5669363283.64 +UniRef50_Q8NXM4 DegV domain containing protein MW0711 0.0205929689154 0.00674372845395 -5.59110832356e+12 +UniRef50_F2GB41 EVE domain containing protein 5.29068628397e-05 0.000178979865362 50897218207.8 +UniRef50_B9DRS8 Glycogen synthase 0.000532436456921 0.00389091343246 1.35585836817e+12 +UniRef50_B9KRQ9 Response regulator receiver protein 0.0217574078598 0.00174357519639 -8.07982984356e+12 +UniRef50_K3Z8U3 4.76745608984e-05 7.2735352914e-05 10117349267.2 +UniRef50_B0VCR0 0.000323811248118 0.00683531573359 2.62877426593e+12 +UniRef50_UPI00037D7B24 hypothetical protein 1.9090268999e-05 1.02833438706e-05 -3555463747.46 +UniRef50_U6JY85 3.29528794402e-06 5.79917821711e-05 22081645920.9 +UniRef50_B9KU70 Periplasmic solute binding protein 0.000737660930939 0.000431977079183 -1.23408322117e+11 +UniRef50_D7AAV7 1.23953317528e-05 7.56672215716e-05 25543638353.2 +UniRef50_Q3J682 2 dehydropantoate 2 reductase 0.00160426901248 0.00100349392811 -2.42540273899e+11 +UniRef50_U5MW40 SpoIIIAH like protein 0.00100051496729 0.000344727671428 -2.64749378755e+11 +UniRef50_UPI0002D3A5FE hypothetical protein 1.0900914955e-05 2.76984442957e-05 6781368723.71 +UniRef50_A5UKH3 Homoserine O acetyltransferase 0.00164405679011 0.000888144225338 -3.05171178489e+11 +UniRef50_G9A115 3.86500948995e-05 1.79882755269e-05 -8341430029.75 +UniRef50_UPI0003C1A4EF PREDICTED 1.7173856009e-05 3.74289079136e-05 8177213011.32 +UniRef50_A4IT51 Anthranilate 3 monooxygenase oxygenase component 7.81544490361e-05 5.59852545483e-06 -29291716711.1 +UniRef50_UPI000343F89B PREDICTED 5.10851661878e-06 3.99563521443e-05 14068498832.7 +UniRef50_UPI00037F4E3B hypothetical protein, partial 4.01591105753e-05 0.000227460387961 75615824125.9 +UniRef50_P22996 Resolvase 0.00061407918475 0.0130000128978 5.00035343244e+12 +UniRef50_P57286 Superoxide dismutase [Mn] 1.0941028632e-05 4.93483594644e-05 15505510768.0 +UniRef50_D3UZU9 9.63058280965e-05 0.000102416584098 2466987185.21 +UniRef50_C5LZC5 9.85623182366e-06 1.46790110439e-05 1947015153.37 +UniRef50_M1MI36 0.000404652752376 0.000280808277526 -49997534239.5 +UniRef50_P15931 Peptidoglycan hydrolase FlgJ 0.000378460096157 0.000782246461611 1.6301351075e+11 +UniRef50_UPI00029A0F96 PfkB domain containing protein 3.22806675209e-05 2.74435806161e-05 -1952791341.2 +UniRef50_E5QV40 0.00673936198574 0.00343759260094 -1.33296481791e+12 +UniRef50_A4WQH8 Plasmid pRiA4b ORF 3 family protein 0.00445558787576 0.00204495150905 -9.73203483076e+11 +UniRef50_UPI00036A1A43 hypothetical protein 4.32102011609e-06 2.86406489301e-05 9818132587.62 +UniRef50_Q795R8 0.0155327439546 0.00498980199346 -4.25631504614e+12 +UniRef50_UPI0002D2C86E hypothetical protein 0.000203419303959 6.4634999714e-05 -56028926698.6 +UniRef50_UPI000346B9B9 hypothetical protein 6.53120525372e-05 0.0101908430781 4.08780112927e+12 +UniRef50_P77739 0.00188448308011 0.00155104680679 -1.34612315262e+11 +UniRef50_X8FNE2 HD domain protein 7.20469324592e-06 4.49658595652e-05 15244646224.7 +UniRef50_UPI00024935CA phosphoenolpyruvate dependent sugar phosphotransferase system EIIABC, glucose specific 2.48118930723e-05 0.000262704621208 96040213620.6 +UniRef50_P77732 0.00421043158161 0.00127290286732 -1.18591638949e+12 +UniRef50_P77730 0.00358234604254 0.0017976311909 -7.20511286521e+11 +UniRef50_O26944 Metalloprotease MTH_856 0.00504742613661 0.002557156869 -1.00535226237e+12 +UniRef50_F0XYT4 0.000172188496817 0.000831996789275 2.66372704424e+11 +UniRef50_Q46871 NADPH dependent ferric chelate reductase 0.00142465992177 0.000331816522686 -4.41194290905e+11 +UniRef50_P37686 Probable alcohol dehydrogenase 0.000424285620785 0.000759885353708 1.35485730453e+11 +UniRef50_F4PD55 Expressed protein 5.70557914837e-05 3.9377370667e-05 -7136995422.32 +UniRef50_A9M1Y3 0.000367681157978 0.00968872378748 3.76301929158e+12 +UniRef50_D0J3S0 TRAP dicarboxylate transporter, DctM subunit 4.99694444778e-06 8.59844440151e-06 1453969726.7 +UniRef50_UPI00037FD144 hypothetical protein 4.90348117431e-06 7.08551366165e-06 880913291.689 +UniRef50_M9VHU4 DNA gyrase topoisomerase IV, A subunit 0.000240810985871 0.00560413711113 2.16524057218e+12 +UniRef50_A3TUW7 1.74106393237e-05 5.50073954361e-06 -4808172692.13 +UniRef50_Q28UZ5 Hypoxia induced protein conserved protein 2.59828273401e-05 4.74217819644e-05 8655169067.39 +UniRef50_A3M3B5 Arylsulfatase 0.000138543760154 0.005251665161 2.06422985458e+12 +UniRef50_M4XE09 0.000782669319412 0.000911542503506 52027685870.6 +UniRef50_UPI00037E95DD MULTISPECIES 0.000129059943961 3.69465814678e-05 -37187294796.6 +UniRef50_O27566 0.00137966418622 0.000714501112457 -2.68534495347e+11 +UniRef50_A4WFL4 Glycogen debranching enzyme 3.03229246733e-05 7.26431331438e-05 17085187486.9 +UniRef50_UPI0003BBA1AF PREDICTED 3.56568970714e-05 1.25392858888e-05 -9332863319.41 +UniRef50_Q891J7 ATP dependent Clp protease proteolytic subunit 1.03375895373e-05 0.000111712450451 40926275360.4 +UniRef50_D4JWQ1 Seryl tRNA synthetase 8.89597774156e-05 0.00085699369107 3.10064715778e+11 +UniRef50_UPI000376DE1E TonB dependent receptor, partial 7.79071648464e-06 0.000202769149232 78715185954.4 +UniRef50_UPI00046628D5 hypothetical protein 3.62445038034e-05 1.08889903377e-05 -10236331933.2 +UniRef50_Q984K6 Phosphoribosylformylglycinamidine cyclo ligase 0.00110366838633 0.000714085834325 -1.5727925696e+11 +UniRef50_R7QBK2 Stackhouse genomic scaffold, scaffold_21 0.000282814053813 0.000119603647342 -65890043909.3 +UniRef50_UPI0003B66A9A magnesium transporter MgtC 7.37222419999e-05 4.57252778069e-05 -11302718006.1 +UniRef50_G2WVV9 DUF814 domain containing protein 1.83852447782e-05 2.15086773379e-05 1260968053.18 +UniRef50_E4AYJ6 0.000154939573793 0.00450665566965 1.75684118946e+12 +UniRef50_P63412 Acetate kinase 0.00216801849266 0.000797908860343 -5.53130071703e+11 +UniRef50_UPI0002BC6437 hypothetical protein 0.000943714972126 0.0142410437294 5.3682947959e+12 +UniRef50_UPI0003FE028E hypothetical protein 2.30551906406e-05 8.96698187744e-06 -5687582759.47 +UniRef50_V7GTL1 0.000910814090943 0.000348435704399 -2.27039055807e+11 +UniRef50_Q1MMP4 50S ribosomal protein L20 0.0076848228418 0.00162466788691 -2.44655892175e+12 +UniRef50_Q3IV37 0.0063481836455 0.00203595035782 -1.74090149529e+12 +UniRef50_Q3IV35 0.00959974209065 0.00289784039355 -2.7056399567e+12 +UniRef50_Q3IV32 0.0146959023823 0.00332398067358 -4.59098434297e+12 +UniRef50_A6LSR7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.00117224678083 0.000300831957759 -3.51800857536e+11 +UniRef50_P71310 0.000213164314041 0.000630569477283 1.68511586538e+11 +UniRef50_Q3JQ29 5.20829069546e-06 2.39254677281e-06 -1136750374.64 +UniRef50_A1B962 Ribosomal RNA large subunit methyltransferase E 0.00660613515998 0.000839555925897 -2.32803880068e+12 +UniRef50_A6LTV3 0.000703719542133 0.000951450308472 1.00011950369e+11 +UniRef50_Q034X6 30S ribosomal protein S12 0.000268354968373 0.0250706489643 1.00129904445e+13 +UniRef50_E4D6N2 0.000327299990334 0.00508258515809 1.91976697614e+12 +UniRef50_X1MDA3 Marine sediment metagenome DNA, contig 3.14479091987e-05 0.00113583348153 4.45854007885e+11 +UniRef50_C0RJC1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.00429592993492 0.00267961871454 -6.52524674037e+11 +UniRef50_R6IDY7 0.000139396577579 0.000306037845981 67275124972.2 +UniRef50_Q6BA81 4.92758610609e-05 1.00823769841e-05 -15822890479.9 +UniRef50_Q8CQ58 ATP utilizing enzyme of the PP loop superfamily 0.0077979601101 0.00390104029723 -1.57323434904e+12 +UniRef50_P37659 Protein BcsG homolog 0.0039883975772 0.000631616288139 -1.35517379873e+12 +UniRef50_E6DXU7 ABC transporter, solute binding protein 0.000285912243473 0.00705307519839 2.73198672733e+12 +UniRef50_Q2SVU4 Ribose import ATP binding protein RbsA 1 1.25968014835e-05 5.54673924839e-05 17307383668.2 +UniRef50_Q98FL3 Phosphate transport system permease protein PstC 0.00367890663263 0.000364588524928 -1.33803089134e+12 +UniRef50_A1BBE0 Alkylhydroperoxidase like protein, AhpD family 0.012539891893 0.000750808552819 -4.75939761276e+12 +UniRef50_P76463 0.00296083119914 0.000708964037068 -9.09106406845e+11 +UniRef50_P76462 0.00336093646212 0.000228927678448 -1.26443038004e+12 +UniRef50_P76466 0.00374512144197 0.00157109976358 -8.77679229812e+11 +UniRef50_UPI0004753B4A sugar ABC transporter permease 4.33409094142e-05 1.26550092953e-05 -12388274436.3 +UniRef50_P0ABE5 Cytochrome b561 0.00233723534335 0.00347431417878 4.5905267939e+11 +UniRef50_D4H299 2.42215105498e-05 1.85149550807e-05 -2303806470.19 +UniRef50_UPI0003C78158 hypothetical protein, partial 8.27601264253e-05 3.39050645762e-05 -19723387987.5 +UniRef50_UPI00046770C1 hypothetical protein 2.2937290419e-05 3.62747432931e-05 5384493394.23 +UniRef50_UPI0003B4B937 ribonuclease D 5.64863518462e-05 9.8832521296e-06 -18814243239.9 +UniRef50_Q3IV99 HipA domain containing protein 0.013053203913 0.00437044951208 -3.50533450103e+12 +UniRef50_V9WGZ8 Di and tricarboxylate transporter 0.0145184687072 0.00456846683289 -4.01693785691e+12 +UniRef50_A0PKQ3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.66419759311e-05 7.08394712289e-05 1694580360.78 +UniRef50_I3VIL5 Exodeoxyribonuclease V beta subunit 0.000569426275479 0.000253853901306 -1.27400439962e+11 +UniRef50_C4LGQ2 Putative lysophospholipase 1.66219999784e-05 2.8086347897e-05 4628297938.11 +UniRef50_P21627 High affinity branched chain amino acid transport system permease protein BraD 0.00333223303574 0.00138478674986 -7.86207963463e+11 +UniRef50_UPI0001CC0C54 phosphogluconate dehydratase 7.38538367525e-05 3.75032691266e-05 -14675170222.2 +UniRef50_UPI000479E1B9 biotin biosynthesis protein BioY 1.46785979329e-05 4.47382777095e-05 12135461599.6 +UniRef50_B0TGJ1 6.66112406707e-06 7.4066114148e-06 300962390.437 +UniRef50_K7SIM7 Phosphoglycerate mutase family protein 0.000169783803081 0.00302176993236 1.1513817982e+12 +UniRef50_G8P2V7 Integral membrane protein 2.30898615207e-05 1.85342808422e-05 -1839143823.17 +UniRef50_X2NCX1 3.21882041851e-05 1.19660531471e-05 -8163930527.74 +UniRef50_UPI00034D1C35 hypothetical protein 1.47512589275e-05 1.61161441976e-06 -5304635729.33 +UniRef50_G9ZD87 1.23629562631e-05 0.000144930957181 53519328762.9 +UniRef50_UPI0003EC446E PREDICTED 3.85481968413e-06 5.94359184417e-06 843262953.125 +UniRef50_U5X589 Dehydrogenase 1.53040119441e-05 0.000128074170541 45526696871.1 +UniRef50_D7G0G3 0.000201371754319 4.72848563011e-05 -62206771588.7 +UniRef50_UPI0003695FD6 membrane protein 1.77855156612e-05 4.54280430137e-05 11159627504.2 +UniRef50_P0AFF3 Nucleoside permease NupC 0.00403773622393 0.00207682670989 -7.91643233884e+11 +UniRef50_UPI00047A3E0B MarR family transcriptional regulator 0.000145732613926 2.14726889456e-05 -50165256555.2 +UniRef50_A5UNU3 0.00276225339721 0.00350490937895 2.99819333242e+11 +UniRef50_UPI000422F603 organic hydroperoxide resistance protein 2.43903343146e-05 0.000299027730413 1.10874486985e+11 +UniRef50_T2A3R6 0.000456636276836 0.00201923160101 6.30838907568e+11 +UniRef50_O33517 Protein translocase subunit SecD 0.00732020902115 0.00131898771393 -2.42276668499e+12 +UniRef50_B5FUN9 Zinc transport protein ZntB 0.00395122011708 0.00125944441878 -1.08670288121e+12 +UniRef50_P77445 Ethanolamine utilization protein EutE 0.00288630781035 0.00133069157337 -6.28021364427e+11 +UniRef50_B5YU52 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 0.002511540717 0.00212586237943 -1.55703077682e+11 +UniRef50_V5T2Q4 Diguanylate cyclase 0.000321028785553 0.000132703086319 -76029395797.0 +UniRef50_C7MC16 ATP dependent zinc metalloprotease FtsH 2.96219661011e-06 0.0030749185114 1.24018646142e+12 +UniRef50_Q7W4T9 Holliday junction ATP dependent DNA helicase RuvA 1.33380848001e-05 1.10694518557e-05 -915874958.911 +UniRef50_P00946 Mannose 6 phosphate isomerase 0.0014161205321 0.000309532785374 -4.46743052714e+11 +UniRef50_V5T4B0 Pilus assembly protein PilV 3.68236392742e-05 0.000165908261343 52113045975.7 +UniRef50_T0VJG1 PTS fructose IIC component 4.21560749834e-05 4.2395120547e-05 96505627.4443 +UniRef50_J2DPW6 8.11797825447e-05 0.000125134197123 17744936546.6 +UniRef50_Q3Z5U2 HTH type transcriptional regulator SgrR 0.00295981232245 0.000763393652057 -8.86721170324e+11 +UniRef50_F9Z280 0.000519384184784 0.0057716621663 2.12040907384e+12 +UniRef50_R7H8U6 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.000172374420867 0.000602794437515 1.73765842568e+11 +UniRef50_K1CPP9 0.00102360880271 0.000514025013599 -2.0572522896e+11 +UniRef50_P04995 Exodeoxyribonuclease I 0.00392816663246 0.00087217593902 -1.23374094416e+12 +UniRef50_UPI00031469E2 hypothetical protein 3.49009310975e-05 6.01597668139e-05 10197301939.5 +UniRef50_A6LY50 MATE efflux family protein 0.00037798493582 0.000563503679245 74896193291.7 +UniRef50_B7H068 Histidine tRNA ligase 0.000374389062106 0.00904860851041 3.50188883592e+12 +UniRef50_UPI000419FBF3 ABC transporter permease 7.80845981907e-05 0.000168010086243 36304023036.5 +UniRef50_UPI00035EE3E6 hypothetical protein 2.74712410009e-06 3.41102951508e-06 268026763.067 +UniRef50_G8VDA6 0.000448895982328 0.00490907479145 1.80062891779e+12 +UniRef50_U2BA89 3.92571083939e-06 5.29196420108e-05 19779451237.0 +UniRef50_W7AYX4 5.23157566426e-05 2.96255125765e-05 -9160329970.09 +UniRef50_A6M0D8 0.000300123651783 0.00068386931676 1.5492283404e+11 +UniRef50_Q1IYN7 Amidase 0.000234592456886 0.0204267990746 8.1518415978e+12 +UniRef50_T2I810 Structural constituent of cell wall 9.22268625471e-05 9.84040141582e-06 -33260425354.3 +UniRef50_Q4L769 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0204604245464 0.00184905888 -7.51363670667e+12 +UniRef50_UPI0004684CB5 ABC transporter permease 0.000200441101256 3.27098046281e-05 -67715182743.2 +UniRef50_Q5HRJ5 Teichoic acid biosynthesis protein, putative 0.0114316634903 0.00397435734213 -3.01060600345e+12 +UniRef50_Q5HRF7 Phosphate acetyltransferase 0.0271715617175 0.0112751940874 -6.41755868264e+12 +UniRef50_X7YDZ8 PE family protein 7.39202328085e-05 0.00186277812405 7.22183882448e+11 +UniRef50_O63849 NADH ubiquinone oxidoreductase chain 6 5.29330056772e-05 2.52769032283e-05 -11165107937.2 +UniRef50_UPI0004677159 hypothetical protein 2.17046249955e-05 1.24248791991e-05 -3746347253.29 +UniRef50_L1K787 0.000285764715954 7.7621197061e-05 -84030092785.3 +UniRef50_Q2JTU3 Phosphate import ATP binding protein PstB 2 0.000190695323778 0.0464865260573 1.86901949808e+13 +UniRef50_UPI000301C2E3 ATPase 3.51689445339e-06 3.48435988965e-06 -13134602.6258 +UniRef50_A4SCS1 50S ribosomal protein L5 0.0402813495798 0.0147537626564 -1.03058000997e+13 +UniRef50_Q3J2X2 Phosphatidate cytidylyltransferase 0.00212396514788 0.000224575441206 -7.66806932715e+11 +UniRef50_B2TLQ4 Chemotaxis response regulator protein glutamate methylesterase 0.000456830830374 0.00147085245052 4.09372971499e+11 +UniRef50_UPI00016C54E3 chromosomal replication initiator protein DnaA 4.28705816598e-06 1.1215174862e-05 2796965727.74 +UniRef50_A3PKA4 0.000781005494173 0.00105437295796 1.10361799727e+11 +UniRef50_P32674 Formate acetyltransferase 2 0.00148411209976 0.000634397885357 -3.4304005552e+11 +UniRef50_J9NZ66 2.22094461737e-05 5.79639580396e-06 -6626149845.03 +UniRef50_Q69K37 3.80841636054e-05 5.82548264305e-05 8143144104.36 +UniRef50_P39342 0.0036098702294 0.00121821897793 -9.6553895908e+11 +UniRef50_UPI00045609F1 hypothetical protein PFL1_01799 4.4142479742e-06 0.000919040928678 3.69246014732e+11 +UniRef50_UPI0000397F81 COG2931 4.51495142517e-06 7.49232890291e-05 28424709898.2 +UniRef50_P18813 Maltose maltodextrin import ATP binding protein MalK 0.000142140131912 6.38562559059e-05 -31604161394.8 +UniRef50_UPI00044149CA hypothetical protein AURDEDRAFT_115522 1.8375825344e-05 6.81805591241e-05 20106782199.8 +UniRef50_I0C4L0 ADP ribose pyrophosphatase 0.0165638621705 0.00363257969083 -5.22051742174e+12 +UniRef50_UPI000467F222 hypothetical protein 0.00577056911532 0.000480668924539 -2.13559762139e+12 +UniRef50_Q167S3 TRAP dicarboxylate transporter, DctM subunit, putative 0.00542344358016 0.00108249148096 -1.75249563192e+12 +UniRef50_Q2CDM9 8.85199201869e-05 5.57072014965e-05 -13246897192.7 +UniRef50_J8KBH6 YhgE Pip domain containing protein 4.49647113805e-06 3.6152658056e-06 -355753406.316 +UniRef50_UPI000365A141 hypothetical protein 1.50867437226e-05 3.48843562518e-05 7992539122.06 +UniRef50_C2W425 PTS system Galactitol specific IIC component 0.000644178679882 0.00244353021746 7.26420296247e+11 +UniRef50_UPI00037AE12F hypothetical protein 0.000785966462809 0.00461097340622 1.54420224117e+12 +UniRef50_UPI0003330970 0.000414980052152 4.55420185115e-05 -1.49146667695e+11 +UniRef50_Q64467 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 4.71370048222e-06 5.83309207037e-06 451912120.616 +UniRef50_B5R9D9 Probable L ascorbate 6 phosphate lactonase UlaG 0.0107357100235 0.00482892053753 -2.38464339994e+12 +UniRef50_Q1C790 Pyridoxine pyridoxamine 5 phosphate oxidase 0.0024336708678 0.00315913364256 2.928782246e+11 +UniRef50_UPI00046FFDD3 iron dicitrate transporter subunit FecD 1.28998321397e-05 3.18896870912e-05 7666437475.65 +UniRef50_P0AE25 Arabinose proton symporter 0.0022554369045 0.00287828429602 2.51451135154e+11 +UniRef50_Q8DTN8 Adenosine deaminase 0.00632842057744 0.00134913633666 -2.01019815069e+12 +UniRef50_UPI0002554E0F xylose ABC transporter ATP binding protein 8.29221375268e-05 2.9654600144e-05 -21504758507.6 +UniRef50_W5X630 Putative OsmC like protein 1.23875489354e-05 2.72621155647e-05 6005045079.71 +UniRef50_A7X3N8 Putative membrane protein insertion efficiency factor 0.00153034860346 0.00162603529987 38629893548.5 +UniRef50_Q4L3G1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0202080149535 0.00702342394128 -5.32278118475e+12 +UniRef50_P77473 Putative cyclic di GMP phosphodiesterase YlaB 0.0023238699253 0.000920959635185 -5.66372099763e+11 +UniRef50_Q1NHL2 Transposase and inactivated derivative 2.24138856622e-05 1.8650724916e-05 -1519234172.42 +UniRef50_P32717 Putative alkyl aryl sulfatase YjcS 0.00370648146794 0.00142195500035 -9.22291369258e+11 +UniRef50_Q16DL2 Ubiquinone biosynthesis protein UbiB 0.00871008014206 0.00104534339287 -3.09434828254e+12 +UniRef50_E1WIS2 Intracellular growth attenuator protein igaA 0.00328148520949 0.00073376257054 -1.02854689342e+12 +UniRef50_G7M8Q2 Methyl accepting chemotaxis sensory transducer 0.000237172727924 0.000947387498409 2.8672241816e+11 +UniRef50_UPI000255D9DF Fis family transcriptional regulator 0.000650273458482 0.000314217101544 -1.35670075171e+11 +UniRef50_B0V742 0.000248982830032 0.00554039407662 2.13620765317e+12 +UniRef50_Q2FH57 Putative oligopeptide transport ATP binding protein oppD2 0.0187761479194 0.00490642295408 -5.59937816916e+12 +UniRef50_U6J469 NADH dehydrogenase ubiquinone iron sulfur 1.25651045625e-05 2.42665101498e-05 4724001027.99 +UniRef50_UPI000474822F isocitrate dehydrogenase 3.0908914629e-05 3.20114300149e-05 445098990.673 +UniRef50_Q8DRQ7 Ribosomal RNA large subunit methyltransferase H 0.00369798114721 0.00408781651296 1.57381320971e+11 +UniRef50_Q2YVJ6 0.0101380138573 0.00399533692147 -2.47987405812e+12 +UniRef50_B9MKG1 Adenylate kinase 1.94525324048e-05 1.43448036743e-05 -2062052767.38 +UniRef50_A6M277 0.000170294816142 0.000180806146044 4243552869.96 +UniRef50_D4HBC2 Transporter, CPA2 family 0.000240950646623 0.00453879779371 1.7350936338e+12 +UniRef50_P04890 Integrase 0.00445318883312 0.00161219516575 -1.14694400643e+12 +UniRef50_A6LSE2 0.000324244096982 0.00104731022023 2.91910666974e+11 +UniRef50_UPI00046606A2 hypothetical protein, partial 9.74285308776e-06 6.74204026379e-06 -1211464961.15 +UniRef50_A6M2U1 Multi sensor hybrid histidine kinase 0.000250147082537 0.00154457549261 5.22576633568e+11 +UniRef50_UPI000476D31F DNA gyrase subunit A 8.78633060868e-06 2.07521458052e-05 4830746431.89 +UniRef50_UPI0001CC0D72 hypothetical protein 4.60593486597e-05 0.000103767812091 23297614849.7 +UniRef50_R4ZZW8 Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage 0.0053146838526 0.00129205251708 -1.62398563339e+12 +UniRef50_Q9K8F8 Glutamyl tRNA reductase 7.16692055211e-06 0.000192649038552 74881407158.1 +UniRef50_I0C5E6 Endonuclease 0.0087040249981 0.000290952418913 -3.39646064023e+12 +UniRef50_UPI000472AF7A hypothetical protein 3.65716987911e-05 1.0528778702e-05 -10513846422.5 +UniRef50_B4FAT0 Adenylyltransferase and sulfurtransferase MOCS3 2 2.21194887522e-05 2.59044250973e-05 1528025248.91 +UniRef50_D6M307 Transcriptional regulator, CdaR 0.000567075770637 0.000224875198353 -1.38150570304e+11 +UniRef50_M9VJY1 Transporter, lactate permease family protein 0.000166316340848 0.00305029152082 1.16429617051e+12 +UniRef50_UPI00046A82C0 3 methyladenine DNA glycosylase 2.92974829087e-05 2.0863241983e-05 -3405006561.48 +UniRef50_UPI0004700FE4 hypothetical protein 3.24210305445e-05 1.10755738241e-05 -8617422816.23 +UniRef50_F0KN05 Multiple inositol polyphosphate histidine phosphatase 0.000282906878879 0.00787989829104 3.06699865866e+12 +UniRef50_E8PIM3 9.61339530144e-05 0.00644670102974 2.5638018591e+12 +UniRef50_P52129 mRNA endoribonuclease LS 0.00203536311624 0.00100783115063 -4.14827263752e+11 +UniRef50_UPI000237AE14 spermidine putrescine ABC transporter ATPase subunit 1.88827311168e-05 9.17371961268e-06 -3919647087.18 +UniRef50_A5WHV0 Isochorismatase hydrolase 0.000442102597091 0.000553718822241 45060839778.2 +UniRef50_Q4K629 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 4.74951535326e-05 0.000157146415598 44267560067.9 +UniRef50_UPI0003718DF7 hypothetical protein 5.62021540451e-05 3.76715755861e-05 -7481021919.67 +UniRef50_UPI00036AD976 hypothetical protein 0.000619319100806 0.0001322913359 -1.96619085195e+11 +UniRef50_C1HZT4 9.17574154035e-05 0.000695110090512 2.43580878911e+11 +UniRef50_UPI0003690E18 hypothetical protein 1.6176108017e-05 0.000398381790308 1.54301124132e+11 +UniRef50_UPI00036650E1 ATPase AAA 5.25092471424e-06 5.50431275763e-05 20101723314.5 +UniRef50_F9VEN7 Epoxyqueuosine reductase 0.00650717554635 0.00510777796414 -5.64953976478e+11 +UniRef50_X1PDI0 Marine sediment metagenome DNA, contig 3.34307163761e-05 3.72821857681e-05 1554885456.39 +UniRef50_G7DLE2 0.0148808206506 0.00124348655432 -5.50555912358e+12 +UniRef50_E2PHB7 8.40654494121e-06 1.63992346377e-05 3226746911.81 +UniRef50_R5GC07 8.10956618569e-06 0.000166020903008 63750744465.1 +UniRef50_F0YDY4 0.000295396329632 0.000726157018034 1.73903375936e+11 +UniRef50_UPI0003802080 hypothetical protein 3.38066816286e-05 0.000978799899314 3.8150535835e+11 +UniRef50_UPI00029AFE54 RNA directed DNA polymerase 5.54738597044e-06 9.86150040641e-06 1741660937.94 +UniRef50_W7WC52 0.000887671126056 0.00190168520771 4.09369928114e+11 +UniRef50_X1XUX4 Uroporphyrinogen decarboxylase 1.74450051423e-06 5.97598035533e-06 1708300337.95 +UniRef50_UPI0001CBC083 PREDICTED 2.68898682801e-05 5.0277683341e-05 9441947940.85 +UniRef50_P54746 Mannosylglycerate hydrolase 0.00420434891043 0.000679071365828 -1.42319780478e+12 +UniRef50_E4BG02 Dinuclear metal center protein, YbgI family 0.000260626612691 0.00609232392082 2.35432776627e+12 +UniRef50_A1VMA0 50S ribosomal protein L19 0.000690683649031 0.00262869624505 7.82399467102e+11 +UniRef50_T1YBG5 Opine dehydrogenase 0.0236598526903 0.00283989804219 -8.40527118101e+12 +UniRef50_X1B9K9 Marine sediment metagenome DNA, contig 1.40942159089e-05 3.06857897143e-05 6698221946.75 +UniRef50_A5WGQ7 Periplasmic protein like protein 1.04450235258e-05 4.16444173436e-05 12595578143.9 +UniRef50_X2N5D2 Outer membrane specific lipoprotein transporter subunit LolC 8.18662840339e-05 4.53783390152e-05 -14730631161.5 +UniRef50_X1D3Z2 Marine sediment metagenome DNA, contig 2.12937360642e-05 6.48408761285e-05 17580514827.5 +UniRef50_Q97D80 4 hydroxy tetrahydrodipicolinate synthase 2 0.000133073791603 0.00228148147829 8.67338547044e+11 +UniRef50_P40720 Fumarate hydratase class I, aerobic 0.00293029697924 0.000602324560901 -9.39831032718e+11 +UniRef50_B6IUC1 Methylthioribose 1 phosphate isomerase 0.00278372224471 0.00127142668247 -6.1053227643e+11 +UniRef50_Q02425 Putative transcriptional regulator MtlR 0.00503092610053 0.00319147800609 -7.42607768292e+11 +UniRef50_B4M1F9 GJ18858 1.01981263875e-05 5.10213154577e-05 16480822384.5 +UniRef50_B2IU46 Phosphoribosylformylglycinamidine synthase 2 2.53327206266e-05 6.02501613495e-06 -7794757235.44 +UniRef50_R4GH13 1.11755566566e-05 1.84542428861e-05 2938494950.37 +UniRef50_C1FA47 Potassium transporting ATPase A chain 9.22300757834e-06 0.00202210674766 8.12625866731e+11 +UniRef50_Q1I3T3 Polyhydroxyalkanoate synthesis protein PhaF 0.000166783205682 5.05074079735e-05 -46941966399.2 +UniRef50_Q3HKH1 0.0228404875845 0.00685987989442 -6.4515674286e+12 +UniRef50_Q3HKH3 0.00237788050164 0.00157805054865 -3.22901167039e+11 +UniRef50_UPI000370C63A hypothetical protein 0.000319690775232 0.000941514765672 2.51037975579e+11 +UniRef50_W4TJY2 0.000191976595905 0.000508845783457 1.27923979437e+11 +UniRef50_UPI000441F8F0 PREDICTED 0.000563058661583 1.75801197262e-05 -2.20216381122e+11 +UniRef50_G2IS79 Hypothetical membrane protein 0.00019534428448 5.24911101547e-05 -57671579480.6 +UniRef50_A5UM67 Sugar fermentation stimulation protein homolog 0.00298102486338 0.000658810500783 -9.37506434956e+11 +UniRef50_R7PWU8 0.00159021358448 0.00105843839075 -2.14684171324e+11 +UniRef50_Q2AC94 3.52250371022e-05 4.2520321529e-05 2945195846.31 +UniRef50_F7Z4K9 TnpA 0.000605284995007 0.00024372767966 -1.45965125013e+11 +UniRef50_R7PWU3 0.00292339228816 0.000795294053104 -8.59139372196e+11 +UniRef50_C0QUK8 Methionyl tRNA formyltransferase 4.58608148375e-06 1.44176175045e-05 3969111738.09 +UniRef50_UPI000375AFE0 hypothetical protein 4.71469669417e-06 3.14629291909e-05 10798589696.6 +UniRef50_UPI00046A12DF hypothetical protein 1.44834385524e-05 2.41145096021e-05 3888181569.3 +UniRef50_A6LX98 Glycoside hydrolase, family 18 0.000418275602248 0.00157164378084 4.65628887116e+11 +UniRef50_P22102 Trifunctional purine biosynthetic protein adenosine 3 4.45304472711e-06 2.46798581498e-06 -801392642.239 +UniRef50_Q5KXU4 Chorismate synthase 0.0271011618318 0.0413090051106 5.73588068149e+12 +UniRef50_UPI000474B63A hypothetical protein 5.22419775497e-06 1.01118569742e-05 1973208005.13 +UniRef50_F8IFU6 LmbE family protein 1.76078834687e-05 1.68551746895e-05 -303877770.938 +UniRef50_UPI000289F8D3 methionine aminotransferase 1.00075520236e-05 2.0148592413e-05 4094062449.76 +UniRef50_M9RJP3 0.00205562130125 0.000225719774668 -7.38753701697e+11 +UniRef50_F4NWK8 0.000311887641968 0.000860145743281 2.21338523384e+11 +UniRef50_UPI00041A4561 hypothetical protein 3.38778996678e-05 2.77703241396e-06 -12555801760.9 +UniRef50_Q9PD69 Proline iminopeptidase 0.000212520408214 0.00398316716448 1.52225636655e+12 +UniRef50_G7M2T0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000219779183948 0.000776722638459 2.24844907051e+11 +UniRef50_Q8R9V7 3 oxoacyl [acyl carrier protein] synthase 3 0.000157914310134 2.7250793335e-05 -52750465153.4 +UniRef50_UPI0002888835 glycerol 3 phosphatase 7.71932335607e-06 1.63930098813e-05 3501673688.34 +UniRef50_UPI0003722744 hypothetical protein 1.04025515617e-05 3.46914523088e-05 9805727289.93 +UniRef50_B7GZ54 Actinomycin synthetase II 0.000128516514653 0.00651273320248 2.57738662003e+12 +UniRef50_D7CWU8 Type IV pilus assembly protein PilM 9.93384181239e-05 0.0332070981776 1.33660088928e+13 +UniRef50_E8SJI8 0.0553151876156 0.00337179861667 -2.09701835559e+13 +UniRef50_UPI0003C10230 PREDICTED 9.09044766577e-06 5.28224137874e-05 17655131374.9 +UniRef50_UPI000470BFD5 amino acid ABC transporter permease 2.29932477038e-05 4.0599114889e-05 7107704630.95 +UniRef50_P45579 0.00288042369488 0.000588227214469 -9.25387847555e+11 +UniRef50_UPI000464E9C2 hypothetical protein 2.84290080852e-05 4.16968803504e-05 5356402848.56 +UniRef50_Q8GAI8 Succinate semialdehyde dehydrogenase 0.000453639892396 0.00521119836773 1.9206847383e+12 +UniRef50_Q3IV11 Isopropylmalate homocitrate synthase 0.0216534286559 0.00419992717389 -7.04619272683e+12 +UniRef50_A1JS01 DNA directed RNA polymerase subunit alpha 0.00373896874347 0.000825341309138 -1.17626714947e+12 +UniRef50_UPI0003B67DBA hypothetical protein 0.000252524233072 9.10681211951e-05 -65181813654.0 +UniRef50_P06574 RNA polymerase sigma B factor 0.0211631505799 0.00970995263341 -4.62379655755e+12 +UniRef50_UPI00046D6464 translation factor Sua5 3.13026905236e-05 4.5684901782e-05 5806275174.59 +UniRef50_UPI000476E6E7 lysyl tRNA synthetase 1.43452792468e-05 7.34868156425e-06 -2824612342.35 +UniRef50_Q88IQ4 Sensor histidine kinase response regulator 0.00206724935994 0.00139408796776 -2.71763514642e+11 +UniRef50_A8LKQ2 Sulfurtransferase 0.000542881465951 0.000967612096378 1.71468967534e+11 +UniRef50_P44874 Acetate CoA transferase subunit beta 0.00105755590958 0.000821770939953 -95189285645.4 +UniRef50_Q3KA14 LysR family regulatory protein 0.000690365605888 0.00117353917808 1.950631003e+11 +UniRef50_E9LLQ7 IS2 ORFB transposase 0.0084388634471 0.00290687309535 -2.23333239016e+12 +UniRef50_P0AB08 0.00189595411636 0.00180806146039 -35483343779.3 +UniRef50_Q5LS56 Acrylyl CoA reductase AcuI 6.03987495323e-06 7.49737680391e-05 27829458552.8 +UniRef50_UPI000462E49A hypothetical protein 1.59645827957e-05 2.72691258045e-05 4563782734.99 +UniRef50_M3DK36 0.000342413966477 0.000497906368169 62774190669.4 +UniRef50_P56072 L serine dehydratase 0.000197575715726 0.00505622141995 1.96149489308e+12 +UniRef50_UPI00040107BB glycosyl transferase family 39 1.4853430044e-05 3.30138052097e-05 7331566307.26 +UniRef50_Q6A5R4 Sodium 0.000309795425739 0.0060915922918 2.33418234545e+12 +UniRef50_U5NYY0 Lysophospholipase 6.8074712477e-06 2.00212996851e-05 5334584692.09 +UniRef50_B5GT91 WD 40 repeat containing protein 4.3740327724e-05 0.000172628374944 52033686296.9 +UniRef50_UPI00034B152D hypothetical protein 1.85478690037e-05 7.97076189213e-06 -4270107936.65 +UniRef50_Q58321 Magnesium chelatase subunit ChlI homolog 0.000224249102288 0.00499835185524 1.92736386619e+12 +UniRef50_G8VJV8 Allantoate amidohydrolase 0.000233057399309 0.00747163948279 2.92230441449e+12 +UniRef50_Q2NEU9 Serine tRNA ligase 0.00210232037425 0.000360861888495 -7.030481608e+11 +UniRef50_Q8DSX1 0.0118005192322 0.000112434754364 -4.71862313261e+12 +UniRef50_Q92QK5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.0153994559258 0.0118880197218 -1.41760988572e+12 +UniRef50_R9ZCZ8 Sensor histidine kinase 0.000194241405987 0.000397771607208 82167639829.3 +UniRef50_UPI0003466363 hypothetical protein 2.38896737416e-05 5.79119070527e-06 -7306579695.12 +UniRef50_P32672 Fructose like permease IIC component 2 0.002681293934 0.00162091535389 -4.28087845099e+11 +UniRef50_Q88YG1 Uracil DNA glycosylase 0.000326356762696 0.000110336177835 -87210160979.1 +UniRef50_A0A034KNE5 8.64222206077e-05 1.34740399132e-05 -29450075721.2 +UniRef50_A6LZY6 Molybdopterin guanine dinucleotide biosynthesis protein B 0.000196266545327 0.000673726323636 1.92756371594e+11 +UniRef50_UPI0003AB5CEA PREDICTED 7.66873094363e-06 3.77712998854e-05 12152776481.9 +UniRef50_Q81MS2 Arginine decarboxylase 5.52701098489e-05 0.000745339683826 2.7858955512e+11 +UniRef50_A7WWP7 0.0216012122227 0.008990303014 -5.09117880081e+12 +UniRef50_F8HFP7 Transcriptional regulator, LysR family 0.00289515616722 0.00132425560493 -6.34191834114e+11 +UniRef50_R0PPD5 0.000447611844493 0.000686783035329 96556344701.0 +UniRef50_D5BRX6 Inner membrane translocator 0.00947113544009 0.00135590935082 -3.27621635726e+12 +UniRef50_UPI000477A269 hypothetical protein 0.000123418692673 4.16655726982e-05 -33004737757.4 +UniRef50_K7E2E5 0.000123633010252 5.81792965431e-05 -26424467431.7 +UniRef50_X8A453 Putative MAGNESIUM CHELATASE domain protein 6.11602089238e-05 0.000505798388056 1.7950588924e+11 +UniRef50_B5XSS1 50S ribosomal protein L13 0.0205362311082 0.00433760089894 -6.53958579504e+12 +UniRef50_P57576 50S ribosomal protein L6 0.00521325399623 0.013601878598 3.38659069173e+12 +UniRef50_A0A011QAN2 1.45434840898e-05 2.13895666075e-05 2763847523.28 +UniRef50_S5XRJ3 Proline iminopeptidase 0.00825244928637 0.0011871127075 -2.85236307832e+12 +UniRef50_UPI0002557E64 C4 dicarboxylate transport transcriptional regulatory protein DctD, partial 0.000211674386272 0.000340750044459 52109427146.5 +UniRef50_Q7N4V9 3 phenylpropionate cinnamic acid dioxygenase subunit beta 0.00885263164251 0.00561413586235 -1.30742048726e+12 +UniRef50_B2UTG2 UPF0763 protein HPSH_03535 0.000276884588405 0.00308317070629 1.1329321428e+12 +UniRef50_I4KRZ7 Transcriptional regulator, GntR family aminotransferase, classes I and II family protein 0.00241310971238 0.000972480837877 -5.8159955514e+11 +UniRef50_A0A016QN34 3.09411129684e-05 0.0137680408713 5.5458357456e+12 +UniRef50_UPI00041C20AD hypothetical protein 1.61369483793e-05 2.31241246083e-05 2820808785.94 +UniRef50_J8VH78 Coproporphyrinogen III oxidase 0.000491074042262 0.000346389145314 -58411068381.3 +UniRef50_UPI00047EB041 hypothetical protein 6.65757192014e-06 7.50426515997e-06 341820451.014 +UniRef50_UPI0002490BAD competence damage inducible protein A 1.76719284851e-05 7.73404174448e-06 -4012046828.77 +UniRef50_UPI0004296EAD ribosome binding factor A 5.55379054118e-05 9.96046652012e-05 17790291686.9 +UniRef50_P0AAJ6 Formate dehydrogenase O iron sulfur subunit 0.00360230513717 0.000774000796025 -1.14182116972e+12 +UniRef50_B7LQ20 Glyceraldehyde 3 phosphate dehydrogenase A 8.71097073012e-05 0.0033096727597 1.30098824955e+12 +UniRef50_UPI00035D6F39 hypothetical protein 5.39956237266e-05 9.78389571234e-06 -17848817138.3 +UniRef50_A6M0J9 CheA signal transduction histidine kinase 0.000593520920681 0.00227722642946 6.79732575284e+11 +UniRef50_UPI00023759DD acyltransferase family protein 5.051735618e-06 6.96612311266e-06 772861723.771 +UniRef50_R7PX72 0.00291878355791 0.000167793582503 -1.11060841152e+12 +UniRef50_F0TA01 Archaeal glutamate synthase [NADPH] 0.00335978709607 0.000908907900225 -9.8945000703e+11 +UniRef50_Q492F5 4 hydroxy tetrahydrodipicolinate synthase 0.000457785272765 0.000436231104301 -8701682308.31 +UniRef50_J7QKX2 Transposase domain protein 0.00025323968039 6.98625941747e-05 -74031579994.9 +UniRef50_K0S542 0.00075993358359 0.000116450193223 -2.5978214112e+11 +UniRef50_W9UW01 0.000171349736015 0.000668853702205 2.00848456211e+11 +UniRef50_A6T6Q1 Ribosomal RNA large subunit methyltransferase F 0.00147449936296 0.0022172617736 2.99862299895e+11 +UniRef50_K0Q3E4 3.29473244734e-05 0.00152890744609 6.03937458593e+11 +UniRef50_Q8G5F0 Arginine biosynthesis bifunctional protein ArgJ 2.65281971498e-05 0.00155475033706 6.16962031276e+11 +UniRef50_Q9I702 Putative 3 oxopropanoate dehydrogenase 0.000507491012843 0.000337427410476 -68656763190.6 +UniRef50_A4WZZ2 0.0103968082553 0.00689422299157 -1.41403665252e+12 +UniRef50_UPI00047EFBD1 glycine betaine ABC transporter ATPase 1.1710862618e-05 1.71980703415e-05 2215253093.59 +UniRef50_B9ADV3 Putative methyl coenzyme M reductase, alpha subunit 0.000975849308718 0.000207529576475 -3.1018010425e+11 +UniRef50_UPI000463E516 hypothetical protein 1.88009409823e-05 2.67283216012e-05 3200380835.75 +UniRef50_P0AAT4 Miniconductance mechanosensitive channel YbdG 0.00339433753035 0.00068528512706 -1.09367769902e+12 +UniRef50_Q6F1M4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1 7.06306053309e-06 5.23063929398e-06 -739770940.566 +UniRef50_S5D395 Enoyl CoA hydratase carnithine racemase 0.000301185629405 0.00479981320846 1.81615115803e+12 +UniRef50_P33216 Mannitol 2 dehydrogenase 0.00356331307469 0.000248429943479 -1.33825899826e+12 +UniRef50_Q57354 Putative GTP cyclohydrolase 1 type 2 0.00229396527318 0.00114583637709 -4.63513724477e+11 +UniRef50_UPI0004769B76 hypothetical protein 4.95041552103e-06 2.73149234365e-05 9028826288.86 +UniRef50_X0TRL2 Marine sediment metagenome DNA, contig 1.48422532501e-05 2.09258070182e-05 2456005309.78 +UniRef50_F2ECU7 Predicted protein 7.26248281037e-05 0.000156293586922 33778104666.1 +UniRef50_Q98BM2 ABC transporter, periplasmic oligopeptide binding protein 0.0114872341155 0.00324263744093 -3.3284448501e+12 +UniRef50_Q28L99 50S ribosomal protein L25 0.00941637606505 0.000290475447734 -3.68423806661e+12 +UniRef50_A6LVP1 Sterol 3 beta glucosyltransferase 0.000759093165696 0.00133456418674 2.32324713019e+11 +UniRef50_M1MJB2 0.000337510870599 0.00490051855895 1.84214219819e+12 +UniRef50_UPI0004677D66 DNA 3 methyladenine glycosylase 2.49540027311e-05 2.71568465645e-05 889315087.477 +UniRef50_P76114 HTH type transcriptional regulator McbR 0.00307691554737 0.000286715247755 -1.12643810056e+12 +UniRef50_Q62KW5 Valine tRNA ligase 2.08206059521e-06 2.05786926489e-06 -9766336.91119 +UniRef50_F2AE12 0.000107263013971 6.11273463885e-05 -18625535151.4 +UniRef50_UPI00032A5C01 PREDICTED 3.40784356417e-06 3.94420191026e-05 14547438853.9 +UniRef50_S2ZSD0 9.43330332404e-06 2.00887778985e-05 4301745843.1 +UniRef50_O25130 UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase 0.000315938107649 0.00424031087024 1.58431744173e+12 +UniRef50_UPI0003638962 hypothetical protein 4.7301544623e-06 2.6577930683e-05 8820215362.66 +UniRef50_I1F566 2.61112152096e-05 4.2120478864e-05 6463136193.04 +UniRef50_F8JEF7 0.000492326331845 0.000123143204724 -1.49043758805e+11 +UniRef50_UPI0003B4FCE0 MFS transporter 9.84172686036e-06 5.81622566746e-05 19507590845.6 +UniRef50_P56909 NADH quinone oxidoreductase subunit E 1 0.000449124236004 9.58863052789e-05 -1.42606487351e+11 +UniRef50_P0AC17 Dihydroneopterin aldolase 0.000315447901544 0.00571580719732 2.18019131757e+12 +UniRef50_P02918 Penicillin binding protein 1A 0.00448575270956 0.00157263967788 -1.17605947881e+12 +UniRef50_Q08NZ6 1.08318646895e-05 0.000217627086816 83485768835.0 +UniRef50_X1G2K5 Marine sediment metagenome DNA, contig 0.000235674185933 1.53004192369e-05 -88967593905.4 +UniRef50_UPI00023787D7 hypothetical protein 0.000499091345749 0.000125763373362 -1.50717083702e+11 +UniRef50_A9CFS9 Small heat shock protein 0.0186393422623 0.000735228311697 -7.22811051004e+12 +UniRef50_D9W0X8 Predicted protein 4.27135503951e-06 8.93453564839e-05 34345418358.5 +UniRef50_G8VLV0 tRNA processing ribonuclease 0.000116989459351 0.00529547348195 2.09061754707e+12 +UniRef50_UPI00046F8633 cation transporter 6.29543610837e-06 2.361819854e-05 6993411767.84 +UniRef50_P29961 Heme exporter protein C 0.00633667996483 0.00271023970454 -1.46403843451e+12 +UniRef50_E8W5Y1 0.000134656119687 4.89480567786e-05 -34601396752.3 +UniRef50_P77131 0.00344899601103 0.000368343680309 -1.24369714977e+12 +UniRef50_A1B054 Transcriptional regulator, LuxR family 0.00452533864009 0.000881114093073 -1.4712181693e+12 +UniRef50_B8CSC0 Lipoprotein signal peptidase 0.00377962892304 0.00221170440102 -6.32990370137e+11 +UniRef50_B9KM78 OmpA MotB domain protein 0.00637571353268 0.00237011799051 -1.61710807456e+12 +UniRef50_P71481 DNA primase 2.93534722082e-06 7.03535756268e-06 1655224487.79 +UniRef50_W4TGX7 Substrate specific component BL0695 of predicted ECF transporter 5.09848768654e-05 0.00534909430196 2.13891179002e+12 +UniRef50_K6XJA6 5.02975019455e-05 0.000519320411239 1.8935030404e+11 +UniRef50_R5KG87 AAA domain AAA domain multi domain protein 1.87039670551e-05 0.00616536482589 2.48148241672e+12 +UniRef50_UPI00037A76B2 hypothetical protein 5.17462644591e-06 1.30416144481e-05 3175999595.28 +UniRef50_UPI0004632E52 hypothetical protein 4.33786031756e-05 3.12809515996e-05 -4883970396.11 +UniRef50_F3X0N5 4.15154658099e-06 1.54479119641e-05 4560481327.15 +UniRef50_M5AFG5 ABC type transporter ATP binding protein EcsA 0.0154175206791 0.00197886890385 -5.42534863249e+12 +UniRef50_Q6K4U0 0.000194246649494 1.79109969865e-05 -71188866799.3 +UniRef50_W4UAN6 Excinuclease 0.000106068022332 0.000413362203352 1.24058431801e+11 +UniRef50_F9YZU0 Transcriptional regulator, GntR family 0.000155985945804 0.00642747758696 2.53187813539e+12 +UniRef50_P35667 Glutathione synthetase 2.27515903807e-06 2.64124727127e-05 9744529728.58 +UniRef50_D2FKD3 0.000119606505727 1.84393460425e-05 -40842423825.5 +UniRef50_P12282 Molybdopterin synthase adenylyltransferase 0.00332547296515 0.000281964877713 -1.22870156294e+12 +UniRef50_B3QXJ4 Beta lactamase domain protein 5.39586293597e-06 0.000105973540902 40604442821.8 +UniRef50_UPI0004403F5A PREDICTED 2.91580616825e-05 1.6289602209e-05 -5195155003.21 +UniRef50_Q8TJT7 Translation initiation factor 2 subunit gamma 0.00243638092775 0.00106270768987 -5.54568742998e+11 +UniRef50_I5ARC3 Acetolactate synthase 0.000574579168958 0.00103966230042 1.87759767383e+11 +UniRef50_Q55484 Diaminopimelate decarboxylase 4.40923585114e-06 1.0666126503e-05 2525983536.84 +UniRef50_D9QTB8 Oxidoreductase domain protein 0.000685196686045 0.000330117129143 -1.43349974437e+11 +UniRef50_P0CF79 Transposase InsF for insertion sequence IS3A 0.017169727372 0.0135475406738 -1.46232121929e+12 +UniRef50_Q9RR46 Glycine betaine carnitine transport ATP binding protein GbuA 0.000454241519897 0.00714149790813 2.69972746579e+12 +UniRef50_UPI00036AA55A hypothetical protein 2.9896390201e-05 3.37635228468e-05 1561208904.16 +UniRef50_Q3IUW0 TraW 0.0353646108748 0.00991003465552 -1.02763247825e+13 +UniRef50_UPI00021A7398 PREDICTED 9.39645183949e-06 0.000125422156461 46841000751.4 +UniRef50_E5QWQ2 Aspartokinase 0.016771635149 0.00406066863886 -5.13157316123e+12 +UniRef50_Q7F759 P0044F08.26 protein 0.00021365921671 3.1756166524e-05 -73436493561.5 +UniRef50_Q73C41 S layer protein, putative 1.07044019362e-05 0.00153251193883 6.14372377321e+11 +UniRef50_V4QD05 Fimbrial protein 1.80435176483e-05 5.63528409567e-05 15465943927.9 +UniRef50_A5GUA9 Light independent protochlorophyllide reductase subunit B 0.003416250867 0.00187319756362 -6.22949553968e+11 +UniRef50_E6V099 Formiminoglutamate deiminase 0.000123630782379 0.000135673830875 4861926462.66 +UniRef50_P06710 DNA polymerase III subunit tau 0.00361403521213 0.00153686321157 -8.38579826393e+11 +UniRef50_R1CZX5 1.09915370727e-05 0.000427198990526 1.68028056399e+11 +UniRef50_A0A009JRB9 9.516453501e-05 0.000930631852543 3.37288408425e+11 +UniRef50_UPI0002FFBB25 hypothetical protein 3.40387450623e-05 9.43353330814e-06 -9933425925.07 +UniRef50_UPI000423190C O succinylbenzoate synthase 4.74122658651e-05 0.00239671351469 9.48441743317e+11 +UniRef50_B9DX48 0.000317921175202 0.000860944452576 2.19225160721e+11 +UniRef50_B3DW88 1 deoxy D xylulose 5 phosphate synthase 2.03849139264e-06 0.000115345236983 45743323624.8 +UniRef50_X8CKI5 CobQ CobB MinD ParA nucleotide binding domain protein 1.90480569793e-05 3.06313692361e-05 4676325301.3 +UniRef50_Q9ZIS7 Lipopolysaccharide core heptose kinase RfaY 0.00145952977339 0.00430534724948 1.14889143721e+12 +UniRef50_U3SVH6 0.00411971759937 0.00152737945226 -1.04655872155e+12 +UniRef50_P76269 0.00297558337707 0.00341140322832 1.75945822061e+11 +UniRef50_G2P8Z9 Transposase, IS605 OrfB family 5.25746502591e-05 0.000657172083892 2.44083403202e+11 +UniRef50_UPI000471D0D3 hypothetical protein 1.16142176247e-05 0.00128805767409 5.153158871e+11 +UniRef50_Q6A9L6 Periplasmic binding protein 6.85383946735e-06 0.000128119932557 48956609882.7 +UniRef50_UPI0003B48E1B ADP ribose pyrophosphatase 1.62582808545e-05 5.24238006971e-05 14600464161.3 +UniRef50_UPI00036CF9CE hypothetical protein 2.88882160989e-05 5.160244687e-05 9170013697.25 +UniRef50_D3E124 UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU 0.00508425213691 0.000738244923591 -1.75453644352e+12 +UniRef50_K8DBK5 8.66183062595e-06 2.1885100833e-05 5338396450.38 +UniRef50_N4W5E7 C4 dicarboxylate transport protein 0.000678825717177 0.00158704335806 3.66658606708e+11 +UniRef50_U2ACI4 0.000116290430102 3.84411020048e-05 -31428729071.5 +UniRef50_K2FH00 4.7796071396e-05 2.33245156449e-05 -9879467356.48 +UniRef50_B2UY31 Two component sensor kinase 0.000154399678523 0.00133854775684 4.78055110349e+11 +UniRef50_F4REI7 1.60069797117e-05 0.00091835394336 3.64288542267e+11 +UniRef50_C4I344 Permease, major facilitator superfamily 7.83707935342e-05 0.00496204063851 1.97159744579e+12 +UniRef50_O29196 5,10 methylenetetrahydromethanopterin reductase 0.00315080848301 0.00147149504184 -6.77959443694e+11 +UniRef50_E1AHU5 Major ampullate spidroin 2.1339163449e-05 3.8833938913e-05 7062855539.85 +UniRef50_X6L226 0.000219357096152 4.16479026535e-05 -71743382152.6 +UniRef50_UPI000463A149 hypothetical protein 0.000129035681842 4.07845116098e-05 -35628080386.4 +UniRef50_Q9RVN4 0.000394584657338 0.00476556492744 1.764618373e+12 +UniRef50_A6LSZ3 Threonine synthase 0.000426553682165 0.00130053169259 3.52835647725e+11 +UniRef50_B9DZE4 UPF0229 protein CKR_0568 0.000526595575761 0.0011177295849 2.38648053519e+11 +UniRef50_UPI0003801F95 hypothetical protein, partial 8.53641470782e-05 0.00019001100271 42247219780.0 +UniRef50_C6DYM5 Anthranilate phosphoribosyltransferase 0.00113144129872 0.000604337002985 -2.12798472485e+11 +UniRef50_A0A023AZW8 2.3530760305e-06 9.96751789277e-06 3074043619.51 +UniRef50_G7M887 Histidine kinase 0.000173163669973 0.00141383795177 5.00875432348e+11 +UniRef50_K7UKE5 1.72755064213e-06 7.74244214627e-06 2428285511.24 +UniRef50_P37461 Sensor protein ZraS 0.00409880859986 0.000284535068841 -1.53986903087e+12 +UniRef50_I0HXP3 1.3593932535e-05 2.0697344156e-05 2867734440.06 +UniRef50_F2U1N7 9.12400761595e-06 2.04847771348e-05 4586482067.06 +UniRef50_Q28JK1 Flagellar basal body rod protein FlgF 0.00126604214778 0.000883894509959 -1.54277690867e+11 +UniRef50_UPI000471EEAE ABC transporter 6.84982214067e-06 4.65473080569e-06 -886185308.731 +UniRef50_D3DZ81 Cytochrome C type biogenesis protein DsbD 0.00193448622294 0.0016160376759 -1.28561586243e+11 +UniRef50_W7TIW7 0.000759020084819 3.57265052596e-05 -2.92002493878e+11 +UniRef50_Q831X4 Asparagine tRNA ligase 0.0214473088796 0.0109057559629 -4.25575427187e+12 +UniRef50_Q6GFB8 Protein map 0.00094238539189 0.000100905480134 -3.39715766496e+11 +UniRef50_H8LBN6 PTS system, mannose fructose sorbose specific IID component 0.000694806124124 0.00198310413586 5.20101716534e+11 +UniRef50_Q834K3 ATP dependent protease subunit HslV 0.000497806097777 0.00135781391616 3.47195709764e+11 +UniRef50_B4I0B4 GM12486 0.000132451224162 7.03709289089e-06 -50631223798.6 +UniRef50_UPI0003B5BA4B NUDIX hydrolase 1.47884352236e-05 3.349763226e-05 7553132431.26 +UniRef50_I3LMH8 7.40077960891e-05 2.48832882789e-05 -19832166628.5 +UniRef50_A0A021VVK4 2.65841477191e-06 8.26260108954e-06 2262478787.53 +UniRef50_A6M053 Glycoside hydrolase, family 3 domain protein 0.000758181198292 0.00156297277158 3.2490423404e+11 +UniRef50_D8LRQ2 Beta ketoacyl synthase 0.000191774211861 0.000144174144111 -19216731469.2 +UniRef50_P45745 Dimodular nonribosomal peptide synthase 2.21808706353e-06 1.16238890594e-05 3797237687.9 +UniRef50_I7ABN6 Outer membrane protein assembly factor BamA 0.000907638321741 9.4906279115e-05 -3.28109898952e+11 +UniRef50_E3A4Y7 0.000539706274914 0.00064036596488 40637552072.6 +UniRef50_Q02250 Delta aminolevulinic acid dehydratase 2.33444451268e-05 0.00841714073871 3.38867856718e+12 +UniRef50_UPI0000D55548 PREDICTED 2.75573480086e-06 7.08173496038e-06 1746459350.39 +UniRef50_Q0HVJ1 Drug resistance transporter, EmrB QacA subfamily 0.00870291764808 0.00285199219863 -2.36209040287e+12 +UniRef50_B2FNN8 UDP N acetylmuramate L alanine ligase 1.15516502959e-05 5.61291383399e-06 -2397540786.16 +UniRef50_UPI0003B77170 30S ribosomal protein S2 6.5492103241e-06 2.75489572239e-05 8477855519.32 +UniRef50_UPI0003487C99 hypothetical protein 5.61039732462e-06 4.13875595675e-06 -594119679.279 +UniRef50_A6LYV1 Response regulator receiver sensor signal transduction histidine kinase 0.000313140775278 0.00241920271969 8.50243051245e+11 +UniRef50_P63299 0.00184223001507 0.00284095021236 4.03195599321e+11 +UniRef50_Q2P3J8 Imidazole glycerol phosphate synthase subunit HisF 0.00418281453446 0.000425937555561 -1.51669733845e+12 +UniRef50_U5ML33 Lipolytic protein, G D S L family 0.000268354968373 0.000326316801329 23399903236.0 +UniRef50_UPI0002EFC2F2 hypothetical protein 2.61498447778e-05 5.62267873896e-05 12142430818.0 +UniRef50_L8NGT0 Membrane bound lytic murein transglycosylase 0.000166537936259 0.00050629301762 1.37163295609e+11 +UniRef50_UPI00035C696E hypothetical protein 7.81340086341e-06 0.000588962461015 2.34617007084e+11 +UniRef50_G7ZMW5 0.0263759012329 0.00709231792006 -7.78501921955e+12 +UniRef50_UPI0002DDE0E6 hypothetical protein 4.90692127245e-05 1.92973063892e-05 -12019283929.9 +UniRef50_P77219 0.000235928743029 0.000369145881487 53781393553.6 +UniRef50_UPI000479998B formyltetrahydrofolate deformylase 0.000110152351383 1.8331698461e-05 -37069124350.7 +UniRef50_K0RS76 0.000115051310845 0.000244018463567 52065622158.8 +UniRef50_B9E3T3 0.0002244449559 0.000635031079717 1.65758656643e+11 +UniRef50_K9ZYR5 Tape measure domain protein 7.35748824585e-07 0.000113882577338 45678763138.4 +UniRef50_UPI000310DE08 hypothetical protein 2.74073611534e-05 1.72515254352e-05 -4100035505.56 +UniRef50_UPI0003C7F041 urea ABC transporter ATP binding protein 2.27818087306e-05 0.000156173507228 53851865583.5 +UniRef50_UPI00040937D6 hypothetical protein 2.33884331237e-05 8.42865847614e-06 -6039444602.31 +UniRef50_T2E4I0 Permease for cytosine purine, uracil, thiamine, allantoin family protein 8.96641303719e-05 0.000745243612211 2.64665481683e+11 +UniRef50_T1Y8J8 Short chain dehydrogenase reductase family protein 0.00988957441041 0.000470624231391 -3.80254577079e+12 +UniRef50_I3FPW3 0.00072020383981 0.000248165298485 -1.90567751697e+11 +UniRef50_Q9N0B4 Unnamed protein product 1.41053975044e-05 0.000147218287845 53739307309.5 +UniRef50_S5RNF0 0.00495810183326 0.000533327763568 -1.78633559002e+12 +UniRef50_UPI00035FB164 hypothetical protein 0.000101714975048 3.98063155353e-05 -24993285550.0 +UniRef50_I6Y0P6 5.83011243669e-06 2.7429444095e-05 8719915244.06 +UniRef50_K7V3T8 1.5822093503e-05 6.12651644519e-06 -3914223436.35 +UniRef50_A5UNP7 Cobalt ABC transporter, permease component, CbiQ 0.00393749434818 0.00051596932013 -1.38131164066e+12 +UniRef50_K8BCX2 PTS system, mannitol specific IIC component PTS system, mannitol specific IIB component PTS system,mannitol specific IIA component 0.00245833826772 0.00185465262813 -2.43715300758e+11 +UniRef50_K1V9J2 7.7586904216e-05 0.000130125762441 21210581789.7 +UniRef50_UPI0003824623 hypothetical protein 1.7836132229e-05 0.000596438517221 2.33588883071e+11 +UniRef50_L7WUR4 ABC transporter substrate binding protein 0.0165695757995 0.00405478319022 -5.05237535015e+12 +UniRef50_V1D3F0 0.000482486561748 0.000118413399551 -1.46980803259e+11 +UniRef50_A5ITY3 0.00541289166865 0.0010199735881 -1.77347493628e+12 +UniRef50_A5ZJT5 0.00101484736238 0.000668882039958 -1.39670446134e+11 +UniRef50_D8TVV3 Metalloproteinase, extracellular matrix glycoprotein VMP22 4.58572590328e-06 1.0922377988e-05 2558184206.07 +UniRef50_H8FWI4 Putative transposase IS66 family 4.61013001007e-06 1.7371959598e-05 5152107209.89 +UniRef50_UPI00047CB6D2 hypothetical protein, partial 3.20670544773e-05 4.43394205753e-05 4954504792.63 +UniRef50_I0C181 PTS system, galactitol specific IIB component 0.00115534899334 0.000729177049855 -1.72050843303e+11 +UniRef50_I4XYD4 0.000128209819713 0.000196886002487 27725417737.4 +UniRef50_Q165A6 Molybdate ABC transporter, periplasmic molybdate binding protein 0.00184129343403 0.00223202173189 1.57741808621e+11 +UniRef50_P48261 Anthranilate synthase component 2 1.96215309984e-05 1.53756294027e-05 -1714122577.26 +UniRef50_U2YVN6 0.000148288099254 5.64074088393e-05 -37093362223.3 +UniRef50_Q4SV06 Chromosome undetermined SCAF13832, whole genome shotgun sequence 5.28288961889e-05 1.95949180832e-05 -13416964788.0 +UniRef50_Q5VRS0 6.31229118241e-05 6.49564446533e-05 740219703.126 +UniRef50_C9A4P2 Phosphorylase 0.00566072481381 0.00213946924431 -1.42157408407e+12 +UniRef50_UPI0003DF7732 PREDICTED 1.34800324382e-05 2.28127081282e-05 3767715700.86 +UniRef50_D3QCK9 Late competence protein ComGA 0.0220451892958 0.00661979921968 -6.22741926454e+12 +UniRef50_E2ZYI5 0.000217780378186 0.00101794773381 3.23037380623e+11 +UniRef50_L9P8Z2 Putative glycin rich signal peptide protein 3.67660281365e-05 8.00399423533e-06 -11611586035.8 +UniRef50_Q985R5 Mlr7561 protein 2.58092950644e-06 4.04626451887e-06 591573726.201 +UniRef50_W0AF71 9.79926806907e-05 6.33057600639e-05 -14003535513.4 +UniRef50_UPI0004573A07 PREDICTED 7.83291576413e-06 3.93432708724e-05 12721117032.8 +UniRef50_A6LZF1 0.000772284289432 0.00027685941112 -2.00009102921e+11 +UniRef50_B9E8Q8 50S ribosomal protein L10 0.0215147270362 0.00191740295706 -7.91168021694e+12 +UniRef50_Q9I0J3 NADH quinone oxidoreductase subunit J 0.000808691009357 0.000554793754376 -1.02501437506e+11 +UniRef50_UPI000444A579 hypothetical protein STEHIDRAFT_80731 3.300956938e-06 3.64684049008e-05 13390105752.9 +UniRef50_UPI000479C855 hypothetical protein 1.11523881181e-05 2.99177571316e-05 7575809747.72 +UniRef50_UPI000416282A dihydroorotase 4.11615113161e-06 5.7326959942e-05 21481856486.8 +UniRef50_S3MQQ9 BASS family bile acid 0.000438625383761 0.00485945185808 1.78474189732e+12 +UniRef50_O58888 Probable aminomethyltransferase 6.92695761253e-06 6.02185472828e-06 -365401141.233 +UniRef50_F0KLK8 LysR family transcriptional regulatory protein 0.000127529050285 0.00331039012365 1.28496007341e+12 +UniRef50_A1KVW4 Multidrug resistance translocase 0.000263706978085 0.00223145302191 7.94403224849e+11 +UniRef50_A6LZ84 Binding protein dependent transport systems inner membrane component 0.000185042151398 0.000545200071126 1.45400171829e+11 +UniRef50_M1N6G4 Signal peptidase I 0.000311971891609 0.00103837585418 2.93258193669e+11 +UniRef50_Q1M8E0 Methionine import ATP binding protein MetN 2.51665618526e-05 3.43210735272e-05 3695788701.53 +UniRef50_I6U0Z0 0.00457416180151 0.00095912415244 -1.45943506043e+12 +UniRef50_UPI0002F158F5 hypothetical protein 1.38537865438e-05 5.43371233202e-06 -3399287285.23 +UniRef50_O66646 Lipoprotein releasing system ATP binding protein LolD 1.06055089798e-05 2.70610951845e-05 6643322083.59 +UniRef50_D4M6I9 0.0131192652553 0.00299388119984 -4.08774179564e+12 +UniRef50_H0I183 4.21746446555e-05 5.95137274357e-05 7000000492.84 +UniRef50_Q5YVA5 2 isopropylmalate synthase 3.5429807812e-06 1.32324547654e-05 3911759550.64 +UniRef50_Q5XCA7 Dihydroneopterin aldolase 0.000628271925124 0.00169001702024 4.28639523977e+11 +UniRef50_A5UNB1 Multidrug ABC transporter, permease component 0.00211054162806 0.000380102774321 -6.98599400127e+11 +UniRef50_C2MXE0 Phage infection protein 3.07313621275e-06 0.000284324842713 1.13544765261e+11 +UniRef50_A6LWC3 Sigma 54 factor, interaction domain containing protein 0.000202345068466 0.00122489058755 4.12814174097e+11 +UniRef50_Q7W4T6 Holliday junction ATP dependent DNA helicase RuvB 0.0171086000908 0.0335187720211 6.62498778372e+12 +UniRef50_F5LXC8 0.00461330872905 0.000672698455794 -1.59087272404e+12 +UniRef50_F3CNA8 Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family 0.000104667778825 0.00585929007876 2.32321163964e+12 +UniRef50_C5N5T3 ABC 2 type transporter 0.00830264815402 0.00104951229289 -2.92817995312e+12 +UniRef50_UPI000455DA16 glutaredoxin 6.5007381108e-06 4.40060170106e-05 15141341333.4 +UniRef50_A3M105 Acyl CoA synthetase AMP acid ligases II 0.000213301651782 0.0061998970914 2.41686204276e+12 +UniRef50_W7Q7T2 7.63153127241e-05 4.61480144152e-05 -12178908521.7 +UniRef50_UPI00024907AC sugar ABC transporterATPase 4.78284726152e-05 8.02367861166e-05 13083633855.2 +UniRef50_P54575 Riboflavin biosynthesis protein RibC 9.09030453441e-06 0.000209444471765 80885435933.3 +UniRef50_H0C7J0 Single stranded DNA specific exonuclease RecJ 0.00937460457052 0.00117558171318 -3.31004614083e+12 +UniRef50_E3HWF4 0.000220218003144 0.000561954728218 1.37963309494e+11 +UniRef50_Q31C00 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 4.30325382334e-05 1.75931709586e-05 -10270184745.0 +UniRef50_Q796Q6 0.000284677420468 0.00178747455273 6.06697643688e+11 +UniRef50_UPI0004707FBC hypothetical protein 1.06413607531e-05 7.04879028693e-05 24160783452.0 +UniRef50_UPI00037C6C2F hypothetical protein 1.38461124877e-05 1.26658272601e-05 -476495630.111 +UniRef50_V4RDS5 RsbR, positive regulator of sigma B 2.51259726906e-05 0.00131958374197 5.22588486241e+11 +UniRef50_A7ZHD9 Glutathione regulated potassium efflux system ancillary protein KefF 0.00580613384242 2.14249049249e-05 -2.33535798443e+12 +UniRef50_UPI00046D8A91 hypothetical protein, partial 0.00015529352173 0.000467413024309 1.26006473328e+11 +UniRef50_UPI0003B35384 hypothetical protein 6.63946008955e-06 1.95681212462e-06 -1890442445.99 +UniRef50_X1LC15 Marine sediment metagenome DNA, contig 3.30202914128e-05 5.9891760454e-05 10848341801.9 +UniRef50_H0Z2E2 0.000644026757158 0.000316443753626 -1.32249278421e+11 +UniRef50_E3F521 ABC transporter, inner membrane subunit 0.00818930250718 0.00261854293068 -2.24898400194e+12 +UniRef50_A4VS30 Radical SAM domain protein 0.00118326503208 0.000341521022969 -3.39822385839e+11 +UniRef50_U6PNF3 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752 4.33524741202e-06 3.67319262976e-05 13078936818.1 +UniRef50_C1FKU5 Dipeptidase family protein 0.000410514741036 0.000726853743859 1.27709937356e+11 +UniRef50_G5PHU3 Carbamoyl phosphate synthase small chain 0.000203943213215 0.000274113606978 28328649049.7 +UniRef50_P17411 6 phospho beta glucosidase 0.00328557830803 0.0021020483664 -4.77805560982e+11 +UniRef50_UPI00035D7ED2 hypothetical protein 0.00119032649914 8.64696445363e-05 -4.45640558049e+11 +UniRef50_Q0B261 MaoC domain protein dehydratase 0.00747185637879 0.00442097298147 -1.23167906605e+12 +UniRef50_A6LWB4 SEC C motif domain protein 0.000375209077807 0.000762209805397 1.56236942761e+11 +UniRef50_UPI0002D6628B hypothetical protein 2.16320823767e-05 1.30169383631e-05 -3478039358.0 +UniRef50_P50863 Protein mrp homolog SalA 0.0301749264577 0.00877638967263 -8.63885188972e+12 +UniRef50_A9B5M8 6.20970439722e-06 0.000266958747697 1.05267588531e+11 +UniRef50_Q9KDV3 UDP glucose 4 epimerase 0.00689550785016 0.00314836124039 -1.51276906902e+12 +UniRef50_Q2K6Q4 Zinc import ATP binding protein ZnuC 1.68878845071e-05 7.96219583535e-06 -3603410047.3 +UniRef50_B8DU64 Tyrosine tRNA ligase 4.13686848752e-06 7.230428841e-05 27520023931.0 +UniRef50_A3VHM4 7.35022931598e-05 1.39405286718e-05 -24045815228.8 +UniRef50_UPI00037AF9BE hypothetical protein 1.42529060094e-05 4.1711924368e-05 11085542671.4 +UniRef50_P04043 Modification methylase DpnIIA 0.00482911064817 0.000824600185978 -1.61667001446e+12 +UniRef50_C6W622 7.5258739758e-05 3.2736190774e-05 -17166874835.2 +UniRef50_UPI00036DC86C peptide ABC transporter permease 2.29320203334e-05 9.61813969053e-06 -5374976995.23 +UniRef50_F4GXS4 DNA 3 methyladenine glycosidase I 0.000206276496643 0.00162559654236 5.72996919473e+11 +UniRef50_E6YU01 2.29363489161e-05 4.4064272873e-05 8529602170.18 +UniRef50_E8SEA5 General stress protein 13 0.00446045252914 0.00177178771359 -1.08544697967e+12 +UniRef50_P28635 D methionine binding lipoprotein MetQ 0.00464171252436 0.00080895964282 -1.54732937144e+12 +UniRef50_I4WI90 Putative thioesterase 1.54327418272e-06 0.00086781584673 3.49724867897e+11 +UniRef50_X7FDP3 0.000291741751631 5.01911798096e-05 -97516930003.0 +UniRef50_A0A023SGI9 CAAX protease 0.000851275264569 0.000301343576728 -2.22014170802e+11 +UniRef50_K4L3Q5 D serine D alanine glycine transporter 0.000785716709317 0.00028620019828 -2.01660945263e+11 +UniRef50_M8AG73 3.68334091703e-05 1.46074368174e-05 -8972897782.22 +UniRef50_G4UTF3 1.77385028013e-06 1.59680190438e-05 5730360111.94 +UniRef50_A7MGZ5 Membrane bound lytic murein transglycosylase F 0.00269266048106 0.000802903458375 -7.62918099982e+11 +UniRef50_U1Y4T1 8.49502983546e-05 3.4671457531e-05 -20298185031.2 +UniRef50_S9S5F9 Malate synthase G 0.00282575308059 0.00043871990663 -9.63674584519e+11 +UniRef50_I0E6L1 0.000983793532167 0.00147501773872 1.98313240184e+11 +UniRef50_UPI0003A51EC3 hypothetical protein 0.000336236043652 0.000259239243773 -31084552968.1 +UniRef50_B9KP07 0.00494288382512 0.00126620616702 -1.48431988848e+12 +UniRef50_M1XHM6 Universal stress protein family protein 0.00502028774384 0.0020844896286 -1.18521772542e+12 +UniRef50_Q5P082 Holo [acyl carrier protein] synthase 2.09828006362e-05 2.01149911956e-05 -350345320.39 +UniRef50_Q9I472 Cobyrinic acid a,c diamide adenosyltransferase 0.000148660742826 9.65942474268e-05 -21019883120.4 +UniRef50_P0ABE0 Biotin carboxyl carrier protein of acetyl CoA carboxylase 0.00165506342382 0.00042288788334 -4.97444386186e+11 +UniRef50_UPI00037E3D20 50S ribosomal protein L13 0.000633454175379 7.7100665753e-05 -2.24606739061e+11 +UniRef50_X1H5Y2 Marine sediment metagenome DNA, contig 2.141424223e-05 4.1065703565e-05 7933536091.49 +UniRef50_W5X593 Carbohydrate esterase, family 1 1.96546723015e-06 1.25202187362e-05 4261082704.38 +UniRef50_UPI0003B6353B MerR family transcriptional regulator 2.50443556522e-05 2.60511440178e-05 406452817.875 +UniRef50_UPI00036BDAA2 hypothetical protein, partial 4.05244406434e-05 0.000134912913712 38105784854.6 +UniRef50_Q5M0P7 Bifunctional protein FolD 2.00406885489e-05 3.41436444395e-06 -6712251069.13 +UniRef50_Q8P5Q4 Acetylornithine aminotransferase 1.23800413167e-05 3.91710610939e-05 10815863446.8 +UniRef50_P20170 Anthranilate synthase component 1 1.25712203452e-05 1.82844323845e-05 2306493809.26 +UniRef50_A0A058V0Y9 0.000186840445771 0.00028946924178 41432504345.8 +UniRef50_UPI0003B715FE branched chain amino acid aminotransferase 0.000146317082017 2.57000146822e-05 -48694590221.0 +UniRef50_L1KZM9 8.06549814219e-05 0.000809326023078 2.94173441316e+11 +UniRef50_B8D0U9 Phosphoglucosamine mutase 4.84837432011e-06 2.96122257878e-05 9997470724.14 +UniRef50_D1DII4 Ferredoxin 0.000184527919256 0.00282591860403 1.06636183295e+12 +UniRef50_A7FWJ9 Cysteine desulfurase IscS 0.000303476986329 0.00130673092403 4.0502592596e+11 +UniRef50_E1SA68 LPS assembly protein LptD 0.000171141815044 0.00456060117513 1.77207860839e+12 +UniRef50_J3H4T2 Transposase 0.000177811779191 2.93750856466e-05 -59925714706.8 +UniRef50_A0A059IPF2 FlaF protein 2.51534210708e-05 3.98785369308e-05 5944709970.17 +UniRef50_UPI0004784587 hypothetical protein 6.4768102071e-05 6.52550023471e-06 -23513253078.4 +UniRef50_UPI00046D4969 hypothetical protein 3.42969315155e-06 8.42584593889e-06 2017008189.94 +UniRef50_A1B1F4 3 oxoacyl [acyl carrier protein] synthase II 0.00551625001789 0.00210957637674 -1.37531595352e+12 +UniRef50_UPI0003B5466F peroxiredoxin 1.83334141024e-05 0.00019129329372 69826025858.2 +UniRef50_P44978 0.00397289545936 0.000231620945253 -1.51039843195e+12 +UniRef50_A5UK42 0.00267146974361 0.00193076025189 -2.99033511335e+11 +UniRef50_UPI000388D459 PREDICTED 3.47144547592e-05 0.000569742839604 2.15997524499e+11 +UniRef50_A9GRA4 50S ribosomal protein L1 0.00502704756661 0.00926843335913 1.7122994921e+12 +UniRef50_W2BRM3 1.09532163711e-05 4.98773605088e-05 15714154641.4 +UniRef50_C3YW49 3.79652007759e-05 1.51298871289e-05 -9218896340.1 +UniRef50_X1A8H4 Marine sediment metagenome DNA, contig 0.000147598886649 7.96131890244e-05 -27446660409.4 +UniRef50_M2QYI1 0.000138633464709 0.00014893423944 4158549163.63 +UniRef50_Q1WQZ0 Fructose 1,6 bisphosphatase class 3 0.0124838474982 0.00293824537343 -3.85367671548e+12 +UniRef50_A0A011PL09 Fatty acid oxidation complex subunit alpha 5.85157687511e-06 1.15012731205e-05 2280851703.83 +UniRef50_Q6A8B2 Homoserine kinase 0.000264592982837 0.00660338950525 2.55904994188e+12 +UniRef50_W7SMQ0 PE PGRS family protein 1.47296256509e-05 0.000123404235254 43873273484.2 +UniRef50_UPI0003726300 hypothetical protein 4.09551538968e-05 1.84903252954e-05 -9069326980.83 +UniRef50_UPI00040B37CB hypothetical protein 2.21532000554e-05 9.42888038672e-06 -5136963995.22 +UniRef50_C1DFE7 Anti sigma factor, FecR family 2.41785134084e-05 1.0202629155e-05 -5642235976.48 +UniRef50_O34744 Uroporphyrinogen III C methyltransferase 7.00882112811e-05 9.03855550152e-06 -24646495201.7 +UniRef50_P48027 Sensor protein GacS 2.48318411495e-06 5.1181506508e-06 1063768325.2 +UniRef50_UPI000468EA55 hypothetical protein 2.95787550158e-06 1.52562386234e-05 4965000110.16 +UniRef50_UPI00047248BA delta aminolevulinic acid dehydratase 4.52208587525e-05 3.55751592873e-05 -3894087240.14 +UniRef50_Q0AKG2 Two component transcriptional regulator, winged helix family 0.0111900466073 0.00229351544746 -3.59163880194e+12 +UniRef50_G7M0N1 0.000648653022939 0.000630049294243 -7510553568.0 +UniRef50_R5LUL7 Flagellar biosynthesis type III secretory pathway ATPase FliI 0.000539961738701 0.000571989025895 12929808859.2 +UniRef50_G7M7Z8 0.000213671314441 0.00076233948289 2.21504072518e+11 +UniRef50_UPI0003750432 hypothetical protein, partial 2.01743962303e-05 9.09480121407e-06 -4472968469.96 +UniRef50_A0A059G6X4 Beta gamma crystallin domain containing protein 1.2945824406e-05 1.6871395054e-05 1584801042.77 +UniRef50_T1B8D6 Thiamine biosynthesis protein ThiC 8.24307113444e-06 3.10481406714e-05 9206686421.76 +UniRef50_UPI0004788CA9 hypothetical protein 2.18058087671e-05 3.58614882825e-05 5674450302.95 +UniRef50_UPI000476817E Clp protease ClpS 0.000919082434485 0.000417599445546 -2.02454836523e+11 +UniRef50_Q28VD6 DNA polymerase III, delta subunit 0.000724313627751 0.000181361333789 -2.19196503846e+11 +UniRef50_UPI0003B2FE9D osmotically inducible protein OsmC 1.40084936199e-05 0.000234031341406 88825923635.2 +UniRef50_C2PG19 Phosphinothricin N acetyltransferase 0.0237516419707 0.00633065195597 -7.03306744852e+12 +UniRef50_Q82JT9 Ribonuclease 3 2.39662532332e-05 6.7664828567e-05 17641651104.1 +UniRef50_UPI000373DA51 hypothetical protein 2.15149136438e-05 1.97564077591e-05 -709930404.947 +UniRef50_F8G053 Inosine uridine preferring nucleoside hydrolase 0.000279184857886 0.000436950284461 63691838707.8 +UniRef50_Q7VIB6 Bifunctional protein GlmU 9.84746057885e-05 0.00278275756518 1.08367797056e+12 +UniRef50_C5BKK1 ATP synthase subunit a 0.000938268004148 0.00574004909186 1.93853794959e+12 +UniRef50_UPI0004785186 ATPase P 3.58274660104e-06 1.60207591935e-05 5021378315.17 +UniRef50_UPI000378BB5D hypothetical protein 3.81936517707e-06 5.45770653671e-06 661418511.596 +UniRef50_U3T2I1 0.000251371370659 0.00704620782878 2.74315886016e+12 +UniRef50_UPI000378F946 hypothetical protein 0.000132455923941 2.90184227904e-05 -41758988535.5 +UniRef50_A5ITB1 Coproporphyrinogen III oxidase, anaerobic 0.0175518210439 0.00122752642058 -6.59031806105e+12 +UniRef50_UPI00047ACB4C amino acid permease, partial 3.39300477265e-05 8.40792595348e-05 20245852207.0 +UniRef50_Q9RX79 Cytochrome B6 0.000213809857265 0.0453867582823 1.82368736136e+13 +UniRef50_UPI000468517A potassium transporter 5.89251203707e-06 0.00366828276945 1.4785518895e+12 +UniRef50_D2QXC4 Magnesium protoporphyrin chelatase, putative 1.04859875314e-05 0.000114536901378 42006630768.3 +UniRef50_UPI00037FEB36 hypothetical protein 0.00132582249142 0.000204421796698 -4.52723221592e+11 +UniRef50_I3UM32 0.000209370048605 0.000237961180793 11542590916.9 +UniRef50_D2ZQ55 0.000829439943426 0.00074138084986 -35550536679.2 +UniRef50_W8U544 Putative secreted protein 4.6899033242e-05 7.58096882506e-06 -15873185092.0 +UniRef50_UPI00046F47C7 hypothetical protein, partial 0.000298369729944 3.94611317754e-05 -1.04524578247e+11 +UniRef50_Q49Z66 Thymidine kinase 4.76174571811e-05 3.37765706948e-05 -5587735721.3 +UniRef50_Q9KLJ6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.22759252388e-05 3.57946141101e-05 5457660590.31 +UniRef50_G4R5C5 6.25629541099e-05 7.23209396121e-05 3939418491.19 +UniRef50_P93313 NADH ubiquinone oxidoreductase chain 4 2.58551834503e-05 1.06790272302e-05 -6126800498.43 +UniRef50_T1Y5K7 0.00868969142307 0.00443157993189 -1.71905186189e+12 +UniRef50_A3M7V0 Putative non ribosomal peptide synthetase 0.000189689980004 0.00628771955273 2.46184936975e+12 +UniRef50_Q2RYK8 1.03626842736e-05 0.00090287302008 3.60317374898e+11 +UniRef50_U6LIK5 2.51950556389e-06 3.57139865895e-06 424662150.656 +UniRef50_P37313 Dipeptide transport ATP binding protein DppF 0.00345263844561 0.0016243711828 -7.38093929359e+11 +UniRef50_M0RKR1 0.000230252885681 0.000419295225794 76318712514.0 +UniRef50_UPI0004749E59 uroporphyrinogen decarboxylase 9.6497517252e-06 1.04106151408e-05 307169897.722 +UniRef50_A0A031ANR6 Paraquat inducible protein B 0.00112674940017 0.000363792886954 -3.08014906915e+11 +UniRef50_UPI000470B75A cupin, partial 0.000170196623747 3.97804233774e-05 -52650620476.1 +UniRef50_UPI000401DB47 ABC transporter substrate binding protein 8.23616356778e-05 2.82560856798e-05 -21843074484.0 +UniRef50_Q9KET5 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.00149357144433 0.000751343145592 -2.99646672366e+11 +UniRef50_D4HFG5 ABC transporter, solute binding protein 0.000228034547552 0.00361520294968 1.36744144917e+12 +UniRef50_Q9RZB4 First mannosyl transferase 0.000322102715567 0.0674679991308 2.71076223556e+13 +UniRef50_Q0TGS5 UvrC excinuclease ABC subunit C 0.00377190982747 0.000837743031037 -1.18455914199e+12 +UniRef50_UPI000470078C hypothetical protein 5.75435958615e-05 8.08310623353e-05 9401435984.82 +UniRef50_P27848 Pyridoxal phosphate phosphatase YigL 0.00248802542152 0.000224291168501 -9.13897297087e+11 +UniRef50_W6L595 Genomic scaffold, scaffold_6 2.91214739134e-05 0.000466630290518 1.766276781e+11 +UniRef50_UPI00047C3E54 diguanylate cyclase 3.14617089577e-06 1.3035781388e-05 3992557114.88 +UniRef50_P52005 Cytochrome c type protein TorY 0.00273097470716 0.000539693356593 -8.84647171271e+11 +UniRef50_Q1AU26 Elongation factor G 0.023164579351 0.0660409396751 1.73097128149e+13 +UniRef50_Q1AVD3 Ribose import ATP binding protein RbsA 2 0.00013868378267 8.77532589782e-05 -20561277402.2 +UniRef50_UPI00037465BE hypothetical protein 0.000159342110239 3.58039396208e-05 -49873875462.3 +UniRef50_G8AWA2 ATPase like protein 0.0109362639058 0.00276313915005 -3.29959075942e+12 +UniRef50_E3FF38 0.000239593606252 0.000433311397738 78206249607.5 +UniRef50_UPI0003D0828F PREDICTED 9.19716683423e-05 8.2638310842e-05 -3767990956.05 +UniRef50_I0ECM2 Flagellar motor switch protein FliY 0.000185042151398 0.00340679482314 1.30066108893e+12 +UniRef50_P77716 Inner membrane ABC transporter permease protein YcjP 0.0031717284922 0.000297798358178 -1.16024086219e+12 +UniRef50_UPI00047949F3 hypothetical protein 9.64971563377e-06 0.00138616020237 5.5571417518e+11 +UniRef50_C5N0V3 0.0145834745611 0.00204960639252 -5.06007638752e+12 +UniRef50_A7GMX2 Na+ antiporter NhaC 0.0207522519701 0.00704507963392 -5.53375367804e+12 +UniRef50_O32332 Glucitol sorbitol permease IIC component 0.00562360585454 0.0144563315511 3.56587975343e+12 +UniRef50_F5TRU1 5.77395494687e-05 0.000132073324857 30009457302.3 +UniRef50_UPI00046CFD0F acetyl CoA acetyltransferase 7.40805091993e-06 0.000188676223604 73180185723.1 +UniRef50_P33342 Probable fimbrial chaperone YehC 0.00579241303265 0.000293847467856 -2.21983839349e+12 +UniRef50_F0LCD7 3.80821447047e-05 8.57784341234e-05 19255577337.6 +UniRef50_UPI0001BF5AF2 hypothetical protein SMAC_10608, partial 0.00055548909105 0.000215758393734 -1.37153451471e+11 +UniRef50_P0A2T5 Multiple antibiotic resistance protein MarR 0.00101544422367 0.00549727676627 1.80937079572e+12 +UniRef50_D8UG15 9.72730037436e-06 5.99624104221e-06 -1506274437.64 +UniRef50_F2DLE5 Predicted protein 9.84541520235e-05 3.13788701908e-06 -38480345844.4 +UniRef50_O34580 ATP dependent DNA helicase PcrA 0.0209111507909 0.00713806633559 -5.56036320936e+12 +UniRef50_Q03EL2 ATP synthase subunit alpha 6.03108358011e-06 1.96243594282e-05 5487772268.13 +UniRef50_UPI00040FB89F glutathione dependent formaldehyde activating protein 9.5661752435e-05 3.25227362611e-05 -25489995632.3 +UniRef50_K4RNE1 Outer membrane protein 0.000101839745189 0.00577236514584 2.28926068941e+12 +UniRef50_A0A024L3Z4 N acetylneuraminic acid outer membrane channel 0.000743910886573 0.000252286707733 -1.98474713905e+11 +UniRef50_G9A5Y6 2.20574570762e-05 1.56489052165e-05 -2587211027.54 +UniRef50_UPI000476B9E7 cytochrome C 0.000680636781735 0.00013111684124 -2.21847943346e+11 +UniRef50_UPI000344CCAD hypothetical protein 0.00126023458199 0.000116534021132 -4.61725951203e+11 +UniRef50_P0AEY4 Nucleoside triphosphate pyrophosphohydrolase 0.00337665976676 0.000414964925331 -1.19567255157e+12 +UniRef50_T1Y562 Biotin synthesis protein bioC 0.0217796860131 0.00369673225548 -7.30031033474e+12 +UniRef50_G0DU60 Triacylglycerol lipase 0.000293767863174 0.00402379245706 1.5058567011e+12 +UniRef50_A5UJN4 Predicted DNA binding protein 0.00172531580641 0.00138003621827 -1.39393606789e+11 +UniRef50_Q9HYR3 0.000283824051773 0.000540213485111 1.03507560491e+11 +UniRef50_R7EGC5 1.79979459883e-05 2.27367621807e-05 1913118248.69 +UniRef50_E1V915 Transcriptional regulator, XRE family 0.000479729618263 0.000701119545607 89377830428.7 +UniRef50_UPI00046D7AC9 ABC transporter permease 6.67537524654e-06 9.52452148357e-06 1150235298.85 +UniRef50_UPI000477BE6D ABC transporter 1.03496119263e-05 7.29545245869e-06 -1233001655.83 +UniRef50_UPI00046A3121 hypothetical protein 0.000156035826524 0.000141216034798 -5982931779.08 +UniRef50_E4ZBP3 Aminopeptidase N 4.35058765479e-05 0.00372357812775 1.48569032737e+12 +UniRef50_G8TQ95 7.29213836596e-06 0.000734095934398 2.93419611344e+11 +UniRef50_C5N3Z5 0.00736953609273 0.00103850008464 -2.55591692701e+12 +UniRef50_A3PGB1 Tripartite ATP independent periplasmic transporter, DctQ component 0.0087014620406 0.00221733603717 -2.61772123676e+12 +UniRef50_H4ER30 Phage minor structural, N terminal region domain protein 0.01963767 0.00387506580372 -6.36355674295e+12 +UniRef50_Q0S8U9 4.26791291087e-05 2.29873868016e-05 -7949798014.23 +UniRef50_Q8CP32 Truncated transposase 0.00199764260132 0.00277130045931 3.1233517112e+11 +UniRef50_A0A023XH87 2.9029945501e-05 2.07587411369e-05 -3339186700.88 +UniRef50_I6TVV9 0.010020834747 0.00311208730094 -2.78914612384e+12 +UniRef50_Q4KED8 Phenazine biosynthesis protein, PhzF family 0.000372044995957 0.00187619004443 6.07241814003e+11 +UniRef50_A0A017HN56 Short chain dehydrogenase reductase SDR 9.65159254695e-06 3.67139013589e-05 10925386159.2 +UniRef50_UPI0004628D47 PREDICTED 5.89136578577e-06 9.98611069883e-05 37936737661.8 +UniRef50_O86034 D beta hydroxybutyrate dehydrogenase 0.00594044244 0.00399506683634 -7.85372003641e+11 +UniRef50_UPI000382D87E hypothetical protein 0.0213162101903 0.00216524668711 -7.73147897499e+12 +UniRef50_A5UN78 Predicted O linked GlcNAc transferase 0.00227068625061 0.000369726089793 -7.67440944327e+11 +UniRef50_UPI0004076B6B hypothetical protein 2.51103647358e-05 1.58982874163e-05 -3719028658.78 +UniRef50_A3M684 Molybdenum cofactor guanylyltransferase 0.000569178097632 0.00765349706662 2.86002650215e+12 +UniRef50_J0D4G5 1.67530680361e-05 9.41890405508e-05 31261852350.4 +UniRef50_Q5LSI2 ABC transporter, permease protein 0.00751048025744 0.00180202699428 -2.30457263294e+12 +UniRef50_T1JDG9 1.04693207965e-05 5.70835380246e-05 18818731515.8 +UniRef50_UPI000344A1E2 hypothetical protein 4.33324216869e-06 0.000930963900888 3.74092167962e+11 +UniRef50_A6LRT5 0.000180903828528 0.00186567504472 6.80162814444e+11 +UniRef50_A6LRT4 0.00023872307185 0.00207087052896 7.39660411413e+11 +UniRef50_A6LRT6 0.000594103274483 0.00112604128418 2.14749902128e+11 +UniRef50_UPI00047D7735 hypothetical protein 8.98623087721e-06 0.000247719542784 96379567604.0 +UniRef50_G2P517 8.17359689927e-06 0.000534261895618 2.12388302022e+11 +UniRef50_A3PIB1 0.000827470400457 0.00125853190095 1.74024817468e+11 +UniRef50_Q2YSP8 Undecaprenyl diphosphatase 0.0232878381716 0.00239190723502 -8.43594374101e+12 +UniRef50_Q5HQE2 Serine protease HtrA like 0.00855169550037 0.0020474736011 -2.62583419651e+12 +UniRef50_UPI000466061A DEAD DEAH box helicase 1.68590895097e-06 0.000193590040917 77474053003.2 +UniRef50_A5UJH6 Predicted acetylesterase 0.00116217052223 0.000575619595141 -2.36797807055e+11 +UniRef50_Q1LU78 Nucleoside diphosphate kinase 4.61365363831e-05 1.90042768647e-05 -10953626117.8 +UniRef50_B9J455 9.58514673654e-05 0.00148587021482 5.61167625794e+11 +UniRef50_UPI000185E45C hypothetical protein, conserved 6.16976772345e-06 5.05647695225e-06 -449449145.947 +UniRef50_P0AGJ3 tRNA 2 O) methyltransferase 0.00317865269963 0.0243761470242 8.55768858135e+12 +UniRef50_UPI00037ACD1B hypothetical protein 2.74207890925e-05 0.000366668204726 1.36958344725e+11 +UniRef50_W9T2S8 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.00057718263415 0.000425474117023 -61246590037.0 +UniRef50_UPI0002BA6E86 hypothetical protein 1.45438491376e-05 8.56936443916e-05 28724045450.2 +UniRef50_B9MQS8 FMN dependent NADH azoreductase 0.000381298978638 0.000636743185244 1.0312596086e+11 +UniRef50_D3E172 Sua5 YciO YrdC YwlC family translation factor 0.00267049450413 0.00419903976289 6.17092478321e+11 +UniRef50_M9VHD2 Ion channel 0.00045465034883 0.0049631123106 1.82012141902e+12 +UniRef50_UPI0003F7B6B3 hypothetical protein 1.64338598102e-06 9.7364418445e-05 38643755434.9 +UniRef50_Q9RZL0 0.000178903312256 0.023507939258 9.41821809074e+12 +UniRef50_Q05763 Bifunctional dihydrofolate reductase thymidylate synthase 2 2.03542407135e-05 4.05693523518e-05 8161088635.7 +UniRef50_J7PC82 Leucine rich repeat domain protein 2.92290662647e-07 0.00176797023224 7.13633276863e+11 +UniRef50_Q9RZL3 0.000243539347646 0.0658165891974 2.64726448962e+13 +UniRef50_D3A510 9.96980162559e-05 9.61183920315e-06 -36368895157.9 +UniRef50_Q4FSU1 Siroheme synthase 2.91241781211e-06 2.10917332665e-05 7339212734.23 +UniRef50_B1ZRT0 NADH quinone oxidoreductase subunit D 1 1.03869559395e-05 2.70617594523e-05 6731822800.97 +UniRef50_A0A036LTT5 0.0180312841599 0.00932579069039 -3.51451454206e+12 +UniRef50_Q8X5V6 tRNA dihydrouridine synthase A 0.00286694373131 0.0290238222897 1.0559852855e+13 +UniRef50_F6AH52 Acylglycerol lipase 0.000502408375245 0.00054813939725 18462174766.2 +UniRef50_UPI00040794A2 hypothetical protein 2.30105097267e-05 7.95373070604e-06 -6078606458.11 +UniRef50_A8IGC9 Fibrocystin L like protein 6.87544467031e-06 1.61575720401e-05 3747308723.7 +UniRef50_UPI000418CD46 hypothetical protein 0.000119080364194 5.04368595885e-05 -27712225159.8 +UniRef50_E1XQA2 0.00390117840267 0.00323491156172 -2.68980099705e+11 +UniRef50_Q8XQ89 3 dehydroquinate dehydratase 2 9.75401700561e-05 0.000149590784113 21013471627.6 +UniRef50_P42357 Histidine ammonia lyase 4.95592082953e-06 6.12671094668e-06 472662337.504 +UniRef50_A0A029J2G1 Sodium hydrogen exchanger family protein 0.00315056673229 0.000702998674595 -9.88113259931e+11 +UniRef50_Q9RYX3 GGDEF family protein 0.000418832202133 0.0954436430073 3.83626822076e+13 +UniRef50_H9KM06 0.000204342617279 0.000138415881957 -26615432061.5 +UniRef50_B6XVC7 3.99374194147e-05 0.00147920717299 5.81050861346e+11 +UniRef50_Q38XQ8 Ribosome maturation factor RimM 0.0016867464081 0.00126604185097 -1.69843592339e+11 +UniRef50_B0K2T9 Tryptophan synthase beta chain 0.000418006216396 0.00135154173018 3.76879742684e+11 +UniRef50_UPI000474CD31 LamB YcsF family protein 0.000236491868839 5.7468587892e-05 -72273895381.0 +UniRef50_UPI0003781C56 50S ribosomal protein L22 2.27026531461e-05 0.000208406181536 74970793249.6 +UniRef50_Q2NE88 Methionine aminopeptidase 0.00269742172208 0.000300831957759 -9.6753269732e+11 +UniRef50_B5F4F0 Periplasmic trehalase 0.00310821292862 0.000672296066341 -9.83409529364e+11 +UniRef50_UPI00041F5D41 uridine kinase 8.55041207287e-06 0.000570881146976 2.27019818254e+11 +UniRef50_UPI0003637A82 hypothetical protein 1.15495358044e-05 1.24176342888e-05 350462010.919 +UniRef50_UPI000365DDE9 hypothetical protein 0.000675126330168 0.000475988694477 -80394307222.0 +UniRef50_P28997 NAD specific glutamate dehydrogenase 3.16649493771e-06 0.000313230427619 1.25176614536e+11 +UniRef50_A7HY57 Trigger factor 3.14603600418e-05 1.74440692574e-05 -5658548588.89 +UniRef50_B2GCR2 Chorismate synthase 2.40083114425e-05 0.000208794174032 74600320305.1 +UniRef50_P32166 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.00127387212935 0.00131045436144 14768696009.2 +UniRef50_UPI00029ABD4E ATP dependent DNA helicase RecQ 7.28383848074e-05 4.0401960299e-05 -13094982613.7 +UniRef50_P24532 Argininosuccinate synthase 0.00383395831919 0.0176343562006 5.57138997465e+12 +UniRef50_UPI000466FB72 nitrogen regulation protein NR 1.36823686917e-05 1.89384656373e-05 2121950836.5 +UniRef50_UPI0004188538 hypothetical protein 7.64577631509e-06 7.70201057242e-06 22702459.7561 +UniRef50_B9V2B9 0.00811031244356 0.0124382159085 1.74722773814e+12 +UniRef50_Q7U5G1 Acetolactate synthase large subunit 1.34620664341e-05 0.00111638909018 4.45265173924e+11 +UniRef50_UPI0004780BEC alpha beta hydrolase 2.83145589501e-05 3.88523724162e-05 4254244609.78 +UniRef50_UPI0002558939 TadC family type II IV secretion system protein, partial 0.00225179067217 0.00130808588777 -3.80985202022e+11 +UniRef50_W8WRJ5 Ribulose 5 phosphate 3 epimerase 0.000345788692078 0.002292527167 7.85922211493e+11 +UniRef50_Q46185 Diaminopimelate epimerase 0.00057769569789 0.000449983037122 -51559168362.6 +UniRef50_O87278 Probable N methylproline demethylase 0.00456724865054 0.000769943270814 -1.53301877997e+12 +UniRef50_D6K1U6 LuxR family transcriptional regulator 2.95306384962e-05 0.000135930809867 42955054859.4 +UniRef50_A4WWE4 Peptidase U35, phage prohead HK97 1.62269314735e-05 2.16834002913e-05 2202843420.15 +UniRef50_M9RCR3 1.91390076797e-05 5.2100414836e-05 13306924550.9 +UniRef50_Q1QBI6 Aminoglycoside phosphotransferase 0.00142037892693 0.00572302671179 1.73703171017e+12 +UniRef50_G7Z5T4 2.47405459669e-05 3.7429315114e-05 5122611813.39 +UniRef50_Q58409 Methanogen homoaconitase large subunit 0.0022181315827 0.000864675947631 -5.46406648646e+11 +UniRef50_W5SE24 Glycerol 3 phosphate transporter 0.0220409797202 0.00537133991688 -6.72973814808e+12 +UniRef50_F2U516 8.7347317129e-05 4.98178742387e-06 -33251975080.7 +UniRef50_V6QC91 0.000157441484222 6.69576242383e-05 -36529444637.2 +UniRef50_Q9CKP2 FKBP type peptidyl prolyl cis trans isomerase SlyD 7.34486223077e-05 1.93510993134e-05 -21839833884.1 +UniRef50_Q8DTK1 0.00281101294406 0.000707742688884 -8.49116012045e+11 +UniRef50_UPI0004011CB7 hypothetical protein 3.10665549637e-06 1.93916891711e-05 6574467934.31 +UniRef50_K7RYE1 Band 7 stomatin like protein 0.0004787206693 0.00179930522595 5.33136190914e+11 +UniRef50_Q3KK80 Carbonic anhydrase 0.000829159217481 0.00051238147558 -1.27887061705e+11 +UniRef50_Q17YP3 Major facilitator family transporter 9.7373857834e-05 0.003403435026 1.33469746352e+12 +UniRef50_F8DH56 NmrA family protein 0.00741595555069 0.00169988751171 -2.30764681138e+12 +UniRef50_UPI00045602FF hypothetical protein PFL1_03008 0.000103950384811 0.000104627146121 273216845.642 +UniRef50_P0A2M0 Protein sirB1 0.00153443933971 0.000221211015129 -5.30166389757e+11 +UniRef50_UPI00034AAE41 hypothetical protein 2.51644218468e-05 0.000493180644338 1.88943892225e+11 +UniRef50_B5EHD3 TRAP proton dicarboxylate symporter, large membrane protein component 0.00862946285234 0.00301747736325 -2.26562740875e+12 +UniRef50_A6LTN2 Protein translocase subunit SecD 0.000152212092278 0.000457791257273 1.23366058787e+11 +UniRef50_B9DQ89 ATP phosphoribosyltransferase 0.0153208103155 0.00517155505528 -4.09737889391e+12 +UniRef50_B9KLF6 0.00461146873898 0.00183202081075 -1.12209723629e+12 +UniRef50_A7A2K7 0.000407487040984 1.09838255389e-05 -1.60073213717e+11 +UniRef50_B9KLF4 0.00157130282882 0.000188500024587 -5.58254460966e+11 +UniRef50_UPI00029AF728 30S ribosomal protein S3 0.000847326021898 0.00186401251544 4.10448813588e+11 +UniRef50_UPI000479EB25 hypothetical protein 1.2928359979e-05 3.73671725352e-05 9866248526.89 +UniRef50_A1AH06 0.00315038199815 0.000349907286252 -1.13058600688e+12 +UniRef50_K7RXC5 Transporter, small conductance mechanosensitive ion channel family protein 0.000831585096335 0.00608376999007 2.12037149316e+12 +UniRef50_UPI000361E642 hypothetical protein 9.59133516068e-06 1.49187934427e-05 2150760283.72 +UniRef50_V5ERF8 1.9402305346e-05 1.31153117301e-05 -2538136472.83 +UniRef50_Q1QJR5 S adenosylmethionine synthase 0.00744469999927 0.00123424684439 -2.50723614946e+12 +UniRef50_P58894 Carbamoyl phosphate synthase small chain 1.03049203107e-05 0.000686984970524 2.73184040069e+11 +UniRef50_H4VVH3 MpaA family protein 0.00108289701627 0.000413030356916 -2.70433390569e+11 +UniRef50_UPI000475B05E lysyl tRNA synthetase 3.88614468321e-06 3.04271908336e-05 10714946026.2 +UniRef50_R6V5M5 Radical SAM domain protein 0.00507590323745 0.00975137652696 1.88754594148e+12 +UniRef50_UPI000393F4A9 PREDICTED 4.23118060619e-05 4.16382829364e-05 -271909550.823 +UniRef50_Q8XD89 DNA ligase B 0.00312678283065 0.00046494930119 -1.07461486021e+12 +UniRef50_A9CEU9 GGDEF family protein 0.0111451750856 0.00923306002996 -7.71944312252e+11 +UniRef50_Q5LYF9 0.0050603114479 0.0029411924999 -8.55514323821e+11 +UniRef50_X1NF57 Marine sediment metagenome DNA, contig 0.000457588709443 5.98966998918e-05 -1.60553144485e+11 +UniRef50_UPI0004720041 hypothetical protein, partial 9.08733535419e-06 9.55654045788e-05 34912257751.2 +UniRef50_UPI0003D34C26 transposase and inactivated derivatives 0.000220293767402 0.000133435399519 -35065788986.4 +UniRef50_Q9ZB62 Ornithine carbamoyltransferase 0.000282670050232 0.000815075370855 2.14938561283e+11 +UniRef50_D8U4W8 9.43608139066e-06 2.35808508521e-06 -2857473965.29 +UniRef50_B9TE37 5.2904521381e-05 0.000117044549992 25894116636.9 +UniRef50_A5UMT9 Glycosyltransferase, GT2 family 0.00429768274217 0.000782350451192 -1.41918278385e+12 +UniRef50_Q82TB9 3 dehydroquinate synthase 0.00301419263178 0.00938088108676 2.57031025733e+12 +UniRef50_W8RUR9 Iron binding protein SufA for iron sulfur cluster assembly 0.00945856580985 0.000519618836113 -3.60876258651e+12 +UniRef50_U3AME1 0.000164069545703 9.56066153988e-05 -27639325098.4 +UniRef50_A6QAR3 Probable transcriptional regulatory protein SUN_1622 0.000176670509603 0.00183125175383 6.67974752291e+11 +UniRef50_UPI000477BAB8 transcriptional regulator 4.85780548668e-06 4.55575110858e-05 16430970591.9 +UniRef50_A7MQ64 Secretion monitor 0.0020566817819 0.00390723498687 7.47091037688e+11 +UniRef50_B9KRG8 0.0122833043157 0.00124801973752 -4.45507980239e+12 +UniRef50_P43334 Phenylalanine 4 hydroxylase 0.00114711944073 0.000231318568035 -3.69720050447e+11 +UniRef50_Q3J1E7 0.0182143887178 0.00457288746754 -5.50724145479e+12 +UniRef50_Q98P43 Msr9765 protein 2.57137025321e-05 3.07840869605e-05 2046976414.36 +UniRef50_Q094Z8 7.06840819553e-05 9.29807331267e-05 9001431688.57 +UniRef50_Q3J1E8 0.000670093471334 0.00152750019929 3.4614561764e+11 +UniRef50_UPI000469C857 hypothetical protein 0.00117979860099 0.000171246011404 -4.0716505675e+11 +UniRef50_UPI000380F48F hypothetical protein, partial 0.000174984270575 9.29962728159e-06 -66888923676.6 +UniRef50_C9AC53 His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region 0.00536846382667 0.00240200840033 -1.19759445812e+12 +UniRef50_J9SGG8 Transcriptional regulator 5.56140130421e-06 2.18466882508e-05 6574570183.29 +UniRef50_UPI0003B37E29 acetyltransferase 9.92315765809e-05 0.0002189735375 48341299022.1 +UniRef50_A0A016TVG0 5.53460263769e-06 1.65688408392e-05 4454657367.27 +UniRef50_Q88PE8 Sensor histidine kinase 0.00092565746271 0.000286558373967 -2.58012144753e+11 +UniRef50_UPI000465A9FC ArsR family transcriptional regulator 2.29313381634e-05 1.23666290953e-05 -4265102694.35 +UniRef50_UPI0003338868 PREDICTED 2.86127081236e-06 5.3256280835e-06 994891271.424 +UniRef50_UPI000366BC80 hypothetical protein 5.32221151294e-05 1.67993177673e-05 -14704330253.1 +UniRef50_A0A024J4K6 Transposase 2.07638918343e-05 1.59791563227e-05 -1931656441.34 +UniRef50_P39328 Inner membrane ABC transporter permease protein YtfT 0.00162181968124 0.00167711524295 22323496815.2 +UniRef50_Q4FPS9 Chaperone protein DnaK 0.000397749549214 0.0162548128326 6.40169103556e+12 +UniRef50_I0C5G1 0.0113236480702 0.00247062266416 -3.57407499526e+12 +UniRef50_B9KUT5 0.000521199508258 0.000436265580396 -34288868934.4 +UniRef50_Q5HMF5 L threonine dehydratase biosynthetic IlvA 0.00935151266836 0.00766427457168 -6.81158724369e+11 +UniRef50_R9ZNY2 Paraquat inducible protein A 0.00254532604165 0.000633254204115 -7.71926864571e+11 +UniRef50_UPI00037ED0B2 hypothetical protein 0.000100597498084 6.84798350221e-05 -12966294706.1 +UniRef50_A5UJB5 UPF0280 protein Msm_0088 0.00246974999468 0.000759665090296 -6.90382261e+11 +UniRef50_Q2G0L5 Serine aspartate repeat containing protein C 0.00629022714757 0.00281800987835 -1.40177672048e+12 +UniRef50_F9YWF3 0.00150822763527 0.00630456882887 1.93634179758e+12 +UniRef50_Q3IW26 DNA topology modulation kinase FlaR, putative 0.0162208188428 0.00456000613515 -4.70761318436e+12 +UniRef50_UPI0003B577FD ATP dependent DNA helicase PcrA 2.45114974533e-05 1.08418654993e-05 -5518598165.08 +UniRef50_P50351 Transcriptional regulatory protein ChvI 0.00585320222869 0.000890938557008 -2.00332673808e+12 +UniRef50_F9YWF9 0.0003380471542 0.0192141123194 7.62049914256e+12 +UniRef50_Q82Z75 Sensor protein LytS 1.58089448959e-05 0.00145994586201 5.8301579499e+11 +UniRef50_D2ZQR5 0.00266606869964 0.000440156149458 -8.98628211526e+11 +UniRef50_UPI000471299E hypothetical protein 1.1643930785e-05 4.21811596073e-05 12328254009.5 +UniRef50_F7ZF49 SPFH domain band 7 family protein 0.00485607401415 0.0014802184217 -1.36287432908e+12 +UniRef50_D2N911 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.0192996205021 0.0062515864109 -5.26765148e+12 +UniRef50_Q9KPE3 Dephospho CoA kinase 0.00339698939991 0.000295316705201 -1.25218332866e+12 +UniRef50_E6V5R9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 0.00979932843947 0.00211487333471 -3.10230882466e+12 +UniRef50_Q28FD1 Alcohol dehydrogenase [NADP] 6.88976363871e-06 1.29546042773e-05 2448450589.76 +UniRef50_Q9KT69 Methionine tRNA ligase 0.00460355028949 0.00346890030383 -4.58072122932e+11 +UniRef50_Q4FQB2 tRNA methyltransferase 0.00319314059569 0.0027111249858 -1.94595616709e+11 +UniRef50_I0C0P4 AzlD 0.00410522171464 4.65901746469e-05 -1.6385193577e+12 +UniRef50_B5XXI0 Phosphate acyltransferase 0.00249338397329 0.000475467875111 -8.1465749145e+11 +UniRef50_D6XNE0 Molybdenum cofactor synthesis domain containing protein 0.000348034802494 0.00229714957582 7.86881552321e+11 +UniRef50_UPI00045607F1 hypothetical protein PFL1_05669 1.99540548916e-06 0.000296425488266 1.1886503748e+11 +UniRef50_S5R225 Ribosomal protein alanine acetyltransferase 0.00365719755574 0.0009803513018 -1.08067568131e+12 +UniRef50_C5N425 0.0172968129285 0.00333493053524 -5.63658325374e+12 +UniRef50_UPI0004727AC2 hypothetical protein 3.36941772522e-06 1.12033516097e-05 3162655242.34 +UniRef50_UPI00035D95F2 putrescine spermidine ABC transporter substrate binding protein 3.75736058821e-05 0.000250348787787 85899951980.1 +UniRef50_Q8DN13 D alanine transfer from undecaprenol phosphate to the poly chain 0.00010544301365 0.00326941484581 1.27733425494e+12 +UniRef50_A3PNG2 Hemolysin type calcium binding toxin 0.00136638593906 0.000511309036438 -3.45205038562e+11 +UniRef50_UPI0003715F65 hypothetical protein, partial 3.92920096159e-06 1.71192144733e-05 5324970314.34 +UniRef50_UPI000347561C hypothetical protein 2.99927756463e-05 1.47996010276e-05 -6133671034.79 +UniRef50_Q7M7C0 Biopolymer transport exbD transmembrane protein 0.00105837193136 0.00232087601977 5.09688393158e+11 +UniRef50_P16681 Protein PhnB 0.00337951455394 0.000653837723686 -1.10038918419e+12 +UniRef50_Q47098 4 hydroxy 2 oxo heptane 1,7 dioate aldolase 9.54071793269e-05 0.000526289050167 1.73952298773e+11 +UniRef50_E2ZTL2 Type 4 fimbrial biogenesis protein PilV 0.000552487925847 0.000624949772005 29253736500.8 +UniRef50_UPI000474C4AE hypothetical protein, partial 1.36385525906e-05 1.42680508036e-05 254136153.4 +UniRef50_Q47534 0.00318054924359 0.000484734087685 -1.08833365981e+12 +UniRef50_Q47536 0.00185816274961 0.000450368108252 -5.683439723e+11 +UniRef50_UPI00046F326A TetR family transcriptional regulator 1.02255927399e-05 1.3955715416e-05 1505896298.09 +UniRef50_UPI0003B387E8 hypothetical protein, partial 0.000165077851725 0.000104649368071 -24395720392.0 +UniRef50_O21042 Cytochrome c oxidase subunit 1+2 1.1587315678e-05 1.29271343131e-05 540901224.413 +UniRef50_G0DVK6 ROK family transcriptional regulator 0.000505778315157 0.00470921764459 1.69698003929e+12 +UniRef50_UPI0004743039 hypothetical protein 1.5187478588e-05 9.72630698803e-06 -2204741991.02 +UniRef50_B8DVS6 Non canonical purine NTP pyrophosphatase 5.28946283753e-05 2.46078635043e-05 -11419714096.1 +UniRef50_A3D954 Methyltransferase type 11 0.00160465134741 0.000269285749417 -5.39103478687e+11 +UniRef50_UPI00047D5DD0 hypothetical protein 3.1864111702e-06 1.6039892881e-05 5189108296.61 +UniRef50_P16429 Formate hydrogenlyase subunit 3 0.00228402712176 0.00018690930709 -8.46632196312e+11 +UniRef50_K6PYD7 2.46259667349e-05 9.26416400966e-06 -6201748270.68 +UniRef50_U5MSS6 Single stranded DNA specific exonuclease RecJ 0.000922710761013 0.00157849959223 2.64749998596e+11 +UniRef50_UPI00036E07C4 hypothetical protein 2.13819387533e-05 2.60025528257e-05 1865398602.34 +UniRef50_UPI00047BD8AE ATPase 3.97736669779e-06 4.47989765086e-05 16480184818.1 +UniRef50_UPI0003628A16 hypothetical protein 8.60462520709e-05 6.9674726291e-05 -6609385858.56 +UniRef50_A3P6S9 NH dependent NAD(+) synthetase 1.55495211984e-05 9.60409169519e-05 32495364206.2 +UniRef50_UPI00036BA0C6 terminase 3.23904163326e-06 4.23743232403e-05 15799393428.7 +UniRef50_UPI0004663C80 coproporphyrinogen III oxidase 1.64160984753e-05 2.37816051816e-05 2973545442.26 +UniRef50_V8DSA2 0.000159267225617 0.000343679671965 74449567585.9 +UniRef50_A6LTC5 Glutamate tRNA ligase 6.83851429081e-05 0.00134374128923 5.14876926649e+11 +UniRef50_F0Y8N4 Expressed protein 0.000181348197232 8.23925590177e-05 -39949605469.3 +UniRef50_F5TR17 Ribonucleoside diphosphate reductase 0.000140343136026 0.00586917680036 2.31280045098e+12 +UniRef50_P53638 Superoxide dismutase [Fe] 1.06436004832e-05 0.00330258466078 1.3289970027e+12 +UniRef50_F0Y270 0.000410422576975 4.34398476833e-05 -1.481554312e+11 +UniRef50_UPI0003B51F21 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.82616804244e-06 1.14504774895e-05 2674315013.2 +UniRef50_Q2YQ27 Xanthine phosphoribosyltransferase 0.00354965653043 0.00089489910665 -1.07175814952e+12 +UniRef50_I4PWM5 0.000721904867617 0.000155000317024 -2.28866323776e+11 +UniRef50_C4UW54 LemA family protein 8.31961747902e-06 1.04263024823e-05 850494587.756 +UniRef50_UPI000369BDEC hypothetical protein 1.4626627104e-06 2.34451146121e-06 356013162.203 +UniRef50_B0RUI2 4 hydroxythreonine 4 phosphate dehydrogenase 3.03938516822e-05 4.23275864657e-05 4817795175.49 +UniRef50_P19924 Phosphoribulokinase, plasmid 0.02835424052 0.00436178544222 -9.68604853544e+12 +UniRef50_UPI0003615A4F hypothetical protein 7.34926705399e-07 2.65974080837e-05 10441001100.8 +UniRef50_S1T2D6 7.43837002795e-05 4.55553847169e-05 -11638344755.8 +UniRef50_UPI00041AFFF6 50S ribosomal protein L35 0.000244256145839 0.000156023127083 -35620752412.7 +UniRef50_A5UP66 Predicted ATPase, AAA+ superfamily 0.00164729562854 0.000438208255361 -4.88123409723e+11 +UniRef50_P14175 Glycine betaine L proline transport ATP binding protein ProV 0.00334509895935 0.00051588295564 -1.14218921908e+12 +UniRef50_UPI0000165EEC peptide ABC transporter, periplasmic peptide binding protein 0.000112568571708 0.0456290163813 1.83755485304e+13 +UniRef50_O33405 Uptake hydrogenase small subunit 0.0105990600932 0.00240200790297 -3.30925055834e+12 +UniRef50_C6SSY8 0.00326471705183 0.00129441373828 -7.95435626021e+11 +UniRef50_A0A058Z0V6 2.37574931118e-06 7.29348230054e-06 1985349155.17 +UniRef50_G2JE53 MFS family transporter 0.000185399755385 0.00783599923819 3.08864089462e+12 +UniRef50_B2SB72 Bifunctional protein GlmU 0.00234952573296 0.000969054573812 -5.57313147235e+11 +UniRef50_O30808 NADP dependent malic enzyme 0.00830981036743 0.00190049023065 -2.58752119042e+12 +UniRef50_UPI00036C5BBF heme ABC transporter ATP binding protein, partial 9.27082591042e-06 7.58382278931e-06 -681063861.848 +UniRef50_C6VKW6 ATP dependent zinc metalloprotease FtsH 0.00763991423382 0.00955935602461 7.74902205141e+11 +UniRef50_Q14IC9 Polyribonucleotide nucleotidyltransferase 2.92695506178e-06 9.58865962957e-06 2689411882.32 +UniRef50_UPI0003B4D897 rod shape determining protein MreB 4.19202183818e-05 8.94133408228e-06 -13313980288.1 +UniRef50_A7HVB6 0.00747594531106 0.000339444488737 -2.88109295668e+12 +UniRef50_Q8FSA6 0.000287796326475 0.00116624306874 3.54639729606e+11 +UniRef50_Q6F6Q6 Phosphoenolpyruvate carboxylase 4.25736077625e-05 0.00731335699779 2.9353044771e+12 +UniRef50_UPI0002E62F3E cold shock protein 2.16127814766e-05 1.31790288017e-05 -3404809448.64 +UniRef50_UPI00039FBFD3 hypothetical protein 2.21393918709e-06 2.30432015703e-05 8409028827.89 +UniRef50_UPI00029AC084 UDP N acetylglucosamine enolpyruvyl transferase 0.000125856078081 0.000789154014932 2.67781516688e+11 +UniRef50_R6LR95 Hydrogenase Fe only 0.00022406400482 0.00156655383193 5.41979617407e+11 +UniRef50_G0I8I1 0.000769960884537 0.000441447109578 -1.32625042268e+11 +UniRef50_Q7N0W9 Complete genome; segment 13 17 0.000300386728529 0.000799352878588 2.01438757782e+11 +UniRef50_V4RTL0 0.000130005794678 2.37930944484e-05 -42879370459.3 +UniRef50_P0ACA2 0.00228727950268 0.000292392777421 -8.05360251e+11 +UniRef50_Q9Y315 Putative deoxyribose phosphate aldolase 0.00237545092662 0.0013052114341 -4.32068816446e+11 +UniRef50_U6A8S2 Benzoate specific porin 0.000237369152544 0.000200895717825 -14724773175.4 +UniRef50_UPI000419623B hypothetical protein 4.14161368005e-05 1.16804864764e-05 -12004646933.3 +UniRef50_UPI0003B3D40C ABC transporter 8.98336750254e-06 9.91540200125e-06 376273764.479 +UniRef50_A6M3M5 tRNA modification GTPase MnmE 0.000435420687731 0.000823451297226 1.56652718724e+11 +UniRef50_UPI0004652D96 hypothetical protein, partial 5.54788337995e-06 9.28197031349e-06 1507496717.47 +UniRef50_G2S6S7 2.11462479774e-06 1.366286822e-05 4662167582.47 +UniRef50_A5IGK7 L threonine 3 dehydrogenase 0.0109460872938 0.027770994464 6.79242148944e+12 +UniRef50_P68999 tRNA specific adenosine deaminase 0.00451198637887 0.00594760187378 5.79575592278e+11 +UniRef50_Q6A9M5 Dephospho CoA kinase 0.000877634570777 0.00851632893163 3.0838346508e+12 +UniRef50_UPI0003EDD9CA hypothetical protein, partial 8.93374805608e-05 0.00416510288676 1.64543650975e+12 +UniRef50_P0AEZ8 Membrane bound lytic murein transglycosylase D 0.00372892300374 0.00123522022426 -1.00673841325e+12 +UniRef50_U6ALT5 Ferrichrome iron receptor 0.00099965911474 0.00101192458637 4951721411.29 +UniRef50_D9SVV0 Phosphoribosyltransferase 0.00022248683036 0.00031983758685 39301695023.1 +UniRef50_UPI000382B2B6 hypothetical protein 0.000185496800419 3.39692722692e-06 -73515953424.3 +UniRef50_UPI000383F2C7 PREDICTED 2.52607782786e-05 0.000174980778094 60443801196.3 +UniRef50_T0TUM6 5 nucleotidase 0.00554377009227 0.00180402924441 -1.50977927206e+12 +UniRef50_F7X228 Putative prophage terminase large subunit 7.32580664594e-05 8.7857023263e-06 -26028284565.4 +UniRef50_U5MTY5 Alanine racemase 0.000328111682661 0.000517882317184 76612733904.5 +UniRef50_K7EE87 0.000424819712083 0.000465892377811 16581539172.7 +UniRef50_A1RRZ8 Ketol acid reductoisomerase 6.73433450757e-06 2.73775284458e-05 8333910713.33 +UniRef50_Q6LQB9 HTH type transcriptional repressor PurR 0.00282078638807 0.000554679836748 -9.14855023022e+11 +UniRef50_UPI0004107246 iron sulfur protein 7.71236354119e-06 2.50917833137e-05 7016285031.62 +UniRef50_U4V1N1 8.89160692605e-05 1.50280581489e-05 -29829496793.6 +UniRef50_UPI00037A4D1B hypothetical protein 7.31937361767e-06 2.05814448883e-05 5354060915.86 +UniRef50_G8VAV8 Cytochrome oxidase assembly protein 0.000478682584092 0.00484317913154 1.7620008146e+12 +UniRef50_UPI000372EB59 hypothetical protein 6.44125174947e-05 3.34621575416e-05 -12495040116.7 +UniRef50_R6CH89 Peptidase M23 family 6.97585373883e-06 0.00342020799504 1.37796370051e+12 +UniRef50_UPI000422DB1A hypothetical protein 0.000130462057666 8.19383863656e-05 -19589601556.4 +UniRef50_Q2P047 Phosphoribosylglycinamide formyltransferase 2 0.00043485880852 0.00052052954956 34586329456.1 +UniRef50_UPI000372AF58 hypothetical protein 0.000128952266947 8.78366130987e-06 -48513540730.3 +UniRef50_A6LZV7 Transcriptional antiterminator, BglG 0.00024714937072 0.000867556071504 2.50465798353e+11 +UniRef50_P24218 Prophage DLP12 integrase 0.00291944751528 0.0014929594363 -5.75890742461e+11 +UniRef50_UPI000472A485 antitermination protein NusG 5.73752878069e-05 0.000404867467722 1.4028685724e+11 +UniRef50_P77309 0.00309844458265 0.000204135971329 -1.16846790355e+12 +UniRef50_M1R499 Response regulator aspartate phosphatase 1.0925229156e-05 0.000187502669965 71286479703.5 +UniRef50_G0DWP5 Dihydrodipicolinate reductase 0.000119457591412 0.00300350484336 1.16432526685e+12 +UniRef50_C6SR85 0.00500184662863 0.00275230182958 -9.08168840395e+11 +UniRef50_UPI0003F14796 PREDICTED 9.41913294093e-05 0.00055327287459 1.85336853354e+11 +UniRef50_Q92BQ5 DNA primase 3.26262416446e-06 0.000907574641781 3.65081858668e+11 +UniRef50_O33587 AgrC 0.0153384746134 0.00748283513536 -3.17141805682e+12 +UniRef50_UPI0003F68F3A magnesium chelatase 7.20972736131e-06 2.8177696158e-05 8465026309.14 +UniRef50_P76656 0.0039113258808 0.0021408926102 -7.14745637001e+11 +UniRef50_C1CWV4 0.000416507354951 0.0199387771743 7.88137989124e+12 +UniRef50_UPI00036962AD hypothetical protein 8.05784596969e-06 6.21251169283e-05 21827620766.0 +UniRef50_A0A059LMT5 4.02039529891e-06 1.22937273965e-05 3340045693.0 +UniRef50_UPI000469E0E3 hypothetical protein 6.80059847581e-05 4.36527755519e-05 -9831689404.03 +UniRef50_D2NAN7 0.00759354629076 0.00362803130558 -1.60092706186e+12 +UniRef50_UPI0003680D68 hypothetical protein 1.02003607271e-05 8.18170050159e-06 -814957904.785 +UniRef50_Q21YT7 Bifunctional enzyme IspD IspF 1.17530518074e-05 0.000155646174056 58091419219.1 +UniRef50_UPI00047088D8 hypothetical protein 2.3860175601e-05 2.03599305505e-05 -1413091879.72 +UniRef50_Q3B6P1 CTP synthase 7.26820804561e-06 0.000132912896919 50724302731.7 +UniRef50_C0QRW6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 6.73878747951e-06 5.08352412863e-05 17802279526.1 +UniRef50_Q2YZ93 0.0192733458364 0.00681513935148 -5.02953083734e+12 +UniRef50_Q3IV77 TPR repeat containing Spindly family protein 0.0109752312306 0.00175911824595 -3.72065790633e+12 +UniRef50_UPI00035EB53D hypothetical protein 9.17286307682e-05 9.66525522645e-06 -33129991737.1 +UniRef50_UPI0004635DEB UDP diphosphatase 4.0409431938e-05 5.50096028163e-05 5894268147.81 +UniRef50_P00393 NADH dehydrogenase 0.00197523170256 0.000738458307458 -4.99300596518e+11 +UniRef50_A6LX04 0.000200066307735 0.0009544978323 3.04573264383e+11 +UniRef50_V8CG00 0.000136548482576 0.000151925663702 6207956719.8 +UniRef50_Q9RZS8 0.000130282873893 0.0434122738625 1.74734708919e+13 +UniRef50_A4WP65 0.00443508490918 0.00110447434579 -1.34460835563e+12 +UniRef50_UPI00046AD605 PTS fructose transporter subunit IIA 2.33014511563e-06 0.000281050986838 1.12523024093e+11 +UniRef50_M4RDX0 Lipopolysaccharide core biosynthesis glycosyl transferase LpsC 0.000330162672461 0.00418152164944 1.5548408805e+12 +UniRef50_Q9RZS7 0.000174507927611 0.0356400610041 1.43178789883e+13 +UniRef50_UPI000315D670 hypothetical protein 8.59155326291e-06 6.82287940224e-06 -714035341.621 +UniRef50_P33020 0.00214155286556 0.000203901062277 -7.82253810646e+11 +UniRef50_UPI0003C112FE PREDICTED 4.49197616324e-06 1.23034421407e-05 3153584672.57 +UniRef50_P0AE93 Protein CreA 0.0042472500127 1.82446284886e-05 -1.70730136934e+12 +UniRef50_UPI000369C4E2 hypothetical protein 4.70876318065e-06 8.34577874118e-05 31791947441.3 +UniRef50_D4HBB1 Cell envelope like function transcriptional attenuator common domain protein 0.00031016839256 0.00475544485178 1.79461265626e+12 +UniRef50_UPI0002DA7A52 hypothetical protein 3.58502809616e-06 1.16890998607e-05 3271713219.49 +UniRef50_X1BI40 Marine sediment metagenome DNA, contig 0.000136205069987 1.27060666537e-05 -49858063148.7 +UniRef50_Q6CZ33 sn glycerol 3 phosphate transport system permease protein UgpE 0.00350067160729 0.000434072454899 -1.23802370922e+12 +UniRef50_R4K219 0.000715782943978 0.000574102774054 -57198023209.5 +UniRef50_UPI0004794A3D hypothetical protein 1.48203848752e-05 3.69120686786e-05 8918683846.88 +UniRef50_B8GTL2 Chromosome partition protein Smc 0.000180357792912 0.000271041392853 36610082109.1 +UniRef50_UPI00036F03E5 hypothetical protein 2.20197792371e-05 4.6876341531e-05 10034899222.4 +UniRef50_UPI00038F73EB Bifunctional protein PyrR 1.88358630869e-05 3.98923648756e-05 8500768164.43 +UniRef50_U5MN80 0.000225140748821 0.00175333049149 6.16948952113e+11 +UniRef50_UPI0003F56C41 hypothetical protein 1.16314649369e-05 1.15437588937e-05 -35408005.914 +UniRef50_N0C6R0 Competence protein ComYD 1.73469279858e-05 6.06222838581e-05 17470792214.0 +UniRef50_P13989 Transposon Tn7 transposition protein TnsB 5.67648103501e-05 0.00971951098215 3.90096920479e+12 +UniRef50_I4F3M5 Putative Diguanylate cyclase 6.27399650474e-06 0.000147279368559 56925599028.7 +UniRef50_G1Y149 0.00208627124413 0.000490884585046 -6.44077171866e+11 +UniRef50_P0A9V0 Probable acyl CoA dehydrogenase YdiO 0.00316922740278 0.000586319777141 -1.04275150431e+12 +UniRef50_P21345 Proton glutamate symport protein 0.0232896308072 0.0736227739158 2.03201075301e+13 +UniRef50_Q3IMV2 Dihydroxy acid dehydratase 1.74854197019e-05 2.42925144866e-05 2748107697.03 +UniRef50_UPI0003A1A703 membrane protein 8.40978995082e-05 2.20730082125e-05 -25040209747.1 +UniRef50_UPI0004659468 hypothetical protein, partial 4.0013669848e-05 5.90906851569e-05 7701625181.51 +UniRef50_T1Y8Z5 0.012309756643 0.00339866817172 -3.59751576721e+12 +UniRef50_S5CR26 Xaa Pro aminopeptidase 0.000123495961457 0.00332785405822 1.29363868556e+12 +UniRef50_UPI000378FCC9 MULTISPECIES 4.67670755367e-06 4.18400601838e-06 -198909655.924 +UniRef50_A8LIR2 Chorismate mutase related enzyme 0.000358372774223 0.0015016103654 4.61539044662e+11 +UniRef50_P39404 Transcriptional activator protein BglJ 0.00386728885526 0.000262115418808 -1.45545275675e+12 +UniRef50_I4KME6 DNA binding response regulator 0.000510297907168 0.000253128604458 -1.03822403326e+11 +UniRef50_A0A023WST9 MerR family transcriptional regulator 0.00166613139288 0.000404798746769 -5.09215467527e+11 +UniRef50_UPI00036CE626 hypothetical protein 2.80265683323e-05 4.86409382375e-05 8322274097.49 +UniRef50_UPI0003763AA0 hypothetical protein 3.60819457361e-06 0.000135432000284 53218888025.1 +UniRef50_A4WR49 Cellulose synthase 0.00367764845393 0.000968748435805 -1.09361617926e+12 +UniRef50_G0EC83 Threonine synthase 0.00402773603257 0.000994959960484 -1.22436891665e+12 +UniRef50_B7UVS6 Exoenzyme S 0.00120784726092 0.000439472771075 -3.10202210566e+11 +UniRef50_Q0W1R5 Predicted NADPH 0.00563245679478 0.000585311276542 -2.03759458115e+12 +UniRef50_F9YX94 DNA processing uptake protein 0.000105149300518 0.00754238016232 3.00250136399e+12 +UniRef50_UPI0003F687BA deoxyguanosinetriphosphate triphosphohydrolase 0.000461311254254 6.36745539692e-05 -1.60530815456e+11 +UniRef50_X1R4V0 Marine sediment metagenome DNA, contig 1.90561041237e-05 0.000694519048296 2.72692679425e+11 +UniRef50_A7FAV9 0.000665216537137 0.00750027595768 2.75939736368e+12 +UniRef50_P0AD71 D alanyl D alanine carboxypeptidase endopeptidase AmpH 0.00306090547773 0.00145317541859 -6.49060353941e+11 +UniRef50_A7FAV7 5.78966240613e-05 0.0101207507572 4.06249769864e+12 +UniRef50_A7FAV5 0.000228731728267 0.0136905188742 5.4346886655e+12 +UniRef50_Q46577 UvrABC system protein A 0.000275514293858 0.0422169047044 1.69322539875e+13 +UniRef50_Q9RW78 Chloride peroxidase, putative 0.000138611746215 0.0326111270417 1.31095529074e+13 +UniRef50_Q8EBC3 Sulfate thiosulfate import ATP binding protein CysA 1 5.74540070098e-05 3.29083557236e-05 -9909380633.25 +UniRef50_Q9R3J0 Transposase, putative 0.00225014042765 1.10930408506 4.46931262527e+14 +UniRef50_M5B2K9 Probable transposase 0.000514747553423 0.000197147640548 -1.28218982217e+11 +UniRef50_A7ZTZ7 Putative ECA polymerase 0.00343875001613 0.000757370639339 -1.08250575864e+12 +UniRef50_D3DZE6 Transcriptional regulator LysR family 0.00383295084273 0.000206515178457 -1.46403657904e+12 +UniRef50_UPI0004644785 transcriptional regulator 1.89114291646e-05 0.000157283344486 55862440229.4 +UniRef50_B2SBI3 Tetracycline resistance protein 3.58781836501e-05 3.22524519289e-05 -1463752388.58 +UniRef50_U3SUM1 0.0045423079898 0.00185975426552 -1.08297985713e+12 +UniRef50_A3SI31 2.35324190275e-05 2.3377099442e-05 -62704422.652 +UniRef50_Q1R311 0.00063427917855 0.000827613459542 78051421714.9 +UniRef50_UPI0003640CCC hypothetical protein 0.000312846685026 1.86820904028e-05 -1.18757856655e+11 +UniRef50_B7UUY0 0.000398636542623 0.000187106677001 -85397202515.0 +UniRef50_UPI000289D6F0 cation 0.000200154635176 0.000732952117496 2.15096881773e+11 +UniRef50_H2JHD1 Integral membrane protein, TerC family 0.000617822663454 0.00354271710219 1.18081577741e+12 +UniRef50_R1D0M5 1.52177945557e-05 6.08255754423e-05 18412420814.3 +UniRef50_R1DLZ1 3.85699246329e-06 4.20937970055e-06 142263051.96 +UniRef50_W7WJF0 Neu5Ac permease 5.49370437122e-06 9.57142308025e-06 1646225082.07 +UniRef50_F2JL25 DNA topoisomerase 0.000701403615934 0.0010535479445 1.42164986739e+11 +UniRef50_D8JXK3 Oxygen independent coproporphyrinogen III oxidase 0.0041952557901 0.00104652153922 -1.27118265639e+12 +UniRef50_UPI0003B32353 potassium transporter 4.59412832238e-06 4.2563211827e-06 -136376887.649 +UniRef50_Q9X2I3 Septum site determining protein MinD 0.00024406421693 0.00182168003647 6.36902865871e+11 +UniRef50_B4SI67 2 isopropylmalate synthase 3.47531659889e-06 5.71049479482e-05 21650940285.3 +UniRef50_P76072 Side tail fiber protein homolog from lambdoid prophage Rac 0.0037001223461 0.00115155349363 -1.0288885202e+12 +UniRef50_A4WZC5 Phosphoribosylanthranilate isomerase like protein 0.00300491985318 0.00140134220231 -6.47383975767e+11 +UniRef50_Q9RWI2 8.32357271643e-05 0.0294678301364 1.18629213525e+13 +UniRef50_Q9RWI3 0.000357401016629 0.0367800289279 1.47042618437e+13 +UniRef50_Q9RWI0 0.000280859412564 0.0335937732232 1.34488321008e+13 +UniRef50_UPI00046EF909 transketolase, partial 1.31139220386e-05 4.91095815735e-06 -3311637180.55 +UniRef50_Q5FKZ1 Thymidine kinase 0.00574917178408 0.00909928354571 1.35248122866e+12 +UniRef50_A3KBE5 0.000272348508473 0.000163814346524 -43816573042.7 +UniRef50_F7YHP7 Short chain dehydrogenase reductase SDR 1.03944301847e-05 3.49966371753e-05 9932212865.13 +UniRef50_Q0TR80 Amidohydrolase family protein 0.000198100583414 0.00155126679116 5.46289803285e+11 +UniRef50_UPI00036450DC hypothetical protein 3.57960349679e-05 3.74447550096e-05 665608512.904 +UniRef50_D4MHB3 Predicted flavoprotein 0.00444910873957 0.008714382788 1.72194347415e+12 +UniRef50_F2F126 Lactoylglutathione lyase 0.0102058915229 0.0039363660062 -2.53108438682e+12 +UniRef50_A1B1F7 7.4805173163e-05 4.32164501699e-05 -12752755109.5 +UniRef50_D0DBX3 Integrase, catalytic region 0.00059234538228 0.000279921047585 -1.26129537794e+11 +UniRef50_UPI0003B7524F multidrug ABC transporter ATPase 9.53029424938e-06 4.98265887808e-05 16268108593.5 +UniRef50_UPI000376921C hypothetical protein 1.23151919719e-05 1.49952623487e-05 1081977299.28 +UniRef50_Q199U5 Thiamine biosynthesis protein 8.53600732078e-06 9.3605362652e-05 34343542665.6 +UniRef50_UPI0003B774DC MFS transporter 1.65770614302e-05 5.58930023346e-06 -4435894030.1 +UniRef50_UPI00036C63C0 hypothetical protein 8.63285406157e-06 1.20939303362e-05 1397278964.25 +UniRef50_A4ILI2 UDP N acetylenolpyruvoylglucosamine reductase 0.000160094497565 0.00273424475628 1.03921604782e+12 +UniRef50_UPI000475759F flagellar hook capping protein 7.80949697504e-06 1.14013002414e-05 1450055055.01 +UniRef50_UPI0004761474 3 hydroxymyristoyl ACP dehydratase 1.15898810917e-05 1.91958617167e-05 3070627714.19 +UniRef50_Q2T2J9 Cobalamin synthesis protein P47K family protein 0.000505279854973 0.0064026996263 2.38086073116e+12 +UniRef50_UPI00035A08C7 PREDICTED 2.86082580168e-06 8.19548615118e-06 2153667846.74 +UniRef50_X6L0P1 0.00059664972334 0.000148272738939 -1.81015290807e+11 +UniRef50_A6LRQ4 Spore coat protein CotS 0.000608482858113 0.00179614722228 4.79474678096e+11 +UniRef50_W6LXS6 7.15381411777e-06 2.84406857365e-06 -1739897162.69 +UniRef50_U7RK39 7.76296065333e-06 1.35249780049e-05 2326197112.73 +UniRef50_D1Q2W4 Transcriptional activator of maltose regulon,MalT 0.00394144239854 0.000861924851744 -1.24323902357e+12 +UniRef50_W4KGM2 0.000184664054554 0.000273154731383 35724772138.6 +UniRef50_UPI0004636D05 hypothetical protein 1.05312871977e-05 1.13763469779e-05 341161003.316 +UniRef50_O58058 N5 carboxyaminoimidazole ribonucleotide mutase 7.87077991978e-05 7.91198913975e-05 166366677.959 +UniRef50_UPI0004178882 hypothetical protein 9.57880683481e-06 6.37973423849e-05 21888688137.8 +UniRef50_UPI0004632840 hypothetical protein 1.72722188731e-05 8.76610557044e-06 -3434022322.03 +UniRef50_A0A059IKA9 9.58964535559e-05 2.64905296133e-05 -28020023202.1 +UniRef50_Q6LMJ9 Glutamyl Q tRNA synthetase 0.00296523371137 0.00104414108313 -7.75568668478e+11 +UniRef50_R8ZHF6 0.000121248176295 0.000222880532219 41030229255.8 +UniRef50_Q5HRC6 Iron compound ABC transporter, permease protein 0.0185653727979 0.00315738116444 -6.22039529976e+12 +UniRef50_H7G193 5.32344121847e-06 4.91475298293e-06 -164992455.856 +UniRef50_Q8R8R7 Galactokinase 0.00736064165285 0.00800125538871 2.58623626381e+11 +UniRef50_Q839C1 L lactate dehydrogenase 1 0.00489049421416 0.00698306790767 8.44797678837e+11 +UniRef50_Q466U8 ABC transporter ATP binding protein 0.000559948635213 0.00125794035482 2.81787822527e+11 +UniRef50_P51008 Oxygen independent coproporphyrinogen III oxidase 0.00478305266746 0.000540253459819 -1.71287010513e+12 +UniRef50_Q57493 0.000373347090645 0.00072254144002 1.40974043939e+11 +UniRef50_UPI0003703812 hypothetical protein 3.79256122197e-06 2.5919695989e-05 8932995835.92 +UniRef50_UPI00037C1F67 hypothetical protein 6.31642291e-06 8.02695217963e-06 690561656.704 +UniRef50_E8TBW5 Sugar ABC transporter 0.00286840768933 0.0015909405566 -5.15729157768e+11 +UniRef50_E8S544 Diguanylate cyclase phosphodiesterase 4.74286289427e-06 3.17034683152e-06 -634844031.474 +UniRef50_UPI000377E8D6 MULTISPECIES 6.57616777255e-06 1.0335564003e-05 1517714391.21 +UniRef50_B6A550 0.00990058944227 0.00222624966511 -3.09822514278e+12 +UniRef50_A4WT86 Autoinducer binding domain protein 0.0153664146047 0.0012108093431 -5.71479155292e+12 +UniRef50_UPI0003F8AF13 hypothetical protein 3.02939280418e-06 0.000254222971079 1.01409930041e+11 +UniRef50_Q00751 Multiple sugar binding transport system permease protein MsmG 0.0016372638374 0.00638458090591 1.91655015669e+12 +UniRef50_A4WZL0 Two component transcriptional regulator, winged helix family 8.50193668641e-05 0.000321693885011 95548407298.9 +UniRef50_Q4L8E5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00883954889827 0.00235586399151 -2.61754316062e+12 +UniRef50_A3PRQ8 ABC cobalt transporter, periplasmic binding protein CbiN 0.00236585238954 0.000241732637264 -8.57533209876e+11 +UniRef50_A9AH86 Glutamine amidotransferase class II 0.000196949211577 0.00802327972552 3.15958566835e+12 +UniRef50_UPI0003B6246C sodium hydrogen exchanger 1.68130853073e-05 1.75668214377e-05 304292525.225 +UniRef50_UPI000262878B cold shock DNA binding protein family 1.01615152445e-05 2.06919761488e-05 4251276290.35 +UniRef50_Q8EHK0 Purine nucleoside phosphorylase DeoD type 2 0.0208451723747 0.00816833999165 -5.11779279524e+12 +UniRef50_Q6F7Y6 1.16461775817e-05 0.0164693540329 6.64417861997e+12 +UniRef50_B0V7N3 0.000312390478933 0.00606622410119 2.32289324078e+12 +UniRef50_V7CVS8 5.07163059765e-05 6.65576911002e-05 6395361570.09 +UniRef50_UPI000470AFA8 oligo 1,6 glucosidase 1.68383857092e-05 1.39250971926e-05 -1176130324.22 +UniRef50_UPI000255E45E metallophosphoesterase, partial 6.23475967867e-05 0.000154727743981 37294999054.2 +UniRef50_UPI00047A285C heme response regulator HssR 1.12155372018e-05 1.83258493121e-05 2870520252.27 +UniRef50_Q9XAS7 BPS protein 0.000255093362129 6.35317400864e-05 -77335777544.2 +UniRef50_B8HEC3 Transketolase central region 0.000207409883985 0.00602557341406 2.34886401398e+12 +UniRef50_UPI0003A4A480 tRNA dihydrouridine synthase 1.18172314959e-05 5.74299994664e-05 18414434161.3 +UniRef50_UPI00016C3AC8 Na+ H+ antiporter 2.08598947693e-05 0.00804844997972 3.2408366269e+12 +UniRef50_F8K072 4.809387654e-06 8.31866791814e-05 31641874387.1 +UniRef50_Q4L5P2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0186096750468 0.00269309078164 -6.42572038631e+12 +UniRef50_UPI0003B7B948 methyltransferase, partial 2.58986106652e-05 3.34032812305e-05 3029727599.88 +UniRef50_Q6GK24 Protein EssC 0.00965064559135 0.00181453518338 -3.16353393159e+12 +UniRef50_U5MYI0 Chitinase A1 0.000385318623933 0.00201076581697 6.5621297831e+11 +UniRef50_A1AZK8 Membrane protein involved in aromatic hydrocarbon degradation 7.68579075474e-06 9.81972555499e-06 861495665.186 +UniRef50_R7ZYU2 1.41253765657e-05 0.000388418729187 1.51106819549e+11 +UniRef50_G8S2D3 0.000818440704699 2.30598079434e-05 -3.21105028442e+11 +UniRef50_A0A021VU42 0.000185742547003 2.02938913328e-05 -66793652577.3 +UniRef50_J9NU01 0.000307239156151 0.000534107586109 91589569162.7 +UniRef50_UPI0004720155 hypothetical protein, partial 3.09295833233e-05 1.94188072359e-05 -4647041559.59 +UniRef50_Q492J8 Methionine tRNA ligase 0.000248927160357 7.04664850075e-06 -97650130843.9 +UniRef50_I6TCA9 Tagatose 6 phosphate kinase 0.00559327991277 0.00717113682593 6.37000198324e+11 +UniRef50_Q2T0M6 Pyridoxine pyridoxamine 5 phosphate oxidase 9.30060372278e-06 0.000785273573395 3.13269810116e+11 +UniRef50_O34994 Transcriptional repressor CcpN 0.00871711821258 0.00194366606991 -2.7345257496e+12 +UniRef50_Q9R3J8 Transposase, putative 0.000248891860782 0.157984325125 6.36797300401e+13 +UniRef50_UPI000252B349 PREDICTED 1.58747674524e-05 2.88613889653e-05 5242858468.52 +UniRef50_A6V0F0 0.000332633415052 0.000437506229925 42338442298.4 +UniRef50_X0YAI8 Marine sediment metagenome DNA, contig 2.34621924666e-05 4.42238394701e-05 8381731669.37 +UniRef50_UPI00046F5931 potassium transporter 7.54345615467e-05 0.000106541544695 12558270822.6 +UniRef50_P64309 Non canonical purine NTP pyrophosphatase 0.0118334637817 0.0041931517565 -3.08448772174e+12 +UniRef50_UPI0003B4DFFC 50S ribosomal protein L18 1.77248733072e-05 0.000137609540412 48398911260.6 +UniRef50_D8JIL7 Chromosome partitioning protein parA 0.000293382892887 0.00654576821856 2.52416468137e+12 +UniRef50_R4XZT5 FIG002261 0.000273911749374 0.000964093717331 2.78634929949e+11 +UniRef50_M1G0P3 Sulfatase family protein 0.00154905739093 0.000430519970655 -4.51567282561e+11 +UniRef50_B5FIB5 9.58916007924e-05 0.000426227630195 1.33360708749e+11 +UniRef50_O31677 7 carboxy 7 deazaguanine synthase 0.0240009856615 0.00503520628472 -7.6567178707e+12 +UniRef50_UPI00035C09C2 hypothetical protein 0.000150267347738 0.000125174737899 -10130194513.0 +UniRef50_R5WTT7 Acriflavine resistance protein B 0.00288474627455 0.000475600700207 -9.72601631902e+11 +UniRef50_X1S582 Marine sediment metagenome DNA, contig 0.000275130815381 1.56072237265e-05 -1.04772858664e+11 +UniRef50_Q3Y3U4 Mobilization protein MobC 0.100397045076 0.016396133989 -3.39121986129e+13 +UniRef50_UPI000346E2F6 hypothetical protein 0.000112084951252 4.37362711233e-05 -27593200900.6 +UniRef50_A6TED5 Modulator protein MzrA 0.00669444310005 0.000590633410385 -2.46418287389e+12 +UniRef50_D5WQ35 Restriction endonuclease 0.000684088317397 0.0444201299269 1.76567766993e+13 +UniRef50_P21866 KDP operon transcriptional regulatory protein KdpE 0.0026665865741 0.000881961527785 -7.20475031011e+11 +UniRef50_B4SKP9 Transcriptional regulator, LysR family 0.000125828662949 0.000600030371903 1.91441049014e+11 +UniRef50_UPI00036C1571 hypothetical protein 1.40385424181e-05 2.43478199934e-06 -4684580475.22 +UniRef50_UPI00047D9616 helicase Cas3 1.38963203627e-05 5.39796164015e-06 -3430891702.88 +UniRef50_A0A037ZGX3 6.45298322694e-05 0.000772912688482 2.85982851888e+11 +UniRef50_B9E8E5 ATP synthase epsilon chain 0.0270073681465 0.00245786505807 -9.91093565307e+12 +UniRef50_UPI00040D8CBE potassium transporter KefB 1.91538957762e-05 2.00980643923e-05 381172456.571 +UniRef50_Q5SJ70 Acetyl Coenzyme A dehydrogenase, medium chain 0.00019922537711 0.0422491606696 1.69760748883e+13 +UniRef50_UPI0004650AF8 hypothetical protein 3.39519110053e-05 2.04306190041e-05 -5458711505.8 +UniRef50_UPI000362104F hypothetical protein 1.7770873059e-05 1.34002050254e-05 -1764492319.29 +UniRef50_D8FF08 7.37992346122e-06 2.22076776976e-05 5986146342.24 +UniRef50_UPI0003674A12 hypothetical protein 1.09958014564e-05 2.34514304973e-05 5028490291.57 +UniRef50_UPI0003D7284B PREDICTED 9.32987043421e-06 0.00017354960028 66297520141.5 +UniRef50_F8JIY3 5.10305182736e-05 0.000208102023342 63411694080.1 +UniRef50_Q3JNR9 6.59515124924e-05 2.89691018058e-05 -14930253019.4 +UniRef50_UPI0003C10C25 1.50267482852e-06 8.29951023206e-06 2743965858.96 +UniRef50_E2ZSP5 0.00251565412695 0.00130286781704 -4.89616715872e+11 +UniRef50_UPI000371A3CA hypothetical protein, partial 0.000419855891476 0.000251588547025 -67931591827.4 +UniRef50_B9KR70 0.000990114861485 0.000147213305846 -3.40289701577e+11 +UniRef50_Q47319 DTW domain containing protein YfiP 0.00116246534144 0.000320415955001 -3.39945670413e+11 +UniRef50_T0TT19 Putative NagD like phosphatase 2.06627730317e-05 2.9083670837e-05 3399619780.04 +UniRef50_B0KIU6 Transposase like protein TnpA3 0.000606882820403 0.0017510543461 4.61916085489e+11 +UniRef50_UPI000161E3FF Elongation factor G C terminus family protein 2.88020314273e-06 2.28746050684e-05 8071985416.31 +UniRef50_J7QW46 Precorrin 2 C20 methyltransferase 0.00146733893681 0.00127024268214 -79570176653.3 +UniRef50_F0Y525 0.00101447499336 0.0012339590795 88608418947.3 +UniRef50_UPI000365C1D0 hypothetical protein 5.50159718423e-06 5.31584140012e-05 19239641763.9 +UniRef50_P59011 Bifunctional protein PyrR 1.1562119145e-05 5.10553787866e-05 15943913554.1 +UniRef50_U3SYD5 MATE family drug transporter 8.8611734477e-05 0.00631502039798 2.51367758408e+12 +UniRef50_Q43922 3 dehydroshikimate dehydratase 0.000284412955181 0.00827871609782 3.22739827982e+12 +UniRef50_Q2RI74 Shikimate kinase 3.0003127003e-05 1.67252382864e-05 -5360446612.91 +UniRef50_C1CX80 Bifunctional protein PyrR 0.000271649277704 0.0487918494453 1.95882002175e+13 +UniRef50_Z4VVL5 8.99096630229e-05 0.000405621034812 1.27456555005e+11 +UniRef50_B3QX75 UDP N acetylglucosamine 1 carboxyvinyltransferase 5.01326456e-06 1.48117103533e-05 3955752807.21 +UniRef50_P96121 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 6.41817386193e-06 1.12101483178e-05 1934578891.97 +UniRef50_UPI0002191618 6 phospho beta glucosidase 1.28061688515e-05 8.29851919407e-05 28332132814.6 +UniRef50_UPI0003C10787 2.13320734582e-06 3.86253448286e-06 698150586.453 +UniRef50_R5RKK3 L serine dehydratase 7.76652188257e-06 7.10729121916e-06 -266139508.489 +UniRef50_Q5HKH4 Peptide ABC transporter, permease protein, putative 0.0178878785625 0.00573722472797 -4.90536805828e+12 +UniRef50_A0A011QZG0 Respiratory nitrate reductase 2 beta chain 0.00015539250397 0.000148961367109 -2596328869.71 +UniRef50_UPI000345A202 hypothetical protein 9.38782444629e-06 2.62416707265e-06 -2730571481.15 +UniRef50_J2LQ54 NADH dehydrogenase subunit I 0.000394919220244 7.20281013641e-05 -1.30355107011e+11 +UniRef50_UPI000463660E hypothetical protein 1.56168695155e-05 0.000854418747387 3.38634611353e+11 +UniRef50_Q5WBL0 Aliphatic sulfonates import ATP binding protein SsuB 3 8.49010026632e-05 5.95484270717e-05 -10235145877.4 +UniRef50_UPI000382981C hypothetical protein, partial 3.99208832295e-06 1.33233595906e-05 3767148718.33 +UniRef50_UPI00047CCC4C 3 oxoacyl ACP synthase 8.63192262621e-06 5.54157124799e-06 -1247612774.26 +UniRef50_Q9RZ68 0.000298015254361 0.0644308817478 2.58912252022e+13 +UniRef50_Q53L87 0.000129081869843 0.000291911075976 65736148654.9 +UniRef50_Q4SKB1 Chromosome 13 SCAF14566, whole genome shotgun sequence 5.76961613574e-06 4.41026913378e-05 15475532858.8 +UniRef50_Q9RZ60 0.00018118184526 0.0533760108616 2.14754052478e+13 +UniRef50_Q9RZ61 0.000219044094112 0.071962552528 2.89637347466e+13 +UniRef50_O32167 Methionine binding lipoprotein MetQ 0.00702591580323 0.00137607541567 -2.2809098958e+12 +UniRef50_A9MAP0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 0.000112458586552 6.73221330511e-06 -42683034288.3 +UniRef50_A3CMH9 DEAD RNA helicase, putative 0.00453937262651 0.0046021351709 25338009353.3 +UniRef50_Q01WB8 30S ribosomal protein S11 0.00235139072764 0.000541865514113 -7.30527534073e+11 +UniRef50_Q5L310 Histidine ammonia lyase 6.76002416932e-06 8.13615769014e-05 30117562301.9 +UniRef50_D5AP19 Sterol binding domain protein 0.000470675757076 0.000732190178178 1.05576580942e+11 +UniRef50_UPI0003123919 hypothetical protein 7.56580344714e-05 0.000193247371873 47472258492.6 +UniRef50_UPI0004650B6E MULTISPECIES 0.000405812157848 0.000159774592534 -99328384337.7 +UniRef50_UPI00047AC749 hypothetical protein 3.03735484888e-05 2.65824489754e-05 -1530513395.58 +UniRef50_A8XU33 Protein CBG18769 0.000614234829976 0.00018282278413 -1.74166336929e+11 +UniRef50_UPI0003758259 MULTISPECIES 2.79291145147e-05 6.7229590919e-05 15866084595.5 +UniRef50_Q04FM1 Energy coupling factor transporter ATP binding protein EcfA2 5.34462857841e-06 2.80669502317e-05 9173280085.68 +UniRef50_V7WX89 9.47414561313e-06 0.00239994213896 9.65061263256e+11 +UniRef50_UPI000328F9A1 PREDICTED 0.00029187552607 0.00030620004922 5782985777.32 +UniRef50_UPI000372F683 hypothetical protein 3.86971354254e-05 5.33802906394e-06 -13467480600.4 +UniRef50_M4YYR0 Phosphoglycerate mutase 0.0109513373982 0.0116527547182 2.83170779442e+11 +UniRef50_Q0BVP4 Ribonuclease D 7.70237035159e-05 1.12117477589e-05 -26569094142.6 +UniRef50_A6V1L5 6.71707534196e-05 0.00044600829835 1.52941365748e+11 +UniRef50_Q114I1 1,4 alpha glucan branching enzyme GlgB 2.39034889134e-06 5.73854117056e-06 1351706310.06 +UniRef50_F4DWN5 Alpha beta hydrolase fold protein 0.000965784605402 0.000464472090682 -2.02386013989e+11 +UniRef50_D3QGJ7 Nitrilotriacetate monooxygenase 0.00842831225876 0.00172274158185 -2.70712116887e+12 +UniRef50_A6LYY8 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000305371577499 0.00299227858065 1.08473732923e+12 +UniRef50_UPI0003C8E201 PREDICTED 7.69125557788e-06 6.2079985708e-06 -598809055.368 +UniRef50_A3M465 TPR domain protein 0.000283338109982 0.00546352566663 2.09130528467e+12 +UniRef50_A7X204 Large conductance mechanosensitive channel 0.00502319458014 0.000516588988672 -1.81937197955e+12 +UniRef50_UPI00035D3D92 hypothetical protein 9.23145898757e-06 3.05588372267e-05 8610124311.49 +UniRef50_UPI00036ED9BB thymidylate synthase 1.33726439632e-05 0.000211377445363 79936968117.3 +UniRef50_UPI00037D216E hypothetical protein 9.54857822265e-05 4.48109577257e-05 -20458048501.0 +UniRef50_P43784 Dihydrolipoyl dehydrogenase 2.05779231995e-05 1.41774247159e-05 -2583959780.78 +UniRef50_C3LL78 Peptidase, M23 M37 family protein 1.61141349003e-05 0.000839673891573 3.32481179984e+11 +UniRef50_UPI000255ED81 hypothetical protein 4.71477510557e-06 3.32393602419e-05 11515725055.5 +UniRef50_Q5HRN3 ISSep1 like transposase 0.162660368355 0.0569568075052 -4.26738246437e+13 +UniRef50_W8UYM6 S formylglutathione hydrolase 0.000262143047812 0.000423899576834 65303095742.0 +UniRef50_I0ETM1 Bifunctional riboflavin kinase FMN adenylyltransferase 0.000778375684485 0.00290620120329 8.59029273299e+11 +UniRef50_Q1AU56 DNA directed RNA polymerase subunit alpha 1.57829938855e-05 1.71589910642e-05 555506946.425 +UniRef50_P0A6M3 Disulfide bond formation protein B 0.00102499185968 0.00100549512832 -7871069701.83 +UniRef50_R9SIZ9 Xylose isomerase like TIM barrel domain containing protein 0.00147517184205 0.000605134294071 -3.5124483468e+11 +UniRef50_A0A011MST9 Putative ATP dependent protease 2.79051309802e-05 3.93561972567e-05 4622935976.21 +UniRef50_UPI000364852F hypothetical protein 3.39126099349e-06 5.504038875e-06 852954357.466 +UniRef50_A4XNC3 Transcriptional regulator, LysR family 0.000508384579447 0.000316976785549 -77273675234.4 +UniRef50_Q9RZI9 2.7257021696e-05 0.0130150080886 5.24331448334e+12 +UniRef50_Q2GBU1 4.383639402e-06 7.11078441415e-06 1100981907.24 +UniRef50_E2XNR6 Chemotaxis sensory transducer 0.000497878784558 0.000140181980313 -1.44406589307e+11 +UniRef50_A3NNI6 S glutathione dehydrogenase 0.000561701081925 0.0488434325168 1.94919274637e+13 +UniRef50_UPI00035F7621 hypothetical protein 1.72453365293e-05 1.35091004499e-05 -1508364354.03 +UniRef50_Q8CMX9 Anaerobic dicarboxylate transport 0.0115710421362 0.00255051752957 -3.64169647798e+12 +UniRef50_A7ZTG3 Protein export protein SecB 0.00446848391137 0.0015542984484 -1.17649243248e+12 +UniRef50_P76128 Probable D,D dipeptide binding periplasmic protein DdpA 0.0025594162188 0.00142025843111 -4.59891977928e+11 +UniRef50_A6LU60 Prophage ps3 protein 01, putative 0.000555753370172 0.00100746934582 1.82363282547e+11 +UniRef50_Q5W6S1 Os05g0345700 protein 5.31381233381e-05 0.000201506388763 59898089435.4 +UniRef50_C5CB84 Branched chain amino acid uptake carrier 0.000878916813692 0.00507134232279 1.69253362487e+12 +UniRef50_UPI00036BAC4E hypothetical protein 2.81712449789e-06 6.24621491499e-06 1384365881.05 +UniRef50_S4X9U7 LysR family HTH type transcriptional regulator 0.0130423086757 0.00255565808974 -4.23358952724e+12 +UniRef50_UPI0003B52A97 ribonuclease 1.36489157588e-05 8.1126805224e-06 -2235046102.18 +UniRef50_UPI00037423BF hypothetical protein, partial 1.61602833551e-05 1.84856649675e-05 938785092.567 +UniRef50_UPI000378F32E hypothetical protein 0.000108785587569 0.000170867910433 25063395576.0 +UniRef50_F0MS68 Outer membrane protein OpcA 0.000744767324648 0.00692864029776 2.4965054039e+12 +UniRef50_A0KET1 Membrane lipoprotein 0.0100993880784 0.00179518666923 -3.35250801289e+12 +UniRef50_W0WHZ7 0.000870790384845 0.000314350228147 -2.24641719548e+11 +UniRef50_P45871 0.000929409016622 0.000954095218597 9966122671.07 +UniRef50_R4ZVH1 Hydroxymethylglutaryl CoA reductase 0.00673236480112 0.00320897001124 -1.42243771359e+12 +UniRef50_UPI000262730A exodeoxyribonuclease III 3.38239713514e-05 2.46626750941e-05 -3698527720.82 +UniRef50_Q4FQI2 Shikimate kinase 2.55544336663e-05 1.97435744349e-05 -2345915178.98 +UniRef50_Q016J7 GTP binding protein 1.8438679864e-05 5.11889461323e-05 13221684383.5 +UniRef50_UPI00046A74CA quinone oxidoreductase 1.15443544695e-05 5.16803319141e-05 16203386618.2 +UniRef50_UPI0003632653 hypothetical protein 1.89180758887e-06 1.86737712604e-06 -9862877.63996 +UniRef50_I2ICF5 Transposase 3.83851941257e-05 1.1955022253e-05 -10670184719.7 +UniRef50_H6NN00 MerR family transcriptional regulator 0.000542836388043 0.00063279120141 36315862026.0 +UniRef50_E6MYF0 Bacterial lipid A biosynthesis acyltransferase family protein 0.000133860279732 0.00231722102721 8.81449526607e+11 +UniRef50_UPI000478CD68 translation initiation factor IF 2 1.90604359e-05 3.67254870349e-05 7131597917.71 +UniRef50_V5VE92 MFS transporter 0.000318873788606 0.00369439791441 1.36274051192e+12 +UniRef50_Q5F5X0 1 deoxy D xylulose 5 phosphate reductoisomerase 9.67912791928e-05 0.00253456153785 9.84157768226e+11 +UniRef50_B7UXA3 Flagellar hook associated protein 1 FlgK 0.000799672924193 0.000181190511586 -2.49688939602e+11 +UniRef50_U6LVU1 2.40837415685e-06 2.31651226409e-05 8379754076.98 +UniRef50_UPI0004678984 MULTISPECIES 1.15077446288e-05 5.18475920666e-05 16285691436.2 +UniRef50_UPI00046E9450 hypothetical protein 1.94754915065e-05 4.97781282663e-05 12233546315.1 +UniRef50_P39298 Esterase YjfP 0.00296936979984 0.00289711675144 -29169442283.7 +UniRef50_E3RE87 7.94081805221e-05 1.25631732125e-05 -26986149731.4 +UniRef50_Q2NAN4 DNA topology modulation protein 8.39850631177e-05 9.30574894704e-05 3662649849.78 +UniRef50_UPI00040DCB53 hypothetical protein 6.24216967163e-05 8.62870801449e-05 9634748151.31 +UniRef50_F2KZY9 Metal ion transporter, metal ion transporter (Nramp) family 0.000380001546041 0.00385864129047 1.40436955254e+12 +UniRef50_UPI000288BAAB dihydroorotate dehydrogenase 3.9974577365e-06 7.60779140777e-06 1457536006.87 +UniRef50_P18159 Phosphoglucomutase 0.00437280385273 0.00625526445618 7.59972446002e+11 +UniRef50_UPI0002B94CAD hypothetical protein, partial 3.53081199829e-05 0.00105855203594 4.13096125488e+11 +UniRef50_A6M1D1 Phage replisome organizer, putative 0.000535833594103 0.00239377294046 7.50072913605e+11 +UniRef50_S5XSU0 Segregation and condensation protein A 0.00536530565577 0.000673745730992 -1.89404031355e+12 +UniRef50_M1TQL6 Fe S cluster redox enzyme 3.84156782408e-05 0.000134090394489 38625057010.2 +UniRef50_E8NHR5 WGS CADB00000000 data, contig 91 0.000195084056806 0.00166098900411 5.91803815902e+11 +UniRef50_A6LY06 Helix turn helix domain containing protein, AraC type 0.000130167582368 0.000894178874746 3.08440734206e+11 +UniRef50_A7MN74 NAD dependent malic enzyme 0.00206226248975 0.00860573130965 2.64167865999e+12 +UniRef50_E1VPQ4 8.24558837221e-05 2.30317669311e-05 -23990245164.4 +UniRef50_Q634K1 Transposase 2.9552887343e-05 5.49133062935e-05 10238312337.7 +UniRef50_Q9RTE1 Glucose 1 phosphate adenylyltransferase 0.000125133476969 0.0167281546121 6.70284337422e+12 +UniRef50_C9RUW3 ComE operon protein 2 0.0242556342098 0.00131182032925 -9.26269921582e+12 +UniRef50_F2LGK2 7.05768351849e-05 7.46636977426e-05 1649916565.99 +UniRef50_UPI0003656D72 hypothetical protein 1.00847457151e-05 2.52439286613e-05 6119948179.47 +UniRef50_E6N0Q8 1.68892903177e-05 0.00075960414343 2.99843100337e+11 +UniRef50_E6N0Q9 6.50804683823e-05 6.84755813808e-05 1370648780.22 +UniRef50_Q3IXH2 Fumarase alpha subunit 0.00331664784033 0.00140122742581 -7.73278726193e+11 +UniRef50_UPI00036E7B4E hypothetical protein 0.000259433481261 0.000113028729164 -59105395009.9 +UniRef50_F4M9A1 Dimethyl sulfoxide reductase chain YnfE 0.000844221360706 0.000130767544741 -2.88030060568e+11 +UniRef50_G8UZQ2 Bacterial low temperature requirement A family protein 0.0099436691627 0.00171580529653 -3.32168961002e+12 +UniRef50_UPI00047AD872 2 oxoglutarate dehydrogenase 1.72877016346e-06 4.32659097173e-06 1048772139.14 +UniRef50_U2YEL7 7.1407943731e-05 0.000139081650806 27320705995.9 +UniRef50_UPI00037E762B MULTISPECIES 5.18437813206e-06 4.30876186354e-06 -353497032.621 +UniRef50_UPI00040E4B39 NADH 4.34555887214e-06 8.84156192407e-06 1815091604.23 +UniRef50_UPI000289FCDF shikimate kinase 3.10049756705e-05 5.69110187128e-05 10458587479.1 +UniRef50_T0Y894 GMP synthase, large subunit 9.69100820059e-05 5.13850580653e-05 -18379010819.7 +UniRef50_S9P8Y7 3.08121250774e-05 7.23983655037e-06 -9516422142.86 +UniRef50_A3RSV8 Hypothetical membrane spanning protein 0.000231728375811 6.18666073691e-05 -68575280358.3 +UniRef50_Q1IKG7 Phospho N acetylmuramoyl pentapeptide transferase 5.67648652969e-06 4.0076306317e-05 13887629381.4 +UniRef50_B7MKP4 0.000215706279348 0.00143080589023 4.90550623861e+11 +UniRef50_Q5HQ23 Non canonical purine NTP pyrophosphatase 0.000233545619095 1.90353477199e-05 -86600428891.1 +UniRef50_UPI0003FD107E phosphoglycerate mutase 1.63873274633e-05 5.07613549427e-06 -4566467001.82 +UniRef50_I0C7R8 Short chain dehydrogenase 0.0107410127745 0.000269695621179 -4.2273992323e+12 +UniRef50_P0ABM0 Heme exporter protein B 0.00377884517882 0.0013756825053 -9.70186261422e+11 +UniRef50_P0ABG2 Phosphatidate cytidylyltransferase 0.00278837864127 0.000231016979293 -1.0324382853e+12 +UniRef50_A6LYG5 0.000711119602238 0.00205031328656 5.40648924115e+11 +UniRef50_Q9JZS9 0.000264592982837 0.00248471339488 8.96289854282e+11 +UniRef50_A0A011UDJ9 2.87665304554e-06 4.4001486687e-05 16602599999.5 +UniRef50_UPI000292A56C 0.000237109124476 6.59988238092e-05 -69079328138.8 +UniRef50_UPI00037DD48E hypothetical protein 1.63373388322e-05 2.64640287723e-05 4088268997.28 +UniRef50_E8SJM7 Siderophore staphylobactin biosynthesis protein SbnG 0.0188802880594 0.00574820079201 -5.30158477868e+12 +UniRef50_T1AK40 NAD dependent dehydrogenase 4.49554345454e-05 7.78466614959e-05 13278591940.7 +UniRef50_UPI0003775605 hypothetical protein 3.61640014434e-05 0.000359849577725 1.30675839214e+11 +UniRef50_Q1QUR0 3 isopropylmalate dehydrogenase 0.00474960145902 0.00802717770631 1.32319775141e+12 +UniRef50_B2TNA6 D galactose binding periplasmic protein 0.000194246649494 0.00281581643978 1.05835989462e+12 +UniRef50_C5WII8 Amino acid ABC transporter extracellular binding protein 0.0032230246027 0.00134631170266 -7.57652027603e+11 +UniRef50_Q88A48 Bis tetraphosphatase, symmetrical 5.34552866733e-06 0.000429946379616 1.71416573966e+11 +UniRef50_K6LY10 Amidohydrolase family protein 0.000144150269287 0.00175997078212 6.52326569377e+11 +UniRef50_UPI000470129B hypothetical protein 2.50157726056e-05 0.000130135014401 42437927870.8 +UniRef50_A3K1G7 5.89512277509e-05 6.71648157749e-06 -21087808022.6 +UniRef50_P37692 ADP heptose LPS heptosyltransferase 2 0.00296909206967 0.000469696835465 -1.00903652708e+12 +UniRef50_UPI00035FB32E hypothetical protein, partial 1.71460308485e-05 2.92151984951e-05 4872471084.27 +UniRef50_A6M0G3 PAS PAC sensor signal transduction histidine kinase 0.000103971976311 0.00231714059976 8.9348333192e+11 +UniRef50_Q1LFE8 Transcriptional regulator, LysR family 0.000355681077713 0.000298299702217 -23165565436.4 +UniRef50_UPI00042AF78A PREDICTED 0.000121462610869 9.5023230289e-05 -10673902387.8 +UniRef50_R6FZX0 Helicase domain protein 0.000322815277223 0.000809300307508 1.96399976569e+11 +UniRef50_C1E796 Predicted protein 1.62537979177e-05 7.94771902066e-05 25524059305.3 +UniRef50_UPI000262E85E nucleoside diphosphate sugar epimerase 3.10887003377e-05 2.61471842884e-05 -1994950668.32 +UniRef50_Q9RRK0 0.000111792494231 0.00751174617461 2.98745210841e+12 +UniRef50_Q9RRK5 0.000152416953778 0.0634805286484 2.55663358144e+13 +UniRef50_B2SC15 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase 0.0135659153742 0.0116515829745 -7.72839481259e+11 +UniRef50_Q9RRK7 9.54050519479e-05 0.0573174387728 2.31012372064e+13 +UniRef50_UPI0001850CC8 3 oxoacyl synthase II 3.09206400083e-05 1.77371437705e-05 -5322339210.89 +UniRef50_I1QER0 4.85161341716e-05 8.04782773361e-06 -16337551911.0 +UniRef50_UPI0002481C5F transposase Tn3 family protein, partial 1.47980167239e-05 0.00119269567781 4.75531740212e+11 +UniRef50_Q0B3Q1 Flavin containing monooxygenase FMO 0.000121248176295 0.000164981399557 17655638897.9 +UniRef50_UPI00037EC779 hypothetical protein 1.72108907705e-05 0.000100362015175 33569129301.1 +UniRef50_G0A2X8 DoxX family protein 5.19106947738e-05 3.23061681652e-05 -7914587966.49 +UniRef50_A5UN92 Multidrug efflux permease, AraJ 0.00499330669844 0.000660491105875 -1.74921082434e+12 +UniRef50_I6T783 Transporter trans membrane domain bacteriocin immunity protein 0.00528990544634 0.00111570251362 -1.68517694717e+12 +UniRef50_UPI000185DB7C zinc finger protein, putative 1.86905365454e-06 1.20834195835e-06 -266737419.596 +UniRef50_G7U3Z0 0.000261248490195 0.00374910812187 1.40809173416e+12 +UniRef50_F5XMJ8 Oxygen independent coproporphyrinogen III oxidase 0.000670184801124 0.00403723084843 1.3593178076e+12 +UniRef50_P46322 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.0118903804173 0.00289457153231 -3.63171843786e+12 +UniRef50_UPI00030144E8 hypothetical protein 5.81721261139e-05 4.3112322486e-05 -6079827529.16 +UniRef50_F0YGY7 0.000208909977261 0.000938888504514 2.94701289296e+11 +UniRef50_M4YXB8 Uracil DNA glycosylase superfamily protein 0.00393128589723 0.000468347099909 -1.39803088752e+12 +UniRef50_UPI00015FB2F9 hypothetical protein 1.02942774367e-05 4.09954815465e-05 12394452845.3 +UniRef50_L0FIE0 Diguanylate cyclase 0.000827675890719 0.000307621567909 -2.09952311903e+11 +UniRef50_Q8CXD9 Aminomethyltransferase 0.013798275744 0.00334196968425 -4.22133906961e+12 +UniRef50_M2TAB3 PhbF 2.42702630465e-05 1.09695176395e-05 -5369674139.31 +UniRef50_D8HDV1 M23 M37 peptidase domain protein 0.0083790307085 0.00205669576719 -2.55240419958e+12 +UniRef50_P25795 Aldehyde dehydrogenase family 7 member A1 0.0004753712871 0.000151444464203 -1.30773233433e+11 +UniRef50_M4YX01 RNA binding protein 0.000378748483804 0.00132683276549 3.82753258819e+11 +UniRef50_X5HG80 Long chain fatty acid ABC transporter 0.000313226783592 0.00864951645332 3.36546243745e+12 +UniRef50_Q04IA2 Glucose 6 phosphate isomerase 0.00755913876272 0.0132656405619 2.30378480298e+12 +UniRef50_B9DNP9 Exodeoxyribonuclease 7 large subunit 0.0167506456871 0.00535867599622 -4.5990779594e+12 +UniRef50_U3QR56 ABC transporter permease 0.011218659388 0.00344294749294 -3.13915031075e+12 +UniRef50_UPI00035EC4D9 hypothetical protein, partial 3.34355112823e-05 7.75672291262e-05 17816516050.7 +UniRef50_E6UXA3 Phosphate transporter 0.000673742806667 0.00626742758178 2.25823918594e+12 +UniRef50_Q3JJ67 1.07446117589e-05 2.75409824326e-05 6780900955.62 +UniRef50_P44640 0.000773684025405 0.00109586299042 1.30067601757e+11 +UniRef50_W5X6D8 Membrane fusion protein 9.7952605925e-06 4.23607431311e-05 13147084924.2 +UniRef50_Q67NU0 Cytidylate kinase 1.56078945597e-05 9.79170741271e-05 33229225838.6 +UniRef50_Q3JUL3 0.000325798783623 4.34656975814e-05 -1.13981331452e+11 +UniRef50_Q5HJ85 Protein EsaC 0.00244670532156 0.00933649726201 2.78149355361e+12 +UniRef50_J0NSU5 8.62704005634e-06 0.00263764999154 1.06136882725e+12 +UniRef50_UPI00038115B9 hypothetical protein 2.9001460378e-05 3.08101198604e-05 730178027.793 +UniRef50_G0AJ20 Glycosyltransferase 0.000513366419918 0.000192597851207 -1.29498207462e+11 +UniRef50_A3CLG7 Hydrolase, HAD superfamily, putative 0.00672611293986 0.00437715119931 -9.48304679662e+11 +UniRef50_N6V947 0.00015543327308 7.96235495201e-06 -59535819319.9 +UniRef50_A6LTV8 0.000228063123226 0.00211488160148 7.61731773536e+11 +UniRef50_UPI00038028F6 hypothetical protein 2.13183228138e-06 6.7449088285e-06 1862355610.89 +UniRef50_T0U2I3 0.00449714639591 0.00209252893689 -9.70773576181e+11 +UniRef50_I4CVC3 0.000158116322005 0.000125601466297 -13126646251.5 +UniRef50_B9KU56 Xanthine oxidase 0.00125725716397 0.000149889273766 -4.47058006206e+11 +UniRef50_P0A4H7 Transcriptional regulatory protein CiaR 0.00433244991405 0.00252589195558 -7.29329616793e+11 +UniRef50_G2TKZ3 NUDIX hydrolase 0.00586860552378 0.00272822786562 -1.26780899737e+12 +UniRef50_I0EMS0 Bifunctional cytochrome c biogenesis protein 0.000132980846837 0.00253757003084 9.70762161208e+11 +UniRef50_A6LTV7 0.000164961452225 0.000778726237326 2.47784375486e+11 +UniRef50_I6SU15 0.00372190360222 0.000789327781131 -1.18391684573e+12 +UniRef50_UPI0001BF70A9 hypothetical protein SMAC_07598 1.71013035831e-06 1.71938442177e-06 3735978.97893 +UniRef50_B9E4Q8 0.000578960336452 0.000667914415714 35911853387.4 +UniRef50_M4RAV2 Phosphoglycerate mutase related protein 0.000784342631636 0.00295856741404 8.77761225393e+11 +UniRef50_UPI0003B511AF histidine kinase 2.74884117816e-06 0.000937515472934 3.77376760116e+11 +UniRef50_B4U2B4 Septation ring formation regulator EzrA 0.00399886672741 0.00252696380952 -5.94225270232e+11 +UniRef50_L0F3J6 Phosphoenolpyruvate synthase pyruvate phosphate dikinase 0.000515707073111 0.000831395614021 1.27447337899e+11 +UniRef50_V5BIM4 1.13713726136e-05 1.01970923034e-05 -474071371.268 +UniRef50_UPI0002556319 pseudouridine synthase 6.27942338826e-05 1.74609432759e-05 -18301605720.0 +UniRef50_B7RP52 3.23826134708e-06 1.73468874933e-06 -607010708.622 +UniRef50_UPI0003B48412 thiamine biosynthesis protein ThiF 1.32517865654e-05 1.46138445934e-05 549879540.235 +UniRef50_UPI0003AD5F31 hypothetical protein 0.000128641671529 7.2843266741e-05 -22526500736.3 +UniRef50_T2E0C1 0.00108392420378 0.000912838346346 -69069460105.7 +UniRef50_B8FZA5 Peptidyl tRNA hydrolase 2.56673091153e-05 2.6934613225e-05 511626220.656 +UniRef50_UPI0004219762 hypothetical protein 6.62809261238e-06 1.15495995198e-05 1986872732.21 +UniRef50_E1Q396 Thioredoxin reductase 0.000122826243664 0.00274272612365 1.05768573134e+12 +UniRef50_UPI00035FB5C7 hypothetical protein 2.05794651769e-05 6.43295565754e-05 17662448771.6 +UniRef50_A1UAG5 Phosphatidylserine decarboxylase proenzyme 0.00169245538422 0.00152360062867 -68168736896.4 +UniRef50_I2SYF8 Cation efflux system protein CusA 0.00221422078921 0.000494414398836 -6.9430694419e+11 +UniRef50_UPI000371FCD3 hypothetical protein 0.000372149705715 5.81297397007e-05 -1.26773713738e+11 +UniRef50_U5MS66 Glycerol 1 phosphate dehydrogenase 0.000216223505426 0.00357206639684 1.35479495609e+12 +UniRef50_UPI0003B530FD peptidase M22 1.09168716841e-05 1.24132030499e-05 604087334.424 +UniRef50_J5IRB2 0.000348448605091 0.000798153257284 1.81551286587e+11 +UniRef50_F7QFG7 Glycolate dehydrogenase 0.000446621098025 0.000460095914695 5439948844.27 +UniRef50_R9SLR7 0.00343357677766 0.00131006220993 -8.57288889447e+11 +UniRef50_P32143 Sulfofructose kinase 0.00315059511625 0.000754956916339 -9.6714853909e+11 +UniRef50_D1DJP5 Phage repressor protein 0.000327138881892 0.0024063925346 8.39420214911e+11 +UniRef50_S2W2I7 9.34522870458e-06 2.4647748766e-05 6177815131.82 +UniRef50_UPI0003C15FB0 PREDICTED 2.98995411747e-06 1.05361930591e-05 3046509263.5 +UniRef50_C5QVZ6 0.0675603476614 0.0168618448495 -2.04676077258e+13 +UniRef50_UPI00037F1AC8 nucleoside triphosphate diphosphatase 8.11840148686e-06 1.95566828506e-05 4617774550.02 +UniRef50_UPI0002ED2583 hypothetical protein 0.000577589887891 0.000310364408692 -1.07882205178e+11 +UniRef50_U5NRT4 0.00641945956696 0.00137175746838 -2.03781927947e+12 +UniRef50_A4VM51 Nitrate binding protein NasS 0.00046479100412 0.000340574032415 -50147915791.0 +UniRef50_UPI0002000C91 iron ABC transporter, partial 2.15146298045e-05 5.8371068437e-05 14879396555.3 +UniRef50_M9SAW1 0.000890814129841 0.000276121722171 -2.481588681e+11 +UniRef50_C5ZXL6 Hydrogenase expression formation protein HypE 0.000177223468942 0.00197976362333 7.27707579982e+11 +UniRef50_UPI0003B79B45 branched chain amino acid aminotransferase 0.000177788742358 1.76075990283e-05 -64667093206.0 +UniRef50_A6TG52 D ribose pyranase 0.000672914187671 0.00753479441464 2.77022525237e+12 +UniRef50_B1TES8 2.10447092255e-05 3.38664450361e-05 5176292087.13 +UniRef50_P76222 0.00117991395255 0.00200214715387 3.31945633309e+11 +UniRef50_UPI000462ED7D hypothetical protein 2.42413041712e-05 1.85850282597e-05 -2283507995.78 +UniRef50_J2YES6 Outer membrane protein, OMP85 family 0.000536677906781 0.00135128209951 3.28865708922e+11 +UniRef50_A1WN39 Mg chelatase, subunit ChlI 0.000528594704658 0.00237036917522 7.43546954879e+11 +UniRef50_K4NKR5 7.95265425939e-05 0.00288139197258 1.13114745684e+12 +UniRef50_P39370 Probable 9 O acetyl N acetylneuraminic acid deacetylase 0.0022812811489 0.000698276012413 -6.39078599258e+11 +UniRef50_UPI000255E8AD membrane protein 2.61516693488e-05 1.98835490073e-05 -2530517100.35 +UniRef50_Q81II2 Arginine regulator 1.66919242749e-05 0.000450865198773 1.7528107882e+11 +UniRef50_W1W6K4 0.278232683798 0.0628932216423 -8.69351833847e+13 +UniRef50_M8EPJ5 0.00154224705879 0.00950688063661 3.21542031241e+12 +UniRef50_Q74KF8 Phosphate import ATP binding protein PstB 2 1.44136027914e-05 8.76171550334e-05 29553172348.7 +UniRef50_A3CQK2 0.000494947520188 0.000308661081921 -75206121120.1 +UniRef50_UPI0003F5C642 hypothetical protein 0.000177049738148 0.000117297177427 -24122842009.4 +UniRef50_Q2RK39 Orotidine 5 phosphate decarboxylase 1.6604602774e-05 1.12583196581e-05 -2158360100.16 +UniRef50_A1B425 0.000346896234112 5.29678126955e-05 -1.18662510633e+11 +UniRef50_UPI0004685071 MerR family transcriptional regulator 0.000149936702514 0.000505444574344 1.4352289043e+11 +UniRef50_W5X8A1 9.35804544484e-06 2.51745733853e-05 6385326420.2 +UniRef50_UPI000313CECC hypothetical protein 2.81735408109e-05 1.764738175e-05 -4249539583.38 +UniRef50_Q06067 Signal transduction histidine protein kinase AtoS 0.00216749963779 0.00100916423452 -4.67634216674e+11 +UniRef50_I6TW33 TetR AcrR family transcriptional regulator 0.00540857432152 0.00300034340971 -9.72232371414e+11 +UniRef50_G7M6N7 GTP binding protein HSR1 related protein 0.000567404543524 0.00178434334723 4.91293128576e+11 +UniRef50_F0Y8S9 0.000325542511239 0.000705310250772 1.53316896724e+11 +UniRef50_M9RGW8 23S rRNA [guanosine 2 O ] methyltransferase RlmB 0.000677705566004 0.00023815863322 -1.77450490612e+11 +UniRef50_G7M469 Drug resistance transporter, EmrB QacA subfamily 0.000241703444048 0.000137143980732 -42211938429.6 +UniRef50_A4YX93 L fuculose 1 phosphate aldolase 0.0190900166282 0.00458073408353 -5.85757541221e+12 +UniRef50_F8GTL5 4.08247297547e-06 7.01989868998e-06 1185874807.21 +UniRef50_UPI0003C177A0 PREDICTED 5.36708198106e-06 1.50951682323e-05 3927347796.67 +UniRef50_C0P4G8 0.0112494467024 0.00294751619946 -3.35159122018e+12 +UniRef50_U9LDC5 0.000813497390879 0.00248978824375 6.76739187706e+11 +UniRef50_B5WFL3 6.16655879961e-05 1.14519699256e-05 -20271853805.4 +UniRef50_Q8PMG5 Phospholipase 0.000173423884613 0.00461088783385 1.79145865011e+12 +UniRef50_V6F503 Transposase 3.42541856891e-05 2.94738262753e-05 -1929889756.96 +UniRef50_Q2IIK2 0.000448099697328 7.23643585034e-05 -1.51688967075e+11 +UniRef50_L7BUG1 GTP binding protein TypA, BipA 2.52404285411e-05 3.72369119099e-05 4843127549.39 +UniRef50_O67550 5 3 exonuclease 2.18406213857e-05 0.000144018203619 49324589235.0 +UniRef50_B7M371 Flagellar protein FliT 0.00154698890717 0.00224291168503 2.80952565355e+11 +UniRef50_D5X8K2 NADH quinone oxidoreductase subunit I 0.000294910928794 0.000509166733097 86497697411.5 +UniRef50_Q664W4 Isocitrate dehydrogenase kinase phosphatase 0.00191288313022 0.000777803056041 -4.58245754945e+11 +UniRef50_F4D3L6 0.000159951690188 0.00777026334343 3.07237620344e+12 +UniRef50_V8GXC4 Protein pucC 7.67674993625e-05 1.57911827097e-05 -24616887296.3 +UniRef50_T2A3K0 MafB family adhesin protein 0.00012724246815 0.000820324892546 2.79805879806e+11 +UniRef50_L7LVI6 Putative mucin 5ac 0.000220938017744 4.87562597947e-05 -69511888591.8 +UniRef50_G2JRU4 Phosphoglycerate mutase 0.00622917444087 0.00184144765348 -1.77137914753e+12 +UniRef50_UPI000465BD7B hypothetical protein 3.04236007301e-05 2.51399115261e-05 -2133090169.81 +UniRef50_Q5LXZ9 Argininosuccinate lyase 1.27976925509e-05 1.144906346e-05 -544458113.536 +UniRef50_Q6F9Z8 Malate synthase G 0.000105051962823 0.00656462835221 2.60781025631e+12 +UniRef50_B8ENG4 Leucyl aminopeptidase 0.0013810856392 0.00041418495179 -3.90349672713e+11 +UniRef50_N6V8H7 5.75301892126e-05 0.000282327328127 90753363550.7 +UniRef50_R5F4E6 0.000567517826046 0.000923490986135 1.4371073301e+11 +UniRef50_V5C579 Non hemolytic phospholipase C 4.04407779216e-06 6.13832692213e-06 845474073.096 +UniRef50_UPI00036632DA hypothetical protein 4.352594419e-05 1.80764929642e-05 -10274255759.7 +UniRef50_A0A010PG87 Ribonuclease E 0.00026914567433 0.0074217681721 2.8876014749e+12 +UniRef50_D6A365 Predicted protein 0.000114853749147 0.000180071161704 26329069756.9 +UniRef50_UPI00037534FD resolvase 6.59230971402e-05 3.92493499541e-05 -10768519062.7 +UniRef50_A5USR7 DNA directed RNA polymerase subunit beta 7.0317390333e-06 2.49028911299e-06 -1833439062.69 +UniRef50_UPI00035ECFEE hypothetical protein 6.47118838e-05 0.00378942047778 1.5037105667e+12 +UniRef50_F3P5V2 Rhamnan synthesis protein F 3.78204593075e-06 4.8669151496e-06 437975016.492 +UniRef50_J9NVA3 0.000421064291552 0.000383891384436 -15007158765.6 +UniRef50_E6K098 ABC transporter, substrate binding protein, QAT family 0.00946019015066 0.0020472585303 -2.99269146204e+12 +UniRef50_F2HK99 Branched chain amino acid 0.0210753069266 0.00491245691468 -6.52514089028e+12 +UniRef50_UPI00047B7ECA peroxiredoxin 1.61437673729e-05 0.000324609618691 1.24531449479e+11 +UniRef50_UPI000463E58D adenylyltransferase, partial 0.000129081843162 8.03393705995e-05 -19677934310.9 +UniRef50_UPI0003B6A60F hypothetical protein 2.09759041937e-05 1.84725480685e-06 -7722470492.42 +UniRef50_D9R3W0 PTS system, lactose cellobiose family IIC subunit 0.000224355402255 0.000917770612685 2.79940229612e+11 +UniRef50_A4X0D6 SH3, type 3 domain protein 0.0148435338747 0.00508563810486 -3.93938226513e+12 +UniRef50_Z3GHL3 0.000136388142802 0.00016720651992 12441757026.6 +UniRef50_Q02EP8 tRNA sulfurtransferase 0.00110709311621 0.000162708928474 -3.81259485486e+11 +UniRef50_R0E2F9 5.69211773263e-05 0.000167318246575 44568651580.2 +UniRef50_UPI000467973F hypothetical protein 1.79305637653e-05 1.47569500956e-05 -1281226783.08 +UniRef50_UPI0004255353 hypothetical protein 2.75271342113e-05 2.45645595031e-05 -1196027764.58 +UniRef50_UPI0003B4F400 iron ABC transporter ATP binding protein 0.000140683180198 0.00013296368261 -3116455905.16 +UniRef50_R5JER5 RelA SpoT domain protein 0.0112390811602 0.0018593475661 -3.78671355421e+12 +UniRef50_Q8DSQ9 Tyrosine recombinase XerD like 0.00467178762674 0.00132748160413 -1.35013738058e+12 +UniRef50_Q46339 Formyltetrahydrofolate deformylase 0.00947395186985 0.00121113964559 -3.33579869104e+12 +UniRef50_UPI0003B771E7 MULTISPECIES 5.33769074795e-05 2.33578311611e-05 -12119069485.2 +UniRef50_Q47702 0.00332402332451 0.00048412574623 -1.14650150181e+12 +UniRef50_X7F5H4 1.77280294336e-05 1.39526738961e-05 -1524157359.31 +UniRef50_P0ABV0 Protein TolQ 0.00103429585003 0.00254676684895 6.1060310237e+11 +UniRef50_UPI00047C65E6 hypothetical protein 5.98776590438e-05 6.5786544066e-06 -21517462224.4 +UniRef50_A6LWR5 Phage integrase family protein 0.000118334165783 0.00116810239152 4.23804314836e+11 +UniRef50_Q3IV24 0.000913314869208 0.00116499844958 1.01607749901e+11 +UniRef50_UPI0003B5337E PREDICTED 2.7093055757e-06 9.8884150925e-07 -694572456.094 +UniRef50_UPI00046923C9 hypothetical protein 5.12194945014e-06 8.0418094213e-07 -1743136131.66 +UniRef50_S2VZ33 3.6590588892e-06 1.25948707357e-05 3607496897.17 +UniRef50_B4RKT2 0.000208172420321 0.00199207513225 7.20183415754e+11 +UniRef50_A5ULP1 Predicted O linked GlcNAc transferase 0.00233157039354 0.000602576365377 -6.98016106311e+11 +UniRef50_C4ZJC7 NADH ubiquinone oxidoreductase chain 4L 0.000442366393186 0.000532102171523 36227434896.5 +UniRef50_B1GYY9 Bifunctional protein PyrR 1.02426217482e-05 7.42280115737e-05 25831687061.6 +UniRef50_D4HDS2 Alpha 1,4 glucan 0.000151486876401 0.00369988131658 1.4325303792e+12 +UniRef50_B7GF12 Ferrochelatase 0.0190140428472 0.00922770042343 -3.9508665284e+12 +UniRef50_A3NIS0 Proline specific permease 0.00113345877002 0.000421420729944 -2.87458494468e+11 +UniRef50_A5UMI6 Multimeric flavodoxin 0.00488906345484 0.000557201330567 -1.74882589749e+12 +UniRef50_P0AGN1 Xanthine permease XanP 0.00383213711656 0.000463470800048 -1.35997193016e+12 +UniRef50_Q05069 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.000429377403536 0.00617931298426 2.32131955358e+12 +UniRef50_UPI0002627F1B glycerol 3 phosphate ABC transporter ATP binding protein 6.47145975203e-05 2.06782192039e-05 -17778026313.5 +UniRef50_B6AV02 2.37650687121e-05 2.06739229483e-05 -1247933477.47 +UniRef50_UPI000364DCAC hypothetical protein, partial 4.29005252867e-05 6.42111121326e-06 -14727187114.2 +UniRef50_A1UTL7 0.0016253456944 0.000640115254802 -3.97749618603e+11 +UniRef50_M9S1E1 Transcriptional regulator 0.000666167515011 0.000300079144647 -1.47794367525e+11 +UniRef50_UPI0003ADE5F5 PREDICTED 4.77187343126e-05 0.000132801246403 34348854210.7 +UniRef50_A5UJE0 DNA helicase 0.00186221625627 0.00107611436036 -3.17358981934e+11 +UniRef50_Q9X9H7 0.000905966373245 0.00141752018494 2.06520551252e+11 +UniRef50_A0A037XIK8 0.000507334039039 4.76697335853e-05 -1.85572120827e+11 +UniRef50_Q9RSR1 Polyribonucleotide nucleotidyltransferase 0.000162875462885 0.0304022303206 1.22079986347e+13 +UniRef50_A6M132 Abortive infection protein 0.000199376402564 0.00128363920806 4.37730199981e+11 +UniRef50_UPI0002558D3C LysR 1.42883882164e-05 9.48110066088e-06 -1940760978.22 +UniRef50_UPI0003B5E137 glycine betaine ABC transporter ATP binding protein 8.07624538799e-05 7.99437717595e-06 -29377365530.1 +UniRef50_C6D465 1.67310214576e-05 7.75914866708e-06 -3622055142.79 +UniRef50_C5BDM9 DNA mismatch repair protein MutL 0.0011076466316 0.00109649993582 -4500057871.73 +UniRef50_W7BGX2 Transposase IS3 IS911 family protein 0.000121723477295 3.45418879291e-05 -35196277465.4 +UniRef50_Q0VLT2 Transcriptional regulator, TetR family 0.000544450945461 0.000420878914765 -49887545191.3 +UniRef50_K3ZVN5 5.92841818649e-05 0.000112759703998 21588724503.6 +UniRef50_A0A031GP16 0.0013441135221 0.000128970358093 -4.90568206794e+11 +UniRef50_UPI00046D89CC hypothetical protein 2.0191198611e-05 3.60134836562e-05 6387650634.02 +UniRef50_G8V9S2 Protease 0.0002543345315 0.00496750136738 1.90276328871e+12 +UniRef50_A1V469 Sulfate thiosulfate ABC transporter, permease protein CysW 0.0100773852527 0.0105149379671 1.76645400179e+11 +UniRef50_A0A024C0E9 LPS biosynthesis protein 0.000228608457182 0.00347101861158 1.30900076818e+12 +UniRef50_U5MSD8 0.000351960316455 0.00184114596569 6.01202520961e+11 +UniRef50_UPI0003B32410 chromosomal replication initiation protein 3.80627563901e-06 6.80753602202e-06 1211645646.23 +UniRef50_M7MCD8 Oxidoreductase, NAD binding domain protein 0.00451531069022 0.00279832499157 -6.93168196329e+11 +UniRef50_D8FRN8 Putative ATPase 5.91562490057e-05 7.69451275178e-05 7181588549.42 +UniRef50_UPI0003B386D0 hypothetical protein 7.58766210551e-06 7.8373832008e-05 28577245433.6 +UniRef50_J9NYR7 0.000218158351966 0.000160809126406 -23152586112.7 +UniRef50_D7GEU1 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000512032424987 0.00544187412311 1.99023758949e+12 +UniRef50_Q8FE39 0.000165813843133 9.40320589966e-05 -28979187117.4 +UniRef50_V9T419 Glycosyl transferase family 1 0.000404096640229 0.00031065924589 -37721822700.4 +UniRef50_G2JD62 Ferric acinetobactin transport system ATP binding protein 0.000263362317798 0.00652700183684 2.52870813734e+12 +UniRef50_UPI0004723CF7 succinate dehydrogenase 1.67323239428e-05 1.48880665664e-05 -744549334.436 +UniRef50_UPI00046F8708 hypothetical protein, partial 6.23659772023e-05 8.23590439148e-05 8071446374.35 +UniRef50_UPI0003822266 MULTISPECIES 9.92661790266e-06 7.46188880691e-05 26117063329.6 +UniRef50_P0AES0 Bifunctional glutathionylspermidine synthetase amidase 0.00371462892728 0.0005715327638 -1.26890649132e+12 +UniRef50_F4DAR6 ABC type oligopeptide transport system,, ATPase component 0.000116989459351 0.000798322565575 2.7506253588e+11 +UniRef50_UPI00035D1F28 geranylgeranyl pyrophosphate synthase 1.86018471598e-05 7.58077872142e-05 23094739995.8 +UniRef50_B6W8Z1 PTS system mannitol specific EIICBA component family protein 1.26797297383e-05 2.88917299039e-05 6544983410.47 +UniRef50_P32720 D allose transport system permease protein AlsC 0.00393245458961 0.000184958270474 -1.51291025099e+12 +UniRef50_UPI0003816203 hypothetical protein 8.68786011569e-07 1.18777221132e-05 4444442599.05 +UniRef50_P80907 Ketoisovalerate oxidoreductase subunit VorA 0.00252814161026 0.000299796171242 -8.99610398606e+11 +UniRef50_Q53046 Pyruvate flavodoxin oxidoreductase 0.00027294852691 0.000115077820506 -63734341466.7 +UniRef50_L0GRI3 3 carboxymuconate cyclase 9.96882012767e-05 0.000649452702637 2.21946675568e+11 +UniRef50_A6VA52 0.000655262270873 0.000637374183882 -7221640229.78 +UniRef50_C5N145 Cation diffusion facilitator family transporter 0.0183080787696 0.0078446420129 -4.22421781949e+12 +UniRef50_K1GVU9 6.76911650447e-06 6.57765558645e-06 -77295122.0943 +UniRef50_Q5KWI6 Non canonical purine NTP pyrophosphatase 1.59028529763e-05 1.17534496601e-05 -1675165037.65 +UniRef50_D3DZD8 Anaerobic ribonucleoside triphosphate reductase NrdD 0.00346869179519 0.00214927555976 -5.32664525301e+11 +UniRef50_B6JN53 Polyribonucleotide nucleotidyltransferase 7.00345062854e-05 0.00447354196908 1.77774999984e+12 +UniRef50_E1Q5C2 VirB8 type IV secretion protein 0.0001033264568 0.00271805591537 1.05559836876e+12 +UniRef50_P52022 DNA polymerase III subunit alpha 0.00237362210782 0.00063231300459 -7.0298785324e+11 +UniRef50_Q27713 Bifunctional dihydrofolate reductase thymidylate synthase 2.61266200919e-06 4.21916477152e-06 648564879.158 +UniRef50_Q7WP11 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.000552418520273 0.00840363349219 3.16963182941e+12 +UniRef50_F0RPA5 Chlorite dismutase 3.21079789716e-05 0.0341682476641 1.37811784884e+13 +UniRef50_Q168Q1 Integral membrane protein, putative 0.00351592644435 0.00176307214235 -7.07648791659e+11 +UniRef50_C6SLW0 Transposase for insertion sequence element IS1106 2.93736969561e-05 0.000269855370033 97085402463.2 +UniRef50_A0LHK5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.41544990132e-05 4.52206519257e-05 12541787155.3 +UniRef50_P02976 Immunoglobulin G binding protein A 0.00554539476996 0.000786620594933 -1.92117553119e+12 +UniRef50_UPI0002896994 LuxR family transcriptional regulator 3.33371929351e-05 2.03276784758e-05 -5252100631.91 +UniRef50_G7M646 Nitroreductase 0.000432836196781 0.0019403069489 6.08584441377e+11 +UniRef50_UPI0003B4D6A8 hypothetical protein 4.26803234555e-05 0.000236650372058 78308088900.8 +UniRef50_F3FWR5 Potassium transporting ATPase subunit B 2.00165447942e-05 0.00247967190376 9.92993051782e+11 +UniRef50_G2Y3Z8 1.46026142387e-06 0.00011252462929 44838048220.6 +UniRef50_UPI00035116CC PREDICTED 1.66703074983e-05 0.000180179251446 66010567152.2 +UniRef50_UPI0003C1260B PREDICTED 7.3191774986e-06 1.93850002655e-05 4871120715.29 +UniRef50_Q2S1Q5 DNA directed RNA polymerase subunit beta 2.79375212825e-06 2.20965399511e-06 -235807584.039 +UniRef50_UPI00036CDFBA hypothetical protein 7.65849106278e-05 8.24636151407e-05 2373305151.67 +UniRef50_B5Y9Z4 8 amino 7 oxononanoate synthase 5.00131869351e-05 5.77264307382e-05 3113931175.46 +UniRef50_A6LZ45 Histidine kinase internal region 6.6458800855e-05 0.00142736796171 5.49415728469e+11 +UniRef50_Q6FEP2 Phosphate acetyltransferase 2.94607897006e-06 0.00825726049868 3.33236802307e+12 +UniRef50_P37902 Glutamate aspartate periplasmic binding protein 0.00251860257979 0.000970762709875 -6.24881949614e+11 +UniRef50_UPI00039CF033 preprotein translocase subunit SecD 2.8093933206e-06 4.36129165322e-06 626520400.813 +UniRef50_Q99MR8 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.54440795218e-06 6.23421057443e-06 1489618597.57 +UniRef50_UPI000393D46E PREDICTED 0.000109857785715 3.0775421323e-05 -31926520954.8 +UniRef50_M9VH28 Actinobacterial surface anchored protein domain protein 0.00020008091282 0.00440924485909 1.69929113736e+12 +UniRef50_P09785 Anthranilate synthase component 1, pyocyanine specific 0.000633844114087 0.000124431196007 -2.05656246228e+11 +UniRef50_B9EAP7 ATP dependent Clp protease ATP binding subunit ClpB 0.0138398508012 0.00724704027832 -2.66159851097e+12 +UniRef50_W0V3Q1 0.000265148125521 7.37219644158e-05 -77281090301.2 +UniRef50_O83046 Pca operon regulatory protein 0.000158830009337 0.0181862426983 7.27788772378e+12 +UniRef50_U3BC68 1.28600982439e-05 1.88200115908e-05 2406090154.5 +UniRef50_P0AFU4 Transcriptional regulatory protein GlrR 0.0045025149252 0.00264019154533 -7.51842801731e+11 +UniRef50_A0A011Q2M3 1.97604543621e-05 9.46803593016e-05 30246084994.7 +UniRef50_A6M0L8 0.000217086447274 0.00119571447971 3.95084145811e+11 +UniRef50_Q01269 Cyclohexadienyl dehydratase 0.00145493165335 0.000220385600888 -4.98401390962e+11 +UniRef50_R5XL07 0.000770336116499 0.00247436253623 6.87936376401e+11 +UniRef50_UPI00036FF49D hypothetical protein 4.03114214381e-06 4.82949743807e-05 17869852252.3 +UniRef50_UPI00046F97B3 chemotaxis protein CheD 0.000430288081365 4.75785249677e-05 -1.54504544292e+11 +UniRef50_B7V438 0.00018294959072 0.00117899545856 4.02115939704e+11 +UniRef50_UPI00035D66E8 hypothetical protein 2.157612764e-05 1.00620777761e-05 -4648363223.34 +UniRef50_UPI00047161E6 hypothetical protein 3.93232781167e-05 1.66961206854e-05 -9134861121.46 +UniRef50_K9BU68 Molybdopterin binding domain of aldehyde dehydrogenase protein 0.000187803974553 0.000895264483447 2.85610488957e+11 +UniRef50_W5DRR2 0.00122725174571 0.000132802986763 -4.41842394385e+11 +UniRef50_F8FTQ8 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 0.000599532538633 0.000724868250766 50599565030.2 +UniRef50_UPI000377D28B hypothetical protein 7.81173319448e-06 1.33168472371e-05 2222482094.35 +UniRef50_P17315 Colicin I receptor 0.00241340696956 0.00127821718159 -4.58290047749e+11 +UniRef50_F0Y056 4.67042002586e-05 0.000625139648833 2.3352148879e+11 +UniRef50_X0P3U7 3.25494911064e-05 0.00144608252367 5.70660631245e+11 +UniRef50_UPI00046FA0D1 23S rRNA pseudouridylate synthase 1.11928739094e-05 2.92628595635e-05 7295074952.22 +UniRef50_UPI0003761003 hypothetical protein 9.72459370922e-06 6.08449476805e-06 -1469552611.59 +UniRef50_H7D699 UvrABC system protein C 1.49269374036e-05 5.7979767961e-05 17380956013.7 +UniRef50_UPI000255DA26 glycosyltransferase, partial 0.000224821406003 1.32579029382e-05 -85410782363.5 +UniRef50_Q3JHX4 3.39011936941e-05 0.000263076122505 92520731053.6 +UniRef50_R7D4E7 0.000167529885896 2.66119264318e-05 -56890309493.4 +UniRef50_O65989 PTS system mannitol specific EIICB component 0.000371207316991 0.000622065290213 1.01274442163e+11 +UniRef50_Q11K56 Cupin 2, conserved barrel 0.000223364490448 0.0240723214356 9.62811657839e+12 +UniRef50_A8LRD0 3 hydroxyacyl CoA dehydrogenase NAD binding 0.00611089237967 0.00178212048875 -1.74757833237e+12 +UniRef50_J2ES16 Diguanylate cyclase domain protein 0.00012369556219 0.000511440952763 1.56537572345e+11 +UniRef50_UPI00035E59D2 hypothetical protein 8.11323404945e-05 2.7125583582e-05 -21803190503.0 +UniRef50_F7ZLE6 TRAP transporter subunit DctP 0.00525374948067 0.000288583099537 -2.00449859751e+12 +UniRef50_UPI000470DE86 hypothetical protein 1.2591159159e-05 3.39505597092e-05 8623052111.44 +UniRef50_Q9I0K9 Adenylosuccinate lyase 0.000904119522844 0.0103944697447 3.83137084426e+12 +UniRef50_N6RCJ7 RpiR family transcriptional regulator 0.00319863682334 0.00187712542477 -5.33510368371e+11 +UniRef50_S5XYI0 Membrane protease subunit HflK 0.00597155626821 0.00130391710234 -1.88438320964e+12 +UniRef50_C3K0N3 Acyl carrier protein 4.67813349378e-05 0.000180353659284 53924786455.2 +UniRef50_Q56841 2 hydroxypropyl CoM dehydrogenase 6.78020574805e-06 1.47441361915e-05 3215136448.44 +UniRef50_Q1JJ05 tRNA binding domain protein 0.00987683572221 0.00673294895636 -1.2692256672e+12 +UniRef50_UPI00016A8267 200 kDa antigen p200, putative 4.04764381849e-05 6.51503689629e-05 9961168638.26 +UniRef50_UPI0004788EAB ABC transporter permease 4.74140650917e-05 4.77377737214e-05 130685146.161 +UniRef50_UPI0003B710E4 cell division protein FtsE 5.25224570381e-06 2.60590823259e-05 8399975272.94 +UniRef50_Q5HRH0 Putative proline betaine transporter 0.0106044747624 0.00295210003071 -3.08935758438e+12 +UniRef50_B7V1I5 S adenosylmethionine decarboxylase proenzyme 0.000302988852055 0.000245628829824 -23156944861.3 +UniRef50_R5AXK8 0.000170552324163 0.000452502517123 1.13826752816e+11 +UniRef50_UPI0003B4A2CD malate 2.54942038101e-06 8.30538828073e-06 2323754874.79 +UniRef50_A6LWR4 0.000294910928794 0.000597153298126 1.2201895343e+11 +UniRef50_Q117Z9 Urease subunit gamma 6.30590054317e-05 0.000301230619932 96152803468.0 +UniRef50_C4RQ17 2.50504730316e-06 5.04240247938e-05 19345479244.9 +UniRef50_A5UNG0 Adhesin like protein 0.00125873468737 0.000197204604465 -4.28552720906e+11 +UniRef50_Q8R7X4 Adenylate kinase 2.57098751413e-05 2.32835156277e-05 -979551110.42 +UniRef50_P64431 0.00331600042713 0.00188963547567 -5.75841034371e+11 +UniRef50_Q1JUP4 Alpha ketoglutaric semialdehyde dehydrogenase 3.87733130644e-06 0.000217231615782 86133742794.4 +UniRef50_S4MLD0 9.74171285999e-05 0.000122977495711 10319033863.7 +UniRef50_Q5HR73 Transcriptional regulator, AraC family 0.011413428387 0.00470203394701 -2.7094722935e+12 +UniRef50_UPI0004213A8C peptidase A8 2.13353404522e-05 3.93123750277e-05 7257549461.15 +UniRef50_A5D374 3 dehydroquinate synthase 7.16800415583e-06 8.24463255052e-06 434648094.652 +UniRef50_R7FWE0 0.000194734272667 9.53517459074e-06 -74767148541.8 +UniRef50_UPI00046C2C33 PREDICTED 7.70441504522e-07 3.32486112089e-06 1031250545.38 +UniRef50_C1MJW7 Predicted protein 2.51638470224e-05 1.37523272278e-05 -4606970576.18 +UniRef50_J2ERM5 Lipid A biosynthesis lauroyl acyltransferase, putative 0.00107463562395 0.00175174970381 2.73359263164e+11 +UniRef50_R9SHL8 NIF3 family protein HcgD 0.00168158460299 0.00061738684013 -4.29629696042e+11 +UniRef50_G7LXR2 ABC type transporter, periplasmic subunit 0.000574731400072 0.00173186548858 4.67149231164e+11 +UniRef50_UPI00046EDA0B hypothetical protein 2.30892756435e-06 1.76813920814e-05 6206052566.87 +UniRef50_U6A8G4 7.73241885198e-05 0.000157700559074 32448927121.7 +UniRef50_UPI00047EFD61 16S rRNA methyltransferase 5.05310554108e-06 2.67056119001e-05 8741382523.26 +UniRef50_A3PH04 Peptidoglycan binding domain 1 protein 0.000654494611194 0.00021062066472 -1.79197359137e+11 +UniRef50_D9SWT0 Glycoside hydrolase family 25 0.000438614058638 0.000229520755339 -84413532405.2 +UniRef50_G8VBC9 Adhesion protein associated protein 2.02724100369e-05 0.00112918932164 4.47683365154e+11 +UniRef50_Q0STL9 UPF0313 protein CPR_1216 0.000543588191351 0.00346246438639 1.17838613858e+12 +UniRef50_UPI0003ADD74A PREDICTED 6.50635033466e-06 6.0462818029e-05 21782888128.5 +UniRef50_G7M2T3 Polypeptide transport associated domain protein FtsQ type 0.000435868790852 0.00175127044922 5.31043791277e+11 +UniRef50_J7M2N5 Dipeptide binding protein 0.00138219464662 0.000111370221954 -5.13047415009e+11 +UniRef50_F7Y2V0 3.8513870353e-05 1.2156179353e-05 -10640923301.9 +UniRef50_U4TGN7 Flagellar hook capping domain protein 9.22735781369e-06 1.27196950471e-05 1409899396.92 +UniRef50_Q9CJ30 Deoxyuridine 5 triphosphate nucleotidohydrolase 0.00358737846247 0.00777911931586 1.69225722096e+12 +UniRef50_UPI00037A20A6 hypothetical protein 5.86399775903e-05 1.27828825155e-05 -18513072011.5 +UniRef50_A9WSA8 Carbamoyl phosphate synthase large chain 1.7903862796e-05 1.28707693694e-05 -2031921579.32 +UniRef50_A1WY04 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.00321483652709 0.00255638889886 -2.65823387577e+11 +UniRef50_E2CNB5 5.23277799828e-05 1.75406498866e-05 -14043991305.9 +UniRef50_UPI0003B6AB3A aspartyl glutamyl tRNA amidotransferase subunit B 6.84635372768e-06 4.92178919875e-06 -776970317.392 +UniRef50_UPI00037A3B64 primase 7.38559934055e-06 4.13141244382e-05 13697361931.7 +UniRef50_E7AA86 Iron sulfur cluster binding protein 0.00066050630372 0.00310791581001 9.88049250781e+11 +UniRef50_K7ABS1 Outer membrane porin 2.76743889324e-05 1.25472025264e-05 -6107030783.55 +UniRef50_Q5HJP2 Diacetyl reductase [ acetoin forming] 0.0407539317131 0.0116645142498 -1.17437547972e+13 +UniRef50_B7UPF3 Endonuclease V 0.00529424507325 0.00152209418782 -1.52286360194e+12 +UniRef50_UPI0003773FBD hypothetical protein 3.88781014384e-06 1.15485073028e-05 3092717450.4 +UniRef50_Q3K0J6 Hydroxymethylglutaryl CoA synthase 0.00367270616483 0.00206097234666 -6.50676720593e+11 +UniRef50_J0QZG9 1.44213013312e-05 4.29641696374e-06 -4087540065.46 +UniRef50_UPI0003F49121 hypothetical protein TREMEDRAFT_73008 2.50428558928e-06 8.01616600275e-06 2225213761.3 +UniRef50_Q6F9W5 0.000174492752936 0.005488365364 2.14527558163e+12 +UniRef50_P23917 Fructokinase 0.0044001890309 0.00120696168346 -1.28914506547e+12 +UniRef50_Q8R6A7 Phosphoglucosamine mutase 4.81213232443e-06 2.45168419463e-05 7955033078.34 +UniRef50_A6VA35 Chain length determinant protein 0.000781129981653 0.000273232029468 -2.05044635906e+11 +UniRef50_Q9RW71 Acetyltransferase, putative 0.000185953689091 0.0293529362252 1.17750687689e+13 +UniRef50_Q57048 0.000850477203954 0.000124343875878 -2.93148935202e+11 +UniRef50_Q2FD92 RND family drug transporter 0.000414303096162 0.00721502732448 2.74553582524e+12 +UniRef50_R0NCH4 4.3975539085e-05 4.65782748484e-05 1050756366.84 +UniRef50_Q6SJ08 Conjugal transfer mating pair stabilization protein 1.47250638384e-05 5.99658829922e-06 -3523792685.61 +UniRef50_UPI000362B2C8 hypothetical protein 1.01559307998e-05 0.00141400066872 5.6674934781e+11 +UniRef50_UPI0001B41070 amino acid ABC transporter, ATP binding protein 0.000129390426984 6.04634648434e-05 -27826660445.1 +UniRef50_X5KFC2 0.000789365746259 0.000194714311118 -2.4006808156e+11 +UniRef50_R5SPQ8 Chaperone protein DnaK 1 0.000201531775885 7.58984150561e-05 -50719729461.4 +UniRef50_S4P442 Electron transfer flavoprotein ubiquinone oxidoreductase 2.83256789965e-05 1.60572241206e-05 -4952925784.27 +UniRef50_A8LI45 0.0165957897851 0.00434299393816 -4.94660404211e+12 +UniRef50_B0UAY7 Extracellular solute binding protein family 1 1.08503489289e-05 5.10770219809e-06 -2318376955.43 +UniRef50_F0YKH0 0.000199733727808 0.000230522189833 12429679936.4 +UniRef50_Q9APM5 Taurine pyruvate aminotransferase 0.0083904931814 0.00162058439364 -2.73309525374e+12 +UniRef50_G7T9W9 Sulfate transporter 9.56467877165e-05 0.000150671788373 22214267997.7 +UniRef50_UPI00037F5A09 hypothetical protein 1.84208287026e-05 1.16958653124e-05 -2714950245.2 +UniRef50_B9KRK1 0.00310017541237 0.00253637094856 -2.27614780699e+11 +UniRef50_Q9WZG8 Ribosomal RNA small subunit methyltransferase I 2.05686903717e-05 3.19064316194e-05 4577185271.43 +UniRef50_UPI00028822B1 hydrolase 2.48736718932e-05 7.06244252838e-06 -7190611862.93 +UniRef50_F5M323 Membrane bound O acyl transferase, MBOAT family protein 0.0102927601028 0.00154852242795 -3.5301560532e+12 +UniRef50_P17994 0.00325909053489 0.00156894185148 -6.82333763949e+11 +UniRef50_P28812 0.00975403314738 0.00272376260833 -2.83820648774e+12 +UniRef50_C5Q6U5 0.000152350288831 0.00010003164567 -21121678266.0 +UniRef50_UPI00036A99F9 hypothetical protein 8.87388077666e-05 0.0001179895762 11808894163.9 +UniRef50_Q9ZHY3 P protein 1.16069173476e-05 0.00332056243583 1.33586594826e+12 +UniRef50_P39172 High affinity zinc uptake system protein ZnuA 0.00271996381117 0.00132254518611 -5.64155047192e+11 +UniRef50_M9VFY7 Penicillin binding protein, transpeptidase domain protein 7.94150046685e-05 0.00700982622691 2.79789205613e+12 +UniRef50_A5UNT4 0.00258901453086 0.00042903153298 -8.72011642216e+11 +UniRef50_D5QG08 Phosphoribosylformylglycinamidine synthase, purS 0.000114349883209 3.3886271005e-05 -32484147646.3 +UniRef50_UPI00046DCA03 PilS cassette, partial 9.65754206323e-05 0.000193890322085 39287219904.6 +UniRef50_G5ZXS6 UPF0301 protein HIMB100_00008270 1.69252303548e-05 2.49509351062e-05 3240075494.61 +UniRef50_UPI0003654549 hypothetical protein 0.000432500213705 0.000150929213104 -1.13673668207e+11 +UniRef50_F0KGG0 4.40438359604e-05 0.00862258232802 3.46326125975e+12 +UniRef50_O66534 Riboflavin biosynthesis protein RibD 7.99008982048e-06 0.000149397405478 57087868594.0 +UniRef50_P0AEC9 Sensor histidine kinase DcuS 0.00319039390462 0.000515131843978 -1.08003612304e+12 +UniRef50_Q58633 0.00265981376781 0.00149151887943 -4.71654983029e+11 +UniRef50_P55717 Probable ATP synthase y4yI 0.000700693356076 0.000190322258993 -2.0604307485e+11 +UniRef50_UPI00036C881F hypothetical protein 3.80133611782e-06 2.89019007353e-05 10133405954.7 +UniRef50_Q1MM06 Glucose 6 phosphate isomerase 0.00320092349052 0.00182371178004 -5.55997267809e+11 +UniRef50_Q5LXV7 Late competence protein, ABC transporter subunit 0.00695358199347 0.000973913268815 -2.41406564293e+12 +UniRef50_Q58639 0.00395508565504 0.00219761601247 -7.09512061283e+11 +UniRef50_F7XUY9 Putative polyhydroxyalkanoate synthesis repressor PhaR 1.17159934907e-05 1.57622196361e-05 1633511147.68 +UniRef50_Q5HKM3 Immunodominant antigen B, putative 0.00675371370149 0.00411738827427 -1.06431692632e+12 +UniRef50_B4U552 Zinc binding lipoprotein LraI, laminin binding protein 0.000232061058724 0.00690599172841 2.69434770969e+12 +UniRef50_B9E943 0.0268514967504 0.00547305927367 -8.63073755227e+12 +UniRef50_F5XY47 Xanthine and CO dehydrogenases maturation factor like protein 6.61640802432e-06 2.18635623757e-05 6155463315.28 +UniRef50_Q49X88 DNA mismatch repair protein MutS 0.0232366489346 0.00446585496443 -7.57799986931e+12 +UniRef50_A0A022L535 5.53050374006e-06 1.90659496241e-05 5464425601.97 +UniRef50_Q097G2 4.17972315101e-05 9.85045064166e-06 -12897307467.7 +UniRef50_C9LYM2 ATP dependent protease, Lon family 0.000502178351593 0.00200766925822 6.07785153457e+11 +UniRef50_T4JEK7 N 6 DNA Methylase family protein 0.00050499592194 0.00188522985676 5.57217376862e+11 +UniRef50_Q7VM29 GTPase Der 0.00464102051613 0.000977635539588 -1.47895346982e+12 +UniRef50_Q4EKV3 0.000605592495486 0.000932204239129 1.31857168885e+11 +UniRef50_R6C033 Thiazole biosynthesis protein ThiH 3.00393758387e-05 5.27926625725e-05 9185781068.66 +UniRef50_A6T533 UPF0255 protein KPN78578_02430 0.00460145529896 0.00106798316623 -1.42650606056e+12 +UniRef50_UPI000219720B hypothetical protein 0.00011176315459 7.20723728053e-05 -16023655667.1 +UniRef50_C4RDJ1 0.0006601387699 3.47549539175e-05 -2.52475120834e+11 +UniRef50_UPI00046600C4 branched chain amino acid ABC transporter ATPase 2.75307179198e-05 1.24895016408e-05 -6072323588.31 +UniRef50_UPI0002BA38E1 hypothetical protein, partial 0.000765174301733 0.00935200985958 3.46661088703e+12 +UniRef50_P37751 Putative glycosyltransferase WbbK 0.00124242801533 0.00127474790833 13047937413.8 +UniRef50_UPI0003605B6F hypothetical protein 7.32014649759e-06 0.000128039337073 48735818626.2 +UniRef50_A5WHU9 0.000166537936259 0.00426099378549 1.65298207096e+12 +UniRef50_C5N5T1 SagB type dehydrogenase domain protein 0.00826640204784 0.00158178013846 -2.69866389435e+12 +UniRef50_B0SHK4 Argininosuccinate lyase 1.79443471265e-05 1.18705643804e-05 -2452060628.3 +UniRef50_D8JF32 Lon protease C terminal proteolytic domain protein 9.25463766047e-05 0.0083599719159 3.33766114294e+12 +UniRef50_UPI0002626C4E Tagatose bisphosphate aldolase 1.37592967312e-05 8.17206239203e-06 -2255635065.8 +UniRef50_UPI0000164C98 putative transposase, partial 8.90646083249e-05 0.022534112041 9.06134108029e+12 +UniRef50_B2IIK5 tRNA 2 methylthio N dimethylallyladenosine synthase 0.00283529462655 0.000343206776653 -1.00608644636e+12 +UniRef50_UPI000360793E hypothetical protein 3.27990943662e-06 4.39839517319e-06 451546417.217 +UniRef50_UPI0002FF7139 hypothetical protein 4.57962792289e-06 5.94186673981e-06 549952526.941 +UniRef50_E4R7C5 2 dehydropantoate 2 reductase 0.00128325717802 0.000187502669965 -4.42369541324e+11 +UniRef50_Q9Z4J7 Quinoprotein ethanol dehydrogenase 0.000658076984911 0.000410896603562 -99789753195.0 +UniRef50_X6FMB7 Chromosome partitioning protein ParA 0.000180493864917 7.3105313456e-05 -43354076030.5 +UniRef50_UPI00039DA7C1 amino acid carrier protein 1.00886320051e-05 0.0010270824368 4.10572878911e+11 +UniRef50_P92514 Cytochrome c oxidase subunit 3 0.0176488810023 0.00365712121956 -5.64864512248e+12 +UniRef50_A0A014M9H7 Delta 1 pyrroline 5 carboxylate dehydrogenase 0.000103356143755 0.00652886886295 2.59405833464e+12 +UniRef50_G0LQ70 0.0160834247792 0.00240467853155 -5.52227771725e+12 +UniRef50_A0A057ZZ67 Oxidoreductase 3.51587918784e-05 0.00128729154829 5.0550135916e+11 +UniRef50_Q59102 Ribulose bisphosphate carboxylase small chain, plasmid 0.000616978232434 7.2922485264e-05 -2.19641981447e+11 +UniRef50_X8CBL8 1.34184975827e-05 0.000106464503483 37563814384.8 +UniRef50_Q8Q0F9 Macro domain containing protein MM_0177 0.00336768677592 0.0241323868818 8.38296424428e+12 +UniRef50_UPI0003C1AFD0 PREDICTED 7.65688706517e-05 0.000105876166497 11831714973.7 +UniRef50_A0A023WMU7 Diguanylate cyclase 6.8395287659e-06 2.47341182178e-05 7224265353.04 +UniRef50_Q1GFH6 Ppx GppA phosphatase 0.000887298551983 0.00122727254959 1.37251674784e+11 +UniRef50_A6V2C1 0.000199728036426 0.000276420460614 30961672766.6 +UniRef50_P23847 Periplasmic dipeptide transport protein 0.0195928634865 0.00463529660483 -6.03855330013e+12 +UniRef50_Q6FEQ6 Non canonical purine NTP pyrophosphatase 6.91280530797e-06 1.95580226552e-05 5105029417.33 +UniRef50_Q8DSP3 0.00345208400235 0.000322750497486 -1.26335033715e+12 +UniRef50_S6D6U3 0.000561117856197 4.70724959189e-06 -2.24629789812e+11 +UniRef50_V5ES07 9.15720396785e-06 1.15091343153e-05 949503142.696 +UniRef50_D3QI46 0.0111450922195 0.00152642008399 -3.88317597549e+12 +UniRef50_Q1IWL4 Chaperone protein DnaK 0.000121557148449 0.0538468163581 2.1689546426e+13 +UniRef50_UPI00047938D7 hypothetical protein, partial 2.33121490903e-05 5.24018868805e-05 11743884117.1 +UniRef50_R0RZA1 Sterol O acyltransferase 2 domain protein 0.000302796247737 0.000550279574895 99912056135.6 +UniRef50_M9VB96 Enoyl CoA hydratase isomerase family protein 0.000584976996731 0.01037028875 3.95045043407e+12 +UniRef50_Q4L4I8 Prolipoprotein diacylglyceryl transferase 0.00990272145363 0.00578867130651 -1.66089252946e+12 +UniRef50_UPI00042857FF exodeoxyribonuclease III 4.81492674034e-05 1.88977653902e-05 -11809190319.0 +UniRef50_Q3IUW3 0.0410016311801 0.00299746071371 -1.53427499809e+13 +UniRef50_UPI00047DBE48 methionine ABC transporter substrate binding protein 3.96821010926e-05 1.3901883067e-05 -10407790375.8 +UniRef50_D4MBK3 TraX protein 9.23220574168e-06 0.00115119549306 4.61024592556e+11 +UniRef50_K2HST1 ATP synthase F0, subunit I 2.70549741286e-05 3.12669875198e-05 1700441493.24 +UniRef50_UPI000466EE81 hypothetical protein 4.66222063836e-05 0.000187304464177 56795153836.5 +UniRef50_UPI0003808063 hypothetical protein 6.02084529942e-06 1.74391398486e-05 4609705627.74 +UniRef50_UPI000415D4ED theronine dehydrogenase 9.52748937748e-06 6.29519064491e-06 -1304918663.1 +UniRef50_T0V4W6 Proteinase 0.00463076684351 0.00167356114966 -1.1938602276e+12 +UniRef50_A0A024E6L7 Carbamoyl phosphate synthase L chain, ATP binding 7.65691660987e-05 0.00830563612971 3.32217531522e+12 +UniRef50_K0TJQ0 7.06404297436e-06 5.62341495465e-05 19850575408.2 +UniRef50_O27367 DNA polymerase sliding clamp 0.0031317904777 0.00123649489093 -7.65154086271e+11 +UniRef50_I6U069 0.00673800652318 0.00109003907911 -2.28015376553e+12 +UniRef50_Q8NUV0 Putative surface protein MW2416 0.000773623452992 9.74642591402e-05 -2.72973763964e+11 +UniRef50_X1T4G6 Marine sediment metagenome DNA, contig 1.68114861294e-05 2.09747308137e-05 1680752967.81 +UniRef50_P00467 Nitrogenase molybdenum iron protein alpha chain 0.00042309152877 0.00172405904234 5.25216549895e+11 +UniRef50_W0IE40 0.000212864626162 0.000170227055688 -17213310422.2 +UniRef50_A7ZJG7 Crossover junction endodeoxyribonuclease RusA 0.000326356762696 0.000492194508663 66950733104.9 +UniRef50_K0S630 5.91789781506e-06 0.000143363018454 55488281843.3 +UniRef50_Q8U2H9 Isopentenyl diphosphate delta isomerase 0.004508833734 0.0015458476992 -1.19619382218e+12 +UniRef50_UPI0003B41990 GTP binding protein YchF 2.15016928992e-05 9.04287016718e-06 -5029779623.86 +UniRef50_UPI0003732AC1 hypothetical protein 1.46148649425e-05 3.16576806943e-05 6880393857.87 +UniRef50_F8JWN1 3.84843147402e-05 0.000129201723771 36623731253.5 +UniRef50_UPI0003FF1B10 hypothetical protein 1.23645744096e-05 9.88919137972e-06 -999342505.528 +UniRef50_Q8ZQU2 Succinate dehydrogenase iron sulfur subunit 0.00161719350543 0.00113956999643 -1.92822471683e+11 +UniRef50_UPI00036FEB03 hypothetical protein 1.35284103629e-05 7.8437785203e-05 26204711150.5 +UniRef50_UPI000368F721 hypothetical protein 1.74090409951e-06 3.28644557969e-06 623954061.475 +UniRef50_I2BRJ1 UPF0125 protein PflA506_4569 2.24397623493e-05 4.52297385313e-05 9200593049.13 +UniRef50_V5SY76 ATPase AAA 0.000244111058178 7.7409359159e-05 -67299521553.9 +UniRef50_A0A011Q9T7 0.000148706334406 8.44122010235e-05 -25956330624.3 +UniRef50_A0P1B5 Putative translation initiation inhibitor 2.3315335057e-05 1.82799545977e-05 -2032844882.49 +UniRef50_G6YUN6 Cytochrome c type biogenesis protein CcmF 0.00013766298652 9.20500511064e-05 -18414501760.1 +UniRef50_UPI000478A554 ABC transporter substrate binding protein 7.3499068248e-06 8.0111036962e-05 29374561115.9 +UniRef50_F0Y1G4 3.12626116811e-05 0.000188399131595 63437941371.2 +UniRef50_UPI000471C311 UTP glucose 1 phosphate uridylyltransferase 2.76002970659e-05 1.43531404295e-05 -5348039695.01 +UniRef50_A3CM87 Cation transporting ATPase, E1 E 2 family, putative 0.00720835645868 0.00692071125386 -1.16125898989e+11 +UniRef50_A6M1C8 Flagellar hook associated protein FlgK 0.000246441205932 0.0015373521008 5.21156569517e+11 +UniRef50_X1U0Y9 Marine sediment metagenome DNA, contig 3.77882028504e-05 2.96750603822e-05 -3275375173.87 +UniRef50_Q2T3V8 Aminotransferase, class III 0.000752700280662 0.000324896022302 -1.72709828849e+11 +UniRef50_H2K108 9.21752031102e-05 8.05969091573e-05 -4674299350.43 +UniRef50_Q2JU97 Sulfate adenylyltransferase 5.95862455945e-05 7.9547655755e-05 8058666235.84 +UniRef50_UPI0003B4D9C2 acetyl CoA carboxylase 7.05390615059e-06 3.5669885056e-06 -1407711442.57 +UniRef50_P46187 Protein RseC 0.0012343533184 0.000406399135599 -3.34255263737e+11 +UniRef50_A5D508 Carbamoyl phosphate synthase large chain 1.72081788734e-05 0.00569042962533 2.29034911619e+12 +UniRef50_UPI00034916BB hypothetical protein 0.000166919528265 3.57968464385e-05 -52935835709.4 +UniRef50_UPI0002889211 glucosamine fructose 6 phosphate aminotransferase , partial 1.72980137856e-05 1.97563564627e-05 992463106.002 +UniRef50_UPI00046F52F1 hypothetical protein 9.8041609194e-06 0.000951085657322 3.80006890921e+11 +UniRef50_U5QPT0 Prolyl endopeptidase 5.567639954e-05 0.0236144077809 9.51094895681e+12 +UniRef50_D3BJZ9 9.55283921125e-07 1.86227912101e-05 7132589497.26 +UniRef50_UPI0003727191 peptidase 4.68671657956e-06 8.5660168731e-06 1566121132.87 +UniRef50_X3EY52 GTPase 1.85551999817e-05 0.00371958909161 1.49415279884e+12 +UniRef50_T1XPL8 Cobalamin synthesis protein, putative 0.0250367200924 0.00676092840125 -7.37816137488e+12 +UniRef50_UPI0004157C13 hypothetical protein 7.5336730949e-05 5.15102625556e-05 -9619037674.06 +UniRef50_E9Z893 Alpha beta hydrolase 0.00241721944042 0.000242394012474 -8.78003713373e+11 +UniRef50_UPI000473D50C DNA repair protein RadA, partial 7.31417375573e-06 5.94751522108e-06 -551736821.224 +UniRef50_A5VPL4 2 isopropylmalate synthase homocitrate synthase family protein 0.00132719388278 0.000637491800334 -2.7844119428e+11 +UniRef50_UPI00047A1CF1 ATP synthase 5.60844725465e-06 4.09497577497e-06 -611007008.73 +UniRef50_F9YYK5 Conserved membrane spanning protein 9.01638508349e-05 0.00610975119033 2.4301812776e+12 +UniRef50_F6C514 Transcriptional regulator, DeoR family 0.00300216551627 0.000259429023591 -1.10727637926e+12 +UniRef50_O27552 Leucine tRNA ligase 0.00267861994676 0.000714457971558 -7.92956292366e+11 +UniRef50_Q9A0T3 Unsaturated chondroitin disaccharide hydrolase 0.000643818558623 0.00257507307191 7.79671146173e+11 +UniRef50_F7ZZ02 RDD domain containing protein 1.79405089546e-06 7.93660222491e-06 2479823349.28 +UniRef50_Q6GEA0 Lysostaphin resistance protein A 0.0227527989668 0.0048733510195 -7.21815254182e+12 +UniRef50_Q9ZLE4 Succinyl CoA 3.43924757258e-05 0.00352688937974 1.40996385791e+12 +UniRef50_L0EXZ6 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 7.86372397735e-06 6.96159948682e-06 -364198727.139 +UniRef50_B9KTS5 Animal heme peroxidase 0.00353532906952 0.00168598660914 -7.46602245239e+11 +UniRef50_Q82AZ8 1.00361758047e-05 0.00177395645239 7.12116261395e+11 +UniRef50_UPI000360375D hypothetical protein 5.84862412686e-06 4.37368570907e-05 15295944588.4 +UniRef50_G7FVR9 6.09316557814e-05 9.0232831922e-06 -20956047001.6 +UniRef50_B9UQA9 PI 1 ancillary protein 2 0.0001566331904 0.0016533890873 6.04258722839e+11 +UniRef50_A6FPM7 PhoH like protein 0.000451463530496 0.000434289272355 -6933458763.37 +UniRef50_UPI00030E455E hypothetical protein 0.000647203370722 0.00205773594541 5.69449309584e+11 +UniRef50_O27218 UPF0051 protein MTH_1150 0.00428358712802 0.000737031421257 -1.43178805995e+12 +UniRef50_UPI0003C165C4 PREDICTED 5.19766086743e-06 7.44205604633e-06 906089875.548 +UniRef50_UPI0001B4101D thiamine biosynthesis protein ThiC 2.24393917865e-05 6.20239017523e-05 15980752429.8 +UniRef50_F8IMU7 0.0050777731058 0.00141599298021 -1.4783055718e+12 +UniRef50_A6M039 0.000560947588265 0.00216165267926 6.46224288093e+11 +UniRef50_UPI00016C0F03 peptidyl tRNA hydrolase 1.79470699405e-05 2.65281089949e-05 3464270767.45 +UniRef50_UPI0004783915 hypothetical protein, partial 3.88341451504e-05 0.000721223717473 2.75489044209e+11 +UniRef50_Q4L6U2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00992061313661 0.00485236752012 -2.04611294974e+12 +UniRef50_UPI00036584C7 hypothetical protein 8.62862655521e-05 8.20961013802e-05 -1691620695.29 +UniRef50_UPI0003808BC7 hypothetical protein 6.39959282003e-06 6.87295760849e-06 191103173.94 +UniRef50_UPI000382E998 hypothetical protein 0.000256050975403 1.4443545189e-05 -97539884434.0 +UniRef50_B9EA42 0.0248866993053 0.00455613756771 -8.20769725752e+12 +UniRef50_UPI000376BE3D hypothetical protein 3.64016639192e-05 2.36890137376e-05 -5132252880.07 +UniRef50_B2TI02 Ser Thr protein phosphatase family protein 0.000389678553867 0.000270932757067 -47939135342.9 +UniRef50_E8SHY9 Metallo beta lactamase superfamily domain protein in prophage 0.000695211309805 4.12851736792e-05 -2.6399800573e+11 +UniRef50_P50867 Cysteine synthase 2.4239608372e-05 8.10625176713e-06 -6513234039.95 +UniRef50_UPI00036B0358 hypothetical protein 4.25096495263e-06 5.52649156193e-06 514945744.646 +UniRef50_W4UBJ6 Sodium dependent galactose transporter 0.000191942028225 0.00059994151876 1.64714401046e+11 +UniRef50_Q8IJN7 Enolase 8.02815177803e-06 6.42764108378e-05 22708112426.2 +UniRef50_J1AHN1 ZIP zinc transporter family protein 0.00417208768651 0.0020013292859 -8.76361804527e+11 +UniRef50_T9Q7C2 0.000345261575169 0.000540213485111 78704478372.5 +UniRef50_UPI00045DD854 PREDICTED 1.09538273435e-05 0.00024372767966 93973660636.4 +UniRef50_G0IAR7 Multidrug resistance protein MdtG 0.00338938191841 0.000629765856829 -1.11409086836e+12 +UniRef50_A3PPJ6 Binding protein dependent transport systems inner membrane component 0.00392895131657 0.000659004409589 -1.32011769311e+12 +UniRef50_A0A009I7P3 LPXTG motif cell wall anchor domain protein 7.87645652842e-05 1.88907928919e-06 -31035577064.5 +UniRef50_A0A024L4S5 Tail protein 0.00277268909009 0.000662888120069 -8.51752541766e+11 +UniRef50_K6PZY4 Putative esterase 6.36020606784e-06 9.88775311058e-06 1424114029.02 +UniRef50_D4YR40 5.59072811518e-07 2.46747619874e-06 770445866.164 +UniRef50_R7CKR0 Replicative DNA helicase 8.46381140973e-05 0.00181144651105 6.97133740171e+11 +UniRef50_UPI0003503BD0 0.000375491549437 8.74895344331e-05 -1.16269947639e+11 +UniRef50_Q9RU95 NADH quinone oxidoreductase subunit I 0.000218556774031 0.00447972561343 1.72028615089e+12 +UniRef50_P42640 Putative phosphoethanolamine transferase YhbX 0.00257770462092 0.000790124915864 -7.21667863002e+11 +UniRef50_UPI00037DFCBE hypothetical protein 3.28965499843e-05 2.12793455181e-05 -4690008002.13 +UniRef50_M4WUT5 0.000917940422378 0.00076518964315 -61667364037.2 +UniRef50_U6EDC0 Methyl viologen reducing hydrogenase subunit delta 0.0028685346852 0.000669905769279 -8.87613473568e+11 +UniRef50_Q47005 Nitrogen assimilation regulatory protein nac 0.00152553151237 0.00271491215676 4.80167561482e+11 +UniRef50_E4SRK6 Mannose specific phosphotransferase system component IIC low 0.000288899858702 0.00359824066688 1.33602149444e+12 +UniRef50_Q8CQI0 Lipoprotein signal peptidase 0.00128656128959 0.000584785554841 -2.83315475875e+11 +UniRef50_UPI00047E217B hypothetical protein 4.97748094594e-05 4.58167545483e-05 -1597915338.41 +UniRef50_B9EC33 0.0169155692712 0.00324424518435 -5.51928129985e+12 +UniRef50_UPI0003B68BAD single stranded DNA binding protein 5.44704308844e-05 0.000704227432158 2.62314874829e+11 +UniRef50_A5D3C3 Putative Holliday junction resolvase 0.00813952435013 0.00426032143025 -1.56608182193e+12 +UniRef50_E3F446 Nickel import ATP binding protein NikD, putative 0.0002881572434 0.000404543431768 46986532463.3 +UniRef50_A0A022NSU8 6.22571724302e-05 9.42500122933e-05 12915902049.0 +UniRef50_E6NXI7 0.00263083411785 0.000839364231826 -7.23238376794e+11 +UniRef50_UPI0002FB146F 30S ribosomal protein S2 1.30516516969e-05 2.45014243412e-05 4622413721.01 +UniRef50_Q9RV68 Transcription elongation factor GreA 0.000353893114548 0.0235796829397 9.37653636492e+12 +UniRef50_UPI00037DDB96 hypothetical protein 4.60648636281e-05 7.35995463982e-05 11116089322.8 +UniRef50_E1QYV1 8.70776810049e-05 0.000621869897831 2.15902180571e+11 +UniRef50_D3RCC6 Carbohydrate kinase, FGGY like protein 7.9192864794e-05 0.00016988496944 36613515562.9 +UniRef50_L5SRM4 0.00048349259828 0.000926404782403 1.78809083874e+11 +UniRef50_R5B4R5 Inner membrane translocator 0.000264903897812 0.00232392702337 8.31252902844e+11 +UniRef50_Q6LWG7 Regulator of arsenical resistance 0.00136971087067 0.000608900423076 -3.07148513888e+11 +UniRef50_A6X5J7 TonB dependent receptor 0.00767163280476 0.00235195784382 -2.14761806148e+12 +UniRef50_F7YB26 0.000222368129536 0.000170713615168 -20853561322.5 +UniRef50_A6LV07 Patatin 0.000136605303564 0.000981663178563 3.41160234163e+11 +UniRef50_A3NHB2 Aldehyde dehydrogenase family protein 0.0101330109423 0.00141861501652 -3.5181085729e+12 +UniRef50_UPI00044220DD 1.15795303126e-05 2.08746068447e-05 3752536459.42 +UniRef50_G8WCV6 PTS system ascorbate specific transporter subunit IIC 0.0122881312311 0.00442292935069 -3.175278516e+12 +UniRef50_Q6GCL3 Iron sulfur cluster repair protein ScdA 0.0199967513722 0.0103892598351 -3.87866223071e+12 +UniRef50_B7V6M6 Homoprotocatechuate 2,3 dioxygenase 0.000433597120441 0.000711151043628 1.1205192476e+11 +UniRef50_UPI00036F8CD4 hypothetical protein 3.07093601679e-06 1.16778055914e-05 3474698865.44 +UniRef50_Q5SHB3 Ribonuclease Y 0.000132957542596 0.0203274198332 8.15275224063e+12 +UniRef50_B1BJN1 Oxidoreductase, NAD binding 0.000152251361085 0.00108405933916 3.76182315319e+11 +UniRef50_X5Z4Q0 0.000899528168626 0.000223988699868 -2.72723573339e+11 +UniRef50_G0K1E8 Oxygen independent coproporphyrinogen III oxidase 0.000525080414167 0.00862928535389 3.27176698394e+12 +UniRef50_C0MDU1 Response regulator protein 0.00727253398637 0.00154935168946 -2.31051892461e+12 +UniRef50_X5WX27 Transposase IS66 8.41465536282e-05 3.11518779172e-05 -21394600902.3 +UniRef50_V7EIE7 6.28255376595e-05 3.3174602923e-05 -11970446211.0 +UniRef50_Q9FMT1 3 isopropylmalate dehydrogenase 3, chloroplastic 5.80806512214e-05 2.996207124e-05 -11351815792.3 +UniRef50_UPI00047729DA chemotaxis protein CheA 2.70733427215e-06 2.47272575441e-06 -94714337.5819 +UniRef50_B0V429 Transcriptional repressor, antitoxin for RelE like 0.000492373028943 0.00460953071179 1.66214707977e+12 +UniRef50_U5MLW0 Methyl accepting chemotaxis protein McpC 0.000273663191735 0.00579324530124 2.22832303049e+12 +UniRef50_UPI0003C19C40 PREDICTED 4.62351372674e-06 8.47917844901e-05 32364914682.5 +UniRef50_I6TP65 LrgA family protein 0.00431722220459 0.00131736270931 -1.21108009066e+12 +UniRef50_C5N355 Periplasmic binding protein 0.0128128432588 0.00401267492067 -3.55273594831e+12 +UniRef50_E6C9E2 0.000141204235229 0.00425275696547 1.65988429162e+12 +UniRef50_UPI000477A2AE hypothetical protein 7.80320327194e-05 3.85214965911e-05 -15950888283.8 +UniRef50_UPI0004747D71 hypothetical protein 2.36310013734e-05 4.01999064757e-05 6689070313.13 +UniRef50_F9YY68 0.000200704150891 0.00738218097302 2.89925031972e+12 +UniRef50_UPI0003B2F873 glycerol 3 phosphate ABC transporter ATP binding protein 1.03493182799e-05 6.50970468326e-06 -1550099126.32 +UniRef50_P59831 Ribosomal large subunit pseudouridine synthase A 2.60599231646e-05 1.55795477789e-05 -4231056151.88 +UniRef50_B2VHD6 Protein RecA 0.000108058966276 0.0050027122078 1.97603157775e+12 +UniRef50_F0KP29 Amidohydrolase 0.000203283510393 0.00487650544172 1.88663704056e+12 +UniRef50_R7PW09 CAAX amino protease family protein 0.00299477336982 0.0011068705684 -7.62169528106e+11 +UniRef50_UPI00036E74BD hypothetical protein 8.79705986538e-05 4.55135523497e-05 -17140430599.5 +UniRef50_P23877 Ferric enterobactin transport system permease protein FepG 0.00532642038654 0.00159375413827 -1.50692316939e+12 +UniRef50_B0BWD8 Ribosomal RNA large subunit methyltransferase E 0.000124945826939 5.18465737379e-05 -29511065546.0 +UniRef50_F6GSD7 Autotransporter 0.000607321802197 0.000169213110428 -1.76869855065e+11 +UniRef50_Q72PF1 Pyridoxine pyridoxamine 5 phosphate oxidase 9.33853636496e-06 0.000373912910547 1.47183148688e+11 +UniRef50_UPI00034575CD hypothetical protein 1.92509328944e-05 1.00061342966e-05 -3732238640.37 +UniRef50_C5QLR6 2.39841092416e-05 2.71768287441e-05 1288940042.23 +UniRef50_Q74KU4 Non canonical purine NTP pyrophosphatase 1.1272020185e-05 1.12717309761e-05 -116757.181922 +UniRef50_G8VH89 ABC transporter, permease protein 0.000441004202645 0.00392006677388 1.40454025291e+12 +UniRef50_A3PPU7 ATPase associated with various cellular activities, AAA_5 0.00107045890889 0.000204135971329 -3.49745200871e+11 +UniRef50_Q2S3M6 Nucleoside diphosphate kinase 5.77542370069e-05 4.01697906924e-05 -7099056762.59 +UniRef50_X5TWB1 C4 dicarboxylate ABC transporter 1.12210619093e-05 2.50499291876e-05 5582883419.53 +UniRef50_F4A6D4 Flagellar motor switch protein FliN 9.49252277069e-05 0.000913079275518 3.3029882898e+11 +UniRef50_UPI000470A84B hypothetical protein 9.41830120038e-06 0.000108799955024 40121593198.6 +UniRef50_G8LJ33 0.000114816422054 0.000583599546428 1.89253499926e+11 +UniRef50_M3I579 Valine tRNA ligase 0.00698043904907 0.00501779259376 -7.92344458389e+11 +UniRef50_G8UTA5 2.85974742877e-05 1.56993437741e-05 -5207133566.2 +UniRef50_A1B9B4 0.00587970630977 0.00206454511261 -1.54022739259e+12 +UniRef50_F3V8H4 Hca operon transcriptional activator 0.000462951182693 0.00100948486478 2.20642354181e+11 +UniRef50_Q2T0P7 Mannitol ABC transporter, permease protein 0.0136900734705 0.00161526647422 -4.87474775895e+12 +UniRef50_UPI0002F85C08 hypothetical protein 1.67061966088e-05 3.49298615559e-06 -5334335204.28 +UniRef50_UPI0000306491 50S ribosomal protein L18 7.02461102125e-05 0.000174799719393 42209575043.4 +UniRef50_Q9RZA5 Response regulator 0.000251657325899 0.0705064913023 2.83627386e+13 +UniRef50_R9YN56 0.00741481341688 0.00063464210059 -2.73723836244e+12 +UniRef50_Q7UX39 Histidinol dehydrogenase 3.82207423169e-06 1.25702241528e-05 3531735475.02 +UniRef50_UPI000248C060 NH dependent NAD+ synthetase 0.000373972066032 4.05022317255e-05 -1.34625864244e+11 +UniRef50_E6G860 Replication initiator protein A domain protein 9.51041850226e-06 4.61987531327e-06 -1974372299.11 +UniRef50_R5YAM0 Glycogen debranching enzyme GlgX 0.000340261614046 0.00157570981013 4.98765597412e+11 +UniRef50_G8VHB4 FecCD family membrane transport protein 0.000116030529356 0.0050974001078 2.01104002709e+12 +UniRef50_A0NUH2 0.000439912729906 0.0001114207344 -1.32616249636e+11 +UniRef50_A7AXT8 8.70555691176e-06 2.12106591877e-05 5048463243.64 +UniRef50_K2FH80 0.000163861306694 0.000250578460538 35008779146.0 +UniRef50_W8AHC9 3.89580662207e-06 0.000875479774968 3.51869143559e+11 +UniRef50_UPI0002F0BE77 hypothetical protein 3.35242926121e-05 0.000125844786224 37270916171.0 +UniRef50_F7ZQR5 S adenosylmethionine dependent methyltransferase 0.000438904700045 0.00150395304405 4.29973086086e+11 +UniRef50_D3DZP8 CMP N acetylneuraminic acid synthetase NeuA 0.00439305989831 0.000447838032911 -1.59273448038e+12 +UniRef50_UPI000470F84C ribonuclease D 6.86492659097e-05 1.09504522765e-05 -23293719107.8 +UniRef50_Q87F08 Anhydro N acetylmuramic acid kinase 0.00108153594866 0.00042664543238 -2.64387337833e+11 +UniRef50_B8ZKS3 Probable fructose 6 phosphate aldolase 6.84538805133e-05 0.00349222278758 1.38221752215e+12 +UniRef50_UPI00037A15A0 hypothetical protein 2.03752893926e-06 0.000673532459873 2.71090743787e+11 +UniRef50_Q64RT0 Imidazole glycerol phosphate synthase subunit HisH 3.67476873568e-05 0.00430887165149 1.72470886918e+12 +UniRef50_P0AER7 Glutamate aspartate transport system permease protein GltK 0.00257815953794 0.000264858031563 -9.33908205527e+11 +UniRef50_P56109 Fructose bisphosphate aldolase 1.51898573612e-05 0.0456819197685 1.84362192589e+13 +UniRef50_F0RL15 Diaminopimelate decarboxylase 0.00894698375312 0.00456109854004 -1.77063568138e+12 +UniRef50_Q46UT4 0.000184860117103 6.22839389907e-05 -49485507282.7 +UniRef50_A0A011GQD3 0.000768213020928 0.007802134474 2.83968040653e+12 +UniRef50_O32544 TraN 1.47000494953e-05 5.98631430783e-06 -3517841824.74 +UniRef50_F0KLF9 0.000113132663991 0.00827646225431 3.29563633093e+12 +UniRef50_E3NVW5 4.2257762563e-05 9.40346986673e-06 -13263681129.0 +UniRef50_Q9I0J6 NADH quinone oxidoreductase subunit G 0.000448092981434 0.000535738089464 35383405638.1 +UniRef50_U2R557 Raf like protein 1.32049346164e-05 2.10131069834e-05 3152255001.61 +UniRef50_UPI00016A6D7F hypothetical protein 7.95557562271e-05 0.000681470711115 2.43000453615e+11 +UniRef50_A0A034SNG1 3 methyladenine DNA glycosylase 0.0117117826086 0.00344069083943 -3.33914124492e+12 +UniRef50_UPI00034D9920 hypothetical protein 8.11865254147e-07 2.45046876323e-05 9565083137.7 +UniRef50_B9EAD9 0.0195819537959 0.00663787893714 -5.22568186216e+12 +UniRef50_A4VU30 DNA uptake protein and related DNA binding proteins 0.00506819446202 0.00211965937365 -1.19035979777e+12 +UniRef50_UPI0003B4988B glycine cleavage system aminomethyltransferase T 4.66187999727e-05 3.55044779566e-05 -4486988185.97 +UniRef50_Q48G15 Transcriptional regulator ArgR 0.0011148163917 0.00031361066038 -3.23456585634e+11 +UniRef50_UPI00035C402E hypothetical protein, partial 4.39876969726e-06 6.79998137654e-05 25676521962.9 +UniRef50_P45119 Pyruvate dehydrogenase E1 component 8.85961965422e-05 3.56238375328e-05 -21385591376.0 +UniRef50_P26905 Dipeptide transport ATP binding protein DppD 0.000763159440762 0.0033377514052 1.03939436984e+12 +UniRef50_B7GK36 Fatty acid desaturase 0.000129128616484 0.00131432195755 4.78477095748e+11 +UniRef50_Q0RPF6 GTPase Obg 0.000112235675575 0.00861007139272 3.43068055918e+12 +UniRef50_N6VD20 1.94561651828e-05 1.2963368716e-05 -2621221609.22 +UniRef50_UPI0003742A66 ABC transporter 6.71424855361e-06 9.70552736473e-06 1207615963.17 +UniRef50_P64632 4.77493015614e-05 0.00053693946399 1.97492071611e+11 +UniRef50_A6LWW1 GCN5 related N acetyltransferase 0.00100217519164 0.00118845240429 75202396625.3 +UniRef50_F0Y0N8 Expressed protein 0.000153139824143 0.00102939743285 3.53755949525e+11 +UniRef50_P52043 Propionyl CoA 0.00304292038607 0.00700024654844 1.5976211336e+12 +UniRef50_UPI00040C8409 hypothetical protein 0.000518686615852 4.75883016221e-05 -1.90188170481e+11 +UniRef50_Q9RYP5 7.32034884631e-05 0.00383347948403 1.51806956319e+12 +UniRef50_UPI00046FD691 precorrin 2 C20 methyltransferase 5.30532566322e-05 1.83032141903e-05 -14029018564.8 +UniRef50_H0E6G7 5.41094633615e-06 8.38697284166e-05 31674773123.4 +UniRef50_UPI0003B6E2B1 serine 3 dehydrogenase 1.04893032777e-05 3.41723805857e-06 -2855079512.96 +UniRef50_UPI0002F6B5AC hypothetical protein 4.57044822994e-06 6.86275181754e-06 925431088.042 +UniRef50_Q9ZDF1 CTP synthase 4.72019483423e-06 0.000109112578132 42144486176.0 +UniRef50_R9ZG59 Oxidoreductase 0.000389874525162 0.000207239793125 -73731882503.5 +UniRef50_F5YTP1 6.10867641777e-06 5.63451295406e-05 20281072596.3 +UniRef50_W5XAY0 SsrA binding protein 2.0032081053e-05 0.00093060189795 3.6760820903e+11 +UniRef50_B7QX02 8.50684875116e-05 4.49369833323e-05 -16201580706.1 +UniRef50_E8P9C7 0.000326670751027 0.00688654471952 2.64830161979e+12 +UniRef50_E6S2B8 9.66261063593e-05 0.00313873438461 1.2281364428e+12 +UniRef50_B2S553 NADH quinone oxidoreductase subunit K 3.6858137681e-05 3.50093034092e-05 -746397083.273 +UniRef50_UPI00029A5DDB F0F1 ATP synthase subunit beta 2.98253993782e-05 3.6776749916e-05 2806345514.77 +UniRef50_UPI000406B82B 2 dehydro 3 deoxygluconokinase 2.2197034944e-05 1.20422575083e-05 -4099608263.92 +UniRef50_B1W1Y7 Putative 3 methyladenine DNA glycosylase 1.67943166284e-05 3.54140289705e-05 7517006362.07 +UniRef50_K2A0T9 Membrane protein involved in aromatic hydrocarbon degradation 1.11404832896e-05 2.66285225987e-05 6252711528.7 +UniRef50_T0XUL7 4.22411920983e-06 0.00256650663099 1.03442489275e+12 +UniRef50_Q2RZV3 ATP synthase subunit beta 1.71169545259e-05 1.27775817519e-05 -1751858038.96 +UniRef50_Q1QYW0 0.000270635817945 0.000533282456823 1.06033671152e+11 +UniRef50_UPI000395C02F hypothetical protein, partial 2.29241707236e-05 0.000219923044684 79530862865.7 +UniRef50_A6LU81 UPF0246 protein Cbei_1739 0.000365416778094 0.000434289272355 27804671093.7 +UniRef50_Q8DSK3 0.00648618937898 0.00855774666994 8.36313099227e+11 +UniRef50_W4Q487 Carboxynorspermidine decarboxylase 7.71769419071e-05 0.000150577321798 29632634085.9 +UniRef50_UPI0003B66FA9 FAD dependent pyridine nucleotide disulfide oxidoreductase, partial 0.00024310258778 3.38030597174e-05 -84496787873.1 +UniRef50_UPI000309F09E cytochrome P450 6.54463190979e-06 1.05247366787e-05 1606817136.59 +UniRef50_Q9RQP9 Poly beta 1,6 N acetyl D glucosamine synthase 0.0180961403701 0.00138838769974 -6.74512478022e+12 +UniRef50_UPI0003B680A3 hypothetical protein 8.6299925328e-07 1.96896066242e-06 446490192.542 +UniRef50_Q8DSK9 0.0012510119925 0.00554755219991 1.73456600621e+12 +UniRef50_H3USC3 0.00682171677364 0.0557818322076 1.97657994089e+13 +UniRef50_UPI000378FFA7 hypothetical protein 1.79402434838e-05 1.13203208925e-05 -2672543985.69 +UniRef50_UPI0003B3F8F7 transposase, partial 0.00215274246182 0.00056970795275 -6.39090457329e+11 +UniRef50_P71285 0.0002529352368 0.00118158112352 3.74905740235e+11 +UniRef50_M9VD34 Tat pathway signal sequence 0.00019226790604 0.00591982717186 2.31228596067e+12 +UniRef50_I6RIQ3 Two component sensor 0.000380404368056 0.000382267957271 752353834.907 +UniRef50_D7A0A5 Phage head tail adaptor 3.27690035765e-05 3.41322921404e-05 550376322.678 +UniRef50_W1ETW9 Trimethylamine N oxide reductase 0.000867698665337 0.000265975169299 -2.42923159328e+11 +UniRef50_F7ZH46 Glutamate dehydrogenase 0.00731393513344 0.00260982313338 -1.89910774037e+12 +UniRef50_U6H7V4 1.81558407862e-05 2.55661703e-05 2991640959.69 +UniRef50_W4TZ21 Protein translocase subunit SecA 9.69655795694e-05 0.00525543040194 2.08253555027e+12 +UniRef50_UPI000367E627 hypothetical protein 0.0006605624953 0.00030615834861 -1.43077303047e+11 +UniRef50_R7N4P8 1.04818739005e-05 1.08885809047e-05 164192608.452 +UniRef50_Q98D26 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 0.0102405404887 0.00139937014502 -3.5692889611e+12 +UniRef50_G0DVP7 Triacylglycerol lipase 0.000201504976255 0.00762077026376 2.99524844119e+12 +UniRef50_Z5A0E9 9.1334271635e-06 1.57413183541e-05 2667686761.59 +UniRef50_UPI000474C581 sodium 8.72742393899e-06 1.04257740839e-05 685644794.6 +UniRef50_H8MJ08 3.01628678885e-06 4.06755274841e-06 424408968.358 +UniRef50_Y6XNC4 0.00326036085579 0.000431119277652 -1.14219954379e+12 +UniRef50_B0V6T3 0.000413122987161 0.00588389988141 2.20861976619e+12 +UniRef50_UPI00035C1E4A hypothetical protein, partial 0.000217035231015 6.46516329668e-05 -61519128489.0 +UniRef50_A6LWL8 0.000502712400051 0.00115531923181 2.63465386367e+11 +UniRef50_UPI000150A602 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein 2.99555503941e-06 1.35958129592e-05 4279454202.02 +UniRef50_UPI00036D39A9 hypothetical protein 8.47443115323e-06 1.25187770827e-05 1632752081.43 +UniRef50_A5IRS8 Isochorismate synthase 0.0167247503395 0.00449483479116 -4.93736698479e+12 +UniRef50_Q9KNG7 Probable chromosome partitioning protein ParB 0.000558134755183 0.00591177273773 2.16132935008e+12 +UniRef50_UPI00035F0102 hypothetical protein 0.000147125258368 1.53987812638e-05 -53179595272.5 +UniRef50_UPI0002D8E4B0 hypothetical protein 3.87150273327e-05 5.24316948847e-05 5537587013.18 +UniRef50_E3D3B9 0.000411158700507 0.00179892574703 5.60258586497e+11 +UniRef50_Q52967 0.000185010250068 2.59378315652e-05 -64219487387.7 +UniRef50_UPI0003B70D90 heptaprenyl diphosphate synthase subunit II 3.80107002644e-05 3.76805535388e-05 -133284284.481 +UniRef50_Q02500 NADH ubiquinone oxidoreductase chain 6 0.000111020452156 2.90525313383e-05 -33091455493.6 +UniRef50_Q2JTQ1 0.000423570121724 0.000872313169363 1.81163075028e+11 +UniRef50_UPI00046A3E00 PTS beta glucoside transporter subunit IIABC 5.56264755156e-06 5.32175970636e-06 -97249379.1335 +UniRef50_UPI000365A17E hypothetical protein 5.52446008369e-05 0.000174399629052 48104347087.0 +UniRef50_E8PAF3 Glycerate kinase 0.000379110464253 0.00540498261899 2.02900626326e+12 +UniRef50_Q67P14 NADH quinone oxidoreductase subunit I 1 6.61586523722e-06 5.90748662164e-05 21178342439.6 +UniRef50_M5DVC6 UPF0234 protein TOL_2827 1.4293609142e-05 5.63016835392e-05 16959175131.2 +UniRef50_UPI0003955A36 biotin synthase 9.70603932537e-06 2.17311368072e-05 4854679417.94 +UniRef50_A4WT84 Cytochrome c, monohaem 0.00196551470832 0.00056929866878 -5.6366954866e+11 +UniRef50_H9GTR8 8.80144926453e-05 4.00046662999e-05 -19382156042.5 +UniRef50_Q9X051 Ribose import ATP binding protein RbsA 2 2.54153971927e-06 3.77109179729e-06 496385262.197 +UniRef50_Q8CRJ6 Alkanal monooxygenase alpha chain 0.00916218122751 0.00515684252718 -1.61700438436e+12 +UniRef50_A0A013LFH7 0.000240055289649 0.00311473372933 1.16054296237e+12 +UniRef50_G6G0I0 Proteophosphoglycan ppg4 0.000158850899008 0.0003551640284 79254019368.5 +UniRef50_J9V068 0.000536709936758 0.000668641596675 53262430092.0 +UniRef50_C2GIT9 2.9804454217e-05 2.90417226937e-05 -307924075.725 +UniRef50_A6LV04 0.000976277779387 0.0016175401785 2.58885499696e+11 +UniRef50_UPI000367DAA4 hypothetical protein 2.47465777097e-06 4.03227315166e-06 628828443.275 +UniRef50_F2EEA5 Predicted protein 7.36124602676e-05 0.00261151012451 1.02458043056e+12 +UniRef50_K0X1N1 0.000339326745919 7.96050889419e-05 -1.04852820065e+11 +UniRef50_Q4L574 N5 carboxyaminoimidazole ribonucleotide synthase 0.0210438628288 0.00715224371664 -5.60821710493e+12 +UniRef50_UPI0004766F31 hypothetical protein, partial 2.91968702582e-06 1.30214390605e-05 4078201258.85 +UniRef50_X5E0Q9 Triose phosphate Transporter family protein 0.0141145967891 0.00484991494416 -3.74026575123e+12 +UniRef50_Q3M1P1 Binding protein dependent transport systems inner membrane component 0.0019416260242 0.00069041534662 -5.05129104621e+11 +UniRef50_P02919 Penicillin binding protein 1B 0.00317002982213 0.000921889924818 -9.07601664323e+11 +UniRef50_R4LWQ6 5.79327844407e-05 3.83720698526e-05 -7896900516.18 +UniRef50_Q4L860 Alkaline shock protein 23 0.00614141851528 0.00332041588497 -1.13887337945e+12 +UniRef50_Q5HK19 Sensor protein kinase WalK 0.0257024238417 0.00626586213568 -7.84677847415e+12 +UniRef50_W9HAI5 3.57669145021e-06 1.52063023641e-05 4695016637.32 +UniRef50_Q49WL3 Ribonuclease J 1 0.0238306703688 0.0134859834118 -4.17627706812e+12 +UniRef50_B4EWA1 Purine nucleoside phosphorylase DeoD type 4.90951776641e-05 0.0683740606187 2.75836269901e+13 +UniRef50_I6T7P3 Flavodoxin 0.0100471277956 0.00505614657222 -2.01492036611e+12 +UniRef50_Q49UP4 UPF0753 protein SSP2379 0.0106759006095 0.00412049237136 -2.64649874964e+12 +UniRef50_UPI0003B5EE25 ABC transporter permease 3.59893980663e-05 2.93798327623e-05 -2668362621.71 +UniRef50_UPI0002F44B36 hypothetical protein 3.63529986671e-05 0.000162896683754 51087238535.3 +UniRef50_P44758 Hybrid peroxiredoxin hyPrx5 1.70848174752e-05 0.00162525811508 6.49239294747e+11 +UniRef50_UPI0003613AE0 hypothetical protein 0.000115174482534 9.14419955105e-05 -9581096241.75 +UniRef50_B2UZY6 Penicillin binding protein 0.000257891648992 0.00295676336253 1.08956762964e+12 +UniRef50_Q8QZT1 Acetyl CoA acetyltransferase, mitochondrial 5.21214968188e-06 4.21961817776e-05 14930907602.1 +UniRef50_P44624 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 3.31388473841e-05 7.75350065714e-05 17923274266.1 +UniRef50_UPI0004032490 hypothetical protein 4.7350740862e-06 2.30985112234e-05 7413544917.0 +UniRef50_Q04RS9 Biotin synthase 4.52331156961e-06 1.39601880466e-05 3809782837.26 +UniRef50_D7CVJ1 Transcriptional regulator, BadM Rrf2 family 2.96269119189e-05 0.00019205421953 65573897289.8 +UniRef50_G6ES00 Transposase 0.00192783092086 0.000473770115279 -5.87022190545e+11 +UniRef50_S9R1C4 Enoyl [acyl carrier protein] reductase 2.55352243368e-05 1.92631404318e-05 -2532117239.57 +UniRef50_G8RE63 ABC transporter ATP binding protein 0.0105803422739 0.00140154196912 -3.70559431959e+12 +UniRef50_Q5KUX3 Ribose import ATP binding protein RbsA 4.15182200609e-06 4.80633108111e-06 264233345.315 +UniRef50_UPI00037AE633 hypothetical protein 1.5059497486e-05 1.53262620828e-06 -5460963928.18 +UniRef50_Z9VYD6 3.13582981848e-05 4.90501219884e-05 7142406372.61 +UniRef50_UPI00016C5052 large conductance mechanosensitive channel protein MscL 0.000362649120809 8.02820309689e-05 -1.13995059202e+11 +UniRef50_K9D9U6 Diguanylate cyclase domain containing protein 5.26048406939e-05 0.000332500823929 1.12997443142e+11 +UniRef50_I6U2X8 0.00525914523442 0.00114225995907 -1.66203710552e+12 +UniRef50_A6VYP9 Oxidoreductase FAD binding domain protein 0.000503272830884 0.000195790080794 -1.24134559449e+11 +UniRef50_Q2WGJ0 ATP synthase subunit alpha, chloroplastic 3.37791407038e-06 5.92420757458e-06 1027969934.18 +UniRef50_UPI0003625BDB hypothetical protein 5.0359112619e-05 8.78177491299e-05 15122511228.6 +UniRef50_Q6F8I3 UPF0176 protein ACIAD2917 4.45131580353e-06 1.22507488224e-05 3148726819.52 +UniRef50_Q02CT4 NADH quinone oxidoreductase subunit K 1 1.61533904911e-05 0.00122797460772 4.89227096114e+11 +UniRef50_UPI0004714BA7 hypothetical protein 1.19347282906e-05 6.85173669344e-06 -2052066083.09 +UniRef50_P42237 Probable glucarate transporter 0.00441753169118 0.00813680608618 1.50151671389e+12 +UniRef50_M9S4A5 0.000663274622552 0.000528303811067 -54489372874.6 +UniRef50_B9JZN3 1.12571250333e-06 5.38093069683e-05 21269013585.9 +UniRef50_H0HWX8 0.000223946280706 0.000181371008949 -17188159665.6 +UniRef50_UPI0003289C1D 7.88293713464e-06 3.30623185799e-06 -1847672082.67 +UniRef50_P75919 Cardiolipin synthase C 0.00400665440205 0.000575579195728 -1.38516716482e+12 +UniRef50_W1K3X1 LysR family transcriptional regulator 6.70635132853e-05 2.97591070676e-05 -15060246566.6 +UniRef50_B6I424 Glutamate ammonia ligase adenylyltransferase 0.000393291897783 0.000204501509084 -76216996636.4 +UniRef50_B7GXG8 Short chain dehydrogenase family protein 0.000234949785595 0.00584000340349 2.26282892728e+12 +UniRef50_UPI0003B70587 hypothetical protein 2.55713156476e-05 1.99118279678e-05 -2284804626.06 +UniRef50_UPI0003FE3085 chemotaxis protein CheA 1.74072366045e-05 1.67949492536e-06 -6349482316.95 +UniRef50_D5AKE9 4.85780251964e-06 2.64231847178e-06 -894418097.168 +UniRef50_Q02GV4 0.00132980279419 0.000464996096738 -3.49133076133e+11 +UniRef50_A5ULP3 Hydroxyethylthiazole kinase 0.00171930475128 0.000298299702217 -5.73677175998e+11 +UniRef50_Q49XX5 0.0160252370759 0.00290269639789 -5.29773070339e+12 +UniRef50_M9R1S6 4.9734300396e-05 8.14292138594e-05 12795625505.5 +UniRef50_U8A0B9 8.97008121123e-06 1.92801075814e-05 4162284163.9 +UniRef50_Q9HW54 0.000217154172112 0.000173375756472 -17673883615.4 +UniRef50_B1MCA4 Riboflavin biosynthesis protein RibBA 7.40731323682e-06 1.70311565424e-05 3885263640.3 +UniRef50_B0VME8 Thiol 0.000556563245085 0.00630040511786 2.3188594489e+12 +UniRef50_N9N018 8.37672113294e-05 1.73468886804e-05 -26814699322.4 +UniRef50_Q9RVZ5 Zinc metalloprotease, putative 8.52754492897e-05 0.0114766869112 4.59885259551e+12 +UniRef50_UPI00045E7E19 uroporphyrin III methyltransferase 2.98178600166e-05 1.12371780888e-05 -7501249304.86 +UniRef50_W2C810 9.05293113847e-05 1.64159061812e-05 -29920491154.4 +UniRef50_A4WN46 Dihydroxy acid dehydratase 2.10199807601e-05 1.03939223345e-05 -4289870182.81 +UniRef50_Q2YWD0 HTH type transcriptional regulator SAB2452 0.0144201868865 0.00261994393215 -4.76390288596e+12 +UniRef50_Q9RME4 Phosphopantetheine adenylyltransferase 6.16851469722e-05 1.27911579097e-05 -19739103381.2 +UniRef50_Q46482 Phosphoribosylamine glycine ligase 0.000487883062122 0.000200895717825 -1.15860312623e+11 +UniRef50_UPI000376F60F hypothetical protein 1.55247787925e-05 8.63297731949e-06 -2782304826.57 +UniRef50_UPI0004666ABA hypothetical protein 6.01243905262e-06 1.62607307604e-05 4137361123.12 +UniRef50_A7X198 0.000370043574149 1.45798313737e-05 -1.43505074989e+11 +UniRef50_UPI00036FAB93 MULTISPECIES 0.00190077304021 0.000598005961359 -5.25943056482e+11 +UniRef50_M1V095 A G specific adenine glycosylase 0.000148227482538 0.00647141028911 2.55274649319e+12 +UniRef50_A4XQ45 Urease subunit beta 8.60701513733e-05 3.71996505491e-05 -19729620891.2 +UniRef50_UPI00030D86CE flagellar biosynthetic protein FlhB 9.91249402959e-05 2.36404942187e-05 -30473997179.7 +UniRef50_P76545 0.00133622411715 0.000777149224201 -2.25705394904e+11 +UniRef50_R1EB69 2.43300382662e-06 4.23658433687e-05 16121377354.2 +UniRef50_UPI00028A03C4 beta N acetylhexosaminidase 8.09530786042e-06 1.24279897522e-05 1749156847.7 +UniRef50_D3F063 BolA family protein 3.78345731424e-05 0.000111795426022 29858903909.2 +UniRef50_D7CQX7 0.000120859975083 0.0416186949894 1.6753185231e+13 +UniRef50_W6EXE3 Raffinose transport system permease protein 0.000525204600731 0.00167692972345 4.64965565299e+11 +UniRef50_E3I496 Polyhydroxyalkonate synthesis repressor, PhaR 3.16480465812e-05 1.10626507001e-05 -8310576928.41 +UniRef50_UPI000225AC36 RNAse E 1.32467800821e-05 7.65325501882e-06 -2258174708.32 +UniRef50_A5UKL3 0.00398188714036 0.00171675281453 -9.14462523662e+11 +UniRef50_U5UJL0 0.0220308311157 0.00638544889348 -6.31623279353e+12 +UniRef50_UPI00047BF1EC excinuclease ABC subunit A 7.87508068484e-06 2.00602043417e-05 4919283948.57 +UniRef50_V4ZVN5 4.38018958171e-05 8.8669105693e-05 18113443209.5 +UniRef50_Q9RW93 Shikimate kinase 0.000507828684551 0.020336275748 8.0049874019e+12 +UniRef50_UPI0003B51C56 homoserine dehydrogenase 4.51647330146e-06 3.64723241846e-05 12900969143.9 +UniRef50_Q5HRU9 0.00413223016883 0.00216607353705 -7.93761559705e+11 +UniRef50_Q27828 Bifunctional dihydrofolate reductase thymidylate synthase 2.28788741942e-05 8.83341961194e-05 26425116688.3 +UniRef50_G7M1X8 0.00016604955521 0.00059236275891 1.72107871785e+11 +UniRef50_C5KZL8 9.69760616004e-06 5.36348956922e-06 -1749736053.31 +UniRef50_UPI0002555E19 hydrolases of HD superfamily protein 1.86084292886e-05 0.000102252056623 33767958777.6 +UniRef50_D7GDS1 0.000555127442285 0.00238034160775 7.36861356493e+11 +UniRef50_E4BHA0 4 phosphoerythronate dehydrogenase 0.000238412203486 0.00607172090438 2.3549783053e+12 +UniRef50_B4F2G7 Prolipoprotein diacylglyceryl transferase 0.00128756849185 0.000233065040062 -4.257159837e+11 +UniRef50_A9KSS0 UvrABC system protein C 0.000372256634095 0.00159225960061 4.925301687e+11 +UniRef50_Q2FW88 0.000500897000195 0.000553816090173 21364086014.4 +UniRef50_P17855 Staphylocoagulase 0.0132376312781 0.00265877636947 -4.27081354375e+12 +UniRef50_Q6A6L8 Conserved membrane spanning protein 0.000117277378725 0.00560292978463 2.21462519279e+12 +UniRef50_B6ASY9 4.31546223661e-05 3.52506632775e-05 -3190925276.55 +UniRef50_K7KA74 2.13245459195e-05 2.07889820164e-05 -216213719.79 +UniRef50_B0S1E5 Translation initiation factor IF 2 0.000500509660907 0.00114409778029 2.59824421509e+11 +UniRef50_I6T4B3 6.33706676712e-05 6.36533679428e-05 114129568.767 +UniRef50_G8QKA4 6.87620772728e-05 2.06995529004e-05 -19403430882.6 +UniRef50_G2A420 Prepilin type N terminal cleavage methylation domain protein 5.71346966362e-05 7.39380445127e-05 6783717738.01 +UniRef50_B8FRJ8 Proton translocating NADH quinone oxidoreductase, chain M 0.0001538141831 0.000776576743153 2.51416887649e+11 +UniRef50_A9E7Y1 0.000896849751893 0.00011975785162 -3.1372153613e+11 +UniRef50_C4JB45 6.58096548847e-05 6.11950423154e-05 -1862975721.89 +UniRef50_P0A4I5 Sensor protein CiaH 0.00354618237767 0.00297614907758 -2.30129438342e+11 +UniRef50_D8JKU2 0.000695619257029 0.00969717804176 3.63403974294e+12 +UniRef50_UPI000307CD30 hypothetical protein 5.05932232876e-05 9.04697160414e-05 16098629464.3 +UniRef50_O33832 Fructose 1,6 bisphosphatase inositol 1 monophosphatase 7.21098269097e-06 2.57826292291e-05 7497601607.16 +UniRef50_M9VC77 Methylmalonyl CoA mutase, small subunit 7.64657641136e-05 0.00769249042903 3.07468261636e+12 +UniRef50_I4KUA6 Iron ABC transporter, periplasmic iron binding protein 0.000575712232199 0.000249563412836 -1.31670280673e+11 +UniRef50_A3SN26 4.22036483988e-06 7.77131779435e-06 1433563282.81 +UniRef50_A6LX02 NADH 0.000138189354568 0.00160228524652 5.91073478057e+11 +UniRef50_UPI0000165EF1 hypothetical protein DR_A0286, partial 9.39185305452e-05 0.0352218831095 1.41815903691e+13 +UniRef50_E2PX18 Sugar kinase 0.000119457591412 0.00521751341722 2.05814769706e+12 +UniRef50_UPI0003673178 hypothetical protein 1.94303615504e-05 3.46953521549e-06 -6443581452.76 +UniRef50_UPI0001FFDF12 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 9.08334799347e-05 1.57589244687e-05 -30308519310.0 +UniRef50_E3HCS4 TRAP transporter solute receptor, TAXI family 1.40683717345e-05 2.56442763708e-05 4673334754.0 +UniRef50_E2SCH3 Ribonucleoside diphosphate reductase subunit beta 0.000570026814461 0.00437711343014 1.53696758496e+12 +UniRef50_UPI0003EA9CC0 PREDICTED 2.65273054864e-05 7.05734689415e-05 17781976694.0 +UniRef50_J1K020 2.06627742094e-05 3.74426508071e-05 6774242094.73 +UniRef50_UPI00037CD073 hypothetical protein, partial 1.18738267055e-05 3.46023470964e-05 9175782592.12 +UniRef50_A5UJU7 Serine acetyltransferase, CysE 0.00261350542105 0.000557201330567 -8.30155195016e+11 +UniRef50_UPI000395575D signal peptide protein 2.20514565551e-05 9.65755770203e-06 -5003569057.24 +UniRef50_Q16B11 Membrane protein, putative 0.00743414003025 2.04927068313e-05 -2.99298040015e+12 +UniRef50_UPI00036A093B hypothetical protein 0.000449485524703 0.000275313896873 -70315223481.2 +UniRef50_B9KVZ4 DoxX family protein 0.00144484181353 0.000204350017516 -5.00801760595e+11 +UniRef50_L6P508 DNA topoisomerase IV subunit A 0.00353284008632 0.000899602066631 -1.06307050201e+12 +UniRef50_A6LYN3 Drug resistance transporter, EmrB QacA subfamily 0.000109522047056 0.00158495094711 5.95648752499e+11 +UniRef50_P12045 N5 carboxyaminoimidazole ribonucleotide synthase 4.01472980422e-06 0.000864585509472 3.47422984143e+11 +UniRef50_W0YU10 Phosphatidylethanolamine 0.00120031983903 0.000151444464203 -4.23443859967e+11 +UniRef50_Q9JSN0 Pimeloyl [acyl carrier protein] methyl ester esterase 0.000692993024142 0.00480896423553 1.66166808668e+12 +UniRef50_J1AY66 0.000227131568354 0.0138707980335 5.50811557858e+12 +UniRef50_A4WX23 0.0002609505722 0.000403408097292 57511851030.1 +UniRef50_UPI00035E0126 hypothetical protein 2.30383464608e-05 1.48941801892e-05 -3287899864.0 +UniRef50_I1ZJ75 N acetylneuraminate lyase 0.000379469604023 0.00300509355431 1.05999660876e+12 +UniRef50_UPI000374FB7B hypothetical protein 2.716693052e-06 4.24508526211e-06 617030690.703 +UniRef50_A0A024JM61 Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2 3 protein complex that nucleates branched actin filaments 9.10167578266e-06 1.68957908953e-05 3146579915.52 +UniRef50_C7J807 Os10g0561000 protein 5.8700968243e-05 0.000314223304134 1.03157502611e+11 +UniRef50_UPI0004673F99 transposase, partial 0.000155122375566 3.28414597034e-05 -49366306289.5 +UniRef50_Q9RS38 Guanylate kinase 0.000665668358082 0.0387675489486 1.5382196757e+13 +UniRef50_UPI00046A1E34 hypothetical protein 8.0416508865e-05 0.000260671293239 72771068426.7 +UniRef50_Q9RTJ0 0.000313700267745 0.100472575923 4.04353671895e+13 +UniRef50_N6YR38 Proline glycine betaine ABC transporter periplasmic protein 0.0001959397886 5.45655276388e-06 -76900419799.2 +UniRef50_K9VMS4 UDP galactopyranose mutase 0.000238664680596 0.0547696078905 2.20148109438e+13 +UniRef50_Q5LX45 Membrane protein 0.00416133359018 0.000978281425483 -1.28503721933e+12 +UniRef50_Q5HXL7 0.00137535638915 0.000848947598611 -2.12517688503e+11 +UniRef50_Q83L33 UPF0061 protein YdiU 0.0039166675244 0.000328726023827 -1.44849601277e+12 +UniRef50_UPI00042B6AB1 GMP synthase 3.0600809089e-06 3.81968825197e-06 306662805.828 +UniRef50_I0ZPZ0 Hydrogenase 1 large subunit 0.00141060494847 0.000760707140905 -2.62371720057e+11 +UniRef50_B2TCX7 Periplasmic binding protein LacI transcriptional regulator 9.93134968576e-06 9.35612586909e-05 33762420519.7 +UniRef50_P42765 3 ketoacyl CoA thiolase, mitochondrial 7.97204612988e-06 1.64645272475e-05 3428518841.65 +UniRef50_A4VJJ6 RNA binding S1 0.000682174827427 0.000211191922662 -1.90141578264e+11 +UniRef50_U6HHG3 Thymidylate synthase 1.22132270647e-05 5.65571551578e-05 17902187932.4 +UniRef50_K8WD83 3.05824656255e-05 1.45608493609e-05 -6468123093.36 +UniRef50_I0QGZ0 Putative polysaccharide biosynthesis protein 1.12857081252e-05 6.64808613997e-06 -1872264905.46 +UniRef50_P52052 0.00347043158911 0.000182670126934 -1.32730964765e+12 +UniRef50_Q6ADC9 50S ribosomal protein L20 0.033961800351 0.0172376889532 -6.75172899922e+12 +UniRef50_P21332 Oligo 1,6 glucosidase 2.7498218324e-05 0.000900706111549 3.52524741961e+11 +UniRef50_A0A024HC94 LysR family transcriptional regulator 0.000194246649494 0.000600667478795 1.64077076133e+11 +UniRef50_Q8CSM8 Aspartokinase 0.0153412784405 0.00491240024303 -4.21026610506e+12 +UniRef50_C7LDR5 Glutamine amidotransferase, putative 0.00511390510548 0.000972852655583 -1.67179369045e+12 +UniRef50_UPI0003467BCD hypothetical protein 7.21337449315e-05 3.83870064577e-05 -13623972440.9 +UniRef50_Q30SK1 Polysaccharide deacetylase 0.000185004913382 0.00874764169265 3.45684154316e+12 +UniRef50_UPI0003C7F3E1 protein tyrosine kinase 1.87733561182e-05 3.15141895913e-05 5143630820.7 +UniRef50_R5PQB3 AmiC protein 1.40974905583e-05 3.60753415439e-05 8872728141.45 +UniRef50_Q4KC87 Fe ions import ATP binding protein FbpC 1.92586739354e-05 1.65824878376e-05 -1080409168.18 +UniRef50_Q49Y71 D tyrosyl tRNA deacylase 8.96476724282e-06 4.17489335343e-05 13235370238.8 +UniRef50_UPI00029CB5BC L carnitine dehydratase bile acid inducible protein F, partial 9.5283238065e-06 0.000165939169361 63144977727.5 +UniRef50_Q5HR28 Response regulator SaeR 0.0145538576158 0.00254241007237 -4.84916877031e+12 +UniRef50_UPI000411F9DF hypothetical protein 1.90760319639e-05 0.000110758449319 37013316956.0 +UniRef50_M1WNQ8 0.00031151163683 0.000361085846407 20013716750.2 +UniRef50_K7YE63 0.000179755232787 0.00132069569557 4.60611665738e+11 +UniRef50_Q8EDH1 3 oxoacyl [acyl carrier protein] synthase 3 2.7716453189e-05 1.80745131138e-05 -3892569528.27 +UniRef50_UPI000411E306 indole 3 glycerol phosphate synthase 2.29060948712e-05 1.16354238464e-05 -4550108199.4 +UniRef50_UPI000464983B histidine kinase 0.000105025276587 7.27094247687e-05 -13046305939.1 +UniRef50_P77599 Probable fimbrial chaperone YfcS 0.00259997291813 0.000520391958389 -8.39552352775e+11 +UniRef50_Q9Z6P2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.8338745651e-05 3.44847885327e-05 -9630135209.63 +UniRef50_Q6LWM9 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 5.55563764806e-06 1.1446013559e-05 2378017038.29 +UniRef50_M2XTQ6 2.94835901563e-06 9.9100522092e-06 2810520971.83 +UniRef50_D2ZNU9 0.00270032530065 0.000113220462059 -1.04444597069e+12 +UniRef50_O33925 Methionine tRNA ligase 8.59994846826e-06 1.62269579521e-05 3079117322.56 +UniRef50_A3DIZ4 DNA directed RNA polymerase subunit beta 0.000108622261922 0.00177434470421 6.72472590665e+11 +UniRef50_D2ZNU3 0.00230319135532 0.000509483617324 -7.241418251e+11 +UniRef50_Q6GJ92 Protein VraC 0.00538301300108 0.00252408789129 -1.15418314978e+12 +UniRef50_D2ZNU0 0.00408801440118 0.00151644061144 -1.03817589568e+12 +UniRef50_F3U4T8 Aldehyde dehydrogenase EutE 0.000211160489009 0.00886505932093 3.49368515373e+12 +UniRef50_G8AVK1 5.74268745739e-05 6.18563059841e-05 1788215815.53 +UniRef50_X6CFN2 Transposase 3.54010595625e-05 3.5415083322e-05 5661563.80103 +UniRef50_W4HGN2 6.58086108151e-05 4.14145599604e-05 -9848177678.71 +UniRef50_Q8DWZ2 Pseudouridine synthase 0.00601695535068 0.0108420113307 1.94793430923e+12 +UniRef50_UPI0002F4B1FA hypothetical protein 3.0170871773e-05 4.57207759576e-05 6277687138.11 +UniRef50_L0GPC8 Acyl CoA dehydrogenase 0.000704723695002 0.000332704819631 -1.50188585172e+11 +UniRef50_E4R6V3 ATP dependent helicase HrpB 5.22833779594e-05 9.07735774225e-05 15538965851.1 +UniRef50_B9KQM1 Major facilitator superfamily MFS_1 0.00062687744687 0.00043385957659 -77923682827.7 +UniRef50_Q72M00 Ketol acid reductoisomerase 0.000193989710217 0.00511738440251 1.98763485412e+12 +UniRef50_UPI000369FF3F hypothetical protein 1.06934374895e-05 3.47331607848e-06 -2914851614.48 +UniRef50_R7U816 9.01592520477e-06 2.65831131546e-05 7092089348.97 +UniRef50_UPI00035CB92A hypothetical protein 7.77805858294e-06 1.63246722254e-05 3450372806.2 +UniRef50_UPI000464C182 hypothetical protein 2.58302114497e-06 3.39968459782e-05 12682146576.1 +UniRef50_UPI000379A4AF hypothetical protein 1.95337917903e-05 6.11270902781e-05 16791725006.7 +UniRef50_Q3J4T6 ThiF family protein 0.0146518265403 0.00292045267691 -4.7360995888e+12 +UniRef50_W7X462 3.66599653055e-06 0.000258895280269 1.03039193861e+11 +UniRef50_UPI00035D977C hypothetical protein 9.15942036928e-06 2.2224132396e-05 5274384567.22 +UniRef50_I4VTW8 0.00013296511865 6.65102560551e-05 -26828643522.4 +UniRef50_G4P1D7 6.71920246833e-06 0.00143375068931 5.76110122883e+11 +UniRef50_J8V4X4 0.000133075796983 9.50465709992e-06 -49887185559.2 +UniRef50_Q9K3C5 B type flagellar hook associated protein 2 0.00118983305001 0.00026679866902 -3.72640306511e+11 +UniRef50_Q3JGP3 V4R domain protein 0.000250543797907 0.000835801995839 2.36275916431e+11 +UniRef50_S5S8C8 Aldo keto reductase protein 0.00429067220178 0.000668854683766 -1.46217217672e+12 +UniRef50_G0D373 4.16234263799e-05 1.07187798473e-05 -12476585047.9 +UniRef50_P31449 0.00132715307768 0.00155111395961 90415756344.2 +UniRef50_UPI0004715D35 hypothetical protein, partial 4.01598140582e-05 0.000167549333427 51428712214.5 +UniRef50_W4SJE9 0.000113276190287 3.91412388612e-05 -29929189628.8 +UniRef50_Q9KPW2 UDP 3 O acylglucosamine N acyltransferase 0.00324577631464 0.000646210240034 -1.04947672458e+12 +UniRef50_UPI0003ACD77D 1.64466244913e-05 4.44052004578e-06 -4847011696.12 +UniRef50_J9YSZ8 Transcriptional regulator RofA 0.000247944520113 0.000249037400741 441209320.677 +UniRef50_Q7VJB6 Phosphoglycerate kinase 5.24292543885e-06 0.00536357131581 2.16322292528e+12 +UniRef50_B0UVX7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.0217650896e-05 5.07997876713e-05 235015759.81 +UniRef50_UPI00037525E2 hypothetical protein 0.00011260505332 4.39055975949e-05 -27734813313.3 +UniRef50_A6V9P7 Conserved exported protein 4.3849392214e-05 1.65787259339e-05 -11009502626.0 +UniRef50_B7V5G9 Diaminopimelate epimerase 0.00433347813722 0.014378396602 4.05525684925e+12 +UniRef50_Q4JUY7 Ribonuclease 3 1.7361772528e-05 6.14774878368e-05 17810055630.9 +UniRef50_Q5HLV2 Staphylococcal secretory antigen SsaA 0.037140013015 0.00966400716106 -1.10924007317e+13 +UniRef50_B3PJA9 tRNA pseudouridine synthase D 5.38255502605e-06 7.38968624151e-06 810303501.951 +UniRef50_UPI00016A3B06 nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial 5.63671260145e-06 2.51609597342e-05 7882178156.93 +UniRef50_A6GVN8 Uroporphyrinogen decarboxylase 9.83420976293e-06 1.01164115729e-05 113928333.691 +UniRef50_A5UM22 Possible glycosyltransferase 0.0043846249373 0.00030923215204 -1.6452860781e+12 +UniRef50_Q31YX9 Elongation factor P like protein 0.00390680773216 0.00107780422863 -1.14210343015e+12 +UniRef50_U5MSB5 Stage V sporulation protein D 0.000399610756021 0.00150644936997 4.46844330889e+11 +UniRef50_M4MR97 Ribonuclease J 0.000171159783699 4.62956254521e-05 -50409192939.8 +UniRef50_UPI000363EEDE hypothetical protein 0.000141220999367 0.000102523335063 -15622721953.3 +UniRef50_A6M3E8 0.000465858794105 0.00259423366875 8.59251054989e+11 +UniRef50_P50360 6.78975678529e-06 6.87673967639e-06 35116060.5372 +UniRef50_P50361 0.000414994839979 7.28571198646e-05 -1.38125196112e+11 +UniRef50_T1XMS1 High affinity iron permease 0.0128122881096 0.0044895675244 -3.35998443151e+12 +UniRef50_D8HC44 0.00183352507788 0.000172029148656 -6.70766295474e+11 +UniRef50_D3E0N8 Dolichol kinase 0.00225569794777 0.000773755559468 -5.98278327635e+11 +UniRef50_UPI0002558256 3 hydroxyacyl CoA dehydrogenase NAD binding protein, partial 5.09684253994e-06 8.52092167556e-06 1382342765.23 +UniRef50_Q8XCJ6 Glucose 6 phosphate 1 dehydrogenase 0.00302398627218 0.002064214654 -3.87471579981e+11 +UniRef50_O53553 1.2618632476e-06 5.79145262757e-06 1828650817.01 +UniRef50_D3R582 Glycosyltransferase 0.000453766970837 0.0108386291823 4.19249631137e+12 +UniRef50_UPI0003DE98F5 7.656692621e-06 0.000627041524768 2.50053257444e+11 +UniRef50_Q9T4F6 Light independent protochlorophyllide reductase subunit N 5.96604285672e-05 2.72096305511e-05 -13100785375.2 +UniRef50_UPI000262CF64 shikimate kinase 1.67483645531e-05 1.65260915312e-05 -89734346.5377 +UniRef50_O26249 Probable cobalt precorrin 6B C methyltransferase (decarboxylating) 0.0027494184603 0.000341406595601 -9.72143939408e+11 +UniRef50_Q9A1B6 Non canonical purine NTP pyrophosphatase 0.00619033570964 0.00920366996397 1.21652001624e+12 +UniRef50_Q6AIT3 1.44839375134e-05 0.00026804462307 1.02365560299e+11 +UniRef50_Q1IZX0 NADH quinone oxidoreductase subunit D 1.36418783139e-05 0.000112195006889 39787107388.7 +UniRef50_M1LR90 Pleiotropic regulatory protein DegT 0.000526039296542 0.00154851677335 4.12786704598e+11 +UniRef50_Q881N5 TonB dependent receptor, putative 0.00129327083135 0.000453655687352 -3.38962936868e+11 +UniRef50_R6GWD9 GTP binding protein TypA 1.70688504294e-05 2.05476873716e-05 1404449163.7 +UniRef50_UPI000361993A molybdenum metabolism regulator 4.4226573398e-05 3.09072792455e-05 -5377162495.48 +UniRef50_C6S8I9 8.21812747825e-05 0.0049085116792 1.94844881e+12 +UniRef50_UPI000365A3DC hypothetical protein 0.000115712334465 2.63589003369e-05 -36073077847.5 +UniRef50_I3ZMM6 Endopolygalacturonase 7.1040862917e-06 1.03087780987e-05 1293773408.48 +UniRef50_A4BHS1 Phenol hydroxylase, putative 5.4750490027e-05 7.51635541821e-05 8241004495.88 +UniRef50_UPI000362A7CA hypothetical protein, partial 1.10319819596e-05 8.24373726249e-06 -1125648599.83 +UniRef50_W0NLZ2 Replication protein RepA 0.000140659120767 3.39387252408e-05 -43084333280.4 +UniRef50_U7J5E9 1.23230321256e-05 1.22181263849e-05 -42351734.8588 +UniRef50_M0YA73 0.000595056610429 0.000324523851863 -1.09217394443e+11 +UniRef50_I6T572 Integrase 0.00770168863285 0.00224185936166 -2.20420007642e+12 +UniRef50_Q5LNW6 Bacterial type II III secretion system protein 0.0112812311519 0.00277581706003 -3.43374004206e+12 +UniRef50_F0YCD9 0.000338615323502 0.000666692651771 1.32448843384e+11 +UniRef50_E2LMJ8 1.67675642795e-05 3.7307595473e-05 8292262647.34 +UniRef50_UPI00047D6BC3 hypothetical protein 1.81867098803e-05 1.91875867654e-05 404066280.655 +UniRef50_Q8XE94 Pyrimidine specific ribonucleoside hydrolase RihB 0.00365556008667 0.000508312631116 -1.27058241887e+12 +UniRef50_UPI0003B5EAE5 branched chain amino acid ABC transporter permease 4.80785666029e-05 1.22299618811e-05 -14472521638.0 +UniRef50_Q9KF57 Phosphoribosylformylglycinamidine synthase 2 1.89818054931e-05 0.00384261638498 1.54364820101e+12 +UniRef50_Q9K0Y9 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000451398238643 0.00288592028218 9.82846423922e+11 +UniRef50_K7RRN0 Integral membrane protein 0.0012832687334 0.0208896770386 7.91534763049e+12 +UniRef50_J5III2 0.000651031440774 0.00184259116595 4.81047283137e+11 +UniRef50_B9KQG4 Flagellar hook associated protein FlgK 0.0013213104412 0.000918990110348 -1.62421654591e+11 +UniRef50_F8JV08 0.000173433224809 2.46948653296e-05 -60047500946.6 +UniRef50_Q9KXU5 60 kDa chaperonin 2 0.00232197681639 0.00287579608967 2.2358363675e+11 +UniRef50_UPI00045DE6E8 PREDICTED 0.000130365761628 0.000344360207441 86392183781.9 +UniRef50_M9RHS9 0.000192168524892 0.000363327048997 69098796532.5 +UniRef50_E8U7S3 0.000988097606963 0.0286343634284 1.11611367699e+13 +UniRef50_G0AF05 Methionine ABC transporter substrate binding protein 4.34134383867e-05 1.03656729646e-05 -13341788442.6 +UniRef50_UPI00037AFDDF hypothetical protein 4.67174722923e-06 7.05812295456e-06 963409164.439 +UniRef50_UPI000319862A hypothetical protein 0.000663921895969 6.11436615497e-05 -2.43348970156e+11 +UniRef50_B1VYS6 9.14009658218e-05 4.2858431686e-05 -19597216714.5 +UniRef50_P77552 0.00264027280994 0.000146559158908 -1.00674280223e+12 +UniRef50_C6STR4 0.00156939618896 0.000637374183882 -3.76268720646e+11 +UniRef50_K0TBE2 0.000105296157079 8.22609206691e-05 -9299607612.81 +UniRef50_UPI0004786C6A hypothetical protein 1.16300484585e-05 0.000119978472902 43741588532.7 +UniRef50_UPI0003AE56AA PREDICTED 3.43240621507e-06 0.000155449651556 61371227405.5 +UniRef50_Q0BTM6 3 oxoacyl [acyl carrier protein] reductase 0.000173689872173 0.000229818447619 22659794682.6 +UniRef50_Q797S1 Putative PTS system EIIBC component YbbF 1.2339034572e-05 1.3736655603e-05 564236760.953 +UniRef50_P19994 Methionine aminopeptidase 1 1.19577634368e-05 0.000851264625898 3.38838479829e+11 +UniRef50_UPI000369A8C8 MULTISPECIES 3.82774819717e-06 1.02967645974e-05 2611621304.53 +UniRef50_A5UMG5 Adhesin like protein 0.00348806394214 0.00114594488543 -9.45542204227e+11 +UniRef50_UPI00036FF434 hypothetical protein 5.12717286721e-06 8.1166132018e-07 -1742224968.82 +UniRef50_A9KCZ5 Uroporphyrinogen decarboxylase 5.18063270852e-06 9.1211091838e-06 1590818708.15 +UniRef50_A0A023S0A3 LysR family transcriptional regulator 0.000492640676188 0.00855461688721 3.25471872796e+12 +UniRef50_UPI000370F363 hypothetical protein 3.06108513412e-05 1.52506782587e-05 -6201090363.93 +UniRef50_Q3JUP4 7.42262273789e-05 0.000223996547545 60464116139.5 +UniRef50_E6K2Y0 Carbohydrate kinase, FGGY family protein 0.000400509962594 0.00404560303575 1.47156880396e+12 +UniRef50_UPI00035EBFF4 hypothetical protein 4.51553951965e-05 0.000524776383849 1.93628878731e+11 +UniRef50_UPI0001C39734 geranylgeranyl pyrophosphate synthase 0.000512486443546 0.000193466065931 -1.28792441263e+11 +UniRef50_UPI0003ABA403 PREDICTED 3.884304285e-05 4.77654846108e-05 3602099229.51 +UniRef50_UPI000359FA90 PREDICTED 2.51507806092e-05 2.53861897644e-05 95037564.7494 +UniRef50_UPI00036A2ED5 50S ribosomal protein L22 2.00311241373e-05 0.000267576776929 99937217758.9 +UniRef50_UPI0003AB3C4C hypothetical protein 1.15419330705e-05 3.69382909768e-05 10252821335.1 +UniRef50_Q3J1M2 0.0084781763127 0.00379929130798 -1.88892329278e+12 +UniRef50_Q3J1M3 0.0111713945957 0.00443200657402 -2.72077364594e+12 +UniRef50_X2GZX1 rRNA methyltransferase 0.00778223829134 0.00126900973086 -2.62947029617e+12 +UniRef50_A0A017HLL9 0.000621987396137 0.000254478279452 -1.4836794025e+11 +UniRef50_G4ZKG2 3.9310066092e-06 3.96287593136e-05 14411620827.5 +UniRef50_UPI0003B5AE6D magnesium transporter MgtC 3.68884408859e-05 2.99766504351e-05 -2790374622.19 +UniRef50_Q5XD38 PTS system, N acetylgalactosamine specific IID component 0.000145186918795 0.00350361006186 1.35583663534e+12 +UniRef50_UPI0003664D62 hypothetical protein 3.75627410691e-05 1.03087919726e-05 -11002753693.8 +UniRef50_A3MWA6 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.4761761234e-05 3.46627179166e-05 -8114230430.23 +UniRef50_S9QMF6 Flagellar protein FlaF 7.88625487296e-05 0.000126739334149 19328445788.0 +UniRef50_UPI000190F922 leucyl phenylalanyl tRNA protein transferase 1.23126621967e-05 1.56043956143e-05 1328913174.8 +UniRef50_UPI000372C446 hypothetical protein 2.77812997365e-05 9.79024586966e-05 28308772355.6 +UniRef50_G8R9S1 ATP dependent RNA helicase YqfR 0.00683359776063 0.000962295054923 -2.37031695128e+12 +UniRef50_Q8EA37 Ribosomal protein S12 methylthiotransferase RimO 0.00472247166933 0.00177545839701 -1.18974542196e+12 +UniRef50_Q9X0N9 Glucose 6 phosphate 1 dehydrogenase 3.72852330483e-05 6.08325691857e-06 -12596620654.9 +UniRef50_G1LNR6 0.000175215747882 0.000313728366028 55919243686.5 +UniRef50_Q5M1U0 Heat inducible transcription repressor HrcA 0.00480432146388 0.00547582336896 2.71093559336e+11 +UniRef50_UPI000369E51E hypothetical protein, partial 0.00101992099789 0.00110743764448 35331544178.4 +UniRef50_UPI000219386D riboflavin synthase subunit alpha 1.08504547571e-05 2.43771243706e-05 5460882513.87 +UniRef50_UPI0003B6FF8D fructose 1,6 bisphosphatase 1.82252392599e-05 8.78650333153e-06 -3810533520.6 +UniRef50_Q8DYP7 DNA primase 0.0057853992887 0.00518434594258 -2.42652611583e+11 +UniRef50_A7ZUE4 Regulator of ribonuclease activity A 0.00459994995714 0.00115810472625 -1.3895151559e+12 +UniRef50_Q6A8H1 Methionyl tRNA formyltransferase 0.000645753413816 0.00501209604202 1.76274610005e+12 +UniRef50_P31827 0.00260776453685 0.00032868268965 -9.20093309194e+11 +UniRef50_B8EJY2 Chromosomal replication initiator DnaA 1.11306320944e-05 7.06116979016e-06 -1642891870.14 +UniRef50_UPI00036188FB hypothetical protein 2.16687420003e-06 1.26171858346e-05 4218919046.63 +UniRef50_Q9RZE7 Probable chromosome 2 partitioning protein ParB 0.00105174340572 0.0688892658729 2.738684028e+13 +UniRef50_F2IXW0 0.000103248970526 3.7202208411e-05 -26663888350.7 +UniRef50_Q5LQ23 Paraquat inducible protein A, putative 0.00549384836872 0.000403675941204 -2.05496507243e+12 +UniRef50_A5UL46 Phosphoserine phosphatase, HAD family, SerB 0.00398212833509 0.0009030078007 -1.24307874479e+12 +UniRef50_Q72GT4 Adenylosuccinate synthetase 3.22196207208e-06 0.018358241974 7.41014682023e+12 +UniRef50_B9TIG4 0.000231463038226 7.54532104517e-05 -62983081928.2 +UniRef50_Z1ADI7 Gluconate permease 0.00449956918919 0.00033189428584 -1.6825415016e+12 +UniRef50_E1CJT9 Iron responsive element binding protein 2 variant 5.41648192658e-06 0.000196735958347 77238020384.7 +UniRef50_P37025 2 5 RNA ligase 0.00620023403597 0.00335633958389 -1.14811508881e+12 +UniRef50_Q53075 UvrC protein 0.000633200204603 0.0011505845657 2.08874415595e+11 +UniRef50_UPI00016C40E6 nitrogen regulatory protein P II 6.16548274712e-05 0.00015595679295 38070860679.0 +UniRef50_Q6D108 Lysophospholipid transporter LplT 0.00278474003868 0.00137515475267 -5.69066877519e+11 +UniRef50_D6ZIN1 ABC transporter, permease protein 0.000659590373902 0.00410860970857 1.39241142963e+12 +UniRef50_K0HR37 FGGY family pentulose kinase 7.53465047635e-05 0.00528944597554 2.10499594055e+12 +UniRef50_U4V4Z3 Beta barrel assembly machine subunit BamF 2.16898364873e-05 2.04290860271e-05 -508980431.931 +UniRef50_E1TCG3 ABC transporter related protein 0.00120758768849 0.000850484406558 -1.44166977066e+11 +UniRef50_UPI00046669DC hypothetical protein 1.67271051802e-05 9.56954393577e-05 31880485557.9 +UniRef50_UPI0003B73A84 cation 1.62468764931e-05 9.60888883334e-05 32233199951.6 +UniRef50_O67221 Aspartokinase 0.000478463991519 0.0146951138716 5.73943601451e+12 +UniRef50_F5X3Q6 PTS system, ascorbate specific IIA component 0.00696618626906 0.00169100897242 -2.12965380836e+12 +UniRef50_G2JDJ5 Metal dependent hydrolase 0.00031787927103 0.00398611418686 1.48091144982e+12 +UniRef50_H4XIK4 0.00142908435036 0.000350871332905 -4.3528782631e+11 +UniRef50_F8H8U4 Molybdopterin oxidoreductase, alpha subunit 0.000312890358937 0.000241487819835 -28826081243.2 +UniRef50_I7DHA8 0.00729821620769 0.000727581512224 -2.65264585732e+12 +UniRef50_B7V4R0 3 oxoacyl [acyl carrier protein] synthase 3 0.000339599830546 1.63959458137e-05 -1.30481374424e+11 +UniRef50_UPI00046E82BD aldehyde reductase 1.23381501676e-05 1.78737578453e-05 2234792749.03 +UniRef50_UPI0002DD2F26 hypothetical protein 9.721842731e-06 3.83368244004e-05 11552219245.2 +UniRef50_W6RY62 0.000105307844385 8.17297154518e-05 -9518779986.51 +UniRef50_B8EK13 Ribonuclease 3 1.62580458921e-05 1.10043198863e-05 -2120993659.01 +UniRef50_UPI00036C7A0B hypothetical protein, partial 2.90121310539e-05 5.69591923211e-05 11282571582.6 +UniRef50_P08722 PTS system beta glucoside specific EIIBCA component 0.00317674987716 0.000835476250198 -9.45200893862e+11 +UniRef50_P33129 Outer membrane usher protein HtrE 0.00340121723708 0.00160651236238 -7.24544381422e+11 +UniRef50_J9W5M6 Dihydroxyacetone kinase like protein 0.00609524465966 0.00403337492469 -8.32402113994e+11 +UniRef50_D0K567 0.00786277116182 0.00149253474715 -2.57174261219e+12 +UniRef50_A0A059DS58 7.42126342029e-06 2.70479018812e-05 7923514792.6 +UniRef50_UPI000345DC68 hypothetical protein 3.04155881709e-05 0.00154131839423 6.09970003669e+11 +UniRef50_I0IQG7 0.00277973394983 0.000492194508663 -9.23507743666e+11 +UniRef50_UPI0003955356 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.00384652055e-05 5.39176298386e-06 -5913053422.11 +UniRef50_A3PRH2 0.00209010455792 0.00142712026016 -2.67654896738e+11 +UniRef50_W9VLN3 0.000299409999387 0.000114163445567 -74786307008.0 +UniRef50_C5NXP6 0.000139329468257 2.71893151479e-05 -45272355924.5 +UniRef50_Q4L3R2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0210289624462 0.00576617765803 -6.16177351443e+12 +UniRef50_A1T8W3 Imidazoleglycerol phosphate dehydratase 0.000197729040071 5.6728808985e-05 -56923523556.8 +UniRef50_P0ABQ1 Coenzyme A biosynthesis bifunctional protein CoaBC 0.00339552680294 0.00047370016204 -1.17957726978e+12 +UniRef50_UPI00037505DF hypothetical protein 9.14717318743e-06 3.87908318052e-06 -2126792582.52 +UniRef50_D7BBF8 6.61600542306e-05 0.00201738535236 7.87733597082e+11 +UniRef50_G2JJD3 Tartrate ABC transporter permease 0.000172704518955 0.0101441416207 4.02559152127e+12 +UniRef50_D3QMJ7 0.00190419958755 0.0009859610215 -3.70704177169e+11 +UniRef50_Q12LS2 Phenylacetic acid degradation related protein 1.79330039519e-05 1.7590328866e-05 -138342137.274 +UniRef50_UPI00036A4E56 hypothetical protein 1.73829551202e-05 1.45991973041e-05 -1123837190.91 +UniRef50_C5C1Y1 Tryptophanyl tRNA synthetase 0.000361448329027 0.00528067435261 1.98595191141e+12 +UniRef50_UPI000378A2EB MULTISPECIES 0.000324782051752 0.000105207235497 -88645047808.1 +UniRef50_B0S2Q1 Phosphoglucosamine mutase 4.26567203703e-06 4.93799597279e-06 271425423.209 +UniRef50_UPI000300932B hypothetical protein 1.47026792325e-05 6.1828537951e-05 19025287464.0 +UniRef50_G0DWG7 1.43641601296e-05 4.9688902033e-05 14261031789.7 +UniRef50_Q4J6M5 Glyceraldehyde dehydrogenase small chain 4.15104147303e-05 6.96146839455e-05 11346038360.3 +UniRef50_D4HCV7 ABC transporter, ATP binding protein 0.000325418955908 0.00558689604923 2.12412286816e+12 +UniRef50_G2JE23 Pilus assembly protein tip associated adhesin PilY1 0.000311663915056 0.0099456786112 3.88936995549e+12 +UniRef50_UPI0003B58E0A peptide ABC transporter ATPase 8.404532654e-05 1.91264296289e-05 -26208555327.5 +UniRef50_UPI00047856FC hypothetical protein 4.82051192337e-05 0.00183969061925 7.23244680357e+11 +UniRef50_P00894 Acetolactate synthase isozyme 3 small subunit 0.00129027817478 0.00674204447632 2.20094495663e+12 +UniRef50_V9WQS7 Acetyltransferase 0.000609620367238 0.000425162143439 -74468048504.6 +UniRef50_P25535 2 octaprenylphenol hydroxylase 0.00358980571024 0.00206286269928 -6.16445631222e+11 +UniRef50_D3RW29 0.00022288257911 8.53142991038e-05 -55538002791.1 +UniRef50_A0A032NY89 3.41301759814e-05 5.78740269445e-05 9585684003.62 +UniRef50_F4QWW5 Major Facilitator Superfamily protein 8.36700636039e-06 1.55304285251e-05 2891961432.97 +UniRef50_J2VJJ9 Replication protein C C terminal region Replication protein C N terminal domain containing protein 7.33101607037e-05 3.42804282268e-05 -15756781949.6 +UniRef50_F0N8C1 RNA polymerase sigma 54 factor 0.000133230349002 0.000981366542265 3.42402989022e+11 +UniRef50_UPI0000167295 COG2986 8.49978967294e-06 0.000202731999643 78413926662.1 +UniRef50_A3M4V3 Transketolase 4.13187269337e-05 3.20712919809e-05 -3733302969.23 +UniRef50_UPI00029ADE1C hypothetical protein, partial 6.40974846752e-05 5.26422996327e-05 -4624598772.59 +UniRef50_M4JVT9 4.95488878208e-05 7.48297263889e-05 10206184760.7 +UniRef50_Q1WTX2 Orotidine 5 phosphate decarboxylase 0.00985968067363 0.000809153548648 -3.65380886281e+12 +UniRef50_P52636 Putative electron transport protein YccM 0.00338180255861 0.000756378500466 -1.05991590985e+12 +UniRef50_A0A022J9C0 LysM domain protein 9.88012857229e-05 0.00545749684895 2.16337115747e+12 +UniRef50_UPI0003717E93 phosphoribosylglycinamide synthetase 3.80104609535e-06 1.85205881819e-06 -786830080.553 +UniRef50_Q477A8 UPF0225 protein Reut_A0143 1.06365357121e-05 4.09504417917e-05 12238095877.8 +UniRef50_J9GTB9 0.000216988050358 6.62234888158e-05 -60865503583.7 +UniRef50_B2IQJ8 ABC transporter, ATP binding protein 0.00651252059147 0.0080417205855 6.17356802984e+11 +UniRef50_UPI00037869C0 hypothetical protein 5.27263515652e-06 2.02890891998e-06 -1309532086.69 +UniRef50_UPI0003B48C4E oligoendopeptidase F 6.89702668053e-06 2.3308920584e-05 6625682965.43 +UniRef50_V9VRW6 1.01024317528e-05 8.06657674151e-06 -821899650.808 +UniRef50_P69000 Methionine aminopeptidase 3.21085758449e-05 1.46511363955e-05 -7047782532.6 +UniRef50_W3XFA1 6.56847886425e-05 3.34728779988e-05 -13004343611.5 +UniRef50_G2DTB6 2.91432466295e-05 3.76755951594e-05 3444613805.21 +UniRef50_UPI000476FFD2 ABC transporter permease 3.71039723924e-05 0.000308177028173 1.09435519059e+11 +UniRef50_R5AEA5 Mg chelatase subunit ChlI 0.00010984073391 0.000123219765733 5401279326.13 +UniRef50_A3PN05 AAA ATPase 0.00359766749321 0.00102517479797 -1.0385468691e+12 +UniRef50_Q8CPF5 Competence damage inducible protein cinA 0.0107119571584 0.00328177633201 -2.99965517819e+12 +UniRef50_Q62JH0 Probable allantoicase 1 0.000561652021897 0.00019218006846 -1.49160361533e+11 +UniRef50_UPI00029A69ED cytochrome D ubiquinol oxidase subunit I 5.41843034317e-06 4.6270300692e-06 -319498002.175 +UniRef50_Q163Q7 NADH quinone oxidoreductase chain E 0.0019474412232 0.00019492851828 -7.07510884725e+11 +UniRef50_L8UAB9 0.000596236424086 0.000461585564471 -54360204378.4 +UniRef50_E4ZDG9 0.000177779900556 0.00298042064289 1.13146045995e+12 +UniRef50_Q9RWD6 Histidine biosynthesis bifunctional protein HisIE 7.86921459788e-06 0.0383623957438 1.54841930228e+13 +UniRef50_L0DG52 Plasmid pRiA4b ORF 3 like protein 5.61486672853e-06 8.48735501021e-06 1159658768.71 +UniRef50_A0A038HZQ1 TRAP transporter, DctM like membrane domain protein 1.63473293198e-05 2.99788110195e-05 5503196439.26 +UniRef50_D3PQT0 GntR family transcriptional regulator 9.98640182185e-05 0.0193876752654 7.78672608855e+12 +UniRef50_UPI000252BB4B PREDICTED 2.71327722017e-05 1.02713576566e-05 -6807159964.68 +UniRef50_W5P358 0.000446052229735 0.000914278031195 1.89028501826e+11 +UniRef50_UPI000248DC75 coenzyme PQQ synthesis D 0.000165677315042 9.31906359365e-05 -29263761866.5 +UniRef50_D6X9W8 7.48074100732e-06 0.000431119277652 1.71028075873e+11 +UniRef50_H7PTJ4 1.10769098286e-05 8.91828124211e-05 31532311343.8 +UniRef50_F3P3J8 ABC transport system, ATP binding protein 7.78856923336e-05 0.00528017904842 2.10022966717e+12 +UniRef50_A1W4G0 Peptidyl tRNA hydrolase 0.00177296057255 0.00397638065773 8.89547727392e+11 +UniRef50_B2VGJ3 Undecaprenyl diphosphatase 0.000136398723153 1.63111161787e-05 -48480840576.1 +UniRef50_Q5LI12 Orotate phosphoribosyltransferase 2.35182702902e-05 0.00373377385895 1.4978757111e+12 +UniRef50_C6SU74 0.00139217855268 0.000553718822241 -3.38496482236e+11 +UniRef50_P13254 Methionine gamma lyase 2.48121756659e-05 1.81668953318e-05 -2682781217.64 +UniRef50_UPI00047299A3 ribose ABC transporter permease 0.000105887828451 0.000396398262003 1.17282626989e+11 +UniRef50_UPI0003A95AEA outer membrane specific lipoprotein transporter subunit LolC 5.55947455382e-05 3.21292874096e-05 -9473293400.07 +UniRef50_J9P159 0.000144794009571 0.000199774452129 22196279346.6 +UniRef50_J9P154 4.41084522678e-05 6.90142849256e-05 10054790272.9 +UniRef50_V4IPG8 4.85868155729e-05 0.000990246758972 3.80159674617e+11 +UniRef50_A8LRM2 Cyclopropane fatty acyl phospholipid synthase 0.0065076016993 0.00359761266482 -1.1747982828e+12 +UniRef50_A0A024C3E3 Chemotaxis protein 0.0002575136657 0.00357581125079 1.33963745519e+12 +UniRef50_A6LX83 0.000963235291789 0.0089036895237 3.20565881375e+12 +UniRef50_Q6ACB0 Adenylosuccinate synthetase 8.81393748779e-06 0.00157007814884 6.30301520988e+11 +UniRef50_Q1GPC0 Adenylate kinase 0.00430389203933 0.000343107303681 -1.59901740208e+12 +UniRef50_Q9CG80 DNA topoisomerase 1 0.000403560207721 0.00631382858999 2.38604787307e+12 +UniRef50_UPI0004777C32 glutamine amidotransferase 1.29548783282e-05 0.000137053244503 50100033283.0 +UniRef50_X1EYE5 Marine sediment metagenome DNA, contig 5.79846479806e-05 3.00052660746e-05 -11295619821.1 +UniRef50_Q98I87 Carbamoyl phosphate synthase large chain 1.98996469225e-05 1.521406373e-05 -1891627433.38 +UniRef50_I3THI3 1.48045422185e-05 1.50694436784e-05 106943970.068 +UniRef50_A7HQ34 Phosphate ABC transporter, periplasmic binding protein 4.78744612236e-06 6.87137539019e-06 841307818.111 +UniRef50_P0A966 Chemotaxis protein CheW 0.000778781722001 0.000352968173539 -1.71906154834e+11 +UniRef50_UPI000237708B glycerol 3 phosphate ABC transporter ATP binding protein 5.42349780944e-06 8.10033014743e-06 1080670063.27 +UniRef50_Q54EW1 Serine hydroxymethyltransferase 2 4.23086521099e-05 0.000107918778212 26487613034.2 +UniRef50_Q9KBM8 Cobyrinic acid A,C diamide synthase 1.15566399624e-05 0.000148468090337 55272832608.8 +UniRef50_K0CGP1 TENA THI 4 family 0.000710501875895 0.00415082416175 1.3889003243e+12 +UniRef50_Q8DX74 ABC transporter, ATP binding protein 0.000959954177836 0.000196877803461 -3.08063296335e+11 +UniRef50_UPI00036C4041 hypothetical protein 2.7053667057e-06 4.49030705795e-06 720602323.885 +UniRef50_Q54GJ2 Bifunctional purine biosynthetic protein purD 2.41840108691e-06 3.49880062847e-06 436170552.921 +UniRef50_R4REY9 Pyrazinamidase nicotinamidase PncA 0.000302796247737 0.000279921047585 -9234999011.63 +UniRef50_A6LRA0 Guanine specific ribonuclease N1 and T1 0.000475793368374 0.00115194776431 2.72971826987e+11 +UniRef50_P76034 0.00302023652592 0.00109856163522 -7.75803734978e+11 +UniRef50_P76035 0.00320916495316 0.000867475708581 -9.45368683795e+11 +UniRef50_Q6GDM0 0.00843707371088 0.00362532752967 -1.94256098012e+12 +UniRef50_Q5HF86 Glyceraldehyde 3 phosphate dehydrogenase 2 0.015148917976 0.00363234353107 -4.64938242767e+12 +UniRef50_O26931 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0013846452866 2.88738954623e-05 -5.47341547789e+11 +UniRef50_U3T7G8 6.96040544937e-05 0.00443472101866 1.76225128444e+12 +UniRef50_A6LTU9 Resolvase, N terminal domain 0.000431327811601 0.00138625298257 3.8551500977e+11 +UniRef50_UPI0004792045 DEAD DEAH box helicase 1.91180646816e-06 1.82407005756e-05 6592174929.22 +UniRef50_B2HTJ9 Anti anti sigma regulatory factor 0.00145210786441 0.00428830275183 1.14500668008e+12 +UniRef50_B2A4R9 Phosphoglucosamine mutase 5.06990621184e-06 3.1508121524e-05 10673431954.9 +UniRef50_Q3IVD4 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.00171005078159 0.000472246814405 -4.99716651117e+11 +UniRef50_UPI000427273C preprotein translocase subunit SecA 3.17802617962e-06 1.32644384505e-05 4072008407.96 +UniRef50_A6LXB8 SCP like extracellular 0.000229707498285 0.00239302949961 8.73359638883e+11 +UniRef50_R5XB78 0.000157943928393 0.00211937101687 7.91852185036e+11 +UniRef50_D8U956 3.46347446329e-05 5.97579878872e-06 -11569968122.1 +UniRef50_A7N2M2 Protoheme IX farnesyltransferase 1 6.49452486883e-06 1.40306366026e-05 3042420785.41 +UniRef50_M9RPB0 UPF0393 family membrane protein 0.00618906983395 0.00188156913798 -1.73899088994e+12 +UniRef50_Q9FW53 Putative protoporphyrinogen oxidase 0.000201803437217 0.000157222735682 -17997776276.4 +UniRef50_C4J5G1 0.000128132175077 3.93460475287e-06 -50140083215.4 +UniRef50_Q28JJ5 Flagellar protein putative 1.87063791113e-05 1.17073489624e-05 -2825594358.87 +UniRef50_P41363 Thermostable alkaline protease 6.97273449661e-06 2.21005485033e-05 6107284153.66 +UniRef50_X5RU17 0.000210295734616 5.93260802245e-05 -60948302084.0 +UniRef50_S9S7R4 1.77902844191e-05 2.28206127345e-05 2030805270.0 +UniRef50_A6LVN7 0.000677586919957 0.00651350316593 2.35603100324e+12 +UniRef50_R7XG30 5.04541110072e-05 5.4659955746e-06 -18162254266.4 +UniRef50_X0Y3X4 Marine sediment metagenome DNA, contig 5.23268742543e-05 4.71128011562e-05 -2104985293.58 +UniRef50_I3TQH5 HNH endonuclease family protein 0.00717696135887 0.000642599110623 -2.63800222526e+12 +UniRef50_Q5HPH6 Prephenate dehydrogenase 0.0106608536183 0.00118536247938 -3.82537205013e+12 +UniRef50_C6XPM3 2.81851876881e-06 4.30707256929e-06 600947435.863 +UniRef50_B1KWF3 0.00123313566923 0.00142895179933 79053374655.5 +UniRef50_UPI000262970F alpha L arabinofuranosidase 0.000205586593601 6.25504836567e-05 -57745432834.8 +UniRef50_UPI00047AAC54 DNA polymerase I 1.61536737415e-06 4.44410997059e-05 17289273673.2 +UniRef50_UPI00038323B5 PREDICTED 2.61652226623e-05 1.90923152515e-05 -2855419516.07 +UniRef50_M9REP5 Penicillin binding protein2 0.00692969959659 0.00304192457112 -1.56954248615e+12 +UniRef50_A3M202 Carboxy terminal protease 0.000191164758928 0.00725662379234 2.85241251472e+12 +UniRef50_J9P1D4 1.01014888344e-05 5.77504459399e-05 19236468701.9 +UniRef50_Q8XJK8 Guanylate kinase 0.00109420642018 0.000560437882784 -2.15488908623e+11 +UniRef50_Q8X844 Fructoselysine 6 phosphate deglycase 0.00301774382229 0.00177232106249 -5.02792451187e+11 +UniRef50_F4D464 Heavy metal translocating P type ATPase 0.000197621084868 0.00530656042986 2.06254150731e+12 +UniRef50_Q2W3H2 D amino acid dehydrogenase small subunit 3.2048686598e-05 2.29979031713e-05 -3653912334.96 +UniRef50_K2A0P8 Inner membrane translocator 0.00145959006237 9.80412732766e-05 -5.49673954238e+11 +UniRef50_UPI00022CA89F PREDICTED 4.4807435369e-05 2.68123339471e-05 -7264843268.75 +UniRef50_A7ZMR8 Transposase, IS605 family 0.00147908675058 0.000779519785449 -2.82423768475e+11 +UniRef50_Q8XCY9 Protease ElaD 0.00191455696406 0.000779165884896 -4.58371311472e+11 +UniRef50_U7DMJ8 Flagellar basal body rod modification protein FlgD 0.000898381617774 0.000260190929686 -2.57645412262e+11 +UniRef50_A0A023XN60 Spermidine putrescine transport system permease protein potC 0.000223805922247 0.000921838309754 2.81804240657e+11 +UniRef50_UPI0003C103D9 PREDICTED 0.000393390152011 4.02979356687e-05 -1.42547660666e+11 +UniRef50_W5X8M6 Homoserine dehydrogenase 1.87872585912e-05 3.20703056351e-05 5362529092.94 +UniRef50_M9VAR2 0.000503978548825 0.00340049884426 1.16936078757e+12 +UniRef50_UPI0003670873 hypothetical protein, partial 0.000136683675816 0.00119712724519 4.28114082061e+11 +UniRef50_UPI000366ECCB MULTISPECIES 8.97967102383e-06 0.000133153633221 50130552324.8 +UniRef50_Q3IUU7 DNA directed RNA polymerase specialized sigma subunit, sigma24 0.0331832228284 0.00430754949409 -1.16574636694e+13 +UniRef50_UPI00046D0748 2 keto 3 deoxy L rhamnonate aldolase, partial 0.000126711935884 0.000889012628662 3.07750144156e+11 +UniRef50_Q3HKE5 FecR protein 0.0039955992715 0.00163938384075 -9.51233083409e+11 +UniRef50_P0A0L2 Enterotoxin type A 0.0134150014143 0.00180499944881 -4.68710026422e+12 +UniRef50_S1K712 IS605 OrfB family transposase 0.00103226971812 0.000415939021406 -2.48820265492e+11 +UniRef50_W0PEX2 Dihydrodipicolinate synthase 0.00332419542578 0.000366853049924 -1.19391540781e+12 +UniRef50_G2I013 Transposase 0.000248725108225 0.000175312648115 -29637511018.6 +UniRef50_Q5SJP8 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 0.000102763880809 0.0523816249099 2.11056177312e+13 +UniRef50_D5ASB3 Membrane transport family protein 0.00741319360621 0.000663861639426 -2.72478813861e+12 +UniRef50_UPI000423B5F5 sarcosine oxidase subunit delta 0.000217300255826 0.000356387295322 56151144634.4 +UniRef50_E4N4A3 1.10427116251e-05 0.000103345610278 37263812870.1 +UniRef50_UPI0003B50367 hypothetical protein 9.7281574412e-06 5.33618109601e-05 17615441370.7 +UniRef50_Q2FHH3 Ribosome maturation factor RimP 0.0295147241547 0.00491573670386 -9.93091309741e+12 +UniRef50_UPI0001C39687 ATPase component of various ABC type transport systems with duplicated ATPase domain, partial 1.86385471893e-05 5.68551590441e-06 -5229297681.28 +UniRef50_UPI00041FE5DE zinc ABC transporter ATPase 3.96439769857e-06 1.20107658091e-05 3248417546.26 +UniRef50_K7RPT1 4.96212687019e-05 0.00177307050577 6.95777606106e+11 +UniRef50_X0YLP3 Marine sediment metagenome DNA, contig 1.65434284138e-05 1.64830512418e-05 -24375005.2476 +UniRef50_UPI0003717CC9 sodium 0.000132606319274 2.32823287027e-05 -44135436549.7 +UniRef50_A3M2F0 0.000352916143661 0.0102049948914 3.97740508906e+12 +UniRef50_T1W7J5 4.91546036791e-05 3.65218684466e-05 -5099990234.45 +UniRef50_J0NEL3 0.00724673523958 0.000287048845821 -2.80971080212e+12 +UniRef50_UPI00036B01E6 hypothetical protein 2.85559061836e-06 4.2522445045e-05 16013995899.1 +UniRef50_M2LA35 0.000583741219879 0.000297785752846 -1.15443731109e+11 +UniRef50_UPI0004689ED6 ferrichrome ABC transporter permease 1.34359639122e-05 1.0258765559e-05 -1282673963.79 +UniRef50_Q5LWE9 Rhomboid family protein 0.000695668002448 0.000272600035571 -1.70797729856e+11 +UniRef50_C3NGW2 Ketol acid reductoisomerase 1.12143726387e-05 2.77345684509e-05 6669405774.98 +UniRef50_X7EDB2 1.09586650227e-05 5.02648355404e-06 -2394894454.95 +UniRef50_F5M536 XRE family transcriptional regulator 0.00654946333606 0.00107807450414 -2.20886681294e+12 +UniRef50_Q55463 Bicarbonate transport ATP binding protein CmpD 6.74821944333e-05 8.6515654743e-06 -23750646843.7 +UniRef50_S5K777 Internalin 9.20789354518e-06 0.0012792767261 5.12742373198e+11 +UniRef50_I6TW59 0.0056589045175 0.00276568241958 -1.16802926476e+12 +UniRef50_A5VNN0 1.08926191229e-05 1.54761375906e-05 1850422651.51 +UniRef50_P76077 1,2 phenylacetyl CoA epoxidase, subunit A 0.00223156413766 0.00117109599435 -4.28124002862e+11 +UniRef50_A4VFR5 Ribonucleoside diphosphate reductase 0.000523215879325 0.000903939209908 1.53702680557e+11 +UniRef50_UPI00034B41D8 Fe S cluster assembly protein HesB 0.000449473779471 9.32497872641e-05 -1.43811997014e+11 +UniRef50_A6LWE7 Transcriptional regulator, Fis family 9.4766357036e-05 0.00228344123682 8.83594907028e+11 +UniRef50_P0AC51 Zinc uptake regulation protein 0.00102610931706 0.00275904829679 6.9960873167e+11 +UniRef50_P9WKE4 Pyruvate kinase 1.68732539655e-05 5.29097634188e-06 -4675907607.18 +UniRef50_P39812 Glutamate synthase [NADPH] large chain 3.21189432824e-06 3.19832033431e-06 -5479987.92118 +UniRef50_UPI00046F30F3 hypothetical protein 0.000212340287376 3.01161751574e-05 -73566110244.1 +UniRef50_H3UK96 ATP dependent deoxyribonuclease subunit A domain protein 0.00915378255813 0.00379707691317 -2.16256780304e+12 +UniRef50_A0A017SWC8 6.63376112847e-05 0.00015379963033 35309490368.3 +UniRef50_Q650K7 Tyrosine tRNA ligase 3.47768127985e-05 0.00418568700696 1.67577338278e+12 +UniRef50_Q0FMK9 Replication protein C 5.68714750485e-05 1.75529785026e-05 -15873359547.8 +UniRef50_UPI00047EEBF5 hypothetical protein 9.50468846879e-06 3.33140443482e-05 9612129142.17 +UniRef50_U5RNQ9 Glucokinase 0.000464573712241 0.00404395658423 1.44504078939e+12 +UniRef50_L0ILT4 ABC type nitrate sulfonate bicarbonate transport system, permease component 0.000700434859726 0.000982329007516 1.13804126693e+11 +UniRef50_Q6FFD0 D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8 0.00123899075913 0.00560665563993 1.76327990965e+12 +UniRef50_F8HF16 Thiamine diphosphokinase 0.00466504872973 0.00123614442986 -1.38429074324e+12 +UniRef50_UPI000471BA5D ATPase 3.66818722405e-05 3.09256867018e-05 -2323842738.31 +UniRef50_UPI000476F7F2 hypothetical protein 9.71264773401e-05 2.08448792847e-05 -30795817215.4 +UniRef50_Q3Z8B4 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0157006901158 0.00517860614175 -4.24789442083e+12 +UniRef50_A6U6I4 FAD dependent pyridine nucleotide disulphide oxidoreductase 0.000209527392088 0.000206997690564 -1021271548.17 +UniRef50_Q6A735 Cell envelope related transcriptional attenuator 2.39212767365e-05 0.00128477962199 5.09023986449e+11 +UniRef50_A0A023RXV8 0.000261537636621 0.00543796499884 2.08978724804e+12 +UniRef50_F0Y4U6 Expressed protein 0.000169469990813 0.00129169055534 4.53054213096e+11 +UniRef50_R7G9F0 4.87530206984e-05 4.2980751452e-05 -2330335928.48 +UniRef50_A0A023RXV6 0.000481897007041 0.0118230982726 4.57858212311e+12 +UniRef50_J9V1L0 0.00888473726768 0.000854272419507 -3.24199720409e+12 +UniRef50_UPI0003774EF4 hypothetical protein 3.58450949836e-06 4.62002643863e-06 418050896.009 +UniRef50_UPI0003AED3B9 PREDICTED 0.000470921408125 0.000778683596671 1.24247372183e+11 +UniRef50_A0A052J8X7 Oligopeptide ABC transporter, oligopeptide binding protein 4.40249420429e-06 1.04738650332e-05 2451086907.73 +UniRef50_UPI00047E2B61 DNA methyltransferase 0.000104128870322 9.89941772117e-05 -2072938618.4 +UniRef50_A5ULF2 Adenosylcobinamide amidohydrolase, CbiZ 0.0032148583585 0.0016112140852 -6.47410872059e+11 +UniRef50_UPI00037A1445 hypothetical protein 6.06315828902e-06 1.63005067134e-05 4132943185.32 +UniRef50_UPI00036E83CD hypothetical protein, partial 3.97587398231e-05 9.73890199152e-06 -12119376917.5 +UniRef50_A6LZS8 HAD superfamily hydrolase, subfamily IA, variant 1 0.000171584540393 0.00180043716586 6.57587793172e+11 +UniRef50_UPI000474ABAF isoleucine tRNA ligase 0.00170448257242 0.000418971848154 -5.18976454378e+11 +UniRef50_E8SJH3 Integral membrane protein 0.00970067557819 0.00695476385959 -1.10855825692e+12 +UniRef50_P0AC95 High affinity gluconate transporter 0.00192261196755 0.000578223225695 -5.4274623259e+11 +UniRef50_M4QUJ5 0.000139637233856 0.00375005775006 1.45757106723e+12 +UniRef50_UPI0003B7B681 nickel ABC transporter permease 0.000180603845939 7.03989240464e-05 -44491079334.7 +UniRef50_UPI000475E454 MFS transporter 5.61145248101e-06 3.51726206583e-05 11934206349.5 +UniRef50_Q9RWM7 0.000148901320747 0.0835845588562 3.36839988177e+13 +UniRef50_A0M024 Protein containing DUF124 0.00153354645499 0.00220309121995 2.70303437853e+11 +UniRef50_N8UCZ7 Magnesium translocating P type ATPase 0.000240911600266 0.00480856830784 1.8440190643e+12 +UniRef50_J9NU89 3.80233552218e-05 2.08262775748e-05 -6942671277.97 +UniRef50_I4E0M5 Cation efflux family protein 0.00989111317363 0.00316904290592 -2.71378225615e+12 +UniRef50_A4VFK3 0.000596401883601 0.000279310896275 -1.28013522727e+11 +UniRef50_A0A016YJN0 MMPL family protein 8.33336319946e-05 0.00526023515738 2.08997867353e+12 +UniRef50_Q6ZD75 0.000308571653009 0.000114411747794 -78384736345.3 +UniRef50_Q65H34 Shikimate dehydrogenase 3.23717772976e-05 0.0004165349257 1.55091377222e+11 +UniRef50_Q6MDR3 NADH quinone oxidoreductase subunit D 3.00233580135e-06 4.62083855544e-05 17442812483.2 +UniRef50_UPI0004716349 integrase 4.87535767353e-05 2.73742658281e-05 -8631090166.88 +UniRef50_G2HS60 TRAP transporter solute receptor 9.2928636489e-05 7.96227161421e-05 -5371763326.05 +UniRef50_Q8DV44 Acetylglutamate kinase 0.00590988317307 0.00285018489997 -1.23523773957e+12 +UniRef50_Q9RVJ0 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 9.60524144667e-05 0.0570177969991 2.29800067972e+13 +UniRef50_B9KTM7 0.00193582558386 0.00359511164324 6.69874143901e+11 +UniRef50_K7E0S8 8.35110920989e-06 1.40408776366e-06 -2804597807.38 +UniRef50_UPI000478D511 hypothetical protein 1.59958586913e-05 0.00454152294339 1.82701081856e+12 +UniRef50_Q1QTL2 Nucleoside diphosphate kinase 0.000130003765777 6.56278573416e-05 -25989344216.6 +UniRef50_UPI000262552F EmrB QacA subfamily drug resistance transporter, partial 5.59845985871e-05 2.64946395537e-05 -11905458344.3 +UniRef50_B9KW42 FAD dependent oxidoreductase 0.0138820631196 0.00538884799663 -3.42881516861e+12 +UniRef50_G7M1F6 Multi sensor signal transduction histidine kinase 0.000331847588427 0.00116321261494 3.35632263199e+11 +UniRef50_Y6NBB6 0.0112281191747 0.0012828956409 -4.01500878221e+12 +UniRef50_J9P4U3 8.2326250783e-05 1.17224873692e-05 -28503605695.8 +UniRef50_UPI0004025C8B tagatose bisphosphate aldolase 5.05361071925e-06 3.63184993948e-05 12622019221.7 +UniRef50_Q2KCH9 Probable chemotaxis protein methyltransferase 0.000174270673217 2.29105165071e-05 -61105952661.8 +UniRef50_UPI00035F1E2E MULTISPECIES 0.00119580509536 4.72875564998e-05 -4.63670624333e+11 +UniRef50_Q6GHU5 Ribonuclease HIII 0.0155484360532 0.00534914040731 -4.11758081168e+12 +UniRef50_K0M0Z9 Iron regulated ABC transporter siderophore binding protein SirA 0.0143220182205 0.00145866881421 -5.19309200637e+12 +UniRef50_V4YZI7 4.15925829585e-05 0.00012579255787 33992563121.7 +UniRef50_W5X9U5 Bifunctional protein GlmU 4.28751065089e-06 5.28955456913e-06 404537426.255 +UniRef50_P33644 Laccase domain protein YfiH 0.00219962930994 0.00240875810745 84427861853.7 +UniRef50_C1E811 Predicted protein 0.000202807507518 6.80745068375e-05 -54393365734.8 +UniRef50_UPI0003B61251 elongation factor P 1.58724389716e-05 2.11280382619e-05 2121749926.95 +UniRef50_A1B9F5 DNA ligase 0.0020740888864 0.000207431210266 -7.53592610319e+11 +UniRef50_UPI0003B49C22 MarR family transcriptional regulator 0.000272038672753 4.43950858665e-05 -91902509527.2 +UniRef50_B2V232 Flagellar export protein FliJ 0.000520670329449 0.00184844583174 5.36039263912e+11 +UniRef50_M1N377 Diguanylate cyclase 0.000102763880809 0.00139753529895 5.22715110135e+11 +UniRef50_I6SW52 Malonyl CoA ACP transacylase 0.00398381262397 0.00140631424058 -1.04056772684e+12 +UniRef50_Q9RUC2 Oxidoreductase, short chain dehydrogenase reductase family 0.000147840465605 0.0371434521586 1.49355824277e+13 +UniRef50_B2HZE4 Cytidylate kinase 0.000492373028943 0.00754560511986 2.847476348e+12 +UniRef50_D4Z2Y4 0.000339368421561 1.5468409678e-05 -1.30762409497e+11 +UniRef50_I0C3R4 Thiamin pyrophosphokinase 0.00619857081149 0.00107041456035 -2.07029960814e+12 +UniRef50_E9V1P4 PE PGRS family protein 0.000217582561448 0.000191329122411 -10598835505.2 +UniRef50_P07954 Fumarate hydratase, mitochondrial 9.83162756624e-06 2.58259661878e-05 6457110774.15 +UniRef50_A0A023RUB5 0.000374986081636 0.00874433124731 3.3788073468e+12 +UniRef50_Q2JL74 DNA directed RNA polymerase subunit alpha 1.07020396063e-05 3.7823781249e-05 10949379922.4 +UniRef50_Q71ZI2 Probable nicotinate nucleotide adenylyltransferase 3.85385033408e-06 0.00373354447161 1.50572187226e+12 +UniRef50_UPI00046F1475 transcriptional regulator, partial 2.77794326871e-05 5.73429372194e-05 11935149564.7 +UniRef50_M4X2C4 Vanillate porin OpdK 0.00100150367391 0.0014137892635 1.66444751831e+11 +UniRef50_I2DV60 Transcriptional regulator, GntR family 0.00063300503657 0.00012399581744 -2.05493268008e+11 +UniRef50_UPI0004725EBD chromosomal replication initiator protein DnaA, partial 8.82450172386e-06 1.03073482638e-05 598643344.747 +UniRef50_Q8RFY7 Glutamate 1 semialdehyde 2,1 aminomutase 8.65374496666e-06 1.657530443e-05 3198030763.82 +UniRef50_L8E176 Internalin A 1.2878114461e-05 5.79033643673e-06 -2861422965.21 +UniRef50_Q3JWB4 3.81322595143e-05 9.6418348109e-05 23530809216.4 +UniRef50_W1Y5T8 Nitrate reductase, beta subunit 1.60649382197e-05 2.83156370672e-05 4945757457.72 +UniRef50_Q83GV1 Glycine dehydrogenase 1.79240803869e-06 5.3784220458e-06 1447717860.01 +UniRef50_UPI00036AFA97 hypothetical protein 1.94826634309e-05 2.65435474198e-07 -7758230748.03 +UniRef50_G3XD94 UDP N acetyl D glucosamine 6 dehydrogenase 0.000887602463171 0.000569783997995 -1.28307214463e+11 +UniRef50_B2I0W8 8.93105651832e-05 0.00570271395887 2.26619983424e+12 +UniRef50_P0A2J2 High affinity branched chain amino acid transport system permease protein LivH 0.00353589679667 0.00063169348705 -1.17246251468e+12 +UniRef50_A3PJL0 Peptidoglycan binding domain 1 protein 0.00576297306678 0.000675954613344 -2.05369177439e+12 +UniRef50_UPI00037D66CB coproporphyrinogen III oxidase, partial 4.96210856061e-05 2.99837410483e-05 -7927836975.3 +UniRef50_R6FXK3 0.000252484805529 0.00124248860634 3.996766831e+11 +UniRef50_N6UDA5 6.24997613586e-05 4.34583201684e-05 -7687263473.24 +UniRef50_P52667 HTH type transcriptional regulator EstR 0.000135461479253 0.00699604199659 2.76970054364e+12 +UniRef50_K2BGA3 1.05155749776e-05 1.60302056189e-05 2226324062.02 +UniRef50_B1ZP10 Urea ABC transporter, ATP binding protein UrtD 0.00680865658134 0.000861470399378 -2.40095204184e+12 +UniRef50_UPI0003B52280 diguanylate cyclase 1.91885940505e-05 0.000204871374582 74962417084.7 +UniRef50_Q8K9W2 DNA gyrase subunit A 6.49157712605e-06 1.04124992023e-05 1582924357.31 +UniRef50_B0V5B6 Phenylacetaldehyde dehydrogenase 8.87506243427e-05 0.00636146319684 2.53237104036e+12 +UniRef50_UPI00037B050D MULTISPECIES 1.74275664786e-05 6.1506398533e-05 17795165408.5 +UniRef50_K4NDV9 0.000115556935367 0.00372855498616 1.45861164958e+12 +UniRef50_A5UL24 0.00367194247487 0.000463848228053 -1.29514701518e+12 +UniRef50_A6LXE2 Efflux transporter, RND family, MFP subunit 0.000546340833125 0.000374157674571 -69512454033.2 +UniRef50_B0VDR8 0.000118706285809 0.00514079455936 2.02747866399e+12 +UniRef50_A8LHW6 Penicillin binding protein 0.00772621587514 0.0014045097778 -2.55215032755e+12 +UniRef50_UPI000305920B biotin biosynthesis protein BioY 1.09816038195e-05 3.63753007754e-05 10251747076.8 +UniRef50_I4E1E6 0.00376732518322 0.00480682951834 4.19660656241e+11 +UniRef50_UPI0003503D61 PREDICTED 0.00017335053984 0.000170760246426 -1045733237.71 +UniRef50_D2NTN6 Signal transduction histidine kinase 0.000366491251313 0.00145566027763 4.39710901532e+11 +UniRef50_UPI0003FCDB23 membrane protein 8.94989750349e-06 2.23826321673e-05 5422959821.97 +UniRef50_Q5HQ98 Phosphoribosylglycinamide formyltransferase 0.0168769251885 0.00308700566957 -5.56715973112e+12 +UniRef50_B8F444 0.000152007780746 0.00820662875421 3.2517493283e+12 +UniRef50_D8LK39 Short chain dehydrogenase 6.10521025838e-06 0.00062102422602 2.48250352568e+11 +UniRef50_UPI00016C0059 50S ribosomal protein L24 0.000127631864592 8.0886410988e-05 -18871713251.2 +UniRef50_UPI000467D444 phosphate transporter 5.80489080848e-06 7.72914086334e-06 776843360.351 +UniRef50_Q39F07 Glutamate tRNA ligase 2.94854661862e-06 1.20306438364e-05 3666554096.68 +UniRef50_A0A017HAI8 0.00331007571179 0.000279463723626 -1.22349524941e+12 +UniRef50_K7T243 0.000238973645218 9.40621126571e-05 -58502563959.4 +UniRef50_A0A058ZA26 8.7249768219e-06 4.91238425354e-06 -1539190405.62 +UniRef50_P0ABU1 1,4 Dihydroxy 2 naphthoyl CoA synthase 0.0284493235425 0.0158134331444 -5.10126401352e+12 +UniRef50_R6ZTJ7 1.21105370786e-05 1.03273943381e-05 -719876605.962 +UniRef50_T1ZU11 0.000838857753003 0.00549669112408 1.88042448995e+12 +UniRef50_Q8REM9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.36757193968e-05 1.07800999455e-05 -1168997105.74 +UniRef50_Q97GH9 Acetylornithine aminotransferase 1.37897579593e-05 1.98676281647e-05 2453710785.77 +UniRef50_A0A023RVA0 Haloacid dehalogenase 5.67648103501e-05 0.00870508072153 3.49143126011e+12 +UniRef50_C1DJ65 0.000154090873203 0.000140942059456 -5308337463.75 +UniRef50_R3SKR3 0.000111743399427 3.19255147367e-05 -32223459525.1 +UniRef50_Q48B49 ISPsy24, transposase orfB 0.00295081850723 0.00440344626986 5.86443653521e+11 +UniRef50_UPI000381307B hypothetical protein 5.35315466872e-05 4.55572061241e-05 -3219339141.49 +UniRef50_B9KRJ2 Transcriptional regulator, IclR family 0.000576539595526 0.000237202172853 -1.36994681672e+11 +UniRef50_B2JYC2 HesB YadR YfhF family protein 0.000248651475888 6.58688227141e-05 -73791600081.7 +UniRef50_UPI00047A2796 hypothetical protein, partial 0.000105183743514 2.81257607522e-05 -31109253248.7 +UniRef50_UPI0003C18538 4.56708677195e-05 0.000105822004043 24283751871.2 +UniRef50_W6A6C9 Citrate lyase subunit alpha 0.00378005267608 0.00215968666905 -6.54161641165e+11 +UniRef50_F5M379 CheW3 0.0137547842426 0.00587248523315 -3.1821808368e+12 +UniRef50_D5DEH5 Bacillolysin 2.11429473721e-05 0.000618056605518 2.40981368748e+11 +UniRef50_P77348 Periplasmic murein peptide binding protein 0.00304652406031 0.00103832243292 -8.10735640383e+11 +UniRef50_Q2FJW9 0.00192998406323 0.00013520840531 -7.24572957476e+11 +UniRef50_P11347 Nitrogenase molybdenum iron protein beta chain 0.000307784916058 0.000325276748412 7061667370.23 +UniRef50_W1YLG1 0.000803161678413 0.00228861378296 5.99695243154e+11 +UniRef50_UPI00016C3D30 hypothetical protein 7.46074339526e-05 0.0139935765673 5.61925864407e+12 +UniRef50_G4VUH5 Conjugative transfer pilus assembly protein 0.000107873417274 9.41871668195e-05 -5525307257.66 +UniRef50_G5QPS2 0.000266397317583 0.000425430010191 64203449556.4 +UniRef50_J3IPS9 2.62487114046e-05 0.000297021000812 1.09314095983e+11 +UniRef50_P45545 0.00146575482499 0.000193862169709 -5.13478672815e+11 +UniRef50_A4VWT1 0.00061233099668 0.0134107443322 5.16687651773e+12 +UniRef50_P23890 Transcriptional activator CadC 0.0027910002098 0.000687654369234 -8.49146526794e+11 +UniRef50_UPI00046617E5 thioredoxin 3.64438299837e-05 5.25195713553e-05 6489974063.25 +UniRef50_Q9ZG89 GTP binding protein EngB 0.0129923233676 0.00390450770705 -3.6688627022e+12 +UniRef50_B7I5N1 Zn dependent oligopeptidase 0.000116597664465 0.00474002723601 1.86653525389e+12 +UniRef50_UPI0003F09CB7 PREDICTED 4.43740609412e-06 1.49376492962e-05 4239077033.16 +UniRef50_P0ADN4 UPF0438 protein YifE 0.000775656141478 0.000952634532885 71448348380.1 +UniRef50_A0A031QGZ5 0.000143029209883 0.00025614396695 45665815502.1 +UniRef50_B4RZS0 Succinyl diaminopimelate desuccinylase 1 3.0300776468e-06 5.70110616351e-06 1078326989.4 +UniRef50_O33465 Methionine synthase 4.19296118488e-05 6.27561480633e-05 8407928240.13 +UniRef50_K2FJE0 Response regulator receiver protein 0.000285162524193 0.000504480373429 88541307069.2 +UniRef50_Q1QTJ4 Methionyl tRNA formyltransferase 8.12685624816e-06 1.83195841386e-05 4114929328.19 +UniRef50_M1MD21 Lytic transglycosylase catalytic 0.000345032049687 0.00117049807793 3.33250765209e+11 +UniRef50_P76446 Protein Rtn 0.0034793960324 0.00115444812543 -9.38610000363e+11 +UniRef50_G8PUC6 9.93817398958e-05 2.11659674342e-05 -31576667158.2 +UniRef50_UPI000360A87F hypothetical protein 4.50141121414e-06 8.45077293744e-05 32299532429.2 +UniRef50_Q9JTW6 Co chaperone protein HscB homolog 0.000270922958506 0.00424704449976 1.6052090587e+12 +UniRef50_P0A9H4 Lysine decarboxylase, inducible 0.0031341605595 0.000812816271453 -9.37155175184e+11 +UniRef50_Q5QX02 N acetyl gamma glutamyl phosphate reductase 6.01250188139e-06 6.4573558223e-06 179592994.917 +UniRef50_Q9RVG1 Probable 3 hydroxybutyryl CoA dehydrogenase 0.000185868265068 0.0454626415195 1.82787889713e+13 +UniRef50_U2Z7R5 Anti sigma B factor RsbT 5.08938903002e-06 5.9289118935e-05 21881096068.1 +UniRef50_X5DTS0 PTS system sugar specific permease protein 8.36379591226e-05 0.00362617651137 1.43016628538e+12 +UniRef50_P57936 Triosephosphate isomerase 0.00349031231559 0.000251341071176 -1.30761243802e+12 +UniRef50_G0N365 9.20869373998e-06 5.38041414007e-06 -1545523452.76 +UniRef50_Q2W170 3.11094831836e-05 1.07241739723e-05 -8229799484.48 +UniRef50_B7V9E6 AMP nucleosidase 0.000157311310104 0.00013262726281 -9965252799.91 +UniRef50_A0A037Z329 Flagellar biosynthesis protein FlhA 0.000480361863589 0.00148183985915 4.04308956325e+11 +UniRef50_A0B4T1 Short chain dehydrogenase reductase SDR 0.00018718313497 0.0176674296057 7.05699000697e+12 +UniRef50_UPI000478334E hypothetical protein, partial 0.000730618042937 0.000569742839604 -64947293746.3 +UniRef50_A5IR45 0.0194020970852 0.000942845180321 -7.4522265145e+12 +UniRef50_S5XW27 0.0135101236397 0.00421239778872 -3.75360602197e+12 +UniRef50_UPI00046741CB quinone oxidoreductase, partial 7.43954424757e-06 2.29844826571e-05 6275682393.76 +UniRef50_A5IR41 0.0130205193123 0.00202136259761 -4.44049454056e+12 +UniRef50_C7BXR1 0.000381298978638 0.00351945167646 1.26691075357e+12 +UniRef50_UPI000373FE9D hypothetical protein 1.64721712368e-05 1.79851952024e-05 610826341.805 +UniRef50_UPI00037D3E99 hypothetical protein 0.00012963808578 4.69243360357e-05 -33392555783.6 +UniRef50_A4VYJ7 DNA repair protein RecO 0.00374232310789 0.00477747202929 4.17902322275e+11 +UniRef50_UPI00046FC1BE PTS mannose transporter subunit IIB 3.41280788618e-06 4.61560606141e-06 485584383.334 +UniRef50_A7X1C4 UDP N acetylmuramoylalanine D glutamate ligase 0.0187003351303 0.00713813388701 -4.66780252608e+12 +UniRef50_A3M783 Putative TonB dependent receptor 0.000178548589662 0.00598956145748 2.34597720389e+12 +UniRef50_I6TYR1 0.00247867012715 0.000363094309672 -8.54083918551e+11 +UniRef50_K0H8L8 Formimidoylglutamase 0.000136276530269 0.00616160535403 2.43249918525e+12 +UniRef50_P29930 Cobyrinic acid a,c diamide adenosyltransferase 0.0107103019029 0.00543566601178 -2.12943523631e+12 +UniRef50_D7GDB8 Permease protein of oligopeptide ABC transporter 0.000151398123869 0.00516861980168 2.02551395957e+12 +UniRef50_UPI000410414C hypothetical protein 0.000247731283068 3.04122785391e-05 -87734348932.4 +UniRef50_D5X7D2 Stage V sporulation protein AD 0.00011124341518 0.00109489584666 3.97112557361e+11 +UniRef50_W9B8I4 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.00417001517855 0.00222924469132 -7.83512861627e+11 +UniRef50_S5YWN2 0.00512898554626 0.00177271701881 -1.35496679058e+12 +UniRef50_Q2NHM9 MtaC2 0.00247211625146 0.000239122838212 -9.0148684284e+11 +UniRef50_R6JPB3 0.00606382333827 0.00383666240486 -8.99132199156e+11 +UniRef50_Q9RY97 0.000229707498285 0.0420353587575 1.68774544264e+13 +UniRef50_K8B5J6 Sulfate permease 2.60644245378e-05 2.20963084702e-05 -1601977150.75 +UniRef50_U6HCK7 Mitochondrial ribosomal protein l11 3.18321071149e-05 5.97194916889e-05 11258479369.2 +UniRef50_A7HM68 Lysine tRNA ligase 7.23706188429e-06 9.69866522038e-06 993779474.049 +UniRef50_B3T0J2 4.43387943768e-05 5.09903875063e-05 2685329770.61 +UniRef50_B1ZBH9 Binding protein dependent transport systems inner membrane component 0.0141605404619 0.00312199786369 -4.45639510504e+12 +UniRef50_UPI000203B2C5 PREDICTED 5.05078463076e-05 9.66116689802e-05 18612678970.5 +UniRef50_A6M0R6 Methyl accepting chemotaxis sensory transducer 0.000459410793836 0.000434512545817 -10051728261.1 +UniRef50_UPI00046D564F hypothetical protein 2.23194304348e-05 2.44025601401e-05 840985024.906 +UniRef50_A3PLS6 Nitrogenase molybdenum iron cofactor biosynthesis protein NifN 0.00224021747818 0.000209284767297 -8.19912457729e+11 +UniRef50_Q9JV28 UDP N acetylenolpyruvoylglucosamine reductase 0.000271471385544 0.00479985929473 1.82816576851e+12 +UniRef50_F0RNS6 0.000135623708568 0.00498379983779 1.95726819718e+12 +UniRef50_B1JXR9 3 phosphoshikimate 1 carboxyvinyltransferase 0.0030300075275 0.00460180913716 6.34555597994e+11 +UniRef50_D0B1T7 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 0.00276624981786 0.000778583906055 -8.02445119997e+11 +UniRef50_F8HBY9 D alanyl D alanine carboxypeptidase DacA 0.00854188152757 0.00470414064406 -1.54934308905e+12 +UniRef50_P75838 Ribosomal protein S12 methylthiotransferase accessory factor YcaO 0.00201328583389 0.00011649574169 -7.65757436453e+11 +UniRef50_UPI0003710A9E hypothetical protein 3.42738362583e-05 1.63026133433e-05 -7255203222.49 +UniRef50_Q49YE0 Putative universal stress protein SSP1056 0.0381019594888 0.00113785739709 -1.4922861615e+13 +UniRef50_UPI00046F5838 hypothetical protein 4.65396573663e-06 2.34356433979e-05 7582393748.97 +UniRef50_A4VNP3 Ribosomal RNA large subunit methyltransferase E 2.22403600905e-05 0.000451756992669 1.73401135334e+11 +UniRef50_Q3JEP4 Adenine phosphoribosyltransferase 3.73398606577e-05 3.921092488e-05 755371587.082 +UniRef50_S6BAJ6 Phosphoenolpyruvate protein phosphotransferase 0.000352476453436 0.000175519136561 -71439840332.9 +UniRef50_UPI0003634116 hypothetical protein 2.12455709734e-05 0.000133357914252 45261128754.9 +UniRef50_P45416 2 dehydro 3 deoxygluconokinase 4.03380285381e-05 3.62147446783e-05 -1664620292.58 +UniRef50_D8JN46 Ribosomal RNA large subunit methyltransferase J 0.000403968359059 0.0119263250846 4.6517168053e+12 +UniRef50_UPI0003F071E0 PREDICTED 1.55681318201e-06 2.12201541809e-05 7938332057.58 +UniRef50_UPI000473748C RNA polymerase sigma factor RpoE, partial 0.000306928638757 0.000274115238615 -13247172303.0 +UniRef50_UPI000364A43A hypothetical protein 0.000389899138683 0.000108419002321 -1.13636985199e+11 +UniRef50_S0FU34 0.000142906913618 3.25735682869e-05 -44542925452.5 +UniRef50_UPI0002628B07 chemotaxis protein 8.22664398117e-05 8.71160732363e-06 -29694988494.7 +UniRef50_W4UBF2 0.000775656141478 0.00146438035634 2.78046417136e+11 +UniRef50_Q72NI2 Adenylate kinase 1.0109307041e-05 1.68689048786e-05 2728932596.63 +UniRef50_B2V5F8 ABC transporter, permease protein 0.000150392824239 0.00097236700679 3.31841064253e+11 +UniRef50_A7GM37 ATP dependent helicase nuclease subunit A 1.34646912792e-05 0.00020920589456 79023125779.2 +UniRef50_UPI00047B0772 hypothetical protein 1.64317328389e-05 3.80240703305e-06 -5098613807.06 +UniRef50_UPI000023CB21 hypothetical protein FG03961.1 1.99796886439e-06 1.28710248065e-05 4389586111.23 +UniRef50_G2DUQ1 0.00116748243974 0.00188500024592 2.89670743288e+11 +UniRef50_U4V185 3.29660119324e-05 3.97646479548e-05 2744692790.89 +UniRef50_UPI00037D808D hypothetical protein 5.55384818328e-06 6.63333306831e-06 435801294.856 +UniRef50_Q4SPK5 Chromosome 16 SCAF14537, whole genome shotgun sequence 4.18268952613e-06 5.65921504708e-05 21158342519.8 +UniRef50_UPI000378DA6C Cro Cl family transcriptional regulator 0.000127632568505 1.91813356963e-05 -43783093531.3 +UniRef50_V8G168 0.000387094723116 0.000240747314022 -59082244935.9 +UniRef50_I7DG40 Glutaredoxin like protein 0.000321727580236 9.77340382507e-05 -90428941609.2 +UniRef50_Q7TUW5 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.49276014882e-05 1.30625408202e-05 -752947878.54 +UniRef50_D2S8K3 4.90348795094e-05 0.000171963377846 49627743281.0 +UniRef50_UPI0004561009 hypothetical protein PFL1_01934 8.73329464073e-05 4.58156026005e-05 -16761061169.9 +UniRef50_UPI00036D6D03 hypothetical protein 0.000213424083342 0.000108427538078 -42388393775.6 +UniRef50_Q2FZ95 Cell division protein FtsL 0.00750719668041 0.00488082571781 -1.0602981868e+12 +UniRef50_O26874 Conserved protein 0.00293914635062 0.000705699444334 -9.01669923545e+11 +UniRef50_C6B1R5 0.000906793591697 0.000260760956937 -2.60811302365e+11 +UniRef50_Q9RXD2 S layer like array related protein 0.000134496195558 0.0405853643418 1.63305118586e+13 +UniRef50_K2KNE0 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 5.64234542586e-05 5.38749785522e-05 -1028850915.99 +UniRef50_A0A031H669 0.000361218689857 0.000338659683702 -9107347614.91 +UniRef50_UPI00046687D5 hypothetical protein 2.26460989201e-05 4.07280291537e-05 7299897125.54 +UniRef50_Q8CR42 0.0127424614757 0.00269513482299 -4.05622906426e+12 +UniRef50_D8TXA0 8.32366856429e-06 6.64450417279e-06 -677899270.513 +UniRef50_Q5UWH2 Dihydrolipoyl dehydrogenase 3 9.07273082519e-06 2.17368376482e-05 5112655330.51 +UniRef50_D3HEP6 Glycosyl hydrolases family 25 0.00504380359101 0.0018616814278 -1.28466176632e+12 +UniRef50_UPI00036358BA MULTISPECIES 0.000102127141165 0.000106583978818 1799280052.06 +UniRef50_R7PXM1 0.00323537694379 0.000373112658173 -1.15553121604e+12 +UniRef50_F0MJV4 Fic family protein 0.000169557089412 0.00484363764456 1.88698367753e+12 +UniRef50_G7M7B2 Cell wall hydrolase autolysin 0.00058757237032 0.00171835300373 4.56510017946e+11 +UniRef50_UPI0002C378DF 3.77392201137e-05 2.99508845251e-05 -3144246650.74 +UniRef50_UPI000474191D hypothetical protein, partial 8.76669476145e-06 2.80333822198e-05 7778198155.76 +UniRef50_X6GHK4 0.000712364125459 2.13512444986e-05 -2.78970379725e+11 +UniRef50_A1B939 SufBD protein 0.00851433314888 0.000202966807698 -3.35540058387e+12 +UniRef50_UPI0003B6276B heme oxygenase 0.000222522502208 2.67531080934e-05 -79034506764.8 +UniRef50_UPI00047A5C79 hypothetical protein 0.000330887514775 4.13576907693e-05 -1.16886742882e+11 +UniRef50_Q9X4A7 Aminopeptidase PepS 0.00082040041286 0.00574308618846 1.98734865576e+12 +UniRef50_Q59258 Citrate synthase 6.56313169784e-06 2.9250951951e-05 9159351447.08 +UniRef50_G3VAE4 9.6521684811e-06 3.14443169206e-07 -3769754295.19 +UniRef50_UPI0003675D9F hypothetical protein 7.64423464683e-05 8.86073252375e-05 4911151210.2 +UniRef50_I6TZP9 0.00173375642168 0.00135661747762 -1.52255619732e+11 +UniRef50_C0AXX7 1.63315694798e-05 7.59499667569e-05 24068678580.8 +UniRef50_UPI000470AA89 excinuclease ABC subunit C 3.67047242345e-06 1.67893737923e-06 -804007136.235 +UniRef50_V9QTM2 Sugar ABC transporter substrate binding protein 0.000142626947925 0.000449157376054 1.23750095387e+11 +UniRef50_B8F6Y2 L fucose mutarotase 0.00118738011748 0.00199089913615 3.24390488124e+11 +UniRef50_I4DZ32 Transcriptional regulator homolog 0.00596871315487 0.0021603313054 -1.53749048673e+12 +UniRef50_UPI0003B5B687 hypothetical protein 4.34049711344e-06 7.58934387096e-06 1311599303.84 +UniRef50_I1ES83 0.000189472225223 3.02285984705e-05 -64288606258.8 +UniRef50_UPI000375CE7A hypothetical protein 1.19127155952e-05 2.19714098983e-05 4060818324.22 +UniRef50_UPI00037C6964 hypothetical protein 5.92612019032e-05 0.000157094111867 39496346297.2 +UniRef50_P67661 0.00197101421588 0.000268877121583 -6.8717363254e+11 +UniRef50_UPI0004656A3F hypothetical protein 8.9779180208e-05 1.1341217727e-05 -31666367995.6 +UniRef50_Q8E6C2 0.000188115941288 0.000448423643278 1.05089413628e+11 +UniRef50_UPI00039C9CFD endoribonuclease L PSP 5.72403086017e-05 7.11883674033e-05 5631002500.13 +UniRef50_G7M0U9 Short chain dehydrogenase reductase SDR 0.000154075913818 0.00122799088034 4.33552650403e+11 +UniRef50_I0H6C5 7.84765897393e-06 7.68029581106e-06 -67566562.6276 +UniRef50_Q87JM4 Macrolide export ATP binding permease protein MacB 2.07128529163e-06 1.90765594437e-05 6865237853.38 +UniRef50_K1E5Y4 2.07527503164e-06 2.17400149488e-05 7938896818.07 +UniRef50_A6M300 0.000181483648491 0.00202722999723 7.45150450841e+11 +UniRef50_Q9HVX2 Putative GTP cyclohydrolase 1 type 2 0.0012498306902 3.02005793768e-05 -4.92379642283e+11 +UniRef50_A0A018D403 0.00024832531728 6.03674852426e-05 -75880883295.3 +UniRef50_O69077 Aspartokinase 0.0073249904786 0.00291967624779 -1.77847941426e+12 +UniRef50_UPI00038109FF hypothetical protein 2.36473710193e-05 5.65197891308e-05 13270998581.5 +UniRef50_R6JM85 L serine dehydratase 1.58609077523e-05 3.72512533336e-05 8635545000.23 +UniRef50_UPI0003B79E51 ATPase P 2.26840390365e-06 3.41247446427e-06 461875324.647 +UniRef50_UPI0003B531E1 cell division protein FtsE 3.28760655411e-05 8.61413447351e-05 21503846849.1 +UniRef50_B9AD59 0.00173290851276 0.000605119126568 -4.55302414737e+11 +UniRef50_A6QII5 0.00481197339144 0.00188500024592 -1.18165497685e+12 +UniRef50_D8JRT9 Peptidase S15 2.40311109468e-05 3.57069913224e-05 4713696186.79 +UniRef50_UPI0003C1B2C2 PREDICTED 4.02743669605e-06 2.76399753623e-06 -510065892.961 +UniRef50_U5MNB4 ComEC Rec2 like protein 0.000526061031377 0.000994448960014 1.89093954557e+11 +UniRef50_M1MHX3 Transcriptional regulator 0.000291120299886 0.000396398262003 42502005212.5 +UniRef50_Q8CN85 Copper export proteins 0.00416544358147 0.00665150916532 1.00365518366e+12 +UniRef50_Q8Z9C3 Poly polymerase I 0.00214416578597 0.000305177775745 -7.4242202665e+11 +UniRef50_Q4A263 Putative membrane protein 5.64316707281e-05 1.59997834917e-05 -16322849032.4 +UniRef50_UPI0003162EAB hypothetical protein 4.62102484459e-06 1.55582707478e-05 4415500386.22 +UniRef50_C0QR28 Biotin synthase 3.06764826482e-06 2.72090432723e-05 9746177412.76 +UniRef50_Q1LF13 Putrescine transporter subunit 0.000343217592092 0.000596599404435 1.02293346987e+11 +UniRef50_A6E2L5 0.00147090805718 0.00275892599174 5.19988645939e+11 +UniRef50_T0UNE5 8.35859699479e-05 1.89216650818e-05 -26105773394.7 +UniRef50_P30851 Ribonuclease R 0.00341109340536 0.00183637485414 -6.35733203097e+11 +UniRef50_Q6GDQ0 ATP dependent Clp protease ATP binding subunit ClpL 0.0170446599511 0.00917682097626 -3.17634314338e+12 +UniRef50_Q9Z9G7 Glutamyl tRNA amidotransferase subunit A 4.65439644437e-06 3.62192851195e-05 12743132902.9 +UniRef50_D8TTJ3 1.66348275902e-05 2.18216501135e-05 2093983902.13 +UniRef50_W1DFX7 Aspartokinase 0.001629644029 0.000334116956942 -5.23020176896e+11 +UniRef50_UPI000477F71F aldehyde dehydrogenase 3.08882068764e-05 2.31301082623e-05 -3132039613.09 +UniRef50_UPI00037E43F6 hypothetical protein 4.3590913564e-05 3.14085481731e-05 -4918170402.74 +UniRef50_P08394 RecBCD enzyme subunit RecB 0.000131076499281 0.000108972851112 -8923514008.09 +UniRef50_A0A037ZMW4 0.000283210444089 3.86806325102e-05 -98719685652.7 +UniRef50_Q89XW7 Shikimate kinase 3.79222910602e-05 1.24182022537e-05 -10296313621.5 +UniRef50_V5EQM5 2.96594350358e-05 1.19258481106e-05 -7159266657.29 +UniRef50_R1DWA7 9.51419286462e-05 1.0576705467e-05 -34140018329.4 +UniRef50_W8S8B2 Pe pgrs family protein 1.50431372622e-05 4.08294216261e-05 10410239431.0 +UniRef50_R6BXV0 0.000112013646546 0.00208188669737 7.95261923677e+11 +UniRef50_UPI00047A0085 6 phospho beta glucosidase 2.99715528178e-06 1.47404777137e-06 -614897192.583 +UniRef50_N9KV58 0.000174762031871 0.00797836606036 3.15041070729e+12 +UniRef50_Q6AAJ1 DNA or RNA helicase of superfamily II 0.000229794868266 0.00488398295725 1.87895284483e+12 +UniRef50_UPI0004796361 hypothetical protein 0.000107217101758 6.27243221659e-05 -17962281109.1 +UniRef50_A6LYE4 Peptidoglycan binding domain 1 protein 0.000165898485148 0.00042213379478 1.03445338859e+11 +UniRef50_UPI000477452D histidine kinase 4.60630914106e-05 6.86164329904e-05 9105060756.39 +UniRef50_A0A024C8M9 Membrane protein 5.85552206083e-05 0.00422318771014 1.68131324181e+12 +UniRef50_A4FWA2 50S ribosomal protein L18P 0.00232842271831 0.0015226509923 -3.25299933721e+11 +UniRef50_P31826 Inner membrane ABC transporter ATP binding protein YddA 0.00179919530112 0.000328421544177 -5.937694141e+11 +UniRef50_UPI00036700D3 hypothetical protein 0.000301297876521 0.000224584673373 -30970061487.7 +UniRef50_A4W3M3 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.00260361561351 0.00285951972995 1.03311632103e+11 +UniRef50_Q5NNR3 7 cyano 7 deazaguanine synthase 0.0080830832241 0.00391654925827 -1.68208089113e+12 +UniRef50_A0A017T5I2 EBNA 1 protein 1.21079502275e-05 1.11053149746e-05 -404776155.314 +UniRef50_UPI000414E366 sodium 6.93968831996e-06 7.96343345451e-06 413298473.583 +UniRef50_Q6FA05 0.00014964889036 0.00559641518848 2.19892639389e+12 +UniRef50_R7Q4F8 Stackhouse genomic scaffold, scaffold_111 2.75747092235e-05 0.000147622324686 48464695511.9 +UniRef50_G4RGP8 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components 0.00463444876936 0.00027685941112 -1.75921229756e+12 +UniRef50_UPI00037A37E9 hypothetical protein 0.000150223176476 8.87730943536e-05 -24808152230.1 +UniRef50_F5LFP9 Topology modulation protein 5.56789919968e-05 0.000207914723689 61459433026.6 +UniRef50_E9AEM9 Proteophosphoglycan 5 7.07725029937e-06 3.21608774848e-05 10126568105.5 +UniRef50_K8G8E5 3.155270097e-05 2.63855588771e-05 -2086038670.87 +UniRef50_I2BVX5 0.000498236840259 6.07647541518e-05 -1.76612849548e+11 +UniRef50_UPI00036A1C3B hypothetical protein 1.02715912234e-05 1.63877532203e-05 2469169651.9 +UniRef50_Q2LWY9 Ribonuclease H 1.34815721732e-05 1.66990883702e-05 1298950772.09 +UniRef50_Q3IW30 PreQ biosynthesis protein QueC 0.00984280689209 0.000705936347077 -3.68866676103e+12 +UniRef50_M3G510 Hemolysin 1.88898297824e-06 1.40381891147e-05 4904783604.83 +UniRef50_U6JRA6 1.27667208899e-05 1.68595127265e-05 1652310288.64 +UniRef50_Q5HL91 Perfringolysin O regulator protein, putative 0.0247394349782 0.0060734506343 -7.53568693702e+12 +UniRef50_Q2S3M1 4 hydroxy tetrahydrodipicolinate synthase 4.99095830441e-05 1.93398663342e-05 -12341369768.4 +UniRef50_UPI00046FF4AE leucine isoleucine valine transporter ATP binding subunit, partial 4.90987283162e-05 3.49846683613e-05 -5698019202.79 +UniRef50_UPI000370E248 hypothetical protein 0.000239486552724 3.04307807035e-05 -84398380567.7 +UniRef50_D8U8Q0 2.57057052498e-05 1.9713910309e-05 -2418961145.19 +UniRef50_Q8NYT6 0.0129668763468 0.00197234011225 -4.43862919604e+12 +UniRef50_B9KNI6 0.00293656106939 0.00388149210305 3.81480253896e+11 +UniRef50_Q9RWM5 0.000862679536592 0.0561989170929 2.23399181535e+13 +UniRef50_UPI00046849C9 ABC transporter ATP binding protein 5.98464756926e-05 2.41602845182e-05 -14406953295.9 +UniRef50_D3SC43 UPF0125 protein TK90_2052 3.17473757718e-05 2.66451856724e-05 -2059816754.04 +UniRef50_R6PLE5 1.81447450763e-05 3.10154520357e-06 -6073124389.43 +UniRef50_A8FDI9 tRNA dimethylallyltransferase 2.58976472945e-05 8.74841575132e-06 -6923355218.73 +UniRef50_UPI00047E1B1C ribokinase, partial 8.04344230477e-06 1.28483066712e-05 1939782707.04 +UniRef50_C6NRJ9 Amino acid permease family protein 1.3939614933e-05 2.50653179639e-05 4491582841.3 +UniRef50_Q8DWY0 UPF0246 protein SAG2081 0.00637544225428 0.00476749063115 -6.49149802043e+11 +UniRef50_X5ENZ1 0.000184139506761 0.00181463993961 6.58253033232e+11 +UniRef50_UPI0002558C15 response regulator receiver GGDEF EAL domain containing protein 5.78013895782e-06 3.03772821982e-05 9930168567.04 +UniRef50_Q3JNE0 4.39325825196e-05 0.000229669505017 74984274860.4 +UniRef50_D2PRN7 CutC family protein 0.00053926569836 0.00483246819892 1.733218533e+12 +UniRef50_F0NB13 Transporter, gluconate 0.000167731530739 0.00256544701727 9.6798716519e+11 +UniRef50_UPI00040B5085 phosphodiesterase 3.45327995097e-05 4.05214587922e-05 2417695241.46 +UniRef50_W0AGC9 8.1788704378e-05 4.22660245031e-05 -15955790863.3 +UniRef50_P76553 Ethanolamine utilization protein EutG 0.00341954089383 0.00141422918387 -8.09568945253e+11 +UniRef50_G8AHE6 0.00025861854033 0.000250150935068 -3418476153.47 +UniRef50_Q5HQB1 Probable quinol oxidase subunit 3 0.026089914596 0.00830162082321 -7.18135248299e+12 +UniRef50_F2ABA7 0.000379458296193 0.000151722601437 -91939694604.2 +UniRef50_Q59409 RNA polymerase sigma factor RpoS 0.0030099296252 0.000476036188385 -1.02296387481e+12 +UniRef50_F9V7A7 Mannose specific PTS system IID component 0.000230174383446 0.00121154800667 3.96192574504e+11 +UniRef50_UPI00046D26DA hypothetical protein 7.5891429302e-06 0.000118805795911 44899527590.2 +UniRef50_Q11CZ9 0.00015076949652 3.10485181216e-05 -48332828120.9 +UniRef50_W7E2M1 Heme oxygenase 2.81695210041e-05 3.8599369285e-05 4210657739.63 +UniRef50_A2RGD6 0.00775884795102 0.00573497447903 -8.17062556363e+11 +UniRef50_P75978 0.00381771462607 0.000733528486484 -1.24512379177e+12 +UniRef50_W8YNB5 8.82664042509e-05 0.00221881559628 8.60128853601e+11 +UniRef50_J3L401 1.98207177051e-06 6.97986207268e-06 2017669274.77 +UniRef50_E8SGA0 Teichoic acid biosynthesis protein F 0.0101883950395 0.00286820365136 -2.95525109224e+12 +UniRef50_U4T249 3.54624377764e-06 1.26727904205e-05 3684498875.04 +UniRef50_UPI00029A6F6B transporter, MFS family protein, partial 2.28895641105e-05 4.37178314891e-05 8408627132.32 +UniRef50_UPI00047C75A1 elongation factor G 6.09933070649e-06 0.000146199541709 56560174404.8 +UniRef50_H9UTM9 0.00129476304864 0.00130189609489 2879698303.45 +UniRef50_Q9LEU8 Argininosuccinate lyase, chloroplastic 2.86177146523e-05 2.7868395681e-05 -302509263.892 +UniRef50_M0RG67 8.73173073326e-06 6.49664027681e-05 22702627177.5 +UniRef50_UPI0004784289 mannose 1 phosphate guanyltransferase 3.65642446357e-06 1.8896222136e-05 6152493333.7 +UniRef50_C6SR62 0.00749738775457 0.00402304148061 -1.40263622582e+12 +UniRef50_D7GIE6 Thiamine phosphate synthase 0.000294910928794 0.0015824862537 5.19809958992e+11 +UniRef50_P37615 0.00063023747704 0.000471250061484 -64185170654.9 +UniRef50_F9YWL1 ABC transporter 0.000243371238756 0.0023474869462 8.49457331497e+11 +UniRef50_P37661 Phosphoethanolamine transferase EptB 0.00315040508671 0.00097207538931 -8.79418429952e+11 +UniRef50_P77817 Cell division protein FtsZ 0.00146984599825 0.000212203620496 -5.07725660905e+11 +UniRef50_UPI0003703469 ATP binding protein, partial 6.9598139847e-05 2.06367990516e-05 -19766294102.3 +UniRef50_F0RP27 Peptidyl prolyl cis trans isomerase 0.00169032990832 0.0530693842426 2.07423547267e+13 +UniRef50_Q8CNF4 NAD dependent protein deacetylase 0.0210545623379 0.00530952965244 -6.35646290841e+12 +UniRef50_UPI00035FE3BB Fis family transcriptional regulator 0.000101379527657 5.10400329082e-05 -20322671765.2 +UniRef50_B9KQH1 Flagellar biosynthesis type III secretory pathway protein 0.00671231089254 0.00219384551172 -1.82415992204e+12 +UniRef50_UPI0003A911E9 adenylosuccinate lyase 1.75474775265e-06 1.34847889156e-05 4735561561.29 +UniRef50_UPI000366B7BC MULTISPECIES 1.97966992908e-06 7.11720013531e-05 27933793281.3 +UniRef50_O27441 3 isopropylmalate dehydrogenase 0.00507077720367 0.00183143830067 -1.3077608663e+12 +UniRef50_X8AYJ2 0.000137520711262 0.000337504805945 80736033104.3 +UniRef50_N6UCK5 0.000465790714061 7.08506573235e-05 -1.59442147364e+11 +UniRef50_A0A059IK34 0.000121897231714 8.92010571816e-05 -13199846885.9 +UniRef50_UPI0003C19D83 1.41152600356e-05 3.65389414495e-05 9052715356.31 +UniRef50_I0ET87 0.000257376810578 0.002972252228 1.09602852128e+12 +UniRef50_UPI00036DA55D hypothetical protein 3.38578179153e-05 6.1097135649e-05 10996846833.1 +UniRef50_F8GLJ2 Putrescine binding periplasmic protein 0.000453363943361 0.000839896880292 1.56048089932e+11 +UniRef50_W0RQV3 3.17299169844e-05 4.33429224372e-05 4688312808.9 +UniRef50_A6LS21 Sugar isomerase 0.000269023209136 0.00177287635887 6.07123970899e+11 +UniRef50_V5G7G2 8.27762082457e-05 3.67719352379e-06 -31933242897.3 +UniRef50_Q6DQL1 Succinyl CoA ligase [ADP forming] subunit alpha 2, mitochondrial 5.5605163404e-05 3.80183606123e-05 -7100008101.35 +UniRef50_UPI000366E5C2 hypothetical protein 6.60771543552e-06 1.04174098821e-05 1538020398.29 +UniRef50_P0AFA6 Bacteriophage N4 adsorption protein B 0.00059198201005 0.000447270583598 -58421778667.6 +UniRef50_UPI000376010F hypothetical protein 2.87691265587e-05 0.000313246839383 1.14847143601e+11 +UniRef50_I1PTF2 0.000757323628834 7.55384323853e-05 -2.75245050252e+11 +UniRef50_D9SVI0 DEAD DEAH box helicase domain protein 0.000504894929871 0.00126323618435 3.06151670327e+11 +UniRef50_A9EWC9 Probable PE_PGRS family protein 1.3268122317e-05 7.01498942776e-06 -2524466481.96 +UniRef50_UPI0002556201 beta ketoacyl synthase 1.91078720841e-05 9.25191804214e-05 29637046033.8 +UniRef50_A6V1S7 0.000369641128892 0.000530757093494 65044492025.0 +UniRef50_UPI0004645B86 hypothetical protein 1.50797276133e-05 5.10099643814e-05 14505477496.9 +UniRef50_W8AF54 6.76094308422e-05 0.000202633648692 54510933679.5 +UniRef50_G7ZTD1 Fibrinogen and keratin 10 binding surface anchored protein 0.00271866640193 0.000337282541898 -9.6139388716e+11 +UniRef50_Q16AI7 Signal peptidase I, putative 0.0111845892746 0.00452837821333 -2.68719408633e+12 +UniRef50_UPI00035D6F7F hypothetical protein 6.79353137527e-05 2.95117110084e-05 -15512079938.5 +UniRef50_M3YNX9 1.56185009798e-05 2.44374858176e-05 3560332400.13 +UniRef50_UPI0004636F37 ABC transporter permease 6.52577239647e-06 0.000227147471354 89067687202.0 +UniRef50_Q9RUH1 Ornithine aminotransferase, putative 8.69115860788e-05 0.0362836088562 1.46130508714e+13 +UniRef50_I6TPB9 GntR family transcriptional regulator 0.00361201470119 0.00253081550946 -4.36493381507e+11 +UniRef50_G5MQF2 0.000223792707901 0.00260482806462 9.61253192097e+11 +UniRef50_UPI00046D6B05 hypothetical protein 8.43040171975e-06 1.57015612718e-05 2935456338.32 +UniRef50_P80885 Pyruvate kinase 0.0162808234147 0.0097943942454 -2.61865105308e+12 +UniRef50_A0RMD0 NADH quinone oxidoreductase subunit B 9.47304045872e-06 0.000141267578419 53207072275.3 +UniRef50_M1L621 ABC transport system permease protein 7.88813562631e-06 1.96448601012e-05 4746333941.75 +UniRef50_G7U7Q7 PAS domain S box 0.000121769673823 0.00522266260856 2.05929307275e+12 +UniRef50_X8JCV2 1.9258538301e-05 1.05896425536e-05 -3499739592.54 +UniRef50_B8D004 2.27865914968e-05 3.04972289643e-05 3112878965.79 +UniRef50_D6SDZ2 Gamma glutamyltransferase 0.0146082198817 0.0016882235684 -5.21596105786e+12 +UniRef50_UPI0004728A87 5 amino 6 uracil reductase, partial 1.08023243422e-05 1.9557852978e-05 3534714352.69 +UniRef50_UPI00046350E3 DNA primase 3.69449663589e-06 4.07880808902e-06 155151249.66 +UniRef50_P26394 dTDP 4 dehydrorhamnose 3,5 epimerase 0.00321656205519 0.00272320374059 -1.99174805791e+11 +UniRef50_O25396 Ferrous iron transport protein B 5.98234530714e-05 0.00312630829952 1.23797756251e+12 +UniRef50_UPI0004766C33 NTP pyrophosphohydrolase 0.000827448867561 6.81759308144e-05 -3.06527801891e+11 +UniRef50_UPI0002FD23FE hypothetical protein 0.000108723016096 0.000183768788391 30296899190.7 +UniRef50_U5NN27 Antitoxin of type II toxin antitoxin system 0.00139402406234 0.000816629530436 -2.33101257957e+11 +UniRef50_UPI00036547B5 hypothetical protein 0.00111005594313 0.000300971465453 -3.26637332221e+11 +UniRef50_D8LJ34 3.92171160258e-05 8.84112993479e-06 -12263158340.2 +UniRef50_C1D1L2 Glutamyl tRNA amidotransferase subunit A 2.97430987881e-06 0.000482427303381 1.93561057027e+11 +UniRef50_J7M137 Adenine specific methyltransferase 0.00655952188607 0.00441224264668 -8.66882979021e+11 +UniRef50_A6LWI4 0.00115546442156 0.00102363418921 -53221482538.6 +UniRef50_Q0RS03 Glutamate 1 semialdehyde 2,1 aminomutase 0.000584505817458 0.00282402259035 9.04120403177e+11 +UniRef50_J9YUJ8 Sensor histidine kinase 0.000459054732756 0.000905474431312 1.80225110493e+11 +UniRef50_UPI0003804843 hypothetical protein 3.22293065206e-06 5.95066829984e-06 1101221161.51 +UniRef50_H2IGF7 4.3954923605e-05 0.000247695625001 82252621333.1 +UniRef50_Q83MA0 Taurine import ATP binding protein TauB 0.00493379543622 0.00134704237088 -1.44801622689e+12 +UniRef50_W7W7I1 0.000569050295571 0.000140276079485 -1.73101412685e+11 +UniRef50_Q46786 0.00161031644449 0.000984389017326 -2.52694583339e+11 +UniRef50_Q46787 0.00650425965803 0.0029913578176 -1.41820158113e+12 +UniRef50_L2TVA4 Sugar transporter family protein 9.90950248786e-06 6.80398639023e-05 23467940242.7 +UniRef50_UPI000478BD3D hypothetical protein 1.02797732095e-05 1.07134500423e-05 175080659.215 +UniRef50_D4HA38 OmpA family protein 0.00010673496386 0.00398974969212 1.56762069575e+12 +UniRef50_Q839B0 33 kDa chaperonin 0.0293312593117 0.0076271929072 -8.76219794634e+12 +UniRef50_T2EL78 0.000178628719397 6.69905569354e-05 -45069696140.2 +UniRef50_Q83H98 Glutamate 1 semialdehyde 2,1 aminomutase 5.11846138901e-06 0.000552786434325 2.21100281316e+11 +UniRef50_M2M947 Putative 40K cell wall protein 0.00188587855053 0.000744226661808 -4.6089887712e+11 +UniRef50_Q9ZLC0 Anaerobic C4 dicarboxylate transporter DcuA 0.00282890113091 0.00337844555296 2.2185782685e+11 +UniRef50_W1CHR3 Tripeptide aminopeptidase 0.000768365044158 0.000279921047585 -1.97190835298e+11 +UniRef50_UPI000470943C biopolymer transporter ExbD 3.79343583738e-05 5.93132699173e-05 8630928938.86 +UniRef50_UPI000364FFFE hypothetical protein, partial 0.000288187227331 0.000158625800386 -52305537955.2 +UniRef50_UPI00046D09E1 hypothetical protein 2.41636368177e-05 2.07351545933e-05 -1384120346.2 +UniRef50_Q8XAF1 Propionate kinase 0.00402044731908 0.00195492503895 -8.33876691297e+11 +UniRef50_UPI000328F876 PREDICTED 2.28980102878e-06 8.08557099813e-06 2339823458.72 +UniRef50_W8WCZ2 0.000176015318437 0.00140252969254 4.95158903848e+11 +UniRef50_D8JKZ8 AFG1 like ATPase family protein 0.00051599525936 0.00643922794644 2.39128172201e+12 +UniRef50_UPI00046AD3AE dihydroxy acid dehydratase 3.33977139462e-05 3.0743133119e-06 -12241928946.0 +UniRef50_UPI0003EA9F92 PREDICTED 2.11094360157e-05 0.000107885088205 35032395645.8 +UniRef50_UPI000475069F ribose ABC transporter permease 7.94549786454e-05 0.00011023475423 12426173113.8 +UniRef50_Q6F700 0.000112438909664 7.98248313796e-05 -13166703623.2 +UniRef50_UPI00016C4E46 4 alpha glucanotransferase 1.17715046097e-05 0.000646693377851 2.56325751595e+11 +UniRef50_O84917 Ribulose bisphosphate carboxylase 0.0110841365328 0.0024996159848 -3.46567628914e+12 +UniRef50_UPI000329D36D PREDICTED 5.49703877593e-05 3.44139745399e-05 -8298876272.23 +UniRef50_E6VFF6 Diguanylate cyclase 5.81069090713e-06 0.000769272881805 3.082190552e+11 +UniRef50_Q8XJR3 DNA polymerase III PolC type 3.54555825554e-06 1.71413548628e-06 -739367846.035 +UniRef50_Q9RS27 Alanine tRNA ligase 0.000381266927201 0.0329410323152 1.31447768404e+13 +UniRef50_K2HSX3 5.26887385253e-05 1.82775281575e-05 -13892227898.5 +UniRef50_M1MML8 0.00106375922176 0.00356867642859 1.01126581519e+12 +UniRef50_S2ZVN1 1.68302866869e-06 2.4819222001e-06 322523122.156 +UniRef50_K4MTL7 Minor ampullate spidroin 9.13467432813e-06 2.91167304553e-05 8067001265.95 +UniRef50_Q67K77 Holo [acyl carrier protein] synthase 1.34932167629e-05 3.67226116839e-05 9377991786.34 +UniRef50_UPI0003C1325D PREDICTED 6.83247894327e-05 8.71670665404e-05 7606858489.12 +UniRef50_U3U4J5 AraC family transcriptional regulator 1.53487891056e-05 2.30361681009e-05 3103489235.15 +UniRef50_H5WT01 Activator of osmoprotectant transporter ProP 0.000269493140269 0.000120535730883 -60135934082.1 +UniRef50_A6TYC4 0.011906716984 0.00302557061513 -3.58542777303e+12 +UniRef50_P77221 0.00312616327745 0.00307564013901 -20396810976.9 +UniRef50_P75821 0.00524809261963 0.000459881820649 -1.9330594575e+12 +UniRef50_F0DGH5 Metallo beta lactamase superfamily protein 0.00208253136272 1.22273265162e-05 -8.35807144901e+11 +UniRef50_P75822 0.00274132403307 0.000281865394675 -9.92913633273e+11 +UniRef50_V6UL61 3.37180843685e-05 8.71173012871e-05 21557919152.1 +UniRef50_Q8G692 Prolipoprotein diacylglyceryl transferase 1.05381430643e-05 5.46566520379e-06 -2047821558.59 +UniRef50_Q51547 Phosphate specific transport system accessory protein PhoU homolog 0.00220280175432 0.0134273784804 4.53149936537e+12 +UniRef50_L5MQQ0 4.47422346904e-06 5.49539336623e-06 412258818.659 +UniRef50_Q9JV93 4 hydroxybenzoate octaprenyltransferase 0.000140852980911 0.00203775650639 7.6580323086e+11 +UniRef50_UPI000467BA9A glycogen debranching protein 4.06588507317e-05 0.000133848801421 37621926662.6 +UniRef50_UPI00046F258D bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial 0.000489119721737 0.0093854875063 3.59157284534e+12 +UniRef50_C6AA47 N acetylmuramoyl L alanine amidase 0.000176946557275 0.000329962799096 61774534543.6 +UniRef50_UPI0003B42974 ABC transporter ATP binding protein 3.37840811763e-05 3.96684421356e-05 2375588728.5 +UniRef50_UPI0004075F22 hypothetical protein 1.56260016227e-05 5.83697657181e-06 -3951949537.89 +UniRef50_Q1LZ65 RpiR like protein 0.00480414684853 0.0010339510549 -1.52207430739e+12 +UniRef50_UPI0003808D6C hypothetical protein 3.9472056073e-05 4.0607070225e-05 458219141.352 +UniRef50_G0DU58 Triacylglycerol lipase 0.000184439408233 0.00760196822075 2.99454740493e+12 +UniRef50_R4NRW2 Late competence protein ComGD, access of DNA to ComEA 1.18278288562e-05 4.32858633692e-05 12699994566.4 +UniRef50_UPI00037397C6 hypothetical protein 6.77359588533e-06 2.29059705552e-06 -1809841640.18 +UniRef50_P39708 NADP specific glutamate dehydrogenase 2 7.82741812236e-06 3.50298410794e-05 10981951959.0 +UniRef50_UPI0004645BC1 type III secretion system protein InvA 1.50568089289e-06 3.24586139206e-06 702532221.931 +UniRef50_X1BI18 Marine sediment metagenome DNA, contig 1.8536218514e-05 7.07761006701e-05 21089881481.9 +UniRef50_I5QRE7 Transcriptional regulator, LysR family 0.000231031039916 5.41879770379e-05 -71393714592.3 +UniRef50_I0W3J8 Transposase, IS4 like family protein 7.41643275549e-05 6.22202366967e-05 -4821976049.93 +UniRef50_UPI0003B748CE hypothetical protein 0.00110426172816 2.54991658574e-06 -4.44774577855e+11 +UniRef50_A6M3G1 Aminoglycoside phosphotransferase 0.000118210643688 0.00214028413028 8.16335880168e+11 +UniRef50_D3QEQ2 0.0205609255763 0.0031036663864 -7.04770975962e+12 +UniRef50_I1EWK9 8.78541112076e-06 4.99101052959e-05 16602543695.2 +UniRef50_P67734 Coenzyme A biosynthesis bifunctional protein CoaBC 0.000448609717032 0.00715588406959 2.70780896364e+12 +UniRef50_UPI0003735E21 hypothetical protein 7.69874388257e-05 2.29304389204e-05 -21823474215.8 +UniRef50_B9MRP4 Argininosuccinate lyase 1.03449003462e-05 4.92613811524e-06 -2187620808.33 +UniRef50_UPI0003762CE6 MULTISPECIES 1.32684620204e-05 0.000107420369167 38010280288.9 +UniRef50_T9DD40 Hydrolase 0.000491596219502 0.000878310896958 1.56121460812e+11 +UniRef50_UPI0003C14BCE PREDICTED 4.18855225649e-05 0.000753107502809 2.871290411e+11 +UniRef50_UPI0003A2FE59 hypothetical protein 6.89801096769e-06 1.01875626519e-05 1328032382.25 +UniRef50_G0NWR7 6.21658168988e-07 7.95263326013e-05 31854785337.6 +UniRef50_UPI000255BEAA ferrochelatase, partial 8.41272598739e-06 4.23104912254e-05 13684943798.9 +UniRef50_Q6GEY2 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.0250145942039 0.00429808574613 -8.36350868456e+12 +UniRef50_UPI00022CA988 PREDICTED 0.00154565977503 0.000144089832261 -5.65830985094e+11 +UniRef50_UPI00037E7536 hypothetical protein 4.24485965656e-06 5.02530908542e-06 315077011.622 +UniRef50_Q1H2B5 Dihydroxyacetone kinase DhaK subunit 0.000173423884613 0.00873054076727 3.45461309316e+12 +UniRef50_R9ZDS5 LysR family transcriptional regulator 0.000437265287315 0.00172304548347 5.19085243487e+11 +UniRef50_Q7UFW4 Argininosuccinate synthase 8.49139270096e-06 5.07727025993e-05 17069483656.0 +UniRef50_UPI0004076A57 polyhydroxyalkanoate synthesis repressor 3.21861359658e-05 1.08785324585e-05 -8602141009.6 +UniRef50_R5I2I4 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00724827343602 0.00890513007173 6.68893355753e+11 +UniRef50_A5UNE8 0.00878160099278 0.000466289534524 -3.35699327605e+12 +UniRef50_E0NCD7 0.000555302392987 0.00400995073122 1.39468392745e+12 +UniRef50_A5UK92 Uridylate kinase 0.00311337724788 0.00132865377874 -7.20514765512e+11 +UniRef50_UPI0003C11674 PREDICTED 5.2213613294e-05 4.46291662904e-05 -3061934326.98 +UniRef50_UPI0002492155 penicillin binding protein 2B 3.25657145973e-06 1.53861627826e-05 4896864863.88 +UniRef50_C3PHK3 Aminomethyltransferase 1.04093688114e-05 5.55398258339e-05 18219719313.0 +UniRef50_R1HV07 DNA repair protein RadA 5.16891827567e-05 0.000594204639029 2.1902014711e+11 +UniRef50_UPI00039EAFFC secretion protein HylD 2.18010124453e-05 4.92560984091e-06 -6812807115.87 +UniRef50_R7PRX3 0.000103854126869 3.58872699094e-05 -27439054201.7 +UniRef50_Q5HPN8 tRNA dimethylallyltransferase 0.0166145798109 0.0082930809458 -3.35949120812e+12 +UniRef50_D4HD87 Histidine kinase 0.000231592880319 0.00473638938392 1.81864162857e+12 +UniRef50_Q0C093 Guanylate kinase 9.74120548599e-06 2.6746171033e-05 6865113265.72 +UniRef50_Q11SW8 Lipoprotein releasing system ATP binding protein LolD 1.58468233952e-05 5.4641967468e-05 15662075732.1 +UniRef50_P37317 Integrase 0.00525644915044 0.00206325489827 -1.2891317045e+12 +UniRef50_A3CQT5 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase 0.0257959937502 0.0121493355844 -5.50932336486e+12 +UniRef50_Q5PHV8 Gamma aminobutyraldehyde dehydrogenase 0.00249124149289 0.000490281934934 -8.07811928083e+11 +UniRef50_A5IU13 Transcriptional regulator, XRE family 0.0122434679821 0.00801157507904 -1.70846709613e+12 +UniRef50_Q83CY8 Putative peroxiredoxin bcp 1.84484904834e-05 0.00119281998397 4.74108183081e+11 +UniRef50_G2JM28 Permease 0.000132761778031 0.00575878201728 2.27129340962e+12 +UniRef50_P33363 Periplasmic beta glucosidase 0.00357985835018 0.0143838529115 4.36170518432e+12 +UniRef50_O32142 5 hydroxyisourate hydrolase 2.61692489581e-05 2.95768796738e-05 1375702336.26 +UniRef50_P16326 Flagellar hook associated protein 3 0.00379644108501 0.000423374303 -1.36174845208e+12 +UniRef50_U6A8Z3 0.000766471207329 0.000285614530751 -1.9412774111e+11 +UniRef50_A6QES9 0.000251095123551 0.00120537430691 3.85254216644e+11 +UniRef50_K0AB23 Nucleotide sugar dehydrogenase 0.00219106800022 0.00221636856195 10214147243.2 +UniRef50_R7PW62 MATE efflux family protein 0.0025136377989 0.000632264113912 -7.59533643682e+11 +UniRef50_UPI0004783D2F molybdenum cofactor guanylyltransferase 8.97221555477e-06 9.29830367211e-06 131645774.521 +UniRef50_UPI000301FF6F hypothetical protein 0.000117297559195 4.60145239169e-05 -28777836083.0 +UniRef50_F0Y6Y0 Expressed protein 0.00029157606303 0.000398381148276 43118523559.6 +UniRef50_Q1IWZ8 Glutamate 1 semialdehyde 2,1 aminomutase 4.75853129959e-06 0.00247228368533 9.96170184621e+11 +UniRef50_Q2YVY3 Peptidyl tRNA hydrolase 0.0154799837399 0.00234690984458 -5.30198309247e+12 +UniRef50_Q2LQB0 50S ribosomal protein L14 0.00451633953667 0.000490831088969 -1.62514715888e+12 +UniRef50_A1VJH7 0.000291531235519 7.69637849186e-05 -86623512845.9 +UniRef50_R1FK72 3.05783364798e-06 2.44440456934e-06 -247648846.668 +UniRef50_UPI000395C119 PREDICTED 0.000189745892444 0.000260000033926 28362459031.5 +UniRef50_B7V4B3 Transcriptional regulator Dnr 0.00165232545465 0.000604744106207 -4.22921445634e+11 +UniRef50_P06988 Histidinol dehydrogenase 0.00347506293447 0.000531840696352 -1.18821493493e+12 +UniRef50_E1VIL5 6.63420015524e-05 0.00823102858277 3.29618416481e+12 +UniRef50_A9WHT8 Histidine ammonia lyase 3.09460586049e-06 1.12075691929e-05 3275302854.55 +UniRef50_UPI00035DFFA6 hypothetical protein 0.000574886937602 9.11671722432e-05 -1.95283605184e+11 +UniRef50_M2XUJ5 9.30417190192e-05 6.09537409373e-06 -35101306398.1 +UniRef50_D2ZRP6 0.00390956596191 0.000499435917173 -1.37671134606e+12 +UniRef50_P26426 Lactose specific phosphotransferase enzyme IIA component 0.00678077848386 0.00407497936645 -1.09236430759e+12 +UniRef50_UPI0003824A7E sarcosine oxidase subunit alpha 5.78506571621e-06 3.82133223873e-06 -792783302.578 +UniRef50_Q45493 Ribonuclease J1 4.82676023189e-05 0.00261141566327 1.03477432557e+12 +UniRef50_B9KU62 Sulfide quinone reductase 0.00793928130123 0.00402738092392 -1.57928218674e+12 +UniRef50_A4WNN0 NnrU family protein 0.000926814471448 0.000350177911301 -2.32795255458e+11 +UniRef50_UPI00037A9B52 hypothetical protein 3.39084576645e-06 0.000219137753758 87099674268.7 +UniRef50_Q97FS6 Dihydroorotate dehydrogenase B ), electron transfer subunit 0.000166783205682 0.00240060236153 9.0182020526e+11 +UniRef50_UPI0004105041 hypothetical protein 2.51322636758e-06 4.91563638151e-06 969882403.51 +UniRef50_F5M5N5 0.00275893496775 0.000164088591142 -1.04757132458e+12 +UniRef50_F5M5N4 0.0018796929063 0.00271214057326 3.36069338433e+11 +UniRef50_J7L4H8 7.62216088599e-06 0.000805805738426 3.22236505067e+11 +UniRef50_P15082 Glucitol operon repressor 0.00180615107751 0.000951420880895 -3.45065069092e+11 +UniRef50_UPI00037CACA0 hypothetical protein 6.62896518257e-06 1.02566296573e-05 1464532664.9 +UniRef50_Q3J0U8 0.000673825664755 0.000105157283751 -2.29578403757e+11 +UniRef50_J0ZLP6 Putative formate dehydrogenase accessory protein 0.00277693719433 0.00181213127968 -3.89503987244e+11 +UniRef50_UPI00035F0280 hypothetical protein 2.81564641374e-06 7.0593260943e-05 27362654710.3 +UniRef50_D3E016 Tungsten formylmethanofuran dehydrogenase subunit F FwdF 0.00529528123682 0.000815682455238 -1.80846899898e+12 +UniRef50_M4QXD0 Transcriptional regulator, LysR family 0.000548029113216 0.0140299073356 5.44279967963e+12 +UniRef50_UPI00034978EE MULTISPECIES 0.000183127355807 5.8402496082e-06 -71572980330.0 +UniRef50_A5IVE5 0.00179802891376 0.00299713470719 4.8409372349e+11 +UniRef50_UPI0003B6AAEA aldehyde oxidase 1.72594315201e-06 2.38808014899e-06 267312831.015 +UniRef50_P73471 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.34059865189e-05 1.38697583032e-05 -11924137781.0 +UniRef50_UPI00035ED296 hypothetical protein 2.86345886837e-06 7.62847965418e-06 1923697364.61 +UniRef50_Q5XAK0 Alpha glycerophosphate oxidase 1.51342322376e-05 0.00562912893038 2.2664385511e+12 +UniRef50_V1SNF4 0.000725675592536 0.000411734172721 -1.26742003674e+11 +UniRef50_UPI0003B6CE87 pseudouridylate synthase 2.97154900291e-06 6.85951639861e-06 1569620148.37 +UniRef50_UPI00037F0084 hypothetical protein 1.42740595201e-05 0.00109721347852 4.37195932611e+11 +UniRef50_P42913 0.000466032084997 0.000665326022367 80457408127.9 +UniRef50_Q5HRP5 tRNA lysidine synthase 0.0226257314678 0.00680934264638 -6.38527025612e+12 +UniRef50_Q7VK48 GTP cyclohydrolase 2 0.000989908216082 0.00364217494039 1.07075262358e+12 +UniRef50_M7XY21 5.18195898667e-05 5.13766652118e-05 -178814118.48 +UniRef50_A5UKS5 SAM dependent methyltransferase 0.00165391898123 0.000186123973868 -5.92566856341e+11 +UniRef50_UPI000380CF2F hypothetical protein 3.05805837408e-05 3.3013586947e-05 982233250.65 +UniRef50_UPI00037F7F53 hypothetical protein 3.11230370635e-05 4.0957922843e-06 -10911230379.0 +UniRef50_X2LKW6 Acetyltransferase component of pyruvate dehydrogenase complex 0.00312451601784 0.000970873939229 -8.69451735295e+11 +UniRef50_Q8KBE8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.11231398091e-05 2.95962832748e-06 -3295709762.68 +UniRef50_A5UP32 Purine pyrimidine phosphoribosyl transferase 0.00393878852312 0.00132035291974 -1.0570945849e+12 +UniRef50_UPI000466F53C hypothetical protein 8.95979252485e-06 6.98561133964e-06 -797001170.397 +UniRef50_UPI00042740A6 hypothetical protein 1.07380289279e-05 0.000697176066274 2.77123459219e+11 +UniRef50_Q0FV17 Phenol hydroxylase, putative 0.000735321092641 7.04164799808e-05 -2.68430151428e+11 +UniRef50_Q9RU29 0.000238915182824 0.0203799318796 8.13117559857e+12 +UniRef50_Q81FQ1 Histidinol phosphate aminotransferase 1 1.19672659482e-05 0.000421603393774 1.65375131604e+11 +UniRef50_B3RB46 Acyl CoA dehydrogenase 0.000968319752328 0.000561095839466 -1.64401290822e+11 +UniRef50_C5N5E1 0.00134885703018 0.000532102171523 -3.29733959149e+11 +UniRef50_A3M7M4 0.000291870609934 0.00832744322765 3.24405927334e+12 +UniRef50_Q606N2 Beta hexosaminidase 5.06181037175e-06 2.82679540271e-05 9368604965.09 +UniRef50_UPI0004720773 50S ribosomal protein L7 L12 4.26340475426e-06 0.000493316098297 1.97436573735e+11 +UniRef50_Q82YY1 Ribosomal RNA small subunit methyltransferase G 0.013684831101 0.00241676617498 -4.54905608533e+12 +UniRef50_UPI00034CCF2C hypothetical protein 7.67870740343e-05 1.22247515731e-05 -26064601846.4 +UniRef50_UPI00040B1DFA hypothetical protein 4.64183765538e-06 5.47473993412e-05 20228230116.9 +UniRef50_P00497 Amidophosphoribosyltransferase 0.00555099191055 0.0462611873891 1.64352054849e+13 +UniRef50_UPI00022CA5D5 PREDICTED 0.00120368947609 0.000112373727427 -4.40577559684e+11 +UniRef50_UPI00047094BE hypothetical protein 1.24567744489e-06 3.76754720125e-05 14707155110.8 +UniRef50_J8VE04 Lipoprotein 0.000715700771594 0.000382835600961 -1.343817541e+11 +UniRef50_A3MYE6 Recombination protein RecR 0.00395369667265 0.00081279827118 -1.26801922783e+12 +UniRef50_G7M4Z3 Transglutaminase domain containing protein 0.000257779220751 0.000856845342623 2.41850344768e+11 +UniRef50_Q8IV48 3 5 exoribonuclease 1 2.34321586507e-05 0.000517043579261 1.99276987794e+11 +UniRef50_E3EXY1 1.98983739718e-05 2.43887343038e-05 1812813568.95 +UniRef50_Q3J3W5 Putative head portal protein, HK97 family 0.00556215547599 0.00142642938993 -1.66964337201e+12 +UniRef50_Q4A2Z7 Putative membrane protein 5.94569914853e-06 1.54232498593e-05 3826203524.56 +UniRef50_A6LQS5 Transcriptional regulator, LysR family 0.000303264442948 0.00282938679964 1.0198265944e+12 +UniRef50_A6LWU9 Aldo keto reductase 0.00012724246815 0.00128603683676 4.67819506614e+11 +UniRef50_UPI000474A99F porin 0.000256753754978 2.37349649579e-05 -94072544993.2 +UniRef50_F2MU03 3.62933948903e-06 0.000368518953737 1.47310414971e+11 +UniRef50_A3MA77 A G specific adenine glycosylase 0.00011268238473 0.0040098921305 1.57335139851e+12 +UniRef50_F5X4A4 Ribose transport system substrate binding protein 0.00461500840068 0.00137665514854 -1.30736294695e+12 +UniRef50_R4LSC2 PE PGRS family protein PE_PGRS6 2.52289320997e-06 2.26069552683e-05 8108182312.09 +UniRef50_UPI0004726635 hypothetical protein, partial 7.37838882327e-05 0.000344207147226 1.09173188122e+11 +UniRef50_Q46844 0.00206827819258 0.00136837902621 -2.82557882192e+11 +UniRef50_Q46843 0.00368475511095 0.00128232918258 -9.69888828364e+11 +UniRef50_Q07H98 Holliday junction ATP dependent DNA helicase RuvB 1.52802951599e-05 0.00239818044027 9.62006030054e+11 +UniRef50_Q0BZG8 RND transporter, hydrophobe amphiphile efflux 1 family, permease protein 0.00285297522603 0.00106432138039 -7.22101506736e+11 +UniRef50_Q46840 0.00289466897656 0.00215531915208 -2.98484596985e+11 +UniRef50_UPI000225AFF4 sulfurase 6.55505892138e-05 4.37609442669e-05 -8796747054.08 +UniRef50_Q28UI8 tRNA ) methyltransferase 0.00514430069696 0.00102433923134 -1.66327900128e+12 +UniRef50_Q1IS59 NADH quinone oxidoreductase subunit D 1 5.42922279216e-06 2.46715008583e-05 7768343784.59 +UniRef50_UPI0004148AB3 alpha amylase 2.58192284534e-05 2.81786574138e-05 952530424.763 +UniRef50_U3TAS5 0.000256212209626 0.00629951800019 2.43975670735e+12 +UniRef50_E8PJ04 BasH 0.000222924796565 0.00889855179741 3.50245708215e+12 +UniRef50_UPI000468284E hypothetical protein 0.000187493040823 0.00029336096543 42740180309.4 +UniRef50_A6U170 Tyrosine recombinase XerC 0.016258464164 0.00338040907669 -5.19902887025e+12 +UniRef50_U7DEQ6 2 ketogluconate reductase 0.000446374300033 0.000198199131011 -1.00191361186e+11 +UniRef50_UPI000475888A membane protease HflC 2.86378670363e-05 1.51367561659e-05 -5450564135.64 +UniRef50_J9NV26 0.000339289254085 4.9893217492e-05 -1.16832731261e+11 +UniRef50_H8LI74 0.00750729999877 0.000676223742219 -2.7577893115e+12 +UniRef50_Q3HKK3 Succinylglutamatedesuccinylase aspartoacylase 0.023105240929 0.0069131780117 -6.53693449867e+12 +UniRef50_Q31HL9 Chemotaxis response regulator protein glutamate methylesterase 0.000112484484167 8.28806875331e-06 -42065371536.4 +UniRef50_C4LJY5 Ribonuclease PH 0.00112714861585 0.000263312523783 -3.48741230828e+11 +UniRef50_Q2G1Q1 0.0329801511633 0.00603819836705 -1.08767969588e+13 +UniRef50_P0AEK1 Exodeoxyribonuclease 10 0.00165532498826 0.000391147953907 -5.10363781964e+11 +UniRef50_G7U431 0.000684006200684 0.006133977976 2.20022048437e+12 +UniRef50_A0YEQ1 9.29445176944e-06 5.24804751917e-05 17434727607.7 +UniRef50_Q2CHG7 Parallel beta helix repeat protein 4.12764306705e-05 0.000420152864452 1.52957065654e+11 +UniRef50_UPI000368D551 alkanesulfonate monooxygenase 5.63527772059e-06 1.38525554731e-05 3317415866.03 +UniRef50_Q47688 0.00199756433364 0.00097080589856 -4.14514979985e+11 +UniRef50_A4VVE0 FAD synthase 0.00871594355611 0.0042171190003 -1.81623067997e+12 +UniRef50_E8SJY5 1.72854384061e-05 3.02721565979e-05 5242897498.98 +UniRef50_A8YUN6 Ribosomal RNA small subunit methyltransferase H 1.11908357795e-05 9.20391048914e-06 -802146122.033 +UniRef50_Q8D5J3 Alkaline phosphatase 0.00352999417902 0.000922598428747 -1.05263766073e+12 +UniRef50_U5MT37 0.000171584540393 0.000910527938347 2.98320517609e+11 +UniRef50_D5AQC4 MotA TolQ ExbB proton channel family protein 0.00656617300245 0.000829117996951 -2.3161195073e+12 +UniRef50_UPI000470CBD2 hypothetical protein 3.03178991193e-06 1.05985619272e-05 3054798717.3 +UniRef50_P77308 Probable D,D dipeptide transport system permease protein DdpB 0.00209729507335 0.00101245211862 -4.37964413345e+11 +UniRef50_F0Y304 Expressed protein 0.000204477754541 9.39116048467e-05 -44636911430.7 +UniRef50_Q7UM39 3 methyl 2 oxobutanoate hydroxymethyltransferase 3.64178676713e-05 1.83797136616e-05 -7282224126.76 +UniRef50_A9FXE7 No similarity 4.77154150896e-06 0.000474204148495 1.89515704026e+11 +UniRef50_P44843 Trk system potassium uptake protein TrkH 0.00251016239535 0.00100802323769 -6.06432011268e+11 +UniRef50_P59329 D cysteine desulfhydrase 0.00241818623843 0.00141635484783 -4.04451626239e+11 +UniRef50_A6TGL3 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 0.00520026705572 0.00228083892918 -1.1786089601e+12 +UniRef50_F0VS50 Peptide nickel transport system substrate binding protein 0.00725581772865 0.00135748706684 -2.38122846883e+12 +UniRef50_I3YBQ0 4.78968712417e-05 0.00015250166603 42230239301.1 +UniRef50_B2IE93 0.000130530966624 4.3037055088e-05 -35322365758.1 +UniRef50_Q67KZ3 Glutamyl Q tRNA synthetase 6.58070022039e-06 8.83652820358e-06 910705438.936 +UniRef50_UPI000366ED99 MULTISPECIES 8.64574909997e-06 1.47681816219e-05 2471701139.8 +UniRef50_C9M6U4 Putative phage terminase, large subunit 6.92296885776e-06 2.07796102587e-05 5594096173.65 +UniRef50_T4ZWD9 Membrane protein 0.000232526344051 0.0032589726196 1.22181350011e+12 +UniRef50_UPI000381DE04 hypothetical protein 1.06550541517e-05 1.51480562825e-05 1813880095.54 +UniRef50_UPI00036B1851 LysR family transcriptional regulator 2.24835442955e-05 3.61934439568e-05 5534854732.65 +UniRef50_UPI00037FC311 hypothetical protein 1.01897531971e-05 3.49482402365e-06 -2702825063.34 +UniRef50_UPI0003AE2DCF PREDICTED 1.39334019854e-05 0.000636522670983 2.51346927924e+11 +UniRef50_P0AB69 NAD transhydrogenase subunit beta 0.00362116327788 0.000894307349721 -1.10086520048e+12 +UniRef50_F9ZV31 Flagellar hook capping protein 9.35428475578e-06 1.29068386312e-05 1434209594.25 +UniRef50_Q2NHM6 MapA 0.00228802299293 0.00104403102834 -5.02214821603e+11 +UniRef50_E9W328 Phosphate acetyl butaryl transferase 0.000142626947925 0.000549347140785 1.64197932876e+11 +UniRef50_B2GBA3 Peptide deformylase 2.37200505522e-05 1.68733729908e-05 -2764087749.72 +UniRef50_A8JGC3 Predicted protein 0.000105252668779 3.02516190871e-05 -30278844127.0 +UniRef50_Q49173 Methyl coenzyme M reductase II subunit gamma 0.00387799133453 0.000855237893514 -1.2203226575e+12 +UniRef50_UPI000361E906 hypothetical protein 2.96855103562e-05 6.59761982555e-05 14650996041.8 +UniRef50_L8NJL2 Cytochrome B561 0.00157972313691 0.00281076953675 4.96988538254e+11 +UniRef50_Q1JAC5 Copper exporting ATPase 0.000447346463614 8.98074116114e-05 -1.44342902791e+11 +UniRef50_Q11F32 Amino acid amide ABC transporter substrate binding protein, HAAT family 1.15836347479e-06 6.35449079452e-06 2097740362.63 +UniRef50_A0REB6 3D trihydroxycyclohexane 1,2 dione hydrolase 0.000411339492031 0.00210185439583 6.82481611615e+11 +UniRef50_D7CVL6 Deoxynucleoside kinase 0.000701842788693 0.0242798360958 9.51872523259e+12 +UniRef50_Q3J2S9 0.00557270180862 0.00257777325994 -1.20908940701e+12 +UniRef50_Q3J2S8 0.00641035887819 0.00286261222142 -1.43226886109e+12 +UniRef50_UPI000476165E hypothetical protein 0.000191591116465 0.00112349860719 3.76222489797e+11 +UniRef50_Q7SI97 L lactate dehydrogenase 3.19466869469e-05 1.06749404309e-05 -8587665102.19 +UniRef50_Q3J2S1 0.00721434999927 0.000952634532885 -2.52793137367e+12 +UniRef50_UPI0003B6C4C4 xylose ABC transporter ATP binding protein 1.69174407767e-05 5.75342548688e-06 -4507049970.37 +UniRef50_UPI0003650D17 hypothetical protein 0.000271115895833 3.63928097898e-05 -94760590211.7 +UniRef50_D2ZS96 0.0027314996991 0.000228927678448 -1.01031903475e+12 +UniRef50_Q03XZ5 Glutamate synthase small subunit 0.00453381627276 0.00165018018909 -1.16415927317e+12 +UniRef50_E2ZP88 Proline dehydrogenase PutA 0.00055786630609 0.000233669384873 -1.30882275439e+11 +UniRef50_Q6GH28 Putative oligopeptide transport ATP binding protein oppF2 0.0159832188481 0.00485786999076 -4.49143985707e+12 +UniRef50_D3E040 GTP 0.00209915604565 0.00236031861271 1.05434533147e+11 +UniRef50_M5E5J2 Genomic scaffold, msy_sf_2 2.39568169253e-06 1.44536223223e-05 4867938599.82 +UniRef50_X2H7M9 Carboxyl terminal protease 0.000593751110802 0.00376025418072 1.27835614669e+12 +UniRef50_D0K3P5 0.0101121164405 0.000710876732369 -3.79539583636e+12 +UniRef50_A6LZI7 Isoprenylcysteine carboxyl methyltransferase 0.000504286531449 0.00100763635911 2.03208502224e+11 +UniRef50_P42305 ATP dependent RNA helicase DbpA 0.000516147317335 0.00429655576993 1.52619728314e+12 +UniRef50_X1UZY5 Marine sediment metagenome DNA, contig 3.8681665155e-05 0.000111234353761 29290410711.9 +UniRef50_M1M078 4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH 0.00039701205416 0.000867929573028 1.90115181175e+11 +UniRef50_UPI0003C4395A 0.000452488469495 3.28962133344e-05 -1.69394542788e+11 +UniRef50_UPI0004709BDA branched chain amino acid ABC transporter permease 1.16553798445e-05 0.000178154032844 67217549384.3 +UniRef50_UPI00045D6596 PREDICTED 4.23185904477e-05 0.000289053871314 99610060668.0 +UniRef50_U3T459 0.000419947329994 0.00577932919495 2.1636482259e+12 +UniRef50_Q6FDS2 Putative arginyl tRNA protein transferase 0.000408829590809 0.00413523746678 1.5043965877e+12 +UniRef50_UPI000373DE43 MULTISPECIES 8.15471974226e-06 3.77944125518e-05 11965907707.1 +UniRef50_G8VBC3 Binding protein dependent transport system inner membrane component 0.000135138182163 0.00557722151863 2.19703582481e+12 +UniRef50_Q8CSG3 Geranyltranstransferase 0.021515370693 0.00377007912881 -7.16399196368e+12 +UniRef50_F3GGP2 Short chain dehydrogenase reductase SDR 6.70887799513e-05 0.000258201916057 77154718267.9 +UniRef50_UPI00037791F6 hypothetical protein 1.5487134576e-05 1.25779307848e-05 -1174481270.45 +UniRef50_B5SHS9 Fad dependent oxidoreductase protein 0.000340524435457 0.000649583350954 1.24770876766e+11 +UniRef50_T1ZTW1 ABC transporter, permease protein 0.00431967932683 0.00156167924536 -1.11343847736e+12 +UniRef50_UPI00035E6C4D hypothetical protein 7.24030586676e-06 2.18043469406e-05 5879682102.37 +UniRef50_F1YW63 2.66217506349e-05 6.73662350099e-05 16449048333.2 +UniRef50_A5UMU7 Possible glycosyltransferase 0.00418571991734 0.000303927998483 -1.56712703259e+12 +UniRef50_A8ACB1 Ornithine carbamoyltransferase 5.40992865279e-06 2.87034524277e-05 9403881391.61 +UniRef50_A0A024HXE7 4.4577813458e-06 0.000116817340537 45360932852.2 +UniRef50_I6TYS5 Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon 0.00641046739814 0.00189188678805 -1.82420644151e+12 +UniRef50_A6M012 ABC transporter related 0.000128688405295 0.00125784448352 4.55854165081e+11 +UniRef50_K8CD77 Outer Membrane Siderophore Receptor IroN 0.000235928743029 0.000735228311697 2.01573362966e+11 +UniRef50_Q1MJF1 5.33981543274e-05 4.34234919632e-05 -4026893599.3 +UniRef50_UPI00042B7372 Cold shock domain protein 1 6.04312895795e-06 9.38100502455e-06 1347541528.43 +UniRef50_UPI00046CFC16 hypothetical protein 3.39993364764e-05 0.000154773680814 48758084877.1 +UniRef50_F1LHT5 GTP binding protein lepA 1.79015100806e-05 9.05517855343e-05 29329807719.8 +UniRef50_UPI00045D782A PREDICTED 5.25332619329e-06 7.90367128193e-06 1069976835.68 +UniRef50_C6RGK7 3.0881773394e-05 5.51377414138e-05 9792431943.79 +UniRef50_Q6AB49 tRNA lysidine synthase 0.000222924796565 0.00517750791996 2.00022600649e+12 +UniRef50_K0HED9 ABC transporter ATP binding protein 0.000597070322555 0.00293013506612 9.41886866903e+11 +UniRef50_I4YTY9 TIGR00370 family protein 0.000268086682557 9.81854777999e-05 -68591201282.6 +UniRef50_P31453 0.00205069344819 0.000248165298485 -7.27702733542e+11 +UniRef50_Q30TW1 50S ribosomal protein L2 0.00701152964066 0.0146653985542 3.08996080393e+12 +UniRef50_P31455 0.00310397802391 0.000477528513661 -1.06032989745e+12 +UniRef50_UPI0004666336 DNA mismatch repair protein MutS 2.23303198675e-06 9.17926033228e-05 36156297967.9 +UniRef50_E2XJC4 N acetyl anhydromuramyl L alanine amidase 0.000726906226409 0.00102392753932 1.19911148884e+11 +UniRef50_Q03AI1 Uracil DNA glycosylase 0.000167771550603 9.46857209832e-05 -29505646281.5 +UniRef50_V1MAY9 Nitrate reductase Z subunit beta 3.62124936786e-05 6.12941589944e-05 10125776074.6 +UniRef50_Q8E3B1 Probable transaldolase 0.000866339044841 0.000631026796388 -94998442306.5 +UniRef50_Q6LPL4 Chromosome partition protein MukE 0.00260321304055 0.000253490734069 -9.48611729461e+11 +UniRef50_Q5HGC7 Glutathione peroxidase homolog BsaA 0.00400299160089 0.00283021975904 -4.73462384084e+11 +UniRef50_UPI00037249D5 hypothetical protein 0.000200931688345 8.7653327349e-05 -45731864415.9 +UniRef50_Q1GIW0 0.00190128606805 0.00180806146039 -37635918106.9 +UniRef50_T0V4T9 ABC transporter, ATP binding protein 0.00905415927444 0.00145554838179 -3.0676524628e+12 +UniRef50_I9CB55 4.81886748116e-05 5.72803929332e-05 3670438173.62 +UniRef50_D3E4P0 Valine tRNA ligase 0.00329054582896 0.00131480671426 -7.9763012565e+11 +UniRef50_P0CL50 Trehalose phosphate phosphatase 0.00251473980109 0.00172685404999 -3.18079146164e+11 +UniRef50_F2E3C9 Predicted protein 8.62615371094e-05 2.92694623017e-05 -23008399971.3 +UniRef50_P63699 Putative bacterioferritin B 0.00262802001527 0.00392639667628 5.24170590923e+11 +UniRef50_H2I4X3 DNA double strand break repair rad50 ATPase 0.00014174858218 0.00709057317207 2.80532575861e+12 +UniRef50_Q15RF6 Chemotaxis response regulator protein glutamate methylesterase 0.000115674971054 9.5370542934e-06 -42849179455.1 +UniRef50_F6DH03 Menaquinone biosynthesis protein 9.5244572462e-05 0.0266261704024 1.07108603286e+13 +UniRef50_D3E0I7 0.00229304723541 0.000568565588045 -6.96194402813e+11 +UniRef50_Q5HM27 Energy coupling factor transporter ATP binding protein EcfA1 0.0227042559244 0.00461999135108 -7.30083952712e+12 +UniRef50_Q28Q52 Cation transporter 0.00256014111547 0.000402956119847 -8.70882054368e+11 +UniRef50_N9BB91 0.000362600876435 0.00475547965534 1.77345906973e+12 +UniRef50_UPI0004781DCE hypothetical protein 7.48068148534e-06 5.14077062992e-05 17733878962.6 +UniRef50_I6T5E5 Transcriptional regulator 0.00714282133055 0.00102434242353 -2.47010501694e+12 +UniRef50_Q8FQB2 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 5.49502981135e-06 4.37229021006e-06 -453263754.605 +UniRef50_G0DVU1 0.00114806489261 0.00282568143088 6.7727438317e+11 +UniRef50_UPI00038FD62D Potassium transporting ATPase B chain 5.85040490569e-06 0.000912114197139 3.65869814032e+11 +UniRef50_Q6GE73 Heme response regulator HssR 0.0269970489547 0.00542696883388 -8.70810603942e+12 +UniRef50_Q8CUA1 0.00403179036756 0.00221573811535 -7.33162579684e+11 +UniRef50_Q8CUA7 0.0259202410274 0.0136261668034 -4.96326862948e+12 +UniRef50_A4WNZ4 PfkB domain protein 0.00407048121114 0.00119327668482 -1.16156277455e+12 +UniRef50_S5XU40 Major facilitator transporter 0.000546570082299 0.000161081839199 -1.55626334212e+11 +UniRef50_UPI0004791DBF serine acetyltransferase 7.42503667962e-06 1.58940801633e-05 3419056781.21 +UniRef50_UPI0003688AA7 hypothetical protein 0.000268532123949 1.27201746473e-05 -1.03274423099e+11 +UniRef50_P25819 Catalase 2 1.25790729447e-05 3.13343067228e-05 7571718028.82 +UniRef50_Q4L5F0 Thioredoxin 0.00273056758376 0.00480531770678 8.3760208471e+11 +UniRef50_B1FAB2 0.000482678892713 0.000380352419825 -41310452791.9 +UniRef50_A6L4L7 ATP synthase subunit beta 1.42953619831e-05 0.00270745190365 1.08726034462e+12 +UniRef50_UPI00046D5EE9 3 oxoacyl ACP synthase 1.52336802909e-05 2.58177931918e-05 4272936259.76 +UniRef50_H3YRV9 0.000997615253831 0.00116572383629 67867497663.0 +UniRef50_F5I377 1.58193877551e-05 2.2448452272e-05 2676234693.24 +UniRef50_D3DZA3 Heavy metal translocating P type ATPase 0.00309782140002 0.000156682270301 -1.1873739585e+12 +UniRef50_Q2FV54 O acetyltransferase OatA 0.0362100731917 0.00666087038352 -1.19293757832e+13 +UniRef50_UPI00047BDC90 MFS transporter 5.0236606487e-06 1.42658846024e-05 3731199224.95 +UniRef50_UPI000464A202 hypothetical protein 2.62444929986e-06 9.03906919312e-06 2589660767.15 +UniRef50_M1MPB4 ABC 2 family transporter protein 0.000319515739074 0.000544726952555 90920530534.6 +UniRef50_B0RBL8 Putative heme synthetase 4.65391921638e-05 0.000131057709404 34121162568.7 +UniRef50_M9R255 6.91807709459e-05 7.50826157109e-05 2382647155.41 +UniRef50_A0A025H559 Peptide ABC transporter permease 0.000111242382095 5.77697043161e-05 -21587576202.9 +UniRef50_V9DII8 1.14969513078e-05 1.19836590135e-05 196489873.366 +UniRef50_UPI0004757F7D aminotransferase class IV 0.000110535061352 2.35422880129e-05 -35120050118.4 +UniRef50_A3CKK8 UPF0310 protein SSA_0254 0.0128640077891 0.00091808302134 -4.82271642174e+12 +UniRef50_X7TXC3 PE family protein 0.000241331768728 0.000432311901296 77101023107.5 +UniRef50_UPI000471111A hypothetical protein 0.000140988201263 9.95764449968e-05 -16718434184.1 +UniRef50_G2G9I6 0.000281654108963 0.000113124013348 -68037667696.6 +UniRef50_P75059 Spermidine putrescine import ATP binding protein PotA 1.59965985262e-05 5.10557584694e-06 -4396839503.51 +UniRef50_E8U7B0 Cytochrome P450 0.000220028185941 0.016413563606 6.53752896612e+12 +UniRef50_P0AEP2 Galactose proton symporter 0.00243885767374 0.00150121080195 -3.78539548363e+11 +UniRef50_Q6FEE9 0.000321739177092 0.00698290124442 2.68919286823e+12 +UniRef50_Q2YYE7 Truncated methicillin resistance related surface protein 0.00234153872901 0.00102143556822 -5.32941845498e+11 +UniRef50_UPI00032A143E PREDICTED 5.38021232498e-05 3.99964394557e-05 -5573523962.47 +UniRef50_UPI0003F48FDB hypothetical protein TREMEDRAFT_63328 8.65847279748e-06 5.5075939979e-06 -1272048437.02 +UniRef50_E3LBP8 1.75000730059e-05 1.53818706909e-06 -6444009227.05 +UniRef50_A0A012NRC3 0.0093344085556 0.00139176347189 -3.20654328751e+12 +UniRef50_I4CV16 0.000356597260487 0.000393755606923 15001280440.4 +UniRef50_B2TLB0 Diguanylate cyclase phosphodiesterase domain 2 0.000248493829393 0.00231238885482 8.33219748606e+11 +UniRef50_M4INN6 Rrf2 family protein 2.32624354312e-05 3.17846011815e-05 3440502892.13 +UniRef50_UPI00047AF807 hypothetical protein 4.12713220281e-06 5.40447153074e-05 20152340857.0 +UniRef50_Q5HKL4 Thiamine biosynthesis protein, putative 0.0090055498503 0.00429080734419 -1.90339940611e+12 +UniRef50_Q1YIF1 0.000610973374032 0.000391295899974 -88686492023.0 +UniRef50_B2TMF1 Site specific recombinase 0.0002066529136 0.00157067885137 5.50674009558e+11 +UniRef50_F2MQN5 3.70045074655e-05 3.61516064688e-05 -344326598.64 +UniRef50_UPI00041B00FC hypothetical protein 1.10607830722e-05 2.83854097673e-05 6994164393.89 +UniRef50_UPI00029A8D4F methylmalonyl CoA mutase 6.36543805084e-05 5.45652209051e-05 -3669405268.38 +UniRef50_C1KZA0 5 deoxy glucuronate isomerase 5.30764382281e-05 0.00213503687376 8.40512976351e+11 +UniRef50_Q73S23 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.32620925116e-05 4.09412590959e-05 7137296497.85 +UniRef50_UPI000474601B branched chain amino acid ABC transporter ATP binding protein 0.000102666257451 6.08632424973e-05 -16876390117.5 +UniRef50_W4TYR9 Excinuclease 9.2096340991e-06 0.000236006803135 91560800254.1 +UniRef50_Q8DT53 Glucose 1 phosphate adenylyltransferase 0.00372927227052 0.00176626221435 -7.92491248518e+11 +UniRef50_D3DYR5 ATP dependent DNA helicase 0.00355779524266 0.000427518492966 -1.26373113667e+12 +UniRef50_UPI0003A7C5DF hypothetical protein 9.61576586212e-05 0.000436855325546 1.37543828968e+11 +UniRef50_UPI00037226A5 hypothetical protein 3.98159323817e-05 2.50472935392e-05 -5962280732.3 +UniRef50_K1ZGV2 0.000114044902302 0.000306505510537 77698709301.7 +UniRef50_B9TBU0 2.25752788605e-05 0.000100848049587 31599678057.2 +UniRef50_A6LWA9 0.000546743370497 0.000274287961482 -1.09993592023e+11 +UniRef50_A6TG48 Aspartate ammonia ligase 0.00327719420505 0.00348725676534 84804833346.6 +UniRef50_A5F4D2 Phosphomethylpyrimidine synthase 0.00315592818976 0.00586377024192 1.09318906542e+12 +UniRef50_R5X951 0.0017848759856 0.00103916192879 -3.01053915675e+11 +UniRef50_A5D654 4 diphosphocytidyl 2 C methyl D erythritol kinase 7.95459431843e-06 9.05863134377e-06 445713295.188 +UniRef50_Q5HLI3 Amino acid ABC transporter, permease protein 0.0226405286452 0.00479868385436 -7.2029716861e+12 +UniRef50_E1SVE3 Rhodanese domain protein 2.87651919353e-05 1.09752266311e-05 -7182027300.73 +UniRef50_A6QDV1 0.0111824237392 0.00413780450569 -2.84399923177e+12 +UniRef50_W8T476 Pe pgrs family protein 6.39865258548e-06 2.6132570754e-06 -1528210619.45 +UniRef50_E6MZ19 Periplasmic protein 0.00014842175184 0.00207449855273 7.7758084014e+11 +UniRef50_V6U561 4.21551589043e-05 0.000102416579916 24328275153.2 +UniRef50_I1WGW6 8.34530557572e-05 0.00446246289985 1.76786001055e+12 +UniRef50_UPI000472273F aspartate ammonia lyase 2.39021220366e-06 5.19345903303e-06 1131705144.72 +UniRef50_UPI000372D1EE cold shock protein 7.38621989468e-05 8.7187408965e-05 5379550803.06 +UniRef50_L0LNW6 0.000639695633728 0.000274627427356 -1.47382514803e+11 +UniRef50_D3E1A2 ATPase 0.00319507884737 0.000934729371988 -9.12530820818e+11 +UniRef50_N6Y413 5.04529658204e-05 1.38833484413e-05 -14763603295.6 +UniRef50_C6DIM3 p hydroxybenzoic acid efflux pump subunit AaeB 0.00250918122334 0.00124337077283 -5.11023212112e+11 +UniRef50_UPI00047D54B2 DSBA oxidoreductase 2.15050988684e-05 1.09826398542e-05 -4248045829.13 +UniRef50_UPI00046ED66D aminotransferase 1.28082499582e-05 0.000354387395651 1.37899692764e+11 +UniRef50_UPI000474BB68 O sialoglycoprotein endopeptidase, partial 1.31084401493e-05 1.36668293738e-05 225428582.137 +UniRef50_D8HG20 Probable membrane protein 0.00205098719367 0.000809828614498 -5.01070949139e+11 +UniRef50_UPI0003601444 hypothetical protein 5.43161980025e-05 1.72281173397e-05 -14972913285.5 +UniRef50_P43270 Thermonuclease 0.00976498114362 0.00663537280379 -1.2634612914e+12 +UniRef50_H0TU43 0.000128710248891 0.000237520138222 43927887570.4 +UniRef50_P33346 0.00470375312309 0.00123258267525 -1.40135410584e+12 +UniRef50_Q2GCS7 Phosphoribosylaminoimidazole succinocarboxamide synthase 7.5679467235e-05 0.00254981444005 9.98838649574e+11 +UniRef50_P44299 8.72430943044e-06 0.00099818399825 3.99457018412e+11 +UniRef50_Q8TK95 Bifunctional protein FolD 1.29437233906e-05 2.68682720579e-06 -4140834856.07 +UniRef50_B4U336 Glutamine amidotransferase 0.00517032751371 0.00292831621464 -9.05127474007e+11 +UniRef50_R4K1J7 Iron only hydrogenase large subunit 0.000354850001566 0.00175430014147 5.64975194662e+11 +UniRef50_UPI00031BEDB0 hypothetical protein 1.09863127949e-05 0.000111865046445 40725982695.8 +UniRef50_B7M4N2 Bifunctional protein FolD 0.00360609107273 0.000220021779253 -1.36699772552e+12 +UniRef50_C6SLX9 0.000473783882208 0.000660305050415 75300884477.3 +UniRef50_B9KRV7 0.00787936393408 0.00194040537606 -2.39763044909e+12 +UniRef50_U0BIJ8 Protein UshA 0.00247365967226 0.000510934398752 -7.92376278264e+11 +UniRef50_A6LWU4 Non specific serine threonine protein kinase 0.000422068317642 0.000515594114356 37757511824.0 +UniRef50_E3FEG1 4.92537471239e-06 1.14961805906e-05 2652714965.89 +UniRef50_H3ZXZ3 0.000581104572138 4.41373054089e-05 -2.16780274908e+11 +UniRef50_Q6FZE7 50S ribosomal protein L17 0.00240629427813 0.000492194508663 -7.72745565581e+11 +UniRef50_UPI000362A66F hypothetical protein 6.48779034289e-05 1.30160438547e-06 -25666532092.7 +UniRef50_UPI0001FFE9A8 diguanylate cyclase 3.32914985619e-05 3.39382423095e-05 261098387.344 +UniRef50_UPI00035037FE PREDICTED 5.46873487573e-05 7.57796938602e-05 8515238550.22 +UniRef50_U7PB07 0.000257314118328 0.000340279518339 33494150084.4 +UniRef50_A5U0Z1 Succinyl CoA ligase [ADP forming] subunit beta 0.000406619125096 0.00479580865036 1.77196967276e+12 +UniRef50_W4U4M2 Heme ABC transporter 6.43298972005e-05 0.000244755104297 72839870171.3 +UniRef50_P76458 Acetate CoA transferase subunit alpha 0.00324359388849 0.000283958370386 -1.19484117747e+12 +UniRef50_A6LYU9 Integral membrane sensor hybrid histidine kinase 0.000103945619926 0.00155925042433 5.87524408134e+11 +UniRef50_Q3JI08 7.59977215689e-05 3.55802925887e-05 -16317012056.9 +UniRef50_UPI000475B85D hypothetical protein 9.48367204319e-05 0.00172013453417 6.56152672054e+11 +UniRef50_UPI00039FFF6C NrdR family transcriptional regulator 0.000162438266037 0.000100179945374 -25134448047.2 +UniRef50_Q1GI98 Glutamate ammonia ligase adenylyltransferase 0.0010261631559 0.000485259949455 -2.18369262071e+11 +UniRef50_G7M6U6 Integral membrane sensor signal transduction histidine kinase 0.000307141870174 0.000432126768835 50457937326.6 +UniRef50_G9ZVA2 6.9707653617e-05 3.48146600093e-05 -14086729704.6 +UniRef50_Q9RZN0 GGDEF family protein 0.000168490163255 0.0432835645102 1.74060845953e+13 +UniRef50_Q72GQ7 Tripartite transporter, large subunit 6.00615134022e-06 1.32050747074e-05 2906293704.05 +UniRef50_UPI0003707BF1 nucleoside hydrolase, partial 2.83652759102e-05 1.35701973595e-05 -5972954766.95 +UniRef50_J9YTR5 Sensor histidine kinase CsrS 0.000251882602535 0.000118919478603 -53678844772.4 +UniRef50_UPI000472729B hypothetical protein 7.05533790587e-05 8.38352582416e-05 5362057613.12 +UniRef50_UPI0003791242 phosphoenolpyruvate synthase 2.4420823571e-06 6.28472670581e-07 -732176485.942 +UniRef50_Q2FJB8 Transcriptional regulator CtsR 0.0207619291095 0.000825712385463 -8.04849533637e+12 +UniRef50_E3F288 1.71865603074e-05 1.62592244503e-05 -374376865.202 +UniRef50_A3MQP5 Aminomethyltransferase 4.56235562189e-05 0.0036498446816 1.45506829708e+12 +UniRef50_A0PZ54 Mur ligase family protein 0.000469687904841 0.000987821403005 2.09176851422e+11 +UniRef50_UPI000375510C hypothetical protein 4.12995409554e-06 1.74569528325e-05 5380272930.79 +UniRef50_UPI00037D1824 hypothetical protein 0.000686230069954 0.00024011623735 -1.80101628655e+11 +UniRef50_Q8UEY5 CTP synthase 0.0149246419771 0.0693609245991 2.19765953028e+13 +UniRef50_E4PL62 Secreted protein containing YkuD domain 3.03028094565e-06 0.000242111782486 96520136031.6 +UniRef50_UPI0002FE793C betaine aldehyde dehydrogenase 6.36842699923e-06 2.05168448965e-05 5711889925.75 +UniRef50_T1Y8A8 Acetyltransferase 0.0213377725131 0.0047424226744 -6.69974637773e+12 +UniRef50_F0P4Z6 Oligopeptide transport ATP binding protein 0.010130143973 0.00354298663843 -2.65931624948e+12 +UniRef50_UPI0003728158 hypothetical protein 1.53038424264e-05 0.00122815258107 4.89641919117e+11 +UniRef50_UPI00016C46F4 hypothetical protein 2.92677527275e-05 0.00456849423887 1.83254143503e+12 +UniRef50_F1SCK4 7.13475604041e-05 6.30261314385e-05 -3359462988.83 +UniRef50_P75836 0.00165334418126 0.00123996266424 -1.66887191183e+11 +UniRef50_C7IYG9 Os02g0192900 protein 9.08724943007e-05 5.90548653255e-05 -12845167263.5 +UniRef50_Q9RZ97 TerF related protein 0.00021181362866 0.0509594167764 2.04874301338e+13 +UniRef50_UPI00047811D4 leucine isoleucine valine transporter ATP binding subunit 0.000153137871706 3.79816943265e-05 -46489961933.1 +UniRef50_A6VVT1 Isochorismatase 0.000404344041288 0.0059556549115 2.24113232055e+12 +UniRef50_UPI0001E92D34 DNA gyrase subunit B 6.17057410147e-06 3.59677165188e-05 12029472045.9 +UniRef50_C6SEB8 0.000438937196334 0.00104410403273 2.44313278085e+11 +UniRef50_C6SRB4 0.00346895339921 0.00440102668756 3.76289424332e+11 +UniRef50_P0AGD2 Superoxide dismutase [Cu Zn] 0.00129506510486 0.0017472228371 1.82541625105e+11 +UniRef50_U3ST50 0.00773292438433 0.00107386885985 -2.68834243103e+12 +UniRef50_UPI000364FC3A hypothetical protein 0.000330050274218 0.000119089844559 -85167314228.9 +UniRef50_Q1GKH0 AMP dependent synthetase and ligase 0.0108787101069 0.00301697327454 -3.17387963358e+12 +UniRef50_Q2NIM1 Thymidine kinase 1.31424068445e-05 2.29823983355e-05 3972525315.19 +UniRef50_E0RBR7 Periplasmic [Fe] hydrogenase large subunit 0.000171847384623 0.00263450322562 9.94204383197e+11 +UniRef50_A4W401 Polyribonucleotide nucleotidyltransferase 0.000238965045288 2.01014961378e-05 -88357900549.6 +UniRef50_K7JKT8 0.000229648434056 1.22301169047e-05 -87774442656.6 +UniRef50_UPI0003B4FA18 membrane protein 3.35947674872e-06 2.01704023608e-06 -541958093.701 +UniRef50_UPI0003607215 hypothetical protein, partial 0.000198769168897 5.23081817619e-05 -59128097784.8 +UniRef50_M9S617 ABC transporter permease 0.000283824051773 0.000663633045389 1.53333551503e+11 +UniRef50_R9SMZ9 Cysteine tRNA ligase 0.00308882240295 0.000540837269867 -1.02865286552e+12 +UniRef50_UPI00047912C6 hypothetical protein 5.12398274445e-05 6.40095765546e-05 5155304418.19 +UniRef50_Q3HKE0 0.0205628439732 0.00203825318709 -7.47860462264e+12 +UniRef50_E4Z9V1 SUN family protein 0.000305980378466 0.00422439254261 1.58191107499e+12 +UniRef50_B9KKY7 0.0025345487823 0.0043217078809 7.21498059013e+11 +UniRef50_Q2VZ24 Peptidyl tRNA hydrolase 5.74846326368e-05 2.91483509187e-05 -11439704654.9 +UniRef50_A0A015J1B9 1.82988861497e-05 1.94441213823e-05 462345517.017 +UniRef50_Q8X5L7 Cellulose synthase catalytic subunit [UDP forming] 0.00259368540632 0.000930100673266 -6.71609571213e+11 +UniRef50_X5PU41 0.000134901540474 2.70683094764e-05 -43533598616.4 +UniRef50_I6ZGW2 Type IV pilus biogenesis stability protein PilW 2.01261722517e-05 8.92100626696e-05 27890014316.4 +UniRef50_B9KK81 Methyltransferase type 12 0.00174002928411 0.000311954266055 -5.76531409238e+11 +UniRef50_I3X0I9 0.000176405419619 2.48154224269e-05 -61198742084.9 +UniRef50_K2J734 1.15612518295e-05 3.30030067357e-05 8656299575.55 +UniRef50_UPI00035FADFC hypothetical protein 0.000786974983318 0.000211042121785 -2.32511163692e+11 +UniRef50_UPI0002B9D075 hypothetical protein 0.000204420778622 8.45790641995e-05 -48381570735.4 +UniRef50_A3XC42 4.13019570544e-06 3.82624274127e-05 13779600789.8 +UniRef50_A4WWJ4 0.000663580031506 0.00147843996562 3.28968954858e+11 +UniRef50_A1S9Z4 Oxidoreductase, GMC family 0.000526152228409 0.000383525781208 -57580046958.4 +UniRef50_UPI0003B34D06 DNA topoisomerase I 2.55820535574e-06 4.92927019695e-06 957227972.634 +UniRef50_R1EBF4 4.52545448584e-06 2.20506901545e-05 7075152698.28 +UniRef50_G0LQE0 Capsular polysaccharide synthesis enzyme 0.013501218799 0.000981233109992 -5.05447186015e+12 +UniRef50_Q2FHD8 Aerobic glycerol 3 phosphate dehydrogenase 0.0204808430227 0.00543007428102 -6.07618003473e+12 +UniRef50_D9R3D4 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 5.58686712658e-05 0.00137604761137 5.32972438536e+11 +UniRef50_Q896N6 Thymidylate kinase 0.000227227001991 0.000831550133378 2.4397266402e+11 +UniRef50_UPI00016A3FE0 spermidine putrescine ABC transporter ATPase subunit, partial 0.00021706102784 8.42731383421e-05 -53608100481.0 +UniRef50_A7WYE6 0.000965440689355 5.53156467708e-05 -3.67428648181e+11 +UniRef50_UPI000472C988 hypothetical protein, partial 0.000175980139253 0.00222773468081 8.28318486287e+11 +UniRef50_K2ADN8 Putative insertion sequence transposase protein 0.00014787166933 8.60840797902e-05 -24944408116.2 +UniRef50_A6LPZ0 Extracellular solute binding protein, family 1 0.00117647242485 0.00163230122652 1.84023680883e+11 +UniRef50_G6DGM2 9.22862415084e-06 1.02087904951e-05 395705181.171 +UniRef50_Q9HNI0 Thermosome subunit beta 0.00351395688958 0.000725356003674 -1.12579239762e+12 +UniRef50_U5UQ99 Peptidase M16 domain containing protein 0.0175938953812 0.00380765055708 -5.56567621174e+12 +UniRef50_E0S0F8 Ornithine cyclodeaminase 0.00239817583446 0.000620952845356 -7.17486729678e+11 +UniRef50_C7NCR9 Nickel ABC transporter, periplasmic nickel binding protein 7.31561993853e-05 0.000357336078491 1.14726904474e+11 +UniRef50_Q8CNS7 Replication associated protein 0.00985967378344 0.00888201851496 -3.94691429065e+11 +UniRef50_Q6A969 DNA repair protein RecO 0.00040735898078 0.00700444070391 2.66332284692e+12 +UniRef50_Q6AKT0 0.00268281462992 0.0036569196789 3.93258161886e+11 +UniRef50_Q88DY1 Hemin import ATP binding protein HmuV 1.01990828502e-05 0.00184356926955 7.40154042353e+11 +UniRef50_Q6MML0 Threonine tRNA ligase 4.54569158898e-06 0.000566088529588 2.26701734606e+11 +UniRef50_T7GQG4 Inner membrane transporter ygjI 0.00197573266341 0.000244400031881 -6.98960229189e+11 +UniRef50_Q9KRQ1 Catalase 1.04820572794e-05 1.84259493427e-05 3207046708.47 +UniRef50_UPI0003698FB7 hypothetical protein 0.000200219400437 0.00015130413626 -19747692406.0 +UniRef50_UPI00040AA97B hypothetical protein 2.15774835998e-05 7.00422327691e-05 19565813969.0 +UniRef50_P9WH42 30S ribosomal protein S1 0.000197195646366 0.009651750944 3.81691999409e+12 +UniRef50_T1Y598 Transporter, drug metabolite exporter family protein 0.0111822240768 0.00214934800238 -3.6466829171e+12 +UniRef50_E7MYR2 0.000487296204386 0.000410150858771 -31144522704.6 +UniRef50_Q3JSR8 Alkanesulfonate monooxygenase 2.451784505e-05 3.23152498095e-05 3147907986.33 +UniRef50_W5X5Q8 3.55721134767e-05 3.10624836014e-05 -1820592920.04 +UniRef50_Q5F6G1 UPF0213 protein NGO1598 1.55648948476e-05 0.000787511213846 3.11644201826e+11 +UniRef50_B2TIV3 Phospholipase, patatin family 0.000524117785486 0.00248484360979 7.91569076081e+11 +UniRef50_R5XTT8 AMP binding enzyme 0.00041188844411 0.00204270112881 6.58379093135e+11 +UniRef50_UPI00037CADCD hypothetical protein 2.81945583588e-05 0.00271745625739 1.08568794885e+12 +UniRef50_Q72C18 Acetylglutamate kinase 3.14443004401e-05 1.46829392759e-05 -6766767187.02 +UniRef50_D4HAH0 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.000213615565721 0.00442855000265 1.70162075525e+12 +UniRef50_UPI000329D795 PREDICTED 0.00313326402326 0.00846883626048 2.154035987e+12 +UniRef50_F7Y006 0.00018436034628 7.79354544998e-05 -42965034791.9 +UniRef50_O67501 Inorganic pyrophosphatase 0.00078165386211 0.00686565159652 2.45618454443e+12 +UniRef50_UPI00041A51D0 hypothetical protein 0.000172267658381 0.000100916247582 -28805440119.8 +UniRef50_B7I3M9 Peptidase M24 6.44907725824e-05 0.00335431983008 1.32814436126e+12 +UniRef50_UPI000361F1B4 hypothetical protein 3.56997845568e-05 2.57131333885e-05 -4031733626.63 +UniRef50_P0A5L7 Glutamine dependent NAD synthetase 0.000129113099896 0.00434460270108 1.70184488187e+12 +UniRef50_D5BPQ5 RNA polymerase sigma factor RpoH 0.0127247515463 0.00651547956737 -2.50675929423e+12 +UniRef50_R4K8M3 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.00038801659254 0.00230151386389 7.72502329696e+11 +UniRef50_UPI0002558C92 helix turn helix domain containing protein 8.68067067684e-05 1.27279246909e-05 -29906513373.6 +UniRef50_K7YS10 0.000110268545919 0.00382407404587 1.49930885385e+12 +UniRef50_D8JIS8 0.000392228991138 0.00469957169232 1.73892710551e+12 +UniRef50_F8KHK9 Response regulator protein 0.0105888132497 0.00447273461377 -2.46913599805e+12 +UniRef50_P76230 Putative metabolite transport protein YdjK 0.00230555362504 0.000547835986836 -7.09612180162e+11 +UniRef50_P52610 Flagellar motor switch protein FliG 0.000114505355566 0.000714172508987 2.4209298858e+11 +UniRef50_F0N1J6 Sensor histidine kinase 0.000224718965463 0.0070532597898 2.7567657264e+12 +UniRef50_G8PSK7 Short chain dehydrogenase reductase SDR 0.00116272706244 0.00127810915673 46581167362.4 +UniRef50_W8UIH3 Stage V sporulation protein R 0.000738160104607 0.000812000262474 29810177851.5 +UniRef50_UPI000373430C 30S ribosomal protein S17 3.56223020432e-05 0.000325710261417 1.17112068979e+11 +UniRef50_D4HFJ3 8.86813425461e-05 0.00103483409075 3.8197347505e+11 +UniRef50_E1NZW5 PspA related protein 6.92211471039e-05 0.000837372458833 3.10112110822e+11 +UniRef50_B9KQ43 Fatty acid beta hydroxylase 0.00333030122227 0.00127368269576 -8.30282136699e+11 +UniRef50_D4Z694 Ribonuclease D 5.92448613162e-05 1.08310663521e-05 -19545243131.1 +UniRef50_UPI00047C78E3 RNA polymerase sigma factor RpoE 0.000564738195589 4.16521812256e-05 -2.11176242986e+11 +UniRef50_B4U3I6 Phosphoglucosamine mutase 0.0321541484765 0.0186199097666 -5.46393825097e+12 +UniRef50_A4VZG9 Transcriptional regulator 0.00406062414036 0.0024146277593 -6.64508937681e+11 +UniRef50_UPI0003056218 hypothetical protein 0.000123303630096 8.07794198247e-05 -17167545517.3 +UniRef50_UPI00046F7510 hypothetical protein 1.7605409365e-05 9.5686865664e-05 31522442075.1 +UniRef50_Q49V01 Ribonuclease M5 0.00741152213516 0.00340834525099 -1.61613163264e+12 +UniRef50_UPI000367E0A5 hypothetical protein 5.68488687639e-06 7.89096547797e-05 29561737371.5 +UniRef50_Q8CMV9 Succinyl diaminopimelate desuccinylase 0.0113088813103 0.00585785448005 -2.20064642299e+12 +UniRef50_F2A6D1 0.00038328227668 7.93281095377e-05 -1.22710027212e+11 +UniRef50_UPI00045E4C42 PREDICTED 1.0723083665e-05 6.08342735764e-06 -1873086186.27 +UniRef50_W3ZDR5 NLPA lipofamily protein 5.11046067427e-05 3.9741229972e-05 -4587534646.65 +UniRef50_G9WJ36 Ribonucleoside diphosphate reductase subunit beta 0.00520883524132 0.00475779832854 -1.82089136535e+11 +UniRef50_F0Y9Q8 8.36626966138e-05 0.000113438503525 12020858640.3 +UniRef50_UPI00035FAC18 hypothetical protein 1.95072744038e-06 3.00499659258e-06 425621394.08 +UniRef50_I4XUK4 Outer membrane porin, OprD family 0.00139703590694 0.00062531609542 -3.11552757978e+11 +UniRef50_Q8UII5 Glutathione synthetase 0.0090507001568 0.00478608089535 -1.72167912861e+12 +UniRef50_Q6ME50 30S ribosomal protein S8 0.000283824051773 0.0414143439189 1.66048955986e+13 +UniRef50_UPI0003692650 hypothetical protein, partial 3.33669563539e-05 1.5889263412e-05 -7055959116.06 +UniRef50_A4WSD1 Haemin degrading family protein 0.000174224302552 0.000295316705201 48886488920.3 +UniRef50_Q5NP09 Leucyl phenylalanyl tRNA protein transferase 1.75444608397e-05 1.42915105323e-05 -1313255957.29 +UniRef50_A5UNB6 Formylmethanofuran dehydrogenase subunit E, metal binding 0.00640596899918 0.00188767038702 -1.82409259549e+12 +UniRef50_Q9JZ25 8.21812747825e-05 0.00409415096393 1.61968139591e+12 +UniRef50_A1WR07 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.11573132684e-05 0.000231671029202 89024093130.1 +UniRef50_Q9JZ20 6.46749267023e-05 0.00468628230578 1.86579961243e+12 +UniRef50_V8UNT0 0.000247103275661 0.000182858640994 -25936347385.4 +UniRef50_UPI0003730FD4 MULTISPECIES 0.000405658192578 7.19590933629e-05 -1.34718421302e+11 +UniRef50_P77328 Putative purine permease YbbY 0.00192780444417 0.0011862522077 -2.99373737732e+11 +UniRef50_H5NY39 8.25925185355e-05 2.12801456374e-05 -24752557326.4 +UniRef50_Q20719 Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 0.000172463416446 5.27799997407e-05 -48317664004.5 +UniRef50_UPI00036C23C8 hypothetical protein, partial 0.0018228730035 0.000707256978392 -4.50387879485e+11 +UniRef50_R0B9U9 2.82392150721e-05 0.000102565027804 30006242680.2 +UniRef50_Q59637 Pyruvate dehydrogenase E1 component 0.000960617195579 0.0113516571623 4.19499034696e+12 +UniRef50_P32140 Sulfoquinovose isomerase 0.00383661120243 0.00106210480799 -1.12010227846e+12 +UniRef50_I0C1T3 Phosphohydrolase 0.00392995092711 0.00585045773662 7.75332166268e+11 +UniRef50_Q7AHT0 Protein FixC 0.0015551025886 0.00104516001548 -2.05870074468e+11 +UniRef50_A0A023RTX7 3 oxoacyl ACP reductase 0.000167029198609 0.00312366322429 1.19362943815e+12 +UniRef50_P0ABQ3 2 hydroxy 3 oxopropionate reductase 0.00340693925121 0.00020044120263 -1.29450261037e+12 +UniRef50_Q132J0 1.81498142186e-05 3.18516102133e-05 5531583183.0 +UniRef50_UPI00035C36AF hypothetical protein 8.95694072163e-05 1.6931379476e-05 -29324863167.6 +UniRef50_F8DK82 Bacterial capsule synthesis protein 0.00538991828681 0.00250829743023 -1.16334570127e+12 +UniRef50_Q9HU78 Histidine utilization repressor 0.00161030237273 0.00696790273987 2.16292901336e+12 +UniRef50_Q67FW7 DeoX 0.000372901818082 0.00610401970517 2.31372261974e+12 +UniRef50_UPI0004737BA1 hypothetical protein, partial 0.000214438723608 0.000129729889967 -34197995635.2 +UniRef50_R4NT35 Bipolar DNA helicase 0.000833639002711 0.000732574829828 -40800846789.7 +UniRef50_P39629 Glucose 1 phosphate thymidylyltransferase 0.000134484457948 1.82363283586e-05 -46930796440.0 +UniRef50_A4XS92 Multisubunit potassium proton antiporter, PhaD subunit 0.000186081699149 0.000121114164807 -26228190855.2 +UniRef50_UPI00047D80A6 DNA gyrase subunit A 5.43624143822e-06 8.94022097455e-06 1414599537.48 +UniRef50_F0KNK5 Two component system response regulator 0.000388914210183 0.00655936810024 2.4910879554e+12 +UniRef50_X1C4Y0 Marine sediment metagenome DNA, contig 0.000428779610345 0.000176686933668 -1.017729071e+11 +UniRef50_N3AGF2 Cytochrome c type protein TorY 0.00199625858811 0.000962100964089 -4.17502123358e+11 +UniRef50_V0HZJ9 Cysteine desulfurase ATPase component 2.90311699825e-05 4.32427377806e-05 5737384315.64 +UniRef50_UPI00047B2607 pyrroloquinoline quinone biosynthesis protein PqqD 0.000568164998459 0.0004786165479 -36151808373.7 +UniRef50_Q5HR89 Nucleoside permease NupC, putative 0.00922752397086 0.00297410986471 -2.52458001267e+12 +UniRef50_A6X846 2.06784488205e-05 3.56971296522e-05 6063225751.7 +UniRef50_Q8X5R9 Multidrug resistance outer membrane protein MdtP 0.00628031205658 0.000834369175775 -2.19859397021e+12 +UniRef50_R7PWL5 Tetrahydromethanopterin S methyltransferase subunit D 0.00185388268482 0.00175107661102 -41504073565.5 +UniRef50_UPI000381633B hypothetical protein 8.35102652347e-05 0.000346544146433 1.06190005628e+11 +UniRef50_O28392 DNA directed RNA polymerase subunit B 0.00357461536165 0.00145920216293 -8.54018267362e+11 +UniRef50_UPI000471C680 hypothetical protein 0.000214021699552 3.86798106142e-05 -70787672251.2 +UniRef50_C6C0W1 Flagellar hook capping protein 6.25011979495e-06 8.53687735363e-06 923192088.11 +UniRef50_C5ZYT0 Flagellar biosynthetic protein fliR 0.000329918202451 0.0037714211467 1.38937697058e+12 +UniRef50_A3M994 Glycerol 3 phosphate acyltransferase 0.000100296958099 0.00654940272376 2.60358313702e+12 +UniRef50_O27221 0.00381901260513 0.000564871506842 -1.31373669418e+12 +UniRef50_UPI00046F1A00 PTS lactose transporter subunit IIC, partial 2.35694247981e-05 5.12340255421e-05 11168538803.2 +UniRef50_Q8X852 Anaerobic nitric oxide reductase flavorubredoxin homolog 0.000906004697287 0.00067171309201 -94586396131.6 +UniRef50_N1QCI2 3.47431612211e-05 1.97791547763e-05 -6041153030.77 +UniRef50_UPI000346EB07 hypothetical protein 6.84484538426e-06 0.000575029185245 2.29382990408e+11 +UniRef50_C2TQQ2 Peptidase, M23 M37 4.72809257569e-05 0.00036012092922 1.26297348377e+11 +UniRef50_Q31J61 tRNA pseudouridine synthase D 1.36551539828e-05 1.44006784927e-05 300977393.261 +UniRef50_Q82X69 DNA directed RNA polymerase subunit alpha 0.000301970573484 0.00248231436974 8.80231546377e+11 +UniRef50_A5FRB6 Triosephosphate isomerase 6.32048671276e-06 1.10248192836e-05 1899196787.5 +UniRef50_E3EYC8 0.000204316364208 7.7206553359e-05 -51315790452.5 +UniRef50_UPI000383025F hypothetical protein 5.79978541618e-06 0.000111025359298 42480855439.2 +UniRef50_B9KX89 Lipopolysaccharide biosynthesis protein like protein 0.00653475087511 0.00167991242651 -1.95995785727e+12 +UniRef50_UPI0004799F87 hypothetical protein 5.08306769381e-05 0.000161228410485 44568919765.5 +UniRef50_Q5HMA0 Putative aldehyde dehydrogenase SERP1729 0.00993051916199 0.00362160397685 -2.54698647934e+12 +UniRef50_J7Q688 0.00588770481722 0.00173715708938 -1.67562705068e+12 +UniRef50_B7GSP5 UPF0145 protein Blon_0093 BLIJ_0092 0.00626760354376 0.00089489910665 -2.16902671176e+12 +UniRef50_P0A080 Methionine aminopeptidase 0.0184456943461 0.00612905183714 -4.97237972308e+12 +UniRef50_UPI00029AD8DA MgtC family protein 9.76279424565e-06 2.37583207115e-05 5650165778.67 +UniRef50_E4RH84 0.000319002244105 0.000121789178688 -79617334585.3 +UniRef50_UPI0002E94BF6 hypothetical protein 1.80643877389e-05 8.4698820894e-06 -3873419668.53 +UniRef50_I6D5L2 DNA mismatch repair endonuclease MutH 0.00157544674083 0.000676297798153 -3.62997461957e+11 +UniRef50_V6J5F5 0.00029699405655 9.24832007824e-05 -82563542104.0 +UniRef50_N3N816 2.23763877706e-05 1.07733713138e-05 -4684280128.63 +UniRef50_UPI00046883B3 hypothetical protein 6.08898639376e-06 3.91170731897e-06 -878994280.711 +UniRef50_O26311 0.00252666245388 0.000252407440337 -9.18144657213e+11 +UniRef50_R9GEA9 0.000118797513848 5.49949343175e-05 -25757884302.2 +UniRef50_F2MRI9 PTS family mannose fructose sorbose porter component IIB 0.00211397282274 0.0114010743195 3.74931683979e+12 +UniRef50_Q2IXV2 Transglutaminase like 0.00587363564302 0.000187308078712 -2.2956402168e+12 +UniRef50_R4RQ23 0.00225032262051 0.00108583484632 -4.70118004312e+11 +UniRef50_A4WT49 Flagellar hook capping protein 0.000373500608085 2.91475161056e-05 -1.3901956892e+11 +UniRef50_W4KX88 0.000182360381085 0.00440664585546 1.70539588382e+12 +UniRef50_UPI0003822DD9 hypothetical protein 3.26953949297e-05 3.99070481698e-05 2911432909.97 +UniRef50_UPI0003599277 PREDICTED 8.75011433112e-06 1.77644757568e-05 3639208326.2 +UniRef50_B1HQN9 Oxidoreductase 3.09811814829e-05 3.60951961111e-05 2064590461.42 +UniRef50_A6LQN9 0.000220752040266 0.00114727635005 3.74049233592e+11 +UniRef50_A4VWU0 Oxidoreductase, aldo keto reductase family 0.00531654410109 0.00469659214923 -2.50282210632e+11 +UniRef50_Q71ZB6 Valine tRNA ligase 0.011607580159 0.00670740818618 -1.9782595573e+12 +UniRef50_UPI0001745DE2 iojap like protein 1.57311865608e-05 1.54185978416e-05 -126195901.836 +UniRef50_X2D8N8 CCR4 NOT transcription complex subunit 1 like protein 2.073948527e-07 1.64110422442e-05 6541611293.06 +UniRef50_UPI000288BDB9 hypothetical protein 4.23818883364e-05 0.000675120098089 2.55444179848e+11 +UniRef50_A8TYU1 0.000181654248277 3.98131953456e-05 -57262973653.7 +UniRef50_B1M8V2 ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein 0.0110482934425 0.00098272298877 -4.0635943106e+12 +UniRef50_A8TJK3 4.64977491737e-05 3.30064999485e-05 -5446582868.46 +UniRef50_A6M2M8 ABC 2 type transporter 0.000374970592476 0.00184698361002 5.94269718812e+11 +UniRef50_D7GD90 DEAD DEAH box helicase domain protein 0.000126390398057 0.0056542384263 2.23166008332e+12 +UniRef50_UPI00036142F7 hypothetical protein 1.49991024948e-06 1.48577346644e-05 5392717635.23 +UniRef50_UPI0003804935 hypothetical protein 1.64102526707e-05 2.04195223195e-05 1618591356.49 +UniRef50_P54569 0.00992392698782 0.0044337418747 -2.21645510231e+12 +UniRef50_G3N5H8 0.000342844569056 0.000177368301016 -66804800029.9 +UniRef50_Q5HKG1 0.013345753669 0.00526656333702 -3.26166827983e+12 +UniRef50_UPI00036B826D hypothetical protein, partial 5.50766493932e-06 4.3426136046e-05 15308152097.7 +UniRef50_UPI0003B72BA0 hydrogenase 3.12086082261e-06 9.57761927362e-06 2606672620.01 +UniRef50_B5R316 UPF0304 protein YfbU 0.00166624954215 0.000397287047353 -5.12295731072e+11 +UniRef50_F0MMC4 Amine oxidase, flavin containing 0.0003478177114 0.00395127882311 1.45476147024e+12 +UniRef50_V9QXD6 Porin 0.000665291397705 0.000425943697766 -96627603591.9 +UniRef50_A6LW94 Transcriptional regulator, DeoR family 0.000176946557275 0.00161628231504 5.81077508044e+11 +UniRef50_U3SVU2 0.000568801182077 0.000586309163956 7068187131.65 +UniRef50_B1YGB5 DNA replication and repair protein RecF 0.0184665548133 0.00336847218 -6.09528123337e+12 +UniRef50_I6STT7 0.00334666335117 0.00602675346134 1.08198526588e+12 +UniRef50_UPI0002BC6165 bacterioferritin comigratory protein 1.84825304258e-05 0.00022017092355 81424079299.1 +UniRef50_M0V7T6 9.84516834463e-05 0.000347431417872 1.00516174113e+11 +UniRef50_F9YYL3 Ferrous iron transport protein B 0.000269549589222 0.00366827884652 1.37210870827e+12 +UniRef50_UPI00030260F1 cation 0.000166083424888 0.000132603447 -13516277918.9 +UniRef50_N1MTR3 Type I restriction modification system,specificity subunit S 0.0127677238355 0.00250175631683 -4.14449706489e+12 +UniRef50_A0A024EBR0 LmbE like protein 0.000765594314752 0.000136404944659 -2.54011469728e+11 +UniRef50_L2D926 Fimbrial like adhesin protein 0.0014121910621 0.000274287961482 -4.59385445362e+11 +UniRef50_V5A3C8 0.000528198678434 3.33846493983e-05 -1.99762495573e+11 +UniRef50_F3U4M4 GntR family transcriptional regulator 0.000190835953959 0.00016988496944 -8458169547.81 +UniRef50_UPI0004695BC6 leucyl tRNA synthetase 4.75422282929e-06 1.5562105193e-06 -1291076813.57 +UniRef50_Q5FPX3 tRNA pseudouridine synthase A 0.000233016042498 7.47651250683e-06 -91053075938.6 +UniRef50_Q5LI89 N acetylmuramic acid 6 phosphate etherase 6.90100093984e-06 0.00210289577065 8.4617880928e+11 +UniRef50_UPI00037D2323 alpha glucosidase 4.53041820766e-06 3.04100759075e-05 10447935392.5 +UniRef50_E3F031 Beta glucosidase 0.00295037214071 0.00110858584528 -7.43551728724e+11 +UniRef50_P0AES3 Glucarate dehydratase 0.00702954799968 0.00878875403996 7.10213066347e+11 +UniRef50_UPI000370BA4E hypothetical protein 7.20502329626e-05 5.82777945811e-05 -5560102381.44 +UniRef50_I6SW42 Transposase 0.000129800417186 0.00183934280053 6.90163238598e+11 +UniRef50_UPI000360A0FF phosphoribosylglycinamide synthetase 1.86467445882e-05 8.87922415961e-06 -3943267857.98 +UniRef50_X5F4A5 0.00114128498685 0.000655180477956 -1.96246355414e+11 +UniRef50_UPI0003630547 hypothetical protein 7.60039227276e-05 1.05280356734e-05 -26433419083.3 +UniRef50_Q5HQB3 Inosine uridine preferring nucleoside hydrolase family protein 0.0110896238537 0.00173346835175 -3.77719478908e+12 +UniRef50_T1AIV4 Multidrug transporter 3.30373060728e-05 0.000589183652317 2.24523104662e+11 +UniRef50_O86567 Aminomethyltransferase 2.09158158154e-05 6.90653761094e-05 19438568352.2 +UniRef50_D2VSM7 Predicted protein 6.36531801708e-06 0.000193201807955 75428183729.5 +UniRef50_G7ZTG3 0.00948107114663 0.00458052852016 -1.97840919473e+12 +UniRef50_A6TGA6 Rhamnulose 1 phosphate aldolase 0.00320383182012 0.00129427310983 -7.70912284265e+11 +UniRef50_UPI0004763CF3 pseudouridine synthase 5.81392126613e-06 2.42057008727e-05 7424987119.7 +UniRef50_Q0SRF8 Endoribonuclease YbeY 0.000225589236365 0.000387724339418 65455930723.9 +UniRef50_R1C5J1 5.24229248771e-05 7.90221917779e-05 10738450457.6 +UniRef50_V5P4D6 PTS fructose transporter subunit IIB 0.00564687527535 0.0025995800943 -1.23023045911e+12 +UniRef50_Q9HYB2 0.00180932536709 0.000402041979561 -5.68137572855e+11 +UniRef50_H8GCV6 Putative transcriptional regulator 5.90744896513e-05 1.11794729683e-05 -19335805972.9 +UniRef50_Q1J3U3 Transcriptional regulator, MerR family 0.0012868840529 0.0314781732444 1.21885939354e+13 +UniRef50_A1B304 Heat shock protein DnaJ domain protein 0.000207030706866 0.000333691192315 51134392274.7 +UniRef50_A0A022H4X6 GntR family transcriptional regulator 3.34616244267e-05 4.40145301052e-05 4260337521.13 +UniRef50_O34677 Glutamine transport ATP binding protein GlnQ 0.00181155000652 0.00901977646216 2.91004947503e+12 +UniRef50_Q98L75 Hemin import ATP binding protein HmuV 9.660166239e-06 0.000554022556773 2.19765777136e+11 +UniRef50_G7U407 O antigen polymerase 0.000107037614984 0.00739729341918 2.94316572965e+12 +UniRef50_O67604 Riboflavin synthase 1.8922804886e-05 2.95569233109e-05 4293124103.44 +UniRef50_UPI00035CB0C6 hypothetical protein 7.26520480106e-06 1.02498671824e-05 1204944829.27 +UniRef50_UPI000441B666 PREDICTED 1.84541740747e-05 1.4969606456e-05 -1406762708.12 +UniRef50_F9K9S6 Glyoxylate reductase 0.000294680013299 0.00021848338239 -30761514935.8 +UniRef50_Q9RW09 Sensor histidine kinase 0.00013827325599 0.00502788511845 1.97399631116e+12 +UniRef50_W4U410 Lysophospholipase L2 7.00358479649e-05 0.000643304216154 2.31435475032e+11 +UniRef50_UPI0003B5FE88 RNA polymerase sigma factor RpoE 0.000808418463745 7.72663091172e-05 -2.95175097069e+11 +UniRef50_I6T5F3 Deoxyribonuclease 0.00695652230996 0.00143992609936 -2.22711758647e+12 +UniRef50_F7NPL8 4.342524562e-05 1.21262356921e-05 -12635794389.9 +UniRef50_F0Y846 0.00015185373942 0.000307109306929 62678577803.4 +UniRef50_K8C5J6 Translation initiation factor IF 2 0.00253454226222 0.00151853782466 -4.10173459219e+11 +UniRef50_UPI0003DE73F4 PREDICTED 8.77149972398e-07 1.32507892727e-06 180834415.788 +UniRef50_J3QFT9 4.38535395469e-06 8.10167048895e-05 30937016744.8 +UniRef50_W8GMX2 Antitoxin 0.000385189784541 0.000509166733097 50051015500.3 +UniRef50_UPI000476B5A8 hypothetical protein 8.51870467217e-05 0.0129108730146 5.17788681411e+12 +UniRef50_F3Z514 Putative cold shock protein 0.00182576859218 0.000411289866682 -5.7104241909e+11 +UniRef50_Q56632 Vibriobactin specific 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 8.22624134819e-06 2.29917180878e-05 5961004152.55 +UniRef50_Q9RYM5 8.81976609493e-05 0.00752036892396 3.00045874187e+12 +UniRef50_Q9RYM9 1.55774901697e-05 0.0653801981306 2.63884994666e+13 +UniRef50_UPI000399284A PREDICTED 1.04118684972e-05 0.000109546543662 40021884883.3 +UniRef50_C5N1J7 Kinase, PfkB family 0.0100911004936 0.00153477095771 -3.45429523161e+12 +UniRef50_A5FZN2 Galactarate dehydratase 0.00570192735234 0.00131200101454 -1.77226713302e+12 +UniRef50_UPI0003B3B04C MFS transporter 1.61280413142e-05 7.06417222195e-06 -3659195178.72 +UniRef50_UPI000262C1BF adenosylcobinamide phosphate synthase 2.50670606869e-05 1.16874545804e-05 -5401511171.42 +UniRef50_D5K8E6 UbiC transcription regulator associated protein 0.0148399742338 0.00393272239083 -4.40339141605e+12 +UniRef50_E6MWT7 Peptidyl prolyl cis trans isomerase 0.000164223720365 0.00354114655461 1.36330518769e+12 +UniRef50_Q5HGL7 Peptide deformylase like 0.0134900540338 0.00507273647925 -3.39817438887e+12 +UniRef50_A9LZP7 0.00028453717753 0.00189524027011 6.50260604024e+11 +UniRef50_Q1QLF3 0.00244035780859 0.0008972954244 -6.22953220002e+11 +UniRef50_Q5HRJ2 3 oxoacyl reductase, putative 0.0128128992334 0.00360653980476 -3.71672027608e+12 +UniRef50_B6YRP0 S adenosylmethionine synthase 3.94428814984e-05 0.000260829952447 89376677267.0 +UniRef50_Q9RT82 0.000246722868534 0.0175185642636 6.97285432053e+12 +UniRef50_P05827 HTH type transcriptional regulator IlvY 0.00345398178848 0.00175605343953 -6.85474510395e+11 +UniRef50_W1PW22 3.87021954854e-05 5.18001643751e-05 5287810770.92 +UniRef50_UPI0004098CB0 sugar ABC transporter 9.2286988138e-06 3.92979250041e-05 12139315603.9 +UniRef50_UPI00046A1978 ABC transporter permease 3.63723394977e-05 8.51849342804e-06 -11244939463.5 +UniRef50_D2NQB1 5.96808617329e-05 8.52588449168e-05 10326145688.5 +UniRef50_F0QNU4 1 acyl sn glycerol 3 phosphate acyltransferase 0.000737415830084 0.01070026496 4.02212445166e+12 +UniRef50_F4GUZ8 9.129319897e-06 1.16422553192e-05 1014502867.13 +UniRef50_Q2CBD6 9.94205564893e-06 4.60123433811e-06 -2156155102.43 +UniRef50_P45095 Dipeptide transport ATP binding protein DppD 0.00468100251102 0.00035156750618 -1.7478460396e+12 +UniRef50_A3PSS2 Dihydroxy acid dehydratase 3.81342339775e-05 3.62860237416e-05 -746145152.323 +UniRef50_P08179 Phosphoribosylglycinamide formyltransferase 0.00225177271537 0.0013762973617 -3.53440143567e+11 +UniRef50_UPI000360F7E6 hypothetical protein 1.26381634915e-05 1.07746639859e-05 -752317618.121 +UniRef50_W1BDM8 Chaperone protein HscA 0.000164323167059 0.000188851131809 9902240361.55 +UniRef50_W0Z408 0.000339695659152 0.00201058619745 6.74559014444e+11 +UniRef50_A7X763 Imidazole glycerol phosphate synthase subunit HisF 0.00952121310255 0.00132884434372 -3.30735979961e+12 +UniRef50_D3E067 Nitroreductase family protein 0.00677472677209 0.000985488178211 -2.3371866623e+12 +UniRef50_R0F7I9 0.000165179960443 4.64698622668e-05 -47924723370.4 +UniRef50_UPI000465952B membane protease HflC 1.57205836514e-05 1.5985058735e-05 106771836.724 +UniRef50_C5N6C9 Universal stress family protein 0.00908686348549 0.00332179350531 -2.32742949636e+12 +UniRef50_UPI000427AC9A porin 0.000217635528263 2.32216974661e-05 -78487249218.7 +UniRef50_V5V9L8 Glycine cleavage T protein 0.000685657105098 0.00763927675394 2.80726158275e+12 +UniRef50_A0A027RVP4 0.00436581542328 0.000954032941423 -1.37737845521e+12 +UniRef50_UPI00034A9B47 hypothetical protein 1.52334783284e-05 2.0309632292e-05 2049305646.52 +UniRef50_Q98KP1 Cobyrinic acid A,C diamide synthase 1.22576643302e-05 0.000343154630125 1.33587165654e+11 +UniRef50_D5ZNQ6 Transposase IS204 family protein 0.0001909709893 1.19647901543e-05 -72266999248.3 +UniRef50_A6MVW4 ATP synthase subunit alpha, chloroplastic 4.1065778982e-06 2.21958633047e-05 7302866499.1 +UniRef50_U1GGK9 Cell envelope related transcriptional attenuator 6.61732240486e-06 3.06203938204e-05 9690334481.25 +UniRef50_UPI0002BBA067 hypothetical protein 1.49804369715e-05 0.00261693872819 1.05044249178e+12 +UniRef50_L8PB26 Putative Linear gramicidin synthetase LgrC 0.00037919427142 0.000402523088356 9418129673.84 +UniRef50_V7H7E4 6.84277782178e-05 2.66717731417e-05 -16857411653.0 +UniRef50_B1VXS1 1.19949661193e-05 4.84109939426e-05 14701597307.2 +UniRef50_Q9ZMV6 UPF0026 protein jhp_0109 0.000124720040369 0.00324524857148 1.2597956612e+12 +UniRef50_UPI00037A38D7 hypothetical protein 8.6506383219e-05 0.000121794085894 14246078598.7 +UniRef50_P58409 0.00359326384759 0.00178334174832 -7.30687761717e+11 +UniRef50_D1BK43 0.000243133426411 0.00437035060887 1.66620822321e+12 +UniRef50_B8EIF0 4.80681564945e-06 6.53496296159e-06 697674276.663 +UniRef50_C9XTA5 Tat linked quality control protein TatD 0.00441268379763 0.00144278582111 -1.19898425787e+12 +UniRef50_P38392 Superinfection exclusion protein B 0.00548301099577 0.00255946801891 -1.18027017567e+12 +UniRef50_B2V3W1 Permease 0.000746371472637 0.000539703075147 -83434568173.1 +UniRef50_X2M6Z7 7.15590225249e-05 1.93074159483e-05 -21094614774.3 +UniRef50_D3QD71 FemC, factor involved in methicillin resistance Glutamine synthetase repressor 0.0170980775984 0.00304282279934 -5.67427883977e+12 +UniRef50_Q2KBF3 Tetracycline efflux transporter protein 0.000233310615449 0.00579657557487 2.24595833306e+12 +UniRef50_Q9WYG0 8.08941454917e-06 9.01169592152e-06 372336307.683 +UniRef50_Q2FDT8 Probable transglycosylase IsaA 0.0328414448291 0.00115594250238 -1.27918261141e+13 +UniRef50_UPI00036FC7C5 hypothetical protein 5.6408117369e-06 3.57081443686e-05 12138551151.1 +UniRef50_Q2T0X3 Cholesterol oxidase 0.000914801495341 0.000201697732584 -2.87888739792e+11 +UniRef50_UPI0003C1A958 PREDICTED 3.89790669515e-05 0.000120858745548 33055831026.1 +UniRef50_V6Q9U1 0.00397280200999 0.0126841599267 3.51688209136e+12 +UniRef50_A6LU63 Metallophosphoesterase 0.000255917559997 0.0010489383901 3.20152240572e+11 +UniRef50_Q9L6I1 Histidinol dehydrogenase 7.05974743672e-06 1.20703889761e-05 2022857476.93 +UniRef50_D2GME6 Uro adherence factor A 0.00329769427568 0.00143742187303 -7.51014797059e+11 +UniRef50_R0ENU8 KxYKxGKxW signal peptide 2.33582500386e-06 4.87554345321e-06 1025315503.85 +UniRef50_F0RIT9 NHL repeat containing protein 9.516453501e-05 0.0177993019726 7.14737753776e+12 +UniRef50_C0ZS23 9.95018329976e-06 1.9073865801e-05 3683342585.93 +UniRef50_Q8DSK8 0.00600553873078 0.00152541645479 -1.8086803401e+12 +UniRef50_P27278 Trifunctional NAD biosynthesis regulator protein NadR 0.0035173203564 0.000432221507771 -1.24549226361e+12 +UniRef50_UPI0003C16102 PREDICTED 2.78906870337e-05 2.6043153439e-05 -745871983.967 +UniRef50_P0A2E9 RNA polymerase sigma factor FliA 0.00241848291011 0.00123800534721 -4.76573278231e+11 +UniRef50_A6T4E6 UPF0246 protein KPN78578_00060 0.00503051663173 0.00468393018195 -1.3992120287e+11 +UniRef50_Q72J47 Ribose 5 phosphate isomerase A 0.000344530447282 0.0489469828717 1.96214064629e+13 +UniRef50_UPI0003B500DC hypothetical protein, partial 0.000155603472713 4.14670566688e-05 -46078271768.3 +UniRef50_R4MBB3 2.12778856842e-06 1.13723586609e-05 3732146389.97 +UniRef50_Q9ZJ57 Transcription repair coupling factor 8.11257640167e-05 0.00516084735742 2.05074594245e+12 +UniRef50_R4ZYK3 CAAX amino terminal protease family 0.00490800216882 0.000202966807698 -1.89948051256e+12 +UniRef50_D7CXC6 Thioesterase superfamily protein 1.20829146056e-05 0.00201604776964 8.0902520339e+11 +UniRef50_UPI0002D421A9 hypothetical protein 9.90130692353e-05 2.09998907161e-05 -31494877497.6 +UniRef50_UPI0004666DD2 NAD dependent dehydratase 5.32794220664e-06 1.70370488017e-05 4727110019.34 +UniRef50_P76149 Succinate semialdehyde dehydrogenase [NAD+] Sad 0.00335644075898 0.00164821501142 -6.89631696577e+11 +UniRef50_N0B4C8 0.000129842145169 3.04863580198e-05 -40111150504.7 +UniRef50_P77495 Propionate CoA ligase 0.000784977629583 0.000726440129384 -23632307166.2 +UniRef50_A1AXZ2 S formylglutathione hydrolase 0.00799509560498 0.00229799387586 -2.29998987935e+12 +UniRef50_C6STZ5 0.00438895302526 0.00535973898332 3.91918204152e+11 +UniRef50_A9W4X6 Sulfite reductase [NADPH] hemoprotein beta component 0.0118305531116 0.00312359921694 -3.51510413361e+12 +UniRef50_Q6SSJ3 Acetolactate synthase, mitochondrial 8.05417734946e-06 1.03221992684e-05 915628280.435 +UniRef50_K7S2B2 Sirohydrochlorin cobaltochelatase 0.000147647714023 0.00244399968812 9.27065471352e+11 +UniRef50_X2ME11 Glutathione ABC transporter permease 0.000480482699606 0.000952549918961 1.9057932937e+11 +UniRef50_UPI000373BE38 hypothetical protein 9.75822269403e-06 1.52240829576e-05 2206634862.05 +UniRef50_L0EAK7 O glycosyl hydrolase 0.000467692782591 0.000454705383499 -5243172386.75 +UniRef50_Q97P97 Ribosomal silencing factor RsfS 0.00969642706325 0.0105902859345 3.60861795205e+11 +UniRef50_UPI000360CFF1 hypothetical protein 1.7054782912e-05 7.93992166737e-05 25169212961.8 +UniRef50_F5XDU3 1.68610186858e-05 9.56200205152e-05 31795975520.2 +UniRef50_D1BRB3 3.13114066676e-05 1.14386016294e-05 -8022895260.66 +UniRef50_Q2J3W0 0.000115721926882 8.34949584588e-05 -13010422621.8 +UniRef50_Q8XJS1 tRNA pseudouridine synthase B 0.000126249494601 0.000852464311664 2.93181833306e+11 +UniRef50_B7UQI7 HTH type transcriptional repressor NsrR 0.000716731215833 0.000416917701458 -1.21038394879e+11 +UniRef50_UPI00016BFAFA hypothetical protein, partial 1.11489569517e-06 3.19757907757e-06 840804838.874 +UniRef50_W7WQV3 9.90065263461e-06 4.09142866282e-05 12520584623.3 +UniRef50_UPI000395618F 6.06890657318e-05 9.56749584945e-05 14124234233.5 +UniRef50_N8K6N9 0.000108778229038 2.31996144509e-05 -34549136876.5 +UniRef50_UPI000185D852 hypothetical protein TGME49_026320 9.33756431966e-06 9.28750881292e-06 -20208022.3211 +UniRef50_M4ZG31 Drug metabolite transporter superfamily protein 0.00607313242201 0.000809912853241 -2.12482632688e+12 +UniRef50_UPI00036A115E hypothetical protein 8.33257015501e-05 4.37909185109e-05 -15960677059.3 +UniRef50_A5UMF7 Predicted metal dependent membrane protease 0.0025047657686 0.00111802674918 -5.59843559341e+11 +UniRef50_E6YL73 0.0010354972995 0.000376904128365 -2.65882145034e+11 +UniRef50_R6M763 0.000775656141478 0.00516070661491 1.77029868674e+12 +UniRef50_M1PJ51 1.21765464228e-05 3.11879104652e-05 7675120959.59 +UniRef50_K2JGL6 0.000145221832666 4.50277002653e-05 -40449600770.6 +UniRef50_UPI000262543A preprotein translocase subunit SecB 5.04877266856e-05 9.82587918199e-05 19285765211.6 +UniRef50_H5YAU3 ABC type spermidine putrescine transport system, permease component II 0.0152167393029 0.00503649065513 -4.10989130482e+12 +UniRef50_UPI00037F1EED hypothetical protein 8.89378651807e-05 3.51108947596e-05 -21730608490.2 +UniRef50_A0LA39 Indole 3 glycerol phosphate synthase 2.06278774831e-05 1.29145794963e-05 -3113953050.08 +UniRef50_P19319 Respiratory nitrate reductase 2 alpha chain 2.86593473857e-06 2.99052009327e-05 10916083571.7 +UniRef50_W6RYK9 Alpha dextran endo 1,6 alpha glucosidase 0.000116598614574 0.00174833938943 6.58753774522e+11 +UniRef50_K2M7A1 0.000206281715712 9.03429730277e-05 -46805893149.9 +UniRef50_F3P2W5 5.82841619358e-05 3.46101525294e-05 -9557488110.13 +UniRef50_B0VAL5 Ribosomal RNA large subunit methyltransferase K L 0.000193357553506 0.00580169637857 2.26415520573e+12 +UniRef50_P0ACQ8 HTH type transcriptional regulator TdcA 0.00291857139325 0.000858157022104 -8.31814565761e+11 +UniRef50_R9SMW6 0.00510560160835 0.000619540423194 -1.81107795061e+12 +UniRef50_UPI00037472A8 hypothetical protein 0.0108452909333 0.00323656694733 -3.07173524268e+12 +UniRef50_UPI00036CDC12 hypothetical protein 4.89548727809e-06 3.86852179044e-05 13641328900.5 +UniRef50_Q6GK63 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 0.0312873402737 0.00893735192555 -9.02296456133e+12 +UniRef50_UPI00046235B0 hypothetical protein TRAVEDRAFT_69016 0.000480786716452 0.000167081587097 -1.26646610315e+11 +UniRef50_UPI0001632402 hypothetical protein 8.64528789287e-05 0.000844257606478 3.05935067821e+11 +UniRef50_UPI0003B5E791 excinuclease ABC subunit B 3.15399214197e-05 0.0038764317956 1.55223003174e+12 +UniRef50_W7D397 PadR family transcriptional regulator 0.000118540365383 3.63671798199e-05 -33174323390.2 +UniRef50_Q9RRD7 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000175995025254 0.0502267896033 2.02061199635e+13 +UniRef50_D2J8F1 0.00558292746484 6.98624072391e-05 -2.22569201667e+12 +UniRef50_UPI000474D7ED hypothetical protein, partial 6.5713985504e-05 5.94009960422e-05 -2548631314.82 +UniRef50_UPI0003694619 hypothetical protein 7.62576349525e-06 2.90555804597e-05 8651480081.95 +UniRef50_Q7VUN5 Prolipoprotein diacylglyceryl transferase 6.51701276842e-05 3.24150931095e-05 -13223609407.3 +UniRef50_P11908 Ribose phosphate pyrophosphokinase 2 1.98175225429e-05 6.52788241283e-05 18353285322.9 +UniRef50_E3NW74 4.41376074096e-05 3.41831142436e-05 -4018751046.48 +UniRef50_F3PMN2 5.99016490107e-05 0.000248949448219 76320916417.6 +UniRef50_P67176 Probable transcriptional regulatory protein YebC 0.00374263658625 0.000492736667377 -1.312024478e+12 +UniRef50_UPI0003C1377F PREDICTED 1.51730767463e-05 7.8561869427e-06 -2953918202.05 +UniRef50_UPI00035E1742 hypothetical protein 3.88606070013e-06 7.75539927303e-06 1562099464.0 +UniRef50_I0C568 Cysteine desulfurase 0.017650146737 0.00488476506883 -5.1535412283e+12 +UniRef50_Q9CIS4 N acetyldiaminopimelate deacetylase 0.00795316598662 0.00741225728289 -2.18371481392e+11 +UniRef50_H9JHD1 1.20980512765e-05 5.41582488401e-05 16980217893.1 +UniRef50_A3M3L5 Dichlorophenol hydroxylase 0.000255813375982 0.00779631108392 3.04419145701e+12 +UniRef50_A2SL87 ABC transporter permease protein 0.0154917996742 0.00325811325903 -4.93888933003e+12 +UniRef50_A3PG71 Multi sensor hybrid histidine kinase 0.00100641208363 7.87861374395e-05 -3.74493977728e+11 +UniRef50_R4K8M4 ABC type nitrate sulfonate bicarbonate transport system, ATPase component 0.00109096454872 0.000874808301326 -87264929608.4 +UniRef50_K7ECB4 7.34617983995e-05 0.000117351804686 17718934128.8 +UniRef50_P15043 ATP dependent DNA helicase RecQ 0.00209738780536 0.000523819557883 -6.35268811362e+11 +UniRef50_P52331 RNA polymerase sigma factor SigA 0.0238943328062 0.012142180399 -4.74448814191e+12 +UniRef50_Q31GL1 5.96917282558e-05 2.20291924508e-05 -15204827875.8 +UniRef50_X2HGW8 Alkaline protease secretion protein AprE 0.000176079988287 0.00196390953199 7.21768725927e+11 +UniRef50_O84834 Ribonucleoside diphosphate reductase subunit alpha 2.8791927524e-06 5.21165629071e-05 19877730541.9 +UniRef50_F8KIL6 NADH oxidase family protein 0.00992899441259 0.0032548485395 -2.69443458995e+12 +UniRef50_Q67N11 Pseudouridine 5 phosphate glycosidase 0.0182214047341 0.00246025530664 -6.36296943493e+12 +UniRef50_Q28R93 Toxic anion resistance 0.00418208358637 0.000863714470269 -1.33966633314e+12 +UniRef50_P37683 Inner membrane protein YiaV 0.00558544802753 0.00131810113006 -1.72278030874e+12 +UniRef50_B7ULC6 Xylose isomerase 0.00577521267828 0.0021378458552 -1.46844962199e+12 +UniRef50_W6M578 0.000373503326426 0.000195989782119 -71664396172.9 +UniRef50_UPI00037B97F0 hypothetical protein 1.19153769054e-05 2.64256493778e-05 5857975058.17 +UniRef50_X6MYI2 5.91433015345e-06 0.000176947537862 69048204765.6 +UniRef50_UPI00042541FF hypothetical protein 1.96438993307e-05 1.9530376192e-05 -45830684.1788 +UniRef50_UPI0003B727B1 50S ribosomal protein L24 3.39707220721e-05 1.68139900757e-05 -6926383243.72 +UniRef50_UPI00046D149F hypothetical protein 1.21720508364e-05 1.30294836648e-05 346156154.709 +UniRef50_Q7W6C6 Non canonical purine NTP pyrophosphatase 0.00010555702073 3.39980568062e-05 -28889231863.3 +UniRef50_W5WYX4 Alkaline phosphatase 0.000348207865387 0.000383922051208 14418255078.3 +UniRef50_P02983 Tetracycline resistance protein 0.573449640169 0.199788693154 -1.50851509645e+14 +UniRef50_U3T3X0 O methyltransferase 0.000382587150866 0.00387493521807 1.40990377066e+12 +UniRef50_UPI00046FEA8D GntR family transcriptional regulator 6.30660519476e-05 2.27910646503e-05 -16259506601.6 +UniRef50_Q97MM1 N acetylmuramic acid 6 phosphate etherase 7.38837239037e-06 9.57256916304e-06 881787040.235 +UniRef50_L7WQT3 Prephenate dehydratase 0.0193261519228 0.00827844693206 -4.46009407533e+12 +UniRef50_UPI00047E31BE methionine aminopeptidase 2.0896686494e-05 1.59942222588e-05 -1979184971.75 +UniRef50_UPI0003B46743 hypothetical protein 0.000146105377266 0.00119396794301 4.23034976509e+11 +UniRef50_P72479 Oligopeptide transport ATP binding protein OppF 0.0068082495341 0.00243256978593 -1.76651560996e+12 +UniRef50_A4WNF9 Metallophosphoesterase 0.00293243478848 0.00127031100512 -6.71019767895e+11 +UniRef50_Q9AHJ5 Interrupted beta D glucuronidase 0.00757471850256 0.000716382241939 -2.76879450966e+12 +UniRef50_E9B5T6 Proteophosphoglycan ppg1 2.90697901286e-06 7.08370068878e-06 1686193794.71 +UniRef50_Q02431 Chlorophyllide reductase 35.5 kDa chain 0.0113805442473 0.000981479729588 -4.19822995667e+12 +UniRef50_A0A034HVJ8 0.00407005541126 0.000416917701458 -1.47481652249e+12 +UniRef50_N0CE78 Snf2 family protein 7.44673737484e-05 0.00218026279815 8.50135453846e+11 +UniRef50_UPI000473A49C hypothetical protein, partial 3.28072894097e-05 0.000448726946494 1.67911869473e+11 +UniRef50_UPI000475C363 GntR family transcriptional regulator 2.0549375882e-05 2.30055457136e-05 991585901.61 +UniRef50_UPI000255B851 thiamine biosynthesis adenylyltransferase 6.82402891564e-06 1.23479565094e-05 2230077355.82 +UniRef50_UPI0003C17DF0 PREDICTED 1.38774497287e-05 9.96542419774e-06 -1579332712.8 +UniRef50_Y9YFG1 Serine aspartate repeat containing protein D 0.00271732010744 0.000301856938874 -9.75152122218e+11 +UniRef50_UPI0002556FCA major facilitator family transporter, partial 1.42961203675e-05 5.32509012927e-05 15726523088.4 +UniRef50_I1ALS6 Flp pilus assembly protein TadG 0.000686443205609 0.000136404944659 -2.22057195674e+11 +UniRef50_UPI00035E72D8 hypothetical protein 5.76164371093e-06 2.77658124031e-05 8883352922.56 +UniRef50_UPI0004243274 hypothetical protein 2.54895606645e-05 1.67707422968e-05 -3519893966.97 +UniRef50_UPI0003942A9F 7.43765265774e-06 3.24246547439e-06 -1693648546.65 +UniRef50_A5UMV2 Predicted polysaccharide polyol phosphate ABC transporter, permease component 0.00241752645776 0.000564082114019 -7.48258225888e+11 +UniRef50_A3DIP6 UDP N acetylmuramate L alanine ligase 0.000182885775899 0.000770614094769 2.37273134565e+11 +UniRef50_UPI0000164CF6 hypothetical protein DR_1761 0.000366361200249 0.367022323052 1.48023511174e+14 +UniRef50_Q13SY1 Probable chemoreceptor glutamine deamidase CheD 0.000129908418105 2.30232681357e-05 -43150846670.8 +UniRef50_F0L781 Permeases of the major facilitator superfamily 0.000180337174001 4.96584957997e-05 -52756585997.5 +UniRef50_G0DRF3 0.000120731126496 0.00722314475428 2.86733153795e+12 +UniRef50_A1WQY3 Alanine racemase 0.000852684738129 3.67152253227e-05 -3.29416905392e+11 +UniRef50_A5WHX2 Superfamily I DNA and RNA helicase like protein 0.000183064294941 0.00852290629596 3.36689655718e+12 +UniRef50_R7PS51 0.0038721516281 0.000674033673906 -1.29111946343e+12 +UniRef50_J9U7Y2 0.0122401822874 0.00397473189481 -3.33686375197e+12 +UniRef50_J7QB56 0.000714598300831 0.000611000079721 -41823873155.2 +UniRef50_Q8ZMH3 Serine threonine protein phosphatase 2 0.0025254015282 0.00217160279463 -1.42832890341e+11 +UniRef50_P67760 UPF0302 protein SA1295 0.0187015404039 0.00275045431704 -6.43964919512e+12 +UniRef50_A3PR59 Flavin reductase domain protein, FMN binding 0.0117203284293 0.00406809538251 -3.08930038445e+12 +UniRef50_Q66FG9 Glycerol 3 phosphate acyltransferase 0.000106288818658 7.85765069176e-05 -11187800317.9 +UniRef50_A6TWG5 30S ribosomal protein S5 0.0378096039141 0.0134995983289 -9.81424757206e+12 +UniRef50_P37168 Putative oxidoreductase YceM 0.00140302182391 0.000576335613062 -3.337433679e+11 +UniRef50_UPI000255C7E1 uroporphyrin III C tetrapyrrole methyltransferase 1.68773922273e-05 6.94331487445e-05 21217403837.7 +UniRef50_A0A028XDJ1 Ornithine cyclodeaminase mu crystallin domain protein 0.000226262281297 8.8121208325e-05 -55769246340.4 +UniRef50_UPI000477AE3E hypothetical protein 2.54620588548e-05 1.26555052857e-05 -5170162829.93 +UniRef50_UPI0003B3FFE1 zinc binding dehydrogenase 1.37085843461e-05 1.04423237738e-05 -1318629474.56 +UniRef50_UPI0001913AE8 oligopeptide ABC transporter, permease protein OppC, partial 3.80250395831e-05 7.26280782821e-05 13969671349.8 +UniRef50_Q5PMJ4 tRNA specific 2 thiouridylase MnmA 0.00480990039616 0.00274157870841 -8.35006846506e+11 +UniRef50_Q9Y7M1 Putative 2 hydroxyacyl CoA lyase 1.84997417258e-06 6.58362972527e-06 1911034835.11 +UniRef50_UPI0003B30236 3 oxoacyl ACP synthase 3.69149421803e-06 5.28013571983e-05 19826254330.9 +UniRef50_V6G3R8 ABC transporter, substrate binding protein, family 5 domain protein 0.00138594828447 0.000432170788082 -3.85051679458e+11 +UniRef50_A9H9A8 ATP synthase subunit beta 0.0444593269575 0.0222112927959 -8.98180440512e+12 +UniRef50_B8EPL9 UPF0301 protein Msil_1255 2.59320771537e-05 5.10107863836e-05 10124582666.5 +UniRef50_U3T6B1 Iron ABC transporter substrate binding protein 0.000655969071909 0.00718793021978 2.63703287157e+12 +UniRef50_A4XX95 NADH dehydrogenase (Quinone) 0.000387828070733 0.000282599717884 -42481977342.2 +UniRef50_B9KX15 Short chain dehydrogenase reductase SDR 0.00647332187081 0.00175159066935 -1.90622082819e+12 +UniRef50_UPI00047DFFFB hypothetical protein 6.5665246778e-06 7.87478303564e-06 528159953.195 +UniRef50_Q72AR4 Lipoprotein signal peptidase 1.11565359832e-05 1.95860291508e-05 3403089833.27 +UniRef50_Q9RZC9 0.000223364490448 0.0292671559215 1.17253350081e+13 +UniRef50_Q6A8Z5 tRNA dimethylallyltransferase 2.78857484072e-05 0.0076636112687 3.08263609343e+12 +UniRef50_C0Z6T1 N acetyl gamma glutamyl phosphate reductase 1.90839953744e-05 1.11661445576e-05 -3196533537.7 +UniRef50_Q6G723 Staphylococcal secretory antigen ssaA2 0.00798019925823 0.00184745821938 -2.47586281458e+12 +UniRef50_Q9RZC7 0.000386043983463 0.0484883359355 1.94194855425e+13 +UniRef50_T0GNN5 0.000707299404308 0.000436215245423 -1.09440001519e+11 +UniRef50_D3PKE0 PepSY associated TM helix domain protein 0.000208940584237 0.0334656105796 1.34261257824e+13 +UniRef50_UPI000441E5AE PREDICTED 1.6772561522e-05 2.42505295588e-05 3018947461.44 +UniRef50_Q9L730 SanE 1.99648333434e-05 1.27435112644e-05 -2915336338.88 +UniRef50_UPI00030945F6 cation transporter 3.64740059683e-06 1.39182477174e-05 4146467020.05 +UniRef50_Q3IVJ0 Replication protein C 0.00372978215305 0.000964121750937 -1.1165310428e+12 +UniRef50_UPI0002556222 ATP dependent DNA helicase Rep 7.68236512601e-06 1.08236932095e-05 1268192695.74 +UniRef50_Q13IW9 ATP synthase subunit alpha 3 0.000451165384017 0.000119480797778 -1.33905137692e+11 +UniRef50_A3X0R4 Terminase, large subunit, putative 4.14720543927e-06 6.30294093475e-05 23771468283.6 +UniRef50_D6SEC7 DHHA1 domain protein 0.0247525822377 0.00689627481478 -7.20881042816e+12 +UniRef50_A5PL98 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 3.41815213199e-05 3.9204812533e-05 2027964305.44 +UniRef50_UPI0003C19C73 PREDICTED 0.000197205281455 2.49722981808e-05 -69532568884.1 +UniRef50_I6WVI5 4.97598354546e-06 2.24101060476e-05 7038369194.84 +UniRef50_P13063 Periplasmic [NiFeSe] hydrogenase small subunit 5.24442222101e-05 1.59699051607e-05 -14725129383.0 +UniRef50_Q9KC26 Biotin synthase 7.14569877676e-06 6.05228430452e-05 21549008152.4 +UniRef50_O87131 Chemotaxis protein methyltransferase 1 0.0016388114327 0.000691043885684 -3.82625389146e+11 +UniRef50_D2SGL3 Gm3773 predicted gene 3773 0.000121324768436 6.26293008265e-06 -46451876110.6 +UniRef50_UPI0004662606 glycolate oxidase 4.23784533649e-06 4.21141587262e-05 15291132510.1 +UniRef50_B5Z805 0.000144815596745 0.00715425937683 2.82979846957e+12 +UniRef50_D2NRN3 3.70575723281e-05 0.00141066330516 5.54541490381e+11 +UniRef50_A4WT54 0.00465049659479 0.00142054429477 -1.30397137949e+12 +UniRef50_R0TNR1 0.000622998670332 0.00224396514433 6.54404057049e+11 +UniRef50_Q9JSZ8 UDP N acetylmuramate L alanine ligase 0.000209900531417 0.00259349446361 9.62286120412e+11 +UniRef50_D3E0J9 Putative adenylate kinase 0.00335745966688 0.000334952784714 -1.22022311866e+12 +UniRef50_B4WIG2 8.40574045213e-05 5.58851510447e-05 -11373484440.9 +UniRef50_UPI0004625279 transposase 3.72161937676e-05 7.30425775741e-06 -12075815628.0 +UniRef50_K9WHG2 0.000746002410406 0.000264071577242 -1.94561391305e+11 +UniRef50_A4XVS8 0.000164841786411 8.28377854697e-05 -33106021482.3 +UniRef50_F8DJ84 CBS domain protein 0.00872700155911 0.00474469116367 -1.60770757508e+12 +UniRef50_P45694 Transketolase 0.00947111820625 0.00601062620824 -1.39704308461e+12 +UniRef50_A0A023S1I9 TetR family transcriptional regulator 0.000189374241902 0.00773465104895 3.04612083796e+12 +UniRef50_UPI0003B3BF67 XRE family transcriptional regulator 0.000187146692914 0.000127589480149 -24043977642.4 +UniRef50_Q2FWV6 Staphylococcal complement inhibitor 0.00516536007076 0.00152458233835 -1.46982664794e+12 +UniRef50_UPI000467D6E6 TetR family transcriptional regulator 1.16109909575e-05 0.00012939868751 47552338515.6 +UniRef50_R6HDW3 GTP binding protein TypA BipA 2.2782885732e-05 1.3698761851e-05 -3667372285.5 +UniRef50_B9TQ05 0.00013180762642 0.00140187240404 5.12740736173e+11 +UniRef50_A3KAM8 3.02719387657e-06 1.51836475033e-06 -609132833.679 +UniRef50_Q8CN73 Nitrate reductase delta chain 0.00713593379273 0.00385581745535 -1.32422321695e+12 +UniRef50_Q52987 Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase 9.82336510762e-06 0.000327420208308 1.28217742951e+11 +UniRef50_Q3IXI3 PpkA related protein 0.00262877973882 0.000118047983419 -1.0136132198e+12 +UniRef50_UPI00036E1A30 hypothetical protein 3.17035993747e-05 1.13123622431e-05 -8232192658.65 +UniRef50_G7U5R3 0.000426746542044 0.00443392384377 1.6177466503e+12 +UniRef50_W5MN69 0.000231278677658 0.000396655489892 66764648500.6 +UniRef50_D6SYK4 7.1596117703e-06 1.74672386071e-05 4161315442.82 +UniRef50_UPI00046AEB65 hypothetical protein 2.69320792352e-06 3.48979496326e-05 13001449424.6 +UniRef50_I6TN35 Sorbose PTS system, IIB component 0.0033372978259 0.00284993292385 -1.96755191597e+11 +UniRef50_O83990 Uridine phosphorylase 0.000643158280444 0.00103059849607 1.56414369474e+11 +UniRef50_UPI0003B525E9 hypothetical protein 1.18207404621e-05 2.17880159387e-05 4023911422.13 +UniRef50_H2A6W4 0.00669538019649 0.00150643971074 -2.09483894956e+12 +UniRef50_E6QN76 0.000137122972376 3.96223096322e-06 -53758625374.5 +UniRef50_F3KCS8 Cysteine synthase 0.00010573523435 1.19851987062e-05 -37848039831.7 +UniRef50_UPI000368CD4B hypothetical protein 1.88895212442e-05 6.1893098642e-05 17361071908.7 +UniRef50_UPI0004729707 hypothetical protein, partial 0.00135438127587 0.000295354954343 -4.27541921716e+11 +UniRef50_UPI00035DAFDB hypothetical protein 0.00379166314568 0.00108124888397 -1.09422749798e+12 +UniRef50_Q2S8H5 3 hydroxydecanoyl [acyl carrier protein] dehydratase 0.00717237319785 0.000698286483191 -2.61366825269e+12 +UniRef50_A5B2H7 1.20342200341e-05 1.65082092483e-05 1806204347.79 +UniRef50_UPI000376B264 hypothetical protein 0.000110251964968 7.88259231026e-05 -12687078742.0 +UniRef50_Q5ZWE4 Spermidine putrescine import ATP binding protein PotA 4.96429357371e-05 3.49551241576e-05 -5929649774.36 +UniRef50_UPI00046F3C43 ribonuclease D, partial 8.79070324519e-05 1.3769196604e-05 -29930354105.3 +UniRef50_S3H5L3 PilT protein domain protein 0.00054942620498 0.000119840242305 -1.73429124744e+11 +UniRef50_E4TMS6 Beta Ig H3 fasciclin 0.0116460778107 0.00401052476565 -3.08256646306e+12 +UniRef50_C4K3W9 Orotate phosphoribosyltransferase 0.000490241543964 0.00116743227381 2.73390207704e+11 +UniRef50_UPI00036A0C85 resolvase 3.53176549166e-05 8.23740338362e-05 18997237616.5 +UniRef50_B9KLM6 0.00476381361066 0.000377627333572 -1.77075722462e+12 +UniRef50_UPI000467F2DE general secretion pathway protein GspI 2.23911480805e-05 2.63891448843e-05 1614040370.63 +UniRef50_E6SM17 3 deoxy D arabinoheptulosonate 7 phosphate synthase 0.000591334570185 0.00273683368096 8.66164319253e+11 +UniRef50_UPI000479ECD0 hypothetical protein 0.000124660660219 9.5340641639e-05 -11836851297.8 +UniRef50_B9KLM0 0.000292721757663 6.56745823328e-05 -91661730862.9 +UniRef50_UPI000378DE23 hypothetical protein 8.29278703574e-06 2.38830464876e-05 6293979054.73 +UniRef50_F0JDW5 7.30163678129e-05 1.99437590808e-05 -21426063419.3 +UniRef50_P32668 0.00240001581757 0.00344702288856 4.2268960278e+11 +UniRef50_UPI0004245E45 GTP binding protein Der 1.26351798838e-05 2.12177951439e-05 3464907101.04 +UniRef50_Q00934 Type 4 fimbriae expression regulatory protein PilR 9.16970013417e-05 0.00038189101397 1.17154883979e+11 +UniRef50_UPI000347AC3B preprotein translocase subunit SecG 9.27143145381e-05 4.42900581283e-05 -19549466545.1 +UniRef50_Q2YX72 Spermidine putrescine binding periplasmic protein 0.0169425122362 0.00277199200835 -5.7208129078e+12 +UniRef50_S1F8T4 Autoinducer 2 binding protein lsrB 0.000596660609908 0.00118126682079 2.36012701258e+11 +UniRef50_P03018 DNA helicase II 0.00397843345986 0.00147207137797 -1.01184912898e+12 +UniRef50_Q9ZJF9 DNA polymerase III subunit alpha 0.000103789063173 0.00470812725949 1.85882783144e+12 +UniRef50_A1A8T2 0.000926231145826 0.00248697266489 6.30090503697e+11 +UniRef50_A1T8W5 Phosphoribosyl isomerase A 0.000169529635709 0.00481179859287 1.87414094505e+12 +UniRef50_P9WQ72 Phosphoserine aminotransferase 0.000114274265039 0.00725271195211 2.88187489275e+12 +UniRef50_Q3HKJ3 Putative Mrr restriction system protein 0.0161897001833 0.00405171681669 -4.9002528349e+12 +UniRef50_M4WVA9 0.000525495878852 0.00030982973583 -87067068459.2 +UniRef50_Z5RZH0 5.16780348179e-05 9.38350877983e-05 17019319613.4 +UniRef50_UPI000466DA55 hypothetical protein 0.000171846019479 1.38173192879e-05 -63798125497.3 +UniRef50_B1KVH1 0.000976366212543 0.000729632970983 -99609237375.1 +UniRef50_Q46927 tRNA threonylcarbamoyladenosine dehydratase 0.00299619451546 0.000481079758001 -1.01538269152e+12 +UniRef50_A3PNX1 0.0208635824021 0.0107095207813 -4.09931928067e+12 +UniRef50_P29925 NADH quinone oxidoreductase chain 13 0.0143929375044 0.00325589838462 -4.4961593595e+12 +UniRef50_UPI0004786466 ABC transporter permease 0.000237021761595 3.74271854671e-05 -80578779683.8 +UniRef50_UPI0003DE8355 1.33528961612e-05 1.27413807493e-05 -246876275.922 +UniRef50_H9UVW0 Terminase large subunit 0.00115556935363 0.0053693946399 1.70117297752e+12 +UniRef50_D4HFJ6 UvrD REP helicase 0.00011025013016 0.00408726912287 1.60557137087e+12 +UniRef50_P39364 Putative sgc region protein SgcQ 0.00339500214433 0.0011224463398 -9.17458665684e+11 +UniRef50_P64576 0.000566228983278 0.00062390853211 23285941671.1 +UniRef50_F3Z838 Putative hydrogen peroxide sensitive repressor 4.71575469076e-05 9.37600567007e-05 18814005080.6 +UniRef50_D3E4D6 SsDNA exonuclease RecJ2 0.00165747351221 0.00183720509598 72559845922.5 +UniRef50_M4Z3L2 Hemolysin type calcium binding region 3.84912071399e-06 3.7852385247e-07 -1401122542.01 +UniRef50_P77489 Putative xanthine dehydrogenase YagR molybdenum binding subunit 0.00198624417188 0.00850137343474 2.63023763304e+12 +UniRef50_A8LJB4 Leucyl phenylalanyl tRNA protein transferase 4.30865795692e-05 9.81287621085e-05 22221204534.7 +UniRef50_P38489 Oxygen insensitive NADH nitroreductase 0.00376415550857 0.000919243779006 -1.14852577622e+12 +UniRef50_UPI00037EE3C9 hypothetical protein 4.99571239014e-06 6.96394220472e-06 794598529.042 +UniRef50_I6SUP0 Transcriptional regulator 0.0015266794879 0.0023493896728 3.32138197433e+11 +UniRef50_P45288 Peptide transport system ATP binding protein SapD 0.00172967329798 0.00118498928349 -2.19895620674e+11 +UniRef50_D9V463 Predicted protein 8.46307662005e-06 0.000152933496934 58324481532.2 +UniRef50_G7UA10 0.00020367949039 0.0061900896824 2.41678725603e+12 +UniRef50_P56129 Diaminopimelate decarboxylase 5.24192377978e-06 0.00392790381971 1.58362674386e+12 +UniRef50_A0A024EEF7 2.98405486193e-05 7.51578552726e-05 18295152801.8 +UniRef50_J2JCG0 Integral membrane protein MviN 0.000219464277035 0.00021518847278 -1726194647.76 +UniRef50_P0AE47 UPF0053 inner membrane protein YtfL 0.00284518162001 0.000141299858951 -1.0915902473e+12 +UniRef50_A0A016QTH6 Cobyrinic acid a,c diamide synthase 3.08690896043e-05 0.0032333437336 1.29287831257e+12 +UniRef50_M9VHF6 0.000517104094322 0.00578687684106 2.12747192524e+12 +UniRef50_Q9RYL5 GGDEF family protein 0.000101383882411 0.0712625759797 2.87286464957e+13 +UniRef50_UPI00036176A4 hypothetical protein 0.000216506263816 0.000116387735334 -40419078540.7 +UniRef50_W6S1I7 0.000274868438483 0.000885493293889 2.46516747337e+11 +UniRef50_UPI000393F498 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.34161660567e-05 6.71379977105e-06 -6742950230.62 +UniRef50_A0A023KSK6 5 carboxymethyl 2 hydroxymuconate isomerase 0.0017527603519 0.000298299702217 -5.87183612515e+11 +UniRef50_Q3IUW4 TraC 0.0277604115257 0.00937690913022 -7.42164550801e+12 +UniRef50_B9KUI7 0.000517104094322 0.000868578544689 1.4189454869e+11 +UniRef50_UPI00047C294C hypoxanthine oxidase, partial 0.000670118467104 0.000140411859739 -2.13849057624e+11 +UniRef50_UPI0003B6C29E translation initiation factor IF 2 4.23445283216e-06 1.65413061475e-05 4968427705.46 +UniRef50_P0AFH9 Osmotically inducible protein Y 0.00145033779083 0.00125188603289 -80117409957.3 +UniRef50_Q5HDU6 Lipid II 0.0206521660372 0.00453141329982 -6.50814570397e+12 +UniRef50_Q830B5 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00410032668933 0.00824753206725 1.674277703e+12 +UniRef50_UPI000470A41D hypothetical protein, partial 4.20935635529e-05 2.70794615507e-05 -6061377222.04 +UniRef50_P16433 Formate hydrogenlyase subunit 7 0.00635297994815 0.00142067042035 -1.99123388262e+12 +UniRef50_P30015 Probable ATP dependent helicase lhr 0.000904611299874 0.00026137601689 -2.59681977125e+11 +UniRef50_F1L3M9 DnaJ subfamily B member 5 2.69457156372e-05 3.12842592944e-05 1751523314.33 +UniRef50_D5VJS0 DEAD DEAH box helicase domain protein 0.00857871031162 0.00120315003348 -2.97760419259e+12 +UniRef50_UPI000328CE6B PREDICTED 5.52896489843e-05 0.000654431368487 2.41880864459e+11 +UniRef50_UPI00016C3888 hypothetical protein, partial 0.000657285768533 6.93136155931e-05 -2.37371573372e+11 +UniRef50_J7TL98 Transcriptional regulator, AraC family 0.000137768609074 0.00517636769948 2.03414428336e+12 +UniRef50_J1JW34 3.51555549172e-06 5.74902577001e-06 901679359.108 +UniRef50_UPI000475758B transcriptional regulator 6.34518683161e-05 1.51723937043e-05 -19491016356.6 +UniRef50_A3VVX0 Hypothetical BRO family protein 6.7986583443e-05 1.95269826664e-05 -19563735499.7 +UniRef50_Q2S1E4 Adenylate kinase 8.61989643222e-06 1.29537756304e-05 1749640214.98 +UniRef50_F0XZ32 0.000434095718637 0.000537535220615 41759796293.9 +UniRef50_M5S0G6 4.69017598951e-06 0.000464377522965 1.85581422972e+11 +UniRef50_P24230 ATP dependent DNA helicase RecG 0.00335057673804 0.000723451422294 -1.06060272842e+12 +UniRef50_B9KTP4 Extracellular solute binding protein, family 1 0.0134620523319 0.0040452722241 -3.80166968641e+12 +UniRef50_D9R0R8 Flavodoxin nitric oxide synthase 0.000254154753991 0.00151380784867 5.08537412004e+11 +UniRef50_P59784 Glucitol sorbitol specific phosphotransferase enzyme IIA component 0.000643940239408 0.000299953013384 -1.38871864344e+11 +UniRef50_P08499 Homoserine dehydrogenase 4.70307769808e-06 0.0050849799937 2.050970133e+12 +UniRef50_A1A9I1 Formate transporter 0.00283524516485 0.000639653250757 -8.86387398661e+11 +UniRef50_I0C2Q1 0.00816467778568 0.00259787033201 -2.24738848146e+12 +UniRef50_UPI0003B4C7B5 cell division protein FtsZ 1.15218060536e-05 6.32685785094e-06 -2097264338.6 +UniRef50_P0AD18 Inner membrane protein YohC 0.000973600556889 0.000302888928405 -2.70774514976e+11 +UniRef50_UPI0002EF456C hypothetical protein 9.24946147709e-05 2.51706882459e-05 -27179495295.6 +UniRef50_E8PF29 CzcI 0.000285974233984 0.0112898425668 4.4423966786e+12 +UniRef50_P0AA97 0.00363257556419 0.000777182862646 -1.15275707322e+12 +UniRef50_P0AA96 0.00765778321076 0.000485470022509 -2.89555084828e+12 +UniRef50_M9LX88 2.7187555071e-06 6.27168658326e-06 1434361874.81 +UniRef50_P0AA92 0.00429645963326 0.00224295988859 -8.29023046199e+11 +UniRef50_Q74JL8 Cytidylate kinase 0.024990154944 0.0160876781113 -3.59403914304e+12 +UniRef50_A5UM81 Acetyltransferase, GNAT family 0.00271569874457 0.000683326407362 -8.20493652545e+11 +UniRef50_E8TMU8 Glycine betaine L proline ABC transporter, ATPase subunit 0.00879839690642 0.00118681896647 -3.07288741892e+12 +UniRef50_UPI000476F019 molybdenum ABC transporter permease 3.43136925389e-05 1.93900870012e-05 -6024842688.8 +UniRef50_X2LU18 Alanine tRNA ligase 0.00112081805244 0.000452015365101 -2.70003852011e+11 +UniRef50_UPI00035EFE25 alkaline phosphatase 5.62959423681e-05 1.26600957653e-05 -17616326745.6 +UniRef50_Q92GH4 Endonuclease III 7.00771523987e-06 2.7912165444e-05 8439383073.85 +UniRef50_P29931 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.000162932803002 0.00014137994893 -8701151672.13 +UniRef50_A9I0E6 Homoserine O acetyltransferase 0.000930397416083 0.00203523609641 4.46036933144e+11 +UniRef50_UPI0003C1A8F4 3.09302768745e-05 2.83814097557e-05 -1029008933.98 +UniRef50_P0AFA3 Nitrate nitrite sensor protein NarX 0.00315741353269 0.000830352093904 -9.39463259095e+11 +UniRef50_A0K8T5 Transcriptional regulator, LysR family 0.000527955305017 0.000200214715383 -1.32312897865e+11 +UniRef50_A5N540 Predicted transport protein, ATPase and permease component 0.000591932455978 0.000597879828799 2401027390.31 +UniRef50_E4P0V7 SerB Phosphoserine phosphatase 0.00417245417395 0.00534621407545 4.73861275889e+11 +UniRef50_UPI000372888C hypothetical protein 0.0003553990243 0.000129825487262 -91066805000.8 +UniRef50_C6SSA3 0.00256522953562 0.00328672121577 2.91275044975e+11 +UniRef50_V5VG42 0.000152456503581 0.00543118984223 2.13108942616e+12 +UniRef50_UPI00037ACEC3 hypothetical protein 0.000209952483934 9.63181437841e-05 -45875577568.7 +UniRef50_C3KCK1 0.00181427059854 0.00111440266111 -2.82545274686e+11 +UniRef50_B4V1W5 ATP GTP binding protein 0.000113251599211 0.000308999237138 79025723524.8 +UniRef50_F8DGR4 LytTr DNA binding domain protein 0.00292743394964 0.00209681547148 -3.35330872468e+11 +UniRef50_Q2NEM0 DNA primase DnaG 0.00376127202245 0.000913598474871 -1.14964075604e+12 +UniRef50_P31129 Diguanylate cyclase YdeH 0.00038105261841 0.000576321497731 78832442800.5 +UniRef50_A0A014MJV1 Crp Fnr family transcriptional regulator 0.000700364262885 0.000670372827031 -12107910690.6 +UniRef50_V6V4N6 0.000259468118757 0.000205081045272 -21956728970.3 +UniRef50_E5U2A7 0.000281168445056 3.46171740739e-05 -99535773619.8 +UniRef50_A6LR99 RNA directed DNA polymerase 0.00056739479511 0.000738061676362 68900314279.6 +UniRef50_Q8PFF8 tRNA dihydrouridine synthase A 0.00441417746843 0.00108775174182 -1.34291888567e+12 +UniRef50_Q71ZA3 Formamidopyrimidine DNA glycosylase 9.6156528043e-06 0.00152251484292 6.10775968412e+11 +UniRef50_UPI000373BE1A hypothetical protein 1.48296141811e-05 0.000301587793325 1.15767795839e+11 +UniRef50_UPI0003697F83 GntR family transcriptional regulator 3.15122030162e-05 5.82111843685e-05 10778706405.3 +UniRef50_Q2FUU3 Imidazole glycerol phosphate synthase subunit hisF 0.0235879424055 0.000963990284409 -9.1335670984e+12 +UniRef50_A5UJC4 Mg dependent DNase, TatD 0.000835422876638 0.000959088594497 49925367848.7 +UniRef50_A0YFJ4 1.47573268184e-05 2.78411406661e-05 5282096206.77 +UniRef50_J9GKH0 3.23340125988e-05 0.000899440004669 3.50061329586e+11 +UniRef50_A1WXH5 Isopentenyl diphosphate Delta isomerase 5.21703982337e-05 1.55470069552e-05 -14785312478.7 +UniRef50_UPI000347F8B1 hypothetical protein 0.00026681693268 0.000276643283554 3967018430.72 +UniRef50_UPI000370761B hypothetical protein 0.000291989238949 7.35350453669e-05 -88192638683.5 +UniRef50_W4LMW8 7.13522568092e-06 1.61363960427e-05 3633882931.83 +UniRef50_UPI0004786463 hypothetical protein 1.87009017859e-05 0.00021632630259 79783799441.0 +UniRef50_UPI00042CD0F4 3.15797343158e-05 5.7717939686e-05 10552314259.8 +UniRef50_A6LZW0 Sucrose 6 phosphate hydrolase 0.000176940514229 0.00152285643221 5.43362772334e+11 +UniRef50_UPI0001BF7CE9 hypothetical protein SMAC_10228, partial 0.000430879983092 0.00043856158219 3101155819.68 +UniRef50_A0A038G2P2 0.000354616383698 0.000176779365854 -71794986409.2 +UniRef50_UPI00037E17BF hypothetical protein 5.94720583856e-06 2.87808556213e-05 9218224617.67 +UniRef50_B5XU27 Urease subunit alpha 6.65189799997e-06 2.85320095808e-05 8833269544.33 +UniRef50_P16692 Phosphoribosyl 1,2 cyclic phosphodiesterase 0.00555114873329 0.000703135012379 -1.95720263095e+12 +UniRef50_E0WIK7 CagY protein 3.98194924671e-05 0.00225664517523 8.9495973164e+11 +UniRef50_B1X1Y0 1.89607543679e-05 0.000728451871176 2.8643027029e+11 +UniRef50_A0A009UCL1 Phenylalanine tRNA ligase beta subunit 0.00033756129987 0.00887585344474 3.44701331551e+12 +UniRef50_UPI0004708F1B hypothetical protein, partial 0.000233267980536 7.76381852963e-05 -62829658130.7 +UniRef50_F0YFT4 Expressed protein 0.000214744203046 0.000388874357509 70298480174.0 +UniRef50_D9VSA1 Predicted protein 1.82460999737e-05 1.74833498934e-05 -307931567.413 +UniRef50_UPI000471C706 UDP pyrophosphate synthase 6.77985808345e-06 1.33718933909e-05 2661285546.99 +UniRef50_Q5F8C3 Fructose 1,6 bisphosphatase class 1 0.00168556143408 0.0143284658499 5.10409565854e+12 +UniRef50_UPI00037A84AA hypothetical protein 6.11579618101e-06 1.62399270392e-05 4087235864.51 +UniRef50_UPI0004193DB1 chemotaxis protein CheY 0.000158701271107 6.16029292302e-05 -39199792146.3 +UniRef50_P77536 0.00322561483687 0.000511726875567 -1.09562987313e+12 +UniRef50_A6M0P7 Xanthine uracil vitamin C permease 0.000505536038142 0.000755916704798 1.01081747645e+11 +UniRef50_Q8ZM06 2,5 diketo D gluconic acid reductase A 2.86797981497e-05 2.28514282236e-05 -2352984461.31 +UniRef50_I4Y2U3 DJ 1 PfpI family protein 0.000200435038326 0.00404279054257 1.55120606807e+12 +UniRef50_I2DEY3 Flagellar hook associated protein FlgL 0.000154571438899 0.00345060467491 1.33064906425e+12 +UniRef50_V8RB85 ATP dependent DNA helicase DinG 0.00099338201923 0.000285078622058 -2.85950773298e+11 +UniRef50_UPI0003B331D4 glycosyl transferase 5.01490861379e-05 9.23942438424e-06 -16515732468.0 +UniRef50_D3E1W2 Lactaldehyde dehydrogenase CofA 0.00427353391694 0.00094303020948 -1.34456521658e+12 +UniRef50_O27126 DNA directed RNA polymerase subunit A 0.0028679800619 0.00191570535193 -3.8444498614e+11 +UniRef50_B4EEY8 ATP synthase gamma chain 0.000337892691407 0.00151709817266 4.76059723259e+11 +UniRef50_UPI00037BC6DA hypothetical protein, partial 0.000482460297262 4.09637911995e-05 -1.78237557269e+11 +UniRef50_UPI00046F61F0 hypothetical protein 2.47944358703e-05 2.92248318735e-05 1788605233.56 +UniRef50_K9XMG5 Amidohydrolase 0.000113245796655 0.00203689237047 7.76599727645e+11 +UniRef50_B2JFL4 1.81603730981e-05 0.00124291479716 4.9444839042e+11 +UniRef50_H8FVE2 0.00016455396676 9.06725379656e-05 -29826839431.4 +UniRef50_A9MKD9 0.0001176895491 0.00340750044457 1.32813702902e+12 +UniRef50_UPI0002FBDCEC hypothetical protein 1.18344793515e-05 9.9936240165e-05 35567761970.6 +UniRef50_P0AAS3 Inner membrane protein YbbJ 0.00401458533509 0.00209715036358 -7.74092027572e+11 +UniRef50_U6L2Z7 1.06228311814e-05 3.5263682598e-06 -2864929164.84 +UniRef50_UPI00034D6EDA hypothetical protein 2.57158685051e-05 1.29982240489e-05 -5134269130.02 +UniRef50_A9KF61 Thymidylate synthase 2.30220265864e-05 0.000427417888971 1.6325957214e+11 +UniRef50_Q7TYA6 Aspartate tRNA ligase 0.0002118964789 0.00876516605444 3.45305988807e+12 +UniRef50_M2E542 Transposase 0.00154719695554 0.000417900997911 -4.55910636115e+11 +UniRef50_C5A8E0 HlyD family secretion protein 0.000546547263645 0.000206997690564 -1.37080329395e+11 +UniRef50_UPI000367DB79 hypothetical protein 0.000406130547828 5.28102564255e-05 -1.42639737367e+11 +UniRef50_UPI000374E007 hypothetical protein 4.11538164794e-05 0.000122487540065 32835422288.5 +UniRef50_W0RJM9 Beta lactamase domain protein 3.72059952023e-06 0.000102671691006 39947769899.3 +UniRef50_UPI0003B6EABF sodium 0.000863715532786 0.000603938283687 -1.04875263287e+11 +UniRef50_A5V5W9 DGPFAETKE family protein 8.04809849176e-05 5.17448613311e-05 -11601125723.8 +UniRef50_D8S962 1.54829508233e-05 3.91208012679e-06 -4671302490.73 +UniRef50_D0KZ58 0.000166381021286 7.48150405963e-05 -36966310045.4 +UniRef50_A3UE08 Chemotactic signal response protein CheL 4.29843346164e-05 2.13232606832e-05 -8744841358.1 +UniRef50_B3PH50 Probable protein kinase UbiB 0.000284945965412 0.00288945121091 1.05147072848e+12 +UniRef50_Q8FJC0 0.00360664518398 0.00132190279688 -9.22378538614e+11 +UniRef50_O08399 DNA gyrase subunit B 1.78035763387e-05 2.36347690143e-05 2354124039.92 +UniRef50_Q1GKH2 Two component transcriptional regulator, winged helix family 0.00163990936494 0.000280808277526 -5.48685787033e+11 +UniRef50_UPI00036B452D hypothetical protein 5.23966803562e-05 4.00043543745e-05 -5002934069.75 +UniRef50_Q49VN6 0.00311269382701 0.000630569477283 -1.00206405908e+12 +UniRef50_B2T8C3 Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein 0.000654993953678 0.000602145066982 -21335744087.9 +UniRef50_D8JMP7 0.000381428188728 0.00668671283619 2.54552078672e+12 +UniRef50_Q2KUE4 Adenine phosphoribosyltransferase 3.51504566142e-05 4.04812010417e-05 2152086940.97 +UniRef50_Q79BD2 0.000254028799716 0.000282118972221 11340347345.4 +UniRef50_J7M139 tRNA dihydrouridine synthase 0.00621367007383 0.00871038446305 1.00795423706e+12 +UniRef50_Q49VN9 4.42400744827e-05 8.03943406679e-05 14595920921.7 +UniRef50_UPI00045E99AE hypothetical protein 8.74677100605e-05 3.07146160859e-05 -22911920476.3 +UniRef50_Q6AEL0 Non canonical purine NTP pyrophosphatase 1.05122938618e-05 3.51712355109e-05 9955117342.98 +UniRef50_S2XCJ5 1.81611189462e-05 1.38158704406e-05 -1754230143.91 +UniRef50_A6TCB0 Uracil phosphoribosyltransferase 0.00149062647365 0.000956587277784 -2.15598176769e+11 +UniRef50_UPI000370FC7C hypothetical protein 5.17754904813e-06 3.24659021006e-06 -779551778.458 +UniRef50_C6SR38 0.00634342651441 0.0017641878581 -1.84869483913e+12 +UniRef50_B9KLG8 PTS system, fructose subfamily, IIC subunit 0.00016640096454 0.000458588926713 1.17959865879e+11 +UniRef50_Q2P7B5 Acyl carrier protein 3.56444229336e-05 0.000369144372112 1.34638021988e+11 +UniRef50_A6M0D3 Methyl accepting chemotaxis sensory transducer 0.000133703404078 0.000682229754441 2.21446818817e+11 +UniRef50_K6GS41 Winged helix turn helix 2.40375247472e-05 0.00248611384827 9.93970424879e+11 +UniRef50_Q893F0 Transcriptional regulatory protein 0.000168270128756 0.00215370168918 8.01543084927e+11 +UniRef50_A9A5Y7 Inosine 5 monophosphate dehydrogenase 3.19369639347e-05 1.83456370965e-05 -5486985428.92 +UniRef50_B9Y1T7 4.29612278649e-05 0.0041227701572 1.64706892966e+12 +UniRef50_Q8CUE7 Mobilization protein 0.0987639562808 0.0188168783081 -3.22756164385e+13 +UniRef50_Q5WIL7 Phosphonates import ATP binding protein PhnC 0.0235221402945 0.00418770186016 -7.80555005617e+12 +UniRef50_D8JEB9 Group A colicins tolerance protein 9.58086266163e-05 0.00562620018955 2.23268693949e+12 +UniRef50_P31549 Thiamine transport system permease protein ThiP 0.00137996738335 0.000577177384265 -3.24096173972e+11 +UniRef50_A9M106 Soluble lytic murein transglycosylase, putative 6.5535761953e-05 0.00213845859126 8.36864383816e+11 +UniRef50_F5XRT1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000261020783112 0.00673121512812 2.61209685529e+12 +UniRef50_UPI0004416A22 hypothetical protein PUNSTDRAFT_135060 4.57150299449e-05 3.59923096788e-05 -3925181482.62 +UniRef50_B9DLR4 Putative 3 methyladenine DNA glycosylase 0.0138339191912 0.00449136237476 -3.77170483286e+12 +UniRef50_F0Y296 0.000231220551491 0.000286783945567 22431624028.0 +UniRef50_F2F9R8 9.58202634487e-06 0.00113313806009 4.53593358408e+11 +UniRef50_Q8DUW3 Shikimate dehydrogenase 0.00601597034097 0.00190597270867 -1.6592564795e+12 +UniRef50_T2H9Z7 0.000487078695291 1.63349573798e-05 -1.9004502367e+11 +UniRef50_UPI000380D55F hypothetical protein 2.23292768737e-06 5.9270877984e-06 1491377769.27 +UniRef50_Q14GX0 Chaperone protein DnaJ 0.000300102990212 0.0119400894871 4.6992053875e+12 +UniRef50_UPI0003748B7D hypothetical protein 6.54290175183e-05 0.000152183888198 35024005895.4 +UniRef50_Q321Q6 0.00178658809424 0.00123048627164 -2.2450512992e+11 +UniRef50_K6QCW0 1.22405574203e-06 1.53775289329e-05 5713930809.81 +UniRef50_U5MWF2 0.000142268588759 0.000952055870118 3.26921062692e+11 +UniRef50_UPI00037BD3FB hypothetical protein 5.25160465333e-06 0.00033190746488 1.31874979292e+11 +UniRef50_UPI00046FDA02 hypothetical protein 2.928915761e-05 5.16439819125e-05 9024916895.46 +UniRef50_J3N3W4 3.91062260815e-05 2.39646303557e-05 -6112848002.78 +UniRef50_UPI0003B5133D ATP dependent DNA helicase 3.30862244406e-06 2.02432010591e-06 -518488614.073 +UniRef50_UPI00041A4387 DNA polymerase I 1.57536321722e-06 6.15412892863e-05 24208980218.8 +UniRef50_UPI0002378CB3 X Pro dipeptidase 3.22057043186e-05 0.000147716852781 46633268115.3 +UniRef50_A6M378 Thymidylate synthase 0.000147647714023 0.000645371747058 2.00937299897e+11 +UniRef50_I1EHP5 7.89662067181e-05 3.70886171851e-05 -16906496790.3 +UniRef50_W4UBB6 Succinate dehydrogenase flavoprotein subunit 0.00017995460448 0.000112280805381 -27320743147.2 +UniRef50_D6SC84 4.8361627099e-05 5.43655856903e-05 2423871760.16 +UniRef50_UPI000405366E FAD dependent oxidoreductase 2.96448090241e-06 2.3203813872e-06 -260030878.28 +UniRef50_B0KAL7 4 hydroxy tetrahydrodipicolinate synthase 5.97784568924e-06 1.8036932173e-05 4868401195.14 +UniRef50_K0LQD7 Hydrolase 0.0122914495443 0.00490998691538 -2.97998704403e+12 +UniRef50_G7M6G8 Heavy metal transport detoxification protein 0.000514885202036 0.000896094834824 1.53899006725e+11 +UniRef50_UPI00046934BB peptidase C39, partial 6.11281053486e-06 6.79207316255e-06 274226658.288 +UniRef50_Q3IV33 Putative outer membrane protein 0.0170931104728 0.00106694591196 -6.46995929635e+12 +UniRef50_Q9RY14 0.000199411718742 0.0640754425057 2.57875374758e+13 +UniRef50_F5ZHL1 Sulfatase 0.00530889712404 0.00170459691558 -1.45510022389e+12 +UniRef50_Q9RY17 0.000369978654976 0.0236431454019 9.3956630096e+12 +UniRef50_Q9RY11 0.000137542217499 0.0553038078123 2.22712983868e+13 +UniRef50_Q9RY12 0.000355002497348 0.061963462388 2.48720912787e+13 +UniRef50_UPI0003B667B4 ABC transporter ATP binding protein, partial 2.30512268792e-05 1.2825181176e-05 -4128380138.07 +UniRef50_UPI0004716B86 hypothetical protein 3.56721232518e-05 3.21787942666e-05 -1410299779.29 +UniRef50_UPI0004171A57 histidinol phosphate aminotransferase 2.79771440503e-05 4.51678160048e-05 6940085221.3 +UniRef50_H9UQE9 Putative inner membrane protein 0.000102810975195 0.000658047361923 2.24155742839e+11 +UniRef50_D4L1E1 ABC type Fe3+ siderophore transport system, permease component 0.000123765897988 0.000634942285827 2.0636818061e+11 +UniRef50_H7BW27 0.000162147576229 2.24367302482e-05 -56402982967.4 +UniRef50_UPI000363A648 hypothetical protein 0.00027915766877 0.000177803270398 -40918014381.1 +UniRef50_K3QZQ8 5.28790071369e-05 7.2492932705e-05 7918382441.77 +UniRef50_P28912 H repeat associated protein YhhI 0.0113327221472 0.00375876133986 -3.05770092087e+12 +UniRef50_UPI00036D582C hypothetical protein 1.21235111286e-05 9.65051508965e-06 -998378847.998 +UniRef50_A6LR25 Binding protein dependent transport systems inner membrane component 0.000146881707723 0.000296304386488 60323769039.9 +UniRef50_U1RDC8 6.27711886123e-06 3.45241724351e-05 11403682158.1 +UniRef50_A3DE29 Phospho N acetylmuramoyl pentapeptide transferase 0.000126067679064 0.00131138332516 4.78526471789e+11 +UniRef50_A5UJY3 Polyferredoxin, iron sulfur binding 0.00265909277526 0.000235625030732 -9.7838366776e+11 +UniRef50_A0A011MBA1 DNA repair protein RecN 2.96742333397e-06 1.24193068563e-05 3815841365.62 +UniRef50_Q9ZK62 Signal recognition particle protein 8.55977298968e-05 0.00446159414824 1.7666434536e+12 +UniRef50_L0M8C5 2.44868198239e-06 1.26535245847e-05 4119820186.05 +UniRef50_A3MYR6 Shikimate kinase 4.45026430385e-05 2.07890259772e-05 -9573478206.45 +UniRef50_O06005 Amino acid permease AapA 0.00228669174344 0.0440274873293 1.68512713952e+13 +UniRef50_B5YFV7 DNA directed RNA polymerase subunit beta 5.50881958214e-06 2.00081365218e-06 -1416225042.0 +UniRef50_UPI0003632FFE hypothetical protein 6.5704492222e-06 2.26755003781e-05 6501806782.84 +UniRef50_D7AA03 Binding protein dependent transport systems inner membrane component 0.00319346349473 0.000226296325824 -1.19788179732e+12 +UniRef50_A8HWS0 0.000225588136781 4.24574040983e-05 -73932124050.9 +UniRef50_I4Z4F5 Lipoprotein 1.23756171431e-05 9.93211142797e-06 -986473242.385 +UniRef50_Q06951 Phosphomannomutase 0.000626595358918 1.47140849762e-05 -2.47023978918e+11 +UniRef50_E6MZK3 Binding dependent transport system inner membrane component family protein 0.000102484883855 0.0017916050868 6.81918553767e+11 +UniRef50_G8LF66 Nitrate nitrite response regulator protein narL 0.00154843126171 0.00125720710985 -1.17570763828e+11 +UniRef50_A5UJK6 0.000306184394528 0.000985600759453 2.74288723897e+11 +UniRef50_A5UJK7 0.00654557828834 0.00134234865999 -2.10060765177e+12 +UniRef50_R6G3H3 FAD binding domain protein 0.00105821437006 0.00215985290146 4.44744993751e+11 +UniRef50_UPI00041B7937 hypothetical protein 2.72306940301e-05 3.84786692664e-05 4540945631.07 +UniRef50_Q9RR63 Tyrosine tRNA ligase 0.000294370041344 0.0495082877112 1.9868262486e+13 +UniRef50_Q5HQF1 Membrane protein, putative 0.0181286169811 0.00492225299925 -5.33157119976e+12 +UniRef50_A0LSS7 Glutamate tRNA ligase 7.99758450996e-05 0.00588717592932 2.34443793636e+12 +UniRef50_O26156 Short chain isoprenyl diphosphate synthase 0.00218969545983 0.00259453418919 1.63438362972e+11 +UniRef50_UPI0003FDB9A0 SAM dependent methyltransferase 7.21140879526e-05 0.000163482681424 36886622403.1 +UniRef50_V6FKX1 Glycosyl hydrolase family 3, C terminal domain protein 5.04660412934e-05 0.000180865233991 52643754270.2 +UniRef50_Q49W95 NADH 0.0257099135579 0.00399790632269 -8.76540375714e+12 +UniRef50_B1LKC4 Ureidoglycolate lyase 0.000850713037148 0.00123048627164 1.53319115106e+11 +UniRef50_UPI000287FF7D RpoD subfamily RNA polymerase sigma 70 subunit 2.99283969964e-06 8.44556219171e-06 2201330982.48 +UniRef50_UPI0003AE35A2 PREDICTED 3.44693767788e-06 8.82066133314e-05 34218521179.5 +UniRef50_A8LIE1 Transcriptional regulator 0.0135529915772 0.00366788753144 -3.99073780714e+12 +UniRef50_M9VCG5 0.000393214571719 0.0131740293678 5.15977177142e+12 +UniRef50_UPI0003B648D0 peptidase M20 5.38732851757e-06 1.92435972759e-05 5593945733.26 +UniRef50_D4HCS1 0.000295968389143 0.00195517955798 6.69843909671e+11 +UniRef50_Q5HRF8 Putative heme dependent peroxidase SERP0235 0.0206740315406 0.0102621144865 -4.20341868333e+12 +UniRef50_UPI0002FAB494 hypothetical protein 6.97110111851e-06 9.67053975942e-06 1089796505.17 +UniRef50_Q52463 Glycosyltransferase alg8 0.000750105353216 0.000611875348484 -55805149183.2 +UniRef50_F0T7F9 Precorrin 2 C20 methyltransferase 0.00476997407374 0.00137695930489 -1.36980169916e+12 +UniRef50_D5USJ5 ABC transporter related protein 0.000432978035884 0.00086586486756 1.74761726066e+11 +UniRef50_A0A015A762 Aminopeptidase N 0.00042716687238 0.00890449614552 3.4224018561e+12 +UniRef50_R1EVW7 0.000163286015872 4.45637327258e-05 -47929642592.3 +UniRef50_P0DA58 DegV domain containing protein SpyM3_1667 0.0104488647604 0.00123837039137 -3.71838960225e+12 +UniRef50_Q12GA2 Glycerol kinase 0.00014708390166 0.00816102012439 3.23532439517e+12 +UniRef50_UPI0003C10A99 PREDICTED 5.99613517984e-06 2.00694672513e-05 5681576856.47 +UniRef50_C6XRP6 Transcriptional regulator, XRE family 0.00129486390965 0.000492194508663 -3.2404748704e+11 +UniRef50_UPI0002A4AECE PREDICTED 4.67200040153e-06 1.45603029423e-05 3992029078.83 +UniRef50_Q7VZ77 Siroheme synthase 4.39172397526e-05 1.37933628956e-05 -12161378748.7 +UniRef50_G7M8Y2 Site determining protein 0.000652623181394 0.00148002523243 3.34032361368e+11 +UniRef50_Q8YHH4 Uridylate kinase 1.70263504483e-05 1.61839524629e-05 -340086404.092 +UniRef50_UPI00047C4E72 chemotaxis protein CheD 0.00020276325328 2.89218839602e-05 -70181894068.0 +UniRef50_UPI00041519E4 leucyl phenylalanyl tRNA protein transferase 7.38231529172e-06 1.65311811729e-05 3693509425.44 +UniRef50_A0A031GMI8 4.71509237386e-05 0.000198218532928 60987847637.6 +UniRef50_UPI00037BE049 hypothetical protein 6.28873954468e-06 1.18230523819e-05 2234270006.04 +UniRef50_I1XZ29 0.000251099327394 0.00261894073583 9.55926633269e+11 +UniRef50_A6LYW5 0.000526202772398 0.000337504805945 -76179684641.5 +UniRef50_Q3J464 Pseudouridine synthase 0.00287549256723 0.000166375608569 -1.09370376081e+12 +UniRef50_G4LRU0 0.000443319659724 0.000760347587795 1.27988064932e+11 +UniRef50_M3BKE3 ComEC Rec2 like protein 3.56947917989e-05 0.000181726035154 58954604947.3 +UniRef50_R6XPK5 2.73347059684e-05 0.00072299974251 2.80848512022e+11 +UniRef50_A6LX94 Beta and gamma crystallin 0.000343324042664 0.000429795997823 34909789427.9 +UniRef50_UPI000470DD33 cell division protein FtsZ 3.1521196182e-06 1.45456930579e-05 4599725412.48 +UniRef50_P0A4G4 Metal ABC transporter substrate binding lipoprotein 0.000122560385996 0.000196877803461 30002853407.9 +UniRef50_UPI00035EA533 hypothetical protein 0.000382769625642 0.00026125181921 -49058229647.8 +UniRef50_UPI00046E5D21 glycosyl transferase 7.43874515805e-05 5.26403439511e-05 -8779574217.01 +UniRef50_UPI0003740A8D hypothetical protein 4.31667869126e-06 0.000106007427732 41053803273.7 +UniRef50_UPI0002FEF2A0 hypothetical protein 7.56346483311e-05 1.14153747461e-05 -25926108805.4 +UniRef50_UPI0003AF1E76 PREDICTED 1.77037912205e-05 2.74714807446e-05 3943336123.91 +UniRef50_D0C6D9 Molybdopterin oxidoreductase 0.000101429468035 0.0083212736265 3.31845195561e+12 +UniRef50_B1YJY5 Endonuclease MutS2 9.5020740786e-05 0.00137461888686 5.16589474003e+11 +UniRef50_UPI00016C0B60 ABC transporter related protein 3.58425753778e-06 4.99791947691e-06 570712672.41 +UniRef50_A6W7W9 Probable dual specificity RNA methyltransferase RlmN 1.93583159675e-05 4.45597765157e-05 10174138880.0 +UniRef50_Q9RTP8 Divalent metal cation transporter MntH 0.00250724661576 0.0436649685415 1.66158774034e+13 +UniRef50_Q48C82 0.00595387803284 0.00049861814253 -2.20235536128e+12 +UniRef50_Q8FKC6 Acyl carrier protein phosphodiesterase 0.00192341798447 0.0030397701913 4.50685085079e+11 +UniRef50_UPI00030FC743 hypothetical protein 6.05353282664e-06 6.0339787607e-06 -7894216.37535 +UniRef50_A0A059IQC1 5.10211352025e-06 0.000174294358049 68304985338.7 +UniRef50_UPI000376E9E0 hypothetical protein 0.000365755081973 0.000165316730772 -80919422035.0 +UniRef50_C6SKJ8 0.000295498238766 0.00644920986333 2.48432889737e+12 +UniRef50_UPI00047BE00A molecular chaperone GroES, partial 8.97646224949e-06 0.000141157476738 53363097592.7 +UniRef50_UPI0004710755 ribonucleoside diphosphate reductase 7.11092069817e-06 3.55843350727e-05 11495066791.1 +UniRef50_Q9FIW4 Beta glucosidase 42 3.05116665277e-06 7.07440856046e-06 1624232128.86 +UniRef50_UPI0003C13A93 PREDICTED 1.06102682363e-05 0.000144082302323 53884298047.0 +UniRef50_Q67KG3 Bifunctional purine biosynthesis protein PurH 2.88639037212e-06 5.26748770462e-05 20100223043.8 +UniRef50_UPI000368145E hypothetical protein 0.000125679784114 6.8875781509e-05 -22932472915.1 +UniRef50_F9PTR8 Rhodanese like protein 3.7447654394e-05 7.38633159141e-05 14701449426.1 +UniRef50_Q2NEX9 PurB 0.00374381580472 0.00113393308348 -1.05364168143e+12 +UniRef50_Q6GFZ2 Probable tRNA sulfurtransferase 0.0164988607614 0.00544887921562 -4.46101314856e+12 +UniRef50_UPI00037CBB5C hypothetical protein 7.90616379317e-05 8.45088659599e-05 2199112799.99 +UniRef50_J9NS14 0.000368984340064 0.000296852719885 -29120420220.8 +UniRef50_UPI000388FD53 PREDICTED 1.61452306446e-05 0.000143775058047 51525727516.3 +UniRef50_H5Y8S2 Transposase 5.95434908784e-05 7.71025517105e-06 -20925713320.4 +UniRef50_Q5ZKW0 Mitochondrial tRNA specific 2 thiouridylase 1 3.15061528369e-06 6.05214431731e-06 1171382876.64 +UniRef50_B4RQI7 Anhydro N acetylmuramic acid kinase 0.000226886514461 0.00462326549008 1.77487214209e+12 +UniRef50_Q9I5U5 Ribosomal RNA small subunit methyltransferase A 0.000351521530011 0.00061636658951 1.06921200534e+11 +UniRef50_B9KU25 0.00425644010162 0.00151444464203 -1.1069772151e+12 +UniRef50_Q9RSF6 Sun protein, putative 0.000111902961123 0.00413688226887 1.62493353859e+12 +UniRef50_B9KJR9 0.00720315401988 0.00233964945029 -1.96345647666e+12 +UniRef50_S5CP44 Kef type K+ transport systems, predicted NAD binding component 0.000331206182048 0.00537861063859 2.03769911772e+12 +UniRef50_UPI0003B6E634 histidine kinase 2.08743145831e-06 2.55577989042e-05 9475275351.71 +UniRef50_M9VMF8 DNase 0.00205665848165 0.00500696673867 1.19107564771e+12 +UniRef50_A0A022GYN4 tRNA specific adenosine deaminase 1.15806186047e-05 5.01982929259e-05 15590429015.6 +UniRef50_U5MYV0 ATP dependent Clp protease ATP binding subunit ClpA 0.00040258132726 0.00153107697118 4.55587539649e+11 +UniRef50_P76261 Putative cyclic di GMP phosphodiesterase AdrB 0.00235056994584 0.00058878245484 -7.1125522968e+11 +UniRef50_U5UNN1 GNAT family acetyltransferase 0.0495902076576 0.00168249775809 -1.93409303801e+13 +UniRef50_U5NRK2 0.0101216849031 0.000476317266442 -3.89395327689e+12 +UniRef50_Q1C1V1 NADH pyrophosphatase 0.00346126201676 0.00124016872509 -8.96682617727e+11 +UniRef50_U5RUZ1 DNA polymerase III, subunits gamma and tau 0.000443053973874 0.00223188865696 7.22174513033e+11 +UniRef50_UPI00037D5F1A hypothetical protein 6.38653174517e-05 2.9690216703e-05 -13796907547.9 +UniRef50_UPI00047224C9 hypothetical protein 5.45901062337e-05 3.58816180791e-05 -7552846246.98 +UniRef50_P36678 Putative type II secretion system protein M 0.000492373028943 0.000405469160461 -35084158136.6 +UniRef50_G7MCP1 Multi sensor signal transduction histidine kinase 0.000210002449553 0.00116028735321 3.83641676913e+11 +UniRef50_Q6GIN0 Prolipoprotein diacylglyceryl transferase 0.0105972029372 0.00507576790829 -2.2290710768e+12 +UniRef50_B8FQ92 Chorismate synthase 2.85402163636e-05 0.000190240792814 65280507002.1 +UniRef50_Q2WBD9 Phosphoheptose isomerase 9.1405626226e-06 1.01349043109e-05 401427941.511 +UniRef50_W8RXY9 Arsenate reductase related protein 0.000368841721434 0.000113798139364 -1.02964223818e+11 +UniRef50_A9M3Z6 Periplasmic protein 0.000161548925324 0.000786746897966 2.52400093597e+11 +UniRef50_UPI00036A03CE hypothetical protein 8.306192824e-06 9.18686727185e-06 355539081.688 +UniRef50_UPI0003486CF4 hypothetical protein 2.29960488726e-06 1.78314182361e-05 6270383645.69 +UniRef50_Q6A8Q7 1,4 alpha glucan branching enzyme GlgB 6.17119008952e-05 0.00453141931206 1.80447573136e+12 +UniRef50_G4B6N4 3.40841583254e-05 0.000661156802679 2.53156921572e+11 +UniRef50_UPI000477A19D ribose ABC transporter permease 0.000154420901092 4.89726624129e-05 -42570747950.1 +UniRef50_A1U1A4 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00371807032243 0.00602806619236 9.32573679528e+11 +UniRef50_Q167T4 Branched chain amino acid ABC transporter, permease protein, putative 0.00430897010205 0.00125570071271 -1.23264232031e+12 +UniRef50_V5ZX98 4.95644558563e-05 2.79599573674e-05 -8722001156.98 +UniRef50_C6M2N2 RND transporter, HAE1 family 0.000223229365711 0.00241051587766 8.83034405898e+11 +UniRef50_UPI0004796185 16S rRNA methyltransferase 1.40724902464e-05 1.34581645376e-05 -248010827.267 +UniRef50_UPI000472B33B ABC transporter 7.0927191316e-06 3.5710719737e-05 11553438026.8 +UniRef50_P56396 Tryptophan tRNA ligase 0.000129276023577 0.00311161665558 1.20400751057e+12 +UniRef50_Q5L8Z8 Malate dehydrogenase 2.00655358317e-05 0.00165653799243 6.60664012505e+11 +UniRef50_UPI000377FC08 LuxR family transcriptional regulator 1.56374866602e-05 0.000107442246713 37062708204.4 +UniRef50_A8LPC2 tRNA modification GTPase MnmE 0.0125165324807 0.00298818501522 -3.84671079779e+12 +UniRef50_O26480 UDP glucose 4 epimerase homolog 0.00209067147479 0.000387747082661 -6.87491474335e+11 +UniRef50_Q1J391 Allantoinase 9.23119800131e-06 0.0268731679347 1.08453009182e+13 +UniRef50_UPI00046FE227 multidrug ABC transporter ATP binding protein 7.258158976e-06 3.15866285051e-06 -1655016892.33 +UniRef50_V6EI61 Lactose permease 0.00118566426436 0.000854798692905 -1.33574491374e+11 +UniRef50_D7DKW7 Short chain dehydrogenase reductase SDR 0.0126894301501 0.00373978163359 -3.61308293065e+12 +UniRef50_I5C147 0.000238828691517 2.79726104894e-05 -85125187406.1 +UniRef50_Q7VW21 UPF0246 protein BP2452 5.14985772163e-06 2.00245918226e-05 6005112690.09 +UniRef50_M3Z864 7.19906160945e-05 0.00024574569857 70147059010.2 +UniRef50_UPI00035D274E hypothetical protein 3.96158641696e-06 3.11015111038e-06 -343734881.552 +UniRef50_O25722 DNA translocase FtsK 0.000226871427991 0.00403104154073 1.53579015693e+12 +UniRef50_Q1C3L9 Lipoprotein NlpI 0.00403851570185 0.00126833725072 -1.11835503463e+12 +UniRef50_UPI0004650975 hypothetical protein 0.00111458637407 5.61012122887e-05 -4.27323448884e+11 +UniRef50_UPI00037DD9E3 hypothetical protein, partial 2.41924525391e-05 1.73042036393e-05 -2780870609.17 +UniRef50_UPI0004630A02 hypothetical protein 8.81556363741e-05 9.54443822869e-05 2942556167.97 +UniRef50_UPI00037AA24F 30S ribosomal protein S19, partial 4.01454567108e-05 3.14358549628e-05 -3516173104.5 +UniRef50_A0A023Y3Z5 0.000152298661952 3.97361055833e-05 -45442885304.1 +UniRef50_UPI00036F824A MULTISPECIES 9.48243289863e-05 1.47712176666e-05 -32318423401.9 +UniRef50_UPI00034D7E89 hypothetical protein 0.000494244962007 0.0196344434232 7.72713299543e+12 +UniRef50_UPI000369A9BC hypothetical protein 0.000602001831384 1.6053349471e-05 -2.36554592545e+11 +UniRef50_K4A616 5.58349256945e-06 5.06604191774e-06 -208901177.929 +UniRef50_UPI0003B739B2 glutamyl tRNA synthetase 1.09299255498e-05 1.01322515281e-05 -322030791.121 +UniRef50_Q8CPM6 Divalent metal cation transporter MntH 0.0221096787854 0.00457056392758 -7.08075589724e+12 +UniRef50_A0A011R0M1 Dual specificity phosphatase, catalytic domain protein 7.71207796926e-06 2.04918086196e-05 5159334088.46 +UniRef50_P42590 Inner membrane transporter YgjI 0.00116527148351 0.000138754912385 -4.1441733654e+11 +UniRef50_A3DDS7 Indole 3 glycerol phosphate synthase 9.19758723774e-06 1.40020088611e-05 1939603966.23 +UniRef50_R5TME3 Xylulokinase 0.000272914524022 0.00236394809975 8.4417591439e+11 +UniRef50_A3PQ77 Tripartite ATP independent periplasmic transporter, DctQ component 0.0103874200994 0.000390286394531 -4.03596555528e+12 +UniRef50_P47650 Phosphate import ATP binding protein PstB 6.15621484022e-06 8.16942178227e-06 812756347.333 +UniRef50_X1GFV3 Marine sediment metagenome DNA, contig 5.36665218042e-05 0.000395379210763 1.37953605819e+11 +UniRef50_UPI00029A5C6F protein narU, partial 0.000125218775265 6.40898778506e-05 -24678486022.1 +UniRef50_Q732P6 Isoprenyl transferase 0.0120946865437 0.00458843631451 -3.03036532957e+12 +UniRef50_Q6F7N0 Ferrochelatase 0.000116628008914 0.00835371788803 3.32541426466e+12 +UniRef50_F4D5J0 0.000397899487961 0.00288484624104 1.00401092249e+12 +UniRef50_UPI00039E983D acetylglutamate kinase 2.47295414425e-05 1.78389434255e-05 -2781818976.61 +UniRef50_U2ZS91 9.10756380874e-05 4.66657809918e-05 -17928804279.7 +UniRef50_A5UKG8 Nicotinate nucleotide pyrophosphorylase [carboxylating] 0.00526829712196 0.00115936138889 -1.65882777775e+12 +UniRef50_H0Q5F2 Short chain dehydrogenase reductase SDR 0.000670152785609 0.00553696274512 1.96479090313e+12 +UniRef50_UPI0003629198 hypothetical protein 5.40451313235e-05 8.08216720438e-05 10810018073.9 +UniRef50_Q5HKK3 0.00117144561385 0.00220764947592 4.18328214769e+11 +UniRef50_UPI000475640B pilus assembly protein CpaF 2.01270551046e-05 1.09115462201e-05 -3720414023.68 +UniRef50_UPI0003C1219C 6.90528861822e-05 1.33914266773e-05 -22471214245.0 +UniRef50_I6STQ4 Oxidoreductase 0.00618896009767 0.00382245614644 -9.55386685381e+11 +UniRef50_Q6GHV6 Iron regulated surface determinant protein A 0.00867254853466 0.00279298823315 -2.37365064404e+12 +UniRef50_Q3JF19 Glycerol 3 phosphate dehydrogenase [NAD+] 0.00276109504078 0.00109084395363 -6.74300860168e+11 +UniRef50_UPI00037482BD hypothetical protein 6.63505100035e-06 9.67354623114e-06 1226677811.2 +UniRef50_UPI00037267AF hypothetical protein 1.30395726511e-05 0.000109901296729 39104266637.3 +UniRef50_UPI000370F5C3 hypothetical protein 0.00169473000577 0.000193865511885 -6.05917413858e+11 +UniRef50_D6M286 Tat pathway signal sequence 1.65769767111e-05 3.51908837227e-06 -5271629760.68 +UniRef50_M0J3W1 dGTPase 4.44787922733e-05 0.000143382782849 39928754683.9 +UniRef50_W5B0U3 0.000281390506213 0.000228454725321 -21370824341.2 +UniRef50_P37342 0.00667125602372 0.000617766556792 -2.44386798247e+12 +UniRef50_S6AVL7 1.47497606063e-05 0.000317675601259 1.2229487919e+11 +UniRef50_UPI000371A11E MULTISPECIES 4.33308300852e-05 2.74957425416e-05 -6392819159.73 +UniRef50_Q0FDE4 FoF1 ATP synthase, subunit I 3.82888192802e-05 5.96823002297e-05 8636810786.85 +UniRef50_L7WPL2 0.0245130820171 0.00404202220921 -8.2644180526e+12 +UniRef50_Q5HQZ3 Transferrin receptor 0.0237877892632 0.00253906836159 -8.5783693791e+12 +UniRef50_Q8DR58 UPF0398 protein spr0331 0.00632476987774 0.00326002910713 -1.23727345769e+12 +UniRef50_K1BXA7 Two component sensor 2.03203359071e-05 6.87794058176e-06 -5426859949.56 +UniRef50_B7VS71 Phosphomethylpyrimidine kinase 0.000152416953778 0.00710306438132 2.80606166053e+12 +UniRef50_P23530 Phosphoenolpyruvate protein phosphotransferase 0.0221800378512 0.0129521821897 -3.72539856907e+12 +UniRef50_UPI000472C798 pseudouridine synthase 8.75617696749e-06 2.17366360059e-05 5240370601.95 +UniRef50_M3BD66 0.00014900762718 5.35363960773e-05 -38542907559.9 +UniRef50_K9NR38 Peptidase M23B 0.000631013623811 0.000123219765733 -2.05002611837e+11 +UniRef50_Q6FA84 0.00103063238685 0.00209298925569 4.28886504535e+11 +UniRef50_Q3D4U8 0.000451929963161 0.000299504756839 -61535926259.8 +UniRef50_UPI00046FB65C hypothetical protein 0.000218411519558 8.79082342097e-05 -52685777750.4 +UniRef50_Q7UR11 Ferripyochelin binding protein 4.05860529477e-05 2.68459257558e-05 -5547057957.69 +UniRef50_UPI00047CB9DF 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 2.24727465012e-05 5.81587834312e-06 -6724582078.18 +UniRef50_Q5LUR8 Zinc import ATP binding protein ZnuC 1.89531359833e-05 8.59805111053e-06 -4180474834.33 +UniRef50_Q3ZAD5 Cysteine tRNA ligase 2.80851782866e-06 9.8902911096e-06 2858998776.65 +UniRef50_Q8DVX1 0.00237308217495 0.000597688758296 -7.16748108829e+11 +UniRef50_I0C0T2 Trp repressor binding protein 0.004925432984 0.00343340857958 -6.02348561263e+11 +UniRef50_I5C5U6 2.35491798924e-05 4.47973598977e-05 8578151012.63 +UniRef50_A4WUQ1 7.31285504014e-05 0.000288583099537 86981645410.8 +UniRef50_P37691 0.00191472851882 0.000701268525188 -4.89888690257e+11 +UniRef50_U5MLQ3 Processive diacylglycerol glucosyltransferase UgtP 0.000104374006137 0.00084737572678 2.9995891228e+11 +UniRef50_Q9P9A1 Nitrate reductase beta subunit 3.75088367833e-05 5.7001067285e-05 7869252650.1 +UniRef50_UPI000379A03B malyl CoA thiolesterase 0.000181792102623 0.000102123619372 -32163144330.7 +UniRef50_I0EPP7 Periplasmic dipeptide transport substrate binding protein 7.71954987484e-05 0.0038468247406 1.52184558349e+12 +UniRef50_Q8CU41 Ornithine carbamoyltransferase 1, catabolic 0.00918007512207 0.00291215003988 -2.53043827177e+12 +UniRef50_E4BBW7 0.000492373028943 0.000891918096963 1.61301246929e+11 +UniRef50_Q2NI05 MvhA 0.00248091175236 0.00104205943273 -5.80882338138e+11 +UniRef50_A0A058Z3Q5 4.91326820447e-06 3.6605424989e-06 -505740740.012 +UniRef50_D3QHG0 Phosphonate ABC transporter permease protein phnE1 0.0180733284964 0.00594815457642 -4.89508150412e+12 +UniRef50_G7M9K8 Methyl accepting chemotaxis sensory transducer 0.000177186764338 0.00112167501092 3.81301495319e+11 +UniRef50_UPI00047CAA92 polynucleotide phosphorylase polyadenylase 2.29777499373e-06 7.69070512246e-06 2177192071.66 +UniRef50_V6ZFX5 HD domain protein 9.82612533802e-06 4.71871036838e-05 15083085429.0 +UniRef50_C5B9D9 Phosphopantetheine adenylyltransferase 6.88279506994e-05 1.3664686544e-05 -22270086668.9 +UniRef50_P0AEV2 Regulator of RpoS 0.00213000696558 0.000572594360419 -6.28746580305e+11 +UniRef50_I3U2F8 DAACS family dicarboxylate amino acid 0.0114407456588 0.00371867171704 -3.11749601079e+12 +UniRef50_UPI0004673090 DNA mismatch repair protein Vsr 5.86686998499e-05 1.73235082443e-05 -16691561213.7 +UniRef50_I6TRJ5 Arsenate reductase 0.000322637597309 0.00884656194236 3.44121285841e+12 +UniRef50_A6DYW3 6.83398416337e-05 0.000117086547199 19679643226.1 +UniRef50_Q6A7D5 Conserved protein 0.000151225107133 0.00533161724659 2.09138787726e+12 +UniRef50_A5ULE4 Predicted transcriptional regulator 0.0023480850545 0.000476320701537 -7.55654238421e+11 +UniRef50_UPI0003820AE4 hypothetical protein 5.24925683015e-06 9.36139093951e-06 1660119001.51 +UniRef50_Q5ZUH9 Lipid A export ATP binding permease protein MsbA 2.84228847265e-06 1.31226486019e-05 4150307538.36 +UniRef50_A4VGV6 6.16382153773e-05 9.47568682882e-05 13370406591.7 +UniRef50_UPI000382EBAF hypothetical protein 4.51447282579e-06 6.3114295258e-06 725453470.932 +UniRef50_M4KI13 Fibrinogen binding family protein 0.00492951353366 0.00197905751414 -1.19113530125e+12 +UniRef50_Q07V02 RNA pyrophosphohydrolase 0.00180984491917 0.000363839883189 -5.83769977502e+11 +UniRef50_Q3JWW0 7.07167025995e-06 0.000178562985876 69233148549.3 +UniRef50_A4H7G2 1.20992946588e-05 4.73039387273e-05 14212546820.0 +UniRef50_Q2NES1 FrhB 0.00601520135248 0.000206997690564 -2.34484309299e+12 +UniRef50_Q1IIL2 Chorismate synthase 1.34969087571e-05 0.000137628670627 50113515534.9 +UniRef50_R6RW73 ABC type multidrug transport system ATPase component 0.00451688047017 0.00205885697092 -9.92334249987e+11 +UniRef50_A0A009VZS8 Penicillin binding protein 2 0.000502439376712 0.00365152270583 1.27132358356e+12 +UniRef50_UPI0003768F8C hypothetical protein 0.000142595853597 2.72833478731e-05 -46553073604.3 +UniRef50_O27054 Probable L aspartate dehydrogenase 0.00295361127864 0.000812545082389 -8.64374697263e+11 +UniRef50_B9KQJ4 Chemotactic signal response protein CheL 0.000336628781603 0.000156292400883 -72804009872.9 +UniRef50_E3J2U0 Transcriptional regulator 1.21461799588e-06 4.32245540975e-06 1254672101.43 +UniRef50_F9YZS9 Integral membrane protein 9.85603103999e-05 0.00547473889006 2.17042926574e+12 +UniRef50_K9F564 Putative extracellular nuclease 8.29399664806e-06 0.000391903296689 1.54867781842e+11 +UniRef50_L8GHN9 8.69029961134e-06 2.53118430987e-05 6710321075.14 +UniRef50_UPI00047883C6 hypothetical protein 7.89395715898e-05 9.38139482134e-05 6004968372.07 +UniRef50_UPI00047EF6F7 ABC transporter ATP binding protein 1.43136006603e-06 3.983383226e-05 15503549276.0 +UniRef50_UPI000463035D hypothetical protein 1.56201292732e-05 3.78053587313e-05 8956449375.61 +UniRef50_A0A024KYL9 ATP dependent Clp protease ATP binding subunit 0.000677387439752 0.000146123419104 -2.14477804478e+11 +UniRef50_D5AP52 0.000441034906072 4.56787198172e-05 -1.59610143957e+11 +UniRef50_UPI0004764AED hypothetical protein, partial 9.65298372967e-05 3.45941518806e-05 -25004196238.8 +UniRef50_Q9KUD9 Ribosomal RNA small subunit methyltransferase I 0.000934712335195 0.00762446709139 2.7007360876e+12 +UniRef50_F0XYP3 9.59058469323e-05 6.02197890836e-05 -14406899470.7 +UniRef50_N1UE46 0.000396284333773 7.71001954907e-05 -1.28858553454e+11 +UniRef50_A0A020CJ31 0.00184113194658 0.00081530611061 -4.1413847828e+11 +UniRef50_S4MU14 0.000696037155729 0.000122870912669 -2.31394245864e+11 +UniRef50_A5UP58 0.00148823998097 0.00037381861418 -4.49905581261e+11 +UniRef50_D4X8Q1 RepB plasmid partitioning protein 2.21690314668e-06 1.52736801638e-05 5271181106.47 +UniRef50_U5P983 Macrolide ABC transporter ATP binding protein 0.0170793751473 0.0135919331389 -1.40792313452e+12 +UniRef50_Q5GTU8 MFS transporter 0.000407451108489 0.000307277022654 -40441507725.9 +UniRef50_O67528 Nucleoside diphosphate kinase 6.31315290138e-05 2.12191187001e-05 -16920554366.8 +UniRef50_K9PAV6 Lysophospholipase 3.18644691057e-06 5.32239269999e-05 20200744741.0 +UniRef50_Q4L7V6 Holo [acyl carrier protein] synthase 0.000987010760655 0.000989888397308 1161737229.39 +UniRef50_F2EXR6 0.000309399622654 0.000179477512951 -52451150010.7 +UniRef50_UPI000395608F 3 hydroxyacyl CoA dehydrogenase 4.76993298832e-06 1.53966938412e-05 4290153761.34 +UniRef50_B8DYK8 Deoxycytidine triphosphate deaminase 0.003689859716 0.00125972786555 -9.81074049098e+11 +UniRef50_UPI000349DE0E hypothetical protein 9.99809887487e-05 8.20237210275e-05 -7249569339.5 +UniRef50_P35594 ATP dependent Clp protease ATP binding subunit ClpE 0.00492293723292 0.00772174082563 1.12991135556e+12 +UniRef50_UPI00037BD53F hypothetical protein 0.000265320614451 0.000233807340986 -12722295209.2 +UniRef50_A1TRG1 Glucose 1 phosphate adenylyltransferase 3.3949996336e-06 6.69859413834e-06 1333701641.23 +UniRef50_UPI00037AD344 hypothetical protein 1.58800428606e-05 6.15847179054e-05 18451538175.0 +UniRef50_UPI0003A602B5 AraC family transcriptional regulator 7.06959859571e-05 2.77248884182e-05 -17347959391.1 +UniRef50_A5WFS0 NADPH dependent FMN reductase 0.000210886027289 0.00693147625564 2.7131847461e+12 +UniRef50_Q7VGA7 Tryptophan synthase beta chain 8.6585679919e-06 6.08346550665e-06 -1039600473.36 +UniRef50_Q0W484 Homoserine O acetyltransferase 0.00285297943164 0.0004101825575 -9.86187074579e+11 +UniRef50_U6AE16 Methyl accepting chemotaxis protein 0.00029863052609 0.000126024198511 -69683292561.5 +UniRef50_UPI0003B4EF9E ATPase, partial 5.98981719684e-06 0.00142709522154 5.73717690656e+11 +UniRef50_UPI0003B31E86 TDP glucose 4,6 dehydratase 9.70979713799e-06 8.11743906323e-05 28851133362.8 +UniRef50_Q93XI4 N carbamoylputrescine amidase 1.50826140901e-05 4.74045564541e-05 13048764767.2 +UniRef50_R7BPT0 2 nitropropane dioxygenase NPD 0.00794218209023 0.00821712105957 1.10996235803e+11 +UniRef50_D3JTG7 AqsR 0.000466249049448 0.00810117225065 3.08231218737e+12 +UniRef50_A5UNG9 4 diphosphocytidyl 2 methyl D erithritol synthase, IspD 0.00244998893946 0.00163873099669 -3.27514786751e+11 +UniRef50_UPI000360F677 hypothetical protein 1.24175452782e-05 0.000131523179408 48084406088.8 +UniRef50_Q602K3 Porphobilinogen deaminase 0.00458430222764 0.00816445063979 1.44534984735e+12 +UniRef50_X2IT45 DNA polymerase III subunit gamma tau 6.53089946062e-05 0.00384528620669 1.52602318605e+12 +UniRef50_UPI0004720C75 hypothetical protein 7.13781306086e-05 5.80535079812e-05 -5379313666.19 +UniRef50_A0A031H7A6 0.000138295112599 5.29728216803e-05 -34445655866.1 +UniRef50_Q6L178 Probable transaldolase 0.000134972447664 0.000296027925133 65020072627.2 +UniRef50_A7FBR2 0.000144630647073 0.00565007774088 2.2226165512e+12 +UniRef50_L8E566 4.88916841405e-05 6.78369154289e-05 7648422355.26 +UniRef50_UPI000382D4E3 hypothetical protein 3.10393995049e-05 4.10198597573e-05 4029234277.91 +UniRef50_A0ALU1 50S ribosomal protein L17 0.00673562969454 0.00048412574623 -2.52380885851e+12 +UniRef50_P38448 KHG KDPG aldolase 0.0004102076266 0.00186531208394 5.87443525568e+11 +UniRef50_W0YS94 0.000178813354213 0.000140962379147 -15280903117.8 +UniRef50_A3QDX8 Dihydroorotate dehydrogenase 1.18287687058e-05 1.55927388319e-05 1519560929.01 +UniRef50_B4RKY8 Succinyl diaminopimelate desuccinylase 2.398422422e-06 0.00385531378795 1.55546921365e+12 +UniRef50_UPI0003F8D5B0 hypothetical protein 6.85723904955e-06 0.000945415471652 3.78907475906e+11 +UniRef50_B8ERB2 Ppx GppA phosphatase 6.87839942301e-06 2.91728963083e-05 9000561976.84 +UniRef50_R6FSB9 Peptidase M24 0.000761020158855 0.000810877416917 20127986897.0 +UniRef50_F0MEQ3 Ferripyoverdine receptor 0.000177354267045 0.0025266318187 9.48432176479e+11 +UniRef50_F6IIV1 Flagellum specific ATP synthase 0.00133422502872 0.000360016503715 -3.93299936427e+11 +UniRef50_W4TT30 0.000751234492661 0.00539494557245 1.87472314765e+12 +UniRef50_Q8CQA8 Surfactin synthetase 0.00962540073976 0.00397915581325 -2.27945836405e+12 +UniRef50_P0A5I3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 2 4.64482292556e-05 3.85192943849e-05 -3201008306.27 +UniRef50_W7NBP5 2.11383489586e-05 0.000318114942752 1.19893095227e+11 +UniRef50_Q3KF35 Glutamate tRNA ligase 0.00105423141434 0.00656662282771 2.22542005823e+12 +UniRef50_P56926 Glutamine tRNA ligase 1.93909041555e-06 0.0126773244597 5.11720861806e+12 +UniRef50_V4R1X6 2.82098885216e-05 4.43318414138e-05 6508630221.19 +UniRef50_Q9JU31 DNA translocase FtsK 1 4.70289853191e-05 0.00203440217694 8.02326945269e+11 +UniRef50_H6PB78 DNA polymerase III, gamma and tau subunits 0.00592492324569 0.00817703044934 9.09203314577e+11 +UniRef50_O04974 2 isopropylmalate synthase B 4.70187523157e-06 4.70913104871e-06 2929262.41831 +UniRef50_Q5HNB7 Phosphoenolpyruvate carboxykinase [ATP] 0.0118403635591 0.00299584449305 -3.57064088142e+12 +UniRef50_F8GU00 Oxygenase subunit protein 0.000142090083634 0.00543835290458 2.13816629327e+12 +UniRef50_H8GWF1 5` nucleotidase family protein 0.000138740161886 0.0273677064928 1.09926678448e+13 +UniRef50_H2GZD2 Ascorbate specific PTS system enzyme IIC 7.61572270731e-05 0.0066490887205 2.65357310284e+12 +UniRef50_UPI00028A25D3 peptide ABC transporter 5.92132773013e-05 3.83700498509e-05 -8414666696.89 +UniRef50_UPI0003EE1B84 PREDICTED 1.12147007457e-05 9.57835282258e-06 -660613736.811 +UniRef50_J7QTA8 Putative DNA transposase 2.51936735985e-05 4.3751403736e-05 7491983385.47 +UniRef50_W0YJI7 PAAR motif containing protein 8.83352547962e-05 0.000820648616609 2.95643890659e+11 +UniRef50_Q8CUS7 Adenine deaminase 8.63744683545e-06 4.78729018806e-06 -1554355485.29 +UniRef50_Q73E41 Calcium transporting ATPase 1 0.000107207093479 0.00229921075542 8.84938777235e+11 +UniRef50_UPI0002558955 Recombinase A 0.000132800858871 3.42008510535e-05 -39806033114.1 +UniRef50_F0Y1K3 Expressed protein 9.52885099739e-05 6.66095799403e-05 -11578035984.6 +UniRef50_UPI00035D9122 hypothetical protein 3.05103912668e-06 5.29293150975e-06 905079466.159 +UniRef50_G0BED7 Transcriptional regulator, LysR family 0.000129423767612 0.00436082382471 1.70826812817e+12 +UniRef50_A8Q1C8 9.01251171146e-05 2.74154003149e-05 -25316682206.8 +UniRef50_K8WCA6 Heme lyase subunit CcmF 0.00220513850352 0.000371523020117 -7.40253071641e+11 +UniRef50_Q88GW8 5 dehydro 4 deoxyglucarate dehydratase 0.00770050255588 0.00231704651166 -2.17336726749e+12 +UniRef50_B4SMK1 L lactate dehydrogenase [cytochrome] 0.00277210987986 0.00262865136642 -57915962309.7 +UniRef50_UPI00041BD20B hypothetical protein 1.32891695578e-06 4.5827002794e-05 17964423305.8 +UniRef50_W5WU40 Anion transporter 0.0210276947909 0.00373099895869 -6.98288836179e+12 +UniRef50_A7HYE5 Ribonuclease D 0.00924728637223 0.00125879626387 -3.22505148654e+12 +UniRef50_UPI0003C1900C PREDICTED 3.13755984393e-06 3.39190520098e-06 102682341.81 +UniRef50_Q99W51 tRNA specific adenosine deaminase 0.0202522098981 3.95425598226e-05 -8.16010184179e+12 +UniRef50_UPI00029AF092 multidrug transport protein, mfs family 3.88513290337e-05 0.000633024066718 2.39874825522e+11 +UniRef50_Q9RST5 0.000296454965064 0.0417999624277 1.6755475268e+13 +UniRef50_A7MS74 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1 4.31431904861e-05 1.83229040418e-05 -10020254216.7 +UniRef50_I7DGD4 Signal transduction histidine kinase 0.00347921956898 0.00165245819299 -7.3748598437e+11 +UniRef50_Q5HKI9 Amino acid ABC transporter, amino acid binding protein 0.0230334074624 0.00685984263755 -6.52946659173e+12 +UniRef50_UPI00036BE230 macrolide ABC transporter ATP binding protein 6.69141287844e-06 0.000286127260701 1.1281168083e+11 +UniRef50_A0A010IHG0 Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein 0.000133891072498 0.00906966592504 3.60748196226e+12 +UniRef50_A4IMP7 Large conductance mechanosensitive channel 0.00367620778118 0.00414035375839 1.87381426711e+11 +UniRef50_UPI00046537F1 transcriptional repressor NemR 9.39571494456e-05 1.25056543719e-05 -32882968083.5 +UniRef50_V5VGM0 Flavoprotein 0.000183607815991 0.0150071067903 5.98442844071e+12 +UniRef50_A5UKL2 0.00290499744237 0.0022961427241 -2.45802121253e+11 +UniRef50_G8RFW9 0.00688792732076 0.00596578305292 -3.7228095691e+11 +UniRef50_Q5HNR9 D tyrosyl tRNA deacylase 0.0139391373688 0.00252205486821 -4.60921630885e+12 +UniRef50_M1MJA7 rRNA ) methyltransferase 0.000101383882411 0.00152348984033 5.74121626415e+11 +UniRef50_UPI0003DF781B PREDICTED 1.11775366575e-05 1.67425559888e-05 2246666594.51 +UniRef50_F9Z1V2 RlpA like protein 0.000111682245224 0.00578194086106 2.28915298511e+12 +UniRef50_A4WWS4 RecB family exonuclease like protein 0.00016707953513 6.76297798135e-05 -40149086607.0 +UniRef50_Q98DE8 Glutathione synthetase 4.31723771781e-06 0.000133553936137 52174441064.4 +UniRef50_A5ISW4 0.00215950377238 9.00158792352e-05 -8.35477657933e+11 +UniRef50_O68575 Pyruvate formate lyase activating enzyme 0.00704961433762 0.00272038973301 -1.74776109844e+12 +UniRef50_Q31RQ5 3 phosphoshikimate 1 carboxyvinyltransferase 4.52737935863e-06 6.45684138652e-06 778947497.821 +UniRef50_UPI00040D856B hypothetical protein 1.21493199249e-05 5.18917884856e-06 -2809894363.05 +UniRef50_UPI000372D278 hypothetical protein 2.50165427223e-05 5.26118362912e-06 -7975480891.44 +UniRef50_UPI0004771B3E hypothetical protein 0.000184640417686 6.73823514703e-05 -47338520249.7 +UniRef50_F0KEU3 0.000288289456304 0.00517607074455 1.97325728589e+12 +UniRef50_X0VX75 Marine sediment metagenome DNA, contig 2.16090317724e-05 1.95148313822e-05 -845454396.252 +UniRef50_B5H827 Cobalamin synthesis protein 5.05351778975e-06 5.60114698122e-06 221084624.762 +UniRef50_P76176 0.00525499730588 0.00155430262312 -1.49401585606e+12 +UniRef50_Q5HLI8 Glutaredoxin, putative 0.0087297678033 0.00182389667053 -2.78798492087e+12 +UniRef50_B9JSI7 Cation efflux system protein 0.00388056037886 0.00131421248571 -1.03606613709e+12 +UniRef50_Q5NPR4 UvrABC system protein C 0.00669941446558 0.00120527037857 -2.21805338866e+12 +UniRef50_UPI00035DA52C hypothetical protein 6.45038736489e-06 3.13980733543e-05 10071686976.5 +UniRef50_A5UP28 0.00303238272507 0.000100405171648 -1.18367531773e+12 +UniRef50_V0RK41 0.000595032319047 9.14854355937e-05 -2.03288056065e+11 +UniRef50_R5A601 Recombination inhibitory protein MutS2 0.000386331609746 7.65069184465e-05 -1.25080029854e+11 +UniRef50_S5EBY8 0.000176120990128 0.000365008306628 76256127579.1 +UniRef50_UPI0003C16983 1.19964392659e-05 3.94468704414e-05 11082075920.2 +UniRef50_Q71ZJ9 Ribosomal protein L11 methyltransferase 6.66235456645e-05 0.00120069374481 4.57838056003e+11 +UniRef50_UPI000378771A hypothetical protein 1.7979876806e-05 1.67992073956e-05 -476650729.421 +UniRef50_UPI00037134C7 hypothetical protein 3.06261081886e-05 1.11955556385e-05 -7844352504.17 +UniRef50_UPI000359481D 8.27968252772e-05 8.0650685532e-05 -866422951.233 +UniRef50_UPI0002F538D8 hypothetical protein 1.71774714716e-05 2.33352722666e-05 2485979745.65 +UniRef50_U6JB04 Nucleoside diphosphate kinase 1.17967957142e-05 2.00469007731e-05 3330668652.45 +UniRef50_A4WQY8 Cytochrome c type biogenesis protein CcmE 0.0149494223252 0.000391147953907 -5.87735401381e+12 +UniRef50_A0A037VGU7 3.37989937905e-05 3.95544668504e-05 2323555101.88 +UniRef50_I2DHK5 0.000287337202072 0.00152710815726 5.00510748311e+11 +UniRef50_Q6A7A2 DNA ligase 0.000175600789695 0.00709209616305 2.79227405716e+12 +UniRef50_Q9RX88 50S ribosomal protein L25 0.000616239474805 0.0429377561976 1.70857156444e+13 +UniRef50_O26759 Putative ammonium transporter MTH_663 0.00480368899843 0.00123159635083 -1.44209763634e+12 +UniRef50_H5UZW1 Glutathione regulated potassium efflux system protein KefC 4.04339727665e-05 0.000147829676633 43356963544.2 +UniRef50_UPI0001DD0CDF flagellar hook capping protein 1.51730140987e-05 2.06417453818e-05 2207793927.87 +UniRef50_A5UMU8 Predicted glycosyltransferase, GT2 family 0.00296254886061 0.000688358025688 -9.18118747517e+11 +UniRef50_UPI00047A6BB5 hypothetical protein 1.23789306359e-05 7.21040565962e-06 -2086596957.86 +UniRef50_Q2G1X0 Alpha hemolysin 0.00648580380612 0.00114264692675 -2.15709800011e+12 +UniRef50_N0DZB3 Secreted protein 1.19498070023e-05 1.50350936205e-05 1245568068.49 +UniRef50_P78029 Thymidylate synthase 3.8548459764e-05 0.00852720452937 3.42697462283e+12 +UniRef50_Q5HGH0 Phosphatidate cytidylyltransferase 0.0184719120561 0.00504977001717 -5.41868344931e+12 +UniRef50_P76177 Protein YdgH 0.00235769784607 0.0013608850701 -4.02425549927e+11 +UniRef50_UPI0003298C8F PREDICTED 1.96475787207e-05 2.78264532256e-05 3301912003.7 +UniRef50_G2LAK2 Adhesive protein CupB5 0.000482258208054 0.000256391175579 -91185292710.3 +UniRef50_V5VBD8 3 beta hydroxysteroid dehydrogenase isomerase 0.000111462398283 0.00764059230108 3.03960213457e+12 +UniRef50_P54453 0.00686910554002 0.00574858231545 -4.52368976125e+11 +UniRef50_F8A5M8 Alpha amylase catalytic region 0.00028025620662 0.00471421802667 1.79004479758e+12 +UniRef50_X7E7E5 5.26488520307e-06 0.000134729805773 52266577147.3 +UniRef50_R7PTU8 ATP grasp domain protein 0.000976597802733 0.00233664674245 5.49068446642e+11 +UniRef50_R9SNU8 Radical SAM domain containing protein 0.00201507769668 0.000499830812745 -6.11723761213e+11 +UniRef50_J7QY26 Escherichia coli IMT2125 genomic chromosome, IMT2125 8.19714139912e-05 0.000176699944005 38243070016.4 +UniRef50_A5UKF9 ATP utilizing enzyme, PP loop superfamily 0.00221254987031 0.000964668235747 -5.03785129102e+11 +UniRef50_D4Z726 3 oxoadipate CoA transferase alpha subunit LinG 0.000346131478079 0.0069862639622 2.68070296743e+12 +UniRef50_R7PXC4 Probable ribosomal RNA small subunit methyltransferase A 0.0022628322228 0.00086853452686 -5.62895089808e+11 +UniRef50_A1WY69 DNA polymerase IV 3.71722698113e-06 9.40816423289e-06 2297501204.19 +UniRef50_L7UII0 1.09586682955e-05 3.94038589455e-05 11483672527.1 +UniRef50_F6CGX7 Quaternary amine transporting ATPase 0.00167128534877 0.000842962997786 -3.34403897751e+11 +UniRef50_UPI00037ED53F hypothetical protein 7.07624706278e-05 5.96541915487e-05 -4484548578.15 +UniRef50_Q9ZJN2 Probable nicotinate nucleotide pyrophosphorylase [carboxylating] 0.00013827325599 0.00193479666262 7.25278545078e+11 +UniRef50_D9SQ35 Integrase family protein 0.000668939685117 0.000317853276605 -1.41737891431e+11 +UniRef50_UPI0003C17A16 PREDICTED 6.41208210667e-05 3.29794479577e-05 -12572154471.7 +UniRef50_UPI000476CF1F pyridine nucleotide disulfide oxidoreductase 0.000154577500539 1.23689917825e-05 -57411320079.8 +UniRef50_V8HJS7 tRNA ) methyltransferase 0.00196011383086 0.000241074861385 -6.93997126959e+11 +UniRef50_S2KIU7 Membrane protein 0.00013207073705 1.32938103015e-05 -47951702885.4 +UniRef50_J1SZC4 0.000145270202608 6.22955009409e-05 -33497905277.1 +UniRef50_C1DKJ3 Phospholipid glycerol acyltransferase 0.00133185126148 0.000717368514652 -2.48074225446e+11 +UniRef50_S5QXV6 Maltose maltodextrin binding protein 0.00455381029461 0.00149662323974 -1.23422392995e+12 +UniRef50_F0Y553 Expressed protein 0.000180238616139 0.000195964807575 6348856464.78 +UniRef50_B9KWV4 TRAP T family transporter, large inner membrane subunit DctM 0.0063494666167 0.00121023550967 -2.07477066337e+12 +UniRef50_B0U620 Uracil DNA glycosylase 0.00422517521247 0.0070304080696 1.1325069285e+12 +UniRef50_P26170 Bacteriochlorophyll synthase 33 kDa chain 0.00204032909728 0.000303927998483 -7.01006431623e+11 +UniRef50_D3QCC1 Preprotein translocase subunit YajC 0.00569370490703 0.00518537313347 -2.05219774919e+11 +UniRef50_Q6FFG0 0.000285604591901 0.00521362805372 1.98950354519e+12 +UniRef50_UPI00034A058C hypothetical protein 9.53117149662e-06 1.4765715686e-05 2113249724.33 +UniRef50_T0T503 Purine nucleoside phosphorylase 0.00411549997476 0.00173154365099 -9.6243242234e+11 +UniRef50_B1JPZ9 4 alpha L fucosyltransferase 0.00371269019079 0.000887072848379 -1.14073639535e+12 +UniRef50_Q3B1T5 0.000230385735401 0.000129744782966 -40629987501.4 +UniRef50_M9VFM2 0.000215524649217 0.00531896826566 2.06032281425e+12 +UniRef50_Q82TC0 Shikimate kinase 1.09338540238e-05 2.53385884619e-05 5815368058.63 +UniRef50_A0A037ZNE7 3.70585659355e-06 2.04860647923e-06 -669052207.897 +UniRef50_W0Z1T3 3.52420304268e-05 0.000324823701201 1.16907674058e+11 +UniRef50_B9L1J9 Glucose 1 phosphate adenylyltransferase 7.55557345605e-06 1.89216434114e-05 4588621918.32 +UniRef50_A6UGW8 Replication protein C 6.71343246363e-05 2.68288280527e-05 -16271823574.9 +UniRef50_X0VZY3 Marine sediment metagenome DNA, contig 3.34146686086e-05 4.45341773945e-05 4489082148.58 +UniRef50_Q9LM59 Serine hydroxymethyltransferase 6 3.44136896306e-06 3.23871969501e-06 -81811996.2979 +UniRef50_S4VW07 9.36517494721e-06 2.90803191283e-05 7959245637.93 +UniRef50_Z0L1U0 0.000117466241311 6.5680157546e-05 -20906677502.6 +UniRef50_F9EXE3 ABC superfamily ATP binding cassette transporter, ABC protein 7.65691660987e-05 0.00335121404494 1.322014322e+12 +UniRef50_V5CIF7 0.000163649995166 0.00601329423573 2.36157316312e+12 +UniRef50_UPI0004721200 hypothetical protein, partial 0.00285905847589 0.0015243830532 -5.38824846449e+11 +UniRef50_C0Y0T7 Outer membrane efflux protein OprC 0.000185333083145 0.00710912580023 2.79522008438e+12 +UniRef50_R5IJ86 7.86499230762e-06 7.00435779071e-05 25102258023.6 +UniRef50_UPI0003777D9D hypothetical protein 8.63280112709e-05 4.39392337897e-05 -17112869638.0 +UniRef50_B5Z6I2 Dihydroorotate dehydrogenase 0.000124001033475 0.00238168731617 9.11455657248e+11 +UniRef50_UPI00038229EA hypothetical protein 3.20161328594e-06 5.51067962041e-06 932198414.656 +UniRef50_A3NUG3 Chorismate synthase 7.72970542494e-06 1.69391159645e-05 3717952047.0 +UniRef50_A7X623 Oxygen regulatory protein NreC 0.0191920643873 0.00745583850442 -4.73805840861e+12 +UniRef50_F0K7S4 RNA polymerase factor sigma 54 0.000175244481727 0.00111433118879 3.79120827531e+11 +UniRef50_UPI000360F77D MULTISPECIES 5.047558275e-06 9.4472002404e-06 1776189451.11 +UniRef50_UPI0003710793 hypothetical protein 8.16869670835e-06 2.98703780256e-05 8761235057.37 +UniRef50_M4UM17 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic component 1.1490588321e-05 3.47515069336e-05 9390718287.48 +UniRef50_J7LCE3 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 4.91334432829e-06 2.38654599701e-05 7651201653.21 +UniRef50_I6U2S8 Bacitracin synthetase 0.00472041947654 0.00235910958567 -9.53289779475e+11 +UniRef50_Q5HRM1 Putative TrmH family tRNA rRNA methyltransferase 0.00721007724781 0.00264665943441 -1.8423077707e+12 +UniRef50_B9E7Z8 6.95629033494e-06 0.000287531179674 1.13271525867e+11 +UniRef50_P57000 Glutamine tRNA ligase 0.000248509410305 0.0012208501096 3.92545872268e+11 +UniRef50_I9WK52 Putative transcriptional regulator 8.51456544092e-06 1.27067839189e-05 1692450043.87 +UniRef50_UPI00029AF772 multidrug ABC transporter ATPase 4.86783439853e-06 9.5230203864e-05 36480397424.2 +UniRef50_UPI00037E28CC hypothetical protein 3.89083575445e-06 1.95965088421e-05 6340572955.79 +UniRef50_A4WNG7 0.00139834225467 0.000336863161818 -4.28532135597e+11 +UniRef50_D4LM41 Nicotinate phosphoribosyltransferase 0.000791401467116 0.00180016746281 4.07251211411e+11 +UniRef50_UPI00036CD6B7 hypothetical protein 9.0346964645e-05 0.000226747481763 55066562583.1 +UniRef50_V9VSG3 Membrane protein 3.6845904938e-06 4.30672761399e-05 15899273475.2 +UniRef50_UPI0003C84C0F PREDICTED 2.52184894783e-06 7.09465849191e-06 1846099327.63 +UniRef50_U4V017 Putative ATPase 3.86884472306e-06 6.64978452407e-06 1122699523.64 +UniRef50_P29848 Cysteine synthase B 0.00351775511621 0.00408884432719 2.30555722525e+11 +UniRef50_W1JGD7 Putative virulence factor 0.000106762749124 0.000137088518217 12242885121.9 +UniRef50_A0A010CAY1 Transposase DDE domain protein 5.80194012131e-06 4.01875688407e-05 13881900273.1 +UniRef50_M4XIX4 Segregation and condensation protein B 0.000115793248112 0.000177901629643 25073915779.6 +UniRef50_Q46899 CRISPR system Cascade subunit CasC 0.00255589136 0.000164827928474 -9.65301648957e+11 +UniRef50_D8JDE7 Patatin like phospholipase family protein 0.0001909709893 0.00653380607089 2.56068035778e+12 +UniRef50_UPI0002F963E4 hypothetical protein 3.87494576108e-06 0.000227321488507 90208111304.0 +UniRef50_Q8ECQ4 50S ribosomal protein L3 glutamine methyltransferase 0.00341275751966 0.000927533107508 -1.00331559232e+12 +UniRef50_O30992 Cell division protein FtsZ 0.00143288102719 0.000600376854765 -3.36092150383e+11 +UniRef50_Q8CSE1 ABC transporter ATP binding protein 0.0199279445589 0.00439782279374 -6.26970073264e+12 +UniRef50_UPI000375F7D3 hypothetical protein 9.33658091582e-06 3.03375255766e-05 8478339070.14 +UniRef50_A3V315 3.385428348e-06 1.48212097408e-06 -768388543.059 +UniRef50_UPI0002F27B8E hypothetical protein 0.000379342389799 7.87116615847e-05 -1.21368314134e+11 +UniRef50_A4WQP1 Transposase, IS4 family 0.00258542675962 0.000287883786207 -9.27546292388e+11 +UniRef50_S4YCA7 3.98388373067e-05 5.84933959813e-06 -13721977323.0 +UniRef50_I0JRX2 Oxidoreductase domain protein 0.0148029266812 0.00220034071325 -5.0878186064e+12 +UniRef50_A0A023RY49 Amino acid transporter 0.000568639067231 0.0136865253765 5.29585167763e+12 +UniRef50_UPI000375F92B hypothetical protein 3.1333447312e-05 0.000145241268137 45985985073.2 +UniRef50_K9NRT8 GntR family transcriptional regulator 0.00104598797416 0.000839023511855 -83554093172.1 +UniRef50_U5L6I9 Peptide ABC transporter permease 0.00629083227261 0.000273441393692 -2.42929453951e+12 +UniRef50_K1CTK9 Exoribonuclease RNase R 0.000522684215462 0.000211953477904 -1.25445811847e+11 +UniRef50_P0A1U3 0.0022620912671 0.000679857449786 -6.3876720824e+11 +UniRef50_P0A1U5 0.00488689229256 0.00121363029532 -1.48294094428e+12 +UniRef50_F4D676 P type DNA transfer ATPase VirB11 0.000134336650837 0.00169894981947 6.31653536139e+11 +UniRef50_G6KV35 Leucyl tRNA synthetase 0.00709242505753 0.00180765180825 -2.13352781219e+12 +UniRef50_UPI00036AAC2D hypothetical protein 0.000725934593951 0.0016196406101 3.60800085725e+11 +UniRef50_UPI000363377B preprotein translocase subunit TatA 0.000167500209846 9.72262109357e-05 -28370475719.0 +UniRef50_B4U203 DNA polymerase III subunit delta 0.00616056940915 0.00569712387738 -1.87098648292e+11 +UniRef50_U6LS15 2.09773158479e-05 2.58965322209e-05 1985948015.35 +UniRef50_P26281 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000710753886239 0.00582121212928 2.06315470509e+12 +UniRef50_G2JD06 Nitrate nitrite transporter 0.000391686871608 0.00496913304419 1.84797119145e+12 +UniRef50_W5XIV0 GTPase Obg 6.00124661948e-06 0.000180507408786 70450279098.2 +UniRef50_D9SXB9 RNA methyltransferase, TrmH family, group 3 0.000813453900834 0.000562217853028 -1.01427075512e+11 +UniRef50_UPI00036CFE43 30S ribosomal protein S4 1.15099667491e-05 3.60512278245e-05 9907608251.28 +UniRef50_UPI0003B544A3 sugar ABC transporter permease, partial 0.000116524994308 7.76142098383e-05 -15708761179.4 +UniRef50_UPI0003820942 hypothetical protein 9.33889904595e-06 4.24841504538e-05 13381144731.3 +UniRef50_A4X3E5 Peptide methionine sulfoxide reductase MsrA 8.95770439919e-05 7.41605483327e-05 -6223828479.29 +UniRef50_P0CD78 Phosphoglycerate kinase 1.80786667541e-05 1.75598438896e-05 -209455157.071 +UniRef50_A2SKF9 Transaldolase 0.000398596981438 0.000426021204917 11071495551.5 +UniRef50_P28822 Dihydropteroate synthase 0.000162486569322 0.00690670643479 2.72272432057e+12 +UniRef50_A3M7P6 Ribosomal protein alanine acetyltransferase 0.00115556935363 0.00409314126729 1.18593382961e+12 +UniRef50_P75793 Putative formate acetyltransferase 3 0.00115775014527 8.78918765406e-05 -4.31914911724e+11 +UniRef50_B3ENQ2 Nucleoside diphosphate kinase 5.80555086048e-05 1.8373728785e-05 -16020021463.5 +UniRef50_E6MZF0 Type III restriction enzyme, res subunit 4.89817459631e-05 0.00317073546965 1.26029028648e+12 +UniRef50_F0Y8H7 7.63187752143e-05 5.73782623539e-05 -7646517467.97 +UniRef50_Q4KCW6 Putrescine binding periplasmic protein 0.00044131905324 0.000333087785229 -43694291043.1 +UniRef50_UPI000311B789 hypothetical protein 0.000125671681966 9.28300095699e-06 -46987538773.1 +UniRef50_B9KTG2 MCPG protein 0.00200485808078 0.00104179859644 -3.88798931897e+11 +UniRef50_A6V3S1 Aminoglycoside response regulator 0.00113790648718 0.000840350550291 -1.20126983144e+11 +UniRef50_S4ZTI3 Transcriptional regulator, ArsR family 0.00991548164412 0.00100232567726 -3.59835044054e+12 +UniRef50_U3T6X9 0.000313123746508 0.0065888410654 2.53358409335e+12 +UniRef50_Q2FIS2 Lipoteichoic acid synthase 0.0180724999167 0.00516016299855 -5.21286886607e+12 +UniRef50_UPI000429916D auxin binding protein 0.000156945894524 5.92073176546e-05 -39458262869.4 +UniRef50_I7E3Y1 Dimethylglycine dehydrogenase DmgdH 0.00841124977796 0.00176503145128 -2.68315989675e+12 +UniRef50_Q5HG72 Nuclease SbcCD subunit C 0.0086932971381 0.00180414432606 -2.78123552963e+12 +UniRef50_D3QDA5 Transcriptional regulator in cluster with Zn dependent hydrolase 0.025965632517 0.00306885720355 -9.24370916905e+12 +UniRef50_J3C3Q8 ABC type transport system, involved in lipoprotein release, permease component 1.24131949863e-05 4.17031886517e-05 11824729871.4 +UniRef50_Q2SFK9 Fatty acid desaturase 0.0003130537226 0.00475427407142 1.79297515472e+12 +UniRef50_T1XM99 IS1272 transposase, putative 0.0228006144587 0.00168799914101 -8.52342188468e+12 +UniRef50_Q8DWA7 0.00536707854546 0.00125727906036 -1.65917648505e+12 +UniRef50_O86428 Branched chain amino acid aminotransferase 0.00150456749969 0.0119892711355 4.23280351955e+12 +UniRef50_T0JJ14 4.95164365017e-05 0.000109893909305 24375126685.6 +UniRef50_UPI0003C7D7D4 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase, partial 0.00332468007405 0.000248367509973 -1.24194513272e+12 +UniRef50_J9NXA3 3.23522183442e-05 1.5131295134e-05 -6952298024.45 +UniRef50_Q28KF2 Beta lactamase like protein 0.000827968992086 0.000710101187567 -47584679084.9 +UniRef50_U3TA62 Protein MurJ homolog 7.67768112925e-05 0.0090091469018 3.60610741805e+12 +UniRef50_UPI0003B2ED70 hypothetical protein 0.000302872276979 0.0001055617237 -79656691631.5 +UniRef50_UPI00037CE74D hypothetical protein 0.000167380120109 0.000495960199955 1.32651810365e+11 +UniRef50_A1VKF6 Non canonical purine NTP pyrophosphatase 0.000100766131415 1.84583176897e-05 -33228674431.4 +UniRef50_M9S4Z2 Two component response regulator 0.00350680113038 0.000854724191782 -1.07067600476e+12 +UniRef50_X0TYQ9 Marine sediment metagenome DNA, contig 6.20870052873e-05 0.000464887789744 1.62615619607e+11 +UniRef50_Q1D759 50S ribosomal protein L18 0.00209067900516 0.00209383972068 1276019641.77 +UniRef50_Q8NW76 0.0163248401662 0.0043390240362 -4.83882105418e+12 +UniRef50_Q2YKR5 sn glycerol 3 phosphate binding periplasmic protein UgpB 0.0113020420264 0.00512885430337 -2.49219163732e+12 +UniRef50_I9IAK6 3.03430917226e-05 9.66231899287e-05 26758088994.1 +UniRef50_D7GF04 Methyltransferase 0.000173689872173 0.00852799974273 3.37273741366e+12 +UniRef50_E2BF63 6.72498732409e-06 4.43825240331e-05 15202809679.4 +UniRef50_UPI000288A745 acetyltransferase, putative 0.000139910219213 6.70255690994e-05 -29424427646.1 +UniRef50_G4BY47 6.47740175785e-05 0.000138814252332 29890951345.8 +UniRef50_Q2FVV8 Transcriptional regulator, putative 0.026366630511 0.00277394652152 -9.52465604135e+12 +UniRef50_A6LU14 0.000130768818311 0.00266526098055 1.02320558761e+12 +UniRef50_UPI00034519AC hypothetical protein 4.36631388227e-06 8.24783063907e-05 31534769917.6 +UniRef50_Q0BYA7 DNA directed RNA polymerase subunit beta 1.15219613476e-05 4.63090441765e-06 -2782004245.4 +UniRef50_A4WZ35 0.00277714744825 0.0126064353227 3.96820413384e+12 +UniRef50_L7WUA4 0.0184286427331 0.0014207531913 -6.8662937183e+12 +UniRef50_A3ZLI5 ISxac3 transposase 0.000124124491925 0.000203265995497 31950396167.5 +UniRef50_A5EBB8 0.000360331763738 8.08771114885e-05 -1.12819272408e+11 +UniRef50_UPI0003B3E24D malto oligosyltrehalose synthase 5.0609168511e-06 3.16133170435e-06 -766885834.274 +UniRef50_X5WY92 0.00012126006511 5.57941274668e-05 -26429402384.0 +UniRef50_Q6GH07 Protein msa 0.00157833778173 0.000456675317307 -4.52828901233e+11 +UniRef50_B9JUA7 0.000126336048397 2.67411298706e-05 -40207690776.2 +UniRef50_Q09DS6 2.12191796861e-05 2.18025664112e-05 235520379.883 +UniRef50_A6TFR2 Glycerol kinase 2.14436358673e-05 0.00012704193748 42631330198.0 +UniRef50_I0EP78 Flagellar hook protein FlgE 6.31599535162e-05 0.00536453959754 2.14023201753e+12 +UniRef50_UPI000477B830 hypothetical protein 5.75087152162e-06 0.000103431977904 39435061328.5 +UniRef50_B7V0M2 Carbonic anhydrase 0.00209662629996 0.00114413722499 -3.84531527921e+11 +UniRef50_M4WR94 0.00371033858129 0.000449720870858 -1.31635138198e+12 +UniRef50_P0CL53 S glutathione dehydrogenase 0.0130080083911 0.00351594955543 -3.83206063262e+12 +UniRef50_M4Z4L3 0.000417673142503 7.79680827666e-05 -1.37143101265e+11 +UniRef50_Q87TS4 Ribosomal RNA small subunit methyltransferase G 7.79932963265e-05 5.37886474976e-05 -9771713756.67 +UniRef50_A6QFI0 UPF0344 protein NWMN_0840 0.0289202551681 0.000937519911225 -1.129697361e+13 +UniRef50_A8ZR93 Lytic transglycosylase catalytic 2.97601723133e-05 8.84723989154e-05 23702846359.3 +UniRef50_A3PHM8 DHC, diheme cytochrome c 0.00913202011268 0.00047889195437 -3.49337402333e+12 +UniRef50_UPI0003B2EC71 phosphoadenosine phosphosulfate reductase 6.73205937687e-06 1.25100918125e-05 2332662598.7 +UniRef50_P13669 Mannosyl D glycerate transport metabolism system repressor MngR 0.0054728774589 0.00114997848139 -1.74520736516e+12 +UniRef50_UPI00030F326B sulfate transporter 0.000180490136582 6.12976705108e-05 -48119461208.9 +UniRef50_N2UC59 Sodium symporter family protein 0.000692441652498 0.000294825329643 -1.60522588838e+11 +UniRef50_P77704 0.00344755244063 0.0014625824099 -8.01356759727e+11 +UniRef50_UPI0003C17542 PREDICTED 1.81867901376e-06 3.1535644911e-06 538909648.089 +UniRef50_Q9CGB9 0.00516425235081 0.00132289030539 -1.55080499655e+12 +UniRef50_Q4JXF0 Phosphoribosylformylglycinamidine synthase 2 1.73257023036e-05 6.01630676691e-06 -4565741760.06 +UniRef50_S5CWK9 AraC type DNA binding domain containing protein 0.00148293832789 0.00824484400211 2.7298642986e+12 +UniRef50_D3QCA4 Dihydrofolate synthase Folylpolyglutamate synthase 0.0201196334422 0.00412168169721 -6.4585694364e+12 +UniRef50_T2DYR1 Tryptophan tyrosine permease family protein 0.0014251671524 0.000706107667681 -2.90293137833e+11 +UniRef50_UPI00039563BC PREDICTED 5.85183578897e-06 3.66242968249e-05 12423220140.8 +UniRef50_Q4FVL5 Translation initiation factor IF 2 4.34058247019e-05 0.00902234339293 3.62490728025e+12 +UniRef50_UPI0003C10D8C 6.76318873025e-05 0.000163179302655 38573664076.4 +UniRef50_UPI00016A626E Rh like protein ammonium transporter, partial 0.000275204463811 0.000313272223095 15368421566.9 +UniRef50_A6LYM0 Antibiotic transport associated permease SpaG MutG 0.000531745078117 0.00257384886395 8.24422357771e+11 +UniRef50_A3DGF9 Urease subunit beta 1.80321748928e-05 3.1768406545e-05 5545485280.51 +UniRef50_UPI0003B4EA64 isoleucyl tRNA synthase 2.00830835284e-06 3.04566037397e-06 418791740.671 +UniRef50_F8J5A0 0.00293149173819 0.000446333078449 -1.00328904726e+12 +UniRef50_T1CKH0 Coproporphyrinogen dehydrogenase 4.47468511666e-05 5.6907307202e-05 4909325327.07 +UniRef50_UPI0003B37585 ABC transporter 7.69810493281e-06 1.32400392425e-05 2237346888.0 +UniRef50_UPI000478F27B ATP dependent DNA helicase Rep 6.29530469794e-06 8.40662190226e-06 852364664.16 +UniRef50_UPI00047A6B84 PadR family transcriptional regulator 2.25093244406e-05 2.39900369951e-05 597781828.638 +UniRef50_Q5N127 Transaldolase 0.000121508365511 0.0055793832765 2.20341107722e+12 +UniRef50_G8PPN5 UbiD family decarboxylase 0.00146189227519 0.000119884995349 -5.41784807153e+11 +UniRef50_L9MQV1 FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate pyruvate transaminase multi domain protein 0.000294357056807 0.00528564095441 2.0150425594e+12 +UniRef50_P0A0A1 Pyruvate dehydrogenase E1 component subunit beta 0.027235855687 0.0083852322454 -7.61022800654e+12 +UniRef50_M7E6J0 Endonuclease 0.00333752629278 0.00293235882669 -1.63571078024e+11 +UniRef50_UPI00046FABF2 chromosome partitioning protein ParB 2.83665935138e-05 0.000649798958965 2.50879871765e+11 +UniRef50_UPI000265461A PREDICTED 5.87021771306e-05 6.7981617608e-05 3746223992.27 +UniRef50_UPI00034878D9 hypothetical protein 4.03583456268e-06 9.79875988216e-06 2326563670.52 +UniRef50_D2ZS12 0.00364633829529 0.000609482152274 -1.22601609135e+12 +UniRef50_I6U1N8 Transaminase 0.00573008636484 0.00212094796351 -1.45705346173e+12 +UniRef50_UPI000368E802 hypothetical protein 2.51454239698e-05 0.000110367353569 34405138769.9 +UniRef50_O27494 Phosphoribosylamine glycine ligase 0.00498736372117 0.00183601707575 -1.27223731213e+12 +UniRef50_Q3IV08 0.0153764965306 0.0050293378544 -4.1772749315e+12 +UniRef50_A3PH60 0.00235191963759 0.000886585562473 -5.91573347797e+11 +UniRef50_Q3IV03 0.0159279989687 0.00291149116383 -5.25492393135e+12 +UniRef50_Q3IV02 0.00532889663779 0.0162254832996 4.39908575152e+12 +UniRef50_A2BMY4 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.25650800834e-05 2.5614875124e-05 -10880128458.3 +UniRef50_F8IMM6 Glycosyl transferase 0.000223678625035 0.000215559638834 -3277734360.51 +UniRef50_N1M6P3 0.000104187818542 0.000551472896438 1.80574474752e+11 +UniRef50_Q46829 6 phospho beta glucosidase BglA 0.0136640566702 0.0120670958378 -6.44712684953e+11 +UniRef50_UPI0003F4B23B oligo 1,6 glucosidase 1.52507641215e-05 5.32197915619e-06 -4008372330.39 +UniRef50_UPI0004675CB0 hypothetical protein 5.45412939885e-05 0.000450865198773 1.60000823803e+11 +UniRef50_UPI000375AE50 hypothetical protein 0.000254819395972 3.80319130444e-05 -87519767139.6 +UniRef50_A6LW27 Integral membrane sensor signal transduction histidine kinase 0.000355358735704 0.000663328099287 1.24331011288e+11 +UniRef50_P77689 FeS cluster assembly protein SufD 0.00273507311466 0.00020250288357 -1.02242968042e+12 +UniRef50_A7HC61 LexA repressor 2.02832151921e-05 9.69431146661e-06 -4274870374.45 +UniRef50_UPI0004675E29 transcriptional regulator 9.96341376088e-06 1.65405843639e-05 2655284483.4 +UniRef50_P22045 Prostaglandin F synthase 2.0691278754e-05 0.001564887201 6.23410843227e+11 +UniRef50_W1N7X0 9.03548969582e-06 7.02850365767e-06 -810244892.089 +UniRef50_UPI0002631758 branched chain alpha keto acid dehydrogenase subunit E2, partial 1.24809066412e-05 0.000179047083301 67244809514.5 +UniRef50_UPI0002194DF2 fructose bisphosphate aldolase 6.75158688524e-05 0.000157608002341 36371299844.1 +UniRef50_UPI0003A0B379 MULTISPECIES 1.59667648836e-05 1.76370728167e-05 674323809.576 +UniRef50_E2XTA7 0.000393295952549 0.00068527932143 1.17877269056e+11 +UniRef50_UPI0003B324DC flagellar protein FlgJ 3.70782152816e-05 3.52032581246e-05 -756943212.593 +UniRef50_P0AEE1 Protein DcrB 0.00102445001406 0.000344727671428 -2.74412250852e+11 +UniRef50_U7G0Z6 1.3034313471e-05 1.06968708503e-05 -943654269.623 +UniRef50_Q6D2R7 NADH quinone oxidoreductase subunit A 0.00789799848317 0.00089377202969 -2.82769217079e+12 +UniRef50_A6LW63 PAS PAC sensor signal transduction histidine kinase 0.00046856308741 0.000300764331946 -67742416703.1 +UniRef50_UPI0003B301E5 molybdopterin biosynthesis protein MoeB 1.69975706373e-05 1.31031838172e-05 -1572211748.77 +UniRef50_UPI00034D4353 hypothetical protein 5.78149379656e-06 5.66294015901e-06 -47861558.2957 +UniRef50_A8HYF7 Lon protease 0.0111072949751 0.00241915861826 -3.50750726268e+12 +UniRef50_W5X361 Dienelactone hydrolase 4.43675117782e-05 3.61936935467e-05 -3299870724.09 +UniRef50_M2PIC6 6.96815720682e-05 0.000411224001447 1.37884869937e+11 +UniRef50_UPI0003B51C8D 16S rRNA methyltransferase 1.05152665753e-05 1.71144974622e-05 2664190490.71 +UniRef50_A0A031MCT4 4.0036943105e-05 0.000110894076056 28605894087.1 +UniRef50_Q8YUR4 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.42216898055e-05 1.4829435575e-05 245354425.026 +UniRef50_C5AMM3 0.000228628747941 6.5227972966e-05 -65966898010.4 +UniRef50_UPI0003776EC3 hypothetical protein 0.000177610244321 2.53321278833e-05 -61476544268.6 +UniRef50_P0AAV5 0.00190242462631 0.00137766548012 -2.11851706836e+11 +UniRef50_UPI000395E276 LysR family transcriptional regulator 1.46936121625e-05 1.17722083781e-05 -1179406557.42 +UniRef50_F2IZR6 Multiple antibiotic resistance related protein 0.00265442287033 0.000350871332905 -9.29972023413e+11 +UniRef50_A5UNV0 0.00287233501005 0.00180400463203 -4.31298083495e+11 +UniRef50_A5UNV7 0.00542790877622 0.00159882599776 -1.54584770579e+12 +UniRef50_A5UNV5 0.00980444271529 0.000488126785439 -3.76111106493e+12 +UniRef50_F0RJD3 0.000107750520127 0.00930458482624 3.71287486722e+12 +UniRef50_A5UNV8 0.00300616083539 0.000949653838629 -8.30237110771e+11 +UniRef50_UPI00037EDF68 hypothetical protein, partial 5.76687252304e-05 5.32863231909e-05 -1769229481.47 +UniRef50_UPI0002D3C59D hypothetical protein 0.00133156812096 0.000573344948768 -3.06103999059e+11 +UniRef50_UPI0003C02B7D 9.63208605814e-05 7.31032179182e-05 -9373247255.65 +UniRef50_I0C596 0.0202072204813 0.00545577216337 -5.95534070656e+12 +UniRef50_P37758 Nitrate nitrite transporter NarU 0.00833438456861 0.00216513945137 -2.49059995898e+12 +UniRef50_R6IJD9 7.40681185352e-05 0.000239769990679 66895879175.2 +UniRef50_M5ABJ7 Glucuronide carrier protein 0.000177208115904 0.00495765368167 1.92992453757e+12 +UniRef50_V4QZ84 Acyl homoserine lactone synthase 7.09270963142e-05 0.000203083603901 53353203855.6 +UniRef50_P21911 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.44462913503e-05 5.48653476874e-05 12280546327.1 +UniRef50_UPI0003B43349 cell division protein FtsZ 1.27285567621e-05 2.25802472034e-05 3977248324.99 +UniRef50_F4CS06 Plasmid pRiA4b ORF 3 family protein 0.000265941673947 3.04960475146e-05 -95052288633.3 +UniRef50_UPI0003B37305 damage inducible protein 2.61719226007e-05 6.35754604664e-06 -7999306964.63 +UniRef50_G5JU10 Beta lactamase 0.00443754564099 0.00308141360359 -5.4748714511e+11 +UniRef50_F8IME6 0.00905793374031 0.000751148010347 -3.35355133491e+12 +UniRef50_M9VFD9 Osmosensitive K+ channel histidine kinase KdpD 0.000245182008446 0.00494545778568 1.89755901014e+12 +UniRef50_C5XM13 0.000749407395544 0.000400823450487 -1.40727616226e+11 +UniRef50_Q9RR86 BrkB protein, putative 0.000187060606053 0.0342890663283 1.37673981887e+13 +UniRef50_A3VLJ6 0.00047719809492 2.54901036153e-05 -1.8236005917e+11 +UniRef50_F3BY18 0.000228318138423 0.00159630134707 5.52271608374e+11 +UniRef50_A4X0R2 0.000159010434035 2.04158501804e-05 -55952334249.1 +UniRef50_E2RL98 1.47268616834e-05 4.4154153345e-05 11880158757.3 +UniRef50_D1AC29 6.53362091906e-06 0.000773342287819 3.09570068628e+11 +UniRef50_UPI000379F62F hypothetical protein 0.00029866656003 0.000615537706897 1.27924770436e+11 +UniRef50_Q1BYF5 Undecaprenyl diphosphatase 1 0.000549105265091 0.00438135360418 1.54712568147e+12 +UniRef50_UPI000377866C hypothetical protein 7.52066092071e-06 4.14762725698e-05 13708297105.0 +UniRef50_P41775 Cytochrome c oxidase subunit 3 5.00812724938e-05 9.41640014919e-06 -16416907979.6 +UniRef50_P39410 Putative kinase YjjJ 0.00223067840763 0.000660017290752 -6.34095167064e+11 +UniRef50_C5N358 Hydrolase, alpha beta domain protein 0.00582963178402 0.00313047566386 -1.08968244808e+12 +UniRef50_UPI00047026FA hypothetical protein 1.56940472848e-05 4.93060925209e-05 13569595128.0 +UniRef50_Q966L6 Protein LET 504 1.81714790342e-05 2.90095512934e-06 -6164897890.81 +UniRef50_E8U6I4 Agmatine deiminase 0.000495573374271 0.0385572948963 1.53659840483e+13 +UniRef50_P0AAR2 Hha toxicity modulator TomB 0.000608032218492 0.000551993841485 -22623380465.9 +UniRef50_Q2NEH1 Glutamyl tRNA amidotransferase subunit D 0.00213125651245 0.000504942135218 -6.56563071209e+11 +UniRef50_G2TGN8 Two component transcriptional regulator 0.000659194591949 0.00292783470225 9.15877851873e+11 +UniRef50_E3F3T4 1.07515869185e-05 1.242524235e-05 675675235.758 +UniRef50_X2N7K6 Formate acetyltransferase 0.00252833398727 0.00071441402613 -7.32301747613e+11 +UniRef50_UPI0003B58C95 multidrug ABC transporter 7.1695294091e-05 5.65920786557e-05 -6097353408.53 +UniRef50_K1Z738 2.03233561387e-05 0.000271320891048 1.01330784929e+11 +UniRef50_Q5KUG7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.0294520290361 0.0131984826963 -6.56175611082e+12 +UniRef50_Q46BI1 Acetate kinase 0.000289521512523 0.00638616684389 2.46129053453e+12 +UniRef50_P61607 LexA repressor 2.97750009218e-05 1.42987522354e-05 -6247951509.63 +UniRef50_D3QDU9 Flavohemoprotein 0.0196931207744 0.00782813611027 -4.79003990863e+12 +UniRef50_D4MG24 Transcriptional regulator, GntR family 0.0050247159323 0.00245699003735 -1.03662245333e+12 +UniRef50_Q02R92 DNA mismatch repair protein MutS 0.000611512581595 0.000153992808546 -1.84706346779e+11 +UniRef50_UPI0003F9F77C D ribose transporter ATP binding protein 3.09489530768e-05 9.48403315576e-06 -8665651576.3 +UniRef50_Q8KFI9 1 deoxy D xylulose 5 phosphate synthase 2.62120232771e-06 0.000102190534174 40197361119.5 +UniRef50_A5WDL1 Peptidoglycan glycosyltransferase 0.000128251185346 0.00459016966253 1.80133124313e+12 +UniRef50_P76052 p aminobenzoyl glutamate hydrolase subunit B 0.00183645087652 0.000896748700845 -3.79369299762e+11 +UniRef50_X5K0B8 Hydrolase, haloacid dehalogenase like family 0.000387407004267 0.00163530484638 5.03791672288e+11 +UniRef50_V9VVE0 Gene transfer agent protein 0.00427054470096 0.00073988869109 -1.42536915721e+12 +UniRef50_Q9CH00 Ribonuclease R 1 4.76824406995e-05 0.00241957351765 9.57561534141e+11 +UniRef50_Q1AVY9 Carbamoyl phosphate synthase large chain 1.74263682928e-05 1.5494813862e-05 -779792226.552 +UniRef50_O33812 0.00953393811414 0.00386583175167 -2.28828409402e+12 +UniRef50_Q2L0A6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 9.31242206544e-06 1.24614551712e-05 1271303307.78 +UniRef50_A0LK05 2 dehydro 3 deoxyphosphooctonate aldolase 0.000227401198102 0.00312148464555 1.16837700213e+12 +UniRef50_UPI0003811395 hypothetical protein 1.5088151062e-06 3.59373027195e-06 841705837.199 +UniRef50_C5BMI1 Alkaline phosphatase like protein 1.4521173139e-05 1.44685133896e-05 -21259387.0406 +UniRef50_UPI0004713F18 2 hydroxy acid oxidase 2.58571442446e-06 1.39020477297e-05 4568542622.33 +UniRef50_UPI000174498F hypothetical protein 4.91817154362e-06 0.000467813347424 1.86876462865e+11 +UniRef50_P0AA48 Low affinity putrescine importer PlaP 0.00298804690311 0.00771712965479 1.90918873922e+12 +UniRef50_UPI0004575852 PREDICTED 2.62061346541e-05 6.00618934063e-06 -8154965804.26 +UniRef50_UPI00036CD191 hypothetical protein 0.00011193928794 0.000106409936877 -2232266876.9 +UniRef50_S4NIZ2 0.000193173714911 0.000176071780584 -6904260752.14 +UniRef50_UPI00036F2A19 hypothetical protein 0.000147837305029 4.63322216062e-05 -40978847785.3 +UniRef50_C5WG14 Two component system histidine kinase 0.00570253580177 0.00252506789771 -1.28278278478e+12 +UniRef50_H1FIN1 UPF0047 protein yjbQ 1.85040215336e-05 2.43758145819e-05 2370514908.6 +UniRef50_T2END3 0.00158086830529 0.000632418901693 -3.82900663015e+11 +UniRef50_Q6G082 Ribonuclease 3 1.24015136143e-05 1.00536314289e-05 -947868850.0 +UniRef50_R4ZTI0 0.000459605628995 0.000103559335537 -1.43740257848e+11 +UniRef50_UPI00037740DE hypothetical protein 0.0010601998134 0.000870423298282 -76615107972.9 +UniRef50_A1U1Z4 Glyceraldehyde 3 phosphate dehydrogenase, type I 0.000449277468427 0.00747387965536 2.83591810443e+12 +UniRef50_A9CJZ7 Ring hydroxylating dioxygenase, alpha subunit 0.00273621293444 0.00131599437598 -5.73359660092e+11 +UniRef50_B9JQX1 Methionyl tRNA formyltransferase 0.0014316480394 1.91209035328e-05 -5.70254538408e+11 +UniRef50_UPI000471E6E8 phosphoenolpyruvate protein phosphotransferase, partial 3.38525803765e-06 0.000158695280669 62700562004.4 +UniRef50_Q8YBF1 Respiratory nitrate reductase 1 alpha chain 0.00137673749167 0.000432457356817 -3.8121747806e+11 +UniRef50_T1BJ38 Cysteine desulfurase activator complex subunit SufB 5.39266585426e-05 0.000118777381046 26181032482.5 +UniRef50_A5CSL4 tRNA dimethylallyltransferase 4.82717611123e-06 1.67596101918e-05 4817270065.77 +UniRef50_UPI0003F913CD hypothetical protein 5.48414557777e-05 1.37381098193e-05 -16593925158.2 +UniRef50_D4H9Q4 Hydrolase, P loop family 0.000188115941288 0.00261631902662 9.8029538295e+11 +UniRef50_F4ALX4 4.92851437283e-05 2.18202381571e-05 -11087919411.4 +UniRef50_UPI00036E3CC6 hypothetical protein 8.41164703013e-05 7.26797543879e-05 -4617142558.53 +UniRef50_UPI00035E6B92 transcriptional regulator 2.43289991114e-05 1.87278587453e-05 -2261249099.52 +UniRef50_D3SBH7 TRAP transporter, 4TM 12TM fusion protein 0.00229904214979 0.000487298686803 -7.31423068601e+11 +UniRef50_G7M624 Aryl alcohol dehydrogenase ) 0.000470454886268 0.000375827733933 -38202142603.4 +UniRef50_R0X4D2 0.000603455780612 0.000557529779188 -18540890350.3 +UniRef50_P36881 Putative phosphotransferase enzyme IIA component YadI 0.000258552047156 0.000404543431768 58938513483.6 +UniRef50_UPI00036FCC75 MULTISPECIES 1.80703048317e-06 3.33633624269e-05 12739678445.4 +UniRef50_Q3J385 0.00203284515019 0.000312592202392 -6.94487224904e+11 +UniRef50_Q7VJ82 Bifunctional DNA directed RNA polymerase subunit beta beta 2.3719071078e-06 0.00170375022228 6.86867304094e+11 +UniRef50_D9UIB7 Predicted protein 9.05477073264e-06 6.26399583813e-05 21632997818.0 +UniRef50_Q9KPG5 UDP N acetylmuramoylalanine D glutamate ligase 0.00290066441263 0.000393770134503 -1.01206398313e+12 +UniRef50_E6MXZ0 TonB dependent receptor family protein 0.000190730608132 0.00301469983085 1.14007102921e+12 +UniRef50_UPI00047DE0AF hypothetical protein 1.32339094595e-06 4.57882141793e-05 17950994784.0 +UniRef50_UPI00030CFC56 hypothetical protein 4.51741230956e-05 6.87548365251e-05 9519823379.38 +UniRef50_I7GUS8 0.000129436364315 0.00678139646627 2.68547792189e+12 +UniRef50_G7U596 Metal binding protein 0.000148616531043 0.00341042366722 1.31683156775e+12 +UniRef50_UPI0003B7B946 polyvinylalcohol dehydrogenase, partial 3.35797499055e-05 0.0014815281276 5.84554528398e+11 +UniRef50_A6LQD9 ABC type sugar transport system periplasmic component like protein 9.83036429352e-05 0.00201469412853 7.73670355788e+11 +UniRef50_UPI0003B45615 thioesterase 1.75349542967e-05 4.18046653071e-05 9797980157.74 +UniRef50_Q5LSN8 Polyphosphate kinase 2, putative 0.00668041147604 0.00197688909845 -1.89886970254e+12 +UniRef50_Q71X09 Methionine import ATP binding protein MetN 2 0.0167797351048 0.00608480506723 -4.31767449773e+12 +UniRef50_Q6F9B4 0.000176946557275 0.00500790138682 1.95031574717e+12 +UniRef50_Q8CT75 0.0111303634878 0.00575541861743 -2.16993120216e+12 +UniRef50_P74038 Ribosomal RNA small subunit methyltransferase I 3.19758083414e-05 3.69930940437e-05 2025539807.04 +UniRef50_UPI000466458A DNA gyrase subunit B 1.37382358216e-05 1.63970136493e-05 1073381235.92 +UniRef50_O26310 DNA polymerase PolB subunit 2 0.00139160805613 0.000763520081072 -2.53566823037e+11 +UniRef50_UPI0003C19B5B 1.41493308036e-05 2.04089604829e-05 2527089315.83 +UniRef50_UPI00035B52D5 hypothetical protein 1.62168177859e-06 2.16345178519e-06 218719199.93 +UniRef50_A0A024EA09 0.000179908605589 4.18531149599e-05 -55734695698.3 +UniRef50_G7LZT7 0.00107182521116 0.00152511516917 1.82998718542e+11 +UniRef50_B1L5U5 Inosine 5 monophosphate dehydrogenase 2.54568501145e-05 4.69966367946e-06 -8379930883.13 +UniRef50_L1K6E3 0.00117968006452 0.000123077783314 -4.26563306893e+11 +UniRef50_UPI000455F431 GroES like protein 5.47771392884e-06 4.56625864528e-05 16223126161.8 +UniRef50_UPI000476EB30 hypothetical protein 1.45388363124e-05 1.44258233517e-05 -45624719.0596 +UniRef50_K0HYU8 M13 family metallopeptidase 6.04622512861e-05 0.00513701151942 2.04946523581e+12 +UniRef50_U7NU39 9.86552238538e-05 0.000121799384922 9343581834.03 +UniRef50_A8EQW9 Glutamate tRNA ligase 1 3.98890354539e-06 0.00781350416051 3.15279714276e+12 +UniRef50_Q899J9 Methyl accepting chemotaxis protein 0.000433924224537 0.00150575952633 4.32713064231e+11 +UniRef50_M5RGX7 0.00097789166152 0.000232774572528 -3.00812912441e+11 +UniRef50_UPI0003B60AC8 glycine betaine ABC transporter permease 4.51321383489e-05 1.41719597858e-05 -12499004010.0 +UniRef50_F0XWS6 1.1056035514e-05 0.000185317500743 70351491941.6 +UniRef50_UPI0003EF099D cytochrome d terminal oxidase subunit 1 9.25375555611e-06 1.25964721614e-05 1349495713.3 +UniRef50_B4U5I2 Cationic amino acid transporter APC superfamily 0.00710541293312 0.00415860430499 -1.18966280458e+12 +UniRef50_D7UQD7 Nitrogenase reductase 0.000511223512481 4.59303523303e-05 -1.87844558542e+11 +UniRef50_A6LZK3 Histidine kinase 0.000128834808487 0.00198130399334 7.47864542277e+11 +UniRef50_UPI0003F7F30F alpha amylase 2.64116661265e-05 1.58503773781e-05 -4263721869.32 +UniRef50_Q1IYB4 ATPase AAA 2 0.000167731323782 0.0196485216957 7.86463412932e+12 +UniRef50_UPI0003646AB7 hypothetical protein 1.90261930325e-05 6.83758730463e-05 19923071410.2 +UniRef50_A7HQ39 Two component transcriptional regulator, winged helix family 0.0063573841682 0.00087734414176 -2.21235940633e+12 +UniRef50_Q9RZT2 Chromosome partitioning ATPase, putative, ParA family 0.000109416228655 0.0193749325695 7.77772536125e+12 +UniRef50_UPI0003724B15 hypothetical protein 8.27464267755e-05 2.76826928114e-05 -22229905109.3 +UniRef50_A8LMF7 Glutamate racemase 0.00182214234583 0.000834012586967 -3.98920109369e+11 +UniRef50_UPI00045E66ED branched chain amino acid ABC transporter substrate binding protein 0.000140867393682 3.78025807639e-05 -41608529722.5 +UniRef50_P39398 L galactonate transporter 0.00467330142122 0.000570364215017 -1.65640609884e+12 +UniRef50_Q3JG68 0.000129740521982 1.86745122691e-06 -51623927842.8 +UniRef50_P49988 RNA polymerase sigma 54 factor 0.00043980907313 0.000618918254377 72308574386.2 +UniRef50_F2ZMW7 1.6764429749e-05 2.33164659022e-05 2645137397.57 +UniRef50_I7FLW8 General substrate transporter 0.000130768818311 0.00314693467617 1.21766316934e+12 +UniRef50_UPI00035EEFC1 hypothetical protein 4.25659903294e-06 7.22230953345e-06 1197293722.42 +UniRef50_M9VER6 Tat pathway signal sequence 0.000144446169206 0.00499899998622 1.959842948e+12 +UniRef50_T0T7Z3 0.00406131978331 0.00199754532221 -8.33171075307e+11 +UniRef50_UPI00036133DB hypothetical protein 3.06535260265e-06 9.97980540071e-06 2791449444.45 +UniRef50_Q5F507 0.000255058100582 0.00119633308451 3.80004261755e+11 +UniRef50_UPI0004118E6E hypothetical protein 9.72576520301e-07 5.91021113973e-06 1993383687.45 +UniRef50_A7IES2 Ribonuclease HII 0.00373555808006 0.00309268650577 -2.59535143462e+11 +UniRef50_A3PSB1 Flagellar FlbT family protein 0.017075922513 0.000528925442146 -6.68022577201e+12 +UniRef50_Q6D6Y6 Putrescine aminotransferase 0.00207276499816 0.000641721214839 -5.77729936208e+11 +UniRef50_A3W182 Membrane protein, putative 0.000299936445893 4.08797015277e-05 -1.04584386684e+11 +UniRef50_C4I8A2 Hydrolase, isochorismatase family 0.000355090537122 0.00664255795222 2.53832775138e+12 +UniRef50_F8LGD6 0.00741275880412 0.00179824250136 -2.26664912929e+12 +UniRef50_P0AG29 0.000585328109888 0.00412069821203 1.4272722941e+12 +UniRef50_A3PNN1 0.000459032163423 0.000301963469432 -63410559213.8 +UniRef50_UPI000374CA9B hypothetical protein 6.78669976031e-07 3.94068635212e-05 15635046982.6 +UniRef50_Q28JJ3 Flagellar protein FlaF putative 7.54072651422e-05 7.87711804044e-05 1358053871.23 +UniRef50_A3M4L6 0.000100484291618 0.00831216837324 3.31515763245e+12 +UniRef50_Q3IUZ0 0.0222175813563 0.00345301351331 -7.57548630536e+12 +UniRef50_E6SBU2 1.15663865864e-05 6.90167445712e-05 23193414513.6 +UniRef50_R7I998 6.84144707043e-06 1.68875394217e-05 4055730761.64 +UniRef50_UPI000350D37B PREDICTED 1.00740244864e-05 0.000121197006228 44861711361.6 +UniRef50_L0GGI8 Lytic murein transglycosylase B 0.000859989451478 0.000196441267312 -2.678825446e+11 +UniRef50_B9DJG9 3 dehydroquinate dehydratase 0.00654507941753 0.0037527257455 -1.12730744343e+12 +UniRef50_X0RZM7 Marine sediment metagenome DNA, contig 2.69476050868e-05 0.000807289499169 3.15033598513e+11 +UniRef50_X5JHV8 Protein serine threonine phosphatase 9.38611690351e-06 9.07818527811e-05 32860457411.8 +UniRef50_A7NB32 3 methyl 2 oxobutanoate hydroxymethyltransferase 7.28978314783e-06 1.21393645337e-05 1957835516.53 +UniRef50_UPI0003068E5B hypothetical protein 4.90837323417e-06 1.04605030627e-05 2241462944.07 +UniRef50_R0FLE9 6.41070643976e-05 4.10112958624e-05 -9324045174.61 +UniRef50_UPI0003767355 hypothetical protein, partial 4.48491287115e-05 5.27730978526e-05 3199003580.3 +UniRef50_M9RMU0 9.07621379592e-05 5.95721723422e-05 -12591771863.5 +UniRef50_A3DHY6 Ribosomal RNA small subunit methyltransferase G 0.000622587460836 0.000246782762008 -1.51716968559e+11 +UniRef50_UPI00026579B9 PREDICTED 2.25301498103e-05 6.50686619832e-05 17173319370.4 +UniRef50_E7KDY4 Muc1p 1.23892750845e-06 6.04787386056e-06 1941430654.75 +UniRef50_A9ALI4 ABC transporter related 7.59191295635e-05 7.04084354474e-05 -2224734838.49 +UniRef50_Q0T0I4 Ribosomal RNA large subunit methyltransferase G 0.00408789992152 0.000982584687032 -1.25365386667e+12 +UniRef50_Q5ZWB8 UPF0234 protein lpg1167 1.24908262142e-05 3.60989349979e-05 9530883220.05 +UniRef50_Q9KGL2 Ribosomal RNA small subunit methyltransferase I 0.0214639256792 0.0077635756028 -5.53099944804e+12 +UniRef50_Q5LWK7 ABC transporter, periplasmic substrate binding protein 0.00957077247162 0.00197503810121 -3.06649117548e+12 +UniRef50_Q3JQP4 7.00859601585e-05 0.000464327058432 1.59159969256e+11 +UniRef50_Q62IJ6 Potassium transporting ATPase A chain 4.14644576382e-06 0.00202179610521 8.14549926866e+11 +UniRef50_X1YF14 1.26257820794e-05 1.01928529081e-05 -982203361.852 +UniRef50_L2FGS4 Cvnh domain containing protein 4.28018492752e-06 7.62611124375e-06 1350791513.0 +UniRef50_S9TEG5 General secretory system II protein E domain containing protein 1.84888007097e-05 0.00016967481339 61035648579.9 +UniRef50_O24982 Apolipoprotein N acyltransferase 0.000113245796655 0.00367326214924 1.43722228785e+12 +UniRef50_D0IRT5 Arginine permease 0.000181606908375 0.00392159166488 1.50987774098e+12 +UniRef50_P21179 Catalase HPII 0.0017848975057 0.000419664454578 -5.51161336031e+11 +UniRef50_U5MNZ4 Beta glucanase BglA 0.000216207672803 0.0013536222542 4.59188224158e+11 +UniRef50_UPI00037A554B hypothetical protein 9.89219590283e-06 3.29521771553e-05 9309597409.43 +UniRef50_UPI0003812998 hypothetical protein 9.71982559687e-06 6.82464114948e-06 -1168821489.32 +UniRef50_G3XD19 O antigen translocase 0.000886066839104 0.000427856611132 -1.84985091904e+11 +UniRef50_Q899R2 Single stranded DNA binding protein 0.00213964775418 0.000427995224921 -6.91015130401e+11 +UniRef50_A6LVD4 Sigma54 specific transcriptional regulator, Fis family 0.000187718240781 0.00124374752613 4.26331981432e+11 +UniRef50_UPI0004670897 shikimate kinase 1.64633438742e-05 1.08366573707e-05 -2271562388.67 +UniRef50_D7FNC8 Enoyl ACP reductase enoyl ACP reductase 3.27163544958e-06 1.32154529751e-05 4014441159.42 +UniRef50_A5UJH5 Predicted oxidoreductase, aldo keto reductase family 0.00322905691019 0.00106201328855 -8.74862102672e+11 +UniRef50_A7ZV86 0.000679645073595 0.000582062964133 -39395095057.0 +UniRef50_V9B8V8 8.50114917741e-05 1.02605227702e-05 -30177883484.4 +UniRef50_B2SBZ3 Dihydrodipicolinate synthetase 0.000135623708568 0.00700149345088 2.77183586867e+12 +UniRef50_UPI000381E70F hypothetical protein 8.30922862673e-06 8.82190144358e-05 32260561134.5 +UniRef50_UPI00047BCB0B hypothetical protein 1.35353296698e-05 3.41242698621e-05 8312007810.34 +UniRef50_J1HZ40 Cadherin like beta sandwich domain protein 1.16612248791e-06 0.00419162527075 1.69173978087e+12 +UniRef50_UPI0003B309D3 hypothetical protein 4.16993268157e-06 1.4136630948e-05 4023678395.3 +UniRef50_L0F2G6 ABC type dipeptide oligopeptide nickel transport system, permease component 0.000233057731141 0.0021381223713 7.69097973005e+11 +UniRef50_A4ISF0 Pyridine nucleotide disulphide oxidoreductase 0.0165629540166 0.00377611408859 -5.1622041911e+12 +UniRef50_U2KRP8 1.94888647933e-05 2.42300413421e-05 1914071153.53 +UniRef50_Q2NHY4 Predicted ATPase 0.00382887286818 0.000199988739417 -1.4650250542e+12 +UniRef50_Q6D8C5 tRNA lysidine synthase 0.00302900314121 0.000675223259911 -9.50249822208e+11 +UniRef50_W1DNL9 DNA directed RNA polymerase beta subunit 0.00406228226842 0.00088098536748 -1.28432859781e+12 +UniRef50_K7RSJ8 Exonuclease SbcCD, D subunit 0.000163413847988 0.00622265587767 2.44619036264e+12 +UniRef50_Q03CD2 Purine nucleoside phosphorylase DeoD type 0.000379393076353 0.00208193084354 6.87335389102e+11 +UniRef50_C5MYT2 0.0125791057334 0.00548996463905 -2.86197325333e+12 +UniRef50_UPI00046D19BF hypothetical protein 2.89673566329e-05 6.91443616986e-05 16219949972.3 +UniRef50_U5N005 Signaling protein 0.000108681812416 0.000624724328459 2.0833269628e+11 +UniRef50_UPI0003B67EAC phosphate ABC transporter ATP binding protein 3.35606946241e-05 3.30970357223e-05 -187184788.391 +UniRef50_W5V0N3 Hemagglutinin 7.17199544052e-05 0.000107327531323 14375215755.8 +UniRef50_UPI000456105B hypothetical protein PFL1_03954 8.89617587187e-07 2.01543969632e-06 454508200.847 +UniRef50_UPI0003B77756 deoxyribonucleotide triphosphate pyrophosphatase 8.29728254281e-06 1.43285283986e-05 2434887963.69 +UniRef50_V5SVZ8 0.000753385261022 0.000703309526921 -20216188354.9 +UniRef50_D9PYS9 Non canonical purine NTP pyrophosphatase 0.00530260494129 0.000364588524928 -1.99353782356e+12 +UniRef50_UPI0001745D89 molecular chaperone DnaK 4.5667210503e-06 4.18052047799e-06 -155913910.256 +UniRef50_UPI000475F618 branched chain amino acid ABC transporter substrate binding protein 2.45825393727e-05 1.17489412903e-05 -5181081031.82 +UniRef50_Q8ZIQ1 Protein smp 0.00304648696503 0.00106668777444 -7.99269228109e+11 +UniRef50_A5UNL4 Adhesin like protein 0.00398338911148 0.000681338801524 -1.33307823084e+12 +UniRef50_UPI00029A29A8 oligo 1,6 glucosidase, partial 3.24052610787e-05 1.60670471457e-05 -6595937457.18 +UniRef50_W9EH11 0.0010496863607 1.85212077268e-05 -4.16294026073e+11 +UniRef50_UPI0003B4600B ribonuclease, partial 1.81638168575e-05 1.05755312996e-05 -3063483998.46 +UniRef50_G5EL93 Cassette chromosome recombinase A 0.0104698623699 0.00244512102572 -3.2396865553e+12 +UniRef50_P00803 Signal peptidase I 0.00195666393901 0.000189914279868 -7.13258517851e+11 +UniRef50_B0T4C1 Probable chemoreceptor glutamine deamidase CheD 0.000352722653841 5.39374125376e-05 -1.20623268421e+11 +UniRef50_B0KFB1 Rhomboid family protein 0.000272225472725 0.00037381861418 41014397893.4 +UniRef50_Q2G4D3 UPF0260 protein Saro_2854 4.80345035694e-05 0.00438327409636 1.75018942298e+12 +UniRef50_Q3J6E0 0.002300973382 0.000557201330567 -7.03982175652e+11 +UniRef50_Q9BWD1 Acetyl CoA acetyltransferase, cytosolic 0.00220170063826 0.00055481328387 -6.64868634548e+11 +UniRef50_O07347 Signal recognition particle protein 0.000382165846742 0.0422930778145 1.69199494661e+13 +UniRef50_A4VVR6 Predicted O methyltransferase 0.00276202504291 0.000633208415943 -8.59429395825e+11 +UniRef50_K2AGU5 Chemotactic signal response protein CheL 0.000149030613609 7.8714263939e-05 -28387573240.4 +UniRef50_A8AJ27 6 phosphogluconolactonase 0.00256905283308 0.000969142138925 -6.4590358034e+11 +UniRef50_M0BHI2 Nucleolar protein like protein 0.000196172275359 0.000150241749445 -18542716942.4 +UniRef50_K7VJY6 8.8074586029e-05 7.2516455212e-06 -32629212892.0 +UniRef50_O34814 Cell division ATP binding protein FtsE 0.00123560043394 0.00458784620661 1.35334275511e+12 +UniRef50_UPI00035D2A1B hypothetical protein 7.89764087148e-05 0.000168873036155 36292371653.3 +UniRef50_UPI00037863B5 hypothetical protein 7.82343401066e-06 1.64437450904e-05 3480125366.0 +UniRef50_B3DQ29 Elongation factor P 2.22099773758e-05 0.000150779216079 51904979386.4 +UniRef50_P43735 Chaperone protein DnaJ 0.000221118008496 0.000627846374938 1.64201232651e+11 +UniRef50_UPI000161E2A8 40S ribosomal protein S15 5.81127111971e-05 8.63690741194e-06 -19973989124.5 +UniRef50_Q66L51 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 6.09941732819e-06 7.0573538081e-06 386730712.142 +UniRef50_A0A023RVS9 Diguanylate cyclase 0.000168892758539 0.00668143410448 2.62919285923e+12 +UniRef50_Q8ZLF2 sn glycerol 3 phosphate transport system permease protein UgpA 0.0138041268746 0.00332104060678 -4.23215056825e+12 +UniRef50_A4J8U4 Putative sporulation transcription regulator WhiA 0.000391916088574 0.0017903847323 5.64578952614e+11 +UniRef50_J9P3B1 2.80546862557e-05 1.04512852124e-05 -7106709019.2 +UniRef50_E1TE96 Type VI secretion protein, VC_A0114 family 0.000201443674674 5.00699553971e-06 -79303897915.5 +UniRef50_UPI000329034B 0.000124094987895 4.49290005853e-05 -31960280552.8 +UniRef50_A5VR36 Lactoylglutathione lyase 0.0198644838985 0.00763548079145 -4.93699862104e+12 +UniRef50_Q88QC7 Biosynthetic arginine decarboxylase 0.00184062484814 0.00165574416389 -74638600972.8 +UniRef50_P27111 HTH type transcriptional regulator CynR 0.00294885230787 0.000207239793125 -1.10682261557e+12 +UniRef50_G7ZTG5 Acetyltransferase, GNAT family protein 0.0268501424234 0.00194003674946 -1.00565153419e+13 +UniRef50_K3X5U2 0.000268993196135 0.000449948474827 73053866578.9 +UniRef50_UPI0003B45AF6 NADPH 1.85984550178e-05 4.86706083171e-05 12140497313.7 +UniRef50_UPI00047C5895 hypothetical protein 2.06525235057e-05 0.000137384059676 47125953608.9 +UniRef50_A4VWF3 ATPase component of ABC transporters with duplicated ATPase domains 0.000252774519159 0.00369728200893 1.39058994248e+12 +UniRef50_S6AW99 0.00018874299443 0.000929474887452 2.99042555015e+11 +UniRef50_P29365 Homoserine dehydrogenase 0.00110097239842 0.00876753784591 3.09508655049e+12 +UniRef50_A1W5W7 SwissProt accession number P19593 like protein 1.66141246844e-05 8.61006658394e-05 28052569360.0 +UniRef50_H8LDC1 Helix turn helix domain protein 0.0159450795251 0.00247573110905 -5.43774124303e+12 +UniRef50_E8ZZT0 DNA translocase ftsK 0.000763769552922 0.000176267975336 -2.37181596327e+11 +UniRef50_A1K314 Holliday junction ATP dependent DNA helicase RuvA 0.000891225204156 0.00174070991595 3.42947402501e+11 +UniRef50_UPI00037585D1 hypothetical protein 0.000930259738955 0.000232587799164 -2.81658723491e+11 +UniRef50_G2SM74 Fe S cluster oxidoreductase 0.0014330291612 0.00200736627624 2.31866941251e+11 +UniRef50_UPI00037560BA hypothetical protein 3.91240623283e-05 0.000121584547317 33290309693.9 +UniRef50_B0SAP0 Succinyl CoA ligase [ADP forming] subunit beta 0.0283667051049 0.0157212646391 -5.10511949305e+12 +UniRef50_Q8CRS1 0.00154760209082 0.000694862835762 -3.44261301554e+11 +UniRef50_R0DRQ8 4.04277746655e-05 3.85371388555e-05 -763272877.207 +UniRef50_F5HTJ7 Phosphopantetheine attachment domain protein 0.000259011908145 0.00874682130595 3.42663281103e+12 +UniRef50_W5X2Q0 3.24360640712e-05 5.14850515515e-05 7690310003.16 +UniRef50_E8TF05 Tetracycline transcriptional regulator YcdC domain containing protein 0.0138723937395 0.00327619614812 -4.27781499761e+12 +UniRef50_E9WHJ2 NrdB protein 0.00331685042019 0.000261506160374 -1.23347997098e+12 +UniRef50_A3PP90 TRAP T family transporter, small inner membrane subunit 0.00750675992924 0.00076705637713 -2.72090102945e+12 +UniRef50_UPI000469C97C riboflavin biosynthesis protein RibF 1.01646333543e-05 3.25578803253e-05 9040428598.23 +UniRef50_UPI00036BA29A MULTISPECIES 4.11342129639e-06 1.0918889205e-05 2747450907.19 +UniRef50_Q9I2Y2 Phosphoserine phosphatase ThrH 0.00127558324272 0.00778029930595 2.62603369657e+12 +UniRef50_Q8Y2I3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.10306154339e-05 1.13609574929e-05 133363142.971 +UniRef50_UPI0003A4B73E hypothetical protein 8.57944021391e-05 3.29810928129e-05 -21321381067.2 +UniRef50_UPI00047210DD hypothetical protein 2.21033978269e-06 3.86564413234e-06 668266678.822 +UniRef50_A6WP83 Thioesterase superfamily protein 2.82593347166e-05 0.00165805292136 6.57967670743e+11 +UniRef50_M9VE12 Transglutaminase 0.0002886712045 0.00622188005373 2.39530922109e+12 +UniRef50_D4GJ64 MocR 0.000481572578875 0.00624600701246 2.32717291841e+12 +UniRef50_E3D421 CinA related protein 0.000292624797564 0.00298809786679 1.08819555522e+12 +UniRef50_UPI000367AB3B hypothetical protein, partial 0.000362834922283 0.00014408741025 -88311054941.6 +UniRef50_P65809 0.00206052734383 0.000413024238847 -6.65117220617e+11 +UniRef50_Q65GI9 3 isopropylmalate dehydrogenase 0.0140957481444 0.0085783591506 -2.22743764277e+12 +UniRef50_UPI0003B44979 glutamate 2.61282004371e-06 6.50309340455e-06 1570551094.79 +UniRef50_P77148 0.00347966007136 0.00484628288441 5.51722399976e+11 +UniRef50_J3M3U5 8.13619359059e-06 1.02590282255e-05 857014392.224 +UniRef50_UPI000381BF29 hypothetical protein, partial 9.97976061044e-06 2.82313543114e-05 7368392349.33 +UniRef50_F8GT79 Major facilitator superfamily MFS 0.000359008507951 0.00576619246276 2.18294651617e+12 +UniRef50_W1MCV7 0.000171793908893 9.71413014233e-05 -30138173726.0 +UniRef50_R4GHX9 3.14658741268e-05 6.33687172028e-05 12879569241.7 +UniRef50_UPI0003709C0F hypothetical protein 2.05862338216e-05 1.2381832389e-05 -3312217537.67 +UniRef50_A5FN12 Enolase 1.12111216576e-05 0.000105029776287 37875742158.2 +UniRef50_F5ZL84 Membrane protein 0.00486350970635 0.00430233906122 -2.26551475777e+11 +UniRef50_P08681 Cytochrome c oxidase subunit 1 3.70999527329e-05 8.73934730239e-05 20304111312.4 +UniRef50_UPI00046D95AC multidrug MFS transporter 6.43481412002e-06 0.000105903095801 40156565927.7 +UniRef50_B9DJU7 Choline transporter 0.0255059405985 0.00694334932208 -7.49394588689e+12 +UniRef50_UPI0004689981 hypothetical protein 2.62629672384e-06 5.50421434629e-06 1161850660.2 +UniRef50_UPI000467699E cytochrome d ubiquinol oxidase subunit 2 8.23976149206e-06 4.17029213606e-05 13509488278.1 +UniRef50_UPI000471B371 hydrogenase accessory protein HypB 7.13043337588e-05 2.38707582884e-05 -19149516492.8 +UniRef50_I4EB76 Replication protein C 3.50582929947e-05 1.62774934681e-05 -7582039235.22 +UniRef50_B1HXC5 Sulfate binding protein (SSI2) 0.00272673160454 0.0140375010985 4.56629644348e+12 +UniRef50_UPI00022CA98C PREDICTED 5.30155865392e-06 2.61451584749e-05 8414817027.47 +UniRef50_U5MVB3 Phage like element PBSX protein XkdC 0.00221781543851 0.00422483187002 8.10257162262e+11 +UniRef50_Q0C5Z7 Transcription termination factor NusA 0.0118103189586 0.00416775709548 -3.08539600892e+12 +UniRef50_UPI00027F529F 0.000128141787143 4.07753557583e-05 -35270900456.7 +UniRef50_A6LQD4 Endodeoxyribonuclease RusA 0.000172368031437 0.00360762116849 1.38685384672e+12 +UniRef50_E8JNG4 0.000208981395112 0.000254003249514 18175875102.4 +UniRef50_UPI0003B5B5B4 heme biosynthesis protein HemY 1.15118155548e-05 1.47712451311e-05 1315871717.65 +UniRef50_G8VCT1 Lysophospholipase 0.000245155838441 0.00718549230707 2.80189899989e+12 +UniRef50_A4XPP9 Pilus assembly protein, PilQ 0.000724448320794 0.0011734438617 1.81265009659e+11 +UniRef50_R5TNT7 NAD utilizing dehydrogenase 0.000717705019224 0.00247094121843 7.07802968249e+11 +UniRef50_Q4L389 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000920697533784 0.00347431417878 1.03092637599e+12 +UniRef50_W8RPJ3 Hydroxymethylpyrimidine ABC transporter, transmembrane component 0.0102570971573 0.00048282094133 -3.94599525224e+12 +UniRef50_Q6A5L3 Putative 3 methyladenine DNA glycosylase 3.3914245091e-05 0.00430465682641 1.72415118798e+12 +UniRef50_H1QEQ5 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.000333154900203 0.000114757551134 -88169689856.0 +UniRef50_P58336 Fructose bisphosphate aldolase 0.0239386073392 0.0123999599233 -4.65829355693e+12 +UniRef50_Q8RG98 ATP dependent 6 phosphofructokinase 2.32973473664e-05 8.08072284876e-06 -6143138046.74 +UniRef50_G8VQK9 0.000127385598041 0.00814239523744 3.23575774665e+12 +UniRef50_Q49776 ATP phosphoribosyltransferase 0.000176946557275 0.00414532915254 1.60208475124e+12 +UniRef50_P33014 UPF0033 protein YeeD 0.00332037911719 0.00157502242771 -7.04621913478e+11 +UniRef50_F2A7T6 0.00197551032108 0.000444085270977 -6.18255085424e+11 +UniRef50_Q6AB77 Na H(+) antiporter NhaA 0.000469518101512 0.00771765885817 2.92616336815e+12 +UniRef50_A4WUL7 GumN family protein 5.23940067928e-05 2.56706957933e-05 -10788528582.4 +UniRef50_P59302 Acetylglutamate kinase 0.00300304466644 0.00136470963071 -6.61415958556e+11 +UniRef50_Q983F8 Ribosomal RNA large subunit methyltransferase E 8.51447409346e-05 5.46070363154e-05 -12328446094.5 +UniRef50_P24136 Oligopeptide transport ATP binding protein OppD 0.0221541893521 0.0097517292003 -5.00702535858e+12 +UniRef50_G2T6W5 Ppx GppA phosphatase 6.53811048072e-06 9.89612849316e-06 1355673079.14 +UniRef50_A7X5U0 Formimidoylglutamase 0.0115835693576 0.00265165455367 -3.60592361327e+12 +UniRef50_U5MNC9 PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase 0.000839748939815 0.00150202000155 2.67366954602e+11 +UniRef50_Q6FBR2 0.000225362771271 0.00755250152421 2.95805582867e+12 +UniRef50_UPI000465E9D3 glycine betaine ABC transporter ATP binding protein 5.25652461244e-05 9.18632962417e-06 -17512600910.3 +UniRef50_UPI0004662A15 peptide ABC transporter 8.40070407747e-05 1.25187976368e-05 -28860681014.2 +UniRef50_UPI00037198AA hypothetical protein 4.17846103001e-06 2.54510188982e-06 -659407128.465 +UniRef50_P12999 Malonyl [acyl carrier protein] O methyltransferase 0.00245488402021 0.000894163728117 -6.30081934108e+11 +UniRef50_UPI000380847F hypothetical protein 1.3087802258e-05 7.78263290118e-06 -2141761971.1 +UniRef50_UPI0004706833 hypothetical protein 0.000123918657882 2.68315157062e-05 -39195270689.6 +UniRef50_F9YZ80 9.79772395697e-05 0.00880478320372 3.51504441225e+12 +UniRef50_B5EXN2 Ferrochelatase 4.58661850665e-06 2.99701124777e-05 10247628006.6 +UniRef50_S9TGH7 PE PGRS family protein 0.000149689023164 0.000428629564389 1.12611719478e+11 +UniRef50_F0KI57 Transcription activator of glutamate synthase operon GltC 0.000125828662949 0.00844905359922 3.36018804423e+12 +UniRef50_P60065 Arginine agmatine antiporter 0.00256547106817 0.000920283166503 -6.6418254463e+11 +UniRef50_Z5XA58 2.565575288e-05 9.73032376359e-05 28924968809.5 +UniRef50_Q2K5E7 Xylose ABC transporter, permease protein 0.00321647948603 0.00104481321218 -8.76728324095e+11 +UniRef50_F0P396 Betaine aldehyde dehydrogenase 0.0255927792008 0.00489463994243 -8.35609281335e+12 +UniRef50_G2L6P6 0.00027437713379 0.000372247947718 39511648592.7 +UniRef50_A4XTI2 4.29199852858e-05 0.000240883522049 79920309077.0 +UniRef50_A1R8N0 tRNA N6 adenosine threonylcarbamoyltransferase 1.33005836697e-05 2.070484484e-05 2989191094.95 +UniRef50_W8KIM2 Protein pucC 0.00235621148982 0.000963482805149 -5.62261660704e+11 +UniRef50_D9S1W5 0.00066116281873 0.000531659119422 -52282232599.7 +UniRef50_M1MXN6 ABC type multidrug transport system, ATPase and permease component 0.000157150917647 0.00024505606956 35488388544.8 +UniRef50_Q54MI4 2.56113791227e-06 5.0041442333e-06 986271630.859 +UniRef50_Q6GJ93 Putative acetyl CoA C acetyltransferase VraB 0.0265041112598 0.00567172044024 -8.41029181606e+12 +UniRef50_V7EMW9 0.000108029211079 7.86540864863e-05 -11859098271.4 +UniRef50_A3PLM1 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.00410652278597 0.000281745691794 -1.54410944821e+12 +UniRef50_C3F739 VrrA protein product 4.45713313932e-05 0.000240094882266 78935256831.2 +UniRef50_UPI000465695E ABC transporter 4.61893401462e-05 7.16246059976e-05 10268528950.0 +UniRef50_P75785 Phosphoethanolamine transferase OpgE 0.00389579338034 0.000990958143816 -1.17271763132e+12 +UniRef50_UPI0003C14A7B PREDICTED 0.000102817151383 8.56006357713e-05 -6950518622.85 +UniRef50_A0A011RZV2 2.17230326694e-05 1.12932642771e-05 -4210625487.62 +UniRef50_W7TIH3 3.90478390628e-05 1.89707109081e-05 -8105383010.12 +UniRef50_B0RVK4 Succinyl CoA 0.0177168520838 0.048230540948 1.23187506395e+13 +UniRef50_UPI000370484E hypothetical protein 9.26381603864e-05 3.99214597254e-05 -21282378963.5 +UniRef50_Q5HP94 Holliday junction resolvase RecU 0.0111475699299 0.00352703783427 -3.07650232145e+12 +UniRef50_A0A009FMX4 BCCT transporter family protein 0.0001457366432 0.00490425601012 1.92107266202e+12 +UniRef50_UPI000347806D MULTISPECIES 0.000130749637327 0.0103674193301 4.13266917305e+12 +UniRef50_A9MIT8 0.00728267475651 0.000399977478817 -2.7786293512e+12 +UniRef50_Q1IUF1 tRNA N6 adenosine threonylcarbamoyltransferase 1.41105572094e-05 1.67277942171e-05 1056610697.12 +UniRef50_E3A4Z7 0.00142557375498 0.000319415385196 -4.4656970797e+11 +UniRef50_UPI00035F7B5B hypothetical protein 3.82748951546e-05 6.50687237516e-05 10816997401.9 +UniRef50_D4FIU1 0.0032653585442 0.00230116913138 -3.8925509789e+11 +UniRef50_UPI00034D20EA cytochrome BD ubiquinol oxidase subunit I 3.52769276739e-05 4.73393745702e-05 4869757834.91 +UniRef50_A6YP79 Minor ampullate spidroin like protein 7.27119805174e-06 7.55820201919e-05 27577917166.1 +UniRef50_C8W984 M20 DapE family protein YgeY 0.000101383882411 0.00371370956182 1.458340205e+12 +UniRef50_G8VJJ1 Poly depolymerase 0.000239420288917 0.00604986671084 2.34574852272e+12 +UniRef50_P39295 0.00296320994259 0.00387693058873 3.6888023746e+11 +UniRef50_R5TI31 9.8218383912e-05 0.00557489537163 2.21100170633e+12 +UniRef50_P60811 Foldase protein PrsA 1 0.00693660902889 0.00301147269684 -1.58462570409e+12 +UniRef50_UPI0002374DF8 30S ribosomal protein S2, partial 1.61400898517e-05 4.14271465827e-05 10208695109.4 +UniRef50_S9QQX6 0.000213370067565 3.01725737495e-05 -73959076339.6 +UniRef50_C0Z6S0 Argininosuccinate synthase 0.00596177150828 0.00656272100111 2.42610684735e+11 +UniRef50_A6V127 7.00919968729e-05 0.00170852227089 6.61454407422e+11 +UniRef50_Q9RYE9 0.00034334209452 0.0630712477059 2.53240252533e+13 +UniRef50_A7X3Q8 Serine protease SplB 0.0422240117743 0.00920475457339 -1.33302793239e+13 +UniRef50_Q8DW55 0.00337266740265 0.00275911397125 -2.47699049403e+11 +UniRef50_G2L1N4 0.000890725467284 0.00110429301976 86219841703.1 +UniRef50_UPI00047D67F7 branched chain amino acid ABC transporter 0.00010533388264 3.32307128548e-05 -29108934447.7 +UniRef50_UPI0003B4B808 amino acid ABC transporter ATPase, partial 0.000108782376507 0.00012282603841 5669598645.35 +UniRef50_UPI00039C5902 RNA polymerase sigma 70 factor 2.82096910209e-06 0.000205017498746 81629220247.7 +UniRef50_UPI00047B598A hypothetical protein 9.76766908537e-05 0.000154947751158 23121029839.8 +UniRef50_D4L1E0 ABC type Fe3+ siderophore transport system, permease component 0.000173956676891 0.000564935962282 1.57843135368e+11 +UniRef50_Q73HV5 Glutamate tRNA ligase 1 1.7730002753e-05 1.12259265932e-05 -2625775359.7 +UniRef50_B7GXS6 5 formyltetrahydrofolate cyclo ligase 0.00022469404098 0.00645502134425 2.51525958704e+12 +UniRef50_UPI00045717A3 PREDICTED 3.63477146069e-05 7.64151362825e-06 -11589045599.8 +UniRef50_UPI000373B187 hypothetical protein 1.07911833566e-06 0.00360127507502 1.45344328708e+12 +UniRef50_Q9HXH7 0.00102547270045 0.000871829155164 -62027784650.3 +UniRef50_UPI0001A42D32 hypothetical protein, partial 7.32293615491e-05 9.92363614566e-06 -25557298194.0 +UniRef50_UPI000255AEF1 30S ribosomal protein S3, partial 0.00104052323866 0.00212063935744 4.36056131667e+11 +UniRef50_Q57926 Probable homocitrate synthase AksA 0.00288106902442 0.000660299059958 -8.96552086565e+11 +UniRef50_Q08386 Molybdenum pterin binding protein MopB 0.000664229229173 0.000436428628368 -91965897972.7 +UniRef50_D6SC26 6 O methylguanine DNA methyltransferase, DNA binding domain protein 0.02075651314 0.0139455710319 -2.7496609087e+12 +UniRef50_P9WP73 Oxygen independent coproporphyrinogen III oxidase like protein Rv2388c 2.90892723579e-05 9.87929676988e-06 -7755302877.78 +UniRef50_UPI0002195D79 glutamate ABC transporter permease 4.2087898851e-06 3.75810942451e-05 13472808794.4 +UniRef50_UPI0004005367 hypothetical protein 9.56849057307e-07 3.52347192764e-05 13838396844.2 +UniRef50_K2EGX4 1.48755743195e-05 2.243154542e-05 3050438255.46 +UniRef50_F0RN24 Polyprenyl synthetase 0.000436181283126 0.0149904263223 5.875727323e+12 +UniRef50_C0SPB0 0.0246011155853 0.0095773021065 -6.06529786431e+12 +UniRef50_S9QSJ4 Flagellar protein FlgJ, putative 0.00015887993754 8.34309335018e-05 -30459688793.6 +UniRef50_O27701 Conserved protein 0.00411142667759 0.0011994202057 -1.17561274704e+12 +UniRef50_P55218 O succinylhomoserine sulfhydrylase 0.000127877077879 0.00358814672543 1.396953319e+12 +UniRef50_M6VVW5 PF12769 domain protein 1.51106598646e-05 2.21126714194e-05 2826797989.02 +UniRef50_I2C019 Transcriptional regulator, LysR family 0.00012724246815 0.00024372767966 47026509320.9 +UniRef50_P76041 Putative sucrose phosphorylase 0.00241551511253 0.00309527410767 2.74427047919e+11 +UniRef50_D5SSZ9 ATP dependent DNA ligase 0.00329630904573 0.00142846993173 -7.54069571285e+11 +UniRef50_UPI00036A77AE hypothetical protein 0.00010410526564 4.21904332903e-05 -24995777600.0 +UniRef50_P75806 Putative undecaprenyl diphosphatase YbjG 0.00462832454494 0.000763750099644 -1.56017612723e+12 +UniRef50_UPI0003315352 PREDICTED 6.28350314963e-06 1.10917133368e-05 1941133455.93 +UniRef50_Q7MLR5 Cysteine tRNA ligase 0.00363200825655 0.00267506755859 -3.86328702749e+11 +UniRef50_UPI00035CB1C3 hypothetical protein 0.000815417938926 0.000158977782821 -2.65012946446e+11 +UniRef50_G8VCB9 BNR Asp box repeat protein 4.97346493856e-05 0.00594654115279 2.38061314738e+12 +UniRef50_Q2YYG7 0.00981645463155 0.00109501517897 -3.5209521311e+12 +UniRef50_Q7XIT3 0.000142187289557 4.09232375594e-05 -40881540441.2 +UniRef50_I2ZRW4 Maltose regulon activator MalT domain protein 0.000486033462046 0.000763750099644 1.12117614565e+11 +UniRef50_UPI000471FD97 hypothetical protein 1.17569589233e-05 6.50708255442e-06 -2119439513.34 +UniRef50_UPI0004708D1E hypothetical protein, partial 4.66630180737e-05 1.80091754091e-05 -11567907905.9 +UniRef50_C3A4M2 2.94806683128e-05 0.000316679981629 1.15945887118e+11 +UniRef50_Q9I6G4 0.00176061521709 0.000570486930501 -4.80469393813e+11 +UniRef50_UPI0003B7884C ABC transporter, partial 5.77407588545e-05 4.46509388158e-05 -5284520979.78 +UniRef50_E7RTI9 6.42884078815e-05 4.73284262469e-05 -6846952708.27 +UniRef50_Q17WZ6 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.000337742289358 0.00240830352697 8.35910980267e+11 +UniRef50_Q8FTK5 GTPase Der 0.000215072761739 0.00638554106664 2.49109377485e+12 +UniRef50_F8LLX7 Restriction enzyme BgcI subunit alpha 5.77195701583e-05 0.00273308358704 1.08007728402e+12 +UniRef50_Q03024 Alkaline protease secretion ATP binding protein AprD 0.000140155688933 0.000451830836878 1.2582708191e+11 +UniRef50_K1Z0I8 Integral membrane protein MviN 1.03844479641e-05 5.72972818178e-06 -1879167495.96 +UniRef50_A4WTG8 Methyl accepting chemotaxis sensory transducer 0.0075025241691 0.00172406183607 -2.33283615355e+12 +UniRef50_Q9I291 UTP glucose 1 phosphate uridylyltransferase 0.00113118770972 0.00381534734807 1.08362818434e+12 +UniRef50_UPI00036E1A9D hypothetical protein 7.29867649879e-05 4.63821158892e-05 -10740623316.9 +UniRef50_UPI0003B744A6 3 isopropylmalate dehydrogenase, partial 9.76979808143e-05 6.82386717994e-05 -11893084555.7 +UniRef50_B2TRH5 Stage 0 sporulation protein J 0.000320880170342 0.000931007452033 2.46315870722e+11 +UniRef50_P32710 Cytochrome c type biogenesis protein NrfE 0.00319485752797 0.000134336636173 -1.23556984083e+12 +UniRef50_C4ZJP0 9.29650548197e-06 5.70012137326e-05 19258976123.4 +UniRef50_H8GU51 4.84598329819e-05 0.0270148656537 1.08866689448e+13 +UniRef50_Q5HLG5 2 dehydropantoate 2 reductase 0.0227177054231 0.00591282879499 -6.78433491379e+12 +UniRef50_UPI00035D0467 hypothetical protein, partial 8.91869282127e-05 0.000303130514812 86371651293.1 +UniRef50_UPI00037FF715 hypothetical protein, partial 4.80843884675e-05 2.25801279014e-05 -10296382963.0 +UniRef50_Q3JVL6 9.42464790477e-05 0.000425267659107 1.33637312476e+11 +UniRef50_F3AA10 4.25086823392e-05 0.000120952680004 31668804473.4 +UniRef50_P0AFA0 Lipopolysaccharide export system permease protein LptF 0.00240791721303 0.000970096487667 -5.80465870872e+11 +UniRef50_E6UL31 Endonuclease V 0.000716557019404 0.00257366686037 7.497380321e+11 +UniRef50_D3NUN5 MoxR like ATPase 0.00142095566427 0.000496391823051 -3.73257768374e+11 +UniRef50_UPI000287BC3E dehydrogenase 0.000181967543204 9.89025262923e-05 -33534366649.6 +UniRef50_E8WHV5 Pseudouridine synthase 0.0184380855957 0.00578534865681 -5.10806516878e+12 +UniRef50_UPI00036DC256 MULTISPECIES 1.689186615e-05 2.53168803984e-05 3401281638.63 +UniRef50_K9VRD1 Beta Ig H3 fasciclin 1.83638776293e-05 7.76113964505e-06 -4280455434.45 +UniRef50_A7X6Y1 L lactate dehydrogenase 2 0.0113637896733 0.00257100424888 -3.54975537545e+12 +UniRef50_Q7NFA1 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 5.10865906161e-05 7.87632195402e-05 11173394727.1 +UniRef50_Q92S04 Probable chemoreceptor glutamine deamidase CheD 0.000322024224996 4.90276064698e-05 -1.10212084944e+11 +UniRef50_A6LS08 Sigma 54 factor, interaction domain containing protein 0.00027119847468 0.00148149879002 4.88613089358e+11 +UniRef50_Q3AC58 Ribonuclease 3 1.6544121716e-05 3.61432717689e-05 7912417384.97 +UniRef50_Q5XAQ3 Cysteine synthase 4.31447704802e-05 2.21102536439e-05 -8491892569.36 +UniRef50_UPI00037792DA hypothetical protein 2.5113761249e-05 9.04688890778e-06 -6486393526.84 +UniRef50_V8MVT8 0.000491110646101 0.000119192334299 -1.50147986425e+11 +UniRef50_A1JIY2 UPF0597 protein YE0448 0.00225620146682 0.00050327951502 -7.07676102713e+11 +UniRef50_Q28NP7 Outer membrane protein assembly factor BamD 0.0117342406979 0.000254218110649 -4.63462599421e+12 +UniRef50_A0A011PJY3 1.08699556153e-05 3.26404758599e-05 8789026177.07 +UniRef50_Y8CPG9 0.0103233081845 0.00386004495548 -2.60929867871e+12 +UniRef50_P0AER2 Glycerol uptake facilitator protein 0.00298183911859 0.000647114433421 -9.42557005697e+11 +UniRef50_UPI000470D0F7 hypothetical protein 1.91968451844e-05 4.64953143023e-06 -5872929078.18 +UniRef50_UPI0002626B82 polyphosphate kinase 2.09929978766e-06 4.78013359288e-05 18450472817.2 +UniRef50_K9NFY1 Glutamine synthetase 0.00053914798445 0.000262811667087 -1.11560362347e+11 +UniRef50_K9ZXW7 Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase 0.000686742949725 0.0628162628375 2.50824495936e+13 +UniRef50_B9KK79 Metallophosphoesterase 0.0021281930188 0.000680060908247 -5.84628703608e+11 +UniRef50_F0YF94 7.90391610646e-05 7.07842138823e-05 -3332623477.09 +UniRef50_Q094I2 2.02795097443e-05 2.74804662455e-06 -7077666796.67 +UniRef50_F0YF93 0.00015107809751 0.00032038779653 68352403158.0 +UniRef50_Q1MRW8 Adenylosuccinate synthetase 1.65005056636e-05 1.30462172425e-05 -1394538624.48 +UniRef50_UPI00035FD138 hypothetical protein 1.44636125882e-05 7.33050379924e-06 -2879723551.19 +UniRef50_R8A2V2 Glucose 6 phosphate 1 dehydrogenase 0.00312621773303 0.00567097323646 1.0273490244e+12 +UniRef50_F9Z2P0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.000729131821759 0.00507468031638 1.75435125315e+12 +UniRef50_A6W2T4 Shikimate kinase 2.14680216284e-05 1.55154426966e-05 -2403129161.13 +UniRef50_A6TLP6 PfkB domain protein 0.000119836821857 0.00203441012935 7.7293673869e+11 +UniRef50_F3Z6R0 Putative integral membrane efflux protein 3.31942852557e-05 0.000290975365729 1.04069385517e+11 +UniRef50_V6DRE9 6.47158158752e-06 0.000861189093241 3.45059948018e+11 +UniRef50_UPI00034D4B82 hypothetical protein 3.3622882455e-06 2.00954327305e-06 -546119745.426 +UniRef50_S7S4W9 6.11350722752e-05 0.000252512296149 77261333740.6 +UniRef50_A3M0Z0 D amino acid dehydrogenase small subunit 0.000289428171261 0.0193160652379 7.68128686688e+12 +UniRef50_D3D3X9 3.09973062122e-05 1.33131506811e-05 -7139310596.9 +UniRef50_H3UKE3 Extracellular matrix binding protein ebh 5.35177800072e-06 7.17035546959e-06 734182040.638 +UniRef50_Q1GFQ2 ABC transporter related 0.0047798594192 0.00125408931148 -1.42339665855e+12 +UniRef50_S9W022 5.10678907906e-05 0.000266425526039 86942520085.0 +UniRef50_A6LY02 Helix turn helix domain containing protein, AraC type 0.000116868727202 0.00251269304711 9.67223678018e+11 +UniRef50_A0AIL5 Internalin family protein 7.82278085421e-06 2.65042622654e-06 -2088143035.12 +UniRef50_Q895J2 Zinc protease 0.000503034975845 0.000289572475008 -86177431067.3 +UniRef50_R7P2I4 6.11642427956e-05 0.00348292025347 1.38140489118e+12 +UniRef50_I0I041 4.45654810474e-05 1.19573314289e-05 -13164310148.0 +UniRef50_UPI00046CFACA hypothetical protein 2.7440232773e-05 0.000108129225208 32575136411.3 +UniRef50_P00471 Thymidylate synthase 2.06647526927e-05 4.63079529341e-05 10352474614.9 +UniRef50_W0ZC25 1.35968026591e-05 0.000113328227613 40262800096.1 +UniRef50_F3Z8L2 6.14263179056e-05 0.0003608291896 1.20872613389e+11 +UniRef50_Q3J618 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.0161721799674 0.00813564202775 -3.24444898565e+12 +UniRef50_N0BBG7 0.000157764823439 3.26390777774e-05 -50514798989.3 +UniRef50_D9SVN6 N5 carboxyaminoimidazole ribonucleotide mutase 0.00897809892755 0.00189442478255 -2.85976617879e+12 +UniRef50_Q2GA52 Leucyl phenylalanyl tRNA protein transferase 3.28832742589e-05 3.60948794371e-05 1296564421.27 +UniRef50_D7URR5 Cell shape determining protein MreC 0.0154879651767 0.00854406769689 -2.8033366238e+12 +UniRef50_A3QB39 Glucosamine 6 phosphate deaminase 6.21185281721e-06 1.80487179497e-05 4778687708.66 +UniRef50_N1MJG8 Mobile element protein 0.000298110860607 0.000129563394921 -68044680207.4 +UniRef50_P10486 Type I restriction enzyme EcoR124II R protein 8.47275942557e-05 0.00385684795796 1.52285127995e+12 +UniRef50_Q182T5 Bifunctional protein PyrR 4.97004879077e-05 0.000136228026481 34932229134.3 +UniRef50_Q8CN80 General stress protein 26 0.0220491902999 0.0113467538626 -4.3207049234e+12 +UniRef50_B7IWC4 BclA protein 1.6097127488e-05 3.29208307163e-05 6791935443.32 +UniRef50_Q9RSF0 Leucine tRNA ligase 0.000188076434133 0.0568513162789 2.28756452615e+13 +UniRef50_Q9JXK3 Serine type peptidase 8.29026316517e-05 0.00135497375587 5.13550722916e+11 +UniRef50_P32155 Fructose like phosphotransferase enzyme IIA component 0.00107325419803 0.0011694680335 38842706055.8 +UniRef50_R1DRR6 6.92360762181e-05 2.56121929279e-05 -17611497009.5 +UniRef50_G5RNH3 Phosphoenolpyruvate carboxylase 0.000511531491819 6.63384586687e-05 -1.79729890616e+11 +UniRef50_UPI0003C14DD4 PREDICTED 6.3720968312e-06 5.00305579928e-05 17625456520.5 +UniRef50_B9KS86 0.00639347783215 0.00414892201075 -9.06154728896e+11 +UniRef50_U6LIW8 Sybindin like family domain containing protein, putative 9.34183665324e-06 3.8565248334e-05 11797849907.1 +UniRef50_W5X3E8 Methyltransferase family protein 1.30470760912e-05 5.30350133583e-05 16143620981.9 +UniRef50_UPI000475A333 PA phosphatase 0.000224926556458 6.52432806778e-05 -64466097966.5 +UniRef50_B9KS80 0.00703235595499 0.000407333386473 -2.67460290908e+12 +UniRef50_Q2FH51 Phosphate import ATP binding protein PstB 0.00787024600936 0.00108270900115 -2.74021198266e+12 +UniRef50_UPI00045EA79E hypothetical protein, partial 1.79235714263e-05 0.000121214110293 41699658058.1 +UniRef50_Q48PX1 Glutamate cysteine ligase 0.000475791730614 0.000240891396338 -94832147498.5 +UniRef50_UPI0002F819F8 hypothetical protein 3.12634365069e-05 0.000352962884221 1.29874014738e+11 +UniRef50_A0A059E2E8 0.000246163086532 0.000124995935748 -48916665659.6 +UniRef50_W4MLS6 6.45409019781e-05 0.000189669847082 50516090643.3 +UniRef50_B0VS92 Paraquat inducible protein 8.02024055691e-05 0.00428871463285 1.69902803041e+12 +UniRef50_UPI00028A3C04 FAD linked oxidase like protein, partial 0.000775731751936 0.000714475899663 -24729739256.4 +UniRef50_P39805 Transcription antiterminator LicT 0.00145512233392 0.00137668687578 -31665356962.4 +UniRef50_Q1R7E0 0.000108576986252 0.000126745367044 7334798276.83 +UniRef50_P26496 Poly polymerase 2 0.00141303140726 0.000213507059454 -4.8426269903e+11 +UniRef50_UPI000367451B acyl CoA dehydrogenase 4.78743894258e-06 2.37041328306e-05 7636901456.52 +UniRef50_UPI0003628C72 hypothetical protein 5.21809100936e-06 7.01728386137e-06 726356232.936 +UniRef50_P44941 0.000518489289229 0.000161677799396 -1.44049177015e+11 +UniRef50_F8HFC0 Conserved domain protein 0.000371297693954 0.00133630840149 3.89586664645e+11 +UniRef50_UPI0003B3ED87 hypothetical protein 0.000953143210034 0.000558704644371 -1.59239689264e+11 +UniRef50_E8SRI9 0.000407912024397 0.00259786560303 8.84111133445e+11 +UniRef50_A6VD60 N acetylmuramoyl L alanine amidase 0.000355382828736 0.000125222631175 -92918496138.6 +UniRef50_A7ZZW4 Porin, autotransporter family 6.22032132315e-05 9.43015851861e-05 12958506649.4 +UniRef50_UPI00035F5AB5 hypothetical protein 1.34190554654e-06 6.75895101381e-06 2186927729.76 +UniRef50_Q5HLZ6 0.00293215270654 0.0012478170642 -6.79986967935e+11 +UniRef50_UPI00035EE7D2 hypothetical protein 2.363075033e-05 5.09463641842e-06 -7483256649.81 +UniRef50_P76350 Shikimate transporter 0.00228881105161 0.000685347587023 -6.47337877364e+11 +UniRef50_A0A023RZ85 Acyltransferase 0.000225140748821 0.0053679891519 2.07623101017e+12 +UniRef50_O67505 Enoyl [acyl carrier protein] reductase [NADH] FabI 1.4607661015e-05 5.96734323828e-05 18193604920.4 +UniRef50_Q1II13 Lipoyl synthase 4.97205632845e-06 2.73497131206e-05 9034134651.74 +UniRef50_U5SRV6 Integrase 0.00090916436775 2.06787907482e-05 -3.5869253038e+11 +UniRef50_UPI0002F99873 hypothetical protein 7.52879708649e-05 8.34725419364e-05 3304211777.55 +UniRef50_B1GZG8 Polyribonucleotide nucleotidyltransferase 2.30560306413e-06 3.80074383713e-05 14413269024.3 +UniRef50_G8V046 Abi like family protein 0.00835641333997 0.00104839086085 -2.95033835434e+12 +UniRef50_A3ZYM8 Nicotinamide nucleotide transhydrogenase, subunit alpha 1.10398154318e-05 1.89988615123e-05 3213164571.18 +UniRef50_A5VJ31 Phospho N acetylmuramoyl pentapeptide transferase 6.74440336122e-06 0.00204020552325 8.20933207474e+11 +UniRef50_UPI00034DE442 hypothetical protein 3.9097075572e-05 0.00452408141216 1.81064321363e+12 +UniRef50_A4W1C0 Predicted Rossmann fold nucleotide binding protein involved in DNA uptake 0.00539156754003 0.00656411191415 4.7337055257e+11 +UniRef50_A6LV77 Binding protein dependent transport systems inner membrane component 0.000156416846208 0.00139052893388 4.98226194051e+11 +UniRef50_Q2YV12 PTS system EIIBC component SAB0132 0.021023638325 0.00870503714079 -4.9731704643e+12 +UniRef50_Q8YYY4 All0708 protein 0.000212885467771 8.38575360774e-05 -52090159375.6 +UniRef50_K2ALU5 3.91705537255e-06 0.00142303603638 5.72915747182e+11 +UniRef50_UPI00047EB60C hypothetical protein 5.72361017808e-05 2.95780504924e-05 -11165894707.6 +UniRef50_H1QFS1 Thiamine biosynthesis protein ThiC 2.1938479151e-05 6.51561855976e-05 17447518433.4 +UniRef50_UPI00036E98A9 hypothetical protein 1.03885614478e-05 6.39887312116e-06 -1610686136.45 +UniRef50_UPI00036F5F0F hypothetical protein 2.7394400557e-06 4.92754466736e-06 883364682.79 +UniRef50_UPI000404FF04 hypothetical protein 3.08754379598e-06 2.25302279305e-05 7849250173.66 +UniRef50_P37440 Oxidoreductase UcpA 0.0054153728881 0.00150233736391 -1.57974045946e+12 +UniRef50_R6ZPD9 0.00677923950005 0.00491091209574 -7.54266700075e+11 +UniRef50_D6B3U1 Short chain dehydrogenase 0.000181774954504 0.00283994053042 1.07313406236e+12 +UniRef50_B9KNU0 Helicase 0.000319903380388 0.000473770115279 62117889032.7 +UniRef50_I6U2T1 Polyketide synthase 0.00577455840596 0.00144824836425 -1.74658445363e+12 +UniRef50_A0ADL6 Putative iron sulfur protein 5.07174074505e-05 0.000631331941209 2.3440121222e+11 +UniRef50_F2AG83 0.00018977159471 0.000817257867503 2.53323908449e+11 +UniRef50_UPI00037E75DF histidine kinase, partial 0.00284505651714 0.00174441730222 -4.44341557425e+11 +UniRef50_G4YB17 4.70258307442e-06 2.24652926066e-05 7171023811.11 +UniRef50_E0N9M8 0.000626131496841 0.000458147135763 -67817347967.1 +UniRef50_P0AB72 Fructose bisphosphate aldolase class 2 0.00378322417834 0.000493273927992 -1.3281932883e+12 +UniRef50_D7GD43 Deoxyguanosinetriphosphate triphosphohydrolase 0.000525546411233 0.00660908776213 2.45600029681e+12 +UniRef50_G0HCK4 3.58224928212e-06 4.55392289206e-05 16938547550.1 +UniRef50_Q5HKT7 0.0216374404631 0.00529847990038 -6.59623888075e+12 +UniRef50_C5N3T1 0.00897661188533 0.00166933286249 -2.95003821192e+12 +UniRef50_UPI0002BBFDEB hypothetical protein 6.24591617212e-05 4.11716574579e-05 -8594026698.15 +UniRef50_UPI00035D07EB hypothetical protein 4.49479173686e-06 1.74029835511e-05 5211195436.72 +UniRef50_UPI00016A9C60 major facilitator family transporter, partial 8.42368939224e-06 1.50562473805e-05 2677645050.5 +UniRef50_C5N3T8 0.00729184147672 0.000942500122969 -2.56330701969e+12 +UniRef50_D4HAP5 Transcriptional regulatory protein, C terminal domain protein 0.000536709936758 0.00106967040494 2.15162681165e+11 +UniRef50_Q9CET9 Prephenate dehydrogenase 8.10984246014e-06 3.84845746202e-06 -1720373416.82 +UniRef50_UPI000316C479 histidine ammonia lyase 5.06609875226e-06 8.08897763226e-05 30610949096.3 +UniRef50_P06612 DNA topoisomerase 1 0.00349475483362 0.00747985834648 1.60883519086e+12 +UniRef50_UPI00029A4174 ABC transporter ATP binding protein 1.68667053234e-05 9.6584792319e-06 -2910049328.02 +UniRef50_P57699 Potassium transporting ATPase B chain 9.35950550024e-06 0.0016336054402 6.55728015577e+11 +UniRef50_I0C7Y1 Arginine repressor 0.00459183311569 0.00251631113437 -8.37913693378e+11 +UniRef50_L7WV22 4.26525117713e-05 6.80119551092e-05 10237918470.9 +UniRef50_UPI0003B500DF ribosomal large subunit pseudouridine synthase C 1.89887291712e-05 7.49621047186e-05 22597138579.0 +UniRef50_G2TQW7 Phosphotransferase system PTS sorbose specific IIC subunit 0.000238915182824 0.00144446736115 4.86696208181e+11 +UniRef50_A6LU65 Methyl accepting chemotaxis sensory transducer 0.00116399664264 0.00105391538354 -44441155147.6 +UniRef50_Q3J3Y0 0.0137870328616 0.00144316847222 -4.98336953025e+12 +UniRef50_W7BZR4 4.5227939446e-05 0.000101906148032 22881688326.0 +UniRef50_Q02137 Acetolactate synthase large subunit 0.0182537510425 0.00359286795449 -5.91877841189e+12 +UniRef50_E4HVL3 YD repeat protein 0.000337041061476 0.00304144366761 1.09180051885e+12 +UniRef50_P19931 Hydrogenase 1 operon protein HyaE 0.0127630668451 0.00444756432589 -3.3570704097e+12 +UniRef50_UPI000378C27D hypothetical protein 7.09333524536e-06 3.3841638734e-05 10798618356.9 +UniRef50_B8D1K5 ATP dependent 6 phosphofructokinase 2.39707260798e-05 1.86394317985e-05 -2152308923.7 +UniRef50_UPI000382BE75 hypothetical protein 7.02483270442e-06 3.44558736015e-05 11074247826.9 +UniRef50_UPI0003675045 ABC transporter substrate binding protein, partial 0.000129395736412 1.44321772973e-05 -46412199576.2 +UniRef50_Q9RSM8 Endopeptidase IV related protein 9.25210757045e-05 0.00938826557001 3.75280612397e+12 +UniRef50_B7LSY4 0.000555126454193 0.000868578544689 1.26544455423e+11 +UniRef50_Q9CKJ2 L threonine dehydratase biosynthetic IlvA 1.73510491816e-05 2.38083568351e-05 2606894339.79 +UniRef50_A0A022CKG6 9.82600088995e-05 0.00686595573602 2.732201814e+12 +UniRef50_P0ACY5 0.00428644086102 0.00202858248083 -9.11525135121e+11 +UniRef50_R1F809 0.000216484833159 0.000234521922266 7281794212.47 +UniRef50_B4U058 ComG operon protein 6 0.00608943842376 0.0027915956023 -1.33137961611e+12 +UniRef50_UPI00047620B0 SAM dependent methyltransferase 2.70355211621e-05 2.01355413933e-05 -2785606504.94 +UniRef50_UPI00047183CB MFS transporter 4.31449464414e-06 7.38389117094e-06 1239153043.6 +UniRef50_M1M9U7 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.000963563047049 0.00102530598105 24926380127.2 +UniRef50_F0N593 Transcriptional regulator, AraC family 0.000118706285809 0.00155821497554 5.81147322802e+11 +UniRef50_J9NX06 2.77554231966e-05 1.31843849903e-05 -5882506930.63 +UniRef50_Q04R37 Pyridoxine pyridoxamine 5 phosphate oxidase 7.44961960154e-06 9.74130718131e-05 36319349633.5 +UniRef50_A0A020HGX4 0.000315062796313 6.06898327703e-05 -1.0269348689e+11 +UniRef50_Q06473 Cytochrome c oxidase subunit 1 3.09093765927e-05 1.48315340541e-05 -6490822330.15 +UniRef50_K7RQC1 Amino acid or sugar ABC transport system, permease protein 0.000295809976439 0.00402565066785 1.50578245741e+12 +UniRef50_P07251 ATP synthase subunit alpha, mitochondrial 3.77122466069e-06 1.01922977186e-05 2592265988.91 +UniRef50_K1C2I8 0.000495970707103 2.45669966279e-05 -1.90311462693e+11 +UniRef50_UPI000383E572 0.000588446714186 0.000703135012379 46301073364.2 +UniRef50_UPI00037611BB hypothetical protein, partial 1.05334996469e-05 1.34057154757e-05 1159548776.14 +UniRef50_B7UXU5 Homologous to beta keto acyl acyl carrier protein synthase 0.000566905531537 0.000172029148656 -1.59416441447e+11 +UniRef50_B0VV71 0.000138442294196 0.0136793413741 5.46662712407e+12 +UniRef50_D3E1B0 0.00215947299551 0.000436315164312 -6.9565996198e+11 +UniRef50_UPI00044349DC PREDICTED 0.00018347800315 0.000187370153073 1571308685.97 +UniRef50_F5XE67 UTP glucose 1 phosphate uridylyltransferase 0.000180436896891 0.00417632150567 1.61318765158e+12 +UniRef50_A7FAZ2 0.000353924589576 0.0100950231556 3.93260102782e+12 +UniRef50_Q47158 0.00202667483436 0.000814901208814 -4.89207882769e+11 +UniRef50_UPI0002000B64 antigen penicillin binding protein, partial 6.05063382824e-05 3.05470589451e-05 -12094928710.2 +UniRef50_P37940 2 oxoisovalerate dehydrogenase subunit alpha 0.00946781057598 0.00310497870178 -2.56875330834e+12 +UniRef50_A6LRN8 Ribosomal protein L11 methyltransferase 0.000120218467792 0.00116480138946 4.21710943952e+11 +UniRef50_Q9KQH7 3 oxoacyl [acyl carrier protein] reductase FabG 0.00198383928536 0.0138883337855 4.80599051427e+12 +UniRef50_S9Q6A0 6.84346628827e-06 1.3970785959e-05 2877386413.12 +UniRef50_UPI0003B3866E hypothetical protein 1.86541014542e-05 3.0843389201e-05 4920965042.76 +UniRef50_X6HEY2 2.68428930064e-05 2.85100372737e-05 673046598.87 +UniRef50_A5G0R5 Polyhydroxyalkonate synthesis repressor, PhaR 3.3241252976e-05 1.03331811693e-05 -9248269702.02 +UniRef50_R4ZBL9 Cro Cl family transcriptional regulator 0.000250543797907 0.000644638687976 1.59100943209e+11 +UniRef50_UPI0003B54D0C hypothetical protein 2.12599264863e-06 0.00128924004324 5.19623736889e+11 +UniRef50_H8H715 0.00023759807224 0.00532154663681 2.05245242258e+12 +UniRef50_Q3IVM9 Bacteriophage protein gp37 0.00583826168783 0.00117747944019 -1.8816149876e+12 +UniRef50_B7UXM6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.00029142976758 0.000611207066372 1.29098019631e+11 +UniRef50_Q6F8A1 Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase) 0.000143530794236 0.00750666565866 2.97258790059e+12 +UniRef50_P58740 Undecaprenyl diphosphatase 1 0.00733814090902 0.000239834579225 -2.86567337135e+12 +UniRef50_P18275 Arginine ornithine antiporter 0.000867813967949 0.000375652305693 -1.98691702555e+11 +UniRef50_UPI0003AB78DA PREDICTED 0.000161245912958 0.000101935041895 -23944526474.4 +UniRef50_UPI000380609D hypothetical protein 8.92280642614e-05 0.000130690972798 16739084983.3 +UniRef50_UPI0004715FA9 hypothetical protein 9.76727475219e-05 0.000175958515938 31604925384.0 +UniRef50_Q7MP85 4 hydroxythreonine 4 phosphate dehydrogenase 0.0017757419229 0.00926628884416 3.02402571146e+12 +UniRef50_UPI00037E8BAF cell envelope biogenesis protein TonB, partial 5.91093917794e-05 5.15297484259e-05 -3059995034.49 +UniRef50_A6LRY0 0.000260467644753 0.00121531400606 3.85483193342e+11 +UniRef50_A3PPF7 0.00188119675583 0.000389519309542 -6.02208490008e+11 +UniRef50_G7MD13 Cell wall binding repeat containing protein 0.000549895586566 0.000479115938453 -28574612507.2 +UniRef50_UPI000478557C carbon monoxide dehydrogenase 9.04413972119e-05 7.48029729103e-05 -6313423795.6 +UniRef50_B2RKJ1 NAD specific glutamate dehydrogenase 0.0125424250654 0.0218666685197 3.76431150384e+12 +UniRef50_UPI000237AD1B aldehyde dehydrogenase 5.47673103459e-06 7.90669588018e-06 981006627.187 +UniRef50_D2N4B3 Ribosomal protein serine N acetyltransferase 0.0203915143028 0.00413540880737 -6.56278927334e+12 +UniRef50_D3R7P0 Queuine tRNA ribosyltransferase 0.000322364335723 0.00558184202023 2.12331568229e+12 +UniRef50_Q4L8F8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0273878041441 0.00537498131452 -8.88684670402e+12 +UniRef50_F3Y5B2 Putative fluoride ion transporter CrcB 4.64198979205e-05 3.88054017154e-05 -3074065558.37 +UniRef50_Q3IVD1 3 oxoadipate enol lactonase 0.00441496941689 0.00135887031112 -1.23378471155e+12 +UniRef50_X5F4R0 0.00379324233336 0.00146438035634 -9.40190158473e+11 +UniRef50_UPI0004636ECE hypothetical protein 0.000209386709031 0.00012569312457 -33788127082.7 +UniRef50_C6S6X2 Gamma glutamyltranspeptidase 0.000341155720662 0.0032292752057 1.16596927732e+12 +UniRef50_Q49Y11 Cytidine deaminase 0.0118382093491 0.000898626558672 -4.41644381626e+12 +UniRef50_P38051 Menaquinone specific isochorismate synthase 0.00267667547568 0.000565095116097 -8.52470903167e+11 +UniRef50_D4H9R3 YjeF domain protein 0.000275194618029 0.00373096243432 1.39513587448e+12 +UniRef50_UPI00035965D6 PREDICTED 7.43026692316e-05 2.48392921378e-05 -19968972316.7 +UniRef50_A0A011PJV1 Dihydrofolate reductase 1.14782154589e-05 6.87603095704e-05 23125484323.2 +UniRef50_Q9RTK3 0.000216945970609 0.0466683950739 1.87530200264e+13 +UniRef50_A1WST0 Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding 4.8333673348e-05 0.00165824350589 6.49940355212e+11 +UniRef50_O33655 Lactate 2 monooxygenase 2.16823602716e-05 0.00125427085928 4.97611102612e+11 +UniRef50_J3BE74 Metallo beta lactamase superfamily enzyme 0.000190335031064 3.58392100569e-05 -62371858817.4 +UniRef50_UPI0001745109 peptide ABC transporter permease 4.32249417887e-05 2.95853640993e-05 -5506464889.65 +UniRef50_Q89AT8 NADH quinone oxidoreductase subunit J 1.82704594843e-05 2.95249777038e-05 4543587113.68 +UniRef50_Q9RZK0 0.000378748483804 0.00625384889509 2.37185013163e+12 +UniRef50_F4FQW3 Recombinational DNA repair protein RecT 0.0176772474001 0.0031979146898 -5.84548429654e+12 +UniRef50_Q8YIY0 Phosphoglycerate kinase 0.00480601230375 0.000956686164383 -1.55402019901e+12 +UniRef50_UPI0004258808 hypothetical protein 1.52245565301e-06 8.5240506919e-06 2826629836.43 +UniRef50_UPI000225F0D6 hypothetical protein 6.66327452548e-06 0.000735228311697 2.94130646005e+11 +UniRef50_UPI000362EC3A hypothetical protein 5.21964361489e-05 1.3820252403e-05 -15492936307.0 +UniRef50_Q17XQ8 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000286808815281 0.00649398675032 2.50591390301e+12 +UniRef50_Q9RSF5 Drug transport protein 0.000181283923867 0.02800437642 1.12325238684e+13 +UniRef50_UPI0003B73A04 AsnC family transcriptional regulator 0.000237792613004 6.48074969304e-05 -69836214125.2 +UniRef50_UPI00035D1A94 hypothetical protein 0.000181559160811 3.04466972403e-05 -61005955902.1 +UniRef50_Q6APZ3 Prolipoprotein diacylglyceryl transferase 2.44203682889e-05 1.40973977457e-05 -4167509885.38 +UniRef50_R7N4H0 Pyridine nucleotide disulfide oxidoreductase 0.00032310301134 0.000914172891312 2.38622163788e+11 +UniRef50_A9WA88 Xanthine phosphoribosyltransferase 1.37793206945e-05 3.01307503126e-05 6601272791.43 +UniRef50_B3E7C1 5.03082333324e-05 1.9323718653e-05 -12508828798.8 +UniRef50_D8U7R0 9.49365771667e-06 1.11125673445e-05 653573683.01 +UniRef50_Q9ZJ75 Ribulose phosphate 3 epimerase 1.66035744343e-05 0.00231493607223 9.27865033073e+11 +UniRef50_Q3J229 0.0126149558799 0.00439772592246 -3.31739657057e+12 +UniRef50_Q3J227 0.0292566891742 0.000482806602495 -1.16163694894e+13 +UniRef50_UPI00038131B7 hypothetical protein 1.0023417839e-05 1.38110033496e-05 1529094749.53 +UniRef50_UPI0001F85C49 biotin synthase like protein 2.48935217411e-05 4.38051141605e-05 7634841931.05 +UniRef50_M4ZJP4 0.000117474892792 0.00139895567705 5.17349518143e+11 +UniRef50_G7U4I0 Uroporphyrinogen III synthase 0.000370760693428 0.00478929559332 1.78381676061e+12 +UniRef50_M1NMK8 1.46499384341e-05 8.34672844958e-05 27782407088.9 +UniRef50_X0U0K9 Marine sediment metagenome DNA, contig 9.19524785138e-06 0.00270521399083 1.08841585041e+12 +UniRef50_Q3JUG7 Xanthine uracil permease family protein 0.0009215419328 0.00994122766295 3.64135781325e+12 +UniRef50_UPI0002627BB0 50S ribosomal protein L15, partial 0.000179456420581 0.000603213224877 1.71075821975e+11 +UniRef50_R9SMQ4 Phosphate ABC transporter permease protein PstA 0.000834233270323 0.00126105161592 1.72311803768e+11 +UniRef50_K0T1H0 7.25005100276e-05 2.11926619617e-05 -20713607882.3 +UniRef50_K0WK29 0.000779260799929 0.00509042750724 1.74047090371e+12 +UniRef50_A4WTM8 0.00149837666892 0.000117168609764 -5.57610642812e+11 +UniRef50_A1BAY3 2.89063807021e-05 1.55651349652e-05 -5386024619.48 +UniRef50_Q3IZ78 Mesaconyl CoA hydratase 0.00573205588246 0.00159479613416 -1.67026253028e+12 +UniRef50_P19366 ATP synthase subunit beta, chloroplastic 1.9666321806e-05 4.51583984968e-05 10291464183.0 +UniRef50_P49189 4 trimethylaminobutyraldehyde dehydrogenase 8.71099199654e-06 1.18016311535e-05 1247728954.07 +UniRef50_UPI0003627DD4 30S ribosomal protein S4 5.28344492532e-05 3.64703627265e-05 -6606382540.75 +UniRef50_UPI000455E0E7 ribosomal protein S12 6.22918789034e-05 7.00941753509e-05 3149882820.8 +UniRef50_F2I9T6 Endoribonuclease L PSP 0.000156375456285 6.00301912227e-05 -38895765795.0 +UniRef50_UPI000370459E hypothetical protein, partial 8.18503056861e-06 0.000704640774292 2.81167730214e+11 +UniRef50_Q03SV2 Ribose 5 phosphate isomerase A 0.00352133774432 0.00086749659062 -1.07138824004e+12 +UniRef50_UPI0002EFA82A nucleoside triphosphate pyrophosphohydrolase 8.65653773257e-06 6.02953775856e-06 -1060552126.42 +UniRef50_Q9Z670 Gluconate permease 1.45790358184e-05 1.31290205501e-05 -585388957.501 +UniRef50_UPI00036A5335 CRISPR associated protein Csd1, partial 0.000709507604288 0.000386541654168 -1.30385317301e+11 +UniRef50_K0S333 2.47427271148e-05 8.58985428236e-06 -6521112980.48 +UniRef50_A3T0X3 0.000163630822506 0.000182507353108 7620687045.11 +UniRef50_Q21VW6 NADPH dependent 7 cyano 7 deazaguanine reductase 9.69594158272e-06 0.000280363960626 1.09272000758e+11 +UniRef50_A7ZQ55 NAD kinase 0.00275759212725 0.00110914761965 -6.65497276407e+11 +UniRef50_A6LZN3 Hydrogenase accessory protein HypB 0.00228151517949 0.000559695659009 -6.95119669519e+11 +UniRef50_Q2FJN4 Alkyl hydroperoxide reductase subunit C 0.00919021265587 0.00278387878248 -2.58631559924e+12 +UniRef50_UPI0004658AD9 saccharopine dehydrogenase 4.82890507104e-05 0.000254659291322 83314198582.7 +UniRef50_UPI0003F63AFE GntR family transcriptional regulator 3.27638487637e-06 4.90224030191e-06 656377786.78 +UniRef50_V8FYN5 CoA activase 0.000340082618917 0.00145180639083 4.48816529105e+11 +UniRef50_E3D490 0.000672386425058 0.00354651672606 1.16032167206e+12 +UniRef50_Q2FH66 Indole 3 glycerol phosphate synthase 0.017500966047 0.00569041151961 -4.76806579451e+12 +UniRef50_B7V4W8 0.000712657001806 0.00117375640368 1.86151486862e+11 +UniRef50_Q53135 Chemotaxis protein CheA 0.0128211307401 0.00467647995935 -3.28809546629e+12 +UniRef50_A5IVV5 Sortase family protein 0.0205420931422 0.00453185729897 -6.46352867759e+12 +UniRef50_E9JFX9 Dimethyl sulfide monooxygenase 0.000683977558455 0.0086723544519 3.22500578029e+12 +UniRef50_C4K6C1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.0152517677422 0.00132444778914 -5.6226299725e+12 +UniRef50_B4R8Q8 Peptidyl tRNA hydrolase 5.11134021247e-05 3.22681257508e-05 -7608069329.69 +UniRef50_P29968 Putative dehydrogenase XoxF 0.0118453384729 0.00237847082998 -3.82189063898e+12 +UniRef50_U4V1U2 0.00633472291306 0.000387423167729 -2.40099788876e+12 +UniRef50_Q74I62 Putative ABC transporter ATP binding protein LJ_1704 0.00723965592388 0.00235200600469 -1.97320425059e+12 +UniRef50_D4MDT9 3.15002144198e-05 0.000626113155893 2.40052541194e+11 +UniRef50_Q60177 Proteasome subunit alpha 0.00200234204499 0.000239769990679 -7.11571967516e+11 +UniRef50_Q2FS70 30S ribosomal protein S7 0.00356484645398 0.000525786418738 -1.22690582969e+12 +UniRef50_P44432 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.00334713666784 0.0053045623206 7.90236756333e+11 +UniRef50_P28274 CTP synthase 1 5.24020755106e-06 0.000110182567853 42366518641.5 +UniRef50_A6LZD7 Flavin reductase domain protein, FMN binding 0.000199026004668 0.00101165996604 3.28070302346e+11 +UniRef50_W8W2G5 0.000105165722563 0.00057035452857 1.87802429494e+11 +UniRef50_C6XI98 Fe S metabolism associated SufE 9.45299442955e-05 1.78229946224e-05 -30967536883.2 +UniRef50_P33352 0.00223248240016 0.000508538814678 -6.95977180625e+11 +UniRef50_P33353 0.00251378733583 0.000729354687196 -7.20397357703e+11 +UniRef50_F8JL19 4.4952903581e-06 0.000462145704483 1.84759088184e+11 +UniRef50_G7ZSB9 Nucleoside permease 0.0205288050156 0.00598075778161 -5.87322519298e+12 +UniRef50_UPI0003676E77 hypothetical protein 1.50654716095e-05 2.43731711017e-05 3757632503.32 +UniRef50_B7LSZ0 Cytoplasmic trehalase 0.00318869190526 0.00152090322351 -6.73306756891e+11 +UniRef50_W1MRE5 General secretion pathway protein D 0.000242676423441 0.000293763150069 20624338444.4 +UniRef50_Q1NCJ9 3.79238905892e-05 5.13775231482e-05 5431396558.71 +UniRef50_O34481 ATP dependent RecD like DNA helicase 1.20263455103e-05 0.000902363051583 3.59439853902e+11 +UniRef50_I1QUN8 0.000226823941402 8.75678654467e-06 -88036386400.7 +UniRef50_D6EJV1 Transcriptional regulatory protein 4.53291282004e-05 0.000116149010866 28590855689.8 +UniRef50_Q8E7K5 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0030708834998 0.00330322027954 93797209073.9 +UniRef50_M4QZK0 Alpha beta hydrolase family protein 0.000296661826224 0.00741991463758 2.87574457209e+12 +UniRef50_UPI000262F232 cytochrome c oxidase subunit I, partial 0.000155931085724 0.00055506090193 1.61133604676e+11 +UniRef50_P61429 Periplasmic [NiFe] hydrogenase small subunit 2 6.37963548497e-05 1.89667285623e-05 -18098270253.6 +UniRef50_H7CVU9 FliB family protein 0.000205602390439 0.00147753393576 5.13494373201e+11 +UniRef50_U5MR93 Sensor histidine kinase YvrG 0.000463777779289 0.00111517935784 2.62978810857e+11 +UniRef50_M9VFE8 Low molecular weight phosphotyrosine protein phosphatase 0.000275537218136 0.00787924822684 3.06971144224e+12 +UniRef50_A3LER3 0.00441446232265 0.00100676149498 -1.37573064132e+12 +UniRef50_F1UR15 BNR Asp box repeat protein 0.000226491593311 0.00267074677529 9.86775811349e+11 +UniRef50_Q5FQE8 Leucyl phenylalanyl tRNA protein transferase 1.89966206479e-05 5.67102383896e-05 15225450280.5 +UniRef50_D9SN85 Glutathione peroxidase 0.000475856278317 0.00130645942102 3.35324681356e+11 +UniRef50_H2CHQ0 Magnesium protoporphyrin chelatase 1.15894856147e-05 0.000109151275654 39386891856.7 +UniRef50_R6QPN1 MaoC domain containing protein 3.43644226243e-05 3.4959274639e-05 240149057.989 +UniRef50_UPI000378EE65 hypothetical protein 0.000157251568903 2.23593159626e-05 -54457657826.0 +UniRef50_A0A023RUE3 0.000301988791085 0.00315417711711 1.1514634275e+12 +UniRef50_Q3J1F8 0.000410310857448 0.00197510419034 6.31726270661e+11 +UniRef50_Q3J1F7 0.0208445033174 0.00976986721725 -4.47096649468e+12 +UniRef50_Q3J1F6 0.00315502747031 0.00137635270273 -7.18072830466e+11 +UniRef50_U5T8A8 9.94971920716e-06 4.05608903942e-05 12358105449.5 +UniRef50_K0HDE0 tRNA rRNA cytosine C5 methylase 0.000372333068099 0.00541006285113 2.03379333331e+12 +UniRef50_A8AMK7 0.000762632540255 0.0010227035599 1.04993862061e+11 +UniRef50_B2TKI7 Serine type D Ala D Ala carboxypeptidase 0.000102299725981 0.00123582843999 4.57619451807e+11 +UniRef50_UPI000474D5BE ABC transporter substrate binding protein 6.25768387806e-06 9.45205436108e-06 1289606563.33 +UniRef50_P20966 PTS system fructose specific EIIBC component 0.00209107048136 0.00736726751083 2.13006548702e+12 +UniRef50_Q6AFY0 Glutamate 5 kinase 6.1677719135e-06 2.65550382283e-05 8230589591.18 +UniRef50_W1DU15 4.65667300084e-05 3.38951472329e-05 -5115673464.28 +UniRef50_Q9TM10 1,4 Dihydroxy 2 naphthoyl CoA synthase 3.28202013443e-05 0.00178517585979 7.07447483138e+11 +UniRef50_UPI0004704F45 hypothetical protein, partial 0.00127064575081 0.000141957669611 -4.55665228941e+11 +UniRef50_Q4L3X4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0149898624179 0.00271817457813 -4.95423097147e+12 +UniRef50_W8RT27 Cation transport protein chaC 0.00227651293274 0.00044485747603 -7.39461784814e+11 +UniRef50_P9WPD4 Citrate synthase 1 0.0113707570175 0.0167683093421 2.17905810886e+12 +UniRef50_A9U864 Predicted protein 4.04835219587e-05 2.16077389641e-05 -7620385226.82 +UniRef50_A3MR63 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000262084502793 0.00344372305919 1.28446652831e+12 +UniRef50_I0C5H5 0.0221089196473 0.00369081817815 -7.4356135786e+12 +UniRef50_A7MHJ0 Multidrug resistance protein MdtC 0.000326253936736 6.54079081232e-05 -1.05306742692e+11 +UniRef50_Q9ZKU4 Phosphate acetyltransferase 8.3957196985e-05 0.00176656159321 6.79288042632e+11 +UniRef50_A6M1S0 Glycoside hydrolase, clan GH D 0.000228178381989 0.00191982715527 6.82939368638e+11 +UniRef50_Q6AA51 L fucose isomerase 0.000215706279348 0.00417994543444 1.60041199359e+12 +UniRef50_UPI000299F06B amino acid carrier protein 2.85858601498e-06 0.000344522100366 1.37933753426e+11 +UniRef50_UPI0003FD6D14 preprotein translocase subunit SecY 3.66921986831e-06 0.000323183384054 1.28991788962e+11 +UniRef50_Q3KE48 Macrolide export ATP binding permease protein MacB 2 2.63709742845e-06 5.44853369273e-06 1135011320.09 +UniRef50_UPI00037DAE2C hypothetical protein 0.000114269289755 6.06010743363e-05 -21666517147.6 +UniRef50_UPI00044207B4 PREDICTED 1.40318390029e-05 2.50539843762e-05 4449775344.13 +UniRef50_UPI000427E2A8 MULTISPECIES 5.1160787201e-06 1.93947936289e-05 5764492428.22 +UniRef50_D2J8Q0 0.0273548738913 0.00492647470874 -9.05461997742e+12 +UniRef50_UPI00047CFA7B transcriptional regulatory protein LPC_0711 1.23483993087e-05 2.70832667065e-05 5948646785.65 +UniRef50_D2J8Q4 0.0234684508688 0.0124695349464 -4.44039732975e+12 +UniRef50_A0A023X187 Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain 0.00973972226156 0.00414868564779 -2.25717009071e+12 +UniRef50_UPI00035F5A7F MULTISPECIES 0.00021572836793 7.54532659831e-05 -56630780025.1 +UniRef50_Q97LP2 Putative gluconeogenesis factor 0.000388762706854 0.00303045189421 1.06648234211e+12 +UniRef50_P25130 0.00540355463117 0.00394615334061 -5.88370785324e+11 +UniRef50_K7SFI0 MMPL family protein 9.37474133492e-05 0.00428479540653 1.69197750479e+12 +UniRef50_UPI0003B3F8CA cysteine desulfurase 6.8598991231e-05 6.35554557128e-06 -25128442825.8 +UniRef50_UPI000455DBA8 alcohol oxidase 9.08362744899e-06 3.81624592824e-06 -2126506557.97 +UniRef50_F2I8T3 PTS system mannose fructose sorbose family IID component 0.000427266965028 0.00107137923123 2.60036026012e+11 +UniRef50_E5QSU8 Transcriptional regulator, AraC family 0.00903538083312 0.00170685068881 -2.95861755044e+12 +UniRef50_A0A011QY39 3 isopropylmalate dehydrogenase 2.13506550549e-05 4.0241419582e-05 7626433455.34 +UniRef50_A3V9P5 1.61520221422e-05 3.22505371603e-05 6499168063.8 +UniRef50_UPI0003C140C5 PREDICTED 4.86692983414e-05 1.88666389327e-05 -12031699323.0 +UniRef50_Q56200 UPF0045 protein in glkA 3region 0.00349552586281 0.00148899179089 -8.10062427776e+11 +UniRef50_P43340 0.00546998098416 0.00125325329887 -1.70234471162e+12 +UniRef50_Q03638 Glutamine dependent NAD synthetase 0.0034038778168 0.00120856425564 -8.86275024167e+11 +UniRef50_X1F3U5 Marine sediment metagenome DNA, contig 1.49113208648e-05 4.18034837332e-06 -4332225278.66 +UniRef50_UPI00035E72A3 hypothetical protein 7.52799755192e-05 7.73908187746e-05 852173325.165 +UniRef50_Q1LT55 Threonylcarbamoyl AMP synthase 0.00219234459655 0.000425937555561 -7.131201987e+11 +UniRef50_X1SY05 Marine sediment metagenome DNA, contig 0.000341847846401 0.000127314394853 -86609787011.4 +UniRef50_Q12EY5 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.64825334368e-05 5.35633793892e-05 -5215621024.86 +UniRef50_I6T636 MutG 0.00500147752383 0.00104286629288 -1.59813993156e+12 +UniRef50_D7DI05 1.18529861155e-05 0.000113447712445 41015037726.5 +UniRef50_S5YTV6 TRAP type C4 dicarboxylate transport system, periplasmic component 0.0133092081594 0.00537253844266 -3.20413095854e+12 +UniRef50_UPI0002EB61A9 hypothetical protein 1.24129652105e-05 6.26385048384e-05 20276666684.5 +UniRef50_J9YRQ7 ABC transporter ATP binding protein 0.000240948503526 0.000782164227135 2.18495429085e+11 +UniRef50_A8AVU5 Cell cycle protein GpsB 0.00166450129044 0.00204299602631 1.52802969523e+11 +UniRef50_UPI0002887069 aldehyde dehydrogenase 2.04492784773e-05 5.6382479142e-06 -5979394790.11 +UniRef50_B1XZ42 40 residue YVTN family beta propeller repeat protein 5.34439096609e-06 9.18979337018e-06 1552436138.93 +UniRef50_F9Y8T0 2.59859155757e-05 8.18775957644e-05 22564157160.2 +UniRef50_E4N2K8 5.05809124277e-05 1.0865013728e-05 -16033795674.0 +UniRef50_K7WGH8 0.000185885899069 2.81399618593e-05 -63683970612.0 +UniRef50_UPI00041077BF hypothetical protein 0.000103339225354 2.57742082024e-05 -31313949253.9 +UniRef50_I6R4V1 Putative outer membrane protein 1.71386461242e-05 5.22012740727e-05 14155213169.6 +UniRef50_Q3SF48 DEAD DEAH box helicase 8.92401864878e-05 0.00292054196691 1.14303127274e+12 +UniRef50_W6RFV5 0.000205505349017 9.64489166481e-05 -44027420020.3 +UniRef50_D3PQJ8 Thioesterase superfamily protein 1.2651837593e-05 0.00232909892151 9.35178113781e+11 +UniRef50_P39852 Putative tyrosine protein phosphatase CapC 0.0228677104357 0.00538371027409 -7.05850541805e+12 +UniRef50_Q1JBZ2 Xaa His dipeptidase 0.0048986855135 0.00573969953438 3.39527680632e+11 +UniRef50_R5EHV3 0.00012095598812 5.02489268354e-05 -28545308313.8 +UniRef50_T1ZCM0 Endonuclease, putative 0.00368165158001 0.00154354284959 -8.63180732015e+11 +UniRef50_J1RUT9 Dehydrogenase 0.000103409468992 7.29107979874e-06 -38804173222.6 +UniRef50_W6ELT6 Glutathionylspermidine synthetase 0.000234463347108 0.00306372437279 1.142207395e+12 +UniRef50_Q97K94 Quinolinate synthase A 0.000463736915189 0.000385005668224 -31784770540.8 +UniRef50_P39438 Undecaprenyl diphosphatase 0.000280239581447 2.28631823718e-05 -1.0390601067e+11 +UniRef50_R7LCT1 2.1712008157e-05 9.73644342857e-05 30541812787.8 +UniRef50_O34546 0.00955950544247 0.00230176246689 -2.93003990176e+12 +UniRef50_D0W2S1 0.000718295583812 0.00869862414418 3.22175656947e+12 +UniRef50_I3U2U9 Iron ABC superfamily ATP binding cassette transporter, ABC protein 0.0100270564082 0.00672196088517 -1.33430762073e+12 +UniRef50_Q5X449 1.51498074756e-05 0.00115278825886 4.59278603216e+11 +UniRef50_L1K8B7 0.012753794904 0.00298438446265 -3.94403087932e+12 +UniRef50_A6LYL7 Methyl accepting chemotaxis sensory transducer 0.000448253835515 0.00151624221087 4.3116001282e+11 +UniRef50_UPI000185085B tyrosyl tRNA synthetase 2.31211636328e-05 5.77033695808e-05 13961260912.6 +UniRef50_P45767 Putative amino acid ABC transporter permease protein YhdX 0.00203992669816 0.00146380685304 -2.3258665126e+11 +UniRef50_UPI0003B66746 RNA polymerase sigma factor RpoD, partial 2.09647679644e-05 9.98240321908e-06 -4433715416.45 +UniRef50_Q5HNC9 ISSep1 like transposase 0.00511786813867 0.00349963448291 -6.5330078479e+11 +UniRef50_G8AR28 9.83890500953e-05 0.000323045027969 90696375106.6 +UniRef50_Q2S9Q5 Shikimate kinase 2.16171300586e-05 1.31698154875e-05 -3410284552.56 +UniRef50_W7QBC1 4.18554950343e-06 4.50381329481e-05 16492689254.2 +UniRef50_Q03Z27 Methionine import ATP binding protein MetN 0.0034926307475 0.00395606905278 1.87095730869e+11 +UniRef50_UPI0004782D1F crotonyl CoA reductase 0.00038665213185 4.64929529619e-05 -1.3732643474e+11 +UniRef50_Q6GF03 Alanine racemase 1 0.0212928500092 0.0048768586199 -6.62733717073e+12 +UniRef50_A8FHJ2 Triosephosphate isomerase 0.0104497424988 0.00105810507073 -3.79151927806e+12 +UniRef50_Q73GH4 NADH quinone oxidoreductase subunit I 0.00846826360213 0.00674887412809 -6.94138629951e+11 +UniRef50_A1JK30 Fatty acid oxidation complex subunit alpha 0.00113191549265 0.000478620154531 -2.63743344834e+11 +UniRef50_UPI00045D739F 1.83426520829e-05 6.35401538127e-05 18246786084.0 +UniRef50_B9KWI6 ABC 2 type transporter 0.00269422808131 0.000918886451209 -7.16727201963e+11 +UniRef50_Q1GCN0 MltA 0.00180681039408 0.000355804693941 -5.85788806989e+11 +UniRef50_O29777 Probable copper exporting P type ATPase A 3.66428805917e-06 7.11730660171e-06 1394025958.93 +UniRef50_Q9RRB7 Probable manganese dependent inorganic pyrophosphatase 0.000434634491936 0.0568105207464 2.27596370909e+13 +UniRef50_R9SLB3 0.00378520327101 0.000569981332219 -1.2980245519e+12 +UniRef50_B4RR70 Acyl CoA dehydrogenase, C terminal 0.000209668340276 8.91002373343e-05 -48674822694.7 +UniRef50_A3PQF0 Extracellular solute binding protein, family 3 0.00971884680711 0.00292279899301 -2.74364789944e+12 +UniRef50_D7GG00 Na+ H+ antiporter 0.000107955954865 0.00379881285644 1.49004422308e+12 +UniRef50_Q6A7Y1 Glutamyl Q tRNA synthetase 3.11726804988e-05 0.00740338958482 2.97625443155e+12 +UniRef50_A0YH35 0.000234404390814 0.000649864447795 1.67726323271e+11 +UniRef50_A0A023RSS6 rRNA methyltransferase 0.000173158710486 0.00651787625754 2.56144033218e+12 +UniRef50_N6UYS2 0.000124252569829 0.000242571279646 47766715087.0 +UniRef50_UPI0003B3CC7C methyltransferase 1.70914943342e-05 5.52876165317e-05 15420243250.3 +UniRef50_UPI000477CA46 alcohol dehydrogenase 7.58175173943e-06 5.8261944898e-05 20460215894.0 +UniRef50_A9B3R2 Lon protease 2 1.63816700317e-06 7.89429011562e-06 2525673671.76 +UniRef50_J0ZPJ9 0.000370084302795 0.000501954739708 53237713614.0 +UniRef50_UPI000473C272 hypothetical protein, partial 4.15273859945e-05 2.55607838118e-05 -6445913233.4 +UniRef50_T8WTI4 Arylsulfatase 0.00185705705839 0.000951413314313 -3.65619492982e+11 +UniRef50_M5F699 0.00174714412176 2.91997297174e-05 -6.93555232615e+11 +UniRef50_J7IM71 Drug resistance transporter, EmrB QacA subfamily 0.000830074092833 0.00250460938908 6.76030447955e+11 +UniRef50_Q7AJV9 Na+ H+ antiporter 8.5755593552e-06 7.22041787934e-05 25687654478.2 +UniRef50_A4IRH3 Trigger factor 0.0196593345938 0.006899484045 -5.15130824752e+12 +UniRef50_Q8XCW6 Protein SprT 0.00417188256124 0.00230889098632 -7.52112560273e+11 +UniRef50_UPI0004656097 hypothetical protein 6.14098489997e-06 7.68714239811e-06 624202755.485 +UniRef50_B2TPE7 Cobyric acid synthase 7.64657641136e-05 0.000921124198382 3.40998975039e+11 +UniRef50_A0A023RH98 Immunogenic protein 4.17796295122e-05 1.27082182012e-05 -11736485492.6 +UniRef50_B9KM49 0.00146637509717 7.40046318501e-05 -5.62117043157e+11 +UniRef50_M9R6A5 Ribose 5 phosphate isomerase A 0.00539829053595 0.00023815863322 -2.08320857107e+12 +UniRef50_Q1CUH3 Tetraacyldisaccharide 4 kinase 0.000175032143208 0.0034728619872 1.33137437694e+12 +UniRef50_M7WMK4 1.20177663598e-06 2.19029291616e-05 8357309306.29 +UniRef50_Q8CTN4 0.00607940714894 0.00224217023839 -1.54913962898e+12 +UniRef50_Q5HQC2 Aminotransferase, class I 0.0175013265377 0.00304322508701 -5.8369129765e+12 +UniRef50_X1ED13 Marine sediment metagenome DNA, contig 5.97144146278e-05 4.22119354768e-05 -7065965612.83 +UniRef50_UPI0003B41E95 beta hexosaminidase 2.54937698522e-05 3.53412127659e-05 3975533545.97 +UniRef50_Q89FK3 Bll6696 protein 0.000383234506454 0.00592418895915 2.23695130771e+12 +UniRef50_A9M2J7 Nicotinate nucleotide pyrophosphorylase 0.000658498470807 0.00222283271526 6.31540931024e+11 +UniRef50_W1I511 Uncultured bacterium extrachromosomal DNA RGI02237 9.11825855719e-06 7.4326048067e-05 26325184814.7 +UniRef50_G0HG32 Short chain dehydrogenase 0.00033631284139 0.00891836598299 3.4646801669e+12 +UniRef50_Q4L8L0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0232927222927 0.0071746016286 -6.50708310368e+12 +UniRef50_R4KHK5 ADP forming acetyl coenzyme A synthetase 0.00288203896426 0.00028576736418 -1.04814670479e+12 +UniRef50_T7WH30 Electron transfer flavoprotein beta subunit 0.00143420076665 0.000304450211538 -4.56094162696e+11 +UniRef50_UPI00047D95CB hypothetical protein 4.95016765882e-05 2.51119688013e-05 -9846424328.94 +UniRef50_A5UZH7 NADH quinone oxidoreductase subunit D 2 3.61454906705e-06 0.000107086419769 41772863945.0 +UniRef50_UPI0003627E6E hypothetical protein 1.45387369845e-05 2.43940855843e-05 3978725168.47 +UniRef50_UPI000477A59D MFS transporter 2.13041021088e-05 8.01154522184e-05 23742863735.7 +UniRef50_UPI000248D54F phosphofructokinase 1.48605882201e-05 8.45283208573e-06 -2586889783.46 +UniRef50_UPI000379B3FC hypothetical protein 8.50231617535e-06 1.44756458196e-05 2411506478.38 +UniRef50_G7M6V5 Drug resistance transporter, EmrB QacA subfamily 0.000203396142896 0.00134039016278 4.59018438311e+11 +UniRef50_UPI0002FCF501 hypothetical protein 0.000108354607452 2.54234371448e-05 -33480331132.9 +UniRef50_C1D381 4.80159593664e-05 3.62389027128e-05 -4754542291.8 +UniRef50_R4RP03 0.00103577717835 0.000380907636008 -2.64378870396e+11 +UniRef50_UPI0004721298 GTP pyrophosphokinase, partial 3.43618786593e-06 7.60515974612e-06 1683065107.07 +UniRef50_UPI0004798C74 hypothetical protein, partial 0.000157031175346 6.89419956487e-05 -35562682819.6 +UniRef50_UPI00017465EA acetylornithine aminotransferase 2.76712976279e-06 5.71974596922e-06 1192007395.21 +UniRef50_I5AX29 ABC type multidrug transport system, ATPase and permease component 0.00423121384711 0.00148688250167 -1.10792024089e+12 +UniRef50_E0TQE3 0.000141080003062 3.9259219208e-05 -41106299923.4 +UniRef50_R7SQ97 7.72375205943e-05 0.000357682137179 1.13218933158e+11 +UniRef50_W0YYF5 0.00020076192379 0.000322328747082 49078018355.7 +UniRef50_Q18C09 Methionine import ATP binding protein MetN 0.000289049725947 0.00129822842007 4.07417822831e+11 +UniRef50_UPI0003F12680 PREDICTED 1.18324974822e-06 6.52831408315e-07 -214136392.785 +UniRef50_B8FI62 Phosphopantetheine adenylyltransferase 3.6175700425e-05 1.5669971108e-05 -8278414558.87 +UniRef50_P38527 Transcription termination factor Rho 0.0249334743059 0.00587133716058 -7.69561868429e+12 +UniRef50_R6FSL2 0.000125828662949 0.00185680017089 6.98814439164e+11 +UniRef50_UPI000344160C 0.000304190551264 7.21331912429e-06 -1.19893352935e+11 +UniRef50_D2JFR4 0.000547407329753 0.000255043684328 -1.18030791363e+11 +UniRef50_Q6G5A9 Shikimate dehydrogenase 4.71452623886e-05 3.6562461352e-05 -4272406644.05 +UniRef50_D2JFR8 0.0479451247822 0.0103019864525 -1.5196996877e+13 +UniRef50_G4Q931 0.00031512990344 0.000837598391883 2.10926940194e+11 +UniRef50_F2IXV2 GfdT protein 8.39978823267e-06 5.92213840265e-06 -1000257640.56 +UniRef50_Q5HM63 Drug resistance transporter, EmrB QacA family 0.021279683306 0.00748211429318 -5.57024792568e+12 +UniRef50_UPI0003651980 hypothetical protein 2.03368464082e-06 4.37435610398e-06 944957792.947 +UniRef50_UPI00037DFBE2 hypothetical protein 4.66491567994e-05 4.49004538372e-06 -17020150629.0 +UniRef50_Q2G3T3 ATP dependent Clp protease proteolytic subunit 7.93737242993e-06 9.69724582376e-05 35944556723.9 +UniRef50_T9PRX2 0.000865790300272 0.000233791671239 -2.55145602036e+11 +UniRef50_UPI00036A03C0 hypothetical protein 0.000174687767135 0.000147026249191 -11167294239.0 +UniRef50_C3MFX0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.00112899308735 0.000196397728304 -3.76500190679e+11 +UniRef50_R9SIP9 CoB CoM heterodisulfide reductase subunit B HdrB1 0.00257696771695 0.000987743006891 -6.41589517431e+11 +UniRef50_O26278 tRNA guanine transglycosylase 0.00302238591038 0.000801940633003 -8.96421006406e+11 +UniRef50_S6QJ91 Aryldialkylphosphatase 0.000146410463029 0.000112143810897 -13833867964.8 +UniRef50_UPI000225F8FA hemolysin type calcium binding region, partial 7.20421798275e-05 1.44163431893e-05 -23264257399.4 +UniRef50_B8G821 Uroporphyrinogen decarboxylase 5.83464720606e-06 2.22582805103e-05 6630422305.55 +UniRef50_X2X8I7 2.67565145032e-06 0.000864895295165 3.48088650793e+11 +UniRef50_O32163 Zinc dependent sulfurtransferase SufU 0.0212547428349 0.00168829802687 -7.89921387627e+12 +UniRef50_D1BE57 1.54224767752e-06 7.16607796421e-05 28307711805.3 +UniRef50_A5ULR8 Digeranylgeranylglyceryl phosphate synthase 0.00306668390493 0.000295316705201 -1.11883494703e+12 +UniRef50_UPI00036E0F7E hypothetical protein 5.58624884417e-05 2.58509876162e-05 -12116011165.8 +UniRef50_Q6A9W7 Octanoyltransferase 0.00039596432397 0.00215124378731 7.08627859052e+11 +UniRef50_G0DV78 Periplasmic binding protein of proline glycine betaine transport system 0.000444908224649 0.00574970021227 2.14160962252e+12 +UniRef50_UPI0003602E81 hypothetical protein 4.04173779427e-06 4.86354770637e-06 331774746.256 +UniRef50_A5VKN4 tRNA ) methyltransferase 7.157573731e-06 0.00251422178024 1.01213258531e+12 +UniRef50_UPI000382652B hypothetical protein 0.0002861928382 0.000270558550679 -6311753726.51 +UniRef50_F2A8G4 6 pyruvoyl tetrahydropterin synthase 2.02275703184e-05 8.78434346665e-05 27297354177.3 +UniRef50_UPI0003F15D37 PREDICTED 9.14271541388e-06 1.93575295039e-05 4123845798.0 +UniRef50_Q5X9T1 Exodeoxyribonuclease III 0.00607719623749 0.00170721726123 -1.76421413839e+12 +UniRef50_UPI000376C1CF hypothetical protein 4.16385585551e-06 1.08756417096e-05 2709630312.17 +UniRef50_UPI000378C003 hypothetical protein 5.66607979588e-06 0.00082466359116 3.30639345567e+11 +UniRef50_UPI00046E84D4 ketose bisphosphate aldolase 6.19133215792e-06 4.67309895605e-05 16366357171.0 +UniRef50_UPI0002F33BF1 hypothetical protein 7.04903871034e-06 7.42977690177e-06 153708680.063 +UniRef50_P94377 Catalase X 2.77831196531e-05 0.00197992963749 7.88105504784e+11 +UniRef50_A6LV05 Exonuclease, RNase T and DNA polymerase III 0.000320312412053 0.00087637398625 2.24488881146e+11 +UniRef50_O33787 0.00376286315274 0.000397733437288 -1.35854416091e+12 +UniRef50_M1LPD5 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 0.000560550920582 0.000725441959403 66568535812.6 +UniRef50_Q2FZ91 Cell division protein DivIB 0.00994162116391 0.000840142817013 -3.67437849634e+12 +UniRef50_P58118 Protein translocase subunit SecY 0.00725951649411 0.00382392025051 -1.38699236305e+12 +UniRef50_UPI00045E6DF6 hypothetical protein 1.46224963276e-05 2.16522867508e-05 2838012659.08 +UniRef50_Q3IUV4 0.00212848609272 0.000938051819408 -4.80592924407e+11 +UniRef50_E8SGK9 Lysophospholipase Monoglyceride lipase putative 0.0166632011849 0.00346310829758 -5.32903948196e+12 +UniRef50_UPI00036F909A hypothetical protein 6.0034821368e-06 1.13632694683e-05 2163811917.71 +UniRef50_F2AHF5 Malate dehydrogenase 5.01669294399e-05 0.000685469743188 2.56479541952e+11 +UniRef50_F7MMY8 Cobyric acid synthase 0.00055786106727 0.000825593223702 1.08086756995e+11 +UniRef50_A6M2F6 Binding protein dependent transport systems inner membrane component 0.000514281316583 0.00134289198762 3.34520296094e+11 +UniRef50_UPI00016C3B4E SsrA binding protein 2.76248503853e-05 0.000848037806993 3.31210778182e+11 +UniRef50_UPI00036A82E7 hypothetical protein, partial 5.15138778558e-06 2.54653713965e-05 8201004464.33 +UniRef50_S5KBE3 Amidohydrolase 0.0331869513768 0.0125968329541 -8.31248347641e+12 +UniRef50_UPI0003287F61 PREDICTED 0.000352030517433 1.94721610124e-05 -1.34257889437e+11 +UniRef50_C6L8Z7 9.68423329232e-06 3.34331923063e-05 9587746186.45 +UniRef50_A7MHL5 0.000752340979993 0.000607804745002 -58351051724.9 +UniRef50_A0A038GLZ5 Peptide ABC transporter substrate binding protein 0.0141163817249 0.00383241149435 -4.15176498056e+12 +UniRef50_L7WZ77 Sugar isomerase 0.0210677496253 0.00998763257537 -4.47317922137e+12 +UniRef50_E2QQY4 Guanine deaminase 0.00489641297609 0.000558048389704 -1.75145102125e+12 +UniRef50_E6U1U1 Cys Met metabolism pyridoxal phosphate dependent protein 0.000338829335329 0.00183661026808 6.0467254239e+11 +UniRef50_D3E047 Tetrahydromethanopterin S methyltransferase subunit C 0.00308479186582 0.000973314769449 -8.52429214542e+11 +UniRef50_F3SP64 Techoic acid ABC transporter, permease family protein 0.107255534459 0.0430502288653 -2.59204697559e+13 +UniRef50_A0B9A2 Adenylate kinase 2.60415975826e-05 2.85588120524e-05 1016230371.15 +UniRef50_UPI00036A2D06 hypothetical protein 4.70721430657e-06 0.000114662227385 44390188079.3 +UniRef50_P20083 DNA topoisomerase 4 subunit B 0.00493895283309 0.00863585602378 1.49248518419e+12 +UniRef50_A6LRZ8 0.000428734051029 0.00130619644257 3.54242335139e+11 +UniRef50_U3TMR9 Replication protein 0.000789675232922 0.000263283838205 -2.12510665596e+11 +UniRef50_H1QFU3 Putative oxygen independent coproporphyrinogen III oxidase 0.000212423155214 5.51040052664e-05 -63511671357.1 +UniRef50_G7ZPE9 LPXTG surface protein 0.011073152598 0.00177710019379 -3.75293043097e+12 +UniRef50_Q6GGX9 UPF0403 protein SAR1441 0.052290588439 0.00589323571765 -1.87311806532e+13 +UniRef50_W0YTR9 0.000211821592591 7.44317151069e-06 -82510076595.3 +UniRef50_Q8RXU4 Probable low specificity L threonine aldolase 1 5.56418205475e-06 7.86794195919e-06 930056143.736 +UniRef50_UPI000377D666 hypothetical protein 7.74976302216e-06 1.70586202872e-05 3758099910.42 +UniRef50_UPI0002FDDFF5 hypothetical protein 5.69652769495e-06 1.15319855735e-05 2355845954.69 +UniRef50_Q07RP5 Ribosome binding ATPase YchF 0.00297222024655 0.00285872884884 -45817869951.6 +UniRef50_Q3K1I5 ATP dependent helicase deoxyribonuclease subunit B 0.00031870148823 0.000241896029146 -31007306341.2 +UniRef50_B9E1R4 8.52112841647e-05 0.00045010088936 1.47310411316e+11 +UniRef50_B0VKL3 23S rRNA C(5)) methyltransferase RlmD 8.27215461305e-05 0.00824181972749 3.29392805921e+12 +UniRef50_S3NQR8 C4 dicarboxylate transport two component sensor histidine kinase 0.000416549139603 0.000101367290119 -1.27242780353e+11 +UniRef50_B9KEN0 Enolase 3.89757075376e-06 8.88105366609e-05 34280406336.0 +UniRef50_A5UMV8 Sugar transferase, WcaJ 0.00350552210029 0.000662277161534 -1.14785287232e+12 +UniRef50_D3QC63 Multiple CBS domains containing cytosolic protein 0.0279882033589 0.00612255242314 -8.82743160449e+12 +UniRef50_UPI00046A5C9E branched chain amino acid ABC transporter substrate binding protein 1.59101215897e-05 2.01154302193e-05 1697734698.71 +UniRef50_K2EEA8 2.99460993188e-05 3.30145650004e-05 1238777249.97 +UniRef50_U5P8L5 0.00592963560428 0.00346923589493 -9.93293555164e+11 +UniRef50_S5CQE4 GGDEF domain protein 0.000123361434261 0.00153103634601 5.68295635987e+11 +UniRef50_C5ZZ07 ABC transporter, periplasmic binding protein 6.35498297692e-05 0.00331125536224 1.31113857729e+12 +UniRef50_UPI0001D2E14D trehalose phosphatase 2.46760839906e-05 2.74253567994e-05 1109915170.28 +UniRef50_E1XJQ2 0.00268249291483 0.000515087276506 -8.75008253248e+11 +UniRef50_K6ZAZ0 0.000947965160733 0.000738788658589 -84447120799.9 +UniRef50_UPI00046287B9 glucosamine fructose 6 phosphate aminotransferase 3.2869600633e-06 2.41679989466e-05 8429931636.35 +UniRef50_S4P3V2 UPF0047 protein C4A8.02c 1.71227161324e-05 9.91757326299e-05 33125809663.8 +UniRef50_UPI00021A5D5B PREDICTED 1.12082399598e-05 9.238539515e-06 -795192240.508 +UniRef50_UPI0003B2F6F8 cytidine deaminase 7.15181483118e-06 3.00340415394e-05 9237835718.6 +UniRef50_UPI000361B9B7 hypothetical protein 0.000120433258568 0.00452055014322 1.77638118184e+12 +UniRef50_Q73UK5 0.000461995861197 3.91122696922e-05 -1.70723295256e+11 +UniRef50_UPI0002E36D1B ketosteroid isomerase 5.11572370585e-06 3.78914167362e-05 13231949479.3 +UniRef50_X6L0W1 2.44797013856e-05 3.56484707025e-05 4508969229.44 +UniRef50_Q04BY7 Energy coupling factor transporter ATP binding protein EcfA1 3.74166416929e-05 9.45249453653e-06 -11289469365.7 +UniRef50_Q03MR7 Protein GrpE 0.000198676836237 0.00531400603965 2.06512117156e+12 +UniRef50_Q1IW96 Probable transcriptional regulatory protein Dgeo_2194 0.000438013253516 0.0655899800272 2.63026484911e+13 +UniRef50_A6LXG6 PTS system mannose fructose sorbose family IID component 9.46080172615e-05 0.00242080432721 9.39113995966e+11 +UniRef50_B9KWM5 Short chain alcohol dehydrogenase 0.00492304580028 0.000901463409552 -1.6235621615e+12 +UniRef50_A6LWF9 NLP P60 protein 0.000173158710486 0.000562653850715 1.57243967753e+11 +UniRef50_N0A5S9 GtrOC2 0.000110591598297 0.00419839599358 1.65029679738e+12 +UniRef50_N7PIW9 0.00025028915385 2.90924397763e-05 -89299827860.6 +UniRef50_C1I079 Predicted protein 4.79884625283e-05 0.000386595817526 1.36699944392e+11 +UniRef50_D8JMR4 HTH type transcriptional activator aaeR 0.000143530794236 0.00640273614812 2.52691801045e+12 +UniRef50_UPI00035DBD0C hypothetical protein 1.54058487816e-05 3.97987131975e-05 9847698698.81 +UniRef50_Z5XJ24 50S ribosomal protein L23 8.08416388515e-06 0.000694093959702 2.76950572858e+11 +UniRef50_UPI00037F9208 hypothetical protein 6.57516210684e-05 3.77326494255e-05 -11311602683.7 +UniRef50_C7RSG7 Large exoprotein involved in heme utilization or adhesion 4.80914022326e-06 3.24708848612e-06 -630619454.814 +UniRef50_UPI0003B5E1C5 GntR family transcriptional regulator 8.14473881831e-05 2.2346062574e-05 -23859930403.2 +UniRef50_A5UNJ4 Adhesin like protein 1.51399633016e-05 5.44170055438e-06 -3915307682.12 +UniRef50_F0KJQ4 0.000158309167649 0.00636985844556 2.50767866777e+12 +UniRef50_E1KWK7 Metallo beta lactamase domain protein 6.7181393972e-05 2.72263718188e-05 -16130332746.5 +UniRef50_UPI00047A5202 hypothetical protein 2.72569473049e-05 0.000273785446501 99526580370.3 +UniRef50_Q02419 Protein PhnA 0.00546521060756 0.00206096603461 -1.37433530888e+12 +UniRef50_U6A9U4 tRNA specific adenosine deaminase 0.00104857219126 0.00046506567747 -2.35568740047e+11 +UniRef50_B2N6M8 Molybdate metabolism regulator 0.00202426857316 0.000831595356419 -4.81496813344e+11 +UniRef50_UPI0004639C57 di tricarboxylate transporter 2.6631961612e-05 2.55505381709e-05 -436583913.73 +UniRef50_UPI0003C16451 PREDICTED 4.5512269869e-06 7.86534669237e-06 1337950793.92 +UniRef50_Q8XL57 ATP dependent 6 phosphofructokinase 2 0.000777751594215 0.00149601963207 2.89973621022e+11 +UniRef50_M4WU84 2.26287417368e-05 1.77661061354e-05 -1963105663.53 +UniRef50_B8D9X0 Putative Holliday junction resolvase 2.57146202194e-05 1.73499896653e-05 -3376904000.25 +UniRef50_A0A011Q708 Acetyl coenzyme A synthetase 9.82448756598e-06 5.7449327868e-06 -1646966326.12 +UniRef50_Q8P2Z1 0.000709877126964 0.000107449954763 -2.4320724203e+11 +UniRef50_Q817Z6 Transcription elongation factor GreA 0.026859291999 0.00113288515053 -1.03860661433e+13 +UniRef50_P50736 0.0146656015655 0.00426933410543 -4.19710075019e+12 +UniRef50_F2JYX7 Peptidase M75, Imelysin 0.00473705558211 0.000610485194111 -1.66594710435e+12 +UniRef50_Q1CBF6 Sec independent protein translocase protein TatB 0.00616301302537 0.00188072544648 -1.72881204518e+12 +UniRef50_O07046 FKBP type peptidyl prolyl cis trans isomerase SlyD 5.10262093503e-05 1.46797585378e-05 -14673508214.1 +UniRef50_A6UZF9 Oxidoreductase, short chain dehydrogenase reductase family 0.000149994432661 0.00130469223246 4.66165671515e+11 +UniRef50_Q57935 0.00444175919899 0.0012952044531 -1.27030276348e+12 +UniRef50_Q57936 0.0010248106264 0.00039551344445 -2.54054994698e+11 +UniRef50_B8CVY1 1,4 alpha glucan branching enzyme GlgB 2.76815835171e-06 7.52455827263e-06 1920217015.67 +UniRef50_UPI0003C1A6D9 PREDICTED 1.30690836564e-05 0.000124271209736 44893662902.0 +UniRef50_W6LVB0 0.000153902013573 0.000518363230274 1.47137465624e+11 +UniRef50_B2AP02 Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3 1.3883046789e-05 1.01700192803e-05 -1498994769.23 +UniRef50_UPI0002E1B7CA hypothetical protein 2.53920393298e-05 8.07058248876e-05 22330854006.2 +UniRef50_UPI0002FA5E7B peptide ABC transporter permease 8.99051379927e-06 4.06698190416e-05 12789324275.1 +UniRef50_P0C0F3 DNA polymerase III subunit alpha 0.00403955672508 0.00543157348254 5.61974246953e+11 +UniRef50_R1DWQ7 0.000152212092278 0.000227166696312 30260093445.0 +UniRef50_B0S155 Phosphopantetheine adenylyltransferase 1.59580192052e-05 1.56736017847e-05 -114822802.85 +UniRef50_P96719 2.6890512592e-06 1.05979177706e-05 3192906463.36 +UniRef50_UPI0004673C65 thioredoxin 0.000511667610096 0.000513386765923 694044303.774 +UniRef50_UPI00036804AF 30S ribosomal protein S17 4.5536945392e-05 0.000256717381648 85256133591.9 +UniRef50_UPI0004656BE4 DNA mismatch repair protein MutS 1.9360784624e-06 7.13687344081e-05 28030815239.8 +UniRef50_Q1LNF6 Uridylate kinase 1.95301116416e-05 0.00274782399356 1.10144572006e+12 +UniRef50_UPI00037C0023 hypothetical protein 8.46465175809e-05 2.99487191037e-05 -22082172462.7 +UniRef50_G0LV60 Integrase 0.00709967810563 0.00156983278354 -2.23246641536e+12 +UniRef50_UPI00035F36BD hypothetical protein 0.000197312630293 0.000164603691984 -13204999779.2 +UniRef50_M0P4U3 AzlC family protein 1.36802251639e-05 1.02476841127e-05 -1385758944.38 +UniRef50_A0A023LDQ6 0.000622399962998 0.000437506229925 -74643868942.8 +UniRef50_E2BB01 4.64763531924e-06 0.000149384472733 58432037384.8 +UniRef50_P00362 Glyceraldehyde 3 phosphate dehydrogenase 0.000103248004053 6.02489228975e-05 -17359256720.5 +UniRef50_F9YYR4 0.000422918965471 0.00570734467149 2.13338750472e+12 +UniRef50_UPI0003607034 hypothetical protein 8.91577732635e-06 1.32181840581e-05 1736934394.08 +UniRef50_A5IT33 Glucose 6 phosphate 1 dehydrogenase 0.00991318648846 0.00197115582353 -3.20629523911e+12 +UniRef50_E3GES0 0.000498601239345 0.00199817465828 6.05396191061e+11 +UniRef50_L2V487 4.80002939282e-05 7.88401678338e-05 12450435543.5 +UniRef50_F5M5L4 LysR family transcriptional regulator 0.00321436045767 0.00099421530855 -8.96299840944e+11 +UniRef50_A5IJ44 Phosphopantetheine adenylyltransferase 4.41194375632e-05 1.71286059875e-05 -10896529921.9 +UniRef50_G8NQU3 6.09429167621e-06 7.75085909763e-06 668776596.395 +UniRef50_A6M0K2 Glycoside hydrolase, family 3 domain protein 0.000343894292271 0.00121728994799 3.52600543984e+11 +UniRef50_Q8DUS0 0.00551687426025 0.000964545626275 -1.83783093289e+12 +UniRef50_UPI000381094E hypothetical protein 0.000100373507366 7.80193778431e-05 -9024636404.41 +UniRef50_S5YT45 Uracil xanthine permease 0.000663021385688 0.000383698085163 -1.12766244104e+11 +UniRef50_G7PJ01 6.8374547133e-05 2.3843835239e-05 -17977594844.9 +UniRef50_K0K3W4 6.08789120499e-07 2.18818150567e-06 637620087.217 +UniRef50_C5B8V8 UDP 2,3 diacylglucosamine hydrolase 0.000327323213955 0.00346603014458 1.26713450416e+12 +UniRef50_D6Y589 Periplasmic binding protein LacI transcriptional regulator 0.000124206954434 1.79884537446e-05 -42881712175.7 +UniRef50_Z2DT28 1.28477477479e-05 0.000281254004947 1.08358899746e+11 +UniRef50_B2U084 Protein CsiD 0.00378232897311 0.000380644957133 -1.37330158061e+12 +UniRef50_UPI0004791B4F autoinducer 2 import system permease LsrD 1.40550313005e-05 2.8338767364e-05 5766519529.99 +UniRef50_F2MNJ9 PTS family mannose fructose sorbose porter component IID 0.00671886744182 0.000212458061294 -2.62671730954e+12 +UniRef50_S9QQP6 Glycine oxidase ThiO 5.5269610718e-06 1.23879322796e-05 2769858270.17 +UniRef50_Q47216 E. coli fhuB gene involved in transport of ferrichrome 0.000158476947481 8.33839720682e-05 -30315955668.6 +UniRef50_G8LJW2 0.000101502798572 9.4182195523e-05 -2955417284.78 +UniRef50_A0A023KKD3 0.00279908675214 0.00192583539548 -3.52542288683e+11 +UniRef50_Q2KXF0 N carbamoyl D amino acid hydrolase 0.0135926663573 0.00175350891091 -4.77961314391e+12 +UniRef50_Q3J1R1 TRAP T family sorbitol mannitol transporter, DctM subunit 0.00460836859799 0.00159615529929 -1.2160674727e+12 +UniRef50_Q892B0 Hydroxyacylglutathione hydrolase 0.000189691451679 0.00157327773814 5.58570762357e+11 +UniRef50_U1LA38 3.34243355643e-05 3.3969477544e-05 220080506.849 +UniRef50_UPI00046894CE hypothetical protein 4.99000735682e-05 1.51613890166e-05 -14024433245.1 +UniRef50_UPI00037DFDE1 hypothetical protein 3.40576462048e-06 8.71654064824e-06 2144025452.96 +UniRef50_B7ITF9 NADPH dehydrogenase 0.0002539700886 0.0014440581311 4.8045314678e+11 +UniRef50_I0E927 0.000214543665657 0.00306015871257 1.14880971406e+12 +UniRef50_U9RLL1 Maltose mannitol ABC transporter substrate binding protein 0.00063274990576 0.000476620107794 -63031515366.9 +UniRef50_UPI0003728BB6 hypothetical protein 1.05923838599e-05 5.77718092803e-06 -1943956512.78 +UniRef50_P77256 0.00532841290473 0.00123418609915 -1.65288960323e+12 +UniRef50_A0A024KCD9 0.000194524647099 7.18116698463e-05 -49540734774.6 +UniRef50_W5XBZ3 Chromate transporter, chromate ion transporter family 2.7294379831e-06 2.40491621873e-05 8607034283.67 +UniRef50_UPI00047AFC40 hypothetical protein 2.05073103231e-05 6.03428216318e-06 -5842939072.18 +UniRef50_B3EDX3 Imidazoleglycerol phosphate dehydratase 9.25601848686e-05 2.91117623306e-05 -25614906778.3 +UniRef50_N5CGV2 Transcriptional regulator 0.0115770194233 0.00291668482813 -3.49628335033e+12 +UniRef50_W7X8F4 0.000350455617991 3.69670006157e-05 -1.26559201772e+11 +UniRef50_C0D0V3 1.24295220517e-05 5.10608533914e-06 -2956561269.53 +UniRef50_UPI000347DE1F hypothetical protein 3.81726620699e-05 6.90409511558e-05 12461907100.5 +UniRef50_G7M5H1 0.000754949114049 0.000871098999181 46891133947.2 +UniRef50_W5XD42 Dihydroorotase 4.40008531897e-06 9.10497032667e-06 1899419813.04 +UniRef50_Q3IV21 N6 adenine specific DNA methyltransferase, N12 class 0.0165812545704 0.00507050053199 -4.64703265814e+12 +UniRef50_Q39ZC5 NADH quinone oxidoreductase subunit A 1 4.62522914802e-05 4.44215931042e-05 -739075399.587 +UniRef50_G8UZP9 0.0134306090933 0.00403468268305 -3.7932507928e+12 +UniRef50_A0RBY2 0.0159004223149 0.0046612526039 -4.53739073245e+12 +UniRef50_UPI00036FBBFE hypothetical protein 0.00027447599129 4.30121294129e-05 -93444801420.7 +UniRef50_S6APH0 Peptidase M48 family protein 0.000425353168933 0.000416497333721 -3575209348.4 +UniRef50_Q87VB5 Potassium efflux system protein KefA, putative 0.000610803913599 0.000175165874053 -1.75872422445e+11 +UniRef50_Q2J3C8 OmpA MotB 8.11821913621e-05 4.95173330266e-05 -12783491881.5 +UniRef50_Q9HK17 Carbamoyl phosphate synthase large chain 9.10722347907e-06 9.83605864781e-06 294239701.434 +UniRef50_P0AB87 L fuculose phosphate aldolase 0.00427417352777 0.000615139433657 -1.47719696519e+12 +UniRef50_T1W827 0.000152233338572 3.70960768497e-05 -46482325450.3 +UniRef50_H6LQV6 0.0112425565678 0.00204461248786 -3.71332289654e+12 +UniRef50_Q9HZP7 Electron transfer flavoprotein subunit alpha 0.000496095647861 0.0023740628518 7.5815840548e+11 +UniRef50_UPI0004775C52 hypothetical protein 0.000751770529546 0.000218287655351 -2.15373582884e+11 +UniRef50_A6W0A1 Inorganic pyrophosphatase 0.000215706279348 0.00529664710818 2.05123816275e+12 +UniRef50_F0A853 PilS cassette 0.000106840008192 0.000232761615507 50836098105.0 +UniRef50_F0RP81 Cation diffusion facilitator family transporter 0.00488194346733 0.00113878465233 -1.51115914734e+12 +UniRef50_Q9JZN9 Probable TonB dependent receptor NMB0964 5.90129216602e-05 0.00262291942531 1.03508051819e+12 +UniRef50_A9KTR8 Tryptophan synthase alpha chain 0.00199487122625 0.000528283829082 -5.92079329289e+11 +UniRef50_D3E165 0.00235713963251 0.000800604432177 -6.28392361208e+11 +UniRef50_W5XBF7 Peptidase like protein 3.13669057599e-05 1.6651319765e-05 -5940862646.69 +UniRef50_UPI0003B77CF1 hypothetical protein, partial 5.03544542531e-05 0.000227047124605 71332999284.0 +UniRef50_UPI0002E07778 hypothetical protein 0.000554597022607 3.99912489397e-05 -2.07752665752e+11 +UniRef50_UPI0002BA99C0 hypothetical protein, partial 7.68482350088e-05 0.000258658809639 73399160044.8 +UniRef50_G7M4N9 Transcriptional antiterminator, BglG 0.000175032143208 0.000811958139445 2.57134840642e+11 +UniRef50_H2CA16 CRISPR associated helicase, Cas3 family 1.44040577788e-05 1.08220438007e-05 -1446102999.21 +UniRef50_F2IZL0 9.76622834857e-05 0.000108488287448 4370590649.59 +UniRef50_Q9RZ59 7.00520362817e-05 0.0304117243333 1.22493054405e+13 +UniRef50_Q9RZ58 3.42528244293e-05 0.0533424050132 2.15211552032e+13 +UniRef50_A6LPF3 Integral membrane sensor signal transduction histidine kinase 0.000112124551144 0.00124417146252 4.57021229902e+11 +UniRef50_S6A3I5 Hemolysin 0.000615537272691 0.00370509438458 1.2472921192e+12 +UniRef50_D0CXH4 Amino acid regulated cytosolic protein 2.25801457911e-05 3.56440718362e-05 5274067256.81 +UniRef50_S3YVB6 Electron transfer flavoprotein ubiquinone oxidoreductase 3.77152019826e-05 7.84494188088e-05 16444903197.8 +UniRef50_E8SIG3 O methyltransferase family protein 0.02264696582 0.0047149315001 -7.23938230575e+12 +UniRef50_E8YMA7 Xanthine dehydrogenase, small subunit 0.000186409148895 0.00012399581744 -25197027806.1 +UniRef50_UPI0003647621 hypothetical protein 2.50779277876e-05 7.89949248558e-06 -6935145134.52 +UniRef50_A0A023RWB5 Metal binding protein 0.000156416846208 0.00637636778578 2.51107052169e+12 +UniRef50_UPI000319D40D hypothetical protein 9.53850439977e-06 1.27663457427e-05 1303119160.21 +UniRef50_P42911 N acetylgalactosamine permease IID component 0.00306029094691 0.00210672751595 -3.84965258618e+11 +UniRef50_G8LUB7 8.26008728365e-05 0.00139002476547 5.2782306935e+11 +UniRef50_UPI00037F105A hypothetical protein 5.2687232277e-06 1.00903505351e-05 1946550112.02 +UniRef50_F7ZMZ2 LacI family transcription regulator 0.000640731819857 0.000688177974312 19154594783.3 +UniRef50_P25269 Tryptophan synthase beta chain 2, chloroplastic 4.58346393174e-06 8.19696540435e-06 1458814887.14 +UniRef50_S9V0M4 6.06192166757e-06 3.36491821603e-05 11137315594.7 +UniRef50_K7EAU2 0.000437159826715 0.000900507522357 1.87059150646e+11 +UniRef50_UPI0003B55347 prolipoprotein diacylglyceryl transferase 1.40764828288e-05 6.90296424277e-06 -2896037482.15 +UniRef50_B0K282 tRNA dihydrouridine synthase 0.000595677865387 0.00160390404092 4.07033279388e+11 +UniRef50_Q1IZ39 Maltodextrin phosphorylase 4.98221718638e-05 0.0222759272569 8.97295136779e+12 +UniRef50_A0A023S035 Tail fiber protein 0.000315533843529 0.00812357297385 3.15220121232e+12 +UniRef50_A7MJM9 DNA gyrase inhibitor 0.00121071966282 0.00327638827753 8.33935768363e+11 +UniRef50_UPI00036379E0 hypothetical protein 1.80794992353e-05 2.38863713166e-05 2344305517.55 +UniRef50_V5T0I0 0.000716665155766 0.000576956873815 -56401947837.0 +UniRef50_P44842 IMPACT family member HI_0722 0.00125048069074 0.00103896068992 -85393219973.3 +UniRef50_G8B031 0.000522539218953 3.54234975447e-06 -2.09525404903e+11 +UniRef50_A6QGY4 Extracellular matrix binding protein EbhA 0.0020773190929 0.000512423531082 -6.31767541735e+11 +UniRef50_A9H0U5 Enoyl [acyl carrier protein] reductase [NADH] 5.54047457835e-05 6.38142512567e-05 3395020555.77 +UniRef50_UPI0004764CEE transcription termination factor Rho, partial 4.69282743033e-05 2.34045515101e-05 -9496815560.15 +UniRef50_UPI00047511DF peptide ABC transporter permease 2.85927890939e-05 8.34779079235e-06 -8173154248.38 +UniRef50_Q7UI51 2 isopropylmalate synthase 6.47594652218e-06 0.0343864822305 1.3879630427e+13 +UniRef50_UPI0003B5C125 acetyltransferase 0.000160716782674 0.000404988543012 98615507200.0 +UniRef50_F5ZCF3 7.63395797809e-05 3.31823633499e-05 -17423097871.8 +UniRef50_UPI0003645D29 hypothetical protein 4.54228990041e-06 3.98385066922e-05 14249515852.1 +UniRef50_O28912 Phosphate import ATP binding protein PstB 1.50604124894e-05 0.00379722369929 1.52690573124e+12 +UniRef50_P29363 Threonine synthase 0.00933688136905 0.00299646473025 -2.55970400275e+12 +UniRef50_C6ST49 0.00360502231645 0.000533704888912 -1.2399285348e+12 +UniRef50_UPI00037764D1 hypothetical protein 1.66606024128e-05 0.000409516667683 1.58600814436e+11 +UniRef50_A0PY95 Alanine racemase 0.000267165698207 0.000389286479141 49301657853.6 +UniRef50_L0DZY5 Sulfur acceptor protein SufE for iron sulfur cluster assembly 6.77801292892e-05 1.8667942506e-05 -19827192478.7 +UniRef50_B9DJF9 Phage integrase 0.0107219308589 0.00326305564071 -3.01123945628e+12 +UniRef50_B2ICL0 Imidazole glycerol phosphate synthase subunit HisF 0.000204211896297 0.0201143693452 8.03797488723e+12 +UniRef50_A4X095 Superfamily II helicase and inactivated derivatives like protein 0.0134706402096 0.00331794353231 -4.09876823622e+12 +UniRef50_B2TJ36 Mg chelatase family protein 0.000518618002432 0.00127770544968 3.06452917504e+11 +UniRef50_D5UED6 7.27136282436e-06 2.42194271992e-05 6842141564.24 +UniRef50_G4LNF0 Aldehyde dehydrogenase 0.000426104795691 0.000167634837394 -1.04347493948e+11 +UniRef50_D5ARZ1 Electron transport complex subunit RnfC 0.00164965107969 0.00055525880437 -4.4181959125e+11 +UniRef50_UPI0004720CF2 peptide ABC transporter substrate binding protein 2.60716251133e-05 7.96361611971e-06 -7310425440.97 +UniRef50_A6M1H1 0.000193914035367 0.000853333778341 2.66215842229e+11 +UniRef50_A6M1H0 0.000827594611256 0.00340907198311 1.04217409331e+12 +UniRef50_UPI000383B0B4 PREDICTED 1.70642706901e-05 0.00025870213811 97552172307.5 +UniRef50_Q54VM1 4.98855334194e-06 1.35179973381e-05 3443441209.3 +UniRef50_UPI0003901246 hypothetical protein 2.89759281393e-05 4.02380714703e-05 4546665464.76 +UniRef50_E6NBZ7 Proline permease 9.62156301183e-05 0.00518199229748 2.05319045011e+12 +UniRef50_UPI000456035A hypothetical protein PFL1_03912 3.52471675958e-06 4.75871392024e-05 17788540646.9 +UniRef50_Q2YXC0 FPRL1 inhibitory protein 0.00550214554178 0.000490831088969 -2.02312914034e+12 +UniRef50_UPI0001D2F4B5 histidine kinase 3.5476217876e-05 2.70764983841e-05 -3391069835.03 +UniRef50_Q03UC7 50S ribosomal protein L9 0.0118871414312 0.00209340196429 -3.95385280549e+12 +UniRef50_K7RW71 TadB domain containing protein 0.000170294431062 0.00909554062244 3.60323141255e+12 +UniRef50_UPI0004002975 hypothetical protein 5.98979435064e-05 1.45077112247e-05 -18324593772.9 +UniRef50_B3QQR6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000108363496658 1.03656893724e-05 -39562917369.5 +UniRef50_I0ESN2 Outer membrane protein 33 0.000347603199025 0.00225848650557 7.71447040029e+11 +UniRef50_Q3J228 Putative endonuclease 0.0105861549508 0.00216151707463 -3.40112969254e+12 +UniRef50_G8PN37 sn glycerol 3 phosphate binding periplasmic protein UgpB 2.05842115461e-05 8.06909218425e-06 -5052507264.14 +UniRef50_UPI00037ED898 hypothetical protein 3.59788027216e-05 5.24796957861e-05 6661613018.87 +UniRef50_UPI0003B58F6D biotin synthase 4.30209052628e-06 6.0004686367e-06 685656084.62 +UniRef50_O27651 Conserved protein 0.00681850901043 0.000606816926888 -2.50773632016e+12 +UniRef50_U3SS39 0.00336155849069 0.00257997276607 -3.15535748164e+11 +UniRef50_Q60182 Glutamine synthetase 0.00299720748729 0.000586499750377 -9.73232296101e+11 +UniRef50_A3PHJ7 Transcriptional regulator, AsnC family 0.00884853255404 0.00317550171157 -2.29027216702e+12 +UniRef50_UPI000475DE05 hypothetical protein 1.13965823962e-05 2.52237527598e-05 5582198354.25 +UniRef50_P76419 0.00496310939566 0.00104886350313 -1.58022910001e+12 +UniRef50_K2JKB1 0.000555686780374 6.52839893415e-05 -1.97981624659e+11 +UniRef50_Q2CHF8 Probable replication protein C 0.000153091088781 4.55496562521e-05 -43415795993.7 +UniRef50_O28664 Proline tRNA ligase 0.00315064372401 0.000625242653487 -1.01953540232e+12 +UniRef50_UPI00035071FD PREDICTED 5.65946010231e-05 2.84868833395e-05 -11347430549.4 +UniRef50_UPI0004754290 UDP glucose 6 dehydrogenase 5.64026840622e-06 1.19316178785e-05 2539894985.5 +UniRef50_UPI0003B57BB8 membrane protein 6.88774752379e-06 9.29449942003e-06 971635274.679 +UniRef50_UPI00047CCE00 hypothetical protein 0.000436512327463 7.8337441607e-05 -1.4459959672e+11 +UniRef50_Q8FBC3 Glycerol kinase 0.00237929505766 0.0052991980645 1.1788006751e+12 +UniRef50_UPI000381A4A2 hypothetical protein 5.15866412245e-06 3.68912904372e-06 -593269344.507 +UniRef50_UPI0003606567 hypothetical protein, partial 1.21970337878e-05 2.59095258664e-05 5535901323.33 +UniRef50_P50601 Protein TolB 0.00149700819261 0.00186146020581 1.47133750058e+11 +UniRef50_V9VVJ4 0.000371788446086 8.18552895249e-05 -1.17049573184e+11 +UniRef50_Q7VJY3 Chaperone protein ClpB 4.60723338757e-05 0.00327916035117 1.30523730703e+12 +UniRef50_O04904 Dihydroorotase, mitochondrial 0.00517236012849 0.0036977933925 -5.95300686288e+11 +UniRef50_C9XK28 L lactate dehydrogenase 0.00012796135215 0.000270932757067 57719310621.4 +UniRef50_Q88V07 DNA polymerase IV 0.00569787752989 0.0034659574793 -9.01053513162e+11 +UniRef50_UPI000371CF62 hypothetical protein, partial 0.00192038535618 9.75412828813e-05 -7.35904521203e+11 +UniRef50_UPI0003610B2B hypothetical protein 2.59687111723e-06 3.18766683733e-06 238511482.083 +UniRef50_I6Q203 Transposase 0.00496437948703 0.00329532643394 -6.73817199117e+11 +UniRef50_UPI0003D737B1 PREDICTED 8.38030809842e-06 3.44352202793e-05 10518687777.2 +UniRef50_K0RGV2 4.25968946429e-05 0.00112381707865 4.36501856349e+11 +UniRef50_O32254 0.0025676045596 0.000936837083141 -6.58360842014e+11 +UniRef50_C6S5N2 Putrescine transport system permease protein 0.000159276788545 0.00297556511136 1.13697015567e+12 +UniRef50_A0A020D651 0.0213032093534 0.00561240815551 -6.33456899138e+12 +UniRef50_A5D5I2 DNA directed RNA polymerase subunit beta 1.04033581322e-05 3.26996720875e-06 -2879837452.35 +UniRef50_B4F1A3 Agmatinase 0.00544420955793 0.000449584654698 -2.01639136437e+12 +UniRef50_UPI0003B405D9 thioredoxin 7.78079844495e-05 6.83596029092e-05 -3814427572.5 +UniRef50_A6LX09 Transcriptional antiterminator, BglG 0.00022816252255 0.000433267641104 82803453283.1 +UniRef50_A3LGV5 0.000260092704284 0.000377183128249 47270841015.8 +UniRef50_UPI0003733DDF hypothetical protein 7.3568494784e-05 1.63391069575e-05 -23104206149.1 +UniRef50_Q9FCA2 Peptide deformylase 2 1.38463124345e-05 2.49879297961e-05 4498007651.9 +UniRef50_Q2YZB2 ATP phosphoribosyltransferase regulatory subunit 0.0140074319147 0.000307629553598 -5.53077832866e+12 +UniRef50_B8DEF0 0.000209075886147 0.00188500024592 6.76591229944e+11 +UniRef50_S5CRU7 SAM dependent methyltransferase 0.000468836268581 0.00367357662885 1.29379301003e+12 +UniRef50_P22805 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.00138475483567 0.00107706619502 -1.24217679995e+11 +UniRef50_UPI00047CAE83 hypothetical protein 5.19572729738e-06 1.5994005963e-05 4359397607.08 +UniRef50_UPI000350E4F1 2.39444829859e-06 3.38247087766e-06 398876839.571 +UniRef50_I0C1B5 Choloylglycine hydrolase 0.0186428479189 0.00136303506354 -6.97607249687e+12 +UniRef50_Q167Y1 Type II IV secretion system protein, TadC subfamily, putative 0.0123155190766 0.00248805686397 -3.96746709176e+12 +UniRef50_A3CPS1 Two component response transcriptional regulator , putative 0.00615559436315 0.000300322073074 -2.36384527578e+12 +UniRef50_UPI0003D2A318 homoserine dehydrogenase 2.94256321806e-05 1.80752638502e-05 -4582282979.66 +UniRef50_V5NWP2 0.000810564671074 0.00108717819923 1.11672275746e+11 +UniRef50_UPI0002886C73 serine hydroxymethyltransferase 0.000237607770406 0.000176778506093 -24557520462.2 +UniRef50_J4KJN9 8.21507253925e-05 0.00667490968747 2.66157769524e+12 +UniRef50_W8KL45 3.10969681189e-05 4.47817586173e-05 5524717855.47 +UniRef50_D9QPC0 Alpha beta hydrolase fold protein 0.00307593293264 0.00123409477568 -7.43572665861e+11 +UniRef50_A8LNH2 UPF0246 protein Dshi_3333 0.0012659159289 0.000252407440337 -4.09165813979e+11 +UniRef50_A3PP80 Diguanylate cyclase 0.0050811662508 0.00100252219781 -1.64659865478e+12 +UniRef50_W4KSI3 PcsB protein 0.000331825966611 0.000194714311118 -55353657871.7 +UniRef50_UPI00016A907F benzoate transport protein 3.00503137859e-05 4.02652328935e-05 4123888194.89 +UniRef50_G2KZ81 0.00127771316163 0.000345399655201 -3.76386403319e+11 +UniRef50_W7Y3S8 0.000166386071404 7.31920402115e-05 -37623574011.8 +UniRef50_UPI000300A99C hypothetical protein 1.80561189384e-05 4.08884415141e-05 9217688807.92 +UniRef50_UPI000379A26D hypothetical protein 8.80181069756e-06 1.59747719328e-05 2895812472.8 +UniRef50_G0AE82 Aldo keto reductase 0.00112078862208 0.0463085556365 1.824285606e+13 +UniRef50_UPI00037FCE78 hypothetical protein 0.000911927885878 0.000360406895028 -2.2265579193e+11 +UniRef50_A6LRX7 Baseplate J family protein 0.000462978571857 0.000977872926926 2.07869169606e+11 +UniRef50_P15031 Fe dicitrate transport ATP binding protein FecE 0.00195630393934 0.00204161228397 34440025578.2 +UniRef50_E1HL74 Transcriptional regulatory protein, C terminal domain protein 0.00163338450892 0.000412069821193 -4.93059726653e+11 +UniRef50_D4GIS9 RbsA 0.00402054897309 0.000470764545228 -1.43309153428e+12 +UniRef50_UPI0003B790C8 FAD dependent oxidoreductase 2.48950564028e-05 1.41882864998e-05 -4322454396.68 +UniRef50_U5PBB0 Glycine betaine ABC transporter ATP binding protein 0.00305662688827 0.000246097254331 -1.1346453023e+12 +UniRef50_U5MMF7 Penicillin amidase 0.000739171852123 0.0021283687312 5.60835827447e+11 +UniRef50_W0I1A1 Aspartate ammonia lyase 0.000552364180171 0.00528418870072 1.91029562496e+12 +UniRef50_UPI000469D137 hypothetical protein 0.000875748391323 8.4851249639e-05 -3.19294881497e+11 +UniRef50_UPI0002D7F2D9 hypothetical protein 1.34945408328e-05 6.42443200236e-06 -2854289694.84 +UniRef50_A6LPZ8 0.000659765809036 0.00223297072634 6.35122130509e+11 +UniRef50_P0AEW5 3,5 cyclic adenosine monophosphate phosphodiesterase CpdA 0.00409990380215 0.00112958503343 -1.19915413684e+12 +UniRef50_A1B9K8 Zinc import ATP binding protein ZnuC 2.19900774693e-05 9.56369444126e-06 -5016683317.27 +UniRef50_A6LYB4 0.000330712852793 0.00256431475951 9.01732499121e+11 +UniRef50_S4YWC9 Iron ABC transporter permease 0.000135138182163 0.00283508849182 1.09000307213e+12 +UniRef50_Q4L6B1 TelA like protein SH1505 0.0187432331894 0.00455140681341 -5.72941446128e+12 +UniRef50_UPI0003783264 hypothetical protein, partial 4.22093496452e-06 6.50113556112e-06 920544962.055 +UniRef50_M3GAZ5 HlyD family secretion protein 0.00186485961184 0.000199313861778 -6.72401257844e+11 +UniRef50_W4HIJ8 1.18330014599e-05 1.37715502368e-05 782615929.903 +UniRef50_D2ARI1 tRNA rRNA methyltransferase 0.000611314455616 0.00706777702778 2.60655317009e+12 +UniRef50_UPI0003B31E13 hydroxyethylthiazole kinase, partial 1.0763358989e-05 1.79152951735e-05 2887324401.81 +UniRef50_Q609Q1 Sulfate thiosulfate import ATP binding protein CysA 0.00032857737624 0.000125864433691 -81837702474.6 +UniRef50_R4QLQ3 0.000221708073658 0.00956079298081 3.77030318048e+12 +UniRef50_Q51548 L ornithine 5 monooxygenase 0.000235703912728 0.000196223724387 -15938636509.7 +UniRef50_Q12UL5 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00457709714287 0.00119144818953 -1.36682802905e+12 +UniRef50_P0AER4 Glutamate aspartate transport system permease protein GltJ 0.000875827504994 0.000501841048263 -1.50982921912e+11 +UniRef50_P39630 dTDP glucose 4,6 dehydratase 5.26965582947e-06 6.62787774188e-06 548330853.297 +UniRef50_Q9HZR2 0.00220681518524 0.00155472883806 -2.63255260356e+11 +UniRef50_T1AU58 Acyl CoA dehydrogenase domain protein 0.000142649012091 0.000407490987201 1.06919955328e+11 +UniRef50_J8RY92 0.00042896135097 0.000422463899101 -2623101052.22 +UniRef50_UPI0003AD3D4A hypothetical protein 8.11489912278e-07 2.90834720298e-05 11413746117.1 +UniRef50_I4Y2X2 TonB dependent outermembrane receptor 4.44624250735e-05 0.00030757372313 1.06221259764e+11 +UniRef50_UPI0003B34776 LysR family transcriptional regulator 5.27717123956e-06 8.21500999334e-06 1186041556.24 +UniRef50_Q9RRV3 0.00127130206267 0.0566096031802 2.23407512385e+13 +UniRef50_W5XB81 DNA directed RNA polymerase subunit beta 4.40177373453e-06 1.57075868843e-06 -1142915514.57 +UniRef50_G5PWF6 L xylulose 5 phosphate 3 epimerase 0.000104342533273 3.65714196011e-05 -27360030234.4 +UniRef50_A8F740 Periplasmic binding protein LacI transcriptional regulator 7.40956127913e-06 3.31153674299e-05 10377749388.8 +UniRef50_UPI00046961AC transcriptional regulator 1.71761455105e-05 6.90778528386e-05 20953356153.9 +UniRef50_UPI0003A13922 ABC transporter 3.76200876646e-05 6.34489099345e-06 -12626180686.0 +UniRef50_UPI00042B18AB Proline iminopeptidase isoform 3 7.56568137949e-06 1.00441475278e-05 1000587198.27 +UniRef50_UPI00046F35A8 hypothetical protein, partial 3.45872847578e-05 4.09013656304e-05 2549071930.75 +UniRef50_X1RXQ4 Marine sediment metagenome DNA, contig 0.000422697437022 7.63722139661e-05 -1.39815742436e+11 +UniRef50_A8LHX0 0.00476693106279 0.00285613655247 -7.71411191902e+11 +UniRef50_C1N038 Predicted protein 5.37254368201e-05 1.65793304886e-05 -14996338960.0 +UniRef50_Q5HLE0 Polyphosphate kinase 0.0111692876278 0.00347613759979 -3.10581907187e+12 +UniRef50_UPI0003B428E6 branched chain amino acid ABC transporter permease 7.97417099361e-05 0.000289420935971 84650076603.8 +UniRef50_F0KJN4 0.000353733377151 0.00727334262613 2.79353116697e+12 +UniRef50_G7U3Y8 0.00064619232184 0.0065661311498 2.38995195067e+12 +UniRef50_B9QYQ7 0.000366633845086 0.000338850348176 -11216538644.4 +UniRef50_A0A023RT23 LysR family transcriptional regulator 0.000159501122048 0.00613738168926 2.41334374183e+12 +UniRef50_P16689 Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase 0.00366142965681 0.000424494813777 -1.30679031779e+12 +UniRef50_C2SK84 Transposase for insertion sequence element IS257 in transposon Tn4003 0.00476974077466 0.00144964613488 -1.34036294822e+12 +UniRef50_P32703 0.00283790093713 0.0010116014054 -7.37299532175e+11 +UniRef50_P32704 0.00269547653981 0.00135784633589 -5.40017727891e+11 +UniRef50_B1ME21 Protein NrdI 1.57867696249e-05 4.73310388074e-05 12734808560.7 +UniRef50_P08189 Protein FimF 0.00149532564932 0.000335587164987 -4.68200657716e+11 +UniRef50_UPI0003621B16 hypothetical protein 3.37671428779e-06 3.99574415264e-06 249909952.791 +UniRef50_UPI0003AA87E8 hypothetical protein 0.000196792047996 0.000184817699091 -4834191594.73 +UniRef50_Q2LUP9 Bifunctional protein FolD 0.0113979612122 0.00497712229982 -2.59217146148e+12 +UniRef50_E6JRH7 0.00150424330657 6.42280882479e-05 -5.8135181461e+11 +UniRef50_UPI00035EC48D metallophosphoesterase 2.91306129511e-05 5.69229973607e-05 11220126637.1 +UniRef50_K2CFL6 2.10888702392e-05 9.41839499346e-05 29509380650.5 +UniRef50_UPI00041B2B13 ATP dependent DNA helicase RuvA 7.37862446398e-06 5.46389032146e-05 19079554480.5 +UniRef50_F0L985 0.00740829580323 0.00189738373436 -2.2248228287e+12 +UniRef50_UPI0003686526 hypothetical protein 7.82439291492e-05 5.8785184662e-05 -7855733935.13 +UniRef50_A6LY24 Amino acid permease associated region 0.000229256886544 0.000513160263102 1.14615277003e+11 +UniRef50_D0L5P3 0.000151187237433 0.00602420639923 2.37100990567e+12 +UniRef50_UPI000476F8E5 hypothetical protein 1.20422675296e-05 1.51987042787e-05 1274292249.45 +UniRef50_UPI0004421CDD PREDICTED 5.04832280869e-06 1.66785084755e-06 -1364738013.77 +UniRef50_F0P387 Signal peptidase I 0.0108914027252 0.00206609360669 -3.56288558986e+12 +UniRef50_Q6L2D8 Pyridoxal biosynthesis lyase PdxS 1.5806335407e-05 1.04155553404e-05 -2176324065.2 +UniRef50_P37649 Protein YhjK 0.00755568256295 0.000979625313929 -2.65483500873e+12 +UniRef50_G7U7J9 Haloacid dehalogenase like hydrolase 0.000157285828689 0.000719185659773 2.26845857095e+11 +UniRef50_UPI000390127B Transcriptional regulatory protein LiaR 0.000233256017827 0.00295786848942 1.09995948954e+12 +UniRef50_K1SRL1 Adhesin like protein 3.99857154855e-05 2.74405140594e-05 -5064651762.65 +UniRef50_UPI00047A852C hypothetical protein 4.49279546827e-05 1.73751476718e-05 -11123406301.3 +UniRef50_A6LY09 RNA polymerase, sigma 24 subunit, ECF subfamily 0.00106835657223 0.000666127906449 -1.62384648277e+11 +UniRef50_A6LTK4 0.000672425677579 0.00155904222972 3.57937982108e+11 +UniRef50_A7HN65 Glucose 1 phosphate adenylyltransferase 7.25516331892e-06 1.35400264878e-05 2537276385.22 +UniRef50_UPI000377BA4D hypothetical protein 8.72144248627e-05 2.46644594685e-05 -25252188604.0 +UniRef50_UPI0003A503E2 hypothetical protein 8.72547786887e-05 5.64451931057e-05 -12438207776.0 +UniRef50_A3PP31 0.00700559017192 0.00335348715825 -1.47439880296e+12 +UniRef50_X2XBL9 2.28646296284e-05 4.63387178885e-05 9476777490.06 +UniRef50_UPI0004759CFA L iditol 2 dehydrogenase 4.84612896173e-06 2.31343228509e-05 7383168294.45 +UniRef50_Q1GD82 0.000253264392922 4.13832290256e-05 -85539025939.1 +UniRef50_Q67KH9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.85494127818e-05 9.03198554352e-06 -3842302168.06 +UniRef50_O26346 Histidine tRNA ligase 0.00302034650922 0.00213877165269 -3.55902587721e+11 +UniRef50_U3SYS1 Gamma aminobutyrate permease 0.000264075443635 0.00419501029901 1.58696663911e+12 +UniRef50_Q8DYM7 Protein translocase subunit SecA 2 0.000203308687323 0.00278889185501 1.04383165347e+12 +UniRef50_Q87C91 Phosphate binding protein PstS 0.00380103938268 0.00187764177255 -7.76499217952e+11 +UniRef50_R6P001 1.07984047693e-05 1.51640521827e-05 1762465433.31 +UniRef50_UPI000361C657 hypothetical protein 9.63270075858e-06 1.50718041685e-05 2195832791.89 +UniRef50_A5IWE0 0.0489763846154 0.00976123020229 -1.58316390606e+13 +UniRef50_K2AF05 0.00189667906072 0.000820793165379 -4.34348338553e+11 +UniRef50_UPI0003C10267 5.21784097736e-05 0.000164200068792 45224518405.9 +UniRef50_P39393 0.00163744657209 0.000790884139125 -3.41767642677e+11 +UniRef50_Q1BTH0 Formamidopyrimidine DNA glycosylase 7.79070973519e-06 5.55792664548e-05 19292826779.2 +UniRef50_D8JEM9 0.000107545865766 0.00390871732591 1.53457956408e+12 +UniRef50_F3GHC1 Putative monovalent cation H+ antiporter subunit A 4.09319752908e-05 1.40792035729e-05 -10840793463.1 +UniRef50_F9KEG1 0.000149485901325 0.000152088875647 1050852675.88 +UniRef50_R4VNY3 Membrane protein 0.00323164852676 0.00139537731812 -7.4132522051e+11 +UniRef50_P22874 Mercuric resistance operon regulatory protein 0.0112728209962 0.00335899893494 -3.19490707965e+12 +UniRef50_P0AGB8 ECF RNA polymerase sigma E factor 0.0087249418895 0.000973191973255 -3.12947656585e+12 +UniRef50_UPI00037E5BDF hypothetical protein 3.40392583036e-05 1.93289904637e-05 -5938715642.25 +UniRef50_Q4SV05 Chromosome undetermined SCAF13832, whole genome shotgun sequence 3.17490956244e-05 1.17616036438e-05 -8069195786.68 +UniRef50_A3Q0W3 4.12182937325e-05 4.49159110089e-06 -14827020539.7 +UniRef50_A2RM05 Queuosine precursor transporter QueT 0.00616344963098 0.00245359464467 -1.49771398301e+12 +UniRef50_Q6LLQ5 Probable GTP binding protein EngB 0.0014291691902 0.00240178032016 3.92655048446e+11 +UniRef50_UPI00041CCB11 sugar ABC transporter permease 0.00025376264264 0.000416512762488 65704220551.2 +UniRef50_A6V513 2.00968583281e-05 1.40968321374e-05 -2422284201.79 +UniRef50_A0A026BBH0 Aldo keto reductase 0.00511998073964 0.00374396197367 -5.55515661471e+11 +UniRef50_A4WXV7 Transcriptional regulator, GntR family 0.000846924300327 0.000253490734069 -2.39576412947e+11 +UniRef50_M9R7V5 Cold shock protein 0.0043138275906 0.00285376436176 -5.89445442473e+11 +UniRef50_O58411 Pyruvate ketoisovalerate oxidoreductases common subunit gamma 0.00506756246733 0.00167160399168 -1.37099010972e+12 +UniRef50_A0A023RSV7 Reverse transcriptase 0.000190569586946 0.00647196514987 2.53587647014e+12 +UniRef50_D4HAZ8 0.000200256312201 0.00456455867613 1.76192242033e+12 +UniRef50_I6X2N5 0.000133860279732 0.00348944429041 1.35469044276e+12 +UniRef50_P25960 Type 4 prepilin like proteins leader peptide processing enzyme 0.0024017910303 0.000643557551107 -7.098204315e+11 +UniRef50_D5WUG2 5.30583811632e-05 0.00107859269588 4.14020787574e+11 +UniRef50_Q6D201 Sulfate thiosulfate import ATP binding protein CysA 0.000210110867828 9.15364530134e-05 -47869946332.5 +UniRef50_Q04DG6 1.13014809771e-05 5.06179038489e-06 -2519039661.69 +UniRef50_UPI0003756849 succinylarginine dihydrolase 1.14191926217e-05 3.90398405948e-05 11150794530.2 +UniRef50_UPI000473959B 3 oxoacyl ACP synthase, partial 1.01030393279e-05 2.64550794357e-05 6601519253.62 +UniRef50_C4XLK3 DNA directed RNA polymerase subunit alpha 8.76701431844e-06 1.4299277781e-05 2233442648.34 +UniRef50_O33641 Outer membrane protease IcsP 0.00396340291988 0.000823282908657 -1.26770498214e+12 +UniRef50_UPI0002197747 haloacid dehalogenase 5.4464920978e-05 0.000138764290221 34032689833.0 +UniRef50_P49778 Elongation factor P 0.0243691113653 0.00281104347607 -8.70325655411e+12 +UniRef50_P0AD45 Quorum sensing regulator protein G 0.00276463240917 0.000283051155147 -1.00184480467e+12 +UniRef50_B9JX75 1.18971460875e-05 1.95629989661e-05 3094798877.68 +UniRef50_UPI00046CD0D4 ABC transporter permease 0.000289851814929 2.60264482471e-05 -1.06509538031e+11 +UniRef50_F0Y8P3 6.36920694229e-05 0.000120610750605 22978770064.0 +UniRef50_V7EH29 2.13034294627e-05 4.23040068502e-05 8478190797.4 +UniRef50_Q5HN04 0.0103739905284 0.00490301659956 -2.20869931147e+12 +UniRef50_Q6GJF6 Dihydroneopterin aldolase 0.00232431798977 0.000494944198654 -7.38540648416e+11 +UniRef50_Q5HN02 0.00511203516334 0.00151265278619 -1.45311483504e+12 +UniRef50_UPI00046B8737 3.20490075933e-05 1.87948343769e-05 -5350872374.46 +UniRef50_UPI00037E9D63 hypothetical protein 1.50319541718e-05 1.22409268427e-05 -1126771982.51 +UniRef50_C0HG71 3.13634432924e-05 5.03385356753e-05 7660477645.54 +UniRef50_P32929 Cystathionine gamma lyase 0.000319565139608 0.000212968777781 -43034259354.0 +UniRef50_UPI00046313F5 translation initiation factor IF 3 2.20513827302e-05 2.3759145088e-05 689444620.445 +UniRef50_B7KEP3 Bifunctional protein FolD 2.36352233125e-05 2.81908793437e-06 -8403729294.85 +UniRef50_V4Q726 0.000164972710783 3.58789719943e-05 -52116726507.4 +UniRef50_H9KRJ0 8.65056717976e-05 0.000108560576405 8903835634.12 +UniRef50_A0A031F6L1 Porin O 0.000936219727163 0.000395428249963 -2.18324155603e+11 +UniRef50_UPI0003B54A55 chemotaxis protein 0.000110740462558 1.11214277493e-05 -40217426815.3 +UniRef50_P0A2Y1 Arginase 0.00219165048988 0.000946983052827 -5.02487518124e+11 +UniRef50_S9RRM6 High affinity K+ transport system, ATPase chain B 1.5874461802e-05 3.8665645654e-05 9201080600.33 +UniRef50_UPI0004745E14 hypothetical protein 8.41849552099e-06 1.16685248209e-05 1312076710.72 +UniRef50_B9KUL3 GCN5 related N acetyltransferase 0.043070442519 0.00133126895675 -1.68506165644e+13 +UniRef50_Q98H85 Cation efflux system protein 0.00724470395197 0.000916990353245 -2.55457562959e+12 +UniRef50_I7EYE9 0.000325030721334 7.38653142985e-05 -1.01398556967e+11 +UniRef50_W8S3E2 0.000180059545 4.07898024684e-05 -56224904092.1 +UniRef50_UPI000376F465 hypothetical protein 1.71213333445e-05 1.28125491575e-05 -1739509051.02 +UniRef50_J5HWF5 7.28087787662e-05 0.00031492698931 97746092721.2 +UniRef50_Q9JS61 Dihydroxy acid dehydratase 0.00762570552755 0.0748872952463 2.7154329162e+13 +UniRef50_B1Y6A6 Periplasmic nitrate reductase 0.0113032890575 0.00224511089736 -3.65689767959e+12 +UniRef50_K4VY87 0.00106921300841 0.000777149224201 -1.17909733711e+11 +UniRef50_UPI000363A65E ABC transporter ATP binding protein 2.80029543414e-05 8.39860800505e-06 -7914515188.39 +UniRef50_M1MNB9 Transcriptional regulator, RpiR family 0.000159276788545 0.00128182932957 4.53188236079e+11 +UniRef50_P75980 Putative protein BeeE from lambdoid prophage e14 region 0.00426428940886 0.000440771201791 -1.54360122004e+12 +UniRef50_D2J7Y2 0.0501460901656 0.0110872105218 -1.57685490186e+13 +UniRef50_L0EBD3 Lipoprotein, YaeC family 0.000233604285751 0.000994010170098 3.0698518674e+11 +UniRef50_A4EAB4 1.24116549453e-06 0.00031575802666 1.26974316408e+11 +UniRef50_A0A017HMY7 0.00288134441751 0.000277129587083 -1.05135348435e+12 +UniRef50_UPI0003700BFB hypothetical protein 0.000109587993289 3.17183709175e-05 -31436922119.1 +UniRef50_UPI000373B788 hypothetical protein 7.24868328232e-05 1.4988848442e-05 -23212641874.3 +UniRef50_A0A011PBV4 0.000430592382719 0.000126941167813 -1.22587721677e+11 +UniRef50_F7R3U3 Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein 0.00265905521061 0.000725277465772 -7.80689805713e+11 +UniRef50_P51007 Transcriptional activator protein FnrL 0.010924379198 0.00336039348192 -3.05367385412e+12 +UniRef50_V9AR48 2.9854908243e-05 0.000116380461046 34931427454.5 +UniRef50_UPI00035F62EF hypothetical protein 0.000302054295602 0.000210047016396 -37144467671.7 +UniRef50_B9KX33 FlaF protein 0.0219735267976 0.00427982755914 -7.14316350869e+12 +UniRef50_Q2JHF7 Acetylglutamate kinase 6.19591189608e-05 2.22433417259e-05 -16033746637.1 +UniRef50_UPI000262920F ATP dependent Clp protease adapter protein clpS 0.000750503540748 4.59388084051e-05 -2.84441428428e+11 +UniRef50_UPI0002D72F69 hypothetical protein 1.29567753991e-05 3.85614977173e-05 10336940605.1 +UniRef50_A1AVM5 DNA directed RNA polymerase subunit alpha 1.16934550292e-05 8.6884601404e-06 -1213153312.04 +UniRef50_Q3IZ91 Crotonyl CoA reductase 0.0108533022874 0.00290603747031 -3.20840833057e+12 +UniRef50_B5F3L0 Protein YebF 0.000319903380388 0.000989888397308 2.70481172971e+11 +UniRef50_D9SWY9 Phosphofructokinase 0.00108413797722 0.000982013686033 -41228829558.2 +UniRef50_M9RJL9 0.000379127393571 4.86416934213e-05 -1.33421132666e+11 +UniRef50_B5YDB0 Thymidine kinase 1.91510515853e-05 2.88785795692e-05 3927122417.29 +UniRef50_UPI00023772DA putative transmembrane efflux protein of the MFS type 1.40065594042e-05 6.94387244008e-06 -2851293396.33 +UniRef50_UPI00038F2DE3 1.62392071367e-05 6.95892921192e-05 21538083986.6 +UniRef50_Q5Z8D5 Os01g0349000 protein 1.134658825e-05 6.76041932905e-05 22711885513.3 +UniRef50_UPI000361B676 hypothetical protein 4.93829784593e-05 5.05574345641e-06 -17895448727.0 +UniRef50_A6U352 0.000857922701941 0.000550279574895 -1.24199305594e+11 +UniRef50_UPI0003681885 hypothetical protein, partial 1.87512100193e-06 2.47073470555e-06 240456561.153 +UniRef50_X1XJA7 0.00414672156631 0.00429582582897 60195220550.9 +UniRef50_Q5HK08 Beta hemolysin 0.00913599284771 0.00540851226132 -1.50482965406e+12 +UniRef50_UPI000237AA65 binding protein dependent transporter inner membrane component 6.1846068264e-05 9.91302653334e-05 15052087885.5 +UniRef50_Q3J7A3 Adenylate kinase 7.92539999372e-06 2.42494351445e-05 6590213308.82 +UniRef50_Q2FFI7 Adenylosuccinate lyase 0.0421063992613 0.0492150615458 2.86985419735e+12 +UniRef50_K1PM14 Threonine synthase like 2 3.34492692877e-06 7.32800194701e-06 1608016262.69 +UniRef50_P14789 Protease LasA 0.000346160743749 0.000233451940873 -45501926813.6 +UniRef50_Q9RXH7 Fatty acid CoA ligase, putative 7.50966821352e-05 0.017791347335 7.15226779142e+12 +UniRef50_Q17VI1 Carbamoyl phosphate synthase small chain 0.000111572213456 0.00312544472898 1.21673731889e+12 +UniRef50_G2QDG1 1.5801699577e-06 1.35536304113e-06 -90757310.9104 +UniRef50_Q47AK8 Transcriptional regulator, BolA protein family 2.64940892145e-05 8.13834753557e-05 22159518753.7 +UniRef50_A6UYT5 0.000274048041324 0.000738448811562 1.87484289783e+11 +UniRef50_A6LPC3 ATP dependent helicase deoxyribonuclease subunit B 0.000494562618109 0.00173729230968 5.01705226495e+11 +UniRef50_I6U222 ABC transporter permease 0.00401912504961 0.00180066840691 -8.95618170182e+11 +UniRef50_P05804 Beta glucuronidase 0.00113750019631 0.000206055348713 -3.76035715089e+11 +UniRef50_E0TN47 4.99100029369e-05 9.12410005749e-05 16685830934.8 +UniRef50_Q09677 0.000647118838034 0.00276447848459 8.54804072241e+11 +UniRef50_D3QCP0 0.0173476716169 0.00572999287322 -4.69019947378e+12 +UniRef50_P58342 Copper transporting ATPase 2 4.40081108864e-06 0.00012453931293 48501387458.4 +UniRef50_Q3JV89 4.40752835366e-06 1.72728233748e-05 5193877474.94 +UniRef50_F2AIV2 0.00260719677038 0.000232413915278 -9.58728980467e+11 +UniRef50_UPI00040366D8 cardiolipin synthetase 2.33762738432e-05 3.62849061332e-06 -7972422422.46 +UniRef50_UPI000477CEDC competence protein ComL 0.000490759753637 0.000192020709849 -1.20604617918e+11 +UniRef50_E4TDW5 DNA methylase N 4 N 6 domain protein 0.000207030706866 0.00576410520652 2.24345916848e+12 +UniRef50_A5IR33 Prophage antirepressor 0.00741134670854 0.00384056768113 -1.44156731175e+12 +UniRef50_Q5HEW0 Serine protease SplA 0.00734905356531 0.000507047884434 -2.76220165422e+12 +UniRef50_A6LV33 AAA ATPase 0.000206348090817 0.00143659586125 4.9666612176e+11 +UniRef50_B1M3E9 Binding protein dependent transport systems inner membrane component 0.00668225323777 0.00138481947429 -2.13863901714e+12 +UniRef50_UPI0002C36421 PREDICTED 5.21652074428e-05 6.27352751496e-05 4267266042.55 +UniRef50_Q2FGH0 Superoxide dismutase [Mn Fe] 1 0.00747540721377 0.00037720515265 -2.86563127681e+12 +UniRef50_UPI0003B79D68 peptide ABC transporter permease 0.000205176288339 0.000113131587831 -37159575110.6 +UniRef50_X0RZB2 Marine sediment metagenome DNA, contig 1.7601830662e-05 1.93984529218e-05 725318453.316 +UniRef50_UPI00036B0C57 hypothetical protein, partial 0.000113381181349 0.0625668048801 2.52132135369e+13 +UniRef50_UPI000362FAB4 hypothetical protein 0.000125823749883 1.9383129883e-05 -42971384467.3 +UniRef50_Q73X87 Ribonuclease PH 0.00667418467342 0.00421694454862 -9.92017992109e+11 +UniRef50_UPI00037598D9 hypothetical protein 9.71883093639e-06 1.37287971546e-05 1618872570.11 +UniRef50_V4Z1T8 4.4276361754e-06 3.63074346043e-06 -321715368.007 +UniRef50_W7WAI9 2.31705772358e-05 6.49857500581e-06 -6730691888.72 +UniRef50_D0K7A4 IucC family siderophore biosynthesis protein 0.01365102113 0.00393519815943 -3.92239695977e+12 +UniRef50_I1ZP85 1.11177068986e-05 0.00470009831517 1.89299901182e+12 +UniRef50_Q3IV82 0.0254352988171 0.00648290318177 -7.65131469002e+12 +UniRef50_Q3IV81 0.00702869045209 0.000846077209436 -2.49599683525e+12 +UniRef50_A6M1G7 Thiamine pyrophosphate protein domain protein TPP binding 0.000685745318784 0.00120017689762 2.07682341161e+11 +UniRef50_F6D2B8 ABC transporter related protein 0.00368202428849 0.000246439531448 -1.38698772578e+12 +UniRef50_A5UMH6 0.00337213048898 0.000635089688595 -1.10497695839e+12 +UniRef50_C4J6F8 8.09529774758e-06 0.000146767206662 55983551324.3 +UniRef50_Q3IV88 0.0101713007153 0.00049731587432 -3.90550639345e+12 +UniRef50_UPI00037A900D hypothetical protein, partial 7.8402376145e-05 1.73955881179e-05 -24629188964.0 +UniRef50_O31678 NADPH dependent 7 cyano 7 deazaguanine reductase 0.0165607479755 0.0115988485796 -2.00317967548e+12 +UniRef50_UPI0003707B6D hypothetical protein 1.53325344607e-05 7.68099452447e-06 -3089020567.21 +UniRef50_W0H2V6 Hemolysin activator protein 0.000552041371149 0.000146559158908 -1.63698144908e+11 +UniRef50_O26230 Probable deoxyhypusine synthase 0.00262093867135 0.00236227762256 -1.04424639525e+11 +UniRef50_UPI0003B47108 PREDICTED 4.84672197334e-06 9.24871027547e-06 1777136696.04 +UniRef50_Q8KA28 3 oxoacyl [acyl carrier protein] synthase 1 0.0103911558271 0.0119304306329 6.21424128127e+11 +UniRef50_P0A2X7 Carbamate kinase 1 0.0176563649554 0.0140878144938 -1.44066761239e+12 +UniRef50_E4N8R6 1.31310347922e-05 5.85092373542e-05 18319737227.4 +UniRef50_UPI0003B30ABB sodium 3.24893264685e-05 1.33350963211e-05 -7732797759.34 +UniRef50_R0F7E9 Molybdopterin guanine dinucleotide biosynthesis protein MobA 2.7449217049e-05 2.74497453582e-05 213284.907123 +UniRef50_UPI0002F30145 50S ribosomal protein L3 5.08462694234e-06 7.21831173316e-05 27088483961.2 +UniRef50_F0MZ05 0.000493613804407 0.000289053871314 -82583355222.3 +UniRef50_C6WR75 Short chain dehydrogenase reductase SDR 0.000111134245983 0.00831285132515 3.31113383125e+12 +UniRef50_UPI00037F0FC3 hypothetical protein 1.18623493346e-05 0.00226315081611 9.08872780455e+11 +UniRef50_R5WF49 1.98798999584e-06 3.82966355237e-05 14658245756.8 +UniRef50_UPI000255E7F9 MerR family transcriptional regulator 0.000926711715395 0.000120373524491 -3.2552862255e+11 +UniRef50_Q5E4V6 Ribose import ATP binding protein RbsA 0.00031862893321 0.00146875485522 4.64319948348e+11 +UniRef50_G7SI90 8.79531428448e-06 1.55116645269e-05 2711473011.75 +UniRef50_Q837G3 Formamidopyrimidine DNA glycosylase 8.60554416956e-06 0.00835777457458 3.3706619934e+12 +UniRef50_Q9KPS2 Na translocating NADH quinone reductase subunit B 0.000833720765893 0.00287670683851 8.24778547775e+11 +UniRef50_A1WG05 Dimethylmenaquinone methyltransferase 0.00530308289461 0.00136944030877 -1.58805978313e+12 +UniRef50_D0KX67 6.16053119243e-06 0.000247837433278 97567931081.2 +UniRef50_E6K041 GTPase HflX 0.000343165745867 0.00449558393003 1.67638217685e+12 +UniRef50_Q54277 Dihydrofolate reductase 2.40732337741e-05 0.000779643301974 3.0503290842e+11 +UniRef50_UPI00046CCCAD hypothetical protein 3.1077415077e-05 1.01431396247e-05 -8451423892.54 +UniRef50_UPI0003A0652D peptidase C60 2.28290831091e-05 9.38643106147e-06 -5426963591.51 +UniRef50_G7M701 NAD dependent epimerase dehydratase 0.000148811822151 0.00127586044159 4.5500335811e+11 +UniRef50_E0NNQ0 0.000247274649087 0.00254914725009 9.29294216177e+11 +UniRef50_O26325 Cyclic 2,3 diphosphoglycerate synthetase 0.00388200704292 0.000669868465534 -1.29677976107e+12 +UniRef50_Q9RX12 0.00025873805213 0.0428070649503 1.71772816955e+13 +UniRef50_UPI0004757A78 replication initiation protein RepC 4.82053261111e-05 1.27556738889e-05 -14311459618.3 +UniRef50_Q4FUR4 Homoserine O acetyltransferase 0.000106053140962 0.00807706923074 3.21799701081e+12 +UniRef50_Q5HP79 3 phosphoshikimate 1 carboxyvinyltransferase 0.0171545815073 0.00545575553442 -4.722959606e+12 +UniRef50_A4VYG8 Ribosomal RNA large subunit methyltransferase H 0.000894311910907 0.00230722898052 5.70411959444e+11 +UniRef50_UPI00046C9F03 hypothetical protein 2.78223735227e-06 4.78966086832e-05 18213225321.9 +UniRef50_A6M2J1 Glycosyl transferase, group 1 0.000145631731206 0.00213450270197 8.02931617087e+11 +UniRef50_I1ENI9 3.03647275924e-05 3.20077048074e-05 663290063.293 +UniRef50_A1WY05 Tryptophan synthase alpha chain 6.03454238986e-06 1.31086651197e-05 2855910155.28 +UniRef50_UPI00047CE877 hypothetical protein, partial 2.50591108207e-05 0.000595332465114 2.30226351169e+11 +UniRef50_J7TB42 Oxygen insensitive NADH nitroreductase 0.00018874299443 0.00193124074851 7.03467726174e+11 +UniRef50_Q6A6Y6 6,7 dimethyl 8 ribityllumazine synthase 0.00164124342979 0.00473539781693 1.24914809563e+12 +UniRef50_X9LDU8 0.00437869009959 0.00115108929725 -1.30302205102e+12 +UniRef50_UPI000252BAC1 PREDICTED 2.35467222547e-05 4.04005921262e-05 6804114087.37 +UniRef50_A8LU41 Replication protein B 0.0206527645079 0.00590632862231 -5.95331712613e+12 +UniRef50_C6ST62 0.00360577688688 0.000482031831339 -1.26109421158e+12 +UniRef50_C6ST67 0.00476603538458 0.00155231870474 -1.29741686039e+12 +UniRef50_P37780 dTDP 4 dehydrorhamnose 3,5 epimerase 1.03869520212e-05 3.445025868e-05 9714652188.14 +UniRef50_UPI00037518CF hypothetical protein 9.46331512487e-07 1.14617432135e-05 4245200742.31 +UniRef50_I7EP81 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.00424443357646 0.000649656259564 -1.45125571571e+12 +UniRef50_B2TS08 PHP domain protein 0.00163691463422 0.000256797134949 -5.57170370402e+11 +UniRef50_S9R0I2 9.93267750971e-05 2.3320126524e-05 -30684816735.4 +UniRef50_K7VG66 4.12409083971e-06 2.49041144677e-05 8389150538.19 +UniRef50_E3I2I3 PUCC protein 8.43480735608e-05 4.78283012381e-05 -14743480234.7 +UniRef50_UPI00032A201E PREDICTED 1.26166630636e-05 1.67823392421e-05 1681734591.86 +UniRef50_M2WAS0 4.87801433499e-07 2.152918866e-06 672228340.789 +UniRef50_D4H9P2 Amine oxidase 0.000217266859686 0.00649614133503 2.53485867615e+12 +UniRef50_R6G969 Hypoxanthine phosphoribosyltransferase 0.000592488113511 0.000708822406533 46965581675.3 +UniRef50_P75684 0.00110954780239 0.000131624549324 -3.94799617731e+11 +UniRef50_A6L4U5 Altronate oxidoreductase 0.000150156451202 0.00429462944642 1.67317460657e+12 +UniRef50_Q5HNN3 Porphobilinogen deaminase 0.0122699608397 0.00392796608385 -3.36776565072e+12 +UniRef50_UPI00034C244F hypothetical protein 6.38888048112e-06 9.91684319403e-06 1424281840.17 +UniRef50_UPI000467C74C hypothetical protein, partial 0.000135683874576 7.14726709925e-05 -25922850846.7 +UniRef50_B0KQA4 Lipoprotein 0.000497180446663 0.000242726059064 -1.0272635878e+11 +UniRef50_B5Y813 7.13439341265e-05 5.48643350466e-06 -26587481163.4 +UniRef50_Q46ZM0 sn glycerol 3 phosphate import ATP binding protein UgpC 0.0168706248213 0.00384318185498 -5.2593385902e+12 +UniRef50_UPI00041C29D4 acyl CoA dehydrogenase 5.54462639687e-06 2.71780250604e-05 8733668512.11 +UniRef50_Q1MA75 Glutamate 5 kinase 0.000664940069619 0.00138435390009 2.90436191562e+11 +UniRef50_W2DD36 Pirin family protein 9.56373699016e-06 7.50921228771e-06 -829436834.232 +UniRef50_UPI000374B537 hypothetical protein 6.88597937187e-06 1.0470590916e-05 1447151668.5 +UniRef50_D8JIN7 Diguanylate cyclase domain protein 5.62851871995e-05 0.00508647495217 2.03074933549e+12 +UniRef50_Q838L2 L rhamnose isomerase 0.00246771786606 0.00600039425772 1.42618481013e+12 +UniRef50_Q95XX1-3 Isoform c of Nicotinate phosphoribosyltransferase 8.96024584777e-06 1.66253822996e-05 3094509647.41 +UniRef50_UPI0002558ADA RNA binding protein 5.75973883736e-06 6.03255532236e-06 110139362.829 +UniRef50_E5QTA2 0.000107230539787 7.60645733524e-05 -12582083099.1 +UniRef50_D8BS45 0.000114506174628 0.000473770115279 1.45039261505e+11 +UniRef50_F4GQ68 Acetolactate synthase 2 catalytic subunit 6.83851429081e-05 0.000387097362143 1.28668033944e+11 +UniRef50_U3SQS3 0.0050800647338 0.00159667324045 -1.40628789189e+12 +UniRef50_A6LWQ9 0.000369702478148 0.0017084374783 5.40463747686e+11 +UniRef50_A6LWQ8 0.0001909709893 0.00138984395529 4.83999728196e+11 +UniRef50_P55478 UPF0721 transmembrane protein y4hK 0.00136672589222 0.000716724846167 -2.62413398701e+11 +UniRef50_Q4PDQ3 1.23787024116e-05 1.34261010992e-05 422847703.211 +UniRef50_A6LWQ2 0.000187803974553 0.000315846743525 51692437095.5 +UniRef50_UPI00035D39C5 MULTISPECIES 5.21231885978e-06 8.54319736737e-06 1344716527.99 +UniRef50_UPI0002375F1F hypothetical protein 0.00143434354276 0.00048733713943 -3.823181061e+11 +UniRef50_UPI00037B7293 hypothetical protein 3.01668644459e-06 4.56323211034e-06 624359463.513 +UniRef50_Q0ZKT3 ChrA 9.60524144667e-05 0.00138625496421 5.20870601896e+11 +UniRef50_Q5PGP5 Glutathione transport system permease protein GsiC 0.00187193432061 0.000193227942332 -6.77714364955e+11 +UniRef50_A1ISE9 SpoU methylase family protein 0.000263362317798 0.00350267031795 1.30774839044e+12 +UniRef50_B4V0E4 1.85448134736e-05 0.000178948633104 64756990360.8 +UniRef50_A1WDW4 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000186955026974 5.36971005001e-05 -53797860176.2 +UniRef50_UPI0003B33BE3 excinuclease ABC subunit A, partial 9.31159610723e-07 6.20396998906e-05 24670267597.1 +UniRef50_UPI0003C7EA97 protein tyrosine kinase 2.17318396365e-05 2.44158850603e-05 1083582074.53 +UniRef50_A0A023RVY2 Peroxidase 0.000225589236365 0.003209128431 1.20449138502e+12 +UniRef50_UPI0003B6B16C GumN family protein 2.72622024195e-05 1.2011127702e-05 -6157046015.19 +UniRef50_UPI0003814F56 hypothetical protein, partial 0.00301368815027 0.000274683593385 -1.10576975098e+12 +UniRef50_K0SL40 1.16112264068e-05 3.79649919873e-06 -3154901271.38 +UniRef50_UPI00035D3F59 hypothetical protein 0.000179290988471 7.7564287329e-05 -41068317578.0 +UniRef50_E3EY41 0.000626528039592 2.06189650528e-05 -2.44612928732e+11 +UniRef50_UPI000371CC4C hypothetical protein, partial 3.17404198979e-05 2.03245374636e-05 -4608731827.36 +UniRef50_UPI000471DA2C hypothetical protein, partial 6.66322239618e-05 5.16705616031e-05 -6040206694.45 +UniRef50_R9ZP34 GntR family transcriptional regulator 0.000291120299886 0.000588671173145 1.20124938894e+11 +UniRef50_A5UJX8 Peptide nickel ABC transporter, permease component, DppB 0.00281784679336 0.00106670196846 -7.06958654776e+11 +UniRef50_Q47AM5 Phosphoribosyl ATP pyrophosphatase 9.53970735437e-05 5.17276217342e-05 -17629893579.9 +UniRef50_A1B4P8 0.000582087481806 0.000100337529268 -1.94488367576e+11 +UniRef50_UPI000468F104 hypothetical protein 3.28664846183e-05 2.03183631001e-05 -5065830639.66 +UniRef50_A0KXX9 Ion transport protein 0.00117690198404 0.000703051887205 -1.91299098887e+11 +UniRef50_B0VBT1 0.000222320577909 0.00616611339217 2.39958209766e+12 +UniRef50_UPI000366C56B hypothetical protein 2.82101963236e-05 2.43181287929e-05 -1571275423.18 +UniRef50_UPI000463A6B8 carbonic anhydrase 1.66895300323e-05 2.37532247619e-05 2851700243.62 +UniRef50_UPI0004791861 chemotaxis protein CheW 0.000165289930707 0.000105008894531 -24336194035.7 +UniRef50_Q8CS22 Putative membrane protein insertion efficiency factor 0.0023666020019 0.00260573563408 96541181810.7 +UniRef50_A8LHU2 Processing peptidase 0.0061055635639 0.000560812462369 -2.23848406144e+12 +UniRef50_D5WZX2 Poly beta hydroxybutyrate polymerase domain protein 0.00783147632262 0.00187480032019 -2.40478319882e+12 +UniRef50_UPI0003B3160E beta lactamase 2.68061958871e-06 3.62947109964e-05 13570421192.6 +UniRef50_W4UEC1 0.000139898634813 0.000826457488646 2.77172234317e+11 +UniRef50_R7I9W9 Val start codon 3.99378741759e-05 5.96224488951e-05 7946904371.04 +UniRef50_Q07QX1 NADH dehydrogenase 0.000255943443219 0.000780138338526 2.1162391183e+11 +UniRef50_A5E8J0 Heat inducible transcription repressor HrcA 0.00824710879027 0.00134813141531 -2.78520182624e+12 +UniRef50_A4VKS4 Lipoprotein, putative 0.000502826985466 0.000166219533874 -1.35892558846e+11 +UniRef50_Q2CAF3 Transposase orfA IS5 family element 0.000273300472288 0.000229676447605 -17611554091.5 +UniRef50_L7VRM1 OadB 0.00414564638548 0.00197845163906 -8.749231136e+11 +UniRef50_N6U3D2 Transposase 0.000359584983277 0.000159048564335 -80959013185.5 +UniRef50_C1D0K2 0.00068931561726 0.0314794093342 1.24303386705e+13 +UniRef50_X5K3C1 Phosphoglucomutase phosphomannomutase family protein 0.000347179042659 0.000257411427881 -36240287658.4 +UniRef50_UPI00026C6979 ABC type enterochelin transporter permease, partial 9.17249552513e-06 2.66222643533e-05 7044685808.69 +UniRef50_A3PNM9 ROK family protein 0.00382484297307 0.000500338884245 -1.34214309691e+12 +UniRef50_P31675 Sugar efflux transporter A 0.00389116332432 0.00061441903723 -1.32286187887e+12 +UniRef50_P30417 Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase 0.000552919022573 0.000331816522686 -89261792437.2 +UniRef50_Q9SH30 Probable copper transporting ATPase HMA5 1.53007726499e-06 5.07037312941e-05 19852007560.1 +UniRef50_F6AYB7 Lipoprotein 3.06286651881e-05 1.21952881679e-05 -7441780506.03 +UniRef50_Q8X7X9 Probable ATP dependent helicase DinG 0.00322257779892 0.000669475517634 -1.03071872104e+12 +UniRef50_P0AA62 Inner membrane protein YghB 0.00267941591725 0.000338148899085 -9.45198225812e+11 +UniRef50_A4VZ41 ATP dependent exoDNAse , alpha subunit helicase superfamily I member 0.000255591490141 0.00304429359698 1.12583326175e+12 +UniRef50_R9ZFU1 Ammonium transporter 0.00128362274926 0.00707748390358 2.33905284667e+12 +UniRef50_A5IQG6 Alpha beta hydrolase fold 0.00948232904894 0.000469190946785 -3.63871445548e+12 +UniRef50_A1VLE6 3.62644118822e-05 2.85316569017e-05 -3121808077.2 +UniRef50_G7ZLK6 Galactosyl transferase 0.0107618562079 0.00255673810335 -3.31250686693e+12 +UniRef50_K2DS47 1.89413224876e-05 8.86269994962e-06 -4068863597.2 +UniRef50_H6RPX4 6.35842519842e-06 0.000119884995349 45832069497.6 +UniRef50_UPI00047AC889 ATPase P 3.17054757443e-06 4.53287265882e-05 17019774206.9 +UniRef50_G7LZ49 Alpha beta hydrolase fold protein 0.000919843985708 0.00159953975806 2.74401524104e+11 +UniRef50_UPI000370CAD4 50S ribosomal protein L5 0.000987380905901 0.000560586160108 -1.72302276237e+11 +UniRef50_Q44290 Homocitrate synthase 1 5.82103379182e-05 9.73875440996e-06 -19568573075.5 +UniRef50_K0TM89 0.000120319073387 2.28695027754e-05 -39341587496.6 +UniRef50_UPI0003C7F990 histidine kinase 2.49103995888e-05 6.18451536442e-06 -7559869253.83 +UniRef50_D7GFC8 Ppx GppA phosphatase family 0.000417042333463 0.00524774921477 1.95021564742e+12 +UniRef50_R6TT37 1.39623065708e-05 0.00059704367748 2.35397104649e+11 +UniRef50_H9UYD8 0.000269632849186 0.000506257208899 95528157723.6 +UniRef50_P58586 Putative gluconeogenesis factor 0.00284581245179 0.000774722274249 -8.36124519807e+11 +UniRef50_UPI000473FA3F hypothetical protein, partial 0.000168743292593 0.000106953155524 -24945436585.0 +UniRef50_F5YM75 ABC transporter, permease protein 0.000479988007449 0.000810661186474 1.33496820189e+11 +UniRef50_UPI0003619046 hypothetical protein 1.06745767645e-05 1.6010795515e-06 -3663082169.22 +UniRef50_UPI0003B69332 NADH dehydrogenase 1.77800789571e-06 5.70114121169e-06 1583817061.92 +UniRef50_A6QE51 0.000865998240698 0.00124135629171 1.51536651355e+11 +UniRef50_Q7A528 UPF0354 protein SA1564 0.0195903990573 0.00930101942891 -4.15394882087e+12 +UniRef50_B9KRF2 0.00207758440124 6.59574698727e-05 -8.12118477632e+11 +UniRef50_Q5XAE3 Malonyl CoA acyl carrier protein transacylase 0.00550770081011 0.00301956989197 -1.00448898445e+12 +UniRef50_UPI00036445B6 MFS transporter 8.83300502232e-06 7.74061772693e-06 -441010156.248 +UniRef50_I7DEQ4 Trk system potassium uptake protein TrkA 0.00628145457055 0.00110415262574 -2.09014032776e+12 +UniRef50_UPI0003A5CBBE hypothetical protein 3.08863079482e-05 1.62378174148e-05 -5913775385.53 +UniRef50_T1Y9W9 Regulator of kinase autophosphorylation inhibitor 0.0172299258589 0.00159841561035 -6.31063250756e+12 +UniRef50_R5QQK6 UPF0301 protein BN682_00876 3.75241223158e-05 7.38462311456e-05 14663681057.0 +UniRef50_W4U2A1 5.0527468837e-05 0.00128758607023 4.99415737797e+11 +UniRef50_M9VDD9 Periplasmic binding protein 2.06951071981e-05 0.00149263552215 5.94240408255e+11 +UniRef50_Q2RS90 1.54913580894e-05 1.34892721421e-05 -808266665.282 +UniRef50_UPI00046448EA deaminase 9.09807857523e-06 6.89789078035e-05 24174625579.9 +UniRef50_Q54TJ4 Probable ATP dependent RNA helicase ddx27 2.00718153452e-06 4.3864287513e-06 960531298.061 +UniRef50_W7K686 0.000391120335048 0.000217822850854 -69962320968.4 +UniRef50_W5X6I0 Metallophosphoesterase 2.42185029341e-06 3.77254746648e-06 545293023.687 +UniRef50_D3QEQ6 Para aminobenzoate synthase, amidotransferase component PabAb 0.0110624267328 0.000955852892789 -4.08014788082e+12 +UniRef50_A4SR46 Short chain dehydrogenase reductase 1.49224925967e-05 0.00418584934359 1.68385435277e+12 +UniRef50_U3TK30 Iron sulfur cluster assembly ATPase protein 2.96772838078e-05 0.000147004646892 47366496245.7 +UniRef50_UPI0004412958 ribosomal protein S12 7.28483175509e-05 0.000178830794421 42786426463.7 +UniRef50_Q92263 Glyceraldehyde 3 phosphate dehydrogenase 4.69732337339e-06 2.80583112081e-05 9431117460.43 +UniRef50_R7PWP6 0.00289705369113 0.00202838482117 -3.50692282569e+11 +UniRef50_Q92PC8 5,6 dimethylbenzimidazole synthase 0.00214208927053 1.32389155389e-05 -8.59443012241e+11 +UniRef50_Q49W91 Na H(+) antiporter subunit A1 0.0186862266216 0.00660006311788 -4.87933252035e+12 +UniRef50_Q8RGJ4 Aspartate tRNA ligase 7.61572270731e-05 0.0312513917784 1.25858247515e+13 +UniRef50_Q0TBG1 Guanylate kinase 0.00198413837299 0.000796882842116 -4.79309627076e+11 +UniRef50_P08369 Inner membrane protein CreD 0.00325321608528 0.000421017665556 -1.14339325702e+12 +UniRef50_G7M6S6 Radical SAM domain protein 8.33302403623e-05 0.000720310090259 2.57156582025e+11 +UniRef50_B9T7I1 5.6460130937e-06 1.9875074788e-05 5744446816.21 +UniRef50_A6LYI7 Polysaccharide deacetylase 0.000251099327394 0.00225574198931 8.09298842349e+11 +UniRef50_Q5LW47 50S ribosomal protein L24 0.00144776128338 0.0011983377356 -1.0069534701e+11 +UniRef50_UPI0003EAF802 PREDICTED 6.17504325624e-06 1.48888081776e-05 3517853828.67 +UniRef50_F8WKJ0 0.0121834634069 0.0024411288099 -3.9331000287e+12 +UniRef50_B3FTP2 Putative membrane protein 0.000219882923169 8.75166569277e-05 -53437885998.2 +UniRef50_UPI0003BB74C6 PREDICTED 1.36041627187e-05 8.67984253906e-06 -1988008484.72 +UniRef50_C4LL84 Sialic acid transporter 0.000180840546199 0.00827658309472 3.26835061277e+12 +UniRef50_UPI0003746324 hypothetical protein 3.6849670474e-06 1.0368839811e-05 2698361455.01 +UniRef50_E8PBY1 AdiY 9.96005247615e-05 0.00674620957393 2.68331763621e+12 +UniRef50_B9KQL5 0.00175213030668 0.000470555047793 -5.17387658711e+11 +UniRef50_L0KL03 ABC type sugar transport system, periplasmic component 0.00772323312431 0.0038227277368 -1.57468188952e+12 +UniRef50_M3Y9H2 0.000103133635481 1.87017501852e-05 -34086188189.7 +UniRef50_Q8YPE1 Acetyl coenzyme A synthetase 2.01613725332e-05 0.000231077632785 85149482497.3 +UniRef50_B8FRY4 Periplasmic binding protein 0.0004592283376 0.0011664232256 2.85503254543e+11 +UniRef50_UPI00016C42F5 drug resistance transporter, EmrB QacA subfamily protein, partial 2.61599585786e-05 3.21370098824e-05 2413008958.01 +UniRef50_P0AC82 Lactoylglutathione lyase 0.00592452041641 0.00041506704306 -2.22423393542e+12 +UniRef50_Q8ZXL4 NH dependent NAD(+) synthetase 2.50654519738e-05 7.12486380937e-06 -7242835597.74 +UniRef50_UPI00046D6304 hypothetical protein 3.3564706617e-06 3.820267938e-05 14067842070.6 +UniRef50_P9WGB4 O succinylhomoserine sulfhydrylase 1.569442599e-05 1.36860564936e-05 -810803411.162 +UniRef50_A0A024HB78 Rod shape determining protein RodA 0.000387096275183 0.00486576159628 1.80809214953e+12 +UniRef50_UPI00047E14BB alpha amylase 5.58695593168e-06 4.23477883964e-05 14840799172.1 +UniRef50_U5MX52 Macrolide export ATP binding permease protein MacB 5.85855130096e-05 0.000601686345668 2.19256470741e+11 +UniRef50_A5V3U8 3.56792049985e-05 0.000363613511276 1.3239110365e+11 +UniRef50_R1DQP4 3.80192761535e-05 2.38555019617e-05 -5718089450.28 +UniRef50_A5ULR1 Predicted phosphatidylglycerophosphatase A related protein 0.00425209515452 0.000164674742667 -1.65014177855e+12 +UniRef50_I7BLG8 0.000308530298509 7.00973198006e-05 -96258319406.1 +UniRef50_K7SKZ4 Glycosyl transferase, group 2 family 0.00906985349168 0.000712474767724 -3.37397634743e+12 +UniRef50_A0A018R4T4 Nitrate reductase Z subunit alpha 2.69275765937e-05 1.82185042295e-05 -3515959385.76 +UniRef50_F3TY15 Serine aspartate repeat protein F 0.00332587517771 0.00117876559106 -8.66814488128e+11 +UniRef50_Q8DCB9 Non canonical purine NTP pyrophosphatase 3.35659091628e-05 3.25069822608e-05 -427501784.832 +UniRef50_Z9KIC6 8.59889079894e-05 1.13356456323e-05 -30138438112.1 +UniRef50_Q8E5U9 ATP synthase gamma chain 0.000411243278946 0.00309938393463 1.08523536989e+12 +UniRef50_UPI00047577E0 hypothetical protein 2.54964350921e-06 3.43698964308e-06 358232523.205 +UniRef50_K0LW41 0.00453083806435 0.000456899562284 -1.64469896613e+12 +UniRef50_P58205 Flagellar L ring protein 0.00405409179738 0.00161568316105 -9.84415489125e+11 +UniRef50_V5V8K7 Thiamine monophosphate kinase 0.000346412610349 0.00918996773844 3.57025172783e+12 +UniRef50_V8NK60 Octapeptide repeat protein T2 2.80105138267e-05 2.58497145237e-05 -872341194.61 +UniRef50_L4WM60 Starvation sensing protein RspB 0.00149302501322 0.000947512667497 -2.20230028158e+11 +UniRef50_UPI00036B0F2C hypothetical protein 1.55923852647e-05 2.61928364828e-05 4279532238.91 +UniRef50_UPI00046310F9 pseudoazurin 0.000523955257203 0.000193842457496 -1.33270588181e+11 +UniRef50_A0RKF7 Lipoyl synthase 1.42655462901e-05 4.81571787673e-05 13682467928.1 +UniRef50_B5FM40 ATP phosphoribosyltransferase 0.00289929044295 0.00260195691064 -1.20037195686e+11 +UniRef50_Q0A4M5 ATP synthase subunit delta 0.000212070780251 0.00191295717107 6.86668708197e+11 +UniRef50_Q8DSS6 0.0072460574956 0.00418685173549 -1.23503890603e+12 +UniRef50_UPI0003B3C008 hypothetical protein 2.24330132509e-05 7.06496690325e-05 19465655623.9 +UniRef50_E2QHF8 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.000529230083303 0.000553718822241 9886404419.89 +UniRef50_UPI000364343F hypothetical protein 6.75603350749e-05 2.32268264439e-05 -17897981467.7 +UniRef50_UPI000479AAE0 hypothetical protein 1.44325942474e-05 7.06273563612e-06 -2975302359.71 +UniRef50_UPI0003F0EEE2 PREDICTED 1.81394895088e-05 2.70127568248e-05 3582246902.7 +UniRef50_Q2CE09 0.000819219773903 0.000795243444249 -9679538503.97 +UniRef50_Q16DQ1 Flagellar protein, putative 0.000106478118328 7.00449518916e-05 -14708516375.6 +UniRef50_UPI0002DE5CBD hypothetical protein 0.00023660206564 2.11247094991e-05 -86990852878.6 +UniRef50_Q9I3V2 0.000894920666348 0.000386955719131 -2.05071682622e+11 +UniRef50_I0EM06 Metalloendopeptidase related membrane protein 0.000663009076357 0.00459924750868 1.5891077582e+12 +UniRef50_R4ZBM2 0.000523942770178 0.000116725970428 -1.64398419171e+11 +UniRef50_P37604 D alanyl D alanine carboxypeptidase DacD 0.00283004851349 0.000538205133743 -9.25245296486e+11 +UniRef50_M3Z6H8 1.52963633229e-05 3.69297165746e-06 -4684431604.95 +UniRef50_B0V4K0 Phosphoenolpyruvate protein phosphotransferase 5.2893879798e-05 0.00587787347158 2.35161574174e+12 +UniRef50_Q02LX5 Putative glutamate cysteine ligase 2 0.000395695830542 0.000145955537989 -1.00823220762e+11 +UniRef50_UPI0003FA526E trehalose synthase 8.16898465844e-06 4.96299308366e-05 16738292755.2 +UniRef50_UPI00046A3CDD hypothetical protein 4.33853032839e-06 4.58677694342e-06 100220204.816 +UniRef50_R6Q6V2 Cytosine specific methyltransferase 4.73633612113e-05 0.00392354288315 1.56486123908e+12 +UniRef50_P39119 Citrate synthase 1 2.87032122391e-06 1.97519364397e-05 6815315223.33 +UniRef50_I1JAZ8 0.000603475278435 0.000308693420057 -1.19007053607e+11 +UniRef50_UPI000362AC26 hypothetical protein 1.73383949038e-05 3.15740207617e-05 5747096849.61 +UniRef50_UPI0002377E25 binding protein dependent transport systems inner membrane component, partial 0.00044875436205 0.000281171989782 -67655060151.6 +UniRef50_UPI00046A4CBA hypothetical protein 2.30682586959e-06 2.50221029829e-06 78879091.5027 +UniRef50_Q0QEP2 ATP synthase subunit beta, mitochondrial 1.32370562884e-05 7.32487831724e-06 -2386818797.54 +UniRef50_Q62KZ5 5.23989252616e-05 0.000313031088522 1.05220402624e+11 +UniRef50_C3PHK6 Lipoyl synthase 0.000197636643381 0.0113645633529 4.50822534623e+12 +UniRef50_I0C1U2 Trehalose operon transcriptional repressor 0.0174496358606 0.00252373966088 -6.02576745716e+12 +UniRef50_B4UIY8 3.64300386614e-05 2.52435933999e-05 -4516105225.19 +UniRef50_Z5X3R4 Aconitate hydratase 1.34556872871e-05 0.000125426235039 45203884160.6 +UniRef50_UPI000375B6D1 hypothetical protein 3.48540891708e-06 1.99367856433e-05 6641622665.46 +UniRef50_F8HFF8 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.0123873869598 0.00780000724527 -1.85198148424e+12 +UniRef50_W5X5A5 0.000983116396219 3.61237502835e-05 -3.82312552071e+11 +UniRef50_I6U3N4 0.000730618042937 0.000851875111142 48952966425.9 +UniRef50_W8YU14 0.00164587608939 0.000229814125973 -5.71681591667e+11 +UniRef50_UPI00035E9EF0 hypothetical protein 2.27321010622e-05 2.58446608692e-05 1256578589.49 +UniRef50_D7BMZ3 ABC transporter related protein 0.000139680305184 0.0060305719843 2.37822526023e+12 +UniRef50_UPI000255BEE2 transcriptional activator, partial 3.06117049653e-05 6.21453211802e-05 12730507826.9 +UniRef50_D4HBV2 Transporter, major facilitator family protein 9.80483087926e-05 0.00286593275075 1.11742891498e+12 +UniRef50_Q1C8B1 Succinylornithine transaminase 0.0075443137861 0.0209197814473 5.39984043027e+12 +UniRef50_O34206 Alginate biosynthesis sensor protein KinB 0.00139144155009 0.000598076575463 -3.2029117594e+11 +UniRef50_W8RVI9 Iron sulfur cluster assembly ATPase protein SufC 1.42773010451e-05 0.000235689132928 89386673559.9 +UniRef50_A7H1C4 GTP binding protein LepA 5.68718678529e-06 2.42084518542e-05 7477261989.8 +UniRef50_UPI00046A28BD ABC transporter permease 6.65388561092e-06 6.75104204853e-06 39223246.1067 +UniRef50_Q3ADL9 Acetyl CoA carboxylase, biotin carboxylase 0.00312797972953 0.00135634583452 -7.15230343808e+11 +UniRef50_A2RED4 GntR family regulatory protein 0.00411125111341 0.00757022240469 1.39642915664e+12 +UniRef50_B7IBN3 Thiol 0.000183245625651 0.0180189703715 7.20050094883e+12 +UniRef50_UPI00047E966E cobinamide kinase 4.08956546798e-05 0.000119238621968 31628017270.6 +UniRef50_W5X9G4 Methylthioadenosine phosphorylase 2.0325324158e-05 2.05286628687e-05 82090332.7562 +UniRef50_UPI000456030C hypothetical protein PFL1_02724 6.13871297414e-07 2.58194996202e-05 10175821461.8 +UniRef50_I6TWK1 0.00475068834251 0.000820831638329 -1.58653137624e+12 +UniRef50_I0C256 0.00511584105806 0.00089489910665 -1.70404606257e+12 +UniRef50_P64549 0.0014181526131 3.87631026651e-05 -5.56876472373e+11 +UniRef50_UPI000477C3DA MULTISPECIES 1.66872935978e-05 9.3336860745e-06 -2968741596.07 +UniRef50_UPI00047DA574 hypothetical protein 5.73782744043e-06 1.08651239756e-05 2069952530.25 +UniRef50_F3WYB3 Phasin family domain protein 6.63778872882e-06 4.60061014549e-05 15893470951.0 +UniRef50_A9CRC0 0.00023862256351 0.000122169320374 -47013603296.0 +UniRef50_U5NMP2 0.0164672440999 0.00535497467104 -4.48615953133e+12 +UniRef50_UPI000262D125 DNA mismatch repair protein MutS 2.25112512046e-06 3.52247198232e-05 13311844813.0 +UniRef50_Q6FZZ7 Threonine tRNA ligase 7.85472199989e-05 9.28668884306e-05 5781025867.97 +UniRef50_UPI00036D1788 MULTISPECIES 2.50591866615e-05 0.000649490890808 2.52090741603e+11 +UniRef50_L7WQ34 0.00687790937647 0.00039551344445 -2.6170227857e+12 +UniRef50_P37748 O antigen polymerase 0.00260381567713 0.000816252516064 -7.21661183991e+11 +UniRef50_UPI0004672B4A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 3.42028284485e-06 3.66508832666e-06 98830977.1078 +UniRef50_B9DK04 3.24042441426e-05 3.94060188209e-05 2826702359.07 +UniRef50_A0A032Y4K4 8.79229969723e-05 0.000149934025056 25034612998.3 +UniRef50_Q027L3 Ribonuclease 3 1.16301406405e-05 1.9867985309e-05 3325718982.4 +UniRef50_F4DYP4 Adenylate cyclase 0.00123182095919 0.000327440563791 -3.65109463618e+11 +UniRef50_A0A024HYE6 4.52311897248e-06 6.84041908825e-06 935522493.207 +UniRef50_UPI0003B4674E peptide ABC transporter permease 6.79283804487e-06 2.55365825428e-05 7567079665.41 +UniRef50_A6LR23 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 0.000393001645363 0.00131267784945 3.71284569286e+11 +UniRef50_F2MN23 Decarboxylase 1.61382631969e-05 0.00208772156579 8.36323600441e+11 +UniRef50_P11553 L fuculokinase 0.00291583361068 0.00154302324365 -5.54220391448e+11 +UniRef50_P46126 0.000109457885986 0.000127861071825 7429591955.69 +UniRef50_P46122 0.0028053497348 0.00135820763149 -5.84229025537e+11 +UniRef50_Q88QE3 MORN domain protein 9.43714972093e-05 0.000151444464203 23041057139.4 +UniRef50_A6LX93 NERD domain protein 0.000273110124948 0.00175084395613 5.96579281481e+11 +UniRef50_Q5F6R3 Agmatinase 0.000128688405295 0.00188687368667 7.09800973449e+11 +UniRef50_Q8XE09 2 keto 3 deoxy L rhamnonate aldolase 0.00142077779903 0.0087399968234 2.95485853706e+12 +UniRef50_A7FFQ7 Potassium transporting ATPase C chain 0.0015904658901 0.000475838802792 -4.4998863316e+11 +UniRef50_UPI0002197648 orotidine 5 phosphate decarboxylase 2.78390542434e-05 1.45259209371e-05 -5374675286.27 +UniRef50_A6LX07 Na+ H+ antiporter 0.000212414153 0.000961485196865 3.02409172544e+11 +UniRef50_A7ZMU2 UPF0266 membrane protein YobD 0.000247802618498 0.00095359163165 2.84935685615e+11 +UniRef50_UPI000262832B transcriptional regulator 7.19489360017e-06 2.6826275205e-05 7925429658.0 +UniRef50_UPI000378C8E7 hypothetical protein 1.69556494328e-05 1.96334875494e-05 1081076108.44 +UniRef50_Q57MZ8 0.000222032794259 0.000250902743813 11655152909.1 +UniRef50_UPI0004720DD8 hypothetical protein 6.00366868773e-05 4.04298216227e-05 -7915532106.58 +UniRef50_Q1J0J9 DinB YfiT family metal binding protein 0.000808898547544 0.00543247240164 1.86659350253e+12 +UniRef50_UPI0003EDF3DD PREDICTED 3.9644834698e-05 0.00197850890829 7.82743219046e+11 +UniRef50_Q5HKZ8 Uroporphyrin III C methyltransferase, putative 0.00935563207926 0.00467699437783 -1.88882345341e+12 +UniRef50_UPI0003B7617D hypothetical protein 3.34897986333e-05 2.05205875927e-05 -5235829647.21 +UniRef50_P37766 Acetate CoA transferase YdiF 0.00345693267139 0.000858467472737 -1.04903228745e+12 +UniRef50_I3TTL9 0.00172663849265 0.0017926301725 26641650964.4 +UniRef50_A6FD16 1.29186557541e-05 2.15364452649e-05 3479107377.68 +UniRef50_UPI00040EB463 ATP synthase F0 subunit I 2.71472807436e-05 4.36824589561e-05 6675454353.84 +UniRef50_Q49W05 0.0174443588119 0.0362409750643 7.58842464151e+12 +UniRef50_Q9I1M2 2 oxoisovalerate dehydrogenase subunit alpha 0.00077956081639 0.000324797928185 -1.83593358537e+11 +UniRef50_M1EBV1 ADAM metallopeptidase with thrombospondin type 1 motif, 4 5.92049981843e-05 0.000593789837823 2.15818459856e+11 +UniRef50_K0HKR5 Cobyrinic acid a,c diamide synthase 0.00016556013101 0.00608946784961 2.39155424052e+12 +UniRef50_M9VNR8 NAD glutamate dehydrogenase 0.000132143150579 0.0058982657746 2.3278544616e+12 +UniRef50_Q3J792 D alanine D alanine ligase 7.18377474282e-06 7.85341744493e-06 270342976.282 +UniRef50_B8JBE1 Sporulation domain protein 4.2692743156e-05 3.53387120655e-05 -2968912595.34 +UniRef50_G7LIJ8 1 Deoxy D xylulose 5 phosphate synthase 1.13061556956e-05 0.000335981390994 1.31075376703e+11 +UniRef50_X2HFM3 Integral membrane protein 0.000589727450661 0.00403315293669 1.39015312429e+12 +UniRef50_A3PNQ6 Response regulator receiver protein 0.000927874677158 0.000428700176898 -2.01522871315e+11 +UniRef50_E8SGT7 Enoyl CoA hydratase Enoyl CoA hydratase [valine degradation] 3 hydroxyacyl CoA dehydrogenase 0.0144019718007 0.00220842313314 -4.92268522878e+12 +UniRef50_L8WI83 4.47946352985e-05 3.94861592991e-06 -16490039256.1 +UniRef50_UPI0002000A30 amino acid decarboxylase, partial 0.000205620752056 7.3412754802e-05 -53373990866.0 +UniRef50_D8JGA5 0.000444015505135 0.00524724665621 1.93912335797e+12 +UniRef50_A3ACF3 Adenylyltransferase and sulfurtransferase MOCS3 2.03815475252e-05 3.51526921673e-05 5963292354.34 +UniRef50_UPI000382D11F MULTISPECIES 5.46540777085e-05 3.53461762128e-05 -7794836768.41 +UniRef50_UPI0003720140 hypothetical protein 9.35847889313e-06 4.26616774038e-05 13444909915.0 +UniRef50_I6SLY5 0.00194989782703 0.000649620490267 -5.24937917047e+11 +UniRef50_R9SLL8 Aspartate aminotransferase 0.00249365054423 0.000578852918232 -7.73027298825e+11 +UniRef50_C6V3U5 ABC type phosphate transport system, periplasmic component 3.59437849583e-06 4.79451807033e-06 484511073.594 +UniRef50_UPI00041F446B ABC transporter 2.96185800746e-05 3.22887723043e-05 1077989370.07 +UniRef50_UPI0001F27501 alcohol dehydrogenase 4.71691930261e-05 5.42434502021e-05 2855964432.85 +UniRef50_U2Z8B8 1.63216128414e-06 4.46073110882e-05 17349595340.3 +UniRef50_UPI0003731013 hypothetical protein 1.01153540721e-05 7.58317783359e-05 26530526906.5 +UniRef50_D7CNA1 Radical SAM domain protein 0.000117841619826 0.00156968829045 5.86128317091e+11 +UniRef50_Q494C7 ATP synthase subunit b 0.00262066954041 0.000499126825692 -8.56492828189e+11 +UniRef50_UPI00037C704A hypothetical protein 2.50653797004e-05 9.85449544691e-06 -6140820631.68 +UniRef50_Q6F739 0.000126673150626 0.00747987013875 2.96857585798e+12 +UniRef50_W0GX12 0.000495724791456 0.000212521002504 -1.14332844901e+11 +UniRef50_UPI0003B6FA07 D ribose transporter ATP binding protein 3.87867719423e-05 5.65972031506e-06 -13373797256.5 +UniRef50_Q3JRC8 4.39136378455e-06 9.37500967433e-05 36075217050.4 +UniRef50_A4WVY8 Ribosomal RNA small subunit methyltransferase G 0.0240767955736 0.00436688197425 -7.95713398788e+12 +UniRef50_A0KE20 Alcohol dehydrogenase GroES domain protein 0.00202293022897 0.000702330283654 -5.33142403509e+11 +UniRef50_Q11KE0 1 deoxy D xylulose 5 phosphate synthase 0.00622679773782 0.00117900647749 -2.03785527516e+12 +UniRef50_H6PBH3 Thioredoxin 0.00144698730955 0.000513594269898 -3.76822224128e+11 +UniRef50_K0RB57 2.01287110526e-06 1.11410714606e-05 3685166499.07 +UniRef50_N6UWS6 4.35010318814e-06 0.000137295685886 53671763160.9 +UniRef50_P76234 0.00301443593152 0.000455507334399 -1.03307087624e+12 +UniRef50_P25696 Bifunctional enolase 2 transcriptional activator 3.37449354904e-06 6.92209598824e-05 26583026485.8 +UniRef50_Q1D5H7 Mutator mutT protein 0.000237911337508 0.00850735990299 3.33847786343e+12 +UniRef50_S5YFQ1 3.12157187824e-05 2.45235243492e-05 -2701721015.14 +UniRef50_A6M2M5 0.000369282072402 0.00105984744347 2.7878971449e+11 +UniRef50_UPI0002BA0B17 TetR family transcriptional regulator 0.000149705522759 0.000902517945504 3.03919613109e+11 +UniRef50_Q2G0B1 HTH type transcriptional regulator MgrA 0.0164022935074 0.000801768914466 -6.29812321812e+12 +UniRef50_UPI000288E524 OsmC like protein 4.00164027975e-05 3.78553577514e-05 -872440404.115 +UniRef50_UPI000382593D hypothetical protein 6.09282285559e-06 1.52354208688e-05 3690979010.23 +UniRef50_X6KWY4 2.43899690743e-06 1.27279396103e-06 -470810440.381 +UniRef50_O27390 Diaminopimelate decarboxylase 0.00285997928363 0.00147257428961 -5.6011242146e+11 +UniRef50_UPI0003C19995 PREDICTED 0.000872134924636 0.00024459578201 -2.53345252649e+11 +UniRef50_UPI00030C3B7B hypothetical protein 1.09422601574e-06 4.41221369153e-06 1339512341.0 +UniRef50_Q1GIB5 Peptide chain release factor 2 0.0100595482915 0.00234010565783 -3.11643371943e+12 +UniRef50_F0YJ84 8.6442833483e-06 1.39787530604e-05 2153590884.08 +UniRef50_M1MBM8 ATP dependent DNA helicase, UvrD REP family 0.000407959711828 0.00037658250092 -12667365085.2 +UniRef50_K7SJM7 PAC2 family protein 0.000610178886572 0.00802420346497 2.99313270261e+12 +UniRef50_M4UY53 Cytochrome c type biogenesis protein CcsA ResC 9.7123324747e-05 0.0022740105291 8.78836077806e+11 +UniRef50_UPI000197AB5D isopentenyldiphosphate isomerase 4.93267720338e-05 1.38231088656e-05 -14333264499.9 +UniRef50_Q58131 Acetylornithine aminotransferase 0.00485537942714 0.00021837299274 -1.87201640004e+12 +UniRef50_A8L3S1 Malate dehydrogenase 0.000576661933149 0.000638388505671 24919774797.4 +UniRef50_Q4MN04 0.000171527494283 0.000111284204402 -24320955393.3 +UniRef50_D3E3T4 4Fe 4S binding domain containing protein 0.00236446726417 0.000331196304892 -8.20856437302e+11 +UniRef50_Q9RVU1 0.000190649489319 0.00476045311068 1.84488579974e+12 +UniRef50_UPI000329107E 7.21440624164e-05 0.000101739584679 11948075515.3 +UniRef50_U5MZL4 Alpha amylase 0.000216560863261 0.00127994028691 4.2929932246e+11 +UniRef50_F2MMN9 Dihydroorotate dehydrogenase B ), catalytic subunit 1.39501414241e-05 0.000287179940213 1.10306222678e+11 +UniRef50_Q4L5S4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0124028405294 0.000755093583571 -4.70233837595e+12 +UniRef50_Q17Z65 NADH quinone oxidoreductase subunit N 9.516453501e-05 0.00328289703581 1.28692672845e+12 +UniRef50_Q3J1R9 Operon regulator SmoC 0.00533030401594 0.000450810953732 -1.96991122733e+12 +UniRef50_Q4KIS2 Adenine deaminase 0.00134927681215 0.00111450938242 -94778492302.3 +UniRef50_Q9CE42 Peptide methionine sulfoxide reductase MsrA 2 0.00351285164222 0.000592608772976 -1.17893788172e+12 +UniRef50_A6WVY1 Dihydroorotate dehydrogenase 1.20612851113e-05 1.5325461556e-05 1317788086.67 +UniRef50_P76083 3 hydroxyadipyl CoA dehydrogenase 0.00309784360577 0.000478713889632 -1.05737480674e+12 +UniRef50_P70996 0.0426866550656 0.00506606071203 -1.51878955972e+13 +UniRef50_UPI00036C37A7 hypothetical protein 2.11199299261e-05 5.05095807128e-05 11864962674.2 +UniRef50_C7NA93 0.000538793590574 0.000998081432814 1.85420138008e+11 +UniRef50_V4QCD9 0.000646526870252 0.00031021711541 -1.35772375014e+11 +UniRef50_UPI00047938D1 hypothetical protein 3.03315233813e-06 6.05230968877e-06 1218870871.68 +UniRef50_UPI0001C4F313 putative helicase 4.24803505171e-05 9.9185004842e-05 22892364795.3 +UniRef50_A7IGG7 ABC transporter related 0.00779791569064 0.00173905375874 -2.4460369125e+12 +UniRef50_Q5FP90 Probable malate 4.16972529455e-06 9.93483164922e-06 2327444181.19 +UniRef50_E7BHI6 8.83701660744e-07 7.85808497388e-05 31367292130.4 +UniRef50_E3A2J2 4.16919151502e-05 3.48670506162e-05 -2755281562.88 +UniRef50_Q2NYD6 Anthranilate phosphoribosyltransferase 0.000214176878489 0.00261765960356 9.7031547016e+11 +UniRef50_F2R2E2 4.57840340516e-05 0.000113232821364 27229903127.7 +UniRef50_Q9HV34 Polyamine aminopropyl transferase 2 0.000569849011664 0.000322497521783 -99858831809.1 +UniRef50_UPI000412C9C3 hypothetical protein 1.62388212176e-05 3.92887577417e-06 -4969676035.52 +UniRef50_UPI000441854A ribosomal protein L17 2.9683244738e-05 2.47146419333e-05 -2005885923.87 +UniRef50_A6LWA6 Transcriptional regulator, TetR family 0.000207409883985 0.000294335586571 35092972832.3 +UniRef50_G8VIN9 0.00121073743518 0.00614597913596 1.99241763683e+12 +UniRef50_R9NMN5 2.83677383042e-05 1.20619805475e-05 -6582834500.53 +UniRef50_E8TFY3 Amidohydrolase 3 0.000155042993445 0.000124693893825 -12252303941.9 +UniRef50_Q8D5H0 GlpM protein 0.000334058397217 0.000215929365716 -47690139623.2 +UniRef50_Q9HTQ5 0.000190716528408 0.000682134547142 1.9839148454e+11 +UniRef50_A1B622 5 Nucleotidase domain protein 0.00640888659583 0.00158584245693 -1.94712210428e+12 +UniRef50_Q1QJ95 Uroporphyrinogen decarboxylase 6.69044594053e-06 1.42202539897e-05 3039875910.59 +UniRef50_Q9HTQ9 0.000176264881143 0.000781335519178 2.44274441626e+11 +UniRef50_B0V5K4 Copper resistance protein A 0.000150805228456 0.00075744076626 2.44906210867e+11 +UniRef50_P45608 Phosphate regulon sensor protein PhoR 0.00227528250855 0.000854057946967 -5.73765795896e+11 +UniRef50_UPI00046CFE04 hypothetical protein 7.60972741481e-06 0.000139169582542 53112327935.7 +UniRef50_A6M0G0 Binding protein dependent transport systems inner membrane component 0.000706389033691 0.00155361507679 3.42035550232e+11 +UniRef50_UPI0003B46DF8 ABC transporter permease 1.59364282712e-05 6.08051972252e-06 -3978951226.7 +UniRef50_R9YPY4 Phage head morphogenesis , SPP1 gp7 family domain protein 0.0139603270343 0.00471300658733 -3.73325674182e+12 +UniRef50_UPI000380AB63 hypothetical protein 5.26941983996e-05 8.09234629456e-05 11396500509.3 +UniRef50_A3PNV6 0.0148451012947 0.00494378795455 -3.9972816982e+12 +UniRef50_S1QWB9 1.02865257393e-05 1.71250170744e-05 2760782869.71 +UniRef50_I9JNX9 Porin thermoregulatory protein EnvY 4.09119656305e-05 8.12048913078e-05 16266748545.7 +UniRef50_Q2G0P2 Transcription termination antitermination protein NusG 0.0263663657674 0.0101872215524 -6.53171906002e+12 +UniRef50_M4U471 4.27247693051e-05 3.00532080249e-05 -5115664786.36 +UniRef50_UPI0003B52E8B IMP cyclohydrolase 3.08576334557e-06 2.38934856731e-05 8400332843.08 +UniRef50_E7BFN4 2.28169365574e-05 0.000130382821062 43425667556.5 +UniRef50_I6SU84 Transcriptional regulator 0.00734380315265 0.000839763142736 -2.62576076555e+12 +UniRef50_B9E705 0.00648356407064 0.00392490771333 -1.03296096969e+12 +UniRef50_K0HLL2 Peptidase, M24 family protein 0.000156025094469 0.00673229242752 2.65491982223e+12 +UniRef50_Q6A853 0.000119080753577 0.00530947884678 2.09542740357e+12 +UniRef50_UPI0003D397E3 transposase and inactivated derivatives 0.000408077558847 9.8634351797e-06 -1.60763928361e+11 +UniRef50_H4F795 Replication protein C 4.00228073909e-05 1.63041745115e-05 -9575503153.77 +UniRef50_A0A023V7M1 ATPase 5.44450945494e-05 0.000140599553994 34781612511.9 +UniRef50_Q9RX33 B cell receptor associated protein related protein 0.000327642012594 0.0230900943312 9.18948132772e+12 +UniRef50_UPI0003809CA6 hypothetical protein 2.3402440349e-05 5.15660562564e-05 11369997348.2 +UniRef50_U2Z2K4 Transport protein 3.99948549423e-05 5.05348403557e-06 -14106260213.9 +UniRef50_D3NUN2 0.0016449334074 0.000298835689723 -5.43436167104e+11 +UniRef50_D3NUN3 1.471661312e-06 2.66865624488e-06 483241543.183 +UniRef50_P39691 Thiol 0.00365153706276 0.00148789561695 -8.7348860254e+11 +UniRef50_Q67NS9 GTPase Der 0.00743604047995 0.00634249394181 -4.41478156772e+11 +UniRef50_UPI00037AD157 hypothetical protein 7.5655071882e-05 6.99221551835e-05 -2314448821.98 +UniRef50_K8DSJ2 Membrane bound lytic murein transglycosylase A 0.000317277698396 0.000180757876328 -55114727455.5 +UniRef50_F0YBW7 Expressed protein 0.000522108220195 0.000128594438527 -1.58866342617e+11 +UniRef50_J7QRA8 8.67103188316e-05 0.000111803973882 10130616477.6 +UniRef50_D5AP78 Demethylspheroidene O methyltransferase 0.00020770500424 0.000337667515113 52467460458.8 +UniRef50_UPI0001470FF7 MULTISPECIES 7.38766856209e-05 9.6134393708e-05 8985709887.55 +UniRef50_UPI0001D30F07 hypothetical protein 7.13673484763e-05 0.000132864797961 24827275015.5 +UniRef50_M1E6A4 1 deoxy D xylulose 5 phosphate synthase 0.000184139506761 0.0022015890492 8.14469137173e+11 +UniRef50_Q9I526 Cysteine synthase B 0.00069099022376 0.000580029984042 -44796010409.4 +UniRef50_R6W8A5 0.000529933773748 0.0003347703962 -78789850440.1 +UniRef50_D2NRM9 Aldehyde 6.79757246772e-05 0.000605690335146 2.17081986747e+11 +UniRef50_R7A897 0.00558391170876 0.00238390863839 -1.29188050796e+12 +UniRef50_UPI00046644F9 putrescine spermidine ABC transporter substrate binding protein 8.0372269168e-05 9.01821666322e-05 3960375987.28 +UniRef50_A6TCE8 Co chaperone protein HscB 0.00401154701226 0.000504814880674 -1.41571079397e+12 +UniRef50_R4ZXB5 Cation transporting ATPase, E1 E2 family 0.000438929265414 6.47151289761e-05 -1.51074839004e+11 +UniRef50_D5AR83 L malyl CoA beta methylmalyl CoA lyase 0.00064197505878 0.000127432953743 -2.07726961945e+11 +UniRef50_UPI0003B31758 ABC transporter 5.22741265592e-06 1.28805645933e-05 3089671351.86 +UniRef50_Q16AG3 5.37899681481e-05 4.42596271592e-05 -3847515607.65 +UniRef50_T6HYQ6 Nitrite extrusion protein 2 3.17997983496e-05 0.000208185671918 71209141657.5 +UniRef50_A5ULE7 Molybdenum cofactor biosynthesis protein, MoaB 0.0025215740989 0.000516588988672 -8.09437092934e+11 +UniRef50_Q0BSD5 Alanine tRNA ligase 0.00465398982997 0.00066776266642 -1.60928882243e+12 +UniRef50_P30140 2 iminoacetate synthase 0.00298106424815 0.00395450283353 3.92989102353e+11 +UniRef50_Q0TP59 33 kDa chaperonin 0.000644755983331 0.000201352299003 -1.79007508538e+11 +UniRef50_A6VEM4 0.00140893465845 0.000714475899663 -2.8036152289e+11 +UniRef50_D5ASM9 Peptide deformylase 0.00539474585891 0.00358180394578 -7.3190689763e+11 +UniRef50_C3A4E4 1.70733353367e-05 0.00136087930306 5.42510959522e+11 +UniRef50_V4R261 3.9940756406e-05 0.000661083774165 2.50763058551e+11 +UniRef50_M1MAA9 0.000458723791042 0.00321992904974 1.11473244674e+12 +UniRef50_A3LL40 0.000835057454897 0.00153775614067 2.83688082529e+11 +UniRef50_UPI000288786A cold shock DNA binding domain containing protein 1.15488475871e-05 1.75845180787e-05 2436674243.46 +UniRef50_UPI0002E3DB0E gluconokinase 4.89956767137e-06 8.44727118948e-06 1432251445.48 +UniRef50_H0A701 2.60070996402e-05 6.73294989643e-05 16682359690.0 +UniRef50_Q6F9S8 Molybdopterin biosynthesis protein OR thiamin thiazole moiety synthesis (ThiF) 0.000149994432661 0.00937785229708 3.72539945842e+12 +UniRef50_U3T3B6 Phospholipase D protein 8.03161678458e-05 0.0104105833421 4.1704556249e+12 +UniRef50_S5YCI7 Transcriptional regulator, AraC family 0.00470200888382 0.00129604341177 -1.37503005696e+12 +UniRef50_Q9HXP6 0.000921063138383 0.000571934624678 -1.40947465271e+11 +UniRef50_S1SXR1 2.12666424717e-05 2.19930995697e-05 293279645.094 +UniRef50_F9YZQ4 Endoglycoceramidase 0.000159974748255 0.00445180887178 1.7326661024e+12 +UniRef50_UPI0003B3872E branched chain alpha keto acid dehydrogenase subunit E2 2.95263394253e-06 4.47205310125e-05 16862212596.9 +UniRef50_A0A023RTZ1 LysR family transcriptional regulator 0.000145373294809 0.00765189714499 3.03047579372e+12 +UniRef50_A7X0P1 0.0126994949812 0.00495432766069 -3.12681909118e+12 +UniRef50_Q8TSH7 Malate dehydrogenase 3.36721762892e-05 2.29198624303e-05 -4340841050.57 +UniRef50_I3USA0 MscS mechanosensitive ion channel 0.000428825071817 0.000462884184163 13750081606.4 +UniRef50_P0AFL2 Putrescine transport system permease protein PotI 0.0048033144817 0.00152779026972 -1.32236931958e+12 +UniRef50_M4RDZ6 Taurine transporting AtPase 0.00518407122581 0.000725006767648 -1.80017904063e+12 +UniRef50_UPI0003769FA7 Fis family transcriptional regulator 0.000370982215796 8.40235108226e-05 -1.15848750577e+11 +UniRef50_UPI00040692FE hypothetical protein 0.00109592088202 0.00017407043818 -3.72162336555e+11 +UniRef50_I7GKU7 Macaca fascicularis brain cDNA clone 0.00054724709113 0.000157610867894 -1.57300924695e+11 +UniRef50_D6CV88 5.46821913738e-05 6.46317546914e-06 -19466608434.6 +UniRef50_UPI000383163D hypothetical protein 1.28656944095e-05 1.1566140492e-05 -524645863.815 +UniRef50_K5XT53 Phenol hydroxylase 0.000463705622737 8.50982958896e-05 -1.52848423882e+11 +UniRef50_UPI00041A7C16 hypothetical protein 0.000208689054711 2.21127656313e-05 -75323137450.1 +UniRef50_UPI00047AECEE KaiC 1 6.6801917341e-05 1.57463598178e-05 -20611755094.3 +UniRef50_UPI00046F4CAF hypothetical protein 0.000128727988822 4.73308083187e-06 -50058265944.2 +UniRef50_UPI00034D1E75 membrane protein 6.0957428407e-05 6.72765568889e-05 2551109712.57 +UniRef50_D8QF05 7.5261986515e-06 3.10393741772e-05 9492557498.84 +UniRef50_Q890Q5 Adenylate kinase 3.07471464059e-05 5.01868623798e-05 7848051890.8 +UniRef50_M2ATY2 ParB like partition protein 0.000110746234673 1.90927581379e-05 -37001633191.9 +UniRef50_S1DY96 0.000220752040266 0.000688801581344 1.88957343347e+11 +UniRef50_UPI0001D2F09B permease 0.000111682245224 6.73035601169e-05 -17916219765.4 +UniRef50_UPI000405BEEA hypothetical protein 0.000388697556286 0.000114475683802 -1.10706735003e+11 +UniRef50_K2M4Q0 1.6077165776e-05 3.98030026135e-05 9578411480.06 +UniRef50_Q2FYR2 Aminoacyltransferase FemA 0.011135692331 0.0051071952313 -2.43377825713e+12 +UniRef50_P77156 Inner membrane ABC transporter permease protein YdcU 0.00323822838589 0.000765446218327 -9.98292505493e+11 +UniRef50_E6KQ43 Membrane protein 5.70223613131e-05 0.00198423527639 7.7803950338e+11 +UniRef50_H8Z7W7 TPR repeat containing protein 7.24293702526e-05 0.000148191079659 30585931788.1 +UniRef50_UPI000381814C hypothetical protein 3.39811820766e-05 0.000155437356269 49033347956.2 +UniRef50_UPI0003805D01 hypothetical protein, partial 9.00059496839e-05 5.76874723045e-05 -13047365910.4 +UniRef50_R9CBP1 Flagellar hook capping protein 7.18622264131e-06 9.80959760362e-06 1059088664.72 +UniRef50_A4XQY6 0.00251190961573 0.000284871419803 -8.99082648529e+11 +UniRef50_UPI00037FD9F7 hypothetical protein 6.65464009971e-06 8.46252077595e-05 31477674970.7 +UniRef50_UPI00036C7A2E hypothetical protein 0.000504360152915 0.000343369018749 -64994096446.2 +UniRef50_Q9I5G7 Signal peptidase I 0.0017974718109 0.00161638550281 -73106764754.8 +UniRef50_F8FZW4 0.00055993062886 0.00177190023117 4.89287000992e+11 +UniRef50_Q6I286 S layer protein, putative 3.63606040056e-06 0.000182294262473 72126508559.1 +UniRef50_A7Z463 Adenine deaminase 2.49410813405e-05 7.29058589927e-06 -7125721605.55 +UniRef50_D7C3J3 2.47199927154e-05 0.000833340845804 3.26450161286e+11 +UniRef50_Q3JVB5 Integral membrane protein MviN 0.000642524753402 0.000336923429018 -1.23375004804e+11 +UniRef50_UPI00036BA72B hypothetical protein 2.90294906379e-05 2.11551516842e-05 -3178967264.61 +UniRef50_UPI00045EA377 secondary thiamine phosphate synthase 1.40765007896e-05 2.18094184913e-05 3121873769.75 +UniRef50_Q36837 Cytochrome c oxidase subunit 3 5.3619740226e-05 9.27134647813e-06 -17903990772.0 +UniRef50_UPI000470F200 ATP dependent DNA helicase RuvA 1.14379975392e-05 9.52487719255e-06 -772350160.569 +UniRef50_P33360 Putative osmoprotectant uptake system ATP binding protein YehX 0.00229441744607 0.00186013466824 -1.75325286659e+11 +UniRef50_N6UWC7 0.000112037220334 0.000111200440193 -337818411.369 +UniRef50_I0LGS3 1.19366816673e-05 1.7233769223e-05 2138499248.81 +UniRef50_U5MX92 Sensory transduction protein LytT 0.000160177930206 0.00151373553468 5.46447814944e+11 +UniRef50_L1K958 0.0116649515268 0.00196877803463 -3.91446422422e+12 +UniRef50_UPI00047330EC hypothetical protein 7.84308987749e-05 2.60188507818e-05 -21159386943.0 +UniRef50_D3E3Z6 Energy converting hydrogenase A subunit F EhaF 0.00245728272015 0.00121739049281 -5.00559707366e+11 +UniRef50_UPI0004658BC5 hypothetical protein 8.20177982917e-05 2.15381476889e-05 -24416377117.1 +UniRef50_B6ZYE2 Galactosamine 6 phosphate isomerase 0.00283557550311 0.0053693946399 1.02293387898e+12 +UniRef50_UPI00036A070A hypothetical protein 6.30303883095e-06 2.25926211624e-05 6576304282.88 +UniRef50_UPI00046F612F hypothetical protein 2.70783179717e-05 8.58364276205e-06 -7466527337.34 +UniRef50_R9XSB4 UvrABC system protein A 0.0103670523245 0.0106993021497 1.34133331597e+11 +UniRef50_D5UV60 Acyl CoA dehydrogenase domain protein 0.000248690634903 0.000147904860699 -40688453826.7 +UniRef50_B8ZJM7 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.0154259178572 0.0116201430628 -1.53643798661e+12 +UniRef50_R5W2L7 4.91558913517e-05 0.00106037211725 4.08240399414e+11 +UniRef50_A5UP24 Predicted type II restriction enzyme, methylase subunit 0.00571239918668 0.000622645576659 -2.05479599067e+12 +UniRef50_A6LY51 Type IV pilus assembly PilZ 0.000178621130367 0.000581777986442 1.62759370088e+11 +UniRef50_B5ZUG3 NAD NADP dependent betaine aldehyde dehydrogenase 4.01633545861e-05 5.40940287083e-06 -14030596786.4 +UniRef50_Q7NYS3 0.000800239257418 8.77596660985e-05 -2.87636754124e+11 +UniRef50_P18777 Anaerobic dimethyl sulfoxide reductase chain C 0.00169577682731 0.00127704546544 -1.69046989199e+11 +UniRef50_A0Q197 DNA topoisomerase IV subunit B 0.000447719235006 0.00144705415837 4.03443771781e+11 +UniRef50_UPI00036632E6 hypothetical protein 5.6804085272e-05 0.000270436554763 86246049498.7 +UniRef50_P30335 Nitrogen regulatory protein 2.02137028157e-05 3.01835435662e-05 4024947054.68 +UniRef50_Q1KVX6 Light independent protochlorophyllide reductase subunit N 6.39004752321e-05 2.2064792602e-05 -16889578459.3 +UniRef50_UPI00046F1C42 nitrogen regulatory protein P II 1 7.94134092391e-05 2.7066201996e-05 -21133209936.5 +UniRef50_D9WR73 Anti sigma B factor RsbT 1.91413551744e-05 0.002289249135 9.16470368072e+11 +UniRef50_E6PC05 6.80027503223e-06 6.67503231275e-06 -50562022.7551 +UniRef50_UPI0003FFD344 membrane protein 7.98681944041e-06 1.16533113742e-05 1480207786.59 +UniRef50_UPI00047C9EAC ABC transporter 3.72548403793e-06 2.62710856702e-05 9101936044.6 +UniRef50_Q9RW70 Glucose fructose oxidoreductase 0.000210678124336 0.0446305814316 1.79328600587e+13 +UniRef50_O27472 0.00359294404307 0.000834580791197 -1.1135850937e+12 +UniRef50_R5YRU3 dTDP 4 dehydrorhamnose reductase 0.00130684485638 0.000459020769276 -3.42276987935e+11 +UniRef50_A6LVM3 Drug resistance transporter, EmrB QacA subfamily 0.000501527410384 0.000860646422696 1.44980752156e+11 +UniRef50_UPI00020D92F9 hypothetical protein 0.0001927664463 0.000275203086573 33280683289.5 +UniRef50_K4NLN5 9.29005714967e-05 0.00507050331034 2.00951930772e+12 +UniRef50_H3YKG2 0.000182932151423 0.00025992651504 31083569419.3 +UniRef50_O27911 2 phosphoglycerate kinase 0.00319545789272 0.00193555370491 -5.08638781382e+11 +UniRef50_H8E733 NAD synthase 6.81028030856e-05 0.000322644548697 1.02761626282e+11 +UniRef50_Q04FF6 Arginine tRNA ligase 0.00666142559359 0.00369513435055 -1.1975281753e+12 +UniRef50_UPI000374A709 hypothetical protein 4.56451660763e-06 0.000101217520766 39020003844.5 +UniRef50_UPI000163236E hypothetical protein 7.18027228022e-05 9.5999092877e-05 9768371522.05 +UniRef50_Q5HLR8 0.0190217967023 0.00460042344378 -5.82208535461e+12 +UniRef50_UPI0003B7A728 sulfate ABC transporter permease, partial 4.14091149609e-05 1.88569275728e-05 -9104594795.04 +UniRef50_Q9JY28 8.61184765483e-05 0.00336588824012 1.32408330085e+12 +UniRef50_I6L8N6 Capsular polysaccharide biosynthesis protein Cps4E 9.63001478345e-06 0.000856549777224 3.41911900972e+11 +UniRef50_Q5E480 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.55419664366e-05 6.38432321557e-06 -7734175659.04 +UniRef50_U5PDI4 Glycosyltransferase 0.00112661195705 0.000386191837597 -2.989166882e+11 +UniRef50_UPI00035ED085 hypothetical protein 2.33533006989e-05 9.63858034933e-06 -5536800903.68 +UniRef50_R7E7K8 2.75054464409e-05 1.620848086e-05 -4560723634.37 +UniRef50_E8SGJ9 Substrate specific component ThiW of predicted thiazole ECF transporter 0.019026468509 0.00755329890095 -4.63185936237e+12 +UniRef50_B2I1P2 Ankyrin repeat protein 6.84749714784e-06 0.00604147151498 2.43625176916e+12 +UniRef50_Q3IW29 0.0174840726416 0.00039551344445 -6.89886104807e+12 +UniRef50_Q3IW25 0.00369401701208 0.00056755629592 -1.2621905571e+12 +UniRef50_A7MPG3 0.00273119930883 0.0025353570905 -79063906794.1 +UniRef50_Q3IW20 0.00535649612679 0.00227351283164 -1.24463818871e+12 +UniRef50_P57162 Serine acetyltransferase 0.00308328241511 0.000999697682294 -8.41168725099e+11 +UniRef50_UPI00016A72E3 oxidoreductase, 2 nitropropane dioxygenase family protein 8.97127414246e-07 1.72373567894e-05 6596751115.93 +UniRef50_UPI0004726F0A hypothetical protein 1.33510692687e-05 1.20225056935e-05 -536357418.617 +UniRef50_Q8XWD0 Tyrosine recombinase XerD 0.000126815001857 0.0004565620435 1.33122927163e+11 +UniRef50_D6M3V3 Peptidase C14, caspase catalytic subunit p20 1.26868311671e-05 0.000105534669122 37483811553.5 +UniRef50_Q9HU63 0.000240670000018 0.000184709877544 -22591788150.7 +UniRef50_A8YWB0 50S ribosomal protein L33 1 0.00156743463762 0.00140627002474 -65064131931.9 +UniRef50_Q5HS39 Replication associated protein RepA 0.025417336461 0.00818699879198 -6.956098757e+12 +UniRef50_UPI0001C2FA1D 4E10_S0_1TJLC_004_N 0.000133266175114 0.000166550217731 13437176445.6 +UniRef50_P76573 0.00769096647034 0.000916440040902 -2.73495945235e+12 +UniRef50_UPI00037E947E hypothetical protein 5.77321491391e-05 2.00040319149e-05 -15231303899.5 +UniRef50_UPI00035F6D48 hypothetical protein 0.000820284232333 0.000209359529456 -2.46637799441e+11 +UniRef50_S3X0W6 6.51088027977e-06 3.04763390403e-05 9675149790.86 +UniRef50_Q4KG00 0.000923329572432 0.000339772494473 -2.35589153423e+11 +UniRef50_B5GRY7 4.25500514704e-05 2.88811285539e-05 -5518311917.94 +UniRef50_R4GKT3 3.52494659532e-05 1.8059539033e-05 -6939784441.81 +UniRef50_A8TTI0 1.46332217464e-06 3.36890958609e-06 769309022.19 +UniRef50_F7X525 ABC transporter, periplasmic solute binding protein 0.000638843415655 0.000349487225087 -1.16816644932e+11 +UniRef50_I3TJX2 1.60309072009e-05 3.78424117522e-05 8805572044.62 +UniRef50_P75748 0.00208196697646 0.000773199169791 -5.2836562394e+11 +UniRef50_A5UKK3 0.00215978115111 0.000402295603158 -7.0951848248e+11 +UniRef50_Q5HFR9 Pyrroline 5 carboxylate reductase 0.015465942895 0.00785982338574 -3.07068378347e+12 +UniRef50_UPI0002880C2A histidine kinase 7.46191608947e-05 9.99737242183e-05 10235948349.2 +UniRef50_UPI0003822CF6 hypothetical protein 0.000938840241999 0.000212984067508 -2.93037044899e+11 +UniRef50_A5UKK6 0.00198986127852 0.000891139026363 -4.43567656035e+11 +UniRef50_U3T1P2 Sulfate permease 0.000224843203383 0.00827015472162 3.24799098699e+12 +UniRef50_UPI00005C81F5 hypothetical protein RSP_4057 0.00357165250681 0.00188687714513 -6.80164488029e+11 +UniRef50_A9M1Y8 UPF0761 membrane protein NMCC_0461 0.000335172110003 0.00266714919876 9.41447767309e+11 +UniRef50_Q5HRH1 0.00267921557103 0.000684131363387 -8.05439977061e+11 +UniRef50_Q1JQN1 Cell division inhibitor SulA 0.00405955035841 0.000360875810829 -1.4932003027e+12 +UniRef50_D7CUB2 RNA binding S1 domain protein 0.000283797246844 0.0428681815905 1.71918385287e+13 +UniRef50_I2F4T7 2.3913519524e-05 4.06600351579e-05 6760773864.26 +UniRef50_UPI0003806E6C hypothetical protein 0.00194286607366 0.0015121642335 -1.73879618179e+11 +UniRef50_I0ZAW9 2.19256141454e-05 3.43059097292e-05 4998077250.49 +UniRef50_T1Y9B2 Phosphotransferase enzyme family protein 0.0198823509712 0.00339603757511 -6.65572702782e+12 +UniRef50_T2HS98 9.32595855861e-05 5.81690109812e-05 -14166495577.8 +UniRef50_E1I6F8 0.000243016731023 0.000379421891038 55068436977.6 +UniRef50_UPI00031BE1DB hypothetical protein 5.36152916367e-05 4.79238412482e-05 -2297708363.79 +UniRef50_Q1QAV9 0.000184740288181 0.00409903442619 1.58024857731e+12 +UniRef50_A3CLN3 GTP binding protein TypA BipA, putative 0.00618062368975 0.00593646694468 -98569074124.9 +UniRef50_Q92GC1 3 oxoacyl [acyl carrier protein] synthase 3 7.80367086837e-05 9.80186907094e-06 -27547242087.3 +UniRef50_O27543 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.00451635338729 0.000538634897921 -1.60585376625e+12 +UniRef50_UPI000428CAD9 hypothetical protein 0.000266067466551 0.000108825318996 -63480584546.1 +UniRef50_P06709 Bifunctional ligase repressor BirA 0.00319018773032 0.000964974485437 -8.98345893395e+11 +UniRef50_Q1R618 0.00340947933089 3.51018360083e-05 -1.36227760295e+12 +UniRef50_UPI000373C739 hypothetical protein 1.15681812832e-05 2.26238386779e-05 4463304558.41 +UniRef50_Q8X534 Enterobactin exporter EntS 0.00282061523415 0.000143823070714 -1.08065384431e+12 +UniRef50_C2XMN3 1.38681549327e-05 0.000929709101565 3.69736228788e+11 +UniRef50_B1LTL1 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.56505691476e-05 2.30578093285e-05 -13158097097.1 +UniRef50_A0A021WYQ6 Plasmid partitioning protein RepA 0.000264076099192 0.000103697631606 -64746755429.6 +UniRef50_Q1R614 0.00134827948699 0.00295479459378 6.48569862768e+11 +UniRef50_A5UEK8 Chromosome partition protein MukB 0.000400246125301 7.95204385348e-05 -1.29480895494e+11 +UniRef50_UPI0002375359 EmrB QacA family drug resistance transporter 9.80511757459e-06 1.42533922805e-05 1795823085.24 +UniRef50_UPI000472C1EF amino acid ABC transporter ATPase 9.11357425806e-06 0.000266958198497 1.04095038915e+11 +UniRef50_A3PMP8 UPF0178 protein Rsph17029_2512 0.00580864190109 0.000398896083535 -2.18398077159e+12 +UniRef50_Q2W200 Hypothetical 217 kDa protein Y4HQ 0.000133778463822 1.26082917637e-05 -48917885385.0 +UniRef50_UPI00006CFE7F glutaredoxin related protein 1.13776612886e-05 5.91477225901e-06 -2205435338.43 +UniRef50_UPI0002ED7898 hypothetical protein 9.36504408604e-05 3.66239648949e-05 -23022288140.8 +UniRef50_E1Z4K9 1.13565887032e-06 2.58451531208e-06 584921125.006 +UniRef50_R4RE02 Amino acid permease YtnA 0.000107443829842 0.00724343145687 2.88088577345e+12 +UniRef50_A5FSB7 Ribosomal RNA small subunit methyltransferase H 5.65049875971e-06 9.59984942759e-06 1594401328.61 +UniRef50_P44726 UPF0701 protein HI_0467 0.00138742685556 0.00105412928032 -1.34556321146e+11 +UniRef50_B0V531 Bifunctional protein 0.000361058951565 0.00747390057552 2.87154144797e+12 +UniRef50_Q9DC70 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 4.06128049003e-05 8.50999937422e-05 17960024054.7 +UniRef50_T3GII0 Zinc binding dehydrogenase family protein 0.000725208802479 0.000687511771931 -15218753826.8 +UniRef50_B2JHN6 Integral membrane sensor signal transduction histidine kinase 0.000241919844332 0.000158346758826 -33739480175.9 +UniRef50_UPI00037A6516 hypothetical protein 5.78326045817e-05 1.73754954781e-05 -16333031409.7 +UniRef50_B9KX95 0.00145761087894 0.0011034274802 -1.4298818439e+11 +UniRef50_B2TIX9 FliB domain protein 0.000407711998086 0.000482394886397 30150398473.2 +UniRef50_I0C729 0.0189407042374 0.00608159226964 -5.19138130045e+12 +UniRef50_K1ZPS1 0.000230547562139 0.00087147259575 2.58749301103e+11 +UniRef50_UPI0004792537 hypothetical protein 1.83307769362e-05 1.21189243179e-05 -2507801130.01 +UniRef50_UPI00047030B9 hypothetical protein 0.000560381874278 7.08899220657e-05 -1.9761390785e+11 +UniRef50_Q2FG85 Holliday junction ATP dependent DNA helicase RuvA 0.0236249924709 0.00323044432134 -8.23352935724e+12 +UniRef50_Q5M0X3 Bifunctional protein PyrR 6.50069945208e-05 0.0103211051259 4.14051267212e+12 +UniRef50_UPI000409D13D alpha beta hydrolase 6.41361882608e-05 1.20837045582e-05 -21014226426.5 +UniRef50_A1YZ52 PdmP3 0.000151878650913 0.000169199709511 6992723909.3 +UniRef50_A5V451 7.80952571682e-06 4.9162649454e-06 -1168044877.72 +UniRef50_UPI00037F3B9E transcriptional regulator 1.17585692332e-05 1.43405700731e-05 1042385423.78 +UniRef50_UPI00028A17CA serine threonine protein kinase like protein 6.89009589622e-05 1.92807193654e-05 -20032299634.0 +UniRef50_UPI000360B53A hypothetical protein, partial 2.58916829103e-05 9.18807787131e-05 26640607752.9 +UniRef50_C5N461 MAP domain protein 0.00869550707414 0.000999848244378 -3.10683190593e+12 +UniRef50_R9T5B9 2.52936081332e-06 4.63955663484e-05 17709325473.4 +UniRef50_UPI0004765C33 translation initiation factor IF 3 0.000264398967397 0.000363345303131 39945849943.9 +UniRef50_C1DAI5 Glucose 6 phosphate isomerase 0.000310064867964 0.00330607927114 1.20952777979e+12 +UniRef50_E3F1U6 Integrase 0.00373196662839 0.000901286543999 -1.14278028642e+12 +UniRef50_UPI00036EA793 hypothetical protein 0.000647128617963 0.000352958287488 -1.18760172289e+11 +UniRef50_UPI0004749630 phosphate starvation inducible protein PhoH, partial 9.40954921415e-05 6.43000888292e-05 -12028769947.9 +UniRef50_A6M2K0 Cell wall surface repeat protein 0.000421184097339 0.00186046617006 5.81055834734e+11 +UniRef50_Q6FFQ0 Alpha ketoglutaric semialdehyde dehydrogenase 0.000948194373057 0.0288863009899 1.12789564803e+13 +UniRef50_I1AWS6 Replication initiation protein RepC 0.000698886232709 0.000139103140501 -2.25991303635e+11 +UniRef50_P46384 Protein PilG 0.00563938135712 0.000519618836113 -2.06691095628e+12 +UniRef50_Q9I6C8 Probable coniferyl aldehyde dehydrogenase 0.000612537579742 0.000124781706418 -1.96913031499e+11 +UniRef50_A7BCW8 Cell wall binding repeat protein 1.4038904646e-05 0.00115034896945 4.58742317252e+11 +UniRef50_P09996 0.00399855746522 0.000771860473809 -1.30265717146e+12 +UniRef50_A6UCT4 Glycosyl transferase family 8 0.00525517494143 0.000653405823801 -1.85779066284e+12 +UniRef50_P0ADI5 Isochorismatase 0.00243856681338 0.00445811552881 8.15316599069e+11 +UniRef50_A3PIG7 0.000935150784869 0.00148761318134 2.23035848931e+11 +UniRef50_S5VV73 5.12668948094e-05 0.00112647892034 4.34076289042e+11 +UniRef50_B5ZE82 Two component transcriptional regulator, winged helix family 0.00257188327451 0.00108089486213 -6.01930318563e+11 +UniRef50_S9TC28 8.67225771908e-05 5.0204108267e-06 -32984167159.5 +UniRef50_E3EDG6 Ser Thr phosphatase family protein 1.90295918558e-06 1.1626455905e-05 3925494946.35 +UniRef50_UPI0003AE0E04 2.9608183363e-05 7.63859535642e-05 18884759858.0 +UniRef50_F0RM84 Long chain fatty acid CoA ligase 0.000154071465819 0.0332449894845 1.33592096754e+13 +UniRef50_Q8X8F2 Porin OmpL 0.00144171989344 0.000872857256737 -2.29656827167e+11 +UniRef50_UPI0003A831EB hypothetical protein 3.49724034642e-05 8.79131000071e-06 -10569628709.4 +UniRef50_Q9HJ59 Nucleoside diphosphate kinase 7.36954840226e-06 5.90102437569e-05 20847982417.2 +UniRef50_I0C0Q8 5 nucleotidase 0.0151697109078 0.00465806006527 -4.24368243758e+12 +UniRef50_A6M0I0 Ferredoxin hydrogenase 0.000778025972439 0.00093722331786 64269921917.6 +UniRef50_Q9RTC8 7.25378449133e-05 0.0839262786282 3.38527841553e+13 +UniRef50_P77265 Multidrug resistance like ATP binding protein MdlA 0.00385648946198 0.00164049592669 -8.94623783495e+11 +UniRef50_A6M2M2 NLP P60 protein 0.000114970351935 0.000761169794935 2.60878644898e+11 +UniRef50_H6NSQ0 2 deoxy D gluconate 3 dehydrogenase 0.000975362759137 0.00072609895258 -1.00630857518e+11 +UniRef50_F9PRQ2 6.09555212911e-05 0.000136603736556 30540112810.4 +UniRef50_Q9RTC4 0.00198676836238 0.0564260709447 2.19778144978e+13 +UniRef50_A5D144 UDP N acetylmuramate L alanine ligase 8.18801145845e-06 1.29532227798e-05 1923774286.15 +UniRef50_A0A035VZJ1 0.000287400821238 8.2028703044e-05 -82911244314.2 +UniRef50_Q9I2J9 Phenazine biosynthesis protein PhzA 2 0.000451178472729 0.0200923237782 7.92937138379e+12 +UniRef50_A0A010YSV0 Bifunctional uridylyltransferase uridylyl removing enzyme 0.000240474674121 0.00368797344723 1.39179756027e+12 +UniRef50_O31727 UPF0001 protein YlmE 0.0120364583646 0.00963136180418 -9.70966995295e+11 +UniRef50_A6M141 0.000216297815573 0.00140173417325 4.78575204535e+11 +UniRef50_A6M140 0.000512424419253 0.00184295217498 5.371503824e+11 +UniRef50_A0A031SXK0 Ferrienterobactin receptor 0.00339026891811 0.00069013376552 -1.09007769548e+12 +UniRef50_A6M142 0.000279566792415 0.00133094626545 4.24454795139e+11 +UniRef50_H4TYE9 Citrate synthase 0.00090537615536 0.000468595360248 -1.7633376689e+11 +UniRef50_R1BPA7 1.05518659521e-05 2.31742579915e-05 5095814560.47 +UniRef50_UPI000478D81C hypothetical protein 3.58717549693e-06 1.19427292699e-05 3373239592.32 +UniRef50_Q9AS52 0.000384512543987 0.00090629029659 2.10648081659e+11 +UniRef50_UPI00046DCEE5 4.07230498645e-06 1.11445442256e-05 2855149766.98 +UniRef50_UPI0003B553F2 hypothetical protein, partial 1.70861488608e-05 0.000175888915271 64110625528.8 +UniRef50_UPI0003484775 hypothetical protein 4.79181047947e-05 2.47040483974e-05 -9371799436.1 +UniRef50_K7U8Q8 1.6559285985e-05 1.99403205312e-05 1364965136.26 +UniRef50_Q4FU55 NADH quinone oxidoreductase subunit K 1.71764143561e-05 7.86213304476e-05 24806066640.0 +UniRef50_D4GU70 Low salt glycan biosynthesis nucleotidyltransferase Agl11 6.85587217958e-05 1.62490157888e-05 -21118070227.3 +UniRef50_H3UC52 Nitrate reductase delta subunit 2.23708306862e-05 0.000119447905534 39191206385.7 +UniRef50_Y1QWF2 9.62969332507e-05 7.68054972259e-05 -7868931910.03 +UniRef50_UPI00042B2256 ATP dependent clp protease ATP binding subunit clpx isoform 1 1.06998716627e-05 2.2305241448e-05 4685230196.23 +UniRef50_W1MRY7 Type VI secretion protein ImpA 0.00048634807273 0.000429932305819 -22775737401.3 +UniRef50_UPI000255EFAA hypothetical protein 8.53179218313e-05 4.81681159278e-05 -14997832522.6 +UniRef50_M2K3R6 0.00138104630068 0.00230116913138 3.7146487793e+11 +UniRef50_D1DKC6 0.000170689752864 0.0043756635958 1.69759954123e+12 +UniRef50_Q27331 V type proton ATPase catalytic subunit A isoform 2 0.00397891523898 0.0011900794122 -1.12588724614e+12 +UniRef50_N0CAR1 Integrase core subunit 0.000195802779351 3.49293255914e-05 -64946587422.2 +UniRef50_A6LWI8 Aluminium resistance family protein 9.01638508349e-05 0.00123844741915 4.63576167555e+11 +UniRef50_A4TTX4 1.71214161499e-06 4.73580713071e-06 1220690873.24 +UniRef50_Q2SGE5 Predicted Zn dependent Hydrolase of the beta lactamase fold 0.00012986903286 0.00795272053143 3.15818114716e+12 +UniRef50_Q32IF4 IS911 ORF2 3.73531537098e-05 6.44599225047e-05 10943335200.0 +UniRef50_A6L5D3 9.40310433924e-06 0.00587141578068 2.36656645242e+12 +UniRef50_Q8CS32 0.00507059330353 0.00215877801089 -1.17553556563e+12 +UniRef50_A8LE49 2.73543194722e-05 2.23738428689e-05 -2010679522.07 +UniRef50_Q8CS31 0.00261137035218 0.0016970716737 -3.69113596209e+11 +UniRef50_A5WG67 0.000143138173142 0.00587637987598 2.31458003022e+12 +UniRef50_S4MJP1 Putative Bifunctional P 450 NADPH P450 reductase 1.17277293112e-05 0.000308073085034 1.19638256672e+11 +UniRef50_UPI0001D2F0E2 putrescine spermidine ABC transporter permease 0.000102351966369 0.000368811149972 1.07572842242e+11 +UniRef50_UPI00037EBD36 hypothetical protein 1.14697349568e-06 7.10922271444e-07 -176039230.174 +UniRef50_UPI000379E27A hypothetical protein 0.000167024448298 2.97192656605e-05 -55431787155.0 +UniRef50_F3QCE5 7.10073205765e-05 5.590441502e-05 -6097228306.65 +UniRef50_A4WXK9 0.000505301835925 9.53146977416e-05 -1.65516838792e+11 +UniRef50_Q53229 UPF0093 membrane protein RHOS4_28450 0.0186366404271 0.00478458192289 -5.59224600202e+12 +UniRef50_UPI0004799C0B hemolysin type calcium binding protein 2.78164163521e-05 1.05819652643e-05 -6957759394.64 +UniRef50_K0KQ95 Transfer complex protein TraG 0.00779954557169 0.000549313771403 -2.92700754813e+12 +UniRef50_UPI0001850DBE tRNA delta isopentenylpyrophosphate transferase 8.20218257539e-05 3.27036607943e-05 -19910348396.1 +UniRef50_UPI0003B64D78 oxidoreductase 5.58982324617e-05 4.51071162312e-05 -4356506044.14 +UniRef50_K7S8U6 CvpA family protein 0.000231603217983 0.00451711980247 1.73011563436e+12 +UniRef50_UPI000288B21D MarR family transcriptional regulator 5.99630715491e-06 4.97804406137e-05 17676191969.1 +UniRef50_W5X7H9 Xylose isomerase domain containing protein 0.000350137500119 7.17416091415e-05 -1.1239183749e+11 +UniRef50_P32125 Molybdopterin guanine dinucleotide biosynthesis adapter protein 0.00419774307651 0.000337504805945 -1.55842556028e+12 +UniRef50_E2ZPK4 0.000683345546031 0.000312502803434 -1.49713765939e+11 +UniRef50_U3T6E5 Penicillin acylase 0.00021239765088 0.010276487344 4.06299650937e+12 +UniRef50_E9BW21 2.06676953281e-05 4.87490227695e-05 11336776484.7 +UniRef50_W1F8X3 Predicted chaperone lipoprotein YacC, potentially involved in protein secretion 4.43389776651e-05 0.000170138653494 50786872867.8 +UniRef50_Q9RZB9 O antigen transporter RfbX, putative 0.000235630189093 0.0670898059928 2.69898511649e+13 +UniRef50_I8QM64 4.03374544498e-05 0.000457022685378 1.68220941028e+11 +UniRef50_P58965 DNA polymerase IV 0.000135949335724 0.000894437178693 3.06210849899e+11 +UniRef50_Q1QE36 Pseudouridine synthase 0.000369058012367 0.00569937233198 2.15191330114e+12 +UniRef50_UPI0003B59F61 malonyl CoA ACP transacylase 9.20650070116e-06 1.11156775256e-05 770758112.261 +UniRef50_Q6A917 Aspartate carbamoyltransferase 0.00019226790604 0.00613076482023 2.39744407781e+12 +UniRef50_Q4L6U5 Probable nicotinate nucleotide adenylyltransferase 0.0241363756856 0.00219308994628 -8.85877372735e+12 +UniRef50_P27745 Acetoin 9.42412138883e-06 0.00317621801477 1.27847355569e+12 +UniRef50_UPI000470A616 diaminopimelate epimerase 5.11128083543e-06 1.11699317286e-05 2445951713.58 +UniRef50_UPI00046FCCA9 exodeoxyribonuclease III, partial 6.54042001776e-05 6.65926608979e-05 479796176.838 +UniRef50_A0A014CIJ3 CDP alcohol phosphatidyltransferase family protein 0.000615138654713 0.00312333695628 1.0125904334e+12 +UniRef50_Q3J0W1 0.00957202734504 0.000657860518606 -3.59875853696e+12 +UniRef50_UPI00035D50AD hypothetical protein 0.000100264388925 6.4657198027e-05 -14375059914.9 +UniRef50_A6LU07 Ig domain protein, group 2 domain protein 0.000290474798357 0.00092785968256 2.57320099345e+11 +UniRef50_Q1QKV0 30S ribosomal protein S6 0.00178487366724 0.0164761114242 5.93103296426e+12 +UniRef50_UPI00037AC352 hypothetical protein 0.000407117419931 2.75586272809e-05 -1.53232542303e+11 +UniRef50_UPI000023D2B8 hypothetical protein FG07361.1 1.27453716225e-06 5.89122164952e-06 1863812180.6 +UniRef50_Q9I1M1 2 oxoisovalerate dehydrogenase subunit beta 0.000566624753669 0.00094680247688 1.53482412166e+11 +UniRef50_A3M3E9 Urease accessory protein UreD 0.000200790419604 0.00748360181685 2.94016033122e+12 +UniRef50_E6W7Q1 Spore coat U domain protein 0.00103528740712 0.000393755606923 -2.5899426022e+11 +UniRef50_UPI0003004A80 hypothetical protein 9.22588801802e-05 0.000124662568542 13081766629.6 +UniRef50_Q57843 2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase 0.00215657122054 0.000244737600989 -7.71830693049e+11 +UniRef50_F6T9R8 3.45352564678e-05 0.000157083353828 49474170738.5 +UniRef50_A1B620 2.74361413156e-05 4.95133741054e-05 8912849795.35 +UniRef50_UPI0003B333E4 hypothetical protein 1.25370823432e-05 2.00856217367e-05 3047437984.15 +UniRef50_UPI000262ABB1 hypothetical protein 2.44067715683e-05 0.000111352251342 35100957125.7 +UniRef50_B1XSD3 ATP synthase gamma chain 0.000415671670561 0.00697590221049 2.64844557205e+12 +UniRef50_UPI00030C054C hypothetical protein 4.51990743494e-06 4.55800135455e-06 15378982.8115 +UniRef50_Q89M20 Blr4373 protein 0.000267107240035 0.000119159396853 -59728359816.8 +UniRef50_UPI0003A26AF5 TetR family transcriptional regulator 8.69457795147e-05 1.46755927472e-05 -29176361253.0 +UniRef50_Q16B12 0.00023679412853 3.15506652737e-05 -82859304737.0 +UniRef50_A5GFZ6 Adenylyltransferase and sulfurtransferase MOCS3 3.71578805739e-06 7.0054469831e-06 1328075676.96 +UniRef50_Q2NQZ7 Glutamate racemase 0.00232051230025 0.00165808516631 -2.67429962867e+11 +UniRef50_D5HEW0 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.000231586496233 0.000757339894904 2.12253098763e+11 +UniRef50_Q8CPV5 NADH dehydrogenase like protein SE_0635 0.009543192535 0.00378481599275 -2.32472727333e+12 +UniRef50_UPI0004214BAF phospho 2 dehydro 3 deoxyheptonate aldolase 1.34096920764e-05 5.47277991479e-06 -3204228836.51 +UniRef50_P56190 Carbon starvation protein A homolog 6.87588322145e-05 0.00250647568551 9.84136207827e+11 +UniRef50_Q8G564 Cystathionine beta synthase 1.62652633298e-05 7.40565733512e-06 -3576731659.64 +UniRef50_F9JRR2 Cupin domain protein 0.00016141884725 0.000132747334655 -11575041473.6 +UniRef50_V5VHC2 0.000351170859825 0.00683394620625 2.61717595995e+12 +UniRef50_K5X3B2 5.96013846323e-06 1.02732519243e-05 1741256832.09 +UniRef50_P09323 PTS system N acetylglucosamine specific EIICBA component 0.00217963361092 0.000206924071316 -7.96407049005e+11 +UniRef50_Q3IYY7 Diguanylate cyclase phosphodiesterase 0.00180369563764 0.000750125073367 -4.2533936556e+11 +UniRef50_J7LDC8 1.11320365348e-05 1.87883491866e-05 3090947371.05 +UniRef50_UPI00037F6FB0 hypothetical protein 3.4182197352e-05 2.47281398794e-05 -3816719016.02 +UniRef50_A3PG69 BLUF domain protein 0.00292281593319 0.000402397633834 -1.01752379646e+12 +UniRef50_Q3ST27 0.000114233427619 3.8692361338e-05 -30496855450.8 +UniRef50_UPI00036B67AF hypothetical protein 6.01340204957e-06 3.6811562422e-05 12433595278.3 +UniRef50_UPI0003C19F7E PREDICTED 8.31785524532e-05 1.03988898391e-05 -29382042904.2 +UniRef50_P94428 Succinate semialdehyde dehydrogenase [NADP] 2.01603608067e-05 1.80714660656e-05 -843312440.603 +UniRef50_M3YVF8 0.000104937647918 6.45995111217e-05 -16285000829.3 +UniRef50_F5M325 FkbH like protein 0.0031036684353 0.000644358554147 -9.92853578146e+11 +UniRef50_R7PQ72 GMP synthase [glutamine hydrolyzing] 0.000125932708907 0.000151245658361 10219148319.4 +UniRef50_A3M428 0.000797906460359 0.00680691250646 2.42590947961e+12 +UniRef50_X6MXZ9 2.08751446181e-05 2.91195210387e-05 3328355930.87 +UniRef50_D6SIU1 Primosomal protein DnaI 0.0128068421652 0.00217052159296 -4.29401313733e+12 +UniRef50_M7D0G7 Type II restriction endonuclease 0.00487205552345 0.000741991069584 -1.66735770162e+12 +UniRef50_A6M2D9 Helix turn helix domain containing protein, AraC type 0.000347872127907 0.000205556871361 -57454415472.2 +UniRef50_D4HBM5 Glycerate kinase 0.000405539303652 0.00591814088249 2.22550490461e+12 +UniRef50_F3U2F5 Acetamidase Formamidase 0.000548242008848 0.000520667526457 -11132156918.2 +UniRef50_A3DL27 Ornithine carbamoyltransferase 4.09662916435e-06 5.22971725381e-05 19459150847.1 +UniRef50_Q895G1 Cytidylate kinase 0.000515295005982 0.00221094521757 6.84554798387e+11 +UniRef50_Q9ZLT4 CAG pathogenicity island protein 23 0.000336897781558 0.00271601145037 9.60477383106e+11 +UniRef50_H6RWI5 Metalloendopeptidase like membrane protein 0.000415591239195 1.233713089e-05 -1.62798632007e+11 +UniRef50_D3I9D0 Pyruvate formate lyase 1 activating enzyme 0.000389921967949 0.00110622807017 2.89181563531e+11 +UniRef50_L8BL77 CFA I fimbrial subunit C usher protein 0.00247581118278 0.000647217936617 -7.38225532837e+11 +UniRef50_O22567-2 Isoform 2 of 1 deoxy D xylulose 5 phosphate synthase 1, chloroplastic 8.73996318175e-06 0.000148822179419 56552909697.0 +UniRef50_UPI00036BEC99 phosphoheptose isomerase 1.058613088e-05 1.92055511936e-05 3479765752.78 +UniRef50_K2K0X8 Putative phenol degradation enzyme 0.000109997988054 2.48280451251e-05 -34384151113.1 +UniRef50_W7WR24 0.00221306104746 0.000203688670267 -8.11208286443e+11 +UniRef50_P37767 0.0019678653801 0.000256425503788 -6.90929279795e+11 +UniRef50_F2AAA0 0.000216329207388 0.000153944416267 -25185505723.0 +UniRef50_Q3J0V4 Periplasmic sensor diguanylate cyclase 0.00129608834843 0.00040385203566 -3.60206748436e+11 +UniRef50_I7A0G4 Two component transcriptional regulator 0.000404449273767 0.00026725493682 -55387037389.3 +UniRef50_Q88RC0 Glutarate semialdehyde dehydrogenase DavD 0.00649809056459 0.000784787218906 -2.30653067077e+12 +UniRef50_Q47HI2 Ribosomal RNA large subunit methyltransferase E 8.0612304902e-06 4.90648773812e-05 16553675421.2 +UniRef50_E8PGL4 Endonuclease III 0.000184439408233 0.00119026819571 4.06065424413e+11 +UniRef50_B7V5R0 Phosphate ABC transporter, periplasmic phosphate binding protein, PstS 0.000293217609458 0.000185345212465 -43549410409.2 +UniRef50_UPI0003B56757 GTPase Der 7.5643144008e-06 1.35288343331e-05 2407949889.56 +UniRef50_UPI0003720F40 hypothetical protein, partial 1.64267410548e-05 4.57513295422e-05 11838696225.5 +UniRef50_G2MDU0 Outer membrane protein HopG 8.55330790492e-05 0.00431605133087 1.70791213256e+12 +UniRef50_Q98R27 Proline tRNA ligase 4.3546771066e-06 1.42143359139e-05 3980465252.13 +UniRef50_UPI0003B722EC MULTISPECIES 4.50569830364e-06 6.09960114423e-05 22805832628.2 +UniRef50_B8IMD9 2.74923853954e-05 4.30159577452e-05 6267056653.27 +UniRef50_A6LV83 AMP dependent synthetase and ligase 0.000503276724829 0.00214217014057 6.61641383418e+11 +UniRef50_Q8XXC7 Uracil phosphoribosyltransferase 0.0330519847249 0.0418314798117 3.54438990306e+12 +UniRef50_G8V724 Hsp20 alpha crystallin family protein 0.00443669326528 0.000902070771962 -1.42697047525e+12 +UniRef50_UPI00047E563E hypothetical protein 0.000352863258056 5.83389133913e-05 -1.18903092161e+11 +UniRef50_G9AD09 7.1091251068e-05 2.95713639078e-05 -16762087952.9 +UniRef50_T0TCE5 SWF SNF family helicase 0.00496202037088 0.000779683570711 -1.68846068927e+12 +UniRef50_Q5NRL6 Ribonuclease PH 0.000231554356069 0.00269966535878 9.96406698922e+11 +UniRef50_Q9ZFE4 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.000657956894381 0.000675428086475 7053334643.98 +UniRef50_J9NZP9 0.000109629092634 4.45139921906e-05 -26287765101.1 +UniRef50_Q1LSV5 Uridylate kinase 0.00459938297139 0.00283152187767 -7.1370721763e+11 +UniRef50_U5MWW8 Glycosyltransferase EpsJ 0.000476616735539 0.000957538252297 1.94153917886e+11 +UniRef50_D5ATD7 Flagellar FlaF family protein 0.000211779833475 0.00019748674593 -5770294837.82 +UniRef50_UPI0004796392 hypothetical protein 5.43227945589e-05 1.49193751044e-05 -15907643968.1 +UniRef50_P0A864 Thiol peroxidase 0.00265074463916 0.000368378426439 -9.21419247858e+11 +UniRef50_UPI0003B588F0 short chain dehydrogenase 5.21285975907e-05 0.000114635469689 25234791311.7 +UniRef50_T1Y9K8 0.0275965373987 0.0072606605409 -8.20984303677e+12 +UniRef50_UPI0003C0FD80 0.000123543006275 9.90670756146e-05 -9881233561.05 +UniRef50_D2VX44 Predicted protein 3.77689752769e-06 6.22920192632e-06 990025378.886 +UniRef50_I6T5F7 NADH dehydrogenase, NADH nitroreductase 0.00627654715147 0.00091211631635 -2.16568655711e+12 +UniRef50_D3QJ09 0.0126784396694 0.00183257517624 -4.37860858963e+12 +UniRef50_C6SS70 Negative transcriptional regulator, CopY 0.0029531216815 0.000401791435631 -1.0300033286e+12 +UniRef50_P90463 Thymidylate synthase 3.26739210013e-05 0.000112741223415 32324152520.7 +UniRef50_UPI0004431E21 0.000121115443649 0.000107573535165 -5467034632.89 +UniRef50_A6M1I3 Amino acid permease associated region 0.000391124305208 0.000744986203214 1.42858390599e+11 +UniRef50_UPI00036E2C46 hypothetical protein, partial 1.45062615441e-06 9.96545910418e-06 3437542550.57 +UniRef50_Q9EXU9 Coenzyme PQQ synthesis protein D 0.000273975813664 0.000108185021513 -66931777273.2 +UniRef50_O67876 Delta aminolevulinic acid dehydratase 0.0107239450185 0.00228644127843 -3.40632379968e+12 +UniRef50_Q9KPA4 L aspartate oxidase 0.00411234210087 0.00226329826876 -7.46481685342e+11 +UniRef50_P28345 Malate synthase, glyoxysomal 1.68469118833e-05 2.11578055833e-05 1740360687.3 +UniRef50_C4ZXQ4 Purine ribonucleoside efflux pump NepI 0.0022833015857 0.000715917265196 -6.32772284154e+11 +UniRef50_Q93A70 RecA like protein 4.55492456182e-05 0.000409436768006 1.4690585819e+11 +UniRef50_UPI000318A15A hypothetical protein 4.5278120142e-06 7.58869198888e-06 1235714807.0 +UniRef50_UPI00046CE89C hypothetical protein 1.84548559956e-05 3.06125494054e-05 4908210021.21 +UniRef50_Q4A0J9 Urease accessory protein UreD 0.0175186019734 0.00374555935937 -5.56034631751e+12 +UniRef50_UPI00022CAA48 PREDICTED 1.17462909427e-05 7.14789923884e-06 -1856427159.46 +UniRef50_Q03S48 Bifunctional protein PyrR 0.000413808905559 0.00361615485319 1.29282635626e+12 +UniRef50_UPI000479DE62 hypothetical protein 3.08497327948e-05 0.000178641638844 59665406082.6 +UniRef50_Q5NYP6 Ribonuclease H 6.1266895422e-05 2.46391940494e-05 -14787052516.6 +UniRef50_P45089 Arginine ABC transporter permease protein ArtM 0.00258251456848 0.000336223952777 -9.06855086644e+11 +UniRef50_W1TYY5 0.000325542642809 0.00137356607068 4.23099918525e+11 +UniRef50_Q6MI59 Aspartate tRNA ligase 3.61092171359e-06 1.5633044973e-05 4853478687.86 +UniRef50_A8J7P6 Predicted protein 5.72794768461e-06 3.76941830841e-06 -790682343.03 +UniRef50_UPI00046612DA cation transporter 3.85077449897e-06 7.60941393681e-06 1517408864.75 +UniRef50_B3QS41 Adenylate kinase 0.000413140952451 0.00179072055359 5.56145789783e+11 +UniRef50_P44779 L fucose isomerase 0.00289135481291 0.00080332345031 -8.42963884108e+11 +UniRef50_P77504 0.0036282451888 0.00165980289022 -7.9468431144e+11 +UniRef50_P77986 Cysteine tRNA ligase 0.00012330998408 0.000111327062593 -4837652451.28 +UniRef50_G7U7R4 2.45182122722e-05 0.00738814227419 2.97278539563e+12 +UniRef50_Q5HR39 0.00797227539995 0.00204750500429 -2.39190251384e+12 +UniRef50_C5VW20 Metal dependent transcriptional regulator 0.0129344480131 0.00447480784315 -3.41526054807e+12 +UniRef50_UPI00046F9A55 UDP N acetylenolpyruvoylglucosamine reductase, partial 1.71945440455e-05 4.7039362607e-05 12048719490.4 +UniRef50_UPI000462C1F9 ATPase, partial 2.66909568512e-06 0.000138424063777 54805946519.5 +UniRef50_F2N7I9 2 keto 3 deoxy phosphogluconate aldolase 0.00064080596504 0.000819488032608 72136143352.7 +UniRef50_B9EBC6 Ribonuclease HII 0.00819303649257 0.00436977133179 -1.54349906215e+12 +UniRef50_UPI000255BC43 gamma aminobutyrate permease, partial 2.06406608613e-05 9.8153134667e-05 31292736860.4 +UniRef50_A8F524 Peptide deformylase 8.24705332096e-06 1.09165816062e-05 1077721327.55 +UniRef50_Q9RW75 Acetylornithine acetyl lysine aminotransferase 0.000190820085505 0.0238562079432 9.55400748512e+12 +UniRef50_M1MR71 PGA biosynthesis protein CapA 0.000235086360003 0.00166747316035 5.78272128664e+11 +UniRef50_UPI00037D52AC hypothetical protein 3.31892970276e-06 1.30771084448e-05 3939496504.48 +UniRef50_M9S1L9 Periplasmic aliphatic sulfonate binding protein 0.00011723167356 0.000206515178457 36044846558.7 +UniRef50_UPI000471FB75 hypothetical protein 4.49377133561e-05 1.50076730746e-05 -12083124544.5 +UniRef50_UPI000462F0A6 sodium 1.03591151059e-05 1.58246256433e-05 2206493673.3 +UniRef50_UPI00035E3397 hypothetical protein 4.98101853286e-06 4.43604775189e-06 -220011391.821 +UniRef50_P39616 Probable aldehyde dehydrogenase YwdH 0.0194139667238 0.00558740262145 -5.58195359912e+12 +UniRef50_G8PQT7 0.000125694085677 2.99009741532e-05 -38672854635.8 +UniRef50_UPI00037BE06D hypothetical protein 4.91446441076e-05 4.36490099097e-05 -2218654964.71 +UniRef50_A6QK31 Transcriptional regulator LysR family protein 0.0161689411847 0.00253536025748 -5.50404392316e+12 +UniRef50_M4WZ70 PpiC type peptidyl prolyl cis trans isomerase 0.000905175697333 0.000220136373534 -2.76558781395e+11 +UniRef50_UPI00042CF608 PREDICTED 2.37841347631e-05 7.75791639907e-06 -6469981017.36 +UniRef50_T0T7J2 Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily 0.00685942780203 0.000520399813437 -2.55914338761e+12 +UniRef50_UPI0003B3103D exodeoxyribonuclease III 3.43071150191e-05 3.94456160424e-05 2074475919.6 +UniRef50_Q165N2 Long chain fatty acid protein, putative 8.93028677418e-06 2.63790951444e-05 7044298060.01 +UniRef50_G6XX97 Putative NAD specific glutamate dehydrogenase 3.06399391356e-05 1.84306468806e-05 -4929041108.21 +UniRef50_A6LQ40 0.000177779900556 0.0017150363486 6.20609292332e+11 +UniRef50_W5X5Z9 Putative bile acid beta glucosidase 1.61688279091e-05 2.51197896676e-05 3613613102.56 +UniRef50_D8LTS8 0.000175839565378 1.83249429851e-05 -63590585981.8 +UniRef50_UPI0002F66B6C hypothetical protein 1.98773034701e-05 0.000208016767033 75954210171.2 +UniRef50_P68825 Peptide deformylase 0.0217730230778 0.00749985794964 -5.76225191369e+12 +UniRef50_A5IR31 Transcriptional regulator, XRE family 0.00379222337175 0.0016043492418 -8.83271634496e+11 +UniRef50_UPI0003616553 hypothetical protein 7.57605633654e-06 5.1969860412e-05 17922323478.5 +UniRef50_X0YG76 Marine sediment metagenome DNA, contig 4.26828283053e-05 4.11363328195e-05 -624339205.251 +UniRef50_D4DSS6 Delta 1 pyrroline 5 carboxylate dehydrogenase 0.000103804687933 0.00399454279466 1.57073871841e+12 +UniRef50_A1W398 7.09189678027e-05 1.26304447337e-05 -23531792043.6 +UniRef50_Q2J878 CTP synthase 0.0330242988951 0.0201113824007 -5.21310284809e+12 +UniRef50_P76250 HTH type transcriptional regulator DmlR 0.00379065996074 0.00113218794398 -1.07325777629e+12 +UniRef50_B9K420 Transposase 5.95511907884e-05 2.41594836547e-05 -14288066475.0 +UniRef50_B6ZTT1 Outer membrane usher protein fimD homolog 0.00105743945506 0.000227881224986 -3.34902837305e+11 +UniRef50_A7X2C6 Quinolone resistance protein NorB 0.0390686653492 0.00852713261777 -1.23299915504e+13 +UniRef50_R5GDG8 3.91682345988e-05 7.10651504003e-05 12877176328.2 +UniRef50_UPI0003B34194 sodium hydrogen exchanger 4.78498507603e-06 6.53951437083e-06 708325006.806 +UniRef50_UPI0003817F52 hypothetical protein 4.05713568254e-05 7.36506362885e-05 13354511047.7 +UniRef50_UPI00046E6BB7 hypothetical protein 1.15777710732e-05 5.78754043134e-06 -2337587164.24 +UniRef50_Q8CTV4 0.00119540366331 0.00224291168503 4.22891842737e+11 +UniRef50_F6D239 0.00334318576125 0.000787528349983 -1.03175025837e+12 +UniRef50_K7EGU5 2.17273602896e-05 8.90976590777e-05 27198216347.3 +UniRef50_A5UNG7 Glycerol 3 phosphate dehydrogenase 0.00626499091887 0.00196408671005 -1.73632780713e+12 +UniRef50_A9GC83 Undecaprenyl diphosphatase 0.000122990638441 1.30028232995e-05 -44403430675.1 +UniRef50_B4S8V7 Phosphoribosylformylglycinamidine synthase, purS 2.21651754361e-05 9.06759005361e-05 27658620444.0 +UniRef50_UPI00036BB70C resolvase 8.33391543127e-05 1.70213090651e-05 -26773327937.9 +UniRef50_W5XH95 Phosphoesterase PA phosphatase related protein 5.38579351157e-05 0.000356077462921 1.22009732026e+11 +UniRef50_P77359 0.00264891137119 0.00135567202294 -5.2209659472e+11 +UniRef50_F4CYV0 8.42740092923e-05 3.56441836254e-05 -19632457376.8 +UniRef50_UPI00047AE18A hypothetical protein, partial 2.99313145365e-05 2.04362215755e-05 -3833285546.25 +UniRef50_A8F453 Carbamoyl phosphate synthase large chain 1.82268666246e-05 6.0205370901e-06 -4927845021.59 +UniRef50_T0VIT8 Malate Na symporter 0.000976156905217 0.000765048428885 -85227082487.6 +UniRef50_A7H5L7 Adenylosuccinate synthetase 0.00010984073391 0.00386607538677 1.51643802354e+12 +UniRef50_D6B724 Prevent host death family protein 7.30738217767e-05 8.233612396e-05 3739305052.63 +UniRef50_Q8MIF7 Phosphoglycerate kinase 2 9.27601131087e-06 1.16763387061e-05 969041624.784 +UniRef50_UPI000311B4DE hypothetical protein 9.35246362747e-06 0.000117506816915 43663239625.5 +UniRef50_M1XHI0 Transposon tn552 dna invertase binr 0.0189122510776 0.00447277879416 -5.82939215306e+12 +UniRef50_UPI0003B5BE6D hypothetical protein 8.67931948009e-06 8.35018562184e-06 -132875377.502 +UniRef50_Q87JE8 Catalase 1.65898213438e-05 0.000171343229368 62475849857.2 +UniRef50_P37757 0.00393126609127 0.00213799522707 -7.23965453786e+11 +UniRef50_R4RDL8 Methyl accepting chemotaxis transducer 0.00058697529377 0.000456106233222 -52833445687.2 +UniRef50_UPI00035DEE56 hypothetical protein 7.5771237699e-05 8.7390494867e-06 -27061716958.8 +UniRef50_L1K5S4 0.000747389671087 0.000398866114553 -1.40703236638e+11 +UniRef50_A4WQH5 Transposase IS66 0.000279728387848 0.000167812472678 -45181828316.8 +UniRef50_F1VLT5 Response regulator receiver domain protein 0.000406197823147 0.00520001739019 1.935323786e+12 +UniRef50_A0A013RJA0 Type I secretion C terminal target domain protein 0.000358880309145 0.00442544502898 1.64172207976e+12 +UniRef50_K4PTK7 PTS system, IIC component 0.000624103821781 0.000277727308957 -1.39836448745e+11 +UniRef50_Q04GD7 Xanthine phosphoribosyltransferase 5.30754470895e-05 6.31192561358e-05 4054808963.39 +UniRef50_UPI0003315B6B PREDICTED 7.36209050973e-06 3.67141406364e-06 -1489971370.98 +UniRef50_W0WCB8 0.000328248685954 0.000902892285473 2.31990672796e+11 +UniRef50_Q321F0 3 dehydroquinate dehydratase 0.00275388128753 0.00522436148021 9.97363169986e+11 +UniRef50_Q8DYV7 Lipoprotein signal peptidase 0.00265322243263 0.00180732187811 -3.41500434227e+11 +UniRef50_A9MFF7 0.00222503161389 0.0010982946248 -4.54877549113e+11 +UniRef50_P44645 Molybdopterin adenylyltransferase 0.0051956389732 7.16715768756e-05 -2.06860851605e+12 +UniRef50_C6S4K8 Purine cytosine transport protein 0.000158164520469 0.00444988520001 1.73262030367e+12 +UniRef50_D8JKV6 0.000237412571605 0.000800499086684 2.27324935986e+11 +UniRef50_W8TU36 Membrane protein 0.00984974911871 0.0010150982042 -3.56665698755e+12 +UniRef50_UPI000477BC75 transcriptional regulator 1.5991911645e-05 2.51531499952e-05 3698504343.01 +UniRef50_Q9RZV6 0.000137521770903 0.0451475265823 1.81710912772e+13 +UniRef50_Q9RZV7 0.000250441106358 0.0382929505919 1.53582279134e+13 +UniRef50_P46850 RNA splicing ligase RtcB 0.00398192575317 0.00453617319524 2.23756493745e+11 +UniRef50_B7MDM9 Phosphoenolpyruvate carboxykinase [ATP] 0.0028417889623 0.00086961481196 -7.96190905791e+11 +UniRef50_UPI00030354CC hypothetical protein 0.00907473298052 0.00118469498658 -3.18530515981e+12 +UniRef50_P33030 0.00160226702734 0.000815506776343 -3.17624767961e+11 +UniRef50_G8AF41 1.31817498045e-06 3.51368098637e-05 13652997903.7 +UniRef50_Q1GBR1 Ribosomal RNA small subunit methyltransferase A 1.11260728979e-05 7.96308160828e-06 -1276938397.89 +UniRef50_A7FBS8 0.000248346045292 0.0064329912625 2.49681716832e+12 +UniRef50_B9M627 Transcriptional regulator, BadM Rrf2 family 2.99841538362e-05 1.25041522789e-05 -7056891132.42 +UniRef50_Q6FDG7 9.62156301183e-05 0.0038749210444 1.52550974567e+12 +UniRef50_UPI00036AD763 hypothetical protein 5.46847041056e-06 1.02593939812e-05 1934154636.71 +UniRef50_O28206 Formylmethanofuran tetrahydromethanopterin formyltransferase like protein 0.00236046979148 0.000693745465837 -6.72877063268e+11 +UniRef50_C4XMN4 NADH quinone oxidoreductase subunit K 5.76325106515e-05 3.21245532997e-05 -10297875400.8 +UniRef50_P76004 0.00482600932099 0.00216778491095 -1.07315781441e+12 +UniRef50_G7M0B3 Subtilisin 0.000205474200728 0.00174374743354 6.21019780821e+11 +UniRef50_F8KSC7 Phosphoglycerol transferase 5.63131758642e-05 0.003587724873 1.42567423743e+12 +UniRef50_P76001 0.000589223248134 0.000681500088921 37253292989.9 +UniRef50_A0A023NX12 Potassium transporter KefB 0.00030953723359 0.000418158035251 43851550557.7 +UniRef50_UPI00037CB356 hypothetical protein, partial 0.000120437315781 4.13460486406e-05 -31930115103.6 +UniRef50_C7NGM8 Signal recognition particle receptor FtsY 0.000451318327698 0.00442336987928 1.60356595393e+12 +UniRef50_Q5HIG5 Hypoxanthine guanine phosphoribosyltransferase 0.0128282598958 0.000439635506556 -5.00143969144e+12 +UniRef50_A3PHR5 0.00522720533929 0.00505944341422 -67727547821.1 +UniRef50_W5X521 Virulence associated protein 0.000107873082055 2.97260019468e-05 -31548935212.2 +UniRef50_UPI00037FC1A9 hypothetical protein, partial 2.88056684859e-05 7.97338811406e-06 -8410247226.92 +UniRef50_UPI000255A713 type I secretion target repeat containing protein 6.27722461015e-06 2.83605402261e-05 8915305506.9 +UniRef50_E3A6M0 0.00283583071926 0.000250471777561 -1.04374113069e+12 +UniRef50_Q88FA1 Transcriptional regulator, GntR family 0.000838634628888 0.00112570317778 1.15893095915e+11 +UniRef50_D8JEZ3 Adenylate cyclase 9.11801905478e-05 0.00723698906544 2.88485073173e+12 +UniRef50_Q8DWH1 tRNA pseudouridine synthase A 0.0050902451797 0.00237802669005 -1.09495588694e+12 +UniRef50_C0QPF4 3 oxoacyl [acyl carrier protein] synthase 3 0.000111042431648 0.000731991240064 2.50684653856e+11 +UniRef50_UPI0003F94ECB CMP deaminase 5.66141317442e-06 2.35332448012e-05 7215077739.78 +UniRef50_UPI0004090BEE hypothetical protein 2.0240844232e-05 5.51027619416e-06 -5946911081.26 +UniRef50_Q16DB6 0.0102853770731 0.00266764307649 -3.07537269454e+12 +UniRef50_Q16DB7 0.000205443592801 5.57566899613e-05 -60430439541.4 +UniRef50_B9KX58 ISSpo9, transposase 0.00180396028647 0.000777321580853 -4.14466643732e+11 +UniRef50_UPI0004785315 hypothetical protein 3.45807084951e-06 6.87049441911e-06 1377637270.19 +UniRef50_UPI0002DCF3B2 sugar ABC transporter ATP binding protein 8.07537297295e-05 0.0001221988905 16731919992.4 +UniRef50_P26158 0.00852295504189 0.00259825798934 -2.39187290432e+12 +UniRef50_U6N1Q3 Mitochondrial carrier domain containing protein, putative 3.4151325891e-05 1.49985599791e-05 -7732206629.5 +UniRef50_UPI00047CE8B7 ABC transporter 4.53443613342e-05 4.33751977949e-05 -794975485.169 +UniRef50_UPI0001D2E721 TonB dependent siderophore receptor 5.21219542073e-05 4.77981645463e-06 -19112601964.1 +UniRef50_Q97EZ4 Galactose 1 phosphate uridylyltransferase 0.000571267340116 0.00051661003385 -22065825260.2 +UniRef50_U7IBM4 8.97675076014e-05 1.78850446549e-05 -29019832388.5 +UniRef50_P02992 Elongation factor Tu, mitochondrial 0.00792274382853 0.0170887639404 3.70043479888e+12 +UniRef50_E3Z0Y0 Ion transport protein, putative 0.00017135921283 0.000256795985818 34491873682.4 +UniRef50_UPI0003A9A8D3 16S rRNA methyltransferase 5.80842023151e-05 1.93292658702e-05 -15645843419.4 +UniRef50_W4TI17 Excinuclease ABC subunit A 5.06618167083e-06 0.0001153514594 44523519971.7 +UniRef50_X4FS17 0.000116381944324 6.3101791844e-06 -44437322319.5 +UniRef50_Q82F74 Probable M18 family aminopeptidase 2 8.98776163989e-05 0.00393773782772 1.55342838586e+12 +UniRef50_R5E350 Phospholipase patatin family 0.000552497353447 0.000463045368397 -36112864064.0 +UniRef50_Q04513 L threonine dehydratase biosynthetic IlvA 1.20853596503e-05 5.75814818574e-06 -2554372911.86 +UniRef50_Q51688 0.000227491299583 0.000818694928362 2.38676159822e+11 +UniRef50_UPI0003732A38 hypothetical protein 1.85037008442e-05 8.05166134607e-06 -4219616606.33 +UniRef50_K7T001 Transposase 0.00013047781796 5.91597526763e-05 -28791978126.1 +UniRef50_UPI0003814692 hypothetical protein 4.28024181088e-06 1.57205370652e-05 4618587582.37 +UniRef50_T2EQP3 AAA ATPase domain protein 0.000775213591037 0.00130682417084 2.14617714662e+11 +UniRef50_G7M265 Precorrin 2 dehydrogenase 0.000311971891609 0.0026524671094 9.44886640528e+11 +UniRef50_B9KM23 Trk system potassium uptake protein 0.0107478175445 0.00308468724863 -3.09369973763e+12 +UniRef50_Q9UW15 Ribonucleoside diphosphate reductase large chain 2.66085096079e-06 3.92353091686e-05 14765557597.6 +UniRef50_A0A031JPA4 Short chain dehydrogenase 4.84173914696e-06 2.57569600472e-05 8443731336.03 +UniRef50_Q8DT19 0.00589679267316 0.00256591766107 -1.34471511681e+12 +UniRef50_UPI00034AF93B hypothetical protein 1.20324646676e-05 1.34992354662e-05 592153370.697 +UniRef50_Q2L2E4 Phage protein 1.58402342792e-05 5.0220130852e-06 -4367448650.52 +UniRef50_Q8UEN6 Valine tRNA ligase 2.15842189615e-06 2.74458036245e-06 236639365.819 +UniRef50_D9SQP5 Metal dependent phosphohydrolase 0.000688759767944 0.00235844050013 6.74070600872e+11 +UniRef50_M1MG21 0.000250563420697 0.000492194508663 97549435358.8 +UniRef50_D6LAV3 PTS system, mannose fructose sorbose family, IID component 0.00055789152799 0.00429288760443 1.50786374961e+12 +UniRef50_UPI0003B68CA0 ABC transporter 1.57938418023e-05 2.94897299128e-05 5529198097.66 +UniRef50_A1SM04 5 carboxymethyl 2 hydroxymuconate delta isomerase 0.000170294431062 0.00402855519095 1.55762721495e+12 +UniRef50_X5F517 Ribonuclease G 0.000390020452734 0.00399395211082 1.45495143559e+12 +UniRef50_UPI0004670206 NADH 0.000114020594284 2.2944313289e-05 -36768612269.3 +UniRef50_X5PZN2 Transposase 0.00501311883519 0.00124140747518 -1.52268616014e+12 +UniRef50_G5JV69 Mannosyl glycoprotein endo beta N acetylglucosaminidase 0.00699697848433 0.000302888928405 -2.70248609944e+12 +UniRef50_UPI00036BD2FB hypothetical protein 4.00831103359e-05 2.25780162039e-05 -7067021312.75 +UniRef50_B4U0E8 Transcriptional regulator AraC family 0.00069489168283 0.000755977475005 24661083908.0 +UniRef50_Q9HTH5 HTH type transcriptional regulator CdhR 0.0001159117673 0.000190731994744 30205843966.6 +UniRef50_O26979 Probable tyrosine recombinase XerC like 0.00224004279447 0.000492123507468 -7.05656465544e+11 +UniRef50_B2UYR1 Surface protein PspC 0.00090537242023 0.0016474393278 2.99581516771e+11 +UniRef50_Q16DI2 Transcriptional regulator, LacI family, putative 0.0064036640893 0.000997109696131 -2.18269235441e+12 +UniRef50_UPI000365A6F0 hypothetical protein 2.35466749406e-05 2.14222778525e-05 -857645173.75 +UniRef50_T2EHK8 0.0103053082357 0.0216231310167 4.56914394199e+12 +UniRef50_UPI00024849FE RTX toxins and related Ca2+ binding protein like protein 1.31074119341e-05 4.76051440121e-06 -3369744961.98 +UniRef50_UPI00047564FA hypothetical protein 0.000134398643058 6.76827814778e-05 -26934012015.6 +UniRef50_A5VBC0 Aldehyde dehydrogenase 0.000182674588784 0.00982813362649 3.89399017662e+12 +UniRef50_Q5F691 Dephospho CoA kinase 0.000820660205591 0.00287076001064 8.27650448852e+11 +UniRef50_R9YSL1 Thermolysin metallopeptidase, catalytic domain protein 0.0064132952579 0.000372053464676 -2.4389234463e+12 +UniRef50_UPI00037991D0 hypothetical protein 0.00032768904637 0.000115867403879 -85514996417.5 +UniRef50_UPI00030D7518 hypothetical protein 0.0001646841461 2.56621220818e-05 -56124897088.1 +UniRef50_UPI0004649A8B MULTISPECIES 7.10232066516e-07 4.50521382424e-06 1532080705.25 +UniRef50_F0TFK9 Cysteine synthase 5.02033113056e-05 2.69693317851e-05 -9379842645.42 +UniRef50_Q68Y13 Zinc import ATP binding protein ZnuC 2.49795121395e-05 8.14253085734e-06 -6797295956.62 +UniRef50_P23620 Phosphate regulon transcriptional regulatory protein PhoB 0.0033625437503 0.00596943731749 1.05243492326e+12 +UniRef50_Q04KA9 Uridine kinase 0.000272734724215 0.0360577192806 1.44468373966e+13 +UniRef50_K0L612 0.00424865104263 0.00233144767259 -7.73998527216e+11 +UniRef50_W4UDR2 Glucoamylase S1 S2 5.38508959721e-05 0.000155825829253 41168531938.7 +UniRef50_Q57H69 DNA directed RNA polymerase subunit beta 5.20007446378e-06 4.98038951864e-06 -88689508.1904 +UniRef50_G7LYD5 0.00129796819429 0.000383656151266 -3.69118991639e+11 +UniRef50_T9UYG2 0.000145186918795 0.000784601211943 2.5813939664e+11 +UniRef50_UPI00035F619C hypothetical protein 2.23662314799e-05 7.53698296108e-06 -5986749602.38 +UniRef50_Q897P8 D alanine D alanine ligase A 0.00117346074632 0.00299032158069 7.33489014225e+11 +UniRef50_P64579 mRNA interferase HigB 0.000389160813245 0.000567916740756 72165961518.1 +UniRef50_Q67KN9 NADH quinone oxidoreductase subunit D 2 0.000245166867811 0.00272469419497 1.0010156092e+12 +UniRef50_S9TMR0 LigA 9.01638508349e-05 0.000150662779873 24424160058.0 +UniRef50_UPI00047706B6 hypothetical protein 4.91446625101e-05 2.9536463799e-05 -7916070439.33 +UniRef50_UPI00036FBC1B hypothetical protein 4.95459410972e-06 9.87819307095e-06 1987717320.0 +UniRef50_J7QVF5 Conserved domain protein 0.00237397525437 0.000684615572919 -6.82015234176e+11 +UniRef50_B0VQE3 Transposase of ISAba7, IS5 family 4.3940266949e-05 4.35835014646e-05 -144030604.057 +UniRef50_Q2SHM4 Phosphonoacetaldehyde hydrolase 0.000703753734855 0.00561755029929 1.98375997213e+12 +UniRef50_W8ADW9 NagD like phosphatase 2.81127906129e-05 1.21517477243e-05 -6443668878.15 +UniRef50_Q2CIA8 1.71654394907e-05 0.000255408814794 96181774184.8 +UniRef50_J7L244 Zinc binding dehydrogenase family protein 0.000557169284122 0.00798172167059 2.99738290792e+12 +UniRef50_I0EVS2 Cysteine rich protein C 0.000865001265076 0.000918397231504 21556606889.2 +UniRef50_S5CUQ4 Folate dependent phosphoribosylglycinamide formyltransferase PurN 0.000209326796037 0.0118992480668 4.71936466849e+12 +UniRef50_A0A024HP52 Mig 14 0.000545682177815 0.000648017911051 41314191308.0 +UniRef50_A1SEI7 50S ribosomal protein L1 0.0314538045871 0.0154660186077 -6.45446539208e+12 +UniRef50_B9KUB3 0.00151527662611 0.000755440359541 -3.06755225053e+11 +UniRef50_B5XK69 Oleate hydratase 0.0290207911557 0.00733131786053 -8.75630652904e+12 +UniRef50_Q9Z9J0 tRNA pseudouridine synthase A 6.61221346797e-06 1.01326898431e-05 1421259513.74 +UniRef50_UPI000475A5BB arabinose transporter permease 5.41907773541e-06 1.34564354996e-05 3244779958.87 +UniRef50_UPI000470CEEA hypothetical protein 0.000111675017345 3.68358643526e-05 -30213484442.7 +UniRef50_Q13LX0 Ribose import ATP binding protein RbsA 3.77552860117e-06 0.00483226880594 1.94932198834e+12 +UniRef50_UPI0004413371 ribosomal protein S12 7.64926842815e-05 0.000110522871853 13738404320.0 +UniRef50_F0KGI1 DNA directed DNA polymerase 0.000170743780995 0.00537394772967 2.10059728457e+12 +UniRef50_B8JA02 1.06211682348e-05 3.54175367128e-05 10010598240.2 +UniRef50_R1GXI1 0.00019233625596 0.00546438875869 2.12839229071e+12 +UniRef50_Q03XB9 5.80872096252e-06 6.1328696289e-06 130862794.369 +UniRef50_R9HYC8 7.88729265857e-06 1.14454841506e-05 1436485569.25 +UniRef50_UPI0003941003 PREDICTED 3.87265982673e-07 5.14957937677e-06 1922604357.36 +UniRef50_UPI00047CE519 hypothetical protein 1.83136536847e-05 8.8381366584e-05 28287195525.0 +UniRef50_UPI00035FDF95 acetylornithine aminotransferase 4.00023544073e-06 0.000204305853894 80865836195.8 +UniRef50_Q56066 Molybdopterin molybdenumtransferase 0.00351663700722 0.0019003417703 -6.52518221318e+11 +UniRef50_UPI0003B4081B biotin biosynthesis protein BioY 1.54784338901e-05 0.000224899355305 84545795858.9 +UniRef50_Q62FS7 Ribosomal RNA small subunit methyltransferase G 4.48865217827e-05 1.04708773968e-05 -13894017966.0 +UniRef50_UPI000477EC64 glycogen debranching protein, partial 6.20727357053e-05 0.000226370140902 66328878633.9 +UniRef50_Q8YFU1 5 hydroxyisourate hydrolase 3.20998236775e-05 3.73443174851e-05 2117266507.3 +UniRef50_B2HX69 Predicted hydrolase 0.000175303090798 0.0049614658533 1.93223264004e+12 +UniRef50_Q8CU33 0.00573538598731 0.00409177570223 -6.63545641453e+11 +UniRef50_UPI00037B3020 hypothetical protein 0.000115750686468 5.19467639051e-05 -25758426500.8 +UniRef50_Q74CZ3 Adenine phosphoribosyltransferase 1.18204234757e-05 3.31118484539e-05 8595609538.86 +UniRef50_Q5PJI9 Arginine exporter protein ArgO 0.000985810997847 0.000279479531722 -2.85154680536e+11 +UniRef50_A5U672 LexA repressor 9.4561414589e-05 1.53493071337e-05 -31978899821.6 +UniRef50_UPI0004743595 hypothetical protein, partial 1.89681409268e-05 4.24404208244e-05 9476047431.93 +UniRef50_A6LT65 0.00013122340285 0.0019463580868 7.32792146118e+11 +UniRef50_UPI000361C034 hypothetical protein 2.36858367208e-06 5.8270716318e-06 1396234029.76 +UniRef50_W0NSJ7 Transcriptional regulator ICP4 0.00011182888895 0.000264567152027 61662311113.4 +UniRef50_Q67JB9 Ribosomal RNA small subunit methyltransferase A 1.94254594117e-05 2.82999621999e-05 3582745677.99 +UniRef50_UPI00035FFF58 hypothetical protein 5.35079479959e-05 9.7596061496e-06 -17661742455.9 +UniRef50_Q6A6S0 0.000230174383446 0.0014869168625 5.07362360757e+11 +UniRef50_Q99ZV9 CRISPR associated protein Csn2 0.00227792300668 0.0040999716039 7.35583377748e+11 +UniRef50_G2AB04 7.26642884203e-05 0.000181284462981 43851297389.7 +UniRef50_H2K8K5 0.000290718097575 0.000121321463739 -68387499810.0 +UniRef50_A3PIQ0 Methyl accepting chemotaxis sensory transducer 0.00469801662557 0.000584161428482 -1.66081382575e+12 +UniRef50_D6ENI5 Integral membrane protein 0.000764388923005 0.000897250128943 53637699227.5 +UniRef50_B8GW41 Uroporphyrinogen decarboxylase 5.20347657135e-06 2.5576022455e-05 8224646772.5 +UniRef50_B1XUJ9 NADH quinone oxidoreductase subunit B 0.00028931674222 0.00422249043955 1.58787048708e+12 +UniRef50_W1H531 5 methyltetrahydrofolate homocysteine methyltransferase 0.00237371339422 0.000904395817222 -5.93181536389e+11 +UniRef50_J9P4V0 4.30365266484e-05 0.000210439457392 67582617406.3 +UniRef50_P20691 3 phosphoshikimate 1 carboxyvinyltransferase 3.63590790378e-06 8.36104054843e-06 1907594032.54 +UniRef50_UPI0003B3BE35 ABC transporter ATPase 8.07693593821e-06 1.13298816763e-05 1313254112.6 +UniRef50_UPI00046F4B95 histidinol phosphatase, partial 4.72393444711e-05 6.32207055392e-05 6451871576.55 +UniRef50_UPI0002626B3F ABC transporter 1.03560664837e-05 7.88304556944e-05 27643951199.6 +UniRef50_Q42682 Delta aminolevulinic acid dehydratase, chloroplastic 0.000152510220819 0.00477515458711 1.8662182569e+12 +UniRef50_Q8X1P0 Catalase 1.85663514085e-05 3.40677501607e-05 6258104899.82 +UniRef50_D8HFS0 0.0126449300249 0.001220095075 -4.61234606777e+12 +UniRef50_Q18J88 Thymidine kinase 1.81511447887e-05 2.62090641476e-05 3253080926.98 +UniRef50_P42449 Isocitrate lyase 1.70064558798e-05 5.26911653276e-05 14406355104.7 +UniRef50_P58813 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.0040352589527 0.00101247164942 -1.22033632811e+12 +UniRef50_C5QCS1 Mobilization protein 0.0875318015942 0.0342188277512 -2.15231017642e+13 +UniRef50_W8X1S4 Tricarboxylate transport membrane protein TctA 0.000689138537299 0.000449138734104 -96890865678.6 +UniRef50_P0ADW1 Lipopolysaccharide export system protein LptC 0.00218863110446 0.000618464304081 -6.33895605427e+11 +UniRef50_W5XB53 Putative hydrolase 1.27537116092e-05 1.11444624346e-05 -649673639.494 +UniRef50_Q9RR99 Oxidoreductase, short chain dehydrogenase reductase family 0.000120346223862 0.0183382945385 7.35480929397e+12 +UniRef50_UPI0004781063 peptide ABC transporter substrate binding protein 1.89618527615e-05 5.88922205479e-05 16120379476.1 +UniRef50_A5WBZ4 Transporter, NhaC family 0.000217049728402 0.00352758977622 1.3365056422e+12 +UniRef50_Q87BX0 Phage related protein 1.67989450747e-05 0.000785026350168 3.10142830646e+11 +UniRef50_Q5N353 Phosphoribosylaminoimidazole carboxylase 0.00146760948304 0.00217830873862 2.86918010738e+11 +UniRef50_Q3DCS0 0.000258451294737 0.000169534363488 -35896856278.7 +UniRef50_Q165N5 Trimethylamine methyltransferase family protein 0.00443649361198 0.00121763763818 -1.29949165643e+12 +UniRef50_I0C2I1 0.0194899647681 0.00707429789861 -5.01235707258e+12 +UniRef50_A1AXZ6 Rhodanese 0.00270982103251 0.000377803887234 -9.41463938618e+11 +UniRef50_A7GYU4 Porphobilinogen deaminase 0.00012527189896 0.00291086474774 1.12457801612e+12 +UniRef50_UPI0003667454 hypothetical protein 1.74307832821e-06 3.65107663576e-06 770282330.53 +UniRef50_Q8CPM3 Pyruvate carboxylase 0.0121790928414 0.0060183262941 -2.48717705625e+12 +UniRef50_Q88V19 Glutamate racemase 0.0038429661046 0.00833734215477 1.81443476365e+12 +UniRef50_Q6GDE9 Serine rich adhesin for platelets 0.00260334308793 0.000705089503951 -7.66348266044e+11 +UniRef50_I9MZI2 1 5 phosphoribosyl 5 methylideneamino imidazole 4 carboxamide isomerase (Fragment) 1.14772186354e-05 1.73308744056e-05 2363192666.86 +UniRef50_K4S416 4.85316733861e-05 3.33283795348e-05 -6137756293.17 +UniRef50_V8G5H9 GntR family transcriptional regulator 0.000307686483864 0.00105007392707 2.99710920941e+11 +UniRef50_F3U2E4 McpE 0.00257786582352 0.00011476037767 -9.94385894192e+11 +UniRef50_Q8A251 Ribosomal RNA small subunit methyltransferase H 1.08304589241e-05 8.31335042072e-06 -1016187591.21 +UniRef50_A6TD39 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.00545261978953 0.000732179251613 -1.90569977148e+12 +UniRef50_K0R9Z2 3.83954374459e-05 2.65533665821e-05 -4780789326.27 +UniRef50_W7Q6R7 4.49091447258e-06 1.17340504534e-05 2924142878.73 +UniRef50_A1BFY3 Lipoyl synthase 5.32397974754e-06 1.84138208097e-05 5284529467.22 +UniRef50_UPI000479C2FE hypothetical protein 3.0216536204e-06 8.35530152306e-06 2153259109.52 +UniRef50_K2J3T1 0.00032810833849 4.05986804015e-05 -1.16071177111e+11 +UniRef50_X1ENU3 Marine sediment metagenome DNA, contig 0.000294849077439 3.19329884348e-05 -1.06142451474e+11 +UniRef50_Q5YSJ6 6.07818701413e-06 9.29505863175e-06 1298690547.49 +UniRef50_A5ULM3 Precorrin 6X reductase, CbiJ 0.00162152371903 0.00144901602335 -69643473653.5 +UniRef50_P0ADC7 Lipopolysaccharide export system permease protein LptG 0.00507535732097 0.00152992744476 -1.43133354834e+12 +UniRef50_B0VDU9 0.000358372774223 0.00333465903083 1.20156328493e+12 +UniRef50_Q3IIQ9 8.24371133558e-06 1.88770220023e-05 4292798001.54 +UniRef50_A3PI11 0.00244467066402 0.000309651305176 -8.61933514797e+11 +UniRef50_UPI000467E1F1 hypothetical protein 1.29715854578e-05 1.06017928987e-05 -956714336.734 +UniRef50_U5MMP4 Methyl accepting chemotaxis protein 0.000899702522952 0.000836685586281 -25440710638.9 +UniRef50_E8U5H6 0.000246186514471 0.0296667468942 1.18774412562e+13 +UniRef50_Q07422 Bifunctional dihydrofolate reductase thymidylate synthase 1.46732144429e-05 4.04652124949e-06 -4290126446.37 +UniRef50_Q9CEG3 Aminopeptidase C 0.00760447669273 0.0100572788924 9.90226347275e+11 +UniRef50_A6LZZ3 AAA ATPase, central domain protein 0.000137652287579 0.00158274042109 5.83399812724e+11 +UniRef50_UPI00035E7781 hypothetical protein, partial 2.24083408422e-05 1.99916577965e-05 -975644601.585 +UniRef50_UPI00045E7C5F translation initiation factor 2 0.000184628970971 7.258344268e-05 -45234154724.3 +UniRef50_UPI000372ADBA actetate permease 7.68225458453e-05 9.3721532223e-05 6822328174.56 +UniRef50_UPI000468220F hypothetical protein 1.58028421252e-05 7.72634080029e-06 -3260582694.68 +UniRef50_L5JBS3 0.000275537218136 0.000440771201791 66706986850.5 +UniRef50_UPI000300E129 hypothetical protein 5.16279100313e-06 2.76738796632e-05 9088002734.2 +UniRef50_V9Z4G9 Replication protein 0.000724774954015 0.000855990449842 52973305860.6 +UniRef50_D5ZZ05 7.5521921438e-05 6.47679894733e-05 -4341494299.73 +UniRef50_G1X3P0 2.89121107581e-06 4.53691439515e-07 -984056588.904 +UniRef50_UPI0003C1128E 2.42641119652e-05 3.43199304391e-06 -8410182047.38 +UniRef50_UPI0002000005 ATP dependent DNA helicase 5.58497019608e-05 0.000159255925212 41746361263.5 +UniRef50_P54533 Dihydrolipoyl dehydrogenase 0.000181910555678 0.000835781594323 2.63975762201e+11 +UniRef50_A4W0T3 Endonuclease III 0.00593074057537 0.00171630963205 -1.7014174887e+12 +UniRef50_Q8FEF9 tRNA pseudouridine synthase C 0.00185429715988 0.000816930640887 -4.18797593635e+11 +UniRef50_A7ZPF5 0.00124168853918 0.000331816522686 -3.67326498444e+11 +UniRef50_A7X2C5 Extracellular matrix binding protein EbhB 0.00441803677974 0.00119794234017 -1.29999164026e+12 +UniRef50_UPI00039B42F6 3 dehydroquinate dehydratase 7.34189326571e-05 2.60355557787e-05 -19129250705.2 +UniRef50_P24582 Modification methylase NlaIII 0.000314465419062 0.0057057551513 2.17652982347e+12 +UniRef50_Q5NRF0 Probable chemoreceptor glutamine deamidase CheD 0.000203181978107 5.17014581743e-05 -61154544772.0 +UniRef50_UPI000376D860 hypothetical protein 8.58458814813e-06 3.64197684721e-06 -1995392834.84 +UniRef50_A5UJQ2 0.00347819576324 0.000789332381461 -1.08552714329e+12 +UniRef50_UPI0002192D8C peptide ABC transporter ATP binding protein 5.01171623516e-05 1.21005130696e-05 -15347787831.9 +UniRef50_C7BZT5 Cytoplasmic pump proteins of the hefABC efflux system 0.000318110756219 0.00293283953496 1.05559809431e+12 +UniRef50_UPI0002B9F68A hypothetical protein 6.18815898012e-05 0.000244902149441 73887645841.5 +UniRef50_C5N6U7 0.0715481724334 0.000726188619325 -2.85917039492e+13 +UniRef50_E4ZD91 0.000286632948998 0.0050863424825 1.93770163773e+12 +UniRef50_UPI0003176417 hypothetical protein 1.64024443277e-05 7.95226633326e-05 25482406984.5 +UniRef50_UPI00017444A4 lactate permease 7.40662163341e-06 3.88498798487e-05 12694029193.7 +UniRef50_B8I6U9 Phosphatidylserine decarboxylase proenzyme 0.000141380520171 0.000207969510703 26882792616.6 +UniRef50_O34318 0.0138738905858 0.00263926191736 -4.53555745783e+12 +UniRef50_UPI0002FA030F hypothetical protein 6.10226680761e-06 7.87884375256e-06 717225913.727 +UniRef50_D4H9Z1 0.000289153712066 0.00368588003269 1.37130009815e+12 +UniRef50_H2EPJ7 Acyl CoA synthetase 7.72311769725e-05 8.30172333899e-05 2335901978.6 +UniRef50_UPI00035F5072 hypothetical protein 1.39302969329e-06 2.2976221438e-06 365195072.869 +UniRef50_U2YKU9 Penicillin binding protein 2 0.00226273070915 0.000547598462688 -6.92419934935e+11 +UniRef50_UPI0003D25F22 4.13109145931e-05 3.4393318365e-05 -2792718485.74 +UniRef50_UPI0003FE0ED1 hypothetical protein 1.78147400641e-05 9.12974863266e-06 -3506237617.7 +UniRef50_D0UWA8 0.00156954141561 0.000854893855216 -2.88511989843e+11 +UniRef50_X0U2P0 Marine sediment metagenome DNA, contig 4.83257007873e-05 3.49786319579e-05 -5388375473.38 +UniRef50_E0SXX7 Collagenase like protease 0.00626204089565 0.0093663121422 1.25323239592e+12 +UniRef50_UPI0003722924 hypothetical protein 6.40414374959e-05 2.28901557965e-05 -16613277405.1 +UniRef50_E3J760 2.94963867728e-05 2.32061522841e-05 -2539444852.95 +UniRef50_P31909 Hydrogenase expression formation protein HoxM 0.000915342883711 0.000286715247755 -2.53784690764e+11 +UniRef50_UPI0003C16579 PREDICTED 1.43437042808e-05 3.53754994253e-05 8490793788.98 +UniRef50_I0LEQ3 0.000127012166912 0.000168544062146 16766935759.6 +UniRef50_UPI0003FB6811 hypothetical protein 8.12482465594e-05 1.06964394103e-05 -28482630314.1 +UniRef50_UPI0003C7E616 hypothetical protein 4.35852553171e-05 4.76949935468e-05 1659151755.49 +UniRef50_A6UEM2 0.00376572124478 0.000576635328994 -1.28747311869e+12 +UniRef50_V6QFC6 Recombinase 0.020923534863 0.0148267651036 -2.46134076765e+12 +UniRef50_UPI00047624DC hypothetical protein 0.000190017999071 0.00012478481605 -26335436486.8 +UniRef50_I3TRE3 Lipoprotein 5.5189098585e-05 1.49090116143e-05 -16261565402.3 +UniRef50_E3RRY8 4.73261104675e-05 1.52876557611e-05 -12934317321.0 +UniRef50_L2LUI2 1.23983557214e-05 1.66074034659e-05 1699244225.28 +UniRef50_S1HVV1 0.00125040625089 0.000223448032776 -4.14595634845e+11 +UniRef50_UPI0004638CB3 50S ribosomal protein L3 8.40080403615e-06 0.000313178303453 1.23042416555e+11 +UniRef50_Q3K3G9 Polyribonucleotide nucleotidyltransferase 0.00678262960423 0.00655278929019 -92789355235.8 +UniRef50_P45804 0.00246801760607 0.00100625796452 -5.90130305102e+11 +UniRef50_Q47WT5 Lysine tRNA ligase 7.64063478605e-06 9.37983991156e-06 702138451.615 +UniRef50_UPI0002377EE6 transposase 6.18990646015e-05 1.5470622179e-05 -18743731947.0 +UniRef50_Q71ZM1 Probable endonuclease 4 0.0270973192318 0.00376535372977 -9.41940078857e+12 +UniRef50_Q5HKZ3 Glutathione peroxidase homolog BsaA 0.00910768029996 0.0011710426068 -3.20411803023e+12 +UniRef50_UPI00046FCB34 carbon nitrogen hydrolase, partial 1.76324554057e-05 0.000323930572427 1.23656308542e+11 +UniRef50_W8YQ25 0.000389093993118 0.000161545937717 -91863942294.0 +UniRef50_Q4L8I4 PTS system, arbutin like IIBC component 0.0105118790475 0.00337699435432 -2.88044050552e+12 +UniRef50_Q2G9M5 Guanylate kinase 0.00598015744794 0.00233708418992 -1.4707533798e+12 +UniRef50_UPI000477407F peroxiredoxin, partial 1.1319983483e-05 2.75641953533e-05 6557987670.94 +UniRef50_Q1N9Q9 3.06774988141e-05 1.60452825408e-06 -11737114980.5 +UniRef50_UPI000262D08E hypothetical protein 9.39309256147e-05 5.50807120963e-05 -15684307943.1 +UniRef50_I7DPQ7 8.30883883469e-06 5.15037915936e-06 -1275108929.59 +UniRef50_N6VQS5 5.25293821999e-05 1.11134209575e-05 -16720131784.6 +UniRef50_Q8KED5 Probable thiol peroxidase 0.000227858745785 3.38902059169e-05 -78307479806.4 +UniRef50_Q1R155 Zinc import ATP binding protein ZnuC 2.14320683415e-05 9.68968778155e-06 -4740543127.29 +UniRef50_M1LWV2 Response regulator receiver protein 0.000250013402159 0.000210439457392 -15976487129.4 +UniRef50_UPI0003B796C7 arginine ABC transporter ATP binding protein 0.000117971420867 4.65885312803e-05 -28818148492.7 +UniRef50_F7PVM3 ABC type metal ion transport system protein 4.27427192848e-05 1.05945669124e-05 -12978603614.9 +UniRef50_I0C688 0.00144663931089 0.000619545535373 -3.33907906758e+11 +UniRef50_W4NY50 9.5258590978e-05 1.9948830082e-05 -30403474628.4 +UniRef50_UPI0004722448 hypothetical protein 6.15298949801e-06 1.1221811727e-05 2046345735.29 +UniRef50_V5SBZ4 Phosphonate ABC transporter substrate binding protein 0.0129567124513 0.00280175016809 -4.09968288913e+12 +UniRef50_UPI00037B6D80 hypothetical protein 7.83542461151e-06 1.07166983607e-05 1163205569.75 +UniRef50_B1GZJ0 Elongation factor P 1.11372934613e-05 3.87658587319e-05 11153990840.4 +UniRef50_X1WW26 0.000311971891609 0.000488126785439 71115892302.8 +UniRef50_F0PCL5 Amino acid ABC transporter, amino acid binding protein 0.00422798830317 0.00200063883992 -8.99208310966e+11 +UniRef50_UPI000378F8D9 hypothetical protein 9.43360177201e-06 4.35891507963e-05 13789014276.8 +UniRef50_P30147 Hydroxypyruvate isomerase 0.00440676220297 0.00142076925352 -1.20548199595e+12 +UniRef50_UPI0004717369 amidohydrolase, partial 7.87065909331e-06 3.39558760833e-05 10530922200.5 +UniRef50_UPI0003B62CCC electron transporter RnfB 1.38032260102e-05 2.88461883825e-05 6073028507.6 +UniRef50_P68799 Fibrinogen binding protein 0.0109734696463 0.0015281408062 -3.81319515997e+12 +UniRef50_Q0TQG4 Porphobilinogen deaminase 0.00101842793199 0.0025549867956 6.20327668937e+11 +UniRef50_B7GQA5 Binding protein dependent transport systems inner membrane component 0.000128834808487 0.00722222076274 2.86368695536e+12 +UniRef50_C6M8K8 0.000199728036426 0.000175526786315 -9770341652.55 +UniRef50_F3GKC7 RelA SpoT protein 5.96074809253e-05 5.24433094958e-05 -2892263920.36 +UniRef50_A6Q5D2 Cytochrome b 0.000114159069206 0.00229266878621 8.79491106073e+11 +UniRef50_Q9F6X6 Light independent protochlorophyllide reductase subunit N 0.000102979068275 3.17531593788e-05 -28754773461.6 +UniRef50_A5UMA2 Predicted endoglucanase 0.00305274403381 0.000759595418098 -9.2577223626e+11 +UniRef50_UPI000301BD84 hypothetical protein 5.86119973284e-06 9.78741102064e-06 1585059676.92 +UniRef50_Q8XVE6 Indole 3 glycerol phosphate synthase 1 2.10650835712e-05 2.02795980161e-05 -317110157.586 +UniRef50_P0C8J9 D tagatose 1,6 bisphosphate aldolase subunit GatZ 0.00345888469187 0.00260400595107 -3.45125038203e+11 +UniRef50_UPI00047A0456 hypothetical protein, partial 6.0172973743e-05 0.000190977889755 52807549750.9 +UniRef50_Q2NXB3 0.000289146491173 0.000455501344774 67159495802.3 +UniRef50_W7T1C4 5.12403933111e-05 4.54557949759e-05 -2335313332.92 +UniRef50_U3SSK6 0.001439770278 0.000785156013645 -2.6427581154e+11 +UniRef50_A1SJC3 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.000335251212962 0.0420744160778 1.68506130531e+13 +UniRef50_UPI0004785ED3 hypothetical protein 6.27263882353e-05 8.01976594409e-05 7053366582.31 +UniRef50_R0WUD1 3.33488508537e-05 0.000274824462041 97486667475.2 +UniRef50_I1H6Y1 0.000106066813943 3.32024226604e-05 -29416248907.4 +UniRef50_A6YPV7 Recombination protein A 0.00026108339293 0.00312578275834 1.15651428763e+12 +UniRef50_P58388 3 mercaptopyruvate sulfurtransferase 0.00223923146161 0.000533901715896 -6.88462545092e+11 +UniRef50_A6QIJ6 0.0176597259472 0.00249293899277 -6.1230180109e+12 +UniRef50_C1DBX8 BolA YrbA family protein 3.66962346387e-05 0.000119207497317 33310809270.3 +UniRef50_A6QIJ0 0.0044150135555 0.000566102310275 -1.55385270115e+12 +UniRef50_R0MK27 Phenylacetic acid degradation protein paaD 8.62938628955e-05 6.66707113487e-05 -7922107082.59 +UniRef50_UPI0003450573 hypothetical protein 3.35952872855e-05 3.27562973411e-05 -338710536.119 +UniRef50_UPI0004785992 DNA polymerase III subunit alpha 8.52207281053e-06 5.48121768598e-06 -1227630529.27 +UniRef50_P0A2K8 UTP glucose 1 phosphate uridylyltransferase 0.00285622713346 0.00060714572454 -9.07981764114e+11 +UniRef50_Q9JWE5 Homoserine kinase 0.000233978918713 0.00297605788981 1.10701092973e+12 +UniRef50_P30011 Nicotinate nucleotide pyrophosphorylase [carboxylating] 0.00302929863069 0.000635391554286 -9.66449663286e+11 +UniRef50_C3FD24 9.6885402055e-05 0.000159774592534 25389137933.5 +UniRef50_J7QJP1 0.000221797528993 0.00103184081319 3.27024414179e+11 +UniRef50_L2YG78 Tat pathway signal sequence 0.000481897007041 0.0017897982133 5.2801576672e+11 +UniRef50_UPI0002891AB1 MsbA 1.92037343567e-05 3.10785006581e-05 4793988875.64 +UniRef50_UPI0003B3A4A3 adenine permease 7.21095974737e-06 7.16694302008e-06 -17770092.953 +UniRef50_A6M229 5 dehydro 2 deoxygluconokinase 0.00038735209993 0.000778536942637 1.57926121379e+11 +UniRef50_A4WSW4 ErfK YbiS YcfS YnhG family protein 0.00497223729314 0.00186291773393 -1.25527046169e+12 +UniRef50_UPI0004786723 hypothetical protein 4.79637031014e-06 3.78467758894e-05 13342854306.4 +UniRef50_UPI0003656635 hypothetical protein, partial 6.68600152884e-05 3.80047068984e-05 -11649242091.5 +UniRef50_A6LYJ9 0.000124037017145 0.000144056929367 8082284235.97 +UniRef50_W8ZDM8 2.19473187102e-05 7.57753201192e-06 -5801259227.22 +UniRef50_UPI000225ACBB acetyl CoA carboxylase, biotin carboxylase 2.90490113369e-06 8.26464798869e-06 2163795576.85 +UniRef50_A3PGH2 0.00331466318752 0.000825750117316 -1.00480474884e+12 +UniRef50_C7RCC8 Serine O acetyltransferase 0.000151600798739 0.0050508999965 1.9779072073e+12 +UniRef50_UPI00037A1089 hypothetical protein 2.74466850089e-05 4.67270467813e-06 -9194135327.71 +UniRef50_A5UMY5 Diphthamide synthase, subunit DPH2 0.00299401549467 0.000457459555424 -1.02403875972e+12 +UniRef50_Q9RYI7 N glycosidase F, putative 0.000580187185277 0.0589466853033 2.35632715277e+13 +UniRef50_P07001 NAD transhydrogenase subunit alpha 0.0108030737621 0.00521694842415 -2.2551873484e+12 +UniRef50_V0AI23 0.0029703780783 0.00142104546197 -6.25484589662e+11 +UniRef50_V7ENM8 6.85992596688e-05 6.8972088663e-05 150515640.085 +UniRef50_UPI00037DEAAC hypothetical protein 0.00106358508853 0.00612062605704 2.04158949586e+12 +UniRef50_F0PHP0 Diacylglycerol kinase catalytic domain family protein 0.00804005244648 0.00250302163142 -2.23536728705e+12 +UniRef50_Q9CE10 UDP N acetylmuramate L alanine ligase 0.024599496981 0.013772860967 -4.37084581662e+12 +UniRef50_W4TIG8 Cytoplasmic axial filament protein CafA and Ribonuclease G 0.000247802618498 0.001156713887 3.6693863269e+11 +UniRef50_Q9RRN1 0.000574237126031 0.0347013330602 1.37775274152e+13 +UniRef50_R4ZVK8 Transcriptional repressor of the fructose operon, DeoR family 1.46559310506e-05 8.52056889553e-05 28481803009.0 +UniRef50_UPI00037A56E2 hypothetical protein 1.26163853057e-05 9.08868592567e-06 -1424175529.46 +UniRef50_Q4UPB2 1.16977323908e-05 0.0017785783706 7.13311395709e+11 +UniRef50_P34001 0.0054515887153 0.001104010369 -1.75517072919e+12 +UniRef50_V2I282 FAD linked oxidase 0.00282648428852 0.000554216021574 -9.17342583235e+11 +UniRef50_Q4L978 Diapolycopene oxygenase 0.0124513397721 0.000695954853552 -4.74579314639e+12 +UniRef50_M9S180 0.000754971977708 0.000214831016484 -2.18061534321e+11 +UniRef50_B3QZ51 Homoserine O acetyltransferase 5.16418688215e-06 3.77547628999e-05 13157215469.7 +UniRef50_R4KG93 ATPase family protein associated with various cellular activities 0.00130894519976 0.000635678428034 -2.71806057658e+11 +UniRef50_D8HI57 Hydrolase, haloacid dehalogenase like family 0.0126007549563 0.00429262324198 -3.35409472531e+12 +UniRef50_I6SDA8 Bacteriophage protein 0.000394961689434 0.00020695538306 -75900452980.0 +UniRef50_K2NZ38 2.36924944638e-05 2.12520074187e-05 -985254568.251 +UniRef50_J7Q8S5 4.47380076552e-05 5.75682638892e-05 5179731886.61 +UniRef50_A0YFR7 8.12687326901e-06 3.7419986077e-05 11825989107.5 +UniRef50_A6LSK3 Protein kinase 0.00013632738744 0.000589779386703 1.83064136584e+11 +UniRef50_F4BWI8 Conserved domain protein 3.51065970154e-05 9.91024067913e-05 25835893723.4 +UniRef50_R4MJG0 4.13894382772e-05 0.000102629832362 24723498596.2 +UniRef50_UPI00037EA4BC hypothetical protein, partial 5.34863809114e-06 2.54672631479e-06 -1131166167.44 +UniRef50_D1DK94 ATP dependent DNA helicase RecQ 5.00865973677e-05 0.00353859272693 1.40835273329e+12 +UniRef50_Q0FEL8 0.000135782170466 1.64346354678e-05 -48182064437.6 +UniRef50_A6LV27 Sigma54 specific transcriptional regulator, Fis family 0.000700697298445 0.000542155538194 -64005254139.5 +UniRef50_B1I194 Bifunctional protein GlmU 4.76723660589e-06 6.12497682335e-06 548136387.135 +UniRef50_F0XY59 Expressed protein 6.14927635066e-05 5.36822208263e-05 -3153211926.17 +UniRef50_K0S277 3.17970254583e-06 9.36923462798e-06 2498790055.66 +UniRef50_A7Z7B8 2 isopropylmalate synthase 7.09490263514e-06 0.000426278163124 1.69229426216e+11 +UniRef50_Q75SP7 stereoselective amidase 0.00106490205464 0.000798871513982 -1.07399793825e+11 +UniRef50_Q9SA96 Arogenate dehydratase prephenate dehydratase 1, chloroplastic 7.77782506218e-05 2.13388504107e-05 -22785278454.5 +UniRef50_P43741 DNA polymerase I 0.000260186226321 0.00267274970556 9.73981482052e+11 +UniRef50_O34635 Probable L serine dehydratase, beta chain 1.07338604181e-05 0.000708779098295 2.81809428509e+11 +UniRef50_E8MF10 UDP glucose 4 epimerase 0.00489001330252 0.00586586604472 3.93963727086e+11 +UniRef50_UPI0003787A5F hypothetical protein 1.17109777891e-05 2.89817468477e-05 6972421405.13 +UniRef50_A7GC03 Anaerobic sulfite reductase, subunit A 0.000470348727971 0.000874050051263 1.62979178185e+11 +UniRef50_Q83HF6 Ribonuclease PH 1.93677605877e-05 4.09959468119e-05 8731564186.4 +UniRef50_U5MQT4 Pentapeptide repeat protein 0.000108785587569 0.000557075586851 1.80980173847e+11 +UniRef50_UPI00030D3128 glycerol 3 phosphate ABC transporter permease 1.29788743877e-05 9.86742807537e-05 34596287150.8 +UniRef50_UPI000366A20C MULTISPECIES 3.90031063163e-05 5.11675185958e-06 -13680337126.5 +UniRef50_U9FGT0 0.00059290993013 0.00203313821883 5.81437833737e+11 +UniRef50_UPI0003B3E71E long chain fatty acid CoA ligase 7.80020776208e-06 4.13067198089e-06 -1481436625.13 +UniRef50_UPI0003C26616 5.649602272e-06 0.000100214806997 38177133593.0 +UniRef50_D5WFZ7 Type VI secretion protein, EvpB VC_A0108 family 0.000549154804951 0.00765489975813 2.86867643489e+12 +UniRef50_A3PNW5 Signal transduction histidine kinase 0.00221656644866 0.00186282065564 -1.42811517591e+11 +UniRef50_Q5P6B9 0.00155231174962 0.000597716433233 -3.85381843427e+11 +UniRef50_W5XA80 Vacuolar iron transporter 1.13981361739e-05 7.03893036915e-06 -1759864876.85 +UniRef50_UPI00047633B9 transcriptional regulator 0.000161950088945 3.52724197317e-05 -51141329571.1 +UniRef50_A0A059LC79 2.25871861578e-05 0.00070424699888 2.75194431302e+11 +UniRef50_D5W932 Sua5 YciO YrdC YwlC family protein 0.000184139506761 0.00389866545092 1.49959970602e+12 +UniRef50_UPI00035D05BC hypothetical protein 3.10832502252e-06 4.85420394489e-06 704832745.304 +UniRef50_P41367 Medium chain specific acyl CoA dehydrogenase, mitochondrial 4.61407805298e-06 4.60819020001e-05 16741069394.9 +UniRef50_Q59042 Phosphoribosylformylglycinamidine synthase 1 0.00285060398872 0.00118716033294 -6.71552616588e+11 +UniRef50_UPI0004283D87 hypothetical protein 0.000290935596716 0.000167887162047 -49676163050.0 +UniRef50_Q897B2 Phosphomethylpyrimidine synthase 0.000666468985673 0.00100992685535 1.38658156691e+11 +UniRef50_Q83B06 Aminomethyltransferase 5.53014101491e-05 1.21592082216e-05 -17417036332.5 +UniRef50_Q8CTQ7 Putative pyridoxine kinase 0.0200966551082 0.0103619900941 -3.93000372397e+12 +UniRef50_UPI00047B361F hypothetical protein 4.6292380628e-05 1.75751300551e-05 -11593506456.6 +UniRef50_A7X2E3 Holliday junction resolvase RecU 0.00798009649387 0.00190918494549 -2.45090149054e+12 +UniRef50_Q46866 Probable transcriptional regulator YgiV 0.00344227865087 0.00199089913615 -5.85939720522e+11 +UniRef50_R9LSU9 1.55257274073e-05 8.28017246776e-05 27160145667.3 +UniRef50_W0F5B5 Phospholipid binding protein 9.66139171706e-06 1.99706191569e-05 4161961625.89 +UniRef50_P70787 Probable tartrate dehydrogenase decarboxylase TtuC 0.00337935341214 0.000404077058733 -1.20115557462e+12 +UniRef50_Q886D0 Autotransporter, putative 0.000283014658313 0.000128485192585 -62385441604.2 +UniRef50_P32128 0.00213658569127 0.00037242356339 -7.12213899729e+11 +UniRef50_W4VEN6 TRAP type C4 dicarboxylate transport system 0.000616914972404 0.000118208389294 -2.01333967419e+11 +UniRef50_UPI0004691530 hypothetical protein 3.83550796902e-06 8.03963861318e-06 1697259131.53 +UniRef50_M1MML4 Transcriptional regulator, TetR family 0.00044977616363 0.00224998713684 7.26767260958e+11 +UniRef50_A0L5I2 Arginine tRNA ligase 4.13660095565e-06 8.81731557796e-06 1889661931.85 +UniRef50_S5U768 2.49673018419e-05 0.000109210383499 34009965843.8 +UniRef50_UPI000255F373 hypothetical protein 1.33456158041e-05 0.00015762093289 58245715964.9 +UniRef50_Q1GRQ0 30S ribosomal protein S2 0.0150328087202 0.002044863042 -5.24339305031e+12 +UniRef50_A0A015AL57 AcrB AcrD AcrF family protein 0.000152295547092 0.00814405451824 3.22637116656e+12 +UniRef50_UPI0004761E95 ligand binding protein SH3 0.000396942621906 9.60365693821e-05 -1.21479465936e+11 +UniRef50_U5MYJ1 Multidrug resistance protein MdtA 0.000877490138922 0.00262253119356 7.0449448782e+11 +UniRef50_W0HG73 Malonyl CoA acyl carrier protein transacylase 0.00012796135215 0.0104496691721 4.16700010849e+12 +UniRef50_R9V4R9 Pili assembly chaperone 0.000825288777521 0.000279491347657 -2.20345120124e+11 +UniRef50_Q08432 Cystathionine beta lyase PatB 2.12687162399e-05 4.09775960387e-05 7956716629.93 +UniRef50_A6LZ60 ROK family protein 0.000568930430525 0.00396342131848 1.37039762656e+12 +UniRef50_Q9I427 Cytochrome bo ubiquinol oxidase subunit 2 0.00178020987535 0.000365340253849 -5.71200228602e+11 +UniRef50_C2PBH1 Phage infection protein 1.08454649208e-05 7.53726095451e-06 -1335562537.42 +UniRef50_L0NF86 0.000160422811399 3.14194170622e-05 -52080253343.5 +UniRef50_UPI00037B865B hypothetical protein 0.00021303686448 4.46255309713e-05 -67989721977.0 +UniRef50_A0AJ06 Glutamyl tRNA reductase 7.46753239132e-06 0.00155338981674 6.24107796792e+11 +UniRef50_Q49X25 Ribosome maturation factor RimM 0.0154063703103 0.0035612370028 -4.78202567237e+12 +UniRef50_U6M5K1 2.16993904463e-05 0.00025231773796 93103456896.8 +UniRef50_J3HRH0 TRAP type C4 dicarboxylate transport system, small permease component 5.46876242616e-05 3.13853608562e-05 -9407409687.69 +UniRef50_O27098 Coenzyme F420 0.00466664812955 0.000978940275044 -1.48877291413e+12 +UniRef50_UPI0004658FC6 hypothetical protein 0.000244991572185 2.36747205981e-05 -89348328848.8 +UniRef50_A9W6R8 Chaperone protein DnaJ 0.00411259041248 0.00126748186121 -1.14860523556e+12 +UniRef50_A6T4V9 H Cl( ) exchange transporter ClcA 0.00102667276549 0.000553606431265 -1.90982684303e+11 +UniRef50_UPI000372F0D2 hypothetical protein 8.06057609936e-06 9.65594137464e-06 644068538.964 +UniRef50_R4YES8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.000948294020264 0.000433454011891 -2.07847229178e+11 +UniRef50_Q8YN97 Ribose phosphate pyrophosphokinase 2.90153811629e-05 5.79161763932e-05 11667605687.1 +UniRef50_UPI00030B21C2 hypothetical protein 6.84529572883e-06 2.52134056951e-05 7415431395.45 +UniRef50_UPI00016C3D7A elongation factor Tu 2.76528749943e-05 2.10550155247e-05 -2663636832.72 +UniRef50_Q52812 General L amino acid binding periplasmic protein AapJ 0.0110852885914 0.00381903345192 -2.93347636679e+12 +UniRef50_A0LXJ9 Phosphoenolpyruvate carboxykinase [ATP] 2.5441323255e-05 0.000275792919131 1.01070011415e+11 +UniRef50_UPI0004776C78 PTS mannose transporter subunit IID 7.76124829762e-06 5.3198648522e-05 18343636050.2 +UniRef50_UPI000472F6DD hypothetical protein 6.0873802626e-06 0.000132735251447 51129299741.1 +UniRef50_B2TQB8 Minor teichoic acid biosynthesis protein GgaB 0.000301941178804 0.000347431417872 18364967739.8 +UniRef50_T2DYB6 Major Facilitator Superfamily protein 0.000186352833447 0.000582552576561 1.59950698213e+11 +UniRef50_A6LZ67 Methyl accepting chemotaxis sensory transducer 0.000254036331322 0.00119222142727 3.7875683606e+11 +UniRef50_D8U6Y2 8.48919015402e-05 2.65652208605e-05 -23547196739.3 +UniRef50_Q3IRZ4 Urease subunit gamma 7.16128937202e-05 0.000263218196035 77353411806.0 +UniRef50_Q9RYE3 UPF0173 metal dependent hydrolase DR_0006 0.000347379744345 0.0301466529734 1.20303322808e+13 +UniRef50_C5WIU5 0.000449083595315 0.000264578499311 -74486971388.9 +UniRef50_K4SQW1 Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA 0.00140245005999 0.000417037689385 -3.97823066383e+11 +UniRef50_X4RBB0 3 dehydroquinate synthase 0.000478961058927 0.00570918213422 2.11150443012e+12 +UniRef50_R9JUE8 0.000190649489319 1.74801271967e-05 -69910596515.7 +UniRef50_I6WWP7 Cell division protein FtsX 0.00026397621598 0.00258600715958 9.37432386455e+11 +UniRef50_B1IMR9 Integrase 0.000317032032568 0.00135153126155 4.17640033472e+11 +UniRef50_P43790 0.00308910692396 0.000566102310275 -1.01856792329e+12 +UniRef50_W4JVP7 0.000495605237007 0.000103458245741 -1.58314552559e+11 +UniRef50_UPI00038FA156 Urease subunit gamma beta 3.87775750133e-05 0.000227513459244 76194992513.8 +UniRef50_F8GG26 2.95479126251e-05 2.68787644182e-05 -1077567885.26 +UniRef50_G1Y156 0.000142821755973 0.000499126825692 1.43844729e+11 +UniRef50_U5UI30 ATP dependent DNA helicase RecQ 0.00745318740602 0.00450171194787 -1.19154686113e+12 +UniRef50_B9KMZ8 0.0136561561427 0.00293953147563 -4.32643288588e+12 +UniRef50_B9KMZ6 0.00132609932222 0.000338459997828 -3.98722114954e+11 +UniRef50_W4U8Z0 Serine transporter 4.07286252948e-06 6.37877636163e-05 24107638353.0 +UniRef50_P44598 Non canonical purine NTP pyrophosphatase 3.86401335727e-05 4.37484205648e-05 2062278144.44 +UniRef50_D3HF85 0.0101118624827 0.0053260213334 -1.93210280085e+12 +UniRef50_F3KAS3 K+ transporting ATPase, subunit B 9.42833683903e-06 0.000293593595164 1.14721001886e+11 +UniRef50_Q8EP56 Oligopeptide ABC transporter permease 0.00836817739095 0.00127012273101 -2.86557176914e+12 +UniRef50_A3U2G6 1.0042237603e-06 1.64945643231e-06 260488347.586 +UniRef50_UPI000424FB0D 50S ribosomal protein L35 0.000420231122862 0.000343290664489 -31061807210.8 +UniRef50_C7D895 1.42591869837e-05 7.31491949374e-06 -2803486001.44 +UniRef50_M4YX49 Cystathionine beta lyase 0.00348376936746 0.00178777927056 -6.84692014257e+11 +UniRef50_P50319 Phosphoglycerate kinase, chromosomal 0.0039052711004 0.00788458094338 1.60649621523e+12 +UniRef50_UPI00034DE802 peptide ABC transporter ATPase 3.85327023475e-05 3.67689252222e-05 -712058469.463 +UniRef50_Q6GJB5 0.0257041395827 0.0113228913842 -5.8058863755e+12 +UniRef50_B8CX90 Diaminopimelate epimerase 5.32676922932e-06 1.00550755099e-05 1908875268.31 +UniRef50_K0RYW3 5.13549785225e-05 1.12765038728e-05 -16180172034.3 +UniRef50_F3C2H3 3.37793083643e-05 7.52222354246e-05 16731018216.1 +UniRef50_D4GIS8 RbsC 0.00327897282923 0.00111112934313 -8.7518501777e+11 +UniRef50_Q6LP67 Putative reductase PBPRA2527 0.00106108867978 0.00259760542494 6.20310665202e+11 +UniRef50_P0AD32 UPF0721 transmembrane protein YfcA 0.00312206719215 0.0010314978874 -8.43988482498e+11 +UniRef50_P29683 Light independent protochlorophyllide reductase subunit N 7.83016320161e-05 2.26965696363e-05 -22448446033.6 +UniRef50_B9KQA6 CheX protein 0.00122071845545 0.000350267609694 -3.51411688065e+11 +UniRef50_R9SKF6 HEAT repeat containing protein 0.00422454410956 0.00175381310806 -9.97464424584e+11 +UniRef50_UPI0004793211 peptidase 0.00023256796435 6.77634736726e-05 -66533595264.8 +UniRef50_L5ME78 Transforming acidic coiled coil containing protein 3 3.26544973088e-05 2.0560652968e-05 -4882433368.54 +UniRef50_UPI000467A92B hypothetical protein 5.06899637246e-06 1.93208625979e-05 5753653285.26 +UniRef50_A5W1N9 0.000294357056807 0.00570514544943 2.18440167194e+12 +UniRef50_Q6AAL7 Phosphotransferase system protein, mannitol fructose specific IIA subunit 0.000252780796101 0.00561083792077 2.16311341198e+12 +UniRef50_B9KL54 Tripartite ATP independent periplasmic transporter, DctQ component 0.0355585645976 0.00684016796028 -1.15939691368e+13 +UniRef50_D4HCV9 ABC transporter, ATP binding protein 8.75837561086e-05 0.00222064107781 8.61141416327e+11 +UniRef50_U5Q1X8 Urease subunit gamma 1.49533600261e-05 2.24976527674e-05 3045723558.55 +UniRef50_A6M1Q7 D galactose binding periplasmic protein 0.000747524204557 0.000714294896405 -13415079470.4 +UniRef50_Q97KN0 Adenine deaminase 1.92713786756e-05 6.28074097571e-06 -5244479852.5 +UniRef50_P80866 Vegetative protein 296 0.0218990119521 0.055922570925 1.37357282734e+13 +UniRef50_R4GHY1 1.31180576506e-05 0.000332127503491 1.28788027972e+11 +UniRef50_A0LZ82 Aldose 1 epimerase 0.000849987475304 0.00165503735787 3.25008516665e+11 +UniRef50_Q49UM3 0.00813379673982 0.00271463101389 -2.1877837042e+12 +UniRef50_B8DCV0 Transcriptional regulator, GntR family 0.000691422147927 0.00291192008868 8.96442267255e+11 +UniRef50_Q2YVT4 N acetylmuramoyl L alanine amidase sle1 0.0209698096105 0.00309222449035 -7.21740049562e+12 +UniRef50_D7C1Q5 8.68667197477e-05 0.00011754329141 12384508423.9 +UniRef50_A0A024R8N7 HCG1776376, isoform CRA_a 0.000154666100132 6.69067397644e-05 -35429530708.9 +UniRef50_Q5HNA1 ABC transporter, permease protein 0.0081955424068 0.0028084783298 -2.17482387459e+12 +UniRef50_F0KFX3 0.000375512750092 0.00736210724278 2.82057393185e+12 +UniRef50_UPI00035DDF13 hypothetical protein, partial 2.88087794044e-05 9.35092631292e-05 26120379243.9 +UniRef50_UPI0002D43593 multidrug transporter 6.91378482183e-05 0.00012614497054 23014474837.3 +UniRef50_UPI0003EA94D2 PREDICTED 5.66792409427e-06 3.70790415883e-05 12681053590.1 +UniRef50_F5X5K2 Predicted membrane protein 0.00681093680208 0.00143457585611 -2.17050288926e+12 +UniRef50_X0XNE1 Marine sediment metagenome DNA, contig 0.000327936002374 0.000200716054885 -51360253965.6 +UniRef50_W4HQ00 0.000122902387329 5.00876399004e-05 -29396207074.4 +UniRef50_R9YPL9 Host cell surface exposed lipofamily protein 0.0085495957931 0.00646450341434 -8.41777380266e+11 +UniRef50_Q9ZUC2 Beta carbonic anhydrase 3 3.12571044249e-05 1.13359499384e-05 -8042414526.26 +UniRef50_E1V7W0 N alpha acetyl L 2,4 diaminobutyric acid deacetylase 0.000289367419874 0.000185461818189 -41947966465.4 +UniRef50_R4Z8G3 Glycogen debranching protein 0.00718522976828 0.00202078940391 -2.08494794991e+12 +UniRef50_Q3V7G7 Alanine racemase 0.000328248685954 0.00326173694451 1.18428520793e+12 +UniRef50_P75860 0.00170509440298 0.00428941170745 1.04332060895e+12 +UniRef50_UPI00039BF8F5 hypothetical protein 0.000254694360043 0.000138440663452 -46933043907.1 +UniRef50_A6LYW2 0.000598575634063 0.000952682763956 1.42957393721e+11 +UniRef50_J0H573 0.00246951809358 0.00110735193613 -5.49923193421e+11 +UniRef50_P08190 Protein FimG 0.00982874166741 0.000352266447552 -3.82576933569e+12 +UniRef50_A7MNJ8 0.000686689484448 0.000230016182029 -1.84364616198e+11 +UniRef50_D7B2I8 8.82414327827e-05 0.000110316269632 8911882524.77 +UniRef50_A6V7D9 0.000449438717542 0.000621719379354 69551817295.0 +UniRef50_UPI0002558E19 chemotaxis protein CheY 1.41432047155e-05 3.79743458309e-05 9620924109.27 +UniRef50_A6LYX0 Phosphoglycerate mutase 0.000368878816464 0.00106205359972 2.79843166212e+11 +UniRef50_K7RNA7 SAM dependent methyltransferase related to tRNA 0.000151398123869 0.00430453211495 1.67667115688e+12 +UniRef50_UPI000350FEA2 PREDICTED 9.0302573244e-05 3.10005473249e-05 -23940955581.2 +UniRef50_G0A8S2 0.000121769673823 0.000191143498515 28007064340.7 +UniRef50_M9R9T3 0.00265034441592 0.000422639471078 -8.99351823246e+11 +UniRef50_UPI000377BD8B hypothetical protein, partial 9.17848841115e-05 0.000124916073688 13375467797.4 +UniRef50_D7GV59 4.49119619641e-05 6.68535487723e-05 8858087848.02 +UniRef50_A1AYV3 Tryptophan synthase alpha chain 2.16461123079e-05 1.09213120305e-05 -4329733480.09 +UniRef50_R5A036 Transcriptional regulator, MerR family 0.00858152773414 0.00369088433617 -1.9744127547e+12 +UniRef50_UPI00046400FC branched chain amino acid ABC transporter substrate binding protein 1.21369417063e-06 8.2736786377e-06 2850202365.11 +UniRef50_I1ZP03 0.00819017497212 0.00596474873702 -8.98431880161e+11 +UniRef50_J9HV03 Sigma 70 factor, ECF subfamily 0.000216945970609 0.00132774966207 4.48445081337e+11 +UniRef50_P55373 Putative transposase y4bF 0.0299957711967 0.00934349055752 -8.33757912603e+12 +UniRef50_P0AEJ7 Ethanolamine ammonia lyase heavy chain 0.00275860833969 0.00153511879688 -4.93937742337e+11 +UniRef50_A6LTI9 Transcriptional regulator, XRE family 0.000775245960967 0.000377000049191 -1.60776761611e+11 +UniRef50_P0A9H8 Cyclopropane fatty acyl phospholipid synthase 0.00187372168646 0.000364039045076 -6.09477408214e+11 +UniRef50_UPI000416C7B3 hypothetical protein 8.67042972356e-05 1.94449950177e-05 -27153405669.8 +UniRef50_K2ADQ8 0.000206847041854 8.15881425901e-05 -50568554732.4 +UniRef50_C5N2G7 0.0037690859581 0.000801764810481 -1.19794396042e+12 +UniRef50_B2HNE5 Bifunctional protein PyrR 9.31785572333e-06 8.04670643615e-05 28723808626.2 +UniRef50_U3NTD9 IS1272 like transposase, degenerate 0.0193920707337 0.00198432095911 -7.02772220112e+12 +UniRef50_B9DM46 tRNA pseudouridine synthase A 0.0216339481163 0.00786699973341 -5.55788600163e+12 +UniRef50_I6G9X5 Na H(+) antiporter NhaB 0.000553101365644 0.000171862292072 -1.53910892331e+11 +UniRef50_Q6YWQ5 5.74693819727e-05 0.000519618836113 1.86575405848e+11 +UniRef50_Q5HJG9 0.0156672149103 0.000723312524878 -6.03303677529e+12 +UniRef50_I6SJA3 0.00169432849153 0.000627243021205 -4.30795498983e+11 +UniRef50_Q12PW9 7.6427788121e-06 0.00108705535655 4.35772103515e+11 +UniRef50_Q2NFV5 0.0034815703794 0.000805936444134 -1.08018625339e+12 +UniRef50_Q8YH17 Methionine tRNA ligase 1.1485699885e-05 2.29990702511e-05 4648088901.74 +UniRef50_A6LUK3 Glutathione biosynthesis bifunctional protein GshAB 0.000378442815358 0.000665166762273 1.15753975868e+11 +UniRef50_UPI00041F4DD3 cytochrome B562 0.000121740290412 2.858500981e-05 -37607929922.9 +UniRef50_P0AB92 Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive 0.00351257010042 0.00103667722213 -9.99548337588e+11 +UniRef50_M5D5S2 Capsule assembly, only in sialic acid capsules 2.91285864515e-05 0.0024857769314 9.91779083322e+11 +UniRef50_P26389 Colanic acid biosynthesis protein WcaM 0.00287000931399 0.000275861932129 -1.04728913183e+12 +UniRef50_T1VWC8 ABC transporter ATP binding protein permease 0.000152610203936 0.00740103628683 2.92627855785e+12 +UniRef50_Q5FLS6 Alcohol acetaldehyde dehydrogenase 0.00844332053398 0.00175415449414 -2.70049841558e+12 +UniRef50_UPI000191169A hypothetical protein 2.11546762959e-06 0.000111421844868 44128325831.1 +UniRef50_Q89IP8 Serine acetyltransferase 0.0127054222658 0.004822155231 -3.18257164051e+12 +UniRef50_G7M4A2 0.0001780594287 0.000779431600775 2.42781325533e+11 +UniRef50_UPI000395B0F7 streptomycin 3 kinase 3.36731791826e-05 5.15851569864e-05 7231285244.08 +UniRef50_F9UF35 4.12324945742e-06 9.03139535901e-06 1981478730.2 +UniRef50_Q5HMZ8 ABC transporter, ATP binding protein 0.0177988087783 0.00461640262814 -5.32189912915e+12 +UniRef50_Q71Y59 Tyrosine recombinase XerD 0.00916725544038 0.00233120304932 -2.75979823807e+12 +UniRef50_P71238 Putative colanic acid polymerase 0.00433712665536 0.0016269188484 -1.09414414966e+12 +UniRef50_J1A645 0.0880639364827 0.0365636711504 -2.0791289094e+13 +UniRef50_Q6F9X3 DNA polymerase III, delta prime subunit 0.000471806134049 0.00362265843199 1.27203773798e+12 +UniRef50_UPI00036E0FA5 hypothetical protein, partial 1.95260974406e-06 6.64520368355e-06 1894457757.98 +UniRef50_R5NMQ5 0.000383884056462 0.00271684180617 9.41843672169e+11 +UniRef50_A5UNF2 0.00345024546518 0.000239445977193 -1.29623915424e+12 +UniRef50_A5UNF1 0.00468184967718 0.000853593791268 -1.54551387912e+12 +UniRef50_UPI000478864C cell division protein FtsW 6.15300540904e-06 0.000118672934863 45425676295.4 +UniRef50_UPI00047B937D DEAD DEAH box helicase 4.73477176522e-07 0.000108267066625 43517594836.2 +UniRef50_A0A059LEJ0 8.36997758017e-05 0.000134785410465 20623897604.8 +UniRef50_N6VGA3 Putative transcriptional regulator 0.000144209633311 3.21620963218e-05 -45234965660.4 +UniRef50_P25885 0.00656613469629 0.0099806225267 1.37847063761e+12 +UniRef50_UPI0003B5626D sodium 1.23599759508e-05 0.00432833813136 1.74241334435e+12 +UniRef50_Q3A9Q7 DNA directed RNA polymerase subunit beta 8.03165151481e-06 3.53833204156e-06 -1814008210.58 +UniRef50_UPI00036DB2E6 hypothetical protein 5.99994622818e-05 6.130590221e-06 -21747524696.3 +UniRef50_UPI000362123D hypothetical protein 0.000171532437202 0.000992077370817 3.31264058919e+11 +UniRef50_S3YIQ8 1.21062467503e-05 0.000327276887326 1.27238255179e+11 +UniRef50_UPI00046C8BA3 hypothetical protein 1.75510078284e-05 2.26466570318e-05 2057176114.06 +UniRef50_W1EYJ0 Ferredoxin like protein YgcO 0.000198724496172 0.000469151757403 1.09174803875e+11 +UniRef50_P46448 Formate dehydrogenase major subunit 0.00223558997434 0.000927536097449 -5.28077401727e+11 +UniRef50_UPI000262829F rhodanese related sulfurtransferase 3.317868567e-05 1.27639102127e-05 -8241695369.58 +UniRef50_UPI00047C1110 hypothetical protein 4.13394102706e-06 3.52305047408e-05 12554064369.0 +UniRef50_A4VSJ2 ABC type Mn2+ Zn2+ transport system, permease component 0.00442380914091 0.0101847633373 2.32576790394e+12 +UniRef50_D3QEN2 0.0204616867683 0.00995614005708 -4.24121812487e+12 +UniRef50_UPI000377656B hypothetical protein 1.53477556131e-06 1.2271856389e-05 4334691288.94 +UniRef50_S5YYN3 Protein L isoaspartate O methyltransferase 0.00747174736479 0.00335435460619 -1.66224198274e+12 +UniRef50_Q6F7L8 Glycine tRNA ligase beta subunit 6.78118542838e-05 0.00694957406664 2.77825185385e+12 +UniRef50_Q6N372 0.000123989885729 3.64342573535e-05 -35347281603.6 +UniRef50_V8HFR8 2.78930533612e-05 9.75671986588e-06 -7321860389.89 +UniRef50_P35818 Type II secretion system protein D 0.000367135319987 0.000351921638834 -6141949774.33 +UniRef50_P00272 Rubredoxin 2 0.000175652976076 3.07637264446e-05 -58493568067.1 +UniRef50_W7WXT6 0.000484648755024 0.00150973160647 4.13838526312e+11 +UniRef50_UPI0004680DA6 hypothetical protein, partial 8.65185667228e-07 1.17740603327e-06 126047193.146 +UniRef50_UPI00046D684B hypothetical protein 1.75662583001e-05 3.795212583e-05 8230024884.55 +UniRef50_A8MLB2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.80317358274e-05 5.32593099871e-05 14221803979.2 +UniRef50_UPI0004712276 hypothetical protein 0.000145148225617 1.18919555928e-05 -53797191447.0 +UniRef50_Q54F10 NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 0.000106659074828 3.15541440277e-05 -30320782205.2 +UniRef50_U6BPG2 Sulfide 0.000904583198461 0.000151737212916 -3.03933162824e+11 +UniRef50_A6QIL0 Phage transcriptional regulator 0.00186672001569 0.000784026650967 -4.37096597479e+11 +UniRef50_B2V042 Acetobutylicum phosphotransbutyrylase 0.000714665915355 0.000999317087393 1.14917171214e+11 +UniRef50_B0VU19 0.000180041012167 0.00331442310062 1.2653885123e+12 +UniRef50_C7NAK8 PP loop domain protein 0.0012506929996 0.00108102916097 -68495373664.4 +UniRef50_UPI00046FF5CF glycerol 3 phosphate ABC transporter substrate binding protein 1.42205785471e-05 5.82943828806e-06 -3387606293.44 +UniRef50_G7M5U8 Type III restriction protein res subunit 0.000390435426871 0.00284407874193 9.90565915879e+11 +UniRef50_UPI0004770856 hypothetical protein 7.66754084355e-06 2.68481280329e-05 7743438420.63 +UniRef50_Q88FX7 HTH type transcriptional repressor NicS 0.000106596061616 0.000106134180544 -186467056.685 +UniRef50_UPI00038194DC 30S ribosomal protein S5 7.50639924337e-06 1.26197190849e-05 2064309967.52 +UniRef50_UPI0003B76623 coproporphyrinogen III oxidase 4.99071300156e-05 1.15261886601e-05 -15494857012.3 +UniRef50_Q56232 Aspartate aminotransferase 0.000510735844043 0.0341239739702 1.35700767124e+13 +UniRef50_R9SJX9 ABC transporter ATP binding protein 0.00392107418223 0.00186180023549 -8.31354162432e+11 +UniRef50_M1MQF5 Response regulator receiver protein 0.000340673678683 0.00139860928457 4.27101586428e+11 +UniRef50_V5SVS2 Membrane protein 0.000538024202165 0.000341406595601 -79376940539.2 +UniRef50_Q9RXI1 7.70903993561e-05 0.0265189828195 1.06749164485e+13 +UniRef50_Q9RXI0 0.000297233062088 0.0412710739285 1.65416423633e+13 +UniRef50_Q9RXI3 0.000148618834644 0.0193078869303 7.73483164089e+12 +UniRef50_P0AEW2 Hydrogenase 4 component E 0.00211387184902 0.000273441393692 -7.43004359438e+11 +UniRef50_UPI0004630DB7 hypothetical protein 5.85645579847e-06 1.31434214566e-05 2941837457.31 +UniRef50_UPI000361E4A2 hypothetical protein 1.27906103966e-05 7.49600025538e-06 -2137499086.18 +UniRef50_Q4ZY83 Two component response regulator CbrB 0.000632095262601 0.000826584728306 78517783959.2 +UniRef50_A6X6K2 Extracellular solute binding protein family 1 1.49781440385e-05 1.55204975913e-05 218954784.692 +UniRef50_I7ER35 Signal transduction protein, FIST domain protein 0.00118528813216 0.000155021892496 -4.15931123739e+11 +UniRef50_P00934 Threonine synthase 0.00435048689627 0.000692603560001 -1.47673239013e+12 +UniRef50_UPI00040DCB98 hypothetical protein 2.20946403709e-05 6.54914422332e-06 -6275907559.48 +UniRef50_UPI00046815CA branched chain amino acid ABC transporter permease 1.12889454714e-05 1.39904750132e-05 1090640627.52 +UniRef50_UPI0003C1A0D8 PREDICTED 0.000155662833724 4.60360207523e-05 -44257689669.1 +UniRef50_A6LZT6 Transcriptional regulator, XRE family 0.000154707372483 0.00147805601357 5.34252085722e+11 +UniRef50_C1CVB0 0.00131681158902 0.0830196173726 3.2984425301e+13 +UniRef50_UPI00047588DA hypothetical protein, partial 0.000114392138376 4.60357834771e-05 -27596299299.5 +UniRef50_Q43844 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.59224934122e-05 5.11133207216e-05 6132723397.22 +UniRef50_Q56224 NADH quinone oxidoreductase subunit 9 5.47820906211e-06 5.61375581617e-05 20451800891.6 +UniRef50_Q4RS53 Chromosome 13 SCAF15000, whole genome shotgun sequence 6.69003106456e-06 2.23710464737e-05 6330618348.35 +UniRef50_D6SFZ4 Tetratricopeptide repeat protein 0.0212894254182 0.00417217374569 -6.91044455249e+12 +UniRef50_UPI0002554EAB ribose ABC transporter permease 0.00012555511544 4.52013999995e-05 -32439780974.3 +UniRef50_Q43931 Muconate cycloisomerase 1 0.000102950724233 0.010368195223 4.14420517288e+12 +UniRef50_D2ZXF5 8.32283723821e-06 0.000860760158686 3.44139407251e+11 +UniRef50_B7V7C6 Fimbrial subunit CupB6 0.000516368653549 0.000225146153897 -1.17570096811e+11 +UniRef50_P77295 Probable HTH type transcriptional regulator YgaV 0.000381298978638 0.000594597393014 86111187349.5 +UniRef50_E3EZG9 2.08730323462e-05 2.77114751335e-05 2760763270.36 +UniRef50_UPI00046E86F5 cell division protein FtsY 4.44790215621e-06 5.50714115337e-06 427627781.478 +UniRef50_UPI0003B5A40E hypothetical protein 8.23966199431e-06 8.62091613637e-06 153916975.664 +UniRef50_Q4QLL8 Cytochrome c 552 0.00218347187021 0.00120498270762 -3.9502808235e+11 +UniRef50_UPI00046632A0 long chain fatty acid CoA ligase 9.46841611191e-06 3.27533901489e-05 9400429757.5 +UniRef50_W0A5F8 Transposase 2.98796429823e-06 9.58315507976e-06 2662559450.6 +UniRef50_I0C313 Hydrolase 0.0173053302443 0.0079398166645 -3.78097275994e+12 +UniRef50_UPI0004631CAE hypothetical protein 5.27090708228e-06 8.19935238432e-06 1182249304.5 +UniRef50_Q5HRP8 Cell division protein DivIC, putative 0.00295581924139 0.000533704888912 -9.77837286782e+11 +UniRef50_B6VMG8 1.98030914159e-05 8.14106868882e-05 24871742302.4 +UniRef50_UPI00047BC877 phosphoribosylaminoimidazole succinocarboxamide synthase 3.968487207e-05 1.92206285762e-05 -8261666222.95 +UniRef50_UPI0003B45BBB biotin synthase 5.45801998651e-06 8.17450971758e-05 30798029209.0 +UniRef50_L1K758 0.00116301362774 0.000390022291365 -3.12066088165e+11 +UniRef50_UPI0001BF7A81 hypothetical protein SMAC_09967, partial 4.85903190355e-05 8.48538313153e-05 14640024910.7 +UniRef50_UPI000288416E winged helix family two component transcriptional regulator 0.000110488407764 1.73936633382e-05 -37583490725.7 +UniRef50_UPI0002DF8C9A hypothetical protein 6.0836202983e-05 8.25663329766e-05 8772720137.1 +UniRef50_Q30Q90 0.000484080713473 0.00305942859384 1.03969954238e+12 +UniRef50_Q56198 Glucokinase 0.024352163825 0.00390251198507 -8.25577539322e+12 +UniRef50_UPI00047A54E3 hypothetical protein 2.15048363986e-05 9.90193915469e-05 31293577123.9 +UniRef50_Q3IYC6 Phosphoglycolate phosphatase 0.000270444877355 0.00091484620082 2.60152721976e+11 +UniRef50_V4R363 Tyrosyl tRNA synthetase 5.13564343198e-05 6.80541548978e-05 6741074701.41 +UniRef50_D3V593 0.00020669008805 0.000283621214504 31058039800.6 +UniRef50_B8DKL2 Appr 1 p processing domain protein 1.17890619663e-05 9.91570128406e-05 35271513893.3 +UniRef50_UPI0002F80699 hypothetical protein 1.2837390593e-05 4.79105544061e-06 -3248404240.66 +UniRef50_W4TMK3 Biotin synthase 0.0011131705313 0.000817163828026 -1.19501538522e+11 +UniRef50_H2JJL8 Anaerobic ribonucleoside triphosphate reductase activating protein 0.000692572461665 0.00258627886643 7.64512513992e+11 +UniRef50_F0DFZ2 1.85850148934e-05 2.96531180556e-05 4468329067.48 +UniRef50_S4YYU9 Enoyl CoA hydratase 0.000487463689438 0.0103449588408 3.97959175767e+12 +UniRef50_B0RDR3 Serine hydroxymethyltransferase 0.000126714033796 0.000160056343506 13460699586.1 +UniRef50_A0A011QYI3 Leucine responsive regulatory protein 0.000590351127073 0.000214254722414 -1.51834733783e+11 +UniRef50_F0Y7D5 Expressed protein 3.74097293279e-05 0.000222510081729 74727283701.0 +UniRef50_B7NFU7 Bifunctional purine biosynthesis protein PurH 0.00621224802591 0.0119636472151 2.32191043028e+12 +UniRef50_UPI0002B4A5BA 3.55858144288e-06 1.16272400062e-05 3257416475.59 +UniRef50_UPI0003593C55 PREDICTED 0.000263077113763 6.29258832946e-05 -80803507871.7 +UniRef50_W5XHW0 Translation initiation factor IF 3 0.00013192011305 0.000378205675359 99428503767.9 +UniRef50_M1LW12 Sensor histidine kinase AruS 0.000458017796203 0.00148956556954 4.16448494612e+11 +UniRef50_F8EJQ6 3 oxoacyl reductase 0.000173158710486 0.00739270232583 2.91461835128e+12 +UniRef50_UPI000462EF2C hypothetical protein 6.96201178551e-05 8.68564900473e-05 6958534968.06 +UniRef50_F2JY03 0.00695153070535 0.00223720146784 -1.90323256451e+12 +UniRef50_D8JE80 Tyrosine recombinase XerC 0.000145935304967 0.00333522998216 1.28755739823e+12 +UniRef50_UPI00037E2E56 polyphosphate kinase 1.0098537128e-05 0.000553647801007 2.19437507927e+11 +UniRef50_P18956 Gamma glutamyltranspeptidase 0.00169593245734 0.00114273199784 -2.23333814033e+11 +UniRef50_Q213M9 C4 dicarboxylate transport protein 0.00417381924491 0.00192652873253 -9.07258757204e+11 +UniRef50_UPI000050FB19 ABC transporter related protein 6.25418431682e-05 9.05268998511e-06 -21594227525.7 +UniRef50_UPI00047A7902 mechanosensitive ion channel protein MscL 3.5849646117e-05 6.41013825507e-05 11405572686.1 +UniRef50_UPI0003B393FA RNA pseudouridine synthase 5.4139451358e-05 4.43021179824e-05 -3971452201.39 +UniRef50_UPI00036D2E60 hypothetical protein 0.000124252444931 1.10249772662e-05 -45711318153.6 +UniRef50_H6SJP6 2.29604561717e-06 3.93410373036e-06 661304161.528 +UniRef50_P37677 L xylulose 3 keto L gulonate kinase 0.00221679626234 0.000691400347411 -6.1582104957e+11 +UniRef50_Q0WM29 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 0.00059524269573 0.000499054988108 -38832157922.9 +UniRef50_UPI0003C767D3 hypothetical protein 2.7080872695e-05 0.00017330243097 59031437415.9 +UniRef50_Q1IPE7 NADH quinone oxidoreductase subunit B 1 1.88901547525e-05 0.000205587040479 75371823796.4 +UniRef50_UPI0003317A65 PREDICTED 0.0001381659917 4.17124883106e-05 -38939462935.9 +UniRef50_B3PI58 Undecaprenyl diphosphatase 0.000163413847988 0.0029298532658 1.116845541e+12 +UniRef50_UPI00036B3249 hypothetical protein 0.00024988564816 0.000114564381389 -54630855974.1 +UniRef50_UPI0003A8BB10 zinc transporter ZitB 5.27299305854e-06 3.43458129047e-05 11737054135.5 +UniRef50_UPI0004722EB3 hypothetical protein 1.62121452756e-05 4.07005194457e-05 9886257158.61 +UniRef50_Q9RVR0 0.000319903380388 0.00759033111478 2.93516089455e+12 +UniRef50_B9KV19 0.000863717370006 0.000949745525536 34730622071.6 +UniRef50_UPI00035D3125 hypothetical protein 1.62332179968e-05 0.000172107308788 62928283242.5 +UniRef50_F3L538 Putative exported protein 3.4193914385e-05 2.69215068335e-05 -2935960171.02 +UniRef50_C8RX76 Flagellar protein FlgJ, putative 0.000244553912208 0.000125315924203 -48137838972.3 +UniRef50_Q8CNW5 Septation ring formation regulator EzrA 0.0166278275511 0.00470385102223 -4.81385564836e+12 +UniRef50_Q89V93 Bll1154 protein 0.00290941049928 0.000226296325824 -1.08320611734e+12 +UniRef50_P44051 Short chain fatty acids transporter 0.00110968494846 0.000953764636463 -62946943310.6 +UniRef50_UPI0004773F07 ATPase P 4.0735915493e-06 6.51819254606e-06 986915421.02 +UniRef50_A9S9Z8 7.18878781716e-06 3.33509712628e-05 10561994503.1 +UniRef50_UPI0003494CA9 hypothetical protein 1.74357057825e-05 2.79859692705e-05 4259270836.4 +UniRef50_A5UMD9 0.0027838263795 0.00647208543853 1.48899544216e+12 +UniRef50_J7RHN4 Aconitate hydratase 4.70289853191e-05 0.00335293530358 1.33463494871e+12 +UniRef50_UPI00046E29A5 dihydroxy acid dehydratase, partial 0.00123234505389 0.000157053056886 -4.34108574506e+11 +UniRef50_M5AGE8 1.10802681553e-05 1.7698987033e-05 2672058031.74 +UniRef50_B3DS65 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 6.49275752096e-06 3.64335107987e-06 -1150340346.42 +UniRef50_A4JK78 Phospholipase C 2.19570434892e-05 4.22780073683e-05 8203822484.26 +UniRef50_Q9RX49 Sensory box GGDEF family protein 4.71857486102e-05 0.0088516869521 3.55448517923e+12 +UniRef50_Q0F2B8 Stringent starvation protein A 1.09269686454e-05 3.7497929576e-05 10727022990.0 +UniRef50_UPI0003B6D1EF LysR family transcriptional regulator 1.19850650505e-05 2.0873804794e-05 3588493311.55 +UniRef50_A7FKP6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 7.17603803914e-06 1.44166319382e-05 2923116609.13 +UniRef50_UPI0002628ACD parB like partition proteins 2.40489727307e-05 0.000511234315636 1.96682701367e+11 +UniRef50_UPI0003601EED hypothetical protein, partial 0.000379018403745 0.00055520098629 71127070576.8 +UniRef50_A3M7V2 23 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.000155557412985 0.00607131945209 2.38826572975e+12 +UniRef50_UPI000372E28D gamma aminobutyrate transporter, partial 4.0625742168e-05 9.72517135413e-05 22860599522.2 +UniRef50_I0JLF4 Lactoylglutathione lyase 0.00276714417874 0.0116519516335 3.58690579833e+12 +UniRef50_B5ZZ54 Hydrolase of the alpha beta superfamily like protein 0.00160959866733 0.000253490734069 -5.47477413973e+11 +UniRef50_B7UVW2 0.00115431596661 0.000413957071086 -2.98891971348e+11 +UniRef50_UPI00036095F7 hypothetical protein 0.0189776969503 0.0052050143498 -5.56020097564e+12 +UniRef50_UPI00046CE9BB hypothetical protein 0.000122170699499 0.000209197193767 35133663671.2 +UniRef50_F0KJR3 Membrane alanyl aminopeptidase 4.93445737068e-05 0.00594282895461 2.37927196576e+12 +UniRef50_A2S1L9 0.000101116894552 8.84926248375e-05 -5096572600.95 +UniRef50_A1VT74 Transposase, IS4 family 0.0010922193153 0.000626074002833 -1.88188582889e+11 +UniRef50_UPI0003C150A0 PREDICTED 9.0702000874e-06 1.32328999553e-05 1680533018.74 +UniRef50_UPI00041D4C0B hypothetical protein 0.000150740037596 0.000214478331209 25731931288.4 +UniRef50_A3PJ68 SmpA OmlA domain protein 0.0134579703028 0.00419037778553 -3.74144082537e+12 +UniRef50_Q99ZQ6 Pseudouridine synthase 0.00311925984556 0.00332065650863 81306304296.3 +UniRef50_Q5HQT9 Sodium transport family protein 0.0172259539806 0.00627233786729 -4.42210924092e+12 +UniRef50_G7M9D2 Pseudouridine synthase, RluA family 0.000127385598041 0.000396186713523 1.08518308881e+11 +UniRef50_P13036 Fe dicitrate transport protein FecA 0.00527385381521 0.00151267925277 -1.51843232566e+12 +UniRef50_UPI000366DA96 hypothetical protein 1.64334603922e-06 2.06483535067e-05 7672554732.3 +UniRef50_UPI000475FEFF FAD binding protein 1.57298077253e-05 0.00199718969537 7.99939671887e+11 +UniRef50_B4FJG3 4.46867420191e-05 0.000143220448845 39779266590.2 +UniRef50_R7PWX3 9.54213507134e-06 7.58759236532e-07 -3545956608.65 +UniRef50_P39522 Dihydroxy acid dehydratase, mitochondrial 6.36373341395e-06 6.90635110603e-06 219061420.961 +UniRef50_A2SLT0 tRNA specific 2 thiouridylase MnmA 5.67432646804e-06 1.05186865962e-05 1955727630.72 +UniRef50_X2NG16 Lysine decarboxylase LdcC 0.00398208653109 0.00119116233895 -1.12673034486e+12 +UniRef50_Q9RY06 Valine tRNA ligase 9.10160645133e-05 0.0558427482078 2.25076584169e+13 +UniRef50_Q0RRW7 NADH quinone oxidoreductase subunit B 2.00544750015e-05 0.000152527191493 53480861270.5 +UniRef50_P37813 ATP synthase subunit a 0.0198051196505 0.00280035257875 -6.8650331388e+12 +UniRef50_U3T5D5 0.000556985325125 0.0159011099792 6.19461141644e+12 +UniRef50_S9XSX4 2.22283320959e-05 0.00100222821775 3.95637979789e+11 +UniRef50_J7D104 0.0040751905466 0.000500503771397 -1.44314491749e+12 +UniRef50_B0K6Q8 0.000152129137978 0.000201478912314 19923109489.3 +UniRef50_UPI00020009E9 hypothetical protein, partial 0.000179880619506 0.00351812395118 1.34768979785e+12 +UniRef50_A0A058ZAA4 6.36876267111e-06 1.95527719833e-07 -2492210703.94 +UniRef50_D2NQQ7 ATP dependent zinc metalloprotease FtsH 0.000887127455704 0.00693694989277 2.44238755751e+12 +UniRef50_UPI00035F9DDC hypothetical protein 1.05874954465e-05 1.98829983183e-05 3752708577.99 +UniRef50_B2E956 NADP dependent isocitrate dehydrogenase protein 0.000217423631052 0.00011901517842 -39728699935.1 +UniRef50_UPI000349B827 hypothetical protein 4.48040620258e-06 1.05718895839e-05 2459206591.95 +UniRef50_I9CFE3 Transposase IS66 2.53042661254e-05 3.46215107465e-05 3761485988.99 +UniRef50_C6SRZ7 0.00456627355165 0.000972119515738 -1.45100408953e+12 +UniRef50_G0LSH0 Pathogenicity island protein 6.13422155185e-05 0.000553718822241 1.98778478274e+11 +UniRef50_X2HYB2 Sodium 0.000220272022714 0.00221249711021 8.04285715175e+11 +UniRef50_Q7MNQ6 UPF0246 protein VV0659 0.000894087280541 0.00428649462857 1.36955647592e+12 +UniRef50_A5WGK5 Aspartate carbamoyltransferase 0.00141432264821 0.00667240784141 2.12275351646e+12 +UniRef50_Q1GID4 Extracellular solute binding protein family 1 2.53537525793e-05 9.52938635971e-06 -6388490829.66 +UniRef50_A6LVW3 RelA SpoT domain protein 0.000206276496643 0.00219321560862 8.02151701991e+11 +UniRef50_UPI000471FC6E glyoxalase 6.59220560604e-05 0.000180390790446 46212432761.0 +UniRef50_Q8XKQ2 Galactose methyl galactoside import ATP binding protein MglA 0.00275979847426 0.00114593119087 -6.51538026683e+11 +UniRef50_UPI00016C49DE phosphoribosylanthranilate isomerase 9.07174811214e-06 1.31269812347e-05 1637147374.88 +UniRef50_B0TGQ8 Dihydroorotate dehydrogenase B ), catalytic subunit 5.99704070456e-06 0.00199560677332 8.03229864316e+11 +UniRef50_B9KKA8 6.71606810779e-06 0.000195288060882 76128827521.4 +UniRef50_UPI000472AD58 tryptophan synthase alpha chain 1.21211111217e-05 7.77844699951e-06 -1753186796.61 +UniRef50_UPI00046ADEBA ABC transporter ATP binding protein 5.27740504682e-06 4.72610002336e-06 -222568603.244 +UniRef50_A7IEL6 Binding protein dependent transport systems inner membrane component 0.000428338800051 0.00386680080175 1.38814930476e+12 +UniRef50_E8SEV3 Molybdopterin biosynthesis protein MoeB 0.0300974810281 0.00721240646572 -9.23898543229e+12 +UniRef50_UPI0002B45AB9 3.46835315563e-05 1.28551612318e-05 -8812380964.23 +UniRef50_Q5WE04 L lactate dehydrogenase 0.0260637510171 0.0120648692818 -5.65152034214e+12 +UniRef50_A6LYL8 Integral membrane sensor signal transduction histidine kinase 0.000537243471011 0.00282380541781 9.23113117194e+11 +UniRef50_K8B662 0.000130734681622 0.000150671788373 8048854651.19 +UniRef50_UPI0001FFDAEB transcriptional regulator 0.000171316082874 9.86803785002e-06 -65178556966.5 +UniRef50_K0FMM2 BclA protein 2.34817760961e-05 5.24767756059e-05 11705637110.8 +UniRef50_B2VIE6 UPF0294 protein ETA_26410 0.00301966390065 0.000453966749505 -1.03580342456e+12 +UniRef50_Q0H8X2 Probable intron encoded endonuclease bI1 0.000292458690724 0.000111821289617 -72925535497.1 +UniRef50_W0EIH2 UvrABC system protein A 1.09550659468e-05 8.55301548604e-05 30106878533.7 +UniRef50_D2NRU1 Archaeal DNA polymerase II, large subunit 2.80803766649e-06 7.16939560287e-05 27810090568.1 +UniRef50_UPI0001E7AE98 putative ribonucleotide reductase large subunit 2.68750178491e-06 0.000141807699165 56164530879.1 +UniRef50_UPI0003614ECF hypothetical protein 6.52380861244e-06 1.1080691072e-05 1839669368.16 +UniRef50_Q2CJ82 Short chain dehydrogenase reductase SDR 1.03388304735e-05 1.39999671359e-05 1478045797.81 +UniRef50_P0A936 Membrane bound lytic murein transglycosylase A 0.00426115866906 0.00130205066746 -1.19462821258e+12 +UniRef50_UPI000443285E PREDICTED 5.01741881218e-06 6.89723717774e-05 25819399327.6 +UniRef50_A5IW55 Transcriptional regulator, MarR family 0.0106057167506 0.00646839995983 -1.67028555902e+12 +UniRef50_UPI000350F61A PREDICTED 2.10044736394e-06 1.1637722001e-06 -378147257.939 +UniRef50_UPI0003B45CE3 arabinose ABC transporter permease 2.9532503847e-06 4.40416752801e-06 585753055.51 +UniRef50_A0A022P145 0.000588111278528 1.88654342355e-05 -2.29811532773e+11 +UniRef50_UPI00026276EB preprotein translocase subunit SecA 5.14905668541e-05 2.16180960222e-05 -12059883051.3 +UniRef50_Q9RY70 Ornithine carbamoyltransferase 0.000163886825841 0.0521575567979 2.09904826018e+13 +UniRef50_P24520 Nicotinamide riboside transporter PnuC 0.00230166498542 0.000567916740756 -6.99935441853e+11 +UniRef50_A0Q6K3 Malate dehydrogenase 0.0264608191773 0.00755789098362 -7.63134407681e+12 +UniRef50_B9KQ46 0.00183519778278 0.000399977478817 -5.79416048842e+11 +UniRef50_Q5XD24 Probable metallo hydrolase M6_Spy0554 0.00515971547456 0.00881165215888 1.47433165376e+12 +UniRef50_V6URT8 Membrane protein 4.55952041033e-05 8.21353738476e-06 -15091437578.9 +UniRef50_Q5HR11 ATP dependent DNA helicase RecQ 0.00970656817334 0.00173184456588 -3.21949378119e+12 +UniRef50_UPI000471C72D NAD dependent malic enzyme 1 2.50828407752e-05 1.64211519981e-05 -3496830050.19 +UniRef50_C1CXG7 30S ribosomal protein S10 0.00074260337074 0.00398784410932 1.31014350975e+12 +UniRef50_UPI00046A2C95 histidine phosphotransferase 6.46251895901e-05 2.43624324826e-05 -16254569123.9 +UniRef50_V5VBC4 Acinetobactin biosynthesis protein 7.7287698312e-05 0.00499994087583 1.98733549551e+12 +UniRef50_A0A031C6N4 0.000205901448467 6.42452596268e-05 -57188341751.6 +UniRef50_A8LPB3 Import inner membrane translocase 0.00502587011153 0.000566246806702 -1.80040465389e+12 +UniRef50_Q6D6A4 UPF0176 protein ECA1781 0.00298869328346 0.00161361166763 -5.5513732246e+11 +UniRef50_D3DZB3 MatE efflux family protein 0.00350056434364 0.000651809326294 -1.15007735866e+12 +UniRef50_F8G4X8 Citrate synthase 0.00134989097874 0.000677906461153 -2.71288395927e+11 +UniRef50_UPI0003B63C52 peptide permease BMEII0860 8.77093862504e-06 1.151309756e-05 1107043212.12 +UniRef50_P20839 Inosine 5 monophosphate dehydrogenase 1 2.26505895462e-05 9.593921748e-06 -5271137013.46 +UniRef50_J3TFE7 Arabinose efflux permease family protein 0.000113359155811 0.00417289592959 1.63888481169e+12 +UniRef50_UPI00034B9571 hypothetical protein 2.70868313263e-05 3.33910883421e-05 2545105919.21 +UniRef50_U2Z938 Initiation of plasmid replication 0.000729942375831 0.000151255992455 -2.33622794249e+11 +UniRef50_T2KQZ5 Lipoyltransferase and lipoate protein ligase 0.0202426221139 0.00349773755939 -6.76011537749e+12 +UniRef50_S6AU95 Transcriptional regulators 0.0041192970673 0.00412656654739 2934778318.89 +UniRef50_F4CWF2 0.000124632804606 6.12755474683e-05 -25578102187.5 +UniRef50_N0AYY4 Aromatic amino acid transport protein AroP 0.031394896346 0.00776212371052 -9.54084031968e+12 +UniRef50_A6U7Z3 Proline tRNA ligase 0.0145095164521 0.00293635628332 -4.67222677879e+12 +UniRef50_F0Y346 0.000226814149978 0.000242567299515 6359739780.97 +UniRef50_V9VJ25 0.000252123087322 0.0100227027858 3.94450292277e+12 +UniRef50_X2HPT1 Membrane protein 0.000139122600314 0.0048499777673 1.90183003961e+12 +UniRef50_C4ZU18 Fructose 1 phosphate kinase 0.00238540650076 0.000586721930844 -7.26151033218e+11 +UniRef50_S5SQS1 Oligopeptide ABC transporter ATP binding protein 0.00115727141235 0.000811442799272 -1.39615254894e+11 +UniRef50_C1DMJ1 TonB dependent siderophore receptor 0.00067187626896 0.000551484416891 -48603668054.4 +UniRef50_D9VJK2 5.70526502717e-07 0.000169579680527 68231069455.0 +UniRef50_Q8NQ46 Peptide deformylase 1 1.29258374628e-05 9.66405089067e-05 33796640156.4 +UniRef50_F6DQM1 FAD linked oxidase domain protein 0.000603719017794 0.000163158400665 -1.77859727422e+11 +UniRef50_Q49ZH2 DNA topoisomerase 3 0.0102579146244 0.00346160852263 -2.74375217334e+12 +UniRef50_I0I0F8 Putative major facilitator superfamily transporter 6.13343134872e-06 3.79350676046e-06 -944656270.384 +UniRef50_Q3JPX4 Val start codon 3.32897357665e-05 5.87624370776e-05 10283642104.5 +UniRef50_O32867 Tetrahydromethanopterin S methyltransferase subunit A 0.00283651439477 0.000508322774466 -9.39919527239e+11 +UniRef50_B8DWF1 ATP binding protein of ABC transporter 7.9806762976e-05 0.00134443644192 5.10546520139e+11 +UniRef50_D9RCU3 ABC type nitrate sulfonate bicarbonate transporter, TauA 0.00954138805413 0.00428885633426 -2.12051151112e+12 +UniRef50_H6P8S4 Acetoin dehydrogenase E1 component 0.00951654849752 0.00467300993691 -1.95539595382e+12 +UniRef50_C5D403 Anti sigma F factor 0.000514753621167 0.000826060713832 1.25678493476e+11 +UniRef50_UPI0003A374B9 ribonuclease 3 1.31455330626e-05 7.53506305934e-05 25112961215.6 +UniRef50_A3PP97 Transcriptional regulator, AraC family 0.00427920469186 0.000302372053093 -1.6054961375e+12 +UniRef50_P06130 Formate dehydrogenase subunit beta 0.00368426348646 0.000690020470573 -1.20881264901e+12 +UniRef50_H3VE51 0.000399513634297 0.00031220860807 -35246110441.0 +UniRef50_B9JCY0 8.21216023673e-05 5.04302581437e-05 -12794184559.6 +UniRef50_U5NMX6 0.0157060533738 0.00490140401226 -4.3619695352e+12 +UniRef50_X1RXJ8 Marine sediment metagenome DNA, contig 1.18064935746e-05 1.19259609452e-05 48230443.5407 +UniRef50_M8R009 0.00766369264197 0.000694862835762 -2.81340210993e+12 +UniRef50_Q8FDH0 HTH type transcriptional activator TtdR 0.00245791682665 0.000473622087543 -8.01084136213e+11 +UniRef50_UPI0002DC6DF0 hypothetical protein 0.000233296747131 0.000369135180841 54839642613.8 +UniRef50_UPI000363C9B5 hypothetical protein 3.27460368986e-06 0.000227585010365 90556863772.9 +UniRef50_B2TGR6 NADH 0.00344866680628 0.00033063479302 -1.25878778631e+12 +UniRef50_P39773 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.0257656392718 0.00374224139949 -8.89111597853e+12 +UniRef50_Q932I8 Tetracycline resistance protein TetM 0.000142381891009 9.44509718088e-05 -19350300259.6 +UniRef50_S4X5W3 0.000173996884551 0.000110186878266 -25760882574.1 +UniRef50_UPI000473EC6D MFS transporter 1.65180832232e-05 0.000111677830249 38417157615.7 +UniRef50_P36682 0.00347600416181 0.00248154314239 -4.01476116949e+11 +UniRef50_Q5X5E0 Orotidine 5 phosphate decarboxylase 3.61623490513e-05 1.20477939878e-05 -9735341798.0 +UniRef50_P08005 Oligopeptide transport system permease protein OppB 0.00259948196924 0.00039323216977 -8.90690117776e+11 +UniRef50_A8BSP6 0.000113443423855 0.000221487528896 43618731055.3 +UniRef50_R4ZI73 Hydrolase, haloacid dehalogenase like family 0.00571378903837 0.00247512991375 -1.30748643143e+12 +UniRef50_Q9RWJ0 Argininosuccinate lyase 0.00733429383423 0.0195192635832 4.91922181406e+12 +UniRef50_K7EGT5 3.48781643324e-05 0.000604341161777 2.29899200165e+11 +UniRef50_B6JLQ7 Type II R M system protein 4.07799051658e-05 0.00472811258922 1.89233372459e+12 +UniRef50_UPI0004225DED isoleucine tRNA ligase 1.37531687293e-06 6.51499332703e-06 2074950455.44 +UniRef50_A6E257 3.19333387442e-06 8.39392038982e-06 2099540594.64 +UniRef50_Q3IMY5 50S ribosomal protein L2 0.00589840543537 0.000860667332413 -2.03379669216e+12 +UniRef50_G8VA00 Adhesion protein associated protein 0.000657845574193 0.00707684035524 2.59142696303e+12 +UniRef50_Q8IQF1 Molybdenum cofactor biosynthesis protein 1 3.13539564882e-06 7.87906153327e-05 30542940580.3 +UniRef50_Q4L770 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0176000195049 0.0033443335214 -5.75519536848e+12 +UniRef50_I3UHD0 Spermidine putrescine ABC transporter ATPase 0.00104881287132 0.0014188488577 1.49388068554e+11 +UniRef50_B5X4Z4 Probable amino acid acetyltransferase NAGS2, chloroplastic 2.86314551725e-06 5.34244005008e-06 1000921627.27 +UniRef50_W5XJA7 Primary replicative DNA helicase 4.65083201026e-06 7.24343625428e-06 1046666148.14 +UniRef50_P23325 Ankyrin repeat protein A 0.000867212605624 0.000185200651719 -2.75336595019e+11 +UniRef50_Q8CUB3 0.0523263044 0.0116723163284 -1.6412513865e+13 +UniRef50_D0K767 0.00792308556173 0.000654638500648 -2.93436127243e+12 +UniRef50_Q8CUB1 0.00527565012877 0.00187196196748 -1.37411067866e+12 +UniRef50_Q8CUB0 0.000688045255084 0.000384496984105 -1.2254616195e+11 +UniRef50_Q9I576 4 hydroxyphenylpyruvate dioxygenase 0.00137192810219 0.00035389785821 -4.10991302131e+11 +UniRef50_Q8CUB6 0.00820714297245 0.00769431180473 -2.07036235555e+11 +UniRef50_Q8CUB4 0.0345894628862 0.0110947264562 -9.48511340963e+12 +UniRef50_D4YZ36 9.68704126262e-05 4.18345603648e-05 -22218648923.8 +UniRef50_G7M679 D galactose binding protein 0.000970125095041 0.00461549273457 1.47167964977e+12 +UniRef50_B5GNG9 2.88642298465e-05 0.000220890571829 77523390686.7 +UniRef50_UPI00042A099E MULTISPECIES 9.34986347e-06 1.15428299218e-05 885327467.316 +UniRef50_A6M2R3 Signal peptidase I 0.00101191085796 0.00193112350419 3.71097425291e+11 +UniRef50_UPI00036D23D9 hypothetical protein, partial 8.98441945633e-05 1.32615502885e-05 -30917353268.5 +UniRef50_UPI0003802981 30S ribosomal protein S13 0.000188688016778 0.0010173289622 3.34532518235e+11 +UniRef50_UPI00046643A7 uracil phosphoribosyltransferase 8.90699868207e-06 2.47122974436e-05 6380793062.84 +UniRef50_U5SG79 Rlx protein 0.000395483171821 4.9834431849e-05 -1.39542637914e+11 +UniRef50_Q9RUU7 6.74333839322e-05 0.0828867124478 3.34351592649e+13 +UniRef50_S4EU42 5.23117741504e-05 8.35624719508e-05 12616290191.2 +UniRef50_UPI00046CF290 molecular chaperone DnaJ, partial 1.34954366863e-05 1.79363806799e-05 1792863586.73 +UniRef50_R9ZBV1 Membrane protein 0.00022251613143 0.000296455743287 29850328647.7 +UniRef50_H9K042 6.5437293272e-05 0.00013694047349 28866711296.7 +UniRef50_P0ACQ2 Ribose operon repressor 0.00555451981669 0.0018868803424 -1.48067106277e+12 +UniRef50_Q6F9I9 Coenzyme PQQ synthesis protein E 0.000297733211355 0.00343423304362 1.26624347147e+12 +UniRef50_U3SUW9 0.0215533751035 0.00412069821203 -7.0377855841e+12 +UniRef50_UPI000478E845 acetyl CoA acetyltransferase 3.94063304549e-06 4.00508842265e-05 14578151524.4 +UniRef50_E8QA77 Exported protein 0.00485836768309 0.0051253203629 1.07772072717e+11 +UniRef50_UPI000478CDB6 hypothetical protein 2.41767984707e-06 1.22124213446e-05 3954257337.55 +UniRef50_A6LWY2 Peptidase M42 family protein 0.000119457591412 0.00131237308102 4.81594621875e+11 +UniRef50_Q898F3 DNA binding protein iolR 0.000208555794952 0.000522798163873 1.26863500521e+11 +UniRef50_U9DSS6 4.21643106482e-05 1.99254841624e-05 -8978087153.41 +UniRef50_E5U235 0.000546347376875 0.000270118386102 -1.11517033286e+11 +UniRef50_G5N0A7 DNA ligase 0.00278720758274 0.00102131526159 -7.12912399984e+11 +UniRef50_UPI000375E551 hypothetical protein, partial 1.60300389907e-05 3.04770917789e-05 5832452495.87 +UniRef50_UPI00037AE230 hypothetical protein 1.46798656517e-05 0.000301841269429 1.15930582571e+11 +UniRef50_UPI00047B09DF hypothetical protein 4.14914404877e-06 2.80054536879e-05 9631084951.14 +UniRef50_UPI00047229B1 hypothetical protein 0.000180557851816 2.25868571e-05 -63774829088.9 +UniRef50_M2ZV09 1.64591066016e-06 1.54888495218e-06 -39170468.9509 +UniRef50_C7QH34 Thioesterase superfamily protein 6.7636987712e-05 0.00100434415332 3.78160177445e+11 +UniRef50_M8ZKF1 TraU family protein 0.000223775273993 4.09111443757e-05 -73824493121.6 +UniRef50_A4J903 UPF0042 nucleotide binding protein Dred_3054 0.000569338702742 0.00413888113767 1.44106808419e+12 +UniRef50_UPI000429F6B2 hypothetical protein 3.6542628731e-06 1.74606430983e-05 5573805120.25 +UniRef50_X1F770 Marine sediment metagenome DNA, contig 8.08838336464e-05 6.07813619599e-05 -8115614504.91 +UniRef50_UPI000219576D homoserine dehydrogenase 4.89841567849e-06 0.000159486969502 62409296193.6 +UniRef50_Q9RYT7 Glucan synthase 1 related protein 0.000694443904091 0.0417365707965 1.656921027e+13 +UniRef50_G8WNN7 2.88831785182e-05 1.77726240881e-05 -4485467165.27 +UniRef50_S5STQ7 Fasciclin domain containing protein 0.000118444829756 2.09622244584e-05 -39354924004.7 +UniRef50_P67431 HTH type transcriptional repressor NemR 0.00144142290001 0.000643261798562 -3.22227431193e+11 +UniRef50_Q92UB9 0.000213689721651 0.000101976277451 -45100088301.7 +UniRef50_UPI000373D358 ferredoxin 7.87599171331e-06 8.69597216458e-06 331036170.469 +UniRef50_T1ZVD1 Two component system response regulator 0.00303100255673 0.00109195141113 -7.82818742312e+11 +UniRef50_Q7MUW1 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.09593099145e-05 0.00708961575346 2.84966622572e+12 +UniRef50_A1KL82 Phosphoadenosine phosphosulfate reductase 8.67140763045e-06 1.08911020707e-05 896117884.243 +UniRef50_U9V3J0 0.000105983478365 0.000183511548505 31299033291.9 +UniRef50_Q5HNJ1 0.00920845685419 0.00274938243779 -2.60760760366e+12 +UniRef50_P40131 Flagella basal body P ring formation protein FlgA 0.00301986461335 0.00294140362215 -31675664972.1 +UniRef50_F0LTE4 2.80164479065e-05 3.32849731e-05 2126968272.69 +UniRef50_M7CYB4 40K cell wall protein 0.00251880346255 0.00167084964205 -3.42329362899e+11 +UniRef50_A6M2E1 0.000549133561104 0.000460076405293 -35953466655.1 +UniRef50_Q1RF99 0.00366473942394 0.000346814498151 -1.33948700806e+12 +UniRef50_UPI0003771A5E hypothetical protein 5.32801363756e-05 1.95735016213e-05 -13607782077.2 +UniRef50_Q9I2Q2 Methionine synthase 0.00096728335384 0.00367943663333 1.09492956079e+12 +UniRef50_P52690 HTH type transcriptional regulator CbbR 0.00241162990167 0.000438140473143 -7.96721899736e+11 +UniRef50_O05508 6 phospho beta glucosidase GmuD 0.000595633453839 0.00703651462641 2.60026276787e+12 +UniRef50_Q9K8D9 Non canonical purine NTP pyrophosphatase 1.14005894289e-05 1.1083631629e-05 -127959753.329 +UniRef50_F3U3U4 Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein 0.0120934555519 0.0029230151804 -3.70221931193e+12 +UniRef50_A0AZ30 Extracellular solute binding protein, family 1 0.000235638738697 0.000277292680931 16816207631.2 +UniRef50_UPI000373D0A7 Cro Cl family transcriptional regulator 0.000263274183169 3.08135301128e-05 -93847218251.7 +UniRef50_S8AV33 4.483542443e-06 1.00492511852e-05 2246944918.15 +UniRef50_A0ZA13 Putative restriction modification enzyme 4.40571262719e-06 0.00106757328176 4.29213794191e+11 +UniRef50_Q8CSP4 UPF0291 protein SE_1024 0.00281641523841 0.000757222321012 -8.31321449893e+11 +UniRef50_B4RJ27 0.0113245796655 0.000418888943548 -4.40276117235e+12 +UniRef50_D5WAU2 PTS system, N acetylglucosamine specific IIBC subunit 0.000712163215026 0.000380211470956 -1.34012992587e+11 +UniRef50_A0A014MC25 2.87616065281e-06 3.9996132031e-06 453551580.865 +UniRef50_UPI0003A406BC hemolysin expression modulating protein 5.170654259e-06 1.67924535321e-06 -1409524619.67 +UniRef50_B2IN54 Transketolase, N terminal subunit 0.000136276530269 0.00516618448885 2.03063556679e+12 +UniRef50_UPI0002481BB1 IS21 family transposase 1.05492138374e-05 2.0882851266e-05 4171816237.92 +UniRef50_UPI00036B09EF hypothetical protein, partial 3.69651666798e-05 0.000102180903294 26328393158.2 +UniRef50_Q1R597 Hemin import ATP binding protein HmuV 9.53441855938e-06 0.000264640029823 1.02989265765e+11 +UniRef50_G7WK52 6.71158065137e-05 1.81039186132e-05 -19786700588.9 +UniRef50_X5MEU2 6.64915406564e-06 1.12089597094e-05 1840849493.49 +UniRef50_E8SKH8 Sucrose 6 phosphate hydrolase 0.012245056035 0.00357003316047 -3.50221318895e+12 +UniRef50_A0A011MXQ2 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.14087161398e-05 8.13246242588e-05 28225910072.3 +UniRef50_A6LVK7 MATE efflux family protein 0.000165165424372 0.00109878632124 3.76914212882e+11 +UniRef50_Q03MN5 Adapter protein MecA 0.00396535296489 0.00113808286303 -1.14140363463e+12 +UniRef50_UPI0003629460 hypothetical protein, partial 3.23843943629e-05 0.000102480998873 28298859422.8 +UniRef50_B7V3W3 6.41374026635e-06 0.000611000079721 2.44078924347e+11 +UniRef50_UPI00037C96DC hypothetical protein 1.41818810768e-05 0.00246742207071 9.90403169196e+11 +UniRef50_R5QE34 0.000774967509291 0.00175508227294 3.95684357446e+11 +UniRef50_UPI00037C173A hypothetical protein 5.92563212473e-05 1.93384438881e-05 -16115336937.3 +UniRef50_UPI000440CBE5 PREDICTED 2.82233774435e-05 2.72593175217e-05 -389202820.776 +UniRef50_G7U7Z2 8.93105651832e-05 0.00519012666675 2.05926205426e+12 +UniRef50_R5DNX0 0.000391212435035 0.00278794453153 9.67590158563e+11 +UniRef50_Q6MLR5 Ribonuclease 3 1.35811221478e-05 2.82851882375e-05 5936211919.59 +UniRef50_UPI0003693C86 hypothetical protein 6.35675969136e-05 2.30734208503e-05 -16347995796.2 +UniRef50_F5LZD2 Acetyltransferase 0.00332971789401 0.000381875049823 -1.1900803303e+12 +UniRef50_W8VP54 UPF0246 protein NMS_0251 1.09554499746e-05 2.08872897523e-05 4009605595.64 +UniRef50_U6MRR8 6.21887955241e-05 9.73036919865e-05 14176314610.1 +UniRef50_Q9RZC4 1 pyrroline 5 carboxylate dehydrogenase, putative 0.000546758895691 0.0523921647194 2.09306265457e+13 +UniRef50_P0AGI6 Xylose transport system permease protein XylH 0.00378210868293 0.000412792137545 -1.36023443553e+12 +UniRef50_U5PB97 Glutamyl tRNA synthetase 0.00432578052004 0.000871814643229 -1.3944084094e+12 +UniRef50_A8AYG2 ATP synthase gamma chain 0.00439785881599 0.00283511350248 -6.30899460105e+11 +UniRef50_A0A038G154 1.16109959176e-05 7.04091700241e-05 23737544421.5 +UniRef50_M7DT58 Deacetylase 0.00492163425208 0.00109610117315 -1.54441464853e+12 +UniRef50_D3QIY9 Glutamate ABC transporter, periplasmic glutamine binding protein 0.0158632106534 0.00295388358511 -5.21165375273e+12 +UniRef50_A6LR18 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 0.000526565872226 0.000758452088735 93615311168.6 +UniRef50_A0A025E7F4 0.000120966951921 8.27654050994e-05 -15422433237.6 +UniRef50_Q9LU86 Peroxiredoxin Q, chloroplastic 1.19782465211e-05 0.000916667406568 3.65234115695e+11 +UniRef50_A5E987 Fructose 1,6 bisphosphatase class 1 1 0.000128056370821 3.72406398993e-05 -36663425007.4 +UniRef50_C4LJK5 ABC type transport system, ATP binding protein 0.000393362768441 0.00629190023714 2.38131195931e+12 +UniRef50_UPI00046997D0 hypothetical protein 1.7446033867e-06 1.49778236965e-05 5342413428.94 +UniRef50_A6LSX7 Adenine deaminase 0.000390590005447 0.000646741153082 1.03411361628e+11 +UniRef50_UPI00034A4595 hypothetical protein 2.04866504055e-05 3.46718720494e-05 5726748049.89 +UniRef50_UPI0004696A10 tRNA hydroxylase 1.56556273912e-05 2.18607988315e-05 2505103856.47 +UniRef50_T6AKZ2 5.00290209738e-05 0.000101547192284 20798517957.0 +UniRef50_A3K6W1 3.77386141128e-05 2.96290545696e-05 -3273928703.08 +UniRef50_D6XR13 5.23075273197e-05 0.00398883695534 1.58922523674e+12 +UniRef50_F5M2N9 0.000118986889085 5.24528466247e-05 -26860609405.7 +UniRef50_I7E227 Uroporphyrinogen III C methyltransferase CobA 0.000982777380713 0.000267658645188 -2.88702209025e+11 +UniRef50_A0A026W2G8 Activating molecule in BECN1 regulated autophagy protein 1.76344471275e-06 6.99891317187e-05 27543547067.6 +UniRef50_UPI000402E7C3 oxidoreductase 2.77480007274e-05 0.00706136052445 2.83955568796e+12 +UniRef50_UPI00036AC882 hypothetical protein 9.75021042822e-05 3.95773845017e-05 -23384920191.6 +UniRef50_I3TXU6 TRAP type bacterial extracellular solute binding protein 0.0111613860287 0.0016406262168 -3.84364756893e+12 +UniRef50_W1WFT4 Replication initiation protein 0.00014243337495 9.92567952405e-05 -17430915064.9 +UniRef50_Q1GIZ8 Aspartate tRNA ligase 0.00662754870603 0.00193816653781 -1.8931611265e+12 +UniRef50_UPI000464CCF6 resolvase 5.30985347139e-05 1.12095490788e-05 -16911097536.5 +UniRef50_UPI0003B3855E DNA polymerase I 1.65221542737e-06 2.21415119839e-05 8271780451.8 +UniRef50_A6U4E8 Immunoglobulin binding protein sbi 0.00909314306788 0.00221084047587 -2.77847001174e+12 +UniRef50_Q5HPB4 Peptide methionine sulfoxide reductase MsrB 0.00314368509729 0.0011824198187 -7.91786860398e+11 +UniRef50_O85746 Tyrosine aminotransferase 0.00118397839161 0.000616044718624 -2.29281793114e+11 +UniRef50_UPI00041C01EF peptidase M24 5.68186963466e-06 2.3489824758e-05 7189290011.46 +UniRef50_UPI00022CAD53 PREDICTED 1.70320619322e-06 1.18721135705e-06 -208313447.331 +UniRef50_A7ZJI0 Tail fiber assembly protein 0.0108648743134 0.0018719813004 -3.63054126456e+12 +UniRef50_A6LXY5 PAS PAC sensor hybrid histidine kinase 0.000710881334768 0.000690490674175 -8231959902.94 +UniRef50_O83716 Purine nucleoside phosphorylase DeoD type 3.80737109731e-05 0.000228463138887 76862548389.9 +UniRef50_UPI000273D5E4 8.06047579756e-06 0.00021674505538 84248525625.0 +UniRef50_Q6FAN6 0.000116030529356 0.00706817677985 2.80666675375e+12 +UniRef50_C8N6A0 LemA family protein 2.37146347418e-05 1.50537493024e-05 -3496505732.9 +UniRef50_C0SP91 Putative metallo hydrolase YycJ 0.0059701333986 0.00472848586651 -5.01268345433e+11 +UniRef50_UPI0004009357 ABC transporter permease 5.61307505546e-05 4.02772636529e-05 -6400247206.38 +UniRef50_D6SHS5 Superantigen like protein 0.0294014747932 0.00469776743425 -9.97318980941e+12 +UniRef50_A5UP87 N acetyltransferase, GNAT family 0.00328994806436 0.000827990762236 -9.93922374479e+11 +UniRef50_I3X1B7 0.000341657291347 0.000145268216702 -79284679399.1 +UniRef50_B9KU34 0.00506972607126 0.00113375529374 -1.58899970268e+12 +UniRef50_Q8CQE1 Galactosamine containing minor teichoic acid biosynthesis protein 0.00731330278401 0.00413177683041 -1.28442106918e+12 +UniRef50_A1B9G9 0.00103895226289 0.000932579069031 -42944163706.8 +UniRef50_A1WWL1 Diguanylate cyclase 2.37141620992e-06 4.7065936787e-05 18043726420.4 +UniRef50_F0RQZ8 Xanthine dehydrogenase 0.000132347230999 0.0518109109646 2.08632703465e+13 +UniRef50_UPI00036CA33F hypothetical protein 1.29876350145e-05 6.12867001272e-05 19498925282.2 +UniRef50_A3PS71 0.0164538242589 0.00453308888517 -4.81254715424e+12 +UniRef50_UPI00045DD9A4 PREDICTED 0.000105400200103 1.44018756062e-05 -36737140274.4 +UniRef50_UPI00035DAB70 hypothetical protein 1.70543161241e-05 2.62506918605e-05 3712689737.01 +UniRef50_W7VIZ6 Basic proline rich protein 8.27424182141e-05 1.11261341999e-05 -28912372687.2 +UniRef50_UPI0003681CA6 hypothetical protein 1.4334545561e-05 1.85063630302e-05 1684213906.27 +UniRef50_D2YBW7 Diheme cytochrome c napB 0.000253269676065 6.93418983279e-05 -74253900920.1 +UniRef50_G7MCB1 Transcriptional regulator, TrmB 0.000314326432122 0.00190502167396 6.42183189156e+11 +UniRef50_C6SRE9 0.00839404669527 0.00167206291721 -2.71374733922e+12 +UniRef50_N0AYA8 Two component system histidine kinase 0.00045504421599 0.00247691041382 8.16252195152e+11 +UniRef50_UPI0003A4D539 single stranded DNA binding protein 2.03435711702e-05 0.000627041220709 2.44931286136e+11 +UniRef50_UPI000473EB9F mannose 1 phosphate guanyltransferase 1.18458435673e-05 1.74095454824e-05 2246134737.43 +UniRef50_Q9ZKQ7 0.000404984233366 0.00392456101917 1.42089633849e+12 +UniRef50_Q0STN1 Undecaprenyl diphosphatase 4.68307320182e-06 0.00255352352906 1.02899816982e+12 +UniRef50_UPI000471BD1E hypothetical protein, partial 0.000101889926055 0.000125993715289 9730995500.52 +UniRef50_UPI000368EF4F hypothetical protein 1.11711766716e-05 5.04437662606e-05 15854826345.9 +UniRef50_Q9HJD0 30S ribosomal protein S8e 0.0140865472567 0.000653837723686 -5.42294967635e+12 +UniRef50_UPI00045E5CBA hypothetical protein 8.36411397894e-05 7.0054188276e-06 -30938780978.3 +UniRef50_B2A3L9 Ribosomal RNA small subunit methyltransferase A 3.92596257346e-06 2.14329643068e-05 7067791434.8 +UniRef50_UPI000375EF4E hypothetical protein, partial 1.15158799917e-05 1.47314053896e-05 1298147062.07 +UniRef50_Q2FXB1 Leucotoxin LukDv 0.0179290368545 0.00202877877544 -6.41912930464e+12 +UniRef50_P25306 Threonine dehydratase biosynthetic, chloroplastic 2.49259204348e-06 2.18103275469e-05 7798806877.99 +UniRef50_U5MTT7 Cobalamin biosynthesis CbiG protein 0.000202590450364 0.000507184923003 1.22968526399e+11 +UniRef50_UPI00031889A3 hypothetical protein 7.69021900174e-05 3.45626194629e-05 -17093004197.8 +UniRef50_A1A025 Response regulator of two component system 0.000289631193489 0.00526341721738 2.00797845306e+12 +UniRef50_P75870 Inner membrane protein YccS 0.00340103413391 0.00157170744406 -7.38521633055e+11 +UniRef50_D1JNF2 6.60965481282e-05 1.18849786294e-05 -21885875857.4 +UniRef50_I3X1L2 Transposase IS4 family protein 9.85580828551e-05 2.25051506874e-05 -30703501990.5 +UniRef50_S5XKW1 Spermidine putrescine transport system, permease protein 0.00543322661624 0.000957848300693 -1.80676514506e+12 +UniRef50_P75750 0.00216783657664 0.00122312783156 -3.81390513269e+11 +UniRef50_A0A059LQ22 7.37708033943e-05 2.23090742277e-05 -20775731571.0 +UniRef50_UPI00047BA782 major facilitator transporter 1.56422557579e-05 9.26174175117e-06 -2575891802.23 +UniRef50_Q6FB59 0.000725934593951 0.00254128430164 7.3287895384e+11 +UniRef50_B7KX11 Alkanesulfonate monooxygenase 2.45750219016e-05 3.23122850483e-05 3123628079.22 +UniRef50_K6S6A5 FliK family flagellar hook length control protein 4.923749642e-05 0.000221764734821 69651363289.8 +UniRef50_UPI000476116B 50S ribosomal protein L35 0.000397915029565 0.00117914589748 3.15392488158e+11 +UniRef50_Q63IW3 ATP synthase subunit beta 2 1.7290998333e-06 1.11845092581e-05 3817264815.71 +UniRef50_W1GG81 0.000296919065399 0.000535085236243 96150605797.3 +UniRef50_A3KA49 0.000210034677438 4.00546546175e-05 -68623021102.3 +UniRef50_B7RRM5 Cobyrinic Acid a,c diamide synthase 2.83039208439e-05 5.10816816179e-05 9195661539.02 +UniRef50_Q67JT3 DNA directed RNA polymerase subunit beta 9.13658208948e-06 7.23888808761e-06 -766122355.879 +UniRef50_C7RN78 0.000948100370406 0.00117933524061 93352354672.3 +UniRef50_M4R3U4 Metal dependent hydrolase 0.0003380471542 0.00710377809483 2.73140860559e+12 +UniRef50_V3BAW5 Anhydro N acetylmuramic acid kinase 0.000388720110795 0.000322163678398 -26869648497.9 +UniRef50_UPI000364C8A1 hypothetical protein 3.60467761102e-05 1.61039445405e-05 -8051165830.75 +UniRef50_A0A009MS46 0.000199536650972 5.4874074367e-05 -58402057384.9 +UniRef50_P0AE22 Class B acid phosphatase 0.00194943127979 0.00128648064215 -2.67641307734e+11 +UniRef50_A1B792 0.000352210275884 0.000154892117939 -79659761728.5 +UniRef50_Q75ZQ6 Urease subunit beta 4.28949757783e-05 3.34697297219e-05 -3805087493.74 +UniRef50_A6W1Y7 0.00158403141371 0.000222773839728 -5.49556387125e+11 +UniRef50_UPI000373FA13 hypothetical protein 3.08929098158e-05 1.39816766072e-05 -6827272370.48 +UniRef50_P0DMC6 Sensor histidine kinase RcsC 0.00338164222019 0.000960718495971 -9.77356615542e+11 +UniRef50_D4HFJ2 Helicase C terminal domain protein 0.000213016647942 0.00530437620506 2.05544433122e+12 +UniRef50_E1Q5C1 DNA topoisomerase I 0.000117383764465 0.00181639739265 6.85912650938e+11 +UniRef50_Q9HJX7 ATP dependent DNA helicase Hel308 1.88132706411e-06 2.64834497024e-06 309654541.073 +UniRef50_I4D6H8 Multimeric flavodoxin WrbA 0.00179506995036 0.00121082539983 -2.35866694536e+11 +UniRef50_C6SQM5 0.00407628133728 0.00146563362355 -1.05395051828e+12 +UniRef50_B0V6S4 0.00437947145346 0.00972876671746 2.15957614131e+12 +UniRef50_F7QL87 ATPase 0.000718037339298 0.00772760155004 2.8298470889e+12 +UniRef50_A3PPZ7 Peptidase S14, ClpP 0.00306368231745 0.000227458309521 -1.14501843638e+12 +UniRef50_R1G067 5.12577568022e-05 9.09519488068e-05 16025032414.8 +UniRef50_D1BEK3 2.82563433063e-05 1.60802066943e-05 -4915655768.26 +UniRef50_A1B788 0.000130713680585 5.28374117003e-05 -31439605398.0 +UniRef50_A6VEE0 0.000729141860105 2.28337855193e-05 -2.85145237085e+11 +UniRef50_P23524 Glycerate 2 kinase 0.00610913276015 0.0012034699133 -1.98047629053e+12 +UniRef50_W1VWR4 0.00439283413576 0.00111401656501 -1.32369888893e+12 +UniRef50_UPI0003A482DB hypothetical protein 7.76121257196e-05 6.68300777921e-05 -4352845058.94 +UniRef50_UPI00035CB5E5 hypothetical protein 1.04888995338e-05 8.37631530297e-06 -852876178.31 +UniRef50_B4EXS5 UPF0225 protein PMI1492 2.45986825836e-05 0.00210466639836 8.39748862162e+11 +UniRef50_F0VYF6 0.000424141560512 0.000535317290393 44883006432.6 +UniRef50_P0AEH2 Regulator of sigma E protease 0.00154921740244 0.00112850136484 -1.69848227145e+11 +UniRef50_Q1QMX7 0.000227430106357 0.000133764284384 -37814041739.4 +UniRef50_I0C4V2 ComE operon protein 1 0.00411442192742 0.000262503737955 -1.55506664144e+12 +UniRef50_Q1H4N6 50S ribosomal protein L4 0.000377485988848 0.00735884208256 2.8184591259e+12 +UniRef50_P00873 Ribulose bisphosphate carboxylase small chain 1, chloroplastic 4.56176261594e-05 2.43032277143e-05 -8604884209.37 +UniRef50_N8WZK4 5.35845233426e-06 2.30277162078e-05 7133298651.98 +UniRef50_B5XSA9 Oxidoreductase, short chain dehydrogenase reductase family 7.59666807941e-06 1.13641394713e-05 1520974432.98 +UniRef50_Q4L8E8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0111238944366 0.00335348774375 -3.13700853552e+12 +UniRef50_F6BZ95 0.00011248480378 0.000238086708974 50707030435.5 +UniRef50_K0C6H8 DoxX subfamily, putative 2.14604877026e-05 1.26213188628e-05 -3568480929.43 +UniRef50_Q49WX9 Bifunctional protein PyrR 0.0183868583325 0.000382525994494 -7.26856990285e+12 +UniRef50_M9RDG8 Monovalent cation proton antiporter subunit E 0.00426433096322 0.0049701414203 2.84944342791e+11 +UniRef50_O26901 ATP dependent DNA helicase Hel308 0.00321383427874 0.000355311866629 -1.15402057578e+12 +UniRef50_UPI00036A3BE1 hypothetical protein 1.93616255419e-05 4.08537668264e-06 -6167209125.15 +UniRef50_S6B942 0.00439287586572 0.00233420865266 -8.311092166e+11 +UniRef50_D5ARY7 Ferredoxin 4 0.00670905393495 0.00828435332543 6.35967695034e+11 +UniRef50_R3N2B8 0.000807874812632 0.000285102694652 -2.11049519164e+11 +UniRef50_UPI000308B01A hypothetical protein 2.0075470761e-05 6.21853001399e-05 17000254866.0 +UniRef50_P0CZ01 Hyaluronate lyase 0.000229678701724 0.00554886435555 2.1474205222e+12 +UniRef50_U5WBY0 8.41171942477e-06 0.000566174241381 2.25175574629e+11 +UniRef50_UPI0003144775 hypothetical protein 4.02352715105e-05 4.79159962661e-06 -14309045282.3 +UniRef50_F6IG84 Cytochrome bd I oxidase subunit II 0.0075591224677 0.000496724435711 -2.85117675088e+12 +UniRef50_UPI00037B64B8 MULTISPECIES 1.38279815526e-05 0.000115141254818 40901411670.8 +UniRef50_V5UAT4 1.53903132023e-05 0.00105492658608 4.19673549906e+11 +UniRef50_B9DSE2 Nucleoside diphosphate kinase 0.000641639841415 0.00228384599567 6.6297877661e+11 +UniRef50_UPI00045E79E3 hypothetical protein 5.37228520641e-05 2.90685023434e-05 -9953263525.14 +UniRef50_A7ZSB8 N acetylneuraminate lyase 0.00343359952519 0.000704998718977 -1.10156962916e+12 +UniRef50_UPI0003B7208F D alanyl D alanine carboxypeptidase 5.76401753535e-06 7.05048030589e-06 519360807.14 +UniRef50_X7XV22 Carbon starvation CstA family protein 0.00172810748046 0.000962989256073 -3.08887616241e+11 +UniRef50_UPI00036BCED8 hypothetical protein, partial 4.7738885768e-05 8.96246704021e-06 -15654516080.6 +UniRef50_UPI0004775FD4 hypothetical protein 1.98354945263e-05 5.90370745081e-05 15826158896.1 +UniRef50_UPI00036B23BD hypothetical protein 1.20327556528e-05 0.000155772354544 58029439955.5 +UniRef50_I1ELS0 1.43578379565e-05 4.95685120259e-05 14214981205.4 +UniRef50_F0KJ61 Triacylglycerol lipase 0.000408341505389 0.00589555088389 2.21525376173e+12 +UniRef50_UPI0003B4CFA2 organic solvent ABC transporter ATP binding protein 0.000134952951007 4.63545033225e-05 -35768280555.4 +UniRef50_Q6LPK7 Tetraacyldisaccharide 4 kinase 0.00191029905011 0.000378611160516 -6.18361196952e+11 +UniRef50_E8SFD5 Glycosyl transferase, group 1 family protein 0.00855406148252 0.00322640850895 -2.15083888308e+12 +UniRef50_B4U3U9 CRISPR associated endonuclease Cas9 0.00202458637509 0.00102306632804 -4.04325933027e+11 +UniRef50_H6PCS0 Transcriptional regulator CtsR 0.0103867646377 0.00690546396424 -1.40544380224e+12 +UniRef50_UPI0001E45F6A ribonucleoside diphosphate reductase large subunit 1.54834830785e-06 9.90408488689e-05 39358918844.0 +UniRef50_Q0BVI1 0.000143449969431 5.03850937891e-05 -37571432331.1 +UniRef50_UPI00047AB688 acetylglutamate kinase 1.50471081807e-05 7.76887581462e-06 -2938311720.14 +UniRef50_Q49YR8 Regulatory protein RecX 0.0178162515421 0.00237197770734 -6.23504286966e+12 +UniRef50_P0ABL2 Cytochrome c type protein NrfB 0.00739411113053 0.000338148899085 -2.84857853923e+12 +UniRef50_E3GWD7 Protease HtpX homolog 0.0031517637598 0.00200922138604 -4.61258376858e+11 +UniRef50_UPI00045E5DCC potassium transporter 9.84963377248e-06 7.95375046273e-06 -765391357.251 +UniRef50_Q89A97 Multidrug resistance like ATP binding protein MdlA 3.27774448276e-06 1.22093464067e-05 3605797299.78 +UniRef50_F0P8I6 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.0218235052572 0.0053872846236 -6.63550396489e+12 +UniRef50_A0A021ZS12 Sigma 54 interaction domain protein 9.53233844019e-05 0.00444882215008 1.75756087514e+12 +UniRef50_Q9RVT7 Phosphatase, putative 0.000154919010474 0.0062461825796 2.45911785107e+12 +UniRef50_UPI00037BA24E hypothetical protein 4.05189770433e-05 1.06670386595e-05 -12051593850.0 +UniRef50_X2HYV0 Membrane protein 0.000227443927303 0.00801624657513 3.14443520829e+12 +UniRef50_UPI0004765AD1 uracil phosphoribosyltransferase 1.64612520206e-05 1.29993797886e-05 -1397600302.01 +UniRef50_P33011 Inner membrane protein YeeA 0.00191924795484 0.000939887594835 -3.95379795437e+11 +UniRef50_D4J5A0 Diaminopropionate ammonia lyase 0.000148616531043 0.00231589532608 8.74957045059e+11 +UniRef50_V9X5Q7 0.000320686713861 0.000495848722607 70715052410.3 +UniRef50_Q08NT1 0.000278663593588 0.000125879134208 -61680961127.9 +UniRef50_S9QSJ6 Flagellar basal body rod protein FlgF 2.55431284064e-05 9.62544174455e-06 -6426165437.35 +UniRef50_E8PDG9 Malonyl CoA acyl carrier protein transacylase 0.000631245598596 0.00894979405408 3.35830009155e+12 +UniRef50_Q2P2V7 Uracil phosphoribosyltransferase 3.74603305623e-05 0.00011386551743 30845711535.6 +UniRef50_T2A0W0 Relaxase mobilization nuclease family protein 0.000435596809792 0.00364149178266 1.2942591413e+12 +UniRef50_Q9RWN1 ATP dependent 6 phosphofructokinase 0.000362976996892 0.0190868843352 7.55907116065e+12 +UniRef50_E3GYU4 Aspartokinase 0.00219809712539 0.00139061755471 -3.25989411572e+11 +UniRef50_C7QHR1 0.0001496380278 0.00013069160053 -7648905187.71 +UniRef50_C3L0M2 0.000122826243664 0.00107381524158 3.83925928406e+11 +UniRef50_Q2JMP1 N acetylmuramic acid 6 phosphate etherase 7.11773760817e-06 1.25219884039e-05 2181762363.85 +UniRef50_C5MZE1 Transporter, major facilitator family protein 0.0213299595402 0.00574093319301 -6.29348123523e+12 +UniRef50_C1DMN0 TonB dependent receptor 0.00048222452949 0.000478324356414 -1574547731.29 +UniRef50_UPI00036664BA hypothetical protein 0.000244697046844 3.51077178488e-05 -84613784065.6 +UniRef50_E3YDC7 Cell surface protein 5.69376769557e-05 0.000722171784474 2.68563172546e+11 +UniRef50_P14657 NADP specific glutamate dehydrogenase 9.6529513493e-05 0.00078652287375 2.78558786706e+11 +UniRef50_Q836R3 ATP dependent 6 phosphofructokinase 2.21380964635e-05 0.00101718699878 4.01713452488e+11 +UniRef50_Q0SHI1 0.00017498239613 0.00130357638981 4.55627244654e+11 +UniRef50_F5WYS7 ICESt1 ORFJ phage replication initiation factor 0.00783328810583 0.00238044796904 -2.2013784771e+12 +UniRef50_UPI000365D96C hypothetical protein, partial 5.69037695561e-05 3.03873040304e-05 -10705022526.3 +UniRef50_B8RD42 Cell wall surface anchor family protein,putative 0.000275354258771 0.00424143432964 1.60115519389e+12 +UniRef50_H1UU45 Dehydrogenase 0.000303306343316 4.40802117711e-05 -1.04652770367e+11 +UniRef50_L2ZHW9 3 propionate 3 hydroxycinnamic acid hydroxylase 0.00270627328175 0.000844980506742 -7.51426733902e+11 +UniRef50_UPI0001FFE295 hypothetical protein, partial 1.1163660231e-05 0.000129314284034 47698856700.5 +UniRef50_M9R1X4 0.000113904183495 9.38082347389e-05 -8112981117.86 +UniRef50_G7U5K4 6 phosphogluconate dehydrogenase, decarboxylating 8.19434129148e-05 0.00501170805201 1.99020647982e+12 +UniRef50_F5XWG5 1 aminocyclopropane 1 carboxylate deaminase like protein 7.94135899906e-06 0.000181547154827 70086790158.4 +UniRef50_G7M6Z9 Nitroreductase 0.000202224636884 0.00110486271177 3.64406067446e+11 +UniRef50_S9RGW6 Flagellar protein FlgJ, putative 0.000109133365762 7.21534205673e-05 -14929257670.1 +UniRef50_J7Q7T7 Escherichia coli IMT2125 genomic chromosome, IMT2125 0.00279812969814 0.000290475447734 -1.01237079327e+12 +UniRef50_X1YKD9 1.03915442628e-06 6.49158211296e-06 2201211965.92 +UniRef50_C4ZPZ7 2 isopropylmalate synthase 0.00174834644778 0.00381975267088 8.36252111278e+11 +UniRef50_UPI0003FD05D8 methyltransferase 8.2566666434e-06 1.37996021107e-05 2237751067.62 +UniRef50_P73283 3 oxoacyl [acyl carrier protein] synthase 2 1.06163200464e-05 0.00373554944781 1.50380121375e+12 +UniRef50_UPI00047C3DCE hypothetical protein 1.19588774697e-05 2.07111890933e-05 3533415605.39 +UniRef50_T0U8G3 ABC transporter membrane spanning permease,Pepexport, Vex3 0.000315339163609 0.00693141239577 2.67098995217e+12 +UniRef50_P38487 Creatinase 0.00560204074941 0.0035867774779 -8.1358651277e+11 +UniRef50_UPI0002DD21FE hypothetical protein 4.3163189773e-06 7.6953031504e-06 1364137375.48 +UniRef50_O26938 Aspartate carbamoyltransferase regulatory chain 0.00382011835841 0.000828545781828 -1.20773455989e+12 +UniRef50_UPI0003F6906F chromosome partitioning protein ParB 4.97853629937e-05 0.000562060687001 2.06811834627e+11 +UniRef50_B4U896 Glutamate tRNA ligase 2.73440161091e-05 5.19232175659e-06 -8942910841.96 +UniRef50_Q7W4F7 Exported protein, conserved 0.00071109708681 0.000417382025963 -1.18576374353e+11 +UniRef50_D5BUA3 ABC transporter related protein 0.00326787070476 0.000976162663273 -9.2519065877e+11 +UniRef50_UPI00046CCD8A ABC transporter permease 2.19728964625e-05 5.93436676277e-05 15087038910.3 +UniRef50_F5XE95 0.00041120503439 0.00517475755317 1.92310460719e+12 +UniRef50_W2RQC0 5.03301536757e-05 1.87905659224e-05 -12732918610.3 +UniRef50_UPI0002FFACA2 hypothetical protein 0.000154590807554 9.04086232071e-06 -58760298989.2 +UniRef50_P09155 Ribonuclease D 0.00310989566436 0.000894509407104 -8.94378617902e+11 +UniRef50_F7TB61 9.23717369889e-06 7.94762672591e-05 28356384000.9 +UniRef50_U5UU73 1.31476483582e-05 3.70007523029e-05 9629790772.98 +UniRef50_UPI000420A761 hypothetical protein 9.63526148386e-06 1.50608592116e-05 2190380382.26 +UniRef50_D1ZK87 Putative glutathione dependent formaldehyde activating enzyme 5.37317947109e-05 1.58691702405e-05 -15285606125.4 +UniRef50_P46883 Primary amine oxidase 0.000430447438042 0.00834939671573 3.19697699984e+12 +UniRef50_UPI000350E610 PREDICTED 0.000510631361184 0.000138984926458 -1.50038226313e+11 +UniRef50_A3VBF6 0.000115721545935 0.000130353387106 5907053833.62 +UniRef50_Q9K5Z9 L lactate permease 0.0178858488396 0.00371892939163 -5.71935922881e+12 +UniRef50_UPI00041F2A30 hypothetical protein 4.07855854392e-06 6.02067076227e-06 784054534.945 +UniRef50_F2JYP7 ABC type transporter, integral membrane subunit 0.0119315065095 0.00330279874024 -3.4835152126e+12 +UniRef50_I0JKD6 PTS system subunit IIBC, sucrose specific 0.000362061334526 0.00113514792284 3.12104542542e+11 +UniRef50_W5XHN2 Transcriptional regulator, TetR family protein 9.84179333564e-06 9.81540364225e-05 35652736247.3 +UniRef50_UPI00045D68F4 PREDICTED 4.60160852434e-06 5.32605149678e-06 292466517.889 +UniRef50_Q02001 Anthranilate synthase component 1 0.00494325793434 0.00674714315246 7.28250598716e+11 +UniRef50_R6U3E2 0.000420439547187 0.00117314225555 3.03875320067e+11 +UniRef50_UPI0003B74FC2 cysteine ABC transporter ATP binding protein 2.30510851973e-06 1.91063263045e-06 -159254757.266 +UniRef50_F0VTI5 PAP2 superfamily protein 0.00316040102358 0.00137068093217 -7.22531963237e+11 +UniRef50_Q88U25 Phosphoribosylformylglycinamidine synthase 2 8.25343527651e-06 3.13155775601e-06 -2067764807.53 +UniRef50_UPI0001FFDC7C ABC transporter related protein 7.1875849203e-06 8.99677473195e-06 730392128.219 +UniRef50_K7PC03 Protein ORF84 2.67753614348e-06 7.85273384581e-06 2089290819.25 +UniRef50_UPI000262CF31 Inner membrane arginine ABC transporter permease 2.08036860788e-05 2.24806086464e-05 676994218.694 +UniRef50_UPI000471B2C3 shikimate dehydrogenase 3.72360970222e-05 2.98841186511e-05 -2968083887.33 +UniRef50_UPI0004296A6B hypothetical protein 0.000254409842809 4.74171590767e-05 -83565486508.5 +UniRef50_UPI0001746B76 phosphoesterase 0.000323008602159 5.70794340911e-05 -1.07358868467e+11 +UniRef50_M5M5H9 9.7681109195e-05 0.000119548765337 8828241130.84 +UniRef50_Q17RH7 Putative protein TPRXL 9.75858962174e-06 0.000189929121446 72737054638.4 +UniRef50_K5VC32 DbpA RNA binding domain protein 0.00102050253579 0.000193396277319 -3.3391294628e+11 +UniRef50_P0AGF5 D xylose proton symporter 0.00376501033886 0.00728549788606 1.42126402404e+12 +UniRef50_A5G222 Probable chemoreceptor glutamine deamidase CheD 0.000281929683594 4.07061121122e-05 -97384915953.4 +UniRef50_D3QDT5 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 0.0177948409229 0.00408032911698 -5.53671671203e+12 +UniRef50_G0DXL2 0.000279619251005 0.00653873175753 2.52688052683e+12 +UniRef50_UPI00018506DA deaminase reductase 1.6408445698e-05 0.000183307190219 67379071241.0 +UniRef50_P76197 Inner membrane transport protein YdiM 0.00352663138889 0.000422921676383 -1.25300569774e+12 +UniRef50_A0A036SNN0 0.00119922673337 0.000661156802679 -2.17225433881e+11 +UniRef50_A5URZ0 Acyl carrier protein 3.20604114223e-05 0.000427761578736 1.59749417044e+11 +UniRef50_UPI00030E7C94 2 hydroxychromene 2 carboxylate isomerase 7.6381222831e-05 4.82921907076e-05 -11339886959.4 +UniRef50_Q3IW11 Transcriptional regulator, GntR family 0.00336050532178 0.00174465298557 -6.52339416866e+11 +UniRef50_A3PPE3 Transcriptional regulator, LysR family 0.00168406435424 0.00128892834653 -1.59521255177e+11 +UniRef50_UPI00047388A6 hypothetical protein 3.03055796526e-05 0.000137536690825 43290515453.8 +UniRef50_Q9RUK6 Peptide methionine sulfoxide reductase MsrB 0.000562462718885 0.041807055848 1.66509483743e+13 +UniRef50_Q9RV85 0.000350606181596 0.0319835531981 1.27706088905e+13 +UniRef50_Q9RV87 7.86429143391e-05 0.00444088596534 1.76109105043e+12 +UniRef50_O34962 Probable NAD dependent malic enzyme 4 0.00903731453972 0.00234722528041 -2.70087113061e+12 +UniRef50_A5ULC6 0.00249920729388 0.000202966807698 -9.2702046231e+11 +UniRef50_J7M8F1 Primosome assembly protein 0.00548627090681 0.00594719568269 1.86080988206e+11 +UniRef50_UPI0004743B0B hypothetical protein 0.000205983643093 0.00010050569844 -42582740616.4 +UniRef50_UPI000287DB6E SAM dependent methyltransferase 4.94769690279e-05 0.000281221291895 93558026964.0 +UniRef50_UPI00046CBCB9 hypothetical protein 0.000166328249934 9.1200999236e-05 -30329793021.8 +UniRef50_UPI00026286FB diaminopimelate decarboxylase, partial 1.79958794677e-05 0.00031747480366 1.20903316716e+11 +UniRef50_J4ZBB1 Thi4 domain protein 3.97313451552e-05 0.000162506827182 49565968718.9 +UniRef50_Q58375 Uroporphyrinogen III C methyltransferase 2.09263771411e-05 1.7510230878e-05 -1379140167.24 +UniRef50_E6MV57 IS1016 transposase 0.00109956281708 0.0128961755162 4.76243730734e+12 +UniRef50_D6ANF2 3.27902413874e-05 2.80000050768e-05 -1933877181.4 +UniRef50_P50620 Ribonucleoside diphosphate reductase subunit alpha 2.33207863585e-05 0.0105337450598 4.24318725658e+12 +UniRef50_A2WGI8 NAD+ synthase 4.44168475247e-05 0.000236254262592 77447118572.4 +UniRef50_UPI00046AEE41 DNA primase 2.82310310588e-06 5.84930903287e-06 1221716468.45 +UniRef50_F2D1Z4 Predicted protein 1.93701857578e-05 3.22336754564e-05 5193148644.09 +UniRef50_D9XU96 Acyl CoA dehydrogenase 4.55893221618e-05 1.09510953345e-05 -13983877229.0 +UniRef50_G7ZFF7 L sorbosone dehydrogenase 0.000169974953242 0.00814947524231 3.22142218618e+12 +UniRef50_A7G768 Xanthine uracil permease family protein 0.000617210715738 0.00228331498838 6.72626740263e+11 +UniRef50_Q2RKZ1 Leucine tRNA ligase 2.16391243741e-06 3.25280458312e-06 439599121.432 +UniRef50_X2H662 Phosphoserine phosphatase 0.000448506463151 0.00485508695572 1.77899061967e+12 +UniRef50_UPI00037ADDB6 hypothetical protein 0.000136399184889 9.34451728953e-05 -17341061746.9 +UniRef50_V6AGZ8 0.00187106657422 0.00113820565751 -2.95864945291e+11 +UniRef50_UPI0003B424BE hypothetical protein 3.57916747669e-05 0.000243700266574 83935249837.8 +UniRef50_UPI0004641C50 hypothetical protein 0.000183992753957 0.000183962771599 -12104245.8495 +UniRef50_UPI000476CD71 isopentenyl diphosphate delta isomerase 4.73997051056e-05 1.97167031782e-05 -11175967586.7 +UniRef50_UPI00035C2722 hypothetical protein 5.90057664396e-06 4.35390849935e-06 -624408909.732 +UniRef50_UPI00046890BA hypothetical protein, partial 1.86430528546e-05 0.000119713313774 40803304604.6 +UniRef50_A8ALR3 L carnitine gamma butyrobetaine antiporter 0.00285184827112 0.00101765236943 -7.40487393627e+11 +UniRef50_A0A017KTW4 5.62089307755e-05 5.0659646186e-05 -2240314286.16 +UniRef50_A0QM11 8.06019904975e-05 6.38272764067e-05 -6772157927.35 +UniRef50_B6IQY6 Sensor protein KdpD 9.84746802476e-05 6.81762305136e-05 -12231855961.4 +UniRef50_Q6G7J6 UPF0340 protein SAS2017 0.0156920268588 0.00101874404479 -5.92378433344e+12 +UniRef50_M5TC97 2.37826877082e-05 0.000785951750331 3.07697003447e+11 +UniRef50_UPI00036AD709 hypothetical protein 1.59772865959e-05 3.94836691946e-05 9489815110.85 +UniRef50_O26153 Isopentenyl phosphate kinase 0.00231493231061 0.000499870145261 -7.32762869469e+11 +UniRef50_UPI00046CFDF2 hypothetical protein 1.29175491729e-06 3.74038496119e-06 988541996.792 +UniRef50_Q8ZN19 Pyridoxine 5 phosphate synthase 0.00308235140282 0.00429827166635 4.90881931407e+11 +UniRef50_Q720G3 Gamma glutamyl phosphate reductase 0.00702664100625 0.00598564018567 -4.20264805785e+11 +UniRef50_C7N3H3 Anion transporter 0.0237432144303 0.00452606239393 -7.75820009807e+12 +UniRef50_P00728 Thermophilic aminopeptidase 1 alpha chain 0.0259971018651 0.00576076226005 -8.16965862639e+12 +UniRef50_U5MQF0 Transporter YbhF 0.00147167979232 0.00061644321569 -3.45269500919e+11 +UniRef50_UPI00036FB801 hypothetical protein 8.46303742568e-05 2.00647899842e-05 -26065918679.7 +UniRef50_Q1IZ80 Potassium proton antiporter regulatory subunit, CPA2 family 0.000248346045292 0.00615760034536 2.38563847564e+12 +UniRef50_Q51416 ATP dependent protease ATP binding subunit like protein AmiB 0.000102857217666 0.000200214715383 39304416539.2 +UniRef50_C3YC75 7.12178172882e-07 1.29775847779e-05 4951695159.9 +UniRef50_UPI0002492D8D transketolase 1.39747773338e-05 3.99072219756e-06 -4030685576.63 +UniRef50_UPI0003EB3D8F hypothetical protein 3.1132416975e-05 2.03299058961e-05 -4361106284.27 +UniRef50_UPI000255D367 30S ribosomal protein S3 0.000272568388437 0.0008342153111 2.26743754862e+11 +UniRef50_UPI0003B5823D dihydrolipoamide succinyltransferase 8.02500430363e-06 7.28996358487e-05 26190684856.0 +UniRef50_I7B1F5 TRZ ATZ atrazine degradation family enzyme 0.000709962959227 0.0019546252697 5.02485448461e+11 +UniRef50_I6Q147 IS861, transposase OrfB 0.000341354307019 4.40172007309e-05 -1.20038638545e+11 +UniRef50_UPI00037D6715 hypothetical protein 3.31050893557e-05 8.70666870102e-06 -9849941820.59 +UniRef50_D4HDK2 Transporter, anaerobic C4 dicarboxylate uptake family 9.44502057218e-05 0.00591509023624 2.34986380761e+12 +UniRef50_Q5HQV6 0.00336412819943 0.000757222321012 -1.05243989345e+12 +UniRef50_Q94BZ7 DNA gyrase subunit B, mitochondrial 2.23729522668e-06 2.29406004848e-05 8358178390.82 +UniRef50_P50840 Putative RNA methyltransferase YpsC 0.00533417924636 0.00512598869241 -84049081415.0 +UniRef50_UPI0004728778 hypothetical protein 1.05616600714e-05 1.86145888181e-05 3251066155.59 +UniRef50_A7FVN3 Carbon monoxide dehydrogenase 0.000143215453489 0.000722702766858 2.33946139516e+11 +UniRef50_L0GY09 AAA+ family ATPase 0.000288585029476 0.000140515482254 -59777493231.2 +UniRef50_A6LVS2 Restriction endonuclease 0.000146075327188 0.000951492496194 3.25156794708e+11 +UniRef50_P66717 Probable DNA directed RNA polymerase subunit delta 0.00768516023522 0.0100705323525 9.63003995553e+11 +UniRef50_W5XBG0 Leucyl phenylalanyl tRNA protein transferase 1.77021805482e-05 0.000115772129991 39592042043.7 +UniRef50_R8ZDY1 0.00022010844831 0.000201352299003 -7572087639.07 +UniRef50_UPI000477AEDD pseudouridine synthase 9.91005262121e-05 2.05999857157e-05 -31691631508.4 +UniRef50_X7E4C5 4.58701515345e-05 9.3596353762e-06 -14739743407.5 +UniRef50_A6M139 von Willebrand factor, type A 0.000305807775304 0.00103322539793 2.93667420672e+11 +UniRef50_B7NKV9 Phosphoheptose isomerase 5.02882655277e-05 1.4970082601e-05 -14258383850.4 +UniRef50_B9TEU6 1.50750497351e-05 0.000150617567623 54720177765.1 +UniRef50_E8SHT3 Chromosome partitioning protein ParB Stage 0 sporulation protein J 0.0312267521535 0.00652912722147 -9.97073425899e+12 +UniRef50_M9V8S5 Cellulase 0.000107443829842 0.00581875691343 2.30572717754e+12 +UniRef50_C3X191 1.77338467117e-05 1.63269972066e-05 -567962409.194 +UniRef50_X5DRB4 ABC type iron transporter, substrate binding lipoprotein 1.09437970387e-05 9.90725946941e-05 35578677075.4 +UniRef50_Q3J5T4 50S ribosomal protein L11 0.139199499904 0.00245855772567 -5.52039963573e+13 +UniRef50_P09099 Xylulose kinase 0.0026972184793 0.00146402956113 -4.97853499195e+11 +UniRef50_N8HI80 8.3782591309e-06 1.40835601794e-05 2303300045.2 +UniRef50_W0YQ62 Fusaric acid resistance protein 5.36709936769e-05 9.80033313642e-05 17897508743.3 +UniRef50_Z5X6F0 1.57932355862e-05 8.41816912623e-05 27609258777.2 +UniRef50_L9IFJ0 BFD like [2Fe 2S] binding domain protein 0.000468741420051 4.30032067258e-06 -1.87500571152e+11 +UniRef50_Q031D5 Phosphoserine aminotransferase 0.000156850133866 0.000191629184058 14040729349.4 +UniRef50_UPI000362AEF0 hypothetical protein 1.50753902652e-05 0.000203325586753 75998914411.9 +UniRef50_G3W4Q5 0.00128363144715 4.50138816053e-05 -5.00045110755e+11 +UniRef50_W7X105 0.000224249102288 0.000315284738642 36752203529.0 +UniRef50_F5M0G6 Response regulator receiver SARP domain containing protein 0.00195037146735 0.00168540739684 -1.0696924674e+11 +UniRef50_UPI00035E64FF hypothetical protein 5.32328295747e-06 1.62396901007e-05 4407087523.09 +UniRef50_UPI00036BE8CD hypothetical protein 1.7294366263e-06 9.68483347305e-05 38400666404.8 +UniRef50_UPI00031F67D7 hypothetical protein 8.93106652698e-05 2.62825054253e-05 -25445241571.7 +UniRef50_E8NRV4 0.000104195027678 1.85279536345e-05 -34584849044.6 +UniRef50_UPI0003B36054 riboflavin synthase subunit alpha 2.42622503288e-05 1.64145938764e-05 -3168195211.41 +UniRef50_K7VT43 2.95483217934e-05 5.14123792077e-05 8826788280.31 +UniRef50_UPI00037E7D3D hypothetical protein, partial 0.000179703098997 0.00043565151384 1.03329515912e+11 +UniRef50_UPI00037D2DA0 hypothetical protein 0.000535347739285 9.5400475928e-05 -1.77612108977e+11 +UniRef50_UPI0003B493CA pseudouridine synthase 4.3335336747e-05 3.77493923411e-05 -2255114303.91 +UniRef50_UPI00047DB330 D ala D ala transporter subunit 8.58580204115e-06 2.43048664741e-06 -2484976358.67 +UniRef50_P54616 Enoyl [acyl carrier protein] reductase [NADH] FabI 5.62826971963e-06 0.00139797536062 5.62107606616e+11 +UniRef50_UPI000478BABE ferredoxin 1.2684503966e-05 0.000131575319965 47997681373.2 +UniRef50_UPI0002E03FC6 hemolysin 3.13871470419e-05 1.05624215414e-05 -8407197232.67 +UniRef50_UPI000364F5FC hypothetical protein 2.51481312238e-06 5.56167962231e-06 1230057395.28 +UniRef50_UPI00037C05D9 hypothetical protein 1.77706551968e-05 1.18508993887e-05 -2389878063.3 +UniRef50_UPI000463A1BE homoserine acetyltransferase 5.18384990836e-06 8.33814908584e-06 1273429285.55 +UniRef50_A8F1A5 UDP glucose 4 epimerase 0.000192021386452 0.00466732232783 1.80673390815e+12 +UniRef50_F3FFT1 4.4757718709e-05 3.94813210547e-05 -2130146481.72 +UniRef50_UPI00047AA814 hypothetical protein 4.15318109155e-06 5.51937610675e-06 551549692.734 +UniRef50_Q5LW04 Membrane protein, putative 0.000302796247737 0.00024781821415 -22195306815.4 +UniRef50_UPI0003011CF5 hypothetical protein 2.0248256611e-05 2.31716765808e-05 1180220516.21 +UniRef50_A3SLT2 Glutamate dehydrogenase 0.000171567865821 0.000242204169826 28516742731.7 +UniRef50_A0A031UV61 1.90007455242e-05 3.13777964902e-05 4996767358.47 +UniRef50_UPI0004653811 hypothetical protein 1.10435478887e-05 7.27103291112e-05 24895636316.0 +UniRef50_Q8CP59 Probable elastin binding protein EbpS 0.00832140351875 0.00411289250804 -1.69902753926e+12 +UniRef50_UPI000248CD16 PTS system mannitol specific transporter subunit IICBA 1.61649916398e-06 1.44637478462e-05 5186591946.47 +UniRef50_P05342 Homocitrate synthase 4.8631366005e-06 9.47718844693e-06 1862749351.19 +UniRef50_Q8DT75 ATP dependent helicase deoxyribonuclease subunit B 0.00544756823373 0.00133373849452 -1.66080354809e+12 +UniRef50_UPI00029A0230 SecA DEAD domain containing protein 3.26174459568e-06 3.54871092945e-06 115851830.416 +UniRef50_H3ZCT1 Putative periplasmic ligand binding sensor protein 3.20883108606e-06 0.000276936061859 1.10507042074e+11 +UniRef50_B2V582 Purine nucleoside phosphorylase 0.00051921673785 0.00231032794423 7.23093573422e+11 +UniRef50_A6LX49 Nitroreductase 0.000641407587853 0.000260190929686 -1.53901842956e+11 +UniRef50_V5VAK2 0.000152618491829 0.00664637599475 2.62160959129e+12 +UniRef50_UPI0003B47659 DNA helicase 1.21175537429e-05 0.000118152969606 42807798584.8 +UniRef50_Q9RS08 0.000402228976927 0.0469619058344 1.87967128989e+13 +UniRef50_Q1J0I2 Acid phosphatase vanadium dependent haloperoxidase related protein 0.00170958961568 0.0639888977144 2.51429209325e+13 +UniRef50_Q5HN66 A G specific adenine glycosylase 0.0184575329324 0.00461918443987 -5.58671110205e+12 +UniRef50_C1CXG1 50S ribosomal protein L22 0.000281705961835 0.0501256812034 2.01226244594e+13 +UniRef50_UPI0003620A7F hypothetical protein 0.000105606761919 7.01492749984e-06 -39802733412.9 +UniRef50_UPI0004797B60 DeoR faimly transcriptional regulator 5.3413347157e-05 1.10351678542e-05 -17108591023.3 +UniRef50_X2GNE3 Aconitate hydratase 0.00443205394011 0.00112474200306 -1.33520241427e+12 +UniRef50_UPI00037C28A3 hypothetical protein 4.32363707923e-06 8.06105387024e-06 1508841021.79 +UniRef50_Q5LZ45 Sensor histidine kinase 0.00439994047338 0.0018470820442 -1.03062027496e+12 +UniRef50_I2BMM3 SAM dependent methyltransferase 0.000384771425101 0.000166688638861 -88042696981.8 +UniRef50_S7N8D9 0.000373755414128 3.34874094057e-05 -1.37370369064e+11 +UniRef50_E8SP16 1.55110952123e-05 0.000156440820615 56895059547.4 +UniRef50_Q8REV7 Phosphoribosylamine glycine ligase 9.08874772519e-05 0.000914931261758 3.32676587959e+11 +UniRef50_UPI0003B37A7B transporter 1.87929490226e-06 0.000869383380526 3.50222044839e+11 +UniRef50_F4CM54 Diguanylate cyclase 6.43618596827e-06 4.93578890273e-05 17328018233.4 +UniRef50_A6TW03 Methyltransferase type 12 0.000393214571719 0.00031031527691 -33467462603.1 +UniRef50_UPI00046554AE elongation factor G 2.01910224572e-05 2.32991741404e-05 1254798975.82 +UniRef50_P0A4L9 DNA gyrase subunit B 0.00556501643766 0.0062609292251 2.809485321e+11 +UniRef50_UPI00037BCC78 hypothetical protein, partial 2.2779567868e-05 0.000431735614614 1.65100574526e+11 +UniRef50_L7UJT3 6.62226477192e-05 3.85196216903e-05 -11184051562.2 +UniRef50_Q3YS50 2.29729563673e-05 3.15660806463e-05 3469149720.93 +UniRef50_A5UN86 Multidrug efflux permease, AraJ 0.00293176708695 0.00138452720838 -6.24639725747e+11 +UniRef50_S1EZD1 4.73953884703e-06 7.8571192103e-06 1258605449.67 +UniRef50_Q5NXH9 6.36874448383e-06 1.49562425541e-05 3466878351.42 +UniRef50_I2BZE4 0.000371565410131 0.000599477717425 92010995253.1 +UniRef50_Q49Z78 0.0197913509673 0.00457283060761 -6.14390342146e+12 +UniRef50_X1RRN3 Marine sediment metagenome DNA, contig 6.31818709492e-05 0.000143842335682 32563619427.8 +UniRef50_A7ZMU3 Probable manganese efflux pump MntP 0.00509427093074 0.000358684257326 -1.91181445224e+12 +UniRef50_S1S3U4 Integral membrane protein 5.52870625181e-05 0.000186513655394 52977785875.4 +UniRef50_L0DFT8 Arabinose efflux permease family protein 0.00137966711738 0.00735236310614 2.41125066388e+12 +UniRef50_UPI0003B3A02D AraC family transcriptional regulator 7.53321879241e-06 7.85397458351e-06 129493048.983 +UniRef50_Q28W31 Transcriptional regulator PpsR 0.00498328705518 0.0013535030926 -1.46538832815e+12 +UniRef50_A5UN34 Molybdopterin guanine dinucleotide biosynthesis protein B, MobB 0.00276129094823 0.000176484086778 -1.04351824911e+12 +UniRef50_Q2FDU6 Dehydrosqualene desaturase 0.0128623149623 0.00248397643887 -4.18986261843e+12 +UniRef50_A5CVR1 Imidazoleglycerol phosphate dehydratase 0.000131182725299 5.74004032043e-05 -29786828840.5 +UniRef50_UPI000315C86E DNA invertase 7.33618185325e-05 1.99707840675e-05 -21554615795.2 +UniRef50_P25536 Maf like protein YhdE 0.00178248514857 0.000364588524928 -5.72422266512e+11 +UniRef50_A6VCY0 Oxaloacetate decarboxylase 0.000914495448893 0.00034123904243 -2.31430645936e+11 +UniRef50_UPI00046D7227 ABC transporter permease 0.000228637083251 1.06805459259e-05 -87991728745.6 +UniRef50_P0A992 Fructose bisphosphate aldolase class 1 0.0022035207065 0.0072797821002 2.04934901737e+12 +UniRef50_S6D840 Cobaltochelatase CobT 0.0041970248918 0.000430193727675 -1.52071596518e+12 +UniRef50_C0Q8E7 Phosphoserine phosphatase 0.000100107597085 4.53009638529e-05 -22126110388.8 +UniRef50_D8UBN5 9.78287868212e-07 3.71463864838e-06 1104698388.75 +UniRef50_A0A016UJ97 1.51097878153e-05 4.24544446883e-05 11039373536.3 +UniRef50_UPI000368D600 hypothetical protein, partial 4.75644027597e-05 2.57494580698e-05 -8806960870.79 +UniRef50_Q898U2 BmrU protein 0.000392033178228 0.00108389657175 2.79313742083e+11 +UniRef50_D4KWU8 N methylhydantoinase A acetone carboxylase, beta subunit 0.000607632576895 0.00119768719334 2.38212289443e+11 +UniRef50_Y3F751 0.00291254428598 0.00220106542379 -2.87232747494e+11 +UniRef50_V4J8H7 9.69955197423e-05 2.84758717061e-05 -27662222742.8 +UniRef50_C6STY1 0.000712237714815 0.00902927955779 3.35769185359e+12 +UniRef50_N2KV62 Transposase IS66 family protein 2.36924537972e-05 4.95077337218e-05 10421945294.7 +UniRef50_A3SMT4 1.56208431973e-05 1.70246624926e-05 566739076.313 +UniRef50_UPI000466B777 hypothetical protein 3.88576144811e-06 9.21973416065e-06 2153390239.26 +UniRef50_UPI0003B73659 ActP protein 4.11618274984e-06 1.41510955897e-05 4051217455.7 +UniRef50_UPI00035C4E49 hypothetical protein 6.25847185931e-05 1.59562263036e-05 -18824494533.2 +UniRef50_P0ADT1 0.00488768768869 0.00141347723508 -1.40258139348e+12 +UniRef50_UPI00047198FB DNA resolvase 7.28311414477e-05 1.59390613568e-05 -22968030877.0 +UniRef50_Q899S7 DNA replication and repair protein RecF 0.0006763645327 0.00141605365713 2.98621576539e+11 +UniRef50_UPI0003AA2F1C 3 phosphoglycerate dehydrogenase 1.04137488984e-05 1.13390022492e-05 373536131.853 +UniRef50_X0YNP2 Marine sediment metagenome DNA, contig 2.39197256315e-05 1.98911126115e-05 -1626400512.82 +UniRef50_UPI0003B51ADA thiamine biosynthesis protein ThiF 3.92554490032e-06 8.70939792351e-06 1931300169.94 +UniRef50_UPI000406D91D phosphoserine phosphatase 3.42244562327e-05 6.07913087523e-05 10725364374.1 +UniRef50_R4HZ48 23S rRNA methyltransferase RlmB 0.000313700267745 0.000280808277526 -13278900081.5 +UniRef50_A0A023X8D6 Transposase 2.41392996845e-05 4.23488168073e-05 7351405518.38 +UniRef50_U3T6T2 Polyhydroxyalkanoate granule associated protein 0.000249440080738 0.00295753664493 1.09329181505e+12 +UniRef50_C5D8K3 Phosphopantetheine adenylyltransferase 0.0176856415322 0.00470212160973 -5.24160631842e+12 +UniRef50_Z5X3K7 4.44620384411e-05 4.95234013065e-05 2043334298.67 +UniRef50_Q9RYU4 NADH dehydrogenase (quinone) 0.00197831249177 0.0374013551242 1.43007170003e+13 +UniRef50_K2JGC9 9.43039741426e-06 5.46046255034e-06 -1602711421.14 +UniRef50_Q9HVN8 0.000498204428157 0.000609298553289 44850061594.0 +UniRef50_UPI0001C36F9A outer membrane adhesin like proteiin 4.87196884402e-06 1.42788262073e-05 3797663752.68 +UniRef50_Q83GU1 7.09555827168e-06 8.1462065439e-05 30022671523.1 +UniRef50_Q88NC4 GDP mannose 6 dehydrogenase 0.00100198839707 0.000220588117478 -3.15460881731e+11 +UniRef50_Q88WV4 Formamidopyrimidine DNA glycosylase 6.39387554937e-06 7.81622064859e-05 28973755895.5 +UniRef50_D2TWU4 0.000177364466731 0.00267394014239 1.00789823669e+12 +UniRef50_A8AYT3 Potassium uptake protein, Trk family 0.00460954114003 0.00416797741363 -1.78264694944e+11 +UniRef50_O49506 Peroxisomal 2 hydroxy acid oxidase GLO5 3.97615820661e-06 0.000107291263378 41709575776.4 +UniRef50_UPI00047A69B8 hypothetical protein 2.8617229111e-05 0.00012517339914 38980910718.2 +UniRef50_P50853 Riboflavin biosynthesis protein RibD 1.48386375156e-05 4.72822340835e-05 13097878062.2 +UniRef50_UPI0004730689 hypothetical protein, partial 2.62806251686e-05 5.72765848892e-05 12513449302.4 +UniRef50_B1MXB4 Endonuclease MutS2 2.58757112327e-06 0.000948705011713 3.81959220933e+11 +UniRef50_U3UA35 Regulatory protein HrpB 1.43960835534e-05 2.02697542598e-05 2371272942.22 +UniRef50_R7CL39 Extracellular solute binding protein family 3 0.00172359154281 0.0168070132897 6.08936245362e+12 +UniRef50_X1YEM9 1.14352887451e-05 8.12399341433e-06 -1336810559.19 +UniRef50_V7EI41 3.20806774711e-05 3.41938576822e-05 853116782.858 +UniRef50_UPI0003705056 MULTISPECIES 0.000202149123024 0.000240647570781 15542295788.6 +UniRef50_W8RSY4 Flp pilus assembly protein, pilin Flp 0.000128139089152 6.63471904157e-05 -24946147791.7 +UniRef50_F8DIB1 0.000125186641126 8.58503344326e-05 -15880549722.9 +UniRef50_A3V3M4 0.000110756626356 1.85691506338e-05 -37217215216.6 +UniRef50_D0IU34 Transcriptional regulator of hydrogenase activity 0.000274362718687 0.00482883478871 1.83869626432e+12 +UniRef50_H7FEN7 0.000103253641383 0.000170908076434 27312925643.4 +UniRef50_U3T2L8 Pirin like protein 0.000266227850401 0.0105316599056 4.1442808917e+12 +UniRef50_A6M260 ABC transporter related 0.000241033780736 0.00148307726135 5.0142819471e+11 +UniRef50_M2FX18 SAM dependent methyltransferase 0.00493382475933 0.00167482768286 -1.31569711216e+12 +UniRef50_D2RBW1 5.41238533916e-06 1.33656198187e-05 3210818356.55 +UniRef50_D3E362 0.000871121512734 0.00100107357693 52463243007.1 +UniRef50_G0DS16 LacI family transcriptional regulator 0.000742693016305 0.00613529355479 2.17705901204e+12 +UniRef50_E8QV25 7.25934593918e-05 0.00535058891104 2.13079153212e+12 +UniRef50_D9RQI3 Immunoglobulin G binding protein A 0.0034698789783 0.000618782833145 -1.15102250069e+12 +UniRef50_T2G7U7 Putative integral membrane protein MviN 1.33878022641e-05 6.22318278124e-06 -2892444805.0 +UniRef50_A4ECQ1 5.87199597557e-06 2.49175115395e-05 7688908347.9 +UniRef50_R4K2P7 Demethylmenaquinone methyltransferase 0.000161089326681 0.000663957401703 2.03014012772e+11 +UniRef50_UPI00035F2BDC hypothetical protein 6.08295075518e-05 0.000443161534345 1.54352130958e+11 +UniRef50_A6LSN9 GTP sensing transcriptional pleiotropic repressor CodY 0.000261537636621 0.00115593245281 3.61078162754e+11 +UniRef50_Q3JUU4 3.44432256858e-05 3.52605845544e-05 329977805.375 +UniRef50_S5Y2G0 Alpha beta fold family hydrolase 0.000382076712572 0.000349487225087 -13156776015.7 +UniRef50_E6UYE2 Oxidoreductase FAD NAD binding domain protein 0.000601039619697 0.000747728237143 59219994934.7 +UniRef50_UPI00035F6127 hypothetical protein 1.42965623319e-05 1.75641537002e-05 1319166733.24 +UniRef50_B7H179 Ferric alcaligin E 0.000111116962251 0.00587061348075 2.32517942149e+12 +UniRef50_UPI00026CA76F BLUF domain containing protein 0.000618829489919 0.00048412574623 -54381554328.1 +UniRef50_B8GLJ6 5.06914610605e-06 7.61157111904e-06 1026408176.81 +UniRef50_M0UCQ8 1.34906592086e-05 9.58278742817e-06 -1577655792.74 +UniRef50_Q08UF6 0.000153019626108 0.000242228329614 36014648319.3 +UniRef50_UPI00041CAC19 hypothetical protein 4.45821545997e-05 6.47006920291e-05 8122100442.47 +UniRef50_A0A031I5W8 0.000100022465565 7.11707566996e-05 -11647788919.2 +UniRef50_UPI0004750092 HAD family hydrolase 1.87616251786e-05 8.391742689e-05 26304196702.5 +UniRef50_UPI00037547C0 hypothetical protein 1.83986028447e-05 6.90023971584e-06 -4642030295.92 +UniRef50_D1ABT4 Transglutaminase domain protein 1.34278610735e-05 0.00011450204973 40804890280.2 +UniRef50_S5XRZ9 0.000923024188812 0.00128450442334 1.4593400654e+11 +UniRef50_P27297 Protein bax 0.00106261850832 0.000281254004947 -3.15446438432e+11 +UniRef50_T2HU52 Conjugal transfer protein 0.000111334675313 2.06750274623e-05 -36600412356.3 +UniRef50_H8GVP7 Alpha amylase 0.000159635914759 0.0355316863556 1.42801308268e+13 +UniRef50_F2HR75 0.0148041826021 0.00308156561942 -4.7325643286e+12 +UniRef50_P64274 Transcription elongation factor GreB 0.000952940513262 0.000482806602495 -1.89798828968e+11 +UniRef50_Q72TM7 Potassium transporting ATPase A chain 8.07216730493e-06 0.00177626566707 7.13841414031e+11 +UniRef50_UPI00041218DC peptide ABC transporter permease 9.62446188e-05 5.72898347339e-05 -15726524356.4 +UniRef50_UPI0003B710BC hypothetical protein 1.69493399885e-05 8.59529015332e-06 -3372632434.18 +UniRef50_UPI00036FA209 hypothetical protein 3.62913594103e-06 7.23494307578e-06 1455708588.53 +UniRef50_UPI000478D470 hypothetical protein 6.16373838133e-06 3.42092625119e-06 -1107306915.03 +UniRef50_Q92DC2 Serine protein kinase RsbW 0.000110395991086 0.00122367210878 4.49443230146e+11 +UniRef50_Q5LYH1 Dihydroxy acid dehydratase 0.00806699910533 0.00585520457941 -8.92928591885e+11 +UniRef50_B9TGU7 1.90328162922e-05 5.33660813462e-05 13860760418.8 +UniRef50_Q57NQ3 3.21125959461e-05 4.21344363879e-05 4045939968.17 +UniRef50_A6LS38 Tetratricopeptide TPR_2 repeat protein 0.000119836821857 0.00213865178833 8.15020375609e+11 +UniRef50_B8ZNP1 Pantothenate kinase 0.00336509900168 0.00696482045516 1.45325172432e+12 +UniRef50_UPI00036C732F magnesium chelatase 1.2000624151e-05 2.70249066739e-05 6065487223.17 +UniRef50_P25549 Arylsulfatase 0.00175430262597 0.00167989585173 -30038927834.5 +UniRef50_P75800 Putative cyclic di GMP phosphodiesterase YliE 0.00303515835543 0.00101305015105 -8.16349896166e+11 +UniRef50_S5MYM7 Phosphoserine phosphatase 0.000100107597085 4.53009638529e-05 -22126110388.8 +UniRef50_UPI0002490F21 branched chain amino acid transporter II carrier protein 7.5299879238e-06 5.5820500607e-06 -786406419.219 +UniRef50_A6LYA1 Phage replisome organizer, putative 0.000187803974553 0.000940180338959 3.03743571007e+11 +UniRef50_D2U1P2 0.000101242092128 5.28209841651e-05 -19548195478.4 +UniRef50_Q30UY1 0.0107188839784 0.00118377522267 -3.84944041363e+12 +UniRef50_UPI00038283FF 30S ribosomal protein S17 4.2042186347e-05 0.000236765376889 78612141544.1 +UniRef50_K2A1K8 0.00293801491532 0.000566609276111 -9.57365556969e+11 +UniRef50_Q3JTY3 6.58405794467e-05 0.00015316518423 35254014544.4 +UniRef50_P74587 Carbamoyl phosphate synthase small chain 2.25891074973e-05 6.75934614756e-06 -6390668909.89 +UniRef50_M5NSU4 Membrane protein 1.13951041875e-05 3.81468351799e-05 10800002082.3 +UniRef50_UPI0003B53AE0 hypothetical protein 5.32401572573e-06 8.29746762091e-06 1200419018.44 +UniRef50_Q21NS8 Lipid A export ATP binding permease protein MsbA 8.46198254108e-06 4.87887184377e-06 -1446545758.22 +UniRef50_UPI00036998C6 hypothetical protein 4.28937362125e-05 6.58143157671e-06 -14659722983.6 +UniRef50_Q1IJT2 Adenylosuccinate synthetase 3.86785327876e-06 1.17854259033e-05 3196421228.07 +UniRef50_UPI000378226F hypothetical protein 2.82236688363e-06 3.99012689755e-05 14969207783.8 +UniRef50_Q2NFZ1 Digeranylgeranylglycerophospholipid reductase 1 0.00334050099115 0.00413212017908 3.19586380427e+11 +UniRef50_A7FD15 Glutamate racemase 0.000733372697701 0.000642242449804 -36790399369.9 +UniRef50_Q5E8X7 3 ketoacyl CoA thiolase 0.00338575586643 0.00623721539973 1.15116920494e+12 +UniRef50_F0MDS8 Ribonuclease E 0.000133680915218 0.00433833136964 1.69746898531e+12 +UniRef50_Q9Z7H0 Uridine kinase 1.34863350197e-05 0.000195542275674 73498217319.6 +UniRef50_UPI000467A3EC cupin 6.5150823885e-05 2.17184232814e-05 -17534193099.2 +UniRef50_P0ACE1 Hydrogenase 2 large chain 0.00312555124396 0.00105664377758 -8.35243332527e+11 +UniRef50_UPI000468F1F3 hypothetical protein, partial 0.000157690144949 7.70389166955e-05 -32559890547.8 +UniRef50_G4LC92 0.00204913533208 0.00167882825218 -1.49497512335e+11 +UniRef50_UPI00031A1A33 hypothetical protein 6.20886911887e-06 5.44192420364e-06 -309625073.751 +UniRef50_Q28K97 Taurine import ATP binding protein TauB 8.52049955463e-06 1.03504839523e-05 738787157.773 +UniRef50_Q9RUX9 0.00135496000475 0.05068317117 1.99144041726e+13 +UniRef50_M5R129 Bacteriophage replication 0.000189809794024 0.000466120556427 1.11550045496e+11 +UniRef50_G6Y6C6 0.000565882778137 4.60710263245e-05 -2.09854383014e+11 +UniRef50_P73016 Enoyl [acyl carrier protein] reductase [NADH] FabI 4.24505095136e-06 3.36347104132e-05 11864966176.4 +UniRef50_P0ACH9 Melibiose operon regulatory protein 0.00313230269599 0.001129102604 -8.08716459166e+11 +UniRef50_UPI0003770906 membrane protein 1.23209880843e-05 1.57441250441e-05 1381962397.29 +UniRef50_UPI00035D9DA9 hypothetical protein 1.23990260685e-05 0.000361596057602 1.40975126759e+11 +UniRef50_O76511 Thymidylate synthase 2.85302606085e-05 0.00020927438731 72968621929.4 +UniRef50_G5FKI8 0.000172487459061 0.000114070981381 -23583448890.2 +UniRef50_UPI00016C4DB7 branched chain amino acid transport ATP binding protein 8.70191304705e-06 0.000146093730295 55466762610.2 +UniRef50_UPI0003B40598 major facilitator transporter 5.70262590183e-06 1.99305033888e-05 5743968737.19 +UniRef50_UPI00039F2091 potassium transporter 1.47779598854e-05 1.56416817285e-05 348695107.118 +UniRef50_E3H4N2 Periplasmic binding protein 7.79552935173e-06 0.000119523794993 45106071899.3 +UniRef50_UPI00047150D6 hypothetical protein 2.90893697153e-05 0.000356278564807 1.32090293122e+11 +UniRef50_UPI00036C6373 tail fiber protein 7.32124326048e-06 2.33857953437e-05 6485456810.21 +UniRef50_UPI0004728F0C DNA mismatch repair protein MutL 2.68462120821e-06 7.08654306481e-06 1777109871.17 +UniRef50_UPI00041001CB hypothetical protein 4.25877151765e-06 7.66636522004e-06 1375687393.53 +UniRef50_K7U6X3 0.000105882543757 4.17777703601e-05 -25879883674.4 +UniRef50_U3SR01 0.00450294280596 0.00250711205447 -8.05741365974e+11 +UniRef50_C7DF61 Chemotactic signal response protein, putative 0.000115145333304 5.88924754004e-05 -22709969035.9 +UniRef50_A0A023RXZ9 Peptide transporter 0.0001265990815 0.00710388697802 2.81681674478e+12 +UniRef50_A6M202 Nitroreductase 0.00174224302547 0.000799065265672 -3.80772435723e+11 +UniRef50_A9MD69 0.000948433294362 0.00927165299754 3.36018593157e+12 +UniRef50_Q3JNQ1 0.000202622699755 6.0076060546e-05 -57547827492.6 +UniRef50_B1ZHY8 Pyridoxal 5 phosphate dependent protein beta subunit 0.000144169711234 0.000986511342191 3.40063653112e+11 +UniRef50_R5HQZ2 TRAP transporter DctM subunit tripartite ATP independent periplasmic transporter solute receptor DctP family 9.69309895129e-05 2.43438350076e-05 -29304325018.3 +UniRef50_D2NLM2 Transcriptional regulator 0.000580579479589 0.000498212180715 -33252689315.9 +UniRef50_UPI0003B4984E trehalose phosphatase 3.34519271892e-05 2.59270922195e-05 -3037868217.38 +UniRef50_D8JJA0 Flavodoxin reductase family protein 1 0.000274571937307 0.00533207792291 2.04177722896e+12 +UniRef50_UPI0003B42639 heme ABC transporter ATPase 3.27566694672e-05 4.87882166355e-06 -11254629258.0 +UniRef50_UPI00029ADE28 50S ribosomal protein L22 2.04437180746e-05 0.000358998688252 1.36678795997e+11 +UniRef50_D7DK39 2.54757879259e-05 1.74232323308e-05 -3250915509.71 +UniRef50_UPI00037A6F5F hypothetical protein 1.68998196174e-05 2.15474190506e-05 1876292923.64 +UniRef50_UPI0003642305 hypothetical protein 7.99728443918e-06 3.10902035097e-05 9322894810.74 +UniRef50_UPI0003C7E218 hypothetical protein 2.29239941168e-05 5.72700117241e-05 13865908781.1 +UniRef50_UPI000415A98C 3 hexulose 6 phosphate synthase 1.23292102048e-05 1.93882407166e-05 2849817241.66 +UniRef50_Q8E7H3 Sensory transduction protein LytR 0.00360408532593 0.00238520267181 -4.9207788484e+11 +UniRef50_Q9RTV3 0.000365034324106 0.0480658044284 1.92573862454e+13 +UniRef50_F3GAC2 0.000171494568023 0.000179416010205 3197983415.9 +UniRef50_Q04440 Cytochrome c oxidase subunit 1 2.59521030308e-05 0.000349753103289 1.30722437289e+11 +UniRef50_Q4L7K3 UPF0421 protein SH1063 0.0181001297953 0.00404296698988 -5.67504912533e+12 +UniRef50_Q8CMQ2 Alkyl hydroperoxide reductase subunit C 0.0148373139772 0.00562444751678 -3.71934724466e+12 +UniRef50_UPI00016C50A5 N acetylmuramic acid 6 phosphate etherase 2.58224168548e-06 5.63091977782e-06 1230788757.36 +UniRef50_UPI00047D14DB cytochrome C oxidase assembly protein 9.61856960834e-06 2.45828268555e-05 6041254282.78 +UniRef50_T1CPC3 Magnesium protoporphyrin chelatase 5.69763612556e-05 0.000650460967098 2.39597018254e+11 +UniRef50_R0ZN34 0.000140678008262 0.00268628883158 1.02769432753e+12 +UniRef50_M8Q184 Prophage tail length tape measure family protein 0.000100842205389 0.000181919941603 32732077045.3 +UniRef50_Q3M244 Phosphoribosyl AMP cyclohydrolase 3.64084507058e-05 1.58070497219e-05 -8317038384.82 +UniRef50_UPI000360A98B hypothetical protein, partial 9.1832894984e-05 0.000242974782543 61017834727.1 +UniRef50_V9R1X9 Acriflavine resistance protein B 0.000922042096269 0.000249875192007 -2.71362027666e+11 +UniRef50_Q6G3Y9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.0225879710182 0.00387876723162 -7.5531351564e+12 +UniRef50_P42405 3 hexulose 6 phosphate synthase 0.00963742585113 0.000956843054258 -3.50445779783e+12 +UniRef50_U3STF6 0.00781270110667 0.00156730461903 -2.52134320169e+12 +UniRef50_Q5HKV0 Indole 3 pyruvate decarboxylase 0.0212264419487 0.00595358167122 -6.1658411131e+12 +UniRef50_Q5HRL9 RNA polymerase sigma factor sigW, putative 0.00457115858125 0.00135766533028 -1.29732665941e+12 +UniRef50_UPI0003B61754 transporter 2.54202769767e-05 3.05085050717e-05 2054180121.53 +UniRef50_A3PHJ2 5.9772306434e-05 0.000401791435631 1.38077319504e+11 +UniRef50_A7X0F5 Na H(+) antiporter subunit G1 0.00935111552297 0.0129056256333 1.43499935028e+12 +UniRef50_UPI00039FEC41 hypothetical protein 5.31610297012e-06 3.30064596023e-06 -813664727.331 +UniRef50_Q89P04 Blr3679 protein 0.0134067948307 0.00378137333201 -3.88590077623e+12 +UniRef50_Q8XZP8 Sulfate thiosulfate import ATP binding protein CysA 8.11692831193e-05 0.0015493342529 5.9271621471e+11 +UniRef50_M6TCA5 Transcriptional regulator domain protein 1.36938052374e-05 0.000124560358728 44758188129.9 +UniRef50_Q21QM7 Adenine phosphoribosyltransferase 4.58034412441e-05 2.01912434691e-05 -10339958538.8 +UniRef50_A6E0W9 0.000108385718858 2.84085662353e-05 -32287757943.8 +UniRef50_B8IL91 Endoribonuclease L PSP 0.00157794945669 0.00062907375522 -3.83072764698e+11 +UniRef50_UPI00032A8D12 PREDICTED 4.87753141301e-05 0.000271755108757 90019679360.7 +UniRef50_A5UN72 Predicted transcriptional regulator 0.00258157449824 0.000228632287886 -9.49911644166e+11 +UniRef50_M1MA52 D alanyl D alanine carboxypeptidase 0.000371535728465 0.00145761759296 4.38464576418e+11 +UniRef50_UPI0002556197 coproporphyrinogen III oxidase 3.50474357464e-05 4.45719674196e-05 3845170315.62 +UniRef50_Q21J87 2.57369353376e-05 0.000177695931482 61347711489.9 +UniRef50_Q3J216 Putative class I holin 0.00140643784758 0.000468756674913 -3.78553396048e+11 +UniRef50_UPI000377F527 hypothetical protein 4.80886116183e-05 4.01904624068e-05 -3188579757.87 +UniRef50_C6SU00 0.00303051667575 0.000771517864425 -9.11985541163e+11 +UniRef50_UPI0003B3C220 DNA repair protein RecO, partial 1.31720268035e-05 4.01872517414e-05 10906377821.5 +UniRef50_UPI00047C9CC6 hypothetical protein 1.38994065938e-05 0.000338446452111 1.31023624915e+11 +UniRef50_Q5F9J0 ADP L glycero D manno heptose 6 epimerase 0.00113471942806 0.00407589827804 1.18738999406e+12 +UniRef50_D9S0U1 Amine oxidase 0.00028295022501 0.000339464198664 22815384668.6 +UniRef50_B4RJU8 Tpc 0.000320954230783 0.00217566167269 7.48768154119e+11 +UniRef50_UPI0003A37E8C protease 2.06138888301e-05 1.54457396144e-05 -2086445258.7 +UniRef50_UPI000476C2A7 ATPase AAA 4.97971851641e-06 9.00040106754e-06 1623198885.21 +UniRef50_A6DZ03 0.00505054023371 0.000460796461851 -1.85293588319e+12 +UniRef50_Q8NR12 Ribose import ATP binding protein RbsA 3.33629928643e-06 1.28226291259e-05 3829747766.55 +UniRef50_G2JZ42 Carnitine transport binding protein OpuCC 0.0198117278382 0.00915125617052 -4.30376323095e+12 +UniRef50_B2GI94 Elongation factor P 3.07830177934e-05 0.000296930514669 1.07447010486e+11 +UniRef50_UPI0004783ADB cell wall hydrolase 1.60815933582e-05 4.09489797081e-06 -4839176021.19 +UniRef50_UPI00047D45FE arginine ABC transporter permease 1.08268274711e-05 2.48833198363e-05 5674778460.39 +UniRef50_S1S637 0.0001655503621 2.77872412152e-05 -55616662444.9 +UniRef50_Q18C32 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.50252640178e-05 1.16510577651e-05 -1362208470.38 +UniRef50_Q1J2H5 Pyruvate kinase 0.000629403728881 0.0588782914657 2.35157907736e+13 +UniRef50_Q1GIU5 Cell division protein ftsA 0.0054380014543 0.00103493369603 -1.77757248573e+12 +UniRef50_D4GMR6 0.000299397312428 3.48953214438e-05 -1.06782699565e+11 +UniRef50_UPI00029B2672 GntR family transcriptional regulator, partial 4.17685392267e-05 9.11968312661e-05 19954808049.7 +UniRef50_Q2YCK0 Glycine cleavage system H protein 0.00173759018497 0.000496330596971 -5.01111727644e+11 +UniRef50_A3LIM1 0.0008170887115 0.000908666785215 36971192148.1 +UniRef50_Q5XB25 Exodeoxyribonuclease 7 large subunit 0.00671860777953 0.00291664467262 -1.53489916159e+12 +UniRef50_UPI000370F15C hypothetical protein 1.26254349018e-05 2.01505973182e-05 3038000411.63 +UniRef50_G3XD61 UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase 0.00129002718057 0.000456988449836 -3.36307958132e+11 +UniRef50_X5ZEE6 0.000259249311424 1.68095180831e-05 -97875919642.6 +UniRef50_X1KYQ6 Marine sediment metagenome DNA, contig 2.60664074491e-05 2.8852742925e-05 1124877823.8 +UniRef50_UPI00034A7DFF hypothetical protein 1.45091890612e-06 3.70884597519e-05 14387312561.3 +UniRef50_UPI00037DAE35 hypothetical protein 1.17908918598e-05 2.0244260177e-05 3412728524.15 +UniRef50_UPI00037E1EAE short chain dehydrogenase 1.94182088949e-05 4.42105901748e-05 10008988559.4 +UniRef50_UPI000415BCBB MarR family transcriptional regulator 1.34145716e-05 0.000107723481974 38073664418.5 +UniRef50_Q6NBT1 Sulfate thiosulfate import ATP binding protein CysA 0.000868330497486 0.000216742500443 -2.6305407029e+11 +UniRef50_UPI000368D6F0 hypothetical protein 1.92220733129e-05 0.000222981753207 82260283185.7 +UniRef50_B9DLF5 DNA polymerase III gamma and tau subunits 0.0270772474455 0.00824267245966 -7.60374904799e+12 +UniRef50_E5AVM4 Transcriptional regulators, LysR family 0.000125549663697 0.00570508560548 2.2525271283e+12 +UniRef50_R6J1R9 2.26669780816e-05 1.56112932497e-05 -2848466549.63 +UniRef50_UPI000468AE38 cupin 0.000100693742006 3.19217275303e-05 -27764106171.4 +UniRef50_Q9UY68 N5 carboxyaminoimidazole ribonucleotide mutase 8.21415623014e-05 0.0128947793688 5.17261911123e+12 +UniRef50_UPI0002F45A92 hypothetical protein 2.12775207723e-05 4.81994287538e-05 10868704621.1 +UniRef50_Q9RVV9 DNA directed RNA polymerase subunit beta 0.000201427621312 0.0298571583257 1.19723824021e+13 +UniRef50_Q49UM5 Adenylyl sulfate kinase 0.0128117946947 0.00429336847484 -3.4389931978e+12 +UniRef50_A5UNL3 Adhesin like protein 0.00349912040045 0.00130543198649 -8.856189323e+11 +UniRef50_F2AIB1 Molecular chaperone small heat shock protein 0.000158395206665 0.000106667554089 -20883088114.6 +UniRef50_UPI00036E0C31 hypothetical protein 1.07533614235e-05 4.88836506504e-05 15393665672.2 +UniRef50_Q2RPW9 Phosphoglycolate phosphatase 6.83146150906e-06 1.4853183202e-05 3238467485.03 +UniRef50_Q637E1 Phosphonate ABC transporter, phosphate binding protein 0.0170656142937 0.00426598418179 -5.1673677453e+12 +UniRef50_UPI00046F5175 ATPase 2.88136860052e-06 9.62933042768e-06 2724234996.43 +UniRef50_B4U470 Nickel or oligopeptide transport ATP binding protein 0.000144446169206 0.0010361989656 3.60011546942e+11 +UniRef50_P0AA87 Thiol 0.00631829578192 0.00298203894202 -1.34688782674e+12 +UniRef50_UPI0003708E67 hypothetical protein 3.53518796422e-06 4.08007198546e-06 219976365.853 +UniRef50_Q28UZ1 1.68791132125e-05 1.34658193061e-05 -1377988635.84 +UniRef50_B8G0S1 Glycosyl transferase family 4 0.00024320610591 0.00130928295672 4.30388306906e+11 +UniRef50_UPI00046CFF8D phenylacetate CoA ligase 5.63540337813e-06 6.96269403389e-05 25834168735.5 +UniRef50_L1K7B5 0.00224616590853 0.00100134539023 -5.02549318903e+11 +UniRef50_P29823 Lactose transport system permease protein LacF 0.00041872166478 0.000197756722234 -89206258850.6 +UniRef50_I4Y2D8 0.00102300699327 0.000282664416606 -2.98885383224e+11 +UniRef50_A0A011QYY7 L threonine dehydratase biosynthetic IlvA 1.87109510819e-05 3.51207216829e-05 6624825762.15 +UniRef50_UPI0002192A5B cyclic nucleotide binding protein, partial 0.000126284299972 2.04166906102e-05 -42740053041.1 +UniRef50_K6BVJ8 4.2143296543e-06 3.96522787554e-05 14306734924.7 +UniRef50_A8FF31 3 dehydroquinate dehydratase 9.40057373735e-06 0.000186942872426 71676004669.8 +UniRef50_K1VMV2 0.000217434706207 0.000221997421502 1842024155.4 +UniRef50_Q5LUZ4 Prolipoprotein diacylglyceryl transferase 0.00969019143465 0.002235458425 -3.00956719586e+12 +UniRef50_R7PUB9 0.00236795786484 0.000194287306055 -8.77537478517e+11 +UniRef50_A2SFU4 Transport protein B 0.000400716105696 0.00763294253207 2.91973855772e+12 +UniRef50_N0GPT3 L asparaginase I 0.000358372774223 0.000653837723686 1.19282825861e+11 +UniRef50_R7PUB1 0.00340672570152 0.000198982142971 -1.29500543803e+12 +UniRef50_B6JGY2 Peptide chain release factor 3 0.0144030370359 0.0044878011983 -4.00290238127e+12 +UniRef50_D2SD20 TRAP transporter solute receptor, TAXI family 1.15239900667e-05 2.06067941359e-05 3666839461.28 +UniRef50_P05041 Aminodeoxychorismate synthase component 1 0.00200312560123 0.00124723505506 -3.05162289309e+11 +UniRef50_Q9RZS9 GGDEF family protein 0.000113793548035 0.0182196679135 7.30956366542e+12 +UniRef50_R6C7G1 Phage terminase 9.35117743834e-06 7.36313287246e-05 25950685880.4 +UniRef50_Q2RYH6 KpsF GutQ 0.00277098583371 0.00103249224889 -7.01851193907e+11 +UniRef50_B2I4P8 Peptide methionine sulfoxide reductase MsrA 5.13684557461e-05 0.00308964459525 1.22658936136e+12 +UniRef50_Q9SJM7 Uridine nucleosidase 1 6.04471433116e-06 7.22201406908e-06 475290351.291 +UniRef50_C5WH94 Tetra tricopeptide repeat family protein 0.00563254290967 0.00320965063141 -9.78151344965e+11 +UniRef50_UPI0003607183 hypothetical protein 1.54754038063e-05 1.91542237445e-05 1485184753.25 +UniRef50_R6R0W0 Electron transfer flavoprotein domain containing protein 0.000567306696935 0.000570660299901 1353890670.71 +UniRef50_D4HFL5 AMP binding enzyme 0.000198239267955 0.00548453008253 2.13414047193e+12 +UniRef50_B9KSR7 0.00170574734514 0.000560502775299 -4.62349286576e+11 +UniRef50_B9J5U3 0.000157719640427 1.81017232643e-05 -56365466463.2 +UniRef50_B9KSF7 Entericidin EcnAB 0.000478240128508 0.00084341629595 1.47426100012e+11 +UniRef50_Q928I1 Triosephosphate isomerase 1 0.00386734406747 0.00223308783928 -6.59769293899e+11 +UniRef50_UPI00037BAD1C hypothetical protein 1.16421623274e-06 2.09540025578e-06 375930417.014 +UniRef50_M1M081 DNA mismatch repair protein MutS 0.000340449036575 0.00161035886607 5.12678181715e+11 +UniRef50_Q3M630 DNA topology modulation protein 1.06036250001e-05 0.000146575448713 54893493794.8 +UniRef50_M5KBZ8 0.000412806961006 4.5474397997e-05 -1.48296663364e+11 +UniRef50_X2GPQ0 2.49222912468e-06 3.9432153995e-05 14913100974.0 +UniRef50_Q9RWZ0 0.00174224302547 0.00589430262056 1.67623741004e+12 +UniRef50_Q7CGI0 Cell division protein FtsP 0.00289849823589 0.00118728302618 -6.90838579132e+11 +UniRef50_UPI00036E8C31 hypothetical protein 0.000265389291912 3.51635433376e-05 -92944959887.0 +UniRef50_A7NI76 AAA ATPase central domain protein 0.000373938161566 0.0106834373395 4.1620713299e+12 +UniRef50_P24173 Lipopolysaccharide heptosyltransferase 1 0.00370041992576 0.001021387734 -1.08155817124e+12 +UniRef50_Q1R011 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.00707112221482 0.000682057048299 -2.57934401037e+12 +UniRef50_UPI0003B662E9 uroporphyrin III C methyltransferase 7.35275078914e-06 5.2644238322e-06 -843083219.17 +UniRef50_D3E2B0 Calcineurin like phosphoesterase 0.00405404778582 0.00081953407602 -1.30581287659e+12 +UniRef50_A5UNH2 Glycosyltransferase, GT2 family 0.00317357199685 0.000273441393692 -1.1708183131e+12 +UniRef50_Q5NLZ3 Tyrosine tRNA ligase 8.01499879515e-05 1.60654574323e-05 -25871711376.2 +UniRef50_E6SII5 Endonuclease III 0.000361437403208 0.0276558927574 1.10191065671e+13 +UniRef50_X6YJ88 3.78566325289e-05 2.90787534417e-05 -3543737504.19 +UniRef50_UPI000441D732 PREDICTED 1.08323711133e-05 3.95595906365e-05 11597531044.1 +UniRef50_P32715 Multidrug resistance protein MdtO 0.00473586386858 0.000707832738041 -1.6261655969e+12 +UniRef50_UPI000315E7F4 hypothetical protein 5.51232177635e-06 3.85238842268e-06 -670135464.549 +UniRef50_G7D8U7 Biopolymer transport protein 0.000603761499101 0.000837777887078 94475287530.3 +UniRef50_A0A017HLZ7 0.000184177191146 7.02253126948e-05 -46003771677.5 +UniRef50_V6JSM6 UDP N acetylglucosamine 2 epimerase 0.000163886825841 0.00524739617613 2.05227510639e+12 +UniRef50_B4U8M6 Glutamate 1 semialdehyde 2,1 aminomutase 4.69046082534e-06 1.47103980062e-05 4045171598.39 +UniRef50_A0A011U926 Polymerase 1.48300302688e-05 1.76380899938e-05 1133648169.75 +UniRef50_UPI000463B6AC molybdopterin biosynthesis like protein MoeZ 2.05063260247e-05 5.33052622705e-05 13241333050.6 +UniRef50_P34031 DNA gyrase subunit B 5.47255676056e-06 1.90734755754e-05 5490857827.58 +UniRef50_A0A023LIT9 0.00016276234997 0.000205201838459 17133342294.1 +UniRef50_E5RBE6 Protein smf. domain protein 0.0218020948679 0.00445137972063 -7.00469662218e+12 +UniRef50_UPI0003A10A10 hypothetical protein 1.6104116928e-06 2.93460448929e-06 534592881.616 +UniRef50_Q9RYG5 Methyl accepting chemotaxis protein 5.91361862444e-05 0.0122182316847 4.90877606163e+12 +UniRef50_Q6LRE4 Anhydro N acetylmuramic acid kinase 0.00141863383458 0.000170867910433 -5.03738415389e+11 +UniRef50_A0A010U7S7 Glutamine tRNA ligase 0.000162070942107 0.00784970355268 3.10359162275e+12 +UniRef50_UPI00037E096F hypothetical protein 3.01518530361e-06 1.1517170627e-05 3432355806.14 +UniRef50_R7LLC2 Cation efflux protein 0.000392237051012 0.000493806474628 41004822710.8 +UniRef50_F2CXC6 Predicted protein 5.13387069926e-06 4.04291236713e-06 -440433266.245 +UniRef50_UPI0003799FCE hypothetical protein 0.000152166005089 3.28366751475e-05 -48174714832.7 +UniRef50_Q2YUY9 N acetylmuramic acid 6 phosphate etherase 0.0152311823614 0.00367054031804 -4.66717305795e+12 +UniRef50_D7B3H1 CDP alcohol phosphatidyltransferase 0.000769563339957 0.00649409271662 2.31106275723e+12 +UniRef50_E6MY79 Phosphoglycerate kinase 9.7963491915e-05 0.000813575092068 2.88901184524e+11 +UniRef50_M9TYI3 2.53019622415e-05 8.52488090335e-05 24201277680.5 +UniRef50_UPI0004740A93 citrate synthase, partial 1.89269214499e-05 0.000116417904346 39358306144.0 +UniRef50_M9VKL6 Thiol reductant ABC exporter, CydC subunit 7.67768112925e-05 0.00404134262667 1.60054387036e+12 +UniRef50_D4HEU0 Transcriptional regulator, TetR family 0.000394584657338 0.00436389562582 1.6024595469e+12 +UniRef50_B8A0L8 0.000194542899263 0.000179649815205 -6012520792.91 +UniRef50_A5UNY6 Adhesin like protein 0.00215068518922 0.0011086068635 -4.20699807832e+11 +UniRef50_K0PFX8 Group 1 glycosyl transferase 0.0107622468302 0.00290447593266 -3.17227853703e+12 +UniRef50_X5EKA8 0.000848550437128 0.000686783035329 -65307485215.5 +UniRef50_Q6A900 Ribonuclease Y 0.000146745756494 0.00490997271259 1.92297317355e+12 +UniRef50_A7ZN22 Alpha,alpha trehalose phosphate synthase [UDP forming] 0.0027469796381 0.00106188235924 -6.80294449945e+11 +UniRef50_M9VHV5 Transcriptional regulator 0.000225589236365 0.00436925648719 1.67284931768e+12 +UniRef50_UPI00036BF090 hypothetical protein 3.43279814745e-06 8.4409372486e-06 2021847211.91 +UniRef50_X5W5P1 Cupin 0.000180769829851 7.16667277517e-05 -44046261163.0 +UniRef50_P05648 Chromosomal replication initiator protein DnaA 0.0113564731635 0.00668566528941 -1.88566245603e+12 +UniRef50_C1DQE7 KHG KDPG aldolase 0.000257376810578 0.00315629878782 1.17033037598e+12 +UniRef50_B9KXN9 tRNA ) methyltransferase 0.0120231703974 0.00295971251012 -3.65902917023e+12 +UniRef50_A3PQ24 Phage integrase family protein 0.00255107659281 0.00136758569941 -4.77789796732e+11 +UniRef50_P96718 UDP glucose 6 dehydrogenase YwqF 0.000120829661313 0.00156833704801 5.84376494924e+11 +UniRef50_I1HFT3 1.25287881305e-05 2.90041678708e-05 6651312976.8 +UniRef50_I0C140 OppC 0.0126924445712 0.00158630125612 -4.48368634401e+12 +UniRef50_G5KE14 Phage terminase, large subunit like protein 7.79843887406e-06 2.05572388529e-05 5150884119.52 +UniRef50_B4RGD5 Patch repair protein 0.0108912907855 0.000940381616195 -4.01730414303e+12 +UniRef50_UPI0003442B9F PREDICTED 5.82291780552e-05 2.3177070582e-05 -14150965924.7 +UniRef50_D2N4E0 Peptidase propeptide and ypeb domain protein 0.00750510669895 0.00156342478604 -2.39872990088e+12 +UniRef50_B8JEW4 6,7 dimethyl 8 ribityllumazine synthase 0.0215648454522 0.0109127458277 -4.30038333437e+12 +UniRef50_UPI00016C4567 chemotaxis protein methyltransferase 0.000113021342479 5.88442649718e-05 -21871951017.2 +UniRef50_UPI0003B71F4A cell wall hydrolase 1.80208024441e-05 9.10392550799e-06 -3599852641.49 +UniRef50_A5VZS9 Ribosomal protein S12 methylthiotransferase RimO 0.00111277494258 0.000165439681228 -3.82450870119e+11 +UniRef50_D7D802 8.102385349e-06 2.03666697605e-05 4951242116.62 +UniRef50_UPI00037181FA hypothetical protein 6.13558189659e-05 1.68214479329e-05 -17979072084.2 +UniRef50_B0VU18 4.76623723326e-05 0.00827763282021 3.3225400629e+12 +UniRef50_I7ES66 TRAP transporter, subunit DctM 2.06772052005e-05 2.81742240132e-05 3026638493.45 +UniRef50_P0AAM2 Probable Ni Fe hydrogenase 1 B type cytochrome subunit 0.00539712652045 0.000340096013652 -2.04158527234e+12 +UniRef50_UPI000472D060 transposase 2.14740062497e-05 0.00297784138086 1.19352178784e+12 +UniRef50_A7HHU8 LigA 0.000121427234682 0.000178526398263 23051633023.2 +UniRef50_P33074 L serine dehydratase, beta chain 7.47890918861e-06 0.000127499314827 48453710572.1 +UniRef50_Q1JF14 Trigger factor 0.00566061966744 0.00865077366818 1.20716186341e+12 +UniRef50_UPI0002629D2B phenol hydroxylase 0.000201455958786 1.00466665675e-05 -77274280124.6 +UniRef50_A9C3K7 4.70692549582e-06 1.66741009091e-05 4831295568.11 +UniRef50_UPI000414ACF6 TonB dependent receptor 5.79642479055e-06 2.76292977141e-06 -1224659164.4 +UniRef50_B1XKV1 Elongation factor P 1.17457306025e-05 7.05112435617e-05 23724358715.6 +UniRef50_UPI000379A93B hypothetical protein 0.000206051979774 0.000141918362078 -25891528471.9 +UniRef50_Q1BN64 Methylmalonate semialdehyde dehydrogenase 0.00231972154228 0.00499836766018 1.08140230848e+12 +UniRef50_Q3JID5 0.000106060571166 0.000413104750589 1.23957503089e+11 +UniRef50_B9E8I0 S ribosylhomocysteine lyase 0.0518448955425 0.00990487857501 -1.69316995117e+13 +UniRef50_P35755 Iron utilization periplasmic protein 0.000149598146176 0.00317446417631 1.22117553564e+12 +UniRef50_R9SK57 Molybdate ABC transporter ATP binding protein ModC 0.00157391740286 0.00110180842614 -1.9059618733e+11 +UniRef50_Q24YW4 Enolase 1 6.56414394538e-06 5.55422728282e-05 19773071659.2 +UniRef50_I0C4F0 GTPases 0.0177960036071 0.00410352845075 -5.52782024616e+12 +UniRef50_UPI0003A26BF2 twin arginine targeting protein translocase 6.05986919509e-05 3.4428606396e-05 -10565184681.6 +UniRef50_UPI00035144CC PREDICTED 1.13514881239e-05 3.69121429389e-05 10319150013.3 +UniRef50_UPI00037AC467 hypothetical protein 4.4705954361e-06 2.55793114562e-05 8521847690.39 +UniRef50_D8JW50 1.82978366557e-05 1.64609520844e-05 -741572842.542 +UniRef50_A8FDG9 8 amino 7 oxononanoate synthase 1.17714039908e-05 5.51694272071e-06 -2525002765.61 +UniRef50_UPI000478F20C macrolide transporter 2.20432737083e-06 4.88725153206e-06 1083129407.07 +UniRef50_F2ETD0 0.000201491518566 0.000154080181991 -19140538377.9 +UniRef50_E0TH65 Flagellar biosynthesis protein FlhA 0.000165651575802 8.9444736556e-05 -30765636166.7 +UniRef50_M8D633 0.000126283134174 0.0114723697259 4.58055438921e+12 +UniRef50_P0AFP5 0.00354206917723 0.000231318568035 -1.33659064841e+12 +UniRef50_W7VDK3 Transposase IS861 0.000554027410123 7.10089136183e-05 -1.95000494343e+11 +UniRef50_F9X2K4 0.00701264215171 0.00842127296826 5.68681546485e+11 +UniRef50_D0TA60 Metallo beta lactamase domain protein 3.63374607323e-05 1.91833125345e-05 -6925340132.52 +UniRef50_F8JIF8 0.000235108250449 0.00839854526208 3.29567969823e+12 +UniRef50_UPI0002F8A47D hypothetical protein 2.22647700975e-05 2.8097533159e-05 2354758023.98 +UniRef50_Q3IVG9 ABC Glycine betaine L proline transporter, inner membrane subunit 0.00358413891479 0.000417667859926 -1.27834322182e+12 +UniRef50_B3PDL9 Type IV pilus biogenesis protein PilF 7.04344071015e-06 1.69134258564e-05 3984634121.88 +UniRef50_B7US81 Predicted tail fiber protein 6.96897210206e-05 0.00011899934394 19906899869.7 +UniRef50_UPI0001BF5FA9 hypothetical protein SMAC_11727, partial 0.000270811010188 0.000348324282475 31293059217.1 +UniRef50_P76501 0.0105527000924 0.00118126682079 -3.78336261217e+12 +UniRef50_UPI0003B2EAC3 1 phosphofructokinase 9.81497312978e-06 8.63958071324e-06 -474520342.244 +UniRef50_P06208 2 isopropylmalate synthase 2.88934276931e-06 1.04075332216e-05 3035185744.16 +UniRef50_P32395 Uroporphyrinogen decarboxylase 2.81789315939e-05 0.000517486510466 1.9753947407e+11 +UniRef50_A0A011NCP8 Nitrite facilitator 1 9.53793078716e-06 6.2647177528e-06 -1321436268.81 +UniRef50_Q28V62 9.00844273449e-05 0.000138680137097 19618684363.3 +UniRef50_D3SCE5 Proteophosphoglycan ppg4 0.000156658286144 8.58129602549e-05 -28601127431.3 +UniRef50_T0HYB4 4.79318307741e-05 7.47947260969e-05 10844880486.6 +UniRef50_K7RU35 DNA repair protein RecN 9.33600961682e-05 0.00490240804962 1.94147167246e+12 +UniRef50_Q3J4R2 0.000979660569867 0.000472318782861 -2.04820105198e+11 +UniRef50_P76505 0.0011861195402 0.000191764094291 -4.01433495627e+11 +UniRef50_A1U4C6 tRNA dimethylallyltransferase 0.000754135212546 0.000182858640994 -2.30631362287e+11 +UniRef50_W5XIS1 50S ribosomal protein L22 1.06286406795e-05 0.0002321143706 89416507104.2 +UniRef50_Q65T94 ARA1 protein 0.0126717049883 0.00114171278729 -4.65479934046e+12 +UniRef50_Q8XAR8 UDP N acetylglucosamine 2 epimerase 0.00439405476616 0.00154209571462 -1.15137086658e+12 +UniRef50_Q31E54 8 amino 7 oxononanoate synthase 4.1699214476e-06 4.84113634015e-06 270977688.855 +UniRef50_Q3JR64 3.12690057201e-06 0.00178942595239 7.21150847574e+11 +UniRef50_UPI000258DCCB 1.25173663859e-06 5.54900986233e-06 1734861933.9 +UniRef50_W1DUY3 Fosmidomycin resistance protein 0.000228192575379 3.80773092347e-05 -76751865919.0 +UniRef50_UPI00041B42CD multidrug transporter 7.5873342929e-07 2.03665566778e-06 515912889.548 +UniRef50_UPI000373198D hypothetical protein 7.1376427539e-06 3.49775288082e-05 11239303633.9 +UniRef50_Q8CSM5 0.00430974994928 0.00667339196815 9.54231288167e+11 +UniRef50_Q1GIM1 Type III pantothenate kinase 0.000103693486189 4.57436743484e-05 -23395050164.2 +UniRef50_Q8CSM3 0.00803449790282 0.00136228319696 -2.69365495404e+12 +UniRef50_S5D4V1 Nucleotidyltransferase DNA polymerase involved in DNA repair 0.000506996594084 0.0121664668939 4.70707123782e+12 +UniRef50_UPI00047E5BE4 hypothetical protein 3.51881325961e-05 0.000485179158388 1.81666899123e+11 +UniRef50_R5WDX8 FAD dependent oxidoreductase 0.00032271312067 0.000199475571791 -49752510777.2 +UniRef50_X2NEQ0 4.48148080554e-05 2.59505660349e-05 -7615725993.96 +UniRef50_UPI00035C7733 hypothetical protein, partial 0.000393362236582 0.000104611618605 -1.16572167846e+11 +UniRef50_Q4A065 0.0132331569655 0.00402128347004 -3.71894637252e+12 +UniRef50_G7JG03 ATP synthase subunit a chloroplastic 2.55601913431e-06 3.24101077973e-06 276539533.049 +UniRef50_UPI0002379BDC 3 oxoacyl ACP synthase 8.06941265869e-05 1.07815826361e-05 -28224551916.3 +UniRef50_P65644 Ethanolamine utilization cobalamin adenosyltransferase 0.00740390265328 0.000215297719466 -2.90212802588e+12 +UniRef50_UPI0003B5520E CoA transferase 9.18676219661e-06 0.000145819308469 55160235599.9 +UniRef50_UPI000470029D diguanylate cyclase 6.37848269373e-06 6.70825786958e-06 133134285.287 +UniRef50_A3PP83 3.0769299594e-05 4.45649505175e-05 5569473569.49 +UniRef50_W5XDF7 UvrABC system protein C 4.28706663676e-06 1.12522389572e-05 2811925538.04 +UniRef50_P46905 0.0187137881731 0.00745368134023 -4.54584330549e+12 +UniRef50_UPI00036028EF hypothetical protein 6.22946038691e-06 6.10967123776e-06 -48360349.49 +UniRef50_B9DRH4 Haloacid dehalogenase like hydrolase 0.00703014796308 0.00333197992912 -1.49299581693e+12 +UniRef50_UPI0003C257FE PREDICTED 1.58786891769e-05 1.63767043415e-05 201054833.282 +UniRef50_UPI00037569F6 hypothetical protein, partial 0.000606467288123 0.000197378058402 -1.65154342128e+11 +UniRef50_A6LXY6 PAS PAC sensor hybrid histidine kinase 0.000304594294896 0.000539836778556 94970277403.4 +UniRef50_Q5HME3 0.00313553451473 0.0017846992784 -5.45348761519e+11 +UniRef50_P45102 Succinyl CoA ligase [ADP forming] subunit alpha 5.15193386814e-05 0.000101954187703 20361167455.2 +UniRef50_Q5HME1 0.00488604912808 0.00107575841395 -1.53826111882e+12 +UniRef50_X5ETW2 Peptidase, M50 family 0.000247802618498 0.000975145669635 2.93637315247e+11 +UniRef50_P26340 Mannose 1 phosphate guanylyltransferase ManC 0.000161981289498 1.83020976982e-05 -58005052871.6 +UniRef50_P45413 Citrate lyase alpha chain 0.00303354985921 0.00248477608632 -2.21546706327e+11 +UniRef50_C5N5E9 0.00800917853217 0.00146166549668 -2.64331135945e+12 +UniRef50_P0A603 RNA polymerase sigma factor SigA 0.000307394026764 0.0100218740245 3.92185478516e+12 +UniRef50_T1YCL4 0.0128026211644 0.00175103865894 -4.46165947564e+12 +UniRef50_Q59635 Catalase 0.00115257957366 0.00813149353868 2.81747320858e+12 +UniRef50_I0KW88 5.04408481011e-05 8.63611380439e-05 14501461841.4 +UniRef50_A5ULP8 Predicted surface protein 0.0017943588202 0.00287319834248 4.35540753994e+11 +UniRef50_C0P9U0 0.000107363767816 7.7641716853e-05 -11999156704.3 +UniRef50_A3PS37 Sulfotransferase 0.00322524232645 0.000837911192891 -9.63794874466e+11 +UniRef50_P25906 Putative oxidoreductase YdbC 0.000988048056628 0.000405032096285 -2.35370697601e+11 +UniRef50_P52074 Glycolate oxidase iron sulfur subunit 0.00291222301915 0.00024712694996 -1.07593198754e+12 +UniRef50_B7GX21 Aldehyde dehydrogenase 0.000548308921475 0.00894479032768 3.3897625801e+12 +UniRef50_A5UNW8 Putative PeiW related protein 0.00339560537233 0.00024372767966 -1.27245170242e+12 +UniRef50_B7N0I9 Zinc transporter ZupT 0.00191940539584 0.000477208159983 -5.82232721867e+11 +UniRef50_UPI0003959B2A peptide synthetase, partial 1.18912502395e-05 1.11515083073e-05 -298642895.683 +UniRef50_P0AAF2 Putrescine ornithine antiporter 0.00179473007606 0.000166063751755 -6.57512581103e+11 +UniRef50_C1DK50 0.000986243633233 0.00072459627969 -1.05630247399e+11 +UniRef50_A8LLD9 Ribonuclease 3 3.60711756531e-05 0.000104904496012 27788856108.7 +UniRef50_Q7WH65 Beta hexosaminidase 1.74417489859e-05 3.30163746599e-05 6287667506.74 +UniRef50_D6SCK6 ABC transporter, ATP binding protein 0.0119776074233 0.0053657227165 -2.66929899308e+12 +UniRef50_E0P352 0.000133584465064 2.4605116935e-05 -43996300166.7 +UniRef50_F0Y057 Expressed protein 8.81085793256e-05 0.000530170843736 1.78465960856e+11 +UniRef50_UPI00037F9362 hypothetical protein 4.56930838835e-06 0.00118298859726 4.75742327748e+11 +UniRef50_UPI000262CE64 deoxyguanosinetriphosphate triphosphohydrolase like protein 7.51483679131e-05 4.80846976467e-06 -28397080050.1 +UniRef50_K2AIZ3 ABC transporter related protein 6.60806259164e-05 0.000131134803099 26263169633.1 +UniRef50_Q8EED7 Phosphomethylpyrimidine synthase 0.000207414439285 0.0036316490367 1.38240552706e+12 +UniRef50_I6TQZ8 TetR family transcriptional regulator 0.0025522143318 0.00128892288952 -5.10006257578e+11 +UniRef50_UPI0003941799 PREDICTED 3.40757630182e-05 9.34874033554e-05 23985208266.9 +UniRef50_R5PZ37 0.000352026230842 0.000156864890773 -78789027884.8 +UniRef50_K9NJR2 Universal stress protein 0.00120520434655 0.00021848338239 -3.98351361659e+11 +UniRef50_P71838 KsdD like steroid dehydrogenase Rv0785 8.81976609493e-05 0.0105682986986 4.23094539422e+12 +UniRef50_UPI0003B5E589 ABC transporter ATP binding protein 4.38850560898e-05 4.0757998206e-05 -1262431641.01 +UniRef50_P21189 DNA polymerase II 0.00267098761014 0.000239861091619 -9.81475608804e+11 +UniRef50_Q3K742 UDP N acetylmuramoylalanine D glutamate ligase 0.000456052139785 0.000712403735486 1.03492284972e+11 +UniRef50_F3U2R3 0.000279921394165 7.39558267897e-05 -83150827031.0 +UniRef50_F0XXV4 Expressed protein 0.00016204852748 9.73360039515e-05 -26125239860.4 +UniRef50_A6LWS8 TPR repeat containing protein 0.00104235234566 0.00247788291221 5.79541305657e+11 +UniRef50_UPI00046FEF63 iron dicitrate transporter subunit FecD 2.81786032377e-05 1.50652933565e-05 -5294004117.45 +UniRef50_O67298 Methionine tRNA ligase 1.22936509793e-05 2.07437458995e-05 3411407013.61 +UniRef50_Q8H883 Putataive InsB from Escherichia coli 0.00718320690996 0.000545200071126 -2.67984481834e+12 +UniRef50_Q9JZ07 Inositol 1 monophosphatase 1.58914971407e-05 0.00177208467172 7.08996735492e+11 +UniRef50_Q9V076 Ribonuclease J 0.00323230462404 0.0014890962383 -7.03754616896e+11 +UniRef50_J4JDJ6 PF05787 domain protein 0.000114505355566 0.00226678256951 8.68900722679e+11 +UniRef50_A3PRQ7 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 0.00118625448016 9.2479135246e-05 -4.41570528873e+11 +UniRef50_B7V1A6 Ketol acid reductoisomerase 0.000822742554283 0.000561307244918 -1.05544642563e+11 +UniRef50_O66113 Pyruvate dehydrogenase E1 component subunit beta 0.0106990374148 0.00255014247724 -3.28980888448e+12 +UniRef50_F3U3I1 Trimethylamine N oxide reductase c type cytochrome TorC 0.0150598207285 0.00293506373102 -4.89491318739e+12 +UniRef50_M9VCX6 4.84864128688e-05 0.000298599419336 1.00973689942e+11 +UniRef50_A5ULX3 Adhesin like protein 0.00334876688316 0.000901763509367 -9.87885290107e+11 +UniRef50_Q9RSL9 0.00514753621162 0.0337498544379 1.15471068579e+13 +UniRef50_A6FNW8 4.76586975179e-06 3.8331287354e-06 -376558994.336 +UniRef50_S5YTE6 L arabinose isomerase 0.00312364094062 0.000484085936396 -1.06562074619e+12 +UniRef50_U8LE05 0.000958677273497 0.00026134221699 -2.81522719575e+11 +UniRef50_Q51485 Porin B 0.00276268389693 0.00864446384869 2.37454674408e+12 +UniRef50_P68188 Maltose maltodextrin import ATP binding protein MalK 0.00759831846684 0.000271486210581 -2.95793209219e+12 +UniRef50_Q1IZP1 Gamma glutamyl phosphate reductase 0.00314763498006 0.00345601726425 1.24497712404e+11 +UniRef50_UPI0004729B76 multidrug transporter MurJ 5.521866328e-05 5.42657232714e-05 -384713575.361 +UniRef50_E8U8Q1 Tellurite resistance TerB 0.000503314651798 0.100665192025 4.04365790199e+13 +UniRef50_UPI000369225C hypothetical protein 8.1909734249e-06 6.78926778378e-06 -565885768.183 +UniRef50_D5ATK1 TRAP C4 dicarboxylate transport system permease, DctM 2 subunit 9.96638334879e-06 2.51952995149e-05 6148100336.07 +UniRef50_B8I813 Energy coupling factor transporter transmembrane protein EcfT 0.000324348472666 0.00124632378201 3.72212746291e+11 +UniRef50_E1DDS4 Putative permease protein 1.21729256036e-05 6.73740933166e-06 -2194384620.27 +UniRef50_UPI00012E0EF0 UDP phosphate galactose phosphotransferase 9.77128728404e-06 1.3082297933e-05 1336695629.65 +UniRef50_UPI0001CBAFEA PREDICTED 8.50910113871e-06 7.26513639748e-06 -502203831.199 +UniRef50_E2Q3I4 Flavoprotein disulfide reductase 0.000335260977015 0.00605351063513 2.30852755779e+12 +UniRef50_R5Y4C4 7.5949657686e-06 8.65992531732e-06 429937238.342 +UniRef50_R7PXB7 0.00333521690897 0.000497417098993 -1.14565460701e+12 +UniRef50_P54458 Putative methyltransferase YqeM 1.23802129973e-05 3.64779497022e-05 9728552020.25 +UniRef50_W5WZ80 N succinyldiaminopimelate aminotransferase 0.000146501677432 0.00629618262779 2.48270166473e+12 +UniRef50_UPI000344B62A hypothetical protein 6.78356452778e-06 2.06090495523e-06 -1906595622.99 +UniRef50_Q9L6S1 ATP dependent DNA helicase Rep 0.00600284279221 0.010309517612 1.73865747359e+12 +UniRef50_Q07HH8 2.41864746106e-05 1.17179738963e-05 -5033686744.07 +UniRef50_Q87VV7 Probable nicotinate nucleotide adenylyltransferase 1.89806004332e-05 0.000280808277526 1.05703046229e+11 +UniRef50_Q97H93 Cell division protein SepF 0.000280311377865 0.000784030488532 2.03357586305e+11 +UniRef50_F4C9G0 ATPase 1.76197714348e-05 1.3833501344e-05 -1528563698.41 +UniRef50_Q0VMD9 Putative ribosome biogenesis GTPase RsgA 0.0002593346888 1.35425056951e-05 -99229320528.8 +UniRef50_R1FQ49 0.000148227482538 0.00024372767966 38554601497.4 +UniRef50_P45262 Replication associated recombination protein A 0.000138611746215 0.00209575061554 7.90120978343e+11 +UniRef50_M4TV91 IS1114 transposase, IS5 family protein 4.33246200368e-05 3.09186792086e-05 -5008430550.36 +UniRef50_F0MX83 0.000176844590442 0.000522684433979 1.39619788768e+11 +UniRef50_G4LLK3 0.00119853309102 0.000242062873115 -3.86138764178e+11 +UniRef50_A4GA34 1.43181128598e-05 2.10307879784e-05 2709989319.17 +UniRef50_G2AUL8 0.000208615555801 7.37370050492e-05 -54452126084.5 +UniRef50_H6NQR9 0.00132320002817 0.000818849088786 -2.03612663311e+11 +UniRef50_Q9RYB1 0.000207489046873 0.00525213281462 2.03658459378e+12 +UniRef50_UPI000312AE4D hypothetical protein 6.33363640698e-06 1.05649019182e-05 1708213810.35 +UniRef50_UPI000366A351 hypothetical protein 2.15533796624e-05 3.21547136285e-05 4279888615.11 +UniRef50_UPI0003B3F958 Hsp33 chaperonin 1.3023074845e-05 2.02003037443e-05 2897535381.15 +UniRef50_I1PKM1 0.000757180170735 0.000251952828095 -2.0396647806e+11 +UniRef50_Q83RK8 0.00354774107827 0.000792128302013 -1.11247469295e+12 +UniRef50_B8JEF4 4.09824530306e-05 0.000390066409537 1.40929476983e+11 +UniRef50_R5GFP8 0.000149796027328 0.00154388427373 5.62810532458e+11 +UniRef50_T2I1A7 2.16123660684e-05 0.00024628220106 90701969395.2 +UniRef50_D5AUT9 Phage terminase, large subunit 0.00482221893476 0.00049982584478 -1.74500313215e+12 +UniRef50_UPI0003A838D0 acyl CoA dehydrogenase 7.74438936189e-06 9.13366183889e-06 560866347.255 +UniRef50_P0AGE7 0.00636603080519 0.0028689498438 -1.41181449812e+12 +UniRef50_W5XIW0 Isoprenyl transferase 6.32998914491e-06 1.27660055201e-05 2598298789.47 +UniRef50_Q51687 Histidinol phosphate aminotransferase 0.00318490080755 0.00129979258688 -7.61041321564e+11 +UniRef50_UPI000299D2EC hypothetical protein 6.27701323686e-06 9.10577042822e-06 1142003990.91 +UniRef50_UPI00045E7782 xanthine dehydrogenase 1.70681781797e-05 1.41366072931e-05 -1183511141.34 +UniRef50_B3T3L8 0.00032370807636 0.00048018976455 63173577768.6 +UniRef50_Q9RSZ4 0.000232061058724 0.013768881688 5.46498060352e+12 +UniRef50_UPI0003772F6B hypothetical protein 6.99470208385e-05 7.07385685629e-05 319557529.723 +UniRef50_F9VSE4 Threonine dehydratase 1.58709056122e-05 8.43109006723e-05 27630065858.9 +UniRef50_UPI0004726CDF DNA polymerase III subunit alpha, partial 2.24852445792e-05 9.21998128758e-06 -5355349573.9 +UniRef50_C8S240 1.43100964277e-05 1.01396808755e-05 -1683647935.18 +UniRef50_A4WY94 0.00605287865868 0.00168752402968 -1.76234723265e+12 +UniRef50_UPI0003AB78D1 5.8313210298e-06 1.99508143091e-06 -1548737002.03 +UniRef50_P11072 Bacteriophage T4 late gene expression blocking protein 0.00232809749275 0.000203901062277 -8.57564165802e+11 +UniRef50_A3M3V3 0.000519331415074 0.0141037790365 5.48420820468e+12 +UniRef50_A1IQR7 DNA ligase 9.2960325562e-05 0.00294036446176 1.14953199136e+12 +UniRef50_Q8GFF2 5.00435134913e-05 0.000656701483245 2.4491526692e+11 +UniRef50_V2U4R3 0.000110269303704 0.00493008201866 1.94581753878e+12 +UniRef50_B8ITI2 Electron transfer flavoprotein alpha subunit 3.3838402116e-06 4.74875993403e-06 551034841.393 +UniRef50_U6A8L3 Sigma factor PvdS, controling pyoverdin biosynthesis 0.00104963565189 0.000708883988783 -1.37565627889e+11 +UniRef50_Q2IPT7 Tyrosine tRNA ligase 3.19228161487e-05 7.49197506507e-06 -9863030345.58 +UniRef50_UPI000366594A hypothetical protein 5.94977337556e-05 0.000136065147493 30911204513.6 +UniRef50_M9VKU7 ABC transporter permease 0.000585231817474 0.00538143105719 1.93628448906e+12 +UniRef50_X0UZB7 Marine sediment metagenome DNA, contig 0.000450920335639 9.66092397758e-05 -1.43039737286e+11 +UniRef50_Q72UH6 Phosphoribosylformylglycinamidine synthase 1 1.12120589817e-05 8.13387951903e-06 -1242698822.59 +UniRef50_P0A270 Exopolyphosphatase 0.00335710305091 0.000505068018825 -1.15140154086e+12 +UniRef50_P45360 Putative UDP N acetylglucosamine 2 epimerase 0.0228211688713 0.0153431431014 -3.018970769e+12 +UniRef50_Q01BN9 Putative histone deacetylase 1.70837191156e-06 1.77770071668e-05 6487105236.85 +UniRef50_U5AK60 9.44956799112e-06 6.99160687062e-05 24411068346.1 +UniRef50_A3CR82 0.0064341807471 0.000956486326462 -2.21141245648e+12 +UniRef50_Q5HNN4 Uroporphyrinogen III synthase 0.00948485868664 0.00109058284019 -3.38887216856e+12 +UniRef50_UPI000347D2C7 hypothetical protein 3.8660318447e-06 5.35940457728e-06 602892897.887 +UniRef50_Q6BA79 0.000209666923604 6.37929758557e-05 -58891102780.5 +UniRef50_Q8KA16 Endonuclease III 5.08997239308e-06 1.66586615096e-05 4670421760.11 +UniRef50_Q2YA02 Acetylglutamate kinase 4.6570163451e-05 1.63456003694e-05 -12202027013.1 +UniRef50_X8A848 0.000157329471649 0.000295439128552 55756563287.8 +UniRef50_A3P8Z9 AMP binding domain protein 8.14132254934e-05 0.000392451659996 1.2557003288e+11 +UniRef50_Q8TUZ5 Acetylornithine aminotransferase 9.38748652083e-06 4.83111600869e-05 15713964665.8 +UniRef50_UPI0000E0FA29 hypothetical protein 0.000123237233712 3.84743594911e-05 -34219812480.4 +UniRef50_B7V608 Anthranilate phosphoribosyltransferase 0.00131024828569 0.000475771409542 -3.36888555084e+11 +UniRef50_Q3BVS7 1.07533788181e-05 3.14675899973e-05 8362581245.0 +UniRef50_Q1DG75 4.13640603699e-06 3.47206726092e-06 -268201716.253 +UniRef50_D8JGE0 Paraquat inducible protein A 0.000569290316935 0.0050559396245 1.81131538284e+12 +UniRef50_I7AAS7 0.00145937204691 0.00213481955563 2.72686447943e+11 +UniRef50_P07023 T protein 0.00208687828214 0.00298284358995 3.61712189494e+11 +UniRef50_UPI000415AB07 hypothetical protein 5.60599196008e-05 0.000107069429761 20593165208.8 +UniRef50_A8L089 2.47191873227e-05 8.65782142323e-05 24973248259.0 +UniRef50_R5PFJ0 1.71516534797e-05 0.00379385370791 1.52470096472e+12 +UniRef50_UPI000371AE89 hypothetical protein 1.48081540801e-05 7.80331289052e-06 -2827940347.3 +UniRef50_UPI000471CA1B hypothetical protein 1.44800047927e-05 6.31105398396e-05 19632743762.2 +UniRef50_Q2GSP5 5.69840470326e-05 0.000178320165679 48984880059.0 +UniRef50_Q67JS9 50S ribosomal protein L1 0.000246722868534 0.00152745208586 5.17046101351e+11 +UniRef50_UPI000347BD58 hypothetical protein 1.50150856668e-06 5.85692250364e-05 23038937438.4 +UniRef50_F2ECI9 Predicted protein 0.000215052039164 8.34596449124e-05 -53125464379.8 +UniRef50_P26275 Positive alginate biosynthesis regulatory protein 0.000955009829538 0.000892040883023 -25421336424.0 +UniRef50_UPI00037F445F hypothetical protein 7.92275228434e-06 1.60525168196e-05 3282085706.31 +UniRef50_Q2G505 6.28004850054e-05 6.6169965823e-05 1360300754.24 +UniRef50_UPI00041221D7 hypothetical protein 2.693182296e-06 0.000204439373878 81447413245.8 +UniRef50_Q8TZ24 Shikimate dehydrogenase 7.03791767867e-06 2.84374033621e-05 8639234971.61 +UniRef50_UPI0003A57B20 cell envelope biogenesis protein AsmA 3.46969141971e-06 4.56602143568e-06 442601880.929 +UniRef50_B9KNT5 0.00112124551144 9.90855989002e-05 -4.12658500005e+11 +UniRef50_UPI000375676E hypothetical protein 3.4347237099e-05 1.89465646212e-05 -6217440466.79 +UniRef50_Q2S5X4 Osteoblast specific factor 2 related protein 0.000105522770751 1.97755386114e-05 -34617209851.6 +UniRef50_UPI000479735A cobalt ABC transporter ATPase 7.1811675981e-06 1.13326514398e-05 1676004971.33 +UniRef50_UPI000374B954 MULTISPECIES 3.8641347511e-06 0.000102575124499 39850837881.3 +UniRef50_Q5PAE7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.30288268063e-06 7.04288880134e-05 26695879810.2 +UniRef50_UPI00037730C9 hypothetical protein 0.000103626864446 0.000115644783698 4851781478.49 +UniRef50_UPI00030CFB49 DNA repair protein RecO 2.17891034493e-05 7.65086594979e-05 22090956261.3 +UniRef50_G0DX72 Galactose proton symporter 7.97505610236e-05 0.00563611284579 2.24317163859e+12 +UniRef50_A6UF25 4.89641647118e-06 8.56735118484e-06 1482001391.34 +UniRef50_UPI0003F4DAD2 valyl tRNA synthetase 3.22222034044e-06 2.38048879683e-06 -339817353.363 +UniRef50_UPI0002E6EF76 hypothetical protein 7.11779801575e-05 0.000102466264123 12631464187.3 +UniRef50_A0A014FPC4 0.000241412826739 0.00472602389292 1.81049251978e+12 +UniRef50_A3PJ57 0.00216317432904 0.00100346291254 -4.681897301e+11 +UniRef50_UPI00034D8CD9 glycoside hydrolase 5.84596530468e-05 4.15183368612e-05 -6839417237.45 +UniRef50_Q3IUW8 TraE protein 0.0543644498031 0.00594806306319 -1.95462894628e+13 +UniRef50_L0D7B2 0.00129259428552 0.000677429293665 -2.48349656135e+11 +UniRef50_U5MVQ9 D galactose binding periplasmic protein MglB 0.000448173103436 0.00417271836385 1.50364462694e+12 +UniRef50_K1YJB5 TRAP C4 dicarboxylate transport system permease DctM subunit 5.20817118718e-06 2.17330519833e-05 6671297160.48 +UniRef50_UPI0004648032 gamma aminobutyrate transporter 0.000130534049084 4.11778601541e-05 -36074189994.7 +UniRef50_R5UIW1 Ribose phosphate diphosphokinase 0.000191293575433 0.000534408280041 1.38519616741e+11 +UniRef50_V5SZP2 0.000338330271987 8.12698899949e-05 -1.03778430696e+11 +UniRef50_B1IC45 0.00648701327746 0.00293040489143 -1.43584644993e+12 +UniRef50_Y3DCZ9 0.00280399023561 0.000242394012474 -1.0341478296e+12 +UniRef50_R5TSA7 0.000115439140317 0.0013757934969 5.08820520039e+11 +UniRef50_Q0AVW1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 5.03305853913e-05 0.0164640967694 6.62643882804e+12 +UniRef50_UPI000420523B hypothetical protein 1.47264003199e-05 0.000193427272408 72143734968.2 +UniRef50_C1CER1 Mobile genetic element 2.11928801617e-05 0.00260906209998 1.04475456077e+12 +UniRef50_B2UML1 Aminotransferase class I and II 0.00249020386997 0.000248497779899 -9.05004257388e+11 +UniRef50_U3SWF7 0.00579262691103 0.0038693386554 -7.76455070199e+11 +UniRef50_UPI00037F27EC hypothetical protein, partial 9.68568966044e-05 1.50697702042e-05 -33018466568.7 +UniRef50_P44474 Rod shape determining protein MreB 0.001449768585 0.00417700638408 1.10101936646e+12 +UniRef50_F3GF13 PAS protein 0.000116568593363 0.000258716503313 57386855597.8 +UniRef50_UPI0004783EFD dihydroxyacetone kinase 4.68188491481e-05 0.00040915200243 1.46278340308e+11 +UniRef50_J2LVD6 0.000196959304303 0.00012189212742 -30305540485.5 +UniRef50_W1FRR0 Acyl CoA dehydrogenases 0.000124160488222 1.97202111862e-05 -42163821465.8 +UniRef50_W8VHA5 Exodeoxyribonuclease III 0.00354122444956 0.000678291340013 -1.15580122847e+12 +UniRef50_M9VM96 Methylaspartate mutase 0.000218411220623 0.00768536071564 3.01449914091e+12 +UniRef50_UPI000454B050 PREDICTED 0.000102904605098 0.00015261986347 20070659879.6 +UniRef50_UPI000440E201 ArfGap domain containing protein 6.17704543059e-06 0.000139458016112 53807163405.4 +UniRef50_R9SKZ5 SAM dependent methyltransferase UbiE family 0.00143286453148 0.000268469732005 -4.70080469281e+11 +UniRef50_P37641 0.000621862712346 0.000199089913611 -1.70678566855e+11 +UniRef50_P37645 0.00387970536495 0.00174572035699 -8.61515934654e+11 +UniRef50_UPI00041FC02E citrate synthase 5.60156266897e-06 7.78100631447e-06 879868144.469 +UniRef50_B9KMR2 0.00356932619299 0.00190449140493 -6.7211423376e+11 +UniRef50_S5DFR0 Isoleucine tRNA ligase 8.15034876593e-05 0.00734439548074 2.93211862331e+12 +UniRef50_P62051 L lactate dehydrogenase 3.38147255908e-06 7.75145975408e-06 1764217456.39 +UniRef50_D8HE77 Inosine uridine preferring nucleoside hydrolase 0.0105504940507 0.00492330823716 -2.27176396626e+12 +UniRef50_UPI0003FEA5A5 2 dehydro 3 deoxyglucarate aldolase 7.3338907549e-06 8.50562104595e-05 31377454224.9 +UniRef50_A3V6T8 0.000277812688782 0.000113454417794 -66353450900.6 +UniRef50_Q7T6Y8 Ribonucleoside diphosphate reductase large subunit 2.53435698004e-06 8.77604373359e-06 2519845536.52 +UniRef50_Q9K7C3 L arabinose transport ATP binding protein AraG 0.000484223709654 0.00188076913427 5.63802525459e+11 +UniRef50_UPI00040B989C alkaline phosphatase 2.51914912274e-06 6.24416977003e-06 1503836546.45 +UniRef50_A4XZ93 Elongation factor G 0.00151598623922 0.000552796376438 -3.88851567274e+11 +UniRef50_J7M1N2 LacI family transcriptional regulator 0.0058463589806 0.00269379582364 -1.27272843277e+12 +UniRef50_UPI0003624EE9 hypothetical protein 0.000826077504824 0.000252134224663 -2.31707945277e+11 +UniRef50_Q08120 Bacteroid development protein BacA 0.00196591798834 0.00701873815889 2.03988550793e+12 +UniRef50_D8JM63 0.00148202596255 0.0103315108114 3.57264562887e+12 +UniRef50_B2HNH3 PE PGRS family protein, PE_PGRS59 5.27533670295e-06 4.75711369588e-05 17075333591.1 +UniRef50_UPI0003FE4D19 dienelactone hydrolase 2.30731265665e-06 1.34073541645e-05 4481222969.53 +UniRef50_Z9W2S3 2.89351749633e-05 5.66140501122e-05 11174301555.6 +UniRef50_UPI00046A585D phenazine biosynthesis protein PhzF 1.48480432698e-05 2.42120711729e-05 3780372974.03 +UniRef50_UPI000249288F peptide ABC transporter ATP binding protein 2.71351761948e-05 9.46090156526e-06 -7135321555.67 +UniRef50_A0A029LLM4 FAD NAD binding family protein 0.000166347154043 2.49425765922e-05 -57086763146.3 +UniRef50_Q3SEU9 Phosphoribosyl AMP cyclohydrolase 2.11283600111e-05 1.97402947008e-05 -560378999.245 +UniRef50_F8JK27 6.41460811758e-05 7.38187008306e-05 3904955251.03 +UniRef50_Q88QZ8 Peptide methionine sulfoxide reductase MsrA 8.08561375296e-05 0.000118814469735 15324244512.4 +UniRef50_D8JGI7 MJ0042 family finger like domain protein 0.000145186918795 0.00575316778636 2.2640106939e+12 +UniRef50_Q49YQ5 0.021690212582 0.00587832984961 -6.38345109269e+12 +UniRef50_B9DPJ4 Signal recognition particle receptor FtsY 0.0217904047944 0.00418360597676 -7.10808074238e+12 +UniRef50_UPI0004686D1F hypothetical protein 1.03940310952e-05 0.000394884657073 1.55223583938e+11 +UniRef50_Q89AJ2 Thioredoxin reductase 7.82410790355e-05 3.30996253722e-05 -18224158791.8 +UniRef50_A6LYH8 Cation diffusion facilitator family transporter 0.000361230611344 0.00161556950029 5.06392001938e+11 +UniRef50_D5AMX5 0.00016274326939 7.70205648058e-05 -34607307776.5 +UniRef50_UPI0004747720 peptide ABC transporter 1.03074359415e-05 5.94822246265e-05 19852465634.7 +UniRef50_UPI00047E1486 hypothetical protein 2.39890909808e-05 6.21370992618e-05 15400819071.7 +UniRef50_R4NJW9 Low specificity L threonine aldolase 0.0164907866256 0.00527777341219 -4.5268310334e+12 +UniRef50_H4JD68 Dienelactone hydrolase family protein 0.000351149757071 0.000578641212619 91841092238.8 +UniRef50_Q5H5C1 Phosphinothricin acetyltransferase 0.000212468661645 0.00411624696069 1.57600320407e+12 +UniRef50_B2IQF0 0.000269518708112 0.000330305531007 24540386340.9 +UniRef50_UPI00026CA133 hypothetical protein 0.000216511834094 9.10804851429e-05 -50638174787.3 +UniRef50_UPI000368DDFC hypothetical protein 5.42936899248e-06 8.85508898254e-06 1383005198.3 +UniRef50_G8DCQ6 4.56399245966e-05 1.03227427633e-05 -14257979696.7 +UniRef50_UPI0003672F43 hypothetical protein 1.30716766001e-05 0.000364635141302 1.41930484869e+11 +UniRef50_P39161 Uxu operon transcriptional regulator 0.00287373611105 0.00035723794984 -1.01594118859e+12 +UniRef50_UPI0002D2FE43 hypothetical protein 0.000955833738743 0.000258940421357 -2.81344384071e+11 +UniRef50_UPI0004786318 hypothetical protein 0.000536924207238 4.1849157279e-05 -1.99867872922e+11 +UniRef50_B9L7V8 Acyl carrier protein 2.26712905155e-05 0.000513143114561 1.98009494133e+11 +UniRef50_UPI00036E7E1F hypothetical protein 4.78428505846e-06 0.000543272156887 2.17394161847e+11 +UniRef50_UPI00035EB162 hypothetical protein 5.5716660629e-05 4.05804588527e-05 -6110670399.18 +UniRef50_D6SCJ9 Quinone oxidoreductase, YhdH YhfP family 0.0214088430145 0.00508140959083 -6.59158523329e+12 +UniRef50_R5IBX6 1.49881332125e-05 1.49608535524e-05 -11013133.5414 +UniRef50_A5UP26 0.00114763408026 0.000440771201791 -2.85369218221e+11 +UniRef50_Q0B215 DEAD DEAH box helicase domain protein 0.000679280080716 0.000319879866729 -1.45094276723e+11 +UniRef50_T0QM98 5.11668441524e-06 7.18591037925e-06 835371913.929 +UniRef50_A3K9M4 Transposase orfA IS5 family element 2.92464930602e-05 5.86066281138e-05 11853046810.5 +UniRef50_A1TL08 Phosphoribosyl ATP pyrophosphatase 1.54711900322e-05 0.000134216353082 47938879490.3 +UniRef50_UPI00016A61F3 ABC transporter related protein 0.000212555823696 0.000241869153529 11834150968.6 +UniRef50_L3AZC3 Diguanylate cyclase YdeH 0.000467479389619 0.000364588524928 -41538304688.7 +UniRef50_K4NAI3 0.00017055089858 0.00201378883874 7.44137775516e+11 +UniRef50_Q6G956 Maltose operon transcriptional repressor 0.0112377751268 0.00165632591667 -3.86814862373e+12 +UniRef50_A9G862 Phosphoglucosamine mutase 4.72781120293e-06 5.48691046475e-06 306457687.192 +UniRef50_P0AB86 Thiamine biosynthesis lipoprotein ApbE 0.00344699539116 0.000380543256776 -1.23796435625e+12 +UniRef50_UPI00036588E1 chromosome partitioning protein ParA 7.49391355456e-06 2.37405676355e-05 6558973621.32 +UniRef50_P46926 Glucosamine 6 phosphate isomerase 1 1.08646064161e-05 9.73035413219e-06 -457911565.855 +UniRef50_UPI000470FD75 hypothetical protein 3.51318179187e-06 0.000169973426916 67202043653.5 +UniRef50_F7Z394 Bis tetraphosphatase, ApaH 3.7156450053e-05 0.000159842683594 49529938009.9 +UniRef50_B4S1N2 Thymidylate kinase 0.0013312894856 0.00147001986999 56007158591.5 +UniRef50_UPI00036DAC41 hypothetical protein 5.38907131149e-05 6.96992693949e-05 6382108163.04 +UniRef50_P33358 HTH type transcriptional regulator MlrA 0.00375415879462 0.000959613540458 -1.12819221203e+12 +UniRef50_I3R9M8 Respiratory nitrate reductase subunit beta 1.081078446e-05 3.2289311724e-05 8671145027.65 +UniRef50_Q119B3 Acyl carrier protein 3.90957602786e-05 0.000141098069814 41179584068.4 +UniRef50_G2SPG8 Primosomal protein n 0.000543525626661 0.000170441393493 -1.50618683188e+11 +UniRef50_A5W8P2 Protein translocase subunit SecA 0.00128189170512 0.000599954631425 -2.7530636496e+11 +UniRef50_M1F9S3 Hydrogen peroxide inducible genes activator 0.000845625339297 0.000542428114656 -1.22404440236e+11 +UniRef50_UPI000375B204 hypothetical protein 5.54064586374e-06 2.23487966338e-05 6785656725.09 +UniRef50_F4GVQ8 ABC transporter protein 0.00671681162303 0.00264386164072 -1.64429988858e+12 +UniRef50_Q2RKD5 Flagellar biosynthetic protein FliP 0.000949038838322 0.00233864205726 5.60999871835e+11 +UniRef50_A5F3I6 Phosphoadenosine phosphosulfate reductase 1.01669637716e-05 1.57657967483e-05 2260317578.1 +UniRef50_A6LSK1 Probable dual specificity RNA methyltransferase RlmN 0.000280207633198 0.000786546749325 2.0441531466e+11 +UniRef50_A8IHY5 C4 dicarboxylate binding protein 0.0143850533664 0.00281301284109 -4.67177476497e+12 +UniRef50_A3VGU5 0.00314735908656 0.00137139342748 -7.1697913012e+11 +UniRef50_Q8FQS8 5.7396550747e-05 0.00094675041122 3.59043067072e+11 +UniRef50_UPI000377BBC9 hypothetical protein 3.71488997065e-05 3.6272139982e-05 -353958659.832 +UniRef50_A4WUT7 Phage SPO1 DNA polymerase related protein 0.00125853214858 0.000567416347288 -2.79011929926e+11 +UniRef50_UPI0001C3962F S1 RNA binding domain protein 0.000546853994325 0.000254438502187 -1.18051722518e+11 +UniRef50_UPI00026276D0 aryldialkylphosphatase 0.000178192867389 0.000190545617046 4986956621.82 +UniRef50_P13016 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 0.00376029037006 0.000909924006954 -1.15072787872e+12 +UniRef50_G7MAE0 0.000615707367459 0.000718694309658 41577092357.6 +UniRef50_P31125 Probable amino acid metabolite efflux pump 0.00237244834786 0.000444845840262 -7.78196786661e+11 +UniRef50_UPI00022CAAD4 PREDICTED 5.76073384891e-06 1.3924001485e-05 3295611319.25 +UniRef50_A6LQD1 Transcriptional regulator 0.00021049404583 0.00171695789281 6.08177941416e+11 +UniRef50_U6Z4K6 1.89163041696e-05 2.01702655526e-05 506239598.154 +UniRef50_A0A059IRR6 2.4665115535e-05 6.88274019879e-06 -7178963137.51 +UniRef50_P58219 Inner membrane protein YjgN 0.00187377978863 0.00196702134066 37642758757.0 +UniRef50_A0A011M3E9 Putative hydrolase of the alpha beta hydrolase fold protein 7.11002243818e-05 3.07953615794e-05 -16271567709.6 +UniRef50_P75976 0.00410062560927 0.00252501269969 -6.36094266542e+11 +UniRef50_F8KLB6 0.0104776619413 0.000540213485111 -4.01186988797e+12 +UniRef50_UPI0004409E56 PREDICTED 2.36548947869e-05 7.92658942225e-05 22450842895.9 +UniRef50_R9SM81 NMD3 family protein 0.00250138011209 0.00113499109971 -5.51628011777e+11 +UniRef50_UPI0003621607 hypothetical protein 2.29177250673e-05 1.87675553172e-05 -1675474456.43 +UniRef50_H0DMI5 GA module 0.0092163534855 0.00530479974748 -1.5791422442e+12 +UniRef50_B1VGA4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.29729050126e-06 6.6618662258e-06 954608236.604 +UniRef50_UPI000255A1B0 sulfate ABC transporter, inner membrane subunit CysT 4.3519338608e-05 8.08582239535e-06 -14304945313.2 +UniRef50_Q9RTQ6 Daunorubicin C 13 ketoreductase 9.42144730903e-05 0.00445955478839 1.76234145404e+12 +UniRef50_G7M7W5 Heat shock protein DnaJ domain protein 0.000178621130367 0.000635158908179 1.84309903251e+11 +UniRef50_Q59998 Zinc transporting ATPase 6.03961704725e-06 1.23506521367e-05 2547842310.72 +UniRef50_I3G3U5 0.0087597689592 0.000705171643859 -3.25173977723e+12 +UniRef50_F3Z677 Putative GTP dependent nucleic acid binding protein EngD 1.69814558057e-05 5.36170720414e-05 14790247843.9 +UniRef50_A0A024JBZ5 Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl tRNA bond 3.39451880327e-06 1.97286636465e-05 6594294715.7 +UniRef50_Q5LSI1 ABC transporter, permease protein 0.00621612708683 0.00086919200598 -2.15862330641e+12 +UniRef50_V4IUE3 0.00010315645238 5.32492433079e-05 -20148152732.7 +UniRef50_B2HQA4 Imidazoleglycerol phosphate dehydratase 0.000280203910878 0.00547463029235 2.09705367298e+12 +UniRef50_D8J0P8 Quinohemoprotein alcohol dehydrogenase protein 2.03003627687e-05 2.05273948792e-05 91655649.0061 +UniRef50_A0A023VQ43 Phosphatidylethanolamine binding protein 4.26538898029e-05 7.71788265224e-06 -14104094799.8 +UniRef50_UPI0003619783 hypothetical protein 0.000183209910815 9.25604774978e-05 -36596288623.8 +UniRef50_S9RV98 2.9672383764e-05 1.92457967002e-05 -4209341146.27 +UniRef50_B2HWV5 Periplasmic serine protease 0.000200435038326 0.00528682380956 2.05343756395e+12 +UniRef50_C3DVF3 8.19058504845e-06 0.000120732048569 45434369862.5 +UniRef50_Q4WWN8 Sulfate adenylyltransferase 0.0107301470245 0.00317099974435 -3.05172051816e+12 +UniRef50_B2A2N1 Ribonuclease 3 1.67207751478e-05 3.774531247e-05 8487863717.06 +UniRef50_UPI000473A452 hypothetical protein, partial 1.05582610668e-05 1.90789829071e-05 3439919967.94 +UniRef50_UPI00042382C9 hypothetical protein 3.4606272488e-06 1.29922261312e-05 3848023434.7 +UniRef50_E0XTA9 0.000225785656794 0.00023139536678 2264708760.23 +UniRef50_UPI00026292D6 TRAP dicarboxylate transporter subunit DctM, partial 3.80935032354e-05 7.92803232846e-05 16627624673.0 +UniRef50_UPI0003B7A748 hypothetical protein 2.65686863385e-05 0.000294723584244 1.08257422915e+11 +UniRef50_Q6FDS1 Leucyl phenylalanyl tRNA protein transferase 0.000659803906303 0.00659114390271 2.39455474228e+12 +UniRef50_V2J6J5 3.09497615159e-06 4.44521405757e-06 545107611.926 +UniRef50_A0A022H255 Methylhydantoinase 2.27711027447e-06 4.36558018335e-06 843140930.623 +UniRef50_W4WUV4 8.994143814e-05 2.20023027663e-05 -27427862657.3 +UniRef50_O06844 Nitric oxide reductase subunit C 0.019246131115 0.00373190347592 -6.26328407889e+12 +UniRef50_C5YNI9 0.00195262885533 0.00124957710367 -2.8383061956e+11 +UniRef50_UPI00020D97D1 large conductance mechanosensitive channel protein MscL 0.00039352707688 8.81688854646e-05 -1.23276849041e+11 +UniRef50_A6LY57 0.000200775710763 0.00272581052311 1.01938753941e+12 +UniRef50_A6LY56 0.000508573831134 0.0014894868116 3.9600660737e+11 +UniRef50_G8V949 ABC transporter, molybdenum transport system 0.000477306289807 0.00553267193172 2.04091314595e+12 +UniRef50_Q9KIP8 D tagatose 1,6 bisphosphate aldolase subunit KbaY 0.00321271779445 0.00266264123273 -2.22072658165e+11 +UniRef50_P20576 Anthranilate synthase component 2 0.00101587443054 0.00370458718065 1.08546633144e+12 +UniRef50_UPI0004724CFA hypothetical protein 2.41313566924e-05 2.16217316425e-06 -8869228982.49 +UniRef50_F7ZHD8 0.000278621984047 5.76240456472e-05 -89219579681.7 +UniRef50_H8FVA2 Transposase 0.000144376803346 7.15292622965e-05 -29409446261.5 +UniRef50_K7RQ56 Cell cycle protein, FtsW RodA SpoVE family 0.000251540005745 0.00412506337596 1.56378891803e+12 +UniRef50_D3QHZ6 3.75615311622e-05 5.9894085134e-05 9015926089.67 +UniRef50_UPI000374CE3A hypothetical protein, partial 9.65932242645e-05 4.5022694151e-05 -20819655848.4 +UniRef50_P72371 Cap8E 0.0298456966409 0.00745154278838 -9.04079471742e+12 +UniRef50_U5NN01 0.000588657486979 0.00118126682079 2.39243660194e+11 +UniRef50_A6LV36 Integral membrane sensor signal transduction histidine kinase 0.00022548951745 0.00220164270456 7.97797291763e+11 +UniRef50_Q1GCT8 Butyryl CoA dehydrogenase 0.000150392824239 0.000621333551003 1.90124550487e+11 +UniRef50_R4ZMT7 Additional lipoprotein component of predicted cobalamin ECF transporter 0.00286715376256 0.000864341576184 -8.08559856911e+11 +UniRef50_D6SCB6 Transporter, major facilitator family protein 0.0201908765071 0.00585977767828 -5.78564045955e+12 +UniRef50_A0A009KXU9 0.000856704583993 0.00673882369338 2.37468366618e+12 +UniRef50_Q2Y6A7 DedA 0.00072274974554 0.00630212612732 2.25246271197e+12 +UniRef50_UPI00040856F2 hypothetical protein 4.18592294051e-05 8.72697745955e-06 -13375896688.9 +UniRef50_G7M3S1 Transcriptional regulator, TetR family 0.00120247925878 0.00067296182176 -2.13772687235e+11 +UniRef50_Q4I1N3 Sulfate adenylyltransferase 9.68744081644e-05 5.10222332665e-05 -18511085675.7 +UniRef50_P76121 0.00833075965547 0.000456675317307 -3.1788644732e+12 +UniRef50_P76123 0.00203736621546 0.000440883819306 -6.44519534368e+11 +UniRef50_Y5PB14 0.00125137296672 0.00131251868976 24685278733.6 +UniRef50_L0GW54 Exopolyphosphatase 2.95460731849e-06 1.911798982e-05 6525355862.86 +UniRef50_R5S9I0 2.3867989663e-05 0.00408832865663 1.6408726478e+12 +UniRef50_O35008 Putative protein YtqA 0.0318279159764 0.00959661938576 -8.97504724231e+12 +UniRef50_R6G2T1 Dihydroxyacetone kinase L subunit 0.000184740288181 0.000873555359152 2.78083096862e+11 +UniRef50_X9N846 0.00716955519116 0.00383507617837 -1.34617009612e+12 +UniRef50_D5WIU5 RND efflux system, outer membrane lipoprotein, NodT family 7.82624717782e-05 0.00800896019677 3.20171999218e+12 +UniRef50_UPI0003B5B66A single stranded DNA binding protein 1.81003046964e-05 8.86394760128e-05 28477529073.4 +UniRef50_Q1AVX4 UDP N acetylmuramate L alanine ligase 4.14154932133e-06 5.45919075122e-06 531948014.525 +UniRef50_Q5E715 Methionine import ATP binding protein MetN 0.000709196778935 1.00549448677e-05 -2.82252137848e+11 +UniRef50_Q9PDT8 Enolase 0.00708847917128 0.0174609156404 4.18747988668e+12 +UniRef50_Q9Z3U1 DNA translocase FtsK 0.00073754896499 0.000244590306005 -1.99013459915e+11 +UniRef50_A1WTJ3 Dihydroorotate dehydrogenase 1.17973315594e-05 1.92139002457e-05 2994159790.19 +UniRef50_H2JB32 Terminase like family 0.00047380356794 0.00209457710738 6.54326167e+11 +UniRef50_UPI0003812972 hypothetical protein 1.58488484792e-05 1.17149505207e-05 -1668905334.48 +UniRef50_N1MA35 0.000403755792815 0.000143689554452 -1.04991931799e+11 +UniRef50_H8ZPX2 3 succinoylsemialdehyde pyridine dehydrogenase 0.00681615975786 0.00150922056954 -2.14247647379e+12 +UniRef50_Q9JXS7 Chromosomal replication initiator protein DnaA 7.29206675159e-05 0.0019026398556 7.38680089407e+11 +UniRef50_N9DK24 7.97875854232e-05 2.2566372817e-05 -23100905712.4 +UniRef50_D5RTD5 1.61208480771e-05 3.12951140438e-05 6126037379.94 +UniRef50_UPI00047C92E9 chromosomal replication initiation protein 6.80686735317e-06 8.35579829301e-06 625322427.933 +UniRef50_P0DKR8 Spermidine N acetyltransferase 0.0115619509848 0.00135578050752 -4.12035626548e+12 +UniRef50_UPI000475FA76 hypothetical protein 1.40828212188e-05 4.92898527894e-05 14213510683.9 +UniRef50_UPI0003631E18 hypothetical protein 2.13458069458e-05 0.000513934948797 1.98864281314e+11 +UniRef50_A6E2Z7 1.8566465968e-05 1.75415932817e-05 -413753680.061 +UniRef50_I0G8T6 0.000395491838906 1.78703158228e-05 -1.52450442806e+11 +UniRef50_U1SML3 4.73797237908e-05 0.00157433376093 6.16450082627e+11 +UniRef50_F9NW45 Trehalose utilization 0.000232537570129 0.00616345902754 2.39438577295e+12 +UniRef50_Q9RTI6 3 isopropylmalate dehydratase large subunit 2 0.000504016906207 0.0441915962531 1.76372118892e+13 +UniRef50_E0RLY4 Short chain type dehydrogenase reductase 0.00016629338716 0.00165459953099 6.00847453834e+11 +UniRef50_U4JC67 0.000119423332984 2.41981232351e-05 -38443585720.4 +UniRef50_M1LR29 Phage late control gene D protein GPD 0.000607658354639 0.00273424158235 8.58527745137e+11 +UniRef50_W4HIE7 8.65895119189e-05 7.51196124739e-05 -4630539157.44 +UniRef50_P45260 Acetolactate synthase small subunit 0.000265606252909 0.000347344409226 32998696745.1 +UniRef50_UPI0000379465 hypothetical protein 0.00102365695748 0.000401791435631 -2.51054742319e+11 +UniRef50_G7M1N6 Phage tail tape measure protein, TP901 family 0.000230585659666 0.00174424655247 6.11083477131e+11 +UniRef50_R9YLQ5 LXG domain of WXG superfamily protein 0.000333282140349 0.000658161901382 1.31157946252e+11 +UniRef50_Q4L5B7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0142730581574 0.00636472446656 -3.19269135716e+12 +UniRef50_Q9LD57 Phosphoglycerate kinase 1, chloroplastic 5.78880574924e-06 4.43299766839e-05 15559543659.7 +UniRef50_H3VIV1 Transposase, IS4 like family protein 0.00418770192483 0.00100962976135 -1.28302673173e+12 +UniRef50_UPI0003823D63 hypothetical protein 5.18225623424e-05 0.000135598700073 33821454850.7 +UniRef50_U5P976 Magnesium transporter 0.00880023222741 0.00059187957924 -3.31381269188e+12 +UniRef50_UPI00026263A2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.75423002605e-05 4.20471360329e-05 -2218465231.93 +UniRef50_J7QFY9 Lysine , arginine , ornithine binding periplasmic protein 0.00293579100811 0.00161118574196 -5.34759400679e+11 +UniRef50_Q6GK28 Protein EsaA 0.0120703165844 0.0023850349728 -3.91006703837e+12 +UniRef50_B7H3M8 MotA TolQ ExbB proton channel family protein 0.000735708108644 0.00890439824847 3.29780045055e+12 +UniRef50_A1B5F3 0.00241560117097 0.00037381861418 -8.24292673666e+11 +UniRef50_U5LD58 Asparaginase 0.02092799312 0.00432627025036 -6.70231924851e+12 +UniRef50_P39280 L lysine 2,3 aminomutase 0.00301452340411 0.000516378222061 -1.00853186568e+12 +UniRef50_UPI000380B87F hypothetical protein 4.2161090402e-06 4.10340899236e-06 -45498392.2981 +UniRef50_L0GSA6 Type II secretory pathway, component ExeA 0.000367105546411 0.000138972567152 -92100083233.3 +UniRef50_R1B4D2 3.92656682586e-05 8.2153907676e-05 17314508550.7 +UniRef50_Q8D335 Glutathione synthetase 5.27277228925e-05 8.64010558553e-06 -17798712122.7 +UniRef50_U5NRL5 0.0268686315762 0.010024039437 -6.80036855299e+12 +UniRef50_J7L4M3 5.65104544586e-05 0.00157301845136 6.12232887994e+11 +UniRef50_L0NCJ2 0.000200649964896 2.78857245642e-05 -69747043877.7 +UniRef50_UPI00036B778B hypothetical protein 6.25968339341e-05 0.000278228713541 87053235898.1 +UniRef50_Q8CWR6 Alpha monoglucosyldiacylglycerol synthase 0.00418503997781 0.00594243999149 7.09483951246e+11 +UniRef50_B9KQ22 Lysine exporter protein 0.000829856265178 0.00187721433139 4.22831303858e+11 +UniRef50_A1SNL2 30S ribosomal protein S3 0.0173619141814 0.00434943766922 -5.25329644902e+12 +UniRef50_M0X3J8 6.53508961172e-05 0.00190569323248 7.42968784729e+11 +UniRef50_B3A0N5 Apyrase 9.70515907713e-06 5.14838127097e-06 -1839627118.3 +UniRef50_S4JHM6 0.000855062237382 0.000359081748679 -2.00233409654e+11 +UniRef50_UPI0001F85C4F L alanine dehydrogenase like protein 5.68994138396e-05 0.00115830354983 4.44650365448e+11 +UniRef50_W0E372 Sensor histidine kinase 0.000750315914886 0.000826984538403 30952064143.6 +UniRef50_UPI0003B51C09 sugar ABC transporter permease 1.645191136e-05 0.000109049421513 37382751148.0 +UniRef50_UPI0000164CD9 putative transposase 0.00104009031306 0.224490351769 9.02096125928e+13 +UniRef50_A5UNF8 Transporter 0.00555748880488 0.00128402657247 -1.7252491445e+12 +UniRef50_U3SVD1 Glucosyltransferase 0.00591138245052 0.00169724332695 -1.70129967749e+12 +UniRef50_R4W4T4 0.00116557837691 0.000699750546659 -1.88060411423e+11 +UniRef50_UPI00046B847F PREDICTED 4.57991772569e-05 7.8698535773e-05 13281874753.5 +UniRef50_Q9KDD8 Uridine kinase 1.9242592149e-05 0.000553294454599 2.15603290424e+11 +UniRef50_UPI00024931AE DNA primase 2.5629783988e-05 8.38050006709e-05 23486048865.1 +UniRef50_N1MTW2 Zn dependent hydroxyacylglutathione hydrolase Polysulfide binding protein 0.0128601120247 0.00189599563013 -4.42634833334e+12 +UniRef50_B9DXD9 0.000521870030673 0.00935843604362 3.56743013629e+12 +UniRef50_UPI0004137D5A hypothetical protein 5.15221984775e-06 5.55916322277e-06 164288034.252 +UniRef50_B7J5S3 3 isopropylmalate dehydratase small subunit 2.79143686323e-05 4.75346164294e-05 7920934803.2 +UniRef50_UPI0004561650 hypothetical protein PFL1_00576 4.92007997764e-05 8.13719612646e-06 -16577880700.5 +UniRef50_I0TVV6 0.000394338795662 1.7073855617e-05 -1.52306485858e+11 +UniRef50_A4WT53 PAS PAC sensor hybrid histidine kinase 0.00817877758137 0.00177756860026 -2.58424661734e+12 +UniRef50_D1GN02 Phage protein 0.00129411856802 0.00552826745699 1.70937786533e+12 +UniRef50_B9KPL9 Serine alanine racemase VanTc3 0.00690152201695 0.00105136240652 -2.36178122426e+12 +UniRef50_A1A0Q3 ATP binding protein of ABC transporter for glutamate_aspartate 0.000822898073514 0.0145034286963 5.52299809141e+12 +UniRef50_U6IFI6 Succinate dehydrogenase iron sulfur 1.56075853534e-05 3.63080855119e-05 8357045937.69 +UniRef50_UPI0002FDF659 hypothetical protein 0.000224736170172 8.22763072484e-05 -57512794841.5 +UniRef50_A3M3T0 Merops peptidase family S24 0.000214887659684 0.00497104478521 1.92011899619e+12 +UniRef50_Q8XBL0 Pyridoxine kinase 0.0047296818035 0.00128831036566 -1.38932387983e+12 +UniRef50_I8G444 QmcA domain protein 0.000153135691294 4.92535906739e-05 -41938478797.0 +UniRef50_UPI00040A034C hypothetical protein 0.000117410236328 3.18644624967e-05 -34535878660.4 +UniRef50_UPI00046A4743 hypothetical protein 4.77346887315e-06 6.33420663349e-05 23644861512.8 +UniRef50_D7GH22 Sugar phosphate isomerase epimerase 0.000183245625651 0.00516893139385 2.01278252587e+12 +UniRef50_Q3HKP9 Capsule polysaccharide export protein 0.0167435587439 0.00428559219853 -5.02943397082e+12 +UniRef50_G8WJH0 SD repeat containing cell surface protein 5.89785219924e-06 4.9981671354e-06 -363213900.649 +UniRef50_M2IQZ0 9.40609324575e-05 9.5993694535e-05 780279768.345 +UniRef50_UPI00036C3395 hypothetical protein 1.25206527223e-05 1.71480064877e-05 1868119499.11 +UniRef50_B7V5N6 ATP dependent DNA helicase RecG 5.97918672899e-05 0.000285566237096 91147883653.8 +UniRef50_UPI000467A2E7 hypothetical protein 8.3421315248e-06 8.32340687593e-06 -7559370.5261 +UniRef50_O25890 Chaperone protein DnaJ 0.000149598146176 0.00576404844868 2.26662248417e+12 +UniRef50_UPI000370079F hypothetical protein 1.60036673401e-06 2.68153547889e-06 436481089.741 +UniRef50_A0A037YH66 UDP pyrophosphate phosphatase 0.00110309795144 0.00234468534782 5.01244067909e+11 +UniRef50_UPI00035FC7A0 hypothetical protein, partial 1.14066281251e-05 1.29698171571e-05 631078594.705 +UniRef50_Z2DJY9 Membrane protein 4.35541143537e-05 7.85753266549e-06 -14411148073.8 +UniRef50_Q2RRZ4 ABC transporter component 0.00116755043878 0.000636426744807 -2.14421152878e+11 +UniRef50_W0DT44 Phosphate starvation inducible E 3.44221149706e-05 2.26576702423e-05 -4749450702.79 +UniRef50_UPI00016C3CBF tRNA pseudouridine synthase D 1.11517199679e-05 3.89456828263e-05 11220763876.2 +UniRef50_P71243 Putative colanic acid biosynthesis glycosyltransferase WcaL 0.00266901998859 0.00040551752795 -9.13803719659e+11 +UniRef50_UPI0003B6E3CF 3 ketoacyl ACP reductase 5.50152188711e-06 1.59382655432e-05 4213441487.21 +UniRef50_K1DU50 8.1572464485e-05 9.50415732837e-05 5437644506.59 +UniRef50_UPI0003ADCF18 PREDICTED 1.29394338211e-05 4.28829839684e-05 12088578643.1 +UniRef50_C8S4J7 Rhodanese domain protein 7.3414245391e-05 0.000482268201838 1.6505935942e+11 +UniRef50_Q6A9E9 Conserved protein DUF181 1.87411528866e-05 0.000187368131423 68076780520.7 +UniRef50_Z4JX05 Aryl phospho beta D glucosidase BglA 0.00741555694237 0.000916473200507 -2.62375985931e+12 +UniRef50_UPI00046D6223 hypothetical protein 9.24800655398e-07 5.91317081203e-05 23498842822.7 +UniRef50_K1YN95 0.00014837500546 0.000388327019228 96871572500.5 +UniRef50_E2XQ21 Transcriptional regulator, GntR family 0.000546015685656 0.000891123966912 1.39324448098e+11 +UniRef50_G3Z0X9 6.51092115584e-05 0.000180156244632 46445899037.8 +UniRef50_D8HEX2 0.0158601268871 0.00607171340058 -3.95170264185e+12 +UniRef50_P45077 Metalloprotease PmbA homolog 0.00268092204155 0.00154816858413 -4.57306471209e+11 +UniRef50_B6ISJ0 Peptidase M20D, amidohydrolase, putative 0.00409085510496 0.00126918829327 -1.13914151762e+12 +UniRef50_D4TZ64 Tat pathway signal sequence domain protein 1.07574370492e-05 0.00159110723982 6.38006608451e+11 +UniRef50_UPI0002EED4E0 hypothetical protein 3.03748642464e-05 0.000530679800708 2.01979242282e+11 +UniRef50_Q7VDQ5 Imidazoleglycerol phosphate dehydratase 2.89900469797e-05 2.96656052923e-05 272731180.829 +UniRef50_UPI00037AD56D hypothetical protein 0.00174576034116 0.00140627002474 -1.37056406753e+11 +UniRef50_V9U275 Two component hybrid sensor and regulator 0.000384996737874 0.000186284030768 -80222758337.8 +UniRef50_UPI00033433B7 4.19559761385e-05 2.37401923471e-05 -7353935449.39 +UniRef50_A5CXT4 Adenylate kinase 8.61323099979e-06 1.40693834537e-05 2202715700.16 +UniRef50_Q65JY3 Phospho N acetylmuramoyl pentapeptide transferase 0.0151481888935 0.0119667640595 -1.28438024596e+12 +UniRef50_UPI0003650BE9 hypothetical protein 1.28141903458e-05 9.78084798547e-05 34313237672.0 +UniRef50_L7WTJ0 Lipase 0.00959269125166 0.00313940842354 -2.6052694684e+12 +UniRef50_A6LZ86 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000591901940935 0.000195573976954 -1.6000246255e+11 +UniRef50_P13522 Sucrose 6 phosphate hydrolase 0.00377287916303 0.00496639246154 4.81835964664e+11 +UniRef50_U4V9A4 0.000110523066742 2.74657171253e-05 -33531271268.6 +UniRef50_U5MRD6 Glycosyl transferases group 1 0.000221584936159 0.000438521638986 87580009044.0 +UniRef50_UPI000362B65E hypothetical protein 3.29133315166e-06 5.12265992425e-06 739329091.001 +UniRef50_O34527 HTH type transcriptional regulator CymR 0.0192150299721 0.0110022922138 -3.31558301465e+12 +UniRef50_R6AX85 7.9049456172e-06 1.24244419472e-05 1824576128.88 +UniRef50_A7NI79 Thymidine kinase 5.94286941918e-06 3.02363779631e-05 9807587514.05 +UniRef50_Q49UR2 0.0016474594 0.00279498896508 4.63271767194e+11 +UniRef50_UPI0003F49ED6 hypothetical protein TREMEDRAFT_39067 2.6118484446e-05 6.48259576322e-05 15626681919.4 +UniRef50_Q3JRJ0 4.49190764047e-05 3.27916737367e-05 -4895981277.04 +UniRef50_A0A017TDI9 0.000228302484785 0.000595153886827 1.48102412777e+11 +UniRef50_U5RXJ0 ApbE family lipoprotein 0.000278271246844 0.000980471241071 2.83486754632e+11 +UniRef50_Q9KIP9 Putative tagatose 6 phosphate ketose aldose isomerase 0.0031908793394 0.000430670465334 -1.11433019403e+12 +UniRef50_R4ZN50 Accessory secretory protein Asp1 0.000420737103937 0.000958713139362 2.17187527209e+11 +UniRef50_A7GMU8 Imidazole glycerol phosphate synthase subunit HisH 0.00182852442582 0.0015499185642 -1.12476605214e+11 +UniRef50_F2A3T6 2.63248153318e-05 3.7530751246e-05 4523973840.86 +UniRef50_F2A3T7 4.16371803198e-05 9.35014067362e-05 20938224649.9 +UniRef50_F6G911 Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein 0.0083617128912 0.00239065456961 -2.41058951755e+12 +UniRef50_R6MA81 0.00636656717431 0.00231599442465 -1.63526592515e+12 +UniRef50_UPI0003A6077C MULTISPECIES 2.27496268005e-05 2.05080173783e-05 -904965231.383 +UniRef50_G7M9L8 RNA polymerase sigma factor, sigma 70 family 0.000342132316185 0.00364988728217 1.33538127049e+12 +UniRef50_UPI00037595E9 hypothetical protein 0.000804680106966 0.000144089306556 -2.66688612486e+11 +UniRef50_UPI00029AD5DC sugar acetyltransferase 0.000163192216292 0.000315548488631 61508096765.0 +UniRef50_A8FSI3 Lipoprotein signal peptidase 1.2914898066e-05 3.35849165438e-05 8344740109.14 +UniRef50_I6X4E6 0.000703390041336 0.00369249614578 1.20673881482e+12 +UniRef50_Q7NKY2 Gll1344 protein 6.20708487245e-05 2.42179461209e-05 -15281681288.4 +UniRef50_K2JVH5 0.000401853519558 8.09797553478e-05 -1.29540676175e+11 +UniRef50_Q87IM1 Tryptophan synthase beta chain 2 0.00985695941472 0.00735173054717 -1.01139163645e+12 +UniRef50_UPI0003635E67 hypothetical protein 7.67537123549e-07 0.000130839672438 52511717190.9 +UniRef50_D8HDF1 0.00402926014687 0.0012511240102 -1.12156764994e+12 +UniRef50_S9RXU2 Putative membrane protein 0.000135619347064 1.88613664487e-05 -47136629555.8 +UniRef50_F2AIM8 0.00132363919928 0.0024201315059 4.42667399656e+11 +UniRef50_M5DRE1 Diguanylate cyclase 5.03261448424e-06 5.33281866195e-05 19497515124.3 +UniRef50_L7WXF9 0.0196217480518 0.00383407240475 -6.37367839526e+12 +UniRef50_A0A037V0H1 CRISPR associated protein Cas3 0.000129795395708 7.79523435085e-05 -20929676358.7 +UniRef50_U5MZA5 Double stranded RNA RNA DNA hybrid binding protein 0.000119457591412 0.0010682729974 3.83048422672e+11 +UniRef50_W1DV17 FIG001826 0.000240623041765 0.000124814816943 -46753201487.4 +UniRef50_C4L8H9 Hydroxyethylthiazole kinase 8.03186243511e-06 8.91352113137e-06 355936434.849 +UniRef50_Q82DT6 NADH quinone oxidoreductase subunit B 2 9.40441445721e-06 0.000132836295103 49830964896.3 +UniRef50_UPI000262CA63 phosphoglycolate phosphatase 7.23667020105e-06 1.41718331835e-05 2799810400.04 +UniRef50_S5VB68 Extracellular solute binding protein family 1 0.00107003461787 0.000467881152802 -2.43096743102e+11 +UniRef50_UPI0004746364 ABC transporter ATP binding protein 2.16693561435e-05 1.16754012645e-05 -4034682224.27 +UniRef50_UPI000470C654 hypothetical protein 4.05457825498e-05 2.25853472638e-05 -7250848124.28 +UniRef50_UPI00046D6B42 hypothetical protein 1.88998607553e-06 1.29989358213e-05 4484819334.52 +UniRef50_UPI00046533A1 hypothetical protein 4.48414150421e-05 1.51799489096e-05 -11974697864.8 +UniRef50_A3PS59 ATP synthase subunit beta 2 0.00213670217093 0.000827177709709 -5.28671094667e+11 +UniRef50_Q8TY90 50S ribosomal protein L3 0.00203977377388 0.00138835882412 -2.62984208978e+11 +UniRef50_X1CQ64 Marine sediment metagenome DNA, contig 6.33774368481e-06 2.37809753065e-05 7042046658.2 +UniRef50_UPI0003B5E6F5 succinyl CoA 4.50955400479e-05 7.29306988013e-05 11237395164.6 +UniRef50_Q2FC51 Beta lactamase regulatory protein 0.000884854930389 0.000235287798871 -2.62238222079e+11 +UniRef50_L9M7Y3 3.12057724381e-05 0.000116627837632 34485935965.4 +UniRef50_W9GPH4 2.24026392221e-05 6.19239180645e-05 15955225249.3 +UniRef50_Q1J961 Chromosome partitioning protein parB 0.00295416793063 0.00109889015683 -7.48998404102e+11 +UniRef50_O57979 Amidophosphoribosyltransferase 9.66977626597e-06 6.82197319754e-05 23637335608.6 +UniRef50_UPI00037A9112 hypothetical protein 0.000101973264894 1.59757800731e-05 -34718239930.0 +UniRef50_W1K3B0 ABC transporter permease 0.000146275645051 9.37744974395e-05 -21195357552.3 +UniRef50_Q46769 dTDP 4 dehydrorhamnose reductase 0.00268197223256 0.000576284914849 -8.50091809849e+11 +UniRef50_UPI000375C690 hypothetical protein 0.00346844481803 0.000518099482802 -1.19109061664e+12 +UniRef50_G7M2K9 0.00035947760683 0.0015253445231 4.70674780894e+11 +UniRef50_W1JQY9 ABC transporter substrate binding protein 3.6129500953e-05 4.26125806884e-06 -12865600719.7 +UniRef50_B9KQ28 Short chain dehydrogenase reductase SDR 0.00014842175184 0.000779415626136 2.54739970219e+11 +UniRef50_Q3IV86 Putative signal peptide protein 0.00408977136998 0.00536618798999 5.15305052891e+11 +UniRef50_B2IHW6 NADH quinone oxidoreductase subunit B 0.0187173152377 0.00256464830968 -6.52102985435e+12 +UniRef50_E4R4C3 Phospholipid glycerol acyltransferase 0.00152667343028 0.000463171940794 -4.29348601938e+11 +UniRef50_T5LAM1 7.09818393889e-05 0.00022354747467 61592619153.8 +UniRef50_T1XT22 Amino acid permease, putative 0.0192927166706 0.006537445294 -5.14945957951e+12 +UniRef50_UPI0003D746D3 PREDICTED 3.37341420109e-05 3.83837609567e-05 1877108225.66 +UniRef50_P12758 Uridine phosphorylase 0.00724037112896 0.00117622224142 -2.44817132137e+12 +UniRef50_T0T7N0 Methylenetetrahydrofolate reductase 0.00453118656265 0.00190930909601 -1.05848410734e+12 +UniRef50_UPI0003650C71 hypothetical protein 3.75398926197e-06 0.000493411660296 1.97680810572e+11 +UniRef50_A6TH46 Thiol 0.0026910727388 0.000588194810632 -8.48957624816e+11 +UniRef50_K8CFI0 3.29500338677e-05 0.00033240091381 1.20891994908e+11 +UniRef50_A9BPL9 Alkylphosphonate utilization operon protein PhnA 0.00142358009624 0.00170943992618 1.15405121241e+11 +UniRef50_B5EAA9 Repeat containing protein 8.41740174779e-07 4.61050513274e-06 1521496661.48 +UniRef50_C0YBF1 Bmlf1 4.50553563171e-05 0.000481494628027 1.76195889701e+11 +UniRef50_Q4L4D1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0059681273456 0.00280436316379 -1.27725042395e+12 +UniRef50_R9ZJX7 Membrane protein 0.000617291717953 0.000129809540745 -1.96802537018e+11 +UniRef50_UPI0004728032 hypothetical protein 9.13879209252e-06 6.37477685501e-06 -1115866869.66 +UniRef50_K1UNJ2 0.000111250481525 0.000153266452563 16962363102.0 +UniRef50_O31214 Ubiquinol cytochrome c reductase iron sulfur subunit 0.00271468647303 0.0052603280721 1.02770675208e+12 +UniRef50_F7Z135 Purine operon repressor, PurR 0.0246115778739 0.00744939611464 -6.92858337988e+12 +UniRef50_UPI000360723E hypothetical protein 9.33102369204e-05 2.8095261512e-05 -26328085850.1 +UniRef50_Q9CL21 ATP dependent DNA helicase RecQ 2.69715590188e-05 1.06163048148e-05 -6602816823.69 +UniRef50_D4HDF7 Dihydroorotase 8.84732786372e-05 0.00689085363188 2.7462044232e+12 +UniRef50_C5N054 Transcriptional regulator, GntR family 0.0141059445048 0.00174771802447 -4.98916768259e+12 +UniRef50_UPI00036E9C27 hypothetical protein 3.28227202705e-05 3.65917202089e-05 1521591525.96 +UniRef50_A8L4W4 Periplasmic binding protein LacI transcriptional regulator 0.0068694884087 0.00214281664935 -1.90821539203e+12 +UniRef50_UPI0003084509 hypothetical protein 2.13642745381e-05 2.74032755915e-05 2438018832.13 +UniRef50_B2TER4 Lipid A ABC exporter family, fused ATPase and inner membrane subunits 0.000555789561762 0.000101950531138 -1.83220385894e+11 +UniRef50_M7Y7A3 Gram positive signal peptide protein, YSIRK family 0.00294802808926 0.000787511213846 -8.72227175126e+11 +UniRef50_B2UZX1 Medium FAD binding subunit of molybdenum enzyme 0.000915588036967 0.00129290121664 1.52325960787e+11 +UniRef50_Q5HPD3 0.0178369003335 0.00555979371893 -4.95641859735e+12 +UniRef50_Q8VYF5 N carbamoylputrescine amidase 0.00100311860661 0.0669718784096 2.66323978602e+13 +UniRef50_UPI0003B638F3 NADH quinone oxidoreductase subunit C 1.71585260953e-05 1.43702158245e-05 -1125675072.74 +UniRef50_UPI0001BF61FF hypothetical protein SMAC_10357, partial 3.07715102878e-05 0.000108387659621 31334591943.1 +UniRef50_X4XF16 0.000214016037738 0.00110291576289 3.5885972707e+11 +UniRef50_A7HVU8 UDP N acetylmuramate L alanine ligase 0.00694832012535 0.00265222348691 -1.73438693197e+12 +UniRef50_Q7MWU9 Holliday junction DNA helicase RuvB 1.46679249356e-05 1.34160414192e-05 -505400737.909 +UniRef50_UPI0003498384 hypothetical protein 3.65358747517e-05 1.40246285142e-05 -9088066350.13 +UniRef50_UPI000465F605 hypothetical protein 8.34053882458e-06 3.78458207996e-05 11911644403.8 +UniRef50_A3CMZ0 Na+ driven multidrug efflux pump, putative 0.000400208282712 0.00013515638682 -1.07004702924e+11 +UniRef50_Q8DVR0 Biofilm regulatory protein A 0.00871238276259 0.0010967606795 -3.07452008914e+12 +UniRef50_UPI00035C59AE hypothetical protein 5.3390897265e-06 9.26128422881e-06 1583438051.32 +UniRef50_M1M0U2 0.000801822697712 0.00390471017803 1.25267375252e+12 +UniRef50_L0SNC2 Transketolase 0.00783452176476 0.00507993969819 -1.1120585828e+12 +UniRef50_F2JKB2 MATE efflux family protein 0.000195540920246 0.00212158824757 7.77568941298e+11 +UniRef50_V0VWL0 0.000164820678539 7.40620129786e-05 -36640387020.8 +UniRef50_J0I8Y3 0.000992757340026 0.000355928317365 -2.57095691219e+11 +UniRef50_Q8Y2K1 Macro domain containing protein RSc0334 1.22545773291e-05 0.000250833345073 96317176229.0 +UniRef50_UPI00037F821B MULTISPECIES 5.46463936188e-06 9.57589200755e-06 1659763143.8 +UniRef50_UPI00047CF530 hypothetical protein 1.07943575231e-05 0.000111973708883 40847345754.3 +UniRef50_I7F2J7 3.05041227496e-05 6.5983800558e-05 14323581315.9 +UniRef50_A0A023RS80 Peptidase 7.60549339569e-05 0.00374847791694 1.48260222393e+12 +UniRef50_A0A022H2W5 ABC transporter 9.75879467817e-05 0.000103797831926 2507006836.61 +UniRef50_E6MXW1 4.33169288013e-05 0.00152777307547 5.99293162736e+11 +UniRef50_S2JUV8 Cache sensor containing methyl accepting chemotaxis sensory transducer 3.91681099492e-05 0.000124260445654 34352820124.4 +UniRef50_J9YQ34 Oligopeptide ABC transporter permease 0.00674065476329 0.0010675470542 -2.29030319902e+12 +UniRef50_C2MTH9 0.000181528326302 0.00108589908587 3.65105573515e+11 +UniRef50_A6V0C7 Endoribonuclease YbeY 0.00353893114548 0.00103808296372 -1.00962309983e+12 +UniRef50_I6U028 Histidine kinase of the competence regulon, ComD 0.00596531478966 0.00164448262536 -1.7443729673e+12 +UniRef50_A5UN25 Adhesin like protein 0.00267203171297 0.000660439264929 -8.12104556289e+11 +UniRef50_W5X6E3 Dihydrodipicolinate synthetase 2.23442717949e-05 3.26909896346e-05 4177096960.39 +UniRef50_A5UNS0 0.00143740141139 0.000525786418738 -3.68030159308e+11 +UniRef50_U5MUD4 0.000984333623217 0.00217971879889 4.82591664444e+11 +UniRef50_A6LXF6 Extracellular solute binding protein, family 3 0.000424024084238 0.00133299090213 3.6696105866e+11 +UniRef50_L7WW55 0.00191627895355 0.00126936057727 -2.61168887085e+11 +UniRef50_W4HNW2 0.000175548100933 6.9101234338e-05 -42973906294.3 +UniRef50_Q326E0 0.00233156346323 0.000696732845364 -6.60001182062e+11 +UniRef50_Q87VJ2 DNA mismatch repair protein MutL 0.000283790145698 0.000516974879324 94139538463.3 +UniRef50_UPI000364E75E hypothetical protein 1.6289614279e-05 1.65944989468e-05 123085681.746 +UniRef50_P76344 Metal binding protein ZinT 0.0010063269456 0.00027685941112 -2.94494995243e+11 +UniRef50_A6LZ35 Major facilitator superfamily MFS_1 0.000312463084358 0.000615650458012 1.22400463272e+11 +UniRef50_T1B713 Excinuclease ABC subunit C 0.000114274265039 2.93117279695e-05 -34300418822.5 +UniRef50_A6QDY4 Phage major head protein 0.0163061123752 0.00415989703457 -4.90357618382e+12 +UniRef50_T8P6W0 Glutathione regulated potassium efflux system protein kefC 0.00142496481699 0.00110007650047 -1.31161400207e+11 +UniRef50_A7IP37 0.00341658178 0.00110488934465 -9.33258603807e+11 +UniRef50_UPI0002628657 carbon monoxide dehydrogenase 1.65928134223e-06 7.83776851823e-06 2494331091.51 +UniRef50_P24255 RNA polymerase sigma 54 factor 0.00385715440208 0.00118774010612 -1.07767530868e+12 +UniRef50_G7MAG2 Integral membrane sensor signal transduction histidine kinase 0.000465813045532 0.00102671850504 2.26444417087e+11 +UniRef50_Q9RW34 0.000133702239266 0.130553421098 5.26520409333e+13 +UniRef50_UPI00046F6D6F hypothetical protein, partial 0.000116180000501 3.77713594034e-05 -31654530593.3 +UniRef50_Q3SJE0 Succinyl diaminopimelate desuccinylase 0.00129564519235 0.00587669986218 1.84942798607e+12 +UniRef50_I1ZJN7 0.00141461333002 0.00343194160753 8.14420181033e+11 +UniRef50_Q493N1 Siroheme synthase 5.06156188783e-06 2.28116761026e-05 7165938926.91 +UniRef50_A6LYS9 Conserved repeat domain 0.000683184240824 0.000984901515369 1.21806966221e+11 +UniRef50_P52132 UPF0380 protein YfjQ 0.00918469424836 0.00424149799921 -1.99562898562e+12 +UniRef50_A0A023RU18 Cytochrome C assembly protein 0.000139982443328 0.00523220817102 2.05579401491e+12 +UniRef50_P57090 Probable nicotinate nucleotide adenylyltransferase 7.74800028339e-06 0.00207833460035 8.35921219403e+11 +UniRef50_R5DD38 0.00126441938643 0.000907950505196 -1.43910861719e+11 +UniRef50_X5E2G1 Transposase DDE domain protein 3.75262501931e-05 0.00226354497405 8.98671075144e+11 +UniRef50_X8FIZ9 8.69349635899e-05 0.000348124593075 1.0544545858e+11 +UniRef50_A0A023XW63 1.09859342255e-05 7.43359240541e-06 -1434123984.91 +UniRef50_UPI00037CE6B4 hypothetical protein 3.51651746946e-06 4.41408208943e-06 362357851.438 +UniRef50_L1NZC1 Peptidase, M61 family 0.000235358550272 0.00392459053246 1.48938822318e+12 +UniRef50_H7CZ41 0.000655255359131 0.000315284738642 -1.372503114e+11 +UniRef50_A0P4I0 BolA like protein 4.09390414434e-05 0.000121558759842 32547169632.7 +UniRef50_O53871 Putative acyltransferase Rv0859 0.0011653760883 0.0072072261005 2.43916899176e+12 +UniRef50_I0C833 0.00909588435484 0.00419425782576 -1.97884677951e+12 +UniRef50_P35484 Dihydrolipoyl dehydrogenase 9.48565100103e-06 9.4082180455e-06 -31260634.3567 +UniRef50_UPI000366F4F8 hypothetical protein 3.04557665679e-05 7.11047852039e-05 16410507642.9 +UniRef50_G7MB49 Integral membrane sensor signal transduction histidine kinase 0.000178097469345 0.00156581698798 5.60239398904e+11 +UniRef50_F0MAK0 ABC type spermidine putrescine transport system, ATPase component 0.000709722431858 0.000247472099328 -1.86616131692e+11 +UniRef50_P45322 Molybdenum transport system permease protein ModB 0.00738417193878 0.00603700445902 -5.43868043183e+11 +UniRef50_Q6G9Y4 Phosphate acyltransferase 0.0108364406024 0.000791064605568 -4.05544156053e+12 +UniRef50_A4VG13 D lactate dehydrogenase 0.000402387962304 0.00308511148134 1.08304840536e+12 +UniRef50_UPI00036F21BD hypothetical protein 1.71941792921e-06 4.68461902388e-06 1197088069.03 +UniRef50_I0DWZ9 2.76012854526e-05 2.80375176223e-05 176112280.079 +UniRef50_K6CXP7 Hemolysin type calcium binding region 5.60140502968e-05 8.17774092473e-06 -19312105111.0 +UniRef50_UPI0003C7E79E phosphoprotein phosphatase 9.30420957086e-06 1.45630803605e-05 2123070671.38 +UniRef50_Q4FP60 1.0938827632e-05 2.41537458519e-05 5335024650.66 +UniRef50_Q5HP10 0.00793455641721 0.000745051619467 -2.90249131199e+12 +UniRef50_D7N6D8 Cysteine desulfurase ATPase component domain protein 1.88467875125e-05 5.25705025721e-05 13614677606.1 +UniRef50_UPI0002D4A249 hypothetical protein 9.97859170997e-06 6.23259470773e-06 -1512304958.36 +UniRef50_I4ES52 0.000119331714078 0.00749458221076 2.97747913001e+12 +UniRef50_O06458 Trehalose synthase 5.31295523526e-06 1.73191428668e-05 4847045279.33 +UniRef50_A0A024HWE9 3.76245357897e-05 4.03277950936e-05 1091338953.71 +UniRef50_D7I534 Acyl CoA thioesterase II 0.000560791751245 0.000285330149942 -1.1120722874e+11 +UniRef50_K7UZS6 3.0901299642e-05 8.40807501992e-05 21469196775.2 +UniRef50_F5M3N6 Phospholipase D transphosphatidylase 0.00178261564169 0.000749477135326 -4.17090693053e+11 +UniRef50_V6ACD4 Peptidase M14, carboxypeptidase A 0.000770931904675 0.000696647785508 -29989410476.4 +UniRef50_A5WCY2 FAD linked oxidase domain protein 0.000758397427981 0.00853445979932 3.13929180233e+12 +UniRef50_A0A009IP40 SnoaL like domain protein 0.000224561812277 8.43970280647e-05 -56586243401.7 +UniRef50_R6FR88 Two component system response regulator 0.00203042247745 0.00130550034336 -2.92659961327e+11 +UniRef50_UPI00035F4A59 hypothetical protein 0.000168277426314 0.00010431825591 -25821101959.4 +UniRef50_K8WUE9 Phosphomethylpyrimidine synthase ThiC 9.6474104816e-06 4.26944915255e-05 13341512150.7 +UniRef50_Q9RU56 Osmotically inducible protein C 0.000438937196334 0.0660140364144 2.64734722513e+13 +UniRef50_UPI00047D8829 erythrose 4 phosphate dehydrogenase 4.8158850138e-05 6.72070788026e-05 7690003659.95 +UniRef50_D3QEY2 4 phosphopantetheinyl transferase 0.00870557370541 0.00404025588936 -1.88344605223e+12 +UniRef50_R6M7U0 Transporter major facilitator family protein 0.00011958373459 0.00323895818993 1.25932974665e+12 +UniRef50_UPI00016A29CB hypothetical protein 0.000342963099569 0.000320072121394 -9241368793.14 +UniRef50_K2JWT8 2.46122398948e-05 1.99139740934e-05 -1896747558.23 +UniRef50_Q5WE91 Acetoin dehydrogenase E1 component beta subunit 0.00530261546252 0.000842227625789 -1.8007133048e+12 +UniRef50_UPI00031ABCD6 hypothetical protein 2.0828158654e-06 2.92321189728e-07 -722844672.408 +UniRef50_Q2P3Y4 Serine tRNA ligase 2.0856588026e-05 1.13012532969e-05 -3857605887.28 +UniRef50_UPI0003AE0E87 PREDICTED 1.53720745704e-05 4.30159370849e-05 11160166525.4 +UniRef50_S6AS82 1.21246862462e-06 9.43414266463e-06 3319190701.24 +UniRef50_A7ZP69 Nucleoside triphosphatase NudI 0.000163022112397 0.000418888943548 1.03296579575e+11 +UniRef50_G7M113 Stage III sporulation protein AE 0.000305388425099 0.00113116022178 3.3337420768e+11 +UniRef50_Q5QW41 8.90234787764e-05 3.40285727732e-05 -22202118416.9 +UniRef50_E0D539 Transposase, putative 0.000317938617421 0.00247439581659 8.70588234011e+11 +UniRef50_I8RAB7 Bifunctional protein 0.00619245505121 0.00564640726234 -2.20446193127e+11 +UniRef50_F4PKU5 GTP binding protein 7.09423075916e-06 2.45367823446e-05 7041772119.2 +UniRef50_B9AFH2 Polymorphic outer membrane protein repeat (Fragment) 0.00465239245404 0.000622427999749 -1.62694610342e+12 +UniRef50_Q9FBM1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.71746473411e-05 0.000873183399587 3.29432746835e+11 +UniRef50_P40747 5.42123896349e-06 1.6198528947e-05 4350924218.56 +UniRef50_UPI00037F886D hypothetical protein, partial 9.41625882376e-06 6.15004152159e-05 21027013080.0 +UniRef50_Q98C76 Mlr5266 protein 0.00539662797163 0.00112425841702 -1.72480801707e+12 +UniRef50_UPI0003A068C7 sodium hydrogen exchanger 3.66327363729e-06 8.92278046181e-06 2123327446.47 +UniRef50_S5XZ35 N carbamoyl L amino acid hydrolase 0.00447841557911 0.00112297718678 -1.35463165484e+12 +UniRef50_UPI0003EDBEBD PREDICTED 1.94336482946e-05 4.2857357702e-05 9456438929.01 +UniRef50_K0TM35 1.052673218e-05 8.84786242565e-05 31470135408.6 +UniRef50_A6LYV0 Response regulator receiver protein 0.000656703973554 0.000743254568069 34941537100.9 +UniRef50_S3MI44 Major facilitator superfamily transporter 0.000280435051188 0.000415369164399 54474557331.1 +UniRef50_A5IQJ9 0.0124117318935 0.00699150844349 -2.18821072039e+12 +UniRef50_UPI0004675A7A thymidylate synthase 3.71253420442e-05 0.000300782692181 1.0644170769e+11 +UniRef50_F5X1D7 Polysaccharide deacetylase family protein 0.00387249400138 0.00162700923417 -9.06529755719e+11 +UniRef50_Q97F65 Thymidine kinase 2.34972018836e-05 4.12676534309e-05 7174149357.61 +UniRef50_G8VF81 0.000123361434261 0.00624718453483 2.47226253346e+12 +UniRef50_B5FTN1 D amino acid dehydrogenase small subunit 0.00266003357377 0.00101890091287 -6.62545394168e+11 +UniRef50_P0DD00 Peptidase T 1.98371540415e-05 0.00232413445904 9.30273098936e+11 +UniRef50_X1XX47 2.76974454028e-06 3.40427439351e-06 256167488.306 +UniRef50_Q6FD39 Bifunctional protein 0.000114688224755 0.00658110354017 2.61057121467e+12 +UniRef50_Q2LTM3 Phosphopantothenoylcysteine decarboxylase phosphopantothenate cysteine ligase 0.0182382178451 0.00632858968866 -4.80806303431e+12 +UniRef50_P0ACB2 Delta aminolevulinic acid dehydratase 0.00511462776883 0.00156798900014 -1.43182159307e+12 +UniRef50_A5V3T8 Homoserine O succinyltransferase 0.00650266905991 0.00274662881032 -1.51635954056e+12 +UniRef50_UPI0003B3EBD2 MarR family transcriptional regulator 1.36053655022e-05 4.9056661204e-05 14312123111.1 +UniRef50_UPI0004410872 NAD binding protein 2.25238124737e-05 2.17318480834e-05 -319725742.86 +UniRef50_Q9HQC9 Uridine kinase 9.5557806236e-06 0.000589280326397 2.34041913149e+11 +UniRef50_G8MW75 9.64283406494e-05 0.00055425707085 1.84831076572e+11 +UniRef50_P37941 2 oxoisovalerate dehydrogenase subunit beta 0.0228810220159 0.0110168703129 -4.78970363201e+12 +UniRef50_UPI0003B580E0 NADH quinone oxidoreductase subunit N 0.000380684136677 0.000255523260891 -50528981451.5 +UniRef50_B1T5I2 0.0008644717302 0.00219013728749 5.35187453224e+11 +UniRef50_P74089 Serine acetyltransferase 1.16275196345e-05 3.39024034125e-05 8992643924.74 +UniRef50_A5IUL9 Membrane flanked domain 0.013333421178 0.0027668044984 -4.26587282052e+12 +UniRef50_A9HYE8 Fumarate reductase iron sulfur protein 0.00497179103935 0.00105108424525 -1.58283744526e+12 +UniRef50_Q5KX81 Octanoyltransferase LipM 0.0117946890581 0.00188028250751 -4.00256758792e+12 +UniRef50_Q4L855 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0188163277998 0.00410456856888 -5.9393177351e+12 +UniRef50_A0A052JJE9 PF04304 family protein 9.30866365262e-06 1.65685528877e-05 2930906373.06 +UniRef50_UPI0004790305 hypothetical protein 2.28734759483e-05 1.38956799455e-05 -3624446416.28 +UniRef50_P0AEW8 Inosine guanosine kinase 0.00329720460027 0.000416698482988 -1.16289566733e+12 +UniRef50_U6AE90 Iron siderophore receptor protein 0.000546134873074 0.000455565921252 -36563797256.6 +UniRef50_UPI00037FD430 hypothetical protein 0.000422004747285 0.000514968538689 37530623383.8 +UniRef50_I3ZB99 Anti anti sigma regulatory factor 1.34470147202e-05 0.00170866844165 6.84381692758e+11 +UniRef50_X7FC63 DNA topology modulation protein FlaR 1.20272092473e-05 7.27519882398e-05 24515338456.1 +UniRef50_K7RWS7 UTP hexose 1 phosphate uridylyltransferase 0.000219894750786 0.016278315577 6.48298154652e+12 +UniRef50_UPI00038EEF34 PREDICTED 5.36723583906e-05 8.38514547387e-05 12183671534.9 +UniRef50_P33226 Cytochrome c type protein TorC 0.00304466669113 0.000661340127464 -9.62178180459e+11 +UniRef50_F4A9P0 0.000648973046738 0.000532102171523 -47182206491.2 +UniRef50_A0A024E2H8 0.000569942476081 0.000841436265288 1.09605374306e+11 +UniRef50_K0SEA3 0.000236578271577 2.30476863029e-05 -86204917590.1 +UniRef50_UPI00047DC367 hypothetical protein 0.000189622619208 2.05012572066e-05 -68276369192.3 +UniRef50_UPI0004636621 LysR family transcriptional regulator 7.7137009514e-05 4.27484330411e-05 -13883090317.4 +UniRef50_E6MWP3 Ribonuclease R 0.0005618383897 0.00267058580429 8.51327208511e+11 +UniRef50_Q5LLN0 Maf like protein SPO3892 0.000651022424552 0.000299813913899 -1.41787185564e+11 +UniRef50_A0A025DCK3 0.00196534011341 0.00066522059301 -5.24874204646e+11 +UniRef50_C1FNN6 Xanthine uracil permease family protein 0.000578975112097 0.00183787029211 5.08231432551e+11 +UniRef50_Q9K1B0 NADH quinone oxidoreductase subunit L 0.00019261353775 0.00365883782312 1.39935727936e+12 +UniRef50_UPI0004784A1B hypothetical protein 5.49168705589e-06 4.72741849433e-06 -308544596.932 +UniRef50_UPI00046D54E5 hypothetical protein 3.37512462937e-05 2.49413424635e-05 -3556666285.93 +UniRef50_D3QF80 Teichoic acid biosynthesis protein X 0.01260565396 0.00315157068384 -3.81672943323e+12 +UniRef50_V6UWS0 4.61070431122e-05 9.61659818164e-05 20209407847.1 +UniRef50_UPI00037F4484 ADP ribose pyrophosphatase 1.60510613515e-05 4.13069991843e-05 10196132028.3 +UniRef50_I6Y6R6 FAD containing monooxygenase EthA 4.33565901519e-06 0.00119064230854 4.78926552031e+11 +UniRef50_UPI000464816A hypothetical protein 3.41086035292e-06 1.78316111783e-06 -657122155.322 +UniRef50_UPI0003099314 hypothetical protein 7.94262649132e-06 1.31194741009e-05 2089956907.05 +UniRef50_C7NK94 Molybdopterin guanine dinucleotide biosynthesis protein A 3.20945684836e-06 1.03596168931e-05 2886607352.39 +UniRef50_Q5GT42 NADH quinone oxidoreductase subunit C 2.38919801395e-05 4.02367479138e-05 6598583323.34 +UniRef50_B9DPC0 DNA mismatch repair protein MutL 0.0105323675018 0.00351169813867 -2.8343303752e+12 +UniRef50_B7VH15 8 amino 7 oxononanoate synthase 4.72090388881e-06 6.5426369729e-06 735456001.226 +UniRef50_B0V8Y0 0.000905562938967 0.0211990466116 8.19272838768e+12 +UniRef50_C6SRM3 0.00526241595226 0.00273873043014 -1.01884281438e+12 +UniRef50_UPI00038126DC hypothetical protein 4.40952202213e-05 1.17696306707e-05 -13050237181.2 +UniRef50_Q1CRC0 DNA helicase II 7.03390041314e-05 0.00347929390156 1.37623692467e+12 +UniRef50_H3XJS2 HsdM N terminal domain protein 8.18920046117e-05 0.000131809027421 20152114658.9 +UniRef50_A5WEV0 Serine O acetyltransferase 0.00140328078208 0.000735608824968 -2.69547362342e+11 +UniRef50_Q2RMV4 Peptidyl tRNA hydrolase 6.82353715596e-05 3.26482736208e-05 -14366948140.7 +UniRef50_Q8CMP5 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.0139113553394 0.00270038693372 -4.52600551943e+12 +UniRef50_B6IRZ1 Phospholipase D 0.0033528290026 0.000661904767747 -1.08635913496e+12 +UniRef50_Q0I1I7 tRNA tmRNA ) methyltransferase 0.00394839151024 0.00619091115691 9.05332700171e+11 +UniRef50_M2HS82 N acetylmuramoyl L alanine amidase 0.00413667678269 0.00088874606378 -1.31122948782e+12 +UniRef50_A3PKI1 NADH quinone oxidoreductase subunit B 2 0.00458773028275 0.00118823496732 -1.37241797534e+12 +UniRef50_U3T6X0 0.000118334165783 0.00702522070571 2.7883948532e+12 +UniRef50_UPI00047861DB hypothetical protein 1.0575360446e-05 0.000572678691158 2.26928012392e+11 +UniRef50_UPI000379BC38 hypothetical protein 4.07926122275e-06 8.87549613469e-06 1936298890.37 +UniRef50_UPI00030F43CB hypothetical protein 2.10293445681e-05 6.25829915054e-06 -5963252296.2 +UniRef50_F8HCR3 Pyrimidine nucleoside phosphorylase 0.00451151931001 0.000570170699734 -1.59117079976e+12 +UniRef50_Q2NIS4 Uridylate kinase 2.11655019825e-05 2.08421570789e-05 -130538305.471 +UniRef50_Q51697 Isoquinoline 1 oxidoreductase subunit alpha 3.3828006435e-05 6.41318624773e-05 12234038554.4 +UniRef50_UPI0002896149 penicillin binding protein 2B 4.1256257506e-06 1.18698254272e-05 3126428441.46 +UniRef50_L8BQX8 1.7143598997e-05 0.001051786854 4.17698178544e+11 +UniRef50_A5UJP8 Adhesin like protein 0.00198957688591 0.000543399143023 -5.83839701401e+11 +UniRef50_Q2YSH2 0.025784256351 0.0086808658139 -6.90484864203e+12 +UniRef50_K0RL16 0.000229707498285 3.21104214386e-05 -79772364711.5 +UniRef50_P09772 Nitrogenase molybdenum iron protein beta chain 0.0139273469701 0.00386512868688 -4.06224099823e+12 +UniRef50_A4YC85 Protoheme IX farnesyltransferase 2 1.05538520455e-05 1.94996543834e-05 3611530181.15 +UniRef50_UPI0003696809 hypothetical protein 0.000200850807268 0.000109233211971 -36987147495.7 +UniRef50_UPI00035C30D5 hypothetical protein 3.93936534939e-06 2.3581753157e-05 7929872997.13 +UniRef50_R4VP47 Twin arginine translocation pathway signal 0.012262702714 0.0025642447106 -3.91538650944e+12 +UniRef50_W5X7K8 Polyribonucleotide nucleotidyltransferase 5.04790710489e-05 6.0176745144e-06 -17949611383.7 +UniRef50_P0AGG9 Metalloprotease TldD 0.00275566454213 0.000579749737165 -8.7844350824e+11 +UniRef50_E4NBU8 2.48455827795e-05 3.37817215202e-05 3607628868.37 +UniRef50_UPI000367E778 hypothetical protein 4.81897543951e-05 7.87393820955e-05 12333259588.7 +UniRef50_W8RNL3 5.05451662561e-05 9.28884659938e-05 17094509714.8 +UniRef50_Q8PGP9 Proline tRNA ligase 0.00373782922409 0.00830906379545 1.84546349181e+12 +UniRef50_A4E7N7 1.02246847351e-05 0.000228554735532 88142520717.8 +UniRef50_UPI00047E0F2D hypothetical protein 9.02701809486e-05 3.09742967116e-05 -23938476108.8 +UniRef50_P75863 0.00295708657843 0.00116231213264 -7.24572468125e+11 +UniRef50_UPI0000379EF0 hypothetical protein 0.00951739575211 0.00695175862668 -1.03577919144e+12 +UniRef50_B7UM47 Nucleoid occlusion factor SlmA 0.00445714182167 0.000824139642406 -1.46668756172e+12 +UniRef50_Q8VQ99 Serine rich adhesin for platelets 0.0133651410297 0.00307465969447 -4.15439359343e+12 +UniRef50_UPI000472F1A4 AsnC family transcriptional regulator, partial 0.000209721294802 9.25324162328e-05 -47310588347.6 +UniRef50_P37567 Probable tRNA dihydrouridine synthase 1 2.48992172685e-05 8.76244473598e-06 -6514613091.84 +UniRef50_A0A024H9L1 Short chain dehydrogenase 0.0011585744695 0.000420878914765 -2.97816747989e+11 +UniRef50_Q9HVL0 UPF0114 protein PA4574 0.000465553612639 0.000435356322155 -12191016730.8 +UniRef50_A5W6U4 NAD kinase 0.00135514604476 0.00914883585972 3.14640821763e+12 +UniRef50_A8WXW9 Protein CBG04553 5.94233117324e-07 8.70296404213e-05 34895034610.3 +UniRef50_UPI000470F5F1 indole 3 glycerol phosphate synthase 3.74433064122e-06 4.52793155202e-06 316349303.554 +UniRef50_B2HWA5 0.000750638356551 0.00410416543211 1.35386003281e+12 +UniRef50_Q02151 0.00582056033768 0.00191034817387 -1.57860063423e+12 +UniRef50_Q3JHC8 8.9262173431e-06 2.89319566816e-05 8076562468.98 +UniRef50_F4JP46 Formyltetrahydrofolate deformylase 2, mitochondrial 4.01045676852e-06 2.14538218759e-05 7042100548.02 +UniRef50_Q3JQU1 0.000362050924882 0.000158986113162 -81979756376.8 +UniRef50_P58381 Enoyl [acyl carrier protein] reductase [NADH] 2 0.0233456732439 0.00360406785844 -7.96992835087e+12 +UniRef50_P37560 0.0247124566727 0.00494176026267 -7.98167275444e+12 +UniRef50_A7BEA1 0.000195588595265 0.00393825298334 1.51095954112e+12 +UniRef50_R5E7A9 Extracellular ligand binding receptor 9.93384181239e-05 0.00109204434406 4.00767564172e+11 +UniRef50_Q9RRM5 Transport protein, putative 0.000156850133866 0.0566886280836 2.28225724812e+13 +UniRef50_I0GP22 0.000574851759676 0.00955635529577 3.62594319296e+12 +UniRef50_UPI000467D29B translation initiation factor IF 3 0.000284736057238 0.000345096788494 24368367917.5 +UniRef50_Q8D2L3 Fumarate hydratase class II 6.38846853821e-06 2.87768563892e-05 9038466911.86 +UniRef50_B8DP86 Ribosomal RNA small subunit methyltransferase H 5.55877566644e-06 3.00860929869e-05 9901978986.32 +UniRef50_P45625 0.0191200132519 0.00611551050911 -5.25007734046e+12 +UniRef50_UPI00035FFFC6 hypothetical protein 4.89220189296e-06 7.10232832152e-06 892255160.511 +UniRef50_UPI000329D7B6 0.00152043927363 0.000409088821109 -4.48665815486e+11 +UniRef50_G8XAZ1 Nitrate nitrite antiporter 5.34104805209e-06 1.97567236534e-05 5819785140.48 +UniRef50_A0A024L3K6 Fimbrial biogenesis outer membrane usher protein 0.00136673023498 0.00096768544727 -1.61099277629e+11 +UniRef50_UPI0004623CA1 hypothetical protein TRAVEDRAFT_50483 0.00146433848469 0.00114734779734 -1.27973030396e+11 +UniRef50_V6ECI2 Dihydroxy acid dehydratase 0.00300089830918 0.00117364870241 -7.37683089127e+11 +UniRef50_A0A039PB00 Integral membrane protein 0.00010239065735 7.24339404585e-05 -12093894219.4 +UniRef50_D3E2D1 Fumarate hydratase FumA3 0.00455044301987 0.000575292282856 -1.60481713312e+12 +UniRef50_O33518 Protein translocase subunit SecF 0.0181422904964 0.00466741639474 -5.43997203016e+12 +UniRef50_Q3KIA5 Protein RnfH 2.13451397922e-05 5.22917510373e-05 12493526717.3 +UniRef50_UPI00037B6FC9 hypothetical protein 5.31470782947e-05 1.59501656606e-05 -15016850087.8 +UniRef50_O27572 Probable tRNA pseudouridine synthase D 0.00560182684156 0.000757531807255 -1.95570135154e+12 +UniRef50_P24891 Cytochrome c oxidase subunit 3 9.05422833056e-06 1.85659615324e-05 3840003415.67 +UniRef50_C7MF62 Alpha L fucosidase 0.000484450537803 0.00649556280741 2.42675978788e+12 +UniRef50_I4E0F8 0.00735859046839 0.00230994579008 -2.03819981047e+12 +UniRef50_UPI00021931F3 amino acid adenylation protein 2.56154256215e-05 8.82164135343e-06 -6779856791.94 +UniRef50_A5IUD1 0.0272242820652 0.00262765055399 -9.92996197568e+12 +UniRef50_R9TX51 YlmE 0.00706167836271 0.00261917102393 -1.79349472836e+12 +UniRef50_B5Y1Z5 Protein ApaG 0.000701549052867 4.21089715591e-05 -2.66224053064e+11 +UniRef50_E8QVJ8 Molybdenum ABC transporter ModA 0.000962945748232 0.000554111084734 -1.6505157062e+11 +UniRef50_U4KGU9 Toluene tolerance protein Ttg2B 0.000168924000892 3.32640212303e-05 -54767598524.7 +UniRef50_UPI00042B69C5 Translation initiation factor 3 protein isoform 4, partial 0.000122654838245 4.90649270653e-05 -29709150193.0 +UniRef50_UPI000416FC07 ADP ribose pyrophosphatase 1.7406307468e-05 0.00102772278334 4.07877159286e+11 +UniRef50_C5Q752 0.00615978929589 0.00278123323943 -1.36396453954e+12 +UniRef50_UPI0003815DCD hypothetical protein 1.79626024847e-05 9.78533272344e-06 -3301264149.0 +UniRef50_UPI000362D4DF hypothetical protein 4.33292488794e-06 5.24399720686e-06 367811075.263 +UniRef50_P9WP46 Carbon starvation protein A homolog 5.53498517408e-05 0.001450268556 5.63145798487e+11 +UniRef50_Q5NP61 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.00311847761641 0.0108143639703 3.10692376021e+12 +UniRef50_UPI00046F7845 hypothetical protein 9.77725619819e-05 6.97851834327e-05 -11298848164.1 +UniRef50_F2D112 Predicted protein 0.000276070279952 0.000457255780377 73146809917.7 +UniRef50_Q3J4J9 Ribonuclease E 0.0041726369635 0.000890576157891 -1.32500822264e+12 +UniRef50_P59399 Histidinol dehydrogenase 3.58042793865e-06 5.26211012032e-06 678915733.301 +UniRef50_W5BPL1 7.20976231916e-05 1.97741842596e-05 -21123614377.6 +UniRef50_UPI0004738B2C hypothetical protein 1.22342457111e-05 1.38680059825e-05 659569070.057 +UniRef50_K4QBP0 K12555 penicillin binding protein 2A 0.000170237920242 0.000113656204698 -22842732900.8 +UniRef50_UPI00030CFAAF hypothetical protein 5.42388370583e-06 0.000129024575317 49899115954.4 +UniRef50_J1B0P3 0.00729065126538 0.00560599604239 -6.80115986565e+11 +UniRef50_UPI0003B4DEC2 DNA gyrase subunit B 7.58102851781e-06 2.06709034176e-05 5284543127.88 +UniRef50_O34384 0.000393898423154 0.109211752741 4.39311031334e+13 +UniRef50_Q8DT90 Ribonuclease Z 0.00556528829248 0.00304074178836 -1.01919040338e+12 +UniRef50_A9WMF4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0004127114371 0.00808159626611 3.09602291327e+12 +UniRef50_A8J8D8 Predicted protein 7.89779326069e-05 5.23951874321e-05 -10731780434.0 +UniRef50_Q2YI45 Streptokinase like protein 0.000439832627451 0.000766000648442 1.31678032606e+11 +UniRef50_Q1GHZ2 GTPase Der 0.00525917139903 0.000531736013761 -1.90852367719e+12 +UniRef50_Q6GIW1 UPF0178 protein SAR0734 0.00989749961365 0.00641997573627 -1.40391906332e+12 +UniRef50_Q1R9Q5 6.32142872301e-05 6.36635190352e-05 181360392.413 +UniRef50_A3UXL8 1.86111392492e-05 0.00030931744026 1.17361701086e+11 +UniRef50_R6QI78 RpiR family Helix turn helix domain containing protein 0.00124130768918 0.000716737921957 -2.11775252223e+11 +UniRef50_D3E0Y1 Thymidylate synthase ThyA 0.0028632083678 0.000360875810829 -1.01022236032e+12 +UniRef50_A7X5Z9 Ferredoxin NADP reductase 0.0143967877412 0.00407085605633 -4.16870533463e+12 +UniRef50_Q83H92 Uroporphyrinogen decarboxylase 3.86158700379e-06 6.50499141093e-06 1067174797.38 +UniRef50_UPI0004786744 hypothetical protein 2.86886674473e-05 0.000504092251724 1.91926260831e+11 +UniRef50_Q3JVX1 2.74543377408e-05 2.66449036922e-05 -326778458.293 +UniRef50_P44324 Aspartate ammonia lyase 7.81706715078e-06 0.00884354366833 3.56709125545e+12 +UniRef50_C5YPR8 9.42582286729e-05 2.50149047621e-05 -27954379573.9 +UniRef50_B2ZY73 1.16147818039e-05 0.000490013030344 1.93135243542e+11 +UniRef50_P0AGC1 Hexose phosphate transport protein 0.00288028788074 0.000703338153865 -8.78861318915e+11 +UniRef50_UPI0001FFF263 putative enterobactin iron transport system, ATP binding protein 3.85906011636e-06 0.000280956816684 1.11867764698e+11 +UniRef50_A3M517 0.000317215116685 0.00423129872881 1.58016358542e+12 +UniRef50_B1K7T3 Two component transcriptional regulator, LuxR family 0.00127799304247 0.000572669132518 -2.84747917745e+11 +UniRef50_B0T202 UPF0386 protein Caul_4643 0.000643442026451 8.2726730099e-05 -2.26367645888e+11 +UniRef50_T1B6U2 0.000145227997145 2.60747201073e-05 -48103640115.4 +UniRef50_A8TBH7 3.33006228323e-05 2.71059672822e-05 -2500858462.55 +UniRef50_F3L3B7 1.05663787293e-05 0.00259526988956 1.0434765252e+12 +UniRef50_Q1IXV7 UDP N acetylenolpyruvoylglucosamine reductase 0.000207790452577 0.0133036150785 5.28694510532e+12 +UniRef50_A8TBH9 2.28016211279e-05 1.85556357129e-05 -1714156416.14 +UniRef50_Q8DEZ6 Dual specificity RNA methyltransferase RlmN 0.00191758539698 0.00198092217823 25569835820.3 +UniRef50_T1DG32 Phosphoribosylformylglycinamidine synthase 5.05035815728e-05 7.64946016312e-05 10492893743.3 +UniRef50_I3XA84 5.329161694e-06 1.95837486089e-05 5754751661.0 +UniRef50_UPI0004655A42 MULTISPECIES 1.29751929707e-05 4.02567288e-05 11013890796.4 +UniRef50_M3BXT0 DNA polymerase II large subunit 5.2803885481e-05 0.000106517108153 21684687128.0 +UniRef50_A8LRN8 0.0098425821442 2.64643439579e-05 -3.96288721327e+12 +UniRef50_P65098 Isocitrate dehydrogenase [NADP] 0.000222932078485 0.000952584681021 2.94569709488e+11 +UniRef50_UPI00036FD78D hypothetical protein 6.41691420969e-05 2.8685344635e-05 -14325244470.5 +UniRef50_J0FJU8 0.000730687607927 0.000391492522588 -1.36937218343e+11 +UniRef50_X6EJ38 1.05868996491e-05 2.95767613642e-06 -3080011153.17 +UniRef50_F7X313 0.000190627024615 5.57962401566e-05 -54432842245.5 +UniRef50_V9VVH8 Flagellar protein FlgJ 0.000181366325563 9.96839753491e-05 -32976167136.5 +UniRef50_C5BY82 Glutamate racemase 0.00013291760171 0.00896206782647 3.56443629159e+12 +UniRef50_H1LKH2 0.00013577153381 3.6154790343e-05 -40216501772.5 +UniRef50_F7X315 0.000180502741009 9.24195866583e-05 -35560250313.2 +UniRef50_UPI0003B4E9FE membrane protein, partial 1.07165518852e-05 3.44624577348e-05 9586513586.52 +UniRef50_I4KLM3 Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein 0.000457799522156 0.0014228379447 3.89597853534e+11 +UniRef50_F8GY06 Endoribonuclease L PSP 0.000748288081995 3.68237718954e-05 -2.87226872636e+11 +UniRef50_G7M214 Pyruvate, water dikinase 0.000614755258589 0.0017276457733 4.49287557491e+11 +UniRef50_UPI000471162E hypothetical protein 4.59840773834e-05 0.000142586141608 38999438768.1 +UniRef50_UPI000400283D hypothetical protein 3.14234853305e-05 2.41539503825e-05 -2934800465.73 +UniRef50_L7WWZ3 0.00134486477337 0.00101833346619 -1.31824695698e+11 +UniRef50_UPI0004651131 hypothetical protein 1.35461501585e-05 1.75834418796e-05 1629904210.95 +UniRef50_Z5LDC7 8.81984199907e-06 1.46000310718e-05 2333533259.56 +UniRef50_Q2YUU9 Superoxide dismutase [Mn Fe] 2 0.0172192372112 0.00742138719141 -3.95551228613e+12 +UniRef50_B6IVA8 0.000274786408743 2.20366318272e-05 -1.0203818653e+11 +UniRef50_P77307 Probable iron export permease protein FetB 0.00193535853081 0.00114289132711 -3.199287348e+11 +UniRef50_UPI00047CBBFB 2 amino 4 ketopentanoate thiolase 1.74393197276e-05 2.43748277575e-05 2799949699.92 +UniRef50_M9VDV1 ComE operon protein 1 0.000677992423077 0.00411448007384 1.38735223506e+12 +UniRef50_A0A023WVI0 Aldehyde dehydrogenase 0.000754962195672 0.00107917038281 1.30886823629e+11 +UniRef50_L8GN65 6.94448575617e-05 0.0042846689115 1.70173767719e+12 +UniRef50_W4U756 Helicase 0.000143441913114 0.0064589008652 2.54962827836e+12 +UniRef50_R7PWJ9 Glycosyl transferase group 1 family 0.00279894568767 0.00150713321948 -5.2152054573e+11 +UniRef50_U6ACI3 0.000682203594306 0.00207239793119 5.61238513401e+11 +UniRef50_P15505 Glycine dehydrogenase , mitochondrial 6.55682981838e-06 8.59353400528e-06 822242473.422 +UniRef50_X1P9R1 Marine sediment metagenome DNA, contig 1.02556610051e-05 0.000196793142582 75307470384.9 +UniRef50_UPI0004655CAA hypothetical protein 0.000105516926407 1.57294126552e-05 -36248321118.3 +UniRef50_F4LAH5 7.21638694007e-05 9.30099593277e-05 8415822313.82 +UniRef50_Q9HYL3 Regulatory protein NosR 0.000611603201991 0.000269419404064 -1.38143798291e+11 +UniRef50_UPI0003621B43 hypothetical protein, partial 2.14774681963e-05 1.32079766016e-05 -3338495234.85 +UniRef50_F4C7A6 0.000132501228975 4.23127123377e-05 -36410210904.0 +UniRef50_A0A058SUW3 Aminopeptidase N 0.00135730539713 0.000603066188573 -3.0449562405e+11 +UniRef50_C1KYE1 UPF0145 protein Lm4b_00206 0.000252976754703 0.00262455437968 9.57434989735e+11 +UniRef50_X1HW00 Marine sediment metagenome DNA, contig 2.24918768759e-05 3.10753539228e-05 3465255014.94 +UniRef50_UPI0004240D5A deoxyguanosinetriphosphate triphosphohydrolase 7.67713099362e-05 2.25363850358e-05 -21895304719.7 +UniRef50_Q7VSF4 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.00121381161181 0.000703135012379 -2.06166409897e+11 +UniRef50_P0AFM7 Phage shock protein A 0.00430849669855 0.00131110077178 -1.21008551782e+12 +UniRef50_D9RI97 KAP family P loop domain 2.86097518987e-05 1.84998222023e-05 -4081502681.23 +UniRef50_P95676 Alpha acetolactate decarboxylase 0.00502561603977 0.00460209865024 -1.70979167296e+11 +UniRef50_Q5HLB9 0.000404449273767 1.3402279265e-05 -1.57870470367e+11 +UniRef50_P0ACN9 HTH type transcriptional repressor CytR 0.0034596958985 0.000787133462401 -1.07894625148e+12 +UniRef50_UPI0002899BE2 LysR family transcriptional regulator 3.38659087046e-05 0.000355382544664 1.29800211389e+11 +UniRef50_I0C253 Arginine permease 0.0215364927056 0.0048707194372 -6.72817718049e+12 +UniRef50_I6TND0 0.0149196745975 0.00041399538111 -5.85612070436e+12 +UniRef50_D2VJL9 Predicted protein 4.16212611656e-06 2.47944454847e-05 8329520515.93 +UniRef50_B5FI46 Ribulokinase 0.00314829642289 0.000828862732927 -9.36383843289e+11 +UniRef50_F6AE19 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000432504887664 0.000342291567166 -36420224527.0 +UniRef50_UPI00046A2ACC hypothetical protein 6.03336173221e-05 4.09835822265e-05 -7811846619.73 +UniRef50_R7E993 ABC transporter ATP binding protein 0.000380417985794 0.00843277692777 3.25083611843e+12 +UniRef50_UPI0002625F3E inner membrane translocator 2.80488921251e-05 8.81686262712e-06 -7764206311.88 +UniRef50_UPI00034F3E03 PREDICTED 5.78674528727e-06 1.35868164547e-05 3148984447.93 +UniRef50_K2ET09 5.13683777198e-05 8.71913120182e-06 -17218024184.4 +UniRef50_G8VFU9 0.000245754526308 0.00818443852214 3.20494414772e+12 +UniRef50_A5UMD6 Imidazole glycerol phosphate synthase subunit HisH 0.00432207144325 0.000510634072383 -1.53872403822e+12 +UniRef50_E8JET5 0.000699816215255 0.000210998085778 -1.97341877343e+11 +UniRef50_UPI0004767186 tyrosine protein kinase 5.14798070652e-06 1.24490306067e-05 2947523438.66 +UniRef50_F0YJ58 0.000159894413794 0.000430282827554 1.09159120674e+11 +UniRef50_UPI00046523D9 LuxR family transcriptional regulator 1.33395908673e-05 0.000107855666581 38157299608.3 +UniRef50_UPI000479578E dTDP 4 dehydrorhamnose 3,5 epimerase 3.05745072204e-05 2.16364904375e-05 -3608387057.06 +UniRef50_A6LTH3 Phosphotransferase system PTS, lactose cellobiose specific IIA subunit 0.000301988791085 0.00053693946399 94852469820.7 +UniRef50_UPI0000F2F50C glutamyl Q tRNA ligase 0.000148616531043 0.00468366758614 1.83085576228e+12 +UniRef50_UPI0001D2EE73 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000278660683749 1.83035316085e-05 -1.0510937726e+11 +UniRef50_N0C910 IS3 Spn1, transposase 0.0293567644896 0.0167948224045 -5.07141017212e+12 +UniRef50_Q8DWS9 Membrane protein, putative 0.00047176087326 2.63539647265e-06 -1.89391711796e+11 +UniRef50_A9BQJ1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0164518363516 0.00915393675399 -2.94625162285e+12 +UniRef50_O66937 4 alpha glucanotransferase 3.23286954483e-06 0.000326711990062 1.30592490488e+11 +UniRef50_A6FVX6 Transcriptional regulator, MarR family protein 2.04133963314e-05 9.16620503164e-05 28763955933.0 +UniRef50_UPI00047CC502 hypothetical protein 5.42685064378e-06 7.56700283146e-06 864005700.787 +UniRef50_Q3IVA9 Transcriptional regulator, LacI family 0.000130167582368 0.000197977679469 27375768323.1 +UniRef50_B8EMC6 40 residue YVTN family beta propeller repeat protein 9.08940874882e-06 1.56118981588e-05 2633209014.75 +UniRef50_D8GUE2 Predicted transcriptional regulator, marR family 0.000814717961549 0.000759664973668 -22225566783.7 +UniRef50_O22514 Proline rich protein 8.03917357581e-05 1.76450228547e-05 -25331617987.9 +UniRef50_U7G864 1.87288527963e-05 2.71089722478e-05 3383157058.2 +UniRef50_E0SFZ4 Cobalamin synthesis protein 3.49261746501e-06 4.34942840909e-06 345905092.378 +UniRef50_Q9JVX8 DNA polymerase III subunit alpha 3.30162672461e-05 0.00336147975305 1.34374155406e+12 +UniRef50_P54388 NADP specific glutamate dehydrogenase 0.000337907212892 0.0104425555563 4.07937053421e+12 +UniRef50_W1U3S2 0.000256878736369 0.00249157891501 9.02175884972e+11 +UniRef50_M7XCW4 Sodium 1.78618307919e-05 2.77278640058e-05 3983038678.29 +UniRef50_UPI0003B534E7 50S ribosomal protein L33 0.001376077638 0.00273300282519 5.47807349413e+11 +UniRef50_UPI00046CEEB8 hypothetical protein 4.5502863458e-05 1.62557467417e-05 -11807419920.9 +UniRef50_UPI00016C3E34 30S ribosomal protein S4 5.32299285346e-05 0.000237052723203 74211517966.8 +UniRef50_Q5HRX0 0.00886325496954 0.00478165043983 -1.64779383556e+12 +UniRef50_UPI0003608953 hypothetical protein 3.55755776883e-06 9.03389444709e-06 2210864319.22 +UniRef50_M1F771 6.84979970328e-05 5.93571061799e-05 -3690289808.66 +UniRef50_O87198 Homocitrate synthase 4.97507446483e-06 0.0462358003109 1.8663951464e+13 +UniRef50_Q55863 Pyruvate kinase 1 1.809883044e-05 1.49656893162e-05 -1264887519.64 +UniRef50_UPI00046D1C25 NADH 0.000115721758712 3.90686069697e-05 -30945817998.3 +UniRef50_A7NJ00 7.76789925156e-05 0.000121540426983 17707399334.8 +UniRef50_A4EH59 0.000461785872597 0.000512015368673 20278263951.1 +UniRef50_I1EUA2 1.49779302758e-05 3.04821339869e-06 -4816173097.37 +UniRef50_B5YZZ5 Ethanolamine utilization cobalamin adenosyltransferase 0.000322178653362 0.000244063392719 -31536089303.6 +UniRef50_UPI000373E5C0 hypothetical protein 3.41967650421e-06 4.21488006869e-06 321033437.226 +UniRef50_P0ADK2 0.00111854703114 0.000848379043652 -1.09070131883e+11 +UniRef50_G0DTN7 0.000158607558343 0.00484630578995 1.89248130063e+12 +UniRef50_H6VX72 0.00113245796655 0.00218255043805 4.23935216828e+11 +UniRef50_F5Y9N5 CoxE family protein 0.00052451288528 0.00121952776517 2.80586035803e+11 +UniRef50_Q28K41 Amino acid amide ABC transporter substrate binding protein, HAAT family 0.00636023133631 0.000762844857664 -2.25973360909e+12 +UniRef50_Q0C0L1 ATP dependent protease ATPase subunit HslU 0.00799186931531 0.00142960710333 -2.64926578299e+12 +UniRef50_Q9RZB3 dTDP glucose 4,6 dehydratase 0.000106134767253 0.0641356942014 2.58495188746e+13 +UniRef50_Q8E418 DNA translocase FtsK 0.00511595474315 0.00405708926061 -4.27476989042e+11 +UniRef50_B0VB35 Aldehyde dehydrogenase, phenylacetic acid degradation 0.000126233983302 0.00635835113196 2.51598216959e+12 +UniRef50_UPI0004799256 hypothetical protein 9.38623079481e-06 1.67740282149e-05 2982544476.96 +UniRef50_O66490 Adenylate kinase 9.94787082059e-06 5.64104386291e-05 18757508784.1 +UniRef50_UPI00046ED1E9 ABC transporter permease 1.77766167725e-05 0.0002052359528 75679634339.2 +UniRef50_O32978 O acetylserine sulfhydrylase 0.000509942216265 0.00154193267087 4.16627210469e+11 +UniRef50_UPI0004091FE8 helicase 6.17598646915e-07 1.23310297591e-05 4728855879.96 +UniRef50_A4SFY3 Serine hydroxymethyltransferase 0.000125927143782 0.000176834838788 20552061181.6 +UniRef50_D7BLM0 Extracellular solute binding protein family 5 0.00030202361837 0.0101818178918 3.98859418689e+12 +UniRef50_S1SCM4 LigA 0.000197274840002 0.00084575975439 2.61801317743e+11 +UniRef50_P42914 Probable fimbrial chaperone YraI 0.00301925230417 0.000517721307994 -1.0098987604e+12 +UniRef50_P44992 0.000959939369103 0.000924123353799 -14459364890.2 +UniRef50_C6BH49 Coproporphyrinogen III oxidase 0.000179186387112 0.00367707002983 1.41213855043e+12 +UniRef50_UPI0003B759B0 urease subunit alpha 7.53532873147e-06 2.93930562942e-05 8824232841.54 +UniRef50_A3PL00 TspO and MBR like proteins 0.013832853738 0.00823006501382 -2.2619145619e+12 +UniRef50_B7LKC2 Cytoskeleton protein RodZ 0.0029254646315 0.00270144923128 -90437766046.9 +UniRef50_Q3J225 Bacteriophage head tail adaptor 0.00279930612105 0.00170375022228 -4.42289360316e+11 +UniRef50_J7PFG8 9.06782017489e-05 0.000708295725507 2.4933977336e+11 +UniRef50_T0TD56 Carbonic anhydrase 0.00542660840758 0.000483065376332 -1.99576898581e+12 +UniRef50_Q59087 Catabolic 3 dehydroquinate dehydratase 0.000294910928794 0.00619208702156 2.38076235514e+12 +UniRef50_D7WB79 Succinate dehydrogenase flavoprotein subunit 0.000243215437692 0.00569247306942 2.19993217584e+12 +UniRef50_Q3IZA2 Trehalose 6 phosphate phosphatase 0.000600768982605 0.000270519119271 -1.33325922449e+11 +UniRef50_I3BX28 3.90161153479e-05 7.10788845762e-05 12944133391.9 +UniRef50_G7M5J0 SEC C motif domain protein 0.000101748244975 0.000962600041849 3.47536434238e+11 +UniRef50_UPI0002003503 ABC transporter, ATP binding protein, partial 1.68027076777e-05 3.41597938571e-05 7007268686.02 +UniRef50_A6LYT6 Baseplate J family protein 0.000650381606123 0.00133483873173 2.76323740841e+11 +UniRef50_T1YD73 Gluconate operon transcriptional repressor 0.0121377771378 0.00867676883901 -1.39725152157e+12 +UniRef50_B8CZ12 ATP synthase subunit alpha 4.59639012406e-06 2.23952231133e-05 7185607293.98 +UniRef50_M1N6Y0 0.000613024942053 0.00153220657516 3.71084904912e+11 +UniRef50_Q9I4L1 Probable deoxyguanosinetriphosphate triphosphohydrolase 0.000775851158395 0.000270893432557 -2.03857630449e+11 +UniRef50_UPI00036419A0 hypothetical protein 6.20276273565e-06 9.530619177e-06 1343496482.76 +UniRef50_Q04J73 Holo [acyl carrier protein] synthase 4.45916815382e-05 0.00251176677793 9.96028862056e+11 +UniRef50_S5RIC3 0.000490241543964 0.000760472202226 1.09095432843e+11 +UniRef50_UPI000364B6F1 hypothetical protein 5.80894541569e-06 0.000251114759401 99032967346.6 +UniRef50_B0CE03 Acyl carrier protein 0.0017154385674 0.00276833520407 4.25067292718e+11 +UniRef50_I3TL38 UDP 2,3 diacylglucosamine hydrolase 0.000165322330884 0.000473770115279 1.2452415564e+11 +UniRef50_Q9RWB2 Citrate synthase 8.2782650063e-06 0.0385771009313 1.55707070031e+13 +UniRef50_D4LGP4 Tryptophanyl tRNA synthetase 0.000618812028312 0.00416823570762 1.43294589566e+12 +UniRef50_A6LY82 Alpha beta superfamily like hydrolase 0.0013730328516 0.00145778439525 34215238189.9 +UniRef50_V5XSJ4 Lipoprotein 2.36818614762e-05 4.3447100638e-05 7979469596.38 +UniRef50_P20356 Regulatory protein RepA 0.000249990721098 0.016155365836 6.42119511479e+12 +UniRef50_UPI0003B686D0 PREDICTED 2.54906601227e-05 4.96192012366e-05 9740988138.18 +UniRef50_A0A033G8H1 3.24643977845e-05 5.21538458851e-05 7948871814.91 +UniRef50_H1XZH3 Aldo keto reductase 0.00128867913382 0.0102641093346 3.62349131297e+12 +UniRef50_L8NEI8 Lipopolysaccharide kinase family 0.00108529104183 0.000322750497486 -3.07846975176e+11 +UniRef50_G8V9R1 Permease 0.000574851759676 0.0041469115867 1.44208438627e+12 +UniRef50_W1YFP0 Nitrate reductase, beta subunit 5.79082618336e-05 1.70082095485e-05 -16511853007.6 +UniRef50_UPI000312D337 hypothetical protein 2.48120615481e-05 5.37398358811e-05 11678497481.9 +UniRef50_E8U983 GAF domain protein 1.77074143499e-05 0.0012936265149 5.1510419818e+11 +UniRef50_I6TS63 ABC transporter permease 0.00532495166308 0.00171476255206 -1.45747764612e+12 +UniRef50_K4KH04 Protein yffB 7.2248439142e-05 4.55911756842e-05 -10761864379.3 +UniRef50_G7M8Y3 Flagellar biosynthetic protein FlhF 8.60530369777e-05 0.000409394080697 1.3053674719e+11 +UniRef50_P52311 Modification methylase XorII 0.0146474993026 0.00170584286275 -5.22470551673e+12 +UniRef50_F0XXV7 0.000413160251245 0.00060959984102 79305072977.0 +UniRef50_E5QY81 0.00205589412918 1.62694473932e-05 -8.23421513048e+11 +UniRef50_UPI00047BEFD4 HAD family hydrolase 1.5244037559e-05 4.04382963381e-05 10171231437.4 +UniRef50_G8PNB5 Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase 8.697833844e-05 0.000465159563536 1.52676401377e+11 +UniRef50_A0R079 Glutamine synthetase 1 0.00618672950365 0.0238869541307 7.14579788814e+12 +UniRef50_E2NST4 0.000149861358975 0.00100896906212 3.46832322197e+11 +UniRef50_V5DMC9 Selenocysteine specific translation elongation factor 0.00413498163856 0.000328129672448 -1.53687285405e+12 +UniRef50_W8UPZ5 Oxygenase subunit of ring hydroxylating dioxygenase 0.000446643936995 0.0085848265494 3.28548418736e+12 +UniRef50_Q3J1A8 1 deoxy D xylulose 5 phosphate synthase 1 0.00504664504189 0.00119862230715 -1.55349399856e+12 +UniRef50_C1DPC3 Cyclic pyranopterin monophosphate synthase accessory protein 2.42227587904e-05 3.86187660998e-05 5811844809.68 +UniRef50_P0AEJ3 Isochorismate synthase EntC 0.00337275905119 0.000939285038917 -9.82423320838e+11 +UniRef50_B7G0W9 Predicted protein 0.000101605224956 3.24695860583e-05 -27910905812.7 +UniRef50_G9YRQ6 1.45412439407e-05 2.9235060717e-05 5932074146.0 +UniRef50_Q5HKS8 Cell wall surface anchor family protein 0.00845933571301 0.00388288149502 -1.84757072721e+12 +UniRef50_J7MBF6 0.000320466675773 0.000256679647439 -25751606093.3 +UniRef50_P18156 Glycerol uptake facilitator protein 0.0125053930879 0.00498983932975 -3.03412127838e+12 +UniRef50_A5EPJ2 DNA ligase 2.2825243182e-06 3.47441570205e-06 481181177.812 +UniRef50_T2QWI5 4.29567620508e-06 3.02467766786e-05 10476777717.0 +UniRef50_Q2FZ98 UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141 0.0205090440704 0.00514926989288 -6.20092932108e+12 +UniRef50_Q2IM08 2.78216273688e-05 2.09805728043e-05 -2761817676.87 +UniRef50_UPI00036488F7 hypothetical protein 6.92167640613e-06 2.09258195278e-05 5653644428.39 +UniRef50_Q99Y73 Endonuclease MutS2 0.00706263776976 0.00623248559896 -3.35142618465e+11 +UniRef50_A5UP17 O linked GlcNAc transferase 0.0033237759242 0.000205795613371 -1.2587669134e+12 +UniRef50_UPI00047C28A2 3,4 dihydroxy 2 butanone 4 phosphate synthase 5.59605003346e-06 0.000103052724277 39344455320.0 +UniRef50_UPI00042B2DF2 Mitochondrial ribosomal L11 like protein 1.71016689707e-05 8.13424551744e-05 25934793713.5 +UniRef50_UPI00037FB3DE hypothetical protein 6.63790731981e-06 4.00451823048e-06 -1063131490.68 +UniRef50_E9T6B7 Periplasmic binding protein 2.40085008347e-06 1.44946054887e-05 4882397464.15 +UniRef50_S5CVC3 Permeases of the major facilitator superfamily 0.000973706705447 0.00688556650192 2.38669034651e+12 +UniRef50_UPI0003778082 hypothetical protein 3.63013420273e-06 6.15724720193e-06 1020226528.94 +UniRef50_Q3HKI7 TraG 0.037812308622 0.0105863415612 -1.09914570026e+13 +UniRef50_P0AF68 tRNA threonylcarbamoyladenosine biosynthesis protein TsaE 0.00177211458413 0.00115810472625 -2.47883314374e+11 +UniRef50_UPI0002657B93 PREDICTED 1.13205118991e-05 1.00591106229e-05 -509243174.336 +UniRef50_Q1CS39 Uroporphyrinogen III cosynthase 0.000735241296867 0.00258144079485 7.4533339275e+11 +UniRef50_P28722 0.000710199154162 0.00375208555703 1.22804686898e+12 +UniRef50_Q6GIH0 UPF0051 protein SAR0880 0.0382831699031 0.0832777096523 1.81648478418e+13 +UniRef50_UPI0003657D51 hypothetical protein 3.78243745544e-06 5.86980088185e-06 842694230.071 +UniRef50_D3E3M2 2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase 0.00305550564105 0.00136802267205 -6.8125758233e+11 +UniRef50_Q88MV0 Tyrosine recombinase XerD 0.000692567283908 0.00547392385327 1.93029232089e+12 +UniRef50_A6LWP7 0.000224249102288 0.000343391517665 48099255129.5 +UniRef50_R7IGE7 Cyclodextrin ABC transporter permease protein 0.000135623708568 0.00166343344137 6.16795537465e+11 +UniRef50_U5MS83 0.000691844497729 0.000898955221447 83613140699.3 +UniRef50_R4X107 Anti sigma factor antagonist 2.95772072742e-05 0.00637752975321 2.56274634093e+12 +UniRef50_S6AEE6 Sulfate ABC transporter substrate binding protein CysP 0.000591948497369 0.00176220616743 4.7244738208e+11 +UniRef50_UPI000473E8E4 hypothetical protein, partial 9.33657234311e-06 1.34248000638e-05 1650467699.04 +UniRef50_X1SHF8 Marine sediment metagenome DNA, contig 1.95327356487e-05 9.25159393856e-05 29464214953.2 +UniRef50_F8G4J9 Major facilitator transporter 0.000547425438424 0.00019492851828 -1.42307332286e+11 +UniRef50_UPI000469A483 hypothetical protein 1.51890095805e-06 8.7464839371e-06 2917863941.06 +UniRef50_UPI00033433D0 PREDICTED 4.05926809863e-05 4.3033913243e-05 985555419.318 +UniRef50_G7U7D4 Sugar binding periplasmic protein 0.000243082038334 0.00497042504008 1.90848638083e+12 +UniRef50_A4WZR2 0.000274646083169 0.000108427347369 -67104543375.7 +UniRef50_F8HEX8 NADPH dependent fmn reductase 0.00441043002963 0.00443407671267 9546456120.68 +UniRef50_R0EB23 8.6836115524e-06 5.18817703389e-05 17439626803.1 +UniRef50_O66821 Hypoxanthine guanine phosphoribosyltransferase 3.30983163738e-05 2.64649898864e-05 -2677955303.03 +UniRef50_V5UIB0 CoA transferase 0.000926301094676 0.000824547351209 -41079234896.5 +UniRef50_UPI0004713504 hypothetical protein 2.37581834582e-06 3.16257156852e-05 11808542492.5 +UniRef50_UPI0004627EF4 hypothetical protein 3.18574123072e-06 6.6924765642e-06 1415712086.61 +UniRef50_UPI0003291A81 PREDICTED 0.000140923910209 0.000127514630105 -5413490928.36 +UniRef50_B9DT59 Sensor histidine kinase 0.0046540926974 0.00202108316608 -1.06297825845e+12 +UniRef50_Q3J2Y0 ABC oligo dipeptide transporter, fused ATPase subunits 0.000121586395184 0.000322003593166 80910882220.9 +UniRef50_UPI0001746395 Gluconate transporter 2.06752779835e-05 2.91398513791e-05 3417252151.8 +UniRef50_UPI0003730BCE hypothetical protein 1.3859305725e-05 1.15377818312e-05 -937227684.229 +UniRef50_Q131M0 Peptidyl tRNA hydrolase 7.09153483425e-05 3.36154058082e-05 -15058444522.9 +UniRef50_P10725 Alanine racemase 1 7.70874581362e-06 0.00187601451452 7.54257965518e+11 +UniRef50_J9P8Y9 2.71129857262e-05 2.62081901225e-05 -365277088.304 +UniRef50_A9BXI8 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 0.00157348506985 0.000525835247257 -4.22949089489e+11 +UniRef50_A0A010IRI1 Copper resistance , CopA family protein 6.34785855703e-05 0.00150847159516 5.8336141003e+11 +UniRef50_F6FVA2 NADH quinone oxidoreductase, F subunit 8.63153937979e-05 0.0358285430734 1.44295759207e+13 +UniRef50_Q2SBV0 Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation 9.68740775547e-05 0.000613247427171 2.08466257854e+11 +UniRef50_Q4L8V4 Sensory transduction protein LytR 0.0076652359971 0.00381291693776 -1.55522847753e+12 +UniRef50_UPI00037BA9AE hypothetical protein 2.9552656197e-05 1.16965239277e-05 -7208739716.5 +UniRef50_Q87HJ2 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 4.40081771352e-06 6.82662716615e-06 979329044.056 +UniRef50_B9KKK1 Transcriptional regulator, DeoR family 0.0100023148431 0.00516534795837 -1.95274288762e+12 +UniRef50_UPI0002628822 inosine uridine preferring nucleoside hydrolase 4.51647171601e-06 9.42215297768e-06 1980483724.81 +UniRef50_UPI00047EB05D hypothetical protein 8.3523522637e-06 2.18774661579e-05 5460254450.9 +UniRef50_Q4JMN7 Predicted flagellar hook capping protein 7.98460703656e-06 1.09763008102e-05 1207783488.63 +UniRef50_UPI000475B51F hypothetical protein 0.000191374008792 0.00149954655469 5.28125309862e+11 +UniRef50_UPI00028835CE glutamate dehydrogenase 2.91370767041e-05 2.62062440621e-06 -10705017186.1 +UniRef50_UPI00047A79FF LysR family transcriptional regulator 3.37756427904e-05 5.9431210237e-05 10357467407.4 +UniRef50_Q3A248 Phosphopentomutase 1.49042528663e-05 1.75922515904e-05 1085178070.37 +UniRef50_S2R0I0 Capsular polysaccharide synthesis protein 8.41593076416e-06 1.2508220615e-05 1652107630.83 +UniRef50_P06149 D lactate dehydrogenase 0.00145169944198 0.0116939203239 4.13491025621e+12 +UniRef50_UPI00037C3443 hypothetical protein 2.01509662751e-05 3.76295302541e-05 7056310764.42 +UniRef50_D2TN56 Translocation and assembly module TamA 0.00248494516097 0.000972029695316 -6.10782539043e+11 +UniRef50_R5IZV2 Rod shape determining protein MreB 0.000681000017594 0.00291018265994 8.99948387864e+11 +UniRef50_P96662 0.000224249102288 0.000431829731805 83802847436.8 +UniRef50_P71311 0.00499343963263 0.000705936347077 -1.73091768996e+12 +UniRef50_Q18BQ3 UPF0271 protein CD630_13840 0.00104337951329 0.000270106742557 -3.12179706669e+11 +UniRef50_UPI00047614B3 glutamate dehydrogenase 8.85420021886e-06 0.000401351760438 1.58456081547e+11 +UniRef50_Q3IVA8 0.0012561916514 0.000404543431768 -3.43820837164e+11 +UniRef50_R4Q3U4 0.00507079684378 0.00120537430691 -1.5605185122e+12 +UniRef50_P56793 50S ribosomal protein L16, chloroplastic 0.000260335164724 0.00263412892114 9.58329669192e+11 +UniRef50_Q8SQT7 Elongation factor 2 1.48196021316e-06 1.83406852024e-06 142150444.423 +UniRef50_Q3IVA2 0.00402760804569 0.00109672781525 -1.18323231497e+12 +UniRef50_G7WCF3 5.72526777832e-05 0.0011012361577 4.21468941962e+11 +UniRef50_Q9HW91 Methyl accepting chemotaxis protein PctB 0.00128484215468 0.000568132442427 -2.89344505854e+11 +UniRef50_N0CH82 Periplasmic binding protein 3.74979745749e-06 8.21694446542e-06 1803442065.16 +UniRef50_Q6GCY8 Purine nucleoside phosphorylase DeoD type 0.0147502511198 0.00792402011862 -2.75583322245e+12 +UniRef50_M4R901 0.000129128616484 0.00309372930715 1.19684567856e+12 +UniRef50_Q03727 Transport processing ATP binding protein ComA 0.0193933915309 0.0104226043337 -3.62161687545e+12 +UniRef50_P19926 Glucose 1 phosphatase 0.00316095952383 0.00123806024309 -7.76298036262e+11 +UniRef50_V5VFB4 Transcriptional regulator 0.000128688405295 0.0053388440446 2.10340376738e+12 +UniRef50_Q3IWX7 Putative phage tail tube protein FII 0.0388398445081 0.00593171217248 -1.32854168521e+13 +UniRef50_UPI000309F49D hypothetical protein 1.08743757233e-05 1.02066381502e-05 -269573852.322 +UniRef50_UPI0002B9193E hypothetical protein 3.82107221024e-06 0.00369339488053 1.48952622258e+12 +UniRef50_UPI0004739302 urea ABC transporter ATP binding protein, partial 0.000326150705729 0.000211296038916 -46368238417.7 +UniRef50_M5U8U8 UPF0246 protein RSSM_04267 8.6930495024e-06 8.38172890116e-06 -125683947.054 +UniRef50_W0ACK7 3.47572723268e-05 6.47003350976e-05 12088381883.3 +UniRef50_Q5HL17 Pyruvate phosphate dikinase 0.0103404362982 0.00472827464497 -2.26569852838e+12 +UniRef50_P0C348 Peptide chain release factor 2 0.000859378625711 0.000202734580221 -2.65095259093e+11 +UniRef50_UPI00036F8282 hypothetical protein 5.27083749727e-05 8.60476422921e-05 13459471335.7 +UniRef50_Q8XW28 Urocanate hydratase 3.71421864845e-05 0.000139629577818 41375417542.9 +UniRef50_Q4L811 Type II pantothenate kinase 0.0101039800657 0.00294481699924 -2.89024198274e+12 +UniRef50_Q8G4X3 Glutamyl Q tRNA synthetase 4.29572152604e-06 5.27560670209e-06 395591670.115 +UniRef50_UPI0001850812 shikimate 5 dehydrogenase 4.69357380054e-05 4.69444404941e-05 3513301.47974 +UniRef50_Q51391 Glycerol 3 phosphate regulon repressor 0.00077097421028 0.000425937555561 -1.39295531586e+11 +UniRef50_F0YC37 0.000183633372986 0.000196404531762 5155873517.61 +UniRef50_A3TSY0 Hemolysin type calcium binding protein 1.44255462819e-06 2.22952713197e-06 317710457.015 +UniRef50_T0SW85 Transcription repair coupling factor 0.00620322160439 0.00331695598001 -1.16522085102e+12 +UniRef50_UPI00036A708B hypothetical protein 1.14746387603e-05 6.11765316988e-06 -2162680820.46 +UniRef50_Q8CS12 0.00770624124112 0.0046984691421 -1.21427450589e+12 +UniRef50_UPI0003EB5DA3 50S ribosomal protein L36 9.59421150765e-05 0.000860145743281 3.08518382539e+11 +UniRef50_R4WT31 Ribonucleoside diphosphate reductase 9.56358134288e-05 0.0079963623657 3.18962026197e+12 +UniRef50_UPI00016AD465 hypothetical protein 2.80806776835e-05 0.000237999962373 84746991228.7 +UniRef50_UPI000262572E acetoin dehydrogenase E2 subunit dihydrolipoyllysine residue acetyltransferase 4.30090147939e-06 1.09067259605e-05 2666852405.61 +UniRef50_UPI000367C756 hypothetical protein 0.000146291438332 0.000391575811449 99024311405.1 +UniRef50_B5XYB9 Hydroxylamine reductase 0.00236008466842 0.000877741260164 -5.98440224314e+11 +UniRef50_A5UNH1 Lipopolysaccharide cholinephosphotransferase 0.00348214839823 0.000526121124967 -1.19338448475e+12 +UniRef50_UPI000408C071 hypothetical protein 1.94642124517e-05 3.4385740373e-05 6024003929.57 +UniRef50_UPI0001BF66E3 hypothetical protein SMAC_10240 0.000142623931941 0.000537925129529 1.59587944357e+11 +UniRef50_Q55480 2.74486089077e-05 7.70182588018e-05 20011875950.3 +UniRef50_L7WZA3 0.0175953067907 0.0010197621946 -6.69175075825e+12 +UniRef50_P16263 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.0338216081e-05 0.000146751354286 55071657870.8 +UniRef50_B9KS54 0.00586237270687 0.00136259929603 -1.81661374439e+12 +UniRef50_B9KS55 9.59710141129e-05 0.000150161036537 21877177039.0 +UniRef50_Q041L5 ABC type cobalt transport system, permease component CbiQ related transporter 0.0183782597345 0.0121791887134 -2.50264104237e+12 +UniRef50_UPI0003768F93 hypothetical protein 2.35481000484e-06 3.26200521049e-06 366245837.058 +UniRef50_I3UM51 0.000644764907314 0.000292830894442 -1.42080079712e+11 +UniRef50_F6D1X2 Dihydroorotase 0.00157733689139 0.000602662883296 -3.93487857663e+11 +UniRef50_F9YWS1 0.000225094201639 0.0034173265364 1.28874336664e+12 +UniRef50_A6LRH2 Histidine kinase internal region 0.000474382357875 0.000650807799911 71225115933.6 +UniRef50_UPI000382BC4C hypothetical protein 0.00182551647073 0.000568346028769 -5.07535134635e+11 +UniRef50_W0YNP0 AMP binding protein 0.000288314307811 0.000111510398435 -71377907843.0 +UniRef50_A4XNT2 0.00117565402438 0.000875416956622 -1.21209388577e+11 +UniRef50_A8LLT3 Phosphate acyltransferase 0.00702147520337 0.00140734449033 -2.26649346199e+12 +UniRef50_UPI0004675B23 queuine tRNA ribosyltransferase 4.39710445179e-06 6.33537500147e-05 23801521293.1 +UniRef50_F3YPM3 Prephenate dehydratase 0.00329528259278 0.00658125512197 1.32658743345e+12 +UniRef50_Q9X5M1 Diaminopimelate decarboxylase 0.000112090516671 0.00330277620106 1.2881189649e+12 +UniRef50_H8FVT2 CRISPR associated helicase Cas3 0.000172652722503 2.01437157537e-05 -61569757520.5 +UniRef50_UPI00035C4745 hypothetical protein 5.05968255118e-06 4.55761272721e-05 16356985926.5 +UniRef50_Q2NI23 DNA primase small subunit PriS 0.0029373144459 0.000728989697082 -8.91527800291e+11 +UniRef50_UPI000310953A quinone oxidoreductase 5.4375340031e-06 5.95408010082e-05 21842152811.7 +UniRef50_R0QWV3 7.24736421567e-05 0.000718815179355 2.60936010069e+11 +UniRef50_Q5HLY5 0.00517833153236 0.00346075285877 -6.93407587589e+11 +UniRef50_UPI00037F4158 hypothetical protein 9.91524753771e-06 3.16205065818e-05 8762679429.58 +UniRef50_UPI0003725D3A hypothetical protein 3.12817244687e-06 4.16706338478e-05 15560064636.7 +UniRef50_Q8EWD1 Serine hydroxymethyltransferase 6.19148684601e-05 0.00010554432247 17613745977.4 +UniRef50_A5IQ08 0.00201046198469 0.000424916122588 -6.40104321365e+11 +UniRef50_B2TJK8 Spore coat protein, CotS family 0.000225151650042 0.00202254361545 7.25629192916e+11 +UniRef50_UPI000367BD21 hypothetical protein, partial 4.12055616661e-06 3.56846262027e-06 -222886939.607 +UniRef50_UPI000255A109 FrpC, partial 3.08036837243e-06 2.59877457288e-06 -194425326.699 +UniRef50_UPI000372D109 hypothetical protein 1.22020072374e-05 2.10262272843e-05 3562445918.29 +UniRef50_U7FV20 6.39548651838e-05 1.60285012635e-05 -19348461237.2 +UniRef50_X5K4I4 ABC transporter, ATP binding permease protein 0.00465586292638 0.00124285992577 -1.3778711936e+12 +UniRef50_D5STS9 0.0132522273193 0.00215545832029 -4.47990181756e+12 +UniRef50_Q5XAE6 Biotin carboxyl carrier protein of acetyl CoA carboxylase 0.0043836658129 0.000379421891038 -1.61656240885e+12 +UniRef50_J2YH36 4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein 0.000172368031437 0.00140500936133 4.97632431087e+11 +UniRef50_UPI00036BF70E hypothetical protein 7.70368651236e-06 0.00115534270734 4.63315955824e+11 +UniRef50_C5BLW1 Type IV pilus biogenesis stability protein PilW 8.63231413958e-06 2.04455636538e-05 4769153793.76 +UniRef50_A7FZ47 30S ribosomal protein S13 0.0154109451276 0.00266251245188 -5.14669871204e+12 +UniRef50_W9WZ32 2.11218766553e-05 2.38252674965e-05 1091392056.93 +UniRef50_UPI00028929E9 iron ABC transporter permease 1.67519009136e-05 2.00352549588e-05 1325530319.33 +UniRef50_O66680 Leucine tRNA ligase subunit alpha 2.48571772918e-06 9.46962923702e-06 2819490777.95 +UniRef50_A0A021WYJ6 5.64858555577e-05 3.63438559073e-05 -8131572429.0 +UniRef50_Q0ADJ4 Nucleotidyl transferase 0.00129186278556 0.00460170035933 1.33622204481e+12 +UniRef50_UPI00037CB764 hypothetical protein 1.01562500624e-05 1.8431241672e-05 3340715658.36 +UniRef50_UPI00018512AA 3 hydroxybutyryl CoA dehydrogenase 7.84977158673e-05 0.00153801146882 5.89223612314e+11 +UniRef50_Q9RUS8 Spermidine putrescine ABC transporter, permease protein 0.00018294959072 0.0238697283824 9.56264326767e+12 +UniRef50_UPI00032A2821 PREDICTED 0.00242545884748 0.000427679407501 -8.0652807543e+11 +UniRef50_V6EZP6 1.75155715992e-05 1.68437649277e-05 -271216597.279 +UniRef50_R4XX04 Phage related protein 7.43082655217e-05 0.00565355020273 2.25240843505e+12 +UniRef50_UPI0004758F1B hypothetical protein 6.59494023382e-05 1.27971992744e-05 -21458196627.7 +UniRef50_P26395 Protein RfbI 1.11922254866e-05 1.6310161089e-05 2066173406.82 +UniRef50_A4VMA8 Trk system potassium uptake protein 0.00188204989891 0.000938080986251 -3.81091833842e+11 +UniRef50_Q28TW0 Molybdenum cofactor sulfurylase 9.57124006777e-06 1.06440384377e-05 433101866.657 +UniRef50_UPI000287C21F phosphoenolpyruvate protein phosphotransferase 3.91619910976e-06 0.000322519280133 1.28623973508e+11 +UniRef50_Q8A0B5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 5.76859855432e-06 0.00516171581395 2.08151916144e+12 +UniRef50_Q2J545 Cysteine tRNA ligase 3.13529146269e-06 1.00214658228e-05 2780033092.04 +UniRef50_Q8CMP3 Transporter 0.00923917330682 0.00313485147203 -2.46438963316e+12 +UniRef50_A4G266 Phosphate starvation inducible protein 0.000278991505659 0.00169310147226 5.70893546597e+11 +UniRef50_A7X442 NH dependent NAD(+) synthetase 0.0249703906252 0.0107362000497 -5.74651740849e+12 +UniRef50_UPI000471E89E pseudoazurin 0.000269817270939 0.000154455829908 -46572829388.3 +UniRef50_F0RN28 Carboxyl terminal protease 0.000222649047128 0.0471826445006 1.89583264285e+13 +UniRef50_A6L7M5 Tryptophan synthase beta chain 2.86118987558e-06 0.0010859989366 4.37275999946e+11 +UniRef50_A4WU00 O antigen polymerase 0.00594215826773 0.00239549665815 -1.43183081422e+12 +UniRef50_E0MTZ8 Replication protein C 2.46580535838e-05 5.60785617514e-06 -7690798466.1 +UniRef50_Q72KJ4 Pili assembly protein pilC 0.000232914420024 0.0442081867655 1.77533570832e+13 +UniRef50_X5DQJ7 ABC type glycine betaine L proline transporter, substrate binding lipoprotein 0.000181483648491 0.00459624578059 1.78229364795e+12 +UniRef50_P0CZ58 Fructose bisphosphate aldolase 0.0114601414292 0.00464358806397 -2.75192624206e+12 +UniRef50_M4ZP55 7 carboxy 7 deazaguanine synthase 0.000155344028336 0.00215656158993 8.07916087315e+11 +UniRef50_R5IQ58 Collagenase and related proteases 0.000580853182019 0.00117439606395 2.39620545026e+11 +UniRef50_V5X0C1 Nitrate reductase 0.0120705325822 0.00400976230393 -3.25423187811e+12 +UniRef50_UPI00046807CF tRNA delta isopentenylpyrophosphate transferase 2.12031682705e-05 1.1385556075e-05 -3963490518.97 +UniRef50_W6RZJ6 Amidase 0.000364134394391 0.000668144940642 1.2273278815e+11 +UniRef50_C7R130 D lactate dehydrogenase 3.96102821484e-05 0.00350871892545 1.40052173005e+12 +UniRef50_D8JJL0 OmpW family protein 0.000200790419604 0.00482100762317 1.86523838152e+12 +UniRef50_UPI0003716EE9 amino acid ABC transporter 6.11544587779e-06 0.00157542638822 6.33550085033e+11 +UniRef50_I3THN7 Binding protein dependent transport systems inner membrane component 0.00589932216329 0.00347370654768 -9.79250789673e+11 +UniRef50_UPI000441338E hypothetical protein AURDEDRAFT_112432 3.82578597592e-06 1.83276821125e-06 -804605728.676 +UniRef50_G7M1N3 0.00072439395647 0.000716471502476 -3198391896.82 +UniRef50_UPI00046ADCCD hypothetical protein 0.000280397079295 6.82258494432e-05 -85656129125.0 +UniRef50_Q9CIV7 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 0.00225561750896 0.00108558558255 -4.72356246598e+11 +UniRef50_W7D2I2 6.23198570249e-05 0.0001552207238 37505219938.9 +UniRef50_UPI00047862A8 molecular chaperone DnaJ 4.59511379862e-06 1.26932244701e-05 3269306653.07 +UniRef50_D4ZAF4 Iron ABC transporter, permease protein 0.00163088669817 0.000777544647996 -3.4450465734e+11 +UniRef50_B0R332 Tryptophan synthase beta chain 3.70425743152e-05 1.84429427873e-05 -7508899490.96 +UniRef50_M9RQH1 GTPase HflX 0.00325100596897 0.000550866565026 -1.09007941181e+12 +UniRef50_Q9ZBH5 Diaminopimelate decarboxylase 0.00288743181558 0.00519032246359 9.29705214248e+11 +UniRef50_A1HSV6 3.60400990814e-05 9.73536189965e-05 24753020391.2 +UniRef50_Q5F6T9 4.80136652557e-05 0.000536945932242 1.97387956056e+11 +UniRef50_UPI00047BB8D4 lysyl tRNA synthetase 3.47551737236e-06 1.26051048771e-05 3685726508.3 +UniRef50_Q9K0S5 0.000198328890814 0.00146335225451 5.10705455508e+11 +UniRef50_A5VFM2 tRNA specific 2 thiouridylase MnmA 0.00316692690828 0.00110555685172 -8.32200387688e+11 +UniRef50_UPI00045D6A2D PREDICTED 0.000100241794407 7.46819813078e-06 -37453839276.8 +UniRef50_C4XPA8 2 isopropylmalate synthase 7.96967558959e-06 8.42148555821e-06 182401228.664 +UniRef50_UPI0003316925 PREDICTED 7.65691660987e-05 5.99019686016e-05 -6728752159.09 +UniRef50_I4DZ12 Response regulator homolog 0.00513658891457 0.00190985672017 -1.30267138334e+12 +UniRef50_C0ENU4 0.000139646004992 5.4765808357e-05 -34267176978.7 +UniRef50_Q167Z8 ExbD TolR family biopolymer transport protein, putative 0.0295957277679 0.000758875099014 -1.16417912904e+13 +UniRef50_UPI0002488642 deoxyguanosinetriphosphate triphosphohydrolase 5.5381885817e-05 3.90276877867e-05 -6602390433.41 +UniRef50_R9SLZ8 0.00457359287735 0.000299307471484 -1.72558146973e+12 +UniRef50_UPI0002000344 hypothetical protein 0.000313700267745 0.000952263440841 2.5779578903e+11 +UniRef50_D9USA0 YjeF family protein 1.13887077819e-05 7.26357641651e-05 24726188247.8 +UniRef50_B6IS55 Oxidoreductase, short chain dehydrogenase 0.00026397621598 0.000646564723045 1.54455675191e+11 +UniRef50_P45104 Ribosomal large subunit pseudouridine synthase B 0.00242504510072 0.00256826798284 57820835054.2 +UniRef50_A5UP79 Integrase recombinase protein 0.00212371951123 0.000267658645188 -7.49314548048e+11 +UniRef50_UPI000467ACA1 hypothetical protein 2.17928376163e-05 2.53818858009e-05 1448942794.7 +UniRef50_P0A9S6 Glycerol dehydrogenase 0.00405720776021 0.00155954928252 -1.00833537716e+12 +UniRef50_Q8X6C7 Xanthine dehydrogenase molybdenum binding subunit 0.00221401709463 0.000409536987534 -7.28490762697e+11 +UniRef50_E4ZBB9 0.000364134394391 0.00202507087052 6.70540437396e+11 +UniRef50_D2S3Z6 SSS sodium solute transporter superfamily 0.000278327865847 0.0351865339579 1.40928711712e+13 +UniRef50_Q4FS37 Ribosomal RNA small subunit methyltransferase G 1.006468976e-05 0.0118076778847 4.76284121978e+12 +UniRef50_C1FUR3 HTH domain protein 0.000620108639606 0.00120866584384 2.37607765758e+11 +UniRef50_C1CEF7 Mobile genetic element 2.00515107928e-05 7.39458745753e-05 21757816017.2 +UniRef50_UPI00047EF6CC bis tetraphosphatase 2.36683132814e-05 0.000331859667447 1.2442063161e+11 +UniRef50_I0EKX1 Antibiotic transport system permease protein 0.000102950724233 0.00186667679025 7.12037856205e+11 +UniRef50_A8LJS3 1.91389439336e-05 6.31886418883e-06 -5175623513.05 +UniRef50_M1MUH2 Flagellar hook associated protein 2 8.59876967804e-05 0.000642207565288 2.24552786502e+11 +UniRef50_A8LJS1 0.000332096172905 4.12804261207e-05 -1.17405885687e+11 +UniRef50_X3EKE6 0.00177567888227 0.000554814616145 -4.92877885922e+11 +UniRef50_Q01S06 0.00893348343297 0.00043007287164 -3.43293119219e+12 +UniRef50_A3WQ21 0.000142416686256 0.00140844720854 5.11112057786e+11 +UniRef50_K0EZI3 6.50429601061e-06 0.00019013440353 74133727800.2 +UniRef50_P0CE57 Transposase InsH for insertion sequence element IS5R 0.0245133048012 0.0107978567289 -5.53709469426e+12 +UniRef50_B3PCQ0 ACT domain protein phosphoserine phosphatase SerB 9.27484002093e-05 0.00595274781151 2.36575367262e+12 +UniRef50_Q5HR97 Teichoic acids export ATP binding protein TagH 0.01901823912 0.00349176346949 -6.26822875139e+12 +UniRef50_P37386 Probable cadmium transporting ATPase 0.0101330420044 0.00523637317601 -1.9768452949e+12 +UniRef50_Q71YA8 4 hydroxy tetrahydrodipicolinate reductase 0.00720325615299 0.00300631777061 -1.69435552719e+12 +UniRef50_D2NR34 ATPase with chaperone activity, ATP binding subunit 0.000134968337407 0.00505207978537 1.98509823128e+12 +UniRef50_P17618 Riboflavin biosynthesis protein RibD 6.79130371155e-06 0.000207239793125 80923514955.6 +UniRef50_F6P2R4 0.00577697229933 0.00128903920536 -1.81183366317e+12 +UniRef50_Q58N56 Gp12 7.85021435854e-05 1.7730402895e-05 -24534297469.8 +UniRef50_P0AD15 Sensor histidine kinase YehU 0.00340611863324 0.000995295032133 -9.732790719e+11 +UniRef50_R7PSE2 0.00237831582337 0.00108330787793 -5.22810599109e+11 +UniRef50_P37061 NADH oxidase 0.000619214725088 0.0024204010713 7.27161031007e+11 +UniRef50_R9SMN4 2 phosphosulfolactate phosphatase ComB 0.00224543151923 0.000257169844878 -8.0268563665e+11 +UniRef50_Q1JFV4 0.00798364175219 0.00468133815433 -1.33318048628e+12 +UniRef50_UPI00030AE818 hypothetical protein 1.1287613882e-05 1.60554340407e-05 1924827505.8 +UniRef50_UPI000255CD3D glutamate synthase small subunit 0.000160430997632 0.000164568465119 1670346396.94 +UniRef50_UPI0003B468FE ammonium transporter 5.17097716805e-06 3.61473288889e-06 -628274912.762 +UniRef50_UPI000361E930 MULTISPECIES 4.79572855866e-05 6.39028720671e-05 6437428936.53 +UniRef50_A5UM85 Protein GrpE 0.00467375248065 0.000580950895467 -1.65231422426e+12 +UniRef50_B5XYZ0 Guanosine 5 triphosphate,3 diphosphate pyrophosphatase 0.00293061247432 0.000830125289309 -8.47992452465e+11 +UniRef50_D5HC80 3.19229496315e-05 0.000162993966374 52914977881.4 +UniRef50_P17430 Acetate operon repressor 0.00662662201789 0.00108969820902 -2.23532408734e+12 +UniRef50_Q6G329 Ribonuclease D 6.44720436075e-05 1.21496339182e-05 -21123198859.7 +UniRef50_UPI00046E9EE1 hypothetical protein 0.000125351294772 0.000116895983387 -3413512964.46 +UniRef50_B8FTK7 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 3.58475205499e-05 2.94804683143e-05 -2570457120.03 +UniRef50_A8MI43 Alpha beta hydrolase fold 0.00151227644607 0.0046864051606 1.281434713e+12 +UniRef50_G7U7C7 Phospholipase, patatin family protein 9.5084631958e-05 0.00643196539946 2.55827652811e+12 +UniRef50_UPI0002D7CF6D hypothetical protein 1.86585883207e-05 0.000898615699033 3.55249483882e+11 +UniRef50_P16440 Riboflavin synthase 2.12394962311e-05 2.98030393316e-05 3457207436.16 +UniRef50_F0N020 ResB family protein 0.00038837637448 0.00247266011012 8.41450921116e+11 +UniRef50_D8HET5 Sirohydrochlorin ferrochelatase 0.0268815338203 0.00431352420361 -9.11098242288e+12 +UniRef50_B1TGN6 3.67314688714e-05 0.000126949879946 36422279655.2 +UniRef50_Q0HNC2 L threonine ammonia lyase 0.000184910981555 0.00208533524369 7.6722459545e+11 +UniRef50_G8B0F2 2.05915397608e-05 0.000144732443384 50117206172.8 +UniRef50_Z5KKF6 Type IV conjugative transfer system protein TraV 1.1529095946e-05 1.93496745284e-05 3157263543.01 +UniRef50_P67088 Ribosomal RNA small subunit methyltransferase I 0.00222294531815 0.000712096169186 -6.09948341639e+11 +UniRef50_Q8NTE1 Dihydrolipoyl dehydrogenase 2.14379871331e-05 0.00601697923928 2.42047357706e+12 +UniRef50_F7ZAP7 Histidine kinase 0.00404390064912 0.000681650874371 -1.35738149351e+12 +UniRef50_J3PDD9 5.04013003814e-05 4.0364107531e-05 -4052137923.91 +UniRef50_O68984 Polyphosphate kinase 2 2.88358420922e-06 0.000228367914683 91030791216.2 +UniRef50_Q8R9G2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000518832276502 0.001181105503 2.67367828544e+11 +UniRef50_B1M2H9 0.000452983186623 0.000158089666788 -1.19052132708e+11 +UniRef50_UPI0003809C52 flagellar biosynthesis protein FlhA, partial 0.000612619799497 0.000726752009906 46076573901.8 +UniRef50_UPI00037BA0F7 hypothetical protein 1.5503080275e-05 0.000368367859339 1.42455841446e+11 +UniRef50_B9K0E0 ABC transporter substrate binding protein 0.0133476190153 0.000705411989776 -5.10381411352e+12 +UniRef50_Q5HRC8 0.00015001213854 3.37827110025e-05 -46923246192.2 +UniRef50_UPI00047CE8A1 hypothetical protein 3.64163508232e-05 1.08285677602e-05 -10330102019.9 +UniRef50_UPI0002899EA1 N acyl L amino acid amidohydrolase 1.5246785389e-05 0.000173486136023 63883167666.1 +UniRef50_C0PI11 7.27528599851e-05 3.68219465193e-05 -14505750688.0 +UniRef50_U3SWE7 0.00128193433382 0.00046506567747 -3.29779900674e+11 +UniRef50_B9KWN5 ABC amino acid transporter, periplasmic ligand binding protein 0.012590059842 0.00362224690942 -3.62041612832e+12 +UniRef50_A5UKR1 Cobalt ABC transporter, permease component 0.000456636276836 0.00840059399941 3.20707321592e+12 +UniRef50_V5SUT2 Multidrug ABC transporter substrate binding protein 0.00298725858971 0.000371638766063 -1.05595782007e+12 +UniRef50_X6APU4 0.000183446371854 5.69875583353e-05 -51052974841.8 +UniRef50_UPI0003B50A60 cell division protein FtsE 1.93723978332e-05 6.07970720172e-05 16723649306.0 +UniRef50_J9NT05 1.83689616748e-05 0.000245386451787 91649746576.1 +UniRef50_A4TJM2 Probable phosphatase YPDSF_1086 0.00166652123486 0.000720284646817 -3.82007322222e+11 +UniRef50_E3D657 Glutathione regulated potassium efflux system protein 0.000149038173604 0.00221787431051 8.35214535945e+11 +UniRef50_Q8FHG5 Glutamate decarboxylase beta 0.00777200005519 0.000888163560668 -2.77908926701e+12 +UniRef50_Q28PK8 2.10170540357e-05 5.90229484766e-05 15343445970.6 +UniRef50_V4PD29 8.10484830239e-05 2.77765332678e-05 -21506539836.9 +UniRef50_Q8FDA1 Penicillin binding protein activator LpoA 0.00240108409235 0.000357552165568 -8.24998915798e+11 +UniRef50_B6IZD5 Ribosomal RNA large subunit methyltransferase E 3.1537918464e-05 3.77344114741e-05 2501600267.7 +UniRef50_Q8D2I8 Cardiolipin synthase A 0.00159588753899 0.000287139976776 -5.28357451003e+11 +UniRef50_F4BS97 PTS system, lactose cellobiose family IIC subunit 0.000345273803223 0.00401459208105 1.48134881636e+12 +UniRef50_UPI00046D0519 hypothetical protein 3.53834272033e-06 5.23634539746e-06 685504517.593 +UniRef50_W6RXA4 NAD dependent epimerase dehydratase 0.0175910678696 0.00609232716277 -4.64218272875e+12 +UniRef50_UPI0000123685 C. briggsae CBR GEI 7 protein, partial 1.44873627684e-05 7.91993092772e-05 26125006910.5 +UniRef50_R5UKS9 0.000261462852246 0.000247472099328 -5648238638.84 +UniRef50_UPI00042A7A25 hypothetical protein 2.13529362556e-05 4.5600192973e-05 9788915084.11 +UniRef50_A3PHB4 0.0170356816418 0.000440771201791 -6.69956898708e+12 +UniRef50_UPI000255D523 putative ATPase 0.00132298833221 0.000387765277012 -3.77561023861e+11 +UniRef50_A3PHB0 0.00192956750601 0.0015477767506 -1.54133613058e+11 +UniRef50_D0ZTB2 Magnesium transporting ATPase, P type 1 0.00253046255189 0.000558114507719 -7.96261108864e+11 +UniRef50_A7WXS7 Antiholin like protein LrgB 0.0168967605048 0.00050553501603 -6.61733887278e+12 +UniRef50_Q5JIZ8 4 phosphopantoate beta alanine ligase 0.00223574282296 0.0012120315264 -4.13284812772e+11 +UniRef50_Q9YGB0 Tryptophan synthase beta chain 1 5.06730196507e-05 2.06286555221e-05 -12129278484.5 +UniRef50_A4WTH7 0.00010676022073 0.000330618628011 90374386070.9 +UniRef50_Q8X9A9 Succinate dehydrogenase hydrophobic membrane anchor subunit 0.0010605819952 0.000615243135819 -1.79788762454e+11 +UniRef50_M9VIE6 0.000176946557275 0.00835877819336 3.30310583385e+12 +UniRef50_L2YGD4 6.14634049415e-05 2.13483940957e-05 -16194922145.0 +UniRef50_UPI00034BB763 hypothetical protein 3.68583616359e-06 0.000683096554407 2.74286444262e+11 +UniRef50_Q87VK8 UPF0313 protein PSPTO_4928 0.000809111819368 0.000262938038002 -2.20497057843e+11 +UniRef50_UPI000328C73F 7.58889498985e-06 6.96623967712e-05 25059834396.7 +UniRef50_UPI000181653B putative cation efflux protein 1.49953289863e-05 9.00611447477e-05 30304990984.0 +UniRef50_UPI00045EB333 hypothetical protein 4.79318839769e-06 2.74902124056e-06 -825255366.085 +UniRef50_A6UC68 Glutamine synthetase catalytic region 0.0022185745605 0.000922704749051 -5.23158544993e+11 +UniRef50_Q5M6A1 Undecaprenyl diphosphatase 0.00559820986305 0.0049545608602 -2.59849000912e+11 +UniRef50_UPI00046976AA hypothetical protein 7.14034026878e-05 8.43878224582e-06 -25419589935.2 +UniRef50_UPI00045EBC8D hypothetical protein 1.87976562087e-05 7.35570881426e-06 -4619254571.6 +UniRef50_I1AS06 0.000167247939965 8.54746547458e-05 -33012878714.0 +UniRef50_Q10Y48 Uridylate kinase 2.30896859897e-05 2.91910144666e-05 2463181177.84 +UniRef50_UPI0003FA4543 membrane protein 3.60168932171e-05 7.3495143042e-06 -11573372655.4 +UniRef50_E8SII5 Single stranded DNA specific exonuclease RecJ 0.00954681698391 0.00345634475734 -2.45879837637e+12 +UniRef50_Q5HKU8 CapA related protein 0.0117321999354 0.00325636740181 -3.42179760397e+12 +UniRef50_Q7MPS3 Formamidopyrimidine DNA glycosylase 0.00232890153192 0.00297333300328 2.60164893051e+11 +UniRef50_UPI00041EB905 thymidylate synthase 5.88810128769e-05 0.000430628652688 1.50079084048e+11 +UniRef50_R0EY14 CRISPR associated helicase Cas3 9.41653728385e-06 1.08079213661e-05 561718828.207 +UniRef50_A5ZLG0 3.76854056432e-05 0.000350807935395 1.26411407706e+11 +UniRef50_B8DT48 Methionine tRNA ligase 0.000147222350615 0.00943185977574 3.74832206384e+12 +UniRef50_A5IVU5 Phospholipase Carboxylesterase 0.0139317848247 0.00179844916104 -4.89837650021e+12 +UniRef50_P77437 Hydrogenase 4 component F 0.00166538505333 0.00098222011707 -2.75802068145e+11 +UniRef50_K5ELG7 0.000103172044321 0.000281317040156 71919320903.5 +UniRef50_A3X6J0 4.12976770655e-05 6.89750752718e-05 11173705295.8 +UniRef50_D4GDN3 Catalase 0.000284243592468 9.13350634579e-05 -77879540415.2 +UniRef50_A8ML82 Probable endonuclease 4 0.000530906383178 0.00125927348865 2.94050738549e+11 +UniRef50_UPI0003B59385 molybdopterin biosynthesis protein MoeB 1.95531421562e-05 1.98582654261e-05 123182008.342 +UniRef50_A3JVB5 SN glycerol 3 phophate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 0.000170039287998 5.61688633509e-05 -45970887777.2 +UniRef50_G8AEH3 4.28119324318e-05 0.000121107636684 31608936602.9 +UniRef50_UPI00047B7AB7 alpha ketoglutarate decarboxylase 1.07175579609e-06 4.57109484673e-06 1412726116.46 +UniRef50_A5UKJ0 Tyrosine tRNA ligase 0.00399065880485 0.000257543638253 -1.50710440323e+12 +UniRef50_B7G9B5 L threonine ammonia lyase 0.000249837012794 0.00114505925528 3.61412204904e+11 +UniRef50_UPI000374D549 hypothetical protein 2.05710879097e-05 1.72803343713e-05 -1328517585.54 +UniRef50_UPI0003610FAC hypothetical protein, partial 0.000207791778855 4.73430859924e-05 -64775106235.7 +UniRef50_B5WT75 Transketolase domain protein 0.000142553870142 1.78191886693e-05 -50356921577.3 +UniRef50_P58319 Low specificity L threonine aldolase 0.000456662185685 0.000398157978736 -23618866272.7 +UniRef50_A7MI34 Ribonuclease H 0.00625382790229 2.45186780071e-05 -2.51484857606e+12 +UniRef50_Q5KP44 Inosine 5 monophosphate dehydrogenase 2.37252918055e-05 3.64058337172e-06 -8108443261.81 +UniRef50_A3X8V2 DNA helicase II, putative 0.00631794572949 0.00265443006903 -1.47900622852e+12 +UniRef50_B0VAC9 Porin 0.000384062672354 0.00458226100245 1.69486418355e+12 +UniRef50_P08656 Mercuric transport protein 0.00272541931512 0.000436428628368 -9.24093629315e+11 +UniRef50_Q75FU1 Acetylglutamate kinase 2.92139968277e-05 9.3709752719e-06 -8010871303.33 +UniRef50_O66119 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.00458693201879 0.0027304195949 -7.49496847494e+11 +UniRef50_Q88BC2 Phospholipase D family protein 0.00109691995495 0.000446743283418 -2.62484300862e+11 +UniRef50_B4TKU5 RNA 3 terminal phosphate cyclase 0.00289644883717 0.0021582726858 -2.98010770748e+11 +UniRef50_A5W974 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000152352837042 0.00106058267639 3.66663531378e+11 +UniRef50_UPI00045DB0AA PREDICTED 0.000110844172911 2.15966381688e-06 -43877270030.2 +UniRef50_UPI00040A4A10 betaine aldehyde dehydrogenase 1.61087158058e-05 4.93683722979e-05 13427331467.7 +UniRef50_J9EAY7 0.0131906634757 0.00120537430691 -4.83860831348e+12 +UniRef50_I0DZ31 Major facilitator transporter 0.000231550071799 0.0062078612858 2.41271017468e+12 +UniRef50_D0LZ79 Phosphoribosylformylglycinamidine synthase, purS 0.0188996648051 6.41985266265e-05 -7.60410887379e+12 +UniRef50_T0PX63 1.20284048624e-05 2.03517210887e-05 3360224899.13 +UniRef50_UPI0004715F2C ATP dependent DNA helicase RecQ 1.57326000835e-05 8.98946220602e-06 -2722287508.75 +UniRef50_Q6GDN6 4,4 diaponeurosporenoate glycosyltransferase 0.0146150721323 0.00234009086268 -4.9555605695e+12 +UniRef50_Q3Z7P5 Isoleucine tRNA ligase 3.0595540668e-06 9.36130840441e-06 2544095557.31 +UniRef50_C8PYM1 1.11776384201e-05 1.01881291816e-05 -399477022.226 +UniRef50_Q2T312 Glutamate 1 semialdehyde aminotransferase 0.000461553398489 0.00013312548694 -1.32590378156e+11 +UniRef50_UPI0003EE7EAE acetyl CoA acetyltransferase 1.70245649132e-05 9.92470055448e-05 33194208265.8 +UniRef50_W5XCV9 Hsp90 ATPase activator family protein, putative 1.60698332692e-05 0.00013905981389 49652564433.5 +UniRef50_UPI000373AC76 hypothetical protein 3.01945320928e-05 0.000150657949832 48632559993.6 +UniRef50_UPI00036BF734 hypothetical protein 3.00234985515e-06 0.00063401979096 2.54749484429e+11 +UniRef50_P60966 Prolipoprotein diacylglyceryl transferase 1.30583770364e-05 7.85366171909e-06 -2101207442.64 +UniRef50_UPI00031187B6 hypothetical protein 2.81722564903e-05 1.18779699666e-05 -6578203423.0 +UniRef50_X2MXQ1 0.000133773324648 0.000154771697738 8477300895.45 +UniRef50_N0BFG1 Polyhydroxyalkonate synthesis repressor PhaR 2.7596534463e-05 9.24033106559e-06 -7410624567.48 +UniRef50_M1MRG1 Amino acid polyamine organocation transporter, APC superfamily 0.000137931626444 0.00197410152269 7.41284319455e+11 +UniRef50_Q2NH89 Replication factor C small subunit 0.00450335128371 0.00168752402968 -1.13678401654e+12 +UniRef50_K4AS36 4.32379557918e-05 1.66806348089e-05 -10721516375.8 +UniRef50_F5LZU0 0.000658062089568 0.00102090374539 1.46483629023e+11 +UniRef50_C6WQE7 Periplasmic binding protein 1.05550482835e-05 5.41613637344e-05 17604404657.2 +UniRef50_UPI0003B45185 DNA directed RNA polymerase subunit alpha 2.08130113379e-05 6.822731422e-05 19141735912.4 +UniRef50_Q8DUE8 0.00813766927271 0.00200097968855 -2.47745689077e+12 +UniRef50_Q8FBT7 0.00133399305193 0.000537179542243 -3.21683391862e+11 +UniRef50_UPI0004014281 16S rRNA methyltransferase 2.27294644962e-05 2.24641701788e-05 -107102571.462 +UniRef50_P45515 Cobyrinic acid a,c diamide adenosyltransferase 2.18983818154e-05 5.83046725533e-05 14697666326.3 +UniRef50_V5CX68 Dipeptide ABC superfamily ATP binding cassette transporter, binding protein 0.000320487211153 0.000962989256073 2.59385959921e+11 +UniRef50_Q9I733 0.000306559544876 0.000765108454026 1.85121821652e+11 +UniRef50_UPI000463C6BF hypothetical protein 1.65127410566e-05 0.000450369054678 1.75153117824e+11 +UniRef50_R6HVU1 0.000104159773061 0.00494754604704 1.95533447384e+12 +UniRef50_G7LXC7 Glycoside hydrolase family 25 0.000734813932868 0.00194727044432 4.89483572187e+11 +UniRef50_U5MY29 DnaD like protein 0.000317011917057 0.000782534735779 1.87937274525e+11 +UniRef50_UPI0003B69658 branched chain amino acid ABC transporter permease 0.000148859567984 0.000151996450797 1266398085.49 +UniRef50_R6VS65 0.000448213796037 0.000880905534551 1.74682964563e+11 +UniRef50_UPI0004624AAB calcium binding protein 3.52093718112e-07 5.63777191094e-07 85459215.6912 +UniRef50_R5QLU7 0.00179256010567 0.000725145259866 -4.30928471903e+11 +UniRef50_UPI0004750550 glutamyl tRNA amidotransferase 1.17672581416e-05 2.19638264666e-05 4116479758.77 +UniRef50_A6LYZ5 Transposase 0.000547081143264 0.00033432079833 -85893962112.9 +UniRef50_F9YWL9 0.000207790452577 0.0081432615891 3.20364707699e+12 +UniRef50_P77434 Glutamate pyruvate aminotransferase AlaC 0.00310473449022 0.0018167050449 -5.19993292974e+11 +UniRef50_F0FD43 0.000321420152608 1.19644998639e-05 -1.24931044461e+11 +UniRef50_G0XA87 0.00110248507535 0.0484075526505 1.90976362786e+13 +UniRef50_S8AX05 NLPA family lipoprotein 1.22318184459e-05 3.16707821069e-05 7847748172.85 +UniRef50_J9YR28 Rhodanese like domain containing protein 2.30337538454e-05 0.00233176490197 9.32063095813e+11 +UniRef50_Q218J2 Molybdopterin dehydrogenase, FAD binding 0.00243214515849 0.000377000049191 -8.29687300091e+11 +UniRef50_UPI00042C9909 PREDICTED 9.94150134473e-06 3.22633025144e-05 9011585051.51 +UniRef50_Q21M27 Glucose 1 phosphate adenylyltransferase 1.1211431215e-05 2.72743404715e-05 6484793580.91 +UniRef50_UPI00042517AA coproporphyrinogen III oxidase 1.98377044727e-05 5.00371329475e-05 12191879863.9 +UniRef50_Q3JUF7 2.45762240962e-06 0.000254766388374 1.01860144996e+11 +UniRef50_D8HGC2 1.44892464651e-05 0.000108682249339 38026871138.3 +UniRef50_UPI00047BCF38 AsnC family transcriptional regulator 0.000199001247767 8.81865229419e-05 -44737264261.4 +UniRef50_UPI00036EA5F9 hypothetical protein, partial 1.63693087209e-05 4.68909536302e-05 12321962592.6 +UniRef50_P39347 Putative prophage P4 integrase 0.00399325683709 0.000610037123369 -1.3658473152e+12 +UniRef50_A0A052HCP6 PF07120 family protein 4.79369692794e-06 7.64789275259e-06 1152273879.33 +UniRef50_Q7MVV7 Thymidine kinase 1.71654633517e-05 1.30619408193e-05 -1656642402.21 +UniRef50_F0QIN2 Transcriptional regulator, TetR family 0.000354187347592 0.0176230422034 6.97164861797e+12 +UniRef50_P0AFJ9 Low affinity inorganic phosphate transporter 1 0.00510671070878 0.00184468659008 -1.31691916626e+12 +UniRef50_D0LA73 2.31221498111e-05 3.27205448773e-05 3874989873.78 +UniRef50_A0A008HNV8 4.27378834968e-05 6.13269155292e-06 -14777965184.0 +UniRef50_UPI00047161BF thioredoxin 4.00958809738e-05 2.63955290762e-05 -5531000183.28 +UniRef50_Q3HKI8 DSBA oxidoreductase 0.021748037005 0.00850313994098 -5.3471274779e+12 +UniRef50_B6AH12 NAD dependent epimerase dehydratase family protein 0.00520640619842 0.00147268942774 -1.50734727818e+12 +UniRef50_UPI000463295C hypothetical protein 0.00209106735988 0.000716520273746 -5.5492152626e+11 +UniRef50_UPI000414D457 hypothetical protein 4.08242233195e-06 5.91638470593e-06 740393115.625 +UniRef50_Q1J1L0 Mannose 6 phosphate isomerase, type 1 0.000495196673545 0.0623578518859 2.49747130494e+13 +UniRef50_O32165 FeS cluster assembly protein SufD 0.023296466832 0.00731892942908 -6.45032791598e+12 +UniRef50_Q08329 Ribosomal RNA small subunit methyltransferase I 2.89875710755e-05 3.48986738968e-05 2386384746.35 +UniRef50_W4UF17 Beta mannosidase 0.000158456006781 0.00657073933288 2.58871746631e+12 +UniRef50_J0S0K6 2.28291514076e-06 3.29374673001e-06 408085116.879 +UniRef50_A9VTC9 Aspartate carbamoyltransferase 1.07466160736e-05 8.62201047967e-06 -857729350.112 +UniRef50_UPI00046A3857 hypothetical protein 4.27190065776e-06 8.75090383769e-05 33603853931.7 +UniRef50_UPI00036BBCF4 MULTISPECIES 3.20471423671e-05 1.38436268324e-05 -7348982603.61 +UniRef50_Q2GJV5 Polyribonucleotide nucleotidyltransferase 2.25395772625e-06 5.98672827688e-06 1506965277.54 +UniRef50_D3ERJ1 Energy coupling factor transporter transmembrane protein EcfT 0.0215703604285 0.0077733947985 -5.57000433264e+12 +UniRef50_H6PBJ5 ThiW protein 0.00030606972069 0.000628333415313 1.3010180814e+11 +UniRef50_A6LIS9 7 cyano 7 deazaguanine synthase 5.55684245877e-05 0.000428303075717 1.50477552629e+11 +UniRef50_UPI00022CAA8B PREDICTED 3.17400955732e-05 7.37294351724e-05 16951611663.3 +UniRef50_A3N352 N acetylneuraminate lyase 0.0093611444294 0.00185271146756 -3.03124652553e+12 +UniRef50_T2K100 CadX 0.0325752976437 0.0132769353524 -7.79098567453e+12 +UniRef50_Q9I2Y8 0.000167453110285 0.000628333415313 1.86063034777e+11 +UniRef50_UPI0003633A56 hypothetical protein 1.08517612851e-05 4.22495753332e-05 12675682825.7 +UniRef50_Q8CMW6 IS605 IS200 like transposase 0.011607661574 0.00554931599443 -2.44582845473e+12 +UniRef50_P75810 Inner membrane protein YbjJ 0.0022419732403 0.000418147692723 -7.36300754414e+11 +UniRef50_G7MCQ3 0.000397171325099 0.000693005924187 1.19432057951e+11 +UniRef50_P43386 Glutamine synthetase 1.03143143439e-05 0.000137660788728 51411334425.8 +UniRef50_J7QU36 Hydrogenase 4 membrane subunit 0.00111454562337 0.000473537988818 -2.58782648117e+11 +UniRef50_UPI0003686401 hypothetical protein 5.84992495528e-05 5.7242572272e-06 -21305912023.8 +UniRef50_F9XXP5 Transporter, Sodium bile acid symporter family, macrolide resistance protein 0.00352674685015 0.00483812307827 5.29418675688e+11 +UniRef50_A0A022M296 Short chain dehydrogenase 2.04625376914e-05 2.4578154e-05 1661524808.07 +UniRef50_A4XKN9 Cytidylate kinase 8.83789682173e-06 1.15421292239e-05 1091731805.42 +UniRef50_Q6ZAM9 1.1190509507e-05 1.34122597411e-05 896947833.447 +UniRef50_D7BLX5 Extracellular solute binding protein family 1 3.71325680773e-05 3.25921255043e-05 -1833032384.22 +UniRef50_UPI0003661C1B hypothetical protein 1.32286476861e-05 3.43279817057e-05 8518060061.66 +UniRef50_Q8XU90 Uroporphyrinogen decarboxylase 0.00161703679992 0.0108927179906 3.74470632209e+12 +UniRef50_R6HIJ1 7.56409471529e-06 3.23027824714e-05 9987311824.97 +UniRef50_C3MCT2 0.00140640512611 0.000464861285554 -3.80112802475e+11 +UniRef50_Q5HR58 Decarboxylase family protein 0.0323868111101 0.00471456183448 -1.11716266092e+13 +UniRef50_UPI000351149F PREDICTED 3.191753689e-05 8.02559792158e-05 19514822346.3 +UniRef50_G8V3B6 Heme ABC exporter, ATP binding protein CcmA 0.0201041664954 0.00466023403099 -6.23490505424e+12 +UniRef50_P94417 Aspartokinase 3 0.00533882783848 0.00827825489773 1.18668277465e+12 +UniRef50_D4HA31 D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase 0.000523885359156 0.00440807866749 1.56809650298e+12 +UniRef50_A0A023KQS7 Formate dehydrogenase 0.00137016793906 0.00103403590418 -1.35700627285e+11 +UniRef50_P31436 Sugar efflux transporter C 0.00543436062603 0.00126228159476 -1.68431950209e+12 +UniRef50_B9KJG1 Flagellar proximal rod protein FlgC 0.00181135554305 0.00180236871959 -3628090911.53 +UniRef50_Q9PNB4 Elongation factor Ts 0.000603527370052 0.00577119102051 2.08624923005e+12 +UniRef50_A4WSY4 Transcriptional regulator, RpiR family 0.0126498110329 0.00105897323501 -4.67936345459e+12 +UniRef50_G0VNQ5 Lipoprotein 3.30192671499e-05 8.79902403925e-06 -9778009359.55 +UniRef50_UPI00047EE782 DNA gyrase subunit A 7.01461981345e-06 4.98789633342e-06 -818213139.582 +UniRef50_Q5SKN9 Long chain fatty acid CoA ligase 1.15341051473e-05 0.00027172358915 1.05041687576e+11 +UniRef50_Q84630 1.6003773123e-05 2.44614945341e-05 3414485921.57 +UniRef50_P09053 Valine pyruvate aminotransferase 0.0025430093308 0.00173963361563 -3.24332634743e+11 +UniRef50_I6S241 0.000776607423632 0.000156252224977 -2.50445006311e+11 +UniRef50_UPI0003758FEB hypothetical protein 5.75663027762e-05 9.16352463386e-05 13754050589.1 +UniRef50_P45039 Protein CysZ homolog 0.00322890587385 0.00047037179594 -1.11365405827e+12 +UniRef50_UPI00036B404B hypothetical protein 2.37339727073e-05 8.72854941856e-06 -6057873518.9 +UniRef50_A7V4H6 3.64213943153e-05 0.000195252938045 64122243286.0 +UniRef50_P77546 0.00476079440274 0.00176755562166 -1.20840722709e+12 +UniRef50_Q5HPS3 30S ribosomal protein L7Ae, putative 0.00145080607697 0.0112759004338 3.96651115932e+12 +UniRef50_D7CXV9 Electron transfer flavoprotein alpha beta subunit 0.000243016731023 0.0418156891054 1.67833979916e+13 +UniRef50_Q5HQF3 Transposase, IS200 family, truncation 0.00273160664935 0.0272816384799 9.91114911274e+12 +UniRef50_E3F2N0 Transcriptional regulator, LysR family protein 0.0165632690805 0.00191817118576 -5.91240573565e+12 +UniRef50_R5J6S8 Thioredoxin disulfide reductase 0.000659210045459 0.000474978262967 -74376631370.2 +UniRef50_UPI000476E0F1 hypothetical protein 4.2840872078e-06 1.10935390851e-05 2749059284.24 +UniRef50_Q1QDN1 Aminotransferase 0.000251492511024 0.00722499953124 2.81529035862e+12 +UniRef50_G7M5P4 2.39244889874e-06 0.000691565702328 2.78227699516e+11 +UniRef50_P76633 0.00371732589835 0.00281000044596 -3.66298419265e+11 +UniRef50_P76639 0.000945892396134 0.000196659293133 -3.02474597806e+11 +UniRef50_G2FJU8 CRISPR associated helicase Cas3 0.000120082733565 3.1697486628e-05 -35682208797.4 +UniRef50_O05240 Probable NADH dependent butanol dehydrogenase 2 1.06020066497e-05 0.00220721872077 8.86801123009e+11 +UniRef50_E0TGB8 0.000130455852193 2.93630918666e-05 -40812387891.3 +UniRef50_UPI00047C43B7 deoxyguanosinetriphosphate triphosphohydrolase 1.34274932965e-05 1.61224520561e-05 1087987922.11 +UniRef50_C5D4L1 Transcriptional regulator, RpiR family 0.000285532641026 0.000679933622094 1.59224515901e+11 +UniRef50_A1BHE5 Chorismate synthase 1.8598161881e-05 0.000183750805589 66674148915.8 +UniRef50_A8LS46 0.000210626445025 4.15137445388e-05 -68272872432.4 +UniRef50_D6K042 Nucleotide binding protein 7.39852429849e-06 6.66728920087e-05 23929789622.9 +UniRef50_UPI000345D912 hypothetical protein 0.000318438248205 0.000410697844162 37246331040.4 +UniRef50_UPI00047E8FE9 hypothetical protein 1.26438236184e-05 5.50718964674e-05 17128733660.1 +UniRef50_Q820Q4 Siroheme synthase 4.55681875857e-06 2.25730917386e-05 7273390486.56 +UniRef50_UPI0003B3A117 adenosylcobinamide amidohydrolase 5.92293959266e-05 0.000109286458476 20208650420.4 +UniRef50_UPI00036900A5 hypothetical protein 4.44260505689e-05 2.62393386933e-05 -7342198760.23 +UniRef50_UPI00040265B6 transcriptional regulator 9.86792717005e-06 0.00010949827694 40221994804.0 +UniRef50_Q21AL1 0.000614058473984 6.74747988232e-05 -2.20662536998e+11 +UniRef50_B0V8K7 Pilin like competence factor 0.000168270128756 0.00667540417739 2.62700986695e+12 +UniRef50_A3TXU1 0.000178616652232 3.23826946049e-05 -59036443186.5 +UniRef50_UPI000237DC3E hypothetical protein 1.9193595653e-05 0.000236206036376 87610585362.0 +UniRef50_A1SVN9 D erythrose 4 phosphate dehydrogenase 0.00337369010844 0.00155891550011 -7.32646779172e+11 +UniRef50_S9S862 0.000494291732102 7.43775769457e-05 -1.69524497363e+11 +UniRef50_UPI0002559A2B hypothetical protein 0.000588601910223 5.26857660642e-05 -2.16355923828e+11 +UniRef50_Q8YAE3 Ribonuclease M5 0.00887135506321 0.00101520055157 -3.17162598221e+12 +UniRef50_UPI00035C7818 hypothetical protein 2.72757265495e-06 4.094420993e-06 551813447.186 +UniRef50_E8SJM3 Siderophore staphylobactin biosynthesis protein SbnC 0.0153706349845 0.00244665240198 -5.21757036366e+12 +UniRef50_UPI0004720A04 diguanylate cyclase, partial 1.32894115641e-06 2.74895188129e-05 10561346226.3 +UniRef50_Q73F30 Tn7 like transposition protein D 1.0161589647e-05 9.58301909705e-05 34585465626.3 +UniRef50_Q7N5M7 Flagellar L ring protein 0.00526343826007 0.000386877779725 -1.96872730804e+12 +UniRef50_G7M4H8 Secretion protein HlyD family protein 0.000506221307211 0.00356337888767 1.23421203077e+12 +UniRef50_O87320 Putative aminotransferase AatC 2.82224494622e-05 0.000568651484471 2.18177833243e+11 +UniRef50_F7XGW6 Oxidoreductase protein 0.00194234594035 0.000974578793798 -3.90699472901e+11 +UniRef50_V3W6L3 Glucarate permease 0.00176731348197 0.000197096799911 -6.33915743273e+11 +UniRef50_J2WQI8 8.58735358218e-05 4.4700368914e-05 -16622112732.3 +UniRef50_Q1C138 Autoinducer 2 import ATP binding protein LsrA 0.00242739173227 0.000787959436458 -6.61858935915e+11 +UniRef50_D4HCC5 Transcriptional regulator, LacI family 0.000490012037439 0.0036916409401 1.29253687641e+12 +UniRef50_UPI00046CFD96 hypothetical protein 2.87829172354e-05 2.95753969477e-05 319933784.675 +UniRef50_Q9HT89 0.000993127259492 0.00452676555232 1.42657314143e+12 +UniRef50_UPI00035FFDBB hypothetical protein 5.42138270638e-06 9.18312519576e-06 1518661604.73 +UniRef50_Q134N9 Methionine import ATP binding protein MetN 1.30016123657e-05 2.25800360992e-05 3866927201.69 +UniRef50_A0A059LBR4 2.33234134006e-05 0.000114084599834 36641404728.2 +UniRef50_B8C7V4 6.05251272776e-05 2.82692177639e-05 -13022106495.2 +UniRef50_D9T5Q5 1.90016670052e-05 6.23886266305e-06 -5152500730.17 +UniRef50_UPI0002F33E46 hypothetical protein 0.00206212227828 0.000128347259578 -7.80688705137e+11 +UniRef50_UPI00035D42F6 hypothetical protein 3.00140852212e-06 1.46966132426e-05 4721497661.97 +UniRef50_D5AL10 Transcriptional regulator, LuxR family 0.00464283362434 0.00155736771919 -1.24564044883e+12 +UniRef50_Q9RY69 0.000381181046844 0.0445152345643 1.78174589908e+13 +UniRef50_J0URR6 2.69301378738e-05 0.000181252542535 62301848510.5 +UniRef50_E3A6Z3 0.000911506760953 0.00246478800461 6.2707869897e+11 +UniRef50_K7SLE8 Acyl CoA thioester hydrolase, YbgC YbaW family 0.000747463757461 0.00549933868084 1.91839021863e+12 +UniRef50_M4QZ02 Ribosomal RNA small subunit methyltransferase D 0.000228318138423 0.00143079294428 4.85453835151e+11 +UniRef50_C9RQ15 Nitrogenase 0.000577557994818 0.00118200168979 2.44021337018e+11 +UniRef50_UPI0002624B69 thioredoxin disulfide reductase, partial 0.000121964231924 7.95612360415e-05 -17118609781.0 +UniRef50_R4NK63 Valyl tRNA synthetase 0.00038947694678 7.08193537646e-05 -1.28645980669e+11 +UniRef50_UPI0004448C06 PREDICTED 6.62065745959e-06 1.97963666431e-05 5319195481.51 +UniRef50_O03042 Ribulose bisphosphate carboxylase large chain 0.00883595195123 0.00289369863074 -2.39896058513e+12 +UniRef50_UPI0003B45D4A transcription termination factor Rho 5.62358300836e-06 2.3469583562e-05 7204649418.54 +UniRef50_I0EV03 Cytosine specific methyltransferase 0.000272494044384 0.0022562352771 8.00860678891e+11 +UniRef50_B2V0J5 Phosphopentomutase 0.000125721391775 0.00143315151999 5.2782558673e+11 +UniRef50_A1R8R6 30S ribosomal protein S11 0.0104863386241 0.0243954171843 5.61526569834e+12 +UniRef50_P09546 Bifunctional protein PutA 0.000819864147582 0.000430975006151 -1.56999318602e+11 +UniRef50_UPI0003B6A42C DNA helicase 1.68108671166e-05 1.62041420434e-05 -244942357.405 +UniRef50_M1MDU9 Permease 0.000759632004564 0.00313821808373 9.60264388694e+11 +UniRef50_A5UNQ0 Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family 0.00362756580132 0.000810265473116 -1.13737871466e+12 +UniRef50_E1VK27 Phenylacetic acid degradation like protein 9.33584118295e-06 1.68771140037e-05 3044504379.56 +UniRef50_UPI0002F8E904 hypothetical protein 9.33988473737e-06 1.75964802835e-05 3333288941.79 +UniRef50_F5ZJY8 Membrane protein 2.09762388463e-05 7.39168549958e-05 21372776394.0 +UniRef50_A5UJT5 0.00177999107223 0.00115610806808 -2.51869224681e+11 +UniRef50_Q37626 NADH ubiquinone oxidoreductase chain 6 0.000128546517711 3.13090150795e-05 -39255973050.7 +UniRef50_UPI00046648B3 ABC transporter 4.66996317759e-06 1.81009027681e-05 5422235128.85 +UniRef50_UPI0004772455 metallophosphoesterase, partial 2.89830313913e-06 0.000478316268362 1.91932066595e+11 +UniRef50_K0P9U6 0.000638616154308 0.000313886506919 -1.31097343532e+11 +UniRef50_M4X2Y6 0.000205607233078 4.65172830834e-05 -64226565066.2 +UniRef50_Q9S208 Putative 3 methyladenine DNA glycosylase 1.63043284412e-05 3.28352497779e-05 6673735800.84 +UniRef50_UPI0003ADF309 PREDICTED 4.72933697713e-05 5.40816707141e-05 2740520392.43 +UniRef50_X7EE68 0.000242663372315 4.40568436321e-05 -80179892805.5 +UniRef50_B4DT69 Dihydrolipoyl dehydrogenase, mitochondrial 2.07318309187e-05 6.38627267084e-05 17412471905.9 +UniRef50_UPI0004773262 aldehyde oxidoreductase 1.49860918777e-05 1.00303792961e-05 -2000681982.62 +UniRef50_P31474 Probable transport protein HsrA 0.00497813034149 0.00147858088371 -1.41281106041e+12 +UniRef50_R4LLL8 4.78887826154e-05 2.95179088852e-05 -7416547160.85 +UniRef50_T1XS28 0.016261808291 0.00238095961426 -5.60386894795e+12 +UniRef50_Q6FDP2 0.00105968807219 0.00499342296233 1.5880970475e+12 +UniRef50_T6QCZ1 Acetoacetate metabolism regulatory protein AtoC 0.000342132316185 0.000425937555561 33833203542.0 +UniRef50_I0C564 Adenine specific methyltransferase 0.0217620487287 0.00460832987574 -6.92516680076e+12 +UniRef50_P0ABM3 Heme exporter protein C 0.00344094999836 0.00141656733714 -8.17268122303e+11 +UniRef50_P31442 Multidrug resistance protein D 0.00487573471624 0.000773234268918 -1.65622977392e+12 +UniRef50_K8M5I2 0.00231977266233 0.00033801582594 -8.00059553742e+11 +UniRef50_UPI000369D268 hypothetical protein 2.99996980448e-05 7.75520269841e-06 -8980375742.0 +UniRef50_Q7DDR9 Adenosine monophosphate protein transferase NmFic 0.00603085916238 0.00220261976682 -1.54550722177e+12 +UniRef50_UPI00042A93F8 hypothetical protein 6.47829333748e-06 1.14662401013e-05 2013695317.54 +UniRef50_UPI0004292FB7 hypothetical protein 6.03884220366e-05 2.95629887556e-05 -12444605686.1 +UniRef50_H3Y6A9 PF04507 domain protein 2.57615613722e-05 3.58417882427e-05 4069511285.91 +UniRef50_S5XQS3 Acetylornithine N succinyldiaminopimelate aminotransferase 0.00177221584407 0.000401531649578 -5.53362029502e+11 +UniRef50_E3HI99 4.93111813151e-06 7.18741089525e-06 910893076.548 +UniRef50_Q9SLK0 Peroxisomal isocitrate dehydrogenase [NADP] 0.0239172331837 0.00600846073708 -7.22999120204e+12 +UniRef50_P0A6X2 Glutamyl tRNA reductase 0.00272562583369 0.00104961466366 -6.76626276311e+11 +UniRef50_UPI00035D06F8 hypothetical protein 1.40619696326e-06 2.25888734162e-06 344241569.432 +UniRef50_M4JQT7 Transcriptional regulator 0.000651962580884 0.000760914455182 43985208643.9 +UniRef50_F8CFH1 Acetyl CoA carboxylase carboxyltransferase 0.00119887829301 0.0052249233222 1.62536378341e+12 +UniRef50_UPI00047EBCE0 carboxymuconolactone decarboxylase 4.42922105938e-05 0.00260310785538 1.033025276e+12 +UniRef50_A0A022H066 Transcriptional regulator 4.3752968435e-05 1.43775750931e-05 -11859206768.7 +UniRef50_P64636 GMP IMP nucleotidase YrfG 0.00323368311678 0.00026525452562 -1.19839104897e+12 +UniRef50_UPI0004686F41 hypothetical protein 1.81719037965e-05 1.49795475782e-05 -1288793379.94 +UniRef50_G7U923 Copper exporting ATPase 0.000207545247591 0.00448955197689 1.72869866275e+12 +UniRef50_R9SM10 Energy converting hydrogenase B subunit E EhbE 0.000588289852755 0.000550279574895 -15345215610.6 +UniRef50_UPI0003752C76 hypothetical protein 0.00136493327416 0.000798153257284 -2.28816047986e+11 +UniRef50_Q60DH5 0.000119674885215 2.51582449349e-05 -38157527530.7 +UniRef50_A3VZ88 ISxac3 transposase 0.000767543042476 0.000775862119949 3358513662.41 +UniRef50_E6AYN5 0.00446983815931 0.00276268273754 -6.89199592921e+11 +UniRef50_UPI00047C2D15 transporter 6.01126752032e-05 6.08266059086e-05 288222586.685 +UniRef50_D3PRK0 Phenylacetate CoA ligase 9.05242179512e-05 0.0380884503778 1.53402290777e+13 +UniRef50_F4C648 0.00290377517524 0.000472506728318 -9.8153290704e+11 +UniRef50_K0SPN4 4.77219314567e-05 0.000118649754563 28634432570.3 +UniRef50_P69680 Ammonia channel 0.00294997341488 0.0015987803799 -5.45493209225e+11 +UniRef50_P77499 Probable ATP dependent transporter SufC 0.0244759298122 0.00643388456404 -7.28379506749e+12 +UniRef50_UPI00030D778A hypothetical protein 0.000157770227494 2.75922243165e-05 -52554457346.7 +UniRef50_D1BCT4 ABC type hemin transport system, periplasmic component 8.05777751261e-06 2.77450941053e-05 7948011299.01 +UniRef50_B7IAM2 0.000151558571295 0.00704558159001 2.78320169183e+12 +UniRef50_UPI00047272A3 glycerol 3 phosphate ABC transporter permease 8.41012091505e-06 5.47429574e-05 18705134656.8 +UniRef50_UPI00026277B1 transketolase 3.19789987133e-05 1.21030752019e-05 -8024154226.56 +UniRef50_Q2S0W2 Chorismate synthase 1.53830283946e-05 0.000196792685804 73237304842.8 +UniRef50_P56935 3 isopropylmalate dehydratase small subunit 1.23925986335e-05 4.2051831604e-05 11973796309.9 +UniRef50_D4HFH3 Exo alpha sialidase 7.88619753888e-05 0.00553648653826 2.20331000862e+12 +UniRef50_H6PCX4 Competence protein 2.47052537863e-05 3.50718613214e-05 4185126674.5 +UniRef50_UPI00047A82E9 hemolysin 9.85330131688e-06 1.16352512456e-05 719395053.209 +UniRef50_A8GIW3 Probable L aspartate dehydrogenase 0.000607500965711 0.00491522942652 1.7390828414e+12 +UniRef50_Q9HWI0 D alanine D alanine ligase A 0.000109099996778 0.000176898936641 27371264009.2 +UniRef50_P49915 GMP synthase [glutamine hydrolyzing] 5.92527127152e-06 4.08194273999e-06 -744174348.363 +UniRef50_UPI0002375EBD glucose methanol choline oxidoreductase, partial 0.000100286987634 2.82752259409e-05 -29072031879.2 +UniRef50_C0B1I9 Formate transporter FocA 5.26823655275e-05 0.000207001811578 62300654082.9 +UniRef50_D2NT48 Predicted thioesterase involved in non ribosomal peptide biosynthesis 1.99460651741e-06 2.98628609691e-05 11250756304.1 +UniRef50_A6LSK6 Thiamine pyrophosphokinase 0.000201147063333 0.000334952784714 54019011702.4 +UniRef50_UPI000399CFD2 type 12 methyltransferase 5.59844086286e-05 0.000246000345246 76711765370.0 +UniRef50_R9ZNA1 0.000134177484187 0.000219838738361 34582499491.8 +UniRef50_UPI0004213A08 chemotaxis protein CheD 0.000107165920875 2.56906378746e-05 -32892571561.4 +UniRef50_D3HDQ8 0.00377767319777 0.00049178525602 -1.32655328446e+12 +UniRef50_A7X154 Probable heme iron transport system permease protein IsdF 0.0116631921483 0.00269081729806 -3.62225783046e+12 +UniRef50_UPI0002651C73 PREDICTED 3.38730729961e-06 7.24867735798e-06 1558882476.9 +UniRef50_E8SK39 DNA polymerase III polC type 0.0202521881527 0.00476534590846 -6.25222825891e+12 +UniRef50_UPI00047262F8 hypothetical protein 1.23939100537e-05 8.59676683724e-06 -1532953312.67 +UniRef50_P07874 Alginate biosynthesis protein AlgA 0.000370299763942 0.000301461818483 -27790723318.4 +UniRef50_P50648 Ribonucleoside diphosphate reductase large subunit 2.67519971284e-06 0.00031384744164 1.25624052579e+11 +UniRef50_B1XZJ7 Pseudouridine synthase 0.000136935667056 0.00271019692285 1.03885714643e+12 +UniRef50_UPI0003B7021A amino acid transporter 1.47664806801e-05 0.00164015197748 6.56188070781e+11 +UniRef50_UPI0003C0FDA1 PREDICTED 2.36845131039e-06 6.9681995618e-05 27175303867.1 +UniRef50_UPI0003B40AC9 hypothetical protein 1.77440827614e-06 7.91465092019e-05 31236066606.2 +UniRef50_UPI00047E50BD hypothetical protein 4.46544416793e-06 7.9872210025e-06 1421784525.18 +UniRef50_Q13V14 tRNA ) methyltransferase 0.000757043994216 0.00425614902498 1.41263163977e+12 +UniRef50_L0KY29 0.000523764892083 0.000271763839138 -1.01735917475e+11 +UniRef50_Q9RWG0 0.000194946102928 0.0431041686099 1.73229796814e+13 +UniRef50_Q9RWG3 0.000201864165162 0.0314751495341 1.26254090698e+13 +UniRef50_E6MYP0 7.12431646305e-05 4.2622339057e-05 -11554578501.0 +UniRef50_Q83GH8 Peptide deformylase 9.29552743465e-06 6.6213311198e-05 22978407765.0 +UniRef50_W5XCC5 Putative ferric uptake regulator 0.000149178504816 1.98364848386e-05 -52216960669.8 +UniRef50_E5U1W5 4.29596378146e-05 0.000112855963559 28218004427.4 +UniRef50_G7ZUI4 0.000139886427018 5.4990409522e-05 -34273564054.4 +UniRef50_D1WQ15 KxYKxGKxW signal domain protein 3.91853967615e-05 6.23908532181e-05 9368327534.5 +UniRef50_C7CKD2 1.44772032955e-05 2.45047385743e-05 4048239043.75 +UniRef50_UPI00046E9E57 hypothetical protein 3.59942994122e-05 5.41165506057e-05 7316175191.85 +UniRef50_UPI0003D0659C 50S ribosomal protein L6 0.000268032457028 0.000213389517458 -22060025248.7 +UniRef50_O27801 Ribosomal RNA large subunit methyltransferase E 0.00243723585527 0.000804397744613 -6.5919678245e+11 +UniRef50_A0A013I2H1 1.67251483267e-05 2.28521841338e-05 2473559542.51 +UniRef50_E6MXU9 Bacterial regulatory helix turn helix , lysR family protein 0.000143530794236 0.00218035481854 8.22290853251e+11 +UniRef50_Q1MK98 3.84901086217e-05 4.85734682634e-05 4070776024.09 +UniRef50_A4CFF4 Excinuclease ABC subunit C 3.8447429531e-05 5.07870386009e-05 4981651605.55 +UniRef50_F7ZCB4 1.93614138063e-05 9.09200088522e-06 -4145888016.12 +UniRef50_A5UJ70 Peptide methionine sulfoxide reductase, PMSR 0.000873566966136 0.000467838431596 -1.63797588243e+11 +UniRef50_G4QEC1 Na+ H+ antiporter, NhaC family protein 0.00603024692687 0.0022571317283 -1.52325290699e+12 +UniRef50_UPI0003B48120 aldehyde activating protein 2.73946716222e-05 3.08713727503e-05 1403586909.33 +UniRef50_H8FT83 0.000478836744996 0.000301847681352 -71452656893.1 +UniRef50_UPI00046A638F hypothetical protein 0.000108231213167 6.74619754926e-05 -16459041544.0 +UniRef50_F0P106 Thioesterase superfamily protein 1.59595002903e-05 0.000616597096296 2.4248476816e+11 +UniRef50_W9C3F0 1.28447102352e-05 1.97437241251e-05 2785216567.77 +UniRef50_E1YHR1 5.50747510539e-06 5.57491348976e-05 20283174592.6 +UniRef50_UPI0002B46230 PREDICTED 3.75539143746e-06 1.48570686071e-05 4481883306.27 +UniRef50_UPI0001BF6B99 90S preribosome component RRP12 1.84742307319e-07 4.34052266133e-06 1677739526.07 +UniRef50_UPI0003B36FDF histidinol dehydrogenase 3.84907475883e-06 5.89162415438e-06 824602255.883 +UniRef50_A6LU03 0.000250884475769 0.00152826718443 5.15695074735e+11 +UniRef50_UPI00026282A2 ATP dependent RNA helicase 5.95834247549e-06 5.79358421468e-05 20983954453.0 +UniRef50_H9UXV0 Glycerol 3 phosphate regulon repressor 0.000186874251907 0.000297298696507 44579703345.3 +UniRef50_T5BIS1 1.44105136951e-06 1.05731101751e-05 3686724202.78 +UniRef50_A6LZX4 0.000254204442373 0.00116004954054 3.65700782099e+11 +UniRef50_D7GEA9 Regulatory protein 3.36201322807e-06 3.06219016011e-05 11005151452.6 +UniRef50_Q1GEZ2 Phosphoribosyl ATP pyrophosphatase 0.000304933388166 3.20112924269e-05 -1.10181999181e+11 +UniRef50_A7HK75 Phospho N acetylmuramoyl pentapeptide transferase 6.86348620862e-06 1.66973283771e-05 3970042758.23 +UniRef50_Z9UWI7 7.45259444518e-05 0.000304342777435 92779875644.9 +UniRef50_UPI0003823FAA hypothetical protein 1.0848406435e-05 3.6822934336e-05 10486235656.9 +UniRef50_A6LV76 ABC transporter related 0.000358530744195 0.00186169977712 6.06847784548e+11 +UniRef50_F3H836 ABC transport protein, inner membrane component 0.000126373116261 4.97905254017e-05 -30917331704.0 +UniRef50_Q99UN8 Malonyl CoA acyl carrier protein transacylase 0.0234592647232 0.00790678632742 -6.27872637876e+12 +UniRef50_J3ML95 8.93941551785e-06 8.01036548357e-05 28729876696.0 +UniRef50_Q8PZP6 NH dependent NAD(+) synthetase 3.24588708574e-05 8.86118586089e-06 -9526675009.25 +UniRef50_G7M7P0 Pseudouridine synthase 0.000516252560877 0.00162564782028 4.47876480031e+11 +UniRef50_UPI00006CF5D0 Ribonucleotide reductase, barrel domain containing protein 7.35054378711e-07 4.03192371522e-05 15980620338.2 +UniRef50_B2V1J4 Oligoendopeptidase F 0.000614246483524 0.00174180126492 4.55207701904e+11 +UniRef50_X0SDU2 Marine sediment metagenome DNA, contig 1.37992001787e-05 0.00010637778906 37375112398.4 +UniRef50_A6LWR2 Pentapeptide repeat protein 0.000144630647073 0.000355424104548 85099905509.3 +UniRef50_I9K9U7 7.42013673445e-05 6.86071883845e-05 -2258438694.45 +UniRef50_B8GPV2 Shikimate kinase 2.82490787016e-05 0.00494369666925 1.98442651163e+12 +UniRef50_B1MWT5 Predicted permease 0.00389650307883 0.00273138139925 -4.70373919697e+11 +UniRef50_K7S768 GHMP kinase, N terminal domain containing protein 0.000159726088367 0.00786419720344 3.11038953365e+12 +UniRef50_UPI00037B6D4D hypothetical protein 0.000593569188326 0.000405854631615 -75782670060.9 +UniRef50_A0A058Z9B5 0.000126521802953 4.77452129912e-05 -31803076065.0 +UniRef50_A3WB27 0.00038153739661 0.000314341301456 -27127888202.5 +UniRef50_UPI0003B50A22 amino acid lyase 2.33178989758e-05 6.70398064063e-05 17651070557.8 +UniRef50_Q9JVF4 Bis tetraphosphatase, symmetrical 2.30308989982e-05 0.000884967415111 3.47974348705e+11 +UniRef50_S3ZBV7 5.5134272954e-05 3.46436966563e-06 -20859774018.5 +UniRef50_K1ZWF0 Dihydroorotate dehydrogenase 0.000291090554801 0.000951539999565 2.66631545477e+11 +UniRef50_A6M087 AraC type transcriptional regulator domain protein 0.000377275693748 0.0017729545956 5.63452699583e+11 +UniRef50_UPI0003631244 hypothetical protein 9.73237400121e-06 7.69874949636e-06 -820999167.987 +UniRef50_A7X1H5 0.0184345281928 0.00428859054347 -5.7108886192e+12 +UniRef50_D6UEI8 0.00246500185851 0.00212280476168 -1.38149167221e+11 +UniRef50_M0VCY1 8.97129956613e-06 0.000261158118716 1.01810913571e+11 +UniRef50_C1MV00 Predicted protein 7.18610528696e-05 1.21608864946e-05 -24101689769.0 +UniRef50_Q0TRG3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.0123549807169 0.00568962191159 -2.69088714285e+12 +UniRef50_UPI000369953F resolvase 6.01536219842e-05 0.00013987258286 32183522767.2 +UniRef50_F0RM02 Metallophosphoesterase 0.000850538671587 0.0601819888457 2.39528345141e+13 +UniRef50_UPI0004633E17 dTDP 4 dehydrorhamnose 3,5 epimerase 1.51788923369e-05 2.6278356964e-05 4480990075.71 +UniRef50_UPI00037B304C hypothetical protein 7.13265152469e-06 2.84238792452e-05 8595529903.51 +UniRef50_UPI000463C82A aldehyde reductase 1.56427319225e-05 1.83284496111e-05 1084257188.35 +UniRef50_Q4L9Z0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0169082617177 0.00219941983288 -5.93813996668e+12 +UniRef50_Q56110 Outer membrane protein S1 0.00507547013477 0.00119738713923 -1.56562969473e+12 +UniRef50_B7H4N1 0.000222442599406 0.0076544063069 3.00037494916e+12 +UniRef50_UPI00031566CC hypothetical protein 6.99237468115e-06 6.63175388527e-05 23950296777.7 +UniRef50_UPI0003647B3B 50S ribosomal protein L5 0.000202434552792 0.000258215085618 22519285606.0 +UniRef50_S9R870 4.7284257471e-05 7.25058753731e-06 -16162083820.6 +UniRef50_D6SE47 0.0211952411663 0.00424967115831 -6.84113455776e+12 +UniRef50_Q9FS88 2 methylacyl CoA dehydrogenase, mitochondrial 0.00019904460203 0.00595523740522 2.32384567108e+12 +UniRef50_UPI0004691E44 hypothetical protein 2.85920087172e-06 5.47493878032e-06 1056005492.42 +UniRef50_A9M410 0.00106835657223 0.0104669733969 3.79433694612e+12 +UniRef50_Q1QE72 Diacylglycerol O acyltransferase 9.58086266163e-05 0.00606794619042 2.41102522088e+12 +UniRef50_F0KF01 0.000202949456367 0.00525753843661 2.0405995981e+12 +UniRef50_UPI000469EC64 peptidase S11 5.36367191231e-06 2.41231727767e-05 7573440703.92 +UniRef50_UPI0004638197 pseudouridine synthase 3.31864683741e-06 8.68862368679e-06 2167925551.12 +UniRef50_UPI00047D4A1B 3,4 dihydroxy 2 butanone 4 phosphate synthase 4.24200620789e-05 6.48154980876e-06 -14508818418.6 +UniRef50_H8YVR6 Mating pair stabilization protein TraN 2.01678828869e-06 3.52323178377e-06 608169725.104 +UniRef50_Q92E26 Lin0635 protein 4.29742528301e-05 0.0026146944976 1.03823502137e+12 +UniRef50_UPI0004787C34 D ala D ala transporter subunit 3.27818645732e-05 7.88507486297e-05 18598573822.4 +UniRef50_UPI0003B75E15 ABC transporter 3.13321171835e-05 3.07347915621e-05 -241147683.369 +UniRef50_W4NLY9 Mobile element protein 4.6002034962e-05 1.85300634716e-05 -11090772009.7 +UniRef50_E9AHU2 Proteophosphoglycan 5 4.16420175687e-05 0.000123403840882 33008251402.0 +UniRef50_Q9RR77 Cytochrome c oxidase, subunit I 0.000359404236973 0.0633286180456 2.54214443337e+13 +UniRef50_A6M3F7 Sigma 54 factor, interaction domain containing protein 0.000281661293276 0.00168688576792 5.67306364456e+11 +UniRef50_P0AA77 D galactonate transporter 0.000836481684023 0.00021848338239 -2.49493498061e+11 +UniRef50_X0SPN8 Marine sediment metagenome DNA, contig 3.23592367072e-06 2.09756754314e-05 7161755477.03 +UniRef50_M2TDC8 2.37689562817e-05 4.2721621462e-05 7651423508.64 +UniRef50_K6MT38 0.00142910137732 0.0201678928387 7.5650800638e+12 +UniRef50_F2SGG3 Glutathione S transferase 0.000110936825073 2.03899444673e-05 -36554886835.7 +UniRef50_H7CWV1 Phage shock protein A 0.000349524063753 0.00289098368658 1.02601843695e+12 +UniRef50_M9RNM4 0.00338826409766 4.30363478161e-05 -1.35050949317e+12 +UniRef50_A5ULI2 tRNA pseudouridine synthase A 0.003001306077 0.000210689682662 -1.12660608311e+12 +UniRef50_UPI00025578F4 dihydroxy acid dehydratase, partial 7.31610814116e-06 4.75614187949e-05 16247525776.4 +UniRef50_B3GZA0 Siroheme synthase 0.00583420616867 0.00501592659389 -3.30349505758e+11 +UniRef50_K7ZDL1 DeoC LacD aldolase family protein 0.0126209664772 0.002568575884 -4.05827343918e+12 +UniRef50_UPI00034553FE hypothetical protein 7.48360125642e-06 1.17326347229e-05 1715386951.92 +UniRef50_C1MKI4 Predicted protein 1.65434941078e-05 8.34313422084e-06 -3310585916.1 +UniRef50_C0Z7W5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.0218614577609 0.0049415734419 -6.83076492991e+12 +UniRef50_UPI000303E0FF hypothetical protein 4.02165015633e-05 5.55832865067e-05 6203759653.31 +UniRef50_Q5NYZ3 Nitrate nitrite antiporter 1.07389023022e-05 5.55199154517e-06 -2094019523.17 +UniRef50_Q3JWL2 7.7364373451e-05 0.000139328915975 25015846207.4 +UniRef50_N7V1R0 2.185632817e-05 2.95294652892e-05 3097739615.0 +UniRef50_A4VMQ2 4.85315906147e-05 0.000211124935956 65640928758.9 +UniRef50_W6KAJ6 BRO family, N terminal domain protein. Phage related DNA binding protein 2.00278823065e-05 1.84618745136e-05 -632216563.07 +UniRef50_G8AH05 3.35979929766e-05 6.85332758875e-05 14103802415.3 +UniRef50_Q6GG70 GTP pyrophosphokinase 0.0214074686727 0.00397557495064 -7.037469409e+12 +UniRef50_UPI0003B47D61 tRNA delta isopentenylpyrophosphate transferase 6.22345282197e-06 1.62077662881e-05 4030789867.58 +UniRef50_B7Z712 60 kDa heat shock protein, mitochondrial 2.47096348245e-05 4.74255752308e-05 9170703897.96 +UniRef50_T5X346 Sensor protein evgS 0.00314502537503 0.00114906057447 -8.05795483228e+11 +UniRef50_G4LPB8 ATP binding permease fusion ABC transporter 0.000296815460704 0.000345326751535 19584603409.0 +UniRef50_Q6C5E4 YALI0E18766p 8.30797413508e-06 1.30546578664e-05 1916294470.69 +UniRef50_A6V6R4 0.00020920330863 0.000244400031881 14209349088.8 +UniRef50_Q89AK1 Glyceraldehyde 3 phosphate dehydrogenase 4.37068682341e-05 2.47709415116e-05 -7644665987.82 +UniRef50_Q5HIB4 Serine aspartate repeat containing protein C 0.0202018905514 0.00446505189352 -6.35315487892e+12 +UniRef50_UPI0003F08AB5 PREDICTED 0.000148923402963 8.62405358341e-05 -25305842665.2 +UniRef50_B1TFY4 LigA 0.000707227881682 0.000184492453673 -2.11034706972e+11 +UniRef50_Q9RS49 Amino acid ABC transporter, periplasmic amino acid binding protein 0.000920723343509 0.0557400564622 2.21312374889e+13 +UniRef50_V8BEZ6 6.7173661447e-05 6.9090248326e-05 773749642.218 +UniRef50_P0ACL6 Glc operon transcriptional activator 0.00432523640196 0.00247363367397 -7.4751474301e+11 +UniRef50_U2SGB1 Imelysin 1.73381625347e-05 0.000111237918984 37908483958.2 +UniRef50_M1N514 0.000269359016931 0.000623549449316 1.42991023959e+11 +UniRef50_B4RCM7 NADH quinone oxidoreductase subunit C 0.0160166668845 0.00464350995767 -4.59148301568e+12 +UniRef50_UPI00040C5C40 multidrug ABC transporter ATPase 1.08102005534e-05 2.70939078355e-05 6573932453.34 +UniRef50_A0A020WTM6 6 phospho beta galactosidase 0.00328654549774 0.000653259279449 -1.06308996038e+12 +UniRef50_UPI00016C5625 Putative bacteriophage holin protein 8.714161401e-05 4.53558919806e-05 -16869408751.7 +UniRef50_Q31I51 Zinc import ATP binding protein ZnuC 1.82043894177e-05 3.38090238449e-05 6299782408.66 +UniRef50_V4R6H1 ATPase AAA 2.48111105099e-05 3.75217986315e-05 5131460772.37 +UniRef50_Q1CUH1 Ketol acid reductoisomerase 4.36521825183e-06 0.00340818401642 1.37416341837e+12 +UniRef50_D3E138 0.00319872884559 0.00194763281429 -5.05082820511e+11 +UniRef50_Q7UNN9 Bifunctional protein FolD 2.65767436071e-05 0.00357762756323 1.43360279217e+12 +UniRef50_U6MKZ6 8.06943107132e-06 5.32514598488e-07 -3042745668.45 +UniRef50_I0C1R4 0.00159420992346 0.000744495895456 -3.43039980269e+11 +UniRef50_Q04E86 DNA directed RNA polymerase subunit beta 0.0185767700226 0.0145840021491 -1.6119293873e+12 +UniRef50_P14407 Fumarate hydratase class I, anaerobic 0.00292233837971 0.00414689287694 4.94367677505e+11 +UniRef50_Q74CZ6 5 nucleotidase SurE 0.000298801574284 0.00787581653699 3.05893392088e+12 +UniRef50_UPI00035047B5 PREDICTED 0.000370510237563 0.000237502126784 -53697006514.5 +UniRef50_H8MLE9 Pirin family protein 2.81571081211e-05 6.43233306495e-06 -8770558283.16 +UniRef50_B0VC75 0.000849822006764 0.0103289882688 3.82685574244e+12 +UniRef50_X5DWG5 ABC 2 transporter family protein 0.0118263476215 0.00247621423248 -3.77476358819e+12 +UniRef50_Q6A8C6 ATP synthase gamma chain 0.000255058100582 0.00249056800984 9.0250278316e+11 +UniRef50_R7YLT4 0.000231981179873 3.05484111531e-05 -81320880590.3 +UniRef50_UPI00037397F4 hypothetical protein 1.15962366269e-05 6.30757280599e-05 20782902415.9 +UniRef50_P0AA72 0.00235114999634 0.000394141203652 -7.90068464807e+11 +UniRef50_A4EAZ9 4.58239276806e-05 1.07580792655e-05 -14156513311.5 +UniRef50_UPI0004653BA0 hypothetical protein 0.000335633263467 0.00019521068067 -56690319854.0 +UniRef50_UPI00045E6087 hypothetical protein 8.75444887175e-05 0.000160937271259 29629566942.7 +UniRef50_UPI000378C160 hypothetical protein 1.15329886117e-05 2.24450584983e-05 4405336519.38 +UniRef50_K0LJV9 0.00301866158195 0.00272409348682 -1.18920754761e+11 +UniRef50_Q67N09 Shikimate kinase 3.46577290451e-05 3.95558399668e-05 1977427485.67 +UniRef50_UPI00036A8298 hypothetical protein 2.00463914486e-05 4.9845087809e-05 12030099391.8 +UniRef50_E3GX37 H+transporting two sector ATPase C subunit 0.00190124259117 0.00104229425363 -3.46767984346e+11 +UniRef50_UPI000382EE91 hypothetical protein 2.68395701029e-06 9.61879113497e-05 37748693789.4 +UniRef50_H9K6K8 3.20250738869e-05 6.21586566608e-05 12165297146.5 +UniRef50_J0LGW4 0.000275413787398 7.40842907259e-05 -81279188397.2 +UniRef50_A6LWE8 Ribonucleoside triphosphate reductase, adenosylcobalamin dependent 0.00024613554059 0.000987560894937 2.99322513862e+11 +UniRef50_Q1N9J0 Plasmid partitioning protein RepAa1 3.16161271096e-05 2.35774287104e-05 -3245321189.68 +UniRef50_UPI0003AE07B3 PREDICTED 0.000107721447032 7.00213515803e-05 -15219991166.0 +UniRef50_A9WM93 Uracil DNA glycosylase 0.000709340724343 0.00665775573545 2.40144813525e+12 +UniRef50_A5IW30 0.0181019545967 0.00676680427745 -4.5761392818e+12 +UniRef50_UPI0003D0C408 PREDICTED 3.21738413227e-05 8.16265423969e-05 19964662276.5 +UniRef50_X4ZB59 EAL domain protein 6.29813973851e-06 5.83736416967e-05 21023519178.8 +UniRef50_UPI0001B46820 GTPase ObgE, partial 3.68909666183e-05 0.000450304867202 1.66900264825e+11 +UniRef50_UPI000463A064 L asparagine permease 5.8560281144e-06 1.36520119822e-05 3147334354.91 +UniRef50_UPI00035FE410 peptide ABC transporter permease 6.84922962506e-05 0.000167176785893 39840139463.5 +UniRef50_Q5YS08 Ribonuclease 3 2.52205637789e-05 6.93142376719e-05 17801157240.8 +UniRef50_A9AC17 L carnitine dehydratase bile acid inducible protein F 0.00309243013243 0.00795824514871 1.96438923234e+12 +UniRef50_P33919 0.00382317897368 0.000977286184154 -1.14892184216e+12 +UniRef50_H1UL22 Dehydrogenase 0.00019561109237 2.84875484223e-05 -67469825528.3 +UniRef50_UPI0004782043 AsnC family transcriptional regulator 0.00018988034278 0.00011683360775 -29489863315.9 +UniRef50_M9SF47 0.000251657325899 0.000393755606923 57366819791.4 +UniRef50_UPI000470709D hypothetical protein 5.82702939008e-05 7.18725314652e-05 5491390222.97 +UniRef50_G8NUY5 Beta lactamase domain protein 3.57755165396e-06 0.00018748512452 74245743965.7 +UniRef50_A6LXY2 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.000343626321018 0.000909865031755 2.28597516055e+11 +UniRef50_P24734 HTH type transcriptional activator AmpR 0.00896469061121 0.00136719685808 -3.06720145987e+12 +UniRef50_V6PIL4 2 isopropylmalate synthase 0.00306085241467 0.000452015365101 -1.05321953094e+12 +UniRef50_O07599 0.000306692225712 0.00161501013008 5.2818399286e+11 +UniRef50_C7ZT42 DNA binding protein 0.0167421611663 0.00304410231283 -5.53007445324e+12 +UniRef50_C9CRT7 0.000525551496523 0.000252931023886 -1.10060230233e+11 +UniRef50_P31063 0.000275537218136 0.00043007287164 62387939685.3 +UniRef50_B1Z5H1 Secretion protein HlyD family protein 0.00130745224531 0.000998317946022 -1.24801310127e+11 +UniRef50_P0ABH3 Cell division protein FtsA 0.00337080064067 0.000766383440838 -1.05143518336e+12 +UniRef50_B9JPQ6 1.95134207401e-05 0.000462184441305 1.78711723186e+11 +UniRef50_UPI0003B69DC4 flagellar P ring protein FlgI 1.20122179613e-05 1.23485711816e-05 135789922.553 +UniRef50_F3X2S2 4.59759012182e-06 9.20508903668e-05 35305970481.6 +UniRef50_R1D4S7 0.000781124102474 0.000504879154655 -1.11523475341e+11 +UniRef50_A6M1M3 0.000178521218719 0.00109088185213 3.68331183632e+11 +UniRef50_Q6AA07 8.65830399895e-05 0.00374771682532 1.4780446363e+12 +UniRef50_UPI0002895CF3 amino acid carrier protein, partial 3.07527779269e-06 6.57245516558e-05 25292280651.6 +UniRef50_Q4L5Y3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.014158780232 0.00699647351658 -2.8915111124e+12 +UniRef50_H5VFC5 GTP binding protein TypA BipA 0.000309734987058 0.00092465194711 2.48249522653e+11 +UniRef50_S8FC16 9.02169197517e-06 8.93450055413e-07 -3281471007.75 +UniRef50_Q8X8V7 0.00216837480698 0.000689827503621 -5.96907690182e+11 +UniRef50_E8SG33 Chromosome partition protein Smc 0.01119904703 0.00408161349581 -2.87339525848e+12 +UniRef50_Q4L928 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0284514376016 0.00283334220864 -1.03423394795e+13 +UniRef50_Q9RUV2 Superoxide dismutase [Mn] 8.98827358224e-06 0.0432369876598 1.74516738194e+13 +UniRef50_Q59092 3 carboxy cis,cis muconate cycloisomerase 0.000116388280223 0.00755411772186 3.00270264679e+12 +UniRef50_M9RIH4 TAXI family TRAP transporter periplasmatic solute binding protein 3.83686424031e-05 6.58205425613e-05 11082668966.6 +UniRef50_C4LED9 Transcriptional regulator, LuxR family 0.00126490570685 0.000453171414615 -3.27707094875e+11 +UniRef50_C5MZG2 Molybdopterin guanine dinucleotide biosynthesis protein B 0.0205282096216 0.00326447077521 -6.96958322219e+12 +UniRef50_UPI00036FB829 hypothetical protein 3.83276617277e-05 3.4514050012e-05 -1539601847.91 +UniRef50_N1K138 FtsK SpoIIIE family protein 0.000192896796686 0.0024574042677 9.14209454678e+11 +UniRef50_A5UMP2 0.000978079377288 0.000381875049823 -2.40695003247e+11 +UniRef50_S1IPQ9 0.0032416877403 0.00139545809872 -7.45345562091e+11 +UniRef50_P58054 Hydrolase YbeM 0.00268118851425 0.000867621868769 -7.32159109746e+11 +UniRef50_F5RN18 Prophage terminase large subunit 1.13869694362e-05 8.96154016274e-05 31581778046.4 +UniRef50_P09127 Putative uroporphyrinogen III C methyltransferase 0.00334090812159 0.00168626546733 -6.67999544273e+11 +UniRef50_B9KSC1 0.00142630939619 0.000569742758434 -3.45806462917e+11 +UniRef50_A3PNN6 Polysaccharide biosynthesis protein CapD 0.0105844402743 0.00344667600007 -2.88160302772e+12 +UniRef50_B3PD00 Capsular polysaccharide synthesis 3.56062356243e-05 2.18696537434e-05 -5545626672.13 +UniRef50_UPI00028A40F7 thymidylate synthase 0.000111203512763 0.00086195914914 3.03089263213e+11 +UniRef50_A6H086 Potassium transporting ATPase A chain 1.50854074449e-05 0.00400522737693 1.61086927763e+12 +UniRef50_P66878 Cobalamin biosynthesis protein CobIJ 2.18934684314e-05 1.0563013675e-05 -4574243625.47 +UniRef50_Q1GMI4 HTH type transcriptional regulator BetI 0.00224099555763 0.000624343953484 -6.52662091141e+11 +UniRef50_R6XE72 0.000182360381085 0.00239078308213 8.91567344808e+11 +UniRef50_UPI000369508B hypothetical protein 3.14306742076e-05 2.09627932915e-05 -4226011981.17 +UniRef50_UPI0004648EC6 beta ketoadipyl CoA thiolase, partial 5.67598216689e-06 0.000263468450984 1.04073983131e+11 +UniRef50_A4VWG8 Transcriptional antiterminator 0.000870876505477 0.0038648993834 1.20872377661e+12 +UniRef50_J9NVM5 0.000317615403647 8.56114941001e-05 -93662825292.2 +UniRef50_Q96255 Phosphoserine aminotransferase, chloroplastic 0.00128321897074 0.00228206884437 4.03247951251e+11 +UniRef50_Q8Z9J5 Ribosomal large subunit pseudouridine synthase A 0.00407451511282 0.000294614182339 -1.52599239024e+12 +UniRef50_H6NE34 0.000126083817428 1.72353724561e-05 -43943452955.8 +UniRef50_I7ENJ2 0.00127049820569 0.000937513349825 -1.34430072496e+11 +UniRef50_UPI00047AC07F hypothetical protein 1.79504123901e-05 3.76411731093e-05 7949401735.15 +UniRef50_UPI00037F808C hypothetical protein 5.66961179638e-06 3.95169639974e-05 13664591437.3 +UniRef50_UPI0003B4238D acyl CoA dehydrogenase 4.23360286583e-06 3.97437736944e-05 14335891722.3 +UniRef50_A0A024DFE0 Membrane protein 0.00649501524262 0.00124521318026 -2.11940951489e+12 +UniRef50_E6MXN3 Bacteriophage Mu I protein GP32 0.00011069970347 0.00377147114122 1.47789835214e+12 +UniRef50_D7GDI2 Glycogen debranching enzyme GlgX Isoamylase 0.000209928833228 0.00604758440643 2.35673319099e+12 +UniRef50_Q018U5 COG0031 0.00219675561832 0.000927724786466 -5.12323319577e+11 +UniRef50_A3M5U8 Glu tRNA amidotransferase 0.000582600360026 0.00686477668204 2.53619167217e+12 +UniRef50_B9DNN7 Aminomethyltransferase 0.00914115016219 0.00522048673461 -1.58281993766e+12 +UniRef50_P76470 Inner membrane transport protein RhmT 0.00437819412686 0.000930064678071 -1.39205217178e+12 +UniRef50_UPI0002000D3D DeoR family transcriptional regulator 0.000198150867052 0.000372785016686 70501949209.2 +UniRef50_S7VF17 2.2587823641e-05 2.75024297817e-05 1984086808.0 +UniRef50_Q81K13 UDP N acetylglucosamine 1 carboxyvinyltransferase 1 1.69984866032e-05 8.37543625088e-05 26950166289.8 +UniRef50_Q9RXY2 0.000152622367462 0.067113292039 2.70328440462e+13 +UniRef50_Q0TUR6 Beta galactosidase Pbg 0.000477938266819 0.00212120636312 6.63407495643e+11 +UniRef50_A7ZUJ0 Pantothenate kinase 0.00398103938752 0.000452305822341 -1.42459304269e+12 +UniRef50_Q6LSD6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.33443576863e-06 2.74349808578e-06 -2660842422.47 +UniRef50_P27840 0.00312804233966 0.000504814880674 -1.05902911582e+12 +UniRef50_Q4L783 UPF0478 protein SH1183 0.0129183532718 0.0102050111044 -1.09540952943e+12 +UniRef50_F1PYJ5 9.01117188233e-07 0.000102201738892 40896304080.3 +UniRef50_UPI00021A59F3 PREDICTED 6.59175382665e-05 3.05040399008e-05 -14296863862.7 +UniRef50_Q2FVY9 HTH type transcriptional regulator SarV 0.0168220999643 0.00377878829936 -5.26574497855e+12 +UniRef50_Q2S4I8 Biotin synthase 4.7621694114e-06 5.7193065787e-05 21166996266.3 +UniRef50_W8TJK1 5.88725873443e-06 2.03083448293e-05 5821969423.14 +UniRef50_B5E267 Ribosome binding factor A 0.00296405241928 0.000535317290393 -9.80510175464e+11 +UniRef50_E0WIF5 CagZ protein 0.000834795787505 0.00344756603461 1.05480741105e+12 +UniRef50_B5Y8S3 Transcription termination factor Rho 0.000197982161991 0.00426045117553 1.64006859287e+12 +UniRef50_D5V5Y4 Hemolysin type calcium binding region 2.55320873603e-06 8.45993003455e-07 -689223941.135 +UniRef50_Q5FNA2 Transcriptional repressor NrdR 0.00576095190673 0.000397287047353 -2.1653773233e+12 +UniRef50_D7FSA3 0.00106198297138 0.000329962799096 -2.95525526449e+11 +UniRef50_UPI00035ED229 hypothetical protein 2.75187199693e-05 3.23876030697e-06 -9802117664.28 +UniRef50_B5YDT2 D tyrosyl tRNA deacylase 0.00330452693409 0.00747744939336 1.68466000432e+12 +UniRef50_V9X558 0.0027262416657 0.000358955293068 -9.55702558501e+11 +UniRef50_E6K0A1 GroES like protein 0.00325834409436 0.00118599040039 -8.36634616895e+11 +UniRef50_B5XY59 Dihydroorotate dehydrogenase 0.00243255812297 1.77869503976e-05 -9.74872754941e+11 +UniRef50_UPI00037BE1B4 hypothetical protein 2.29578583471e-05 6.93144360538e-06 -6470060297.45 +UniRef50_A6LXY0 D galactose binding periplasmic protein 0.000237062033318 0.000168591839309 -27642257545.2 +UniRef50_UPI0003800F45 hypothetical protein, partial 1.66972765658e-05 5.90526863844e-05 17099398703.1 +UniRef50_E3A0J6 0.00211674386272 0.000383806722049 -6.99607989219e+11 +UniRef50_UPI000476452D 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.03588972662e-05 4.31104507748e-05 13222204058.2 +UniRef50_A0A023S0J1 Sodium 0.000677184245367 0.00952386807991 3.57151482502e+12 +UniRef50_Q0FNM1 5.41260145744e-06 1.08677490104e-05 2202310009.32 +UniRef50_G8AZY0 6.58176502531e-05 2.37447774224e-05 -16985335054.0 +UniRef50_UPI0003787256 hypothetical protein 8.37676771772e-06 1.47905367657e-05 2589317270.47 +UniRef50_Q094V3 4.1498880895e-05 5.25822912724e-05 4474508778.1 +UniRef50_UPI00036D8B59 hypothetical protein 0.000111349102001 3.31189048694e-05 -31582490574.5 +UniRef50_Q83SQ3 Glutathione regulated potassium efflux system protein KefC 0.00139778165811 0.000210094264896 -4.79483975202e+11 +UniRef50_Q3J5H6 Bifunctional uridylyltransferase uridylyl removing enzyme 0.00595333929402 0.00283608266032 -1.25847475607e+12 +UniRef50_Q48335 Glyceraldehyde 3 phosphate dehydrogenase 0.0137980454389 0.00453567906558 -3.73933096693e+12 +UniRef50_UPI0003B4462C hypothetical protein, partial 3.03877483906e-05 3.40130587235e-05 1463582268.95 +UniRef50_A8Z4R9 Bacteriophage integrase 0.0145715884757 0.0043042838889 -4.14503685569e+12 +UniRef50_Q8X9Z2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.00571900380746 0.00112612177666 -1.85420283683e+12 +UniRef50_W5W9B3 9.02907257519e-05 1.92865753007e-05 -28665246856.1 +UniRef50_P0ADV3 Lipopolysaccharide export system protein LptA 0.00360963106788 0.000969245214967 -1.06595617e+12 +UniRef50_A5UN28 Biopolymer transport protein 0.00305111682171 0.00216182931077 -3.59016280951e+11 +UniRef50_A3PHB1 0.0282865972439 0.00101711841837 -1.1009023236e+13 +UniRef50_Q8T137 Glutathione reductase 0.00247083372516 0.000274129199397 -8.86836573645e+11 +UniRef50_P94357 UPF0750 membrane protein YxkD 0.0123248103717 0.00535017271149 -2.81574681186e+12 +UniRef50_J2X5J3 8.656701238e-05 5.96094739784e-05 -10883089058.9 +UniRef50_Q9RSY5 Thymidine kinase 1.78085265277e-05 0.0200502663909 8.08734906576e+12 +UniRef50_F9YYP8 Pyridoxal kinase 0.000751232532717 0.00756003279175 2.74879621795e+12 +UniRef50_Q0HDL5 LexA repressor 0.00271502841277 0.00175759417293 -3.86527951663e+11 +UniRef50_G1FTZ5 Gp57 7.35095055468e-06 1.1241430419e-05 1570634462.78 +UniRef50_Q5QVL6 D erythrose 4 phosphate dehydrogenase 0.000287020616154 0.000156148935472 -52834503467.4 +UniRef50_UPI0003C11E65 PREDICTED 0.000119800171384 5.33905138125e-05 -26810393699.8 +UniRef50_A0A024F1P3 Membrane protein 9.24807478684e-05 6.4267487052e-05 -11390039607.2 +UniRef50_UPI00036780D5 peptide ABC transporter permease 3.63602092308e-05 2.80630446978e-05 -3349667139.63 +UniRef50_UPI0003789F55 hypothetical protein 1.52277889728e-05 0.000116564904591 40911037121.2 +UniRef50_F8I5D2 3.73706477959e-06 1.44868590244e-05 4339823851.44 +UniRef50_F0P5S5 Accessory Sec system protein translocase subunit SecY2 0.0117429628346 0.00256164763503 -3.70660961347e+12 +UniRef50_A9M194 AraC family transcriptional regulator 0.000191942028225 0.00334782423651 1.27406837451e+12 +UniRef50_A9C190 Potassium transporting ATPase A chain 3.20190825613e-05 0.00513072833528 2.05841149352e+12 +UniRef50_S8VH52 3.23269025974e-05 4.55918139403e-05 5355207487.9 +UniRef50_A4WU01 Polysaccharide export protein 0.00364722274638 0.00129377448768 -9.50115942095e+11 +UniRef50_A6X187 Leucyl phenylalanyl tRNA protein transferase 3.0318842638e-05 8.91259578659e-05 23741154062.0 +UniRef50_Q8RG83 Orotidine 5 phosphate decarboxylase 2.55651245226e-05 7.54271368688e-05 20129906259.9 +UniRef50_D1ZR99 Catabolic 3 dehydroquinase 3.32767199175e-05 1.6669198008e-05 -6704660392.08 +UniRef50_A4WTH1 0.000957905348971 0.000189011797994 -3.10411761914e+11 +UniRef50_U4Q3Y6 Carboxylesterase 1.16196847354e-05 2.29638682635e-05 4579786099.08 +UniRef50_UPI000299F85F ribokinase 6.31491108994e-06 1.30142341952e-05 2704598947.53 +UniRef50_O27507 0.00222258976562 0.000660924140129 -6.30463576803e+11 +UniRef50_UPI00047263C5 hypothetical protein 9.9479596506e-06 0.000123031849122 45653353874.8 +UniRef50_A6LGA4 Non canonical purine NTP pyrophosphatase 8.91839599951e-06 0.00100074099436 4.0041095399e+11 +UniRef50_P22759 Bacterioferritin 7.19257972469e-05 0.000153741909245 33030168410.2 +UniRef50_UPI0003B5D657 NAD dependent malic enzyme 1 1.29550330898e-05 5.85551840915e-06 -2866161197.42 +UniRef50_W4U517 PTS system 1.07766827986e-05 2.12859764118e-05 4242730795.18 +UniRef50_X0UC79 Marine sediment metagenome DNA, contig 1.36075545208e-05 0.000174334548928 64887459984.1 +UniRef50_P56062 Citrate synthase 1.3483385012e-05 0.00158325514648 6.33736123371e+11 +UniRef50_P37050 0.00170892126497 0.00158666192294 -49357596668.3 +UniRef50_UPI0003840695 PREDICTED 0.000138105092199 1.50169683924e-05 -49692186042.0 +UniRef50_A9EUD2 2.12977261213e-06 8.47491045166e-05 33354438143.1 +UniRef50_Q9B0F8 DnaC 0.00859070677453 0.00138972300884 -2.90712551222e+12 +UniRef50_B9KNG3 5.10600788578e-05 0.000367875078469 1.279021031e+11 +UniRef50_UPI000361064B hypothetical protein 1.07763301738e-05 3.1731219976e-05 8459746158.56 +UniRef50_P76298 Flagellar biosynthesis protein FlhA 0.00380631142845 0.000780012191102 -1.22175413899e+12 +UniRef50_UPI00028A1A5C HAD superfamily hydrolase, partial 3.81488485513e-05 0.000119305653981 32763998258.0 +UniRef50_UPI000470C144 tRNA dihydrouridine synthase 7.87905553304e-06 7.70875686992e-06 -68751660.1011 +UniRef50_O59428 0.000113108158144 0.000399142896727 1.15475734007e+11 +UniRef50_R5LUL0 Spore coat polysaccharide biosynthesis protein spsC 0.000111352799069 0.000828471383495 2.89509572567e+11 +UniRef50_Q07X28 Hydroxylamine reductase 0.000874975687224 0.00382974708205 1.19287747122e+12 +UniRef50_UPI0004702B05 integrase, partial 0.000225897872189 0.000137998460376 -35486071196.0 +UniRef50_A6LTH9 0.000283824051773 0.00132451746136 4.20140700196e+11 +UniRef50_O28994 Carbamoyl phosphate synthase large chain 0.00395879071948 0.0461174565857 1.70199707552e+13 +UniRef50_A6M0L2 Beta ketoacyl acyl carrier protein synthase I 0.000664025621124 0.00159830751656 3.77181066116e+11 +UniRef50_J0SEV2 G5 domain protein 0.000352931665289 0.000178226775303 -70530507957.4 +UniRef50_X8A0M6 0.00133776936483 0.000652809788015 -2.76526586559e+11 +UniRef50_A6TVZ6 Metal dependent phosphohydrolase 0.000283824051773 0.000673652252854 1.57378428506e+11 +UniRef50_Q169C1 0.000294241340882 2.25449069014e-05 -1.09687184488e+11 +UniRef50_H9KBT1 7.45842352229e-06 2.14826545911e-05 5661754179.14 +UniRef50_D7I3U8 Dipeptide transport system permease protein 3.49468616108e-05 4.16251014161e-05 2696087360.62 +UniRef50_UPI00035FCD14 hypothetical protein 1.07663972604e-05 1.17417356986e-05 393756096.25 +UniRef50_D9UU07 Radical SAM domain containing protein 0.000163241227578 0.000862081090623 2.82130228441e+11 +UniRef50_A5G2W1 Carbohydrate ABC transporter substrate binding protein, CUT1 family 1.45430315596e-05 7.61275457121e-06 -2797837864.28 +UniRef50_UPI0002EE07FC hypothetical protein 4.73987436036e-06 1.0936994393e-05 2501853404.39 +UniRef50_P75995 0.00120637898388 0.000337957755454 -3.50592306642e+11 +UniRef50_N4S0B6 Type 1V conjugative transfer system mating pair stabilization family protein 2.4185626762e-05 2.08577560381e-05 -1343502248.8 +UniRef50_D8GPT5 Predicted aminoacid permease 0.00025135343659 0.000562779026146 1.25726332125e+11 +UniRef50_UPI00047A1147 nucleoside triphosphate diphosphatase, partial 9.72665400358e-05 8.96010207788e-05 -3094664190.55 +UniRef50_B8GIV7 CRISPR associated helicase Cas3 8.82302985918e-05 2.53871312813e-05 -25370557815.6 +UniRef50_C5BIJ8 Leucyl phenylalanyl tRNA protein transferase 9.05398084321e-06 1.72972504902e-05 3327909112.78 +UniRef50_UPI00046616FD 4 alpha glucanotransferase, partial 7.8970119451e-06 0.000346638971304 1.36754285825e+11 +UniRef50_D9RCZ8 0.0184525643998 0.000729177049855 -7.15514896357e+12 +UniRef50_Q51519 Anthranilate synthase, phenazine specific 0.000635317413918 0.000208236527794 -1.724177946e+11 +UniRef50_UPI0002559CB6 nucleoside triphosphate diphosphatase 9.14582280039e-05 1.7521070832e-05 -29849337661.2 +UniRef50_Z5XN41 Diguanylate cyclase 4.77440390972e-06 0.000527919795919 2.1120021447e+11 +UniRef50_D3A856 DNA gyrase, B subunit, C terminal domain protein 0.000101171386051 0.00243788110412 9.43358387838e+11 +UniRef50_UPI00016C4069 transporter 3.07101452896e-05 2.55993414771e-06 -11364585679.9 +UniRef50_X2H969 D 2 hydroxyglutarate dehydrogenase 0.000175044792492 0.00105306477336 3.54467440793e+11 +UniRef50_A9M0U6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.49529057972e-05 0.0105349705462 4.24706021656e+12 +UniRef50_Q6NCF3 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000215365618767 0.0444317258033 1.78506872022e+13 +UniRef50_Q8CN93 Membrane protein 0.0117688374796 0.00609235660517 -2.29166498726e+12 +UniRef50_Q6AAZ9 DNA integrity scanning protein DisA 0.000206276496643 0.00544561143834 2.11518380983e+12 +UniRef50_Q55842 UPF0062 protein slr0519 2.06978826827e-05 7.10017158759e-05 20308274757.5 +UniRef50_UPI00047D4A4F hypothetical protein 1.83433260313e-05 2.39649053723e-05 2269500564.5 +UniRef50_B1ZS98 Polyribonucleotide nucleotidyltransferase 2.50058124e-06 8.98044110755e-06 2615998945.35 +UniRef50_D2N4J0 Sau1hsdS1 0.0104085122778 0.00216805395542 -3.32677414654e+12 +UniRef50_UPI00026286DA sugar ABC transporter ATP binding protein 0.000119729800084 7.53174262817e-05 -17929820305.1 +UniRef50_Q8CSR0 ABC transporter 0.0105629027881 0.00563935023729 -1.98769858355e+12 +UniRef50_A3PNK2 OstA family protein 0.00205676612335 0.00156805330192 -1.97299363192e+11 +UniRef50_V8G4T0 Sugar ABC transporter substrate binding protein 0.000288910775359 0.00118187358362 3.60500043581e+11 +UniRef50_P62417 Phosphoglycerate kinase 1.42804882688e-05 2.04166383748e-05 2477239096.82 +UniRef50_C5BF52 Adenine deaminase 0.000915415584082 0.00051227034625 -1.62754679661e+11 +UniRef50_A6LXY1 PAS PAC sensor hybrid histidine kinase 0.000384272226826 0.000668424457461 1.14715742447e+11 +UniRef50_P77744 HTH type transcriptional regulator AbgR 0.00291693286932 0.00121961066811 -6.85229801114e+11 +UniRef50_P21864 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.000171818849762 0.000112316296738 -24021910834.2 +UniRef50_UPI00046EEC85 hypothetical protein 5.18488924431e-06 1.94089311602e-05 5742420270.07 +UniRef50_P37197 Probable cytochrome c peroxidase 0.00175058074837 0.00215170087626 1.61937117927e+11 +UniRef50_UPI0004757670 3 phosphoshikimate 1 carboxyvinyltransferase 4.25705310328e-06 6.03287562878e-06 716921345.337 +UniRef50_UPI0001BF6FB5 hypothetical protein SMAC_10438, partial 7.63915731118e-05 0.00016806865008 37011160976.3 +UniRef50_UPI000375EC1F hypothetical protein, partial 4.27225766513e-06 1.35847077517e-05 3759550376.56 +UniRef50_UPI000476341B major facilitator transporter 1.49980391734e-05 0.00016562263317 60808996968.2 +UniRef50_UPI000463A3EE hypothetical protein 5.6772810305e-05 0.000108837759561 21019258923.4 +UniRef50_P34842 Cytochrome c oxidase subunit 3 7.53617671939e-05 2.73335263335e-05 -19389590208.1 +UniRef50_UPI00026533A3 5.63782328225e-06 7.2977677582e-05 27185925533.8 +UniRef50_Q9RTL7 Fosmidomycin resistance protein, putative 0.000107341987354 0.0170317927987 6.83260847889e+12 +UniRef50_UPI0003514416 PREDICTED 0.000872771219099 0.000290850682017 -2.34928461788e+11 +UniRef50_N9IA23 0.000108906838666 2.72427087213e-05 -32968811390.2 +UniRef50_Q9RXT0 Phosphoribosylaminoimidazole succinocarboxamide synthase 2.97399608376e-05 0.0448614174803 1.80990983612e+13 +UniRef50_Q3IUV6 Thioredoxin domain protein 0.00134711416884 0.000900993179516 -1.8010451791e+11 +UniRef50_Q05627 0.0001469154725 0.000114095314303 -13249900612.8 +UniRef50_A7X2Q3 N utilization substance protein B homolog 0.00606330486314 0.00767751000156 6.51674422905e+11 +UniRef50_F8DIJ3 Acetyltransferase, GNAT family 0.00502559585656 0.00378879746326 -4.99310688598e+11 +UniRef50_UPI00047D4833 hypothetical protein 2.61790042001e-06 4.00269138362e-06 559057105.305 +UniRef50_UPI00037A95AF hypothetical protein 1.06226531703e-05 3.19483786463e-05 8609457070.74 +UniRef50_Q3J3X7 0.0132387453601 0.00215941909487 -4.47285997188e+12 +UniRef50_UPI0004758995 hypothetical protein 3.483005933e-05 3.2354975104e-05 -999221874.735 +UniRef50_Q5HME0 Probable DEAD box ATP dependent RNA helicase SERP1688 0.0206454340274 0.00528303690403 -6.20198823653e+12 +UniRef50_M9RWN2 Chromosome partitioning protein ParA 9.31047042135e-06 6.28541806761e-05 21616252885.0 +UniRef50_A0A024HNH0 0.000489563015601 9.84936204108e-05 -1.57879513799e+11 +UniRef50_Q3J3X0 0.00933182625375 0.00428272733204 -2.03838319411e+12 +UniRef50_UPI0002001DF1 superfamily II RNA helicase, partial 1.16764018316e-05 3.45178371476e-05 9221367733.0 +UniRef50_UPI0003B3ECAB large mechanosensitive ion channel protein MscL 0.000323393402553 7.778216695e-05 -99156269801.7 +UniRef50_A0A010AWY9 CSLREA domain protein 0.000206276496643 0.00149619473811 5.20755823158e+11 +UniRef50_UPI000475CD3E hypothetical protein, partial 3.07619221852e-06 2.74847523127e-05 9854035236.74 +UniRef50_H9KRI1 0.000182687712035 8.67872991152e-05 -38716173526.1 +UniRef50_Q2CG67 3.35159057983e-05 0.000256548605175 90041037657.5 +UniRef50_A8IL90 Predicted protein 1.90694146156e-05 2.13878347521e-05 935974659.319 +UniRef50_H9KH51 2.98835578895e-06 3.93310390022e-06 381406405.883 +UniRef50_J9NXN3 2.30664202071e-05 1.90347954718e-05 -1627616379.24 +UniRef50_UPI00035E2C47 hypothetical protein 3.20974134219e-05 1.66219279978e-05 -6247643371.27 +UniRef50_B7MBY5 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.00290228934463 0.00250829376334 -1.59060851036e+11 +UniRef50_UPI0003B58132 hypothetical protein 1.66134263882e-05 2.13337791438e-05 1905664332.68 +UniRef50_B8J7M5 FHA domain containing protein 5.56574297819e-06 9.55729557795e-06 1611438766.38 +UniRef50_UPI000307F825 hypothetical protein 1.58648297374e-05 2.19619675484e-05 2461489354.6 +UniRef50_A6UZY8 0.00144151145681 0.000326798772262 -4.50023189816e+11 +UniRef50_UPI0003F490D8 hypothetical protein TREMEDRAFT_66895 4.96909919759e-06 1.51076461132e-05 4093055803.79 +UniRef50_R9SLB7 RNA methylase 0.00260833065135 0.000251333366122 -9.51548727657e+11 +UniRef50_M4RYW8 Putative thioesterase 3.33677059278e-06 0.00149850091015 6.03616110868e+11 +UniRef50_B2TRN5 Bifunctional protein FolD 0.000428055966941 0.00100938176843 2.34688359731e+11 +UniRef50_F9YW81 Sugar ABC transporter permease 0.000725730064477 0.00812963508282 2.98904731204e+12 +UniRef50_Q6FCZ3 Pseudouridine synthase 0.000437242458129 0.00840542176787 3.2168517679e+12 +UniRef50_A4FBF7 Elongation factor P 2.89581685257e-05 0.000287901060692 1.04538423154e+11 +UniRef50_F5M415 Periplasmic binding protein 0.000717843357164 0.000313056577946 -1.63417390063e+11 +UniRef50_U9TNM9 2.36067059259e-05 2.14362424995e-05 -876242719.819 +UniRef50_UPI0003797F94 membrane protein, partial 5.87800439099e-05 1.04875332767e-05 -19496279158.4 +UniRef50_O83349 Serine hydroxymethyltransferase 0.00033171414778 0.00667324212929 2.56015266543e+12 +UniRef50_Q65SJ3 0.000111682253253 0.000619176282051 2.04881567078e+11 +UniRef50_Q5X9H5 DNA mismatch repair protein MutL 0.000555962962344 0.00326716524713 1.09454563256e+12 +UniRef50_UPI00046BF5D1 PREDICTED 4.4607981119e-06 5.98573422312e-06 615635421.17 +UniRef50_A9WVW5 0.00140613824156 0.00194889095648 2.19115931338e+11 +UniRef50_UPI000378BFDC hypothetical protein 0.000575501309685 0.000150161036537 -1.71715087782e+11 +UniRef50_G0FKS6 8.1262235892e-06 2.44768294624e-05 6600940235.51 +UniRef50_M9RJC1 4.7717567677e-05 6.14400162045e-05 5539920863.93 +UniRef50_V5VA04 Hemolysin type calcium binding domain containing protein 2.05789199777e-05 0.00292492781909 1.17252129094e+12 +UniRef50_Q28TQ1 Type II secretion system protein E 0.00963185998795 0.00162684823669 -3.23172147652e+12 +UniRef50_Q08WT9 0.000151744877719 0.000220431791988 27729750173.6 +UniRef50_G0DVY4 Cell division protein FtsW 0.000267305821545 0.0052214869336 2.00006370958e+12 +UniRef50_B3W763 Cellobiose PTS, EIIC 0.000644738947052 0.000907731266315 1.06173226565e+11 +UniRef50_E3D8W4 Anaerobic ribonucleoside triphosphate reductase activating protein 0.00928591065863 0.00464918861517 -1.87190158792e+12 +UniRef50_D9WSF3 Vegetative cell wall protein gp1 (Fragment) 2.47364894345e-06 3.62058689288e-05 13618111149.0 +UniRef50_Q6AA77 Ornithine carbamoyltransferase 8.6561162204e-06 0.00744304135163 3.0013525497e+12 +UniRef50_B2VDR3 High frequency lysogenization protein HflD homolog 0.00617065823227 0.00139169534204 -1.92932596326e+12 +UniRef50_P77293 Bactoprenol glucosyl transferase homolog from prophage CPS 53 0.00353725912068 0.000661891287945 -1.16082127881e+12 +UniRef50_P33073 L serine dehydratase, alpha chain 9.33956236055e-06 1.04518748299e-05 449054193.486 +UniRef50_A1URA3 ATP dependent zinc metalloprotease FtsH 0.0080795771326 0.0100568055855 7.98231389757e+11 +UniRef50_G7MD19 Polysaccharide biosynthesis protein 0.000654647512657 0.000868495252532 86332956794.4 +UniRef50_P42505 Trans acting regulatory protein HvrA 0.00722701121772 0.0167819102434 3.85742998846e+12 +UniRef50_C8WV62 Transcriptional regulator, MarR family 0.000226491593311 0.00342578409497 1.29159364265e+12 +UniRef50_UPI0003C83EE0 PREDICTED 4.90868203282e-06 1.10259584914e-05 2469619573.75 +UniRef50_S6ARI5 8.19516347409e-05 0.000102773856293 8406186357.97 +UniRef50_C7RR12 AzlC family protein 2.72294495041e-05 1.4111148542e-05 -5296019078.06 +UniRef50_U5MRF4 Nitrite and sulphite reductase 4Fe 4S region 0.000161779709512 0.000907432183606 3.01029053977e+11 +UniRef50_UPI00036A7350 hypothetical protein 2.71212034528e-05 2.21854883151e-05 -1992608769.13 +UniRef50_A1RLC1 AzlC family protein 0.000667630234129 0.000276427493162 -1.57933347126e+11 +UniRef50_E8QBY5 Ribosomal RNA small subunit methyltransferase E 0.00682014150316 0.00103295581091 -2.33635788072e+12 +UniRef50_F8H6V7 Cytochrome C oxidase assembly protein 0.00207807943358 0.000538571498834 -6.21518245145e+11 +UniRef50_UPI0003798B2F hypothetical protein 3.92257755468e-07 2.496506516e-06 849511046.662 +UniRef50_B2IQP4 Peptidase, U32 family 0.00549716419596 0.0060388973229 2.18704311159e+11 +UniRef50_UPI00036CA0EA hypothetical protein 3.54707788955e-06 3.89766900173e-05 14303369186.2 +UniRef50_C5N2R4 0.00410907359878 0.000913121177628 -1.29024521116e+12 +UniRef50_F5SR33 1.23829062881e-05 1.94234902796e-05 2842370155.05 +UniRef50_UPI00047D1C2C sugar ABC transporter permease 0.000288766832613 0.000136965985398 -61283864826.6 +UniRef50_Q8CVW1 Outer membrane protein C 0.00213432753308 0.000535036542953 -6.45653398223e+11 +UniRef50_A5UMQ0 Cobalt precorrin 3B C17 methyltransferase, CbiH 0.00369709723668 0.000356493659109 -1.34864265808e+12 +UniRef50_G8VAL6 Methyltransferase 0.00349249961464 0.0112046091711 3.11347326617e+12 +UniRef50_A9G928 0.000625382609059 0.000187502669965 -1.76777504803e+11 +UniRef50_UPI00037376DC hypothetical protein 2.18665915799e-06 3.42526042547e-06 500038531.028 +UniRef50_UPI000375C11B hypothetical protein 0.00010166978036 9.16890832591e-05 -4029329896.56 +UniRef50_Z7FZL7 MFS transporter, ACS family, glucarate transporter 0.0130885473894 0.000603645180008 -5.04030822891e+12 +UniRef50_A8TZF0 Putative translation initiation inhibitor 0.000214037508404 8.28933163977e-05 -52944519633.0 +UniRef50_L7WZD3 Dihydrolipoyl dehydrogenase 0.0180312549162 0.00693378911649 -4.48018312456e+12 +UniRef50_B3E602 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 8.29287035067e-06 2.93748774306e-06 -2162033676.63 +UniRef50_P65591 Transcription termination antitermination protein NusG 0.0289436228778 0.00411556156615 -1.00233930261e+13 +UniRef50_I2BLI3 Malonate utilization transcriptional regulator 0.00169673362846 0.00322848089983 6.18385170105e+11 +UniRef50_P37147 UPF0716 protein FxsA 0.00719653847967 0.00161093745608 -2.25497567626e+12 +UniRef50_Q7MW52 Fructose 1,6 bisphosphatase class 3 0.000357753816084 0.00546183616362 2.06058067784e+12 +UniRef50_R9YQ76 Thioesterase superfamily protein 0.0108543941282 0.00203828817876 -3.55917015757e+12 +UniRef50_D4HEH1 Sugar binding domain protein 0.000349732796402 0.00730122357995 2.8064021337e+12 +UniRef50_I6U0M8 0.00890903694864 0.00218955822568 -2.71273601774e+12 +UniRef50_G7SE40 DegV family protein 0.00915967040298 0.000256054946702 -3.59449881935e+12 +UniRef50_Q5FS85 Guanylate kinase 1.17243272149e-05 3.02704731155e-05 7487306686.88 +UniRef50_Q5L287 ABC transporter 0.000251657325899 0.00157719268409 5.35134890249e+11 +UniRef50_Q1LT82 D alanine D alanine ligase 0.00338508301089 0.000679565132264 -1.09225076804e+12 +UniRef50_G7LZT8 Beta lactamase domain containing protein 0.000940696554154 0.00048237775423 -1.85028923733e+11 +UniRef50_UPI00036D9B8C hypothetical protein, partial 1.69491675945e-06 2.80383614367e-06 447684363.381 +UniRef50_Q3JQ05 4.48006483898e-05 0.000145585310244 40688004757.3 +UniRef50_A6LXY4 Transcriptional regulator, TetR family 0.000231586496233 0.00231655910057 8.41729025863e+11 +UniRef50_N8Z5H6 1.22757174995e-05 3.77264799525e-05 10274785118.3 +UniRef50_B7MIH3 Glyoxylate hydroxypyruvate reductase A 0.00227180375265 0.000868798181929 -5.66410565714e+11 +UniRef50_UPI0003595012 PREDICTED 4.05491718267e-05 2.33543254742e-05 -6941770477.0 +UniRef50_Q8ZLB5 Cellulose biosynthesis protein BcsE 0.00231359707405 0.000864330049016 -5.85086882511e+11 +UniRef50_A9BVK1 Trans aconitate 2 methyltransferase 0.0024532162627 0.000494947080615 -7.90577299475e+11 +UniRef50_U6MWK3 7.95171241676e-06 2.79205033155e-06 -2083018899.97 +UniRef50_C6WDZ3 PE PGRS family protein 4.68292241956e-05 0.000640241431337 2.39567790009e+11 +UniRef50_UPI0003C129CB PREDICTED 2.14510477708e-05 6.66898343518e-06 -5967700768.61 +UniRef50_UPI000471E8AE hypothetical protein, partial 2.909890064e-06 1.55049768261e-05 5084791084.95 +UniRef50_Q1IYH9 Sulfate adenylyltransferase 0.000270032955147 0.0244597251167 9.76567556654e+12 +UniRef50_G7M254 0.000248346045292 0.000749558866192 2.0234576637e+11 +UniRef50_P76403 0.00332722759033 0.0114099229532 3.26308330382e+12 +UniRef50_UPI0001C396B6 Zn ribbon protein, possibly nucleic acid binding 0.00100928886693 0.000481652197517 -2.13013398272e+11 +UniRef50_P94513 Sensor protein LytS 2.61091357223e-05 0.000547138498953 2.10345947686e+11 +UniRef50_Q8TYY5 Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis 0.00224129830003 0.000711591220217 -6.17561519736e+11 +UniRef50_UPI00035F8915 MULTISPECIES 0.000100251488508 3.35670304868e-05 -26921334013.5 +UniRef50_R9ZEN0 Methyl accepting chemotaxis protein 0.000603393784801 0.00068604219268 33366176470.8 +UniRef50_UPI0002000F87 oxidoreductase 6.63808890152e-05 2.61112630334e-05 -16257342172.7 +UniRef50_P54919 Delta aminolevulinic acid dehydratase 5.99475255851e-05 0.000328648900577 1.08478042421e+11 +UniRef50_P49078 Asparagine synthetase [glutamine hydrolyzing] 1 0.00406593625662 0.00566697638354 6.46359546209e+11 +UniRef50_UPI000402C450 hypothetical protein 6.81684696913e-06 2.88410631788e-05 8891446351.38 +UniRef50_R7MP32 0.0052992926421 0.00104955032726 -1.7156731227e+12 +UniRef50_D5APZ2 Transcriptional regulator, LysR family 0.00148882236235 0.000197977679469 -5.21129838924e+11 +UniRef50_I0I0C0 6.83431409367e-05 1.41611087042e-05 -21873951300.6 +UniRef50_UPI0003B76791 chemotaxis protein CheY 0.000235824646383 2.37528640029e-05 -85615980960.2 +UniRef50_K0HKA6 Periplasmic binding protein 4.32473351485e-05 0.00544668381229 2.18143361344e+12 +UniRef50_F4DNZ1 LysR family transcriptional regulator 0.000543157802059 0.00021503643582 -1.32466622053e+11 +UniRef50_A3PRC4 Methyl accepting chemotaxis sensory transducer 0.00198717080356 0.00116256553647 -3.32903265369e+11 +UniRef50_UPI000454B9A5 PREDICTED 6.73327479871e-06 3.20184356833e-05 10207929732.9 +UniRef50_UPI000372C723 hypothetical protein 6.43797675803e-06 5.80139102105e-06 -256997473.804 +UniRef50_Q1CSQ2 Glycine tRNA ligase beta subunit 5.42884931205e-05 0.00423107346824 1.68621934937e+12 +UniRef50_A3DFY9 4.68915684868e-05 4.76521239978e-05 307045592.856 +UniRef50_D7GHW6 Cytochrome d ubiquinol oxidase, subunit II 0.000188115941288 0.00647790909825 2.53926668191e+12 +UniRef50_A5ULR2 UPF0272 protein Msm_0935 0.00198845290565 0.000945948161065 -4.20871958359e+11 +UniRef50_D8JEL1 0.000320809622254 0.00654125490092 2.51127009245e+12 +UniRef50_L9MZ90 1.17399844202e-05 0.00247040549478 9.92593437751e+11 +UniRef50_UPI0003B53446 branched chain amino acid transporter AzlC 4.55751863798e-05 1.68663281458e-05 -11590118366.4 +UniRef50_A5UNA6 Exodeoxyribonuclease, XthA 0.00186722848983 0.000497724784029 -5.52885451732e+11 +UniRef50_Q6GHK8 ATP dependent DNA helicase RecG 0.0177893753039 0.00824845543423 -3.85178643164e+12 +UniRef50_UPI0003B4E531 sodium 1.55081094869e-05 0.00144598549527 5.77501274571e+11 +UniRef50_D7BD64 1.31480332354e-05 0.000196629958119 74073904652.1 +UniRef50_A7HS58 Undecaprenyl diphosphatase 0.000170747660365 1.40348964988e-05 -63266865854.6 +UniRef50_UPI000476E422 hypothetical protein 4.65736009819e-06 5.72379137337e-05 21227414738.6 +UniRef50_UPI0003EC50DD PREDICTED 4.29498285769e-06 6.24797753045e-06 788447915.333 +UniRef50_U3SR69 Pyrroline 5 carboxylate reductase 0.00297683665452 0.000986888791207 -8.03366371825e+11 +UniRef50_Q8Y3Y6 Thymidylate kinase 1.12254992647e-05 0.000296304386488 1.15089845083e+11 +UniRef50_R0VLG7 5.54203369098e-05 0.000650017363458 2.40046116143e+11 +UniRef50_B0TVV8 Adenylosuccinate synthetase 1.70088420707e-05 1.18704482501e-05 -2074432640.56 +UniRef50_UPI0003810A5E hypothetical protein 8.11988226624e-06 5.84673906877e-06 -917695803.422 +UniRef50_F2BFB8 BolA family protein 5.5562245059e-05 0.00039186842261 1.35770930818e+11 +UniRef50_D8ICU4 Pyridine nucleotide disulfide oxidoreductase family protein 0.000158424287166 0.000694371627541 2.16368518123e+11 +UniRef50_Q168U2 Polyhydroxyalkanoate synthesis repressor 0.018682567673 0.000799377569805 -7.21966329608e+12 +UniRef50_UPI00036FDE6E MULTISPECIES 4.56690367049e-06 1.63660701759e-05 4763468310.29 +UniRef50_F8IRK1 Replication initiator A protein 0.000764952767111 1.63200789285e-05 -3.02232202975e+11 +UniRef50_B0UIS6 Glutathione S transferase domain 0.000996193478007 0.00632526309644 2.1514108e+12 +UniRef50_Q1YVL9 0.0001165931718 0.000280583644681 66204966291.5 +UniRef50_P0AG14 Probable protease SohB 0.00443645858254 0.00112096301852 -1.3385062449e+12 +UniRef50_D3E3R8 Carbohydrate kinase PfkB family 0.00104606618296 0.000316976785549 -2.94342336668e+11 +UniRef50_D5HIW6 Phosphate ABC transporter membrane protein 2, PhoT family 0.00022469404098 0.0018553994404 6.58335780751e+11 +UniRef50_UPI00046EB4A8 hypothetical protein 2.46106769669e-05 1.82002129388e-05 -2587982993.38 +UniRef50_A5IU36 0.0095518978364 0.00120674592009 -3.36904023514e+12 +UniRef50_M4XIN2 0.000222856296256 0.000114686099098 -43669635990.3 +UniRef50_E3H779 Transcriptional regulator, XRE family 0.000410310857448 0.00264080366452 9.00477317439e+11 +UniRef50_M1MDC6 Transcription termination factor Rho 0.000430526166203 0.000909743452732 1.93465899229e+11 +UniRef50_F6D6V6 Cobalamin biosynthesis CbiM protein 0.00117110853981 0.000615008310206 -2.24504486808e+11 +UniRef50_P0A1H0 DNA polymerase III subunit epsilon 0.00478076789886 0.000744495895456 -1.6294925384e+12 +UniRef50_UPI0003B2F0C5 ABC transporter ATP binding protein 4.9762028199e-05 1.92760907899e-05 -12307547036.6 +UniRef50_Q6FFD2 Sensor protein 0.000173767186165 0.00885291032232 3.50387658913e+12 +UniRef50_UPI0003684932 amino acid ABC transporter substrate binding protein 7.50796697288e-06 2.31112611087e-05 6299241316.57 +UniRef50_UPI0002F69D2E hypothetical protein 3.566649805e-05 0.000145880220871 44494632377.3 +UniRef50_UPI000350C2AA PREDICTED 2.58873824238e-05 2.24555399791e-05 -1385476908.37 +UniRef50_UPI00036F359E hypothetical protein 4.72610270888e-05 1.1122557761e-05 -14589543536.5 +UniRef50_UPI00021977C8 Appr 1 p processing domain protein 1.44985907041e-05 0.000156184631342 57200393288.8 +UniRef50_P25539 Riboflavin biosynthesis protein RibD 0.00288500159525 0.00733306655177 1.79573840684e+12 +UniRef50_Q492E3 Probable malate 4.4623910839e-06 1.44561288878e-05 4034594588.39 +UniRef50_Q56998 UvrABC system protein B 0.000244790219358 0.00225325914776 8.1084355308e+11 +UniRef50_Q8FSD6 Uroporphyrinogen decarboxylase 1.06648569457e-05 1.16106873041e-05 381843322.33 +UniRef50_W7SQL2 LigA protein 3.23364339073e-05 0.000160498209337 51740481462.9 +UniRef50_Q9K706 Gluconeogenesis factor 0.0243832938128 0.00670065831023 -7.13869694274e+12 +UniRef50_Q6N0X7 Short chain dehydrogenase 0.00413869016037 0.0025417544708 -6.44702534484e+11 +UniRef50_I1B7Q6 0.000173956676891 0.000344727671428 68942346090.3 +UniRef50_UPI00040FD25C 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.65330679976e-05 1.04640673109e-05 -2450130052.23 +UniRef50_Q9RZB7 Glycosyltransferase 0.000433696543761 0.057416123176 2.30045048844e+13 +UniRef50_K2EHC8 3.01868660091e-05 3.63345258958e-05 2481885736.53 +UniRef50_W4LZ78 1.01496688509e-05 2.11114493421e-05 4425405300.47 +UniRef50_D7CU09 ABC transporter related protein 0.00022195756869 0.040165132865 1.6125550025e+13 +UniRef50_K2EHC4 7.69025043084e-06 8.88506035955e-05 32765430522.1 +UniRef50_UPI0003802618 hypothetical protein 2.12301214723e-05 9.08337339669e-06 -4903791255.48 +UniRef50_UPI00031E0792 hypothetical protein 2.48374813677e-05 0.000304509564278 1.12907051833e+11 +UniRef50_UPI000374F92F hypothetical protein 4.58973050115e-06 1.07735213938e-05 2496472267.01 +UniRef50_Q9RY24 Protein GrpE 0.000397353672473 0.0305262098793 1.21633889733e+13 +UniRef50_F9V983 16S rRNA methyltransferase 0.00244039875685 0.00340519355921 3.89499501076e+11 +UniRef50_A9VN98 2 C methyl D erythritol 4 phosphate cytidylyltransferase 6.17239616292e-05 0.000275567687578 86331336323.2 +UniRef50_M1VMH5 0.000489259683473 8.01883374738e-05 -1.6514712225e+11 +UniRef50_B3QSU1 Cytidylate kinase 8.42850121746e-06 2.15139230308e-05 5282745362.21 +UniRef50_UPI00037A45FC MULTISPECIES 9.74593275058e-06 2.04817326203e-05 4334174150.48 +UniRef50_Q9RWU7 Purine pyrimidine phosphoribosyltransferase related protein 0.000211279471374 0.00813180252886 3.19761235406e+12 +UniRef50_Q56114 Aspartate aminotransferase 0.00289341526546 0.00187943622966 -4.09355779674e+11 +UniRef50_UPI000360A2CC MULTISPECIES 0.000101744338675 0.0001272543476 10298703646.0 +UniRef50_UPI0001FFF9AA integral membrane protein 0.000153930089018 1.53618445328e-05 -55941700722.2 +UniRef50_Q8EQK8 Choline ABC transporter ATP binding protein 0.0213341364021 0.00275005555182 -7.50262149158e+12 +UniRef50_Q6LI26 Glutathione peroxidase 0.00141960518512 0.000366095089089 -4.2531495379e+11 +UniRef50_U1S9N3 3.00158589901e-06 1.53125929357e-06 -593588893.553 +UniRef50_U3SQV1 0.00606889404617 0.0031556847819 -1.17609832908e+12 +UniRef50_Q3JFY3 200 kDa antigen p200, putative 1.41553736446e-05 0.00022165109453 83768568780.1 +UniRef50_UPI000471C806 molybdenum cofactor biosynthesis protein MoaE 6.05118962841e-05 4.0901645573e-05 -7916898856.91 +UniRef50_UPI0003680F4C hypothetical protein 9.95381293513e-05 1.56813430219e-05 -33854013679.7 +UniRef50_A6LWT3 0.000318754396167 0.00245837998826 8.63793107685e+11 +UniRef50_UPI0004785ED6 hypothetical protein 6.94512828564e-06 3.7654245073e-05 12397647290.3 +UniRef50_B7UZU0 Na translocating NADH quinone reductase subunit D 0.00148171884257 0.00588590673462 1.77802469748e+12 +UniRef50_X8AWD6 UvrABC system A domain protein 1.27207238108e-05 2.57766253756e-05 5270827675.64 +UniRef50_W0CYP1 Peptide deformylase 2.81145635437e-05 5.29452252023e-05 10024442818.1 +UniRef50_G2KWZ9 ATP dependent RNA helicase RhlB 0.000713702114467 0.000552514329134 -65073486935.5 +UniRef50_UPI00037A3CF4 hypothetical protein 2.03365995551e-05 3.67876132059e-05 6641476087.47 +UniRef50_UPI000255CC88 transcriptional regulator 7.24530425311e-06 3.69707503287e-05 12000527353.0 +UniRef50_A1VM60 NADH quinone oxidoreductase subunit A 1.59831267382e-05 0.000311244648788 1.19200699718e+11 +UniRef50_K0VGX6 Phenol hydroxylase 3.83414225869e-06 5.28105382462e-06 584135954.768 +UniRef50_Q46WJ3 Shikimate kinase 1.76304802857e-05 1.83659885933e-05 296933729.48 +UniRef50_B7H076 Glycosyl transferases group 1 family protein 0.000562083580112 0.00724390770007 2.69753439243e+12 +UniRef50_G0LRQ0 Serine aspartate repeat containing protein D 3.52680774356e-05 5.45200071144e-05 7772240259.08 +UniRef50_UPI0004774AD6 adenosylcobinamide kinase 0.00010407317639 1.74729834443e-05 -34961560596.1 +UniRef50_B6TG94 Seed specific protein Bn15D17A 0.000158848859395 4.88952867194e-05 -44389606571.4 +UniRef50_G8WCZ8 Crispr associated helicase Cas3 7.92589212031e-05 9.95889215841e-06 -27977272132.3 +UniRef50_UPI00037A187F DNA invertase 0.000320980636282 7.14589750543e-05 -1.00734956613e+11 +UniRef50_B1K1J6 Inner membrane translocator 0.00992116305348 0.0027564065215 -2.89250013341e+12 +UniRef50_D2ZUL4 0.00130167582364 3.91747097732e-05 -5.096871923e+11 +UniRef50_P69435 Poly beta 1,6 N acetyl D glucosamine export protein 0.00263291918326 0.000800734767099 -7.39675332235e+11 +UniRef50_UPI000395E0BE TetR family transcriptional regulator 9.88500515826e-05 1.98643625526e-05 -31887491924.8 +UniRef50_B1TBD8 0.000174503795997 0.000306124625344 53136943976.6 +UniRef50_T0PPT5 3.51810903721e-05 2.81447424638e-05 -2840659996.28 +UniRef50_B9NWB2 Proline dehydrogenase transcriptional activator 9.03066076255e-05 0.000183235899391 37516695456.4 +UniRef50_UPI0002D562AA peptidase 3.72898109644e-05 3.67795944005e-05 -205980687.908 +UniRef50_Q9I7C4 DNA polymerase III subunit beta 0.00427236383984 0.0023846751409 -7.62083092307e+11 +UniRef50_A9I3J3 TonB dependent outer membrane receptor 0.000457003959482 0.000371786323606 -34403405341.1 +UniRef50_UPI00046FA567 phytoene dehydrogenase 1.60859005829e-05 5.18358239027e-06 -4401399640.84 +UniRef50_Q65I56 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.79656887758e-05 2.09742172815e-05 -10896788264.9 +UniRef50_A6LQ20 Efflux transporter, RND family, MFP subunit 0.000431193963246 0.000629086901818 79891807721.0 +UniRef50_L7VT83 Chemotaxis protein 0.00024209135047 0.00159479453032 5.4610287324e+11 +UniRef50_P20582 PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III 0.000852857991627 0.000186515813799 -2.69010514127e+11 +UniRef50_A6KZR2 Phosphopantetheine adenylyltransferase 1.22817373064e-05 0.00617215247028 2.48681540501e+12 +UniRef50_UPI00047AB6F5 imidazoleglycerol phosphate dehydratase 8.12856384076e-05 1.45222711593e-05 -26953190636.8 +UniRef50_B0CC69 Biotin synthase 6.98703207287e-06 4.12834686329e-05 13845892303.9 +UniRef50_A0A011QDW9 Hemolysin, chromosomal 6.41481851694e-05 4.40572578669e-05 -8110953895.42 +UniRef50_Q4JV87 LexA repressor 1.0659224213e-05 1.41994007971e-05 1429212729.85 +UniRef50_B0VLK5 Lipoprotein 0.000443669852339 0.0155852694677 6.11284957306e+12 +UniRef50_P77360 0.00177059313482 0.00021271311299 -6.2893528215e+11 +UniRef50_P40876 0.000947127930449 0.00136184168126 1.67425030312e+11 +UniRef50_Q73NX5 Ribonuclease 3 1.14558512826e-05 1.71662051965e-05 2305339948.96 +UniRef50_X3WN19 5.45928050509e-05 0.000107697579787 21439049229.8 +UniRef50_D4HD90 0.000340488450495 0.00693359654316 2.66171864355e+12 +UniRef50_F4H6S8 Binding protein dependent transport systems inner membrane component 0.000194580406623 0.00138110232183 4.79013457432e+11 +UniRef50_H4FT59 Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein 0.00767552210164 0.00273920237106 -1.99285285069e+12 +UniRef50_H8H0A6 0.000676631962682 0.0196893642939 7.67567335457e+12 +UniRef50_Q5XDJ2 Bifunctional protein GlmU 3.7234297705e-06 0.002500673955 1.00804956806e+12 +UniRef50_P75990 Blue light and temperature regulated antirepressor YcgF 0.0037424596613 0.00308930663933 -2.63685890058e+11 +UniRef50_B9DX64 ATP synthase subunit delta 0.000289631193489 0.000512109893401 89817381275.1 +UniRef50_UPI000365E273 hypothetical protein 7.79160947531e-05 0.000331486338912 1.02369419224e+11 +UniRef50_Q97S57 Translation initiation factor IF 2 0.00571825699288 0.00605391914705 1.35510930676e+11 +UniRef50_UPI00016ABA18 sugar ABC transporter ATP binding protein 6.49995302299e-06 6.77401712709e-06 110643041.97 +UniRef50_A8IC84 Lipoprotein 1.48673673513e-05 9.21639581202e-06 -2281366555.63 +UniRef50_B7I2S0 Exodeoxyribonuclease X, putative 0.000821111998078 0.0101340932737 3.7597648241e+12 +UniRef50_Q49WD6 NAD kinase 0.0173415412865 0.00223478124547 -6.09878440934e+12 +UniRef50_UPI00034A3652 hypothetical protein 2.58892129062e-05 8.72288904784e-06 -6930255596.12 +UniRef50_Q58036 0.00377181672284 0.000885256171839 -1.16533991652e+12 +UniRef50_UPI0003B7A911 ABC transporter permease 2.72551153843e-05 4.45676821321e-05 6989295645.17 +UniRef50_A6M1F1 Single stranded DNA specific exonuclease RecJ 0.000161989611535 0.000553490513765 1.58053718487e+11 +UniRef50_Q5WY31 NAD transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II) 3.58941938425e-05 1.81115347188e-05 -7179077706.0 +UniRef50_U6HSW1 Glutamate synthase 9.31146375686e-06 1.89906645069e-05 3907612119.94 +UniRef50_Q8F498 Biotin synthase 4.61994385683e-06 1.6807784633e-05 4920380882.98 +UniRef50_Q8DRX4 0.00628163897327 0.000697598516207 -2.2543456564e+12 +UniRef50_P0AEB1 Sulfate transport system permease protein CysW 0.0077116730414 0.00234861917266 -2.16513065888e+12 +UniRef50_R9SLZ9 Energy converting hydrogenase B subunit O EhbO 0.00287185229938 0.000177545113341 -1.08772487387e+12 +UniRef50_Q0AYL3 Chemotaxis response regulator protein glutamate methylesterase 1 1.99182136841e-05 5.84780725883e-06 -5680395737.2 +UniRef50_A4VU31 Predicted membrane metal binding protein 0.00568038595817 0.00263890597453 -1.22788279255e+12 +UniRef50_M1MHF4 YibE F family protein 0.000520071649111 0.0011408993239 2.50635750725e+11 +UniRef50_P29976 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 0.000818827605803 0.00318891603242 9.56833782082e+11 +UniRef50_A4WT17 0.00371316568208 0.000582861918147 -1.26374204265e+12 +UniRef50_Q3IYW4 0.0220436616711 0.000455501344774 -8.71540524024e+12 +UniRef50_UPI00016C4263 multi sensor signal transduction histidine kinase 2.67368124978e-05 6.47279029593e-06 -8180834430.42 +UniRef50_UPI0004669627 hypothetical protein 7.55489930495e-05 6.27031292647e-05 -5186032846.4 +UniRef50_UPI000376E080 hypothetical protein, partial 0.000258621246147 5.43635423171e-05 -82461341560.1 +UniRef50_UPI0003B639BB hypothetical protein 2.42900982856e-06 7.11194051172e-05 27731155503.9 +UniRef50_Q5LUP8 Endoribonuclease L PSP family protein 0.000155557431819 4.87968574133e-05 -43100553987.3 +UniRef50_N2DBA0 2,3 cyclic nucleotide 2 phosphodiesterase 0.000827670381379 0.000365152031161 -1.86724333721e+11 +UniRef50_S5KKJ7 Cell wall surface anchor protein 1.45876429746e-05 0.00194959914292 7.81187887791e+11 +UniRef50_T0M6P4 Blastn match against entry EMBL 0.000621242815114 7.65292751672e-05 -2.19907540463e+11 +UniRef50_B2TQI3 Undecaprenyl phosphate glucose phosphotransferase 0.000443789338149 0.00105239442004 2.45701339984e+11 +UniRef50_D3E1Y0 Fumarate hydratase FumA2 0.00451951073802 0.000203666693245 -1.74235920224e+12 +UniRef50_A4VRL6 Predicted Zn dependent peptidase 0.000579718390169 0.000320158786789 -1.04787397039e+11 +UniRef50_D5VDZ2 0.000185435434152 4.0239806887e-05 -58617256477.6 +UniRef50_UPI000328A627 PREDICTED 1.96456828615e-05 5.69158103916e-05 15046407839.8 +UniRef50_F3U2B2 Transcriptional regulator, LysR family protein 0.0014572115411 0.000646248318541 -3.27395804585e+11 +UniRef50_D3QEV8 ABC transporter, ATP binding protein 0.00963458880402 0.00164208908989 -3.22667021359e+12 +UniRef50_UPI00035ED201 hypothetical protein 1.25042849789e-05 7.11893739312e-05 23691890557.1 +UniRef50_G8B0Y4 5.05571370728e-05 6.91814235256e-05 7518852986.69 +UniRef50_A5UK70 Fumarate reductase, iron sulfur protein 0.00444421792101 0.000270624926699 -1.68493070755e+12 +UniRef50_M1MGY4 Drug resistance transporter, EmrB QacA subfamily 0.000413014083503 0.00124370545861 3.3536030186e+11 +UniRef50_Q58691 0.0031943546441 0.000940443079037 -9.0993175742e+11 +UniRef50_K7RP68 Molybdopterin biosynthesis protein 1.00508630937e-05 4.50518907081e-05 14130344358.8 +UniRef50_X1ABV5 Marine sediment metagenome DNA, contig 4.42704831194e-05 6.08497253615e-05 6693243543.32 +UniRef50_UPI0004408C74 beta subunit of citrate lyase 7.85031511446e-05 3.4396727377e-05 -17806304521.7 +UniRef50_P37369 Superoxide dismutase [Fe] 1.33445575788e-05 1.16760229357e-05 -673607910.642 +UniRef50_A6LQR1 S layer domain protein domain 0.000303884949952 0.00154676403163 5.01765537116e+11 +UniRef50_UPI00037FF171 hypothetical protein 2.87975798482e-06 5.73946785666e-06 1154499967.85 +UniRef50_Q03CA4 Ribose import ATP binding protein RbsA 0.000176052902248 0.000128975996315 -19005524623.8 +UniRef50_A0A035W1W9 Replication initiation protein 0.000113691607499 5.27716672912e-05 -24594127433.6 +UniRef50_A4WXQ6 0.00181922005014 0.00129824186002 -2.10325288473e+11 +UniRef50_D9X0C7 Phosphatase 3.81470391213e-06 4.09788202091e-05 15003609804.1 +UniRef50_F8KS43 GTP pyrophosphokinase 9.90568220772e-05 0.00392702091567 1.54539607898e+12 +UniRef50_B9KQA0 0.000918516658134 0.0010620906196 57962570094.5 +UniRef50_UPI0003823562 hypothetical protein 2.57000819506e-06 4.52571513517e-06 789542890.945 +UniRef50_UPI000455DD45 ribosomal protein L17 3.29565939363e-05 4.70889100584e-05 5705389441.51 +UniRef50_A5UJI1 Homoserine dehydrogenase, ThrA 0.00293036914689 0.000485116526038 -9.87178489661e+11 +UniRef50_R4Q226 APC family amino acid polyamine organocation transporter 0.020368330451 0.0089781248391 -4.59836577906e+12 +UniRef50_Q1WVB2 Aspartate carbamoyltransferase 0.000535523054843 0.000341406595601 -78367196672.8 +UniRef50_C0DVB0 4.65965291675e-05 7.10555888546e-05 9874422542.1 +UniRef50_O87388 Sarcosine oxidase subunit beta 0.00050210180816 0.000346892517522 -62659895262.7 +UniRef50_UPI000470EA5E 2 oxoglutarate dehydrogenase, partial 2.99496806379e-06 5.60109423176e-06 1052125114.77 +UniRef50_H0YYM6 1.46873196033e-05 6.69845746637e-05 21113043627.4 +UniRef50_UPI0003613AC8 MFS transporter 9.31354014233e-05 2.87164772411e-05 -26006710201.4 +UniRef50_D8JND0 Universal stress family protein 0.000154075913818 0.00494791442327 1.93533143328e+12 +UniRef50_U1MD60 Nucleotide binding protein 1.6126604712e-05 6.10085428524e-05 18119389190.6 +UniRef50_Q2NGD5 Polyphosphate kinase 0.0031843625763 0.00054412936095 -1.06589454834e+12 +UniRef50_A4CBI0 1.956776468e-05 0.000868374286781 3.42673609e+11 +UniRef50_T8XWN9 0.000184246632608 5.74295629588e-05 -51197607237.7 +UniRef50_D8HJF1 1.08076739377e-05 2.00993222465e-05 3751152443.61 +UniRef50_M9VHP6 Membrane associated protein 0.000229242503354 0.00502977134367 1.93803240195e+12 +UniRef50_UPI00035D007C hypothetical protein 2.37289501883e-06 2.44924446344e-05 8929933617.22 +UniRef50_A4WWG0 FAD dependent oxidoreductase 0.0054385377167 0.00151227158009 -1.58508182005e+12 +UniRef50_P0AFR9 Inner membrane ABC transporter permease protein YdcV 0.00289922850061 0.00117154720605 -6.97486139647e+11 +UniRef50_F2V5D2 PE PGRS family protein 0.000107815504132 0.000325484974845 87875836431.6 +UniRef50_A0QWW2 Glyceraldehyde 3 phosphate dehydrogenase 0.000101269785731 0.0383281786669 1.54326722123e+13 +UniRef50_Q6A7C7 Conserved phage related protein 0.000270922958506 0.00415755844177 1.56908243897e+12 +UniRef50_D8JF19 Subtilisin like serine protease 5.34430375889e-05 0.0069512553291 2.78473146776e+12 +UniRef50_UPI000363C5FE hypothetical protein 1.8407117615e-05 1.56163566141e-05 -1126664462.55 +UniRef50_X5Q8M2 0.000318240365921 0.000255228738558 -25438567206.1 +UniRef50_C6S6G3 Putative phage associated protein 4.49224047893e-06 0.000132897681949 51838852433.4 +UniRef50_B7LF20 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.00198119180787 0.000222390824303 -7.10049539982e+11 +UniRef50_O52177 GTP pyrophosphokinase 4.65401729743e-06 2.41453589521e-06 -904106123.603 +UniRef50_UPI0002B4176A 6.8035608024e-06 7.35344421944e-06 221994683.287 +UniRef50_A8FCN2 N acetyldiaminopimelate deacetylase 2.98377990454e-05 0.0014477365658 5.72423131711e+11 +UniRef50_E6MVH5 Periplasmic binding family protein 7.15280731734e-06 0.0026424037078 1.06388312669e+12 +UniRef50_UPI000287C383 tRNA 2 selenouridine synthase 4.08570103445e-05 2.1126082775e-05 -7965617585.52 +UniRef50_A5IVH0 Zn dependent protease like protein 0.0084437073772 0.00260816981716 -2.35587812309e+12 +UniRef50_B1B3N7 Truncated replication protein RepA 6.86598711068e-05 9.10568255969e-06 -24042756728.5 +UniRef50_UPI000287D657 exodeoxyribonuclease III 3.74884915643e-05 5.12804488676e-05 5567982409.69 +UniRef50_D0IXB3 Pirin like protein 5.65915572138e-06 1.04493625766e-05 1933865289.9 +UniRef50_UPI0003055179 hypothetical protein 8.9102924825e-05 2.51725755501e-05 -25809466515.9 +UniRef50_R9DJ31 0.00854387606928 0.00268469731995 -2.36542236131e+12 +UniRef50_M1MFG9 Spermidine putrescine transport system permease protein PotC 0.000288580987542 0.00171190246186 5.74612345302e+11 +UniRef50_A4WWW0 0.00200550013867 0.00074138084986 -5.10340469381e+11 +UniRef50_F0SXK4 Cyclopropane fatty acyl phospholipid synthase 0.000587468382401 0.000761654774908 70321184162.5 +UniRef50_UPI0002B483E1 PREDICTED 8.89997418119e-05 2.05555491511e-05 -27631760481.9 +UniRef50_Q3HKK2 Mandelate racemase muconate lactonizing enzyme 0.00571999984406 0.000751526710911 -2.00583357387e+12 +UniRef50_Q2FWE1 Release factor glutamine methyltransferase 0.0199268340236 0.00655541115868 -5.39820749637e+12 +UniRef50_Q7WCS7 Integral membrane component of multidrug efflux system 0.000236018661833 0.000128868005765 -43258034741.1 +UniRef50_F0VCY6 1.89798803485e-06 5.23998013185e-07 -554696632.502 +UniRef50_B1I3R5 Adenylate kinase 9.34499473876e-06 2.53027713417e-05 6442350238.53 +UniRef50_G0LRB5 Exotoxin 0.00811678016393 0.00167374041006 -2.60113421363e+12 +UniRef50_P64613 Cell division protein ZapE 0.00236308489721 0.000601100459804 -7.11334739363e+11 +UniRef50_UPI0003457696 UDP pyrophosphate phosphatase 0.000147573942925 1.19351425601e-05 -54759048182.6 +UniRef50_A0LNI2 tRNA N6 adenosine threonylcarbamoyltransferase 1.23578854448e-05 9.26006615371e-06 -1250627662.33 +UniRef50_UPI00037A37E6 hypothetical protein 9.35765046615e-06 1.68825044609e-05 3037875898.02 +UniRef50_A8AQN0 0.0105958135006 9.93207149997e-05 -4.237562944e+12 +UniRef50_UPI00036DA784 hypothetical protein 2.02300200628e-06 3.31397476964e-05 12562212080.5 +UniRef50_A1RBI9 Oxidoreductase, short chain dehydrogenase reductase family 0.0067476328262 0.00104039147066 -2.30408337096e+12 +UniRef50_UPI0003B44831 signal peptidase 0.000186874251907 5.10504489882e-05 -54833735983.9 +UniRef50_P63388 Probable phospholipid import ATP binding protein MlaF 0.00173325454046 0.0106321929777 3.59261064937e+12 +UniRef50_S7NJS1 0.00157861355759 0.000160499569961 -5.72510019022e+11 +UniRef50_F8IS38 Xaa His dipeptidase 0.000205678140304 0.000153810783964 -20939488238.5 +UniRef50_F3NI62 0.000258409482373 0.00026586885112 3011438699.91 +UniRef50_Q3J2S3 0.00293512741231 0.000821039200228 -8.53483353996e+11 +UniRef50_UPI00047E9C04 hypothetical protein 0.000139329352406 0.00011263096912 -10778464958.6 +UniRef50_P78016 DNA topoisomerase 4 subunit B 2.5640192364e-06 9.69480056424e-06 2878783926.58 +UniRef50_Q82IE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.3545585259e-05 6.36038617945e-05 4060649666.31 +UniRef50_E4U760 Carbohydrate ABC transporter membrane protein 2, CUT1 family 8.27215461305e-05 0.0377707885084 1.52151351173e+13 +UniRef50_Q15TJ8 PKHD type hydroxylase Patl_2273 2.03677049479e-05 2.78529658499e-05 3021891680.62 +UniRef50_A0A013SUS4 NMT1 like family protein 1.81462814707e-05 2.41427839912e-05 2420861652.89 +UniRef50_R7FRD0 0.000188471294548 2.3963247919e-05 -66413917164.9 +UniRef50_L0EBI3 Transcriptional accessory protein 0.00316277061713 0.00047146388675 -1.0865135531e+12 +UniRef50_E6Q8B0 0.00055587413815 0.000381612029945 -70351751518.9 +UniRef50_UPI00036A5069 hypothetical protein 8.10755840567e-06 2.85293459895e-05 8244526251.09 +UniRef50_P0A0Y5 Phosphoheptose isomerase 0.00128138399555 0.00943826696134 3.2930337495e+12 +UniRef50_UPI0003673DF5 hypothetical protein 7.43855509084e-06 2.88043994445e-05 8625653553.98 +UniRef50_Q99ZE5 Stress response regulator gls24 homolog 0.000452866143683 0.00262263027854 8.75960407243e+11 +UniRef50_UPI0003B50954 aspartyl glutamyl tRNA amidotransferase subunit B 3.5840060619e-05 3.65763753756e-05 297259302.838 +UniRef50_Q881Q1 Macrolide export ATP binding permease protein MacB 2 2.23773806305e-06 0.00387805896652 1.5647165916e+12 +UniRef50_A9W856 Integrase, catalytic region 0.000443187411452 1.82058133662e-05 -1.71570286258e+11 +UniRef50_Q5F5Y6 Lipid A disaccharide synthase 0.000172368031437 0.00148096691416 5.28297427268e+11 +UniRef50_UPI00035E69D2 hypothetical protein 2.25877661461e-05 4.96295620688e-05 10917104854.1 +UniRef50_W5BGQ3 2.3608436718e-05 3.47127582927e-05 4482950885.06 +UniRef50_UPI000373B42C hypothetical protein 9.92699529428e-06 1.97222787812e-05 3954476145.31 +UniRef50_K2FSL8 0.000101529305495 0.000314728377367 86071081561.5 +UniRef50_UPI000477E8B8 hypothetical protein 3.72390132826e-05 4.86868472866e-05 4621631068.14 +UniRef50_Q9AGS1 Xanthine phosphoribosyltransferase 4.10169945387e-05 9.0243148315e-05 19873202352.3 +UniRef50_F9FGU0 1.9933277572e-06 0.000291892474162 1.17035842866e+11 +UniRef50_F8IRL8 Phosphate starvation inducible protein PhoH 0.0107746323808 0.0015781052303 -3.71275086474e+12 +UniRef50_P37169 Protein MurJ homolog 0.00235462686186 0.00494146045148 1.04433646415e+12 +UniRef50_J3P2Z6 0.000132142119782 8.02509909447e-05 -20949085487.4 +UniRef50_B7NMR0 Endonuclease 8 0.0041643522863 0.00200772766633 -8.70655823842e+11 +UniRef50_M3AAL9 Secretory lipase 1.61012105199e-05 0.000288100780162 1.09809564075e+11 +UniRef50_R7FPS5 DEAD DEAH box helicase 0.000236750500858 0.00111245969258 3.53534546858e+11 +UniRef50_Q8R9G3 Phospho N acetylmuramoyl pentapeptide transferase 6.08573365739e-06 2.2089740975e-05 6461014145.37 +UniRef50_O86489 Serine aspartate repeat containing protein E 0.0163301316185 0.00228892132239 -5.66860890156e+12 +UniRef50_UPI00047946DB hypothetical protein 0.00015691474296 7.98009612077e-06 -60126744562.5 +UniRef50_I7EZZ6 0.00140713945468 0.000167966529658 -5.00269316192e+11 +UniRef50_Q2G5Y5 NADH quinone oxidoreductase subunit C 1.37856831377e-05 1.16466096931e-05 -863570198.968 +UniRef50_A3PRZ2 Transcriptional regulator, LysR family 0.00855940720262 0.000771081712194 -3.14424257399e+12 +UniRef50_O94524 Glutathione S transferase omega like 2 0.000345131676658 2.05756329669e-05 -1.31027257589e+11 +UniRef50_P21399 Cytoplasmic aconitate hydratase 1.11568490399e-05 0.000102376443204 36826469554.3 +UniRef50_P15493 Lipase 0.000176395321898 0.000895250808683 2.90210781364e+11 +UniRef50_S0F090 Acetolactate synthase, small subunit 0.00311606650786 0.00149345449214 -6.55068382435e+11 +UniRef50_A6LRW0 Phage Terminase 0.000584111960843 0.00286120442282 9.19290169968e+11 +UniRef50_UPI00026CC897 NADPH 9.82086139028e-06 8.24440330384e-05 29318865580.9 +UniRef50_D3QFY8 0.0100786007853 0.000499126825692 -3.86735119086e+12 +UniRef50_R9SLI7 DEAD DEAH box helicase domain containing protein 0.00306234382992 0.000284283218367 -1.12153715952e+12 +UniRef50_UPI00016AB4FD type III secretion inner membrane protein SctV, partial 7.37494727105e-06 1.46959988716e-05 2955598370.55 +UniRef50_UPI0003806CCD hypothetical protein 3.57136003062e-06 1.23789294672e-05 3555723862.58 +UniRef50_F2AE31 0.00040070120529 9.96651490864e-06 -1.57744389361e+11 +UniRef50_T0UHV5 Transcriptional regulator, AraC family 0.00396242382186 0.00200687394925 -7.89479480868e+11 +UniRef50_P75809 Flavin mononucleotide phosphatase YbjI 0.00128388286163 0.000431119277652 -3.44271123438e+11 +UniRef50_B2IMU5 HIT family protein 0.00371832888944 0.00436660278698 2.61716127652e+11 +UniRef50_G6Y3Q8 Transposase IS66 0.000163773566194 6.26007188886e-05 -40844719987.5 +UniRef50_A4AR30 Dihydrolipoyl dehydrogenase 0.00961007068128 0.00286033685317 -2.72495037496e+12 +UniRef50_UPI000467AD6A hypothetical protein, partial 4.32144918176e-06 7.12264422081e-06 1130876811.79 +UniRef50_B4SJH6 NADH quinone oxidoreductase subunit D 1 0.000243878560175 0.00322026065615 1.20160197646e+12 +UniRef50_I1Y681 Type F conjugative transfer system protein TraW 2.7994327254e-05 2.7660501781e-05 -134769439.949 +UniRef50_UPI0003B68FBD pseudouridine synthase 1.64488243362e-05 6.56537153548e-05 19864618316.1 +UniRef50_P26408 Hydrogenase transcriptional regulatory protein hupR1 0.00201759858255 0.000513504491966 -6.07221241677e+11 +UniRef50_F5X1L0 PTS system, fructose specific IIABC component 0.00477827631999 0.00347690520491 -5.25379488777e+11 +UniRef50_P06136 Cell division protein FtsQ 0.00228586479949 0.00131588582471 -3.91592415099e+11 +UniRef50_E8QRB2 Outer membrane protein HopZ 0.000199826061273 0.00378916387798 1.44905972273e+12 +UniRef50_Q5HQR1 Toprim domain protein 0.0190646700317 0.00204192349508 -6.87229166942e+12 +UniRef50_Q5P409 Peptide chain release factor 3 0.00511472723211 0.00838669308537 1.3209327665e+12 +UniRef50_B0JJ94 Potassium transporting ATPase A chain 2.62195208282e-06 0.00119321641215 4.80657593767e+11 +UniRef50_W8EUK6 Iron ABC transporter 0.00017584751034 0.00966314847053 3.8301398199e+12 +UniRef50_UPI000288243F phospho 2 dehydro 3 deoxyheptonate aldolase, partial 8.37330316189e-05 8.63655411629e-05 1062776407.44 +UniRef50_UPI00041C714B mechanosensitive ion channel protein MscL 2.48146638006e-05 2.04123022336e-05 -1777287387.65 +UniRef50_D1DHF6 Oxidoreductase 0.000199055565955 0.00275370961895 1.03134519033e+12 +UniRef50_UPI00038110F4 hypothetical protein 4.99321832134e-06 4.97846218907e-05 18082839273.3 +UniRef50_A6M363 Amidohydrolase 3 0.000659457594916 0.000775379174986 46798964392.0 +UniRef50_A5UJ78 Adhesin like protein 0.00291363873103 0.000686348845086 -8.99184258874e+11 +UniRef50_UPI00047DA4D0 iron transporter FeoB 1.61605448737e-05 1.3106663404e-05 -1232889424.66 +UniRef50_K5W0W9 0.000113388359286 2.21810139657e-05 -36821524545.8 +UniRef50_F0K6G2 Integral membrane protein 0.000209218669562 0.00166674430571 5.88420985165e+11 +UniRef50_UPI00046C4A93 hypothetical protein 4.14199883807e-05 0.000234906620536 78112927749.0 +UniRef50_Q3BJT1 Nitrite oxidoreductase beta subunit 4.15461609812e-05 2.33813759765e-05 -7333346613.38 +UniRef50_I7CFF2 Methionine aminopeptidase 0.00105608567524 0.0022252582284 4.72009307071e+11 +UniRef50_M1Q6R0 9.18337801584e-06 2.38826384188e-06 -2743270977.46 +UniRef50_J3JP50 0.00103855666506 0.000697401347832 -1.37728588011e+11 +UniRef50_D2PTZ5 1.97904602289e-05 9.34335712368e-06 -4217623723.94 +UniRef50_A6M151 Putative cell wall binding repeat containing protein 0.00157285828688 0.000787511213846 -3.17054250676e+11 +UniRef50_UPI0003606801 hypothetical protein 1.11114806108e-05 8.36998747515e-06 -1106774420.77 +UniRef50_Q4RIY1 Chromosome undetermined SCAF15041, whole genome shotgun sequence. 9.87930173869e-05 3.3401251448e-05 -26399458356.7 +UniRef50_A4WSI1 Mammalian cell entry related domain protein 0.0123802568087 0.00333679510214 -3.65095646669e+12 +UniRef50_UPI00038114B4 hypothetical protein 1.47129989823e-05 4.10526056076e-05 10633622418.0 +UniRef50_L1G4X2 Permease family protein 0.00242569727243 0.000621986729279 -7.28180080287e+11 +UniRef50_R9SJI3 CCA adding enzyme 0.00294314804048 0.000138106019575 -1.13242988558e+12 +UniRef50_Q31DZ2 Hydrogenase expression formation protein hypD 0.000119457591412 0.00321045415015 1.24787324156e+12 +UniRef50_J9YR02 BioY family protein 0.0159961464001 0.0054973650689 -4.23848685794e+12 +UniRef50_A4IJA6 Thymidylate kinase 1.25615031425e-05 0.00376235354431 1.51383706214e+12 +UniRef50_Q5LPC1 Adenosine deaminase 0.00329656744838 0.000994349652413 -9.29433575622e+11 +UniRef50_P60070 Anti sigma B factor antagonist 0.00326174586468 0.00474568967811 5.9908632752e+11 +UniRef50_Q87J85 Tyrosine tRNA ligase 1 0.000105805441149 2.53322420646e-05 -32488017987.6 +UniRef50_B3QV79 Serine tRNA ligase 3.5713814454e-06 6.21207647515e-06 1066080988.48 +UniRef50_Q3JCN0 1,4 alpha glucan branching enzyme GlgB 0.00878594112446 0.00171266175316 -2.85556968109e+12 +UniRef50_Q7NFY1 Chorismate synthase 1.6068196992e-05 0.000200068193126 74283056373.2 +UniRef50_F5M2D5 Choline ethanolamine kinase 0.00436158911311 0.000448581620499 -1.57972914277e+12 +UniRef50_X5ZST2 4.4175057183e-05 0.000339784599388 1.19341199725e+11 +UniRef50_B8DDV4 Peptidoglycan bound protein 1.27508975305e-05 0.000211431843286 80209935890.7 +UniRef50_UPI00047EA9AC hypothetical protein 4.09229034531e-05 2.4523937893e-05 -6620463634.55 +UniRef50_Q8TX14 0.00668251729082 0.000340342830921 -2.56041365669e+12 +UniRef50_A3CL70 Cobalt transport protein CbiM 0.00591999053386 0.000421192976745 -2.21993205164e+12 +UniRef50_Q5HRI1 GTP cyclohydrolase FolE2 0.00801347349531 0.00312648749146 -1.97293621982e+12 +UniRef50_A1SSZ0 2.25195836605e-05 4.15900731281e-05 7698990619.29 +UniRef50_UPI0002658599 PREDICTED 2.31251119588e-05 0.000924594603085 3.63934295842e+11 +UniRef50_A6LYD5 Transposase, IS111A IS1328 IS1533 0.000363450351672 0.00141562051353 4.24774005923e+11 +UniRef50_B6AM37 1.23516923153e-06 1.80822624131e-06 231350147.048 +UniRef50_A6LQ17 Malonyl CoA acyl carrier protein transacylase 0.000129128616484 0.00107259462602 3.8088880568e+11 +UniRef50_B9AH82 0.00161897137691 0.000838646786657 -3.15026612745e+11 +UniRef50_B9AH81 0.000860587187197 8.75462581866e-06 -3.43895258189e+11 +UniRef50_UPI0004656F44 FAD binding molybdopterin dehydrogenase 0.000225566598847 0.000397910340246 69577283298.3 +UniRef50_UPI00036CFDE4 hypothetical protein 4.11188340714e-06 2.79268293538e-06 -532577418.86 +UniRef50_UPI0002624A61 succinylarginine dihydrolase 1.22562388261e-05 4.4916233353e-05 13185240573.7 +UniRef50_C4RAQ9 8.07906485273e-05 0.0014890537728 5.685331046e+11 +UniRef50_Q47QV2 0.000201444574503 0.000790033647941 2.37620631747e+11 +UniRef50_E1ZQF3 8.09761181218e-06 1.8448565895e-05 4178807183.72 +UniRef50_H6RSF4 8.60077953952e-05 2.31136025685e-05 -25391157442.7 +UniRef50_Q1Q8I7 Arginine tRNA ligase 8.95929081425e-05 0.00695042086118 2.76980043647e+12 +UniRef50_Q81FQ4 Nucleoside diphosphate kinase 0.0149732698738 0.00146824940952 -5.45214248668e+12 +UniRef50_UPI00037813C2 hypothetical protein 1.95682366092e-05 7.32628651722e-06 -4942225477.76 +UniRef50_J9P031 0.000193942195576 7.91059043362e-05 -46360819973.3 +UniRef50_P76241 0.00232168573377 0.000686483173392 -6.60151339817e+11 +UniRef50_UPI0003728B23 hypothetical protein 0.00218136180688 0.000143130836355 -8.2285885471e+11 +UniRef50_P00905 Bifunctional protein TrpGD 0.000669114355967 0.000123172955868 -2.20403242674e+11 +UniRef50_K1ST89 Heat shock protein 70 0.000224484549948 4.38393863434e-05 -72928669312.8 +UniRef50_Q92M91 Holliday junction ATP dependent DNA helicase RuvA 2.6716072051e-05 1.10569430906e-05 -6321782520.43 +UniRef50_D3P3A5 Transposase 0.00132961906049 9.78697682891e-05 -4.97272304525e+11 +UniRef50_A7H8W4 Phosphopentomutase 1.02725229985e-05 2.03785262537e-05 4079917528.73 +UniRef50_B3PJZ1 0.000509049186673 0.000853016030968 1.3886363599e+11 +UniRef50_G1ZE91 Outer membrane protein assembly complex, YaeT protein 0.00124593678802 0.000300341454349 -3.81748439963e+11 +UniRef50_A6M2H1 0.000534436541738 0.00301417088865 1.00109918561e+12 +UniRef50_A6M2H8 0.00754971977705 0.000668641596675 -2.77797570174e+12 +UniRef50_X6L2P2 0.000309943931679 0.000171446167593 -55913246920.2 +UniRef50_Q04KA6 0.00441979912214 0.000774727423463 -1.47156017482e+12 +UniRef50_UPI00037EF484 hypothetical protein, partial 2.16387975468e-05 4.04567357241e-06 -7102560040.37 +UniRef50_R4LGH4 9.93137683078e-06 2.84797711446e-05 7488214398.88 +UniRef50_A4WR12 ABC transporter related 0.00108551391904 0.000892678575865 -77849994395.5 +UniRef50_UPI000466F502 nitrate reductase 9.15200794493e-06 6.1169656903e-06 -1225283802.35 +UniRef50_UPI000360428B hypothetical protein 8.71547338186e-06 2.19357967414e-05 5337206771.84 +UniRef50_UPI0002DA4A3A hypothetical protein 8.82274084231e-07 3.76501175199e-07 -204186729.908 +UniRef50_O59229 30S ribosomal protein S12 0.00174677559691 0.000551993841485 -4.82348056288e+11 +UniRef50_F8YC51 Pyridine nucleotide disulfide oxidoreductase 0.000483683128658 0.000251333366122 -93802450388.0 +UniRef50_UPI000472E3C4 hypothetical protein 4.8837811337e-05 9.76803971961e-05 19718351277.2 +UniRef50_F9NUL2 ABC transporter, permease protein 0.000247396680356 0.0043789438506 1.66795629241e+12 +UniRef50_F3GFB2 ABC transporter, substrate binding protein, aliphatic sulfonate 2.94489270222e-05 4.09717762502e-05 4651915634.6 +UniRef50_B5F5V3 Nitrate reductase, alpha subunit 0.00345831062314 0.00156790405427 -7.6318032975e+11 +UniRef50_Q9HZQ3 Aerobic cobaltochelatase subunit CobN 0.00022331838668 4.73263950644e-05 -71050126680.0 +UniRef50_P76236 Inner membrane protein YeaI 0.00371131098361 0.00263352550596 -4.35115223242e+11 +UniRef50_A5ULS0 0.00325908261111 0.00165607918084 -6.47152155864e+11 +UniRef50_A4F866 Transcription elongation factor GreA 0.000472804571187 0.00444399385044 1.60321784401e+12 +UniRef50_P32136 Putative sulfoquinovose importer 0.00453391657987 0.00138951746038 -1.26943251065e+12 +UniRef50_P08417 Fumarate hydratase, mitochondrial 0.0410183192903 0.0695359995187 1.15129374595e+13 +UniRef50_Q9X581 NatC 0.000312013049321 0.00414904351622 1.54905628515e+12 +UniRef50_A6LS24 Peptidase M56, BlaR1 0.000171020333855 0.00141249566387 5.01198825341e+11 +UniRef50_K2LBK5 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 2.82067635151e-05 1.90088237201e-05 -3713321166.66 +UniRef50_UPI00037E01EF hypothetical protein 1.92677154912e-06 8.87944061494e-06 2806877820.72 +UniRef50_UPI0004702907 ABC transporter ATP binding protein 0.000213854263286 4.53025280333e-05 -68046403884.0 +UniRef50_E2ZV83 4.70294884022e-05 8.37586948934e-05 14828031378.5 +UniRef50_Q7V3Y9 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 4.52511763736e-05 4.84480614221e-05 1290621724.27 +UniRef50_G2RNK8 Lipoprotein 0.000134860263728 3.39613182269e-05 -40734142468.0 +UniRef50_Q8DWH8 UPF0237 protein SMU_72 0.000473831785168 0.000714475899663 97150982057.0 +UniRef50_D7GFE3 Regulatory protein, TetR 0.000501087595826 0.00324268868148 1.10681800151e+12 +UniRef50_P29686 Glucose 6 phosphate 1 dehydrogenase 4.56920928695e-06 0.0148166093729 5.97980237822e+12 +UniRef50_T0TBX4 Excinuclease ABC subunit A 9.44997724897e-05 0.000169066719468 30103591534.5 +UniRef50_UPI00025578A6 dihydroxyacetone kinase 7.67053331843e-06 0.00112566279693 4.51347196127e+11 +UniRef50_Q8KDE3 N acetyl gamma glutamyl phosphate reductase 6.01565855135e-06 1.93245995178e-05 5372982787.25 +UniRef50_Q1J1R8 Tfp pilus assembly pathway, ATPase PilB 0.00024203711588 0.0296952352018 1.18906174987e+13 +UniRef50_A7NQM8 Formamidopyrimidine DNA glycosylase 1.13091774332e-05 2.30650908815e-05 4746006520.36 +UniRef50_Q8CW45 Outer membrane lipoprotein LolB 0.00140175073626 0.00195094987545 2.21718431922e+11 +UniRef50_Q9X909 DNA topoisomerase 1 0.000133354605847 0.00551356984067 2.17205891296e+12 +UniRef50_UPI000371ABD8 hypothetical protein 3.84091768676e-06 3.04016786597e-05 10722905141.9 +UniRef50_UPI000467A9B2 hypothetical protein 2.82941817392e-05 2.50995874357e-05 -1289696922.4 +UniRef50_P24211 Putative protein RhsE 0.00329138397159 0.00101245717621 -9.20030712871e+11 +UniRef50_P04179 Superoxide dismutase [Mn], mitochondrial 9.94275113666e-06 0.00011224211477 41299508453.0 +UniRef50_UPI000478DF96 AraC family transcriptional regulator 9.35895407023e-05 0.00020627476498 45492407844.2 +UniRef50_Q9HTT0 0.00135594283752 0.000461432351874 -3.61124859933e+11 +UniRef50_J9YQC3 0.000439296040465 0.000112216607416 -1.32045980838e+11 +UniRef50_A0A045ECZ1 5.52356674421e-05 1.4068428116e-05 -16619719694.8 +UniRef50_B9E3J2 0.000276590966753 0.00102352169998 3.01545102875e+11 +UniRef50_K1DV80 Cupin superfamily protein 2.16600795122e-05 4.66666001768e-05 10095439256.8 +UniRef50_UPI00040C1A9F hypothetical protein 3.85714566219e-05 9.8705218238e-06 -11586919578.1 +UniRef50_Q5HF61 Probable thiol peroxidase 0.0108355483715 0.00213480575774 -3.51259656329e+12 +UniRef50_F8JFK7 0.00189878008234 0.00982733864575 3.2008563864e+12 +UniRef50_G7M7E3 Membrane bound O acyl transferase MBOAT family protein 7.39202328085e-05 0.000850778285585 3.13627129026e+11 +UniRef50_G7M6M8 Peptidase M56 BlaR1 5.19714532615e-05 0.00106571659894 4.09261355363e+11 +UniRef50_Q9I5Z5 0.000321721013225 0.000386877779725 26304586199.5 +UniRef50_UPI00047B409A hypothetical protein 6.05653551629e-06 1.76958406166e-05 4698930299.33 +UniRef50_P44797 Adenylosuccinate lyase 0.0030644247723 0.000868500021796 -8.86521768804e+11 +UniRef50_K1V508 0.000314079579682 0.000513212257297 80392305585.9 +UniRef50_X6P3I6 3.93175781386e-06 9.85128623436e-06 2389786264.14 +UniRef50_B8DI47 Cell wall surface anchor family protein 6.50092094613e-06 0.0018729655695 7.53514682716e+11 +UniRef50_F3ZH26 Putative dehydrogenase 0.000140069012559 0.000109309082736 -12418161136.3 +UniRef50_P0ABP1 Anaerobic C4 dicarboxylate transporter DcuB 0.00408742209439 0.000716782922252 -1.36076839619e+12 +UniRef50_UPI0004688581 replication initiation protein RepC 5.76615686509e-05 3.17533745407e-05 -10459455891.6 +UniRef50_D9REY1 0.045000304697 0.00491130489144 -1.61844211689e+13 +UniRef50_Q2CKE9 2.76801292372e-05 2.29455026417e-05 -1911426857.01 +UniRef50_Q9JUV1 Proline iminopeptidase 0.000130998423461 0.00301352004719 1.16370935202e+12 +UniRef50_F9HJK1 2.73662275961e-05 2.52243960835e-05 -864683664.865 +UniRef50_A7MXL0 Prolipoprotein diacylglyceryl transferase 1.96362483315e-05 3.16662745345e-05 4856669203.17 +UniRef50_C9XQG5 Trehalose 6 phosphate hydrolase 0.0135372014062 0.00249773631348 -4.45676752739e+12 +UniRef50_X1YC61 2.6321106951e-06 8.62626920644e-06 2419915347.62 +UniRef50_Q57658 Aspartate semialdehyde dehydrogenase 0.00266662094418 0.00053760170224 -8.59511193975e+11 +UniRef50_Q5NNB4 N succinylarginine dihydrolase 1.39463737705e-05 4.44828576711e-05 12327953275.5 +UniRef50_A9WR14 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.24044804198e-06 0.00188583378856 7.59622321315e+11 +UniRef50_P54374 Shikimate dehydrogenase 5.41130798207e-05 1.79841875759e-05 -14585677150.6 +UniRef50_A0A024HXE1 3.25996490061e-05 1.46496623339e-05 -7246629890.67 +UniRef50_T1Y972 Transposase 0.00856066326392 0.000927696456103 -3.08152236735e+12 +UniRef50_W7VQ87 Phytoene dehydrogenase 2.5442867101e-05 0.000536025806937 2.06128598369e+11 +UniRef50_M9RUX7 TonB domain containing protein 0.000260669263266 0.000703839941747 1.78913441219e+11 +UniRef50_UPI000470A397 30S ribosomal protein S2, partial 1.81717833935e-05 1.84541417283e-05 113991524.685 +UniRef50_UPI000441C901 PREDICTED 2.82105770673e-05 2.60881424641e-05 -856852894.513 +UniRef50_B3EPQ3 Protease HtpX homolog 0.0050205306552 0.00101731550466 -1.61614708125e+12 +UniRef50_I0KKW1 DoxX family protein 5.86445008878e-05 2.84505658345e-05 -12189662102.3 +UniRef50_G4E2Y7 ATP dependent chaperone ClpB 0.000340572692208 0.0110094406366 4.30715291089e+12 +UniRef50_P57408 UPF0053 protein BU323 0.00203987074879 0.000742333055207 -5.23831889476e+11 +UniRef50_M1Z917 1.25367967486e-05 7.52455487413e-05 25316292702.4 +UniRef50_UPI0003B3F37B polyphosphate kinase, partial 2.66527187285e-06 5.34365714532e-05 20496996674.5 +UniRef50_UPI0002880AE8 bacteriocin ABC transporter ATPase 7.06539959106e-06 8.32063544678e-06 506754118.43 +UniRef50_Q46911 0.00355076701897 0.000687430956767 -1.15596390539e+12 +UniRef50_X0SYL6 Marine sediment metagenome DNA, contig 1.05868542035e-05 6.91404664592e-06 -1482757481.41 +UniRef50_G2T0A1 0.00412671179513 0.000771160477641 -1.35467724412e+12 +UniRef50_I0C2G3 Deoxyribodipyrimidine photolyase 0.0187891547181 0.00382756929225 -6.04017563569e+12 +UniRef50_O67315 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.21212594522e-05 1.12262390678e-05 -4398453426.12 +UniRef50_W0Z2H6 ISSod1 transposase 0.000158036515303 1.79254757326e-05 -56564546030.2 +UniRef50_UPI0004726C09 hypothetical protein 9.35757189622e-06 1.16911950086e-05 942112287.244 +UniRef50_C4RCM2 Polyketide synthase 0.000327559620365 0.000507883902509 72799125529.3 +UniRef50_P19529 Replication initiation protein 0.961640316151 0.326879196825 -2.56260853267e+14 +UniRef50_P9WHM0 N5 carboxyaminoimidazole ribonucleotide mutase 7.46857686182e-05 8.86204313279e-05 5625594333.45 +UniRef50_B9DYP5 0.000291819534415 0.00152270260843 4.96922601616e+11 +UniRef50_Q2G9D9 Arginine tRNA ligase 0.0092711124598 0.00164073648942 -3.08047641449e+12 +UniRef50_X1L2W8 Marine sediment metagenome DNA, contig 0.000156334471216 5.32238616877e-05 -41627018375.9 +UniRef50_O27434 CoB CoM heterodisulfide reductase iron sulfur subunit A 0.00299828804169 0.000674670492881 -9.38072918448e+11 +UniRef50_UPI00035FE7E0 hypothetical protein 0.000223973636734 0.00010563046806 -47776589427.7 +UniRef50_F0RPB8 Lon protease 0.000155068084511 0.0285957922034 1.14818693337e+13 +UniRef50_Q6AAY2 0.000342734707915 0.00764689023824 2.94877721966e+12 +UniRef50_Q6AAY0 0.000359125433534 0.0112153445524 4.38278887909e+12 +UniRef50_A3U7W4 2.2183390728e-05 0.002468786419 9.87723665708e+11 +UniRef50_C1KVS7 Indole 3 glycerol phosphate synthase 0.00389445300091 0.0121390033582 3.32842615125e+12 +UniRef50_P08390 USG 1 protein 0.00233512029835 0.00128254442089 -4.24937798289e+11 +UniRef50_UPI00019116B2 trehalose 6 phosphate phosphatase, partial 0.000107071555372 0.000226024154437 48022623955.1 +UniRef50_A5ULH0 2 deoxyribose 5 phosphate aldolase , DeoC 0.0050966092525 0.00200885303049 -1.24656507786e+12 +UniRef50_D2ZQG6 0.00317600418799 0.000411978194691 -1.11587121191e+12 +UniRef50_G7M5P7 Cell wall binding repeat containing protein 0.000347273687573 0.00149190717103 4.62102583505e+11 +UniRef50_UPI0002C33B71 6.1891197869e-05 7.03108583015e-06 -22147700439.3 +UniRef50_I6T197 Chitin binding protein CbpD 0.000244787443557 0.000248862392015 1645106697.74 +UniRef50_B9KM20 PTSINtr with GAF domain, PtsP 0.00622828357139 0.00103566352799 -2.09632443213e+12 +UniRef50_A9EDR0 0.000237417313196 9.5173615342e-05 -57425526350.1 +UniRef50_Q4RQQ9 Chromosome 2 SCAF15004, whole genome shotgun sequence 1.13014725629e-05 7.73417822508e-05 26661283426.7 +UniRef50_J3HVJ5 0.000228565962343 0.000212245274184 -6588862087.15 +UniRef50_D8HCA2 0.0020226388606 0.000533704888912 -6.01100915646e+11 +UniRef50_U0EAS4 Adenine deaminase 0.00109217809168 0.000998155248336 -37958175648.0 +UniRef50_UPI0003C1ADBB 6.23769906392e-06 6.21915146015e-06 -7487895.24664 +UniRef50_F8C6I4 7.83165951945e-05 5.24663792293e-06 -29499238419.8 +UniRef50_UPI000474BE5B hypothetical protein 5.63742923218e-06 0.000104725883986 40003225136.2 +UniRef50_UPI00047B93C9 hypothetical protein 1.26891751512e-05 1.29060405319e-05 87551215.4261 +UniRef50_R1CD42 9.16801717706e-05 2.58089128529e-05 -26593035556.3 +UniRef50_A5EUT6 Phosphoglucosamine mutase 4.82415262964e-06 2.54316925875e-05 8319516763.96 +UniRef50_Q53058 0.00218475783613 0.000740425575159 -5.83094657704e+11 +UniRef50_UPI000287CEB1 4 hydroxythreonine 4 phosphate dehydrogenase 3.69501355878e-05 7.97085367124e-05 17262091238.6 +UniRef50_G6RIH0 Prepilin type N terminal cleavage methylation domain protein 2.46997661441e-05 0.0040920689097 1.64204683549e+12 +UniRef50_A3UGH3 5.50932157358e-05 7.05373329677e-05 6234979647.15 +UniRef50_J9P8Q4 2.12490180849e-05 5.39629330572e-05 13207008919.2 +UniRef50_F0KF14 Acyl CoA dehydrogenase 0.000135051668988 0.00583146236004 2.2997108988e+12 +UniRef50_U3T9B5 0.000180327701681 0.00474701565199 1.8436279651e+12 +UniRef50_P44482 2 dehydro 3 deoxygluconokinase 1.50595174965e-05 1.70382920555e-05 798855571.763 +UniRef50_Q8CMX1 Transcriptional regulator 0.00258205047089 0.0126844066385 4.07844515471e+12 +UniRef50_V4R7Y3 Hydrogenase expression protein HypA 7.19797112264e-07 6.89010781312e-06 2491030148.16 +UniRef50_S8ENL7 5.477274286e-07 1.00968664856e-05 3855104618.42 +UniRef50_W0YWD4 Sensor response regulator hybrid 0.000748229339576 0.000510598424851 -95934516333.7 +UniRef50_Q7MWN4 Elongation factor P 1 1.05261677856e-05 1.75107588688e-05 2819765130.86 +UniRef50_UPI000372A8A8 hypothetical protein 0.0308348091306 0.00546000547488 -1.02441196197e+13 +UniRef50_Q0VN20 Aliphatic amidase 0.00113670186582 0.00391987248444 1.12360013208e+12 +UniRef50_O54461 Beta lactamase 0.0088219028137 0.00451639022296 -1.73818826746e+12 +UniRef50_V9WM02 MoxR like ATPase 0.00236124573194 0.000661056310422 -6.86387333138e+11 +UniRef50_F0KI93 0.000323132273634 0.00492883039506 1.85937684989e+12 +UniRef50_F4PTN3 1.57854807292e-05 0.000289295551579 1.10419371948e+11 +UniRef50_A6M0Z8 Integral membrane sensor signal transduction histidine kinase 0.000262606461243 0.000404082150784 57115471969.6 +UniRef50_Q06065 Acetoacetate metabolism regulatory protein AtoC 0.00271277639972 0.000586953393125 -8.58220834542e+11 +UniRef50_L1K929 0.00107302980842 0.000315262930128 -3.05919787612e+11 +UniRef50_H3TTB7 FtsK SpoIIIE family protein 0.00181369400756 0.000604744106207 -4.88067910659e+11 +UniRef50_Q9I2K3 0.00046989957119 0.000298802737126 -69073891505.9 +UniRef50_UPI0004571B3D PREDICTED 2.13299073152e-05 0.0001306219132 44122523939.5 +UniRef50_UPI0002897681 3 oxoadipate enol lactonase 1.05862573869e-05 4.30268138235e-05 13096650723.8 +UniRef50_V9C7N3 0.00019525137354 0.000314166707656 48007579637.9 +UniRef50_P76080 Putative 1,2 phenylacetyl CoA epoxidase, subunit D 0.00214064927638 0.00017926794122 -7.9183371386e+11 +UniRef50_A6LS79 0.000422487375095 0.00124146187299 3.30630054747e+11 +UniRef50_UPI000376E372 hypothetical protein 3.89589639201e-06 1.58550971533e-05 4828076103.23 +UniRef50_UPI00040D66F2 serine threonine protein phosphatase 1.12389394683e-05 1.43369561231e-05 1250707340.48 +UniRef50_O27653 30S ribosomal protein S19e 0.000846694658247 0.00222829965378 5.57770890895e+11 +UniRef50_W4TX83 0.000189789700572 0.00483271273757 1.87440500511e+12 +UniRef50_A6LS70 0.000289036004135 0.000285330149942 -1496098813.66 +UniRef50_UPI0003C14FAA 0.000166660609633 4.22070817812e-05 -50243416410.4 +UniRef50_A6LUP1 Peptidoglycan glycosyltransferase 0.000772142176353 0.000935993889296 66148947201.7 +UniRef50_UPI000255BA6E general secretion pathway protein I 3.24124263893e-05 2.2354823841e-05 -4060377569.41 +UniRef50_UPI0003B5E2AD ABC transporter 8.03359617502e-05 3.12782999686e-05 -19805180066.4 +UniRef50_D4HCQ8 Methylenetetrahydrofolate reductase 0.000456636276836 0.000567916740756 44925288849.4 +UniRef50_UPI00040E317A hypoxanthine phosphoribosyltransferase 3.19796163673e-05 4.95839871114e-05 7107100499.32 +UniRef50_P77658 0.00186668006789 0.00116830758242 -2.81941542378e+11 +UniRef50_I0C113 Isovaleryl CoA dehydrogenase 0.00605817725938 0.00127652614849 -1.93041123092e+12 +UniRef50_D8JKL5 DNA polymerase III subunit beta 0.000858992221721 0.00548410960008 1.86721664222e+12 +UniRef50_UPI0002C34F8A 4.68122146317e-06 5.54093701401e-06 347077717.77 +UniRef50_E0MMN1 1.58558704661e-05 4.36481772228e-05 11220095287.6 +UniRef50_D1RMY5 Thioesterase family protein 1.08970032187e-05 0.000798824874874 3.18096150749e+11 +UniRef50_P77657 0.00180367857012 0.00191060592047 43167883482.4 +UniRef50_UPI000464369A hypothetical protein 3.74004536252e-05 0.000286787997281 1.00680811703e+11 +UniRef50_F5M2M3 CheBRA 0.00661375269939 0.00117690669288 -2.19492145043e+12 +UniRef50_O31219 Aspartate semialdehyde dehydrogenase 0.0084113206791 0.0116524852308 1.30849790308e+12 +UniRef50_Q28UY2 50S ribosomal protein L11 0.0450617343031 0.0707945800118 1.03886655901e+13 +UniRef50_P0AEJ4 Osmolarity sensor protein EnvZ 0.00170004430835 0.000293999580636 -5.67637510686e+11 +UniRef50_K1E414 0.000171723718775 0.000142643098225 -11740203375.4 +UniRef50_R9SK13 Phage integrase family protein 0.00149785617481 0.000178799216058 -5.32519480896e+11 +UniRef50_UPI0003716E27 hypothetical protein 4.45818568992e-06 0.000164660077216 64675469507.3 +UniRef50_UPI00046FA912 ABC transporter substrate binding protein, partial 1.56505359167e-05 0.00115566324153 4.60237118784e+11 +UniRef50_UPI00040758D9 hypothetical protein 6.06323873884e-06 5.3587939592e-05 19186304928.1 +UniRef50_UPI00047851F7 peptide ABC transporter permease 5.74563174052e-05 6.00066050513e-05 1029582418.28 +UniRef50_UPI0003B46F2A ArsR family transcriptional regulator 0.000138190902389 6.46256949344e-05 -29699176996.0 +UniRef50_H1KC86 2.41653561268e-05 6.80122606734e-05 17701533427.5 +UniRef50_A6W0Y0 8 amino 7 oxononanoate synthase 4.68134875144e-06 5.17591720301e-06 199663352.936 +UniRef50_A6LQ18 Transcriptional regulator, TetR family 0.000547081143264 0.000743615203507 79343211864.2 +UniRef50_P44917 0.00395794193003 0.00344391700485 -2.0751817009e+11 +UniRef50_Q8CNS8 Sortase 0.0116566051104 0.00411902800539 -3.04301237377e+12 +UniRef50_UPI0004418A78 PREDICTED 1.10999035609e-05 4.0012885702e-06 -2865797981.55 +UniRef50_Q9ZM40 Flagellar biosynthesis protein FlhA 5.1475362111e-05 0.00339264232595 1.34887010403e+12 +UniRef50_Q1GDE2 ATP synthase subunit b 2 0.00392912696703 0.000775579225764 -1.27312592153e+12 +UniRef50_H2KZ84 Protein C37C3.1, isoform a 3.78557081942e-05 1.64405504429e-05 -8645561977.74 +UniRef50_Q5HLQ2 0.00818263448597 0.00347377885968 -1.90102280049e+12 +UniRef50_Q5HLQ1 0.00559983324563 0.00383036008974 -7.1435802691e+11 +UniRef50_Q31ID1 Lipoprotein signal peptidase 1.08524794447e-05 1.5683090399e-05 1950176920.51 +UniRef50_UPI0004018A38 succinate semialdehyde dehydrogenase 5.14022398097e-06 1.54042339146e-05 4143706763.76 +UniRef50_D3S8C7 Hypoxanthine guanine phosphoribosyltransferase 0.00108344230656 0.000322163678398 -3.07337524128e+11 +UniRef50_I7DNF2 0.000459021597851 4.02889530915e-05 -1.69047507117e+11 +UniRef50_D3E4Q3 0.00311966974646 0.000202966807698 -1.17750876835e+12 +UniRef50_Q5HLQ8 0.0198419340317 0.00777697228541 -4.87077311071e+12 +UniRef50_A3PR56 HpcH HpaI aldolase 0.00155846992109 0.00200651167921 1.80879955844e+11 +UniRef50_Q2S6N0 Ribosomal RNA small subunit methyltransferase G 3.77421846055e-05 4.05724032981e-05 1142594016.89 +UniRef50_I0TMR6 Gram positive signal peptide protein, YSIRK family 0.0016286634156 0.000735967704826 -3.60392213048e+11 +UniRef50_UPI00046F57AB 2 oxoglutarate dehydrogenase 1.47487292429e-05 2.2736521734e-05 3224769849.89 +UniRef50_J0XPW7 LPXTG motif cell wall anchor domain protein 7.1833988234e-06 6.87501489099e-07 -2622473467.48 +UniRef50_Q68W26 Queuine tRNA ribosyltransferase 5.56987846554e-06 1.68587115441e-05 4557440443.39 +UniRef50_UPI0002B45411 2.67098942211e-05 1.49044138345e-05 -4766017301.61 +UniRef50_I4EB97 Transposase and inactivated derivative 4.91278094178e-06 8.61183769922e-06 1493354605.51 +UniRef50_P25396 Tellurite resistance protein TehA 0.00250751055345 0.000938326644269 -6.33498800188e+11 +UniRef50_Q87VS1 tRNA dihydrouridine synthase B 0.00282740476991 0.00039059383359 -9.83770478025e+11 +UniRef50_Q057P9 Serine hydroxymethyltransferase 8.49069856539e-05 0.000103470254174 7494219298.49 +UniRef50_X6K4S1 Head tail adaptor protein 0.000150171720178 4.65028384463e-05 -41852399715.4 +UniRef50_P26850 NADH ubiquinone oxidoreductase chain 6 0.000155364531907 3.60642158355e-05 -48163001577.8 +UniRef50_Q03007 Hydrogenase expression formation protein HupH 0.00153017686735 0.000546259530231 -3.97219503018e+11 +UniRef50_B7J5S6 Ribose 5 phosphate isomerase A 0.00134717657979 0.00330263630215 7.89443086106e+11 +UniRef50_P77656 0.0106961871223 0.000577166199074 -4.08517292105e+12 +UniRef50_A6LU84 Small GTP binding protein 0.000499726509487 0.000967435178252 1.88819729011e+11 +UniRef50_A6LWF4 0.000663125447862 0.0021953259667 6.1856815167e+11 +UniRef50_P18868 Superoxide dismutase [Fe] 7.88723856106e-06 2.69943713577e-05 7713783980.87 +UniRef50_A5UKH0 Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS 0.0027161799779 0.00023815863322 -1.00040762559e+12 +UniRef50_P39352 Putative metabolite transport protein YjhB 0.00178942885126 0.000642924522031 -4.628578669e+11 +UniRef50_UPI0004703186 chemotaxis protein CheY, partial 6.93353841637e-05 4.22012111924e-05 -10954398602.3 +UniRef50_C1DWC2 Membrane protein 0.000155248536932 6.17243958791e-05 -37756843413.3 +UniRef50_UPI0003827112 hypothetical protein 7.12000377547e-05 3.7009515076e-05 -13803133570.3 +UniRef50_B0V8D4 0.000188218433003 0.00731610218401 2.87761413925e+12 +UniRef50_UPI000380411C hypothetical protein 0.000167275918245 0.00218649093407 8.15181880441e+11 +UniRef50_UPI0002555E12 dihydrofolate reductase 1.97677306537e-05 2.80831587778e-05 3357040375.48 +UniRef50_A5FVL8 Prolipoprotein diacylglyceryl transferase 8.51530587704e-05 2.41339726503e-05 -24634153855.1 +UniRef50_UPI0003B597DA short chain dehydrogenase 7.63499378642e-06 7.40313523005e-06 -93604144.431 +UniRef50_M4WY98 SAM dependent methyltransferase 0.000851928757705 0.000222600531548 -2.54067527625e+11 +UniRef50_F2CWZ0 Predicted protein 5.95271062046e-05 0.000403667209988 1.38933582971e+11 +UniRef50_V9TIQ4 Glycosyltransferase 0.000172476105513 0.000128305592405 -17832178174.8 +UniRef50_N1ZDW1 2.94295977313e-05 9.82373572136e-05 27778536869.2 +UniRef50_A5WEW9 Cysteine tRNA ligase 2.43012708894e-06 0.00959894352248 3.87423022018e+12 +UniRef50_H0E5U4 Glyoxalase family protein 1.22471063114e-05 3.17367907771e-05 7868224784.13 +UniRef50_F7X1V6 MFS type transport protein 0.00155281629653 0.000367253076177 -4.78626420552e+11 +UniRef50_UPI000255639C ABC transporter permease 3.62809266414e-06 0.000125298111857 49119679807.2 +UniRef50_U5MRX8 Sensor histidine kinase ResE 0.000375191146479 0.00119865990613 3.32444443369e+11 +UniRef50_A9FBU8 Methionine tRNA ligase 1 5.17295699902e-06 4.50976316037e-06 -267739490.967 +UniRef50_UPI0002F98998 hypothetical protein 1.09927903186e-06 1.23436757579e-06 54536902.9074 +UniRef50_Q8XK37 DNA polymerase IV 4.04427517959e-06 8.09976606299e-06 1637251436.1 +UniRef50_UPI00029A19D9 3 oxoacyl reductase 1.86003336749e-05 2.97394913879e-05 4497014661.57 +UniRef50_P33015 UPF0394 inner membrane protein YeeE 0.0242149386692 0.00587925926735 -7.4023387786e+12 +UniRef50_UPI0004692C4A alpha glucosidase 4.04128471256e-05 3.25544899182e-05 -3172515237.51 +UniRef50_Q8P682 Ribosomal large subunit pseudouridine synthase D 0.00334943668386 0.00197224666554 -5.55988510418e+11 +UniRef50_F9V6Y3 ATP dependent Clp protease proteolytic subunit 0.00570263811579 0.000307621567909 -2.17803438468e+12 +UniRef50_UPI000262A74C ribose ABC transporter permease 5.32665864594e-05 1.76499572247e-05 -14378870287.2 +UniRef50_UPI00047136FC dTDP glucose 4,6 dehydratase 5.24921540484e-06 6.25153215724e-06 404647572.754 +UniRef50_K1YIN2 4.01096451738e-06 4.88148357155e-06 351439224.638 +UniRef50_U5MMQ6 Stage II sporulation P 0.000244471834225 0.000854592165034 2.46313064566e+11 +UniRef50_Q9FCD1 Urease subunit gamma 0.000258429434312 0.0005089350382 1.01132186339e+11 +UniRef50_UPI0004416D75 RF 1 domain containing protein 2.81668205788e-06 4.13218574183e-05 15545011804.6 +UniRef50_UPI0003A49BEA 3 phosphoglycerate dehydrogenase 3.9868507309e-05 3.40575009581e-05 -2345974572.93 +UniRef50_UPI00020D91AD XRE family transcriptional regulator 7.43483556209e-05 0.000279128326833 82672187311.1 +UniRef50_O33579 Phosphoadenosine phosphosulfate reductase 1.46639714908e-05 1.57390399562e-05 434018332.056 +UniRef50_Q6FAE6 0.00031632904094 0.00580366843269 2.21530624968e+12 +UniRef50_UPI0003AE93A7 PREDICTED 0.000132296491424 0.000133885093534 641338166.147 +UniRef50_UPI000237B0FC DEAD DEAH box helicase domain protein 5.5924520333e-06 0.00618933658081 2.49645338786e+12 +UniRef50_UPI00037131BB hypothetical protein 9.97341897719e-05 0.00325743202213 1.27480136423e+12 +UniRef50_UPI000361CF9B hypothetical protein 0.000181591334825 8.58654398998e-05 -38645718470.1 +UniRef50_R5AUS4 1.52037780442e-05 2.36810228574e-05 3422367758.58 +UniRef50_T2EQ25 Helix turn helix domain protein 0.00166608454527 0.000288113858735 -5.56303675754e+11 +UniRef50_UPI0003B62920 amino acid ABC transporter ATPase 0.000133556188472 1.34429290129e-05 -48491196799.0 +UniRef50_I9SM88 Flavoprotein oxidoreductase 0.00235928743033 0.0442975057792 1.69309733873e+13 +UniRef50_P52037 0.00127528965054 0.00100175766806 -1.10428217942e+11 +UniRef50_D6XAF0 Transcriptional regulator 0.000666315502637 0.00017392912584 -1.98782422573e+11 +UniRef50_I3THN3 0.000841148897818 0.00049271195543 -1.40668269444e+11 +UniRef50_A5ULL2 Adhesin like protein 0.00245763342503 0.000351537442491 -8.50256792855e+11 +UniRef50_U6M3I8 3.20510913725e-05 2.89005372935e-05 -1271917343.34 +UniRef50_Q21TC3 Putative prolin rich exported protein 1.83612194674e-05 5.68022951094e-06 -5119471258.68 +UniRef50_UPI00032A0CE2 PREDICTED 8.25826985281e-06 9.76587279193e-05 36092061988.4 +UniRef50_Q9CF79 Aspartate carbamoyltransferase 0.0131676780485 0.00845498474287 -1.90257211873e+12 +UniRef50_A9GWZ1 0.000730789728445 0.000255262450271 -1.91976197575e+11 +UniRef50_UPI000477BC16 ABC transporter ATP binding protein 8.67292517622e-05 7.24422148959e-06 -32089082112.1 +UniRef50_Q184N3 N acetylmuramic acid 6 phosphate etherase 7.33268114256e-06 9.20934145196e-06 757630796.116 +UniRef50_UPI0003EF6AD2 hypothetical protein 0.000590349688807 0.000364999101269 -90976797551.8 +UniRef50_P19934 Protein TolA 0.0040214688705 0.000761507007501 -1.31608660832e+12 +UniRef50_C2WHY8 Antisigma factor antagonist, STAS 0.000947341164526 0.000365360349307 -2.34952796812e+11 +UniRef50_L0A3G2 ABC type metal ion transport system, periplasmic component surface adhesin 0.000167523367831 0.0148776035682 5.93863988988e+12 +UniRef50_A5UTU3 Peptidoglycan binding domain 1 protein 8.65116055036e-06 5.0644900521e-06 -1447982893.54 +UniRef50_Q17WK7 0.000814693042933 0.00212338613798 5.28335461942e+11 +UniRef50_J9GTY9 0.00122004432289 8.28536304926e-05 -4.59097837421e+11 +UniRef50_B9JRL5 Transposase 3.63730340908e-05 2.94162461802e-05 -2808540648.9 +UniRef50_A0A037ZJL2 0.000170721820302 0.000132819199225 -15301753246.2 +UniRef50_A5UJV0 Probable 3 phosphoshikimate 1 carboxyvinyltransferase 0.00278167706262 0.000863764099901 -7.74284998489e+11 +UniRef50_G7U4Y3 0.00019226790604 0.00299738298451 1.13245937981e+12 +UniRef50_W0N4N9 0.000202604783069 0.000186795258236 -6382499179.77 +UniRef50_P33228 Protein RecT 0.00239386714412 0.00183133793264 -2.27099945684e+11 +UniRef50_K2KBM0 Sulfite oxidase subunit YedZ 7.09512539188e-05 2.59479089111e-05 -18168402632.8 +UniRef50_Q5HGR8 0.00243521485344 0.000702314631218 -6.99593084787e+11 +UniRef50_UPI00034742BC hypothetical protein 5.63730120781e-06 0.000334189854387 1.32640697512e+11 +UniRef50_UPI00047A7CB2 DNA mismatch repair protein MutT 9.88724964352e-06 6.61209898448e-05 22702250984.9 +UniRef50_D1GUM7 Probable siderophore biosynthesis protein SbnA 0.0148637308871 0.00169477649664 -5.31646848869e+12 +UniRef50_A0A022P693 0.000569240968097 0.000443699278139 -50682720805.8 +UniRef50_F0L7M8 Transcriptional regulator, GntR family 0.00169853613007 0.00197041611899 1.0976128787e+11 +UniRef50_U5WK69 0.000976474198911 0.000194500574217 -3.15692348184e+11 +UniRef50_X5EXM8 Glycosyl transferase 0.000280239524405 0.000387519549816 43310262732.4 +UniRef50_UPI000363A82D hypothetical protein 3.22718469417e-05 4.5148619415e-05 5198511063.24 +UniRef50_Q8CS03 0.00947913578412 0.00288158408082 -2.66351258369e+12 +UniRef50_Q8CS02 0.00188348440519 0.000546882787401 -5.39602475048e+11 +UniRef50_P29018 ATP binding permease protein CydD 0.00229030241694 0.00110439726391 -4.78764462971e+11 +UniRef50_Q8CS00 0.0103572605038 0.00299171270556 -2.97356203159e+12 +UniRef50_UPI00047DEE62 hypothetical protein 0.00108211581057 0.000190342861798 -3.60019682704e+11 +UniRef50_B2GKX1 O acetylhomoserine lyase 0.0177439382789 0.0118076687546 -2.39654485318e+12 +UniRef50_Q8CS04 0.00315742328581 0.000590142034844 -1.0364429451e+12 +UniRef50_M4BT40 0.000146858441804 0.000414930542032 1.08223996477e+11 +UniRef50_A4WS78 Signal transduction histidine kinase 0.00538570611265 0.00171979358173 -1.47997387454e+12 +UniRef50_Q9RTF4 0.00103895226289 0.00705999066355 2.4307670888e+12 +UniRef50_E3FY93 Fibronectin type III domain protein 1.17128833081e-06 2.1915480541e-05 8374684955.12 +UniRef50_UPI0003666F64 hypothetical protein 1.0507380625e-05 1.59119537993e-05 2181892512.04 +UniRef50_UPI00047D0052 hypothetical protein, partial 1.67163930338e-05 2.08642588941e-05 1674544347.84 +UniRef50_Q65MD5 UPF0753 protein BLi00845 BL00917 8.64083282815e-06 0.000491866063033 1.95083955274e+11 +UniRef50_Q9RTF9 0.000175574878536 0.0130618619574 5.20235222628e+12 +UniRef50_Q9RUC1 SsrA binding protein 0.000238915182824 0.0331756388493 1.32969595232e+13 +UniRef50_A1WR56 Oxidoreductase FAD binding domain protein 0.0140584201309 0.00669403384336 -2.97309311546e+12 +UniRef50_G8U508 DNA directed RNA polymerase 0.000131954380742 0.00200828367244 7.57497160209e+11 +UniRef50_P37478 Transcriptional regulatory protein YycF 0.0110149563229 0.00562359779721 -2.17655759623e+12 +UniRef50_B7GY06 3 oxoadipate enol lactonase 2 0.000620041420128 0.00481444432024 1.69333192189e+12 +UniRef50_O26858 Endonuclease III 0.00498845489152 0.000416917701458 -1.8455856627e+12 +UniRef50_Q6GAV6 Coenzyme A disulfide reductase 0.00789921248907 0.000763789910027 -2.88065765664e+12 +UniRef50_B0K8B2 Chorismate synthase 2.07610984002e-05 0.00021091136051 76765994219.9 +UniRef50_Q8DTC7 Chaperone protein ClpB 0.00533918440011 0.0022109248304 -1.26291677635e+12 +UniRef50_Q3SFC9 Dihydroxy acid dehydratase 0.00376069344137 0.000635884848475 -1.26152357466e+12 +UniRef50_B7H186 FhuE receptor 6.53844091497e-05 0.0049880673943 1.98734752922e+12 +UniRef50_X1BNR5 Marine sediment metagenome DNA, contig 2.06504580609e-05 5.59046047906e-05 14232531651.8 +UniRef50_A3PWR0 Nitric oxide reductase, NorZ apoprotein 0.00034044194681 0.0054231420636 2.05194840889e+12 +UniRef50_B7H4G2 Opine oxidase subunit A 0.00013198810799 0.0120781402686 4.82280822301e+12 +UniRef50_Q8TYD7 GMP synthase [glutamine hydrolyzing] subunit B 0.00286690139835 0.00189303208621 -3.93162992031e+11 +UniRef50_A0AYH9 Transcriptional regulator, LysR family 0.000123901309249 0.00311019322598 1.20560269271e+12 +UniRef50_P77804 Protein YdgA 0.00234066627055 0.000696885418981 -6.63614501238e+11 +UniRef50_E3GWU1 Radical SAM domain protein 0.00314492234277 0.000969791778839 -8.78126900512e+11 +UniRef50_X1I3C3 Marine sediment metagenome DNA, contig 2.29214721782e-05 2.99570050762e-05 2840330966.62 +UniRef50_UPI0003814C5C hypothetical protein 0.000119891435221 0.000132805091763 5213401614.39 +UniRef50_R5SU23 8.02697736249e-06 6.30031567142e-06 -697074513.207 +UniRef50_UPI00045E9580 macrolide ABC transporter ATP binding protein 1.49711890819e-05 6.44543156809e-05 19976945434.3 +UniRef50_B2ULR4 Bifunctional protein PyrR 1.34848221917e-05 8.86866134317e-05 30359885953.3 +UniRef50_A9KCM9 BolA 3.01647321862e-05 0.000101075491463 28627543692.9 +UniRef50_C1CVP1 Ribosome recycling factor 0.000218199993555 0.0354299737415 1.42154251591e+13 +UniRef50_G7MCQ9 ABC type transporter, integral membrane subunit 0.000613986828896 0.00139444730836 3.15081472887e+11 +UniRef50_B3DRY6 Bifunctional purine biosynthesis protein PurH 2.6486789968e-06 1.77147347963e-05 6082351607.55 +UniRef50_H1G027 1.56116992561e-05 2.43115455811e-05 3512234720.52 +UniRef50_D3MIV3 Peptidase, M16 family 0.000226718311622 0.00668854626663 2.60871924098e+12 +UniRef50_R4ZWW3 PTS system, galactitol specific IIC component 0.000869192638007 0.000999538161359 52622087296.6 +UniRef50_U8B0J7 0.000518183557978 0.000343945912219 -70341875729.3 +UniRef50_UPI000374EC18 hypothetical protein 4.99872153593e-05 0.000586898500224 2.16757674342e+11 +UniRef50_UPI00036B9450 hypothetical protein 1.75695431869e-05 1.98088847462e-06 -6293331201.66 +UniRef50_UPI000370E751 hypothetical protein 5.44963059974e-05 7.33102245217e-06 -19041203750.3 +UniRef50_C6SNZ9 0.00492207714096 0.000717081644945 -1.69760828284e+12 +UniRef50_B8G2Q5 Cytidylate kinase 1.36281666374e-05 2.42597041569e-05 4292082160.26 +UniRef50_UPI0003809B2B hypothetical protein 1.23160486197e-05 0.000126591717211 46134489730.3 +UniRef50_C7ZTG5 Glycosyl transferase 0.014954770324 0.0015921349195 -5.39465989077e+12 +UniRef50_Q8YD09 Bifunctional imidazolonepropionase histidine ammonia lyase 1.56719494513e-06 4.26088746529e-05 16569029736.1 +UniRef50_H4U829 Hydrogenase accessory protein HypB 0.00148974325882 0.000688711730073 -3.23386257917e+11 +UniRef50_Q5FUG4 3 isopropylmalate dehydratase small subunit 0.0175692221427 0.00215737735038 -6.22195086725e+12 +UniRef50_D6ZU16 Glycerate kinase 0.00155180822735 0.00242593427238 3.52895411111e+11 +UniRef50_UPI00026288A1 hypothetical protein 2.31766341306e-06 0.000416969038085 1.673998483e+11 +UniRef50_Q2S158 Aspartate tRNA ligase 3.12312628212e-06 0.00825784797146 3.33253371686e+12 +UniRef50_A7X770 ATP phosphoribosyltransferase 0.0101935989528 0.00666135996184 -1.4260082261e+12 +UniRef50_UPI00036DFED1 MULTISPECIES 3.2976425846e-05 5.85964362855e-05 10343112607.3 +UniRef50_P07822 Iron hydroxamate binding protein FhuD 0.00208461444654 0.000793292768142 -5.21322407869e+11 +UniRef50_U6I825 Zinc finger protein 341 7.82951039281e-05 7.9040042468e-05 300740829.981 +UniRef50_B2VIL6 Ubiquinone biosynthesis O methyltransferase 0.000147263714763 0.000281042008797 54007938945.8 +UniRef50_Q6D3A9 Glutathione import ATP binding protein GsiA 0.0027166830581 0.000915446067899 -7.27181476607e+11 +UniRef50_F8H1K8 Chemotaxis transducer 0.00104644365957 0.000392743874731 -2.63906624938e+11 +UniRef50_Q0AXL3 Peptide deformylase 6.44861604208e-06 1.44844697055e-05 3244172734.94 +UniRef50_J3N076 2.91696897156e-05 0.000273746690366 98738736459.7 +UniRef50_V4V1N3 0.000329202897256 0.000269285749417 -24189287848.7 +UniRef50_UPI0002191AAA replication initiation protein 0.000212250100338 9.45082511593e-05 -47533829368.5 +UniRef50_X1NJX5 Marine sediment metagenome DNA, contig 8.97212298765e-06 6.49761880694e-05 22609528320.7 +UniRef50_B0U1N1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00913814578866 0.002904872743 -2.51644881939e+12 +UniRef50_I4AP74 O acetylhomoserine sulfhydrylase 0.000376162982168 0.000899768045418 2.11385789391e+11 +UniRef50_R7PTJ2 Predicted ATPase involved in DNA repair 0.00244458684891 0.000517001043326 -7.7819004385e+11 +UniRef50_Q81G06 Histidinol dehydrogenase 3.93926476448e-06 6.03117589805e-06 844530195.259 +UniRef50_S1GW72 Autoinducer 2 kinase LsrK 0.00216597231677 0.000546882787401 -6.53646311469e+11 +UniRef50_UPI00037675A5 hypothetical protein 2.55536300176e-05 1.66172493484e-05 -3607726537.88 +UniRef50_P06999 ATP dependent 6 phosphofructokinase isozyme 2 0.00293851928884 0.000398179827223 -1.02556621413e+12 +UniRef50_X1DD44 Marine sediment metagenome DNA, contig 0.000135118283823 3.2429155335e-05 -41456861307.9 +UniRef50_K0ZUL0 Replication initiator protein A protein 6.47859419759e-06 5.11901190062e-06 -548880057.238 +UniRef50_S2WX32 Polyphosphate kinase 0.000113947921988 0.00565192022217 2.23574737614e+12 +UniRef50_G0DRX2 0.000374986081636 0.000868578544689 1.99269334395e+11 +UniRef50_R6ESV1 2.04989088667e-05 2.46507692003e-05 1676156965.73 +UniRef50_UPI0004719DB7 ABC transporter 2.45422070974e-06 3.90619031269e-06 586177946.382 +UniRef50_UPI00036E309D hypothetical protein 3.62529285432e-06 1.98283870066e-05 6541387943.61 +UniRef50_UPI000362C308 hypothetical protein 0.00570725105787 0.000865534902244 -1.95466022657e+12 +UniRef50_UPI00036A7F13 hypothetical protein 2.55784353542e-05 4.21281825015e-06 -8625561810.53 +UniRef50_A7X4P8 Holo [acyl carrier protein] synthase 0.00359001701015 0.000516588988672 -1.24078060747e+12 +UniRef50_J7N1F5 Teichoic acid biosynthesis protein B family protein 0.0237707360528 0.00474298684634 -7.6817358514e+12 +UniRef50_A0A034GY86 Azaleucine resistance protein AzlC 4.69094440527e-05 3.15413185886e-05 -6204300837.96 +UniRef50_V6U6B5 0.000322390049211 0.00036970888349 19103194065.8 +UniRef50_B0SW92 0.000171799375959 7.39978776146e-05 -39483665041.0 +UniRef50_J0CH97 3.1646394846e-05 2.5116673533e-05 -2636128622.75 +UniRef50_B2VHU9 Adenine phosphoribosyltransferase 3.24908098978e-05 1.63089275807e-05 -6532824465.44 +UniRef50_M7DRE6 Transposon protein 0.00641392057456 0.000707138259181 -2.30389805081e+12 +UniRef50_Q8G7Y6 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000211878320628 0.00648924587117 2.53425031212e+12 +UniRef50_D1B2W6 4.20646833606e-05 6.30860352391e-05 8486577714.35 +UniRef50_UPI000471F8A5 hypothetical protein 9.96621724212e-05 5.45286899571e-05 -18220940720.9 +UniRef50_W0L7A3 AAT family amino acid transporter 0.000601047681903 0.000254054674718 -1.40085335084e+11 +UniRef50_P23669 Threonine synthase 0.000290022701184 0.0383347011995 1.53591035705e+13 +UniRef50_K4S1D1 0.000152212092278 2.84036977267e-05 -49982968180.1 +UniRef50_UPI00035D2EF1 hypothetical protein 2.54283141328e-05 2.59626016317e-05 215698419.751 +UniRef50_P54517 3 dehydroquinate dehydratase 0.000549297682778 0.0816695787821 3.27492529376e+13 +UniRef50_UPI0003C13F0C PREDICTED 0.000103615913215 3.06378321006e-05 -29462146887.6 +UniRef50_UPI0004711337 hypothetical protein 0.000111024693234 0.000750538228566 2.58179461927e+11 +UniRef50_Q6BF16 2 dehydro 3 deoxy 6 phosphogalactonate aldolase 0.00170742647499 0.00126876993397 -1.77091028531e+11 +UniRef50_V6MLI1 4.24078677035e-05 0.000183161495439 56823966757.9 +UniRef50_UPI0003AA777F hypothetical protein 7.8523302985e-05 0.000212208784433 53970469365.9 +UniRef50_Q2RWR9 Light independent protochlorophyllide reductase subunit B 0.000254560331955 1.59474598804e-05 -96330944565.9 +UniRef50_D2ZR32 0.00317551299089 0.00292163659538 -1.02493016281e+11 +UniRef50_E4UD93 7.31611406844e-05 4.63072628498e-05 -10841240016.0 +UniRef50_P55995 Lon protease 0.000144271651601 0.00243176166838 9.23487790433e+11 +UniRef50_Q09580 Probable GMP synthase [glutamine hydrolyzing] 2.77076506611e-06 3.80762783076e-06 418594221.826 +UniRef50_Q18FG3 CTP synthase 6.23446819532e-06 0.00020174364918 78929455531.1 +UniRef50_B1XZN1 Protease Do 0.00124996424237 0.000559370466766 -2.7880118175e+11 +UniRef50_UPI0004705E36 ABC transporter substrate binding protein 1.00796048995e-05 1.35195029217e-05 1388729043.86 +UniRef50_UPI0003B69A56 signal recognition particle, partial 7.12264366523e-06 2.40897757354e-05 6849839426.86 +UniRef50_A0L3M0 Biotin synthase 4.61669780197e-06 1.80576090261e-05 5426260799.7 +UniRef50_UPI0003B4EA07 transposase ISSod13 1.477178825e-05 6.3086796412e-05 19505361686.8 +UniRef50_W8QW60 Lipoprotein 0.000610653276963 0.00041337386219 -79644120634.5 +UniRef50_UPI0001FE2A0F phospho 2 dehydro 3 deoxyheptonate aldolase 2.39917669223e-05 4.36138947983e-06 -7925024265.36 +UniRef50_I0C5E5 0.0108766569786 0.000798177414467 -4.06880587688e+12 +UniRef50_P07658 Formate dehydrogenase H 0.00370533294739 0.000965600641632 -1.10606355213e+12 +UniRef50_J1E3J1 0.00148712953523 0.000973571555587 -2.07329658447e+11 +UniRef50_J7QJA6 SPFH domain band 7 family protein 0.000604884381308 0.00089552099581 1.17333567787e+11 +UniRef50_UPI0004776671 heat shock protein Hsp33 0.000270577728831 0.000218441107368 -21048193872.9 +UniRef50_P32051 0.000279346522841 0.000115487565524 -66151871844.4 +UniRef50_C3GUE0 Alcohol dehydrogenase GroES domain protein 0.000175032143208 0.00190735761525 6.99361051087e+11 +UniRef50_UPI000472812C hypothetical protein 8.51989178709e-05 4.88846429145e-06 -32422315630.1 +UniRef50_R1ALN2 0.000241462252992 0.00031983758685 31641084052.0 +UniRef50_UPI000478EC80 hypothetical protein 6.98586484844e-06 1.25555570006e-05 2248553069.64 +UniRef50_UPI000479C4BA MFS transporter 5.30949588193e-06 1.56224775903e-05 4163477270.2 +UniRef50_U3T7W9 0.000936607797792 0.00574592944676 1.9415821667e+12 +UniRef50_A4IJB8 Ribosomal RNA small subunit methyltransferase A 5.24567330848e-05 2.20134410198e-05 -12290330587.8 +UniRef50_X1R1D8 Marine sediment metagenome DNA, contig 2.7838324363e-05 3.38350365452e-05 2420946295.89 +UniRef50_UPI000372FCE9 hypothetical protein 4.38166925355e-06 6.64063069258e-05 25040107356.2 +UniRef50_UPI000428F92B chemotaxis protein CheR 0.000228015843763 0.00010140946232 -51112549823.5 +UniRef50_K2F9K7 0.000177972950428 0.000275730957517 39466107087.5 +UniRef50_M8DGK3 0.00323559419016 0.0148311731469 4.68127751857e+12 +UniRef50_C6WMT0 8.01439071958e-05 3.92897523446e-05 -16493323650.3 +UniRef50_B8ZR59 Ribonuclease PH 1.47781175576e-05 2.20404192462e-05 2931880310.15 +UniRef50_UPI000474B21F porin 0.00019725458607 4.71499843053e-05 -60599069723.1 +UniRef50_H9KFK6 1.02576622508e-06 2.4755441389e-06 585293134.585 +UniRef50_P23160 34.2 kDa protein in rubredoxin operon 0.000380167100671 0.00234258368332 7.92251655975e+11 +UniRef50_UPI00016C0EFE tagatose bisphosphate aldolase, partial 7.13004778866e-06 0.000202503536621 78874674943.8 +UniRef50_K7S7L1 Drug resistance MFS transporter, drug 0.000187176344854 0.00298870740571 1.13101246792e+12 +UniRef50_H1R8C9 0.00255930873442 0.00243563045475 -49930439205.9 +UniRef50_Q6A7W9 NAD kinase 0.000184740288181 0.00979345085327 3.87915436726e+12 +UniRef50_UPI000334035B PREDICTED 9.51943504312e-05 3.63412218712e-05 -23759730208.8 +UniRef50_UPI00036D6A4E hypothetical protein 0.000137196393215 1.01062626954e-05 -51307845262.2 +UniRef50_F0KFU5 5.3629395291e-06 0.00565326475231 2.28012726937e+12 +UniRef50_P59210 Regulatory protein RecX 0.00426187714962 0.00437926485832 47390858511.4 +UniRef50_Q9RX92 Single stranded DNA binding protein DdrA 0.000181193274649 0.0104170248907 4.1323308312e+12 +UniRef50_UPI00046E5527 DNA polymerase IV 3.05611113412e-06 6.18071952887e-06 1261442752.22 +UniRef50_UPI0004133718 phosphopantetheine adenylyltransferase 1.4494256663e-05 1.77881648403e-05 1329791151.97 +UniRef50_B3WF00 tRNA dimethylallyltransferase 5.36728692198e-06 7.34228059238e-06 797329180.638 +UniRef50_Q8CT65 0.014620603275 0.00701764692989 -3.06940677529e+12 +UniRef50_A6M077 Transcriptional regulator, MarR family 0.000291870609934 0.0022219020663 7.79177383086e+11 +UniRef50_Q5HL47 0.0105786317969 0.00361078024366 -2.8130071772e+12 +UniRef50_G2XMI1 Hypothetical_protein 1.76008782196e-05 3.94499770079e-05 8820749299.43 +UniRef50_U3QV92 N acetyl anhydromuranmyl L alanine amidase 0.00325920959562 0.00228375937235 -3.93801225254e+11 +UniRef50_Q46D36 2 cys peroxiredoxin, subunit A 0.000489184988913 0.000446322476372 -17304122295.0 +UniRef50_Q49WA8 0.00846796228654 0.000792220826285 -3.09879101945e+12 +UniRef50_P48924 NADH ubiquinone oxidoreductase chain 6 0.000156395330266 3.89457286124e-05 -47415845456.4 +UniRef50_P19765 Insertion element IS1 protein InsB 0.000385189784541 0.00244605755818 8.3199760991e+11 +UniRef50_P37329 Molybdate binding periplasmic protein 0.00513967355875 0.000707475113025 -1.78933290173e+12 +UniRef50_F3ZLD3 0.000182289081746 0.000206109014451 9616399136.45 +UniRef50_A5ULS6 Transcriptional activator 0.00489828015995 0.000873176457548 -1.62498375824e+12 +UniRef50_UPI000255E297 cobinamide adenolsyltransferase 5.78782405088e-05 0.00340786668262 1.35243144306e+12 +UniRef50_P11551 L fucose proton symporter 0.00149024098429 0.000516338772935 -3.93176273848e+11 +UniRef50_Q5XCB9 Putative NADH nitroreductase Spy0809 0.00580300403822 0.00648984392626 2.77285691275e+11 +UniRef50_A4SZM1 Glutamine tRNA ligase 0.000226669038139 0.000585261468638 1.44768164616e+11 +UniRef50_W6K439 5.12763621579e-05 1.12797752791e-05 -16147112936.3 +UniRef50_UPI000255A647 hypothetical protein 2.37212705831e-05 1.27675722166e-05 -4422142447.55 +UniRef50_M4ZGM6 PTS system, 3 keto L gulonate specific IIB component 0.000810348186513 0.000760472202226 -20135546903.8 +UniRef50_K0LCS5 Sulfite reductase alpha subunit 0.0248514044015 0.00449535662932 -8.21798628243e+12 +UniRef50_D9SQP8 YhhN family protein 0.000493600794051 0.000570031624348 30856064102.7 +UniRef50_UPI000255AA05 3 hydroxybutyrate dehydrogenase, partial 0.000220896778268 0.00032203874492 40832253088.9 +UniRef50_E2QLB6 C4 dicarboxylate binding periplasmicprote in 0.011406222281 0.00266474772113 -3.52904054978e+12 +UniRef50_Q2NGX7 0.00059291399331 0.000644327356797 20756205752.6 +UniRef50_D5RU63 7.8431940772e-06 6.52581587215e-05 23179125787.7 +UniRef50_D6M4D2 Nogalamycin resistance protein SnorO 3.51337358496e-06 3.89185400082e-05 14293500155.3 +UniRef50_A0A028PVV2 Lactate dehydrogenase 0.00246811448246 0.000379711036505 -8.43114098722e+11 +UniRef50_A6W2Y6 PfkB domain protein 0.00041177469548 0.000655510165066 98399000042.4 +UniRef50_UPI00037B582D hypothetical protein 0.00011168952412 8.69198172477e-05 -9999834622.83 +UniRef50_X5HEL8 Alkyl hydroperoxide reductase 0.000116398560529 0.000190635416028 29970329553.6 +UniRef50_Q03K00 ABC type multidrug transport system, permease component 0.00737999127257 0.000241074861385 -2.88206815955e+12 +UniRef50_O34512 0.000758252431427 0.00594254443063 2.09296229849e+12 +UniRef50_A6LQS2 Metal dependent phosphohydrolase 0.00198571452162 0.00260441625686 2.4977748284e+11 +UniRef50_UPI00036F122F hypothetical protein 5.31141996539e-05 7.61631486805e-06 -18368054409.9 +UniRef50_Q8GNZ1 Rep1 0.00492007061126 0.000843642587898 -1.64570401643e+12 +UniRef50_L1K8E5 0.00192960502688 1.07672354005e-05 -7.74658363208e+11 +UniRef50_Q3IVQ7 0.000109117967776 0.000249220233964 56561004108.2 +UniRef50_A0A009CML4 Surface protein G 0.00176237235561 0.00225190517071 1.97630404699e+11 +UniRef50_UPI0004560170 hypothetical protein PFL1_00672 9.84704557944e-05 3.53474105363e-05 -25483547977.6 +UniRef50_UPI0004736936 hypothetical protein, partial 1.37102730109e-05 5.42533653659e-05 16367743903.4 +UniRef50_X5HTN1 Biofilm synthesis protein 0.00010614802384 0.00423095276818 1.66523429234e+12 +UniRef50_Q1RGX4 Lipoyl synthase 0.00747414202997 0.000847949748779 -2.67507513644e+12 +UniRef50_I3YAK9 Proline iminopeptidase 0.000246144750781 0.000383793876199 55570641076.0 +UniRef50_Q2YV92 0.0129379010153 0.00264618521775 -4.15489196105e+12 +UniRef50_UPI00046D6590 hypothetical protein 0.000110403675481 1.59313951595e-05 -38139618871.0 +UniRef50_UPI000362AF2C hypothetical protein 3.64046394639e-05 2.6270241094e-05 -4091380984.98 +UniRef50_Q8DT23 S adenosylmethionine synthase 0.00619315117993 0.000941558918183 -2.12013224035e+12 +UniRef50_UPI0003ADBFFE PREDICTED 2.08720010393e-05 2.87353820168e-05 3174543395.15 +UniRef50_A4JKW7 Major facilitator superfamily MFS_1 0.00112910833939 0.000826114833423 -1.22322196507e+11 +UniRef50_W5VF97 ATPase 5.53455376421e-05 4.18394387606e-05 -5452577856.93 +UniRef50_B9AGK2 0.00642758079257 0.000453476387174 -2.41181925896e+12 +UniRef50_UPI0002488527 hypothetical protein 7.04413658293e-05 2.89464911362e-05 -16751990113.0 +UniRef50_Q5LLN2 Dephospho CoA kinase 0.00062158264181 0.000391147953907 -93029311258.0 +UniRef50_Q93Z70 Probable N acetyl gamma glutamyl phosphate reductase, chloroplastic 6.03080642009e-05 4.23970424209e-05 -7230899285.54 +UniRef50_Q1CV54 0.000516482740875 0.00205630799377 6.21646350376e+11 +UniRef50_S9U7T2 Solute carrier family 39 , member 1 2 3 2.6426198099e-05 0.000180793668234 62320041995.4 +UniRef50_UPI00039DF06E hypothetical protein 3.41279982195e-05 5.36642369426e-06 -11611400580.0 +UniRef50_UPI0002378355 cystathionine beta lyase 9.73673120119e-06 1.41385853007e-05 1777082516.8 +UniRef50_I6TQY3 Alpha beta hydrolase 0.00400829099202 0.0015111363497 -1.00813197264e+12 +UniRef50_F6CZ33 AsmA family protein 1.53678330736e-06 1.75217784758e-06 86957419.0751 +UniRef50_UPI0003A40D95 dehydrogenase 1.71183054011e-06 1.16303984539e-05 4004247581.31 +UniRef50_A6LT40 Phage integrase family protein 0.000176120990128 0.000923717368627 3.01813832039e+11 +UniRef50_A8F1C5 NADH quinone oxidoreductase subunit D 2.72989312928e-05 5.69265240448e-05 11961022765.4 +UniRef50_A3QJ60 3.65883834415e-05 1.73998254933e-05 -7746656313.77 +UniRef50_X2H5U3 0.000713033898912 0.00364424347889 1.18336527742e+12 +UniRef50_UPI000328E03F PREDICTED 0.00030773851109 0.000525595856749 87951683852.8 +UniRef50_A0A037ZQW3 Chromosome partitioning protein ParA 2.85452048409e-05 7.92152142789e-05 20456104601.1 +UniRef50_A9B2Q5 Aminomethyltransferase 2.09469785559e-05 2.16496345351e-05 283670841.362 +UniRef50_Q6GDH0 Carbamate kinase 2 0.0138025709526 0.00386581497156 -4.01159032725e+12 +UniRef50_A9CLS9 1.52410409167e-05 0.000729942624529 2.88533799679e+11 +UniRef50_Q59266 4 alpha glucanotransferase 0.000386332411414 0.00276906262183 9.61937425334e+11 +UniRef50_Q9CJS1 ATP dependent RNA helicase RhlB 0.00178983202047 0.000576320433583 -4.89909519089e+11 +UniRef50_A6M113 CheA signal transduction histidine kinase 0.000296146035164 0.00117233099005 3.53726618286e+11 +UniRef50_UPI000310CC9F C4 dicarboxylate ABC transporter 6.10350673584e-06 1.37205802685e-05 3075106057.14 +UniRef50_P77930 Bacterioferritin 0.00015322765884 0.0105728180323 4.20651649653e+12 +UniRef50_B9MJH4 Biotin synthase 0.0022712549375 0.0082576251672 2.41677112275e+12 +UniRef50_I0EIM7 Fucosyltransferase 0.000210757552288 0.0071965523592 2.82025108889e+12 +UniRef50_UPI0003B315F6 deoxyguanosinetriphosphate triphosphohydrolase 0.000117367724376 2.39213697482e-05 -37725440079.0 +UniRef50_Q0AM89 5.23807335475e-06 0.000517718723785 2.06894727423e+11 +UniRef50_Q9RWF7 UDP glucose 4 epimerase, putative 0.000216531159953 0.0320619284332 1.28563776662e+13 +UniRef50_UPI00036BC390 hypothetical protein 8.78125982316e-05 1.04066611986e-05 -31249726657.9 +UniRef50_B1KTG4 Glutamate racemase 0.000569646163234 0.00041545197336 -62250086627.6 +UniRef50_UPI00047ECB6C hypothetical protein 1.30435070366e-06 2.31000919179e-05 8799208191.99 +UniRef50_UPI0002377A5A flagellar basal body P ring protein, partial 7.53903847578e-05 4.63279600798e-05 -11732857478.6 +UniRef50_B3WF19 Phenylalanine tRNA ligase alpha subunit 0.025359766962 0.0147225722693 -4.2943660305e+12 +UniRef50_UPI000360FD43 hypothetical protein 4.63865287782e-06 6.76460391419e-05 25436855022.4 +UniRef50_B1J595 Hydrolase, alpha beta fold family 0.000136935667056 0.000860222715458 2.9199985717e+11 +UniRef50_UPI00046E9EAA peptide ABC transporter permease 4.36104846346e-05 5.07013831364e-05 2862682740.29 +UniRef50_A5UJB4 Putative transposase 0.0211444271328 0.00296404468402 -7.33964349296e+12 +UniRef50_Q57N58 6.53488926519e-05 0.000542894065856 1.92790846561e+11 +UniRef50_UPI0002B4C28A PREDICTED 9.24170305512e-06 4.36142557167e-05 13876621308.1 +UniRef50_UPI0003A5EC9D hypothetical protein 0.00024649387294 0.000297798358178 20712250267.4 +UniRef50_UPI000418F39C glycosyl transferase 1.58039777767e-05 1.40363762127e-05 -713602442.297 +UniRef50_S3ANI4 0.000104810425869 3.93087257461e-05 -26443840135.9 +UniRef50_B9KTI2 0.000360328859787 0.00035873433672 -643728529.146 +UniRef50_UPI00045D9861 PREDICTED 5.27446951194e-06 0.000159304303971 62183734329.7 +UniRef50_UPI00022CAA7D PREDICTED 0.0028929446423 0.000786007976872 -8.50596186854e+11 +UniRef50_UPI000288AA6A riboflavin synthase subunit alpha 1.80391184681e-05 1.52491920597e-05 -1126327527.32 +UniRef50_A6LTI2 Signal transduction histidine kinase regulating citrate malate metabolism 0.0008909823002 0.00140950392552 2.09333543118e+11 +UniRef50_C5N6M7 0.0102905817507 0.00023815863322 -4.05828656964e+12 +UniRef50_W6VNR8 6.00241511792e-05 0.000135229329591 30361253396.2 +UniRef50_Q6YTQ3 0.000327240139295 0.000422529031195 38469294986.2 +UniRef50_UPI0003B3015D DNA directed RNA polymerase subunit alpha, partial 5.18412173225e-06 1.10923936579e-05 2385241879.03 +UniRef50_D3QGV6 0.0121287276709 0.00523999172167 -2.781067237e+12 +UniRef50_U3QX72 GntR family transcriptional regulator 0.00128197014836 0.00332626120494 8.25305385814e+11 +UniRef50_A5UKM5 6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB 0.00277479063826 0.000501161660873 -9.17891918737e+11 +UniRef50_UPI00034DE84F ABC transporter permease 2.12250811283e-05 0.000122659462902 40950304662.0 +UniRef50_UPI00046C9569 hypothetical protein 1.10739205926e-05 6.43258338839e-05 21498450870.2 +UniRef50_W9GJ85 Transcriptional regulator 3.65539529709e-06 1.20840586725e-05 3402754835.98 +UniRef50_X8FK87 binding domain protein 0.0165654163339 0.00339189547824 -5.31831202673e+12 +UniRef50_I6TYV1 Phage associated cell wall hydrolase 0.00100662930361 0.00217936040507 4.73445936688e+11 +UniRef50_UPI000471FDE5 membrane protein 1.9463527258e-05 5.19044610804e-05 13096803079.1 +UniRef50_A8B5Y9 0.000113809673637 0.000619356268256 2.04095364002e+11 +UniRef50_J8PEK3 2.19262028083e-05 3.37538434873e-05 4774963683.58 +UniRef50_Q72PJ7 2 oxoglutarate dehydrogenase E1 component 2.02471641175e-06 8.40877917307e-06 2577324478.0 +UniRef50_A3JLI9 1.50135827591e-05 9.89688039901e-06 -2065675531.77 +UniRef50_UPI00031F6CF4 hypothetical protein 0.000408761562644 0.000414494370311 2314404804.63 +UniRef50_D0K9Z2 Glycosyltransferase stabilizing protein Gtf2 0.0129972223263 0.00145299990964 -4.66054425316e+12 +UniRef50_UPI00046D6398 hypothetical protein 4.10090065992e-06 0.000303905032514 1.2103460704e+11 +UniRef50_K8CED6 9.08829735005e-05 0.000129558264083 15613689407.3 +UniRef50_B9XI35 2.9033758e-05 8.91693641059e-05 24277482131.8 +UniRef50_P21824 Chemotaxis protein methyltransferase 0.00189724813346 0.000449606032923 -5.84430880554e+11 +UniRef50_A7FAU8 0.000290190797016 0.0150241883261 5.94829560898e+12 +UniRef50_N3H3N3 ThiC associated domain protein 1.52762855114e-05 4.42498746558e-05 11696993483.5 +UniRef50_UPI0003B6CE6C gas vesicle protein GvpS 0.000323921906157 0.000169837366082 -62205819658.2 +UniRef50_G7M8E0 Cell wall binding repeat containing protein 0.000120090982672 0.00257760363653 9.92128015435e+11 +UniRef50_O83041 Probable proline iminopeptidase 6.82716177001e-06 9.7607547662e-06 1184327491.8 +UniRef50_Q1WV02 UPF0374 protein LSL_0370 0.0279453443087 0.0136773593566 -5.76016061303e+12 +UniRef50_F6ZMA7 3.88236068703e-05 2.85875158438e-06 -14519453417.3 +UniRef50_P57245 Carbamoyl phosphate synthase small chain 1.58984129822e-05 7.45422905407e-06 -3409020673.58 +UniRef50_A6LX23 0.000399223967155 0.000946555515946 2.2096446276e+11 +UniRef50_A1SUY3 6.77320649985e-05 2.75808413104e-05 -16209541713.8 +UniRef50_U3SUB6 0.00407202725424 0.00291456954692 -4.67279880048e+11 +UniRef50_P42200 L cystine transport system permease protein TcyB 0.000377719071698 0.00483140027771 1.79800575568e+12 +UniRef50_Q9RZU0 0.000109185943826 0.0216774639779 8.7073785149e+12 +UniRef50_D6KCK7 Lanthionine synthetase C family protein 9.62390193955e-05 2.24371751724e-05 -29794710163.3 +UniRef50_D3E1H3 Divalent cation transporter mgtE family 0.00180286151255 0.000285790545738 -6.12460165855e+11 +UniRef50_B8EJS2 Anthranilate phosphoribosyltransferase 3.69532075839e-05 4.00965810729e-05 1269018451.04 +UniRef50_UPI0002EDD593 membrane protein 5.81372995094e-05 6.18185279727e-05 1486157104.39 +UniRef50_P43753 Formate acetyltransferase 0.030702288119 0.0154114090334 -6.17311552704e+12 +UniRef50_UPI0003814F39 hypothetical protein 4.77319666649e-05 3.50155416498e-05 -5133776826.68 +UniRef50_UPI00035C39A9 hypothetical protein 8.64418114397e-06 7.13446540004e-06 -609490772.12 +UniRef50_UPI000475BF33 hypothetical protein 4.36700753542e-06 0.000442598774154 1.76919541893e+11 +UniRef50_R9ITT5 1.21775341979e-05 1.42136629461e-05 822010161.758 +UniRef50_A0A024HN09 Penicillin binding protein 1B 0.000962363216191 0.00049772736482 -1.87579194922e+11 +UniRef50_U9T899 1.7167914455e-05 8.79821426313e-06 -3378950675.23 +UniRef50_UPI000380512A hypothetical protein 2.79341834759e-05 0.000255194101028 91747617508.5 +UniRef50_Q836J8 ATP dependent helicase nuclease subunit A 3.13649038461e-06 0.000481556224736 1.93143917628e+11 +UniRef50_Q5QCP2 Carboxynorspermidine carboxyspermidine decarboxylase 0.00705619208358 0.00118773769061 -2.36916705248e+12 +UniRef50_Q16DV7 1 deoxy D xylulose 5 phosphate synthase 1 1.95896258298e-05 0.000119595938992 40373775839.0 +UniRef50_UPI000473F09C cysteine protease 1.37611633391e-05 5.57633312206e-05 16956790598.3 +UniRef50_D3P107 2.28877284981e-05 9.02665948431e-05 27201675175.1 +UniRef50_G0AJ01 ABC sugar transporter, periplasmic ligand binding protein 0.0126935665188 0.00114034642715 -4.66417672493e+12 +UniRef50_UPI00036BD086 hypothetical protein 8.66196423334e-06 1.71672713135e-05 3433696840.12 +UniRef50_F0Y3C6 Expressed protein 0.000160449628038 7.57320676271e-05 -34201518739.3 +UniRef50_D3P109 7.74936426106e-06 4.64695372295e-06 -1252481205.09 +UniRef50_C1CJ99 Peptidase, M42 0.000179186387112 0.00188632002173 6.89190797182e+11 +UniRef50_Q8TLL3 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.54956647602e-05 2.89867875495e-05 1409409110.93 +UniRef50_UPI00047E3B33 2 oxoglutarate dehydrogenase 1.05842871818e-05 6.85388304935e-05 23396960317.2 +UniRef50_P14491 Protein rlx 0.193994034719 0.0453697194461 -6.00014599012e+13 +UniRef50_E5ZTR3 0.000101519317952 0.000236772196986 54603247005.5 +UniRef50_G8B0S1 1.2368060353e-05 9.39003832077e-05 32915599250.6 +UniRef50_UPI0003B334FD LuxR family transcriptional regulator 1.43104383281e-05 2.41046885439e-05 3954059001.08 +UniRef50_K7UNI1 8.21831450481e-06 0.000125240809525 47243417267.1 +UniRef50_P57037 Capsule polysaccharide modification protein LipA 0.000223964603593 0.00356728363485 1.34973892006e+12 +UniRef50_V4QFM6 0.000131330517835 9.69176033959e-05 -13892915853.0 +UniRef50_G2SD77 Type F conjugative transfer system protein TraW 5.81565079104e-05 2.84427826033e-05 -11995795534.9 +UniRef50_P52130 Antitoxin RnlB 0.00438979878167 0.00048018976455 -1.57835713651e+12 +UniRef50_E3Z582 Integral membrane protein 2.32179649734e-05 0.00131187240275 5.202456101e+11 +UniRef50_E4HNQ2 4.63086551023e-05 0.000283805413828 95880355910.6 +UniRef50_F7XC63 0.000438862815601 0.000133054478835 -1.23458578243e+11 +UniRef50_A1TWP1 Anhydrase, family 3 protein 0.000485100856535 0.00249717943892 8.12300814692e+11 +UniRef50_I6D3Q6 Oxoglutarate dehydrogenase , E1 component 0.00345066856066 0.00116842567521 -9.21369459126e+11 +UniRef50_Q94BZ7-2 Isoform 2 of DNA gyrase subunit B, mitochondrial 9.79376845456e-06 3.38140307567e-05 9697274653.12 +UniRef50_P37610 Alpha ketoglutarate dependent taurine dioxygenase 0.0017380835065 0.000942071004454 -3.21360015248e+11 +UniRef50_F0XVZ5 Expressed protein 4.1307838305e-05 0.000138424177799 39207058005.2 +UniRef50_P0A9K5 PhoH like protein 0.00361015603306 0.00189845962736 -6.91032843858e+11 +UniRef50_U5MRD5 D galactose binding periplasmic protein MglB 0.000116388280223 0.000969855922107 3.44555360254e+11 +UniRef50_UPI0004639C8D multidrug ABC transporter permease 2.94148386332e-06 3.88700483259e-06 381718418.141 +UniRef50_Q88WU9 Threonine tRNA ligase 3.10274753793e-05 0.00179602659548 7.12551803759e+11 +UniRef50_Q9ZLX3 DNA gyrase subunit B 0.000125133342931 0.00352216962688 1.37142523415e+12 +UniRef50_M4XCL5 2.57325968572e-06 1.63019691513e-05 5542448481.47 +UniRef50_P39265 D allose binding periplasmic protein 0.00126748101067 0.000193650298495 -4.33518635888e+11 +UniRef50_A5UJ66 0.00118905159156 0.000431119277652 -3.05986576e+11 +UniRef50_UPI0003104B05 hypothetical protein 3.59121761313e-06 1.33047730482e-05 3921481527.87 +UniRef50_UPI0004737FFB isopropylmalate isomerase 1.12639821229e-05 1.44764736336e-05 1296922244.57 +UniRef50_UPI0002887E27 anthranilate synthase, component I, partial 1.66405034582e-05 2.29963521739e-05 2565934121.56 +UniRef50_A5WAN0 NLPA lipoprotein 0.000105648400768 7.1671295179e-05 -13716974472.3 +UniRef50_B5FMP4 Leucine tRNA ligase 0.00241208025941 0.00158790738918 -3.3272870145e+11 +UniRef50_F2M7N9 ABC superfamily ATP binding cassette transporter, ABC protein 0.00501262118706 0.000917654983631 -1.65318810721e+12 +UniRef50_G2LWG0 0.000408883706435 0.000156706112424 -1.01807189269e+11 +UniRef50_O31775 0.0191488436664 0.00382816013928 -6.18514794582e+12 +UniRef50_A2SNG4 1.29227855339e-05 1.13480370444e-05 -635745289.548 +UniRef50_Q8XDS6 Leucine efflux protein 0.00102621383002 0.00128398567476 1.04065656938e+11 +UniRef50_Q3J1F1 Phage terminase like protein large subunit 0.00780230296138 0.00114454123784 -2.68782010772e+12 +UniRef50_W5XGS0 UDP N acetylmuramoylalanine D glutamate ligase 2.17399221928e-06 1.43984399271e-05 4935159550.48 +UniRef50_Q1LRP7 Formamidopyrimidine DNA glycosylase 7.12375770943e-06 4.10657510696e-05 13702799234.6 +UniRef50_F0PKX1 Membrane associated protein 1.32998842636e-05 0.000509982610938 2.00516911741e+11 +UniRef50_UPI0004244D92 xanthine phosphoribosyltransferase 3.78715192325e-05 3.06887839422e-05 -2899758378.77 +UniRef50_A5HZF5 Sensor histidine kinase 0.00159144090862 0.00103560365961 -2.24398318315e+11 +UniRef50_Q01FQ9 WGS project CAID00000000 data, contig chromosome 01 7.48960553722e-06 6.2435764138e-06 -503037247.621 +UniRef50_G9W9E3 Diaminopimelate decarboxylase 0.000333303811472 0.000122972472728 -84913342506.7 +UniRef50_Q8DT21 0.000490241543964 0.00150949085114 4.11483452904e+11 +UniRef50_Q8DT20 0.00442723723792 0.0018039286078 -1.0590618856e+12 +UniRef50_A1WSR7 CreA family protein 0.00260310776707 3.11183114643e-05 -1.03834370509e+12 +UniRef50_D8LC87 3.3244050419e-05 3.20462940479e-05 -483548945.137 +UniRef50_Q72IE1 Ribonuclease H 4.07404402175e-05 3.02410999533e-05 -4238712506.05 +UniRef50_Q5KQI9 5.94931688289e-05 0.000386034908756 1.31828907526e+11 +UniRef50_A6LSZ1 Lipase 0.000527614665002 0.00221871312068 6.8271719867e+11 +UniRef50_I6RV19 Adenylosuccinate lyase 0.000226832352982 0.00044219475427 86944444193.8 +UniRef50_Q8VL04 Arginine repressor 2.14006765161e-05 0.000396398262003 1.51391126999e+11 +UniRef50_UPI00036D83C9 hypothetical protein 5.47412039057e-06 8.49992065332e-06 1221552696.82 +UniRef50_B2SA42 NAD NADP dependent betaine aldehyde dehydrogenase 4.0263901237e-05 6.5644247897e-06 -13604892180.9 +UniRef50_UPI00047CA754 hypothetical protein 4.23346816562e-05 0.000183504730729 56992081162.1 +UniRef50_UPI0002003A7E exodeoxyribonuclease III, partial 7.03515961127e-05 6.65964878657e-05 -1515983279.67 +UniRef50_UPI0001D560FB PREDICTED 7.34371493647e-05 3.96335350986e-05 -13646933896.2 +UniRef50_D3QFS6 0.0104148996637 0.00243224638237 -3.22269508784e+12 +UniRef50_UPI00037E9BF3 hypothetical protein 3.71102096765e-05 3.68407738452e-05 -108774551.445 +UniRef50_O26329 Cobalt precorrin 8X methylmutase 0.00506235893435 0.000301343576728 -1.9220803241e+12 +UniRef50_P76213 Excinuclease cho 0.00196527045627 0.00162953304588 -1.35541312536e+11 +UniRef50_Q03174 Fructan beta fructosidase 0.0061342964015 0.00194866052745 -1.68979256588e+12 +UniRef50_R7PXR3 0.00358171861704 0.00136139602135 -8.96371478302e+11 +UniRef50_Q8YGU6 3 dehydroquinate dehydratase 6.19112518197e-05 0.000117787826595 22558058919.5 +UniRef50_K4Q9M3 Ferrous iron transport protein B 0.00596298712912 0.00131439973706 -1.87669177476e+12 +UniRef50_D4HCC8 ABC transporter, permease protein 0.000324392471557 0.00890145303037 3.46266459996e+12 +UniRef50_X1J4V9 Marine sediment metagenome DNA, contig 5.81175182093e-05 3.26691313139e-05 -10273826076.5 +UniRef50_U5MVM4 Chaperone protein HtpG 0.000515259560648 0.00130488949875 3.18783295861e+11 +UniRef50_B1I4W9 Ribonuclease PH 3.10161000316e-05 0.00101958630973 3.99097924776e+11 +UniRef50_UPI000304D965 hypothetical protein 2.48133905781e-06 3.33315491985e-05 12454608408.5 +UniRef50_J3ABJ4 Conjugative relaxase domain protein, TrwC TraI family 1.13589389611e-05 7.88486252553e-06 -1402527288.75 +UniRef50_M5ABW2 0.000165839576067 0.000629588728662 1.87221223745e+11 +UniRef50_D0IXW2 Transposase, IS4 3.64918164744e-06 1.12001391191e-05 3048414191.98 +UniRef50_K2BFW3 9.6510748687e-05 2.2892470022e-05 -29720602494.9 +UniRef50_G2LBA7 0.00020713362391 0.00015099223637 -22664967082.2 +UniRef50_A7GEL0 3 dehydroquinate dehydratase 1.1802211785e-05 2.0238471131e-05 3405821422.52 +UniRef50_Q8CU45 0.0104735315487 0.00396233141951 -2.62865139356e+12 +UniRef50_Q8CU48 0.0080355450717 0.00680648958456 -4.96184782365e+11 +UniRef50_UPI00035CC3C8 50S ribosomal protein L18 3.2725783488e-05 0.000532975325771 2.01956878972e+11 +UniRef50_K2HP40 Protein translocase subunit SecA 0.0108639833735 0.00193586160445 -3.60439231854e+12 +UniRef50_X6L0R0 8.16920778663e-06 5.35598792837e-06 -1135731378.87 +UniRef50_A4IKU2 Foldase protein PrsA 8.2965843938e-06 2.14245869219e-05 5299935719.3 +UniRef50_R5KA87 MATE efflux family protein 0.00274929033615 0.000446691940694 -9.29587228307e+11 +UniRef50_UPI0003B582E0 membrane protein 3.93810956675e-06 1.12759346499e-05 2962370031.31 +UniRef50_C7ZUY2 Tagatose 6 phosphate kinase 0.0260498346865 0.00750557279323 -7.48654609001e+12 +UniRef50_K2J2X7 Cation transport protein ChaC 6.45946342661e-06 5.69499032583e-06 -308627171.925 +UniRef50_P9WNP4 1,4 Dihydroxy 2 naphthoyl CoA synthase 2.73734026912e-05 0.0081086042199 3.26249204876e+12 +UniRef50_V0ULY3 0.00039953100943 0.000162493155004 -95695090613.3 +UniRef50_A3PR66 NADH dehydrogenase (Quinone) 0.0127156575828 0.00336642233364 -3.7744009981e+12 +UniRef50_R1DJN2 2.70997668162e-05 6.93501211852e-05 17056986528.9 +UniRef50_B9KJM8 3.82023528416e-05 2.76579304526e-05 -4256912713.05 +UniRef50_A1KWK7 Possible lipoprotein 0.000129571849717 0.0031414493173 1.21593189355e+12 +UniRef50_A6W6A1 Hydroxyethylthiazole kinase 7.81795534889e-06 1.07767911699e-05 1194518329.94 +UniRef50_A6UXC5 Membrane protein, putative 0.000715123188949 0.00073149716971 6610376964.55 +UniRef50_V7HHQ1 0.000483358068422 0.000220296783714 -1.06201068762e+11 +UniRef50_Q3JSI8 Ribose import ATP binding protein RbsA 1 0.000172176607797 5.26878863908e-05 -48239063123.1 +UniRef50_UPI00035C22D6 hypothetical protein 0.000129778803965 4.90030295935e-06 -50414983287.7 +UniRef50_W0HY15 8.09072793881e-05 2.94860052545e-05 -20759399377.7 +UniRef50_UPI000475A254 4 amino 4 deoxychorismate lyase 0.00012278209941 2.82481540343e-05 -38164513810.1 +UniRef50_K0X9S8 Type VI secretion associated protein 0.000621917636126 2.49584740632e-05 -2.40999739238e+11 +UniRef50_P40398 0.0236617015915 0.0078336192163 -6.38999108728e+12 +UniRef50_B6WBV7 Glyoxalase family protein 2.81565270229e-05 7.78883931307e-05 20077364626.3 +UniRef50_UPI00047137A9 coproporphyrinogen III oxidase 7.5367803025e-05 3.42960206831e-05 -16581182538.9 +UniRef50_G7M0V7 ASCH domain protein 1.01226729668e-05 1.69421997442e-05 2753126645.04 +UniRef50_UPI00047D052E iron ABC transporter substrate binding protein 4.45482243358e-05 2.17091927089e-05 -9220397334.21 +UniRef50_P9WPZ4 Probable N succinyldiaminopimelate aminotransferase DapC 7.0698901606e-06 0.000151766774095 58415907674.6 +UniRef50_P0A067 Signal peptidase IB 0.0181248449529 0.00707748024904 -4.45995669737e+12 +UniRef50_UPI000302F3DC hypothetical protein 2.61200308852e-06 9.93558413979e-07 -653385975.661 +UniRef50_UPI0004690173 type II and III secretion system protein, partial 8.91416981359e-06 7.57161526496e-06 -542005746.279 +UniRef50_H2JSU9 5.83209830705e-05 0.000504082775762 1.79959505822e+11 +UniRef50_UPI000383150A hypothetical protein 3.72025928229e-05 1.24063564805e-05 -10010544895.5 +UniRef50_R5XYV5 Aspartate tRNA ligase 0.000384309536152 0.000138972567152 -99045545008.5 +UniRef50_A5FY40 Nucleoside diphosphate kinase 0.000182671429973 0.000193760958431 4476978722.31 +UniRef50_P26993 Exoenzyme S synthesis regulatory protein ExsA 0.000145560149942 0.000355090226682 84589863203.1 +UniRef50_A3PHN8 Signal transduction histidine kinase 0.0143952576317 0.0014540326391 -5.2245313362e+12 +UniRef50_Q7PY41 Adenylyltransferase and sulfurtransferase MOCS3 9.53041672471e-06 8.0033163949e-06 -616509142.773 +UniRef50_A4WTQ7 NnrU family protein 0.0254524113493 0.00266548158841 -9.19936317155e+12 +UniRef50_D3E0A9 DNA polymerase 0.00376015445116 0.000580872951704 -1.2835149555e+12 +UniRef50_Q05619 Butyrate kinase 0.000845335380761 0.00230818149184 5.90568926183e+11 +UniRef50_W5X3P1 Holliday junction ATP dependent DNA helicase RuvA 7.34662771348e-06 0.000168125883006 64908558345.1 +UniRef50_UPI0004038030 sugar ABC transporter ATP binding protein 3.73091814994e-05 2.61353494832e-05 -4511013103.28 +UniRef50_Q8CPX4 Phosphoglycerate mutase 0.0152768451828 0.0016669708524 -5.49447327912e+12 +UniRef50_UPI0003B52C1D tRNA uridine 5 carboxymethylaminomethyl modification protein 1.68455706115e-05 1.20961306819e-05 -1917407181.76 +UniRef50_K0CF00 Ferric mycobactin receptor, FemA 0.000606311937618 8.75012459849e-05 -2.09450242735e+11 +UniRef50_UPI0003654A4C hypothetical protein 0.000374145246884 0.000128278786 -99259307379.6 +UniRef50_Q5LYY8 Galactose 1 phosphate uridylyltransferase 0.00517479552004 0.00881808031446 1.47083877964e+12 +UniRef50_C6A075 DNA helicase, UvrD REP family 0.00236831830568 0.000760621310767 -6.49047005506e+11 +UniRef50_Q81M98 Acetylornithine aminotransferase 4.06626404797e-06 0.00091283878551 3.66882618807e+11 +UniRef50_Q8XQ83 Chemotaxis response regulator protein glutamate methylesterase 8.03333364862e-05 8.23309473356e-06 -29107752365.0 +UniRef50_B7GSK0 0.00059150412716 0.00172018267431 4.55661379928e+11 +UniRef50_UPI0004671C29 calcium ABC transporter ATPase 1.34250215937e-05 1.57002208293e-05 918525851.246 +UniRef50_A5A3S4 BcepGomrgp35 1.08094921896e-05 2.38600744388e-05 5268680202.66 +UniRef50_Y8DMX3 0.000161730008049 4.21103378182e-05 -48291928770.7 +UniRef50_UPI0002895DAD glycerophosphoryl diester phosphodiesterase 1.63317333239e-05 1.02923598306e-05 -2438169190.69 +UniRef50_A4W7D6 D galactonate dehydratase family member Ent638_0932 0.000345020568046 0.00225333512853 7.70410005719e+11 +UniRef50_T1YBI3 Extracellular matrix binding protein 0.00162839315222 0.00019105478436 -5.8027113723e+11 +UniRef50_Q2NHG2 DNA polymerase II large subunit 0.00388700893854 0.00106173021251 -1.14059969177e+12 +UniRef50_UPI0004791B8E 2 oxoisovalerate dehydrogenase 3.15312443683e-06 4.6811220069e-05 17625308951.8 +UniRef50_UPI00047249EC 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 3.17988941838e-05 8.59485268887e-06 -9367756297.1 +UniRef50_UPI00047E8CB8 hypothetical protein 1.33179409435e-05 0.000785826998294 3.11871386204e+11 +UniRef50_K7SIX4 PTS system, mannitol specific IIC component 6.02371258787e-05 0.00520490517464 2.07696562346e+12 +UniRef50_UPI000369E93F hypothetical protein 7.29149146068e-06 1.01214992477e-05 1142508871.72 +UniRef50_Q47537 Taurine binding periplasmic protein 0.00280711000335 0.00108023711531 -6.97159776015e+11 +UniRef50_A6LYI5 Metal dependent phosphohydrolase 0.000350774526433 0.000767300735797 1.68156742072e+11 +UniRef50_J0NDK0 Toxin antitoxin system, antitoxin component, HicB family 6.39025503368e-05 0.000214205712327 60679230922.6 +UniRef50_UPI000381C2B6 hypothetical protein 8.56101381368e-05 0.000132455661573 18912112670.4 +UniRef50_K0R8M8 3.01695949833e-05 8.72962515337e-05 23062732272.3 +UniRef50_M4XJN9 Acyl CoA dehydrogenase 0.000307107386331 0.000311679899937 1845979853.79 +UniRef50_A6M3C8 Phage integrase family protein 0.000452983186623 0.00290655584421 9.90537390591e+11 +UniRef50_UPI000468A0F6 zinc ABC transporter ATPase 5.07311131702e-06 3.58924417493e-06 -599055374.359 +UniRef50_M9VF55 0.000330162672461 0.00612323445631 2.33873416813e+12 +UniRef50_UPI0003F904B8 hypothetical protein 3.26907560195e-05 0.000100927875483 27548162491.0 +UniRef50_Q57CX9 Uridylate kinase 1.70263504483e-05 1.61839524629e-05 -340086404.092 +UniRef50_Q52742 0.000236523384216 3.77930830775e-05 -80229861264.8 +UniRef50_UPI0004411EC4 hypothetical protein AURDEDRAFT_182094 5.16598407029e-05 3.72318586984e-05 -5824753386.47 +UniRef50_F3SY37 Transcriptional regulator, AraC family 0.0102771998338 0.00433906243324 -2.39729893775e+12 +UniRef50_Q6GGT1 Elastin binding protein EbpS 0.00746992168598 0.0017701374524 -2.30107283931e+12 +UniRef50_F0P4S1 Transcriptional regulator, GntR family 0.0168111571508 0.00590157569716 -4.40433190844e+12 +UniRef50_D8HFV1 0.0202642239977 0.00685450978975 -5.41366618147e+12 +UniRef50_UPI000471A03D hypothetical protein 1.0073116357e-05 1.15510014827e-05 596640360.935 +UniRef50_B8A150 9.60040598365e-05 0.000476372572497 1.53559436207e+11 +UniRef50_UPI0004576376 PREDICTED 5.01957489891e-05 1.13855953581e-05 -15668135275.0 +UniRef50_R4K5C7 Arabinose efflux permease family protein 0.000630353699287 0.00244473203256 7.32486798067e+11 +UniRef50_O41971 1.57006288586e-05 1.64291530845e-05 294114169.993 +UniRef50_UPI000475E8C5 hypothetical protein 4.23475347031e-05 0.000461799092111 1.69337740975e+11 +UniRef50_F0YD72 0.000170471384753 0.000376106522305 83017428456.6 +UniRef50_W1JYG5 Transcriptional regulator 0.000800101425473 0.00136510320554 2.28098151965e+11 +UniRef50_Q5HRK4 Elongation factor Tu 0.0140244499828 0.00370254022403 -4.1670816337e+12 +UniRef50_U6EDF1 Probable cyclic pyranopterin monophosphate synthase accessory protein 0.00322063940795 0.00106740977781 -8.69285224786e+11 +UniRef50_UPI00016C47EA nuclease PIN 6.094417447e-06 2.82738813168e-05 8954121736.87 +UniRef50_U5NMR3 0.00615862530681 0.000868578544689 -2.13565679404e+12 +UniRef50_I0C1G6 0.018000991922 0.00240554514446 -6.29607324173e+12 +UniRef50_B2THX3 3D G5 domain protein 0.000289273011926 0.000912951073309 2.51786486771e+11 +UniRef50_Q6MIP7 Phosphonates import ATP binding protein PhnC 4.04715213242e-05 1.39436345294e-05 -10709633432.8 +UniRef50_UPI0003B485D5 AsnC family transcriptional regulator 0.000122279548856 4.06057027078e-05 -32972733940.8 +UniRef50_K9W5R6 HI0933 family protein 0.000116448682564 0.000303099174468 75353094040.7 +UniRef50_Q2FF06 Putative aldehyde dehydrogenase SAUSA300_2076 0.0119496933678 0.00209525434317 -3.97835796181e+12 +UniRef50_W5W167 Putative membrane protein 0.000467776325828 0.000626101212682 63917699687.8 +UniRef50_I0IAE1 0.000104698002146 1.72497540489e-05 -35303930867.5 +UniRef50_A6M1H4 Sodium 0.00011796437152 0.00206449640376 7.85838868049e+11 +UniRef50_Q6ABT4 0.00112124551144 0.00233144767259 4.88573463307e+11 +UniRef50_H2JLK0 Putative zinc binding oxidoreductase 0.000103901761154 0.000112524502528 3481106505.62 +UniRef50_V9AUV8 1.67824685474e-05 1.08336337115e-05 -2401617623.67 +UniRef50_F8XNS8 ppGpp synthetase I SpoT RelA (Fragment) 9.7525589773e-06 2.63067531004e-05 6683131310.3 +UniRef50_Q9I3X3 0.000831618249846 0.000307621567909 -2.1154389066e+11 +UniRef50_G7U7F2 Pyridine nucleotide disulfide oxidoreductase 0.000197228714886 0.00612385898276 2.39265336707e+12 +UniRef50_UPI000472306F adenylate kinase 8.45010770009e-06 6.22807847248e-05 21732104891.6 +UniRef50_UPI000477F500 alanine glycine permease, partial 4.1514734763e-05 0.00377300648726 1.50644901104e+12 +UniRef50_A5E8I8 Non canonical purine NTP pyrophosphatase 0.000204605908547 3.19302892282e-05 -69711266487.2 +UniRef50_Q9I6V7 Chemotaxis protein methyltransferase 2 6.11076867238e-05 4.62758162454e-05 -5987808119.65 +UniRef50_Q04789 Acetolactate synthase 0.0280988059447 0.0147439016901 -5.39153873069e+12 +UniRef50_Q1LCM1 0.0188709243964 0.00425903358193 -5.89899962988e+12 +UniRef50_UPI00035F8C60 hypothetical protein 5.63043533032e-06 5.74798300673e-05 20932236918.9 +UniRef50_B9KSL8 Efflux transporter, RND family, MFP subunit 0.00261474490436 0.000879803240378 -7.00417239877e+11 +UniRef50_W9B9V7 Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome 0.000235826686109 8.94250962646e-05 -59104118369.6 +UniRef50_UPI0004234081 excinuclease ABC subunit A 6.86939916803e-06 1.68460854083e-05 4027710662.9 +UniRef50_UPI00035EC56E hypothetical protein 1.96120532652e-05 1.90709946493e-05 -218432002.775 +UniRef50_A6V0D0 5.16362877968e-05 0.00916138720528 3.6777182346e+12 +UniRef50_Y6JBS8 0.000217746730244 6.43944201019e-05 -61910209448.8 +UniRef50_M8I708 Signal transduction histidine kinase 0.000202586398316 0.00443433465256 1.70840869963e+12 +UniRef50_R5WAI2 Exodeoxyribonuclease V gamma subunit 0.00314601428688 0.000842847380391 -9.29816743186e+11 +UniRef50_C5Y406 0.000125327380181 9.1361242894e-05 -13712546434.1 +UniRef50_C7ZW47 Membrane protein 0.0159088723835 0.00463342187787 -4.55203773445e+12 +UniRef50_Q4L4Y7 Coenzyme A disulfide reductase 0.00961601020177 0.00245570663477 -2.8907024168e+12 +UniRef50_B1MYD1 3 phosphoshikimate 1 carboxyvinyltransferase 4.47834828864e-06 7.6036089436e-06 1261706077.67 +UniRef50_Q9RTK2 Diaminopimelate decarboxylase 6.33840722591e-06 0.00662673698177 2.67273614597e+12 +UniRef50_B9L5V9 3 dehydroquinate dehydratase 1.1717218142e-05 5.47666818152e-05 17379596761.2 +UniRef50_P40740 Aryl phospho beta D glucosidase BglH 0.000231027788867 0.00224497348862 8.13054592882e+11 +UniRef50_P0A543 Aspartate semialdehyde dehydrogenase 2.87552817617e-05 0.00566387025243 2.2749650643e+12 +UniRef50_Q6AB89 Isoleucine tRNA ligase 6.12395642737e-05 0.00400819803301 1.59343556846e+12 +UniRef50_X1H4N6 Marine sediment metagenome DNA, contig 1.58096863954e-05 5.85433118815e-05 17252089009.3 +UniRef50_Q28K40 Amino acid amide ABC transporter membrane protein 2, HAAT family 0.0101244549727 0.00313125511961 -2.8232405969e+12 +UniRef50_P37466 Protein Veg 0.00194680700336 0.000678888977457 -5.1187406616e+11 +UniRef50_A6LXW3 ApbE family lipoprotein 0.000157067679132 0.00326002812986 1.25270321157e+12 +UniRef50_Q6GGI4 UPF0403 protein SAR1592 0.0331693382658 0.0187582942078 -5.81791532961e+12 +UniRef50_Q6FB03 0.000359016199141 0.00555074961453 2.09596648953e+12 +UniRef50_E0SM47 D alanine aminotransferase 0.0171884753556 0.00268454218103 -5.85541580586e+12 +UniRef50_V8R541 Restriction endonuclease 0.000311114825983 0.0003565191612 18330287301.0 +UniRef50_Q6FB06 8.04349092798e-05 0.000958204459656 3.5436633893e+11 +UniRef50_P75712 Putative allantoin permease 0.00321904121788 0.000151444464203 -1.23842645311e+12 +UniRef50_UPI000478D97F sugar ABC transporter substrate binding protein 5.31797843376e-06 3.02491837165e-05 10065033512.9 +UniRef50_R8ZKN1 0.000230861243448 0.000332770741212 41142114817.5 +UniRef50_Q9RZ80 0.000169276228183 0.0491503072973 1.97742433074e+13 +UniRef50_UPI00046D31AE hypothetical protein 0.000472660882089 5.48209363548e-05 -1.68687113566e+11 +UniRef50_UPI0003B5BDB9 hypothetical protein 3.93927340513e-06 9.05484707872e-06 2065219867.18 +UniRef50_C3AH20 Dehydrogenase 0.0209451855636 0.00512323231779 -6.38751668253e+12 +UniRef50_UPI000465EB7D hypothetical protein 4.95502173151e-05 1.8994276118e-05 -12335808424.8 +UniRef50_Q3SPM7 Peptidyl tRNA hydrolase 8.14021061265e-05 3.92248215214e-05 -17027487368.6 +UniRef50_UPI0001FE2E53 molybdenum cofactor synthesis 1 isoform 1 9.31127820362e-06 3.00811025009e-05 8385032943.23 +UniRef50_L9NDB6 Nonribosomal peptide synthase 0.000120485005023 0.00227557716739 8.70037151904e+11 +UniRef50_UPI00036FD9CA hypothetical protein 1.68439047885e-05 1.00290216129e-05 -2751251966.01 +UniRef50_UPI0004110BE6 FAD binding molybdopterin dehydrogenase 0.000127801713254 0.00042509297696 1.20020131332e+11 +UniRef50_P05707 Sorbitol 6 phosphate 2 dehydrogenase 0.00623005233159 0.000497724784029 -2.31421097452e+12 +UniRef50_UPI00041879E9 LamB YcsF family protein 0.00016310195304 5.6045230536e-05 -43220112608.6 +UniRef50_F0L271 0.000171052351058 5.39993962479e-05 -47255714258.1 +UniRef50_UPI0003791D67 1 phosphofructokinase, partial 4.43759000302e-05 0.000329590505955 1.15144636389e+11 +UniRef50_Q8FAI6 L ribulose 5 phosphate 4 epimerase UlaF 0.00979612057419 0.00548822883165 -1.73914876024e+12 +UniRef50_Q132P2 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.0093221480392 0.00297444463549 -2.56264575916e+12 +UniRef50_B9E6Y4 Shikimate dehydrogenase 2.39488807618e-05 2.08658749382e-05 -1244647283.72 +UniRef50_C5N6P2 0.00387790003355 0.00243110115954 -5.84090459657e+11 +UniRef50_B6FWG5 0.000587078810021 0.00274665187349 8.71846146664e+11 +UniRef50_UPI000365F4CD hypothetical protein 0.000249372168594 0.000153659472455 -38640389958.2 +UniRef50_Q98LU4 Glutathione dependent formaldehyde activating enzyme 0.00013348254079 3.46342443128e-05 -39906270292.8 +UniRef50_A6LUC8 40 residue YVTN family beta propeller repeat protein 0.000332423594962 0.00106518367585 2.95824236632e+11 +UniRef50_B5GFD4 Nogalamycin resistance protein SnorO 3.40874237228e-05 2.19294524526e-05 -4908322196.86 +UniRef50_Q8CP35 N acetyl gamma glutamyl phosphate reductase 0.00823372728749 0.00200731456205 -2.51367922394e+12 +UniRef50_P37146 Ribonucleoside diphosphate reductase 2 subunit beta 0.00251457372069 0.00358368991699 4.31615327977e+11 +UniRef50_UPI000418FD7E delta aminolevulinic acid dehydratase 1.02364857851e-05 1.92982102178e-05 3658329353.34 +UniRef50_M7ADI3 1.74376136457e-05 2.28931813338e-05 2202479623.03 +UniRef50_S5YCH9 Hydrolase, HAD superfamily 0.00262544447645 0.0007812157027 -7.44537787195e+11 +UniRef50_K0R081 3.44698377345e-05 0.000342888264474 1.24512303594e+11 +UniRef50_J0F9K3 0.0108277379529 0.00718360530916 -1.47118106681e+12 +UniRef50_A7WYM2 Thymidylate kinase 0.00602459553981 0.00273014984433 -1.33000815466e+12 +UniRef50_A6LZ87 Aminoglycoside phosphotransferase 0.000430260279658 0.000853241004089 1.7076250901e+11 +UniRef50_G2JIT2 ABC type spermidine putrescine transport system, ATPase component 0.000231526254158 0.00998168623361 3.93625923162e+12 +UniRef50_UPI000429A03C hypothetical protein 4.68282530677e-06 8.7349521446e-06 1635893329.62 +UniRef50_A8GID3 Lipid A disaccharide synthase 0.00028237150095 0.000240420655515 -16936071096.9 +UniRef50_Q55621 Amidophosphoribosyltransferase 8.18685089287e-06 0.000111003151258 41508202155.2 +UniRef50_J9P1J0 2.28481669509e-05 2.0156335493e-05 -1086725392.04 +UniRef50_C5BT54 Cysteine synthase 0.000865043167471 0.000495131436238 -1.49337905226e+11 +UniRef50_A0A023RU88 RND transporter 0.000348980833836 0.00819444253723 3.1673091643e+12 +UniRef50_UPI00046C9C35 microcin ABC transporter permease 5.02272161003e-05 1.65808919402e-05 -13583433950.3 +UniRef50_E0SGK4 ABC transporter, permease component 0.00406739659753 0.000536830407535 -1.42533289582e+12 +UniRef50_R9SHD6 Glycine betaine L proline ABC transporter permease substrate binding protein 0.00234712029076 0.000117577984809 -9.00093588473e+11 +UniRef50_Q487D7 Na translocating NADH quinone reductase subunit E 0.000118955923212 9.03392377203e-05 -11552907099.2 +UniRef50_UPI00047D9DB1 iron transporter FeoB 1.39188499233e-05 3.95430769872e-06 -4022807974.75 +UniRef50_A6M1E2 0.000129642592261 0.00118809907898 4.27311872411e+11 +UniRef50_B1ZUJ0 NADH quinone oxidoreductase subunit B 2 2.37940454123e-05 0.000170198328684 59105205739.5 +UniRef50_P0A908 MltA interacting protein 0.00404825734619 0.000666127906449 -1.36540715822e+12 +UniRef50_Q8T154 Uridine cytidine kinase B 7.74242220313e-06 8.5760030512e-05 31496665858.0 +UniRef50_Q1QEF7 Putative 3 methyladenine DNA glycosylase 0.000808898547544 0.00876884567528 3.213528335e+12 +UniRef50_B1ZDM1 4.00735779729e-05 1.0995215225e-05 -11739291873.0 +UniRef50_UPI0003B3485A AP endonuclease 9.12448762411e-05 7.52097898278e-05 -6473561157.69 +UniRef50_Q8G7G5 Cysteine tRNA ligase 4.57892781473e-06 1.15490214905e-05 2813912349.58 +UniRef50_N3MBX3 0.00065820052722 0.000249194165413 -1.65120887334e+11 +UniRef50_B6EJ69 Putative type VI secretion protein VasE 6.24297267153e-06 9.19107308968e-06 1190184316.07 +UniRef50_A7FB19 9.46080172615e-05 0.00204599715281 7.87799740259e+11 +UniRef50_W6W5E1 Methionine synthase 0.00624045920239 0.00299185018381 -1.31150332572e+12 +UniRef50_M4R2Z9 2.48326147089e-05 0.000490619845149 1.88044020781e+11 +UniRef50_Q7N4Q1 Complete genome; segment 8 17 0.000184740288181 0.00639427841546 2.50686674158e+12 +UniRef50_V4JEN2 0.00053726434014 0.000122288038061 -1.67531025481e+11 +UniRef50_R5FLK7 Sporulation initiation inhibitor protein Soj 3.35385596348e-06 3.06994855462e-05 11039766231.1 +UniRef50_E4B644 8.54121748243e-05 0.000752850682436 2.69453115914e+11 +UniRef50_UPI0003A4C566 methyltransferase 3.43430710126e-05 0.000713412508587 2.74148665068e+11 +UniRef50_Q9RZ06 Histidine ammonia lyase 0.000174105725641 0.0187171776142 7.48606567051e+12 +UniRef50_Q8CNZ3 Type IV prepilin peptidase 0.0054998721138 0.00243928236518 -1.23559763918e+12 +UniRef50_A7ZJM7 DNA protection during starvation protein 0.000458637236771 0.00341815956565 1.19479548159e+12 +UniRef50_R4ZTN2 Glycerophosphoryl diester phosphodiesterase 9.65437311629e-05 0.000707549823905 2.46670657528e+11 +UniRef50_E6CZE7 4 phosphoerythronate dehydrogenase 0.00118846646536 0.00293315580668 7.04352496837e+11 +UniRef50_W7U7T7 0.000243138088752 0.0002727253566 11944743106.8 +UniRef50_M3YRF2 1.72730621127e-05 8.59119144685e-06 -3504977726.34 +UniRef50_P37678 3 keto L gulonate 6 phosphate decarboxylase SgbH 0.00233704508406 0.0010588588756 -5.16019457464e+11 +UniRef50_P63333 Putative zinc metalloprotease SA1105 0.0131556230552 0.00452635684121 -3.48374066359e+12 +UniRef50_B0V5R2 Ribonuclease P protein component 0.00031457165738 0.00056429943668 1.00818169008e+11 +UniRef50_D3HGD1 0.00943092595701 0.000854088800515 -3.46257440971e+12 +UniRef50_P0ADA2 Acyl CoA thioesterase I 0.00196164767471 0.00109700679661 -3.49066132826e+11 +UniRef50_E3ENU9 Chromosome partitioning protein 3.96661646684e-06 0.00413873120965 1.66925520553e+12 +UniRef50_Q3J6K3 TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor 0.012056170466 0.00290160846893 -3.69580901733e+12 +UniRef50_UPI000473CDCF hypothetical protein 1.35973070673e-05 7.05970769252e-05 23011506557.5 +UniRef50_F4M5Y2 0.00010519977716 0.000148172671653 17348684843.5 +UniRef50_K0T360 1.05486568153e-05 1.70874901235e-05 2639807247.03 +UniRef50_Q0J8P0 Os08g0101500 protein 0.000368593330243 0.000280322328022 -35636086803.6 +UniRef50_UPI00034D7F07 hypothetical protein 0.000107437472019 0.000245236287 55631072589.4 +UniRef50_UPI00036FC1AC hypothetical protein 1.87759474198e-05 0.000165028307834 59043872617.4 +UniRef50_U6MJL8 0.000176633819618 6.13183512621e-05 -46554269655.2 +UniRef50_A5HXZ1 Anaerobic ribonucleoside triphosphate reductase 0.000356472131832 0.00193301027966 6.36467796578e+11 +UniRef50_UPI000346628F hypothetical protein 2.25310603745e-05 3.83680173395e-05 6393573868.09 +UniRef50_B0TZ13 Ribosomal RNA small subunit methyltransferase H 1.12916254897e-05 8.18146880791e-06 -1255608418.35 +UniRef50_P46068 HTH type transcriptional regulator DsdC 0.00246218531057 0.000193650298495 -9.15835422428e+11 +UniRef50_UPI00036C038C hypothetical protein 1.00827684322e-05 1.92883645301e-05 3716412110.09 +UniRef50_UPI00046E972F hypothetical protein 3.62855717574e-06 0.000469954452165 1.88261486269e+11 +UniRef50_UPI0003728245 hypothetical protein 2.88478474604e-05 7.02243844317e-06 -8811185448.13 +UniRef50_T0IDY3 5.97718648886e-05 0.000105974029096 18652380654.8 +UniRef50_Q9CFZ5 Metal ABC transporter substrate binding lipoprotein 0.00425538075008 0.00870062177881 1.79459835254e+12 +UniRef50_UPI0004651F41 hypothetical protein 4.93789722874e-06 2.53306117569e-05 8232789101.78 +UniRef50_UPI00035D4E82 hypothetical protein 5.63682245554e-05 0.00281691432903 1.11446633808e+12 +UniRef50_V1HUM9 Methyl accepting chemotaxis protein 1.24581256864e-05 2.00201460009e-05 3052880397.39 +UniRef50_A0LBD9 Transposase, IS4 family 5.09836717603e-05 1.35133233843e-05 -15127239452.3 +UniRef50_G9A7N2 1.89744403375e-05 3.68543962498e-05 7218357613.53 +UniRef50_G3XD65 0.00181249817962 0.000341406595601 -5.93897724793e+11 +UniRef50_D5AU05 3.11880101292e-05 3.73062252448e-05 2469998521.11 +UniRef50_O54068 UDP glucose 6 dehydrogenase 2.52999175774e-05 2.11779815379e-05 -1664076160.99 +UniRef50_D5AU02 0.0149867015503 0.00227954493088 -5.1300350616e+12 +UniRef50_I0C5N7 Nitrogen regulation protein NIFR3 3.52815790751e-05 7.90885549699e-05 17685413740.8 +UniRef50_C1CCZ1 UvrABC system protein C 0.0140953220009 0.00903437287589 -2.0431672666e+12 +UniRef50_UPI0003735CBD hypothetical protein 1.48072830386e-05 0.000310918645689 1.19543790797e+11 +UniRef50_O27082 Cation transporting P ATPase PacL 0.00233764224672 0.000864212354176 -5.94841728636e+11 +UniRef50_Q07ML1 0.0013839064221 0.000194500574217 -4.8017773644e+11 +UniRef50_R5JK63 Hypoxanthine phosphoribosyltransferase 0.000243539347646 0.00239689879925 8.69337635303e+11 +UniRef50_B9KSE1 MIP family channel proteins 0.00700400781053 0.000600142354897 -2.5853190687e+12 +UniRef50_I2DGR3 Phage colicin tellurite resistance cluster TerY protein 0.00284171677941 0.00137187338525 -5.93393815229e+11 +UniRef50_D0CPI3 Peptidase U35, phage prohead HK97 2.66220077029e-05 3.53179413548e-05 3510655126.38 +UniRef50_Q9EVM1 Replication protein 0.000122764808724 6.86638358046e-05 -21841226661.2 +UniRef50_UPI00021A5775 PREDICTED 1.63483871941e-05 8.52664567521e-06 -3157733034.74 +UniRef50_B0TBU3 Glutamate tRNA ligase 4.31777366486e-06 5.9818612036e-06 671812560.04 +UniRef50_A3PIY0 Carboxymuconolactone decarboxylase 0.00623178297502 0.00261492803837 -1.46016872173e+12 +UniRef50_A6QIG4 0.00186086860811 0.00179342128661 -27229311361.3 +UniRef50_P31062 DNA packaging protein NU1 homolog 0.00202294030927 0.00029336096543 -6.98252405433e+11 +UniRef50_B4EV71 Glutamine tRNA ligase 0.00246330427238 0.000809794892792 -6.67542027382e+11 +UniRef50_Q67NS3 Homoserine O acetyltransferase 1.15961394167e-05 2.69256732797e-05 6188720935.03 +UniRef50_Q5HIW9 0.0169924915629 0.00315332454756 -5.58704154975e+12 +UniRef50_Q04809 Dipicolinate synthase subunit A 6.13376142851e-05 0.00087118544229 3.26945506116e+11 +UniRef50_G2JDG3 RNA splicing ligase RtcB 9.63794014105e-05 0.0115888513754 4.63965196439e+12 +UniRef50_A6LYE0 0.0011267085075 0.00230651363309 4.76301807038e+11 +UniRef50_Q98CW9 Mll4969 protein 1.51861703725e-05 1.4207847162e-06 -5557255109.73 +UniRef50_Q836D3 S ribosylhomocysteine lyase 1.52878458235e-05 0.00377527703327 1.51795377523e+12 +UniRef50_Q58033 N5 carboxyaminoimidazole ribonucleotide mutase 3.85096007712e-05 6.03788955891e-05 8828902684.41 +UniRef50_M9VMX1 0.000173956676891 0.00851237809427 3.36632305013e+12 +UniRef50_P9WK18 Methionine aminopeptidase 2 0.000166783205682 0.00751080269353 2.9648707885e+12 +UniRef50_A3PGE5 0.017493556092 0.00298239942379 -5.85833201887e+12 +UniRef50_A1BAM2 ABC polyamine transporter, periplasmic substrate binding protein 0.0105615981658 0.00157956802615 -3.62615578928e+12 +UniRef50_M1MCE4 Diguanylate cyclase 0.000146691446449 0.00109879277316 3.8437498919e+11 +UniRef50_P92549 ATP synthase subunit alpha, mitochondrial 0.0105726489235 0.0149622264326 1.7721263066e+12 +UniRef50_O33013 Signal recognition particle protein 0.000101565736906 0.00498792489921 1.97268315619e+12 +UniRef50_Q7KS14 CG6695, isoform B 3.06839478451e-05 1.33258897047e-05 -7007661078.61 +UniRef50_P0ABF0 Carbonic anhydrase 1 0.00378547023802 0.00214600650225 -6.61871628613e+11 +UniRef50_Q4FUD2 30S ribosomal protein S4 0.00306145288697 0.00152425458184 -6.20585819325e+11 +UniRef50_Q8CC86 Nicotinate phosphoribosyltransferase 2.99861490685e-06 6.48156359414e-06 1406109125.65 +UniRef50_Q3IVT5 Agmatinase 0.00064496070633 0.000254949673557 -1.57452239904e+11 +UniRef50_UPI0003B4603D multidrug ABC transporter ATP binding protein 6.07738318414e-06 2.62101733218e-05 8127854435.71 +UniRef50_C1DQ18 TonB dependent siderophore receptor 0.000724904608867 0.000790927970444 26654441266.4 +UniRef50_G7SF07 Small conductance mechanosensitive channel 0.00655679898713 0.00275384573213 -1.53529889653e+12 +UniRef50_P60845 Aquaporin Z 0.00468411742489 0.00270078097834 -8.00697261747e+11 +UniRef50_UPI000329DC11 1.66940850613e-06 1.18437971519e-05 4107525550.1 +UniRef50_UPI0003733B95 hypothetical protein 2.06609219046e-06 5.24846824271e-06 1284764264.44 +UniRef50_K0UFN2 0.000107544419209 0.000692019474371 2.35959752084e+11 +UniRef50_UPI0002492BA5 hypothetical protein 0.000170622048932 0.000110028532791 -24462346032.2 +UniRef50_B0JTA0 Proline rich extensin like family protein 5.42980627867e-05 2.12187187823e-06 -21064168543.6 +UniRef50_UPI000476476F thioredoxin 5.81586060719e-05 4.26859000773e-05 -6246521281.47 +UniRef50_Q9RXQ6 0.000177223468942 0.0641726679441 2.58357462471e+13 +UniRef50_O85128 Chemotaxis response regulator protein glutamate methylesterase of group 1 operon 7.18206908673e-05 9.47724892188e-06 -25168812553.4 +UniRef50_Q53174 Motility protein A 0.0135357985254 0.00172712778915 -4.76730528489e+12 +UniRef50_UPI00047893F1 chemotaxis protein 4.69249996992e-05 1.21559801383e-05 -14036679860.6 +UniRef50_F9EDC6 SagD family bacteriocin biosynthesis protein 4.51777001112e-06 2.0765330001e-05 6559339347.9 +UniRef50_I1F0D0 2.92224560283e-05 8.33626672536e-05 21857067646.8 +UniRef50_Q99VJ2 Extracellular matrix protein binding protein emp 0.0113021103726 0.00137669692898 -4.00701120571e+12 +UniRef50_UPI00037AEF72 hypothetical protein 1.48891359001e-05 9.57549422304e-05 32646518350.6 +UniRef50_A0A011RWZ7 0.000111572213456 0.000176484086778 26205719818.4 +UniRef50_Q8TTR1 Outer membrane protein expression inhibitor 0.000115556935367 0.000503027604922 1.56426664099e+11 +UniRef50_P0AE86 Periplasmic protein CpxP 0.00822271990849 0.00206906385235 -2.48430646372e+12 +UniRef50_M9RTA8 Phosphoesterase 4.61526642719e-05 0.000435356322155 1.57126292753e+11 +UniRef50_A6LZM9 0.000122959605492 0.00171056470651 6.40935661387e+11 +UniRef50_P24240 6 phospho beta glucosidase AscB 0.00800071298498 0.0113138077501 1.33753701292e+12 +UniRef50_P43984 0.0123820098273 0.00109034401664 -4.5585840521e+12 +UniRef50_Q44653 30S ribosomal protein S1 0.000135542545373 0.00632017824854 2.49681332738e+12 +UniRef50_P68801 Staphylokinase 0.00750150896264 0.00145089523974 -2.44270700931e+12 +UniRef50_M5ANL0 Beta lactamase co inducer 0.00129236167479 0.000305745279313 -3.98309145999e+11 +UniRef50_UPI00035E68E1 hypothetical protein 8.67533285433e-06 5.7583603885e-06 -1177617579.73 +UniRef50_A5UJ57 Putative manganese efflux pump MntP 0.00282904504452 0.00116572383629 -6.71503183009e+11 +UniRef50_H5SY94 ABC transporter ATP binding protein 0.0034987298727 0.00115189666322 -9.47445365549e+11 +UniRef50_A4WVG7 0.000276521188486 0.000249246984589 -11010930805.3 +UniRef50_P71298 Putative prophage CP4 6 integrase 0.00169689897739 0.000609180403973 -4.39125335898e+11 +UniRef50_F3SV15 0.000825971774981 0.000726188619325 -40283684415.3 +UniRef50_A4WVG4 0.00765935967302 0.000441870381833 -2.91378899541e+12 +UniRef50_Q6F7B6 0.000358183456254 0.00963675217819 3.74587205389e+12 +UniRef50_R5K1D1 0.00113341645163 0.00589833049632 1.92365427191e+12 +UniRef50_V5VEN2 Excinuclease ABC, A subunit 1.89984905172e-05 1.28488901225e-05 -2482669143.42 +UniRef50_Q5HN96 Foldase protein PrsA 0.0144810900662 0.00360431188203 -4.39108882604e+12 +UniRef50_I2DNZ8 Peptidase M14, carboxypeptidase A 0.0019897321282 0.00284930598048 3.47020512323e+11 +UniRef50_UPI000478D2A2 cytochrome bd I ubiquinol oxidase subunit 2 apoprotein 4.59283306226e-06 1.3630925448e-05 3648788805.99 +UniRef50_Q1GIE6 Binding protein dependent transport systems inner membrane component 0.010832028089 0.00194423719361 -3.58811024993e+12 +UniRef50_K1ZWG6 9.90413966068e-05 0.000229261185475 52571326742.5 +UniRef50_UPI00034D08B0 hypothetical protein 9.95978765312e-06 0.00179411352499 7.20284757793e+11 +UniRef50_P72151 B type flagellin 0.000804472978569 0.000685027760166 -48221500426.9 +UniRef50_UPI00041834C2 hypothetical protein 5.30973785084e-05 1.32064583488e-05 -16104453985.1 +UniRef50_P46702 N5 carboxyaminoimidazole ribonucleotide mutase 7.2374366939e-05 8.57458783271e-05 5398243234.27 +UniRef50_Q1IZI7 Elongation factor Ts 0.00022248683036 0.0474335234405 1.90596748241e+13 +UniRef50_UPI00016C08D0 phosphoenolpyruvate synthase 2.37207378296e-06 0.000101597197949 40058400255.0 +UniRef50_F7ZIC0 5.12540508788e-05 1.52564729218e-05 -14532663961.2 +UniRef50_Q3IZN1 NAD kinase 0.00207990207277 0.000254218110649 -7.37051019169e+11 +UniRef50_A6LTP4 0.000583741219879 0.000307088428274 -1.11688126882e+11 +UniRef50_P77737 Oligopeptide transport ATP binding protein OppF 0.0164376442975 0.00444531582318 -4.84145016749e+12 +UniRef50_Q9SMC2 Acetolactate synthase small subunit 1, chloroplastic 1.19203281476e-05 0.000271647852197 1.04855188674e+11 +UniRef50_A9T869 Predicted protein 0.000739577487117 0.000356941432277 -1.54474870811e+11 +UniRef50_Q7VFF5 Histidinol dehydrogenase 4.41809077779e-06 6.46261005579e-06 825397521.601 +UniRef50_Q4L7L1 Diacylglycerol kinase 0.0228217794699 0.00480271064249 -7.27451920446e+12 +UniRef50_P0CL46 Formate hydrogenlyase transcriptional activator 0.00214635690591 0.000297442616675 -7.46429387296e+11 +UniRef50_Q9RT45 Exonuclease SbcD, putative 0.000275206078797 0.0218415862459 8.7066123227e+12 +UniRef50_R7MPC8 ComG operon protein 4 0.00383315044909 3.95136020646e-05 -1.53153774831e+12 +UniRef50_Q030J8 3 oxoacyl [acyl carrier protein] synthase 3 0.000276434856029 0.00403222781146 1.51625970487e+12 +UniRef50_V5T2N8 Transcriptional regulator 0.00210016045958 0.000283504036987 -7.33406490681e+11 +UniRef50_F0YAA2 0.000224540307818 0.000269324433419 18079901068.1 +UniRef50_P75910 0.00214659634746 0.003613914015 5.92374148398e+11 +UniRef50_Q50566 DNA ligase 0.00338985687825 0.000357084604739 -1.22436738312e+12 +UniRef50_F3U2V1 Gas vesicle synthesis GvpLGvpF 0.0165252776161 0.00376685704829 -5.15073094665e+12 +UniRef50_A5UJ79 Adhesin like protein 0.00270571158404 0.000661118596452 -8.25427279067e+11 +UniRef50_Q9RZV9 Chromosome partitioning ATPase, putative, ParA family 9.89181409236e-05 0.0142210844073 5.70129182021e+12 +UniRef50_D6DM05 Predicted oxidoreductases of the aldo keto reductase family 0.00389218339831 0.00116905658432 -1.09935971133e+12 +UniRef50_S5D7U1 Nucleotidyltransferase DNA polymerase involved in DNA repair 8.73810159412e-05 0.000464321908157 1.52175663773e+11 +UniRef50_Q7UTH1 Uridylate kinase 8.6405095114e-06 1.05269874172e-05 761594280.259 +UniRef50_J8YHU3 Aida related Type V secretory pathway adhesin 5.87984406329e-05 0.00164431511601 6.40092538328e+11 +UniRef50_Q1QAW5 Lysine tRNA ligase 3.69569698471e-06 1.13451976806e-05 3088197300.86 +UniRef50_Q94C74 Serine hydroxymethyltransferase 2, mitochondrial 4.13432558939e-05 1.87684479651e-05 -9113726984.9 +UniRef50_E2QQ87 Phage baseplate assembly protein 0.00125710720405 0.000358684257326 -3.62704368482e+11 +UniRef50_UPI000366BB43 hypothetical protein 1.87911308953e-05 0.00027367738364 1.02900708039e+11 +UniRef50_X1YA55 5.29733717903e-06 1.57684392185e-05 4227312388.22 +UniRef50_UPI00047BFE08 hypothetical protein 1.85880667997e-05 3.05547407351e-05 4831093115.32 +UniRef50_N8D5Y6 0.00196405921091 0.000143088933094 -7.35148046974e+11 +UniRef50_A9EDB3 Putative transposase 0.000232439056637 9.81465269321e-05 -54215542196.6 +UniRef50_UPI0004640326 hypothetical protein 0.000102195053718 9.19592481122e-05 -4132320330.52 +UniRef50_UPI0003A56F69 hypothetical protein 0.000321736141935 0.000195213844699 -51078603997.4 +UniRef50_P50060 Superoxide dismutase [Mn] 3 6.64154734548e-06 2.86319739546e-05 8877805074.97 +UniRef50_A0A028WHC5 DNA polymerase III, alpha subunit 0.00933961191453 0.00416697508595 -2.08825696309e+12 +UniRef50_P0A5R7 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.000707678181702 0.00289830446541 8.84382712741e+11 +UniRef50_E6JZ36 Citrate transporter 0.000272473679391 0.00229828828851 8.17846217243e+11 +UniRef50_Q831N0 tRNA N6 adenosine threonylcarbamoyltransferase 0.000151751904315 0.0010218205796 3.51257401156e+11 +UniRef50_U7NE48 6.05033643005e-06 8.85950282145e-06 1134094944.56 +UniRef50_UPI000474C12F glutathione ABC transporter permease, partial 0.000491900973046 0.000132263657277 -1.45189997622e+11 +UniRef50_D4HAW3 0.000228779387182 0.00152516705953 5.23367611793e+11 +UniRef50_T1YCD5 Fructokinase 0.0123544747591 0.00190009449478 -4.22056160237e+12 +UniRef50_UPI000376AD8E hypothetical protein 1.88156850188e-05 3.04752653574e-05 4707115661.83 +UniRef50_UPI000406F970 hypothetical protein 6.03156931171e-05 3.02157377708e-05 -12151721341.3 +UniRef50_UPI000454108C PREDICTED 2.47621179548e-05 3.53480930015e-05 4273688030.87 +UniRef50_A1B402 1.91317748971e-05 6.60727285983e-05 18950639039.5 +UniRef50_UPI00046A6AED ABC transporter ATP binding protein 2.34595826039e-05 8.88101838579e-06 -5885545273.95 +UniRef50_UPI00047B7506 membrane protein 6.89647817452e-06 2.69079904418e-06 -1697884274.4 +UniRef50_Q7WYU3 Putative AgrB like protein 0.000203313818048 0.000913828104671 2.868433365e+11 +UniRef50_H0G932 0.000457093875161 0.000240005457227 -87641258294.4 +UniRef50_X5EAP1 0.00145907502578 0.00046637676108 -4.00764471237e+11 +UniRef50_Q8CNS4 Replication initiator protein A 0.0041095741658 0.0143059922859 4.11641911921e+12 +UniRef50_V4JMR5 0.000229930040147 0.000100414362636 -52287068347.3 +UniRef50_Q2G8P8 7.32329307848e-05 3.94427720717e-05 -13641501724.4 +UniRef50_N0BAQ7 dTDP 4 dehydrorhamnose 3,5 epimerase 0.0093824587694 0.00266896656043 -2.71031918857e+12 +UniRef50_Q8CU52 Alkylmercury lyase 0.0137635330485 0.00521695670851 -3.45035774674e+12 +UniRef50_A6V8R6 Ribonuclease D 0.000196650832005 0.000189914279868 -2719628764.5 +UniRef50_O66608 N5 carboxyaminoimidazole ribonucleotide synthase 6.33367038072e-06 8.92962116616e-06 1048017187.98 +UniRef50_D3QEW5 CAAX amino terminal protease family protein 0.00688349437723 0.00039463256819 -2.6196331396e+12 +UniRef50_A0A017IAI8 AraC type transcriptional regulator family protein 1.24114953028e-05 8.1384982853e-05 27845443323.9 +UniRef50_UPI0003714DE7 hypothetical protein 4.35666848183e-05 0.000113403427679 28193950086.1 +UniRef50_UPI00039CF99B ketol acid reductoisomerase 1.19336623305e-05 1.19683000937e-05 13983690.057 +UniRef50_G8REC3 4.06143954149e-05 7.52187729899e-05 13970211870.5 +UniRef50_R6CMC1 YhgE Pip domain protein 3.61310782178e-06 4.90728998721e-06 522477221.585 +UniRef50_UPI0002E4DB1A threonyl tRNA synthetase 5.99085467897e-05 0.000516337351392 1.84265909429e+11 +UniRef50_Q9PD20 3.90203897991e-06 1.25108547573e-05 3475484571.38 +UniRef50_Q5M430 tRNA dimethylallyltransferase 0.00514687055144 0.00411006536166 -4.18570978145e+11 +UniRef50_Q2RSC8 Phosphoribosylformylglycinamidine cyclo ligase 5.45172803872e-06 9.2305700216e-06 1525564880.09 +UniRef50_F0RN90 Alpha beta hydrolase fold protein 0.000501322597353 0.0340076319762 1.35269082649e+13 +UniRef50_C9X0H3 DNA repair protein RecN 8.02024055691e-05 0.00344911278078 1.36007045965e+12 +UniRef50_UPI0003488344 hypothetical protein 1.82234674955e-05 0.000111083601552 37488775640.6 +UniRef50_Q6A8H6 Guanylate kinase 0.00107853139672 0.00121931646621 56836660180.2 +UniRef50_UPI00046F8C65 hypothetical protein 5.68590918017e-06 1.02431313037e-05 1839806494.67 +UniRef50_UPI0003B73489 glycosyltransferase 5.68649671636e-05 2.21804795251e-05 -14002553286.2 +UniRef50_UPI0003B360FE MerR family transcriptional regulator 0.000176930842518 3.51558596517e-05 -57236300357.7 +UniRef50_O27088 Type 2 DNA topoisomerase 6 subunit B 0.00210491129458 0.000134540640185 -7.95462812344e+11 +UniRef50_R9RCS6 MATE efflux family protein 0.00587621273293 0.00257485953005 -1.33279680016e+12 +UniRef50_C8W561 SpoVR family protein 1.48208946172e-05 0.000269821914715 1.02947041028e+11 +UniRef50_Q5HLN9 Transcriptional regulator, TetR family 0.0256634848327 0.00319965850955 -9.06892234878e+12 +UniRef50_A7ZJW5 0.00175334244593 0.0010030996119 -3.02882238613e+11 +UniRef50_Q9JTK4 Lactoferrin binding protein A 8.91838071812e-05 0.00395826584533 1.56199589778e+12 +UniRef50_O27585 Lysine tRNA ligase 0.00193627870736 0.000604093784075 -5.3781940128e+11 +UniRef50_B7J8G6 Ribosomal RNA large subunit methyltransferase E 2.92904203346e-05 3.28262426774e-05 1427454869.21 +UniRef50_A6LUF8 0.000191293575433 0.000564853822888 1.50810855997e+11 +UniRef50_UPI0003B3F0AB hypothetical protein 6.33339922838e-05 2.77087402587e-05 -14382351413.5 +UniRef50_UPI0003506CEC PREDICTED 3.44371371501e-05 7.78513325262e-05 17526843425.4 +UniRef50_G7M8A4 0.000128981545165 0.00107582513206 3.82252375107e+11 +UniRef50_B5YKI3 NADH quinone oxidoreductase subunit B 1 3.28135767483e-05 0.00011625212419 33685165508.3 +UniRef50_P31135 Putrescine transport system permease protein PotH 0.00194973235726 0.00113161037917 -3.30285882041e+11 +UniRef50_I4Z1X0 Hydrogenase urease accessory protein 4.11245642975e-05 1.29426351267e-05 -11377390637.4 +UniRef50_Q3JXY3 4.93426189711e-05 0.000361160138623 1.25884559115e+11 +UniRef50_UPI0003B638D4 phosphopentomutase, partial 3.02762974831e-05 2.97749804764e-05 -202387827.456 +UniRef50_B2U2C8 Electron transport complex subunit RsxC 0.00191630193174 0.00102383712537 -3.60298994106e+11 +UniRef50_UPI000359674D PREDICTED 6.16416802457e-06 5.67171708962e-07 -2259576095.48 +UniRef50_W9T5C9 8.09162370286e-06 0.000135054906656 51256635342.8 +UniRef50_UPI00047CBCCD 4 alpha glucanotransferase 1.25801724821e-05 0.000687866036113 2.72621189837e+11 +UniRef50_D3E1B3 Transposase 0.00281288824377 0.000120128829233 -1.08710001952e+12 +UniRef50_Q3A253 Valine tRNA ligase 7.12792951471e-06 3.69481012797e-06 -1385992425.54 +UniRef50_Q6D7E5 Zinc transporter ZitB 0.00494883712271 0.000683700605828 -1.72188795098e+12 +UniRef50_A6M0L7 UPF0249 protein Cbei_4037 0.000535591888877 0.000853409226561 1.2830675928e+11 +UniRef50_Q6HLQ9 Spermidine putrescine import ATP binding protein PotA 0.000478006394018 0.00149339455194 4.09924659566e+11 +UniRef50_F2MPN2 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 0.00026583520342 0.00165499178402 5.60819558456e+11 +UniRef50_UPI0002DFA60B hypothetical protein 3.80349441285e-06 6.49859531178e-06 1088045305.51 +UniRef50_F8XHG2 0.000157501679073 0.000103117378312 -21955609587.6 +UniRef50_I0C7U2 4 aminobutyrate aminotransferase 0.0184473118621 0.00690204873872 -4.66096439923e+12 +UniRef50_P10932 Aliphatic amidase regulator 0.00245483589124 0.00204093245518 -1.67097896304e+11 +UniRef50_M7PBX7 Transferase 0.000208172420321 0.00676983444191 2.64902347876e+12 +UniRef50_J3HPZ9 Putative transcriptional regulator 5.11069574423e-05 1.21275278149e-05 -15736474072.0 +UniRef50_UPI000479F530 ABC transporter 1.28120191747e-05 1.82440411391e-05 2192973925.43 +UniRef50_E2XT98 Alcohol dehydrogenase 0.000286294842109 0.0219982123901 8.76536754932e+12 +UniRef50_K0HWR7 LysR family transcriptional regulator 0.000164841043168 0.00601952036587 2.36360588757e+12 +UniRef50_A0A012DIE8 6.73024258588e-05 2.00021163844e-05 -19095715374.9 +UniRef50_P42905 Putative N acetylgalactosamine permease IIC component 2 0.00059337694823 0.00133225581291 2.98294464735e+11 +UniRef50_B9JHG8 0.00501511811089 0.00307047149712 -7.85077701476e+11 +UniRef50_Q6MCU1 Chorismate synthase 4.51111768124e-06 1.4013270864e-05 3836135844.41 +UniRef50_A3PS82 ABC transporter related 0.00270362290846 0.000216878853269 -1.00392909086e+12 +UniRef50_UPI00016C5336 ATP dependent RNA helicase 2.52470730571e-06 5.67163636893e-05 21877836688.5 +UniRef50_E5QR85 0.00902968775528 0.000754947013561 -3.34061437992e+12 +UniRef50_D9XU17 Anti sigma B factor RsbT 6.97149978448e-05 0.00256352982984 1.00678365023e+12 +UniRef50_D7YAA8 Poly beta 1,6 N acetyl D glucosamine export porin PgaA 0.00141255925513 0.000269602475149 -4.61425677735e+11 +UniRef50_Q67P19 NADH quinone oxidoreductase subunit D 1 1.54514425812e-05 7.93300980706e-05 25788597100.3 +UniRef50_UPI000468EA31 chemotaxis protein 6.32633467701e-05 1.00565829895e-05 -21480223458.6 +UniRef50_D3P499 8.33816592992e-05 2.29487385568e-05 -24397511699.0 +UniRef50_A4XY80 Aminopeptidase Y 0.000811105023959 0.000253271881941 -2.25204084815e+11 +UniRef50_A0A024H1Y9 NrdI protein 1.17934103105e-05 5.35419430642e-05 16854394984.8 +UniRef50_D7BFI6 0.000420988091661 0.0531974945702 2.13065233059e+13 +UniRef50_P66951 Beta barrel assembly enhancing protease 0.00282278994908 0.000932645999834 -7.63074306987e+11 +UniRef50_G7ZNX7 Competence protein ComEC, putative 0.00852210096471 0.00186276751313 -2.68845463361e+12 +UniRef50_S5YYC5 D 3 phosphoglycerate dehydrogenase 0.017058627612 0.0032196499719 -5.58696509666e+12 +UniRef50_UPI000364F717 hypothetical protein 0.000299994827148 0.000228432242104 -28890693753.9 +UniRef50_J8SAI7 Integral membrane protein MviN 6.60825688746e-05 4.71843092021e-05 -7629459337.51 +UniRef50_F3ZC85 3.09625389259e-06 5.70018343938e-05 21762344344.2 +UniRef50_B2TJ37 DNA uptake protein 0.000228353856397 0.000594301749581 1.47737655164e+11 +UniRef50_P15644 Type II secretion system protein D 0.00184145083519 0.000863776243494 -3.94699230084e+11 +UniRef50_A6LSN4 Ribonuclease HII 0.000319452176746 0.002172169607 7.47964761991e+11 +UniRef50_A3DJ91 Chemotaxis response regulator protein glutamate methylesterase 0.000828657659638 0.00265057915224 7.35532064053e+11 +UniRef50_A3VZA4 0.00312348413126 0.000809190486442 -9.3430874399e+11 +UniRef50_UPI00036D2281 hypothetical protein 1.10158609674e-05 0.000120376636834 44150287225.1 +UniRef50_T3G9C0 Modulator of DNA gyrase family protein 0.000480960977159 0.00111278630821 2.55075639514e+11 +UniRef50_W1YWP9 6.8229564802e-05 0.00260590019156 1.02448877274e+12 +UniRef50_M4S4L0 ParB family protein 0.000164402341726 3.30095016892e-05 -53044901894.4 +UniRef50_M9WZ57 5.35688982539e-06 1.75259005891e-05 4912778975.86 +UniRef50_Q8XC28 Tyrosine protein kinase etk 0.00287693786193 0.000730554893067 -8.6652114361e+11 +UniRef50_F2CYK8 Predicted protein 0.000359150497354 4.10353144307e-05 -1.28427003058e+11 +UniRef50_Q181T5 Enolase 1.11747127829e-05 0.0029049222586 1.16824139452e+12 +UniRef50_F8B5V8 Methylmalonyl CoA epimerase 5.13723684337e-05 2.6596749752e-05 -10002221292.8 +UniRef50_D8AI56 0.000403912302854 0.000375013205696 -11666920154.5 +UniRef50_A3PRU0 Protease Do 0.00668774361918 0.00131215698786 -2.17019028893e+12 +UniRef50_A7M2I7 0.000113333960784 6.0604165806e-05 -21287665300.0 +UniRef50_P9WN34 Anthranilate synthase component 2 1.02990941202e-05 0.000970593936786 3.87682812127e+11 +UniRef50_UPI0001BF66E0 hypothetical protein SMAC_10559 7.34551944029e-05 2.60859946198e-05 -19123527237.9 +UniRef50_A5UMG7 Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family 0.00265172060313 0.000687965988473 -7.92791835917e+11 +UniRef50_B2TKT2 D alanine poly ligase subunit 1 9.72066924068e-05 0.000953951928533 3.4587856527e+11 +UniRef50_P77608 2 keto 4 pentenoate hydratase 0.00229198367168 8.84925370398e-05 -8.89576410931e+11 +UniRef50_UPI00035F6D04 hypothetical protein 4.81829758415e-06 7.78005949958e-06 1195699630.16 +UniRef50_UPI0003688491 hypothetical protein 0.000148393233729 0.000174888431651 10696436533.8 +UniRef50_UPI0003AF89CE PREDICTED 7.05582642558e-06 9.86024436303e-05 36958492768.9 +UniRef50_C7ZUX9 Exported protein 0.0107910022788 0.00167683375285 -3.67950167735e+12 +UniRef50_UPI000395A56D hypothetical protein, partial 1.12869047595e-05 3.05002773062e-05 7756674271.7 +UniRef50_P95784 ATP synthase subunit a 0.00706529539011 0.0017726855061 -2.1366915578e+12 +UniRef50_W6EGR2 0.0321252960984 0.00415807993141 -1.1290708363e+13 +UniRef50_R5GIU2 ABC transporter permease protein 0.000176670509603 0.00155195290105 5.55218378041e+11 +UniRef50_B9AFH0 Polymorphic outer membrane protein repeat (Fragment) 0.00350436013622 0.00137174198417 -8.6096411815e+11 +UniRef50_Q1H276 UPF0125 protein Mfla_1143 2.00018733029e-05 3.07484600537e-05 4338528946.75 +UniRef50_Q8X9B6 Biotin carboxylase 0.00343132376192 0.00267149555587 -3.06751970923e+11 +UniRef50_Q6A7Q4 Phosphopantetheine adenylyltransferase 0.00390502747089 0.00222179388572 -6.79542053932e+11 +UniRef50_A0A022KFC8 FCD domain protein 0.00017584751034 0.00452399232121 1.75539941789e+12 +UniRef50_A8I308 D hydantoinase 0.00141085008063 0.000393386043517 -4.10762717469e+11 +UniRef50_A8L8P5 UPF0225 protein Franean1_5815 1.47442169188e-05 8.54757163091e-05 28555174277.0 +UniRef50_Q8XDS0 Aspartate ammonia lyase 0.00371662976952 0.00223329296489 -5.98841270619e+11 +UniRef50_B9TEB7 0.000230693169858 1.55375221327e-05 -86860975243.3 +UniRef50_UPI0002378CC4 serine threonine protein kinase 5.10662009143e-06 0.00111183747181 4.46800825954e+11 +UniRef50_P0AEI0 Inner membrane protein YjiG 0.00429740806271 0.0039649657845 -1.34211027239e+11 +UniRef50_Q6YWN8 BKRF1 encodes EBNA 1 protein like 2.2129784845e-05 0.000213225057899 77147506734.6 +UniRef50_P47227 Cis 2,3 dihydrobiphenyl 2,3 diol dehydrogenase 1.20830995812e-05 1.29751677288e-05 360138858.093 +UniRef50_P77288 0.00142159318365 0.00256797134953 4.62806933208e+11 +UniRef50_Q5HRN0 UvrB UvrC domain protein 0.0164415474507 0.00555139918332 -4.3964864927e+12 +UniRef50_Q2S0M8 3 isopropylmalate dehydrogenase 6.14853873775e-05 0.00961525308831 3.85697325878e+12 +UniRef50_UPI0002E4EFAA hypothetical protein 0.000133468751449 8.15373332446e-05 -20965350799.3 +UniRef50_C5N2L9 Sua5 YciO YrdC YwlC family protein 0.0217879065272 0.00690338607265 -6.00906356113e+12 +UniRef50_Q28W83 0.000104839170676 1.98402702908e-05 -34315099139.3 +UniRef50_UPI0003B4DCFB ketol acid reductoisomerase 7.37937188625e-06 2.20856894897e-05 5937120883.34 +UniRef50_B7JTI5 SAF domain family 0.000136605303564 0.000219838738361 33602359016.7 +UniRef50_G4LM62 Outer membrane OprD family porin 0.000965852908246 0.00240066438947 5.79251002085e+11 +UniRef50_R8AF48 DNA single strand annealing protein 3.09122402051e-05 7.98239877779e-05 19746272709.8 +UniRef50_P07648 RecBCD enzyme subunit RecC 7.09842051955e-05 0.000110513205694 15958342576.6 +UniRef50_Q97FT9 Lon protease 0.00062658326208 0.000871016769331 98680806413.7 +UniRef50_A8LK44 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 6.30121142543e-05 3.45410562344e-05 -11494115501.8 +UniRef50_Q7CTM5 Replication protein C 2.61476560876e-05 5.3053551528e-06 -8414292651.17 +UniRef50_Q6F9Y0 Type II secretion system protein K 0.000118334165783 0.00692475896506 2.74783721569e+12 +UniRef50_R0DQ91 2.41315403657e-05 6.08747515742e-05 14833685254.8 +UniRef50_UPI0002ECAD7A hypothetical protein 3.91594156617e-06 0.000413821036438 1.65483716901e+11 +UniRef50_UPI00035E723E hypothetical protein 2.61762813861e-05 1.32801570306e-05 -5206323655.56 +UniRef50_UPI000479B32F hypothetical protein 4.60099476383e-05 1.11411166263e-05 -14076974968.2 +UniRef50_Q483C5 Holliday junction ATP dependent DNA helicase RuvA 0.00379776065942 0.00193431844603 -7.52294488553e+11 +UniRef50_H3TL67 Phenol hydroxylase 0.000985670080054 0.000662129088634 -1.30617468531e+11 +UniRef50_UPI0003B4F6D8 hypothetical protein 2.64174346183e-06 5.43829316898e-05 20888552623.4 +UniRef50_A5UNK2 0.0035845793656 0.00048412574623 -1.25169117298e+12 +UniRef50_O25657 4 hydroxy tetrahydrodipicolinate synthase 0.000159501122048 0.00497804360017 1.94530472858e+12 +UniRef50_B2GD08 Dihydroorotase 4.1560455647e-06 0.00195482858848 7.87510443021e+11 +UniRef50_Q1IY18 RNA ligase of LigT family 0.000376231882575 0.0195667760961 7.74745819345e+12 +UniRef50_P07607 Thymidylate synthase 2.66552955573e-05 9.42510242078e-05 27289225149.1 +UniRef50_O32044 Single stranded DNA specific exonuclease RecJ 5.1475362111e-05 0.000276808252674 90969653065.8 +UniRef50_UPI0003B455BB histidine kinase 3.26439894125e-06 1.65119946651e-05 5348216960.02 +UniRef50_UPI0004633AFB relaxase 1.41730229001e-05 5.2653357938e-06 -3596142594.43 +UniRef50_A0A033ZCU2 0.000175774479779 8.40279231199e-06 -67570004112.0 +UniRef50_P76481 0.00369475847658 0.000711800433208 -1.20425676712e+12 +UniRef50_Q466I1 DNA 3 methyladenine glycosylase III 0.00228798246567 0.000320996418691 -7.94096404799e+11 +UniRef50_Q02H50 0.00111109932407 0.00059602647001 -2.07941231839e+11 +UniRef50_P76486 0.00126122746107 0.000284871419803 -3.94166915095e+11 +UniRef50_P76485 0.00016700764064 0.000420878914765 1.02490948715e+11 +UniRef50_P76484 0.00475692025709 0.000350871332905 -1.778776019e+12 +UniRef50_G9UAR6 Nitrite extrusion protein 5.48394375904e-05 3.17769379433e-05 -9310614116.23 +UniRef50_Q3J6L0 Dimethlysulfonioproprionate lyase DddL 0.0199228529549 0.00138047354394 -7.4857861088e+12 +UniRef50_F4D682 Sel1 repeat protein 0.000347379744345 0.00686335542532 2.63057934242e+12 +UniRef50_UPI000289216F DNA mismatch repair protein MutS 2.31850332316e-06 2.08201817064e-05 7469354604.42 +UniRef50_A3JNX6 0.000236296152086 2.53817331871e-05 -85148739120.5 +UniRef50_R5AYM2 1.75382491039e-05 0.000193591288849 71074772558.8 +UniRef50_A3JNX5 0.000312141726568 2.99302073354e-05 -1.13932253439e+11 +UniRef50_UPI0004744F96 amidohydrolase 6.0412349673e-06 3.82915000607e-05 13019827773.5 +UniRef50_UPI0003B74A4B RNA polymerase subunit sigma 24 0.000119325596245 3.255348984e-05 -35030964169.2 +UniRef50_G8VJE3 BadF BadG BcrA BcrD ATPase family protein 0.000376108485017 0.00551566915926 2.07490371369e+12 +UniRef50_Q823P5 Na translocating NADH quinone reductase subunit E 1.4745186382e-05 4.29424316819e-05 11383573946.7 +UniRef50_S4XM14 7.23885105463e-06 5.18343814163e-05 18003762855.7 +UniRef50_Q7ZAK9 Segregation and condensation protein B 0.00553826383443 0.00158619682925 -1.59549794731e+12 +UniRef50_UPI000306724C thioredoxin 3.23952116692e-05 8.00773813649e-06 -9845522333.1 +UniRef50_B1VAN9 Proline tRNA ligase 5.41407800143e-06 1.53956858958e-05 4029697595.06 +UniRef50_R6KZL2 L serine dehydratase iron sulfur dependent alpha subunit 8.82090596597e-06 1.22046742601e-05 1366068783.85 +UniRef50_S5YFS5 0.000229585157287 6.0003333397e-05 -68462263307.4 +UniRef50_Q1GN45 0.000514583464975 0.00019287795798 -1.29876460944e+11 +UniRef50_A0A059LCY3 0.000134018694272 0.000111306225312 -9169302432.49 +UniRef50_D9SMI0 9.25678139208e-05 0.000970849450822 3.54573074545e+11 +UniRef50_B7H3X7 RNA methyltransferase, TrmH family, group 1 family protein 0.000189058091245 0.0069974121164 2.74861606785e+12 +UniRef50_A0A023RS70 0.000754971977708 0.00649521698905 2.31740735181e+12 +UniRef50_Q9RYG9 Aldehyde dehydrogenase 8.88899502839e-05 0.0474508543153 1.91206062108e+13 +UniRef50_Q4EF29 0.000532708507638 0.000225172491813 -1.2415606348e+11 +UniRef50_R9SK97 Energy converting hydrogenase A subunit L EhaL 0.00098441731494 0.00119319880887 84287651136.6 +UniRef50_K7RWV6 Type I phosphodiesterase nucleotide pyrophosphatase 0.000100395209802 0.00516792670462 2.04582465006e+12 +UniRef50_Q5Z380 Glutamyl Q tRNA synthetase 7.71306720528e-06 1.14489673521e-05 1508228733.92 +UniRef50_Q2J6V8 3 isopropylmalate dehydrogenase 4.99309380192e-05 0.00147466571303 5.75182912133e+11 +UniRef50_Q4L351 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.146690779987 0.0313604727515 -4.65602602932e+13 +UniRef50_UPI000474339B hypothetical protein, partial 2.68543045134e-05 4.25282675978e-05 6327771238.33 +UniRef50_C5C6N2 Cobyrinic acid ac diamide synthase 4.08622150193e-06 2.75030285068e-05 9453652344.41 +UniRef50_U7GP52 0.000498031644221 0.00013478540219 -1.46646965441e+11 +UniRef50_O26880 Probable cobyric acid synthase 0.00184492692467 0.00126786892769 -2.32965394679e+11 +UniRef50_UPI0003783691 hypothetical protein, partial 4.90056105217e-06 7.37651023192e-06 999571067.178 +UniRef50_A3PFT3 0.0121008246677 0.00195334490879 -4.09666210225e+12 +UniRef50_L0A0P5 3.5489640402e-05 4.19737100999e-05 2617698505.53 +UniRef50_P15028 Fe dicitrate binding periplasmic protein 0.00252953224648 0.00106137438557 -5.92713344772e+11 +UniRef50_V6YIB9 1.15897161265e-05 9.25509449579e-05 32685041585.2 +UniRef50_UPI0002627F77 hypothetical protein 7.25049225708e-05 2.14149768971e-05 -20625638012.6 +UniRef50_C0QHR6 UgpB 1.33020447329e-05 6.95275708449e-06 -2563285338.18 +UniRef50_UPI0003505377 PREDICTED 5.18284010692e-06 1.04173402818e-05 2113231955.14 +UniRef50_F0P831 Nitroreductase family protein 0.0375989831202 0.00526833858042 -1.30522779423e+13 +UniRef50_A6QEY2 0.0178351850004 0.00369144252742 -5.71000239959e+12 +UniRef50_V4QDF6 1.10005147011e-05 1.47186948936e-05 1501074970.91 +UniRef50_D7GAG5 Heat shock protein DnaJ 2.48988985043e-05 3.12457458379e-05 2562300153.15 +UniRef50_Q49ZB7 UPF0457 protein SSP0714 0.00949247154328 0.00175435666453 -3.1239719339e+12 +UniRef50_C7CIU9 0.000204788180408 4.57339379516e-05 -64212149494.5 +UniRef50_Q72I44 Maltose maltodextrin binding protein 0.000525796472968 0.0550429009884 2.2009224093e+13 +UniRef50_Q8FQP8 Fumarate hydratase class II 7.63395438253e-06 1.07974433758e-05 1277139326.96 +UniRef50_Q8GDY3 Isoprenyl transferase 7.22078346917e-06 1.29117543963e-05 2297514799.35 +UniRef50_UPI000363611D hypothetical protein, partial 3.79090304304e-07 2.97566443213e-06 1048268838.95 +UniRef50_E2XCC3 Porin thermoregulatory envY domain protein 3.95957943646e-05 6.31347907217e-05 9502981685.33 +UniRef50_UPI00037CBE46 hypothetical protein 1.58818851999e-05 5.09814010307e-06 -4353530227.01 +UniRef50_A0A017HI16 Putative inner membrane protein 1.04505148597e-05 1.8284873694e-05 3162826799.8 +UniRef50_A5UJ74 Chloramphenicol O acetyltransferase 0.00168940887183 0.000350871332905 -5.40384030165e+11 +UniRef50_Q2S4B9 Leucyl phenylalanyl tRNA protein transferase 1.63919476428e-05 4.0630313711e-05 9785325819.93 +UniRef50_Q9KPL8 Thymidine phosphorylase 0.00275091960508 0.00089763764448 -7.48192669821e+11 +UniRef50_A5UJ64 0.00171708182643 0.00061738684013 -4.43960360744e+11 +UniRef50_Q38XI1 Phosphopentomutase 1.39465648841e-05 1.51672510828e-05 492805997.919 +UniRef50_T2A3N6 Replication initiation factor 0.000137936414928 0.00878178138178 3.48962628502e+12 +UniRef50_A0A034MYR1 0.00813166827365 0.000899594919637 -2.91967676053e+12 +UniRef50_A4X046 4.14177856367e-05 1.8310656756e-05 -9328631485.5 +UniRef50_P10173 Fumarate hydratase, mitochondrial 7.68565490509e-06 2.87440250094e-05 8501522426.37 +UniRef50_E3GZR7 C4 dicarboxylate transporter malic acid transport protein 0.000259768094505 0.00134842505848 4.39504175678e+11 +UniRef50_UPI00036C6CE0 methionyl tRNA synthetase 9.53304226055e-06 1.65977317256e-05 2852101830.53 +UniRef50_A3M9C4 0.000116030529356 0.00540148742801 2.13380380983e+12 +UniRef50_C7M0E4 2 isopropylmalate synthase 0.00868456851448 0.00318708548283 -2.21940136158e+12 +UniRef50_UPI00034512D5 hypothetical protein 0.000152644904249 4.99342069486e-05 -41465568902.0 +UniRef50_Q3J3B7 ABC transporter, fused ATPase and inner membrane subunits 0.00347920830776 0.00110754262457 -9.57470539915e+11 +UniRef50_B1YMH0 tRNA dimethylallyltransferase 7.34687766961e-06 8.8742903743e-06 616635252.345 +UniRef50_F8LKP2 0.00512369866803 0.0026842517056 -9.84834674114e+11 +UniRef50_Q1QNK0 0.020792651585 0.00953177936199 -4.54615230287e+12 +UniRef50_B9KKX9 Na+ solute symporter 0.00868768981435 0.0017356498707 -2.80662383638e+12 +UniRef50_UPI0004689C7D succinylglutamate desuccinylase 0.000139811249249 1.34969873678e-05 -50994617571.7 +UniRef50_A0A024RXB9 0.000617107139422 6.32769582685e-05 -2.23588040392e+11 +UniRef50_P54304 Oxygen independent coproporphyrinogen III oxidase like protein YqeR 2.09034716046e-05 0.000156390135144 54697628679.0 +UniRef50_UPI000472E48E hypothetical protein 3.30198369461e-05 1.41672052991e-05 -7611038743.7 +UniRef50_B5Z6E9 Acetyl coenzyme A synthetase 0.000126903165919 0.00389659082509 1.52186916728e+12 +UniRef50_UPI00036C5675 hypothetical protein, partial 1.65298260422e-05 2.11167240586e-05 1851787016.79 +UniRef50_C7RVA0 Transposase IS4 family protein 5.63871600227e-05 1.67445832553e-05 -16004194710.1 +UniRef50_Q9HZ55 Ribosomal large subunit pseudouridine synthase B 0.000679746682604 1.20817857143e-05 -2.69544512044e+11 +UniRef50_D2Z027 O ureido L serine synthase 5.78628026039e-05 9.74749310295e-06 -19424740886.8 +UniRef50_M3DVL4 9.06873424513e-06 4.15391734511e-06 -1984171894.12 +UniRef50_I6STE7 Transcriptional regulator 0.00413494153596 0.000986952797098 -1.27088168404e+12 +UniRef50_S3FNF7 Nitrite extrusion 1 domain protein 4.11420351115e-05 3.78116226998e-05 -1344528359.36 +UniRef50_Q9XDH5 DNA polymerase III subunit alpha 1.77744155347e-06 1.11834011294e-05 3797301304.91 +UniRef50_A6LRS6 Methyl accepting chemotaxis sensory transducer 0.000362914169993 0.000576700963191 86308351873.0 +UniRef50_UPI00036C22DF hypothetical protein, partial 3.13781564694e-05 4.69435660614e-05 6283946861.35 +UniRef50_A4FVV8 Tetrahydromethanopterin S methyltransferase subunit H 0.00460681242472 0.000420878914765 -1.68991272515e+12 +UniRef50_UPI000469A37F hypothetical protein 3.76370854623e-05 2.62625779443e-05 -4592028265.92 +UniRef50_Q8CJR5 Phosphate acetyltransferase 3.63169941818e-06 1.29372822869e-05 3756777996.45 +UniRef50_Q8CQB7 OpuCB protein 0.00933715815705 0.00575446329409 -1.44637788079e+12 +UniRef50_D5H607 GTP binding protein TypA 0.000402610177941 0.00554073267646 2.07432310451e+12 +UniRef50_UPI00040B08A2 hypothetical protein 7.9878624342e-06 2.45554915025e-05 6688555162.54 +UniRef50_R7PVW1 0.00526133122526 0.000799776047734 -1.80118457461e+12 +UniRef50_Q9RU45 6.50090681193e-05 0.00193362323375 7.54382469139e+11 +UniRef50_UPI0003B4FB17 succinyl CoA synthetase subsunit alpha 8.03005203118e-06 6.26067677485e-06 -714318503.656 +UniRef50_B4U3L2 Glycine D amino acid oxidases family 0.00520826489182 0.00427899087141 -3.75159325514e+11 +UniRef50_Q0BPU7 Protoheme IX farnesyltransferase 0.00354625724806 0.000938789246667 -1.05266682939e+12 +UniRef50_UPI00035C8085 MULTISPECIES 3.38538896111e-06 2.45922718809e-05 8561478872.44 +UniRef50_D6K0E4 Tellurium resistance protein 8.55281585193e-05 0.000282812834405 79646244610.4 +UniRef50_A4WRY9 0.00593547535954 0.0297460523065 9.61262210214e+12 +UniRef50_Q74HC8 N acetylmuramic acid 6 phosphate etherase 7.07622268436e-06 1.10689666031e-05 1611919716.47 +UniRef50_S4MRC0 4.25462990936e-05 0.0007980793015 3.05017944504e+11 +UniRef50_B9E7V9 Two component response regulator 0.0185652325943 0.00629951231988 -4.95182179209e+12 +UniRef50_Q7WEH6 Hemin import ATP binding protein HmuV 2.346945672e-05 0.000279017478474 1.03167872309e+11 +UniRef50_C5C1A7 Ribulokinase 0.000158806901612 0.00415406081521 1.6129330322e+12 +UniRef50_UPI00035EC645 hypothetical protein 3.64714282561e-05 0.000140116837553 41842923605.4 +UniRef50_Q8CND6 FDHD protein 0.00121392972285 0.00105564091509 -63903134114.8 +UniRef50_A1VV51 4.40227065256e-05 7.72371549974e-06 -14654348115.9 +UniRef50_G4LN90 Acyl CoA synthetase 0.000656381761222 0.000231562543847 -1.71504731172e+11 +UniRef50_D8THS6 Pathogenesis related protein 1 like protein 4.75931520965e-06 4.28543409532e-05 15379429371.2 +UniRef50_U3SRT7 0.00185279851598 0.0019055539861 21298030669.9 +UniRef50_X7Z2N8 0.00214830408532 0.00187085625902 -1.12009092145e+11 +UniRef50_E4REV8 BirA 0.00118503109539 0.000527475429582 -2.65463291402e+11 +UniRef50_A6LXY3 Diguanylate cyclase 0.000203496489951 0.00144348123307 5.00597057121e+11 +UniRef50_Q8RKJ0 Putative ribitol 5 phosphate dehydrogenase 0.00935580263371 0.00204932539342 -2.94971452246e+12 +UniRef50_A3JXP6 9.00490404456e-06 5.6721191515e-06 -1345486159.2 +UniRef50_B4U3L6 DNA replication protein DnaD 0.00859148713415 0.00629849185467 -9.25710332542e+11 +UniRef50_UPI0003D0F47B PREDICTED 5.01228085039e-06 8.17100699863e-05 30963838661.9 +UniRef50_M1MTG9 Tetratricopeptide TPR_2 repeat containing protein 0.000299563807054 0.000313615848291 5672981485.31 +UniRef50_UPI000421FD3A acetyl CoA acetyltransferase 5.43840349299e-06 0.000155847162666 60721861801.2 +UniRef50_A7WYS8 Lysine tRNA ligase 0.0282354385134 0.0108128239338 -7.03372330531e+12 +UniRef50_UPI00035D12EA hypothetical protein 0.000358642225905 0.000103607080292 -1.02960817917e+11 +UniRef50_B7KKV6 Transposase, IS605 OrfB family 0.000138104630066 0.0408555658011 1.64381387342e+13 +UniRef50_UPI000467FC65 hypothetical protein 3.65300548237e-06 9.01597706282e-06 2165097438.09 +UniRef50_G8VDJ6 Kinase, PfkB family protein 0.000486144684264 0.00495801056252 1.80534713102e+12 +UniRef50_K4LCD0 Transposase 0.000701437052639 0.000461688595543 -96789394174.1 +UniRef50_I3THN5 ABC transporter, periplasmic solute binding protein 0.00705048334824 0.000360658156203 -2.70076452341e+12 +UniRef50_R9YM38 0.00341502750521 0.0010361989656 -9.60362272949e+11 +UniRef50_H3USA6 0.00478524494577 0.00114184482882 -1.47088533676e+12 +UniRef50_UPI0003820DEC DNA binding protein 5.76808633565e-05 0.000330145169625 1.09997183953e+11 +UniRef50_D0WAX6 0.000173821309264 0.00176994996211 6.44376723857e+11 +UniRef50_C6NU33 DNA repair protein RadA 7.29874260036e-06 6.10225328375e-05 21688953383.8 +UniRef50_D3EY08 0.00868313021052 0.000726188619325 -3.21231496302e+12 +UniRef50_J7TVX7 Integral membrane protein 0.000184790683319 4.15688804925e-05 -57820399330.0 +UniRef50_A5IUD7 Phage transcriptional regulator, RinA family 0.0240077126472 0.00292464598326 -8.51149273054e+12 +UniRef50_A6Q5I8 Glutamate tRNA ligase 2 4.55477150107e-06 1.30156777978e-05 3415771698.99 +UniRef50_Q1QJ73 0.000117090754681 3.20068933125e-05 -34349398930.9 +UniRef50_Q3IVG4 Hemolysin type calcium binding protein 0.00363163566087 0.00100026594597 -1.06231624444e+12 +UniRef50_Q9AAL4 N succinylarginine dihydrolase 1 1.39343843814e-05 4.69487016485e-05 13328285012.0 +UniRef50_Q223D6 ATP synthase subunit beta 1 2.38968077398e-05 5.63111242768e-05 13086057354.4 +UniRef50_M1LNT9 ABC type metal ion transport system, periplasmic component surface adhesin 0.000387272504918 0.000406691331196 7839618464.22 +UniRef50_B2TL84 Cyclic nucleotide binding domain protein 0.000189374241902 0.00383650078313 1.47238973997e+12 +UniRef50_UPI000361F512 hypothetical protein 1.66122576576e-05 1.31223973287e-05 -1408899440.18 +UniRef50_B9C0V9 5.43776236324e-05 0.000578447554131 2.11573462004e+11 +UniRef50_J0EHT6 0.0284727798813 0.00625492954049 -8.96961882626e+12 +UniRef50_UPI00036BFB9E hypothetical protein 6.77397920763e-05 1.47148639922e-05 -21406814156.6 +UniRef50_B9KQI2 0.00456910066061 0.0018191574448 -1.11018582182e+12 +UniRef50_P0A2U6 Zinc transport system ATP binding protein AdcC 0.00743395409295 0.0110868924 1.47473602115e+12 +UniRef50_D9SLD8 Fibronectin binding A domain protein 0.000275808980077 0.00208680996202 7.3112331989e+11 +UniRef50_UPI000248DBE4 multidrug transporter 3.53340808004e-06 0.0001220956294 47865023668.9 +UniRef50_UPI0003B77FDC peptidyl tRNA hydrolase 1.78154991167e-05 4.4239483223e-05 10667686642.5 +UniRef50_Q93YZ7 Acetolactate synthase small subunit 2, chloroplastic 1.87022389469e-05 0.000326351724296 1.24201872519e+11 +UniRef50_V7C557 2.43715819432e-05 8.28080739986e-07 -9504800346.98 +UniRef50_A6LYZ3 0.000236872393028 0.000806912347246 2.30132124695e+11 +UniRef50_B0V8I1 0.000114044105391 0.00507037285646 2.0009307378e+12 +UniRef50_Q9FA52 Glucans biosynthesis glucosyltransferase H 0.00672991507532 0.00163025750352 -2.05879434157e+12 +UniRef50_Q6A910 Orotate phosphoribosyltransferase 2.86615951336e-05 0.00385141541149 1.54329262613e+12 +UniRef50_B5F1C0 Cysteine desulfurase IscS 0.00373632505104 0.00106969172297 -1.07655259781e+12 +UniRef50_A3M8T8 Phage integrase 0.000467559904254 0.00543028547724 2.00351321331e+12 +UniRef50_B4IVR0 GE15000 8.01456451903e-05 0.00012566668307 18377401598.0 +UniRef50_D3QH80 Hydroxymethylglutaryl CoA reductase 0.0261247515505 0.00542510070036 -8.35670306147e+12 +UniRef50_D5BRV4 Binding protein dependent transport systems inner membrane component 0.0186131191613 0.0031797774973 -6.23062941816e+12 +UniRef50_Q9K678 PTS system mannitol specific EIICB component 7.25565611933e-06 0.00155665267991 6.25510591744e+11 +UniRef50_Q1MHS1 Ribose import ATP binding protein RbsA 1 5.72047374741e-05 6.58279811933e-06 -20436698118.6 +UniRef50_C1KWM3 3 phosphoshikimate 1 carboxyvinyltransferase 0.00672018972832 0.00678986082623 28127077186.8 +UniRef50_A3PN67 0.00505107074785 0.0021895732016 -1.15522167394e+12 +UniRef50_A4SIM5 Argininosuccinate synthase 3.53388418802e-06 6.84757887109e-05 26217843782.7 +UniRef50_B7HEC5 SsrA binding protein 0.0366579350599 0.0056128352379 -1.25332877644e+13 +UniRef50_Q7NCQ9 Valine tRNA ligase 3.2344464246e-06 2.61089678025e-06 -251734643.239 +UniRef50_Q2T8Y7 Probable chemoreceptor glutamine deamidase CheD 2 3.90630920259e-05 1.74103418452e-05 -8741480957.07 +UniRef50_P95646 Anthranilate synthase component 1 0.00105112652862 0.00013832045875 -3.68511011797e+11 +UniRef50_UPI00047BA852 hypothetical protein 1.62657406834e-05 7.84398002079e-06 -3399968126.12 +UniRef50_UPI00035E8084 hypothetical protein 2.30164997838e-05 4.28964192602e-06 -7560262321.58 +UniRef50_Q0AQH3 Ribosomal RNA large subunit methyltransferase E 0.000330982315753 0.000102764576072 -92134302055.8 +UniRef50_UPI0003C1AC12 PREDICTED 1.03607069794e-05 1.6649208032e-05 2538745043.52 +UniRef50_B9KMC5 Transcriptional regulator, LysR family 0.00381060621614 0.000975993471022 -1.14436794981e+12 +UniRef50_UPI0002DED034 hypothetical protein 0.000182224950357 0.000210983997576 11610380275.5 +UniRef50_UPI00047129D7 transposase 0.000102159962651 0.0172533378248 6.92414097155e+12 +UniRef50_UPI00036A3DAC hypothetical protein 8.8639502822e-05 4.14199314228e-05 -19063120423.2 +UniRef50_Q6F9R1 Protoheme IX farnesyltransferase 7.70137112277e-06 0.0030296902406 1.22001399058e+12 +UniRef50_Q9UJM8 Hydroxyacid oxidase 1 5.03996479327e-06 0.000100104296414 38378637245.8 +UniRef50_A6M2U7 Response regulator receiver sensor signal transduction histidine kinase 0.00070534543686 0.00120553686606 2.01933418007e+11 +UniRef50_A4WXL5 0.00457967202102 0.00101645984431 -1.43851248127e+12 +UniRef50_UPI0004790384 hypothetical protein 2.18716966552e-05 5.76142044956e-05 14429689025.1 +UniRef50_UPI00037C9F17 hypothetical protein 0.00122371667986 0.000257609826611 -3.90029192121e+11 +UniRef50_G0HE81 Alcohol dehydrogenase 0.00017184491147 0.00616768952251 2.42059604676e+12 +UniRef50_C4Y1J5 Isocitrate dehydrogenase, mitochondrial 0.000357524976554 0.000136514626931 -89224590244.8 +UniRef50_A0A038FV36 3.81163807889e-05 2.56416453118e-05 -5036203794.32 +UniRef50_UPI0002F90E7D hypothetical protein 2.02275777247e-05 0.00109304893085 4.33111145257e+11 +UniRef50_C8WIL3 2 nitropropane dioxygenase NPD 0.000353447267603 0.00630030521259 2.40081952855e+12 +UniRef50_O29329 Putative branched chain amino acid aminotransferase 0.000129646082167 3.09431216509e-05 -39847596381.9 +UniRef50_UPI00036F30A5 hypothetical protein 1.6177650991e-05 3.76971102985e-05 8687669795.9 +UniRef50_M1MI89 Sensor histidine kinase YesM 0.000364378607423 0.00174270182161 5.56445995496e+11 +UniRef50_A3M8H3 Chemotactic signal transduction system component 0.000187178460387 0.00735889845319 2.89531136799e+12 +UniRef50_UPI0001FFE87D ABC type Fe3+ transport system, periplasmic component 0.000110952463117 8.22955941343e-05 -11569129667.6 +UniRef50_UPI0003807E5F hypothetical protein, partial 0.00095642428546 0.107632591229 4.30664776591e+13 +UniRef50_UPI0003B5D592 adenylosuccinate synthetase 2.63329123836e-05 2.41355870463e-05 -887087202.882 +UniRef50_Q6MCV4 Spermidine putrescine import ATP binding protein PotA 0.000150905353334 6.06413392275e-05 -36440690158.8 +UniRef50_UPI000475EAAA epimerase 6.45370730131e-06 4.21705017338e-05 14419308206.8 +UniRef50_M9SCU9 0.000329202897256 0.000228927678448 -40482336348.1 +UniRef50_F7P1G2 4.94770542113e-05 3.0174299474e-05 -7792758958.89 +UniRef50_UPI0001BC2D8F putative enterobactin synthetase component A 5.25925959356e-06 1.19258930283e-05 2691401726.4 +UniRef50_R0P3C6 Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain 0.012543489925 0.042977778887 1.22866959247e+13 +UniRef50_Q02KY6 0.00321364903152 0.00819906267417 2.01267266544e+12 +UniRef50_Q2GL45 30S ribosomal protein S8 0.00441245341561 0.00138709361531 -1.22137487672e+12 +UniRef50_A7ZLN4 ABC transporter, ATP binding protein 0.00173059899336 0.000355150487929 -5.55285440293e+11 +UniRef50_G8LHY7 0.00411827725455 0.0011937024265 -1.18068674665e+12 +UniRef50_W4KP08 0.000104639966869 3.86495865146e-05 -26641126342.1 +UniRef50_C5C7X4 Chromosomal replication initiator protein DnaA 0.000152941569257 0.00583511166666 2.29396179639e+12 +UniRef50_UPI00047B2DE4 hypothetical protein 1.51936233275e-06 2.30705803702e-05 8700491184.92 +UniRef50_UPI00036A72D9 hypothetical protein 8.16615648056e-05 5.83553331655e-05 -9409011712.73 +UniRef50_P39308 0.00309831995768 0.000246097254331 -1.15147730605e+12 +UniRef50_Q7MT94 Tryptophan tRNA ligase 7.75801686278e-06 6.37280228483e-06 -559228123.613 +UniRef50_A0A023RUT4 NADH 9.29768445451e-05 0.00788419021807 3.14540844783e+12 +UniRef50_S6P0Z4 ABC transporter permease 0.000100355053352 7.23019300995e-05 -11325390107.6 +UniRef50_A5UKM7 Protein disulfide isomerase, thioredoxin related 0.0116263031349 0.00226415187466 -3.77961535027e+12 +UniRef50_V2DIK3 3.35413986389e-05 3.09888708567e-05 -1030486788.71 +UniRef50_P83221 Peptidyl prolyl cis trans isomerase cyp18 0.000260335164724 0.00122422355603 3.89133571811e+11 +UniRef50_UPI0003B343E5 imidazoleglycerol phosphate dehydratase 0.000113767503552 2.32338350358e-05 -36549552953.0 +UniRef50_Q2YTP0 2 succinylbenzoate CoA ligase 0.0088624456869 0.00124339747476 -3.07590325948e+12 +UniRef50_A0A017HIG9 4.7770840459e-05 1.16712820749e-05 -14573834711.1 +UniRef50_Q6CX23 Glyceraldehyde 3 phosphate dehydrogenase 2 5.00631177316e-05 1.72323339307e-05 -13254190299.4 +UniRef50_G2TA75 TRAP transporter solute receptor TAXI family protein 0.000107399778315 9.74206972388e-06 -39425615353.1 +UniRef50_UPI000477C7AD DNA gyrase subunit A 2.45962173019e-06 4.24370695408e-06 720257098.072 +UniRef50_UPI0003B4541A coproporphyrinogen III oxidase 8.51794744736e-06 9.47936903594e-06 388137693.279 +UniRef50_Q8DVU8 Putative hydrolase SMU_367 0.00280682047299 0.00155719042023 -5.04490986984e+11 +UniRef50_UPI00035C6E64 hypothetical protein, partial 1.90868809566e-05 0.000202376363391 73996213273.5 +UniRef50_UPI00016AE124 glycosyltransferase family 4 1.02923970582e-05 2.7818279007e-05 7075413609.49 +UniRef50_Q6A7G2 Conserved membrane protein 0.000264592982837 0.00545241360452 2.09438684669e+12 +UniRef50_M0CR54 PKD domain containing protein 3.95926742616e-06 3.61637838177e-06 -138428514.942 +UniRef50_Q46891 Putative hydroxypyruvate isomerase YgbM 0.00344280515231 0.00118621754893 -9.11012106928e+11 +UniRef50_O34718 Major myo inositol transporter IolT 0.000395104281576 0.00189983605869 6.07478683555e+11 +UniRef50_D8GNL4 Dihydrodipicolinate synthase 0.000881676249207 0.00175470218562 3.52451283763e+11 +UniRef50_UPI000304D536 hypothetical protein 1.44428921972e-05 1.29567811985e-05 -599961246.808 +UniRef50_UPI000471E9C0 hypothetical protein 4.08836139677e-05 0.000194630009402 62069306517.1 +UniRef50_A6M1I0 Extracellular solute binding protein, family 3 0.000256357290153 0.00261415192231 9.51870626397e+11 +UniRef50_A0QUX7 Acetolactate synthase small subunit 3.74335187026e-05 0.000640449166123 2.43444816698e+11 +UniRef50_Q1M3I8 0.00417888188414 0.000199763272963 -1.60641901261e+12 +UniRef50_J9G6J0 Membrane protein 8.5861223467e-05 0.00215981620182 8.37281075049e+11 +UniRef50_UPI000365FCDF hypothetical protein 4.04327578996e-05 1.95363742338e-05 -8436126513.35 +UniRef50_UPI000308E21F tail fiber protein 2.74944922881e-06 8.94109517698e-06 2499643449.32 +UniRef50_B9KVR5 Cobyrinate a,c diamide synthase hydrogenobyrinic acid a,c diamide synthase 5.87760757658e-06 8.69077452561e-05 32712860932.8 +UniRef50_UPI00047054EB hypothetical protein 7.43970942223e-05 5.43977524304e-05 -8073979700.91 +UniRef50_UPI0003792A51 hypothetical protein 2.07699054691e-06 1.41522606495e-05 4874934720.65 +UniRef50_I4YZ70 Integral membrane protein MviN 3.69631303844e-05 2.90818763095e-05 -3181758983.9 +UniRef50_A8FIC1 Serine hydroxymethyltransferase 0.000127489980519 0.000166760288553 15853905254.2 +UniRef50_D8JKE9 Outer membrane porin protein 0.000232297985442 0.00862024098171 3.38631551923e+12 +UniRef50_UPI000369E2AC hypothetical protein 1.22888122016e-05 1.68311188226e-05 1833784923.27 +UniRef50_F0RQZ2 ABC type transporter, periplasmic subunit 3.22008348285e-06 3.87402221705e-05 14339915869.3 +UniRef50_Q8CRR5 0.0119267904035 0.00347297129013 -3.41291051609e+12 +UniRef50_UPI000473A232 amino acid ABC transporter permease 5.55050411192e-05 7.47240347728e-05 7758943581.53 +UniRef50_U5NMU5 0.0143920291139 0.00254724299656 -4.78188550742e+12 +UniRef50_U5NMU8 0.0059355935752 0.00288375786677 -1.23206352573e+12 +UniRef50_R6GNA7 Peptidoglycan binding LysM 0.000346112355382 0.00232851979323 8.00322209535e+11 +UniRef50_A5WCM3 Peptidoglycan binding LysM 0.000241462252992 0.00534092944532 2.05871748304e+12 +UniRef50_D0DDK5 0.00210084356972 0.000337474609877 -7.11893688058e+11 +UniRef50_Q26HR0 0.000299429818387 0.000382737424664 33632302953.3 +UniRef50_V4KQA6 Oxidoreductase 5.49837193262e-05 0.000304078364772 1.00562565102e+11 +UniRef50_M9S8V5 Oxidoreductase 8.85424524313e-05 0.000143823070714 22317463970.2 +UniRef50_UPI00037B160E hypothetical protein 6.21887955241e-05 1.15010309726e-05 -20463272558.3 +UniRef50_C6SJ34 Prephenate dehydrogenase 0.000413772243308 0.00261093735615 8.87022518301e+11 +UniRef50_UPI0003A88B86 ATPase 4.87784573465e-06 2.87074446075e-06 -810291414.176 +UniRef50_B5F4R2 NADPH dependent 7 cyano 7 deazaguanine reductase 0.00457981763693 0.000702762717764 -1.56521464768e+12 +UniRef50_P50252 Adenosylhomocysteinase 0.00318206327514 0.000519979206723 -1.07471600587e+12 +UniRef50_C5N5T0 Bacteriocin biosynthesis cyclodehydratase, SagC family 0.00789438749373 0.00385380281108 -1.63123361994e+12 +UniRef50_Q7VG78 Probable GMP synthase [glutamine hydrolyzing] 1.45641272358e-05 1.5552333429e-05 398950966.849 +UniRef50_Q6FCS8 ATP phosphoribosyltransferase regulatory subunit 0.000117596881266 0.0106861048564 4.26663635972e+12 +UniRef50_Q3ZXA9 Peptide deformylase 2.27385940213e-05 6.05781521844e-05 15276293974.0 +UniRef50_UPI0003958315 PREDICTED 5.19507593474e-05 3.70690726827e-05 -6007919525.37 +UniRef50_UPI00030811AD hypothetical protein 1.01575844376e-05 3.70410502223e-05 10853185034.5 +UniRef50_F6G330 NADPH 0.000180615305666 0.000368410671781 75815293808.9 +UniRef50_A0A024JQL9 Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit 2.0824653991e-05 6.17305624286e-05 16514217208.2 +UniRef50_P29922 NADH quinone oxidoreductase chain 10 0.000316720518374 7.63170756914e-05 -97053819893.1 +UniRef50_X2HFC0 Electron transport complex protein RnfB 0.000587783848974 0.00124088424906 2.63664645958e+11 +UniRef50_UPI000477E177 hypothetical protein 7.85384613765e-05 2.59707217722e-05 -21222241557.0 +UniRef50_O67012 Guanosine 3,5 bis 3 pyrophosphohydrolase 4.64553250333e-06 2.87446146447e-06 -715003111.873 +UniRef50_UPI00047897DA xanthine permease 1.26424488597e-06 8.00957878646e-05 31825261272.3 +UniRef50_A6M0Q8 Periplasmic binding protein LacI transcriptional regulator 0.00037065852589 0.00124342965031 3.52348413034e+11 +UniRef50_D2JDC8 0.0569698015977 0.0107849684656 -1.86453838871e+13 +UniRef50_B8HGC5 Acetylglutamate kinase 4.78547149843e-05 1.67475798044e-05 -12558332199.6 +UniRef50_UPI000360FD52 acetyl CoA carboxylase carboxyl transferase subunit alpha 7.42548437424e-06 3.23382240376e-05 10057578715.8 +UniRef50_UPI0003C369DA 4.4264125206e-07 1.3328195886e-05 5202056529.24 +UniRef50_D9SL48 Extracellular solute binding protein family 1 0.000203935256531 0.00135425872638 4.64399700835e+11 +UniRef50_Q8CPL9 Lipoprotein VsaC 0.00784270126571 0.00282553854699 -2.02549015706e+12 +UniRef50_P25084 Transcriptional activator protein LasR 0.000511082280691 0.000249212409446 -1.05720080526e+11 +UniRef50_C0ZBE7 Deoxyadenosine deoxycytidine kinase 0.00858121638011 0.000561653906887 -3.23759578154e+12 +UniRef50_UPI0003B3EDEC ketol acid reductoisomerase 3.44636184566e-06 6.60663715874e-06 1275841924.83 +UniRef50_UPI0003655A5A hypothetical protein 3.2591751867e-05 1.41151778963e-05 -7459219645.03 +UniRef50_A0A023VR15 0.00382509961169 0.00154359420418 -9.21071730231e+11 +UniRef50_A6UB50 CreA family protein 0.000355370959716 0.00018831296088 -67443364162.3 +UniRef50_UPI0003FA4F40 hypothetical protein 4.98863595587e-05 2.33599765602e-05 -10709026331.8 +UniRef50_E6N0G1 Cell division protein ZipA 0.000352054485057 0.00259589369247 9.05865423035e+11 +UniRef50_Q6N8F8 Formyl coenzyme A transferase 0.00289590993037 0.000577098329252 -9.3613269839e+11 +UniRef50_Q65Q81 5 nucleotidase SurE 0.00123296781655 0.00026565220857 -3.90517181239e+11 +UniRef50_G2DGI6 Proton translocating NADH quinone oxidoreductase, chain M 1.59955918616e-05 3.58023446094e-05 7996229140.48 +UniRef50_UPI00046F0142 MULTISPECIES 4.9556509195e-06 8.01157740131e-06 1233715021.14 +UniRef50_Q5HRH4 Putative long chain fatty acid CoA ligase VraA 0.010046404653 0.003066499627 -2.81787331206e+12 +UniRef50_UPI0003C1970F PREDICTED 4.3565678018e-06 1.01824494263e-05 2351979903.42 +UniRef50_D2JC88 0.00274260153085 0.000386581595083 -9.51154159686e+11 +UniRef50_P30131 Carbamoyltransferase HypF 0.00188933468516 0.000253397898209 -6.60447756094e+11 +UniRef50_UPI00037CE6E8 hypothetical protein 3.1712093455e-05 8.33912385247e-05 20863505039.1 +UniRef50_H8H0T6 ABC type Fe3+ siderophore transport system, periplasmic component 5.00401948346e-05 0.0121619189773 4.88971409396e+12 +UniRef50_G5QK83 Transcription repair coupling factor 1.98278394162e-05 4.95979438203e-05 12018556468.2 +UniRef50_W1YIT0 5.22816770188e-05 2.19216543551e-05 -12256713708.7 +UniRef50_P56908 NADH quinone oxidoreductase subunit D 2 1.53916116559e-05 4.06178214954e-05 10184130472.6 +UniRef50_Q5F6M1 Cell division protein FtsQ 0.000155985945804 0.00164425241496 6.00831436683e+11 +UniRef50_X8N4L8 Putative lipoprotein 0.000109583671999 0.00102929777806 3.71299870778e+11 +UniRef50_C6CTD5 Glycosyl transferase family 2 0.000166783205682 0.00126515309275 4.43425401924e+11 +UniRef50_Q1IKB4 Imidazoleglycerol phosphate dehydratase 0.000174690371268 5.58775551211e-05 -47966191875.8 +UniRef50_UPI000349BE1A hypothetical protein 1.75130162644e-07 1.32946712678e-06 466019997.731 +UniRef50_A6LZ95 0.000862049552083 0.00179738736202 3.77607351757e+11 +UniRef50_X6GZW0 6.42653548763e-05 5.08109691414e-05 -5431700625.06 +UniRef50_P0AC77 3 deoxy D manno octulosonic acid transferase 0.00205425422367 0.000441164308773 -6.51224193484e+11 +UniRef50_UPI0002E36CA8 hypothetical protein 4.39002915566e-05 0.000132802502467 35890913497.3 +UniRef50_UPI00037A380E hypothetical protein 0.00010536512412 0.00177688041526 6.74811234832e+11 +UniRef50_A0A023VMY7 Peptidase M16 0.00755958782603 0.00341911950191 -1.67155787171e+12 +UniRef50_O83806 Tyrosine tRNA ligase 2.51273111992e-05 1.21985504666e-05 -5219499361.49 +UniRef50_Q5F5C4 Thiazole synthase 0.000143895548483 0.00219247396442 8.27036245399e+11 +UniRef50_UPI0004679209 hypothetical protein 6.49497301643e-06 1.89181844318e-05 5015402898.34 +UniRef50_T1D567 Thiamine biosynthesis protein ThiC 1.19925264764e-05 5.14889209919e-05 15945179141.2 +UniRef50_UPI0003345F86 2.41069267881e-05 3.14305163161e-05 2956622963.0 +UniRef50_A5W3L7 Short chain fatty acid transporter 0.000624552368801 0.00734387794309 2.71267418974e+12 +UniRef50_Q59966 Cysteine synthase, plasmid 0.0346076975164 0.0119846152909 -9.13321591087e+12 +UniRef50_UPI0003C1981F 1.65900017103e-05 1.62767901832e-05 -126447337.028 +UniRef50_E4U6C3 Extracellular solute binding protein family 1 1.47422429993e-05 5.44840033952e-06 -3752038330.03 +UniRef50_UPI0002BCBF5F PREDICTED 7.04766363345e-05 0.000728332780576 2.65584598233e+11 +UniRef50_U5MSM7 Metallophosphoesterase 0.000336454474477 0.00119069431316 3.44867105578e+11 +UniRef50_M4HRQ0 Radical SAM protein, TIGR01212 family 2.572993583e-05 0.00227005879318 9.06063100724e+11 +UniRef50_E0SZG6 Transcriptional regulator 0.00469262597334 0.00545795093686 3.08971079366e+11 +UniRef50_Q0ARN8 Peptidyl tRNA hydrolase 4.33627225589e-05 5.95856346201e-05 6549388676.62 +UniRef50_A4WR48 0.000210886027289 0.000287179940213 30800788879.0 +UniRef50_UPI000371F47B hypothetical protein 3.82422628007e-05 2.23627205449e-05 -6410766072.56 +UniRef50_I4CC90 CRISPR associated helicase, Cas3 family 5.69566866217e-05 3.46025070634e-05 -9024656604.32 +UniRef50_T6MH84 Flagellar P ring protein 0.000950293626516 0.000528546110857 -1.70264647496e+11 +UniRef50_M4MLW3 9.54252696068e-05 0.000143818702005 19537022513.3 +UniRef50_A7ZJK9 0.00125700249557 0.000296360674957 -3.87822891382e+11 +UniRef50_UPI0003B57AFE amino acid permease 7.48046472609e-05 9.94530932053e-06 -26184510640.1 +UniRef50_K2IJJ6 1.60631681879e-05 4.46391767117e-05 11536485308.1 +UniRef50_A0A020BC98 6.02910244569e-05 9.82432910949e-05 15321795768.4 +UniRef50_G7MBK8 Membrane protein insertase, YidC Oxa1 family 0.00133087049941 0.000248165298485 -4.37101375898e+11 +UniRef50_P75892 Putative pyrimidine permease RutG 0.00330732105326 0.00206254641343 -5.02530797202e+11 +UniRef50_V9C5G3 Siderophore interacting protein 2.08384642706e-05 0.00124427150844 4.93914933143e+11 +UniRef50_Q9X049 Glycerol kinase 1 4.99426087346e-06 3.57545530227e-05 12418307411.9 +UniRef50_UPI00037DACA5 hypothetical protein 6.02285774518e-06 5.27697508748e-06 -301121981.923 +UniRef50_O27185 tRNA 2 O) methyltransferase 0.0010861917943 0.00129335783297 83635472024.3 +UniRef50_UPI00016B0688 hypothetical protein 0.00107378329079 0.000429466412809 -2.60118630298e+11 +UniRef50_Q01813 ATP dependent 6 phosphofructokinase, platelet type 2.47064795248e-06 6.15879097001e-06 1488948594.78 +UniRef50_O27290 Inosine 5 monophosphate dehydrogenase related protein I 0.00414267154563 0.00113335169169 -1.21489935354e+12 +UniRef50_P42257 Protein PilJ 0.00127270379668 0.000503654477282 -3.10474647537e+11 +UniRef50_D3S395 Transcription initiation factor IIB 0.0036064183301 0.000393755606923 -1.29699136515e+12 +UniRef50_UPI00047856BF hypothetical protein 4.35366086939e-05 1.26007859943e-05 -12489171249.1 +UniRef50_W6VG46 Rhamnan synthesis F 3.3449132147e-06 4.83064835637e-06 599809508.713 +UniRef50_G9ZUA1 7.23508264674e-05 2.11909206089e-05 -20653881797.7 +UniRef50_UPI0003B470E0 50S ribosomal protein L17 3.47972979099e-05 8.31891848431e-05 19536398590.2 +UniRef50_L7WUL7 Lipoprotein 0.0123025207035 0.00227843138154 -4.0468478687e+12 +UniRef50_D2ZVP2 0.000506612912954 0.00397616746141 1.40070174744e+12 +UniRef50_Q6A997 Chaperone protein DnaJ 1 0.000126815001857 0.00678716247069 2.68886400482e+12 +UniRef50_UPI0003F7FC45 hypothetical protein 5.72471591344e-05 1.90041962255e-05 -15439153420.3 +UniRef50_UPI0003B6D4D5 xylose ABC transporter permease 5.58806145186e-05 1.02786558302e-05 -18410070321.5 +UniRef50_M2CG06 5.87558626368e-06 3.87171584793e-05 13258545714.8 +UniRef50_Q6F9L9 0.000270276364337 0.00678174997168 2.62876180005e+12 +UniRef50_A3DLR9 Succinyl CoA ligase [ADP forming] subunit beta 3.27775039419e-06 1.19765096264e-05 3511795847.82 +UniRef50_W8YZG7 0.000160533307226 0.000267010082269 42985980701.8 +UniRef50_J7IXF3 Response regulator with CheY like receiver domain and winged helix DNA binding domain 0.000239927535287 0.000783394479633 2.19404274522e+11 +UniRef50_V7WI05 0.000450696683096 0.000203993841276 -99596964627.0 +UniRef50_J3MZQ8 1.61293785772e-05 9.61214321516e-05 32293773640.9 +UniRef50_G7U7Y1 0.000107240337745 0.00583301223217 2.3115643769e+12 +UniRef50_A6LU93 Anthranilate phosphoribosyltransferase 0.00060201007552 0.000401678089584 -80876481072.3 +UniRef50_W0YKM5 0.000309230134126 0.00030100653912 -3319966218.78 +UniRef50_U6AG49 7.80819072667e-05 0.000249037811538 69016996419.1 +UniRef50_UPI0003756A18 hypothetical protein 9.71051588642e-06 4.51275285751e-05 14298282638.0 +UniRef50_UPI0003B48EBA N acetyltransferase, partial 2.9700108917e-05 2.13314846569e-05 -3378516308.37 +UniRef50_T0IVY5 7.24075375954e-05 0.000114094355758 16829480047.0 +UniRef50_R4ZTG2 0.000789863938504 0.000682699793449 -43263480410.6 +UniRef50_Q42588 Serine acetyltransferase 1, chloroplastic 6.21393176088e-06 8.26801670768e-06 829259299.48 +UniRef50_G9EEV4 5.99445062936e-05 7.37161033597e-05 5559762732.08 +UniRef50_F3U4V4 ATPase, ParA type 0.000278443466986 9.61737589345e-05 -73584517841.4 +UniRef50_P30958 Transcription repair coupling factor 0.00363054992439 0.00148371706116 -8.66702771488e+11 +UniRef50_A1BAH6 MOSC domain containing protein 0.0040525585453 0.000263283838205 -1.52977669889e+12 +UniRef50_UPI00046767C0 HupU protein 7.45372396894e-05 7.50634147267e-06 -27061196171.7 +UniRef50_C5N074 Cof like hydrolase 0.0222525068775 0.0041379937165 -7.31305125317e+12 +UniRef50_N6UD17 0.000621030517749 0.000255906513856 -1.47405040947e+11 +UniRef50_A0A011NGP1 2.01571717711e-05 7.42181222794e-06 -5141420928.03 +UniRef50_E8X2E5 ParB like partition protein 9.85648772518e-05 2.02548358698e-05 -31614724678.2 +UniRef50_Q9HZ68 Histidinol phosphate aminotransferase 2 0.000995787577032 0.00023688505764 -3.0637825986e+11 +UniRef50_A6M204 Glycoside hydrolase, family 1 0.000511980745415 0.000917963895707 1.63900379746e+11 +UniRef50_Q835V5 Ribonuclease HIII 2.45482166667e-05 0.000389857036561 1.47479653435e+11 +UniRef50_H1S0G1 7.33238463562e-05 9.77300272533e-06 -25656255430.3 +UniRef50_D4H9Y2 Biotin biosynthesis bifunctional protein BioWF 0.000197856627519 0.00615518034056 2.40504468754e+12 +UniRef50_UPI000474CF85 hypothetical protein, partial 8.90064393496e-05 0.000216455541661 51452766579.3 +UniRef50_P37339 L 2 hydroxyglutarate oxidase LhgO 0.00462627746075 0.00195593258028 -1.07805099706e+12 +UniRef50_B9KQG5 Flagellar hook associated protein 0.00589234238184 0.000958933518391 -1.99167769791e+12 +UniRef50_D2NAF2 Regulatory protein 0.0123386445561 0.00209033726046 -4.13736741611e+12 +UniRef50_D8TNG9 3.06225931636e-06 2.61971986532e-05 9339858907.9 +UniRef50_J9P0I4 6.43187242682e-05 5.79016073866e-05 -2590668831.98 +UniRef50_P39071 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 1.77479751666e-05 0.00126118663396 5.01991445262e+11 +UniRef50_Q4L933 Poly gamma glutamate synthesis protein PgsA 0.00626519481821 0.00247545954349 -1.52996263569e+12 +UniRef50_H5YRD9 1.45442409681e-05 0.000267889152911 1.02278449843e+11 +UniRef50_UPI00036B457B hypothetical protein 0.000183962024756 1.23057383108e-05 -69299749297.4 +UniRef50_UPI000456173C hypothetical protein PFL1_01203 1.23178275527e-05 4.09633398965e-06 -3319117840.47 +UniRef50_B5F769 Bis tetraphosphatase, symmetrical 0.00162915062011 0.000289053871314 -5.41013502327e+11 +UniRef50_M5R4A6 4.98739118753e-05 8.3145433685e-05 13432121642.1 +UniRef50_U3SRI3 0.00379923911363 0.00061064582018 -1.28727424101e+12 +UniRef50_A0A038G9V0 Protein ImpB 2.81467911798e-05 0.000608900423076 2.34457367845e+11 +UniRef50_Q6GE71 0.00497869070783 0.000432170788082 -1.83548588368e+12 +UniRef50_E7TI03 0.00123246923771 0.000916047830981 -1.27743204824e+11 +UniRef50_B8HSV8 Anti sigma factor antagonist 2.54664438906e-05 0.00147831862885 5.8653425557e+11 +UniRef50_B0V9D5 3 deoxy D manno 2 octulosonate transferase 0.000290605900796 0.00577623961588 2.21461764707e+12 +UniRef50_E7TI06 0.00014122141653 1.82236632765e-05 -49655702340.8 +UniRef50_C5BD16 Adenylate kinase 1.86127176124e-05 2.86360223214e-05 4046531110.8 +UniRef50_Q8EUX2 Tyrosine tRNA ligase 1.65770545675e-05 1.61193772954e-05 -184769931.078 +UniRef50_Q3YS21 Acetylglutamate kinase 3.27748217265e-05 1.60187911439e-05 -6764615165.81 +UniRef50_I7AAC7 0.000631479564446 0.00026725493682 -1.47041951711e+11 +UniRef50_Q8DTN6 Probable bifunctional oligoribonuclease and PAP phosphatase NrnA 0.00472091204095 0.00620055847535 5.97351422871e+11 +UniRef50_UPI0003B4C1BA ATPase AAA 1.11797175224e-05 5.88394939887e-06 -2137966577.85 +UniRef50_Q8XU11 Potassium transporting ATPase B chain 0.0121782519392 0.0202568300757 3.26142112901e+12 +UniRef50_A3PPK7 Amidohydrolase 2 0.00996544692966 0.000699412800539 -3.74081168495e+12 +UniRef50_U3AFY8 0.000788720795864 0.000174317901624 -2.48041987976e+11 +UniRef50_B2A8E3 Argininosuccinate lyase 1.68696946162e-05 2.04669242123e-05 1452245730.92 +UniRef50_D8JIY9 AraC type DNA binding domain containing protein 0.000373201600826 0.00487052294765 1.81562381605e+12 +UniRef50_UPI0003783041 hypothetical protein 2.40226199582e-05 0.00014919005704 50531630327.2 +UniRef50_UPI000471FB1B sodium 5.0251821728e-05 1.31269630018e-05 -14987761041.0 +UniRef50_UPI00040DE95E sodium 4.20559605918e-06 8.05548078333e-06 1554245706.54 +UniRef50_A4IM35 Dihydroorotate dehydrogenase B ), catalytic subunit 0.000419409410863 0.0103997236431 4.02917532778e+12 +UniRef50_P77269 ABC transporter periplasmic binding protein YphF 0.00167241206415 0.0013807022778 -1.17766820431e+11 +UniRef50_UPI00036C797A hypothetical protein 5.58052568019e-05 2.94819464866e-05 -10627043397.6 +UniRef50_A6LWR6 MgtC SapB transporter 0.000295680931211 0.00178193241284 6.00017961491e+11 +UniRef50_D3DZA0 Amidohydrolase 0.00270099520593 0.000358450948281 -9.45713863064e+11 +UniRef50_B4RE78 0.00018014106638 0.000103196878372 -31063312910.2 +UniRef50_A4WQR7 0.000269947603827 0.000107964082565 -65394735294.8 +UniRef50_A6LSY8 Glutamate 1 semialdehyde 2,1 aminomutase 0.000329481214735 0.000708222307583 1.52902426859e+11 +UniRef50_S5CRD4 Integrase 0.000134977111625 0.00869283693492 3.45491302741e+12 +UniRef50_Q8HXP0 Superoxide dismutase [Mn], mitochondrial 1.11964780701e-05 0.000105648254501 38131341198.8 +UniRef50_W1S795 6.5972310955e-05 3.84146952516e-05 -11125347629.4 +UniRef50_Q080M3 7.39870414414e-06 1.13236507714e-05 1584549117.94 +UniRef50_UPI0003D0B013 PREDICTED 4.09420833841e-05 1.86812191241e-05 -8986984073.29 +UniRef50_Q7DDB6 Probable TonB dependent receptor NMB1497 0.000170213385665 0.00305950151367 1.16644107283e+12 +UniRef50_P64618 0.000442366393186 0.00196393479223 6.14275834436e+11 +UniRef50_R5CFG0 0.00131404045591 0.00160837294848 1.18825639116e+11 +UniRef50_UPI0003778CA4 hypothetical protein 2.69609134496e-05 1.53744904784e-05 -4677581134.87 +UniRef50_UPI000368AAAC peptidase, partial 2.92983181078e-05 4.36259648942e-05 5784246827.67 +UniRef50_Q5Z642 HGWP repeat containing protein like 9.97465753967e-06 0.000119915294134 44384384116.3 +UniRef50_Q7MF00 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 1.64317244814e-05 2.4527920221e-05 3268533571.57 +UniRef50_UPI0002E5A819 hypothetical protein 4.36599250203e-06 1.52185887203e-05 4381326269.66 +UniRef50_A0QVM6 8.97787910502e-05 6.13073859284e-05 -11494255631.1 +UniRef50_O80952 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1, chloroplastic 7.40308505778e-06 3.20665505708e-05 9956943682.35 +UniRef50_I7G695 2.09311020502e-05 4.45865165986e-05 9549981137.77 +UniRef50_Q9RYR4 0.000319243274761 0.00258484739038 9.14652183565e+11 +UniRef50_UPI0003751DCE hypothetical protein 3.46878467194e-06 1.34068021112e-05 4012099593.42 +UniRef50_Q3MEA8 GMP synthase [glutamine hydrolyzing] 2.39775515625e-05 3.09801741047e-05 2827044652.13 +UniRef50_D9UIH8 Predicted protein 0.000241594708843 0.0016939274376 5.86324544727e+11 +UniRef50_P76204 Putative anti FlhCFlhD(4) factor YdiV 0.00268031481586 0.00091214826715 -7.13830533558e+11 +UniRef50_UPI00036659B6 hypothetical protein 3.33943524372e-06 5.320815443e-06 799907500.719 +UniRef50_R5BWI2 0.000849945705849 0.00488191564993 1.62775574426e+12 +UniRef50_UPI000468EFA0 hypothetical protein 5.63097827598e-06 3.99339378013e-06 -661112956.396 +UniRef50_UPI00035D659D hypothetical protein 5.97632234076e-06 1.21343746146e-05 2486081270.75 +UniRef50_UPI000455EDC7 ribosomal protein L2 2.34099769927e-05 0.000120717070306 39284067662.9 +UniRef50_UPI0003045834 hypothetical protein 6.99396876295e-06 7.44594416422e-05 27236639295.8 +UniRef50_Q88TV5 Tyrosine tRNA ligase 0.0292305852207 0.0188629680503 -4.18553427666e+12 +UniRef50_P75764 0.00256561660799 0.000272214844857 -9.2587443498e+11 +UniRef50_P75769 0.0017645533705 0.000309772767695 -5.87312781516e+11 +UniRef50_Q6G6F1 D lactate dehydrogenase 0.0148475575884 0.00408244967367 -4.34600616789e+12 +UniRef50_E6S2D5 0.000169298209736 0.0030970951449 1.18198755083e+12 +UniRef50_A5UCW1 UPF0042 nucleotide binding protein CGSHiEE_06315 0.00235296626673 0.00112980999072 -4.93803198441e+11 +UniRef50_F2I802 Response regulator receiver domain protein 0.0187303305754 0.00699612634655 -4.73724224205e+12 +UniRef50_Q2NIC5 ORC1 type DNA replication protein 0.00368145545877 0.000639649954385 -1.22801420927e+12 +UniRef50_UPI00026291DF excinuclease ABC subunit A 9.25903811014e-06 2.30567272821e-05 5570296435.42 +UniRef50_Q16CW9 Lipopolysaccharide 1,3 galactosyltransferase, putative 0.0148691640696 0.0024949880301 -4.99560671536e+12 +UniRef50_U3T279 Amidohydrolase 0.000597094277823 0.00985021506034 3.73559840846e+12 +UniRef50_F2E8D4 Predicted protein 0.000182470265724 0.000186869668477 1776092878.13 +UniRef50_B0TC61 50S ribosomal protein L22 0.0416162198954 0.00268584865685 -1.57166685984e+13 +UniRef50_Q9K0U7 Putative phospholipase A1 0.000105051759422 0.00277292916969 1.07705484906e+12 +UniRef50_Q13DH5 Transcriptional regulator, LysR family 0.00285819681324 0.00071466704907 -8.65369269864e+11 +UniRef50_C5BQ83 30S ribosomal protein S13 0.00460396557604 0.00345950110368 -4.6203435165e+11 +UniRef50_S9THQ0 0.000144396909606 0.000193438889871 19798849245.8 +UniRef50_A6QF95 0.0110584938544 0.000671174329992 -4.19348835874e+12 +UniRef50_P64246 Probable glutamine synthetase 2 0.000429784776661 0.00833590896681 3.19179935462e+12 +UniRef50_A5VI99 Cysteine tRNA ligase 0.0352152559888 0.0182607398788 -6.84474620892e+12 +UniRef50_G8PIV9 Universal stress protein 0.0191942146693 0.00862881371594 -4.26538201694e+12 +UniRef50_G7MBZ4 PTS system transcriptional activator 0.000696719322904 0.00151277335215 3.29451025716e+11 +UniRef50_B5F752 Crotonobetainyl CoA dehydrogenase 0.00350275358721 0.00073198058343 -1.11859506283e+12 +UniRef50_X5EJB2 DNA polymerase III, delta subunit 0.0172985790258 0.00223254125179 -6.08234433044e+12 +UniRef50_UPI000467516D hypothetical protein 8.35869649707e-06 0.000147560048276 56197293905.9 +UniRef50_Q8E2G3 Phosphoribosylformylglycinamidine synthase, putative 0.00721167366097 0.00300817506583 -1.69700396559e+12 +UniRef50_I4DYY6 3 ketoacyl reductase 0.000162709477954 0.00573196984085 2.24837875101e+12 +UniRef50_J9P2V2 1.80202225123e-05 8.91453557969e-06 -3676077554.04 +UniRef50_I1AVP4 9.70395219062e-05 2.727879331e-05 -28163262194.7 +UniRef50_P27747 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 1.33422613503e-05 7.27484456797e-06 -2449490610.6 +UniRef50_UPI0003B5A625 TetR family transcriptional regulator 7.53628758136e-05 1.19282511795e-05 -25609336395.2 +UniRef50_Q9I4U2 Acyl homoserine lactone acylase QuiP 0.00068661204422 8.52284863478e-05 -2.42785922119e+11 +UniRef50_UPI000466F3A3 hypothetical protein 0.000129039663384 3.08133016795e-05 -39655187593.1 +UniRef50_UPI0002FD307E hypothetical protein 2.34598089256e-05 1.75413443652e-05 -2389356770.76 +UniRef50_M1YUE3 0.000158104493821 0.000237452682353 32033837422.1 +UniRef50_W4TKZ4 3.60545003908e-05 0.000327566501565 1.17686972128e+11 +UniRef50_Q9I602 0.000275749970218 0.000161081839199 -46292931628.6 +UniRef50_UPI00035F31F7 hypothetical protein 1.12868440598e-05 1.27624089702e-05 595703661.546 +UniRef50_V8MVT4 Transposase 0.000927671674024 0.00107501043914 59482467527.3 +UniRef50_UPI000361F9D7 hypothetical protein 5.40438044678e-06 2.28090218137e-05 7026467298.78 +UniRef50_A9VTL7 Nucleoid occlusion protein 0.0123820043037 0.00328498850866 -3.67257690939e+12 +UniRef50_I6U3X8 0.00567268880766 0.00242935925963 -1.30937193867e+12 +UniRef50_B9KTM2 Membrane fusion protein, HlyD family 0.000975530574878 0.000354165483842 -2.50852712258e+11 +UniRef50_A8ARB7 0.000599184109289 0.00213366718257 6.19489646908e+11 +UniRef50_B4U4S6 Primosomal protein DnaI 0.00594527448144 0.00621620353887 1.09377385158e+11 +UniRef50_D8JGQ3 Acetyltransferase family protein 0.00025679318969 0.00585820848286 2.26136009095e+12 +UniRef50_UPI000374923B hypothetical protein, partial 2.95627044399e-05 0.0133682787821 5.38500336502e+12 +UniRef50_R7B3T9 Molybdate ABC transporter permease protein 0.00218804159564 0.00193047900641 -1.03981177921e+11 +UniRef50_UPI0003608764 hypothetical protein 1.59192750663e-05 4.65840152205e-05 12379731898.9 +UniRef50_Q5HMA3 Thymidine kinase 0.0132645316066 0.000625059622022 -5.10270994395e+12 +UniRef50_UPI00036390EE hypothetical protein 0.00121716361445 0.000221946700328 -4.01781280916e+11 +UniRef50_Q0ARE0 2.91056178259e-05 0.000171322494467 57414698297.3 +UniRef50_A6LV67 0.000156201098833 0.000794059417456 2.5751123063e+11 +UniRef50_Q4T2R9 Chromosome undetermined SCAF10201, whole genome shotgun sequence. 1.73267143926e-05 5.91128524793e-06 -4608548828.78 +UniRef50_UPI00036EEDB2 30S ribosomal protein S4, partial 6.93305953387e-06 0.00210213192495 8.45857492951e+11 +UniRef50_UPI0003A27699 glutaminyl tRNA synthetase 4.47210670126e-06 3.27372875803e-06 -483799881.433 +UniRef50_UPI0003C15EA6 4.75411600565e-05 1.32299988408e-05 -13851836828.1 +UniRef50_Q2NSV5 tRNA 2 thiocytidine biosynthesis protein TtcA 0.00194989892984 0.0674905609956 2.64595695503e+13 +UniRef50_UPI00036FCB79 hypothetical protein 4.33495916748e-06 6.50788876904e-06 877238344.995 +UniRef50_UPI00036DB284 hypothetical protein, partial 0.000235029299217 0.0231070284154 9.2337067142e+12 +UniRef50_UPI0003658156 hypothetical protein, partial 6.77635701263e-05 0.000101700727669 13700846955.7 +UniRef50_A6WFN3 Diguanylate cyclase 6.15837425637e-06 0.000296198272362 1.17092666055e+11 +UniRef50_UPI00037A43CA hypothetical protein 5.38341610631e-05 0.00022507748853 69133032690.4 +UniRef50_UPI0004443E9D PREDICTED 5.8035071034e-06 5.8935745204e-06 36361321.4944 +UniRef50_A6LR97 Acyl ACP thioesterase 0.000161548925324 0.000695116469478 2.15407765185e+11 +UniRef50_UPI00047B48B0 GNAT family acetyltransferase 0.000113912221375 2.73767042464e-05 -34935450175.0 +UniRef50_Q02198 Morphine 6 dehydrogenase 6.33981966145e-06 2.31147908758e-05 6772261731.3 +UniRef50_P00811 Beta lactamase 0.00231437103161 0.000848417179586 -5.91823559337e+11 +UniRef50_C0H3V2 Mannitol specific phosphotransferase enzyme IIA component 0.0106647230104 0.000270956201096 -4.19609120678e+12 +UniRef50_Q0A892 RNA polymerase binding transcription factor DksA 0.00131681158902 0.000791026888919 -2.12265735535e+11 +UniRef50_H8FSH1 0.00094198488676 0.000177604236956 -3.08589848331e+11 +UniRef50_UPI000174692C spermidine putrescine ABC transporter ATP binding protein 1.42818803994e-05 1.4794901204e-05 207112794.29 +UniRef50_UPI0002557C62 hypothetical protein 4.27778845508e-05 4.58692947036e-05 1248040214.55 +UniRef50_UPI00029A3335 helicase 2.53646827806e-06 6.95170726906e-06 1782486161.74 +UniRef50_A6Q747 Alanine tRNA ligase 4.58670703315e-05 0.00336358411295 1.33940308307e+12 +UniRef50_Q75W16 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 5.7377861159e-05 7.12570872227e-06 -20287410602.0 +UniRef50_A9CR53 0.00394726935459 0.00218753114959 -7.10427907775e+11 +UniRef50_Q9ZJE9 DNA polymerase I 9.46844177454e-05 0.00432093604965 1.70618964574e+12 +UniRef50_F5LZL6 CBS domain containing protein 0.0198053219569 0.00336038692814 -6.63902207317e+12 +UniRef50_P65168 Inosine 5 monophosphate dehydrogenase 0.0246477281768 0.0518027414494 1.09628120876e+13 +UniRef50_P0ABK4 Cytochrome bd I ubiquinol oxidase subunit 2 0.000660126201259 0.00454057166589 1.56658345249e+12 +UniRef50_P0C1L0 Transposase for insertion sequence like element IS431mec 0.0256288850193 0.009401152508 -6.55133475148e+12 +UniRef50_D5AUS5 7.06334911283e-05 1.64098024101e-05 -21890768535.0 +UniRef50_A5EY33 Recombination protein RecR 0.000360655403362 0.00703347528962 2.69389927279e+12 +UniRef50_I0EKM3 DNA transfer protein ComE 0.000269915988217 0.00296896065226 1.08963745188e+12 +UniRef50_E3YSL3 Pts system fructose specific eiibc component 3.28898923433e-05 0.000340829686273 1.24319073656e+11 +UniRef50_D4H949 YD repeat protein 0.000375467785191 0.00299110058819 1.05596306e+12 +UniRef50_K9HQP8 Phosphate binding protein 3.49509925797e-06 6.46207396736e-06 1197804099.05 +UniRef50_UPI0003094A6C hypothetical protein 1.81454384124e-05 1.34668115525e-05 -1888819076.55 +UniRef50_A7GKB6 Nitrite reductase H), small subunit 0.00307850814899 0.000588671173145 -1.00517774088e+12 +UniRef50_P54122 Ribonuclease J 1.00996062589e-05 4.34040422574e-05 13445409504.0 +UniRef50_P47269 Fructose bisphosphate aldolase 2.45229810867e-05 4.71522977869e-05 9135732844.81 +UniRef50_P0ADL0 0.000313700267745 0.00089040212621 2.3282161719e+11 +UniRef50_UPI000344BE75 hypothetical protein 2.36052018066e-05 6.00892559755e-06 -7103832636.2 +UniRef50_UPI0003C18F39 PREDICTED 3.07797452843e-05 2.67297990116e-05 -1635013008.72 +UniRef50_C1A7X4 Acyl CoA dehydrogenase 0.000263342038884 0.0243153190531 9.71007827158e+12 +UniRef50_P0A2T6 cAMP activated global transcriptional regulator CRP 0.00229006728674 0.000603558775012 -6.80864181972e+11 +UniRef50_S9TKQ0 6.21887955241e-05 0.000215584242449 61927624297.4 +UniRef50_UPI0003B40961 glutathione ABC transporter permease 9.97942209044e-05 6.5815392994e-05 -13717669794.5 +UniRef50_UPI0004770C99 hypothetical protein 9.71512597558e-06 0.000254742637539 98920613243.7 +UniRef50_H6RLH1 ComEC Rec2 related protein 8.53560149315e-06 0.000120012960584 45004777846.1 +UniRef50_UPI00047780B8 acyl CoA synthetase 1.68533595895e-05 1.37205186773e-05 -1264766320.54 +UniRef50_I1AQX6 3.86576307731e-05 9.2312893688e-05 21661288062.9 +UniRef50_A3PFZ4 Peptidase S16, lon domain protein 0.00973136440559 0.00153128603206 -3.31047226567e+12 +UniRef50_J8RSG4 2.67505992788e-05 0.000101995764509 30377396565.4 +UniRef50_Q0B6I4 Lipoprotein 0.00154858238741 0.000522804727682 -4.1411902894e+11 +UniRef50_B8ZUG9 Threonine tRNA ligase 5.96030508744e-05 0.00405343855563 1.61236040314e+12 +UniRef50_L1K7L5 0.000369957090474 0.000948567695346 2.33592201537e+11 +UniRef50_Y4SN89 0.033058554491 0.0118674026068 -8.55512806033e+12 +UniRef50_Q8YR06 Phosphoribosylformylglycinamidine synthase 2 2.52385415944e-05 5.73766349522e-06 -7872743791.33 +UniRef50_M1MJ06 Diguanylate cyclase domain containing protein 0.000326090758671 0.000907355934752 2.3466388451e+11 +UniRef50_Q6CGG3 FK506 binding protein 2 1.72873770042e-05 2.20011063438e-05 1902990378.36 +UniRef50_C5VT76 LicC protein 0.000277563227102 0.00329857056985 1.2196177362e+12 +UniRef50_A6M234 Sigma 54 factor, interaction domain containing protein 0.00035531591543 0.000759440853061 1.63150196492e+11 +UniRef50_E1V429 Formyltetrahydrofolate deformylase 0.00198303692832 0.00046506567747 -6.1282362157e+11 +UniRef50_Q9I452 Probable 3 mercaptopyruvate sulfurtransferase 0.00013291760171 0.000331196304892 80047545627.9 +UniRef50_UPI000362E0E9 Fis family transcriptional regulator 0.000200282434269 9.38337095257e-05 -42974656451.5 +UniRef50_Q8DXP9 Transcriptional antiterminator, BglG family 0.00711803092308 0.00140310025585 -2.30718764045e+12 +UniRef50_U5VYZ3 Diguanylate cyclase 6.14840581776e-06 0.000193300736068 75555692339.3 +UniRef50_Q8YC76 DNA polymerase IV 0.00396393866472 0.000398061796678 -1.43958824986e+12 +UniRef50_Q03025 Alkaline protease secretion protein AprE 0.00057547605159 0.000503453071886 -29076560727.9 +UniRef50_V8AQW0 0.00794109240991 0.000974938654562 -2.81232175535e+12 +UniRef50_UPI0003A20063 DNA 3 methyladenine glycosylase 2.43570778518e-05 0.000107087014985 33399090831.2 +UniRef50_F5M1J2 Phage related integrase 0.00306927417536 0.00152420788163 -6.23762222874e+11 +UniRef50_UPI0003B727F3 membrane protein 6.27888360558e-05 1.77484282766e-05 -18183365328.4 +UniRef50_C1D040 2.78954640925e-05 0.034235403569 1.38099907953e+13 +UniRef50_P28631 DNA polymerase III subunit delta 0.00296492025393 0.00138432956065 -6.38103858906e+11 +UniRef50_Q8FFR0 0.00186662330029 0.00579090294712 1.58427984975e+12 +UniRef50_O34788 butanediol dehydrogenase 0.000439462577242 0.00163732982485 4.83593707344e+11 +UniRef50_C0PLL4 4.94976574155e-05 7.952710313e-05 12123255737.7 +UniRef50_UPI0004077D5F prephenate dehydratase 7.55095824817e-06 0.000243410004811 95219191413.5 +UniRef50_A7X6I0 Phytoene desaturase 9.32693205232e-05 0.000206365269178 45658222315.4 +UniRef50_Q58065 Putative NADH oxidase 0.00400013086888 0.000985017402641 -1.21723830592e+12 +UniRef50_Q8DMA8 Polyphosphate kinase 3.16319631414e-06 0.000149169395301 58944494228.6 +UniRef50_Q932Q4 Orf513 0.000189997020661 0.0118276393253 4.6982590083e+12 +UniRef50_B0V6C9 Extracellular serine proteinase 0.000329610591411 0.00560570819595 2.13002534795e+12 +UniRef50_UPI000401E192 hypothetical protein 1.56877311137e-05 3.51617130709e-05 7861885488.75 +UniRef50_E8MRI6 Two component response regulator 0.00518123056752 0.00528848296374 43299108488.9 +UniRef50_Q5HE75 Fructose bisphosphate aldolase 0.0244410385622 0.00594337298281 -7.46773458629e+12 +UniRef50_A5UP16 Conserved hypothetical membrane protein Msm_1739 0.00348476016988 0.000306557133415 -1.28307956676e+12 +UniRef50_F0VS21 Rhamnosyltransferase 0.00408047940937 0.00020319956779 -1.56530545162e+12 +UniRef50_UPI00046543C3 hypothetical protein 2.82998094325e-05 4.8124583688e-05 8003504644.28 +UniRef50_D5SQR1 Glycogen debranching enzyme GlgX 0.00899446089993 0.00211573708431 -2.7770252158e+12 +UniRef50_A7ZML4 N succinylglutamate 5 semialdehyde dehydrogenase 0.00265289576811 0.00105686756918 -6.44336169376e+11 +UniRef50_B9KN09 0.000349931892217 0.000104776886433 -98972084225.2 +UniRef50_Q3AEQ2 3 isopropylmalate dehydrogenase 0.00101831944697 0.00319062641136 8.76986978728e+11 +UniRef50_E2XRP0 DNA binding response regulator, LuxR family 0.000975420178776 0.000279921047585 -2.80781533996e+11 +UniRef50_B9KN06 0.00337157608571 0.000756835527187 -1.05560284995e+12 +UniRef50_B9KN07 0.0215769468369 0.00465537939525 -6.83144442716e+12 +UniRef50_V0AP01 0.00337981609622 0.001212455279 -8.7499015842e+11 +UniRef50_UPI00035C9482 hypothetical protein 1.25926108794e-05 0.000236167557065 90259949348.4 +UniRef50_E8U6V1 Aldose 1 epimerase 0.000126673150626 0.0399815641162 1.60899085573e+13 +UniRef50_UPI00031CD3FF hypothetical protein 1.77068377251e-05 0.000168469099496 60864575137.9 +UniRef50_Q5HKI6 0.0306202768582 0.000363094309672 -1.22151958922e+13 +UniRef50_Q09751 Lactoylglutathione lyase 1.53042951152e-05 1.70512589277e-05 705270728.763 +UniRef50_UPI0003761A55 hypothetical protein 2.18656173264e-06 0.000493750144307 1.98450250449e+11 +UniRef50_UPI0004762DA5 hypothetical protein 1.10424742732e-05 2.99250812811e-05 7623140164.73 +UniRef50_UPI000467CD77 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 8.11412666188e-06 1.34838495604e-05 2167823028.04 +UniRef50_UPI0003775761 hypothetical protein 2.36726771288e-05 2.66604066852e-05 1206183085.48 +UniRef50_UPI0003821846 hypothetical protein 1.61524258635e-05 1.60018020405e-05 -60808685.7073 +UniRef50_I0EQ26 GDP L fucose synthase 0.000375006824528 0.00263950294765 9.14204873396e+11 +UniRef50_B7V4A2 Heme d1 biosynthesis protein NirF 0.000143167884525 1.20950684986e-05 -52915704274.0 +UniRef50_G8I0W8 Integrase 0.00188583388181 0.000161522354718 -6.96125723168e+11 +UniRef50_Q7DDS7 Septum site determining protein MinD 0.00370310683505 0.00652255160584 1.13824445245e+12 +UniRef50_M9VKM1 RecF RecN SMC N terminal domain protein 9.35258428407e-05 0.0032379888687 1.26945831044e+12 +UniRef50_Q16DR4 PucC family protein, putative 1.50877010232e-06 8.68313552703e-06 2896379361.32 +UniRef50_Q57865 4 hydroxy tetrahydrodipicolinate reductase 0.00616237216954 0.000758665583133 -2.18154265987e+12 +UniRef50_D3CU37 9.98156564651e-06 2.1029466761e-05 4460173252.92 +UniRef50_K2FAW5 3.31087656313e-05 8.89141141167e-05 22529303992.2 +UniRef50_Q5HPT2 Ribosome recycling factor 0.0151856724147 0.00368710362448 -4.64211332391e+12 +UniRef50_C5N0X8 Na Pi cotransporter II like protein 0.0110825875635 0.00406434795339 -2.83334945409e+12 +UniRef50_Q97TN5 Divalent metal cation transporter MntH 0.000274953836277 0.000719805747829 1.7959217564e+11 +UniRef50_UPI00047D3BA3 hypothetical protein 0.000333736856185 0.000254782515944 -31874836034.0 +UniRef50_U5MKF5 UPF0750 membrane protein YpjC 0.000131681158905 0.000878203483356 3.0138022324e+11 +UniRef50_Q1QGJ1 Transposase IS66 2.2344969004e-05 6.0363566331e-06 -6583986943.31 +UniRef50_A0A010ZU52 4.11503642719e-05 5.14348806217e-05 4151985455.62 +UniRef50_UPI00036DBF3D hypothetical protein, partial 1.9879421076e-05 1.10292734155e-05 -3572913214.07 +UniRef50_P0AGM3 UPF0126 inner membrane protein YicG 0.00263099388966 0.00762722629695 2.01704033349e+12 +UniRef50_P04040 Catalase 1.79023730023e-05 5.05776937449e-05 13191427955.1 +UniRef50_E8WXY4 6.59180885164e-06 6.73591694869e-06 58178207.1843 +UniRef50_P0AA94 Sensor histidine kinase YpdA 0.0021557415598 0.000344552275314 -7.3119933994e+11 +UniRef50_B8FWK7 Nucleotide sugar dehydrogenase 8.77194397025e-05 0.000278383357729 76973363416.9 +UniRef50_A4W0U2 Transcriptional regulator of sugar metabolism 2.73886600256e-05 0.000126920974175 40182416621.0 +UniRef50_Q3IV07 Asparagine synthetase 0.0187847628379 0.00455680443678 -5.74400140321e+12 +UniRef50_D8JH55 Transcriptional regulatory protein, C terminal family protein 0.00011796437152 0.00404744760097 1.58638059991e+12 +UniRef50_Q8E0Z8 Prophage LambdaSa1, reverse transcriptase maturase family protein 0.00014803372112 0.000150543774942 1013339529.77 +UniRef50_F0XFM1 Endoribonuclease l psp 0.000206243426844 0.000114000104947 -37239761002.7 +UniRef50_Q9FD71 Hydroxymethylglutaryl CoA synthase 0.0121424840541 0.00524317175092 -2.78533704088e+12 +UniRef50_P75826 0.00192964892965 0.000844513687861 -4.38082413217e+11 +UniRef50_E6YJH1 0.000193177675909 7.52960076227e-05 -47590276057.8 +UniRef50_UPI0002193D96 glutamate racemase Nucleoside triphosphatase 5.98295621159e-06 5.52675532701e-06 -184173895.319 +UniRef50_R6I4T0 Short chain dehydrogenase reductase SDR 7.70018872341e-06 4.80612557611e-06 -1168368806.71 +UniRef50_G5IIY2 1.97998768321e-05 7.37845444237e-05 21794272773.1 +UniRef50_UPI0004154A70 hydroperoxidase 2.29104163195e-05 3.54877905724e-05 5077640327.63 +UniRef50_UPI0003EF5A08 hypothetical protein 4.6610040365e-05 6.00205804537e-05 5413999599.64 +UniRef50_Q46896 CRISPR associated endonuclease Cas1 0.00207603961797 0.000625135419908 -5.85747829354e+11 +UniRef50_X8FKW3 0.000110738548998 1.63027412745e-05 -38124894435.7 +UniRef50_M4WYD7 0.000597733030037 5.64452334518e-05 -2.1852452583e+11 +UniRef50_Q8CPQ8 Nucleotidase 0.0186789289193 0.00927115484438 -3.79803384042e+12 +UniRef50_UPI00047311ED glutaredoxin, partial 0.000476227391326 0.000187654240136 -1.16500522326e+11 +UniRef50_F4AQK9 4.22576955442e-05 1.80443810999e-05 -9775212171.95 +UniRef50_A0NSX2 Immunogenic protein 0.000111529522135 2.04787074904e-05 -36758331191.2 +UniRef50_M6ZD49 Winged helix turn helix 4.10268164145e-05 0.00288475323019 1.14804724969e+12 +UniRef50_UPI000429EA82 hypothetical protein 4.17366390408e-06 2.10953240223e-05 6831481841.84 +UniRef50_G5FKQ3 0.000866374101029 0.000468357367202 -1.60684239661e+11 +UniRef50_T0T8E0 Alanine tRNA ligase 0.00581565627091 0.00153975709969 -1.7262329666e+12 +UniRef50_S4XCV1 Surface protein G2 0.000473304400909 0.000144291549777 -1.32826525444e+11 +UniRef50_Q5HKF2 Aminotransferase, class II 0.00791345434064 0.00236667382994 -2.23930335882e+12 +UniRef50_E0S0H5 Phosphoglucomutase phosphomannomutase family protein 0.000518488440746 0.00157026666418 4.24615775569e+11 +UniRef50_M4QZL8 2.16626022775e-05 0.00206332387246 8.24243708773e+11 +UniRef50_B7N6B0 Peptidase B 0.00315425371136 0.00034749745064 -1.13312194523e+12 +UniRef50_M4QZL0 0.000266497178474 0.00496856186239 1.89828121372e+12 +UniRef50_C1CU33 Transketolase, C subunit 0.00187611648258 0.00529792329156 1.38142539908e+12 +UniRef50_U5MMW0 Sporulation protein YunB 0.00181445024617 0.000368378426439 -5.83796938922e+11 +UniRef50_Q74AX0 Thymidylate kinase 9.18192879807e-06 3.07049292137e-05 8689099384.69 +UniRef50_Q166C2 Acyl carrier protein 0.000149042142596 0.00208458850726 7.81403819238e+11 +UniRef50_UPI00035FDAE3 hypothetical protein 0.000155540054093 7.99930003751e-05 -30499272652.5 +UniRef50_UPI000370852C hypothetical protein, partial 1.71943340652e-05 4.89459035123e-05 12818498221.4 +UniRef50_L8E5H5 Phosphoribosylformylglycinamidine synthase 1 2.72514914055e-05 2.77722223231e-05 210225461.522 +UniRef50_E4NK07 6.90589737553e-05 0.00522345932432 2.08089467313e+12 +UniRef50_UPI0002485CB9 membrane protein 1.18248469585e-05 3.41748866197e-05 9022985277.05 +UniRef50_T2AJH5 1.60484281829e-05 1.58793104712e-05 -68274895.521 +UniRef50_Q0FVE7 Flagellar protein FlgJ, putative 0.000131977576868 6.46920406909e-05 -27163996641.1 +UniRef50_M9VIA8 DNA topoisomerase IV subunit B 0.000334535132373 0.00495333407036 1.8646658103e+12 +UniRef50_P0A2T8 Fumarate and nitrate reduction regulatory protein 0.00580831152854 0.00228155989671 -1.42379291188e+12 +UniRef50_UPI0003AA4737 LuxR family transcriptional regulator 1.96350577785e-05 2.94414852334e-05 3958975101.94 +UniRef50_UPI000346AB98 hypothetical protein 0.000140555524225 8.59062772212e-05 -22062571637.1 +UniRef50_F4A3Y5 Peptidase, M24 family protein 0.000218455885457 0.00114858934478 3.7550629155e+11 +UniRef50_Q9K4V0 Nitric oxide reductase transcription regulator NorR1 2.89817222699e-06 1.42272796273e-05 4573699681.28 +UniRef50_M4R0H3 ABC transporter, ATP binding domain protein 0.000111688576412 0.00678937562518 2.69586420602e+12 +UniRef50_Y1B2H8 0.000748080752802 0.000477175154709 -1.09367914336e+11 +UniRef50_Q6A9Q2 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000104086210166 0.00561321876948 2.22410441885e+12 +UniRef50_UPI000473DF01 hypothetical protein 2.26996678398e-05 2.32421263772e-05 218997168.263 +UniRef50_UPI00037F561A hypothetical protein, partial 1.12490508231e-05 1.42737696293e-05 1221116099.54 +UniRef50_Q4UY06 Sulfate adenylyltransferase subunit 2 0.00442624543048 0.0172910189041 5.19366691982e+12 +UniRef50_W1YEB9 0.00687940767631 0.00306109010037 -1.54150166143e+12 +UniRef50_E8SNW0 Macrophage infectivity potentiator related protein 4.24965103299e-05 0.000336223952777 1.18581372957e+11 +UniRef50_UPI0002E6D910 hypothetical protein 1.15850385429e-06 1.99423595276e-05 7583273039.14 +UniRef50_P33570 Transketolase 2 0.0072954510457 0.00287671984998 -1.78389600764e+12 +UniRef50_B5H7E3 ABC transporter ATP binding protein 0.0115276043552 0.003752163989 -3.13904069122e+12 +UniRef50_F5X6Q7 ABC transport system permease protein 0.00473752992177 0.00125142753188 -1.40738231409e+12 +UniRef50_Q7NMQ5 Nucleoside diphosphate kinase 5.32455244512e-05 0.000106270438378 21406808441.1 +UniRef50_J8VUX1 0.000158907166529 2.88496999697e-05 -52505795234.5 +UniRef50_R7I3D6 8.32661900232e-05 1.66051503707e-05 -26911879730.7 +UniRef50_D2J7E4 Replication initiator protein 4.23880012087e-05 5.87596215104e-06 -14740358220.7 +UniRef50_U3QYE8 Membrane protein 0.000413512788083 0.000110207866814 -1.22447918686e+11 +UniRef50_D3FRH5 8.1793290844e-06 1.2315613979e-05 1669868969.87 +UniRef50_UPI00041C9E3C hypothetical protein 1.96589645437e-06 1.93752778666e-05 7028380913.24 +UniRef50_Q6A8N5 Prolipoprotein diacylglyceryl transferase 0.000396952775185 0.00559804704 2.09974557931e+12 +UniRef50_W8UXR7 0.00214646160899 0.000109406083607 -8.22384313078e+11 +UniRef50_P58664 0.00594424752907 0.000798280213812 -2.07749015329e+12 +UniRef50_S5YW82 1.16846275306e-05 1.61290894881e-05 1794283831.92 +UniRef50_Q6AAL4 S ribosylhomocysteine lyase 0.000184587448664 0.00140012541053 4.90727591535e+11 +UniRef50_UPI0004665EA7 fusaric acid resistance protein 2.84460366972e-06 6.25977207803e-06 1378745395.26 +UniRef50_P0AC90 GDP mannose 4,6 dehydratase 0.0185791832537 0.0148244287622 -1.51584046424e+12 +UniRef50_E3JA76 2.44090876712e-05 1.76692322921e-06 -9140919635.84 +UniRef50_R0S9J4 3.08232641491e-05 0.001547456555 6.12283470699e+11 +UniRef50_A1B2V6 0.000139232886318 8.93269488857e-05 -20147639356.1 +UniRef50_A5UKK8 Adenine cytosine DNA methyltransferase 0.0036461992992 0.00031031527691 -1.3467373157e+12 +UniRef50_S8F0C2 4.88829852552e-07 1.58284210713e-05 6192781212.94 +UniRef50_W4RSX5 NAD synthetase 3.59143930309e-05 0.000171458933106 54720994146.8 +UniRef50_UPI000473309C hypothetical protein, partial 3.62010277115e-05 6.20953223906e-06 -12107934759.2 +UniRef50_UPI000382DF5B hypothetical protein 5.51611284246e-05 8.73718062633e-05 13003845912.9 +UniRef50_A6LX54 Response regulator receiver protein 0.0041343671809 0.00092447586961 -1.29587251216e+12 +UniRef50_UPI0002F1891F hypothetical protein 8.37418466037e-07 3.02178031685e-05 11861221842.3 +UniRef50_UPI00036F5244 hypothetical protein 1.26424675227e-05 4.69337249452e-06 -3209147209.24 +UniRef50_F4DLN9 0.000271572653853 0.000295316705201 9585764901.46 +UniRef50_P31040 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 3.71301717056e-06 8.15442119386e-06 1793049306.36 +UniRef50_A4WZY2 0.000713870995659 0.000504814880674 -84398519026.5 +UniRef50_UPI0003796C9F hypothetical protein, partial 2.26399297194e-05 0.000121365349473 39856663451.7 +UniRef50_UPI000363A9F6 alcohol dehydrogenase 1.32451733281e-05 0.00050770780263 1.99620631188e+11 +UniRef50_UPI00047212B5 spermidine putrescine ABC transporter substrate binding protein 1.91741171721e-05 0.000148989102043 52407902401.4 +UniRef50_O32129 Lipoyl synthase 1.42446390888e-05 4.01408443809e-05 10454615858.6 +UniRef50_UPI0003EC0C27 PREDICTED 3.5134585193e-05 1.06400782762e-05 -9888733023.71 +UniRef50_P0A9T2 D 3 phosphoglycerate dehydrogenase 0.00413355463648 0.00156016112754 -1.03891053865e+12 +UniRef50_UPI00021928D0 3 keto L gulonate 6 phosphate decarboxylase, partial 1.70654975724e-05 3.29762082509e-05 6423349147.29 +UniRef50_UPI0004785282 ABC transporter ATP binding protein 3.64333142282e-05 6.83483140087e-06 -11949270731.6 +UniRef50_UPI00016C377C excinuclease ABC subunit A 1.06886415753e-05 3.13265745753e-05 8331786808.02 +UniRef50_G9G2D7 ABC transporter related protein 0.000158496566353 0.000228145881214 28118283102.6 +UniRef50_UPI0003794563 hypothetical protein, partial 7.71840816016e-06 2.36710379869e-05 6440272421.82 +UniRef50_P55357 Mannose 1 phosphate guanylyltransferase 2.09823618314e-05 5.11139366872e-06 -6407304605.96 +UniRef50_UPI0003B39652 ribosomal large subunit pseudouridine synthase A 0.000123949735269 2.79446695009e-05 -38758423165.2 +UniRef50_F0KHF7 0.00025334630124 0.00541226303447 2.08271799223e+12 +UniRef50_D3X7Y2 Glutathione peroxidase 0.0293419934203 0.0199377997535 -3.79658838572e+12 +UniRef50_A6M2T7 Abortive infection protein 0.000344799308646 0.0014586548139 4.49677136014e+11 +UniRef50_W9D4Z0 3.95199237577e-05 2.07834882752e-05 -7564128926.2 +UniRef50_K0HMC2 0.000228377380324 0.00498520866254 1.92039116152e+12 +UniRef50_UPI0003C10DF6 1.42286679549e-05 3.88080642259e-05 9923003897.71 +UniRef50_N3NX82 0.00167492185909 0.000998376946437 -2.73129483378e+11 +UniRef50_U5Y027 Xanthine uracil vitamin C permease 9.43714972093e-05 0.00270638617765 1.05450237952e+12 +UniRef50_Q59931 NADP dependent glyceraldehyde 3 phosphate dehydrogenase 0.00566385244841 0.0075310977636 7.53829847419e+11 +UniRef50_Q187U6 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000117353157162 0.0015548713406 5.80343730987e+11 +UniRef50_J9S761 3.32993428377e-06 6.34150717784e-06 1215808933.49 +UniRef50_UPI000469984F hypothetical protein 1.49814960801e-05 2.22185400663e-05 2921683465.75 +UniRef50_UPI00046F91FB inner membrane translocator 2.48324095868e-05 1.4242882963e-05 -4275121846.13 +UniRef50_A0A011MQD2 DNA primase 2.52231844225e-06 6.08921424204e-06 1439999605.11 +UniRef50_K6VMV8 1.01121886256e-06 3.65874940142e-05 14362578848.7 +UniRef50_P37981 Inorganic pyrophosphatase 0.00516493894268 5.2163594827e-05 -2.06409014874e+12 +UniRef50_L1K7R1 Pirin domain protein 8.37001702481e-05 0.000262252683879 72083840838.6 +UniRef50_Q57N15 Putative mannosyl 3 phosphoglycerate phosphatase 0.002465001165 0.00172918885835 -2.97056457627e+11 +UniRef50_P47924 Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic 1.14522756712e-05 7.05380809221e-05 23853664644.2 +UniRef50_Q6GGK7 Sensor protein SrrB 0.0221210085623 0.00376725351664 -7.40963613785e+12 +UniRef50_UPI000289481B 50S ribosomal protein L22 2.8148682849e-05 0.000422796130075 1.59324017314e+11 +UniRef50_UPI000380885A hypothetical protein, partial 8.12209150601e-05 0.000104036224659 9210820460.41 +UniRef50_UPI0003B51BB3 diguanylate cyclase 2.02361715745e-05 2.64521732183e-05 2509476142.52 +UniRef50_F0KFG3 Modulator of drug activity 0.000577784676811 0.00697775493285 2.58374652883e+12 +UniRef50_Q49Z27 0.0086905584063 0.00478648491576 -1.5761223765e+12 +UniRef50_A3PP65 Transcriptional regulator, LysR family 0.00653236321355 0.000853438555497 -2.2926515727e+12 +UniRef50_R6FTR0 Sporulation integral membrane protein YlbJ 0.000444121251354 0.00079481279483 1.4157847957e+11 +UniRef50_A4WYU2 0.00233776319973 0.000461390356386 -7.5751474254e+11 +UniRef50_Q3IY96 PAS sensor Signal Tranduction Histidine Kinase 0.00570928142879 0.00159021523704 -1.66291756824e+12 +UniRef50_A4WYU6 0.0117064402984 0.00109833256403 -4.2826232685e+12 +UniRef50_Q8XE45 Malate 0.00499347628972 0.0063254866526 5.377489291e+11 +UniRef50_UPI00047A4FE0 hypothetical protein 2.75166775813e-05 7.31968750716e-05 18441656285.9 +UniRef50_A0A028V4R5 7.02100879136e-05 4.31762775947e-05 -10913880967.9 +UniRef50_UPI000472245F hypothetical protein 3.71193837864e-05 3.15532260949e-05 -2247126164.49 +UniRef50_Q6D4A8 Zinc import ATP binding protein ZnuC 5.1162344795e-05 7.35273000545e-05 9029006887.12 +UniRef50_B4SGR9 3 dehydroquinate dehydratase 8.10037107999e-06 0.000172195051267 66247036059.7 +UniRef50_UPI00035E131B hypothetical protein 1.25257461219e-05 4.01365476645e-05 11146819405.4 +UniRef50_UPI000471D845 hypothetical protein 4.43371170367e-05 1.49618588931e-05 -11859152187.5 +UniRef50_UPI000190BCFA hypothetical protein, partial 7.40716520758e-05 0.000127325991728 21499430421.8 +UniRef50_F0Y0F0 5.37476303124e-05 0.000358608381777 1.23076026429e+11 +UniRef50_G7U5I2 Tricorn protease 4.07945953426e-05 0.00683914754632 2.74457851148e+12 +UniRef50_B9KX51 DSBA oxidoreductase 0.000260141357182 0.000501954739708 97623029909.6 +UniRef50_Q9RYP2 Adenine deaminase related protein 5.48404655451e-05 2.74615808367e-05 -11053191733.5 +UniRef50_R0NKC6 ABC transporter substrate binding protein 0.000175902156329 0.000162494663388 -5412769428.72 +UniRef50_M5UK49 Glucose 1 dehydrogenase 1.07991065648e-05 1.17528365826e-05 385032511.769 +UniRef50_E5U6M9 1.62633086508e-05 4.12741175889e-05 10097170485.5 +UniRef50_UPI0003FF8F9D hypothetical protein 3.35932401412e-06 5.03785832074e-06 677644897.515 +UniRef50_A5UN83 0.00329784931191 0.000256054946702 -1.22800971225e+12 +UniRef50_A5UN84 0.00797008843261 0.00198267950293 -2.41719045868e+12 +UniRef50_Q4L8H9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.016794474735 0.00127474836775 -6.2655039829e+12 +UniRef50_S0GCD5 4.43955066941e-05 0.00114888921244 4.45897662673e+11 +UniRef50_Q2J713 Probable dual specificity RNA methyltransferase RlmN 0.000260252589163 0.0102117291117 4.0175331905e+12 +UniRef50_Q8FFV6 Multidrug resistance outer membrane protein MdtQ 0.0017230021876 0.000952804451949 -3.10938277271e+11 +UniRef50_D3QIE1 Hydrolase 0.0224623648376 0.0105761405087 -4.79861462195e+12 +UniRef50_B6C5I5 4.63317921584e-05 9.02509862803e-05 17730717616.1 +UniRef50_UPI0004786084 hypothetical protein 2.72384581959e-05 2.63063258775e-05 -376313255.488 +UniRef50_A0RQU5 TonB dependent receptor protein 0.000155012497258 0.000926151086815 3.11318111539e+11 +UniRef50_A5UN65 MEMO1 family protein Msm_1438 0.00340691272955 0.000643025619111 -1.11581514319e+12 +UniRef50_C6CW93 Major facilitator superfamily MFS_1 0.000500352935972 0.00153830007556 4.19031997296e+11 +UniRef50_E7C3U5 6.98476723961e-05 5.18285630098e-05 -7274535578.59 +UniRef50_Q2FE11 Phosphoglucomutase 0.0211829766817 0.00710477773023 -5.68354167565e+12 +UniRef50_Q68WT1 DNA helicase II 6.57047734114e-06 9.47556921361e-06 1172821238.4 +UniRef50_UPI0003F6F54C hypothetical protein 6.12541117495e-05 0.000112080046108 20519053404.9 +UniRef50_C6NW58 Putative ATP dependent RNA helicase 3.49382345348e-06 2.86103231412e-05 10139839138.0 +UniRef50_P76086 Transcriptional repressor PaaX 0.00345582632693 0.000384290105381 -1.24001686463e+12 +UniRef50_D9RB01 0.00398590586768 0.00134980017437 -1.06422821704e+12 +UniRef50_J2X6M2 0.000155557412985 8.29646113906e-05 -29306604817.5 +UniRef50_G8PLF5 TRAP transporter solute receptor, TAXI family 1.6093305499e-05 8.38531549301e-06 -3111810153.09 +UniRef50_S5YTP5 Iron complex transport system, substrate binding protein 0.000568226263642 0.000580957140637 5139611268.31 +UniRef50_Q8G6D6 Phosphoglycerate kinase 0.000179440505051 0.00665159747029 2.61288918916e+12 +UniRef50_Q02ZD2 Redox sensing transcriptional repressor Rex 0.0055451001399 0.00120031566504 -1.754042809e+12 +UniRef50_UPI0002D2A0E3 hypothetical protein 5.76355084716e-05 2.50567047746e-05 -13152462839.4 +UniRef50_UPI0002B9B247 hypothetical protein, partial 3.31485548704e-05 4.83863367105e-05 6151679517.46 +UniRef50_P44997 Phosphoserine phosphatase 6.43380728562e-06 8.31204160662e-06 758266243.915 +UniRef50_UPI00046D3094 Fis family transcriptional regulator 1.22057959548e-05 3.21025264004e-05 8032554241.23 +UniRef50_UPI0003598719 PREDICTED 3.5665284474e-05 9.84662241577e-06 -10423310703.5 +UniRef50_A4W090 Putative sporulation transcription regulator WhiA 0.00534934845888 0.00682230266586 5.94649688539e+11 +UniRef50_UPI0003C2A5BF PREDICTED 2.83428486787e-05 7.83417944571e-06 -8279601439.03 +UniRef50_W5XDD5 DNA polymerase 1.66108531379e-06 1.43597468532e-05 5126605493.56 +UniRef50_UPI0003B74800 hypothetical protein 8.77093342479e-05 2.21079798175e-05 -26484071802.7 +UniRef50_UPI000474F6A9 hypothetical protein, partial 0.00018254436888 0.00961102755211 3.80639436157e+12 +UniRef50_E3E7X3 Oxidoreductase Fe S binding subunit 0.000199026004668 0.00106429072327 3.49317984892e+11 +UniRef50_C2MSC7 S layer y domain protein 9.79575047117e-06 0.000203041512412 78015685487.7 +UniRef50_O31546 Probable tRNA dihydrouridine synthase 2 0.0209995014934 0.00703686350551 -5.63688829655e+12 +UniRef50_T9WCL0 Phage tail fiber assembly protein 0.000835977375802 0.000123535008968 -2.87621726142e+11 +UniRef50_S1H2Y6 Protein YibB 0.000497000804833 0.000533868336627 14883875000.7 +UniRef50_C5N1K2 ROK family protein 0.0130752436692 0.000860371846485 -4.93129364816e+12 +UniRef50_P74755 Histidine biosynthesis bifunctional protein HisIE 1.08637969125e-05 4.05456368493e-05 11982923019.6 +UniRef50_Y1MEW7 ATP dependent helicase 0.0029348110386 0.000861996124924 -8.36820816952e+11 +UniRef50_A0A011P8Z8 9.5611001184e-06 3.28034913898e-05 9383238572.48 +UniRef50_UPI000308DF5E 50S ribosomal protein L20 4.74957121289e-05 0.00022549432742 71860225281.6 +UniRef50_Q8CQW2 0.00186957193293 0.00141228848282 -1.84610940308e+11 +UniRef50_A7Z635 Glycerol 3 phosphate dehydrogenase [NAD+] 0.0282606874843 0.00933360194144 -7.64109669513e+12 +UniRef50_UPI00036159B5 30S ribosomal protein S2 1.9562629957e-05 8.72080362758e-06 -4376978333.35 +UniRef50_A6V6R8 0.00189995576076 0.000269695621179 -6.5815602389e+11 +UniRef50_C7RQ14 0.00830825775856 0.00070345792957 -3.07015101235e+12 +UniRef50_UPI00015D2B59 hypothetical protein 1.03005823625e-05 1.36493194203e-05 1351926243.86 +UniRef50_D3E3U4 Exosome subunit 0.00179597989534 0.000341406595601 -5.87229090727e+11 +UniRef50_P42314 0.00054977460658 0.00719583201442 2.68309493184e+12 +UniRef50_Q1CRH7 tRNA modification GTPase MnmE 8.41350643778e-05 0.00315810400977 1.24099898509e+12 +UniRef50_Q8ZLS0 3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC 0.00176578138917 0.000334256188166 -5.77924290433e+11 +UniRef50_U5MWL6 Pyruvate kinase 0.000418697266709 0.000906345296054 1.96869493561e+11 +UniRef50_Q9RYX4 Probable guanine deaminase 0.00017161922569 0.00623335425637 2.44719681774e+12 +UniRef50_W8TV76 2 hydroxyacid dehydrogenase 0.0206520760475 0.0134102557222 -2.92361173245e+12 +UniRef50_UPI000360F94C MULTISPECIES 9.12009469056e-06 2.35415122396e-05 5822103235.23 +UniRef50_P35141 Adenylate kinase 0.000123133192114 0.000119194181292 -1590227005.94 +UniRef50_UPI00036AE0E8 hypothetical protein, partial 0.000336137646621 6.94066700523e-05 -1.07682568398e+11 +UniRef50_R8BHP6 1.66030028487e-05 2.19958110554e-05 2177142850.24 +UniRef50_E6AX10 0.000124470397768 0.000394529152331 1.09026033211e+11 +UniRef50_X5A009 Oxidoreductase 0.0191699464962 0.00348732398351 -6.3312671558e+12 +UniRef50_UPI000470CE1D hypothetical protein, partial 4.41701815211e-05 0.00011859035889 30044338842.1 +UniRef50_A0A010Q6A8 TonB dependent receptor family protein 6.28096487306e-05 0.00622493568842 2.48772590001e+12 +UniRef50_A7GXA8 Argininosuccinate lyase 2.77175730313e-05 2.33574739992e-05 -1760225483.69 +UniRef50_UPI00037A50BE hypothetical protein 9.57436095205e-06 1.6682277892e-05 2869553292.61 +UniRef50_UPI00047EC686 CoA transferase 7.8104388743e-06 0.000139577998334 53196180723.8 +UniRef50_UPI0003B49CD4 glutamine amidotransferase 2.6574305074e-06 1.9754718766e-05 6902385077.32 +UniRef50_L0NM51 6.28544702505e-07 1.6300728892e-05 6327053076.63 +UniRef50_Q6FF15 Exonuclease V, alpha subunit 0.000305144312301 0.00695343683073 2.68399727341e+12 +UniRef50_E3YPZ5 Acetyl CoA carboxylase, biotin carboxyl carrier protein 0.00237902327167 0.000399977478817 -7.98965072196e+11 +UniRef50_Q2SRK6 Tyrosine tRNA ligase 5.14167437652e-06 1.69782233265e-05 4778560061.9 +UniRef50_Q2YV14 0.00110453367413 2.4035292532e-05 -4.36210455858e+11 +UniRef50_A1AYM7 0.000609005269761 2.66256484703e-05 -2.35113799717e+11 +UniRef50_L7KRU0 8.48536226037e-06 7.45591583222e-06 -415600155.772 +UniRef50_C5WGJ7 XRE family transcriptional regulator 0.00509663834726 0.00251383816687 -1.04270812735e+12 +UniRef50_X7YQG6 7.30966912105e-06 2.59484695403e-05 7524712453.03 +UniRef50_B2I3G0 Molybdopterin biosynthesis protein 0.000119206101737 0.00654230304145 2.59308305482e+12 +UniRef50_G8UTB0 Flagellar basal body rod modification protein FlgD 9.42383145694e-06 1.2957966582e-05 1426773718.7 +UniRef50_Q4JVG0 Chorismate synthase 0.000178288933788 0.00613161285929 2.40342992422e+12 +UniRef50_UPI0003B6C9F3 30S ribosomal protein S5 7.89460949214e-06 1.26854668605e-05 1934127910.04 +UniRef50_M3ZEB7 5.17010988532e-05 2.34189864549e-05 -11417835835.7 +UniRef50_R9SLQ2 0.00338932260661 0.00240845609506 -3.95987847298e+11 +UniRef50_Q5X496 Dihydroorotate dehydrogenase 1.0156177721e-05 6.73936574871e-05 23107472964.4 +UniRef50_B7KV96 7.52983512691e-05 1.13043462905e-05 -25835165104.6 +UniRef50_UPI00039B1B0F general secretion pathway protein I 1.71988796948e-05 1.87246931924e-05 615989632.818 +UniRef50_Q6ME91 Aspartate tRNA ligase 3.29351183091e-06 1.64893117375e-05 5327306352.97 +UniRef50_UPI00046FBF5E butanol dehydrogenase, partial 1.46457574333e-05 2.89331299453e-05 5767987608.87 +UniRef50_Q49V04 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0290426869888 0.00569948043676 -9.4239389384e+12 +UniRef50_A6LTZ1 0.00101871065361 0.00132433597517 1.23384692758e+11 +UniRef50_S8N5S2 1.37782205568e-05 1.48410233772e-05 429066540.653 +UniRef50_E3F4P1 Short chain dehydrogenase reductase SDR 0.00537712820083 0.000515491518799 -1.96270238753e+12 +UniRef50_W0Z0G1 NADH quinone oxidoreductase 0.000565264778962 0.000425937555561 -56248109824.3 +UniRef50_Q89ER4 Aliphatic sulfonates import ATP binding protein SsuB 5.73127687095e-05 1.48257726497e-05 -17152521683.4 +UniRef50_Q0T1X7 3 phenylpropionate cinnamic acid dioxygenase ferredoxin NAD reductase component 0.00438649403774 0.000877935462662 -1.41644815162e+12 +UniRef50_Q9CGF0 Xanthine phosphoribosyltransferase 4.36025764995e-05 5.47123979683e-05 4485171259.79 +UniRef50_D8IIA8 0.00824256666788 0.00599974650514 -9.05454022197e+11 +UniRef50_UPI000408C6D9 ribosome binding factor A 0.000128991778768 0.000159796465455 12436230031.6 +UniRef50_Q1R421 0.000200118466156 0.000594841864338 1.59354679647e+11 +UniRef50_UPI0004682957 tRNA uridine 5 carboxymethylaminomethyl modification protein 2.16393714311e-05 1.54717843684e-05 -2489930582.02 +UniRef50_G4AEU2 1.17949001381e-05 0.000579560234898 2.29213832907e+11 +UniRef50_I0C2K0 Nitrogen regulation protein NIFR3 0.000170700875662 7.85094744967e-05 -37218799966.1 +UniRef50_UPI000455F8BC alcohol oxidase 1.19285836302e-05 8.1310154195e-06 -1533124888.06 +UniRef50_D2JBV0 Beta lactamase regulatory sensor transducer BlaR1 0.000235210666732 0.00284976736831 1.05552862465e+12 +UniRef50_UPI000416161F hypothetical protein 6.32856856698e-06 3.60553897701e-06 -1099320460.8 +UniRef50_A4WVT3 Transposase, IS4 family 0.000113437509933 0.000337724491539 90547406785.1 +UniRef50_F4FMD5 Periplasmic iron binding protein 0.0134540534973 0.00438698056029 -3.66048861017e+12 +UniRef50_V9BNZ4 TRAP transporter, DctM like membrane protein 0.000215148340172 0.000116529539996 -39813619819.8 +UniRef50_P39377 Isoaspartyl dipeptidase 0.00256128034184 0.0006413100635 -7.75115562051e+11 +UniRef50_Q1J1P5 Phosphopantetheine adenylyltransferase 1.07723512941e-05 0.101273271699 4.08809136174e+13 +UniRef50_E6V848 Short chain dehydrogenase reductase SDR 0.0157888346465 0.00490830609638 -4.39260289478e+12 +UniRef50_Y6EQN4 Serine rich adhesin for platelets 0.000336127804747 4.3407648978e-05 -1.18174718964e+11 +UniRef50_W8S2G5 Glutathione peroxidase 0.0062440430294 0.00268469731995 -1.43695154099e+12 +UniRef50_A6LRE6 Membrane protein 9.3437125959e-05 0.00351019904868 1.37938871659e+12 +UniRef50_A6VD85 Lipoprotein 0.00119656498788 0.000477601140485 -2.90254527872e+11 +UniRef50_G9WG99 Alpha glucosidase 0.000375194456211 0.00132401314879 3.83049749509e+11 +UniRef50_A4WSV2 Pseudouridine synthase 0.000799205044925 0.000357126760603 -1.78472428291e+11 +UniRef50_V5T5N9 Fimbrial protein 0.000513327420365 0.00121130650698 2.81782722433e+11 +UniRef50_Q2YUZ7 Acetylglutamate kinase 0.00934449658849 0.00433959016749 -2.02054213927e+12 +UniRef50_K0C8G2 Alpha L glutamate ligase like protein 0.000334483234429 0.000521844501014 75640042501.7 +UniRef50_F8JNJ0 2.15837662388e-05 2.53048951411e-05 1502265401.25 +UniRef50_V6XU76 0.0136222171402 0.000600644146164 -5.25696881035e+12 +UniRef50_Q5WH73 Peptide methionine sulfoxide reductase MsrB 1.42564752224e-05 4.39141249356e-05 11973157129.5 +UniRef50_UPI000479EE06 hypothetical protein 7.07228491284e-06 6.51958774208e-05 23465207552.2 +UniRef50_Q8CQZ2 ABC transporter 0.0117175331604 0.00312025685453 -3.47082594512e+12 +UniRef50_UPI0002625DD5 ABC transporter 8.00121400038e-06 7.51578057656e-05 27111940199.7 +UniRef50_Q931P4 Iron regulated surface determinant protein H 0.00930572974121 0.00193265400763 -2.97660115146e+12 +UniRef50_S9R7G4 Multisubunit Na+ H+ antiporter, MnhB subunit 6.51126605838e-05 1.24571473627e-05 -21257676843.2 +UniRef50_F7Z2N3 Transcriptional activator, TenA family 0.00087690840061 0.000586721930844 -1.17151838833e+11 +UniRef50_UPI0004641455 electron transporter RnfC 0.000429362130574 0.00018225473207 -99760289124.8 +UniRef50_B2EBN8 0.000490988865704 0.00114506279426 2.64057671348e+11 +UniRef50_C4L8G4 Type VI secretion protein, VC_A0114 family 5.03846661933e-06 8.23640196763e-06 1291045743.19 +UniRef50_X0P1E3 3.60408261874e-06 0.00158611334968 6.38878410685e+11 +UniRef50_I1EQF0 3.35626174585e-06 0.000186832467184 74071595641.5 +UniRef50_P56032 50S ribosomal protein L4 0.000202949456367 0.00165086272058 5.84540352655e+11 +UniRef50_UPI00037FFF27 hypothetical protein, partial 3.81379949496e-05 4.11357945162e-06 -13736074063.1 +UniRef50_P57389 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.52394463366e-05 3.01457891917e-05 6017873532.0 +UniRef50_M1IRD2 Dehydrogenase 0.000155131228296 0.00647712818571 2.55226775133e+12 +UniRef50_Q8ET05 Ornithine carbamoyltransferase 0.00428174580697 0.00851735725824 1.70996831968e+12 +UniRef50_D8JTY5 Binding protein dependent transport systems inner membrane component 0.000965328331553 0.000196659293133 -3.1032112344e+11 +UniRef50_G7M273 0.000248482349383 0.000436866068578 76052819167.2 +UniRef50_W7WNN7 3.89946372973e-05 0.000318464886917 1.12825569257e+11 +UniRef50_UPI000364C068 hypothetical protein 5.82960092807e-06 8.75281982707e-07 -2000119354.57 +UniRef50_UPI00046650EC hypothetical protein 1.20074142218e-05 0.000102359633577 36476299700.1 +UniRef50_Q3SL72 Putative pilus assembly protein PilF, TPR repeat 6.35564499147e-06 1.1623412684e-05 2126662460.25 +UniRef50_UPI000473F325 hypothetical protein 4.75509770741e-05 2.799074968e-05 -7896703829.98 +UniRef50_A6LUF1 0.000185953689091 0.00249516431661 9.32256667531e+11 +UniRef50_UPI00034F6213 PREDICTED 1.20228376991e-05 9.77191298898e-06 -908725927.428 +UniRef50_K7RJS3 Transcriptional regulator, LacI family 0.000173158710486 0.00499098743873 1.945016579e+12 +UniRef50_B3E717 Elongation factor Ts 0.0125406544533 0.00227945365959 -4.14257267951e+12 +UniRef50_D2P385 0.0261848323859 0.00209149965921 -9.72677408021e+12 +UniRef50_X7ELL2 Transcriptional regulator 0.000158471737472 6.14474901861e-05 -39169879250.7 +UniRef50_C2DNC2 0.000254785127998 0.000114495103492 -56636804445.3 +UniRef50_H8H2P8 Transposase, IS4 4.51008619322e-06 0.00334313515128 1.34784390831e+12 +UniRef50_A6M074 Alcohol dehydrogenase GroES domain protein 0.000796859789197 0.000905768528868 43967794665.7 +UniRef50_UPI00036452A7 hypothetical protein 1.33872329776e-05 0.000161660174712 59859606091.6 +UniRef50_X6KYR9 1.18752521757e-05 4.64843148773e-05 13972103313.6 +UniRef50_UPI000362C621 hypothetical protein 7.66522711868e-06 0.00228697194376 9.20184091746e+11 +UniRef50_Q3JP83 2.77395697363e-05 2.80761906206e-06 -10065334436.6 +UniRef50_Q46VJ2 Twin arginine translocation pathway signal 0.000243411926725 0.000187304464177 -22651271146.6 +UniRef50_Q6AEX4 ABC type glycine betaine transport, ATP binding protein 0.000148811822151 0.00973452068884 3.86986829936e+12 +UniRef50_F0K5E7 Translation factor 0.000374774721742 0.000464442295204 36199899751.5 +UniRef50_UPI0003B62D20 acyltransferase 0.000323666582535 7.80613774246e-05 -99153835217.7 +UniRef50_A0A010V7A5 0.000164601448628 0.00768276763468 3.03517594758e+12 +UniRef50_UPI0001DD0BD2 hypothetical protein, partial 0.000101612368852 4.30557294456e-05 -23640033899.1 +UniRef50_UPI00038FA867 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 1.30548469271e-05 7.31761408798e-05 24271704139.9 +UniRef50_UPI00046F700B hypothetical protein 4.55936381743e-05 3.66972647928e-05 -3591575104.89 +UniRef50_P76057 0.000501781337401 0.000831878042813 1.33264090717e+11 +UniRef50_U5N033 0.000280989491069 0.00147458920369 4.818708511e+11 +UniRef50_UPI0004785487 5 keto 4 deoxyuronate isomerase, partial 9.80347993844e-06 9.21256127817e-06 -238561114.538 +UniRef50_K9ZYV5 Diguanylate cyclase domain containing protein 5.27616103042e-06 0.000113690998245 43768400183.4 +UniRef50_UPI00038240F5 hypothetical protein 6.07283945701e-06 0.000170464760179 66367035711.2 +UniRef50_B2S1K4 Uridine kinase 1.02781113614e-05 9.16935230741e-05 32868400787.9 +UniRef50_UPI00035D9BD3 hypothetical protein 8.72677380167e-05 9.10880445477e-05 1542304627.0 +UniRef50_E4BE72 0.000159270106002 9.28638639564e-05 -26809014810.0 +UniRef50_O75251 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 4.24588359561e-05 0.00533529624212 2.13678341129e+12 +UniRef50_I6TQZ1 Thioesterase 0.00403294363131 0.00101981229436 -1.21643809601e+12 +UniRef50_UPI0003AEA946 8.6906603445e-06 0.000138697762915 52485462674.1 +UniRef50_G1RN76 0.000171884919535 0.00021929458307 19139862951.1 +UniRef50_U6HZU1 Heat shock protein 70 3.52350351094e-05 1.10420552482e-05 -9767002851.21 +UniRef50_UPI00016C4061 DNA polymerase I 1.61113337995e-05 0.000101427191971 34443058887.1 +UniRef50_D8U3W2 Metalloproteinase, extracellular matrix glycoprotein VMP28 1.37341502869e-05 2.0849033558e-05 2872365685.98 +UniRef50_R7PYE0 0.00212293283083 0.000817378482542 -5.27068311358e+11 +UniRef50_A1WUU5 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.06144398752e-05 1.67944014706e-05 -9616441808.68 +UniRef50_C1DQS2 Ribonuclease 3 3.39353062611e-05 4.82134779736e-05 5764273133.21 +UniRef50_D7A1Q0 Arginine ornithine antiporter 0.0106320556227 0.00311243451657 -3.03576331667e+12 +UniRef50_Q28QF9 Hemin import ATP binding protein HmuV 1.7776776585e-05 0.00143865902348 5.73627599255e+11 +UniRef50_D3D4M2 8.10436449709e-05 9.60704069354e-05 6066488204.17 +UniRef50_UPI0004677544 para aminobenzoate synthase 6.69090285335e-06 1.91686560845e-05 5037422098.69 +UniRef50_Q4L6X8 D tyrosyl tRNA deacylase 8.93769413644e-06 4.66497103175e-05 15224803710.8 +UniRef50_K6DPK7 YhgE Pip C terminal domain containing protein 2.2396426082e-06 3.43340585083e-06 481936870.172 +UniRef50_Q8DS55 0.00356304779995 0.00187174277999 -6.82800591204e+11 +UniRef50_Q9X196 Spermidine putrescine import ATP binding protein PotA 0.000133268777525 4.14698577948e-05 -37060350394.5 +UniRef50_A5WAX5 L pipecolate dehydrogenase 0.000126673150626 0.000160935534159 13832144679.0 +UniRef50_P31060 Putative molybdenum transport ATP binding protein ModF 0.00296057007924 0.000542735327959 -9.76109559261e+11 +UniRef50_M9VFB1 ABC transporter 0.000317057321181 0.00454052339103 1.70506508016e+12 +UniRef50_I1EII6 1.00229404513e-05 4.15422886112e-05 12724747638.0 +UniRef50_W0RBV9 LigA 2.50527203152e-05 0.00012992855333 42339660759.3 +UniRef50_UPI0003677181 hypothetical protein 1.45831335383e-05 2.12041248803e-05 2672975453.47 +UniRef50_T3QN35 Putative GTP binding protein typA bipA 1.59713456081e-05 3.29003535741e-05 6834448258.16 +UniRef50_U3TN39 Mobilization protein 1.75602193886e-05 1.81649386932e-05 244132604.007 +UniRef50_Q03Q56 D ribose pyranase 0.0212957568583 0.0130851656942 -3.31471640823e+12 +UniRef50_L9NPU9 Pirin family protein 0.000180041012167 0.000282599717884 41404208034.8 +UniRef50_UPI00036BABDE hypothetical protein 5.55526745096e-05 0.00411409191349 1.63848209465e+12 +UniRef50_V4JV50 0.000845993888298 0.000326510424257 -2.09721849212e+11 +UniRef50_W4HIB0 Putative NAD specific glutamate dehydrogenase 0.000540905120035 0.000405348990859 -54725672809.1 +UniRef50_UPI0003650DAD hypothetical protein 9.19396119793e-06 9.96138610444e-05 36503623145.0 +UniRef50_Q9SC75 L1332.3a protein 0.0012655927843 0.000248440738836 -4.10636762611e+11 +UniRef50_Q6MER0 4.97289288535e-05 8.28883893456e-05 13386881113.0 +UniRef50_G8VKT7 0.000204046480461 0.00516520870194 2.00288206912e+12 +UniRef50_E1VFK2 0.000150086028104 0.00022350980524 29642079840.9 +UniRef50_F8LS47 0.00105018989057 0.00242318168618 5.54293636392e+11 +UniRef50_Q00266 S adenosylmethionine synthase isoform type 1 4.5530303141e-05 0.000253718831903 84048263821.8 +UniRef50_C1KWF9 Peptide methionine sulfoxide reductase MsrA 0.0111303015954 0.00412192185318 -2.82936890442e+12 +UniRef50_G7R477 0.000121184894193 2.79610185585e-05 -37635622579.2 +UniRef50_A3C947 0.000393556200369 0.0007697220813 1.51862782206e+11 +UniRef50_Q8ZBZ0 Na translocating NADH quinone reductase subunit A 0.00037579237787 0.00351209789683 1.2661650248e+12 +UniRef50_Q5LSI0 ABC transporter, periplasmic substrate binding protein 0.00588815343838 0.00146058720011 -1.78746282274e+12 +UniRef50_UPI00037F3C99 hypothetical protein 9.38268419239e-05 8.13171417013e-05 -5050319491.15 +UniRef50_UPI0003462712 hypothetical protein 2.91237757135e-05 3.77310421526e-06 -10234377171.5 +UniRef50_A7HHJ4 LigA 5.57543945134e-05 4.68629334025e-05 -3589591960.97 +UniRef50_UPI00035EDF20 hypothetical protein 2.30232792208e-05 0.00165181868161 6.57564691512e+11 +UniRef50_Q9PHZ7 Phosphoribosylformylglycinamidine synthase 1 1.15429536869e-05 1.13336482932e-05 -84499155.9027 +UniRef50_O29627 3 isopropylmalate dehydrogenase 1.09282927832e-05 4.32229783998e-05 13037760883.8 +UniRef50_P22142 NADH ubiquinone oxidoreductase 49 kDa subunit, mitochondrial 1.98464728569e-05 3.75049363428e-05 7128938402.97 +UniRef50_G9G2D3 Dipeptide ABC transporter, permease protein DppC 0.00832520431281 0.00268696261889 -2.27622736084e+12 +UniRef50_Q9RWW2 8.07168899885e-05 0.015267929336 6.1312640325e+12 +UniRef50_Q8DUN4 FruR 0.00484905812453 0.00599930192646 4.64367537918e+11 +UniRef50_UPI000349D5C4 hypothetical protein 9.43720580817e-06 2.68681594889e-05 7037089902.75 +UniRef50_A9M185 Histidinol phosphate aminotransferase 0.000148811822151 0.0030849853084 1.1853692673e+12 +UniRef50_UPI00036E2FCA FAD containing monooxygenase EthA 8.5016224316e-06 0.00152873748969 6.13737875005e+11 +UniRef50_B7I5R6 0.000162280929733 0.00406827457212 1.57689756536e+12 +UniRef50_UPI00037EE754 hypothetical protein 0.000256004421799 7.14653329689e-05 -74500694709.9 +UniRef50_U5MPF8 Multidrug resistance efflux pump 0.000101565736906 0.00220088728461 8.47521870379e+11 +UniRef50_A6LZS4 NADPH dependent FMN reductase 0.000180041012167 0.000297798358178 47540085629.8 +UniRef50_A8AKU2 50S ribosomal protein L1 0.00316646177371 0.0014162610657 -7.06577503202e+11 +UniRef50_Q5GWU5 0.000175967760106 0.0019755443907 7.26511169058e+11 +UniRef50_P21622 Acetolactate synthase isozyme 3 small subunit 9.84545065508e-05 0.000441945105789 1.38671370016e+11 +UniRef50_UPI00037D5428 hypothetical protein 0.000454254030465 4.44128764005e-05 -1.65457903213e+11 +UniRef50_F0RQZ6 ABC type transporter, periplasmic subunit 5.10234287243e-05 0.0140183075989 5.63876401736e+12 +UniRef50_Q6A6N8 50S ribosomal protein L5 0.00154515758415 0.00412077663233 1.03980901615e+12 +UniRef50_UPI0004788E38 PTS fructose transporter subunit IIA 2.65990362573e-06 0.000341345212724 1.36731415419e+11 +UniRef50_Q7MN70 Phosphoribosylformylglycinamidine synthase 0.0003239118224 0.00683560783147 2.62885158636e+12 +UniRef50_E6UYF1 Short chain dehydrogenase reductase SDR 0.000595381900397 0.0134352023169 5.18359306446e+12 +UniRef50_B2I798 Acyl carrier protein 0.00127242468152 3.56011348131e-05 -4.99320843338e+11 +UniRef50_P36879 0.00222450590001 0.000389520816507 -7.40805996008e+11 +UniRef50_I4CDV3 Thioredoxin reductase 0.000467813691505 0.00186750379415 5.65072070569e+11 +UniRef50_A8A033 0.000595968057209 8.08473860903e-05 -2.07960536172e+11 +UniRef50_P72138 Imidazole glycerol phosphate synthase subunit HisH 2 0.00308396480303 0.000333691192315 -1.1103192063e+12 +UniRef50_UPI000404E07B fatty acid CoA ligase 3.68955238896e-05 9.95444015276e-06 -10876446108.8 +UniRef50_UPI0004785A11 uroporphyrin III methyltransferase 1.26734823415e-05 1.95529499352e-05 2777325488.14 +UniRef50_Q7U8M8 Glutamyl Q tRNA synthetase 5.31889013037e-06 8.54985044521e-06 1304378327.44 +UniRef50_B9KJE5 0.000295440166627 0.000206733138648 -35812115752.8 +UniRef50_C0PP08 6.44125859857e-05 1.40249072518e-05 -20342124231.2 +UniRef50_N6AES7 Hyperosmolarity resistance protein Ebh 0.00785290283046 0.00400188784362 -1.55470200746e+12 +UniRef50_UPI000371B471 hypothetical protein 0.000340433739356 0.000134648260231 -83078123194.6 +UniRef50_Q8XMI8 Shikimate dehydrogenase 0.000168020469813 0.000892768051351 2.9258949232e+11 +UniRef50_UPI000289E4F2 alcohol dehydrogenase 3.67940492347e-06 1.38918181599e-05 4122876543.94 +UniRef50_UPI0004729BC1 cation diffusion facilitator family transporter 1.85225773897e-05 2.01379313855e-05 652138230.727 +UniRef50_Q5HT48 Holliday junction ATP dependent DNA helicase RuvB 1.40432115083e-05 1.16964516696e-05 -947415744.865 +UniRef50_Q4LAB0 Multicopper oxidase mco 0.00887286572868 0.00289089664303 -2.41499432689e+12 +UniRef50_G2TA66 Phosphate ABC transporter permease 0.000116508021255 0.00771621490842 3.06809492924e+12 +UniRef50_W1VWW7 Putative copper transporting P type ATPase B 0.00656060073477 0.0017316373141 -1.94951179097e+12 +UniRef50_B8KQR9 Transcriptional regulator 1.76346093407e-05 2.77368949737e-05 4078416679.03 +UniRef50_Q7VMD0 Nucleoside diphosphate kinase 7.65704841325e-05 2.49234107625e-05 -20850557300.3 +UniRef50_Q0RRL9 60 kDa chaperonin 1 0.000163990211586 0.0041365009386 1.60375132868e+12 +UniRef50_C5J508 DNA replication protein 0.000199728036426 0.037893561556 1.52174631472e+13 +UniRef50_UPI000478279F succinate semialdehyde dehydrogenase 5.02021807841e-06 1.67644449457e-05 4741288504.2 +UniRef50_B1M8C4 Polar amino acid ABC transporter, inner membrane subunit 0.00474495588046 0.00306924390126 -6.76505489301e+11 +UniRef50_F9Z2M8 L fucose proton symporter 8.49555863898e-05 0.00359011708231 1.41507670907e+12 +UniRef50_UPI00037CF736 hypothetical protein 5.39868041212e-06 5.19001181886e-06 -84242071.7507 +UniRef50_H0A168 0.000264909101321 0.000143941620691 -48836056368.2 +UniRef50_D9VMY8 4.57145055376e-05 0.00342465599954 1.3641201454e+12 +UniRef50_A0A011P7P6 Putative carbamoyl transferase, NodU family 7.34885117805e-05 0.00076722108167 2.80068351521e+11 +UniRef50_G9ZBL9 0.000282967258073 0.000968841557828 2.76895871435e+11 +UniRef50_G7U641 0.000124173022652 0.00406619148961 1.59144122912e+12 +UniRef50_UPI0003B5C516 iron ABC transporter permease 1.15978470049e-05 7.33025129992e-05 24910930863.3 +UniRef50_B0VC22 Alpha ketoglutarate dependent taurine dioxygenase (Sulfate starvation induced protein 3) (SSI3) 0.000257669616962 0.00259263450134 9.42653977065e+11 +UniRef50_UPI00046F1DB8 hypothetical protein 1.69084650167e-06 1.57605206318e-06 -46343923.5046 +UniRef50_B4F197 3 isopropylmalate dehydratase small subunit 4.45238707479e-05 6.26890054657e-05 7333487796.85 +UniRef50_UPI0003632A72 hypothetical protein 2.00031064591e-05 1.6144201529e-06 -7423738316.37 +UniRef50_UPI00036D8769 hypothetical protein 2.07203364137e-05 8.75678557014e-06 -4829832284.84 +UniRef50_C5QMF5 0.000274345686213 0.000123158846332 -61035982531.1 +UniRef50_P76180 Inner membrane protein YdgK 0.00106235436086 0.000826424439199 -95247804560.3 +UniRef50_A5CXF1 Acetylglutamate kinase 0.000201608148679 0.00175115336717 6.25570419763e+11 +UniRef50_Q5HLT6 Abortive infection family protein 0.0182775108759 0.00534404045403 -5.22140072085e+12 +UniRef50_Q4FUL2 Tryptophan synthase alpha chain 1.15892789525e-05 3.28964249523e-05 8601956308.2 +UniRef50_X2M4D8 0.000770379569081 0.000467992588528 -1.22077334755e+11 +UniRef50_B0CDQ3 UPF0246 protein AM1_4276 4.65786104097e-06 8.49381739614e-06 1548622653.06 +UniRef50_G8PMP6 Endoribonuclease L PSP 0.000363513067692 0.000154817983405 -84252766503.3 +UniRef50_V6URL6 Cell envelope biogenesis protein AsmA 1.10892538922e-05 1.25218155727e-05 578342729.927 +UniRef50_X2H351 2.84756497483e-05 2.85282649532e-05 21241403.8793 +UniRef50_U6KK83 4.97565011699e-05 8.49458792466e-06 -16657940717.7 +UniRef50_UPI00036BEE13 hypothetical protein 4.94357235951e-05 2.2624328059e-05 -10824089390.7 +UniRef50_UPI00046D6656 hypothetical protein 3.25145387086e-06 4.71171945828e-06 589527137.115 +UniRef50_Q165E2 1,4 alpha glucan branching enzyme GlgB 3.94189825019e-06 3.27944427029e-06 -267440800.91 +UniRef50_UPI000315BFA8 hypothetical protein 8.67844005852e-06 8.53644743749e-06 -57324163.5552 +UniRef50_UPI00035CD1FF hypothetical protein 1.38963729088e-05 1.09064110583e-05 -1207084290.0 +UniRef50_UPI000469790A hypothetical protein 0.000239251470474 7.56707628382e-05 -66039539033.7 +UniRef50_Q4L4C2 Fructose specific permease 0.0250728254733 0.00876659851908 -6.58302392132e+12 +UniRef50_UPI0003FDF28D AMP dependent synthetase 1.16613846236e-05 2.90173312644e-05 7006808640.31 +UniRef50_M1MC89 Cell wall hydrolase 0.000555126454193 0.00060847863502 21538930104.7 +UniRef50_Q5LWG6 0.0100960318222 0.00151255596664 -3.46525453398e+12 +UniRef50_A6LRW3 Phage major capsid protein, HK97 family 0.000325718517098 0.000806020591215 1.9390384129e+11 +UniRef50_C5N1T2 0.00411181451639 0.000942500122969 -1.27949111248e+12 +UniRef50_P0ABY0 Flagellar protein FliL 0.000750682364195 0.00377000049185 1.21893577933e+12 +UniRef50_P50971 Thioredoxin reductase 5.32255902692e-05 1.79323577931e-05 -14248311047.3 +UniRef50_W0AMQ6 Cell envelope integrity inner membrane protein TolA 0.000146501677432 0.000349400152972 81912604419.8 +UniRef50_UPI00047BFB23 hypothetical protein 1.8061693576e-05 0.000167852905616 60472550445.4 +UniRef50_B9KW07 0.000677512190902 0.000901115685083 90271474524.3 +UniRef50_C0PKV4 0.000110694834275 0.00039539759228 1.14937997102e+11 +UniRef50_I4E8E6 6.11920058974e-05 4.36550441335e-05 -7079886666.81 +UniRef50_T2BJL4 ISSoc3 transposase 0.000273540571632 0.00514361420723 1.96610848922e+12 +UniRef50_Q2FUW3 Accessory Sec system protein Asp1 0.0142619194855 0.00211009529852 -4.90584054394e+12 +UniRef50_UPI0003A6ABB5 sulfonate ABC transporter ATP binding protein 6.99006745546e-05 7.56013544229e-05 2301434418.04 +UniRef50_P37749 Beta 1,6 galactofuranosyltransferase WbbI 0.00245559096698 0.000919581419804 -6.20105903153e+11 +UniRef50_C5N0Z4 Siderophore biosynthesis protein, IucA IucC family 0.0117060052259 0.00235676076999 -3.77440471498e+12 +UniRef50_V5VD99 0.000252780796101 0.00625500113512 2.42317000639e+12 +UniRef50_F8FZJ8 Major facilitator transporter 0.000228410147281 0.000154346710037 -29900318476.0 +UniRef50_Q9LPM9 Branched chain amino acid aminotransferase 6 7.53490755902e-06 2.24529737537e-05 6022606388.06 +UniRef50_Q9RUA0 NADH quinone oxidoreductase subunit N 7.95824291342e-05 0.0226002540623 9.09187149804e+12 +UniRef50_G6Y8D4 Transposase 0.000118289126582 6.61912370599e-05 -21032557313.1 +UniRef50_Q1G0V6 0.000183557556203 0.00266306269558 1.00100665172e+12 +UniRef50_Q1G0V5 0.00018946883016 0.000525107495247 1.35501447845e+11 +UniRef50_X6AX71 0.000976586125756 0.000127059397147 -3.42964365205e+11 +UniRef50_A1TRM3 Alkanesulfonate monooxygenase 2.46771539709e-05 3.23924530086e-05 3114760898.89 +UniRef50_Q8D032 Putrescine binding periplasmic protein 0.00198591008641 0.00124354448994 -2.99702101145e+11 +UniRef50_UPI0003658106 hypothetical protein 3.76002895475e-05 1.15004128274e-05 -10536840513.4 +UniRef50_A6L170 NADH quinone oxidoreductase subunit B 1.959131078e-05 0.00280851785292 1.12592386904e+12 +UniRef50_UPI000307B6D2 hypothetical protein 5.09050114678e-05 0.000100811997478 20148062679.9 +UniRef50_A6LQN1 0.000136605303564 0.00219094971619 8.2936404902e+11 +UniRef50_UPI0003620B51 hypothetical protein 1.09453883234e-05 1.81660674291e-05 2915076762.67 +UniRef50_UPI000376D6A5 hypothetical protein 0.000248144130823 4.42045452485e-05 -82332913316.8 +UniRef50_A1KU02 0.000168520530738 0.000250977369854 33288837810.3 +UniRef50_UPI0001746901 leucyl phenylalanyl tRNA protein transferase 1.02958411347e-05 2.21408846248e-05 4781989411.98 +UniRef50_P77596 0.00123419443709 0.000196163311307 -4.19065903552e+11 +UniRef50_UPI0002F262C3 hypothetical protein 0.000154769699674 4.70617012545e-05 -43483040687.5 +UniRef50_A5VRG1 0.000382469253204 0.000191896255988 -76936657569.8 +UniRef50_UPI0002BC7439 hypothetical protein 3.13429970243e-05 0.000241420379894 84810817404.0 +UniRef50_P23189 Glutathione reductase 0.00292648310971 0.00188678545604 -4.19738701312e+11 +UniRef50_B2S648 Protein RecA 0.00555168569786 0.00393852958417 -6.51250918748e+11 +UniRef50_M4YYE1 Universal stress protein 0.0126884230222 0.000858414500682 -4.77591961066e+12 +UniRef50_E6MZX2 0.000145976705705 0.00357737506393 1.38529762521e+12 +UniRef50_B0VSH7 Outer membrane lipoproteins carrier protein 0.000209714438257 0.00114041865536 3.7573671347e+11 +UniRef50_Q7AX70 FhaC protein 0.000131990976721 0.00543933943015 2.14264169914e+12 +UniRef50_UPI0003C757EC LuxR family transcriptional regulator 1.44228219278e-05 9.3792265116e-05 32042418187.7 +UniRef50_P16701 Sulfate transport system permease protein CysT 0.00246343349573 0.00854212828943 2.45404368219e+12 +UniRef50_W9GLM8 0.000233978918713 0.000108833678059 -50522669356.8 +UniRef50_D3P377 Simple sugar transport system permease protein 0.0130930815522 0.00166376860096 -4.61415389184e+12 +UniRef50_UPI000409B662 hypothetical protein 2.4300908401e-05 2.23178409345e-05 -800588671.2 +UniRef50_G7M4C6 0.00150283802342 0.000799117776273 -2.84100499392e+11 +UniRef50_F0Y5D8 Expressed protein 0.000265308422183 0.000119966163246 -58676453482.9 +UniRef50_F5Z794 FMN binding oxidoreductase 0.000642047765232 0.00331828055204 1.0804280171e+12 +UniRef50_K0RRH8 0.00130700349402 0.009434495105 3.28116809889e+12 +UniRef50_M4X5I0 Response regulator receiver modulated diguanylate cyclase phosphodiesterase 0.0012062793865 0.000310009632749 -3.61835098056e+11 +UniRef50_UPI000378EFFC hypothetical protein 0.00029668115103 6.23719181074e-05 -94593512628.6 +UniRef50_UPI00030E8238 hypothetical protein 1.62676695085e-05 4.38487211923e-06 -4797231124.38 +UniRef50_Q92506 Estradiol 17 beta dehydrogenase 8 1.75382891136e-05 4.61871393011e-05 11565892381.6 +UniRef50_P39333 Cyclic di GMP binding biofilm dispersal mediator protein 0.0037941477395 0.000877195807327 -1.17760929004e+12 +UniRef50_D9VNI8 Galactose oxidase 0.000456145361199 0.00013150105369 -1.31062890775e+11 +UniRef50_Q8CN30 Thiazole synthase 0.0104543284896 0.00102059142058 -3.80851541974e+12 +UniRef50_Q71YH9 Dihydroorotase 0.022833128131 0.0050923225525 -7.16218091621e+12 +UniRef50_A0JUU8 tRNA pseudouridine synthase B 0.000844875575059 0.00785024750816 2.82815461497e+12 +UniRef50_P54383 Farnesyl diphosphate synthase 1.86914629752e-05 0.000547863115053 2.1363308961e+11 +UniRef50_Q6GJ46 Putative antiporter subunit mnhB2 0.00891400485779 0.00901556091592 40999426900.1 +UniRef50_A6LW15 ROK family protein 0.000322526474055 0.00133353847767 4.0815795237e+11 +UniRef50_Q9ZHC7 Silver exporting P type ATPase 4.04979096332e-06 1.47177746395e-05 4306795920.96 +UniRef50_N4BUJ9 ATP dependent helicase HrpA 0.00133894560082 0.000638484455681 -2.82784759917e+11 +UniRef50_UPI000346DC0F hypothetical protein 1.63956734181e-05 1.35516514113e-05 -1148166584.22 +UniRef50_X2HS12 Multidrug transporter 6.9178861735e-05 0.0034652787341 1.37104719331e+12 +UniRef50_Q9NQW7 Xaa Pro aminopeptidase 1 3.64542599782e-06 8.06819990845e-06 1785528101.26 +UniRef50_W5XIY9 0.000417712798123 7.2446503745e-05 -1.39388239934e+11 +UniRef50_UPI0003785425 hypothetical protein 8.06664251248e-05 4.24296270106e-05 -15436664617.0 +UniRef50_K7T5I3 2.81963860326e-05 2.55253018819e-05 -1078349449.53 +UniRef50_G7U9V5 1.22695688869e-05 0.00128398567476 5.13407397651e+11 +UniRef50_UPI00047018EB hypothetical protein 0.000460398289766 0.000196912304698 -1.06372525509e+11 +UniRef50_I3Y6A0 CRISPR associated helicase, Cas3 family 5.15929001838e-05 1.88104348598e-05 -13234683537.4 +UniRef50_C5TD27 Xanthine dehydrogenase accessory protein XdhC 6.3056035085e-06 3.67076114321e-05 12273663673.3 +UniRef50_Q0IDE8 Bifunctional purine biosynthesis protein PurH 3.56121505315e-06 5.68540291034e-06 857560704.664 +UniRef50_P96110 Glutamate dehydrogenase 8.08573526118e-06 0.000669483390311 2.67014349606e+11 +UniRef50_A3PRG7 Extradiol ring cleavage dioxygenase, class III enzyme, subunit B 0.00324559664414 0.00251461018982 -2.95108201821e+11 +UniRef50_UPI0001E8E9B9 PTS system, cellobiose specific IIC component, partial 3.50174448055e-05 4.67814083438e-05 4749256440.48 +UniRef50_Q8KY51 Protein phosphatase PhpP 0.00882582267538 0.00298640368895 -2.35744510255e+12 +UniRef50_L9CVM1 CO dehydrogenase flavoC terminal domain protein 0.000150458910931 0.000286866145984 55069274695.9 +UniRef50_UPI00047124E8 hypothetical protein 6.52502705794e-06 5.13620564083e-06 -560684248.843 +UniRef50_Q838L1 Rhamnulose 1 phosphate aldolase 1.02966690407e-05 0.00122386949404 4.89934241666e+11 +UniRef50_P45541 Protein FrlC 0.00420105120066 0.00048412574623 -1.50056841776e+12 +UniRef50_I2FAM9 Serine protease Do 8.93810549727e-05 0.00461845774432 1.82844383751e+12 +UniRef50_N6VEV1 0.000254157238898 0.000526634170831 1.10002281089e+11 +UniRef50_B8EMC7 1.16806089355e-06 2.46030326665e-05 9460985684.16 +UniRef50_Q08194 Cysteine rich extensin like protein 1 0.000120328251754 4.15421666867e-05 -31806909355.7 +UniRef50_B7UI87 Protein FixA 0.00180068068382 0.00023688505764 -6.31323484219e+11 +UniRef50_T1Y9S4 Phosphoesterase family protein 0.00824980101019 0.00186744007426 -2.57663743021e+12 +UniRef50_A9AQ58 Aldehyde Dehydrogenase 0.000291894248533 0.00750247704093 2.91100075709e+12 +UniRef50_R7RGB1 0.000410562620543 4.62700554433e-05 -1.47069378903e+11 +UniRef50_D5AR26 Histidine ammonia lyase 0.00643388321354 0.00157195134562 -1.96282155769e+12 +UniRef50_M9VD49 Sua5 YciO YrdC YwlC family protein 0.00039130817473 0.00581404264265 2.18922444913e+12 +UniRef50_M1MLW9 0.000541182709978 0.00102718853981 1.96206517465e+11 +UniRef50_UPI000475FB40 hypothetical protein, partial 1.8981962984e-05 4.86133478904e-05 11962553704.7 +UniRef50_D7AAI4 Peptidyl prolyl cis trans isomerase 0.00223649737417 0.000608900423076 -6.57080862016e+11 +UniRef50_P17583 Cyanate transport protein CynX 0.00265330720421 0.00439361592331 7.0258398589e+11 +UniRef50_A5KZA1 0.000209366426369 0.000473633001244 1.06687659193e+11 +UniRef50_W0H3E7 0.000248534016838 0.000158391115868 -36391795299.4 +UniRef50_O86507 Urease subunit gamma beta 8.56178580122e-06 0.000124965916391 46993775958.5 +UniRef50_Q01993 Riboflavin synthase 2.74857355682e-05 0.0122935730735 4.95196998013e+12 +UniRef50_A9QYJ6 Tellurium resistance protein 0.000584487712967 0.0694667828496 2.78086278275e+13 +UniRef50_Q53726 Heptaprenylglyceryl phosphate synthase 0.0151622029008 0.00350863017196 -4.70469031604e+12 +UniRef50_U5MQB0 DNA polymerase III epsilon subunit like 3 5 exonuclease 0.000295569823245 0.00141261043477 4.50963002504e+11 +UniRef50_P75820 N acetylmuramoyl L alanine amidase AmiD 0.0030064394004 0.000949081265654 -8.30580725622e+11 +UniRef50_UPI00036D10D1 hypothetical protein 0.00121646092353 0.000642762617483 -2.31609046221e+11 +UniRef50_A0B343 Binding protein dependent transport systems inner membrane component 0.00845056234471 0.00393320019857 -1.82371453266e+12 +UniRef50_Q1GCC9 Flagellar biosynthetic protein flhB 0.00796323140706 0.00194880883204 -2.4280961988e+12 +UniRef50_Q9ZH77 Malate synthase 1.39148058592e-05 2.13304655663e-05 2993792824.13 +UniRef50_UPI00046CFBE6 acyl CoA dehydrogenase 6.82888352512e-06 0.000164064836215 63478083603.1 +UniRef50_F0KN46 Threonine dehydratase catabolic 0.000103232266783 0.00560520249971 2.2212128998e+12 +UniRef50_L0DM84 1.73454969327e-05 7.47568788217e-06 -3984563029.88 +UniRef50_O84823 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.25746442527e-05 1.84711007095e-05 2380471829.27 +UniRef50_A4WVF0 Glucose sorbosone dehydrogenase 0.007971401732 0.000770408156694 -2.90712947248e+12 +UniRef50_UPI0003B3270D iron ABC transporter ATP binding protein 1.06714927643e-05 0.000419865912883 1.65196808782e+11 +UniRef50_Q9K9X4 Transposase related protein 0.000247802618498 0.00186590295227 6.53246961067e+11 +UniRef50_UPI00037D8C4A hypothetical protein 4.24497101115e-06 7.67790204472e-06 1385916385.05 +UniRef50_F8JB05 1.2834847421e-05 1.82300508528e-05 2178109832.01 +UniRef50_UPI000377A6D2 cold shock protein 1.12222600386e-05 6.10776688798e-06 -2064783646.79 +UniRef50_UPI00047DCFEE MarR family transcriptional regulator 1.26560960088e-05 4.13777755241e-05 11595294475.0 +UniRef50_UPI00036E9D0F hypothetical protein 0.000128020255547 8.69219225664e-05 -16591901357.5 +UniRef50_Q2FG29 Alanine dehydrogenase 2 0.0269328599985 0.035107418586 3.30016961489e+12 +UniRef50_Q6A5S0 Probable potassium transport system protein kup 8.32077859384e-05 0.0065296891444 2.60252363163e+12 +UniRef50_R5T303 0.000180636541122 4.33289887985e-05 -55432743825.9 +UniRef50_A9AQT5 0.0068770406176 0.00050338074749 -2.57312470317e+12 +UniRef50_L1NZZ4 0.000469547999705 0.000548119772464 31720388846.9 +UniRef50_Z6HHY0 0.000106434019418 8.74985770602e-05 -7644470443.85 +UniRef50_UPI00047D45C1 cysteine desulfurase 2.21798720113e-05 0.000101844412104 32161552429.3 +UniRef50_A2XBC4 0.00228473895238 0.000219838738361 -8.33625555575e+11 +UniRef50_UPI0004651636 hypothetical protein 0.000110827995103 4.87007501649e-05 -25081531168.5 +UniRef50_J7R4R4 Pleiotrophic effects on 3 hydrogenase isozymes 0.00280208829306 0.000682379141098 -8.55752596403e+11 +UniRef50_F3WHR7 Starvation sensing protein rspA 0.00263712159185 0.000525067199596 -8.52662275973e+11 +UniRef50_A0A023RWV4 Histidine kinase 0.00019667122319 0.00513423053322 1.99335328413e+12 +UniRef50_C1N829 Predicted protein 6.33792468556e-06 0.000441552582737 1.7570149814e+11 +UniRef50_P23921 Ribonucleoside diphosphate reductase large subunit 2.93939043549e-06 0.000236614229776 94337400154.7 +UniRef50_P35483 Alkaline phosphatase H 0.000967308257962 0.000557068713933 -1.6561873813e+11 +UniRef50_A0RU57 8.32635333901e-06 7.3868188941e-05 26460043321.3 +UniRef50_Q9I406 Gamma glutamyltranspeptidase 0.000352845315482 0.000304059782712 -19695318245.1 +UniRef50_R9SL02 Heavy metal translocating P type ATPase 0.0033916913342 0.000761426041618 -1.0618703756e+12 +UniRef50_UPI0003B6145B ABC transporter 3.53472061581e-05 7.3161796178e-05 15266214028.2 +UniRef50_H5IZ71 0.000854763273451 0.000902444607244 19249539568.0 +UniRef50_F9YXP6 0.000472962942534 0.0041037498896 1.4657932453e+12 +UniRef50_UPI00041FBFE4 transcriptional regulator 2.70723079266e-05 3.21268342669e-05 2040574309.59 +UniRef50_UPI00035E0033 hypothetical protein 2.82478914101e-05 2.20990300734e-05 -2482370776.64 +UniRef50_I6T5B9 Transcriptional regulator 0.0063447190306 0.00284113914307 -1.41443819436e+12 +UniRef50_UPI000370C159 hypothetical protein 0.000190389779155 1.13571134971e-05 -72277684104.0 +UniRef50_A9VIS8 UPF0758 protein BcerKBAB4_4299 0.0143862482617 0.00679762790384 -3.06361916131e+12 +UniRef50_M9VBP8 0.0001909709893 0.00309564666142 1.17265321321e+12 +UniRef50_A1A2G3 LexA repressor 4.38984494777e-05 1.08219407825e-05 -13353392454.7 +UniRef50_UPI00037C10BF hypothetical protein 6.17365736436e-05 5.44869762894e-06 -22724106277.0 +UniRef50_D9RNU6 Ferrichrome ABC transporter subunit 0.00983453771375 0.00257531841779 -2.93063591042e+12 +UniRef50_D5CRQ8 TRAP dicarboxylate transporter, DctP subunit 0.0110907431185 0.00179070892151 -3.75453792958e+12 +UniRef50_UPI00046CD945 hypothetical protein 1.56943776114e-05 4.57678010027e-05 12141010065.5 +UniRef50_Q58070 Dihydroorotate dehydrogenase B ), catalytic subunit 0.00149369079139 0.000291430959074 -4.85367047695e+11 +UniRef50_Q9RSA9 0.000184740288181 0.030155549551 1.20995834826e+13 +UniRef50_V7ZGG5 OmpW family outer membrane protein 0.0199386561703 0.0010242197868 -7.63599007425e+12 +UniRef50_UPI00029B3E2F replication factor A 1.03547792301e-05 4.10329426536e-05 12385151037.5 +UniRef50_D7BHE9 Transcriptional activator domain protein 5.29331185719e-06 2.13967185638e-06 -1273163167.84 +UniRef50_D4HCR0 0.00026185134639 0.00560652877988 2.15771186647e+12 +UniRef50_Q5HNV7 ComE operon protein 1, putative 0.00719814745666 0.000871590521789 -2.55410867019e+12 +UniRef50_P46843 Bifunctional thioredoxin reductase thioredoxin 0.000115315227933 0.000182375796055 27073174276.6 +UniRef50_R4LUX8 7.18453675114e-06 1.43733730672e-05 2902221437.74 +UniRef50_S9R328 Xanthine and CO dehydrogenase maturation factor, XdhC CoxF family 1.179493136e-05 1.83485201199e-05 2645764203.95 +UniRef50_R6BD47 4.01193421282e-05 3.15023159993e-05 -3478799191.04 +UniRef50_O28142 Phosphoserine phosphatase 4.81532526702e-06 9.37944470692e-06 1842591025.93 +UniRef50_UPI00046385E1 multidrug ABC transporter 7.29140141895e-06 6.4394726375e-05 23053313021.4 +UniRef50_U2SYT7 1.5690564263e-05 2.88100012715e-05 5296477713.93 +UniRef50_L0FSR8 TolC family type I secretion outer membrane protein 0.000726389583344 0.000294842672612 -1.74220783539e+11 +UniRef50_K7R3S2 6.46406434626e-05 1.44259095546e-05 -20272304282.7 +UniRef50_S3P9S1 0.000151907083638 0.00682094276177 2.69237154153e+12 +UniRef50_I7DPT5 0.00924712400842 0.00184952450445 -2.98650169851e+12 +UniRef50_UPI0003641916 hypothetical protein 3.17732199461e-06 4.98579441679e-06 730102509.286 +UniRef50_Q8CR25 0.0029137438575 0.00142490690233 -6.01061748886e+11 +UniRef50_J6LH83 PE PGRS family protein 2.08491533149e-05 2.03255288594e-05 -211393618.28 +UniRef50_H3VJS7 0.00781287229804 0.00229869888127 -2.22613947487e+12 +UniRef50_A6M1M4 0.000238915182824 0.000876730167469 2.57493736171e+11 +UniRef50_G0AAP1 Sulfate adenylyltransferase subunit 1 0.00013291760171 0.00550238213934 2.16771872458e+12 +UniRef50_UPI00026276D2 inner membrane translocator 0.000437298535183 6.89946108793e-05 -1.48688813839e+11 +UniRef50_E1Z5M0 4.7248663547e-05 0.000134627942383 35276087130.4 +UniRef50_Q04PF0 Glutamate tRNA ligase 3.79225665873e-06 4.50381795668e-06 287266027.821 +UniRef50_UPI0003F4A008 hypothetical protein TREMEDRAFT_32941 4.28269234913e-05 0.000164444627915 49098559693.0 +UniRef50_UPI00046874E6 hypothetical protein 4.11671780792e-05 8.29003363121e-06 -13272906661.6 +UniRef50_UPI0003815981 hypothetical protein 1.04319004556e-05 0.000143914612839 53888609006.1 +UniRef50_Q899C3 Isoleucine tRNA ligase 0.000277875881126 0.00126095067952 3.96879359796e+11 +UniRef50_UPI0003B62A8A hypothetical protein 0.000208046378055 7.18304745803e-05 -54992031790.0 +UniRef50_A8FNY3 Enolase 7.77379841196e-06 0.000102907234683 38406535641.1 +UniRef50_UPI000468DB65 leucyl tRNA synthetase 0.00763843647986 0.00266581924649 -2.00750659799e+12 +UniRef50_B2TMH9 Autolytic lysozyme 0.000746606065437 0.00514698973474 1.77648888608e+12 +UniRef50_UPI00041375E2 cation 0.00524513749207 0.00144328094373 -1.53485614259e+12 +UniRef50_W4LU01 6.93622058191e-05 7.46572567789e-05 2137677050.05 +UniRef50_G5P4U0 Potassium efflux system KefA 0.000524777478615 0.000229660863177 -1.1914219914e+11 +UniRef50_UPI00042B93D3 Ribosomal protein S9 isoform 1 3.43978094443e-05 7.36707639765e-05 15854973678.0 +UniRef50_Q9RRE8 0.000309414744966 0.0252345060504 1.00625652253e+13 +UniRef50_I1E9S6 8.60398934553e-05 1.30538713199e-05 -29465352775.3 +UniRef50_UPI0002FC4FA4 hypothetical protein 3.91877773919e-06 0.000300965304628 1.19921328076e+11 +UniRef50_P77389 Inner membrane transport protein YdhP 0.00476608150304 0.0100764273687 2.14385179124e+12 +UniRef50_UPI000475B66E phosphoenolpyruvate synthase 1.84126723554e-06 0.000196088747194 78420091343.7 +UniRef50_B8IW50 7.74415896331e-06 7.21415818993e-06 -213967816.054 +UniRef50_UPI0004717EC9 hypothetical protein, partial 1.21722485183e-05 2.68377987758e-05 5920662605.49 +UniRef50_S6AW69 0.000151342128602 0.000121598484056 -12007874298.8 +UniRef50_Q1J212 Peptide chain release factor 2 0.000522212461196 0.0475139109057 1.8971125315e+13 +UniRef50_D2V1D7 5.85442293337e-05 2.54704061801e-05 -13352308268.6 +UniRef50_Q92HI8 Pyruvate, phosphate dikinase 5.24655796765e-06 1.36269826333e-05 3383280276.9 +UniRef50_T2E942 Helix turn helix domain protein 0.000416873661651 0.000199089913611 -87921971590.9 +UniRef50_UPI0003B650F3 hypothetical protein 3.77435423094e-06 2.99446742807e-05 10565279350.0 +UniRef50_A6M324 0.000425371116535 0.0014582154319 4.16971924536e+11 +UniRef50_T3G5Y0 Ferrous iron transport protein B 0.000363640057678 0.00132673064976 3.88811490474e+11 +UniRef50_Q15P31 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.37532063541e-06 1.08712708747e-05 2218782554.49 +UniRef50_Q3IY12 Thiamine import ATP binding protein ThiQ 8.71396073511e-06 2.34326223789e-05 5942104323.89 +UniRef50_I0E580 0.000186753458811 0.0032162681675 1.22305226422e+12 +UniRef50_UPI000478031E 50S ribosomal protein L3 1.17381648547e-05 0.000382009431765 1.49483054191e+11 +UniRef50_C6SQB8 0.00275762954035 0.000920720011175 -7.41582918345e+11 +UniRef50_UPI0002F01DF0 hypothetical protein 8.04120350331e-06 3.1933107347e-05 9645454768.33 +UniRef50_B5F623 Uronate isomerase 7.42852274764e-06 0.0051445997467 2.07393906329e+12 +UniRef50_G3ECR2 CRISPR associated endonuclease Cas1 0.00604804628175 0.00311258378819 -1.18508223083e+12 +UniRef50_A0Q0N0 5 methyltetrahydrofolate homocysteine methyltransferase, putative 0.000209702096469 0.00308217956529 1.15965440343e+12 +UniRef50_W1VEW5 5.51818055216e-05 0.0001810137117 50799884655.2 +UniRef50_P0AC06 Flagellar biosynthetic protein FliP 0.00788631526036 0.00296154101091 -1.98819179828e+12 +UniRef50_V5PI53 Glyoxalase family protein 0.000172374381514 7.07011469337e-05 -41046732470.8 +UniRef50_D8JGK5 RDD family protein 0.000152007780746 0.0103696193525 4.12497517573e+12 +UniRef50_B9ECE2 0.00041048444449 5.20162021235e-05 -1.44718028343e+11 +UniRef50_Q9ZMS7 Protein RecA 0.000738798464809 0.00400306406329 1.31782407915e+12 +UniRef50_M9VGZ5 0.000272718039927 0.00281490906634 1.02631371355e+12 +UniRef50_A3PKV8 Drug resistance transporter, EmrB QacA subfamily 0.000261727535746 0.000402703752633 56913828730.0 +UniRef50_I9V7J9 Outer membrane protein HopL 3.20537210985e-05 0.00418938497901 1.67836564501e+12 +UniRef50_S4MVA0 4.56681997051e-05 1.01133044218e-05 -14353947533.5 +UniRef50_E4BBY5 0.00020367949039 0.000322750497486 48070426730.2 +UniRef50_W9GWC0 Rrf2 family transcriptional regulator 2.96603612052e-05 4.65347506707e-05 6812398099.27 +UniRef50_Q06129 Anthranilate synthase component 2 0.000579524916815 0.00356317779097 1.20453727883e+12 +UniRef50_UPI00036E37BC hypothetical protein 8.32017367443e-06 8.57557590806e-05 31261696070.0 +UniRef50_W5E0V3 4.24582565453e-06 3.19105500648e-05 11168588728.8 +UniRef50_B1IBC6 Fibronectin fibrinogen binding protein 0.000540837646435 0.00225774426222 6.93136269608e+11 +UniRef50_Z0CP45 0.00134563954941 0.000245415544476 -4.44173932057e+11 +UniRef50_T2LAG0 0.000123626698192 0.000239194189197 46656014291.3 +UniRef50_UPI0003C1315E 1.03633091753e-05 6.34460281159e-06 -1622401074.1 +UniRef50_P10518 Delta aminolevulinic acid dehydratase 1.6225866125e-05 2.48531422668e-05 3482937247.03 +UniRef50_UPI000367CE13 hypothetical protein 5.107248515e-06 6.01323641111e-05 22214314400.2 +UniRef50_P39344 Gnt II system L idonate transporter 0.00273277837594 0.000821525301176 -7.71596319993e+11 +UniRef50_B8C850 1.6390173704e-05 3.81970678606e-06 -5074851751.73 +UniRef50_W1G461 DNA replication and repair protein RecF 0.00196550738776 0.00026134221699 -6.87992391898e+11 +UniRef50_Q6F2Y7 Chaperone protein ClpB1 0.00462270879769 0.0461674086875 1.67721051563e+13 +UniRef50_Y5GWB2 0.00174480820116 7.44695276172e-05 -6.74336219869e+11 +UniRef50_M9RHC7 ABC transporter permease protein 0.00626284837319 0.00144074977298 -1.94674037871e+12 +UniRef50_UPI0003B304AC phosphate ABC transporter ATP binding protein 9.51050573549e-06 2.15429035754e-05 4857626662.09 +UniRef50_G9NBA4 3.20632121494e-05 1.52155689239e-05 -6801600313.97 +UniRef50_UPI000237A937 two component hybrid sensor and regulator 1.18802098954e-05 7.62401606031e-06 -1718277680.6 +UniRef50_Q9FE64 Elongation factor G, mitochondrial 1.1134442555e-05 9.25392944305e-06 -759186219.785 +UniRef50_Q94JQ3 Serine hydroxymethyltransferase 3, chloroplastic 8.5698984447e-05 4.77148889033e-05 -15334645488.3 +UniRef50_A6LTX4 0.00014173441384 0.000499080931792 1.44265174432e+11 +UniRef50_Q08Q97 3.19454152306e-05 0.000127109055325 38418729295.3 +UniRef50_O31703 Molybdopterin molybdenumtransferase 0.0207463389576 0.00695586478596 -5.56738365122e+12 +UniRef50_V9GHA4 Magnesium and cobalt efflux protein CorC 2.08470993418e-05 0.00050578786233 1.95776536911e+11 +UniRef50_Q5HMD2 HD domain protein 0.00385699326821 0.00536481491767 6.08726102939e+11 +UniRef50_UPI00036F8E58 hypothetical protein 0.000131532710347 4.68161794405e-05 -34201103115.7 +UniRef50_UPI000365B7D1 30S ribosomal protein S4, partial 4.22154676248e-05 0.000173079630694 52831468514.8 +UniRef50_G0XAE5 Type IV conjugative transfer system protein TraN 4.9063336434e-06 3.31955929418e-06 -640600276.691 +UniRef50_Q49XZ6 Superoxide dismutase [Mn Fe] 0.0100681801021 0.00232986667241 -3.12405209135e+12 +UniRef50_A1TT20 Cytochrome c oxidase 0.00136656929874 0.000215054293331 -4.64880738362e+11 +UniRef50_D3VAJ4 Complete genome segment 14 17 4.13987943052e-05 0.000218658825764 71562049925.2 +UniRef50_D5V1H1 Type VI secretion protein, VC_A0114 family 3.59566170659e-06 6.75683525862e-06 1276204554.92 +UniRef50_UPI00037B97B7 hypothetical protein 8.84068114742e-05 5.51423137493e-05 -13429285932.8 +UniRef50_A0A014PLF9 5.92909930107e-05 0.00148416884679 5.75240674789e+11 +UniRef50_B2U7R1 NADH quinone oxidoreductase subunit A 1.51498658085e-05 0.000180158061911 66615833644.6 +UniRef50_V5VFY5 Transport protein 0.000699804344762 0.00634389698476 2.27858945957e+12 +UniRef50_N6UGZ5 6.06175308988e-06 1.8951735345e-05 5203844014.25 +UniRef50_Q6GI14 Amidophosphoribosyltransferase 0.0219170130705 0.00924369691412 -5.11637325142e+12 +UniRef50_R7PYG7 0.00284590018066 0.00196992145052 -3.53643362825e+11 +UniRef50_Q9ZJ81 NAD kinase 0.000253914342281 0.00544052054655 2.09389657148e+12 +UniRef50_UPI0003B77512 2,5 diketo D gluconic acid reductase 1.23242435726e-05 8.02953834419e-05 27440783264.9 +UniRef50_A4VV94 0.000367681157978 0.00205437707963 6.80939841657e+11 +UniRef50_UPI000371E16C hypothetical protein 7.86283867833e-06 1.15286877482e-05 1479948254.53 +UniRef50_Q15QK1 S adenosylmethionine synthase 4.99801043612e-05 0.000451885849153 1.62254281111e+11 +UniRef50_Q8DWE6 Constitutive fructose permease 0.00797593717048 0.000392013325476 -3.06172312144e+12 +UniRef50_B1YK83 DNA polymerase IV 4.03216657662e-06 8.9660656987e-06 1991875621.33 +UniRef50_UPI00040FF8E8 hypothetical protein 4.5261071814e-05 0.000102528447987 23119542510.8 +UniRef50_Q4L449 Putative antiporter subunit mnhG2 0.0072777920158 0.00577091843037 -6.08343357856e+11 +UniRef50_UPI00003799C3 hypothetical protein 0.00741147326252 0.00137434836273 -2.4372614059e+12 +UniRef50_A1BG26 Acetylglutamate kinase 9.35067243003e-06 5.65681464676e-06 -1491255715.84 +UniRef50_UPI000049D95F hypothetical protein SPOA0411 0.000241555302613 0.000216286213806 -10201441238.0 +UniRef50_Q8DUE1 Ribonuclease HII 0.00574401320404 0.00225460120716 -1.40871844304e+12 +UniRef50_S6C0Y4 Citrate transporter protein 0.00494139679158 0.00205409685457 -1.16563841573e+12 +UniRef50_UPI00037DA3B2 hypothetical protein 2.35912782925e-05 2.35002673458e-05 -36742236.0127 +UniRef50_P73241 Probable copper transporting ATPase PacS 8.07813878977e-06 1.08982552142e-05 1138515607.26 +UniRef50_Q6G960 Ribonuclease Z 0.0173046360132 0.00768407166095 -3.8839398866e+12 +UniRef50_G4B7N4 3.51644692866e-05 0.000158508526903 49795509661.4 +UniRef50_B9KWM7 0.00238499322482 0.000387253328522 -8.06512111162e+11 +UniRef50_R7YC06 Cytosine deaminase 1.14863571635e-05 0.000124431196007 45597217430.4 +UniRef50_A3PJF3 Binding protein dependent transport systems inner membrane component 0.00255526062517 0.000715640530313 -7.42677206972e+11 +UniRef50_UPI00047E1F76 hypothetical protein 1.92925408497e-05 4.16244687592e-05 9015673340.64 +UniRef50_C1FNK7 3 oxoacyl [acyl carrier protein] synthase 3 0.000133992589439 1.57875633554e-05 -47720819568.9 +UniRef50_UPI000376CB6F hypothetical protein 9.24467205415e-06 2.18438008864e-05 5086422918.26 +UniRef50_A6QAV3 Ni Fe hydrogenase, large subunit 8.42602653634e-05 0.00268443002869 1.04972044113e+12 +UniRef50_X1DLQ6 Marine sediment metagenome DNA, contig 0.000197553994276 4.72158618194e-05 -60693348929.2 +UniRef50_P12054 Protein rlx 0.000646506702556 0.000136232399105 -2.06003998073e+11 +UniRef50_E7C7F3 3.93983570562e-05 2.34833252863e-05 -6425093624.91 +UniRef50_B7HHF8 3 isopropylmalate dehydratase small subunit 0.0143862411204 0.0113115955951 -1.24127212871e+12 +UniRef50_P39277 Inner membrane protein YjeH 0.00285046034572 0.000977585425713 -7.56102587968e+11 +UniRef50_M0NFH7 0.000411964339439 0.000268982449658 -57723543489.7 +UniRef50_A0A038J3C7 0.000163995289222 7.67322200082e-05 -35229171879.9 +UniRef50_Q65JD4 5.8574639805e-05 0.000309772767695 1.01411766777e+11 +UniRef50_Q5RKZ7-2 Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1 4.10905180925e-06 1.48288518579e-05 4327714826.36 +UniRef50_F5X0E4 Major facilitator superfamily protein 0.0040182457739 0.000519479799796 -1.41249475843e+12 +UniRef50_D3FUC6 [Ni Fe] hydrogenase, small subunit 0.00062334806342 0.00287833180933 9.10364609986e+11 +UniRef50_R6MP39 3.81623446305e-06 3.65002048045e-05 13194919904.2 +UniRef50_UPI000056DCC0 L serine dehydratase 1, truncated, partial 2.33622974773e-05 5.95756239686e-05 14619764292.0 +UniRef50_Q28VI8 Lytic murein transglycosylase 0.0014966798453 0.000338570115544 -4.67543109509e+11 +UniRef50_A5F5D8 Cytosol aminopeptidase 0.0044487187437 0.000939216501975 -1.41682912142e+12 +UniRef50_C5MZL4 0.0167077574453 0.00387404614283 -5.18112674017e+12 +UniRef50_UPI00034529EA chromate transporter 2.60427375488e-05 0.000140738699848 46304167457.8 +UniRef50_Q49X30 Ribosome biogenesis GTPase A 0.00599491138894 0.00222816050473 -1.52068355519e+12 +UniRef50_UPI000225AC87 reverse transcriptase 4.32196796076e-06 1.02104599086e-05 2377256459.27 +UniRef50_Q28V25 Holo [acyl carrier protein] synthase 3.30069552253e-05 0.000108950846025 30659480652.2 +UniRef50_P45423 0.00426110090082 0.00227332936877 -8.02487760188e+11 +UniRef50_P0DM86 Clamp binding protein CrfC 0.00381476418938 0.000573461853341 -1.30855352831e+12 +UniRef50_P45421 0.00264557867288 0.00644598433305 1.53427040123e+12 +UniRef50_P45420 0.00192550147241 0.00141202944665 -2.0729495781e+11 +UniRef50_UPI0003461C99 hypothetical protein 4.52495170848e-06 0.000351389023307 1.40033282205e+11 +UniRef50_Q6FA27 0.000760038903732 0.00309830184933 9.43985444852e+11 +UniRef50_UPI0004759495 membrane protein 7.31557759592e-06 1.90220907522e-05 4726063016.27 +UniRef50_UPI0002FC887C hypothetical protein 4.35669775135e-06 2.96483165427e-06 -561913423.509 +UniRef50_C3ATQ4 Glycosyltransferase involved in cell wall biogenesis 0.000906228074225 0.000519385625036 -1.56173043828e+11 +UniRef50_B5I3Q1 Predicted protein 1.15598881123e-05 0.000115917810826 42130574015.4 +UniRef50_C9TPX2 Pirin family protein 4.87076279894e-06 1.32124614051e-05 3367646091.46 +UniRef50_X1YG35 5.2866770804e-06 1.38339065776e-06 -1575804627.53 +UniRef50_P21338 Ribonuclease I 0.0019279223908 0.00165032781271 -1.12068337643e+11 +UniRef50_Q00593 Alcohol dehydrogenase [acceptor] 5.96208900771e-05 6.4106662388e-05 1810961328.53 +UniRef50_UPI0003627344 hypothetical protein 0.000260080386324 0.000109582948681 -60757662387.7 +UniRef50_UPI0003B5CBDB MULTISPECIES 5.15241744015e-05 0.000117133485173 26487283875.2 +UniRef50_U0DBB7 Flagellar transcriptional activator flhC 0.000488128433862 0.00385195702429 1.35801888078e+12 +UniRef50_D5WDT4 0.00144232101584 0.00110605035407 -1.35756592662e+11 +UniRef50_UPI0003B41656 hypothetical protein, partial 3.21010482948e-05 3.67301323194e-05 1868818025.98 +UniRef50_Q9KWJ8 Putative acetyltransferase 0.00840620994066 0.000423899576834 -3.22255664784e+12 +UniRef50_UPI0003B56B90 DNA mismatch repair protein MutS 2.4647654562e-06 9.8434269709e-06 2978856199.84 +UniRef50_M4S5A3 0.000117888270028 4.63055807142e-05 -28898810094.4 +UniRef50_G7SNL0 PfkB family carbohydrate kinase 0.000162011154012 0.00221282796356 8.27939912368e+11 +UniRef50_UPI00037CCDB1 hypothetical protein 1.29467247214e-05 3.34314783826e-05 8269946429.22 +UniRef50_Q74RF8 Maltose transport system permease protein MalG 0.00136575488815 0.000437593333014 -3.74710209631e+11 +UniRef50_O31660 Putative membrane bound acyltransferase YkrP 8.27898860164e-06 9.58681120098e-06 527984032.142 +UniRef50_Q1J0Y6 DNA topoisomerase 0.000399079970787 0.0466147665679 1.86578398095e+13 +UniRef50_UPI00036A1EC1 hypothetical protein 4.28174133245e-06 6.3277941868e-05 23817490121.0 +UniRef50_UPI000465DC9F hypothetical protein 2.10184779657e-05 3.39873337444e-05 5235686223.62 +UniRef50_D2J7W9 Replication initiation protein 0.00173443353321 0.000507070570232 -4.95501489592e+11 +UniRef50_P21175 Leucine , isoleucine , valine , threonine , and alanine binding protein 0.00166608576175 0.000775995166179 -3.59340496072e+11 +UniRef50_P44591 Protein translocase subunit SecD 0.00324027811373 0.000715217541439 -1.01939793901e+12 +UniRef50_U3STI1 GntR family transcriptional regulator 0.00224441723539 0.00207754015034 -67370327046.8 +UniRef50_B7VAJ2 0.000845117885494 0.0017897982133 3.81379040867e+11 +UniRef50_UPI0002F13DE3 hypothetical protein 0.000178044829461 0.000269720014025 37010396989.5 +UniRef50_D4KNP6 Arginine decarboxylase 0.000456528343263 0.00321511711768 1.11367613992e+12 +UniRef50_I4XMD7 0.0014444746131 0.0014798106935 14265609279.9 +UniRef50_M8HEB4 Bacteriophage replication gene A protein (Fragment) 0.00061921216203 0.00644626569679 2.35245301797e+12 +UniRef50_P24193 Hydrogenase isoenzymes formation protein HypE 0.00401322987455 0.000273864023365 -1.5096278813e+12 +UniRef50_UPI0004093BB4 AsnC family transcriptional regulator 6.20507623063e-05 5.79694823638e-05 -1647662795.72 +UniRef50_UPI00036A6233 hypothetical protein 4.79809914312e-06 1.20738801511e-05 2937322076.79 +UniRef50_G3XZQ5 3.35347678257e-06 0.00026558515391 1.05866146001e+11 +UniRef50_A0RG68 0.000555544956797 0.00155185937777 4.022243579e+11 +UniRef50_Q5M378 0.00609339214724 0.0075248590083 5.77900737884e+11 +UniRef50_D8LYQ1 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 5.63809521599e-05 0.00113898802205 4.37061759197e+11 +UniRef50_UPI000424B474 DEAD DEAH box helicase 2.29932718252e-05 8.64459789658e-05 25616636524.9 +UniRef50_Q1I665 1.16808923219e-05 2.00381453533e-05 3373925603.8 +UniRef50_C1DR24 Ribonuclease E 0.000312284198896 5.94198602059e-05 -1.02084436524e+11 +UniRef50_Q045P5 UPF0297 protein LGAS_0422 0.00193398865863 0.00219736482839 1.06328191721e+11 +UniRef50_U9DMQ5 7.34408538612e-05 0.000115508489646 16983220794.3 +UniRef50_UPI00036D4795 hypothetical protein 1.38231174191e-05 2.80312899246e-05 5736013594.35 +UniRef50_UPI0002FA6B33 hypothetical protein 6.81086224474e-05 7.97087729067e-05 4683123090.27 +UniRef50_Q04U59 1 deoxy D xylulose 5 phosphate synthase 2.02223441495e-06 5.56967297079e-05 21669052409.9 +UniRef50_Q8YHG4 Glutamate tRNA ligase 1 0.0131609789122 0.00160531151154 -4.66516473365e+12 +UniRef50_U8XD19 0.000310707576748 0.000443420006233 53577636347.7 +UniRef50_A6W6P9 3 dehydroquinate dehydratase 6.70523283263e-05 1.95096756486e-05 -19193552299.9 +UniRef50_UPI000464ACF3 hypothetical protein 4.57056753325e-05 1.36335307615e-05 -12947918332.8 +UniRef50_U7DNG8 Peptidase M19 0.000294047659564 0.00075159611247 1.84717925189e+11 +UniRef50_P30900 Acetylornithine aminotransferase 0.00269185039001 0.000894567252223 -7.2558525787e+11 +UniRef50_R6KIL0 YihY family protein 0.000709263862143 0.00263847754524 7.78847237982e+11 +UniRef50_A8AZM1 30S ribosomal protein S19 0.000918664690004 0.0053579068465 1.79217653421e+12 +UniRef50_Q2NI56 tRNA N(2)) dimethyltransferase 0.00342774010115 0.000481172245221 -1.18956560189e+12 +UniRef50_UPI00037026C5 hypothetical protein 0.000162616058948 0.000132043549597 -12342497191.9 +UniRef50_Q49UJ3 0.00143804186229 0.00103017455301 -1.64661037851e+11 +UniRef50_A7WZX4 0.00869873462927 0.00261914243687 -2.45440597306e+12 +UniRef50_A9M0A0 Phosphoenolpyruvate protein phosphotransferase 6.80972920355e-05 0.0026790628682 1.05407884325e+12 +UniRef50_B0RZ23 Trans 2 enoyl CoA reductase 0.000356679674504 0.00490584506905 1.83655389432e+12 +UniRef50_E6MUK3 Drug resistance transporter, Bcr CflA subfamily protein 0.000124857548682 0.00369366187067 1.44077009894e+12 +UniRef50_UPI000365D2A7 hypothetical protein 3.72400375908e-05 4.91706057467e-05 4816516769.07 +UniRef50_UPI00036DCC61 hypothetical protein 2.7307405136e-05 3.37238188507e-05 2590384954.87 +UniRef50_M1MS56 Stage II sporulation protein D 0.0012070110078 0.0013717719382 66516009446.5 +UniRef50_Q03287 Urease accessory protein UreG 0.00255752878591 0.0019372763282 -2.50403528531e+11 +UniRef50_UPI0003A320E0 MULTISPECIES 8.80359086486e-06 2.67295452577e-05 7236927764.57 +UniRef50_UPI000363A104 potassium transporter Kef 2.91810996485e-05 2.93283920533e-05 59463751.2988 +UniRef50_P76559 0.00530910441452 0.000833073713629 -1.80702852102e+12 +UniRef50_D3E189 0.00354871639314 0.000711729403291 -1.14532646155e+12 +UniRef50_UPI000368D15E MULTISPECIES 5.1578915936e-06 8.94352852756e-06 1528308085.23 +UniRef50_M9SFA8 0.00351775501312 0.000459068850833 -1.23482913802e+12 +UniRef50_Q5HQ84 0.00364644958534 0.00377000049185 49879017098.2 +UniRef50_Q8WY44 Quaking protein 3 0.000132447903772 0.000251176225008 47932080243.3 +UniRef50_W5IC94 0.000119836821857 0.000381057778383 1.05458105691e+11 +UniRef50_Q2G222 N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979 0.0110021405262 0.00286222743656 -3.28618280225e+12 +UniRef50_P43796 Glucose 1 phosphate adenylyltransferase 1.11128597521e-05 8.18582933035e-06 -1181678099.96 +UniRef50_C4W8W1 Pyruvate carboxylase 0.0111411259019 0.00155920699933 -3.86833824433e+12 +UniRef50_P47295 Purine nucleoside phosphorylase DeoD type 2.66123177923e-05 7.20521711935e-05 18344626427.8 +UniRef50_K1YAY7 3.29751952152e-05 0.00079831568052 3.08977345702e+11 +UniRef50_D3QIQ9 0.00844810669929 0.0017396661887 -2.70827975595e+12 +UniRef50_B2TKN9 Xanthine permease 0.000387950749033 0.00103611096425 2.61670232703e+11 +UniRef50_Q49YF9 PTS system N acetylglucosamine specific IIBC component 0.017311150531 0.00584158490564 -4.63040439037e+12 +UniRef50_UPI000289252A selenocysteine specific translation elongation factor 1.23688538098e-06 2.5005833395e-06 510170373.172 +UniRef50_Q8YXQ7 Carbamoyl phosphate synthase small chain 1.10502530704e-05 7.45470259441e-06 -1451567849.52 +UniRef50_P0ADC5 Lipoprotein releasing system transmembrane protein LolC 0.00587194401451 0.00112585139528 -1.91605583149e+12 +UniRef50_E6EBC0 5.19764480239e-05 0.00313007685017 1.24266690489e+12 +UniRef50_K4SCN9 tRNA lysidine synthase 0.0044831072853 0.00125666683062 -1.30255360443e+12 +UniRef50_Q9ZL53 Cadmium, zinc and cobalt transporting ATPase 0.000247158633229 0.00503704663323 1.93373656414e+12 +UniRef50_Q3DT06 0.00154305198432 0.000904577469527 -2.57759996585e+11 +UniRef50_Q2JTX6 Dihydroxy acid dehydratase 2.26103009272e-05 2.70190032162e-05 1779847214.93 +UniRef50_K1JKI8 6.94480230649e-05 0.000132614486612 25501076473.6 +UniRef50_P26982 Periplasmic serine endoprotease DegP 0.00532637181899 0.000597672227318 -1.90903405283e+12 +UniRef50_U5MLQ0 Y_Y_Y domain containing protein 0.000466536382436 0.00129428799319 3.34173482916e+11 +UniRef50_P30793-4 Isoform GCH 4 of GTP cyclohydrolase 1 6.63232875033e-05 4.35250816127e-05 -9203915483.48 +UniRef50_A0A059DR32 0.000219908288664 7.25352054249e-05 -59496322174.7 +UniRef50_A0A009W0R2 Valine tRNA ligase 0.000399293470222 0.00530311681055 1.97973365917e+12 +UniRef50_V6AHQ4 Putative serine threonine protein kinase 0.000137395378527 0.000389469764891 1.01765523076e+11 +UniRef50_F2I2C3 4.33638252333e-05 2.07878740472e-05 -9114188531.9 +UniRef50_Q6A5H2 Alanine racemase 0.000169783803081 0.00482403603688 1.87897874088e+12 +UniRef50_UPI00047855C0 excinuclease ABC subunit A 1.59570089508e-05 4.22236653499e-05 10604171516.4 +UniRef50_Q2IMD4 Chorismate synthase 1.42673675655e-05 0.000228467983723 86475417279.7 +UniRef50_N6VDK8 0.000566944071958 3.9838624311e-05 -2.12798937526e+11 +UniRef50_N9IGS7 0.000211924383038 0.00155653651078 5.42836416215e+11 +UniRef50_P42909 N acetylgalactosamine specific phosphotransferase enzyme IIB component 1 0.0123730277007 0.00557831314121 -2.74310964819e+12 +UniRef50_Q1AWD7 Glyoxalase bleomycin resistance protein dioxygenase 0.000513125152715 0.000372247947718 -56873856415.0 +UniRef50_X1B0B7 Marine sediment metagenome DNA, contig 1.07263418938e-05 4.1984474819e-05 12619291842.3 +UniRef50_I4D272 Chemotaxis response regulator protein glutamate methylesterase 0.000501375338616 0.000419719905432 -32965300401.2 +UniRef50_D3NTM9 Transcriptional regulator 0.000204046480461 0.000712341827277 2.05205068995e+11 +UniRef50_Q8Y270 Aspartate tRNA ligase 0.00705410432456 0.00968559336873 1.06236441913e+12 +UniRef50_Q2YZ70 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0252442334925 0.00498605850974 -8.17847383632e+12 +UniRef50_B1SBK3 Oligopeptide ABC transporter, permease protein 6.74433088391e-06 1.00990295505e-05 1354333018.48 +UniRef50_C1MZS3 Predicted protein 4.53640802699e-06 8.59075146632e-06 1636788198.85 +UniRef50_H3CH15 5.52819833876e-06 7.82557029634e-06 927477251.199 +UniRef50_D3QHC2 Membrane protein, putative 0.0207415150827 0.00454391019595 -6.53917185976e+12 +UniRef50_K4R856 2.94297197537e-05 0.000123477368026 37968189702.0 +UniRef50_U5MZX2 Alpha beta fold family hydrolase 0.000371083740584 0.00135652406658 3.97834352317e+11 +UniRef50_C1ABB1 2.49613650782e-05 1.92738328928e-05 -2296126537.11 +UniRef50_Q3JC02 Threonine tRNA ligase 9.59226062798e-06 0.000248348562583 96388848968.5 +UniRef50_UPI00045E74AA hypothetical protein 8.1091788964e-06 2.71032949909e-05 7668157751.36 +UniRef50_B4EC93 0.00952663504457 0.00113805149632 -3.38657411792e+12 +UniRef50_H1D9R7 2.98187300953e-05 6.83852419866e-05 15569774114.8 +UniRef50_B7I2L4 Colicin V producing membrane protein 0.00103815856369 0.015817159874 5.96646418771e+12 +UniRef50_B9KS14 Chemotaxis histidine protein kinase 0.0060690048435 0.00115404037504 -1.98423146931e+12 +UniRef50_UPI00037A03B5 hypothetical protein 9.8871362505e-06 1.16849658402e-05 725805867.212 +UniRef50_A7ZKB3 Probable malonic semialdehyde reductase RutE 0.000790727699528 0.00133455152757 2.19548352849e+11 +UniRef50_UPI0003656A74 hypothetical protein 6.96183999616e-05 4.92516421154e-05 -8222310070.73 +UniRef50_E0XZI6 7.17118028029e-05 7.55313255947e-05 1541988221.87 +UniRef50_I1QQ98 7.88460009933e-05 0.00050338074749 1.71389886788e+11 +UniRef50_D1A708 2.72122660965e-06 7.02785452201e-06 1738638536.49 +UniRef50_O69787 Choline sulfatase 0.00555770156902 0.000410673646541 -2.07791833344e+12 +UniRef50_U3T620 Long chain acyl CoA synthetase 0.000370681660183 0.00609167310279 2.30963444984e+12 +UniRef50_K1VAT6 1.18285596994e-05 7.55107892356e-06 -1726871479.8 +UniRef50_UPI000465DCA9 hypothetical protein 8.83373348496e-05 1.20656737369e-05 -30791805549.7 +UniRef50_UPI00036A9D7D hypothetical protein 0.000263653153162 5.51676206309e-05 -84168167887.9 +UniRef50_O07137 Probable enoyl CoA hydratase echA8 0.000471163298905 0.00461620669722 1.6734048853e+12 +UniRef50_Q2W5V5 Chemotaxis response regulator protein glutamate methylesterase 2 6.5460189545e-05 9.91765284611e-06 -22423203648.9 +UniRef50_UPI00029AB2EF hypothetical protein 0.000116398977183 1.84261250266e-05 -39552842677.6 +UniRef50_F0G430 0.000353112488374 0.000127943017037 -90903678718.9 +UniRef50_Q1DCX8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.66804979553e-05 1.12775963202e-05 -2181217691.15 +UniRef50_P0DA52 DegV domain containing protein SpyM3_0586 0.000134977111625 0.0046186328906 1.81010685862e+12 +UniRef50_E2PWJ8 Aldo keto reductase 5.14549620698e-06 3.70125180038e-05 12865107751.7 +UniRef50_F5TKP9 Nitrate reductase, alpha subunit 9.56775220481e-05 0.00473308589655 1.87217866819e+12 +UniRef50_A4WR54 NnrS family protein 0.00237297096137 0.000465017135201 -7.70264372851e+11 +UniRef50_P30143 0.00612157431953 0.00552812701731 -2.39581958324e+11 +UniRef50_P69857 Probable N acetylneuraminic acid outer membrane channel protein NanC 0.00454660310222 0.000733960937588 -1.53921042824e+12 +UniRef50_M9VJS8 Cof family hydrolase 0.000532648225497 0.00746873457742 2.80018317562e+12 +UniRef50_B1B3K1 Truncated Pre protein 0.00545145342635 0.00148254952002 -1.60229521091e+12 +UniRef50_F2FAF1 2.02345101454e-06 2.3859709144e-06 146353732.193 +UniRef50_UPI0004664D96 XRE family transcriptional regulator 0.000246290359315 3.52250112475e-05 -85209671077.7 +UniRef50_UPI0004711A28 hypothetical protein 1.14672290765e-05 0.000125737174151 46132179076.3 +UniRef50_E1WQ62 0.0171012884395 0.00222396320524 -6.0061587624e+12 +UniRef50_F7WET4 4.77342769245e-05 3.66536805477e-05 -4473372731.52 +UniRef50_X5K411 Iron compound ABC transporter,iron compound binding protein 0.00578736389175 0.00163866177154 -1.67488195623e+12 +UniRef50_Q0TPX5 Ribose import ATP binding protein RbsA 3.80199254595e-05 1.03111528348e-05 -11186371533.5 +UniRef50_R7ESR9 0.00695894858202 0.0109566129863 1.61390617687e+12 +UniRef50_M1LNN1 Tex like protein 0.000581701658506 0.000164968101942 -1.68240450681e+11 +UniRef50_Q8E5K2 Phosphate binding protein PstS 1 0.0049805220487 0.000657098481318 -1.74541914852e+12 +UniRef50_D3QES6 0.0207165657957 0.00518687304853 -6.2695275328e+12 +UniRef50_UPI0002EE51BE hypothetical protein 5.33798360271e-05 3.08815209014e-05 -9082845901.62 +UniRef50_S5CWD7 AraC type DNA binding domain containing protein 0.000135949335724 0.00992055672599 3.95016607409e+12 +UniRef50_UPI0003B77367 2Fe 2S ferredoxin 1.60640513466e-05 2.71336140289e-05 4468918293.65 +UniRef50_D3QES1 0.00835135547352 0.00644126433336 -7.71127232737e+11 +UniRef50_D3E1P1 HEAT repeat containing protein 0.00159135696724 0.000508650190886 -4.37102011919e+11 +UniRef50_P95695 Capsular polysaccharide type 5 biosynthesis protein cap5A 0.00905800005216 0.00197698996541 -2.85869066579e+12 +UniRef50_P45855 Acetyl CoA acetyltransferase 1.07338570887e-05 8.44051913685e-05 29742021697.7 +UniRef50_D7A4H7 ABC transporter related protein 0.0172538992683 0.00734881175199 -3.99880537943e+12 +UniRef50_Q7NC65 Glycerol kinase 2.83427246406e-05 9.60250531467e-05 27324186573.5 +UniRef50_UPI0003499E7A hypothetical protein 8.51126571887e-06 7.39442646445e-06 -450881712.168 +UniRef50_A0A024YRW3 4.92310265064e-05 3.299353095e-05 -6555276212.6 +UniRef50_UPI0002E76F72 hypothetical protein 5.19828160163e-06 6.07579989415e-06 354264903.051 +UniRef50_UPI00035075E1 PREDICTED 3.62874767781e-06 2.14123214387e-05 7179446956.27 +UniRef50_A6UBX6 Binding protein dependent transport systems inner membrane component 0.000933859196944 0.000366853049924 -2.289073395e+11 +UniRef50_A0A011UHJ8 0.000587586275919 0.000179161012056 -1.64886290963e+11 +UniRef50_Q45480 0.00995960533072 0.00952466622444 -1.75590254508e+11 +UniRef50_A4X0G8 0.00151257975366 0.000291372662474 -4.9301628861e+11 +UniRef50_Q5SKG5 Phosphomethylpyrimidine synthase 0.00295026320403 0.000673701378576 -9.19075945489e+11 +UniRef50_UPI0004701620 50S ribosomal protein L10 0.000404553261041 0.000157544053966 -99720648040.0 +UniRef50_F5ZH68 0.00387807960127 0.00129367198408 -1.04335706931e+12 +UniRef50_M1V0X7 7.11342943796e-05 0.00748361636682 2.99250997403e+12 +UniRef50_Q0KDG3 Methionine import ATP binding protein MetN 0.000344187151019 1.3100052143e-05 -1.33663924712e+11 +UniRef50_P16686 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH 0.00388580003638 0.00245950156536 -5.75814195401e+11 +UniRef50_Q9RXL0 0.000636212340763 0.0133917641875 5.14957280874e+12 +UniRef50_A5UNK7 0.000589512978523 0.000271347661734 -1.28447242715e+11 +UniRef50_Q15W23 1.27987922128e-05 3.66075397165e-05 9611883533.43 +UniRef50_UPI000388FF1B PREDICTED 2.31538454072e-05 2.62604676112e-05 1254181506.3 +UniRef50_C5N3N0 0.00572857423693 0.00312792273519 -1.04991492484e+12 +UniRef50_Q03GN4 Pyridine nucleotide disulfide oxidoreductase 0.00016529382669 0.00192048978724 7.08594147951e+11 +UniRef50_UPI00047DF1C1 cell division protein FtsX 4.11287164659e-06 4.72700949014e-05 17423100626.6 +UniRef50_G2TDB8 4.13175564478e-05 1.49999208339e-05 -10624752451.0 +UniRef50_UPI0002D2E18F hypothetical protein 8.74082148297e-06 4.63029881582e-05 15164307626.4 +UniRef50_O64363 Protein gp55 0.00321099709094 0.00111440266111 -8.46420899429e+11 +UniRef50_UPI00036196C8 hypothetical protein 0.000101666981603 4.97676009994e-06 -39035028943.2 +UniRef50_Q8FW95 Bacterioferritin 0.0247829149277 0.00168100562141 -9.32652427926e+12 +UniRef50_A7FHG9 Vitamin B12 import system permease protein BtuC 0.00170978911264 0.00170186117483 -3200605780.63 +UniRef50_Q39586 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.05749683449e-06 3.42353427571e-06 551486078.185 +UniRef50_Q2RGX1 Xylose binding protein 0.00188020839024 0.0018228808535 -23143830069.9 +UniRef50_Q49115 Protein MeaA 0.0078315160999 0.00158702216567 -2.52097882981e+12 +UniRef50_UPI000475C41D siderophore ABC transporter permease 1.4107067744e-05 3.08506752192e-05 6759599804.91 +UniRef50_X1GH09 Marine sediment metagenome DNA, contig 3.45097630158e-05 0.00204766895538 8.12737070197e+11 +UniRef50_N6JKR1 8.41893544581e-05 0.000311524261714 91777891772.3 +UniRef50_Q1J1Q7 Cobalamin biosynthesis CbiX protein 0.000188825826221 0.00702591279155 2.7602159084e+12 +UniRef50_I1DXB2 9.99184141722e-05 2.92997914219e-05 -28509604592.2 +UniRef50_Q7DDL5 Cysteine synthase 3.58904571049e-05 0.00264378980423 1.05284096896e+12 +UniRef50_M9VH79 Transcriptional regulator 0.000179755232787 0.00556785735975 2.1752429481e+12 +UniRef50_UPI00037331DA hypothetical protein 1.15380829852e-06 2.5004181098e-06 543642905.574 +UniRef50_A5UMZ2 3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase 0.00402454548836 0.000908621513235 -1.25793674544e+12 +UniRef50_A5N458 DNA polymerase III subunit beta 0.000537150175013 0.000220935190916 -1.27659869474e+11 +UniRef50_Q5HL55 Copper chaperone CopZ 0.00446845542905 0.0050022406156 2.15495630091e+11 +UniRef50_P39408 0.00217222767686 0.00188028211541 -1.17862005732e+11 +UniRef50_UPI00029CCE10 50S ribosomal protein L21, partial 1.35942131808e-05 0.00056058032253 2.20825004619e+11 +UniRef50_C4AM88 Cytosolic 5 nucleotidase 1B 6.8116097021e-05 8.16826696933e-05 5476991868.38 +UniRef50_UPI00047DBA67 hypothetical protein 6.17916438402e-05 3.1062978316e-05 -12405539355.2 +UniRef50_G5NWB0 NADH quinone oxidoreductase subunit N 0.0027900712293 0.000580117808205 -8.92185315272e+11 +UniRef50_UPI000347E3AB sodium 1.556958875e-05 0.00207716709969 8.32292213813e+11 +UniRef50_Q28LX4 4.92046420817e-05 9.38285369238e-05 18015213944.5 +UniRef50_A4WTF8 Malto oligosyltrehalose synthase 0.00452726398165 0.00125455810495 -1.32123152304e+12 +UniRef50_P44311 Glucose 6 phosphate 1 dehydrogenase 6.07266510379e-06 6.63387367506e-06 226566787.025 +UniRef50_C6D021 Uronate isomerase 0.000337459924055 0.00156282554038 4.94695136235e+11 +UniRef50_P45539 Putative fructoselysine transporter FrlA 0.00378655820717 0.000944937936194 -1.147196974e+12 +UniRef50_C2UPC1 DNA gyrase subunit B 2.15737687866e-05 0.000117491524122 38723174872.1 +UniRef50_A3PPA1 0.00203039516774 0.00185020774163 -72743875069.0 +UniRef50_A3PPA7 0.000309670287911 0.000210918210748 -39867425375.0 +UniRef50_P0ACD2 Putative colanic acid biosynthesis acetyltransferase WcaF 0.0036054559712 0.000668147992546 -1.1858272758e+12 +UniRef50_D7GHA6 Iron ABC transporter, permease protein 0.000433682876624 0.00577877302966 2.15787848641e+12 +UniRef50_Q7VI92 Methionine import ATP binding protein MetN 9.18695071689e-06 0.00265565856241 1.0684130655e+12 +UniRef50_A1KVH9 DNA repair protein RecO 0.000171584540393 0.00734020425798 2.89405974885e+12 +UniRef50_Q3IX14 0.00777550238002 0.00329417064268 -1.80916861449e+12 +UniRef50_K7UZK8 3.4063205305e-05 0.000285198857237 1.01386544466e+11 +UniRef50_S5Z0P9 Transposase 5.65918750495e-05 2.94004476166e-05 -10977512931.0 +UniRef50_D8TPB8 3.49749378825e-05 4.06098790234e-05 2274894887.09 +UniRef50_UPI00031039A1 DNA invertase 0.00016233687908 4.17393587879e-05 -48686698839.9 +UniRef50_S9S3Z7 0.000111404374658 6.4709221319e-05 -18851406416.9 +UniRef50_Q8DV78 0.0050156333377 0.00387411300695 -4.60845765553e+11 +UniRef50_B9DK54 Predicted membrane protein with CBS domains 0.0239320010253 0.00422550716251 -7.95575339829e+12 +UniRef50_UPI00029AC90B hypothetical protein 1.64690183833e-05 3.28491854897e-05 6612874468.11 +UniRef50_D0K826 Ribose operon repressor, putative 0.0178943232175 0.00556425152529 -4.97780124914e+12 +UniRef50_UPI0003B6DD73 amno acid ABC transporter ATPase 3.51032536031e-05 2.86882690501e-05 -2589807984.76 +UniRef50_Q8DV75 0.00829851047201 0.00249235352567 -2.3440168088e+12 +UniRef50_E8Q7C4 0.00668398697518 0.00830972426397 6.56330093524e+11 +UniRef50_Q8CQ71 Arsenical pump membrane protein 0.00386007487421 0.0022506150417 -6.49758684677e+11 +UniRef50_UPI00047661F3 Putrescine importer PuuP 3.99629675192e-06 4.27432865037e-05 15642635241.8 +UniRef50_P26162 Magnesium chelatase subunit H 0.00475679967391 0.00143539390114 -1.3408922687e+12 +UniRef50_Q930T2 4 deoxy L threo 5 hexosulose uronate ketol isomerase 1 1.04637076893e-05 1.40142091738e-05 1433381018.85 +UniRef50_A3PNN7 Sugar transferase 0.00399939854399 0.00210060556968 -7.66566024539e+11 +UniRef50_Q6ZN04-3 Isoform 2 of RNA binding protein MEX3B 0.000286698219379 0.000573959037861 1.15970717508e+11 +UniRef50_UPI000225F341 ParB family protein 0.000117160470934 1.82058578763e-05 -39949191601.0 +UniRef50_M9R8I3 Flagellar biosynthesis protein FlhA 0.00433600736216 0.00074863357376 -1.4482668204e+12 +UniRef50_UPI0003758B1C hypothetical protein 1.25365863945e-05 7.18218987959e-05 23934208129.0 +UniRef50_A3PQH3 0.00666653248337 0.000972106413351 -2.29890968293e+12 +UniRef50_P22787 0.00471206990072 0.00110548619815 -1.45602209849e+12 +UniRef50_UPI00047460D1 ABC transporter permease 6.31621497939e-06 1.72100590185e-05 4397978521.08 +UniRef50_Q1IXG7 Thioesterase superfamily 1.41745435306e-05 0.00637774280707 2.56905059776e+12 +UniRef50_A0A024RXJ7 0.00017790976437 3.87450017475e-05 -56182522414.2 +UniRef50_P0CI61 Catabolic 3 dehydroquinase 0.000102793459241 9.03450939924e-05 -5025557809.48 +UniRef50_P26459 Cytochrome bd II ubiquinol oxidase subunit 1 0.00175421188624 0.000227931341553 -6.1617818546e+11 +UniRef50_D8U5B8 1.27163568037e-06 4.98955651535e-06 1500970265.1 +UniRef50_Q1J0Q8 Glycolate oxidase subunit, GlcD 8.02024055691e-05 0.0138427048682 5.55609112905e+12 +UniRef50_UPI0003B67F78 large conductance mechanosensitive channel protein MscL 0.000254837408769 0.000352154098304 39287941775.4 +UniRef50_O25963 UDP N acetylenolpyruvoylglucosamine reductase 0.000145373294809 0.00249288924385 9.47720995888e+11 +UniRef50_UPI00041D354E MarR family transcriptional regulator 1.62709523456e-05 9.52822450168e-05 31897828429.0 +UniRef50_UPI00034D3A31 hypothetical protein 3.342866195e-06 1.56092428777e-05 4952086792.17 +UniRef50_D3QEW6 Two component sensor histidine kinase 0.00833955288363 0.00237004001112 -2.40996560079e+12 +UniRef50_UPI000476FAE3 hypothetical protein 0.000181214532063 1.53568147813e-05 -66958795769.8 +UniRef50_P77377 Lipopolysaccharide biosynthesis protein WzxC 0.00211292650664 0.000250917024922 -7.51716077196e+11 +UniRef50_P72749 GTP binding protein TypA BipA homolog 8.8611734477e-05 0.0470425373849 1.89558759745e+13 +UniRef50_UPI0003801FCB hypothetical protein 0.00013512475479 2.8814842351e-05 -42918616221.0 +UniRef50_O27830 0.00300182406976 0.000488342951651 -1.01472317126e+12 +UniRef50_L7F3W2 0.000197912972987 0.000238800570243 16506824759.5 +UniRef50_UPI0002559497 response regulator 3.73041524007e-05 2.6893798974e-05 -4202787427.76 +UniRef50_Q9I1P8 0.00187834258225 0.000763343436634 -4.50138837665e+11 +UniRef50_UPI0004701F6D hypothetical protein, partial 1.392865505e-05 1.82977294149e-05 1763848935.68 +UniRef50_UPI0003B7BBF9 elongation factor G 1.16595074273e-05 0.00010639792536 38247061890.6 +UniRef50_UPI00035D925C hypothetical protein 3.66837052483e-06 1.06625494086e-05 2823635843.6 +UniRef50_R6H780 5.82634666514e-05 0.000118283617374 24230871376.8 +UniRef50_X1KMN7 Marine sediment metagenome DNA, contig 1.24864993981e-05 2.72766596585e-05 5970969192.8 +UniRef50_C6SLG1 0.000699048127507 4.98030832662e-05 -2.62108191493e+11 +UniRef50_B2IWH8 Bifunctional protein PyrR 2.3701541931e-05 6.82954208732e-05 18003096157.4 +UniRef50_P66667 Ribonuclease 3 2.30415383842e-05 7.16804448288e-05 19636123398.2 +UniRef50_L0A6M1 ABC type dipeptide oligopeptide nickel transport system, permease component 0.000108472985299 0.0461678805436 1.85947480438e+13 +UniRef50_P37773 UDP N acetylmuramate 0.00287507621356 0.00037098649128 -1.01093174952e+12 +UniRef50_W7WWN9 0.000269407414187 7.41731847278e-05 -78818454226.0 +UniRef50_A6M2X6 RNA methyltransferase, TrmA family 0.00061082237416 0.00423495354638 1.46310622732e+12 +UniRef50_G4L5V8 Polysaccharide deacetylase 0.00199071950385 0.000241403301256 -7.06220417509e+11 +UniRef50_UPI000478D1B9 hypothetical protein 2.9711163247e-06 4.66222030903e-06 682719430.654 +UniRef50_Q32GE1 Quinate shikimate dehydrogenase 0.00382570493768 0.000873536142769 -1.19182676969e+12 +UniRef50_Q4TIC7 Chromosome undetermined SCAF2249, whole genome shotgun sequence. 0.00140363396481 0.000110777474637 -5.21942030215e+11 +UniRef50_O67869 Carbamoyl phosphate synthase large chain, N terminal section 3.00494072985e-05 2.01256795636e-05 -4006330664.41 +UniRef50_C7D5Q5 4.57397310049e-05 2.17375592014e-05 -9689971296.84 +UniRef50_Q48KZ0 ATP dependent Clp protease proteolytic subunit 9.93266991657e-06 0.000142525415876 53529318639.6 +UniRef50_UPI0004778203 ABC transporter 0.000173678189589 3.16773230944e-05 -57327492350.6 +UniRef50_UPI0004710F14 monovalent cation H+ antiporter subunit A 0.000203292484182 7.31516959214e-05 -52539433228.0 +UniRef50_F2UDL8 3.17116082307e-05 9.13836280538e-05 24090326660.6 +UniRef50_A6LR74 Methyl accepting chemotaxis sensory transducer 0.000275885226717 0.00229547421674 8.15332858415e+11 +UniRef50_UPI0002BA87F0 hypothetical protein 0.000226039514279 0.00917888200131 3.61437237575e+12 +UniRef50_A4VRC5 1.39065284748e-05 1.82507762559e-05 1753826139.15 +UniRef50_A4VRC6 6.66355403197e-05 4.28516462473e-05 -9601849898.23 +UniRef50_Q0G053 0.000105033994033 3.82929276099e-05 -26944187520.0 +UniRef50_T1ZL16 2.04555577641e-05 3.39026351593e-05 5428750158.64 +UniRef50_Q92RN6 Probable galactose dehydrogenase GalD 0.00479731987223 0.00089047829244 -1.5772398881e+12 +UniRef50_E8SR78 ApbE 7.45796802505e-06 0.0031845739638 1.28264071509e+12 +UniRef50_Q8GLK9 Isoprenyl transferase 8.15980912161e-06 1.23358673834e-05 1685925966.28 +UniRef50_B8NR51 4.53778080385e-06 3.8960253286e-06 -259084560.584 +UniRef50_UPI000476E214 urea ABC transporter permease 7.53793219571e-06 0.000169195107975 65262985618.6 +UniRef50_A5VXC5 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.000809451773838 0.00093138386683 49225482215.9 +UniRef50_C0B0T0 4.93112317887e-05 6.37633347113e-05 5834491297.1 +UniRef50_UPI000368C3B5 hypothetical protein 4.09123583442e-05 0.00010548776749 26069885101.5 +UniRef50_Q9RTG8 Ribosome maturation factor RimP 0.000432235865095 0.0589539237319 2.36259235337e+13 +UniRef50_A0A023RXG6 Poly polymerase 8.98776163989e-05 0.0108303603448 4.336064678e+12 +UniRef50_Q9HUV8 Phosphoribosylamine glycine ligase 0.00141525314037 0.00960004251316 3.30429990846e+12 +UniRef50_A5UNL7 Adhesin like protein 0.0030986483221 3.97009262231e-05 -1.23493460122e+12 +UniRef50_A5ULS7 Molybdopterin biosynthesis protein, MoeA 0.00319419991837 0.000477180701234 -1.09689399953e+12 +UniRef50_UPI0002FD2950 hypothetical protein 1.79958007731e-05 6.29322231006e-05 18141385125.5 +UniRef50_F4EE48 Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein 0.00011039617203 0.000329553400308 88476462417.4 +UniRef50_UPI00036AA1CD hypothetical protein 1.40061606771e-05 0.000115065419154 40798862783.7 +UniRef50_UPI0003B4B49C bifunctional ppGpp synthetase II guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase 2.3457664673e-06 4.36097404011e-06 813564026.521 +UniRef50_UPI000225B750 4 phosphopantetheinyl transferase 1.61210039147e-05 3.476928129e-05 7528538416.51 +UniRef50_UPI00047061CB magnesium transporter MgtC 8.02710317858e-06 4.16533474372e-05 13575327447.6 +UniRef50_U5L631 Membrane protein 2.2536260916e-05 0.000267391644469 98851123053.8 +UniRef50_A6M235 Sugar isomerase 0.000215706279348 0.00213896813491 7.76444412167e+11 +UniRef50_UPI00037B9AA6 hypothetical protein 8.35440271475e-06 1.52340812945e-05 2777410665.79 +UniRef50_UPI0002375EA0 binding protein dependent transport systems inner membrane component, partial 2.62718574411e-05 7.98669315519e-05 21636989104.0 +UniRef50_A8YWE6 Formamidopyrimidine DNA glycosylase 6.8184526473e-06 1.05425743983e-05 1503473650.99 +UniRef50_R9YT60 HlyD secretion family protein 0.0297637496412 0.00438120474754 -1.02472448524e+13 +UniRef50_G8PI82 Dipeptide transport ATP binding protein DppF 0.00255612123395 0.000242062873115 -9.3421375696e+11 +UniRef50_A4WPE9 Cytochrome B561 0.00262130970332 0.000349487225087 -9.17162612858e+11 +UniRef50_UPI0003602B13 hypothetical protein 3.08040676276e-05 7.16386499904e-06 -9543839899.07 +UniRef50_Q9RT80 0.000234949785595 0.0088198223883 3.46581841794e+12 +UniRef50_UPI0002488638 2 dehydro 3 deoxygluconokinase 9.05884814754e-06 1.29360305103e-05 1565266098.22 +UniRef50_R6KR64 Major facilitator superfamily MFS_1 0.000194270043698 0.000334729755613 56705309334.6 +UniRef50_B7GVN4 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000500342408474 0.00908629270855 3.4662534976e+12 +UniRef50_P05695 Porin P 0.000587967776852 0.000362867073389 -90875916284.3 +UniRef50_B2GC97 Dehydrogenase 0.0144739526937 0.0032063550218 -4.54886744912e+12 +UniRef50_UPI0004434514 PREDICTED 7.9886282589e-06 0.000118943472914 44793832356.3 +UniRef50_P43329 ATP dependent RNA helicase HrpA 0.000130227679806 0.000249043434787 47967378319.1 +UniRef50_D2NAI9 Antibiotic biosynthesis monooxygenase 0.0302796738544 0.00417524869169 -1.05386767755e+13 +UniRef50_A5WGU9 ABC transporter related protein 6.03655632479e-05 0.0064486789442 2.57904050531e+12 +UniRef50_UPI000372E826 hypothetical protein 9.60808095252e-06 8.3101226564e-06 -524001691.883 +UniRef50_UPI00036C8D4E hypothetical protein 6.57059768744e-06 7.91279245731e-06 541860499.179 +UniRef50_L7WXE6 0.00743820309049 0.00416190118874 -1.32268328248e+12 +UniRef50_A0A017T7C4 2.36774933253e-05 6.30705400069e-05 15903456352.4 +UniRef50_R5PQE2 ATPase 0.00550559176891 0.00135328866921 -1.67633571584e+12 +UniRef50_P73443 Lysine tRNA ligase 4.48194437494e-06 8.84020518006e-06 1759483368.9 +UniRef50_UPI00035D38ED MULTISPECIES 1.76869473805e-05 0.00208955827038 8.36439877815e+11 +UniRef50_J6JBM8 6.35072551366e-05 3.20036324846e-05 -12718399057.5 +UniRef50_Q035Y9 60 kDa chaperonin 0.000252337893591 0.00747642347009 2.91645199673e+12 +UniRef50_Q59091 3 oxoadipate CoA transferase subunit B 3.07599775737e-05 2.51778452877e-05 -2253575304.32 +UniRef50_Q4A0W1 Transcriptional regulator 0.0101983964031 0.00162686723112 -3.46043151122e+12 +UniRef50_I6SW93 ABC transporter membrane protein subunit and ATP binding protein 0.00584019362576 0.00181075111156 -1.6267353898e+12 +UniRef50_A4E7V0 9.46072399763e-05 0.000173057181586 31671204116.9 +UniRef50_UPI00046F4A68 xanthine dehydrogenase, partial 2.28308157584e-05 1.3152107152e-05 -3907413435.51 +UniRef50_Q3J2Q4 0.013320335193 0.00195190592935 -4.58957440007e+12 +UniRef50_Q8UBL6 Uroporphyrinogen decarboxylase 6.82521793987e-06 1.44599744783e-05 3082244903.56 +UniRef50_R6Z301 Threonine dehydratase medium form 6.35694974159e-06 1.25080679304e-05 2483281895.53 +UniRef50_C5AVJ7 0.0001822239005 0.000703135012379 2.10298208164e+11 +UniRef50_M9VIM2 Phosphotransferase system, EIIC 8.17069239939e-05 0.00594888313599 2.36865103513e+12 +UniRef50_UPI00035123E6 7.63113698339e-05 3.38277799404e-05 -17151146572.3 +UniRef50_B8H0C0 RNA polymerase binding transcription factor DksA 0.00242770223395 0.00233144767259 -38859147597.3 +UniRef50_A5UM65 0.000477830365635 0.00037381861418 -41990820430.1 +UniRef50_Q8CQJ9 Teichoic acid biosynthesis protein F 0.00891179502599 0.00581970201286 -1.24831589365e+12 +UniRef50_B2I1K5 Thiol 7.48980136639e-05 0.00427868376711 1.69711989492e+12 +UniRef50_B7H204 Potassium uptake protein, TrkH family protein 0.000725539371829 0.00664990647607 2.39173970014e+12 +UniRef50_O27292 Inosine 5 monophosphate dehydrogenase related protein III 0.00272415483359 0.000290475447734 -9.82506232676e+11 +UniRef50_A4BCM8 Acylphosphatase, putative 2.12641712445e-05 5.32557510014e-05 12915393328.7 +UniRef50_J0Q686 TatA E family twin arginine targeting protein translocase 0.000120083825141 0.000111188773754 -3591041399.49 +UniRef50_UPI0003138E18 hypothetical protein 6.57383063637e-05 1.56567195623e-05 -20218551161.9 +UniRef50_D3UHV1 Type I restriction modification system, restriction enzyme 9.09572103896e-05 0.00417173017239 1.64745812147e+12 +UniRef50_Q5GWT1 ISxac3 transposase 0.000124566393376 0.000447817629267 1.30500490668e+11 +UniRef50_UPI00031C00D7 hypothetical protein 1.27488720048e-05 2.20010148782e-05 3735203614.55 +UniRef50_UPI0000E0E146 ribonuclease III 5.92898113588e-06 2.97500389783e-05 9616853368.23 +UniRef50_W6S7D3 HAD superfamily hydrolase 0.000512821989924 0.00186235616371 5.44823506606e+11 +UniRef50_D6H9U3 Acyl CoA dehydrogenase 0.000133478143897 0.000551648748642 1.68820604666e+11 +UniRef50_UPI0003790597 hypothetical protein 3.94653504723e-05 7.01673512158e-06 -13099904206.4 +UniRef50_UPI00046499F1 hypothetical protein, partial 6.33582887958e-06 1.79739048667e-06 -1832223272.12 +UniRef50_P40786 Nucleoside specific channel forming protein tsx 0.00179898178376 0.00148039587258 -1.28617041832e+11 +UniRef50_Q1IWY0 Thioredoxin 0.000515019643709 0.0109367858621 4.20739491182e+12 +UniRef50_P09832 Glutamate synthase [NADPH] small chain 0.0021467923266 0.00155297070746 -2.39733074658e+11 +UniRef50_Q6A9H6 Gamma glutamyl phosphate reductase 0.000560692713583 0.00635117729691 2.33768968353e+12 +UniRef50_A1ALT4 DNA directed RNA polymerase subunit beta 8.48594119554e-06 1.77194172907e-06 -2710523974.65 +UniRef50_A5IS43 0.00230663610187 0.00356710181026 5.08865474131e+11 +UniRef50_D7ZP07 TRAP transporter, DctM subunit 6.1179359241e-05 2.95168752471e-05 -12782533330.7 +UniRef50_UPI000368CDC8 hypothetical protein, partial 0.000267899074815 0.000100777988298 -67468833433.3 +UniRef50_A3MV69 Elongation factor 1 alpha 0.00259522372202 0.000988991374907 -6.48455709216e+11 +UniRef50_P30138 Sulfur carrier protein ThiS adenylyltransferase 0.00126793060533 0.000550956498034 -2.89451245377e+11 +UniRef50_K7RUC4 3 carboxymuconate cyclase 1.01548506727e-05 7.69641585947e-05 26971737450.5 +UniRef50_A0Q087 Elongation factor P 1.74443411028e-05 0.00027228479705 1.0288221931e+11 +UniRef50_Q9RVA5 SLH family protein 0.000123630782379 0.0298404904788 1.19970609263e+13 +UniRef50_P76198 Inner membrane transport protein YdiN 0.00244139719792 0.00130560032228 -4.58535136491e+11 +UniRef50_T1Y784 CDP glycerol glycerophosphotransferase 0.0106798127414 0.000720476448956 -4.02070627606e+12 +UniRef50_Q1RQN9 AfsA like protein 0.000127672825993 0.000692131074034 2.27878721416e+11 +UniRef50_Q9RVC9 UPF0176 protein DR_1100 0.000254484936301 0.0198194203591 7.89860451894e+12 +UniRef50_F0KG78 HTH type transcriptional regulator BetI 0.000182360381085 0.00864167857375 3.41513056189e+12 +UniRef50_P42308 Citrate transporter 0.000807704992712 0.00860488363336 3.14781669937e+12 +UniRef50_B2KBB9 Aspartate tRNA ligase 2.82646779704e-06 3.45003788094e-06 251742894.936 +UniRef50_C1N0Q8 Predicted protein 4.55627425807e-05 7.24528822668e-06 -15469226530.8 +UniRef50_P76224 Inner membrane ABC transporter permease protein YnjC 0.00369922226016 0.00220532678946 -6.03103933681e+11 +UniRef50_Q6A7A7 Lysyl tRNA synthetase 0.000198089810149 0.00676256046573 2.65015735877e+12 +UniRef50_UPI0004169BE3 ribonuclease 1.32371307248e-05 1.42487506815e-05 408403390.493 +UniRef50_UPI0004725351 hypothetical protein 9.07582402088e-07 2.92326955491e-06 813757638.856 +UniRef50_A8AAF8 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 5.7356579454e-06 0.000113361838629 43450009863.9 +UniRef50_UPI000288DACB nitrogen regulatory protein P II 0.000774030641073 3.2502971795e-05 -2.99363819655e+11 +UniRef50_UPI000441EF2C 0.000309891178515 0.000114933850122 -78706665867.7 +UniRef50_A3PLF5 0.000824172926495 0.000212259414197 -2.47036993938e+11 +UniRef50_Q8X7R2 Acyl coenzyme A dehydrogenase 0.00315835334277 0.000806305894014 -9.49550417932e+11 +UniRef50_C3L0X3 Proton sodium glutamate symporter 0.000157943928393 0.00059553833896 1.76662233433e+11 +UniRef50_UPI0003FA835C alkaline phosphatase 3.1046021802e-06 2.20382623475e-05 7643750951.68 +UniRef50_UPI00046A02CC hypothetical protein 3.26167834574e-05 1.160895676e-05 -8481117432.76 +UniRef50_A6LY49 Transcriptional regulator, TetR family 0.00110041267802 0.000938702553188 -65284361801.1 +UniRef50_I7EDS2 0.00075487688964 0.000188316566041 -2.28727355114e+11 +UniRef50_P12994 UPF0098 protein YbhB 0.000957694051974 0.0535375985694 2.12271526817e+13 +UniRef50_UPI000473D6A4 16S rRNA methyltransferase, partial 1.21820110647e-05 1.72827553008e-05 2059233041.28 +UniRef50_Q3DN63 3.81056031298e-05 1.20009835908e-05 -10538755247.6 +UniRef50_UPI00037391D6 hypothetical protein 7.26135290382e-06 5.11307731061e-06 -867285219.285 +UniRef50_V9VP30 5.32821619013e-05 7.37818096906e-05 8275959371.51 +UniRef50_R0QJ92 Dicarboxylate symporter family protein 4.80465832268e-05 0.000320804945664 1.10115898037e+11 +UniRef50_T1ZL59 DeoR family transcriptional regulator 0.00585458619516 0.00318563041543 -1.07749020005e+12 +UniRef50_Q5P260 Glycerol 3 phosphate acyltransferase 7.64626467626e-06 4.92469151816e-05 16794693106.4 +UniRef50_A5UND9 Lipopolysaccharide cholinephosphotransferase, LicD family 0.00334940845849 0.000536541385429 -1.13558895515e+12 +UniRef50_B2UNA9 Polyribonucleotide nucleotidyltransferase 2.31250043527e-06 4.15063357101e-06 742076903.328 +UniRef50_V5U2H7 0.000541209164004 0.000482896306911 -23541615987.7 +UniRef50_Q1IYQ4 Prephenate dehydratase 0.000161548925324 0.0320652079642 1.28798986559e+13 +UniRef50_UPI00036C7E56 hypothetical protein 2.47067120637e-05 0.000146952064247 49351948795.4 +UniRef50_A7HEZ4 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.000136276530269 0.00709858768996 2.81077045233e+12 +UniRef50_UPI0004783FA2 hypothetical protein 7.70194275358e-06 1.20762276177e-05 1765952478.16 +UniRef50_A6M2I5 Glycosyl transferase, family 2 0.00056053334548 0.00118242496157 2.51065276884e+11 +UniRef50_UPI000255A9DA hypothetical protein 0.000198719384631 3.02757422328e-05 -68002765472.0 +UniRef50_B7V115 Heme acquisition protein HasAp 0.000184139506761 0.000360875810829 71350614750.6 +UniRef50_UPI0003612C6D hypothetical protein, partial 2.82789012801e-05 2.73525923168e-05 -373962295.573 +UniRef50_M9VDC9 Trk system potassium uptake protein TrkA 0.000186566386584 0.00524373562063 2.04164127823e+12 +UniRef50_B9J7V3 Oligopeptide ABC transporter 0.0045667731217 0.00139239061505 -1.28153717199e+12 +UniRef50_C5C0W1 Ribosome binding ATPase YchF 0.000170808139747 0.00441969777172 1.71532888417e+12 +UniRef50_Q9AL94 Rubredoxin 0.000890657907197 0.00200173042234 4.48553608755e+11 +UniRef50_Q8PIM5 Chemotaxis response regulator protein glutamate methylesterase of group 2 operon 0.00681078064022 0.00185848204966 -1.99930371255e+12 +UniRef50_G7M3H0 Coagulation factor 5 8 type domain protein 6.21887955241e-05 0.000785203124025 2.91889756799e+11 +UniRef50_A9GZR7 Aspartate carbamoyltransferase 0.00466807292419 0.00172727238266 -1.1872372663e+12 +UniRef50_D2VQJ9 Pyruvate dehydrogenase E1 component subunit alpha 0.00885169233073 0.00197991456965 -2.77422100834e+12 +UniRef50_D8M8V8 Singapore isolate B whole genome shotgun sequence assembly, scaffold_6 0.00021174800887 0.000267859963495 22653084653.2 +UniRef50_W1DQS7 DNA gyrase subunit B 0.00355445998968 0.000534914489664 -1.21902757235e+12 +UniRef50_P0AAP6 0.00269962780571 0.00108705535655 -6.51015286215e+11 +UniRef50_P31433 0.00364084499893 0.000783172907726 -1.1536772908e+12 +UniRef50_UPI00035CCC77 hypothetical protein 1.17483802484e-05 2.34402002823e-05 4720131222.45 +UniRef50_U6EXA7 Primosome assembly protein PriA 0.000407137860956 0.000683299614086 1.11489888624e+11 +UniRef50_UPI00041FF968 hypothetical protein 1.16511919583e-05 5.70234020342e-06 -2401624454.07 +UniRef50_S9UZE8 0.000114044105391 0.000225632224138 45049492878.4 +UniRef50_Q8DR59 Penicillin binding protein 1A 0.00548223567394 0.00140320818075 -1.6467534543e+12 +UniRef50_G4PHY8 ATP 0.00180489472436 0.00037381861418 -5.77742986958e+11 +UniRef50_I4F260 5.20133866624e-05 8.49101492329e-06 -17570515550.6 +UniRef50_T1YAD1 Transposase 0.00395970413512 0.000544292229661 -1.37884369805e+12 +UniRef50_K7S0W1 Short chain dehydrogenase 0.000329202897256 0.00406417890308 1.50785564686e+12 +UniRef50_UPI0003B56E19 ribosome binding factor A 0.000108313409684 0.000200548031983 37236248868.2 +UniRef50_A0A023RTE9 AsnC family transcriptional regulator 0.00031457165738 0.000448582337002 54101755859.4 +UniRef50_B8GMP7 DoxX family protein 6.03586090954e-05 3.04659680197e-05 -12068026026.2 +UniRef50_UPI00036B9DAF hypothetical protein 2.77272094558e-06 1.29050510142e-05 4090545986.37 +UniRef50_A6BA71 Immunogenic protein 0.000110736886652 7.08877619245e-05 -16087580656.2 +UniRef50_D4FB84 Outer membrane specific lipoprotein transporter subunit LolC family protein 5.79636133779e-05 9.66693437478e-05 15625978323.1 +UniRef50_L1IEH2 8.5464689335e-06 1.65413283494e-05 3227622854.16 +UniRef50_T1FJ63 3.32257872014e-06 8.39799538825e-07 -1002328422.63 +UniRef50_UPI000360C3D4 cytochrome C transmembrane protein 0.000149144799129 7.50968811202e-05 -29894053170.3 +UniRef50_C8XIL9 Rhamnan synthesis F 3.86963104524e-06 6.07962916546e-06 892203360.859 +UniRef50_R6JHL0 9.85327172575e-06 1.14783238585e-05 656053487.623 +UniRef50_UPI0003643D3B hypothetical protein 3.82743928528e-06 6.11504073334e-06 923532776.608 +UniRef50_F0VXG5 Adenylate cyclase 0.00591771389633 0.00890380181523 1.20552033628e+12 +UniRef50_F0RLL2 7.67247944857e-05 0.021617996308 8.69647565113e+12 +UniRef50_UPI00047873F0 hypothetical protein 1.90386658113e-05 0.000255844518416 95601428631.2 +UniRef50_UPI0003B6C708 argininosuccinate lyase 2.32482826171e-05 1.25399881283e-05 -4323069890.68 +UniRef50_Q5ZB52 Zinc knuckle containing protein like 7.18326204965e-05 0.000158556972552 35011685152.3 +UniRef50_Q9ZM46 Translation initiation factor IF 2 0.000184085311796 0.00398350639843 1.53387291681e+12 +UniRef50_UPI0003F739B0 hypothetical protein 0.000136732900876 2.98047350933e-05 -43168212682.7 +UniRef50_UPI00035E495A hypothetical protein 4.10435608361e-06 6.38603527873e-06 921141890.422 +UniRef50_F8F0F6 Appr 1 p processing domain protein 1.28852953544e-05 0.00029571565412 1.14182086553e+11 +UniRef50_V6JJY2 3.89364837914e-05 0.000920122753983 3.55745710648e+11 +UniRef50_O31676 6 carboxy 5,6,7,8 tetrahydropterin synthase 0.0144690549395 0.00129060344695 -5.32030258535e+12 +UniRef50_UPI00032A023A PREDICTED 0.00470279332887 0.00224455790699 -9.92419805754e+11 +UniRef50_A6LX21 Molybdate metabolism regulator 0.000421598238542 0.00109169523898 2.70526382092e+11 +UniRef50_UPI000374B6B2 hypothetical protein 0.00157333441271 0.000150086208694 -5.74582765182e+11 +UniRef50_UPI0003B781A0 DNA repair protein RecO 2.23566207055e-05 8.1212934778e-05 23761016239.3 +UniRef50_UPI000467B9AD peptide ABC transporter ATP binding protein 3.13881593914e-05 8.47194966661e-06 -9251555079.42 +UniRef50_Q9SAK4 Succinate semialdehyde dehydrogenase, mitochondrial 0.00358094249344 0.00345758586675 -49800583950.8 +UniRef50_Q8CS01 0.00515401166009 0.0110586709997 2.38378343372e+12 +UniRef50_P50097 Inosine 5 monophosphate dehydrogenase 0.000273286255569 0.00481608241931 1.83398255768e+12 +UniRef50_A3M8U4 Heavy metal RND efflux membrane fusion protein CzcB family protein 0.000192547271485 0.00873637030013 3.44924620116e+12 +UniRef50_D5RU62 Putative epstein Barr nuclear antigen 1 0.000100622848688 0.000200068275057 40147338957.8 +UniRef50_F7V1W3 0.000336298541832 6.92934376009e-05 -1.07793237099e+11 +UniRef50_Q04KQ9 0.00276371054329 0.0025210101165 -97981140564.3 +UniRef50_Q9RWR5 DNA primase 0.000171300783763 0.0259830054927 1.04205019362e+13 +UniRef50_UPI00040DB2E3 heme ABC transporter ATP binding protein 1.35608819191e-05 4.19767915406e-05 11471851416.6 +UniRef50_UPI000262D0CC phosphoenolpyruvate protein phosphotransferase PtsP 1.19957909337e-05 5.37543335686e-05 16858436096.7 +UniRef50_UPI00042B76EF Heavy metal atpase 5 isoform 1 1.65400293299e-06 1.5632186505e-06 -36650728.8896 +UniRef50_F5M5U6 0.00136587909971 0.000865347614835 -2.02070702656e+11 +UniRef50_Q6ARN9 Bifunctional enzyme IspD IspF 1.17078556704e-05 1.60261529287e-05 1743349594.64 +UniRef50_G4LIC7 0.00110937615678 0.000202271715884 -3.66209194213e+11 +UniRef50_UPI000252B7A9 3.63926216387e-05 4.2321276286e-05 2393470633.89 +UniRef50_A8TU87 Putative transposase 4.01834004625e-05 2.33844370759e-05 -6781947665.63 +UniRef50_A3PRK6 Transcriptional regulator, LysR family 0.00174659386845 0.00216186384862 1.6764958693e+11 +UniRef50_M9VAV5 0.000266744043507 0.00411777613678 1.55470891353e+12 +UniRef50_UPI0003B7B5C8 nitrogen regulatory protein P II 1 2.40911319439e-05 5.36099085147e-05 11917092337.8 +UniRef50_UPI00037696BA hypothetical protein 5.43508096325e-06 1.02151139109e-05 1929757958.57 +UniRef50_B0VPR2 0.000141204235229 0.0108455255059 4.32146585377e+12 +UniRef50_H0DJE4 Putative lipoprotein 1.60051396714e-05 1.12568848442e-05 -1916928741.38 +UniRef50_M4HVK3 Degenerate transposase 0.000284617629462 0.00171833629301 5.78809818182e+11 +UniRef50_R6UMN9 L serine dehydratase alpha chain 1.58051273234e-05 3.53624363035e-05 7895525630.44 +UniRef50_E3PRA3 Rubrerythrin 0.00195638533259 0.000326316801329 -6.5807866926e+11 +UniRef50_UPI000474129C hypothetical protein 8.00690582471e-06 1.19439341444e-05 1589426645.43 +UniRef50_Q3J096 0.00284809959354 0.00100781739652 -7.42944505739e+11 +UniRef50_Q3J090 0.00838475891435 0.000697598516207 -3.1034009848e+12 +UniRef50_UPI000469755B secretion system protein E 1.17124125567e-05 9.99146085413e-06 -694769320.78 +UniRef50_Q6F957 0.000476195945936 0.00651832958571 2.43928349569e+12 +UniRef50_F8L7S5 UDP glucose 6 dehydrogenase 0.00219825905091 0.000144056929367 -8.2930660436e+11 +UniRef50_K4KNP7 0.000390502747092 0.00105605740712 2.68692583527e+11 +UniRef50_A3PJZ1 PpiC type peptidyl prolyl cis trans isomerase 0.000839615858485 0.000144526935666 -2.80615927842e+11 +UniRef50_Q20EX8 Light independent protochlorophyllide reductase subunit N 4.91313101059e-05 2.06354153215e-05 -11504142408.4 +UniRef50_Q48C77 Imidazoleglycerol phosphate dehydratase 0.000518290023376 0.00764781901812 2.87827834434e+12 +UniRef50_Q9K3V7 Pyridoxine pyridoxamine 5 phosphate oxidase 0.000392793480937 7.09807860841e-05 -1.29919733998e+11 +UniRef50_Q90512 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 4.57827311813e-06 1.64659396292e-05 4799196848.6 +UniRef50_UPI00016A4BBE hypothetical protein 0.00200037194773 0.000729177049855 -5.13196979586e+11 +UniRef50_Q3J3B2 Glycosyltransferase, Succinoglycan biosynthesis protein exoL 0.000968993381439 0.000230116913138 -2.98293497287e+11 +UniRef50_UPI0004676BF2 hypothetical protein 5.28246864124e-05 1.03617652512e-05 -17142802351.4 +UniRef50_UPI0003643AE6 hypothetical protein 0.000930708721563 5.74750370064e-05 -3.52535154238e+11 +UniRef50_T1A3B5 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 0.000219957241923 3.41035644992e-05 -75031410257.2 +UniRef50_R5VTD5 ABC transporter permease protein 0.000288892338411 0.00136938202842 4.36206946957e+11 +UniRef50_C7NWU6 Cupin 2 conserved barrel domain protein 0.000131750549372 9.06074721059e-05 -16609965174.7 +UniRef50_D6DES4 Amino acid transporters 0.000402249499104 0.0024249686578 8.16596545923e+11 +UniRef50_UPI000428A00C spermidine putrescine ABC transporter ATP binding protein 6.53195629079e-05 3.24751363587e-05 -13259698044.3 +UniRef50_Q9RVX3 0.000193584821048 0.0299487419084 1.2012522053e+13 +UniRef50_X1YHV7 Catalase 1.25068503359e-05 4.43177126713e-05 12842435488.0 +UniRef50_Q1GX76 Transcriptional regulator, TetR family 0.000391483464943 0.000329962799096 -24836647745.9 +UniRef50_UPI0004716697 peptidase S11 3.88876080834e-06 1.90453672133e-05 6118907998.17 +UniRef50_U5P5Q4 Competence protein CglA 0.00744671133743 0.00681102489411 -2.56634417918e+11 +UniRef50_V2Y8C8 0.000147206788535 4.50656312982e-05 -41235638589.5 +UniRef50_A4WXA6 0.00563195017634 0.00492194508659 -2.86637767474e+11 +UniRef50_B9KL58 5 oxoprolinase 0.00720518620451 0.00137031571011 -2.3556088205e+12 +UniRef50_P95649 Protein CbbY 0.000163649995166 0.000818878681345 2.64523861171e+11 +UniRef50_UPI0003C44AB2 PREDICTED 2.94492295696e-06 4.68311311067e-05 17717400774.4 +UniRef50_F9H9Z5 Putative phage terminase, large subunit 9.6108933779e-06 9.3195617953e-05 33744179010.9 +UniRef50_A1Z1V6 RepA 0.000161305417124 3.61472717274e-05 -50527879159.9 +UniRef50_UPI0004006A19 hypothetical protein 9.59057940353e-06 0.000269922513322 1.05099196355e+11 +UniRef50_S5JZI7 Purine catabolism regulatory protein 2.40359633594e-05 0.00158197034285 6.28957227005e+11 +UniRef50_Q4MM88 0.000442366393186 0.000200709695323 -97559774388.4 +UniRef50_H0DZL7 Relaxase mobilization nuclease domain protein 0.000137623688836 5.30631467751e-05 -34138128504.5 +UniRef50_UPI00037ECD4A hypothetical protein 1.19076507789e-05 1.46062121686e-05 1089442348.09 +UniRef50_U5YR77 Transcriptional regulator 0.000117565922368 9.00635532562e-06 -43826829390.5 +UniRef50_UPI000372834D hypothetical protein 3.69669045612e-06 1.64271178267e-05 5139429749.42 +UniRef50_Q45068 Amino acid carrier protein AlsT 0.0224102101688 0.00403886714413 -7.4167366208e+12 +UniRef50_Q28VF6 0.00130981999969 0.000752195661279 -2.25119788237e+11 +UniRef50_UPI00046AC1C8 hypothetical protein 6.40654032508e-06 1.8322472088e-05 4810607877.61 +UniRef50_Q46939 Probable acetyl CoA acetyltransferase 0.0027754171781 0.00110090319651 -6.76021842965e+11 +UniRef50_R5UAF2 5.79943167142e-05 7.17894684678e-06 -20514788390.2 +UniRef50_A0A017LCS6 Radical SAM superfamily protein 0.00102984065804 8.51056787246e-05 -3.81401104351e+11 +UniRef50_Q55786 Methionine synthase 7.3133534145e-07 1.82581563621e-05 7075792724.3 +UniRef50_Q038L3 Elongation factor Ts 0.0254438962548 0.00515435395807 -8.19113720586e+12 +UniRef50_UPI00036D89F3 hypothetical protein 1.14329435152e-05 9.21290961603e-06 -896254927.974 +UniRef50_Q3IWX5 Putative tape measure protein 0.00121613739864 0.000466554629156 -3.02615762456e+11 +UniRef50_B5ZBT1 Urease subunit gamma 3.72387245512e-05 0.000223864586392 75343150582.1 +UniRef50_P26172 Geranylgeranyl diphosphate reductase 0.0056093984257 0.00231795694693 -1.32879531551e+12 +UniRef50_B0V8T9 0.000259143699447 0.0066128463682 2.56506773607e+12 +UniRef50_W0F7K7 Permease of the major facilitator superfamily 0.00840139879572 0.00517339360517 -1.3031853075e+12 +UniRef50_P75818 0.00345785643418 0.000598614942967 -1.15431087684e+12 +UniRef50_UPI00039A620E potassium transporter KefB 2.14526179917e-05 6.9948455534e-05 19578364726.7 +UniRef50_D2NU75 3 deoxy D arabino heptulosonate 7 phosphate synthase 0.000119963767644 0.0032352127704 1.25766425082e+12 +UniRef50_A5V3C2 0.000216341742202 5.97952398923e-05 -63199744024.2 +UniRef50_G8V756 Glycosyltransferase 8.33302403623e-05 0.00676860783205 2.69892860135e+12 +UniRef50_A4WQD3 Glutathione dependent formaldehyde activating, GFA 0.0112000207044 0.00573889148155 -2.20472488286e+12 +UniRef50_C5AV20 9.24594108654e-06 1.8384063588e-05 3689172191.21 +UniRef50_UPI0003594D3C PREDICTED 1.31787062104e-06 1.08815351915e-05 3860968746.46 +UniRef50_G0DTF9 Ferrochelatase, HemH 6.48230089558e-05 0.00629588139122 2.5155547326e+12 +UniRef50_Q03023 Serralysin 0.000474183727002 0.000148774158797 -1.31371835909e+11 +UniRef50_UPI0003679B46 hypothetical protein 1.80164948797e-05 4.2054940651e-05 9704615542.78 +UniRef50_F7CYV8 9.1431219323e-06 7.44086098823e-05 26348478383.0 +UniRef50_A3M893 Putative hemagglutinin hemolysin related protein 0.000309020806155 0.00395451715083 1.47173160961e+12 +UniRef50_Q6A889 0.000205155428724 0.00419749930826 1.61175821574e+12 +UniRef50_UPI00041B92EF hypothetical protein 4.02040357605e-05 0.000111837871662 28919458599.5 +UniRef50_UPI000477E9DF thioredoxin 0.000112971515246 0.000156139943043 17427624037.8 +UniRef50_UPI000366DA44 hypothetical protein 2.86162365455e-05 2.63131140096e-05 -929798830.235 +UniRef50_P15006 Protein McrC 0.00328152386479 0.000642244193887 -1.06550959075e+12 +UniRef50_UPI000366C9FA hypothetical protein, partial 4.83888056598e-05 4.8319027058e-05 -28170477.8264 +UniRef50_UPI000471640D adenosylcobinamide kinase 9.85599993477e-05 9.83565394934e-05 -82139239.9141 +UniRef50_UPI000409FACA 5 carboxymethyl 2 hydroxymuconate isomerase 1.02741765003e-05 3.63838879886e-05 10540810930.0 +UniRef50_F5M3U6 Two component sensor histidine kinase 0.00335956299888 0.000127474836769 -1.30483365323e+12 +UniRef50_S4PI94 Putative SLIT ROBO Rho GTPase activating protein 1 like protein 0.00812293550708 0.00418817147005 -1.58851252673e+12 +UniRef50_E2NSL6 0.000152088253345 0.0011193677449 3.90502600595e+11 +UniRef50_UPI000471AB25 hypothetical protein 0.000109625039329 3.60959431443e-05 -29684598433.2 +UniRef50_UPI0003B46C11 chemotaxis protein CheY 8.83516156203e-06 3.71517359216e-05 11431748552.4 +UniRef50_Q8DSA7 0.00364336665499 0.00117324737943 -9.97217463316e+11 +UniRef50_Q8S0V8 Splicing coactivator subunit like protein 1.46354355206e-05 0.000116562622047 41149255987.8 +UniRef50_UPI000225BECB nucleoside triphosphate diphosphatase 7.77649251474e-05 1.53166397255e-05 -25211139151.5 +UniRef50_R9SJ55 F420 0 0.00294001871576 0.00143159071807 -6.08970893161e+11 +UniRef50_G8VD48 ABC transporter, ATP binding protein 0.000392330776222 0.00460702253865 1.70152278458e+12 +UniRef50_A6LR80 NAD dependent aldehyde dehydrogenase like protein 0.000159806786223 0.00132322591848 4.69686580452e+11 +UniRef50_F5XNW0 3.37690951902e-05 0.000580415421761 2.20687830141e+11 +UniRef50_UPI00046EC7BE hypothetical protein 6.20393200983e-06 1.92320979269e-05 5259630454.31 +UniRef50_P0AEG0 Dipeptide transport system permease protein DppB 0.0144269076051 0.00253636140052 -4.80035941621e+12 +UniRef50_T1Y8L2 Oligopeptide binding protein oppA 0.0098203090517 0.00205807417859 -3.13370947161e+12 +UniRef50_UPI000300BC1D hypothetical protein 8.92963909883e-06 1.88463947954e-05 4003515966.98 +UniRef50_UPI00047DB8CE hypothetical protein 1.45857962641e-05 6.46343241239e-06 -3279097959.55 +UniRef50_UPI0004785B37 hypothetical protein 0.000106907343712 2.25215931418e-05 -34067563034.8 +UniRef50_A6WXJ2 Porphobilinogen deaminase 0.00425857538568 0.00124914355129 -1.21494456142e+12 +UniRef50_D3SLJ8 UDP glucose 4 epimerase 0.00402307133855 0.00295879027717 -4.29663324676e+11 +UniRef50_A7WYP0 Ribosomal RNA small subunit methyltransferase A 0.0106037055159 0.00284542528515 -3.13211293396e+12 +UniRef50_P65560 0.00448733169675 0.0012576488927 -1.30386258066e+12 +UniRef50_Q6A6Z5 Malate dehydrogenase 0.000439192650404 0.00498219896361 1.8340673976e+12 +UniRef50_Q62KH7 2.00941716961e-05 6.56673239208e-05 18398440798.6 +UniRef50_E6E0D9 8.68750840708e-05 0.000344016854746 1.03811288306e+11 +UniRef50_F2NQ48 TRAP transporter solute receptor, TAXI family 7.62451284265e-06 0.000334385250189 1.31917319472e+11 +UniRef50_P0A5M3 Transcription termination antitermination protein NusA 0.000415429846087 0.00671679253972 2.54393744583e+12 +UniRef50_E6E9X3 0.000181774954504 0.000280808277526 39980967779.5 +UniRef50_G7S7S5 Phosphate specific transport system accessory protein PhoU 0.0116380010238 0.00173828250878 -3.99663784772e+12 +UniRef50_A7INS2 Acyl CoA dehydrogenase domain protein 0.00830897017994 0.00288094584643 -2.19136003279e+12 +UniRef50_UPI00037BAB2A hypothetical protein 6.3367877442e-05 2.41840668922e-05 -15818985158.4 +UniRef50_R4XNN0 0.00306976374302 0.000318431799674 -1.11074646817e+12 +UniRef50_N2N059 CRISPR associated endonuclease Cas3 HD 4.40302475292e-05 0.000143677024017 40228626471.6 +UniRef50_M5EKG8 0.000154164193696 5.94996680631e-05 -38217230662.4 +UniRef50_UPI00036A1325 hypothetical protein 3.67890191056e-05 7.65551078956e-06 -11761554815.5 +UniRef50_UPI00036A73F1 hypothetical protein 5.18691948551e-05 2.68443993523e-05 -10102817033.3 +UniRef50_B7H2D5 0.000311971891609 0.0325587011889 1.30184003292e+13 +UniRef50_D6EKY2 Integral membrane protein 1.9866549672e-05 0.000272373921133 1.01940324473e+11 +UniRef50_Q8CLS1 8.14013651366e-05 0.000659187614593 2.3325939914e+11 +UniRef50_Q122S9 Transcriptional regulator, LysR family 0.000370982421302 0.000204135971329 -67357959290.3 +UniRef50_R7DG92 9.3132824787e-05 7.79365599528e-05 -6134918592.71 +UniRef50_S4XSR0 4.17120954832e-05 0.000136273331666 38175531443.9 +UniRef50_D7FGF4 Type I restriction enzyme, R subunit 0.000327735785322 0.00591900239792 2.25726294406e+12 +UniRef50_UPI00040DE7DB hypothetical protein 1.40725952706e-05 9.536548345e-06 -1831257807.42 +UniRef50_S4X6I5 Bifunctional autolysin 0.00105103130166 0.00010251538522 -3.82927515066e+11 +UniRef50_Q9Z3Q8 Rhizobactin siderophore biosynthesis protein RhbE 0.00013291760171 0.00874061251798 3.47503206599e+12 +UniRef50_T1Y630 Long chain fatty acid CoA ligase 0.0152780119102 0.00330256676266 -4.83463416128e+12 +UniRef50_UPI00037871A9 hypothetical protein 2.55065791409e-05 4.45206386239e-05 7676209142.04 +UniRef50_UPI000474835A threonine dehydratase 4.39339542546e-06 7.31221979111e-06 1178365214.42 +UniRef50_UPI0003655EFD multidrug transporter 0.00999447241244 0.0027333873132 -2.9313891581e+12 +UniRef50_UPI0003AF1932 PREDICTED 6.36947069515e-06 5.58618597705e-06 -316221652.681 +UniRef50_A6M0E2 Peptidase S8 and S53, subtilisin, kexin, sedolisin 0.000181765318237 0.00117904417775 4.02613713573e+11 +UniRef50_UPI0003B4AB4D ABC transporter 5.25996982589e-06 8.73515143023e-06 1402973458.95 +UniRef50_Q5P6J7 Magnesium transporter 0.000275773741971 0.00388001979982 1.45507836263e+12 +UniRef50_C9A5A3 6.66418848701e-06 0.00191162717657 7.69056934813e+11 +UniRef50_A6M351 PAS PAC sensor signal transduction histidine kinase 0.000682900028641 0.0012600405467 2.32998709451e+11 +UniRef50_P38422 D alanyl D alanine carboxypeptidase DacF 2.22085768197e-05 0.000355089526976 1.34388124487e+11 +UniRef50_UPI00046F18D5 monovalent cation proton antiporter subunit MnhG PhaG 4.15553944545e-05 0.000534481779401 1.9900043049e+11 +UniRef50_Q8CP12 ComEC late competence protein 3 0.00842605010053 0.00382703544565 -1.85667865243e+12 +UniRef50_Q4EJM8 0.000379583348555 0.000336214819927 -17508407198.8 +UniRef50_Q5HL27 Conserved domain protein 0.00240538713088 0.0011032140074 -5.2570326941e+11 +UniRef50_UPI000364A00D acetoin dehydrogenase, partial 3.02560924852e-05 1.77109419376e-05 -5064631222.37 +UniRef50_A0A008LUF2 5.87266875639e-05 7.82580304074e-05 7885042782.45 +UniRef50_W1IWA4 2.56020455174e-06 1.07412057254e-05 3302770565.98 +UniRef50_L0GPC1 Site specific recombinase XerD 0.00774344748581 0.00741139537019 -1.34053513813e+11 +UniRef50_F8JBM1 Glycine betaine proline transporter, membrane component of ABC transporter 0.00122637402212 0.000668264575394 -2.25315632416e+11 +UniRef50_K4PPW1 Formate nitrite transporter 0.00386937207439 0.00218286845697 -6.80862206079e+11 +UniRef50_D4HFJ4 0.000179124860886 0.00357852517889 1.37237962371e+12 +UniRef50_A6LYU1 Phage related protein 0.00101289970793 0.000795396687411 -87808638445.7 +UniRef50_R6ZG02 Precorrin 4 C methyltransferase 0.0050758868007 0.00342277065883 -6.67383272489e+11 +UniRef50_UPI00000D3C44 single stranded DNA binding protein 0.000279619251005 0.0440318241278 1.76633020087e+13 +UniRef50_E6JQR4 ISSep1 like transposase 0.000700273732157 0.000119899402032 -2.34304239065e+11 +UniRef50_A1WG09 Binding protein dependent transport systems inner membrane component 0.0110899632319 0.000561882324087 -4.25031545656e+12 +UniRef50_UPI000273DF52 2.59820222871e-05 5.18216108177e-05 10431758977.2 +UniRef50_A0A059IL14 0.000237077565681 3.63789595544e-05 -81024490142.3 +UniRef50_UPI0003657F9C hypothetical protein 0.000166164352826 2.44748389805e-05 -57201795465.1 +UniRef50_P23841 HTH type transcriptional regulator XapR 0.0059419791992 0.000568020608962 -2.16953302877e+12 +UniRef50_A6M2W8 Oxidoreductase domain protein 0.00150973247523 0.00185485564406 1.39330458394e+11 +UniRef50_F3U531 0.00219127896012 0.00121757585887 -3.93095890655e+11 +UniRef50_UPI0003292D12 PREDICTED 8.64185440716e-06 2.89382840309e-05 8193917704.29 +UniRef50_Q8XIQ9 Cobalt dependent inorganic pyrophosphatase 0.000738719651419 0.000443446494706 -1.19205396774e+11 +UniRef50_F3U537 0.00137058430532 0.000440771201791 -3.75376959985e+11 +UniRef50_B6IP81 0.00683353319476 0.00272498324234 -1.65867203337e+12 +UniRef50_UPI000361D30F hypothetical protein 5.65751805467e-05 2.41531869769e-05 -13089156666.7 +UniRef50_UPI0002554CCB nitrogen regulatory protein P II 1.10803248009e-05 5.56392399798e-05 17988980857.1 +UniRef50_UPI0003B4715F hypothetical protein 1.30010729307e-06 6.84459402009e-05 27107596716.9 +UniRef50_P52048 0.00578030533758 0.00079139746066 -2.0140833307e+12 +UniRef50_UPI000471D6BF ferredoxin, partial 0.000108254393019 0.000436645221838 1.32575407403e+11 +UniRef50_B6ICF9 TraW protein 0.000112549808408 6.93210732377e-06 -42639162002.5 +UniRef50_H4VIE3 0.00307534204649 0.000947540230575 -8.59019704147e+11 +UniRef50_Q9RS28 GGDEF family protein 0.000156871028509 0.0129446348495 5.16257717805e+12 +UniRef50_X0X8Y7 Marine sediment metagenome DNA, contig 0.000174256964983 0.000134467568136 -16063467777.9 +UniRef50_UPI0003B5F7BE hypothetical protein 0.000807279931217 0.000217109530759 -2.3825903287e+11 +UniRef50_Q03J15 5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase 0.00802784947647 0.00149137242268 -2.63885599821e+12 +UniRef50_Q1GUX8 Phosphate binding protein, putative 4.8754686261e-06 6.32830838162e-06 586529237.652 +UniRef50_G7M2L7 Electron transport complex subunit D 0.000112013646546 0.000286252056733 70342184338.2 +UniRef50_P37551 Pur operon repressor 0.0031528726533 0.00411082223931 3.86736003236e+11 +UniRef50_M4FTZ0 4.03466683996e-06 6.23776761275e-05 23553788798.6 +UniRef50_I9KL58 1.2381343247e-05 6.26592041236e-06 -2468871243.02 +UniRef50_UPI00036E9BD8 hypothetical protein 0.000260515976712 0.000154508194645 -42796642482.2 +UniRef50_S6AYL1 0.000438712708456 0.000216613720186 -89664087025.7 +UniRef50_UPI000395630A PREDICTED 6.56454481286e-06 1.08512691688e-05 1730603226.52 +UniRef50_J7QI73 Peptidase U35 phage prohead HK97 9.53643875115e-06 1.33822311884e-05 1552593600.1 +UniRef50_Q2BPZ8 AsmA family superfamily protein 1.76571601574e-06 2.06033922293e-06 118943004.176 +UniRef50_P75804 Soluble aldose sugar dehydrogenase YliI 0.00593828352981 0.000867792901457 -2.04701928858e+12 +UniRef50_U5R0R0 0.000289731476073 0.000353597532904 25783510867.3 +UniRef50_Q7MB61 Glucosamine 6 phosphate deaminase 0.00279321763567 0.00390527424619 4.48950900136e+11 +UniRef50_UPI000346E108 diguanylate cyclase 1.45356387494e-06 4.12356410942e-05 16060512754.4 +UniRef50_W7DA81 L xylulose 5 phosphate 3 epimerase 3.76029153665e-05 3.40642701664e-05 -1428594491.34 +UniRef50_UPI00041EE847 cytochrome C 3.78022244693e-06 4.33580143847e-05 15978040279.4 +UniRef50_UPI000478FA68 hypothetical protein 1.62170036448e-05 4.89065866586e-06 -4572584457.86 +UniRef50_Q8YJ91 Chaperone protein ClpB 0.0071494818727 0.00358759565243 -1.43797717638e+12 +UniRef50_A6LTD8 Extracellular solute binding protein, family 1 0.000213302302979 0.0010490130859 3.3738669839e+11 +UniRef50_UPI00036F72CE hypothetical protein, partial 8.10089493013e-05 1.36300701695e-05 -27201680337.3 +UniRef50_F0YFM2 Expressed protein 0.000267567842603 5.00321378899e-05 -87821833455.9 +UniRef50_E6U512 Binding protein dependent transport systems inner membrane component 0.000169276228183 0.00113392012605 3.89438579081e+11 +UniRef50_M9VB01 0.000838857753003 0.00209795379225 5.08312521891e+11 +UniRef50_Q633V5 Non canonical purine NTP pyrophosphatase 0.00891491789126 0.00340156580732 -2.22580789272e+12 +UniRef50_C3MD65 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00586093077419 0.000638775558795 -2.1082481435e+12 +UniRef50_W7SSM3 Peptidase C14, caspase catalytic subunit p20 4.4161380692e-06 0.000329541872715 1.31257248818e+11 +UniRef50_G2JG48 ABC transporter 0.00111248029523 0.00619060580876 2.05010158542e+12 +UniRef50_UPI0004693EA9 chemotaxis protein 9.53786137428e-05 1.65183376958e-05 -31836861164.6 +UniRef50_A6LS61 5 nucleotidase SurE 0.00096147500703 0.00132295013277 1.4593194406e+11 +UniRef50_UPI000255BE74 amino acid ABC transporter substrate binding protein permease, partial 1.4158573212e-05 2.42877355122e-05 4089267119.39 +UniRef50_UPI000465DFA0 hypothetical protein 0.000498826149699 7.32492861085e-05 -1.71810602247e+11 +UniRef50_UPI0003EBF881 PREDICTED 1.71500024466e-05 2.89288621641e-05 4755270210.82 +UniRef50_Q5HLG3 Sensor protein LytS 0.0229525615304 0.00687505325477 -6.49068738407e+12 +UniRef50_Q8W390 Putative chitinase 0.000269690674823 0.000443101193807 70007954500.2 +UniRef50_M9RU26 0.000433461546298 0.000176133223777 -1.03886601575e+11 +UniRef50_Q2P1L2 tRNA pseudouridine synthase D 5.82296026251e-06 1.27470840355e-05 2795353735.71 +UniRef50_Q5HRU1 Glycosyl transferase, group 1 family protein 0.0166555622872 0.00696453908107 -3.91238499054e+12 +UniRef50_Q834B4 Phosphate import ATP binding protein PstB 1 3.39112428316e-05 0.00173217668588 6.8561059942e+11 +UniRef50_F0ML51 7.21310806769e-05 0.00221421653742 8.6478618523e+11 +UniRef50_P45352 Thymidylate synthase 2.1540499595e-05 7.80290461637e-05 22805119442.2 +UniRef50_UPI00039C4089 thioredoxin 0.000219013299297 0.000461266047324 97800407154.0 +UniRef50_A6X351 Iron containing alcohol dehydrogenase 0.000226040639422 0.0066094265128 2.57705121004e+12 +UniRef50_E8U4V1 GAF domain protein 4.4473406745e-05 0.00168261487091 6.61337811338e+11 +UniRef50_UPI0002627C34 malonyl CoA ACP transacylase 4.82660125291e-06 4.76970551174e-05 17307328304.7 +UniRef50_UPI00037877B4 hypothetical protein 3.63131481281e-06 1.05063725629e-05 2775545180.16 +UniRef50_UPI00036AE186 hypothetical protein 4.72416505519e-05 8.66689483349e-05 15917283942.3 +UniRef50_P45766 Putative amino acid ABC transporter binding protein YhdW 0.00217225688588 0.000778537747539 -5.62661519005e+11 +UniRef50_M5AC54 0.00499470301883 0.00417031015692 -3.32817514791e+11 +UniRef50_M9S0P6 LysR family transcriptional regulator 0.000128981545165 0.000727867790809 2.41777726527e+11 +UniRef50_R7CZZ3 1.17767043811e-05 2.05383606557e-05 3537188155.67 +UniRef50_D3QFY5 Integral membrane protein 0.00625466893921 0.00268249396989 -1.44213087063e+12 +UniRef50_M5EV42 0.000481281158324 7.29686003674e-05 -1.64840790206e+11 +UniRef50_T0TDZ2 Elongation factor G 0.00839062952036 0.00627455524733 -8.54285151174e+11 +UniRef50_U0D6A1 Outer membrane protein 0.000822688658808 0.0009425301419 48381477344.6 +UniRef50_C6SP66 0.00224451936999 0.00110055914979 -4.61830778865e+11 +UniRef50_U3TTP8 TonB dependent siderophore receptor 0.000636212340763 0.000330578401339 -1.23388171896e+11 +UniRef50_UPI000466FDE3 hypothetical protein 2.28001391934e-06 2.929155648e-06 262066481.725 +UniRef50_Q6FEZ0 0.000120474251758 0.00754838947653 2.99874052701e+12 +UniRef50_W0H6X8 4.2067815377e-05 4.71869707203e-05 2066665831.19 +UniRef50_R6YEM1 7.66712993118e-06 0.000692568328814 2.76503018672e+11 +UniRef50_C6SPR1 Dihydrolipoyl dehydrogenase 0.0050840724431 0.00145766599447 -1.46402478432e+12 +UniRef50_A4WEY1 tRNA pseudouridine synthase B 0.00369400837329 0.00218209101746 -6.10379589861e+11 +UniRef50_W8U3V5 Group II intron encoded protein LtrA 0.00068930049 0.00429232313831 1.45458445718e+12 +UniRef50_F3U2K9 Peptidase C14, caspase catalytic subunit p20 0.000313254840488 0.000259387475277 -21746916362.6 +UniRef50_V6HXV9 Winged helix turn helix domain protein 6.47909697948e-05 0.00063571295824 2.30488212736e+11 +UniRef50_U6JQ37 1.36424595253e-06 5.77167388869e-05 22750192920.5 +UniRef50_Q6GFX2 Catabolite control protein A 0.0230107542346 0.00380101288873 -7.75520831137e+12 +UniRef50_H6SJD1 Cysteine desulfuration protein SufE 0.000169849825901 2.2906559659e-05 -59322799778.5 +UniRef50_G1D325 Gp79 7.85300437938e-06 1.20091954979e-05 1677905356.75 +UniRef50_Q8KTE1 Fumarate hydratase class II 0.00301882448378 0.00120720554137 -7.31372798115e+11 +UniRef50_I1AZW8 Chromosomal replication initiator, DnaA 4.01655559826e-05 1.30139056318e-05 -10961454434.8 +UniRef50_F2JI77 DEAD DEAH box helicase domain protein 0.000122163750441 0.000983344132791 3.47669088226e+11 +UniRef50_UPI0004663859 MULTISPECIES 5.78527014752e-06 1.62857094683e-05 4239156208.69 +UniRef50_F9YYA3 Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC 8.27820150938e-05 0.0040808011574 1.61404938896e+12 +UniRef50_G8VHB7 0.000252398093381 0.00271860731682 9.95638927293e+11 +UniRef50_UPI00035D3834 hypothetical protein, partial 1.3954278882e-05 3.2522093522e-05 7496054622.88 +UniRef50_A6KYV3 3.69946429073e-05 0.00496712498247 1.99035411758e+12 +UniRef50_Q8CQY5 0.0116216326283 0.00266791882637 -3.61472413626e+12 +UniRef50_G0DXI1 0.000541662418539 0.015393574171 5.99589902794e+12 +UniRef50_UPI0002C3D833 ATP dependent RNA helicase DDX50, putative 1.10614438841e-06 6.15903223194e-06 2039912828.34 +UniRef50_UPI00036344A4 hypothetical protein 1.15265032854e-05 1.86595725631e-05 2879707600.01 +UniRef50_C6SS95 0.0138552848724 0.000630776599467 -5.33889627274e+12 +UniRef50_Q8CQY8 0.00858126613482 0.00236399361298 -2.50998921158e+12 +UniRef50_UPI0004695099 pseudouridine synthase 2.44701952277e-06 6.99215512668e-06 1834927018.38 +UniRef50_C5WGK5 0.000937746168967 0.0021616799477 4.9411708583e+11 +UniRef50_P0A0V8 Capsule polysaccharide export outer membrane protein CtrA 9.97760322932e-05 0.00334584923105 1.31047958414e+12 +UniRef50_UPI00037565DC hypothetical protein 5.82333933469e-05 4.52806632275e-05 -5229176097.07 +UniRef50_F0YFY7 Expressed protein 2.93941552849e-05 4.94116071243e-05 8081290949.32 +UniRef50_W0YT50 Filamentous hemagglutinin, intein containing 0.000121102884939 8.89954912749e-05 -12962148824.2 +UniRef50_A0A013K1T0 Putative cell surface adhesin domain protein 0.0017478515412 0.000627780321918 -4.52186496043e+11 +UniRef50_K5HQD7 0.000458485006708 0.000628333415313 68569886828.2 +UniRef50_UPI0001D2F1B0 Rrf2 family transcriptional regulator 2.62569170025e-05 2.42468817832e-05 -811475883.937 +UniRef50_E3YLY4 Pts system fructose specific eiibc component 3.17013262371e-05 0.000539268317471 2.04911022909e+11 +UniRef50_UPI00042CC86F 2.92179612234e-05 0.00013084965807 41029963178.3 +UniRef50_M6FTS0 AAA domain protein 1.50127725082e-05 2.32457579222e-05 3323757241.72 +UniRef50_P54542 0.0211770667311 0.00697162482514 -5.73491121783e+12 +UniRef50_UPI0004756AEC Surfeit locus 1 family protein 3.9831698654e-06 1.63998717244e-05 5012774910.54 +UniRef50_UPI000360228D hypothetical protein 3.99472170673e-06 3.35481480193e-05 11931080863.7 +UniRef50_U2T0K4 7.93384590487e-05 0.000285244103738 83126635507.3 +UniRef50_A0A017BYI2 DEAD DEAH box helicase family protein 0.000185800626706 0.0078730021703 3.10341759572e+12 +UniRef50_P31801 Sodium proton antiporter ChaA 0.00242000503345 0.000164827928474 -9.10442671416e+11 +UniRef50_B9KWM6 LysR family transcriptional regulatory protein 0.00651276476138 0.00136563969496 -2.07795755164e+12 +UniRef50_Q73VG0 LigA 1.18349096969e-05 2.80373745768e-05 6541133898.62 +UniRef50_UPI0003AA941F hypothetical protein 9.91099012995e-06 4.76666131271e-05 15242408317.6 +UniRef50_Q47684 Antitoxin YafW 1.49945012841e-05 0.000594597393014 2.33992799919e+11 +UniRef50_D5APK9 DMSO TMAO sensor hybrid histidine kinase 0.00726599131777 0.00145761404173 -2.34491318314e+12 +UniRef50_UPI00041F08CB MULTISPECIES 1.84859743551e-05 0.000137226462387 47936992128.2 +UniRef50_UPI00047676D6 glyoxal reductase 3.11950340186e-05 3.89013018287e-05 3111114881.48 +UniRef50_I1ZNC1 0.00012724246815 0.000953241738216 3.33466041477e+11 +UniRef50_UPI00016C0F2C oligopeptide ABC transporter ATP binding protein 7.93869603548e-06 6.71646554179e-06 -493429448.757 +UniRef50_UPI00024911A4 gluconate transporter 5.90401049433e-06 1.14650595551e-05 2245063747.58 +UniRef50_A6UZP9 0.000200435038326 9.17990744267e-06 -77212043301.8 +UniRef50_UPI000365871E Clp protease 9.14613458758e-06 2.86656770032e-05 7880278804.9 +UniRef50_W0HC37 Substrate binding region of ABC type glycine betaine transport system 0.000480219356483 0.000403817200349 -30844487991.2 +UniRef50_A1D4H8 0.000122379187286 0.000552552664478 1.73666311565e+11 +UniRef50_R5XFF7 ABC transporter substrate binding protein QAT family 0.000430067063677 0.0012385229453 3.2638356028e+11 +UniRef50_UPI00036D9D83 hypothetical protein 0.000158777235822 2.80269474931e-05 -52785495884.9 +UniRef50_Q9JX66 Dihydroorotate dehydrogenase 0.00012494084554 0.00325516366687 1.26370936512e+12 +UniRef50_UPI000371D657 hypothetical protein 1.26036726496e-05 4.80590427109e-05 14313767980.1 +UniRef50_O29581 Adenylate kinase 3.40910940303e-05 6.63361043626e-05 13017706361.9 +UniRef50_Q45582 N acetylmuramic acid 6 phosphate etherase 0.00758781612204 0.00317374799699 -1.78201346879e+12 +UniRef50_P47719 DNA gyrase subunit A 8.05408709256e-06 8.87320878868e-06 330689480.477 +UniRef50_Q6FAU5 0.000216945970609 0.00483094348523 1.86272741677e+12 +UniRef50_UPI0003AA7974 signal recognition particle 7.75182707403e-06 9.64017308387e-05 35789054006.5 +UniRef50_Q52675 Dimethyl sulfoxide trimethylamine N oxide reductase 0.00812643621994 0.00212293964967 -2.42368523661e+12 +UniRef50_Q2LUC8 Chorismate synthase 6.55328459078e-06 1.84290991789e-05 4794412081.85 +UniRef50_B1X8Q2 Ribosomal RNA large subunit methyltransferase K L 0.00399910582681 0.000557058959427 -1.38959655903e+12 +UniRef50_F9YZR8 Iron transport system substrate binding protein 0.000231113870722 0.00547211647534 2.11585706582e+12 +UniRef50_UPI0003B48391 LytTR family transcriptional regulator 2.00136546821e-06 4.27448158308e-06 917684869.845 +UniRef50_UPI0004411AE2 hypothetical protein AURDEDRAFT_166722 6.82667144968e-07 1.63220407764e-06 383339711.848 +UniRef50_UPI0003941221 PREDICTED 0.000237421369263 3.44831840947e-05 -81928635683.9 +UniRef50_Q87DN0 Tyrosine recombinase XerD 0.00192384921908 0.000549766637191 -5.54734000198e+11 +UniRef50_Q67WC5 0.0001527252576 0.000138740300889 -5645898638.95 +UniRef50_Q4FQA2 1.72858157524e-05 7.90999981851e-05 24955143993.4 +UniRef50_H2G6W3 Protein NrdI 1.3901852386e-05 5.92540963524e-05 18309257423.9 +UniRef50_M4K0R6 LacI family transcriptional regulator 0.000606915299343 0.000722649038466 46723130696.6 +UniRef50_UPI0003FCCCFB hypothetical protein 5.23336474174e-06 9.27646657875e-06 1632249826.04 +UniRef50_T0T3K2 Metallo beta lactamase domain protein 4.36125390153e-06 0.000138244366515 54050255492.4 +UniRef50_Q9L0Q6 Cysteine tRNA ligase 3.63105669167e-06 1.43219687708e-05 4316052398.58 +UniRef50_U0AT69 Metabolite transporter YdjK 0.00142401941223 0.000594155404957 -3.35026283313e+11 +UniRef50_A7KA93 5.30746186852e-05 0.000142750590251 36203290169.0 +UniRef50_Q5LXH7 Universal stress family protein 0.0168377153901 0.000388574612093 -6.64071998573e+12 +UniRef50_UPI0004700444 hypothetical protein 2.95072308392e-05 2.99255490629e-05 168880200.25 +UniRef50_Q9HVP8 Dephospho CoA kinase 0.00046989957119 0.000348799258104 -48889682460.8 +UniRef50_Q8TQW9 Putative ABC transporter ATP binding protein MA_1418 4.7568740153e-05 1.08818093754e-05 -14810964154.2 +UniRef50_Q5LWX2 Flagellar basal body rod protein FlgC 0.00850166906782 0.000611000079721 -3.18555989989e+12 +UniRef50_UPI00047CD293 DNA recombination protein RecO 2.20545042034e-05 7.71868359545e-05 22257598877.7 +UniRef50_P97030 Epoxyqueuosine reductase 0.0179117983362 0.0043860975459 -5.46049138806e+12 +UniRef50_A4XW57 Hpt protein 0.00365309021469 0.00101833346619 -1.06368363147e+12 +UniRef50_Q3IVV6 Polysaccharide export transporter, PST Family 0.00203333992779 0.000632574389624 -5.65506237085e+11 +UniRef50_Q3JX83 0.000430031245957 4.24356917644e-05 -1.5647708156e+11 +UniRef50_D8JJQ0 Iron ABC transporter membrane protein 0.000344545834963 0.0103796050427 4.05127654617e+12 +UniRef50_W7W788 0.000368075807395 2.28756011952e-05 -1.39361559326e+11 +UniRef50_I7EPE2 S adenosylmethionine uptake transporter like protein 0.00421890456793 0.000535444547611 -1.48705801134e+12 +UniRef50_Q8NKC2 Enolase 1 2 8.04695343407e-06 1.82023579126e-05 4099861408.8 +UniRef50_A5N5L0 0.00024745135657 0.00313126237801 1.1642298977e+12 +UniRef50_UPI0003B31866 amino acid transporter 1.62498168409e-05 2.66803650859e-05 4210940323.73 +UniRef50_B2V575 O antigen polymerase family 0.000777208020325 0.00247762386036 6.86478741069e+11 +UniRef50_UPI00037E8A3A hypothetical protein, partial 0.000257003085984 0.000106632957577 -60706266086.9 +UniRef50_K4PVR2 CBS domain protein 0.0054940797655 0.00122279660278 -1.72436942733e+12 +UniRef50_A5CWX9 Glutamate tRNA ligase 3.86575344122e-06 1.25651572801e-05 3512056083.45 +UniRef50_UPI00035ED9D3 hypothetical protein 4.8993748251e-06 7.54785941628e-06 1069225730.02 +UniRef50_G7MC17 Universal protein YeaZ 0.000340077467434 0.00275138063398 9.73472678354e+11 +UniRef50_UPI0003613988 hypothetical protein 3.0493919609e-05 1.16814632187e-05 -7594819499.56 +UniRef50_R1FS00 1.23635185851e-05 0.00010474000316 37293520409.8 +UniRef50_UPI000464095F hypothetical protein 0.000101952176092 0.00103291487048 3.75841063921e+11 +UniRef50_P39576 Branched chain amino acid aminotransferase 2 0.0268107376028 0.00648218218842 -8.20688728022e+12 +UniRef50_UPI000464121D hypothetical protein 2.4612526735e-06 4.72561856263e-06 914152296.336 +UniRef50_K1RE18 6.2816312872e-06 6.10208507727e-06 -72485008.2285 +UniRef50_P15327 Bisphosphoglycerate mutase 6.23795600731e-06 1.08268953876e-05 1852611140.44 +UniRef50_F0XXU5 8.74650125795e-06 0.000113113787233 42134354078.7 +UniRef50_F0YHA3 0.000236426599738 1.24088389482e-05 -90438719038.0 +UniRef50_UPI000462977B histidine kinase 0.000112583443757 6.48716970574e-05 -19261817631.6 +UniRef50_A0A059MSQ1 Nitrate reductase 0.0150568675188 0.0123481090345 -1.09355904032e+12 +UniRef50_F9Z138 0.000219894750786 0.00433502596118 1.66132896797e+12 +UniRef50_UPI00046D9133 phosphoenolpyruvate carboxykinase 8.02112816047e-06 0.000428474870624 1.6974233538e+11 +UniRef50_Q8KGA4 tRNA N6 adenosine threonylcarbamoyltransferase 5.38758578937e-06 8.83245350637e-06 1390735370.63 +UniRef50_E2NSW7 4.54287105067e-05 6.73012857944e-05 8830227050.33 +UniRef50_Q3IUZ2 Heme oxygenase 0.0435390875864 0.00373236877723 -1.60704608666e+13 +UniRef50_B2TJJ8 tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA 0.000666924419929 0.00154178983577 3.53193904181e+11 +UniRef50_Q16BP5 7.66175360171e-05 6.06961755882e-05 -6427648582.21 +UniRef50_D7BLM1 Binding protein dependent transport systems inner membrane component 0.000232061058724 0.00440577014963 1.68497757717e+12 +UniRef50_R5GV02 Secreted protein containing YkuD domain 1.07616879793e-05 0.000172612542519 65341176111.1 +UniRef50_B7GH97 ABC type phosphate transport system, permease component 0.00748560292923 0.00240597102306 -2.05070973461e+12 +UniRef50_D2NRP6 Coenzyme F420 reducing hydrogenase, beta subunit 0.000234504103953 0.00076882732741 2.15712842193e+11 +UniRef50_UPI000366D18B hypothetical protein 1.96797320789e-05 9.24132575723e-05 29363416782.4 +UniRef50_B5ZBT9 Proline tRNA ligase 4.65135926004e-06 1.99945943491e-05 6194252288.14 +UniRef50_Q8UIG9 Non canonical purine NTP pyrophosphatase 0.00688642360407 0.00101184815712 -2.37163819708e+12 +UniRef50_UPI0004643C42 hypothetical protein, partial 0.000139933459821 0.000161856424623 8850569915.6 +UniRef50_UPI00046FAF78 hypothetical protein 0.000103507330461 0.000590485042604 1.96598878281e+11 +UniRef50_B2UXE1 0.000343169080774 0.000661788553117 1.28630590885e+11 +UniRef50_K0DDY9 Microcin C7 resistance MccF related protein 0.00405030845321 0.000821269919409 -1.30360248085e+12 +UniRef50_Q6GH34 N anthranilate isomerase 0.0065051868209 0.00350095556353 -1.21284502466e+12 +UniRef50_A8L6K4 LexA repressor 3.16645847368e-05 1.1081991629e-05 -8309445414.44 +UniRef50_Q9Z3Z9 Toluene tolerance protein ttg2D 0.000491783184043 0.00127247701284 3.15175678876e+11 +UniRef50_I0I649 Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK 0.000612139680036 0.000780441547387 67945529145.8 +UniRef50_F6D1L5 Xylose isomerase domain containing protein TIM barrel 0.00224925413178 0.00102320336228 -4.94971740982e+11 +UniRef50_Q9RZ79 Transposase, putative 0.000123478133149 0.0429027097673 1.72705007709e+13 +UniRef50_P0AB12 Inner membrane protein YccF 0.00172346402246 0.000516588988672 -4.87230261163e+11 +UniRef50_A6LXM0 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 0.00018874299443 0.00142051889635 4.97283047195e+11 +UniRef50_L5KNJ4 WD repeat containing protein 87 8.09052772138e-07 3.23534098249e-07 -196009846.633 +UniRef50_UPI000377831E hypothetical protein 1.01831861527e-05 2.85735257348e-05 7424405764.14 +UniRef50_UPI0003B6F3ED nucleoside triphosphate diphosphatase 0.000117363265233 5.04742258989e-05 -27003926000.0 +UniRef50_A1B0E7 Acetylglutamate kinase 0.000154155108597 8.48405521458e-05 -27983137024.6 +UniRef50_Q5P1C8 8.32591470293e-05 0.000163380493103 32345970609.4 +UniRef50_X1KF22 Marine sediment metagenome DNA, contig 0.000685793501564 0.000112301788684 -2.31525642024e+11 +UniRef50_Q07GR3 0.016581224447 0.00248152299019 -5.6922225009e+12 +UniRef50_E6MWK1 SbmA BacA like family protein 0.000161548925324 0.00176243468271 6.46297225336e+11 +UniRef50_W6KN67 Putative NADH ubiquinone oxidoreductase 40 kDa subunit 7.36214076142e-05 8.61396934836e-06 -26244300558.9 +UniRef50_UPI0003B48A00 GMP synthase 6.15960390187e-06 8.85403732431e-06 1087775837.06 +UniRef50_UPI00032AF5D9 PREDICTED 0.00011285820038 9.47630406671e-05 -7305238028.68 +UniRef50_Q9ZKP0 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000385798571872 0.00390734971314 1.42169341002e+12 +UniRef50_Q8CPV9 Poly D alanine transfer protein 0.0219088762896 0.00361427352327 -7.38575563678e+12 +UniRef50_G8VMV3 Sialidase 9.83036429352e-05 0.00487860616049 1.92986678724e+12 +UniRef50_Q1MPX7 4 hydroxy tetrahydrodipicolinate synthase 5.08967976595e-06 2.05997135341e-05 6261590961.74 +UniRef50_UPI00037FAB1B hypothetical protein, partial 0.000129396873694 0.0114959373946 4.58881189142e+12 +UniRef50_B0TQM3 3 isopropylmalate dehydratase small subunit 3.07330698401e-05 5.52039687365e-05 9879202176.17 +UniRef50_Q1JGW5 NAD kinase 0.00645814430224 0.00141989020267 -2.03400500633e+12 +UniRef50_A7I616 Imidazole glycerol phosphate synthase subunit HisF 0.000756609975408 0.00468632765413 1.58647524996e+12 +UniRef50_F6CVN5 GAF domain protein 0.0135596815316 0.00564192330961 -3.19649615604e+12 +UniRef50_Q8ZRF8 0.00297211154937 0.00152008493276 -5.86200963496e+11 +UniRef50_D3DYP4 Glycosyl transferase GT2 family 0.00821424456438 0.00107840977881 -2.88082406947e+12 +UniRef50_I6T9G0 Transmembrane protein 0.00687963158644 0.0019368285029 -1.99547025984e+12 +UniRef50_UPI000288BCD3 nitrate ABC transporter ATPase 4.53552548777e-05 1.27279426934e-05 -13172046310.9 +UniRef50_C1N5D9 Predicted protein 4.96470169118e-05 0.000112684440923 25448981629.5 +UniRef50_UPI0004636F1F hypothetical protein 0.000230679144739 6.71846796626e-05 -66004721853.9 +UniRef50_C0QHY2 UvrB2 3.78237584406e-05 8.91367576156e-05 20715687448.3 +UniRef50_R4ZU58 Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen 0.00027825399592 0.000229198903288 -19804142869.2 +UniRef50_E3D229 Chromosome partition protein Smc 3.56904496265e-05 0.00304679435341 1.21561959636e+12 +UniRef50_Q250M1 50S ribosomal protein L24 0.00168048246176 0.0214926424239 7.99841209924e+12 +UniRef50_UPI000473E9CF hypothetical protein, partial 3.69502597392e-05 2.87360092872e-05 -3316193707.66 +UniRef50_Q818M5 Probable glycine dehydrogenase subunit 2 0.0238938454721 0.00597346017526 -7.23467945217e+12 +UniRef50_M7TFP2 Putative tho complex subunit 2 protein 6.81067763257e-06 0.000703367453174 2.81208517999e+11 +UniRef50_U5MPT8 Bacteriohemerythrin 0.000976256867724 0.00433232381113 1.35488540863e+12 +UniRef50_R5HX70 Ethanolamine utilization protein EutP 0.00751721073371 0.00139439891413 -2.47185426691e+12 +UniRef50_Q6ZG43 5.48403386872e-05 9.80887042638e-05 17459895900.4 +UniRef50_I6T6D9 Glycerophosphoryl diester phosphodiesterase 0.00422852342985 0.00326617517008 -3.8851180181e+11 +UniRef50_P07604 Transcriptional regulatory protein TyrR 0.00620117634629 0.00135549898565 -1.95625941364e+12 +UniRef50_Q8CN32 Thiamine phosphate synthase 0.00629361685471 0.0158059280677 3.84023676587e+12 +UniRef50_Q04939 Sucrose operon repressor 0.000240199252677 0.00193219036903 6.83077576736e+11 +UniRef50_Q47RU5 Polyribonucleotide nucleotidyltransferase 0.000182767993463 0.00714262766938 2.80978075825e+12 +UniRef50_A0A024HFG1 0.0010752233141 0.000247467201068 -3.34175300541e+11 +UniRef50_H3WBP5 0.00206681316991 0.000486688668404 -6.37915651568e+11 +UniRef50_J0MXI6 Adenosylmethionine 8 amino 7 oxononanoate transaminase 0.00348502938672 0.00183774195303 -6.65030151471e+11 +UniRef50_R5BEJ3 6.93908067699e-05 0.00162769708649 6.29107367691e+11 +UniRef50_A6LVT5 0.000168124925177 0.000946665331784 3.14306315912e+11 +UniRef50_I2DH65 0.00011257037441 0.00117121703789 4.27388649102e+11 +UniRef50_UPI000345C5CB hypothetical protein 6.81971497556e-06 5.01983139938e-05 17512472738.9 +UniRef50_UPI00037DE01D hypothetical protein 7.56789544466e-05 1.73486913054e-05 -23548643022.9 +UniRef50_G0J3G6 Zinc iron permease 0.00912466851349 0.00431154335565 -1.94311768991e+12 +UniRef50_U4Q8Z1 Endonuclease III 0.00102386165005 0.00210090339737 4.34814970182e+11 +UniRef50_UPI00036716D2 hypothetical protein 6.80195942643e-05 3.88384507556e-05 -11780785727.4 +UniRef50_B7IR21 Membrane protein PfoR 0.0209336169686 0.00649784041562 -5.82790014134e+12 +UniRef50_Q7M922 Na H(+) antiporter NhaA 0.000216114010239 0.00282869470504 1.05473088646e+12 +UniRef50_UPI0003761FCC hypothetical protein 2.1447436385e-06 7.07869533641e-06 1991896846.84 +UniRef50_Q4K5N7 TonB dependent outermembrane heme receptor HasR 0.000286597476869 7.42312623017e-05 -85734846847.2 +UniRef50_T7JW17 0.000785939587724 0.000251333366122 -2.15827092017e+11 +UniRef50_A0A024HEK4 Porin 0.00261011295582 0.00175132742346 -3.46702257897e+11 +UniRef50_P44700 0.000738311246761 0.000130286781696 -2.45466937846e+11 +UniRef50_UPI000374F1B4 hypothetical protein 1.45067788055e-05 7.85186536664e-06 -2686670220.24 +UniRef50_UPI00041B0045 hypothetical protein 2.20748775524e-06 5.03677510498e-06 1142218022.35 +UniRef50_A1ATB7 Chitinase like protein 6.30622375573e-06 1.52552859258e-05 3612846215.4 +UniRef50_H1SFP6 0.000141722455005 8.53028432373e-05 -22777289617.1 +UniRef50_B4EUV9 Glutamate cysteine ligase 0.00206377764425 0.000134438560782 -7.7889786365e+11 +UniRef50_F7XAZ8 0.000198229730383 4.21579601885e-05 -63008088843.7 +UniRef50_W5X8Y0 Peptidase M48 1.38654061062e-05 1.41144001206e-05 100521939.113 +UniRef50_O67137 DNA gyrase subunit B 4.39997863012e-06 1.22551844734e-05 3171242993.15 +UniRef50_K9ZYZ2 Arabinose efflux permease family protein 0.000119206101737 0.0205589752463 8.25178562785e+12 +UniRef50_A5ULL7 0.00297225907426 0.000708760092468 -9.13802315205e+11 +UniRef50_UPI00046F1E3C hypothetical protein 1.26873860828e-05 5.0168209657e-05 15131468418.3 +UniRef50_T0TL61 Lactose transport regulator 1.53536775642e-05 6.48244188079e-05 19971945314.3 +UniRef50_Q48UU5 Dephospho CoA kinase 0.00953093777523 0.00472545999697 -1.94003034893e+12 +UniRef50_UPI000463EC33 hypothetical protein 0.000198911799001 0.000111640289318 -35232579400.9 +UniRef50_UPI00022347EB PREDICTED 2.46429742265e-06 8.42214638841e-06 2405256738.51 +UniRef50_I0EKZ4 0.000219894750786 0.00557459306959 2.16175742084e+12 +UniRef50_G7M9E2 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.000450620950411 0.00118738813975 2.97441955486e+11 +UniRef50_P65761 Ribulose phosphate 3 epimerase 0.000437242458129 0.00854835968379 3.2745575586e+12 +UniRef50_UPI00046FBBBF NADH dehydrogenase 6.86121984767e-05 0.000127211279563 23657168126.1 +UniRef50_F0N3E0 Cytoplasmic membrane protein fxsA 0.000234463347108 0.00406139111418 1.54497770125e+12 +UniRef50_C4J1H3 0.000409578550276 0.000999172290877 2.38026228209e+11 +UniRef50_Q89L00 Serine tRNA ligase 0.0107566958561 0.00029234109763 -4.22458842808e+12 +UniRef50_R0F7X0 Integral membrane protein MviN 0.000306630550148 0.000198897245898 -43493256962.0 +UniRef50_R0UHS1 Putative phage associated protein 4.65897663776e-05 0.0045540670446 1.81972389018e+12 +UniRef50_Q8CUF7 0.110224020908 0.0454665444219 -2.6143387921e+13 +UniRef50_G2TGT9 Cobalt transport protein 0.000190009725932 0.00601016880922 2.34966964331e+12 +UniRef50_A5N7Z4 Predicted kinase 0.000238662361821 0.000651585918362 1.66702306917e+11 +UniRef50_UPI0003819C59 hypothetical protein 8.72516090294e-06 9.38912677734e-06 268051171.273 +UniRef50_L0LQZ5 0.000743009680486 0.000439680468259 -1.22457725244e+11 +UniRef50_B5SF72 2.49092813432e-05 3.16786564492e-05 2732879799.87 +UniRef50_A0A013VHK1 Transposase 4.14775602109e-05 2.69701180834e-05 -5856832413.21 +UniRef50_UPI00037C70BA hypothetical protein 5.50994953737e-06 2.62054163011e-05 8355013894.44 +UniRef50_V9R2C2 Membrane protein 0.000407177420556 0.000330578401339 -30923964033.6 +UniRef50_H8FXB7 0.000149233923074 7.504670227e-05 -29950291418.1 +UniRef50_H8FXB4 0.000234347300812 0.000141234199185 -37590901753.1 +UniRef50_P54462 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 0.0203580712091 0.00426646247612 -6.49637991176e+12 +UniRef50_UPI00037DBCEA hypothetical protein, partial 1.37025148585e-05 1.18574092261e-05 -744891785.792 +UniRef50_S5SFD1 2.58007632619e-05 2.80988874222e-06 -9281698173.36 +UniRef50_UPI000375BFC5 hypothetical protein 7.77121079081e-06 2.02524797919e-06 -2319715697.94 +UniRef50_H3WII0 0.000771185244842 7.59452860521e-05 -2.80676902917e+11 +UniRef50_Q2RG70 Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region 0.000310262456591 0.000319261302914 3632944688.86 +UniRef50_B7V7H6 0.00055786106727 0.000984389017326 1.72194567524e+11 +UniRef50_O68045 DNA polymerase III subunit epsilon like protein 0.000743431578925 0.000539981291656 -82135377586.3 +UniRef50_B7V5S0 0.000786274064212 0.000308062720852 -1.93059787628e+11 +UniRef50_A9B1M6 3.51137641153e-05 4.22774751959e-05 2892078071.86 +UniRef50_K8ETB2 0.000109355192806 0.00132726560005 4.91685376844e+11 +UniRef50_P78937 Sulfate adenylyltransferase 9.02138832696e-05 5.10465803275e-05 -15812320834.6 +UniRef50_Q47EP3 Error prone DNA polymerase 0.00042124783504 0.000126018676189 -1.19187634297e+11 +UniRef50_A0A026RF42 Diguanylate cyclase 0.00032116849012 0.000134791477824 -75242686967.0 +UniRef50_P74861 Aromatic amino acid aminotransferase 0.000589011596326 0.000792362563739 82095280941.6 +UniRef50_A4J657 NADH quinone oxidoreductase subunit D 1.13021451636e-05 2.37238741028e-05 5014804404.51 +UniRef50_UPI0003A2B6FD uroporphyrinogen decarboxylase 6.32850264661e-06 0.000188432202058 73517498115.9 +UniRef50_UPI0003660926 Cro Cl family transcriptional regulator 0.00024266775905 2.79405363841e-05 -86688014789.6 +UniRef50_W9B2U5 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.000139427502255 4.176857519e-05 -39426107265.9 +UniRef50_A1ASQ4 1.07874508205e-05 3.62863149535e-05 10294204356.7 +UniRef50_UPI0003B4C286 oxidoreductase 4.11012281665e-05 6.01522952245e-06 -14164648206.2 +UniRef50_UPI0003B45BD8 peptide ABC transporter ATP binding protein 9.54442566009e-06 9.56323493439e-06 7593534.85066 +UniRef50_Q05626 0.000775656141478 0.00100676149498 93300067190.4 +UniRef50_UPI00036ED21D hypothetical protein 0.000813119955571 0.00103684797422 90321746580.1 +UniRef50_Q9G021 Phi ETA orf 24 like protein 0.00137250020466 0.000816543885337 -2.24446388462e+11 +UniRef50_O26935 0.0016819739176 0.000380236101113 -5.25527530636e+11 +UniRef50_Q4QLU9 23S rRNA C(5)) methyltransferase RlmC 0.00287306788598 0.000783199043592 -8.43705697247e+11 +UniRef50_P19262 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 3.77209184039e-06 5.8055057455e-06 820914146.288 +UniRef50_UPI000466CF44 hypothetical protein, partial 1.32662964437e-05 1.69715116519e-05 1495840847.65 +UniRef50_UPI00042AB16A PREDICTED 7.54777288966e-05 0.000318698680276 98191282728.4 +UniRef50_G2KYU1 0.000625344752869 0.000228247940239 -1.60312856185e+11 +UniRef50_UPI0004645274 hypothetical protein, partial 0.000130782794563 3.17876366238e-05 -39965560067.3 +UniRef50_UPI00016C59CC ABC type multidrug transport system, ATPase component, partial 3.52119131375e-05 1.31574952526e-05 -8903639138.28 +UniRef50_UPI0002FCA31A hypothetical protein 0.000230274725677 0.000129274123384 -40775182562.4 +UniRef50_UPI000465045A glutathione synthetase 5.18552849191e-05 8.02523520297e-05 11464244463.7 +UniRef50_Q3J1E9 Plasmid and phage replicative helicase 0.00913075280516 0.00234776033579 -2.73837729656e+12 +UniRef50_Q9HML8 Phosphate import ATP binding protein PstB 2 1.16942725619e-05 0.000147833286614 54960990586.4 +UniRef50_Q1IZ14 Major facilitator superfamily MFS_1 7.91375238722e-05 0.00303156226216 1.19193009717e+12 +UniRef50_UPI0004219822 hypothetical protein 2.32860421517e-05 3.6916690131e-05 5502859856.1 +UniRef50_O83327 CTP synthase 7.01329252741e-06 8.5070302577e-05 31512572824.3 +UniRef50_Q51559 Rhamnosyltransferase 1 subunit A 0.00113236721943 0.000708567437779 -1.71093172461e+11 +UniRef50_P05719 Type 1 restriction enzyme EcoKI specificity protein 0.00290364002369 0.00126686926462 -6.60784440872e+11 +UniRef50_A1U0X4 N anthranilate isomerase 1.10592815915e-05 6.50626549224e-05 21801824509.6 +UniRef50_UPI00047A0DA3 cation 0.000199049384127 0.000709943691843 2.06254301403e+11 +UniRef50_UPI000379D46E hypothetical protein 2.63592460515e-05 5.54479059578e-05 11743448962.2 +UniRef50_D6GSS9 CRISPR associated endonuclease Cas1 0.00422455519902 0.000431611893752 -1.53125775699e+12 +UniRef50_G7MA72 Cys Met metabolism pyridoxal phosphate dependent protein 0.000931396860111 0.00221944649005 5.20001441753e+11 +UniRef50_UPI00036713D4 hypothetical protein 0.000115168961292 6.38332080909e-05 -20724873527.8 +UniRef50_UPI00005C7F68 hypothetical protein 0.00756672371091 0.00138698075168 -2.49483806661e+12 +UniRef50_W4V5S1 Electron transfer flavoprotein 1.00416539455e-05 1.37795435268e-05 1509031893.03 +UniRef50_C6SH91 Copper transporting ATPase copA 5.34682703719e-05 0.00251794614812 9.94939961792e+11 +UniRef50_B5F2H2 Porin thermoregulatory protein EnvY 7.0917025558e-05 0.000120391508817 19973456011.8 +UniRef50_Q1GFF4 Transcriptional regulator, XRE family 0.000680907387788 0.000326739513398 -1.4298191702e+11 +UniRef50_UPI0003828BA0 hypothetical protein 1.01514421555e-05 1.72177951526e-05 2852773418.83 +UniRef50_UPI00037D9868 hypothetical protein 3.61577737852e-05 0.000216349234575 72745503918.8 +UniRef50_J3M965 0.000442768252838 0.00222755444406 7.20540087185e+11 +UniRef50_W4UAJ0 Integral membrane protein 4.3693027582e-05 0.000755738376825 2.87461445268e+11 +UniRef50_Q8CUF1 0.00429994075062 0.00216276634162 -8.62803534992e+11 +UniRef50_B7V1W7 Vanillate O demethylase oxygenase subunit 0.000114853749147 0.00575832139712 2.27833714262e+12 +UniRef50_P32721 D allose import ATP binding protein AlsA 0.00627220960356 0.00487989412088 -5.6209484599e+11 +UniRef50_A4XIS1 Bifunctional protein GlmU 4.18654747068e-06 5.07337271199e-06 358022232.486 +UniRef50_Q2SM53 SufE protein probably involved in Fe S center assembly 1.90824251422e-05 1.68165196228e-05 -914773863.969 +UniRef50_Q9KRL4 Carboxynorspermidine carboxyspermidine decarboxylase 0.000102980743078 8.30739051027e-06 -38220794204.3 +UniRef50_UPI00035E542D hypothetical protein 3.69557565204e-05 2.44055033728e-05 -5066691204.61 +UniRef50_F0Y457 0.000193432161966 0.000822219723141 2.53849254537e+11 +UniRef50_Q3J3X6 0.00528152513841 0.000530633076176 -1.91799342552e+12 +UniRef50_B9KS17 Chemotaxis protein methyltransferase 0.0160956173897 0.0045274182983 -4.67022393096e+12 +UniRef50_A6LX14 GCN5 related N acetyltransferase 0.000235438246685 0.00217646779182 7.8361744648e+11 +UniRef50_I4DAA0 UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase 0.00242318351035 0.000575006335563 -7.46131805147e+11 +UniRef50_F9Z004 Menaquinone specific isochorismate synthase 0.000165564030199 0.00644130951652 2.53359546488e+12 +UniRef50_UPI0003C1484E 3.42418972292e-06 1.53411790021e-06 -763045188.617 +UniRef50_A8LC93 NADH quinone oxidoreductase subunit I 2.21565439207e-05 8.11312366933e-05 23808807173.2 +UniRef50_UPI0003141905 hypothetical protein 8.57101305966e-05 6.2356200803e-05 -9428268042.62 +UniRef50_U2Z6J9 1.88403600774e-05 5.13764815013e-05 13135231481.9 +UniRef50_B9E8Y3 Xanthine phosphoribosyltransferase 0.0153540988411 0.00367421704271 -4.71531161028e+12 +UniRef50_UPI00036CDCFE hypothetical protein 9.64780395073e-05 0.000204216397562 43495297245.1 +UniRef50_Q8CP83 2 oxoglutarate dehydrogenase E1 component 0.018636790867 0.00398732613491 -5.9141686815e+12 +UniRef50_UPI00030EEC63 hypothetical protein 0.00019084247147 3.61474083056e-05 -62452295321.2 +UniRef50_Q04JH4 Triosephosphate isomerase 1.92248946055e-05 0.00488347589596 1.96375782032e+12 +UniRef50_Q4L9P9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0237682542607 0.00753192880043 -6.55480383044e+12 +UniRef50_P0AEH3 Protein ElaA 0.0346817930719 0.00113782586522 -1.35421111921e+13 +UniRef50_V5WXJ4 Lytic transglycosylase 0.00130789180878 0.0015769621105 1.08626982668e+11 +UniRef50_Q8CTV2 ATP phosphoribosyltransferase regulatory subunit 0.00674622572899 0.00395368219863 -1.12738409157e+12 +UniRef50_V9U722 0.00553940761972 0.00145237723867 -1.64998431833e+12 +UniRef50_K7RTT6 O antigen polymerase 0.000262968339136 0.00959417425795 3.7671223362e+12 +UniRef50_A3PH69 Alpha beta hydrolase 0.00198264573618 0.000865237791873 -4.51111299255e+11 +UniRef50_UPI0003B51C59 ABC transporter permease 2.58103776828e-05 3.34060704141e-05 3066474365.26 +UniRef50_Q57S48 HTH type transcriptional repressor AllR 0.00264163304755 0.00362041843285 3.95147671093e+11 +UniRef50_UPI00029A79A0 HAD family hydrolase 5.2702814321e-05 0.000173432249524 48739954508.2 +UniRef50_G8VAK1 ABC transporter 0.000410310857448 0.00302698360664 1.05638289903e+12 +UniRef50_G9WFA5 Maltose maltodextrin ABC permease 0.00398024301197 0.00169107322023 -9.24165936198e+11 +UniRef50_UPI0003A1DBBC sodium 6.3695631343e-05 0.00037646767367 1.26269911632e+11 +UniRef50_D8LB80 1.64524832966e-05 2.86522974023e-06 -5485340995.07 +UniRef50_UPI00037A8200 hypothetical protein 5.96278313763e-06 4.58069254279e-05 16085569185.2 +UniRef50_X3EKF3 4.96137885679e-05 5.92589235048e-05 3893859333.14 +UniRef50_W4HLY6 0.000206295347483 3.05856013721e-05 -70936180706.1 +UniRef50_Q3J3X8 0.0178708096648 0.00388452009428 -5.64643673068e+12 +UniRef50_K4PQW7 0.000968282567052 0.000700355822605 -1.08165314564e+11 +UniRef50_UPI0002F01115 hypothetical protein 1.42975669354e-05 1.67173770384e-05 976907032.99 +UniRef50_G7U413 Pyridine nucleotide disulfide oxidoreductase 0.000356347795263 0.00566886637644 2.14472894316e+12 +UniRef50_D3QHT0 0.00925235716019 0.00192619424699 -2.95766187019e+12 +UniRef50_F9EIZ7 0.000398249745694 0.00133652031744 3.78791343689e+11 +UniRef50_R7CST7 ABC type proline glycine betaine transport system periplasmic component 0.000131496402917 8.96535594104e-05 -16892469393.0 +UniRef50_M4RA06 0.000147072463189 0.00768430891371 3.04287484737e+12 +UniRef50_Q2FHR7 Carbamate kinase 1 0.0109880921477 0.00191592924308 -3.66254349255e+12 +UniRef50_UPI000255E3EB 1 deoxy D xylulose 5 phosphate reductoisomerase 8.99507681555e-05 1.53021916864e-05 -30136546361.6 +UniRef50_P54475 DEAD box ATP dependent RNA helicase CshB 0.00591822693621 0.00811585907005 8.8721106041e+11 +UniRef50_Q989G9 Mlr6427 protein 0.0130231991246 0.00361434483257 -3.79846993732e+12 +UniRef50_Q9RZE0 0.000122163750441 0.0145374961013 5.81964656608e+12 +UniRef50_F0VYG1 Cysteine desulfurase 0.000114621251678 0.00244405402366 9.40420595403e+11 +UniRef50_B7ICE8 TonB dependent receptor protein 0.00018951621741 0.0038260054362 1.46809532237e+12 +UniRef50_UPI00046ED547 major facilitator transporter, partial 6.55243909766e-06 2.07922153975e-05 5748772433.93 +UniRef50_Q0SWZ1 1,4 alpha glucan branching enzyme GlgB 1 2.04988237964e-06 2.70011869011e-06 262508377.834 +UniRef50_D1CAE1 Pyridoxal 5 phosphate dependent protein beta subunit 9.43012751554e-06 1.0575995378e-05 462600917.455 +UniRef50_Q31MP6 Diguanylate cyclase with GAF sensor 2.78084750586e-05 4.12417913775e-05 5423194643.27 +UniRef50_I6X0E0 Lipoprotein 1.58504723108e-05 2.61098488444e-05 4141836203.32 +UniRef50_M2CCG1 0.0035686646938 0.00126376029742 -9.30518189176e+11 +UniRef50_W0Z4J7 Histidine kinase 5.84177167014e-05 0.000148282782229 36279629721.9 +UniRef50_B1J7Z5 3 demethylubiquinone 9 3 methyltransferase 0.00219017386806 0.000379421891038 -7.31022793548e+11 +UniRef50_I1Y621 Lytic murein transglycosylase 0.000122608437683 0.00910707841257 3.62714078071e+12 +UniRef50_X5EFR9 Two component sensor 5.57037858615e-05 0.00294364044167 1.16589546692e+12 +UniRef50_X1THZ3 Marine sediment metagenome DNA, contig 1.11381533479e-05 3.5288493879e-05 9749788830.41 +UniRef50_UPI0002195D59 Zn dependent hydrolase 3.52896184622e-06 1.93075033029e-05 6369990810.55 +UniRef50_UPI0003902576 ATP synthase gamma chain 0.000133860279732 2.90029227032e-05 -42332201777.1 +UniRef50_R9SM98 Radical SAM domain containing protein 0.00212963227343 0.000504985578368 -6.55889807453e+11 +UniRef50_UPI00030D5D10 hypothetical protein 0.000219104628124 4.98771594867e-05 -68319205743.3 +UniRef50_G7M580 0.00049713719824 0.000680297921892 73944231773.1 +UniRef50_E6MYM9 0.000808898547544 0.00469487536722 1.5688165284e+12 +UniRef50_UPI000376AE97 hypothetical protein 0.00026243952233 0.000274939442967 5046371352.43 +UniRef50_Q28PV9 N acetyl gamma glutamyl phosphate reductase 0.0103608088111 0.0056236187507 -1.91246175924e+12 +UniRef50_UPI0001BC2E61 thioredoxin reductase 7.01997203629e-06 2.8759509681e-05 8776518121.29 +UniRef50_R5RVQ5 2.22972884241e-05 8.13456768788e-05 23838559024.4 +UniRef50_L0HHM1 0.000165052744804 3.62491890366e-05 -51999576060.5 +UniRef50_A4X335 ABC transporter related 0.00546215554625 0.0132996681079 3.16409999823e+12 +UniRef50_A0A023S0B1 Glutathione S transferase 0.000150193364259 0.00430752266902 1.6783648565e+12 +UniRef50_UPI00035E14F7 hypothetical protein 0.000327889384243 6.12176642895e-05 -1.07658645775e+11 +UniRef50_I2BCP0 6.55773221752e-05 0.000294603113935 92460522596.0 +UniRef50_D2NNT4 2.76090624944e-06 9.32403267345e-06 2649614675.99 +UniRef50_UPI00034A702A hypothetical protein 1.18076873778e-05 1.15194952007e-05 -116346718.411 +UniRef50_Q0TQK1 Trigger factor 0.000891182046329 0.00103261877795 57099744179.3 +UniRef50_Q4ZQB6 Transcriptional regulator, LysR family 0.000569092874814 0.000420671954498 -59919346861.1 +UniRef50_P53580 Methionine aminopeptidase B 2.45733545271e-05 0.027988090924 1.12892151938e+13 +UniRef50_E3EL28 Nicotinate phosphoribosyltransferase and like protein 7.86429143391e-05 0.000558043776739 1.93540011061e+11 +UniRef50_Q9HUY1 Dihydrolipoyl dehydrogenase 3 3.32814596165e-05 6.38502847262e-05 12341009818.5 +UniRef50_UPI00047E1DD8 hypothetical protein 4.17006319736e-06 1.03959403871e-05 2513463021.6 +UniRef50_Q2Y7L8 Chorismate synthase 0.00344847541689 0.0126181357442 3.70190439852e+12 +UniRef50_A5V6F9 Anhydro N acetylmuramic acid kinase 5.40083299955e-06 2.48688167267e-05 7859463929.66 +UniRef50_UPI0003B6910D hypothetical protein 1.18967260701e-05 1.27702661251e-05 352658839.745 +UniRef50_A3PRF9 0.0119904191803 0.00211010264719 -3.98880502953e+12 +UniRef50_G7WBX4 Arabinose efflux permease family protein 0.000202304594079 0.00149866450885 5.23356405718e+11 +UniRef50_A2SDV6 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 5.98818429438e-06 8.86705299464e-06 1162234621.99 +UniRef50_I0C160 Glycerophosphodiester phosphodiesterase 0.0113213837572 0.00285707655749 -3.41714468525e+12 +UniRef50_UPI0003640286 hypothetical protein 3.95865378117e-06 4.92687969092e-05 18292260798.8 +UniRef50_P40871 2,3 dihydroxybenzoate AMP ligase 8.78111553783e-06 0.000269006019936 1.05055987224e+11 +UniRef50_F8F763 0.0181289481533 0.00803977944792 -4.07312121439e+12 +UniRef50_G7ZLK0 0.0183150675424 0.00248238435055 -6.39184849344e+12 +UniRef50_UPI0003629F80 membrane protein, partial 2.48612408341e-05 5.24623882368e-05 11142921910.6 +UniRef50_Q98FA5 Thiamine import ATP binding protein ThiQ 7.72788544042e-06 1.45778381632e-05 2765409972.56 +UniRef50_UPI0003600109 hypothetical protein 1.8900326105e-05 1.11444571544e-05 -3131139470.57 +UniRef50_Q5X9H7 Holliday junction ATP dependent DNA helicase RuvA 0.00729177193588 0.00439581487419 -1.16913340319e+12 +UniRef50_Q4L5A2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0198277412269 0.00158205377784 -7.36600792296e+12 +UniRef50_Q4L7Q5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00645740686697 0.00294155131318 -1.41939403146e+12 +UniRef50_P65328 Riboflavin synthase 5.09637756629e-05 5.56829607498e-05 1905192930.49 +UniRef50_Q8CZ55 1.42772776373e-05 0.00276229829954 1.10940980855e+12 +UniRef50_Q831A8 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.0331872188932 0.020459449129 -5.13835684111e+12 +UniRef50_UPI00036518A8 hypothetical protein 0.00011674824398 9.13350634579e-05 -10259612831.6 +UniRef50_P0A264 Outer membrane protein C 0.00772079053831 0.00110480594676 -2.67095416687e+12 +UniRef50_P44068 0.00266760447144 0.00940787617346 2.72113039854e+12 +UniRef50_J9YRQ9 Large conductance mechanosensitive channel protein 0.00158417757226 0.000471250061484 -4.49302493258e+11 +UniRef50_A1B1F2 UDP 3 O acylglucosamine N acyltransferase 0.00442888757957 0.00125230199507 -1.28242658155e+12 +UniRef50_Q1CUR3 Glutamyl tRNA reductase 8.65132136393e-05 0.00319103585154 1.2533338857e+12 +UniRef50_UPI00035E28E1 hypothetical protein 6.53430107331e-06 6.28467855974e-05 22734041034.3 +UniRef50_Q0TRY8 Lysine N methylase, homolog 0.000109205204105 0.00206512423193 7.89628513361e+11 +UniRef50_C4LGM2 Catalase 8.44487670801e-05 0.00489269975426 1.9411499274e+12 +UniRef50_UPI0002F0DA53 hypothetical protein 3.19484217821e-05 3.19531240963e-05 1898381.94642 +UniRef50_F0MZQ2 2.23479749099e-05 8.35576250771e-05 24711086899.4 +UniRef50_UPI000382677B hypothetical protein 0.000226925829482 7.17079860765e-05 -62663348119.7 +UniRef50_Q10MG8 Retrotransposon protein, putative, Ty3 gypsy subclass, expressed 7.78486052185e-06 0.000127814362604 48457382918.1 +UniRef50_H3UXX3 0.0027655723769 0.000514789824035 -9.08668536801e+11 +UniRef50_A8LNJ9 Flagellar biosynthesis regulatory protein FlaF 9.027201014e-05 9.42644421527e-05 1611793796.18 +UniRef50_UPI0003F80943 hypothetical protein 2.12727593867e-06 4.9545565599e-06 1141407881.43 +UniRef50_K0HHI0 0.000169783803081 0.0049246611229 1.91960232292e+12 +UniRef50_UPI00005DE9C0 MULTISPECIES 8.34576471041e-06 1.8169669153e-05 3966030776.34 +UniRef50_UPI00040056AC hypothetical protein 8.93248404841e-06 1.44298065302e-05 2219336545.63 +UniRef50_UPI000368B929 cold shock protein 5.30313289166e-05 6.97309310371e-05 6741834303.21 +UniRef50_A6LVD8 0.000380019451866 0.00134680188875 3.90301933525e+11 +UniRef50_UPI00037150E3 hypothetical protein 0.000124096716083 0.000170323099998 18662158448.0 +UniRef50_P64558 0.00416361673609 0.000381053813154 -1.52706706926e+12 +UniRef50_P52559 N5 carboxyaminoimidazole ribonucleotide synthase 4.76450579676e-06 8.95915780389e-06 1693432489.45 +UniRef50_R6KNU0 Glycosyl transferase 0.000347107417614 0.00126998362134 3.72576448409e+11 +UniRef50_T9UBD7 0.000268010530422 3.72849510488e-05 -93146747714.1 +UniRef50_A6LXN0 Polyprenyl synthetase 0.000503953857256 0.00310835773641 1.05142980564e+12 +UniRef50_Q65ID2 Peptide methionine sulfoxide reductase MsrB 1.4935587378e-05 0.000824139642406 3.26685607065e+11 +UniRef50_UPI0003B62BEC hypothetical protein, partial 1.0810008296e-05 0.00157009548949 6.29502683341e+11 +UniRef50_S4WAF1 Synthase [glutamine hydrolyzing] 0.000120647088602 0.00010952938109 -4488354952.21 +UniRef50_U3AMR8 9.34795194891e-06 7.2063233964e-06 -864601727.386 +UniRef50_G7M622 Transcriptional regulator, LuxR family 0.000196949211577 0.00141124840683 4.90227486249e+11 +UniRef50_I6SFZ0 TPR domain containing protein 6.29126657933e-06 0.000499407976911 1.99077267184e+11 +UniRef50_UPI00047C4D4C hypothetical protein 1.46885477652e-05 3.07224686161e-05 6473090605.84 +UniRef50_Q9Z9U1 Sorbitol dehydrogenase 0.0193516641736 0.0050590100551 -5.77011985823e+12 +UniRef50_Q5HPF3 Phosphate ABC transporter, permease protein 0.00878099935867 0.00154303750142 -2.92205402155e+12 +UniRef50_UPI0004652E03 hypothetical protein 0.00206124920403 0.000112428188694 -7.86762958616e+11 +UniRef50_C1L2X6 UDP N acetylenolpyruvoylglucosamine reductase 1.81031602232e-05 0.000843292360779 3.33139006475e+11 +UniRef50_D0DAU8 Phage integrase 0.000167275918245 4.34360707186e-05 -49995666132.1 +UniRef50_Q2J514 Endoribonuclease L PSP 0.000851472155308 0.00323663754501 9.62920537093e+11 +UniRef50_A6E7D3 0.000198776573373 0.000236873282938 15380109150.6 +UniRef50_UPI000225B5DA magnesium chelatase; methanol dehydrogenase regulator, partial 5.40364387347e-05 0.000188279228719 54195461660.8 +UniRef50_A5IPN7 0.000229131606966 0.000122169320374 -43181987672.0 +UniRef50_B8KSJ4 Phosphate starvation inducible E 5.63365188014e-05 3.29591929588e-05 -9437713314.71 +UniRef50_K0JY23 2.3091407609e-05 7.1054417983e-06 -6453730567.64 +UniRef50_D3T5X9 Mannitol dehydrogenase domain protein 0.000565179451584 0.00128525462466 2.90703183687e+11 +UniRef50_P24554 DNA repair protein RadA 0.00309342043247 0.00976899845666 2.69501276692e+12 +UniRef50_UPI0004711C23 6 phospho beta glucosidase 5.50938034135e-06 1.9806022383e-05 5771729831.76 +UniRef50_A3PQ11 0.00642286083439 0.000458636157457 -2.40783069134e+12 +UniRef50_P25550 Anaerobic sulfatase maturating enzyme homolog AslB 0.00191564907731 0.00149367648179 -1.70355514997e+11 +UniRef50_Q320T0 Diguanylate cyclase DosC 0.00265782254141 0.000357261126401 -9.28764874303e+11 +UniRef50_P24752 Acetyl CoA acetyltransferase, mitochondrial 4.80404621216e-06 8.69455576069e-06 1570646446.66 +UniRef50_UPI0003828B5A hypothetical protein, partial 4.16364986934e-05 2.3046962464e-05 -7504823895.07 +UniRef50_Q070J3 Virion core protein 5.90192665843e-07 9.36802695393e-07 139930722.313 +UniRef50_A9B2U4 3 methyl 2 oxobutanoate hydroxymethyltransferase 6.34069412285e-06 9.96248383562e-06 1462160951.4 +UniRef50_Q2YZ25 Putative hemin transport system permease protein HrtB 0.022698712603 0.00840512171193 -5.77049804482e+12 +UniRef50_UPI000479F72A hypothetical protein 1.27911073191e-05 1.24607745134e-05 -133359407.3 +UniRef50_B9FT55 0.000104229824533 4.05369708573e-05 -25713586628.1 +UniRef50_C6STC0 0.0047151520229 0.000292392777421 -1.78552218076e+12 +UniRef50_K0ELZ4 Transcriptional regulator 1.18062210939e-05 1.27090826937e-05 364496307.197 +UniRef50_F0RLU8 Alpha beta hydrolase fold protein 0.000662156832023 0.00117715421482 2.07910763164e+11 +UniRef50_X5QUZ2 0.000107210071844 0.000534885241154 1.72657714015e+11 +UniRef50_A4WPB0 0.000595658441196 0.000387724339418 -83945548526.1 +UniRef50_Q2JXG9 tRNA N6 adenosine threonylcarbamoyltransferase 5.80922141835e-06 1.17109049712e-05 2382582072.09 +UniRef50_I0EL02 0.000185648846977 0.00570709903582 2.22907719705e+12 +UniRef50_A3JC42 3.28843471043e-05 0.000191933406003 64210056829.0 +UniRef50_P53434 Putative GTP cyclohydrolase 1 type 2 9.18738992938e-06 0.00152904522701 6.13585259582e+11 +UniRef50_Q1D054 8.88446300182e-05 2.76614349167e-05 -24700406664.7 +UniRef50_A0QJB3 Polyphosphate kinase 1.25884466729e-05 0.000555380391152 2.19131768792e+11 +UniRef50_UPI00035D6A77 hypothetical protein 3.89183596963e-05 5.63148003496e-06 -13438321795.2 +UniRef50_M1N0K2 FeS cluster assembly protein SufD 0.000346299045347 0.000417167838273 28610601362.1 +UniRef50_V6UQJ7 Membrane protein 0.000445673408356 0.000149244910393 -1.19671822214e+11 +UniRef50_UPI0003B63A1B acetyltransferase 0.000118176132609 0.000116851094155 -534934283.93 +UniRef50_G8NAB2 Replicative DNA helicase DnaB 0.000426209298448 0.0512180383658 2.05052846803e+13 +UniRef50_A0LV48 Probable dual specificity RNA methyltransferase RlmN 1.53597847628e-05 2.23656383507e-05 2828349064.93 +UniRef50_D4HEJ4 Phospholipase, patatin family 0.000146312398781 0.00633069496057 2.4967111311e+12 +UniRef50_UPI00037DE98D hypothetical protein 2.1357038177e-05 1.8065180657e-05 -1328963276.46 +UniRef50_F5XRV0 Polyprenyl diphosphate synthase 0.000105541282996 0.00361036326254 1.41493964214e+12 +UniRef50_O27679 Protein pelota homolog 0.00329525344478 0.000805033787533 -1.00533223406e+12 +UniRef50_A9ADZ8 BolA family protein 5.5783774969e-05 0.00172846545988 6.75282122311e+11 +UniRef50_E7PV88 Transposase IS861 orfB 6.73289766303e-05 2.94934636254e-05 -15274660894.0 +UniRef50_UPI0004770260 glucose 1 phosphate adenylyltransferase 4.08635719305e-06 5.8956132068e-05 22151601444.9 +UniRef50_P0A933 Putative polysaccharide export protein GfcE 0.00666031743796 0.000926881587662 -2.31465840994e+12 +UniRef50_G2I4D0 7.99256087773e-06 2.16785627555e-05 5525206904.2 +UniRef50_UPI0004789CC8 hypothetical protein 0.000115173522346 2.99082739924e-05 -34422627082.6 +UniRef50_Q9RRU8 S ribosylhomocysteine lyase 6.72266251472e-05 0.0583279369581 2.35205637007e+13 +UniRef50_X2LN33 5.16602569039e-05 1.38509723157e-05 -15264072160.4 +UniRef50_B2HU41 NADH quinone oxidoreductase subunit A 6.74261606283e-05 0.00558496713183 2.22749899792e+12 +UniRef50_U3TT52 Cytoplasmic protein 0.0138377582737 0.00295232341088 -4.39458363342e+12 +UniRef50_P75916 Inner membrane protein YcdZ 0.000912218933045 0.000397287047353 -2.07884321179e+11 +UniRef50_P9WQB2 2 isopropylmalate synthase 4.08179916298e-06 3.50369511836e-05 12496974733.1 +UniRef50_O27636 ORC1 type DNA replication protein 2 0.00203981818382 0.00120634950341 -3.36481534092e+11 +UniRef50_A4J6I7 Xanthine phosphoribosyltransferase 3.60802186924e-05 3.77066008089e-05 656590418.384 +UniRef50_UPI000374951A hypothetical protein 3.77008142513e-05 1.70371498e-05 -8342174910.67 +UniRef50_UPI0002DBEA5E ImpA family type VI secretion associated protein 5.01298295168e-06 9.02939316489e-06 1621474089.97 +UniRef50_UPI0003B4D6D9 NADH dehydrogenase 4.50201320614e-06 7.52577831454e-06 1220731080.03 +UniRef50_F7W6Q2 WGS project CABT00000000 data, contig 2.35 1.96741033551e-06 9.95662297439e-07 -392306607.659 +UniRef50_UPI0003618C13 2,3 dihydroxybenzoate 2,3 dehydrogenase, partial 4.15946601356e-05 3.71216688124e-05 -1805801486.95 +UniRef50_B9KTW7 0.00424241318697 0.000498115346756 -1.51161898579e+12 +UniRef50_UPI0001D2F064 adenosylcobinamide phosphate synthase 2.23569813254e-05 9.53480383303e-05 29467385413.9 +UniRef50_UPI000344E65D phosphomethylpyrimidine synthase 4.43345227567e-06 1.41967490244e-05 3941562706.59 +UniRef50_C0H3V8 7.86133872416e-05 6.80123934597e-05 -4279751278.58 +UniRef50_F8IRV1 Anthranilate synthase component II 0.00681316265366 0.00161732017706 -2.09762536796e+12 +UniRef50_D4HEY5 0.000654599980668 0.00110055914979 1.80039189109e+11 +UniRef50_Q5FLZ3 tRNA N6 adenosine threonylcarbamoyltransferase 0.0262870365471 0.0153160634563 -4.42911646574e+12 +UniRef50_Q5CQR3 1.53387161071e-05 6.56104887678e-05 20295331527.1 +UniRef50_B0VM39 Potassium transporting ATPase C chain 0.000374987109523 0.010565064503 4.11385929007e+12 +UniRef50_Q8CTZ4 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.0114338220404 0.00216121282061 -3.74346612974e+12 +UniRef50_C5N0F9 X Pro dipeptidyl peptidase C terminal non catalytic domain protein 0.0156896822387 0.00348452064901 -4.92737350794e+12 +UniRef50_G7R7B9 0.00115847312024 0.000509873033243 -2.61847814339e+11 +UniRef50_UPI0003FE850D hypothetical protein 5.33932403205e-05 6.4062192689e-05 4307186993.93 +UniRef50_P02925 D ribose binding periplasmic protein 0.00507319146911 0.000837530144169 -1.70998845429e+12 +UniRef50_UPI00030221F2 metallophosphoesterase 3.60871255989e-06 0.000629701916285 2.52761509371e+11 +UniRef50_A5UN81 Predicted ATPase, AAA+ family 0.00294928313237 0.0007070872076 -9.05202009668e+11 +UniRef50_UPI0003724574 CRISPR associated protein Csn1, partial 0.0018392035029 0.000411106723978 -5.76540194368e+11 +UniRef50_A1WZJ2 60 kDa chaperonin 0.0268005975217 0.0139229155658 -5.19887823252e+12 +UniRef50_P08957 Type I restriction enzyme EcoKI M protein 0.00175921514787 0.00110938204227 -2.6234559908e+11 +UniRef50_Q98QK7 0.000278911964858 0.000507457703944 92266719440.6 +UniRef50_A7X4T7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.00528677204065 0.00548070710579 78293965647.9 +UniRef50_Q57GJ7 Ascorbate specific phosphotransferase enzyme IIA component 0.0029104856148 0.00112715346447 -7.19953073035e+11 +UniRef50_P58967 Putative homocitrate synthase AksA 3.80550937265e-06 8.35254455261e-06 1835693900.55 +UniRef50_P78067 Thiosulfate sulfurtransferase YnjE 0.001918552526 0.0010243275422 -3.61009599335e+11 +UniRef50_B7H3X0 Bacterial regulatory helix turn helix protein, AraC family protein 0.000236915892584 0.00978933405055 3.85642843173e+12 +UniRef50_Q8YAM6 ATP synthase subunit beta 1 1.32029202228e-05 0.00290636368227 1.16800450271e+12 +UniRef50_Q6GEN7 Tagatose 1,6 diphosphate aldolase 0.0117392290246 0.00185607913453 -3.98994889051e+12 +UniRef50_A0A024JA58 Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit 9.4694636242e-06 0.00017690166138 67594432858.2 +UniRef50_UPI000478EDC7 hypothetical protein 0.000212687957533 2.77582337378e-05 -74658398838.9 +UniRef50_S4C0T0 2.87972154232e-06 0.000931292669092 3.74811699834e+11 +UniRef50_UPI00047AEF8E phosphohydrolase 4.27781934739e-06 1.30159444156e-05 3527688318.89 +UniRef50_V5C9A8 Anthranilate 1,2 dioxygenase electron transfer component AntC 2.15240194098e-05 1.28948007131e-05 -3483721480.28 +UniRef50_X1LWS5 Marine sediment metagenome DNA, contig 0.000113230912885 1.56979303293e-05 -39375261922.0 +UniRef50_UPI00016B263F molecular chaperone GroEL 1.32397823298e-05 8.70740838077e-06 -1829774981.71 +UniRef50_UPI0003787BF0 hypothetical protein 3.26514748465e-05 2.41834077632e-05 -3418662596.4 +UniRef50_Q2SEB7 3.57370694784e-06 5.34485844583e-06 715035594.212 +UniRef50_Q5HMD7 Cell division protein, FtsW RodA SpoVE family 0.0204393239274 0.00617972085519 -5.75677674525e+12 +UniRef50_C9Y1J4 Penicillin binding protein activator LpoB 0.00627264501339 0.000277727308957 -2.42022184319e+12 +UniRef50_K3XR47 6.65677806712e-06 9.95312311704e-06 1330774947.36 +UniRef50_A0AI76 Ribonuclease HII 0.00130802379018 0.00473590015569 1.38387575353e+12 +UniRef50_Q6AG81 Arginine tRNA ligase 2.73630674835e-06 0.00133500869557 5.37854712187e+11 +UniRef50_L3UJQ1 0.000409040933354 0.000548163191922 56165363006.0 +UniRef50_Q9ZL83 Ribonuclease Y 9.39019872821e-05 0.00470335940686 1.86089452469e+12 +UniRef50_Q890T6 Conserved protein 0.000628802491806 0.00196375536325 5.38936855914e+11 +UniRef50_B8I2Q1 LexA repressor 0.00945772278924 0.00486126432313 -1.85564668766e+12 +UniRef50_W0N7A1 Urea ABC transporter ATP binding protein 0.00430729455398 0.00223610168042 -8.36165979451e+11 +UniRef50_P95231 Serine acetyltransferase 9.14936860443e-06 3.1969071978e-05 9212594281.17 +UniRef50_UPI00036454DD hypothetical protein 0.000100964683628 3.74786925159e-05 -25630073672.7 +UniRef50_V4NEJ0 Cupin 0.00012956521331 4.0945897789e-05 -35776705157.1 +UniRef50_G7ZTM6 Capsular polysaccharide synthesis enzyme 0.0112707305353 0.00218048295862 -3.66984449659e+12 +UniRef50_A3MA53 0.000253914342281 0.00622617523217 2.41107500913e+12 +UniRef50_M9RK06 Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein 0.00331579272076 0.00092470031499 -9.65313346213e+11 +UniRef50_A4WX60 0.00460064182079 0.0002590497414 -1.75275399978e+12 +UniRef50_A6M1Q8 Periplasmic binding protein LacI transcriptional regulator 0.00023519376252 0.000615506306557 1.53536840987e+11 +UniRef50_UPI000464A0A1 hypothetical protein 0.000299494683304 4.59488546187e-05 -1.02359562397e+11 +UniRef50_Q5HHQ6 Putative acetyltransferase SACOL0827 0.0196026484559 0.00195959237771 -7.12271824341e+12 +UniRef50_Q0AP83 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 9.29347169502e-06 8.54862967682e-06 -300701862.987 +UniRef50_D3E0S2 0.00539200134072 0.000250268394227 -2.07578068666e+12 +UniRef50_W4TUN4 Sugar binding protein 0.000339699433373 0.000208871098032 -52817004421.4 +UniRef50_B9EAX4 Capsular polysaccharide synthesis protein CapM homolog 0.0165831730562 0.00160779051382 -6.04574570098e+12 +UniRef50_Q8TKX9 Cysteine desulphurase 0.00195544607495 0.00151595541576 -1.77427772272e+11 +UniRef50_UPI00037AD2A9 hypothetical protein 2.42925184615e-06 0.000163680525141 65099117804.8 +UniRef50_G7M1Z6 Methyl accepting chemotaxis sensory transducer with Cache sensor 5.4840579493e-05 0.000819594717126 3.08740629951e+11 +UniRef50_Q8CTH3 0.000350048521322 6.03386230433e-05 -1.16959441075e+11 +UniRef50_B5HEJ3 0.000159671545941 0.000124915033282 -14031630670.8 +UniRef50_UPI00036A911D hypothetical protein 0.000215819166836 3.95997246021e-05 -71141951285.6 +UniRef50_T1ZGA3 Phosphomethylpyrimidine kinase 0.0079226880745 0.0023469221874 -2.25100511096e+12 +UniRef50_P14503 3.14416699214e-05 1.64480680309e-05 -6053101075.38 +UniRef50_UPI00037E35E9 hypothetical protein 5.53392102257e-06 0.000472152392411 1.88379602952e+11 +UniRef50_A3MZB9 Bifunctional protein PyrR 1.93222579283e-05 4.55037444567e-05 10569787394.5 +UniRef50_UPI0003B6F64B ABC transporter 2.65609478455e-06 5.61329681251e-06 1193858747.64 +UniRef50_R2NFJ2 Pyruvate flavodoxin oxidoreductase 0.000481651038881 0.00311806484705 1.06435260679e+12 +UniRef50_A0A028CJT1 LysR family transcriptional regulator 0.00193681284374 0.00117892041956 -3.05970472027e+11 +UniRef50_B8I741 ABC transporter transmembrane region 0.000220760911454 0.00306058031153 1.14646994032e+12 +UniRef50_A0RBD6 Dehydratase 9.80439086498e-05 0.000359411811592 1.05517429763e+11 +UniRef50_UPI000409C1DE hypothetical protein 0.00098957499695 6.69842992572e-05 -3.7246118612e+11 +UniRef50_G4RBE3 Mannonate dehydratase 0.00326374039885 0.000663936577622 -1.04957270581e+12 +UniRef50_D3QHV2 Sec independent protein translocase protein TatC 0.0158708493303 0.00280481299394 -5.2749192073e+12 +UniRef50_E0XRZ7 5.08708555389e-05 2.99119982787e-05 -8461347870.04 +UniRef50_UPI0003EDA90F porin 2.9839456409e-05 0.000122544724618 37426254397.5 +UniRef50_V5VAB4 Bacterial SH3 domain containing protein 0.000166537936259 0.0127863040218 5.09475443066e+12 +UniRef50_Q9RZJ6 0.00140372518616 0.000448582337002 -3.85602889126e+11 +UniRef50_Q0BST5 DNA gyrase subunit A 9.00702142388e-06 1.95441422267e-05 4253964973.1 +UniRef50_P44499 Peptidyl prolyl cis trans isomerase B 4.70174852084e-05 3.73870841931e-05 -3887911068.19 +UniRef50_C3M8S2 Holo [acyl carrier protein] synthase 2.34706567405e-05 6.53740128412e-05 16916899069.9 +UniRef50_B6IVS2 Inner membrane protein, putative 3.40071432112e-05 4.25495740781e-05 3448684168.38 +UniRef50_UPI00047BD367 hypothetical protein 8.20210789772e-05 7.2976127754e-05 -3651557802.84 +UniRef50_A6WKC8 UPF0246 protein Shew185_1115 1.78739628481e-05 2.92211102985e-05 4580982670.88 +UniRef50_D0JN49 Phosphoribosylformylglycinamidine synthase 0.00322013581259 0.00263366553752 -2.36765246845e+11 +UniRef50_UPI0004716A86 ArsR family transcriptional regulator 7.26729627766e-05 4.54385767127e-05 -10994855857.5 +UniRef50_H9KKZ5 1.63865616273e-05 4.69552308527e-06 -4719815724.58 +UniRef50_G7T9S3 Hemolysin 1.03813785047e-05 0.0185651933379 7.49080528116e+12 +UniRef50_A3PJ91 RDD domain containing protein 0.00134457504704 0.00114316143946 -81313145003.0 +UniRef50_K4NAS3 ATP binding protein 9.62829334316e-05 0.00450725498205 1.78076354474e+12 +UniRef50_UPI000465E2F8 hypothetical protein 2.04680601567e-05 8.06963275557e-06 -5005397287.64 +UniRef50_UPI0004720CE8 hypothetical protein 1.65157244039e-06 2.21435530712e-06 227202349.421 +UniRef50_P0AAZ6 Replication associated recombination protein A 0.00333903177393 0.000186319687815 -1.27278855729e+12 +UniRef50_UPI00016A522C branched chain amino acid ABC transporter, ATP binding protein, putative, partial 0.00012046407464 4.18048887437e-05 -31755678603.1 +UniRef50_M5AH54 Nod factor export ATP binding protein I 0.008451752392 0.001959947716 -2.6208212111e+12 +UniRef50_UPI0003EF2FDA hypothetical protein 2.28545633113e-05 0.000952634532885 3.753635834e+11 +UniRef50_A9B932 Transposase Tn3 family protein 8.877058781e-06 0.000269295828127 1.05134252883e+11 +UniRef50_A3VKI4 8.68386358093e-06 1.81167427234e-05 3808169064.26 +UniRef50_P24228 D alanyl D alanine carboxypeptidase DacB 0.0021479328406 0.00061178896677 -6.2016013247e+11 +UniRef50_B9KM28 0.000903462595371 0.000196974497368 -2.85217914748e+11 +UniRef50_S6D8D3 Low affinity zinc transport protein 4.04143507692e-06 5.10572362342e-06 429666346.511 +UniRef50_P76395 0.00408367658429 0.00120632635497 -1.16162159663e+12 +UniRef50_P76393 0.00161884864734 0.000603845694919 -4.09769147379e+11 +UniRef50_Q4FV40 Protein translocase subunit SecA 9.14554623038e-05 0.0026393849541 1.02863040245e+12 +UniRef50_D8JKX1 0.000191805412359 0.00661926593243 2.59484468576e+12 +UniRef50_UPI000380F87B hypothetical protein 9.4605649507e-06 3.50506512857e-05 10331031879.1 +UniRef50_UPI000369EA6C hypothetical protein 7.54927689689e-05 1.29042710414e-05 -25267744660.6 +UniRef50_UPI0003FAEB30 hypothetical protein 0.000122397552346 1.92188156742e-05 -41654522140.0 +UniRef50_L8GXF4 3.89880431757e-06 1.57115098714e-06 -939702213.013 +UniRef50_N2E2F5 4Fe 4S binding domain protein 0.000767599519366 0.000361612292071 -1.63902025683e+11 +UniRef50_UPI0003B6D996 histidine kinase 7.82075901019e-05 1.49547228307e-05 -25535958717.4 +UniRef50_UPI00047EF35E UDP glucose 6 dehydrogenase 4.94273422851e-06 6.77405876674e-06 739328188.963 +UniRef50_M3A5Y8 5.09450165986e-05 2.85063862555e-05 -9058750422.47 +UniRef50_Q3JZG9 DNA polymerase IV 0.000317450039145 0.00386881677843 1.43373033282e+12 +UniRef50_UPI000225C205 uroporphyrinogen decarboxylase 4.41287561633e-06 1.94944434551e-05 6088614008.17 +UniRef50_UPI0003D25C42 2.05832915712e-06 3.72932413979e-06 674601179.918 +UniRef50_P54570 ADP ribose pyrophosphatase 2.9378034508e-05 0.00159275626219 6.31154975323e+11 +UniRef50_A5UKV4 Tetrahydromethanopterin S methyltransferase, subunit H, MtrH 0.0046837178207 0.00120810300869 -1.4031483502e+12 +UniRef50_U9QRW9 0.000312418786305 0.000420739908483 43730566272.9 +UniRef50_G7MD43 Major facilitator superfamily MFS_1 0.000298887627138 0.000306467582996 3060121196.39 +UniRef50_B7N8L4 NAD NADP dependent betaine aldehyde dehydrogenase 0.00741335995176 0.00734301281587 -28400002015.2 +UniRef50_P0AA45 Ribosomal small subunit pseudouridine synthase A 0.00656397842415 0.00109868773183 -2.20640491915e+12 +UniRef50_UPI000255C349 acetolactate synthase large subunit, biosynthetic type 4.30534744141e-06 1.50541746648e-05 4339433453.03 +UniRef50_V9VYZ6 0.00340849217295 0.00168722795394 -6.94895487502e+11 +UniRef50_UPI0003626A85 hypothetical protein 2.68570898279e-05 1.94718317402e-05 -2981519317.31 +UniRef50_UPI0003B4A90A ABC transporter permease 7.90656112397e-05 6.90202662406e-05 -4055429046.38 +UniRef50_W6RWI6 Accessory gene regulator A 0.000310688641281 0.00139499873323 4.37749290101e+11 +UniRef50_Q6GCF0 0.0143803548941 0.00135450576654 -5.25869513796e+12 +UniRef50_Q3IWP7 Transcriptionalregulator, CopG family 0.000795254564388 0.00167160399168 3.53793017815e+11 +UniRef50_UPI00046423A0 cytochrome C peroxidase 6.14593576839e-06 5.79683765031e-05 20921355257.5 +UniRef50_UPI00035E30BB hypothetical protein, partial 1.62725133144e-06 0.000151848534125 60646175286.4 +UniRef50_D8JHX6 HAD superfamily hydrolase 0.000849202608176 0.00492110311384 1.64387620197e+12 +UniRef50_R9YPY8 5 formyltetrahydrofolate cyclo ligase 0.00888531742269 0.00272502592665 -2.48698527223e+12 +UniRef50_UPI00047AFA4E phosphoadenosine phosphosulfate reductase 9.51370248088e-05 4.50406777512e-05 -20224510058.5 +UniRef50_UPI0003783983 hypothetical protein, partial 0.00149800726181 0.000596716908635 -3.63861975653e+11 +UniRef50_Q8D7Y9 Putative phosphoenolpyruvate synthase regulatory protein 2.40515221541e-05 3.36287931878e-05 3866461842.64 +UniRef50_Q3J212 Putative site specific recombinase 0.0124805215646 0.00227530356911 -4.11997173689e+12 +UniRef50_E0XYI3 8.28471921266e-05 8.76973032016e-05 1958049358.53 +UniRef50_W8RQU9 NAD dependent epimerase dehydratase 0.00240651310919 0.000414480153221 -8.04208149318e+11 +UniRef50_E9AHU1 Putative proteophosphoglycan ppg3 5.38380646231e-05 0.000253598347206 80645677413.1 +UniRef50_UPI0003B65B0E hypothetical protein 0.000273272186874 9.16829402051e-05 -73309807230.9 +UniRef50_UPI000379B86A DNA glycosylase 0.000135124853812 5.5579394333e-05 -32113478124.2 +UniRef50_UPI00047102D6 hypothetical protein, partial 1.09581281357e-05 7.55361424701e-06 -1374444034.95 +UniRef50_UPI0003FB549E hypothetical protein 2.07900101879e-05 6.81847792411e-05 19133849866.0 +UniRef50_D2NAU9 0.00330362446384 0.0010361989656 -9.15387498079e+11 +UniRef50_Q8CSJ5 0.00898705882384 0.000844944481866 -3.28707147483e+12 +UniRef50_B2A1L0 2.19092300153e-05 2.60860289061e-05 1686224967.3 +UniRef50_M2E1P6 0.00578117043215 0.00190368564859 -1.56538818921e+12 +UniRef50_C1DHE5 Glutamine tRNA ligase 4.65932100577e-06 2.1836635499e-05 6934692650.26 +UniRef50_UPI000349FB4B hypothetical protein 5.12862679603e-06 7.76288285823e-06 1063481498.27 +UniRef50_W8YH03 0.000148503291249 0.000170549703163 8900407029.58 +UniRef50_Q4WFT3 GMP synthase [glutamine hydrolyzing] 2.74020234713e-05 3.44541475935e-05 2847029047.43 +UniRef50_U6GVJ1 2.53489742296e-07 2.11887520512e-06 753079002.194 +UniRef50_Q9RRB6 S layer protein, putative 0.000309035540679 0.0430984142786 1.72745972812e+13 +UniRef50_F8DJB0 0.00473770014378 0.00425966617895 -1.92988177738e+11 +UniRef50_O67929 Cyclic pyranopterin monophosphate synthase 4.87570064408e-06 0.000164232784999 64334410485.4 +UniRef50_B8E1C0 Aspartate tRNA ligase 3.92084850654e-06 3.79200537625e-06 -52015552.7811 +UniRef50_UPI0001BF5F9C hypothetical protein SMAC_10519, partial 7.69795205211e-05 2.80075915917e-05 -19770568661.9 +UniRef50_UPI0004689482 ATPase 5.38689782115e-06 5.25482724182e-05 19039625660.0 +UniRef50_P0AEF6 Transcriptional regulatory protein DpiA 0.00795460004886 0.00104938647764 -2.7877194552e+12 +UniRef50_UPI00047CE7FB hypothetical protein 5.55983754963e-06 2.85299547789e-06 -1092785361.05 +UniRef50_UPI0003B7292B NADPH 7.5125552962e-06 3.61498331687e-05 11561220496.0 +UniRef50_UPI00036B1DE9 hypothetical protein 1.62014959467e-05 2.07508154981e-05 1836616129.33 +UniRef50_Q8EEW2 Beta hexosaminidase 4.93984915594e-06 2.68147756788e-05 8831176272.83 +UniRef50_A0A023RVE4 Pseudouridine synthase 0.000181774954504 0.00582748975575 2.27924434598e+12 +UniRef50_R5AKD9 3.73609548616e-06 6.18462798639e-06 988502617.215 +UniRef50_UPI000301EB97 hypothetical protein 3.73669893678e-05 4.92656746437e-05 4803645259.17 +UniRef50_O27389 Diaminopimelate epimerase 0.00327128112704 1.09949399603e-05 -1.31621754193e+12 +UniRef50_Q3J219 0.00917279890428 0.0117821220607 1.05341577824e+12 +UniRef50_Q2NTI7 Zinc import ATP binding protein ZnuC 3.94086584827e-05 9.96151373797e-06 -11888173690.5 +UniRef50_UPI00036763CC hypothetical protein 0.000389532424231 0.000141565132136 -1.0010743872e+11 +UniRef50_UPI0003825772 30S ribosomal protein S3, partial 0.000661850742575 0.00231739106474 6.68361943824e+11 +UniRef50_Q5HQ24 Glutamate racemase 0.0120358582851 0.0026952915443 -3.7709014149e+12 +UniRef50_I6TZB4 Bifunctional biotin [acetyl CoA carboxylase] synthetase biotin operon repressor 0.00695937004861 0.00372892728292 -1.3041693865e+12 +UniRef50_Q6FDU5 0.000147840465605 0.00875799678865 3.47602576611e+12 +UniRef50_UPI00035CC932 hypothetical protein 0.000556201652412 9.03625637947e-05 -1.88064956563e+11 +UniRef50_D5ALJ9 0.00389286109336 0.000451924523232 -1.3891483184e+12 +UniRef50_D5ALJ7 0.000897977843215 0.000117522195184 -3.15079522378e+11 +UniRef50_Q04945 NADH dependent butanol dehydrogenase B 0.000300657964137 0.000560228426439 1.04791780919e+11 +UniRef50_P15259 Phosphoglycerate mutase 2 6.79648735669e-06 1.0549584957e-05 1515171556.93 +UniRef50_UPI00047BB10D branched chain amino acid ABC transporter ATP binding protein 7.29621829493e-06 6.30157142243e-05 22494644261.8 +UniRef50_Q9RSI5 0.000540049443584 0.0726578826685 2.91148542582e+13 +UniRef50_P17410 HTH type transcriptional regulator ChbR 0.00131271512007 0.000456465532064 -3.45678466042e+11 +UniRef50_C5NTZ6 Reaction center 0.00145637926656 0.00051794170825 -3.78858758214e+11 +UniRef50_Q8CPT4 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 0.0109053691337 0.00265226926027 -3.33187769583e+12 +UniRef50_UPI000370920E hypothetical protein 5.13427303554e-05 4.83911296476e-05 -1191597425.95 +UniRef50_Q8EM59 Thymidine kinase 0.0181811676006 4.22128983982e-05 -7.32291860328e+12 +UniRef50_C5FB81 APC family amino acid polyamine organocation transporter 0.0206801559155 0.00409173673634 -6.69694838544e+12 +UniRef50_Q9RUP8 Isoleucine tRNA ligase 3.50064286395e-05 0.0244647270947 9.86257801929e+12 +UniRef50_UPI0003F80A61 thioredoxin 6.65319215028e-05 0.000223040135141 63184286417.4 +UniRef50_Q5HPR5 DNA translocase FtsK 0.0165738678715 0.0045214202804 -4.86572099269e+12 +UniRef50_N6VGJ5 Thiamin phosphate synthase 4.01053256054e-05 3.85528087616e-05 -626770101.366 +UniRef50_G7U546 TENA THI 4 family protein 0.000160632335681 0.00807202310559 3.19392553749e+12 +UniRef50_A1SGH4 Cell envelope related transcriptional attenuator 5.16184758638e-06 4.11324039319e-05 14521755005.0 +UniRef50_Q3A5S0 Malate dehydrogenase 5.60644806432e-05 1.64495190045e-05 -15993046143.8 +UniRef50_M9KL10 Outer membrane autotransporter barrel domain protein 0.000816261896091 0.000323762748526 -1.98827949516e+11 +UniRef50_E2CRM4 0.000104665849264 5.60318320821e-05 -19634149542.8 +UniRef50_Q8CN54 Antiholin like protein LrgA 0.0206835770519 0.0049334672803 -6.35851259038e+12 +UniRef50_T0TSZ1 0.00576308851901 0.00286756274229 -1.16895928816e+12 +UniRef50_Q95YF6 Molluscan shell protein 1 9.99022283468e-06 7.85149612036e-06 -863430219.699 +UniRef50_B9XKZ0 Putative GAF sensor protein 8.80463329241e-06 0.000790367397433 3.15526478737e+11 +UniRef50_UPI00036B80A8 hypothetical protein 7.98156911501e-05 5.4424926186e-05 -10250563395.7 +UniRef50_M9RTF7 Methionine biosynthesis protein 0.000414819767969 0.00224543806803 7.39043071947e+11 +UniRef50_K2BFX5 1.0844384873e-05 1.83190639973e-05 3017619687.11 +UniRef50_Q98K42 Mll1647 protein 3.22950934952e-06 2.79133489141e-06 -176896405.744 +UniRef50_Q2SMN3 Protein RnfH 1.97981141273e-05 3.10034306319e-05 4523723777.6 +UniRef50_UPI0004652B27 NAD synthetase 3.80855132462e-06 0.000129381877545 50695492753.0 +UniRef50_Q9ZJI6 Ribonuclease J 1.85416023437e-05 0.00302422167414 1.21342992883e+12 +UniRef50_UPI00046A5D50 hypothetical protein 6.75618749799e-05 2.45372467597e-06 -26284959244.5 +UniRef50_Q1QWQ5 6 phosphogluconate dehydrogenase, NAD binding protein 0.000243539347646 0.00772318046895 3.01962290619e+12 +UniRef50_UPI0003C48D73 PREDICTED 0.000212362489 0.000112722052039 -40226067126.8 +UniRef50_F0KC60 0.000521870030673 0.00378854069662 1.3187950344e+12 +UniRef50_D5WZP9 Cytochrome c oxidase, cbb3 type, subunit II 0.00234857297039 0.00158632839779 -3.07727487751e+11 +UniRef50_UPI00026C64ED S ribosylhomocysteinase 2.49425519051e-05 0.00065140565094 2.52910840647e+11 +UniRef50_D8JKE4 PHA synthase PhaC 0.00010673496386 0.00605334677859 2.40072016274e+12 +UniRef50_C6KU66 Plasmid partitioning protein ParA 0.000163664872663 4.52589525592e-05 -47801922950.0 +UniRef50_U3SUV7 0.00223750198164 0.00242186727053 74430529541.4 +UniRef50_UPI000287B527 sugar ABC transporter permease 4.8991578337e-05 3.56728838022e-05 -5376920422.46 +UniRef50_UPI00036C10C9 hypothetical protein 1.05726964858e-05 2.9541374656e-05 7657888149.17 +UniRef50_U5UN27 0.0175479213927 0.0026163435327 -6.02806121315e+12 +UniRef50_UPI00035FF879 hypothetical protein 2.73148004037e-05 5.61424637207e-05 11638081436.3 +UniRef50_UPI000467CF8F hypothetical protein, partial 0.000352790643786 0.00025108100091 -41061430946.7 +UniRef50_P18789 Citrate synthase 0.00222091341502 0.000399707980111 -7.35242982777e+11 +UniRef50_UPI00047BD49C riboflavin biosynthesis protein RibF 1.01807692948e-05 4.99445097867e-05 16053109992.5 +UniRef50_UPI0003A806BB molybdopterin biosynthesis protein MoeA 5.15139652815e-06 8.35858037128e-06 1294779474.04 +UniRef50_B9L170 NADH quinone oxidoreductase subunit B 1.26591718892e-05 7.59961378345e-05 25569910384.1 +UniRef50_Q2NFJ8 Diphthine synthase 0.00240542829535 0.000218753114953 -8.82787603849e+11 +UniRef50_N8Y2G0 2.98737999521e-05 4.12469972382e-05 4591499309.22 +UniRef50_UPI00016A848B hypothetical protein 0.000100398111918 0.000155395618397 22203168260.9 +UniRef50_B7V093 Type 4 fimbrial biogenesis protein FimU 0.00272759203791 0.0034072967789 2.74405144853e+11 +UniRef50_G7M1Q4 Tetratricopeptide TPR_1 repeat containing protein 0.000377589602626 0.00218278521433 7.28779620685e+11 +UniRef50_G2JI43 0.000347280920311 0.00980972608657 3.82010523088e+12 +UniRef50_UPI000371FB82 hypothetical protein 6.95343756007e-06 3.0959939695e-05 9691719504.77 +UniRef50_P19932 Hydrogenase 1 operon protein HyaF 0.004623551002 0.000634169705113 -1.61056218477e+12 +UniRef50_UPI0001B465BD 30S ribosomal protein S4 6.59605504469e-05 0.000102565381989 14777819685.3 +UniRef50_Q9EYV5 HTH type transcriptional regulator GadX 0.00265356823976 0.00185253480907 -3.23387025755e+11 +UniRef50_UPI0003B44F9E riboflavin synthase subunit alpha 2.01601960566e-05 5.03666374636e-05 12194711070.7 +UniRef50_UPI000372D2DC glycerophosphoryl diester phosphodiesterase, partial 6.39187074317e-05 0.00306837343516 1.21293524239e+12 +UniRef50_Q03UB1 Ribosomal RNA large subunit methyltransferase H 0.0246210129221 0.000387724339418 -9.78327597673e+12 +UniRef50_H2K9T8 Putative endoribonuclease 9.90411277046e-05 4.94005511401e-05 -20040509917.5 +UniRef50_W9CAE9 7.07329367242e-06 9.09822041451e-07 -2488269131.72 +UniRef50_UPI0003B586D4 30S ribosomal protein S4 5.04087569036e-05 2.00285376673e-05 -12264867312.9 +UniRef50_Q92YJ8 Transposase 0.000128919947333 6.17821340988e-05 -27104359076.3 +UniRef50_A5UKC6 2 methylcitrate dehydratase, MmgE PrpD family 0.00326214061127 0.000953964306426 -9.31839098772e+11 +UniRef50_D8LYP9 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 8.59055515975e-06 1.6055249267e-05 3013588613.19 +UniRef50_Q8VQK4 Putative peptide transport system permease protein BruAb2_1031 0.0130890705342 0.00603962689067 -2.84594690529e+12 +UniRef50_A3PYA8 Thymidylate synthase 4.58130590285e-05 0.000404868843515 1.44955226307e+11 +UniRef50_UPI000465565E hypothetical protein 3.07993047359e-06 5.3482677945e-06 915755612.08 +UniRef50_P77601 Putative HTH type transcriptional regulator YkgA 0.00175264465717 0.000209197193767 -6.23108681205e+11 +UniRef50_F0XZT5 0.000156719891042 0.00023980947923 33544286375.4 +UniRef50_B9KPM1 0.00443609552488 0.000863668923696 -1.4422324575e+12 +UniRef50_B7KZF3 Chromosomal replication initiator DnaA 4.20780829996e-05 8.65395068237e-06 -13493732376.7 +UniRef50_UPI0003654BED hypothetical protein 0.000861184765437 0.00233144767259 5.93563177771e+11 +UniRef50_UPI0003C168CC 0.00755942575005 0.002599301453 -2.00246304629e+12 +UniRef50_B7MHP0 Nicotinate phosphoribosyltransferase 0.00421906395373 0.00113241162811 -1.24611942134e+12 +UniRef50_Q8CTY4 Thiamine biosynthesis lipoprotein 0.0123798995103 0.00405799403767 -3.35965536056e+12 +UniRef50_P31052 Dihydrolipoyl dehydrogenase 5.87879406525e-05 0.00293743798267 1.16214634697e+12 +UniRef50_G2L441 0.00125442431332 0.00108431802925 -68673994317.9 +UniRef50_UPI000364F2DB hypothetical protein 3.60606889338e-06 5.69391706815e-06 842889928.933 +UniRef50_UPI000440C4B4 PREDICTED 5.3815168067e-05 4.89023447294e-05 -1983367068.51 +UniRef50_Q9T1A3 Gp20 2.20380898819e-06 0.00104433173336 4.20719831416e+11 +UniRef50_P0ADH8 Type 1 fimbriae regulatory protein FimE 0.00314116185779 0.00117065561492 -7.95517551077e+11 +UniRef50_UPI00036912E2 MULTISPECIES 9.09609556206e-06 1.49206393552e-05 2351439804.48 +UniRef50_Q3JPQ2 7.06093077602e-05 2.84298778006e-05 -17028353474.5 +UniRef50_B8J4Q3 Chorismate synthase 6.52897233765e-06 2.61943578364e-05 7939157447.24 +UniRef50_E2ZXQ0 0.00570549823148 0.00151776906689 -1.69063765296e+12 +UniRef50_D6AIG0 0.000185363632772 0.000313869359638 51879338878.4 +UniRef50_B9KLD6 0.010065908473 0.0104467498091 1.53750320832e+11 +UniRef50_UPI0002490D5A PTS system mannitol specific transporter subunit IIBC 2.91818711922e-06 3.73812777292e-06 331020103.702 +UniRef50_M4QYT8 Nitrite reductase small subunit 0.000261747691018 0.00817715734618 3.19554801079e+12 +UniRef50_UPI000375EB87 hypothetical protein 8.6938602064e-06 0.000102542905134 37888011094.6 +UniRef50_K0R863 1.86483217285e-05 0.000169369794267 60848108024.0 +UniRef50_UPI00030AEBF5 hypothetical protein 6.8084257852e-06 8.29258906573e-06 599174929.081 +UniRef50_Q9K0X8 Cell division protein FtsA 0.000453431406057 0.00362450602716 1.280201738e+12 +UniRef50_A5UJ54 Archaeal glutamate synthase [NADPH] 0.00481670550646 0.00113719614584 -1.48546308154e+12 +UniRef50_UPI00034AC849 chemotaxis protein CheY 0.00020624046293 7.34912653978e-05 -53592480059.5 +UniRef50_G8VL08 ATP dependent helicase HrpA 3.16771459154e-05 0.00463567319272 1.85868970148e+12 +UniRef50_I3VWE8 Aspartokinase 9.72066924068e-05 0.000994575508137 3.62278802864e+11 +UniRef50_P39788 Endonuclease III 0.0158282436485 0.00346553232377 -4.99097826931e+12 +UniRef50_A0A024BWT3 RloF 5.5731199147e-05 0.00239367583499 9.43856939296e+11 +UniRef50_C6E8N4 NADH quinone oxidoreductase subunit B 2.63337847047e-05 0.000209246575244 73844138132.9 +UniRef50_P10539 Aspartate semialdehyde dehydrogenase 0.00402089602317 0.00693533391708 1.17659434195e+12 +UniRef50_UPI0003B603D1 hypothetical protein 0.000285450383061 0.00180932027065 6.15204973606e+11 +UniRef50_G8S8P0 9.31972409779e-06 0.000136466663647 51330779764.3 +UniRef50_Q0FH14 0.000161384635152 0.000374756265278 86140745446.2 +UniRef50_P00807 Beta lactamase 0.102501676762 0.028327574333 -2.99449953692e+13 +UniRef50_Q8DV98 Folate transporter FolT 0.00493461448616 0.000315846743525 -1.86465321635e+12 +UniRef50_UPI0003B62A81 shikimate kinase 2.57752604557e-05 1.1320779726e-05 -5835451247.0 +UniRef50_Q8R5Z9 Ribosome recycling factor 0.0145292077251 0.0034608971308 -4.46841281036e+12 +UniRef50_F4A5J4 Conserved protein 0.000387828070733 0.00144360590284 4.26230466674e+11 +UniRef50_UPI000237B476 gluconate transporter 1.12444160691e-05 0.000508674197191 2.00818506789e+11 +UniRef50_Q8NE62 Choline dehydrogenase, mitochondrial 3.28646532299e-05 3.28228848557e-05 -16862405.2201 +UniRef50_I9RNM3 Putative sialic acid transporter 0.000808898547544 0.000732190178178 -30968110030.6 +UniRef50_Q3J5X4 Integrase recombinase 0.000991021496235 0.000345338695843 -2.60670069937e+11 +UniRef50_Q9I0N3 Sulfurtransferase TusD homolog 0.0005844809031 0.000241752096681 -1.38363824907e+11 +UniRef50_A0A023S183 Alkaline phosphatase 0.000347891660406 0.0093843325715 3.64812208541e+12 +UniRef50_U3THX2 1.24177506608e-05 1.83643120213e-05 2400699793.75 +UniRef50_Q9RXZ8 6,7 dimethyl 8 ribityllumazine synthase 0.000496692090597 0.0607495078745 2.43248011172e+13 +UniRef50_Q8ZLS1 Arabinose 5 phosphate isomerase KdsD 0.00395503130548 0.00412438915069 68371840365.7 +UniRef50_Q2FDM1 Immunodominant staphylococcal antigen B 0.00889561788196 0.00215882478258 -2.71972604397e+12 +UniRef50_F2MNQ3 Serine protease HtrA 9.67086222522e-05 0.000150161036537 21579395581.7 +UniRef50_P43899 Oxygen independent coproporphyrinogen III oxidase like protein HI_0463 0.00163104731946 0.00029276616629 -5.40280524091e+11 +UniRef50_X7YGE5 Putative groESL operon 3.43701058306e-05 3.97104870601e-05 2155977436.2 +UniRef50_A6M1G9 Nucleotidyl transferase 0.000681890905573 0.00130931458991 2.53298640721e+11 +UniRef50_D6Z602 Glutamine synthetase catalytic region 0.000281409298616 0.00184535219805 6.31382940237e+11 +UniRef50_P94951 F420 dependent methylenetetrahydromethanopterin dehydrogenase 0.00193001132254 0.00210194792202 69412915109.4 +UniRef50_P60239 F420 non reducing hydrogenase subunit G 0.00487452667429 0.00118733484636 -1.48856458787e+12 +UniRef50_L0I338 3.46912113766e-05 4.02368333017e-05 2238835623.6 +UniRef50_F7XZJ7 Protein tyrosine phosphatase, low molecular weight 0.000139073871712 7.38801940789e-05 -26319487676.9 +UniRef50_T1YAK1 Phage protein 0.0175431042568 0.00571816327957 -4.77387378084e+12 +UniRef50_UPI0003C147A2 PREDICTED 1.96086183616e-05 3.63004797542e-05 6738709276.37 +UniRef50_G0J3B6 7.34052346268e-05 2.11951856436e-05 -21077837463.9 +UniRef50_UPI0003709308 hypothetical protein 1.50430636184e-05 0.000313749691026 1.20591531027e+11 +UniRef50_Q130Q6 ABC 1 0.0026150508056 0.000399000555285 -8.94646680049e+11 +UniRef50_UPI000469E31A hypothetical protein 1.70418110476e-05 7.01293884305e-06 -4048778777.06 +UniRef50_UPI000465AB9E hypothetical protein 3.27439279221e-06 0.000117938344292 46291244305.5 +UniRef50_K7SNW6 Glycosyl hydrolase family 38 N terminal domain containing protein 0.000118295104499 0.00655748346042 2.59957935701e+12 +UniRef50_J7TWG6 2.22677810314e-05 3.074530538e-05 3422480610.45 +UniRef50_P42616 Protein YqjC 0.000618829489919 0.000482806602495 -54914108841.6 +UniRef50_Q2GAZ8 RepB plasmid partition 1.65891802706e-06 1.156457578e-05 3999035590.95 +UniRef50_UPI0004732E2B hypothetical protein, partial 2.73338773828e-05 5.15180398155e-05 9763443147.13 +UniRef50_P0C7L3 Beta ketoadipyl CoA thiolase 0.00369358535636 0.0093166848571 2.27011427164e+12 +UniRef50_UPI00047DA36E ABC transporter 5.74714230356e-06 2.71835069651e-05 8654123467.62 +UniRef50_M4TFL9 Protein lysine acetyltransferase 0.00100885838738 0.000216853567385 -3.19742064824e+11 +UniRef50_P0AAJ2 Probable anaerobic dimethyl sulfoxide reductase chain YnfG 0.00197301405907 0.00516579151241 1.2889634377e+12 +UniRef50_Q8DVZ6 0.00640108500624 0.000957994940746 -2.19744225366e+12 +UniRef50_Q8DVZ9 0.00495608210887 0.00153672003803 -1.38043842829e+12 +UniRef50_UPI00037681FA hypothetical protein 6.22630863182e-06 3.16249790353e-05 10253754918.6 +UniRef50_A0RAK2 Response regulator 1.0828949267e-05 0.000913236117288 3.64312847511e+11 +UniRef50_G7ZT64 0.00541079493579 0.00126564302227 -1.67344869422e+12 +UniRef50_S5YZN5 ABC type dipeptide oligopeptide nickel transport system, permease component 0.0148806638082 0.00540066661484 -3.82719119961e+12 +UniRef50_P37908 UPF0053 inner membrane protein YfjD 0.00384590173769 0.00108780982391 -1.11347555119e+12 +UniRef50_I6GY98 Glutamate cysteine ligase 0.00241896565632 0.000489475201976 -7.78958973928e+11 +UniRef50_UPI00016C54E0 DNA gyrase subunit B 3.49114885955e-06 2.56152267399e-06 -375301498.907 +UniRef50_A4EM47 5.6867281047e-05 1.6202046984e-05 -16417054009.8 +UniRef50_UPI0002B93C15 Phosphopentomutase 1.32757501235e-05 0.00535068583835 2.15477795001e+12 +UniRef50_P42850 Phosphoenolpyruvate synthase 0.00429598708066 0.000924817078377 -1.36098269883e+12 +UniRef50_UPI0004708FDA hypothetical protein 1.28283872465e-05 7.8547950318e-05 26531794081.7 +UniRef50_A5F2P1 3 ketoacyl CoA thiolase 0.0033442960674 0.00135424063583 -8.03409798451e+11 +UniRef50_O32799 Formate acetyltransferase 0.00794172162724 0.00845293759278 2.06384158614e+11 +UniRef50_Q3B6F6 30S ribosomal protein S3 0.0140764052354 0.00280998095854 -4.54839373516e+12 +UniRef50_UPI00037BC05D hypothetical protein 0.000181110605545 0.000223659999387 17177712433.8 +UniRef50_O62585 Serine hydroxymethyltransferase, cytosolic 0.000153419467809 1.84164934022e-05 -54502357440.9 +UniRef50_UPI000470E9D6 hypothetical protein 6.61476892278e-05 8.90790035906e-05 9257653007.13 +UniRef50_UPI00036E5905 citrate lyase 5.37119379778e-05 3.1643787579e-05 -8909183122.65 +UniRef50_I3BSR5 PEGA domain protein 0.00022098982414 0.000104477905751 -47037291215.7 +UniRef50_UPI0003052E4A NADH dehydrogenase 8.09477023054e-05 2.23365309027e-06 -31777827598.1 +UniRef50_UPI00026C85FF hydrolase 1.01290901078e-05 1.54208861798e-05 2136363011.91 +UniRef50_C6E3K3 Type VI secretion protein, VC_A0107 family 2.65286644472e-05 0.00282384368926 1.12931040243e+12 +UniRef50_R7PUK9 0.00209595990194 0.00130832742417 -3.17976896613e+11 +UniRef50_W5GWD8 2.01710908006e-06 8.72038892496e-05 34390948513.8 +UniRef50_P0A0Q0 Lactose phosphotransferase system repressor 0.0296725879276 0.00637571913196 -9.40523181751e+12 +UniRef50_E0XR78 0.000152758251627 0.00039153826786 96398422713.6 +UniRef50_C5BEL3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.000364649394362 0.00801595650912 3.08892657433e+12 +UniRef50_UPI000472566B thioredoxin 0.000225318294392 0.000162144044217 -25504220030.9 +UniRef50_G6EQ26 SSU ribosomal protein S1P 0.000255751466193 0.000336223952777 32487730342.4 +UniRef50_UPI00037152ED hypothetical protein 0.00014842175184 1.85824670311e-05 -52417712584.6 +UniRef50_O94582 Probable anthranilate synthase component 1 4.69296551659e-06 9.84202665585e-06 2078739168.0 +UniRef50_B5F446 Aspartate carbamoyltransferase 0.00311883481071 0.000579767092999 -1.0250527955e+12 +UniRef50_UPI00029B4277 thioredoxin 0.000217578914368 0.00040980129227 77602532792.9 +UniRef50_K5ZH15 UPF0301 protein MXAZACID_13641 2.04465105461e-05 2.10445618093e-05 241440633.868 +UniRef50_M1XK11 SCCmec staphylococcal cassette region, isolate CMFT201 0.0127964315765 0.00313176015763 -3.90174645065e+12 +UniRef50_I6TNE5 Bacteriophage replication gene A protein 0.00281969764367 0.000688893931136 -8.6023160665e+11 +UniRef50_D6SDW7 Acetate CoA transferase YdiF 0.00958690106789 0.00230253497896 -2.94078797932e+12 +UniRef50_Q099I3 0.000483867473179 0.000219339014355 -1.06793384956e+11 +UniRef50_UPI00047246F8 iron ABC transporter permease, partial 7.08734726629e-05 0.000144668964775 29792145738.2 +UniRef50_I6AH85 7.15558111459e-05 7.38000693882e-05 906034592.562 +UniRef50_F4SFU3 Biofilm PGA synthesis lipoprotein PgaB 0.00271030397137 0.000938098251204 -7.15461196642e+11 +UniRef50_UPI000472C820 hypothetical protein 0.000199129335207 7.94403775618e-06 -77183850688.4 +UniRef50_A9KK69 S adenosylmethionine 0.0278706521612 0.013923514546 -5.63063060588e+12 +UniRef50_UPI00037911F9 hypothetical protein 2.11982500283e-05 3.99978643647e-05 7589635004.82 +UniRef50_UPI00046CDCC8 hypothetical protein 1.86702578131e-05 0.000121293174926 41430130963.3 +UniRef50_A5UP74 0.00320821828892 0.000984389017326 -8.97787166395e+11 +UniRef50_A5UP75 0.00160033319966 0.00074138084986 -3.46769604145e+11 +UniRef50_Q65GF0 UvrABC system protein C 0.0120859076437 0.00314018593494 -3.61149763018e+12 +UniRef50_P22302 Superoxide dismutase [Fe], chloroplastic 1.4607146211e-05 2.98060467247e-05 6135982648.86 +UniRef50_Q3IVJ7 Acyltransferase 3 family 0.0216808898201 0.00506373739392 -6.70854834985e+12 +UniRef50_U2YI39 6.23998451132e-06 1.99847488032e-05 5548930011.86 +UniRef50_UPI000463E2C6 3 hydroxyacyl CoA dehydrogenase 2.43437591949e-05 0.000109754059209 34481186217.9 +UniRef50_B4SQ46 Drug resistance transporter, EmrB QacA subfamily 0.000290444278819 0.000403920040058 45811557316.4 +UniRef50_A4SM42 ATP dependent Clp protease proteolytic subunit 9.65497294531e-06 0.0348118349094 1.40500671111e+13 +UniRef50_P0AEB4 D alanyl D alanine carboxypeptidase DacA 0.00410086368159 0.000790536240849 -1.33641981011e+12 +UniRef50_UPI0002654FEE PREDICTED 2.6122395231e-06 1.19247297935e-06 -573177176.207 +UniRef50_UPI0002492D9C regulator 1.15166188072e-05 1.83684002026e-05 2766148230.14 +UniRef50_S6STB0 0.00018398263857 0.000192788632095 3555087647.73 +UniRef50_Q9RS20 Multidrug efflux transporter, putative 0.000105344927117 0.0297599625943 1.19719330553e+13 +UniRef50_Q03SL6 Triosephosphate isomerase 6.76417904436e-06 8.74143593508e-06 798242870.454 +UniRef50_UPI0001AF23F3 oxidoreductase 4.51576684926e-05 6.06935958434e-05 6272044518.79 +UniRef50_E3J6Y9 FAD dependent oxidoreductase 2.31160718526e-05 0.00201848396478 8.05554504293e+11 +UniRef50_UPI00036FA050 hypothetical protein 3.08527973052e-05 3.09447094861e-05 37106075.3186 +UniRef50_Q819W8 Ribosome biogenesis GTPase A 0.0105531393838 0.00264960406034 -3.19075419737e+12 +UniRef50_UPI0004627B5D PREDICTED 1.23761333514e-05 1.59944031344e-06 -4350683224.34 +UniRef50_UPI00027F40A7 2.01153616948e-05 2.82520917813e-05 3284897784.83 +UniRef50_W6IDM0 1.33796161898e-05 2.50783935776e-05 4722939991.6 +UniRef50_UPI00037E7F9C hypothetical protein 1.21981320794e-05 0.00016230741457 60600959389.7 +UniRef50_R7QKG6 Stackhouse genomic scaffold, scaffold_401 9.3118644522e-05 1.34900196536e-05 -32147053012.5 +UniRef50_E2X9Y8 PTS system, glucitol sorbitol specific, IIBC component 0.00184714325271 0.00043858916614 -5.68650569651e+11 +UniRef50_UPI0001B43C25 hypothetical protein, partial 4.18541271383e-06 5.07846639359e-05 18812689555.5 +UniRef50_Q11MY4 Aminotransferase 0.0142507184221 0.00290683038137 -4.57966680719e+12 +UniRef50_U3AS30 ABC transporter, binding protein 0.000249261929303 0.000112642222547 -55155052129.7 +UniRef50_UPI0003728AAF MULTISPECIES 2.96369305819e-05 0.000235975692393 83301490204.4 +UniRef50_UPI00026C7EA0 2 isopropylmalate synthase 7.46223861463e-06 8.6531817131e-06 480798343.368 +UniRef50_Q42684 Superoxide dismutase [Mn], mitochondrial 2.1580622728e-05 4.13000335078e-05 7960968116.19 +UniRef50_A8IJ48 3.54266653204e-05 4.98588474293e-05 5826449020.15 +UniRef50_Q46L27 Phosphate import ATP binding protein PstB 6.5104145904e-06 0.000175818415791 68351717727.7 +UniRef50_UPI00046E069E 4.3413374199e-06 1.41878445524e-05 3975155759.62 +UniRef50_UPI000407DFAC peptide ABC transporter substrate binding protein 5.51072527108e-06 6.26674117959e-05 23074855741.5 +UniRef50_R4ZTZ8 Erythrocyte binding protein 2 0.000273472269865 0.000319718833157 18670305110.1 +UniRef50_T1Y7X3 Transporter, Na+ H+ antiporter family 0.0185084340919 0.00453325395178 -5.6419517173e+12 +UniRef50_UPI0003A7157D ABC transporter permease 1.02311079687e-05 3.07230528648e-05 8272849619.0 +UniRef50_E3A6F2 Transcriptional activator GpuR 0.000820798087286 0.000193227942332 -2.5335776867e+11 +UniRef50_A0LFA0 6.73540704719e-06 2.24708484529e-05 6352590791.06 +UniRef50_C7LI26 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.0162586243932 0.00238096050565 -5.60258320951e+12 +UniRef50_UPI0003723D7C hypothetical protein, partial 4.19745693656e-06 7.3848658401e-06 1286796088.26 +UniRef50_F6W1A6 9.93113908368e-05 1.55954769671e-05 -33797141739.0 +UniRef50_A8LAA1 4 hydroxy 2 oxovalerate aldolase 1 0.00241490059438 0.000935364612715 -5.97306831744e+11 +UniRef50_Q8XAZ3 UPF0187 protein YneE 0.00473273665689 0.000370690424931 -1.76101159217e+12 +UniRef50_H3Y3Z6 PHP domain protein 0.00531545422838 0.00255532970109 -1.1142961422e+12 +UniRef50_C1DF31 Transcriptional regulator, AraC family 0.000225140748821 0.00135715149946 4.57006631367e+11 +UniRef50_Q8RA66 Tyrosine recombinase XerC 0.000312780025754 0.00121800405472 3.65450048842e+11 +UniRef50_A3ML41 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000135603912432 1.01775067106e-05 -50636179144.6 +UniRef50_Q1R1I5 Putative Holliday junction resolvase 3.24376286752e-05 2.12626985509e-05 -4511456422.99 +UniRef50_Q8CMP4 Serine aspartate repeat containing protein F 0.00529191827539 0.00169399836678 -1.45252441855e+12 +UniRef50_R4NU59 Histone acetyltransferase HPA2 related acetyltransferase 0.00648936429777 0.00873935777529 9.083499774e+11 +UniRef50_R5NQY2 Beta eliminating lyase 0.0102350310094 0.000448251524079 -3.95104297551e+12 +UniRef50_Q1C5I4 Nucleoside diphosphate kinase 9.6558670322e-05 5.31675453118e-05 -17517529635.6 +UniRef50_O67222 S adenosylmethionine synthase 7.82146020438e-06 0.000159770529035 61343703711.8 +UniRef50_M2E237 Putative reductase 0.00225849975745 0.00540031689511 1.26839013291e+12 +UniRef50_UPI0004696E1B molecular chaperone Hsp33 1.7519763698e-05 7.27686688908e-05 22304661006.6 +UniRef50_UPI00046741A1 hypothetical protein 3.23789107296e-05 1.43795020523e-05 -7266582160.61 +UniRef50_D4HBM2 Transcriptional regulator, LacI family 0.000505051928669 0.00670151418206 2.50158785084e+12 +UniRef50_F5I475 Acyl CoA dehydrogenase, middle domain protein 0.00045597503883 0.000960110846725 2.03525812089e+11 +UniRef50_D0D906 Tripartite ATP independent periplasmic transporter, DctQ component 0.000264565644237 0.00011170115891 -61713268584.7 +UniRef50_E2ZSF7 SadB 0.00113206573251 0.000165135156678 -3.90361739036e+11 +UniRef50_UPI000473FA93 30S ribosomal protein S3, partial 6.37633558287e-05 5.21107161324e-05 -4704313639.37 +UniRef50_C2PG39 GCN5 related N acetyltransferase 0.00232472707909 0.00226593109452 -23736660478.8 +UniRef50_G8VGQ5 5.49901264563e-05 0.000453603013437 1.60924914004e+11 +UniRef50_F8I070 Peptidyl prolyl cis trans isomerase 0.0046313676088 0.00288491606854 -7.05063918173e+11 +UniRef50_W7QF52 0.000291038128384 2.96954258239e-05 -1.05507256059e+11 +UniRef50_E4BJ69 FeoA domain protein 0.000534899174486 0.000413030356916 -49199937151.6 +UniRef50_P52878 Phosphoserine aminotransferase 0.0107994251334 0.00260714616743 -3.30732354913e+12 +UniRef50_A6M011 ABC transporter permease protein 0.000419155801941 0.000732525124145 1.26511040848e+11 +UniRef50_A5I3R8 ABC transporter, permease protein 0.000677300004087 0.00221132219082 6.19303581352e+11 +UniRef50_P76245 Probable diguanylate cyclase YeaP 0.00258552020401 0.000728495356993 -7.49703718999e+11 +UniRef50_UPI0003A75D7C lipase 2.50838010997e-05 0.000414274290521 1.57120976484e+11 +UniRef50_A5CLH3 DivIVA protein 6.40097658514e-05 5.86854533105e-05 -2149490309.42 +UniRef50_UPI00016C35F3 probable MoxR related protein, partial 1.63667990468e-05 3.5861640914e-05 7870306890.4 +UniRef50_H2ZBA2 3.64402397862e-05 1.7097062531e-05 -7809078025.4 +UniRef50_Q67LZ8 Oligopeptide ABC transporter permease protein 0.0200220730776 0.00322574377258 -6.78088425457e+12 +UniRef50_C6M3G0 5.45130177362e-05 0.000228184152327 70113168218.9 +UniRef50_UPI000379FDE6 hypothetical protein 1.31838917467e-05 0.000217168844091 82351228438.1 +UniRef50_R6GQC1 Peptidase U32 0.000303315416172 0.00103077529447 2.93684479805e+11 +UniRef50_Q9RSR0 0.000725635415725 0.0478264610751 1.90151813108e+13 +UniRef50_UPI0003690F47 hypothetical protein 3.50281872565e-06 5.94642660102e-06 986514485.728 +UniRef50_A0A024HX85 2.27171683016e-06 9.56540845528e-05 37699607780.1 +UniRef50_A1USI9 3 oxoacyl [acyl carrier protein] synthase 3 9.60672789174e-06 1.21458345034e-05 1025068497.47 +UniRef50_A5UMS9 0.00390043108272 0.000630775996969 -1.3199998813e+12 +UniRef50_UPI0004743442 acetolactate synthase catalytic subunit, partial 6.17095995254e-06 1.76978334197e-05 4653540269.35 +UniRef50_O83296 Protein Soj homolog 0.00101270063422 0.00200255947631 3.99618161486e+11 +UniRef50_UPI000364FA10 hypothetical protein 2.09354459098e-05 2.9676504215e-05 3528872502.66 +UniRef50_E1QW23 Uracil DNA glycosylase superfamily 0.000592873536577 0.00501556782803 1.78549595802e+12 +UniRef50_A0A037L527 SPP1 family phage portal protein 0.0153233286468 0.00218915881979 -5.30242553355e+12 +UniRef50_UPI0003717BEB diguanylate cyclase 1.51701410981e-05 0.000751846763722 2.97405392592e+11 +UniRef50_B2KEN0 DNA directed RNA polymerase subunit beta 2.19074428495e-06 1.60325037735e-06 -237178499.859 +UniRef50_O87406 UPF0070 protein NGO0425 0.000380631864954 0.00207708746081 6.848799419e+11 +UniRef50_UPI0003AB479F methionyl tRNA synthetase 5.95680277432e-06 1.65431351384e-05 4273832284.29 +UniRef50_UPI000477EBC3 hypothetical protein 1.28069517424e-06 7.10978894466e-05 28186058081.1 +UniRef50_A5UKA0 Glycosyltransferase 0.00336869882431 9.84389017397e-05 -1.32024406134e+12 +UniRef50_A5UML7 Predicted AAA ATPase 0.00592941334698 0.00176401169475 -1.68162376223e+12 +UniRef50_A6LY87 0.000796585139432 0.000802318214595 2314512796.05 +UniRef50_Q8ZCX2 Polyphosphate kinase 0.00185695074461 0.000909153532339 -3.82637365374e+11 +UniRef50_UPI0003A3B951 hypothetical protein 1.34677341485e-05 1.31991404009e-05 -108434591.922 +UniRef50_UPI00037C182A hypothetical protein 0.000443986543746 0.000148681050755 -1.19218451326e+11 +UniRef50_K7U2F6 0.00012312617878 0.000110673975553 -5027107248.46 +UniRef50_T0SXL1 ABC transporter multidrug efflux pump 0.000301252562416 0.006676560066 2.57378987302e+12 +UniRef50_Q1CTZ0 Cag pathogenicity island protein I 0.000201776209644 0.00385567261755 1.47512281822e+12 +UniRef50_Q2RBC8 Expressed protein 2.03410151446e-05 2.72081702395e-05 2772354781.28 +UniRef50_M4UIL6 0.000356366811101 3.87089306784e-06 -1.42306927721e+11 +UniRef50_E4TFB2 TRAP transporter solute receptor, TAXI family 4.18975193491e-05 6.68267792048e-06 -14216663619.4 +UniRef50_F2IFK9 8.97718626384e-06 0.00111670843146 4.47204697078e+11 +UniRef50_UPI0003B66E26 UTP glucose 1 phosphate uridylyltransferase 0.000321675054061 0.000182428739423 -56215445963.8 +UniRef50_UPI0003B6588F branched chain amino acid transporter AzlC 7.90817867144e-05 8.43243422897e-05 2116484019.14 +UniRef50_Q4L4U2 Protein NagD homolog 0.0245072680738 0.00813408333933 -6.61005559889e+12 +UniRef50_P0A5S1 PhoH like protein 0.000225282171962 0.00589994595937 2.29093140693e+12 +UniRef50_W0DM86 Diguanylate cyclase 5.87262608651e-06 4.69587752202e-05 16586982589.0 +UniRef50_UPI0004119C01 hypothetical protein 4.49190976723e-06 8.89548889252e-06 1777778930.87 +UniRef50_UPI000373DCE8 hypothetical protein 4.57531092745e-05 1.21266999831e-05 -13575394073.4 +UniRef50_Q9RRP2 0.000549824696826 0.0490250288986 1.95700347939e+13 +UniRef50_Q9RRP3 6.88035679961e-05 0.0188976746339 7.60144630553e+12 +UniRef50_Q6G7L8 Hydroxyethylthiazole kinase 0.0216696053158 0.00479405850925 -6.81286533203e+12 +UniRef50_UPI0000164CDA molybdenum cofactor biosynthesis protein A 6.64183622418e-06 0.00728499790573 2.93836166073e+12 +UniRef50_Q53158 Phosphoribosyl AMP cyclohydrolase 0.00602157660669 7.38695059412e-05 -2.40116234315e+12 +UniRef50_B0JMB5 4.64025679615e-05 1.15190478844e-05 -14082905124.1 +UniRef50_UPI00035E553A hypothetical protein 0.000355225785863 9.02705211259e-05 -1.06965691741e+11 +UniRef50_G7M109 Stage III sporulation protein AA 0.000616786062403 0.0023136470665 6.85043610181e+11 +UniRef50_R4M6A1 4.78940306974e-05 3.79727597145e-05 -4005338843.48 +UniRef50_UPI0003062627 hypothetical protein 1.56013015479e-05 0.000125503327335 44368796459.7 +UniRef50_Q54443 Dextranase 0.00636502958676 0.00147410609132 -1.97452583349e+12 +UniRef50_UPI000370DB0C hypothetical protein 0.000127131964001 0.000151381410495 9789799123.8 +UniRef50_W1VLC3 4.13812205054e-06 6.39569089466e-06 911408245.856 +UniRef50_S2WM30 5.25471219726e-06 7.36022955013e-05 27592758099.0 +UniRef50_UPI0003752BA6 hypothetical protein 1.65836881666e-05 8.96644626744e-06 -3075174028.76 +UniRef50_Q82GB8 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.6619669629e-05 2.5001580799e-05 3383880396.95 +UniRef50_V5ST11 Cytochrome P450 0.000355209670205 0.000410186170209 22194687689.1 +UniRef50_E6VVV5 AzlC family protein 3.92355001446e-05 1.48151023551e-05 -9858814259.6 +UniRef50_R7FQK3 Arabinose binding protein 0.000110916549126 0.00109959456792 3.99141448631e+11 +UniRef50_P0AG77 Nuclease SbcCD subunit D 0.00475697561798 0.000895991166097 -1.55872680283e+12 +UniRef50_UPI0003773D73 50S ribosomal protein L18 6.41597750388e-05 0.000419050838263 1.43273877227e+11 +UniRef50_M9VFV0 HAD hydrolase, family IIB 0.00138487519104 0.00459825239627 1.29727981032e+12 +UniRef50_E2ZT41 0.00102353394618 0.000359411811592 -2.68114255428e+11 +UniRef50_UPI0004447F97 PREDICTED 4.19717299651e-05 0.000126514195336 34130830722.9 +UniRef50_I2ZU82 0.000805327681322 0.000187869768109 -2.49275336625e+11 +UniRef50_P81177 Zinc metalloproteinase aureolysin 0.0118991657824 0.00291320102572 -3.62774424246e+12 +UniRef50_P0AF00 Molybdenum cofactor biosynthesis protein B 0.000570383430073 0.00049073586868 -32154697919.8 +UniRef50_Q4YEI4 0.0011023412729 0.00070055402375 -1.62206442966e+11 +UniRef50_C3KNV3 MFS permease 0.000193342617778 0.0059989497177 2.34379482905e+12 +UniRef50_M1LUI1 D galactose binding periplasmic protein MglB 0.000757341745591 0.00263511656833 7.58080738828e+11 +UniRef50_P52558 N5 carboxyaminoimidazole ribonucleotide mutase 8.70285250475e-05 0.00144379927242 5.47745000163e+11 +UniRef50_T2E9A2 Glycosyl transferases group 1 family protein 0.00070545005054 0.0016786414996 3.92889330388e+11 +UniRef50_UPI0003B71379 N acetyltransferase 3.38587003831e-05 4.38406772258e-05 4029846544.03 +UniRef50_UPI00036E1F30 hypothetical protein 1.00525607274e-05 1.06381602119e-05 236413698.006 +UniRef50_U5N662 1.3456992275e-05 4.51965079954e-05 12813631984.0 +UniRef50_D9TM82 Pyruvate flavodoxin ferredoxin oxidoreductase domain protein 8.11216308394e-05 0.000381521275695 1.21275022947e+11 +UniRef50_Q4L4Y4 0.011352481691 0.00296562740989 -3.38587599156e+12 +UniRef50_UPI00026CC3BE recombinase 5.70301565196e-05 1.20143851102e-05 -18173419323.6 +UniRef50_UPI00047918D8 isoleucine tRNA ligase 2.3540344863e-06 3.00742491096e-06 263781732.437 +UniRef50_W1E8W6 Serine transporter 1.03917892474e-05 1.17524803775e-05 549327706.779 +UniRef50_M9VGG3 0.00448744156641 0.00407282855699 -1.67384359777e+11 +UniRef50_A3V2A1 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 4.63894536679e-05 1.1305402343e-05 -14163862049.6 +UniRef50_Q9AA76 2.31957895439e-05 2.39776625577e-05 315651730.332 +UniRef50_I1EHK4 0.000126108904961 0.00162291037933 6.04277123023e+11 +UniRef50_P9WIZ4 Divalent metal cation transporter MntH 9.67912791928e-05 0.00401236210336 1.58076399117e+12 +UniRef50_E3E667 6.80131500236e-06 0.000708191134862 2.83159677298e+11 +UniRef50_Q1GMS0 Dihydroorotase 0.00135544040885 0.000654552096998 -2.82957212361e+11 +UniRef50_D9ULU8 CvhA 7.15775792529e-06 0.000127788787527 48700226959.5 +UniRef50_UPI000367667A hypothetical protein 5.04478154356e-05 4.36477028852e-05 -2745288883.36 +UniRef50_I0C1A6 Nitrogen regulation protein NIFR3 0.00135474491105 6.77546109288e-05 -5.19573777305e+11 +UniRef50_Q49XM4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.00887418014522 0.00369201768409 -2.09210257784e+12 +UniRef50_W5XWP7 Aldehyde dehydrogenase 0.0016689275233 0.000723869905191 -3.81531357592e+11 +UniRef50_C8X7N2 0.000254175793101 0.000121073399709 -53735069562.4 +UniRef50_UPI00037FE0F3 hypothetical protein 5.9434084805e-06 8.15061550832e-05 30505608062.7 +UniRef50_A1IQ80 Riboflavin biosynthesis protein RibD 0.000149400787142 0.00377809685714 1.46494913257e+12 +UniRef50_UPI00036C9CB5 hypothetical protein 1.37887874428e-05 1.64553660804e-05 1076530518.6 +UniRef50_A7X6I5 Fibronectin binding protein A 0.0123766972848 0.00341688949036 -3.61718435582e+12 +UniRef50_A0A059MMV6 MFS transporter 0.000117841619826 0.00609312448881 2.41229501917e+12 +UniRef50_S2R9A4 Excinuclease ATPase subunit 3.96133479613e-05 0.000261762691732 89684416159.4 +UniRef50_Q29RN5 LOC767890 protein 3.33182814306e-05 6.61993367704e-05 13274485536.6 +UniRef50_A0A022H1X1 Mannosyltransferase 0.000194256153273 1.89566303611e-05 -70770568566.6 +UniRef50_Q2JXL1 Serine tRNA ligase 4.60370840718e-06 1.27830709039e-05 3302109011.99 +UniRef50_I0Z518 2.80925903372e-06 3.59689456681e-06 317978130.083 +UniRef50_B1YLE0 Triosephosphate isomerase 3.30870157682e-05 7.52388808504e-05 17017225195.2 +UniRef50_Q1LHJ9 Ribosomal RNA small subunit methyltransferase G 1.99719041731e-05 2.68720683187e-05 2785680940.11 +UniRef50_A6V312 6.35676657784e-06 5.56920176405e-06 -317949579.834 +UniRef50_Q51366 GDP mannose 4,6 dehydratase 0.0012459712858 0.00018248200115 -4.29343674694e+11 +UniRef50_UPI0003AA2BE4 adenylate kinase 1.12465697889e-05 4.03470997163e-05 11748241035.4 +UniRef50_UPI00037042BD hypothetical protein 1.17212045414e-05 0.000297632493556 1.15425895901e+11 +UniRef50_C4Z2L9 0.000348579404123 0.000328129672448 -8255807623.62 +UniRef50_E4B7L0 0.000608848369114 0.00162727435658 4.11151068634e+11 +UniRef50_F5ZKQ5 PTS multi domain regulator 7.09115821271e-05 0.0041428804266 1.64390379119e+12 +UniRef50_D2Q557 Cobyrinic acid ac diamide synthase 3.79428097264e-06 1.14191130481e-05 3078238276.07 +UniRef50_UPI0001CBAB2C PREDICTED 2.88288744181e-06 1.29634980647e-05 4069666211.47 +UniRef50_A7ZR24 Chromosome initiation inhibitor 0.00206915725329 0.000357959642661 -6.90831474167e+11 +UniRef50_F0RL27 Cell envelope related transcriptional attenuator 0.000102670713198 0.0156712896391 6.28524250882e+12 +UniRef50_C0F8H0 Transketolase 7.11459043501e-05 1.25321646041e-05 -23663086006.9 +UniRef50_M7CS69 Arsenate reductase 0.000139098077978 0.00019864275912 24038918472.4 +UniRef50_G7M7C1 Cell wall binding repeat containing protein 0.000496674730899 0.000561758002748 26274915507.0 +UniRef50_K2RRG6 1.09522542348e-05 2.1054716729e-05 4078488080.06 +UniRef50_Q3IWQ1 Caspase family protein 0.00537548951736 0.00135302095866 -1.62391991839e+12 +UniRef50_Q8CRY0 UPF0342 protein SE_1526 0.00662216195631 0.000518099482802 -2.46428492583e+12 +UniRef50_P41187 DNA directed RNA polymerase subunit beta 5.01282096262e-05 4.29338198038e-05 -2904463456.39 +UniRef50_A7N872 1.84844496023e-05 5.50975417287e-05 14781154584.6 +UniRef50_X0SWR3 Marine sediment metagenome DNA, contig 3.17664255041e-05 4.50511103632e-06 -11005727184.6 +UniRef50_Q5HN54 UPF0435 protein SERP1418 0.00230449033989 0.000868578544689 -5.79695212341e+11 +UniRef50_B9JY98 ABC transporter 0.0120387224355 0.000836926381729 -4.52230252841e+12 +UniRef50_UPI0003FAD0C0 hypothetical protein 4.861449408e-06 2.06669923201e-05 6380891629.44 +UniRef50_G0IAR6 Transposase 4.41345998391e-05 0.000176139526107 53292008617.0 +UniRef50_W0NHP5 Transposase 0.00033941550879 5.74378662781e-05 -1.13837834537e+11 +UniRef50_UPI0003474DAF hypothetical protein 1.19230995553e-06 6.10192007791e-06 1982069854.1 +UniRef50_UPI00037B2E7D hypothetical protein 4.17161045203e-06 1.19098359621e-05 3124016597.12 +UniRef50_A3M7C9 0.000124720040369 0.00837483213716 3.33067149373e+12 +UniRef50_UPI0002DCEE9A hypothetical protein 1.30585057402e-05 1.93497722487e-05 2539861492.0 +UniRef50_Q9I1X8 0.000810756432548 0.000457855356899 -1.42470494823e+11 +UniRef50_D2YK48 Phosphoribosylformylglycinamidine synthase 0.000165123977905 0.000100986665661 -25893020006.2 +UniRef50_UPI000471F9AA hypothetical protein 1.06631908282e-05 4.41940029206e-05 13536800311.0 +UniRef50_P76205 Putative ankyrin repeat protein B 0.000540580488197 0.000635081111252 38151061180.4 +UniRef50_G7M911 Major facilitator superfamily MFS_1 0.000243643116173 0.00154501637948 5.25380356044e+11 +UniRef50_UPI00046F5D51 leucyl phenylalanyl tRNA protein transferase 8.1068854312e-06 3.48364879064e-05 10791068528.3 +UniRef50_G7ZQT1 0.0163953556353 0.00326389349117 -5.30133240873e+12 +UniRef50_UPI0002489B72 polysaccharide biosynthesis protein 1.08641812914e-05 3.28861503763e-05 8890539159.52 +UniRef50_A6W4G4 0.000132982065622 6.85921441896e-05 -25995001435.5 +UniRef50_Q8D385 Zinc import ATP binding protein ZnuC 0.000197806637993 2.46396771049e-05 -69909627108.1 +UniRef50_A0A011P1A0 0.000176357800995 5.35830808112e-05 -49565661153.5 +UniRef50_K1UQX5 Thiazole biosynthesis protein ThiH 0.000147372349326 0.000109781519587 -15175879257.0 +UniRef50_B1J356 Bifunctional protein PyrR 0.000442802621941 0.0026001793949 8.70959477234e+11 +UniRef50_P19685 Superoxide dismutase [Fe] 1.37718390203e-05 2.16560767746e-05 3182963531.89 +UniRef50_UPI0003B7AF8F septation ring formation regulator EzrA 1.86047225611e-05 2.02875323195e-05 679370949.864 +UniRef50_A3KVE3 0.000873664340319 0.000395072515317 -1.93213392735e+11 +UniRef50_Q9RTB7 1,4 alpha glucan branching enzyme GlgB 0.000422510326123 0.0333975816673 1.33124409501e+13 +UniRef50_Q891D3 Tyrosine tRNA ligase 0.000266020158991 0.00132351958365 4.26925494712e+11 +UniRef50_P67664 HTH type transcriptional activator AaeR 0.00382365407201 0.00127291561465 -1.02976441632e+12 +UniRef50_W8T7R1 0.00259164652166 0.000322750497486 -9.15981167443e+11 +UniRef50_Q1XG21 0.000280390014931 8.48635927669e-05 -78936416006.6 +UniRef50_UPI0003B52ABE flagellar biosynthesis protein FlhA 1.43652691683e-06 3.66104151916e-06 898063842.824 +UniRef50_F7ZDL0 7.69309138284e-06 2.40505047915e-05 6603688521.13 +UniRef50_Q0PAR0 Macrolide export ATP binding permease protein MacB 2.88604915121e-06 1.30737793455e-05 4112911696.95 +UniRef50_P23034 Aspartate aminotransferase 0.000825822026474 0.00847846432217 3.08946560326e+12 +UniRef50_A6LPV8 Isoaspartyl dipeptidase 0.000500199798562 0.000574787447927 30111949342.0 +UniRef50_I4Z5S2 Type II secretory pathway, component PulF 6.14950942071e-06 0.00225866485091 9.09368084831e+11 +UniRef50_F5M175 0.000269120054789 6.66467404092e-05 -81740961642.2 +UniRef50_X4ZX80 0.0112052573005 0.00243139445282 -3.54211609901e+12 +UniRef50_D3QFI9 Phosphomevalonate kinase 0.0215430717441 0.00742901684416 -5.69801716202e+12 +UniRef50_R8A3B5 0.000332512993594 6.71544086962e-06 -1.3152847002e+11 +UniRef50_F3ZKD4 Putative amino acid decarboxylase 6.1968961051e-06 2.95432770566e-05 9425220482.43 +UniRef50_A0JUZ2 LexA repressor 8.52919040285e-05 1.19675162051e-05 -29601955155.7 +UniRef50_UPI0002376C0A cysteinyl tRNA synthetase 9.2316193776e-06 3.49026172962e-05 10363696878.3 +UniRef50_UPI00040458A8 glyoxalase 1.19910692407e-05 3.00487280408e-05 7290098449.99 +UniRef50_O35435 Dihydroorotate dehydrogenase , mitochondrial 3.88577241031e-06 1.12455891751e-05 2971248343.05 +UniRef50_N9J1H3 0.000122032108466 0.00242491163778 9.29700725492e+11 +UniRef50_Q59928 Acetylornithine aminotransferase 0.0159852500756 0.00484810348502 -4.49620274678e+12 +UniRef50_Q5HEG2 Accessory gene regulator A 0.0215644058991 0.00218423362769 -7.82401336742e+12 +UniRef50_Q0K6L6 Ribosomal RNA small subunit methyltransferase H 2.31142292189e-05 1.27483708071e-05 -4184824244.23 +UniRef50_H2JCD9 0.000327616296138 0.00121786228017 3.594032283e+11 +UniRef50_UPI00040C37BB peptide chain release factor 3 1.78520051562e-05 5.78437488549e-05 16145157685.0 +UniRef50_Q39F94 Polysaccharide deacetylase 0.000236915892584 0.0046493327219 1.78134682044e+12 +UniRef50_Q0VQP5 Lipid A export ATP binding permease protein MsbA 3.05016714536e-06 4.50427092526e-06 587039539.806 +UniRef50_Q8XGY4 tRNA specific adenosine deaminase 1.09335700826e-05 4.19686453001e-05 12529240708.5 +UniRef50_W1CRU3 6.86010788154e-05 9.47227310176e-05 10545631542.7 +UniRef50_P43703 DNA topoisomerase 4 subunit B 0.000437014894835 4.74048889865e-06 -1.7451448228e+11 +UniRef50_Q8FB22 Replicative DNA helicase 0.00195900048037 0.00458343631954 1.05951695372e+12 +UniRef50_A7ZM93 0.00247821551277 0.000536743353068 -7.83796135413e+11 +UniRef50_A8GP69 Phospho N acetylmuramoyl pentapeptide transferase 0.00777148216546 0.00228095455262 -2.21659337365e+12 +UniRef50_UPI00035E3AF9 hypothetical protein 6.42731468893e-06 0.000155966387808 60370758868.9 +UniRef50_UPI0003B5603D 3 oxoacyl ACP synthase 9.13923511008e-06 4.36447086396e-05 13930283093.6 +UniRef50_UPI00046818D4 aldehyde dehydrogenase 3.22417670688e-06 1.99939095982e-05 6770146955.98 +UniRef50_X3K6P1 6.54042744555e-05 0.000101407900318 14535105574.9 +UniRef50_Q3J3U2 0.00184127214374 0.000239122838212 -6.46807335225e+11 +UniRef50_Q0K963 Histidine tRNA ligase 0.00259319674761 0.00478093583506 8.83217116181e+11 +UniRef50_UPI000466CCF2 hypothetical protein 2.44359639678e-06 5.55262682456e-06 1255153735.79 +UniRef50_Q5LYN3 UDP N acetylenolpyruvoylglucosamine reductase 0.0294558856997 0.0109561700847 -7.46856221081e+12 +UniRef50_A0A023RTB7 TonB dependent receptor 0.000117385290996 0.00750964758678 2.98434700207e+12 +UniRef50_P07017 Methyl accepting chemotaxis protein II 0.00587380266786 0.00157358171672 -1.73605196762e+12 +UniRef50_K0HVG4 Magnesium chelatase subunit ChlI 0.000200790419604 0.00567669919155 2.21069156819e+12 +UniRef50_UPI00035F8B10 hypothetical protein 5.65392826143e-06 1.3840821117e-05 3305149110.27 +UniRef50_UPI000440FDB6 PREDICTED 5.90183925532e-06 1.75820762938e-05 4715455025.07 +UniRef50_N4N922 Aminotransferase class I and II family protein 0.00157285828688 0.000831878042813 -2.9914281738e+11 +UniRef50_E2YZE2 0.0107108807675 0.00782463065047 -1.16521459052e+12 +UniRef50_F0KG57 0.000125133476969 0.00611722693169 2.41908165893e+12 +UniRef50_UPI0003640B98 hypothetical protein, partial 1.64705366131e-06 3.19602446545e-07 -535908345.061 +UniRef50_B7H1Y2 LysR substrate binding domain protein 0.000156850133866 0.00655258955399 2.58203848845e+12 +UniRef50_Q7MME5 4.37985877149e-05 6.65439152668e-05 9182567849.26 +UniRef50_C6SHL5 2.67362015027e-05 0.000274119362039 99871617641.1 +UniRef50_A0A010WN13 Phospholipase C, phosphocholine specific 0.000169580374119 0.00756598715365 2.98602018101e+12 +UniRef50_Q2YY30 Truncated cell surface fibronectin binding protein 0.000496698599059 0.000529600001783 13282700025.3 +UniRef50_UPI00034C42C5 hypothetical protein 2.60437086541e-06 6.82373120784e-06 1703407547.61 +UniRef50_Q5WLV8 4 diphosphocytidyl 2 C methyl D erythritol kinase 2.07595030953e-05 0.00268027845368 1.07368043632e+12 +UniRef50_UPI00036A7304 hypothetical protein 7.87460375357e-05 3.24248144453e-05 -18700446186.9 +UniRef50_Q67SK0 ATP dependent Clp protease proteolytic subunit 1 0.0203238830158 0.0144977263678 -2.35209093378e+12 +UniRef50_P32152 Putative frv operon regulatory protein 0.00287222758709 0.000328752539038 -1.02683208885e+12 +UniRef50_UPI000372D8ED hypothetical protein 3.9038546996e-05 4.39972727362e-05 2001898431.73 +UniRef50_X4QTW2 Excinuclease ABC subunit A 0.000365347884855 0.00597163464502 2.26332676195e+12 +UniRef50_D6SBZ3 Amidohydrolase family protein 0.0103836879905 0.00311295932253 -2.93528238513e+12 +UniRef50_Q6ABR7 Cobalamin biosynthesis protein CobN 3.20265262076e-05 0.00478301816329 1.91803362511e+12 +UniRef50_P77493 0.00248569796678 0.00151725400242 -3.90972712556e+11 +UniRef50_UPI0003025696 hypothetical protein 2.35118911205e-05 8.12176438155e-06 -6213183022.63 +UniRef50_UPI0004767909 binding protein 5.62094915235e-05 9.87110164272e-06 -18707376630.9 +UniRef50_UPI00047B08A4 hypothetical protein 0.000103335168301 0.000100387499282 -1190010154.94 +UniRef50_UPI00047D5805 hypothetical protein 3.61275948224e-05 4.22472045129e-05 2470561528.11 +UniRef50_Q5FKU9 Cell division protein FtsZ 0.00737566751452 0.00600587060389 -5.5300382212e+11 +UniRef50_UPI0003B55D8E pyruvate kinase 1.79551179342e-05 1.25349157627e-05 -2188202129.99 +UniRef50_Q89L46 UvrABC system protein A 0.00895787970116 0.0011499359591 -3.15216270291e+12 +UniRef50_UPI00045603F6 hypothetical protein PFL1_03459 2.6603607741e-05 9.69587105776e-06 -6825860780.27 +UniRef50_Q5HL03 0.00127358890476 0.0265373190214 1.01992778689e+13 +UniRef50_A5UK97 Predicted permease 0.00160875134474 0.00120133723912 -1.64478073972e+11 +UniRef50_M9VI15 0.000433477130563 0.0036255695855 1.28868689544e+12 +UniRef50_B9DW22 0.000612139441381 0.00100107357693 1.5701748328e+11 +UniRef50_I6T6W0 Dehydrogenase 0.00553181113933 0.00216783971121 -1.3580765461e+12 +UniRef50_Q2IIH7 PE PGRS family protein 0.000949025022007 0.00152768574689 2.33612435601e+11 +UniRef50_A6LWM4 Amine oxidase 0.000357775265256 0.00248638781778 8.59347008466e+11 +UniRef50_G8XHV9 0.000126268929618 2.44098165855e-05 -41121773883.3 +UniRef50_C7TGJ0 PTS system, IIC component 0.004101438313 0.00509327363259 4.00416089707e+11 +UniRef50_X0TXG2 Marine sediment metagenome DNA, contig 2.38679573879e-05 0.000451923479511 1.72811267113e+11 +UniRef50_P77721 0.00138206705698 0.00120139272301 -72940445747.1 +UniRef50_UPI0003639180 hypothetical protein 3.19037379464e-05 1.85327275236e-05 -5398040988.43 +UniRef50_UPI0003FDB00F hypothetical protein 1.76988655493e-05 1.76263836868e-05 -29261817.3437 +UniRef50_G8V8I0 Regulator of sorbitol operon 0.000219365157044 0.00450619998833 1.73064782677e+12 +UniRef50_UPI00047AE27E DNA topoisomerase I 0.0005718035332 0.00129001965664 2.89952662536e+11 +UniRef50_R9ZG20 Chemotaxis protein 0.000591355969722 0.000295354775877 -1.19499314298e+11 +UniRef50_H8Z498 0.000110589311456 1.02886153978e-05 -40492621826.6 +UniRef50_A3TUV5 0.000618558930468 0.00017236247027 -1.80134986428e+11 +UniRef50_Q8ELA5 Methionine import ATP binding protein MetN 4 1.64527642481e-05 0.00228023526799 9.13916776495e+11 +UniRef50_S3ZS47 Putative Oleandomycin polyketide synthase, modules 5 and 6 7.22339582887e-05 2.68926612013e-05 -18304838034.5 +UniRef50_B1I1Y5 Phosphoglucosamine mutase 0.000515086698447 0.00133219499756 3.29876647398e+11 +UniRef50_Q57772 Putative permease MJ0326 0.0013187319194 0.00244200997823 4.53481136522e+11 +UniRef50_UPI00037341DE hypothetical protein 2.13272799561e-05 8.7408229462e-06 -5081307148.09 +UniRef50_I2F9Q0 Cobalt zinc cadmium resistance protein CzcA 4.12853797497e-05 0.00287363248875 1.14345328471e+12 +UniRef50_Q00749 Multiple sugar binding protein 0.00524352553798 0.00222345984712 -1.21923757977e+12 +UniRef50_G7M9H8 0.000141380520171 0.00177143068101 6.58071252896e+11 +UniRef50_C5MZ71 PIN domain protein 0.0118885604994 0.00101842626507 -4.38840658193e+12 +UniRef50_UPI0002896123 flagellar motor switch protein FliN 0.000120120383648 3.95226116104e-05 -32538309617.5 +UniRef50_P41031 Thiosulfate binding protein 0.00196184454033 0.00120691578759 -3.04774001499e+11 +UniRef50_W9G6K5 5.09385762422e-05 4.74795688226e-05 -1396443742.09 +UniRef50_A8AVK0 Protein LemA 0.0102171360425 0.000551993841485 -3.90193651118e+12 +UniRef50_B8FYL8 Two component transcriptional regulator, winged helix family 0.000418063741423 0.00558553311669 2.08617079878e+12 +UniRef50_C6SRE4 0.00500359901084 0.00222779357882 -1.12062671587e+12 +UniRef50_M9VG81 Glycosyl hydrolase family 20, catalytic domain protein 0.000530464020794 0.00592270199318 2.17691263965e+12 +UniRef50_UPI00031DE77D hypothetical protein 0.000201468337333 8.85684855743e-05 -45579055592.1 +UniRef50_UPI000478621D hypothetical protein 1.56287571307e-05 6.79824419492e-06 -3564986434.75 +UniRef50_A6V3K7 Membrane protein, putative 0.000148616531043 0.000246782762008 39630912075.7 +UniRef50_I0C7T4 X Pro dipeptidyl peptidase family protein 0.000482910178341 0.000468959995716 -5631859913.7 +UniRef50_UPI0003753634 hypothetical protein 1.04943836201e-05 6.36068817682e-05 21442167266.0 +UniRef50_A7X6X6 Pantothenate synthetase 0.0241384567907 0.00443872286926 -7.95302432699e+12 +UniRef50_A6LQ26 Two component transcriptional regulator, LytTR family 0.000166783205682 0.00207625725214 7.70878104437e+11 +UniRef50_D5ARQ0 Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI 0.000801972115586 0.000361895395144 -1.77664372391e+11 +UniRef50_UPI000375A365 hypothetical protein 5.38674729484e-06 9.58068222996e-05 36503693858.5 +UniRef50_UPI0004785697 polyphosphate kinase 8.37073056165e-06 0.000203620707278 78824811586.9 +UniRef50_UPI000365B78F transposase IS200 7.95257942545e-05 0.000107135392876 11146333771.4 +UniRef50_B7V041 Glycine glutamate dipeptide porin OpdP 0.00106728457456 0.000129619621887 -3.78546847837e+11 +UniRef50_Q3K8E9 23S rRNA C(5)) methyltransferase RlmD 0.000316659027346 9.81282770331e-05 -88223545575.2 +UniRef50_Q3IV20 0.0348268888184 0.00128920135807 -1.35395759814e+13 +UniRef50_Q3IV23 0.00164620488659 0.00150450224945 -57207093500.3 +UniRef50_Q3IV22 0.000842884503193 0.000867958776462 10122791814.6 +UniRef50_UPI0003B70939 FAD containing monooxygenase EthA, partial 2.2028632816e-05 4.91223075027e-05 10938048947.8 +UniRef50_Q3IV27 0.00603265008739 0.000454814595262 -2.25184063591e+12 +UniRef50_A1B4G8 Orn DAP Arg decarboxylase 2 0.00271807956807 0.000724455459513 -8.04850517145e+11 +UniRef50_UPI000378AE4A O acetylhomoserine aminocarboxypropyltransferase 1.63325269391e-05 9.47672619358e-06 -2767770891.1 +UniRef50_Q9RUU0 D 3 phosphoglycerate dehydrogenase 0.00013942341107 0.0301426073813 1.21126535492e+13 +UniRef50_C6ST04 0.00465763918008 0.00573099953673 4.33328747592e+11 +UniRef50_M7YV85 Formin like protein 6 3.51688528049e-06 4.10876142454e-06 238947662.49 +UniRef50_P33222 Putative acid amine ligase YjfC 0.00339190132305 0.000251690373754 -1.26774169495e+12 +UniRef50_W5X567 7.20986472507e-05 1.67984490755e-05 -22325368613.1 +UniRef50_I4EYS5 NAD dependent epimerase dehydratase 0.000115658512532 0.000198565968206 33470757244.5 +UniRef50_UPI00036FB7EB hypothetical protein 3.74467463666e-06 1.37797798451e-05 4051295117.22 +UniRef50_H9UZT1 Ribonucleoside diphosphate reductase 1, beta subunit, B2 0.00235381795536 0.00135217125076 -4.04377066234e+11 +UniRef50_A6M1W3 Multi sensor signal transduction histidine kinase 0.000292824635796 0.00177655531356 5.99000282035e+11 +UniRef50_Q9RTX3 C di GMP phosphodiesterase A 0.000117328758456 0.0179809115678 7.21174759093e+12 +UniRef50_D0JET7 Sodium serine transporter 0.00100950363723 0.000944668955554 -26174556603.6 +UniRef50_UPI00040C441F PTS glucose transporter subunit IIB 1.74393789552e-05 9.18430841581e-05 30037688826.5 +UniRef50_A5UL56 Molybdopterin biosynthesis protein, MoeB 0.00280400473023 0.000635548456494 -8.7543240766e+11 +UniRef50_R4ZW64 NAD dependent oxidoreductase 0.000153034860351 0.000533965196472 1.53786251233e+11 +UniRef50_UPI00047AEC83 chemotaxis protein CheY 1.40568039596e-05 8.61835729628e-05 29118461741.6 +UniRef50_H2A8F3 Methionine ABC transporter substrate binding protein 0.00657181913759 0.00304293616662 -1.42465335964e+12 +UniRef50_F0RLS2 Metal dependent phosphohydrolase with GAF sensor 0.000110591598297 0.0264537530311 1.06350575374e+13 +UniRef50_F2MVP5 L sorbosone dehydrogenase 0.0130086667608 0.00254635926438 -4.22376192325e+12 +UniRef50_K9ZX43 0.000147072463189 0.0231502038411 9.28664641742e+12 +UniRef50_L1K6L8 Methyl accepting chemotaxis protein 0.00120266545315 0.000754000098364 -1.8113170947e+11 +UniRef50_UPI00047DE5DB ribonuclease 3 9.77648101939e-06 9.48742710663e-06 -116694611.672 +UniRef50_P45955 0.00192732948129 0.000681168522267 -5.03090471271e+11 +UniRef50_X5E195 0.00540048602413 0.000509166733097 -1.97468562103e+12 +UniRef50_D0LY72 Putative transcriptional regulator, Crp Fnr family 4.64417408264e-05 3.63325322954e-05 -4081211537.9 +UniRef50_UPI00029AEFE9 DNA topoisomerase I subunit omega 1.76424025654e-05 0.000196612937139 72252601023.0 +UniRef50_Q5HJZ0 DNA gyrase subunit A 0.016534477752 0.00538676135046 -4.50046990915e+12 +UniRef50_D5RPK9 1.77182186898e-05 5.58010763987e-05 15374516986.3 +UniRef50_B5F1C1 HTH type transcriptional regulator IscR 0.0180981679997 0.000364588524928 -7.15926364947e+12 +UniRef50_Q0G4L4 0.000112987754093 1.94632716902e-05 -37756981220.5 +UniRef50_E3ZBY8 DHH subfamily 1 protein 2.68638733529e-05 0.00183409578723 7.29601700863e+11 +UniRef50_F9NYB1 RHS repeat associated core domain protein 2.42029913741e-05 0.000863411435195 3.38798747016e+11 +UniRef50_UPI0003B34E67 ABC transporter 7.50713988334e-05 3.38584735936e-05 -16638163658.8 +UniRef50_F8LI03 Sal9 lantibiotic transport ATP binding protein 0.00930512358008 0.000200214715383 -3.67576343848e+12 +UniRef50_K4KVK1 Drug resistance ABC transporter,ATP binding protein 0.000154989443301 0.00102507238017 3.51263158732e+11 +UniRef50_UPI000476294D formyltetrahydrofolate deformylase 3.73878403764e-05 2.06091931295e-05 -6773745790.73 +UniRef50_P61502 Superoxide dismutase [Mn] 1.02081202158e-05 3.02577543801e-05 8094283348.81 +UniRef50_A5UNM6 SAM dependent methyltransferase 0.00849111482105 0.00108705535655 -2.98910966385e+12 +UniRef50_UPI0002627AF2 RpoD subfamily RNA polymerase sigma 70 subunit 3.28284654563e-06 4.79367475213e-06 609939886.911 +UniRef50_Q97IG3 Alanine tRNA ligase 0.000422637123772 0.000766859134778 1.38966649922e+11 +UniRef50_P75692 0.000466032084997 0.00128840288488 3.32001183537e+11 +UniRef50_UPI0002BAB8F5 hypothetical protein, partial 0.000241813692432 0.00010883762805 -53684068990.8 +UniRef50_Q37374 Cytochrome c oxidase subunit 3 6.60691389082e-05 2.86498337168e-05 -15106632692.3 +UniRef50_UPI00035D52F0 hypothetical protein 2.15107237645e-05 8.7572277124e-06 -5148742859.23 +UniRef50_Q2S432 ATP synthase subunit alpha 3.64876127905e-06 0.00605087288603 2.44133858695e+12 +UniRef50_I6T7J2 0.00260954016454 0.000605503010314 -8.09054391464e+11 +UniRef50_K0D4L6 5.75166767241e-05 2.42156703453e-05 -13444024924.4 +UniRef50_Q12YB2 CRISPR associated helicase Cas3 5.82642274481e-05 6.48549705319e-06 -20903708856.9 +UniRef50_F5XP90 7.32982502581e-05 0.00796859591419 3.18742855313e+12 +UniRef50_P38055 Inner membrane metabolite transport protein YdjE 0.000156850133866 0.00020627476498 19953330089.1 +UniRef50_UPI000328C9B2 PREDICTED 1.65453310905e-05 0.000208742792204 77592473579.4 +UniRef50_B2II05 ABC transporter related 0.00408188699475 0.000850254209396 -1.30464981204e+12 +UniRef50_I2AAI6 Cellobiose phosphorylase 3.26849497377e-06 1.88748129388e-05 6300462073.53 +UniRef50_A3CQL5 Amino acid ABC transporter, periplasmic amino acid binding protein, putative 0.00395986634679 0.000266051085761 -1.49123854909e+12 +UniRef50_UPI0003B46C76 hypothetical protein 2.84228403115e-05 9.01217532685e-06 -7836323649.93 +UniRef50_D3JTG3 3 hydroxylisobutyryl CoA hydrolase 0.000818500172003 0.0136690881686 5.18794006868e+12 +UniRef50_A4HM87 Proteophosphoglycan ppg4 1.98154837901e-05 0.000135633711865 46757239923.4 +UniRef50_J0W6L9 0.000218871326518 0.000247046029491 11374473332.7 +UniRef50_A6LXJ5 Na H(+) antiporter NhaA 2 0.000487349830313 0.00252042057701 8.20775609026e+11 +UniRef50_V5REB2 WafV 9.77942976327e-05 0.00937020184807 3.74338471335e+12 +UniRef50_UPI0004073FCC dihydroxyacetone kinase 2.5629469346e-05 0.0012488440291 4.93826728302e+11 +UniRef50_K9ZYD2 Exodeoxyribonuclease III 0.00024406421693 0.021503338744 8.58263000723e+12 +UniRef50_Q9RRR7 Sensory box sensor histidine kinase 0.0001072257636 0.0166757102461 6.68890050375e+12 +UniRef50_B9KT23 Glycine reductase complex protein C large subunit 0.00219540631815 0.000352369130465 -7.44056729276e+11 +UniRef50_UPI000471CC40 hypothetical protein 3.77716535626e-05 1.22087308662e-05 -10320065584.9 +UniRef50_Q59A32 Trifunctional purine biosynthetic protein adenosine 3 3.13872872176e-06 2.62852624844e-06 -205974999.368 +UniRef50_P0A1B6 Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive 0.00371340181284 0.00217287445752 -6.21929797739e+11 +UniRef50_A7NR36 DNA directed RNA polymerase subunit alpha 1.99824640152e-05 4.14939622295e-05 8684455804.88 +UniRef50_UPI00037D0C80 hypothetical protein 6.65735235466e-05 7.99153873709e-05 5386274148.95 +UniRef50_V8G2Y5 Crp Fnr family transcription regulator 0.000175574878536 0.00174250639593 6.32589481982e+11 +UniRef50_A0A059LCN6 0.000105240994677 0.000206877765398 41032011563.5 +UniRef50_A0A011RXV5 Type IV secretion system ATPase VirB11 0.00011884863753 6.81565995955e-05 -20464997775.4 +UniRef50_UPI00046D7021 hypothetical protein 7.98329083728e-06 5.21047134837e-06 -1119421253.99 +UniRef50_B2THL1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000199066473348 0.00176021924043 6.30256529569e+11 +UniRef50_UPI00025593F3 chemotaxis protein 4.8668336341e-05 2.55522743141e-05 -9332237906.24 +UniRef50_Q6FBV7 3 hydroxyisobutyrate dehydrogenase 0.00026472340519 0.00971622186908 3.8156859128e+12 +UniRef50_UPI00040CFD31 hypothetical protein 3.76541027836e-05 2.2064326043e-05 -6293784178.25 +UniRef50_Q9RSJ6 DNA directed RNA polymerase subunit alpha 1.58231809344e-05 0.0361980261084 1.46071993274e+13 +UniRef50_UPI0003728B08 hypothetical protein 6.88932848041e-05 1.79279344568e-05 -20575337350.4 +UniRef50_UPI00024868FB hypothetical protein 0.000317328486701 1.86864623895e-05 -1.20565449964e+11 +UniRef50_E3F1F2 RelA SpoT family protein 0.00803446906144 0.00210126652969 -2.39530667065e+12 +UniRef50_UPI00036CA645 hypothetical protein 2.56169861598e-05 0.000290602745547 1.06978002805e+11 +UniRef50_F8G483 Integral membrane protein TerC 0.000921389890703 0.000170048006835 -3.03325938519e+11 +UniRef50_E2QLT7 0.000933869547394 0.00109848325529 66456573915.0 +UniRef50_Q05599 Bifunctional adenosylcobalamin biosynthesis protein CobU 0.00138580882327 7.15898030953e-05 -5.30566345724e+11 +UniRef50_Q8FW08 sn glycerol 3 phosphate transport system permease protein UgpE 0.00932572348268 0.00108501178009 -3.32687643924e+12 +UniRef50_A3PAU4 Chorismate synthase 4.51423476046e-06 1.5324111368e-05 4364079838.55 +UniRef50_S5KJ87 1.06926318816e-06 0.00142848106742 5.7626366168e+11 +UniRef50_R9ZM17 Chemotaxis protein 0.00114794441715 0.000361717629572 -3.17409402233e+11 +UniRef50_UPI00037D86B2 hypothetical protein 1.13032497291e-05 1.23660747563e-05 429075505.81 +UniRef50_Q500N2 Bifunctional spore maturation protein, fused SpmA SpmB 9.22197041218e-05 0.000467325133115 1.51434664746e+11 +UniRef50_V5WU09 Transcriptional regulator 0.000245665484807 0.00211630071658 7.55198398341e+11 +UniRef50_UPI0002D3498A hypothetical protein 4.59971761171e-05 4.97810335979e-06 -16559903032.7 +UniRef50_UPI00047D2769 phosphoenolpyruvate protein phosphotransferase 3.07650312353e-06 8.45211884096e-05 32880218888.7 +UniRef50_G8VAH8 Kinase domain protein 7.42108759259e-05 0.00691952282844 2.76353643665e+12 +UniRef50_T1CR22 Site specific recombinase 1.3776913791e-05 0.000265343330868 1.01560449641e+11 +UniRef50_D0K172 0.000215706279348 0.0018292834454 6.51420902753e+11 +UniRef50_UPI0003EF77A3 hypothetical protein 0.000117359778757 0.000130687297718 5380482951.6 +UniRef50_F8W467 6.67949269383e-06 1.55753892354e-05 3591382598.76 +UniRef50_F9UHG1 Putative solute symporter protein 2.10123206672e-05 7.42582506103e-05 21496035319.1 +UniRef50_A6M205 Transcriptional regulator, GntR family 0.0001909709893 0.00285628282473 1.07601909502e+12 +UniRef50_Q1J2B0 Peptidase M29, aminopeptidase II 0.000113586556327 0.0213342040473 8.56702368738e+12 +UniRef50_A5UNV4 Putative major capsid protein gp5 0.00633086257814 0.000611724963857 -2.3088860366e+12 +UniRef50_R7PVH8 0.000952410113641 0.000526289099055 -1.72030282681e+11 +UniRef50_UPI00047926DE transposase 3.12413356951e-06 6.21300267044e-05 23821403142.3 +UniRef50_Q1QX79 4.9678037189e-05 3.59786495507e-05 -5530610899.97 +UniRef50_D8JMF6 0.000134816424593 0.00611437300908 2.41402037057e+12 +UniRef50_A0A009QE54 TonB dependent siderophore receptor family protein 0.000250460260786 0.00766343700894 2.99270968068e+12 +UniRef50_UPI00037EFDE6 hypothetical protein 3.40866075036e-05 3.13459793105e-05 -1106425232.84 +UniRef50_UPI00038177C4 hypothetical protein 2.22251673062e-05 1.74682644133e-05 -1920420071.63 +UniRef50_Q5HP19 Proline dipeptidase 0.0216011327094 0.00526702172571 -6.5942810462e+12 +UniRef50_A1B4V0 0.00325664961853 0.00123321256016 -8.16886370829e+11 +UniRef50_F9GT79 UPF0125 protein GGA_0527 1.00315708908e-05 2.01100610781e-05 4068810165.6 +UniRef50_UPI00047EFD30 hypothetical protein 1.76699215318e-05 9.02591901783e-05 29305178523.1 +UniRef50_UPI00036F0908 hypothetical protein 4.51049605241e-06 1.69795972756e-05 5033929176.88 +UniRef50_X2LYU6 1.56181175861e-05 1.80696904975e-05 989730068.515 +UniRef50_G8V4E9 ATP dependent DNA helicase RecQ 0.00946865105445 0.00221715766914 -2.92751686548e+12 +UniRef50_B2U6Z0 N anthranilate isomerase 0.00219529407841 0.000305715303102 -7.62846139332e+11 +UniRef50_Q92SH6 Peptide deformylase 3.6846322747e-05 8.86607233645e-05 20918109363.5 +UniRef50_Q8RGC8 Fe ions import ATP binding protein FbpC 4.22742506301e-05 0.000200668202859 63945582227.2 +UniRef50_J0YJQ5 Serine aspartate repeat containing protein G 0.0066755644067 0.00269678632111 -1.60628153825e+12 +UniRef50_X1K5L6 Marine sediment metagenome DNA, contig 6.42746352788e-06 1.30369969647e-05 2668349756.54 +UniRef50_T0VCE6 ABC transporter ATP binding protein 0.0103148694981 0.00221494492861 -3.27003894596e+12 +UniRef50_UPI00040CE7D5 hypothetical protein 5.92851567073e-05 3.50983835316e-05 -9764497136.11 +UniRef50_F8H6P0 0.000661344072478 0.000889333462438 92042114471.3 +UniRef50_Q9RTE3 Protein export membrane protein, putative 4.96692090564e-05 0.0258598062743 1.04198690592e+13 +UniRef50_D2NXJ8 6.34364420643e-05 0.000927324757521 3.48762314052e+11 +UniRef50_A8AJI8 Citrate lyase acyl carrier protein 0.000529185965684 0.000626113155893 39130696117.8 +UniRef50_H8H0D3 0.000454958593323 0.0427128696261 1.70600372468e+13 +UniRef50_Q5ZEI2 1.22364750339e-05 0.00104247700434 4.15920744155e+11 +UniRef50_I6T664 0.00451343786544 0.00148395786982 -1.22303825013e+12 +UniRef50_K2D6T3 0.000125310601514 0.000148250485467 9261112655.86 +UniRef50_Q11K61 Binding protein dependent transport systems inner membrane component 0.000575751563428 0.000278163301593 -1.20140033121e+11 +UniRef50_P39062 Acetyl coenzyme A synthetase 0.0103015327761 0.00276047570116 -3.04441728033e+12 +UniRef50_UPI0004643E21 hypothetical protein 1.34440395945e-05 2.45065246852e-05 4466060983.07 +UniRef50_C1CX98 3 methyl 2 oxobutanoate hydroxymethyltransferase 8.10250341907e-06 1.28475882897e-05 1915648991.01 +UniRef50_Q59641 Peptidyl prolyl cis trans isomerase A 0.00273230577485 0.00100766018828 -6.9626058708e+11 +UniRef50_UPI000463A8B3 preprotein translocase subunit SecD SecF, partial 2.86177976162e-06 1.00838329191e-05 2915631484.23 +UniRef50_B5F808 UPF0231 protein YacL 0.000483729960722 0.000519618836113 14488779401.4 +UniRef50_A0A058ZAW9 2.11358430669e-06 3.76645629365e-05 14352366332.4 +UniRef50_T9NAV5 Inner membrane protein 3.91367596396e-05 0.000386034908756 1.40047039717e+11 +UniRef50_G7LZJ4 0.000467826976731 0.000684256318889 87375181315.9 +UniRef50_UPI0002B9550C regulator for metE and MetH 0.000150659321835 0.000200974028319 20312664438.5 +UniRef50_UPI00046A72DD hypothetical protein 6.87464995661e-06 1.04717194038e-05 1452181076.84 +UniRef50_A3PS85 0.00370743857263 0.000366095089089 -1.3489413672e+12 +UniRef50_B7NUS6 0.0011487182418 0.000272181295113 -3.53868721695e+11 +UniRef50_UPI0003B61198 cobalt ABC transporter ATP binding protein 1.60211162977e-05 9.71172660575e-06 -2547178043.56 +UniRef50_G7M0X3 Transcriptional regulator, AraC family 0.000803347984395 0.00136978109218 2.28675996529e+11 +UniRef50_T0P454 4.19969481506e-05 2.40075299561e-05 -7262548880.11 +UniRef50_UPI000478626E 3 oxoacyl ACP reductase 9.70888553198e-06 1.29433264158e-05 1305783475.85 +UniRef50_UPI00026CD1C9 MFS transporter 1.42819052456e-05 1.14892715795e-05 -1127420480.47 +UniRef50_A0A026WQ11 0.000454540923018 9.64386994461e-05 -1.44570262064e+11 +UniRef50_W5X9Y2 ABC transporter related protein 2.67837117836e-05 1.00254780074e-05 -6765504622.11 +UniRef50_Q6F803 0.000298015254361 0.00218150852335 7.60389345753e+11 +UniRef50_P08956 Type I restriction enzyme EcoKI R protein 0.00164205592549 0.00126971046851 -1.50320430175e+11 +UniRef50_I4DYP2 RNA binding protein 0.00757269134152 0.00675743066569 -3.29130739206e+11 +UniRef50_I0C528 0.00978524105939 0.00274225256523 -2.84334088228e+12 +UniRef50_I0Z1H0 1.09303054781e-06 3.40051121409e-06 931558260.949 +UniRef50_D8JHE9 Nitrate transport ATP binding protein nrtC 0.000245891592022 0.00756808357449 2.95605875672e+12 +UniRef50_A9M366 0.000301988791085 0.00101106650997 2.86263376476e+11 +UniRef50_UPI00046F9B67 PTS system, glucose subfamily, IIA component 2.87403172244e-06 4.13053256777e-06 507264810.259 +UniRef50_E3EYF0 C4 dicarboxylate transport transcriptional regulatory protein DctD 0.0103017977633 0.00280889485706 -3.02497685151e+12 +UniRef50_UPI00047AADF7 serine threonine protein phosphatase 6.68769567577e-06 9.14179872369e-06 990751515.676 +UniRef50_Q5HLA3 Putative aldehyde dehydrogenase AldA 0.0266845429308 0.00772333054173 -7.65487412172e+12 +UniRef50_A7ZIM8 Adenine phosphoribosyltransferase 0.00177385007496 0.000342610826539 -5.77808847868e+11 +UniRef50_V5NHS3 6.39806760752e-05 0.00514459373032 2.05110583613e+12 +UniRef50_K0HKR9 9.2445548289e-05 0.00716176150989 2.85396960396e+12 +UniRef50_N4DH58 Pyridine nucleotide disulfide oxidoreductase family protein 0.000570613484775 0.000331816522686 -96405263963.6 +UniRef50_G7U4C3 Hypoxanthine phosphoribosyltransferase 0.000832689681294 0.0100591540507 3.72483688738e+12 +UniRef50_Q8E310 Phosphate binding protein PstS 2 0.000721322924183 0.000568922136243 -61526068259.4 +UniRef50_C5BFM6 Beta hexosaminidase 0.000344532895441 0.00663167559093 2.53819665809e+12 +UniRef50_Q3HKK4 0.00355778376238 0.00153264887415 -8.17571805578e+11 +UniRef50_UPI00037B5AE4 30S ribosomal protein S1 2.9951910108e-06 0.00010634087058 41721919036.1 +UniRef50_Q9ZKE4 Primosomal protein N 0.000212349102803 0.00374766343554 1.42724977931e+12 +UniRef50_M9RBV2 0.00299804163973 0.00060830661409 -9.64765355197e+11 +UniRef50_UPI000467A396 hypothetical protein 5.41422258121e-05 2.26459769234e-05 -12715422178.8 +UniRef50_R7PWJ2 0.00182059947183 0.000571553111221 -5.04255343301e+11 +UniRef50_L0KHH1 Cation multidrug efflux pump 0.00896337742238 0.00206341386895 -2.78559995859e+12 +UniRef50_Q0BTL1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 6.99683230975e-05 3.78708776306e-05 -12958132614.9 +UniRef50_B0T0X6 Protoheme IX farnesyltransferase 9.11097112223e-06 7.22310644913e-05 25482356263.8 +UniRef50_Q6Q272 p hydroxyphenylacetate 3 hydroxylase, oxygenase component 0.0124054917765 0.00238516434941 -4.04532914557e+12 +UniRef50_C5BQ62 50S ribosomal protein L4 0.00331467103294 0.002619018341 -2.80843528355e+11 +UniRef50_Q9JTG4 Alanine tRNA ligase 8.92026081351e-05 0.00468771506549 1.85647590913e+12 +UniRef50_A1KTV6 2 isopropylmalate synthase 0.000217079094157 0.00251395156737 9.2727560323e+11 +UniRef50_D4HCV5 Periplasmic binding protein 3.90538025751e-05 0.000179283163332 56612313745.4 +UniRef50_A4IMH7 tRNA 2 methylthio N dimethylallyladenosine synthase 0.0190985753996 0.003778971474 -6.18471209745e+12 +UniRef50_UPI00036C607F hypothetical protein 2.97631445172e-05 6.36199300237e-06 -9447332030.95 +UniRef50_A1UG51 Spermidine putrescine import ATP binding protein PotA 0.000327032302683 1.42904879509e-05 -1.26257708381e+11 +UniRef50_UPI0004657C1A serine threonine protein kinase 4.56160646924e-05 1.42699460812e-05 -12654812743.5 +UniRef50_Q5HPV5 UPF0122 protein SERP0802 0.0182996643452 0.00053693946399 -7.17103000769e+12 +UniRef50_D2NAH1 Dihydroorotate oxidase 0.0268827123502 0.00388792697206 -9.28327703489e+12 +UniRef50_UPI0004671BDB hypothetical protein 9.15606069038e-05 5.73898363178e-06 -34647242464.7 +UniRef50_M2IT76 Glucosyltransferase S 0.000937047786034 0.000873203180054 -25774850895.5 +UniRef50_UPI000370D86A hypothetical protein 6.83280858819e-05 8.68499813085e-06 -24078646428.1 +UniRef50_P24180 Multidrug export protein AcrE 0.00260771528958 0.000387083916662 -8.96496135459e+11 +UniRef50_A0A037YKV0 N acetylglucosamine 6 phosphate deacetylase 0.000474219386336 0.000405667722205 -27675148033.2 +UniRef50_UPI000418069B ABC transporter 1.95992890936e-05 4.98147629591e-06 -5901390407.17 +UniRef50_E2XTQ0 Ribose ABC transporter, permease protein 0.000213671314441 0.0036527615265 1.38840292099e+12 +UniRef50_A5WHZ8 OmpW family protein 0.000857468611517 0.00843520293452 3.05922433545e+12 +UniRef50_P0AF22 N acetylglucosamine repressor 0.00235418366327 0.000523856736939 -7.38925440797e+11 +UniRef50_Q15PI0 MazG family protein 1.22602290078e-05 8.49435456541e-06 -1520329724.87 +UniRef50_UPI00041E2B4A hypothetical protein 2.2810594589e-05 3.80948933246e-05 6170458959.0 +UniRef50_UPI0001E89F57 glycerophosphoryl diester phosphodiesterase 9.96263991838e-06 2.10718045982e-05 4484906106.02 +UniRef50_P45546 0.00261253758321 0.0009098316791 -6.8740326804e+11 +UniRef50_Q832G5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 9.28536342056e-06 0.00197435103989 7.93321127658e+11 +UniRef50_B0V7L4 0.0002066529136 0.0051836566183 2.00927747029e+12 +UniRef50_Q1IWJ1 0.000668070111131 0.035999796459 1.42638514957e+13 +UniRef50_P45549 0.00227321017942 0.000909267388022 -5.50640442348e+11 +UniRef50_Q28JW2 HemY like protein 0.00310493005675 0.0004528962072 -1.07065860918e+12 +UniRef50_B7UXY2 UPF0761 membrane protein PLES_43641 0.000797907889305 0.0011945737331 1.60138868777e+11 +UniRef50_P46890 0.00231685786862 0.00145456598405 -3.48117815312e+11 +UniRef50_A1R6L8 Glucose 1 phosphate adenylyltransferase 0.000773155384039 0.00746334363358 2.70091109418e+12 +UniRef50_UPI00041EAEC4 outer membrane specific lipoprotein transporter subunit LolE 8.60698492788e-06 4.1236605699e-05 13172978315.8 +UniRef50_T0TW25 0.00577666889919 0.00163942201409 -1.67025733724e+12 +UniRef50_Q6G9K4 DNA topoisomerase 4 subunit A 0.0206658509464 0.00378469583768 -6.81512947245e+12 +UniRef50_UPI000375B645 hypothetical protein 8.47703205811e-06 7.30354908239e-05 26063042025.1 +UniRef50_F0HAX6 3.32907753402e-06 0.00014051341434 55383000209.7 +UniRef50_V4R9U3 Type II restriction endonuclease 4.59102750525e-06 0.00115731367038 4.65368276424e+11 +UniRef50_Q2SQB9 tRNA 2 selenouridine synthase 0.00010211523594 0.000485556117741 1.54799789332e+11 +UniRef50_I1CKJ8 0.00010297150717 2.7000369187e-05 -30670480674.4 +UniRef50_P44016 Putative oligopeptide transporter HI_0561 0.000582754361592 0.000109107157092 -1.91217188761e+11 +UniRef50_P37538 0.000346317420961 0.000173267647843 -69862316967.3 +UniRef50_UPI00047574D4 tyrosyl tRNA synthetase 3.11942392257e-05 8.24673671748e-06 -9264188360.08 +UniRef50_UPI00037DCE93 hypothetical protein 1.44269899394e-06 1.29359660663e-05 4639972955.37 +UniRef50_UPI0003B3686E XRE family transcriptional regulator 0.000214478426361 2.2761331119e-05 -77398543982.5 +UniRef50_Q3AC80 NADH quinone oxidoreductase subunit D 6.2187110506e-06 3.79523740024e-05 12811269149.5 +UniRef50_P32138 Alpha glucosidase YihQ 0.000682100305499 0.000165443532329 -2.0858067942e+11 +UniRef50_X2I9U8 Histidine kinase 0.000176899087287 0.00197147714997 7.24493185853e+11 +UniRef50_UPI0004741BEC CTP synthetase, partial 9.96389899647e-06 4.73790941946e-05 15104973437.5 +UniRef50_A6V2J2 0.000754313319023 0.000698082389237 -22701116385.7 +UniRef50_V9B4W3 von Willebrand factor type A domain protein 5.23651653421e-05 2.19459711697e-05 -12280601972.9 +UniRef50_A0A024L686 Ankyrin repeat protein A 0.00308702081468 0.000223018376258 -1.15623292965e+12 +UniRef50_UPI000470C007 hypothetical protein 5.55506119298e-06 1.51696414471e-05 3881524032.76 +UniRef50_F0RKW9 Biopolymer transport protein ExbD TolR 0.000268354968373 0.0112462403929 4.43190705967e+12 +UniRef50_T1YAE9 O succinylbenzoate synthase 0.012923522758 0.00147747931157 -4.62090819806e+12 +UniRef50_UPI00045EAF3A hypothetical protein 3.7971683441e-06 3.75460790335e-05 13624849391.0 +UniRef50_B9JG24 Shikimate dehydrogenase 0.000176506764391 3.90808415511e-05 -55480531456.2 +UniRef50_UPI0004182A5D MarR family transcriptional regulator 1.21098665729e-05 7.77129668926e-05 26484776639.6 +UniRef50_C7J486 Os06g0602200 protein 2.58092401854e-05 0.000654503711914 2.53811673186e+11 +UniRef50_Q58239 Peptide chain release factor subunit 1 0.00379371054317 0.000307154969647 -1.40756526988e+12 +UniRef50_Q8CPA3 Oligoendopeptidase 0.0102887424518 0.00529154058556 -2.01743171596e+12 +UniRef50_UPI0003B5016A hypothetical protein 2.94469583119e-06 0.000663310325567 2.66597708322e+11 +UniRef50_B2U887 Cytidylate kinase 9.08687944926e-06 1.22158904418e-05 1263220134.97 +UniRef50_Q9L3H0 9.08593394311e-05 3.65502307929e-05 -21925253604.9 +UniRef50_UPI00036EFE7D hypothetical protein 1.646921491e-05 1.15523763001e-05 -1984988083.21 +UniRef50_A2RH97 Mannitol 1 phosphate 5 dehydrogenase 0.0064844736951 0.00580445494923 -2.74531912476e+11 +UniRef50_F0KMR7 3 oxoacyl synthase I 0.000238477371924 0.00527109111335 2.03172792453e+12 +UniRef50_K7S761 Nuclease, RecB family 0.000124377628566 0.00495262999798 1.94922473085e+12 +UniRef50_Q9RTC1 0.00059290993013 0.023861253653 9.39371589562e+12 +UniRef50_Q4FTT8 2 octaprenylphenol hydroxylase 0.000280304150315 0.0065601565586 2.53525347968e+12 +UniRef50_UPI00040A0384 DNA polymerase I 6.39265702459e-06 3.01663145474e-05 9597717277.54 +UniRef50_UPI000474D03A hypothetical protein, partial 3.96761866383e-05 4.54873986415e-05 2346057597.28 +UniRef50_UPI00034A62B9 hypothetical protein 4.26007767202e-06 2.78376568091e-05 9518558027.08 +UniRef50_K0TKK5 4.74669558729e-05 1.3312015779e-05 -13788768444.2 +UniRef50_P50975 NADH quinone oxidoreductase subunit J 0.00852786908027 0.000418245768677 -3.27395444716e+12 +UniRef50_Q9RVP1 Extracellular solute binding protein, family 5 0.000406114783491 0.0988772382931 3.97540009374e+13 +UniRef50_I6H2Z2 Ferritin like protein 0.000242468655024 0.000428168395247 74969263920.1 +UniRef50_L7UG94 0.000421908573212 4.5290418566e-05 -1.52045370655e+11 +UniRef50_D8UER7 3.50893539839e-05 4.60384817445e-05 4420297237.86 +UniRef50_P39816 Putative PTS system glucosamine specific EIICBA component 2.19506014454e-05 4.11558585045e-05 7753397949.76 +UniRef50_UPI00047DBAA4 hypothetical protein 8.64277384978e-06 1.38058405993e-05 2084393404.73 +UniRef50_UPI000471AD13 hypothetical protein 8.37478541801e-06 0.00118554968516 4.75239952585e+11 +UniRef50_Q899I0 Stage V sporulation protein B 0.000250202582467 0.00114814678419 3.6251109325e+11 +UniRef50_S9RXN5 Putative inner membrane protein 8.31015396945e-06 8.74973840396e-06 177465630.519 +UniRef50_Q5GTV1 Sugar diacide regulator 0.000138104630066 0.000129059744896 -3651531136.35 +UniRef50_L1KDU4 0.000872830045569 0.00194714311118 4.33713367891e+11 +UniRef50_P36661 0.00275020225313 0.000289002768065 -9.93616434433e+11 +UniRef50_F9YAC9 0.00028617133074 4.28017330581e-05 -98251293065.0 +UniRef50_UPI0004255E20 hypothetical protein 5.19611251428e-06 5.49368222447e-06 120132543.595 +UniRef50_F2UB74 9.95321893261e-06 1.39094513667e-06 -3456695002.34 +UniRef50_M9RFD9 0.000464413498701 4.42826666465e-05 -1.69611972485e+11 +UniRef50_R7PX69 0.0062393700412 0.00214054320726 -1.65474669112e+12 +UniRef50_J2KWN5 Arabinose efflux permease family protein 3.78065366427e-06 5.43861592415e-06 669339709.798 +UniRef50_R9ZK82 0.000168652148514 8.06142052424e-05 -35541998045.8 +UniRef50_C5ZWF4 Peptidylarginine deiminase related protein 0.000114389693592 0.00323037412972 1.25796115429e+12 +UniRef50_L1KH26 ORFV protein 9.70581892187e-05 4.78781319808e-05 -19854592614.1 +UniRef50_Q0BUB7 Succinyl diaminopimelate desuccinylase 0.00299576711641 1.85694830246e-05 -1.20193121892e+12 +UniRef50_A4X058 0.001223430435 0.00152435901257 1.21488559574e+11 +UniRef50_A5ULA6 UPF0173 metal dependent hydrolase Msm_0779 0.00123846809465 0.000251333366122 -3.98518403412e+11 +UniRef50_B2HYZ7 tRNA tmRNA ) methyltransferase 0.000303723241341 0.00854744059979 3.32808985939e+12 +UniRef50_A8LWQ1 Oxidoreductase domain protein 0.000219044094112 0.00439297213552 1.68506597017e+12 +UniRef50_P0AGH1 Inner membrane transport permease YhhJ 0.00336667201484 0.000217678161078 -1.27128746126e+12 +UniRef50_A9UNP0 SH3, pleckstrin like and PDZ DHR GLGF domain containing protein 1.79923019198e-06 1.55751951591e-05 5561526107.32 +UniRef50_A4X051 0.0142285764795 0.00484057044639 -3.79005323936e+12 +UniRef50_M5JU21 1.85239918976e-05 2.03080580472e-05 720249397.547 +UniRef50_E8SHR5 Chromosome partitioning protein ParB Stage 0 sporulation protein J 0.0126937910239 0.00312260636281 -3.86400469933e+12 +UniRef50_Q04DA2 3 isopropylmalate dehydratase small subunit 3.2430716548e-05 2.41717883857e-05 -3334230647.57 +UniRef50_Q1IS40 NADH quinone oxidoreductase subunit H 2 5.32410893835e-06 1.33911958519e-05 3256781981.29 +UniRef50_Q5HS11 0.012737869146 0.00353769179621 -3.71422449498e+12 +UniRef50_UPI0003605BA6 hypothetical protein, partial 2.16197433865e-05 0.00309496221717 1.24074607082e+12 +UniRef50_UPI000404D8EB regulator 1.01205889497e-05 1.51833233873e-05 2043888019.2 +UniRef50_UPI0003C14420 PREDICTED 2.92037291031e-06 4.37375289598e-06 586747335.193 +UniRef50_S5CTU5 0.000192356592516 0.00911951085046 3.60400172243e+12 +UniRef50_D9UKD4 Predicted protein 1.28042074683e-05 4.97794121851e-05 14927343881.0 +UniRef50_R1FAU5 0.000701471162544 0.000194927031816 -2.0449808157e+11 +UniRef50_A5UKK1 DNA binding protein MutS2 0.00280697334256 0.000387659879655 -9.76706533287e+11 +UniRef50_UPI00036F10D0 hypothetical protein 8.59067594772e-05 3.47982761692e-05 -20633121883.1 +UniRef50_F0RLA6 0.000244562913323 0.0123542003664 4.88880924178e+12 +UniRef50_E3F346 Methionine binding lipoprotein 1.89426437603e-05 7.30998946131e-05 21863946753.5 +UniRef50_UPI00037C3791 hypothetical protein 3.2259218699e-06 2.86077814211e-06 -147413003.726 +UniRef50_K1EXL1 Phospholipase C, phosphocholine specific 0.000173389595439 0.00551097153418 2.15484732817e+12 +UniRef50_UPI0001E8977F nucleoside hydrolase 1.47125064197e-05 8.82908127901e-06 -2375210927.04 +UniRef50_D4H5B5 0.000132649138925 0.000130774623128 -756765030.144 +UniRef50_P35885 DNA gyrase subunit A 0.000142710893207 0.00948804956513 3.77282790206e+12 +UniRef50_A7NLC3 D tyrosyl tRNA deacylase 0.00177762395761 0.00107597491683 -2.83264327965e+11 +UniRef50_R6DP97 1.98027470581e-05 1.78909917545e-05 -771799075.939 +UniRef50_UPI0003B773D1 DNA topoisomerase I 2.93007381704e-06 1.12154653651e-05 3344914241.14 +UniRef50_U3TY01 5.90379475656e-05 0.000158303536793 40074736496.9 +UniRef50_Q5HPE4 0.0194993979947 0.00623344417616 -5.35562834809e+12 +UniRef50_R9ZKM0 Magnesium transporter 0.00146320442795 0.000221764734821 -5.01184438295e+11 +UniRef50_L0GLS2 TIGR01244 family protein 0.000141136036096 0.00802698201999 3.18361279391e+12 +UniRef50_P54420 Asparagine synthetase [glutamine hydrolyzing] 1 1.80698378966e-05 0.000601339924236 2.35473291384e+11 +UniRef50_G2AIF5 Ulp1 protease family, C terminal catalytic domain protein 0.000335474671301 0.000690847353598 1.43468312757e+11 +UniRef50_UPI00034AAAAB hypothetical protein 2.23359339826e-05 9.48525628078e-06 -5187976283.77 +UniRef50_UPI00036B1199 hypothetical protein 2.19272213071e-05 0.000139654345244 47527884607.6 +UniRef50_C8P5G2 Raf like protein 1.63570707685e-05 1.88200710026e-05 994343418.918 +UniRef50_UPI000372D48D hypothetical protein 1.83711958332e-05 2.0195102402e-05 736333463.675 +UniRef50_V5VG85 HAD superfamily hydrolase 0.000370141768865 0.009571665532 3.71476805857e+12 +UniRef50_P06959 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.00220739410017 0.000689036797609 -6.12979475383e+11 +UniRef50_F9YYE2 Cobalt transport protein CbiQ 0.000243539347646 0.00556825986583 2.14965501486e+12 +UniRef50_H0K4B0 Cation transport ATPase 2.19063016375e-05 2.93240807719e-06 -7659993666.15 +UniRef50_A4VGJ3 Two component sensor PhoQ 0.000231502638684 0.000135259559627 -38854512050.7 +UniRef50_UPI00037895ED hypothetical protein 0.012405145672 0.00845211038136 -1.59588885603e+12 +UniRef50_A7ZAV2 7.24590291795e-05 6.80123934597e-05 -1795161406.44 +UniRef50_P77129 0.00324151028965 0.000733907831629 -1.01234988405e+12 +UniRef50_Q6A6T4 30S ribosomal protein S9 0.00174224302547 0.00425983721408 1.0163836683e+12 +UniRef50_UPI000255C8A1 Bcr CflA subfamily drug resistance transporter protein, partial 1.16441210606e-05 1.75631995319e-05 2389604614.12 +UniRef50_UPI0003721AC4 hypothetical protein 7.24131879379e-06 3.65824035752e-06 -1446532734.04 +UniRef50_C0PWP3 NADH dehydrogenase subunit N 0.00201828446479 0.000430765470762 -6.40900898939e+11 +UniRef50_A7X5E2 30S ribosomal protein S8 0.00727419465536 0.00498091515693 -9.2582507522e+11 +UniRef50_C3ZKC0 5.78966240613e-05 5.80985453262e-05 81518092.4927 +UniRef50_U3TJ62 Elongation factor 4 0.0145681572819 0.00297783928924 -4.67915360285e+12 +UniRef50_D4HA42 0.000750814174727 0.00610603369223 2.16196783515e+12 +UniRef50_UPI000248A7D5 putative RTX family exoprotein 3.01187350956e-06 1.60938113443e-06 -566203382.357 +UniRef50_Q5HH83 UPF0413 protein SACOL1006 0.0187421687644 0.00366466688092 -6.08697253212e+12 +UniRef50_A5UKS1 Multidrug ABC transporter, permease component 0.00252121005343 0.00230420874715 -87606090250.7 +UniRef50_Q04L81 Phosphopentomutase 0.0376275609514 0.00866651938064 -1.16919278741e+13 +UniRef50_UPI00042B1BC9 Translation initiation factor 3 protein isoform 3 0.000157490246695 5.57506658017e-05 -41073517291.6 +UniRef50_E4N7F4 0.000140872216061 0.000255552462497 46297822771.1 +UniRef50_B1HX23 UPF0173 metal dependent hydrolase Bsph_4138 0.0313180251794 0.00515266490804 -1.05632770266e+13 +UniRef50_UPI0003C10FDE PREDICTED 1.12886686987e-05 6.63001724052e-06 -1880754761.75 +UniRef50_J9NUZ7 0.00010808790641 8.18768832125e-05 -10581711710.3 +UniRef50_W0A1B9 Amino acid ABC transporter permease 0.00199507460035 0.000378051382928 -6.52812115979e+11 +UniRef50_A0RKC3 4.4939285287e-05 0.000222600531548 71724025264.2 +UniRef50_UPI000442200E PREDICTED 5.02336279301e-05 0.000119141543204 27818970991.3 +UniRef50_Q5E0X7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 3.01717531878e-05 3.06882800138e-05 208528218.153 +UniRef50_I2BTA7 Response regulator GGDEF domain protein 0.000354379305876 0.000128398567483 -91231197184.8 +UniRef50_Q1IXD5 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.000122295676732 0.0015328222473 5.69446885647e+11 +UniRef50_D3QJ45 Lysophospholipase Monoglyceride lipase 0.0248243368365 0.00635851235367 -7.45487994485e+12 +UniRef50_UPI0003B66D29 MULTISPECIES 1.92869535965e-05 0.000144259914324 50453117836.2 +UniRef50_R1EJL9 4.21615028546e-05 2.214567742e-05 -8080634349.75 +UniRef50_Q8CQQ7 0.00869078289227 0.00344679541051 -2.11706209735e+12 +UniRef50_Q8CQQ2 0.000304473224981 4.0283158393e-05 -1.06656771858e+11 +UniRef50_Q8CQQ1 0.00869487111184 0.00288534810204 -2.34537572992e+12 +UniRef50_X5K129 0.000693797736497 0.000304705348728 -1.57081371643e+11 +UniRef50_N6V788 5.01336522872e-05 7.5648933293e-05 10300832049.7 +UniRef50_S6JXH3 4.71238341549e-05 7.32602199024e-06 -16066865145.0 +UniRef50_UPI00046638AB DNA primase 4.29461313281e-06 2.59923898793e-06 -684443346.868 +UniRef50_Q898U9 Conserved protein 0.000671677662287 0.000709427056483 15239893674.1 +UniRef50_A8LPA6 Double strand break repair helicase AddA 0.00036548752554 0.000117072718617 -1.00288105947e+11 +UniRef50_K6WPK4 MazG family protein 4.33564162064e-06 1.16872658022e-05 2967940896.67 +UniRef50_M9VGE0 Anchored repeat ABC transporter, substrate binding protein 0.000162999971089 0.00562957330798 2.2069227385e+12 +UniRef50_Q72TV3 Transketolase alpha subunit protein 0.000138611746215 0.00175313461575 6.51802694853e+11 +UniRef50_UPI00047D8BBE 50S ribosomal protein L4 9.36409651882e-06 0.000161475828197 61409372699.3 +UniRef50_Q5WFY6 tRNA dimethylallyltransferase 2.61863652902e-05 0.00192371124242 7.66054078146e+11 +UniRef50_U5NRL0 0.0106422038483 0.00211640084984 -3.44197129385e+12 +UniRef50_UPI0002F8AC80 hypothetical protein 1.43819228574e-05 4.07226407873e-05 10634071065.3 +UniRef50_B3RBC2 0.000152388957537 7.04788642645e-05 -33068109804.0 +UniRef50_Q2W726 Predicted membrane protein 7.73769814453e-05 1.9927411228e-05 -23193096482.2 +UniRef50_G7U7H1 Glutamate synthase small subunit 0.000199027952915 0.00411047620526 1.57909965834e+12 +UniRef50_R1CZY9 7.2780074977e-05 0.000106437366211 13587861492.6 +UniRef50_V4QWZ4 0.000185567168355 8.80681248164e-05 -39361560324.3 +UniRef50_E5U2C0 Short chain dehydrogenase reductase SDR 4.60013635729e-05 3.20843455169e-05 -5618470970.22 +UniRef50_Q4EDT9 Mucin 0.000122426260359 0.000409214833994 1.15780066468e+11 +UniRef50_F4EI16 Acetolactate synthase (Large subunit) 0.0113472918837 0.00919934387249 -8.67152970412e+11 +UniRef50_D3E0M6 6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase 0.00362337218605 0.00136341120637 -9.12373980337e+11 +UniRef50_F0KI03 X Pro dipeptidyl peptidase 7.8588339106e-05 0.00639777164504 2.5511318457e+12 +UniRef50_P15288 Cytosol non specific dipeptidase 0.00397456084403 0.000147535406424 -1.54501713205e+12 +UniRef50_UPI0004121413 hypothetical protein 6.75787726683e-06 1.35943166426e-05 2759954468.54 +UniRef50_A3X4G6 Antirepressor protein ant 1.58113417432e-05 3.05678803322e-05 5957395711.47 +UniRef50_P76296 0.00222020271388 0.00406414632199 7.44422662327e+11 +UniRef50_G2SXT9 NUDIX hydrolase 0.00020367949039 0.00135782190507 4.65941455726e+11 +UniRef50_A1T9L9 Malate dehydrogenase 0.00013122340285 0.0291133181272 1.17004272905e+13 +UniRef50_F9YXK7 Two component sensor histidine kinase 0.000195930649279 0.00731743747293 2.87503969542e+12 +UniRef50_U5MLC6 AAA domain protein 0.000127572077391 0.000984391294057 3.45908432122e+11 +UniRef50_Q46I72 Argininosuccinate synthase 4.74430004006e-06 5.71883859328e-05 21172321036.2 +UniRef50_UPI000369A472 hypothetical protein 5.51724409549e-05 0.00500589006765 1.99866545804e+12 +UniRef50_R9CVV5 0.00064079234952 5.15008164137e-05 -2.37904223335e+11 +UniRef50_I3UHD1 Aminotransferase 0.00363256511217 0.000459559538132 -1.2809812874e+12 +UniRef50_UPI0004081419 beta lactamase 4.14319233665e-06 3.50773428719e-05 12488496175.8 +UniRef50_UPI00047E2D14 secretion system apparatus protein SsaV 8.51625024393e-06 3.10466729178e-06 -2184722445.37 +UniRef50_M0LPL4 Phenol hydroxylase 9.89320014843e-05 1.75071708949e-05 -32872203304.0 +UniRef50_UPI000381F5B7 hypothetical protein 0.000391677547821 9.23271341845e-05 -1.20851435428e+11 +UniRef50_P43700 DNA gyrase subunit A 6.14583145769e-06 1.82840969638e-05 4900366738.08 +UniRef50_H8GZI4 Secretion protein HlyD 0.000107138880474 0.00443212176053 1.74604866219e+12 +UniRef50_Q8CNU1 Riboflavin synthase alpha chain 0.0177784123856 0.0023786146734 -6.21708731318e+12 +UniRef50_B2N6Z5 0.00110003265327 0.000816543885337 -1.14447894413e+11 +UniRef50_E2QK28 DNA helicase 0.00117286718577 0.00725569438844 2.4557119864e+12 +UniRef50_UPI000255651A ammonium transporter, partial 1.40723811568e-05 2.61755125257e-05 4886182655.75 +UniRef50_M4WTW3 0.000429697748649 0.000111721326058 -1.28370983809e+11 +UniRef50_E7I2X0 0.00630894472372 0.00172029148658 -1.85249562094e+12 +UniRef50_B9DS55 Sortase A 0.00280552835756 0.00190495507232 -3.63572486528e+11 +UniRef50_I3V233 Peptidase 0.00114062144001 0.000149024409689 -4.00319889404e+11 +UniRef50_B0RIE3 L arabinose isomerase 0.000107308042934 0.00115761148699 4.2402038904e+11 +UniRef50_UPI00035DB610 hypothetical protein 0.000113825207902 1.13728501328e-05 -41361274063.2 +UniRef50_UPI00042B847E Methylmalonate semialdehyde dehydrogenase 2.79209613497e-06 6.78095826275e-06 1610352589.83 +UniRef50_UPI00036E7EE5 molybdopterin biosynthesis protein B, partial 0.000348392700376 7.67472205259e-05 -1.0966661368e+11 +UniRef50_Q9HWR3 Bacteriophytochrome 0.000657680918168 0.000510799279081 -59297920139.8 +UniRef50_Q59200 Aspartate ammonia lyase 5.19200833939e-06 4.59514289948e-05 16455078292.9 +UniRef50_UPI0002DA19B1 hypothetical protein 1.788688519e-05 1.22001079492e-05 -2295821756.72 +UniRef50_P75794 Putative pyruvate formate lyase 3 activating enzyme 0.00449203344657 0.00185761234296 -1.06354812751e+12 +UniRef50_UPI0002000CF0 iron enterobactin transporter ATP binding protein 4.55995981646e-05 0.000819784090842 3.12547780006e+11 +UniRef50_UPI00046F3EBA hypothetical protein, partial 0.000143590942136 2.58149759058e-05 -47547602840.7 +UniRef50_P19498 Coenzyme F420 hydrogenase subunit gamma 0.00582867284372 0.00119157761483 -1.87205224746e+12 +UniRef50_UPI0004777CC6 hypothetical protein 1.89260584717e-06 0.000215776883638 86347707599.5 +UniRef50_U2W9U5 UPF0301 protein RS24_01332 3.47052601631e-05 6.74064225045e-05 13201860525.6 +UniRef50_Q06553 HTH type transcriptional regulator PrtR 0.00157889858106 0.00023688505764 -5.41787327762e+11 +UniRef50_UPI00037487E6 ABC transporter 6.59853791689e-06 0.000295781752307 1.16746812326e+11 +UniRef50_C6ADP9 NADH quinone oxidoreductase subunit K 3.6858137681e-05 3.50093034092e-05 -746397083.273 +UniRef50_UPI00016C4BF8 Cadherin 4.34541638288e-05 2.58639304792e-06 -16498820568.2 +UniRef50_M9RBW7 GTP cyclohydrolase II 0.00118132822539 0.000228337658653 -3.84733986301e+11 +UniRef50_Q9K8V3 Arginine biosynthesis bifunctional protein ArgJ 0.0224962992942 0.00849409202045 -5.6528629028e+12 +UniRef50_B3E414 Bifunctional protein GlmU 8.37510004881e-06 6.22939159052e-06 -866248835.415 +UniRef50_Q5LZ25 Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase 0.00509873013446 0.00193451854745 -1.27743104692e+12 +UniRef50_Q16AB8 DNA directed RNA polymerase subunit alpha 4.7418360618e-05 3.853388935e-05 -3586770075.61 +UniRef50_UPI00046F0F35 aspartate ammonia lyase, partial 4.11831403573e-06 1.06253039417e-05 2626951674.79 +UniRef50_UPI00046B80D6 PREDICTED 4.69301450672e-06 0.000280417576926 1.11313389369e+11 +UniRef50_G2NTW9 Short chain dehydrogenase reductase SDR 0.000761218720649 0.000865325479903 42029176244.4 +UniRef50_O83079 Probable metal transport system membrane protein TP_0036 0.000283468827669 0.00051884334422 95023580701.8 +UniRef50_L9PLX0 3.15761616374e-05 5.17809338002e-05 8156914462.56 +UniRef50_A0KMZ9 Glutamyl tRNA reductase 0.000376272841621 0.000445451703238 27928355354.9 +UniRef50_E4G8P9 1,3 beta galactosyl N acetylhexosamine phosphorylase 5.40037180038e-05 0.00188072235428 7.37468729825e+11 +UniRef50_A1S781 Response regulator receiver modulated CheW protein 0.000949712360507 0.000821045777733 -51944278382.4 +UniRef50_W8TSS8 0.000239566675246 3.29666218454e-05 -83406976825.7 +UniRef50_A8AB61 Probable 2 isopropylmalate synthase 8.23363681964e-06 2.69082339009e-05 7539164004.8 +UniRef50_Q9RYG6 0.000311114825983 0.00200192613915 6.82601275715e+11 +UniRef50_UPI00022CA85B PREDICTED 1.67206365576e-05 0.000142221842394 50666376869.0 +UniRef50_A9GZY1 Imidazoleglycerol phosphate dehydratase 0.000200025918566 6.12483774869e-05 -56026196325.5 +UniRef50_L9U970 Diguanylate cyclase, predicted 4.44901541901e-06 0.00030821241504 1.22633012023e+11 +UniRef50_B2KC44 Phosphoglycerate kinase 1.64771333166e-05 2.14821956866e-05 2020605097.79 +UniRef50_A0A022H326 Ferredoxin 7.80753761892e-06 1.03377285387e-05 1021469123.25 +UniRef50_P55140 UPF0603 protein YgcG 0.00232405375509 0.000833533499289 -6.01741318007e+11 +UniRef50_Q43973 3 oxoadipate CoA transferase subunit A 6.99681031629e-05 8.29749485856e-05 5251023109.09 +UniRef50_A8AWN6 Conserved domain protein 0.00251017809446 0.00293268566382 1.70571490502e+11 +UniRef50_UPI000366463F hypothetical protein 6.45484660499e-05 6.99603741324e-06 -23234621688.4 +UniRef50_L8MIC1 0.000300815987978 1.22191245849e-05 -1.16510095234e+11 +UniRef50_UPI00037EFF82 50S ribosomal protein L15 6.44391478779e-05 9.38662676786e-06 -22225378342.5 +UniRef50_Q8CRB0 Putative hemin import ATP binding protein HrtA 0.0138741025062 0.00366103831171 -4.12313934371e+12 +UniRef50_UPI0001BF5A9F hypothetical protein SMAC_11746, partial 0.000291611870626 0.000191151426333 -40557114149.4 +UniRef50_G2HDN4 BRO family, N terminal domain protein 8.23436996613e-05 3.62175311863e-05 -18621700245.1 +UniRef50_Q9RWY0 0.000253341511792 0.0389684411848 1.56297608257e+13 +UniRef50_UPI0003D3911F ribosomal RNA small subunit methyltransferase h 7.62470044563e-06 0.000105312420279 39437731259.9 +UniRef50_Q5HQR8 Organic hydroperoxide resistance protein like 1 0.0214197108173 0.00393010417811 -7.06076882185e+12 +UniRef50_X0ZSL3 Marine sediment metagenome DNA, contig 4.45398502847e-05 9.59410621346e-05 20751299987.6 +UniRef50_UPI0003724FBD hypothetical protein 1.70391743684e-05 0.000293576252779 1.11641412046e+11 +UniRef50_A8LHS2 Response regulator receiver protein 0.00523985896798 0.000872296127457 -1.76323871474e+12 +UniRef50_W8H2B8 Regucalcin 0.000144630647073 0.00580405488735 2.28477901475e+12 +UniRef50_P52027 DNA polymerase I 0.00045441235698 0.0899671733998 3.61374000781e+13 +UniRef50_UPI00037D8096 hypothetical protein, partial 9.30577707388e-06 1.34185595907e-05 1660380771.56 +UniRef50_E3GWV9 PP loop domain protein 0.00157722042691 0.000392013325476 -4.78482650974e+11 +UniRef50_Q1IZL3 LmbE like protein protein 0.000335634745854 0.0212185274381 8.43068004175e+12 +UniRef50_Q97SH4 PTS system mannitol specific EIICB component 0.00398424730508 0.00579947850599 7.32831111199e+11 +UniRef50_F3RIQ8 Membrane protein 3.16825604574e-06 0.00342474658001 1.38133315687e+12 +UniRef50_P11018 Major intracellular serine protease 1.31478655976e-05 0.000507387862034 1.99530751568e+11 +UniRef50_R8ZJ12 9.10978934231e-05 4.47562574115e-05 -18708687133.7 +UniRef50_I0C7W6 Two component sensor histidine kinase 0.0153353632801 0.00643957312949 -3.59133964742e+12 +UniRef50_C4S8U7 0.000214075229968 0.00028214971834 27482506323.7 +UniRef50_R6GJ60 Capsular polysaccharide biosynthesis protein 0.000839950042856 0.00202271033702 4.77494844853e+11 +UniRef50_D9RDA2 0.00911467842562 0.000773505472778 -3.36743387876e+12 +UniRef50_UPI0003B53675 sugar ABC transporter permease 7.98745148785e-06 1.9144667355e-05 4504304959.98 +UniRef50_A5EP16 Glutathione dependent formaldehyde activating enzyme 0.000164093545092 4.69119845976e-05 -47307633950.9 +UniRef50_UPI0003769E9C hypothetical protein 6.39090561039e-06 1.70280386359e-05 4294341134.7 +UniRef50_Q1C0Q8 Hemin import ATP binding protein HmuV 9.12580062532e-06 0.00105865463681 4.23707670333e+11 +UniRef50_M9R9I4 Magnesium chelatase 0.00223250714965 0.000534477413705 -6.85515441571e+11 +UniRef50_I0C723 Sodium glutamate symport carrier protein 0.0205458579098 0.00797658452614 -5.07436990733e+12 +UniRef50_Q46942 0.00170256987206 0.000832525848402 -3.51247448992e+11 +UniRef50_J2X9Z3 2.67261143485e-06 6.23106273873e-05 24076598880.7 +UniRef50_Q46941 0.000194580406623 0.000332439067766 55655233219.4 +UniRef50_P13792 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.0384031448111 0.0123347160175 -1.05241445996e+13 +UniRef50_E8P9H9 0.000525056461606 0.00649211513738 2.40897481145e+12 +UniRef50_P0C7J3 Xanthan biosynthesis protein XanB 0.00291046553415 0.00137305064405 -6.20673257336e+11 +UniRef50_M0UK13 0.000122272515804 0.000125824168676 1433845848.11 +UniRef50_X2IBS7 Membrane protein 0.000275200193901 0.00330652620623 1.22378350973e+12 +UniRef50_UPI00037A8F71 hypothetical protein 5.06163482945e-06 0.000453595106846 1.81078466778e+11 +UniRef50_K2DQ77 GTP binding protein lepA 6.0538315917e-06 1.88146827957e-05 5151712224.31 +UniRef50_UPI000400635E DNA mismatch repair protein MutT 0.000162247560728 5.75802905911e-05 -42255461366.1 +UniRef50_UPI00038209BB transcriptional regulator 0.000183300122598 2.81049944004e-05 -62654177711.9 +UniRef50_Q2FH55 Putative oligopeptide transport system permease protein oppB2 0.0134602893365 0.0108790275804 -1.04208704658e+12 +UniRef50_UPI00029DCC9C 0.000184294510213 0.000513601339319 1.32945207959e+11 +UniRef50_D4N0A6 Molybdenum ABC transporter, periplasmic molybdate binding protein 0.00222214593284 0.00203254794171 -76543035648.2 +UniRef50_UPI0003B45259 alkaline phosphatase 3.50209799089e-05 0.000581034261443 2.20432262092e+11 +UniRef50_D5CAF9 0.000336169916204 0.000418955646732 33421615309.3 +UniRef50_B2SEB4 Potassium transporting ATPase A chain 4.85881193605e-06 0.00119868000706 4.81960266303e+11 +UniRef50_W8T550 0.000580747675156 0.000621719379354 16540779764.1 +UniRef50_UPI000478594F hypothetical protein 1.4766966765e-05 0.000209997442632 78816938854.9 +UniRef50_I0L9E3 4.38360129026e-05 0.000424567466967 1.53705960106e+11 +UniRef50_A4WXR5 KDPG and KHG aldolase 0.00803880982384 0.00107310369415 -2.81214104338e+12 +UniRef50_A5UNE2 Lipopolysaccharide cholinephosphotransferase, LicD family 0.00107332626788 0.000634695737091 -1.77080527881e+11 +UniRef50_A6M165 Cellulose synthase subunit domain 0.000352031405009 0.000689366935207 1.36186493113e+11 +UniRef50_UPI0004790220 3 oxoacyl ACP synthase 2.98933680558e-05 9.55774408665e-05 26517466227.9 +UniRef50_Q167X1 8.65145600978e-05 5.02572088566e-05 -14637537623.8 +UniRef50_Q89T28 D amino acid dehydrogenase small subunit 3.13097404822e-05 2.44842131656e-05 -2755549136.35 +UniRef50_U5MUN0 Methyl accepting chemotaxis protein 0.000827264212578 0.00150603995566 2.74030096997e+11 +UniRef50_UPI00040BC712 hypothetical protein 8.31013628726e-05 9.98554563629e-05 6763833137.88 +UniRef50_F5ZGJ9 DNA binding protein 0.000544253637728 0.00205897774935 6.11512711616e+11 +UniRef50_W7WFV4 Methylmalonyl CoA mutase 0.00870044121497 0.0354080337189 1.07821828328e+13 +UniRef50_UPI0003B3E18A branched chain amino acid transporter permease subunit LivH, partial 3.19446333364e-05 0.000221280798993 76437333491.8 +UniRef50_J0HWL6 Ornithine cyclodeaminase family protein 0.000909159244793 0.0014412000921 2.14791418933e+11 +UniRef50_X1DRG2 Marine sediment metagenome DNA, contig 6.11351577872e-05 8.82998539463e-05 10966721187.7 +UniRef50_W8U5L3 Membrane protein 0.0155492116707 0.0064466919726 -3.6747989026e+12 +UniRef50_O87455 Regulatory protein LuxO 2.41881672162e-06 1.31800301911e-05 4344433932.58 +UniRef50_F9YBY3 1.55893585443e-05 5.76044015639e-06 -3968054967.59 +UniRef50_G2P974 0.000172563666846 0.000500513721912 1.3239746163e+11 +UniRef50_UPI000380AAE2 hypothetical protein 6.85204392128e-06 1.25181607095e-05 2287480878.48 +UniRef50_K4QA11 0.00499251001873 0.0034618561543 -6.17943748306e+11 +UniRef50_S3CIA8 0.000245652487326 7.53183355323e-06 -96132229997.2 +UniRef50_A7B8C4 0.000173126949524 2.65325371329e-05 -59181963198.0 +UniRef50_F3ZB63 2.77464365198e-05 0.000177194666293 60334084295.4 +UniRef50_Q8FE91 0.00201712142729 0.00338913356757 5.53898137513e+11 +UniRef50_F0QJX2 0.000172368031437 0.007562430502 2.98345890563e+12 +UniRef50_W1J5V3 4.35785298304e-06 4.85912924281e-06 202371377.421 +UniRef50_J0EVE3 0.00124235623274 0.000209537103627 -4.16961756538e+11 +UniRef50_Q3IVF5 0.000336010076035 0.00058292584037 99682924059.2 +UniRef50_Q6F7V8 UPF0761 membrane protein ACIAD3168 0.000816287476459 0.00528826578293 1.80539251967e+12 +UniRef50_Q3IUV2 TraG 0.0486802890938 0.00904476092797 -1.60013491032e+13 +UniRef50_U3PCK7 Transposase, undefined 0.000169276228183 0.00359227547095 1.38190679923e+12 +UniRef50_A6LZB4 ApbE family lipoprotein 0.00125507977032 0.00265329601631 5.64477056549e+11 +UniRef50_UPI000464EBB9 peptide ABC transporter permease 1.72134221425e-05 1.92683129629e-05 829584640.541 +UniRef50_K0R9N5 0.00025073416049 0.000425014931009 70359285724.1 +UniRef50_A6LQI1 Peptidase M23B 0.000208940584237 0.000857841600189 2.61969303051e+11 +UniRef50_F2U4B6 0.000106743070311 5.73293565432e-05 -19948922622.5 +UniRef50_Q21CV9 0.000183412135498 3.70334792115e-05 -59094859811.2 +UniRef50_U3TUS4 0.000360293819091 0.000565338671989 82779123298.2 +UniRef50_G8V566 Type I restriction modification system, M subunit 0.0218564909431 0.00437172847513 -7.0588131705e+12 +UniRef50_D4HCJ3 0.000392857701553 0.00878786675052 3.38916817141e+12 +UniRef50_P45604 PTS system N acetylglucosamine specific EIICBA component 0.00109046467628 0.000320648989845 -3.10784039315e+11 +UniRef50_J2P2T7 2.22323077368e-05 3.03513455479e-05 3277755196.14 +UniRef50_P39314 Inner membrane protein YtfF 0.0026858644445 0.00169363053799 -4.00577004137e+11 +UniRef50_UPI00047D7CE0 hypothetical protein 5.80003017432e-06 9.61174970447e-06 1538837949.38 +UniRef50_B8FMK3 1.74162867556e-05 0.000134307026745 47190226144.2 +UniRef50_UPI00046354D6 short chain dehydrogenase 1.59145833043e-05 5.8692915881e-05 17270137810.4 +UniRef50_S9R2Y6 Putative permease 3.93452167832e-05 8.83730768021e-06 -12316417279.0 +UniRef50_D1YZX5 0.00308892278564 0.000503243107096 -1.04387061608e+12 +UniRef50_J0QYX6 0.000435236190987 0.00107387892798 2.57827909952e+11 +UniRef50_M9REI0 2.66447825424e-05 0.000777149224201 3.02987852823e+11 +UniRef50_C7ZY45 Exported protein 0.00801838242036 0.000457785718507 -3.05230566749e+12 +UniRef50_Q5LXB5 Cell division ATP binding protein FtsE 0.00145458271057 0.000539145993045 -3.69573036537e+11 +UniRef50_U1YI17 0.000145561227567 0.001221998351 4.34570876098e+11 +UniRef50_UPI0003C1261B 9.79014043294e-06 3.76022466229e-06 -2434350992.0 +UniRef50_F9Y3X8 0.000155155384122 0.000809086863555 2.64000162889e+11 +UniRef50_V1L1Y8 3.64841465405e-05 1.36587356879e-05 -9214898460.48 +UniRef50_Q8CNK0 Single stranded DNA binding protein 0.0094199465049 0.000521147126817 -3.59255450948e+12 +UniRef50_UPI000469F81E hypothetical protein 0.000745498326877 5.66940494409e-05 -2.7807873938e+11 +UniRef50_L2EAP1 Exodeoxyribonuclease III 3.8199370321e-05 5.11107790903e-05 5212494160.97 +UniRef50_Q8TRP1 Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein 0.00726095449386 0.00632821511134 -3.76558334723e+11 +UniRef50_UPI0003C80514 PREDICTED 6.57768244641e-06 3.66381838626e-05 12135793305.6 +UniRef50_Q9PLA5 Phosphoglucosamine mutase 3.82441062837e-06 1.02789372434e-05 2605771600.44 +UniRef50_Q8DUC9 Probable 2 3 dephosphocoenzyme A synthase 0.00502967481164 0.000222042635489 -1.94090010579e+12 +UniRef50_UPI0004666A9C AraC family transcriptional regulator 1.3124441939e-05 3.41178328498e-05 8475289528.57 +UniRef50_A6THJ4 Inosose dehydratase 0.000384721935408 0.00358732190147 1.29292890662e+12 +UniRef50_W6IPV9 Oligopeptide transport system permease protein oppC 0.00113678785725 0.0054378583526 1.73639493904e+12 +UniRef50_F2AKS8 Ferripyochelin binding protein 2.92223381621e-05 1.90221380088e-05 -4117945972.42 +UniRef50_C0R046 DNA gyrase subunit A 8.49582573032e-06 1.30920927672e-05 1855569405.33 +UniRef50_E8SFS5 Membrane protein 0.0102612909261 0.00158151688859 -3.50413129175e+12 +UniRef50_E8SMB7 2.21245509073e-05 0.000301594699307 1.12825528393e+11 +UniRef50_A4IQK7 NADPH dehydrogenase 0.00028473584077 0.00737483462682 2.86235988522e+12 +UniRef50_X5DZP9 Binding dependent transport system inner membrane component family protein 0.0137735061245 0.00670808739261 -2.8523962445e+12 +UniRef50_UPI0002557D62 preprotein translocase subunit SecD, partial 1.43516641128e-05 1.93930226855e-05 2035258320.23 +UniRef50_Q88AR2 Amino acid acetyltransferase 0.000540439021321 0.00475576199572 1.7017776126e+12 +UniRef50_Q9RW26 0.000133387275209 0.0406672013277 1.63639981388e+13 +UniRef50_UPI00035DB8C9 hypothetical protein 5.33717784867e-05 7.98147080173e-05 10675335142.7 +UniRef50_R5TC44 Nicotinate nucleotide diphosphorylase 0.000168020469813 0.00194253901995 7.16394914483e+11 +UniRef50_A5IQ60 Septum formation initiator 0.00616874873303 0.000475040276462 -2.29861997358e+12 +UniRef50_X4Z0U6 Ferredoxin NADP reductase 0.000928504219647 0.000694649297846 -94410101653.7 +UniRef50_UPI0001FE5E48 heat shock protein 60 3.1780377307e-06 3.71904127117e-06 218409768.148 +UniRef50_UPI0003B74A81 hypothetical protein 2.74583980216e-05 4.26608729433e-06 -9363020442.27 +UniRef50_Q9P2R7 Succinyl CoA ligase [ADP forming] subunit beta, mitochondrial 1.78612133872e-05 1.56592769282e-05 -888948769.297 +UniRef50_Q97Q34 Phosphate import ATP binding protein PstB 2 0.0033893941053 0.00898583867128 2.25935334738e+12 +UniRef50_D9SQU6 Two component transcriptional regulator, AraC family 0.000706276031499 0.00026525452562 -1.78045793866e+11 +UniRef50_Q4K8A6 0.000400438693685 0.000178799216058 -89478576940.3 +UniRef50_UPI00036AA061 hypothetical protein 7.45189355561e-05 1.2865573396e-05 -24890218875.9 +UniRef50_UPI0003EC0186 PREDICTED 1.37311112e-05 1.51186518993e-05 560167207.347 +UniRef50_UPI00037642BA hypothetical protein 3.66397505118e-05 1.49557016639e-05 -8754116613.1 +UniRef50_UPI00045EADA1 hypothetical protein 8.28959199131e-05 0.000140559587951 23279530399.7 +UniRef50_UPI00034763C5 MerR family transcriptional regulator 0.000474654928799 5.78590492844e-05 -1.68265611221e+11 +UniRef50_G4LFL9 LysR family transcriptional regulator 0.000108472985299 0.00028214971834 70115428381.8 +UniRef50_G7DFY8 Ribonuclease E 0.00011799255524 7.47982964581e-06 -44615343465.9 +UniRef50_X1BCT6 Marine sediment metagenome DNA, contig 0.000115196539565 3.51263109119e-05 -32325333879.5 +UniRef50_B2TK60 Probable septum site determining protein MinC 0.000502843418349 0.00399077268268 1.40811984572e+12 +UniRef50_L5SXQ3 Pre toxin domain with VENN motif family protein 0.000102231219307 0.00142109155358 5.32440101181e+11 +UniRef50_E0RLL7 0.00018933721167 0.000948500981991 3.06483730066e+11 +UniRef50_D5AUC1 Entericidin B 0.000143375129927 0.000334982807773 77354370837.0 +UniRef50_A8LMQ8 Flagellar biosynthetic protein FliQ 0.000440645123179 0.00253711225891 8.46369509239e+11 +UniRef50_Q1RAX2 0.000149203948168 0.00211537908182 7.93769029137e+11 +UniRef50_I6SUA4 0.000458485006708 0.00242726059064 7.94818862826e+11 +UniRef50_Q8L4A1 Os01g0594900 protein 6.94743151263e-06 3.12876736575e-05 9826454442.26 +UniRef50_K1YIM5 4.63979558566e-05 2.88807242417e-05 -7071921363.54 +UniRef50_A0A037XEA8 0.000216621982584 3.99111620792e-05 -71340326723.5 +UniRef50_A0A024BU97 Restriction endonuclease 0.000140329363887 0.00417876325955 1.63036532083e+12 +UniRef50_UPI000393D62B PREDICTED 2.83298204633e-05 0.000102693012991 30021333362.4 +UniRef50_A3VHI7 1.74798908723e-05 2.32430156762e-05 2326644204.83 +UniRef50_Q8TL41 Histidinol dehydrogenase 0.00365126689167 0.000335743979983 -1.33851728549e+12 +UniRef50_R9SKI2 0.00293288380079 0.000593673877247 -9.44367751467e+11 +UniRef50_A6M1Y0 Helix turn helix domain containing protein, AraC type 0.000268354968373 0.00107998063921 3.27663243084e+11 +UniRef50_B2UPP6 Serine tRNA ligase 4.31440833953e-06 6.56981880839e-06 910536883.278 +UniRef50_A0A017HRP7 0.00149301516771 0.000382699833941 -4.48247925344e+11 +UniRef50_Q3AC06 Orotidine 5 phosphate decarboxylase 8.31233803921e-06 1.23476307987e-05 1629097205.62 +UniRef50_UPI000379A499 hypothetical protein 2.26629214133e-05 9.42306533443e-05 28892771615.4 +UniRef50_V9VQ76 0.000164209898081 0.000102302314553 -24992851161.7 +UniRef50_UPI000369122A MULTISPECIES 2.16098754762e-06 0.000238331544246 95344951877.6 +UniRef50_UPI00037FB80C hypothetical protein 0.000105717783489 0.000494455970948 1.56938376631e+11 +UniRef50_G7VQW0 Transcriptional regulator 0.000680605380771 0.000321578989328 -1.44943359975e+11 +UniRef50_M9J5S9 Molybdopterin binding domain of aldehyde dehydrogenase family protein 0.0012460194578 0.0012513975607 2171206137.47 +UniRef50_S5CX29 Tfp pilus assembly protein PilN 0.000187623644098 0.00912633259005 3.60866649177e+12 +UniRef50_Q4FUV6 Ribonuclease 3 6.49555865574e-06 9.10848474903e-06 1054870328.07 +UniRef50_D4HD89 ABC transporter, ATP binding protein 0.000269028562208 0.00295446087741 1.08414197961e+12 +UniRef50_P0ABW6 0.00307234031678 0.00600681288588 1.18468258617e+12 +UniRef50_Q4FQY1 Kef type potassium proton antiporter, CPA2 family 0.000360080554404 0.00653011483829 2.49091855524e+12 +UniRef50_S5YCT9 Phage terminase, large subunit 0.00630700988258 0.00201019547971 -1.73467670228e+12 +UniRef50_I0ESR9 Outer membrane protein 0.000178339837253 0.00157467049693 5.63715822217e+11 +UniRef50_UPI000409D90E anthranilate synthase 6.57649524542e-06 4.46571148272e-05 15373613426.9 +UniRef50_D8TK47 9.0201762821e-07 3.43064572641e-06 1020838193.0 +UniRef50_A5UP23 Predicted type II restriction enzyme, methylase subunit 0.00250715628528 0.000589895765484 -7.74021599276e+11 +UniRef50_Q1GRL4 0.000316021986139 0.00036288234313 18918101158.5 +UniRef50_L1KBI7 0.00336425283838 0.00186515813808 -6.05202926472e+11 +UniRef50_Q5HXV5 7.44019142805e-05 0.000149458102594 30301104265.2 +UniRef50_C5N3V2 0.00378038822699 0.000513594269898 -1.31884480855e+12 +UniRef50_A4WRE5 0.0005906929177 0.000199126531826 -1.58080155037e+11 +UniRef50_UPI00020002D3 putative PucR family transcriptional regulator 0.000147510901346 0.000369083844231 89451716048.4 +UniRef50_Q2SSX9 Thymidine kinase 1.66097988762e-05 2.1055012477e-05 1794587279.55 +UniRef50_I7ZF55 0.00013644086975 0.000123103691313 -5384382600.6 +UniRef50_P44988 Probable 3 keto L gulonate 6 phosphate decarboxylase 3.29877872758e-05 0.000101936148713 27835299603.7 +UniRef50_Q2FKF1 HTH type transcriptional regulator NorG 0.0140365423594 0.00185704148664 -4.91701396163e+12 +UniRef50_A5MZU0 Carbamoyl phosphate synthase large chain 0.0206365472876 0.0072008959981 -5.42413729955e+12 +UniRef50_X1FQR4 Marine sediment metagenome DNA, contig 0.00242676766694 0.000622600699033 -7.28364344564e+11 +UniRef50_UPI0003C7D137 GntR family transcriptional regulator, partial 1.74753803149e-05 4.29016648114e-05 10264903066.8 +UniRef50_UPI00038107A2 hypothetical protein 2.94353631654e-05 3.21249766244e-05 1085829958.67 +UniRef50_UPI00036F8AFA hypothetical protein 4.08608974045e-06 5.77075298785e-06 680119226.118 +UniRef50_P48992 Glucose 6 phosphate 1 dehydrogenase 4.34300583625e-06 6.9809375984e-06 1064965423.44 +UniRef50_UPI00037C824E hypothetical protein 3.17098043384e-06 5.55708393328e-06 963299263.507 +UniRef50_UPI00035C9A62 hypothetical protein 1.09973915859e-05 5.99502023838e-06 -2019518698.99 +UniRef50_A0A023KTG8 0.000914858537385 0.000624354449424 -1.17280065196e+11 +UniRef50_P56467 Bifunctional protein FolD 0.00214238819437 0.00293889780919 3.21560705775e+11 +UniRef50_A6LWE6 MATE efflux family protein 0.000272638384566 0.00175375667244 5.97945628178e+11 +UniRef50_Q5E4Y6 Multidrug resistance protein NorM 0.0038373497558 0.00101723733223 -1.13851399207e+12 +UniRef50_U7Q105 0.000248195205855 0.000124914957604 -49769749037.7 +UniRef50_X6C2W9 0.000310115802854 0.000114983011246 -78777502520.8 +UniRef50_G2BBB9 Putative nucleoside transporter yegT 0.00171577862372 0.000439834156204 -5.15114439137e+11 +UniRef50_X6GIM5 0.000130112802013 6.44902103573e-05 -26492645531.2 +UniRef50_O88167 0.00221287060048 0.000554384822661 -6.69551060415e+11 +UniRef50_U5MKZ1 0.000229061253196 0.000348014976398 48023077783.0 +UniRef50_J7RAK2 0.000317215116685 0.000446322476372 52122225431.1 +UniRef50_Q8CMQ9 Integrase like protein 0.0113498716223 0.00280029459856 -3.45156915959e+12 +UniRef50_F8FIU0 Fibronectin type III domain protein 8.53996801325e-07 6.67878014752e-06 2351536514.99 +UniRef50_P60620 Cytochrome c oxidase subunit 1 8.93576510755e-06 1.54255874919e-05 2620020935.64 +UniRef50_Q51281 SiaD protein 0.000279766792204 0.00306552384774 1.1246443084e+12 +UniRef50_UPI000361F695 hypothetical protein 7.44892389863e-06 9.42670065707e-05 35049525352.4 +UniRef50_UPI0003650B5E membrane protein 4.31011317786e-05 2.96292610492e-05 -5438759531.9 +UniRef50_V6PWB3 Putative hydroxylase 0.000272691389861 0.000117875560339 -62501050181.9 +UniRef50_Q5HQD3 0.00182654510736 0.00563515862993 1.53758401601e+12 +UniRef50_Q7VF14 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 8.76515453935e-05 0.00323515807234 1.27068700918e+12 +UniRef50_B0VKD0 7.58511699003e-05 0.00777058920826 3.10646017114e+12 +UniRef50_Q6G7H4 Pyrimidine nucleoside phosphorylase 0.0122171458195 0.00586089131741 -2.56609794251e+12 +UniRef50_Q8FJZ8 Anaerobic C4 dicarboxylate transporter DcuC 0.00352193410469 0.00116831931997 -9.50183170693e+11 +UniRef50_UPI0003B4CAB0 aldolase 9.76479805642e-05 1.28743834611e-05 -34224141439.5 +UniRef50_UPI000373CDB9 hypothetical protein 4.85989041993e-05 0.000143305684582 38234289423.4 +UniRef50_H5TWV5 6.02360653771e-06 0.000697741563537 2.79255027574e+11 +UniRef50_C3AIA3 Tetracycline resistance protein 0.0103959215818 0.00155327560326 -3.56988469301e+12 +UniRef50_P07959 Methyl coenzyme M reductase operon protein C 0.00416449740632 0.000727032411488 -1.38774680085e+12 +UniRef50_UPI0003C12BE2 1.29003850737e-06 2.13090961836e-05 8081939245.34 +UniRef50_F2LJU7 Glycogen debranching enzyme GlgX 0.0182449848315 0.00392154396091 -5.78254884785e+12 +UniRef50_Q65LN0 Allantoinase 3.46025831777e-05 1.54656460807e-05 -7725816342.69 +UniRef50_Q5LX31 SN glycerol 3 phosphate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 3.17856151176e-05 1.10146083009e-05 -8385510340.82 +UniRef50_F2A477 2.2322410781e-05 1.2745494446e-05 -3866318646.42 +UniRef50_L3HWN4 Inner membrane protein ybhI 0.00122010641195 0.000455474260252 -3.08691382732e+11 +UniRef50_G0DSV1 0.00068741921812 0.00454627958737 1.55786928461e+12 +UniRef50_B8EJI8 0.00304944529445 0.00181366132848 -4.98901151837e+11 +UniRef50_Q9CNG8 Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase 0.00317611417474 0.000903741174027 -9.17384865539e+11 +UniRef50_E3I7F3 Cobyrinic acid ac diamide synthase 6.51188190487e-06 2.9604269619e-05 9322680295.65 +UniRef50_S3AZM5 5.73249026795e-06 0.000143411487562 55582700718.9 +UniRef50_Q7VK29 Cysteine synthase 0.000124037017145 0.000809235523947 2.76623045527e+11 +UniRef50_X1PWX6 Marine sediment metagenome DNA, contig 0.000203948557329 2.91759596936e-05 -70557842366.2 +UniRef50_A5UP33 Smf protein 0.00237045253521 0.000628329949776 -7.03316265986e+11 +UniRef50_A5UMV5 Glycosyltransferase, GT2 family 0.00311328702917 0.000393755606923 -1.09790820757e+12 +UniRef50_Q9M2W3 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 2 8.90651653809e-06 4.08553745248e-05 12898146025.8 +UniRef50_M9VF88 NADH 0.000248346045292 0.00517352204749 1.98835399079e+12 +UniRef50_I0C542 Glucosyltransferase 0.00702717732491 0.00186684014285 -2.08329144486e+12 +UniRef50_C6XR84 NAD NADP transhydrogenase alpha subunit like protein 3.375892779e-05 2.75114240181e-05 -2522193938.21 +UniRef50_A6T5N6 Chaperone protein HtpG 0.00295740182287 0.00203979767318 -3.70448055499e+11 +UniRef50_UPI0003502022 PREDICTED 6.59694442395e-06 5.10526363105e-05 17947308347.3 +UniRef50_UPI00036716A7 hypothetical protein 0.00034260898122 0.000206929462571 -54775486653.5 +UniRef50_UPI000273E85C 1.66710369258e-05 1.32735879763e-05 -1371591832.3 +UniRef50_D4HEW0 2.2641612484e-05 7.59766278309e-05 21532000189.8 +UniRef50_A3PP38 D12 class N6 adenine specific DNA methyltransferase 0.0295629643443 0.00819118328052 -8.6280502767e+12 +UniRef50_Q9C667 Chaperonin 60 subunit beta 4, chloroplastic 0.000654434900095 0.000242194181819 -1.66426636731e+11 +UniRef50_A3PIP1 Response regulator receiver protein 0.0105161430133 0.000528925442146 -4.03196229041e+12 +UniRef50_G8TK26 RNA splicing ligase RtcB 8.2002749205e-05 0.0149749020992 6.01244622402e+12 +UniRef50_O67606 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 6.98981697952e-06 3.67666856289e-06 -1337558672.7 +UniRef50_UPI0003478999 hypothetical protein 0.000108983575444 5.82778421565e-05 -20470526757.5 +UniRef50_D6SIH2 0.00773108576611 0.000431119277652 -2.94708605205e+12 +UniRef50_F2ILR6 3.67618153701e-05 0.000181335033527 58365982282.9 +UniRef50_Q98M95 Glutamyl tRNA amidotransferase subunit A 0.000237147733297 0.00321669961322 1.20288165714e+12 +UniRef50_UPI000006751A nitrogen regulatory protein PII like protein 2.90375352569e-05 0.000316559149621 1.16076004006e+11 +UniRef50_U7GB94 0.000209100794515 7.97531594149e-05 -52219227563.8 +UniRef50_Q9RZM6 0.000335389401508 0.0308125016165 1.23039841974e+13 +UniRef50_Q9RZM4 2.93440201024e-05 0.0182123707272 7.34071101249e+12 +UniRef50_D9UC90 Primosome assembly protein 5.36994430255e-05 0.000192120849322 55882420343.4 +UniRef50_F9VK25 Stage IV sporulation protein B 0.000237593333424 0.00015680533019 -32615108285.8 +UniRef50_A6M0K3 Cell wall hydrolase autolysin 0.000159951690188 0.00144597104386 5.19181794309e+11 +UniRef50_P10802 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 6.3301171976e-05 5.15507726424e-06 -23474291968.0 +UniRef50_Q9LFG2 Diaminopimelate epimerase, chloroplastic 3.85265588537e-06 5.321586737e-05 19928534231.1 +UniRef50_UPI00037D35D7 hypothetical protein 5.04826590268e-06 5.81211378162e-06 308374762.196 +UniRef50_P37252 Acetolactate synthase small subunit 0.00933676689548 0.00595234761442 -1.36633159526e+12 +UniRef50_M4K5M0 ParB family protein 0.000130417110365 2.66638975414e-05 -41886445212.1 +UniRef50_L7WU10 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.0229378562368 0.00185423249822 -8.51171762843e+12 +UniRef50_Q58210 0.00333113857765 0.000994409133935 -9.43366351321e+11 +UniRef50_Q57240 0.00285942248103 0.000705470199178 -8.6957696815e+11 +UniRef50_UPI000380CA19 hypothetical protein 0.000670725298533 6.6742054874e-05 -2.43835447173e+11 +UniRef50_D1BKQ4 H+ gluconate symporter family protein 0.0010519512834 0.00100359164114 -19523381019.9 +UniRef50_A0A011PNK5 0.000344156712882 3.99706182979e-05 -1.22803659167e+11 +UniRef50_Q1QEV4 FAD linked oxidase like protein 0.000151593959689 0.0011586618294 4.06565657114e+11 +UniRef50_W7W9I9 0.000112080480659 3.27773555248e-05 -32015644775.5 +UniRef50_K2EIE6 0.000115988662284 1.71528319744e-05 -39901237548.0 +UniRef50_UPI000369EE8C hypothetical protein, partial 3.85010404535e-05 8.63873367583e-05 19332285449.2 +UniRef50_Q2JXY9 Argininosuccinate lyase 9.15670852882e-06 0.000960227028292 3.83958759034e+11 +UniRef50_UPI00047276FD hypothetical protein 2.240771927e-05 3.04648974198e-05 3252781691.77 +UniRef50_B6J8V2 Ribosomal RNA small subunit methyltransferase G 3.73457988256e-05 3.75329934262e-05 75572757.3983 +UniRef50_G6EGC5 Transposase orfA IS5 family element 0.000131747955477 3.54893419419e-05 -38860783510.1 +UniRef50_A6M244 ROK family protein 0.000395140146384 0.00126035496861 3.49297841112e+11 +UniRef50_UPI0003B46258 MerR family transcriptional regulator 1.02186792765e-05 3.10362588046e-05 8404312315.92 +UniRef50_T1Y643 Homoserine O acetyltransferase 0.0220777961045 0.00567906340118 -6.6203696274e+12 +UniRef50_Q67TJ2 Glutamate tRNA ligase 9.0908765729e-06 5.39233110824e-06 -1493148190.34 +UniRef50_Q28NX6 Peptidase C26 0.00376031513301 0.000221764734821 -1.42855621865e+12 +UniRef50_B5I692 FemAB family protein 0.000104277897476 0.00524993033346 2.07736303266e+12 +UniRef50_UPI0003FF96A6 acetoin dehydrogenase 5.91213572171e-06 6.65310139728e-06 299136935.899 +UniRef50_G7U900 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.000324076642087 0.00501435530289 1.89352305156e+12 +UniRef50_UPI0002BB164C hypothetical protein, partial 0.000752760874512 3.10622231675e-05 -2.91358601786e+11 +UniRef50_R9ZKB9 0.000632778810663 0.000157923371754 -1.91704967819e+11 +UniRef50_UPI00036951EF hypothetical protein 0.000114224825458 1.87470825162e-05 -38545536469.3 +UniRef50_UPI00029AC63E lipoprotein 0.00022402741466 0.00029801493067 29869668142.2 +UniRef50_O28869 0.00345681576594 0.000270106742557 -1.28651353806e+12 +UniRef50_Q5KVS7 Glucose 6 phosphate isomerase 0.0196472311772 0.00431797941711 -6.18860704662e+12 +UniRef50_A5N4G1 Predicted exonuclease, sbcD related 0.000184589725595 0.00202557158473 7.43226967919e+11 +UniRef50_A6LQF1 Cyanophycin synthetase 0.000383209800242 0.00149553764633 4.49060401264e+11 +UniRef50_UPI000237D1A0 glycosyl transferase family 2 2.34578425823e-06 1.45546533979e-05 4928870291.37 +UniRef50_B9EA45 0.0222995927599 0.00598240256256 -6.58744991709e+12 +UniRef50_UPI000367BC1F hypothetical protein 1.3456992275e-05 4.51487370868e-05 12794346282.0 +UniRef50_A6QFG9 0.00120786987179 7.80723290971e-05 -4.56113132159e+11 +UniRef50_UPI0001B411A5 hypothetical protein 9.64347673031e-06 8.33195899491e-05 29743951014.0 +UniRef50_F0P7Q5 0.0160609135859 0.00491912013685 -4.49807874058e+12 +UniRef50_UPI000441F369 PREDICTED 6.33286972501e-05 1.31135639454e-05 -20272465524.1 +UniRef50_A0A008L098 0.00222858040339 9.73231091071e-05 -8.60414723169e+11 +UniRef50_A0A023RT67 Recombinase RecJ 0.000428290547263 0.0074692410761 2.84251813067e+12 +UniRef50_UPI0003AD2C67 hypothetical protein 1.7277101794e-05 1.61649365713e-05 -448994748.206 +UniRef50_V6AFL3 Adenylate cyclase ExoY 0.000138593579664 0.00019716638215 23646559132.7 +UniRef50_D4C552 0.000190566528155 3.92674169929e-05 -61081307825.0 +UniRef50_UPI00045E7BD4 hypothetical protein 1.81398285667e-05 0.000196590260626 72042629255.3 +UniRef50_N8QX29 Xanthine dehydrogenase, molybdopterin binding subunit 0.000104910389847 0.00467287113743 1.84414180898e+12 +UniRef50_Q8DJI6 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.58099323551e-05 5.2057926529e-05 10596637347.1 +UniRef50_UPI00039EE060 ABC transporter 3.88789797729e-05 9.2715503884e-06 -11952882566.5 +UniRef50_UPI000367431C hypothetical protein 4.24488767584e-05 7.02169458706e-05 11210310253.1 +UniRef50_UPI00046A42D3 chorismate synthase 3.36033416549e-05 0.000236886933603 82068080639.6 +UniRef50_A8ZRA0 5.31940108974e-05 0.000435891815777 1.5449980006e+11 +UniRef50_UPI00035FEBAF hypothetical protein 8.07162110912e-06 1.62704253049e-05 3309957864.48 +UniRef50_G2KPL2 Peptidase family protein 0.00667241015808 0.00039771085885 -2.53317310632e+12 +UniRef50_T2NPH9 Replication initiator protein A 1.06512431815e-05 3.93353567687e-06 -2712020955.16 +UniRef50_UPI00037D884A hypothetical protein 7.32418851186e-06 8.82000246976e-06 603878450.506 +UniRef50_I0JNK1 1.6322291331e-05 0.000337185199121 1.29536293305e+11 +UniRef50_D9XJC0 Membrane protein 2.31089126233e-05 0.000178491167535 62729723062.7 +UniRef50_I8T5U4 6.88107187659e-06 9.41439292289e-06 1022732793.74 +UniRef50_V9U5D1 Glucose dehydrogenase, PQQ dependent 0.000107996423873 0.000175601094017 27292834939.7 +UniRef50_Q4EGL3 0.000823817679494 0.000668157208554 -62842042287.3 +UniRef50_B2SN64 Transposase 4.3793530486e-05 4.66550276483e-05 1155221518.94 +UniRef50_E7C3H5 3.16452068409e-05 7.80869650284e-05 18749107684.8 +UniRef50_O26742 Amidophosphoribosyltransferase 0.0050534274218 0.000462455283042 -1.85343178998e+12 +UniRef50_Q8G4N5 Glucosamine 6 phosphate deaminase 0.000147072463189 0.0092741485904 3.68471263437e+12 +UniRef50_Q7NIN3 Glr2150 protein 0.000102304241555 2.40424478018e-05 -31595246518.4 +UniRef50_W1WKJ1 0.000397970577398 0.000216837997998 -73125445050.5 +UniRef50_A0A031MHL6 Cell envelope biogenesis protein AsmA 2.99540603059e-06 3.65767464293e-06 267365965.751 +UniRef50_D5BS30 Sigma 54 factor, interaction domain containing protein 0.000700330193782 0.000379545576868 -1.29504686318e+11 +UniRef50_Q3J0T0 0.000646997659652 0.000142895179933 -2.03512357096e+11 +UniRef50_A6LQ65 Methyl accepting chemotaxis sensory transducer 0.000365981802222 0.00140646844007 4.20057223907e+11 +UniRef50_A4X0R7 0.00644322093392 0.00160181958655 -1.95453313461e+12 +UniRef50_O24840 Vanillate O demethylase oxidoreductase 0.000314880505132 0.00527513316205 2.00251486674e+12 +UniRef50_UPI00046C42D9 hypothetical protein 7.14613610598e-05 2.88729842449e-05 -17193450338.3 +UniRef50_B0VB22 9.88183216845e-05 0.0041347927619 1.62937240849e+12 +UniRef50_B0VB20 0.000318538859112 0.00626094244143 2.39902124767e+12 +UniRef50_A9BPH5 Short chain dehydrogenase reductase SDR 0.000705800219024 0.00170343325922 4.02756700661e+11 +UniRef50_P0A9W9 Protein YrdA 0.00655498018095 0.000714475899663 -2.3578832494e+12 +UniRef50_A5W6Z8 Secretion protein HlyD family protein 0.00028106402456 0.000690722597151 1.65384192831e+11 +UniRef50_A0A010CI18 NADH Ubiquinone plastoquinone , various chains family protein 4.12402755456e-05 0.00821939322886 3.30162070447e+12 +UniRef50_UPI0003751049 hypothetical protein 0.00010104579499 7.51811001052e-05 -10441894720.5 +UniRef50_Q9HT80 DNA polymerase I 0.00103406233443 0.00043250494265 -2.42856101001e+11 +UniRef50_T1Y610 0.000146545134284 0.00613152149577 2.41620840105e+12 +UniRef50_C5N439 0.000235292073609 0.000171647324285 -25694166311.0 +UniRef50_Q5HL38 0.0110486985956 0.00428705518929 -2.72975841782e+12 +UniRef50_A8A3U8 0.000719696361998 8.60666818562e-05 -2.55804077384e+11 +UniRef50_UPI000472CA5C hypothetical protein 6.43896811173e-06 8.62242754956e-06 881489369.112 +UniRef50_UPI00029B279A Multidrug resistance protein B 6.0510122889e-05 6.15763859342e-05 430463475.866 +UniRef50_A1ITE9 0.000126319946328 0.00275991484761 1.06321457949e+12 +UniRef50_D3QEC0 0.0163901254999 0.00960004716909 -2.74123794578e+12 +UniRef50_D9PI46 Anaerobic ribonucleoside triphosphate reductase 7.5949307983e-06 4.60032424054e-05 15505906718.8 +UniRef50_A5N7H7 Elongation factor P 1.55968502521e-05 0.0426891304434 1.72278291747e+13 +UniRef50_UPI00047B3307 2 oxoglutarate dehydrogenase 7.76820426213e-06 1.85318109727e-05 4345400113.38 +UniRef50_UPI0002E03285 DNA invertase 2.54251917311e-05 3.57471469051e-05 4167099968.38 +UniRef50_A0JUR7 0.00129515090857 0.000138863654487 -4.66807353712e+11 +UniRef50_Q5PD59 1 deoxy D xylulose 5 phosphate reductoisomerase 0.0037103666585 0.000341117440018 -1.36020725484e+12 +UniRef50_A5UN26 Adhesin like protein 0.0029855196713 0.000614581668948 -9.5717676623e+11 +UniRef50_A9M0Z2 Transcriptional regulator, GntR family 0.000368279987221 0.00487170587606 1.81808829457e+12 +UniRef50_Q97FJ7 Histidine tRNA ligase 0.00029003408909 0.00239699428721 8.5060568729e+11 +UniRef50_UPI00035948EC PREDICTED 0.000195795314811 3.77195549588e-05 -63817124060.0 +UniRef50_A9VXT4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.31172798897e-05 1.05140873988e-05 -1050940753.34 +UniRef50_P75683 0.00468534609453 0.000317066161402 -1.76352821383e+12 +UniRef50_I6XWT7 Putative membrane protein 4.08456250764e-06 4.00216596027e-05 14508247095.1 +UniRef50_Q9K9Y6 Methionyl tRNA formyltransferase 7.07292589424e-05 0.00290777729888 1.14535110822e+12 +UniRef50_UPI00034BF683 hypothetical protein 1.49939838868e-05 0.000449191572737 1.75290894822e+11 +UniRef50_Q72IZ2 3 dehydroquinate dehydratase 9.07561168501e-06 0.000261791661786 1.020245706e+11 +UniRef50_A3U3D3 Plasma membrane H+ transporting two sector ATPase, C subunit 0.000114228248787 7.14485615967e-06 -43230879664.5 +UniRef50_Q9RYR1 Drug transport protein, putative 0.000167974581064 0.0463035166276 1.86254844709e+13 +UniRef50_A7WZL5 NADPH dependent 7 cyano 7 deazaguanine reductase 0.00775421760795 0.00387249937466 -1.56709728482e+12 +UniRef50_UPI0003705A0C hypothetical protein 0.000175433454206 2.96093308216e-05 -58870988073.3 +UniRef50_UPI0003B754B6 ribonucleotide reductase 0.000144850145886 4.33279484981e-05 -40985756903.0 +UniRef50_Q6MRB4 Peptidyl prolyl cis trans isomerase 0.000386504425449 0.00115397339753 3.09836641932e+11 +UniRef50_P76115 Probable TonB dependent receptor YncD 0.00295143498858 0.000505566997642 -9.87426922118e+11 +UniRef50_S7SQK8 7.49983968557e-05 0.000408041683551 1.34453661739e+11 +UniRef50_UPI000368D785 50S ribosomal protein L18 0.000291848880704 0.000374913687894 33534281982.4 +UniRef50_F0L6J1 Phage head tail adaptor, putative 0.000147494199766 3.63863583542e-05 -44855599024.6 +UniRef50_C3MPM7 Putative homocitrate synthase 5.63669371205e-06 6.23696139638e-06 242335430.277 +UniRef50_W7IM88 Basic proline rich protein 0.000409832247236 0.00121088808614 3.23396072226e+11 +UniRef50_M7E5A1 Transcriptional regulator 0.00220494730898 0.00237547100366 68842508103.4 +UniRef50_Q8EU05 Chaperone protein ClpB 0.0247646079631 0.00952868829424 -6.15092773609e+12 +UniRef50_W8YJN0 1.38016112723e-05 3.88517871222e-06 -4003385512.82 +UniRef50_B8HD15 DNA directed RNA polymerase subunit beta 1.12081497368e-06 2.1767736576e-06 426303478.769 +UniRef50_Q2SLW2 0.0128722193078 0.00348560611979 -3.7894909307e+12 +UniRef50_N6V4C3 1.5897912198e-05 3.14331906628e-05 6271782555.54 +UniRef50_F9Z195 General stress protein 18 0.00153185020708 0.00212919752469 2.41156442395e+11 +UniRef50_D7C5U0 Putative transposase 0.00014173441384 2.56217850212e-05 -46876093116.4 +UniRef50_Q112U2 2 isopropylmalate synthase 8.42501691609e-06 7.14928699111e-06 -515027825.681 +UniRef50_W8ELK9 0.000283824051773 0.0327675493836 1.31140785366e+13 +UniRef50_Q8REI2 Phosphoenolpyruvate carboxykinase [ATP] 6.7519069994e-05 0.000232572673693 66634165248.8 +UniRef50_P66796 Transcriptional regulatory protein QseB 0.00539811051595 0.00100044731139 -1.77539060108e+12 +UniRef50_A4WSD0 Peptidase M10, serralysin like protein 0.00521191045347 0.000993631563196 -1.7029709521e+12 +UniRef50_UPI000289FD65 4 aminobutyrate aminotransferase 1.81435147512e-05 4.14596367657e-05 9413004578.25 +UniRef50_G7TM97 Transposase 8.06649017537e-05 8.07928527599e-05 51655391.3384 +UniRef50_UPI000477CB4F competence protein 1.67072136466e-05 5.16583603867e-05 14110206837.8 +UniRef50_UPI00047E2083 DNA methyltransferase 0.000260768841586 3.669612539e-05 -90460905209.8 +UniRef50_B9TL13 0.000263490443481 2.07580048946e-05 -97994064119.1 +UniRef50_B2TY69 L ribulose 5 phosphate 3 epimerase UlaE 0.00716465716996 0.00190688735354 -2.12262619498e+12 +UniRef50_G6WW76 6.44473277577e-06 2.45662451119e-05 7315876906.05 +UniRef50_UPI0004748BDD gamma aminobutyrate transporter 4.3059068077e-05 3.62352811614e-05 -2754846515.11 +UniRef50_Q984R8 Mll7872 protein 0.00505073996962 0.00293988175331 -8.52179365068e+11 +UniRef50_UPI00046AA572 hypothetical protein 8.24278590113e-05 1.42468867842e-05 -27525495162.7 +UniRef50_T2ERS5 ThiS family protein 0.00073597620894 0.000629609229193 -42941654993.5 +UniRef50_A0A023B8B3 Mannitol 1 phosphate 5 dehydrogenase 0.000298279819145 0.00165305769918 5.46940455162e+11 +UniRef50_Q28WH8 DNA replication and repair protein RecF 0.000252315474186 0.000216085394041 -14626527947.6 +UniRef50_Q5WIY8 UPF0061 protein ABC1129 0.00162702334017 0.000255280239051 -5.53789523103e+11 +UniRef50_T1UB30 2Fe 2S iron sulfur cluster binding domain protein 4.51718375123e-05 0.00488516038783 1.9539627711e+12 +UniRef50_P37348 UPF0759 protein YecE 0.00462548368307 0.00014278003475 -1.80972247179e+12 +UniRef50_A6LQ22 0.000114191745239 0.000593659434454 1.93566989866e+11 +UniRef50_Q1QJ51 Plasmid pRiA4b ORF 3 like protein 0.000737483724494 0.000181415859819 -2.24491420689e+11 +UniRef50_Q2G9L9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.88487480464e-05 4.38577380205e-05 10096436147.4 +UniRef50_UPI0003B59A94 multifunctional thiamine phosphate pyrophosphorylase synthase phosphomethylpyrimidine kinase 1.77653957336e-06 5.40618774014e-06 1465333505.72 +UniRef50_R9ZI95 Permease 0.000345083417731 0.00025270440596 -37294540669.9 +UniRef50_K7E1C1 4.11234176044e-05 0.000131489990034 36482094212.4 +UniRef50_UPI00037069EF hypothetical protein 0.000997448646457 0.000186076506911 -3.27560889391e+11 +UniRef50_UPI0003A0F8A6 multidrug ABC transporter 6.52231020067e-06 9.83621338787e-06 1337863382.84 +UniRef50_UPI000366C76B hypothetical protein 1.72109776187e-05 2.42444752061e-05 2839509286.75 +UniRef50_UPI00047A127F hypothetical protein, partial 1.03045952952e-05 5.41826658911e-06 -1972670860.64 +UniRef50_N0C7C0 0.00010351544844 1.84628383033e-05 -34336782425.1 +UniRef50_R5TZB6 Serine type site specific recombinase 4.66910961006e-06 6.37368521561e-05 23846372508.5 +UniRef50_A6M1X4 Integral membrane sensor signal transduction histidine kinase 0.000497535274587 0.00168789813419 4.80564093815e+11 +UniRef50_Q3IWH8 Monosaccharide ABC transporter membrane protein, CUT2 family 0.000480805459153 0.000537102098988 22727644338.8 +UniRef50_Q2JEW7 Peptide chain release factor 2 0.000324542305157 0.00715934401933 2.75929332446e+12 +UniRef50_UPI000378DC18 hypothetical protein 2.42674456496e-05 0.000669922351288 2.60658808483e+11 +UniRef50_A6LV85 Acyl CoA reductase 0.000718953346337 0.000277641058241 -1.78163186215e+11 +UniRef50_B9KQH0 Surface presentation of antigens protein 0.000738609622789 0.00025641974288 -1.94665971654e+11 +UniRef50_O34524 0.000617140576002 0.00996073330303 3.77212304268e+12 +UniRef50_O34528 0.0223612953812 0.0128162254107 -3.85346187827e+12 +UniRef50_A3K289 0.000253970181563 0.000199518510071 -21982807978.5 +UniRef50_A0A024HL97 Tfp pilus assembly protein FimV like protein 0.000367197889944 0.000347124463957 -8103888399.59 +UniRef50_O34399 Glutamate synthase [NADPH] small chain 0.000262874899951 0.000188549734911 -30005981199.0 +UniRef50_UPI000466D49C MerR family transcriptional regulator, partial 0.000148723013654 5.64077664973e-05 -37268798112.6 +UniRef50_X2LHR6 Membrane protein 8.87340474343e-05 4.00246771841e-05 -19664570501.2 +UniRef50_D8HHG7 Oligopeptide transport system permease protein 0.0208734744225 0.00799086548262 -5.20086731643e+12 +UniRef50_UPI0003678A6C hypothetical protein 0.000116784882914 0.00100274328979 3.57672280788e+11 +UniRef50_K4RMU3 0.000149591651585 0.00177318598734 6.55464957085e+11 +UniRef50_UPI0003B36F4D deoxyguanosinetriphosphate triphosphohydrolase 8.93330321074e-05 4.87592448265e-06 -34096370753.3 +UniRef50_A5UKV8 Transcription factor E 0.00198145076882 0.00241596460533 1.75418567883e+11 +UniRef50_Q58776 Carbamoyl phosphate synthase large chain, C terminal section 3.69623660093e-06 4.61748399215e-06 371918876.812 +UniRef50_D3FXA1 Maltose 6 phosphate glucosidase 0.00035836395335 0.00096934289196 2.46659695072e+11 +UniRef50_Q3B5D7 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.002400849882 0.00435074489391 7.87196544211e+11 +UniRef50_UPI00035E5E43 phosphoadenosine phosphosulfate reductase 1.23817433671e-05 1.48557340296e-05 998780389.731 +UniRef50_T6G328 Cellulose synthase operon protein C 0.00129396281663 0.000957783908741 -1.35719550494e+11 +UniRef50_A3VEJ1 0.000444393589432 9.03400220697e-05 -1.4293576987e+11 +UniRef50_D8JH08 Glycosyltransferase 0.000103138248322 0.00541688800923 2.14522598552e+12 +UniRef50_U5C5S7 Diguanylate cyclase 1.09275803765e-05 2.67453879418e-05 6385843020.44 +UniRef50_U6LUD4 8.92256604042e-05 2.86174308354e-06 -34866173226.8 +UniRef50_UPI0003B5E99A ABC transporter ATP binding protein 4.59557131052e-05 3.73826270668e-05 -3461060037.3 +UniRef50_UPI00046CEEA5 molecular chaperone DnaJ 5.95410379858e-06 1.2688863168e-05 2718905002.23 +UniRef50_F0YA66 8.83478903997e-05 0.000170321170381 33093619053.7 +UniRef50_UPI000334479B 0.000139007215315 1.88669000931e-05 -48502119542.6 +UniRef50_E2X9M1 Aminotransferase ybdL 0.00184529252433 0.00286621198888 4.12157715929e+11 +UniRef50_K1UU32 2.50061002935e-05 0.000293455818119 1.08376445334e+11 +UniRef50_UPI00016A9AD4 hypothetical protein 4.0847542826e-05 0.000589767964132 2.21605910092e+11 +UniRef50_UPI00040938D6 hypothetical protein 0.000220482418773 0.000125058312731 -38523882594.6 +UniRef50_N2SSM7 0.0019280697607 0.00082244256931 -4.46355264735e+11 +UniRef50_I7EXB5 Transcriptional regulator, crp family 0.0104585766102 0.00130243789297 -3.6964455586e+12 +UniRef50_A0A024J5P9 PT4 plasmid pSEN complete sequence 0.000138337080483 3.097870364e-05 -43341894167.0 +UniRef50_UPI0003628CAF hypothetical protein 2.2975470911e-05 7.02839971091e-05 19099032567.1 +UniRef50_UPI00046F7609 hypothetical protein 1.46937681586e-05 7.05245367116e-06 -3084892428.05 +UniRef50_UPI0003B489CA osmotically inducible protein C 2.68857376963e-05 0.00041902617396 1.58311906224e+11 +UniRef50_A4SX51 4 hydroxy tetrahydrodipicolinate synthase 1.93366192167e-06 0.00332901239602 1.3431825128e+12 +UniRef50_Q7VQH3 Enolase 6.72655475916e-06 8.37025034364e-05 31076135082.1 +UniRef50_UPI0003B4EABD glutathione ABC transporter ATP binding protein 3.42985529122e-05 8.74882351872e-06 -10314739286.6 +UniRef50_Q6HIL6 Aminoacyl histidine dipeptidase 0.000441692564831 0.00147816165059 4.18435288827e+11 +UniRef50_A0A010RX66 FeS assembly SUF system protein SufT 3.47460799616e-05 1.82654595147e-05 -6653428714.37 +UniRef50_Q0BZZ7 Leucyl phenylalanyl tRNA protein transferase 1.56375383004e-05 8.70577484469e-05 28833215260.7 +UniRef50_E5QX84 FemAB family protein 0.00177613647485 0.000818874771081 -3.86458296734e+11 +UniRef50_D3RSC1 Channel protein, hemolysin III family 0.00103914905486 0.00460063178917 1.43781428415e+12 +UniRef50_B8DU54 N acetyl gamma glutamyl phosphate reductase 4.90738185783e-06 4.17962484976e-05 14892488139.8 +UniRef50_Q32DZ9 Macrolide export ATP binding permease protein MacB 0.00245916948009 0.00751820202898 2.0423935213e+12 +UniRef50_Q39DM7 Lipoprotein signal peptidase 1.00534669996e-05 1.41608542239e-05 1658202625.76 +UniRef50_UPI0004649C8D hypothetical protein 2.63068782168e-05 0.000448050045238 1.70262891897e+11 +UniRef50_UPI00047D766C hypothetical protein, partial 3.27853940596e-05 0.000121718239298 35903280951.5 +UniRef50_M4R6E9 0.000120090982672 0.00887181905202 3.53318001738e+12 +UniRef50_Q4FLF9 0.00015664136019 0.00011206727551 -17995104970.8 +UniRef50_UPI000479CDCE 2 dehydro 3 deoxyglucarate aldolase 5.40681904213e-05 0.000266721665744 85850817539.5 +UniRef50_UPI0002487D7B acetyl coenzyme A carboxylase carboxyl transferase subunit alpha, partial 4.88790991124e-05 6.98960571484e-05 8484803866.21 +UniRef50_UPI000373F182 hypothetical protein 5.6295157099e-05 3.30448465982e-05 -9386435662.57 +UniRef50_Q0APY8 NADH quinone oxidoreductase subunit C 2.75652124762e-05 8.26231325499e-05 22227557970.4 +UniRef50_UPI0004684D4E hypothetical protein 7.90466004188e-05 6.14511739312e-06 -29431223299.3 +UniRef50_UPI0003483C97 enterobactin synthase subunit E 9.13260739982e-06 9.06480870182e-06 -27371166.3662 +UniRef50_P98056 Cytochrome c oxidase subunit 1 homolog 0.0159992512386 0.00407442433173 -4.8141989564e+12 +UniRef50_C4J5K8 7.33644543172e-05 0.000110093291758 14827882388.4 +UniRef50_A0A038FVW1 0.00194378103861 0.000869060161542 -4.33878006381e+11 +UniRef50_A5D673 Ribosomal RNA small subunit methyltransferase A 2.57680851907e-05 3.95226139847e-05 5552872061.19 +UniRef50_R0VZS5 0.000272881437722 0.000840817278291 2.29282668194e+11 +UniRef50_A4XVG5 tRNA hydroxylase 1.74303463571e-05 2.2774140044e-05 2157355087.12 +UniRef50_C1C6G4 Phosphopentomutase 9.31182504493e-06 0.00172357261924 6.92068118964e+11 +UniRef50_P46142 0.00326827337522 0.00326637525416 -766294764.487 +UniRef50_L2FJJ5 0.000221790923321 0.000347025143457 50558591465.6 +UniRef50_UPI0002481AA7 HNH endonuclease 6.25581804485e-05 0.000291068496274 92252418635.5 +UniRef50_Q3ERE1 Glyoxalase family protein 2.75957091276e-05 6.53811834026e-05 15254459644.7 +UniRef50_A4VFG0 DNA replication and repair protein RecF 0.00108757033358 0.000168752402972 -3.7093807375e+11 +UniRef50_Q7MPS9 Coenzyme A biosynthesis bifunctional protein CoaBC 4.90296427519e-06 0.00983473126448 3.96842231035e+12 +UniRef50_F0YFY9 Expressed protein 0.000321829127345 8.14483474937e-05 -97044670629.7 +UniRef50_UPI000477A5E2 esterase 2.31573265716e-05 2.50088657895e-05 747489103.207 +UniRef50_R4K9X6 Histone acetyltransferase 0.00048863819959 0.00057457299213 34692930286.9 +UniRef50_UPI000373FF71 hypothetical protein, partial 0.000189351075232 0.00121353888747 4.13477187999e+11 +UniRef50_P56344 Probable sulfate thiosulfate import ATP binding protein CysA 0.000326014037735 0.00063019506874 1.22801614938e+11 +UniRef50_U2YS21 8.29061710019e-05 2.69220006621e-05 -22601496569.2 +UniRef50_UPI0003B47B9D phosphoserine phosphatase 7.27479541771e-06 6.2176451837e-05 22164472415.6 +UniRef50_D9PXN6 Predicted FMN binding protein 0.00333368724754 0.00315977803809 -70209281961.0 +UniRef50_X7YJ52 0.000102272572425 0.000268205598858 66989198998.2 +UniRef50_A6LZ14 Histidine kinase 0.000363552531713 0.00106260980889 2.82218001194e+11 +UniRef50_UPI00029B24CC ABC transporter ATP binding protein 5.23770564565e-06 1.04307660585e-05 2096502214.68 +UniRef50_UPI0003B4577C glycerophosphoryl diester phosphodiesterase 1.78689747671e-05 3.6949382523e-05 7702994753.99 +UniRef50_A5FIF9 Potassium transporting ATPase A chain 1.6601689039e-05 0.000636217310842 2.50146430061e+11 +UniRef50_R1ECI7 0.000105171558425 3.12205684646e-05 -29854922127.7 +UniRef50_A5UMH5 Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein 0.00472363961608 0.000369882571866 -1.75766514535e+12 +UniRef50_B2V2P3 Potassium transporting ATPase B chain 1.63452256546e-05 0.002423084106 9.71630020005e+11 +UniRef50_C5AFT1 3.19673248271e-06 4.93265961176e-06 700815084.219 +UniRef50_I6SKB7 8.54685257742e-05 0.00025998863244 70455908663.6 +UniRef50_UPI00047C2684 heme ABC transporter ATP binding protein, partial 2.22389484138e-05 5.89882157414e-05 14836130184.4 +UniRef50_Q02D08 1.12706255176e-06 4.04873467183e-06 1179514887.82 +UniRef50_T4AYR7 1.12007093861e-05 0.00058452326449 2.31457350954e+11 +UniRef50_P78061 Gamma glutamylputrescine synthetase PuuA 0.00277756912532 0.0010832730307 -6.84008124749e+11 +UniRef50_UPI000255867E 2 oxoglutarate dehydrogenase E1 component, partial 0.00104919019045 0.000250916264812 -3.22272979703e+11 +UniRef50_A6V9I8 Transcriptional regulator, IclR family 0.000141912025886 0.000224007614567 33142996576.7 +UniRef50_UPI00047CE41F cobyrinic acid ac diamide synthase 1.03982454129e-05 0.000351779307616 1.37819724028e+11 +UniRef50_UPI0003B63533 hypothetical protein 2.42599647117e-06 1.81878987992e-05 6363273390.11 +UniRef50_R5K0I5 Succinylglutamate desuccinylase aspartoacylase family protein 0.00071303448488 0.0011968151233 1.95308180386e+11 +UniRef50_F6A168 Ribose phosphate diphosphokinase 0.000121769673823 0.00506318515864 1.99491006921e+12 +UniRef50_E8XM67 Sugar isomerase 0.000117110441217 0.000847689409131 2.94943694559e+11 +UniRef50_F8I099 0.000611610658559 0.000512109893401 -40169679906.0 +UniRef50_G8VD13 0.000236722445266 0.00626147268981 2.43226560572e+12 +UniRef50_UPI0004799DC8 hypothetical protein 0.000380379168068 0.000300859920205 -32102896173.2 +UniRef50_U7XP25 0.000269414159434 8.82064208499e-05 -73155787735.4 +UniRef50_UPI0002192501 orotidine 5 phosphate decarboxylase 2.37904616812e-05 1.87089760298e-05 -2051458114.31 +UniRef50_E6MY39 Integral membrane protein, TerC family 0.000425114300719 0.00331958120825 1.16853180967e+12 +UniRef50_A0A011MY44 0.000419811279834 0.000213369683161 -83343005900.2 +UniRef50_UPI00045EC444 MULTISPECIES 4.56243753824e-05 0.000178845533318 53783016266.2 +UniRef50_P18655 Superoxide dismutase [Fe] 0.000209182091079 0.00989638475921 3.91084259247e+12 +UniRef50_H1XFI5 8.09693929749e-05 0.000148522370356 27271965937.0 +UniRef50_G8YAV0 Piso0_003726 protein 7.5801331218e-05 6.26869973003e-05 -5294417533.55 +UniRef50_N1PMQ8 0.00030640197148 4.07225282362e-05 -1.07258051491e+11 +UniRef50_UPI000475D591 dihydroxyacetone kinase 2.19143319423e-05 0.00140134008676 5.56891104678e+11 +UniRef50_C1DHH8 ATPase 0.000649131792001 0.000230416154893 -1.69040640919e+11 +UniRef50_A0A023LEW3 Alpha glucosidase 6.12801929925e-05 0.0052148332585 2.08055261375e+12 +UniRef50_Q8VKN7 6.29670387241e-06 1.07078299469e-05 1780825726.88 +UniRef50_Q1RH88 Superoxide dismutase [Mn Fe] 0.0142665702873 0.00206412280495 -4.92627778951e+12 +UniRef50_F7XC58 9.66468652764e-05 0.000153974498951 23143869203.6 +UniRef50_O29305 Putative citramalate synthase CimA 9.85587393296e-06 8.43191625646e-06 -574869187.929 +UniRef50_A0A021VTG9 0.000522850429058 5.88000292878e-05 -1.87342840926e+11 +UniRef50_UPI00047321C0 hypothetical protein 1.10077850133e-05 3.59148908571e-05 10055304273.7 +UniRef50_UPI00016B24E2 ParBc, ParB like nuclease domain 6.13311405551e-05 0.000147060557432 34610017611.5 +UniRef50_V9WPS8 Amino acid amide ABC transporter membrane protein 1, HAAT family 0.00222733025922 0.000198379278247 -8.19112409046e+11 +UniRef50_R0FMF6 GroEL 6.53273618061e-05 9.35560152661e-05 11396253806.3 +UniRef50_X7ZV72 Phosphate transport system regulatory protein PhoU 8.32713880959e-05 8.31884353647e-05 -33489035.5299 +UniRef50_Q0T014 Ribosomal RNA small subunit methyltransferase B 0.00120467493848 0.00106664618137 -55723903048.6 +UniRef50_UPI0004706840 peptide ABC transporter permease 3.23218171704e-05 4.80640587833e-05 6355336118.16 +UniRef50_UPI0003B45E5B DNA binding protein 7.44333343155e-05 5.2317880045e-05 -8928280276.14 +UniRef50_A5UJQ1 0.00105887354879 0.00521147126815 1.67645465741e+12 +UniRef50_A3MIQ3 Ribosomal RNA large subunit methyltransferase E 2.21831080099e-05 1.86277336423e-05 -1435348261.55 +UniRef50_UPI0000589E14 lipase precursor 3.55362576152e-05 7.2788740764e-05 15039284586.5 +UniRef50_K7RQY3 0.000150274598074 0.00514991660644 2.01841683129e+12 +UniRef50_F5ZJA3 Sugar phosphotransferase system , fructose specific family, IIA component 0.015177861392 0.000944818631634 -5.74605402145e+12 +UniRef50_Q6F6T5 0.000501388787585 0.00868347257601 3.30320763084e+12 +UniRef50_A6LW88 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.000126138646943 0.000651658453119 2.12158794606e+11 +UniRef50_W0YNW4 7.01612079588e-06 2.95233096548e-05 9086428336.6 +UniRef50_W4L1M8 Transposase 0.000174014206572 3.41946304079e-05 -56446878676.5 +UniRef50_Q51553 3 hydroxydecanoyl ACP 0.00140668223391 0.000752361305051 -2.64157388401e+11 +UniRef50_A0A011ADX1 6.99444431263e-05 0.000212170503735 57418405977.9 +UniRef50_UPI00037AB267 hypothetical protein, partial 5.66621318132e-05 2.49311605579e-05 -12810182478.6 +UniRef50_P25737 Lysine specific permease 0.00249548155058 0.00488824239397 9.65986914954e+11 +UniRef50_C0RHG6 Acyl carrier protein 0.000338002579601 0.000191085208011 -59312345789.8 +UniRef50_A4SPY8 Protoheme IX farnesyltransferase 0.00039825013826 0.000445581439861 19108227276.7 +UniRef50_Q7NCB3 Histidine ammonia lyase 4.04661499628e-06 0.000134032436819 52476871375.4 +UniRef50_D3QF58 0.0203457905748 0.00643766207458 -5.61488214746e+12 +UniRef50_A7GH10 Hydroxylamine reductase 0.00158530852508 0.00594621253458 1.76055046295e+12 +UniRef50_V4LC05 0.000798113668843 0.00710971190178 2.54806965866e+12 +UniRef50_I1ETG1 3.52754462037e-05 0.000169458697536 54171425176.4 +UniRef50_Q8DT71 0.0054133210093 0.00195081796078 -1.39785497038e+12 +UniRef50_C8WK91 Ribonucleoside diphosphate reductase 0.000477928081877 0.00498457766182 1.81938973823e+12 +UniRef50_R6MV50 YhgE Pip domain containing protein 1.93807897204e-06 2.66910386231e-06 295123718.886 +UniRef50_Q1QD84 Oxidoreductase FAD NAD binding protein 0.000199376402564 0.00440452132928 1.69766860985e+12 +UniRef50_M1N4C4 0.000458260744925 0.00101186102153 2.23495225105e+11 +UniRef50_G9W9B6 Lytic murein transglycosylase A 0.000203952295823 0.000105386109817 -39792378833.7 +UniRef50_UPI0003829C73 hypothetical protein 3.2324916855e-05 1.55566559619e-05 -6769552692.24 +UniRef50_N1TQ93 0.00122376959817 6.87404981134e-05 -4.66299421495e+11 +UniRef50_P43776 Dihydropteroate synthase 1.37244210234e-05 3.83064970167e-05 9924085734.49 +UniRef50_U5MM75 Penicillin binding protein 2 0.000333906849212 0.000867423522824 2.15387228123e+11 +UniRef50_A3JXA6 7.51889537345e-06 6.16230519746e-06 -547672101.281 +UniRef50_E7PVL4 ATP dependent RNA helicase 0.00706131630633 0.00217890348774 -1.97108996881e+12 +UniRef50_W5YDQ8 WGR domain protein 4.02986314239e-05 2.83023336403e-05 -4843052626.37 +UniRef50_UPI00047B87BE hypothetical protein 1.03875925507e-05 1.22380565238e-05 747055013.687 +UniRef50_F5Y7Q0 0.000466097504455 0.000276147879794 -76684994419.7 +UniRef50_P77239 Cation efflux system protein CusB 0.00140393574094 0.00125949925404 -58310782196.5 +UniRef50_UPI0004770378 osmolarity response regulator 6.2225459383e-05 1.35064869502e-05 -19668447020.1 +UniRef50_UPI0004423ADB 9.06321061685e-05 7.32655782173e-05 -7011080445.16 +UniRef50_UPI0003610585 hypothetical protein 5.60287531799e-05 9.92854331527e-05 17463252524.2 +UniRef50_P0AG95 Protein translocase subunit SecF 0.00305960301017 0.00116199895728 -7.66086042372e+11 +UniRef50_A5I292 0.00055336550322 0.000667194260053 45954065969.4 +UniRef50_Q2YPH2 Ornithine carbamoyltransferase 0.00761994435818 0.00243608949716 -2.09278582045e+12 +UniRef50_UPI00037DDC0E DNA methyltransferase, partial 0.00369546221871 0.00116877074279 -1.02005635482e+12 +UniRef50_Q8CU98 0.00909106441186 0.00209884474821 -2.8228448824e+12 +UniRef50_Q8CU99 0.194123181874 0.0585038462355 -5.47511900335e+13 +UniRef50_UPI00042902E2 stomatin 2 3.94750126377e-05 1.0054857513e-05 -11877277649.7 +UniRef50_Q7VNN7 Phosphopantetheine adenylyltransferase 2.78514845551e-05 1.77881648403e-05 -4062685659.68 +UniRef50_Q8CU97 0.00713801646976 0.00325368309714 -1.56815304866e+12 +UniRef50_U5UIZ0 2 oxoisovalerate dehydrogenase E1 component alpha subunit 0.0108042335398 0.00406414572568 -2.72105616074e+12 +UniRef50_E8SFA3 V5 Tpx 1 related allergen 0.00616447444 0.00176700793247 -1.77531119207e+12 +UniRef50_I7A5B6 0.000325418955908 0.000497724784029 69561977242.7 +UniRef50_E7BDJ1 ISNme1 transposase 0.000191617253221 0.0235013190941 9.41041267538e+12 +UniRef50_Q65RB3 Histidine biosynthesis bifunctional protein HisB 5.36120946286e-05 9.21649672174e-06 -17923047670.3 +UniRef50_UPI00016B21F0 TDP GLUCOSE PYROPHOSPHORYLASE, partial 0.000542746293708 6.14018303726e-05 -1.94324666609e+11 +UniRef50_R1FAR2 2.65458058746e-05 2.0294678588e-05 -2523656795.56 +UniRef50_D9QZA2 ABC transporter related protein 0.000228715294286 0.00109114910595 3.48175113022e+11 +UniRef50_Q8CNH5 General stress protein 20U 0.0245898635031 0.00543483638156 -7.73311950757e+12 +UniRef50_UPI0004782D2D sulfite oxidase 1.40008618837e-05 0.000100779650783 35033661974.1 +UniRef50_G8V268 Short chain dehydrogenase family protein 0.0107889634925 0.0045515294141 -2.51812867937e+12 +UniRef50_UPI00003978BA COG0488 5.08873975676e-05 4.16544520751e-05 -3727453396.3 +UniRef50_Q887Q0 Alginate biosynthesis protein Alg44 0.000154496311943 0.000226585707308 29103373545.2 +UniRef50_G8VAR6 Sugar transport protein 0.000234463347108 0.00163040628298 5.63559293357e+11 +UniRef50_Q81IT9 DEAD box ATP dependent RNA helicase CshA 0.00519852835211 0.0077568202533 1.03281383428e+12 +UniRef50_UPI000288104D ATP dependent DNA helicase 2.28556739016e-05 7.12821434866e-06 -6349368419.14 +UniRef50_G7M9J1 Amidohydrolase 0.000305134109218 0.00189731884886 6.42784517697e+11 +UniRef50_V4R6B4 Inosine 5 monophosphate dehydrogenase 0.00013019737822 6.2261012161e-05 -27426744651.0 +UniRef50_UPI00036700E1 hypothetical protein 5.39321625713e-06 7.64937247179e-05 28704147767.0 +UniRef50_R5X6Z2 0.000210103518845 0.000870983813901 2.66805485027e+11 +UniRef50_A3CK29 Acetylxylan esterase, putative 0.000487193403363 0.00421733220622 1.50590280867e+12 +UniRef50_W4UBQ1 Vitamin B12 ABC transporter 1.93858238698e-05 0.000127925179778 43818669907.7 +UniRef50_C1KYK6 1.50713337894e-05 0.00216175840173 8.6664391214e+11 +UniRef50_A6TFY7 Putative transport protein KPN78578_40470 0.00306216067479 0.00121780037178 -7.44590887171e+11 +UniRef50_P29914 NADH quinone oxidoreductase chain 2 0.00113355967505 0.000698912890394 -1.75472240681e+11 +UniRef50_D6T008 1.41876130355e-05 3.3013080963e-05 7600072416.8 +UniRef50_UPI0002F8DE8C hypothetical protein 3.62073074741e-06 5.18592863425e-06 631889594.055 +UniRef50_T1XSF4 Glycine betaine transporter 0.0163029505604 0.00439381121466 -4.80786569543e+12 +UniRef50_V4YQV8 ABC transporter, substrate binding protein, PQQ dependent alcohol dehydrogenase system 9.35219359287e-07 6.59690003539e-06 2285689965.58 +UniRef50_UPI00035E0900 hypothetical protein 1.36255076262e-05 1.26011150893e-05 -413559837.857 +UniRef50_Q2P6N2 Ribonuclease PH 5.28346737517e-05 0.00334582197184 1.32941938174e+12 +UniRef50_Q7CRQ0 Uronate dehydrogenase 1.03453218924e-05 2.91473906905e-05 7590625901.12 +UniRef50_Q5DQH5 0.000298999396391 0.000169155317598 -52419647974.8 +UniRef50_K0S2B3 1.24288299161e-05 7.97898855557e-05 27194484774.8 +UniRef50_B9GCH9 Urease 2.56081055264e-06 3.09287380736e-05 11452480453.8 +UniRef50_UPI00036688D0 hypothetical protein, partial 1.23665511716e-05 2.19155943323e-05 3855065903.91 +UniRef50_UPI0002893A41 S adenosylmethionine synthetase 3.7327361855e-06 7.19002489107e-06 1395749876.14 +UniRef50_W9DWH3 2.97212795959e-05 1.859095438e-05 -4493448874.11 +UniRef50_M9RBV9 Putative lipoprotein 4.41649584664e-06 3.79441769438e-06 -251140583.825 +UniRef50_B2IKB4 Xylose isomerase domain protein TIM barrel 0.00686591442299 0.00204013888444 -1.94822480384e+12 +UniRef50_Q9HXI2 Protein translocase subunit SecF 0.00120589144382 0.000651117021025 -2.2396924233e+11 +UniRef50_A6LX99 Carbohydrate binding family V XII 0.00026029438181 0.0011352068553 3.53212901931e+11 +UniRef50_UPI00036AC2B6 MULTISPECIES 6.49018045431e-06 0.000645214290459 2.57860761235e+11 +UniRef50_C6SPQ0 0.00410792715755 0.00200570946546 -8.48691079409e+11 +UniRef50_P20901 Citrate synthase 4.37635748097e-05 7.57779212334e-05 12924584511.5 +UniRef50_B6IS79 Tetratricopeptide TPR_2 1.78033394172e-06 5.23031418574e-06 1392799360.53 +UniRef50_B2A466 Chromosome segregation ATPase 6.42766003199e-06 2.0853837516e-05 5824024879.4 +UniRef50_Q9RX51 Malto oligosyltrehalose trehalohydrolase 7.37277322014e-05 0.02066421845 8.31263377651e+12 +UniRef50_B7HXK9 ThiJ pfpI family protein 2.00102803538e-05 6.21795408439e-05 17024247934.9 +UniRef50_UPI000465E8C1 hypothetical protein 6.82262721579e-06 5.98594092946e-05 21411599759.7 +UniRef50_UPI00041A9154 hypothetical protein 1.53355447492e-05 6.00401530763e-06 -3767252946.31 +UniRef50_H5WKM1 TRAP type mannitol chloroaromatic compound transport system, large permease component 4.58660207468e-06 1.02370750727e-05 2281165288.4 +UniRef50_T1ZCJ6 Transcriptional regulator 0.00683872281672 0.000891076048015 -2.40113798636e+12 +UniRef50_UPI0002658616 PREDICTED 5.44914868452e-06 8.53886407905e-06 1247356019.84 +UniRef50_UPI000381514D hypothetical protein 1.79318855137e-06 1.75808876855e-05 6373687877.29 +UniRef50_G4R209 Bacterial regulatory s, gntR family protein 0.000800116488285 0.00024712694996 -2.23248662567e+11 +UniRef50_Q2YVV9 Initiation control protein YabA 0.00456937495309 0.00053693946399 -1.6279436905e+12 +UniRef50_A3P3G4 Monooxygenase, luciferase family 0.00157239309707 0.00607328208982 1.81706411849e+12 +UniRef50_I3THN6 Binding protein dependent transport systems inner membrane component 0.00310029789961 0.00113621486657 -7.92924422447e+11 +UniRef50_F0VFF5 NLI interacting factor like phosphatase domain containing protein 1.99255694968e-06 2.69818826151e-05 10088497424.6 +UniRef50_Q5XDZ5 0.00353699521576 0.00267174495306 -3.49312148867e+11 +UniRef50_UPI0000379B07 hypothetical protein 0.00128116530333 0.0020450329774 3.08382753733e+11 +UniRef50_UPI00038112F6 hypothetical protein 9.58621667602e-05 0.000217047230001 48923897138.3 +UniRef50_Q38XG4 3 oxoacyl [acyl carrier protein] synthase 3 0.00560405357246 0.0030832132846 -1.0176941584e+12 +UniRef50_UPI00035F1073 hypothetical protein 1.54420326935e-05 3.77507874115e-05 9006318038.86 +UniRef50_R6HUH5 9.15580637882e-06 1.67993042654e-05 3085773893.08 +UniRef50_P20162 Lipopolysaccharide export system ATP binding protein LptB 3.42231861132e-05 9.16384496506e-05 23179246454.6 +UniRef50_D5V8H6 Phosphomethylpyrimidine kinase 0.000552289739372 0.00164836223329 4.42497916118e+11 +UniRef50_U4TCC4 Putative ABC transport system, membrane domain protein 0.000100970296962 4.24728640517e-05 -23616131510.1 +UniRef50_UPI00028A344D group 1 glycosyl transferase 3.03323436206e-06 7.40285640383e-06 1764070039.55 +UniRef50_F4DQ72 TRAP T family transporter periplasmic binding protein 0.0163914430527 0.00284093990794 -5.47050440293e+12 +UniRef50_B2FK26 UvrABC system protein C 0.000928620324289 0.000753066132552 -70873381496.4 +UniRef50_UPI0004672B58 glycolate oxidase iron sulfur subunit 1.33759029507e-05 5.52194623384e-05 16892758403.0 +UniRef50_Q2NFX3 50S ribosomal protein L6 0.000946676341057 0.000344727671428 -2.4301406467e+11 +UniRef50_Q890U0 Butyrate kinase 0.000535450359444 0.00412890776021 1.45072284937e+12 +UniRef50_K0MYD7 PTS system maltose and glucose specific EIICB component 0.000494660353784 0.000625593814965 52859445013.0 +UniRef50_P0AEL2 Formate dehydrogenase, cytochrome b556 subunit 0.00101552134653 0.002748898554 6.99785649586e+11 +UniRef50_P26418 Flagellar motor switch protein FliM 0.0026643008724 0.00101290041313 -6.6669063037e+11 +UniRef50_E4Q4K1 Transketolase domain containing protein 1.15309062367e-05 0.00306461837327 1.23256887604e+12 +UniRef50_UPI00047AC8D4 hypothetical protein, partial 0.000235167555767 0.000636440660992 1.61998876754e+11 +UniRef50_P55980 Cytotoxicity associated immunodominant antigen 0.000172201382048 0.00376872836146 1.45196207594e+12 +UniRef50_D8JGS8 Acyl coenzyme A synthetases AMP acid ligase 0.00017541388266 0.00447578750747 1.73611360385e+12 +UniRef50_B9JUC8 50S ribosomal protein L19 0.000621798491844 0.021987453924 8.62557728405e+12 +UniRef50_F9LQU4 GA module 0.00147859366739 0.000199877396822 -5.16233450042e+11 +UniRef50_H2JJ51 ABC type sugar transport system, periplasmic component 0.000624422001147 0.00155695303344 3.76474221179e+11 +UniRef50_UPI0004699EDF membrane protein 9.19093577645e-05 4.10418656952e-05 -20535830762.7 +UniRef50_P11864 0.000682708992948 0.00134488127499 2.67327076028e+11 +UniRef50_P11865 0.000865714569853 0.000995158002212 52257902092.9 +UniRef50_UPI0004769652 hypothetical protein 1.4336755179e-05 2.73751604251e-05 5263764197.08 +UniRef50_V7D525 Plasmid stablization protein ParB 0.000136514167662 2.34463233671e-05 -45646876240.4 +UniRef50_UPI00047B1BFE hypothetical protein 4.46264057572e-06 0.000260129110054 1.03215691109e+11 +UniRef50_E4D4Y2 0.000262751268337 0.000842051686444 2.33870687605e+11 +UniRef50_Q3JNS9 0.000133884330964 0.000111844075917 -8897921426.82 +UniRef50_G7SP01 RNA methyltransferase, TrmH family, group 3 0.00516954919903 0.00450714301426 -2.6742150543e+11 +UniRef50_UPI00037014EA hypothetical protein 2.59028155949e-05 1.51935038755e-05 -4323480559.15 +UniRef50_F3BU02 0.000116295926645 0.000176519422491 24312964298.4 +UniRef50_UPI0003782B50 hypothetical protein 6.57519698428e-06 0.000156175431512 60395450480.3 +UniRef50_T0UR47 Immunoreactive protein Se23.5 0.00483396161627 0.000900430925696 -1.58801460963e+12 +UniRef50_UPI00036E1232 hypothetical protein 3.44345458938e-05 0.000260600948924 91306152277.1 +UniRef50_P37956 Spore photoproduct lyase 5.97618986696e-05 0.00140119876558 5.41554524453e+11 +UniRef50_UPI0003D02549 hypothetical protein P148_SR1C00001G0193 9.14355949142e-05 3.49863700411e-05 -22789244791.2 +UniRef50_D6SE37 0.0127936422994 0.0020973798205 -4.31821242063e+12 +UniRef50_W4TLK1 Molybdopterin guanine dinucleotide biosynthesis protein 5.38180685637e-06 2.17521439071e-05 6608905953.99 +UniRef50_UPI0003B75BA6 ribonuclease E 5.35540482193e-06 5.7626349029e-06 164403780.963 +UniRef50_Q8DWM8 Hypoxanthine guanine phosphoribosyltransferase 0.00739156066817 0.00277030711492 -1.86565676861e+12 +UniRef50_D3E0E5 Carbohydrate kinase 0.00457362725567 0.000550797070461 -1.62406591145e+12 +UniRef50_UPI000382ECE5 hypothetical protein 4.12056595105e-06 8.00567064787e-06 1568464441.7 +UniRef50_Q5NLB9 Type III pantothenate kinase 0.00598425572461 0.00392081467099 -8.33036474616e+11 +UniRef50_H9UPU8 Ornithine decarboxylase 0.00138797794509 0.000637324316283 -3.03048081505e+11 +UniRef50_UPI000262887B hypothetical protein 0.000152698143544 0.000143156185816 -3852205427.78 +UniRef50_UPI0003B5049A glutamyl Q tRNA ligase 5.0859989265e-06 6.14164604566e-06 426177696.252 +UniRef50_UPI00035F2B7D MULTISPECIES 1.69239504734e-05 2.60180949601e-05 3671417726.98 +UniRef50_O67611 Acyl carrier protein 3.39744658308e-05 0.000573118266027 2.17658968178e+11 +UniRef50_P65399 Molybdopterin synthase catalytic subunit 0.000869418835581 0.000413030356916 -1.84249629353e+11 +UniRef50_UPI000349EE05 hypothetical protein 2.84232460033e-05 4.42233820718e-05 6378708820.33 +UniRef50_Q5NGP7 Arabinose 5 phosphate isomerase KdsD 0.000687776103743 0.0106283097957 4.01311543551e+12 +UniRef50_W7VXE4 8.66601162e-05 2.21303622308e-05 -26051453546.5 +UniRef50_W1DPU9 Sulfate permease 0.000186595647056 4.31591628636e-05 -57907068831.9 +UniRef50_R7GVB9 4.17707168415e-05 0.0017761729254 7.00199455104e+11 +UniRef50_A6M390 Extracellular solute binding protein, family 1 0.00114373435193 0.00148794699609 1.38962868412e+11 +UniRef50_UPI0003674FBC hypothetical protein 3.80295464487e-05 1.43563472677e-05 -9557161012.19 +UniRef50_UPI00034FC6C5 PREDICTED 0.00157073495755 0.000651213335285 -3.71222162708e+11 +UniRef50_UPI00047034AE hypothetical protein 8.30920752904e-06 3.05575409045e-05 8981925201.44 +UniRef50_A0A023DK19 8.2039768735e-06 3.99670790511e-05 12823154126.2 +UniRef50_A4VYZ8 0.000704485664454 0.00110055914979 1.59899726398e+11 +UniRef50_UPI00041B2B5D hypothetical protein 1.33800869186e-05 1.85796767312e-05 2099138213.49 +UniRef50_Q9RZ78 0.000291870609934 0.0325838212241 1.30366567297e+13 +UniRef50_D3E3Y1 Carbohydrate kinase PfkB family 0.00269331415551 0.00154760963909 -4.62534972654e+11 +UniRef50_J0J1A9 0.000282476263787 3.6707156532e-05 -99220004524.9 +UniRef50_C3MH15 FAD dependent oxidoreductase 0.00105671716497 0.00065979223862 -1.60243463584e+11 +UniRef50_UPI00031B7DA5 hypothetical protein 4.74580212098e-05 2.58133475648e-05 -8738220360.5 +UniRef50_Q3IUW1 Signal peptidase I 0.031370637953 0.00804321164022 -9.41756826219e+12 +UniRef50_UPI00046FFC4F hypothetical protein 1.66977899995e-05 1.28837971418e-05 -1539755719.61 +UniRef50_A7X169 Endonuclease MutS2 0.0196066244824 0.00575893687812 -5.59048141609e+12 +UniRef50_UPI000418D073 hypothetical protein 9.73170839904e-06 1.75758794626e-05 3166788117.16 +UniRef50_B9K203 0.000134336650837 0.0078502862146 3.11502352424e+12 +UniRef50_UPI00046E6835 ATPase AAA, partial 8.39966328859e-06 5.13050095133e-05 17321414778.7 +UniRef50_UPI000360D065 hypothetical protein 5.24731810741e-06 8.48491396957e-06 1307057179.32 +UniRef50_P08065 Succinate dehydrogenase flavoprotein subunit 0.0212475081267 0.00658360059387 -5.91999941737e+12 +UniRef50_UPI00045EC07A C4 dicarboxylate ABC transporter permease 4.26455167823e-05 1.65847410214e-05 -10521054976.4 +UniRef50_UPI0002D91D3B hypothetical protein 8.49493495021e-06 8.07074546283e-05 29153080341.3 +UniRef50_Q47329 UDP glucose 6 dehydrogenase 0.000858294800496 0.000274200354057 -2.35806095672e+11 +UniRef50_G7M577 Polysaccharide biosynthesis protein 0.00057063454556 0.00113909318059 2.29493726734e+11 +UniRef50_UPI0003695A84 hypothetical protein 3.40745919661e-06 4.12610186037e-06 290124862.097 +UniRef50_D7G171 2.34829077274e-05 6.52633602589e-05 16867281390.8 +UniRef50_UPI0003796517 hypothetical protein 2.18775193464e-06 2.33164308894e-06 58090624.7339 +UniRef50_UPI000462BF9A acetyltransferase 3.01382116174e-05 6.70758170359e-05 14912164582.8 +UniRef50_B7UZJ9 Transcriptional regulator MraZ 0.000540364558677 0.000538571498834 -723880261.938 +UniRef50_A3DIH0 Intracellular exo alpha L arabinofuranosidase 7.91375238722e-05 0.000739866164338 2.66744260208e+11 +UniRef50_Q28T47 Type III pantothenate kinase 9.61497765098e-05 4.60693623508e-05 -20218077751.8 +UniRef50_UPI0004005113 antibiotic ABC transporter ATP binding protein 2.88645664355e-06 8.75823510855e-06 2370509021.14 +UniRef50_Q2L2H8 30S ribosomal protein S12 0.00420872488711 0.00526432343014 4.26158085472e+11 +UniRef50_A0A3H4 Glycine betaine transport system permease protein glycine betaine binding protein 0.00473168716278 0.00438722236346 -1.39064666544e+11 +UniRef50_D4GNJ8 Cell division protein ZapC 0.00268252843931 0.00162642602345 -4.26361505117e+11 +UniRef50_I0JEM4 Tn554 related transposase A 0.0081867226448 0.00198071624306 -2.50544094064e+12 +UniRef50_UPI000471CC86 C4 dicarboxylate ABC transporter substrate binding protein 3.08721668324e-05 6.72910838661e-06 -9746848963.21 +UniRef50_F2JJH8 MATE efflux family protein 0.000251260932248 0.00102184150622 3.11092833799e+11 +UniRef50_P33696 UTP glucose 1 phosphate uridylyltransferase 0.000312181500994 0.000252427381303 -24123471384.8 +UniRef50_W0IWY4 Diguanylate cyclase 1.41496339625e-05 3.49943750612e-05 8415277775.28 +UniRef50_Q7MHK1 Glutathione synthetase 0.00184097102953 0.00683058871325 2.01436988841e+12 +UniRef50_A7ZVR4 0.00108991257475 0.000273470160615 -3.29607821461e+11 +UniRef50_Q04GC3 Peptide chain release factor 2 0.00631072729797 0.00245048716305 -1.55842631294e+12 +UniRef50_A5UMV9 SsDNA binding protein 0.00440632802296 0.000798612381636 -1.45647907605e+12 +UniRef50_UPI00016A34A8 hypothetical protein 8.41916360891e-05 9.98477244106e-05 6320554977.2 +UniRef50_Q0FMM6 Peptide ABC transporter, permease protein 0.000107220316976 6.84786750653e-05 -15640476252.8 +UniRef50_UPI0002DD3A3E hypothetical protein 2.564827868e-06 1.05077288817e-05 3206646609.59 +UniRef50_Q05755 Glutamate synthase [NADPH] large chain 1.17362357239e-06 1.68481138797e-06 206372794.13 +UniRef50_V7ZFF9 S methylmethionine permease 8.57273252495e-05 0.000441810187015 1.43755020923e+11 +UniRef50_UPI0003A4ECE6 2,5 diketo D gluconic acid reductase 5.1704642099e-06 8.24992128289e-06 1243214609.55 +UniRef50_UPI0003632431 hypothetical protein, partial 4.30396635004e-05 2.34486597947e-05 -7909128604.64 +UniRef50_X1G8H6 Marine sediment metagenome DNA, contig 1.09328797589e-05 0.000464078377622 1.82940398208e+11 +UniRef50_P45861 0.00516545488309 0.00414958312059 -4.1011989667e+11 +UniRef50_W5X2S2 GCN5 related N acetyltransferase 8.77308036352e-06 0.000196587916951 75823154277.4 +UniRef50_UPI0004730E83 hypothetical protein, partial 2.01807574618e-05 4.76956682864e-05 11108107145.8 +UniRef50_I7DFR8 0.00186359610009 0.000367614155849 -6.03946268653e+11 +UniRef50_M5PEW3 Peptide deformylase 1.44939763796e-05 2.38265177494e-05 3767661474.15 +UniRef50_A6LXH7 D galactose binding periplasmic protein 0.000666796086508 0.00374530080559 1.24283013259e+12 +UniRef50_I6U0D0 Recombination factor protein RarA 0.00706462439946 0.000643156292659 -2.59242547499e+12 +UniRef50_F2ZJ87 Xanthine dehydrogenase, molybdopterin binding subunit 0.000488593589669 0.000243865345587 -98799795289.2 +UniRef50_O68827 Chloramphenicol sensitive protein RarD 0.000424727588089 0.00031983758685 -42345380645.2 +UniRef50_R4MXP6 PPE family protein 1.42201664571e-05 9.80437757135e-05 33840619688.2 +UniRef50_E3GXP2 Phosphate ABC transporter substrate binding protein, PhoT family 0.00542133094708 0.001384335336 -1.6297846677e+12 +UniRef50_A3PPD1 Tripartite ATP independent periplasmic transporter, DctQ component 0.0030059536438 0.00169285565124 -5.30113773121e+11 +UniRef50_UPI000370C8AB 30S ribosomal protein S17 1.88580225148e-05 0.000243593165412 90728334997.8 +UniRef50_Q180E4 Lon protease 1.49248026071e-06 5.90750029185e-06 1782397764.96 +UniRef50_Q1QSI1 Guanylate kinase 0.00159402798536 1.45254142268e-05 -6.37664570641e+11 +UniRef50_D3HPI8 8.78659653246e-05 3.9665958339e-05 -19458934300.7 +UniRef50_A5UM84 Predicted transcriptional regulator 0.00633105629086 0.000432170788082 -2.38145246494e+12 +UniRef50_W0RMS6 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.000266877234584 0.00683373766498 2.65112214019e+12 +UniRef50_D3E4F1 Metallo beta lactamase superfamily protein 0.00296417880273 0.000210940503716 -1.11151608734e+12 +UniRef50_P0AFE9 NADH quinone oxidoreductase subunit M 0.00371848569902 0.00162902581483 -8.43540595804e+11 +UniRef50_UPI0003790B90 hypothetical protein 5.27752699103e-05 3.05896969956e-05 -8956588033.26 +UniRef50_Q8CYM9 1.47005293631e-05 0.0028538616029 1.14620416581e+12 +UniRef50_L1J8E6 4.30281224173e-06 7.08470174153e-06 1123082928.69 +UniRef50_UPI0004650E5C hypothetical protein 4.63774736443e-06 3.38377515925e-05 11788400031.2 +UniRef50_E6QIH1 0.000137906278467 0.00276026173784 1.05867707887e+12 +UniRef50_UPI00036AFD53 hypothetical protein 8.0520891536e-06 1.26569445116e-05 1859036615.95 +UniRef50_O25294 Cytosol aminopeptidase 8.95931935559e-05 0.00238819114931 9.27972201705e+11 +UniRef50_UPI0003797CF3 hypothetical protein 9.87742893972e-05 1.85687052136e-05 -32379978568.1 +UniRef50_D6ZZR1 0.0011286554024 0.00136963694671 97287206614.0 +UniRef50_P52999 Aspartate 1 decarboxylase 0.0277220728572 0.00112517414884 -1.07374943892e+13 +UniRef50_A3PGF4 0.00436213647065 0.000274287961482 -1.65031460669e+12 +UniRef50_Q2G4L5 20S proteasome, A and B subunits 0.0108578848856 0.00153620295261 -3.76327738625e+12 +UniRef50_UPI000347491F hypothetical protein 2.84239783412e-06 4.10718026938e-06 510608189.74 +UniRef50_UPI000234F3A3 PREDICTED 1.16056675444e-05 5.9267410198e-06 -2292652326.25 +UniRef50_V5E5C8 Cold shock like protein CspD 0.000116485488852 5.57045652811e-05 -24538004711.4 +UniRef50_UPI000399E7E2 succinyl CoA 7.60498476012e-06 1.13858140991e-05 1526367200.14 +UniRef50_A6LSY3 Glutamyl tRNA reductase 0.000191296986929 0.00158710086841 5.63503155393e+11 +UniRef50_B9KS20 Sulfate transporter 0.00299997776736 0.000603376378384 -9.67537390337e+11 +UniRef50_UPI00047C589B hypothetical protein 3.76985388941e-05 5.9896055629e-05 8961409900.04 +UniRef50_Q1IVX0 4 hydroxybenzoate polyprenyltransferase, putative 0.000162011154012 0.00297154361787 1.1342427325e+12 +UniRef50_Q8N9Z2 Coiled coil domain containing protein 71L 5.49526369223e-05 0.000138718082801 33817138418.8 +UniRef50_P0AF49 UPF0047 protein YjbQ 0.000298817471956 0.00746628364228 2.89359404766e+12 +UniRef50_UPI00041F306E hypothetical protein 6.76128964581e-06 6.04410446177e-06 -289536459.649 +UniRef50_Q1MPW7 Glutamate 1 semialdehyde 2,1 aminomutase 8.09790346541e-06 1.19060145757e-05 1537381186.0 +UniRef50_F4DR22 0.00051562212206 0.000351652701464 -66196467225.7 +UniRef50_UPI0003002FCB hypothetical protein 1.85367447446e-05 1.52648487296e-06 -6867250649.53 +UniRef50_V9VS67 Peptidase 1.38258308563e-06 2.66594762073e-05 10204591935.6 +UniRef50_A0RC17 Xanthine phosphoribosyltransferase 0.0021214938077 0.0240460077578 8.8511953257e+12 +UniRef50_A6USH1 UPF0285 protein Mevan_1551 0.00322341183292 0.000199538314317 -1.22077484656e+12 +UniRef50_S1PBL6 Inner membrane protein yiaV 0.00144751323792 0.000947729049242 -2.01769010011e+11 +UniRef50_F9NYN9 6.28810414515e-06 1.67465848469e-05 4222216999.27 +UniRef50_A6M320 Putative competence damage inducible protein 0.00207733092326 0.00174666633017 -1.33493353941e+11 +UniRef50_UPI000474352D glyoxalase I, partial 0.000525028812531 0.000132045260154 -1.58652282545e+11 +UniRef50_A4WQQ4 Aminotransferase, class V 0.0015254632215 0.000857079650752 -2.698346495e+11 +UniRef50_Q24X66 tRNA dimethylallyltransferase 1.80794811273e-05 1.17680862471e-05 -2547987562.66 +UniRef50_R6FXN6 Pseudouridine synthase 0.000253839093847 0.00059588979608 1.38090065926e+11 +UniRef50_V5LNW1 Putative membrane protein 7.54395132305e-06 9.19685235493e-06 667296429.947 +UniRef50_Q604U3 Ribonuclease HII 9.25800184316e-06 0.0061581455198 2.48238134634e+12 +UniRef50_UPI00030E8D28 multidrug ABC transporter ATP binding protein 4.50154188846e-06 2.15012811429e-05 6863003347.26 +UniRef50_V9VWJ0 0.0258758330111 0.00124246051479 -9.94479476223e+12 +UniRef50_W2UZV9 1.37144025415e-05 5.87456300015e-05 18179659120.9 +UniRef50_UPI000476BCFC hypothetical protein 0.00018897735194 0.00028142720318 37323139432.8 +UniRef50_Q9ZD73 2.8243917751e-05 3.59975966571e-05 3130255322.73 +UniRef50_Q2NE10 Dihydroxy acid dehydratase 0.00343408382468 0.0019513606166 -5.98593554162e+11 +UniRef50_Q9HH09 Glutamine synthetase 8.38472134374e-06 1.40493582169e-05 2286883418.61 +UniRef50_UPI00037460EB hypothetical protein 2.48969642999e-05 9.25388514554e-06 -6315303016.8 +UniRef50_L0A7I7 8.83744785083e-05 0.000953727354744 3.4935357521e+11 +UniRef50_K7EH66 2.94620714165e-06 3.69817170268e-05 13740553003.3 +UniRef50_X2MI40 Thiamine ABC transporter permease 0.00361283303375 0.000788476424302 -1.14022742199e+12 +UniRef50_G0DVY7 Cell division protein FtsQ 0.000159276788545 0.00598791908997 2.35309442257e+12 +UniRef50_UPI0003A33C9F peptidase S8 2.42465458775e-06 0.000325103487845 1.302694047e+11 +UniRef50_UPI0003804693 hypothetical protein 4.72408571858e-05 4.14346738629e-06 -17398945126.5 +UniRef50_UPI0002EF496B hypothetical protein 3.53441768897e-06 1.20647517818e-05 3443800552.25 +UniRef50_A3M585 6.91366279948e-05 0.00650563977741 2.5984953062e+12 +UniRef50_Q9HZ67 P protein 0.000317508176853 2.04429055021e-05 -1.19928895445e+11 +UniRef50_A6LWB2 Integral membrane sensor signal transduction histidine kinase 0.000522470425098 0.000625280971892 41505879368.0 +UniRef50_UPI0004658FE1 hypothetical protein 2.90466168338e-05 0.00036101535063 1.34019851548e+11 +UniRef50_V9VUH1 Cation 0.0151170152447 0.00667974363675 -3.4062300851e+12 +UniRef50_E4C1B3 9.50766624436e-06 0.00146144954442 5.86166753552e+11 +UniRef50_UPI000377B5C3 hypothetical protein 2.80629261898e-05 0.000167271418867 56200176774.0 +UniRef50_Q65RK2 Na H(+) antiporter NhaA 0.00245592189452 0.000967265544711 -6.00988836286e+11 +UniRef50_X6EE61 1.89335144391e-05 5.34824720326e-05 13947838143.9 +UniRef50_F6R4Y2 3.11145864016e-05 1.7040219121e-05 -5681994783.09 +UniRef50_O05118 Pyruvate kinase 0.00248564861444 0.000505603387725 -7.99368555914e+11 +UniRef50_K0B2D2 0.000461828611062 0.000941383200643 1.9360207261e+11 +UniRef50_UPI000468F174 hypothetical protein 0.00102636260309 0.000659476512507 -1.48116416967e+11 +UniRef50_A6GDL9 4.49094894686e-05 6.94979517607e-06 -15324794403.7 +UniRef50_Q1M589 sn glycerol 3 phosphate import ATP binding protein UgpC 3 5.93328196096e-05 3.1250896433e-05 -11337016990.3 +UniRef50_S5YIS8 ABC Fe+3 siderophore transporter, periplasmic substrate binding protein 3.29868838122e-05 2.08339869887e-05 -4906273580.46 +UniRef50_UPI00026263A5 phytoene dehydrogenase 8.40154663413e-06 3.90736109577e-06 -1814357851.69 +UniRef50_Q13RB8 Xylose isomerase 0.0112737833822 0.00164399149752 -3.88766515468e+12 +UniRef50_A9AB27 Diaminopimelate epimerase 5.25479722221e-06 1.51553622878e-05 3996979610.57 +UniRef50_UPI0003709E94 hypothetical protein, partial 0.000240582935563 4.9523378201e-05 -77133087871.5 +UniRef50_A5F642 Uracil phosphoribosyltransferase 3.44092368625e-05 8.48563658414e-05 20366125024.7 +UniRef50_D8JGS2 Exporter 5.834404774e-05 0.00859732168187 3.44729005594e+12 +UniRef50_E0TPJ9 Histidine kinase 0.000220752040266 0.00634832297032 2.47377557821e+12 +UniRef50_A0A038GFN9 FKBP type peptidylprolyl isomerase 0.00194878767955 0.00256455650404 2.4859343078e+11 +UniRef50_M1GD04 1.21939042968e-05 1.70990295174e-05 1980259244.21 +UniRef50_G8AIH3 6.68478508552e-05 0.00021335419498 59146408958.3 +UniRef50_C9LS22 4.32684121844e-05 4.96266947444e-05 2566916694.37 +UniRef50_UPI0002626B19 4 alpha glucanotransferase 1.13133810379e-05 0.000481609638899 1.89864370483e+11 +UniRef50_Q216Y2 MaoC like dehydratase 1.23779016053e-05 1.5124731484e-05 1108928929.42 +UniRef50_A3PHP1 Abortive infection protein 0.0146437054279 0.00344210097937 -4.522225175e+12 +UniRef50_UPI0003D0BA23 PREDICTED 3.0425490927e-05 4.14691333181e-05 4458453954.02 +UniRef50_F4FLP5 O antigen polymerase 0.00618519540379 0.00254278516302 -1.4704857116e+12 +UniRef50_A6LZN7 0.000108994991968 0.000975009066972 3.49620509267e+11 +UniRef50_C0ZPK5 ATP dependent zinc metalloprotease FtsH 2.48890006064e-06 9.65424258301e-06 2892736704.92 +UniRef50_B1W3Y6 Adenylate kinase 7.70891120911e-06 3.73230302478e-05 11955583262.0 +UniRef50_Q8RE31 Adenylate kinase 9.19787210755e-06 2.74381572548e-05 7363826947.39 +UniRef50_V8LZ20 Ammonia permease 0.00817555658577 0.000287763355251 -3.18439892127e+12 +UniRef50_F7ZMV0 ABC transporter ATP binding protein 0.00071539349499 0.00173951458493 4.13450251388e+11 +UniRef50_Q9LHH7 Bifunctional protein FolD 2 0.00073347406578 4.76349751929e-06 -2.94189398691e+11 +UniRef50_N8YXS0 0.00065686189211 0.00627042719338 2.26626519832e+12 +UniRef50_M1MEC2 Extracellular solute binding protein, family 1 0.00109612953218 0.00179712117905 2.82998929976e+11 +UniRef50_U2PH02 3.53950228934e-06 1.32182989304e-05 3907448976.19 +UniRef50_X2HH54 A G specific adenine glycosylase 0.000119710144452 0.00187682238555 7.09367773924e+11 +UniRef50_Q8DXK8 Prophage LambdaSa2, PblB, putative 0.000203889996048 0.000258296137206 21964426823.9 +UniRef50_Q3AWX1 Probable malate 3.16181632351e-06 5.01978972251e-06 750086661.074 +UniRef50_D5VFT5 Acetolactate synthase, large subunit, biosynthetic type 0.0158139351144 0.00317230493237 -5.10358123472e+12 +UniRef50_P37003 0.00122306837145 0.000998176201586 -90791728711.4 +UniRef50_UPI00036B4081 hypothetical protein 1.15762863075e-05 2.47088444175e-05 5301774863.62 +UniRef50_C1DHH3 4.04751759926e-05 0.000238308761295 79867846077.5 +UniRef50_Q2Y752 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.20777703019e-05 0.000327353424095 1.27280650304e+11 +UniRef50_P37007 0.00296582860074 0.00135331032166 -6.50993417089e+11 +UniRef50_L7WW34 Multidrug resistance protein 0.0104306902786 0.00475922135138 -2.28964160267e+12 +UniRef50_Q02UC6 Anaerobically induced outer membrane porin OprE 0.00117563791498 0.00014096262778 -4.17711110336e+11 +UniRef50_A1ADX2 GDP mannose pyrophosphatase NudK 0.00118490769114 0.000664302270065 -2.10174797035e+11 +UniRef50_N5A969 2.45289240675e-05 3.03233209257e-05 2339269116.9 +UniRef50_D6ENY0 AMP binding domain containing protein 0.000120290144827 0.000101960624042 -7399852469.42 +UniRef50_UPI0004673990 histidinol dehydrogenase 0.000243557186622 0.000235832728678 -3118458461.75 +UniRef50_K1ZZL6 5.30752693842e-05 5.94183811299e-05 2560792050.47 +UniRef50_C6SPL1 0.0121840179327 0.00254851034797 -3.88997265293e+12 +UniRef50_C6SPL2 0.00342692034797 0.00062766371825 -1.13009425216e+12 +UniRef50_UPI00038FE8C9 Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp 2.17503033443e-05 4.59487378327e-06 -6925857434.57 +UniRef50_X5Y9C9 ABC transporter substrate binding protein 6.27135269102e-06 2.83491299152e-05 8913069590.2 +UniRef50_B5SHZ2 Segregation and condensation protein a 0.000573453511231 0.00435962938463 1.52852566169e+12 +UniRef50_UPI0004029835 hypothetical protein 1.16996238335e-05 1.80216353406e-05 2552273625.22 +UniRef50_C5BKL9 Chromosomal replication initiator protein DnaA 0.00402144621575 0.00144073785693 -1.04186363331e+12 +UniRef50_U5MW71 Cardiolipin synthase Cls 0.000518041488782 0.000722942080891 82720883447.4 +UniRef50_J8G6B9 TQXA domain containing protein 8.05006397902e-07 1.00960803821e-06 82600192.9368 +UniRef50_UPI00036DF70A hypothetical protein 2.04044188162e-06 4.0375014268e-06 806237445.066 +UniRef50_D3QCJ5 ATP dependent RNA helicase YqfR 0.0124607274181 0.00455180998333 -3.19292702175e+12 +UniRef50_B2SXV7 Lysine tRNA ligase 3.47557862702e-06 5.83142458113e-05 22139042888.4 +UniRef50_G8PVZ6 D,D dipeptide transport system permease protein DdpC 0.0097865678183 0.000960357166001 -3.56324955012e+12 +UniRef50_X1UWS6 Marine sediment metagenome DNA, contig 3.02649245815e-05 3.90694456633e-05 3554493204.35 +UniRef50_A6LVP9 Phage replisome organizer, putative 0.000993154060413 0.00398848061577 1.20925008719e+12 +UniRef50_UPI00041E91C7 threonine dehydratase 8.7564914624e-06 1.39110560528e-05 2080960978.77 +UniRef50_Q0BUK0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.0114687238813 0.0130503529593 6.3852306756e+11 +UniRef50_P95786 ATP synthase subunit delta 0.00562822789907 0.00136700229036 -1.72030906935e+12 +UniRef50_H5NJS4 FabA like domain protein 1.41104766916e-05 4.90674763159e-05 14112569719.0 +UniRef50_UPI0003ADCC45 PREDICTED 1.09514416056e-05 3.35712269313e-06 -3065919737.74 +UniRef50_Q2FD99 Multidrug efflux transport protein 0.000187028565907 0.00639225490265 2.50512601883e+12 +UniRef50_M9VIC2 L xylulose 5 phosphate 3 epimerase 0.000303714999663 0.00532543757074 2.02733102541e+12 +UniRef50_P39374 0.00288683012507 0.000213739472998 -1.07915949875e+12 +UniRef50_A8LAX8 1.28648754386e-05 3.34107640361e-05 8294627353.22 +UniRef50_V6DLJ7 Putative phage protein 0.000267729666102 0.000101160958787 -67245831171.0 +UniRef50_UPI000440D7F2 PREDICTED 3.41646690317e-06 2.4436089507e-06 -392754693.722 +UniRef50_B7VHY7 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.1354159197e-05 6.11812722406e-06 -6150973074.6 +UniRef50_D1GN04 Phage protein 0.00291450455315 0.000418888943548 -1.00751064624e+12 +UniRef50_A4WV88 2 keto 3 deoxygluconate kinase 0.000826995344701 0.000420142421617 -1.64251517696e+11 +UniRef50_F0JTZ1 DNA binding transcriptional activator, co regulator with RcsB 0.000256212209626 0.000398179827223 57314069362.5 +UniRef50_UPI000395D3CA PREDICTED 1.79652920158e-05 0.000463828208591 1.80000330775e+11 +UniRef50_A3NI78 0.00418015609419 0.000435120559719 -1.51191680202e+12 +UniRef50_K7SGE5 Glycosyltransferase, group 1 family protein 0.000815820802931 0.00471336550744 1.57348662546e+12 +UniRef50_C5BM46 TRAP transporter, DctQ family protein 0.0133367132723 0.000729328352558 -5.08975600209e+12 +UniRef50_Q9RYQ8 Acyl CoA dehydrogenase, putative 0.000539568342021 0.0419661549045 1.67244213567e+13 +UniRef50_P0AF25 Ribonucleotide monophosphatase NagD 0.00168537888368 0.000708131759052 -3.94526656383e+11 +UniRef50_Q5LTY4 ArsC family protein 7.18560968825e-05 5.5754036328e-05 -6500599440.35 +UniRef50_UPI0004649E38 hypothetical protein 2.57878831719e-05 4.40966683833e-05 7391481263.9 +UniRef50_M9R9I6 RNA polymerase sigma 32 factor 2 0.00739113598218 0.00471598434767 -1.07999154265e+12 +UniRef50_UPI00029AA773 3 deoxy D manno octulosonic acid 8 phosphate synthase 0.000114712130716 7.6348011262e-05 -15488065804.3 +UniRef50_C2ZFP3 Acetyl CoA acetyltransferase 0.000153657797359 0.0244902886139 9.82499650466e+12 +UniRef50_D6SDB9 Toxin, beta grasp domain protein 0.00890084944403 0.0010791208446 -3.15772781899e+12 +UniRef50_W8EU13 Dihydrolipoyl dehydrogenase 0.0136725955808 0.0047489099421 -3.60260139828e+12 +UniRef50_A3N6S5 Transcriptional regulator, LysR family 0.000125689008493 0.000201352299003 30546198871.9 +UniRef50_UPI0003B6C781 amidohydrolase 1.79316354216e-05 8.16734733007e-06 -3941962923.84 +UniRef50_UPI0003AF0828 PREDICTED 1.78158442219e-05 0.00042094859072 1.62749636756e+11 +UniRef50_UPI0004756B1C 6 phospho beta glucosidase 3.83930066134e-06 8.45001184073e-06 1861400682.91 +UniRef50_A0A018Y1M8 Glycogen branching enzyme 0.00402553145186 0.000467228864198 -1.43653041992e+12 +UniRef50_W7VQX9 Spermidine putrescine binding periplasmic protein 2.70715842294e-05 1.07248643401e-05 -6599371416.12 +UniRef50_I6TQG8 Signal peptidase I 0.00496612071465 0.000768355905256 -1.69468916592e+12 +UniRef50_G7TCM8 ParB family protein 0.000288510949591 6.45906084216e-05 -90399389541.5 +UniRef50_Q48768 Chemotaxis protein CheA 6.29143314804e-05 0.00289186411327 1.14208174203e+12 +UniRef50_UPI0003B44FBC N acetyl anhydromuranmyl L alanine amidase, partial 5.395022779e-05 0.000131868292806 31456479009.1 +UniRef50_UPI000262A813 sulfate ABC transporter permease 6.04724718665e-05 0.000110189467331 20071361165.2 +UniRef50_A6VCD4 0.000665643639175 0.000664732343474 -367901257.349 +UniRef50_G8V3H8 FecCD transport family protein 0.0102188448613 0.00525309581752 -2.00473382557e+12 +UniRef50_UPI0003A147C5 glutamate dehydrogenase 8.03227697133e-06 2.30453977698e-05 6060981098.06 +UniRef50_H8H2N8 DNA polymerase III, beta subunit 0.000963707177918 0.0711126262926 2.83199794706e+13 +UniRef50_K5YNY1 7.242848099e-05 1.23590478075e-05 -24250767310.6 +UniRef50_UPI000255C1EB DNA 3 methyladenine glycosylase I 1.99033744418e-05 5.63166823913e-05 14700499260.8 +UniRef50_A7EM78 ATP dependent RNA helicase dbp9 5.55363343528e-06 6.55863359958e-06 405730899.067 +UniRef50_F3CRF8 0.00116748243974 0.00248592628306 5.32271958674e+11 +UniRef50_A6LUT7 Zn dependent hydrolase of the beta lactamase fold like protein 0.000147840465605 0.00134658211377 4.83946713576e+11 +UniRef50_D3QFY2 0.000513854190345 0.00019921189645 -1.27024955141e+11 +UniRef50_B2RIE4 Ribosomal RNA small subunit methyltransferase H 5.81187305735e-06 0.00486725458718 1.9626240803e+12 +UniRef50_Q5HN64 0.00642874867544 0.00171850864942 -1.90158169965e+12 +UniRef50_F7Y3N0 Secretion protein HlyD family protein 0.00109296805086 0.000160352962103 -3.76508155805e+11 +UniRef50_Q2FDM8 HTH type transcriptional regulator ArcR 0.0246026376756 0.0142134125283 -4.19425768209e+12 +UniRef50_D8JH13 0.000298500709782 0.00684154782696 2.64150841342e+12 +UniRef50_F8UHZ1 Sulfide 0.0011742369025 0.000208771585387 -3.8977019611e+11 +UniRef50_UPI0002D3C80C hypothetical protein 3.58820460678e-06 2.4892462434e-05 8600790317.48 +UniRef50_UPI0003B545B7 UDP N acetylglucosamine 2 epimerase 6.08270801282e-06 2.89770844998e-05 9242740733.39 +UniRef50_A4VWB1 Predicted membrane protein 4.53443194446e-05 3.05938418067e-05 -5954948831.14 +UniRef50_UPI0002B4270F PREDICTED 0.000168179136268 4.89175130106e-05 -48147380813.5 +UniRef50_Q97G69 Glycerol 3 phosphate acyltransferase 0.000599570586174 0.0021881812892 6.41341635259e+11 +UniRef50_UPI00037918AC hypothetical protein 1.56336080484e-05 2.38983700578e-05 3336585843.23 +UniRef50_A0A024KDL9 0.000287355372835 0.000153415901025 -54073008391.8 +UniRef50_UPI000470E44E hypothetical protein 2.60899634921e-05 8.63793585826e-06 -7045597716.23 +UniRef50_M1P9T3 0.000207352964281 6.91424110136e-05 -55797296388.1 +UniRef50_UPI000418EAD6 hypothetical protein 3.93302952453e-05 2.49799746551e-05 -5793400520.5 +UniRef50_I6SU88 Penicillin binding protein 2B 0.00490502608904 0.00215356450517 -1.11079880564e+12 +UniRef50_I6T801 Endoglucanase 0.00483942552682 0.000711791939924 -1.66637633079e+12 +UniRef50_F9YWL2 Transport system permease protein 0.000102857217666 0.00632221446914 2.51083084251e+12 +UniRef50_U6LU16 2.99125628559e-06 3.02849965665e-05 11018817883.3 +UniRef50_UPI00047E902E Fe3+ siderophore ABC transporter permease 5.50677080713e-06 2.75816222756e-05 8911888426.72 +UniRef50_F6ZM80 6.0773025101e-05 7.31089157469e-06 -21583319358.7 +UniRef50_W2CJ91 2.00039967522e-05 0.000121616401369 41022174668.3 +UniRef50_I3TNK1 GNAT family acetyltransferase TIGR03103 0.000146411681904 0.000488042327123 1.37920483754e+11 +UniRef50_F2AE33 0.00140877551229 0.000646605775422 -3.07697275648e+11 +UniRef50_Q9CIV8 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 0.000503884180492 0.00202974458268 6.16008568777e+11 +UniRef50_UPI0004138F31 Fur family transcriptional regulator 4.43514531505e-05 0.000105423149655 24655393312.9 +UniRef50_O31714 1 phosphofructokinase 1.05632353205e-05 0.00148515284581 5.95309921004e+11 +UniRef50_C1F5G2 GAF domain GGDEF domain protein 4.99639616826e-06 4.2471606233e-05 15129202175.7 +UniRef50_UPI000440DE53 PREDICTED 3.13519165916e-06 2.21298897714e-06 -372304539.431 +UniRef50_M4UDQ5 Quinone oxidoreductase 0.000896166719044 0.000484549952788 -1.66174739643e+11 +UniRef50_R1F8B2 1.17100883226e-05 7.90601864219e-06 -1535749611.17 +UniRef50_U4JVB3 8.1297663707e-06 9.83469674759e-06 688301314.999 +UniRef50_P77463 Probable D,D dipeptide transport system permease protein DdpC 0.00386060121401 0.000671362135453 -1.28753495238e+12 +UniRef50_UPI00023773E6 hemolysin type calcium binding domain containing protein, partial 3.44521611529e-06 9.45483523447e-06 2426156984.73 +UniRef50_UPI000309FDCA hypothetical protein 3.89830686277e-06 4.05441485061e-05 14794375966.4 +UniRef50_U5NMM5 0.000747313619048 0.00163586108529 3.58717515825e+11 +UniRef50_P45600 HTH type transcriptional regulator CysB 0.0022880246696 0.000802932501237 -5.99549932497e+11 +UniRef50_P36566 Protein SmtA 0.00106639888164 0.00389042134346 1.14009252249e+12 +UniRef50_UPI0001FFE514 pyruvate phosphate dikinase PEP pyruvate binding protein, partial 5.47035358623e-06 0.000188407278137 73853881329.7 +UniRef50_UPI0004634978 hypothetical protein, partial 3.56527897935e-05 0.000151498993015 46768533833.5 +UniRef50_UPI00036938AE hypothetical protein 3.71562409899e-05 1.06390900165e-05 -10705299250.0 +UniRef50_E2NTP5 0.00391956612381 0.000927322011325 -1.20800566717e+12 +UniRef50_UPI000380D55B hypothetical protein 9.19907442685e-06 3.89488133843e-05 12010334687.5 +UniRef50_U5FQ27 8.64665415698e-05 5.66477011024e-05 -12038231815.0 +UniRef50_K0K215 Luciferase like monooxygenase 0.000202586398316 0.0300954925315 1.20681330332e+13 +UniRef50_UPI000421309B siroheme synthase 7.33527455851e-05 6.880971045e-06 -26835471082.2 +UniRef50_E9AEM7 Putative proteophosphoglycan ppg3 4.85421032899e-06 4.18494245524e-05 14935421964.3 +UniRef50_M2PFD7 3.41317859517e-05 0.000191614609346 63577748335.7 +UniRef50_Q9RTU0 Potassium uptake protein KtrA 0.00040735898078 0.0450148331134 1.80085847026e+13 +UniRef50_Q9RUF3 Methionine tRNA ligase 2.91040293157e-06 0.0316402133283 1.27723674243e+13 +UniRef50_V4MMB9 6.47914434567e-06 5.78734858769e-06 -279286436.785 +UniRef50_Q73RR6 Formate tetrahydrofolate ligase 3.2407179485e-05 0.00388401578268 1.55494165766e+12 +UniRef50_P12995 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.00346897489807 0.00531547340258 7.45454105355e+11 +UniRef50_UPI00026CCAA9 ferripyochelin binding protein 3.06402875023e-05 3.05485899378e-05 -37019432.0443 +UniRef50_A6LST0 Regulatory protein, LacI 0.000292820640156 0.000545469749026 1.01997545604e+11 +UniRef50_A1U1T6 Peptidase S49 0.00062886197331 0.000759556131951 52762835641.0 +UniRef50_UPI0003B4CA49 ribonuclease J 5.83655004914e-05 6.51235526882e-05 2728308602.47 +UniRef50_D9WJL5 0.00020772204788 0.000147865544518 -24164804929.1 +UniRef50_P37675 2,3 diketo L gulonate TRAP transporter large permease protein YiaN 0.00649286444955 0.000966828982054 -2.23092833031e+12 +UniRef50_UPI000262CC40 23S rRNA pseudouridine synthase D 1.83443521967e-05 1.02230618048e-05 -3278664590.65 +UniRef50_C1PH90 Pyridoxal dependent decarboxylase 0.0101461776785 0.00421452362488 -2.39468153103e+12 +UniRef50_UPI000399117C PREDICTED 5.00019400421e-05 0.000144692362186 38227685401.6 +UniRef50_G8VJM5 0.000797505610247 0.00815197883274 2.96909108945e+12 +UniRef50_UPI0003B5627F RNA polymerase subunit sigma 24 0.00029384821392 0.000109469548254 -74435929910.0 +UniRef50_D6ZGK4 5.50085365764e-06 2.44433744621e-05 7647328099.65 +UniRef50_E2Q4D8 IolC protein 0.000114737382625 0.0059806052673 2.36812284734e+12 +UniRef50_Q5HRK7 30S ribosomal protein S12 0.0166149349375 0.00594017351161 -4.30953218169e+12 +UniRef50_B2JLW6 ABC transporter related 0.00015428582651 0.000270519119271 46924806630.5 +UniRef50_D2J9T7 0.00417406764977 0.00295044381471 -4.93991957767e+11 +UniRef50_V9C4R9 PF12266 family protein 0.000174099792422 5.63037539161e-05 -47555706264.8 +UniRef50_Q8Y1I2 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.000846843372435 0.00022095077733 -2.5268052121e+11 +UniRef50_M6A924 Winged helix turn helix 4.29335394827e-05 0.00371030422315 1.4805625487e+12 +UniRef50_A4WZ94 0.00175850026736 0.00103651950466 -2.91472493602e+11 +UniRef50_X0ZU83 Marine sediment metagenome DNA, contig 3.22509832835e-05 3.80702539354e-05 2349310972.65 +UniRef50_M2QQT8 0.000153159082791 0.000146933824448 -2513213185.58 +UniRef50_UPI00037EEFBB hypothetical protein 5.82229385628e-06 2.48150709882e-05 7667617195.73 +UniRef50_Q49Z00 Redox sensing transcriptional repressor Rex 0.00936861016053 0.00107122336261 -3.34975687071e+12 +UniRef50_T1YC99 8 amino 7 oxononanoate synthase 0.00983946986161 0.00368036399972 -2.48650661717e+12 +UniRef50_UPI0004633377 hypothetical protein 3.87266539502e-05 5.24846485307e-05 5554271241.73 +UniRef50_L7WXU0 0.0199212156817 0.004661562451 -6.16050926624e+12 +UniRef50_UPI000348E813 beta lactamase 1.57045989844e-05 2.96570404935e-05 5632771852.93 +UniRef50_Q1IY10 DNA internalization related competence protein ComEC Rec2 5.01531428967e-05 0.00962508756203 3.86551852266e+12 +UniRef50_UPI0003683EEF acetolactate synthase 9.06639723919e-05 0.000528301432148 1.76679612919e+11 +UniRef50_X5FIX0 Two component response regulator and GGDEF family protein YeaJ 4.8764613614e-06 7.77283057189e-06 1169299792.72 +UniRef50_P21829 Pyridoxal phosphate phosphatase YbhA 0.0038882362494 0.00306401598738 -3.32747834097e+11 +UniRef50_Q8NZK5 Immunogenic secreted protein homologue 0.000410322606756 0.000238800570243 -69245550952.4 +UniRef50_H3WHC1 Cadmium resistance transporter family protein 0.000555232927744 0.00104724042999 1.98629466268e+11 +UniRef50_H8GRT7 2.4405940899e-05 0.000292885012368 1.08388295761e+11 +UniRef50_UPI00047B354D hypothetical protein 1.85929180571e-05 2.42899561817e-05 2299964201.42 +UniRef50_B0F658 Major ampullate spidroin 1 locus 3 1.02169521309e-05 0.000176896047362 67290396127.3 +UniRef50_P95781 8 oxo dGTP diphosphatase 0.00703153309441 0.00471983124184 -9.33262405654e+11 +UniRef50_T1Z4R2 0.00565461334667 0.000967458493678 -1.89226193201e+12 +UniRef50_UPI00046A4AB7 catalase 6.2029491269e-06 1.03181473401e-05 1661356017.83 +UniRef50_W7WTG1 CHAT domain protein 6.86807246068e-05 6.93917169686e-05 287036341.316 +UniRef50_X5F552 0.000458485006708 0.00122434825964 3.09188393408e+11 +UniRef50_UPI0002BC4B55 transposase 6.13196038774e-06 2.00393594593e-05 5614587668.18 +UniRef50_D4HCU3 Pyruvate kinase 0.000834681720869 0.00809724062397 2.9319841508e+12 +UniRef50_UPI000363409C hypothetical protein 0.000904970848426 9.27312365861e-05 -3.27911098601e+11 +UniRef50_Q7CWA6 2.65304992896e-05 1.17676869848e-05 -5959928487.53 +UniRef50_Q0VQR4 Na translocating NADH quinone reductase subunit E 0.000635375966967 0.000125912413773 -2.05676688245e+11 +UniRef50_UPI00037A1823 CobW 2.17677336617e-05 1.07192669073e-05 -4460401608.68 +UniRef50_UPI0003900E45 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.68734817934e-05 1.23456312802e-05 -1827948815.15 +UniRef50_P0DC16 Tagatose 1,6 diphosphate aldolase 2 3.47165292298e-05 4.43263544769e-05 3879604378.07 +UniRef50_C1CUZ2 8.8611734477e-05 0.0458238312724 1.84638693617e+13 +UniRef50_E3EIE7 Phospholipase carboxylesterase family protein 0.000487887521605 0.00101043123665 2.10957310096e+11 +UniRef50_E4FBI4 0.000359159417012 0.00016981787626 -76439503483.6 +UniRef50_A8LTL4 Resolvase domain protein 0.00535240764636 0.00048373108708 -1.96554447236e+12 +UniRef50_Q9KT93 Probable lactoylglutathione lyase 9.13608899915e-05 2.64915315698e-05 -26188556031.4 +UniRef50_UPI000169A652 dihydroxy acid dehydratase, partial 0.000442929144991 0.00172922948935 5.19295233698e+11 +UniRef50_N9ZY49 1.50444566663e-05 9.96889077879e-06 -2049068232.99 +UniRef50_U5UT50 0.00105837193136 0.000843762014843 -86640656857.7 +UniRef50_B9EAQ4 Oligopeptide ABC transporter ATP binding protein OppF 0.00720379293876 0.00197765268857 -2.10985695095e+12 +UniRef50_UPI000467AEF3 diaminopimelate decarboxylase 1.37614237477e-05 0.000174953986733 65075415732.2 +UniRef50_UPI00046E57F5 uroporphyrinogen decarboxylase 6.51719598652e-06 1.18963058382e-05 2171612656.22 +UniRef50_UPI00046D5352 hypothetical protein 4.95257820997e-06 1.17575167913e-05 2747237211.27 +UniRef50_UPI000300EAB7 hypothetical protein 0.000327361888448 6.37275625972e-05 -1.06432412503e+11 +UniRef50_UPI0004677218 acyl CoA transferase 2.05285833195e-06 8.77671994386e-06 2714505443.79 +UniRef50_B9KLX6 Chromosomal replication initiator, DnaA 0.000247828301455 4.12843581621e-05 -83384324486.6 +UniRef50_UPI00036F41B6 hypothetical protein 2.87976229609e-05 4.12333827896e-05 5020468846.78 +UniRef50_Q5RBK6 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 4.61740753603e-06 7.0573538081e-06 985036251.542 +UniRef50_UPI00047DDDC5 hypothetical protein 7.90378024887e-05 0.000107602555134 11531941171.8 +UniRef50_UPI00036A8D72 hypothetical protein 1.81861939098e-05 5.06241728674e-05 13095610163.9 +UniRef50_UPI0001BF7AAC hypothetical protein SMAC_09920 1.12938857627e-05 6.01560786213e-05 19726266863.6 +UniRef50_UPI0002739F39 8.52509287435e-05 6.58024349989e-06 -31760321030.7 +UniRef50_UPI0003618544 MULTISPECIES 0.000179644883624 0.00020487737172 10186665081.8 +UniRef50_E2Q1H6 1.4040785353e-05 4.28534677962e-05 11632033473.7 +UniRef50_UPI000369F333 hypothetical protein 3.21199765596e-05 1.84280627767e-05 -5527593612.83 +UniRef50_I6RSR0 0.000560341603212 0.000449199982175 -44869236273.7 +UniRef50_W0H1T2 0.000331128060398 0.000192883848574 -55810884760.6 +UniRef50_Q869Y7 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 8.21849630961e-06 1.88234985841e-05 4281369556.23 +UniRef50_Q0G2X9 6.04997526656e-06 7.275522497e-06 494768456.084 +UniRef50_R5R9L6 7.10590473154e-05 1.65942663495e-05 -21988100434.0 +UniRef50_T1AQZ2 Phosphoribosylformylglycinamidine synthase 3.12347934853e-05 4.84337678751e-05 6943437016.31 +UniRef50_Q12F86 Peptide chain release factor 1 0.00330161302826 0.000542196684499 -1.11401023982e+12 +UniRef50_Q2LTR7 Proline tRNA ligase 0.0239417802839 0.0108215771111 -5.29678702386e+12 +UniRef50_UPI00036F3D8D hypothetical protein 2.82739461197e-06 7.53501857934e-06 1900525564.67 +UniRef50_A4WRU9 PRC barrel domain protein 0.00270583958044 0.000497428955027 -8.91562469724e+11 +UniRef50_X6J7G6 0.00102472676941 2.71758204443e-05 -4.02723559424e+11 +UniRef50_V4QYY0 Transcriptional regulator 0.000408398101821 9.00573395035e-05 -1.28518072228e+11 +UniRef50_UPI00046B4F5A PREDICTED 1.54130498666e-05 0.000190438647961 70659981756.2 +UniRef50_B6JKF2 Cysteine desulfurase IscS 5.04705740017e-06 0.00441604646465 1.78077458976e+12 +UniRef50_K9SJV6 Amino acid amide ABC transporter substrate binding protein, HAAT family 0.000280828752635 0.028897393199 1.15528582317e+13 +UniRef50_UPI0002E4DF67 hypothetical protein 2.79711988837e-06 9.49489167224e-05 37202811211.6 +UniRef50_P07264 3 isopropylmalate dehydratase 6.7043774056e-05 5.9323521317e-06 -24671430952.3 +UniRef50_K8BVY4 0.00016806398057 0.000215225567847 19039711521.5 +UniRef50_UPI0003749F74 hypothetical protein 4.93518354236e-06 2.09818865441e-05 6478250916.98 +UniRef50_Q9CIW0 DhaKLM operon coactivator DhaQ 0.0017638786419 0.000542027200435 -4.93276420721e+11 +UniRef50_X1DTV9 Marine sediment metagenome DNA, contig 1.10107758914e-05 2.0302659581e-05 3751247469.73 +UniRef50_E3GXL3 Prephenate dehydratase 0.00220915152141 0.000373031627616 -7.41264132848e+11 +UniRef50_Q21VJ3 Short chain dehydrogenase reductase SDR 0.000964238397711 0.0484046609603 1.9152280748e+13 +UniRef50_UPI0003638CE1 hypothetical protein 9.99664838986e-06 2.48489649411e-05 5996062450.14 +UniRef50_Q5HF24 D alanine aminotransferase 0.00844236124403 0.00286103050974 -2.25325170806e+12 +UniRef50_Q60EN0 0.000115674971054 0.000104493108336 -4514255196.14 +UniRef50_B7IV23 6.21217520534e-06 0.00100489334155 4.0317984205e+11 +UniRef50_A8LT36 Na+ Ca+ antiporter 0.0136008812393 0.00249235155476 -4.48464975062e+12 +UniRef50_G8VDH4 0.000576398861147 0.00154140029708 3.89582921585e+11 +UniRef50_H0TRF6 PilL 0.000347974430411 0.000275843568457 -29120114116.0 +UniRef50_UPI0004688D7A 6,7 dimethyl 8 ribityllumazine synthase 8.38279489684e-06 2.24014478874e-05 5659502240.52 +UniRef50_K0HEK8 Mur ligase middle domain protein 0.000104760218922 0.00743516900166 2.95937597982e+12 +UniRef50_UPI0003B5D77D LytR family transcriptional regulator 2.78434186685e-06 9.48822210509e-06 2706438718.04 +UniRef50_M1PJW1 2.04128260595e-05 5.45682062205e-05 13788946104.6 +UniRef50_A3CRC4 0.00268457837421 0.00144712211327 -4.99576277837e+11 +UniRef50_P46907 Nitrite extrusion protein 0.0204197570958 0.00658528582653 -5.58514581947e+12 +UniRef50_A3PPT8 0.00256033345927 0.000475040276462 -8.41858447325e+11 +UniRef50_D6BB72 Predicted protein 3.31944188292e-05 1.26190553488e-05 -8306526725.14 +UniRef50_D3QG17 Transporter, LysE family 0.0107169494469 0.00401468224698 -2.70578751468e+12 +UniRef50_A1SET2 Cyclic pyranopterin monophosphate synthase accessory protein 1.30015025285e-05 0.00129226791343 5.16455548445e+11 +UniRef50_UPI0003726D73 hypothetical protein, partial 2.98010759476e-05 0.000254999048371 90915184957.0 +UniRef50_W1YK15 0.000286447542028 0.000222214344351 -25931730132.2 +UniRef50_Q89LQ8 Bifunctional enzyme IspD IspF 5.79381626422e-06 1.63471349413e-05 4260504253.73 +UniRef50_H1LUK9 1.89960006839e-05 8.30010932925e-05 25839641316.9 +UniRef50_U8YLF7 9.93384181239e-05 0.000253853901306 62379796678.8 +UniRef50_A0A052HNM0 Cyclic diguanylate phosphodiesterase domain protein 4.49485977494e-06 1.53831381489e-05 4395731593.78 +UniRef50_A3CQQ7 Tributyrin esterase, putative 0.00695700850786 0.00287730565469 -1.64702610541e+12 +UniRef50_A7H9V5 NADH quinone oxidoreductase subunit D 2 6.49769982799e-06 3.18208571483e-05 10223269360.3 +UniRef50_A8YY53 0.00123093257234 0.00199089913615 3.06807827649e+11 +UniRef50_Q5LY94 Phospho N acetylmuramoyl pentapeptide transferase 0.00658539112122 0.00628192333242 -1.22513670307e+11 +UniRef50_C6M7I4 3.76632582194e-05 0.000279509181195 97636166888.6 +UniRef50_B1ZVE5 Cobyrinic acid ac diamide synthase 4.92042119402e-06 2.4839201009e-05 8041455842.23 +UniRef50_S5RYV7 Lysine decarboxylase family protein 0.00517667681318 0.000672122762856 -1.81854374721e+12 +UniRef50_A0A019IPH8 0.000157556058517 3.16243514281e-05 -50840175507.7 +UniRef50_P0AGJ0 Trk system potassium uptake protein TrkA 0.00436470407595 0.00220964393439 -8.7002422471e+11 +UniRef50_Q59447 Cysteine synthase 1.63102432579e-05 2.24181906967e-05 2465853333.99 +UniRef50_Q9RZE8 Chromosome partitioning ATPase, putative, ParA family 0.000183550725104 0.0631718198955 2.54291372171e+13 +UniRef50_UPI00046E5735 phenylacetic acid degradation protein 1.01040722428e-05 4.69050012552e-05 14856986640.5 +UniRef50_B9KR74 Binding protein dependent transport systems inner membrane component 0.0101589268194 0.00108500670753 -3.66325289868e+12 +UniRef50_E8U679 S layer like protein array related protein 0.000256399618386 0.0271237282419 1.08466702645e+13 +UniRef50_N9JGK4 0.000175032143208 0.00459592341857 1.7847680583e+12 +UniRef50_Q79VD7 Cytochrome c oxidase subunit 1 0.000201335970844 0.00604431520099 2.35888241663e+12 +UniRef50_A4W453 30S ribosomal protein S2 0.0208711833263 0.0457315773859 1.00364461532e+13 +UniRef50_T7IR01 Diguanylate cyclase 0.000540761787582 0.000163459430921 -1.52321591405e+11 +UniRef50_K9H0D1 5.72618184856e-05 3.44942989945e-05 -9191527007.44 +UniRef50_Q3IVU8 FMN dependent NADH azoreductase 0.00462622823168 0.00372681389023 -3.63104606698e+11 +UniRef50_R9YLC4 Cell cycle family protein 0.0146185308701 0.00567240163273 -3.61166215448e+12 +UniRef50_Q67R59 Formamidopyrimidine DNA glycosylase 5.52342057787e-06 3.22323778763e-05 10782733817.1 +UniRef50_UPI000469D26A hypothetical protein 3.84367548011e-05 3.13832357276e-05 -2847592206.38 +UniRef50_E2BEN1 Methionine R sulfoxide reductase B1 0.000647941052889 0.00180785534303 4.68271632678e+11 +UniRef50_F8IF10 ABC transporter related protein 0.000356839351666 0.00138427246682 4.14787356608e+11 +UniRef50_A3M7V6 0.000471857486069 0.00259803020231 8.58362016619e+11 +UniRef50_UPI00036F34F3 hypothetical protein 7.836665491e-06 2.50648425099e-05 6955226476.04 +UniRef50_Q5HM36 Galactose 6 phosphate isomerase subunit LacB 0.0247932609432 0.0157614703978 -3.64624467571e+12 +UniRef50_UPI00046CF7C8 MerR family transcriptional regulator 0.000169279179165 0.000129503758411 -16057825457.7 +UniRef50_UPI000364CB09 hypothetical protein 7.03467172573e-06 8.93141637218e-05 33217240601.7 +UniRef50_A5UMW1 Predicted permease 0.00187226760336 0.000617283716122 -5.06652395663e+11 +UniRef50_R0FCU4 5.89458445553e-05 2.2192447719e-05 -14837797317.7 +UniRef50_UPI0003B46CBA O acetylhomoserine aminocarboxypropyltransferase 7.07090521665e-06 8.61485267607e-06 623310535.734 +UniRef50_Q9XAD5 Probable cysteine desulfurase 0.000280774702454 0.00494948241885 1.8848145966e+12 +UniRef50_X1HX76 Marine sediment metagenome DNA, contig 3.16251402973e-05 0.00012039937306 35839247148.6 +UniRef50_R4K347 Nitroreductase 0.000227401198102 0.0019797767946 7.07455532374e+11 +UniRef50_F7ZKI4 HTH type transcriptional regulator, AsnC family 0.00313650680224 0.00258924448495 -2.20936513154e+11 +UniRef50_A3PJ29 Cytochrome c, class I 0.00417257228081 0.00100107357693 -1.28037294542e+12 +UniRef50_G8VLH6 Alanine racemase 0.00034955373473 0.00411358049931 1.51958379466e+12 +UniRef50_D1BS48 0.00541576337914 0.00146565006584 -1.59470921792e+12 +UniRef50_Q6A850 Exodeoxyribonuclease V beta chain 7.69017002632e-05 0.00581037195267 2.31467229849e+12 +UniRef50_U3SQQ0 0.00535827419971 0.00443542775419 -3.72564434656e+11 +UniRef50_U3T1Y1 Potassium uptake protein, TrkA 0.000455343521063 0.00493759136368 1.80953845743e+12 +UniRef50_D9VIN2 Predicted protein 8.95251850385e-05 0.000471525839398 1.5421835184e+11 +UniRef50_UPI000471886D hypothetical protein, partial 0.00010711464251 6.73241349084e-05 -16063916203.2 +UniRef50_UPI0003A01DE6 hypothetical protein 1.6687224631e-06 1.0910690162e-05 3731095771.74 +UniRef50_Q2KXD7 Amino acid ABC transporter, permease protein 0.00256161189526 0.000617925572098 -7.84690020373e+11 +UniRef50_P52111 Glycerol 3 phosphate dehydrogenase 0.00299525590178 0.00089559080152 -8.47660566763e+11 +UniRef50_E4PYB8 Replication initiator protein 0.00568566005222 0.0010630391973 -1.86620876507e+12 +UniRef50_A6QDH4 0.0119989573726 0.00229230545785 -3.918694492e+12 +UniRef50_Q2FI15 Bifunctional protein FolD 0.00740703527429 0.00260274596056 -1.93955055121e+12 +UniRef50_UPI00036940F2 hypothetical protein 4.71602820202e-05 8.62688985525e-05 15788628410.8 +UniRef50_UPI00036C7AFF hypothetical protein 4.2577385597e-05 4.99869264025e-05 2991322548.47 +UniRef50_Q46845 Disulfide bond oxidoreductase YghU 0.0191800255289 0.0125848220903 -2.66256456041e+12 +UniRef50_N6S0H8 0.00132643215834 3.36268019972e-05 -5.2192138686e+11 +UniRef50_Q6VY64 3.15353240142e-05 0.000555562043299 2.11556017106e+11 +UniRef50_A9VQ13 1.85296589664e-05 0.00103278535997 4.09467472811e+11 +UniRef50_S0ACB3 1.30048623275e-05 2.60433467356e-05 5263796155.75 +UniRef50_Q9HLK8 Inosine 5 monophosphate dehydrogenase 2.59118798677e-05 8.85537522237e-05 25289292572.3 +UniRef50_B1IL95 7 cyano 7 deazaguanine synthase 4.58189510827e-05 5.79743238331e-05 4907273142.53 +UniRef50_Q92G97 NADH quinone oxidoreductase subunit L 0.000145706621807 4.51624093879e-05 -40590932369.8 +UniRef50_R7PVP7 0.00287350232707 0.000827767666796 -8.25888186338e+11 +UniRef50_Q9RU90 0.000909232413571 0.026684507891 1.04057950084e+13 +UniRef50_A8AL09 CDP diacylglycerol pyrophosphatase 6.85496438769e-05 0.0018840172144 7.32926536511e+11 +UniRef50_A2S4H0 ATPase, AAA family protein 0.0136571642592 0.00566294823183 -3.22736311031e+12 +UniRef50_W7A2A5 1.56660464008e-07 3.52580982773e-07 79095517.6406 +UniRef50_Q1GXG2 PKHD type hydroxylase Mfla_0096 3.50842910247e-05 9.06576302249e-05 22435638996.7 +UniRef50_A3PJJ8 0.0072995460202 0.00196553083877 -2.15340738447e+12 +UniRef50_A3PJJ6 0.00862191380061 0.00382951615904 -1.93474973723e+12 +UniRef50_C0QB47 0.000121309885662 0.00221058476842 8.43465908456e+11 +UniRef50_X1R832 Marine sediment metagenome DNA, contig 3.72365067342e-05 0.000392337003736 1.43358428213e+11 +UniRef50_D4HA15 2.33437270013e-05 0.00044816627305 1.71506074999e+11 +UniRef50_UPI0003B367DD 50S ribosomal protein L22 2.04786861344e-05 0.000124412287918 41959270448.9 +UniRef50_Q8D350 Protoheme IX farnesyltransferase 7.8445348395e-06 1.42415023161e-05 2582534269.92 +UniRef50_O31705 Molybdopterin synthase catalytic subunit 0.0567752400801 0.00769401641463 -1.98146922881e+13 +UniRef50_P43791 Dihydrofolate reductase 3.78046585291e-05 0.000417893251127 1.53446429043e+11 +UniRef50_UPI00035F8340 hypothetical protein 2.30528203608e-05 1.67424923067e-05 -2547556871.87 +UniRef50_K2IW44 1.65288268519e-05 1.74176167892e-05 358815404.367 +UniRef50_UPI0002A47C2E PREDICTED 4.41508683112e-06 3.30064649179e-06 -449913240.708 +UniRef50_X2MSF3 2.68782643797e-06 3.04658379977e-06 144834749.407 +UniRef50_Q2T517 Phenylacetaldehyde dehydrogenase 0.000318951762935 0.000276342063474 -17202058552.2 +UniRef50_Q7NS59 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.59644430458e-05 6.17301935544e-05 -5746541193.56 +UniRef50_UPI0003B67F64 RNA polymerase sigma factor RpoD 2.55814517692e-06 2.26710190122e-05 8119813980.03 +UniRef50_G8V7H8 CobN magnesium chelatase domain protein 0.000125773797886 0.00539675659168 2.12796043609e+12 +UniRef50_F5M3T2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000960271375145 0.000463848228053 -2.00412116278e+11 +UniRef50_UPI000473818F hypothetical protein, partial 1.66340535664e-05 2.20474925125e-05 2185471732.91 +UniRef50_N6UY44 1.9466920759e-05 0.000229233416149 84685308313.3 +UniRef50_Q1GMP5 Inner membrane translocator 0.00206528930816 0.000451896256958 -6.51346573329e+11 +UniRef50_UPI00030D61DF hypothetical protein 0.000112801970909 4.78741501312e-05 -26212158002.0 +UniRef50_W8F058 1.92934716169e-05 0.000107141626013 35465377947.8 +UniRef50_M4TQ85 Short chain dehydrogenase reductase SDR 1.85387037836e-05 6.84509222705e-06 -4720854482.11 +UniRef50_UPI00047EB00A hypothetical protein 1.21025878465e-05 2.18789553338e-05 3946839524.14 +UniRef50_B1J8H6 Asparagine synthetase 0.00117555102026 0.000256059759217 -3.7120990551e+11 +UniRef50_UPI0004670623 hypothetical protein 0.000357010644258 0.000314375080253 -17212500386.0 +UniRef50_UPI0002000789 two component system sensor kinase 7.88387312701e-05 0.000304710185272 91187077735.0 +UniRef50_UPI00039C791B chemotaxis protein CheY 0.000487770420764 2.93092830129e-05 -1.85086387261e+11 +UniRef50_X7A487 5.86677508954e-05 2.30160823006e-05 -14393016106.9 +UniRef50_Q8CUD3 Resolvase 0.0174385965128 0.00812812184754 -3.75875287474e+12 +UniRef50_UPI0003B32E66 hypothetical protein 0.000176135786529 7.51941222431e-05 -40751388565.8 +UniRef50_C6XLP5 Acyl CoA dehydrogenase domain protein 0.00606076329005 0.00146257231811 -1.85634612152e+12 +UniRef50_T0TWG5 ABC type multidrug transport system, ATPase component 0.0044184479745 0.000711266788563 -1.49663453699e+12 +UniRef50_B7IKZ0 Cyclic pyranopterin monophosphate synthase accessory protein 0.00294452114306 0.00821902560694 2.12938217752e+12 +UniRef50_G7M6W8 NADH dehydrogenase 0.000339552003766 0.000181361333789 -63863514687.5 +UniRef50_Q3J123 Diguanylate cyclase phosphodiesterase 0.00219243249559 0.000397516895486 -7.24629453852e+11 +UniRef50_P59676 Penicillin binding protein 2X 0.00557115077748 0.00687194309935 5.25145822856e+11 +UniRef50_UPI0003612BE4 hypothetical protein 1.14043592796e-05 7.6767014122e-05 26387705849.8 +UniRef50_A2RLU2 Geranyltranstransferase 0.00572979672843 0.00302023425449 -1.0938836208e+12 +UniRef50_H3UJR5 0.00327598783512 0.000442975057792 -1.14372202318e+12 +UniRef50_UPI00046D07E2 hypothetical protein, partial 3.79664459361e-06 1.25320155518e-05 3526576450.88 +UniRef50_S4XRJ9 0.00125744957268 5.04640439755e-05 -4.87274869314e+11 +UniRef50_W5X633 GTPase EngC 3.8393901595e-06 0.00053844228356 2.15825748381e+11 +UniRef50_UPI0003C15F36 2.13551905378e-05 3.58392957106e-05 5847410998.22 +UniRef50_Q9RUE8 Probable ABC transporter binding protein DR_1438 0.000519074501278 0.0211253326432 8.31899927911e+12 +UniRef50_Q9RV70 Uricase 0.000710959162569 0.0292427667278 1.15186408387e+13 +UniRef50_UPI00036D8F07 hypothetical protein 2.49714569773e-05 1.66429795547e-05 -3362308537.41 +UniRef50_K2R7H4 0.000535615880497 0.000160024816883 -1.51630721402e+11 +UniRef50_G7U7S7 ABC transporter associated permease 0.000106310739375 0.00611372516394 2.42526692246e+12 +UniRef50_UPI00037B01D8 hypothetical protein 6.8888656086e-05 6.71356100928e-05 -707726179.748 +UniRef50_A9D7U2 BRO, N terminal 5.07657136341e-05 1.3921585499e-05 -14874426656.4 +UniRef50_N0AWG4 Replicative DNA helicase 0.0131838411428 0.0147155176962 6.18356620393e+11 +UniRef50_T0TKM9 Transcriptional regulator, MerR family 0.000479855070575 0.000518099482802 15439738527.8 +UniRef50_Q2RI90 3 dehydroquinate dehydratase 5.58051319485e-05 6.1355413231e-05 2240716663.36 +UniRef50_P22036 Magnesium transporting ATPase, P type 1 0.000256386956667 0.000813539986862 2.24929515326e+11 +UniRef50_B9KQJ5 0.000443912111338 5.45315331482e-05 -1.57197717652e+11 +UniRef50_A0A037YUC7 Peptidase, M56 family 1.77070173894e-05 1.43503453809e-05 -1355129680.83 +UniRef50_T0CJ91 3.50247298737e-05 2.21881846155e-05 -5182270842.86 +UniRef50_Q9PET0 Transcriptional repressor NrdR 0.0048064282064 0.0113339592108 2.63524436829e+12 +UniRef50_C6W7J8 Arsenate reductase and related 6.11652263354e-05 6.08704799125e-05 -118992747.87 +UniRef50_UPI00046A7F54 NADPH dehydrogenase 5.23444363445e-06 8.22019845388e-06 1205385859.94 +UniRef50_UPI0003B5EE1D peroxiredoxin 1.13608256701e-05 0.0003606950233 1.41030502396e+11 +UniRef50_F7EFJ4 6.75821266239e-05 4.99167468386e-05 -7131730597.91 +UniRef50_X1MX97 Marine sediment metagenome DNA, contig 5.2763259163e-06 0.000127835176637 49478512002.3 +UniRef50_A2RLY6 Leucine tRNA ligase 0.0154113087639 0.00722407534885 -3.30528659831e+12 +UniRef50_UPI0002659767 PREDICTED 4.74899233435e-06 4.76101250009e-06 4852688.41326 +UniRef50_A7I8N1 Adenine deaminase 1.9816092577e-05 7.54042188278e-06 -4955838898.67 +UniRef50_A3PL70 Diacylglycerol kinase, catalytic region 0.00182687428467 0.000334952784714 -6.02307017469e+11 +UniRef50_U1GSZ3 MFS transporter, FSR family, fosmidomycin resistance protein 0.0002856225069 3.24355765774e-05 -1.02214670724e+11 +UniRef50_UPI00047C8DD6 PTS lactose transporter subunit IIA 4.284371226e-05 3.4128513262e-05 -3518432783.01 +UniRef50_Q5LWX7 Flagellar L ring protein 0.0026247425881 0.0014294483974 -4.82554932695e+11 +UniRef50_A6LZC0 Membrane protein CF 9 family 0.00022248683036 0.00139794890034 4.74548462193e+11 +UniRef50_P39180 Antigen 43 0.00365359213055 0.00111057765597 -1.02664614968e+12 +UniRef50_UPI000381BCDA hypothetical protein, partial 1.23564108599e-05 6.77524033006e-05 22364041933.6 +UniRef50_Q02PS5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000782765838147 0.000203666693245 -2.33789431143e+11 +UniRef50_M7XG55 7.23804420098e-06 0.000335000552769 1.32321746807e+11 +UniRef50_F2DFJ9 Predicted protein 5.64309976291e-05 0.000249769641664 78053183128.9 +UniRef50_UPI0003752867 hypothetical protein 4.61472560378e-06 3.39765627527e-05 11853733967.3 +UniRef50_Q820S3 Holliday junction ATP dependent DNA helicase RuvA 1.37459334894e-05 6.2161335455e-05 19545891897.3 +UniRef50_Q98F08 D amino acid dehydrogenase 1 small subunit 3.44058321955e-05 2.56677390764e-05 -3527675420.64 +UniRef50_P96335 Glycerol 3 phosphate transporter 0.00197600746418 0.000705230043653 -5.13028438861e+11 +UniRef50_Q7VQI2 Protein translocase subunit SecA 0.00220624996852 0.00178746393825 -1.69069059502e+11 +UniRef50_Q1QN09 Adenylate kinase 9.87731854205e-06 4.6094082131e-05 14621151890.5 +UniRef50_UPI000395C8AE PREDICTED 6.44276855008e-06 6.88986456666e-06 180498148.378 +UniRef50_D5QFV4 9.6651545578e-06 2.61067076906e-05 6637656760.26 +UniRef50_B7UNN8 CDP diacylglycerol pyrophosphatase 0.00237418770353 0.000836016358381 -6.20978647522e+11 +UniRef50_UPI000329B634 4.72653238836e-05 3.63113313674e-05 -4422261199.39 +UniRef50_P08201 Nitrite reductase large subunit 0.00376779281453 0.00146586437392 -9.29316759313e+11 +UniRef50_L6RYU4 Outer membrane phosphoporin protein E 0.000370948508026 0.00024781821415 -49709210616.4 +UniRef50_UPI000050FC02 helicase superfamily protein 1.79573789545e-06 3.43201924323e-05 13130521416.4 +UniRef50_UPI00047D3DBB hypothetical protein 2.00042667416e-05 2.03264399351e-05 130065271.726 +UniRef50_Q10X06 D alanine D alanine ligase 6.44542734621e-06 1.88089016877e-05 4991286308.55 +UniRef50_UPI00047094A0 hypothetical protein 3.91101966603e-06 2.55763643963e-05 8746565531.3 +UniRef50_UPI00046A8EC3 hypothetical protein 5.01178870681e-06 1.44987632349e-06 -1437987738.73 +UniRef50_UPI00047C9A63 hypothetical protein 1.92270572265e-05 1.16161393702e-05 -3072620935.05 +UniRef50_UPI00046B1B81 PREDICTED 2.13101921846e-05 2.14184895652e-05 43720981.5065 +UniRef50_V7Z9W4 Secreted protein 0.000625196849724 0.00037941891655 -99223567656.7 +UniRef50_A0A058T0F9 FKBP type peptidyl prolyl cis trans isomerase 0.00301523366419 0.000477601140485 -1.02447339007e+12 +UniRef50_R6PR03 Glycosyl transferase family 2 0.000260783941645 0.00154124181574 5.16936556755e+11 +UniRef50_Q8FK51 Carbamate kinase 0.00222459303967 0.000913350808562 -5.29364579451e+11 +UniRef50_O04983 Biotin carboxylase, chloroplastic 0.00015864761654 0.0529660603013 2.13190005207e+13 +UniRef50_Q88JX6 Porin like protein GalP 0.00019490464012 0.00029531691028 40537665660.7 +UniRef50_UPI0003815BE1 hypothetical protein 0.000466889945054 2.68633823042e-05 -1.77644123115e+11 +UniRef50_UPI0002D2EA81 hypothetical protein 2.93005912793e-05 5.21409717718e-05 9220941887.81 +UniRef50_A6M2X4 Transcriptional regulator, RpiR family 0.000269632849186 0.00167987068868 5.69330321366e+11 +UniRef50_Q67L49 5.53188095617e-07 9.68026997234e-07 167475555.229 +UniRef50_D1WL88 Oligopeptide ABC transporter, permease protein 0.000238572622068 0.00110209120915 3.4861305017e+11 +UniRef50_T2E4B1 Glycosyl transferases group 1 family protein 0.000147840465605 0.000723998550887 2.32602089283e+11 +UniRef50_E0XT86 0.00190863702229 0.000995449568075 -3.68664981337e+11 +UniRef50_D7G5T9 ABC transporter ATP binding protein 0.0109174821928 0.0128379344312 7.75310135241e+11 +UniRef50_B0A2M2 Oxidoreductase domain protein 0.000134451085533 0.000109525992224 -10062566034.1 +UniRef50_P37877 Acetate kinase 0.0133378835645 0.00120129945131 -4.89968793913e+12 +UniRef50_UPI0002BC838E PREDICTED 1.2941670754e-06 8.54587791577e-06 2927604654.76 +UniRef50_UPI0003763223 hypothetical protein 4.63439499441e-06 2.96854956165e-06 -672522243.427 +UniRef50_Q9RYX7 Xanthine permease, putative 8.3085690866e-05 0.039338919292 1.5848061748e+13 +UniRef50_D3QHC5 Alkaline phosphatase like protein 0.0239592675888 0.00132680500451 -9.13700287683e+12 +UniRef50_B6IRJ0 ATP dependent RNA helicase, DEAD 0.00127485420303 0.000392353180564 -3.56276492275e+11 +UniRef50_Q5HP60 0.00248474015665 0.00331687761268 3.35944102474e+11 +UniRef50_A8AZI4 Penicillin binding protein 1B 0.00746008293883 0.0068815914166 -2.33544126414e+11 +UniRef50_C4NUT7 0.000519476131447 0.000798153257284 1.12505375453e+11 +UniRef50_UPI000262D06B coproporphyrinogen III oxidase 2.63725154465e-05 4.77772060321e-05 8641336254.5 +UniRef50_E7AAE2 Peptidase M16 domain protein 0.000407358389015 0.00297159564592 1.03521404734e+12 +UniRef50_A9N1I0 Peptidase E 0.00354582089788 0.00273625735023 -3.26830738648e+11 +UniRef50_Q8Z2X7 Autoinducer 2 import system permease protein LsrD 0.00761012669518 0.00189322791132 -2.30798219328e+12 +UniRef50_H2I4X5 0.000118581986021 0.00631788757631 2.50273574083e+12 +UniRef50_P33915 Inner membrane ABC transporter permease protein YejE 0.00411321046148 0.000527272014461 -1.44768735548e+12 +UniRef50_A4B9S6 7.70291417942e-05 1.49568411552e-05 -25059349480.7 +UniRef50_D1K952 SusD family protein 3.67287478014e-05 0.00478157696352 1.91555345052e+12 +UniRef50_A5UJ63 0.00256187323572 0.000522684433979 -8.23245542923e+11 +UniRef50_Q88NC9 Poly C5 epimerase 0.000500397829064 0.000458437682607 -16939826033.6 +UniRef50_W7VQI0 Integral membrane protein 0.000424154947547 1.82920243923e-05 -1.63851842576e+11 +UniRef50_A0A022KYK2 0.000289575504688 0.000152223125476 -55450840991.1 +UniRef50_I3UWF3 Rieske domain containing protein 0.00105382378151 0.000197536257659 -3.45693781208e+11 +UniRef50_UPI00016A8727 1 phosphofructokinase, partial 2.86859380197e-05 0.000253534649997 90774184229.1 +UniRef50_A6LYB5 Nitroreductase 0.000490241543964 0.00106923010145 2.33744785646e+11 +UniRef50_R7PU75 0.0039047475406 0.000440771201791 -1.39844975575e+12 +UniRef50_P0ADY2 Peptidyl prolyl cis trans isomerase D 0.00277178881197 0.000330897506821 -9.85417772994e+11 +UniRef50_A4WJG1 Acetyl coenzyme A synthetase 3.38961512438e-06 3.72699726623e-05 13677916096.8 +UniRef50_W1V655 9.91621466588e-05 0.000158773468762 24065822246.2 +UniRef50_UPI000381A848 hypothetical protein 4.04238889418e-05 4.88743068359e-05 3411537402.14 +UniRef50_P26423 Galactose 6 phosphate isomerase subunit LacA 0.0498237447466 0.0228357010629 -1.08954044156e+13 +UniRef50_T0TEW3 Cysteine and methionine metabolism regulator CmbR, LysR family 0.00451181539371 0.00382332976104 -2.77950098578e+11 +UniRef50_W1N460 3.26362068442e-05 8.35382072833e-06 -9803097253.37 +UniRef50_P59191 UPF0225 protein CE1570 3.28277052032e-05 1.74992688223e-05 -6188277868.04 +UniRef50_V5T139 0.000503314651798 0.00165985970133 4.66911428899e+11 +UniRef50_M5AMX6 Probable transposase 0.000411020114208 0.000176306235783 -94756872983.4 +UniRef50_UPI0004195476 hypothetical protein 2.25318977592e-05 5.1010000599e-05 11496959582.0 +UniRef50_Q02R79 Spermidine putrescine import ATP binding protein PotA 0.000152391906106 0.00020840375901 22612672360.1 +UniRef50_Q2NE41 0.0053071582999 0.000411113742723 -1.97659326896e+12 +UniRef50_S1HD40 Inner membrane protein ybhI 0.000748583941995 0.000229520755339 -2.09552178075e+11 +UniRef50_P80644 FMN reductase 0.00129115027145 0.00131013204252 7663173913.48 +UniRef50_A3CL81 Glutamate 1 semialdehyde 2,1 aminomutase 8.60783199511e-06 2.73547069379e-05 7568343464.43 +UniRef50_E8W9I4 2.73447387532e-05 0.000444022316567 1.68217851372e+11 +UniRef50_I7EMH2 0.000517561799258 0.000123643765954 -1.59029543963e+11 +UniRef50_UPI00047106B1 hypothetical protein 8.44426343559e-06 1.31525726656e-05 1900802213.61 +UniRef50_Q3IGA3 UPF0176 protein PSHAa1433 0.0011924358975 0.000201933161601 -3.99878109318e+11 +UniRef50_Q8K911 PTS system mannitol specific EIICBA component 0.000757869104054 0.000258264493123 -2.01696512271e+11 +UniRef50_I4MXJ0 Plasmid pRiA4b ORF 3 family protein 0.00010439103014 3.92908144393e-05 -26281755947.9 +UniRef50_Q8CRY9 0.0108501689485 0.00226937683915 -3.4641710727e+12 +UniRef50_Q8CRY8 0.0075190307128 0.00210472769869 -2.18582056777e+12 +UniRef50_UPI0003F066F6 PREDICTED 5.538690743e-06 1.26244818464e-05 2860620820.88 +UniRef50_Q9RWT8 Sensor histidine kinase 0.000158205002264 0.00471957132774 1.84147955986e+12 +UniRef50_G4L3R1 Phosphoglycerate mutase family protein 6.54493821589e-05 0.00193597715673 7.55155016551e+11 +UniRef50_Q2FHD9 Glycerol kinase 0.0108561037072 0.0123184076074 5.90350028997e+11 +UniRef50_UPI00035FD70A DNA invertase 4.66917667082e-05 0.000140611694328 37916627307.2 +UniRef50_Q2W731 Phosphoribosylformylglycinamidine synthase 4.2977210833e-05 2.92159759517e-05 -5555579390.92 +UniRef50_D4E309 Mannitol dehydrogenase domain protein 0.000367072745853 0.000517351277587 60669287386.0 +UniRef50_UPI0003680DBD hypothetical protein 3.53560793626e-06 5.1687833555e-06 659332958.063 +UniRef50_P9WPZ0 Probable GTPase MT1543 0.000216945970609 0.00663731516817 2.59198183184e+12 +UniRef50_Q5GWB1 1.94600982206e-05 1.59421917552e-05 -1420222009.65 +UniRef50_N2I8V8 Autotransporter family porin 0.000702688304845 0.000449023210072 -1.02407711581e+11 +UniRef50_UPI00047753FE hypothetical protein 0.000168701958522 1.5140111578e-05 -61994802027.1 +UniRef50_UPI00031A53C3 hypothetical protein 1.77897105913e-05 3.15820832976e-05 5568150112.98 +UniRef50_X1K4A9 Marine sediment metagenome DNA, contig 2.18594173228e-05 1.81161233202e-05 -1511213724.23 +UniRef50_C6SHK2 Nitric oxide reductase 0.000206483443246 0.00327339350539 1.2381492273e+12 +UniRef50_UPI0002034B4E PREDICTED 9.73845241725e-05 2.02697841871e-05 -31132166836.4 +UniRef50_A3PQI0 RepB plasmid partition 0.0118137689406 0.00424355933225 -3.05618651581e+12 +UniRef50_UPI000237E2DC hypothetical protein 0.000877349447644 0.000473770115279 -1.62929928951e+11 +UniRef50_UPI00047CCD58 hypothetical protein 1.07302080373e-05 3.40078520655e-05 9397470543.0 +UniRef50_W1QBV5 Monomeric glyoxalase I 1.50751672956e-05 6.54343101453e-06 -3444366632.85 +UniRef50_E4FFC4 0.000353893114548 0.00384694147968 1.41018648953e+12 +UniRef50_G5Q502 Cytochrome c heme lyase subunit CcmF 0.00102020655181 0.000151703786922 -3.50625223913e+11 +UniRef50_T1YBR1 0.00360065064295 0.00135259559632 -9.07567409062e+11 +UniRef50_A0A011QP89 Elongation factor Tu 7.71693450054e-05 0.000296251882444 88446308809.2 +UniRef50_P0AAA2 Inner membrane protein YagU 0.00302707033321 0.000309772767695 -1.09700637219e+12 +UniRef50_UPI00047958EB ABC transporter permease 0.000147852790497 0.000252075712334 42076072504.7 +UniRef50_A0A024HBA2 Lost Adherence Sensor, LadS 9.09213297725e-05 0.000352393147119 1.05559381283e+11 +UniRef50_A8LQH3 0.00110107054658 0.00020319956779 -3.62481532253e+11 +UniRef50_A1BI09 UvrABC system protein B 0.0214788887947 0.00858170857198 -5.2067499221e+12 +UniRef50_P54123 Ribonuclease J 1.65807903765e-05 5.75024653662e-05 16520582358.8 +UniRef50_UPI000367649B hypothetical protein 2.18097723134e-06 1.10611808734e-05 3585047182.65 +UniRef50_U5PBM4 Branched chain amino acid ABC transporter substrate binding protein 8.46381140973e-05 0.00219620012472 8.52463495467e+11 +UniRef50_UPI000225B945 hypothetical protein 2.91149302768e-05 2.69976869552e-05 -854757110.427 +UniRef50_UPI0004669786 hypothetical protein, partial 8.52282534018e-06 2.7739430049e-05 7757979135.2 +UniRef50_Q6Z2L5-2 Isoform 2 of Ribose phosphate pyrophosphokinase 1, chloroplastic 7.07816871145e-05 6.13657494693e-05 -3801329573.92 +UniRef50_A6EE81 1.31295155998e-05 0.000423055625112 1.65492200769e+11 +UniRef50_M5EZ09 Heme molybdoenzyme heme containing subunit YedZ cytochrome b subunit 4.60070236658e-05 2.45040695048e-05 -8681006465.72 +UniRef50_D7GDA9 0.00105837193136 0.00272909929485 6.74493138771e+11 +UniRef50_A8HTC4 Predicted protein 7.45268036362e-06 0.000124034643956 47065569323.7 +UniRef50_X1VC56 Marine sediment metagenome DNA, contig 7.04797168241e-05 0.000332694315043 1.05859251036e+11 +UniRef50_G9MKE1 3.54958581964e-06 0.000444017584637 1.77822336273e+11 +UniRef50_R8AJR3 Oligopeptide ABC transporter permease 9.00274045531e-05 0.000612095819545 2.10765425632e+11 +UniRef50_O67108 DNA gyrase subunit A 7.42983207289e-06 1.84395454698e-05 4444756402.7 +UniRef50_B3QUX5 NADH quinone oxidoreductase subunit A 1 1.65893040596e-05 0.000252650143748 95300657774.3 +UniRef50_U5RYU5 Major facilitator superfamily MFS_1 0.000313499563827 0.000720041777059 1.64126080316e+11 +UniRef50_UPI0003596786 PREDICTED 4.30710519737e-06 4.53916626771e-06 93685901.8058 +UniRef50_UPI0003B73CB0 biotin biosynthesis protein BioY 4.21523358904e-05 5.66118906267e-05 5837499685.73 +UniRef50_UPI000382DFA2 hypothetical protein 1.18304158092e-05 2.41709431361e-05 4982022317.17 +UniRef50_W8WVR8 Dihydrolipoyl dehydrogenase 0.000215001922882 0.00634329070424 2.4740653836e+12 +UniRef50_Q7WKH5 3 isopropylmalate dehydratase small subunit 1 4.76861763725e-05 4.16015382615e-05 -2456443072.32 +UniRef50_UPI0003ADD90A PREDICTED 2.4549713244e-05 9.28279938916e-05 27564779766.2 +UniRef50_M1FC64 2.23283112608e-05 3.47780168645e-05 5026098927.28 +UniRef50_T1ZZG8 0.00273297604286 0.00525724409421 1.01907798858e+12 +UniRef50_P76210 0.00082664870976 0.00242822239569 6.46574950529e+11 +UniRef50_Q46890 Putative aldolase class 2 protein YgbL 0.00101858748945 0.000877113212431 -57114901717.2 +UniRef50_UPI00047D4CB0 uridine kinase 9.59407335344e-06 0.000642402629178 2.55472579421e+11 +UniRef50_S0UQQ2 Inner membrane protein ypdA 0.00248800652706 0.00166220595387 -3.33385825109e+11 +UniRef50_B9KWL8 Periplasmic glucan biosynthesis protein, MdoG 0.00724710065108 0.00185813985776 -2.17558960225e+12 +UniRef50_B5GJB9 PE PGRS family protein 4.03409736082e-06 8.29891558234e-06 1721759451.23 +UniRef50_Q5NMC2 Phenylalanine tRNA ligase alpha subunit 0.00373828277342 0.00715826718034 1.380689673e+12 +UniRef50_C6SH38 Transposase, IS30 family 0.0008644717302 0.00742423928974 2.64825866119e+12 +UniRef50_R5QF49 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.5332640187e-05 3.32572784588e-05 7236396430.37 +UniRef50_D8JHI1 Response regulator 7.59020084865e-05 0.00732808975718 2.9277971885e+12 +UniRef50_UPI0003C13108 PREDICTED 5.42068679964e-06 2.16308607561e-05 6544246147.44 +UniRef50_B0S039 Aspartate ammonia lyase 0.000546140291671 0.00141064412856 3.49010807607e+11 +UniRef50_Q47WP5 Ribonuclease 3 0.00565929702487 0.00372783554033 -7.79754703007e+11 +UniRef50_Q98PQ3 CTP synthase 3.67275115537e-06 0.000151763180557 59785923623.5 +UniRef50_O34125 ATP dependent Clp protease proteolytic subunit 2 0.00121957405125 0.00171327410537 1.99312770229e+11 +UniRef50_I5E3H6 Ion channel family protein 0.00209424104014 0.000289526181564 -7.2858553475e+11 +UniRef50_A0A059LD30 3.19515220329e-05 7.49509596433e-05 17359400625.8 +UniRef50_UPI0002DD61A2 hypothetical protein 3.64389602446e-06 1.23074057044e-05 3497565171.01 +UniRef50_X0V5G6 Marine sediment metagenome DNA, contig 0.000169158444638 3.49986343903e-05 -54161961723.1 +UniRef50_UPI00037AEC76 ABC transporter 9.14180785073e-06 2.64284520455e-05 6978830392.42 +UniRef50_UPI0002F9B62A hypothetical protein 2.30253715161e-05 3.95537654613e-05 6672715461.88 +UniRef50_Q031X8 D alanine D alanine ligase 0.00562189505563 0.00398994543593 -6.58838087747e+11 +UniRef50_UPI00046FAEC1 UDP N acetylglucosamine 2 epimerase 4.18131322732e-06 5.88664770703e-05 22077071705.8 +UniRef50_F9YY53 3.2815356893e-05 0.000798542430045 3.09133415959e+11 +UniRef50_X5KE03 0.00438726211118 0.00110743764448 -1.32410538518e+12 +UniRef50_Q9RVW3 9.26725013589e-05 0.00841978950043 3.36175931774e+12 +UniRef50_Q67PJ3 Tryptophan synthase alpha chain 6.09357515874e-06 1.41829253144e-05 3265769925.33 +UniRef50_A7IHD1 Rubredoxin type Fe4 protein 0.00514421114687 0.00024372767966 -1.97838531141e+12 +UniRef50_UPI0003FC0088 hypothetical protein 1.0208838013e-05 1.67160070583e-05 2627023995.53 +UniRef50_UPI00037EF707 3 methyladenine DNA glycosylase 2.94746298092e-05 3.1962121097e-05 1004230757.84 +UniRef50_Q17VZ5 Threonine tRNA ligase 0.0001306069476 0.0034646921404 1.34601110616e+12 +UniRef50_P56910 NADH quinone oxidoreductase subunit E 2 0.000235211553333 0.00227710018025 8.24335495479e+11 +UniRef50_D8LMU1 7.87696203726e-06 2.47584371055e-05 6815258644.03 +UniRef50_Q8XZ83 Carbamoyl phosphate synthase large chain 0.00159793871997 0.00318048288349 6.38892498814e+11 +UniRef50_B5ZA76 Peptidoglycan deacetylase 0.0113633783778 0.00573151712243 -2.2736514995e+12 +UniRef50_Q038N5 Chaperone protein DnaJ 0.0245773486118 0.0115942549595 -5.24143422791e+12 +UniRef50_Q82WI7 3 isopropylmalate dehydratase small subunit 5.61743266199e-05 4.54537840995e-05 -4328014571.34 +UniRef50_Q45539 Putative glycosyltransferase CsbB 0.00732768119136 0.00262679416836 -1.89780577756e+12 +UniRef50_UPI0003774C37 hypothetical protein 8.45561058175e-05 4.06472860344e-05 -17726529368.2 +UniRef50_Q6AB05 Porphobilinogen deaminase 0.000288164807201 0.00755117265086 2.93216539361e+12 +UniRef50_J9P043 9.73707841732e-05 5.19367325046e-05 -18342284197.1 +UniRef50_P13086 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 4.37933182634e-05 0.000118988420335 30357185454.0 +UniRef50_Q4KIU4 Type II and III secretion system protein 0.00085659922656 0.000439660239094 -1.68323385657e+11 +UniRef50_D6M4Q5 Urease accessory protein UreF 0.000383109642488 0.000454482719677 28814187107.3 +UniRef50_F2DBH7 Predicted protein 4.50656684228e-06 3.23734966531e-05 11250221530.3 +UniRef50_U7IPA8 0.000331100519292 0.00272974097321 9.68360585876e+11 +UniRef50_A6TVQ2 N acetylmuramic acid 6 phosphate etherase 8.58069209637e-06 9.03017730163e-06 181462693.167 +UniRef50_W5XIQ1 Transcriptional repressor NrdR 0.000112577548633 8.81145993673e-05 -9875992812.71 +UniRef50_Q2IMJ3 LigA 0.00142520202653 0.0012919273032 -53804641273.1 +UniRef50_Q7G2Z3 Expressed protein 0.000116986554754 0.00137708632747 5.0871774141e+11 +UniRef50_F0YT02 1.4602283493e-05 0.000544035046458 2.1373850328e+11 +UniRef50_A0A024L372 Protein involved in detoxification of methylglyoxal 0.000557212523168 0.000335060843375 -89685359240.1 +UniRef50_Q9RXL7 Hydrolase, haloacid dehalogenase like family 0.000193252212719 0.0431161435292 1.73284979476e+13 +UniRef50_P13082 Streptomycin 3 kinase 3.69329891776e-05 0.000495884957347 1.85284541524e+11 +UniRef50_UPI0004541F98 PREDICTED 0.000103400886275 0.000233759924953 52627543599.6 +UniRef50_UPI000255849F TetR family transcriptional regulator 4.35553676563e-05 4.72476592779e-05 1490623437.15 +UniRef50_D6WC74 1.9718324423e-05 8.51056787246e-05 26397677324.6 +UniRef50_D2N9Z4 Aminoacyltransferase FemA 0.024352029829 0.00505743938785 -7.78946293236e+12 +UniRef50_B2I0T9 Dehydrogenase with different specificities 0.000432235865095 0.00557328458329 2.0755044553e+12 +UniRef50_V9VP62 Esterase 0.00061453657647 0.000400882405239 -86254810757.5 +UniRef50_S0FRJ9 TRAP transporter solute receptor, TAXI family 7.61008745718e-06 6.01991981323e-06 -641970191.414 +UniRef50_B7V7J4 Recombination associated protein RdgC 0.00129539899702 0.00031983758685 -3.9384611277e+11 +UniRef50_B1JVW3 tRNA specific 2 thiouridylase MnmA 0.0228382639823 0.0104299159791 -5.00940235644e+12 +UniRef50_UPI00035D67F3 hypothetical protein 0.000164596378387 6.53536001253e-05 -40065527430.1 +UniRef50_UPI000410FFCF protoheme IX farnesyltransferase 6.5653742364e-06 9.56411856331e-06 1210629883.5 +UniRef50_A0A023RW25 Membrane protein 0.00011889278885 0.00606973760323 2.40242907664e+12 +UniRef50_W8ZWW3 7.85320140554e-05 4.63016920132e-05 -13011776519.0 +UniRef50_D3E135 Voltage gated chloride channel protein 0.00155872629327 0.000228941436121 -5.36850465127e+11 +UniRef50_UPI0003F95CA7 50S ribosomal protein L25 0.000174159937944 6.01811735834e-05 -46014625849.3 +UniRef50_Q8DRV2 Glucan binding protein A, GbpA 0.00846564374656 0.00597460937094 -1.00566114587e+12 +UniRef50_F6AFI4 Patatin 0.000207030706866 0.000188299705755 -7561935003.74 +UniRef50_UPI00036B8421 hypothetical protein 4.59398113682e-06 3.4982279326e-06 -442369014.948 +UniRef50_Q46SI8 0.000126532614721 2.35624066642e-05 -41570336579.2 +UniRef50_J9YT94 Amidase 0.00471899050695 0.000134540640185 -1.85079866874e+12 +UniRef50_UPI00037F4511 hypothetical protein, partial 0.000229027588482 5.21583898878e-05 -71404265901.5 +UniRef50_Q93615 Probable electron transfer flavoprotein subunit alpha, mitochondrial 0.000420966516321 0.00821986891212 3.14851260048e+12 +UniRef50_UPI00039BDE65 DNA helicase 6.46846464419e-06 3.01804149928e-06 -1392978165.05 +UniRef50_UPI00046638E1 ADP ribose pyrophosphatase 1.98102753443e-05 0.000246869147318 91666452941.6 +UniRef50_UPI000476B251 hypothetical protein 0.00016163827764 0.000348786790942 75554151390.5 +UniRef50_UPI000464F730 ABC transporter ATP binding protein 6.9530872795e-06 4.88460911673e-05 16912719754.5 +UniRef50_F0K963 0.000800154173473 0.000579987196886 -88884110200.8 +UniRef50_UPI00038256A0 hypothetical protein, partial 1.61565977933e-05 4.54421517871e-05 11822937521.5 +UniRef50_UPI000470FDE7 hypothetical protein 1.33313071298e-05 3.26730103224e-05 7808482928.24 +UniRef50_Q0C0N0 Bifunctional enzyme IspD IspF 6.35343287073e-06 1.78230974104e-05 4630444323.29 +UniRef50_A6LXC3 0.000186874251907 0.00218713458916 8.07529644102e+11 +UniRef50_A5UKY3 Probable phosphoglucosamine mutase 0.00357757887225 0.00237082211603 -4.87182511057e+11 +UniRef50_UPI00036277E7 hypothetical protein 8.80879839581e-05 6.60395486147e-05 -8901223912.86 +UniRef50_UPI000375D958 hypothetical protein 5.73875336071e-06 6.57438811382e-06 337356004.222 +UniRef50_Q5HNY1 DNA repair protein RecO 0.0135816168534 0.00304570456225 -4.2534770821e+12 +UniRef50_A0A028XXS7 0.000145864215417 1.29806808191e-05 -53646713581.6 +UniRef50_R8ZK04 0.000355485577134 0.000152750019926 -81846832289.9 +UniRef50_P36967 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.0234656572759 0.0546094025174 1.25731121307e+13 +UniRef50_Q9RV98 Ferrochelatase 0.000167275918245 0.0342853313838 1.37738776671e+13 +UniRef50_I6GMY7 Inner membrane transport protein YhaO 3.09596039346e-06 2.93297519159e-06 -65799126.0483 +UniRef50_A6M384 CheC domain protein 0.00097206692408 0.00156135662744 2.37903484644e+11 +UniRef50_R6JVY2 4 hydroxy tetrahydrodipicolinate synthase 0.000448881117165 0.00168102333956 4.97430935264e+11 +UniRef50_X5ESC8 4.75162744966e-05 4.52751881976e-05 -904754040.128 +UniRef50_B0T2A6 Lysine tRNA ligase 0.00886522533251 0.00188542360539 -2.81783160904e+12 +UniRef50_P0A1X7 Methionine aminopeptidase 0.0138160220957 0.00265068643494 -4.50758302034e+12 +UniRef50_K4VCY9 Outer membrane specific lipoprotein transporter subunit LolE 0.00337459736092 0.000350871332905 -1.2207153028e+12 +UniRef50_O86013 4 hydroxy 2 oxovalerate aldolase 4.79076400224e-05 0.000293591128078 99185439003.6 +UniRef50_UPI0002E2CBA6 hypothetical protein 1.11885602524e-05 2.96909396736e-05 7469637622.07 +UniRef50_Q16AA8 0.000208325624319 1.85221840439e-05 -76625977989.1 +UniRef50_A6LZI3 Transcriptional regulator, TetR family 0.000224249102288 0.00068009700049 1.84031390387e+11 +UniRef50_UPI000474BBE2 ATP synthase F0F1 subunit gamma 4.85243068262e-06 1.10075940921e-05 2484915000.76 +UniRef50_E3ZDN2 PadR family transcriptional regulator 0.000165009354495 3.12974167876e-05 -53981150082.3 +UniRef50_B7KCX9 Adenylosuccinate synthetase 1.66174883677e-05 2.04449566892e-05 1545195929.71 +UniRef50_Q98EA0 Mlr4340 protein 0.000120556519087 2.54538883843e-05 -38394099055.2 +UniRef50_UPI0002D46E5D hypothetical protein 2.87552387397e-05 0.000122716134845 37933166787.6 +UniRef50_UPI0004226290 MarR family transcriptional regulator 1.63696073613e-05 0.000114293509246 39533080852.3 +UniRef50_J8V1E5 5.4587857025e-05 0.000209144974858 62396605098.3 +UniRef50_B6IRE2 Deoxyribodipyrimidine photolyase like protein 0.00292146556202 0.000320632300245 -1.04998830359e+12 +UniRef50_A0Q0M8 tRNA dimethylallyltransferase 0.000342212690917 0.000955902744388 2.4775420541e+11 +UniRef50_V8RAG2 Sodium 0.000630587676438 0.000346083992111 -1.14857628616e+11 +UniRef50_Q8CNS0 Uroporphyrinogen decarboxylase 0.0211119444678 0.00517056477889 -6.43573060314e+12 +UniRef50_UPI00037EED1B hypothetical protein 4.94402178791e-05 0.00455418767028 1.818621826e+12 +UniRef50_UPI0002493305 amino acid ABC transporter ATP binding protein 0.000231282611081 6.02698502088e-05 -69039950126.6 +UniRef50_UPI00046F93AF hypothetical protein, partial 2.62973069312e-05 4.88266535813e-05 9095373708.82 +UniRef50_I0ZLL7 Amino acid permease associated region 0.00182941755998 0.000764670357488 -4.29851511563e+11 +UniRef50_I2HA76 Mobilization protein A 0.00131173147082 0.000241415767301 -4.32099583762e+11 +UniRef50_Q9RWB6 0.000499653438543 0.0673089917792 2.69717497309e+13 +UniRef50_Q9HZU3 Precorrin 2 C methyltransferase 0.000359538898309 0.000833625433925 1.91394552124e+11 +UniRef50_U8ZF23 UPF0125 protein Q012_00884 9.26408729856e-05 3.06990131754e-05 -25006688917.5 +UniRef50_U5UJ70 MutS domain V family protein 0.00638572238472 0.000717658894036 -2.28826678615e+12 +UniRef50_U5T6S5 2.29394100746e-05 3.22679378939e-05 3766041154.56 +UniRef50_J9WRR1 Transketolase, thiamine diphosphate binding domain protein 2.61967143253e-05 2.58173030131e-05 -153173002.636 +UniRef50_R9YLA1 Ktr system potassium uptake protein A 0.020059252678 0.0025883422863 -7.05322091731e+12 +UniRef50_Q5HLV4 Staphylococcal accessory regulator Y 0.00800239635322 0.00144596601299 -2.6469113848e+12 +UniRef50_T1JU40 9.49003496099e-06 2.11190409245e-05 4694772411.42 +UniRef50_Q7R725 9.79690522724e-06 0.000158552021898 60054266030.6 +UniRef50_UPI000237E869 phage integrase 0.00012829356318 8.32447001783e-05 -18186778805.5 +UniRef50_Q57466 Flagellar basal body rod protein FlgC 0.000995037286734 0.000489475201976 -2.04101617561e+11 +UniRef50_I4DXS5 Acyltransferase homolog 0.00653980756869 0.00675317836006 86140406830.1 +UniRef50_Q28LT2 6,7 dimethyl 8 ribityllumazine synthase 0.00175618132571 0.00098068449862 -3.13077585512e+11 +UniRef50_A4WWA2 0.0050996133752 0.00192431147166 -1.2819083438e+12 +UniRef50_B4T381 Protein NrdI 0.0078525437345 0.000968589068264 -2.77913697438e+12 +UniRef50_Q9JYY8 Ribosomal RNA large subunit methyltransferase K 0.000258872596211 0.0033994934442 1.26790717609e+12 +UniRef50_P71297 0.000288892338411 0.00226727046924 7.98695528846e+11 +UniRef50_P71296 0.00101720977147 0.000419640181617 -2.41246176427e+11 +UniRef50_Q71WL8 Arginine tRNA ligase 0.0251829445771 0.00925905418513 -6.42866995936e+12 +UniRef50_A4EQX8 Immunogenic protein 0.000258988767374 5.45402834293e-05 -82538361833.6 +UniRef50_Q54QE4 Bifunctional purine synthesis protein purC E 1.33063686161e-05 1.57158277088e-05 972728203.111 +UniRef50_UPI00014AD6BB MULTISPECIES 1.97121344645e-05 8.86587792357e-06 -4378766864.1 +UniRef50_I0C4X0 KipI 0.0185708698225 0.00523464516114 -5.38399754969e+12 +UniRef50_UPI000373927B hypothetical protein 3.19362540761e-05 3.5488129094e-05 1433935531.13 +UniRef50_C5N1M3 Glyoxalase family protein 0.0114876831609 0.00105476950836 -4.21189526776e+12 +UniRef50_C6SQK1 0.00552387450498 0.000396398262003 -2.0700250805e+12 +UniRef50_Q9CHM9 Glycogen synthase 0.00446958888226 0.00085985381811 -1.45729434183e+12 +UniRef50_C9TNI8 NAD specific glutamate dehydrogenase 2.34136827915e-05 1.36793422497e-05 -3929872730.52 +UniRef50_R6XC37 Oxidoreductase NAD binding domain protein 0.000163599808729 9.04420912307e-05 -29534668300.2 +UniRef50_S4RTP3 1.06124392602e-05 2.27598503597e-05 4904058926.37 +UniRef50_F3F217 Isoleucyl tRNA synthetase 0.000819044825047 0.00079202288793 -10909087610.6 +UniRef50_UPI0003772113 hypothetical protein 9.50463037596e-05 5.27679253746e-05 -17068300168.1 +UniRef50_Q8FCG2 0.000815428841801 8.60604221933e-05 -2.94454981353e+11 +UniRef50_R7QYT4 Methyltransferase type 12 0.000809707329048 0.000803336262903 -2572077584.51 +UniRef50_B9DIQ2 Sodium 0.00899095079396 0.00133596293888 -3.09041253436e+12 +UniRef50_E3DTJ4 3.553818755e-06 1.57700240415e-05 4931831983.86 +UniRef50_B9KTV0 Tripartite ATP independent periplasmic transporter, DctQ component 0.000175323689711 0.00013251573117 -17282098175.7 +UniRef50_UPI0003B7AA4B iron transporter 1.69570516196e-05 1.52469175422e-05 -690402112.751 +UniRef50_Q3IVN6 0.00723412102313 0.00221840105825 -2.02490769963e+12 +UniRef50_Q3IVN1 0.00420609001181 0.00574137484501 6.19813327226e+11 +UniRef50_Q3IVN0 0.00495123908695 0.00195415701071 -1.20995881251e+12 +UniRef50_I4Y1U6 0.000302249945156 0.000123048627157 -72345771123.7 +UniRef50_Q3IVN2 0.0094943445681 0.0104229425363 3.74886394941e+11 +UniRef50_F0RJ04 Potassium uptake protein, TrkH family 8.36379591226e-05 0.0296378247298 1.193138787e+13 +UniRef50_Q4L562 Probable quinol oxidase subunit 4 0.0061664681791 0.00212603088962 -1.6311741155e+12 +UniRef50_C2QRL4 3.32462117829e-05 0.000246924109412 86264389395.5 +UniRef50_P0AFQ0 Inner membrane transport permease YbhR 0.0033644371676 0.0015608896218 -7.28114276257e+11 +UniRef50_Z5XBU2 Potassium transporting ATPase subunit B 9.24049228769e-06 0.00187557720017 7.53463031498e+11 +UniRef50_Q6FCU8 O methyl transferase 0.00055786106727 0.00435939715957 1.53472677056e+12 +UniRef50_Q9HGZ0 ATP dependent 6 phosphofructokinase 2 4.00557177518e-06 3.03595716479e-06 -391445316.724 +UniRef50_UPI000379175B hypothetical protein 0.000112429998035 2.79151643321e-05 -34119675479.5 +UniRef50_F0YF70 3.19439300233e-05 9.43294211361e-06 -9087962060.03 +UniRef50_Q18AR0 Acetyl CoA acetyltransferase 1.23052135111e-05 7.82849852625e-05 26636843518.9 +UniRef50_V4QJE1 0.0178260887726 0.00390596078639 -5.61972648721e+12 +UniRef50_F0KFI6 Succinate semialdehyde dehydrogenase (+)) 0.000189098804829 0.00644100307705 2.52397047419e+12 +UniRef50_M4SAI5 6.91104147978e-05 0.000159020789125 36297921440.3 +UniRef50_K0HLP5 Cell envelope related transcriptional attenuator 1.58205162156e-05 0.00217070389521 8.69952863491e+11 +UniRef50_UPI00029A71CE ATP cobalamin adenosyltransferase 9.08235093104e-06 1.4802311149e-05 2309218131.8 +UniRef50_D6C476 2.16870479001e-05 0.000492157108136 1.89934536634e+11 +UniRef50_UPI0003B69FA4 ABC transporter ATP binding protein 8.70479517523e-06 8.78194692552e-06 31147108.3505 +UniRef50_UPI00037DC4C2 hypothetical protein 2.2320347284e-05 3.24254882458e-06 -7701941348.97 +UniRef50_A5UNW1 Phage related minor tail protein 0.00348094779087 0.000740138400825 -1.10649838428e+12 +UniRef50_Q9KPI5 UPF0126 membrane protein VC_2382 0.00482413725085 0.000325119308468 -1.8163087525e+12 +UniRef50_D9RDD3 Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1 0.0149207677758 0.000577269139603 -5.79064641396e+12 +UniRef50_UPI0003EB35B9 L lactate permease, partial 1.85360730159e-06 9.87332190105e-05 39111488093.4 +UniRef50_Q9CGM7 Dihydroorotase 0.00578669861729 0.00482657131642 -3.87615173448e+11 +UniRef50_UPI0003C11B56 3.74020350008e-06 3.85911315616e-06 48005287.3451 +UniRef50_Q04HZ7 D alanine poly ligase subunit 1 0.00676455883082 0.00375753679259 -1.21397169714e+12 +UniRef50_P22099 Anthranilate synthase component 1 0.00301534554797 0.000490651084777 -1.01925013627e+12 +UniRef50_UPI00046F34F7 glycosyl transferase family 39 1.50170416029e-05 1.59452686954e-05 374736667.87 +UniRef50_G1ZTT8 Sodium dependent inorganic phosphate transporter family protein 0.00690666170161 0.00106492388621 -2.35838124226e+12 +UniRef50_UPI000350B2EA PREDICTED 7.41862016486e-05 1.21449330137e-05 -25046821479.9 +UniRef50_K5YQU9 4.18145547763e-05 2.89431342535e-05 -5196350415.15 +UniRef50_UPI00046BF16E PREDICTED 1.35463219976e-06 9.13132658069e-06 3139546952.35 +UniRef50_UPI0003FCF933 DNA polymerase III subunit alpha 3.60651770913e-06 2.21446169201e-06 -561990096.56 +UniRef50_C3LNG5 Amino acid ABC transporter, permease protein 0.000870281264154 0.000773755559468 -38968611485.3 +UniRef50_Q9RWV7 Tryptophan tRNA ligase 0.00012796135215 0.0420833646116 1.69379111465e+13 +UniRef50_UPI0004560947 hypothetical protein PFL1_00311 1.44431709291e-05 1.86887923497e-05 1714009467.13 +UniRef50_F0LUE5 Predicted hydrolase of the HAD superfamily 0.000582543050858 0.00138105132473 3.22367588961e+11 +UniRef50_K0LKT0 0.00139277597654 0.0043551082019 1.19592987128e+12 +UniRef50_UPI0003823C05 hypothetical protein 0.000172416776267 9.60730834794e-06 -65728180095.7 +UniRef50_UPI0003A4E18C hemolysin expression modulating protein 4.30787682591e-05 2.60816950684e-06 -16338477346.4 +UniRef50_UPI000472C7D5 diaminopimelate decarboxylase 8.90399066986e-06 8.46130280363e-05 30564667439.2 +UniRef50_UPI0003715A93 phosphoribosylglycinamide synthetase 1.39468336504e-05 2.44537946885e-06 -4643278191.83 +UniRef50_B0CKZ1 0.000821683249897 0.000287343111972 -2.15719670771e+11 +UniRef50_F7ZE55 0.00462164394839 0.000550682640576 -1.64349703628e+12 +UniRef50_R5FLI5 Glutathione peroxidase 0.000549736876965 0.00368616016509 1.26621256966e+12 +UniRef50_M9VH17 0.000262076560141 0.000305527728858 17541770016.9 +UniRef50_UPI00036E90C5 hypothetical protein 8.21219037483e-05 0.000128492027548 18720188003.3 +UniRef50_Q8DSG3 Aspartate tRNA ligase 0.00716310742295 0.00208883927694 -2.04854431882e+12 +UniRef50_U5V5C3 Putative nRPS PKS 1.72818411647e-05 9.86019527077e-05 32829926939.9 +UniRef50_UPI0004705979 hypothetical protein 8.39461366984e-06 8.9122932045e-06 208993580.785 +UniRef50_UPI00035D3D1B hypothetical protein 0.000202515499788 3.19764633004e-05 -68848701779.5 +UniRef50_UPI0003B3A97F UTP glucose 1 phosphate uridylyltransferase 0.00025123847649 0.000135111774288 -46881774713.8 +UniRef50_P77607 0.000370881898274 0.000551289092249 72832598052.9 +UniRef50_X1DZD1 Marine sediment metagenome DNA, contig 2.47205412101e-05 5.81197372885e-05 13483665311.1 +UniRef50_Q5NWG5 Isopentenyl diphosphate Delta isomerase 2 7.43213996447e-05 1.90806838428e-05 -22301354849.0 +UniRef50_UPI000225ADDB large conductance mechanosensitive channel protein MscL 5.40995468574e-05 6.10462269887e-05 2804460014.36 +UniRef50_C7TN90 ABC transporter, amino acid binding protein 0.00702969874428 0.00623223467489 -3.21946030797e+11 +UniRef50_A5UKX8 O linked GlcNAc transferase 0.00245823093574 0.000882767705338 -6.3603383922e+11 +UniRef50_UPI000375E38D hypothetical protein 6.97414799666e-06 6.26460530979e-05 22475431260.5 +UniRef50_Q7U8I1 Fumarate hydratase class II 6.78675023395e-06 1.25911332666e-05 2343300658.07 +UniRef50_I6U4E4 0.00729093234313 0.00133814022035 -2.40321522894e+12 +UniRef50_P0ADI8 0.000329202897256 0.000626671157593 1.20091587044e+11 +UniRef50_E8SDZ5 0.025412918601 0.00243198529974 -9.2776847815e+12 +UniRef50_P18642 Protein ImpB 0.00159003262334 0.00020250288357 -5.6016278285e+11 +UniRef50_A4VP76 Lipoprotein, putative 0.000700301055808 0.000177367390508 -2.11114737799e+11 +UniRef50_UPI00035D47CC hypothetical protein, partial 0.000234417190976 3.95394460445e-05 -78674537047.5 +UniRef50_UPI00029A6A13 binding protein dependent transport system inner membrane protein 1.1004921197e-05 3.18472320783e-05 8414296666.7 +UniRef50_I0ZSX5 Transporter, major facilitator family protein 0.00111558990951 0.000736370815849 -1.53095401653e+11 +UniRef50_F3Y8Y9 Altronate oxidoreductase 0.000155985945804 0.000223161238178 27119489864.9 +UniRef50_P0A963 L asparaginase 1 0.00166646714253 0.000566806690887 -4.43946418678e+11 +UniRef50_Q46MN5 Hydrophobe amphiphile efflux 1 HAE1 0.000808129526279 6.15243135783e-05 -3.01413686244e+11 +UniRef50_Q6FFX5 Ribonuclease PH 4.25592345041e-05 1.50644653298e-05 -11099975714.4 +UniRef50_A6LWL3 Collagen triple helix repeat 4.34391241527e-05 0.000267648352131 90516016691.3 +UniRef50_O69754 Trans 2,3 dihydro 3 hydroxyanthranilate isomerase 0.000289451916503 4.70367337981e-05 -97865984026.8 +UniRef50_UPI00037CA56D hypothetical protein 8.90002479414e-05 1.50535445417e-05 -29853191590.6 +UniRef50_UPI0003A01C14 iron ABC transporter permease 1.0691662724e-05 6.91033536546e-06 -1526568256.75 +UniRef50_R5D7P7 ABC transporter permease protein 0.000166933348714 7.35342772658e-05 -37706351279.1 +UniRef50_UPI00047ED6FC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.30597506173e-05 6.01389356282e-06 -2844498955.28 +UniRef50_R7R1P9 Cobalamin biosynthesis protein CbiM 0.000276719895371 0.0056523464125 2.17020639132e+12 +UniRef50_B1YU48 Uracil phosphoribosyltransferase 6.43682564735e-05 0.000118842361961 21991864857.7 +UniRef50_Q1J275 Transcriptional regulator, Crp Fnr family 0.000343169080774 0.0323418371894 1.29182549833e+13 +UniRef50_T9JR44 8.17766565087e-06 1.39143415988e-05 2315966477.11 +UniRef50_P27431 50S ribosomal protein L16 arginine hydroxylase 0.00486200865535 0.00124857238685 -1.45878856344e+12 +UniRef50_Q6ZDB2 5.84146777618e-05 0.000106788539384 19529121550.9 +UniRef50_Q5HLY0 Probable molybdenum cofactor guanylyltransferase 0.0179032963372 0.00449540983695 -5.4129283134e+12 +UniRef50_A1BAJ3 Peptidase M23B 0.000107386961053 3.4427617587e-05 -29454582269.0 +UniRef50_Q3IW06 0.00110454695865 0.000591561929607 -2.07098351259e+11 +UniRef50_UPI00046F60DA hypothetical protein 2.79593827946e-05 1.25907867892e-05 -6204490801.26 +UniRef50_UPI00035CF7ED hypothetical protein 7.03139388276e-06 2.6943276063e-05 8038671182.42 +UniRef50_UPI00047B007B 2 oxoglutarate dehydrogenase 1.41968731216e-06 1.86870176321e-06 181272643.916 +UniRef50_E6Q0D3 4.67514356353e-05 9.02721019445e-05 17569827047.7 +UniRef50_D7GEE3 rRNA methylase 0.000278245200628 0.00505317374271 1.9276972474e+12 +UniRef50_UPI0002DEB9E1 hypothetical protein 5.43702773776e-06 0.000100701695306 38459515326.2 +UniRef50_Q48JY0 Dihydroorotate dehydrogenase 1.73529348147e-05 3.14176785445e-05 5678109637.53 +UniRef50_C6SS67 0.00609909338577 0.00111314570002 -2.0128882652e+12 +UniRef50_B8H5V4 Uronate isomerase 0.00617867240817 0.00188964220599 -1.73153412494e+12 +UniRef50_Q7UWS1 Na translocating NADH quinone reductase subunit E 8.88263240391e-05 0.000114629503914 10417060356.1 +UniRef50_UPI000412F4F5 hypothetical protein 9.35268203105e-05 1.35502772672e-05 -32287511849.1 +UniRef50_A3PQF5 Peptidase M24 0.00473323388577 0.000873830695649 -1.55808842805e+12 +UniRef50_A5W310 Major facilitator superfamily MFS_1 0.00116368382066 0.000896813951921 -1.07738640871e+11 +UniRef50_P76550 0.00357456103561 0.000213997612461 -1.35670069268e+12 +UniRef50_UPI00035E8F3F hypothetical protein 0.000178684763972 5.92784985726e-05 -48205774621.2 +UniRef50_A5UAG1 Ribonuclease T 0.0031953885718 0.00297450547729 -89173215794.1 +UniRef50_UPI0003739549 hypothetical protein 1.99902795493e-05 0.000575638776795 2.24322116912e+11 +UniRef50_A7X3B0 Transcriptional repressor NrdR 0.030715149197 0.00313065537791 -1.11361986546e+13 +UniRef50_F9VBF9 OPT family oligopeptide transporter 7.88619753888e-05 0.00095919906521 3.55402886112e+11 +UniRef50_D4HBS7 Oxidoreductase, NAD binding domain protein 0.000143895548483 0.00654586537552 2.58455378018e+12 +UniRef50_R9SJM3 Amidohydrolase 0.00270630887141 0.00276610145639 24139000294.0 +UniRef50_A5UKM3 0.00371352824693 0.000772767802043 -1.18722107879e+12 +UniRef50_A5UKM2 0.00233569523991 0.000143010510987 -8.85213732332e+11 +UniRef50_A3PIB0 OmpA MotB domain protein 0.000503715856153 0.000115810472618 -1.56602163467e+11 +UniRef50_A6FVX3 Transcriptional regulator, MarR family protein 0.00233838690787 0.000495508120008 -7.43992781325e+11 +UniRef50_UPI00016C448A hypothetical protein 3.66129074076e-05 0.00735517335542 2.9545926617e+12 +UniRef50_Q49890 Tyrosine recombinase XerD 0.000246186514471 0.00433203616319 1.6495076422e+12 +UniRef50_Q5LND3 Orotidine 5 phosphate decarboxylase 0.00120024755922 0.000254218110649 -3.81923697475e+11 +UniRef50_Q14JF9 Protoheme IX farnesyltransferase 4.36984379905e-06 1.73241208433e-05 5229800609.64 +UniRef50_Q5HRV4 0.00362410935657 0.000720284646817 -1.17230966926e+12 +UniRef50_A3CTR9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 3.2162174718e-05 8.77409774415e-06 -9442053678.3 +UniRef50_Q5HKN5 0.00291100899235 0.000935288741878 -7.97622509929e+11 +UniRef50_UPI0002EC4132 hypothetical protein 5.59550563826e-06 4.58596831372e-05 16255142553.3 +UniRef50_Q9RUU2 DNA helicase RecQ 9.47131982586e-05 0.0127566692968 5.11178705664e+12 +UniRef50_A1SRV2 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.84537674543e-05 4.9457664995e-06 -5453345747.26 +UniRef50_UPI0004574B02 PREDICTED 3.60290733687e-05 1.55955269346e-05 -8249273443.26 +UniRef50_UPI00047B0F79 ATP dependent DNA helicase PcrA 1.7192994877e-05 8.00220796498e-06 -3710433460.02 +UniRef50_J4Y9F0 5.80457606104e-05 0.000152001875169 37931236418.5 +UniRef50_Q2SSQ6 ATP dependent 6 phosphofructokinase 1.43257646858e-05 1.01783254702e-05 -1674372106.14 +UniRef50_UPI0003B58BDB glutathione synthetase 3.40271525092e-06 5.55957823724e-06 870752055.263 +UniRef50_D0D8F2 Tripartite ATP independent periplasmic transporter, DctQ component 0.000155450032925 6.28655053514e-05 -37377509921.4 +UniRef50_P76168 Putative lambdoid prophage Qin defective integrase 0.00283808496387 0.000556406631506 -9.21141542115e+11 +UniRef50_B9KWD2 Quinol oxidase subunit II 0.00103228869028 0.000574410320154 -1.84851116819e+11 +UniRef50_UPI00035F8901 hypothetical protein 0.00015134020674 3.38427871912e-05 -47435150127.4 +UniRef50_Q9RYN5 Cytochrome C6, putative 0.000146881707723 0.0616682951815 2.4836949572e+13 +UniRef50_B7H202 Peptidase M16C associated family protein 0.00020860888321 0.00768012469634 3.01634261957e+12 +UniRef50_Q5HPK4 0.00781214809412 0.00287671465947 -1.99249504215e+12 +UniRef50_Q2YSU1 Teichoic acid biosynthesis protein 0.0124137274904 0.00164799048651 -4.34626013892e+12 +UniRef50_UPI000479479D family 2 glycosyl transferase 0.000149072790182 3.4977564636e-05 -46061642658.8 +UniRef50_A4WRV1 Transport associated 0.000984044406011 0.000713594233594 -1.09184053402e+11 +UniRef50_T2GRR2 0.000150440879345 0.000238304604967 35471664242.8 +UniRef50_Q7NPI6 Glutamate 5 kinase 5.33224891031e-06 1.2479552297e-05 2885454084.48 +UniRef50_A4WRB0 Spheroidene monooxygenase 0.00470119357408 0.00131760096559 -1.3659978574e+12 +UniRef50_Q6GJ94 Putative long chain fatty acid CoA ligase VraA 0.0117071822348 0.00174581500354 -4.02152619098e+12 +UniRef50_Q6CS32 KLLA0D04378p 9.27563484787e-06 2.40769396293e-05 5975468372.69 +UniRef50_A5IV89 0.0132558476748 0.000386877779725 -5.19536106667e+12 +UniRef50_UPI00047ED515 cobyrinic acid a c diamide adenosyltransferase 2.44569457527e-05 0.000380546518311 1.43757730152e+11 +UniRef50_UPI000407EA99 hypothetical protein 3.53569480711e-06 3.13398385952e-06 -162175639.09 +UniRef50_Q67MF5 Lipoyl synthase 6.2856807304e-06 4.0796091846e-05 13932276457.7 +UniRef50_A7X0W1 Phosphoribosylformylglycinamidine synthase 2 0.023261372983 0.00504826030323 -7.35285708886e+12 +UniRef50_N2V265 Glycosyltransferase like 2 family protein 0.00159680589346 0.00129792721244 -1.20660991182e+11 +UniRef50_Q5SHZ8 8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase 0.000262397933841 0.0309982963532 1.24084593638e+13 +UniRef50_D3HNL5 Cytochrome c oxidase subunit 2 0.00140665428789 0.000405503761083 -4.04176753172e+11 +UniRef50_B4D9A7 Cobyrinic acid ac diamide synthase 6.12068901095e-06 8.88202067888e-06 1114783479.69 +UniRef50_G7M7X4 Replisome organizer region containing protein 0.000374393301598 0.000533016997375 64038332516.8 +UniRef50_Q67PR4 Methionyl tRNA formyltransferase 5.01340415809e-06 2.07405040309e-05 6349223211.87 +UniRef50_G0D6I9 0.00271317277564 7.58316968283e-05 -1.06472695733e+12 +UniRef50_Q9ZMH8 Putative zinc metalloprotease jhp_0242 0.00022948630826 0.00629732825043 2.44966225285e+12 +UniRef50_P33345 Putative molybdate metabolism regulator 0.000699724652584 0.000137360842467 -2.27033171124e+11 +UniRef50_V5SX49 Chemotaxis protein CheY 0.000505619055759 0.00154777703004 4.20731962933e+11 +UniRef50_F3CHT8 Histidine lysine arginine ornithine ABC transporter permease HisM 4.54090265867e-05 0.000194165312638 60054738123.7 +UniRef50_UPI0004010090 NUDIX hydrolase 0.000174397233424 1.77809743983e-05 -63227905666.4 +UniRef50_UPI0003A6958B DNA polymerase IV 4.33869155643e-06 8.6224874575e-06 1729420973.35 +UniRef50_UPI0003695FA0 hypothetical protein 2.38273197906e-06 3.23231165328e-06 342985739.998 +UniRef50_B5XPC8 Uridine kinase 1.06704553196e-05 0.000311567292098 1.21475745427e+11 +UniRef50_S2IZA5 2.64852275158e-05 7.92441963827e-05 21299443156.9 +UniRef50_V5T4Y9 AraC family transcriptional regulator 0.00132250410445 0.000273441393692 -4.23519489781e+11 +UniRef50_Q1LLQ3 Cbb3 type cytochrome oxidase, subunit I 0.000118955668759 0.00191743787 7.26069334499e+11 +UniRef50_X1XSD9 0.0217858521546 0.00434002203139 -7.04309570515e+12 +UniRef50_Z2CD30 0.0121435573411 0.00136286899342 -4.35229617989e+12 +UniRef50_Q9RUE5 0.000289631193489 0.0224746360002 8.95635868109e+12 +UniRef50_Q9RUE6 0.000166917856689 0.0330413213749 1.32718001146e+13 +UniRef50_UPI0003728022 hypothetical protein 8.13009554226e-06 2.12148291955e-05 5282467543.53 +UniRef50_C1CRM5 9.10513168199e-06 0.00120642519994 4.83372804326e+11 +UniRef50_L0KKT8 7.1396699805e-05 7.66431637179e-05 2118061862.99 +UniRef50_R4QK25 GTPase 9.29005714967e-05 0.0026534848763 1.03373930575e+12 +UniRef50_Q98QH1 Lysine tRNA ligase 1 3.68821755283e-06 7.25193306518e-06 1438715684.04 +UniRef50_UPI00040189EA C4 dicarboxylate ABC transporter permease 9.99921429727e-05 1.50867724728e-05 -34277339976.9 +UniRef50_P77187 0.00264488239814 0.00187348850034 -3.11421182609e+11 +UniRef50_W8T289 0.00167972234275 0.00122200015942 -1.84788062293e+11 +UniRef50_X5QID8 Transposase 0.00587713518861 0.00111244149756 -1.92356531244e+12 +UniRef50_UPI0002EB2D0F hypothetical protein 0.000216783665046 0.000114815751979 -41165697792.2 +UniRef50_Q1QBW0 Lipid A export ATP binding permease protein MsbA 0.000141840916575 0.0075247841623 2.9805847872e+12 +UniRef50_E5VNE0 DNA replication and repair protein RecF 3.38858059911e-05 8.72094224864e-05 21527398333.5 +UniRef50_UPI00047C7FF5 hypothetical protein 5.89023881796e-05 7.34542743403e-06 -20814177728.1 +UniRef50_UPI000474B713 phosphoglucomutase 1.47721541472e-05 1.0699542929e-05 -1644163125.35 +UniRef50_UPI0003653228 hypothetical protein 1.15631276669e-05 2.17336897434e-05 4105980717.11 +UniRef50_E3A662 Signal recognition particle receptor FtsY 0.000130359593674 0.000212834350657 33296071473.1 +UniRef50_B0V727 0.000205901448467 0.00927153267233 3.65990657288e+12 +UniRef50_UPI0003772B6E hypothetical protein 7.69724654099e-06 7.92368275104e-06 91415076.682 +UniRef50_E8YFF3 Ribonucleoside diphosphate reductase 0.000711528810748 0.000538104462594 -70013537505.8 +UniRef50_J7QHS4 0.000222050581675 0.000343391517665 48986824879.9 +UniRef50_D3DZ50 Nicotinate phosphoribosyltransferase 0.00280915717911 0.0004372719365 -9.57559178747e+11 +UniRef50_W1T644 Fructoselysine transporter 0.000334058397217 0.000522684433979 76150645742.6 +UniRef50_X7F912 Malto oligosyltrehalose trehalohydrolase 0.00446198354867 0.00100868154914 -1.39414039399e+12 +UniRef50_Q28R66 Anthranilate phosphoribosyltransferase 5.50630815389e-05 3.08177469518e-05 -9788139096.52 +UniRef50_UPI00037E8315 hypothetical protein 3.27026475869e-05 2.49838842643e-05 -3116159473.21 +UniRef50_U6IKF5 Adenylyltransferase and sulfurtransferase 1.35303218501e-05 3.07413896933e-05 6948319291.85 +UniRef50_P05846 Transposon Tn7 transposition protein TnsC 9.58086266163e-05 0.00495861217892 1.96317346737e+12 +UniRef50_S5Y8G8 Penicillin binding protein, 1A family 0.00364778274832 0.000652086324375 -1.20939940768e+12 +UniRef50_P0AFM0 Paraquat inducible protein A 0.003890751589 0.000494203946313 -1.37122796368e+12 +UniRef50_Q6GHW0 UPF0348 protein SAR1099 0.0155989583656 0.00452547063447 -4.47050288402e+12 +UniRef50_UPI00042C781F PREDICTED 8.84366946958e-06 2.28038111158e-05 5635880492.77 +UniRef50_G7U8E3 Adenosylmethionine 8 amino 7 oxononanoate transaminase 9.50048629665e-05 0.0053461277422 2.11994274487e+12 +UniRef50_P52044 0.00240821408399 0.00119792480302 -4.88608634647e+11 +UniRef50_O50274 Bifunctional enzyme CysN CysC 0.000757699037971 0.000376910497654 -1.53729006527e+11 +UniRef50_F4N7B8 Pirin like protein PA2418 1.06497585971e-05 1.50994387245e-05 1796390471.15 +UniRef50_W5X7C0 NADH dependent flavin oxidoreductase 8.80457839425e-05 0.000198944786583 44771288250.0 +UniRef50_V9TYA5 Beta ketoadipate enol lactone hydrolase 0.000831552333171 0.000238800570243 -2.39301160576e+11 +UniRef50_X8AP60 Recombination O family protein 1.37815117514e-05 5.48316910805e-05 16572461137.5 +UniRef50_Q9RTA5 0.000494934185971 0.0144362969055 5.62829920962e+12 +UniRef50_UPI000225F589 hypothetical protein 4.1642392299e-05 6.98506028045e-05 11388000734.7 +UniRef50_Q9A545 5 hydroxyisourate hydrolase 2.4640340016e-05 0.000195005762676 68778611746.7 +UniRef50_Q9RTA6 1.70189237437e-05 0.00601737320786 2.42241665713e+12 +UniRef50_C1CUQ9 Translation initiation factor IF 2 0.000133565049162 0.022789168761 9.14634523397e+12 +UniRef50_UPI000478DE35 cytochrome Cbb3 3.94054754604e-05 2.74418645663e-05 -4829856527.96 +UniRef50_UPI000361F45B hypothetical protein 7.38374652608e-06 0.000111796968922 42152899175.6 +UniRef50_C7BXE2 9.64614963009e-05 0.00507528460708 2.01001198685e+12 +UniRef50_F3S6G5 6.10692268204e-06 1.14615721896e-05 2161737715.14 +UniRef50_P34843 Cytochrome c oxidase subunit 3 8.56104260302e-06 1.71982546014e-05 3486948474.26 +UniRef50_UPI00047810F9 hypothetical protein 4.98532368506e-06 1.11034267668e-05 2469953291.67 +UniRef50_H6LDW2 UDP galactopyranose mutase Glf 0.00165416474913 0.000909745951537 -3.00531003634e+11 +UniRef50_W6V4Z4 3.08103365752e-05 0.000969042861533 3.78775983733e+11 +UniRef50_D5AQK7 Membrane protein, putative 0.00043544807847 3.67940302843e-05 -1.60941531288e+11 +UniRef50_B7LM74 Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase 0.00222466865299 0.000994650212072 -4.96573538623e+11 +UniRef50_P74061 Ribulose phosphate 3 epimerase 1.48774802123e-05 0.000334852181197 1.29177713319e+11 +UniRef50_UPI000478D8DB hypothetical protein 3.62003055997e-06 8.52261334415e-06 1979232831.43 +UniRef50_A2VSU2 NAD NADP transhydrogenase beta subunit 4.43173169831e-06 6.73332841153e-05 25394128599.6 +UniRef50_Q01A90 WGS project CAID00000000 data, contig chromosome 04 3.1368738326e-05 1.29116903421e-05 -7451336764.55 +UniRef50_UPI0004631E88 hypothetical protein 0.000143666297746 2.08832716849e-05 -49569014338.0 +UniRef50_P59522 Ribosomal RNA small subunit methyltransferase H 1.29433433717e-05 7.58522854409e-06 -2163136707.37 +UniRef50_I0HWW2 6.16540863228e-06 5.59402885045e-06 -230673029.543 +UniRef50_UPI000370D7A6 hypothetical protein 0.000548524101817 1.92467755156e-05 -2.13675751591e+11 +UniRef50_Q54DD3 Aminomethyltransferase, mitochondrial 1.74088406746e-05 7.72413407574e-06 -3909834898.67 +UniRef50_Q8DPZ3 Release factor glutamine methyltransferase 0.00443595805177 0.00247728959328 -7.90738492257e+11 +UniRef50_UPI000362B874 hypothetical protein 1.27571184279e-05 5.92038400701e-05 18751111492.3 +UniRef50_W8TSF6 0.000905348833236 2.67461482819e-05 -3.54702685583e+11 +UniRef50_Q57NU9 GTP cyclohydrolase 2 0.0070607440529 0.000297298696507 -2.73048588718e+12 +UniRef50_B7V9G1 0.000452816463171 0.000134031787524 -1.28697285487e+11 +UniRef50_UPI00016C4BB1 hypothetical protein 5.45450439872e-05 0.00933914464854 3.74830679521e+12 +UniRef50_D5ALH8 Lipoprotein, putative 0.000426778464075 3.83368587575e-05 -1.56818642781e+11 +UniRef50_J3D958 2.18258229799e-06 7.51101544426e-07 -577906346.456 +UniRef50_H9KM75 2.05104008462e-05 8.52604236091e-06 -4838232585.13 +UniRef50_F8GU79 0.000365378352266 0.000974994530444 2.46109531962e+11 +UniRef50_Q9KZV6 Polyphosphate kinase 1.12991347959e-05 0.000435525486461 1.7126538401e+11 +UniRef50_C1CQE1 UPF0340 protein SPT_0687 0.00683596222978 0.00687122181446 14234727019.1 +UniRef50_UPI0004660C96 amino acid lyase 2.35739754899e-05 4.37561243085e-05 8147781140.89 +UniRef50_F0P462 0.0199940566202 0.00724468779945 -5.14707664527e+12 +UniRef50_UPI00036A8875 hypothetical protein 1.89414550079e-05 7.42446019108e-06 -4649552136.96 +UniRef50_G8RED1 Virulence associated cell wall anchored protein SasG 0.000790249088534 0.000733886681627 -22754195312.9 +UniRef50_UPI0004786393 sugar ABC transporter permease 0.000450298971242 0.000242576391471 -83860154496.3 +UniRef50_U6KDN7 6.79627126107e-06 1.3320931857e-05 2634085549.17 +UniRef50_H9KJ92 8.07850647621e-06 0.00402533782494 1.62181688418e+12 +UniRef50_UPI000470B6F6 DEAD DEAH box helicase 3.40017981456e-05 3.38543303062e-05 -59534576.3997 +UniRef50_B2UUU1 Purine nucleoside phosphorylase DeoD type 3.11788512056e-05 0.00748561484895 3.0094472885e+12 +UniRef50_P42693 Peptidyl prolyl cis trans isomerase 3.30346762676e-05 0.000372922758717 1.3721698978e+11 +UniRef50_UPI000472ECAA UDP N acetylmuramate alanine ligase 1.43197527948e-05 4.48430531292e-06 -3970690842.95 +UniRef50_I7DYY9 Cell division protein ftsW 0.011309069864 0.0058243377205 -2.21425367156e+12 +UniRef50_A6LVT1 5.88595616769e-05 0.00154461696835 5.99818497366e+11 +UniRef50_P44951 Diaminobutyrate 2 oxoglutarate aminotransferase 0.000646073060019 0.00601066894547 2.16575318995e+12 +UniRef50_A6LVT2 0.000223309298637 0.000173206278698 -20227203982.6 +UniRef50_Q3IVS3 RES domain containing protein 0.0168927602896 0.00427198393611 -5.09516228825e+12 +UniRef50_Q31I68 Ribosomal RNA small subunit methyltransferase H 3.24585674492e-05 9.17547092342e-06 -9399671783.19 +UniRef50_M1MGS7 Polysaccharide deacetylase 0.000735039622704 0.00067283486121 -25112825553.4 +UniRef50_G0GLQ7 ATP dependent RNA helicase HrpB 0.0036807713272 0.00054237715904 -1.26700823811e+12 +UniRef50_UPI00021982B8 hypothetical protein, partial 1.0419552553e-06 7.88390049002e-06 2762177251.37 +UniRef50_M4R0W4 Metalloendopeptidase 0.000719024946491 0.00870234727323 3.22296518969e+12 +UniRef50_UPI00034A5B30 CoA transferase 5.39502526814e-06 0.000130757449534 50610349046.1 +UniRef50_F9P4K2 Putative IS1167, transposase 7.60131633467e-05 0.000287330510962 85311406387.6 +UniRef50_Q89SJ2 Blr2408 protein 3.28570837337e-05 2.81066409565e-05 -1917812043.64 +UniRef50_Q7TTY7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.19434505497e-05 1.7436368827e-05 2217558514.23 +UniRef50_A3LIZ0 0.00112723936828 0.00118957248332 25164643455.0 +UniRef50_Q9I700 Beta alanine pyruvate aminotransferase 0.00138355348105 0.00549564207452 1.66010062619e+12 +UniRef50_U9I2I4 0.000115738844174 4.8826129276e-05 -27013484115.7 +UniRef50_B6V383 Tra8 0.00689361364181 0.00244381461703 -1.79643847148e+12 +UniRef50_P34030 DNA gyrase subunit A 2.4072185288e-05 5.17667399579e-05 11180631570.6 +UniRef50_Q9HXI4 Inositol 1 monophosphatase 0.00222246776555 0.00153974873813 -2.75622049274e+11 +UniRef50_UPI00046A5EF5 hypothetical protein 9.09709626986e-06 5.59322704789e-06 -1414555002.22 +UniRef50_Q9RS69 0.001398096255 0.0953508854204 3.79298939164e+13 +UniRef50_Q7A7F8 0.0132944994987 0.00113479507977 -4.90902189026e+12 +UniRef50_Q16DP8 Chemotactic signal response protein, putative 0.000155483077426 7.58800115333e-05 -32136734540.3 +UniRef50_P12782 Phosphoglycerate kinase, chloroplastic 5.52648229123e-06 5.55378641455e-05 20190208563.2 +UniRef50_UPI0001BF6917 hypothetical protein SMAC_10596, partial 5.57706239498e-05 9.24753853381e-05 14818162590.5 +UniRef50_Q3IVS7 0.00584008849251 0.00173947343312 -1.65546861968e+12 +UniRef50_Q3IVS4 0.0108890128815 0.00347740901605 -2.99215543109e+12 +UniRef50_Q3IVS5 0.00685401774908 0.00351592618433 -1.34762852768e+12 +UniRef50_Q0AVV3 3 oxoacyl [acyl carrier protein] synthase 3 8.5723474247e-05 1.69441993868e-05 -27767037277.7 +UniRef50_Q3IVS1 0.0116515056726 0.00308732552268 -3.45746462083e+12 +UniRef50_P72161 D alanyl D alanine endopeptidase 0.00117281342928 0.000265068561785 -3.6646774229e+11 +UniRef50_K2AFL1 Type I secretion system ATPase 0.000143487679681 7.49721877522e-05 -27660544871.3 +UniRef50_G2T6A4 2.96037608201e-05 3.95346542416e-05 4009223540.03 +UniRef50_Q390S8 Drug resistance transporter EmrB QacA subfamily 0.000553677575648 0.000245894354798 -1.24255863182e+11 +UniRef50_UPI00036D110C hypothetical protein 1.35020815986e-05 1.07712195005e-05 -1102482540.45 +UniRef50_A5UM36 Predicted RecB family exonuclease 0.00217010783799 0.000708941581512 -5.89890748267e+11 +UniRef50_UPI0004202255 hypothetical protein 1.73896353086e-06 2.50848362246e-06 310664704.052 +UniRef50_E8SNW4 4.99012729997e-06 0.000259122942089 1.02596535891e+11 +UniRef50_UPI000417C86E heme biosynthesis protein HemY 0.000408524562383 0.000298985546146 -44222245049.8 +UniRef50_UPI0003B5B9BE leucyl phenylalanyl tRNA protein transferase 7.62334786049e-06 4.55687237237e-05 15319013878.1 +UniRef50_UPI00047B9601 hypothetical protein 4.94408191124e-05 5.56414887692e-05 2503286431.22 +UniRef50_UPI0004642A7D hypothetical protein 3.52989399503e-06 9.10232190284e-06 2249657527.76 +UniRef50_U3T4I1 Phosphate ABC transporter periplasmic substrate binding protein 7.96928575227e-06 0.00316811152918 1.27578820298e+12 +UniRef50_UPI00035E6AC5 hypothetical protein 9.67530528816e-06 0.000107748550853 39593372728.6 +UniRef50_Q67P77 Polyribonucleotide nucleotidyltransferase 5.06178554828e-06 0.000938403352861 3.76801444113e+11 +UniRef50_UPI0003B791AF hypothetical protein, partial 0.000259370525103 0.00023537418319 -9687617698.51 +UniRef50_Q55141 Acetolactate synthase small subunit 5.38322496553e-05 0.000869621497587 3.2934413025e+11 +UniRef50_B9NXE5 Calcium binding hemolysin protein, putative 2.69894470644e-06 2.08375318347e-06 -248360367.072 +UniRef50_I6SUE0 ABC transporter permease 0.00386082320774 0.000411440696925 -1.3925580483e+12 +UniRef50_A6DDD4 7.01441746586e-06 6.78530106972e-05 24561286661.0 +UniRef50_D6B6F5 AsnC family transcriptional regulator 4.30285250628e-05 9.07059798007e-05 19247973545.9 +UniRef50_F4DU59 Protein disulfide isomerase like protein 0.000754391977334 0.00026057356341 -1.99360553534e+11 +UniRef50_Q4FS24 Putative phosphoenolpyruvate synthase regulatory protein 0.0012567595625 0.00535348288774 1.65389747885e+12 +UniRef50_A1B8P9 0.0054071639162 0.000472451118009 -1.99220411236e+12 +UniRef50_R5TVL0 0.000421775899907 5.79293995353e-05 -1.46889297099e+11 +UniRef50_C5YKS4 0.000221024832029 2.95695012863e-05 -77292866442.1 +UniRef50_UPI000365F03D hypothetical protein 2.18749084645e-06 4.2795898297e-06 844606032.48 +UniRef50_UPI0004724D34 hypothetical protein 7.11604608968e-05 0.000223713600204 61587574375.8 +UniRef50_B7MTN6 Thiamine kinase 0.00464953880898 0.000613477546689 -1.62940745963e+12 +UniRef50_G7VSI0 0.000536709936758 0.000600644146164 25811024898.2 +UniRef50_K6UQ90 2.29508420679e-05 3.37360097368e-05 4354104536.83 +UniRef50_S4Y5B1 7.35964064076e-06 2.30738673337e-05 6344026151.17 +UniRef50_A7ZR32 0.000247640459339 0.00830505590917 3.2528774927e+12 +UniRef50_C0BG39 1.91857779672e-05 3.6326643828e-05 6919977890.08 +UniRef50_G1D4J4 Gp80 3.58055127465e-05 1.27466439132e-05 -9309148312.14 +UniRef50_M2QS37 6.85153147839e-05 0.000218931917582 60725028368.8 +UniRef50_A6M2E5 Sulfatase 6.28793984816e-05 0.00117363187898 4.48424406844e+11 +UniRef50_Q3IXU6 0.00898678526108 0.00166649951856 -2.95528918426e+12 +UniRef50_UPI000382350E hypothetical protein 1.11296172875e-06 2.2717173487e-05 8721885400.28 +UniRef50_M9VQS2 0.00254840494703 0.0022355551626 -1.26301297073e+11 +UniRef50_A7ADI2 6.82949170034e-06 0.000122076190981 46526506735.8 +UniRef50_E5AMF6 Ammonium transporter Methylammonium transporter 0.000554739073956 0.0138293256123 5.35911348301e+12 +UniRef50_A7ADI0 0.00057137422749 0.000247354713082 -1.30810654133e+11 +UniRef50_A6LZB2 FMN binding domain protein 0.000117841619826 0.000865210794316 3.01722106993e+11 +UniRef50_C6STS8 0.00231710819034 0.000708760092468 -6.49309863761e+11 +UniRef50_UPI00016AF87E drug resistance transporter, EmrB QacA family protein 0.000132986964092 8.18336656089e-05 -20651214319.2 +UniRef50_P75839 UPF0702 transmembrane protein YcaP 0.0012974823184 0.000512482593992 -3.16914021773e+11 +UniRef50_R1DSU7 5.62845953204e-05 8.57289507439e-05 11887047607.3 +UniRef50_A2BIZ8 S adenosylmethionine synthase 0.00420662378716 0.000743635546835 -1.39805084827e+12 +UniRef50_B0V5M9 0.000145747486043 0.00450473292444 1.75977591225e+12 +UniRef50_P00909 Tryptophan biosynthesis protein TrpCF 0.00354166348736 0.000987725147341 -1.03105624821e+12 +UniRef50_O52733 D xylose proton symporter 0.000217730478771 0.00279486271425 1.04041990843e+12 +UniRef50_UPI00036FFA67 hypothetical protein, partial 1.84270076877e-06 4.87359662922e-05 18931386736.9 +UniRef50_B0VLP6 0.000150324204205 0.00511818691729 2.00558713981e+12 +UniRef50_Q89IB6 Phosphoribosylformylglycinamidine synthase 1 1.57736152424e-05 1.17957107564e-05 -1605928855.38 +UniRef50_Q9RX17 Virulence factor related protein 0.000188664678812 0.0290940028905 1.16694397445e+13 +UniRef50_E0XV99 0.00161186082828 0.00115878914456 -1.82910598533e+11 +UniRef50_F8KHS4 RNA pseudouridylate synthase 0.0152563007978 0.00489953990726 -4.18115146324e+12 +UniRef50_B0RBL3 Glutamate 1 semialdehyde 2,1 aminomutase 7.20381821829e-06 3.68603920056e-05 11972722765.0 +UniRef50_N9IVN2 0.00018718313497 0.00241221308046 8.98271893182e+11 +UniRef50_E3HHT4 TRAP transporter solute receptor, TAXI family protein 3 0.000138087347704 7.31628330408e-05 -26210823282.9 +UniRef50_B3W6W6 Tryptophan synthase beta chain 6.12467410789e-06 7.18505671316e-06 428089470.105 +UniRef50_UPI00046EC1CC hypothetical protein, partial 2.99796386583e-05 0.000393532742432 1.46770849292e+11 +UniRef50_D8JFA0 6.86338161594e-05 0.00770419082372 3.08256806277e+12 +UniRef50_Q2YTA2 Dephospho CoA kinase 0.0252264116564 0.0015810517227 -9.54592196643e+12 +UniRef50_H3UL21 7.66122588082e-05 0.000112351369412 14428317519.0 +UniRef50_A6H1Q5 NADH quinone oxidoreductase subunit I 5.28618717908e-06 1.3946703939e-05 3496356892.47 +UniRef50_Q9JZ44 30S ribosomal protein S1 0.00473930770146 0.00415312174538 -2.3665046378e+11 +UniRef50_H0PUC5 Two component heavy metal response transcriptional regulator, winged helix family 0.00107727720931 0.0104515065548 3.7844914215e+12 +UniRef50_A9KHN3 Acetylglutamate kinase 6.15181952171e-06 0.000110685052818 42201349048.6 +UniRef50_A5WF94 3 ketoacyl CoA thiolase 0.00037247850688 0.0004832452634 44717898868.1 +UniRef50_Q87G35 Putative ABC transporter ATP binding protein VPA1482 1.0731138227e-05 1.36252248552e-05 1168378286.24 +UniRef50_UPI0003B5B988 transcription elongation factor NusA 8.66603011983e-06 9.72499789042e-06 427518283.983 +UniRef50_R5Q2U1 9.87033248813e-06 0.000402764410236 1.58616160539e+11 +UniRef50_D9VU00 Dihydrodipicolinate reductase 0.000189515550924 0.000295434752189 42760881325.4 +UniRef50_G4NFF6 4.69505221762e-06 5.23073522468e-06 216261803.52 +UniRef50_UPI00037B10ED hypothetical protein 1.03664558683e-05 1.23664829489e-05 807435475.53 +UniRef50_P45135 Protein mrp homolog 0.00261472174151 0.00140380855743 -4.88860511989e+11 +UniRef50_H8WB63 7.79566205882e-05 6.78238836697e-05 -4090710236.66 +UniRef50_A6SU21 SugE like protein 0.00036296729697 0.00106740977781 2.84392073996e+11 +UniRef50_UPI000472171C hypothetical protein 5.75802643635e-06 0.000175095303679 68363536825.1 +UniRef50_UPI00035A1B1C PREDICTED 4.17995665365e-05 6.65212298939e-05 9980438866.31 +UniRef50_W8FIF9 0.000595244240245 0.000107753587976 -1.96805958504e+11 +UniRef50_W8WQR1 0.00177883345285 0.000618927228839 -4.68268376283e+11 +UniRef50_F7ZBE6 Protein MazG 0.00282656792687 0.000213739472998 -1.05483090984e+12 +UniRef50_P58213 0.00263703632446 0.00103544313746 -6.4658282335e+11 +UniRef50_F2HMQ5 N acetylglucosamine 6 phosphate deacetylase 0.00643968479551 0.00750686997599 4.30835753195e+11 +UniRef50_D4MT97 Predicted Zn dependent protease 0.000778607141951 0.00377588455171 1.21003767105e+12 +UniRef50_UPI000475EEE1 glycine cleavage system protein H 0.000105456470977 3.40922136885e-05 -28810626405.3 +UniRef50_E6SHW8 AMP dependent synthetase and ligase 6.18491516412e-05 0.0218503912219 8.79630180926e+12 +UniRef50_A3SWD6 8.63312469525e-05 4.86486535341e-05 -15212925380.4 +UniRef50_B1MZ61 Glycine tRNA ligase alpha subunit 0.00750344888311 0.00368714847912 -1.54068730436e+12 +UniRef50_UPI00037B0949 hypothetical protein 2.9874387981e-05 0.00011700641512 35176268586.2 +UniRef50_A7ZV33 Oligoribonuclease 0.00463591576101 0.00412095890084 -2.07894403682e+11 +UniRef50_UPI0002889CD1 DNA mismatch repair protein MutS 2.09016360374e-06 1.92770969634e-05 6938575904.7 +UniRef50_P0ABD2 0.00346254033123 0.00871030184367 2.11858571985e+12 +UniRef50_A6LZ65 Citrate transporter 0.000676984875882 0.00197202372133 5.22823073822e+11 +UniRef50_UPI000369A32E MULTISPECIES 2.59107594025e-05 3.05659659181e-05 1879363996.16 +UniRef50_I0IBX7 7.11389828123e-06 8.75323551486e-06 661820558.146 +UniRef50_F8F839 Acetolactate synthase large subunit 0.000159757637457 0.000727844668732 2.29343705738e+11 +UniRef50_C2QP87 4.33090153662e-06 0.000197756722234 78088377417.1 +UniRef50_I3UCI5 Amino acid ABC transporter ATPase 0.00459576637191 0.000671174329992 -1.58440596748e+12 +UniRef50_W7CBE0 2.12403068332e-05 1.88669683467e-05 -958145871.138 +UniRef50_C1AA13 Twitching mobility protein 0.000378032691844 0.00459899377796 1.70405378748e+12 +UniRef50_G7M9D3 Cell envelope related transcriptional attenuator 0.000614103279842 0.00129906446137 2.76527234402e+11 +UniRef50_UPI0003B60D83 MFS transporter, partial 5.30939037082e-06 1.08479449422e-05 2235982446.17 +UniRef50_UPI000465FF4A chemotaxis protein CheW 4.72687631698e-05 6.80226776573e-05 8378609957.77 +UniRef50_D3QH68 TetR family regulatory protein 0.0124031594772 0.00100485096299 -4.60163702016e+12 +UniRef50_Q9RR78 Protoheme IX farnesyltransferase 0.000127385598041 0.0715217508472 2.88227813585e+13 +UniRef50_A8AYI7 N acetyl gamma glutamyl phosphate reductase 0.00597085659553 0.00117359702781 -1.93671255648e+12 +UniRef50_UPI00037EBF1E hypothetical protein 4.74514829637e-06 8.00084283989e-06 1314363839.08 +UniRef50_A1TJ50 LemA family protein 0.000756090328883 0.00599918797664 2.11670286044e+12 +UniRef50_UPI000469FCDE hypothetical protein 2.84008111162e-05 1.94116823011e-06 -10682082529.4 +UniRef50_UPI00046F4540 hypothetical protein 1.19589525856e-05 3.81219079458e-05 10562306134.5 +UniRef50_UPI0003C13F1D PREDICTED 3.95178452896e-06 5.98970003707e-06 822731498.66 +UniRef50_I4D4X7 1.71431691839e-05 2.68668665335e-05 3925575943.22 +UniRef50_UPI00037D4FA3 hypothetical protein 3.49578117886e-06 4.84222903558e-06 543577522.531 +UniRef50_Q7VQS0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.00144037377352 0.000929769516578 -2.06137204346e+11 +UniRef50_H8GZE1 0.000325088451527 0.000148013018605 -71487525230.5 +UniRef50_UPI00037860D6 hypothetical protein 3.78368230985e-06 7.34732696424e-06 1438687077.81 +UniRef50_M5AS85 0.000122922046606 4.16781310766e-05 -32799165674.2 +UniRef50_A5IQJ5 Serine type D Ala D Ala carboxypeptidase 0.00939782053142 0.00105495328523 -3.36811788578e+12 +UniRef50_K5C8L6 Protein containing YCII related domain protein 2.42150035936e-05 1.52145090263e-05 -3633610105.31 +UniRef50_C5YUZ9 5.9843284562e-06 0.000309655671296 1.22595847571e+11 +UniRef50_F2AB45 0.000132479613354 0.000175479112631 17359425521.3 +UniRef50_UPI00035D3DCC hypothetical protein 0.00809009192981 0.000833790777094 -2.92945782018e+12 +UniRef50_Q8R7K0 L threonine 3 dehydrogenase 3.15836942269e-05 5.37379312655e-05 8943937355.54 +UniRef50_P77258 N ethylmaleimide reductase 0.00322545585348 0.00226963593882 -3.85876228778e+11 +UniRef50_UPI000373C080 hypothetical protein 6.17915318855e-05 6.22455953001e-06 -22433068623.3 +UniRef50_Q899P3 3 oxoacyl [acyl carrier protein] synthase 3 0.000167086727971 1.13043782201e-05 -62891246258.9 +UniRef50_UPI00026577FF PREDICTED 4.94030608008e-05 3.53276542031e-05 -5682414368.15 +UniRef50_A7ZR14 Aminomethyltransferase 0.00341692137989 0.000817011054895 -1.04961570269e+12 +UniRef50_UPI00037DABB6 hypothetical protein 7.94970773966e-06 1.26845829304e-05 1911527217.95 +UniRef50_UPI00047B26D6 30S ribosomal protein S2 2.47912191462e-05 2.04337265274e-05 -1759173242.66 +UniRef50_UPI00045613AA hypothetical protein PFL1_01689 1.96701031738e-06 3.24760820219e-06 516993080.801 +UniRef50_Q48UW8 Endoribonuclease YbeY 0.00684940186393 0.00086061869733 -2.41774525499e+12 +UniRef50_UPI000429C143 hypothetical protein 2.31497690001e-05 3.39248674395e-05 4350039465.31 +UniRef50_P25129 Attachment protein G3P 0.00171007626551 0.000282599717884 -5.76289799385e+11 +UniRef50_UPI0003B5C03B phospholipase 2.88810149346e-06 3.16169349094e-06 110452446.734 +UniRef50_UPI000333464B 6.30860381999e-06 5.22704324019e-06 -436639278.306 +UniRef50_Q2NI01 MrtD 0.00404771513943 0.000801764810481 -1.31042998009e+12 +UniRef50_UPI00023B2A49 9.43784307624e-06 0.000105998975502 38982914098.6 +UniRef50_M1MHF7 0.000120474251758 0.000772049052066 2.63048742606e+11 +UniRef50_D3E0C7 Energy converting hydrogenase B subunit N EhbN 0.00312451198043 0.00139386204036 -6.98684618269e+11 +UniRef50_UPI000364325F hypothetical protein 2.25171448329e-05 6.85591439476e-05 18587720041.5 +UniRef50_A3MLM0 Deoxycytidine triphosphate deaminase 0.00345872609701 0.00524939372253 7.22914494385e+11 +UniRef50_D2BB98 Fibrocystin L like protein 8.96630585457e-05 0.00018267476311 37549966514.6 +UniRef50_F9Z2N2 4 hydroxybutyrate coenzyme A transferase 9.5084631958e-05 0.00647231565511 2.57456642147e+12 +UniRef50_UPI00047E641A DNA mismatch repair protein MutL 2.89349967145e-06 7.04112293621e-06 1674446409.04 +UniRef50_A3PH43 Cell wall hydrolase, SleB 0.0115765365149 0.00763292166524 -1.5920857084e+12 +UniRef50_C1N9N9 Predicted protein 0.00025538558276 0.000234832769311 -8297423000.74 +UniRef50_A9AQ95 Major facilitator superfamily MFS_1 0.000487653976724 0.000471276931076 -6611614297.05 +UniRef50_D3DZP5 Peptidase U62 family 0.00412830386917 0.00168235604338 -9.87459152427e+11 +UniRef50_A4KVC4 0.000126663061785 4.54971182763e-05 -32767687412.6 +UniRef50_Q8CTX4 0.0147413890681 0.00468714336682 -4.05902236908e+12 +UniRef50_A4WT83 Cytochrome c, monohaem 0.00681282393176 0.00228123632505 -1.82945752566e+12 +UniRef50_UPI00031E94BD hypothetical protein 2.93510762668e-06 3.32784438071e-06 158552647.024 +UniRef50_P37923 Chaperone protein FimC 0.00143599847274 0.00333289279099 7.65799513788e+11 +UniRef50_UPI00046D0AE5 30S ribosomal protein S2 2.05857262086e-05 1.88000622267e-05 -720894462.054 +UniRef50_UPI0003EF5726 hypothetical protein 0.00053118200715 0.00013981721516 -1.57998769112e+11 +UniRef50_UPI0004651F70 hypothetical protein, partial 2.67548122037e-05 1.95065787923e-05 -2926200774.01 +UniRef50_Q8CTX9 0.022858387238 0.00840449975597 -5.83521174563e+12 +UniRef50_U5MPW8 Lysophospholipase L2 0.000239672711771 0.00076881644043 2.13621816583e+11 +UniRef50_D8JMF9 0.000924580091871 0.00755114520272 2.67522565235e+12 +UniRef50_B3ZX35 Protein rlx 0.000167708729831 2.39912432695e-05 -58020512936.6 +UniRef50_UPI0003F4A454 hypothetical protein TREMEDRAFT_73314 1.35854000757e-05 8.55599413717e-06 -2030432895.14 +UniRef50_A6M075 Aminotransferase class III 0.000271311619178 0.0011845673694 3.68692553273e+11 +UniRef50_I3TH40 Aromatic compounds catabolic protein 1.19083831394e-05 0.000274005739699 1.0581191914e+11 +UniRef50_UPI0003B5A455 DNA directed RNA polymerase subunit alpha 3.79965656263e-05 4.4485943329e-05 2619841412.2 +UniRef50_A4IQZ4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000766244979111 0.00141810195599 2.63162660751e+11 +UniRef50_G8AR80 9.67391462525e-05 4.56503863882e-05 -20625159286.8 +UniRef50_M4FRG3 2.71146734737e-06 3.01211863924e-06 121376615.934 +UniRef50_P55468 dTDP 4 dehydrorhamnose 3,5 epimerase 1.52914090798e-05 1.74027863386e-05 852388908.89 +UniRef50_P44740 Probable tRNA N6) methyltransferase 0.00433784612183 0.000302888928405 -1.62896173348e+12 +UniRef50_Q2GCD8 DNA directed RNA polymerase subunit beta 7.83272066428e-06 1.32289192928e-05 2178511605.14 +UniRef50_A0A017HAS6 4.09079559706e-05 4.9576697071e-05 3499677159.65 +UniRef50_X8LV27 0.000457245603387 2.6248392111e-05 -1.73998863123e+11 +UniRef50_R5PFJ6 Polar amino acid transport system substrate binding protein 0.00115418676073 0.00145222052887 1.20319889484e+11 +UniRef50_P77376 0.00299894675964 1.96255174004e-05 -1.20278854588e+12 +UniRef50_P44916 Octaprenyl diphosphate synthase 0.00469452374331 0.0038524040279 -3.39974063082e+11 +UniRef50_P77375 0.00269817211897 0.000592608772976 -8.50041760944e+11 +UniRef50_B0V636 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 0.000211605975358 0.00807581517631 3.17487775912e+12 +UniRef50_Q9RAA9 DNA polymerase I 4.0017259366e-06 4.39816386934e-05 16140381388.6 +UniRef50_V9VRV3 0.000470684686053 4.40166393752e-05 -1.7225112625e+11 +UniRef50_U3TV34 PoxB protein 0.000547081143264 0.000621719379354 30132371823.7 +UniRef50_Q83IY4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.00291151502156 0.0114241908351 3.43667168821e+12 +UniRef50_Q9HXY3 Putative zinc metalloprotease PA3649 0.000234120398045 0.000133728319328 -40529514127.4 +UniRef50_UPI000463EF04 hypothetical protein 6.39683220799e-05 1.32062776682e-05 -20493260249.3 +UniRef50_Y2C2K5 DNA gyrase subunit A 0.0131386696845 0.00409070558631 -3.65277413744e+12 +UniRef50_Q93JQ8 Argininosuccinate synthase 3.41590490957e-06 1.66304231786e-05 5334863185.57 +UniRef50_G2JD71 0.0116667876823 0.011367094493 -1.20989818169e+11 +UniRef50_D3QGS2 0.0173237787265 0.0053662040065 -4.82741965041e+12 +UniRef50_UPI0003FE9842 hypothetical protein 1.13086164475e-05 3.71690550768e-05 10440176417.9 +UniRef50_UPI0003B556E0 long chain fatty acid CoA ligase 6.95770188717e-06 5.96310452335e-06 -401531160.856 +UniRef50_A7TDI2 Lipoyl synthase, mitochondrial 5.41320472912e-06 3.53734973197e-05 12095337773.0 +UniRef50_U0D4D4 Membrane associated protein uidC 0.000769312227561 0.000416917701458 -1.42265994555e+11 +UniRef50_C5D363 Ribosomal RNA small subunit methyltransferase A 5.38298523211e-05 2.21706798892e-05 -12781196412.5 +UniRef50_Q5P9L5 GMP synthase [glutamine hydrolyzing] 3.01703763114e-06 1.5244162893e-05 4936240511.93 +UniRef50_J3N4D6 0.000135203539437 1.04306696671e-05 -50372338661.4 +UniRef50_Q9RZ46 Minor tail protein gp26 related protein 0.000131382037935 0.0570964054858 2.29974790054e+13 +UniRef50_A5EJD2 Leucyl phenylalanyl tRNA protein transferase 2.10614009764e-05 7.51038630628e-05 21817605119.9 +UniRef50_C6SU64 0.00451230808402 0.0035189023513 -4.01050084758e+11 +UniRef50_Q1GWT5 Adenosylhomocysteinase 0.00644578786367 0.00367440048073 -1.11884309524e+12 +UniRef50_P27254 Probable GTPase ArgK 0.00433737672237 0.000970529983431 -1.35923734437e+12 +UniRef50_C3KLK5 Peroxiredoxin 6 0.00018294959072 0.00312542071707 1.18791170189e+12 +UniRef50_Q0C1A6 Glutamate tRNA ligase 1 3.0839922753e-05 1.49948512856e-05 -6396849792.28 +UniRef50_G2JIJ8 0.00026583520342 0.00959431371148 3.76602124701e+12 +UniRef50_A6LX78 0.000249637318825 0.000958522200455 2.8618552571e+11 +UniRef50_F0MTD0 0.000101541655481 0.000522198196824 1.69824207776e+11 +UniRef50_U5MQI3 Thiamine biosynthesis lipoprotein ApbE 0.000241720225489 0.000402706678093 64992206442.2 +UniRef50_A6LX73 0.000542087437476 0.00142943561335 3.58233347587e+11 +UniRef50_UPI00036C9D5C hypothetical protein 3.42807379328e-06 1.23868235131e-05 3616757198.11 +UniRef50_A6LX76 9.6957017689e-05 0.000155021892496 23441502495.7 +UniRef50_A0A023S2E8 Peptidase M23 0.000163413847988 0.0107208243058 4.26215615581e+12 +UniRef50_F5M423 Methyltransferase type 12 0.00244802248696 0.00143316655903 -4.09709791788e+11 +UniRef50_K7RRT6 Kinase domain containing protein 0.000332144534658 0.00681451108194 2.61701092272e+12 +UniRef50_G8N5W7 Inner membrane translocator 0.000331566971752 0.0517546036916 2.07601109554e+13 +UniRef50_R0YL20 Filamentous hemagglutinin family N terminal domain protein 2.0441479545e-05 0.000416598926028 1.59933622544e+11 +UniRef50_A5G215 4.27756332583e-05 5.27364866198e-05 4021318735.45 +UniRef50_P42811 Putative 26S protease regulatory subunit homolog MTBMA_c13930 0.00390983299523 0.000523414707951 -1.3671386186e+12 +UniRef50_I7ITF3 NADH ubiquinone oxidoreductase subunit 2.89300910424e-05 0.000100193976644 28770105123.6 +UniRef50_M1MT68 Peptidase U61 LD carboxypeptidase A 0.000132296491424 0.00237108130814 9.03824903489e+11 +UniRef50_Q21M93 DNA directed RNA polymerase subunit beta 0.000242872230869 0.00785635682442 3.07365715838e+12 +UniRef50_Q6MMA3 Methionine tRNA ligase 5.18714007246e-06 5.07760260994e-06 -44221617.7951 +UniRef50_A7WZS8 Triosephosphate isomerase 0.00874139307289 0.0023482651768 -2.58098418415e+12 +UniRef50_R4ZRY7 0.00351529514249 0.00220619896211 -5.28498192436e+11 +UniRef50_UPI000475A496 hypothetical protein 2.17027666319e-05 7.08140739626e-05 19826837432.9 +UniRef50_UPI00046686EA amidohydrolase 5.20595082215e-06 2.72132776178e-05 8884627887.69 +UniRef50_D8TSH0 1.49871458903e-06 6.29367143537e-07 -350966231.838 +UniRef50_B9DIX2 Probable cytosol aminopeptidase 0.0232752442312 0.00537076375886 -7.22825847935e+12 +UniRef50_E7PW89 Sensor histidine kinase 0.00538686648081 0.00187053297238 -1.41958698762e+12 +UniRef50_B9DZ45 7.47753003601e-06 1.97358986519e-05 4948853837.34 +UniRef50_UPI0003B2E548 cation 0.00118403186161 0.000384445443551 -3.22802848999e+11 +UniRef50_A3PHP3 0.0141199920803 0.00279353398373 -4.57263012487e+12 +UniRef50_UPI000414700A hypothetical protein 3.47647275921e-06 5.19125243252e-06 692277596.828 +UniRef50_UPI0003B3DD40 PhoP family transcriptional regulator 1.72375840845e-05 3.92648476137e-05 8892676591.66 +UniRef50_UPI000371B1FC hypothetical protein, partial 7.59373699621e-05 8.99978568127e-05 5676391083.16 +UniRef50_D8IJC7 Glycerol dehydrogenase 0.0054114262241 0.00248742591079 -1.180454808e+12 +UniRef50_D3F4J3 Transcriptional regulator, PadR like family 5.2823845517e-05 0.000141065002718 35624038002.8 +UniRef50_Q03JI6 CRISPR associated endonuclease Cas9 2 0.00115235765919 0.000234159099664 -3.70688026044e+11 +UniRef50_UPI000426A521 dihydrolipoamide succinyltransferase 1.47003462106e-05 0.00015313215911 55886621616.7 +UniRef50_UPI0004698685 hypothetical protein 0.000369071644759 0.000246267942491 -49577361576.5 +UniRef50_A0A038FK84 Hydrogenase maturation protein 0.000525935371225 0.000106127815949 -1.69481461683e+11 +UniRef50_UPI00035FEE6E hypothetical protein 3.06339169279e-05 0.000206624090628 71049392765.0 +UniRef50_UPI0002F0DDC3 hypothetical protein 3.15398246399e-05 4.84395546885e-06 -10777449979.5 +UniRef50_UPI00029B3C33 transcriptional regulator 4.88913368382e-05 9.12806244635e-05 17113075589.4 +UniRef50_UPI000475F4D6 macrolide ABC transporter ATP binding protein 7.44858932525e-06 3.11569392971e-05 9571351817.79 +UniRef50_Q98HW8 Prolipoprotein diacylglyceryl transferase 4.5585750548e-05 1.92599020538e-05 -10628068091.6 +UniRef50_P32694 0.00219717304 0.000481698357678 -6.92558180494e+11 +UniRef50_J3LNJ2 4.03299839417e-05 6.20542239619e-05 8770342282.56 +UniRef50_P32690 0.00355862427706 0.00406183868498 2.03153831612e+11 +UniRef50_UPI0001D2E55C hypothetical protein 0.000297440178548 4.4053389224e-05 -1.02295356256e+11 +UniRef50_P20368 Alcohol dehydrogenase 1 0.0210891411543 0.0118515724647 -3.72931983771e+12 +UniRef50_A6LVI5 0.000145560149942 0.00127140806476 4.5451861892e+11 +UniRef50_UPI0002FA2E2D hypothetical protein 1.48571235329e-05 0.000642035545351 2.53199625233e+11 +UniRef50_K6YA48 4.50189948246e-05 1.7822213622e-05 -10979674313.5 +UniRef50_R4X5W4 1.92803158301e-05 3.28635601367e-05 5483722411.73 +UniRef50_P15202 Peroxisomal catalase A 2.92721090668e-06 4.58969008916e-06 671163246.881 +UniRef50_UPI0003F5184A hypothetical protein 1.84841271349e-05 8.66608380463e-06 -3963664573.37 +UniRef50_A4WW59 0.0134029806027 0.00235960557507 -4.45834601609e+12 +UniRef50_UPI000475B0A4 hypothetical protein 0.000160792793231 1.64922777744e-05 -58255888856.4 +UniRef50_A9U8B3 Predicted protein 0.000633052988578 0.000277740817252 -1.43443883735e+11 +UniRef50_P35170 Phospho 2 dehydro 3 deoxyheptonate aldolase 1.37418085905e-05 0.00408223627824 1.64250114344e+12 +UniRef50_D5ALC4 Translation initiation factor IF 2 0.00791537229456 0.00212634230814 -2.3371024449e+12 +UniRef50_Q9KF52 Phosphoribosylamine glycine ligase 0.00873395999244 0.00983266683442 4.43561434756e+11 +UniRef50_F0N1G5 Transcription repair coupling factor 2.90448311514e-05 0.00124593796769 4.91274692179e+11 +UniRef50_A4XNW6 0.00011636759666 0.000120882384097 1822675090.99 +UniRef50_S1SDR1 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 9.93585703834e-06 1.65346783192e-05 2664025127.73 +UniRef50_F6BHL2 PTS system transcriptional activator 0.000273815806719 0.000867767748339 2.39785687442e+11 +UniRef50_D8GIQ6 0.000334552566439 0.00124092368059 3.65913141207e+11 +UniRef50_I3XD08 Lipid A export ATP binding permease protein MsbA 0.00501219948662 0.00147898121014 -1.42640357568e+12 +UniRef50_UPI00016C3F49 ABC transporter, ATP binding protein 7.02707742863e-06 5.41720103033e-05 19032987934.9 +UniRef50_L7WY79 Alpha beta hydrolase 0.0252169666268 0.0072301603583 -7.26149441353e+12 +UniRef50_Q9A759 0.0132160888016 0.00228452121088 -4.41320798178e+12 +UniRef50_Q1GFV5 Dihydrofolate reductase 0.0021714295625 0.00204370586388 -51563624478.9 +UniRef50_C5WCX1 4 hydroxythreonine 4 phosphate dehydrogenase 0.0023813093082 0.000181547154827 -8.88070975433e+11 +UniRef50_N5EDX1 PTS system EIIBC component 3.90995404233e-05 8.90537071456e-05 20167110112.4 +UniRef50_A6UZL3 DNA directed RNA polymerase subunit alpha 0.00164332231972 0.000847793763689 -3.21164640303e+11 +UniRef50_K0C9F8 0.0015743008541 0.000937513349825 -2.57078929737e+11 +UniRef50_O49213 GDP L fucose synthase 1 0.0127073595553 0.00371311231703 -3.63108798191e+12 +UniRef50_M4RRJ2 4.96604964797e-05 0.00104831326714 4.03168378363e+11 +UniRef50_V9WGF1 ABC type multidrug transport system, ATPase and permease component 0.00630132908893 0.00198410102441 -1.74291794799e+12 +UniRef50_H9UWR6 Modulator of drug activity 0.00200672198272 0.000477601140485 -6.17324848431e+11 +UniRef50_P45548 Phosphotriesterase homology protein 0.00560536953716 0.000958512884603 -1.87599305398e+12 +UniRef50_G4NPZ1 Fructokinase 0.00622498596144 0.00138432027251 -1.95423614027e+12 +UniRef50_Q8XNN2 Cell division protein FtsX 0.000128542334456 0.00117514966866 4.22528224133e+11 +UniRef50_G7R423 0.00180953601005 0.000663633045389 -4.62615088644e+11 +UniRef50_F3U4W9 Transcriptional regulator, DeoR family protein 0.001871222442 0.000911275791129 -3.87542242827e+11 +UniRef50_S9Q9Z7 Mobile element protein 0.000165922696409 3.01487556894e-05 -54813606002.3 +UniRef50_F0JDG6 TRAP transporter solute receptor, TAXI family 6.96490374455e-05 2.08220301174e-05 -19712062033.1 +UniRef50_Q9GV41 Prostaglandin F synthase 0.018250567278 0.000242125855184 -7.27022879081e+12 +UniRef50_C6SP93 0.0011709474591 0.000694182930834 -1.9247569062e+11 +UniRef50_B9L064 Glutamine synthetase 0.000673646242146 0.000560393555103 -45721499526.0 +UniRef50_C5N176 0.0147627752317 0.00122016400141 -5.4673183402e+12 +UniRef50_UPI0003694E1D hypothetical protein 1.00899805813e-05 1.27616863184e-05 1078600391.58 +UniRef50_Q9RWP2 0.000195588595265 0.0145760928126 5.80558602116e+12 +UniRef50_B9E1D0 0.000226239975069 0.00163665822815 5.69403156547e+11 +UniRef50_UPI0004785B9E hypothetical protein 3.97371741995e-06 4.19851795213e-06 90754733.4538 +UniRef50_UPI00036CFE81 hypothetical protein 8.7324294485e-05 3.28856828603e-05 -21977535549.8 +UniRef50_B2HZJ1 AraC type DNA binding domain containing protein 0.000120602552348 0.0068632598413 2.72209348926e+12 +UniRef50_UPI00035F4FB6 hypothetical protein 2.64816217697e-05 4.01965301552e-05 5536876816.08 +UniRef50_D5T0L1 Amino acid permease 0.00647173537807 0.000900170684477 -2.24930903759e+12 +UniRef50_A4WYK2 0.00264011848506 0.000366138483067 -9.18033631676e+11 +UniRef50_UPI0003618C0D peptide ABC transporter substrate binding protein 7.31673146867e-06 2.79543939198e-05 8331677584.11 +UniRef50_H0Q5L4 Cation transport protein 3.29791787381e-06 3.09737631216e-06 -80961089.3598 +UniRef50_A3M2E6 0.000406144557364 0.0109397020628 4.25252642622e+12 +UniRef50_UPI0003622857 hypothetical protein, partial 1.95311573081e-05 1.19644442439e-05 -3054774918.03 +UniRef50_A3M2E8 0.000688388659374 0.00842670190322 3.12405201632e+12 +UniRef50_A3M2E9 0.000401532881888 0.0139397382747 5.46553964954e+12 +UniRef50_U3T6D9 AsnC family transcriptional regulator 0.00214185130832 0.00286076911619 2.90235941151e+11 +UniRef50_B7V4F8 0.000797894149226 0.000274608754132 -2.11256735433e+11 +UniRef50_E6UQ90 Radical SAM domain protein 0.000503367236464 0.000282397569352 -89208166215.9 +UniRef50_Q8X9H6 0.0027499416301 0.000983393405668 -7.13177196187e+11 +UniRef50_Q0TD44 L tartrate dehydratase subunit beta 0.00298680793723 0.000555454617915 -9.8156717107e+11 +UniRef50_L8A618 PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component 0.00559302893522 0.00480510153814 -3.18095959158e+11 +UniRef50_V5VGA0 Signal peptide protein 0.000482375317798 0.00744053354232 2.80909386144e+12 +UniRef50_UPI0002FD25A8 hypothetical protein 1.03213676319e-05 5.80055886582e-06 -1825105975.43 +UniRef50_UPI000345C556 hypothetical protein 1.90228729827e-06 3.95467401604e-05 15197527569.8 +UniRef50_A5UKY8 30S ribosomal protein S3Ae 0.00214846309697 0.000311954266055 -7.41421151536e+11 +UniRef50_UPI00036B4C40 hypothetical protein 2.36314494077e-06 3.52251802691e-06 468053141.982 +UniRef50_UPI0003C13594 7.83916616203e-06 2.02570109128e-05 5013236309.99 +UniRef50_R4LIM7 CaiB BaiF family protein 0.000779716256765 0.000302978971342 -1.9246469235e+11 +UniRef50_A0A047EGF5 PE PGRS family protein PE_PGRS16 2.75805450284e-05 1.02153843029e-05 -7010528479.37 +UniRef50_UPI0003B5C426 histidinol dehydrogenase 3.70578946143e-06 1.24753297879e-05 3540371044.16 +UniRef50_Q5HR00 Protein NrdI 0.0400234532401 0.00761684633096 -1.3082944883e+13 +UniRef50_F2U7G5 1.24538683352e-05 2.4525802818e-05 4873588090.0 +UniRef50_UPI0003677280 hypothetical protein 5.88755624474e-05 1.53735176875e-05 -17562309299.7 +UniRef50_A7GU01 Cyclic pyranopterin monophosphate synthase 4.63457530436e-06 0.000233547243964 92414853412.4 +UniRef50_UPI00046E8F79 hypothetical protein 3.61649492995e-05 6.82403336467e-05 12949226270.2 +UniRef50_X2JGW4 TraU 9.30859965289e-05 7.13691384723e-06 -34698699392.5 +UniRef50_G2TBP0 Nitrogenase 0.000789924351728 0.00158846123968 3.22379140816e+11 +UniRef50_Q9AHT6 Pneumococcal vaccine antigen A 0.00706728428228 0.00302953898844 -1.63008732383e+12 +UniRef50_UPI0003696E91 hypothetical protein 0.000274125845592 3.72634466828e-05 -95624257068.1 +UniRef50_Q88W26 ATP dependent protease ATPase subunit HslU 0.0210215097947 0.00690060970102 -5.70078065076e+12 +UniRef50_Q04796 4 hydroxy tetrahydrodipicolinate synthase 6.38135487892e-06 0.00265543206509 1.06945427922e+12 +UniRef50_B0TPS5 Tryptophan halogenase 0.000106035390125 0.0101073707526 4.03766181603e+12 +UniRef50_UPI000467BC4F hypothetical protein 2.29075201941e-05 2.27960693294e-05 -44994081.7353 +UniRef50_X0UMF5 Marine sediment metagenome DNA, contig 3.53271395578e-05 6.24333595275e-05 10943113632.5 +UniRef50_B7UWL8 Dihydroorotate dehydrogenase 0.000271635660848 0.000889916893864 2.49607720932e+11 +UniRef50_E8NJT6 0.000323994161222 0.00125673687512 3.76559679641e+11 +UniRef50_UPI0003775EDE hypothetical protein 1.7347508144e-05 5.59435333146e-05 15581688987.9 +UniRef50_P57872 Ribosome binding factor A 0.00213671314445 0.000473770115279 -6.71350507482e+11 +UniRef50_P0AC31 Cell division protein FtsX 0.00411021748974 0.000584656618942 -1.42331218704e+12 +UniRef50_G7LXG1 0.000485693888023 0.00246629693841 7.99593756175e+11 +UniRef50_J0XSC7 0.0015099439554 0.00124890603647 -1.05384211168e+11 +UniRef50_R4K915 0.00113541765153 0.000321578989328 -3.28556654854e+11 +UniRef50_Q5P303 2.37272025452e-05 3.34429445262e-05 3922364263.29 +UniRef50_UPI000367F4BF hypothetical protein 2.92375073799e-06 0.000262438311301 1.04769212701e+11 +UniRef50_UPI000363BEF2 hypothetical protein 2.19077214907e-05 2.33127021734e-05 567207942.658 +UniRef50_A4V9J4 0.00156904273663 0.000225100814816 -5.42565845857e+11 +UniRef50_UPI00025579C9 chemotaxis specific methylesterase 5.22905125578e-05 8.45946131378e-06 -17695133254.7 +UniRef50_UPI00036CE600 hypothetical protein 4.00324902463e-06 7.38106950841e-06 1363667579.82 +UniRef50_E1V509 APC family transporter 8.11216308394e-05 0.000308011314695 91598149622.2 +UniRef50_UPI000476EDB0 hemolysin 0.000200848242997 0.000241291351039 16327379009.3 +UniRef50_Q9I351 GTP cyclohydrolase 1 2 0.00017292847707 9.58650885809e-05 -31111435607.2 +UniRef50_UPI0003836B4E PREDICTED 1.8892736349e-06 1.2705037091e-06 -249805012.206 +UniRef50_G7U615 0.00177708788598 0.00393897233991 8.72779283357e+11 +UniRef50_Q8XD75 0.00291742715009 0.000559638810673 -9.5186808594e+11 +UniRef50_G2JM22 Phosphoserine phosphatase 0.000176670509603 0.0067144240808 2.63937134395e+12 +UniRef50_Q8CU16 0.00889676507234 0.00242772330841 -2.61163154417e+12 +UniRef50_D3QDN7 Ribosomal RNA small subunit methyltransferase D 0.0227171741392 0.0092560174895 -5.43443412645e+12 +UniRef50_Q8CU14 0.0086117363047 0.00267260679592 -2.39769946401e+12 +UniRef50_A1JPN5 Bifunctional polymyxin resistance protein ArnA 0.00304913333159 0.00101477494726 -8.21295444139e+11 +UniRef50_W4K6C3 0.000218705924928 0.000133457800591 -34415713907.0 +UniRef50_A6LT03 0.000454880619572 0.00363205344347 1.2826636573e+12 +UniRef50_W1MFW3 30S ribosomal protein S3 0.000220752040266 0.000379016092237 63893139899.0 +UniRef50_UPI0004765EE6 hypothetical protein 3.74475322924e-06 7.25023700227e-06 1415206816.3 +UniRef50_A6LT04 0.000160632335681 0.00241357626916 9.09541112677e+11 +UniRef50_UPI000377D609 hypothetical protein 3.72871906153e-05 7.44468186073e-06 -12047786993.0 +UniRef50_J7I7M7 ATPase P 5.46403774584e-05 0.00024764419815 77918010836.6 +UniRef50_UPI0004737F94 penicillin binding protein 2.35078221763e-05 8.5829013104e-06 -6025373702.94 +UniRef50_B2UY66 Hydroxyethylthiazole kinase 0.000437292736761 0.000773354708095 1.35672341772e+11 +UniRef50_UPI0003B5F72E hypothetical protein 2.31943133735e-05 2.16866228638e-05 -608673160.209 +UniRef50_X5ETF8 6.21593215276e-05 0.000465592646253 1.62870983875e+11 +UniRef50_D4HB94 Precorrin 4 C methyltransferase 0.000494178443363 0.00335819149171 1.15623721301e+12 +UniRef50_A0EVL6 Conjugal transfer entry exclusion protein 0.000172630787585 0.0140873932711 5.61756036793e+12 +UniRef50_T8R2K9 5.81989159472e-05 0.000165630675506 43371519669.9 +UniRef50_UPI00035C3E51 hypothetical protein 4.6876413051e-05 1.18670201193e-05 -14133721540.1 +UniRef50_K4IEB3 1.84841797943e-05 2.66556421873e-05 3298919643.17 +UniRef50_A3U1Q1 0.00030934269791 2.67209744524e-05 -1.14097857919e+11 +UniRef50_Q6A9J7 UPF0042 nucleotide binding protein PPA0813 0.000129571849717 0.00639956210508 2.53127200752e+12 +UniRef50_E2ZUC7 0.000548096082648 0.00136356430583 3.29214528619e+11 +UniRef50_B2UUB5 0.000339497954356 0.00345125684779 1.25625525085e+12 +UniRef50_UPI00047DB1F7 hypothetical protein 0.000190874833008 0.000579052363126 1.56712032383e+11 +UniRef50_W7QIQ7 0.000824313707996 8.02313945608e-05 -3.0039516085e+11 +UniRef50_UPI00034F4369 PREDICTED 3.61234068909e-05 6.66468107359e-05 12322672696.5 +UniRef50_R9E884 7.80367687379e-05 3.82989422721e-05 -16042648182.2 +UniRef50_C3G5A7 N acyl L amino acid amidohydrolase 0.023767918192 0.00748991295746 -6.57163046675e+12 +UniRef50_Q3IW43 0.00852816128941 0.00285121577913 -2.29185256646e+12 +UniRef50_O32047 Protein translocase subunit SecDF 0.00491284626127 0.00200275155189 -1.17484094505e+12 +UniRef50_A9M2X4 0.000149796027328 0.00337903974459 1.30368531593e+12 +UniRef50_M1XDM0 Transcriptional regulator, PadR family 0.000137665750975 3.88810176642e-05 -39880609062.6 +UniRef50_UPI0003709A53 hypothetical protein 2.72097038311e-05 2.06987466682e-05 -2628553305.09 +UniRef50_M9VF07 0.000269203179129 0.00537062162821 2.05950522934e+12 +UniRef50_E8SEY3 Salicylate hydroxylase 0.0195753234114 0.00505767729586 -5.86095188838e+12 +UniRef50_Q7NF32 Cobyrinic acid A,C diamide synthase 1.15150508965e-05 0.000231998288631 89011788706.8 +UniRef50_D9VBV2 3.0226667626e-05 7.29568360309e-06 -9257519644.86 +UniRef50_C4Z354 3 hydroxybutyryl CoA dehydrogenase 0.00525289662392 0.0021461628737 -1.25422653887e+12 +UniRef50_UPI0004720BAF hypothetical protein 9.86559358188e-06 2.20013592118e-05 4899357507.38 +UniRef50_Q6FF05 Primosomal protein N directs replication fork assembly at D loops, ATP dependent 6.66151745013e-05 0.00547911417802 2.18509226655e+12 +UniRef50_U4PWH4 2.61913615361e-05 9.67662576361e-05 28491951606.9 +UniRef50_UPI000476026B molybdate ABC transporter permease 1.08740502436e-05 2.03846595269e-05 3839549675.97 +UniRef50_Q5Z022 9.19778025388e-06 3.08586985076e-05 8744778508.38 +UniRef50_UPI00035E2839 hypothetical protein 6.20286605998e-05 1.42023384128e-05 -19308073161.9 +UniRef50_Q8NV29 0.00167854202316 0.000378611160516 -5.24798041193e+11 +UniRef50_UPI0003B76DAF hypothetical protein, partial 5.86624226013e-05 0.000185537711529 51221111075.1 +UniRef50_I0K765 2.99919173565e-06 9.97400191537e-05 39055459172.1 +UniRef50_UPI00037AA1C6 hypothetical protein 1.03627822539e-05 0.000143725003496 53839965253.9 +UniRef50_UPI000378C483 hypothetical protein 3.63403721345e-05 1.55630744224e-05 -8388050052.49 +UniRef50_UPI0002036836 PREDICTED 2.10659427784e-06 2.09633401176e-06 -4142195.32412 +UniRef50_UPI0003757D0F MULTISPECIES 9.02825398134e-05 1.25944082343e-05 -31363652059.1 +UniRef50_UPI00047C43EF aldolase 9.38607570695e-05 3.54022881647e-05 -23600401263.0 +UniRef50_Q9ZFA2 Citrate synthase 0.00189165414357 0.000244781162499 -6.64862831862e+11 +UniRef50_UPI00036F9430 hypothetical protein 1.72330868108e-06 8.89045572132e-07 -336802254.642 +UniRef50_A0PXX7 Energy coupling factor transporter ATP binding protein EcfA1 1.90840454177e-05 1.07806509533e-05 -3352182239.39 +UniRef50_UPI000463F674 LysR family transcriptional regulator 4.07849323506e-05 1.82997335935e-05 -9077550662.66 +UniRef50_A9GHR6 ATP synthase subunit alpha 3.46090557299e-06 1.67729048833e-05 5374217478.17 +UniRef50_G8V6N7 Biotin requiring enzyme family protein 0.0177941312052 0.00182205806779 -6.44812192495e+12 +UniRef50_Q3IV12 Generic methyltransferase 0.0168872947449 0.0076908158703 -3.71273137516e+12 +UniRef50_Q2NUA4 Tetraacyldisaccharide 4 kinase 0.00044230752588 0.000205318682645 -95675304194.1 +UniRef50_A0A020BXU1 0.00183375044762 0.000514750464887 -5.32496478978e+11 +UniRef50_A8FUS8 Ribonuclease H 3.0670614704e-05 2.14413082736e-05 -3725984262.28 +UniRef50_P0AFQ4 Inner membrane transport permease YbhS 0.00201641393612 0.000171032840855 -7.45002993529e+11 +UniRef50_A0A011Q1R0 Penicillin binding protein 2 6.61016970975e-06 1.08703352759e-05 1719881117.17 +UniRef50_M4YYZ9 N acetylmannosamine kinase 0.00031332632128 0.0028438433873 1.02160079249e+12 +UniRef50_P76242 Inner membrane transport protein YeaN 0.00193503657893 0.000361800467574 -6.35134723934e+11 +UniRef50_O34697 Bacitracin export ATP binding protein BceA 0.0238720119757 0.00701968867353 -6.80348971836e+12 +UniRef50_UPI00046CAEE5 hypothetical protein 9.49954501457e-06 4.4821030518e-05 14259717141.1 +UniRef50_I0C6Y6 Transcriptional regulator, DeoR family 0.00669752210289 0.00292593595104 -1.52263561207e+12 +UniRef50_P07821 Iron hydroxamate import ATP binding protein FhuC 0.00252707112737 0.00411384065468 6.40598330027e+11 +UniRef50_H2A564 Rhodanese like domain protein 2.23314349762e-05 6.90758787823e-05 18871305583.4 +UniRef50_UPI0002379BF3 putative ABC transporter ATP binding protein 1.06766380645e-06 1.19829617885e-05 4406639741.1 +UniRef50_A6UAR8 0.00106491864536 0.000521100819942 -2.19545929516e+11 +UniRef50_UPI0004630536 hypothetical protein 3.69160562131e-05 4.3336120697e-05 2591858815.2 +UniRef50_UPI000472F551 glutathione ABC transporter permease 8.33015615551e-06 4.32652529801e-05 14103727289.9 +UniRef50_UPI000474A020 hypothetical protein 0.000229424931439 1.64636102715e-05 -85975098684.4 +UniRef50_A6LU95 N anthranilate isomerase 0.000861953350356 0.00157845820507 2.89261802351e+11 +UniRef50_A5UL11 0.000626932597754 0.000326316801329 -1.21362285987e+11 +UniRef50_B0VDS9 0.000356695022163 0.00460131300926 1.71360436871e+12 +UniRef50_I0C2H0 Fructose repressor 0.0190266677709 0.00342176491526 -6.2998907765e+12 +UniRef50_UPI00037044F7 hypothetical protein 2.04945012722e-05 3.95562186573e-05 7695449221.94 +UniRef50_Q9RX08 DNA polymerase III subunit alpha 9.50575706519e-05 0.0466162262768 1.87811666856e+13 +UniRef50_I5CJV7 Transposase domain containing protein 0.0001546207381 1.45714138554e-05 -56539630796.2 +UniRef50_Q890Z7 Anaerobic sulfite reductase subunit B 0.00170184379314 0.000584149937975 -4.51226724974e+11 +UniRef50_G7M6C4 Cof like hydrolase 0.000417881168475 0.00133074844544 3.68535721852e+11 +UniRef50_P52230 Thioredoxin 1 0.00733842840842 0.00116572383629 -2.49199658337e+12 +UniRef50_D2JGC9 3.20748250189e-05 6.09621683251e-05 11662174980.3 +UniRef50_Q6AAD6 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.000440647678038 0.0066796443758 2.51875952798e+12 +UniRef50_Q2FK09 Sensory transduction protein LytR 0.0101882651183 0.00307315277977 -2.87245816331e+12 +UniRef50_V4RNU3 0.000138278525101 3.58271834081e-05 -41360863860.8 +UniRef50_Q3J3X3 Phage head tail adaptor, putative, SPP1 family 0.000829279947929 0.00114145741562 1.26029874555e+11 +UniRef50_UPI00047EEAC2 hypothetical protein 2.89191585537e-05 4.23854558058e-05 5436509450.72 +UniRef50_E0S3Q3 Transposase ISNCY family 0.00244767348249 0.00844206815596 2.42001068917e+12 +UniRef50_P76339 Probable sensor like histidine kinase YedV 0.00273382373586 0.000926959934109 -7.29453089479e+11 +UniRef50_E8KBP6 HD domain protein 1.93752345385e-05 6.8460525385e-05 19816334259.0 +UniRef50_W8RAH0 Chromosome partitioning protein ParA 0.000804825322096 0.000144439925708 -2.66605688362e+11 +UniRef50_A9BWW9 0.000138120329047 3.4948807227e-05 -41651609415.7 +UniRef50_V5SYK3 0.000978136046142 9.83296465662e-05 -3.55188639947e+11 +UniRef50_UPI00037371BE hypothetical protein 3.55152543249e-05 3.13352797972e-05 -1687507010.89 +UniRef50_UPI00035DE041 hypothetical protein, partial 7.8577041694e-05 4.3827569275e-05 -14028788439.5 +UniRef50_UPI000363ADAC hypothetical protein 1.20842181212e-05 1.39860044735e-05 767774487.966 +UniRef50_A3T2U3 ATPase, ParA type 0.000716992915669 0.000204190183557 -2.07024755751e+11 +UniRef50_K7VU62 Cystathionine beta lyase 0.00354406439227 0.000577151541614 -1.19777912593e+12 +UniRef50_A0R8M3 2.48671920367e-05 0.000814727585167 3.18876333384e+11 +UniRef50_Q15U36 Glucose 1 phosphate adenylyltransferase 1 8.43638884382e-06 1.16837701088e-05 1311007666.52 +UniRef50_UPI0003711421 hypothetical protein, partial 2.89252710521e-05 0.000568038685446 2.17646701056e+11 +UniRef50_E0SHR7 FMN oxidoreductase 0.000149796027328 0.00791985845902 3.13686955306e+12 +UniRef50_Q14IN1 Ribonuclease H 5.20510364846e-05 2.1239030553e-05 -12439184900.4 +UniRef50_O27880 Indolepyruvate oxidoreductase subunit IorA 0.00351684692208 0.00117737541649 -9.4447335535e+11 +UniRef50_Q3J4T8 0.0117290348146 0.00306153973976 -3.49917412384e+12 +UniRef50_UPI0003B38ED8 hypothetical protein 1.48594296024e-05 1.9669223942e-05 1941772997.71 +UniRef50_A9BIU9 Adenine deaminase 1.56474287692e-05 5.210868697e-06 -4213367372.14 +UniRef50_P75958 Lipoprotein releasing system transmembrane protein LolE 0.00204653761508 0.000155293622362 -7.63518408035e+11 +UniRef50_Q3J4T7 0.0120217623574 0.00460647465408 -2.99364264164e+12 +UniRef50_D3E2W0 0.00310428531721 0.0010222135713 -8.40557913717e+11 +UniRef50_UPI0002557D47 DctM 0.000907048296985 0.000276001105979 -2.54761494829e+11 +UniRef50_O27112 2 oxoglutarate synthase subunit KorA 0.00316795934309 0.000823005031183 -9.46686831543e+11 +UniRef50_G7TFM6 Amine oxidase 0.000106835657221 0.0599940262991 2.41771937606e+13 +UniRef50_D2ZP63 0.00200768700183 0.000287757963199 -6.94356458798e+11 +UniRef50_UPI000401523E diguanylate cyclase 3.40525466333e-06 1.29603755335e-06 -851516830.303 +UniRef50_H6LBB1 Electron transfer flavoprotein alpha subunit EtfA 0.000278032970735 0.000180254347023 -39474430271.2 +UniRef50_E3ZMP6 Cell surface protein 1.18200917222e-05 0.0010359870371 4.13468763792e+11 +UniRef50_J4X1R2 Putative membrane protein 1.20413591511e-05 1.64745249288e-05 1789723425.52 +UniRef50_UPI000440E981 PREDICTED 1.93799723915e-05 1.69142195791e-05 -995454668.555 +UniRef50_UPI000318D5FE hypothetical protein 0.00213687398943 0.000378377486972 -7.09926617222e+11 +UniRef50_B7M3G3 1.33139026437e-05 0.000660180362594 2.61147927826e+11 +UniRef50_P0AE35 Arginine ABC transporter permease protein ArtQ 0.00235971576538 0.00108327315113 -5.15315547085e+11 +UniRef50_UPI0001FFE7BF acyl CoA dehydrogenase 4.38257993095e-06 0.000124749010128 48593404932.7 +UniRef50_A6TUJ7 0.000105149300518 0.000959316160476 3.44837643171e+11 +UniRef50_B9KSZ0 0.00292341767493 0.00385195702429 3.74862729796e+11 +UniRef50_C5N523 ACT domain protein 0.0146640856738 0.00575587703724 -3.59635314259e+12 +UniRef50_UPI000225C163 chromosome partitioning protein ParB 3.12097597433e-05 0.000173086506712 57277383774.9 +UniRef50_W1GGS3 0.000463278450397 0.000242062873115 -89307443169.1 +UniRef50_Q3MGL3 Aspartate tRNA ligase 3.34598481438e-06 4.2961483543e-05 15993262973.6 +UniRef50_A3V850 0.000112996146319 2.13294147053e-05 -37006984429.7 +UniRef50_Q9JTA4 UPF0210 protein NMA1908 0.00614767040159 0.0126126001678 2.60997148023e+12 +UniRef50_UPI0003B6C834 threonine transporter RhtB 4.93465431983e-05 4.28579450692e-05 -2619526688.77 +UniRef50_C5Y7E8 1.87384259278e-05 0.000267157465989 1.00289814917e+11 +UniRef50_UPI000362A601 hypothetical protein, partial 0.000122170979702 0.000501954739708 1.53323364385e+11 +UniRef50_UPI0002F03396 diguanylate cyclase 2.54246341767e-05 0.000128626861802 41664005726.0 +UniRef50_UPI00037317AF hypothetical protein 0.000166355634444 6.05166811913e-06 -64716678356.3 +UniRef50_UPI00047845D5 hypothetical protein 1.40033665522e-05 7.6470230508e-06 -2566133872.62 +UniRef50_UPI00016C3F6F 3,4 dihydroxy 2 butanone 4 phosphate synthase 9.96639223858e-06 7.17689807651e-05 24950463391.2 +UniRef50_UPI000467903E hypothetical protein 0.000210560120857 6.45534527369e-05 -58944683623.3 +UniRef50_UPI0004097C5D dihydroxyacetone kinase 1.44571803628e-05 0.000328584640648 1.26817110494e+11 +UniRef50_P43089 5 aminolevulinate synthase 0.029981804835 0.0080266322494 -8.86357259307e+12 +UniRef50_X1NAG8 Marine sediment metagenome DNA, contig 6.18516036731e-05 6.43431417699e-05 1005864504.29 +UniRef50_Q8Q0R3 Ribose 5 phosphate isomerase A 0.00449712607076 0.000860145743281 -1.46829358897e+12 +UniRef50_UPI00047E1233 hypothetical protein 9.89136849959e-05 0.000176431345211 31294830677.5 +UniRef50_R5HZ00 FeS assembly ATPase SufC 4.32996613314e-05 0.000156804322936 45823224748.8 +UniRef50_UPI0003A3F0F8 amino acid transporter 7.66288213797e-06 0.00105497944913 4.22814550113e+11 +UniRef50_P39288 Epoxyqueuosine reductase 0.00388006912436 0.0013528605921 -1.02026509681e+12 +UniRef50_O27481 Putative branched chain amino acid aminotransferase 0.00401571415734 0.000689645913971 -1.3427745653e+12 +UniRef50_F3Z639 1.14578448277e-06 1.68231043761e-05 6329126423.27 +UniRef50_A5VSQ0 2 oxoglutarate dehydrogenase E1 component 1.97192859365e-06 8.50994875812e-06 2639478970.93 +UniRef50_P00414 Cytochrome c oxidase subunit 3 8.06272780121e-05 3.05286715821e-05 -20225422194.8 +UniRef50_Q4Q523 2.97172479437e-06 3.92121974942e-05 14630723549.5 +UniRef50_X0PDD7 Peptide deformylase 9.71339564776e-06 1.7940665365e-05 3321449744.8 +UniRef50_UPI000378FEFA hypothetical protein 1.13220560962e-06 1.88859797553e-05 7167416485.93 +UniRef50_A4WTH0 Probable chemoreceptor glutamine deamidase CheD 0.00197953362132 0.000750273933735 -4.96267220593e+11 +UniRef50_Q3BXK0 Glutamate cysteine ligase 0.00682856069596 0.000713423282344 -2.46875601505e+12 +UniRef50_F6G433 3.257925277e-05 7.69225404854e-05 17901929404.0 +UniRef50_F4A483 Diacylglycerol kinase 0.000849385732915 0.00116153329845 1.26017802688e+11 +UniRef50_Q985W1 Ribonuclease H 6.31285508871e-05 1.97568981501e-05 -17509668440.0 +UniRef50_O27611 Conserved protein 0.00314821317319 0.000111650928232 -1.2258974411e+12 +UniRef50_UPI00036239CD hypothetical protein 1.36653782323e-05 6.88930198833e-06 -2735585131.5 +UniRef50_B2TQA9 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.000906275243296 0.00132656550976 1.69676338113e+11 +UniRef50_UPI00036BC4EC hypothetical protein 1.15347164934e-05 3.96672393342e-05 11357444695.7 +UniRef50_H3WPI1 PF05656 family protein 0.00563577704316 0.000413030356916 -2.10848692754e+12 +UniRef50_UPI00046CCA8E 2 oxoglutarate dehydrogenase 2.06569841217e-06 5.49445307193e-06 1384230331.7 +UniRef50_E8RVY2 TraU family protein 0.000128982009405 2.70537941938e-05 -41149671280.5 +UniRef50_UPI00047CFDC7 hypothetical protein 0.000669169116119 0.000307108941899 -1.46168135311e+11 +UniRef50_Q0AHR1 Transcriptional regulator, BolA protein family 3.42875322389e-05 0.000100170681224 26597835722.4 +UniRef50_U1XA26 Transcriptional regulator, GntR family 0.000340497262286 0.000623279077877 1.14162489077e+11 +UniRef50_D6DJI1 PTS system N acetylglucosamine specific IIB component, Glc family PTS system N acetylglucosamine specific IIC component, Glc family (TC 4.A.1.1.2) 0.000389623864651 0.00111345693467 2.92220292797e+11 +UniRef50_A5W0Y9 Peptidase M19, renal dipeptidase 0.000910900227576 0.000441720928674 -1.89413440444e+11 +UniRef50_UPI000262D0AF flagellin domain containing protein 8.89558631426e-07 1.44968304461e-06 226129099.102 +UniRef50_UPI00045612E6 hypothetical protein PFL1_02986 8.32100956431e-06 4.75055804066e-06 -1441435094.46 +UniRef50_B7GN27 Non canonical purine NTP pyrophosphatase 7.11228475285e-05 4.72602452093e-05 -9633625383.32 +UniRef50_A0A020D642 0.000480645200655 0.000135418379173 -1.39372304242e+11 +UniRef50_A0Q1U2 Fe S oxidoreductase, putative 0.000217179360525 0.00113204028315 3.6934058107e+11 +UniRef50_R6K577 Tagatose 6 phosphate kinase 0.000756387696718 0.000465857776198 -1.17290494117e+11 +UniRef50_UPI0003C1230B PREDICTED 4.29456931009e-05 3.29882314976e-05 -4019949441.05 +UniRef50_Q8H389 0.000111611159966 7.10802059353e-05 -16362843512.9 +UniRef50_D8IDT0 GCN5 related N acetyltransferase 0.000286218033601 0.0012913760692 4.05794633648e+11 +UniRef50_Q5FKM6 Enolase 8.08360214071e-06 7.9821167834e-05 28961335589.3 +UniRef50_I9J361 6.43013775942e-06 7.72572455111e-06 523044286.443 +UniRef50_M1MMR7 0.000113586556327 0.00231629506579 8.89260455542e+11 +UniRef50_Q9FFR3 6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic 0.00957532512218 0.00249574819102 -2.85811208329e+12 +UniRef50_A0QVT2 Ribonuclease J 8.34858475724e-05 6.71450867644e-05 -6596965661.87 +UniRef50_UPI0002631A0F hypothetical protein 3.15136279201e-05 6.62057655609e-06 -10049630307.7 +UniRef50_UPI000329A978 1.76345374863e-05 1.85718624917e-05 378409606.951 +UniRef50_D5ECW5 DNA gyrase subunit A 7.50767945313e-06 1.52780582458e-05 3136997271.87 +UniRef50_V7EPQ5 0.000635423978179 7.25448766512e-05 -2.2724120059e+11 +UniRef50_V5VD87 CsuC 0.00049091202226 0.00637057955153 2.3736939332e+12 +UniRef50_Q83RN5 Respiratory nitrate reductase 1 beta chain 0.0130631665218 0.00769058512479 -2.16897703896e+12 +UniRef50_A0Q3H7 Riboflavin biosynthesis protein RibBA 0.000703444196473 0.00594479967104 2.11599952375e+12 +UniRef50_A5CW02 Aspartate 1 decarboxylase 0.00195251373544 0.00258331700717 2.54663021624e+11 +UniRef50_J0HLU4 3.96350842689e-05 5.30765240372e-06 -13858405488.9 +UniRef50_UPI00037A3165 hypothetical protein 8.51964567906e-05 0.000206530757731 48984146228.8 +UniRef50_P98005 Cytochrome c oxidase polypeptide I+III 1.20147082364e-05 0.000233315847471 89341985579.5 +UniRef50_A3PJY9 Permease YjgP YjgQ family protein 0.00290655966406 0.000544816646995 -9.53464637833e+11 +UniRef50_UPI0003724245 hypothetical protein 2.61761189804e-05 5.68407584567e-06 -8272889279.13 +UniRef50_F0NRM0 L serine ammonia lyase alpha subunit 0.027628888944 0.00575126855223 -8.83226382076e+12 +UniRef50_UPI00035C1D9A hypothetical protein 1.15619133208e-05 1.31923547672e-05 658229219.678 +UniRef50_Q5HLA7 Aldehyde dehydrogenase family protein 0.0120725487064 0.00261686892626 -3.81737396148e+12 +UniRef50_B7UXY9 Phosphoribosylformylglycinamidine cyclo ligase 0.00402223697511 0.00353197093744 -1.97926415648e+11 +UniRef50_UPI0002559CF6 3 hydroxyacyl CoA dehydrogenase, NAD binding, partial 3.32290101768e-06 6.01455813173e-06 1086655007.29 +UniRef50_K8WXC5 0.00472208075826 0.000697598516207 -1.62473286707e+12 +UniRef50_Q329T6 Low affinity potassium transport system protein kup 0.00269636664894 0.000978881537668 -6.93369815332e+11 +UniRef50_UPI000316D8EB hypothetical protein 1.21712265769e-05 1.3040543299e-05 350953828.428 +UniRef50_UPI00047B6E0E hypothetical protein 6.90033211016e-05 1.8592424065e-05 -20351497744.9 +UniRef50_UPI000467AAAB hypothetical protein, partial 2.61350446619e-05 2.5936688778e-05 -80078704.4308 +UniRef50_C5B3S3 0.000346932172054 1.55494757438e-05 -1.33783261023e+11 +UniRef50_A6QIH4 0.0108062073194 0.000723224584158 -4.07062386231e+12 +UniRef50_UPI00036099F9 hypothetical protein 5.18719236938e-06 7.33354441549e-06 866508659.716 +UniRef50_Q82A73 5.18579275325e-06 0.000171812841632 67269384376.3 +UniRef50_W6RBC1 Phage head tail adaptor 8.56390434695e-05 2.83898724044e-05 -23112192885.3 +UniRef50_UPI000374F5C0 hypothetical protein 0.00104929150267 0.000157499247499 -3.60027476934e+11 +UniRef50_A5UKP1 Phosphate specific transport system accessory protein PhoU 0.00256938102455 0.000330578401339 -9.03832092187e+11 +UniRef50_Q6FA90 C4 dicarboxylate transport protein 0.000130768818311 0.00769777025911 3.0548913392e+12 +UniRef50_UPI0000557712 hypothetical protein 0.000806042233127 0.000496545819752 -1.24947500028e+11 +UniRef50_H8LWD1 0.000546557388125 0.00899508968218 3.41077616226e+12 +UniRef50_R4Z0C6 3.19874306103e-05 2.92172094424e-05 -1118372279.92 +UniRef50_UPI00035EB969 hypothetical protein 0.000130926497138 1.63102001417e-05 -46272005597.4 +UniRef50_F2I582 ABC transporter, ATP binding protein 0.00400947208509 0.00449927617088 1.97739920005e+11 +UniRef50_Q9RWC7 Arginine repressor 2.05030760174e-05 0.0490244909542 1.9783511253e+13 +UniRef50_R7GNX0 HD domain protein 4.18116326724e-06 1.27309878811e-05 3451669114.76 +UniRef50_A4WTR4 Phosphate starvation inducible E 0.000440719366681 0.00020691321173 -94390413877.9 +UniRef50_UPI0002377C07 hypothetical protein 5.5961263498e-06 6.46246036565e-06 349749673.313 +UniRef50_I6Z4Y8 Respiratory nitrate reductase gamma chain 0.00232991819099 0.000264858031563 -8.336901275e+11 +UniRef50_W0YWT0 ClpB protein 0.00085439184778 0.000370933662252 -1.95178002197e+11 +UniRef50_UPI0002FBC9AA hypothetical protein 1.39439386122e-05 0.00128504374505 5.13158590009e+11 +UniRef50_B7GVA1 Isochorismatase family protein 0.000222924796565 0.00449429127886 1.72440306447e+12 +UniRef50_B0BVB8 ATP synthase subunit alpha 3.76144854743e-06 1.09413747784e-05 2898624327.05 +UniRef50_B9KPP5 0.000664983016083 0.000642278913615 -9165924777.0 +UniRef50_A9M0F2 Phopholipase D family protein 0.000200820709593 0.00375602960254 1.4352814574e+12 +UniRef50_Q9I3N7 Cytochrome c biogenesis ATP binding export protein CcmA 1.18708463366e-05 0.0003565191612 1.39138754021e+11 +UniRef50_Q1C0H2 LPS assembly protein LptD 0.00311222543277 0.000668272851976 -9.86653647536e+11 +UniRef50_A8Z171 Iron ABC superfamily ATP binding cassette transporter, membrane protein 0.0122701626388 0.00319249001276 -3.6647678347e+12 +UniRef50_J7L817 8.58291885866e-05 3.10747414477e-05 -22105042222.6 +UniRef50_B5F050 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.00244704840753 0.00112973423778 -5.31815895591e+11 +UniRef50_P00562 Bifunctional aspartokinase homoserine dehydrogenase 2 0.00356742452155 0.000928145252598 -1.06550942847e+12 +UniRef50_D1BPV2 NADH dehydrogenase (Quinone) 0.00557201668545 0.000808824841434 -1.92295899837e+12 +UniRef50_T1Y7R5 Exotoxin 0.0107203719702 0.000259429023591 -4.22321103775e+12 +UniRef50_D4HF81 0.000513450790143 0.00417035759763 1.47633815348e+12 +UniRef50_A0A019G9E1 0.000137493789792 3.59338853264e-05 -41000979713.1 +UniRef50_Q88M14 Sensory box protein GGDEF family protein 0.00130555479402 0.000397775225145 -3.66481751663e+11 +UniRef50_UPI0003C11D1D PREDICTED 4.33494446818e-06 8.10228691002e-06 1520922374.26 +UniRef50_A6LSU0 0.00147186649583 0.000301856938874 -4.72347215777e+11 +UniRef50_Q9RXT7 0.000134816424593 0.0487960403192 1.96451332266e+13 +UniRef50_O05405 0.000169276228183 0.000540378587781 1.49818576508e+11 +UniRef50_A1R3Q2 Oxidoreductase, short chain dehydrogenase reductase family 0.000746990077563 0.000248862392015 -2.0110025937e+11 +UniRef50_Q2FEK1 Urease accessory protein UreF 0.010174376124 0.0022122604365 -3.21440380919e+12 +UniRef50_UPI000369649D hypothetical protein 3.86524171518e-05 5.99467452293e-06 -13184331454.9 +UniRef50_F9ZKH5 0.00138560393776 0.00573147846512 1.75448287657e+12 +UniRef50_UPI0004560A6D hypothetical protein PFL1_03815 8.58460959689e-06 4.73221201602e-05 15638808377.1 +UniRef50_UPI0003717F60 hypothetical protein 1.39342773528e-05 1.56849409362e-05 706764371.677 +UniRef50_UPI000262CA60 putative metallo beta lactamase superfamily hydrolase 9.05756029937e-05 1.78696737748e-05 -29352275827.8 +UniRef50_UPI00031698A8 hypothetical protein 3.84641626733e-05 5.35980756056e-05 6109746364.77 +UniRef50_G3XD23 UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase 0.00140492932784 0.00805729262555 2.68564069696e+12 +UniRef50_UPI0003EBD820 PREDICTED 1.01356469488e-05 3.50046208615e-06 -2678705551.93 +UniRef50_UPI0003B543B8 DNA repair protein RecO 1.88932769844e-05 7.07775829709e-05 20946331018.8 +UniRef50_A5F9G1 D erythrose 4 phosphate dehydrogenase 9.80357273885e-05 7.88609471736e-05 -7741094073.77 +UniRef50_R7PYB9 0.00236616801194 0.00096355155339 -5.66253476356e+11 +UniRef50_P42603 Inner membrane protein YgjV 0.000909282410253 0.000341406595601 -2.29258434995e+11 +UniRef50_K7S0H1 ABC transporter, ATP binding protein 0.000335783379478 0.0022399126024 7.68720333586e+11 +UniRef50_F7WZ70 Pyruvate dehydrogenase E1 component 0.00306425572455 0.000831695608479 -9.01311915451e+11 +UniRef50_W4YDX4 1.7601158752e-06 1.00429786053e-05 3343893326.3 +UniRef50_Q8DPY7 0.00010673496386 0.00409440213052 1.60987016936e+12 +UniRef50_UPI0003B64F06 ferredoxin 1.37440511857e-05 7.85623693334e-05 26167950446.4 +UniRef50_UPI00046F9C26 hypothetical protein 3.0566364927e-06 4.27552439953e-06 492080005.424 +UniRef50_B9KX10 ABC branched chain amino acid transporter, periplasmic ligand binding protein 0.00737266898855 0.00129502666476 -2.45361878717e+12 +UniRef50_F4FEB2 5.04279518057e-05 2.1626015424e-05 -11627695156.8 +UniRef50_A4VM39 Ribosomal RNA large subunit methyltransferase K L 0.000667081276874 6.01621686068e-06 -2.66880076908e+11 +UniRef50_A5UMN6 5 methylthioadenosine S adenosylhomocysteine deaminase 0.00539999653416 0.00113830807499 -1.72049592777e+12 +UniRef50_D2N3E8 0.00727990303111 0.00131547843319 -2.4079114019e+12 +UniRef50_X5IEK4 Putative endolysin 2.02668763943e-05 1.31232973832e-05 -2883950508.35 +UniRef50_Q0SU50 Amino acid permease family protein 0.000397119635086 0.000548397254166 61072631207.7 +UniRef50_P76190 Murein DD endopeptidase MepH 0.0044566552171 0.00169463581939 -1.11506112464e+12 +UniRef50_D3E0L0 Signal recognition particle receptor FtsY 0.00263159152802 0.00175435637597 -3.54150595768e+11 +UniRef50_Q92I89 Holliday junction ATP dependent DNA helicase RuvA 1.31395885076e-05 1.0231567865e-05 -1174003618.84 +UniRef50_O58097 Glutamine synthetase 1.1422456592e-05 3.80688895014e-05 10757491954.0 +UniRef50_UPI000376B86D hypothetical protein, partial 2.02506642053e-06 8.03169847841e-05 31607408193.3 +UniRef50_UPI00046E5399 hypothetical protein 3.41774287753e-06 3.07907293182e-05 11050810530.4 +UniRef50_B2I0Y3 Pirin related protein 1.66951234573e-05 0.010076730023 4.06135953944e+12 +UniRef50_Q9ZMR3 6.91415627371e-06 0.00316286868 1.27409756915e+12 +UniRef50_P41655 0.00335253391129 0.000637288368734 -1.09617794534e+12 +UniRef50_C6SPD8 0.00280884788994 0.00227967742469 -2.13632610473e+11 +UniRef50_O83814 Methionine aminopeptidase 6.41370610009e-05 4.44907856664e-05 -7931442439.45 +UniRef50_Q11D29 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.000558621510939 0.000673337516189 46312259043.1 +UniRef50_UPI00036E30BF hypothetical protein 6.51880157751e-05 0.000100871184456 14405733078.2 +UniRef50_Q5FGN1 Nucleoside diphosphate kinase 6.66409132438e-05 4.10090700368e-05 -10347889640.8 +UniRef50_A3JG79 1.85666981672e-05 8.76374894491e-05 27884726034.4 +UniRef50_UPI00028934E4 ATP 2.45014181697e-05 0.000597978106378 2.3151957638e+11 +UniRef50_Q31H63 Argininosuccinate synthase 0.000149523082772 0.0417382965823 1.67898982134e+13 +UniRef50_UPI00001AD637 argininosuccinate lyase 2.21550511147e-05 1.036985068e-05 -4757830036.16 +UniRef50_Q5HLL0 0.0103387982479 0.00216742869009 -3.29888216447e+12 +UniRef50_X0XAV8 Marine sediment metagenome DNA, contig 7.13304183765e-06 1.32045135111e-05 2451127619.91 +UniRef50_J7M7S6 Myo inositol 1 monophosphatase 0.00804700835095 0.000598040847185 -3.00723959038e+12 +UniRef50_D3E3I9 PIN domain containing protein 0.00502850448435 0.00113589816871 -1.57149293727e+12 +UniRef50_Q2P0Z5 Threonine tRNA ligase 0.000676327370072 0.00732687038877 2.68490582799e+12 +UniRef50_E7DN70 QueT 0.00012504245977 6.67539899331e-05 -23531770553.1 +UniRef50_D3NWU2 3.63143974444e-05 0.000184380877328 59776254909.2 +UniRef50_Q11CE6 Carbohydrate ABC transporter substrate binding protein, CUT1 family 0.0132830818129 0.00317025403489 -4.08267267233e+12 +UniRef50_UPI00035EA204 hypothetical protein 4.16443398662e-06 1.25382889291e-05 3380627999.03 +UniRef50_UPI0001913039 uracil permease 2.9188008718e-05 5.61869564545e-05 10899806515.6 +UniRef50_UPI0004642331 hypothetical protein 3.39186437955e-05 9.5308680581e-06 -9845644336.85 +UniRef50_P31153 S adenosylmethionine synthase isoform type 2 0.000193177148966 0.0408117810812 1.63982288538e+13 +UniRef50_A0A059DU66 0.000126640320636 2.27813549029e-05 -41929138959.2 +UniRef50_O27593 Probable cyclic pyranopterin monophosphate synthase 0.0022033810447 0.00181163821134 -1.58151389053e+11 +UniRef50_D8ULY9 1.64409741602e-05 1.40213674558e-05 -976824918.479 +UniRef50_P21801 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.0111938238184 0.00140531154552 -3.95174252311e+12 +UniRef50_UPI00021A5A53 PREDICTED 2.17659913751e-06 1.60076595174e-05 5583768801.56 +UniRef50_J9FKP1 Carboxynorspermidine decarboxylase 0.000182430208749 4.76569967588e-05 -54409599533.7 +UniRef50_W8EP13 Lysyl tRNA synthetase 0.000193252212719 0.00762652728641 3.00090436379e+12 +UniRef50_P64305 Non canonical purine NTP pyrophosphatase 0.000135402968864 2.24834329492e-05 -45587002327.4 +UniRef50_A0A025ZG79 0.00214409904947 0.000427574874335 -6.92981873624e+11 +UniRef50_I4YMG6 Putative integral membrane protein 1.09453542477e-05 3.88808569883e-05 11277905263.5 +UniRef50_Q3K2Q5 Biotin synthase 0.000196949211577 0.000220804133112 9630524556.49 +UniRef50_R4ZQK4 D alanyl transfer protein DltB 0.00522016037898 0.0033477670034 -7.55908182572e+11 +UniRef50_A0A023KPW6 Glycosyl transferase 0.00171665141021 0.000289053871314 -5.76338645046e+11 +UniRef50_B9KWR4 0.000322637597309 0.000403794786929 32764153360.3 +UniRef50_F0VBH0 1.74170711526e-05 3.07747069636e-07 -6907244087.32 +UniRef50_K0N7F3 PTS system beta glucoside specific EIIBCA component 0.00049822895389 0.00188657675705 5.60493045079e+11 +UniRef50_Q86AV6 Citrate synthase 1.42607312939e-05 4.14398055873e-05 10972525817.0 +UniRef50_D7CVN0 3 isopropylmalate dehydrogenase 0.00149813201041 0.0371061978325 1.43754131325e+13 +UniRef50_UPI000472AC29 hypothetical protein 0.00013666428954 5.86009946937e-05 -31515110073.8 +UniRef50_P0ABP7 Protein DedA 0.00576454358894 0.00660322188901 3.38584721478e+11 +UniRef50_F5LXH0 9.04874786253e-05 0.000182627804264 37198180149.3 +UniRef50_L6Z8K5 Protease3 0.00213118616159 0.00128890362074 -3.4003979771e+11 +UniRef50_B8GW56 Chromosome replication regulator protein HdaA 3.15549431916e-05 1.03228587873e-05 -8571653020.99 +UniRef50_UPI00037B2D8F hypothetical protein 4.62367343728e-06 2.46205245112e-05 8072974167.49 +UniRef50_U3U2D6 2.03499320393e-05 1.6214525928e-05 -1669514194.27 +UniRef50_Q1JDL9 Transcriptional regulator, RpiR family 0.000358954940073 0.000340750044459 -7349539758.56 +UniRef50_W6RVE8 0.000324486523369 0.000349487225087 10093090076.7 +UniRef50_E6SIX1 1.53094863252e-05 5.54346221637e-05 16199009728.8 +UniRef50_C6SS20 0.00479605736104 0.00186250625388 -1.18431058068e+12 +UniRef50_P75967 0.00338005953882 0.00193017807743 -5.85334938009e+11 +UniRef50_Q8Y6R2 ADP dependent NAD(P)H hydrate dehydratase 6.42351111368e-06 0.00299564812779 1.20678665966e+12 +UniRef50_P32106 5.88001167273e-05 0.00341640894245 1.35550788544e+12 +UniRef50_P75968 0.00101934772063 0.000256425503788 -3.08001061048e+11 +UniRef50_UPI00035E4836 peptidase 1.05197627732e-05 1.24900849326e-05 795443234.322 +UniRef50_B4L348 GI15483 5.51782985938e-06 1.76005615544e-05 4877947057.06 +UniRef50_W5X806 50S ribosomal protein L17 6.22852846008e-05 3.92058001902e-05 -9317471073.68 +UniRef50_H8GWD9 0.0002066529136 0.0440874896079 1.77152322519e+13 +UniRef50_Q9JRW7 Biotin synthase 2.36308858513e-05 0.0046013747539 1.84809137477e+12 +UniRef50_Q3IVK2 Zinc containing alcohol dehydrogenase 0.0024183178032 0.000179888348343 -9.03681439545e+11 +UniRef50_A0A034SZW0 Periplasmic nitrate reductase 0.00219633009431 0.000941956684181 -5.06405938562e+11 +UniRef50_UPI00016A43A2 UvrD REP helicase, partial 1.90573123998e-05 6.07811427936e-06 -5239861553.88 +UniRef50_A3PNU0 Transcriptional regulator, LacI family 0.000741885186622 0.000185733776861 -2.24525148866e+11 +UniRef50_P37629 0.00289293591284 0.00205699626279 -3.37479094858e+11 +UniRef50_Q7VMF9 Macrolide export ATP binding permease protein MacB 4.7595927298e-06 4.01318801426e-06 -301332743.079 +UniRef50_UPI000471FEB2 XRE family transcriptional regulator 0.000200158434538 2.1075159957e-05 -72298115547.3 +UniRef50_P37626 0.00338511652885 0.000489949704206 -1.1688143748e+12 +UniRef50_Q2K7T8 NADP dependent isocitrate dehydrogenase protein 0.000291456144111 0.000142945309896 -59955646205.5 +UniRef50_UPI00029B17E0 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase 0.000506608118671 0.000586715218531 32340219238.1 +UniRef50_V9WQ71 NTP pyrophosphohydrolase 0.00313738584051 0.000787511213846 -9.48673222987e+11 +UniRef50_UPI000367676A hypothetical protein 0.00045831906472 0.000248952463497 -84523866130.8 +UniRef50_J7QB63 Phosphatidylserine decarboxylase 0.00434771783878 0.00167207892025 -1.08018826519e+12 +UniRef50_U5NRM8 0.00144632495964 3.50248339198e-05 -5.69759179353e+11 +UniRef50_C3XBE9 2.65564693367e-05 9.38416933714e-06 -6932668237.66 +UniRef50_U5NRM4 0.000611372706377 0.00136942694941 3.06035800284e+11 +UniRef50_I0C7C2 0.0242463613767 0.00556411395311 -7.54225254186e+12 +UniRef50_Q6F916 0.000172688573019 0.00664396455174 2.6125335241e+12 +UniRef50_K5YPQ7 Antirepressor 0.000111030153255 5.13591881625e-05 -24089900852.9 +UniRef50_UPI0003675C2C hypothetical protein 6.88365544355e-06 4.01607167027e-05 13434357985.8 +UniRef50_P31666 0.00194635886307 0.000850143664969 -4.42555527546e+11 +UniRef50_P31667 0.00468031726846 0.00215327818878 -1.02019668672e+12 +UniRef50_P31665 0.00599109353116 0.000552277806127 -2.19571664997e+12 +UniRef50_A0A029L0Z7 1.4769321213e-05 2.44195210172e-05 3895904082.22 +UniRef50_P31122 Sugar efflux transporter 0.00355331312164 0.00183082134546 -6.95391067395e+11 +UniRef50_W6RZK7 0.00191499707281 0.00328636636805 5.53638613082e+11 +UniRef50_U6IHI4 Iron sulfur cluster assembly 2 0.00022540843364 3.24957928703e-05 -77881200383.2 +UniRef50_UPI00016A2A91 molybdate ABC transporter, inner membrane subunit, partial 5.14838327607e-05 3.00919595891e-05 -8636161707.18 +UniRef50_UPI000237A7F7 ribose transport ATP binding protein rbsA 1.12291695496e-05 4.81652021619e-06 -2588865227.95 +UniRef50_A6LS74 0.000455155043195 0.00195423961778 6.05198838594e+11 +UniRef50_A1WV96 50S ribosomal protein L17 0.0010270630181 0.000471250061484 -2.24388511178e+11 +UniRef50_UPI0002F511F9 cytochrome C oxidase subunit I 2.34837024184e-05 5.81608022103e-05 13999570721.9 +UniRef50_UPI0002EF1560 hypothetical protein 0.000146579550984 5.34077317215e-05 -37614606783.1 +UniRef50_Q9HAC7-2 Isoform 2 of Succinate hydroxymethylglutarate CoA transferase 4.34065004056e-06 6.64553308336e-05 25076458869.0 +UniRef50_B9DMC7 Probable DNA directed RNA polymerase subunit delta 0.0234248692929 0.00678419508854 -6.71804438035e+12 +UniRef50_A7NIN1 ABC type Fe3+ transport system periplasmic component like protein 0.00887795138041 0.00213392869809 -2.72264471532e+12 +UniRef50_Q67QM6 DNA polymerase IV 4.58332637207e-06 7.75986979504e-06 1282409560.42 +UniRef50_H9K7I8 6.29486853175e-06 1.00511977771e-05 1516476211.69 +UniRef50_M1Q601 LrgA associated membrane protein LrgB 0.00051887991244 0.00178289803844 5.10299628713e+11 +UniRef50_A6M2R8 Methyl accepting chemotaxis sensory transducer 0.000123901309249 0.00112842700767 4.05539351369e+11 +UniRef50_A6LRR4 Transglutaminase domain protein 0.000147647714023 0.00121598044327 4.31299032715e+11 +UniRef50_UPI000469DD13 sodium 7.67961067116e-06 6.44994865916e-06 -496429643.894 +UniRef50_P33359 Putative osmoprotectant uptake system permease protein YehW 0.0064251743672 0.000490544273213 -2.39588299504e+12 +UniRef50_Q7VSN2 Glutamyl tRNA amidotransferase subunit A 0.00390828144006 0.011695989121 3.14399315672e+12 +UniRef50_P94365 Cytochrome bd ubiquinol oxidase subunit 2 4.74583978653e-06 0.00170592006081 6.86784908781e+11 +UniRef50_A1SSP3 Enoyl CoA hydratase isomerase 0.000440645123179 0.0173390147563 6.8220791872e+12 +UniRef50_Q31ZL5 0.00244402267224 0.001338706696 -4.4622962336e+11 +UniRef50_S5UWP0 3.57043957672e-05 7.73783798756e-06 -11290442563.9 +UniRef50_UPI0003F0706F PREDICTED 4.08481407525e-05 3.88109934604e-05 -822421360.429 +UniRef50_UPI000378D1C1 hypothetical protein 4.46801038563e-06 1.02676531094e-05 2341386937.21 +UniRef50_E8XQD0 Membrane dipeptidase 0.00180707326623 0.00105808716017 -3.0237488211e+11 +UniRef50_Q6AHF5 Uroporphyrinogen decarboxylase 3.80016201938e-06 0.000552938929852 2.21694059265e+11 +UniRef50_Q8TLM8 Phosphoglycerate mutase family protein 0.00019259489227 0.00484339743989 1.87758606024e+12 +UniRef50_UPI000348926B hypothetical protein 0.000211288581341 4.05701150131e-05 -68921139807.8 +UniRef50_P0AAN2 Hydrogenase 2 operon protein HybE 0.00324828063679 6.06287930931e-05 -1.28689416619e+12 +UniRef50_UPI00037952D8 hypothetical protein 2.23817272306e-06 9.568088302e-05 37723968817.9 +UniRef50_Q2FH23 Response regulator ArlR 0.0306033020347 0.0127436778101 -7.21014946171e+12 +UniRef50_UPI00040D89D5 sulfate adenylyltransferase 1.07728854519e-05 2.570842933e-05 6029662343.32 +UniRef50_A5ULA7 0.00402175811097 0.00100593505449 -1.21752477621e+12 +UniRef50_Q8ZRS2 Blue copper oxidase CueO 0.00507004495628 0.000895272110715 -1.68540702798e+12 +UniRef50_UPI0004719AE4 hypothetical protein, partial 1.83916153186e-05 0.000547543355475 2.13625050923e+11 +UniRef50_A3PMC5 Phospholipid glycerol acyltransferase 0.00503451109147 0.00215997440201 -1.16048573607e+12 +UniRef50_UPI00046CAC84 hypothetical protein 4.66243464573e-05 0.000339602379294 1.18278827101e+11 +UniRef50_D2NRM3 Protein containing TPR repeat 0.000384792232431 0.000351346751597 -13502351034.9 +UniRef50_Q46798 0.00308711497791 0.00116320769473 -7.76704979217e+11 +UniRef50_A3PMP3 Transcriptional regulator, TetR family 0.00882731890626 0.00341831295303 -2.18368207929e+12 +UniRef50_U6KR03 3.53885893544e-05 0.000203666693245 67935935545.3 +UniRef50_UPI0003B4D513 PAS sensor protein 2.3163689332e-05 3.5139786727e-06 -7932829322.22 +UniRef50_Q9ZMF0 Putative methylthiotransferase jhp_0270 0.000185193577052 0.00556239335953 2.17084153785e+12 +UniRef50_B2A326 PSP1 domain protein 0.000799849696465 0.0017809911636 3.96098850242e+11 +UniRef50_D2J6L2 Universal stress protein family 0.0154269218415 0.00186751771791 -5.4740978373e+12 +UniRef50_UPI00035E6D97 citrate lyase subunit beta 3.0812789128e-05 1.67595734249e-05 -5673455631.69 +UniRef50_F0YB09 1.98816036622e-05 1.66793935042e-05 -1292771536.32 +UniRef50_P08192 Bifunctional protein FolC 0.00222773795582 0.00452931611072 9.29175344673e+11 +UniRef50_Q8CQG0 Response regulator 0.0127152339112 0.000850089457421 -4.79010441769e+12 +UniRef50_E6KSM2 0.000246244025364 0.00374029463719 1.41059110882e+12 +UniRef50_O27322 Argininosuccinate synthase 0.00167024512015 0.000314018761464 -5.47525223772e+11 +UniRef50_A3U241 0.000218825829679 4.40922905493e-05 -70542073968.4 +UniRef50_Q9RVU4 Endonuclease III, putative 0.000111682245224 0.0204626640725 8.21594109831e+12 +UniRef50_P74533 Recombination protein RecR 0.0300919291481 0.00550100083536 -9.92765952446e+12 +UniRef50_UPI000476740D hypothetical protein 3.22889750513e-06 3.58221359554e-05 13158290326.4 +UniRef50_Q9XAR0 NADH quinone oxidoreductase subunit G 0.00015054940576 0.00679151985845 2.68104126562e+12 +UniRef50_Q9RXE1 Lysine tRNA ligase 8.10624873615e-05 0.0607525837334 2.44938376503e+13 +UniRef50_UPI000185D783 hypothetical protein, conserved 0.00022987361885 0.000238617088733 3529846086.21 +UniRef50_R5XBW3 Carbonic anhydrase family 3 2.34338639738e-05 4.40267099703e-05 8313584631.42 +UniRef50_H5XUP2 Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain 0.00110093494118 0.00200038082425 3.63117340438e+11 +UniRef50_U5RWM1 Succinate dehydrogenase 0.000293441008987 0.000891177471602 2.41313545009e+11 +UniRef50_P27603 P protein 2.66437534439e-05 1.90063309577e-05 -3083321179.39 +UniRef50_UPI00036D44BD hypothetical protein, partial 0.00275496573928 0.00135290806956 -5.66027886448e+11 +UniRef50_Q2IW23 Bifunctional enzyme IspD IspF 5.35897464653e-06 1.75239421609e-05 4911146666.5 +UniRef50_A6W8Y0 Putative cell wall binding repeat 2 containing protein 1.01614352137e-05 9.0513107982e-05 32438956322.5 +UniRef50_I1ASL8 0.000480557919503 4.70759590445e-05 -1.75001986859e+11 +UniRef50_Q6FFB1 Alginate biosynthesis protein 0.000120731126496 0.00634952083929 2.5146388429e+12 +UniRef50_C3T0C2 Transcriptional regulation of gcv operon 0.00235505151327 0.000976435716642 -5.56564114618e+11 +UniRef50_T2L9X7 0.000755508530924 0.000339210145434 -1.68064766778e+11 +UniRef50_F7QKU3 TRAP transporter solute receptor, TAXI family 4.70891157795e-05 1.89919618391e-05 -11343165836.6 +UniRef50_J9P7N6 4.33139702095e-06 1.455554679e-05 4127614726.21 +UniRef50_A3PNZ4 Transcriptional regulator, SARP family 0.00285512404878 0.000419931019088 -9.83117309265e+11 +UniRef50_A5EUU4 Na translocating NADH quinone reductase subunit E 0.000737103896835 0.0049323273874 1.69366320432e+12 +UniRef50_J8TQ37 1.06549507583e-05 0.00334390215461 1.34567279974e+12 +UniRef50_Q2YSD7 Putative ATP 0.0257911620294 0.00464197685942 -8.53818558282e+12 +UniRef50_A0A023RSQ1 GNAT family acetyltraansferase 0.00303575749602 0.00139397958299 -6.62805890371e+11 +UniRef50_W1WJ38 0.000422558942747 0.00264992444171 8.99214784778e+11 +UniRef50_UPI000366DF34 hypothetical protein 5.59272914577e-06 4.95247729876e-05 17735905205.7 +UniRef50_W6RLX0 Spermidine putrescine binding periplasmic protein SPBP 0.00863245416127 0.00118203435997 -3.00782590072e+12 +UniRef50_A6U9I7 Anhydro N acetylmuramic acid kinase 5.91417326273e-06 3.38868737877e-05 11292922465.6 +UniRef50_UPI00047D420D hypothetical protein 1.8344309571e-05 5.05619009931e-06 -5364576894.29 +UniRef50_A3VVU2 Putative outer membrane protein 4.05745631084e-06 5.97635280876e-06 774682063.718 +UniRef50_A0KVP8 Na H(+) antiporter NhaB 0.00308175158006 0.00101099734226 -8.35988896812e+11 +UniRef50_Q8EW01 Serine tRNA ligase 5.34735967067e-06 8.33869871158e-06 1207640278.67 +UniRef50_P77234 0.00584455778739 0.00105051804166 -1.93541267483e+12 +UniRef50_Q46HN8 3 oxoacyl [acyl carrier protein] synthase 3 0.000259556588265 0.00011851990415 -56938240092.0 +UniRef50_UPI0003C7E828 MFS transporter 4.20968276025e-06 5.93545845e-06 696716823.601 +UniRef50_S5CXB4 Choline dehydrogenase related flavoprotein 0.000374353925435 0.0079506871604 3.05865869902e+12 +UniRef50_G2JDK1 4.15625903643e-05 0.00945472958526 3.80021102839e+12 +UniRef50_UPI0003A64EF7 hypothetical protein 0.00206217966753 0.00174119261246 -1.29586413086e+11 +UniRef50_J2DGW2 0.00016349593144 1.04311699986e-05 -61794122509.6 +UniRef50_W7Z6N4 Ribonuclease PH 1.1490278673e-05 2.59084253748e-05 5820782754.07 +UniRef50_A1WW41 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.90664346884e-05 4.28631468721e-06 -5966915816.95 +UniRef50_R4RS00 0.00144253334124 0.00141560013632 -10873265333.8 +UniRef50_UPI00036A57A1 hypothetical protein 3.83182189535e-05 9.9025651511e-06 -11471748139.3 +UniRef50_B2HW18 0.000167029198609 0.00485705316522 1.89342022839e+12 +UniRef50_Q2IFN9 0.000488918753401 0.000418986111916 -28232665537.5 +UniRef50_A0A017HFR7 Chemotactic signal response protein, putative 8.67180750928e-05 4.19437807736e-05 -18075932059.0 +UniRef50_O25916 Replicative DNA helicase 0.00024514668425 0.00366035364683 1.3787609601e+12 +UniRef50_Q3IWU3 TRAP T family transporter, fused small and large inner membrane subunits 0.00252878358915 0.00110447059083 -5.75012635708e+11 +UniRef50_UPI0004724A10 hypothetical protein, partial 7.01290360737e-05 1.08682848153e-05 -23924292494.2 +UniRef50_X0X6Z1 Marine sediment metagenome DNA, contig 5.52158405379e-05 0.000111186007871 22595843383.6 +UniRef50_UPI000415535D alpha beta hydrolase 7.39087410213e-05 1.14266655425e-05 -25224780612.1 +UniRef50_UPI00034739EE hypothetical protein 1.56391198345e-06 0.000106594502576 42402138292.7 +UniRef50_Q89IC6 Blr5713 protein 1.71120695213e-05 1.72547628564e-05 57607050.424 +UniRef50_K3WBA6 Amidophosphoribosyltransferase 0.000360501156392 0.00248801010112 8.58901468458e+11 +UniRef50_P21562 0.000124400186824 0.000155007645497 12356606662.0 +UniRef50_P17058 Acyclic carotenoid 1,2 hydratase 0.000564995824986 0.000517255230352 -19273463896.7 +UniRef50_UPI00038293BE hypothetical protein 4.48020431817e-05 5.12901175246e-05 2619315229.85 +UniRef50_Q5WCN5 Sorbitol dehydrogenase 0.0174112373836 0.00294180495147 -5.84148743274e+12 +UniRef50_Q03U06 Mannonate dehydratase 0.000407337738757 0.00310012775404 1.08711237342e+12 +UniRef50_N6UA20 0.000135012209407 0.000174032108009 15752811893.6 +UniRef50_Q5HPW3 Transcription factor FapR 0.023261723995 0.00451104739168 -7.56987824143e+12 +UniRef50_Q8KCW2 Dihydrolipoyl dehydrogenase 3.29453625239e-06 1.15677650764e-05 3340004000.19 +UniRef50_Q9F1M9 UDP N acetylmuramate L alanine ligase 0.00421797449118 0.00272582266688 -6.02400002232e+11 +UniRef50_Q0KDL1 ABC type transporter, ATPase component 0.000399478289819 0.000412843372555 5395647908.53 +UniRef50_A8L8S5 3.30145965308e-05 2.85202125879e-05 -1814437950.04 +UniRef50_UPI0003B6FD69 NADPH 1.5032190697e-05 7.71991880128e-05 25097579691.2 +UniRef50_C4ZI69 Anthranilate phosphoribosyltransferase 0.00447407984815 0.000600665846803 -1.56374476448e+12 +UniRef50_A6M0U5 0.000445160521619 0.00186774890226 5.74316386387e+11 +UniRef50_UPI0003B423C3 tRNA delta isopentenylpyrophosphate transferase 1.20571281187e-05 1.00395811815e-05 -814508456.633 +UniRef50_R4PMP8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.0045294961027 0.000915952128364 -1.45883204561e+12 +UniRef50_Q5SIN6 0.000353518668364 0.00022245934854 -52910255691.7 +UniRef50_V9W081 4.17690080529e-05 1.17465703992e-05 -12120426497.5 +UniRef50_UPI0001746B66 chromosomal replication initiation protein 3.51499617073e-06 6.30727918617e-06 1127278918.5 +UniRef50_UPI00045758DE PREDICTED 4.61787159465e-06 2.46506742442e-06 -869113461.4 +UniRef50_G7MCB5 PTS system, lactose cellobiose family IIC subunit 0.000340061609998 0.00195545817109 6.52155414857e+11 +UniRef50_Q60178 Delta aminolevulinic acid dehydratase 0.00439978423137 0.00903249403543 1.87028179764e+12 +UniRef50_A6LZJ5 Iron sulfur flavoprotein 0.00221701785948 0.000579014715385 -6.61281969832e+11 +UniRef50_P38946 Succinyl CoA 0.000921180655686 0.00931101721393 3.38707997343e+12 +UniRef50_P77624 Carbamate kinase like protein YahI 0.00276581725012 0.00117098560802 -6.43853104701e+11 +UniRef50_T1KRH7 5.21008684175e-06 0.000251308496245 99352947843.1 +UniRef50_B1I6S1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.000125515656323 0.00418532510166 1.63899489255e+12 +UniRef50_X8F0P6 9.63837997413e-05 4.47798773731e-05 -20833136711.4 +UniRef50_P26289 NADH quinone oxidoreductase subunit 4L, chloroplastic 0.00772842992127 0.00175243302783 -2.41258327961e+12 +UniRef50_I0C6V7 Acyl CoA dehydrogenase, short chain specific 0.0259490128937 0.00690236932118 -7.68936373882e+12 +UniRef50_UPI000372829F MULTISPECIES 2.26773438317e-06 1.02569632353e-05 3225349726.47 +UniRef50_D8JEY6 9.80483087926e-05 0.00746871126349 2.97562708302e+12 +UniRef50_P80886 Succinyl CoA ligase [ADP forming] subunit beta 0.0144301764995 0.00363260735125 -4.3591111662e+12 +UniRef50_P42619 Inner membrane protein YqjF 0.000485493583502 0.00111440266111 2.53898312213e+11 +UniRef50_UPI00035DD30D hypothetical protein, partial 5.41210017492e-06 0.000137762284503 53431393532.6 +UniRef50_A8AM44 0.004335950381 5.46640826788e-05 -1.72840781592e+12 +UniRef50_P40118 Protein CbxX, chromosomal 0.0079011170764 0.00224812035541 -2.28218414633e+12 +UniRef50_UPI0004420F41 PREDICTED 5.20826775073e-05 4.5864820248e-05 -2510225277.27 +UniRef50_UPI000380047C hypothetical protein, partial 1.20788579712e-05 2.92758877436e-05 6942651950.4 +UniRef50_P0A9D3 Glutathione S transferase GstA 0.00266711333675 0.000355090226682 -9.33392101249e+11 +UniRef50_V4LD81 4.98546089933e-05 1.01531272948e-05 -16027975353.7 +UniRef50_G3BCN3 1.56369867027e-05 2.32972947213e-05 3092560349.66 +UniRef50_Q89N53 GMP synthase [glutamine hydrolyzing] 0.00501594423186 0.00817957712061 1.27719741933e+12 +UniRef50_A9M3R6 PilS cassette 3.38274986861e-05 6.35213552979e-05 11987774298.8 +UniRef50_G8VFT5 ABC transporter associated permease 5.32170097031e-05 0.00483714033127 1.93132855026e+12 +UniRef50_UPI00046F1979 hypothetical protein 0.000163128576005 1.97765683159e-05 -57872964631.0 +UniRef50_Q28W02 Protein export protein SecB 0.00254303266779 0.000379421891038 -8.73476221064e+11 +UniRef50_UPI000381A76A hypothetical protein 5.63796539441e-06 9.31269779224e-06 1483534563.04 +UniRef50_K7RNM6 Protein translocase subunit SecD 7.04264904616e-05 0.00563539044096 2.2466442366e+12 +UniRef50_V9H6U9 1.83756158505e-05 3.58206509258e-05 7042774734.55 +UniRef50_A7IGH8 Heat shock protein DnaJ domain protein 1.2186950416e-05 1.83411918241e-05 2484542777.48 +UniRef50_A5UK66 0.000658405794513 0.000694862835762 14718154930.4 +UniRef50_Q88YL5 Peptide chain release factor 2 0.0271726134563 0.0143230519296 -5.18752567018e+12 +UniRef50_B9KPA3 Lipid A biosynthesis acyltransferase 0.000158830009337 0.000498498952915 1.37128520729e+11 +UniRef50_U3HEJ8 0.000296016027856 6.94862835673e-05 -91452837602.0 +UniRef50_P37627 0.00257016601091 0.00113793195481 -5.78210463936e+11 +UniRef50_UPI0004691CF3 hypothetical protein 0.000715240572476 0.000224412918547 -1.98153147024e+11 +UniRef50_G7H917 0.000101168832131 1.30038297211e-05 -35593293379.1 +UniRef50_Q99TA4 HTH type transcriptional regulator rot 0.00884455228534 0.00175317070562 -2.86287776477e+12 +UniRef50_UPI00047C5CBE hypothetical protein 0.000107086306 9.67330387062e-06 -39326824351.6 +UniRef50_UPI0004786076 acetolactate synthase catalytic subunit 1.59988615622e-05 1.71167014226e-05 451285669.081 +UniRef50_UPI0003707FEC hypothetical protein 1.68306830586e-05 0.00188360173137 7.5363838006e+11 +UniRef50_UPI0003AADB2D formyl CoA transferase 2.13787688449e-05 0.00233836614287 9.35396235528e+11 +UniRef50_S1HMP3 Pyrimidine utilization protein D 0.000760038903732 0.00104812759294 1.16304939079e+11 +UniRef50_B9DPH3 Ribonuclease HII 0.00654988876022 0.00138367075555 -2.08566560511e+12 +UniRef50_P64484 0.0116062915004 0.00384974143192 -3.13141444622e+12 +UniRef50_Q6F8V9 0.000428859893699 0.00348737729682 1.23476100787e+12 +UniRef50_UPI0003607777 hypothetical protein, partial 1.76971169323e-05 7.0076352285e-05 21146140077.4 +UniRef50_UPI000376E7E9 hypothetical protein 8.51547517838e-05 2.82164388805e-05 -22986695630.7 +UniRef50_Q58626 Pyruvate carboxylase subunit A 1.23518973694e-05 0.0109109542538 4.39989951217e+12 +UniRef50_UPI0004731C2E hypothetical protein 4.03100671317e-06 1.32536311703e-05 3723286667.67 +UniRef50_UPI0004719EAD ATPase 1.69958730374e-05 2.41118039812e-05 2872788644.3 +UniRef50_V7YXX8 5.00111023971e-05 7.22932938045e-05 8995594104.4 +UniRef50_K7SCS8 2.99156616006e-06 8.88053699593e-06 2377449792.24 +UniRef50_A5UKI4 Predicted phosphoesterase, YfcE 0.00120269743945 0.000329349485352 -3.52581286254e+11 +UniRef50_UPI0003D2681B PREDICTED 3.98163650599e-06 9.3455830574e-05 36121830117.1 +UniRef50_P80239 Alkyl hydroperoxide reductase subunit C 0.00216083281016 0.00930079134215 2.88248887651e+12 +UniRef50_P0ABK0 Cytochrome bd I ubiquinol oxidase subunit 1 0.00171593316015 0.00762391078699 2.38512306699e+12 +UniRef50_UPI0003B383CF SAM dependent methyltransferase 7.02753027592e-06 1.07738333014e-05 1512428503.69 +UniRef50_UPI0002F5F55F hypothetical protein 5.8307266128e-05 1.52060018675e-05 -17400509294.0 +UniRef50_UPI00047BBB2A protein phosphatase 1.29269973036e-05 2.25242637497e-05 3874534235.99 +UniRef50_UPI0004707FDC MFS transporter 8.14243633308e-06 1.22735081721e-05 1667764395.36 +UniRef50_Q3J3F1 NADH quinone oxidoreductase subunit H 1 0.0126455398949 0.00454787227807 -3.26912778647e+12 +UniRef50_A4IAV0 Proteophosphoglycan 5 3.06591844207e-05 2.19429074657e-05 -3518867967.48 +UniRef50_F7QM88 Diguanylate phosphodiesterase 3.52506925977e-06 2.62381642246e-05 9169555158.31 +UniRef50_A5ULA2 Transcriptional regulator, AraC family 0.00130797090593 0.000530214064208 -3.13989981153e+11 +UniRef50_D5ZZ67 SecA 4.21756527356e-05 4.94584210296e-05 2940142929.9 +UniRef50_B7LY72 0.00250168686688 0.00190767272071 -2.39810800182e+11 +UniRef50_Q02254 Nucleoside diphosphate kinase 1 1.29747779022e-05 3.70651919199e-05 9725595761.57 +UniRef50_UPI0003B52538 MerR family transcriptional regulator, partial 2.8803968304e-05 0.00263535536039 1.05229678297e+12 +UniRef50_S3Y4R2 4.73113938364e-06 7.56509520899e-05 28631198673.5 +UniRef50_D6SET8 Sucrose 6 phosphate hydrolase 0.00887921409223 0.00167694961598 -2.90764255079e+12 +UniRef50_D9SU34 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000944435907608 0.00388296660861 1.18632090382e+12 +UniRef50_UPI00047E196E hypothetical protein 3.20148519362e-06 1.33687848046e-05 4104663619.76 +UniRef50_Q5HQN2 D isomer specific 2 hydroxyacid dehydrogenase family protein 0.0103775557082 0.00217148869663 -3.31288995234e+12 +UniRef50_Q6LLZ7 0.0226656621937 3.15410501811e-05 -9.13767245753e+12 +UniRef50_Q3JQS6 DNA mismatch repair protein MutS 0.000383385341192 0.00330489096961 1.1794476731e+12 +UniRef50_UPI000466A22C hypothetical protein, partial 3.29699035676e-05 1.21948594744e-05 -8387140238.88 +UniRef50_Q8CQC3 Membrane spanning protein 0.0268225603237 0.004929767386 -8.83838916373e+12 +UniRef50_UPI00047D3526 hypothetical protein 2.46377144235e-05 3.56805285062e-05 4458119555.75 +UniRef50_P24202 Mrr restriction system protein 0.00285467559706 0.00162874838098 -4.9492186095e+11 +UniRef50_UPI0003B4AFAB flagellin 2.09820472346e-06 1.60882989627e-05 5647972722.13 +UniRef50_UPI0003B6A2EF aspartyl glutamyl tRNA amidotransferase subunit B 9.06478100423e-06 5.33142676875e-06 -1507200918.27 +UniRef50_Q41348 Probable pyridoxal biosynthesis protein PDX1 3.35079441546e-05 2.41428329843e-05 -3780810302.29 +UniRef50_Q1CBK6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.0601747378e-05 5.17590795194e-05 467229187.546 +UniRef50_P66774 L serine dehydratase 1.21384304696e-05 2.96866323437e-05 7084424437.23 +UniRef50_P0ADR0 Inner membrane protein YqaA 0.00195715013162 0.000723224584158 -4.98150885479e+11 +UniRef50_Q8REV6 Bifunctional purine biosynthesis protein PurH 2.76401389529e-06 2.95489694989e-05 10813415265.5 +UniRef50_B4TCQ6 Argininosuccinate lyase 0.00193356789531 0.00100977528475 -3.72946413093e+11 +UniRef50_V6YPB4 3.52601579306e-05 0.000196900006824 65255990542.1 +UniRef50_Q7CB38 UPF0324 inner membrane protein YeiH 0.00404169562885 0.000929997449659 -1.25623073977e+12 +UniRef50_F0YKI4 Expressed protein 5.23290378266e-05 0.000467122598609 1.67457250577e+11 +UniRef50_J7J208 Peptidylarginine deiminase like enzyme 0.000145747486043 0.000617608298778 1.90496000484e+11 +UniRef50_B6C3C1 Ribulose bisphosphate carboxylase, small subunit 0.000764719805604 8.40196966657e-05 -2.74806987108e+11 +UniRef50_G7M7S7 Ketopantoate reductase ApbA PanE domain protein 0.000259848787425 0.00262494227244 9.54817262859e+11 +UniRef50_UPI00046742AA hypothetical protein 6.14385329484e-05 1.89582262053e-05 -17149821124.2 +UniRef50_P17812 CTP synthase 1 2.11704915244e-06 0.000124659916929 49472059491.7 +UniRef50_Q8CPK1 Secretory antigen SsaA 0.00906663702078 0.000446322476372 -3.48012676473e+12 +UniRef50_S5NA52 Hydrolase 0.00568068368014 0.000471998068175 -2.10281029931e+12 +UniRef50_X7ECS1 Transposase 0.00139756935307 0.000355910291841 -4.20530545613e+11 +UniRef50_I6U2S4 Phosphopantetheinyl transferase 0.00580588037575 0.000814562618456 -2.01505622897e+12 +UniRef50_UPI0003728962 spermidine putrescine ABC transporter ATP binding protein 4.95195598095e-06 1.08141056345e-05 2366621751.8 +UniRef50_UPI00029AE339 oxygen independent coproporphyrinogen III oxidase 3.09683203843e-05 9.54729002591e-05 26041290455.7 +UniRef50_S5XV86 Membrane protein 0.00324376280468 0.00112069387735 -8.57108978949e+11 +UniRef50_W0E657 Transposase IS116 0.00040226920411 0.000565505027426 65900305001.5 +UniRef50_UPI0002192B8A rod shape determining protein MreB 3.49468303323e-05 6.42902487938e-05 11846298117.1 +UniRef50_UPI0004773247 hypothetical protein 2.41338084638e-05 7.4918443768e-05 20502380469.9 +UniRef50_H8H0T4 0.000460382764265 0.037215520238 1.48385000344e+13 +UniRef50_W5VD93 0.00051955150512 3.58236954047e-05 -1.9528685279e+11 +UniRef50_UPI0003EDCF69 PREDICTED 0.000143228257444 2.35737535589e-05 -48305991544.3 +UniRef50_P73534 Pyruvate kinase 2 1.59553381223e-05 1.18924616653e-05 -1640233082.79 +UniRef50_D5P6E3 0.000445707922605 0.000764246202278 1.28597812408e+11 +UniRef50_I0E315 0.000394584657338 0.000508503210999 45990318050.8 +UniRef50_A6M2J9 Cell wall surface repeat protein 0.000155131228296 0.00231505356352 8.71987151956e+11 +UniRef50_P52045 Methylmalonyl CoA decarboxylase 0.00173676873471 0.000620096977765 -4.5081409138e+11 +UniRef50_L0WJ64 3 phosphoshikimate 1 carboxyvinyltransferase 5.0737364089e-05 0.00735475081072 2.94871985873e+12 +UniRef50_UPI0004743DFB long chain fatty acid CoA ligase, partial 3.72616248557e-05 1.03963773377e-05 -10845830096.7 +UniRef50_UPI00035FBEC8 hypothetical protein 8.90195699052e-06 2.85391264713e-05 7927766294.57 +UniRef50_M1MXV9 Methyl accepting chemotaxis protein 0.000580191832772 0.00149376050661 3.68818884377e+11 +UniRef50_D8JNY1 Membrane fusion protein 0.00116470044199 0.00624457513129 2.05080774914e+12 +UniRef50_Q8FJ67 0.00280349415458 0.000269695621179 -1.02292556114e+12 +UniRef50_C1DHR0 Fimbrial assembly protein 0.000439322535926 0.000346751512944 -37372057952.0 +UniRef50_UPI000382A44D hypothetical protein 5.94614511614e-05 0.00192422564861 7.52828189741e+11 +UniRef50_UPI0004156576 MULTISPECIES 1.56899363264e-05 1.70244973161e-05 538778648.447 +UniRef50_A3S860 0.00132361066913 0.000592265672953 -2.95252949569e+11 +UniRef50_D8HER7 0.00383559950036 0.00219394601122 -6.6275565892e+11 +UniRef50_Q31YD8 Erythronate 4 phosphate dehydrogenase 0.00443432924241 0.000918771760323 -1.41927369626e+12 +UniRef50_UPI00029CB712 ketol acid reductoisomerase IlvC, partial 8.392187527e-05 0.000155948861836 29078178347.2 +UniRef50_UPI00041F053E hypothetical protein 5.11406261877e-05 1.70937481739e-05 -13745142456.3 +UniRef50_Q7U0N5 Fructose 1,6 bisphosphatase class 2 1.564802716e-05 0.000253194107251 95900267550.9 +UniRef50_Q5QV04 50S ribosomal protein L25 0.000389088631857 0.00211883605813 6.98320262373e+11 +UniRef50_A5N555 0.000394639346825 0.00100913776517 2.48080552229e+11 +UniRef50_UPI0001DCFB76 hypothetical protein 2.77903795467e-05 3.48221080148e-05 2838795071.58 +UniRef50_UPI0003734789 hypothetical protein 1.14304343394e-05 1.46812123819e-05 1312378987.29 +UniRef50_UPI000237AE8F citrate synthase 1.39743864319e-05 1.1598181126e-05 -959303241.31 +UniRef50_A6M0W0 Methyltransferase type 11 0.000195279817986 0.000809566709961 2.47995156438e+11 +UniRef50_Q63VA4 3.1321175805e-05 1.10951735036e-05 -8165485330.03 +UniRef50_C6SRX5 0.00624138376317 0.00329653312038 -1.18887234188e+12 +UniRef50_P95780 dTDP glucose 4,6 dehydratase 0.00735820869164 0.0011628787262 -2.5011307323e+12 +UniRef50_K0YWY6 1.36750892745e-05 2.05695511674e-05 2783378870.73 +UniRef50_A6LT81 Histidine kinase internal region 0.000777661574339 0.00213603351704 5.48391422366e+11 +UniRef50_UPI00041035B8 hypothetical protein 8.4920021219e-06 1.42679628287e-05 2331826216.34 +UniRef50_UPI0002E14D16 hypothetical protein 5.2418010757e-05 0.000402703354717 1.41414491841e+11 +UniRef50_J9PAX2 0.000340860303668 0.000133078252013 -83884164025.6 +UniRef50_B2RI74 Aminomethyltransferase 8.44544627661e-06 0.00221217366217 8.89672123541e+11 +UniRef50_T2WDF3 Excinuclease ABC subunit A domain protein 0.000207523781952 0.000164549027019 -17349435926.0 +UniRef50_P37016 0.00611656977908 0.00349412219928 -1.05871426902e+12 +UniRef50_M1M1B1 PTS system maltose and glucose specific EIICB component MalX 9.02356945458e-05 0.000628891087881 2.17461792334e+11 +UniRef50_E6RJY5 1.62098331928e-05 5.6614951159e-05 16312041949.5 +UniRef50_UPI0002B4135E PREDICTED 1.98015096326e-06 2.46029249527e-05 9133091472.18 +UniRef50_UPI00036A4FA0 hypothetical protein 5.03815299981e-05 3.57658107377e-05 -5900545220.47 +UniRef50_B9TLS4 0.000102349087321 0.00796415573012 3.17390781691e+12 +UniRef50_P76254 Putative dioxygenase subunit beta YeaX 0.00160549522464 0.000783771849003 -3.31739810424e+11 +UniRef50_UPI00036DD6AB hypothetical protein 0.000153856008499 0.000106395176646 -19160520229.0 +UniRef50_D3E4S6 Methionine synthase MetE 0.00324766276766 0.000513816766488 -1.10368717874e+12 +UniRef50_Q5HP49 Oxidoreductase, short chain dehydrogenase reductase family 0.00913147325148 0.00160662538261 -3.03787342493e+12 +UniRef50_UPI00016C0A47 Sodium proline symporter 1.36084763529e-05 3.28286972022e-05 7759439015.5 +UniRef50_P37018 0.00384519095255 0.0013270643983 -1.01659859084e+12 +UniRef50_R0X3A7 FAD binding domain protein 5.21810253779e-06 6.80183994572e-05 25353250512.7 +UniRef50_A3JD10 Choline glycine betaine transporter 0.00032125776339 0.000118189872565 -81980999449.3 +UniRef50_P74211 Pyridoxine pyridoxamine 5 phosphate oxidase 9.9668262531e-06 0.0207006405365 8.35307887993e+12 +UniRef50_Q2FH82 Glycerol 3 phosphate acyltransferase 0.010113432579 0.00126957338042 -3.57037448482e+12 +UniRef50_P55138 0.00435263075045 0.000619635964338 -1.50705580415e+12 +UniRef50_UPI000366203C hypothetical protein 1.37426509128e-05 2.10159288761e-05 2936311566.94 +UniRef50_UPI00036AC02E hypothetical protein 2.69476413933e-05 0.000280808277526 1.02486654027e+11 +UniRef50_P03023 Lactose operon repressor 0.00418910859356 0.00191950369155 -9.16267350126e+11 +UniRef50_F0P751 0.0201411484677 0.00409381539967 -6.47850528247e+12 +UniRef50_A6LQP5 NLP P60 protein 0.000756742269975 0.000608965144638 -59659438927.8 +UniRef50_G7ZP32 0.0211104133909 0.000947540230575 -8.13999932109e+12 +UniRef50_UPI0003B6696B Holliday junction resolvase 3.0942607677e-05 1.92204626377e-05 -4732373799.26 +UniRef50_W0ZB71 9.22025983216e-05 0.000242504790472 60678839386.3 +UniRef50_A9VN54 Ribosomal RNA small subunit methyltransferase A 8.4854557176e-05 0.000838300878119 3.04175525591e+11 +UniRef50_A9DDG2 Sulfate transporter 0.000418305772219 0.000157617166025 -1.05243189329e+11 +UniRef50_UPI00047D446A HAD family hydrolase 7.35414871791e-06 2.96700278666e-05 9009194258.96 +UniRef50_I4EVD0 3.16334818129e-05 8.55368646745e-06 -9317596601.92 +UniRef50_A0A023RXY1 Helicase 0.000157330850518 0.00710943801757 2.80665097529e+12 +UniRef50_E6JZW3 Amino acid permease 0.00947600385784 0.00394330637891 -2.23361786608e+12 +UniRef50_UPI0003659021 MULTISPECIES 1.95679459525e-05 5.105715579e-06 -5838579873.31 +UniRef50_D2ZS89 0.00258429831671 0.000326316801329 -9.11574846308e+11 +UniRef50_UPI0002880506 dihydroxyacetone kinase 7.38101545647e-06 0.000542290708295 2.15949607079e+11 +UniRef50_E8U932 UvrD REP helicase 0.000256265796054 0.0355526292709 1.42495750699e+13 +UniRef50_C5N0Y7 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.0114471466903 0.0029631190156 -3.425106083e+12 +UniRef50_G2L894 3.64179742017e-05 7.26394713702e-05 14623062894.7 +UniRef50_D4FNL7 Ribonuclease R 0.0121718213442 0.00201715764088 -4.09956234876e+12 +UniRef50_UPI0003B4AB96 resolvase, partial 0.00230911466212 0.000781031305279 -6.16906002848e+11 +UniRef50_P77218 Ethanolamine utilization protein EutD 0.00165653060396 0.000629379340094 -4.14673569788e+11 +UniRef50_Q3JHV2 0.0145604800363 0.00185387088664 -5.12981404136e+12 +UniRef50_UPI00026597D0 PREDICTED 2.18669289505e-05 3.35812674039e-06 -7472230580.76 +UniRef50_Q3JHV1 0.000151971655303 7.58977171045e-05 -30711982382.9 +UniRef50_W4S288 0.000678118542849 0.00110055914979 1.70544456951e+11 +UniRef50_L8GKM7 3.11430501438e-05 0.000116773923949 34570234564.1 +UniRef50_U2ZDH4 UPF0301 protein MBE BAB_1780 8.81423690968e-06 1.67119240686e-05 3188393221.58 +UniRef50_U1LZ26 Transcriptional regulator 7.03183777232e-06 1.4006971174e-05 2815946948.77 +UniRef50_E8TAB0 Glutamine synthetase catalytic region 0.00163789181259 0.000483962021408 -4.6585561701e+11 +UniRef50_A3PHY8 Transcriptional regulator, LysR family 0.0140243852739 0.00203529611815 -4.84014241486e+12 +UniRef50_A0A023RZA2 Quaternary ammonium transporter 0.000391853967671 0.00370259350429 1.33658617828e+12 +UniRef50_UPI0004789298 hypothetical protein 6.24089839583e-05 1.24948265377e-05 -20150957866.3 +UniRef50_G1THI8 3.83282013666e-06 0.000489953054657 1.96252704042e+11 +UniRef50_D8UE68 Formin 4.23336279607e-06 1.77005433639e-06 -994467853.367 +UniRef50_I1ZKQ0 Fe2+ Zn2+ uptake regulation protein 0.0073457567032 0.00247109667141 -1.96796007364e+12 +UniRef50_P0AE84 Sensor protein CpxA 0.00293745860676 0.00313458554851 79582565404.1 +UniRef50_K0M3M3 0.00034249597966 0.000178913971369 -66040064124.1 +UniRef50_UPI0003C7C8AC hypothetical protein 0.00102920269629 0.000824139642406 -82786471259.6 +UniRef50_Q4L332 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0211220482648 0.00628089962163 -5.99155382863e+12 +UniRef50_E6NJA8 0.000117110441217 0.00450153945952 1.77004779768e+12 +UniRef50_Q5H1D4 Methionine aminopeptidase 0.00142928238152 0.00111991058224 -1.24897191788e+11 +UniRef50_Q48EZ4 Sensor histidine kinase 0.000199310354377 0.000189518668572 -3953023716.98 +UniRef50_Q0FD62 0.000308008435696 9.54284620468e-05 -85821144011.7 +UniRef50_Q8F6I3 Phosphoribosylformylglycinamidine synthase 2 3.07231794052e-05 7.69384430951e-06 -9297225179.85 +UniRef50_Q3SSW6 50S ribosomal protein L3 0.000870033727607 0.000304450211538 -2.28333005927e+11 +UniRef50_Q9CEB7 Putative ribosome biogenesis GTPase RsgA 0.00569266319164 0.00378446259325 -7.70363997825e+11 +UniRef50_A6LVT4 Cell wall hydrolase autolysin 0.000268992391105 0.00429794668771 1.62653829037e+12 +UniRef50_B2UN91 Glutamate tRNA ligase 4.25408139769e-06 1.06925772879e-05 2599299800.11 +UniRef50_F0RNV8 NurA domain containing protein 0.000220431079448 0.0160284205599 6.38187933912e+12 +UniRef50_Q2NFL4 Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein 0.00530943380379 0.00200658605367 -1.33340016722e+12 +UniRef50_E9T8A5 Transcriptional regulator, PadR family 3.65361338014e-05 9.55979490171e-05 23843979572.6 +UniRef50_UPI000470F100 hypothetical protein 5.74267163922e-05 0.000124602333148 27119620821.8 +UniRef50_D3DYX9 Glycosyl transferase GT4 family 0.00187399374543 0.00149910672389 -1.51346490977e+11 +UniRef50_F5Y5K7 Candidate UDP glucose 6 dehydrogenase 0.00058710895527 0.000404913990912 -73554342895.0 +UniRef50_A2PUV3 6.85118406973e-05 0.00023293307928 66378871691.4 +UniRef50_UPI00047022DB luciferase 2.92626742537e-05 1.88652539978e-05 -4197566148.0 +UniRef50_U5NMZ2 0.000735362315945 0.000594597393014 -56828526767.1 +UniRef50_P0AC14 Dihydropteroate synthase 0.00571951682224 0.000238842884248 -2.2126153242e+12 +UniRef50_U5NMZ6 0.00469031780091 0.00060929705839 -1.64755815351e+12 +UniRef50_UPI000255C69D hypothetical protein 3.6412050903e-05 1.50512737629e-05 -8623607857.67 +UniRef50_UPI000374608B hypothetical protein 1.37994368057e-05 0.00027729555219 1.06376615241e+11 +UniRef50_I6SWC9 dTDP 4 dehydrorhamnose 3,5 epimerase 0.00264855491607 0.00177571792775 -3.52375003099e+11 +UniRef50_Q8GWW7 Agmatine deiminase 0.000339280958185 0.00212622127483 7.21409734055e+11 +UniRef50_X6CNL3 0.000815162735288 0.00172029148658 3.65411584075e+11 +UniRef50_E6X1D4 Pyruvate ketoisovalerate oxidoreductase, gamma subunit 0.000405898912746 0.00547495439141 2.04643990104e+12 +UniRef50_R5TGD1 Cobalt import ATP binding protein CbiO 2 0.000685966880346 0.000547527816442 -55889548936.4 +UniRef50_D6ZIJ6 2.47165305196e-05 2.80534670634e-05 1347162231.55 +UniRef50_UPI0003B576AB hypothetical protein 5.44092154726e-06 1.11508102495e-05 2305152137.31 +UniRef50_UPI00036BB2A6 hypothetical protein 2.76995473695e-05 2.97517028103e-05 828480334.23 +UniRef50_P12049 UPF0062 protein YexA 2.79260175706e-05 7.08331262668e-05 17322126310.1 +UniRef50_G7LWI4 DNA polymerase 0.000197162545333 6.67131111141e-05 -52664037388.8 +UniRef50_M9RKF6 D alanyl D alanine carboxypeptidase DacC 0.00473150972361 0.00406024253076 -2.70998803128e+11 +UniRef50_K4QLG2 5.92508543178e-05 3.50097264858e-05 -9786440777.87 +UniRef50_W1U7Z2 Peptidase, M56 family 2.7567101065e-05 2.34122099287e-05 -1677380537.97 +UniRef50_E0SX52 Predicted Fe S oxidoreductase 2.72184445154e-05 0.000117093730731 36283755939.0 +UniRef50_P52993 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.00449089466026 0.0275654778858 9.31549240511e+12 +UniRef50_UPI0003B51A23 signal recognition particle protein Srp54 1.23536133716e-05 0.000247003871254 94731188589.4 +UniRef50_UPI00047B2FC0 iron reductase 8.87418479519e-06 0.000122480665198 45864330247.0 +UniRef50_UPI000470320D hypothetical protein 2.3833759762e-05 1.10598082532e-05 -5157000978.11 +UniRef50_L0MNT8 ATPase component of ABC transporters with duplicated ATPase domain 0.0039245509299 0.000862925374398 -1.23601580713e+12 +UniRef50_D5AV27 Secretion ATP binding protein, HlyB family 0.000459830275667 9.84936204108e-05 -1.45876041826e+11 +UniRef50_UPI0003605157 hypothetical protein 9.20175165826e-05 2.3036053264e-05 -27848663239.5 +UniRef50_W5X880 Aminomethyltransferase 1.87587613849e-05 2.91909208041e-05 4211590774.52 +UniRef50_R1ERY2 0.000105004041788 9.34768362209e-05 -4653674342.16 +UniRef50_Q189B8 Threonine tRNA ligase 0.00086835981142 0.000187014241432 -2.75067567655e+11 +UniRef50_Q3JS16 8.68209230342e-06 1.60820333817e-05 2987447020.79 +UniRef50_Q2FWP1 Phospholipase C 0.0125504210675 0.00157181178812 -4.43219928878e+12 +UniRef50_B3DRA9 Deoxyuridine 5 triphosphate nucleotidohydrolase 0.000248346045292 0.00358350861986 1.3464460584e+12 +UniRef50_UPI000369A6CD hypothetical protein 5.48605491096e-05 1.29697592159e-05 -16911825937.9 +UniRef50_A4EPM0 1.90082243898e-05 1.38740431123e-05 -2072731985.22 +UniRef50_UPI00046F0FC9 hypothetical protein 5.13585763074e-06 7.42031034759e-06 922261595.18 +UniRef50_Q8GCY1 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.7328607783e-05 1.94085025375e-05 839679035.57 +UniRef50_K0L524 Polysaccharide biosynthesis family protein 0.0158295947085 0.00243578174171 -5.40724665526e+12 +UniRef50_Q3ZZJ7 Malate dehydrogenase 3.88663222449e-05 2.65261064109e-05 -4981896563.66 +UniRef50_Q3JS13 2.94244353764e-05 0.000142421859985 45618446949.0 +UniRef50_L7WZJ1 0.000980448317277 0.00150979134947 2.13702277866e+11 +UniRef50_Q92ID7 NADH quinone oxidoreductase subunit C 1.445727806e-05 1.11769480991e-05 -1324309459.39 +UniRef50_V8N3A8 0.00140845618418 0.000984389017326 -1.71201119148e+11 +UniRef50_UPI000382F770 hypothetical protein M271_03505 9.89721543217e-06 9.41684294706e-06 -193932267.072 +UniRef50_Q5GX46 1.42913056773e-05 4.83795968982e-05 13761861476.3 +UniRef50_B9FN35 5.9303086031e-05 0.00013395176486 30136587685.6 +UniRef50_Q8CMV5 Phage infection protein 0.0100512320776 0.00453755703634 -2.22593827456e+12 +UniRef50_UPI0004788FBC cytochrome oxidase 3.68342006225e-05 5.17507288902e-05 6021985508.06 +UniRef50_P16858 Glyceraldehyde 3 phosphate dehydrogenase 9.94581501303e-06 1.94762918434e-05 3847570448.52 +UniRef50_Q9K105 Quinolinate synthase A 0.00454607893216 0.0115681059869 2.83487849196e+12 +UniRef50_U5MKN8 FAD dependent oxidoreductase 0.000281382129806 0.00115768630374 3.53774748479e+11 +UniRef50_A0A010YS39 0.000176552032803 4.83208576436e-05 -51768498985.2 +UniRef50_X1KP36 Marine sediment metagenome DNA, contig 0.00015240654761 0.000128188680922 -9777049968.59 +UniRef50_D9RNH9 Phage transcriptional regulator 0.0146249569535 0.00540219679646 -3.72334145139e+12 +UniRef50_R7DZG1 tRNA specific adenosine deaminase 0.0113757941654 0.000702438839085 -4.30896452203e+12 +UniRef50_UPI00047D8DA0 methionine aminopeptidase 1.84794880775e-05 1.15119403319e-05 -2812884526.32 +UniRef50_Q9PHC7 Oxygen dependent coproporphyrinogen III oxidase 0.00282907412536 0.00747902593523 1.87724260697e+12 +UniRef50_E6PZA5 0.000150935111838 0.000585036575305 1.75252087826e+11 +UniRef50_Q1LGM8 Metal dependent phosphohydrolase, HD subdomain protein 0.00567145664597 0.00137518481016 -1.7344576613e+12 +UniRef50_D8LRY0 2.83147233151e-05 2.45259925884e-05 -1529557087.32 +UniRef50_Q46907 Putative electron transfer flavoprotein subunit YgcQ 0.00380552662807 0.00301409908984 -3.19509009091e+11 +UniRef50_B5R7J9 HTH type transcriptional regulator MalT 0.00120192046374 0.000361605958218 -3.39245277698e+11 +UniRef50_A5IRR8 Bacteriocin associated integral membrane protein 0.00939900433724 0.00197587355792 -2.99680898767e+12 +UniRef50_V5XRA6 ABC superfamily ATP binding cassette transporter, substrate binding protein 1.97472293029e-05 1.38363358705e-05 -2386300213.48 +UniRef50_UPI00036AF6AD hypothetical protein 4.82770223987e-06 4.96316820766e-06 54689273.5512 +UniRef50_Q6F797 0.000130617989224 0.011371715601 4.53816904966e+12 +UniRef50_Q5WJ15 Lipoprotein 0.000101236584555 2.40701718564e-05 -31153027744.8 +UniRef50_Q8P151 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.00185627874013 0.00306741647844 4.88951167287e+11 +UniRef50_S5YEW5 Chaperone Hsp33 0.00904942233346 0.00129819060438 -3.12926736734e+12 +UniRef50_UPI00047E6CAE macrolide ABC transporter ATP binding protein 3.12193267595e-05 9.84274156444e-06 -8629989763.46 +UniRef50_Q7TVV6 2 isopropylmalate synthase 3.72458950938e-06 3.66251895615e-05 13282375976.8 +UniRef50_UPI00047CA452 metal dependent hydrolase 0.000122391363972 0.000351236130679 92387440560.7 +UniRef50_UPI0004728867 hypothetical protein 1.7830531794e-05 3.31557599866e-05 6186982683.05 +UniRef50_R4SLJ1 3.10032399295e-05 3.3987514177e-05 1204788134.88 +UniRef50_UPI00047EC453 hypothetical protein 1.6431706362e-05 2.4434974716e-05 3231017645.66 +UniRef50_W4HQ39 Fe3+ siderophore ABC transporter substrate binding protein 2.83947852055e-05 1.69525651657e-05 -4619364641.9 +UniRef50_P58497 Transcriptional regulator ModE 0.00205367374435 0.00077844823564 -5.14824186643e+11 +UniRef50_A5UJC2 Predicted phosphotransacetylase 0.000999181867712 0.00177456501948 3.1303169339e+11 +UniRef50_D8LEL7 1.09214037583e-05 1.82280582269e-05 2949786071.71 +UniRef50_F0Y2Z5 Expressed protein 0.00108323062375 0.00126328188023 72688901718.4 +UniRef50_UPI00047CBC3F cytochrome C 0.000158472636123 6.85953915688e-05 -36284546544.3 +UniRef50_A7HZN6 Chorismate synthase 5.13707075368e-06 0.00572225450633 2.30807046566e+12 +UniRef50_M4ZJ25 Integrase recombinase 0.000151398123869 0.000166219533874 5983585098.17 +UniRef50_B2HTD1 Transcriptional regulator 0.000201504976255 0.0134891538242 5.36438689768e+12 +UniRef50_Q98I01 UvrABC system protein B 0.0134467584416 0.00359611101608 -3.97682724672e+12 +UniRef50_S1SUV9 7.77703776834e-05 0.000135577964233 23337632068.9 +UniRef50_C9WZ56 Transcription repair coupling factor 2.79274467665e-05 0.00207656768196 8.27061202589e+11 +UniRef50_UPI0002FACF3D hypothetical protein 7.19241442319e-06 5.96148080713e-06 -496943006.058 +UniRef50_UPI00035CB657 hypothetical protein 4.14815990089e-05 1.63829130445e-05 -10132647519.3 +UniRef50_Q3J1W8 Chemotaxis histidine protein kinase, CheA3 0.00034031960082 0.000114103685255 -91326141095.0 +UniRef50_S5CIT2 Non ribosomal peptide synthetase modules related protein 0.000185715585998 0.00311355855516 1.18200613532e+12 +UniRef50_G4LFN6 0.000434064582521 0.000342066954679 -37140571297.7 +UniRef50_A0A022LJU5 0.000222568339476 0.000236326180691 5554209326.19 +UniRef50_D5ALC6 CTP pyrophosphohydrolase 0.0224016388816 0.00107356270921 -8.61040607572e+12 +UniRef50_K0L0Y0 Pyruvate oxidase 0.0242503836548 0.0068552419843 -7.02263215477e+12 +UniRef50_Q8CQL5 Poly alpha glucosyltransferase 0.0214837317088 0.00542878890006 -6.48157742818e+12 +UniRef50_P11954 L threonine dehydratase catabolic TdcB 0.00188099249666 0.00126193520902 -2.49921023707e+11 +UniRef50_X5P5H6 4.54986764438e-05 2.06118115195e-05 -10047132766.1 +UniRef50_B1IS55 UPF0442 protein YjjB 0.00612920046237 0.00272600035565 -1.37391364504e+12 +UniRef50_Q0C3I3 Translocator protein, LysE family 0.0182492552214 0.00532509509416 -5.21764204063e+12 +UniRef50_Q5HQY2 Glycosyl transferase, group 4 family protein 0.0196665062802 0.0068601348889 -5.17008928252e+12 +UniRef50_E6QHZ2 0.000143175330504 0.000112160150652 -12521208705.3 +UniRef50_A1VWN7 Transposase, IS4 family 0.0131852347128 0.0103757201209 -1.13423551737e+12 +UniRef50_B8DVE0 Ketol acid reductoisomerase 1.64523046513e-05 4.44007876821e-05 11283145566.0 +UniRef50_UPI00037C3339 hypothetical protein 1.65020479581e-05 2.21762074914e-05 2290727833.36 +UniRef50_A4WPY8 Short chain dehydrogenase reductase SDR 0.00619847451844 0.00279041621034 -1.37587496056e+12 +UniRef50_F7XAS6 Transcriptional regulator, LysR family 9.18555485599e-05 2.09308915746e-05 -28633154368.4 +UniRef50_A5USR6 DNA directed RNA polymerase subunit beta 4.59382771142e-06 1.67177307274e-06 -1179669315.28 +UniRef50_Q3HKI3 Possible virC1 gene, ATPase 0.0566327789512 0.00654130843002 -2.02225413409e+13 +UniRef50_C3K4R1 Glycerol 3 phosphate acyltransferase 0.000563739582841 0.000774448197163 85065653287.3 +UniRef50_D4J507 Predicted membrane protein 5.95558600485e-06 2.86308570196e-05 9154285165.5 +UniRef50_Q3J220 Phage terminase like protein, large subunit 0.0113337844865 0.00314495357313 -3.30593152798e+12 +UniRef50_Q168P3 Trk system potassium uptake protein 0.00681696365256 0.00151583404908 -2.1401310731e+12 +UniRef50_Q5ZUT5 N succinylglutamate 5 semialdehyde dehydrogenase 2.65038690196e-06 1.8718529159e-05 6486906207.43 +UniRef50_Q04539 Ribulose phosphate 3 epimerase, plasmid 0.00316506393136 0.00787401019878 1.90105939343e+12 +UniRef50_K8Z653 5.06874047772e-05 2.54037964104e-05 -10207302962.4 +UniRef50_B2A6Z3 Triosephosphate isomerase 1.27692272233e-05 1.91731593158e-05 2585345970.83 +UniRef50_Q8TX36 50S ribosomal protein L22P 0.00565523086522 0.000626113155893 -2.03031653347e+12 +UniRef50_A0A024JQQ2 Plasmid pSG, complete sequence 0.00022469404098 0.000234068722742 3784674067.6 +UniRef50_Q58369 0.00254339690377 0.00040514123313 -8.63240053585e+11 +UniRef50_C7PE04 Short chain dehydrogenase reductase SDR 0.000483956359216 0.00142074741331 3.78194044257e+11 +UniRef50_Q3IVA6 Mannose 1 phosphate guanylyltransferase mannose 6 phosphate isomerase, type 2 0.00712781743214 0.00102677966303 -2.46306381554e+12 +UniRef50_V4CH91 Chaperone fimC 0.00186700387678 0.00119737504261 -2.70337377624e+11 +UniRef50_A0A038GJ20 Lipoprotein 0.000903414068199 5.917841013e-05 -3.40828295099e+11 +UniRef50_J3CKR0 Pyruvate dehydrogenase complex, dehydrogenase component (Fragment) 5.21068644993e-05 6.42130621087e-05 4887420534.67 +UniRef50_A7HGV2 tRNA pseudouridine synthase D 1.37272865951e-05 4.95553554186e-05 14464231043.9 +UniRef50_V9GEA9 Flagellar hook length control protein FliK 4.90047625372e-06 9.8878361117e-05 37940025357.6 +UniRef50_UPI0002FF51AC hypothetical protein 3.66624381408e-06 0.000312330304995 1.24611469233e+11 +UniRef50_W4TUZ9 Mg Co Ni transporter MgtE 0.000310262456591 0.000686824645589 1.52022776636e+11 +UniRef50_UPI00035D28CB hypothetical protein 3.96874959184e-05 1.20749812276e-05 -11147511024.3 +UniRef50_UPI0003EC5005 PREDICTED 3.56294972962e-06 2.47518995909e-05 8554239076.66 +UniRef50_P58113 Pirin like protein CC_1473 0.00070424172541 0.000254583366547 -1.81532597402e+11 +UniRef50_E1VCL4 ABC type transport system permease protein 0.0172607301134 0.0046976799527 -5.07185751584e+12 +UniRef50_UPI0003D08670 PREDICTED 1.97428186396e-06 4.99305892421e-07 -595465899.701 +UniRef50_K2Q5M0 2.42734168175e-05 4.26319635052e-06 -8078371555.55 +UniRef50_U5BVI3 2.64603338135e-05 1.28029809849e-05 -5513640931.47 +UniRef50_UPI000248D343 extracellular ligand binding receptor 9.00717658194e-06 6.89026322649e-06 -854623899.043 +UniRef50_V2CGD9 D mannonate oxidoreductase 0.00145121432832 0.00178904638546 1.36386947133e+11 +UniRef50_C9XPK8 Padr family transcriptional regulator 9.69419217865e-05 2.64186208875e-05 -28471121991.1 +UniRef50_U4QEL4 2.13661743948e-05 3.65999645239e-06 -7148201314.58 +UniRef50_B3EFN5 Serine hydroxymethyltransferase 0.000123573740901 0.000163986582917 16315160243.2 +UniRef50_J6CMF8 Sugar ABC transporter permease 0.00100493325342 0.000161549120865 -3.404845238e+11 +UniRef50_I0Z434 3.84935452125e-06 4.74964340348e-06 363457669.543 +UniRef50_F0YNG2 2.32977092886e-06 4.73855360441e-05 18189565273.4 +UniRef50_UPI0003B55F2C LacI family transcriptional regulator 3.15155244928e-06 4.25142597342e-05 15891207965.7 +UniRef50_UPI00026263DB ABC transporter 6.18708900779e-06 1.32167763365e-05 2837971038.56 +UniRef50_Q55154 Chaperone protein dnaK1 0.00857518118047 0.000755687646451 -3.15682549566e+12 +UniRef50_Y7D100 0.000320255452974 5.85959876758e-05 -1.05635137064e+11 +UniRef50_F4H2Z9 1.57526665365e-05 3.66514024333e-05 8437076137.87 +UniRef50_B4RA78 Regulatory protein, TetR 1.63042761443e-05 0.000623142673187 2.44988107631e+11 +UniRef50_W8Z0S3 2.1647552602e-05 0.000105369084 33799409604.1 +UniRef50_K0VXX1 1.74577980442e-05 1.77802341338e-05 130171406.107 +UniRef50_E4N9L3 3.22006713017e-05 0.000229668080055 79720016111.2 +UniRef50_B9EAC4 0.0187428724393 0.00535751852654 -5.40383163136e+12 +UniRef50_UPI000473EAD9 hypothetical protein, partial 1.99496188385e-05 2.75192953128e-05 3055971283.05 +UniRef50_M9VI34 ATP dependent dethiobiotin synthetase BioD 0.000292624797564 0.00388654151163 1.45090827979e+12 +UniRef50_Q5LY30 Glycoprotein endopeptidase 0.000174224302552 0.000288583099537 46168049683.1 +UniRef50_A3PS51 0.00158365114701 0.000378809105071 -4.86409517406e+11 +UniRef50_B8DNL4 ATP dependent Clp protease proteolytic subunit 7.52023524109e-06 0.000185035963125 71665277709.7 +UniRef50_R9ZDX0 GntR family transcriptional regulator 0.000892893053777 0.000153411275426 -2.98537868382e+11 +UniRef50_B9KHI6 2.46807189712e-05 8.54770687296e-05 24544232452.6 +UniRef50_C1D0Z6 Thymidine kinase 1.85027076558e-05 6.01672778813e-05 16820498281.8 +UniRef50_Q8DCG0 Ribosomal large subunit pseudouridine synthase A 0.00172241561359 2.32006393355e-05 -6.85993936817e+11 +UniRef50_Q97EX0 Ribosomal RNA small subunit methyltransferase A 0.000427391612785 0.001972947889 6.23960034818e+11 +UniRef50_P65691 ATP dependent 6 phosphofructokinase 4.14261482839e-06 8.82903000021e-06 1891963313.64 +UniRef50_Q9LXS7 Citrate synthase 1, peroxisomal 1.03834085489e-05 5.07715884461e-05 16305203843.2 +UniRef50_C4ZHB9 Glutamyl tRNA amidotransferase subunit A 0.0189270463726 0.0112317759779 -3.10667508993e+12 +UniRef50_Q3JWI9 PilL 0.000105698976443 6.4300275995e-05 -16713163390.0 +UniRef50_B0V8W4 0.000261118127623 0.00607928283919 2.34886449097e+12 +UniRef50_UPI000365191C hypothetical protein 2.97169638099e-06 2.46599658763e-05 8755820540.25 +UniRef50_Q3J7E7 Malate dehydrogenase 2.95486080335e-05 2.14582199627e-05 -3266188944.41 +UniRef50_C3AWX8 0.000259143699447 0.00158410802146 5.34904355936e+11 +UniRef50_UPI00046718DB oxidoreductase, partial 5.60600943504e-06 2.11351409771e-05 6269300967.42 +UniRef50_UPI000463A2AA 3 hydroxybutyrate dehydrogenase 6.0509690324e-06 0.000149127235823 57761644646.8 +UniRef50_C6WBN9 PE PGRS family protein 4.70509143144e-05 0.000483523906529 1.76209503083e+11 +UniRef50_Q11RE2 ATP dependent 6 phosphofructokinase 1.69726748625e-05 1.73786020976e-05 163877806.097 +UniRef50_UPI0003B54089 hypothetical protein 9.62280295139e-06 2.2257236241e-06 -2986291696.8 +UniRef50_V3ARY1 Ornithine decarboxylase, inducible 0.000101748244975 0.000266729212392 66604841090.4 +UniRef50_Q2IEZ0 Aspartyl Asparaginyl beta hydroxylase 0.00053992486904 0.000535041063585 -1971652193.22 +UniRef50_Q97BF6 Potassium transporting ATPase B chain 6.82535467285e-06 0.0010182375395 4.08319510439e+11 +UniRef50_UPI0003D06760 50S ribosomal protein L11 4.89106020093e-05 8.33813626971e-05 13916269093.5 +UniRef50_A8A6Z4 Protein FdhE 0.00365570637185 0.0016458555151 -8.11401454513e+11 +UniRef50_B9KKX7 0.00255289836761 0.00188606052658 -2.69210619444e+11 +UniRef50_C0MHE9 2.15802408858e-05 3.30846091203e-05 4644454630.74 +UniRef50_Q3HKD5 0.0045984833639 0.000361668545562 -1.71045413373e+12 +UniRef50_Q3HKD7 0.0260454347429 0.010919979027 -6.10633208272e+12 +UniRef50_Q3HKD6 0.00238771152851 0.000597779984952 -7.22617329065e+11 +UniRef50_UPI00036D0132 hypothetical protein 0.000503954692761 3.99122617737e-05 -1.8733962383e+11 +UniRef50_P0AEQ8 Glutamine transport system permease protein GlnP 0.0019764830774 0.000913350634632 -4.29199613248e+11 +UniRef50_Q9I1L9 Dihydrolipoyl dehydrogenase 0.000240573625513 0.000281975431133 16714416986.1 +UniRef50_UPI00047BC897 acyl CoA dehydrogenase 5.12581400826e-06 1.76657633898e-05 5062531447.79 +UniRef50_G8V322 0.0121288157683 0.00279890077832 -3.76660117239e+12 +UniRef50_UPI000465AF35 aldehyde oxidoreductase 0.000177978829675 0.00113217893838 3.85222293236e+11 +UniRef50_D0LSQ0 3 demethylubiquinone 9 3 methyltransferase 0.00468811436765 0.000389428622235 -1.73543218623e+12 +UniRef50_Q8DSD9 0.00782316904708 0.000562973693485 -2.93102995686e+12 +UniRef50_S1STI3 Carbonic anhydrase, family 3 8.81965471089e-05 4.05999959486e-05 -19215311778.8 +UniRef50_U5MMX2 Type IV pilus assembly protein PilO 0.000324297545183 0.000398976834538 30148945530.5 +UniRef50_Q3JB01 0.00033137551243 0.000772464371747 1.78072985275e+11 +UniRef50_Q1GMD1 Probable chemoreceptor glutamine deamidase CheD 1 0.000256468209586 4.12357494991e-05 -86891985336.4 +UniRef50_I3X6Z9 4.72290077459e-06 7.03340448565e-06 932778701.224 +UniRef50_UPI00037E93F7 hypothetical protein 1.9053341368e-05 5.74502777836e-06 -5372729507.49 +UniRef50_P20751 Probable adenosine monophosphate protein transferase fic 0.0064925117853 0.00297927199182 -1.41833801693e+12 +UniRef50_UPI000378B4BF hypothetical protein 1.61093204591e-05 4.11783730662e-05 10120684169.4 +UniRef50_UPI0004671E08 hypothetical protein 3.98256484973e-06 8.02099902009e-06 1630365431.73 +UniRef50_C6SQC4 0.00471912246437 0.00210114892954 -1.05690804216e+12 +UniRef50_UPI0003761AFD hypothetical protein, partial 1.79518267396e-06 3.08211789454e-06 519551541.019 +UniRef50_S5XPF3 ATP dependent RNA helicase RhlE 0.00238188739925 0.00102663283228 -5.4713289953e+11 +UniRef50_P31802 Nitrate nitrite response regulator protein NarP 0.00258951160052 0.00164623828863 -3.80811011275e+11 +UniRef50_O07344 Signal peptidase I 0.000193252212719 0.00218529483154 8.04212050329e+11 +UniRef50_UPI0000DB7F4F PREDICTED 1.51112903266e-05 4.55145781205e-05 12274180372.7 +UniRef50_B4FRS7 2.95934263712e-05 7.25722517833e-05 17351079228.4 +UniRef50_Q8PCH1 tRNA dihydrouridine synthase B 8.43526520771e-06 8.76719371208e-06 134003610.435 +UniRef50_G6CTE1 1.05189603701e-05 2.7064179549e-06 -3154019243.69 +UniRef50_UPI00026C71CA TetR family transcriptional regulator 0.000326855270059 0.000108866214099 -88004856917.6 +UniRef50_UPI00024870DD phosphoglyceromutase, partial 7.39028968022e-05 6.16826950046e-05 -4933445424.43 +UniRef50_R7EC63 3.35132358362e-06 7.95469205052e-06 1858436339.77 +UniRef50_B7MQ51 2.98885143182e-06 1.65944467644e-05 5492745795.2 +UniRef50_F0T772 MotA TolQ ExbB proton channel family protein 6.14469488097e-05 2.19867770398e-05 -15930555574.3 +UniRef50_A6LWJ1 DNA mismatch repair protein MutL 5.95716973486e-05 0.00210631034731 8.26293509296e+11 +UniRef50_R6EG03 Serine type site specific recombinase 1.14888290588e-05 0.000137141288755 50727439908.3 +UniRef50_B5BFR1 Possible oxygen independent coproporphyrinogen III oxidase 0.00191458571656 0.000444358389305 -5.93548813729e+11 +UniRef50_Q9I7C2 DNA gyrase subunit B 0.00217107276943 0.00050014615494 -6.74573578845e+11 +UniRef50_Q9I656 0.00104503379861 0.00042825427429 -2.49001462704e+11 +UniRef50_U6JZT0 9.44846807773e-05 4.56199500503e-06 -36302891721.7 +UniRef50_UPI0003B550BB spermidine putrescine ABC transporter permease 8.2677794421e-06 0.000152461902994 58212937138.8 +UniRef50_D6SHJ8 Bacterial membrane protein YfhO 0.00721488859767 0.00345322859598 -1.51862830344e+12 +UniRef50_UPI00036502F5 hypothetical protein 2.89558163087e-05 1.54485148e-05 -5453063372.29 +UniRef50_Q0AAU9 Elongation factor P 1.13675924802e-05 3.66573437742e-05 10209782937.5 +UniRef50_Q82HL5 Imidazolonepropionase 0.000479637111068 0.00650173094073 2.43119317844e+12 +UniRef50_B7V5F2 Alginate biosynthesis protein AlgZ FimS 0.000692504636356 0.000244400031881 -1.80905327688e+11 +UniRef50_Q9RTK1 tRNA specific 2 thiouridylase MnmA 0.000371026706344 0.0396619940964 1.58622456898e+13 +UniRef50_UPI0003AA521B molybdenum ABC transporter permease 3.15030355198e-05 2.56311376953e-05 -2370557208.04 +UniRef50_UPI0003B5A522 dihydrofolate reductase 1.2781563439e-05 2.49790663612e-05 4924281609.88 +UniRef50_R9ZHA8 Histidine kinase 0.000303084034128 0.000706143032099 1.62719863571e+11 +UniRef50_A5G1D5 Uroporphyrinogen decarboxylase 7.4579052529e-06 2.18666267354e-05 5816977677.38 +UniRef50_A0A037F2E9 0.000224662212355 1.37740417588e-05 -85138142358.5 +UniRef50_UPI0003B3B50B succinate dehydrogenase 7.50228095805e-06 1.36553136525e-05 2484054804.95 +UniRef50_Q84WV0 Serine hydroxymethyltransferase 7 2.39297642032e-06 3.30131725703e-05 12361748937.8 +UniRef50_C0QJ54 Dihydroorotase 4.29070663979e-06 6.85704994891e-06 1036064286.47 +UniRef50_Q634K9 0.000782375384975 0.000608900423076 -70033970895.8 +UniRef50_UPI0003747F78 hypothetical protein 8.72549394864e-05 2.09678116673e-05 -26760926935.1 +UniRef50_UPI0003B369AA ribonuclease III 2.15714979479e-05 6.92094439128e-05 19232023369.4 +UniRef50_UPI0003AEA2A6 PREDICTED 1.27862461754e-05 3.56438429067e-06 -3722978807.84 +UniRef50_P33647 mRNA interferase ChpB 0.00169029656208 0.000513594269898 -4.75049155114e+11 +UniRef50_UPI0001BC2B50 GntR family transcriptional regulator 7.41122591194e-05 5.16994508947e-05 -9048325716.4 +UniRef50_L1K4A8 0.000468524822607 0.000411408736575 -23058464824.3 +UniRef50_B4RJX0 DNA polymerase III subunit delta 0.000533227846271 0.00414367333195 1.45758114772e+12 +UniRef50_Q04444 Protoheme IX farnesyltransferase 3.05973843096e-06 3.94630662121e-05 14696470144.3 +UniRef50_K2GS32 7.00306280245e-05 1.12918282229e-05 -23713574286.0 +UniRef50_D5AUR2 6.45113215985e-06 4.34250295474e-06 -851279485.893 +UniRef50_W8RUE5 Cytochrome B561 5.69474524575e-05 1.72135854189e-05 -16041049712.9 +UniRef50_Q9HXX3 Probable cysteine desulfurase 0.000191055302585 0.000555437177595 1.4710543441e+11 +UniRef50_U3SRQ3 Cell shape determining protein MreC 0.00590628413574 0.00143480373981 -1.80519150707e+12 +UniRef50_T2E6Y0 Lysine arginine ornithine binding periplasmic family protein 0.000996128663077 0.00347257153372 9.99770376249e+11 +UniRef50_U6IEY8 Collagen alpha chain 4.12209537743e-05 1.53375081918e-05 -10449464607.3 +UniRef50_A5WGA7 Penicillin binding protein 6, Serine peptidase, MEROPS family S11 0.00253444265998 0.00589009274925 1.3547171195e+12 +UniRef50_UPI00046F5711 alpha glucosidase, partial 3.20938547294e-05 7.47518147308e-06 -9938860498.66 +UniRef50_A9GFW6 Histidine ammonia lyase 3.70651595586e-06 7.31527232869e-05 28036286100.3 +UniRef50_A6QDZ2 Phage tape measure protein 0.000713707037488 0.000122855096404 -2.38534179184e+11 +UniRef50_UPI0004672C36 hypothetical protein, partial 0.000109815672558 8.85790244115e-06 -40757890687.4 +UniRef50_UPI00046DEE74 hypothetical protein 1.30223881677e-06 7.59352792985e-05 30130274292.9 +UniRef50_K7YHX4 Receptor ligand binding region family protein 0.00482522689976 0.00061899871782 -1.69810593327e+12 +UniRef50_A3PQ86 Extracellular solute binding protein, family 1 0.00894556284692 0.00186170050224 -2.85984215731e+12 +UniRef50_UPI0003B79FBA O sialoglycoprotein endopeptidase 6.09540327431e-06 9.00097620862e-06 1173015448.97 +UniRef50_A8LK13 5.72660915327e-05 2.06182187285e-05 -14795195971.0 +UniRef50_A5N391 0.000145403247892 0.000463665195719 1.28486253851e+11 +UniRef50_E5QS55 2.84210257288e-05 0.000160734101085 53416412185.2 +UniRef50_B4UIZ5 Putative 3 methyladenine DNA glycosylase 2.4110259963e-05 1.05862225026e-05 -5459819881.37 +UniRef50_Q73CS7 Tn554 related, transposase B 0.00877647351416 0.00397484052538 -1.93847816023e+12 +UniRef50_I1ZP64 0.00368407755186 0.00717385535531 1.40886612364e+12 +UniRef50_UPI0003B53A62 metallophosphoesterase 4.06642450595e-06 6.78720535925e-05 25759115445.3 +UniRef50_UPI00040A50B2 hypothetical protein 2.04076026085e-06 1.08563291311e-05 3558953332.11 +UniRef50_D9QKP9 Flagellar FlaF family protein 1.1941354019e-05 2.42499876586e-05 4969146444.23 +UniRef50_E4R8G4 2.37351956827e-05 5.98915899265e-05 14596780045.1 +UniRef50_UPI000288FEC4 cystathionine beta lyase 1.68778597966e-05 3.18481820648e-05 6043702806.18 +UniRef50_Q9ZMV7 DNA topoisomerase 1 0.000307622559545 0.00372366864282 1.37909972342e+12 +UniRef50_B7GIC0 N acetyldiaminopimelate deacetylase 3.02968451742e-05 0.000228337658653 79951506635.5 +UniRef50_A9BPD7 0.000308856244385 7.25440392157e-05 -95402137103.6 +UniRef50_A4WY56 0.00227377594921 0.000231620220955 -8.24443327567e+11 +UniRef50_S5V0B7 0.000548360592339 0.00112599471038 2.33197981821e+11 +UniRef50_Q7MV04 Chorismate synthase 4.62495944522e-06 0.0020274188357 8.16626710314e+11 +UniRef50_Q887Z4 Probable malate 0.009019120526 0.00504077039872 -1.60610876623e+12 +UniRef50_S9VRA1 7.65580163365e-05 2.65704847331e-05 -20180579924.3 +UniRef50_UPI00047C4FEB RNA methyltransferase 1.28917000836e-05 2.16946603983e-05 3553863103.52 +UniRef50_D3QEM5 8.26519881161e-05 3.78906828682e-05 -18070688211.6 +UniRef50_A0A024KA74 4.60954557117e-06 0.000112549493657 43576681614.4 +UniRef50_A6LZ43 Binding protein dependent transport systems inner membrane component 0.000188428946181 0.000852644008553 2.68151771515e+11 +UniRef50_UPI0002376815 prolyl aminopeptidase, partial 1.34549942907e-05 3.48458661669e-05 8635757471.94 +UniRef50_C0BAK5 Excinuclease ABC, C subunit 7.87582618192e-06 3.13096469214e-05 9460520997.85 +UniRef50_Q21LN7 tRNA 2 O) methyltransferase 0.0020374873848 5.83726069246e-05 -7.989929223e+11 +UniRef50_A4WQR0 MscS Mechanosensitive ion channel 0.00257080646298 0.000913900562882 -6.68913244392e+11 +UniRef50_UPI00035E0303 hypothetical protein 5.52469403818e-06 1.15684635595e-05 2439943921.15 +UniRef50_U5MRV9 Serine threonine protein kinase 0.000442783635796 0.00157387420987 4.56635144794e+11 +UniRef50_P13982 Carbamate kinase 0.000689538988987 0.000191764094291 -2.00957833374e+11 +UniRef50_UPI0003815DEC hypothetical protein 0.000730026997077 0.000699929067698 -12150903433.4 +UniRef50_Q2IPX3 3.09563707558e-05 0.000506392216764 1.91939285287e+11 +UniRef50_S5D154 RNA 3 terminal phosphate cyclase 0.000183245625651 0.00520953956005 2.02917654088e+12 +UniRef50_E6NJU4 Single stranded DNA specific exonuclease 7.31089713695e-05 0.00253146614321 9.92468957707e+11 +UniRef50_UPI00042B0FB5 Enoyl CoA hydratase isomerase D isoform 1 4.2227885151e-05 5.28025992827e-05 4269141861.3 +UniRef50_X2HZR9 Glycosyltransferase 9 family protein 0.0004950643619 0.00355227571611 1.2342337399e+12 +UniRef50_P72794 Phosphoadenosine phosphosulfate reductase 9.42903920079e-06 1.4621505404e-05 2096262324.96 +UniRef50_P21826 Malate synthase 2, glyoxysomal 1.16051111112e-05 1.01791287612e-05 -575686573.466 +UniRef50_Q8CRL3 0.00922242905109 0.00170711251666 -3.03402550825e+12 +UniRef50_C5WHP5 0.00644342984872 0.000663592958822 -2.33339107903e+12 +UniRef50_O87016 tRNA pseudouridine synthase A 0.00071564353676 0.00133223785409 2.48926692369e+11 +UniRef50_J3MER7 4.75027475239e-06 8.29409629013e-05 31566540313.4 +UniRef50_P0AGG3 Acyl CoA thioesterase 2 0.00406027738126 0.000623364651693 -1.38752384459e+12 +UniRef50_UPI0003AF73D9 PREDICTED 9.00582863081e-05 5.97726284432e-05 -12226691726.9 +UniRef50_R0P9K1 D alanyl D alanine carboxypeptidase family protein 0.000140852980911 0.00220517238216 8.33391074332e+11 +UniRef50_B9DPV8 Heme A synthase 0.00863557309472 0.00329089091725 -2.15771378167e+12 +UniRef50_UPI0004705E30 hypothetical protein 4.97767935597e-05 0.000133443503908 33777277673.6 +UniRef50_Q8FFW9 0.00317462678592 0.000446666953163 -1.10131086032e+12 +UniRef50_P39282 Inner membrane transporter YjeM 0.00191756109349 0.00241504385503 2.00839895634e+11 +UniRef50_G2L2S5 Usher CupC3 0.00050693542739 0.000228441714788 -1.1243132928e+11 +UniRef50_U5MXP3 0.00055238540274 0.00120948821241 2.65280467822e+11 +UniRef50_W7VSI1 4.41215866739e-05 1.16185939305e-05 -13121857027.1 +UniRef50_UPI00036404C4 hypothetical protein, partial 6.38729393015e-05 8.33743423042e-05 7872955701.32 +UniRef50_B7GX48 Dihydroorotase 0.000221416544302 0.00704194953859 2.75353286715e+12 +UniRef50_UPI00034DB867 hypothetical protein 3.66432003638e-05 2.86614895778e-05 -3222314590.91 +UniRef50_Q3IV31 Two component transcriptional regulator, LuxR family 0.00824173001267 0.00271683408625 -2.23046828359e+12 +UniRef50_W5VEC3 0.000287040968371 0.000425847963751 56038087388.3 +UniRef50_X5QPT7 Phosphatase 5.69643832137e-06 1.13191411435e-05 2269954127.62 +UniRef50_B7N5L4 CinA like protein 0.00303256945269 0.00233202738417 -2.82817429679e+11 +UniRef50_F2N5L7 Membrane protein 4.32448175698e-05 5.57853915734e-05 5062783615.4 +UniRef50_UPI000380F219 hypothetical protein 1.69047544956e-05 2.25927924875e-05 2296330737.41 +UniRef50_B9E6T3 Phosphate specific transport system accessory protein PhoU 0.0159093777712 0.00263858811801 -5.3575806339e+12 +UniRef50_UPI00029A1B88 putative beta carotene desaturase methylase 8.84732786372e-05 4.29248449696e-06 -33984819608.9 +UniRef50_UPI0003B30D3A ABC transporter permease 7.018336314e-06 9.53851644773e-06 1017427646.07 +UniRef50_K2XX98 Tryptophanase 0.000308571653009 0.00107200723931 3.08208314598e+11 +UniRef50_UPI000366A6AA hypothetical protein 6.63451302619e-06 2.78979366778e-05 8584305059.7 +UniRef50_A1K1U7 Lipoyl synthase 4.81334664778e-06 9.79687824816e-06 2011912861.88 +UniRef50_UPI0002627F17 acetolactate synthase 4.02764102318e-05 9.86499994125e-05 23566134276.7 +UniRef50_R0ZN74 Putative identified by MetaGeneAnnotator 9.25287279381e-06 0.00010669999783 39340600187.8 +UniRef50_P22609 Type 4 fimbrial assembly protein PilC 0.000411202888168 0.000183236838799 -92032691588.3 +UniRef50_Q1CUW0 Phosphate acyltransferase 0.000122693170804 0.00492645331283 1.9393369181e+12 +UniRef50_Q9K907 Bis tetraphosphatase PrpE [asymmetrical] 3.46232294946e-05 0.000399221006554 1.47192596717e+11 +UniRef50_UPI00047C7069 hypothetical protein 6.73192233813e-06 1.02947824257e-05 1438370338.56 +UniRef50_UPI000463DC0E exodeoxyribonuclease III 7.48213360561e-05 1.62394806621e-05 -23650213902.8 +UniRef50_D4GSF3 SAMP activating enzyme E1 2.85189236737e-05 7.03512615249e-05 16888228131.0 +UniRef50_K0DUB4 Guanine deaminase 0.00017799278945 0.000347750396965 68533229313.9 +UniRef50_A5P853 3.17531240605e-05 4.11507379255e-05 3793932038.99 +UniRef50_A8LKM9 Transcriptional regulator 0.00470221180881 0.000861283188269 -1.55063001761e+12 +UniRef50_Q469F5 Lon protease 0.000511577850277 0.00135075045631 3.38784278861e+11 +UniRef50_J7M386 Mevalonate kinase 0.000394175755734 0.0011527672651 3.06252701296e+11 +UniRef50_Q9KPZ7 Copper exporting P type ATPase A 5.23351227837e-06 5.80594491628e-05 21326478967.4 +UniRef50_P25907 0.00259447348708 0.00195984435 -2.56207570414e+11 +UniRef50_A0A024EDR3 Malonate decarboxylase, alpha subunit 0.00107089900933 0.00104260521206 -11422553161.8 +UniRef50_P24171 Peptidyl dipeptidase dcp 0.00253856556398 0.000811116592989 -6.97392347771e+11 +UniRef50_I3X5Y9 Transposase IS4 family protein 3.40991223193e-05 1.3985250459e-05 -8120216894.97 +UniRef50_N4R2H6 Type F conjugative transfer system protein TraW 0.0001101126364 4.46651370877e-05 -26421958603.5 +UniRef50_Q1J163 Elongation factor P 1.39397354038e-05 0.00120579436193 4.81166338431e+11 +UniRef50_Q27I85 PSQ10.3c 4.55029082807e-05 5.63500747548e-05 4379134215.3 +UniRef50_UPI00037303EC hypothetical protein 2.03606793825e-05 1.64631278185e-05 -1573489394.72 +UniRef50_H6N2J3 4.02053109194e-07 3.62338438668e-06 1300490966.9 +UniRef50_UPI000465CD92 membrane protein 8.78865920273e-06 1.40831536346e-05 2137452372.9 +UniRef50_D6A1D4 5.99844134442e-05 0.00112535108184 4.30101597552e+11 +UniRef50_D2Q8M6 Sugar binding lipoprotein of ABC transporter system 0.00086109359777 0.00442880096515 1.4403272449e+12 +UniRef50_Q6E7F4 dTDP glucose 4,6 dehydratase 0.00333201274394 0.000694910024425 -1.06463072876e+12 +UniRef50_UPI00037948E9 hypothetical protein 1.22752950701e-05 1.73756854612e-05 2059090189.72 +UniRef50_UPI0003708B64 hypothetical protein 1.34487425792e-05 6.38773750785e-06 -2850614395.58 +UniRef50_P0AAS1 Inner membrane protein YlaC 0.00680536327058 0.00149022322971 -2.1457872586e+12 +UniRef50_UPI0003032198 hypothetical protein 1.03384040464e-05 1.27821040311e-05 986551671.394 +UniRef50_UPI00046685FF hypothetical protein, partial 0.000199370708951 0.000534431258114 1.35268055352e+11 +UniRef50_UPI000377B254 hypothetical protein 4.00077514755e-06 1.06797024305e-05 2696364903.78 +UniRef50_A0A011MUR4 Inner membrane protein YjcH 0.000159064985804 5.89671630859e-05 -40410719369.7 +UniRef50_A5UN55 DNA directed RNA polymerase subunit D 0.00387161209938 0.00120422719843 -1.07685601701e+12 +UniRef50_F0KJH6 cAMP phosphodiesterase, heme regulated 0.000103515353427 0.0033646703999 1.31656831113e+12 +UniRef50_P39795 Trehalose 6 phosphate hydrolase 0.00251843938048 0.00237736078611 -56955159776.2 +UniRef50_Q7NIG8 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.02649468004e-05 5.84977298898e-05 11397920988.4 +UniRef50_UPI0002E68AF4 hypothetical protein 0.000346148054217 0.000144392531399 -81451180380.3 +UniRef50_Q7UGJ1 Ribosome binding ATPase YchF 0.00152535588943 0.007605092871 2.45446442622e+12 +UniRef50_V5SST6 Transcriptional regulator 0.000371297693954 0.000368378426439 -1178544119.25 +UniRef50_Q52671 Sarcosine oxidase subunit beta 0.00981127435283 0.0011702325299 -3.48849462142e+12 +UniRef50_V6JTT6 Membrane protein 4.82578932584e-05 2.72768795513e-05 -8470292699.55 +UniRef50_UPI00016C3AF7 aspartyl glutamyl tRNA amidotransferase subunit B 1.14223826312e-05 6.11991631173e-06 -2140670721.75 +UniRef50_T1A5Q2 Protein containing DUF28 6.74169060459e-05 5.27993040976e-05 -5901305284.68 +UniRef50_P0C652 Insertion element IS1 protein InsA 0.000962480048154 0.0039818918867 1.21897361157e+12 +UniRef50_UPI000362D518 hypothetical protein 2.60551511227e-06 2.92861738016e-06 130440350.458 +UniRef50_UPI0003C1AD28 0.00059129125796 8.39528444824e-05 -2.04818743264e+11 +UniRef50_Q7VJN5 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.000583297969285 0.00214077287321 6.28771731083e+11 +UniRef50_UPI00047D0FD3 isopentenyl diphosphate delta isomerase 6.96049288192e-05 1.67735712418e-05 -21328667367.7 +UniRef50_Y7FMH1 3.24643977845e-05 5.21538458851e-05 7948871814.91 +UniRef50_A0A053ZV58 PE PGRS family protein PE_PGRS6 4.96421480445e-06 4.44829697082e-05 15954206304.3 +UniRef50_Q5M2U6 Ribosomal RNA small subunit methyltransferase H 0.0261936059268 0.0148163068336 -4.59315525908e+12 +UniRef50_T0DA68 1.33509628063e-05 0.000119634322249 42907896450.6 +UniRef50_UPI00031299A3 putrescine spermidine ABC transporter substrate binding protein 2.56698841095e-05 0.000119916594443 38048553498.8 +UniRef50_T1XR51 SAM dependent methyltransferase, putative 0.0215953101397 0.00581570547797 -6.37042003945e+12 +UniRef50_UPI00040C571B hypothetical protein 3.87006090364e-06 4.21535806713e-05 15455526721.8 +UniRef50_Q51576 0.000306755112133 0.000635895150675 1.32877872562e+11 +UniRef50_J0GJ57 LPXTG motif cell wall anchor domain protein 0.00189267875781 0.000251690373754 -6.62487147837e+11 +UniRef50_A0A024JCU6 Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family 3.39513678557e-06 0.00012358305741 48521338427.5 +UniRef50_M4TWT1 2.61934727096e-06 4.8525075276e-06 901554199.564 +UniRef50_UPI00036D292E hypothetical protein 5.79997633727e-06 5.64233435913e-06 -63642001.0597 +UniRef50_U5MPM6 Anti sigma factor N terminus 0.000210801323136 0.00120054699694 3.9957247406e+11 +UniRef50_UPI000360F857 hypothetical protein 5.67990682454e-06 1.61684579395e-05 4234356794.12 +UniRef50_Q8FIR3 N methyl L tryptophan oxidase 0.00295445320372 0.0012591604561 -6.84410485796e+11 +UniRef50_M9SB66 0.000402966650976 0.000256425503788 -59160459381.9 +UniRef50_L0Q2L3 9.03414029288e-05 0.000978135264835 3.58413276507e+11 +UniRef50_P77610 L asparagine permease 0.00353882579063 0.000503036631673 -1.22558533679e+12 +UniRef50_V5SZ20 Glycosyl transferase 0.000730048215693 0.000595999793308 -54116993075.9 +UniRef50_Q9CEG1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.00657987225709 0.00708030271549 2.02029917028e+11 +UniRef50_UPI00041A37DE hypothetical protein 3.58829873669e-05 1.99106867756e-05 -6448213750.88 +UniRef50_C7MGE6 0.0171046538492 0.0034918991815 -5.49563610664e+12 +UniRef50_P0CK95 Putative lipoprotein AcfD homolog 0.00241277144926 0.000627983835345 -7.20540661542e+11 +UniRef50_Q6A8C8 ATP synthase epsilon chain 0.000516515137485 0.0163357137973 6.38640462236e+12 +UniRef50_UPI0003B78686 polyamine ABC transporter permease, partial 1.24421524914e-05 7.13375843667e-05 23776808576.3 +UniRef50_T2E3D9 Cytochrome c oxidase accessory protein CcoG 0.000494445875905 0.00110566285469 2.46755794811e+11 +UniRef50_Q5LNK3 Holo [acyl carrier protein] synthase 0.00506694829474 0.000542445840392 -1.82659716271e+12 +UniRef50_Q8K9K4 Flagellar basal body rod protein FlgG 0.0164506244147 0.00282874350327 -5.49932048321e+12 +UniRef50_T0ND38 1.13494375483e-05 9.92837658123e-06 -573699750.785 +UniRef50_Q46812 Protein SsnA 0.00863524225922 0.00249311360445 -2.47965271033e+12 +UniRef50_F3KHX6 ABC type transport system involved in Fe S cluster assembly, ATPase component 1.8217743079e-05 3.91352128767e-05 8444639243.55 +UniRef50_D8IGI0 Phosphoribosylaminoimidazole carboxylase ATPase subunit 0.0102286176828 0.00637511876492 -1.5557048009e+12 +UniRef50_UPI0002192F4A ABC transporter ATP binding protein 2.66426804626e-05 5.88687211286e-06 -8379374533.18 +UniRef50_N6A660 0.000300771955137 0.000153328824921 -59524600998.9 +UniRef50_UPI000300B5EF pyrroline 5 carboxylate dehydrogenase 2.16460799875e-05 6.55090618321e-06 -6094106903.41 +UniRef50_K6TZB8 0.000524286095625 0.00481154565986 1.73081929667e+12 +UniRef50_UPI0004765628 NADH quinone oxidoreductase subunit K 8.91613713091e-05 8.79816556777e-05 -476265677.135 +UniRef50_UPI000289CB7D alkyl hydroperoxide reductase thiol specific antioxidant Mal allergen 1.59752251034e-05 0.000423934124494 1.64698013903e+11 +UniRef50_Q9RFD3 Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.0105755466464 0.002455438698 -3.2781872237e+12 +UniRef50_F0XYR5 1.65381464035e-05 0.000186891721937 68773828916.1 +UniRef50_UPI0003775FD0 hypothetical protein 5.23622831573e-05 4.30903426307e-05 -3743196170.09 +UniRef50_E6RPQ3 6.58664692817e-05 2.76820334873e-05 -15415525305.9 +UniRef50_B6IPE0 Probable transaldolase 0.0139966823341 0.0141365417627 56462967594.0 +UniRef50_D9STR3 0.000343710519528 0.000558198075654 86591258466.4 +UniRef50_A6V5X2 Cyclic diguanylate phosphodiesterase domain protein 0.000967226900584 0.000300093864815 -2.69329793183e+11 +UniRef50_UPI000465C5E8 peptide ABC transporter permease 1.80974435753e-05 2.11736782479e-05 1241913686.97 +UniRef50_UPI000380077B hypothetical protein 1.26083364399e-05 1.69512366835e-05 1753282121.72 +UniRef50_UPI00029CD1FE molybdopterin biosynthesis protein, partial 4.87456387146e-06 1.61889865377e-05 4567771273.92 +UniRef50_C1CVF4 DNA gyrase subunit A 0.000159190540286 0.0508022764706 2.04452352506e+13 +UniRef50_UPI00024851F4 hemolysin type calcium binding protein, partial 5.20484161919e-05 2.98778123165e-05 -8950544848.4 +UniRef50_A0A017XC98 0.0116446538598 0.00255918406452 -3.66791564761e+12 +UniRef50_UPI0004704CFF cation 1.42576596603e-05 4.24030823681e-05 11362652530.3 +UniRef50_M5FJL9 3.44896130893e-05 0.000987583848416 3.84775838583e+11 +UniRef50_C7NLK0 8.66547613271e-06 2.79836794614e-05 7798995744.81 +UniRef50_A0A025GLL8 Lipoprotein NlpD 0.00217391173558 0.00110027233794 -4.33441399864e+11 +UniRef50_UPI0002557A7E high affinity branched chain amino acid ABC transporterATP binding protein, partial 0.000295467390067 4.24570594636e-05 -1.0214337525e+11 +UniRef50_Q9PC10 Bifunctional purine biosynthesis protein PurH 2.85047267843e-06 0.00379891888394 1.53251940062e+12 +UniRef50_UPI00047B4540 flavin monooxygenase 1.145798318e-05 2.01469997051e-05 3507862597.41 +UniRef50_T1B7E9 FeS assembly protein SufB 4.44263809522e-06 8.70979755788e-05 33368974037.2 +UniRef50_G8PBW8 Phosphatidylethanolamine binding family protein 3.68729530284e-05 2.00933103306e-05 -6774147666.47 +UniRef50_UPI0003A506AE MULTISPECIES 5.68214612427e-06 1.84569825451e-05 5157358227.95 +UniRef50_E7KW76 Muc1p 5.96654777896e-06 3.23411104275e-05 10647734593.5 +UniRef50_UPI0003A8EC6C hypothetical protein 0.000100276123806 1.73345862354e-05 -33484516524.4 +UniRef50_F0RPV8 Diguanylate cyclase 8.76327023121e-06 0.00164619329046 6.61050592693e+11 +UniRef50_UPI00047DB175 beta lactamase 1.6713340482e-05 2.86648507308e-05 4824971348.96 +UniRef50_Q42581 Ribose phosphate pyrophosphokinase 1, chloroplastic 0.000109623840068 6.9722285617e-05 -16108747179.0 +UniRef50_UPI00037D526A hypothetical protein, partial 6.47350617605e-05 5.49688823519e-05 -3942726471.75 +UniRef50_F8WK85 PAP2 family protein 0.0100019317188 0.00438169397155 -2.26895894664e+12 +UniRef50_UPI00036C9515 hypothetical protein 0.000108175376047 0.000197463878759 36046864238.0 +UniRef50_P45792 Type IV pilus assembly protein TapB 0.000678704040354 0.0117613737708 4.47420976981e+12 +UniRef50_Q3DDY2 0.000294190088179 1.9950000688e-05 -1.10714088624e+11 +UniRef50_Q2SSQ8 Glycerol kinase 1.29747286403e-05 9.97456681135e-05 35030493064.5 +UniRef50_Q9M8L4 Glycerol kinase 0.00945689604232 0.0394545842843 1.21104348563e+13 +UniRef50_V4XRX6 0.000106134767253 0.000359767365452 1.02394592315e+11 +UniRef50_UPI000364B546 hypothetical protein 0.000143204293309 1.99780816919e-05 -49747933785.4 +UniRef50_UPI00036C1952 hypothetical protein, partial 0.00116995494801 0.000149937041184 -4.11793746015e+11 +UniRef50_Q9UZ08 2 isopropylmalate synthase 8.94198979865e-06 5.30116519347e-06 -1469845571.05 +UniRef50_Q28VP7 Ubiquinone biosynthesis O methyltransferase 0.0045433762599 0.00399815931309 -2.20110771992e+11 +UniRef50_UPI0003771895 hypothetical protein, partial 3.40228003486e-05 5.76584700187e-05 9542009888.1 +UniRef50_A7X0A3 0.0112126305457 0.00177221400291 -3.81121200526e+12 +UniRef50_A7X0A2 0.0106613089259 0.00226204113873 -3.39088747629e+12 +UniRef50_M9VDE6 0.000319268942872 0.00912339814015 3.55433499576e+12 +UniRef50_B1AIX1 Uridine kinase 1.03157370509e-05 5.32158137701e-05 17319287414.7 +UniRef50_UPI00047145DA cobyrinic acid a c diamide adenosyltransferase 1.00780972922e-05 1.53633036926e-05 2133702680.62 +UniRef50_Q0AG56 S adenosylmethionine 1.57613272581e-05 8.6603139358e-05 28599708871.5 +UniRef50_A1B903 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.00982466571676 0.000633274965451 -3.71067723735e+12 +UniRef50_Q46807 Carbamate kinase like protein YqeA 0.00296833340408 0.000718882699722 -9.08130853214e+11 +UniRef50_Q5HGR7 3.35582503495e-05 0.000138991787255 42564812663.9 +UniRef50_P0C0L2 Peroxiredoxin OsmC 0.0163595080319 0.000493565523996 -6.40527568745e+12 +UniRef50_A1A968 Glutathione binding protein GsiB 0.00265326495623 0.0010890675305 -6.31485695628e+11 +UniRef50_A1SHI2 Glycosyl transferase, family 4 0.00034877880988 0.00591578440292 2.24746847275e+12 +UniRef50_H9UVF3 PilL 0.000128421763707 0.000128802081986 153539156.262 +UniRef50_UPI00037FAEB8 ABC transporter 1.22028656972e-05 6.31945704893e-05 20585976963.2 +UniRef50_E6SFQ0 Cell envelope related transcriptional attenuator 3.40248496559e-06 6.23353018246e-06 1142927694.88 +UniRef50_D3F7I1 Cupin 2 conserved barrel domain protein 0.000206362504528 1.06547213837e-05 -79009633659.8 +UniRef50_Q9ZLW5 Glutamine synthetase 9.27424139346e-05 0.0053042947722 2.10396763997e+12 +UniRef50_Q9FI53 Fumarate hydratase 2, chloroplastic 0.000516015862066 0.00231881950565 7.27813953802e+11 +UniRef50_Q97DP6 Phospho alpha glucosidase PagL 0.000280981685127 0.0015050175279 4.94158290335e+11 +UniRef50_A7GYI2 Lipoprotein, nlpa family 0.000232576905162 0.00387190972858 1.46924332045e+12 +UniRef50_UPI00037CD319 hypothetical protein 8.78057865083e-06 5.82760173119e-06 -1192153019.56 +UniRef50_UPI000376EC18 hypothetical protein 9.75728116849e-06 1.59048113404e-05 2481833369.08 +UniRef50_Q67J65 UDP N acetylglucosamine 1 carboxyvinyltransferase 3 1.29158514144e-05 5.50724049496e-05 17019117981.2 +UniRef50_A0A050FM21 Integral membrane protein 5.5465010055e-05 3.90061173112e-05 -6644656974.0 +UniRef50_Q6GDB6 Lactonase drp35 0.0231115856261 0.00612953936135 -6.85586047024e+12 +UniRef50_Q0RDV0 Ribosomal protein S12 methylthiotransferase RimO 0.000660041152952 0.00654604815353 2.37625325556e+12 +UniRef50_B9DZW5 0.000194915312664 0.000390286394531 78873703222.5 +UniRef50_UPI0002196F63 membrane protein 1.94427564728e-05 4.84937704412e-05 11728250835.1 +UniRef50_Q9Z3S3 Probable oxidoreductase OrdL 2.57169517125e-05 4.88101906791e-06 -8411721694.27 +UniRef50_D3DZ74 UPF0288 protein mru_1774 0.00302280562731 0.00110698206159 -7.7344148328e+11 +UniRef50_D5APE1 Polyhydroxyalkanoate synthesis repressor PhaR 0.000410454663008 3.98598105854e-05 -1.49613689633e+11 +UniRef50_A6M0B9 D galactose binding periplasmic protein 0.000221439696001 0.00424079628005 1.62266357603e+12 +UniRef50_Q7MAI3 CTP synthase 0.00202262266695 0.00651223330206 1.81251090711e+12 +UniRef50_G8PD79 Fibronectin binding A family protein 2.54304494842e-06 0.00119811717816 4.82667948921e+11 +UniRef50_U1DNW1 0.000286052886474 4.87420552149e-05 -95805294710.6 +UniRef50_B9DNV1 3 dehydroquinate synthase 0.0179533942372 0.00717765647824 -4.35029756648e+12 +UniRef50_A5ULI3 Antimicrobial peptide ABC transporter, permease component 0.00253862358739 0.000770523029198 -7.13803892375e+11 +UniRef50_T0U0F8 Sakacin A production response regulator 0.00454262292846 0.00538896950332 3.41680498111e+11 +UniRef50_Z5YCH8 Cupin 9.07174769539e-05 3.38366227327e-05 -22963498855.7 +UniRef50_Q98IL7 Mlr2347 protein 0.000246329197527 0.000276045123666 11996684037.7 +UniRef50_Q609F9 Glutamate racemase 0.0011153340084 0.000265238748426 -3.43193888293e+11 +UniRef50_Q8RHI6 DNA directed RNA polymerase subunit beta 1.70049930159e-06 1.9183235634e-06 87938327.497 +UniRef50_UPI000378688C hypothetical protein 3.37962831957e-05 1.05754675289e-05 -9374528236.14 +UniRef50_N9R0J7 4.16420946777e-05 4.86720465508e-05 2838077838.38 +UniRef50_UPI0000510061 putative ABC transport protein, ATP binding component 8.14554298237e-06 0.0013198140645 5.2953667812e+11 +UniRef50_I8R6Q9 Excinuclease ABC, subunit A 1.35616693059e-05 0.000104535603554 36727293631.7 +UniRef50_P76361 Inner membrane protein YeeR 0.000868945758751 0.00044959160728 -1.69298417003e+11 +UniRef50_UPI0003A07059 virulence factor MviN 1.9901331499e-05 1.53871681942e-05 -1822423121.16 +UniRef50_UPI0001C395E6 cystathionine gamma lyase 6.65959105759e-05 2.32380977849e-05 -17504081083.9 +UniRef50_C6VIP9 8.2090718019e-06 1.01023680586e-05 764346932.188 +UniRef50_B6GEL4 DnaJ domain protein 2.00887044949e-05 2.05168469874e-05 172846378.121 +UniRef50_W4TF65 Glycosyltransferase 0.000283143144955 0.00736899448451 2.86064513895e+12 +UniRef50_A5CRZ1 Chorismate synthase 1.10429462478e-05 0.000163721134632 61638058222.7 +UniRef50_UPI0003810CDE hypothetical protein, partial 1.76861777055e-05 0.000215007181358 79660910575.7 +UniRef50_Q2YUL0 Putative thiaminase 2 0.0181390146495 0.00476026067964 -5.40116715342e+12 +UniRef50_F6A0T7 Response regulator receiver domain protein 0.00389837218059 0.000358684257326 -1.42901545148e+12 +UniRef50_A5UJE8 DNA repair exonuclease , Rad32 0.00143457942626 0.000146075864066 -5.20184699773e+11 +UniRef50_B2UYL5 0.000196266545327 0.00216118105943 7.93260101555e+11 +UniRef50_UPI00046FD3F6 ATPase 2.43476602181e-06 0.00043911940413 1.76294947127e+11 +UniRef50_Q6F7X4 0.000187803974553 0.00483482457449 1.87605924155e+12 +UniRef50_W8S0E0 0.000311585763701 6.05379410349e-05 -1.01351086713e+11 +UniRef50_UPI0003B42AB6 damage inducible protein 1.77271020637e-05 9.09023612574e-06 -3486808765.42 +UniRef50_G3ZGB0 0.000703252922103 0.000952634532885 1.00678416529e+11 +UniRef50_P21437 Fructose 1,6 bisphosphatase 2 class 2 0.00366546656703 0.000284414162307 -1.36497234596e+12 +UniRef50_UPI000373168E hypothetical protein 1.4989358147e-05 1.66835849874e-05 683980165.971 +UniRef50_S3ZPA8 Putative Linear gramicidin synthase subunit C 8.32892092811e-05 0.000473227745177 1.57422972025e+11 +UniRef50_C9D9L2 Universal stress protein 0.000411776253368 0.0282083244482 1.12218076082e+13 +UniRef50_P45762 Putative type II secretion system protein K 0.0032267312026 0.00098540140987 -9.04852341535e+11 +UniRef50_E6S5F6 Flagellar biosynthesis sigma factor 0.000151600798739 0.00298468645591 1.14375144567e+12 +UniRef50_B1Y7P3 Glycine tRNA ligase alpha subunit 0.000149841988814 0.000946356982569 3.21562877317e+11 +UniRef50_UPI0002899294 branched chain amino acid aminotransferase, partial 3.47803276422e-05 3.72560817618e-05 999492319.002 +UniRef50_P77172 Cyclic di GMP phosphodiesterase YfgF 0.00244217259085 0.000585964227889 -7.49374094365e+11 +UniRef50_H4GEP0 Replication initiator protein A, N terminal domain protein 0.000116787480987 2.35038486219e-05 -37659747104.7 +UniRef50_K0IHJ1 Ammonium transporter NrgA 0.00027712719646 0.00129121770044 4.09400780747e+11 +UniRef50_UPI00036013C9 hypothetical protein, partial 0.000121894824799 0.000111074405426 -4368336082.36 +UniRef50_UPI00046F81B4 hypothetical protein 2.36901228817e-05 6.81216927357e-05 17937569986.7 +UniRef50_Q6FAM5 Bifunctional uridylyltransferase uridylyl removing enzyme 0.000337142789937 0.00525131810669 1.98391287908e+12 +UniRef50_Q0BWA4 Uroporphyrinogen decarboxylase 7.46180815603e-06 1.44741871027e-05 2830983432.34 +UniRef50_Q47LW5 1.97223159411e-06 0.000109647291535 43469743019.8 +UniRef50_P75685 Inner membrane protein RclC 0.00274211712134 0.00216625030876 -2.32484498919e+11 +UniRef50_D2R1Q0 1.6552174817e-05 0.000228119005864 85412125910.6 +UniRef50_O34607 Probable L serine dehydratase, alpha chain 0.000911055321036 0.00768865007592 2.73619817299e+12 +UniRef50_Q2YUI8 Serine protein kinase RsbW 0.0129624453293 0.00254853302326 -4.20422419101e+12 +UniRef50_Q57549 Probable thiol peroxidase 0.00155131228296 0.0027308363985 4.76188359832e+11 +UniRef50_A3PLU4 Holliday junction ATP dependent DNA helicase RuvA 8.91249002058e-05 4.50679477566e-05 -17786332343.3 +UniRef50_O67703 Acetolactate synthase small subunit 4.46070866811e-05 0.000368494056094 1.30757144092e+11 +UniRef50_M5HHC7 0.000779037649562 3.7850948112e-05 -2.99226166759e+11 +UniRef50_K2DEX2 0.00319794464207 0.000915851534752 -9.21308991857e+11 +UniRef50_UPI00037E7ACC hypothetical protein 0.000222191351783 4.06771019415e-05 -73279530091.1 +UniRef50_P08142 Acetolactate synthase isozyme 1 large subunit 0.00262959397591 0.00121118492679 -5.72629138966e+11 +UniRef50_P37903 Universal stress protein F 0.00104736415878 0.00561658638029 1.84465108149e+12 +UniRef50_F3U4X7 ABC sugar transporter, inner membrane subunit 0.0190906779594 0.00380598692384 -6.17061733532e+12 +UniRef50_V5SGS7 Multidrug ABC transporter permease 0.00925169559036 0.0014569402123 -3.14683839853e+12 +UniRef50_M4S6Z7 6.92675275089e-05 9.34346725083e-05 9756573000.48 +UniRef50_Q8XJ36 Two component response regulator 0.000439918039809 0.00128645179122 3.41756063582e+11 +UniRef50_G7ZP62 Chromosome replication initiation membrane attachment protein 0.0168095416203 0.00352217783447 -5.36427181462e+12 +UniRef50_K4KGL9 Beta ketoacyl synthase 0.00062519620505 0.000127017937712 -2.01120679859e+11 +UniRef50_P07770 Benzoate 1,2 dioxygenase subunit beta 0.00343169080774 0.0109633670813 3.0406301357e+12 +UniRef50_A5WFZ6 Anthranilate phosphoribosyltransferase 0.000139198043701 0.0100361146912 3.99550669942e+12 +UniRef50_E0SBA7 4.54100488904e-06 6.70404712587e-06 873246694.521 +UniRef50_M9RBA6 0.00529716127021 0.000113454417794 -2.09272606756e+12 +UniRef50_UPI0004259771 peptidylprolyl isomerase 1.14014822927e-05 5.86462512229e-05 19073292975.6 +UniRef50_Q47679 Hydrolase YafV 0.0017861045139 0.000573430495526 -4.895713824e+11 +UniRef50_UPI0004661C80 hypothetical protein, partial 2.40379548207e-05 0.000136475775768 45392528083.5 +UniRef50_C5AI60 Diguanylate cyclase 3.13522164665e-06 0.000167188296511 66230239480.2 +UniRef50_UPI0002197895 phosphoribosylaminoimidazole carboxylase 6.36261923385e-06 1.21657230203e-05 2342784210.68 +UniRef50_B7GHM5 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.0138887108959 0.00156797721074 -4.97403138112e+12 +UniRef50_D8GMQ7 Predicted acyl CoA thioesterase 1 0.000241799087552 0.00267148981811 9.80895963585e+11 +UniRef50_K7RVQ7 Transporter, major facilitator family protein 9.11801905478e-05 0.00296972741164 1.1621048369e+12 +UniRef50_UPI000367D1F7 hypothetical protein 2.50789421641e-05 1.28042496832e-05 -4955443981.95 +UniRef50_A3PJB9 ABC transporter related 0.0113046243824 0.000990774276087 -4.16382785309e+12 +UniRef50_H8GYE3 6.17479807229e-05 0.030380257698 1.22399544228e+13 +UniRef50_Q8DJL3 Tlr1209 protein 0.000205047980263 7.3143871086e-05 -53251307520.2 +UniRef50_D2ZPN4 Putative toxin antitoxin system toxin component, PIN family 2.06196697336e-05 6.69489077827e-07 -8054132746.99 +UniRef50_A3PHS3 Transport associated 0.000596367730434 0.00212569066333 6.17406434914e+11 +UniRef50_P31961 Phosphogluconate dehydratase 0.00353345788129 0.012371743748 3.56812446235e+12 +UniRef50_H8GYE9 0.00026583520342 0.00238490599175 8.55494881172e+11 +UniRef50_M5DRD3 8.32517960408e-05 3.64392113916e-05 -18898814877.9 +UniRef50_A0A058ZFX3 3.94167521259e-06 8.38018027807e-06 1791878961.52 +UniRef50_Q3J2Y8 Acyltransferase domain 0.00230309228761 0.000182905842502 -8.55945285504e+11 +UniRef50_Q1GGL7 0.000168191978568 4.48170657139e-05 -49807966299.6 +UniRef50_Q1GGL2 0.00483451897582 0.00267622818531 -8.71328477335e+11 +UniRef50_K0N9J9 Cellobiose permease IIC component 0.00571915490317 0.00336836098432 -9.49044352525e+11 +UniRef50_H2FLG9 Protein GRSP 2, isoform f 4.68471937896e-05 1.29369065555e-05 -13689999082.4 +UniRef50_G2WZD3 6.49469523581e-06 0.000105769056209 40078277758.3 +UniRef50_A9M9V6 NAD specific glutamate dehydrogenase 1.77429701554e-05 1.03784084975e-05 -2973163914.63 +UniRef50_K0LFR7 0.0190458566493 0.00932978883974 -3.92249580428e+12 +UniRef50_Q48NP4 OsmC Ohr family protein 0.00871121512735 0.00336703131814 -2.15751258429e+12 +UniRef50_Q8CS08 0.0126868471177 0.00173392995839 -4.42182706462e+12 +UniRef50_Q2NHD8 Predicted minichromosome maintenance protein 0.00199163217154 0.000760741710875 -4.96925583697e+11 +UniRef50_L8MLB7 Putative membrane protein, clustering with ActP 0.000127559256993 7.51961455758e-05 -21139630646.8 +UniRef50_Q6FF72 0.00101336892875 0.00315382702001 8.64129197816e+11 +UniRef50_Q72CF3 50S ribosomal protein L17 0.00273252794983 0.00287832928354 58861787602.3 +UniRef50_Q6FF71 0.000463875691152 0.00378438986594 1.34053231965e+12 +UniRef50_T2F8G8 Type IV prepilin peptidase 1.52930342816e-05 1.4754678803e-05 -217340713.075 +UniRef50_UPI00046B85CA PREDICTED 5.68362089032e-06 0.000199659429296 78310414204.3 +UniRef50_UPI0004788AD3 hypothetical protein 6.55128639135e-06 8.38438523829e-05 31203957377.2 +UniRef50_W8YT37 1.23616245605e-05 0.000216478850176 82404628780.8 +UniRef50_E3NV91 Aldehyde dehydrogenase 0.000157505803757 0.00896770998095 3.55678753969e+12 +UniRef50_UPI00035FA1C3 hypothetical protein 1.19597225325e-05 1.77060938768e-05 2319880627.6 +UniRef50_I0IED2 8.5083243167e-05 8.60944278648e-05 408227671.133 +UniRef50_P54689 Branched chain amino acid aminotransferase 0.00535433688493 0.0458830204376 1.63619268931e+13 +UniRef50_K5YUY4 Polyhydroxyalkanoate synthesis repressor PhaR 3.20981600514e-05 9.73983034321e-06 -9026332070.76 +UniRef50_UPI000376564B hypothetical protein 6.41023151521e-06 1.2220771513e-05 2345786300.45 +UniRef50_UPI00034CAA3F peptidase M23 1.1820383081e-05 2.87351255164e-05 6828689088.4 +UniRef50_Q3JSC1 1.17015538703e-05 5.07865707662e-05 15779100948.0 +UniRef50_B4UHS9 Succinate dehydrogenase fumarate reductase iron sulfur subunit 0.000301988791085 0.0171850888176 6.81591465963e+12 +UniRef50_Q1GZH1 UPF0301 protein Mfla_2099 7.45630790961e-06 1.15900884501e-05 1668857931.39 +UniRef50_A5UK83 0.00138531939449 0.00039551344445 -3.99596808316e+11 +UniRef50_D3R5Q5 O acetyl L homoserine sulfhydrolase 0.00568184756274 0.00724652400136 6.3167907901e+11 +UniRef50_Q89WL0 Glutathione synthetase 3.61114925836e-06 0.000121708229355 47677240449.3 +UniRef50_I7EIU7 0.00957349084765 0.00307533793018 -2.62338407409e+12 +UniRef50_G8VQH1 ATP dependent helicase 0.000253169120298 0.00533813871191 2.05286462373e+12 +UniRef50_D4KG00 Transcriptional regulator, LacI family 0.000610241838077 0.00157235757593 3.88417929859e+11 +UniRef50_UPI0003B47824 nitrogen regulatory protein 1.81941969903e-05 3.07644531365e-05 5074766660.61 +UniRef50_H6LJ16 UV damage endonuclease UvdE 0.000794107587337 0.000946485686244 61516908418.3 +UniRef50_B7KNT0 ATP dependent Clp protease proteolytic subunit 1.54340919095e-05 8.27687301943e-05 27183819764.5 +UniRef50_UPI000225B916 hypothetical protein 3.92251966909e-05 5.37668332618e-05 5870637129.62 +UniRef50_M4X3P8 L threonine synthase 9.08514498909e-05 6.82167759319e-06 -33923850237.8 +UniRef50_A9H7P2 Putative secretion protein, HlyD family 8.59592353144e-06 0.000578835835111 2.30212849935e+11 +UniRef50_UPI0002E0E4D6 hypothetical protein 5.1568045925e-06 1.73595185726e-05 4926385377.91 +UniRef50_UPI000289152D tonb dependent receptor plug 4.44966537061e-06 5.48413889386e-06 417629655.754 +UniRef50_Q28PK5 Guanylate kinase 1.56606934306e-05 2.98671869927e-05 5735335784.3 +UniRef50_UPI00037BDD3D hypothetical protein, partial 2.09954188226e-05 8.402116185e-05 25444265873.0 +UniRef50_Q2RFN9 DNA directed RNA polymerase subunit beta 5.81335102824e-06 2.80829125013e-06 -1213179508.65 +UniRef50_UPI00029A706B MerR family transcriptional regulator 8.64021632482e-05 4.62384486945e-05 -16214584429.5 +UniRef50_C5BYT3 Cysteine tRNA ligase 5.07236474411e-06 0.0021201961767 8.53901438376e+11 +UniRef50_UPI000380AA73 hypothetical protein 0.00163049933645 0.00024193958543 -5.60578611031e+11 +UniRef50_J0Y468 0.000591462339007 4.91201352948e-05 -2.18950202926e+11 +UniRef50_UPI00037F71A6 hypothetical protein 3.85629738323e-06 5.11063316915e-06 506390749.207 +UniRef50_D3Q457 Regulatory protein, FmdB family 0.000510116201151 0.000927696456103 1.6858227321e+11 +UniRef50_R4LEH4 Yd repeat containing protein 1.97864528112e-07 3.11608997065e-07 45920037.9179 +UniRef50_V9WQL8 Plasmid partitioning protein ParA 0.000239073216019 6.79957537218e-05 -69066070885.8 +UniRef50_Q7U5L7 Probable malate 2.96003022935e-06 4.81016327605e-06 746921414.638 +UniRef50_P10121 Signal recognition particle receptor FtsY 0.00277732461913 0.000685696316302 -8.44416013018e+11 +UniRef50_U6F3A2 Elongation factor G 0.000297036775028 0.00156753251783 5.12914722104e+11 +UniRef50_Q9RZA4 Bacteriophytochrome 0.000163495058621 0.00739448107072 2.91923778726e+12 +UniRef50_UPI00042B6A44 Aldolase type TIM barrel family protein 1.65227101973e-06 1.44191506766e-05 5154145984.72 +UniRef50_UPI000382498F hypothetical protein, partial 3.52053062531e-05 0.000184239383192 60166885714.1 +UniRef50_E0Y2I8 0.000561896007633 0.000133712698645 -1.72862856239e+11 +UniRef50_B9KN81 Alpha amylase, catalytic region 0.0117395508067 0.00275007942358 -3.62915991058e+12 +UniRef50_V9B5C8 Transketolase, thiamine pyrophosphate binding domain protein 1.69480073347e-05 1.13611043834e-05 -2255501280.45 +UniRef50_D5CDT8 Ferritin Dps family protein 0.00027620926013 0.00047889195437 81825490861.0 +UniRef50_P72146 WbpN 0.000764690905198 0.00039266751586 -1.50190407516e+11 +UniRef50_P0ACR6 0.00173604266467 0.000637584664119 -4.43460974418e+11 +UniRef50_P0ACR7 0.00547704240382 0.001107216744 -1.76415224266e+12 +UniRef50_P0ACR3 0.00366119331693 0.000237202172853 -1.38230724196e+12 +UniRef50_D2JL91 Beta lactamase regulatory sensor transducer BlaR1 0.000317281359462 0.000121151070477 -79180204452.5 +UniRef50_A7MI52 Glutamate 5 kinase 0.00266783499276 0.00510217893609 9.82774522682e+11 +UniRef50_D4UF66 0.00017025144426 7.50145822548e-05 -38448289879.2 +UniRef50_UPI00034FBAC3 PREDICTED 4.2036619229e-06 1.03363510457e-05 2475841855.43 +UniRef50_C9A5T3 3.39376416159e-05 2.67948050343e-05 -2883650780.45 +UniRef50_F5M1J1 Prophage CP4 57 regulatory 0.00286744164608 0.000573246933236 -9.26194558508e+11 +UniRef50_UPI0003D70A5F PREDICTED 5.11972307402e-05 0.000200668202859 60343265659.5 +UniRef50_C5XLB4 0.000226163076213 9.07112011654e-05 -54683584138.3 +UniRef50_UPI000255A6FD metal dependent phosphohydrolase 3.60835276666e-05 0.000298123918605 1.05788921419e+11 +UniRef50_K2AEI9 8.2370389023e-05 9.00584501128e-05 3103764605.07 +UniRef50_U5MWI4 Flagellar basal body rod protein FlgG 0.000167771550603 0.00081901147926 2.62913550811e+11 +UniRef50_UPI00034B293D hypothetical protein 1.64605125481e-06 2.17102724517e-05 8100172312.87 +UniRef50_V8A9V2 0.000782024517958 0.000147275850256 -2.56255826393e+11 +UniRef50_V7YY07 Transketolase 2.71713150349e-05 3.5030228541e-05 3172739822.13 +UniRef50_Q9RUZ9 0.00025764589754 0.0434095650688 1.7420959303e+13 +UniRef50_UPI0003602513 hypothetical protein 0.000122992988326 2.26143829853e-05 -40524074760.2 +UniRef50_C2ZY26 0.000263405728174 0.000596599404435 1.34514375853e+11 +UniRef50_Q9RUZ6 0.00014900762718 0.0413020219233 1.66139768756e+13 +UniRef50_F2ABV1 6.96672261587e-05 0.000514696909573 1.79663944323e+11 +UniRef50_W0I9Q2 Prevent host death protein 5.16687871208e-05 6.52046014071e-05 5464574330.5 +UniRef50_A0KJE0 Leucyl phenylalanyl tRNA protein transferase 7.66318253377e-06 2.0796682429e-05 5302155073.86 +UniRef50_Z2D8Y2 Amino acid ABC transporter substrate binding protein 0.000551056971677 9.90441716778e-05 -1.8248311418e+11 +UniRef50_P63235 Probable glutamate gamma aminobutyrate antiporter 0.00233134414053 0.00130020555761 -4.16283299418e+11 +UniRef50_UPI00034BB6BF hypothetical protein 0.000364044929442 2.97811671193e-05 -1.34946382727e+11 +UniRef50_X3WS87 Lipoprotein 0.00290761362201 0.00104562098175 -7.51709278092e+11 +UniRef50_UPI00022CAAC7 PREDICTED 1.20020807977e-06 8.25689557079e-06 2848871335.42 +UniRef50_Q9JYM0 Thiol 8.63812331487e-05 0.00243807456992 9.49407458576e+11 +UniRef50_A6W977 1.5272274685e-06 5.60019171437e-06 1644305646.95 +UniRef50_UPI000478A779 ABC transporter permease 5.50499575854e-06 3.2480661108e-05 10890407130.2 +UniRef50_T2RUR1 7.93773271691e-05 0.00257643514107 1.00809288182e+12 +UniRef50_Q5HR30 Glycosyl transferase, group 2 family protein 0.0153082434257 0.00270899248571 -5.08647221467e+12 +UniRef50_B0VRV3 Formamidopyrimidine DNA glycosylase 0.000592403282138 0.00408698915763 1.41080720133e+12 +UniRef50_UPI0003755B23 hypothetical protein 3.64501413871e-05 2.22464215188e-05 -5734216010.08 +UniRef50_Q1J255 Hemin import ATP binding protein HmuV 2.57545401214e-05 0.00609301455001 2.44942731965e+12 +UniRef50_P20586 p hydroxybenzoate hydroxylase 0.000830103738918 0.000735729906406 -38099874282.3 +UniRef50_UPI00016A5EA5 CAIB BAIF family protein, partial 1.24651467446e-05 0.000148899421654 55080191017.6 +UniRef50_G2M909 0.000136030986974 0.000768966293593 2.55523750272e+11 +UniRef50_G7U5P8 Uracil xanthine permease 0.000158684313331 0.00591245085996 2.32286616153e+12 +UniRef50_UPI00037C0AF6 hypothetical protein, partial 2.93285905212e-05 2.01492899747e-05 -3705796273.31 +UniRef50_C7ZXH6 Methyltransferase type 12 0.00822899490369 0.000724365382928 -3.02971102969e+12 +UniRef50_UPI0004700E9C hypothetical protein 0.000195751972439 0.00148614981153 5.20949442603e+11 +UniRef50_D9XX77 3.96091627931e-05 0.00012310439233 33708048765.7 +UniRef50_A8LJU4 0.000439132142802 3.91636910875e-05 -1.61472172122e+11 +UniRef50_V1DP08 Bacteriophage replication protein 0.000119555100006 2.87878613073e-05 -36643848101.9 +UniRef50_Q3YYG5 Regulatory protein RecX 0.00523708666477 0.000361612292071 -1.96828883306e+12 +UniRef50_A3PPL7 3.37054828519e-05 0.000175435666453 57218214344.7 +UniRef50_UPI0002627F99 50S ribosomal protein L6 4.90755873418e-05 0.000260324938981 85283955577.7 +UniRef50_Q9K0K9 Iron regulated protein FrpA 0.000200459260265 0.00751570554919 2.95325469501e+12 +UniRef50_Q5HQI7 0.000492373028943 0.00410806982311 1.4597011654e+12 +UniRef50_A2RN27 Methionyl tRNA formyltransferase 0.02064365986 0.0108155638671 -3.96772295663e+12 +UniRef50_U5MVR3 Methyl accepting chemotaxis protein McpA 0.000569473341325 0.00130359873152 2.96375428753e+11 +UniRef50_Q8GM57 50S ribosomal protein L2 0.0157464770065 0.00665527997003 -3.67022780516e+12 +UniRef50_F2LAJ8 0.000501682690607 0.00531831393439 1.94453313983e+12 +UniRef50_A4W2L5 Predicted membrane protein 0.000110413537989 4.30147432317e-05 -27209720519.7 +UniRef50_UPI00037CA3B1 ferredoxin 0.00144514550792 0.00128283537021 -65526594362.9 +UniRef50_P39899 Neutral protease B 5.95233971217e-06 0.000377746264455 1.50097769843e+11 +UniRef50_E8SKB9 Integral membrane protein 0.0327981429814 0.00767236221579 -1.01435860231e+13 +UniRef50_UPI0003B55E69 membrane protein 3.12486799227e-05 1.40547615027e-05 -6941395859.26 +UniRef50_UPI0003B397F3 tyrosine recombinase XerC 5.46388478248e-06 1.07935475165e-05 2151650248.04 +UniRef50_A5CF65 Peptide deformylase 2.07802484456e-05 5.52702581998e-05 13924040177.8 +UniRef50_A0A011R0F0 Aerobic C4 dicarboxylate transport protein 8.39960596469e-05 4.30710136267e-05 -16521943285.1 +UniRef50_G2J2T3 Ribosomal RNA small subunit methyltransferase E 0.000179755232787 0.000801979534099 2.5119958599e+11 +UniRef50_UPI0003C18A10 6.70776573229e-05 0.000307327273709 96991718329.4 +UniRef50_Q9I3N5 Heme exporter protein C 0.00068022101396 0.0012862545973 2.44663194463e+11 +UniRef50_P42359 Putative zinc metalloproteinase in scaA 5region 0.00613984769046 0.007371153301 4.97093184794e+11 +UniRef50_P17054 Phytoene desaturase 0.00979651097662 0.00196435593009 -3.16193710363e+12 +UniRef50_UPI00037BF3C3 hypothetical protein 4.29984189509e-06 0.000144953824067 56783738621.3 +UniRef50_UPI00036A00B7 hypothetical protein 4.70796657348e-05 3.94562113148e-05 -3077682099.66 +UniRef50_C5VZF1 DNA protection during starvation protein 0.00465026338108 0.0025404247152 -8.51767760048e+11 +UniRef50_G7M6V3 Transcriptional regulator, RpiR family 0.000463967366218 0.00043171978722 -13018743363.8 +UniRef50_Q98LB3 Dihydroxy acid dehydratase 2 2.25382327857e-05 1.84868668474e-05 -1635586145.14 +UniRef50_E8Y3F7 0.000954027441696 5.11005517175e-05 -3.64522665643e+11 +UniRef50_UPI0003B4F713 flavine monooxygenase 3.35365908905e-05 6.85006127318e-06 -10773679487.0 +UniRef50_P05050 Alpha ketoglutarate dependent dioxygenase AlkB 0.00324273370263 0.000552572116664 -1.08605124425e+12 +UniRef50_A7X0C7 Lipoyl synthase 0.0187682561161 0.00475348691673 -5.65793430636e+12 +UniRef50_UPI00020035C1 DEAD DEAH box helicase domain protein, partial 9.37768277558e-06 5.38265556906e-05 17944555444.8 +UniRef50_G8V2S6 Phage tail tape measure protein, TP901 family, core region 0.0186492027847 0.00222951384391 -6.62882991764e+12 +UniRef50_UPI0002D9142D hypothetical protein 0.000336699547803 8.62057993071e-05 -1.01127400172e+11 +UniRef50_T1XU00 0.0113457995076 0.000960578699671 -4.19264108114e+12 +UniRef50_F0P598 Aspartate aminotransferase, putative 0.0167455262412 0.00528996583824 -4.62475031023e+12 +UniRef50_P04818 Thymidylate synthase 2.8353846465e-05 0.000168525831808 56589150586.7 +UniRef50_UPI00039D1855 cytochrome C 0.000299102027024 7.24571336049e-05 -91499324718.9 +UniRef50_P56111 Phosphogluconate dehydratase 0.000152411513494 0.00410383599449 1.59523855241e+12 +UniRef50_D9XI44 2.40430475408e-05 0.000105962673696 33071958345.7 +UniRef50_R1DBS1 1.53748855689e-06 7.64128783501e-06 2464178670.62 +UniRef50_UPI000464EC64 glucan biosynthesis protein G 1.04854619577e-05 1.53911090598e-05 1980469934.18 +UniRef50_A0RIF4 Branched chain alpha keto acid dehydrogenase E2 component 0.0150446608564 0.00754026568759 -3.02961641893e+12 +UniRef50_Q8E671 Protein SprT like 0.0017775381469 0.00159293946897 -74524751560.9 +UniRef50_B9LNN2 AzlC family protein 2.58930174213e-05 1.23322799588e-05 -5474636122.57 +UniRef50_B2I7A0 Malonyl CoA acyl carrier protein transacylase 0.000127099659549 0.00180922624346 6.79095143939e+11 +UniRef50_Q7NN36 Hemin import ATP binding protein HmuV 1.01187224891e-05 0.00211307837509 8.48990617972e+11 +UniRef50_X8CB66 6.62578880557e-05 0.00105993124824 4.0115812925e+11 +UniRef50_Q89ER2 Alkanesulfonate monooxygenase 0.00531913566699 0.00150802721704 -1.5385912488e+12 +UniRef50_Q74IP8 Ribonuclease 3 1.56818298413e-05 2.38864998147e-05 3312325950.88 +UniRef50_J9P129 0.000288695116451 4.60586496547e-05 -97955319129.8 +UniRef50_A8LKW8 Porin 1.02902567466e-05 3.08614734627e-05 8304852625.51 +UniRef50_B4TWJ1 Transcriptional regulator NanR 0.00235043226693 0.000541362089226 -7.30343830525e+11 +UniRef50_A0A024G3T5 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192 1.80972373661e-05 1.92587043378e-05 468898469.278 +UniRef50_R9YPK7 Urea transporter 0.0229957427288 0.00323466359523 -7.97779014194e+12 +UniRef50_UPI0004732AD3 hypothetical protein, partial 7.7012992015e-05 2.83747735995e-05 -19635845632.4 +UniRef50_UPI00036124D1 hypothetical protein, partial 2.76998239044e-05 0.000150152319142 49435574988.7 +UniRef50_UPI0004634B11 hypothetical protein 7.3288443342e-05 3.14721588951e-05 -16881747174.7 +UniRef50_A3PRE1 0.00708919300054 0.00167129887266 -2.18727034446e+12 +UniRef50_A5UP00 Methenyltetrahydromethanopterin cyclohydrolase 0.00349368636703 0.000480578676009 -1.21642854985e+12 +UniRef50_R4MF75 8.67627626656e-05 3.41373280936e-05 -21245533723.4 +UniRef50_T2EEM8 Maltose operon periplasmic family protein 0.00124149988968 0.000224860435429 -4.1042982325e+11 +UniRef50_A1WWV9 tRNA specific 2 thiouridylase MnmA 4.13947121566e-06 7.93799355641e-06 1533510082.07 +UniRef50_D5BQ57 0.000991632515868 0.000275194883365 -2.8923466392e+11 +UniRef50_UPI00047C3270 multidrug MFS transporter 1.58655772955e-05 2.01347511612e-05 1723517878.24 +UniRef50_A1B476 Beta lactamase domain protein 0.0053309609499 0.00114915899632 -1.68824476514e+12 +UniRef50_Q47138 0.000763846060865 0.0011155181193 1.41974325492e+11 +UniRef50_UPI00046CD5BB hypothetical protein 1.66552569054e-05 0.000672150957439 2.64631658142e+11 +UniRef50_UPI0002FDE3EE hypothetical protein 2.74235676915e-06 0.000137144205232 54259675520.7 +UniRef50_R0UE42 Filamentous hemagglutinin family N terminal domain protein 2.73606660158e-05 0.000221589866997 78412711896.4 +UniRef50_UPI000362807B hypothetical protein, partial 1.13730969847e-05 1.72755839245e-05 2382906409.26 +UniRef50_Q8DJB8 GTP cyclohydrolase 1 5.30065283816e-05 9.9105728059e-05 18610812610.6 +UniRef50_A7FBY0 0.000391853967671 0.0110086154699 4.28611690075e+12 +UniRef50_L8E4A2 Macro domain containing protein lmo2759 1.76202532844e-05 2.72803797275e-05 3899911588.16 +UniRef50_Q9RR65 Dihydrofolate reductase 0.00181806026101 0.0516701765456 2.01259110984e+13 +UniRef50_A5ULU4 Glutamyl tRNA reductase 0.00320190349779 0.000836333639531 -9.55009580586e+11 +UniRef50_UPI0002DBA9D3 50S ribosomal protein L25 0.000291149896074 8.62404878689e-05 -82724442613.6 +UniRef50_D4HV65 UPF0380 protein yafZ 0.000227809195324 3.05214783759e-05 -79647472324.4 +UniRef50_UPI000400F72F hypothetical protein 1.12589163553e-05 1.00183752921e-05 -500821650.365 +UniRef50_T1LB68 0.00134477543303 0.0006911833898 -2.63863128328e+11 +UniRef50_Z1HLQ0 Regulatory protein BlaR1 0.00657478475533 0.00162534238039 -1.99815062325e+12 +UniRef50_UPI0001FFE3E3 nitrogen regulatory protein P II, partial 2.28868480007e-05 0.000114060441959 36807898706.8 +UniRef50_A5UMR6 GtrA like surface polysaccharide biosynthesis protein, GtrA 0.00113807440544 0.000946448072647 -77361902068.1 +UniRef50_Q2S2A3 Methionine tRNA ligase 2.64754050284e-06 3.28916181413e-06 259030396.947 +UniRef50_K0H8G2 Metalloendopeptidase like membrane protein 0.000293382892887 0.00922096399885 3.60417404622e+12 +UniRef50_A5UMV3 Polysaccharide polyol phosphate ABC transporter, ATPase component 0.00417216517648 0.000108373102823 -1.64060272847e+12 +UniRef50_UPI0003FEC27D hypothetical protein 6.50246005844e-06 4.76132901463e-06 -702915968.467 +UniRef50_Q8VPR1 MC8 5.69333795722e-06 7.47174199856e-05 27865868935.6 +UniRef50_I0C6S9 0.00113690934606 0.000904030730184 -94015954971.1 +UniRef50_I0K4C6 Transcriptional regulator, BadM Rrf2 family 3.1853939806e-05 6.12667868923e-05 11874327305.0 +UniRef50_A3PBD7 Probable malate 2.79248673104e-06 4.27684124035e-06 599252130.487 +UniRef50_UPI0003641518 hypothetical protein 4.93249766915e-06 2.62262353492e-05 8596543205.0 +UniRef50_Q2T4S8 Arabinose import ATP binding protein AraG 2 1.1001919436e-05 7.34611023579e-06 -1475895035.95 +UniRef50_S6GM17 4.3656487614e-05 7.77690751943e-06 -14485026776.1 +UniRef50_UPI0003697D46 hypothetical protein 2.54816105604e-05 5.27795099698e-06 -8156465292.53 +UniRef50_Q1I5V8 Ribonuclease 3 2.83204116967e-05 5.13959513004e-05 9315878506.73 +UniRef50_UPI0003B4A430 CRISPR associated protein Cas3 6.4371056238e-05 8.83130790199e-06 -22422077952.6 +UniRef50_T0CSQ2 Glycosyltransferase, group 1 family protein 0.00825861333289 0.00124414236929 -2.83182800524e+12 +UniRef50_A0A011NU60 Putative esterase of the alpha beta hydrolase fold protein 5.76289870085e-06 4.04573300903e-05 14006567700.5 +UniRef50_P64566 0.00297794218708 0.00461552936804 6.61114040408e+11 +UniRef50_B2V9F3 Gamma glutamyl phosphate reductase 0.000240496400804 0.00895005012273 3.51615371579e+12 +UniRef50_Q6LU53 Nucleoside diphosphate kinase 0.000125585650652 5.7447426371e-05 -27508237292.3 +UniRef50_UPI000367902D hypothetical protein 9.01378616154e-07 2.53910880939e-06 661171776.22 +UniRef50_UPI0003B4B7CD ATPase AAA 4.31940548017e-06 4.26204123281e-05 15462586470.7 +UniRef50_Q8NUV3 0.000833230725443 0.000342377378524 -1.98163519599e+11 +UniRef50_A7FAY2 0.000147840465605 0.00628232788975 2.47656785176e+12 +UniRef50_U9HN69 0.000965592182606 0.000904964522989 -24476130172.4 +UniRef50_A7FAY1 0.000664203932916 0.01286690724 4.92638106908e+12 +UniRef50_UPI000420B770 porin 0.000170466851592 2.55356672855e-05 -58510497610.0 +UniRef50_UPI0004228484 hypothetical protein 6.77187684924e-05 5.73623940484e-05 -4180995450.05 +UniRef50_P0AC97 Low affinity gluconate transporter 0.00249453648066 0.000316647549866 -8.79240487062e+11 +UniRef50_V9VVU4 Cyclopropane fatty acyl phospholipid synthase 0.0053389579192 0.000475627258122 -1.96338626766e+12 +UniRef50_A7FAY9 0.000170808139747 0.00991047535682 3.93202317469e+12 +UniRef50_UPI000394090D PREDICTED 6.40779197425e-06 0.000247542556069 97349063321.5 +UniRef50_H4GDU5 Replication initiation family protein 2.35130251639e-05 9.46766806418e-05 28729640992.7 +UniRef50_UPI00035944E9 2.95236090692e-06 6.42203511748e-06 1400750056.49 +UniRef50_A5VYC6 GTPase Obg 0.00298941513357 0.00915837583941 2.49048513861e+12 +UniRef50_A0A035UC67 2.89915347124e-05 6.11000079703e-05 12962584669.5 +UniRef50_Z4WLK7 2.5454264509e-05 0.000411297314864 1.55769574255e+11 +UniRef50_P0A9S4 Galactitol 1 phosphate 5 dehydrogenase 0.00378833843973 0.00120484607875 -1.04298756914e+12 +UniRef50_UPI000343F687 5.38822489882e-05 9.96277122366e-05 18468004873.3 +UniRef50_UPI00035EEEBA hypothetical protein 1.60227349992e-05 5.89408898632e-05 17326585783.6 +UniRef50_P76193 Probable L,D transpeptidase YnhG 0.00301404599613 0.00021018982576 -1.13195114316e+12 +UniRef50_I1QUG7 2.09640861681e-05 0.000102496629407 32915688222.4 +UniRef50_P75672 0.00608611835938 0.00177663448449 -1.73979152361e+12 +UniRef50_Q67FX7 DeoK 0.00305497130716 0.00817132500065 2.06553477078e+12 +UniRef50_P75676 0.00574230624992 0.000261897493754 -2.21250826704e+12 +UniRef50_B9KUH1 0.00160669236583 0.000942035690517 -2.68330056078e+11 +UniRef50_B9KUH0 2.88112949447e-05 0.000335368414088 1.23760870877e+11 +UniRef50_W0PG73 5.11629038781e-06 1.84153964542e-05 5369012317.39 +UniRef50_H8E0P5 Isopropylmalate isomerase small subunit 0.00313637122386 0.00111010239601 -8.18029590918e+11 +UniRef50_P09835 Sensor protein UhpB 0.00274312016114 0.000715571949819 -8.18546093724e+11 +UniRef50_Q4L8J6 Ribose 5 phosphate isomerase A 0.0213241647537 0.00608108638278 -6.15381779194e+12 +UniRef50_G4NYU6 Transcriptional regulator, PadR family 0.00228804360016 0.00238830479426 40476674401.4 +UniRef50_UPI000423B599 rod shape determining protein MreB 5.3361404481e-05 1.29200093073e-05 -16326687503.3 +UniRef50_Q9RWX1 0.000673062125786 0.0352161619999 1.39454733107e+13 +UniRef50_L9PQ51 Beta lactamase domain containing protein 4.74802592756e-05 1.31297450269e-05 -13867724130.4 +UniRef50_Q9RWX5 9.35142829476e-05 0.0548065437314 2.20883213927e+13 +UniRef50_A9KV03 Two component transcriptional regulator, winged helix family 0.0013952783194 0.000295809721398 -4.4386896501e+11 +UniRef50_Q9RWX7 0.000202942061746 0.0570156631625 2.29359926789e+13 +UniRef50_Q9RWX8 0.000488768316632 0.0323259101218 1.28530448324e+13 +UniRef50_UPI00036FA720 hypothetical protein 6.76687701674e-05 8.6591793544e-05 7639456748.74 +UniRef50_A5VYK1 Beta lactamase domain protein 0.00037695150538 0.000754973830792 1.52612251624e+11 +UniRef50_Q9RVJ1 Branched chain amino acid ABC transporter, permease protein 0.000106634460129 0.0355595659276 1.43127834898e+13 +UniRef50_W8S1V4 ABC type dipeptide transport system, periplasmic component 2.83628565157e-05 1.67164188834e-05 -4701809790.02 +UniRef50_A9U7M5 Predicted protein 7.30734659245e-05 3.78220386206e-06 -27973732794.0 +UniRef50_F0PDK0 1.82420327848e-05 0.00194926161795 7.79576302808e+11 +UniRef50_E8SF44 Chitinase B 0.0143632080155 0.00253050505703 -4.77700738794e+12 +UniRef50_UPI0003645B24 hypothetical protein 6.31854887334e-06 9.44225470738e-06 1261078377.38 +UniRef50_K2EQR3 Toluene tolerance protein Ttg2B 2.80465416973e-05 5.25182027041e-05 9879509849.5 +UniRef50_W3RJU2 3.85387607485e-06 1.86827433481e-05 5986595688.9 +UniRef50_UPI000287E9BE thymidylate synthase 0.000105906548933 0.000458724539788 1.42436952472e+11 +UniRef50_UPI0004746A8A ammonia channel protein, partial 2.2892353547e-05 3.8407897002e-05 6263815289.91 +UniRef50_P0AGB1 Phosphoserine phosphatase 0.00503507427588 0.00105963735911 -1.6049326674e+12 +UniRef50_UPI0004669E93 hypothetical protein, partial 4.15918874596e-05 1.77647149102e-05 -9619321950.48 +UniRef50_Q5HQK2 Glycerophosphoryl diester phosphodiesterase GlpQ, putative 0.0213542328792 0.00346839485824 -7.22073229299e+12 +UniRef50_UPI000464A474 quinone oxidoreductase 7.48156859629e-06 0.000177169620501 68505148860.6 +UniRef50_UPI00047AB5CC aryl phospho beta D glucosidase 4.60667672673e-06 2.45444074515e-05 8049106557.07 +UniRef50_U7PP10 3.22648245359e-05 0.000101472472332 27939976688.6 +UniRef50_Q02QX6 Phospholipase D 0.000896449766574 0.000480755758051 -1.6782077238e+11 +UniRef50_B0SZ50 NADH quinone oxidoreductase subunit C 2.71103453326e-05 2.31509963257e-05 -1598437780.76 +UniRef50_A1B541 0.000250541924799 9.34202125974e-05 -63431963316.2 +UniRef50_UPI0000165EE8 hypothetical protein DR_A0025 1.62440558687e-05 0.00711639824143 2.8664193734e+12 +UniRef50_K0P5L7 Transposase IS4 family protein 4.60260214296e-06 1.93061576865e-05 5936005805.83 +UniRef50_W7LA83 1.14287904974e-05 0.000537733514625 2.12475675616e+11 +UniRef50_UPI0003FF921B hypothetical protein 0.000391813438564 8.18433717949e-05 -1.25138719715e+11 +UniRef50_UPI0003453247 hypothetical protein 2.81375731532e-06 8.26238039937e-06 2199676001.16 +UniRef50_P0C5W5 Transposase InsD for insertion element IS2A D F H I K 0.0100252672586 0.00515354734406 -1.96677311223e+12 +UniRef50_C9A9S2 0.00399389132747 0.000891741024771 -1.25237614487e+12 +UniRef50_Q05207 Protein translocase subunit SecY 0.0242414119776 0.00829152675134 -6.43916439296e+12 +UniRef50_A6LRQ1 Ubiquitin associated domain containing protein 0.000822113754382 0.00116381581644 1.37949315609e+11 +UniRef50_F2QW98 Tricalbin 2 3.18822625684e-05 4.98565062176e-05 7256422729.96 +UniRef50_Q9K1G3 Ribosomal RNA small subunit methyltransferase G 3.10948538312e-05 0.00498913123432 2.00162012875e+12 +UniRef50_D4HEV9 4.18248123427e-05 0.000461549857635 1.6944815139e+11 +UniRef50_D4HEV8 0.00108042146364 0.00621725039158 2.07380087419e+12 +UniRef50_D4HEV4 0.00103895226289 0.00586788837237 1.94950076511e+12 +UniRef50_UPI00037EE4CD hypothetical protein 1.11138329524e-05 2.38988985803e-05 5161487884.38 +UniRef50_A6W3N1 Phosphate ABC transporter, inner membrane subunit PstA 0.00110938983346 0.00117356478892 25908217034.5 +UniRef50_U5MQ20 0.000941085986506 0.0020779011986 4.58946251412e+11 +UniRef50_P50059 Superoxide dismutase [Mn] 2 1.63182683193e-05 8.72467796718e-05 28634710423.7 +UniRef50_G0AAC6 3.91851037267e-05 1.73831955363e-05 -8801697875.96 +UniRef50_UPI000440A67E hypothetical protein STEHIDRAFT_153002 3.87051956045e-06 2.09804570106e-05 6907491711.15 +UniRef50_R1F8H0 4.36213320985e-06 0.000301588108581 1.1999377363e+11 +UniRef50_Q9RVD6 Tryptophan tRNA ligase 2 0.00400036576191 0.0116588399444 3.09182000752e+12 +UniRef50_Q97R65 Dihydroorotate dehydrogenase B ), catalytic subunit 2.04376210229e-05 0.00358563354907 1.43931334603e+12 +UniRef50_UPI0003B4E783 hypothetical protein 7.57807493154e-06 1.05967720245e-05 1218685060.01 +UniRef50_UPI000360793F hypothetical protein 0.00010532583913 6.76790493422e-05 -15198471015.4 +UniRef50_O06941 Protein GrpE 0.00453143152139 0.00469697341333 66831293203.6 +UniRef50_Q9K0V4 Ribosomal RNA large subunit methyltransferase L 0.000165322330884 0.0034986877324 1.34572051759e+12 +UniRef50_UPI000476FB1B hypothetical protein 1.0021726128e-05 5.05003659103e-06 -2007132075.57 +UniRef50_A0A014LMK6 Acetate CoA ligase 0.000266436372174 0.0053316610368 2.04489335441e+12 +UniRef50_UPI00042C3977 PREDICTED 1.49968632743e-05 2.68540203807e-05 4786879827.53 +UniRef50_Q896L1 Magnesium protoporphyrin IX monomethyl ester oxidative cyclase 0.00015926064829 0.00151336391037 5.46668103617e+11 +UniRef50_Q3IRZ6 Urease subunit beta 5.02471571902e-05 3.98211447457e-05 -4209109165.4 +UniRef50_B7UZP4 0.00107221755979 0.000418888943548 -2.63756779621e+11 +UniRef50_Q8RQL9 Isocitrate dehydrogenase [NADP] 0.00105270741589 0.00029716837491 -3.0502038235e+11 +UniRef50_I0C190 Nitrogen regulation protein NIFR3 0.000453730653816 6.43247811272e-05 -1.57207929352e+11 +UniRef50_UPI0004764B37 phosphoglyceromutase 1.28438085382e-05 1.7939471246e-05 2057181565.95 +UniRef50_C6BBB4 Ammonium transporter 0.0060321665637 0.00195203154396 -1.64720057636e+12 +UniRef50_U5MV95 0.000138611746215 0.000833205058303 2.80415843708e+11 +UniRef50_A1SWH9 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00361754302438 0.0409124140928 1.50563971098e+13 +UniRef50_I2FG31 Transposase 0.00150511837172 0.000308080880347 -4.83258724568e+11 +UniRef50_UPI000329A113 8.43948936652e-06 1.11445132704e-05 1092051344.37 +UniRef50_K2AFG9 0.000734497456935 0.000125045887866 -2.46043077245e+11 +UniRef50_Q3IV13 Radical SAM superfamily protein 0.0265147700768 0.00434815836549 -8.94893316277e+12 +UniRef50_P44875 Acetate CoA transferase subunit alpha 4.16810820686e-05 0.000571189945296 2.13769225889e+11 +UniRef50_R7PYU4 Predicted glycosyltransferase GT1 family 0.00398973734276 0.000296148602827 -1.49114709974e+12 +UniRef50_B0RZT0 Adenylate kinase 1.78529212468e-05 2.36669527292e-05 2347195855.63 +UniRef50_P77529 0.00284268627407 0.00175910898203 -4.37453449785e+11 +UniRef50_A3PS98 Transcriptional regulator, GntR family 0.021485289554 0.00584210017551 -6.31534751562e+12 +UniRef50_A5UN97 0.000555713282722 0.000446322476372 -44162410899.6 +UniRef50_Q6KHP5 Glucose 1 phosphate adenylyltransferase 8.00787185666e-06 1.64415213911e-05 3404767809.57 +UniRef50_D4HDX4 8.73136442954e-05 0.00326111232968 1.28130147618e+12 +UniRef50_A5IVQ1 Diaminopimelate epimerase like protein 0.0288083917514 0.0079777948963 -8.40956757057e+12 +UniRef50_B4RI59 Putative ChaX protein 0.000264512645487 0.000250127498162 -5807460500.71 +UniRef50_UPI00035F5713 hypothetical protein 6.57024285552e-05 6.23980905267e-06 -24005789181.6 +UniRef50_A0A038FN38 Sulfonate binding protein 1.01722374018e-05 3.04958658948e-05 8204898221.59 +UniRef50_J3NQ90 0.000288792639077 0.000132635225021 -63042664321.4 +UniRef50_I3YR32 Nitroreductase like oxidoreductase 0.000803809735129 0.00498049260173 1.68617812691e+12 +UniRef50_H1ZV37 Geranial dehydrogenase 6.66486311487e-06 9.59446394946e-06 1182715807.17 +UniRef50_UPI000455F234 alcohol oxidase 2.33753218424e-06 3.18887142826e-06 343696099.918 +UniRef50_Q9RYZ6 Phosphate binding protein 0.000341906559364 0.0434365082806 1.73978195451e+13 +UniRef50_Q1IZI8 Uridylate kinase 0.0212069719897 0.0336388067118 5.01888423308e+12 +UniRef50_A3MA07 0.000196949211577 0.0110825722583 4.39465960557e+12 +UniRef50_Q5DY13 Lateral flagellar rod protein 0.000318106170376 0.000452882033134 54410669681.2 +UniRef50_P20186 1.92141542836e-05 0.000391013507521 1.50099961393e+11 +UniRef50_UPI00037D4D8D hypothetical protein 0.00152354705411 0.00105470251856 -1.89278292371e+11 +UniRef50_Q7NK24 Phosphoadenosine phosphosulfate reductase 9.83703970743e-06 1.28356271481e-05 1210566546.6 +UniRef50_Q8TXN1 Chorismate synthase 0.00361611470529 5.55855327978e-05 -1.43742931954e+12 +UniRef50_W0E8G5 1.15907869334e-05 6.33063077582e-06 -2123589590.19 +UniRef50_UPI00035D319D hypothetical protein, partial 2.97875525196e-06 0.000533043359689 2.13993585435e+11 +UniRef50_A6LUF3 Histidinol phosphate aminotransferase 0.000158164520469 0.0008446352694 2.77136665287e+11 +UniRef50_Q89UV8 Immunogenic protein 0.0119122050099 0.00280872315848 -3.6751873357e+12 +UniRef50_B7UVV3 Dihydroorotase 0.000715594344417 0.000686264645788 -11840759252.4 +UniRef50_UPI000395D90C PREDICTED 3.98670697329e-06 5.11942900593e-06 457293784.639 +UniRef50_UPI00046CED3A O sialoglycoprotein endopeptidase 6.70430111077e-06 5.26773928788e-06 -579957636.497 +UniRef50_Q1IAK7 Histidine decarboxylase 9.83036429352e-05 0.0050774463313 2.01014100424e+12 +UniRef50_Q1IYS1 Carboxynorspermidine decarboxylase 0.000215003643526 0.00103240487771 3.29994908881e+11 +UniRef50_C1AU54 UDP N acetylmuramate L alanine ligase 3.84957144358e-06 5.29682588068e-06 584274376.066 +UniRef50_Q03470 DNA gyrase subunit A 2.10193850532e-06 0.00325601759165 1.31364567921e+12 +UniRef50_C4RE96 Diguanylate cyclase with GAF sensor 0.000289533757893 0.000641492953141 1.42090246147e+11 +UniRef50_Q9F4G3 HTH type transcriptional regulator TcaR 0.0332584265113 0.0446061101296 4.58119912844e+12 +UniRef50_P0AFR5 0.0023505384986 0.00415211676779 7.27319255123e+11 +UniRef50_UPI0004630051 hypothetical protein 4.32344342892e-06 1.38495823663e-05 3845819187.89 +UniRef50_UPI0004641B3A hypothetical protein 4.49684601221e-05 5.21753981277e-06 -16047934327.5 +UniRef50_UPI000377D7B1 ABC transporter 1.30473276215e-05 7.28176777198e-06 -2327627262.63 +UniRef50_Q9EXI7 P 14 protein 5.71617838757e-05 2.68309952106e-05 -12244911584.7 +UniRef50_O68926 Bacterioferritin 0.0134601290577 0.0009523991235 -5.04952406154e+12 +UniRef50_F1AXC6 PP241 8.19946263558e-05 0.000579978368818 2.0104214778e+11 +UniRef50_D4HF95 Transcriptional regulator, DeoR family 0.000371297693954 0.00220958555079 7.42139366135e+11 +UniRef50_C1A2V7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.29238171748e-05 7.1129800856e-05 3312856310.84 +UniRef50_UPI000174615B methionine synthase 1.13597441728e-05 2.68206115918e-05 6241741903.23 +UniRef50_P75851 Putative aliphatic sulfonates transport permease protein SsuC 0.00446900760337 0.000847033956834 -1.46223520772e+12 +UniRef50_UPI000466704B hypothetical protein, partial 1.51990168172e-05 1.69075317189e-06 -5453451798.64 +UniRef50_B2EBP0 3.15695532017e-05 0.000201954627818 68786545482.5 +UniRef50_UPI0003605AF8 hypothetical protein 4.16191983255e-05 9.982953022e-06 -12771940449.4 +UniRef50_Q6AAR3 L threonine 3 dehydrogenase 0.000223268649228 0.00638901786827 2.48918862198e+12 +UniRef50_C5AJH9 Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein 0.00077905095874 0.000191971856025 -2.37011038037e+11 +UniRef50_F9MSP3 HD domain protein 1.43042944038e-05 9.53256226052e-06 -1926406821.98 +UniRef50_P76103 Inner membrane protein YdcO 0.00222300306536 0.000164369223673 -8.31095744168e+11 +UniRef50_UPI0002BA1B2C glutathione regulated potassium efflux system protein KefB 1.96410503723e-05 2.29978808985e-05 1355193676.37 +UniRef50_A6M1S5 Transcriptional regulator, AraC family 0.00106055914379 0.000492149440026 -2.29473972581e+11 +UniRef50_UPI0003A01203 hypothetical protein 6.39140889736e-06 7.02683163944e-06 256527958.492 +UniRef50_P39836 0.00241643168422 0.000908820968389 -6.08640946444e+11 +UniRef50_R5TC97 0.000666860564316 0.00212461914781 5.88515028864e+11 +UniRef50_P39834 0.00569748775618 0.000600644146164 -2.05765831067e+12 +UniRef50_P0AE14 Protein AmpE 0.00176474650751 0.000958544077683 -3.25473814137e+11 +UniRef50_E1M0K3 N acetyl glucosamine matabolism 3.23025793368e-05 2.23742369042e-05 -4008193674.5 +UniRef50_UPI0004746698 hypothetical protein, partial 2.24435077049e-05 2.76341406543e-05 2095522217.9 +UniRef50_Q49Y24 Heat inducible transcription repressor HrcA 0.018058498343 0.00325392560026 -5.97678768877e+12 +UniRef50_A5N6G6 Phosphate propanoyltransferase 0.000202224636884 0.00147720231117 5.14724132846e+11 +UniRef50_W1XPB9 4.752911469e-05 0.000177621610261 52519936876.5 +UniRef50_UPI00028A201E LuxR family transcriptional regulator 0.000184408345397 2.25314233431e-05 -65351699886.4 +UniRef50_UPI0003F914BA DEAD DEAH box helicase 2.01607818093e-06 6.34533320658e-05 24802973313.2 +UniRef50_P76349 0.00188971289084 0.00072797167638 -4.69009184445e+11 +UniRef50_S7UZQ5 0.000121916196727 0.000121736170272 -72678889.0565 +UniRef50_A1TZQ0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 7.9543075008e-06 1.5384926262e-05 2999831977.84 +UniRef50_UPI000368871C hypothetical protein 4.70376730384e-05 5.10940112794e-05 1637593524.76 +UniRef50_UPI0004703E16 hypothetical protein 4.69845160276e-05 2.95590428756e-05 -7034877346.06 +UniRef50_B9JR02 0.000228868655391 2.32065406847e-05 -83028319464.8 +UniRef50_UPI00035CD59F DNA binding protein 0.000279504409643 0.000158130661684 -49000071474.4 +UniRef50_A0A024C1C5 0.00014489186566 0.00771341085464 3.05550399202e+12 +UniRef50_G9RS55 2.17274677144e-05 1.37131457473e-05 -3235480124.91 +UniRef50_A7IDP6 Glutamine amidotransferase class I 0.0049340312349 0.000289526181564 -1.87504368452e+12 +UniRef50_Q5LHZ1 N acetyl gamma glutamyl phosphate reductase 7.49516335782e-05 3.03356881693e-05 -18012004660.8 +UniRef50_F2DS64 Predicted protein 5.05056330883e-06 1.69710781388e-05 4812458118.04 +UniRef50_C4ZF78 Orotate phosphoribosyltransferase 0.000906211568661 0.000559980016127 -1.39777926497e+11 +UniRef50_Q9FNJ8 Arogenate dehydratase 5, chloroplastic 8.79340802478e-05 2.33438558651e-05 -26075866194.5 +UniRef50_E4PLJ2 Protein containing DUF1857 4.2063438778e-05 3.97794524292e-05 -922073316.675 +UniRef50_Q8DWA1 0.00398754168064 0.000811279645925 -1.28229596053e+12 +UniRef50_Q9RY02 0.000154075913818 0.0191806280784 7.6812525909e+12 +UniRef50_UPI000377338C hypothetical protein 1.85038340325e-05 4.24007289656e-05 9647469732.37 +UniRef50_UPI00034A10DE MULTISPECIES 0.000104132661485 0.00158383046207 5.97372160028e+11 +UniRef50_Q9RY09 7.78321626536e-05 0.0525926811499 2.12008889658e+13 +UniRef50_Q6FE61 NADH dehydrogenase I chain L 0.00439743968009 0.00884215587778 1.79438647181e+12 +UniRef50_G7U705 Efflux ABC transporter, permease protein 0.000151600798739 0.0045771046753 1.78663022201e+12 +UniRef50_Q2NXY9 2 keto 3 deoxygluconate permease 0.00175413494699 0.00117456501152 -2.33979495072e+11 +UniRef50_UPI000308C80D ATP cobalamin adenosyltransferase 3.0376833421e-05 5.10426183232e-05 8343030962.72 +UniRef50_UPI00036CA62E hypothetical protein 5.26054576797e-05 1.28115760654e-05 -16065278333.5 +UniRef50_Q8DWA4 0.00560554977894 0.00149506144483 -1.65945458184e+12 +UniRef50_Q2NI43 Predicted transcriptional regulator 0.00215130016522 0.00112145584252 -4.15760790685e+11 +UniRef50_A6TXC8 Nucleoid associated protein Amet_4780 0.00880800640655 0.00117824667255 -3.0802276323e+12 +UniRef50_D3PYT6 LigA 0.000189115506523 0.000142995933387 -18619037625.8 +UniRef50_P11988 6 phospho beta glucosidase BglB 0.00281451173166 0.000666271943544 -8.67270764331e+11 +UniRef50_Q21YW0 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.06841523874e-05 1.20132784876e-05 536584516.862 +UniRef50_D1YVK2 0.00128114492418 0.000739491307557 -2.18672211868e+11 +UniRef50_UPI00037CAA58 hypothetical protein 1.25319562495e-05 0.000101954218055 36100864425.4 +UniRef50_E4SZ07 Alcohol dehydrogenase Acetaldehyde dehydrogenase 0.00641047743206 0.00347308136009 -1.18586284016e+12 +UniRef50_UPI0003B5954D TetR family transcriptional regulator 0.000239664904957 9.89047892217e-05 -56826586043.1 +UniRef50_F8LW56 0.000194089972088 0.000128767139724 -26371629026.6 +UniRef50_A5IT13 0.019420337191 0.00321040158581 -6.5441499221e+12 +UniRef50_P24555 Protease 2 0.0022179582456 0.000513517493638 -6.88103647406e+11 +UniRef50_A0A010JG94 MATE efflux family protein 0.000304517114465 0.00820184523429 3.18824827309e+12 +UniRef50_UPI0003C1B314 PREDICTED 0.000128348896424 2.29397670715e-05 -42554959035.3 +UniRef50_Q1QH83 Carbohydrate ABC transporter substrate binding protein, CUT1 family 6.97135946614e-06 3.56034083206e-06 -1377070080.48 +UniRef50_R4VNN3 0.00819112524916 0.00626855566828 -7.76164932383e+11 +UniRef50_UPI000443497D PREDICTED 4.98317027094e-06 7.07237035247e-05 26540260001.6 +UniRef50_B3X836 D xylose ABC transporter, ATP binding protein 0.000833177276995 0.000122368800494 -2.86962104564e+11 +UniRef50_A0A029HJU3 CRISPR associated helicase Cas3 9.40092713443e-05 1.11407471319e-05 -33455040135.7 +UniRef50_Q9HVD1 Lipid A deacylase PagL 0.00172814394896 0.00148064335453 -99919027145.2 +UniRef50_UPI000462CF76 hypothetical protein, partial 7.6947215425e-05 0.000637731153259 2.26395357296e+11 +UniRef50_Q9RXH9 Lipase, putative 0.000210784383954 0.0391661489164 1.57267586978e+13 +UniRef50_Q9S358 Anthranilate synthase component 1 0.000260782549038 0.00845200646296 3.30689761167e+12 +UniRef50_C6CE95 UPF0115 protein Dd1591_1343 0.00243668666401 0.000457855356899 -7.98878481671e+11 +UniRef50_Q1YIY5 0.000201688669669 0.000444737349611 98121734635.3 +UniRef50_U6EC46 NusA family KH domain containing protein 0.00464404513881 0.00126564302227 -1.3639023921e+12 +UniRef50_UPI0004659C6E hypothetical protein 1.41837521352e-05 0.00023127775024 87643511077.9 +UniRef50_A7FHL7 Anhydro N acetylmuramic acid kinase 0.000407636138294 0.000189710945528 -87979074562.5 +UniRef50_Q5LZ68 Ribonuclease 3 0.00947898870324 0.00719354303079 -9.2266246354e+11 +UniRef50_A4G0N3 Probable tRNA pseudouridine synthase B 0.00361546828679 0.00166437938319 -7.87678532937e+11 +UniRef50_A6LS09 PTS system fructose subfamily IIA component 0.000540580441109 0.00042188100743 -47920417982.1 +UniRef50_Q7WDY0 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.000730588105822 0.0038973246981 1.27845042253e+12 +UniRef50_U1S1M7 2.38856801173e-05 0.00231986498839 9.26915021583e+11 +UniRef50_UPI0003F0C550 PREDICTED 2.40027445056e-05 2.58088030129e-05 729127982.227 +UniRef50_UPI00041A8363 LamB YcsF family protein 0.0001347591247 1.15191225169e-05 -49753501206.2 +UniRef50_UPI000368F174 hypothetical protein 5.00583334817e-06 2.97331397103e-06 -820553014.369 +UniRef50_Q216H0 Phosphomethylpyrimidine synthase 1.57071132903e-06 5.32402206858e-06 1515257603.86 +UniRef50_W6MC79 2.01726625277e-05 0.00066443527726 2.60096723559e+11 +UniRef50_UPI000444A627 hypothetical protein STEHIDRAFT_83294 2.09798390548e-06 3.79908732481e-06 686756325.27 +UniRef50_UPI00046F6DE4 hypothetical protein, partial 1.26087363561e-05 2.24559661389e-05 3975447502.41 +UniRef50_Q8ZQ16 Ribosomal large subunit pseudouridine synthase C 0.00212377850328 0.000473074341638 -6.66409526472e+11 +UniRef50_W7TU75 0.000111682245224 1.12221248572e-05 -40556983376.5 +UniRef50_P52123 0.00184986806261 0.00171558197687 -54212940688.8 +UniRef50_P52126 0.00307844920532 0.00067130866365 -9.71792175608e+11 +UniRef50_P52127 0.00233782530982 0.00115205440456 -4.78710265499e+11 +UniRef50_P52124 0.00188081002821 0.000803738338836 -4.34827058155e+11 +UniRef50_P52125 0.00103847791253 0.000387724339418 -2.6271720311e+11 +UniRef50_P0C0Q4 Extracellular elastase 0.0135288171468 0.00412272935007 -3.79735306922e+12 +UniRef50_Q4L565 Probable quinol oxidase subunit 2 0.0104696449092 0.00147636614347 -3.63069699767e+12 +UniRef50_A4WP12 Ribosomal RNA small subunit methyltransferase E 0.000146312398781 0.000238800570243 37338609776.7 +UniRef50_Q7NL20 1,4 alpha glucan branching enzyme GlgB 2.36567967614e-06 6.4365006629e-06 1643440386.95 +UniRef50_B9KP74 Branched chain amino acid aminotransferase 0.00749168225114 0.00156206519884 -2.3938591686e+12 +UniRef50_Q53212 Putative peroxiredoxin y4vD 0.00769220698926 0.00133170570717 -2.56781241971e+12 +UniRef50_A1KV38 Ribonuclease H 5.89582173041e-05 2.94020550489e-05 -11932185397.3 +UniRef50_A6LPL8 0.000115087191723 0.00355156703418 1.38734908275e+12 +UniRef50_UPI0004725A0F hypothetical protein 8.66209218976e-06 1.33126115805e-05 1877471746.33 +UniRef50_UPI0003B7A3D3 ABC transporter 9.53521075902e-06 5.48367998409e-05 18288807425.4 +UniRef50_Q4FNE4 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.3067174706e-05 2.97081088729e-05 6718149330.4 +UniRef50_A4XZN0 Acetate CoA transferase YdiF 0.00219656202779 0.00745699555574 2.12370156801e+12 +UniRef50_UPI000368346E hypothetical protein 2.02834506414e-05 9.85638081962e-06 -4209536041.6 +UniRef50_UPI00036B1EA9 hypothetical protein 5.43219826884e-07 3.81721058615e-06 1321750245.9 +UniRef50_Q8YC19 Transposase 6.12064556986e-06 1.00408026586e-05 1582615522.46 +UniRef50_J7L8P7 TRAP transporter solute receptor, TAXI family protein 4.15149693857e-05 4.35447544895e-05 819449154.668 +UniRef50_UPI00036DFF4F hypothetical protein 4.35285957724e-05 2.85777315348e-05 -6035847360.45 +UniRef50_O32220 Copper exporting P type ATPase A 0.0138673190416 0.00394434658861 -4.00602574784e+12 +UniRef50_G8W9Y6 0.0158101054377 0.0130445403494 -1.11649256345e+12 +UniRef50_K3KRS9 Sulfurtransferase 0.000696952720578 0.00085117448384 62261218342.7 +UniRef50_M1MQ23 Pseudaminic acid biosynthesis associated protein PseG 0.00022632300922 0.00119052380454 3.89259693145e+11 +UniRef50_B7VB85 Glutamine tRNA ligase 0.000679001221707 0.000426118141042 -1.02092002889e+11 +UniRef50_UPI000474892A acetyl CoA acetyltransferase 1.02478829327e-05 3.43890035044e-05 9746066619.66 +UniRef50_J4GJ09 1.31511231356e-05 4.98347773874e-05 14809641380.5 +UniRef50_T8KWL4 4.06339602003e-05 4.81876177275e-05 3049504237.53 +UniRef50_Q9HXN1 Membrane bound lytic murein transglycosylase F 0.000535989871558 0.000853258940805 1.28085416584e+11 +UniRef50_M2C918 4.66712767272e-06 9.35854216691e-06 1893981601.43 +UniRef50_A0A059ILG7 6.58281913531e-05 2.72007539688e-05 -15594370484.0 +UniRef50_W8X8B8 LemA family protein 2.65091445864e-05 1.23587750057e-05 -5712677844.29 +UniRef50_UPI0001D62167 PREDICTED 4.34417904005e-06 3.20704755071e-05 11193446123.6 +UniRef50_Q5L1U1 3 oxoacyl [acyl carrier protein] synthase 3 0.000150385700739 0.00104393103267 3.60735215535e+11 +UniRef50_R3JX77 Tandem lipoprotein 1.21061314661e-05 1.68871198003e-05 1930143659.84 +UniRef50_UPI0003A1637C pseudouridine synthase 1.43354572123e-06 1.15519099891e-05 4084907821.24 +UniRef50_A0A011QIR3 4.29364657881e-05 4.57213543237e-05 1124293676.25 +UniRef50_B1YMC1 Metallophosphoesterase 1.21163879567e-05 1.63648029484e-05 1715137266.06 +UniRef50_X7ECM7 0.00110590613049 0.000151524237915 -3.85295681615e+11 +UniRef50_C4ZZ24 ATPase RavA 0.00205214987763 0.000834735845633 -4.91484984069e+11 +UniRef50_A3V382 0.000642701522073 0.000652581993071 3988867388.91 +UniRef50_P76389 UPF0053 protein YegH 0.00290643877615 0.000994984225967 -7.71677658093e+11 +UniRef50_C3K789 0.000298801574284 0.00367243067673 1.36197546774e+12 +UniRef50_Q6A6X6 Methionine import ATP binding protein MetN 5.72618184291e-06 0.00458672835819 1.84940679381e+12 +UniRef50_K0B4J3 Uroporphyrin III C methyltransferase HemD 9.30532429341e-05 0.00195898026351 7.53297635708e+11 +UniRef50_UPI0003674EE1 hypothetical protein 7.59432646663e-05 5.05325287345e-05 -10258625920.5 +UniRef50_UPI00036AFCF0 hypothetical protein 4.38988486352e-05 9.11309385136e-06 -14043436075.4 +UniRef50_UPI00047853C3 hypothetical protein 0.000105822911272 2.72009771573e-06 -41623871046.4 +UniRef50_UPI00047B85B2 hypothetical protein, partial 0.000208023084776 6.75096272765e-05 -56727007086.4 +UniRef50_A4WVR4 0.00189171191715 0.000180224466069 -6.90948486314e+11 +UniRef50_Q213K6 Leucyl phenylalanyl tRNA protein transferase 0.00912001060344 0.00308205667871 -2.43759609344e+12 +UniRef50_UPI0003474DF5 carbon monoxide dehydrogenase 0.000227128433087 9.00934219658e-05 -55322715598.2 +UniRef50_C8RZX1 0.00012971740702 0.000108801381811 -8444056045.37 +UniRef50_UPI00032B0880 PREDICTED 2.2366106264e-05 4.54395803347e-05 9315044625.71 +UniRef50_A5UJV9 Adhesin like protein 0.00337133170245 0.00166472460246 -6.8897822869e+11 +UniRef50_S9TE19 Proteophosphoglycan ppg4 4.87814958444e-05 1.87138204936e-05 -12138689511.0 +UniRef50_I0C4G8 Glycosyltransferase 0.0196653148793 0.00716375521555 -5.04703304766e+12 +UniRef50_V5WWK4 Glycine betaine ABC transporter permease 0.000185953689091 0.000694862835762 2.05452867529e+11 +UniRef50_E6LGM1 4.46686250019e-05 5.19486737123e-05 2939045000.63 +UniRef50_Q9RXB0 Alpha dextran endo 1,6 alpha glucosidase 9.79299869344e-05 0.0146463801117 5.87338784494e+12 +UniRef50_Q3IVA1 Translation initiation factor 2, gamma subunit, GTPase 0.0459450590166 0.00180180959921 -1.78211714884e+13 +UniRef50_A8FQE6 Radical SAM domain protein 0.00059713831156 0.00104647869069 1.81404225081e+11 +UniRef50_UPI0001913051 prolipoprotein diacylglyceryl transferase, partial 3.46279205204e-05 2.34858727296e-05 -4498181421.45 +UniRef50_UPI000479F065 hypothetical protein 2.71286435317e-05 7.18522686875e-06 -8051402040.1 +UniRef50_I7EDR9 TonB dependent receptor 0.000864125333459 0.056217445116 2.23468144578e+13 +UniRef50_UPI00036EC80A hypothetical protein 2.197157485e-05 6.62261183158e-06 -6196564723.49 +UniRef50_UPI00022CAA5E PREDICTED 2.61490868123e-05 2.43188255041e-06 -9574926403.35 +UniRef50_V8X5Y2 0.000346589413413 4.95708355188e-05 -1.19910044724e+11 +UniRef50_UPI0003B3D29A ATP dependent protease 2.49418215376e-05 3.17901481684e-05 2764753499.27 +UniRef50_C6SJR7 6.52045964546e-05 4.65493011965e-05 -7531371621.91 +UniRef50_U5UKU3 Membrane associated protein 0.00688229031902 0.00293655344252 -1.59294239668e+12 +UniRef50_M7A685 0.000230542508749 6.67698568746e-05 -66117029278.0 +UniRef50_R1DWZ6 3.45662932904e-05 1.69174852267e-05 -7125040390.55 +UniRef50_E2ZTH3 Putative membrane protein 0.000212529303263 8.13058503556e-05 -52976518231.4 +UniRef50_A9BEV2 Protein RecA 0.000770971699111 0.0351486972826 1.38787096802e+13 +UniRef50_P78283 Protein translocase subunit SecY 0.00280542654437 0.0125578971215 3.93719204826e+12 +UniRef50_E7MXD2 Rhodanese like protein 0.00683686950706 0.000806919238892 -2.43436491907e+12 +UniRef50_UPI00046B96B5 PREDICTED 6.46359682911e-05 1.53280881501e-05 -19906196288.7 +UniRef50_A0A014LBA0 Transposase 1.35834382169e-05 0.00028530810697 1.09698583212e+11 +UniRef50_D7BLK7 Sugar transporter 0.000442432708837 0.0138724854378 5.42187709198e+12 +UniRef50_Q5HJZ6 Plasmid recombination enzyme type 3 0.740800531361 0.244512495215 -2.00357570331e+14 +UniRef50_Q2RKZ7 Glutamate 5 kinase 1.02240166529e-05 1.46015516989e-05 1767264616.47 +UniRef50_UPI0003B48512 ABC transporter substrate binding protein 1.71648073527e-05 5.64742465462e-05 15869702983.5 +UniRef50_UPI000255BACE patatin 4.78174000641e-06 1.60885698862e-05 4564705972.88 +UniRef50_UPI0004446091 PREDICTED 1.55078193737e-07 2.42316800842e-07 35219296.2264 +UniRef50_R4Z5X8 1.18814500275e-05 1.57018823401e-05 1542355406.57 +UniRef50_Q9ZJG8 Membrane protein insertase YidC 0.000754882768083 0.00330047365863 1.02768628043e+12 +UniRef50_A0A059IR82 Chromosome partitioning protein ParA 0.000324323690749 8.70489747589e-05 -95790714533.4 +UniRef50_Q8YFR1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.00636525194072 0.00536307950221 -4.04589311465e+11 +UniRef50_UPI00040C16D0 hypothetical protein 1.00228001284e-05 8.2291056723e-06 -724136463.034 +UniRef50_F7Z665 D 3 phosphoglycerate dehydrogenase 0.0108252629411 0.00406279369009 -2.73009182146e+12 +UniRef50_D1FI19 TRAP dicarboxylate transporter 2.11043206804e-05 4.1951982067e-05 8416456731.34 +UniRef50_Q9MUM1 Light independent protochlorophyllide reductase subunit N 9.56739628346e-05 2.79851262003e-05 -27326813984.7 +UniRef50_F5LXA3 Glycosyl transferase family protein 0.00107807403606 0.000185733776861 -3.60248712885e+11 +UniRef50_L0A408 Diguanylate cyclase domain containing protein 2.8779050152e-05 0.000768257856395 2.98536668506e+11 +UniRef50_UPI000308ED7E hypothetical protein 0.0118811079983 0.00401282544639 -3.17652222089e+12 +UniRef50_Q5JEF8 Nicotinamide nucleotide adenylyltransferase 0.0044456525845 0.000691575091185 -1.51556715176e+12 +UniRef50_A4WWA3 Glutathione dependent formaldehyde activating, GFA 0.00792815436951 0.00167056414792 -2.52626596172e+12 +UniRef50_S3FKB7 Major facilitator superfamily MFS_1 domain protein 0.000654873618774 0.00031430608951 -1.37491290797e+11 +UniRef50_F2US62 1.55443363869e-06 1.65940211716e-05 6071666043.52 +UniRef50_E8U2Z7 Putative GAF sensor protein 1.35005050472e-05 0.00194591817792 7.80140727969e+11 +UniRef50_L7DFJ3 TetR family transcriptional regulator 0.000198328890814 0.000264562378528 26739271766.4 +UniRef50_Q16CP9 0.00597534898873 0.000884542429376 -2.05522107923e+12 +UniRef50_Q3IW63 0.0245473497273 0.00923026710419 -6.18369421669e+12 +UniRef50_T1JH82 4.57702632721e-06 3.44502845853e-05 12060200944.9 +UniRef50_B7GZC9 5.86765785751e-05 0.00462524651319 1.84358032072e+12 +UniRef50_D3QI51 Transporter 0.0207543590772 0.00525560843457 -6.25703582548e+12 +UniRef50_UPI0003744E94 hypothetical protein 8.8812845026e-06 9.3339725819e-05 34096909181.1 +UniRef50_D8MLX7 Photosystem I assembly famlily protein BtpA 0.00372298184577 0.000678590938576 -1.22905796811e+12 +UniRef50_UPI000262C9D0 hypothetical protein 2.62702516383e-05 3.76820929481e-05 4607100375.81 +UniRef50_B4U8E3 Potassium transporting ATPase A chain 5.27847786956e-05 0.00138304391499 5.37041937436e+11 +UniRef50_UPI00047293B6 hypothetical protein 3.53796864681e-06 7.58050961938e-06 1632023398.18 +UniRef50_Q1QUD2 Probable malate 4.54918376094e-06 1.27029507494e-05 3291775791.21 +UniRef50_UPI0003A0AD2C 30S ribosomal protein S7 0.000247481993963 0.00212901636073 7.59598512888e+11 +UniRef50_UPI0001CE1538 PREDICTED 9.7709919458e-05 0.000152881814591 22273571100.5 +UniRef50_G3N4L7 3.73434634369e-05 1.06085400113e-05 -10793216661.3 +UniRef50_Q3JNN4 1.93990556899e-05 2.77882674998e-05 3386827754.86 +UniRef50_A6LZ55 2,5 didehydrogluconate reductase 0.000180041012167 0.00237740457833 8.87102636342e+11 +UniRef50_Q3JNN0 1.65362928528e-05 1.76321506551e-05 442411242.476 +UniRef50_A3PIA7 0.00090962508806 0.000810301625125 -40098100822.8 +UniRef50_A7FRF2 SPFH domain Band 7 family protein 0.000155344028336 0.00580039531667 2.27897647767e+12 +UniRef50_X1FV54 Marine sediment metagenome DNA, contig 1.82137340759e-05 4.29233005106e-05 9975555190.17 +UniRef50_UPI00037DF23F hypothetical protein 2.50826146801e-06 9.63756893095e-06 2878188909.23 +UniRef50_UPI00046A73E3 nitrate ABC transporter ATP binding protein 1.29616477541e-05 6.61509582947e-05 21473177371.5 +UniRef50_UPI0002559CE7 IS5 family transposase OrfA 0.000124789467833 5.39867752684e-05 -28583915835.1 +UniRef50_UPI0003B38F36 ABC transporter permease 8.53575906335e-06 2.01194099959e-05 4676462028.87 +UniRef50_UPI0003603238 hypothetical protein, partial 9.32840390114e-06 7.75205599853e-06 -636390992.248 +UniRef50_L7WVU0 Ribosomal silencing factor RsfS 0.00288143169243 0.000551993841485 -9.40422645841e+11 +UniRef50_F0KKV9 0.000179470359203 0.00884496237467 3.49836546419e+12 +UniRef50_UPI0003C16777 0.000173877775771 3.89234679994e-05 -54482710123.1 +UniRef50_C4ZGW0 Aspartate aminotransferase, putative 0.00501380403145 0.000796823789625 -1.70244667179e+12 +UniRef50_UPI00037BAEE0 hypothetical protein 0.000109731580681 0.000259505640912 60465626049.7 +UniRef50_A7HUJ4 AzlC family protein 1.19695348391e-05 9.22791927658e-06 -1106823846.0 +UniRef50_P0AEL7 Ferrienterobactin binding periplasmic protein 0.00290998321374 0.000562028814663 -9.47898003549e+11 +UniRef50_Q1RKE8 NADH quinone oxidoreductase subunit J 0.00012758253863 1.40906844409e-05 -45818054237.8 +UniRef50_B2V326 Mate efflux family protein 0.000248709922281 0.0012785923014 4.15776154529e+11 +UniRef50_B6IWF0 Phosphate ABC transporter, periplasmic phosphate binding protein PstS, putative 4.24949181733e-06 5.40061126888e-06 464721048.415 +UniRef50_B7GXW5 Poly depolymerase 1.34700829229e-05 0.0055332988704 2.22842261742e+12 +UniRef50_F0P9K4 DNA polymerase III delta prime subunit 0.0244511728763 0.0080729803258 -6.61207731566e+12 +UniRef50_Q8DL38 Biotin synthase 6.59096828472e-06 0.000104110235408 39369724833.7 +UniRef50_M2F7K0 Putative transposase 0.000302059146735 0.000502857760576 81064864483.7 +UniRef50_Q6C1W8 YALI0F12793p 6.39101564002e-06 0.000428500387812 1.7041073341e+11 +UniRef50_UPI00046D9296 3 kinase 4.22889384401e-05 0.000127241629804 34296443990.4 +UniRef50_R7PVC4 O linked GlcNAc transferase 0.0033913882302 0.000237202172853 -1.27338361757e+12 +UniRef50_UPI00029AB782 cytochrome d ubiquinol oxidase subunit II 9.79140951064e-06 2.08076636388e-05 4447396976.19 +UniRef50_U5NRE3 0.00697017061606 0.00146767932083 -2.22142325905e+12 +UniRef50_F8HC83 Regulatory protein spx 0.00126414950608 0.00114667829896 -47424567848.2 +UniRef50_Q3Y3U3 Relaxase mobilization nuclease domain 0.00127485842409 0.00018833367085 -4.38643376041e+11 +UniRef50_C5ABI0 Major facilitator superfamily MFS_1 0.000198198688056 0.00648469005634 2.5379337093e+12 +UniRef50_M2XMH8 DNA polymerase II large subunit 2.02530780281e-05 0.000104394581345 33968957421.4 +UniRef50_K7YBZ8 0.000228155110748 0.00197606779169 7.05653798596e+11 +UniRef50_P44304 Glyceraldehyde 3 phosphate dehydrogenase 0.00363824611945 0.000430280020438 -1.29509528034e+12 +UniRef50_B2TI69 0.000630593005367 0.00217094372115 6.21858486189e+11 +UniRef50_UPI000255F17A hypothetical protein 5.82559931989e-05 0.000164821230301 43021693920.6 +UniRef50_P45524 Putative esterase YheT 0.00222919467823 0.00144345948598 -3.17210939166e+11 +UniRef50_UPI000462C6A7 PREDICTED 1.52949701278e-05 0.000376817551654 1.45951102543e+11 +UniRef50_B2WGR9 Catabolic 3 dehydroquinase 3.29341505445e-05 0.00859615212763 3.45707617985e+12 +UniRef50_I4AI93 0.000208172420321 0.00281671794743 1.05310183975e+12 +UniRef50_UPI00045E39BE PREDICTED 4.60558533168e-06 4.04538315796e-06 -226160491.984 +UniRef50_UPI00037892F1 hypothetical protein 3.64057505749e-06 2.08871737459e-06 -626503990.022 +UniRef50_U1X2L2 0.000123751680986 1.79173896482e-05 -42726602146.0 +UniRef50_UPI0003601561 hypothetical protein 1.49523558644e-05 1.39103894639e-05 -420654622.247 +UniRef50_S5FCD6 Portal protein 9.11801905478e-05 0.00215988284241 8.35160646392e+11 +UniRef50_C9ABJ9 Fructose 6 phosphate aldolase 0.00732085094163 0.00231659558482 -2.02027929666e+12 +UniRef50_A4FIQ1 Inositol 2 dehydrogenase 3 0.00290214489783 0.00103195735108 -7.55017662405e+11 +UniRef50_A3CQ84 Stomatin prohibitin like membrane protease subunits, putative 0.00664379698948 0.00698751373888 1.38762669612e+11 +UniRef50_W3AF53 4.4674076915e-06 9.73624789762e-06 2127095447.15 +UniRef50_A5UJ85 DNA helicase II 0.00305910634578 0.000404010667634 -1.07189470696e+12 +UniRef50_Q4L790 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00152011716229 0.000567916740756 -3.84414994986e+11 +UniRef50_F2N691 Methyltransferase PilK 0.000442042735691 0.000211191922662 -93197306077.8 +UniRef50_L1KFY1 0.00012076752759 0.00133225581291 4.89092687417e+11 +UniRef50_M9VBK7 Protein translocase subunit SecE 0.000174762031871 0.00623746276338 2.44758668301e+12 +UniRef50_K0RFL8 2.23816179144e-05 7.71164771806e-05 22097134358.0 +UniRef50_Q7UKQ9 Pyridoxine pyridoxamine 5 phosphate oxidase 6.51686951022e-06 4.22562704227e-05 14428434720.1 +UniRef50_UPI0003B677A0 trehalose phosphatase 3.24179055267e-05 3.8594512666e-05 2493572097.63 +UniRef50_D5AMV2 0.00585479990965 0.00104801845391 -1.94055665952e+12 +UniRef50_C5WIK5 9.40325337864e-05 4.80463894119e-05 -18565170797.4 +UniRef50_A3TY58 0.000271217812282 5.86031302057e-05 -85835156229.6 +UniRef50_I6AD38 Rhodanese domain protein 1.35942699055e-05 1.56650643619e-05 836005133.554 +UniRef50_Q3BTY0 Leucyl phenylalanyl tRNA protein transferase 7.15154571387e-06 5.20737318081e-06 -784886309.276 +UniRef50_J1EAV0 Localization of periplasmic protein complex 1.42407759349e-05 1.85357788066e-05 1733945364.92 +UniRef50_Q08WY4 6.0550603539e-06 8.85087944195e-05 33287584263.4 +UniRef50_A5UK74 Xanthine uracil permease, UraA 0.00257311722102 0.00441311184489 7.42828408929e+11 +UniRef50_R8TPL3 0.00034247910761 3.83202453147e-05 -1.22792665157e+11 +UniRef50_UPI0002F0AFD4 glycerol 3 phosphate dehydrogenase 1.46873079729e-05 5.47277805429e-06 -3720018803.14 +UniRef50_O69763 Vanillin dehydrogenase 0.0003547788711 0.0091653848342 3.5569497456e+12 +UniRef50_A0A021V5W0 LctP family lactate transporter 0.00386871830562 0.00214125642029 -6.97397561449e+11 +UniRef50_UPI000328D943 PREDICTED 0.000247609148869 0.000343427211886 38682927859.8 +UniRef50_Q8P322 tRNA lysidine synthase 0.00559811980106 0.0025382496282 -1.23530713761e+12 +UniRef50_P50178 Modification methylase LlaDCHIB 0.00295776896385 0.000225146153897 -1.10319336143e+12 +UniRef50_UPI0002DF814C hypothetical protein 7.09205888256e-05 5.94525032505e-06 -26231341489.8 +UniRef50_U3T3H2 Outer membrane cobalamin receptor protein 0.00012716768271 0.00643375108484 2.54604510992e+12 +UniRef50_Q8A0U0 GTP cyclohydrolase 1 4.09312928036e-05 0.000933468649062 3.60328283386e+11 +UniRef50_E4U994 7.28460535183e-05 0.000420326020798 1.4028192685e+11 +UniRef50_P56148 DNA repair protein RadA homolog 0.000119331714078 0.00501095270892 1.97480742256e+12 +UniRef50_S1T0A0 Molybdopterin guanine dinucleotide biosynthesis protein MobA 3.60545915537e-06 3.62248736218e-06 6874496.04879 +UniRef50_Q9ZLF9 Ribonucleoside diphosphate reductase subunit alpha 0.000251528325992 0.00365176545422 1.37271745427e+12 +UniRef50_Q5L0L0 Chemotaxis response regulator protein glutamate methylesterase 5.47385240571e-06 5.86052574605e-06 156104772.511 +UniRef50_Q7UIA6 3 isopropylmalate dehydratase small subunit 3.22272789678e-05 5.30062500842e-05 8388725626.34 +UniRef50_Q8E0C9 Group B oligopeptidase PepB 0.00445720595275 0.00150548358306 -1.19164654235e+12 +UniRef50_K1WM50 1.55668959688e-05 0.000187786539651 69527183527.1 +UniRef50_UPI00016C089F competence damage inducible protein A 1.67431573981e-05 5.75415102687e-06 -4436396722.33 +UniRef50_K2N567 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 5.33395438294e-05 3.33540933688e-05 -8068371600.0 +UniRef50_V6UH50 9.00790839893e-06 0.000245429383193 95446250592.1 +UniRef50_A1UTH5 Peptidyl tRNA hydrolase 6.81921278934e-05 3.51198236662e-05 -13351695059.3 +UniRef50_J7LD22 2.23072413933e-05 9.72494841897e-06 -5079626075.82 +UniRef50_W1N6M3 0.000107858990348 4.91572138841e-05 -23698627510.3 +UniRef50_J7MT36 Phage infection family protein 3.79907093011e-06 0.00165251376045 6.65606352164e+11 +UniRef50_UPI000262CD24 dihydroorotate dehydrogenase 2 5.64432813214e-06 6.69613784165e-06 424628486.886 +UniRef50_UPI000474A0FC cation transporting ATPase PacS, partial 3.62633600666e-06 5.97220036057e-06 947054226.666 +UniRef50_P0A9S8 High affinity branched chain amino acid transport ATP binding protein LivG 0.00512397489533 0.000994326341755 -1.66718979756e+12 +UniRef50_UPI0003B61CAA DNA polymerase III subunit alpha 2.57949696976e-06 1.00975679278e-05 3035137502.87 +UniRef50_UPI000441931B PREDICTED 2.062660605e-05 7.29575306157e-06 -5381828939.38 +UniRef50_UPI0003EB11F8 hypothetical protein 0.000317946783882 0.000150828145793 -67467844972.8 +UniRef50_B9JLP2 Dipeptide ABC transporter 0.0144319630433 0.000755232268359 -5.52146404619e+12 +UniRef50_S5NIJ4 6 pyruvoyl tetrahydropterin synthase family protein 0.000196949211577 0.0134595635748 5.354280169e+12 +UniRef50_UPI00046D9084 hypothetical protein 1.1574838913e-05 0.000564089116712 2.2305679406e+11 +UniRef50_A0A024HLC2 Peptidoglycan synthase FtsI 0.00126718909768 0.000601422526307 -2.68778134738e+11 +UniRef50_UPI0003EABD05 PREDICTED 3.53765437387e-05 7.09944790988e-05 14379397586.1 +UniRef50_UPI0003F6C60F hypothetical protein 6.23776261745e-06 7.10100760025e-06 348502592.764 +UniRef50_Q02127 Dihydroorotate dehydrogenase , mitochondrial 3.88577241031e-06 5.45527593257e-06 633627831.91 +UniRef50_Q63JM0 Tryptophan synthase alpha chain 0.000730735717188 0.00933192821108 3.47240695828e+12 +UniRef50_UPI00037DE56E hypothetical protein 1.0181075704e-06 6.55994989111e-06 2237309750.92 +UniRef50_P55798 Serine threonine protein phosphatase 1 0.00367472350853 0.0019272742775 -7.0546669818e+11 +UniRef50_A1AJA0 0.000367681157978 0.000757222321012 1.57262547724e+11 +UniRef50_V2WBL1 0.000101790673079 0.0054597983691 2.16309345703e+12 +UniRef50_D5BNR0 1.54963159223e-05 3.95853145172e-05 9725024338.02 +UniRef50_UPI000464D525 hypothetical protein 3.67045210941e-05 1.49796554692e-05 -8770594846.85 +UniRef50_F7ZCI7 YcjX like protein 0.000559933228429 0.000176726048331 -1.54705441086e+11 +UniRef50_P77551 Putative Rz endopeptidase from lambdoid prophage Rac 0.00200978496923 0.000453994425311 -6.28091734277e+11 +UniRef50_P0AFR7 Inner membrane ABC transporter permease protein YcjO 0.00371800615952 0.000974390098632 -1.10763147174e+12 +UniRef50_A0A011MK47 Sulfate starvation induced protein 7 1.23555401582e-05 5.65188692134e-06 -2706347074.8 +UniRef50_Q8C3X4 Translation factor Guf1, mitochondrial 0.000162689593318 0.00607355481825 2.38628882578e+12 +UniRef50_P15034 Xaa Pro aminopeptidase 0.00272522256053 0.000661161887643 -8.33286622518e+11 +UniRef50_E8SF18 Aldose 1 epimerase 0.0262337392811 0.00499367281283 -8.57487547818e+12 +UniRef50_A0A017HMF0 0.00109951483069 7.68717325399e-05 -4.12853567965e+11 +UniRef50_C4ZAJ9 ABC transporter, substrate binding protein 0.000433870517968 0.00165172626081 4.91663308155e+11 +UniRef50_Q3KKE6 Methionyl tRNA formyltransferase 1.15994981852e-05 1.01760715423e-05 -574654803.148 +UniRef50_J9NYM1 5.62734213803e-05 0.000796812327947 2.98964644015e+11 +UniRef50_C3QRE5 2.04045915274e-05 5.28306306203e-05 13090789894.0 +UniRef50_UPI000454A2DB PREDICTED 4.10028204569e-05 0.000583730781846 2.19105938034e+11 +UniRef50_A4WNL3 Alkane 1 monooxygenase 0.00461211358478 0.000797567668071 -1.53997899632e+12 +UniRef50_Q2KUS4 Glutamate 1 semialdehyde 2,1 aminomutase 1.30300919849e-05 5.17109824215e-05 15615950137.2 +UniRef50_Q49XA7 Response regulator 0.0262766745275 0.00969861921099 -6.69276436689e+12 +UniRef50_W0NGN9 0.000245436890964 0.000103899038154 -57140568044.2 +UniRef50_UPI0001DD0A5B glucose methanol choline oxidoreductase 3.25551130128e-05 1.51054561154e-05 -7044640620.85 +UniRef50_UPI0002DA0766 hypothetical protein 9.97826103677e-05 1.70678993212e-05 -33392943873.1 +UniRef50_UPI000465EE27 transcriptional regulator 0.00051907931128 0.000178688564362 -1.37419921595e+11 +UniRef50_S9S9T8 8.71142785697e-06 8.93553676139e-07 -3156171742.91 +UniRef50_Q4FQM5 Possible acyl CoA dehydrogenase 0.000256184774824 0.00805647737903 3.14907384467e+12 +UniRef50_F0LEQ2 1.76125021984e-05 3.73462807507e-06 -5602668084.24 +UniRef50_UPI0004011469 glutamine synthetase 3.88022418163e-06 3.84890521942e-05 13972008566.8 +UniRef50_Q2NVF9 Ribonuclease H 4.92115386828e-05 2.27583395313e-05 -10679481114.7 +UniRef50_UPI000360E579 hypothetical protein 3.48693396424e-06 3.66772317774e-06 72986824.0231 +UniRef50_UPI00034CA4EE hypothetical protein 1.18349023133e-05 7.84339940452e-06 -1611418705.52 +UniRef50_T1Y907 Glycerol uptake operon antiterminator regulatory protein 0.010060208328 0.00517895372108 -1.97062238454e+12 +UniRef50_X0W5G8 Marine sediment metagenome DNA, contig 1.37658217162e-05 0.000557978103331 2.19705176324e+11 +UniRef50_P39634 1 pyrroline 5 carboxylate dehydrogenase 0.0312434604054 0.05662210642 1.02456708271e+13 +UniRef50_UPI0003D2D096 helicase subunit of the DNA excision repair complex 0.000213068221822 0.00035283242594 56424524302.1 +UniRef50_UPI0004195273 metallophosphoesterase 3.00129406799e-05 0.000103183996409 29540053107.7 +UniRef50_Q3SKN6 Ribosome recycling factor 0.00359509751005 0.00337254524287 -89847081284.0 +UniRef50_M2SV33 3.08187578723e-06 2.11594207944e-05 7298126755.83 +UniRef50_Q98HV6 Peptidyl tRNA hydrolase 6.18019648583e-05 3.148071852e-05 -12241059230.3 +UniRef50_J7L680 4.04418090133e-05 1.8599765526e-05 -8817900987.84 +UniRef50_UPI000475208B hypothetical protein 8.66354316966e-05 1.60894354595e-05 -28480284377.6 +UniRef50_P0A9P2 Dihydrolipoyl dehydrogenase 0.00293539989047 0.00116350489329 -7.15335753958e+11 +UniRef50_K1V9D8 2.72130078112e-05 8.60981672297e-06 -7510336529.13 +UniRef50_P56262 Putative carboxymethylenebutenolidase 0.00265468570168 0.000716965950952 -7.82281241865e+11 +UniRef50_P27242 Lipopolysaccharide 1,2 N acetylglucosaminetransferase 0.00223156188007 0.000223724776658 -8.10588477579e+11 +UniRef50_UPI00036005C8 Cro Cl family transcriptional regulator 0.000302352917294 3.32271176516e-05 -1.0864938786e+11 +UniRef50_D6ZGV8 Hydrolase, alpha beta domain protein 9.96005247615e-05 0.00346275126597 1.35774522473e+12 +UniRef50_UPI0003B63445 3 oxoacyl ACP synthase 1.15942492086e-05 3.92712444924e-05 11173542631.0 +UniRef50_UPI0004701497 hypothetical protein 1.15266624298e-05 1.32079993173e-05 678776333.808 +UniRef50_UPI00037075A9 hypothetical protein 1.28464256146e-05 1.42634073441e-05 572052912.52 +UniRef50_UPI00036443D8 hypothetical protein 1.83519997307e-05 1.36747211517e-05 -1888274759.0 +UniRef50_X0XIH0 Marine sediment metagenome DNA, contig 0.000117136984514 2.43647132904e-05 -37453304336.8 +UniRef50_Q2RJX2 Ribonuclease 3 1.36690282123e-05 5.21028633718e-05 15516210890.1 +UniRef50_Q82ZC9 Mannonate dehydratase 0.00038261443205 0.0090494550284 3.49890990284e+12 +UniRef50_UPI0003AEBAC4 PREDICTED 1.31413635789e-05 9.60149128807e-07 -4917705753.82 +UniRef50_Q4L8C1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00879889537516 0.00466730089782 -1.66797539087e+12 +UniRef50_UPI000380E91C hypothetical protein 7.21708016402e-05 5.59215609367e-05 -6560017872.61 +UniRef50_B9KSB3 0.00139052871764 0.00135259559632 -15314066568.6 +UniRef50_Q83KI3 UPF0339 protein YegP 0.000801986811085 0.00308740437904 9.22651117409e+11 +UniRef50_A6LQL4 Methylated DNA protein cysteine methyltransferase 0.000356118857413 0.000381053813154 10066547619.0 +UniRef50_Q5FKB1 Trehalose 6 P hydrolase 0.0063583902874 0.00213256877819 -1.70601599993e+12 +UniRef50_R1CXE8 4.17206431966e-05 0.000238378604517 79393232249.4 +UniRef50_E6MXC7 Chorismate mutase 0.000146691446449 0.00638783807577 2.51962748174e+12 +UniRef50_UPI0001911376 DNA binding transcriptional activator of porin biosynthesis, partial 2.80483475261e-05 6.05030742556e-05 13102371445.0 +UniRef50_D5QD63 Phosphoribosylaminoimidazole carboxylase ATPase subunit 0.00174981661799 0.00035605686715 -5.6267791477e+11 +UniRef50_D7CSG3 ABC transporter related protein 0.000479138807593 0.0379434082039 1.51247852936e+13 +UniRef50_X7EKT4 3.70977852084e-05 2.35936272629e-05 -5451794277.25 +UniRef50_UPI0000166DA8 COG0583 2.22015380385e-05 1.48156109259e-05 -2981789410.87 +UniRef50_Q834F4 UPF0122 protein EF_1701 0.00102950724232 0.0180393758711 6.86709270001e+12 +UniRef50_Q8ZKQ1 Autoinducer 2 binding protein LsrB 0.0100166848175 0.00458056345516 -2.19462890269e+12 +UniRef50_B7VKH0 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.00309970164874 0.00127375106598 -7.37158657194e+11 +UniRef50_P69925 Ribonucleoside diphosphate reductase 1 subunit beta 0.00389285407546 0.00429294621717 1.61522107291e+11 +UniRef50_Q28NI7 ATP dependent Clp protease proteolytic subunit 1.62277173087e-05 4.22969274885e-05 10524460054.8 +UniRef50_Q9A8A3 0.000593504540491 0.000212804769119 -1.53693169414e+11 +UniRef50_R1CGH2 0.00011438560723 0.000262036804059 59608600043.8 +UniRef50_Q2T0L2 UDP N acetylenolpyruvoylglucosamine reductase 0.000469722778002 0.000380209008191 -36137807330.2 +UniRef50_A0A017HNY4 Paraquat inducible protein B 1.82422019514e-05 5.58002212442e-05 15162633277.2 +UniRef50_P0A8Y6 Sugar phosphatase YidA 0.00678688135142 0.00489113011696 -7.65338036835e+11 +UniRef50_A5N3K4 CTP synthase 3.46635087934e-05 0.000177336186937 57598710957.4 +UniRef50_C5WIG1 16S rRNA mC 967 methyltransferase 0.0051321430333 0.00557047488845 1.76959948861e+11 +UniRef50_P50434 Serine hydroxymethyltransferase 1.00133587018e-05 1.29526459023e-05 1186626311.95 +UniRef50_UPI00037E292F Na translocating NADH quinone reductase subunit E, partial 7.14908434026e-05 8.28832726115e-05 4599263472.46 +UniRef50_P76104 0.00335553458941 0.000540901625088 -1.13630186713e+12 +UniRef50_A6LQE3 Spore coat protein CotS 0.000607469626782 0.00125765239711 2.62486763021e+11 +UniRef50_UPI0000222BCC Hypothetical protein CBG04553 8.92196171329e-07 0.000130647723141 52383898517.2 +UniRef50_P76100 0.00187818780999 0.00116713888886 -2.87059175012e+11 +UniRef50_Q9HXY5 Skp like protein 0.000457710083491 0.00105893827165 2.42723197459e+11 +UniRef50_U4Q2X2 0.0013470591303 0.000548575922964 -3.22357469292e+11 +UniRef50_UPI000455F125 MFS general substrate transporter 3.16447653523e-06 2.42489172182e-05 8512047438.91 +UniRef50_UPI000255A9B5 polyhydroxyalkanoate depolymerase, intracellular 0.000380018624549 6.24483168639e-05 -1.28207030238e+11 +UniRef50_P43801 Anaerobic glycerol 3 phosphate dehydrogenase subunit C 0.00192424024098 0.000288388401881 -6.60413461604e+11 +UniRef50_B3EFT2 Phosphoribosyl AMP cyclohydrolase 1.43082521179e-05 6.86055428384e-05 21920482566.6 +UniRef50_B9E2W7 0.00011005422415 0.00106261531073 3.84560599891e+11 +UniRef50_UPI0004635F62 hypothetical protein, partial 1.89931350216e-05 1.02720497608e-05 -3520809139.54 +UniRef50_D5RMQ9 0.00100317457958 0.000692148527801 -1.25565033822e+11 +UniRef50_A6UYW1 8 amino 7 oxononanoate synthase 9.41884458769e-06 4.38616684671e-06 -2031753761.93 +UniRef50_D9XAX0 Predicted protein 0.000556279417224 2.23179165768e-05 -2.15566810256e+11 +UniRef50_Q67PR9 Guanylate kinase 9.38150948695e-06 2.55495586822e-05 6527239864.38 +UniRef50_B8I4B5 50S ribosomal protein L9 0.000510116201151 0.00111272176274 2.43279260015e+11 +UniRef50_B9KUZ9 0.00161887715412 0.00220767355851 2.37704333797e+11 +UniRef50_C5QYC3 0.0374811977381 0.0267616167579 -4.32762638576e+12 +UniRef50_UPI0003705808 hypothetical protein 7.87129648936e-05 0.000108678971022 12097644398.3 +UniRef50_O17953 Dihydrolipoyl dehydrogenase, mitochondrial 0.000621545687068 0.0575784965126 2.29942199886e+13 +UniRef50_W9UQ60 Putative assembly protein 1.94758834616e-06 1.91731645075e-06 -12221135.6549 +UniRef50_A0A024HXW4 2.16692232949e-05 3.9768085016e-05 7306732574.82 +UniRef50_G4LCZ8 ABC transporter 0.00136274538262 0.00139222348632 11900672200.7 +UniRef50_A0A023XD37 0.00285644599929 0.000630569477283 -8.98613666512e+11 +UniRef50_Q67LS2 tRNA specific 2 thiouridylase MnmA 0.000105837193141 0.00182803218533 6.95271252056e+11 +UniRef50_A5IUF8 0.00525435426901 0.00249457223503 -1.11415787345e+12 +UniRef50_B9J8J7 Phosphate ABC transporter, permease protein PstC 0.00211341990744 0.000185928670631 -7.78151865278e+11 +UniRef50_UPI0003A61BAB glutaredoxin 0.000263593282703 0.000119443857929 -58194891693.6 +UniRef50_Q5M3M6 NADH nitroreductase, putative 0.0104806366719 0.00323940629224 -2.92337356416e+12 +UniRef50_D6T1N1 3.52258524946e-05 0.000196684230892 65182728676.0 +UniRef50_P30864 0.0021694972146 0.00449120544414 9.37302102829e+11 +UniRef50_UPI0003B3E508 ATP dependent DNA helicase RecQ 3.1950876362e-05 8.76427945006e-06 -9360713704.87 +UniRef50_I0C7F9 Transposase 0.00629222881243 0.00042188100743 -2.36993144615e+12 +UniRef50_UPI00040BBC52 hypothetical protein 6.07225557301e-06 7.44802587944e-06 555415355.306 +UniRef50_E8SP74 TnaB 0.000170244177435 0.00306879754673 1.17018156444e+12 +UniRef50_UPI00031AADB4 hypothetical protein 7.98129398548e-06 4.80507417835e-05 16176527783.5 +UniRef50_A6M044 Pyruvate phosphate dikinase, PEP pyruvate binding 0.000293205594883 0.000912992822274 2.50215709342e+11 +UniRef50_B1I8K9 50S ribosomal protein L24 0.000571948467958 0.00158205377784 4.07791908985e+11 +UniRef50_A4WU42 HAD superfamily hydrolase, subfamily IA, variant 3 0.0062012539686 0.00210555283762 -1.65348480648e+12 +UniRef50_A4X0H4 0.00722673297635 0.00466147221554 -1.03562724843e+12 +UniRef50_UPI0003B31D39 glucose 1 phosphate adenylyltransferase 8.27791414818e-06 1.74862295857e-05 3717509940.86 +UniRef50_G0NKG2 1.77670334942e-06 1.69565034975e-06 -32722090.5989 +UniRef50_F2RAR1 2.28512392982e-05 1.77935372772e-05 -2041856370.86 +UniRef50_UPI0003F0A9A6 PREDICTED 1.60354202724e-05 1.89036774594e-05 1157950623.87 +UniRef50_A6LTB9 0.000219915479931 0.000347847745481 51647825508.0 +UniRef50_W1CWF6 Dipeptide transport system permease protein DppC 3.99159947935e-05 4.50292672275e-05 2064290828.51 +UniRef50_P76027 Oligopeptide transport ATP binding protein OppD 0.00357888287322 0.00307108294839 -2.0500506106e+11 +UniRef50_B9E466 0.000157158450554 0.000899803575401 2.99814950181e+11 +UniRef50_Q9KA77 Translation initiation factor IF 2 0.00983590535411 0.00321618573988 -2.67246204136e+12 +UniRef50_D2ZRY0 0.00123811800729 0.000901692565299 -1.35819079336e+11 +UniRef50_UPI0003AE05F2 PREDICTED 7.3782790292e-05 3.0981870398e-05 -17279256587.6 +UniRef50_UPI0003B3B0BA preprotein translocase subunit TatA 0.000115263405025 8.09674765753e-05 -13845687173.5 +UniRef50_W8WPD9 Phage protein 0.00689815600913 0.000641992837382 -2.52568984419e+12 +UniRef50_A0A037XG38 Glyoxalase 1.61161911155e-05 3.31141839601e-05 6862298300.19 +UniRef50_D4M1S2 RNA splicing ligase RtcB 0.000316058040362 0.00094952870824 2.55739882182e+11 +UniRef50_UPI0003B5B654 membrane protein 0.000174038751499 6.76193933771e-05 -42962800786.2 +UniRef50_UPI00037C520F hypothetical protein 3.32171331842e-06 6.10559592037e-06 1123887568.49 +UniRef50_S3LIB4 4.18662965203e-05 3.22706734066e-05 -3873870802.54 +UniRef50_Q28NL2 2.85002946155e-05 1.51245360965e-05 -5399957853.14 +UniRef50_UPI00046673FB hypothetical protein 0.000190820262984 0.000150793327316 -16159365114.9 +UniRef50_UPI0004704A21 hypothetical protein 3.05012851836e-05 0.000500442944208 1.89721214581e+11 +UniRef50_Q3K425 Chromosomal replication initiator protein DnaA 0.00730992193626 0.00485592854234 -9.90707247011e+11 +UniRef50_UPI0003B72310 excinuclease ABC subunit C 8.01168615629e-06 1.68864653312e-05 3582857258.7 +UniRef50_UPI0004703B9E branched chain amino acid ABC transporter permease 5.90543812748e-06 0.000145323341918 56284718610.5 +UniRef50_UPI000471ED7E ABC transporter ATP binding protein 4.0981112959e-05 2.04501997775e-05 -8288581594.01 +UniRef50_UPI000372F99D hypothetical protein, partial 2.99295866321e-05 3.41608761337e-05 1708223495.56 +UniRef50_A6M1G6 2 aminoethylphosphonate pyruvate transaminase 0.000199494455397 0.002216107629 8.14131484809e+11 +UniRef50_UPI00042812AB hypothetical protein 1.05766180632e-05 4.39196381855e-05 13460986388.2 +UniRef50_X5P2F9 Replication initiation protein 5.0336391492e-05 2.85988750002e-05 -8775702157.06 +UniRef50_X5K1E3 0.00105837193136 0.000881542403566 -71388250312.8 +UniRef50_Q4L8N9 Multidrug export protein MepA 0.0109358220442 0.0013392441898 -3.87425624307e+12 +UniRef50_P18200 Phosphatidylglycerophosphatase A 0.00175102496705 0.000470986401241 -5.16767276857e+11 +UniRef50_W7WR71 5.97175079141e-05 9.90339160079e-05 15872516414.0 +UniRef50_E8PGH1 0.000264873318412 0.00617833074134 2.38733532792e+12 +UniRef50_A0A023S033 Peptidase C13 family protein 9.7123324747e-05 0.00543603920085 2.15538585505e+12 +UniRef50_Q95748 NADH dehydrogenase [ubiquinone] iron sulfur protein 3 2.31596783811e-05 1.63320142889e-05 -2756411778.88 +UniRef50_C1E3Y9 Carbamoyl phosphate synthase 0.000122376929233 0.00853044695092 3.39444104638e+12 +UniRef50_Q04E66 30S ribosomal protein S4 0.00302240830011 0.00285194301032 -68818929332.6 +UniRef50_A6QII8 Phage portal protein 0.0195619375102 0.00335419751104 -6.54326352901e+12 +UniRef50_UPI00020D9EF8 potassium transporting ATPase subunit B, partial 1.58739084151e-05 0.00139569780923 5.570518411e+11 +UniRef50_M1MIF0 Ankyrin repeat containing protein 0.000950716554642 0.000279921047585 -2.70808377785e+11 +UniRef50_A1B6P1 HupH hydrogenase expression protein 0.000234830164501 9.51567595386e-05 -56387867568.6 +UniRef50_C7ZU12 Membrane protein 0.0115553727064 0.00776425598109 -1.53052034424e+12 +UniRef50_R4Q1E8 Fumarate reductase, flavoprotein subunit 0.00608928826387 0.000838731833528 -2.1197140625e+12 +UniRef50_UPI00036817A2 hypothetical protein 1.14936885719e-05 3.92703272152e-05 11213769878.0 +UniRef50_UPI00037FABCF hypothetical protein 0.000383675115771 0.000127374069866 -1.03471877399e+11 +UniRef50_S1HAB5 Peptidoglycan hydrolase flgJ 0.00417425402772 0.000736340090513 -1.3879280444e+12 +UniRef50_A0LUK5 Holliday junction ATP dependent DNA helicase RuvB 1.34678639395e-05 0.00747569741644 3.0125936422e+12 +UniRef50_J0GC54 0.00811320802385 0.004134109254 -1.60641100242e+12 +UniRef50_P22525 Probable L,D transpeptidase YcbB 0.00297589868023 0.0018079251832 -4.71525233398e+11 +UniRef50_I1AUI6 Ferrichrome ABC transporter periplasmic ferrichrome binding protein FhuD 1 3.13701111483e-05 1.58419951028e-05 -6268890998.98 +UniRef50_P0AF07 Motility protein B 0.00270239899437 0.00145486187002 -5.03646046102e+11 +UniRef50_R3TZ40 1.05367221013e-05 7.62953861265e-06 -1173665649.52 +UniRef50_UPI0004736CD6 hypothetical protein 5.23469688489e-05 2.08775311889e-05 -12704598156.8 +UniRef50_UPI0000352E5F nucleoside diphosphate kinase 5.76301413004e-05 3.21534571033e-05 -10285250044.4 +UniRef50_F2ABU0 0.00107356687878 0.000318143429591 -3.04973716526e+11 +UniRef50_B9KX90 ABC polysaccharide export transporter, inner membrane subunit 0.0203645951903 0.00283948197266 -7.07510326327e+12 +UniRef50_T1HGL7 6.92048074568e-06 6.20125331163e-05 22241337597.5 +UniRef50_UPI0002491D69 glycine betaine carnitine ABC transporter, ATP binding subunit 0.000254215752016 2.89163098988e-05 -90956149517.7 +UniRef50_UPI0004732920 long chain fatty acid CoA ligase, partial 2.83798680388e-05 8.06922941792e-06 -8199654050.82 +UniRef50_UPI0002EB7410 hypothetical protein 0.000125596036843 7.94447966809e-06 -47497377378.5 +UniRef50_C5N039 0.00309414277407 0.00144174716362 -6.67092385113e+11 +UniRef50_UPI0002896C02 L glutamine synthetase 3.41657627596e-06 1.35287623231e-05 4082413597.69 +UniRef50_UPI0003740E86 hypothetical protein 9.96012827383e-06 1.24335738072e-05 998560314.411 +UniRef50_D7GDS8 Protein export membrane protein SecF 9.83890500953e-05 0.004185214865 1.64990173247e+12 +UniRef50_UPI00035114FD PREDICTED 2.78956326815e-06 6.08758455454e-07 -880417664.371 +UniRef50_Q18CD7 Proline tRNA ligase 2 7.56279560481e-06 2.99017479952e-05 9018509209.78 +UniRef50_Q9L6N7 Threonine efflux protein 0.00220539636516 0.00465375110875 9.88430854679e+11 +UniRef50_UPI00047C100E hypothetical protein 0.000104251224206 9.66886825505e-06 -38184057753.4 +UniRef50_UPI000463C607 hypothetical protein 2.38353935364e-06 1.76945660356e-06 -247912741.85 +UniRef50_F7ZSI9 Serine protein kinase , prkA protein 0.000323529144141 0.000698845092264 1.51519653902e+11 +UniRef50_J2PRG5 6.77514964598e-05 5.02104489412e-05 -7081536136.12 +UniRef50_S7Z9P2 1.87736526976e-05 6.85317979988e-06 -4812441189.45 +UniRef50_S9QRL9 Ribulose 5 phosphate 4 epimerase 2.06732314622e-05 0.000506537018293 1.96149172963e+11 +UniRef50_J1E8C3 2.03862942794e-05 1.74362834037e-05 -1190955591.22 +UniRef50_Q46831 0.00418288054075 0.00190629184652 -9.19086792745e+11 +UniRef50_Q1R0P6 7.05214081848e-06 2.34137554333e-05 6605384599.58 +UniRef50_UPI000429382E hypothetical protein 1.07771965608e-05 8.21361914025e-06 -1034947663.31 +UniRef50_UPI00036DD217 hypothetical protein 4.1676988856e-06 7.75111497774e-06 1446669049.86 +UniRef50_W4U314 Transglutaminase like enzymes 4.97530185333e-05 2.24101367546e-05 -11038656909.0 +UniRef50_Q03282 Urease subunit gamma 0.000681824738409 0.000374294570504 -1.24153702603e+11 +UniRef50_P16524 Putative N acetyl LL diaminopimelate aminotransferase 3.04673917925e-05 0.00267933318982 1.0693796279e+12 +UniRef50_UPI00037D91E8 hypothetical protein 2.69975941821e-05 1.56478033249e-05 -4582049846.65 +UniRef50_A6YIY0 Major ampullate spidroin 2 6.93625593045e-06 2.38516723892e-05 6828961199.88 +UniRef50_Q97KZ3 Putative ABC transporter ATP binding protein CA_C0773 0.000502922100373 0.00128041695837 3.13884215108e+11 +UniRef50_W6QWZ0 Putative acyl CoA thioester hydrolase 0.000281705961835 0.000501954739708 88917134383.8 +UniRef50_Q6AQS4 Aspartate tRNA ligase 0.0268282422176 0.00590881860223 -8.44542802373e+12 +UniRef50_UPI00046EC96E hypothetical protein, partial 0.000133399139677 0.000142098485818 3512032790.1 +UniRef50_R9SMV0 Siroheme synthase CysG 0.00512865345631 0.000283958370386 -1.95586285728e+12 +UniRef50_E6MYI6 Esterase family protein 0.000583584479882 0.0015352030021 3.84180075092e+11 +UniRef50_UPI0003A50B9C hypothetical protein 2.06281087424e-05 2.66192631087e-05 2418702537.41 +UniRef50_A0YEX4 0.000141178686592 0.000367185114235 91241568250.2 +UniRef50_F5X5K7 TetR family transcriptional regulator 0.00336299485171 0.00192021489492 -5.82467973457e+11 +UniRef50_UPI000382E61F hypothetical protein, partial 2.08207063785e-05 5.48572424133e-05 13740967272.5 +UniRef50_E0TW67 Quinol oxidase subunit 2 0.0100030010767 0.00304823568594 -2.80772413282e+12 +UniRef50_T2BF48 Ubiquinol cytochrome c reductase iron sulfur subunit 0.000505561592214 0.00169244544919 4.79159577766e+11 +UniRef50_X5E1J9 0.0192169882303 0.00192153394635 -6.9823871335e+12 +UniRef50_Q8DNI6 Phosphotransferase system, trehalose specific IIBC component 0.00594636626756 0.000872432519423 -2.04840931829e+12 +UniRef50_D4HBJ9 Adenosine deaminase 0.000184439408233 0.00357182429902 1.3675288483e+12 +UniRef50_X0VEK8 Marine sediment metagenome DNA, contig 1.16646909592e-05 1.49548888223e-05 1328293252.6 +UniRef50_Q8DWB5 0.00143028371616 0.00131251868976 -47543186297.1 +UniRef50_Q034T8 Holo [acyl carrier protein] synthase 0.00162028611099 0.00131908384106 -1.21599052538e+11 +UniRef50_P18357 Regulatory protein BlaR1 0.120613343904 0.0336519397722 -3.51073859844e+13 +UniRef50_UPI00036C8B47 hypothetical protein 0.00035369758798 5.27292956816e-05 -1.21504592897e+11 +UniRef50_K4R1X2 0.000239055457073 0.00035610077652 47252631768.3 +UniRef50_A4EPP0 0.0010486141029 0.000334125226082 -2.88447927336e+11 +UniRef50_UPI000379B93E quinone oxidoreductase 7.4048007735e-05 1.62958241127e-05 -23315265227.3 +UniRef50_A0A059FRG3 MFS permease 4.69824456e-06 7.69767855986e-06 1210908312.94 +UniRef50_B6IW38 0.000196954482659 9.07483171773e-05 -42876732301.3 +UniRef50_U5MV68 SCP like extracellular 0.000119710144452 0.00151120330616 5.61762864924e+11 +UniRef50_UPI00046EA5E6 hypothetical protein, partial 2.5254474021e-05 1.91844416248e-05 -2450546566.02 +UniRef50_S0EYL5 Sugar phosphate isomerases epimerases 0.000257077607856 0.000934112148509 2.7332715221e+11 +UniRef50_D6U9R9 Export membrane protein SecF 0.0185926367663 0.00498651446252 -5.49295853994e+12 +UniRef50_UPI0003F09E85 PREDICTED 3.94443038656e-05 3.01677049929e-05 -3745076801.58 +UniRef50_M4X5B0 0.000396783876871 0.000281701149624 -46460309213.5 +UniRef50_U5MX08 Phosphoglycerate mutase 0.000185953689091 0.00288193643771 1.08840131905e+12 +UniRef50_UPI000255BA65 potassium transporter 1.49911007733e-05 1.67742378661e-05 719874325.916 +UniRef50_UPI000225F75F hypothetical protein 0.00023613386411 7.87565811337e-05 -63535140373.8 +UniRef50_A7A485 0.000147258840698 0.000518798445402 1.49995097723e+11 +UniRef50_UPI00046F4E68 ribonucleoside diphosphate reductase, partial 3.55374393803e-05 1.49177660064e-05 -8324415172.89 +UniRef50_K0T2W7 8.05763126359e-05 9.97263701178e-05 7731113203.07 +UniRef50_B0VRG1 0.000151804016961 0.0014830098215 5.37424119025e+11 +UniRef50_A6M0V4 Methyl accepting chemotaxis sensory transducer 0.000450896885334 0.00143051930482 3.95485592065e+11 +UniRef50_UPI0003B6BA2C chemotaxis protein CheY 9.74131359043e-06 1.27829526296e-05 1227947005.22 +UniRef50_R7GI74 Formate C acetyltransferase 0.00654164373098 0.00814634046772 6.47835764465e+11 +UniRef50_E7C3S2 Dehydrogenases 3.57572490414e-05 0.000108810610168 29492538352.4 +UniRef50_Q3AEU3 Uroporphyrinogen decarboxylase 1.57553417194e-05 3.35784016388e-05 7195388003.0 +UniRef50_A4WPB6 Orotate phosphoribosyltransferase 0.0107579918925 0.00191864824567 -3.56855150117e+12 +UniRef50_Q5XCE8 Dihydrolipoamide dehydrogenase 0.00845873487721 0.00456029336268 -1.57384867867e+12 +UniRef50_A9UUK0 Predicted protein 7.56485825242e-06 8.83300214869e-05 32605887497.8 +UniRef50_A3MIQ6 Phosphoglucosamine mutase 0.000942583166592 0.0117895012217 4.3790339255e+12 +UniRef50_Q3J3N9 Chemotaxis protein methyltransferase 0.0129078550555 0.00301574950863 -3.99356439906e+12 +UniRef50_J9Z0P1 X Pro dipeptidyl peptidase 8.36724282894e-06 2.68206541528e-05 7449868600.28 +UniRef50_Q7NK15 Glr1665 protein 0.00298971767865 0.0461228076745 1.74133577338e+13 +UniRef50_D3E1W6 tRNA guanylyltransferase ThgL 0.00473932000539 0.000494253899902 -1.71378527961e+12 +UniRef50_UPI000366C0D7 hypothetical protein 1.35030912641e-05 5.71257007449e-06 -3145129004.69 +UniRef50_UPI000314B2B3 hypothetical protein 2.32571311341e-05 2.59970100207e-05 1106122728.62 +UniRef50_B9TDV5 8.14132254934e-05 0.000127109055325 18447967253.9 +UniRef50_A0A009F5X4 Pirin family protein 8.52632154369e-06 3.126515518e-05 9179946175.84 +UniRef50_C4WAX5 1.76950919503e-06 1.95270862694e-05 7168951774.91 +UniRef50_A6LTQ4 HAD superfamily hydrolase, subfamily IA, variant 3 0.00017132495712 0.00069687498683 2.12170996218e+11 +UniRef50_UPI0002DD18E5 hypothetical protein 2.23472838387e-05 3.17348135845e-05 3789860956.32 +UniRef50_U1MU63 8.07254431151e-06 4.6296282207e-05 15431392046.4 +UniRef50_UPI000237F107 hypothetical protein 0.000142797670471 0.000110028936377 -13229140071.3 +UniRef50_F4DTR0 3.12957715226e-05 6.24227005909e-05 12566323235.2 +UniRef50_E8SJR1 0.035392014305 0.00137727785043 -1.37321665145e+13 +UniRef50_B2IJH9 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.10527348067e-05 7.10249786579e-05 24211530784.9 +UniRef50_A1WJX6 TRAP dicarboxylate transporter, DctM subunit 0.00840680729705 0.00176307805325 -2.68215502345e+12 +UniRef50_UPI0004174C64 hypothetical protein 2.81446306652e-05 8.99288536133e-05 24943048981.8 +UniRef50_M8YJZ4 Protein rarD 0.00071790856919 0.000531162024347 -75391871790.9 +UniRef50_B1YGD3 Thymidylate kinase 9.0325744206e-06 1.42661934269e-05 2112876216.57 +UniRef50_A6SYG4 ABC type multidrug transport system, ATPase component 0.00220162131832 0.000790192288099 -5.69811219682e+11 +UniRef50_UPI00036B3D28 hypothetical protein 1.98503350708e-05 3.51843861112e-05 6190544574.98 +UniRef50_UPI000477DA5B hypothetical protein 1.00729387197e-05 3.05747837619e-05 8276846429.47 +UniRef50_UPI0004635914 hypothetical protein, partial 2.07317536624e-05 3.23748677672e-05 4700468041.18 +UniRef50_UPI000360F81F hypothetical protein 1.5185123517e-05 8.59359247798e-06 -2661081967.63 +UniRef50_I1AFI7 2.34543991513e-05 2.24882600838e-05 -390042197.409 +UniRef50_B7MFJ5 Phosphopantetheine adenylyltransferase 0.00131176139184 0.00644754944767 2.07338066135e+12 +UniRef50_UPI00037AFD46 hypothetical protein 6.54189755266e-05 1.29661441851e-05 -21175851681.2 +UniRef50_Q9C0V7 0.000622351616997 0.000111021317735 -2.0643031654e+11 +UniRef50_D4DV01 6.08061200072e-05 9.42060557543e-05 13483963924.4 +UniRef50_K0NAU6 Aspartate aminotransferase 0.0048565053391 0.0037227589574 -4.57707326925e+11 +UniRef50_K4NFJ8 0.000231586496233 0.00268657523081 9.91109078249e+11 +UniRef50_V6QFW8 0.0739194987939 0.0258283992391 -1.94149670344e+13 +UniRef50_UPI0004642118 tRNA 2 thiouridylase 4.3859031515e-06 1.00117372046e-05 2271218243.98 +UniRef50_D6M1S6 Peptide ABC transporter, permease 0.000457700434745 5.74972321476e-05 -1.61566943934e+11 +UniRef50_W8ZM57 7.13607219438e-05 4.67764911256e-06 -26920774795.3 +UniRef50_UPI00037A84FF XRE family transcriptional regulator 1.88763688208e-05 5.16613577508e-05 13235702348.1 +UniRef50_A3PI40 Flagellar motor switch protein FliG 0.00166908965294 0.000174399629052 -6.03424704554e+11 +UniRef50_UPI000027FA94 50S ribosomal protein L18 7.65640117502e-05 0.000235728166702 64256522517.9 +UniRef50_P77357 p aminobenzoyl glutamate hydrolase subunit A 0.00197792310116 0.00050248755358 -5.95651436188e+11 +UniRef50_A0A011PVU6 0.000177231219462 4.38058181897e-05 -53865471807.3 +UniRef50_X4ZFB4 0.00705121689328 0.00592714909642 -4.53799963455e+11 +UniRef50_B7V5T6 Cardiolipin synthase A 0.000120427769058 0.000722241353194 2.42959528999e+11 +UniRef50_R1FZF8 2.39815923878e-06 9.23439108903e-06 2759870687.94 +UniRef50_A3ATB7 4.66104320255e-07 7.65585110073e-07 120904069.892 +UniRef50_R4Y9R8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.0077294752871 0.00485066919433 -1.16220934657e+12 +UniRef50_P0C0R2 HTH type transcriptional regulator SarS 0.0113330259086 0.00147585562656 -3.97946060394e+12 +UniRef50_A3M5V1 Porin for benzoate transport 0.000212070780251 0.00832904083046 3.27692041569e+12 +UniRef50_UPI000376439F hypothetical protein 0.000327130201036 2.03710650475e-05 -1.23842427557e+11 +UniRef50_A8AHA1 Vitamin B12 import ATP binding protein BtuD 0.00299849454437 0.000237202172853 -1.11476761525e+12 +UniRef50_A7X2A9 Peptide methionine sulfoxide reductase MsrB 0.00552539110143 6.93626983989e-05 -2.2026656193e+12 +UniRef50_G0DUV4 0.000322637597309 0.00261280952324 9.24570510068e+11 +UniRef50_X5PRY3 0.000195708085028 9.82495680869e-05 -39345199239.6 +UniRef50_G5RW92 Putative two component response regulator and GGDEF family protein YeaJ 1.22410701972e-06 4.50862218066e-06 1325999076.0 +UniRef50_P21880 Dihydrolipoyl dehydrogenase 0.0211868576991 0.00381327038302 -7.0139303974e+12 +UniRef50_E1IJ03 0.000290821435395 7.10389997931e-05 -88728866286.3 +UniRef50_UPI0003A0EB32 3 ketoacyl CoA thiolase 3.71770127718e-06 9.43197350437e-06 2306921820.12 +UniRef50_F5N2M6 5.58916685314e-05 6.62816605663e-05 4194567284.03 +UniRef50_UPI00034B4804 DNA methyltransferase 0.000103074374295 0.000298264133943 78800501217.6 +UniRef50_W8SRR9 MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr 0.00216016722841 0.00100489860424 -4.66396120318e+11 +UniRef50_Z2DE82 Biofilm formation protein PelB 7.38238569663e-06 9.1667092666e-06 720353321.309 +UniRef50_UPI0004658778 phosphoserine phosphatase 4.69875833353e-06 1.10074501252e-05 2546896292.65 +UniRef50_Q8Y3B0 Peptide deformylase 1 0.00090855523862 0.0189631901863 7.28887768367e+12 +UniRef50_UPI0002E0BEDB hypothetical protein 1.7760808452e-05 0.00015597211847 55797601897.8 +UniRef50_M5Q4Y7 2.89246005691e-05 0.000109609907984 32573648723.5 +UniRef50_P77425 Allantoate amidohydrolase 0.00376138962292 0.00113493120803 -1.06033349236e+12 +UniRef50_P54161 5 3 exonuclease 1.14458439327e-05 0.00230753040488 9.26957513382e+11 +UniRef50_B1HWM5 7.98241554919e-06 0.00398464379417 1.60542699767e+12 +UniRef50_Q9PII5 Diaminopimelate decarboxylase 1.14027009308e-05 0.000122933098996 45026190330.7 +UniRef50_H8GZA7 0.000226447684417 0.0130842386823 5.19084800869e+12 +UniRef50_Q4QLY5 Glycine tRNA ligase beta subunit 0.00382498002463 0.000756874595285 -1.23863181171e+12 +UniRef50_P52007 Protein YecM 0.00507305819682 0.000940831981157 -1.66823043138e+12 +UniRef50_UPI0003ADBF76 PREDICTED 0.000126588215871 3.17782038419e-05 -38275965305.8 +UniRef50_C1D104 0.00018874299443 0.0384699961574 1.54546116657e+13 +UniRef50_A0PTP8 Aminomethyltransferase 7.11464589601e-06 1.13745332077e-05 1719768782.42 +UniRef50_UPI00037044B2 hypothetical protein 8.48581228785e-06 7.96061611544e-06 -212028139.684 +UniRef50_A3QF48 Adenylate kinase 9.04088315146e-06 3.00943215498e-05 8499531436.14 +UniRef50_UPI000465597A phosphate starvation inducible E 4.14509753184e-05 3.31811406148e-05 -3338633752.13 +UniRef50_A4WT80 NADH quinone oxidoreductase subunit N 5.91907291573e-05 8.2773071598e-05 9520481031.19 +UniRef50_I0ELD1 9.45290456222e-05 0.00067449100513 2.34137759987e+11 +UniRef50_UPI000395686C 30S ribosomal protein S15 0.000342145810872 0.000881804465431 2.17866821202e+11 +UniRef50_Q2KU87 Phosphoheptose isomerase 1.05189883984e-05 1.62116606768e-05 2298201655.73 +UniRef50_B0VBV4 0.00018718313497 0.00558632761365 2.179700881e+12 +UniRef50_Q9RTX1 9.58086266163e-05 0.0236445439968 9.50691344443e+12 +UniRef50_UPI0004648F0C mechanosensitive ion channel protein MscL 0.000408186592693 9.56309713016e-05 -1.26182539844e+11 +UniRef50_A5W5N5 Fatty acid cistrans isomerase 0.00059177584712 0.00027358788728 -1.28456383993e+11 +UniRef50_P48591 Ribonucleoside diphosphate reductase large subunit 2.46591553521e-06 8.3125960094e-05 32563449798.4 +UniRef50_D2ASS3 0.000791214937858 0.0257388377059 1.00716614532e+13 +UniRef50_Q8CR16 0.010511605922 0.00441836764752 -2.45991506385e+12 +UniRef50_L0RET5 3.25170106831e-05 8.35133745445e-05 20587857886.6 +UniRef50_A1U1J0 6.99467051318e-06 9.23839939314e-06 905820882.489 +UniRef50_U3H8E5 7.29893643187e-07 6.00374000749e-07 -52288669.037 +UniRef50_K7S6P7 DEAD DEAH box helicase 7.85338395664e-05 0.0288323371967 1.16082632641e+13 +UniRef50_Q8D1U5 Protein NrdI 2.07799648781e-05 6.39510001023e-05 17428676688.2 +UniRef50_M9VHZ8 0.000228779387182 0.000847562781822 2.49810449742e+11 +UniRef50_UPI0002000914 non ribosomal peptide synthetase like protein 7.7798209129e-05 0.000138315656511 24431636140.7 +UniRef50_UPI0003B35CAD hypothetical protein 3.70378817718e-05 6.51042342623e-05 11330730913.3 +UniRef50_B4SCX8 Phosphoribosyl AMP cyclohydrolase 1.38213868875e-05 6.16540771858e-05 19310644046.5 +UniRef50_P37685 Aldehyde dehydrogenase B 0.00471161083383 0.008544838004 1.54752084758e+12 +UniRef50_A0R979 DNA topoisomerase 3 0.0134837050977 0.00602666265254 -3.01049954331e+12 +UniRef50_Q8RH06 0.000348280132548 0.000311430097992 -14876811151.0 +UniRef50_O34514 o succinylbenzoate synthase 4.61700594718e-05 0.00227650642377 9.00414159573e+11 +UniRef50_UPI000382F305 hypothetical protein, partial 8.12819209331e-05 5.14264392006e-05 -12053024343.4 +UniRef50_P64176 Macrolide export protein MacA 0.00251264096071 0.000636039558701 -7.5760701448e+11 +UniRef50_Q5ZZU2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.58356009293e-05 1.39532238939e-05 -759938708.555 +UniRef50_UPI00036CA565 50S ribosomal protein L4 1.35508233708e-05 0.00015597597618 57498781942.2 +UniRef50_B9ADD3 0.000488128433862 0.000613114266848 50458314525.1 +UniRef50_UPI00037ABBDF hypothetical protein 2.3662529626e-05 9.34364467829e-05 28168586578.5 +UniRef50_A0QSU4 0.000264870866007 0.00551275732244 2.11863616127e+12 +UniRef50_UPI000369A760 hypothetical protein, partial 6.32086040011e-05 1.94475906743e-05 -17666858088.1 +UniRef50_W4HGC6 5.45518734675e-06 1.21290005298e-05 2694300278.89 +UniRef50_R5HWX2 Cys Met metabolism PLP dependent enzyme 0.000402431200716 0.00257612717393 8.77547738634e+11 +UniRef50_F2JHX4 ABC type transporter, periplasmic subunit 0.000111134245983 0.000650174786569 2.17617281006e+11 +UniRef50_Q1J2D3 Permease YjgP YjgQ 0.000107750520127 0.012544677399 5.02093999927e+12 +UniRef50_S9QS42 6.44134353292e-06 4.13556428956e-05 14095331099.4 +UniRef50_B2V2J6 Sporulation protein YqfD 0.000100662930362 0.00202779999997 7.78008883633e+11 +UniRef50_Q9RW17 0.000562017339689 0.064927124305 2.59849835306e+13 +UniRef50_UPI0002489F97 hemolysin type calcium binding region, partial 5.471271286e-05 1.2017202591e-05 -17236701428.4 +UniRef50_UPI00045EBAA8 surfeit 1 2.17623619606e-05 4.06264267287e-05 7615654434.99 +UniRef50_U2Z2J1 1.41032048053e-06 1.17072917654e-06 -96725949.5367 +UniRef50_A0RAR3 1.93211698514e-05 0.000131641919103 45345264803.6 +UniRef50_UPI000367CE0F hypothetical protein, partial 5.12754443347e-05 5.69996666334e-05 2310938786.09 +UniRef50_G2L3N1 0.00212915152782 0.000373031627616 -7.08967153725e+11 +UniRef50_Q9ZJL8 ATP dependent Clp protease ATP binding subunit ClpX 8.49555863898e-05 0.00375746149196 1.48263570079e+12 +UniRef50_S9Z4U8 5.3143967059e-05 1.879604501e-05 -13866677627.6 +UniRef50_A6LUE7 0.000883734169502 0.000990110784359 42945544805.6 +UniRef50_W8SMD0 Flagellar protein FlaF 0.000101999844656 6.88660170806e-05 -13376532790.0 +UniRef50_B9UQU3 PI 2a backbone protein 0.000249279997828 8.4255836002e-05 -66622279203.3 +UniRef50_UPI000476AC5C hypothetical protein 3.79524603294e-05 4.5218090573e-05 2933224088.65 +UniRef50_Q5HQH1 Adapter protein MecA 0.0228932416539 0.00722435550387 -6.32572161761e+12 +UniRef50_Q8XHL9 Glycine tRNA ligase 0.000352098439873 0.00143030494717 4.35285198079e+11 +UniRef50_F6FZF8 0.00041918899485 0.000210439457392 -84274749916.7 +UniRef50_Q30RX5 Chemotaxis response regulator protein glutamate methylesterase 9.73473575703e-05 1.09862442536e-05 -34865041216.0 +UniRef50_Q9HUK1 DNA topoisomerase 4 subunit A 0.000577647555086 0.00521748489668 1.87315927201e+12 +UniRef50_Q6F9W4 LPS assembly protein LptD 0.000248487335777 0.00890409248528 3.49437401507e+12 +UniRef50_UPI000378F2FD hypothetical protein 6.5307921523e-06 1.32152173655e-05 2698584485.69 +UniRef50_A4WSI7 0.00416400641365 0.00133436256722 -1.14236194444e+12 +UniRef50_P9WNM4 Bifunctional enzyme CysN CysC 3.14446534612e-06 4.95579117036e-05 18737677851.6 +UniRef50_P73450 Nitrate transport ATP binding protein NrtC 2.10282309429e-05 3.6045148364e-06 -7034168005.23 +UniRef50_V9VLZ2 Cell wall shape determining protein 0.00918935409407 0.00268558176636 -2.62565269896e+12 +UniRef50_A0A024J9B5 Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit 3.35192986085e-05 4.99821955176e-05 6646273504.67 +UniRef50_N6YLX8 Putative metal dependent RNase 8.45071246435e-05 3.75979763788e-05 -18937798794.4 +UniRef50_G9WG62 ABC transporterpermease protein 0.0153078668516 0.00326741779454 -4.86087703728e+12 +UniRef50_R5LJ16 Putative phage terminase large subunit 1.65055381936e-05 1.1859735235e-05 -1875567664.8 +UniRef50_B7IFM5 Ribose phosphate pyrophosphokinase 0.000112079917295 6.46640619433e-05 -19142362663.5 +UniRef50_B9E484 0.00136315365789 0.000547579692773 -3.29257217936e+11 +UniRef50_UPI00034A1580 hypothetical protein 1.18303120535e-05 2.43131705021e-05 5039483137.6 +UniRef50_H9KE53 1.43744657801e-05 1.01731281856e-05 -1696131543.11 +UniRef50_P0A9K2 Protein PhoH 0.00217204459347 0.00047889195437 -6.83546497724e+11 +UniRef50_A4VGY1 Uroporphyrin III C methyltransferase, putative 0.000271809248739 0.000162858477137 -43984763472.0 +UniRef50_C1C967 N anthranilate isomerase 0.00727905669673 0.00592385942309 -5.47109769509e+11 +UniRef50_UPI0003B66D36 hypothetical protein, partial 4.03255982831e-05 5.70835912348e-05 6765407398.3 +UniRef50_N8TNI2 0.00162379728052 0.00835066260107 2.71571807783e+12 +UniRef50_Q6A9Q4 UDP N acetylmuramoylalanine D glutamate ligase 0.000185201372824 0.00486060792734 1.88751899975e+12 +UniRef50_UPI00037E4DB6 hypothetical protein 2.18520034376e-05 2.09396069493e-05 -368345658.691 +UniRef50_UPI0003607BC8 hypothetical protein 4.05066145205e-05 1.523891922e-05 -10200878662.3 +UniRef50_B9KSY4 0.00805241181623 0.00114932886837 -2.7868592964e+12 +UniRef50_UPI0003B3F32A molecular chaperone DnaK 1.40668500281e-05 2.79341150532e-06 -4551225472.3 +UniRef50_E8SJW5 Membrane protein, putative 0.0113906752525 0.00194342040142 -3.81397271423e+12 +UniRef50_A9D6B9 1.51666587333e-05 1.93203151693e-05 1676882074.31 +UniRef50_UPI00035DC5BA MULTISPECIES 5.27872907138e-06 9.04177534547e-06 1519187958.62 +UniRef50_UPI0002630664 dTDP 4 dehydrorhamnose reductase 1.27817555832e-05 1.46852950704e-05 768482250.039 +UniRef50_E3EZ66 2.20428722519e-06 1.58423616913e-06 -250322220.214 +UniRef50_UPI000471B278 MFS transporter 9.27278795047e-06 7.750209519e-06 -614683596.923 +UniRef50_A8I9B9 Enoyl [acyl carrier protein] reductase [NADH] 0.00343762479255 0.000468756674913 -1.1985684912e+12 +UniRef50_B0SHV0 0.00444469687498 0.000422817535233 -1.62368204347e+12 +UniRef50_A1B214 Cupin 2, conserved barrel domain protein 0.0145335169199 0.00215723238787 -4.99645793966e+12 +UniRef50_Q83MD7 Vitamin B12 binding protein 0.0018578542311 0.000568565053978 -5.20501862161e+11 +UniRef50_UPI0003C7EBB2 aminodeoxychorismate synthase 4.48722221794e-06 5.9761584313e-06 601101820.635 +UniRef50_A1TT41 Non canonical purine NTP pyrophosphatase 9.65486505716e-05 1.52117039665e-05 -32836723461.1 +UniRef50_R4ZCR7 MFS transporter 0.000110483704055 0.000142321303707 12853229670.8 +UniRef50_F8FR25 0.0229717920433 0.0057390990122 -6.95704964558e+12 +UniRef50_UPI00037A465E hypothetical protein 3.29121339423e-06 5.61358938868e-06 937571687.718 +UniRef50_I0C665 RsbU 0.0224370329922 0.005916366424 -6.66959582496e+12 +UniRef50_D6B3Y8 FscRII 0.000279982231076 0.000578992362705 1.20714059406e+11 +UniRef50_UPI000237CE2F malto oligosyltrehalose synthase 2.68636393645e-06 0.000125425331759 49551227486.7 +UniRef50_D9SLZ7 Methyltransferase type 11 0.000193914035367 0.000798082328577 2.43910153948e+11 +UniRef50_A5IP44 Acyl CoA dehydrogenase like protein 0.00644614401885 0.00227368634027 -1.68447236666e+12 +UniRef50_G8VEA6 0.000109039659282 0.00452995645857 1.78477836262e+12 +UniRef50_B2S968 Shikimate dehydrogenase 4.83467752864e-05 3.29684136972e-05 -6208433287.28 +UniRef50_Q985A5 GTPase Era 0.00354482028004 0.000598830737824 -1.18933212955e+12 +UniRef50_P0AEP8 Glyoxylate carboligase 0.00226201967424 0.00183034898026 -1.74270756355e+11 +UniRef50_UPI000362A221 50S ribosomal protein L20 1.22305691523e-05 3.53719256442e-05 9342449592.16 +UniRef50_Q9KDS9 Biotin carboxylase 0.000638164224375 6.48661460837e-06 -2.55016002619e+11 +UniRef50_V5XTD8 Periplasmic ribose binding protein 0.000991023531941 0.00273121725073 7.02537558854e+11 +UniRef50_Y2QRV2 0.0397186898838 0.00656567195954 -1.33842801693e+13 +UniRef50_Q8CT45 0.00305297248179 8.5042492089e-05 -1.19818975744e+12 +UniRef50_A5GF42 Dihydroorotase 4.18782441897e-06 1.58033532722e-05 4689331536.6 +UniRef50_B0REY1 3 isopropylmalate dehydratase small subunit 1.16054085059e-05 0.00227488793147 9.13714928119e+11 +UniRef50_F3H6D0 Acriflavin resistance protein 0.000767357747733 0.000201226434568 -2.28554158337e+11 +UniRef50_M1N4V8 Signal transduction histidine kinase 0.000100484291618 0.000330894831765 93019562512.6 +UniRef50_Q2YVN2 0.00292164706521 0.000436428628368 -1.00331318001e+12 +UniRef50_Q46836 Leader peptidase PppA 0.00365865134071 0.00108797187089 -1.03781484775e+12 +UniRef50_S9RYR7 Putative signal transduction protein 0.000244991505619 0.000191662965974 -21529385869.5 +UniRef50_UPI0003706081 hypothetical protein 3.56502111641e-05 0.0041149957771 1.64688186417e+12 +UniRef50_UPI000289FF7D transporter 0.00017741493035 6.47335387361e-05 -45490860550.7 +UniRef50_UPI000371D807 hypothetical protein 2.78606246914e-05 0.000141544340624 45895511178.2 +UniRef50_Q73CC7 3.35429500157e-05 0.00052032740856 1.96520859431e+11 +UniRef50_M4MLZ6 0.000208734789344 8.78336770246e-05 -48809262666.7 +UniRef50_Q8CM57 Degenerate transposase 0.000291087113737 3.08122633281e-05 -1.05076151042e+11 +UniRef50_UPI000363DABC hypothetical protein 0.000367877302268 6.2726447897e-05 -1.23193144532e+11 +UniRef50_UPI0003793433 hypothetical protein 1.80434264629e-05 3.09630487953e-06 -6034336405.03 +UniRef50_X6KX92 0.00273404061406 0.00052376873415 -8.92313881006e+11 +UniRef50_A8LNJ7 0.00018814459526 7.12891990516e-05 -47175957426.1 +UniRef50_UPI0003663A62 30S ribosomal protein S17 8.88165428637e-05 0.000288268292986 80521119072.5 +UniRef50_Q5HKF0 ATP dependent dethiobiotin synthetase BioD 0.00959930863855 0.00565770607504 -1.59127332379e+12 +UniRef50_C4RLU4 Feruloyl esterase 0.000547216181878 0.000142968129508 -1.63199899423e+11 +UniRef50_A6M1U5 Methyl accepting chemotaxis sensory transducer 0.000478830310969 0.00137857108573 3.63236391832e+11 +UniRef50_Q72KS4 Lon protease 1 6.25254696945e-06 0.000106588458217 40506838630.9 +UniRef50_P37093 Type II secretion system protein E 0.00367903452528 0.0116904005164 3.23428676113e+12 +UniRef50_Q897T7 Transcriptional regulatory protein 0.000134656119687 0.000225146153897 36531937248.2 +UniRef50_Q8Y5E4 Diadenylate cyclase 0.0218916624843 0.0120185736106 -3.98588713474e+12 +UniRef50_V5SSA5 0.00100901552059 0.000153677383443 -3.45310502146e+11 +UniRef50_Q9KNV7 Tryptophan tRNA ligase 0.00737278118224 0.00516879867676 -8.89774783369e+11 +UniRef50_A7G9R9 4.2589427e-05 2.26525643877e-05 -8048756089.4 +UniRef50_P76445 Inner membrane protein YeiU 0.00493739621862 0.00143003707713 -1.41596392556e+12 +UniRef50_Q03RR1 Bifunctional protein FolD 5.50890689464e-06 3.16153426798e-06 -947663134.884 +UniRef50_Q8CQA9 Integral membrane protein LmrP 0.0205803565841 0.00522429252534 -6.19943150063e+12 +UniRef50_A0A022FNV0 LysR family transcriptional regulator 5.75000007597e-05 1.42048841905e-05 -17478769849.8 +UniRef50_F8LV80 IS861, transposase OrfB 0.000256344357143 3.8387094787e-05 -87992021449.5 +UniRef50_B9E9D4 Respiratory nitrate reductase delta chain 0.00945605383046 0.0040477736899 -2.1833890598e+12 +UniRef50_M9VLK0 Endonuclease III 0.000640301204992 0.00543209645913 1.93450654604e+12 +UniRef50_Q5WAN2 GntR family transcriptional regulator 0.00060586971003 0.00376152569634 1.27397704593e+12 +UniRef50_I0C1S4 Carboxylesterase 0.0257218159013 0.00771209194544 -7.27074656516e+12 +UniRef50_Q161I1 0.000166116858309 5.78718497574e-05 -43699838268.1 +UniRef50_H8GVV6 Glutathione regulated potassium efflux system protein KefB, putative 6.56878170843e-05 0.00904746496659 3.62605365406e+12 +UniRef50_C7ZXI9 Mn2 and Fe2 transporter 0.0191542607107 0.00358632559457 -6.28496644642e+12 +UniRef50_Q9RUS5 Major facilitator family protein 9.10335985978e-05 0.0141888842712 5.69147531661e+12 +UniRef50_B7JGF8 Enterotoxin 1.67205367541e-05 0.000745041891486 2.94032268413e+11 +UniRef50_D5T2X9 0.000148228383511 5.20222868998e-05 -38839581783.5 +UniRef50_UPI0004413622 P loop containing nucleoside triphosphate hydrolase protein 1.37844864014e-06 4.78025689588e-07 -363511794.57 +UniRef50_Q7CQY4 Chitoporin 0.00140175613114 0.000203901062277 -4.83588790633e+11 +UniRef50_O31645 PTS system mannose specific EIIBCA component 0.0103999745738 0.00432243540091 -2.45357714389e+12 +UniRef50_M2PRH7 DNA topology modulation protein 1.56254310224e-05 0.000356356982486 1.37557508572e+11 +UniRef50_UPI0004680367 hemolysin 7.31133660879e-06 1.27029921056e-05 2176677487.12 +UniRef50_M2JNM4 Cellobiose phosphotransferase system IIC component 9.98640182185e-05 0.00116678526318 4.30729199186e+11 +UniRef50_A6LW23 L asparaginase, type II 0.000816905567068 0.000575803175682 -97335994061.6 +UniRef50_Q2YUT2 0.0104591965444 0.00156914325686 -3.5890236054e+12 +UniRef50_UPI0003697307 ATP dependent Clp protease adaptor protein ClpS 0.000618276708037 0.000458068884413 -64677864368.1 +UniRef50_D3FAE3 Plectin 0.000182502582427 0.000175958702661 -2641844563.97 +UniRef50_UPI000466A47B peptide ABC transporter ATP binding protein 1.04013050199e-05 3.92156841864e-05 11632718461.7 +UniRef50_UPI00047933C3 peptide permease BMEII0860 1.51697761182e-05 5.41008384753e-05 15716947611.4 +UniRef50_A1WIM3 Urease subunit alpha 0.0287686207112 0.0472948285247 7.47925743644e+12 +UniRef50_UPI000476A297 nitrogen regulatory protein 1.61537033214e-05 2.30484413805e-05 2783490362.41 +UniRef50_D8JEK3 0.000144815596745 0.00760531777493 3.01189627999e+12 +UniRef50_P31133 Putrescine binding periplasmic protein 0.00199631077004 0.000342219856026 -6.67776799964e+11 +UniRef50_V8G5F1 Cell wall binding protein 0.000810775824679 0.00145335553833 2.59417315741e+11 +UniRef50_UPI0003B2E824 4 alpha glucanotransferase 8.4055187984e-06 0.000463652596055 1.83788831599e+11 +UniRef50_B2TBH4 Major facilitator superfamily MFS_1 0.000835113341018 0.00104840558383 86108695813.4 +UniRef50_M1E1G1 LOV protein 0.000568373790029 0.000396398262003 -69428631041.1 +UniRef50_UPI00047D2208 hypothetical protein 0.00113242911979 0.000281160496261 -3.43667589559e+11 +UniRef50_U4PPL6 0.0150330978336 0.00227362625767 -5.15115525151e+12 +UniRef50_B0V7I3 0.00128516843625 0.00628685166454 2.01924089682e+12 +UniRef50_UPI0003616A07 MULTISPECIES 0.000140459180816 4.60301497026e-05 -38122158635.0 +UniRef50_P52612 Flagellum specific ATP synthase 0.00360782999344 0.000484137381696 -1.26107303938e+12 +UniRef50_Q7WQL9 Glutamate 5 kinase 0.000265089036265 0.00831752583732 3.2508675511e+12 +UniRef50_I7BYL0 8.19357388814e-06 0.000908091754472 3.63299938494e+11 +UniRef50_A7HIP1 LigA 0.000491029858384 0.000577620184029 34957577045.7 +UniRef50_E2XUR6 Amino acid ABC transporter, permease protein 0.000838445631845 0.00539986048301 1.84149915027e+12 +UniRef50_Q9RRW1 Ribonucleoside diphosphate reductase 0.000190794174278 0.0301075807813 1.20777738735e+13 +UniRef50_UPI0003671810 hypothetical protein 2.43934375552e-05 2.78321809817e-05 1388262919.41 +UniRef50_M1LPJ1 Transcriptional regulator, RpiR family 0.00034933983881 0.000454333392607 42387186083.6 +UniRef50_Q2RV04 GTPase Obg 0.00409545719957 0.00060408242017 -1.40951084243e+12 +UniRef50_UPI0002887BFA HAD superfamily hydrolase 6.63866576088e-05 0.000182443965008 46853759180.3 +UniRef50_Q8FCW0 Phosphoglycolate phosphatase 0.00212946742435 0.00174204522803 -1.56407094859e+11 +UniRef50_B9KNX2 Transcriptional regulator, ArsR family 0.00125481069959 0.000492194508663 -3.0787751463e+11 +UniRef50_UPI00047A420C hypothetical protein 1.38019373523e-05 9.63401699748e-06 -1682640593.38 +UniRef50_B1KX53 Putative ribosome biogenesis GTPase RsgA 0.000189058091245 0.00167472460783 5.99781803922e+11 +UniRef50_UPI00035FFD13 hypothetical protein 0.000163237315015 4.13073941763e-05 -49224605291.1 +UniRef50_D6SI32 0.000390849669984 1.62694473932e-05 -1.51222632476e+11 +UniRef50_R7PWI6 0.00376933097395 0.000253829154983 -1.41925122438e+12 +UniRef50_UPI00040A8670 beta hexosaminidase 6.14562275701e-06 2.63722155292e-05 8165723710.34 +UniRef50_A3ZZL8 8.50043046296e-06 3.64219781734e-05 11272271446.6 +UniRef50_UPI0004764961 molecular chaperone GroEL 2.92488264445e-05 9.06408376429e-06 -8148828314.64 +UniRef50_Q88ND5 Alginate biosynthesis protein AlgA 2.5468799188e-05 2.93741622563e-05 1576642994.87 +UniRef50_UPI000472B134 3 oxoacyl ACP reductase 1.11663287663e-05 1.34790609291e-05 933678354.537 +UniRef50_D7FE80 Sialic acid binding adhesin SabA 7.64657641136e-05 0.0028184570463 1.10697552864e+12 +UniRef50_P07102 Periplasmic AppA protein 0.00514775097718 0.00058609691446 -1.84159572291e+12 +UniRef50_K9BV07 0.00021679158317 0.0119538457782 4.73839280837e+12 +UniRef50_A6TE36 Undecaprenyl diphosphatase 0.00518134590673 1.63013729954e-05 -2.08519186049e+12 +UniRef50_UPI000288E151 ABC transporter 7.5515023376e-06 2.33972408802e-05 6397119098.73 +UniRef50_R8AGJ1 0.00406232114679 8.64420507871e-05 -1.60511118058e+12 +UniRef50_Q9HQU4 Inosine 5 monophosphate dehydrogenase 0.00256934046596 0.000833345775886 -7.00842359432e+11 +UniRef50_UPI0001758483 PREDICTED 1.5605983435e-06 1.6052811522e-06 18038998.1919 +UniRef50_P75843 0.00250472618045 0.000499894598512 -8.09375111679e+11 +UniRef50_UPI00047BEFD1 nucleotidyl transferase 3.16491338201e-05 5.29431667504e-06 -10639763091.5 +UniRef50_H2HGS8 Phage associated protein 4.11908735051e-05 5.38977115361e-05 5129906443.55 +UniRef50_M9SEQ2 0.000256690416185 0.000287646141427 12497206149.7 +UniRef50_P75849 0.0022881093597 0.0160981301435 5.57527485843e+12 +UniRef50_M4X4D0 ATP dependent RNA helicase RhlE 7.53966688803e-05 0.00019589980848 48648596196.3 +UniRef50_K9SGS9 ATPase associated with various cellular activities AAA_5 0.000306826554659 0.00129169752968 3.97604498342e+11 +UniRef50_Q83BB6 RNA polymerase sigma factor RpoD 0.00317366191555 0.000523293986209 -1.06998605675e+12 +UniRef50_H7CRL6 0.000832851368604 0.003942881016 1.25555713301e+12 +UniRef50_H7E757 RHS repeat associated core domain protein 0.000891874136272 0.000229393947457 -2.67451381771e+11 +UniRef50_B5ZPH5 0.000211331379804 2.7464720449e-05 -74229226679.2 +UniRef50_W5XAZ0 OmpR family two component response regulator 1.46083727988e-05 2.9775817522e-05 6123283560.23 +UniRef50_J0WVH5 2.37034264883e-05 1.48433152947e-05 -3576935614.65 +UniRef50_C0DVM5 4.44723547594e-05 2.70130320718e-05 -7048542818.97 +UniRef50_P37545 0.026878234352 0.0064674087178 -8.24010077752e+12 +UniRef50_UPI00040973E2 hypothetical protein 1.26498779992e-05 1.18028896456e-05 -341939592.064 +UniRef50_Q161C9 0.00108362703757 0.00118117786705 39382466944.4 +UniRef50_S7VZD9 Excinuclease ABC 4.52867357689e-06 7.64508874705e-05 29035880333.7 +UniRef50_G8SMI0 0.000243986431371 6.37939377317e-05 -72745920892.6 +UniRef50_A0QP90 Glucose 6 phosphate 1 dehydrogenase 0.0100977095399 0.00304653127692 -2.84664719245e+12 +UniRef50_Q5HJ36 0.00270637297849 0.000904030730184 -7.27627682869e+11 +UniRef50_T0V0U2 Cell division initiation protein DivIVA 0.00718417671992 0.00224228769949 -1.99510124135e+12 +UniRef50_UPI000289A6DA transposase 6.0957187001e-05 0.00015156308984 36578714835.6 +UniRef50_C5CWI4 ABC transporter related 0.00142868891815 0.00606903668809 1.8733653382e+12 +UniRef50_A7GTX6 Pseudouridine synthase 0.00729480451685 0.00175269365183 -2.23741816556e+12 +UniRef50_Q89AP7 Acetolactate synthase large subunit 0.00108658124755 0.0118663381865 4.35192015877e+12 +UniRef50_UPI0003EE9416 peptide ABC transporter permease, partial 2.8923432937e-05 0.000259579795167 93118803904.1 +UniRef50_L7WXH7 0.0044028690051 0.00167160399168 -1.10264520231e+12 +UniRef50_Q2T6U3 Acetyltransferase, GNAT family 0.00237930456555 0.00319361492506 3.28747084846e+11 +UniRef50_F9YYI3 Myo inositol 2 dehydrogenase 0.000116388280223 0.00389773480368 1.52657599386e+12 +UniRef50_UPI0001FFEA7A ferredoxin 2.41194998913e-05 0.000191653349854 67635471101.6 +UniRef50_A5UJI4 Predicted type I restriction modification enzyme, subunit S 0.000467957837425 0.00140130584148 3.76804042705e+11 +UniRef50_Q2RN88 Shikimate dehydrogenase 5.56668886371e-05 4.67665148312e-05 -3593190125.31 +UniRef50_UPI00017449C1 permease YjgP YjgQ family protein 0.000134816424593 0.000210940503716 30732224889.5 +UniRef50_UPI0003B4DD27 hypothetical protein 1.68808845918e-05 2.26102359946e-05 2313009468.36 +UniRef50_V7Z055 0.000125704848161 0.000144820213097 7717107396.57 +UniRef50_E6S2L0 Transporter, major facilitator family protein 0.000157285828689 0.00442479496948 1.72284580836e+12 +UniRef50_UPI00046F82BE thioredoxin reductase, partial 9.36163414185e-05 0.000131847423028 15434356793.9 +UniRef50_R5BF46 ATPase 4.671178724e-06 0.00296508276916 1.1951544874e+12 +UniRef50_P0A9L8 Pyrroline 5 carboxylate reductase 0.00227466506142 0.00316821157666 3.60735693251e+11 +UniRef50_A4XQZ9 0.000389196050501 9.55701308745e-05 -1.18540386949e+11 +UniRef50_M0HKI8 0.000169038771396 0.000105433118773 -25678382493.0 +UniRef50_A9VYY8 0.0132358777563 0.00167601267052 -4.66685939063e+12 +UniRef50_UPI0003490FD2 hypothetical protein 0.00033353456421 0.000185056727014 -59942324904.0 +UniRef50_F3LQG5 0.000672271536642 0.000490831088969 -73249735250.3 +UniRef50_A5CX20 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.99971583594e-05 1.09236639091e-05 -3663081053.88 +UniRef50_UPI0002194206 amino acid transporter, partial 5.30347412955e-05 9.49391575034e-05 16917327048.1 +UniRef50_M9REM3 0.00018294959072 0.0140868512624 5.61317572493e+12 +UniRef50_UPI00037A4658 hypothetical protein 9.0978894321e-06 1.74109207959e-05 3356072773.93 +UniRef50_Q5HM80 0.01259695944 0.000876320340766 -4.73176583276e+12 +UniRef50_UPI000464EDC8 hypothetical protein 4.15322467193e-05 6.74947754923e-06 -14042230746.5 +UniRef50_UPI000479E693 ribonuclease 1.25103696981e-05 7.10842663511e-06 -2180830703.82 +UniRef50_UPI00037CFC12 hypothetical protein 9.28493446813e-06 6.4782728919e-06 -1133083719.93 +UniRef50_UPI00037AC159 hypothetical protein 0.00017501462148 0.000103454507633 -28889696101.4 +UniRef50_D3QFC7 0.00403537440522 0.0110977386727 2.85116311974e+12 +UniRef50_Q49YE7 0.00720175833756 0.000697046555765 -2.6260319681e+12 +UniRef50_UPI000441CD41 PREDICTED 3.35893330819e-05 3.59038039356e-05 934380285.39 +UniRef50_W7VM91 Transcriptional regulator, LuxR family 0.000101119463521 0.000160607955043 24016234033.3 +UniRef50_UPI0003B30FE2 DNA mismatch repair protein MutS 2.02197411948e-06 5.39539539351e-05 20965577528.6 +UniRef50_Q3J221 Putative head portal protein 0.0120036240914 0.00334527746578 -3.49548078262e+12 +UniRef50_K9ZYD1 NADH dehydrogenase, FAD containing subunit 0.000105639735687 0.0411445664379 1.65679183139e+13 +UniRef50_I0DPX6 3.64367227341e-06 1.14576477496e-05 3154597788.0 +UniRef50_E2PCU1 FimV domain protein 5.3977977438e-05 0.00143978941099 5.59469081543e+11 +UniRef50_X1C061 Marine sediment metagenome DNA, contig 1.83890501541e-05 3.81191636444e-05 7965288931.75 +UniRef50_S4XSY7 1.32534925002e-05 0.000194230758481 73062743117.3 +UniRef50_UPI00035E4DB7 hypothetical protein 4.62902798619e-05 1.22885114361e-05 -13726931162.1 +UniRef50_P0C0G1 Dihydropteroate synthase 0.00270517267294 0.00438399903562 6.7776280413e+11 +UniRef50_T8S6T3 0.00135019294347 0.000457855356899 -3.60247633912e+11 +UniRef50_Q8G3N6 Inosine 5 monophosphate dehydrogenase 0.000206529276029 0.00791797129841 3.11320377447e+12 +UniRef50_E4R955 Peptidase C26 0.00129535878096 0.00148122032997 75034588113.0 +UniRef50_C5BCZ7 Adenine phosphoribosyltransferase 3.80965449382e-05 5.42123738361e-05 6506157889.54 +UniRef50_Q9HTU7 UPF0178 protein PA5247 0.000471366989714 0.00103017455301 2.25597470643e+11 +UniRef50_P50466 Aerotaxis receptor 0.00260915513211 0.000400950713092 -8.91479221674e+11 +UniRef50_Q55F83 Enolase B 4.33153144371e-06 3.99357440055e-05 14373857524.0 +UniRef50_P42064 Oligopeptide transport ATP binding protein AppD 1.90622272107e-05 0.0256275899957 1.03384769121e+13 +UniRef50_P44681 Ribosome binding ATPase YchF 0.0232535153528 0.011621729977 -4.69589449427e+12 +UniRef50_UPI000468F00D PEP synthetase regulatory protein 1.78353928699e-05 1.29245063724e-05 -1982585142.39 +UniRef50_UPI00046E1553 PREDICTED 9.36920863679e-05 0.000122160061309 11492870825.1 +UniRef50_B3W746 PTS system, IID component 0.00809427137532 0.00413135976654 -1.59987604686e+12 +UniRef50_Q92HL2 Transcription termination factor Rho 0.0027179094229 0.00138619795747 -5.37628260531e+11 +UniRef50_UPI0002DB231A peptide ABC transporter ATP binding protein 5.45746799592e-05 0.000106018118421 20768347389.0 +UniRef50_E8Q9V7 ABC transporter permease 0.000291957199651 0.000660935098783 1.48960905748e+11 +UniRef50_O88958 Glucosamine 6 phosphate isomerase 1 1.05649075872e-05 9.73035413219e-06 -336919470.91 +UniRef50_F2JYD9 Phenylalanine racemase 0.000221941723168 0.00442104988728 1.6952314947e+12 +UniRef50_P77324 Putative xanthine dehydrogenase YagS FAD binding subunit 0.00240827880373 0.0165337041163 5.70260753716e+12 +UniRef50_UPI0001744E5F methionine aminopeptidase 3.31219439428e-05 2.31237536079e-05 -4036392129.79 +UniRef50_Q4ZNV9 Histidinol dehydrogenase 0.001162133287 0.012368122376 4.52399530818e+12 +UniRef50_S4XFR3 0.00026925980265 0.00538242793412 2.0642487203e+12 +UniRef50_A1V623 0.000323554565342 0.000144618331822 -72238753266.5 +UniRef50_D4HFA9 0.000241462252992 0.00614235102362 2.38226120875e+12 +UniRef50_U5L575 Oxidoreductase 0.00743618489624 0.00296904898176 -1.8034375866e+12 +UniRef50_D6AVU9 Ribosome associated heat shock protein 0.000287636788424 0.000552453054395 1.06909576234e+11 +UniRef50_O80448 Pyridoxal biosynthesis protein PDX1.1 0.0333515319106 0.00804014973239 -1.02185155909e+13 +UniRef50_Q58952 tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase 0.00252705657621 0.000292392777421 -9.0216119798e+11 +UniRef50_G0HAL8 Glycerol dehydrogenase 0.00511591409501 0.00139682788584 -1.50144074096e+12 +UniRef50_A5CSL0 LexA repressor 8.28552593836e-05 1.80794282587e-05 -26150797914.0 +UniRef50_T8JJU2 ATP dependent helicase 0.00210323039841 0.000276068164607 -7.37647815587e+11 +UniRef50_A5UM96 0.0128754910926 0.00109330429036 -4.75661339574e+12 +UniRef50_P0A533 Cobyric acid synthase 7.76720141624e-05 0.00430301992896 1.70582480405e+12 +UniRef50_I1F524 8.65901428226e-06 0.000309363273491 1.21397999499e+11 +UniRef50_UPI000363B4C5 hypothetical protein 8.03517566738e-06 2.90491680591e-05 8483606599.21 +UniRef50_Q3IVV1 Periplasmic sensor signal transduction histidine kinase 0.00549910638905 0.000165135156678 -2.1533896417e+12 +UniRef50_S5YP26 Adenylate cyclase 0.000236015896168 0.000440942779127 82731497386.2 +UniRef50_Q6FF55 Putative Holliday junction resolvase 2.33482089301e-05 0.0075905284963 3.05496354176e+12 +UniRef50_Q9RQQ0 Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR 0.0126941061623 0.00286176555315 -3.9694365603e+12 +UniRef50_H4NAZ8 0.000899621515052 0.000192853845235 -2.8533078132e+11 +UniRef50_P27375 Heat shock protein C 0.00408378587983 0.0033331835299 -3.03027379593e+11 +UniRef50_K5NMC7 Chaperone usher secretion system usher protein 0.000207536441043 0.00234638341635 8.63478770537e+11 +UniRef50_UPI00037905B5 hypothetical protein 7.97833275511e-06 0.000147458699481 56309935663.9 +UniRef50_G8VR36 Anchored repeat type ABC transporter, permease subunit 0.000346709752644 0.00492619480047 1.84879431041e+12 +UniRef50_D2N5X4 Transcription factor 0.00794938010802 0.00298454288961 -2.00436571048e+12 +UniRef50_P77174 0.00151442148193 0.00142496794622 -36113490084.5 +UniRef50_A9B437 DNA directed RNA polymerase subunit alpha 1.52074500618e-05 7.37153268068e-06 -3163456004.28 +UniRef50_P77171 0.00249486460735 0.000309772767695 -8.82148389763e+11 +UniRef50_U8XP57 Chemotactic transducer PctC 0.000259402037921 0.000306543118269 19031432622.6 +UniRef50_P57874 Ferrochelatase 0.00759836359763 0.00336068047145 -1.71080468026e+12 +UniRef50_E1I5H5 0.000488128433862 0.000649047703726 64965083945.6 +UniRef50_UPI000376F990 hypothetical protein 5.18707273652e-06 2.85377668922e-05 9426961775.9 +UniRef50_R7GG89 Single strand binding protein Primosomal replication protein n 0.000630043773094 0.00184187969737 4.89233033531e+11 +UniRef50_Q5HLD6 0.000678118542849 0.00107387892798 1.59773324003e+11 +UniRef50_P61544 UPF0316 protein SA1727 0.019160748111 0.00225458274305 -6.825226421e+12 +UniRef50_A6Q235 3 dehydroquinate dehydratase 0.0249522250532 0.00656317858161 -7.42388371956e+12 +UniRef50_UPI00047D7B73 hypothetical protein 1.76175231887e-05 1.53180141885e-05 -928340001.529 +UniRef50_Q03KQ7 tRNA and rRNA cytosine C5 methylase 0.00242895725793 0.00242268091399 -2533837067.98 +UniRef50_UPI00020D99AC biotin biosynthesis protein BioC 1.73362401872e-05 0.000127198630162 44352794996.0 +UniRef50_D3SFX6 0.00010446017013 2.69899371775e-05 -31275683709.6 +UniRef50_S6CA35 Truncated bacteriocin ABC transporter ATP binding and permease components 0.00290223195251 0.000612163716228 -9.24528649284e+11 +UniRef50_A0A009WPV3 TonB dependent receptor family protein 0.000373304000053 0.00723296101974 2.76932771631e+12 +UniRef50_P77433 0.00185775633497 0.00116926576042 -2.77952093675e+11 +UniRef50_Q8CQR2 0.00536645704519 0.00104229425363 -1.7457175824e+12 +UniRef50_G9YY14 9.20947074204e-06 0.000152314126621 57773105670.0 +UniRef50_UPI00035DA196 hypothetical protein 3.24693159248e-06 1.0167924221e-05 2794089654.26 +UniRef50_B7V896 4.34889341953e-05 0.00027685941112 94214525312.4 +UniRef50_P09622 Dihydrolipoyl dehydrogenase, mitochondrial 1.87073654482e-05 5.85826053817e-05 16098123685.4 +UniRef50_S5XWD9 0.000522748633442 7.98638276788e-05 -1.78798030894e+11 +UniRef50_P0AA83 Cytosine permease 0.00360105503114 0.000504075776685 -1.25028852923e+12 +UniRef50_UPI000474B8BB hypothetical protein 4.32116017962e-05 2.43669720732e-05 -7607808268.79 +UniRef50_UPI000237A428 CBS domain containing protein 0.000110591598297 0.00301825634286 1.17385993844e+12 +UniRef50_UPI0003B401D2 phosphoglycerate kinase 1.86446654747e-05 1.85246539133e-05 -48450140.0446 +UniRef50_D4H9I9 RHS repeat associated core domain protein 0.000115060639321 0.00721047355517 2.86450526464e+12 +UniRef50_Q893R0 Thiamine phosphate synthase 0.00266956052078 0.00029000003783 -9.60657767458e+11 +UniRef50_Q9I484 Amino acid ABC transporter periplasmic binding protein 0.00126404873217 0.000444667668252 -3.3079419044e+11 +UniRef50_P33634 0.00270406881076 0.000772664195847 -7.79731744039e+11 +UniRef50_A1UT83 50S ribosomal protein L13 0.0149576815013 0.00240122229045 -5.06919666848e+12 +UniRef50_J9YSG0 Phage infection protein 0.000415711678886 7.22929510835e-05 -1.38642354636e+11 +UniRef50_UPI000465431D hypothetical protein 8.60111666093e-05 2.0880125924e-05 -26294200372.4 +UniRef50_F6G2W0 Threonine synthase protein 3.63690982897e-05 4.01390958874e-05 1521994293.26 +UniRef50_B7N5W6 D serine dehydratase 0.0042151599935 0.00589012295654 6.76203102286e+11 +UniRef50_I6XTA1 UPF0225 protein HMPREF9154_3085 2.18595178398e-05 4.14520600316e-05 7909749710.36 +UniRef50_UPI00046AD586 hypothetical protein 2.80778704674e-05 2.15250202293e-05 -2645466053.64 +UniRef50_F8KSY3 ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 5.17813427749e-05 0.00432168989448 1.72381448e+12 +UniRef50_I6RX31 0.000529185965684 0.000671174329992 57322445064.3 +UniRef50_V4R4A7 ThiF domain containing protein 6.16764425151e-06 8.76543612882e-06 1048760459.36 +UniRef50_B7H056 Outer membrane protein oprM 0.000415892670639 0.0065208038143 2.46462754438e+12 +UniRef50_A8AL69 0.00032493052647 0.00022560683963 -40098191216.0 +UniRef50_G4QBM5 4.07985784691e-06 7.96242196527e-06 1567438779.0 +UniRef50_Q3IV70 Polysaccharide export protein 0.00209053076279 0.000559525779014 -6.18085499496e+11 +UniRef50_E8ZN21 Histone acetyltransferase HPA2 0.000130317372447 0.0011365513536 4.0622900607e+11 +UniRef50_L5IBW3 Tat pathway signal sequence 0.000236420737772 2.84067837922e-05 -83977785840.0 +UniRef50_U3SVL6 0.00382102951589 0.00279612671275 -4.13765838599e+11 +UniRef50_UPI00042907AA hypothetical protein 1.65408186985e-05 2.83116435584e-05 4752026440.21 +UniRef50_A9E033 2.66113763799e-05 4.99995559935e-05 9442095115.25 +UniRef50_Q47N93 Tyrosine tRNA ligase 4.59070881346e-05 0.0011954144084 4.64070211234e+11 +UniRef50_K0CJC2 4.05378140546e-06 1.09983850836e-05 2803621724.74 +UniRef50_V5AJL1 Competence protein ComM 8.43388398269e-06 4.57830610149e-05 15078321093.8 +UniRef50_B8DJK7 Elongation factor P 1.21872224325e-05 0.000128158356373 46818969897.4 +UniRef50_A1V9U1 Adenylosuccinate synthetase 0.000150809083773 0.00873929786154 3.46727831219e+12 +UniRef50_A6M360 Aminotransferase class III 0.000388150403275 0.001054727722 2.69105443393e+11 +UniRef50_Q55848 Ribose phosphate pyrophosphokinase 0.0240527528546 0.00729803973056 -6.76408329161e+12 +UniRef50_UPI00046EC013 recombinase, partial 7.41869879029e-05 1.98443876556e-05 -21938774578.5 +UniRef50_UPI000402DE31 hypothetical protein 2.04985903401e-05 2.62796293832e-05 2333876403.03 +UniRef50_Q97GM6 Endonuclease MutS2 0.000448887423268 0.000809090988964 1.45418599666e+11 +UniRef50_A6LT80 Response regulator receiver protein 7.25005100276e-05 0.00186322677009 7.22938165869e+11 +UniRef50_P0ABI6 Magnesium transport protein CorA 0.00385483980292 0.00320266886493 -2.63289410704e+11 +UniRef50_P22033 Methylmalonyl CoA mutase, mitochondrial 0.000312623195002 0.00654261376453 2.5151236435e+12 +UniRef50_A5WFD7 Crossover junction endodeoxyribonuclease RuvC 0.00619797053389 0.00746793640847 5.12700807802e+11 +UniRef50_H5JT53 Gram negative pili assembly chaperone, N terminal domain protein 0.000216117932552 0.000301343576728 34406638390.1 +UniRef50_N8X4K5 0.00111878636851 0.00467992290136 1.43767451837e+12 +UniRef50_A0LCH8 Zinc import ATP binding protein ZnuC 1.10963540866e-05 7.03861160429e-06 -1638160434.21 +UniRef50_G7W6N5 NADH 0.000264379894087 0.000191764094291 -29315889473.7 +UniRef50_P57388 2 oxoglutarate dehydrogenase E1 component 1.7055372447e-06 3.76014343838e-06 829469733.242 +UniRef50_UPI0003755588 hypothetical protein 1.59418311262e-05 4.76436692517e-05 12798421076.6 +UniRef50_A9IIR2 1.04886342216e-05 2.74979196223e-05 6866857243.67 +UniRef50_A3PG41 0.00704041212852 0.00293321179288 -1.65812717651e+12 +UniRef50_P22675 Argininosuccinate lyase 2.46882077459e-05 1.94930948796e-05 -2097330815.33 +UniRef50_E6MV22 Factor H binding protein 0.000505884119369 0.00176830190746 5.0965355266e+11 +UniRef50_UPI00038330C2 PREDICTED 2.90923340259e-05 1.17461829378e-05 -7002854055.48 +UniRef50_I0C482 Hydrolase 0.00542477211719 0.000482954311376 -1.99507249113e+12 +UniRef50_UPI0003820085 hypothetical protein 4.6482006196e-06 8.04347128653e-06 1370712432.9 +UniRef50_A4VR27 0.000674760589924 0.000246636584598 -1.72838914622e+11 +UniRef50_UPI000367811C hypothetical protein, partial 8.90397007046e-06 7.42593749518e-06 -596699888.14 +UniRef50_A8I0S8 0.00114790956547 6.23452623492e-05 -4.38255630542e+11 +UniRef50_A1B9C6 Phospholipid glycerol acyltransferase 0.0131056947335 0.00360849545665 -3.83413589181e+12 +UniRef50_P17725 Citrate lyase subunit beta 0.00431907964295 0.002361291406 -7.9038313602e+11 +UniRef50_P15030 Fe dicitrate transport system permease protein FecC 0.00313752312499 0.000661020193938 -9.99794623373e+11 +UniRef50_UPI0003B749DD NADH ubiquinone oxidoreductase subunit 6 7.73478858482e-05 1.2806688757e-05 -26056073275.3 +UniRef50_UPI00046ADE6A hypothetical protein 1.76364757447e-05 2.28132530052e-05 2089928506.26 +UniRef50_UPI000366A0BF aminotransferase 3.10563681645e-06 6.07715864042e-06 1199639825.01 +UniRef50_UPI0004781051 peptide ABC transporter permease 1.64171882057e-05 6.25602066756e-05 18628502794.8 +UniRef50_UPI0003B6312D NADH ubiquinone oxidoreductase subunit 6 2.45321334873e-05 3.02105531374e-05 2292447694.79 +UniRef50_P97056 Protein RnfH 0.00107053601078 0.000210276964128 -3.47297133699e+11 +UniRef50_Q3K022 GTPase Era 0.000324471379247 0.000835039960306 2.06122801555e+11 +UniRef50_D8TNI9 5.64543324124e-06 2.96499642505e-05 9690923737.17 +UniRef50_A4T3P6 1.97823096231e-05 2.72268959114e-05 3005470839.93 +UniRef50_E3A4U6 0.000469469152046 0.000211770056443 -1.04036287218e+11 +UniRef50_A6SYV8 Glucosyl transferase 0.000186874251907 0.000286252056733 40120039311.1 +UniRef50_T1BIJ5 Appr 1 p processing domain containing protein 1.29690891921e-05 8.67862416983e-05 29800890305.1 +UniRef50_UPI000360BB74 hypothetical protein 2.01195915158e-05 1.71443052184e-05 -1201159589.13 +UniRef50_UPI0004785618 peptidase M20 3.95206948936e-06 6.69597071426e-05 25436956511.3 +UniRef50_V5ST79 0.00105169907464 0.000272007512169 -3.14771051661e+11 +UniRef50_P39263 0.00291645478525 0.00116313155802 -7.07838102528e+11 +UniRef50_UPI0002492B0A uroporphyrinogen III C methyltransferase 2.82200684014e-05 1.47531548802e-05 -5436758246.12 +UniRef50_A7X534 Multidrug resistance efflux pump SepA 0.0100052463943 0.00207756516888 -3.20050219429e+12 +UniRef50_P39267 0.00178568059285 0.000577193359559 -4.87881125885e+11 +UniRef50_W8S776 6.58429782418e-05 0.000102587991932 14834412938.8 +UniRef50_Q895P7 Phosphoprotein phosphatase 2C 0.000490073031534 0.0022380741043 7.05689483463e+11 +UniRef50_UPI00036925F6 hypothetical protein 0.000456643225518 0.000117398228933 -1.36957368126e+11 +UniRef50_UPI0004700B89 hypothetical protein 1.69810054724e-05 7.76914819468e-05 24509564354.0 +UniRef50_UPI0003662012 hypothetical protein 3.21977529575e-06 1.19555419159e-05 3526736184.47 +UniRef50_F2TBG9 1.52732449296e-05 1.02509067208e-06 -5752154718.27 +UniRef50_UPI0003111719 FAD containing monooxygenase EthA 1.5247649647e-05 0.00182930178055 7.32355913592e+11 +UniRef50_Q3JRY4 1.78786478154e-05 5.52933917216e-05 15104791245.5 +UniRef50_Q8DW61 0.0026004696474 0.000602687153456 -8.06529308352e+11 +UniRef50_Q8DW63 0.00811014313031 0.000146225473079 -3.21513128648e+12 +UniRef50_Q8DW64 0.00372374506195 0.000326875920868 -1.37135775653e+12 +UniRef50_Q8DW66 0.00202575755741 0.000584785554841 -5.81738080152e+11 +UniRef50_Q8DW69 0.00383356099134 0.0131938518914 3.77886430004e+12 +UniRef50_UPI00040DB40F hypothetical protein 1.16833610463e-05 6.90030695945e-06 -1930977629.54 +UniRef50_A0A011NIG9 Stalked cell differentiation controlling protein 6.34358451796e-06 9.89123971411e-06 1432231937.31 +UniRef50_W1FDX5 Phenylacetate CoA oxygenase, PaaJ subunit 9.55855876496e-05 0.000132158695807 14765012565.6 +UniRef50_UPI000468F800 3 methylcrotonyl CoA carboxylase 4.29607608731e-06 2.238370927e-05 7302199476.08 +UniRef50_UPI00046E9B56 MULTISPECIES 7.76313591253e-06 1.58582466883e-05 3268095558.36 +UniRef50_Q5HQU2 Lipoprotein, putative 0.00620680414643 0.00381570315534 -9.65316812212e+11 +UniRef50_F0MM24 Site specific recombinase 0.00020589502452 0.00170703821698 6.06029927895e+11 +UniRef50_Q9A7X1 Sulfate thiosulfate import ATP binding protein CysA 0.000125496956702 6.4226237002e-05 -24735741419.2 +UniRef50_P00363 Fumarate reductase flavoprotein subunit 0.00232728596957 0.0022240653276 -41671439823.0 +UniRef50_B8FCL2 Arginine tRNA ligase 4.25298726209e-06 8.48506486459e-06 1708541661.56 +UniRef50_W1JJ37 1.6494182913e-05 2.78937381601e-05 4602140341.53 +UniRef50_Q63SZ9 50S ribosomal protein L3 glutamine methyltransferase 0.00145565271172 0.00368596799836 9.00405650263e+11 +UniRef50_Q9RT16 0.000468435979094 0.0301588426703 1.19863815235e+13 +UniRef50_K7S7U2 Helicase secretion neighborhood ATPase 0.000194413384814 0.00412196849724 1.58560219541e+12 +UniRef50_A0A024E451 4.01662914913e-05 8.01158835875e-05 16128140565.9 +UniRef50_D9RN76 Conserved bacteriophage protein 0.00625725388241 0.00450279560424 -7.08296336521e+11 +UniRef50_Q09AM4 0.000155884507615 4.55269168186e-05 -44552713644.3 +UniRef50_K1Z5M7 1.0860271367e-05 6.71928828519e-06 -1671765685.7 +UniRef50_E4PKC3 Extracellular solute binding protein, family 1 0.0096444577482 0.000670735046264 -3.62280197473e+12 +UniRef50_UPI00036DECB5 hypothetical protein 2.45542828364e-06 0.000266673612821 1.06668123419e+11 +UniRef50_Q09049 Cytochrome bd ubiquinol oxidase subunit 1 1.40858505778e-05 4.51651124395e-05 12547079399.0 +UniRef50_Q3B4E2 Bifunctional protein FolD 0.00697570623407 0.00645479279563 -2.10299147425e+11 +UniRef50_N1MUD6 0.013474597831 0.00178303456773 -4.72002756101e+12 +UniRef50_D3DA43 1.1171091624e-05 0.000223442652099 85696633828.7 +UniRef50_G9ZJL6 6.70937797759e-05 1.30127240933e-05 -21833185828.2 +UniRef50_UPI0003B42F1C hypothetical protein 2.80688806763e-05 7.40906116255e-05 18579537534.3 +UniRef50_O25830 Bifunctional dihydropteroate synthase dihydropteroate reductase 0.00057051026703 0.0036305465132 1.23537418345e+12 +UniRef50_UPI00047B1D21 DNA gyrase subunit A 8.61520108029e-06 1.86148128217e-05 4036965969.04 +UniRef50_UPI0004640DF8 ABC transporter permease 1.37623194993e-05 8.65151876701e-06 -2063292972.2 +UniRef50_UPI00046E6161 hypothetical protein 3.56478057781e-05 1.75949076688e-05 -7288176500.7 +UniRef50_B2INS9 Hydrolase, haloacid dehalogenase like family 0.00691060148007 0.008236867765 5.35429974344e+11 +UniRef50_F9YXR7 0.000207885856826 0.00541121682112 2.10064856234e+12 +UniRef50_Q9I6F3 0.000270922958506 0.00130816611149 4.18747789263e+11 +UniRef50_UPI00046835E4 hypothetical protein 0.000232254731516 3.90662628166e-05 -77992555502.9 +UniRef50_Q9I5W0 DNA primase 0.000491170800127 0.000109376557477 -1.541350209e+11 +UniRef50_UPI0003B68C85 chromosomal replication initiator protein DnaA 4.67357968212e-06 7.43135185529e-06 1113346467.98 +UniRef50_UPI000377D8E1 hypothetical protein 1.31738954724e-05 3.22053806195e-05 7683244096.47 +UniRef50_A5ENX4 Cysteine desulfuration protein SufE 0.00018598240212 2.62515973723e-05 -64485285994.2 +UniRef50_P55809 Succinyl CoA 5.02222770547e-05 4.42066439934e-05 -2428584886.97 +UniRef50_R6LKT9 PTS system 0.000622229651954 0.000763750099644 57133541383.6 +UniRef50_UPI00037E8795 hypothetical protein 9.7519292095e-05 0.000101693816904 1685306892.57 +UniRef50_B9KL59 5 oxoprolinase 0.00194422663222 0.000756435077488 -4.79526026486e+11 +UniRef50_G4LIE7 0.000292230662804 0.000182294262473 -44382673885.0 +UniRef50_Q9SAJ6 Glyceraldehyde 3 phosphate dehydrogenase GAPCP1, chloroplastic 2.23458403964e-05 3.60839327617e-05 5546236473.22 +UniRef50_W5BG06 0.000223039291066 0.000307621567909 34146903102.8 +UniRef50_Q9S6S1 Xaa Pro dipeptidase 0.00406600321439 0.00492330732713 3.46104190618e+11 +UniRef50_UPI00047AF1F1 hypothetical protein 3.65663635778e-06 0.000249102368774 99089454134.2 +UniRef50_W5XC72 Excinuclease ABC subunit C 1.64817473128e-05 2.86139163422e-05 4897905515.62 +UniRef50_B1W0Z3 Phosphoglycerate kinase 0.0237606903373 0.0216835293705 -8.38575371929e+11 +UniRef50_K0VIJ3 Replication initiation protein RepC 2.6392744294e-05 2.20939892299e-05 -1735460171.03 +UniRef50_UPI00036C59B9 hypothetical protein 2.11188717687e-05 8.93415574944e-05 27542335414.0 +UniRef50_A1WWJ6 ISXoo15 transposase 6.32979750019e-05 2.85605808873e-05 -14023912279.8 +UniRef50_M4R3E4 MFS superfamily bicyclomycin multidrug transportprotein 0.000623229649913 0.00928328142758 3.49616917343e+12 +UniRef50_Q2G764 2,4 dihydroxyacetophenone dioxygenase 0.00081974089678 0.000666755145539 -61762225122.3 +UniRef50_F4QZ58 8.33373403415e-05 1.11897579632e-05 -29126864356.5 +UniRef50_R6PZ09 Chorismate synthase 0.000116388280223 0.00178940027096 6.75415470828e+11 +UniRef50_UPI000479CAE5 ABC transporter 3.05604607441e-06 1.69920190759e-05 5626123314.33 +UniRef50_Q3JVM0 8.07515534964e-05 0.000113365337884 13166584973.4 +UniRef50_G5JVK4 Acyl ACP thioesterase 0.00520714323114 0.00158862969528 -1.46083831858e+12 +UniRef50_Q9S469 L ribulose 5 phosphate 4 epimerase 0.0105501279448 0.00736697626122 -1.28507739632e+12 +UniRef50_C5CPN2 Transaldolase 0.00306333358167 0.000380666037909 -1.08302580745e+12 +UniRef50_UPI000305C0E8 hypothetical protein 3.93533351593e-05 0.000264476898853 90885145240.1 +UniRef50_P45753 Putative DNA utilization protein HofM 0.00173602314793 0.000775213515781 -3.87890638959e+11 +UniRef50_G2M640 0.000340716909722 0.00475342916939 1.7814660893e+12 +UniRef50_F5M2B7 CRP FNR family transcriptional regulator 0.00247991749141 0.000242726059064 -9.03181634666e+11 +UniRef50_UPI00023768FE monosaccharide transporting ATPase, partial 0.000239829882996 0.000630682184614 1.5779187046e+11 +UniRef50_A9HE84 Tryptophan synthase alpha chain 0.00129551189686 0.00266575517111 5.53184024591e+11 +UniRef50_C3FBN6 Transposase A from transposon Tn554 0.000100932082575 0.00038841464795 1.1606023945e+11 +UniRef50_UPI0003B6F059 aldehyde activating protein 8.74000899081e-05 2.762399649e-05 -24132342448.0 +UniRef50_UPI000219427C phosphoribosylcarboxyaminoimidazole mutase, partial 7.20641022659e-05 2.3530658128e-05 -19593546970.8 +UniRef50_C2BE46 0.000649436453475 0.000184168559401 -1.87834358317e+11 +UniRef50_K7EXQ4 2.94932409971e-05 9.87026946978e-06 -7922034406.51 +UniRef50_UPI0003D78289 PREDICTED 4.62554463156e-06 0.000187178594339 73698906344.5 +UniRef50_D4HCD1 L fucose isomerase, first N terminal domain protein 0.000569074355048 0.00652292183753 2.4036412906e+12 +UniRef50_P65894 Phosphoribosylamine glycine ligase 0.000128251185346 0.00597884348432 2.36195590594e+12 +UniRef50_B9KUW5 Beta lactamase 0.0165141226521 0.00342850546849 -5.2828242356e+12 +UniRef50_V9Y4Q6 0.000297061306978 6.25716317643e-05 -94666359395.8 +UniRef50_P58403 Protein YfdX 0.0022583545144 0.00140483904323 -3.44574669524e+11 +UniRef50_E2ZXX1 NalD 0.000943900692526 0.00133602740699 1.58306366565e+11 +UniRef50_B9JV31 0.0114179980041 0.00337611755162 -3.24660582364e+12 +UniRef50_I6SXW0 Acetyltransferase 0.00642502342194 0.00148828722409 -1.99302098364e+12 +UniRef50_Q8WEW3 Cytochrome c oxidase subunit 1 9.0089499092e-06 2.03289337254e-05 4570016378.42 +UniRef50_O84561 Dihydrolipoyl dehydrogenase 2.46651352964e-05 1.33113551615e-05 -4583660367.01 +UniRef50_T1B7K3 Protein containing DUF28 9.88127430833e-06 1.1703615161e-05 735701364.86 +UniRef50_UPI0003F0D458 2.32302196068e-05 2.17953637077e-05 -579268934.129 +UniRef50_M1MXD6 Xylose transport system permease protein XylH 0.000198764931501 0.000165598152454 -13389835703.4 +UniRef50_R2ZFJ6 Regulatory protein BlaR1 0.000183415488809 0.00318205399168 1.21058716104e+12 +UniRef50_UPI000377E8CB hypothetical protein 5.12644132202e-06 8.08661296407e-06 1195057617.29 +UniRef50_Q9RSS3 ABC transporter, ATP binding protein, MDR family 5.69360465787e-05 0.036495560056 1.47107196648e+13 +UniRef50_F5LYA4 P4 family integrase 0.000557174053809 0.000322754666944 -94637983126.8 +UniRef50_Q8EWY8 ATP synthase subunit beta 9.23453928457e-06 4.88645398204e-06 -1755375393.64 +UniRef50_UPI00037C4890 hypothetical protein 1.83430280024e-06 5.77470815267e-06 1590789994.99 +UniRef50_UPI000379EBC0 hypothetical protein 6.38190008155e-05 5.28197862897e-05 -4440517879.61 +UniRef50_UPI000364EE3F hypothetical protein 3.41913531614e-05 0.000180659561345 59131013010.9 +UniRef50_UPI0003717A9D molybdopterin biosynthesis protein MoeZ, partial 2.46783343545e-05 5.80351264477e-05 13466546301.9 +UniRef50_M3YWL2 1.34667590342e-05 6.46939436053e-06 -2824921986.08 +UniRef50_O27333 Trk system potassium uptake protein TrkA homolog 0.00172180094971 0.000413030356916 -5.28366748731e+11 +UniRef50_M1MV61 ATP dependent transcriptional regulator, MalT like, LuxR family 0.000354082543669 0.000846958447112 1.98980050487e+11 +UniRef50_Q6AGI1 0.00622010207345 0.00201634305018 -1.69710910362e+12 +UniRef50_Q0K1E0 Ribulose bisphosphate carboxylase large chain, chromosomal 0.000106032576398 9.45658701477e-05 -4629250025.56 +UniRef50_UPI0003A611B9 hypothetical protein 1.08700867992e-06 4.55304651729e-05 17942368768.8 +UniRef50_D8JE10 Thioesterase superfamily protein 0.000681292166666 0.014016071807 5.38341417694e+12 +UniRef50_F4FM20 RstA 0.00921442395543 0.000349468961315 -3.57889111635e+12 +UniRef50_Q6Y3D2 NifD 0.000513930963861 0.000228828256293 -1.15099461649e+11 +UniRef50_R0S4I1 AMIN domain protein 1.11029736431e-05 0.000122639592157 45028701602.3 +UniRef50_Q0BWU4 Phosphoribosyl AMP cyclohydrolase 1.81685278487e-05 8.90710578229e-05 28624221422.5 +UniRef50_UPI0002B4BC1C 1.25781660157e-05 6.5000510997e-05 21163543963.5 +UniRef50_UPI0004785FB9 alkylhydroperoxidase 0.000246705255845 0.000219260546319 -11079766020.1 +UniRef50_F7QTX4 1.64437196687e-05 1.97033106601e-05 1315936882.91 +UniRef50_T2E7D0 Inner membrane transport protein RhmT 0.000529215619369 0.000134336636173 -1.59417491226e+11 +UniRef50_UPI0003955E77 PREDICTED 4.93261552293e-05 0.000107268402587 23391996289.6 +UniRef50_Q01609 0.000805444225856 0.00343587109541 1.0619356062e+12 +UniRef50_B3E163 DNA directed RNA polymerase subunit beta 4.04082835124e-06 2.16939305526e-06 -755521394.081 +UniRef50_Q7WZY5 Oxygen sensor histidine kinase NreB 0.0193621449013 0.00645411723966 -5.2111291663e+12 +UniRef50_UPI0004740AD1 histidine kinase 4.41956427434e-05 7.62785187525e-05 12952250746.0 +UniRef50_P50186 NaeI very short patch repair endonuclease 1.78212880379e-05 4.0131060692e-05 9006728992.16 +UniRef50_UPI000367ED7B hypothetical protein 1.93080198514e-05 5.04225965004e-06 -5759262453.87 +UniRef50_UPI000470E957 major facilitator transporter, partial 6.8519039608e-06 4.19437687246e-05 14167016430.8 +UniRef50_B5R646 Allantoinase 0.00438809441507 0.000868583109247 -1.42086990342e+12 +UniRef50_P23256 Protein MalY 0.00259120309458 0.000798956483774 -7.23551950123e+11 +UniRef50_B4RQQ4 Adhesin component 0.000832689681294 0.0441243405044 1.74773706856e+13 +UniRef50_K1RTS5 Carboxynorspermidine decarboxylase 0.000190052784136 0.000127862950305 -25106799072.7 +UniRef50_I6TSK5 Osmoprotectant amino acid ABC transporter ATP binding protein 0.00500627868795 0.00237531774025 -1.06215122011e+12 +UniRef50_A5UJ55 SAM dependent methyltransferase 0.000955437961966 0.000715203418526 -96985633196.1 +UniRef50_M1MCY2 Glycosyl transferase family 2 8.54685257742e-05 0.000531380222148 1.80020023778e+11 +UniRef50_UPI00036853DF hypothetical protein 0.000153389194184 1.26347761438e-05 -56824285813.7 +UniRef50_P22714 Galactose 1 phosphate uridylyltransferase 0.00359057400819 0.00111825150508 -9.98106933314e+11 +UniRef50_UPI000225A931 proline iminopeptidase 7.37233824644e-06 9.95611564391e-06 1043102641.87 +UniRef50_A0A023RRW7 Lipid A biosynthesis acyltransferase 0.000121378131464 0.00674661643638 2.67469000451e+12 +UniRef50_I0C613 DNA polymerase III alpha subunit 0.0136435487592 0.00309124747135 -4.26009352122e+12 +UniRef50_A1KRG6 DNA directed RNA polymerase subunit beta 6.64547439828e-05 0.00452214597108 1.79881722586e+12 +UniRef50_P05824 DNA repair protein RecN 0.00272571673226 0.000333414573864 -9.65801738195e+11 +UniRef50_Q9K0V3 N acetylmuramoyl L alanine amidase AmiC 3.85337367799e-05 0.0014456799173 5.68082180701e+11 +UniRef50_A0A023RUS2 Chemotaxis protein CheY 0.000948312219635 0.00666264754683 2.30694729437e+12 +UniRef50_P0ABT9 0.00159622885827 0.000496184042659 -4.4410159113e+11 +UniRef50_A4WWG5 Extracellular solute binding protein, family 5 0.0202623619417 0.0037954235676 -6.64790509368e+12 +UniRef50_Q5HR29 Histidine protein kinase SaeS 0.0168854394268 0.00227464862547 -5.89855554105e+12 +UniRef50_UPI00046D5F2F hypothetical protein 0.000621438639611 0.00225762175591 6.60547202275e+11 +UniRef50_UPI0002D4FA5D hypothetical protein 1.36815473426e-05 6.27574981451e-05 19812563568.6 +UniRef50_P31550 Thiamine binding periplasmic protein 0.00269719156216 0.00216638426356 -2.14293420183e+11 +UniRef50_P21514 Cyclic di GMP phosphodiesterase YahA 0.00282256893515 0.00266390425937 -64054876646.9 +UniRef50_A6VC18 Haemagglutination activity domain protein 0.000195231897789 2.74628058223e-05 -67730441185.3 +UniRef50_UPI000377E83F hypothetical protein 3.27282406274e-05 0.000291712056764 1.04554944663e+11 +UniRef50_A3MND6 Bifunctional protein GlmU 0.00301999244345 0.012207617105 3.7091568207e+12 +UniRef50_UPI00037CB5D1 hypothetical protein, partial 7.85057669752e-05 2.82318328663e-05 -20296204130.3 +UniRef50_UPI00028877C9 hypothetical protein 3.15766502025e-05 4.67013577186e-05 6106030025.28 +UniRef50_UPI0004416F73 Pkinase domain containing protein 5.1620980521e-06 1.74298933999e-06 -1380336144.26 +UniRef50_UPI00035DDF67 hypothetical protein 2.56298684014e-05 1.53011469741e-05 -4169831587.87 +UniRef50_UPI00046CFF91 NUDIX hydrolase 9.22082808371e-06 0.000489641304528 1.93951641763e+11 +UniRef50_UPI0003654BCD hypothetical protein 2.21162687326e-05 0.0052855991645 2.12493263522e+12 +UniRef50_S5SXF8 GntR family transcriptional regulator protein 0.00537319300924 0.000273441393692 -2.05883230819e+12 +UniRef50_UPI000344DDDB hypothetical protein 2.6365761354e-06 1.0980688106e-06 -621114286.63 +UniRef50_UPI00041AB026 hypothetical protein 0.000201940725436 3.13974924014e-05 -68850395977.0 +UniRef50_UPI000310D2B7 hypothetical protein 1.19185281396e-05 2.33243301623e-05 4604662241.49 +UniRef50_I5XEX7 7.02856428705e-05 7.46743793596e-05 1771786776.5 +UniRef50_UPI00028A0BB5 iron ABC transporter permease 6.08998464866e-05 9.43012975712e-05 13484575684.7 +UniRef50_Q00267 N hydroxyarylamine O acetyltransferase 0.00187420471859 0.000809393808929 -4.29877230929e+11 +UniRef50_UPI0002D46590 hypothetical protein 3.13205007015e-05 4.30162259401e-06 -10907852650.9 +UniRef50_UPI000310AFFC hypothetical protein 0.000169088541724 1.61850334637e-05 -61729022621.6 +UniRef50_K7RZQ6 Phosphate ABC transporter, permease protein PstC 0.000121118499099 0.00604819593877 2.39283389581e+12 +UniRef50_Q9RUF1 Putative gluconeogenesis factor 0.000121118499099 0.00580637756948 2.29520885269e+12 +UniRef50_A3M2J5 FilF 0.000355455608344 0.00760711455061 2.92758370286e+12 +UniRef50_Q9RYW8 Excinuclease ABC, subunit A 4.72251028609e-05 0.0286855626743 1.15616483095e+13 +UniRef50_L7WWN9 N acetylmuramoyl L alanine amidase 0.00858348568774 0.00264387494539 -2.39789374391e+12 +UniRef50_U5MQ76 Cell wall hydrolase autolysin 0.000796181223905 0.00300282106843 8.90847583753e+11 +UniRef50_Q8K3J1 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 5.87869616426e-05 1.04409718317e-05 -19517869358.7 +UniRef50_B2TQZ4 Ribosomal RNA small subunit methyltransferase I 0.000371749222442 0.00226600982422 7.6473625013e+11 +UniRef50_UPI00045E70DE phosphoglucosamine mutase 4.17142232811e-06 6.86870837911e-06 1088927478.21 +UniRef50_P0A2L2 UPF0047 protein YjbQ 1.67456954402e-05 0.0171151747311 6.90284562303e+12 +UniRef50_Q720A2 DNA polymerase III PolC type 0.0105344517625 0.00547248941566 -2.04357631668e+12 +UniRef50_W8UDC1 Oligopeptidase A 0.000813987272751 0.000175920374899 -2.57595436624e+11 +UniRef50_UPI000404E1BA hypothetical protein 7.00800868692e-05 1.11808793433e-05 -23778332852.8 +UniRef50_Q3J4T9 ATPase 0.0145238603634 0.00169696210157 -5.17837623203e+12 +UniRef50_G7U8C9 N formimino L glutamate deiminase 0.000106434019418 0.00573644775609 2.27290563353e+12 +UniRef50_P0A0E5 Mercuric reductase 0.0119854730565 0.00274855919635 -3.72905547502e+12 +UniRef50_R5D9D5 0.000278371795454 0.00103792686452 3.06641702171e+11 +UniRef50_UPI0002F9EB26 hypothetical protein 2.98328993867e-05 2.03083431814e-05 -3845180219.53 +UniRef50_W8G521 Electron transfer flavoprotein subunit beta 0.0068450205936 0.00580726466339 -4.18954803723e+11 +UniRef50_UPI0003672E42 hypothetical protein 5.14629958399e-06 7.27514297368e-06 859440200.264 +UniRef50_A3JU62 Replication protein C 6.37271107187e-05 4.63052820603e-05 -7033406019.27 +UniRef50_UPI000376A3B0 hypothetical protein 3.36155985985e-06 1.10408950079e-05 3100241835.31 +UniRef50_D4HC17 TOBE domain protein 0.0003380471542 0.0044738549913 1.66967637591e+12 +UniRef50_I1F1X0 0.00021585868997 0.000290982103433 30328243883.0 +UniRef50_Q87AR8 Laccase domain protein PD_1754 0.000175032143208 0.000808772324455 2.55848688036e+11 +UniRef50_I4XWS9 MFS transporter, aromatic acid 0.000323724864676 0.000132726609074 -77108339598.7 +UniRef50_UPI000252B72D 1.56873143238e-05 1.51024581311e-05 -236113621.986 +UniRef50_R4PRA1 Cytochrome D ubiquinol oxidase, subunit II 0.000337638755487 0.00380807142821 1.40105625697e+12 +UniRef50_UPI00034C051A hypothetical protein 1.09716518469e-05 5.80057761253e-06 -2087626124.63 +UniRef50_A6W2T3 3 dehydroquinate synthase 0.000136475804957 0.00412378546885 1.6097258411e+12 +UniRef50_Q24QJ3 Imidazole glycerol phosphate synthase subunit HisH 0.000948605138528 0.00462711755907 1.4850606046e+12 +UniRef50_A3PQB9 Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase 0.0048927774723 0.00135680179899 -1.42751677062e+12 +UniRef50_B9KR17 CrpK, Fnr type transcriptional regulator 0.0108827899111 0.0012095799515 -3.90519356433e+12 +UniRef50_P58423 Fructose 6 phosphate aldolase 1 0.0101171183728 0.00247981777964 -3.08327196968e+12 +UniRef50_E9UU02 Putative TolA domain protein 0.000101734801148 5.80239445701e-05 -17646609193.0 +UniRef50_J3NBT7 1.17131462762e-05 0.000226287519003 86626307393.5 +UniRef50_UPI00023B1DD2 PREDICTED 2.40155774287e-05 1.38392786601e-05 -4108296690.11 +UniRef50_Q729A6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000396638312082 0.0111625192468 4.34631824555e+12 +UniRef50_J1ZV65 1.47794619325e-06 3.31261557154e-06 740678541.941 +UniRef50_UPI0002630EBE nicotinate phosphoribosyltransferase 4.05317546118e-06 6.12368248567e-06 835889093.765 +UniRef50_G0DTU8 0.00036792030283 0.00482932001029 1.80112180943e+12 +UniRef50_UPI00036FBE9A hypothetical protein 7.6872927043e-05 0.000144749983105 27402800477.4 +UniRef50_UPI00029B2F80 GCN5 family acetyltransferase 8.41439541389e-05 0.000502563945552 1.68921285124e+11 +UniRef50_G7MAN7 Carboxyl terminal protease 0.000614157832573 0.000921349452598 1.24017026669e+11 +UniRef50_B9KR73 ABC sugar transporter, inner membrane subunit 0.0123546128529 0.002529459646 -3.96653491781e+12 +UniRef50_UPI00037DF359 hypothetical protein 7.22882882314e-05 1.27544964257e-05 -24034522313.7 +UniRef50_O32113 0.00375068255908 0.00312825375479 -2.51282146352e+11 +UniRef50_Q47BM0 Argininosuccinate synthase 0.0119077110384 0.00275987148788 -3.69309508316e+12 +UniRef50_P0AGM8 Uracil permease 0.00462698448054 0.00179843509325 -1.14192009785e+12 +UniRef50_UPI0002628793 organic solvent ABC transporter ATP binding protein 0.000128200535506 3.36863349922e-05 -38156542567.1 +UniRef50_D3DEH5 DnaJ like molecular chaperone domain protein 5.65631092695e-05 2.31332727519e-05 -13496035232.4 +UniRef50_P0ACZ1 0.000391853967671 0.000613114266848 89325497947.0 +UniRef50_C7C6X9 0.00143892007009 0.000592608772976 -3.41666256052e+11 +UniRef50_B0TY89 Threonine tRNA ligase 1.69441989805e-05 6.07784330265e-06 -4386881132.31 +UniRef50_Q2FGC8 Shikimate dehydrogenase 0.0223138041455 0.00507900364977 -6.9579004549e+12 +UniRef50_UPI0004057B1E hypothetical protein 1.65864004034e-05 6.77126316888e-06 -3962491346.85 +UniRef50_C5N0J9 0.00612411480282 0.00116402329094 -2.00244981051e+12 +UniRef50_UPI0001BC2CC2 glyoxalase bleomycin resistance protein dioxygenase 1.87789706636e-05 3.83704291085e-05 7909312188.44 +UniRef50_Q9ZE56 Aspartate aminotransferase 0.0136697209001 0.00404807991724 -3.88437453559e+12 +UniRef50_K1YDE1 0.000266522718685 0.000402424925402 54865388559.3 +UniRef50_Q4A2U1 Putative membrane protein 2.93786101704e-06 4.80583517939e-06 754124091.961 +UniRef50_D9UFW6 Replication initiation protein 2.14589833001e-05 1.48464009172e-05 -2669580653.49 +UniRef50_W5X411 DoxX family protein 9.27113138416e-05 2.39597858564e-05 -27755835523.7 +UniRef50_UPI00038FA33F Aliphatic sulfonates import ATP binding protein SsuB, partial 8.558454282e-05 1.50795109245e-05 -28463746570.2 +UniRef50_UPI00035D0942 hypothetical protein 6.25787649218e-05 5.61775703977e-05 -2584240780.87 +UniRef50_B9KT30 Transporter, DME family, DMT superfamily 0.000307197551739 0.000187701295675 -48242104957.0 +UniRef50_Q49YA3 HemA concentration negative effector 0.0196753415344 0.00589344931534 -5.56391901169e+12 +UniRef50_UPI0003B4E2D0 preprotein translocase subunit SecD 2.93413130069e-06 9.88854336036e-06 2807581488.72 +UniRef50_A0R033 Phospho 2 dehydro 3 deoxyheptonate aldolase AroG 3.54295369733e-05 1.06854463286e-05 -9989493037.4 +UniRef50_Q8CMX2 Dihydrolipoamide dehydrogenase 0.0120638636002 0.00188143081241 -4.11077306894e+12 +UniRef50_G1TF83 2.0224373231e-05 2.71276105651e-06 -7069652726.49 +UniRef50_Q3SFH1 Acetylglutamate kinase 5.25676752241e-05 0.00363417827872 1.44594015194e+12 +UniRef50_UPI0002626E83 hypothetical protein 5.73132964576e-05 2.593685298e-05 -12667055264.2 +UniRef50_E7T8U3 SdiA regulated domain protein 5.29269066775e-05 5.78537161482e-05 1989013442.07 +UniRef50_A5V195 Beta lactamase domain protein 2.12667180632e-05 0.00010910083823 35459712157.2 +UniRef50_A6LQ08 Oleoyl hydrolase 0.000471103564113 0.00053387377675 25341105118.7 +UniRef50_UPI00036116CD hypothetical protein 8.31040134358e-06 0.000609700859869 2.42788707997e+11 +UniRef50_UPI0004222757 acyl CoA dehydrogenase 4.8695403502e-05 4.41731641336e-05 -1825683527.14 +UniRef50_UPI0001744DDB putative transporter 5.72295395266e-06 4.03240146381e-05 13968872801.5 +UniRef50_Q9RUR8 0.000250013402159 0.0626882755764 2.52070926434e+13 +UniRef50_Q4UYY0 Tyrosine recombinase XerC 0.00311439724736 0.00107409014807 -8.23697013367e+11 +UniRef50_P53401 Succinyl CoA ligase [GDP forming] subunit alpha 3, mitochondrial 1.5984984343e-05 3.10533355285e-05 6083278283.05 +UniRef50_A6M0K8 Amino acid permease associated region 0.000803891465594 0.0024132085664 6.49701062139e+11 +UniRef50_Q9CGD8 Homoserine dehydrogenase 0.00446419781525 0.0055543882634 4.40123262059e+11 +UniRef50_W0YNY5 Putrescine binding periplasmic protein 0.000494910711646 0.000210940503716 -1.14642257648e+11 +UniRef50_UPI0001CB98DC PREDICTED 3.71719048201e-06 6.16049086021e-06 986390345.347 +UniRef50_UPI00036CD3A9 hypothetical protein 6.51318103801e-07 0.000415848406819 1.67620159755e+11 +UniRef50_UPI0002FA5AD3 hypothetical protein 0.000791287236964 0.000262313724087 -2.13553098383e+11 +UniRef50_G7U4S9 0.000170808139747 0.00985672200945 3.91032228873e+12 +UniRef50_B8P4L0 Predicted protein 2.84950950481e-05 3.70961523149e-05 3472352365.45 +UniRef50_R9SPB0 7 carboxy 7 deazaguanine synthase 0.00336279839069 0.000649686826491 -1.09531643209e+12 +UniRef50_W4UGA1 6.27042886125e-05 0.000590591321642 2.13114473137e+11 +UniRef50_UPI000237A558 molecular chaperone DnaK 2.55175879573e-05 6.89886268356e-06 -7516607870.44 +UniRef50_A6LRX4 0.000248891860782 0.000456268026566 83720302918.7 +UniRef50_A0A023RW48 0.000165806437266 0.00381096394926 1.4715948187e+12 +UniRef50_Q9FYA6 Branched chain amino acid aminotransferase 5, chloroplastic 7.74650309469e-06 2.344442995e-05 6337445706.71 +UniRef50_Q3J497 0.0019716347238 0.00247370573148 2.02692226905e+11 +UniRef50_UPI000464D2A1 peptidase M32 1.95225583282e-05 8.64591242153e-06 -4391035423.99 +UniRef50_Q3JNY2 Phosphonates import ATP binding protein PhnC 0.00174089322351 0.002369993062 2.53975324722e+11 +UniRef50_P30296 High affinity branched chain amino acid transport system permease protein LivM 0.00245697305146 0.000378818820648 -8.38976364798e+11 +UniRef50_UPI00036616D0 hypothetical protein 3.66593481159e-06 3.48142701735e-05 12574965218.7 +UniRef50_Q7UT69 Cyclic pyranopterin monophosphate synthase 4.77682281729e-06 0.000127521274482 49553441381.0 +UniRef50_UPI00037F4F10 hypothetical protein 7.98786483501e-06 2.44960812647e-06 -2235862195.29 +UniRef50_E2S811 0.000717146488905 0.00035321685738 -1.46922858165e+11 +UniRef50_Q04I02 Transcriptional regulator AdcR 0.00702928057572 0.00076691700201 -2.52819302255e+12 +UniRef50_Q72IW9 Homoisocitrate dehydrogenase 1.17158068163e-05 5.75797227148e-05 18515825661.8 +UniRef50_Q84NM0 0.000177223468942 0.00026565220857 35699767330.5 +UniRef50_UPI0003EC0560 PREDICTED 2.80867551212e-05 1.76846092498e-05 -4199473936.97 +UniRef50_U1FXL3 Primosome assembly protein PriA 0.0184260949013 0.00430600963914 -5.70045169328e+12 +UniRef50_UPI000372345A hypothetical protein 2.98587242413e-05 2.4576076766e-05 -2132669611.15 +UniRef50_G8VIZ2 Dicarboxylate transport protein alpha ketoglutarate permease 0.000152828335565 0.00550374233675 2.16022964538e+12 +UniRef50_UPI0002625F65 thioredoxin 0.000201125524198 0.000381395031613 72777012299.1 +UniRef50_J9UTL0 0.000838857753003 0.000102998066914 -2.97075585288e+11 +UniRef50_P37417 UDP N acetylenolpyruvoylglucosamine reductase 0.00282714778037 0.000470704015539 -9.51325264679e+11 +UniRef50_D6SIG9 0.00411352462628 0.00143631899592 -1.08082076598e+12 +UniRef50_W0A6T6 Peroxidase 0.000303014800698 0.061407007555 2.46684317052e+13 +UniRef50_UPI0001B4A052 hypothetical protein, partial 4.87486151538e-06 0.000145911559744 56938245790.0 +UniRef50_P76081 1,2 phenylacetyl CoA epoxidase, subunit E 0.00220617548171 0.000466144569113 -7.02471831997e+11 +UniRef50_W0YPV2 1.59245572919e-05 0.000509797026076 1.99382376145e+11 +UniRef50_Q9RTL4 0.00017584751034 0.0259281341848 1.03965141466e+13 +UniRef50_B0VB68 Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain 0.000891699186261 0.0036072780935 1.09631252875e+12 +UniRef50_UPI0003767C94 MULTISPECIES 1.1393260093e-05 0.000283565679908 1.0987934581e+11 +UniRef50_P29915 NADH quinone oxidoreductase chain 3 0.00202506193117 0.00068993132172 -5.3900861093e+11 +UniRef50_P51981 L Ala D L Glu epimerase 0.00368647123907 0.000903629740692 -1.1234672622e+12 +UniRef50_Q7UK64 Argininosuccinate lyase 2.70250515881e-05 1.30021793732e-05 -5661205593.15 +UniRef50_Q5NPZ7 Tryptophan synthase alpha chain 7.25554999669e-06 1.34671814012e-05 2507711823.29 +UniRef50_Q9RZH5 5.48888741709e-05 0.00850186315981 3.41014717514e+12 +UniRef50_Q5HH71 UPF0477 protein SACOL1020 0.0241821953962 0.0141448367194 -4.05220487007e+12 +UniRef50_Q9RZH7 7.5409843749e-05 0.00779275929849 3.11558867741e+12 +UniRef50_Q9RZH0 0.000201453654052 0.0165961985789 6.61875971229e+12 +UniRef50_Q9RZH1 0.000280311377865 0.0254161321516 1.01476392975e+13 +UniRef50_UPI0003737D75 hypothetical protein 7.694776435e-06 3.68677845861e-06 -1618077966.73 +UniRef50_W1VJK5 0.000582622505785 0.00408380435617 1.41347007733e+12 +UniRef50_P14949 Thioredoxin 0.00079192864794 0.00089040212621 39754951583.1 +UniRef50_UPI000472A2A5 hypothetical protein 3.68034083203e-06 3.48079433025e-06 -80559371.4795 +UniRef50_B9KF16 0.000354666553443 3.15711286306e-06 -1.41908674668e+11 +UniRef50_R6IHH7 9.29742070845e-05 0.000583889189001 1.98188402404e+11 +UniRef50_Q6FFB5 Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes 8.65132136393e-05 0.00615470611246 2.44980393835e+12 +UniRef50_F5Q2F1 Putrescine ornithine antiporter 0.000547851562923 0.00159181843557 4.21462237403e+11 +UniRef50_A0A014NVK4 1.00942910561e-05 5.33476925123e-05 17461928946.8 +UniRef50_P34956 Quinol oxidase subunit 1 0.0214904345916 0.00415652627085 -6.99791150008e+12 +UniRef50_I6TBP2 Oligo beta mannoside permease IIC component 0.000594254542829 0.00578379382165 2.09508068967e+12 +UniRef50_Q6D107 Bifunctional protein Aas 0.00312568631822 0.000897504725649 -8.99544251783e+11 +UniRef50_I4K2W0 0.017898833977 0.00035156750618 -7.08404680344e+12 +UniRef50_UPI00036C4785 hypothetical protein, partial 2.11263109756e-05 0.00013332466527 45295852457.1 +UniRef50_Q3J232 0.00633080828617 0.00333505612436 -1.20942190974e+12 +UniRef50_Q3J231 0.0110379923868 0.0057373490832 -2.13993474787e+12 +UniRef50_Q3J230 0.0186794836082 0.00642777575693 -4.94616480493e+12 +UniRef50_UPI00041335DC hypothetical protein 1.95823394932e-06 2.925220169e-06 390384203.14 +UniRef50_UPI00035E09FF hypothetical protein 5.30692510043e-06 1.3545702841e-05 3326095675.04 +UniRef50_A4SN85 Putative transport protein ASA_2308 0.00244992063731 0.000592570269494 -7.49835135741e+11 +UniRef50_A4SV52 Indole 3 glycerol phosphate synthase 8.34767104486e-06 0.00484018938354 1.9506737927e+12 +UniRef50_B0JHY9 50S ribosomal protein L6 0.0274918951823 0.00525017705819 -8.97925454327e+12 +UniRef50_Q4T085 Chromosome undetermined SCAF11289, whole genome shotgun sequence. 2.91348832916e-05 5.44712044637e-05 10228583768.8 +UniRef50_J9YTG3 0.000313700267745 0.000412069821193 39712995857.1 +UniRef50_UPI00044144A1 50s ribosomal protein 4.89810874842e-06 4.89991904881e-05 17804147879.4 +UniRef50_A4WTJ9 3.34830368967e-05 6.60690467491e-05 13155372052.7 +UniRef50_I3TNP2 Amino acid carrier protein 0.000556025739778 0.000380583802193 -70828063117.7 +UniRef50_Q5HQ95 Cobalt transport family protein 0.0164474368722 0.00250379740831 -5.62921835927e+12 +UniRef50_F5XZ61 Candidate cytosine deaminase 0.00310558512113 0.00145396723899 -6.6677840665e+11 +UniRef50_A4WUN6 ChaC family protein 3.08348946962e-05 5.42117169395e-05 9437510005.49 +UniRef50_Q5HRI6 SdrG protein 0.0043053372442 0.00109141688704 -1.29749908742e+12 +UniRef50_D6AJJ2 Predicted protein 6.71807294909e-05 0.000325554987993 1.04308858766e+11 +UniRef50_UPI000470ED8E hypothetical protein, partial 1.28670613428e-05 1.80366741489e-05 2087036128.11 +UniRef50_Q9RWT4 0.000235438246685 0.0519460892705 2.08762243794e+13 +UniRef50_S6E1Z6 Red like rubisco 1,5 bisphosphate carboxylase oxygenease form I 0.000414123057326 9.18488364726e-06 -1.63478509864e+11 +UniRef50_UPI00047E6722 hypothetical protein 6.75149776873e-06 5.25080286479e-05 18472473011.7 +UniRef50_UPI0003AE08B4 PREDICTED 1.63388598705e-05 2.33039177123e-05 2811879321.61 +UniRef50_M4XCW5 0.000149029591146 0.000831878042813 2.75674299431e+11 +UniRef50_UPI0004638808 hypothetical protein, partial 0.000127447309763 1.0205860977e-05 -47331811589.3 +UniRef50_G1Y260 0.000542823830873 0.000255257418853 -1.16094089369e+11 +UniRef50_Q2RFW5 Ribose 5 phosphate isomerase 0.00671319668019 0.00201300603926 -1.89752463957e+12 +UniRef50_UPI0004657CE9 peptidoglycan glycosyltransferase 2.40224347108e-06 4.65786628945e-06 910622611.381 +UniRef50_B7RSE7 Plasmid partitioning protein RepA 2.06001000446e-05 1.24742548114e-05 -3280503435.98 +UniRef50_U2Z6B8 GfdT protein 9.78123590463e-06 4.80811777671e-06 -2007708815.26 +UniRef50_F2N3U1 4.08135857568e-05 5.36517930467e-05 5182941825.45 +UniRef50_Q3IUV5 TraF 0.0293013767069 0.00557410179858 -9.57899204689e+12 +UniRef50_F0KNJ6 0.000713440944769 0.00508117920664 1.76330953449e+12 +UniRef50_UPI00047C69BC multidrug transporter 4.20072353421e-06 1.4317095425e-05 4084103474.16 +UniRef50_C7NCF6 2 nitropropane dioxygenase NPD 0.000255601423552 0.00631014605008 2.44429396335e+12 +UniRef50_Q9HTK9 Rubredoxin NAD reductase 0.000139122600314 0.000510660578947 1.49994441258e+11 +UniRef50_Q3JQL8 Bifunctional protein FolD 3.32814568192e-05 0.00150976281981 5.96073644703e+11 +UniRef50_UPI000382E191 hypothetical protein 8.49920121381e-05 9.60277145054e-06 -30435561595.6 +UniRef50_UPI00047171F6 molybdopterin biosynthesis protein B 0.000120484599966 4.23403278635e-05 -31547801585.8 +UniRef50_B0TI32 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00846520598424 0.00481700514044 -1.4728234491e+12 +UniRef50_Q9Z9A0 DNA directed RNA polymerase subunit beta 2.725571681e-06 3.42934449604e-06 284121721.695 +UniRef50_Q8ZN74 tRNA cytidine acetyltransferase TmcA 0.00249240658847 0.000592713532661 -7.66929398486e+11 +UniRef50_Q2Y8M6 N succinylarginine dihydrolase 1.50837536598e-05 5.0615915139e-05 14344769617.8 +UniRef50_P63229 D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase 0.000223805922247 1.45494721667e-05 -84479396762.7 +UniRef50_UPI00016C41D3 preprotein translocase subunit SecA 5.83329550424e-06 3.72411265694e-05 12679726818.4 +UniRef50_A1BAM5 2.62952768077e-05 0.000378064849263 1.42013693098e+11 +UniRef50_UPI0003B3E9C2 cobalamin biosynthesis protein 7.65521839629e-05 0.000377546591003 1.21515135739e+11 +UniRef50_UPI0003651143 cold shock protein, partial 2.74741363109e-05 1.7161600205e-05 -4163297375.0 +UniRef50_P33348 0.00255970780493 0.00048537799212 -8.37432400321e+11 +UniRef50_Y5MV84 0.00153477060641 1.65255634518e-05 -6.12934154805e+11 +UniRef50_UPI0003B3392D pyridine nucleotide disulfide oxidoreductase 3.83871540707e-06 2.12505022957e-05 7029352033.58 +UniRef50_A0A023B4C6 4.63819422101e-06 1.34859807488e-05 3571959995.82 +UniRef50_Q5DXZ5 Lateral flagellar motor protein B 0.00407980071436 0.00113377030243 -1.18934862915e+12 +UniRef50_P45769 0.00207592490052 0.000253853901306 -7.35592421707e+11 +UniRef50_B9KUP5 0.00204597794229 0.000543940685578 -6.06390872604e+11 +UniRef50_A7H6H5 Glucose 1 phosphate adenylyltransferase 7.89921593479e-06 1.20789433206e-05 1687407236.67 +UniRef50_Q8G3W4 Permease of ABC transporter for sugars 0.000573414754476 0.00621470856633 2.2774595383e+12 +UniRef50_UPI00046C05A0 PREDICTED 2.29073575845e-05 9.82149473889e-05 30402598132.1 +UniRef50_Q9ZMZ4 Urease subunit alpha 0.00070094077846 0.0029079147787 8.90982486513e+11 +UniRef50_Q2NA61 NADH quinone oxidoreductase subunit B 3.24379373945e-05 5.56783487769e-05 9382439266.99 +UniRef50_P43262 Probable phospholipid binding lipoprotein MlaA 0.000822418765628 0.00287856974796 8.30093383377e+11 +UniRef50_G4LR38 0.0012168056243 0.000239122838212 -3.94702538261e+11 +UniRef50_A6QE03 Amidase 7.79929729079e-05 0.000405555985165 1.32241207698e+11 +UniRef50_A7C6L8 Excinuclease ABC subunit A 1.2143137735e-05 6.41820174776e-05 21008734341.0 +UniRef50_UPI0001C373E9 helicase 7.25215787739e-07 1.36584905101e-05 5221321714.56 +UniRef50_S6UH58 0.000124012885587 2.95276839803e-05 -38144835352.4 +UniRef50_UPI000416F2B1 alpha amylase 1.50703172612e-05 1.1011041767e-05 -1638779329.92 +UniRef50_UPI00026CA7A4 anhydro N acetylmuramic acid kinase 8.24970514116e-06 5.41626553079e-05 18535621397.6 +UniRef50_UPI000441A65C PREDICTED 2.258502536e-05 1.43469943454e-05 -3325794212.6 +UniRef50_Q4ZZY5 8.98670736003e-05 0.000183659762573 37865259504.0 +UniRef50_A0A024HXK5 0.000119486966624 1.45341478699e-05 -42370740846.9 +UniRef50_UPI0000164D05 cytochrome c oxidase, subunit II 1.19387159242e-06 0.0501669819222 2.02525442395e+13 +UniRef50_Q6A5B0 0.000427342628894 0.000264726264841 -65650221695.4 +UniRef50_X1NF36 Marine sediment metagenome DNA, contig 2.55427031798e-05 0.000157001412497 53071494131.0 +UniRef50_Q5HLC6 Transcriptional regulator, MerR family 0.00817182046483 0.0038622417981 -1.73982979224e+12 +UniRef50_P44528 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.00103955620248 6.78806695283e-05 -3.92277336452e+11 +UniRef50_F4GZX9 Amidophosphoribosyltransferase 7.94150046685e-05 0.00497816626972 1.97768600014e+12 +UniRef50_C6KU11 ABC transporter, permease protein 8.49810087235e-05 2.90787374061e-05 -22568432928.8 +UniRef50_R9SK19 Histone acetyltransferase ELP3 family 0.00303567994113 0.0011951999861 -7.43024343074e+11 +UniRef50_B7IB09 Endonuclease exonuclease phosphatase 0.000202284689816 0.00607921344193 2.37258825525e+12 +UniRef50_R4NJP1 Signal peptidase I 0.0038641561021 0.00352264843809 -1.37870834731e+11 +UniRef50_Q8FBR8 5.83358310779e-05 3.20496053928e-05 -10612071877.3 +UniRef50_Q46TV5 Amidase 0.000372638057105 0.000124082649234 -1.00344868275e+11 +UniRef50_Q99W47 Serine aspartate repeat containing protein D 0.0113450053575 0.00172772280502 -3.88261498376e+12 +UniRef50_UPI000477EDDF 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.34242136993e-05 1.31743773864e-05 -4137984699.15 +UniRef50_B0RYF7 2 methylcitrate hydratase 0.000397261925474 0.00609777103479 2.30136548055e+12 +UniRef50_B9D5D5 1.98046155458e-05 3.46934103295e-05 6010789160.24 +UniRef50_S6AZR4 0.000272225472725 0.000217945907889 -21913326409.5 +UniRef50_A1B9D8 ABC transporter related protein 0.00223009761593 0.00141733744242 -3.28121255735e+11 +UniRef50_J3DVI4 8.85346085631e-05 0.000109614272475 8510118997.8 +UniRef50_UPI00047C6BBB uracil transporter 6.70087451266e-05 0.000168588431059 41008965733.7 +UniRef50_K0JC90 Mobilization protein A 0.000453282190779 5.87443714917e-05 -1.5927975917e+11 +UniRef50_UPI0004668D5E peptidase S11 5.16836570866e-06 2.01302633986e-05 6040301700.54 +UniRef50_A6LZM4 0.000107955954865 0.00162652192923 6.13063718749e+11 +UniRef50_Q4KGS9 GAF domain cyclic diguanylate phosphodiesterase domain protein 2.88373856325e-06 6.64639128198e-05 25668096563.8 +UniRef50_B0B7Q0 Pyruvate kinase 3.91561678854e-06 4.63457345603e-06 290251629.256 +UniRef50_K8NVT8 Diguanylate cyclase domain containing protein 3.07302012788e-05 1.4247680879e-05 -6654195748.67 +UniRef50_Q3JSP4 0.000142664773573 0.000372743160096 92885468018.6 +UniRef50_UPI000474188B dTDP 4 dehydrorhamnose 3,5 epimerase 8.56071548121e-06 1.77246660845e-05 3699599312.87 +UniRef50_S6AGE8 2.1137545491e-05 0.00155605069186 6.19663272692e+11 +UniRef50_Q96S55 ATPase WRNIP1 2.89653416051e-06 2.51701837151e-05 8992145653.61 +UniRef50_UPI0003B5BF85 ABC transporter 5.03561422951e-06 5.76073234275e-06 292739080.515 +UniRef50_F8DIK9 Phosphotransferase enzyme family 0.00688999346857 0.00571964218281 -4.72485175887e+11 +UniRef50_P0AFM3 Glycine betaine binding periplasmic protein 0.0162263459932 0.00563576538334 -4.27554735326e+12 +UniRef50_UPI00037F68CC hypothetical protein 2.20300516273e-05 2.81664358737e-05 2477333622.17 +UniRef50_Q4L5D3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00470589917981 0.00100427916654 -1.49438942334e+12 +UniRef50_A6LWI6 GAF domain containing protein 0.00879897661091 0.00562201924473 -1.28257667438e+12 +UniRef50_Q9PBC7 Histidine biosynthesis bifunctional protein HisB 0.00310240144229 0.00406581295447 3.88941049856e+11 +UniRef50_C0RG90 3 phosphoshikimate 1 carboxyvinyltransferase 0.000509206598127 0.000297339965658 -85533159423.7 +UniRef50_E3ZQM3 YqeL 5.18276229346e-05 0.000667388171693 2.48509347311e+11 +UniRef50_P72139 Putative imidazole glycerol phosphate synthase subunit hisF2 0.000673684748627 0.000685753825043 4872434253.36 +UniRef50_B2G6L2 Isoleucine tRNA ligase 0.0169144496618 0.0144477881506 -9.95821521412e+11 +UniRef50_D5E389 Relaxase mobilization nuclease domain protein 0.000301922124451 3.64831600988e-05 -1.07160967211e+11 +UniRef50_F7F1K1 2.82110713739e-06 4.18458795825e-05 15754779523.9 +UniRef50_B2S6U9 Carbamoyl phosphate synthase small chain 0.00219617592887 0.000177367390508 -8.15017780503e+11 +UniRef50_A0A058ZGI8 1.81254548438e-05 1.37027183802e-05 -1785512983.43 +UniRef50_UPI00047EBD86 hypothetical protein, partial 2.6286981689e-06 1.33686134264e-05 4335835583.03 +UniRef50_X1RQI5 Marine sediment metagenome DNA, contig 1.89212973806e-05 1.49858692221e-05 -1588780640.72 +UniRef50_O66605 Lon protease 1.68699879454e-06 3.52058654758e-05 13531977802.0 +UniRef50_Q653B9 7.814703027e-05 8.63424200089e-05 3308579406.34 +UniRef50_UPI00047DCF6D dTDP 4 dehydrorhamnose 3,5 epimerase 3.23015347689e-05 1.77713318235e-05 -5866021234.7 +UniRef50_UPI0004418B4E PREDICTED 1.45127312878e-05 1.45063699849e-05 -2568136.04269 +UniRef50_P37024 ATP dependent RNA helicase HrpB 0.000419171202939 0.000266051085761 -61816470299.9 +UniRef50_P45404 Cytochrome c type biogenesis protein CycK 0.00582054680958 0.000492232903064 -2.15110570983e+12 +UniRef50_E6SIK1 Xanthine uracil vitamin C permease 0.00030581571671 0.0233851465464 9.31740907119e+12 +UniRef50_Q8FT67 Triosephosphate isomerase 6.72502513686e-06 9.64470854778e-05 36221896773.1 +UniRef50_L0A7V5 ABC type Fe3+ hydroxamate transport system, periplasmic component 3.67252879385e-05 0.00645472485436 2.59102518267e+12 +UniRef50_UPI000378926F Gnt II system L idonate transporter IdnT, partial 5.22725372676e-06 7.95226320055e-06 1100119764.2 +UniRef50_UPI0004628F03 hypothetical protein 2.47269880895e-05 0.000123936640101 40052153956.4 +UniRef50_E3D2E3 0.00017584751034 0.00416816044096 1.61174572128e+12 +UniRef50_Q9RYE7 Chromosomal replication initiator protein DnaA 0.000368994553624 0.0365186791701 1.45940712862e+13 +UniRef50_B9KTR9 0.000382809495942 0.000743423810463 1.45584424007e+11 +UniRef50_UPI00037D79FE hypothetical protein 1.71290884847e-05 1.69137024146e-05 -86953999.5837 +UniRef50_Q5X183 0.000237911337508 0.00742330784886 2.90083274636e+12 +UniRef50_Q5HEM7 DNA polymerase IV 0.0210533921232 0.00446629078494 -6.69641635689e+12 +UniRef50_B9KTR7 0.000163829099272 0.000154276823989 -3856370751.35 +UniRef50_E9C843 1.2052593655e-05 1.83121313845e-06 -4126496745.0 +UniRef50_F3U3B9 0.000631326331853 2.51256024573e-05 -2.44730673377e+11 +UniRef50_Q5M4V7 Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein 0.00359327886167 0.00417542386488 2.35019081518e+11 +UniRef50_UPI0003B3970A arylesterase 6.3378293779e-06 1.01839023136e-05 1552706840.76 +UniRef50_UPI0003C73AEA oxidoreductase 0.000165808094573 0.000426347620372 1.05183003745e+11 +UniRef50_W5Y8E7 6.00723780228e-05 2.06848599848e-05 -15901224371.1 +UniRef50_UPI000360A00D phage tail protein 2.03991863168e-05 2.99255321412e-05 3845902710.72 +UniRef50_L7WUC8 HesA MoeB ThiF family protein 0.0128625759007 0.00109975190756 -4.7487963921e+12 +UniRef50_A6TKL7 2.06972554821e-05 3.71459436328e-05 6640537254.54 +UniRef50_M4UHU9 0.00067323607527 7.32546582621e-06 -2.68836284675e+11 +UniRef50_I6TYT4 Transposase IS204 IS1001 IS1096 IS1165 family protein 0.00166847820395 0.00191516656741 99591119535.4 +UniRef50_S2ZWU0 2.18537965716e-05 7.43670485448e-05 21200244231.6 +UniRef50_Q06115 Choloylglycine hydrolase 0.00284910920615 0.00173336964275 -4.50437753409e+11 +UniRef50_P25553 Lactaldehyde dehydrogenase 6.43372947443e-06 0.0057758096017 2.32916783782e+12 +UniRef50_M9R5B4 Aminotransferase 0.00110287735399 0.000223161238178 -3.55152191284e+11 +UniRef50_Q9DWG9 Pr23.1 6.88629852005e-05 4.97131945548e-05 -7731005478.03 +UniRef50_P17334 N,N diacetylchitobiose permease IIC component 0.00242783908131 0.00102949482912 -5.64528734223e+11 +UniRef50_UPI00021962A1 ABC type polar amino acid transport system, ATPase component, partial 1.66703311327e-05 1.73800840618e-05 286535967.126 +UniRef50_UPI0003A69976 hypothetical protein 3.43109044047e-05 2.75755099816e-05 -2719161381.19 +UniRef50_Q834B3 Phosphate import ATP binding protein PstB 2 1.2629692219e-05 0.000350098827533 1.36240431138e+11 +UniRef50_R9ZFP1 MFS transporter 0.000104086210166 0.000358296517874 1.02627820733e+11 +UniRef50_Q49ZN6 N acetylmuramic acid 6 phosphate etherase 7.80930351724e-06 1.11704058536e-05 1356918258.55 +UniRef50_K8E2U7 ABC transporter, CydDC cysteine exporter family, permease ATP binding protein CydD 0.000467111196855 0.0016261327558 4.67911226138e+11 +UniRef50_A3M2G5 Transposition Helper 0.00036296729697 0.00889775268894 3.44559759633e+12 +UniRef50_C5Y3F1 6.93744129686e-06 2.52463690816e-05 7391538822.49 +UniRef50_K0SHL6 0.000513563461443 0.000101260910386 -1.66451599383e+11 +UniRef50_D3RCC5 Ethanolamine utilisation protein EutH 0.00128451279398 0.00163383718916 1.41026545027e+11 +UniRef50_J7R0T4 Rhsg core protein with extension 0.00404797171324 0.00121444599548 -1.14392910353e+12 +UniRef50_P20384 Putative transposon Tn552 DNA invertase bin3 0.10471001284 0.0142939386056 -3.65020786984e+13 +UniRef50_P19672 Putative rRNA methyltransferase YqxC 1.76627683497e-05 0.00508048506365 2.04392348843e+12 +UniRef50_W9BCF0 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 2.54749945824e-05 3.35288037946e-05 3251421610.32 +UniRef50_M3Z7R3 3.86294330453e-05 1.74725518625e-05 -8541292557.62 +UniRef50_F0KK38 0.000270922958506 0.0082986334321 3.24088522927e+12 +UniRef50_N6VAB0 0.000170409687593 5.54253071778e-05 -46420605390.6 +UniRef50_Q2P582 Aspartate tRNA ligase 0.00460973211363 0.00470714839121 39328146691.2 +UniRef50_A1JSC3 UvrABC system protein B 0.000798449460941 0.000400692295175 -1.60579448849e+11 +UniRef50_O26273 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.00230308016908 0.000782461541859 -6.13892399898e+11 +UniRef50_P37772 Inner membrane ABC transporter permease protein YjfF 0.00333839211359 0.00105283869912 -9.22705960316e+11 +UniRef50_A0A026SW65 1.42853735793e-06 7.26648678921e-05 28758980804.7 +UniRef50_G8WJX8 2.2542552207e-05 8.32388635744e-05 24503845726.5 +UniRef50_F0YA18 9.70821255751e-05 0.000333668144057 95512678898.1 +UniRef50_UPI000368DC29 hypothetical protein 8.5600510081e-05 0.000130891511488 18284533051.1 +UniRef50_UPI00029A2592 dihydrolipoamide dehydrogenase, partial 3.39935488234e-05 8.1094744461e-05 19015330675.6 +UniRef50_P39858 Protein CapI 1.10882925713e-05 0.000592472033592 2.34711750631e+11 +UniRef50_R4KAB8 High affinity sulfate transporter 1 0.000511003436081 0.000991920492529 1.94152117204e+11 +UniRef50_P67185 Probable transcriptional regulatory protein SAG1645 0.0136585197178 0.0127185628028 -3.79472141154e+11 +UniRef50_D4HEB6 Ribosomal subunit interface protein 0.000180327701681 0.000638996201181 1.85170101744e+11 +UniRef50_S3NMU2 0.000187571481725 0.00666265810004 2.61407192606e+12 +UniRef50_B7H1L0 EpsC 0.000481980756962 0.00523259545152 1.91788144879e+12 +UniRef50_B6TJX5 Grx_I1 glutaredoxin subgroup III 0.000268992391105 0.000185430109167 -33735118642.9 +UniRef50_V5VA90 0.000126815001857 0.0131509575083 5.25800615403e+12 +UniRef50_UPI0003DE9A9C PREDICTED 1.53395802631e-05 0.000836015603976 3.313169816e+11 +UniRef50_M4QX62 General secretion pathway protein D 5.24528933048e-05 0.00729011123658 2.92193148924e+12 +UniRef50_P56123 Ribonuclease R 6.27400535489e-05 0.00405287445556 1.61086622255e+12 +UniRef50_A6TXF8 Histidine ammonia lyase 0.0117471459976 0.0019242029618 -3.96564264462e+12 +UniRef50_Q9RU93 NADH dehydrogenase I, G subunit 0.000118427669881 0.0165339916394 6.62716461611e+12 +UniRef50_H9JIZ2 0.000224465617097 4.70482656792e-05 -71625561923.2 +UniRef50_UPI00016C363F CheA signal transduction histidine kinase, partial 6.33645259553e-05 7.34956366756e-05 4090053720.49 +UniRef50_C6XJS7 Membrane protein 1.88509248458e-05 5.86854247297e-05 16081676427.4 +UniRef50_D4HDP4 Transcriptional regulator, MerR family 0.000565831322848 0.00714119684451 2.6545557499e+12 +UniRef50_S6VQV4 GlcG protein 3.15610562223e-05 8.55312365878e-05 21788424102.1 +UniRef50_Q3HKF7 Transcriptional regulator, LysR family 0.00693773465229 0.00171023942075 -2.11040397355e+12 +UniRef50_Q48KH7 Response regulator 0.000427602384119 0.00199675362471 6.33485611477e+11 +UniRef50_Q4THH6 Chromosome undetermined SCAF2934, whole genome shotgun sequence. 0.00022033188776 5.73858704506e-06 -86633948854.6 +UniRef50_B5YJD3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.92081699906e-05 3.43694947412e-06 -6367035257.15 +UniRef50_Q02441 Denitrification regulatory protein NirQ 0.00843808006112 0.00209534084601 -2.5606416553e+12 +UniRef50_A6D100 3.1928899509e-06 9.29418958025e-05 36232775006.4 +UniRef50_E4ZAN9 NADH dehydrogenase I chain J 0.00017055089858 0.00253261362313 9.5359370767e+11 +UniRef50_Q92IH1 DNA topoisomerase 1 5.41173041607e-06 5.14764548942e-06 -106614325.575 +UniRef50_R6GIU2 Anaerobic sulfite reductase subunit C 0.00044298054813 0.00191250546997 5.93265244045e+11 +UniRef50_UPI000478777B adenosine deaminase 2.00422032906e-05 4.54724725793e-05 10266511776.3 +UniRef50_Q56220 NADH quinone oxidoreductase subunit 4 9.49286506404e-06 9.17414583619e-05 33204766418.1 +UniRef50_A1SS95 Prolipoprotein diacylglyceryl transferase 0.000600584428659 0.0072837907848 2.69809241814e+12 +UniRef50_UPI00035E9ADC hypothetical protein 7.54738020193e-06 0.000103062445205 38560603843.4 +UniRef50_Q30TV4 50S ribosomal protein L14 0.032661496305 0.0035538767047 -1.17511032233e+13 +UniRef50_UPI0003788832 hypothetical protein 1.32678123066e-06 1.51707448802e-05 5588978009.84 +UniRef50_V1GSR8 Siderophore interacting protein 0.000448667557334 0.000355803259269 -37490456701.9 +UniRef50_U4KCQ5 Isoleucine tRNA ligase 0.00101101415417 0.000480109193642 -2.14332847502e+11 +UniRef50_K7RTE7 UvrD REP helicase 0.000225522113463 0.004821075346 1.85528123376e+12 +UniRef50_I6U2U0 Permease 0.0122627903853 0.00290593248843 -3.77747835452e+12 +UniRef50_Q5FJI8 Acyl carrier protein 2.43750335277e-05 4.67615004598e-05 9037691413.33 +UniRef50_UPI000476D930 phosphopantetheine adenylyltransferase 2.50451620642e-05 1.68717720966e-05 -3299697828.69 +UniRef50_W8VWJ7 0.000987053417958 0.00218753114959 4.84647591777e+11 +UniRef50_A5D1G8 Methylthioribose 1 phosphate isomerase 0.000466501223218 0.00138239636781 3.69758109169e+11 +UniRef50_UPI00047CDE52 hypothetical protein 7.34416778829e-06 1.71365397594e-05 3953300730.65 +UniRef50_Q2FH48 Phosphate binding protein PstS 0.0157006897857 0.00402567587681 -4.71334638355e+12 +UniRef50_Q5F4W9 Maf like protein NGO2175 0.000225140748821 0.00346288419572 1.30711676109e+12 +UniRef50_Q732I6 Orotidine 5 phosphate decarboxylase 0.0185636621689 0.0192418254175 2.73782825459e+11 +UniRef50_P76612 0.00196197953795 0.000416626258262 -6.23878082628e+11 +UniRef50_L1K5J8 0.0102508962883 0.00018072218278 -4.06545286132e+12 +UniRef50_B2EBX5 0.0001120428719 0.000237634676795 50702952820.9 +UniRef50_S6VZ76 Inner membrane translocator 0.00062355697263 7.79797316464e-05 -2.20256227171e+11 +UniRef50_UPI0003B71E48 RNA polymerase subunit sigma 54 1.68506773741e-05 4.07131824725e-05 9633586134.09 +UniRef50_P02930 Outer membrane protein TolC 0.00307235143049 0.00166997742763 -5.66155594019e+11 +UniRef50_A7ZK67 Methylglyoxal synthase 0.00359829496077 0.00380741303336 84423532071.9 +UniRef50_G2UGP7 Putative membrane protein 2.54772868019e-05 0.000624358542957 2.41775712209e+11 +UniRef50_F2B298 Archaeal DNA polymerase II, large subunit 1.74794003368e-05 2.0581046512e-05 1252172622.41 +UniRef50_Q9DWH3 Pr5 6.18491516412e-05 9.50590252783e-05 13407233518.3 +UniRef50_UPI00046774C4 phosphoserine phosphatase 5.66450792158e-06 1.24723524107e-05 2748410361.9 +UniRef50_X6JA50 4.09787025675e-05 1.88551024801e-05 -8931568842.39 +UniRef50_UPI0003752D0D hypothetical protein 1.53903569265e-05 2.55692576411e-05 4109347127.64 +UniRef50_Q8CTJ5 0.0178323973825 0.00553655765373 -4.96398138544e+12 +UniRef50_Q4UKI8 2 oxoglutarate dehydrogenase E1 component 1.5799977335e-06 1.22910629901e-05 4324188483.64 +UniRef50_Q5F5X5 0.000160177930206 0.00170193674714 6.22426953903e+11 +UniRef50_O25441 0.000118087379206 0.00603712051017 2.38958630967e+12 +UniRef50_A1U1S9 Acyl carrier protein 3.62717600622e-05 4.6896223492e-05 4289226263.44 +UniRef50_D9SSR9 ABC transporter related 0.000140290881731 0.00274989629911 1.05352973046e+12 +UniRef50_C5FF74 Splicing factor 3B subunit 4 2.61245071292e-05 2.31331994839e-05 -1207627603.88 +UniRef50_UPI00037E81F2 MULTISPECIES 7.21226107067e-05 4.56287243231e-05 -10695907049.6 +UniRef50_D0K3P4 Sua5 YciO YrdC YwlC family protein 0.0141575354225 0.000341406595601 -5.57774075039e+12 +UniRef50_Q5HDX9 Adenylate kinase 0.0212267216232 0.00581124298033 -6.22341789733e+12 +UniRef50_B2IR65 0.00421530084046 0.00866819375854 1.79768751417e+12 +UniRef50_P0A5W9 Ribonucleoside diphosphate reductase subunit alpha 0.00252396363211 0.0108357020548 3.35555079774e+12 +UniRef50_Q5HK23 Ribosomal RNA large subunit methyltransferase H 0.00872235820874 0.00114224991911 -3.06018273491e+12 +UniRef50_D5H605 3.1570149973e-05 1.13889882103e-05 -8147382654.31 +UniRef50_V8NVA5 Vegetative cell wall protein gp1 2.04469755447e-05 0.00028214971834 1.0565260872e+11 +UniRef50_T0GPL5 0.000323103934666 0.00016067538887 -65574397160.2 +UniRef50_B7GX14 Probable 5 dehydro 4 deoxyglucarate dehydratase 0.000131518480593 0.00504257433128 1.98265351236e+12 +UniRef50_A4X329 Transcriptional regulator, LacI family 0.000106334081372 0.00407252271976 1.60119902393e+12 +UniRef50_Q837B3 Methionine tRNA ligase 2.03105378809e-05 0.000535848122554 2.0812884929e+11 +UniRef50_K2DQ88 2.03127504433e-05 0.00178837402907 7.13788034735e+11 +UniRef50_P52002 Multidrug resistance protein MexB 0.00208737017076 0.00135063013479 -2.97430993338e+11 +UniRef50_UPI00039FB6D9 hypothetical protein 4.58203851822e-07 6.29603294781e-05 25232875102.7 +UniRef50_UPI0004153B49 hypothetical protein 3.67592727076e-05 7.83179687777e-06 -11678376972.5 +UniRef50_Q5HJ26 Single stranded DNA binding protein 2 0.00327825028214 0.000516588988672 -1.11491655357e+12 +UniRef50_UPI000378D9CD hypothetical protein, partial 7.86718978569e-06 0.000399144615115 1.57963498119e+11 +UniRef50_E3I295 Peptidase M20 0.0035318852967 0.000877903916283 -1.07144485129e+12 +UniRef50_V7EQE6 5.28182944685e-06 2.88254303055e-06 -968621368.816 +UniRef50_P96963 DNA repair protein RadA homolog 0.000317069060138 0.000131349164648 -74977400848.7 +UniRef50_UPI000197AB3D hypothetical protein 2.82386295234e-05 9.17121010581e-06 -7697751202.43 +UniRef50_Q3ACZ7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000143610053598 8.2116093624e-06 -54662013463.8 +UniRef50_R9SL16 Energy converting hydrogenase A subunit P EhaP 0.00372036916144 0.00140836644364 -9.3338386864e+11 +UniRef50_H2JC94 Drug resistance transporter, EmrB QacA subfamily 0.000209375239973 0.00191360452669 6.88018276294e+11 +UniRef50_D7FCY4 7.50966821352e-05 0.00209196557611 8.1423472226e+11 +UniRef50_O30807 NAD dependent malic enzyme 0.00625405170713 0.00258693534741 -1.480459875e+12 +UniRef50_T1YCF9 0.0109443514391 0.00473747828956 -2.50579085737e+12 +UniRef50_UPI000367099C 30S ribosomal protein S2 1.16223701895e-05 1.04244194839e-05 -483627400.359 +UniRef50_UPI00036ED496 hypothetical protein 3.78987397056e-05 1.05410237375e-05 -11044645653.2 +UniRef50_D3QF63 0.0217426656039 0.00467904781824 -6.88879189422e+12 +UniRef50_G8RGA7 ATP dependent DNA helicase, RecQ family 0.00889067289667 0.00150816518683 -2.98040895602e+12 +UniRef50_UPI00046621BD hypothetical protein 2.97933471938e-06 9.86055100277e-05 38605460437.1 +UniRef50_UPI00034B9DA0 hypothetical protein 3.24534355801e-06 6.25111964113e-06 1213468689.78 +UniRef50_Q39FG9 1.98903966321e-05 4.66364665681e-05 10797716644.3 +UniRef50_Q8X6C5 Xanthine dehydrogenase FAD binding subunit 0.00256421807551 0.000660389106651 -7.68599117337e+11 +UniRef50_J0PUR2 0.000389696812655 0.000105997482871 -1.14532900816e+11 +UniRef50_Q8NNF6 Pyruvate dehydrogenase E1 component 0.00021396276354 0.00415500087294 1.59104544674e+12 +UniRef50_UPI00035DD0A3 hypothetical protein 1.82280404061e-05 0.00187305795321 7.4881759712e+11 +UniRef50_B9L9V6 Inner membrane protein YjcH 0.000182049892004 6.39934054844e-05 -47660852324.1 +UniRef50_P0AFN4 Phage shock protein C 0.00429672991919 0.00175435666453 -1.02638728133e+12 +UniRef50_Q3ZTZ2 1.00342729469e-05 1.42076590748e-05 1684847193.04 +UniRef50_E1RPL7 2.35487204541e-05 3.68455028343e-05 5368074216.76 +UniRef50_UPI00040408E0 hypothetical protein 1.31454943213e-05 3.75553480562e-05 9854557495.37 +UniRef50_V4QZ67 ATPase 9.49117849326e-05 7.77178239014e-05 -6941413061.92 +UniRef50_Q5HNT4 Putative Holliday junction resolvase 0.00227268171505 0.00087734816672 -5.63313276129e+11 +UniRef50_X6KWG2 1.6203796048e-05 4.51811738646e-06 -4717651875.05 +UniRef50_Q6F6Q1 0.000476630428599 0.00899468350563 3.43884255546e+12 +UniRef50_A0L3B2 Diguanylate cyclase with GAF sensor 1.07582720557e-05 0.000466675098863 1.84059217711e+11 +UniRef50_P67702 Antitoxin HigA 0.00109153208873 0.000851875111142 -96752462774.1 +UniRef50_N8J4Y3 sn glycerol 3 phosphate binding periplasmic protein ugpB 3.83386868628e-05 1.57989452983e-05 -9099570263.32 +UniRef50_K7ARY8 0.000376892291542 0.000438170753534 24738867077.5 +UniRef50_Q57SA8 7 cyano 7 deazaguanine synthase 0.0107139216711 0.0029542547064 -3.13267277547e+12 +UniRef50_B2VDK4 Acyl carrier protein 4.02282145421e-05 5.3495590544e-05 5356202500.98 +UniRef50_B1Y7H6 50S ribosomal protein L1 0.000164124342977 0.00421378696364 1.63489849491e+12 +UniRef50_M4YP28 Chemotaxis protein 0.00029325353962 0.00101167241705 2.90034516809e+11 +UniRef50_A3M533 Lysozyme 0.00179755232787 0.00877846249942 2.81827910166e+12 +UniRef50_K6EM30 Peptidase S8 and S53 subtilisin kexin sedolisin 5.3287527204e-05 3.7444360177e-05 -6396080946.32 +UniRef50_Q5HQ05 Laccase domain protein SERP0752 0.0223210350798 0.00517606181332 -6.92163610017e+12 +UniRef50_C5AB28 0.000484998188473 0.000604744106207 48342896436.9 +UniRef50_UPI0004694578 30S ribosomal protein S15 0.000281416437767 5.16918904623e-05 -92742618784.2 +UniRef50_Q04EV5 Arginine deiminase 0.0313816321175 0.0104047249468 -8.46863484041e+12 +UniRef50_Q1J141 Xanthine phosphoribosyltransferase 8.4823076815e-06 0.0503713880633 2.03321230759e+13 +UniRef50_Q5ZS58 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.92100490441e-05 9.58639406022e-06 -3885187612.52 +UniRef50_I2FAM4 SpfH domain band 7 family protein 0.000107138880474 0.00418056465647 1.64449197233e+12 +UniRef50_F7ZBN3 0.0130693648902 0.00154561859991 -4.65227778966e+12 +UniRef50_A1B198 4 hydroxyproline betaine 2 epimerase 0.00193978508911 0.000329397567353 -6.50133204212e+11 +UniRef50_G8QM91 3.59350329834e-06 1.14599582012e-05 3175784376.54 +UniRef50_B9KJK7 0.000726568747469 0.000553513782872 -69864412831.0 +UniRef50_UPI00036F49F7 hypothetical protein 1.30121197297e-05 0.000243758610021 93155189708.3 +UniRef50_P75938 Flagellar basal body rod protein FlgF 0.00325817232253 0.000234378337464 -1.2207427379e+12 +UniRef50_A0A011Q6F6 Ribosomal RNA small subunit methyltransferase I 3.23141813121e-05 9.35460427811e-06 -9269062994.32 +UniRef50_L7HXW0 2.22389871098e-05 1.23032846542e-05 -4011165006.11 +UniRef50_K1V2Z1 0.00121274062033 0.00110043028406 -45341060955.0 +UniRef50_J3M0X2 9.10612646704e-06 0.000175408750172 67138409952.4 +UniRef50_T1YBW3 ABC transporter ATP binding and permease protein 0.0106305153567 0.00374470288152 -2.77988699465e+12 +UniRef50_Q216W2 Transcriptional regulator, GntR family 0.00119037347493 0.000803250551747 -1.56286274621e+11 +UniRef50_B9KU54 0.00221799677066 7.64921321693e-05 -8.64551701775e+11 +UniRef50_D8JAP3 ABC transporter 0.000259151999593 7.24189534428e-05 -75386422202.9 +UniRef50_C4K764 Phosphopantetheine adenylyltransferase 5.56486666863e-05 2.59224291451e-05 -12000846877.3 +UniRef50_Q9RWE3 0.000131528219109 0.0155940543345 6.24241153932e+12 +UniRef50_A4BRR9 9.24206887868e-05 2.91450418242e-05 -25545155158.3 +UniRef50_F0RR64 0.000846315859607 0.301362181458 1.21321942686e+14 +UniRef50_A5IUW4 Transport system permease protein 0.0195898797271 0.00793448507321 -4.70542584956e+12 +UniRef50_L2Z1P6 Evolved beta galactosidase subunit alpha 0.001210547833 0.00017361951133 -4.18620688e+11 +UniRef50_F6BWB1 Transcriptional regulator, MerR family 0.0145319279065 0.0131902381243 -5.41656629459e+11 +UniRef50_I4SHI8 Rhs core protein with extension 0.000368619629915 0.000191556781752 -71482444608.9 +UniRef50_UPI00018513F7 Acyl CoA dehydrogenase 5.90916572611e-06 1.17655589858e-05 2364297824.96 +UniRef50_K0SMT2 7.76238838834e-06 3.10956498172e-05 9419923970.16 +UniRef50_UPI00037E2E9B hypothetical protein 9.3905472127e-05 0.000195315636629 40940527852.1 +UniRef50_A8KZZ6 ABC transporter related 7.82624717782e-05 0.00511213272173 2.03223519244e+12 +UniRef50_UPI0003735C5A hypothetical protein 3.34342149463e-05 2.04919650784e-05 -5224945090.94 +UniRef50_A5FWE5 3.93091219731e-05 0.000101004519045 24907188885.6 +UniRef50_A6T7G7 UPF0227 protein KPN78578_10770 0.00118682373879 0.000327523148093 -3.46910193268e+11 +UniRef50_F8IMA6 Transposase 1.57407456725e-05 3.16118340694e-05 6407353145.98 +UniRef50_A3DJF6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.29341413128e-05 1.91631978345e-05 2514746556.93 +UniRef50_F6GAA5 1.24331211052e-05 8.95759440317e-06 -1403112779.12 +UniRef50_Q8DIA7 Phosphoribosylformylglycinamidine synthase 2 2.75870718254e-05 6.19807600038e-06 -8635000087.05 +UniRef50_R6QY26 FAD dependent oxidoreductase 0.000428742249967 0.000547339060729 47878987851.1 +UniRef50_UPI000475B264 glyoxal reductase 2.31886027958e-05 3.52995108814e-05 4889322211.71 +UniRef50_A8YZY5 Anthranilate synthase 0.019819210937 0.00823369651212 -4.67721434358e+12 +UniRef50_Q9ZIJ1 Gluconate permease 0.000715049044288 0.00476801060226 1.63623031638e+12 +UniRef50_K0LVM3 Fructose phosphotransferase system enzyme fruA homolog 0.0130498656042 0.00434863162488 -3.5127949336e+12 +UniRef50_UPI00047E7610 peroxiredoxin 1.11570069838e-05 0.000140028250214 52026902319.9 +UniRef50_UPI0001912667 hypothetical protein 0.000845963288604 0.000214395244822 -2.54971769486e+11 +UniRef50_A4J4I2 Glucose 1 phosphate adenylyltransferase 0.000567924791033 0.00211200048872 6.23362307097e+11 +UniRef50_P42425 Lon protease 2 6.80563681868e-05 0.00105715087767 3.99309591033e+11 +UniRef50_W7Z889 7.86599446498e-06 1.34590878925e-05 2258000451.66 +UniRef50_I2NPW1 1.1316828138e-05 0.000316415700282 1.23172158669e+11 +UniRef50_A0L4I8 Transcriptional regulator, BolA protein family 3.16754093137e-05 5.10961821583e-05 7840404317.05 +UniRef50_A6M0C5 Metallophosphoesterase 0.00104671728094 0.00189499835587 3.42461479529e+11 +UniRef50_UPI000399D7FF dihydrolipoyl dehydrogenase 3.87224790647e-06 5.84226790888e-06 795321249.837 +UniRef50_Q6A9R0 Ribosomal RNA small subunit methyltransferase H 0.000278292766648 0.00218833950979 7.71109309115e+11 +UniRef50_UPI0004414ABB LamB YcsF family protein 5.77368724286e-05 4.43604798223e-05 -5400213841.96 +UniRef50_Q9I3J5 5 hydroxyisourate hydrolase 0.00388162789272 0.00192137387409 -7.91378602343e+11 +UniRef50_Q7DKE3 Nitrile hydratase activator 5.3152777933e-06 6.45843554743e-06 461506813.465 +UniRef50_C5MZU9 Formate nitrite transporter 0.0238758918873 0.00647110925669 -7.02652432867e+12 +UniRef50_UPI000364C078 hypothetical protein 5.59382215456e-05 1.86382696268e-05 -15058448311.5 +UniRef50_Q88Z97 Methionine tRNA ligase 0.011407950296 0.00291596640528 -3.42831810504e+12 +UniRef50_X2HX12 Membrane protein 0.000220752040266 0.0036277104479 1.37543091724e+12 +UniRef50_E3HGU2 Oxidoreductase FAD binding domain protein 3 0.000214023427242 0.00018248200115 -12733660770.2 +UniRef50_UPI0001816FFE transposase 0.000134295121259 4.60934723138e-06 -52355738398.5 +UniRef50_K8C391 2.30136252884e-05 0.000212797189621 76617953827.5 +UniRef50_P28998 NADP specific glutamate dehydrogenase 0.000101533899186 0.0151768348663 6.08608399516e+12 +UniRef50_UPI00029B44FF UDP N acetylglucosamine 1 carboxyvinyltransferase 1.18488096219e-05 1.56444469029e-05 1532345348.05 +UniRef50_A0RUI8 Proline tRNA ligase 3.8419952658e-06 1.7110977547e-05 5356850975.64 +UniRef50_B2TJ76 Tetratricopeptide repeat domain protein 0.000268100697518 0.00272903020465 9.93507441029e+11 +UniRef50_A0A023S0D0 LysR family transcriptional regulator 0.000147072463189 0.00597869561808 2.35429782969e+12 +UniRef50_K0S2A3 4.76220560023e-05 5.03166655891e-05 1087846956.77 +UniRef50_UPI0002DDE7B4 nitrate nitrite transport protein NarU 3.3866149284e-05 0.000134151609726 40486471021.4 +UniRef50_G2AG81 Protein ydeP domain protein 0.000180327701681 0.00068694956856 2.04529464608e+11 +UniRef50_Q92ID5 NADH quinone oxidoreductase subunit A 0.0006222343482 0.00109848940743 1.92270011718e+11 +UniRef50_UPI00046263A7 PREDICTED 1.15637014494e-05 9.45190054243e-06 -852559940.855 +UniRef50_F3ZH54 Putative xanthine dehydrogenase YagT iron sulfur binding subunit 3.96804776801e-05 0.000323768949486 1.14690002226e+11 +UniRef50_P55611 Probable trehalose phosphate phosphatase 1.92109556561e-05 2.16597624687e-05 988613360.485 +UniRef50_UPI000378EE70 hypothetical protein 5.37898734179e-06 2.21950341619e-05 6788844457.37 +UniRef50_A4Y1A0 Membrane protein insertase YidC 0.000493008721335 0.000952102583469 1.85341825859e+11 +UniRef50_X2MVD0 0.0034321860727 0.00362525870448 77945790717.2 +UniRef50_B9KWB3 0.00105662842704 0.00158205377784 2.12120661812e+11 +UniRef50_F3ZFZ6 2.30789690417e-05 0.00183342994618 7.30860904976e+11 +UniRef50_A8IHG6 Predicted protein 8.62825117371e-05 2.02654592268e-05 -26651894218.7 +UniRef50_Q1QCK7 Glutamate synthase 8.79237551642e-05 0.00539877254308 2.14405482713e+12 +UniRef50_J0KVM1 0.00020367949039 0.00130959946019 4.46473462972e+11 +UniRef50_C6SPT4 1.30773292188e-05 1.20666945286e-05 -408005626.316 +UniRef50_UPI000309C6DF N acetyl gamma glutamyl phosphate reductase 4.80840008271e-06 7.78347927058e-05 29481650836.6 +UniRef50_UPI000375AEDF hypothetical protein 4.25450726983e-06 4.64529906934e-06 157767445.017 +UniRef50_B4JDR2 GH10507 7.87503365387e-07 1.3128287887e-06 212080319.859 +UniRef50_U6UKQ1 Hydroxylamine reductase 0.00249977955003 0.00195837527372 -2.18571550124e+11 +UniRef50_P26512 Aspartokinase 0.000305211855141 0.00292512211429 1.05768992153e+12 +UniRef50_W4TKQ6 6.02203169636e-06 0.000175926130882 68592369799.1 +UniRef50_UPI000463F4EC LamB YcsF family protein 0.000125163450537 5.06938369323e-05 -30064296857.1 +UniRef50_G2JZ43 Carnitine transport permease protein OpuCB 0.0240809615487 0.00622899294388 -7.20705879405e+12 +UniRef50_UPI00047A693B chemotaxis protein CheY 0.000147456717649 9.5615594769e-05 -20928897468.8 +UniRef50_J8VGX4 0.000258128433292 6.75225369695e-05 -76949939342.6 +UniRef50_UPI00045746A5 PREDICTED 6.06270802374e-06 5.53479271961e-06 -213125886.527 +UniRef50_UPI00046E1FAA PREDICTED 2.3672919339e-06 1.45269163907e-05 4908989608.58 +UniRef50_P32154 Fructose like PTS system EIIBC component 0.00297470779452 0.00126667182506 -6.89555080829e+11 +UniRef50_M9VG84 Class I glutamine amidotransferase 0.000770339635806 0.00383588308913 1.23759751055e+12 +UniRef50_UPI0003B3C78A acyl CoA synthetase 4.28009801137e-06 4.72697271789e-05 17355440837.0 +UniRef50_B7IPS6 Prolipoprotein diacylglyceryl transferase 7.39549303693e-06 0.000950354969344 3.80684311999e+11 +UniRef50_D3DYK7 ATPase 0.00281018126737 0.00141441206235 -5.63489156081e+11 +UniRef50_UPI000225AB9D 3 oxoacyl ACP synthase 3.78193190808e-05 2.18405556334e-05 -6450822885.19 +UniRef50_Q57GZ6 Maltoporin 0.00286651406003 0.00150177096013 -5.50963536711e+11 +UniRef50_R6ZP96 7.70019119217e-05 3.30663482176e-05 -17737326217.3 +UniRef50_Q59660 Succinate dehydrogenase hydrophobic membrane anchor subunit 0.00583710041677 0.000649348392465 -2.09435915309e+12 +UniRef50_B6IRS5 50S ribosomal protein L15 0.000258552047156 0.00384645017588 1.44847850303e+12 +UniRef50_C6D8U7 0.000268992391105 0.000980671864723 2.87313736789e+11 +UniRef50_S4XBL3 1.00287016387e-05 2.66895408891e-05 6726185256.88 +UniRef50_I0EUL3 N5 glutamine S adenosyl L methionine dependent methyltransferase 0.000298364448205 0.00742744916738 2.87809898484e+12 +UniRef50_UPI00032980B7 PREDICTED 6.87903659029e-05 8.81008018107e-05 7795859941.67 +UniRef50_D1DJZ6 TspB like protein 0.000353836626628 0.00687276751936 2.63177239767e+12 +UniRef50_UPI0003765EEE hypothetical protein 4.53391372037e-06 2.51753788557e-05 8333212774.38 +UniRef50_D1AIW2 PTS system Galactitol specific IIC component 0.000541991587796 0.00149671143839 3.85432119415e+11 +UniRef50_Q18KF1 ABC type transport system ATP binding protein 0.0028349868296 0.000567020387033 -9.15605883943e+11 +UniRef50_UPI0004293C91 UDP glucose 6 dehydrogenase 3.45078338057e-06 6.69270497986e-06 1308803532.49 +UniRef50_Q9CDF7 Putative sugar uptake protein YxfA 0.00180671658487 0.000206756152991 -6.45923660072e+11 +UniRef50_B2I785 NADH quinone oxidoreductase subunit B 3.93303267502e-05 9.15051335606e-05 21063609766.2 +UniRef50_Q3J1U1 RNA polymerase sigma 54 factor 0.000791355807249 0.000185539291214 -2.44575561728e+11 +UniRef50_P52073 Glycolate oxidase subunit GlcE 0.00421134513651 0.000585752142543 -1.46369638269e+12 +UniRef50_K0STI8 0.000172587294925 3.47052890423e-05 -55664657777.4 +UniRef50_D2B0E6 0.000162213312073 0.000314638937302 61536095377.7 +UniRef50_W9FWD7 3.90772245237e-05 1.99227612302e-06 -14971648752.9 +UniRef50_B5QX27 Quinolinate synthase A 0.00123956515034 0.000176133223777 -4.29320518529e+11 +UniRef50_F4FX21 Transcriptional regulator, MerR family 0.00112021376954 0.00552619422699 1.77874837813e+12 +UniRef50_C6AZU8 ABC transporter related 6.44907725824e-05 0.0516041677848 2.08072000728e+13 +UniRef50_A5ISU0 von Willebrand factor, type A 0.0208494237473 0.00549579432466 -6.19844860812e+12 +UniRef50_B4W755 0.000171456900976 7.62156523879e-05 -38450060796.6 +UniRef50_UPI0003B6DDE5 quaternary ammonium transporter 9.65518338205e-05 2.66445340561e-05 -28222434773.9 +UniRef50_P03835 Transposase InsG for insertion sequence element IS4 0.00318025455041 0.000649310311281 -1.02177324752e+12 +UniRef50_L8UD09 0.00122741933534 0.00656042064705 2.15299807282e+12 +UniRef50_A6M0D9 Transcriptional regulator, XRE family 0.00304824396969 0.000504814880674 -1.02681353462e+12 +UniRef50_C7MAG4 Phosphate sulfate permease 0.000154090502289 0.00193855785986 7.20411370128e+11 +UniRef50_B9KUA0 CBS domain containing protein 0.0099325726005 0.000731306832862 -3.71466390262e+12 +UniRef50_UPI00045E7085 hypothetical protein 1.40956570296e-05 6.65012865189e-05 21156795714.2 +UniRef50_Q4UKX5 DNA gyrase subunit B 8.44032146265e-06 1.0894103652e-05 990621981.134 +UniRef50_A3M4L9 0.000428703959695 0.00496136045192 1.82988904786e+12 +UniRef50_Q8EUR3 Spermidine putrescine import ATP binding protein PotA 4.88501174746e-06 7.8638896588e-06 1202609567.75 +UniRef50_A8GIP4 Lysine tRNA ligase 0.00208551766306 0.0025269026749 1.78192545683e+11 +UniRef50_UPI0004654768 hypothetical protein 4.42983997484e-05 4.03003041678e-05 -1614080248.04 +UniRef50_G1C7I1 Nucleoid occlusion protein 7.03770042794e-06 2.38279475843e-05 6778428816.54 +UniRef50_Q28NF0 Probable chemoreceptor glutamine deamidase CheD 0.000223919160864 3.79650635368e-05 -75071951004.3 +UniRef50_M1YTR4 0.000261008601306 0.00285549528564 1.0474261124e+12 +UniRef50_D7BML1 Putative molybdopterin guanine dinucleotide biosynthesis protein A 6.61523275945e-06 2.96960182763e-05 9317996346.26 +UniRef50_UPI0003B32011 cytidylate kinase 6.79425891723e-06 7.53321318664e-05 27669580363.9 +UniRef50_F4A9G3 Glycerol dehydratase activator 0.000123227199839 0.000906916907809 3.16385152062e+11 +UniRef50_B4U247 Shikimate kinase 0.00200521934516 0.0036202695891 6.52015602374e+11 +UniRef50_P06200 Hemolytic phospholipase C 0.00152950057983 0.000163090085884 -5.5163668415e+11 +UniRef50_X5PED3 0.000295715982472 0.000134223663358 -65196430959.9 +UniRef50_Q6N9W0 Methionine import ATP binding protein MetN 1 0.00181426294761 0.000359535445064 -5.87291344293e+11 +UniRef50_UPI000464B4E9 hypothetical protein 7.58806900332e-05 9.00385464282e-06 -26998999118.2 +UniRef50_B3EQT3 Recombination protein RecR 0.0102357935342 0.000440771201791 -3.95437071403e+12 +UniRef50_Q6ARX8 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000155281880435 0.00335558157129 1.29200025729e+12 +UniRef50_X1YMT4 0.000168558368661 4.75422653861e-05 -48855685926.7 +UniRef50_B9KK74 Cellulose synthase 0.000568613378045 0.000462773282699 -42728945295.2 +UniRef50_Q1GHF8 TRAP transporter solute receptor TAXI family 5.85931458442e-05 8.68942857247e-06 -20146743050.1 +UniRef50_UPI000472F33D hypothetical protein 0.0001281434778 1.15206629538e-05 -47082061476.2 +UniRef50_I6TQ16 Pyridoxamine kinase 0.0036608271265 0.00142333116197 -9.03304578044e+11 +UniRef50_P57024 Outer membrane lipoprotein LolB 0.000195588595265 0.00282318876454 1.06079443261e+12 +UniRef50_Q17X82 0.000180327701681 0.0037807739618 1.45354433765e+12 +UniRef50_B9KKX8 Cyclic nucleotide binding protein 0.00315808915412 0.000543476712473 -1.0555511276e+12 +UniRef50_UPI000255F810 TetR family transcriptional regulator 1.06956758606e-05 1.10213740362e-05 131488350.256 +UniRef50_Q1QE80 Spermidine putrescine import ATP binding protein PotA 0.000116629398711 7.33743777997e-05 -17462582740.7 +UniRef50_UPI00029CBAAC methylmalonate semialdehyde dehydrogenase , partial 6.10764144519e-05 8.12146028803e-06 -21378564826.3 +UniRef50_UPI00036486F4 hypothetical protein 2.36189890633e-05 4.84266297218e-05 10015148957.8 +UniRef50_S9UQG0 1.82284194511e-05 6.08147325114e-05 17192617175.3 +UniRef50_M0SWW4 8.29850184897e-06 9.43414374549e-06 458472569.518 +UniRef50_UPI00045D969B PREDICTED 1.78804159785e-05 2.9718083555e-05 4779011665.15 +UniRef50_Q03736 Cytochrome c oxidase subunit 2 0.00947661857264 0.00418342453937 -2.13692738603e+12 +UniRef50_UPI00046AFEA5 membrane protein 0.000105305110155 6.52494059597e-05 -16170979322.4 +UniRef50_UPI0004706261 hypothetical protein 1.61726120627e-06 9.12588080482e-06 3031321873.06 +UniRef50_Q5LRL4 Outer membrane transporter, OMPP1 FadL TodX family 1.33689776985e-05 8.15837109614e-06 -2103585826.71 +UniRef50_UPI0002F47A97 hypothetical protein 1.54775223974e-05 6.58541654844e-05 20337669005.1 +UniRef50_J9P1L3 3.93462079217e-06 0.000168120808816 66283978896.4 +UniRef50_A6LXP7 Proton translocating NADH quinone oxidoreductase, chain L 0.000322892117453 0.00107386201179 3.03175761781e+11 +UniRef50_A5EWC1 Conserved hypothetical lipoprotein 6.64965350226e-06 1.05076426078e-05 1557517544.76 +UniRef50_A0A024HWT5 5.60648193047e-06 3.78900625792e-05 13033277672.0 +UniRef50_P42887 Urease subunit gamma 0.000110528676429 0.000400364551786 1.17010299568e+11 +UniRef50_A3PPK4 Amidase 0.00296405115262 0.00126790394002 -6.84755443794e+11 +UniRef50_X9TRB8 0.00197124959361 0.000966739235253 -4.05533158398e+11 +UniRef50_UPI00047046AB Fis family transcriptional regulator 4.40511671648e-06 1.10659360512e-05 2689054502.87 +UniRef50_UPI00037B45E9 GTPase Era 1.90493176995e-05 0.000138637928006 48279389498.2 +UniRef50_UPI000262D14F electron transport complex RsxE subunit 0.000714473404273 0.000204477727402 -2.05891513104e+11 +UniRef50_N9HZ93 0.000202949456367 0.0143846749627 5.72533661624e+12 +UniRef50_J9H507 Membrane protein 0.00136743942971 0.000338902452903 -4.15232999106e+11 +UniRef50_UPI0004646E3C ABC transporter ATP binding protein, partial 7.30321781378e-06 3.1784767616e-05 9883502077.55 +UniRef50_UPI00034566D0 hypothetical protein 5.56743285462e-06 3.1318701243e-06 -983266561.946 +UniRef50_R5FYT2 Riboflavin synthase alpha subunit 0.000348986334422 0.00341722989211 1.23868757582e+12 +UniRef50_Q0FTZ1 ISSpo9, transposase 0.000142616061335 2.79400464184e-05 -46296114454.9 +UniRef50_UPI00045E74EB hypothetical protein 2.79890119832e-05 9.60503450558e-05 27477195367.9 +UniRef50_A0A058T3B4 Transcriptional regulator 0.000827556870044 0.000676297798153 -61065143479.9 +UniRef50_Q9RXT9 Thiosulfate sulfurtransferase 0.000226039514279 0.0521767910053 2.09731558843e+13 +UniRef50_L7WYV1 Lipase esterase 0.019694907946 0.00528986166887 -5.81549395186e+12 +UniRef50_W0HAM9 4.55428215126e-05 3.99638582148e-05 -2252295944.9 +UniRef50_B9E397 0.000703276372884 0.000572087756635 -52962454245.1 +UniRef50_N2IAD7 Response regulator 2.61156910459e-05 3.09704722598e-05 1959934750.92 +UniRef50_UPI000467FD4C isopentenyl diphosphate delta isomerase 0.000364980715755 3.75132160252e-05 -1.32202648119e+11 +UniRef50_UPI00046ABA5E hypothetical protein 1.2674527e-05 0.000782197920545 3.10666037088e+11 +UniRef50_A0A033UF50 2.51624247006e-05 2.65546141239e-05 562043954.272 +UniRef50_E0MPD3 UPF0301 protein R2A130_1378 9.69915892978e-06 1.46334637461e-05 1992039405.08 +UniRef50_UPI00036D5BBB hypothetical protein 0.000117619239949 8.66547325566e-05 -12500751611.5 +UniRef50_F3WHU8 Peptidase M16 inactive domain protein 0.00193364966398 0.000676297798153 -5.07608377678e+11 +UniRef50_C0DSE0 BolA like protein 7.13933080481e-05 0.00051741578668 1.80064747935e+11 +UniRef50_O23346 Imidazoleglycerol phosphate dehydratase 2, chloroplastic 9.45523153798e-06 1.3736523189e-05 1728409976.87 +UniRef50_UPI00035E3A63 hypothetical protein, partial 5.75684487727e-05 5.66306545362e-05 -378599041.304 +UniRef50_B6JMQ6 tRNA methyltransferase 0.000173158710486 0.00191040875 7.01349159405e+11 +UniRef50_UPI00006CF872 ribosomal protein L33 containing protein 0.00029780203437 7.84699501181e-05 -88547053919.9 +UniRef50_UPI00045E7D30 hypothetical protein 2.98017684117e-05 4.24904437295e-05 5122573933.35 +UniRef50_F3ZJM5 Putative alpha ribazole phosphatase 0.000224228029182 0.000117500015334 -43087408890.4 +UniRef50_Q8FFY2 0.00110848701004 0.000267658645188 -3.39452729015e+11 +UniRef50_Q7UM14 Tyrosine tRNA ligase 1.46242244585e-05 2.32790028281e-05 3494040233.88 +UniRef50_F9YXK4 Membrane spanning protein 0.000599184109289 0.00632048969372 2.30976127275e+12 +UniRef50_A7IAF5 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.34326100281e-05 1.59322224952e-05 -11102243914.7 +UniRef50_M1QZS4 7.99124617331e-06 1.33316332484e-05 2155979796.13 +UniRef50_UPI00016C5421 molybdenum cofactor biosynthesis protein 3.04791243288e-06 9.20591243519e-06 2486060168.09 +UniRef50_Q9JXP4 Probable aromatic acid decarboxylase 0.00161537609138 0.00307149463296 5.8785292382e+11 +UniRef50_R5EVW4 9.55119188127e-06 0.00236466685947 9.50789095525e+11 +UniRef50_UPI0002F70260 hypothetical protein 2.24909558592e-06 0.000114987187863 45513751304.2 +UniRef50_Q2RZJ2 Proline tRNA ligase 4.36487920525e-06 0.00290206790404 1.16983826994e+12 +UniRef50_C6ECF3 3 keto L gulonate 6 phosphate decarboxylase UlaD 0.00395606356166 0.00229280855424 -6.7147645693e+11 +UniRef50_UPI000349CFD5 hypothetical protein 6.03736167793e-06 9.82547471564e-06 1529307718.7 +UniRef50_R1CIV3 0.000153033759375 8.30318758772e-05 -28260619387.8 +UniRef50_P17888 Primosomal protein N 0.00234873820062 0.000631457387298 -6.93287337743e+11 +UniRef50_Q9AGA7 PTS system alpha glucoside specific EIICB component 0.00261712959025 0.00165348066374 -3.89036896934e+11 +UniRef50_P15032 Exodeoxyribonuclease 8 0.00120423127558 0.000160820303146 -4.21237813662e+11 +UniRef50_A8TPL9 0.00010510202443 3.84816287297e-05 -26895471268.4 +UniRef50_UPI00046AC3A5 hypothetical protein 0.000142968099677 1.44169743756e-05 -51897666783.7 +UniRef50_P0AG04 3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein 0.0033522341444 8.69470419278e-05 -1.31823647285e+12 +UniRef50_G2L7T9 5.4975088094e-05 9.4307761357e-05 15879082862.5 +UniRef50_UPI000479AE2C hypothetical protein 0.00012428523054 2.09906096445e-05 -41701306023.3 +UniRef50_A3PKK4 Acyl homoserine lactone synthase 0.0160376995635 0.00615627170489 -3.98925368528e+12 +UniRef50_A3PS02 WGR domain protein 0.00191472046163 0.000223935335125 -6.82590703839e+11 +UniRef50_UPI0002B9C508 hypothetical protein 3.76422119524e-05 0.000158700198968 48872594906.9 +UniRef50_Q9RUQ6 Carboxymethylenebutenolidase related protein 0.000129276023577 0.00411418648702 1.60875725444e+12 +UniRef50_UPI0001584880 hypothetical protein BC1G_07259 8.35859609336e-06 1.90444822732e-05 4314023381.35 +UniRef50_H2G856 Putative terminase large subunit 1.58846476951e-05 5.92579022168e-05 17510315100.1 +UniRef50_Q87UY0 Glucans biosynthesis protein G 9.53652441026e-06 1.54742804265e-05 2397144968.22 +UniRef50_UPI0003B5126A addiction module toxin YoeB 3.93094160611e-06 4.35044208839e-05 15976299205.6 +UniRef50_D9Y290 2.89381018236e-05 9.45662331215e-06 -7864911939.68 +UniRef50_UPI0003F9F930 hypothetical protein, partial 5.18589344009e-06 0.000470595857386 1.87891713667e+11 +UniRef50_UPI00046644CC peptide ABC transporter permease 3.61125654178e-05 7.12372529436e-05 14180267382.6 +UniRef50_Q65I39 3 phosphoshikimate 1 carboxyvinyltransferase 4.36987252951e-06 8.58249345441e-06 1700686762.05 +UniRef50_P0AEB6 Low conductance mechanosensitive channel YnaI 0.0029589201153 0.000178799216058 -1.12236892294e+12 +UniRef50_X0V3Z0 Marine sediment metagenome DNA, contig 1.6247663189e-05 6.64267247269e-05 20257902909.2 +UniRef50_D3SDU3 0.00119484603416 1.99108500208e-05 -4.74335751913e+11 +UniRef50_C3SN52 0.00156585348358 0.000513993913508 -4.24648616206e+11 +UniRef50_UPI0003745614 hypothetical protein 8.90722396307e-05 4.01457460594e-05 -19752225850.3 +UniRef50_H0P3C7 1.82203646966e-05 1.67591812148e-05 -589897702.34 +UniRef50_A0A024HAE7 Glucose 6 phosphate 1 dehydrogenase 0.000910472744036 0.00126714598645 1.43993364835e+11 +UniRef50_UPI0001911F20 hypothetical protein, partial 0.000299893934122 0.000814136283224 2.07605946796e+11 +UniRef50_A0A009L0Q9 Diguanylate cyclase domain protein 9.65437311629e-05 0.00122323636676 4.54859643065e+11 +UniRef50_A0A008QSP4 0.00057189680724 0.000247300607664 -1.31043469012e+11 +UniRef50_Q3J2Z8 RNA polymerase sigma factor 0.00345616767785 0.00151915189378 -7.81997041886e+11 +UniRef50_UPI0003753584 hypothetical protein 0.0021955652932 0.000530410580916 -6.72243391094e+11 +UniRef50_Q02Y94 Na+ driven multidrug efflux pump 0.000502636168881 0.000587458034935 34243628207.3 +UniRef50_UPI0003B604B4 hypothetical protein 4.24988612334e-05 7.31425835346e-05 12371246733.8 +UniRef50_D0NVH9 Adenylosuccinate synthetase 2.87895369053e-06 8.45281830035e-06 2250237541.99 +UniRef50_W5XEU5 Putative N acyl D glucosamine 2 epimerase 4.70181795977e-05 3.12072522623e-06 -17721941012.1 +UniRef50_V4N2T0 0.000296996414055 0.000171618448761 -50616623149.8 +UniRef50_A4THV9 0.00187935115765 0.000500637535903 -5.56603607819e+11 +UniRef50_UPI0003802F25 hypothetical protein 8.19038684565e-06 2.93827398834e-05 8555612980.78 +UniRef50_Q8FUU5 Zinc import ATP binding protein ZnuC 1.60382392661e-05 1.1082702923e-05 -2000610832.98 +UniRef50_W5XB82 Putative family S53 non peptidase like protein 1.11684397132e-05 7.25431825905e-05 24777736852.4 +UniRef50_H3X653 Osmosensitive K+ channel His kinase sensor domain protein 0.00889788733323 0.00240459979292 -2.62141986162e+12 +UniRef50_Q2W7P1 6.09294336383e-05 2.17145619031e-05 -15831524940.1 +UniRef50_R5BHR4 Phage terminase 7.60376075425e-06 0.000158288402108 60833238823.1 +UniRef50_A5N0V8 LivM 0.000783602613819 0.00129252319866 2.05457485258e+11 +UniRef50_A5N2L5 Orotidine 5 phosphate decarboxylase 0.000449451779777 0.00147293199773 4.13191523501e+11 +UniRef50_A6LXZ9 MATE efflux family protein 8.28425725361e-05 0.00136836684351 5.18981923347e+11 +UniRef50_N9WGA2 7.79714799994e-05 0.000113109514366 14185655666.0 +UniRef50_UPI00016C57A2 elongation factor G, partial 2.97547815642e-06 6.7423041706e-06 1520713886.08 +UniRef50_C1D5R6 Membrane protein 2.03217668471e-05 0.00136717420774 5.43740858125e+11 +UniRef50_UPI00036AFE80 cell wall hydrolase 2.35813996351e-05 1.7178873415e-05 -2584778402.89 +UniRef50_A3M865 1.89659682949e-05 0.000921776882898 3.64475844961e+11 +UniRef50_Q7WLL0 Cysteine tRNA ligase 2.84442733468e-06 9.84117151909e-06 2824671486.95 +UniRef50_P18249 RNA polymerase principal sigma factor HrdD 0.000376532677997 0.00482601357197 1.79631003817e+12 +UniRef50_UPI0003B42D49 5 hydroxymethyluracil DNA glycosylase 7.71423207418e-06 0.000122700015603 46421171844.9 +UniRef50_D6UF03 0.00467327631456 0.000935368114805 -1.50903940953e+12 +UniRef50_R1CXM7 7.57005622317e-06 2.49733016433e-05 7025903737.93 +UniRef50_UPI000399BF1B S adenosylmethionine synthetase 9.02957723469e-06 4.59897817931e-05 14921288132.9 +UniRef50_X5ZAH5 0.00339314809803 0.00224166924829 -4.64866141875e+11 +UniRef50_UPI0003698C0E hypothetical protein, partial 4.63196175671e-05 1.71251926698e-05 -11786147586.9 +UniRef50_W6EUE7 8.40559837509e-05 2.49047435453e-05 -23880081538.3 +UniRef50_V5SUH2 LysR family transcriptional regulator 0.000381683495918 0.000780790571617 1.61124424054e+11 +UniRef50_M7CYD5 Thioesterase 0.00437378318337 0.00245555310332 -7.74413022646e+11 +UniRef50_Q64GH1 Putative enoyl reductase 4.73488335197e-05 0.000248862114694 81353384456.0 +UniRef50_D6GTM4 Rubredoxin 0.000273319257479 0.00221126545738 7.82372662174e+11 +UniRef50_E1VWJ8 Protein NrdI 9.53571641282e-06 0.00240274162299 9.66166592425e+11 +UniRef50_A8F516 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.16858307672e-05 9.96840368342e-06 -693346388.922 +UniRef50_UPI000225A8AA NUDIX hydrolase 0.00010080025987 1.89306916022e-05 -33051749362.3 +UniRef50_UPI000225AEF7 D amino acid aminotransferase 3.42553362664e-05 4.13021330855e-05 2844878349.79 +UniRef50_UPI00047468F0 sulfurase 5.95730804309e-05 3.4291244526e-05 -10206587397.8 +UniRef50_UPI00041C6338 hydrolase 1.52788192275e-05 5.95997093552e-06 -3762133410.6 +UniRef50_W4HIK8 3.16772381427e-05 6.13760513858e-06 -10310663250.3 +UniRef50_B6XGE2 Putative dGTPase 1.51631070393e-05 4.54106599638e-05 12211308294.8 +UniRef50_A6KZD0 1.05526087992e-05 0.00396289570355 1.59560940805e+12 +UniRef50_S5CIR4 EAL domain protein 0.000188258272251 0.00258798986746 9.68801093004e+11 +UniRef50_I6X6K9 2,5 diketo D gluconic acid reductase A 0.00529763296825 0.0024963329112 -1.13091920885e+12 +UniRef50_Q5HL78 Esterase, putative 0.0203190583706 0.00586911518488 -5.83361938481e+12 +UniRef50_K3YW20 0.000713676375634 0.000243071201698 -1.89989083693e+11 +UniRef50_D7I005 0.000776718220114 0.000822170111935 18349486485.6 +UniRef50_UPI000380E85A hypothetical protein 4.35166584423e-06 5.45701110132e-06 446241444.399 +UniRef50_UPI0003AFAFF5 PREDICTED 1.69708702794e-05 6.88725507147e-06 -4070879199.3 +UniRef50_UPI0003723B10 hypothetical protein 4.1106629957e-05 1.65486609155e-05 -9914353462.22 +UniRef50_C5N5L5 0.00155131228296 0.00224291168503 2.79207165495e+11 +UniRef50_UPI000474FC78 hypothetical protein, partial 9.32607433999e-05 0.00216636953756 8.36939460108e+11 +UniRef50_G7M098 0.000720003613245 0.00133219027256 2.47147266741e+11 +UniRef50_F0RKF5 Riboflavin synthase, alpha subunit 0.000179186387112 0.0348376547182 1.39920489725e+13 +UniRef50_Q6A5X8 Arginine tRNA ligase 0.000216671069631 0.00580807181751 2.25731709612e+12 +UniRef50_H0YP80 4.87434185307e-05 3.34184396598e-05 -6186882028.82 +UniRef50_UPI00022CA5D3 PREDICTED 1.3794472212e-05 8.18378333487e-06 -2265103950.59 +UniRef50_Q8REW5 Precorrin 8X methylmutase 0.000370084302795 0.000668399608368 1.204335496e+11 +UniRef50_Q56002 Serine acetyltransferase 1.14849751684e-05 3.37623211618e-05 8993637951.31 +UniRef50_UPI00036189B5 DNA glycosylase 0.000116856442842 2.15878707709e-05 -38461091621.9 +UniRef50_A5ULV9 Phosphatidylserine synthase, PssA 0.00551972457237 0.000551516807139 -2.00572644159e+12 +UniRef50_UPI0001FFE88F glycosyl transferase group 1 8.1318039808e-05 0.000285973428186 82621891692.2 +UniRef50_UPI00047588F4 hypothetical protein 4.04482602979e-06 3.91968101177e-06 -50522579.4767 +UniRef50_O27179 Pyruvate carboxylase subunit B 0.0013127135154 0.00055822710661 -3.04595421818e+11 +UniRef50_D1BH34 0.000935915674838 0.00835753083995 2.99619711561e+12 +UniRef50_UPI000441E63E PREDICTED 2.40188733004e-05 3.88841685102e-05 6001302093.88 +UniRef50_UPI00037429B4 hypothetical protein, partial 4.64760218352e-06 3.27809735148e-05 11357787241.7 +UniRef50_C4Z1D7 Proline tRNA ligase 8.58474907041e-06 2.72220581631e-05 7524110386.22 +UniRef50_W8YSM1 6.11776620942e-05 0.000151075562601 36292885605.9 +UniRef50_UPI0004785C2A hypothetical protein 8.04123270375e-05 0.000435465616824 1.4333937008e+11 +UniRef50_Q168G3 MFS protein, putative 0.00962455925541 0.00336029065433 -2.52896210548e+12 +UniRef50_UPI0003652F52 hypothetical protein 1.88415666548e-05 7.95694200055e-05 24516579612.2 +UniRef50_UPI000368594E hypothetical protein 1.73921016323e-05 1.45589174227e-05 -1143791232.5 +UniRef50_V9U5K5 9.16183520793e-05 0.000288539313933 79499408792.4 +UniRef50_F8KHX1 ArsR family transcriptional regulator 0.00277035123844 0.0016681105664 -4.44988085317e+11 +UniRef50_A6LZC7 0.000273540571632 0.000418888943548 58678921367.6 +UniRef50_R7NTH8 1.84957009686e-05 0.000315625747611 1.19955046025e+11 +UniRef50_Q8SDT5 Phi ETA orf 55 like protein 0.000712670913339 0.000214359948499 -2.01174251469e+11 +UniRef50_Q493G3 Protoheme IX farnesyltransferase 6.40240395441e-06 1.3938849371e-05 3042555497.26 +UniRef50_G7M7B0 Cell wall binding repeat containing protein 0.000399301590658 0.00194076597371 6.22308087332e+11 +UniRef50_I1D602 8.34229022179e-05 0.000165705851899 33218636511.6 +UniRef50_W6CDL1 Bat2 domain protein 0.000105880565126 8.12893941335e-05 -9927757497.27 +UniRef50_F8KRB8 Cell division protein FtsI [Peptidoglycan synthetase] 0.000294159524814 0.00246915371529 8.78071844877e+11 +UniRef50_A0A011RLE4 Rhodanese like domain protein 2.03355377852e-05 5.88352129361e-05 15542791302.6 +UniRef50_A5UM88 Adhesin like protein 0.00339643365866 0.000510472542113 -1.16509791748e+12 +UniRef50_UPI000200387F AGCS family alanine or glycine 5.45962532495e-06 0.000128396000124 49630923105.3 +UniRef50_U5MPP2 5 nucleotidase 0.000182654510734 0.000281701149624 39986343558.8 +UniRef50_R9YN62 TM2 domain protein 0.0104552731741 0.00101833346619 -3.80980836436e+12 +UniRef50_UPI00037681F6 50S ribosomal protein L20 5.71057538871e-05 7.79527343542e-05 8416181835.79 +UniRef50_P0AA55 Protein QmcA 0.00327691588784 0.000404339981157 -1.159694144e+12 +UniRef50_F5NZP6 YhaO 1.23843488018e-05 3.36653233563e-05 8591390574.58 +UniRef50_P37754 6 phosphogluconate dehydrogenase, decarboxylating 0.0134082062896 0.00472666050494 -3.50484656781e+12 +UniRef50_UPI00035F8157 hypothetical protein 1.48594170887e-06 3.14700786665e-05 12104964036.5 +UniRef50_B8H8I4 Glucose 1 phosphate adenylyltransferase 2.99611913936e-06 1.12887262103e-05 3347827236.27 +UniRef50_M9R3S4 Protease do 0.00645258169356 0.000488741654276 -2.4076754084e+12 +UniRef50_A5LX88 HAD superfamily protein phosphatase 0.000154243345532 0.000642341194012 1.97051091066e+11 +UniRef50_B7MG32 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 0.00365534242866 0.00172119206463 -7.80840236653e+11 +UniRef50_P00935 Cystathionine gamma synthase 0.0043035964479 0.0014199085249 -1.16418020135e+12 +UniRef50_H3RCL8 Oxidoreductase domain protein 0.000189704956309 0.000158438894981 -12622492635.8 +UniRef50_V4LBB0 5.23507673507e-05 6.06977076974e-05 3369762246.44 +UniRef50_Q1GB50 Ribonuclease Y 0.0216023346284 0.0126846968966 -3.60015978405e+12 +UniRef50_I3XFP9 Inosose dehydratase IolE 0.00425460441846 0.00107856624933 -1.28220558325e+12 +UniRef50_P31833 Cytochrome c oxidase subunit 1 2.75598526319e-05 3.06154732534e-05 1233591541.58 +UniRef50_Q49VS2 Putative lipid kinase SSP1993 0.0253841956467 0.00699861670102 -7.4224838368e+12 +UniRef50_A5D5L4 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.67077586759e-05 8.12046541921e-06 -3466795665.66 +UniRef50_Q81CT8 Putative ABC transporter ATP binding protein BC_2655 3.80044243183e-05 0.000649554120413 2.46890116872e+11 +UniRef50_B9TG20 4.47852907989e-05 1.45809378546e-05 -12193867932.7 +UniRef50_P39389 0.00265953340392 0.00123755480017 -5.74070211974e+11 +UniRef50_A4ETQ1 Flagellar protein, putative 7.5121862055e-06 1.91093208336e-05 4681905562.21 +UniRef50_P39385 0.00298891776367 0.000138646340475 -1.15068955031e+12 +UniRef50_P39384 0.00326215942734 0.00046482802743 -1.12931701326e+12 +UniRef50_V5VAL8 Flavodoxin reductase 1 0.000170294431062 0.0109338742637 4.3453892624e+12 +UniRef50_A9APP3 Rieske domain protein 0.000221439764118 0.00532710411876 2.06121935352e+12 +UniRef50_P39383 0.00608255397389 0.000484788024949 -2.2598868059e+12 +UniRef50_P39382 0.00111684839469 0.00134351688699 91508851876.7 +UniRef50_Q09545 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.12620533329e-05 4.51250730403e-05 9633793888.06 +UniRef50_B7H275 Aminoglycoside 2 N acetyltransferase Ib) 0.000430592382719 0.00417556280892 1.51189051701e+12 +UniRef50_B7M6Q9 Putative ion transport protein YfeO 0.00338789742103 0.000571536380408 -1.13699951273e+12 +UniRef50_UPI00046FF34F peptide synthetase 3.32539611702e-07 1.23676160791e-06 365045515.921 +UniRef50_A3MAB3 0.000170808930622 0.00301136680007 1.14676806946e+12 +UniRef50_J5IRF9 0.000781005494173 0.0223826869487 8.72086388562e+12 +UniRef50_D5AMB2 ArsC family protein 0.000332332458697 9.09403099916e-05 -97452972647.0 +UniRef50_N6U9Z2 0.000855505127333 0.000330485805926 -2.11956742764e+11 +UniRef50_B9KMM9 0.00242279478061 0.00165598152446 -3.09571921365e+11 +UniRef50_UPI0003B360B2 riboflavin synthase subunit alpha 9.85739183432e-06 0.000150523578948 56788665906.1 +UniRef50_UPI0003768F48 hypothetical protein 2.37876145686e-06 7.87513824848e-06 2218954758.9 +UniRef50_Q9JYA6 PqiA family protein 9.16970013417e-05 0.00261284265213 1.01781743716e+12 +UniRef50_O61573 GTP cyclohydrolase 1 3.74020596091e-05 6.34806557419e-05 10528249279.2 +UniRef50_A4XX36 Integral membrane sensor signal transduction histidine kinase 0.000444395778926 0.000418284317323 -10541517472.8 +UniRef50_V7N9Q7 0.0005052261241 0.00016316588308 -1.38093916851e+11 +UniRef50_UPI00046AE0C6 hypothetical protein 4.25755102014e-05 3.53486801914e-05 -2917559958.21 +UniRef50_UPI0003C11AE9 PREDICTED 1.86474335871e-05 4.24821218761e-06 -5813142377.29 +UniRef50_P77858 Hydrogenase 4 component C 0.00647744161017 0.00232639236921 -1.67582951768e+12 +UniRef50_A9RYC3 Predicted protein 3.74437692478e-06 7.59165668272e-05 29136798716.0 +UniRef50_UPI00046D2B95 hypothetical protein 3.15250729026e-05 2.31453151529e-05 -3383011034.75 +UniRef50_E1S7W8 Molybdenum transport ATP binding protein 0.000142268588759 0.0027474470492 1.05174251361e+12 +UniRef50_A6LVV3 GCN5 related N acetyltransferase 0.00025679318969 0.000738291762994 1.94386882695e+11 +UniRef50_Q48253 Vacuolating cytotoxin autotransporter 4.03009952487e-05 0.00681077100843 2.73332182733e+12 +UniRef50_G8PQM8 FAD dependent oxidoreductase 0.000993939757428 0.000301065891062 -2.7972168237e+11 +UniRef50_K6YYX6 Phosphate starvation inducible E 9.51995207813e-05 5.78972584523e-05 -15059381052.5 +UniRef50_Q9RU10 Glutamate racemase 0.00011322739247 0.00806458283065 3.2100597645e+12 +UniRef50_Q8DN97 Hexulose 6 phosphate synthase 0.00473059196531 0.00353583760831 -4.82336995206e+11 +UniRef50_UPI0003055198 hypothetical protein 8.25261449362e-06 5.66777719857e-06 -1043530535.53 +UniRef50_UPI0004771957 pyruvate kinase 3.8127668994e-06 1.53737303509e-05 4667302814.35 +UniRef50_F8HG32 3 oxoacyl [acyl carrier protein] synthase 2 0.000316390699934 0.0032739558 1.1940053243e+12 +UniRef50_UPI0003C7DEB4 ferredoxin 7.07217185956e-06 1.31795699223e-05 2465631544.13 +UniRef50_W5XG56 Transcriptional regulator 0.000514968780039 0.000248600377264 -1.07536192908e+11 +UniRef50_P45480 Glutathione synthetase 3.94289886739e-06 7.03827566972e-06 1249641599.65 +UniRef50_Q03UE1 DNA replication and repair protein RecF 0.00901916302723 0.00689999329706 -8.55534825207e+11 +UniRef50_J2ZRL7 Rhamnan synthesis protein F domain protein 6.86606251652e-06 8.62137502309e-06 708641199.009 +UniRef50_UPI000346214E hypothetical protein 6.86319888592e-05 6.52780604392e-06 -25072220706.6 +UniRef50_G2IM51 Major facilitator superfamily protein 0.00159990540605 0.000653786120244 -3.81959965869e+11 +UniRef50_UPI00047E3C0E hypothetical protein 2.54626356383e-05 0.000756866929282 2.95276888684e+11 +UniRef50_G0DY22 0.000167275918245 0.00318009535003 1.21631217607e+12 +UniRef50_A6V690 7.11790048168e-05 0.000250412567372 72358788646.6 +UniRef50_A5UL99 Predicted permease, major facilitator superfamily 0.00172161403634 0.000891062860416 -3.3530370173e+11 +UniRef50_Q8AA27 Methionine aminopeptidase 0.00108587411061 0.00574543715262 1.88112277933e+12 +UniRef50_Q8DWJ3 0.0074366852284 0.00117834905089 -2.52656711328e+12 +UniRef50_Q9F664 UTP glucose 1 phosphate uridylyltransferase 0.00434404118052 0.000330856081034 -1.62017207198e+12 +UniRef50_Q1AX36 Leucyl phenylalanyl tRNA protein transferase 1.10771151093e-05 8.58988482637e-05 30206451840.3 +UniRef50_UPI000371C01D hypothetical protein 2.4105219721e-05 1.2007658658e-05 -4883933854.9 +UniRef50_B1H0H4 NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component 0.000195845444659 0.000870185123404 2.72239203388e+11 +UniRef50_A7X240 Tryptophan synthase alpha chain 0.0150778749374 0.00195512749292 -5.29781417756e+12 +UniRef50_Q4L300 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.015031829113 0.00234429426364 -5.12211351226e+12 +UniRef50_Q8RCZ3 0.000258505679378 0.00259748272579 9.44273736112e+11 +UniRef50_A7MXI6 RNA polymerase subunit sigma 32 1.64353651413e-05 3.11223763631e-05 5929326660.14 +UniRef50_M2YV20 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 4.35887020209e-06 1.96790586793e-05 6184948088.1 +UniRef50_W0HQE6 Outer membrane lipoprotein 2.20087826852e-05 1.90417122261e-05 -1197842754.39 +UniRef50_Q1QLB8 3 dehydroquinate dehydratase 7.610261388e-05 1.22847738429e-05 -25764045155.9 +UniRef50_F1WQG0 L aspartate oxidase 8.85606819696e-06 2.25552401273e-05 5530523816.01 +UniRef50_G7W3F5 Phosphonate ABC transporter, permease protein 0.0166706224587 0.00522218361993 -4.62187524737e+12 +UniRef50_A0A029I8C3 TPR repeat family protein 0.00258016132498 0.000913898837441 -6.7269061356e+11 +UniRef50_K0TNT9 0.00130314259191 0.000141609653309 -4.68925100925e+11 +UniRef50_UPI0003807495 hypothetical protein, partial 1.4393389753e-05 2.49067969119e-05 4244391484.06 +UniRef50_UPI00046EA948 peptide deformylase 2.66984218782e-05 2.48542554987e-05 -744512597.87 +UniRef50_C4Y1Q4 5.31532804839e-05 0.000197316284094 58200373636.3 +UniRef50_UPI0003A5C3E8 methylmalonyl CoA mutase 9.25448128955e-05 6.87231659879e-05 -9617091181.08 +UniRef50_M9RMW1 DNA integration recombination inversion protein 0.0132142795906 0.00204120009448 -4.51070930168e+12 +UniRef50_UPI00032A20C5 PREDICTED 1.31263687936e-05 3.75235413307e-05 9849437940.2 +UniRef50_A6M334 Glycogen synthase 0.000735064383387 0.00201236332434 5.15661256682e+11 +UniRef50_UPI0003688E90 hypothetical protein 1.43451505995e-05 3.19191286489e-05 7094830595.5 +UniRef50_A3V1D2 ABC phosphate transporter, periplasmic phosphate binding protein 8.86397564133e-06 7.30330337652e-06 -630062544.906 +UniRef50_Q9RAJ5 Bifunctional purine biosynthesis protein PurH 0.000303819660896 0.00569354219241 2.1758971253e+12 +UniRef50_A8GK38 Peptidase U62 modulator of DNA gyrase 9.64772716781e-05 0.00077273600531 2.73013949395e+11 +UniRef50_C7ZCJ9 6.93372400359e-06 0.000711419268889 2.8440945948e+11 +UniRef50_UPI0002628E3A amino acid ABC transporter, permease protein, 3 TM region, His Glu Gln Arg opine family 4.94518149961e-05 6.91008367589e-05 7932551206.25 +UniRef50_UPI000470BC2E transposase, partial 7.85270562337e-05 0.0482257927107 1.94376419781e+13 +UniRef50_Q47142 Probable 3 phenylpropionic acid transporter 0.0016072588339 0.000434475966229 -4.73466835343e+11 +UniRef50_UPI000375E9A2 MULTISPECIES 6.04064948426e-05 3.07151505618e-06 -23146834919.1 +UniRef50_UPI0004650867 hypothetical protein 3.57319885925e-05 0.000140991947147 42494736953.6 +UniRef50_UPI0003B458E8 quinone oxidoreductase 1.097946951e-05 1.76531314599e-05 2694239224.22 +UniRef50_C1KYN8 NADPH dehydrogenase 6.91510248763e-06 0.00180648364124 7.26507902283e+11 +UniRef50_UPI0003C8F987 PREDICTED 3.64996385995e-05 0.000894076435771 3.46214276669e+11 +UniRef50_UPI000364B2C5 hypothetical protein 4.74170603184e-06 1.57653778356e-05 4450391582.86 +UniRef50_I3UG87 ABC transporter 3.04584460427e-05 0.000731826094088 2.83150726265e+11 +UniRef50_UPI00036731E7 hypothetical protein 0.000195742160496 0.000176857901753 -7623806990.46 +UniRef50_C5N6N4 Type I restriction modification DNA specificity domain protein 0.0070121182992 0.00053587725922 -2.61453798025e+12 +UniRef50_Q12HP7 ATP synthase subunit b 0.00367342729998 0.00914846657284 2.21034054074e+12 +UniRef50_C8VXQ7 Prophage antirepressor 2.72831691879e-05 7.44536035676e-06 -8008766862.4 +UniRef50_Q72VI6 Aminomethyltransferase 1.75109081146e-05 1.04062970022e-05 -2868218689.46 +UniRef50_D8A1C0 0.00150665429276 3.94988772017e-05 -5.92308645283e+11 +UniRef50_Q49UD2 1.59735184326e-05 2.77897033592e-05 4770338855.76 +UniRef50_B0TI89 Arginine tRNA ligase 8.2830548392e-06 4.84154827153e-06 -1389378433.4 +UniRef50_B2IDG3 Signal recognition particle receptor FtsY 0.0020359484181 0.000347126544276 -6.81798114636e+11 +UniRef50_A0A058ZE84 4.14401875917e-06 1.09412114978e-05 2744110119.52 +UniRef50_B9MKF3 DNA directed RNA polymerase subunit alpha 0.0246965706257 0.0149230535302 -3.945688786e+12 +UniRef50_UPI000174537F tRNA isopentenyltransferase 4.82508418957e-06 7.8320085667e-06 1213932270.16 +UniRef50_E1VL16 1.69424708043e-06 4.50360862439e-06 1134173730.04 +UniRef50_X6GT76 0.000208539628775 3.91208210245e-05 -68396451691.2 +UniRef50_J9NXH4 9.64970227076e-06 0.00031429828716 1.22990372178e+11 +UniRef50_A0RH75 LexA repressor 0.0167399148921 0.00243080914498 -5.77676158258e+12 +UniRef50_P37595 Isoaspartyl peptidase 0.00179815822486 0.000394656548944 -5.66610849471e+11 +UniRef50_UPI0003688AF0 hypothetical protein, partial 1.65388079967e-05 7.94081644156e-06 -3471114700.03 +UniRef50_P20753 Peptidyl prolyl cis trans isomerase A 0.00434048017005 0.00100401511596 -1.34697188537e+12 +UniRef50_B1AJ89 Holliday junction ATP dependent DNA helicase RuvB 3.27046046782e-06 9.87303042699e-06 2665538515.16 +UniRef50_E1SQ49 5.65769047706e-05 2.42981429986e-05 -13031332232.3 +UniRef50_G7MAV9 0.000292626751416 0.000292392777421 -94458172.9653 +UniRef50_UPI0003622A28 hypothetical protein 1.094170138e-05 1.02655197592e-05 -272982817.999 +UniRef50_Q08ZN5 Catalase 0.000250420174571 0.0667403440224 2.68427981805e+13 +UniRef50_I0EMB4 0.000130648092436 0.00335176627141 1.30040493642e+12 +UniRef50_Q2W939 FAD synthase 0.000603955346801 0.000201123749283 -1.62628059218e+11 +UniRef50_A0A038G0X4 8.56737998615e-05 7.4843897976e-05 -4372164289.02 +UniRef50_S4P4Q3 Titin 0.00120962559505 8.84753175718e-06 -4.84768839354e+11 +UniRef50_P0ACR1 HTH type transcriptional activator AllS 0.00170351502938 0.000361612292071 -5.4174260205e+11 +UniRef50_Q8X645 NAD dependent dihydropyrimidine dehydrogenase subunit PreT 0.00305504851227 0.000539917104517 -1.01538941344e+12 +UniRef50_D3QIC4 0.00804072806077 0.00274006089893 -2.13994437974e+12 +UniRef50_Q76HT9 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 0.00113897395726 5.74730069579e-05 -4.36615205145e+11 +UniRef50_E4RAI6 Choline carnitine betaine transporter 0.00105942903149 0.00632157472652 2.12439279087e+12 +UniRef50_U4VB44 0.00057924794533 1.50192850456e-05 -2.27786034021e+11 +UniRef50_UPI00036A732B hypothetical protein 8.79995899515e-05 2.91052703894e-05 -23776359521.8 +UniRef50_P0AE75 Citrate carrier 0.00264892763434 0.000544958111151 -8.49398315121e+11 +UniRef50_T1UA89 Neuraminyllactose binding hemagglutinin family protein 0.000243539347646 0.00337996469072 1.26621339926e+12 +UniRef50_M1M1B9 Beta fructofuranosidase 0.000363238667216 0.000937765346163 2.31943470526e+11 +UniRef50_A0A011MYY6 Trans aconitate 2 methyltransferase 2.42499581544e-05 3.28482757252e-05 3471246316.55 +UniRef50_A5GWT2 Aspartate tRNA ligase 3.11755278831e-06 1.95032330726e-05 6615100205.68 +UniRef50_C4B488 Short chain dehydrogenase reductase SDR 0.000301817465392 0.00031209981141 4151109266.04 +UniRef50_A5ULF5 Possible glycosyltransferase 0.00347070022419 0.000678209532568 -1.12736275992e+12 +UniRef50_F4DRP3 0.000520121271721 0.00148481750506 3.89459707553e+11 +UniRef50_B8JBA1 Transcriptional regulator, Fis family 1.15532002572e-05 3.18791364532e-05 8205829869.61 +UniRef50_W5WS06 Amino acid permease 0.000641237182429 0.00036733189682 -1.10578924996e+11 +UniRef50_UPI000470356D glycine cleavage system protein H 0.000120751525993 4.26893459626e-05 -31514660008.9 +UniRef50_Q89A21 ATP dependent DNA helicase Rep 7.29037179949e-06 3.72458535209e-06 -1439551745.94 +UniRef50_Q5F8Z9 Formamidopyrimidine DNA glycosylase 0.000163670806562 0.00149598106347 5.3787e+11 +UniRef50_B6U1Z9 1.26117239387e-05 2.89644291453e-05 6601787762.16 +UniRef50_B7VBB0 Putative phosphoenolpyruvate synthase regulatory protein 1.93867530629e-05 0.000326457910787 1.2396839456e+11 +UniRef50_F8JQM1 1.5086005394e-05 0.000116975101514 41133878423.5 +UniRef50_Q3IV73 0.00335655411994 0.00264894724795 -2.85669577535e+11 +UniRef50_Q3IV76 0.00874652027172 0.000519618836113 -3.32130106499e+12 +UniRef50_S6SUU4 Peptide ABC transporter permease 0.000291058934253 0.000156748357662 -54222827945.9 +UniRef50_H0W1N8 2.30738712142e-05 3.90310774318e-05 6442119966.99 +UniRef50_UPI0004770081 molybdenum cofactor biosynthesis protein A 8.1850993994e-06 9.8474331505e-05 36450870974.5 +UniRef50_Q4FT48 Ornithine carbamoyltransferase 3.87760974388e-06 6.37798957415e-05 24183287940.9 +UniRef50_N9CHK2 0.00033348980416 0.000734012258693 1.61695829858e+11 +UniRef50_Q7ULU1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.43115795898e-05 3.80821487725e-05 -6552020378.46 +UniRef50_U5S306 0.000499909938178 0.00270828574347 8.91548412414e+11 +UniRef50_Q7NFY0 Glr3394 protein 0.000150831006835 5.16894161632e-05 -40024676758.3 +UniRef50_B9KJJ0 Proton translocating NADH quinone oxidoreductase, chain L 0.00273570228255 0.000100050831806 -1.06404483374e+12 +UniRef50_Q4WHZ9 Inosine 5 monophosphate dehydrogenase 2.31752323061e-05 4.03791498831e-06 -7725969842.49 +UniRef50_X0PKD3 1.84403811556e-05 2.76339752296e-05 3711566745.76 +UniRef50_UPI00046F8172 hypothetical protein, partial 6.00736054487e-06 4.02219123425e-06 -801437211.464 +UniRef50_D3QHK8 0.0166533036362 0.00569002909746 -4.42600846578e+12 +UniRef50_Q4FRI0 Site 2 protease, Metallo peptidase, MEROPS family M50B 0.000114044105391 0.00867650393252 3.45677010541e+12 +UniRef50_P13228 Tryptophan synthase 5.44816905175e-06 5.77735287324e-06 132895548.275 +UniRef50_I6T6M3 0.00476256718342 0.00145182065906 -1.33658899931e+12 +UniRef50_A0A013WI76 Pirin 2.25200123977e-05 3.51263812386e-06 -7673510241.04 +UniRef50_Q724H7 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 2.11134291077e-05 0.000392882534625 1.50087750017e+11 +UniRef50_Q93SS1 Hemin import ATP binding protein HmuV 8.27087970432e-06 0.00187086142295 7.51950658866e+11 +UniRef50_A3PKX0 NAD transhydrogenase subunit beta 0.0102087851364 0.00182447818829 -3.38484760197e+12 +UniRef50_UPI0003160516 beta lactamase 5.23813342598e-05 2.24491139172e-05 -12084004662.0 +UniRef50_F0Y015 0.000270352693396 0.00022095147397 -19943878503.4 +UniRef50_A7H6S8 Chorismate synthase 1.56995271355e-05 0.000200708943699 74690571787.7 +UniRef50_P12635 Uptake hydrogenase small subunit 0.00023461250138 5.90867761679e-05 -70861889210.9 +UniRef50_H3V8P2 0.000884732786372 0.00140627002474 2.10550983111e+11 +UniRef50_A2BKX6 V type ATP synthase alpha chain 8.30247776054e-05 0.0442622439807 1.78356929323e+13 +UniRef50_Q9ZL20 Homoserine dehydrogenase 0.000204662241411 0.00597761539434 2.33061202994e+12 +UniRef50_UPI0003B6A98E siderophore ABC transporter permease 1.08437395644e-05 7.64013967908e-06 -1293332586.3 +UniRef50_A5UNY8 0.00131989171183 0.00144506449675 50533789315.0 +UniRef50_UPI00028983C1 iron ABC transporter ATP binding protein 6.31583313382e-05 3.22486928603e-05 -12478600357.4 +UniRef50_UPI00035C388E hypothetical protein 1.20482189133e-05 9.46556279687e-06 -1042649966.96 +UniRef50_Q2NHW2 4 hydroxy tetrahydrodipicolinate synthase 0.00568300732251 0.000275126075039 -2.18322802177e+12 +UniRef50_A5UNY0 0.000709651468135 0.000333063953224 -1.52033001018e+11 +UniRef50_P76278 Inner membrane protein YebZ 0.00278701617737 0.00221508751969 -2.30894617459e+11 +UniRef50_UPI0003F8B96B hypothetical protein 6.24657330125e-05 4.78745706916e-05 -5890631282.64 +UniRef50_UPI00034A188B hypothetical protein 2.47966114014e-06 8.29736545314e-06 2348678622.42 +UniRef50_S9QCK8 Flagellar protein FlaF, putative 4.37928841016e-05 8.33178859481e-05 15956728271.7 +UniRef50_I6WD10 3.53438711259e-06 5.93202349737e-06 967955230.843 +UniRef50_Q3IWS0 TRAP T family transporter, periplasmic binding protein 0.00225292724812 0.000703917253616 -6.2535434327e+11 +UniRef50_P0A0C8 Replication and maintenance protein 0.0623861574834 0.0165274521208 -1.85137221045e+13 +UniRef50_B3HTF1 Protein YgiQ 0.00234574987165 0.000246439531448 -8.47517345774e+11 +UniRef50_UPI0003B3CF72 histidine kinase 5.5405118147e-06 4.09448520666e-06 -583778686.408 +UniRef50_C6ST75 0.00500934565725 0.00258050643209 -9.80552200406e+11 +UniRef50_UPI00028905C7 recombinase RecQ 2.94112880377e-06 8.74222767327e-06 2341974801.11 +UniRef50_P34749 Putative DNA transport protein HofQ 0.00362665813404 0.000374880651097 -1.31278247366e+12 +UniRef50_UPI00047D7442 multidrug ABC transporter ATPase 3.24989226794e-06 8.68934566524e-06 2195974086.09 +UniRef50_Q88VG4 GTPase Obg 0.0285301072684 0.0113195805645 -6.94810082728e+12 +UniRef50_C1CMA0 Ribosomal protein L11 methyltransferase 0.00616934447601 0.00998821399 1.5417244856e+12 +UniRef50_Q9RW97 0.000172368031437 0.00900182108161 3.56455854593e+12 +UniRef50_L0GSA8 Glycine D amino acid oxidase, deaminating 0.00119535025924 0.000350889874761 -3.40919019908e+11 +UniRef50_UPI00037C253B alcohol dehydrogenase 1.63325704481e-05 1.8367759324e-05 821630723.777 +UniRef50_U5UBZ0 Integral membrane protein TerC 0.00209948226997 0.000977424880443 -4.52988337346e+11 +UniRef50_G2TNB0 Beta lactamase 1.12808813062e-05 4.7362608045e-05 14566635857.0 +UniRef50_A7ZEL6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000142626947925 0.00118543384389 4.20993940579e+11 +UniRef50_Q9CE02 Glycerol facilitator aquaporin gla 0.00578647960401 0.00341511071572 -9.57350720171e+11 +UniRef50_A6X7L5 Cobyrinic acid ac diamide synthase 0.000290305665228 8.59117144387e-05 -82516346129.3 +UniRef50_E5ALT8 UvrABC system protein A 8.97231649528e-05 0.00758436538607 3.02567903427e+12 +UniRef50_A9M1I6 Periplasmic thioredoxin 0.000370084302795 0.000360875810829 -3717581207.58 +UniRef50_D5HI95 Beta fructosidases 0.000366095001508 0.000827829860193 1.86408028575e+11 +UniRef50_A8M621 NADH quinone oxidoreductase subunit B 2 1.69801436267e-05 0.0339201317892 1.36871183578e+13 +UniRef50_UPI00041CBDDB phosphoenolpyruvate synthase 3.709774162e-06 1.51019291302e-05 4599152758.12 +UniRef50_UPI0003B60C80 MFS transporter 8.19112865092e-06 8.28034282533e-06 36016856.9903 +UniRef50_O21049 Cytochrome c oxidase subunit 3 3.56245326004e-06 3.93192294643e-06 149159446.299 +UniRef50_M1GCT3 Peptidyl prolyl cis trans isomerase 0.000319002244105 0.000978950403971 2.66429170613e+11 +UniRef50_P49331 Glucosyltransferase S 0.00492029209645 0.00149449056862 -1.3830381161e+12 +UniRef50_Q1CU36 Phospho N acetylmuramoyl pentapeptide transferase 5.63620675513e-06 0.00264509988277 1.06558387587e+12 +UniRef50_P0AAJ9 Hydrogenase 2 operon protein HybA 0.00275494901213 0.00104855459288 -6.88892366865e+11 +UniRef50_P61154 Tungsten containing formylmethanofuran dehydrogenase 2 subunit B 0.00391566042739 0.00129881856166 -1.05645117346e+12 +UniRef50_W5X7F1 Band 7 protein 1.47790394464e-05 0.000287292161424 1.10016891455e+11 +UniRef50_J7R3C7 0.0030956984692 0.00236500599779 -2.94989517313e+11 +UniRef50_UPI000381CDD7 hypothetical protein 4.26265169235e-06 4.23548989079e-06 -10965552.6026 +UniRef50_X1Y977 4.2706502543e-06 2.30519724232e-05 7582250232.33 +UniRef50_P26396 Glucose 1 phosphate cytidylyltransferase 0.0108249418803 0.00993978492785 -3.57348723801e+11 +UniRef50_Q9HZN2 Maf like protein PA2972 0.002150624633 0.000631080985278 -6.13458417482e+11 +UniRef50_Q2NED1 EhbF 0.00332712411382 0.00071688373595 -1.0537860718e+12 +UniRef50_Q9JY93 Peptide chain release factor 1 0.0111221498463 0.0162664260123 2.07680741558e+12 +UniRef50_F2EI39 Predicted protein 3.61935744281e-05 0.000110841771634 30136393248.4 +UniRef50_D8UC86 1.40745759169e-05 3.56792957775e-05 8722090527.45 +UniRef50_R4ZPZ7 Glycosyl transferase, family 8 0.000671401926993 0.000167634837394 -2.03376955988e+11 +UniRef50_Q1GD19 Binding protein dependent transport systems inner membrane component 0.0102211275338 0.00290144483705 -2.95504572729e+12 +UniRef50_D8JKK4 Glutathione import ATP binding protein gsiA 0.000152512137299 0.00447226210032 1.74393606936e+12 +UniRef50_UPI0003642310 hypothetical protein 5.99168985199e-06 3.53014676972e-05 11832716987.5 +UniRef50_F5YLA3 Ferric enterobactin transport ATP binding protein FepC 0.000318613284521 0.00158379757956 5.10770425465e+11 +UniRef50_M5JPC6 0.000139692598695 4.43376198464e-05 -38495975098.4 +UniRef50_P70584 Short branched chain specific acyl CoA dehydrogenase, mitochondrial 7.5499766789e-06 1.14847291715e-05 1588507866.11 +UniRef50_X3WXP6 3.36728049732e-05 4.1355854496e-05 3101741373.97 +UniRef50_UPI00020008D2 putative magnesium translocating P type ATPase 3.36636109773e-05 0.000133885689123 40460882810.7 +UniRef50_UPI00037C785B hypothetical protein 9.34246190593e-05 0.00015999231582 26874196059.8 +UniRef50_Q8FF30 Flavohemoprotein 0.00344647789439 0.00111780293284 -9.40114658033e+11 +UniRef50_Q3IV85 0.00652407619201 0.00207741217372 -1.79517283089e+12 +UniRef50_B9KPB5 Response regulator receiver and SARP domain protein 0.000322637597309 0.0025436795637 8.96661897081e+11 +UniRef50_UPI00046F03A6 histidine kinase 6.98653018335e-05 2.08195212307e-05 -19800383488.8 +UniRef50_P16552 Raffinose permease 0.000999665533874 0.0011762405932 71285518269.5 +UniRef50_B4U0I9 Putative competence damage inducible protein 0.00789661600337 0.00546064795866 -9.83430192339e+11 +UniRef50_F4EDS5 Alkylhydroperoxidase like protein, AhpD family 0.00672305860622 0.0025759244621 -1.67424894504e+12 +UniRef50_UPI00036E614B hypothetical protein 3.21258892587e-05 9.05317519518e-05 23579163489.7 +UniRef50_F3S3U6 4.96406924058e-05 4.22136233535e-05 -2998398916.8 +UniRef50_UPI00036215C0 hypothetical protein 4.86197140317e-06 0.000150427265964 58766495701.3 +UniRef50_Q28QW5 Ppx GppA phosphatase 0.0048484748751 0.000182670126934 -1.8836426327e+12 +UniRef50_UPI000180B091 PREDICTED 6.46409265431e-06 7.40834619373e-06 381206741.158 +UniRef50_I4CF79 ATPase involved in chromosome partitioning 0.00528494933203 0.00973686901799 1.79729460842e+12 +UniRef50_UPI000364064B hypothetical protein, partial 0.000201276570253 2.15972961107e-05 -72538727883.8 +UniRef50_UPI000476D156 30S ribosomal protein S8 5.00552255868e-05 0.000315246829899 1.07061104928e+11 +UniRef50_M1N762 PAS domain S box diguanylate cyclase domain containing protein 0.000634909182436 0.00275886422822 8.57466715841e+11 +UniRef50_G8VEI8 9.11023266451e-05 0.00074733554289 2.64929402285e+11 +UniRef50_Q3J6K9 Acrylyl CoA reductase AcuI 0.00665110333348 0.00126035348037 -2.17631186764e+12 +UniRef50_Q8YM92 Spermidine putrescine import ATP binding protein PotA 7.54502453195e-05 4.77805003844e-05 -11170615576.3 +UniRef50_V1DIU7 5.23276749134e-05 4.99210932214e-05 -971566561.139 +UniRef50_C0R3V6 3 5 exonuclease 0.0168492430658 0.00383292585521 -5.25484698609e+12 +UniRef50_R1D2B5 8.13954027567e-06 2.41383768856e-05 6458926667.22 +UniRef50_UPI00041042FA hypothetical protein 6.96805498777e-06 5.07450321446e-05 17673302882.1 +UniRef50_P28303 DNA damage inducible protein F 0.00212529899665 0.000861927526551 -5.10038565791e+11 +UniRef50_R6NSD0 0.000174791299749 0.000644875588256 1.89778795853e+11 +UniRef50_P0A1J0 Basal body rod modification protein FlgD 0.00253311001131 0.000256054946702 -9.19275072191e+11 +UniRef50_Q1LSW5 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.00396408312137 0.000176133223777 -1.52924185703e+12 +UniRef50_Q164Y5 sn glycerol 3 phosphate import ATP binding protein UgpC 8.1108091523e-05 7.58093586595e-05 -2139163479.76 +UniRef50_B7L4M7 Glutathione regulated potassium efflux system protein KefB 0.00276607631409 0.00128549140257 -5.97730297601e+11 +UniRef50_UPI000329E73C PREDICTED 3.28563903976e-06 5.20139117476e-06 773412645.822 +UniRef50_P0AFJ0 Putative permease PerM 0.00358838338785 0.000298299702217 -1.32824715776e+12 +UniRef50_UPI00036E49BC hypothetical protein 0.000379371991491 4.96446364568e-05 -1.33114979437e+11 +UniRef50_Q9XC21 Protein NrdI 1.14808599181e-05 4.57990076387e-05 13854657365.8 +UniRef50_Q6G5Y3 0.0234714436108 0.00560768339471 -7.21181921223e+12 +UniRef50_V5XV11 7.05160697779e-06 2.13011866337e-05 5752730169.09 +UniRef50_UPI00037AAF5D hypothetical protein 0.00195550286055 0.0013908472994 -2.27958379139e+11 +UniRef50_Q8ZPD6 0.00190071834935 0.00107100541519 -3.34965293243e+11 +UniRef50_A1YN33 Outer membrane protein N 0.000577086829441 0.000741557572174 66398857124.3 +UniRef50_E3HF39 Acyltransferase family protein 5 0.000425936072397 0.000259429023591 -67220938874.2 +UniRef50_UPI0003B39CC6 ABC transporter substrate binding protein 9.10164696954e-05 0.000111626739969 8320619025.91 +UniRef50_Q896J4 HPr kinase phosphorylase 0.000249990721098 0.00186973468552 6.5391051493e+11 +UniRef50_W0YKE6 Protein PqqC 0.000305660536572 0.00115856050729 3.44326184438e+11 +UniRef50_UPI00038F9E6F DNA polymerase III subunit alpha, partial 1.46101884347e-05 2.87608248385e-05 5712785564.05 +UniRef50_A6LXS8 FAD dependent pyridine nucleotide disulphide oxidoreductase 9.37465204062e-05 0.00171989404948 6.5649571256e+11 +UniRef50_Q487E5 Protein L isoaspartate O methyltransferase 0.00244600475456 0.00106026637819 -5.59439587463e+11 +UniRef50_P9WKI2 0.00011674824398 0.00596144832841 2.35957714662e+12 +UniRef50_G2JG74 0.00365309021469 0.00177147782215 -7.59630012849e+11 +UniRef50_Q12680 Glutamate synthase [NADH] 9.1054271516e-07 1.37630012434e-05 5188695225.24 +UniRef50_Q142P6 Lipid A export ATP binding permease protein MsbA 2.56378925683e-06 6.14249179135e-06 1444766128.8 +UniRef50_UPI0003FD8434 hypothetical protein 2.83550840038e-05 1.15207367889e-05 -6796232551.33 +UniRef50_P77196 Putative outer membrane usher protein YfcU 0.00302832132771 0.00129565448897 -6.99498865012e+11 +UniRef50_D8GR57 D alanyl D alanine carboxypeptidase 0.00019608677785 0.000897181543735 2.83040560388e+11 +UniRef50_E7T039 PTS system protein, cellobiose specific IIC component 0.00166790515675 0.000564553633327 -4.4543654965e+11 +UniRef50_U2FR71 Putative conserved inner membrane protein 1.82834875865e-05 3.11019571619e-05 5174973467.9 +UniRef50_X1Y4J3 S adenosylmethionine synthase 2.86486238582e-05 0.00016347347176 54430445585.0 +UniRef50_UPI0003B599F8 membrane protein 5.43812219043e-06 3.66967490636e-05 12619491255.2 +UniRef50_UPI0003699B2C hypothetical protein 8.33033570671e-06 9.30782079632e-06 394622725.766 +UniRef50_B8DTW3 Carbamoyl phosphate synthase large chain 1.55008388122e-05 8.77927116125e-06 -2713579343.6 +UniRef50_P0AE17 Protein AmpG 0.00267721610191 0.00199526830868 -2.75310692567e+11 +UniRef50_D2QC61 NAD dependent epimerase dehydratase 0.000654869594153 0.00138454245475 2.94577887916e+11 +UniRef50_UPI00037FC855 hypothetical protein 0.00173644784283 0.000559592915001 -4.75110775999e+11 +UniRef50_A5UNZ2 Magnesium chelatase subunit 0.00285246063776 0.000852879969053 -8.07255253572e+11 +UniRef50_A0A023S1G3 Transcriptional regulator 0.000653738717857 0.00568664305895 2.03184524318e+12 +UniRef50_V5VIA0 0.000797505610247 0.00937918408415 3.46452890895e+12 +UniRef50_UPI00016A5A21 ABC transporter permease 2.43642254169e-05 1.36314406812e-05 -4332956903.88 +UniRef50_UPI0002DB5328 ABC transporter permease 9.80483538871e-06 1.16840538432e-05 758663550.681 +UniRef50_W1AP48 Penicillin binding protein 2 0.00269337184431 0.000531085087412 -8.72941698003e+11 +UniRef50_UPI0002F2CBB8 hypothetical protein 0.000158112879685 5.36905187769e-05 -42156588505.0 +UniRef50_A4WQG9 0.00272476060112 0.00143549361474 -5.20492903487e+11 +UniRef50_P43725 Superoxide dismutase [Mn] 8.78067731056e-06 0.000104739421233 38739722467.7 +UniRef50_W5FKJ5 0.000102297989595 0.000204857365868 41404478746.5 +UniRef50_Q9KA74 Transcription termination antitermination protein NusA 0.00637974375497 0.000846209134264 -2.23395583049e+12 +UniRef50_P0A9F8 Glycine cleavage system transcriptional activator 0.00190523329316 0.00125032605101 -2.64394090272e+11 +UniRef50_A9LZF9 3 isopropylmalate dehydratase small subunit 5.6791288078e-05 0.00904198060709 3.62743118876e+12 +UniRef50_M9VJJ5 AP endonuclease, family 2 0.000559066611697 0.00560035805641 2.03523121983e+12 +UniRef50_P44255 Elongation factor P hydroxylase 0.000101870634305 3.84687765347e-05 -25596108010.2 +UniRef50_F3G6H6 AsmA family protein 2.58727658681e-05 7.68339313342e-05 20573647862.5 +UniRef50_UPI000474A6D9 hypothetical protein, partial 1.18702606973e-05 0.000106823419169 38333755281.3 +UniRef50_UPI000380FF19 chemotaxis protein CheY, partial 0.000185967938469 0.000103181564122 -33421875226.9 +UniRef50_Q21YC7 NADH quinone oxidoreductase subunit A 1.51014715536e-05 0.000145947211422 52824030842.5 +UniRef50_P38674 Ketol acid reductoisomerase, mitochondrial 2.52051717726e-06 0.00271912679335 1.0967272902e+12 +UniRef50_C1ELB5 Bis tetraphosphatase PrpE [asymmetrical] 8.63366107376e-05 0.000186631709541 40490362146.0 +UniRef50_UPI00046FCD40 rubredoxin 0.000415782126582 0.000102819783026 -1.26346738573e+11 +UniRef50_UPI000381FE78 hypothetical protein 5.38214392116e-06 1.29349761233e-05 3049171043.68 +UniRef50_UPI0003BCF281 PREDICTED 1.04842106709e-05 0.000193126669675 73735001974.9 +UniRef50_V8G1A8 Membrane protein 0.000426669239637 0.00149678010725 4.32016888991e+11 +UniRef50_UPI0003600AD1 hypothetical protein 5.51569213999e-05 2.83418244237e-05 -10825583707.5 +UniRef50_UPI000328F489 PREDICTED 0.000102470352109 1.31547756869e-05 -36057794227.0 +UniRef50_I4EZI0 4.99583431396e-05 0.000109203060076 23917819241.7 +UniRef50_P9WN18 Glutamate synthase [NADPH] small chain 9.72227072197e-05 0.000134872420104 15199651105.3 +UniRef50_I3UWQ8 Spermidine putrescine ABC transporter ATPase 0.00919429940831 0.00242014802246 -2.73480804265e+12 +UniRef50_P45061 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.00203166581647 0.00107640954189 -3.85648680361e+11 +UniRef50_A3LGX4 1.00608525054e-05 9.59106276218e-05 34658607709.7 +UniRef50_UPI0002EE4E70 D amino acid dehydrogenase small subunit 3.14691063883e-05 2.61865031974e-05 -2132651733.0 +UniRef50_A3LGX1 0.000221103934161 0.000423657556294 81773382867.5 +UniRef50_UPI00046F4247 MarR family transcriptional regulator 1.21757414489e-05 9.49865002677e-05 33431719537.4 +UniRef50_Q28TP6 0.000150656275976 2.81277828093e-05 -49466256285.2 +UniRef50_Q4QP16 tRNA specific 2 thiouridylase MnmA 9.80428268128e-06 2.39685007704e-05 5718268657.07 +UniRef50_P46861 Lysine tRNA ligase 0.000395466056609 0.00449871574785 1.65653225289e+12 +UniRef50_R4YER9 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.00039443356509 5.39283397707e-05 -1.3746613793e+11 +UniRef50_UPI00036FD96D hypothetical protein 7.21145060561e-05 0.000491446714796 1.69289558453e+11 +UniRef50_Q6AB12 4 hydroxythreonine 4 phosphate dehydrogenase 0.000115204269236 0.00336068083445 1.31023871585e+12 +UniRef50_J2XB15 0.00894331207736 0.00172029148658 -2.91602204893e+12 +UniRef50_C7DAC2 ISSpo9, transposase 0.000135855728571 2.3347029746e-05 -45421142352.6 +UniRef50_Q8TT39 30S ribosomal protein S2 0.0049062006556 0.000900527402918 -1.61713944725e+12 +UniRef50_A2RNT2 Proline tRNA ligase 0.00476933443278 0.00493372030925 66364595572.5 +UniRef50_A6M0B1 PAS PAC sensor signal transduction histidine kinase 0.000342244732592 0.00212083222683 7.18037597148e+11 +UniRef50_D3QE85 0.0188483377382 0.00522984033394 -5.49795451987e+12 +UniRef50_G4LM52 0.000256212209626 0.00394694243171 1.48999308101e+12 +UniRef50_UPI00047BC3F9 peptidase S41 2.68003025985e-05 0.00015204133707 50561342496.7 +UniRef50_P27129 Lipopolysaccharide 1,2 glucosyltransferase 0.00283045323684 0.000280363960626 -1.02950233392e+12 +UniRef50_B2I9J2 Tryptophan synthase beta chain 7.29121724957e-05 0.0228873566944 9.21047121821e+12 +UniRef50_S9RYT9 0.000503140366143 0.000759643236156 1.03553356268e+11 +UniRef50_UPI0001850E7F signal recognition particle protein 4.19947873189e-05 0.00191928329826 7.57884408787e+11 +UniRef50_Q9HUL4 Epoxyqueuosine reductase 0.000759079037954 0.000188099812232 -2.30511320127e+11 +UniRef50_UPI0002D4C97B hypothetical protein 2.4975230316e-05 9.31526773862e-06 -6322119061.85 +UniRef50_Q98PK9 Thioredoxin reductase 2.8050069553e-05 2.65460963868e-05 -607172423.021 +UniRef50_A8AK39 6,7 dimethyl 8 ribityllumazine synthase 0.000458485006708 0.000403248283798 -22299742869.6 +UniRef50_UPI000369CA42 hypothetical protein 3.61060801141e-06 0.00204435977302 8.23875480723e+11 +UniRef50_Q58944 0.00207529025695 0.00406632657497 8.03805794348e+11 +UniRef50_UPI00042A1E91 hypothetical protein 1.25922027982e-05 1.01615376546e-05 -981289346.087 +UniRef50_F3F298 AsmA family protein 4.55602266102e-05 0.000135299462802 36228830874.9 +UniRef50_UPI0002DB6B05 hypothetical protein 2.13083057587e-05 6.29001136813e-05 16791123247.2 +UniRef50_UPI00036C5239 hypothetical protein 6.35681253298e-06 8.24753719114e-06 763308746.3 +UniRef50_C6SRS1 0.00343071403632 0.000965131161782 -9.95386062556e+11 +UniRef50_A3V2W0 2.84899951708e-05 4.36951237902e-05 6138497011.56 +UniRef50_Q883S2 Universal stress protein family 0.00194676558383 0.000357959642661 -6.41420455292e+11 +UniRef50_UPI0003B63590 LuxR family transcriptional regulator 3.89713931898e-05 0.000403670263344 1.4723340924e+11 +UniRef50_UPI000365B6C8 hypothetical protein 9.38863149246e-06 2.13131346101e-05 4814068238.68 +UniRef50_L0A7F9 0.000148227482538 0.0452478303918 1.82072631288e+13 +UniRef50_D9RHP8 Enterotoxin family protein 0.0110469308107 0.00105470251856 -4.03398517997e+12 +UniRef50_A9KSY6 Sulfate ABC transporter, inner membrane subunit 0.000154919010474 0.00070353226378 2.21481902601e+11 +UniRef50_UPI00047845D7 hypothetical protein 1.69904274774e-05 2.16859141924e-05 1895625606.95 +UniRef50_A6LQA8 Methyl accepting chemotaxis sensory transducer 0.000289905838214 0.0010235460952 2.96179574524e+11 +UniRef50_Q5HPI3 Protein GlcT 0.0146013238694 0.00357745234146 -4.45047221393e+12 +UniRef50_UPI0003193330 hypothetical protein 0.000136466157208 3.54435595662e-05 -40784062354.8 +UniRef50_B5EXJ5 7 cyano 7 deazaguanine synthase 5.43656356362e-05 4.73292727899e-05 -2840666026.93 +UniRef50_B0U641 Lipoyl synthase 0.000895741312443 0.00280479079022 7.70706700851e+11 +UniRef50_B0NLN7 1.2687842486e-05 0.000342671785859 1.33218567298e+11 +UniRef50_S5CLP0 Zn dependent hydrolase, including glyoxylase 0.00075603967482 0.00534872958561 1.85412527563e+12 +UniRef50_Q6N6L4 Phosphopantetheine adenylyltransferase 2.64110495372e-05 1.62726623113e-05 -4092991335.1 +UniRef50_T5BQJ5 1.74811347414e-05 6.39739018242e-06 -4474643691.31 +UniRef50_UPI000465E97D excinuclease ABC subunit A 3.81118476502e-06 2.09951386392e-06 -691022547.338 +UniRef50_UPI0003715EFB hypothetical protein 6.91425932738e-06 5.51706059815e-05 19481679316.2 +UniRef50_E8SKI8 Ribosomal protein S18p alanine acetyltransferase 0.0244381846984 0.00452518068606 -8.0391240798e+12 +UniRef50_U2LTW3 6.62444019762e-06 5.5554877205e-05 19753817863.9 +UniRef50_I3U9I7 Phosphomethylpyrimidine synthase ThiC 2.05742138901e-05 6.06746821728e-05 16189051133.8 +UniRef50_O75306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2, mitochondrial 2.33029437924e-05 3.40040471578e-05 4320166745.92 +UniRef50_B4RJZ9 0.000295680931211 0.00532934272303 2.03215103533e+12 +UniRef50_UPI00037AAD6E hypothetical protein 0.000121976407489 3.32858824924e-05 -35805453296.3 +UniRef50_M4UTW5 5.16966622e-05 1.95126574201e-05 -12993077671.8 +UniRef50_B9KR53 Transcriptional regulator, Fis family 0.00257794229738 0.000494987553634 -8.40914390781e+11 +UniRef50_A0A029LHT4 0.00268632192166 0.0016958113222 -3.99881283934e+11 +UniRef50_A0A024HXI8 8.56689916941e-05 0.000178499755829 37476918642.8 +UniRef50_C6SQS1 0.00527909842341 0.00126053388161 -1.62234381886e+12 +UniRef50_Q5HJ89 Protein EssA 0.0105080381829 0.00315007540302 -2.97049986659e+12 +UniRef50_Q887V6 Protein CysZ homolog 0.00103558584352 0.000350871332905 -2.76427650327e+11 +UniRef50_G7U6T9 Bacterial extracellular solute binding protein, family 5 0.000300218762002 0.0059868394597 2.29575855834e+12 +UniRef50_UPI0002E39CBB hypothetical protein 5.9967823003e-06 4.07640353713e-05 14035966706.9 +UniRef50_UPI00035CE977 hypothetical protein 0.00191717573781 0.000560670480056 -5.47637818745e+11 +UniRef50_Q6FD73 0.0012582866295 0.0108565872938 3.87495176257e+12 +UniRef50_A3M3H0 Adhesin Ata autotransporter 0.000105657545649 0.00582996982867 2.31097511387e+12 +UniRef50_Q46I98 Aspartate tRNA ligase 2.71340909377e-06 1.35654558785e-05 4381104456.57 +UniRef50_UPI000467166E hypothetical protein 5.02842727754e-06 7.73174702735e-06 1091363356.46 +UniRef50_UPI00037BC758 dihydropyrimidine dehydrogenase subunit B, partial 0.000272485495107 0.000128852465863 -57986416481.3 +UniRef50_Q5I3J7 Aec68 0.000759788003887 0.000435174594507 -1.31050416821e+11 +UniRef50_UPI00036C8B3C AraC family transcriptional regulator 0.00084999030458 0.000150217388882 -2.82506913247e+11 +UniRef50_Q62MT4 Methionyl tRNA formyltransferase 0.00022469404098 0.00506535232946 1.95423315262e+12 +UniRef50_W4KZP5 Peptidase family S11 0.000109931023379 2.17266206765e-05 -35609199760.7 +UniRef50_Q3JHM0 0.000266549363836 0.0073421340745 2.85650037488e+12 +UniRef50_P80705 Aldehyde dehydrogenase gamma chain 0.0732701412317 0.0054821190768 -2.73668563965e+13 +UniRef50_V6UAA6 6.84133645646e-05 0.000101454332734 13339044308.3 +UniRef50_UPI00047E4EA4 hypothetical protein 3.23101369536e-06 8.3257393168e-06 2056803252.69 +UniRef50_M1P548 Dipeptide binding ABC transporter, periplasmic substrate binding component 0.00332086994703 0.000606932896307 -1.09564969113e+12 +UniRef50_UPI000289E1E5 sodium 2.48727342067e-05 5.75689030312e-05 13199844581.6 +UniRef50_P37474 Transcription repair coupling factor 0.0135951546948 0.00251558327466 -4.47295894392e+12 +UniRef50_P46320 Probable 6 phospho beta glucosidase 0.00117342753866 0.00580918367303 1.87151163857e+12 +UniRef50_G4YC47 0.000428442915246 3.93144049521e-05 -1.57095954749e+11 +UniRef50_Q5HP54 0.0143919739566 0.00319683949508 -4.51961316186e+12 +UniRef50_R6FZP0 Flagellar M ring protein 0.000650712489061 0.000800449093565 60450504713.0 +UniRef50_D6SFZ2 7.2968387879e-05 0.0016406483622 6.3289164323e+11 +UniRef50_A5ISK2 ABC 2 type transporter 0.00650822148537 0.00160100917807 -1.98110182672e+12 +UniRef50_UPI00035F0BE8 hypothetical protein 0.000216008261563 0.00587483206376 2.28453661053e+12 +UniRef50_L8DT93 Chaperone protein DnaJ 7.43797070742e-05 7.10453049938e-05 -1346139037.57 +UniRef50_F8HGC4 Permease of the major facilitator family protein 2.14928393881e-05 5.11386655042e-05 11968383798.3 +UniRef50_F0TCJ5 Methyltransferase MtaA CmuA family 0.00449854756675 0.000378028476564 -1.66350412117e+12 +UniRef50_E4PPH7 DNA repair protein RecN 0.000705128588587 0.00053448590692 -68890544610.1 +UniRef50_D7BZV1 6.1100953038e-05 4.03203452809e-05 -8389386358.27 +UniRef50_Q46948 Chaperone protein YajL 0.00592854323394 0.00298687022154 -1.18758949349e+12 +UniRef50_P0A7B0 Inorganic pyrophosphatase 0.00468975584017 5.07306630968e-05 -1.87283139122e+12 +UniRef50_UPI00037BC2EC hypothetical protein 5.36548186326e-06 1.04113297482e-05 2037070710.67 +UniRef50_UPI00036A31F9 hypothetical protein 6.45871748108e-05 2.52322934429e-05 -15888048546.9 +UniRef50_UPI00047ED552 hypothetical protein 1.49257996457e-05 1.81686768888e-05 1309189337.62 +UniRef50_Q1GCB3 1.48225195358e-05 1.3980822569e-05 -339803394.28 +UniRef50_A0Q1L0 Putative fluoride ion transporter CrcB 0.00202224636885 0.000456675317307 -6.32040245224e+11 +UniRef50_A3V7A8 0.000223271229081 8.23731490911e-05 -56882283905.8 +UniRef50_M9S3N5 Glycosyl transferase family protein 0.00200291339078 0.000244063392719 -7.10069327733e+11 +UniRef50_U5MSV8 DNA binding protein, excisionase family 0.000452686552077 0.0018496368431 5.63965974993e+11 +UniRef50_Q6UB95 RepA 0.000166896197207 7.96238755497e-06 -64163529293.7 +UniRef50_UPI000369C939 hypothetical protein 1.97935694715e-05 3.60063142644e-05 6545284025.65 +UniRef50_P27298 Oligopeptidase A 0.00123253352837 0.000114611916634 -4.513186731e+11 +UniRef50_A0A058Z2Y8 1.30791648539e-06 6.61907223052e-07 -260801866.631 +UniRef50_UPI0002486501 methylcitrate synthase 3.72161690008e-05 5.50823761587e-05 7212807072.66 +UniRef50_R5RD02 0.00130195583421 0.00053693946399 -3.08846496464e+11 +UniRef50_UPI000405521B acyl CoA dehydrogenase 4.16643713376e-05 1.39261643727e-05 -11198254537.8 +UniRef50_UPI0003B6EF1B dihydroxyacetone kinase 1.81633295496e-05 0.00132191334626 5.26339880558e+11 +UniRef50_B8I2T4 UDP N acetylmuramoylalanine D glutamate ligase 0.000577180061908 0.00126692657461 2.78459131319e+11 +UniRef50_Q5M1E5 0.00452175034941 0.00351972985869 -4.04527968278e+11 +UniRef50_G7M8Y1 Type IV pilus assembly PilZ 0.000223364490448 0.000340096013652 47125948374.3 +UniRef50_V9WDB1 7.07268037056e-05 1.2052550087e-05 -23687516199.9 +UniRef50_UPI000473B5E4 translation initiation factor IF 3, partial 0.000218261941611 0.000311851248785 37783151776.1 +UniRef50_S8ZG58 Amidase 0.000191813840575 0.000290685751701 39915803816.4 +UniRef50_UPI000262E88D reductase 0.000118951484509 0.000210977835457 37152167168.0 +UniRef50_P72785 4 alpha glucanotransferase 1.38621375834e-05 0.000768150898684 3.0451562902e+11 +UniRef50_UPI00047CBF8E hypothetical protein 6.80074935093e-06 1.17248636291e-05 1987925359.77 +UniRef50_F2LSI9 Metal dependent phosphohydrolase, HD region 0.00026397621598 0.00331327340308 1.23103869352e+12 +UniRef50_UPI00026286B7 ABC transporter permease 0.000193025738056 1.46774618893e-05 -72001387668.1 +UniRef50_UPI00037C530D hypothetical protein 2.55150246161e-06 3.96254489078e-06 569655144.094 +UniRef50_X3WHN6 Short chain dehydrogenase 2.32259994116e-05 5.06289508849e-05 11062907781.8 +UniRef50_UPI000366373C hypothetical protein 0.000348154852414 0.000134243135142 -86358785254.7 +UniRef50_O27123 DNA directed RNA polymerase subunit B 0.0027263150849 0.000915817077032 -7.30920263086e+11 +UniRef50_UPI000464BDF6 amino acid permease 2.38554011583e-05 7.63671270001e-06 -6547683556.3 +UniRef50_UPI0002D53655 hypothetical protein 4.23800650564e-05 2.57721182107e-05 -6704831944.03 +UniRef50_D9UDJ1 Predicted protein 0.00103346272487 9.21492938561e-05 -3.80019783315e+11 +UniRef50_UPI0003B6AAD5 hypothetical protein 3.28656895422e-05 1.33915526063e-05 -7861948055.56 +UniRef50_UPI00036396B4 hypothetical protein 1.38791313155e-05 0.000788674304946 3.12794319401e+11 +UniRef50_Q5HP23 Acetylglutamate kinase 0.0059154411298 0.00275544682379 -1.27572847883e+12 +UniRef50_R7PUS4 Adhesin like protein 0.004099221115 0.000770132169605 -1.34399405977e+12 +UniRef50_B0RVC3 Two component system response regulator 0.000764211441894 0.00370989493815 1.18920857504e+12 +UniRef50_U6HM79 Mitochondrial ribosomal protein S12 8.03480802961e-05 0.000103886971248 9502939131.96 +UniRef50_C5Y1C5 3.49696237215e-05 7.7775025377e-05 17281065929.7 +UniRef50_UPI00029AFBF4 excinuclease ABC subunit A 8.11635146615e-06 2.36392085813e-05 6266767904.24 +UniRef50_X7F301 4.95161601479e-05 3.16890752935e-05 -7197012918.65 +UniRef50_UPI0003B6DCF9 cysteine synthase 3.50528952244e-06 1.70442751601e-05 5465854643.98 +UniRef50_UPI0002490F12 alcohol dehydrogenase 1.0361242598e-05 9.68459580098e-06 -273170615.347 +UniRef50_Q3J074 TRAP T family transporter, DctP subunit 0.0127254856915 0.00397289273861 -3.53352918148e+12 +UniRef50_C4J2K7 0.000156502016027 0.00075391217446 2.41181812006e+11 +UniRef50_A0A028WY26 PF04507 domain protein 1.57956794645e-05 2.93457791256e-05 5470341511.61 +UniRef50_C5Y4M7 0.000241275560139 7.30141036513e-05 -67929214784.5 +UniRef50_Q2Y5B5 Ribosomal RNA small subunit methyltransferase G 2.17335841766e-05 4.59826369244e-05 9789640163.63 +UniRef50_X2I3A5 Biotin protein ligase 0.00107988336529 0.00236825759424 5.20132486357e+11 +UniRef50_L1K7Q7 0.00245044686356 0.000813188663273 -6.60981226875e+11 +UniRef50_P55177 Hydrolase in agr operon 0.0189370777488 0.00183490899356 -6.90435539368e+12 +UniRef50_P77966 DNA gyrase subunit B 1.15717469857e-05 1.5680260196e-05 1658657200.12 +UniRef50_U3QXL3 NADH dehydrogenase 0.000162476035378 0.00719594470653 2.83949761291e+12 +UniRef50_L0DVV1 5.67799233753e-05 0.000525381471564 1.89180195392e+11 +UniRef50_V9XXU6 4.92880611665e-06 0.000312355936417 1.24112105057e+11 +UniRef50_P76082 2,3 dehydroadipyl CoA hydratase 0.00228813312123 0.0010361989656 -5.05421181588e+11 +UniRef50_UPI000462B96F PREDICTED 8.44316011577e-06 4.81819953464e-06 -1463441069.87 +UniRef50_F8KNY9 0.00321151144903 0.00161223912243 -6.45645863527e+11 +UniRef50_N0CST0 0.000101839745189 0.000117895732041 6481998921.27 +UniRef50_A6M3H8 0.000151804016961 0.000887268018229 2.9691584247e+11 +UniRef50_F3KGL6 8.02630746945e-05 0.00012501574942 18067203963.8 +UniRef50_J7QZC7 Citrate dependent iron transport, membrane bound protein 0.00324403690212 0.000975817036696 -9.15708193858e+11 +UniRef50_W8RUY9 Carbonic anhydrase, family 3 0.000208566720793 0.000640403867119 1.7433795521e+11 +UniRef50_UPI000376C688 MULTISPECIES 0.00030104252435 7.4105265967e-05 -91617356042.5 +UniRef50_G7LY34 ATP dependent DNA helicase RecQ 0.000372145752678 0.00172377955165 5.45671151056e+11 +UniRef50_UPI0003B3BF74 diguanylate cyclase 6.25603067063e-06 6.0645157761e-05 21957558036.0 +UniRef50_UPI00016AC33B malto oligosyltrehalose synthase, partial 1.60060594764e-05 2.25998052077e-05 2661976066.08 +UniRef50_P0ACB9 Protein HemY 0.00250102242456 0.00198237388763 -2.09384778892e+11 +UniRef50_B9KPD3 Small GTP binding protein 0.0026150676038 0.000852480117634 -7.11578197548e+11 +UniRef50_C1KXH5 3 5 exoribonuclease YhaM 0.0254843543049 0.00743461518344 -7.28690117856e+12 +UniRef50_UPI00035C4E67 hypothetical protein, partial 4.17887867711e-05 0.000548632219814 2.04618913588e+11 +UniRef50_Q5LZU3 Phosphate import ATP binding protein PstB 1 6.19608750746e-06 8.65769685155e-05 32450748047.3 +UniRef50_UPI000362695F hypothetical protein 3.10218232137e-06 0.000236375038554 94175114641.1 +UniRef50_Q81ZF5 Methionine import ATP binding protein MetN 2 2.08542584581e-05 0.000168591839309 59643474333.5 +UniRef50_Q3J527 0.0121910723862 0.00276895955352 -3.80382257288e+12 +UniRef50_Q3J525 0.00361244030935 0.000193867795882 -1.38011967429e+12 +UniRef50_Q3J523 0.00105059262312 0.000441870381833 -2.45748638669e+11 +UniRef50_UPI0004098CF0 hypothetical protein 4.66871030311e-05 0.000230291735532 74123443222.9 +UniRef50_UPI0004261724 hypothetical protein 2.96403389293e-05 4.5459373169e-05 6386338243.95 +UniRef50_P37178 Phosphoenolpyruvate protein phosphotransferase PtsP 0.00239966373598 0.00103633685435 -5.50391792016e+11 +UniRef50_K6NB87 NADP oxidoreductase coenzyme F420 dependent 0.000615466286172 0.00104974776197 1.75324761013e+11 +UniRef50_Q00753 Msm operon regulatory protein 0.00275549624179 0.000429336914563 -9.39099065588e+11 +UniRef50_UPI000360AD7B hypothetical protein 4.47930729935e-06 0.000341186920229 1.35932995207e+11 +UniRef50_UPI000345C404 peptide ABC transporter ATP binding protein 4.86775225569e-05 3.61240999147e-05 -5067970768.47 +UniRef50_UPI00046F1741 DNA mismatch repair protein MutL 3.49785532092e-06 5.40716037161e-06 770809878.771 +UniRef50_K2M973 0.000381264435227 3.17625567404e-05 -1.41098197216e+11 +UniRef50_Q8Z389 UDP N acetyl D mannosamine dehydrogenase 0.0024089561752 0.00065462505164 -7.08245002645e+11 +UniRef50_I1PAG3 2.59136595254e-05 0.000279710828579 1.02461031589e+11 +UniRef50_UPI00046359F3 hypothetical protein 2.58868812771e-05 3.86167435997e-05 5139201632.61 +UniRef50_R9SHS2 Xaa Pro aminopeptidase 0.00386270886266 0.000670593214563 -1.2886962588e+12 +UniRef50_Q05026 UDP glucose 4 epimerase 0.000904220494495 0.00712825588158 2.51271946327e+12 +UniRef50_UPI000383C331 PREDICTED 3.02132796513e-05 5.05654325675e-06 -10156083190.4 +UniRef50_F2GA52 Starvation protein B 0.000358372774223 0.0133533360461 5.246226139e+12 +UniRef50_UPI00046CD6A6 hypothetical protein 5.12177947953e-06 3.69509054181e-05 12849808728.7 +UniRef50_UPI0003B37C7C Ssp gyrB intein 6.15983921532e-06 1.08104393249e-05 1877504333.52 +UniRef50_UPI00038053ED hypothetical protein 1.79764749136e-05 2.95857707503e-05 4686815191.36 +UniRef50_A6TLS6 Phosphoribosylglycinamide formyltransferase 0.000740024939322 0.00158927747328 3.42853669459e+11 +UniRef50_UPI000379A6AD 30S ribosomal protein S4 1.25482226493e-05 5.14116048871e-05 15689624316.7 +UniRef50_X0SMG4 Marine sediment metagenome DNA, contig 2.56332440775e-05 1.99653510848e-05 -2288197954.02 +UniRef50_Q6FBI7 0.000132451224162 0.0100308842154 3.996118866e+12 +UniRef50_A5IUD2 ATP dependent Clp protease proteolytic subunit 0.034890681551 0.00443146008775 -1.22967614814e+13 +UniRef50_UPI0003817364 hypothetical protein 2.59817991815e-05 2.42163405843e-05 -712737300.303 +UniRef50_Q2S1J1 Adenylosuccinate synthetase 4.33379782052e-06 1.00683879558e-05 2315124408.95 +UniRef50_Q5LAB4 3 isopropylmalate dehydrogenase 2.94032841193e-05 0.00438276547754 1.75750573925e+12 +UniRef50_UPI0003661FA3 methionyl tRNA synthetase 1.49776098015e-05 4.33400766059e-05 11450275895.5 +UniRef50_R5RTQ1 MIP family channel protein 0.00031855357709 0.000549488731932 93231355902.7 +UniRef50_Q4L8Y1 0.0169737491982 0.00473252760718 -4.94193137297e+12 +UniRef50_UPI0003620285 hypothetical protein 1.72211416555e-05 2.23520030114e-05 2071391692.13 +UniRef50_A4X3N1 8.71054251266e-06 6.93609249395e-05 24485303649.6 +UniRef50_M7AGI7 3.67785066002e-05 0.000448062821029 1.66040524761e+11 +UniRef50_A3UJ86 5.0458596107e-06 9.44328168304e-06 1775293253.04 +UniRef50_G0EV06 Malonate decarboxylase gamma subunit 0.000593300163503 0.00887721914726 3.34431974886e+12 +UniRef50_Q46908 Putative electron transfer flavoprotein subunit YgcR 0.00410816030675 0.000910817538908 -1.29080651118e+12 +UniRef50_J9YRC9 Dihydrofolate reductase 0.00360663075539 0.00133304042597 -9.17876316078e+11 +UniRef50_P19669 Transaldolase 0.00050599703289 0.0347280891969 1.38158785589e+13 +UniRef50_UPI00035C8A55 hypothetical protein, partial 5.34985256172e-06 3.37463840886e-05 11464028242.0 +UniRef50_Q3JRV3 200 kDa antigen p200, putative 4.75917892965e-05 0.000192530779876 58513649098.2 +UniRef50_UPI00016B0021 alkaline phosphatase family protein 0.000159255198506 6.87980406621e-05 -36518664655.7 +UniRef50_UPI00016BFB47 excinuclease ABC subunit C 2.39863277606e-06 3.35155000666e-05 12562261172.1 +UniRef50_P75957 Lipoprotein releasing system ATP binding protein LolD 0.00327849683527 0.0132777029417 4.03680220922e+12 +UniRef50_Q8Y6E5 Adenine deaminase 1.68644069208e-05 0.00121260965577 4.82737030405e+11 +UniRef50_V6QD47 7.55570608499e-05 6.3505902113e-05 -4865200666.43 +UniRef50_R6XHZ3 Iron compound ABC transporter ATP binding protein 0.000782617263819 0.00149295544533 2.86772240706e+11 +UniRef50_UPI0004697408 DNA processing protein 2.32208004216e-05 4.83185187353e-05 10132256866.9 +UniRef50_Q1C7K2 Electron transport complex subunit B 0.00159646010473 0.00134960604522 -99658013064.1 +UniRef50_O86062 NADH pyrophosphatase 0.000152416953778 1.45365298885e-05 -55664019107.1 +UniRef50_X6L5V7 4.78063390865e-05 1.65147512635e-05 -12632797995.1 +UniRef50_UPI00046F4BB9 transcriptional regulator 0.000220981940467 2.2909487724e-05 -79964279794.7 +UniRef50_B2V236 Flagellar hook protein FlgE 0.000631652931167 0.00190074900496 5.12349658549e+11 +UniRef50_G0AHQ2 TonB dependent receptor 4.28961350982e-05 0.00186985511116 7.37565757943e+11 +UniRef50_UPI000472C224 hypothetical protein 1.9869562248e-05 4.84201533734e-05 11526223992.5 +UniRef50_UPI00035FBCBA hypothetical protein 3.68836549714e-05 1.88282219208e-05 -7289199887.61 +UniRef50_V8PQC8 0.000171368740561 0.000179414666201 3248238915.48 +UniRef50_UPI00023781E2 acyl homoserine lactone synthase 8.48793668839e-06 1.3598673887e-05 2063267322.88 +UniRef50_R7QQF1 Stackhouse genomic scaffold, scaffold_590 0.000153734525033 2.65387388015e-05 -51350499769.3 +UniRef50_UPI0003A1834B MULTISPECIES 0.000194194385449 0.00102805543027 3.3663993642e+11 +UniRef50_Q9C641 Elongation factor G 1, mitochondrial 8.7461524609e-06 1.87250108941e-05 4028587603.85 +UniRef50_UPI00047AAA07 beta lactamase 4.14014628745e-05 9.35891470893e-06 -12935969900.7 +UniRef50_Q1CTN3 7 cyano 7 deazaguanine synthase 7.3552316648e-06 0.00152049852899 6.10874517488e+11 +UniRef50_T3PCK3 Transcriptional regulator family protein 1.26054585924e-05 6.1449939537e-05 19719116346.5 +UniRef50_UPI0000E11B6C Hemolysin type calcium binding region 2.62992550307e-05 6.12257821973e-06 -8145572024.27 +UniRef50_P18392 Sensor protein RstB 0.00331947000221 0.000311759312802 -1.21424971408e+12 +UniRef50_UPI0003686798 hypothetical protein 1.18589681096e-05 1.11366429858e-05 -291611516.404 +UniRef50_A7IEB4 0.000127468925487 4.6006267925e-05 -32887474517.0 +UniRef50_F0MK77 HAD hydrolase, IIB family 0.000345261575169 0.00263450906111 9.241973023e+11 +UniRef50_UPI00035D0C83 hypothetical protein, partial 3.87200208382e-06 5.38553686665e-05 20178898454.3 +UniRef50_UPI0003B7726E ABC transporter permease 1.85891441069e-05 8.50843552875e-05 26844932741.6 +UniRef50_UPI0003B5ECB0 putrescine spermidine ABC transporter substrate binding protein 4.63327389952e-05 2.10230446326e-05 -10217834199.1 +UniRef50_D1AJ49 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000144262161343 0.000536876708778 1.58503310722e+11 +UniRef50_A6LUW0 Dihydropyrimidinase 0.000522153143512 0.00179849325122 5.15274163937e+11 +UniRef50_P23849 Trk system potassium uptake protein TrkG 0.00297537204217 0.000424093004108 -1.02998265538e+12 +UniRef50_UPI000413C1F5 hypothetical protein 2.43524730173e-05 0.000136739234032 45371914562.4 +UniRef50_UPI00036EC63D hypothetical protein 1.58246278646e-05 0.000340650364033 1.31136135751e+11 +UniRef50_O27465 Protein L isoaspartate methyltransferase homolog 0.00413475052348 0.000243059016624 -1.57112361774e+12 +UniRef50_G7M4H0 GntR domain protein 0.000535790836533 0.00137438457389 3.38550582473e+11 +UniRef50_UPI0003646C18 hypothetical protein 9.9569923154e-05 0.000129189679279 11957859022.9 +UniRef50_UPI00035E99F6 hypothetical protein, partial 0.000954089252679 0.000194526437422 -3.06644829403e+11 +UniRef50_W0Z0M6 ABC transporter permease 0.000461187096749 0.0136664240062 5.33111618684e+12 +UniRef50_R7PVK0 Bacterial transferase hexapeptide 0.00255833705923 0.000314724730229 -9.05773829437e+11 +UniRef50_F0TB29 Mur ligase middle domain protein 0.00234083951527 0.000737076263321 -6.474589052e+11 +UniRef50_O07051 L allo threonine aldolase 8.21738197097e-06 1.09009903017e-05 1083405614.69 +UniRef50_T1XRH9 Ribulose phosphate 3 epimerase 0.014711479945 0.00236184775907 -4.98569806048e+12 +UniRef50_A0A023S2Y3 0.000618829489919 0.0091773258282 3.45516999632e+12 +UniRef50_B3PM96 Uracil phosphoribosyltransferase 9.35247077329e-06 6.05640621401e-05 20674747871.7 +UniRef50_UPI0003B6FCF3 sulfate permease, partial 0.000159845459402 5.54979110733e-05 -42126385748.8 +UniRef50_Q3KK43 0.000112102810476 6.60403464128e-05 -18595981992.3 +UniRef50_E6U995 Binding protein dependent transport systems inner membrane component 0.0117456894986 0.00768692955467 -1.63857119595e+12 +UniRef50_S9FAF7 0.000181384188751 0.000244542040453 25497599766.1 +UniRef50_J9PA20 2.88428780309e-05 5.44504995258e-05 10338111038.3 +UniRef50_F0L4J7 Terminase large subunit 1.52816886268e-05 7.32641926799e-06 -3211639862.28 +UniRef50_UPI00047624EF DNA recombination protein RecAprecursor 0.00011287043079 0.000188898470941 30693452777.9 +UniRef50_A0LGY7 Holliday junction ATP dependent DNA helicase RuvA 1.40159337328e-05 1.14111709306e-05 -1051574707.28 +UniRef50_Q1GJB3 Protein NrdI 1.57258387319e-05 7.44143467281e-05 23693270867.0 +UniRef50_A6FR36 8.35014631599e-05 0.000871288980447 3.18039487969e+11 +UniRef50_UPI0003683730 choline dehydrogenase, partial 2.42865320735e-05 8.87448009164e-06 -6222034512.24 +UniRef50_A3PNW7 0.00493661758386 0.000283286608633 -1.87860681749e+12 +UniRef50_G8AX62 0.0132619931527 0.00378459148619 -3.82614335357e+12 +UniRef50_G8AX61 0.0001435134661 0.00075603260534 2.47281492966e+11 +UniRef50_UPI000288951C hypothetical protein 0.00022285043728 0.000402435811958 72500819517.9 +UniRef50_Q2FJ20 Transcriptional regulator SarA 0.00467982129243 0.00362371240964 -4.26364115896e+11 +UniRef50_P30952 Malate synthase 1, glyoxysomal 1.07876045969e-05 7.84865810319e-06 -1186488764.44 +UniRef50_U5BVT6 4.21841601109e-05 1.66278651571e-05 -10317389883.9 +UniRef50_UPI00046A51CF hypothetical protein 1.04665757863e-05 3.15489913774e-05 8511229884.46 +UniRef50_W4HL11 0.000184284309224 4.31173411985e-06 -72657137081.3 +UniRef50_UPI00041A2261 hypothetical protein 6.54074356327e-05 0.00164110405488 6.36128061163e+11 +UniRef50_UPI000465CB11 choline dehydrogenase 2.89691893462e-05 1.35853457598e-05 -6210646436.82 +UniRef50_K3Y3R8 4.34133883887e-05 0.00096304558664 3.7126680359e+11 +UniRef50_UPI0003D774B2 PREDICTED 6.1158071885e-06 1.1456963424e-05 2156290315.63 +UniRef50_G7DEN0 0.000126933045868 7.97633307071e-05 -19042992848.0 +UniRef50_UPI000303FFC3 hypothetical protein 0.000205795428692 2.90597859939e-05 -71350347747.4 +UniRef50_T2EBD3 ATP dependent helicase HrpA 0.000433300520741 0.000138548700922 -1.18994926673e+11 +UniRef50_UPI0003751AA9 hypothetical protein 9.8473647344e-06 3.65590816294e-05 10783847900.1 +UniRef50_UPI000174441D ATPase AAA 2 domain protein 5.61940744332e-06 1.53768649842e-05 3939205346.72 +UniRef50_UPI0003B682D7 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.91845796489e-06 9.01760878804e-06 1654877489.54 +UniRef50_UPI0003EFB271 hypothetical protein 0.000612139441381 0.000816543885337 82520582349.6 +UniRef50_Q04G65 Adenylate kinase 2.18027589446e-05 1.7278852478e-05 -1826356555.14 +UniRef50_UPI00047D9C2A 3 hydroxybutyryl CoA dehydrogenase 3.04837157664e-06 6.35690198217e-05 24432928368.4 +UniRef50_E1W4N2 1.85081076005e-05 0.00109047705241 4.32767017558e+11 +UniRef50_P0A0U8 Penicillin binding protein 2 6.76979898706e-05 0.00242281598542 9.50790035351e+11 +UniRef50_B2S7C0 Thromboxane receptor 0.00128857402545 0.000316174464854 -3.92569635297e+11 +UniRef50_D5WJ02 PE PGRS family protein 2.8690382283e-06 4.11278588838e-06 502116192.874 +UniRef50_C3FB78 Transposon Tn1546 resolvase 0.00704417342713 0.00109577299846 -2.40144224814e+12 +UniRef50_P90597 Dihydrolipoyl dehydrogenase 0.00909333356538 0.00128845863784 -3.15092378483e+12 +UniRef50_G7D8J6 3.6351821613e-05 4.00939179421e-05 1510730208.74 +UniRef50_M9VK36 Cobaltochelatase subunit 0.000280888951858 0.00406509453624 1.52773023184e+12 +UniRef50_K2G5P2 0.000157946743163 0.000297142045145 56194851528.6 +UniRef50_UPI0003B33E99 phosphopentomutase 1.00769884913e-05 1.89219212099e-05 3570807878.03 +UniRef50_UPI0003B58728 peptidase 1.29514688596e-05 8.66277331382e-05 29744011998.7 +UniRef50_P65368 0.000506692602481 0.00042903153298 -31352726766.0 +UniRef50_P54981 Phytoene dehydrogenase 4.01864129138e-06 5.85424014261e-06 741053781.572 +UniRef50_Q8RM03 Acetone carboxylase alpha subunit 6.09175882979e-05 0.00387753876337 1.54081680358e+12 +UniRef50_G7M7T5 Metallophosphoesterase 0.000141028389365 0.000216878853269 30621763067.9 +UniRef50_M0DR98 Transcriptional regulator 5.23536345079e-05 4.65598535357e-05 -2339020476.16 +UniRef50_U2PUQ4 5.68266512977e-06 7.87481202392e-06 884996601.836 +UniRef50_F7Y7J0 NAD dependent epimerase dehydratase 0.00673835425204 0.00150403681545 -2.11315818145e+12 +UniRef50_B7I4D0 Transcriptional regulator, DeoR family 0.000386504425449 0.00830031375279 3.19490193881e+12 +UniRef50_R9TYY8 Spore envelope assembly protein SeaA 7.23220937551e-05 0.000244400031881 69469975255.2 +UniRef50_Q8X693 2 methylcitrate dehydratase 0.00340320085295 0.00108713551185 -9.3502399952e+11 +UniRef50_F2ADJ4 0.00138313035997 0.000254949673557 -4.55460387438e+11 +UniRef50_R5QQN1 2.54995435079e-05 3.75624999062e-05 4869963527.11 +UniRef50_D4DML3 2.03329935824e-05 0.00019802893202 71738030921.8 +UniRef50_E4CT22 9.63042046387e-05 0.00136332082892 5.11510159264e+11 +UniRef50_G7RE88 Outer membrane specific lipoprotein transporter subunit LolC 0.00059290993013 0.00243374318948 7.43166976364e+11 +UniRef50_UPI0003B33E14 threonine dehydratase, partial 2.34716605286e-05 1.42558671113e-05 -3720528893.07 +UniRef50_E4WMF0 8.60873045102e-05 0.000102460966035 6610248084.98 +UniRef50_UPI00036DEA69 hypothetical protein 3.42528906782e-06 4.85654044341e-06 577813743.755 +UniRef50_G0A8R2 Amino acid adenylation 0.000177007877711 0.00774729090068 3.05621615419e+12 +UniRef50_UPI00046677C0 dihydrolipoamide dehydrogenase 2.85647164802e-06 7.00147137054e-06 1673387252.85 +UniRef50_UPI0004669176 ABC transporter permease 0.000150565574156 0.00014390675152 -2688248411.1 +UniRef50_UPI0004651997 hypothetical protein, partial 5.94867436361e-05 0.000123760830211 25948237482.0 +UniRef50_P51649 Succinate semialdehyde dehydrogenase, mitochondrial 1.2014348092e-05 5.37934655245e-06 -2678631542.14 +UniRef50_Q4L9G5 Alkaline phosphatase III 0.0222084613425 0.00397633193326 -7.36053437588e+12 +UniRef50_S6AK43 7.70370699852e-06 2.31953396884e-05 6254162220.62 +UniRef50_W0BBW6 Acetyl coenzyme A synthetase 0.000611706170381 0.000298108859029 -1.26603082865e+11 +UniRef50_P24197 0.00748076639058 0.00173759247627 -2.31858978588e+12 +UniRef50_D3QJ12 ABC transporter ecsA 0.011552820468 0.00465031277247 -2.78662705998e+12 +UniRef50_A0JTB2 Homodimeric dihydroxyacetone kinase 0.000157557738449 0.00712616033919 2.81331038429e+12 +UniRef50_UPI000377AAAD hypothetical protein 3.82898087767e-06 1.25381998203e-05 3516018561.27 +UniRef50_T1C4J3 Protein containing DUF28 4.80040828154e-05 7.17163224773e-05 9572922133.41 +UniRef50_UPI00039592E8 PREDICTED 5.05038838937e-05 0.000232783355571 73588459536.7 +UniRef50_A7HM29 Translation initiation factor IF 1 0.000618829489919 0.00081279827118 78307577259.7 +UniRef50_P59351 UPF0229 protein PP_0396 0.00377148109125 0.000361138469877 -1.37679716586e+12 +UniRef50_F9P554 Conserved domain protein 4.5620194744e-05 0.000170842923096 50553952091.4 +UniRef50_Q3IUY8 Response regulator receiver protein 0.0337235622163 0.00551672438586 -1.1387446569e+13 +UniRef50_UPI0002F4F600 translation elongation factor 9.3939874071e-07 1.01147992854e-05 3704221794.72 +UniRef50_D0WHH7 4.8358880979e-05 0.000141733403282 37696440488.0 +UniRef50_UPI0002D2633F 3 isopropylmalate dehydrogenase 1.95900133682e-05 3.27629058024e-05 5318058325.25 +UniRef50_UPI0003F54605 aldehyde dehydrogenase 1.89488844077e-05 5.00370110407e-05 12550658216.0 +UniRef50_B2S584 Ribulose phosphate 3 epimerase 0.00266400867833 0.000256054946702 -9.72120470374e+11 +UniRef50_Q8PUM8 Sodium proline symporter 0.00364758312227 0.00022576016586 -1.38143191799e+12 +UniRef50_Q60BY8 Type 4 fimbrial biogenesis protein PilM 0.00135499020047 0.00742300104528 2.44973044092e+12 +UniRef50_Q8CMK8 Membrane protein insertase YidC 1 0.0306172626198 0.0080452501302 -9.11259843179e+12 +UniRef50_UPI0001695299 ABC transporter like protein 2.40921666254e-05 8.68429531725e-05 25333262567.8 +UniRef50_Q7UKJ8 Bifunctional purine biosynthesis protein PurH 2.64844047851e-06 1.0666131234e-05 3236840146.12 +UniRef50_P0AG01 Lipopolysaccharide biosynthesis protein WzzE 0.00305385263064 0.000253490734069 -1.13054046195e+12 +UniRef50_UPI00026C71F4 ABC transporter ATP binding protein 4.25670285668e-06 3.95585196293e-06 -121457197.662 +UniRef50_P58083 Histidine ammonia lyase 3.26337042028e-06 1.4373723425e-05 4485385847.36 +UniRef50_U7DF00 GntR family transcriptional regulator 0.00174498858837 0.000412069821193 -5.38115663063e+11 +UniRef50_Q8CAY6 Acetyl CoA acetyltransferase, cytosolic 0.0133477838507 0.0207103695432 2.97236619315e+12 +UniRef50_A3PKD3 Flagellar motor switch protein FliG 0.00745663665815 0.00260170437561 -1.95999573918e+12 +UniRef50_F2A6H7 0.000257851065039 8.95114064817e-05 -67960785919.4 +UniRef50_UPI0004117F04 hypothetical protein 8.6012962144e-05 4.33820558637e-05 -17210620005.4 +UniRef50_D8JDE9 Major Facilitator Superfamily protein 0.000120218467792 0.0046780585004 1.84005595215e+12 +UniRef50_V7ZFZ6 0.000225982271813 3.69866404465e-05 -76299855620.1 +UniRef50_Q64737 Trifunctional purine biosynthetic protein adenosine 3 1.54385654923e-06 2.46798581498e-06 373082324.925 +UniRef50_UPI0003787A56 hypothetical protein 4.6770519013e-05 1.72593247022e-05 -11914031286.3 +UniRef50_I6T745 Cell wall protein, WapE 0.00540082228613 0.00172852646243 -1.48255088817e+12 +UniRef50_P23388 Multiphosphoryl transfer protein 3.15628176361e-06 0.000441932789098 1.77139460404e+11 +UniRef50_M7D383 Transposon protein 0.00628971861234 0.002840482113 -1.39249910168e+12 +UniRef50_Q7UTP4 Glycerol kinase 6.97697375901e-05 0.000155400055359 34570010085.5 +UniRef50_P37753 Mannose 1 phosphate guanylyltransferase 1.05861549334e-05 1.52590596126e-05 1886508961.98 +UniRef50_V3L139 1.82486730767e-06 1.0281683104e-05 3414120313.78 +UniRef50_M7EU96 GroEL 4.46980156721e-05 3.53736568794e-05 -3764358067.36 +UniRef50_F9EHV6 Integral membrane transport protein 0.000209428952523 0.000103741231337 -42667429977.0 +UniRef50_Q8A8M0 Glycine dehydrogenase 2.11820220981e-06 0.00302724220445 1.22127968215e+12 +UniRef50_X6L4K9 3.92923234993e-05 6.90149012455e-05 11999369373.2 +UniRef50_Q3K9C8 Ribosomal RNA large subunit methyltransferase M 0.000526943973226 0.000719049117033 77555203950.1 +UniRef50_D8JDM8 Dihydropteroate synthase 0.000133387275209 0.00992356387055 3.95241443052e+12 +UniRef50_Q88FQ7 Enoyl CoA hydratase isomerase family protein 0.0013086448302 0.000875825663483 -1.74734408892e+11 +UniRef50_K2JPR7 1.96068547055e-05 1.42011653263e-05 -2182343137.65 +UniRef50_UPI0002557988 dihydroorotate dehydrogenase 2, partial 0.000117524137511 0.000202499387948 34305551365.0 +UniRef50_A9BLG4 binding domain protein 0.000180615305666 0.0628774108913 2.53114657541e+13 +UniRef50_UPI00031A92CD hypothetical protein 1.02447300678e-05 2.61620079704e-05 6426000416.24 +UniRef50_P11664 0.00366492134521 0.000569232459282 -1.24976759162e+12 +UniRef50_M4WU27 Amidohydrolase 0.000130655935614 0.000114463839216 -6536948015.24 +UniRef50_B4RPU8 Lipoprotein 0.000116149535026 0.002330846218 8.94100228299e+11 +UniRef50_UPI00047BD119 hypothetical protein 6.12368721607e-06 3.13396619546e-05 10179998436.7 +UniRef50_UPI000382255A MULTISPECIES 1.40641698285e-05 0.000306206978412 1.17941636821e+11 +UniRef50_A6U1W4 Segregation and condensation protein A 0.0202317503647 0.00298740575775 -6.96175352971e+12 +UniRef50_A7X311 0.0153648446047 0.00107635315478 -5.76843933783e+12 +UniRef50_UPI0003A8C9CC ArsR family transcriptional regulator 1.1215081546e-05 1.36422987263e-05 979897360.991 +UniRef50_P44975 Lipoprotein signal peptidase 1.20916049747e-05 1.71586144645e-05 2045613910.23 +UniRef50_Q8D2J1 Orotidine 5 phosphate decarboxylase 2.30160379788e-05 1.2330430024e-05 -4313911058.51 +UniRef50_B7UZF1 0.000288206018206 0.00149193509642 4.8596020029e+11 +UniRef50_Q602P0 Non canonical purine NTP pyrophosphatase 0.000824947697749 0.0011914714636 1.47970142026e+11 +UniRef50_UPI00047986C5 methionine aminopeptidase 6.12798423496e-05 2.34851427067e-05 -15258184039.0 +UniRef50_UPI000345A820 hypothetical protein 7.75556263385e-06 5.95181092741e-06 -728196698.412 +UniRef50_P94328 Cyclic pyranopterin monophosphate synthase accessory protein 0.0122205926933 0.00116897896602 -4.46167208026e+12 +UniRef50_Q4A054 0.0137536410681 0.00419861891142 -3.85747969796e+12 +UniRef50_UPI00016C38B9 S adenosylmethionine synthetase 3.94979311068e-05 0.000214204176797 70531055271.8 +UniRef50_A1B0J8 Extracellular solute binding protein, family 5 0.00635951168668 0.0027240595395 -1.46767664383e+12 +UniRef50_UPI00036C4EF7 30S ribosomal protein S2 7.60295381e-06 1.49603012688e-05 2970251453.92 +UniRef50_P94427 Probable 4 aminobutyrate aminotransferase 0.000488267542428 0.00145329175297 3.89592115975e+11 +UniRef50_G0VNS1 PTS family mannitol porter 0.000458007796146 0.00168080938869 4.93660008371e+11 +UniRef50_M7A0H8 3.93391623346e-05 5.28075610996e-05 5437357857.27 +UniRef50_F9P6H2 TIGR01906 like family protein 8.66905156637e-05 8.64446586345e-05 -99255499.6931 +UniRef50_UPI00047CB6EE serine threonine protein phosphatase 5.41039071829e-06 1.25923573661e-05 2899448068.36 +UniRef50_F5X0H0 Haloacid dehalogenase like hydrolase 0.00649099431235 0.00267884446345 -1.53901167434e+12 +UniRef50_P77634 0.00317410621531 0.00379417421202 2.50329059362e+11 +UniRef50_K7S5J0 Transcriptional regulator, DeoR family 0.000865908321316 0.00319454859035 9.40100652237e+11 +UniRef50_C9RW76 YhgE Pip C terminal domain protein 1.90641780282e-06 3.19710204659e-06 521065067.687 +UniRef50_E8SIF5 Biotin carboxylase 0.0182747972674 0.00446490393811 -5.57522340349e+12 +UniRef50_UPI000255CC5F cation 0.000179013989706 0.00088573417531 2.8531161136e+11 +UniRef50_A0A059MIV5 Aldehyde dehydrogenase 0.000110808020209 0.0055748727915 2.20590999978e+12 +UniRef50_P0C0I9 UTP glucose 1 phosphate uridylyltransferase 1 0.00183361457227 0.00650551852491 1.88610495639e+12 +UniRef50_R4ZZZ3 Transcriptional regulator pfoR 8.48815786649e-05 0.000433262936178 1.40645829148e+11 +UniRef50_UPI0004755DAC hypothetical protein 6.83077195087e-05 0.00149572216293 5.76264727154e+11 +UniRef50_P0ADJ1 0.00297160447267 0.0009353922789 -8.22043849758e+11 +UniRef50_B7I3B2 2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component 0.000152622367462 0.00942516105833 3.74343765635e+12 +UniRef50_I4X0N6 Lysophospholipase 8.86303866825e-06 2.47853340724e-05 6428026043.21 +UniRef50_H6LRG1 0.011931248862 0.000988863834058 -4.41757511393e+12 +UniRef50_UPI00036A88A6 hypothetical protein 3.21468966936e-05 1.4648778581e-05 -7064205008.11 +UniRef50_A5UKK0 Collagenase, peptidase family U32 0.00198421124059 0.000886955923322 -4.42975436419e+11 +UniRef50_UPI0001FFE9A7 binding protein dependent transport systems inner membrane component 0.00022167264273 3.05591852278e-05 -77154848019.4 +UniRef50_UPI000360AEA9 hypothetical protein 4.05601629201e-05 1.52914929706e-05 -10201272140.1 +UniRef50_UPI00036C7365 hypothetical protein 0.000247839742973 0.000407369078285 64403950310.5 +UniRef50_C6UY37 6.56731169532e-05 2.73604426853e-05 -15467296751.3 +UniRef50_D9RMN6 Phage protein 0.00757295099353 0.00120785398312 -2.56966777163e+12 +UniRef50_Q8FMD0 Peptide deformylase 2 1.11834005135e-05 5.74261421105e-05 18668762245.0 +UniRef50_Q931R7 Conserved virulence factor C 0.00818590250348 0.00117306374711 -2.83116906316e+12 +UniRef50_UPI0003FC08D1 serine dehydratase 9.31748550018e-06 0.000194665981511 74827462321.5 +UniRef50_B8DLQ2 ABC transporter related 0.000161318798655 0.00227133528618 8.5183954883e+11 +UniRef50_F0TB22 H4MPT linked C1 transfer pathway protein 0.00612974389826 0.000398352432596 -2.31383306677e+12 +UniRef50_UPI0004770BE9 hypothetical protein 0.000105116539098 1.67921480033e-05 -35657640547.1 +UniRef50_UPI0003B3248F methionyl tRNA synthetase 8.00179509853e-06 1.67372911062e-05 3526626934.89 +UniRef50_UPI0003959E9D CDP 6 deoxy delta 3,4 glucoseen reductase 1.19939047684e-05 1.46360036764e-05 1066647751.36 +UniRef50_Q5HLS8 0.0015338619942 0.0141198898236 5.08113388266e+12 +UniRef50_Q49XT6 0.0100344504598 0.00160368542209 -3.40360330284e+12 +UniRef50_S1E292 PTS system, mannose fructose sorbose family, IID component 0.00215449233377 0.000914029360892 -5.00790124344e+11 +UniRef50_A0A030WUA6 3 hydroxyisobutyrate dehydrogenase 0.00292566960494 0.000566154320492 -9.52565274841e+11 +UniRef50_Q399M3 Macrolide export ATP binding permease protein MacB 2.28288406612e-06 6.35418085373e-06 1643632473.59 +UniRef50_UPI0003C3A6B9 PREDICTED 7.13046547312e-06 6.88613858649e-05 24921530085.7 +UniRef50_Q3IW34 0.0202136797663 0.00266052098718 -7.0864256006e+12 +UniRef50_X7EB18 WGR domain containing protein 4.99699233263e-05 3.15722446265e-05 -7427368656.01 +UniRef50_Q3IW32 0.00565728960708 0.0163244779591 4.30647483882e+12 +UniRef50_UPI00047D4CFB trehalose phosphatase 3.02267771686e-05 2.33227303313e-05 -2787248430.4 +UniRef50_UPI0003642130 hypothetical protein 3.57683520896e-05 1.12531063733e-05 -9897105531.56 +UniRef50_UPI0003692D13 hypothetical protein 2.90143361647e-05 1.15315225582e-05 -7058026391.19 +UniRef50_W4LSH7 2.5014264115e-05 7.63173765068e-05 20711696032.6 +UniRef50_E4NIV5 4.80253972258e-05 1.78573782578e-05 -12179199460.6 +UniRef50_UPI00035CB116 hypothetical protein 1.16159131294e-05 0.000419661180619 1.64732881764e+11 +UniRef50_A0A011PWL1 Elongation factor G 5.79320070536e-06 2.90774461161e-05 9400135602.12 +UniRef50_V4X579 2.16588274327e-05 0.000357626091479 1.35634107277e+11 +UniRef50_UPI00045EC544 hypothetical protein 6.24658227937e-06 2.97256453341e-05 9478785875.69 +UniRef50_UPI0003463109 AraC family transcriptional regulator 9.90341988625e-06 3.64841911498e-05 10730983541.9 +UniRef50_I3TU69 Lincomycin resistance protein 0.000114853749147 0.000460873039925 1.39692233821e+11 +UniRef50_E6Q6J2 Thioesterase superfamily 1.70514488765e-05 0.00116597676805 4.63835250248e+11 +UniRef50_Q4ZXL0 Alginate lyase 0.00020665566622 0.000548159853892 1.37869431291e+11 +UniRef50_S0AG26 0.000144187089322 0.00270534883781 1.03397242685e+12 +UniRef50_V4QY51 Transcriptional regulator 7.81674024414e-06 1.51687093567e-05 2968080149.55 +UniRef50_L7EAU8 2.14717616161e-05 9.59208722882e-06 -4795970330.15 +UniRef50_Q9X806 Ubiquinol cytochrome c reductase cytochrome b subunit 0.00023418630138 0.00665526963512 2.59227013738e+12 +UniRef50_Q5NLZ4 Anhydro N acetylmuramic acid kinase 4.84956762504e-06 2.49588508401e-05 8118364402.59 +UniRef50_H0TL85 5.06400982369e-05 7.78075326054e-05 10967826636.5 +UniRef50_U5MPM1 Methyl accepting chemotaxis protein 0.000348985323919 0.00097624178303 2.53231129845e+11 +UniRef50_Q4L667 Phosphatidylglycerol lysyltransferase 0.0129613755783 0.00403590980428 -3.60332006075e+12 +UniRef50_UPI0001FFE90B alcohol dehydrogenase 5.41216380774e-06 0.000151557469514 59000653318.1 +UniRef50_P77439 Multiphosphoryl transfer protein 1 0.00380937836703 0.000590373526274 -1.29955175585e+12 +UniRef50_A9AF70 Urease subunit gamma 0.00300426887958 0.00365970109937 2.64606030187e+11 +UniRef50_A5UKH6 0.00787919223545 0.00029000003783 -3.06385002004e+12 +UniRef50_UPI00036A7FB4 hypothetical protein 1.73216097816e-05 2.14702300087e-05 1674848894.98 +UniRef50_K2AEY0 0.000112053527253 7.88618524907e-06 -42053634244.0 +UniRef50_UPI0003DF5EC3 PREDICTED 5.95232048304e-06 1.3069608062e-05 2873336334.57 +UniRef50_F2TZS1 8.39066176864e-05 3.8484569641e-05 -18337438187.1 +UniRef50_Q1CW26 0.000143827290066 0.000192286525626 19563588057.3 +UniRef50_I1B3F9 0.000506185379064 0.000322163678398 -74291818759.1 +UniRef50_A8AVP5 ABC transporter, permease protein 0.005865556063 0.00323857698173 -1.06054369177e+12 +UniRef50_A8LL26 tRNA pseudouridine synthase B 0.000875338637374 0.000208950498955 -2.69029068982e+11 +UniRef50_Q5HKS5 0.00131681158902 0.0012478170642 -27853936327.9 +UniRef50_Q48FV2 Membrane protein, putative 0.00186822329162 0.000405458803526 -5.90535973981e+11 +UniRef50_I3UWL7 LysR family transcriptional regulator 0.00182515382211 0.000819290939821 -4.06079188906e+11 +UniRef50_B0VV20 p aminobenzoate synthetase 0.000253562107799 0.00727990780416 2.83662198058e+12 +UniRef50_C7CBT9 RepC like protein 0.000127408359687 4.17797043536e-05 -34569338939.9 +UniRef50_P0AG19 N5 carboxyaminoimidazole ribonucleotide mutase 0.00123839534974 0.0152300344254 5.64859639158e+12 +UniRef50_UPI0003B429F7 transposase 9.21350989232e-05 9.55114349783e-05 1363068297.75 +UniRef50_UPI0003B6F95F tRNA delta isopentenylpyrophosphate transferase 2.42338823814e-05 1.18214813797e-05 -5011038601.68 +UniRef50_P65234 Ribose phosphate pyrophosphokinase 0.0031140583286 0.00652343819446 1.37640848964e+12 +UniRef50_D6CUH0 7.04385345711e-06 1.08897769728e-05 1552646518.07 +UniRef50_A4WSC8 OmpA MotB domain protein 0.00110298361822 0.000162559654243 -3.79660694557e+11 +UniRef50_G9ADV3 1.36230754687e-05 7.53426073761e-06 -2458129225.1 +UniRef50_G9ADV1 6.3409627532e-05 5.24159310503e-05 -4438290177.49 +UniRef50_Q51952 OrfD 0.0803621808219 0.00129590016625 -3.1920027753e+13 +UniRef50_S4HRH5 8.58402116946e-05 7.602784505e-05 -3961372825.7 +UniRef50_O06994 Oligo 1,6 glucosidase 1 0.0186128280921 0.0120117225731 -2.66494730269e+12 +UniRef50_M5J6F3 1.99669152767e-05 5.04478664556e-05 12305534034.3 +UniRef50_A9H974 7.94324385985e-05 7.09255150584e-05 -3434349424.83 +UniRef50_A6LZS6 Metallophosphoesterase 0.000249574818357 0.00178454099476 6.19684681566e+11 +UniRef50_Q1NCH4 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 3.65952934849e-05 2.18751897445e-05 -5942686515.99 +UniRef50_UPI0004676B57 GntR family transcriptional regulator 1.41688470632e-05 2.28531436356e-05 3505957094.58 +UniRef50_L5RMF7 3.55910175748e-05 0.000680251716581 2.60257435065e+11 +UniRef50_P55253 Glucose 1 phosphate thymidylyltransferase 0.0433322218893 0.090252667211 1.8942359555e+13 +UniRef50_F3SW08 Conserved domain protein 0.000724802656383 0.00133225581291 2.45236293578e+11 +UniRef50_Q6GJ34 Putative N acetylmannosaminyltransferase 0.0088499282254 0.00198945301636 -2.76965802939e+12 +UniRef50_Q67SJ2 Valine tRNA ligase 6.72273002959e-06 3.00581620275e-06 -1500563723.56 +UniRef50_A0A038FZN0 3.11239007439e-05 0.000570859183848 2.17897757086e+11 +UniRef50_A6LQR2 0.000226463054397 0.000707069528623 1.9402673135e+11 +UniRef50_Q9RV19 0.0012969221676 0.030597960872 1.18291888891e+13 +UniRef50_J0F0U1 0.00192766179157 0.00107387892798 -3.44682619125e+11 +UniRef50_B9J9V0 ABC transporter 0.00548141280069 0.00148845210052 -1.6120072338e+12 +UniRef50_UPI000379B10E hypothetical protein 1.82252779673e-05 0.000153731357225 54705467043.0 +UniRef50_Q8VYV7 3 dehydroquinate synthase, chloroplastic 5.46293002982e-06 4.70395537596e-05 16784993202.3 +UniRef50_U3QUQ4 Chemotaxis protein CheA 0.000644404625597 0.000173951997405 -1.89927499104e+11 +UniRef50_I4TNI4 0.00191810352224 0.000239122838212 -6.77825105553e+11 +UniRef50_A6LQ19 Drug resistance transporter, EmrB QacA subfamily 0.000773222285657 0.000849485418439 30788362558.0 +UniRef50_Q5HQY3 0.0212349903896 0.00471183545339 -6.67060040966e+12 +UniRef50_P16219 Short chain specific acyl CoA dehydrogenase, mitochondrial 1.16599677488e-05 4.50472841041e-05 13478869321.1 +UniRef50_B9KX63 0.00251657325901 0.00389475654678 5.56389505484e+11 +UniRef50_B9KX60 0.00210896850078 0.00043652670916 -6.75185274446e+11 +UniRef50_A8Z124 0.014902786921 0.00421378114946 -4.31528279881e+12 +UniRef50_B9KX64 0.00663373984434 0.00115538823963 -2.21167776976e+12 +UniRef50_UPI00037397A9 hypothetical protein 8.81097825056e-06 1.79189300496e-05 3676991908.41 +UniRef50_UPI0004787AB2 transcriptional regulator 9.86840847602e-06 1.07017164835e-05 336416668.459 +UniRef50_C1CYZ3 0.000245120771981 0.0752036690738 3.02616857943e+13 +UniRef50_Q0SPR1 Cysteine desulfurase family protein 0.000102950724233 0.0017531927813 6.66222969186e+11 +UniRef50_Q16A99 tRNA 2 thiocytidine biosynthesis protein TtcA 0.00990342737699 0.00165055914397 -3.33178417975e+12 +UniRef50_F7ZKB0 1.26222010548e-05 1.50871173378e-05 995116951.371 +UniRef50_W5X4N7 4.24013550963e-05 0.000100102394049 23294617496.6 +UniRef50_Q7VTF7 Nicotinate phosphoribosyltransferase 0.000534859418552 0.00799130141458 3.01025713463e+12 +UniRef50_P56074 Delta aminolevulinic acid dehydratase 0.000183086630851 0.00348835491908 1.33437736816e+12 +UniRef50_H1S081 9.75586325411e-05 1.11973097843e-05 -34865125769.5 +UniRef50_A7ZTW7 HTH type transcriptional regulator HdfR 0.00229853168731 0.000910583016323 -5.60331910524e+11 +UniRef50_UPI000248D3FD Fosmidomycin resistance protein 5.4399942601e-05 2.34977302149e-05 -12475602353.1 +UniRef50_UPI00047C911F hyalin 2.98190065396e-06 5.85276420287e-06 1159002844.15 +UniRef50_M9RZD9 ABC transporter permease 0.00087313797132 0.000490715691874 -1.54388567061e+11 +UniRef50_UPI000237DA3D hypothetical protein 6.22347876658e-06 0.000164733338894 63992375668.0 +UniRef50_P25666 Protein HtrL 0.00164795945908 0.000253128604458 -5.63110332509e+11 +UniRef50_P42506 0.0116393218358 0.00235409634312 -3.74855947392e+12 +UniRef50_E6C5P3 Glycosyl hydrolase family 20, catalytic domain protein 0.000111034566433 0.00430662919825 1.6938130386e+12 +UniRef50_V1BIM5 0.00169023577097 0.000507143020717 -4.77629061457e+11 +UniRef50_UPI00032A718B PREDICTED 6.31740236157e-06 1.40419101583e-05 3118478587.91 +UniRef50_UPI000464A259 hypothetical protein 0.000158919734548 6.41944385336e-05 -38241764411.1 +UniRef50_A7ZTA0 Glyoxylate hydroxypyruvate reductase B 0.00287908213818 0.000191971856025 -1.08481939546e+12 +UniRef50_A3PIF6 0.000974229981897 0.000481360100081 -1.98977619483e+11 +UniRef50_UPI0003B59BB8 isopentenyl diphosphate delta isomerase 5.30712569158e-05 9.18284209925e-06 -17718291632.9 +UniRef50_B3E0I7 50S ribosomal protein L2 0.00307779278476 0.00021271311299 -1.15666782197e+12 +UniRef50_UPI0003F9D1F7 anthranilate synthase component I 4.00621627966e-06 5.21914561507e-06 489674457.022 +UniRef50_A6M0E6 Signal transduction histidine kinase regulating citrate malate metabolism 0.000425056161391 0.00212187108621 6.8502500741e+11 +UniRef50_A5UMV1 Glycosyltransferase, GT2 family 0.002073329031 0.000367054108473 -6.88844124573e+11 +UniRef50_Q3HKG1 Mechanosensitive ion channel protein 0.00215463175044 0.000733136232408 -5.7387518434e+11 +UniRef50_B8JAD8 Nucleoside diphosphate kinase 0.01623942303 4.97065662658e-05 -6.53598720656e+12 +UniRef50_V5VIG2 Tellurite resistance protein 0.00020008091282 0.00586161167725 2.2856294444e+12 +UniRef50_O26800 Ketoisovalerate oxidoreductase subunit VorB 0.00312976959527 0.000723436511222 -9.71466195059e+11 +UniRef50_Q2G718 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.0035720013e-05 8.29626809761e-06 -702238083.718 +UniRef50_A6LPK7 Sporulation stage II, protein E 9.39799142401e-05 0.000936331511773 3.40067676741e+11 +UniRef50_UPI00037D5D4D hypothetical protein 0.000193458151422 5.719846723e-05 -55009706602.7 +UniRef50_UPI0003A28CDF competence protein 1.82552004738e-05 4.0218672547e-05 8866923198.06 +UniRef50_UPI0003959061 sensor histidine kinase 6.07290774423e-06 8.58761235014e-06 1015217108.3 +UniRef50_U5VXD2 4.65387010281e-05 3.67866106293e-05 -3937038565.6 +UniRef50_B9E115 Phosphopentomutase 5.84714586153e-06 6.79744815103e-06 383648695.792 +UniRef50_C0QXM0 Pyrrolidone carboxylate peptidase 0.00953215749912 0.00192519671089 -3.07102341811e+12 +UniRef50_A3L8X2 0.00107644150169 0.000238800570243 -3.38165923035e+11 +UniRef50_P39343 HTH type transcriptional regulator IdnR 0.00351151043142 0.000181733357036 -1.34427186589e+12 +UniRef50_A6LUQ9 0.000912714625129 0.000564082410423 -1.40747103275e+11 +UniRef50_A3L8X4 0.000219130625543 0.000302791912172 33775088051.6 +UniRef50_B9E9D0 0.00738174946216 0.000324523851863 -2.84908858077e+12 +UniRef50_B6ISP7 Phosphopantetheine adenylyltransferase 0.0075020790703 0.00133225581291 -2.49083336125e+12 +UniRef50_A6LUQ6 0.00184695087293 0.00188479104794 15276543002.7 +UniRef50_E8PCN1 FilB 0.000205901448467 0.0137702511351 5.47609442177e+12 +UniRef50_UPI000348A8A8 hypothetical protein 3.66627232824e-05 4.29288134592e-05 2529697497.95 +UniRef50_M5SVU5 Beta Ig H3 fasciclin 6.84296448596e-05 1.23422603285e-05 -22643165404.8 +UniRef50_L4FI59 Sensor protein torS 0.000181768029127 7.87861374395e-05 -41575053404.4 +UniRef50_UPI0002E655C1 hypothetical protein 4.11056816367e-05 1.21018836167e-05 -11709189177.3 +UniRef50_Q1C665 Penicillin insensitive murein endopeptidase 0.0031826594036 0.00131541633836 -7.53828939086e+11 +UniRef50_Q8K928 Oxygen independent coproporphyrinogen III oxidase like protein BUsg_532 7.47242541377e-06 5.39038867678e-05 18744950726.7 +UniRef50_A9M4C4 UPF0276 protein NMCC_2101 0.000986446572407 0.00184624887924 3.47112742229e+11 +UniRef50_UPI00036BDC09 hypothetical protein 1.60127931734e-05 2.54383906716e-05 3805229375.11 +UniRef50_D6Z4R6 Phosphoenolpyruvate phosphomutase 0.000505075352485 0.000485253571518 -8002296216.98 +UniRef50_Q1JFX3 0.00592348501943 0.00112425599012 -1.9375076523e+12 +UniRef50_UPI0004637872 hypothetical protein, partial 1.32088708705e-05 8.78691872519e-05 30141285908.3 +UniRef50_G8V105 Penicillinase repressor family protein 0.026710534346 0.00318860756714 -9.49609048714e+12 +UniRef50_UPI00037E6C33 hypothetical protein 0.0014976884435 0.000216136244069 -5.17378349324e+11 +UniRef50_UPI000411C3F9 hypothetical protein 1.41758072518e-06 2.00765848507e-06 238221632.736 +UniRef50_Q9JY91 L asparaginase I 0.000247802618498 0.00273094464981 1.00247490962e+12 +UniRef50_UPI0004739998 hypothetical protein 5.12211420014e-06 1.53292263124e-05 4120736415.09 +UniRef50_B1Y2J2 1.55233360863e-05 7.29637349953e-05 23189393912.5 +UniRef50_P0ACY2 Putative NADH nitroreductase YdjA 0.00120703393552 0.000971798201212 -94967552607.2 +UniRef50_UPI00037F4C0B hypothetical protein 3.06046178509e-05 0.000573065508672 2.18998118368e+11 +UniRef50_Q2NEQ0 Histidinol phosphate aminotransferase 0.00384302736763 0.000362576826262 -1.40510059348e+12 +UniRef50_Q9RRA6 Iron ABC transporter, periplasmic substrate binding protein, putative 0.000267277883954 0.0504986942049 2.02790391775e+13 +UniRef50_I3BQN9 6.18886778216e-06 0.000198904042376 77801480864.7 +UniRef50_UPI00039CCA94 3 hydroxybutyryl CoA dehydratase 5.37954624491e-05 2.23840893073e-05 -12681156798.2 +UniRef50_Q7NIR9 Phosphoribosylformylglycinamidine synthase 2 2.93018704473e-05 6.95259759575e-06 -9022675706.61 +UniRef50_UPI0001FFE446 choline dehydrogenase 3.96035318496e-05 1.0923185124e-05 -11578607920.6 +UniRef50_UPI00036ECF80 30S ribosomal protein S17 3.68128293514e-05 0.000320098707994 1.14365985517e+11 +UniRef50_A5IUE2 DUTPase 0.0190849074093 0.00135308466745 -7.1585544348e+12 +UniRef50_A6LV78 NMT1 THI5 like protein 0.000184740288181 0.000913421176036 2.94177416347e+11 +UniRef50_UPI0004636D79 hypothetical protein 4.2034312514e-05 2.88838686382e-06 -15803690559.5 +UniRef50_L6YPP4 Autoinducer 2 aldolase 0.000712348600423 0.000823713950446 44959558410.8 +UniRef50_A0A034W5P4 9.77963011321e-06 3.11520318775e-06 -2690510931.52 +UniRef50_W8TZV3 2.00409303853e-05 0.000143204238244 49722538766.4 +UniRef50_UPI0003607ABA heavy metal transporter CzcA 1.44982787346e-06 6.64896939681e-06 2098957233.62 +UniRef50_UPI0003FD356F hypothetical protein 4.20892958171e-05 0.000105859572722 25744843335.8 +UniRef50_B9TAE6 Glycine betaine L proline transport system permease protein proW, putative 0.000912140868539 0.000723824306453 -76025707018.2 +UniRef50_T1E861 8.30410184796e-05 9.40941171797e-05 4462271582.0 +UniRef50_Q8CS24 0.0254173995408 0.00427685599661 -8.53469685244e+12 +UniRef50_Q8FU18 Glutamyl Q tRNA synthetase 6.2466078163e-06 0.000863558533816 3.46107344927e+11 +UniRef50_Q0VT33 0.00148551359392 0.000305141858582 -4.76530554347e+11 +UniRef50_I6UMD2 Acetyltransferase 0.000197636643381 0.00155076714728 5.46275389203e+11 +UniRef50_UPI00036CF3D9 formate dehydrogenase subunit alpha 0.00147062386559 0.000310771287926 -4.68246718593e+11 +UniRef50_Q87DM8 Acetylornithine aminotransferase 2.50158322521e-05 4.91354403134e-05 9737381755.22 +UniRef50_UPI00017455B0 PAS PAC sensor hybrid histidine kinase 2.09053003317e-06 3.21310866679e-05 12127741352.5 +UniRef50_H9UU02 Ribonucleoside diphosphage reductase 1, beta subunit, B2 0.000672408161445 5.43060465467e-05 -2.4953540875e+11 +UniRef50_P63884 N acetylmuramoyl L alanine amidase AmiC 0.00250295220253 0.00072849487112 -7.1637019973e+11 +UniRef50_Q3J1R2 Alpha keto acid binding periplasmic protein TakP 0.0109176667589 0.00125798373576 -3.89973257408e+12 +UniRef50_UPI0004785A72 dihydroxy acid dehydratase 3.84069397647e-05 3.22457080058e-05 -2487364867.88 +UniRef50_UPI0003D742A7 PREDICTED 0.000137093695711 0.000559842095153 1.70668716561e+11 +UniRef50_B4RR58 Pilin glycosyl transferase A 0.00070659716582 0.00348412216106 1.12132092464e+12 +UniRef50_P9WG25 Transketolase 0.000133854593954 0.00534232299884 2.10272261015e+12 +UniRef50_F2D6B6 Predicted protein 0.00124756666298 0.000126758816316 -4.52483881556e+11 +UniRef50_C7U7G3 Predicted protein 4.98192571096e-06 1.7804639756e-05 5176687012.36 +UniRef50_B9KS15 CheW protein 0.0166947594762 0.000402704597989 -6.57730248032e+12 +UniRef50_UPI00036E0B46 hypothetical protein 1.26163480025e-05 2.7006836481e-05 5809616789.92 +UniRef50_Q87VF3 Lipid A export ATP binding permease protein MsbA 0.000314977212943 7.31768993062e-06 -1.24205924847e+11 +UniRef50_S4X152 0.00533571922682 0.00076705637713 -1.84442525622e+12 +UniRef50_S5YPY4 Branched chain amino acid transporter AzlC 3.75480660672e-05 3.74237190632e-05 -50200411.4241 +UniRef50_UPI00047E9A5D hypothetical protein 4.26052047327e-05 0.000102351786717 24120428320.1 +UniRef50_A5WDF2 Major facilitator superfamily MFS_1 8.84732786372e-05 0.00655633725068 2.61115605513e+12 +UniRef50_UPI00047CAA5D cobyrinic acid a c diamide adenosyltransferase 1.85082170638e-05 0.000160425043412 57293564312.0 +UniRef50_H5HII5 Protein traU 0.000296961518224 5.4275353248e-05 -97975382894.9 +UniRef50_R1BAS7 7.90054052557e-06 2.15804317844e-05 5522739972.32 +UniRef50_Q8DTW5 0.0043384912806 0.00142505874909 -1.17618846481e+12 +UniRef50_E4N7W5 6.20462688603e-05 0.000174932016995 45573361786.0 +UniRef50_Q8DTW1 0.00703521644149 0.00172811565431 -2.14254171323e+12 +UniRef50_Q8DTW2 0.00430973285659 0.00417333399317 -55065894964.9 +UniRef50_UPI00040D5ECC lysophospholipase 1.27992446865e-06 1.10697934957e-05 3952290261.42 +UniRef50_E4BFH6 3.33357178633e-05 0.000134550394124 40861606850.3 +UniRef50_R6S4R3 NADH 0.000375723627864 0.00200011121956 6.55785204247e+11 +UniRef50_Z5SAF9 1.66957544063e-05 2.75940587472e-05 4399779199.65 +UniRef50_Q3IVP4 0.00131866465944 0.000299813913899 -4.11322548679e+11 +UniRef50_Q3IVP3 9.54042738135e-05 0.00108913158329 4.01179909241e+11 +UniRef50_R1DLE7 1.3648680015e-05 4.91223743389e-06 -3527009078.2 +UniRef50_P44093 0.00384054017032 0.00154608898905 -9.26298097961e+11 +UniRef50_UPI0003457BAD hypothetical protein 2.89657668431e-06 1.53421510666e-06 -550002086.954 +UniRef50_Q73LF4 1 deoxy D xylulose 5 phosphate synthase 1.96213096368e-06 2.82392323747e-05 10608388295.9 +UniRef50_Q5HNB3 O succinylbenzoic acid synthetase, putative 0.00846707961907 0.00268614893446 -2.33383265737e+12 +UniRef50_UPI0003C1B3E9 7.21839965648e-05 0.00010870798479 14745182246.2 +UniRef50_Q8PYJ4 Methionine tRNA ligase 3.55761589789e-06 3.14218525922e-06 -167714446.738 +UniRef50_A8PM40 Transcriptional repressor NrdR 4.45241452331e-05 0.000142221993944 39441820412.0 +UniRef50_A6LZR8 0.000454804230061 0.00186399702382 5.68908423581e+11 +UniRef50_P20372 Protocatechuate 3,4 dioxygenase beta chain 0.000160404811127 0.00320678635244 1.22986161153e+12 +UniRef50_K0S5L3 1.5388682191e-06 0.000143508189513 57314757165.9 +UniRef50_UPI000248D061 iron hydroxamate transporter permease subunit, partial 1.11848160293e-05 6.42916853266e-05 21439894829.9 +UniRef50_K2HGX5 2.57671894845e-05 8.66819103699e-06 -6903075501.56 +UniRef50_A3PL72 0.0079256813433 0.000798709178294 -2.8772461208e+12 +UniRef50_Q8CPK5 Cell division protein FtsA 0.0214895024156 0.00412589127887 -7.00990289136e+12 +UniRef50_A0A011NNA2 0.000155787077998 0.000304872081262 60187445296.4 +UniRef50_C4K9K2 6.13665671584e-05 5.55764024261e-05 -2337560555.74 +UniRef50_A4WYS1 6.07286895414e-05 7.42635727607e-05 5464198447.33 +UniRef50_C6S8M1 0.000100306285793 0.00244061111133 9.4480977684e+11 +UniRef50_P54457 Ribosomal silencing factor RsfS 0.00150892885602 0.00159882903855 36293806886.7 +UniRef50_UPI0003B3EB5D pyruvate phosphate dikinase 3.36529323403e-06 1.13646148899e-05 3229424315.19 +UniRef50_V4JG08 1.67186635101e-05 1.71693054904e-05 181929697.446 +UniRef50_UPI00021917AB DNA processing protein DprA 4.7265739473e-05 6.51598927318e-05 7224089256.53 +UniRef50_UPI0002E59390 hypothetical protein 0.000159651351157 5.66465648891e-05 -41584296227.3 +UniRef50_UPI000255B733 peroxiredoxin, ohr subfamily protein 2.11517888678e-05 0.000244477454495 90159311727.7 +UniRef50_Q49V41 Putative TrmH family tRNA rRNA methyltransferase 0.0117412369192 0.0020276976335 -3.92147500817e+12 +UniRef50_D0K0C5 0.0001554777905 0.00577364418242 2.26812271507e+12 +UniRef50_V6KIY8 5.37901934053e-05 0.000275498146057 89506221148.1 +UniRef50_UPI0003C1B40C PREDICTED 5.52857669296e-05 0.000118814909326 25647494375.7 +UniRef50_P37624 0.00219563449468 0.00072817149442 -5.92432821001e+11 +UniRef50_F8JKY1 7.21791203027e-05 8.65269631344e-05 5792400218.99 +UniRef50_C6SPT2 Predicted periplasmic or secreted lipoprotein 0.000686338161548 0.00114316143946 1.84425163145e+11 +UniRef50_Q034G9 6 phospho alpha glucosidase 2 0.000688478735805 0.00291371430768 8.98354907075e+11 +UniRef50_G4LBR0 MFS family transporter 0.000192104828933 0.000303678489364 45043655878.8 +UniRef50_Q81L15 Translation initiation factor IF 3 0.0376830528669 0.0105168985609 -1.09673098595e+13 +UniRef50_D8UHW0 5.09360354029e-06 6.341641821e-05 23545635983.6 +UniRef50_D5G934 Whole genome shotgun sequence assembly, scaffold_16, strain Mel28 1.14703670609e-05 3.31466799726e-05 8750993520.72 +UniRef50_W5XAK2 Citrate synthase 1.30046330728e-05 1.33029115607e-05 120418685.854 +UniRef50_A8YTF9 Thymidylate kinase 0.0141705942381 0.00328817902601 -4.39336456338e+12 +UniRef50_UPI00034584B5 hypothetical protein 8.53576953858e-06 7.58682890665e-06 -383098977.921 +UniRef50_Q8XA47 Sensor histidine kinase QseE 0.00184437615146 0.00093786920799 -3.6596797717e+11 +UniRef50_S6AZJ1 0.00567876953349 0.000948372930447 -1.90971915714e+12 +UniRef50_UPI0003B76F12 glycerol kinase 7.33276056184e-06 5.02568536615e-06 -931394567.496 +UniRef50_N9ILP1 7.58003993635e-05 0.000371388028466 1.19332353137e+11 +UniRef50_Q6D178 23S rRNA C(5)) methyltransferase RlmD 0.00107746059401 0.000530248027869 -2.20916428004e+11 +UniRef50_B2UW91 Dihydroorotase 0.000438351382792 0.00138615120498 3.82638419029e+11 +UniRef50_B9MRD1 4 hydroxy tetrahydrodipicolinate synthase 7.25765759157e-06 0.00201076385792 8.08840038859e+11 +UniRef50_UPI00016A52E2 oxidoreductase, FAD binding protein, partial 5.87553929272e-05 2.53124701742e-05 -13501318306.2 +UniRef50_K8D6Q9 Cell division protein FtsK 0.000819515787499 0.000137791942374 -2.75220281969e+11 +UniRef50_W1JGR6 1.82984188069e-05 5.17296432598e-05 13496595558.9 +UniRef50_UPI00023785BE ABC transporter like protein 0.000273685323972 4.84809481384e-05 -90917770092.6 +UniRef50_UPI00040687FC hypothetical protein 1.56891048985e-05 4.14746100136e-06 -4659503273.16 +UniRef50_D3E3V9 Transporter MIP family 0.00217910284444 0.000749274055236 -5.77239428172e+11 +UniRef50_A5UK88 Adhesin like protein 0.00333720249728 0.000784041984177 -1.03074222994e+12 +UniRef50_A6M085 GCN5 related N acetyltransferase 0.00026321151084 0.000294825329643 12762886596.0 +UniRef50_UPI00036FB667 hypothetical protein 2.43874978245e-05 1.44167649547e-05 -4025307214.19 +UniRef50_Q6FCW7 Phosphate import ATP binding protein PstB 0.000267046584839 0.00555978468587 2.13674332059e+12 +UniRef50_O34364 Probable oligo 1,6 glucosidase 2 0.0133995903357 0.000947011059783 -5.02725906401e+12 +UniRef50_Q3JSX2 7.45267145118e-05 0.000173602243418 39998006812.9 +UniRef50_Q3JSX0 6.76498187892e-05 1.09977232258e-05 -22871146178.3 +UniRef50_UPI00020D97AB excinuclease ABC subunit B 0.000324017679384 0.00157794236416 5.06224782632e+11 +UniRef50_A1B092 0.0117466833514 0.00235156937156 -3.79292280467e+12 +UniRef50_F0QGI7 0.000276784193798 0.00492815662395 1.87781612881e+12 +UniRef50_UPI0003B3B830 2 oxoglutarate dehydrogenase E1, partial 3.65918519225e-06 8.22382597662e-06 1842801499.09 +UniRef50_Q81V80 Putative pyridoxal phosphate dependent acyltransferase 0.0111030010846 0.00199959273995 -3.67515766012e+12 +UniRef50_Q7VK98 Methionyl tRNA formyltransferase 7.05126010592e-06 8.95076429479e-06 766853150.584 +UniRef50_UPI00034B192C ATP binding protein 0.000159392186204 3.38241088112e-05 -50693373737.1 +UniRef50_Q9K0G6 Non canonical purine NTP pyrophosphatase 5.86249927365e-06 0.00424137357815 1.70992779811e+12 +UniRef50_M9VK41 KHG KDPG aldolase 0.000430592382719 0.00266872869636 9.03563094838e+11 +UniRef50_Q3D1H7 0.00518009571257 0.00112802489495 -1.63587071357e+12 +UniRef50_B1AJ73 Urease subunit alpha 3.44480342495e-06 1.90109252824e-05 6284234411.63 +UniRef50_Q5P7J7 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.41446079896e-05 0.00270908324371 1.08797979786e+12 +UniRef50_U1VIQ4 0.000132905497161 0.00411896902597 1.60922276108e+12 +UniRef50_W5XFT3 General secretion pathway protein G 1.07393457727e-06 2.6248664966e-05 10163347586.6 +UniRef50_Q9M5K2 Dihydrolipoyl dehydrogenase 2, mitochondrial 2.64856068779e-05 6.9621563667e-05 17414515093.5 +UniRef50_UPI00035E4A51 hypothetical protein 8.85167641172e-06 0.000221962711537 86035540046.4 +UniRef50_Q4FNA6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.20724210519e-06 8.85000584375e-06 1066916151.61 +UniRef50_UPI00036C5D7B hypothetical protein 7.15576298168e-05 6.58416094096e-05 -2307627581.84 +UniRef50_V9VU16 Regulator 0.000113325071635 8.88071999779e-05 -9898165656.09 +UniRef50_Q2NSZ1 Macrolide export ATP binding permease protein MacB 2.29055833739e-06 1.43007728218e-05 4848670969.26 +UniRef50_M9R8E0 Putative IS30 family transposase 3.37337355377e-05 2.52341314705e-05 -3431394463.8 +UniRef50_F0RNU6 7.23835947954e-05 0.044316864467 1.78620398689e+13 +UniRef50_A0A011PXZ1 Copper exporting P type ATPase A 2.66833760644e-06 1.71722585747e-05 5855410878.03 +UniRef50_B2K308 UPF0502 protein YPTS_2082 0.00138741700079 0.0028730956732 5.99786711379e+11 +UniRef50_UPI0003B66071 sodium 1.00742321339e-05 1.50839291223e-05 2022476150.11 +UniRef50_K0LM02 Formate nitrite transporter family protein 0.00863839617475 0.00353700830558 -2.05949288385e+12 +UniRef50_O53182 2 oxoglutarate oxidoreductase subunit KorA 7.54468998348e-05 0.00440050512335 1.74607907927e+12 +UniRef50_R7PY79 0.00260576228779 0.00101148432434 -6.43629577835e+11 +UniRef50_B2A170 Carbamoyl phosphate synthase large chain 1.37816354611e-05 7.28277578477e-05 23837644184.9 +UniRef50_Q3KGL4 Uracil DNA glycosylase 0.00997559146374 0.00371042944759 -2.5293227881e+12 +UniRef50_A6LYS3 PAS PAC sensor signal transduction histidine kinase 0.000541919103036 0.00175806457771 4.90972851907e+11 +UniRef50_G7MBX9 Xylose isomerase domain containing protein TIM barrel 0.000417264995876 0.00171974148114 5.25825740283e+11 +UniRef50_UPI000370772D hypothetical protein 4.53617555602e-05 4.50418281397e-05 -129158625.607 +UniRef50_Q6GBK7 Putative antiporter subunit mnhA2 0.0176504979211 0.00513787995375 -5.05149742049e+12 +UniRef50_UPI000376D794 hypothetical protein, partial 8.88563483988e-05 0.000115544746056 10774433637.7 +UniRef50_UPI0003B415C3 phospholipase C 5.30711547794e-06 1.27077311059e-05 2987719344.77 +UniRef50_UPI0003A4E33B peptidase 4.72763461196e-05 1.06241992505e-05 -14796921463.5 +UniRef50_A7HF60 Tetratricopeptide TPR_4 2.84678893988e-05 2.44699472956e-05 -1614018287.33 +UniRef50_Q9WXB2 Phytoene disaturase 4.88382939001e-05 2.86706554049e-05 -8141923145.27 +UniRef50_Q3SL19 Serine type D ala D ala carboxypeptidase 0.00148069775263 0.000389440270477 -4.40554036779e+11 +UniRef50_UPI0001FFE6FF oxidoreductase 6.03073649307e-05 0.000775401365077 2.88692223049e+11 +UniRef50_Q5HQE8 Probable glycolipid permease LtaA 0.0209051928977 0.00411150844843 -6.77981649386e+12 +UniRef50_Q31WQ9 0.000155344028336 0.00024781821415 37332963599.0 +UniRef50_UPI00036A674F hypothetical protein 1.82795745138e-05 0.000151553016888 53804124135.4 +UniRef50_L0IJZ9 Beta glucosidase like glycosyl hydrolase 0.000318770198599 0.000928554330425 2.46177336911e+11 +UniRef50_L1KBS6 0.000530061789549 0.000156593037902 -1.50773918017e+11 +UniRef50_Q9HUG9 Bifunctional protein HldE 0.00244615157147 0.00128061230575 -4.70542504346e+11 +UniRef50_Q5HR43 3.5839385221e-05 5.59712970245e-05 8127499841.41 +UniRef50_W5XGK2 DNA mismatch repair protein MutL 3.1446012524e-06 7.19366444502e-06 1634656498.45 +UniRef50_UPI000262634A dihydropyrimidine dehydrogenase subunit A 1.86357325897e-05 8.50014561023e-05 26792656981.0 +UniRef50_A6M2S3 Threonyl alanyl tRNA synthetase, SAD 0.000107037614984 0.000586236635633 1.93458525069e+11 +UniRef50_B1YKT1 Ribosomal protein L11 methyltransferase 1.37411599978e-05 0.000377804316637 1.46976763892e+11 +UniRef50_W0AKF5 Exo poly alpha D galacturonosidase 6.82355935326e-06 8.08476620106e-06 509164681.205 +UniRef50_UPI000463C46F Surfeit locus 1 family protein 8.06419725828e-06 1.27807974673e-05 1904149383.57 +UniRef50_A3M3W1 Phage integrase 0.000563838795038 0.00604813948981 2.21407949042e+12 +UniRef50_U4WEY2 0.000421204475535 9.83242721802e-05 -1.3035070028e+11 +UniRef50_Q08YP9 0.00019121352797 8.67934655405e-05 -42155660580.8 +UniRef50_U5MNN3 Glycerate dehydrogenase HprA 0.00023741491936 0.000949524094922 2.87487212737e+11 +UniRef50_UPI0002BB9F78 hypothetical protein, partial 0.000547497138335 5.04381327342e-05 -2.00668820161e+11 +UniRef50_A8M9N8 GTPase like protein 0.00295219034839 0.00107986969598 -7.55878823336e+11 +UniRef50_P52041 3 hydroxybutyryl CoA dehydrogenase 0.0116037782299 0.00218463839218 -3.80262233833e+12 +UniRef50_V9BHA3 Elongation factor Tu 0.0257222062628 0.00529540092294 -8.24655198081e+12 +UniRef50_Q2FWQ0 Anti repressor 0.0179935335476 0.00265045759129 -6.19418804427e+12 +UniRef50_J2YEX7 Transport protein, AzlD family 0.000123251566383 0.000905654197447 3.1586554332e+11 +UniRef50_D3VGH0 Putative mating pair stabilization protein 1.72362134026e-05 1.17518895197e-05 -2214088851.75 +UniRef50_X5JZY6 ABC transporter, ATP binding protein 0.00443075803232 0.000577541454886 -1.55559081659e+12 +UniRef50_Q8E5X0 Hydroxyethylthiazole kinase 0.000185953689091 0.000230716175927 18071165233.2 +UniRef50_B8FP12 Lipoprotein 0.000304642453724 5.57649842618e-05 -1.00474888492e+11 +UniRef50_Q2FXR3 Delta aminolevulinic acid dehydratase 0.0127099871412 0.00247900742769 -4.13037205858e+12 +UniRef50_A0A023RZK1 Transglutaminase 0.000147647714023 0.00578241363184 2.27482414738e+12 +UniRef50_UPI0002E002F0 ABC transporter ATP binding protein 0.000105517309721 1.77853413704e-05 -35418472215.5 +UniRef50_Q1CRS3 tRNA specific 2 thiouridylase MnmA 0.000174762031871 0.00305486172816 1.16273159019e+12 +UniRef50_Q6W1T0 Transporter 0.00971432354625 0.00482338947226 -1.97453010418e+12 +UniRef50_V6QBN8 0.000298015254361 0.000656259344878 1.44627535491e+11 +UniRef50_J7QD35 0.0038914941591 0.00060182009628 -1.328081788e+12 +UniRef50_A6LQ54 0.000155557412985 0.000579175208544 1.71019702442e+11 +UniRef50_Q4FQF7 ATP phosphoribosyltransferase 0.000723050410977 0.00752993909274 2.74802449074e+12 +UniRef50_A6LQ58 0.00098634711073 0.000711699092776 -1.10878775158e+11 +UniRef50_B4R825 Succinoglycan biosynthesis protein 0.00294045115857 0.000519786285858 -9.77252114011e+11 +UniRef50_P31828 Probable zinc protease PqqL 0.00210058154213 0.00134629406208 -3.04515111844e+11 +UniRef50_A7I252 Glutamate 1 semialdehyde 2,1 aminomutase 8.55298941131e-06 0.00923302870549 3.72403404363e+12 +UniRef50_G1ZXK5 Sodium proline symporter 0.00214690238992 0.000616164736886 -6.17977574792e+11 +UniRef50_F3SDM6 0.000136996778916 6.70662793754e-05 -28231800808.3 +UniRef50_UPI00035C8B7E hypothetical protein 0.00767910636879 0.00173715708938 -2.39883784002e+12 +UniRef50_H4A9R7 PRD domain protein 0.0113189691781 0.00206101291883 -3.73755054977e+12 +UniRef50_A6LRK0 UspA domain protein 0.000302796247737 0.00043858916614 54821267525.8 +UniRef50_A5UNV2 Putative structural protein 0.000652713525392 0.00188500024592 4.97489270937e+11 +UniRef50_Q83LD5 0.000327599402696 3.48826529242e-05 -1.18173343921e+11 +UniRef50_A1TXZ0 Gluconolactonase 0.000981559362898 0.000693498507066 -1.16293702404e+11 +UniRef50_UPI0003169EC4 hypothetical protein 3.71517277146e-05 1.73964607788e-05 -7975443686.37 +UniRef50_B9KTB3 Extracellular solute binding protein, family 5 0.0145750872264 0.00425975214059 -4.16442735753e+12 +UniRef50_A6LZH5 Cation diffusion facilitator family transporter 0.000372589200682 0.000153013836893 -88645268854.3 +UniRef50_A4WR60 von Willebrand factor, type A 0.000228204618775 1.3609103593e-05 -86634842862.1 +UniRef50_Q9KQM0 5 deoxynucleotidase VC_1978 0.000625920117967 0.000310859689677 -1.27193761127e+11 +UniRef50_UPI0003B76BAF malto oligosyltrehalose synthase, partial 7.38438612701e-06 5.39370716595e-06 -803661524.958 +UniRef50_F8G1E1 0.00386590431929 0.000307621567909 -1.43652241177e+12 +UniRef50_UPI0003B6C0E2 ATPase 6.79478754861e-06 9.62605522957e-06 1143017506.36 +UniRef50_R7F196 1.43532593383e-05 0.000533879257946 2.09739020939e+11 +UniRef50_UPI000379E4F4 hypothetical protein 4.70351643382e-05 8.21869271254e-05 14191197997.8 +UniRef50_R5BXF1 Aspartokinase 0.000128396594851 0.00253421191727 9.71257168335e+11 +UniRef50_UPI0003B32155 hypothetical protein 0.00146807741626 0.000101961622738 -5.5151770997e+11 +UniRef50_UPI000472BA56 hypothetical protein, partial 1.35702152413e-05 1.8823965657e-05 2121003513.59 +UniRef50_E6AKY5 4Fe 4S binding domain protein 0.00818627382019 0.00446522960158 -1.5022312134e+12 +UniRef50_UPI000428EAFE hypothetical protein 1.82568715062e-06 3.07766812149e-06 505440081.474 +UniRef50_Q75ZQ4 Urease subunit gamma 5.92988908745e-05 0.000210317232829 60967957850.3 +UniRef50_D2PVS1 2.02078485743e-06 4.17862385369e-06 871146082.452 +UniRef50_Q5HFU7 30S ribosomal protein S1 0.0108051662775 0.00375655427462 -2.84561116176e+12 +UniRef50_UPI00040934E7 hypothetical protein 5.88218387433e-05 0.000137005114253 31563547739.9 +UniRef50_Q2FG95 Probable cell wall amidase LytH 0.0142902044621 0.00395639628541 -4.17188517102e+12 +UniRef50_T7NH17 L fucose proton symporter 0.000463119201756 0.000213225057899 -1.00885332421e+11 +UniRef50_Q5HN77 Amino acid ABC transporter, permease amino acid binding protein, putative 0.0104192918203 0.00198565752047 -3.40476165917e+12 +UniRef50_UPI0003665A08 hypothetical protein 0.000125288701011 2.60167215425e-05 -40077316315.6 +UniRef50_B4RL88 0.000291494972086 0.00471382573257 1.78534919611e+12 +UniRef50_N0DYS1 1.38668152009e-05 0.000314724730229 1.21460032239e+11 +UniRef50_UPI0003B45643 glycosyl transferase family 1 2.58331429078e-05 6.40670073849e-06 -7842693093.0 +UniRef50_UPI0001912596 SsrA binding protein, partial 3.90018812346e-05 8.60126090073e-05 18978807688.3 +UniRef50_A7FPN7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.26345550728e-05 2.25000674244e-05 3982828399.79 +UniRef50_U5MTV6 0.000659279987501 0.0015170537449 3.4629379193e+11 +UniRef50_V2EJX2 Proline specific permease 0.00442795259935 0.00202768905555 -9.69015847178e+11 +UniRef50_P62177 RNA polymerase sigma 35 factor 0.000552518132057 0.00244026119266 7.62105038777e+11 +UniRef50_P42601 Inner membrane protein alx 0.00226687723775 0.00707235761733 1.94003139911e+12 +UniRef50_UPI00036D10A8 hypothetical protein, partial 9.69739736537e-05 1.0433986558e-05 -34937254755.6 +UniRef50_UPI00035D2E6B hypothetical protein 2.57083396302e-05 2.72707914439e-05 630780970.631 +UniRef50_P39207 Nucleoside diphosphate kinase 1 1.42948927151e-05 3.20745813366e-05 7177878477.81 +UniRef50_UPI000376C41C hypothetical protein 2.75837218675e-05 0.00144532215068 5.72358401318e+11 +UniRef50_P80357 Arginine N succinyltransferase subunit alpha 0.000622847168474 0.000304974222238 -1.28329209135e+11 +UniRef50_F0YH85 7.93046054748e-05 0.00016432609633 34324219189.3 +UniRef50_I2JHH7 1.09847811455e-05 1.31754993536e-05 884419823.745 +UniRef50_O25770 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000117719123342 0.001937223325 7.34556174038e+11 +UniRef50_R5T8M0 Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC 0.000416337090519 0.00167975164149 5.10055958067e+11 +UniRef50_Q38YR5 1.17011382921e-05 0.00419456472715 1.68867336033e+12 +UniRef50_A0A014QHI0 6.22537408221e-05 0.000837015325202 3.12780759008e+11 +UniRef50_UPI0001FFF018 AMP dependent synthetase 1.21794665448e-05 1.16549174777e-05 -211766895.329 +UniRef50_A7AI53 4.19247545554e-05 0.000331960225017 1.17090878561e+11 +UniRef50_UPI0002B44D7F PREDICTED 5.71349797054e-05 0.000159519373128 41333836022.7 +UniRef50_A0QI67 4.65531469677e-05 0.000318109111801 1.0963047537e+11 +UniRef50_UPI0003638900 hypothetical protein 1.64600496672e-05 0.000177172605586 64881630989.3 +UniRef50_UPI00046489F4 ABC transporter ATPase, partial 1.48277809582e-05 4.3218372345e-05 11461630134.6 +UniRef50_B6ZUP8 Formate C acetyltransferase 3 0.00318017986611 0.000410950587957 -1.11797184185e+12 +UniRef50_UPI00039CFDC1 hypothetical protein 9.69724154481e-05 0.00185596358941 7.10126322177e+11 +UniRef50_B1ZKW6 40 residue YVTN family beta propeller repeat protein 0.00977375898238 0.00362167320567 -2.48367252264e+12 +UniRef50_C5Z6N8 8.3521372088e-05 0.000870891786541 3.17871098436e+11 +UniRef50_A6UVH0 FO synthase subunit 1 0.0023753599348 0.000431077420709 -7.84930709968e+11 +UniRef50_Q2NGM6 Probable translation initiation factor IF 2 0.00238231420926 0.000341959782782 -8.23716119934e+11 +UniRef50_A0A031HYF4 Cell envelope like function transcriptional attenuator common domain protein 9.11133801595e-07 7.47006842818e-05 29789747028.5 +UniRef50_A1R863 tRNA specific 2 thiouridylase MnmA 0.000113359155811 0.00850548406276 3.38800380789e+12 +UniRef50_F0Y2L6 Expressed protein 7.29656622112e-05 0.000317283450164 98634089113.0 +UniRef50_U5RSG0 NAD dependent epimerase dehydratase 0.0131653208591 0.00174118974982 -4.61206191868e+12 +UniRef50_N0ATL3 Amidase 0.000279447710146 0.0011569135415 3.54243723834e+11 +UniRef50_W0YMI4 GTP binding protein LepA 2.91323089881e-05 6.41684838809e-05 14144533746.4 +UniRef50_Q5HKG7 ABC transporter, ATP binding protein 0.0193444259598 0.00335772504816 -6.45402733689e+12 +UniRef50_A7FBL3 0.000295533451142 0.0030936133788 1.1296192031e+12 +UniRef50_P0AD62 Pyruvate kinase I 0.00258954854462 0.00179106862636 -3.22356141452e+11 +UniRef50_P17597 Acetolactate synthase, chloroplastic 9.59318751084e-06 1.31303984151e-05 1428015448.51 +UniRef50_P80576 Phospho 2 dehydro 3 deoxyheptonate aldolase 4.14616224957e-05 5.30160930255e-06 -14598241059.4 +UniRef50_R7PTS8 0.00106121578966 0.000194714311118 -3.49817280056e+11 +UniRef50_A0A032AQX4 6.65821004776e-05 6.83853287389e-05 727985377.186 +UniRef50_Q2NBB9 1.39054376913e-05 1.91448931837e-05 2115232477.63 +UniRef50_Q829X3 UvrABC system protein A 0.0130642091732 0.00961050662784 -1.39430209926e+12 +UniRef50_UPI0003739172 hypothetical protein 7.53842800846e-06 2.64499872071e-05 7634828519.4 +UniRef50_E3A6L5 0.00295061345597 0.000591606312127 -9.52360132241e+11 +UniRef50_J1NS24 Arabinose transport protein 4.41157495326e-05 0.000111170494778 27070823509.8 +UniRef50_A4WT93 0.00964838742565 0.00142389607949 -3.3203280823e+12 +UniRef50_A9UZQ9 Predicted protein 6.57719188826e-06 3.18588793808e-06 -1369111020.67 +UniRef50_C6SP54 0.00535080301527 0.000304450211538 -2.03727455258e+12 +UniRef50_UPI000255E535 malonyl CoA acyl carrier protein transacylase, partial 0.000110342367853 0.000645203842502 2.15930140804e+11 +UniRef50_K4H363 Ribose ABC transporter, periplasmic ribose binding protein RbsB 0.0123648614173 0.000704457579105 -4.70744811873e+12 +UniRef50_Q2P7B9 3 oxoacyl [acyl carrier protein] synthase 3 0.0122273940776 0.00619693545492 -2.43457014802e+12 +UniRef50_Q8XIK5 8.38857752959e-05 0.00154558515942 5.90105978438e+11 +UniRef50_UPI00034B5D93 DNA polymerase III subunit gamma tau 3.05016993121e-06 1.1320062071e-05 3338656939.82 +UniRef50_R4R715 Putrescine importer PuuP 0.000200700612221 0.000507533739408 1.23872298711e+11 +UniRef50_Q6NGH3 Ribonuclease 3 1.3295878069e-05 0.00425827910564 1.71375182077e+12 +UniRef50_Q5HLI2 Amino acid ABC transporter, amino acid binding protein 0.00910198897578 0.00457118580355 -1.82914083984e+12 +UniRef50_UPI0003B3520D mannose 1 phosphate guanylyltransferase 2.31980193309e-05 1.03990702894e-05 -5167092788.82 +UniRef50_M9VI11 Phosphoenolpyruvate sugar phosphotransferase 0.000170266531623 0.0043580213698 1.6906480177e+12 +UniRef50_UPI00036C530C hypothetical protein, partial 5.85139132754e-05 0.000104865347259 18712642695.2 +UniRef50_A4VS44 0.000471198166788 0.000586638970279 46604868987.3 +UniRef50_UPI000477575F spermidine putrescine ABC transporter substrate binding protein 2.66212024233e-05 0.000199872719077 69943763308.4 +UniRef50_C3ZSQ3 0.000188117314178 9.50323128369e-05 -37579557322.8 +UniRef50_A3PJG3 Outer membrane protein assembly factor BamA 0.0114694523744 0.00329031658524 -3.30201748737e+12 +UniRef50_B9E6Y5 0.0165050428413 0.00505682682174 -4.62178529252e+12 +UniRef50_UPI00047C4591 hypothetical protein 3.05535024127e-05 0.000275438989379 98863276171.0 +UniRef50_W5XCX4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.04057649474e-06 2.86443886497e-05 10336573161.1 +UniRef50_A4WW20 0.000197374617713 0.00325506892955 1.23442871582e+12 +UniRef50_A4WW27 0.00870691410275 0.0024919303547 -2.50906520551e+12 +UniRef50_U6AME7 Glycerol 3 phosphate transporter 0.00151726313252 0.000132231360532 -5.59154322603e+11 +UniRef50_X5EIQ4 Dihydroxyacetone kinase, L subunit 0.0253712409572 0.00438931217804 -8.47066212538e+12 +UniRef50_UPI0002E4364A hypothetical protein 4.02465272254e-05 4.30505468148e-05 1132017117.43 +UniRef50_K7S070 ABC transporter, ATP binding protein 0.000284895085921 0.00684168899645 2.64705816259e+12 +UniRef50_Q99UB6 Prephenate dehydrogenase 0.00893935849316 0.00313743566727 -2.34230744241e+12 +UniRef50_A5IRF7 PEBP family protein 0.0291659008016 0.00316333356749 -1.04975554798e+13 +UniRef50_K9WCH6 3.22777795266e-05 0.000403358637159 1.498098959e+11 +UniRef50_UPI000465069F mannose 1 phosphate guanyltransferase 2.29838899432e-05 7.28961213377e-06 -6335972542.1 +UniRef50_B4S5Y8 Riboflavin biosynthesis protein RibBA 1.01375240772e-05 0.00256901597057 1.03305062982e+12 +UniRef50_UPI000328EECC PREDICTED 7.74955934733e-05 0.00202502883564 7.86243068784e+11 +UniRef50_Q2C9Y7 0.000378644076208 4.55312947057e-05 -1.34481717646e+11 +UniRef50_UPI000376B5FB hypothetical protein 0.00014496826201 2.01930245832e-05 -50373294513.6 +UniRef50_UPI0002375AFF plasmid pRiA4b ORF 3 family protein 8.3241215135e-06 1.14900387414e-05 1278119635.08 +UniRef50_UPI00046AEB45 hypothetical protein 1.81074386381e-05 2.66561100045e-05 3451203534.61 +UniRef50_UPI0003FEA9DB xanthine dehydrogenase 4.97599425625e-05 3.3411869064e-05 -6599917884.77 +UniRef50_A5UL20 ATPase involved in DNA repair, SbcC 0.00326217426329 0.00117084239866 -8.44296337279e+11 +UniRef50_O59829 Probable nitrilase C965.09 0.000303619452667 0.000239122838212 -26038074717.9 +UniRef50_E8PEL6 0.000212468661645 0.00175338516407 6.22086901203e+11 +UniRef50_E8UAZ5 Phosphoesterase RecJ domain protein 0.000133702239266 0.00519090931062 2.04165655361e+12 +UniRef50_Q162C3 Sodium hydrogen exchanger family, putative 0.00533545263552 0.0005099378771 -1.9481195237e+12 +UniRef50_H1UZM0 Peroxiredoxin HYR1 4.58693353607e-05 7.0336116509e-05 9877539790.74 +UniRef50_C0BFU0 4.78674464958e-05 8.83129780216e-06 -15759372255.0 +UniRef50_UPI000466DC48 glycine dehydrogenase 1.31412964468e-05 2.94381697068e-06 -4116847601.65 +UniRef50_UPI00047B371C hypothetical protein, partial 3.11101608465e-05 7.04792873234e-05 15893799472.2 +UniRef50_P0AFB9 Nitrogen regulation protein NR 0.00292893310244 0.000919552899458 -8.11211445811e+11 +UniRef50_B4RFJ6 Type II secretion system protein N 0.00010902520255 6.76398474671e-05 -16707775702.4 +UniRef50_C6AZB2 Inner membrane translocator 0.0119503801337 0.00353145082022 -3.39882507573e+12 +UniRef50_R7PXT2 0.00330084033994 0.000499668865723 -1.13086729838e+12 +UniRef50_UPI000444A373 hypothetical protein STEHIDRAFT_62958 3.15604784196e-05 0.000402661527878 1.49818047588e+11 +UniRef50_A6LUB1 Diguanylate cyclase 0.000546840661818 0.0017885589242 5.01296900119e+11 +UniRef50_UPI0003B75BCC polar amino acid ABC transporter permease 3.74940370186e-06 3.92921408307e-06 72591657.416 +UniRef50_UPI00029D9246 3.94607091047e-05 3.96742438685e-05 86206604.5123 +UniRef50_H8MF76 8.83605987298e-06 0.00092605040078 3.7029068491e+11 +UniRef50_A0A023RZ47 DNA binding protein 0.000408829590809 0.00475204682507 1.75341009474e+12 +UniRef50_Q01YD9 Bifunctional protein GlmU 4.13402401358e-06 5.03870273751e-06 365229902.507 +UniRef50_F2AC19 0.000234139820378 0.00010618081182 -51658621988.5 +UniRef50_P59680 ATP dependent 6 phosphofructokinase 1.82988613489e-06 2.89796318721e-06 431195812.801 +UniRef50_P0AD05 0.00701358541667 0.0034938809681 -1.42094787752e+12 +UniRef50_A1B1Z9 0.0113733105752 0.00431011682069 -2.85149799383e+12 +UniRef50_Q2NG02 Enolase 0.00249353723587 0.000824841131346 -6.73673094599e+11 +UniRef50_F9NSM8 0.00055526038532 0.00371584727636 1.27596771268e+12 +UniRef50_Q8DW15 Glutathione biosynthesis bifunctional protein GshAB 0.00550186920965 0.00180864537669 -1.49099978232e+12 +UniRef50_A8ISU7 Predicted protein 0.000530577215517 0.000173387568509 -1.44201843707e+11 +UniRef50_A6M262 ABC transporter related 0.000479285527454 0.000851717962019 1.50355544094e+11 +UniRef50_F5YI36 Glutamine ABC transporter, permease substrate binding protein 0.00672618412148 0.00159114918499 -2.07307661783e+12 +UniRef50_UPI00047AA542 argininosuccinate lyase 5.22799159108e-06 1.0504914289e-05 2130358448.27 +UniRef50_M4RCI7 Fatty acid desaturase 0.000345388135772 0.00742927624491 2.85985255874e+12 +UniRef50_Q5GWS2 0.000449538230973 0.000247286737867 -81651409671.8 +UniRef50_T8CXA8 Phosphatase yihX 6.96446982968e-05 0.000178133079522 43798090802.7 +UniRef50_O31711 0.00321012258277 0.000333063953224 -1.16150387423e+12 +UniRef50_O31716 0.00136807277639 0.00513923235862 1.52246340068e+12 +UniRef50_Q9ZPX5 Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial 0.000558323683303 0.00298833832919 9.81026732179e+11 +UniRef50_U5MKU3 ABC type transport system, involved in lipoprotein release, permease component 0.000295530503988 0.00140414775693 4.47562389275e+11 +UniRef50_A6LQ14 AMP dependent synthetase and ligase 0.000706144164955 0.000124869642797 -2.34667657636e+11 +UniRef50_B9DP24 4 hydroxy tetrahydrodipicolinate reductase 0.017488820534 0.00510239160521 -5.00055335713e+12 +UniRef50_F0N4Z5 Exodeoxyribonuclease V, gamma subunit 0.00019319368823 0.00343487096322 1.30870489577e+12 +UniRef50_P14756 Pseudolysin 0.000291692961966 0.000128678302919 -65811018272.1 +UniRef50_UPI0004720360 30S ribosomal protein S3 0.000313330757321 0.00104893389463 2.96972013397e+11 +UniRef50_Q7UJ69 Dihydroxy acid dehydratase 2.21129427489e-06 8.38967181605e-06 2494286830.58 +UniRef50_H8L8P6 PTS system, mannose fructose sorbose specific IID component 0.00105003925893 0.0032070000259 8.70791530511e+11 +UniRef50_A3PNL6 PpiC type peptidyl prolyl cis trans isomerase 0.0100107750419 0.00194690787508 -3.25548213002e+12 +UniRef50_K6Q1W9 Biotin dependent carboxylase like protein 4.70544947275e-06 6.72026763217e-05 25230897406.2 +UniRef50_UPI0004761EBF cold shock protein 2.1831300464e-05 3.40359300573e-05 4927158734.46 +UniRef50_Q2FFJ3 Sodium proline symporter 0.0236722969053 0.00733144905057 -6.5970008037e+12 +UniRef50_UPI0002F6340C hypothetical protein 4.20828014311e-06 1.42779565232e-05 4065251923.47 +UniRef50_UPI0004779366 serine protease 1.81061900691e-05 2.33133975202e-05 2102213547.63 +UniRef50_B7LN63 0.00469635344377 0.000781675575147 -1.58040349406e+12 +UniRef50_UPI0003B3C2F9 alpha amylase 2.00381127959e-05 3.47823662417e-05 5952436048.41 +UniRef50_Q3AZ12 0.000170956013843 2.06794009552e-05 -60668512724.3 +UniRef50_Q896N2 Phosphoserine phosphatase 0.000249440080738 0.00109351991179 3.4076538582e+11 +UniRef50_G8LZQ1 Molybdate ABC transporter, permease protein 0.000600122018428 0.000290475447734 -1.2500812038e+11 +UniRef50_D3SBH6 TRAP transporter solute receptor, TAXI family 7.3038614021e-05 7.79727014196e-05 1991951630.88 +UniRef50_UPI0004432C18 PREDICTED 7.66028050831e-06 5.18223566459e-05 17828772066.4 +UniRef50_Q92DG5 D alanine D alanine ligase 6.3270452185e-06 0.00047889195437 1.90780252848e+11 +UniRef50_A7ZTE9 Mannitol 1 phosphate 5 dehydrogenase 0.00411918731568 0.000660392514901 -1.39635790526e+12 +UniRef50_A6LTV5 Ion transport 2 domain protein 0.000419610819248 0.00134328873201 3.72900108185e+11 +UniRef50_UPI0004677ABB hypothetical protein 1.9718922576e-05 2.77839576715e-05 3255953637.16 +UniRef50_UPI000471685A membrane protein 3.50173917045e-05 0.000899055382538 3.48822739838e+11 +UniRef50_UPI0003C15BF1 PREDICTED 5.69007202092e-05 3.31063191152e-06 -21634976270.1 +UniRef50_UPI000027C743 hypothetical protein 7.48869126994e-06 1.52564527575e-05 3135940633.68 +UniRef50_UPI0003656A67 hypothetical protein 3.59506284696e-05 3.69419166923e-05 400195219.978 +UniRef50_A0A023S0W1 Acyltransferase 0.00014155724582 0.00188348695926 7.03238401197e+11 +UniRef50_UPI000372E136 hypothetical protein 3.7315344732e-05 0.000120172944516 33450629809.9 +UniRef50_P75867 Putative Lon protease homolog 0.00366534037404 0.000102838086542 -1.43822589028e+12 +UniRef50_A1T5E9 3.83149698522e-05 1.50219961238e-05 -9403659331.09 +UniRef50_UPI00047D7AE5 resolvase 7.29628466942e-05 0.000219817765938 59287133011.3 +UniRef50_R7NTI0 6.4371998579e-06 1.19096215976e-05 2209283810.48 +UniRef50_E6S0A0 2.06779661217e-05 3.85443347728e-05 7212872269.45 +UniRef50_V6UAJ9 0.000415175957368 4.96768506484e-06 -1.6560611335e+11 +UniRef50_Q8CU26 0.00328533513994 0.0013943187415 -7.63426525431e+11 +UniRef50_UPI000367BBBE hypothetical protein 0.000405564832278 0.00045458887484 19791607574.9 +UniRef50_W4XFJ9 6.76030182537e-07 2.06555424425e-07 -189532720.953 +UniRef50_UPI000379071D hypothetical protein 9.43628097165e-05 6.67104452015e-05 -11163598887.4 +UniRef50_A6LT54 0.000186566386584 0.00109194426667 3.65512160427e+11 +UniRef50_A6LT50 0.00023728827183 0.00391685034238 1.48548436119e+12 +UniRef50_B9KX92 ABC polysaccharide export transporter, ATPase subunit 0.0185351010945 0.00211628906084 -6.62847589949e+12 +UniRef50_A6LT52 0.00027914657665 0.00050470376079 91060203135.2 +UniRef50_A6LT53 0.000494159569863 0.000954036239284 1.85657854767e+11 +UniRef50_Q6ZD36 1.07522669369e-05 0.000138970134759 51763126649.9 +UniRef50_P0A9R9 Cell division ATP binding protein FtsE 0.00261341985107 0.000268469732005 -9.46685138842e+11 +UniRef50_R6FNM8 DEAD DEAH box helicase domain protein 0.000685760623058 0.000984518922578 1.20612391693e+11 +UniRef50_A4G3E6 Isoleucine tRNA ligase 0.000739371378363 0.000334887628344 -1.63295053456e+11 +UniRef50_A3PLZ5 ParB family protein 0.00059611970572 0.000334730976329 -1.05525837656e+11 +UniRef50_UPI00025581FA cyclohexadienyl dehydrogenase, partial 4.5187314283e-05 0.000146517682055 40908312933.0 +UniRef50_UPI00046F08B0 hypothetical protein 0.000108654210894 1.83879562934e-05 -36441594673.8 +UniRef50_UPI0003B4920F preprotein translocase subunit SecB 3.45067734853e-05 5.98448434774e-05 10229289788.9 +UniRef50_P0A2X3 Exodeoxyribonuclease 0.00488410503424 0.00597416025615 4.40068669567e+11 +UniRef50_UPI0003B559D7 4 alpha glucanotransferase 1.08044327185e-05 0.000594511498005 2.35649705147e+11 +UniRef50_A5N248 0.00126515337634 0.00217450115948 3.67114859006e+11 +UniRef50_W1GUL6 3.60839875691e-05 2.28783404467e-05 -5331281794.83 +UniRef50_G7UQ41 Terminase 4.27530818981e-06 3.23509773958e-05 11334492185.7 +UniRef50_Q9RQW2 Holo [acyl carrier protein] synthase 8.94334562036e-05 0.000678888977457 2.37970427362e+11 +UniRef50_L8UK30 0.000703390041336 0.000689966788659 -5419131827.54 +UniRef50_Q8X643 NAD dependent dihydropyrimidine dehydrogenase subunit PreA 0.00165478987246 0.00297688916432 5.33747708107e+11 +UniRef50_U5PD31 Asparaginase 0.0049951520362 0.00819383782422 1.29134870491e+12 +UniRef50_UPI00037472A7 hypothetical protein 5.08574675189e-05 2.23479879209e-05 -11509626764.4 +UniRef50_F9ZUX9 Succinate dehydrogenase subunit A like protein 0.000172239973521 0.000230968410904 23709390850.5 +UniRef50_G0DS55 Radical SAM superfamily protein 0.000117110441217 0.0036813899534 1.4389433777e+12 +UniRef50_A8ZUC6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.52693719121e-05 7.6681328677e-06 -3068713479.92 +UniRef50_W7VMR8 7.64165776251e-05 0.000287831791158 85350916059.7 +UniRef50_W4Q5P9 Phage terminase large subunit 5.33696791928e-06 1.64284155842e-05 4477753529.69 +UniRef50_A6LZB3 FMN binding domain protein 0.000149994432661 0.0014952984196 5.43115728264e+11 +UniRef50_U9XFZ5 0.000129830094458 0.000132424648145 1047453162.2 +UniRef50_N2GFP3 0.000235438246685 0.000525429829699 1.1707316066e+11 +UniRef50_I0C1E1 0.00522708544695 0.00192123651959 -1.3346117793e+12 +UniRef50_Q8Z9L3 L carnitine CoA transferase 0.00241797023074 0.000993651609394 -5.75014905794e+11 +UniRef50_Q2W0J7 Flagellar P ring protein 0.00943515421167 0.00145529811926 -3.22156582835e+12 +UniRef50_Q92U29 0.000103176552206 0.000391866267024 1.16547580493e+11 +UniRef50_Q7UID0 Thymidylate synthase 0.00142927573747 0.016106152773 5.92523536477e+12 +UniRef50_UPI0003691ABF hypothetical protein 3.55684061717e-06 1.04131555319e-05 2767978467.52 +UniRef50_F0MG01 0.000201147063333 0.00261319095365 9.73771717629e+11 +UniRef50_W7TC28 1.47289251804e-05 2.17640867982e-05 2840181076.25 +UniRef50_A6UPR3 Glutamyl tRNA amidotransferase subunit E 0.0027501928806 0.000211909231622 -1.02473625734e+12 +UniRef50_UPI00030168D3 hypothetical protein 2.99184050592e-05 0.00018820279495 63901350566.9 +UniRef50_K0HTP9 Sulfate ABC transporter periplasmic sulfate binding protein 0.000317014417105 0.000272600035571 -17930630851.0 +UniRef50_Q1RFI5 0.00059290993013 0.00118126682079 2.3752689671e+11 +UniRef50_A0L5M9 UDP N acetylenolpyruvoylglucosamine reductase 4.94908325217e-06 5.96385948221e-05 22078826936.5 +UniRef50_B9AGR4 0.00129980860143 0.000257741985155 -4.20695080584e+11 +UniRef50_G7ELT9 2.51123298335e-05 1.17630425862e-05 -5389271075.91 +UniRef50_U3AFI9 Urea ABC transporter, urea binding protein 0.00698261911932 0.00155133945209 -2.19267425096e+12 +UniRef50_D4HC81 0.000311198219146 0.00591441252345 2.26208637382e+12 +UniRef50_C0XT97 1.36960606861e-05 0.00186856943653 7.48835143683e+11 +UniRef50_Q55587 4.02299074535e-06 1.84877594776e-05 5839604639.86 +UniRef50_F0VN90 8.21637708439e-06 1.26798168731e-05 1801945415.27 +UniRef50_B7QVH2 Major facilitator superfamily protein 3.03517627947e-05 6.30827769979e-05 13213912088.5 +UniRef50_P42620 Glutathionyl hydroquinone reductase YqjG 0.0288905955137 0.00828376693824 -8.31922957015e+12 +UniRef50_UPI0003758451 AsnC family transcriptional regulator 0.000135788438972 8.50665236632e-05 -20477059638.1 +UniRef50_I0LIW9 1.9506904962e-05 4.26687775675e-06 -6152585998.9 +UniRef50_UPI00046EAF7B hypothetical protein, partial 1.51904680505e-05 1.60009392137e-05 327197154.183 +UniRef50_A7X1E9 Aspartate carbamoyltransferase 0.0123155084818 0.00121912547131 -4.47974598927e+12 +UniRef50_V8FVT8 9.86461643372e-05 0.0015816481678 5.98706107278e+11 +UniRef50_I1YHV8 Carbonic anhydrase, family 3 5.99858754362e-05 0.000133863051733 29825122645.9 +UniRef50_A3PI07 0.00251802107269 0.0017897982133 -2.93992504635e+11 +UniRef50_A7MMQ6 8.41884243704e-05 8.04770489307e-05 -1498327808.71 +UniRef50_Q9AD79 Putative membrane protein 0.00012622647155 2.18758904957e-05 -42127610097.1 +UniRef50_UPI00036DE46F hypothetical protein 2.06797028933e-05 3.88434859113e-05 7332942099.05 +UniRef50_UPI0003780756 SAM dependent methyltransferase 1.29040514176e-05 2.97713943451e-05 6809553325.41 +UniRef50_Q3J1W3 Chemotaxis response regulator protein glutamate methylesterase 2 0.000100239200105 0.00034818774817 1.00099871525e+11 +UniRef50_T0UG31 Cell division protein FtsW 0.0047956712244 0.00446446987613 -1.33710048594e+11 +UniRef50_UPI0004040B20 PTS sugar transporter subunit IIA 2.16196659831e-05 6.80309602808e-05 18736809038.6 +UniRef50_Q58556 Cell division cycle protein 48 homolog MJ1156 0.00200620122814 0.000360788032948 -6.64273498389e+11 +UniRef50_C6ABJ5 sn glycerol 3 phosphate binding periplasmic protein UgpB 1.55391390956e-05 5.93003733895e-06 -3879312296.1 +UniRef50_UPI00047E8722 hypothetical protein 8.66638075146e-06 5.74659771742e-06 -1178752240.61 +UniRef50_O27041 V type ATP synthase subunit I 0.00284443831233 0.000507790757045 -9.43333291961e+11 +UniRef50_P66938 DNA topoisomerase 4 subunit B 0.0281823127507 0.0138964129147 -5.7673930715e+12 +UniRef50_Q49150 Bifunctional coenzyme PQQ synthesis protein C D 0.000124609438148 2.17856495128e-05 -41511225261.7 +UniRef50_U3R1J4 3 hydroxyacyl CoA dehydrogenase 5.49470143931e-05 0.00860785630103 3.45291443502e+12 +UniRef50_P93033 Fumarate hydratase 1, mitochondrial 1.31605626031e-05 3.41217119469e-05 8462273212.32 +UniRef50_V5VCJ0 Protease 0.000146455909076 0.00863991926869 3.42891538479e+12 +UniRef50_F3ZAY0 Putative transcriptional regulator 0.000173038732986 0.000331966136148 64160942915.0 +UniRef50_Q9Z3R7 Alpha glucoside transport system permease protein AglG 0.00700470581409 0.000495442916683 -2.62786930932e+12 +UniRef50_UPI0004743C7F hypothetical protein, partial 0.000105011167531 0.000102141084124 -1158687891.29 +UniRef50_N6V2G4 2.01495321983e-06 1.5956669633e-05 5628442000.11 +UniRef50_B4U501 50S ribosomal protein L4 0.00036472076218 0.000346751512944 -7254406424.06 +UniRef50_V4Z4F4 2.54427060768e-06 1.83220540258e-06 -287469461.322 +UniRef50_R5NSU1 0.000479744624373 0.00025438540934 -90980280577.4 +UniRef50_R7MVM8 Terminase small subunit family protein 0.000135463262263 2.84851542838e-05 -43188374960.1 +UniRef50_P67109 UPF0042 nucleotide binding protein SA0720 0.0106434781768 0.000197536257659 -4.21715493886e+12 +UniRef50_D8HCA4 ABC transporter, ATP binding protein 0.00416519825803 0.00207931435521 -8.42096928242e+11 +UniRef50_UPI00036EA77A hypothetical protein 1.80610902477e-05 0.00124319397702 4.9460118046e+11 +UniRef50_C7PA11 7.07139816428e-06 0.000762303522494 3.04896476332e+11 +UniRef50_A9B518 Ribosomal RNA small subunit methyltransferase H 1.05423060364e-05 3.39494327809e-05 9449744304.5 +UniRef50_F3U3C4 8.25979688065e-05 1.53905932419e-05 -27132442242.7 +UniRef50_Q02252 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 9.98974818758e-06 0.007699638719 3.10440565212e+12 +UniRef50_G8VRC7 Electron transfer flavoprotein FAD binding domain protein 0.000279619251005 0.00597674508864 2.29999961225e+12 +UniRef50_Q9SI75 Elongation factor G, chloroplastic 2.06612263319e-05 0.000101538544808 32651165945.1 +UniRef50_A5IPV1 0.00816014635855 0.00626863708312 -7.6362550592e+11 +UniRef50_C1F9K5 Threonine tRNA ligase 3.16519694042e-05 3.22539463318e-06 -11476157068.4 +UniRef50_Q9LEJ0 Enolase 1 3.63650876333e-06 8.3708725659e-05 32326136557.4 +UniRef50_UPI000366215B hypothetical protein 0.00340280874994 0.000463938940873 -1.18645780591e+12 +UniRef50_T0FGA8 1.47725411873e-05 2.32908492216e-05 3438945484.84 +UniRef50_D0T5H1 ATP dependent helicase HrpA 0.000284842938769 0.00322869154081 1.18846780573e+12 +UniRef50_W4UAP9 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.25096594217e-06 2.65595906829e-05 9813690108.19 +UniRef50_K4NG74 VirB4 like protein 4.95388436774e-05 0.00346494090654 1.37883972447e+12 +UniRef50_Q12PV1 SsrA binding protein 0.000523354622866 0.00118046992953 2.65285513012e+11 +UniRef50_UPI000369C4CE hypothetical protein 0.000126584908652 2.83177192448e-05 -39671670237.7 +UniRef50_G7M5A0 0.000530100818569 0.0010389180224 2.05415749076e+11 +UniRef50_G7M6S3 Arginine decarboxylase 0.000797441026498 0.001398689146 2.42731243987e+11 +UniRef50_P09184 Very short patch repair protein 0.000619375859826 0.000474277510021 -58577984373.3 +UniRef50_Q02394 5,10 methenyltetrahydromethanopterin hydrogenase 0.00286503460298 0.000909185526621 -7.89600273094e+11 +UniRef50_Q88M74 Acyltransferase 0.000465143493236 0.000600194762941 54521854845.4 +UniRef50_Q0FUI9 ISSpo9, transposase 7.99384094593e-05 7.73993796221e-05 -1025037502.68 +UniRef50_UPI0003AFDE9C PREDICTED 2.36301303206e-06 1.38885423416e-05 4652997616.39 +UniRef50_P18120 3 isopropylmalate dehydrogenase 1.97420323853e-05 2.45273628521e-05 1931896632.06 +UniRef50_K7UE53 Putative acetylornithine succinylornithine aminotransferase family protein 2.63526470378e-06 3.76535615625e-06 456231787.144 +UniRef50_R5BW02 0.000595502666077 0.00233741110794 7.03229813599e+11 +UniRef50_A8MM69 TRAP transporter solute receptor, TAXI family 1.82964357938e-05 1.29344233082e-05 -2164710239.73 +UniRef50_Q3IRX5 Serine hydroxymethyltransferase 8.52700158469e-05 9.55385133525e-05 4145518451.65 +UniRef50_Q9RUB7 Phage shock protein A homolog 0.000176120990128 0.02049858318 8.20442737072e+12 +UniRef50_Q89VR4 Acyl CoA dehydrogenase 0.000511193084627 0.00384656942268 1.34653235734e+12 +UniRef50_C3MFT1 0.000607018859646 5.92966881915e-05 -2.21122161923e+11 +UniRef50_P26608 Flagellar protein FliS 0.00336237762095 0.000717368514652 -1.06782263413e+12 +UniRef50_UPI0002F0F5DA branched chain amino acid ABC transporter permease 4.40009523818e-05 0.000523817586644 1.93707863264e+11 +UniRef50_UPI00046778C2 hypothetical protein 5.14172477089e-06 1.71702099568e-05 4856047075.66 +UniRef50_Q21ET8 1.94122373987e-05 1.81624712867e-05 -504545915.769 +UniRef50_Q720Z5 Teichoic acids export ATP binding protein TagH 5.6667064868e-06 0.000820447142127 3.28936860348e+11 +UniRef50_P0AFZ1 Protein SseB 0.00523233974107 0.0011791742126 -1.63631266178e+12 +UniRef50_G2DDB6 3.83482075276e-05 1.23664861738e-05 -10489139742.1 +UniRef50_Q1C0V9 Rhamnulokinase 0.00495804348411 0.000922905679454 -1.62903464845e+12 +UniRef50_C4ZJG8 Nitrite reductase H), large subunit 0.000598588698913 0.000394933150137 -82218244175.5 +UniRef50_UPI00039C17A8 hypothetical protein 4.16500883248e-05 2.73702605186e-05 -5764941718.56 +UniRef50_D1BIN8 Monosaccharide binding protein 1.03136230916e-05 0.00516190275641 2.07975975023e+12 +UniRef50_E6VPG8 Transcriptional regulator, AraC family 0.0284390045463 0.0091596707949 -7.78330361947e+12 +UniRef50_UPI00021A57D1 PREDICTED 9.84312416401e-05 5.13380031993e-05 -19012118257.6 +UniRef50_E0N7V9 0.000625667384843 0.00850253712458 3.17998897399e+12 +UniRef50_UPI00037031A7 hypothetical protein, partial 6.92488374226e-06 2.40880117023e-05 6928965372.72 +UniRef50_UPI00030650F9 hypothetical protein 7.81507079725e-07 1.23352886453e-06 182486741.457 +UniRef50_M4SA42 TraU family protein 0.000115303091969 1.64602307439e-05 -39904076014.9 +UniRef50_UPI0001509F0D Electron transfer flavoprotein ubiquinone oxidoreductase containing protein 2.65544836622e-06 8.60832721048e-06 2403250239.47 +UniRef50_UPI0002BC4120 phosphoenolpyruvate protein phosphotransferase, partial 2.15937525589e-06 0.000173363204951 69117086955.1 +UniRef50_G8LLV9 Coproporphyrinogen III oxidase 0.00255219309591 0.00161412635007 -3.78709056669e+11 +UniRef50_Q02136 Histidinol dehydrogenase 0.00588272813331 0.00306893601157 -1.13596240866e+12 +UniRef50_F6G400 9.92513555255e-05 4.02270795757e-05 -23828824510.3 +UniRef50_U5ACW9 0.000288920644946 0.000127910409555 -65001807845.1 +UniRef50_UPI0002BFF2B3 unnamed protein product 5.61444684709e-06 2.31897287713e-05 7095356985.76 +UniRef50_K1R9M4 Phage terminase, large subunit 1.52470814135e-05 0.000180883242663 66869350880.9 +UniRef50_A6LR81 Coenzyme F390 synthetase like protein 0.000107955954865 0.00171630553255 6.49310461178e+11 +UniRef50_P54019 30S ribosomal protein S13 0.000842038939477 0.000401791435631 -1.77733319747e+11 +UniRef50_UPI00037EC4C5 hypothetical protein 6.73867909197e-06 3.14001632931e-05 9956143802.43 +UniRef50_UPI00034B83FC hypothetical protein 7.98698874288e-06 0.000812247123261 3.24689685687e+11 +UniRef50_UPI000427207E hypothetical protein 6.97947065103e-06 3.33088710552e-06 -1472977950.48 +UniRef50_K1V4W8 0.000136357920873 1.88029716869e-05 -47458375547.8 +UniRef50_Q8YF84 Glutamate synthase small chain 0.00204884880084 0.000303373833107 -7.04669663859e+11 +UniRef50_Q0BAQ4 tRNA modification GTPase MnmE 0.00504714228498 0.0131205017663 3.25931429387e+12 +UniRef50_UPI00036B6D82 hypothetical protein 0.00011753106094 2.79443657264e-05 -36167248210.1 +UniRef50_U6EFC2 Helicase 0.00309670934647 0.000774987775745 -9.37307488827e+11 +UniRef50_A4HI31 6.49074672859e-06 1.46425122558e-05 3290967776.75 +UniRef50_B9KS21 Two component, sigma54 specific, transcriptional regulator, Fis family 0.00306956189778 0.00139689868593 -6.7527466451e+11 +UniRef50_UPI00046960A8 nickel ABC transporter permease 8.99154584445e-05 4.54239999272e-05 -17961747775.0 +UniRef50_UPI0004647121 hypothetical protein 3.26872267709e-06 9.2677761151e-05 36095526004.2 +UniRef50_UPI00044159A7 cwf21 domain containing protein, partial 5.09910326125e-05 2.52683094059e-05 -10384579011.8 +UniRef50_Q5M4T5 0.00761793149845 0.00576697869196 -7.47252361725e+11 +UniRef50_O87656 Iron hydroxamate import system permease protein FhuB 0.00261733815291 0.00138462431863 -4.97661701999e+11 +UniRef50_M1MMU8 0.000199043610132 0.00300362227614 1.13224282352e+12 +UniRef50_J7RCA7 0.00545297193947 0.000362351785524 -2.05514582508e+12 +UniRef50_I0AL38 3 oxoacyl [acyl carrier protein] reductase 0.0160072257179 0.00214648353327 -5.59575171036e+12 +UniRef50_P45468 UPF0718 protein YraQ 0.00223580355969 0.000847832275355 -5.60341039807e+11 +UniRef50_R9SN00 Transcriptional regulator ArsR family 0.00405368916017 0.000256797134949 -1.53285190369e+12 +UniRef50_Q07211 Fructokinase 0.00485075668772 0.00360470493283 -5.03046384224e+11 +UniRef50_Q99UM3 Probable cell wall hydrolase LytN 0.00631799487022 0.000951283493776 -2.16660723962e+12 +UniRef50_Q4L691 Phosphate import ATP binding protein PstB 2.88489690468e-05 0.000178390342974 60371687733.3 +UniRef50_I0C432 Homoserine dehydrogenase 0.025512920913 0.00962826165726 -6.41283186822e+12 +UniRef50_F0MX64 Nickel dependent hydrogenase, b type cytochrome subunit 0.000352345097598 0.0056724264365 2.14778212125e+12 +UniRef50_P9WNP6 3 hydroxybutyryl CoA dehydrogenase 9.28238080939e-06 0.000283226390587 1.10594558418e+11 +UniRef50_UPI00036B09C8 hypothetical protein 4.59748784954e-07 2.80608149564e-06 947243308.046 +UniRef50_B1R255 Cell wall binding repeat domain protein 0.00025334630124 0.000888965254305 2.56607171274e+11 +UniRef50_S9QXB6 0.000107134058989 3.44910750752e-05 -29326864035.7 +UniRef50_M9VCS0 9.41361568159e-05 0.00285582849635 1.11492908724e+12 +UniRef50_UPI00035E4AA0 hypothetical protein 9.0176990756e-06 1.26421157621e-05 1463221492.93 +UniRef50_I6T6X2 Protein BglB 0.00342913241115 0.00284425452579 -2.36122379579e+11 +UniRef50_A0A024HX75 2.05694976103e-05 9.91378879242e-06 -4301840410.04 +UniRef50_P73662 Phosphate acetyltransferase 3.99675354017e-06 7.52091115266e-06 1422745674.44 +UniRef50_W8RVD2 ATPase of the AAA+ class 0.000130006693838 4.5610595622e-05 -34071740506.4 +UniRef50_I0C816 Nitrogen regulation protein NIFR3 3.53894363537e-05 6.2401200814e-05 10904980784.2 +UniRef50_UPI00047AA101 hypothetical protein 3.10917100259e-06 6.81949597648e-06 1497903722.77 +UniRef50_UPI00046A4480 hypothetical protein 2.42626794625e-05 2.14704971228e-05 -1127238274.47 +UniRef50_UPI00028825F3 multidrug ABC transporter permease 0.000227497471899 5.02936142125e-06 -89813106190.7 +UniRef50_D3NVZ1 5.37917953464e-05 1.74564403813e-05 -14669028684.4 +UniRef50_UPI000190AB93 branched chain amino acid aminotransferase 7.40178192707e-05 6.16403354792e-05 -4996942095.43 +UniRef50_A0A022S140 4.40648613448e-05 0.000326307066793 1.13944641841e+11 +UniRef50_B0V541 0.000220322561583 0.00742363668812 2.90806630749e+12 +UniRef50_J2PC13 Arabinose efflux permease family protein 2.96451517059e-06 6.01876194731e-06 1233036903.58 +UniRef50_B2A2G4 Ribosomal RNA small subunit methyltransferase H 6.47341342888e-06 6.8406330452e-06 148251065.4 +UniRef50_A0Q2Z5 ATP synthase gamma chain 0.000274202897477 0.00147606336038 4.85205817359e+11 +UniRef50_M1LPW4 0.00065057739139 0.00182198318117 4.729108921e+11 +UniRef50_UPI00034DD1B3 hypothetical protein 0.000110289465181 3.70037767062e-05 -29586331753.8 +UniRef50_A6LYK1 0.000157285828689 0.00058359593005 1.72106619333e+11 +UniRef50_UPI000363AA5C MULTISPECIES 2.67370096927e-05 1.45142046012e-05 -4934496406.12 +UniRef50_B9ISU4 1.93769381063e-05 3.56276330317e-05 6560604959.84 +UniRef50_D4HF88 Amino acid peptide transporter 0.000169768830967 0.00669466693541 2.63418143427e+12 +UniRef50_Q39FJ3 Hydroxypyruvate isomerase 0.000149598146176 0.000461432351874 1.25891295476e+11 +UniRef50_V9XDD0 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.000109099996778 0.00113476520694 4.14073631669e+11 +UniRef50_W1HEW1 DNA topology modulation protein 1.85592008538e-05 1.68355298619e-05 -695867131.252 +UniRef50_L0SAB5 Fusion of IS1381 orf A and B 1.78509671792e-05 0.00223625007784 8.95594943792e+11 +UniRef50_Q2NYD7 Indole 3 glycerol phosphate synthase 0.00100468022574 0.00228316820623 5.16141286536e+11 +UniRef50_E5U188 0.000254346600275 8.91690437462e-05 -66684206527.3 +UniRef50_E4LMM6 HD domain protein 1.84577554616e-05 2.34957561941e-05 2033902718.93 +UniRef50_Q49W87 Na H(+) antiporter subunit E1 0.0167931114181 0.00270143782698 -5.68898155301e+12 +UniRef50_UPI0003A7FBFE side tail fiber protein 8.21673355952e-06 0.000179259035012 69051876021.2 +UniRef50_UPI0003626812 hypothetical protein 0.000103126891252 1.631480042e-05 -35047106373.0 +UniRef50_UPI000381F4EB hypothetical protein 4.03856679871e-06 1.28047416867e-05 3539012375.34 +UniRef50_P08368 Transcriptional regulatory protein CreB 0.00197804155607 0.000535317290393 -5.82445490273e+11 +UniRef50_W4N2B7 UPF0176 protein X964_08780 0.000390200610964 0.00710693968419 2.71162998752e+12 +UniRef50_UPI0004747C9B hypothetical protein 0.000713383940696 0.000122730661875 -2.38453976791e+11 +UniRef50_F2J6W6 Transcriptional regulator 0.00120321853091 0.000588322380236 -2.48241121651e+11 +UniRef50_UPI0003754665 hypothetical protein, partial 6.21599282306e-05 8.77136706163e-05 10316359380.8 +UniRef50_M3HZS8 3.06709789931e-05 8.04105305025e-06 -9135978803.57 +UniRef50_UPI0004745709 iron hydroxamate transporter permease subunit, partial 1.83188231742e-05 3.4792692823e-05 6650703334.33 +UniRef50_F2JM58 Transcriptional regulator, PucR family 0.000210317289469 0.00136478127803 4.66071279048e+11 +UniRef50_UPI0004785665 hypothetical protein 8.43217723264e-06 0.000249816181669 97449684705.6 +UniRef50_UPI000361AD47 flagellar P ring protein FlgI 2.25926506978e-05 2.31726511259e-05 234153290.23 +UniRef50_Q6A615 9.25967266145e-05 0.00456809170202 1.80681224207e+12 +UniRef50_D4SL88 L ribulose 5 phosphate 3 epimerase UlaE 7.13473408885e-05 2.63127201163e-05 -18181029042.7 +UniRef50_B9KN41 0.00747354552495 0.00128508363134 -2.49835800742e+12 +UniRef50_UPI00046AB541 MULTISPECIES 7.1351855149e-05 2.90060047643e-05 -17095539442.3 +UniRef50_UPI0002195D2E peptide ABC transporter ATP binding protein 5.57782563993e-05 1.7026168218e-05 -15644693540.4 +UniRef50_C5N2Z6 LPXTG motif cell wall anchor domain protein 0.0343176072486 0.000962989256073 -1.34656685908e+13 +UniRef50_R6A8H0 0.00178746751519 0.000676916656792 -4.48343009528e+11 +UniRef50_UPI000463E95A hypothetical protein 2.53026541394e-05 4.45881564215e-06 -8414913383.98 +UniRef50_UPI0002D6C4DC hypothetical protein 0.000129116750375 1.44800447745e-05 -46280244801.7 +UniRef50_UPI00047EFE08 macrolide transporter 7.78025221064e-06 4.87888741877e-06 -1171316570.23 +UniRef50_UPI00035CFCF8 hypothetical protein 3.31563090706e-05 4.48996758491e-05 4740941275.8 +UniRef50_UPI0003AEE1CA PREDICTED 1.28383213376e-05 3.36849617873e-05 8416044566.59 +UniRef50_C6DJF9 Protein ViaA 0.00233235618564 0.000431799027627 -7.67278247148e+11 +UniRef50_R5J6V4 0.000324926066261 0.000813307218547 1.97165464289e+11 +UniRef50_P0ACI1 Right origin binding protein 0.00459072391409 0.000204371422282 -1.77082432754e+12 +UniRef50_U3T5M8 Acetyltransferase 0.000224249102288 0.00309169605713 1.1576235232e+12 +UniRef50_UPI0004634FA1 hypothetical protein 2.18078389698e-05 3.40634296299e-05 4947732342.49 +UniRef50_A3PJF7 Ribosome recycling factor 0.017299628818 0.00168752402968 -6.30279828511e+12 +UniRef50_O28437 Putative ABC transporter ATP binding protein AF_1841 5.51470206823e-05 2.75118235993e-05 -11156668184.4 +UniRef50_D4HE05 0.000838172009978 0.00786400359709 2.83641442837e+12 +UniRef50_A6LZK4 0.00146584990493 0.00179420528583 1.32561096643e+11 +UniRef50_UPI00029B0F13 NADH dehydrogenase subunit D 2.44720981649e-05 3.18146602639e-05 2964282422.74 +UniRef50_UPI00038304E6 hypothetical protein M271_24355 2.91594715021e-05 2.07671794396e-05 -3388071290.64 +UniRef50_G3ZK67 Putative Mg chelatase like protein 7.96225869204e-06 1.28176587508e-05 1960184586.18 +UniRef50_M4YVT1 7.85338395664e-05 0.000193017454369 46218440167.9 +UniRef50_I0EPZ1 L lactate permease 0.000445879151223 0.00894735818745 3.43215141181e+12 +UniRef50_O34943 Putative tRNA binding protein YtpR 0.00931248616675 0.00339734594586 -2.38801469411e+12 +UniRef50_R9SJS2 Helicase 0.00253928950182 0.000580886733011 -7.90631230073e+11 +UniRef50_A4VHU4 Exonuclease SbcD 0.000647880867584 0.000210940503716 -1.76398186755e+11 +UniRef50_A5UM89 Adhesin like protein 0.00284270224698 0.000516472711475 -9.39127409532e+11 +UniRef50_Q9HWB8 Nuclease SbcCD subunit C 0.00055271194294 0.000158548466208 -1.59128632486e+11 +UniRef50_A3PFK8 0.00111792077592 0.000335352827567 -3.15932283939e+11 +UniRef50_UPI00047ACA41 hypothetical protein 4.5889840075e-06 6.59848345859e-06 811259587.736 +UniRef50_E9B5X1 7.95313633543e-07 5.73397255617e-06 1993797211.23 +UniRef50_S6PZF6 Sulfur transfer complex subunit TusD 0.000124611848461 0.000198890983614 29987398368.8 +UniRef50_UPI00046865DF hypothetical protein 2.07261629439e-05 1.36076070638e-05 -2873848363.3 +UniRef50_W0YVS4 Respiratory nitrate reductase subunit beta 2.83433996195e-05 0.000106351641518 31492884523.2 +UniRef50_Q9HI37 Probable family 20 transposase 0.00267400994058 0.000885634619393 -7.21989062997e+11 +UniRef50_UPI0003F0B2FB PREDICTED 1.86557023648e-06 1.37006703648e-05 4777975154.81 +UniRef50_Q88J89 Ribose transport permease protein, putative 0.000676950966375 0.000856233185307 72378431823.1 +UniRef50_P43531 Inner membrane transport protein YnfM 0.00362628754461 0.000619785889069 -1.21376161227e+12 +UniRef50_UPI00027FC17F 1.05325272845e-05 0.000233585255724 90049123635.6 +UniRef50_G1XXP0 Transposase 0.000417486879282 0.00022276676701 -78610898808.7 +UniRef50_UPI000471C1F1 hypothetical protein, partial 1.20853927633e-05 7.84337968328e-06 -1712552735.76 +UniRef50_M9VD06 UvrD REP helicase 0.000114025437615 0.00527992133776 2.08553556756e+12 +UniRef50_A5UJE9 Predicted ATPase 0.00230159850064 0.00161060692165 -2.78961779858e+11 +UniRef50_Q2N696 0.000105360291355 0.000643522441542 2.17262664023e+11 +UniRef50_F0KNV9 Acyl CoA dehydrogenase 0.000229834539741 0.00681535197805 2.65865420323e+12 +UniRef50_UPI0004736CBD membrane protein, partial 0.00013592247715 0.000226640074328 36623807210.9 +UniRef50_U3SV04 0.00322349338654 0.00221209138337 -4.08315399978e+11 +UniRef50_C2ESX2 0.000399100578701 0.000236470547981 -65655739096.6 +UniRef50_C3BKL0 ABC transporter 0.00787893729103 0.000727865306427 -2.8869755137e+12 +UniRef50_O27283 Fibrillarin like rRNA tRNA 2 O methyltransferase 0.00136328801208 0.000289526181564 -4.3349082752e+11 +UniRef50_W0EAD6 HAD family hydrolase 0.000434842847951 0.000404543431768 -12232246128.7 +UniRef50_UPI0004710EDE hypothetical protein 1.90475012029e-05 7.38127436134e-05 22109400406.2 +UniRef50_N5R5Q8 0.000373748503814 0.000615243135819 97494346412.8 +UniRef50_Q3BRW8 1 deoxy D xylulose 5 phosphate synthase 0.000876105585201 0.00440606900191 1.42508954885e+12 +UniRef50_UPI000369DDA4 hypothetical protein 1.30381858997e-05 4.86985554716e-06 -3297655200.01 +UniRef50_F7YLR6 1.3010858115e-05 9.61388285439e-05 33559781757.1 +UniRef50_U3SVV6 2 3 dephospho CoA 0.0111368347657 0.00117940697512 -4.01993579044e+12 +UniRef50_E3EMN0 Oxidoreductase, aldo keto reductase family 0.000285717979776 0.00447078397209 1.68956249763e+12 +UniRef50_UPI0003B63C22 magnesium chelatase 9.85956391135e-06 2.73759937854e-05 7071597690.9 +UniRef50_X5EKC8 Ferric alcaligin siderophore receptor 7.75656141421e-05 0.003833703957 1.51639914201e+12 +UniRef50_P0AGA8 Transcriptional regulatory protein UhpA 0.00179373257937 0.00339772099241 6.47549805495e+11 +UniRef50_E4D778 6.46679036737e-05 0.00132490597001 5.08773572242e+11 +UniRef50_R7IGH5 2.45494199713e-05 8.36761924367e-05 23870203611.4 +UniRef50_Q9RSP4 0.00054874375358 0.0484260994899 1.9328676032e+13 +UniRef50_UPI0001BF71FE hypothetical protein SMAC_09973 5.48887263285e-05 5.034278494e-05 -1835252323.51 +UniRef50_A7X4U4 ATP synthase gamma chain 0.0193777626299 0.00307049177465 -6.583445357e+12 +UniRef50_Q6A674 0.000462227741456 0.0103961208688 4.01043455808e+12 +UniRef50_P77619 UPF0214 protein YfeW 0.0027173400256 0.00065056967571 -8.34380552375e+11 +UniRef50_P32134 0.00408290859028 0.000604921056402 -1.40410624713e+12 +UniRef50_C1KWD9 Bifunctional protein PyrR 0.00148652291857 0.00511312006677 1.46410177208e+12 +UniRef50_F0KEU9 0.000881739632676 0.00621446563328 2.15288692635e+12 +UniRef50_P18185 Carbamoyl phosphate synthase arginine specific large chain 1.73131198462e-05 1.20900412456e-05 -2108620925.44 +UniRef50_Q4UYN4 NAD NADP dependent betaine aldehyde dehydrogenase 0.00163439717145 0.000472835792305 -4.6893658272e+11 +UniRef50_P32139 0.00194063410902 0.00094917395303 -4.00264631557e+11 +UniRef50_UPI0004713D39 phenylacetic acid degradation protein 1.68709211814e-05 3.23779767256e-05 6260388616.16 +UniRef50_J0BXE7 Plasmid pRiA4b ORF 3 like protein 0.000645506213359 0.000129501792169 -2.08317316921e+11 +UniRef50_Q3JLT3 DGPF domain protein 4.15271819029e-05 2.75652923013e-05 -5636586163.82 +UniRef50_G7MBY5 ABC transporter related protein 0.000525683569173 0.00104941685076 2.11437552707e+11 +UniRef50_N4Y922 Phosphatidylglycerol lysyltransferase 0.00283523710223 0.000777707978657 -8.30649755907e+11 +UniRef50_G7SA54 Phosphodiesterase, MJ0936 family 0.0016571318731 0.00726608207777 2.26440202718e+12 +UniRef50_H8GT24 Transpeptidase transglycosylase component 3.95549412039e-05 0.026598505383 1.07221742083e+13 +UniRef50_UPI0004761F50 iron ABC transporter ATP binding protein 2.55081907644e-05 2.48588890709e-05 -262131061.494 +UniRef50_Q0BVN0 Chorismate synthase 9.12599145581e-06 5.35548258598e-05 17936465652.0 +UniRef50_Q9K411 4.62370076349e-06 0.000567264472049 2.27144983747e+11 +UniRef50_F2TZ40 3.26364463138e-05 1.04767823075e-05 -8946128289.0 +UniRef50_B7I864 TonB dependent receptor 0.000164949447163 0.00764567868927 3.02006219391e+12 +UniRef50_C5N344 0.0103244218326 0.00194914795886 -3.381200839e+12 +UniRef50_UPI00046610C2 sugar ABC transporter ATP binding protein 1.75617902777e-05 5.44454279931e-05 14890377158.8 +UniRef50_C5N340 0.0118924899102 0.00506579563768 -2.75602025078e+12 +UniRef50_UPI00037883B0 hypothetical protein, partial 1.34787958167e-05 2.54784673162e-05 4844414636.88 +UniRef50_P0AF43 0.00291307960366 0.000545657673805 -9.55757284618e+11 +UniRef50_Q35826 Cytochrome c oxidase subunit 3 1.8949671013e-05 5.54568853989e-05 14738410441.5 +UniRef50_T9JSA5 DNA binding transcriptional activator 0.00207845350801 0.0005106351326 -6.32947517448e+11 +UniRef50_K2KB78 Chemotactic signal response protein 0.000137868744676 7.64906984008e-05 -24779070474.6 +UniRef50_Q47KH4 Phosphoribosylaminoimidazole succinocarboxamide synthase 2.07017677382e-05 0.000680401561879 2.66328902322e+11 +UniRef50_G8PRB6 TRAP dicarboxylate transporter, DctM subunit 6.00443695741e-06 5.04354526996e-06 -387923765.691 +UniRef50_Q3IUZ1 Phytochrome sensor diguanylate cyclase phosphodiesterase 0.0260999277124 0.00516613635614 -8.45122845705e+12 +UniRef50_I0JA88 0.00953694581898 0.00200871636663 -3.03923861168e+12 +UniRef50_Q5XL59 Hypothetical 18.9 kDa protein 0.000179476162812 0.00334402783705 1.27756834431e+12 +UniRef50_A7GHG0 CBS domain protein 0.00107227235935 0.000298802737126 -3.12259178031e+11 +UniRef50_A4WNP3 0.000297398942163 0.000565773370924 1.08346050215e+11 +UniRef50_R8ZFM2 Two component sensor 0.000120859975083 0.000658107476811 2.16893409216e+11 +UniRef50_Q9RU62 Transcription repair coupling factor 7.86217276021e-05 0.0348094669499 1.40212684116e+13 +UniRef50_I3WYQ6 0.000591048949949 6.16323989078e-05 -2.13731958327e+11 +UniRef50_H1GBP2 LPXTG motif protein cell wall anchor domain protein 3.05704068959e-06 8.1796823781e-06 2068073311.53 +UniRef50_UPI000262662B hypothetical protein 2.33110112305e-05 2.25728317477e-05 -298012115.687 +UniRef50_B7Z2X9 Gamma enolase 4.38507394313e-06 5.3594191671e-05 19866324690.5 +UniRef50_UPI00029A8E8E type I restriction enzyme EcoKI subunit R 2.43580403619e-05 7.32568557903e-05 19741051844.4 +UniRef50_UPI0003C15755 5.77138047469e-05 9.5558275409e-06 -19441966362.9 +UniRef50_H9K7J8 5.23055377949e-05 8.22754570197e-05 12099224163.3 +UniRef50_P52228 Thioredoxin C 3 0.000721310806725 0.00478031232762 1.63866872353e+12 +UniRef50_Q3J3B6 0.0112881011445 0.00330605728405 -3.22244905716e+12 +UniRef50_D4HE60 Release factor glutamine methyltransferase 0.000272225472725 0.00561082195645 2.15525691243e+12 +UniRef50_Q2YZ40 0.0299067150563 0.00353138383334 -1.06480448764e+13 +UniRef50_UPI0003B3D851 single stranded DNA binding protein 2.3110364842e-05 0.00122673890481 4.85919611769e+11 +UniRef50_Q8Z8E5 Putative potassium transporting ATPase B chain 0.000391929844405 0.00200251254745 6.5021200129e+11 +UniRef50_Q9ZKX5 Catalase 2.06534462778e-05 0.00425760537813 1.71050948813e+12 +UniRef50_Q9PIN2 Zinc transporter ZupT 0.0057333945718 0.000496330596971 -2.11426699264e+12 +UniRef50_D3DZ70 Methanogenesis marker protein 17 0.00351478486697 0.00108846967428 -9.79533217525e+11 +UniRef50_UPI000299EEED hypothetical protein, partial 3.61599541858e-05 6.70594975514e-05 12474524836.7 +UniRef50_Q2SDW0 Nucleoside diphosphate kinase 0.0233934192389 0.0334221804605 4.0487339719e+12 +UniRef50_Q6F945 0.000133387275209 0.00707230063586 2.80132447374e+12 +UniRef50_E8U988 Acetylornithine acetyl lysine aminotransferase 0.000358586488294 0.0438784058726 1.75694851337e+13 +UniRef50_F9YXA3 Succinate dehydrogenase cytochrome b subunit, b558 family 0.000206276496643 0.00358859618098 1.3654839623e+12 +UniRef50_E3L9A9 1.52261947778e-05 0.000934832347121 3.71256288537e+11 +UniRef50_V4STF9 Ribosomal RNA small subunit methyltransferase E 8.52342509105e-05 4.16300354319e-05 -17603556872.6 +UniRef50_S6AEF9 2.06407606422e-06 1.16355605131e-05 3864125727.34 +UniRef50_F4A619 GTPase HflX 0.000685961470786 0.00252369536673 7.41915725322e+11 +UniRef50_T1Y9P7 UDP N acetylmuramoylalanyl D glutamate 2, 6 diaminopimelate ligase 0.0233279798183 0.00490515711121 -7.43751960031e+12 +UniRef50_B2HZE1 Enoyl CoA hydratase carnithine racemase 0.000181483648491 0.00557309594397 2.17666004621e+12 +UniRef50_I3US46 Major facilitator superfamily metabolite H symporter 0.000808792312943 0.00169209626092 3.56600643157e+11 +UniRef50_UPI00037E89DC hypothetical protein 7.14083568516e-06 4.15666081368e-05 13898106790.4 +UniRef50_A7FQL2 UPF0313 protein CLB_0243 0.000653346308239 0.000964183671603 1.25488857993e+11 +UniRef50_P75915 Chaperone protein YcdY 0.00942729514805 0.00214719755147 -2.93906473658e+12 +UniRef50_B6IPB9 0.000236411963307 0.000296207677396 24140263553.7 +UniRef50_UPI00036011C5 hypothetical protein 3.16710447754e-05 2.66460758575e-05 -2028641615.46 +UniRef50_S5CU75 Transposase like protein 0.00077852784729 0.0314762031902 1.23930282388e+13 +UniRef50_I6XPP6 Methylmalonyl CoA carboxyltransferase 5S subunit 0.000218373341773 0.00742929790072 2.91113873244e+12 +UniRef50_UPI0003B33B7C DNA binding protein 8.99997087647e-05 4.42620591987e-05 -18464850393.9 +UniRef50_UPI0003625CBC hypothetical protein 4.23940390441e-06 5.516798263e-05 20560492195.5 +UniRef50_A3PJ50 Binding protein dependent transport systems inner membrane component 0.00674855654504 0.000241732637264 -2.62688465928e+12 +UniRef50_C9SAM1 Ribosomal RNA processing protein 1.69805020269e-06 3.03420016623e-05 11563914705.1 +UniRef50_UPI000368DEE4 hypothetical protein 0.000112694511577 0.00741567422137 2.94830252648e+12 +UniRef50_UPI00029B09D5 CRISPR associated protein Csn1 1.33650924617e-05 0.000133988849048 48697290753.7 +UniRef50_Q7MWR7 CTP synthase 7.48871386247e-06 0.000145450787295 55696982029.9 +UniRef50_T1XRQ5 Teichoic acid translocation ATP binding protein, putative 0.0101175444633 0.00166715129561 -3.41152741978e+12 +UniRef50_I7ENI8 Thioesterase like protein 0.00577768651925 0.0012423760577 -1.83096048785e+12 +UniRef50_A0A021DBD0 D isomer specific 2 hydroxyacid dehydrogenase 0.00113023091057 0.00220943414517 4.35687589121e+11 +UniRef50_UPI00046F8C7A membrane protein 0.000111345038176 0.000167883185584 22825143909.7 +UniRef50_A5UNS3 Putative ATPase 0.00220288974861 0.000515403077341 -6.81259076982e+11 +UniRef50_M9RKI3 0.000145922941448 0.000109442436054 -14727627693.7 +UniRef50_T0C715 Thioesterase family protein 2.1844247618e-05 0.000778460223752 3.05455154287e+11 +UniRef50_D8JFV1 0.000296454965064 0.00352742596194 1.30438263991e+12 +UniRef50_Q5HQT4 0.0284274996944 0.00213090672396 -1.06162572776e+13 +UniRef50_UPI0004412F07 mitochondrial ribosomal protein subunit L2 2.3885510543e-05 0.000103551053693 32161957375.8 +UniRef50_P37344 Psp operon transcriptional activator 0.00294006308441 0.000771038796131 -8.756617221e+11 +UniRef50_C6CXV0 D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein 0.0015222163604 0.000756144430105 -3.0927263902e+11 +UniRef50_Q8CQM7 0.0228228880897 0.00243614402236 -8.23037875345e+12 +UniRef50_A1SM80 Biotin synthase 5.03400278712e-06 0.000135953500361 52853807733.5 +UniRef50_A5UKE2 0.0065112586955 0.000445201063114 -2.44894190509e+12 +UniRef50_A6LZ61 Aldose 1 epimerase 0.000116989459351 0.00201414771985 7.65906070514e+11 +UniRef50_UPI0003B60CB5 hypothetical protein 2.83494797071e-06 1.29827551119e-05 4096794270.5 +UniRef50_C7Q9W5 4.4257978224e-06 0.000907632254461 3.64635530135e+11 +UniRef50_UPI00046D8C08 hypothetical protein 7.53665221244e-06 3.08935621506e-05 9429471163.57 +UniRef50_UPI000382B4D1 hypothetical protein 8.84253717243e-05 2.19581178471e-05 -26833646035.2 +UniRef50_Q7NZP2 Sigma B regulator protein 2.01521892731e-05 0.00351410074234 1.41054990644e+12 +UniRef50_Q6AAT0 Cysteine tRNA ligase 1.70699117237e-05 0.009131389373 3.6795626118e+12 +UniRef50_G7LXC6 Lytic transglycosylase catalytic 0.000199378826523 0.00119699234837 4.02748820864e+11 +UniRef50_E9KNQ0 Truncated transposase 0.000658405794513 0.00201718554824 5.48556060683e+11 +UniRef50_UPI000467240F hypothetical protein 6.34126140502e-06 6.96436251715e-06 251553565.277 +UniRef50_Q48677 Glutamyl aminopeptidase 0.00468701067804 0.00706323293218 9.59310083522e+11 +UniRef50_UPI000474A2DB MarR family transcriptional regulator 0.000752274713467 0.000387300634803 -1.47344514292e+11 +UniRef50_A6M168 Diguanylate cyclase 0.000134177484187 0.00207813613061 7.84799960615e+11 +UniRef50_O27596 Tungsten formylmethanofuran dehydrogenase, subunit H 0.00704285182393 0.000509166733097 -2.6377288485e+12 +UniRef50_F0YIK7 Expressed protein 4.00260814062e-05 2.95200521756e-05 -4241412923.87 +UniRef50_UPI00032995A5 1.26546153199e-05 6.82935670758e-06 -2351728385.76 +UniRef50_Q9RXU7 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.000171404197684 0.0221185688458 8.86033969043e+12 +UniRef50_E8U9D7 Nicotinate phosphoribosyltransferase 0.000163710997586 0.00667309409105 2.62791783394e+12 +UniRef50_UPI00046D1D34 hypothetical protein 1.40616078349e-05 7.59358288535e-05 24979382307.3 +UniRef50_A5W7R4 Regulatory inactivation of DnaA Hda protein 0.00102080861635 0.000255685459043 -3.08889607722e+11 +UniRef50_UPI00047D437C cobalamin adenosyltransferase 1.04713333894e-05 2.27572033356e-05 4959956461.86 +UniRef50_A3PR78 Peptidase S15 0.00580205829008 0.00207092641532 -1.50630372398e+12 +UniRef50_A9MUH4 0.000122576233285 0.000261458220516 56068362518.8 +UniRef50_B7V7M2 Cysteine synthase 0.00123382869724 0.000303407573826 -3.75622425073e+11 +UniRef50_P76113 NADPH dependent curcumin reductase 0.00935060730476 0.00323517155805 -2.46887645578e+12 +UniRef50_L8ND35 Sigma 54 dependent transcriptional regulator 0.00078768567052 0.000740862020711 -18903282018.7 +UniRef50_UPI00041D3C43 chromosomal replication initiation protein 4.45101593999e-06 5.31462451219e-06 348649378.266 +UniRef50_B9TKF4 0.000463161329974 0.000961149009716 2.01043737308e+11 +UniRef50_K5DHJ7 0.000189680917929 5.71981571475e-05 -53484916273.6 +UniRef50_UPI00037794A5 hypothetical protein 0.000331128060398 0.00386775464603 1.42777955191e+12 +UniRef50_G7UA09 Glycosyl hydrolase family 38 N terminal domain protein 3.62850998621e-05 0.00689659070384 2.76958955774e+12 +UniRef50_D7HX96 Acetate permease ActP 0.00214291167934 0.000943600812013 -4.8417651434e+11 +UniRef50_G8LP59 YdiK 0.000324415046484 0.000171695758841 -61654650497.9 +UniRef50_UPI000255BF67 heptaprenyl diphosphate synthase subunit II 2.90601839633e-05 4.37765018523e-05 5941158121.32 +UniRef50_UPI0002DAB67A hypothetical protein 4.51598789486e-05 1.79975945704e-05 -10965747522.2 +UniRef50_V5NNB3 Iron regulated outer membrane protein FrbP_1 0.000109144223542 0.00239652893878 9.23445278909e+11 +UniRef50_Q0SPS1 DHH family protein 0.000307896119172 0.000761014072865 1.82929278288e+11 +UniRef50_UPI00047BD1F1 methionine gamma lyase 2.59735525887e-05 7.23317633179e-06 -7565719865.19 +UniRef50_F9FAZ9 ATP dependent Clp protease proteolytic subunit 0.000254484936301 0.000889409481707 2.56326830381e+11 +UniRef50_A8LSJ7 Fe S metabolism associated SufE 0.000794794355656 7.1323222442e-05 -2.92074174468e+11 +UniRef50_A5UMA7 0.0017447023499 0.00202861426839 1.14618725485e+11 +UniRef50_UPI0003628360 hypothetical protein 4.91017747414e-05 1.33407276149e-05 -14437173562.4 +UniRef50_A5UL43 Oligosaccharyl transferase, STT3 subunit 0.00373692515796 0.00112732882079 -1.05352606466e+12 +UniRef50_UPI000470DB6F hypothetical protein, partial 7.87580963672e-06 1.63779145671e-05 3432404092.95 +UniRef50_E3D3R3 LPS biosynthesis protein related protein 0.000103044400964 0.00214631090103 8.24891759778e+11 +UniRef50_A6M109 Auxin Efflux Carrier 0.00012653161638 0.00105118232833 3.73292839154e+11 +UniRef50_Q03JU0 Transposase 0.0279697671823 0.0140827310523 -5.60636689878e+12 +UniRef50_K6X7D8 0.000273979409355 0.000104865045787 -68273543839.0 +UniRef50_D2NRJ6 Molybdopterin guanine dinucleotide biosynthesis protein A 4.18064878025e-06 1.82094986351e-05 5663618839.77 +UniRef50_D4GB36 FeS assembly ATPase SufC 0.000758052080383 0.000867666143222 44252542283.9 +UniRef50_E6NPZ4 Methyl accepting chemotaxis protein 0.000138388326188 0.00560959451001 2.20879307566e+12 +UniRef50_Q56954 Chelated iron transport system membrane protein YfeC 0.00466394107148 0.00116953026281 -1.4107365247e+12 +UniRef50_P24216 Flagellar hook associated protein 2 0.00217127191781 0.00202180037365 -60343496599.5 +UniRef50_X5EK07 6.17564031299e-05 0.000201999711568 56617944595.3 +UniRef50_A0A011NP07 4 alpha glucanotransferase 1.81349195652e-05 0.000776063703528 3.05985150918e+11 +UniRef50_P45682 Lipoprotein NlpD LppB homolog 0.00060916906941 0.00041601110431 -77980240825.6 +UniRef50_I6T6E7 0.00476411949327 0.00175296451659 -1.21564021511e+12 +UniRef50_G7I860 NADH ubiquinone oxidoreductase chain 3.92025421638e-05 0.000115111400054 30645337436.7 +UniRef50_O00217 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 7.6099688775e-05 1.0561909728e-05 -26458405640.3 +UniRef50_U3T764 0.000442366393186 0.00166037704991 4.91725848789e+11 +UniRef50_Q6VRN6 Cag17 0.000258257232969 0.00153093308729 5.13794859878e+11 +UniRef50_A6TBU8 L rhamnonate dehydratase 0.00222307400377 0.00016528920067 -8.30752976871e+11 +UniRef50_UPI0003B65FB6 MULTISPECIES 1.45228010701e-05 3.04929786187e-05 6447356652.49 +UniRef50_UPI00042B11A5 Urease isoform 4 1.13374397336e-05 2.37308179848e-05 5003358883.86 +UniRef50_A6M2F4 Response regulator receiver protein 0.000174430559477 0.00161400728783 5.81174790828e+11 +UniRef50_Q3IV75 RES domain containing protein 0.0178043113312 0.00244403832052 -6.20113070617e+12 +UniRef50_A3PRF6 D amino acid dehydrogenase small subunit 0.000604843248227 0.00131841646354 2.8807826355e+11 +UniRef50_C6ST78 Serine protease 0.00592238070429 0.00519222251743 -2.94773820084e+11 +UniRef50_A3LGR5 Hypothetical 0.000155380294453 6.85413025425e-05 -35057966668.5 +UniRef50_F9V7S5 Metallo beta lactamase superfamily protein 0.00569590026432 0.00152106934186 -1.68543047433e+12 +UniRef50_A6M2T3 Phosphotransferase system, EIIC 0.000334460340093 0.00262156722985 9.23333117354e+11 +UniRef50_UPI0002B42FAD PREDICTED 0.000422558942747 3.57040782652e-05 -1.56178056034e+11 +UniRef50_A3PXZ4 Uridylate kinase 0.000341640384292 0.00258387222873 9.05216510879e+11 +UniRef50_UPI0004654176 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000247244038159 0.000414910713246 67689094234.1 +UniRef50_Q9RXQ2 Pyruvate dehydrogenase E1 component 4.43579305384e-05 0.0448182921925 1.80757866995e+13 +UniRef50_E6SJV1 TRAP transporter solute receptor, TAXI family 1.22505073205e-05 1.00790741798e-05 -876634205.382 +UniRef50_UPI0003D0B25A PREDICTED 2.88208036847e-05 5.24802227491e-05 9551597810.02 +UniRef50_A7HWY8 3.02691333502e-05 3.8924509416e-05 3494281531.17 +UniRef50_D3V7P4 Multidrug resistance protein MdtC 0.00193114069126 0.000409765965806 -6.14197646031e+11 +UniRef50_Q57251 Putative L lactate permease 0.000305670500108 0.00282951903646 1.01890862523e+12 +UniRef50_UPI0003B7A308 MarR family transcriptional regulator 1.33705663331e-05 2.29161791458e-05 3853681030.33 +UniRef50_A9WNC8 ATP synthase subunit beta 1.54715557594e-05 0.011927164214 4.80889649902e+12 +UniRef50_UPI0003B39EAE riboflavin synthase subunit alpha 7.36331468547e-06 2.41756831109e-05 6787359444.29 +UniRef50_UPI000414CEF0 ATP dependent DNA helicase PcrA 1.94945348971e-05 9.74496669216e-06 -3936020324.99 +UniRef50_A1AZE4 Nucleoside ABC transporter membrane protein 0.00335986080682 0.000801525340307 -1.03283142214e+12 +UniRef50_Q8TV83 Imidazole glycerol phosphate synthase subunit HisH 2.31354705405e-05 9.2068392276e-06 -5623159384.54 +UniRef50_UPI0003B6B799 diguanylate cyclase 8.50124020438e-06 7.37682655156e-06 -453939589.751 +UniRef50_Q8DYL9 Glycosyl transferase, family 8 0.000431772176499 0.000147290127271 -1.14848894261e+11 +UniRef50_E9CIL8 5.6379384589e-05 7.59494312532e-05 7900667989.82 +UniRef50_P10367 Histidine biosynthesis bifunctional protein HisIE 0.00156204051043 0.00243912204065 3.54088576751e+11 +UniRef50_UPI0003714C23 hypothetical protein 3.9018741801e-05 7.49156200146e-05 14492010239.1 +UniRef50_UPI0003C73FC0 phosphonate ABC transporter 0.000149258751354 4.33446972257e-05 -42758803363.1 +UniRef50_C1DGV0 Glycosyl transferase, group 1 9.98640182185e-05 0.000156252224977 22764611029.5 +UniRef50_UPI000375CFC4 hypothetical protein 0.000145747741208 3.65044550793e-05 -44102855176.1 +UniRef50_B7V1T0 Urease subunit beta 7.74442616791e-05 3.83477205946e-05 -15783753404.3 +UniRef50_O34742 Glycine betaine carnitine choline transport system permease protein OpuCD 0.0321664789188 0.0138296580657 -7.40279959649e+12 +UniRef50_UPI000369F7C5 hypothetical protein 4.51016515952e-06 1.31523064377e-05 3488938485.0 +UniRef50_Q39BJ9 0.000148169841899 2.29293596738e-05 -50561119547.8 +UniRef50_D0DDW6 Replication protein C 0.000225084197754 6.41021940809e-05 -64990410354.1 +UniRef50_D6SCB4 ABC transporter, ATP binding protein 0.0202443875171 0.00580152135911 -5.83076230188e+12 +UniRef50_X6K2H2 0.000245083691684 5.51731384167e-05 -76669220818.4 +UniRef50_X0W523 Marine sediment metagenome DNA, contig 8.18740114287e-06 9.79476848199e-06 648913919.418 +UniRef50_P31679 Putative metabolite transport protein YaaU 0.00241754832124 0.00095388903908 -5.90897213327e+11 +UniRef50_V9GEY6 Selenophosphate dependent tRNA 2 selenouridine synthase 3.06716317192e-05 2.45371921675e-05 -2476548525.06 +UniRef50_A0A023SIR8 rRNA methyltransferase 0.00745848439018 0.00467557966167 -1.12349278898e+12 +UniRef50_UPI00028947D1 hypothetical protein 3.85401552572e-05 1.59736840924e-05 -9110361330.97 +UniRef50_UPI0002F02B73 5 oxopent 3 ene 1,2,5 tricarboxylate decarboxylase 9.82375172877e-06 2.41477877312e-05 5782789109.86 +UniRef50_A9BDW2 Na+ melibiose symporter 2.90166973169e-05 4.29910146347e-06 -9978796765.03 +UniRef50_Q9PDT5 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00969962373736 0.00348631515657 -2.50838891994e+12 +UniRef50_Q9UQ39 RNA binding protein 2.24666261322e-06 6.21310444839e-05 24176059825.2 +UniRef50_Q8SDK3 Phi PVL orfs 18 19 like protein 0.0211207095346 0.00399663406174 -6.91319940445e+12 +UniRef50_A6LR61 Diguanylate cyclase 0.000420747673314 0.000842556314044 1.70289324437e+11 +UniRef50_A5CD22 UDP N acetylmuramate L alanine ligase 1.12271216127e-05 5.2136403565e-06 -2427716176.84 +UniRef50_UPI000374D78C hypothetical protein 1.4659643565e-05 1.02641043653e-05 -1774533114.25 +UniRef50_L5S2T2 2.9257635869e-05 0.00053693946399 2.04957383969e+11 +UniRef50_A5UN24 Adhesin like protein 0.00270584962373 0.000854616689923 -7.47365452562e+11 +UniRef50_UPI0003EB198B lactoylglutathione lyase, partial 0.000383168756012 0.000183207817571 -80726684645.3 +UniRef50_D4YPZ1 4.62201281565e-05 0.000151833781585 42637527914.2 +UniRef50_UPI000381F0C9 resolvase 5.45648423422e-05 2.78080083112e-05 -10802062241.6 +UniRef50_A9GRS6 5.34334130212e-06 0.000321385808935 1.27590222461e+11 +UniRef50_Q4QKB5 Dihydroorotate dehydrogenase 9.9026317861e-06 1.66783081622e-05 2735423699.93 +UniRef50_UPI00042C50B5 PREDICTED 2.55460648813e-05 0.000121628143044 38789514014.0 +UniRef50_UPI00041CB2A5 MerR family transcriptional regulator 0.000237609763645 3.23594432694e-05 -82862073040.5 +UniRef50_B6YRL9 Dihydroorotate dehydrogenase B ), catalytic subunit 0.000449005832347 0.00118517636385 2.97201077396e+11 +UniRef50_Q0VMD0 Biotin synthase 0.00217654548435 0.0019128712217 -1.06448535479e+11 +UniRef50_UPI000479EB6C phosphohydrolase 4.3341075591e-06 1.32591091416e-05 3603132660.94 +UniRef50_W4UE45 Hypothetical membrane protein 4.50633543808e-05 0.000258453622052 86148269651.8 +UniRef50_Q1C165 Phosphopentomutase 0.00297725561472 0.000411712695375 -1.03574115929e+12 +UniRef50_I6XSN2 Peptidase, M50 family 0.00025927090726 0.00509547304371 1.95243414936e+12 +UniRef50_W0EW28 Fe S metabolism protein SufE 3.56118085066e-05 0.000991079264076 3.85733936717e+11 +UniRef50_UPI00047DC7BF hypothetical protein 5.22788846945e-06 1.11036602501e-05 2372121171.68 +UniRef50_UPI00037BA2E6 hypothetical protein 5.75506280517e-06 1.24632472179e-05 2708176366.1 +UniRef50_B0LU82 Putative plasmid transfer protein 1.19565724987e-05 2.80863970495e-05 6511808106.36 +UniRef50_R8X1X2 0.00140563411964 0.000235322099157 -4.72469324011e+11 +UniRef50_UPI000299FFB6 50S ribosomal protein L6 1.04711803038e-05 0.000358799137379 1.40624270736e+11 +UniRef50_UPI00036AB26C hypothetical protein 3.68578667178e-05 1.76241611038e-05 -7764882980.48 +UniRef50_A4STH4 Anaerobic nitric oxide reductase flavorubredoxin 0.000961559888062 0.00030097559384 -2.66685985858e+11 +UniRef50_F2MTI0 3 dehydroquinate synthase 0.00565285676654 0.00381054422471 -7.43764180854e+11 +UniRef50_Q6L8K7 Acetyl CoA acetyltransferase 1.14451936074e-05 9.38261325791e-05 33258195990.7 +UniRef50_UPI00047E7907 membrane protein 7.78875803448e-06 1.22268826552e-05 1791725371.3 +UniRef50_F6BN92 Tetracycline transcriptional regulator YcdC domain containing protein 0.0148694259993 0.00321942413994 -4.70324871224e+12 +UniRef50_P50096 Inosine 5 monophosphate dehydrogenase 1 2.22252970972e-05 9.593921748e-06 -5099441232.88 +UniRef50_UPI0003B755F7 integrase, partial 0.000302300534386 1.54252667425e-05 -1.15815065903e+11 +UniRef50_M1N659 Diguanylate phosphodiesterase 0.000162011154012 0.000297050328755 54516971960.8 +UniRef50_P0AEA4 Curli production assembly transport component CsgG 0.00299335305764 0.000851875111142 -8.64540925892e+11 +UniRef50_Q9RXZ7 9.01622545675e-05 0.0149264844492 5.98960533211e+12 +UniRef50_A0A024E690 8.80749289374e-05 1.1709621389e-05 -30829611765.0 +UniRef50_Q16740 ATP dependent Clp protease proteolytic subunit, mitochondrial 5.74951822303e-06 6.30203818348e-05 23120950432.6 +UniRef50_UPI00046321A5 hypothetical protein 4.55273926335e-05 1.1131607706e-05 -13886000459.0 +UniRef50_E8NEK5 1.10318091125e-05 2.11398089243e-05 4080723563.13 +UniRef50_A8NPH0 8.89217692499e-06 7.66275507963e-06 -496332685.674 +UniRef50_UPI00041CFDCE hypothetical protein 7.79283912875e-05 6.69724403366e-05 -4423051843.52 +UniRef50_Q2GK85 Malate dehydrogenase 1.90186025744e-05 1.67353528245e-05 -921775942.66 +UniRef50_Q4TCA6 Chromosome 1 SCAF7036, whole genome shotgun sequence. 9.36006871689e-06 3.40699686329e-05 9975689820.66 +UniRef50_Q9ZL74 Molybdenum cofactor guanylyltransferase 0.000203313818048 0.00305284140119 1.15038925295e+12 +UniRef50_Q6G5Z1 Putative ABC transporter ATP binding protein SAS2569 0.0120344093833 0.00643679198147 -2.25982683561e+12 +UniRef50_Q9RV79 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000100484291618 0.0370931619179 1.49343979089e+13 +UniRef50_O82392 Phosphomethylpyrimidine synthase, chloroplastic 8.57273252495e-05 0.0350158556472 1.41017214445e+13 +UniRef50_UPI0003C10FC0 1.78071968861e-05 6.56615753094e-06 -4538145530.76 +UniRef50_M9S4J7 0.000331236656831 0.000561921379301 93130253281.0 +UniRef50_Q5ZW64 Flagellar P ring protein 0.00358054901382 0.000938689870759 -1.06655095531e+12 +UniRef50_UPI000378C9B2 hypothetical protein 8.79989050976e-05 1.11661033964e-05 -31018344891.3 +UniRef50_Q1CEX0 UPF0301 protein YPN_3133 0.00602198628879 1.50680740527e-05 -2.42506659647e+12 +UniRef50_J9YRU2 0.000853669101669 0.00026565220857 -2.37389635523e+11 +UniRef50_U5DDJ2 TRAP transporter solute receptor, TAXI family 6.7085528789e-06 4.46587138785e-05 15320945696.4 +UniRef50_K2FX44 1.04065324232e-05 1.92631149696e-05 3575511056.47 +UniRef50_J2LA76 0.000624867057649 0.000161976962407 -1.86874411749e+11 +UniRef50_UPI00046889D2 hypothetical protein 1.1641202422e-05 3.20591483159e-05 8242975313.74 +UniRef50_UPI00022CA944 PREDICTED 3.4286044744e-06 5.38475288585e-06 789721118.343 +UniRef50_X7UD14 Protein dipZ 2.88991320424e-05 2.18035387061e-05 -2864578102.59 +UniRef50_UPI00032895ED PREDICTED 1.74716485148e-05 0.000120190595637 41468899456.4 +UniRef50_UPI00037FC52E hypothetical protein 3.86661336639e-05 1.47342387998e-05 -9661599634.01 +UniRef50_A3CP60 Glycosyl transferase, putative 0.00428442162741 0.00142725195492 -1.1534744582e+12 +UniRef50_B7I7I0 0.000312833692416 0.019301652821 7.66601930123e+12 +UniRef50_A6LZA6 Histidine kinase 0.000129423767612 0.000614169981592 1.95697995089e+11 +UniRef50_UPI00046EE93F hypothetical protein 7.11566646712e-05 1.55098193054e-05 -22465314337.8 +UniRef50_P9WJQ4 Molybdopterin molybdenumtransferase 2 8.88466524069e-06 9.43675917654e-06 222887096.857 +UniRef50_F5M4L1 0.000567822872047 0.000391147953907 -71325832498.2 +UniRef50_Q1GGT9 Phosphoribosyl AMP cyclohydrolase 1.52229105705e-05 6.03250440327e-05 18208284744.1 +UniRef50_C3P5A0 Demethylmenaquinone methyltransferase 0.0203666966326 0.00295066781167 -7.0310645537e+12 +UniRef50_Q5ZI49 Ribose phosphate pyrophosphokinase 2 3.19824680549e-05 6.28074264308e-05 12444413961.1 +UniRef50_A5UKS7 Transcriptional regulator, MarR family 0.00501779224744 0.00118830996847 -1.54600898905e+12 +UniRef50_UPI00046A6374 hypothetical protein 5.3870991382e-05 1.55306631778e-05 -15478460984.8 +UniRef50_H7KDR0 Anaphase promoting complex, cyclosome, subunit 3 family protein 1.39140239876e-05 0.000249563412836 95134550021.1 +UniRef50_F2E8Q7 Predicted protein 1.53109943174e-05 2.36616231369e-05 3371251328.17 +UniRef50_UPI00047AC4C6 hypothetical protein 2.85618335366e-05 7.11462876788e-05 17191866707.2 +UniRef50_G2Z8U2 2.01781779603e-05 0.000673676653338 2.63825353838e+11 +UniRef50_Q12MN3 Putative phosphoenolpyruvate synthase regulatory protein 4.05184212668e-05 3.72121888164e-05 -1334766612.26 +UniRef50_UPI0002FA2625 hypothetical protein 2.13524444971e-05 7.37194517195e-05 21141203431.1 +UniRef50_F0I702 5.79265807114e-05 1.04018592072e-05 -19186313265.2 +UniRef50_X1JCC9 Marine sediment metagenome DNA, contig 1.43157408247e-05 6.88027091407e-06 -3001790446.4 +UniRef50_UPI0003609B11 hypothetical protein 3.00375648912e-05 0.000176018516112 58934301395.6 +UniRef50_K2JK23 2.31465442468e-05 4.02520604098e-05 6905706783.29 +UniRef50_Q6G930 Probable glycine dehydrogenase subunit 1 0.0225153263841 0.00503067699706 -7.05876751831e+12 +UniRef50_L0IML0 ABC type nitrate sulfonate bicarbonate transport system, periplasmic component 0.000452562708785 0.00275110471604 9.27949614613e+11 +UniRef50_A1IRX0 4.89225818179e-05 0.00105554653855 4.06386443997e+11 +UniRef50_UPI00036605EC hypothetical protein 0.000630043928863 0.000469643104098 -64755781297.1 +UniRef50_UPI00047AF6CE restriction endonuclease 1.81302153688e-06 0.00120768417974 4.86824984268e+11 +UniRef50_Q6N535 ATP dependent Clp protease adapter protein ClpS 2 0.000353893114548 0.0151174027659 5.96021001491e+12 +UniRef50_Q9LPW0 Glyceraldehyde 3 phosphate dehydrogenase GAPA2, chloroplastic 6.45801536053e-05 2.47912334726e-05 -16063275322.5 +UniRef50_Q6AFK7 3 isopropylmalate dehydratase large subunit 0.0316638872649 0.0108507885029 -8.40250337566e+12 +UniRef50_Q6AJF8 3 oxoacyl [acyl carrier protein] synthase 3 2.10522133563e-05 7.25092985071e-06 -5571747512.0 +UniRef50_C7JHV1 Transposase 0.000266064644591 0.000113716654793 -61504753001.5 +UniRef50_G7ZR43 0.015951367075 0.00581044614024 -4.09401422447e+12 +UniRef50_B1AJD3 Glycine tRNA ligase 0.0179432179669 0.00751718549069 -4.20911725245e+12 +UniRef50_UPI0003C104A0 1.45480708843e-05 1.76372454175e-06 -5161197500.04 +UniRef50_B2TPY0 Vancomycin B type resistance protein VanW 0.000275328181515 0.000948459646978 2.71751432859e+11 +UniRef50_Q9K0I2 Phosphoenolpyruvate synthase 0.0030990344491 0.0149928482711 4.80167859345e+12 +UniRef50_G7U8X0 Drug resistance MFS transporter, drug 0.000169349946022 0.00530116903656 2.07177834135e+12 +UniRef50_E6PX09 0.000178820670491 0.000123541442614 -22316902646.4 +UniRef50_UPI000359A0D1 PREDICTED 2.33737811333e-06 4.1325560867e-05 15740007816.5 +UniRef50_UPI0003698208 hypothetical protein 1.66806906883e-06 5.5997762392e-06 1587278432.15 +UniRef50_UPI0003B69E18 membrane protein 4.70523733846e-05 5.60016793901e-05 3612944654.75 +UniRef50_UPI0003B51B40 protein export membrane protein SecD, partial 3.65251948803e-06 1.09341001003e-05 2939663448.22 +UniRef50_Q893Q5 4 methyl 5 thiazole monophosphate biosynthesis enzyme 0.000723380590955 0.000528925442146 -78503929807.2 +UniRef50_B7I6U8 0.000213268920259 0.0102762913914 4.06256565876e+12 +UniRef50_Q097C2 0.000141210881602 4.85284312551e-05 -37417042546.6 +UniRef50_P0A3Q0 4 alpha glucanotransferase 0.00545378413218 0.00602578427191 2.3092347564e+11 +UniRef50_C6SP30 0.00382213845986 0.00262027920066 -4.85205331411e+11 +UniRef50_Q09AF1 Ribose transport system permease protein RbsC 0.00739949871433 0.00122845112877 -2.49132763756e+12 +UniRef50_K7SFB2 0.000118234072579 0.000229928120412 45092257750.3 +UniRef50_UPI00028877F3 peptide ABC transporter permease 2.46183002323e-06 4.02927422823e-05 15272803516.5 +UniRef50_B1J061 UPF0178 protein YaiI 0.00282646384514 2.52516943684e-05 -1.13088372e+12 +UniRef50_UPI00046A4EAB membrane protein 2.62448552719e-06 3.97437744562e-06 544967932.507 +UniRef50_P0ACD8 Hydrogenase 1 large chain 0.00180271543214 0.000489111128395 -5.30318177157e+11 +UniRef50_V7ZPF8 0.000261213588882 9.16344514465e-05 -68461178752.9 +UniRef50_W7QBW2 Immunogenic protein 5.79365472022e-05 6.87716454438e-05 4374262121.74 +UniRef50_C1D094 GTPase Der 0.00040460996081 0.0538097911183 2.15603269886e+13 +UniRef50_X6DLZ2 0.00013878102636 5.40204635215e-05 -34218879347.0 +UniRef50_UPI0004716F0E ribonuclease J 1.20744494936e-05 4.68382089622e-05 14034556296.8 +UniRef50_UPI0002B8D004 hypothetical protein 9.11892253654e-05 0.000454904712919 1.46836405616e+11 +UniRef50_UPI0004681C8E hypothetical protein, partial 1.29166969302e-05 0.000504507901653 1.98461401849e+11 +UniRef50_R9YN68 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase 0.0191630867459 0.00595301160108 -5.33306944181e+12 +UniRef50_Q6FEV8 3 isopropylmalate dehydratase small subunit 0.000834014443975 0.00097657505395 57553467662.3 +UniRef50_A6M0Q7 Methyl accepting chemotaxis sensory transducer 0.00039982652249 0.00183214571578 5.78244834864e+11 +UniRef50_P40711 Peptidyl tRNA hydrolase ArfB 0.00836595279523 0.00127474836775 -2.86280624624e+12 +UniRef50_B0V969 Homoserine kinase 0.000354742120506 0.00653437842298 2.49479500797e+12 +UniRef50_UPI000287CE50 ABC transporter periplasmic protein, partial 0.000110351733145 0.000218654012219 43722959080.6 +UniRef50_D3DZ73 Methanogenesis marker protein 6 0.00191227824473 0.00191433466534 830202235.376 +UniRef50_Q5V5M1 Nucleoside diphosphate kinase 1.3797390658e-05 9.63126384725e-05 33312418118.7 +UniRef50_UPI0004026C93 ABC transporter permease 1.85351307089e-05 2.26638372701e-05 1666809503.68 +UniRef50_A7ZK57 3 hydroxydecanoyl [acyl carrier protein] dehydratase 0.00857343777211 0.00448946348716 -1.64875053483e+12 +UniRef50_W4M3I0 7.95754998163e-05 3.45627829562e-05 -18172186164.6 +UniRef50_A4VQM5 Alanine racemase 0.000426107902714 1.46662887648e-05 -1.66104028508e+11 +UniRef50_B9EBJ3 GTPase HflX 0.0214869546136 0.00504292918386 -6.63865485685e+12 +UniRef50_Q4W573 Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion 0.000166395904536 0.00351535053073 1.35201407889e+12 +UniRef50_R6FSH7 Oxidoreductase 0.000305692302144 0.00139886339576 4.41326585212e+11 +UniRef50_F9M5F2 0.00253103632371 0.000671174329992 -7.50849109938e+11 +UniRef50_A1BD29 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.0101549503353 0.00758757588134 -1.03648057229e+12 +UniRef50_M5RG91 Glutamate binding periplasmic protein 0.000300308843189 8.69907841199e-05 -86119118153.1 +UniRef50_R9SIF8 NADPH dependent FMN reductase 0.00441212340654 0.000269695621179 -1.67234893026e+12 +UniRef50_K7RVB3 DNA recombination RmuC like protein 0.000128251185346 0.00404327604741 1.58054357957e+12 +UniRef50_D3E1G5 Cobalamin biosynthesis protein CbiX 0.00249269505297 0.000206756152991 -9.22861585547e+11 +UniRef50_A0KJ40 Nucleoside diphosphate kinase 0.000105895074201 5.03817715469e-05 -22411401506.3 +UniRef50_UPI000466CC16 hydantoinase 2.12039564499e-06 3.8205932323e-06 686390629.768 +UniRef50_UPI0003B508F0 GntR family transcriptional regulator 0.000182113862877 1.97874144715e-05 -65533179190.6 +UniRef50_P27868 Acetolactate synthase 1.59158413179e-05 1.74274645322e-05 610260841.316 +UniRef50_UPI00035F1C59 50S ribosomal protein L3 4.8815993232e-06 4.12397291338e-05 14678223169.0 +UniRef50_F9YZE2 0.00121769673823 0.00265747758288 5.81257195083e+11 +UniRef50_M5S2J2 Phytoene desaturase 7.56203519325e-06 2.62545425185e-05 7546394590.04 +UniRef50_H6LML3 0.00732700741234 0.000710734470096 -2.67107057758e+12 +UniRef50_A6LT68 Phage tail tape measure protein, TP901 family 0.000376588911931 0.00161627477518 5.0047639565e+11 +UniRef50_UPI00036C1C23 hypothetical protein 2.62379544808e-05 0.000202268081362 71065522354.4 +UniRef50_A5UNK4 Ribose phosphate pyrophosphokinase 0.00237514630933 0.000613379542215 -7.11246863192e+11 +UniRef50_UPI00035CAC38 hypothetical protein 1.09907747246e-05 3.82473031103e-05 11003794984.5 +UniRef50_UPI0003EDD3EB hypothetical protein, partial 0.000142209152858 3.38698464644e-05 -43737907464.0 +UniRef50_P33235 Flagellar hook associated protein 1 0.00645460594033 0.00145125389464 -2.01991461888e+12 +UniRef50_UPI000379C48D hypothetical protein 0.00016946093568 2.97295822483e-05 -56411262077.0 +UniRef50_F6GB14 Multidrug efflux system transmembrane protein 0.00122869387626 0.000186123973868 -4.20898263366e+11 +UniRef50_Q4L5F4 Succinate dehydrogenase iron sulfur protein subunit 0.00861888355762 0.00652693343613 -8.4454593516e+11 +UniRef50_Q2G1T7 HTH type transcriptional regulator SarU 0.00585404427429 0.00031031527691 -2.23807142545e+12 +UniRef50_UPI0002EB7833 hypothetical protein 7.53958815615e-05 0.000129877625108 21994948435.9 +UniRef50_E8NHH4 WGS CADB00000000 data, contig 29 1.83710134169e-06 3.02034824759e-06 477691295.984 +UniRef50_F0LGR4 Sugar ABC transporter, substrate binding protein 0.0164645471064 0.00437631137942 -4.88016910232e+12 +UniRef50_P56867 Hexagonally packed intermediate layer surface protein 8.6532816985e-05 0.0586772850657 2.36538056722e+13 +UniRef50_K0S670 0.000181623358584 0.00011140691636 -28347239378.5 +UniRef50_I4CPJ8 C type cytochrome 0.000452232072348 0.000481873327421 11966538412.1 +UniRef50_G7MDF6 0.00246186514469 0.00246461897019 1111753147.59 +UniRef50_UPI0003B56D5B 50S ribosomal protein L25 0.00024736567556 5.52852819292e-05 -77545212000.3 +UniRef50_A0A024HXA7 7.2666456613e-06 2.5565016226e-06 -1901542948.39 +UniRef50_F5M453 McpA 0.0134221912944 0.00437343828673 -3.65309262988e+12 +UniRef50_B0C6R3 Phosphoribosylformylglycinamidine synthase 2 2.28681721834e-05 5.91964645531e-06 -6842327818.23 +UniRef50_A0A023RWA6 Sugar kinase 0.000592791302586 0.00931103658267 3.51966260447e+12 +UniRef50_UPI00036BDA1B hypothetical protein 4.34393184712e-06 6.24777549309e-05 23469337761.2 +UniRef50_Z1Y9N5 Replication initiator protein 4.99800439334e-05 6.66917058327e-06 -17485131055.6 +UniRef50_UPI00047572A2 tRNA delta isopentenylpyrophosphate transferase 1.27262992751e-05 1.10964415817e-05 -657993551.429 +UniRef50_V5LMT9 0.000329810918888 1.05549456817e-05 -1.28887554095e+11 +UniRef50_UPI0001FFF28B gas vesicle protein, partial 0.000297823836508 0.00014347771065 -62311425048.8 +UniRef50_Q7VID0 0.000311293795653 0.00207864427227 7.13501075241e+11 +UniRef50_Q74LG0 Xanthine uracil permease 0.0131384593797 0.00981282502988 -1.34259939714e+12 +UniRef50_Q6F8J4 DNA primase 0.000137813181635 0.00513690355464 2.01819412932e+12 +UniRef50_K2ADM0 0.000223966747393 7.69496656024e-05 -59352600021.5 +UniRef50_A0A031M1H9 Membrane protein 0.000109756430919 2.44832277232e-05 -34425838550.0 +UniRef50_R9SKE6 Iron dependent repressor 0.0012000667335 0.00123981832645 16048205880.8 +UniRef50_B8JFW2 Lysine tRNA ligase 3.34808825313e-06 1.38960118047e-05 4258326175.36 +UniRef50_Q8FEA4 0.000298015254361 3.40211676833e-05 -1.06577652364e+11 +UniRef50_A1U241 Uracil phosphoribosyltransferase 0.0228969774573 0.0103019115255 -5.08478267551e+12 +UniRef50_V8G0X5 Cell wall binding protein 0.00024406421693 0.00154979927826 5.2714126743e+11 +UniRef50_UPI0001711954 GTPase CgtA 1.02665299403e-05 0.000322260203442 1.25955674586e+11 +UniRef50_X1HTP5 Marine sediment metagenome DNA, contig 3.30005017778e-05 1.60199051908e-05 -6855275217.52 +UniRef50_R5HYZ8 0.000641569765233 0.00114989539398 2.05217294182e+11 +UniRef50_R5NRV6 Pseudouridine synthase 0.000185345002706 0.00124600013658 4.28199493245e+11 +UniRef50_D3VHY7 0.000144806323419 0.00154791136297 5.66450722501e+11 +UniRef50_UPI0003A646A2 GTP pyrophosphokinase 3.07170517092e-06 2.2115603808e-05 7688255574.71 +UniRef50_B4THT3 UPF0257 lipoprotein YnfC 0.00603801021806 0.00201829258749 -1.62280933494e+12 +UniRef50_UPI00037C47E4 hypothetical protein 1.00591167078e-05 0.000113885406142 41915947136.4 +UniRef50_E1ZV58 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.000756740954738 0.00950729585502 3.53270639463e+12 +UniRef50_W6QS47 Methyl accepting chemotaxis transducer 0.000117685283211 0.000505401404423 1.56525755945e+11 +UniRef50_L0A178 Putative branched chain amino acid permease 2.88801632582e-05 1.51749840629e-05 -5532949022.6 +UniRef50_E2ZSI9 0.000165564030199 0.000174512500284 3612607183.39 +UniRef50_B2V1Q0 0.000365903001277 0.000287646141427 -31593254641.1 +UniRef50_UPI0003B54C8A ATP dependent DNA helicase Rep 5.41995110964e-06 5.21076761009e-06 -84449945.7385 +UniRef50_F8KJ61 DNA 3 methyladenine glycosylase I 0.0149788462382 0.00268543931711 -4.96299923112e+12 +UniRef50_UPI0003777478 hypothetical protein 8.72222562852e-06 1.96122410127e-05 4396432846.12 +UniRef50_F2JLA6 Transposase 0.000705511244232 0.00160480536173 3.63056070814e+11 +UniRef50_UPI00035F7004 hypothetical protein 8.08619725874e-06 0.000210842688373 81855283564.7 +UniRef50_UPI00046A5F56 hypothetical protein 5.36217331936e-06 0.000155566306503 60639251778.4 +UniRef50_W5T9B1 1.28938584919e-05 0.000177795542929 66572833578.4 +UniRef50_C6NYG1 Flagellar biosynthesis protein FlhA 2.18276252868e-06 2.76787835919e-05 10293056574.6 +UniRef50_UPI000262C262 transposase 1.35860460184e-05 1.4678155287e-05 440897913.422 +UniRef50_L1K4Y6 0.000786429143437 0.00521147126815 1.78644380712e+12 +UniRef50_D4HAB8 Aminodeoxychorismate synthase, component I 0.000200949521046 0.00568182059207 2.21269490922e+12 +UniRef50_UPI0003C75D29 pirin 7.40047974763e-06 6.54218643181e-06 -346503544.04 +UniRef50_UPI0003648088 hypothetical protein, partial 0.000157370615557 0.000121341576631 -14545365140.5 +UniRef50_P26171 Bacteriochlorophyll synthase 44.5 kDa chain 0.000380638314925 1.25398873072e-05 -1.48605852305e+11 +UniRef50_UPI0003B578F4 peptidase M22 8.87192701375e-06 1.89972957195e-05 4087735598.74 +UniRef50_G8PES7 Glycosyl transferase 2 family protein 9.18457393789e-05 0.00440512544523 1.74132394715e+12 +UniRef50_B9E294 9.06691726615e-05 0.0022097498788 8.55498885113e+11 +UniRef50_UPI00036DA897 hypothetical protein 5.69108943928e-06 0.000134081463952 51832769718.0 +UniRef50_Q28PP3 Binding protein dependent transport systems inner membrane component 0.0125216683248 0.00467375152732 -3.16830031591e+12 +UniRef50_UPI0002EEB552 hypothetical protein 2.52264351431e-05 4.73736553645e-05 8941104580.33 +UniRef50_A1K3T2 Phosphoheptose isomerase 1.96691480587e-05 2.5732758158e-05 2447953805.95 +UniRef50_Q9RVZ7 O acetylhomoserine lyase 6.72081879274e-05 0.0362525247629 1.46084563451e+13 +UniRef50_UPI0004268C03 hypothetical protein 1.91033687858e-05 1.35290014587e-05 -2250440495.13 +UniRef50_UPI00034D0CB3 hypothetical protein 6.73260512196e-05 9.57238054426e-06 -23315865568.9 +UniRef50_A2ZQQ8 0.000131243816208 0.00017103598022 16064584916.4 +UniRef50_UPI00035A2A22 PREDICTED 6.76324128988e-06 1.01173852143e-05 1354109062.26 +UniRef50_W2CS51 2.26614179847e-05 3.40327153341e-05 4590732281.46 +UniRef50_C6S4V7 Transcriptional regulator, AraC family 0.000135299637578 0.00479043814848 1.87933654182e+12 +UniRef50_Q5HPM6 0.00109947375394 0.00196877803463 3.50948805678e+11 +UniRef50_C1D0F7 Aminomethyltransferase 4.44125679321e-05 0.000330736656182 1.15592548018e+11 +UniRef50_Q5Z5L8 6.08768049985e-05 0.000409681954045 1.40816918991e+11 +UniRef50_Q5HPM0 0.000943714972126 0.000952634532885 3600936133.73 +UniRef50_UPI0003C7E085 acetylornithine aminotransferase 4.6303788115e-06 9.9769887881e-06 2158492057.84 +UniRef50_R6JRA3 7.45431579148e-06 1.23779204586e-05 1987719623.54 +UniRef50_UPI00016AA163 hypothetical protein 0.00105267699221 0.000592971857003 -1.85588604299e+11 +UniRef50_J9YT54 2.73028196551e-05 3.81168692463e-05 4365764523.28 +UniRef50_Q66ED4 Sulfite reductase [NADPH] flavoprotein alpha component 0.000504020981913 0.00117356737802 2.70304096367e+11 +UniRef50_UPI000378803E hypothetical protein 6.16707822637e-06 1.54068762077e-05 3730219830.13 +UniRef50_V9WCN5 Serine pyruvate aminotransferase archaeal aspartate aminotransferase 0.000465397093427 0.000187106677001 -1.12349256119e+11 +UniRef50_UPI0004636D1A hypothetical protein 0.000325404348593 7.47695748767e-05 -1.01184333784e+11 +UniRef50_UPI00036F7C7E hypothetical protein 4.77789235249e-05 7.86297342514e-05 12454850872.3 +UniRef50_UPI00037CF289 hypothetical protein 6.87794211497e-05 2.11431082024e-05 -19231364100.1 +UniRef50_W7LMB8 3.31710007762e-05 5.19010026679e-05 7561531606.65 +UniRef50_UPI00036C6A8F hypothetical protein 6.2128955392e-06 0.0014038902234 5.64259488687e+11 +UniRef50_D7GUI6 TRAP transporter solute receptor, TAXI family 2.45350367133e-05 1.40208289931e-05 -4244714680.48 +UniRef50_A6M071 0.000504145084198 0.000505224962549 435960141.896 +UniRef50_UPI0003B45945 glycosyl transferase 3.26367563129e-05 1.7093285637e-05 -6275089851.7 +UniRef50_Q9P2T1 GMP reductase 2 0.003019874909 0.000185619234072 -1.1442237962e+12 +UniRef50_H8XBT6 Recombinase A 0.000135341645461 4.46246743994e-05 -36623554440.0 +UniRef50_Q8P558 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 6.98185396544e-06 0.00257358912199 1.03617084991e+12 +UniRef50_V5XU16 Replication initiator protein A 1.05771951185e-05 3.85457136832e-06 -2714005703.82 +UniRef50_Q8CUE8 0.0512549549357 0.00710261696862 -1.78248406474e+13 +UniRef50_Q8CUE9 0.0171736941222 0.000959617511552 -6.54582169679e+12 +UniRef50_Q8CUE6 0.00807024305529 0.00216629456746 -2.38349645413e+12 +UniRef50_Q8CUE4 0.0124821806548 0.00385142546669 -3.48434178072e+12 +UniRef50_Q8CUE5 0.00101253614459 0.000176884746785 -3.3736272389e+11 +UniRef50_Q8CUE2 0.00213368868259 0.00468761225963 1.03105028822e+12 +UniRef50_Q8CUE3 0.0220676404114 0.00786202891308 -5.73497968432e+12 +UniRef50_A4YPV8 0.000239608965621 0.000104018055452 -54739714322.8 +UniRef50_M0SZR5 0.000258287065004 0.000285113951854 10830343424.3 +UniRef50_UPI0004784CAD hypothetical protein 4.80409777298e-06 2.71764899036e-05 9032009243.25 +UniRef50_UPI0004738AE6 glyceraldehyde 3 phosphate dehydrogenase, partial 0.000100560209346 1.62442227101e-05 -34039398478.4 +UniRef50_I7AL68 Phosphoglycerate mutase family protein 5.03721412535e-05 0.00112095563913 4.32207695631e+11 +UniRef50_P0ABL3 Periplasmic nitrate reductase, electron transfer subunit 0.00142657392781 0.00184572940748 1.69218210759e+11 +UniRef50_R6U4B5 Transposase 0.000152244641929 0.000220349434455 27494740482.5 +UniRef50_Q8CNT1 Integrase 0.0175664100198 0.00378933031711 -5.56197613976e+12 +UniRef50_Q6MDQ6 NADH quinone oxidoreductase subunit K 1.26395194062e-05 2.37440837943e-05 4483048911.8 +UniRef50_UPI00016C4514 50S ribosomal protein L18 4.91986356719e-05 0.000295837452769 99571117060.7 +UniRef50_Q9JYT7 0.000437242458129 0.00294915342218 1.0140892808e+12 +UniRef50_G7UAA9 Transporter, major facilitator family protein 0.000246285914396 0.0045997293388 1.75753853319e+12 +UniRef50_B8CRT5 Homoserine O succinyltransferase 0.0054913811242 0.00230289634906 -1.28723043083e+12 +UniRef50_W0CEL3 6.3975109127e-05 0.000483282889277 1.69279696332e+11 +UniRef50_P77390 [Citrate [pro 3S] lyase] ligase 0.00462441753496 0.000355468702517 -1.72342702955e+12 +UniRef50_W0PAW0 Integral membrane protein 1.12156799708e-05 1.73394086213e-05 2472224402.81 +UniRef50_C1KVA6 Glycine tRNA ligase alpha subunit 2.69774432705e-05 0.00144060409347 5.70698425835e+11 +UniRef50_UPI0003F0AAA6 PREDICTED 3.20306420241e-06 2.3589291299e-06 -340787687.474 +UniRef50_M1N022 Histidinol phosphatase HisK 0.000145186918795 0.000647425084459 2.02759710634e+11 +UniRef50_Q5HNY9 Putative GTP cyclohydrolase 1 type 2 0.0173072481957 0.00631127026367 -4.43921122697e+12 +UniRef50_F8FMK7 Response regulator 0.00195623604944 0.001156140961 -3.23008205474e+11 +UniRef50_P85098 Respiratory nitrate reductase beta chain 3.67840965939e-05 3.40887612651e-05 -1088139947.72 +UniRef50_C6BUI7 Phosphoglycerate kinase 1.3208990039e-05 1.6535166779e-05 1342818366.72 +UniRef50_UPI000287D575 putative short chain dehydrogenase 3.15110908858e-05 0.000262028109379 93062549127.5 +UniRef50_O67161 Glyceraldehyde 3 phosphate dehydrogenase 0.0070473688668 0.00307509351284 -1.60365630569e+12 +UniRef50_U7DV00 5.39424189374e-05 0.000132479481228 31706375804.8 +UniRef50_X1T7L9 Marine sediment metagenome DNA, contig 0.000128556427828 0.000135969877078 2992900435.48 +UniRef50_P46130 Putative acyl CoA thioester hydrolase YbhC 0.00277354561524 0.000877733848288 -7.65362474544e+11 +UniRef50_T0GKT6 ABC transporter permease 6.06225279828e-06 7.65239614333e-06 641960381.65 +UniRef50_D5VAW9 Transporter 7.83165951945e-05 0.00879202114316 3.51782945519e+12 +UniRef50_M4R0I6 9.58897516131e-05 0.00700602380022 2.7897059123e+12 +UniRef50_D5ANC8 1.08947331048e-05 1.27350230827e-05 742947646.976 +UniRef50_T0BL71 0.000280244398175 5.34407199323e-05 -91563428100.8 +UniRef50_J7PRA1 Internalin E 2.19778961851e-05 0.00137013320297 5.44266841073e+11 +UniRef50_A9H8V7 0.0250567431707 0.000708052747062 -9.82986511604e+12 +UniRef50_A6WGM7 Cobyrinic acid ac diamide synthase 3.53655939347e-06 1.21082368182e-05 3460491362.67 +UniRef50_B2ULY3 NADH quinone oxidoreductase subunit K 5.36065968397e-05 6.39288051381e-05 4167202157.8 +UniRef50_C7C0M5 0.000158164520469 0.00198137557757 7.36052677067e+11 +UniRef50_P0ABC8 Protein HflK 0.00435588927897 0.000652150553898 -1.4952447733e+12 +UniRef50_Q4FU03 Pseudouridine synthase 0.000222050581675 0.00681598955466 2.66205408012e+12 +UniRef50_Q8FDG7 L tartrate succinate antiporter 0.00267953223578 0.000678329251449 -8.07910202296e+11 +UniRef50_Q6L8L1 Circadian clock protein kinase KaiC 4.61526391767e-05 1.3297255354e-05 -13264121630.1 +UniRef50_UPI000375D5D1 hypothetical protein 2.2028730887e-05 1.09746632909e-05 -4462662737.21 +UniRef50_A8AVA4 ABC transporter ATP binding protein 0.00493843513284 0.00128764774909 -1.47386766702e+12 +UniRef50_UPI0003805572 Fis family transcriptional regulator 3.5623302366e-05 2.00715540006e-05 -6278431656.52 +UniRef50_O68560 Ribosome association toxin RatA 0.00514753621162 0.00139519703241 -1.51486537303e+12 +UniRef50_A1JJ54 Autoinducer 2 import system permease protein LsrC 0.00427234772409 0.000946953356292 -1.34250251346e+12 +UniRef50_U6K454 7.71419899057e-05 1.31914161208e-05 -25817631398.8 +UniRef50_P09852 Exotoxin A regulatory protein 0.000297160948681 0.00144051255889 4.61585075544e+11 +UniRef50_A6LS16 Sigma 54 factor, interaction domain containing protein 0.00042836519913 0.00107766223372 2.62129180635e+11 +UniRef50_D5AT86 0.00134224984377 0.000146196388719 -4.8286145703e+11 +UniRef50_A3CNP4 Transcriptional regulator GntR family 0.00414922247107 0.00244720877664 -6.87123814498e+11 +UniRef50_A7MH24 NADH quinone oxidoreductase subunit C D 0.00482244427802 0.00189530888264 -1.18172047911e+12 +UniRef50_Q89AR9 NAD kinase 1.82859939085e-05 1.95001171328e-05 490156444.617 +UniRef50_Q0FLV7 6.46540453326e-05 3.13215183871e-05 -13456750164.0 +UniRef50_UPI00038316EF hypothetical protein 6.1309888747e-06 9.06750797388e-05 34131486954.5 +UniRef50_F2N563 0.000594119372543 0.00230491086981 6.9066752122e+11 +UniRef50_H8I380 8.70951731997e-05 3.73294577628e-05 -20091030015.9 +UniRef50_K8FGY8 DUF2188 family protein 0.0106521976682 0.00721230557044 -1.38872665209e+12 +UniRef50_A0A011PD71 0.00012309325723 0.000438973151202 1.27524589479e+11 +UniRef50_UPI000382A08A hypothetical protein 7.37894012985e-05 0.000164582262746 36654192320.1 +UniRef50_U6AC49 Phenazine specific methyltransferase PhzM 0.000338833908003 0.000488963615877 60609205367.4 +UniRef50_P80503 Dihydrolipoyl dehydrogenase 4.90602620711e-05 0.00015509848641 42808932401.0 +UniRef50_D7FVW5 8.66482012812e-05 0.000574734608727 1.9704647218e+11 +UniRef50_U5MVZ4 Sensor histidine kinase YclK 0.000219468598168 0.00077103118637 2.22672585291e+11 +UniRef50_P37925 Protein FimH 0.000510037145597 0.000193862169709 -1.27643717669e+11 +UniRef50_UPI0003735D88 hypothetical protein 2.80564414183e-05 0.00177594576919 7.05644370635e+11 +UniRef50_A0A011UTJ0 6.45023408896e-05 1.43013113732e-05 -20266771651.7 +UniRef50_U5MNI8 Type IV pilus assembly protein TapC 0.000100306285793 0.000910359604404 3.27028465195e+11 +UniRef50_UPI00046D22D7 hypothetical protein 5.75099046028e-05 1.36379604412e-05 -17711642227.3 +UniRef50_X1ILZ0 Marine sediment metagenome DNA, contig 6.77973617548e-05 0.000398223322359 1.33397015078e+11 +UniRef50_D5QFZ9 Cyclase dehydrase 0.00317140138968 0.00161081839197 -6.30026506682e+11 +UniRef50_Q51463 Flagellar M ring protein 0.000460245108042 0.000897837151232 1.76661277694e+11 +UniRef50_A7FZA6 Transcription elongation factor GreA 0.00374484003689 0.000369145881487 -1.36280915496e+12 +UniRef50_UPI0003B58BAE hemolysin expression modulating protein 4.65000421746e-06 3.42493600826e-06 -494575069.331 +UniRef50_UPI0003776FB7 hypothetical protein 5.79053945972e-05 8.31764780681e-05 10202246508.3 +UniRef50_D4ZAK4 0.00155138706938 0.00976467356493 3.31580454661e+12 +UniRef50_UPI000360EB76 hypothetical protein, partial 3.04492122522e-05 0.00120606903892 4.74612150504e+11 +UniRef50_A4WXK1 2.39180645987e-05 0.00128593571989 5.09492014139e+11 +UniRef50_G0LPP3 1.75130282118e-05 8.8912564962e-06 -3480715042.62 +UniRef50_UPI0003613F90 hypothetical protein 3.49462451913e-05 5.85666173664e-05 9535834101.65 +UniRef50_UPI000368B7D0 hypothetical protein 1.9877668552e-05 0.000141850021303 49241735574.7 +UniRef50_UPI00034BE6B7 hypothetical protein 0.000153780469284 0.000230882467543 31127022845.1 +UniRef50_UPI00036CB57D hypothetical protein 0.000124254840656 1.9390020112e-05 -42335214889.7 +UniRef50_U5MKL2 DEAD DEAH box helicase 0.000925872157184 0.000162363880566 -3.08237660571e+11 +UniRef50_O27720 Probable tRNA sulfurtransferase 0.00319728022735 0.000218214314184 -1.2026854664e+12 +UniRef50_A0A052I467 PF07120 family protein 3.82074606233e-06 1.08797465468e-05 2849805119.26 +UniRef50_Q8YBL2 GMP synthase [glutamine hydrolyzing] 4.78292482583e-05 1.75929254972e-05 -12206774540.1 +UniRef50_P48932 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 1.94990830182e-05 3.79951029156e-05 7467070204.27 +UniRef50_A1B5W0 RNA polymerase sigma factor 0.0154412513056 0.00403772112068 -4.6037450727e+12 +UniRef50_R5NV67 tRNA dihydrouridine synthase 0.000257148580005 0.00159071473176 5.38377020162e+11 +UniRef50_G8UZW2 Glycerophosphoryl diester phosphodiesterase family protein 0.0113915833637 0.00172333989802 -3.90318852978e+12 +UniRef50_UPI000225BB06 NADH ubiquinone oxidoreductase subunit 0.00031911204997 0.000242797693111 -30809042346.4 +UniRef50_Q7BHL7 Regulatory protein MsrR 0.0179261507902 0.00593844281616 -4.83958481482e+12 +UniRef50_U3SRT1 Ribonuclease R 0.00595643053054 0.00133662877418 -1.86507066039e+12 +UniRef50_UPI0004091E67 enterobactin ABC transporter permease 7.60271157724e-06 1.92352257915e-05 4696188735.31 +UniRef50_UPI00040FC3C0 resolvase 1.82892801543e-05 0.000186362639846 67853277799.7 +UniRef50_Q92G90 Aconitate hydratase 9.02371754612e-06 7.14064123959e-05 25184659432.6 +UniRef50_Q6A9W5 Probable cytosol aminopeptidase 0.000759784981674 0.00471514632646 1.59682791263e+12 +UniRef50_S1SCM6 Short chain dehydrogenase reductase SDR 0.00103537456077 0.00750095910112 2.61023582058e+12 +UniRef50_UPI0004560FCC hypothetical protein PFL1_00477 7.56488472929e-06 5.18794405911e-05 17890330002.2 +UniRef50_UPI0003781D54 hypothetical protein 0.000101177084002 7.19540518108e-05 -11797696702.5 +UniRef50_M9V9M5 0.000246626901361 0.0044088258943 1.68033080938e+12 +UniRef50_F5XYC9 0.000188070647974 0.000475911001366 1.16204682863e+11 +UniRef50_UPI00047A219A hypothetical protein 9.8210833611e-05 0.000131646324826 13498318103.1 +UniRef50_P0A9V7 0.000650837911816 0.000723224584158 29223387908.8 +UniRef50_K0R926 0.000127776582313 0.000120169213444 -3071188165.33 +UniRef50_B9KRR9 0.00114389693592 0.000576132825919 -2.29213338457e+11 +UniRef50_UPI00036ACC32 hypothetical protein 0.000195676435318 0.000247698959293 21002131316.9 +UniRef50_B7LBZ3 1.69963288404e-05 0.000995641831884 3.9509119891e+11 +UniRef50_UPI000366BCAE hypothetical protein 5.31381431788e-06 2.14809482511e-05 6526870361.88 +UniRef50_UPI00034FAA06 PREDICTED 2.78247205418e-06 5.06808908268e-06 922731642.08 +UniRef50_A6M1J6 PolyA polymerase related protein and P loop ATP ase domain 0.000844720945455 0.00104090717712 79202789198.9 +UniRef50_UPI0001E2C790 helix turn helix domain containing protein 0.000350284998896 0.000223715494736 -51097662011.9 +UniRef50_Q9HCC0 Methylcrotonoyl CoA carboxylase beta chain, mitochondrial 0.00322770954777 0.00778168753535 1.83849679718e+12 +UniRef50_Q9JWM8 Peptide methionine sulfoxide reductase MsrA MsrB 9.85120688569e-05 0.00321430480961 1.25788376452e+12 +UniRef50_UPI000383BA43 PREDICTED 2.21634236596e-05 0.000551939798563 2.13877223636e+11 +UniRef50_G0HC44 Adenylosuccinate lyase 0.000523871611604 0.00375189887646 1.30319421917e+12 +UniRef50_A6ZVT8 Cell surface flocculin 2.59740092636e-06 8.47067604244e-06 2371113237.55 +UniRef50_B4SEB2 Short chain dehydrogenase reductase SDR 2.46980747615e-06 2.84914751304e-06 153144227.918 +UniRef50_UPI00037E5D09 LuxR family transcriptional regulator 1.91563005167e-05 1.95227389654e-05 147935698.446 +UniRef50_A1TWN0 Methionyl tRNA formyltransferase 7.17077298158e-06 2.59810487078e-05 7593939138.71 +UniRef50_B5GNF3 ABC transport system ATP binding protein 0.000467957837425 0.00482992768248 1.76098075384e+12 +UniRef50_O75489 NADH dehydrogenase [ubiquinone] iron sulfur protein 3, mitochondrial 1.52929146827e-05 1.09366167125e-05 -1758690948.36 +UniRef50_UPI00046F9A01 hypothetical protein 0.000116831740175 7.91968438374e-05 -15193669483.6 +UniRef50_D5AU36 Peptidase, U32 family 0.00056250052245 0.000396398262003 -67057520846.4 +UniRef50_Q7VFF8 Argininosuccinate lyase 1.38147437985e-05 1.59392243539e-05 857678870.523 +UniRef50_Q6A823 1.83492112341e-05 0.00348433754644 1.39926202338e+12 +UniRef50_P13604 NADPH dependent butanol dehydrogenase 0.00185630581017 0.00422056016765 9.54478496778e+11 +UniRef50_Q6A824 0.00020761030336 0.000241516335112 13688281092.1 +UniRef50_UPI00037EF460 hypothetical protein 1.55271270006e-05 0.000117054961377 40988032624.2 +UniRef50_A2RKV6 Homoserine kinase 0.00588426858955 0.00175580523721 -1.66671131728e+12 +UniRef50_P56176 Bifunctional NADH hydrate repair enzyme Nnr 0.00021035703837 0.00478603416197 1.84725700467e+12 +UniRef50_P64804 Cobyrinic acid a,c diamide adenosyltransferase 1.12937351911e-05 2.24934383205e-05 4521457589.15 +UniRef50_D1YLF7 DNA repair protein RadA 4.40712250337e-05 0.00118849658827 4.62018562818e+11 +UniRef50_W7IVE6 0.0101155209612 0.002807293386 -2.95042115415e+12 +UniRef50_P0ADT7 Putative acid amine ligase YgiC 0.00290992072721 0.000350110636804 -1.0334267459e+12 +UniRef50_UPI0003682914 hypothetical protein 3.42843416405e-06 4.89682200819e-06 592806191.824 +UniRef50_UPI000362C7A0 hypothetical protein 1.0223285923e-05 5.44325125059e-06 -1929758654.87 +UniRef50_X1V7S4 Marine sediment metagenome DNA, contig 2.65436920173e-05 5.19350545681e-05 10250804648.8 +UniRef50_Q73MY1 Phosphopantetheine adenylyltransferase 1.18084939145e-05 1.57584662553e-05 1594652305.59 +UniRef50_UPI000191165B hypothetical protein 3.29533607801e-05 1.98544495681e-05 -5288191198.0 +UniRef50_F0S2L5 7.90572709247e-06 1.33982421675e-05 2217395736.53 +UniRef50_K0HAG9 0.000332099824425 0.00940379920514 3.66235636227e+12 +UniRef50_G7LZX4 0.000270323271289 0.00020994078568 -24377150416.8 +UniRef50_A3PJL4 Invasion associated locus B family protein 0.00436730325782 0.000596599404435 -1.52227941735e+12 +UniRef50_C5WG19 Phosphomevalonate kinase 0.00448899070704 0.000194500574217 -1.73373836594e+12 +UniRef50_A3PS67 0.00488643287615 0.00209071030186 -1.12866751061e+12 +UniRef50_A4WQP0 0.000129500809316 0.000203995941812 30074599146.7 +UniRef50_A3PKI7 NADH quinone oxidoreductase subunit I 2 0.0019684416847 9.30476511362e-05 -7.57119585021e+11 +UniRef50_F2MV72 C4 dicarboxylate binding protein 0.000849695271659 0.000283504036987 -2.28578349385e+11 +UniRef50_K0J3D5 Transposase 1.66678984431e-05 4.86437385485e-06 -4765227721.79 +UniRef50_Q979P0 7 cyano 7 deazaguanine synthase 0.000630843018168 0.00671365209986 2.45570467074e+12 +UniRef50_Q5E212 Soluble pyridine nucleotide transhydrogenase 0.00345454460361 0.00666040397547 1.29424476874e+12 +UniRef50_A5UNU9 Bacteriophage capsid portal protein 0.00257009916019 0.001741543541 -3.34498070988e+11 +UniRef50_R0MT59 DNA polymerase III PolC 0.00663029151926 0.00509453878833 -6.20002223282e+11 +UniRef50_I6CAK2 Inner membrane transport YhjV domain protein 6.44385600304e-05 1.91820636815e-05 -18270602935.7 +UniRef50_T1XSP1 0.0130758557034 0.0039072901074 -3.70146244206e+12 +UniRef50_A7GJS9 Glutamine amidotransferase subunit PdxT 2.75535277749e-06 0.00329718849176 1.33000308545e+12 +UniRef50_UPI0004641AEF hypothetical protein, partial 8.87569226775e-05 5.50705844638e-05 -13599588114.7 +UniRef50_W5X7V9 Aspartyl glutamyl tRNA amidotransferase subunit B 6.26772385403e-06 7.69284995455e-06 575340895.044 +UniRef50_A9MKV9 Hydroxyethylthiazole kinase 0.00383734256595 0.00056905803135 -1.31944657298e+12 +UniRef50_A0A023Y3W6 Radical SAM protein 0.000901141364364 0.000278600665274 -2.51327319656e+11 +UniRef50_M9VBI4 Amidohydrolase family protein 7.95824291342e-05 0.00805421392018 3.21945659267e+12 +UniRef50_UPI00036008AF hypothetical protein 0.000176842569876 2.67409760697e-05 -60597855373.2 +UniRef50_UPI0003717A52 hypothetical protein 0.000151699831384 9.94462844837e-05 -21095398106.8 +UniRef50_A5ULW7 Nitrate sulfonate bicarbonate ABC transporter, ATPase component 0.00257434508306 0.000826168343394 -7.05760402346e+11 +UniRef50_S9RBB4 Plasmid replication protein RepA 0.000247789052648 3.673526516e-05 -85205003930.1 +UniRef50_UPI0003B7AD31 glycosyl transferase 2.41127994207e-06 1.03228078807e-05 3193980914.19 +UniRef50_V5VEP7 Rhs element Vgr family protein 4.9109191956e-05 0.00206526033472 8.13944957289e+11 +UniRef50_F2D1I1 Predicted protein 2.28447557271e-05 1.71213955407e-05 -2310590740.78 +UniRef50_V6QB21 0.000555780017326 0.000932065184759 1.51910939631e+11 +UniRef50_V2VF38 0.000162698395165 0.00666991405594 2.62704281477e+12 +UniRef50_G9EIS6 2.70902341021e-05 3.24078132928e-05 2146771973.32 +UniRef50_D5WG02 Type VI secretion ATPase, ClpV1 family 7.43570562389e-05 0.000190931935806 47062709415.8 +UniRef50_L2SNR0 0.000125006923455 7.02611397733e-05 -22101544678.6 +UniRef50_UPI0004007565 16S rRNA methyltransferase 6.94141024494e-06 1.51255068321e-05 3304020222.4 +UniRef50_UPI00037B5A68 hypothetical protein 7.71220157479e-05 2.75873776024e-05 -19997741277.7 +UniRef50_B7KNU7 Peptidyl tRNA hydrolase 8.73887470506e-05 4.3373944264e-05 -17769316007.3 +UniRef50_P25397 Tellurite methyltransferase 0.00200129741016 0.000461432351874 -6.21662420301e+11 +UniRef50_D5ZH35 Predicted protein 2.19750302058e-06 0.000984912190554 3.96733978622e+11 +UniRef50_P75749 0.00268932275891 0.000768596962359 -7.75420574023e+11 +UniRef50_A0QV20 Ribonuclease 3 2.36552435387e-05 6.99690556106e-05 18697454267.8 +UniRef50_U8RNG4 0.000158198483824 0.000130362882471 -11237573847.4 +UniRef50_P75745 0.002185959709 0.000623930005751 -6.30610559462e+11 +UniRef50_A8IJ61 Sodium sulphate symporter 8.24205215782e-05 0.00335337404437 1.32052407626e+12 +UniRef50_P05378 Anthranilate synthase component 1 2.17573180947e-05 0.0183615747049 7.40400933392e+12 +UniRef50_UPI0003777559 hypothetical protein 3.66618324796e-05 5.22737741702e-05 6302732440.56 +UniRef50_A3SLT9 5.24177656364e-05 1.47601576248e-05 -15202838465.1 +UniRef50_W4PGX2 1.39474060739e-05 0.000229570348736 87049627943.7 +UniRef50_L0DV31 Pirin 5.92800374537e-06 7.78023192321e-06 747767244.79 +UniRef50_UPI0003A0D931 chemotaxis protein CheY 0.000128922923535 4.25865579769e-05 -34855050242.1 +UniRef50_A5UL23 Fe S oxidoreductase 0.00190375005269 0.000125845186868 -7.17762011678e+11 +UniRef50_UPI00016A2EB9 ABC transporter related protein, partial 0.000444931068274 0.000147451099039 -1.2009631407e+11 +UniRef50_W0L514 0.000138306156408 5.54950253034e-05 -33431869833.8 +UniRef50_A2RIB7 NADH oxidase 0.00628370474082 0.00784969647756 6.32210081002e+11 +UniRef50_B7UYN1 0.00118009165 0.00015475111189 -4.13942557578e+11 +UniRef50_Q6A6F2 Ubiquinone menaquinone biosynthesis methyltransferase UbiE 0.000328248685954 0.0086701239716 3.36771741914e+12 +UniRef50_UPI000360EAB2 MULTISPECIES 5.5033600136e-06 4.45190730437e-06 -424484361.492 +UniRef50_W9FFV8 3.61914789278e-05 4.6316238499e-05 4087489683.66 +UniRef50_A5UMM1 Predicted metal dependent phosphoesterase, PHP family 0.00525369001504 0.000976325418564 -1.72682457677e+12 +UniRef50_UPI00047B30F5 hypothetical protein 2.4255939956e-06 6.46748846921e-06 1631762398.62 +UniRef50_V7ENR3 Branched chain amino acid transporter AzlC 0.0002494610436 8.91969707368e-05 -64700572876.1 +UniRef50_G7LXS1 Prophage antirepressor 0.00037177601129 0.00117077526062 3.22565801778e+11 +UniRef50_D6UB35 7.92381441214e-05 0.000109759050545 12321664456.8 +UniRef50_U5NEG6 Type I restriction enzyme subunit M 0.000812968507199 0.000434547607505 -1.52773160953e+11 +UniRef50_UPI00042B88CF Phosphoenolpyruvate carboxylase family protein isoform 3 1.38394907115e-05 2.04988777927e-05 2688476284.55 +UniRef50_I0EYG5 Adenine specific DNA methylase 5.17813427749e-05 0.0049712895887 1.98606584804e+12 +UniRef50_Q6MSN9 30S ribosomal protein S8 0.00506196709155 0.0149012625803 3.97224433054e+12 +UniRef50_Q5HM58 0.0128027835619 0.00572237341886 -2.85844846115e+12 +UniRef50_W1AUZ6 Exonuclease SbcC 0.000927245822186 0.000889139660443 -15383925110.8 +UniRef50_G0DUX4 Phosphoesterase family protein 0.000175632466232 0.00402748797428 1.55504133618e+12 +UniRef50_Q8XK20 Putative ABC transporter ATP binding protein CPE1583 1.1866340796e-05 0.000586115644224 2.31831490625e+11 +UniRef50_R9SKG8 0.00241646311644 0.000372247947718 -8.25274748953e+11 +UniRef50_E6REC8 3.51591097028e-05 1.20889456265e-05 -9313708340.35 +UniRef50_UPI00046CC73E PREDICTED 1.75833330936e-05 8.09000218395e-06 -3832574184.5 +UniRef50_C4J675 2.63969755987e-05 0.000195343614101 68205831171.6 +UniRef50_Q163E0 AzlC family protein 0.0112989440012 0.00292526171434 -3.38055829584e+12 +UniRef50_Q1GGE3 NADH dehydrogenase 0.00335945718396 0.000238640735716 -1.25991189688e+12 +UniRef50_C5BMG6 Probable cytosol aminopeptidase 0.000160666023111 0.00419868409331 1.63019744699e+12 +UniRef50_Q83EH9 ATP dependent 6 phosphofructokinase 1.64697171892e-05 7.67440222282e-06 -3550776582.58 +UniRef50_UPI0002EF2687 hypothetical protein 1.4717230536e-05 6.9084116187e-05 21948578894.0 +UniRef50_A5VLG3 Glutamyl tRNA amidotransferase subunit A 0.00634645374378 0.00112662563354 -2.1073086626e+12 +UniRef50_Q8XHR6 50S ribosomal protein L10 0.000928244234885 0.00367139723203 1.10744452722e+12 +UniRef50_Q3J376 Phosphate import ATP binding protein PstB 0.002224891882 0.00108801059277 -4.58972927564e+11 +UniRef50_A0A058ZJ58 6.4908853222e-05 4.21005135175e-05 -9208006628.51 +UniRef50_UPI00046FA64C RNA helicase, partial 5.54017438752e-06 2.14884843732e-05 6438528449.0 +UniRef50_UPI0003B55A40 PREDICTED 4.70605843956e-05 2.13169780389e-05 -10393009795.8 +UniRef50_Q7ME63 Molybdenum import ATP binding protein ModC 0.00243594324623 0.000993869026778 -5.82183058633e+11 +UniRef50_UPI0002556A08 signaling repeat GGDEF domain EAL domain containing protein 0.000127123381022 1.44762443852e-05 -45477031396.2 +UniRef50_A3M261 0.000638831835141 0.00592977954019 2.13602051576e+12 +UniRef50_P30845 Phosphoethanolamine transferase EptA 0.00288340517117 0.000824104998495 -8.31364750166e+11 +UniRef50_P0A324 Catalase 0.0218999020614 0.008089445116 -5.57545094222e+12 +UniRef50_A0A022GVC0 Transcriptional regulator 0.000145978913409 3.27402258693e-05 -45715847754.9 +UniRef50_R7PY13 Trk type potassium transport system membrane component TrkH 0.00247660433669 0.000721796760355 -7.08437352475e+11 +UniRef50_O11346 H1 41 protein 0.00167264313709 0.000321716470927 -5.45385672863e+11 +UniRef50_UPI00047B8E24 ABC transporter ATP binding protein 5.2701453435e-05 1.37499523676e-05 -15725198969.6 +UniRef50_UPI0003B50756 ABC transporter permease 0.000164675506124 9.53049077448e-05 -28005761838.7 +UniRef50_UPI0003B32B2D glutathione ABC transporter ATP binding protein 2.9497008764e-05 2.77130461357e-05 -720207604.728 +UniRef50_UPI00037FBEE1 hypothetical protein 9.71822133426e-06 1.67728283726e-05 2848031431.14 +UniRef50_A8EV23 Chaperone protein HtpG 7.12237714804e-05 0.00266567040831 1.04740994473e+12 +UniRef50_UPI00042B67B1 Serine hydroxymethyltransferase 6 isoform 2 2.28148999903e-06 7.13480070737e-05 27883000484.5 +UniRef50_W5XBV9 Cyclic nucleotide binding protein 5.3451024781e-06 8.89776142545e-06 1434252013.07 +UniRef50_W5XBZ4 PAS domain protein 4.16287863488e-06 8.61851173863e-06 1798793760.75 +UniRef50_UPI00039CC563 hypothetical protein 0.000174757768699 3.16412559058e-05 -57777892451.6 +UniRef50_T0N5V1 1.72593549094e-05 2.93909704309e-05 4897682057.69 +UniRef50_UPI0003728055 hypothetical protein 6.17977239504e-05 5.4356166552e-05 -3004248039.91 +UniRef50_Q4L967 Putative acetyltransferase SH0499 3.80640803241e-05 1.79385513463e-05 -8124923016.35 +UniRef50_UPI0003783400 hypothetical protein 1.21556667856e-05 2.46369815485e-05 5038859932.74 +UniRef50_UPI00034B61C2 hypothetical protein 1.79852050321e-06 7.35726041413e-06 2244131515.45 +UniRef50_Q9RYC2 Aminotransferase, putative 0.000101293199152 0.0466745955103 1.88022136617e+13 +UniRef50_A5UJP7 Chaperonin , alpha subunit 0.00306177689365 0.00182276116997 -5.00205852082e+11 +UniRef50_UPI00021A5DF1 PREDICTED 1.99316214089e-05 1.18040457219e-05 -3281202041.41 +UniRef50_I0GMV1 Electron transport complex subunit C 0.000669707825774 0.00201552245038 5.43321878958e+11 +UniRef50_UPI0003B4DBF3 acyl CoA dehydrogenase 4.53854004898e-06 6.88560770215e-05 25965778940.7 +UniRef50_P58579 Glutathione synthetase 0.000365788317407 0.000999002374291 2.55636285174e+11 +UniRef50_UPI00036DBC6E hypothetical protein 0.000209432960461 0.000632498893031 1.70796908581e+11 +UniRef50_P40709 Inner membrane protein YejM 0.00414448475494 0.000134336636173 -1.6189460056e+12 +UniRef50_UPI00037AA69B hypothetical protein 5.49069416205e-06 8.88053878556e-06 1368521872.58 +UniRef50_A8I6E1 Lysyl tRNA synthetase protein 0.000910448998771 0.000493690561734 -1.68250495233e+11 +UniRef50_A3CN89 Orotidine 5 phosphate decarboxylase 0.000179933449996 1.94397124692e-05 -64793291319.3 +UniRef50_UPI00036637FB MULTISPECIES 1.05076053952e-05 1.99784442227e-05 3823493854.92 +UniRef50_G8QQL0 Succinate dehydrogenase fumarate reductase flavoprotein subunit 8.59097923129e-06 1.64054164964e-05 3154784217.85 +UniRef50_Q89AR7 Superoxide dismutase [Mn] 7.77257759962e-06 2.05573013833e-05 5161349877.68 +UniRef50_UPI00037AA28C hypothetical protein 1.20728724893e-05 8.78644900506e-06 -1326769489.54 +UniRef50_G4LD57 AraC family transcriptional regulator 0.000612041974393 0.000557859183363 -21874257636.4 +UniRef50_UPI000375BAEA hypothetical protein 0.000103583104016 2.71536917671e-05 -30855491619.2 +UniRef50_UPI0003711312 hypothetical protein 5.74177078363e-06 0.000147497532783 57228540657.8 +UniRef50_Q8ZDL2 NADH quinone oxidoreductase subunit G 0.00669110959485 0.000861704689542 -2.35340229512e+12 +UniRef50_UPI00034B27B9 FAD binding molybdopterin dehydrogenase 0.000270555605268 0.00121201118887 3.80077172059e+11 +UniRef50_Q5HPQ8 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.0154699317853 0.00709908535998 -3.37941342374e+12 +UniRef50_UPI00035C36B2 hypothetical protein 1.27807136539e-05 4.28277777944e-06 -3430720993.92 +UniRef50_B3G2P1 0.00056815402459 0.000443530872561 -50311895772.2 +UniRef50_D8JKW7 TetR family regulatory protein 0.000169276228183 0.00773559247469 3.05461471786e+12 +UniRef50_UPI00034922BA hypothetical protein 4.24991535661e-06 2.72224734965e-05 9274303626.07 +UniRef50_M9VD27 Hydrolase, alpha beta domain protein 0.000157467149615 0.0083401059594 3.30343169978e+12 +UniRef50_U6AJ35 Pyocin protein 0.00139582984111 0.000823342405398 -2.31120203008e+11 +UniRef50_B7MI93 Acetylornithine deacetylase 0.00363821018713 0.000491083417945 -1.27053369631e+12 +UniRef50_M3Z5Z5 5.79328322757e-06 3.76754491371e-06 -817815415.91 +UniRef50_A3DGK6 Acetylglutamate kinase 0.00514604855212 0.000230131283107 -1.98461612659e+12 +UniRef50_K8DMU1 Maltose phosphorylase Trehalose phosphorylase 0.000336040939626 0.000363839883189 11222774647.8 +UniRef50_C4ZLQ1 BolA family protein 2.79587068531e-05 4.45664445129e-05 6704747493.12 +UniRef50_U5ACU4 ABC transporter 0.000361191151775 1.15225413098e-05 -1.41165508961e+11 +UniRef50_A5UMN0 Glutamyl tRNA amidotransferase subunit A 0.00377733774606 0.000429817202491 -1.35143512214e+12 +UniRef50_A3UFL0 GAF sensor diguanylate cyclase 4.10822025328e-05 8.77124014748e-05 18825183529.8 +UniRef50_F5TJT7 5.10265798452e-05 0.000495062725525 1.79262840947e+11 +UniRef50_B5Y8G1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 8.4493862904e-06 5.82291546263e-06 -1060338503.59 +UniRef50_UPI0003737153 hypothetical protein 1.01041045631e-05 3.39036523184e-05 9608169482.11 +UniRef50_B7MVN0 0.00174110440424 0.00253060832403 3.18732420722e+11 +UniRef50_Q7VI99 Arginine tRNA ligase 0.000166448543911 0.00469595857807 1.82861878413e+12 +UniRef50_D3QAH6 4.14061702304e-05 4.52143907568e-05 1537425358.63 +UniRef50_P0AE89 Transcriptional regulatory protein CpxR 0.00207552148755 0.00141583433699 -2.66323797953e+11 +UniRef50_E6RH94 3.36740489104e-05 3.62051481198e-05 1021835810.91 +UniRef50_B5HHN6 Regulatory protein 0.000167771550603 0.00193550772548 7.13656786361e+11 +UniRef50_UPI0002657849 PREDICTED 2.08751231354e-05 2.14451829943e-05 230140160.459 +UniRef50_A7MKJ4 0.00346545047247 0.00143531435073 -8.19590864918e+11 +UniRef50_D3QET5 0.0154798366877 0.0015716112933 -5.61492126484e+12 +UniRef50_UPI000317D125 hypothetical protein 1.27571085867e-05 7.83521536945e-06 -1987028690.23 +UniRef50_X1FS40 Marine sediment metagenome DNA, contig 3.43879872287e-05 0.000341219143654 1.2387150309e+11 +UniRef50_A1B573 Allergen V5 Tpx 1 family protein 0.00796148546697 0.00209110259581 -2.36994560279e+12 +UniRef50_Q3IYX7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.0137277419157 0.00242642967881 -4.56247843273e+12 +UniRef50_UPI00036A7D45 MULTISPECIES 1.13471231213e-05 1.56048651678e-05 1718902712.54 +UniRef50_T9LFH4 Toxin YeeV 5.97451720276e-06 1.61393123602e-05 4103652541.11 +UniRef50_P0ADW3 Inner membrane protein YhcB 0.0164671959612 0.000444085270977 -6.46872641131e+12 +UniRef50_R5VVL9 0.0049773965812 0.000577616151891 -1.77624535069e+12 +UniRef50_Q9JUC8 Lipoyl synthase 0.00361955290894 0.00372128630819 41071021686.4 +UniRef50_UPI00017450C8 tetratricopeptide repeat protein kinase domain protein 3.55865412403e-06 0.000119050114463 46625319778.4 +UniRef50_P76508 0.00459062602564 0.00329269292417 -5.23991520494e+11 +UniRef50_E3DRH8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 9.09194369937e-06 1.61480649803e-05 2848642749.46 +UniRef50_C0QI21 N acetyl gamma glutamyl phosphate reductase 1.59244804546e-05 2.20097980461e-05 2456717386.93 +UniRef50_K1JLF6 0.00172562351112 0.000523147878187 -4.85454169049e+11 +UniRef50_P76507 0.00303260726918 0.0010133336131 -8.15205554234e+11 +UniRef50_Q115Z7 Holliday junction ATP dependent DNA helicase RuvB 0.0133096701415 0.0129468651524 -1.46468826218e+11 +UniRef50_K1E5L6 Coagulation factor 5 8 type domain containing protein 1.53402792841e-05 5.0932755955e-05 14369119600.8 +UniRef50_A6M156 0.000990543801162 0.00246384196221 5.94788547017e+11 +UniRef50_I3TGS2 0.000127400039857 2.58772846002e-05 -40985982121.6 +UniRef50_B6AXL4 1.9995246827e-05 6.94885137342e-06 -5266989941.89 +UniRef50_Q07LR9 NLPA lipoprotein 3.20293728898e-05 1.12776645384e-05 -8377719313.56 +UniRef50_M4TWI8 Response regulator 8.5083243167e-05 0.000133627468419 19597899438.9 +UniRef50_S5S5I1 Alcohol dehydrogenase iron type protein 0.011034620392 0.00203531443053 -3.63313025055e+12 +UniRef50_UPI00030FA7EB hypothetical protein 4.45654893596e-05 5.54734200101e-05 4403665458.97 +UniRef50_R4NJ09 Alpha L Rha alpha 1,3 L rhamnosyltransferase 0.00629167432534 0.00141291879752 -1.96961347564e+12 +UniRef50_L9FSE1 Transposase IS66 family protein 5.96077156386e-05 6.8625434598e-05 3640563803.77 +UniRef50_A8LR58 0.0025558112201 3.08872581373e-05 -1.01934278774e+12 +UniRef50_UPI000380D395 hypothetical protein, partial 0.000339514094407 9.26591834327e-05 -99658356810.6 +UniRef50_R4X9Z7 Glutamate dehydrogenase 9.42144730903e-05 0.00494488207672 1.95827403597e+12 +UniRef50_UPI000478F011 hypothetical protein 7.23552906846e-06 2.47633462258e-05 7076194876.91 +UniRef50_I4XXI7 Malonate transporter, MadM subunit 0.000482892448182 0.00761494326874 2.87929643637e+12 +UniRef50_Q667I7 Bifunctional uridylyltransferase uridylyl removing enzyme 0.00338999186219 0.000803711080825 -1.04411328867e+12 +UniRef50_UPI00041C4BFA manganese ABC transporter substrate binding protein 9.67563100572e-06 9.68387051791e-05 35188802655.0 +UniRef50_Q0TMJ7 Amidohydrolase homolog 0.000106634460129 0.00149632263408 5.61034169215e+11 +UniRef50_Q2YLX5 Peptidyl tRNA hydrolase 0.00253848084632 0.000836529997742 -6.87098442857e+11 +UniRef50_W1BF78 Dipeptide transport system permease protein DppB 2.78279003479e-05 4.46881145938e-05 6806675389.16 +UniRef50_L6WUR9 Lipoprotein 3.66457993322e-05 0.000128344243184 37019787049.4 +UniRef50_UPI00031F8523 V type sodium ATP synthase subunit J 3.19525797373e-05 4.84508693346e-06 -10943627491.2 +UniRef50_Q8XA44 tRNA specific adenosine deaminase 1.08406157811e-05 4.92810277164e-05 15518866015.2 +UniRef50_A6W2Y7 Monosaccharide transporting ATPase 0.00324969993507 0.00068754044312 -1.03437522813e+12 +UniRef50_UPI00035DAB5C transposase ISM1, partial 0.000702341719641 0.000546882787401 -62760678640.9 +UniRef50_B3PH29 Anhydrase, family 3 protein 5.78541366732e-05 0.000127346516268 28054926409.8 +UniRef50_UPI00046594C3 hypothetical protein 2.36279446315e-05 1.28197397059e-05 -4363404960.05 +UniRef50_UPI00036E4560 hypothetical protein, partial 4.10241029093e-05 3.74551783544e-05 -1440818638.44 +UniRef50_Q8EB10 Sulfate adenylyltransferase subunit 1 0.00456290064999 0.0110216948102 2.60749446079e+12 +UniRef50_A7MQT1 5.61058933288e-05 0.000194172051635 55739002370.4 +UniRef50_W0FVK3 NAD dependent dehydrogenase 9.519142912e-05 9.81958860128e-05 1212936116.46 +UniRef50_Q9Z3R8 Probable alpha glucosidase 4.19021671831e-05 2.24441766589e-05 -7855429551.01 +UniRef50_A6VB08 Lipoprotein, putative 0.00133040113952 0.00145368780689 49772340514.8 +UniRef50_A6M2Z6 Transketolase, central region 0.000198676836237 0.00256601005451 9.55721470661e+11 +UniRef50_Q72VJ3 3.71947635408e-05 2.25696809017e-05 -5904325331.35 +UniRef50_UPI00036DBF3B hypothetical protein 8.15454287158e-05 4.40496564858e-05 -15137503374.1 +UniRef50_E2Q4F7 TT_ORF1 domain containing protein 6.3928850031e-05 0.000161673432903 39460687566.3 +UniRef50_U2ENE3 Periplasmic binding protein 2.85700007555e-06 2.89747831027e-05 10544069509.3 +UniRef50_P28630 DNA polymerase III subunit delta 0.0020401622951 0.00122573156354 -3.2879568052e+11 +UniRef50_R4RC10 Isopenicillin N epimerase CefD 0.00065600996731 0.000506446714017 -60380520701.9 +UniRef50_UPI0003B76D70 adenylylsulfate kinase 3.1760298261e-06 7.3139189832e-05 28244986238.9 +UniRef50_D6ZZA5 Peptidoglycan binding domain 1 protein 1.12810292391e-05 2.02989113742e-06 -3734797975.88 +UniRef50_A7X6Z3 Oxygen dependent choline dehydrogenase 0.0266450825195 0.00865869628658 -7.26132484e+12 +UniRef50_F5YQ07 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.00123420192642 0.00130561893988 28831924719.1 +UniRef50_D3HD08 0.00328721950187 0.000749590940209 -1.02447179055e+12 +UniRef50_UPI00028A32C2 helix turn helix domain containing protein 7.49824836922e-05 4.50891182432e-05 -12068318464.6 +UniRef50_Q8QNC0 EsV 1 162 1.65057960656e-05 2.7326564325e-05 4368476932.08 +UniRef50_T0QKP7 1.17471851089e-05 6.84124153347e-06 -1980589624.1 +UniRef50_O52618 Nod factor export ATP binding protein I 1.15440126823e-05 5.20458689605e-05 16351096393.2 +UniRef50_T2ELK1 Sulfotransferase family protein 0.000686740677595 0.0003815815323 -1.23196491679e+11 +UniRef50_I2E190 IS5 family transposase 6.31971948042e-05 4.82977642552e-05 -6015082949.2 +UniRef50_Q9RV93 0.000331128060398 0.0226977964962 9.02969851742e+12 +UniRef50_UPI000467A336 glutamate synthase, partial 0.000419202229909 4.64600680883e-05 -1.50480584788e+11 +UniRef50_UPI0003B755FD sugar ABC transporter permease 3.31841117064e-05 2.59186644596e-05 -2933150210.6 +UniRef50_UPI00047BD144 hypothetical protein 1.69282454335e-06 2.68844048551e-06 401942373.431 +UniRef50_A8IEI6 Adenine phosphoribosyltransferase 6.2134786803e-05 6.53256005402e-05 1288170661.4 +UniRef50_Q7UZP0 Lysine tRNA ligase 6.88212749729e-06 9.59183476848e-06 1093942077.23 +UniRef50_W7X3Q1 Fasciclin domain protein 0.000277577154807 6.60890074709e-05 -85380360331.0 +UniRef50_Q84F59 0.0163657478115 0.00397942307757 -5.00051129237e+12 +UniRef50_Q0WLU6 NADH dehydrogenase subunit 4 6.02061209236e-05 5.99202175085e-05 -115422717.105 +UniRef50_UPI00044341F7 PREDICTED 1.69861130957e-05 8.58331240898e-06 -3392313751.19 +UniRef50_A6LZ49 Transcriptional regulator, LysR family 0.000246131874043 0.000392283248233 59003103239.5 +UniRef50_UPI000371865D hypothetical protein 7.60807085529e-06 0.000117545556005 44383111839.7 +UniRef50_UPI000479EF00 hypothetical protein 3.73149519956e-05 3.60997969034e-05 -490573022.351 +UniRef50_L7WU99 CapB protein 0.0149037257289 0.00523064263405 -3.90514234747e+12 +UniRef50_B2V6Y7 Argininosuccinate lyase 3.01244571453e-05 1.96113181007e-05 -4244283243.03 +UniRef50_Q4L350 Transposase for IS1272 0.00333705899427 0.00199652314501 -5.41190772571e+11 +UniRef50_P22350 Pyrroline 5 carboxylate reductase 0.00186415467351 0.000478086225284 -5.59572841523e+11 +UniRef50_F2DQI0 Predicted protein 1.08427779151e-05 1.81990559766e-05 2969819725.11 +UniRef50_Q9RUB4 0.000428318283571 0.0376344763145 1.5020582568e+13 +UniRef50_S5YGA2 0.00241878721462 0.000885802446625 -6.1888476268e+11 +UniRef50_G4R4C9 2.4903750192e-05 1.79583286765e-05 -2803951895.71 +UniRef50_UPI00040657AE hypothetical protein 1.11079261536e-05 9.41255083237e-05 33515216662.4 +UniRef50_R5HYR6 0.000628359688057 0.000958286579861 1.3319553488e+11 +UniRef50_P0AET9 7 alpha hydroxysteroid dehydrogenase 0.00287892899419 0.00165411092814 -4.94474083472e+11 +UniRef50_I6T5H3 0.00601757293409 0.00175847886082 -1.71944854234e+12 +UniRef50_F8LGT0 Transcriptional regulator, DeoR family 0.00523111158419 0.00087464327345 -1.75875971692e+12 +UniRef50_D0FNY6 2.56885584659e-05 2.83732477631e-05 1083842014.12 +UniRef50_UPI0004637F8D hypothetical protein 6.50179921258e-05 0.000888771630704 3.32559452488e+11 +UniRef50_G5KUR8 Mg chelatase like protein 1.6126832959e-05 2.81428170992e-05 4851000250.11 +UniRef50_W8ERS2 Histidine kinase 0.000183554770233 0.0089417606668 3.53579519572e+12 +UniRef50_D4HF76 Transglycosylase 0.000101002251891 0.00654308001118 2.60074584461e+12 +UniRef50_N0B0S7 PspA IM30 3.34235738504e-05 0.000268469732005 94891018387.9 +UniRef50_O29399 tRNA splicing ligase RtcB 0.00384933982197 0.000703525357641 -1.27000390273e+12 +UniRef50_UPI000225AE96 prolipoprotein diacylglyceryl transferase 8.81528502218e-06 7.09577916565e-06 -694185614.991 +UniRef50_Q1GDV2 DNA topoisomerase 4 subunit A 0.00673900955291 0.00133738013414 -2.1807040818e+12 +UniRef50_Q58595 2 isopropylmalate synthase 1.4604619618e-05 5.26669404393e-06 -3769835143.48 +UniRef50_J7R5F6 0.00396102861061 0.00118571883141 -1.12042661474e+12 +UniRef50_UPI0004665B0F hypothetical protein 6.58385326648e-06 8.75487939531e-06 876469889.695 +UniRef50_Q5F6F8 4.15714199126e-05 0.000147211644654 42648255079.3 +UniRef50_UPI0004246E9D hypothetical protein 3.65810496324e-06 4.85865558552e-05 18138166959.2 +UniRef50_UPI00042410AD 50S ribosomal protein L18 0.000712670454534 0.000185039029824 -2.13011280921e+11 +UniRef50_B9KWX6 0.00117645297998 0.000521212169004 -2.645287561e+11 +UniRef50_Q91ZA3 Propionyl CoA carboxylase alpha chain, mitochondrial 9.15177534939e-06 3.35519539725e-06 -2340150458.71 +UniRef50_P14853 Cytochrome c oxidase subunit 3 9.98256194566e-05 4.17520025541e-05 -23445031787.0 +UniRef50_A0A028VK75 ATPase 3.24650420851e-05 1.8337368967e-05 -5703515003.82 +UniRef50_Q8REG7 Phosphonates import ATP binding protein PhnC 2.58666535734e-05 1.76345514913e-05 -3323400629.8 +UniRef50_A3PM78 Haloacid dehalogenase domain protein hydrolase 0.0161952996633 0.00402869674376 -4.91180689961e+12 +UniRef50_B1KTX4 1.03645601336e-05 7.35096575627e-06 -1216625031.09 +UniRef50_UPI00026306BC gluconate transporter 1.23955417445e-05 2.60118307435e-05 5497062959.55 +UniRef50_D8TM72 2.63667171485e-06 2.45553114242e-05 8848823822.64 +UniRef50_D6XXB5 TRAP transporter solute receptor, TAXI family 3.32338462253e-05 4.83950273141e-05 6120754854.16 +UniRef50_S5SY81 WGR domain containing protein 3.46791339162e-05 4.07557989943e-05 2453224261.09 +UniRef50_K9H593 Chromosomal replication initiator protein DnaA 8.41092831116e-05 1.32487430291e-05 -28607269587.9 +UniRef50_B5FN15 Multidrug resistance protein MdtL 0.00281771296233 0.00154972262673 -5.11903258473e+11 +UniRef50_B1I3M7 Sulfate adenylyltransferase 5.92811319744e-05 1.77912107368e-05 -16749990342.2 +UniRef50_UPI0002891CEE hypothetical protein 4.90987109103e-06 1.22850232201e-05 2977439417.8 +UniRef50_A1JJF7 LPS assembly protein LptD 0.000552942116325 7.48268678708e-05 -1.93020992935e+11 +UniRef50_UPI0003B5E20B ABC transporter permease 2.38179331863e-06 6.32744767222e-05 24583123527.3 +UniRef50_UPI0003506E3F 8.64111873981e-06 0.000556432354766 2.21150044138e+11 +UniRef50_B0RWV1 4.12396776079e-05 2.20054004199e-05 -7765113731.92 +UniRef50_Q8DQD2 ADP dependent NAD(P)H hydrate dehydratase 0.00866254544854 0.00740832900304 -5.06342570015e+11 +UniRef50_J7QYC7 0.00237824233763 0.000772069817495 -6.48431556334e+11 +UniRef50_G5QFD3 Potassium transporting ATPase B chain 1.07988772987e-05 0.00239433550442 9.62262985652e+11 +UniRef50_B2TQK8 Amino acid ABC transporter, amino acid binding permease protein 0.000327299990334 0.001207208971 3.55230053192e+11 +UniRef50_P39315 Quinone oxidoreductase 2 0.00369091838146 0.0332097076678 1.19170974712e+13 +UniRef50_J1HLJ2 PF06224 family protein 1.51305418063e-05 0.00172762325925 6.91354324679e+11 +UniRef50_UPI000443234B PREDICTED 8.25692135584e-06 0.000108058399255 40291081329.8 +UniRef50_Q4FR51 Lon protease 0.00014241945601 0.00799614723719 3.17064628134e+12 +UniRef50_UPI00035C8CB7 hypothetical protein 1.8530286099e-05 9.65544700208e-05 31499320513.6 +UniRef50_P42593 2,4 dienoyl CoA reductase [NADPH] 0.002154338277 0.000566652772132 -6.40968121408e+11 +UniRef50_UPI00035C6B06 hypothetical protein, partial 0.000169834903978 2.06035220209e-05 -60246540171.0 +UniRef50_P77569 Mhp operon transcriptional activator 0.00276614843707 0.00224683881851 -2.09651665658e+11 +UniRef50_Q3IUW5 Type IV conjugative transfer system lipoprotein 0.00905210492279 0.00210366365798 -2.80517100557e+12 +UniRef50_E4CEH2 1.20325682876e-05 3.00415150249e-05 7270432792.48 +UniRef50_UPI000472C3D3 hypothetical protein 1.98913436727e-05 1.08255592154e-05 -3659968435.1 +UniRef50_G8V705 Poly glycerophosphotransferase family protein 0.0124867629645 0.00441201281778 -3.25987572256e+12 +UniRef50_P96672 UPF0750 membrane protein YdeO 0.030161554109 0.0118023373196 -7.41184111081e+12 +UniRef50_W9A418 2.80097172331e-05 5.38109978749e-05 10416293612.4 +UniRef50_Q0C269 Transcriptional regulator, LysR family 0.00168572651712 0.000229520755339 -5.87888135685e+11 +UniRef50_W5X6C6 NADP oxidoreductase coenzyme F420 dependent 1.38034065239e-05 2.6045564056e-05 4942309223.88 +UniRef50_P0AGI3 Ribose transport system permease protein RbsC 0.00398588254333 0.00166581919939 -9.36638042327e+11 +UniRef50_B3M6C2 GF24314 2.86300390338e-06 3.51630115725e-05 13039909461.7 +UniRef50_T2ESK7 Integrase core domain protein 0.000804781091232 0.000893709383485 35901442855.4 +UniRef50_Q59939 Citrate synthase 0.0237748489526 0.0137539406738 -4.04556364252e+12 +UniRef50_UPI00036F2872 hypothetical protein 5.69977372716e-06 1.95042719908e-05 5573045349.26 +UniRef50_A8LU90 WGR domain protein 0.000160707770732 3.47175951729e-05 -50863779946.5 +UniRef50_W4KZV0 Glycosyltransferase Gtf1 0.0268611872437 0.00836474990691 -7.46723872968e+12 +UniRef50_UPI0003074063 hypothetical protein 2.10445834887e-06 0.000138793589991 55183079808.1 +UniRef50_P71082 Putative multidrug export ATP binding permease protein YgaD 0.0220007146912 0.00680196635461 -6.1359212131e+12 +UniRef50_A5WHZ1 Flavoprotein involved in K+ transport like protein 3.81984443328e-06 0.000875207158214 3.51789751698e+11 +UniRef50_UPI0003C116D2 0.000267446462033 1.28363987929e-05 -1.02789206947e+11 +UniRef50_Q8CN53 Antiholin like protein LrgB 0.0122743204635 0.000531253146621 -4.74082037947e+12 +UniRef50_Q02432 Chlorophyllide reductase 52.5 kDa chain 0.00263846058768 0.00057853276274 -8.31618141085e+11 +UniRef50_A7ZII5 Protoheme IX farnesyltransferase 0.00409059364019 0.000441892508331 -1.47302542153e+12 +UniRef50_UPI0004688FC2 cytochrome C biogenesis protein 4.29874587395e-05 0.000120615993409 31339592055.3 +UniRef50_Q2P0E2 ISXoo4 transposase 5.42580909954e-06 1.98191545558e-05 5810770186.92 +UniRef50_G7U8S7 Siderophore interacting protein 0.000153034860351 0.00507444785627 1.98683481898e+12 +UniRef50_D7BMW7 Portal protein 8.08370020024e-06 6.40715828389e-05 22602995269.8 +UniRef50_UPI0004754826 hypothetical protein 1.12647225466e-05 1.47943447565e-05 1424951799.47 +UniRef50_D3QH70 0.00527247314546 0.0033343880484 -7.82428736662e+11 +UniRef50_UPI0004707087 amino acid ABC transporter permease 1.67111281574e-05 1.64407915099e-05 -109138221.999 +UniRef50_A5WH07 UPF0313 protein PsycPRwf_2008 6.03977582125e-05 0.00873841225987 3.50342094553e+12 +UniRef50_H7CWQ5 ABC transporter, permease ATP binding protein 7.58511699003e-05 0.000912489214596 3.37761045347e+11 +UniRef50_N0B4L4 40 residue YVTN family beta propeller repeat protein 0.000224455100741 2.31086379521e-05 -81286037826.9 +UniRef50_Q5V468 Succinyl CoA 4.95165037583e-06 4.82212731119e-05 17468477676.5 +UniRef50_Q12545 3 isopropylmalate dehydrogenase 3.15730771617e-05 2.6267715002e-05 -2141839807.99 +UniRef50_F8DJT3 Phosphorylase family 0.0114088337284 0.000722241942049 -4.3143082434e+12 +UniRef50_Q044B7 Translation initiation factor IF 2 0.00938742386886 0.00153867335731 -3.16863689651e+12 +UniRef50_F0P650 Ribonuclease BN like family protein 0.0197977634555 0.00761372803618 -4.9188446137e+12 +UniRef50_K0B0P3 0.00164516223593 0.00125893229574 -1.55925766429e+11 +UniRef50_E6CDL3 0.00119582628827 0.00321641053183 8.15734654482e+11 +UniRef50_K7S3L7 Putative glucoamylase S1 S2 3.86064887448e-05 5.64289884223e-05 7195161826.47 +UniRef50_UPI000410322D hypothetical protein 1.18331236068e-05 5.45620597643e-05 17250195869.8 +UniRef50_C4LJY7 Glutamate racemase 4.80674874383e-06 3.04920371019e-05 10369466104.1 +UniRef50_UPI00026292D1 oligopeptide dipeptide ABC transporter ATPase, partial 2.71110955519e-05 8.32355046718e-05 22658112685.7 +UniRef50_H4BLQ2 Pyrimidine specific ribonucleoside hydrolase rihA 0.00160529200563 0.000285330149942 -5.32884798895e+11 +UniRef50_P0AEJ1 Multidrug export protein EmrB 0.00454750177625 0.00567373455482 4.54673993139e+11 +UniRef50_UPI0000056230 50S ribosomal protein L22 2.30049205596e-05 6.47734098579e-05 16862451686.7 +UniRef50_P0AFK8 Spermidine putrescine transport system permease protein PotC 0.0049891954939 0.000671866591673 -1.74295865741e+12 +UniRef50_U1F6C3 Adhesion protein associated protein 6.78222023223e-06 7.75800965063e-05 28581971439.5 +UniRef50_UPI00026291F3 3 5 exonuclease 0.000103992161944 4.84271330301e-05 -22432284032.1 +UniRef50_UPI0002D58150 hypothetical protein 5.52757664424e-05 2.16218054421e-05 -13586517036.4 +UniRef50_F0MXQ2 Type IV pilus assembly protein PilC 0.000200322740068 0.00296918977238 1.11782559876e+12 +UniRef50_Q9ZKM0 Putative 0.000158830009337 0.00476126313204 1.85805872984e+12 +UniRef50_K8E4E7 Metallo beta lactamase superfamily protein 0.000102920186949 1.39722942537e-05 -35909355794.5 +UniRef50_F0KHD0 0.000141017584923 9.59976139252e-05 -18175114749.0 +UniRef50_V4ZPA3 1.17947395895e-05 1.67846203333e-05 2014476088.99 +UniRef50_C2VC63 Fructose bisphosphate aldolase, class II 0.000252217809923 0.000458815576904 83406053769.9 +UniRef50_UPI00041FD2D5 hypothetical protein 4.31957227538e-05 0.000144203889018 40778236230.4 +UniRef50_UPI00034AB6AD ABC transporter 6.7995594094e-06 8.03926991618e-05 29710453607.4 +UniRef50_UPI0004706166 fusaric acid resistance protein, partial 4.57437543562e-06 4.88931289523e-05 17892024647.0 +UniRef50_P44940 Putative acid amine ligase HI_0929 9.83036429352e-05 0.0079963170838 3.1885249456e+12 +UniRef50_Q54E41 Hydroxyacid oxidase 4.06618197875e-06 4.08986489175e-05 14869718888.4 +UniRef50_UPI0002D41DEC protoheme IX farnesyltransferase 5.6675087087e-06 1.0039448289e-05 1765005658.3 +UniRef50_UPI0004757165 phosphate acetyltransferase 3.87306574496e-06 1.42193108073e-05 4176906094.35 +UniRef50_K2EIZ6 5.89657995632e-05 1.45873730064e-05 -17916115385.5 +UniRef50_A3PJ18 UDP glucose pyrophosphorylase 0.00516621473399 0.000725866773884 -1.79262296069e+12 +UniRef50_A0A024DE18 Pyruvate dehydrogenase 0.00453337581121 0.00455614115135 9190647176.66 +UniRef50_G7U623 Major facilitator superfamily permease 0.000320059257349 0.00447557946953 1.67763450362e+12 +UniRef50_UPI000373646F hypothetical protein 8.36053778427e-05 1.1413501316e-05 -29144746447.8 +UniRef50_UPI000350E784 3.01512317583e-05 4.43599348034e-05 5736227779.7 +UniRef50_P0A9U1 0.00447154575327 0.00139357662439 -1.24261390826e+12 +UniRef50_UPI000476EE69 ArsR family transcriptional regulator 4.22195450058e-05 1.56270152851e-05 -10735730575.3 +UniRef50_P0A9U5 0.00417942677078 0.00498131284816 3.23731249687e+11 +UniRef50_Q5KWI5 Ribonuclease PH 2.76644773432e-05 0.00131821815388 5.21012356094e+11 +UniRef50_T0JW92 0.0104594235933 0.0099894971916 -1.89715055012e+11 +UniRef50_UPI000378D30F hypothetical protein 0.000177119950835 5.26650876341e-05 -50243955507.2 +UniRef50_Q58989 Phosphoserine phosphatase 8.11655341737e-06 1.5058154654e-05 2802409602.25 +UniRef50_B8KMG5 Transposase, IS4 family protein 5.07143328158e-05 2.84763334279e-05 -8977753243.83 +UniRef50_S1EIE9 2.1425023898e-05 5.67956537263e-05 14279557308.1 +UniRef50_UPI00031BB00E hypothetical protein 3.43580704297e-06 5.31265247583e-06 757705532.729 +UniRef50_C0PC97 0.000151899916197 2.6793677521e-05 -50506923779.7 +UniRef50_P42799 Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic 0.0206749201848 0.00560104593801 -6.08550801067e+12 +UniRef50_Q5HPM8 Surface lipoprotein related protein 0.00671119758549 0.000786006285432 -2.39207243811e+12 +UniRef50_A6M2Q9 Helicase, putative 0.000406663890798 0.00166458872794 5.07839693227e+11 +UniRef50_P77427 0.00636375824535 0.00344453904327 -1.17852461473e+12 +UniRef50_X5WUC6 1.45914964006e-05 4.28321461132e-05 11401096840.7 +UniRef50_C5QZ07 0.0168506349734 0.00123909107075 -6.30257184867e+12 +UniRef50_Q4LC37 TraU protein 0.000146618981347 3.43954391347e-05 -45306021128.7 +UniRef50_M0SF49 8.42492305231e-05 0.00076251765894 2.73825287842e+11 +UniRef50_UPI00046CC98D hypothetical protein 4.47163154342e-05 3.1167390124e-05 -5469867411.74 +UniRef50_A3PIL0 TonB dependent receptor 0.00259910691639 0.00132761718439 -5.13316007742e+11 +UniRef50_R8A8K0 0.000182911510156 2.86068806048e-05 -62294672480.5 +UniRef50_UPI0003C1AE3D PREDICTED 0.000290913755577 0.000260486180146 -12283985589.8 +UniRef50_A9MJT7 Membrane protein insertase YidC 0.00373025938568 0.00147585294482 -9.10131544853e+11 +UniRef50_M9VCF0 Dolichyl phosphate mannose protein mannosyltransferase 0.000111025290843 0.00542324650924 2.14460889415e+12 +UniRef50_W8YLC5 0.000228822111516 0.00152838058925 5.24647704835e+11 +UniRef50_UPI0002375397 NAD dependent dehydratase 1.05495154676e-05 4.29256429273e-05 13070639955.2 +UniRef50_F0YP70 5.8403121334e-05 6.19487132037e-05 1431398947.1 +UniRef50_A6LVH3 Methyl accepting chemotaxis sensory transducer 0.000284506683835 0.00136683592307 4.36949595555e+11 +UniRef50_P23482 Hydrogenase 4 component B 0.00430052573431 0.00132803842956 -1.20002960145e+12 +UniRef50_F0Y482 Expressed protein 0.000499429150894 0.000877005167979 1.52432071476e+11 +UniRef50_C4Z7U3 Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase 0.000692708706018 0.00161887257858 3.73903720662e+11 +UniRef50_O74942 Peptidyl prolyl cis trans isomerase 9 3.42213777703e-06 3.54338181548e-06 48947706.1539 +UniRef50_W6RRV7 Magnesium transporter, CorA family 0.000318246165192 0.000199313861778 -48014430351.7 +UniRef50_O33952 UDP glucose 6 dehydrogenase 0.00274513517939 0.004425699855 6.78464582391e+11 +UniRef50_UPI000392EF25 PREDICTED 3.35425704612e-06 2.0364169556e-05 6867110415.35 +UniRef50_H8GU00 Peptidyl prolyl cis trans isomerase 0.00039596432397 0.0475116707915 1.90211888757e+13 +UniRef50_UPI0004700EA0 urocanate hydratase, partial 1.51311252485e-05 2.14046922389e-05 2532715979.35 +UniRef50_G7MD42 PHP domain protein 0.000171584540393 0.00131270991032 4.60686315024e+11 +UniRef50_R4ZPM4 Cell wall surface anchor family protein 0.000917223072168 0.000135881919561 -3.15437011442e+11 +UniRef50_Q17VD8 Complete genome, strain Sheeba 7.88070957963e-05 0.00379601802801 1.50068366864e+12 +UniRef50_U0FZ44 8.38539003978e-05 3.42518586568e-05 -20024952936.3 +UniRef50_C6SMN5 3.99938220839e-05 0.00056936897477 2.13715245303e+11 +UniRef50_I4EB03 0.000974197939926 0.00076705637713 -83625590813.6 +UniRef50_UPI0003000992 hypothetical protein 5.79721264155e-05 4.64308209259e-05 -4659366653.9 +UniRef50_P37630 Inner membrane protein YhiM 0.00168355501581 0.00077337651489 -3.67450229968e+11 +UniRef50_P62457 Histidinol dehydrogenase 4.04931564807e-06 5.94466657252e-06 765176426.772 +UniRef50_A3DIZ5 DNA directed RNA polymerase subunit beta 4.42242688008e-06 5.35491146355e-06 376455469.219 +UniRef50_UPI000479E680 FIST domain containing protein 3.99281326592e-06 5.90085750876e-06 770300875.17 +UniRef50_E9CGB4 Acyl CoA dehydrogenase 0.000261179896422 0.00453793483554 1.72657845061e+12 +UniRef50_P18949 Cystathionine beta lyase 0.00315150051396 0.00174372783898 -5.68335104203e+11 +UniRef50_R9DK57 0.00177107447034 0.00177190023117 333369780.296 +UniRef50_Q67MT5 Peptide chain release factor 3 0.0269745585661 0.0156042547514 -4.59033117931e+12 +UniRef50_P77526 Disulfide bond oxidoreductase YfcG 0.00320530481829 0.000481494628027 -1.09963559872e+12 +UniRef50_H8FYF0 0.000126889792417 0.0001511926604 9811366034.46 +UniRef50_C1F2I6 Metallo beta lactamase family protein 4.72678641906e-06 0.000144945952648 56608198089.3 +UniRef50_N3SI82 6.96715965178e-05 0.000326121270881 1.03531880532e+11 +UniRef50_UPI0003B41E49 lactose phosphotransferase system repressor 8.76831007685e-06 2.59562911509e-05 6938998879.82 +UniRef50_M0YT93 4.83187260919e-05 5.80663959685e-05 3935253946.54 +UniRef50_Q2FF88 Accessory gene regulator protein B 0.00517729525747 0.00100538030667 -1.68425326079e+12 +UniRef50_O52376 Thiol 0.000178903312256 0.000325119308468 59029191942.8 +UniRef50_A7FJ95 0.00315869328292 0.00312720690777 -12711436029.3 +UniRef50_UPI0003826EC3 hypothetical protein 1.42553205343e-05 1.60760342414e-05 735044466.226 +UniRef50_O06456 N5 carboxyaminoimidazole ribonucleotide mutase 0.000409452414595 0.00222783185919 7.34102095806e+11 +UniRef50_Q8CQE0 Galactosamine containing minor teichoic acid biosynthesis protein 0.00945522039515 0.00238012943504 -2.85630104173e+12 +UniRef50_UPI0003C1158B 1.16455332131e-05 1.06438965085e-05 -404373029.112 +UniRef50_UPI00037E8C2C hypothetical protein 3.06378498639e-06 1.21123342843e-05 3653010389.75 +UniRef50_F0RKJ6 Transposase IS4 family protein 0.00427372358825 0.871496431206 3.50108449085e+14 +UniRef50_J8VEE3 Plasmid pRiA4b ORF 3 like protein 0.000370357774747 7.43621022499e-05 -1.19497085262e+11 +UniRef50_B7MNC1 Ribosomal RNA small subunit methyltransferase C 0.00312178913159 0.00131068876385 -7.31163443157e+11 +UniRef50_Q49WJ7 Bifunctional purine biosynthesis protein PurH 8.86602575264e-06 1.02267683366e-05 549348479.334 +UniRef50_UPI00005C7E8C hypothetical protein 0.0124749400872 0.00272922113577 -3.93446633411e+12 +UniRef50_Q4FMW8 GMP synthase [glutamine hydrolyzing] 6.48587772557e-06 0.00457245723309 1.84333866693e+12 +UniRef50_E0NC31 0.000959710141151 0.000329570359183 -2.54395162665e+11 +UniRef50_A7WZ80 Putative antiporter subunit mnhE2 0.0230557001751 0.00192880236101 -8.52918790374e+12 +UniRef50_UPI00036BF214 hypothetical protein 3.98175603579e-05 9.36164526744e-05 21719273014.8 +UniRef50_P63651 Probable succinyl CoA 6.75436559509e-05 9.40602551564e-05 10705076494.5 +UniRef50_UPI0003AB3DEF hypothetical protein 4.66826366622e-05 2.345354503e-05 -9377869344.93 +UniRef50_R4R8Z7 Rhs family protein 0.00197923249357 0.000508051146677 -5.93933963165e+11 +UniRef50_UPI000471A1D9 branched chain amino acid transporter II carrier protein 2.16251055637e-05 8.2264918714e-06 -5409184767.06 +UniRef50_UPI00046FA3C6 hypothetical protein 1.13205205058e-05 6.48459643173e-06 -1952321892.16 +UniRef50_UPI00047136FE hypothetical protein 3.50774152836e-05 1.57386658726e-05 -7807290450.36 +UniRef50_B2V995 Protease HtpX homolog 0.000265368097293 0.0012064799108 3.79938387853e+11 +UniRef50_K7YQ94 0.000149615584159 0.00313043664521 1.20339404113e+12 +UniRef50_Q6LU24 Phosphoribosylformylglycinamidine synthase 1.18064922724e-05 8.29883450018e-06 -1416084486.45 +UniRef50_Q3IWC2 0.00281554618479 0.00169401577093 -4.52775590801e+11 +UniRef50_D0Z2D3 4.11723962756e-06 1.36034314392e-06 -1112992941.37 +UniRef50_R8ZFX9 0.000920697533784 0.000723224584158 -79722253029.6 +UniRef50_A3PQQ0 GCN5 related N acetyltransferase 0.000541910816138 0.000751668921763 84681921262.2 +UniRef50_A0A058Z6L2 5.75771898761e-05 0.000116266419368 23693562143.7 +UniRef50_Q8CNV6 Smooth muscle caldesmon 0.00486611404903 0.00195886224467 -1.17369322941e+12 +UniRef50_UPI00037E8BDB hypothetical protein 4.39000968191e-06 1.50908533185e-05 4320061890.21 +UniRef50_UPI00036ED2AC hypothetical protein 3.21455397372e-06 6.21796107984e-06 1212512304.69 +UniRef50_S5XSF5 Nitrilotriacetate monooxygenase family FMN dependent 0.000379713282874 0.000180254347023 -80524020039.4 +UniRef50_J5PQD7 5.30414795111e-05 4.5425061136e-05 -3074841561.99 +UniRef50_A0A022S8H0 Export membrane family protein 2.7375729983e-05 5.47673915852e-05 11058349922.3 +UniRef50_O07002 Aspartate proton symporter 8.86811250236e-05 0.009474006699 3.78897110511e+12 +UniRef50_UPI0002FCB073 hypothetical protein 7.51329904929e-06 4.97449641589e-05 17049441445.6 +UniRef50_A5UK56 Arginine biosynthesis bifunctional protein ArgJ 0.00191873740922 0.00190796007487 -4350942129.86 +UniRef50_U5MQZ5 0.000670253571197 0.00175372810923 4.3741196673e+11 +UniRef50_Q3JUT4 0.000195875822572 2.82900307522e-05 -67656440666.7 +UniRef50_U6FWJ6 SdrH protein 7.37232847333e-06 1.20544441243e-05 1890227544.32 +UniRef50_UPI00037A959D hypothetical protein 8.98398331053e-06 2.06452220273e-05 4707785169.46 +UniRef50_V6QG63 Integrase 0.340495265028 0.114492453346 -9.12401084424e+13 +UniRef50_A2RFC7 ATP synthase subunit a 0.000181774954504 0.00118928529676 4.06744288713e+11 +UniRef50_D3QCQ2 Ferric uptake regulation protein FUR 0.0227315782888 0.00494963994773 -7.17878671722e+12 +UniRef50_UPI000311159F hypothetical protein 2.42489382401e-05 8.50752791715e-06 -6355000516.22 +UniRef50_Q5HKX7 Glycosyl transferase, group 1 family protein 0.00911407783292 0.00357043674433 -2.23803593559e+12 +UniRef50_Q67N36 Aminomethyltransferase 4.53434975293e-05 0.00028568963967 97030686961.2 +UniRef50_P42096 Protein LacX, chromosomal 0.00374587985865 0.00165523416637 -8.44019321081e+11 +UniRef50_C2LZG9 Transcriptional regulator, PadR family 9.82532889278e-05 0.000540069447397 1.78366604868e+11 +UniRef50_A0A022FMT2 0.000113855603187 2.34909539014e-05 -36481317815.5 +UniRef50_Q6NDQ0 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00011924982064 5.38699017568e-05 -26394675555.0 +UniRef50_G4LIM7 3 hydroxyacyl CoA dehydrogenase NAD binding subunit 0.000118706285809 0.000150671788373 12904865645.9 +UniRef50_X1PRM6 Marine sediment metagenome DNA, contig 1.98981235626e-05 3.39402990781e-05 5668998572.48 +UniRef50_I6G892 HTH type transcriptional regulator AdiY domain protein 4.07802318573e-06 1.20924809573e-05 3235534950.84 +UniRef50_Q7M8H4 7 cyano 7 deazaguanine synthase 1.71209854195e-05 2.88239751146e-05 4724640551.74 +UniRef50_P51763 Reaction center protein M chain 0.0118997366126 0.0028989646317 -3.63372210058e+12 +UniRef50_I0C0V7 Multidrug resistance efflux pump 0.0143810148794 0.00286481722427 -4.649230313e+12 +UniRef50_UPI0003B40FE5 membrane protein 1.01575227073e-05 2.86329163576e-05 7458743135.2 +UniRef50_Q39ZB4 NADH quinone oxidoreductase subunit I 1 6.16906823588e-05 9.05301873108e-05 11642862049.6 +UniRef50_P0ACM7 0.00181380880315 0.00259337466179 3.14720303482e+11 +UniRef50_Q8ZT92 GMP synthase [glutamine hydrolyzing] 1.16401488397e-05 1.75574987619e-05 2388906777.64 +UniRef50_E4GGL7 HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein 0.000173689872173 0.00513727960718 2.00386208612e+12 +UniRef50_C3EUD3 0.000826858130036 0.00081618149141 -4310290030.41 +UniRef50_P42360 0.00542758992229 0.00562067849748 77952227267.5 +UniRef50_UPI0003725E3A hypothetical protein 4.81687860299e-05 0.00120899684931 4.68640534108e+11 +UniRef50_T0Z4X5 1.95129377807e-05 2.02479324225e-05 296726356.293 +UniRef50_UPI0003A412EC hypothetical protein 2.38001694506e-06 3.87066651267e-06 601793522.771 +UniRef50_U6ANF3 0.000718193585248 0.000309772767695 -1.64884495933e+11 +UniRef50_UPI0004704A43 hydroxyethylthiazole kinase 4.37833872865e-06 6.71846892307e-06 944739276.114 +UniRef50_D8ACP8 0.000498197140088 0.000538571498834 16299624074.9 +UniRef50_Q7A7G4 0.0467306695097 0.00811540816471 -1.55894548675e+13 +UniRef50_P37351 Ribose 5 phosphate isomerase B 0.00615641821572 0.00721498487204 4.2735634923e+11 +UniRef50_F2ENL3 1.23294685411e-05 1.85918619296e-05 2528205059.15 +UniRef50_UPI0002D4EE34 hypothetical protein 3.02069634802e-05 2.45073141908e-05 -2301018360.69 +UniRef50_UPI00037CDEEA hypothetical protein 3.56144046778e-05 5.57240743102e-05 8118520404.0 +UniRef50_P39176 Probable L,D transpeptidase ErfK SrfK 0.00348394284473 0.00284713635616 -2.5708659393e+11 +UniRef50_V4QXI1 AMP binding protein 1.16985549064e-05 7.15839379637e-06 -1832918754.16 +UniRef50_E1NTN7 4.88442278438e-05 1.77971188191e-05 -12534098904.1 +UniRef50_L7U7P5 PT repeat DnaJ domain containing protein 6.00408038037e-06 8.06888900044e-06 833588577.973 +UniRef50_J5KRR9 0.000101632535199 0.000185567090397 33885409926.2 +UniRef50_A6LTF1 YodP 0.0006669567196 0.000917857565392 1.01291750346e+11 +UniRef50_UPI0003F9ADEE hypothetical protein 2.83977218502e-05 7.6415692039e-05 19385443812.0 +UniRef50_Q9KTK8 tRNA sulfurtransferase 0.007127516305 0.000632190111243 -2.62224289104e+12 +UniRef50_D2S427 LigA 5.71206999427e-05 0.000480643688481 1.70981427684e+11 +UniRef50_UPI0002D844FC hypothetical protein 0.000336650147472 7.16804902958e-05 -1.06971502145e+11 +UniRef50_UPI00037FB4E4 hypothetical protein 4.93765590195e-06 1.50746208874e-06 -1384811335.6 +UniRef50_UPI0004270BC7 hypothetical protein 1.01205177747e-05 1.12415530168e-05 452575683.885 +UniRef50_Q0K7P2 ABC type transporter, ATPase component 0.00114980559286 0.000987185526324 -65651716433.2 +UniRef50_D0MEX8 FAD dependent oxidoreductase 7.84794155617e-05 0.0225019104155 9.0526142611e+12 +UniRef50_B7LTE9 Transporter 1.90214857557e-05 6.9348195183e-06 -4879535480.11 +UniRef50_UPI00030DD9C9 hypothetical protein 2.71494169217e-05 3.1086703741e-05 1589531004.89 +UniRef50_G2TPA3 PfkB domain protein 0.000245120771981 0.0022918118216 8.26274292455e+11 +UniRef50_Q9VM33 Elongation factor G, mitochondrial 7.81991071876e-06 3.92191805353e-06 -1573667472.7 +UniRef50_O31248 Peptidyl prolyl cis trans isomerase (Rotamase) 0.000187506171368 0.00768826125224 3.02814687076e+12 +UniRef50_P13656 Probable bifunctional chitinase lysozyme 0.000309418910305 7.6705637713e-05 -93949203858.4 +UniRef50_G9AU18 0.00034796642424 7.12848869907e-05 -1.11699731852e+11 +UniRef50_D3E347 0.000566232522232 0.00061738684013 20651625869.5 +UniRef50_D3E1C8 Hydrolase HAD superfamily 0.00458072974067 0.000463735485513 -1.66208110201e+12 +UniRef50_P33941 ABC transporter ATP binding protein YojI 0.00153226538779 0.000444785353012 -4.39029034921e+11 +UniRef50_X6DV46 0.000568701744273 0.00012064113701 -1.80887565474e+11 +UniRef50_UPI0003B521C3 cytochrome C biogenesis protein 4.07808394097e-05 0.000192002172122 61049907710.3 +UniRef50_E6MXZ6 Exonuclease, DNA polymerase III, epsilon subunit 0.000333057942696 0.00321163670353 1.16211756988e+12 +UniRef50_E7DWP7 WdaG 0.000185000346112 2.61925899583e-05 -64112639949.7 +UniRef50_M4YXM1 Cell division protein FtsX 0.00402878123008 0.00174187812226 -9.23250848084e+11 +UniRef50_D8JH95 ABC transporter family protein 9.87321679628e-05 0.0062230426131 2.47245928044e+12 +UniRef50_A3PIS2 0.0126556561302 0.00334320798334 -3.75954959348e+12 +UniRef50_P76085 Phenylacetate coenzyme A ligase 0.00348159402361 0.00645734179598 1.20134589224e+12 +UniRef50_P0AEG3 Dipeptide transport system permease protein DppC 0.00382370326485 0.000846996592862 -1.20173301178e+12 +UniRef50_A6NPX7 2.94773550239e-05 1.24306693792e-05 -6881956181.12 +UniRef50_B7IJP9 Probable manganese dependent inorganic pyrophosphatase 0.0220385364733 0.00414181365992 -7.22512661725e+12 +UniRef50_A9KFA0 Ribonuclease 3 7.19583834191e-06 1.91850239598e-05 4840181357.8 +UniRef50_I0JK39 0.000140155688933 0.000458139504879 1.28373968598e+11 +UniRef50_U5MPS5 Acetyltransferase 0.000241462252992 0.000373031627616 53116171073.5 +UniRef50_U5UQU4 TetR family transcriptional regulator 0.00784496537669 0.000329349485352 -3.03414636231e+12 +UniRef50_N1N5F7 Clumping factor ClfB, fibrinogen binding protein 4.65457446223e-05 8.75444778166e-05 16551691701.6 +UniRef50_P71237 Putative colanic acid biosynthesis glycosyl transferase WcaC 0.0018559679204 0.000910964758709 -3.81509372868e+11 +UniRef50_UPI00036F4FFA hypothetical protein 5.50707252338e-05 1.72251895581e-05 -15278707169.2 +UniRef50_P39830 Inner membrane protein YbaL 0.00380738246987 0.000508316790971 -1.33187329866e+12 +UniRef50_F8DI48 Cytoplasmic alpha amylase 0.00660532032062 0.00343393571422 -1.28032688287e+12 +UniRef50_UPI0003B686EF hypothetical protein 3.9335523464e-05 0.000130407717908 36766962478.5 +UniRef50_Q5HRM6 PIN domain protein 0.0145722666425 0.00317355799789 -4.60179855771e+12 +UniRef50_A0RH88 tRNA dimethylallyltransferase 1.22169338261e-05 0.000728461723526 2.89156810914e+11 +UniRef50_Q83FR2 Hexulose 6 phosphate synthase 0.000173956676891 0.00461536800775 1.79305225651e+12 +UniRef50_C5W449 0.00367160193727 0.000793589111246 -1.16188909505e+12 +UniRef50_B6VLA0 3.11625000867e-06 5.61482663574e-06 1008706045.33 +UniRef50_B7MGB3 D galactonate dehydratase 0.00022368293636 0.000152750019926 -28636488809.2 +UniRef50_G8RA51 Exotoxin 15 0.01095422475 0.00433777186573 -2.67114322239e+12 +UniRef50_UPI000248470C hemolysin type calcium binding region 4.32758235328e-05 1.10390279212e-05 -13014389978.4 +UniRef50_A7IPS8 ParB domain protein nuclease 0.000104832309532 1.92018643122e-05 -34570061539.0 +UniRef50_A3PSB0 0.00371338731486 0.000880668731604 -1.14360325343e+12 +UniRef50_C4ZYY9 HTH type transcriptional regulator YidZ 0.0024083939575 0.000572870158602 -7.41023482026e+11 +UniRef50_A3PR77 Major facilitator superfamily MFS_1 0.00533483320643 0.00130158375924 -1.62827229537e+12 +UniRef50_D4HCV0 FAD linked oxidase, C terminal domain protein 0.000337950167046 0.00572166321347 2.17347102243e+12 +UniRef50_E8SIU9 Phosphate regulon sensor protein PhoR SphS 0.0186450848692 0.00662723171096 -4.85175479561e+12 +UniRef50_G7U4H3 0.000870376173622 0.00913563313681 3.33678566215e+12 +UniRef50_B3H2W6 RNA pyrophosphohydrolase 0.02035591341 0.000439677476724 -8.04042884597e+12 +UniRef50_Q47SB4 3 isopropylmalate dehydrogenase 9.37601209206e-05 0.000270034028822 71163939743.7 +UniRef50_S5CRE9 0.000470740409928 0.00981397533082 3.77197859195e+12 +UniRef50_K4KJS3 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 0.000178339837253 0.00505187568862 1.96750622821e+12 +UniRef50_Q1B492 LigA 3.62434192937e-06 0.000199620239258 79125948891.8 +UniRef50_U3STE7 0.00368500366505 0.000296800708731 -1.36785911139e+12 +UniRef50_M9VIL3 0.00010544301365 0.00721478848789 2.87013000943e+12 +UniRef50_I0C1G5 SIR2 family protein 0.0149109102003 0.00455407993982 -4.18117946876e+12 +UniRef50_H8H8S2 ABC transport system permease 0.000343716196778 0.00301894934907 1.08002445238e+12 +UniRef50_Q2T751 Taurine import ATP binding protein TauB 2.18686184419e-05 1.18088977163e-05 -4061232703.58 +UniRef50_D6TV92 ATPase 9.92791472557e-07 2.33964619527e-06 543741779.324 +UniRef50_UPI0002557200 2 nitropropane dioxygenase 8.3740781244e-05 8.11484121652e-05 -1046571209.06 +UniRef50_X1J3J4 Marine sediment metagenome DNA, contig 6.18713133906e-06 4.57098792142e-05 15955818315.8 +UniRef50_R1DBP2 4.76785465843e-05 0.00271453924715 1.07664439088e+12 +UniRef50_C5Z1P3 0.00182510547351 0.000634218855091 -4.80775541678e+11 +UniRef50_Q972W3 Urease accessory protein UreG 0.000373471097578 0.00309051314972 1.0969032183e+12 +UniRef50_B8LZL2 7.53780234808e-06 1.53612126377e-05 3158406737.96 +UniRef50_Q9UVC0 Glyceraldehyde 3 phosphate dehydrogenase 1.74288279122e-05 2.82863309712e-05 4383307221.46 +UniRef50_G0EU06 2.90189864788e-05 5.60601499892e-05 10916849541.5 +UniRef50_V4RI55 Pirin domain protein 3.64266539258e-05 1.00310700359e-05 -10656221126.6 +UniRef50_Q2LQN4 Glutamate tRNA ligase 1 3.7248495557e-06 1.23336278964e-05 3475469457.73 +UniRef50_E8XZE4 7.74228935449e-06 1.19695568317e-05 1706599754.96 +UniRef50_P0AAV9 Putative isomerase YbhH 0.00406045425313 0.000941470031499 -1.25917220451e+12 +UniRef50_Q04MW7 Argininosuccinate synthase 3.85897195451e-06 5.04172335607e-05 18796141544.5 +UniRef50_K0AYA8 Bifunctional chorismate mutase prephenate dehydratase 0.000307959690379 0.000226585707308 -32851675536.8 +UniRef50_A6LVB7 0.000124369773306 0.00084004571323 2.88927159279e+11 +UniRef50_Q08NW1 3.01908282191e-05 2.20416803253e-06 -11298558152.3 +UniRef50_U5MUC9 Cyclic di GMP phosphodiesterase response regulator RpfG 0.000169276228183 0.00293056635321 1.11476670831e+12 +UniRef50_P13518 RNase E specificity factor CsrD 0.00270523577673 0.000966616504477 -7.01901935465e+11 +UniRef50_UPI0004762DA1 acetate permease, partial 0.000117064957277 0.000222839171496 42702348275.8 +UniRef50_A3JZH8 0.000240350261531 3.44913502691e-05 -83107768649.4 +UniRef50_A5UJJ6 Predicted CRISPR associated protein 0.00289384722685 0.000142895179933 -1.11059309932e+12 +UniRef50_B0V8Z8 ATP dependent dsDNA exonuclease 3.23651890987e-05 0.00266649832585 1.06343187175e+12 +UniRef50_Q5HP88 Probable ATP dependent helicase DinG homolog 0.0192091188015 0.00526460941745 -5.62956955669e+12 +UniRef50_E8PIL7 Rossmann fold nucleotide binding protein 0.000101202677982 0.0080634397514 3.21445281418e+12 +UniRef50_UPI0004422EE7 PREDICTED 2.37848299677e-06 3.80944178882e-05 14418961199.5 +UniRef50_E3YUW5 0.000234250633169 0.0013374323091 4.45367980134e+11 +UniRef50_P75691 Aldehyde reductase YahK 0.00276580565744 0.00830423302692 2.23593109321e+12 +UniRef50_V1QTW1 0.00331640875209 0.00125451616966 -8.32411337794e+11 +UniRef50_UPI0004646ABC MULTISPECIES 0.000278058394687 5.64464571438e-05 -89467458670.4 +UniRef50_UPI0004769729 thioesterase 1.83598123204e-05 3.33894051787e-05 6067631070.74 +UniRef50_R6Q2D0 Iron only hydrogenase maturation protein HydF 0.000210846599972 0.00138081998809 4.72332613972e+11 +UniRef50_Q6FDN2 1.64274324883e-05 0.0010361989656 4.1169428192e+11 +UniRef50_UPI000273D0E2 3.1410525742e-05 8.1391306694e-06 -9394947762.94 +UniRef50_R7PTK0 0.00351102554309 0.000719999982592 -1.12677126851e+12 +UniRef50_F0Y6N7 Expressed protein 0.000160983535335 0.000455512719133 1.18905045779e+11 +UniRef50_B2A9N0 Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1 4.00086407947e-06 0.000591443128976 2.37157651066e+11 +UniRef50_Q9RZN7 Potassium transporting ATPase A chain 8.98733040216e-05 0.0158759128115 6.37301786567e+12 +UniRef50_K2DR39 1.0667325353e-05 3.24972316179e-05 8813001042.21 +UniRef50_R5J2P0 HTH type transcriptional regulator GmuR 0.0010260506466 0.00470647846601 1.48583387462e+12 +UniRef50_H3VA73 PF03904 domain protein 0.032992205684 0.00777645372905 -1.01799084963e+13 +UniRef50_UPI000273C7FC PREDICTED 1.74243648387e-05 1.16347223511e-05 -2337349719.15 +UniRef50_Q68X45 DNA topoisomerase 1 5.2131528358e-06 1.75226801959e-06 -1397201670.14 +UniRef50_B2HZ46 0.000230220986119 0.00995534458788 3.92615173872e+12 +UniRef50_UPI000469439E hypothetical protein, partial 1.23646480421e-05 0.000318149124638 1.23448945599e+11 +UniRef50_A3CPL4 Cystathionine gamma synthase, putative 0.00469070086003 0.00167444463834 -1.21769965032e+12 +UniRef50_Q0TN75 Sulfatase 0.000836831555326 0.000188953929026 -2.6155614809e+11 +UniRef50_Q833W8 Tagatose 1,6 diphosphate aldolase 2 1.96878754934e-05 0.00157779437103 6.29026712366e+11 +UniRef50_L5P9E1 Rhodanese like domain protein 0.00020367949039 0.000298996164153 38480510865.2 +UniRef50_T6ITD7 DNA mismatch repair protein mutS 0.000350854302435 0.000146453967375 -82518923537.9 +UniRef50_P96995 UDP glucose 4 epimerase 0.00659704004829 0.0098737395285 1.32284378979e+12 +UniRef50_UPI0003B31677 sugar ABC transporter ATP binding protein 7.59381692397e-06 6.30603990144e-06 -519891386.796 +UniRef50_G2C2A9 2.82042470236e-05 0.000391374275872 1.46616197243e+11 +UniRef50_Q1IJ73 7.03677280897e-06 7.28270575926e-05 26560345304.7 +UniRef50_Q2FEK4 Urease subunit beta 0.0120110715355 0.00196404039226 -4.05610976345e+12 +UniRef50_A1R4R1 Glutamyl tRNA amidotransferase subunit A 0.000101043282575 0.0076287402783 3.03902365241e+12 +UniRef50_UPI0003685835 hypothetical protein 6.92141938234e-05 9.27440452985e-06 -24198428481.8 +UniRef50_K0S5Y4 0.000186772022854 0.000114225875159 -29287770065.8 +UniRef50_A0A023X9G2 ABC transporter permease protein 0.0125265939867 0.00524608298953 -2.93923163147e+12 +UniRef50_B9E1A4 0.000182360381085 0.00134167359752 4.6802897185e+11 +UniRef50_UPI0003FA3257 protein HflC 8.46458372455e-05 1.58682334723e-05 -27766362639.3 +UniRef50_M9S6A9 Two component response regulator, PprB 0.000655509560464 0.00092474989088 1.08695625339e+11 +UniRef50_W4TN66 Integral membrane protein 6.63018518973e-05 0.000586914312731 2.10177639072e+11 +UniRef50_Q6AAW0 Phosphoenolpyruvate protein phosphotransferase 9.56467877165e-05 0.00536074619651 2.12558524136e+12 +UniRef50_A8L3Z7 2.6539170441e-05 8.1324634341e-06 -7431013494.38 +UniRef50_M9Z693 Nitrite oxidordeuctase B subunit 2.31930484293e-05 2.70267873688e-05 1547727455.14 +UniRef50_W6ICP5 Methyl accepting chemotaxis protein 2.49426301013e-05 9.84770667696e-06 -6094005821.93 +UniRef50_W8YNW6 6 pyruvoyl tetrahydropterin synthase 4.28283374897e-05 0.000121434553499 31734294009.7 +UniRef50_X5DUC9 Thioesterase like superfamily protein 0.0309976534356 0.00554374880551 -1.02760536537e+13 +UniRef50_V8G0E6 Cell wall binding protein 0.00121668485799 0.00576806634254 1.83744855704e+12 +UniRef50_Q5ZZI2 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.00118386410449 0.000437506229925 -3.01313832803e+11 +UniRef50_O74197 Phosphoribosylaminoimidazole carboxylase 2.05450491225e-05 2.35679343728e-05 1220375870.52 +UniRef50_R1BXE4 0.000245285910898 0.000263346271411 7291189164.64 +UniRef50_UPI0004695C98 amino acid ABC transporter permease 3.94346356983e-05 6.42011089939e-05 9998529188.24 +UniRef50_UPI000426690E hypothetical protein 3.152159372e-05 3.33629431599e-05 743375364.786 +UniRef50_O34947 0.000325418955908 0.00103062362617 2.84699779219e+11 +UniRef50_V9WEG0 Permease of the drug metabolite transporter superfamily 0.0035492444399 0.000623312452362 -1.18123464859e+12 +UniRef50_S9SJZ0 0.00100391711547 0.00123669967403 93977175453.9 +UniRef50_UPI000473A780 threonine dehydratase 2.91705153567e-06 1.326628594e-05 4178112928.4 +UniRef50_UPI0001E89D91 Transcriptional regulator of sugar metabolism 1.76451323327e-05 5.13127890767e-05 13592046176.2 +UniRef50_A7FAZ1 0.000255633852495 0.0132088966659 5.22939115218e+12 +UniRef50_UPI0003B54A85 alpha beta hydrolase, partial 6.82256066011e-05 2.12202446364e-05 -18976641445.8 +UniRef50_UPI0002883AB7 acyl CoA dehydrogenase 6.71816367596e-06 2.18771260062e-05 6119859114.09 +UniRef50_K5CST2 Branched chain amino acid ABC transporter nucleotide binding protein ATPase 3.48034276897e-05 6.82958710244e-05 13521310372.7 +UniRef50_M9R3P2 PHB depolymerase 0.00534868159634 0.00156691845204 -1.52674418881e+12 +UniRef50_Q6A9Z4 Glutamate ammonia ligase adenylyltransferase 0.00030647782972 0.00621268788677 2.38440947738e+12 +UniRef50_Q8Y0U6 Thymidylate synthase 0.000116419168241 0.000592112726583 1.92043326919e+11 +UniRef50_A4WPC2 OmpA MotB domain protein 0.00457116043312 0.000292403313158 -1.72738675558e+12 +UniRef50_F7Y7I2 0.000235925219919 9.8771950446e-05 -55370457946.1 +UniRef50_A6LVU2 Cobalt precorrin 5B C methyltransferase 0.000400162934655 0.00119678460493 3.21605943937e+11 +UniRef50_R7G9U3 Phosphosugar isomerase transcriptional regulator 0.000182654510734 0.00153272544283 5.45040202522e+11 +UniRef50_L0NA87 0.0014493950259 0.000406514791478 -4.21023548215e+11 +UniRef50_X5EJ50 PAP2 superfamily protein 0.01758576534 0.00665892548799 -4.41129933566e+12 +UniRef50_UPI0003B68328 mandelate racemase, partial 0.00300881820171 0.00147301580115 -6.20022275521e+11 +UniRef50_UPI00046BB227 PREDICTED 1.7670102895e-05 5.42736769949e-05 14777312040.5 +UniRef50_G5PRD3 Putative outer membrane lipoprotein 4.32018040191e-05 6.2168073141e-05 7656915586.81 +UniRef50_Q17WK3 0.000226626619354 0.000364887769871 55817723118.8 +UniRef50_UPI0003EAE12A PREDICTED 4.10932777566e-05 9.23586255471e-05 20696449999.6 +UniRef50_J0XW17 0.000940642595952 5.96728995901e-05 -3.55658277135e+11 +UniRef50_A6M391 Methyl accepting chemotaxis sensory transducer 8.51472155251e-05 0.00047202046696 1.56185479073e+11 +UniRef50_E8SJA6 SAM dependent methyltransferase, MraW methylase family 0.00844644924925 0.00301843669099 -2.19135527897e+12 +UniRef50_A4WQ24 Lytic transglycosylase, catalytic 0.000188546467221 8.09214193954e-05 -43449552515.2 +UniRef50_A7X2X9 Ribosomal protein L11 methyltransferase 0.0251022106608 0.00941444649834 -6.33334290292e+12 +UniRef50_UPI0003B390C8 cell division protein FtsW 5.27111737973e-06 6.88426817924e-06 651248773.349 +UniRef50_I0C5T1 0.00992961581786 0.00358578591712 -2.56108197848e+12 +UniRef50_L2F8J3 1.5221857645e-05 2.0103074511e-05 1970607148.07 +UniRef50_UPI00035F908D hypothetical protein 0.000107952056299 1.73164591113e-05 -36590702808.5 +UniRef50_C0PP21 7.76547371345e-06 0.000130104692687 49389843970.8 +UniRef50_I0C5T9 0.0153779240783 0.00444446379825 -4.41397208368e+12 +UniRef50_UPI00046F3223 hypothetical protein 3.94147101909e-06 1.87848131648e-05 5992439372.51 +UniRef50_P19769 Putative transposase InsK for insertion sequence element IS150 0.00217549997282 0.000818447020154 -5.47858929905e+11 +UniRef50_P20371 Protocatechuate 3,4 dioxygenase alpha chain 0.000180327701681 0.00491392696038 1.91101210853e+12 +UniRef50_O32091 0.0249523986244 0.00873419215956 -6.54748896961e+12 +UniRef50_UPI0003D730BE PREDICTED 8.52505562555e-06 1.2896724412e-05 1764896335.5 +UniRef50_UPI00039597D2 PREDICTED 4.54951296648e-06 9.35059940619e-05 35912823037.0 +UniRef50_Q9RWU2 3.89428461667e-05 0.00739051920356 2.96792158947e+12 +UniRef50_UPI0002F9456A hypothetical protein 5.47838889643e-06 8.59315772455e-06 1257470398.42 +UniRef50_W1A536 0.000102887379937 1.03360219152e-05 -37364118966.3 +UniRef50_Q313W4 Bifunctional protein GlmU 3.69003116161e-06 4.82712523398e-06 459058830.729 +UniRef50_F0Y3L5 0.000181725211559 0.00068655495424 2.03805962078e+11 +UniRef50_C0LZW7 Cross beta structure silk protein 2 2.05621529976e-06 6.19971148202e-06 1672780255.19 +UniRef50_UPI00035C4CDB hypothetical protein 1.6295955568e-05 1.97135661528e-05 1379731331.88 +UniRef50_R0NY94 7.42541994644e-05 0.000426317845042 1.42132414027e+11 +UniRef50_M4IMI2 Transposase like protein 0.0223684188054 0.00259087657702 -7.98443649534e+12 +UniRef50_G8UVE6 TraU 0.000115115752359 9.88747952918e-06 -42481945037.6 +UniRef50_A6W320 Transposase, IS4 6.88737749315e-06 1.35881082586e-05 2705167237.23 +UniRef50_F4S3R3 0.00016511649144 2.51796976323e-05 -56494200877.9 +UniRef50_Q1IYK3 UDP N acetylglucosamine 1 carboxyvinyltransferase 5.08919248061e-06 0.0277089566415 1.11843912538e+13 +UniRef50_UPI0003B63C0F hypothetical protein 0.000133164688161 0.000405271343799 1.09852796005e+11 +UniRef50_H2JMH7 0.000145815104486 6.89038615915e-05 -31050012563.6 +UniRef50_B9KTJ2 ABC spermidine putrescine transporter, ATPase subunit 0.000116149535026 0.000275139787458 64186315936.6 +UniRef50_H4PPD3 NADP dependent dehydrogenase domain protein 0.000112941896091 0.000255453146905 57533540763.3 +UniRef50_Q5DZU8 3 methyl 2 oxobutanoate hydroxymethyltransferase 2 0.00321401240101 0.000706249254594 -1.01241475592e+12 +UniRef50_P37216 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 0.0152427514228 0.00186527772818 -5.40065029057e+12 +UniRef50_X1KHN3 Marine sediment metagenome DNA, contig 0.000240039219062 7.28941881769e-05 -67478500068.5 +UniRef50_O67762 DNA directed RNA polymerase subunit beta 3.62788629631e-06 1.80988567904e-06 -733949158.568 +UniRef50_Q161C7 DNA damage inducible protein, putative 0.000508364935933 0.000147045662343 -1.45869024634e+11 +UniRef50_UPI000443E2D6 PREDICTED 1.90475579618e-07 3.42990413301e-07 61572109.9253 +UniRef50_Q49WP2 0.0178506743972 0.00056429943668 -6.97872169923e+12 +UniRef50_H6SJN5 2.21368221653e-05 3.01378270517e-05 3230103856.01 +UniRef50_M9VCC8 0.000257963090329 0.0039355432355 1.48468423359e+12 +UniRef50_X2M4F7 4.1179666769e-05 0.00026609308024 90800305016.2 +UniRef50_A5IU85 Parallel beta helix repeat 0.0198223398133 0.00704339995686 -5.15901483525e+12 +UniRef50_UPI00029A6665 citrate synthase I 0.000142082111628 0.000312074401971 68627973651.5 +UniRef50_A4WZ48 0.00418123846518 0.00126989570376 -1.17534479898e+12 +UniRef50_B9HS46 2.08866336533e-05 0.000144618590572 49952109370.1 +UniRef50_A3UKH7 2.17470530655e-05 4.39510230037e-05 8964015137.4 +UniRef50_B9KTI0 0.00607274542549 0.00199463570617 -1.64638293772e+12 +UniRef50_B0VS88 Putative acetyltransferase 0.000685900834344 0.00113328011316 1.80612504819e+11 +UniRef50_UPI000376ED10 hypothetical protein 8.79797964888e-06 0.00011433797813 42607792508.2 +UniRef50_Q2NHY7 L tyrosine decarboxylase 0.00279557795958 0.00049237674387 -9.29830594239e+11 +UniRef50_B7LMR0 2.74594098728e-05 0.000279539883017 1.01767980383e+11 +UniRef50_A8GCA1 Ecotin 0.002595228835 0.000423899576834 -8.7659226673e+11 +UniRef50_O26607 UPF0145 protein MTH_507 0.000671685653511 0.00358488623641 1.17609482431e+12 +UniRef50_W8XBA5 Inner membrane transport protein YhjV 5.20480697164e-06 5.94114343242e-06 297268065.081 +UniRef50_B0K0N0 Adenine phosphoribosyltransferase 1.19993768166e-05 2.20063123107e-05 4039922657.88 +UniRef50_UPI000248DA1A hypothetical protein 2.11245748043e-05 6.29764871351e-06 -5985812009.7 +UniRef50_Q8CQ91 Histidine biosynthesis bifunctional protein HisIE 0.0187881375942 0.00528486439151 -5.45143709573e+12 +UniRef50_N1X5N0 8.33821909882e-05 8.46126057925e-05 496733555.383 +UniRef50_UPI0002E805CD hypothetical protein 1.12041394767e-05 9.91443755596e-06 -520668491.825 +UniRef50_UPI00047183C3 nuclease PIN 6.50615162227e-06 1.22689647541e-05 2326518378.99 +UniRef50_UPI0003829CBF hypothetical protein 9.1810244964e-06 5.75839824161e-05 19540868083.3 +UniRef50_U5MRK8 Secretion protein HlyD family protein 0.000251754444034 0.00219989460152 7.86488087947e+11 +UniRef50_K4JRS2 4.12236960552e-06 6.02417669013e-05 22656089350.8 +UniRef50_P39131 UDP N acetylglucosamine 2 epimerase 0.0233225716582 0.0160905437937 -2.91965839586e+12 +UniRef50_UPI00037118F4 hypothetical protein 6.24211182907e-05 1.9651341287e-05 -17266683820.6 +UniRef50_A0A023AZR5 Malic enzyme 0.000577775103057 0.00272109331488 8.65283863584e+11 +UniRef50_M9R8K1 FlgD like flagellar basal body rod modification protein 6.98583655964e-06 9.55808885768e-06 1038449817.8 +UniRef50_C5E391 KLTH0H11330p 2.23768594054e-05 5.87312083815e-06 -6662761783.27 +UniRef50_A6M0V7 Dihydroxy acid dehydratase 0.000526390587233 0.00149373630218 3.90529335791e+11 +UniRef50_Q1ATH8 Pyridoxine pyridoxamine 5 phosphate oxidase 9.85136234499e-06 0.000842867902735 3.36298999618e+11 +UniRef50_A7X1Z3 0.00770158232403 0.00174335395872 -2.40540990676e+12 +UniRef50_Q72CS6 3 oxoacyl [acyl carrier protein] synthase 3 9.54152844758e-06 5.38223001887e-05 17876690938.1 +UniRef50_B4RL22 Arginine tRNA ligase 0.000236596649626 0.004096024886 1.55809853953e+12 +UniRef50_O27398 Imidazole glycerol phosphate synthase subunit HisF 0.00606857690043 0.0023446945466 -1.50337700342e+12 +UniRef50_UPI000478B1E4 hypothetical protein 0.000341506129317 0.0001267940435 -86681903857.9 +UniRef50_E9SHD5 0.000763508688274 0.00032725157279 -1.76122350998e+11 +UniRef50_UPI000382B9BD hypothetical protein 9.5503782023e-05 4.29717406836e-05 -21207829729.4 +UniRef50_M4YVY6 Cytoplasmic protein 1.97171985107e-05 3.01725163753e-05 4220940123.12 +UniRef50_A0A022NW71 LigA 3.90511167018e-05 0.000216032471014 71449544541.2 +UniRef50_A3UE81 1.08925180623e-05 2.70446681811e-05 6520821212.13 +UniRef50_Q8GPJ0 MobB like protein 0.00327342837087 0.00115443035494 -8.55465502061e+11 +UniRef50_UPI0004657E4B hypothetical protein 3.46965296144e-05 1.23058847584e-05 -9039378092.48 +UniRef50_I6RK04 Tryptophan repressor binding protein 0.000226039514279 0.000908267716836 2.75423897254e+11 +UniRef50_A0A013LHN9 Putative membrane protein 0.000106425553219 0.00663002205389 2.63365596085e+12 +UniRef50_E1V4H9 ATP dependent RNA helicase RhlB 0.000136112736362 0.00913936661665 3.63472407382e+12 +UniRef50_R6LJ53 Cell cycle protein FtsW 0.000860300972659 0.000300936919299 -2.2582213251e+11 +UniRef50_UPI0003673C2F hypothetical protein 0.000104751216878 2.60006400417e-05 -31792574247.1 +UniRef50_A6M1A4 Flagellin domain protein 0.000285974233984 0.000621667794785 1.35523609919e+11 +UniRef50_F6B016 Bile acid 0.000928959554168 0.0110455204903 4.08417979407e+12 +UniRef50_Q02N70 Tryptophan 2,3 dioxygenase 0.000515339900907 0.008674958868 3.2941383068e+12 +UniRef50_A6VDM0 0.000738285820078 0.000349499462025 -1.56957823691e+11 +UniRef50_UPI000415BF03 hypothetical protein 5.708289041e-06 0.000112575768776 43143712980.5 +UniRef50_G8V752 0.000270276364337 0.00377142335926 1.41345600575e+12 +UniRef50_UPI0003637379 hypothetical protein 1.4239309719e-05 7.62252303945e-06 -2671277979.64 +UniRef50_V8G5A1 Cell wall binding protein 0.00136476669845 0.00199526506377 2.54539927165e+11 +UniRef50_Q97MB4 NAD dependent protein deacetylase 0.00151854711387 0.00287113721157 5.46057220588e+11 +UniRef50_UPI00021A56DC PREDICTED 4.49065897872e-05 2.3776331528e-05 -8530544556.67 +UniRef50_UPI00034D5672 ABC transporter permease 2.58330817777e-05 6.56317551676e-05 16067212832.1 +UniRef50_B9KM82 0.000563657267121 0.000169413235378 -1.59161153533e+11 +UniRef50_Q9ZMV8 Flagellin B 8.72463764734e-05 0.0103836479531 4.15678366753e+12 +UniRef50_UPI00036E1801 hypothetical protein, partial 0.000123239060004 2.49553087584e-05 -39678356455.1 +UniRef50_L7VNU0 0.000239927535287 0.00188703207725 6.64956315835e+11 +UniRef50_A0A024JC88 Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit 5.77732860484e-06 9.16358811928e-05 34662151282.7 +UniRef50_T0ZIX4 0.000522578289285 0.000130234602707 -1.5839396087e+11 +UniRef50_P76482 0.0040963467608 0.000346074263901 -1.51403102802e+12 +UniRef50_P44502 Cystathionine gamma synthase 0.00878512064938 0.00640410821106 -9.61243939658e+11 +UniRef50_C0QC86 Probable cytosol aminopeptidase 3.26589686605e-06 1.2685345698e-05 3802747083.09 +UniRef50_H9UNY1 0.00277161544013 0.00201745860869 -3.04462367397e+11 +UniRef50_Q2J5A7 Biotin synthase 2 4.76668358137e-06 0.000160072557049 62698886936.4 +UniRef50_D4LLK4 Recombinational DNA repair ATPase 1.12080004449e-05 6.22726301918e-05 20615417662.3 +UniRef50_UPI0002897140 O acetylhomoserine aminocarboxypropyltransferase 3.53218211389e-05 4.30604935715e-05 3124197025.23 +UniRef50_UPI000380E239 hypothetical protein 2.41036223664e-05 2.14445108593e-05 -1073515946.38 +UniRef50_UPI0003775D90 hypothetical protein 0.000150492243732 6.04661664596e-05 -36344632139.1 +UniRef50_F8JSQ7 2.06305722802e-05 0.000171218707466 60794278098.8 +UniRef50_G7M8J1 Methyl accepting chemotaxis sensory transducer 0.000314937771968 0.000495506544538 72897829314.5 +UniRef50_A1SG46 Alpha amylase, catalytic region 0.000444348118141 0.00584589697302 2.18067155717e+12 +UniRef50_J9NZQ0 1.53035106275e-05 7.81166539077e-05 25358436746.2 +UniRef50_UPI00046C792F hypothetical protein 0.000183672389571 2.18971271982e-05 -65310658625.7 +UniRef50_A8G9Z1 Cell division protein FtsB 0.0048838469263 0.000630569477283 -1.71710029975e+12 +UniRef50_A0A033TLC6 1.71444663125e-05 7.41134868753e-05 22999092689.7 +UniRef50_A6M2Q2 Phage replisome organizer, putative 0.000525904163991 0.00277416077794 9.07648784263e+11 +UniRef50_UPI0002FAA418 hypothetical protein 7.73262622655e-06 2.29383081243e-05 6138720376.84 +UniRef50_UPI0002C5976A 5.96567173213e-06 6.09788866822e-06 53377599.5838 +UniRef50_S5XYL7 Aldo keto reductase 0.00229811133678 0.00104165228257 -5.07247938671e+11 +UniRef50_UPI0003B570ED plasmid stablization protein ParB 2.9588984486e-05 0.00103146354448 4.04469054251e+11 +UniRef50_Q9RT21 Trigger factor 0.000330363426013 0.0337305945028 1.34840831526e+13 +UniRef50_D2AEN1 2.62563161996e-06 8.50464443302e-06 2373429616.23 +UniRef50_K2LKK6 Phosphate ABC transporter, periplasmic binding protein 4.51349724722e-06 6.4636836324e-06 787314175.175 +UniRef50_Q88X60 Adenylyl sulfate kinase 0.0024292441303 0.00151248477249 -3.7010700265e+11 +UniRef50_Q4XSF0 GTP binding protein, putative 4.18943202232e-06 8.14083548549e-06 1595230067.25 +UniRef50_O67216 4 hydroxy tetrahydrodipicolinate synthase 5.80485769541e-06 2.58854994841e-05 8106801507.28 +UniRef50_UPI0004064E58 transcription termination factor Rho 5.35295054771e-06 3.08276636042e-05 10284454270.8 +UniRef50_Q9R5L5 HSP62=62 kDa urease associated heat shock protein 2.6861316512e-05 0.000222100815177 78820581469.1 +UniRef50_X0NX98 0.000116823150831 7.34835007715e-06 -44196320471.3 +UniRef50_UPI00035F4BA7 hypothetical protein 3.39790978671e-05 2.72527165732e-05 -2715522670.33 +UniRef50_Q8FL68 Ribosomal RNA small subunit methyltransferase H 0.00543903914276 0.00148927930947 -1.5945665137e+12 +UniRef50_W5Y8P3 2.05807583193e-05 5.50256669524e-05 13905832301.7 +UniRef50_A0A024HQB8 Carbamoyl transferase 0.00146064270313 0.000451114012991 -4.0755912052e+11 +UniRef50_UPI0004761289 hypothetical protein 2.61026842679e-05 0.000209503676374 74041231096.4 +UniRef50_UPI0003B465F4 hypothetical protein 8.68486359453e-05 1.70073329717e-05 -28195791059.6 +UniRef50_UPI00046A5F3F hypothetical protein 1.72773869583e-05 2.85792285601e-05 4562692143.84 +UniRef50_UPI000382BE44 hypothetical protein 0.00729196509462 0.00372588348113 -1.43967090811e+12 +UniRef50_Q8CSL5 0.0124931392739 0.00125621761105 -4.53648316785e+12 +UniRef50_Q8CSL4 0.0101824391723 0.00412948725159 -2.44365096846e+12 +UniRef50_R6GNH1 0.000476685345143 0.000396398262003 -32412880696.9 +UniRef50_B1AIC1 ATP synthase subunit alpha 2.43325345432e-06 1.0090054486e-05 3091144536.0 +UniRef50_UPI000413242B hypothetical protein 9.73092522962e-05 3.39748544459e-05 -25568873612.6 +UniRef50_UPI00036CCC09 hypothetical protein 2.15785364573e-05 5.07217102697e-06 -6663822280.09 +UniRef50_B2TIC3 DNA mismatch repair protein MutS 0.000256009480455 0.000459741978473 82249309528.8 +UniRef50_Q6LUX5 Isopentenyl diphosphate Delta isomerase 7.33371850124e-05 1.92643355253e-05 -21829872886.4 +UniRef50_UPI00046D5342 hypothetical protein 0.000186456225036 7.74066725508e-05 -44024642526.7 +UniRef50_UPI00047A154A phosphoribosylaminoimidazolecarboxamide formyltransferase 4.07756012367e-06 1.48324981628e-05 4341900464.32 +UniRef50_O68823 DNA polymerase III subunit chi 1.72047697332e-05 0.000461432351874 1.79340126196e+11 +UniRef50_I2DEN6 9.5244572462e-05 0.00297213776782 1.16143708642e+12 +UniRef50_UPI000376424C hypothetical protein 6.55809772965e-06 5.14108864348e-06 -572063956.744 +UniRef50_M1MMR2 O antigen polymerase 0.000546940534044 0.000576928209253 12106392472.0 +UniRef50_Q08021 0.00240825899851 0.00173715708938 -2.70932076062e+11 +UniRef50_UPI000472C3EA acetyl CoA carboxylase subunit beta 7.3055853757e-06 2.86476255569e-05 8616043517.43 +UniRef50_G2ZT62 3.94041155936e-06 1.2922390883e-05 3626135274.23 +UniRef50_B1VDD6 Protein RecA 0.00333731304989 0.00560137954926 9.14031429016e+11 +UniRef50_A9L6A7 TraU family protein 0.000100087686809 1.21362841915e-05 -35507060521.8 +UniRef50_A7X3N2 S adenosylmethionine synthase 0.0144977636378 0.0299510085769 6.23866461455e+12 +UniRef50_A7X1N2 GTP sensing transcriptional pleiotropic repressor CodY 0.0174538645695 0.00668805024443 -4.34629135444e+12 +UniRef50_J2YJ27 TonB dependent outermembrane ferric citrate receptor 0.000893668571185 0.000186841609055 -2.85354718354e+11 +UniRef50_G8AGG5 4.23997252515e-05 7.82620243768e-05 14478050236.8 +UniRef50_UPI0004682C49 hypothetical protein 5.06132220083e-05 2.24810251316e-05 -11357313100.0 +UniRef50_F6G1Z6 Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons 0.000151845707213 0.00442802506102 1.72634607975e+12 +UniRef50_M4K135 Phospholipid binding domain lipoprotein 0.00297286683172 0.00110743764448 -7.53096654279e+11 +UniRef50_UPI000361F619 hypothetical protein 0.000119843344702 0.000185671587221 26575669308.3 +UniRef50_UPI000319FA33 hypothetical protein 8.93336198644e-06 5.46646711269e-06 -1399628004.12 +UniRef50_UPI000376B2F3 hypothetical protein 5.46382753106e-05 4.07642915703e-05 -5601097488.88 +UniRef50_Q8DR50 Diphosphomevalonate decarboxylase 0.00413633887785 0.00375201178648 -1.5515756301e+11 +UniRef50_UPI0003C1AF0C 1.30949726307e-05 1.57479621295e-05 1071044416.51 +UniRef50_Q9K621 Sensory transduction protein BceR 0.0206297389337 0.00315669771627 -7.05408115779e+12 +UniRef50_Q852F2 1.59873449516e-05 2.49809617098e-05 3630833449.37 +UniRef50_Q3J5W8 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.00108817409996 0.000331196304892 -3.05601225031e+11 +UniRef50_UPI00045EA5EB hypothetical protein 2.06070361911e-05 7.82702132316e-06 -5159448830.59 +UniRef50_Q8DSX2 Bifunctional protein GlmU 0.0328777645638 0.0132768631814 -7.91312441818e+12 +UniRef50_Q8ZIL5 Carbamoyl phosphate synthase small chain 2.01184364086e-05 7.73405978241e-06 -4999724817.39 +UniRef50_Q28M29 Lipoprotein releasing system transmembrane protein LolC E family 0.00399804927816 0.000762735456185 -1.3061358917e+12 +UniRef50_D2NAM2 Transcriptional regulator 0.0113218052105 0.00225351116361 -3.66098158721e+12 +UniRef50_P65765 FKBP type peptidyl prolyl cis trans isomerase FkpA 0.00163072079315 0.00024712694996 -5.58573813102e+11 +UniRef50_D3E2L0 Mevalonate kinase 0.0025388584601 0.00038481895406 -8.69612181626e+11 +UniRef50_I0JI98 DUF21 CBS domain protein 0.0194989067414 0.00411736181688 -6.2097184388e+12 +UniRef50_UPI0003766160 hypothetical protein 0.00145400719562 0.000269400635831 -4.78240204944e+11 +UniRef50_F0L4M9 Cytochrome c oxidase fixO chain 0.016375269256 0.00303107391853 -5.38721540944e+12 +UniRef50_B7V416 0.00116431639298 0.00130714924403 57663374725.1 +UniRef50_A0A024HQA8 Amino acid ABC transporter substrate binding protein 0.000650175201672 0.00069387749016 17643150150.0 +UniRef50_A8FAK7 2 isopropylmalate synthase 2 1.95732159589e-06 6.28859173408e-06 1748586905.45 +UniRef50_Q1ITT1 50S ribosomal protein L35 0.0052427317198 0.00196877803463 -1.32173527863e+12 +UniRef50_Q4FME5 9.75961111015e-06 2.590002352e-05 6516082555.01 +UniRef50_R1E3V2 7.8588339106e-05 0.000524630997291 1.80072894668e+11 +UniRef50_UPI00036F4F1C peptidase S8 2.67341351859e-05 0.0117551088368 4.73488879038e+12 +UniRef50_A6LVW2 3D domain protein 0.000230643170378 0.000340750044459 44451496229.8 +UniRef50_K6VBL3 Type IV secretion system family protein 1.5088801761e-05 1.46202403204e-05 -189164003.466 +UniRef50_U3T564 Acyl coenzyme A dehydrogenase 0.000642769589172 0.0196419098187 7.67018605632e+12 +UniRef50_UPI0001BF5D6F hypothetical protein SMAC_10343 7.54981539425e-06 1.72347675116e-05 3909934017.5 +UniRef50_UPI0003638F6E hypothetical protein 0.000177061599184 6.59648093136e-05 -44851137381.4 +UniRef50_UPI000348D250 hypothetical protein 9.35840352805e-06 0.00271998365698 1.09431267793e+12 +UniRef50_UPI000367510D hypothetical protein 2.10493739897e-05 1.10247382545e-05 -4047068462.41 +UniRef50_Q9ZJT0 Methionine aminopeptidase 2.62257615776e-05 0.00247429277342 9.8831469384e+11 +UniRef50_A3QBC5 S malonyltransferase 0.000331497548229 0.000184765404716 -59237566942.1 +UniRef50_UPI0003B4C933 peptide ABC transporter permease 1.0358182119e-05 8.35811540694e-06 -807451475.237 +UniRef50_A2RHJ5 Protein translocase subunit SecA 0.000108576986252 0.00226940823142 8.72354090056e+11 +UniRef50_L5VNR4 Ybl54 0.000589821857578 0.000220133152856 -1.49247866687e+11 +UniRef50_UPI000364F3E3 hypothetical protein 2.04908596272e-05 4.35789242388e-05 9320935006.12 +UniRef50_Q0ARE4 UspA domain protein 0.00188739639982 0.000255685459043 -6.58741730138e+11 +UniRef50_B7IH88 CTP synthase 6.80181005635e-06 4.93693339968e-06 -752873590.908 +UniRef50_A6LQR9 GTPase Obg 0.000471312984821 0.00353675744525 1.23755754591e+12 +UniRef50_UPI000360EF04 hypothetical protein 2.11495001476e-05 2.64565329433e-05 2142514264.24 +UniRef50_UPI000225C0BC Holliday junction ATP dependent DNA helicase ruvA 2.09897138278e-05 1.28583914059e-05 -3282714644.27 +UniRef50_UPI0003B42254 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.28967063179e-05 2.06422080959e-05 3126954115.77 +UniRef50_F0XVT1 1.22585381348e-05 4.89111039943e-05 14797090615.0 +UniRef50_UPI000376F4CA hypothetical protein 2.9524877422e-06 6.01458357621e-06 1236205664.33 +UniRef50_A6LST7 Response regulator receiver protein 0.000219044094112 0.00107691621115 3.46333500923e+11 +UniRef50_Q53175 MotB 4.41182617886e-05 0.000148577832251 42171610458.6 +UniRef50_UPI00014C4177 MULTISPECIES 4.42083521267e-05 2.9219488549e-05 -6051188160.36 +UniRef50_R4YW23 Chromosome partitioning protein transcriptional regulator 1.44487000872e-05 2.90170254168e-05 5881411709.01 +UniRef50_UPI0003769C11 hypothetical protein 2.838140338e-05 5.03961067691e-05 8887605908.97 +UniRef50_X1QL65 Marine sediment metagenome DNA, contig 5.54631798105e-05 0.000328024924245 1.10036520937e+11 +UniRef50_P52599 Probable multidrug resistance protein EmrK 0.00312974664089 0.00116232029316 -7.94274159615e+11 +UniRef50_H0Q3N8 Thioesterase superfamily protein 9.80414369471e-06 6.10130100964e-05 20673647769.8 +UniRef50_UPI00041EC5EE DNA polymerase III subunit alpha 1.76054779241e-05 3.36536824856e-06 -5748907021.8 +UniRef50_A0A023YHP1 1.40823327104e-05 1.16263358233e-05 -991516081.793 +UniRef50_A1T8K1 Riboflavin biosynthesis protein RibBA 1.20032128141e-05 9.21068752911e-06 -1127376725.69 +UniRef50_UPI0003B3F8B2 ABC transporter 6.68832178913e-06 1.10430792647e-05 1758069031.77 +UniRef50_I2F1Y3 L serine deaminase 6.85361146959e-06 8.64448717586e-06 722998499.137 +UniRef50_UPI0003A7C9ED hypothetical protein 8.89437277231e-07 9.61497780369e-05 38457768540.5 +UniRef50_R6Z842 [citrate lyase] ligase 0.00377497816404 0.00153210687733 -9.05474661571e+11 +UniRef50_F4E2U8 Glycerol dehydrogenase 0.000371928764129 0.00184820190651 5.95989583487e+11 +UniRef50_UPI0002E02ECB cold shock protein 4.69098449881e-05 5.01173411478e-05 1294905560.07 +UniRef50_P71405 Serine acetyltransferase 1.03358513842e-05 0.0134222940227 5.41457209699e+12 +UniRef50_P52137 Putative arsenical pump membrane protein 0.000490320830018 0.000313056577946 -71563753838.5 +UniRef50_UPI000372B1CF hypothetical protein 8.72784112518e-06 3.09073577937e-06 -2275768603.16 +UniRef50_P23481 Hydrogenase 4 component A 0.00141542985494 0.00273542286067 5.32897374549e+11 +UniRef50_Q5HE46 Mannitol specific phosphotransferase enzyme IIA component 0.0103421027892 0.0014041804641 -3.60834892328e+12 +UniRef50_Q836B1 UPF0473 protein EF_1204 0.00211550647335 0.000694862835762 -5.73531269753e+11 +UniRef50_A6LQW6 UPF0272 protein Cbei_0559 0.000298884839366 0.000530524226449 93515663100.3 +UniRef50_UPI00046EF03F hypothetical protein 8.88023820204e-06 6.26985560787e-06 -1053843486.26 +UniRef50_A3PLE1 0.0113166176695 0.00113189833496 -4.1116961759e+12 +UniRef50_M1MRV5 Neutral endopeptidase PepO 0.000242611209003 0.00195584195819 6.91652277153e+11 +UniRef50_Q897S6 S1 RNA binding domain 0.000335914792664 0.000241074861385 -38288044074.2 +UniRef50_C0ZES6 LexA repressor 0.000206230662615 0.0035678678546 1.35713418633e+12 +UniRef50_W1FU82 Cell division protein FtsK 0.000221744272145 5.07271752353e-05 -69041700638.3 +UniRef50_B5BP16 Truncated transposase of IS3 family 0.0193935035512 0.0066155824657 -5.15860354494e+12 +UniRef50_M9V8F1 0.00026397621598 0.00375162316872 1.40800587306e+12 +UniRef50_UPI0002E99FC0 hypothetical protein 1.91105116965e-05 7.70596536515e-06 -4604155303.51 +UniRef50_Q97L15 Permease 0.0010577591384 0.000160207977501 -3.62352417846e+11 +UniRef50_UPI00037D00A3 hypothetical protein 3.64965246119e-05 1.13379803589e-05 -10156813045.0 +UniRef50_A4WVZ8 FxsA cytoplasmic membrane protein 0.000481916641496 0.000543527678278 24873131601.3 +UniRef50_Q2W2I2 DNA directed RNA polymerase subunit beta 6.6431934524e-06 1.22754694176e-05 2273818922.95 +UniRef50_UPI000466CD21 hypothetical protein, partial 5.92340799314e-06 1.12488391237e-05 2149941897.8 +UniRef50_P0A9S2 Lactaldehyde reductase 0.00426831983883 0.0085677523087 1.73573364806e+12 +UniRef50_Q2S8W1 Glucose 6 phosphate isomerase 0.000727623401213 0.000378390983644 -1.40989412536e+11 +UniRef50_A8LL11 HTH type transcriptional regulator 0.006037973454 0.00297789462745 -1.23539137367e+12 +UniRef50_Q9RRG5 0.000234949785595 0.0870772692128 3.50593100279e+13 +UniRef50_Q9RRG4 0.000154972173725 0.0165091959811 6.60240083994e+12 +UniRef50_F5MXW8 Baseplate J like family protein 1.2694355784e-05 6.15003670202e-06 -2642021921.22 +UniRef50_A8LSD5 3 oxoadipate enol lactonase 0.00273259970254 0.000225432599378 -1.01217412595e+12 +UniRef50_J9YYN1 0.000162373661847 5.2545325181e-05 -44339047257.3 +UniRef50_Q833W9 Tagatose 6 phosphate kinase 0.000215781432963 0.00487715894696 1.88185530394e+12 +UniRef50_A3M8U5 Heavy metal RND efflux outer membrane protein CzcC family 9.19202894945e-05 0.00606440998336 2.41116738011e+12 +UniRef50_R4Q8N7 Oxidoreductase 0.000137267632307 0.00294210782748 1.13234840605e+12 +UniRef50_W7S9M8 Pyruvate dehydrogenase E1 component 4.4969498337e-05 3.44323924682e-05 -4253958944.06 +UniRef50_A6LSX8 0.000240999160205 0.00260918625837 9.56066192455e+11 +UniRef50_U3U1D9 2.1983670475e-05 2.47420462487e-05 1113590148.92 +UniRef50_UPI000363B64B hypothetical protein 1.71544928236e-05 0.000248909483523 93562333698.7 +UniRef50_C5N6E7 Hydrolase, haloacid dehalogenase like family protein 0.0177621043601 0.00627112219694 -4.63905050949e+12 +UniRef50_C7ZTC0 FecCD transporter 0.0128123104741 0.0033236168844 -3.83070204153e+12 +UniRef50_L1KZ69 7.8981788932e-05 0.000142425725899 25613095898.2 +UniRef50_UPI000174446D ABC transporter permease 6.37787228755e-06 3.06930037227e-05 9816316940.57 +UniRef50_Q1AVI9 NADH quinone oxidoreductase subunit K 1.01199095881e-05 4.16409347091e-05 12725424647.8 +UniRef50_M1MG71 Methyl accepting chemotaxis sensory transducer 0.000423377497034 0.000796090942569 1.50468991671e+11 +UniRef50_UPI00028A050D translation factor Sua5 9.12939659951e-05 0.000220134323994 52014433573.2 +UniRef50_F6EUQ1 4.06285268822e-06 6.93003343858e-06 1157516053.18 +UniRef50_UPI000379F19F hypothetical protein 1.44277008172e-05 1.67778906207e-05 948800463.745 +UniRef50_O33948 Catechol 1,2 dioxygenase 1 0.000751167016841 0.00367103122382 1.17878501112e+12 +UniRef50_Q4L7V3 mRNA interferase MazF 0.00282097991807 0.00462715892414 7.29176629059e+11 +UniRef50_A6LZS0 0.000143712939918 0.000570141748584 1.72154542928e+11 +UniRef50_E4SGC1 ABC transporter related protein 0.000240436935571 0.00106674234722 3.3358963459e+11 +UniRef50_A6LZS9 0.00108378220493 0.00183792253709 3.04455706436e+11 +UniRef50_UPI00037BA2BE hypothetical protein 4.78138007728e-06 8.19412800736e-06 1377768218.5 +UniRef50_UPI00036A311B hypothetical protein 1.15765830002e-05 0.000282422434126 1.09343793752e+11 +UniRef50_A4WVM4 0.0201965704813 0.00795222918528 -4.94319083616e+12 +UniRef50_I3TI18 Cysteine desulfuration protein SufE 0.000168348456038 3.06108642751e-05 -55606356025.0 +UniRef50_UPI000262CF2F amino acid ABC transporter 1.27416411248e-05 4.83747643416e-05 14385529110.2 +UniRef50_F0YPX2 0.000333240887747 0.000746958566597 1.67022903839e+11 +UniRef50_O27818 dTDP 4 dehydrorhamnose 3,5 epimerase 0.000827545755014 0.00648464173753 2.28383906852e+12 +UniRef50_M1Z2C4 1.05473220211e-05 8.90333474272e-06 -663697838.275 +UniRef50_UPI0003682E40 hypothetical protein 2.32208044079e-06 0.000675528563406 2.71781718346e+11 +UniRef50_UPI0003B7B255 hypothetical protein 0.000189027419028 0.000103801116887 -34406904018.7 +UniRef50_E6TTW0 Cyclic nucleotide binding protein 0.000302934855009 0.00120646291406 3.64765364975e+11 +UniRef50_P57134 DNA replication protein DnaC 0.00126079232907 0.00224602758449 3.97751562809e+11 +UniRef50_UPI0004706BF7 hypothetical protein 0.000178104630444 7.87506913905e-05 -40110404405.8 +UniRef50_G4LJE6 TonB dependent receptor 0.000864656494443 0.000259481057142 -2.44316750376e+11 +UniRef50_G7M1W4 Two component transcriptional regulator, winged helix family 0.000569102953191 0.00252385069592 7.89155651192e+11 +UniRef50_B1JZW0 Glutamate putrescine ligase 0.00942648811488 0.00249460941909 -2.79848449321e+12 +UniRef50_Q9X4Q9 Flagellar motor switch protein FliG 0.0009211028829 0.00047382629598 -1.80571046841e+11 +UniRef50_H2HFL3 Metal nicotianamine transporter YSL2 5.87374464015e-05 0.00867126481957 3.47698298814e+12 +UniRef50_A5ULB0 Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF 0.00545187566083 0.00072313042547 -1.90905247974e+12 +UniRef50_X5E2B2 Nucleoside triphosphatase YtkD 0.0213950811135 0.00456794902128 -6.79331971775e+12 +UniRef50_A6LTZ5 0.000257963090329 0.000897261753016 2.58092715204e+11 +UniRef50_Q3IV04 Transposase, IS3 IS911family 0.00289787223765 0.00370120566977 3.24315564557e+11 +UniRef50_UPI0003957091 1.29797881341e-05 3.45854819551e-05 8722483727.22 +UniRef50_V8FTX6 Hemerythrin 0.000406627636108 0.00079457409469 1.56618745968e+11 +UniRef50_Q92WJ0 Fe ions import ATP binding protein FbpC 1 8.26290704735e-05 2.72263338115e-05 -22366764658.5 +UniRef50_C9D087 0.000759504616145 0.000207309765447 -2.2292783742e+11 +UniRef50_UPI0004717DF9 hypothetical protein 3.99775878913e-06 0.000176562291225 69666419349.4 +UniRef50_R4XYL7 Glutamate dehydrogenase 0.000138951897734 0.0234558784526 9.41332938108e+12 +UniRef50_C6AN40 Tellurite resistance protein TehB 3.30304864109e-05 2.87522496565e-05 -1727176677.62 +UniRef50_A6LTZ8 0.000718751433046 0.000513594269898 -82824464324.3 +UniRef50_UPI0003B4BD8A Ktr system potassium transporter B 3.04919139807e-05 5.64864932295e-06 -10029530803.5 +UniRef50_B5EXJ7 HMP PP phosphatase 0.00304790282174 0.0013422546532 -6.88591096296e+11 +UniRef50_B3DTE2 DNA directed RNA polymerase subunit beta 1.48871412452e-06 0.00385044474073 1.55387077994e+12 +UniRef50_G9PNM2 0.000258353423654 0.000190970498982 -27203313571.6 +UniRef50_UPI00037627C6 hypothetical protein 4.28919418554e-05 6.98706438644e-06 -14495239636.6 +UniRef50_UPI0004561990 hypothetical protein PFL1_04301 2.17716637439e-06 4.16438530641e-07 -710827437.082 +UniRef50_Q8PLY8 Sulfoxide reductase catalytic subunit YedY 0.0133045836728 0.000561192911587 -5.14466322929e+12 +UniRef50_U3T5A3 AraC family transcriptional regulator 0.000123361434261 0.00703138033169 2.78885199982e+12 +UniRef50_V8FJ54 3.83157000272e-05 2.4237662799e-05 -5683476385.97 +UniRef50_Q71YZ5 2 succinylbenzoate CoA ligase 4.90055444994e-06 0.000873825703817 3.5079574571e+11 +UniRef50_R6QTT5 2.34641165126e-05 1.23850825502e-05 -4472741965.66 +UniRef50_UPI0002626035 N acylamino acid racemase 3.52179748339e-05 0.00276789484125 1.10321518469e+12 +UniRef50_G7ZBU5 8.79195836987e-07 3.31687698982e-05 13035697286.1 +UniRef50_B1I4C7 Phospho N acetylmuramoyl pentapeptide transferase 5.48397506244e-06 1.64567015084e-05 4429824316.75 +UniRef50_Q0BXH7 Elongation factor P 0.0125352836038 0.00201011751363 -4.24913870893e+12 +UniRef50_A0A024K7R9 6.68034991922e-06 0.000270644910385 1.0656573227e+11 +UniRef50_B2V461 Molecular chaperone, DnaJ family 0.000437242458129 0.00130123826738 3.48805710615e+11 +UniRef50_Q46892 Inner membrane permease YgbN 0.00247658805084 0.00205933583358 -1.68449840368e+11 +UniRef50_Q57962 Probable phosphoenolpyruvate synthase 1.57251730505e-06 4.20223841815e-05 16330107633.7 +UniRef50_Q9RSQ3 Phosphoglucosamine mutase 0.000134018694272 0.0367130268057 1.47673944495e+13 +UniRef50_Q9KV02 Sulfurtransferase TusD homolog 0.000589821857578 0.0010054338974 1.67787680609e+11 +UniRef50_A4WUU1 0.000697061115739 0.000723499297692 10673418487.4 +UniRef50_B9L5K2 3 isopropylmalate dehydratase small subunit 0.00233998126793 0.000496087612676 -7.44402495744e+11 +UniRef50_P9WQ18 Trehalose synthase amylase TreS 2.66596022611e-06 5.73543476545e-05 22078373106.8 +UniRef50_Q7WK82 ATP dependent Clp protease ATP binding subunit ClpX 0.0429285828639 0.0376689359364 -2.12338400776e+12 +UniRef50_M1HJ56 Arginine serine rich splicing factor SR45 transcript VII 0.000106997490651 0.000189531391223 33319948465.8 +UniRef50_B9JX70 ABC transporter membrane spanning protein 0.00840451577838 0.00111187498437 -2.94412857931e+12 +UniRef50_E4PYK4 0.00900846710666 0.00154078280971 -3.01479578947e+12 +UniRef50_UPI00034DD06F hypothetical protein 2.76008213713e-06 1.0810459117e-05 3250035976.01 +UniRef50_Q49YI2 Putative dipeptidase SSP1012 0.0217334617115 0.00539371980972 -6.59655431694e+12 +UniRef50_Q6NAT0 Holliday junction ATP dependent DNA helicase RuvA 2.538957945e-05 6.44195602122e-05 15756882185.4 +UniRef50_UPI000370A604 hypothetical protein 2.18501642579e-05 1.45329207227e-05 -2954061007.84 +UniRef50_Q7ML43 0.00014842175184 0.000228043787796 32144392987.7 +UniRef50_UPI000367EFAE hypothetical protein 2.98632019236e-05 9.22717732702e-05 25195106091.9 +UniRef50_R6UK77 1.39077664779e-05 3.32930191572e-05 7826064390.43 +UniRef50_J7M6X3 MarR family transcriptional regulator 0.0101004177232 0.00299801127546 -2.86732863928e+12 +UniRef50_H6RV56 ABC transporter substrate binding protein 5.45057158398e-05 1.06610341326e-05 -17700636039.9 +UniRef50_P17055 Spheroidene monooxygenase 0.00116089620059 0.000706460974096 -1.83461077483e+11 +UniRef50_B7UZN8 0.00121866500854 0.00121363029532 -2032575509.79 +UniRef50_W6LVN7 5.96561725863e-05 7.89554215805e-06 -20896401678.3 +UniRef50_A4YNQ7 Fructose 1,6 bisphosphatase class 1 2.17259422031e-05 9.14272245072e-06 -5080000227.51 +UniRef50_UPI00039CC0CD hypothetical protein 0.000100735112938 0.000606815147654 2.04310720315e+11 +UniRef50_UPI00047A1A5F hypothetical protein 1.91603932424e-06 1.37760435985e-05 4788029264.15 +UniRef50_Q4L6F4 Penicillin binding protein 2 0.0197790564135 0.00529411681174 -5.84774786744e+12 +UniRef50_G0K3J8 Aspartate transaminase 0.000866220535402 0.000152750019926 -2.88036802365e+11 +UniRef50_N6A8S2 0.128624641912 0.0408651374255 -3.54295888914e+13 +UniRef50_UPI000381D193 hypothetical protein 4.95329075139e-05 1.34710916129e-05 -14558597607.5 +UniRef50_V9AXK3 4.292866749e-05 0.0010361989656 4.00995408144e+11 +UniRef50_Q9SZX3 Argininosuccinate synthase, chloroplastic 6.78255081935e-06 0.000106036094597 40069873601.0 +UniRef50_UPI00046EE386 hypothetical protein 2.85873698862e-05 4.70552027218e-05 7455690741.53 +UniRef50_Q2RJ31 Glutamate 1 semialdehyde 2,1 aminomutase 0.0211707455126 0.0084053287015 -5.15355541592e+12 +UniRef50_T1IAF8 4.42162544977e-05 0.000138321641777 37991499647.6 +UniRef50_Q652A8 UDP glucose 4 epimerase 3 0.0033148135432 0.00350173337234 75461828788.1 +UniRef50_C7NJ54 2.67793570637e-05 5.98741611968e-05 13360778547.4 +UniRef50_A0A009P2J7 SnoaL like polyketide cyclase family protein 0.000106376226475 7.74113834311e-05 -11693462575.4 +UniRef50_P31884 Quinone reactive Ni Fe hydrogenase small chain 0.000199661560248 0.00172780677606 6.16930976073e+11 +UniRef50_M7MSG6 Putative metal ABC transporter metal binding protein 1.18972563322e-05 6.63670239507e-05 21990113606.8 +UniRef50_A6LQU3 Integral membrane sensor signal transduction histidine kinase 0.00011268238473 0.00192036119138 7.29782116958e+11 +UniRef50_C1DR09 0.000141330594788 0.000123212229257 -7314606502.21 +UniRef50_K9IDN1 Lactose PTS family porter repressor 1.35709196075e-05 1.44875779552e-05 370066223.629 +UniRef50_Q0SA63 Flavin binding monooxygenase 0.00102276836437 0.000120783928514 -3.64142185349e+11 +UniRef50_UPI00046253F9 PTS sugar transporter subunit IIA 9.73041004731e-06 2.92513105482e-05 7880827080.6 +UniRef50_UPI00026C726F cell division protein FtsZ 5.52723730095e-06 2.12603970475e-05 6351669657.24 +UniRef50_W5X4V3 1.59664538314e-05 0.0003666684518 1.41582700178e+11 +UniRef50_A3TWL6 0.000887359015352 0.00022139832901 -2.68856501333e+11 +UniRef50_D9RF73 0.000132463599085 0.000229411710101 39139142104.3 +UniRef50_F4NHW2 0.000320417141437 0.00111440266111 3.2054169759e+11 +UniRef50_UPI0003B4D2F4 hypothetical protein 0.000631498966191 0.00134739296056 2.89015190534e+11 +UniRef50_UPI0002628E38 arginine ABC transporter ATP binding protein 7.84742675097e-05 4.14489817624e-05 -14947562207.5 +UniRef50_A4EQN9 2.63945509496e-05 0.000167120686114 56812867669.6 +UniRef50_UPI0003A677C1 histidine kinase 7.87357538774e-06 5.57419051372e-06 -928289890.267 +UniRef50_A5UNL6 Transposase, RNaseH like family 0.00522851761134 0.00163624599604 -1.45024413323e+12 +UniRef50_U5NRH5 0.0178924692635 0.0295316705195 4.69888837611e+12 +UniRef50_W5X9W9 Glucose 6 phosphate 1 dehydrogenase 1.01761908466e-05 0.000185033285536 70591954863.8 +UniRef50_D5WDJ8 Ectoine hydroxyectoine ABC transporter, ATP binding protein 0.0165254093452 0.00655526342436 -4.02507025569e+12 +UniRef50_UPI0003B7A139 NUDIX hydrolase 0.00037520921556 2.42947689639e-05 -1.41668468295e+11 +UniRef50_Q1NAN1 4.69575343559e-06 1.57499562437e-05 4462717323.95 +UniRef50_UPI0003A86DCB sec independent translocation protein mttA Hcf106 5.64491131968e-05 4.25773162061e-05 -5600214671.24 +UniRef50_A6V2V4 3 isopropylmalate dehydratase small subunit 0.00161415264876 0.000934882362 -2.74229750349e+11 +UniRef50_T0ZWG6 Phosphoribosylformylglycinamidine synthase I 2.51528009255e-05 3.30100747039e-05 3172077843.93 +UniRef50_UPI000369DCC7 hypothetical protein 5.44969019987e-05 0.000181409750662 51236274401.0 +UniRef50_A0A024HJZ5 0.000307627504106 0.000102067985674 -82986900090.0 +UniRef50_P61951 Flavodoxin 1 0.0038303605491 0.000678239944027 -1.27254976914e+12 +UniRef50_Q9ZL73 Flagellar biosynthetic protein FlhB 0.000217752206347 0.00254292551931 9.38700999527e+11 +UniRef50_U3ST65 Fructan hydrolase FruB 0.00755109695962 0.00214277347298 -2.18340655915e+12 +UniRef50_B7VA67 0.00182034059833 0.000706318945962 -4.49744211645e+11 +UniRef50_Q0A562 2.69180165648e-05 2.02413706683e-05 -2695443880.08 +UniRef50_Q8EGH1 Ditrans,polycis undecaprenyl diphosphate synthase farnesyl diphosphate specific) 0.00204856703827 0.000256660035054 -7.23414846372e+11 +UniRef50_P77544 Glutathione S transferase YfcF 0.00592090285717 4.53046920905e-05 -2.37205108094e+12 +UniRef50_B6JMC7 Phosphotransacetylase 0.000230643170378 0.000655044012135 1.71335827801e+11 +UniRef50_Q6G6T1 MerR family regulatory protein 0.011570972894 0.000720639688898 -4.38041266346e+12 +UniRef50_B1JFW5 Putative sialic acid transporter 0.00286525587553 0.000725416944637 -8.63879235177e+11 +UniRef50_O31688 Zinc transporting ATPase 1.64451683429e-05 0.00220835824755 8.84902207875e+11 +UniRef50_B0T2U9 ChaC family protein 3.88340830237e-06 3.35206932227e-06 -214508066.529 +UniRef50_Q5HG20 Diaminopimelate decarboxylase 0.00728391697913 0.00115654227328 -2.47369636009e+12 +UniRef50_P39405 Ferric iron reductase protein FhuF 0.00338635659748 0.000295316705201 -1.24789073584e+12 +UniRef50_UPI0004674EC8 pseudouridine synthase 1.14431618646e-05 1.78352939312e-05 2580582155.57 +UniRef50_UPI00037DA301 hypothetical protein 4.69697654229e-05 9.824339406e-06 -14996064308.7 +UniRef50_UPI0002DDF67E hypothetical protein 3.86829135201e-05 4.27191730501e-05 1629487502.74 +UniRef50_G8RZN0 5.49893768598e-06 2.69898278689e-05 8676136089.72 +UniRef50_Q3J3J9 0.000702504504244 0.00089040212621 75856575750.8 +UniRef50_B7UZJ0 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000111572213456 0.000185900385592 30007195200.5 +UniRef50_W0YUW2 Phosphoketolase 0.00038164938633 0.000256564237252 -50498409650.2 +UniRef50_I0ZXX0 ATPase associated with various cellular activities AAA_5 0.00291453612608 0.0013148308522 -6.45820649657e+11 +UniRef50_Q9WZR0 CTP synthase 6.73195784069e-06 2.94483785455e-05 9170897800.36 +UniRef50_Q8ZJF2 Tryptophan tRNA ligase 0.00467345301486 0.00142611555949 -1.31098998004e+12 +UniRef50_P44638 Lactoylglutathione lyase 0.000401441553581 3.23672091182e-05 -1.48999841911e+11 +UniRef50_UPI000360EF37 hypothetical protein, partial 1.70013249845e-05 5.69880686071e-05 16143139093.0 +UniRef50_G3NMT4 5.40058208084e-06 0.00038476553164 1.53154285468e+11 +UniRef50_P0ABJ0 Cytochrome bo ubiquinol oxidase subunit 1 0.00453517414156 0.010635895701 2.46293615782e+12 +UniRef50_Q04664 Galactosyl transferase CpsE 0.000178207040781 0.000454172093428 1.11410478226e+11 +UniRef50_Q88HN0 CobW P47K family protein 1.05248090398e-05 1.28976731937e-05 957954377.247 +UniRef50_A5UMX1 Predicted membrane associated Zn dependent protease 0.00278865623254 0.000534025617684 -9.10222046648e+11 +UniRef50_A5UP18 0.00275383464472 0.00101647693896 -7.01392625592e+11 +UniRef50_UPI00045E2399 PREDICTED 6.30840724341e-05 0.000108234168055 18227647656.1 +UniRef50_A3SUN2 0.00157400855818 0.000129125227348 -5.83317131368e+11 +UniRef50_P64452 0.00459439886299 0.00172019043043 -1.16035321473e+12 +UniRef50_W1GE26 Aerotaxis sensor receptor protein 0.00011069970347 0.00017303713195 25166384843.6 +UniRef50_Q167K9 Chemotaxis response regulator protein glutamate methylesterase 6.75217610652e-05 9.34288145708e-06 -23487527632.9 +UniRef50_Q9A7N9 Guanylate kinase 9.64062507658e-06 5.33993978369e-05 17665953543.9 +UniRef50_P0AGJ6 0.00223556044187 0.000189710945528 -8.25934547069e+11 +UniRef50_K4PRE7 PTS system beta glucoside specific EIIBCA component 0.000216351331064 0.00352738739095 1.33670588836e+12 +UniRef50_U5MWY6 0.000402960371937 0.000942500122969 2.17818818389e+11 +UniRef50_R4GFK2 1.15173507714e-05 0.000103191756571 37010082592.8 +UniRef50_W7WSH9 3.93286986155e-05 0.00144003239666 5.65481271466e+11 +UniRef50_D0JTC4 Uroporphyrinogen decarboxylase 0.00262486529261 0.00188317231262 -2.99430557618e+11 +UniRef50_P0CQ36 Phosphoribosylaminoimidazole carboxylase 1.86080582161e-05 2.64283030819e-05 3157128817.52 +UniRef50_A0A038FKH8 0.00193966093626 0.000576005642589 -5.50524375987e+11 +UniRef50_B9TKN7 3.55867028307e-05 2.50262236609e-05 -4263395032.5 +UniRef50_F4SG83 Glycerol 3 phosphate transporter 0.0023413107756 0.000348799258104 -8.04401350481e+11 +UniRef50_F9EIW4 0.000190580605219 3.9239345132e-05 -61098323863.2 +UniRef50_UPI0003A9F6F6 molybdenum cofactor biosynthesis protein MoeA 5.18705800324e-06 4.43569703789e-05 15813374294.9 +UniRef50_P67634 Tyrosine recombinase XerS 0.00671138930197 0.00202780881376 -1.89081891709e+12 +UniRef50_P54473 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.54900295746e-05 0.000382699833941 1.28061490625e+11 +UniRef50_K8AXM7 NADH ubiquinone oxidoreductase chain G 0.00018718313497 0.000541565658592 1.43068573549e+11 +UniRef50_O27633 Probable S methyl 5 thioinosine phosphorylase 0.00165980436191 0.000245415544476 -5.71006122099e+11 +UniRef50_F2LRZ3 2.40111447617e-05 7.63664887617e-06 -6610584926.64 +UniRef50_X7Y8I7 2.95705784655e-05 0.000171586182546 57333442094.9 +UniRef50_W1GDJ6 Ribonucleotide reductase transcriptional regulator NrdR 4.40364545087e-05 0.000134075017318 36349672703.5 +UniRef50_P30871 Inorganic triphosphatase 0.00355307580835 0.00113066236903 -9.77958031809e+11 +UniRef50_Q16DT4 Magnesium chelatase 30 kDa subunit 0.000854534121249 0.000329349485352 -2.12023482252e+11 +UniRef50_P25747 0.0022693521386 0.00047242612268 -7.25441083389e+11 +UniRef50_V8G0E8 0.000276851539012 0.000506239808945 92606859482.6 +UniRef50_Q5M061 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000124040711925 0.000930716877779 3.25665067185e+11 +UniRef50_Q1GFL6 0.00200139507124 0.00100287358992 -4.03115375245e+11 +UniRef50_A9UPG1 2.09257023546e-06 9.65457440677e-07 -455029266.482 +UniRef50_UPI00035F8DA2 hypothetical protein 6.89922137727e-05 1.52387752177e-05 -21700922773.5 +UniRef50_UPI00036C24C5 hypothetical protein 0.000455452176102 0.00015574698134 -1.20994664922e+11 +UniRef50_R7HEN4 Pseudouridine synthase 0.00892488928241 0.00182687061985 -2.86555723656e+12 +UniRef50_Q9JLJ2 4 trimethylaminobutyraldehyde dehydrogenase 8.71099199654e-06 2.15301774336e-05 5175262470.05 +UniRef50_R9WF85 Oxidoreductase 0.000328492065214 0.00777148264131 3.00482663134e+12 +UniRef50_L0KAS8 Sulfite reductase, subunit C 0.00011723167356 0.000895515963488 3.14202918466e+11 +UniRef50_A6UYG3 0.000682940365616 0.000183807077915 -2.01506233299e+11 +UniRef50_U6F043 Transposase YhgA family protein 0.00053809445313 0.00128288667888 3.00681761164e+11 +UniRef50_A6DUS0 CarR 2.05241936746e-05 0.000589466105706 2.29688831589e+11 +UniRef50_UPI000470D4BA amino acid permease, partial 2.1060328233e-05 1.52635786492e-05 -2340218941.1 +UniRef50_E6UW30 5 nucleotidase domain containing protein 2.12511366872e-06 0.000595572937899 2.39582169065e+11 +UniRef50_P75736 Esterase YbfF 0.00283156575095 0.00143997590485 -5.61801897598e+11 +UniRef50_UPI00036D73AB hypothetical protein 8.07279930707e-06 0.000608081637672 2.42230930984e+11 +UniRef50_A6LRB4 Histidine kinase 0.000165699211876 0.00130872574362 4.61453837376e+11 +UniRef50_P37747 UDP galactopyranose mutase 0.00263856609784 0.00450356420655 7.52922622587e+11 +UniRef50_Q1IEH7 GTPase Der 0.000493452122986 0.00713725598739 2.6821851487e+12 +UniRef50_UPI0003B66950 tetracycline transporter 8.49049924826e-06 0.000270153062244 1.05636387642e+11 +UniRef50_D3QIS4 0.000674082122953 0.00158205377784 3.66559299143e+11 +UniRef50_P0AC26 Nitrite transporter NirC 0.00372812402679 0.000610326077257 -1.25869329191e+12 +UniRef50_P71103 Phosphate acetyltransferase 0.000328267440274 0.00637220414335 2.44001141448e+12 +UniRef50_A1JNH2 UPF0283 membrane protein YE2117 0.00352579726221 0.00021271311299 -1.33753272715e+12 +UniRef50_W7Z054 2.23931863463e-05 1.24868292432e-05 -3999317927.19 +UniRef50_Q9K1N7 0.000770379569081 0.0082242215653 3.0092074828e+12 +UniRef50_W1YTD2 9.77363753634e-05 7.72603175785e-05 -8266435797.25 +UniRef50_E1VH08 Exodeoxyribonuclease III 0.00106866094732 0.00664296341073 2.25041430886e+12 +UniRef50_A6R2L6 ATP dependent RNA helicase DBP9 5.51433992969e-06 1.202547554e-05 2628625346.5 +UniRef50_B8CX69 Predicted ATPase of the ABC class 0.0110890097835 0.00490845656294 -2.49516517906e+12 +UniRef50_D4JAE0 0.000131375634168 0.00150236799977 5.53486441961e+11 +UniRef50_A4XKE2 Phosphopantetheine adenylyltransferase 6.38122885107e-05 0.000823995582221 3.06895324169e+11 +UniRef50_G7MBQ3 PTS system transcriptional activator 0.000583018612708 0.00160141105018 4.11137524087e+11 +UniRef50_M1JGK6 Ammonium transporter 0.000185042151398 0.000281701149624 39022423723.1 +UniRef50_UPI000255A1E5 multi anti extrusion protein MatE 2.11833229753e-05 2.46248850868e-05 1389400857.13 +UniRef50_UPI00037C177B hypothetical protein 0.000131624482939 1.66551436497e-05 -46414533103.4 +UniRef50_Q8CS21 2 succinylbenzoate CoA ligase 0.014886252707 0.00209148257495 -5.16540571177e+12 +UniRef50_D3E0E9 0.00310933180482 0.000890088631769 -8.95935702136e+11 +UniRef50_P44869 Ribosomal RNA small subunit methyltransferase D 3.00482509118e-05 1.91981395121e-05 -4380323117.9 +UniRef50_Q4A602 ATP synthase subunit alpha 3.30896185304e-06 1.82022052457e-05 6012585118.28 +UniRef50_B9KML1 Response regulator receiver protein 0.00620160854692 0.0053693946399 -3.35974966677e+11 +UniRef50_UPI0002C45261 PREDICTED 4.56796072939e-06 1.69065940293e-06 -1161601853.95 +UniRef50_UPI0004702537 methionine ABC transporter ATP binding protein 1.0287804658e-05 8.39973985947e-06 -762234928.327 +UniRef50_W7VUU1 4.05152839959e-05 0.00024475759231 82455126201.3 +UniRef50_UPI0003B4C98F RpiR family transcriptional regulator 2.67166508842e-05 2.61933151795e-05 -211277046.039 +UniRef50_D8JJP4 AraC type DNA binding domain containing protein 0.000907152231135 0.00475156940661 1.55203839004e+12 +UniRef50_UPI0003793A77 hypothetical protein 2.22061545941e-05 2.47095054959e-05 1010633478.63 +UniRef50_A3M540 TonB dependent receptor 0.000100829278981 0.00773435178394 3.08174670911e+12 +UniRef50_UPI00047C9351 hypothetical protein, partial 2.10941005529e-05 5.99423469122e-05 15683513776.8 +UniRef50_U3SV52 Acyl CoA thioesterase 0.00468943279864 0.00152550702457 -1.27731566073e+12 +UniRef50_K1UTW6 0.000188913398596 0.000709109927963 2.10009722435e+11 +UniRef50_D2ZP15 0.00206972402462 0.000325418131361 -7.04197694149e+11 +UniRef50_Q79UU3 Bll2159 protein 5.6315505217e-05 2.31395545636e-05 -13393538393.5 +UniRef50_Q5F9U0 Phenylalanine tRNA ligase alpha subunit 0.00239804719611 0.00111561813651 -5.17732348535e+11 +UniRef50_Q3KDB9 Alanine racemase domain protein 0.000790909724559 0.000538004977289 -1.02100749963e+11 +UniRef50_P0A9P5 Thioredoxin reductase 0.00385173378469 0.00328319143056 -2.29527525162e+11 +UniRef50_C7NFG6 Cell envelope related function transcriptional attenuator common domain protein 4.74505730337e-06 1.40892797847e-05 3772377282.22 +UniRef50_E1ZFT3 2.8933970481e-06 1.22562919287e-05 3779915558.94 +UniRef50_A3P9L6 0.000427406885532 0.000200895717825 -91445338007.9 +UniRef50_U3T490 0.00042533670047 0.00415039625779 1.50385225491e+12 +UniRef50_A4A899 4.58992754656e-05 3.92777035471e-05 -2673209839.32 +UniRef50_A6LY62 0.000423387974682 0.00077608441084 1.42387879349e+11 +UniRef50_UPI0001DD0936 hypothetical protein, partial 0.000102953479764 2.48684564639e-05 -31523882117.2 +UniRef50_U6M2X4 2.40207525351e-05 3.32218023406e-05 3714576716.06 +UniRef50_I3ZJH3 GAF domain containing protein 1.16771233205e-05 3.32999393312e-05 8729396165.31 +UniRef50_Q6GF11 Protein SprT like 0.0246783458307 0.00196456929443 -9.16983031709e+12 +UniRef50_UPI000471A4D9 hypothetical protein 1.366666894e-05 7.81281424482e-06 -2363272975.32 +UniRef50_UPI000362ADEC hypothetical protein 3.58753342159e-06 1.49736897647e-05 4596731039.56 +UniRef50_A6Q6L7 Transketolase 6.01411559548e-05 0.00543562825294 2.1701501057e+12 +UniRef50_A9LZ37 Tail fibre protein, putative 0.000204054251647 0.000914150998865 2.86674770719e+11 +UniRef50_P45550 0.00440370040747 0.0007540986435 -1.47338901776e+12 +UniRef50_M1XJU0 Transposase for IS1272 0.00822775888012 0.00106747481519 -2.89069454358e+12 +UniRef50_P75167 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.59154608006e-05 1.00764874535e-05 -2357265192.48 +UniRef50_B9DM19 50S ribosomal protein L3 0.0131992639121 0.00507207856933 -3.28104445466e+12 +UniRef50_I6T7R3 ATP binding protein 0.00257799506289 0.00120065454453 -5.56049269131e+11 +UniRef50_P0ADP0 Flavin mononucleotide phosphatase YigB 0.00272353993782 0.00107417808242 -6.65867620971e+11 +UniRef50_Q5HQS0 Acetyltransferase, GNAT family 0.00687482466354 0.00157658366718 -2.13896490696e+12 +UniRef50_UPI000365881D UDP N acetylmuramate alanine ligase, partial 1.82290035162e-05 8.76216695518e-06 -3821878090.83 +UniRef50_UPI000464B7EB hypothetical protein, partial 0.000106851270543 4.88981293079e-05 -23396394281.6 +UniRef50_Q06464 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.25589886554e-05 1.1271693837e-05 -519696715.072 +UniRef50_B3GYD9 7.48849716324e-05 3.13331011751e-05 -17582424545.2 +UniRef50_UPI0003745C94 hypothetical protein 0.000965271707964 0.00182967339842 3.48969569839e+11 +UniRef50_O67444 9.03924561723e-06 2.23520817014e-05 5374555294.06 +UniRef50_UPI00029AB2BE DNA processing protein 6.2870907391e-05 4.95373006235e-05 -5382940673.79 +UniRef50_UPI000373702C hypothetical protein 1.93157409838e-05 2.90885747303e-05 3945412909.62 +UniRef50_B2VK30 Protein TsgA homolog 0.00297374290412 0.000797447901047 -8.78596998882e+11 +UniRef50_K6LK64 Diguanylate cyclase domain protein 8.94516561282e-05 0.000456037688626 1.47995279836e+11 +UniRef50_K2SED6 0.000137047494064 7.48867184436e-05 -25095067916.5 +UniRef50_Q9RXB5 3.86504425414e-05 0.021732239059 8.75796793475e+12 +UniRef50_Q9RXB7 0.000245120771981 0.0553583475266 2.22498859562e+13 +UniRef50_G7U855 Ser Thr phosphatase family protein 0.00011005422415 0.00218455871511 8.37502920033e+11 +UniRef50_I3YFJ2 NADH dehydrogenase subunit M 7.78856923336e-05 0.00344596700088 1.35973575527e+12 +UniRef50_Q58690 Putative fumarate hydratase subunit alpha 0.00329739899649 0.000231318568035 -1.237814294e+12 +UniRef50_A6LR96 Radical SAM domain protein 0.000332029699854 0.000186712353132 -58666396116.0 +UniRef50_L7WSQ0 0.026303276134 0.00625083781117 -8.095415422e+12 +UniRef50_B4RIY5 Rsp 0.000100932082575 0.00416155179136 1.63932200584e+12 +UniRef50_UPI0002889AF8 alcohol dehydrogenase 0.000100515736442 3.3151049514e-05 -27195950770.5 +UniRef50_D6PE21 Predicted flagellar hook capping protein 8.52565299713e-06 1.17276706558e-05 1292693821.98 +UniRef50_G7UVD4 Dihydrolipoamide dehydrogenase 8.81290246311e-05 0.00197869076315 7.63242973642e+11 +UniRef50_Q6FDN3 Glycerol kinase 2.71176616565e-05 0.000126431651399 40094276378.7 +UniRef50_A5IV34 50S ribosomal protein L3 0.00872987569824 0.00186377152345 -2.77193051194e+12 +UniRef50_J9B6L5 9.79177642702e-06 1.77784766037e-05 3224328869.16 +UniRef50_UPI00029ABC7B LysR family transcriptional regulator, partial 4.01233001367e-05 2.06466716722e-05 -7862953916.23 +UniRef50_Q0BS24 Acetolactate synthase small subunit 0.0119247875902 0.00151493399138 -4.2025856411e+12 +UniRef50_P37924 Outer membrane usher protein FimD 0.00301939227975 0.00115883470606 -7.51129924108e+11 +UniRef50_U3TX51 Malonyl CoA acyl carrier protein transacylase 0.00175527998524 0.00225744585272 2.0273052297e+11 +UniRef50_UPI000361F37C hypothetical protein 4.30138955065e-05 1.8323822648e-05 -9967685394.24 +UniRef50_UPI0002EB7738 hypothetical protein 1.07653267706e-05 4.43384112479e-05 13553866191.6 +UniRef50_V9UBP5 0.000138211946844 0.000165443532329 10993725229.4 +UniRef50_I1EPG5 2.26497517312e-05 4.74130017204e-05 9997227899.89 +UniRef50_E9BYY8 2.07160620757e-06 1.65232513169e-05 5834306472.25 +UniRef50_I2QVL7 4.2822554174e-05 2.68064956953e-05 -6465879346.99 +UniRef50_E3A0E2 0.000439648606825 0.00336450188563 1.18079916064e+12 +UniRef50_UPI0003777C1D hypothetical protein 0.000204098969672 2.63837077196e-05 -71745832061.5 +UniRef50_A9BF34 50S ribosomal protein L7 L12 0.00191628639599 0.00194109119692 10014002524.6 +UniRef50_T0TSM6 Histidine kinase, putative 0.00415797235325 0.00145964223484 -1.08934898104e+12 +UniRef50_UPI00037689C2 hypothetical protein 9.79272942437e-06 0.000237088538711 91762107442.4 +UniRef50_UPI00023B2B80 PREDICTED 8.66862299559e-06 3.89941196861e-05 12242775149.6 +UniRef50_A4X0E6 5.44875341365e-05 3.36138450299e-05 -8426964441.3 +UniRef50_G8V4L1 0.0136699162563 0.00315188589135 -4.24625792906e+12 +UniRef50_W4S2X5 Alkyl hydroperoxide reductase subunit F 7.71198234451e-05 0.000236343706486 64280635480.4 +UniRef50_E2XSQ7 Transcriptional regulator, AraC family 0.000227653299757 0.000176133223777 -20799286895.6 +UniRef50_U4TYH6 0.00162769612583 0.00070230451535 -3.73591948983e+11 +UniRef50_UPI0003B7313F GNAT family acetyltransferase 3.8705863834e-05 2.4049220093e-05 -5917066935.49 +UniRef50_UPI000262A595 membrane protein 0.000502517358481 3.35477697895e-05 -1.89328777859e+11 +UniRef50_UPI0002378354 AraC family transcriptional regulator 0.000113637457606 1.35740812762e-05 -40396812940.1 +UniRef50_F0Y7I6 0.000229612588454 0.000329159633223 40188363552.9 +UniRef50_UPI00041D5BF9 transcription termination factor Rho 1.18847788764e-05 6.62469381435e-06 -2123560888.05 +UniRef50_D0IRH3 0.000206276496643 0.00126519994175 4.27500389243e+11 +UniRef50_Q3AE81 Adenine deaminase 2 2.77284915682e-05 7.39974158041e-06 -8206965831.89 +UniRef50_W1FF26 0.000532620805937 2.69659595577e-05 -2.04139066566e+11 +UniRef50_Q3IV87 Caspase 1, p20 0.00381179151706 0.00108746078944 -1.09984574604e+12 +UniRef50_W6BZ44 Cupin domain protein 1.87966852506e-05 4.93107487202e-05 12318901872.3 +UniRef50_UPI000363D9BF hypothetical protein, partial 2.91478981214e-05 1.49245080691e-05 -5742157104.74 +UniRef50_Q8FT12 Tryptophan synthase beta chain 2 1.53395825733e-05 9.96895226372e-06 -2168189361.02 +UniRef50_Q73NM0 Chorismate synthase 4.45875422911e-06 1.84711140873e-05 5656961625.75 +UniRef50_S5YXU8 ErfK YbiS YcfS YnhG family protein 0.00457504033361 0.00539274364427 3.30116860861e+11 +UniRef50_Q0AK81 Ferric uptake regulator, Fur family 0.0107162869468 0.00228920951453 -3.40211457128e+12 +UniRef50_F0K4Y1 2,3 cyclic nucleotide 2phosphodiesterase 0.000378840155347 0.00109852474362 2.90545499809e+11 +UniRef50_D7A6Y6 1.07554198471e-05 8.03888284457e-06 -1096699323.58 +UniRef50_X8ACG0 Pyridine nucleotide disulfide oxidoreductase family protein 4.94833773131e-05 0.00275404860856 1.0918661726e+12 +UniRef50_P29928 Uroporphyrinogen III C methyltransferase 5.39947344412e-05 0.000255685309762 81424960278.8 +UniRef50_Q2LTA1 4 hydroxy tetrahydrodipicolinate synthase 5.4353334221e-06 2.92788927977e-05 9625937513.31 +UniRef50_O83571 Transketolase 3.84857391345e-05 1.77006576692e-05 -8391192449.17 +UniRef50_P37518 Ribosome binding ATPase YchF 0.00777465762818 0.0052464797859 -1.02065641916e+12 +UniRef50_D9RHA1 0.00795710956243 0.00154159034787 -2.59002383419e+12 +UniRef50_A5IVA9 0.0116418063965 0.00308676477226 -3.45377528587e+12 +UniRef50_UPI0003763331 hypothetical protein 2.26811341459e-05 2.92831333271e-05 2665308085.09 +UniRef50_UPI00016C4318 hypothetical protein 7.72614087193e-05 4.30126679112e-05 -13826636943.5 +UniRef50_UPI000255CEAC 3,4 dihydroxy 2 butanone 4 phosphate synthase 1.49147321113e-06 1.0078794131e-05 3466806833.63 +UniRef50_UPI00036D0344 hypothetical protein, partial 2.91147073638e-05 9.78105420454e-06 -7805233031.01 +UniRef50_F8GWB2 Aromatic compounds catabolic protein 1.12588349656e-05 1.58774503126e-05 1864591692.37 +UniRef50_X5DV87 Molybdate ABC transporter, periplasmic molybdate binding protein 0.0171209960761 0.00546666404902 -4.70499685408e+12 +UniRef50_UPI0004541A53 PREDICTED 5.74572735962e-05 0.000239555096073 73515125525.5 +UniRef50_UPI000360E9DE hypothetical protein 3.41240950785e-05 6.04828651842e-06 -11334548444.6 +UniRef50_P55734 Inner membrane protein YgaP 0.00140151864724 0.000714348523532 -2.77419011467e+11 +UniRef50_UPI0003B40AC8 ABC transporter 4.67874074605e-06 1.9489042721e-05 5979100650.11 +UniRef50_G7MCR1 Taurine transporting ATPase 0.000137267632307 0.000809821909556 2.71518414894e+11 +UniRef50_Q8DVQ3 Ribosome maturation factor RimP 0.00557184888849 0.00279103792231 -1.12264751143e+12 +UniRef50_C7NA19 Ribonucleoside diphosphate reductase subunit beta 0.0180563286137 0.00482699858703 -5.34084287391e+12 +UniRef50_X1LB27 Marine sediment metagenome DNA, contig 2.58856459014e-05 0.000167794102236 57290185235.0 +UniRef50_UPI0001E2E6F3 transport system permease 2.75687258931e-05 1.9233045929e-05 -3365216291.8 +UniRef50_A3N3F8 3 dehydroquinate dehydratase 5.38926304002e-05 2.33646412647e-05 -12324523834.6 +UniRef50_K0RWJ4 4.3110427424e-06 5.49345924854e-06 477356053.411 +UniRef50_A3TPX9 7.10684697507e-05 0.00138480778634 5.30372683502e+11 +UniRef50_UPI0003B75E06 preprotein translocase subunit TatA 6.39738583724e-05 4.78766491838e-05 -6498640884.41 +UniRef50_Q73FJ4 Glutamine amidotransferase subunit PdxT 0.0182328691833 0.00659721995591 -4.69745437857e+12 +UniRef50_Q1JAW0 DNA repair protein RecN 0.00597392746286 0.0055106608689 -1.87026408902e+11 +UniRef50_UPI00037D1EFC ABC transporter 5.86171435572e-06 9.13151682254e-05 34498607959.0 +UniRef50_P0A0S5 Cell division protein FtsZ 0.000334640182345 0.00348741758183 1.2728149251e+12 +UniRef50_A3PKK1 Transcriptional regulator, LuxR family 0.0131331314106 0.00484255997554 -3.34700542509e+12 +UniRef50_UPI000185FC5F hypothetical protein TGME49_010350 2.75889714784e-05 2.14958174354e-05 -2459881058.57 +UniRef50_F3R0E6 Cobalt transport protein 2.01429840546e-05 4.29729208224e-05 9216725627.99 +UniRef50_A0KF56 Trap transporter solute receptor, taxi family 4.95380895057e-05 1.14927135311e-05 -15359385150.2 +UniRef50_Q8TY21 GTP cyclohydrolase MptA 0.00303708332945 0.000444693080934 -1.04657975553e+12 +UniRef50_A3PPL1 Aminotransferase 0.00784683725582 0.0025784171095 -2.12692586385e+12 +UniRef50_R5G6A1 Cyclopropane fatty acyl phospholipid synthase 0.000298329240325 0.000480738846681 73640996503.5 +UniRef50_P43799 Anaerobic glycerol 3 phosphate dehydrogenase subunit A 0.00258865051196 0.000389996268726 -8.87623698514e+11 +UniRef50_Q99RJ0 Protein flp 0.00926277548262 0.00313874176223 -2.47234756327e+12 +UniRef50_F0VWI5 PTT family thiamin transporter 0.00409308345524 0.000289053871314 -1.53573342372e+12 +UniRef50_Q12PZ2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 6.37047600074e-06 8.80479674846e-06 982765158.329 +UniRef50_Q8FGS9 Ribosomal RNA small subunit methyltransferase F 0.00313701740099 0.000836132980282 -9.28895275668e+11 +UniRef50_U7PCU9 4.56260682599e-05 0.00334322687445 1.33128191157e+12 +UniRef50_UPI0001851281 aldehyde dehydrogenase 3.82550067579e-06 6.1713825183e-06 947061287.029 +UniRef50_G8NCG2 Short chain dehydrogenase reductase SDR 3.98671185418e-06 3.87488562505e-05 14033904272.3 +UniRef50_Q99XQ7 Elongation factor Ts 0.00503874227619 0.00400189716792 -4.18587093729e+11 +UniRef50_A4WSL4 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00243289321406 1.79209363191e-05 -9.74953943566e+11 +UniRef50_UPI00045EAF7F amidase 1.88830149901e-05 7.52902236264e-06 -4583746152.88 +UniRef50_P22098 Tryptophan biosynthesis protein TrpCF 0.0035386865701 0.00059973047584 -1.1864926403e+12 +UniRef50_UPI00037775E1 hypothetical protein 4.00046294021e-06 7.73820259147e-06 1508971364.44 +UniRef50_D6GRE6 CobQ CobB MinD ParA nucleotide binding domain protein 6.97683137846e-06 6.44040381182e-05 23184068071.9 +UniRef50_UPI0000510540 aspartate ammonia lyase 3.65968013866e-05 2.36622660532e-05 -5221830638.69 +UniRef50_UPI00034B0665 glucose 1 phosphate adenylyltransferase 1.08510914136e-05 2.50861817701e-05 5746880661.12 +UniRef50_Q46802 0.00513301387663 0.0010626632033 -1.64325051564e+12 +UniRef50_O30019 Pyruvate carboxylase subunit A 7.81776381628e-06 1.54343987264e-05 3074928979.84 +UniRef50_Q49VK7 Secretory antigen SsaA like protein 0.00876382083714 0.00438970089801 -1.76588589591e+12 +UniRef50_W4UBQ2 Glucoamylase S1 S2 0.00019844214558 0.000187200103754 -4538550240.52 +UniRef50_Q46809 0.0033355749656 0.000509919233309 -1.14075189382e+12 +UniRef50_Q46808 0.00316614729655 0.00210960890249 -4.26537514866e+11 +UniRef50_B0VB06 0.000268354968373 0.000754810784963 1.96388182642e+11 +UniRef50_G7M9G8 Signal peptidase I 0.00105139244997 0.000883465702945 -67794088466.9 +UniRef50_Q6F985 Protein TolB 0.000249855161395 0.0107880724089 4.25440762128e+12 +UniRef50_A8MIR6 Heavy metal translocating P type ATPase 0.000361482705049 0.0003223409879 -15801991535.9 +UniRef50_Q6GI34 Glutamyl endopeptidase 0.00839670068442 0.00114078481692 -2.92930227581e+12 +UniRef50_A0A011EDI0 2.18466032552e-05 6.36254469059e-05 16866631865.9 +UniRef50_W5VF17 Beta aspartyl peptidase 0.00152685626444 0.00034213617568 -4.78286037983e+11 +UniRef50_A6FSN1 3.58206187165e-06 1.93326186952e-06 -665640793.911 +UniRef50_UPI00046B7987 PREDICTED 8.1365818119e-05 3.69616260525e-05 -17926517238.0 +UniRef50_UPI00037A4252 hypothetical protein 4.63296885611e-06 3.26417426446e-06 -552599173.648 +UniRef50_UPI00037DFE14 hypothetical protein 8.6566233011e-07 3.43503299921e-05 13518171238.2 +UniRef50_UPI0004698FEC anti sigma regulatory factor 2.319668029e-05 0.00104768952259 4.13600332377e+11 +UniRef50_B7H2F2 TonB dependent siderophore receptor family protein 0.00012042550199 0.0068487807895 2.71631959577e+12 +UniRef50_UPI0003621DA0 hypothetical protein 0.000454301580043 3.96682270623e-05 -1.67392572722e+11 +UniRef50_F8HDH3 N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase 0.004236401228 0.000933405304551 -1.33345998661e+12 +UniRef50_E1VQ96 0.000751268586283 0.000187900342655 -2.27438673258e+11 +UniRef50_V1VWE5 Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA 0.000862377428233 0.000214988314519 -2.61358929564e+11 +UniRef50_Q57624 Aspartyl glutamyl tRNA amidotransferase subunit B 0.00320227283329 0.000330808282006 -1.15924547618e+12 +UniRef50_P38942 4 hydroxybutyrate coenzyme A transferase 0.000863015462288 0.0021048861233 5.01358425316e+11 +UniRef50_Q8DW17 Putative agmatine deiminase 0.00607781779478 0.00443874315847 -6.61714544386e+11 +UniRef50_Q2RRP2 Fructose 1,6 bisphosphatase class 1 1.73683689598e-05 9.76920788205e-06 -3067874579.28 +UniRef50_G7LXK3 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.000754316477018 0.0011580912414 1.63008827255e+11 +UniRef50_A2RLU5 Bifunctional protein FolD 1.31799939057e-05 4.16954470778e-06 -3637628911.85 +UniRef50_UPI00047C45C3 hypothetical protein 2.64976359936e-05 5.3034021998e-06 -8556372265.05 +UniRef50_D4HC59 MazG family protein 0.00059290993013 0.00528837608123 1.89561730505e+12 +UniRef50_P76909 0.00334963636146 0.000983787813649 -9.55122090977e+11 +UniRef50_F0RK09 Peptidase U32 5.5951480556e-05 0.0198055112287 7.97313962466e+12 +UniRef50_UPI000479CC6C pseudouridine synthase 6.18259839294e-06 5.25351429563e-06 -375082651.228 +UniRef50_R7G2P1 tRNA 2 O) methyltransferase 0.0308319054726 0.0260197849502 -1.94271210625e+12 +UniRef50_Q2KAV8 UPF0061 protein RHE_CH01223 7.73008850942e-05 0.000973556115833 3.61829234938e+11 +UniRef50_V4HW78 3.38994761404e-06 0.000198627150752 78819654736.7 +UniRef50_A4EDG0 0.00022802672554 7.21354113454e-05 -62935236542.1 +UniRef50_B4RQC6 Lipid II flippase FtsW 0.000299461383637 0.00290998726558 1.05390133329e+12 +UniRef50_D8THS2 Pathogenesis related protein 1 like protein 1.22103071691e-05 4.41507377948e-05 12894743796.8 +UniRef50_UPI000376F8EF hypothetical protein, partial 2.6152056604e-05 1.95916943942e-05 -2648498728.79 +UniRef50_F4DL94 Beta lactamase domain containing protein 0.000316225937685 6.52887496932e-05 -1.01306422138e+11 +UniRef50_C5QMP7 Nitrite reductase [NADH], large subunit 0.0287029985913 0.00779141621946 -8.44226241747e+12 +UniRef50_Q9RYB4 GTP cyclohydrolase 1 0.000414398256095 0.0534840979209 2.14248889931e+13 +UniRef50_P23224 Zinc metalloproteinase 2.17273418304e-06 0.0012685183819 5.11239277793e+11 +UniRef50_Q5HRK1 Ornithine cyclodeaminase mu crystallin family protein 0.00799383814489 0.00389776504399 -1.6536349753e+12 +UniRef50_UPI000426573E hypothetical protein 2.49961566783e-05 3.23741967131e-05 2978605300.78 +UniRef50_F0L5S4 Segregation and condensation protein B 0.0017456127819 0.00253060927577 3.16912717566e+11 +UniRef50_R5FRB0 Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase 0.00349878368374 0.00113848388587 -9.52881992536e+11 +UniRef50_Q2W403 Electron transport complex subunit E 0.00370689577757 0.00205786826871 -6.6573264117e+11 +UniRef50_UPI0004636746 arabinose transporter permease 8.77583822708e-06 7.78268938935e-06 -400946373.098 +UniRef50_Q57661 0.00651000329718 0.000777149224201 -2.31442353929e+12 +UniRef50_Q5V230 Probable aminomethyltransferase 7.87921482457e-06 5.22885264269e-05 17928584057.4 +UniRef50_U1W1Q2 1.7456605566e-05 0.00111286693995 4.42230594186e+11 +UniRef50_V5VE78 0.000176225963693 0.0052998456188 2.06846812865e+12 +UniRef50_V5VBQ5 Ribonuclease Z 0.000465673600297 0.00556461686254 2.05850596604e+12 +UniRef50_X2HF59 Membrane protein 0.00346172378566 0.0020428034206 -5.72835563486e+11 +UniRef50_R5LLF3 Acetate CoA transferase subunit alpha 0.00132775169757 0.0015179614607 76790015511.9 +UniRef50_A5UII8 Lipid A disaccharide synthase 0.00309136058486 0.00120898086735 -7.59939791356e+11 +UniRef50_UPI0003F49601 hypothetical protein TREMEDRAFT_38243 1.90677045136e-05 0.000128580122778 44211507121.7 +UniRef50_Q3JKL4 3.85977493742e-05 5.79086730159e-05 7796056845.84 +UniRef50_UPI0004726B74 hypothetical protein 0.000106858286018 9.00974785897e-06 -39502655591.4 +UniRef50_F0RLT4 Homoserine dehydrogenase 0.000119457591412 0.0174633231119 7.00193134379e+12 +UniRef50_R5ZCF8 3.41042121969e-06 1.45869125781e-05 4512086712.36 +UniRef50_UPI000375252A hypothetical protein 4.12266136068e-06 3.18372412896e-05 11188716013.4 +UniRef50_Q8RQP4 NADP specific glutamate dehydrogenase 1.22197083254e-05 7.24035703897e-05 24296963654.4 +UniRef50_UPI00036DFBB3 hypothetical protein 3.49596279114e-06 5.5560639212e-06 831688106.489 +UniRef50_R0DWK7 7.36988509447e-05 0.000101804349493 11346534657.2 +UniRef50_F9YX60 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 0.000212868038824 0.0059591309578 2.31983685497e+12 +UniRef50_UPI0003769C5D hypothetical protein 6.04704569972e-06 3.47491385231e-05 11587387087.1 +UniRef50_UPI000472FB88 adenosylcobinamide kinase 2.38483063204e-05 4.0627813099e-05 6774092794.22 +UniRef50_I4E1R6 0.0181235642659 0.00259972979109 -6.26716247635e+12 +UniRef50_A4E9H7 3.38279665272e-05 0.000456840723113 1.70775440784e+11 +UniRef50_UPI000248CE53 sugar ABC transporter substrate binding protein 4.97041496653e-06 2.08644474421e-05 6416615952.11 +UniRef50_UPI0003B44826 hypothetical protein 6.8329956159e-06 1.03860906595e-05 1434428070.48 +UniRef50_A8AXR0 Multidrug resistance protein B 0.00622038485082 0.00206625626737 -1.67707268603e+12 +UniRef50_B9TDS9 4.42472585015e-05 2.43124019051e-05 -8047946236.17 +UniRef50_UPI000382B615 hypothetical protein 1.37545895225e-05 8.63210481455e-05 29295969836.7 +UniRef50_F2E6Z5 Predicted protein 0.000139345151067 3.90115343114e-05 -40505912316.3 +UniRef50_A8IJS1 Glutamate synthase 0.00128026563425 0.000127017937712 -4.65580247034e+11 +UniRef50_P76108 Putative ABC transporter periplasmic binding protein YdcS 0.00383756302508 0.00147457741304 -9.53966288675e+11 +UniRef50_Q05197 Phosphatidylethanolamine N methyltransferase 0.00254228775841 0.00130914273516 -4.97835778277e+11 +UniRef50_F5L317 1.93781542303e-05 1.70899863588e-05 -923761448.702 +UniRef50_UPI00040DE43B hypothetical protein 7.89711055954e-06 2.05019636101e-05 5088733855.47 +UniRef50_UPI0004786ABC hypothetical protein 1.25214168143e-05 2.09603533671e-05 3406902243.76 +UniRef50_F8JXJ3 1.24419487848e-05 6.62529227364e-06 -2348255611.96 +UniRef50_F4T079 Exodeoxyribonuclease 8 (EXOVIII) 0.000754721586371 0.000375188756835 -1.53222060675e+11 +UniRef50_H3WGZ6 0.000467034846539 0.000364707653094 -41310743689.6 +UniRef50_O27859 Ribonuclease Z 0.00332272675451 0.00071117995287 -1.05431349111e+12 +UniRef50_Q9P9X3 0.00231544251776 0.000211696562859 -8.49308057859e+11 +UniRef50_Q21CC1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.00881266530114 0.00110600657098 -3.1112727007e+12 +UniRef50_R4SH81 PE PGRS family protein 3.20660931678e-06 8.31074428152e-05 32256946976.8 +UniRef50_V8FTC7 0.00160982980627 0.000874450751439 -2.96881548551e+11 +UniRef50_P66898 L threonine dehydratase biosynthetic IlvA 1.40675682896e-05 0.000500809339492 1.96503626027e+11 +UniRef50_Q9RU40 0.000137768609074 0.0256262282209 1.02900039239e+13 +UniRef50_UPI000470AB53 zinc ABC transporter permease, partial 0.000110755119304 8.88107179085e-05 -8859224131.45 +UniRef50_F0VW84 Ferrous iron transport protein B 0.00470576956129 0.00149056574322 -1.29801723634e+12 +UniRef50_UPI00030520A7 hypothetical protein 2.38136568778e-05 2.72781041647e-05 1398639883.27 +UniRef50_P08624 Nitrogenase iron protein 2 0.00594265137104 0.00166299556588 -1.72774956583e+12 +UniRef50_UPI0002BAC68C hypothetical protein, partial 4.34832725849e-05 0.00240442358078 9.53140574416e+11 +UniRef50_A7FMJ5 Autoinducer 2 kinase LsrK 0.000744706888764 0.000138863654487 -2.4458634821e+11 +UniRef50_Q3JQJ9 0.000370074476117 5.6586143233e-05 -1.2655908692e+11 +UniRef50_Q4L8H3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00933771098491 0.00207819541404 -2.93075552023e+12 +UniRef50_UPI000329E5F9 PREDICTED 2.6034869797e-05 2.17222966907e-05 -1741038684.24 +UniRef50_Q1IHH4 DNA directed RNA polymerase subunit beta 4.56061017122e-06 3.30273703284e-06 -507818821.803 +UniRef50_D4GDT5 YliJ 0.000363844029575 0.00402220485901 1.47692515998e+12 +UniRef50_N1HFC9 M48B family peptidase 0.00171999664275 0.00272600035565 4.06136043952e+11 +UniRef50_UPI000475CBB8 SAM dependent methyltransferase 1.64028433492e-05 2.19798537827e-05 2251507549.62 +UniRef50_D3QF90 Manganese ABC transporter, inner membrane permease protein SitD 0.01529007816 0.00422250359934 -4.46811566457e+12 +UniRef50_Q8D2L6 Tyrosine tRNA ligase 3.66546513597e-06 4.64881871882e-06 396991908.502 +UniRef50_A0A011DVL1 Bacterial regulatory s, tetR family protein 0.000214075229968 0.00435064986238 1.66998594058e+12 +UniRef50_UPI0003EBE8AE PREDICTED 1.13609537399e-05 6.66329161322e-06 -1896503847.34 +UniRef50_UPI0004683656 aspartate aminotransferase 1.32163654772e-05 2.40974447675e-05 4392825235.35 +UniRef50_P33117 Ferric uptake regulation protein 0.00611031459481 0.0333446053364 1.09948173747e+13 +UniRef50_K7RVV7 FAD linked oxidase protein 4.34557930395e-05 0.00119227808727 4.63793657816e+11 +UniRef50_V5WXJ2 Alpha beta hydrolase 0.000338835264902 0.00125887495664 3.71431313711e+11 +UniRef50_P0A3M5 Penicillin binding protein 2B 0.0004049340737 0.00444297502824 1.63020668568e+12 +UniRef50_UPI0003B419E6 DNA mismatch repair protein MutS 2.11337006829e-06 6.21057326233e-05 24219652952.5 +UniRef50_L7EXS1 4.58347582821e-05 2.53472539933e-05 -8271056891.34 +UniRef50_UPI00024870CC phosphoribosylaminoimidazole carboxylase ATPase subunit, partial 1.58957070306e-05 1.35198277288e-05 -959171629.454 +UniRef50_H6VX40 GroEL 1.86179806429e-06 2.25988144675e-05 8371787993.78 +UniRef50_Q81MY9 Probable transaldolase 2 0.000163297636635 0.000513624747486 1.41431353648e+11 +UniRef50_P22513 Glyceraldehyde 3 phosphate dehydrogenase, glycosomal 4.83410427503e-05 0.00593583495336 2.37685353939e+12 +UniRef50_A5UKB5 V type ATP synthase subunit E 0.0054689829169 0.00150800019675 -1.59909733085e+12 +UniRef50_UPI0002F6015E hypothetical protein 1.34318779699e-05 2.53515245917e-05 4812107611.73 +UniRef50_W5XGC5 Cation exchanger, putative 0.000148857450797 0.000153256531817 1775962990.57 +UniRef50_L6Y993 Electron transfer flavoprotein ubiquinone oxidoreductase 2.37677285614e-05 4.51650964392e-05 8638379987.5 +UniRef50_Q60316 Formate dehydrogenase subunit beta 0.00451785636311 0.00133179106264 -1.28625365922e+12 +UniRef50_R6G0X7 Rubrerythrin 0.000231113870722 0.000663082457162 1.74391019196e+11 +UniRef50_V8G1N6 Transcriptional regulator 0.000278245200628 0.000413030356916 54414421593.3 +UniRef50_A0A023UJB1 Type F conjugative transfer system protein TraW 7.68470659158e-05 1.94102586855e-05 -23187943907.8 +UniRef50_Q9K1P6 Efem EfeO family lipoprotein NMB0035 0.00208313352415 0.00568878830717 1.45564708226e+12 +UniRef50_A4SHC0 ADP L glycero D manno heptose 6 epimerase 0.00245043138879 0.000557370735232 -7.64251816309e+11 +UniRef50_UPI00036EB160 hypothetical protein 2.7038648977e-05 2.60091641931e-05 -415615640.459 +UniRef50_UPI000476D9A7 hypothetical protein 3.15301630974e-06 1.00573701916e-05 2787372388.06 +UniRef50_F8HEJ4 Pts system, trehalose specific iibc component 0.000511452773432 0.00266625324643 8.69919393325e+11 +UniRef50_G4PGT5 Pirin 7.18521550115e-06 1.19266849614e-05 1914189405.48 +UniRef50_S4XAN4 Cobalamin biosynthesis like protein 0.0228222197272 0.00975569824653 -5.27511506601e+12 +UniRef50_UPI0003B3E06E alcohol dehydrogenase 5.31632929185e-06 9.6094338663e-06 1733178999.02 +UniRef50_Q6DB87 Ribose import ATP binding protein RbsA 3.20784919178e-05 1.76700566509e-05 -5816862128.63 +UniRef50_Q4UNK0 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.65657941189e-05 2.08575002644e-05 1732614436.1 +UniRef50_UPI00038035A6 hypothetical protein 1.92438974087e-06 2.05054057921e-06 50928641.4827 +UniRef50_UPI00036EABAC hypothetical protein 4.85183077887e-05 1.92274578163e-05 -11825075573.0 +UniRef50_G2QJ48 8.29757207833e-06 3.49134073358e-06 -1940334572.97 +UniRef50_Q5HKG5 Drug transporter, putative 0.0104188732573 0.00431732254809 -2.46327089576e+12 +UniRef50_Q89EZ8 Outer membrane lipoprotein 0.013056144916 0.00651806616689 -2.63950262226e+12 +UniRef50_Q5HKF6 Extracellular cysteine protease 0.020511466984 0.00323062289731 -6.9764888176e+12 +UniRef50_A6LXP0 Multicopper oxidase, type 3 0.000127816926252 0.000211696562859 33863238617.1 +UniRef50_Q3JMW6 Phenol hydroxylase, putative 6.4951472281e-05 7.20022784698e-06 -23314886065.5 +UniRef50_E0RTD9 ATP dependent 6 phosphofructokinase 7.52266160023e-06 0.00822220835326 3.31636941925e+12 +UniRef50_P80668 Phenylacetaldehyde dehydrogenase 0.00297000694387 0.00109678376115 -7.56243185897e+11 +UniRef50_UPI0004673888 acyl transferase 0.00013714820517 1.56669803885e-05 -49043461186.4 +UniRef50_Q2S6J2 Uridylate kinase 0.000259960437622 0.00976978260282 3.83923190673e+12 +UniRef50_UPI00041D7A97 hypothetical protein 2.2624251643e-05 1.14782333498e-05 -4499784361.99 +UniRef50_P00936 Adenylate cyclase 0.000951323161686 7.07063140959e-05 -3.55515827756e+11 +UniRef50_Q11ID5 Hemin import ATP binding protein HmuV 1.17827522955e-05 0.00134519591855 5.38315258035e+11 +UniRef50_B7UZ76 TadG 0.00120557254603 0.000106038314257 -4.43895462168e+11 +UniRef50_A5UNR9 0.000328248685954 0.000533704888912 82945190365.3 +UniRef50_Q3HKE6 TonB dependent receptor protein 0.0127815967563 0.00276460436609 -4.04398275024e+12 +UniRef50_M3AAW3 7.38719942778e-05 2.73444576467e-05 -18783737495.1 +UniRef50_UPI0003B55AAB GntR family transcriptional regulator 1.93522666488e-05 1.59758707413e-05 -1363092460.89 +UniRef50_O29406 Serine hydroxymethyltransferase 0.00278474687837 0.00104012522049 -7.04325172201e+11 +UniRef50_UPI00028943C6 transposase Tn3 6.99176911057e-06 0.000528512625202 2.10544369385e+11 +UniRef50_B2V085 Pyruvate kinase 0.000845953828843 0.00220541622381 5.48831651329e+11 +UniRef50_UPI000465D378 transposase, partial 0.000123925235991 0.000424177955472 1.2121570737e+11 +UniRef50_J7R4E7 0.00321652300828 0.00537204854973 8.70212112356e+11 +UniRef50_W8EY20 3.33270007001e-05 2.72608974897e-05 -2448960305.5 +UniRef50_A0A037YSW4 9.4391746441e-05 6.05501271725e-05 -13662276982.1 +UniRef50_UPI000371DAEA hypothetical protein, partial 8.20457134599e-06 2.82703045944e-05 8100782746.62 +UniRef50_B9JXV9 Folylpolyglutamate synthase 0.00145318338233 0.000490749768476 -3.88546260301e+11 +UniRef50_D3E3E5 0.000818351807542 0.00163870332492 3.31185974411e+11 +UniRef50_UPI0003749DD6 hypothetical protein, partial 2.39995742348e-05 5.89133456386e-05 14095117955.9 +UniRef50_W5L6H6 9.63794014105e-05 0.000161270261368 26197236465.2 +UniRef50_D7FUW4 4.93466257772e-05 1.99810742541e-05 -11855233505.7 +UniRef50_C1KVY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.0131713318436 0.00502067804079 -3.29051895996e+12 +UniRef50_F0VXH5 ABC transporter permease protein 0.00435676651663 0.00150052326942 -1.15310044894e+12 +UniRef50_UPI000380067C hypothetical protein, partial 1.16905077393e-05 1.28448538401e-05 466023686.313 +UniRef50_Q6G6X4 Isopentenyl diphosphate delta isomerase 0.0262882716244 0.00565924812996 -8.32818993127e+12 +UniRef50_Q8PYF8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00148878526022 0.000407265126568 -4.36622949699e+11 +UniRef50_P73098 Chaperone protein dnaK3 0.0121213094143 0.00324177494165 -3.58477703075e+12 +UniRef50_UPI000255C532 hypothetical protein 1.46143178747e-05 2.10441132174e-05 2595787282.31 +UniRef50_P46133 p aminobenzoyl glutamate transport protein 0.00262515738265 0.000383339004761 -9.05049589359e+11 +UniRef50_K8EYP9 0.00577351635868 0.00501398776238 -3.0663101479e+11 +UniRef50_X1D6B5 Marine sediment metagenome DNA, contig 7.3552518905e-06 0.00197887404921 7.95926331734e+11 +UniRef50_M4ZDD2 Polysaccharide ABC exporter membrane spanning protein 0.00271439481466 0.000708273885348 -8.09895637035e+11 +UniRef50_X7E7Z7 0.000149421981184 0.000110774196888 -15602584781.9 +UniRef50_J9YQL3 DedA family protein 0.0073083428704 0.00148428718383 -2.35124274987e+12 +UniRef50_A1A1X1 Acetylglutamate kinase 0.000450072501766 0.00872876985413 3.34221171219e+12 +UniRef50_UPI0003C18C5D 9.76973528437e-06 4.72483694378e-05 15130584522.3 +UniRef50_J8RTD6 8.29820635671e-06 1.55852217401e-05 2941857532.01 +UniRef50_W1BD39 9.13208205257e-06 0.000158910072683 60467212800.0 +UniRef50_I0C802 0.00483736697966 0.00199727011273 -1.14658195709e+12 +UniRef50_UPI00034D0909 Organic hydroperoxide resistance protein 8.36906584845e-06 4.47397394563e-05 14683287253.8 +UniRef50_UPI000373CB86 hypothetical protein 1.03472334475e-05 1.33182347236e-05 1199429673.45 +UniRef50_UPI0003B6D6B9 DNA invertase 3.26401553855e-05 1.69514851748e-05 -6333708685.69 +UniRef50_A4IK10 7.81984225036e-06 1.41507299935e-05 2555857070.63 +UniRef50_P0A9F0 Regulatory protein YeiL 0.0013189593164 0.000266852444456 -4.24748455005e+11 +UniRef50_UPI00046AC99E hypothetical protein 9.41843317363e-05 6.31348604636e-05 -12535052572.6 +UniRef50_UPI000462BAFD PREDICTED 9.3426033839e-06 4.04106537376e-06 -2140295951.88 +UniRef50_G0DS62 Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase 0.000226201894437 0.00583473427998 2.26423334847e+12 +UniRef50_F2CUB3 Predicted protein 0.000234398358574 0.000280773100505 18722052399.6 +UniRef50_UPI000468D55C glucose methanol choline oxidoreductase 8.40877830686e-06 1.15299299743e-05 1260047228.98 +UniRef50_A1AZK3 Peptidoglycan glycosyltransferase 0.00226108806212 0.000535229110448 -6.9675043746e+11 +UniRef50_A3PKF9 0.00028079754916 0.000496198594142 86960045127.3 +UniRef50_Q9ZDI2 Protoheme IX farnesyltransferase 9.28385601708e-06 3.21221116034e-05 9220084037.1 +UniRef50_P58313 UTP glucose 1 phosphate uridylyltransferase 0.00753888765713 0.00488141294869 -1.07285515068e+12 +UniRef50_P66798 Response regulator UvrY 0.00201572423268 0.000275996920751 -7.02349264681e+11 +UniRef50_C6DY30 Poly A polymerase family protein 0.000508920101799 0.00187723084725 5.52403838999e+11 +UniRef50_M4HS21 Transposase, IS4 family 2.16911797637e-05 0.0334677002086 1.35025642736e+13 +UniRef50_P00805 L asparaginase 2 0.00242332982599 0.00478877939887 9.54961019902e+11 +UniRef50_P40882 0.0027546653934 6.45695094487e-05 -1.08602471954e+12 +UniRef50_Q7V024 Fumarate hydratase class II 6.40377630095e-06 4.35046174585e-06 -828948282.897 +UniRef50_Q7UX42 Glutamine tRNA ligase 0.000176347760566 0.00517505650465 2.01804006104e+12 +UniRef50_W3SJV3 0.000389160813245 0.00133475535477 3.81748120164e+11 +UniRef50_K7SGJ6 Tat pathway signal sequence 0.000470329394297 0.00493925375816 1.80415960556e+12 +UniRef50_UPI0003798A30 hypothetical protein 0.000467957837425 0.00165598152446 4.79619741144e+11 +UniRef50_UPI000426481D hypothetical protein 2.08575276943e-05 2.8152299193e-05 2944988770.94 +UniRef50_G7LXY6 Signal peptidase I 0.000222050581675 0.000738015388428 2.08301324086e+11 +UniRef50_A5UM93 Adhesin like protein 0.00377013147539 0.000712167491182 -1.23453758586e+12 +UniRef50_H1SKR8 Site specific recombinase, phage integrase family 0.000214491047391 0.000341411665556 51239411044.3 +UniRef50_Q4A4A3 0.000216513838793 0.00113583348153 3.71140621094e+11 +UniRef50_A5W7U2 Protein SprT 0.000690731139244 0.000355803259269 -1.35214495173e+11 +UniRef50_Q65G88 Isocitrate dehydrogenase [NADP] 0.0101495983207 0.00280601678391 -2.96469398228e+12 +UniRef50_Q9K1H0 Outer membrane protein assembly factor BamA 5.89208099186e-05 0.00363931853555 1.44545049826e+12 +UniRef50_Q8CT38 0.0149898852132 0.00403772345519 -4.42152209984e+12 +UniRef50_P42910 N acetylgalactosamine permease IIC component 1 0.00323521971087 0.001595649159 -6.61914751583e+11 +UniRef50_Q48E25 GAF domain GGDEF domain EAL domain protein 0.000616417066886 0.000702022361005 34559907730.9 +UniRef50_UPI0003634A2A hypothetical protein 5.37824942765e-05 3.5503205821e-05 -7379573061.58 +UniRef50_UPI000328E1F2 PREDICTED 7.14830438815e-05 0.000119720037426 19473866228.4 +UniRef50_E8SI06 Hydroxyacylglutathione hydrolase 0.0155133185695 0.00780660633664 -3.1112943004e+12 +UniRef50_UPI0003B3DE75 ketol acid reductoisomerase 3.86458515229e-06 1.9578964939e-05 6344087957.02 +UniRef50_Q2FER8 Energy coupling factor transporter ATP binding protein EcfA2 0.00988050516368 0.00372165482025 -2.48640346124e+12 +UniRef50_UPI00046AC673 hypothetical protein 3.19451029893e-05 2.5288522783e-05 -2687343114.71 +UniRef50_B7UX08 0.000558601020844 0.000519064849397 -15961237576.5 +UniRef50_UPI000381E035 hypothetical protein 3.98627127821e-05 2.96778193902e-05 -4111766445.01 +UniRef50_I0EI71 ATP dependent helicase 0.000356352377494 0.00287833307069 1.01815455403e+12 +UniRef50_Q3J6C1 Sensor histidine kinase RegB 0.00410677823804 0.00171470316757 -9.65710060011e+11 +UniRef50_Q1RF65 0.000279825468181 0.000472506728318 77787789182.3 +UniRef50_F0KIU0 Sel1 like repeat protein 0.000401580839207 0.0062948791084 2.37919683017e+12 +UniRef50_UPI000360580F methyltransferase, partial 3.92985179878e-05 3.79056335245e-05 -562324550.449 +UniRef50_L2YYW7 6.41885005032e-05 0.000447449553334 1.5472719017e+11 +UniRef50_P21369 Pyrazinamidase nicotinamidase 0.00645797089485 0.00110743764448 -2.1600759316e+12 +UniRef50_A5UKM8 0.00433655915246 0.000669429755475 -1.4804651383e+12 +UniRef50_UPI00045434B5 PREDICTED 7.04386749506e-05 0.000106882685776 14712894388.5 +UniRef50_B9KRZ3 0.010544480628 0.00167482958151 -3.58078697033e+12 +UniRef50_D0K3I1 Phage amidase 0.0135554250523 0.00135285320894 -4.92632799558e+12 +UniRef50_A6LXA4 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000581388210392 0.000910262242916 1.32770482668e+11 +UniRef50_I3XDK3 2.65798142895e-05 1.70234409092e-05 -3858025203.52 +UniRef50_X2H5V8 Glutamate cysteine ligase , divergent, of Alpha and Beta proteobacteria type 0.000171050941748 0.00324486862164 1.24093791736e+12 +UniRef50_I0ERW5 Integral membrane protein 9.30532429341e-05 0.00284140224443 1.10954221794e+12 +UniRef50_UPI0002559D47 DNA primase 3.62662900751e-06 4.50889156264e-06 356180220.085 +UniRef50_P08075 Glucose 1 phosphate thymidylyltransferase 8.0797394285e-06 1.54741502804e-05 2985214400.54 +UniRef50_UPI0004782C1A ABC transporter permease 6.55789931169e-06 1.15804945317e-05 2027683324.49 +UniRef50_D9Q0N2 Membrane protein 9.28666313124e-06 8.25839684161e-05 29591021602.6 +UniRef50_A0A059IJL8 0.000223246575787 0.000142418962609 -32631099306.3 +UniRef50_U1ASZ8 Diguanylate cyclase domain protein 0.00125450157067 7.11892419069e-05 -4.77717707996e+11 +UniRef50_K8R3V6 6 pyruvoyl tetrahydropterin synthase 0.00031569509448 0.000144464724426 -69127801623.7 +UniRef50_O05410 Probable metal binding protein YrpE 0.00986766075661 0.000558959063463 -3.75803710414e+12 +UniRef50_Q30ST8 Two component transcriptional regulator, winged helix family 0.000382587150866 0.0022926005332 7.71095840947e+11 +UniRef50_UPI00036A4579 hypothetical protein 2.79302367466e-06 1.03899798919e-05 3066984450.04 +UniRef50_G8VC64 0.00181560304853 0.00443145692385 1.0560523096e+12 +UniRef50_UPI0002556399 urea ABC transporter ATP binding protein UrtE, partial 0.000118686716787 4.8000356259e-05 -28536951164.3 +UniRef50_UPI000456060D hypothetical protein PFL1_06357 7.08431227327e-06 1.77543534046e-05 4307626540.83 +UniRef50_UPI0003B73D80 Fis family transcriptional regulator 3.70642052476e-05 4.23267588288e-05 2124557459.52 +UniRef50_C2QZX3 6.53760003662e-06 0.000883452257164 3.54021208035e+11 +UniRef50_C5N0K5 Isochorismatase family protein 0.00654156399139 0.000322750497486 -2.51061132091e+12 +UniRef50_UPI00034B4110 hypothetical protein 5.89790302282e-05 1.77037172624e-05 -16663350349.3 +UniRef50_J9JHU2 0.000222050581675 0.000279775012387 23304061036.9 +UniRef50_A0A031K6Z2 3.3536644218e-05 1.96971676237e-05 -5587166530.59 +UniRef50_UPI00046C5540 hypothetical protein 0.000252318230565 4.11945804426e-05 -85233208332.8 +UniRef50_UPI000369A903 hypothetical protein 0.00878701524772 0.00323669294599 -2.24073322332e+12 +UniRef50_UPI00036FC1C6 hypothetical protein 1.5084749634e-05 0.000161817372704 59237760545.1 +UniRef50_O27842 Conserved protein 0.00298133603751 0.00256210193584 -1.69249951425e+11 +UniRef50_UPI000466B8EE UDP pyrophosphate phosphatase 9.41724120953e-05 1.45326671992e-05 -32151542304.1 +UniRef50_M2ADJ2 7.38261381104e-05 2.49866823428e-05 -19717087620.9 +UniRef50_UPI00016A5286 hypothetical protein 0.000371978780981 0.000780207725342 1.64807034371e+11 +UniRef50_P33135 Flagellar biosynthetic protein FliR 0.00352392990211 0.000645162854675 -1.16219358349e+12 +UniRef50_UPI00016C427F glutamine ABC transporter ATP binding protein 8.4316884434e-05 2.68829707144e-05 -23186775762.0 +UniRef50_F3U500 ABC branched chain amino acid transporter, inner membrane subunit 0.00451293510437 0.00228849857164 -8.98032325169e+11 +UniRef50_H1V624 1.01087174494e-05 7.30431809063e-06 -1132170434.99 +UniRef50_UPI00046F0C1E cold shock protein, partial 4.50098745969e-05 2.05530696425e-05 -9873512278.84 +UniRef50_UPI000395A7E4 membrane protein 8.57343519813e-05 3.26783351839e-05 -21419365051.7 +UniRef50_A4WQX9 0.0060728156165 0.000877435153289 -2.09743884749e+12 +UniRef50_G0DVB4 LacI family transcription regulator 0.000364840264139 0.00407507899632 1.49786890593e+12 +UniRef50_U6HG59 Iron sulfur cluster assembly 2 6.73458884178e-05 0.000135577186281 27545812239.6 +UniRef50_Q8E0W8 Prophage LambdaSa1, minor structural protein, putative 0.000254306725739 0.000192046958903 -25135031884.9 +UniRef50_F0YEK3 9.00407302426e-06 9.48317474274e-05 34649685380.5 +UniRef50_UPI000359DA59 PREDICTED 4.6136500439e-05 1.18354229565e-05 -13847765901.2 +UniRef50_UPI0003683526 hypothetical protein 2.82596257356e-06 4.24280753753e-06 571997698.598 +UniRef50_Q9Z615 Ferredoxin NADP reductase 0.00420155795097 3.59526697015e-05 -1.68170596977e+12 +UniRef50_UPI00034F34D0 PREDICTED 6.60636838809e-06 3.04342928579e-06 -1438402237.78 +UniRef50_F8H2S7 Long chain fatty acid transporter, putative 0.000644370723791 1.00578522725e-05 -2.56079890126e+11 +UniRef50_D8TNQ9 1.83703742462e-05 1.77726164335e-05 -241322164.3 +UniRef50_P72524 DNA gyrase subunit A 0.00514208190287 0.00774654078998 1.05145201303e+12 +UniRef50_D9PWJ1 Phosphomethylpyrimidine kinase 0.00226549864282 0.00070736439591 -6.29037915935e+11 +UniRef50_UPI00016AD9D7 hypothetical protein 5.16092917995e-05 0.00013771067013 34760183014.8 +UniRef50_J3P8W6 0.000190649489319 0.000298299702217 43459711963.6 +UniRef50_Q9KLP4 Glucose 1 phosphate adenylyltransferase 2 9.29747761786e-06 2.04213752841e-05 4490853993.42 +UniRef50_G4LJ72 0.000566124859295 0.000554583416193 -4659422209.71 +UniRef50_X6F3D8 7.89961489974e-06 0.000324819849179 1.27944587627e+11 +UniRef50_E8TAD2 ABC transporter related protein 0.00194314002282 0.00080832760716 -4.58137697916e+11 +UniRef50_UPI0003745162 hypothetical protein 3.06306989581e-06 3.13168062666e-05 11406380085.2 +UniRef50_UPI0004171916 hypothetical protein 3.94152150406e-06 3.1698361167e-06 -311538860.522 +UniRef50_J9FU21 Ferredoxin NADP reductase subunit alpha 0.00013163457348 8.4734520254e-05 -18934127015.7 +UniRef50_A6VPF4 30S ribosomal protein S9 0.00202985976468 0.00596656554769 1.58929643341e+12 +UniRef50_Q9I0Q0 2 heptyl 3 hydroxy 4 quinolone synthase 0.000749681006178 0.000349199151072 -1.61679439371e+11 +UniRef50_Q56213 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.52501200813e-05 4.89048813642e-05 13586840120.3 +UniRef50_UPI00041994DB hypothetical protein 2.76898403701e-05 4.62117644264e-05 7477528031.1 +UniRef50_UPI0001B417EE 50S ribosomal protein L6 2.88366635093e-05 0.000328043211159 1.20793354964e+11 +UniRef50_UPI00037C13D8 hypothetical protein 3.89206032654e-06 0.000219191881322 86919179761.6 +UniRef50_UPI00025597AC 8 amino 7 oxononanoate synthase 5.15177184737e-06 4.79048800729e-06 -145854719.692 +UniRef50_Q8TVF7 Transcription factor homologous to NACalpha BTF3 fused to metal binding domain 0.000963171708067 0.000757900550379 -82870485319.0 +UniRef50_Q8TX94 3 isopropylmalate dehydratase small subunit 1 0.00112773213166 0.000480844798537 -2.61156354582e+11 +UniRef50_W1DGA8 0.00038794800939 2.65983455961e-05 -1.45881293533e+11 +UniRef50_Q7WTJ2 Phenol hydroxylase P5 protein 1.45745340375e-05 2.15862597415e-05 2830719710.25 +UniRef50_UPI000375778F hypothetical protein, partial 0.000316913422896 3.42746345561e-05 -1.14104747221e+11 +UniRef50_G7UA75 Periplasmic solute binding family protein 0.000321792500054 0.00700168733252 2.6967555154e+12 +UniRef50_P37171 Hypoxanthine guanine phosphoribosyltransferase 0.0120676538095 0.00309881508539 -3.62083025295e+12 +UniRef50_Q6A5B2 Ribosomal RNA small subunit methyltransferase G 0.000178903312256 0.0104525814307 4.14760992861e+12 +UniRef50_W5X3P5 Ammonium transporter 1.44944940828e-05 0.000140346177045 50807868785.6 +UniRef50_Q2YSG3 0.000128960183316 0.000750357954763 2.50865905741e+11 +UniRef50_Q59337 Catalase 0.000204162577277 0.050591180255 2.03418573547e+13 +UniRef50_UPI000371F98A 50S ribosomal protein L13 0.000987008417249 0.000143456352271 -3.4055232018e+11 +UniRef50_Q9RWN6 Cell division protein FtsA 0.000169326811797 0.0197204112317 7.8930126991e+12 +UniRef50_U5MV88 Protein tyrosine phosphatase 0.000256288431409 0.000972152997477 2.89003309968e+11 +UniRef50_B0V4J6 Methylenetetrahydrofolate reductase 0.000167399551592 0.00582692513909 2.28481992986e+12 +UniRef50_O34720 Probable oxidoreductase YjgC 0.0140711568424 0.00564239172051 -3.40279591229e+12 +UniRef50_D5ZK04 Predicted protein 6.14341677533e-05 2.17615083999e-05 -16016339419.2 +UniRef50_P16691 Protein PhnO 0.000490241543964 0.000608900423076 47904045605.7 +UniRef50_UPI0003665D5A hypothetical protein 1.18073293852e-05 1.81279223507e-05 2551700942.57 +UniRef50_B9KW91 Serine acetyltransferase 0.00554435751003 0.00113251152756 -1.78111636256e+12 +UniRef50_UPI0004541D3D PREDICTED 1.88462957993e-05 2.50569861347e-05 2507331902.14 +UniRef50_X2LXG1 Phosphatase 3.62322127841e-05 3.14894002818e-05 -1914731608.03 +UniRef50_UPI0002BCA4B1 0.000108777066287 0.000238713898062 52457093491.8 +UniRef50_UPI000479C59F hypothetical protein 4.26367621235e-05 1.61614257814e-05 -10688418170.2 +UniRef50_O83369 FKBP type peptidyl prolyl cis trans isomerase SlyD 1.84232763407e-05 1.93391368429e-05 369744123.61 +UniRef50_F0WVE4 AlNc14C294G10284 protein 5.4765738381e-06 1.69636527251e-05 4637474708.99 +UniRef50_X0WP46 Marine sediment metagenome DNA, contig 2.43431563422e-05 1.25775526967e-05 -4749918571.88 +UniRef50_R5WGC0 0.000169602425034 0.00275864530679 1.0452283825e+12 +UniRef50_UPI000371C267 hypothetical protein, partial 1.0381607114e-05 8.12088215242e-06 -912682409.205 +UniRef50_Q47944 L sorbose 1 dehydrogenase 2.50037787432e-05 2.28359993492e-05 -875159143.002 +UniRef50_UPI0003AED982 PREDICTED 5.45279938247e-05 5.13727159297e-05 -1273824405.83 +UniRef50_UPI000474FA07 hypothetical protein 2.11696464163e-05 1.53833424135e-05 -2336001931.87 +UniRef50_X5EFM7 Glycosyl transferase 0.000701107466431 0.00144041866408 2.9846900286e+11 +UniRef50_A0A025XI46 Membrane protein 0.00141569092926 0.000336863161818 -4.35536008421e+11 +UniRef50_N6UVZ9 5.01738446473e-06 2.05984372875e-06 -1193995488.22 +UniRef50_A5WEH0 Sulfate adenylyltransferase 1.80404960693e-05 2.36530338858e-05 2265850390.11 +UniRef50_Q1C7J0 Arabinose import ATP binding protein AraG 0.00454624986954 0.000768795893013 -1.5250045249e+12 +UniRef50_Q2H308 0.000126271640598 6.32754476704e-05 -25432336135.1 +UniRef50_UPI0004643586 hypothetical protein 0.000357033770159 1.8103914591e-05 -1.3683014183e+11 +UniRef50_A6LYY5 Helix turn helix domain containing protein, AraC type 0.000889336037005 0.000607306927345 -1.13858612456e+11 +UniRef50_Q8ZH39 D methionine transport system permease protein MetI 0.00410931176021 0.0112691967879 2.89053344735e+12 +UniRef50_W6L3I5 Genomic scaffold, scaffold_5 2.0578314192e-05 1.1188885639e-05 -3790627528.09 +UniRef50_Q4L6W7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0182527296794 0.00416956805143 -5.68554516905e+12 +UniRef50_Q83NS5 Phosphoglucosamine mutase 5.17948945823e-06 7.77930543201e-06 1049577611.94 +UniRef50_P18358 Transposon Tn552 resolvase 0.182991894827 0.0377164489243 -5.86494802412e+13 +UniRef50_D8JFF2 Major Facilitator Superfamily protein 0.000238123637387 0.00789717693536 3.09205380354e+12 +UniRef50_C0QDY4 3 isopropylmalate dehydratase small subunit 1.88739547375e-05 1.46837164313e-05 -1691650624.22 +UniRef50_Q1J087 Inositol monophosphatase 0.00011268238473 0.00910486947061 3.63025627311e+12 +UniRef50_D4GG42 0.00188742994426 0.000942500122969 -3.81479764448e+11 +UniRef50_A5GQQ3 Permease of the major facilitator superfamily 1.97703257604e-05 4.18848337991e-06 -6290580979.72 +UniRef50_Q3ZXS0 NADH quinone oxidoreductase subunit B 1.24545126698e-05 0.000160091853733 59603006301.0 +UniRef50_Q8XSL7 Remnant of isrso5 transposase protein 0.018967382822 0.0035621660227 -6.21927506515e+12 +UniRef50_UPI00045609D0 hypothetical protein PFL1_01311 4.33995645309e-05 0.000189495219492 58980608703.0 +UniRef50_UPI00047256F0 ABC transporter ATP binding protein 8.16840336776e-06 4.22491927799e-05 13758832904.0 +UniRef50_P71019 Malonyl CoA acyl carrier protein transacylase 4.25584042199e-06 0.00178171873192 7.17583581221e+11 +UniRef50_Q8XCU1 UDP 2,3 diacylglucosamine hydrolase 0.0033913216472 0.000780095898344 -1.05418387816e+12 +UniRef50_C0ME26 Adenylate kinase 0.0047492331881 0.00852450735492 1.52412450897e+12 +UniRef50_UPI0004668B02 hypothetical protein 0.000213568450271 5.32188704928e-05 -64735093067.0 +UniRef50_W5ASR4 0.000214480675479 8.22925987192e-05 -53365948718.1 +UniRef50_UPI00040BD6B1 spermidine putrescine import ATP binding protein PotA 0.000121230432105 5.88027187665e-05 -25202833948.9 +UniRef50_A6M079 NADPH dependent FMN reductase 0.000145935304967 0.00225847941097 8.52859979424e+11 +UniRef50_K9EK44 ATPase involved in chromosome partitioning 9.37334282295e-06 0.000774729282488 3.08983584816e+11 +UniRef50_Q5M456 0.00495015616552 0.00214666494895 -1.13180380684e+12 +UniRef50_UPI000380AA86 hypothetical protein 7.07911062204e-06 0.000158245676685 61027797742.0 +UniRef50_A2SM89 PKHD type hydroxylase Mpe_A3725 3.6361193586e-05 3.87634980646e-05 969839797.602 +UniRef50_UPI00037B8173 hypothetical protein 7.97786649952e-06 8.56589329369e-05 31360799774.7 +UniRef50_U2NH71 MaoC domain containing protein dehydratase 3.40094179343e-05 2.03048025881e-05 -5532721389.8 +UniRef50_J0P6S9 0.0066412792172 0.000545200071126 -2.46106195857e+12 +UniRef50_Q3JN62 Colicin V processing peptidase 0.000257882340289 0.0125804267854 4.97476240711e+12 +UniRef50_A0A024JLS1 Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 1.04926977865e-06 2.78766826282e-07 -311061497.005 +UniRef50_V5PVU9 ABC transporter ATP binding protein 0.00144474807409 0.000450865198773 -4.0124271308e+11 +UniRef50_D0ZY51 Serine endoprotease DegS 0.00440595210465 0.00171130634038 -1.08786156206e+12 +UniRef50_A3PGU0 Lytic transglycosylase, catalytic 0.00944313632268 0.00184161125264 -3.06882895198e+12 +UniRef50_UPI00034D4180 hypothetical protein 1.46630338496e-05 1.44213868324e-06 -5337437617.3 +UniRef50_UPI0003A7AC6C TetR family transcriptional regulator 1.00978521947e-05 2.14542936622e-05 4584734779.64 +UniRef50_UPI00036F4D48 hypothetical protein, partial 3.59600682995e-05 0.00119997942833 4.69928899768e+11 +UniRef50_V6VI70 Membrane protein 1.654097799e-06 2.77579812598e-06 452844186.813 +UniRef50_D5WEA6 Major facilitator superfamily MFS_1 8.88202326721e-05 0.00472029775061 1.86978430861e+12 +UniRef50_UPI00042A98EF 0.000158191760126 0.000133068886191 -10142412499.9 +UniRef50_I0C7K3 Lantibiotic transport ATP binding protein 0.027815223462 0.00898827491848 -7.60067015965e+12 +UniRef50_Q6F8J3 Glutamyl tRNA reductase 8.84042128456e-05 0.0108766803581 4.35535946689e+12 +UniRef50_Q00750 Multiple sugar binding transport system permease protein MsmF 0.00399315911685 0.00305592942163 -3.78371129062e+11 +UniRef50_A9CJS1 ABC transporter, substrate binding protein 0.0085308855927 0.00106988607869 -3.01209706057e+12 +UniRef50_F2AEH0 0.000476191270254 0.000100123917959 -1.51823004987e+11 +UniRef50_G2QPJ3 4.56485111306e-06 7.00805355466e-06 986350807.139 +UniRef50_UPI00037BF3DC hypothetical protein 0.000102784028504 6.02186436742e-05 -17184168191.8 +UniRef50_Q3IWE5 Sulfotransferase domain protein 0.00244391640739 0.00023625336415 -8.91260661628e+11 +UniRef50_D3QDZ4 Na+ H+ antiporter like protein 0.0199525397091 0.00518556963026 -5.96160703191e+12 +UniRef50_E3D365 5.48138488079e-05 3.09336172134e-05 -9640742538.09 +UniRef50_V6F2D8 Transposase 1.950931464e-05 2.17959754208e-05 923153017.692 +UniRef50_B8EL88 Regulatory protein ArsR 0.00231408567858 0.00655301302039 1.71130698538e+12 +UniRef50_P30690 Major outer membrane protein P.IB 0.000119963767644 0.00235910143414 9.03967353275e+11 +UniRef50_D5HFR4 Alpha galactosidase 0.00100469747645 0.00121915752403 86580152928.8 +UniRef50_F7QLE1 0.00613943741257 0.000864898339608 -2.12939614963e+12 +UniRef50_Q4FPV2 Na translocating NADH quinone reductase subunit F 0.000604007731951 0.0027064981941 8.48801200029e+11 +UniRef50_UPI00035E03F5 DNA glycosylase 4.24754714919e-05 4.08924404982e-05 -639089038.131 +UniRef50_A0A021XF37 Transposase 0.000140970128412 7.98291143459e-05 -24683377663.1 +UniRef50_UPI00036477DE hypothetical protein 8.47553531107e-06 1.36182166177e-05 2076163551.28 +UniRef50_P0ABE7 Soluble cytochrome b562 0.000352790643786 0.00186515813808 6.10561316281e+11 +UniRef50_D6XQD7 Outer membrane protein BabA 6.0591651505e-05 0.00335047915388 1.32816795617e+12 +UniRef50_UPI00042B81D2 Ribosomal protein L1p L10e family, putative isoform 1 2.08226093155e-05 8.05057642927e-05 24094822059.0 +UniRef50_UPI00046F39AE hypothetical protein, partial 9.81476212908e-05 0.000225728386352 51505920447.2 +UniRef50_UPI00037C645E hypothetical protein 8.79240811422e-06 6.16533241813e-06 -1060582696.36 +UniRef50_P58120 Multi drug resistance efflux pump PmrA homolog 9.80483087926e-05 0.000989601544539 3.59930981859e+11 +UniRef50_UPI0003B4A46E hypothetical protein 1.38133041726e-06 2.94196760298e-06 630048383.047 +UniRef50_U2Z407 0.000148018633632 4.76696931327e-05 -40512098699.4 +UniRef50_P0ACV7 Protein MpaA 0.0028572638114 0.000488126785439 -9.56449689961e+11 +UniRef50_B6IU75 2.95996073721e-05 7.30050021087e-05 17523290499.3 +UniRef50_D1B330 5.27760038451e-06 8.49621022335e-06 1299392288.72 +UniRef50_I7DDI7 Sec independent protein translocase protein TatC 0.0122316688597 0.00217311360683 -4.06076218795e+12 +UniRef50_B2TLC0 Aminotransferase, class V 0.000226031762367 0.000653282952549 1.72486548438e+11 +UniRef50_Q7MLH6 Phosphoserine aminotransferase 0.00469658748439 0.010312165551 2.26707777638e+12 +UniRef50_G0G0R8 Recombinase 5.03716733898e-06 0.000151508885799 59132430152.4 +UniRef50_UPI0003B50543 translation initiation factor IF 3 0.000140270457489 0.000228310012369 35542648671.9 +UniRef50_B1GZA3 Adenylate kinase 7.90642272743e-06 1.63533629934e-05 3410133440.99 +UniRef50_W1U046 Alanine dehydrogenase 3.13465260238e-05 0.000661723753502 2.54491022331e+11 +UniRef50_J2E9X6 0.000325261373385 3.0317943244e-05 -1.19072282111e+11 +UniRef50_A9LZ58 0.000660102427422 0.00531723770366 1.88014266049e+12 +UniRef50_UPI00035F961E hypothetical protein 4.09927329857e-05 0.000182341356622 57064173904.5 +UniRef50_UPI000473026F hypothetical protein, partial 6.55919410637e-05 4.23439308988e-05 -9385506988.74 +UniRef50_G8R9L3 Branched chain amino acid transport systemcarrier protein 0.00946418679202 0.00197177645069 -3.02477799701e+12 +UniRef50_UPI0003EBE04C PREDICTED 2.02939351524e-05 2.09057957794e-05 247015643.494 +UniRef50_B0VCQ6 Deoxyribodipyrimidine photolyase , FAD binding 0.0001623085577 0.00582569878535 2.28638013252e+12 +UniRef50_UPI0003C1772B PREDICTED 1.13998709749e-05 3.2764717216e-05 8625250603.68 +UniRef50_Q5HNU6 UPF0271 protein SERP1168 0.0227324314793 0.0044201665478 -7.39288606961e+12 +UniRef50_B0RNQ5 Nicotinamide phosphoribosyltransferase 0.000172720188924 0.0479323900871 1.9281164815e+13 +UniRef50_C1KVV7 N acetylmuramic acid 6 phosphate etherase 8.21494718634e-06 1.1572859892e-05 1355630565.5 +UniRef50_S9QJ95 Glycine D amino acid oxidase 0.000288165055197 3.79759298035e-05 -1.01004420087e+11 +UniRef50_Q72JJ7 Ribonuclease J 3.53070335027e-05 0.000137639874405 41313023637.3 +UniRef50_P36667 Rhamnosyltransferase WbbL 0.000935596626266 0.000223442652099 -2.87505298483e+11 +UniRef50_I6U2T3 0.00334843794837 0.00037540259135 -1.20025085688e+12 +UniRef50_W4UBR6 L threonine 3 O phosphate decarboxylase 6.06271562253e-06 0.000385726967488 1.53275117482e+11 +UniRef50_E3ZT62 Lipoprotein 9.90432530904e-06 0.0019972707632 8.02324218705e+11 +UniRef50_UPI0003812E06 hypothetical protein 5.67895875678e-05 1.62617379262e-05 -16361590233.0 +UniRef50_B2JIJ5 Malate dehydrogenase (NADP(+)), Phosphate acetyltransferase 0.00289391902837 0.00703727510855 1.67272369427e+12 +UniRef50_UPI00038F56D4 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 2.71607338912e-05 0.000151632961111 50250965574.7 +UniRef50_UPI000465DB23 peptide ABC transporter permease 0.000118103993689 2.08977522207e-05 -39243352535.5 +UniRef50_UPI000475E2DE hypothetical protein, partial 2.92182427977e-06 3.20951566067e-05 11777632257.4 +UniRef50_UPI00047C3548 membrane protein 1.11251869534e-05 1.07147035377e-05 -165717192.116 +UniRef50_B2TJ59 Riboflavin biosynthesis protein RibF 0.000123361434261 0.00160656757126 5.98788518493e+11 +UniRef50_UPI0003B40EDF methylmalonyl CoA mutase 6.26717710786e-05 5.05106605443e-05 -4909589556.3 +UniRef50_Q3J4Q5 Putative Transcriptional regulator 0.000998807067205 0.0104229425363 3.80463913602e+12 +UniRef50_I4L4Y8 ISPa7 like transposase 0.000232472048569 3.50626105846e-05 -79696612600.4 +UniRef50_A5UKX6 0.0011064985217 0.000206997690564 -3.63139523646e+11 +UniRef50_L4FV79 1.53358820744e-05 3.50723518012e-05 7967855022.43 +UniRef50_A5UJS4 Ribonuclease P protein component 3 0.00338966963348 0.000299307471484 -1.24761712781e+12 +UniRef50_D4ZLV9 Thioesterase superfamily 5.77629089963e-06 6.2291042769e-06 182806317.049 +UniRef50_D3E066 Aminotransferase 0.0024753553038 0.000828506976381 -6.64852878881e+11 +UniRef50_Q2FC63 Beta lactamase regulatory protein 0.000636056628392 0.000218497650033 -1.68573683588e+11 +UniRef50_UPI000477F0AC hypothetical protein 5.63440110753e-06 8.41769386891e-06 1123649442.61 +UniRef50_G8UZP3 Dyp type peroxidase family protein 0.013414803489 0.0024215711543 -4.43810279565e+12 +UniRef50_I6T4S9 Cation efflux pump 0.00702501658968 0.00644922367955 -2.32454663593e+11 +UniRef50_K2FDY9 UPF0301 protein ACD_16C00235G0006 3.71019406836e-05 5.79525516267e-05 8417647503.5 +UniRef50_P77183 0.00721455719959 0.00113714854899 -2.45352445044e+12 +UniRef50_Q8Z591 Multiphosphoryl transfer protein 0.00224229482716 0.000836490671637 -5.6754038874e+11 +UniRef50_UPI0003644847 chromosome partitioning protein ParA 1.21326451948e-05 0.000104578082718 37321357561.2 +UniRef50_P24602 Bacterioferritin 9.94732164756e-05 0.000121327517702 8822849587.53 +UniRef50_L1K7Z2 0.000499137783886 0.000877178332262 1.52619608459e+11 +UniRef50_P12425 Glutamine synthetase 0.00044817033512 0.00358146409408 1.26494914033e+12 +UniRef50_N6V491 6.63808890152e-05 0.0001038628506 15131927847.2 +UniRef50_UPI0003B3ECFC hypothetical protein, partial 2.0982846682e-05 2.71775519452e-05 2500878532.34 +UniRef50_UPI00037C5312 hypothetical protein 5.57350946552e-06 1.9490856881e-05 5618603936.7 +UniRef50_UPI00029AA298 heme exporter protein CcmA 3.45454801059e-06 2.68888746682e-05 9460725243.2 +UniRef50_UPI0003B71736 hypothetical protein 9.80327529196e-06 6.93150289315e-06 -1159369758.01 +UniRef50_P83851 Inosine uridine preferring nucleoside hydrolase 5.21857965365e-06 2.04956640618e-05 6167546446.5 +UniRef50_W7W6N9 6.02018788493e-06 1.23933575369e-05 2572926796.09 +UniRef50_Q1AW66 Uridylate kinase 1.65437688647e-05 2.74353229763e-05 4397054049.25 +UniRef50_A7NN67 Thioesterase superfamily protein 1.19920211283e-05 0.00188663725543 7.56817285571e+11 +UniRef50_F8LMW5 Branched chain amino acid ABC uptake transporter substrate binding protein 0.00924786476785 0.00541295254251 -1.54820112503e+12 +UniRef50_UPI0003B44F91 16S rRNA methyltransferase 1.5373923727e-05 7.3861450865e-05 23612132428.3 +UniRef50_UPI00037A1640 hypothetical protein 2.30349759035e-05 7.25454670661e-05 19987992844.4 +UniRef50_P0ABU5 Enhancing lycopene biosynthesis protein 2 0.00494671915031 0.006372351934 5.75545449257e+11 +UniRef50_D6GRJ0 Relaxase mobilization nuclease domain protein 1.2401022456e-05 3.36917078191e-06 -3646269354.11 +UniRef50_G7M3W5 PAS modulated sigma54 specific transcriptional regulator, Fis family 6.68906064094e-05 0.00131422210259 5.03563031487e+11 +UniRef50_D3EHS5 Copper amine oxidase domain protein 7.04373921475e-06 1.41130079209e-05 2853950526.35 +UniRef50_F0YJ43 0.000167549084728 3.92962752234e-05 -51777233036.1 +UniRef50_Q82MV1 Aliphatic sulfonates import ATP binding protein SsuB 1 7.91874768648e-06 3.51491665465e-05 10993254248.6 +UniRef50_UPI00047B469E hypothetical protein 2.75204390519e-06 6.26175625193e-06 1416913943.39 +UniRef50_P26365 N acetylmuramoyl L alanine amidase AmiB 0.00399805733287 0.000833499978781 -1.27757063733e+12 +UniRef50_W9B7R7 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.000245652435359 0.00121187489983 3.9007586579e+11 +UniRef50_A0A030STE3 0.000234346116747 4.84410280591e-05 -75052165615.3 +UniRef50_Q1LTQ4 Alanine tRNA ligase 0.00292534922718 0.00202511396585 -3.63436022128e+11 +UniRef50_Q2KVV8 Glutaminase 0.00334818572691 0.00126497674854 -8.41017028417e+11 +UniRef50_N6V723 3.28215521288e-05 3.41293618959e-05 527978851.609 +UniRef50_R5EPL7 1.90066601483e-06 0.00411377303504 1.66001333373e+12 +UniRef50_UPI000420BB24 hypothetical protein 3.91304214536e-05 0.000393957903549 1.43248208745e+11 +UniRef50_B2TI10 Peptidyl tRNA hydrolase 0.000198676836237 0.0014781244494 5.1652870202e+11 +UniRef50_P76586 0.00092586571394 0.00129642388 1.49598878898e+11 +UniRef50_P76584 0.00312978011251 0.000542877351096 -1.04436438965e+12 +UniRef50_P76585 0.00355788907512 0.000908469170782 -1.06960332742e+12 +UniRef50_E7DRS8 Cobyrinic acid a,c diamide synthase 2.39120283713e-05 0.000101972561014 31513994938.3 +UniRef50_B2TPC7 Homoserine kinase 0.000354954565215 0.00391774681766 1.43834295269e+12 +UniRef50_UPI00016AE1F0 amino acid ABC transporter, permease ATP binding protein, His Glu Gln Arg opine family, partial 4.12868098063e-05 3.53260354305e-05 -2406437762.44 +UniRef50_UPI00037DC74D hypothetical protein 8.46128187802e-06 3.79508251134e-06 -1883801945.03 +UniRef50_UPI0003B5A1CC type I secretion protein 7.85933382285e-07 1.40141391306e-06 248477043.069 +UniRef50_C3ISU2 Transcriptional regulator, PadR 0.000159578864664 4.54386748582e-05 -46079795282.3 +UniRef50_X1FD15 Marine sediment metagenome DNA, contig 0.000173471105778 0.000130865930918 -17200231915.3 +UniRef50_W5X9W4 30S ribosomal protein S4 5.52417369412e-05 7.64246466026e-05 8551800573.84 +UniRef50_Q8NY74 0.0143367645915 0.00269157438495 -4.70130618896e+12 +UniRef50_B9DK14 Homolog of FecCD transport family protein SstB 0.0175640000954 0.00527726088709 -4.96030739364e+12 +UniRef50_V9VUC0 2.00016855866e-05 1.70338607102e-05 -1198147321.91 +UniRef50_Q475Q2 4 hydroxythreonine 4 phosphate dehydrogenase 0.000463075779513 0.00520022121367 1.91244374308e+12 +UniRef50_K1TVZ4 Anthranilate synthase component II 1.52295452453e-05 1.70722442509e-05 743920201.02 +UniRef50_Q5HRY7 0.00190829504482 0.0027197815235 3.27607049502e+11 +UniRef50_Q9RU78 2 phosphoglycerate kinase, putative 9.2445548289e-05 0.0126550890118 5.07169332719e+12 +UniRef50_Q5HKC7 0.019010564897 0.0124597019271 -2.64466376908e+12 +UniRef50_A0A020CZ32 0.000807587477663 0.000202093948186 -2.44445168091e+11 +UniRef50_B5B0J6 FAD dependent urate hydroxylase 0.000108058966276 0.0118502250003 4.74045652051e+12 +UniRef50_UPI0003B6355C multidrug transporter CflA 6.14581544474e-06 8.38554509585e-06 904206344.727 +UniRef50_B8H806 Shikimate dehydrogenase 0.000142268588759 0.000207239793125 26229672488.9 +UniRef50_A6LTJ7 Glycosyl transferase 0.000629226230738 0.00365508196157 1.22157508996e+12 +UniRef50_UPI0000164CF0 helicase related protein, partial 9.72902033113e-05 0.0268198312983 1.07882177625e+13 +UniRef50_UPI00037DA311 hypothetical protein 2.52829376611e-05 8.10499894506e-06 -6934944656.66 +UniRef50_E3F454 0.000172874674004 9.03720311285e-05 -33307329350.1 +UniRef50_M1MT01 Oxygen independent coproporphyrinogen III oxidase 1 0.000265081999205 0.00088027600776 2.48361370533e+11 +UniRef50_Q55G10 Nicotinate phosphoribosyltransferase 3.03665302617e-06 0.000109067745708 42806053263.5 +UniRef50_UPI00047AB801 hypothetical protein 1.83305680202e-05 6.80403001619e-06 -4653404838.74 +UniRef50_R9YSK0 Sugar transporter family protein 0.0213252190984 0.00433367772277 -6.85969376299e+12 +UniRef50_UPI0002003470 hypothetical protein 4.42851679736e-06 9.77764035525e-06 2159506821.45 +UniRef50_UPI000403F45D hypothetical protein 8.5134660394e-06 0.000168966491453 64776855339.7 +UniRef50_S5K798 Ethanolamine utilization protein EutJ 2.21989985356e-05 0.00294988300468 1.18194196e+12 +UniRef50_V6AIC2 0.00012163107099 0.000376217510327 1.02779669687e+11 +UniRef50_O86793 tRNA N6 adenosine threonylcarbamoyltransferase 0.000256499189752 0.00957653322151 3.7626121083e+12 +UniRef50_I0KVQ6 1.56485924717e-05 5.42419030496e-05 15580593073.5 +UniRef50_UPI00034BACF0 hypothetical protein 0.000100395209802 0.000138998740688 15584719137.3 +UniRef50_P0AFY0 Sigma E factor regulatory protein RseB 0.00358964978852 0.000399850131071 -1.28776126496e+12 +UniRef50_P93345 Putative carbamoyl phosphate synthetase, large chain 1.90631552941e-05 2.31294108423e-05 1641597263.38 +UniRef50_UPI000465AFB9 D ribose transporter ATP binding protein 1.53792627001e-05 3.52925904415e-05 8039254773.21 +UniRef50_A6X8A8 Endoribonuclease L PSP 0.000148642022207 3.93120157926e-05 -44137865219.4 +UniRef50_Q46898 CRISPR system Cascade subunit CasD 0.00288141984952 0.00026367562964 -1.0568154649e+12 +UniRef50_Q9Z661 Diaminopimelate decarboxylase 0.00450554675364 0.00176108635576 -1.10797234094e+12 +UniRef50_Q6GDP8 Ferrous iron transport protein B 0.0209020726164 0.00639129503441 -5.85817897712e+12 +UniRef50_Q42891 Lactoylglutathione lyase 2.3451899556e-05 2.45196745238e-05 431073857.573 +UniRef50_R7IF37 3.05259361323e-05 8.75890958238e-05 23037097811.2 +UniRef50_B5GQH0 2.83136443545e-05 2.37817446124e-05 -1829583538.55 +UniRef50_Q0APS4 Thioesterase superfamily protein 4.47766582417e-06 0.000170681726014 67098618651.9 +UniRef50_Q9RVA0 0.000185953689091 0.0350571295756 1.40779216228e+13 +UniRef50_Q5HQK8 Putative peptidyl prolyl cis trans isomerase 0.022865317284 0.00924922384474 -5.4969840097e+12 +UniRef50_A5ULZ8 0.00457474481691 0.000637026600826 -1.58970516507e+12 +UniRef50_B1HUU8 Glucosamine 6 phosphate deaminase 9.28424862893e-06 2.26717866347e-05 5404713376.51 +UniRef50_A6QDY0 Phage portal protein 0.0140110621464 0.00457572913938 -3.80915971949e+12 +UniRef50_A6LQB8 0.000473376866408 0.00209928865201 6.56400540028e+11 +UniRef50_R7U693 8.55581319638e-05 2.57614484477e-05 -24140654923.3 +UniRef50_Q5HK21 YycI protein 0.0130570038066 0.00574225790973 -2.95305268059e+12 +UniRef50_W8YHT8 0.000557076405129 0.000210012952802 -1.40113774652e+11 +UniRef50_Q9JYB8 ComE operon protein 1 related protein 0.000855993139133 0.00366942864526 1.13581843856e+12 +UniRef50_Q0JKD0 Glutamate synthase 1 [NADH], chloroplastic 1.08568678439e-06 9.25828034407e-06 3299376309.04 +UniRef50_P06720 Alpha galactosidase 0.00247666901049 0.000602410150965 -7.56661301331e+11 +UniRef50_Q9ZLY0 UDP N acetylmuramoylalanine D glutamate ligase 0.000109416228655 0.00222430853286 8.53807975853e+11 +UniRef50_N6VE85 0.000151795370894 5.60086100893e-05 -38670290772.6 +UniRef50_A0A011RZR4 7.92704098307e-05 0.000110618001118 12655407280.9 +UniRef50_UPI000381C6B2 MULTISPECIES 0.00019537650557 0.000104944706081 -36508427176.7 +UniRef50_UPI000471AF5A hypothetical protein 5.82125789506e-05 6.51147693787e-06 -20872369326.4 +UniRef50_UPI0003B2EAF3 DNA polymerase I 3.18457384774e-06 5.43108452778e-05 20640303166.2 +UniRef50_A1VT86 Phosphate butyryltransferase 0.00233738756365 0.000448362190553 -7.62622724069e+11 +UniRef50_D8JIA1 DMT family permease 0.000657347096919 0.0081603201383 3.02904228864e+12 +UniRef50_UPI0003623153 hypothetical protein 2.24992414766e-05 1.46980204326e-05 -3149448667.21 +UniRef50_E7B1W7 Zinc ABC transporter, inner membrane permease protein ZnuB 0.000738122076317 0.00433553632714 1.45232027829e+12 +UniRef50_UPI0003AD1FFA hypothetical protein 8.95711683243e-07 2.02657947538e-05 7819940233.25 +UniRef50_R7PV41 Bacterial membrane flanked domain protein 0.00419024055796 0.000252767508006 -1.58960618849e+12 +UniRef50_C2L1L8 0.000278746967941 0.000340948018057 25111327224.5 +UniRef50_K9NJK2 Putrescine transport system permease protein 0.00591478240338 0.00172187764801 -1.69272710247e+12 +UniRef50_Q187P1 LexA repressor 0.00012410876684 1.34111523212e-05 -44689985393.8 +UniRef50_Q8Z3W5 UPF0149 protein YgfB 0.000602894181434 0.000899031594298 1.19554307588e+11 +UniRef50_A6LQ92 Transcriptional antiterminator, BglG 0.000195056752111 0.00290301448196 1.09323576592e+12 +UniRef50_J4SG21 8.16219549366e-06 1.10664444803e-05 1172480955.05 +UniRef50_Q8XZ19 DNA polymerase IV 0.0001791883287 0.000408227522167 92465933029.6 +UniRef50_Q8GAA6 Queuine tRNA ribosyltransferase 5.50097624621e-06 8.28509605048e-05 31227137836.2 +UniRef50_A6LZ80 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000797505610247 0.000463848228053 -1.34701579628e+11 +UniRef50_P55037 Ferredoxin dependent glutamate synthase 1 2.26505862282e-06 2.3035349926e-06 15533382.6383 +UniRef50_UPI000362A514 hypothetical protein 1.94988805121e-06 5.68135266534e-06 1506438054.94 +UniRef50_Q5H330 Glutamine synthetase 0.0120301380891 0.00118324725498 -4.37902293604e+12 +UniRef50_UPI000381B208 amino acid ABC transporter ATPase 1.73748018419e-05 9.57705157626e-05 31649311733.4 +UniRef50_UPI000344FAE6 hypothetical protein 2.03646341296e-05 3.91564974383e-06 -6640656848.28 +UniRef50_Q5XA93 0.00115166531804 0.0013723860311 89107660410.1 +UniRef50_Q6FDD7 0.000292624797564 0.00374707693971 1.39460472068e+12 +UniRef50_F0Y880 0.000688024426533 0.000778219039123 36412671914.9 +UniRef50_X2LK66 Penicillin binding protein 1C 0.00217106335617 0.000185246984181 -8.0169843808e+11 +UniRef50_G7U7D2 ABC transporter, permease protein 0.000143530794236 0.00684035888162 2.7035916782e+12 +UniRef50_Q2GDL7 Ribosomal RNA large subunit methyltransferase E 4.14432326013e-05 2.85099962365e-05 -5221306229.13 +UniRef50_V5VAN9 Major facilitator superfamily permease 0.000109924050077 0.00694594145321 2.75978411301e+12 +UniRef50_Q9RYA2 1.753118713e-05 0.0342240586871 1.3809594913e+13 +UniRef50_Q2C7C0 5.45179186972e-05 0.000634481228811 2.34138305243e+11 +UniRef50_UPI0003B42B48 hypothetical protein, partial 7.32559288431e-06 4.53704650804e-06 -1125770391.41 +UniRef50_F3NYW4 3 carboxymuconate cyclase 6.08809614591e-06 1.08744785457e-05 1932321310.31 +UniRef50_B1GZ76 DNA directed RNA polymerase subunit beta 1.10445918904e-06 1.72797468269e-06 251720856.182 +UniRef50_UPI000365AE70 hypothetical protein 6.97429563521e-06 6.25887114119e-05 22452222114.7 +UniRef50_UPI000464E1A7 hypothetical protein 3.98951082257e-05 5.87058170866e-05 7594114000.5 +UniRef50_UPI0004787718 hypothetical protein 2.38888173542e-05 4.07163749228e-06 -8000438694.39 +UniRef50_K0RCG6 1.8467444704e-05 4.00912145008e-06 -5837002521.18 +UniRef50_F0XXW5 0.000167278673357 5.92254492795e-05 -43622412522.1 +UniRef50_C5WE22 0.000932585034739 0.000993389506473 24547511393.8 +UniRef50_UPI000373B5E9 hypothetical protein 5.29360107224e-05 8.49958957022e-05 12942968985.4 +UniRef50_R6N0L8 Transcriptional regulator PadR family 0.000160657664224 3.12974167876e-05 -52224319318.7 +UniRef50_A3MAB2 Resolvase 0.00105592535631 0.0412507766369 1.62271547083e+13 +UniRef50_UPI00026C7388 bicyclomycin resistance protein 9.08346436372e-06 3.24934822947e-05 9450911511.97 +UniRef50_A0ZZN9 Aspartate semialdehyde dehydrogenase 0.000254090324097 0.00083357061716 2.33943305332e+11 +UniRef50_Q8RE73 Transcriptional regulator, DeoR family 0.00549508542838 0.00208820290026 -1.37540028375e+12 +UniRef50_N0AI85 2.31676005021e-05 0.000146423512291 49759924109.3 +UniRef50_UPI00029D989C PREDICTED 2.17679963127e-05 4.93332494081e-05 11128430938.3 +UniRef50_F8KPA7 Glutathione regulated potassium efflux system protein KefB 9.14747953543e-05 0.00350693449124 1.37886299163e+12 +UniRef50_Q3IV28 DNA binding HTH domain containing proteins 0.0130366038994 0.00676836190193 -2.53056621436e+12 +UniRef50_M8W9J3 Glycosyl hydrolase family 65 central catalytic domain protein 0.000215291091346 7.92796524076e-05 -54909486947.3 +UniRef50_B3WXF3 Glycolate oxidase iron sulfur subunit 2.55866356295e-05 5.56840732904e-05 12150704920.8 +UniRef50_UPI00024851F3 hemolysin type calcium binding protein 2.07228005402e-06 4.11353091572e-05 15770224206.2 +UniRef50_UPI0003B6F611 aldehyde activating protein 0.000156920145125 3.91968327626e-05 -47526345828.0 +UniRef50_UPI00029AFF26 30S ribosomal protein S15 8.03830162395e-05 2.41897538769e-05 -22685909584.7 +UniRef50_Q96RP9 Elongation factor G, mitochondrial 1.15220608226e-05 7.19418740366e-06 -1747215608.21 +UniRef50_D0LJQ7 Extracellular solute binding protein family 1 0.0110876281656 0.00183648778218 -3.73479889705e+12 +UniRef50_Q9RWX4 0.000482723819801 0.0196451101969 7.73609052936e+12 +UniRef50_P25740 Lipopolysaccharide core biosynthesis protein RfaG 0.00396643837659 0.00152439095337 -9.85884512046e+11 +UniRef50_T2L9X3 0.000180959195655 5.2507838966e-05 -51857388970.8 +UniRef50_Q9RRP0 Transcriptional regulator, MerR family 0.000294680013299 0.0309331585454 1.23691297598e+13 +UniRef50_B9KNU8 Transcriptional regulator, MerR family 0.00617601716693 0.00105355235223 -2.06800190541e+12 +UniRef50_G7U539 5.08056512592e-05 0.00321032300084 1.27553592566e+12 +UniRef50_UPI00035E9032 MULTISPECIES 8.01458044706e-06 2.34611146232e-05 6235955397.18 +UniRef50_UPI000411B532 hypothetical protein 0.000134436053524 7.2731883108e-05 -24910730792.3 +UniRef50_UPI0004638A40 hypothetical protein 8.12777733285e-05 2.94846182109e-05 -20909532294.5 +UniRef50_UPI000304092F hypothetical protein 1.1240277524e-05 2.27595106865e-05 4650455784.59 +UniRef50_UPI00047D1DA4 methyltransferase 3.02877527938e-05 2.60433689021e-05 -1713509861.53 +UniRef50_B9E5C1 0.000227401198102 0.000442975057792 87029812545.6 +UniRef50_U5MS98 0.000420570896694 0.0014263004297 4.06025354165e+11 +UniRef50_A3M1H8 7.75656232471e-05 0.00692520649548 2.76447665012e+12 +UniRef50_A4WTR8 0.00208684961886 0.00089040212621 -4.83020534845e+11 +UniRef50_F9YXU6 0.000154091083615 0.000651518130776 2.00817403055e+11 +UniRef50_B2V7W7 ATP dependent 6 phosphofructokinase 2.21733406052e-05 7.39473080604e-06 -5966306129.87 +UniRef50_UPI00046226A0 histidine kinase, partial 0.000158164520469 0.000228043787796 28211117734.9 +UniRef50_UPI000464D5F8 quercetin 2,3 dioxygenase 5.54654045468e-06 1.15753878975e-05 2433919694.94 +UniRef50_Q89GJ0 ABC transporter permease protein 0.00101112772668 0.00048545211813 -2.12221693937e+11 +UniRef50_Q82SA8 Glucans biosynthesis glucosyltransferase H 0.00322620876065 0.000982470916933 -9.05824501269e+11 +UniRef50_M1Z980 1.57908939236e-05 5.36752964174e-05 15294398180.6 +UniRef50_UPI0004704D11 translation initiation factor IF 3 0.000163534295685 0.000210350854973 18900419488.4 +UniRef50_G0DSU9 S adenosylmethionine synthase 0.00019595176491 0.00378181688188 1.44765775123e+12 +UniRef50_Q2FFH9 Sodium dependent dicarboxylate transporter SdcS 0.0115303940844 0.00144442504443 -4.07182947021e+12 +UniRef50_UPI000362FFAD hypothetical protein, partial 1.20421391428e-05 3.58845595754e-05 9625477708.04 +UniRef50_G0DRS5 Sugar binding protein 0.000228474222761 0.00811337326417 3.18323050161e+12 +UniRef50_UPI000223620B PREDICTED 0.000118768533466 0.000185394721555 26897809726.8 +UniRef50_UPI0003B6A033 ABC transporter 2.22087090568e-06 3.4907305443e-06 512657919.041 +UniRef50_Q96533 Alcohol dehydrogenase class 3 5.86393070053e-06 0.00317914242224 1.28109146754e+12 +UniRef50_W9EWM1 8.03232046339e-05 5.49111602742e-05 -10259154148.9 +UniRef50_C1KYP9 Prolipoprotein diacylglyceryl transferase 1.04729237001e-05 0.000521147126817 2.06165442476e+11 +UniRef50_UPI000479DF45 hypothetical protein 1.97659534534e-05 1.03216520701e-05 -3812780363.05 +UniRef50_M9M1D4 0.00097309487519 0.000216799876999 -3.05325571553e+11 +UniRef50_D5ATM2 Transcriptional regulator, LysR family 0.00465043345512 0.00171587947862 -1.18471545134e+12 +UniRef50_A0A024J7I0 Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA dependent ATPase and ssDNA annealing activities involved in maintenance of genome 3.25484789268e-06 1.69036836831e-05 5510202498.63 +UniRef50_Q182G9 Uracil DNA glycosylase 0.00793373466344 0.00210595479533 -2.35274624766e+12 +UniRef50_UPI00037EDDB2 hypothetical protein 2.09756641805e-05 3.20341797078e-05 4464458421.62 +UniRef50_D9WFC1 Allergen V5 Tpx 1 related protein 5.85849700527e-05 5.10745646213e-05 -3032042835.69 +UniRef50_P0A911 Outer membrane protein A 0.00362566167161 0.00101563638109 -1.05369923839e+12 +UniRef50_UPI0003B56FE6 hypothetical protein 1.85993862493e-06 8.14728887017e-07 -421963997.36 +UniRef50_UPI000465FC10 oxidoreductase 8.1911951262e-06 1.22535146878e-05 1640008257.28 +UniRef50_K9NBL7 Formate dehydrogenase family accessory protein FdhD 0.000196949211577 0.000228337658653 12671901264.1 +UniRef50_C8RZ45 Entericidin EcnAB 0.000141183299524 0.000259390794772 47721816400.7 +UniRef50_V9ZPI5 GntR family transcriptional regulator 0.000157067679132 0.000599275541181 1.7852474041e+11 +UniRef50_B8GVF8 Potassium transporting ATPase A chain 1.01130731999e-05 0.00124857913595 4.9998394722e+11 +UniRef50_Q4FR66 Possible tRNA io(6)a) hydroxylase 8.83975236542e-06 0.00356371275777 1.43514585548e+12 +UniRef50_V5XTH0 HIT family protein 0.00301580741199 0.00951262795234 2.62284617709e+12 +UniRef50_S5XKF8 Aminodeoxychorismate lyase 0.00183606468922 0.00060333333611 -4.97668774565e+11 +UniRef50_UPI00037864CC hypothetical protein 5.6464639105e-05 2.57262109159e-05 -12409480662.9 +UniRef50_A3M8R9 9.73963701246e-05 0.00748761566958 2.98352221938e+12 +UniRef50_D3CS21 Terminase 1.72422524725e-06 4.6478982698e-06 1180322676.71 +UniRef50_D7CM96 Metallophosphoesterase 7.27848586041e-06 1.50496903043e-05 3137330597.4 +UniRef50_A8U0I4 1.42041880074e-06 3.62886407675e-06 891576458.596 +UniRef50_Q28TH8 Protein L isoaspartate O methyltransferase 0.00211989791279 0.000694862835762 -5.75304147744e+11 +UniRef50_D7A8N8 0.00223793177468 0.00140481492064 -3.36339497469e+11 +UniRef50_UPI000361C4AD hypothetical protein 0.000217337939078 1.66883101846e-05 -81004717431.9 +UniRef50_P57028 DNA primase 0.000455340207854 0.00318368260169 1.10146530492e+12 +UniRef50_Q3AAI8 Adenine phosphoribosyltransferase 2.38630710129e-05 4.06513086556e-05 6777617551.2 +UniRef50_G0MS24 1.89928228595e-05 2.23184584061e-05 1342599880.3 +UniRef50_A5UL10 0.0058959180495 0.000477601140485 -2.18744102639e+12 +UniRef50_A6LT75 Ig domain protein, group 2 domain protein 0.00029455243046 0.00162078119211 5.35414825735e+11 +UniRef50_UPI0003735B5E hypothetical protein 4.91138850543e-06 1.39821651909e-06 -1418310642.35 +UniRef50_Q8FPF5 LexA repressor 6.25249684799e-05 1.56114780767e-05 -18939551769.0 +UniRef50_C1AAF1 UDP glucose 6 dehydrogenase 0.00490943510961 0.00331580644179 -6.43367449222e+11 +UniRef50_UPI0003C1975D 2.31212779318e-05 3.53568746275e-05 4939660533.71 +UniRef50_UPI00037D4B02 hypothetical protein 7.75701654001e-06 3.80178452906e-06 -1596775698.98 +UniRef50_P45335 0.000204830812332 0.00252247365718 9.35660857142e+11 +UniRef50_Q47690 Homocysteine S methyltransferase 0.00167519669018 0.000376199624447 -5.24421055922e+11 +UniRef50_A6QBN8 ATP dependent zinc metalloprotease FtsH 6.04622512861e-05 0.0058378907646 2.33241878784e+12 +UniRef50_B2SDP9 3 dehydroquinate dehydratase 6.18834267726e-05 1.63361000428e-05 -18388014729.4 +UniRef50_UPI0003BD59E0 PREDICTED 6.73408053123e-06 1.1513208162e-05 1929392471.03 +UniRef50_G7M9Q4 SSS sodium solute transporter superfamily 0.000284017336483 0.00130927035157 4.13907223461e+11 +UniRef50_UPI00046850A9 membrane protein 3.69663463273e-05 4.75414985962e-06 -13004459002.1 +UniRef50_Q1MIN0 Phosphate import ATP binding protein PstB 2 6.21180647702e-06 0.0001572358992 60970279506.3 +UniRef50_A0A031W8S5 4.81562368441e-05 4.6812926905e-05 -542310706.681 +UniRef50_A6VAP8 0.000224697354869 0.000578158651396 1.42696662866e+11 +UniRef50_Q9I425 Cytochrome bo ubiquinol oxidase subunit 3 0.00448453814469 0.00260926823191 -7.57069475939e+11 +UniRef50_Q6A9N0 Hemin receptor 4.16778983442e-05 0.00753389953111 3.02470181305e+12 +UniRef50_Q63Q93 Phosphoribosyl AMP cyclohydrolase 2.37393536606e-05 5.94870099621e-05 14431767522.0 +UniRef50_I2DKJ5 Urea ABC transporter, urea binding protein 0.0178486838905 0.00391405306036 -5.62558146326e+12 +UniRef50_F0RXH0 Ornithine decarboxylase 0.00143909360312 0.00580920910375 1.76426925495e+12 +UniRef50_K4RK14 Cysteine desulfurase 0.000115321585189 0.00284997237502 1.10401208179e+12 +UniRef50_UPI00045D877D PREDICTED 7.2745867193e-05 8.07695811183e-05 3239271773.69 +UniRef50_UPI000262B349 TonB like protein 0.000151484918653 0.000172868315237 8632739604.74 +UniRef50_A0A024HEM4 0.000169162777717 0.000136404944659 -13224739189.3 +UniRef50_UPI00032AF593 PREDICTED 4.33393104288e-06 1.59844688163e-05 4703465067.3 +UniRef50_E3I3E7 Enoyl CoA hydratase isomerase 0.000531922390186 0.000192597851207 -1.36989480366e+11 +UniRef50_S3ZTJ7 0.000225140748821 2.69796864334e-05 -80000052595.7 +UniRef50_C2V3W1 Flavodoxin 0.000331128060398 0.00114001973896 3.26559496853e+11 +UniRef50_I0EKX0 0.000126673150626 0.00571418335711 2.25574643682e+12 +UniRef50_I0EKX8 0.000237973923262 0.00272474654236 1.00394062246e+12 +UniRef50_UPI0003B5754D 30S ribosomal protein S2 2.10117484474e-05 0.000115285731913 38059563996.9 +UniRef50_UPI000477AE59 GMP synthase 3.12373823975e-06 1.3286428388e-05 4102802723.06 +UniRef50_UPI00036D316E hypothetical protein 2.2212781002e-05 2.46660446637e-05 990412645.159 +UniRef50_X1RBN9 Marine sediment metagenome DNA, contig 0.000123893850246 0.00160080283871 5.96246282353e+11 +UniRef50_S1SGR9 0.000281678685418 4.48482495811e-05 -95611353183.7 +UniRef50_G7ZV51 3.22760195962e-05 3.04050563091e-05 -755330838.304 +UniRef50_A6M2G9 Polysaccharide biosynthesis protein 0.000163189554473 0.00319644103373 1.22456084436e+12 +UniRef50_N0C5G3 0.00583284352253 0.00556745899574 -1.07138990099e+11 +UniRef50_A3VF16 0.000260954772703 4.05986804015e-05 -88960458535.2 +UniRef50_A1WKV0 Succinate dehydrogenase 0.00327041598736 0.00113403931895 -8.62481477327e+11 +UniRef50_Q0SRW4 Phospho N acetylmuramoyl pentapeptide transferase 7.30710392256e-06 9.7699286379e-06 994272559.841 +UniRef50_UPI00046AE78D type III secretion protein HrpI 6.03321920333e-06 5.61542458118e-06 -168668815.879 +UniRef50_U7DL84 TetR family transcriptional regulator 0.000446336597065 0.000285330149942 -65000278474.8 +UniRef50_N6TVC0 0.000353630632388 2.18061715372e-05 -1.3396160679e+11 +UniRef50_V6QG29 Type III restriction enzyme, res subunit 0.0098841505013 0.00534783224654 -1.83136734633e+12 +UniRef50_Q8PG33 RNA polymerase sigma factor RpoD 0.000804082964542 0.0028458886189 8.24301998438e+11 +UniRef50_D5SSK6 Beta Ig H3 fasciclin 6.91947766764e-05 1.40332555597e-05 -22269382982.8 +UniRef50_A5N5W0 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.53294511175e-05 0.00212374664228 8.5119389326e+11 +UniRef50_S9QZ13 4.98589119372e-05 7.57493512734e-05 10452288071.4 +UniRef50_D9UUH5 Predicted protein 2.27303077583e-05 0.000125404795578 41450950690.6 +UniRef50_P0C8K1 D tagatose 1,6 bisphosphate aldolase subunit KbaZ 0.0045407407648 0.00193279716663 -1.05285883365e+12 +UniRef50_Q73Z69 2.59945604314e-06 2.11930838157e-06 -193841503.05 +UniRef50_UPI0003B6885A hypothetical protein 0.000106908486396 3.12815155955e-05 -30531536159.5 +UniRef50_UPI00047712DF cystathionine beta lyase 8.58356784087e-05 1.92484643492e-05 -26882075432.8 +UniRef50_M9VBT0 RpiR family transcriptional regulator 0.00048452050887 0.00581842192246 2.153361455e+12 +UniRef50_A7ZUM9 0.011615942642 0.00272246400014 -3.59040646297e+12 +UniRef50_UPI0003B566EA glycine betaine ABC transporter ATP binding protein 0.000172952101627 1.34709640893e-05 -64384492277.7 +UniRef50_UPI0003682815 transcriptional regulator 3.36887347044e-05 7.96106693115e-05 18539248526.4 +UniRef50_UPI0003C1848F 1.27091099107e-05 0.000136644285801 50034151362.4 +UniRef50_H2A7K3 COG4478, integral membrane protein 0.000241472812415 1.86518256558e-05 -89955566675.6 +UniRef50_UPI0002485ACF sugar ABC transporter ATP binding protein 1.14597753175e-05 1.66444082555e-05 2093099939.67 +UniRef50_K8B0J3 Acetyl coenzyme A synthetase 0.00142914633767 0.000899005750461 -2.14024260613e+11 +UniRef50_UPI00045E771A hypothetical protein 0.000578139924697 0.000348735440883 -92613405225.3 +UniRef50_UPI00036DBE20 hypothetical protein 0.000249659097226 6.11217046404e-05 -76114859000.9 +UniRef50_F0Y5J9 Expressed protein 0.000134490739149 0.000288787895961 62291655644.0 +UniRef50_Q9HZ17 FMN dependent NADH azoreductase 3 0.000267720559474 0.00316308162324 1.16889279152e+12 +UniRef50_UPI000379F901 hypothetical protein 1.50613992114e-05 1.18607171512e-05 -1292154624.49 +UniRef50_A8Z481 Competence protein ComGD 0.00351526128724 0.00237611142112 -4.59888779893e+11 +UniRef50_Z8E4W9 0.000476012824855 1.71162602195e-05 -1.85262174438e+11 +UniRef50_A7Z3A7 N acetyl gamma glutamyl phosphate reductase 4.96997921935e-06 5.16366006545e-06 78191334.3018 +UniRef50_UPI00036800B9 hypothetical protein 0.000174790674043 0.0001428713354 -12886228704.5 +UniRef50_K0DDY7 3 oxoacyl [acyl carrier protein] synthase 2 0.00820619844652 0.00179326603883 -2.58897950851e+12 +UniRef50_A0A023RSC6 D Ala D Ala carboxypeptidase 0.000270922958506 0.0084795181715 3.31391061827e+12 +UniRef50_Q9ZKG9 Methionine tRNA ligase 6.44726582038e-05 0.00208569193564 8.15991025452e+11 +UniRef50_M4YY04 Ribosome biogenesis GTPase A 0.00568120929523 0.0028965674175 -1.12419409744e+12 +UniRef50_W6I1I5 2.26439125401e-06 3.6976552859e-06 578626277.801 +UniRef50_W1X1F9 0.00085636406403 0.000322829721041 -2.15394361467e+11 +UniRef50_B6IWY4 2.50266742009e-06 4.70144629967e-06 887674015.737 +UniRef50_R9SI06 Chorismate lyase 0.00306318153505 0.000315846743525 -1.10913276893e+12 +UniRef50_D0Z8H8 1.53513617329e-05 0.000971037898047 3.85822382303e+11 +UniRef50_G5LKX8 Potassium transporting ATPase B chain 1.88203351291e-05 0.00136688918081 5.44231935666e+11 +UniRef50_Q31N34 3 isopropylmalate dehydrogenase 5.25456489393e-05 6.20758076026e-05 3847442000.57 +UniRef50_Q9LV03 Glutamate synthase 1 [NADH], chloroplastic 1.03833201265e-06 1.09541629013e-05 4003142610.68 +UniRef50_P21599 Pyruvate kinase II 0.00272713402986 0.000796271081831 -7.79513066473e+11 +UniRef50_I0ZLD5 Cation acetate symporter ActP 0.000729757742592 0.000655754929427 -29875843791.3 +UniRef50_F0N2E1 Antioxidant, AhpC TSA family 0.00174224302547 0.0116455577096 3.99808966532e+12 +UniRef50_R6LNJ5 Calcium translocating P type ATPase PMCA type 0.000452391273821 0.00122306857789 3.11131884927e+11 +UniRef50_V6IYX1 Sugar ABC transporter substrate binding protein 0.000143159730023 1.83939685458e-05 -50369468956.3 +UniRef50_M9RA73 0.0327263496618 0.00037381861418 -1.30611137941e+13 +UniRef50_H1CG66 Inosine 5 monophosphate dehydrogenase 0.00360713766123 0.000555707614596 -1.23189975508e+12 +UniRef50_Q9FV81-2 Isoform 2 of Glutamyl tRNA amidotransferase subunit B, chloroplastic mitochondrial 2.81065472929e-05 2.01819405499e-05 -3199260988.01 +UniRef50_UPI00036930E8 hypothetical protein 2.78148761753e-05 6.41161053227e-07 -10970362253.8 +UniRef50_C1DKH4 Tartrate transporter 0.0002529622901 0.00255069249602 9.2762188045e+11 +UniRef50_UPI0004798495 16S rRNA methyltransferase, partial 4.56538767165e-05 0.000196307537731 60820731679.7 +UniRef50_UPI0004702790 hypothetical protein 6.97296660518e-05 2.15342069828e-05 -19457098250.9 +UniRef50_I6RS84 Type 4 fimbrial biogenesis protein PilX 0.000687548156749 0.000301343576728 -1.55915528218e+11 +UniRef50_P39853 Capsular polysaccharide biosynthesis protein CapD 2.26011804391e-05 0.00109703689735 4.33762883725e+11 +UniRef50_D7HYR3 D alanyl D alanine carboxypeptidase 0.00060983822042 0.000376795021552 -94082399144.6 +UniRef50_UPI0004678721 hypothetical protein 0.000223880535938 1.2644111223e-05 -85278736819.9 +UniRef50_I6U2K4 Transcriptional regulator 0.00381352079595 0.00115905607187 -1.07163998306e+12 +UniRef50_A0A024JDH6 Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD dependent butanediol dehydrogenase 5.92366936443e-06 2.76717582201e-05 8779970350.11 +UniRef50_P23876 Ferric enterobactin transport system permease protein FepD 0.004472983898 0.00234787763293 -8.57931477195e+11 +UniRef50_L0Q6W3 9.70357819977e-07 0.000122930762834 49236912126.6 +UniRef50_C5N3X1 0.00330275162702 0.00170330479738 -6.45716312545e+11 +UniRef50_UPI0001F85E2B multiple sugar binding transporter like protein 1.44149256948e-05 2.57700423232e-05 4584199925.84 +UniRef50_UPI0003090106 cyclase 9.95716216258e-06 0.000288604169593 1.12493216283e+11 +UniRef50_W6C5N4 Polyketide synthase domain protein 4.76123327522e-05 0.00025197336371 82503055989.6 +UniRef50_P33770 Coproporphyrinogen III oxidase, anaerobic 1 0.0108854704053 0.00327250201761 -3.07344875974e+12 +UniRef50_E4L4M2 SNF2 family protein 0.000528156953586 0.000164396283177 -1.4685464649e+11 +UniRef50_C3I167 Collagen adhesion protein 3.59742425399e-05 0.000107845418814 29015275820.4 +UniRef50_UPI00037939BE hypothetical protein 7.95098310251e-06 6.13312270941e-06 -733892548.35 +UniRef50_UPI0003020997 hypothetical protein 3.15777251882e-05 8.01736272467e-05 19618761999.8 +UniRef50_Q8ER36 Orotidine 5 phosphate decarboxylase 9.60224096871e-06 1.63491526927e-05 2723811056.89 +UniRef50_U1EEA4 0.000839504551366 9.87769640377e-05 -2.99040816754e+11 +UniRef50_U5PCG2 ABC transporter ATP binding protein 0.00552725008652 0.0044889882581 -4.19159041039e+11 +UniRef50_T1XT07 BioX, putative 0.0131425871141 0.000606815147654 -5.06084497406e+12 +UniRef50_UPI00034AA460 hypothetical protein 0.000114739585902 5.59794423611e-06 -44061820059.1 +UniRef50_K1E310 FAD dependent oxidoreductase 3.05825273444e-05 3.14466609142e-05 348861326.24 +UniRef50_D2JAL6 0.00822902625585 0.00279886365124 -2.19222327907e+12 +UniRef50_UPI0004721ABE 2 hydroxy acid oxidase 8.53819721138e-06 1.27129561562e-05 1685401416.08 +UniRef50_K0HFL9 MFS superfamily metabolite transporter 0.000105639735687 0.00583376253161 2.31251346468e+12 +UniRef50_P48728 Aminomethyltransferase, mitochondrial 5.32506301152e-06 6.92545911867e-06 646099547.525 +UniRef50_UPI0004779493 multidrug ABC transporter substrate binding protein 8.17822032878e-06 7.24349100422e-05 25941214155.6 +UniRef50_A7FC02 0.0141068245209 0.00242436319857 -4.71635299573e+12 +UniRef50_Q92ID9 NADH quinone oxidoreductase subunit E 0.000300906119878 9.8706789506e-05 -81630350936.0 +UniRef50_Q7U8U2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 9.10692511038e-06 0.00211419670339 8.49850575848e+11 +UniRef50_A4WSV4 Integral membrane sensor hybrid histidine kinase 0.000666595996722 0.000510168072101 -63151872756.0 +UniRef50_Q3J222 Prohead peptidase 0.041744510576 0.0070430691237 -1.40093977489e+13 +UniRef50_A6LU68 0.000195551255929 0.00121666916275 4.12237829509e+11 +UniRef50_P0ACU0 0.000762063535662 0.000527351259279 -94756226219.3 +UniRef50_J4PCY6 5.85446639824e-06 1.79255691649e-05 4873252316.01 +UniRef50_J9NX48 8.87022816825e-05 0.000123942982866 14227103519.8 +UniRef50_Q7UKG6 Phosphopantetheine adenylyltransferase 2.48556342499e-05 1.80010471357e-05 -2767280933.25 +UniRef50_Q6AL57 Transcription elongation factor GreA 0.0424748192723 0.00113664421205 -1.66887285483e+13 +UniRef50_Q47VJ8 Ribosomal RNA small subunit methyltransferase A 0.00377904592018 0.00149791803645 -9.20919319249e+11 +UniRef50_W4HH92 Flagellar protein FlgJ 4.50157599244e-05 1.97277047827e-05 -10209098180.0 +UniRef50_Q9X1K5 Diaminopimelate decarboxylase 1.08975216127e-05 9.08471114237e-05 32276630498.5 +UniRef50_A6L467 8.21812747825e-05 0.00394472516381 1.55935636675e+12 +UniRef50_UPI00047E3BE8 antibiotic ABC transporter ATP binding protein 2.9623144854e-05 1.78654303749e-05 -4746733618.59 +UniRef50_UPI00036A881E hypothetical protein 8.0357552537e-05 6.67203906117e-05 -5505489616.04 +UniRef50_UPI000403EBB4 hypothetical protein 9.70183621895e-06 8.53820200852e-06 -469773410.148 +UniRef50_Q9BPL7 Enolase 2 8.38809970367e-06 4.30740755944e-05 14003154111.9 +UniRef50_Q9RUW7 0.000170038733717 0.0289186642674 1.16061729133e+13 +UniRef50_A8LSK1 Methionine synthase 0.012184668792 0.00138735665121 -4.35900740916e+12 +UniRef50_UPI0003809DD9 hypothetical protein 2.10612319231e-05 5.44494481158e-05 13479232596.5 +UniRef50_S9Q9U8 0.000834591893387 9.25449644757e-05 -2.99573451141e+11 +UniRef50_B0JXU3 Tryptophan synthase alpha chain 6.49564389585e-06 3.70669364265e-05 12342005946.6 +UniRef50_E3D2G5 Histone deacetylase family protein 0.000222917906442 0.00258032085162 9.51712497556e+11 +UniRef50_UPI0003B5E34E hypothetical protein 2.99272533724e-05 3.46818292249e-05 1919480616.86 +UniRef50_R4K9U0 DNA binding domain containing protein, AraC type 0.000271087517886 0.00238800287816 8.54624708414e+11 +UniRef50_A1B0L9 DSBA oxidoreductase 0.00199578442658 0.000301343576728 -6.84066564212e+11 +UniRef50_F4M1U9 0.00301041584131 0.00035723794984 -1.07112047294e+12 +UniRef50_D9XYR1 0.00039875280513 0.000635089688595 95412100034.5 +UniRef50_A1TVS9 DNA directed RNA polymerase subunit beta 0.000126277227183 0.00293098533946 1.13229508257e+12 +UniRef50_UPI00036C2011 hypothetical protein 7.47838627615e-06 2.54514868394e-05 7255961252.15 +UniRef50_V4ZLE5 1.74412130954e-05 9.66926280407e-06 -3137631705.16 +UniRef50_UPI00046E5BCC hypothetical protein 6.55102502005e-05 6.36638103887e-05 -745430410.388 +UniRef50_H8H091 Protein tyrosine kinase 0.00044538609018 0.0545585207055 2.1846136487e+13 +UniRef50_Q9RRQ3 Methionyl tRNA formyltransferase 0.000209326796037 0.00570343623668 2.21803940149e+12 +UniRef50_UPI00040B88AD UDP N acetylglucosamine 2 epimerase 4.05347440743e-06 4.90554424733e-05 18167846744.5 +UniRef50_UPI00047E5ED7 methionyl tRNA synthetase 2.10297402489e-06 8.66949829182e-06 2650986426.87 +UniRef50_UPI00029B3D72 methionine ABC transporter ATP binding protein 9.19939068838e-06 1.86256509507e-05 3805496941.12 +UniRef50_I3TSH3 0.000188531238391 4.68510926259e-05 -57198013456.2 +UniRef50_UPI0003659DC3 hypothetical protein 0.000350531002865 5.15543361463e-05 -1.20700549211e+11 +UniRef50_A9NFF0 3 oxoacyl [acyl carrier protein] synthase 3 0.000121767321402 1.92632414655e-05 -41382154936.7 +UniRef50_UPI00039AD4F5 hypothetical protein 0.000332441010353 0.000189713694348 -57620768932.3 +UniRef50_D8LEP5 0.000122216611348 7.77078933929e-05 -17968715621.9 +UniRef50_UPI000371B6BB hypothetical protein 5.29112489966e-06 5.27032488013e-06 -8397223.1292 +UniRef50_UPI0003730F41 hypothetical protein 1.40201020954e-06 8.85775344207e-06 3009975035.23 +UniRef50_D9W6W3 Pyruvate dehydrogenase E1 component, beta subunit 2.47599037503e-05 0.000374788992773 1.41311038579e+11 +UniRef50_F2A904 0.00141878477885 0.000153810783964 -5.10685524714e+11 +UniRef50_P66840 Putative 5 deoxyribonucleotidase 0.0177196171343 0.0050474372536 -5.11591452297e+12 +UniRef50_UPI000419C490 hypothetical protein 3.46984835007e-05 0.000427102615472 1.58418363417e+11 +UniRef50_T1XMS0 0.0039938364311 0.00661569203381 1.0584752806e+12 +UniRef50_E3HMU2 NLPA lipoprotein family protein 2 5.56157572879e-05 7.69588947928e-05 8616486520.48 +UniRef50_F2MTP7 Permease protein 4.04792763964e-06 0.00102796593386 4.13368263998e+11 +UniRef50_A5G7C7 Cyclic pyranopterin monophosphate synthase accessory protein 1.25844989131e-05 3.74793595656e-05 10050360739.7 +UniRef50_P37660 Inner membrane transport protein YhjV 0.00245190682832 0.000609342895392 -7.43865670526e+11 +UniRef50_M4R188 Alpha beta hydrolase 0.000281006939596 0.00551155654442 2.11163706153e+12 +UniRef50_Q9ZDG4 Enoyl [acyl carrier protein] reductase [NADH] FabI 2.08916828417e-05 3.39680460079e-05 5279088275.22 +UniRef50_UPI000252B2C6 PREDICTED 2.09952197365e-05 6.40869817149e-05 17396673106.1 +UniRef50_B4G025 0.000146841261068 5.45100947855e-05 -37275224859.1 +UniRef50_N1MD27 4.47737094911e-05 0.000399577778152 1.43238756454e+11 +UniRef50_UPI00037C0828 hypothetical protein 1.41609120888e-05 6.74575120229e-05 21516491416.2 +UniRef50_A6LR24 Binding protein dependent transport systems inner membrane component 0.000433451080824 0.000984986740368 2.22661713862e+11 +UniRef50_Q7VQF3 Chaperone protein ClpB 0.0035705687169 0.00117565948613 -9.66854245303e+11 +UniRef50_A6LUL9 0.000260935015331 0.00343546800525 1.28159792393e+12 +UniRef50_O34912 Histidine biosynthesis bifunctional protein HisIE 1.14887686762e-05 5.41589352388e-05 17226469863.1 +UniRef50_A4WZN4 0.00487722060015 0.000265094120383 -1.86197205704e+12 +UniRef50_UPI000455DB27 general APC amino acid permease 2.90463622911e-06 1.46374330329e-05 4736674047.3 +UniRef50_UPI0002B43AC6 PREDICTED 8.60918848724e-05 4.5009761955e-05 -16585357156.1 +UniRef50_B2GAM0 Enolase 0.0286501256718 0.0794844618692 2.05224453303e+13 +UniRef50_UPI00047EF87F adenine deaminase 3.35184571582e-05 6.53916915152e-06 -10891869641.4 +UniRef50_P0AG16 Amidophosphoribosyltransferase 0.00384859536076 0.00218887038083 -6.70051341514e+11 +UniRef50_UPI000329AF58 PREDICTED 1.19165666318e-05 7.93251833153e-06 -1608409188.59 +UniRef50_W5XCC8 Translation initiation factor IF 2 6.21549227664e-06 1.72147081658e-05 4440518430.03 +UniRef50_B5GE97 6.21881242257e-05 0.000121763004674 24051110303.0 +UniRef50_P14575 Cytochrome c oxidase subunit 3 6.55914734379e-05 1.14461067609e-05 -21859148965.9 +UniRef50_E8S6A2 Cobyrinic acid ac diamide synthase 4.4303808345e-06 2.06567297751e-05 6550776187.01 +UniRef50_P25798 Flagellar M ring protein 0.0034134737437 0.00186829663424 -6.23806960544e+11 +UniRef50_A5UP72 Predicted ATPase, AAA+ superfamily 0.00900112584029 0.00225262405115 -2.72445298571e+12 +UniRef50_Q71YD4 30S ribosomal protein S14 0.000352790643786 0.01197465751 4.69189027023e+12 +UniRef50_J9RWY1 1.93533091896e-05 1.8284568998e-05 -431463530.266 +UniRef50_P0AFU1 Inner membrane ABC transporter permease protein YejB 0.0112458799449 0.00282785097814 -3.39846159471e+12 +UniRef50_UPI00037FB943 hypothetical protein 1.62361831908e-05 6.18902403542e-06 -4056161443.54 +UniRef50_Q0VSU8 Pyridoxine pyridoxamine 5 phosphate oxidase 1.02203536949e-05 1.5077204566e-05 1960770296.93 +UniRef50_Q9ZM43 0.000124582834604 0.00777195086413 3.08733631728e+12 +UniRef50_H6SQR1 1.9269091371e-05 0.000197619685755 72002323560.7 +UniRef50_F3YB73 ABC transporter, substrate binding protein 3.02290428433e-05 2.33459958245e-05 -2778770545.97 +UniRef50_I0C1S7 Cystathionine beta lyase 0.0296191243874 0.00721835302993 -9.0434662854e+12 +UniRef50_R4LHW2 2.87512876844e-05 0.000382881563503 1.42966738015e+11 +UniRef50_B3DWK0 Potassium transporting ATPase A chain 3.60600399222e-06 0.00123864952253 4.98602224123e+11 +UniRef50_O34849 Glutamate synthase large subunit like protein YerD 0.0227681889695 0.00362687116443 -7.7275848883e+12 +UniRef50_UPI0002557A0F siderophore interacting protein 6.59130498712e-06 0.00072864450845 2.91501738827e+11 +UniRef50_Q8E6D9 0.000310262456591 0.000798153257284 1.96967503333e+11 +UniRef50_O68826 0.000931733320452 0.000208950498955 -2.91796294581e+11 +UniRef50_U3TU21 6.38643809769e-05 8.63676481117e-05 9084845088.46 +UniRef50_G7L9I0 Acyl coa ligase acetate coa synthetase like protein 3.9860053148e-05 8.94260459322e-05 20010399530.1 +UniRef50_A5UN41 Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC 0.00641577670655 0.000204607416996 -2.50752526181e+12 +UniRef50_Q2RWR8 Light independent protochlorophyllide reductase subunit N 0.00279925995383 0.000247765632391 -1.03006956792e+12 +UniRef50_A0A038C8Y6 Cytochrome C 0.00037308813651 0.000100241184142 -1.1015166288e+11 +UniRef50_E3PS54 Chemotaxis protein cheV 0.000260684454239 0.000394193599824 53899280414.1 +UniRef50_E2PUY3 0.000394650836142 0.000493294214213 39823542217.6 +UniRef50_Q4UTY2 1.87975087287e-05 0.00139275840481 5.54684874144e+11 +UniRef50_P59342 Signal transduction histidine protein kinase BarA 0.00255674962222 0.00111423204895 -5.8236204601e+11 +UniRef50_F4QP68 Con 0.000351724753556 0.000244870308802 -43138450598.7 +UniRef50_Q8CTA4 Probable cysteine desulfurase 0.0116012133078 0.00334362107704 -3.33369131561e+12 +UniRef50_P0AEZ0 Multidrug transporter MdfA 0.00338887515633 0.000202966807698 -1.28619029583e+12 +UniRef50_UPI000472B3B4 citrate synthase 2.52264029814e-05 2.88395252757e-05 1458661808.21 +UniRef50_H1QU98 3.32211935216e-05 4.05030751855e-05 2939784986.45 +UniRef50_A6U5R2 CDP alcohol phosphatidyltransferase 0.00559283866341 0.00284050331352 -1.1111515557e+12 +UniRef50_UPI00037E82AA hypothetical protein 4.07924383952e-06 9.35558676313e-05 36122811026.4 +UniRef50_UPI000469723A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.63540976938e-05 4.70010769993e-06 -8741981484.88 +UniRef50_S2KTE6 5.79290312825e-05 4.80815273452e-05 -3975558181.95 +UniRef50_Q89XM4 Probable malate 4.51833002291e-06 1.23823168975e-05 3174788003.24 +UniRef50_X1HXX0 Marine sediment metagenome DNA, contig 8.3250523713e-06 1.85283957945e-05 4119214949.05 +UniRef50_P31435 Inner membrane symporter YicJ 0.00231572115467 0.000128959259902 -8.82822611505e+11 +UniRef50_UPI000262EE20 dihydrodipicolinate synthase 0.000295215906576 1.84269865245e-05 -1.11743083607e+11 +UniRef50_G9ZDP3 0.000138369049228 0.000966936400493 3.3450280737e+11 +UniRef50_P39838 Phosphotransferase RcsD 0.00260629142624 0.000894692820875 -6.90993360665e+11 +UniRef50_A6QGC0 Serine threonine protein kinase PrkC 0.0200006900278 0.00628270961267 -5.53811703213e+12 +UniRef50_Q1D6P1 Adenylyl sulfate kinase 9.70175687895e-06 0.000283770433577 1.10644887984e+11 +UniRef50_I4W1C3 1.13760467093e-05 2.25652833288e-05 4517232130.67 +UniRef50_UPI0002485EB3 hypothetical protein 1.60740062749e-05 2.07056127816e-05 1869836382.96 +UniRef50_I0HUK7 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 7.62172273348e-05 6.69296159532e-05 -3749522686.56 +UniRef50_UPI0003958A44 PREDICTED 8.82774132372e-07 1.62064737223e-06 297888481.654 +UniRef50_UPI00036FE39E hypothetical protein, partial 0.000483316287144 0.000243759331503 -96712082686.7 +UniRef50_A3PQ32 0.00279762514892 0.000259809418055 -1.02454735305e+12 +UniRef50_R9ZF14 Amino acid permease 0.000283099100471 0.000275675246015 -2997101144.83 +UniRef50_A3PQ31 0.00229846696065 0.000172586821474 -8.5824389967e+11 +UniRef50_Q6GHV7 Iron regulated surface determinant protein B 0.00735749900875 0.00150770996298 -2.36163162276e+12 +UniRef50_UPI0003C39CE6 PREDICTED 8.80318725684e-06 0.000121115870208 45342008338.9 +UniRef50_UPI000332F601 PREDICTED 5.89394213897e-06 1.07491112001e-05 1960091329.6 +UniRef50_Q6A8F8 Prephenate dehydrogenase 0.000314285284399 0.00457819241861 1.72139163411e+12 +UniRef50_A7GYD5 Queuine tRNA ribosyltransferase 0.000157504585052 0.00338067109926 1.30123187449e+12 +UniRef50_UPI00021A56D6 PREDICTED 8.01070467196e-05 5.63002897271e-06 -30067286000.2 +UniRef50_K9ZXB7 CBS domain containing protein 0.000328465724026 0.0539731037927 2.16569986821e+13 +UniRef50_H7D9R4 2.71412411866e-05 2.76477902219e-05 204500061.606 +UniRef50_A4G4T2 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 8.41005303552e-06 2.34400621804e-05 6067799130.75 +UniRef50_Q1ITV2 Uroporphyrinogen decarboxylase 8.42151379326e-06 3.02433779968e-05 8809754363.34 +UniRef50_R7B6C4 1.69834659412e-05 0.00451752463745 1.81692369879e+12 +UniRef50_Q5GRY9 Bifunctional DNA directed RNA polymerase subunit beta beta 1.79792369786e-06 9.76987833366e-07 -331421882.512 +UniRef50_Q73CC8 4.3774950384e-05 0.000287402917485 98355599970.0 +UniRef50_W2BNM9 0.000351477028217 0.000180254347023 -69124697536.6 +UniRef50_L7VQV4 Chemotaxis signal transduction protein 0.00188742994426 0.000798153257284 -4.39754365462e+11 +UniRef50_Q5HR61 Lipoprotein, putative 0.00352892021664 0.000515087276506 -1.21672134182e+12 +UniRef50_Q8CNG1 Alkaline shock protein 23 0.00939906504637 0.00467786345862 -1.90600701663e+12 +UniRef50_A0A009JWB2 NMT1 like family protein 0.000219214033654 0.0045170019846 1.73506973559e+12 +UniRef50_UPI0004646F16 MULTISPECIES 5.32047382301e-05 4.96484554156e-06 -19475036648.4 +UniRef50_Q10663 Bifunctional glyoxylate cycle protein 1.61892842561e-05 7.23137931487e-05 22658152965.1 +UniRef50_UPI000479F146 membrane protein 0.000126899833684 2.54220062823e-05 -40967844195.2 +UniRef50_UPI00047D9998 hypothetical protein 4.28445629851e-06 1.64898361668e-05 4927461629.69 +UniRef50_UPI000463D3E1 hypothetical protein, partial 0.00028511064625 4.70778567852e-05 -96096758097.8 +UniRef50_D7A1G5 CoA binding domain protein 0.0119510548909 0.00373121547901 -3.31845003935e+12 +UniRef50_B8D8U8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.84864750408e-05 1.40563332668e-05 -13899870739.5 +UniRef50_A6LSU4 NLP P60 protein 0.000797843429186 0.00146881804754 2.70880687214e+11 +UniRef50_D3VF61 0.000125076155752 0.00172894053548 6.47499731726e+11 +UniRef50_UPI000225EED0 hypothetical protein 0.000524182851017 5.77344291136e-05 -1.88310951888e+11 +UniRef50_Q0VLR3 2 isopropylmalate synthase 3.30115460854e-06 1.02117725323e-05 2789901258.64 +UniRef50_D3E453 0.000281006939596 0.000448582337002 67652244314.2 +UniRef50_A6LZX3 Integral membrane sensor signal transduction histidine kinase 0.000486333402586 0.000311497818071 -70583270942.6 +UniRef50_P75955 Inner membrane protein YcfT 0.00241182691576 0.00262680601437 86789700199.1 +UniRef50_Q47MV7 Glutamate 5 kinase 3.29849662778e-06 2.36970014462e-05 8235126712.99 +UniRef50_S6AZQ2 0.00050005205796 0.000352266447552 -59662864455.1 +UniRef50_UPI000462853E hypothetical protein, partial 0.000112162495156 0.000367120772478 1.02929785245e+11 +UniRef50_M4U374 5.57805457311e-05 3.0362871688e-05 -10261426921.1 +UniRef50_A0A016RSJ2 1.19382925661e-05 4.65045140085e-06 -2942190910.28 +UniRef50_C4LD11 Lipoprotein signal peptidase 1.52633460013e-05 4.59392997355e-05 12384258958.8 +UniRef50_UPI00034B23A9 short chain dehydrogenase 1.00200318349e-05 3.88574995336e-05 11642039585.5 +UniRef50_Q5FKL1 ABC transporter permease protein 0.00547395882956 0.00459091603716 -3.56495211445e+11 +UniRef50_N9UUM3 0.000106368692312 3.63701127046e-05 -28259285566.7 +UniRef50_UPI0003B52215 DNA binding protein 4.42376714408e-06 1.68870941609e-05 5031598058.9 +UniRef50_UPI00035FA7D7 hypothetical protein, partial 0.000647238695935 0.000137016865797 -2.05982813953e+11 +UniRef50_Q62EE6 0.000208058327649 0.000133244660059 -30203195673.0 +UniRef50_A3U2E2 Conserved hypothetical membrane transport protein 2.41536815043e-05 5.09473578659e-06 -7694330265.8 +UniRef50_W4YD04 4.03457436118e-05 3.43988386493e-06 -14899348465.7 +UniRef50_P24058 Argininosuccinate lyase 1.08917128847e-05 1.51956498948e-05 1737552186.22 +UniRef50_M1LMT5 0.000200183947922 0.000609794605777 1.65364849064e+11 +UniRef50_A6M2W5 PTS system, glucose subfamily, IIA subunit 0.000342317683734 0.00147436408563 4.57021024219e+11 +UniRef50_Q48KY0 ABC transporter, periplasmic substrate binding protein 0.000733202216425 0.00107055885817 1.36195016104e+11 +UniRef50_E3NWX2 1.35906150107e-05 2.00419922195e-05 2604500146.49 +UniRef50_L7WTB5 0.0126853930021 0.00409309231191 -3.46881722802e+12 +UniRef50_UPI0003F8C100 hypothetical protein 2.50796875593e-05 8.60872697421e-05 24629509574.4 +UniRef50_V1V9W3 CRISPR associated helicase Cas3 4.60609109534e-05 1.8084069521e-05 -11294594200.7 +UniRef50_V9T452 Metabolite transporter 0.000453319643236 0.000691796571308 96276062303.7 +UniRef50_UPI000365F8BA hypothetical protein 3.65426245409e-05 2.21009095989e-05 -5830297541.86 +UniRef50_UPI0003752AFD hypothetical protein 4.11786268328e-06 3.70246650888e-06 -167700533.09 +UniRef50_UPI00037D7BC7 hypothetical protein 8.26747672476e-06 1.01294357838e-05 751695720.942 +UniRef50_R7PV18 0.00254528818971 0.00153425705328 -4.08165676524e+11 +UniRef50_B2I366 AraC type DNA binding domain containing protein 0.000174224302552 0.0035624932681 1.36788576013e+12 +UniRef50_D9UQS5 Predicted protein 0.000153704938436 0.00288204546397 1.10146455066e+12 +UniRef50_A0A013KTF4 RND transporter, hydrophobe amphiphile efflux 1 family protein 0.000190155436503 0.00424562984796 1.63724478617e+12 +UniRef50_Q8CNB4 Suppressor protein suhB 0.0205363734508 0.00387997249331 -6.72439346357e+12 +UniRef50_W1JGD0 Chromosome partitioning protein ParA 3.67464134888e-05 5.19238706528e-05 6127325705.45 +UniRef50_A9W1N1 NADH quinone oxidoreductase subunit C 2.29895916313e-05 1.9370559757e-05 -1461047578.17 +UniRef50_G2KMP2 7.48751664942e-05 1.14823989632e-05 -25592438169.0 +UniRef50_B4RBF0 2.81039508838e-05 1.18978572786e-05 -6542598859.55 +UniRef50_U7I221 1.00178593389e-05 0.00023545333027 91011066019.2 +UniRef50_F7YAM4 40 residue YVTN family beta propeller repeat protein 8.35260083823e-06 1.37899573565e-05 2195127550.29 +UniRef50_F3U494 0.00211103411265 0.000419881571359 -6.82739033694e+11 +UniRef50_A1WXI4 PUCC protein 6.21373522621e-05 1.37220155077e-05 -19545865570.7 +UniRef50_W7Q5R4 0.000107365377118 5.74125272899e-05 -20166578466.0 +UniRef50_Q6A6L3 0.000422202443506 0.00268888563384 9.15087819267e+11 +UniRef50_S6D6P3 WGR domain containing protein 1.27499681222e-05 3.15993610435e-05 7609731230.39 +UniRef50_U5UEG4 0.0019194202823 0.000735228311697 -4.78072830201e+11 +UniRef50_J9P5M7 0.000136814236102 3.27126918155e-05 -42027070898.3 +UniRef50_Q99UZ6 UPF0637 protein SA0957 0.0127713706438 0.00134852561107 -4.61154271377e+12 +UniRef50_UPI000255A9F7 hypothetical protein 8.83748543371e-06 5.41006802445e-06 -1383690467.26 +UniRef50_UPI0003643826 hypothetical protein 0.000158139427465 0.000189548075737 12680056734.9 +UniRef50_J2ESL9 4.93930104175e-05 0.000275731505796 91375628070.2 +UniRef50_A1SQR8 MATE efflux family protein 8.47014185883e-05 0.0025880742242 1.01064232146e+12 +UniRef50_UPI0003B7A75E 30S ribosomal protein S3 0.000778606674529 0.0010117449914 94120799449.7 +UniRef50_Q49XH5 Anthranilate phosphoribosyltransferase 0.0135250915562 0.00226916526297 -4.54415557031e+12 +UniRef50_L7VTP9 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.0007691484078 0.00319424384842 9.79040788646e+11 +UniRef50_UPI00016AD049 hypothetical protein 5.83768591014e-05 0.000117344386165 23805914288.5 +UniRef50_UPI0003B3A739 LysR family transcriptional regulator 5.86357539184e-06 7.64784512391e-06 720331586.288 +UniRef50_UPI000361DB5D hypothetical protein 3.48987221364e-05 5.29513615232e-05 7288072051.25 +UniRef50_N2K746 Carbon nitrogen hydrolase family protein 0.00212394063714 0.00173001133681 -1.59034092599e+11 +UniRef50_K9ZW90 ABC type dipeptide transport system, periplasmic component 0.000274144141253 0.0451789999792 1.81286413463e+13 +UniRef50_Q9K4A0 Peptide deformylase 4 9.87069931391e-06 4.760157762e-05 15232418582.1 +UniRef50_S6AT93 Cell envelope biogenesis, outer membrane 0.00666171340015 0.00277307897506 -1.56988943632e+12 +UniRef50_Q1CUW5 UDP 3 O acylglucosamine N acyltransferase 0.00019259489227 0.00265767275438 9.95182182841e+11 +UniRef50_G0DWZ2 RNA polymerase sigma factor 0.000471006785139 0.00430168989131 1.54649377773e+12 +UniRef50_UPI000262CE6F hypothetical protein 6.87885144361e-06 2.59154683061e-05 7685315832.95 +UniRef50_UPI0003B63E94 ABC transporter ATP binding protein, partial 5.52649090923e-06 1.49318050023e-05 3797040715.56 +UniRef50_H7CIC3 Transposase 1.98455668339e-05 0.000881542403566 3.47877587198e+11 +UniRef50_G5N518 Fatty acid oxidation complex subunit alpha 0.000318128658783 0.000163766609902 -62317853368.6 +UniRef50_Q81E30 Isoleucine tRNA ligase 2 1.01306427643e-05 0.0010777983624 4.31030560175e+11 +UniRef50_A0M554 Bifunctional protein FolD 5.50032623799e-06 0.00348817449062 1.40599829738e+12 +UniRef50_Q9HY42 0.000654521766087 0.000246782762008 -1.64609239467e+11 +UniRef50_UPI00046FBD60 zinc ABC transporter permease 8.90258036447e-05 7.00717408614e-05 -7651987738.12 +UniRef50_UPI000454835D PREDICTED 0.000115709365715 0.00013398452951 7377907885.52 +UniRef50_D4HAD9 Transcriptional regulator, GntR family 0.000201147063333 0.00825319342539 3.25070992608e+12 +UniRef50_K8BR71 1.52221549152e-05 0.000152729341708 55513338711.3 +UniRef50_F0IYA9 Fis family transcriptional regulator 0.000750339080106 0.000100107357691 -2.62506525579e+11 +UniRef50_UPI00035D0C93 hypothetical protein 3.4565128931e-06 0.000698399980968 2.80557205977e+11 +UniRef50_UPI0002555FCE imidazole glycerol phosphate dehydratase histidinol phosphatase, partial 3.03751079853e-05 1.07909440812e-05 -7906367292.8 +UniRef50_A8LPP5 Fasciclin domain protein 0.000136141074323 2.32521827794e-05 -45574630818.8 +UniRef50_H0HUE0 9.3042639515e-05 0.000118906037747 10441371245.8 +UniRef50_Q3JW66 6.12099358892e-05 0.000175555559619 46162731478.4 +UniRef50_X9N9G2 2.41080840469e-05 2.4213514173e-05 42563435.6797 +UniRef50_R4ZLZ8 CRISPR associated protein, Csd1 family 0.00407796947547 0.00358852439641 -1.97594984583e+11 +UniRef50_T2G5V0 Alcohol dehydrogenase 0.00179821987898 0.0011505845657 -2.6145832335e+11 +UniRef50_R4K4U3 Acetyltransferase 0.000214075229968 0.0041299634809 1.58089214025e+12 +UniRef50_R5SMM9 Ribose 5 phosphate isomerase B 0.000292624797564 0.00269832289913 9.71209844839e+11 +UniRef50_P07767 Staphylocoagulase 0.000891101614873 0.000279670721547 -2.46842154737e+11 +UniRef50_I2DEZ6 0.000309414744966 0.010244307799 4.01083824076e+12 +UniRef50_Q08YM3 8.06019904975e-05 0.000141484359108 24578959318.7 +UniRef50_P23686 S adenosylmethionine synthase 1 2.68634781478e-05 0.000143100081182 46926143028.3 +UniRef50_Q2FUW5 Accessory Sec system protein Asp3 0.0180184349975 0.00118715602158 -6.79499386559e+12 +UniRef50_R9SJT9 GTP binding protein 0.0038798835156 0.000262503737955 -1.46038060648e+12 +UniRef50_D4HAU1 Protoporphyrinogen oxidase 0.000120859975083 0.00581960564746 2.30065355941e+12 +UniRef50_UPI00045FEC12 BACTERIOPHYTOCHROME 9.19910082896e-05 0.000136254213057 17869598935.2 +UniRef50_L7U2C9 Acetyltransferase 0.00079031779135 0.00629367813348 2.22177410394e+12 +UniRef50_E2ZQ75 Transcriptional regulator MvfR 0.000471070856723 0.00031754484429 -61980335195.2 +UniRef50_F6CTL5 6.8079414737e-05 4.38958042668e-05 -9763220313.09 +UniRef50_UPI00037028AC hypothetical protein 1.41825565881e-06 2.05269676918e-06 256131661.724 +UniRef50_A3IGB3 0.000106128809742 0.000130786162504 9954475889.76 +UniRef50_W0BIN9 Type F conjugative transfer system protein TraU 7.72731483335e-05 6.17944928903e-06 -28701398722.1 +UniRef50_I3U834 Class I fumarate hydratase 0.0124444202278 0.00253967620413 -3.99866670723e+12 +UniRef50_B0T5G6 7.13552987952e-05 2.18760238842e-05 -19975390460.6 +UniRef50_A3RI32 InlD 8.96351454047e-06 0.00186182077585 7.48021213506e+11 +UniRef50_C8VZF1 0.000165648127513 0.00110664458971 3.79891819114e+11 +UniRef50_S6GJT1 Transposase IS4 family protein 8.00135581017e-05 2.26016569499e-05 -23177889018.2 +UniRef50_A1VL02 3.79569549192e-06 1.37483009212e-05 4017988944.0 +UniRef50_A3PSC3 Exopolysaccharide synthesis, ExoD 0.0179426048629 0.000307088428274 -7.11967439677e+12 +UniRef50_R9YTG8 2 dehydropantoate 2 reductase 0.0120323072358 0.0025850160321 -3.81398739023e+12 +UniRef50_A0A017HHJ1 GTA NlpC P60 family peptidase 2.17264650816e-06 1.60954727843e-05 5620815819.95 +UniRef50_P0CN05 Sulfate adenylyltransferase 8.66673763086e-05 4.8258784417e-05 -15506019873.1 +UniRef50_H3XP79 Polysaccharide lyase family 8, N terminal alpha helical domain protein 0.00148021225853 0.000147904860699 -5.37868845754e+11 +UniRef50_UPI000364E3EA hypothetical protein 3.13583077314e-06 5.34240374384e-05 20301966136.5 +UniRef50_A4WQ10 0.00957533188303 0.00482204096459 -1.91896187321e+12 +UniRef50_J9CA10 Heat shock protein 70 9.34312941969e-05 2.73159324097e-05 -26691582880.2 +UniRef50_UPI000360AA50 hypothetical protein 0.00042500984386 0.000129809540745 -1.19175984883e+11 +UniRef50_UPI00036E022C hypothetical protein 4.40548697361e-06 1.61974918006e-05 4760577052.83 +UniRef50_F0MD69 DNA polymerase III, subunits gamma and tau 6.85507243663e-05 0.00200319236008 7.81038569059e+11 +UniRef50_B1MWT1 ABC type dipeptide oligopeptide nickel transport system, permease component 0.00498890056194 0.00176785652579 -1.30037500405e+12 +UniRef50_A3PM79 Serine type D Ala D Ala carboxypeptidase 0.00243249388246 0.00126905425843 -4.69694853231e+11 +UniRef50_UPI00045E67CF glycine cleavage system protein T 2.88806059134e-05 7.08638166951e-05 16949137384.5 +UniRef50_P77395 0.00275595423458 0.000674553615773 -8.40286971471e+11 +UniRef50_P77396 0.00518909163125 0.000209692335056 -2.01024459997e+12 +UniRef50_Q9AAI4 Nitrate transporter, NarK NasA family 0.000187961899644 0.000149653735742 -15465475861.3 +UniRef50_P77393 0.00303542744177 0.000454333392607 -1.04201934123e+12 +UniRef50_UPI0003B386AE riboflavin biosynthesis protein RibD 3.95619473929e-06 2.17629826385e-05 7188818788.77 +UniRef50_UPI00046F45E9 acetolactate synthase, partial 1.26145973697e-05 1.29499774205e-05 135397042.084 +UniRef50_E0RYK6 0.000477064205795 0.000366095089089 -44799594158.4 +UniRef50_Q1D2V0 0.000229270690754 6.96554779793e-05 -64438620096.2 +UniRef50_A6LYQ9 MgtE intracellular region 0.000778783445918 0.00182375975708 4.21869760117e+11 +UniRef50_Q9ZJ66 Protein translocase subunit SecD 7.19477742357e-05 0.00430349867376 1.70832902511e+12 +UniRef50_Q9RY56 0.0012868840529 0.0856974139648 3.40775667591e+13 +UniRef50_F0Y593 Expressed protein 6.79746678562e-05 0.000203621740952 54762387985.6 +UniRef50_UPI00016C4E10 L lactate transport 6.40087889592e-06 2.37563049446e-05 7006598470.89 +UniRef50_F7XJ23 Probabable oxidoreductase 0.00152973631894 0.000163610362995 -5.51521812664e+11 +UniRef50_A5UJA6 FO synthase subunit 2 0.0043849179996 0.000669869052369 -1.49981084877e+12 +UniRef50_G7M8E1 Methyl accepting chemotaxis sensory transducer 0.000315646709896 0.0010186938379 2.83828752934e+11 +UniRef50_A7HAH7 0.00122974048291 2.67046014032e-05 -4.85680348276e+11 +UniRef50_UPI0003C10094 PREDICTED 0.000148208300138 0.000272552474527 50199269075.4 +UniRef50_X0W6C2 Marine sediment metagenome DNA, contig 1.40198881287e-05 2.29401031479e-05 3601200266.6 +UniRef50_F0L9R1 0.00274742857058 0.000246782762008 -1.00954139929e+12 +UniRef50_Q3IVS2 DNA RNA helicase, superfamily I 0.0145698263695 0.00561308000246 -3.61594842001e+12 +UniRef50_L0GGN0 Sortase like acyltransferase 0.00289346571643 0.00218304703237 -2.86804740573e+11 +UniRef50_K0F249 0.00129513709669 0.000410730566622 -3.57045769077e+11 +UniRef50_G7M575 Glycosyl transferase family 2 0.000219044094112 0.00125029145194 4.16327213184e+11 +UniRef50_B5GAK8 0.000105658346524 5.86305601958e-06 -40288583402.6 +UniRef50_P42630 L serine dehydratase TdcG 0.00247132578896 0.00207823377355 -1.58696070402e+11 +UniRef50_B8CN82 Membrane protein, putative 0.00021151823521 0.00475515729874 1.83432284667e+12 +UniRef50_UPI00037851B2 Cro Cl family transcriptional regulator 0.000223169118924 2.32010012462e-05 -80729582991.4 +UniRef50_A0A009R342 SIR2 like domain protein 0.000174934374443 0.00447790858427 1.73716349194e+12 +UniRef50_B9IYZ4 Holliday junction ATP dependent DNA helicase RuvB 2.26009559294e-05 1.69288290383e-05 -2289907230.76 +UniRef50_K0DBQ7 N acetylmuramidase 9.04519142585e-05 9.87614594499e-05 3354665363.35 +UniRef50_F0YLQ9 Expressed protein 7.70467574157e-05 0.000117269817374 16238542897.6 +UniRef50_R6W776 4.1083078976e-06 1.4152027308e-05 4054772776.28 +UniRef50_Q9Z507 UvrABC system protein A 0.00240516396843 0.00350956576135 4.45860556336e+11 +UniRef50_Q6Q6S9 Transposase 0.00328366531921 0.00112814533443 -8.7020986906e+11 +UniRef50_A3PMA4 0.00301625501939 0.000575142650046 -9.8550701932e+11 +UniRef50_UPI00047EB0D1 hypothetical protein 1.53697446174e-05 2.11723949313e-05 2342601138.25 +UniRef50_UPI00046FEBC7 hypothetical protein, partial 0.000211218215929 3.13933268058e-05 -72597514438.5 +UniRef50_A0CK68 Chromosome undetermined scaffold_2, whole genome shotgun sequence 5.06454839465e-06 4.77845779698e-06 -115498285.006 +UniRef50_P0ABG8 Rod shape determining protein RodA 0.00204996373829 0.000390389599975 -6.69990444905e+11 +UniRef50_P45302 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.67241204059e-05 0.000105627474753 35891375116.8 +UniRef50_E8ZM45 Glycosyl transferase 0.00021502495634 0.000651366546483 1.76156454454e+11 +UniRef50_A7FBG3 0.000220752040266 0.00518396144049 2.0037085403e+12 +UniRef50_UPI00036C2B1F hypothetical protein 1.89413571635e-05 7.995280597e-06 -4419065433.36 +UniRef50_A5CER5 UDP N acetylglucosamine 1 carboxyvinyltransferase 4.26516018867e-06 2.81389213817e-05 9638130357.61 +UniRef50_A7FBG6 0.000283824051773 0.0165990338495 6.58665040547e+12 +UniRef50_W5X953 7.5461739983e-06 2.20288306643e-05 5846826218.25 +UniRef50_P64591 Inner membrane protein YhaH 0.000309414744966 0.000509166733097 80642328841.0 +UniRef50_UPI000362EFC5 hypothetical protein 0.00045758375803 0.000129576420532 -1.32420587251e+11 +UniRef50_P65337 4 alpha glucanotransferase 0.000464388236668 0.0032671639809 1.13151496187e+12 +UniRef50_P57495 2 C methyl D erythritol 4 phosphate cytidylyltransferase 4.75384970703e-06 9.78780420531e-06 2032269204.52 +UniRef50_A3QD67 Putative phosphoenolpyruvate synthase regulatory protein 4.8070327858e-05 4.1351098822e-05 -2712635216.05 +UniRef50_UPI0003825FE8 hypothetical protein 5.67729384766e-06 1.31512163646e-05 3017314235.43 +UniRef50_UPI00042AFCA9 3 deoxy d arabino heptulosonate 7 phosphate synthase isoform 2 8.93999551072e-05 7.270313004e-06 -33156744361.1 +UniRef50_B9QHN7 Fop carboxy terminal duplication domain protein 1.24604536009e-05 1.39347806097e-05 595203905.479 +UniRef50_F2K6Q0 0.00034883931899 0.000310219687605 -15591219106.3 +UniRef50_A5UJV7 Predicted ATPase 0.00138651162624 0.000555154535075 -3.35629059602e+11 +UniRef50_UPI0004638AC0 pseudouridylate synthase 3.79522823976e-06 1.59041197854e-05 4888508109.77 +UniRef50_U3SSX9 0.00109920758824 0.00131074944342 85402042846.6 +UniRef50_B6JNM2 0.000145373294809 0.00143427378236 5.20344943412e+11 +UniRef50_UPI0003B66BEF hypothetical protein 2.80925328084e-06 7.10154014485e-06 1732848879.28 +UniRef50_UPI00016A3D53 hypothetical protein 2.05957893886e-05 0.00011257307694 37132359672.7 +UniRef50_L7ZK34 4.21954090877e-06 4.65013189178e-06 173834863.787 +UniRef50_UPI00016C4097 N acetylglucosamine 6 phosphate deacetylase 3.90915292231e-06 4.34025037695e-05 15943950374.9 +UniRef50_W7WGN1 Conjugal transfer pilus assembly protein TraU 4.34282615706e-05 2.09811551215e-05 -9062172330.47 +UniRef50_X1K791 Marine sediment metagenome DNA, contig 6.95458895387e-05 4.07912186597e-05 -11608613493.3 +UniRef50_F5M3F1 0.0140979278469 0.00176340253976 -4.97959922812e+12 +UniRef50_Q28TC8 Poly hydroxyalkanoic acid synthase class I 0.0128254359661 0.0025555499169 -4.14607902374e+12 +UniRef50_K4RP34 2.42331580952e-05 3.99913894867e-05 6361791387.99 +UniRef50_K0CEM4 1.78619122722e-05 2.99332135945e-05 4873332475.34 +UniRef50_G3JJ51 0.00036464516813 0.000124316695035 -97023553750.5 +UniRef50_B0VMS2 Glucose 6 phosphate isomerase 0.000140315632812 0.00541471397371 2.12933933437e+12 +UniRef50_M7N0E8 1.07805409696e-05 0.000175789264417 66616046540.3 +UniRef50_A1AHM5 Protein CbrA 0.00270850118131 0.00103644776956 -6.75028480726e+11 +UniRef50_U5US29 Sugar binding domain containing protein 0.0238283979351 0.00430065906079 -7.88358781586e+12 +UniRef50_F9Y8V6 Sugar ABC transporter, permease protein 0.00499629151528 0.000561743921953 -1.79028128145e+12 +UniRef50_K4SRD4 Dipeptide transport system permease protein DppB 0.00129624045077 0.00057177546971 -2.92475403039e+11 +UniRef50_Q9CGD4 Spermidine putrescine import ATP binding protein PotA 0.0220717240045 0.0117986208112 -4.14737782429e+12 +UniRef50_R7NLL0 DNA gyrase subunit A 0.000670232166133 0.00173053561961 4.28057515556e+11 +UniRef50_UPI00047067CD glucosamine 6 phosphate deaminase, partial 8.22353266728e-06 3.18872935021e-05 9553350636.01 +UniRef50_V7CWH6 3.02727971801e-05 0.00109113158883 4.2828171239e+11 +UniRef50_UPI0003B4DB15 cytidylate kinase, partial 3.79102273253e-06 2.15961074492e-05 7188131193.09 +UniRef50_UPI0003671825 hypothetical protein 2.71097325595e-06 1.19476356439e-05 3728953952.61 +UniRef50_B2TRK3 0.000327307629567 0.00128035550184 3.84757121249e+11 +UniRef50_Q9PJJ6 Uracil phosphoribosyltransferase 4.28211371521e-05 8.4011087215e-05 16628888297.9 +UniRef50_Q9KPM0 Purine nucleoside phosphorylase DeoD type 1 4.48666169995e-05 0.000199162292457 62291057603.3 +UniRef50_Q9T074 Phosphoenolpyruvate carboxykinase [ATP] 2.27931273648e-05 0.000100344595358 31308479292.4 +UniRef50_D7FYR4 4.48323268177e-06 2.03353743523e-05 6399704120.03 +UniRef50_N0AZY0 O succinylhomoserine sulfhydrylase 0.00675324090328 0.00119881111659 -2.24239146541e+12 +UniRef50_U3SUT1 0.00109731845795 0.000475040276462 -2.51221338079e+11 +UniRef50_Q5WLC5 DNA topology modulation protein 7.81215853437e-06 5.113833143e-05 17491307669.9 +UniRef50_B8H4F1 30S ribosomal protein S5 0.000450396837036 0.00302886435331 1.04095897767e+12 +UniRef50_G7MCN9 Multi copper polyphenol oxidoreductase, laccase 0.000684347708219 0.00417265236202 1.40827139505e+12 +UniRef50_Q4L5J1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0219691222633 0.00404841343878 -7.23481006428e+12 +UniRef50_H2A5L6 Methionine aminopeptidase 0.00767421224142 0.00563499588463 -8.23256667235e+11 +UniRef50_B2J1L7 GTP cyclohydrolase 1 4.8682242234e-05 7.07227873637e-05 8898038536.76 +UniRef50_A3XAI3 YjeF family protein 0.000140951311241 0.000142949085815 806526110.975 +UniRef50_B7H075 PAP2 superfamily protein 0.000249990721098 0.00695879246941 2.70842559205e+12 +UniRef50_Q2FHE2 DNA mismatch repair protein MutL 0.00952032784163 0.00216783625253 -2.96829107974e+12 +UniRef50_UPI000464DC75 single stranded DNA binding protein 3.14535636632e-05 1.98411718515e-05 -4688065074.46 +UniRef50_Q3JR54 TGS domain protein 0.00010987338872 5.89633641674e-05 -20553001648.1 +UniRef50_UPI0003AE8A89 PREDICTED 3.2236419172e-05 5.22552828144e-05 8081860911.52 +UniRef50_Q0E488 Os02g0130900 protein 2.47839761942e-05 0.000115159096259 36485544997.6 +UniRef50_A6QIU2 0.0133631829497 0.00660254714741 -2.72935163572e+12 +UniRef50_Q81LI6 Histidine tRNA ligase 2 6.05683659156e-06 0.000157923371754 61310383856.9 +UniRef50_W8S4A4 Protein YicC 0.000136770285816 0.000306027673785 68331284544.8 +UniRef50_V5SV57 0.000514559926055 0.000233302174728 -1.13547205631e+11 +UniRef50_Q8LJZ2 7.40195490323e-05 4.54619261406e-06 -28047246520.0 +UniRef50_S9U807 Cysteine peptidase, Clan CA, family C2 3.81383318105e-05 0.000113510584958 30428703517.2 +UniRef50_B9KLW3 Methyltransferase type 11 0.000181193274649 0.00033432079833 61819460396.0 +UniRef50_Q8CR86 0.0130258184829 0.00416449475046 -3.57742513146e+12 +UniRef50_Q99TF2 Acetate kinase 0.0110429406593 0.00252228914876 -3.43989157496e+12 +UniRef50_C9X377 Transferrin binding protein like lipoprotein 0.000235770934863 0.00332350705495 1.24655696246e+12 +UniRef50_I8D2T2 3.91736585175e-05 3.48437649235e-05 -1748031177.67 +UniRef50_H4F9I1 0.00020409186668 0.00028441761388 32428489852.4 +UniRef50_D3QE86 0.0149390681443 0.00380037664747 -4.49682644437e+12 +UniRef50_M0P490 8.47914995835e-06 3.91037367168e-05 12363521480.3 +UniRef50_Q4L8R9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0371536610459 0.00463115467488 -1.3129734918e+13 +UniRef50_UPI00037720B7 hypothetical protein 4.27844974146e-06 5.11636622322e-06 338277166.078 +UniRef50_R2QE79 6.07454758073e-05 2.14500213981e-05 -15864057154.4 +UniRef50_Q3J608 0.00241180997245 0.00113249892452 -5.16473568961e+11 +UniRef50_Q2FF48 Potassium transporting ATPase A chain 0.0121757605997 0.00308036059727 -3.67192459409e+12 +UniRef50_G8VKL1 Aminopeptidase 0.000228443951264 0.00501687071736 1.93314664608e+12 +UniRef50_T3IE94 Lantibiotic protection ABC transporter, ATP binding subunit 0.00491760168657 0.00459536472765 -1.30091014608e+11 +UniRef50_UPI0003C1083C 1.15636922085e-05 7.81096278804e-05 26865410841.2 +UniRef50_UPI0004777ACC cytochrome C oxidase assembly protein 1.24873401575e-05 3.43151508444e-05 8812155031.66 +UniRef50_R5XYA5 1.88780176796e-05 0.000422464464533 1.62932801157e+11 +UniRef50_D9SWT5 Peptidase S8 and S53 subtilisin kexin sedolisin 0.000784146366399 0.0028236090099 8.23356096202e+11 +UniRef50_UPI00028A379D elongation factor Ts 1.02046940209e-05 7.60011162895e-05 26562823082.7 +UniRef50_J9FJB0 Saccharopine dehydrogenase 0.000231153987785 0.00306225818797 1.14295150717e+12 +UniRef50_U3K301 1.32199103878e-05 1.25374028727e-05 -275536659.155 +UniRef50_I4EDU8 0.000156642173136 8.08576556341e-05 -30595139696.1 +UniRef50_UPI0003B69687 TetR family transcriptional regulator 0.000209714438257 1.16432028074e-05 -79963788358.6 +UniRef50_D0W128 2.25521382485e-05 0.000239127205183 87434012196.2 +UniRef50_UPI0001A43259 putative phosphotransferase 6.89634486948e-05 0.000192792871721 49991457633.5 +UniRef50_I6GVM8 Sulfite reductase [NADPH] flavoprotein, alpha component 0.0021950314548 0.00142451398855 -3.11067356438e+11 +UniRef50_UPI00037830BD hypothetical protein 1.5906559715e-05 7.43200530196e-05 23582244061.2 +UniRef50_R6E4P6 Serine type site specific recombinase 1.3712473388e-05 0.00129618864504 5.17751368247e+11 +UniRef50_UPI00035FAB77 hypothetical protein 2.31886157963e-05 1.55446743371e-05 -3085952968.79 +UniRef50_UPI000465FD2A serine hydroxymethyltransferase, partial 6.53710428049e-06 2.2336452372e-05 6378390704.34 +UniRef50_A7HI44 LigA 0.000420840921965 0.000494900115158 29898605100.5 +UniRef50_Q92BC5 Probable thiol peroxidase 0.0035057383495 0.0115952506138 3.26583537058e+12 +UniRef50_B8ISV4 Trans aconitate 2 methyltransferase 1.14950461625e-05 1.58143801086e-05 1743768118.23 +UniRef50_B8CXG6 Probable transcriptional regulatory protein Hore_12350 0.000520188784642 0.00213255541097 6.50932193013e+11 +UniRef50_A5WCE7 ppGpp synthetase I, SpoT RelA 0.000282235933671 0.00852296119669 3.32688191375e+12 +UniRef50_P34439 Probable 3 hydroxyacyl CoA dehydrogenase F54C8.1 4.79699846193e-06 0.000203934005924 80394053598.3 +UniRef50_Q7UA36 ATP dependent Clp protease proteolytic subunit 1 0.0151744662169 0.00662953992431 -3.44969160236e+12 +UniRef50_Q49X60 Riboflavin kinase FAD synthase 0.0195883003266 0.00626948808107 -5.37696794371e+12 +UniRef50_Q7N8K6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 3.9274915163e-05 0.000319303263761 1.13050880663e+11 +UniRef50_Q8CUA2 Mobilization protein 0.0218652473694 0.00875040557276 -5.29462257049e+12 +UniRef50_P95468 Aromatic amino acid aminotransferase 0.00274196332831 0.000237520138222 -1.01107444881e+12 +UniRef50_C0R0E0 Polyribonucleotide nucleotidyltransferase 7.64798160711e-06 3.80371496121e-06 -1551977619.41 +UniRef50_UPI0003A14A99 MULTISPECIES 7.09286965793e-06 7.1966078548e-06 41880383.0872 +UniRef50_X4ZKX4 Short chain dehydrogenase family protein 2.82573100517e-05 0.000146495961606 47734394583.8 +UniRef50_B9K138 Aliphatic sulfonates import ATP binding protein SsuB 0.000143167884525 0.00823110031938 3.26519757404e+12 +UniRef50_Q8E7Y8 Peptidyl tRNA hydrolase 0.00870714843981 0.00198346027255 -2.71443542205e+12 +UniRef50_UPI000255A87B molybdopterin guanine dinucleotide biosynthesis protein A 7.28757194439e-06 8.76743166058e-06 597437527.347 +UniRef50_W5XDK2 PTS family mannose porter, IIC component 0.00491100226207 0.0087842133876 1.56366286102e+12 +UniRef50_A5ULS3 Phosphoglycolate phosphatase 0.0072767734872 0.000254583366547 -2.83494432367e+12 +UniRef50_L4FKH2 4.51634131801e-05 5.22527054792e-05 2862034296.55 +UniRef50_K4RIH9 Transporter 8.55330790492e-05 0.00254250391956 9.91909278737e+11 +UniRef50_UPI000289E54D type III effector Hrp dependent outer protein 5.08948921857e-06 8.36154763084e-06 1320970133.71 +UniRef50_A4WVU5 1.84443091994e-05 5.18069187171e-06 -5354685078.08 +UniRef50_Q8CPJ9 Bifunctional protein PyrR 0.0291188033147 0.0128620895508 -6.5630348388e+12 +UniRef50_D3SY39 Phosphate ABC transporter permease 0.00992980646005 0.00185358413255 -3.26047006e+12 +UniRef50_M4S0Q6 Terminase 6.80381581268e-05 8.51773331828e-06 -24029125892.9 +UniRef50_W7WA58 0.000363623768165 8.16008857599e-05 -1.13856098437e+11 +UniRef50_UPI0002F5E3FA hypothetical protein 2.85276503042e-05 4.37596678433e-05 6149352398.41 +UniRef50_F0Y592 Expressed protein 9.64991544013e-05 1.60507949224e-05 -32477989934.0 +UniRef50_P38376 Protein translocase subunit SecY 0.000131681158905 0.0135813830618 5.4298097046e+12 +UniRef50_G7IR91 0.00104465973016 0.00124818201005 82164441890.8 +UniRef50_Z7M6T4 Metallopeptidase M24 family protein 0.000489060365118 0.00021415374756 -1.10983174992e+11 +UniRef50_UPI0003814739 hypothetical protein 2.49613338224e-05 1.81011256377e-05 -2769550228.38 +UniRef50_UPI00047A93E4 spermidine putrescine ABC transporter ATP binding protein 3.24504463327e-05 1.49239317408e-05 -7075669015.27 +UniRef50_P45595 Phosphoenolpyruvate protein phosphotransferase 0.00712261071457 0.00764606899859 2.11326532814e+11 +UniRef50_Y0ZY08 0.00112537936997 0.000932579069031 -77835847414.8 +UniRef50_A5ULH9 Predicted ATP utilizing enzyme 0.00457451444521 0.000164674742667 -1.78030640273e+12 +UniRef50_UPI0003F0B3EF PREDICTED 2.72129061617e-06 4.87548917991e-06 869676395.171 +UniRef50_O27269 5 formaminoimidazole 4 carboxamide 1 D ribofuranosyl 5 monophosphate synthetase 0.00277832014223 0.00198739273996 -3.19307098067e+11 +UniRef50_UPI00047132A1 nitrogen regulatory protein P II 1 0.00104688960934 0.000444827548547 -2.43059842074e+11 +UniRef50_M1ZE43 0.000206427806697 0.000142242103311 -25912556104.1 +UniRef50_Q16CU0 0.000124497710774 2.24648628146e-05 -41191912804.9 +UniRef50_S6T1V4 Dihydrolipoamide acetyltransferase 0.000269977075502 0.000159630651457 -44548205489.9 +UniRef50_A3U124 Replication protein C 0.000144395785653 3.70473243083e-05 -43337891158.7 +UniRef50_V4L8B5 2.02828865414e-05 2.39629190012e-05 1485674263.1 +UniRef50_UPI00036FD615 hypothetical protein 0.000316046122464 3.26561663377e-05 -1.14408002874e+11 +UniRef50_B1HU19 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0127415276859 0.00398495056213 -3.53513764015e+12 +UniRef50_K1XG94 FeS assembly protein SufB 4.55686335477e-06 2.47627585042e-05 8157367826.03 +UniRef50_UPI000255B9CD GntR family transcriptional regulator 2.47366677286e-05 3.71815409845e-05 5024148049.17 +UniRef50_UPI0004014E85 hypothetical protein 0.000113418449329 0.000136921144716 9488326538.24 +UniRef50_UPI0003780E79 hypothetical protein 1.66172407105e-05 4.69825289602e-05 12258839490.4 +UniRef50_R4YWZ2 0.000171751546086 0.000236883181481 26294440464.0 +UniRef50_G4LKC9 Large exoprotein 0.000633462824039 0.000509882369332 -49890946067.9 +UniRef50_Q45NQ1 Putative nitrate reductase beta chain 4.33214401288e-05 5.23194922086e-05 3632624043.13 +UniRef50_UPI0003B3B541 diguanylate cyclase 1.21098794376e-05 6.74555408015e-05 22343722660.2 +UniRef50_Q9K068 Tyrosine recombinase XerD 0.000129276023577 0.00720445303334 2.85633578103e+12 +UniRef50_F8H7Y3 Group II intron encoding maturase 6.4897322048e-06 1.34226116253e-05 2798888498.05 +UniRef50_UPI00028A2BD8 hypothetical protein 0.000132007371169 3.55946220344e-05 -38923009943.1 +UniRef50_A1WTR8 Electron transport complex subunit D 0.00303474203949 0.000788979475443 -9.06641905713e+11 +UniRef50_Q9ZBH3 UPF0264 protein SCO6440 0.00504759804874 0.00155008753881 -1.41198791214e+12 +UniRef50_Q9ZA63 3.36284749287e-05 0.0013595067137 5.35273315347e+11 +UniRef50_F2SDC0 Phosphoenolpyruvate carboxykinase AcuF 3.797216768e-06 0.000128243407336 50240454258.8 +UniRef50_UPI000467C040 glycine betaine ABC transporter ATP binding protein 1.46720750883e-05 8.17481255838e-06 -2623024613.71 +UniRef50_B2U2H8 Aldehyde ferredoxin oxidoreductase 0.00176280371618 0.000708755990927 -4.25532001304e+11 +UniRef50_UPI0004232642 polynucleotide phosphorylase 6.4225493511e-06 7.04006434985e-06 249298382.757 +UniRef50_P68893 Transcription termination antitermination protein NusG 0.00253920995688 0.00416391836106 6.55914720182e+11 +UniRef50_W5X8W1 Short chain dehydrogenase reductase SDR 8.15588739702e-06 1.93069870244e-05 4501835758.96 +UniRef50_F9DQX8 Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein 3.59962830256e-05 2.27894610807e-05 -5331756085.09 +UniRef50_Q2IIV4 Histidine ammonia lyase 4.24788743016e-06 0.000135289036428 52902919906.2 +UniRef50_Q03QA4 S adenosylmethionine synthase 5.37626076578e-05 0.000524094490389 1.8987875268e+11 +UniRef50_P54901 Stationary phase inducible protein CsiE 0.00306428870178 0.00129228986543 -7.15377675105e+11 +UniRef50_UPI0004785809 hypothetical protein 4.83857648517e-05 3.69019282176e-05 -4636165771.71 +UniRef50_P39912 Protein AroA 0.0144967239422 0.00381752784746 -4.3113225119e+12 +UniRef50_Q8RBK3 Aspartate ammonia lyase 0.000204290380606 0.000710844217325 2.04501999998e+11 +UniRef50_Q9I1W4 Alpha 1,4 glucan 0.000547145854924 0.000114242439148 -1.74768421271e+11 +UniRef50_U3SW26 LysR family transcriptional regulator 0.00620858638015 0.0014462985252 -1.92259404689e+12 +UniRef50_G7TAD9 D mannonate dehydratase 0.00143693770769 0.000474521661606 -3.88539167977e+11 +UniRef50_Q60356 0.0029049157066 0.000754154399494 -8.68288732489e+11 +UniRef50_UPI00016A34C2 riboflavin biosynthesis protein RibD, partial 0.000232243632318 0.000259442957549 10980701369.0 +UniRef50_W1IMF3 0.0001074532841 0.000875224785573 3.0995877676e+11 +UniRef50_C5E0T6 ZYRO0G15466p 0.000183245625651 0.00743816864834 2.92890145218e+12 +UniRef50_F8H0W5 Cbb3 type cytochrome c oxidase subunit I 0.00346178947111 0.00187543937931 -6.40428998764e+11 +UniRef50_P46340 Probable ABC transporter permease protein YqgI 0.00552910019028 0.00584788196858 1.28696115792e+11 +UniRef50_UPI00046FE6B9 hypothetical protein 4.04509623426e-06 2.93432378485e-06 -448432468.538 +UniRef50_E1SCP3 MFS citrate proton symporter 0.00175413040368 0.000781799345993 -3.92541979832e+11 +UniRef50_UPI0003B6BBA6 glyoxalase 2.84206316335e-05 2.20377643726e-05 -2576841839.81 +UniRef50_UPI00046F677B hypothetical protein 2.11381125353e-05 2.10479716719e-05 -36390972.7074 +UniRef50_N5H245 0.000370335015456 6.65102731009e-05 -1.22657776838e+11 +UniRef50_I4CUW0 8.8953698268e-05 3.87665396731e-05 -20261171790.5 +UniRef50_Q1LT01 Hydroxyacylglutathione hydrolase 0.00234897712933 0.00101547804472 -5.38349944331e+11 +UniRef50_UPI0002B4BA19 PREDICTED 0.000110690678879 8.30296091562e-05 -11167113286.6 +UniRef50_W8F1J2 3 hydroxybutyryl CoA dehydratase 4.97623487979e-05 1.98369673094e-05 -12081243732.6 +UniRef50_UPI00034525BD hypothetical protein 5.60482751131e-06 1.61557599886e-05 4259540915.59 +UniRef50_R7M168 GTP binding protein typA 1.14037781701e-05 1.61070925693e-05 1898785739.12 +UniRef50_Q0VTE1 Peptide deformylase 0.0056791860911 0.00146845102931 -1.69992541597e+12 +UniRef50_UPI000466577D hypothetical protein 1.11773476842e-05 8.96983799811e-05 31699904299.7 +UniRef50_A0A017HLF1 Protein YqgE 8.80489980847e-05 0.000169457001208 32865409849.4 +UniRef50_UPI0003347753 1.80412313516e-06 8.43093480092e-06 2675325189.59 +UniRef50_Y4VDJ3 0.000333446211516 0.000708991421239 1.51612209623e+11 +UniRef50_UPI0004754608 hypothetical protein 9.74406113729e-06 0.00133808077568 5.36265832184e+11 +UniRef50_UPI0003AD1A5F hypothetical protein 2.83727876173e-06 3.7167996012e-05 13859731839.2 +UniRef50_I7DR67 2.2499228057e-05 2.23680381238e-05 -52962985.9144 +UniRef50_Q9WXX0 Ribose import ATP binding protein RbsA 1 0.000101291479085 1.37256263215e-05 -35351409314.5 +UniRef50_Q7DC27 0.0080889854754 0.00047889195437 -3.07228814079e+12 +UniRef50_Q2NFJ6 Putative methylthioribose 1 phosphate isomerase 0.00277044648956 0.0010492868014 -6.94853287115e+11 +UniRef50_Q8CQM9 Ribosomal protein serine N acetyltransferase 0.0116905914398 0.00209544252398 -3.87367936303e+12 +UniRef50_UPI0003342D90 PREDICTED 3.35661875776e-05 1.1019179839e-05 -9102503706.97 +UniRef50_A0A023XMZ3 Type VI secretion protein, ImpJ SciO VasE family 4.03206692032e-06 5.31217191876e-06 516794096.525 +UniRef50_D4DRQ8 0.000182578240891 0.00106107841111 3.54661299127e+11 +UniRef50_UPI0004664E29 hypothetical protein 7.73089215029e-06 8.43013971386e-06 282294822.146 +UniRef50_P74741 Bifunctional purine biosynthesis protein PurH 0.00742689055338 0.00241182707523 -2.02464266788e+12 +UniRef50_P50199 Gluconate 5 dehydrogenase 0.0033244252075 0.00103736999352 -9.23312255207e+11 +UniRef50_Q5HPR6 Ribonuclease J 2 0.0216662235562 0.00699340715506 -5.92359603683e+12 +UniRef50_D3EHQ7 ABC transporter related protein 0.0116195812861 0.0053760478519 -2.52059106416e+12 +UniRef50_R8BTP6 1.32414545965e-05 1.84136781362e-05 2088090113.3 +UniRef50_Q08YP5 1.9045133743e-05 2.42395671664e-06 -6710173130.34 +UniRef50_A6TKS3 0.00047415615755 0.00134987031606 3.53536552012e+11 +UniRef50_P76187 Oxidoreductase YdhF 0.00266784689748 0.000617393448592 -8.2779321921e+11 +UniRef50_UPI0003B3589F ATP synthase subunit B 7.19098695313e-05 6.11393355263e-05 -4348196747.13 +UniRef50_Q9FJP9 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 3, mitochondrial 1.75007358789e-05 6.82334783952e-06 -4310592577.79 +UniRef50_UPI0003B6819C MFS transporter 1.01837021571e-05 9.15367991719e-06 -415832618.046 +UniRef50_UPI0003B502A9 ABC transporter ATP binding protein 8.66050955711e-05 1.34359606786e-05 -29539277642.4 +UniRef50_R5GI81 1.91121306131e-05 0.0007822918272 3.0810500878e+11 +UniRef50_E1V871 7.00176116206e-05 3.23688548768e-05 -15199265099.7 +UniRef50_Q67M06 7.21949267093e-06 4.89916358143e-05 16863926788.8 +UniRef50_UPI0003C19124 0.000127359719021 1.38622409633e-05 -45820324662.7 +UniRef50_A3V0X2 Beta Ig H3 Fasciclin 0.000111007596165 1.83191625327e-05 -37419458072.3 +UniRef50_Q49WG6 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 0.0207265992396 0.00501562261932 -6.34271405698e+12 +UniRef50_Q0TKF3 Copper transporting P type ATPase 0.00302902176289 0.000710560228815 -9.3599137203e+11 +UniRef50_UPI000288A457 ectoine utilization protein EutE, partial 0.00054584682315 0.000370784368688 -70674861124.2 +UniRef50_UPI0003A4755B histidine kinase 1.95451411935e-06 0.000102831524842 40725287129.0 +UniRef50_G0DU47 Myo inositol catabolism IolH protein 0.000235438246685 0.00557785662113 2.15679985661e+12 +UniRef50_Q7UQD2 UPF0365 protein RB6389 0.0244102325396 0.0106647313511 -5.54922750607e+12 +UniRef50_B0KCX0 Phosphotransferase system, lactose cellobiose specific IIB subunit 0.000464122117436 0.00115810472625 2.80169295302e+11 +UniRef50_G7ZS06 AraC family regulatory protein 0.0116901478072 0.00241100721425 -3.74610292523e+12 +UniRef50_P21693 ATP dependent RNA helicase DbpA 0.00254536012456 0.000887208417441 -6.69416191974e+11 +UniRef50_C0LZW6 Cross beta structure silk protein 1 1.10728395821e-06 3.61218661687e-05 14135816515.6 +UniRef50_UPI0003B32CE6 multidrug transporter, partial 1.36319114721e-06 1.19251442764e-05 4263990088.0 +UniRef50_E6MC83 0.0127045230683 0.00242863417382 -4.14850244605e+12 +UniRef50_UPI000374A1F2 hypothetical protein 7.0842375956e-05 6.27748345763e-05 -3256965454.85 +UniRef50_F0KHS2 ABC1 family protein 9.59710141129e-05 0.00823798252577 3.28702996097e+12 +UniRef50_P0DMC8 Transcriptional regulatory protein RcsB 0.00177381126783 0.00343606866512 6.71073709478e+11 +UniRef50_Q5HQ65 0.0024653728858 0.00074998165468 -6.92524490221e+11 +UniRef50_X3PZA5 AraC family transcriptional regulator 2.219143939e-05 7.6096116791e-05 21761979751.6 +UniRef50_UPI0004434B3D PREDICTED 5.81045080113e-05 9.00361004973e-06 -19822635042.9 +UniRef50_U1R336 0.00898107341212 0.00314301472057 -2.35689593482e+12 +UniRef50_B9T9L5 0.000189660178773 7.92655588017e-05 -44567662776.6 +UniRef50_Q9RZ19 0.000100484291618 0.00637578905013 2.53341753766e+12 +UniRef50_D3E128 0.00346310587719 0.000695547251841 -1.11729737882e+12 +UniRef50_J9PBA5 3.12860344905e-05 0.000110880380242 32133214112.3 +UniRef50_G8LLE6 6.33484268762e-05 3.30393696901e-05 -12236138320.0 +UniRef50_C0QJ00 Phosphomethylpyrimidine synthase 0.00302753996169 0.00137123869806 -6.6866914523e+11 +UniRef50_Q7AX67 9.70093629878e-05 0.00400058025321 1.57591947058e+12 +UniRef50_K0M6S7 0.025064170427 0.00165716908155 -9.44969367939e+12 +UniRef50_Q3HKJ7 ABC di oligopeptide transporter, periplasmic ligand binding protein 0.016754813031 0.00217750049971 -5.88503995263e+12 +UniRef50_U5MW97 HD GYP domain protein 0.00035111570859 0.00196486258453 6.51489416718e+11 +UniRef50_B9KR36 Two component transcriptional regulator, LuxR family 0.0044670858139 0.000342065681693 -1.66532124706e+12 +UniRef50_UPI00005103EC tetracycline resistance protein 9.64877768565e-05 9.68963457492e-05 164944275.687 +UniRef50_K7EFD4 1.09181530603e-05 7.82500401119e-05 27182709057.9 +UniRef50_Q9JVD1 N anthranilate isomerase 1.03929423388e-05 0.00118273631672 4.73289406508e+11 +UniRef50_M9VF28 Cobalt precorrin 6x reductase 0.000806121274595 0.00859560470018 3.14471004662e+12 +UniRef50_H3VSI0 GA module 0.00967442385753 0.00182059788498 -3.1706859224e+12 +UniRef50_S4X8J4 IS1272 transposase 0.000829227583357 0.00227166696304 5.82330478298e+11 +UniRef50_G2JKN3 0.000451178472729 0.00176197361923 5.29184085907e+11 +UniRef50_P25534 2 octaprenyl 6 methoxyphenol hydroxylase 0.00350731782037 0.00164490386176 -7.5187936948e+11 +UniRef50_P77585 Aminopeptidase YpdE 0.00256261189357 0.0026804732928 47582093191.2 +UniRef50_Q5FA21 Imidazole glycerol phosphate synthase subunit HisH 0.000191546712075 0.00182891408959 6.61025303058e+11 +UniRef50_UPI00029AB9CD hypothetical protein 3.89249301608e-07 4.2446591201e-06 1556476254.92 +UniRef50_U5LBL2 MFS transporter 2.32773817474e-05 0.00132462531955 5.25370131825e+11 +UniRef50_B5F2L4 Elongation factor P 0.00282536402785 0.00102737363235 -7.25870786487e+11 +UniRef50_S3BX82 4.69509936411e-05 0.000110192800452 25531493473.8 +UniRef50_Q9KUY6 Alanine racemase 1 0.00338572327071 0.000523716562709 -1.15542722879e+12 +UniRef50_A6M043 Transcriptional regulator, TetR family 0.000196949211577 0.000298299702217 40916436781.7 +UniRef50_I6SUR3 Glucan binding protein D 0.00446754818519 0.00129649246414 -1.28019410782e+12 +UniRef50_A0A010QNG4 DnaJ domain protein 0.000114221874883 8.6486749079e-05 -11197010635.3 +UniRef50_D6X5L6 Predicted protein 0.000179339606614 1.25392137016e-05 -67339365489.6 +UniRef50_A4WVP5 Ribonuclease 3 0.000616646087665 0.000545728217174 -28630414577.4 +UniRef50_UPI00045416B9 PREDICTED 3.2850053729e-05 3.37213561042e-05 351755460.951 +UniRef50_UPI000380E1DF hypothetical protein 1.88403687521e-05 2.15154016462e-05 1079943605.69 +UniRef50_P50923 Fructose bisphosphate aldolase 2 0.000211428874798 0.000315757315898 42118671926.0 +UniRef50_Q4L800 Thymidine kinase 4.87080161507e-05 3.36217123202e-05 -6090525986.14 +UniRef50_UPI00037BF977 MULTISPECIES 1.40931052054e-05 1.44150948679e-05 129991178.009 +UniRef50_E1ZPF1 1.40696414917e-05 0.000124793257578 44700482545.5 +UniRef50_D6ZZT0 0.000154802253334 3.63134704231e-05 -47835375682.0 +UniRef50_UPI0003671796 hypothetical protein 0.000124184803828 8.45522069762e-05 -16000165695.7 +UniRef50_P76237 Putative diguanylate cyclase YeaJ 0.00343423532584 0.001016608184 -9.76025744782e+11 +UniRef50_UPI00031C8415 hypothetical protein 3.2750058891e-05 1.81598822747e-06 -12488463930.6 +UniRef50_UPI00036D4271 hypothetical protein 5.98224001006e-05 9.71176129956e-06 -20230279810.7 +UniRef50_S5RLF1 MarR family transcriptional regulator 0.00109070545513 0.00246767410024 5.55899139336e+11 +UniRef50_E2Q1G7 Transcriptional regulator, LysR family 0.000568122725694 0.000592608772976 9885317765.33 +UniRef50_P62421 Phosphoglycerate kinase 1.74719654898e-05 2.53114798946e-05 3164908166.88 +UniRef50_Q46817 Guanine hypoxanthine permease GhxQ 0.00582714921277 0.00145283203827 -1.76596552225e+12 +UniRef50_P37292 Serine hydroxymethyltransferase, mitochondrial 7.70530386618e-06 2.24582444128e-05 5955943137.6 +UniRef50_UPI0001BF6B4F hypothetical protein SMAC_10997 7.57362920392e-05 0.0014715995772 5.63527137388e+11 +UniRef50_P0AAK2 Formate hydrogenlyase subunit 2 0.00179951463985 0.00607743906027 1.72705058456e+12 +UniRef50_Q96343 Myrosinase binding protein related protein 5.96327785188e-06 0.000153895466939 59722040066.5 +UniRef50_O83217 Elongation factor Tu 0.000918790977924 0.11576946479 4.63666263942e+13 +UniRef50_UPI00046F7098 hypothetical protein 3.37421008915e-05 3.58360387631e-05 845348414.272 +UniRef50_UPI0003F07DB8 PREDICTED 3.2488642679e-06 8.1231689137e-06 1967816599.95 +UniRef50_Q5HKG0 Conserved domain protein 0.0216113904356 0.00632706735449 -6.17046878758e+12 +UniRef50_P77625 Sugar phosphatase YfbT 0.00379654687476 0.00144078094161 -9.51051615711e+11 +UniRef50_A7ZRX6 Uronate isomerase 0.00349205351899 0.000961848082086 -1.02147498399e+12 +UniRef50_B9DZC4 0.00142395486747 0.00110980205093 -1.26827347126e+11 +UniRef50_UPI00044165DC ribosomal protein L6 4.87485824258e-06 7.84735948814e-05 29712713139.1 +UniRef50_Q9RSP5 0.000279619251005 0.0506729719604 2.03444148848e+13 +UniRef50_A3CNT6 ATP phosphoribosyltransferase regulatory subunit 0.00489396349765 0.00117500833881 -1.50138783434e+12 +UniRef50_Q9RSP7 0.000732859080189 0.0233764988878 9.14151525904e+12 +UniRef50_Q8CMY4 Probable malate 0.038808282829 0.0156758474657 -9.33884802307e+12 +UniRef50_UPI0001850D56 YvrB 1.53537226474e-05 0.000263618894315 1.00227696359e+11 +UniRef50_A6LGA2 Leucine tRNA ligase 3.6709968534e-06 0.00479286587067 1.93345674059e+12 +UniRef50_Q0E079 Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic 9.04898211712e-06 4.16035026079e-05 13142659411.0 +UniRef50_A5UMQ3 0.00248221534853 0.000209444471765 -9.17545492983e+11 +UniRef50_W8RY01 0.000307421441272 0.0001770810905 -52619999062.6 +UniRef50_UPI00037FD000 hypothetical protein 1.91230581417e-06 0.000124549423481 49510109328.8 +UniRef50_J7TAV9 0.000195926983831 0.00177420355993 6.37169621403e+11 +UniRef50_UPI000370BEF1 hypothetical protein 6.99891006209e-06 3.08541802505e-05 9630665312.14 +UniRef50_UPI00047191F0 hypothetical protein, partial 0.000102372518171 7.59026178616e-05 -10686223577.1 +UniRef50_A7I5Y0 0.00483912457585 0.000328929840496 -1.82082096097e+12 +UniRef50_T2A2T5 0.000636212340763 0.00149649568314 3.47306942181e+11 +UniRef50_UPI000372FA01 hypothetical protein, partial 3.91387592434e-05 0.000447010905452 1.64662990579e+11 +UniRef50_Q7NSL8 0.000200540943711 4.56137019227e-05 -62546028680.9 +UniRef50_I6TSJ0 0.0087174462219 0.00125770715913 -3.01158820093e+12 +UniRef50_D6M601 Xanthine dehydrogenase, large subunit molybdenum cofactor binding domain containing protein 0.000361731678481 0.00119208049558 3.35222006989e+11 +UniRef50_U5MPL0 Protease YdeA 0.00405951299313 0.00100710898981 -1.23229295335e+12 +UniRef50_Q04L26 Xaa Pro dipeptidyl peptidase 0.000290027629119 0.00302703518969 1.10496353906e+12 +UniRef50_UPI000319F04C hypothetical protein 9.66727109909e-06 1.61407180441e-05 2613409969.83 +UniRef50_Q8XA27 Protein FixB 0.00400793294563 0.000379019994174 -1.46503669027e+12 +UniRef50_I0ES06 Methyl accepting chemotaxis protein 5.73686913185e-05 0.00455815540481 1.8170228271e+12 +UniRef50_UPI0002F687DE hypothetical protein 8.88112558704e-05 2.65855498364e-05 -25121281121.2 +UniRef50_G5PKT0 Formate transporter 4.79811294099e-05 0.000140735544572 37446095625.6 +UniRef50_P22731 High affinity branched chain amino acid transport ATP binding protein LivF 0.00363357001503 0.0530235171263 1.99393277316e+13 +UniRef50_P0C0Q2 Glutamyl endopeptidase 0.00676333496186 0.00306930894782 -1.49132363266e+12 +UniRef50_UPI00047910E5 hypothetical protein 4.2493622664e-05 0.000114235298691 28962994981.5 +UniRef50_A0PPL6 Riboflavin biosynthesis protein RibBA 1.19441321876e-05 9.16512766845e-06 -1121918226.6 +UniRef50_Q3JPM4 3 octaprenyl 4 hydroxybenzoate carboxy lyase 7.63604668922e-06 6.44462028408e-05 22934957177.4 +UniRef50_P09831 Glutamate synthase [NADPH] large chain 0.00205185280714 9.94704140617e-06 -8.24342414627e+11 +UniRef50_L0KED0 TRAP type C4 dicarboxylate transport system, small permease component 7.25597933415e-05 3.37848236568e-05 -15653931084.1 +UniRef50_W3RDE1 Topology modulation protein 1.1504390628e-05 0.00043686615788 1.71723765215e+11 +UniRef50_UPI000371284B hypothetical protein 3.85155743624e-05 0.000586845013447 2.21367323317e+11 +UniRef50_Q9KNX6 FKBP type peptidyl prolyl cis trans isomerase SlyD 0.00628316119511 0.00101286330318 -2.1276839328e+12 +UniRef50_UPI00037B0FBB hypothetical protein 2.63798601725e-05 4.16603095343e-05 6168904919.56 +UniRef50_G7U8F4 0.000319468064949 0.00578521362959 2.20658855669e+12 +UniRef50_UPI0002626037 large conductance mechanosensitive channel protein MscL 9.44066046179e-06 1.51802597009e-05 2317146645.63 +UniRef50_UPI0003EF9C6D hypothetical protein, partial 0.00031685493981 0.000201796071116 -46450677222.9 +UniRef50_T1YDR0 Transcriptional regulator, MerR family protein 0.0112499855261 0.00307314930111 -3.30108912509e+12 +UniRef50_P69807 Mannose permease IID component 0.0039837282253 0.00492393232473 3.79571932542e+11 +UniRef50_P73860 KaiC like protein 1 0.00401608538091 0.00212751884619 -7.62437485384e+11 +UniRef50_A0A022GSW2 Sulfonate ABC transporter substrate binding protein 1.35811522259e-05 9.7415179896e-06 -1550107458.8 +UniRef50_UPI000468B631 patatin 2.28857798777e-05 2.37782212419e-05 360289530.215 +UniRef50_UPI0003C1000B PREDICTED 1.63575980523e-05 6.55845274172e-06 -3956035210.92 +UniRef50_F8FV37 0.00073239963812 0.000200214715383 -2.14849583952e+11 +UniRef50_U6PZV7 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94 1.90527905971e-06 9.29972050125e-06 2985226749.95 +UniRef50_V5T4P8 Fimbrial biogenesis outer membrane usher protein 9.73911569336e-05 0.000261700745498 66333797208.7 +UniRef50_S2J745 8.21264177371e-06 6.20771604132e-06 -809413121.371 +UniRef50_P0AFR3 C4 dicarboxylic acid transporter DauA 0.00248270458825 0.000680639398058 -7.27515831106e+11 +UniRef50_UPI00047D2CC8 hypothetical protein 0.000123579790265 0.000186343702007 25338561370.1 +UniRef50_E4U3H9 2.39984961348e-06 4.2968767187e-05 16378169861.0 +UniRef50_S5ED07 Jag protein 0.00545480856881 0.001486558597 -1.60203120952e+12 +UniRef50_A6LS15 PHP C terminal domain protein 0.00028948879442 0.00149290968803 4.85835782385e+11 +UniRef50_A0A041VEI8 5.10838424916e-05 3.99641642221e-05 -4489150571.19 +UniRef50_P9WHP0 Phosphate acetyltransferase 3.67559223194e-06 1.01420257019e-05 2610578543.88 +UniRef50_Q98AP4 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.00227445433735 0.00170073445714 -2.31617755975e+11 +UniRef50_Q5NQ45 50S ribosomal protein L15 0.00333051034397 0.000366853049924 -1.19646481777e+12 +UniRef50_UPI00047247B2 hypothetical protein 4.95291149235e-06 6.43111143543e-05 23963634902.4 +UniRef50_UPI0003B31EFA cold shock protein 1.72151775542e-05 2.67238492364e-05 3838767442.63 +UniRef50_A0A037Y9B8 Transcription repair coupling factor 0.000807318361382 0.000161813835158 -2.60598098468e+11 +UniRef50_UPI0004707564 hypothetical protein 0.0001021091678 9.69575717417e-05 -2079762545.93 +UniRef50_O24850 0.000280658727775 0.00425948412301 1.60630063773e+12 +UniRef50_W5X364 Binding protein dependent transport systems inner membrane component 5.65696246739e-06 7.06052269221e-06 566634486.381 +UniRef50_C8YZ36 WejK 0.0012597236144 0.000319707956312 -3.79495856459e+11 +UniRef50_Q981X2 D amino acid dehydrogenase 3 small subunit 0.000235687925627 0.0074347127147 2.90633464932e+12 +UniRef50_UPI0003A61917 hypothetical protein 1.3498145707e-05 5.33849852889e-06 -3294149695.93 +UniRef50_P63206 Transcriptional regulator GadE 0.0030843316497 0.00135524173526 -6.98054816779e+11 +UniRef50_G7U9H2 0.000424198000405 0.00449412028707 1.64307757069e+12 +UniRef50_UPI00016C38BC purine binding chemotaxis protein 2.13677875472e-05 6.68662127914e-05 18368272599.5 +UniRef50_UPI000471A1E2 hypothetical protein 4.4915792254e-06 1.37603492935e-05 3741916217.09 +UniRef50_L1Q181 Transcriptional regulator, PadR family 0.000121046833049 2.022596614e-05 -40702621182.3 +UniRef50_P39766 Uracil permease 0.0248188749329 0.00413355643052 -8.35091691682e+12 +UniRef50_M4HU62 Degenerate transposase 0.000144928409285 0.00123909107075 4.41726893321e+11 +UniRef50_UPI00046E9748 excinuclease ABC subunit C 3.08155630952e-06 6.52863412377e-06 1391627614.01 +UniRef50_R7VY37 1.73980758575e-06 6.27593375723e-06 1831289799.95 +UniRef50_B1YSV0 RNA pyrophosphohydrolase 8.16224121098e-06 0.000346751512944 1.36692643956e+11 +UniRef50_UPI0003665980 hypothetical protein 2.96904135255e-05 1.72706766645e-05 -5014000178.1 +UniRef50_Q02W25 50S ribosomal protein L4 0.018965278998 0.0116631846706 -2.94794508675e+12 +UniRef50_A6LTI5 Pentapeptide repeat protein 0.00026123804592 0.00075707002913 2.00173456165e+11 +UniRef50_I3UGR0 5.23707044998e-06 3.82671195818e-06 -569379030.185 +UniRef50_B9CVK2 0.00374162679871 0.000241023242371 -1.41323661293e+12 +UniRef50_Q6B458 3 isopropylmalate dehydrogenase 3.42094115286e-05 3.28700295392e-05 -540724945.186 +UniRef50_B0TCA6 N acetyl gamma glutamyl phosphate reductase 1.44975802346e-05 1.1414441061e-05 -1244701118.75 +UniRef50_A1SR02 Phosphopantetheine adenylyltransferase 1.00564096803e-05 2.74550178423e-05 7024031619.93 +UniRef50_UPI0000EBCE17 0.000173223488792 0.000137319680817 -14494807868.8 +UniRef50_Q4ZQC8 Response regulator receiver 0.000491097380771 0.000251945610402 -96548504420.2 +UniRef50_B7I2N1 Protein YaaA 2.03653314859e-05 7.94927696569e-05 23870472364.9 +UniRef50_B0TBM7 Light independent protochlorophyllide reductase subunit N 9.8496441775e-05 3.15801904828e-05 -27014911801.4 +UniRef50_B7HCU0 Chaperone protein DnaK 0.0235189057069 0.0108706538395 -5.10625449037e+12 +UniRef50_UPI00035CF421 hypothetical protein 0.000129743356286 4.72193086969e-05 -33315970695.7 +UniRef50_T2F9D3 Competence protein ComGB 1.2100300474e-05 0.00269757315558 1.08415834607e+12 +UniRef50_Q3J223 Putative phage major capsid protein, gp36 0.0178247308348 0.00401214769632 -5.57630931247e+12 +UniRef50_F0YS40 0.000233684193117 0.000525503796043 1.1781115473e+11 +UniRef50_F0LFC9 Spermidine putrescine ABC transporter inner membrane protein 0.00163687352949 0.000892356812781 -3.00570534783e+11 +UniRef50_A5UMP4 Cobalamin biosynthesis protein G, CbiG 0.00286231074676 0.000391619977445 -9.97448182356e+11 +UniRef50_W5X8L8 NifC like ABC type porter molybdate ABC transporter, permease protein 4.25740703717e-05 3.10839334636e-05 -4638709269.64 +UniRef50_Q8CXJ8 Chloramphenicol resistance protein 0.00977450808796 0.00304105728618 -2.71837671741e+12 +UniRef50_R7PU88 DNA helicase related protein 0.0036871480735 0.000436545389188 -1.31230819304e+12 +UniRef50_F8FUQ7 ApbE family lipoprotein 0.000770026640391 0.000327523148093 -1.78644089969e+11 +UniRef50_L0KF64 Cu responsive transcriptional regulator 0.00223962796545 0.0150229467589 5.1607826659e+12 +UniRef50_UPI0003B42D39 serine threonine phosphatase 9.32279511995e-06 1.24283668126e-05 1253757401.97 +UniRef50_D7GDY6 Transporter 0.000131796108519 0.00409750496142 1.60100532864e+12 +UniRef50_P21112 Methyl coenzyme M reductase II subunit gamma 0.00225626521311 0.000473770115279 -7.19615144669e+11 +UniRef50_M1N2U9 0.000114159069206 0.00127470594847 4.68527016669e+11 +UniRef50_UPI00035E5F38 hypothetical protein 5.6248685973e-06 1.08653441697e-05 2115644296.44 +UniRef50_B9DVZ2 Transcription antiterminator 0.00634927773585 0.00245800369442 -1.57095508183e+12 +UniRef50_P0A952 Spermidine N acetyltransferase 0.00345658209019 0.000346074263901 -1.2557501797e+12 +UniRef50_UPI000472AC52 spore coat protein 4.256339768e-06 6.30397223561e-06 826654354.45 +UniRef50_Q2CDQ9 0.000110629500544 0.000172220670765 24865111226.9 +UniRef50_UPI0001F85CA4 biotin synthase like protein 2.23867605986e-05 0.000258641879789 95379090793.3 +UniRef50_W6IE22 CreA protein 4.26844728381e-06 1.65191027138e-05 4945739929.54 +UniRef50_B7V9N9 Paraquat inducible protein A 0.000192922992602 0.000718420556123 2.12149814974e+11 +UniRef50_V6UC46 1.51742397239e-05 3.36289117989e-05 7450377580.97 +UniRef50_Q2FD76 DMT family permease 0.000462868282251 0.00464583459179 1.68871482993e+12 +UniRef50_UPI000359EAD9 PREDICTED 1.15594344043e-05 0.000436324405871 1.71482831434e+11 +UniRef50_UPI0003627C1A hypothetical protein 8.5870014387e-06 1.85488055868e-05 4021702579.67 +UniRef50_G7I9Q9 ATP synthase subunit alpha 1.76660779241e-06 7.85285015334e-06 2457090727.7 +UniRef50_C1CQV0 HAD superfamily subfamily IIA hydrolase 0.00431379423955 0.00473012759536 1.68078884725e+11 +UniRef50_W5XBH9 Protein kinase transcriptional regulator 4.66401047005e-05 6.81864771467e-06 -16076410849.4 +UniRef50_E3A4M7 0.00137408347012 0.000477741842759 -3.61864114314e+11 +UniRef50_F4LPV2 Oligo 1,6 glucosidase 0.00030863655156 0.00145191779112 4.61556666049e+11 +UniRef50_Q9A1V9 50S ribosomal protein L6 0.00774107392977 0.00138438138682 -2.56627478498e+12 +UniRef50_Q1J3M1 Diguanylate cyclase with GAF sensor 1.25110416421e-05 0.00627203966506 2.52704851833e+12 +UniRef50_M1ZLS1 7.39725919232e-05 0.000684908528555 2.46642334645e+11 +UniRef50_Q4L8P5 PTS system sucrose specific IIBC component 0.00345156558358 0.00412351723323 2.71275126738e+11 +UniRef50_Q8CPS7 Transcription factor 0.0107864174889 0.00316675117994 -3.07615279275e+12 +UniRef50_UPI000308EC67 hypothetical protein 1.33953975691e-05 1.33162246622e-05 -31963074.0764 +UniRef50_D9RMZ4 0.00210883738145 0.000962989256073 -4.62592949354e+11 +UniRef50_UPI0003FCC1FE hypothetical protein 7.82943915215e-06 9.76475245663e-06 781309729.983 +UniRef50_P05425 Copper exporting P type ATPase B 0.00528049996497 0.00163733544358 -1.47079022394e+12 +UniRef50_UPI0003F7499A hypothetical protein 6.52848384058e-06 1.04256912122e-06 -2214731091.95 +UniRef50_G4I6C2 1.02664530691e-06 3.37655566162e-05 13217100247.2 +UniRef50_G8ATH1 2.65043528962e-05 1.74587905057e-05 -3651804538.58 +UniRef50_L0M824 4.58774653671e-06 2.65571667765e-06 -779984162.775 +UniRef50_I4YHY8 DUF28 domain containing protein 5.67875563572e-06 2.54681105062e-05 7989205403.91 +UniRef50_Q2IYS5 Phosphonates import ATP binding protein PhnC 1 9.4286980365e-06 1.99289242181e-05 4239070161.78 +UniRef50_B5EPG1 PilT protein domain protein 0.00414276976552 0.00550799602651 5.51158594772e+11 +UniRef50_Q2YAA3 NADH quinone oxidoreductase subunit C D 0.0113402043212 0.00917382870069 -8.74592422418e+11 +UniRef50_Q8A1G1 TonB dependent receptor SusC 1.41220911466e-06 2.16178303966e-05 8157257262.36 +UniRef50_B7V600 0.000987894514217 0.000371467553704 -2.48859128369e+11 +UniRef50_P75982 0.00176337947782 0.00170027341104 -25476693557.6 +UniRef50_UPI00035F8CE7 hypothetical protein 0.000173986584642 3.49730740916e-05 -56121460096.6 +UniRef50_W0ILL7 Membrane protein 0.00975661458426 0.00319177774856 -2.65030519018e+12 +UniRef50_UPI0004650B13 hypothetical protein 2.91089309336e-06 1.3018886904e-05 4080721140.37 +UniRef50_Q9ZJ96 Chromosomal replication initiator protein DnaA 9.548549465e-05 0.00222032851903 8.57825203698e+11 +UniRef50_B0VE30 Acetoacetyl CoA transferase, beta subunit 0.000957083569726 0.0113687619983 4.20332234729e+12 +UniRef50_Q8CPK2 Cell divisio initiation protein 0.0201319674034 0.00505664470798 -6.08609276715e+12 +UniRef50_UPI0002257056 PREDICTED 3.19801260639e-05 0.000510333018914 1.93116932894e+11 +UniRef50_F0RPV6 NLPA lipoprotein 0.000750138624118 0.0572126970414 2.27946277066e+13 +UniRef50_P42269 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 1.72413502659e-05 1.48641259263e-05 -959714637.72 +UniRef50_Q8KFL5 Isoleucine tRNA ligase 1.41909781117e-06 2.12184831195e-06 283709000.883 +UniRef50_H1Y7F7 NAD dependent protein deacylase 0.000336047597323 0.00777923751283 3.0049071071e+12 +UniRef50_M9VFI4 0.00013183445478 0.00298585805511 1.15220435026e+12 +UniRef50_UPI00022CAAEE PREDICTED 1.79824495354e-06 2.35061390333e-06 222998123.359 +UniRef50_UPI0003613834 hypothetical protein 0.000173950425021 0.000181067113069 2873094296.56 +UniRef50_Q5HKX5 Conserved domain protein 0.0050910459403 0.00559862653529 2.04916514912e+11 +UniRef50_D6K6B4 Membrane protein 0.000180597205172 0.000482200774443 1.21761062007e+11 +UniRef50_Q46888 0.00388241312794 0.00209705797622 -7.20769783521e+11 +UniRef50_UPI00037BC975 hypothetical protein 6.3947995105e-06 1.702219459e-05 4290409806.4 +UniRef50_P67097 Phosphodiesterase YfcE 0.0020277725865 0.000336223952777 -6.82898941069e+11 +UniRef50_Q01464 Septum site determining protein MinD 0.000417676669498 0.0328186939356 1.30806882755e+13 +UniRef50_Q7NV70 2.04700640185e-05 3.827502394e-05 7188080811.74 +UniRef50_E3DHU2 Copper homeostasis protein CutC 0.00179262147948 0.0014011612397 -1.58037302557e+11 +UniRef50_W9A1R1 4.8992425257e-05 0.000668714084441 2.50189238653e+11 +UniRef50_V5XRZ5 Iron sulfur cluster formation protein IscU 0.00222277638252 0.00316565061885 3.80649899574e+11 +UniRef50_Q88AZ5 33 kDa chaperonin 0.000624942113372 0.000198421078525 -1.72191775769e+11 +UniRef50_Q038S0 Histidine tRNA ligase 0.00769056039925 0.00781927531165 51963789645.5 +UniRef50_I7ECV7 Peptidoglycan binding like protein 0.00863556432081 0.00174931666715 -2.78006268154e+12 +UniRef50_O82357 3 methyl 2 oxobutanoate hydroxymethyltransferase 1, mitochondrial 9.72161221918e-06 7.9729716289e-06 -705947664.529 +UniRef50_A6M083 0.000698474112219 0.00144301891136 3.00581872005e+11 +UniRef50_Q9RUA4 Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase 6.47488831609e-05 0.0299037189407 1.20463583776e+13 +UniRef50_Q1R133 Binding protein dependent transport systems inner membrane component 0.0087607889705 0.00370258506363 -2.04205898835e+12 +UniRef50_UPI00036278A6 hypothetical protein 2.62376669271e-05 7.26632620899e-05 18742582473.3 +UniRef50_Q46897 CRISPR system Cascade subunit CasE 0.000617034080573 0.000651433908512 13887632672.3 +UniRef50_Q5HK76 Type 1 restriction enzyme R protein 0.0136900575712 0.00266824228147 -4.44964208533e+12 +UniRef50_B8ETJ4 Exodeoxyribonuclease III Xth 0.00471640929746 0.00112539609278 -1.44973609742e+12 +UniRef50_Q2G1E0 0.0222947432011 0.00628311318205 -6.46409152351e+12 +UniRef50_UPI00037146D6 hypothetical protein 1.18453923054e-05 0.000173148644897 65120102484.9 +UniRef50_C3BKF8 Glucose 6 phosphate 1 dehydrogenase 0.00969858678207 0.00466866331903 -2.03064182613e+12 +UniRef50_UPI0003770934 hypothetical protein, partial 2.1729149811e-05 5.39791895155e-05 13019736781.2 +UniRef50_P25894 Metalloprotease LoiP 0.00493017241239 0.000469380838447 -1.80087629847e+12 +UniRef50_D5WIJ5 0.00383572031393 0.0019881862466 -7.45872174774e+11 +UniRef50_Q2FG30 0.0168787941101 0.00497717591496 -4.80482931464e+12 +UniRef50_UPI0003486BCB hypothetical protein 2.87771395707e-05 1.08168123539e-05 -7250804495.42 +UniRef50_A0A058ZKQ4 0.000121523931441 8.89771026182e-05 -13139554190.3 +UniRef50_Q8ZGW9 ATP dependent dethiobiotin synthetase BioD 1 0.0030759846226 0.000530567313021 -1.02761620366e+12 +UniRef50_Q4T799 Chromosome undetermined SCAF8206, whole genome shotgun sequence. 8.06559542486e-06 6.78036336496e-06 -518863954.153 +UniRef50_UPI000471EE06 cobyrinic acid a c diamide adenosyltransferase, partial 1.49181877615e-05 2.27416587031e-05 3158431223.91 +UniRef50_A1B4D6 Glutathione S transferase, N terminal domain 0.00800627668805 0.00423926028254 -1.52079074939e+12 +UniRef50_Q08XU8 Cupin domain protein 0.000141852398023 9.24841724393e-05 -19930558484.4 +UniRef50_UPI000363B7A3 hypothetical protein 5.80431917768e-06 4.25010454162e-06 -627455520.936 +UniRef50_UPI0003C11C7F PREDICTED 6.12215409447e-06 7.49450367301e-06 554034365.48 +UniRef50_Q731B9 Arginine repressor 0.0218166278284 0.0126797083368 -3.68868652137e+12 +UniRef50_G8AXA5 2.91621116805e-05 7.4922148386e-06 -8748403274.61 +UniRef50_Q83HH5 Tyrosine tRNA ligase 4.76171256653e-06 7.42471970714e-05 28052142777.4 +UniRef50_Q0AVU0 tRNA N6 adenosine threonylcarbamoyltransferase 1.19305216735e-05 2.09555511277e-05 3643515140.23 +UniRef50_P0AE38 Arginine N succinyltransferase 0.00287075485404 0.0130608765108 4.1138771597e+12 +UniRef50_P04395 DNA 3 methyladenine glycosylase 2 0.00374228533493 0.00136447910301 -9.5994955479e+11 +UniRef50_F5J5S5 0.00017772548577 0.000193256287437 6269975217.34 +UniRef50_UPI00046D4F30 hypothetical protein 1.57251818611e-05 3.61426025222e-05 8242763270.81 +UniRef50_A9M0E5 Aminopeptidase 6.75287994386e-05 0.00389519881441 1.54527735584e+12 +UniRef50_I0C1S3 Phosphatidylglycerophosphatase B like protein 0.00797868131592 0.00527489367419 -1.09155225017e+12 +UniRef50_C7QKF9 YCII related protein 2.55600322554e-05 2.16222071142e-05 -1589748332.05 +UniRef50_M9VHR6 Glycerophosphodiester phosphodiesterase family protein 0.000377485988848 0.00693370461968 2.64682591512e+12 +UniRef50_UPI00046FEF92 hypothetical protein 3.37331790253e-05 7.01902221953e-06 -10784832922.1 +UniRef50_I4CSN5 0.00140162593151 0.000632418901693 -3.10538317169e+11 +UniRef50_F9Z0L2 Iron compound ABC transporter 0.000107749874196 0.00740240563125 2.94494204461e+12 +UniRef50_M5JV17 Phosphate ABC transporter substrate binding protein 0.000231989994359 2.70898563501e-05 -82720700121.7 +UniRef50_Q31GL4 Leucyl phenylalanyl tRNA protein transferase 7.3705388953e-06 3.13081134835e-05 9663892608.33 +UniRef50_K7TDT2 Putative transposase 2.41750561162e-05 6.58260801216e-06 -7102287183.2 +UniRef50_F8B2H9 Molybdopterin guanine dinucleotide biosynthesis protein 4.58387003117e-06 1.89335242328e-05 5793131491.24 +UniRef50_UPI0004432FDF PREDICTED 1.27225090402e-05 3.27118837227e-05 8069955856.54 +UniRef50_S5KCJ9 Membrane protein 3.46400417276e-05 0.0010509487984 4.10296316579e+11 +UniRef50_D4LGK2 Phosphate starvation inducible protein PhoH, predicted ATPase 0.00329981237393 0.00201655029881 -5.18068647122e+11 +UniRef50_UPI000377EEE9 hypothetical protein 4.05954613745e-06 0.00313657959448 1.26463678386e+12 +UniRef50_Q9RRI3 Medium chain fatty acid CoA ligase 0.000336805123903 0.0357362648588 1.42911962952e+13 +UniRef50_B0VCS4 0.000137434219241 0.00664408001158 2.62681275189e+12 +UniRef50_P24203 0.00182285521896 0.000386099473648 -5.80035925357e+11 +UniRef50_UPI0003012608 hypothetical protein 4.10902224077e-06 6.27155953802e-06 873042844.217 +UniRef50_Q899J0 PUR operon repressor 0.000344449151545 0.00333640587569 1.20788964497e+12 +UniRef50_Q5XE79 Thioredoxin 0.00059603050871 0.000569742839604 -10612654604.1 +UniRef50_P17330 Glyceraldehyde 3 phosphate dehydrogenase 3 1.12216060667e-05 9.96818648388e-06 -506020866.772 +UniRef50_M1P7F7 Cytoplasmic membrane protein 1.91190200118e-05 0.00305365020471 1.22507747715e+12 +UniRef50_Q9A0R7 Putative gluconeogenesis factor 0.00677759652053 0.00298372904513 -1.53163085581e+12 +UniRef50_J6CKR7 Transketolase 0.000158772547921 6.45371934968e-05 -38043968978.9 +UniRef50_UPI000478E5C6 hypothetical protein 1.03273291624e-05 0.000175103096212 66521999184.1 +UniRef50_Q39K93 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.65393807056e-05 7.47428814301e-05 15423222052.2 +UniRef50_B6JM63 Polyamine aminopropyl transferase 0.000169783803081 0.00330963782393 1.26759759856e+12 +UniRef50_UPI0004742BB7 glucose 1 phosphate thymidylyltransferase 0.00021560237932 0.000142075918507 -29683534501.3 +UniRef50_Q2L0H5 sn glycerol 3 phosphate import ATP binding protein UgpC 0.00480072726845 0.00129300445818 -1.41611074311e+12 +UniRef50_UPI00046FFCEC ABC transporter ATP binding protein, partial 6.29182304652e-06 2.63032216502e-05 8078847183.79 +UniRef50_Q5M1U2 D alanyl D alanine carboxypeptidase 0.00784593992108 0.00184091945706 -2.42430045121e+12 +UniRef50_Q6MHV9 Bifunctional protein GlmU 4.22081263642e-06 6.82482787235e-06 1051272905.61 +UniRef50_B9KRH9 Glycosyl transferase, family 2 0.00311542428208 0.00124814614927 -7.53843096295e+11 +UniRef50_UPI0004785B9B DNA directed RNA polymerase subunit beta 3.25383094543e-06 1.58504676033e-06 -673708653.81 +UniRef50_Q3JM24 Potassium efflux system protein 0.000227061636911 0.0092295274757 3.6344059318e+12 +UniRef50_UPI00036DE10D hypothetical protein 0.000452827932954 7.85547781407e-05 -1.51098665446e+11 +UniRef50_A0A021WXJ4 1.54809588524e-05 2.59345571643e-05 4220245918.59 +UniRef50_UPI000369982C hypothetical protein 1.19239854999e-05 1.1585809878e-05 -136525648.443 +UniRef50_UPI00045EC2D5 hypothetical protein 6.84942887198e-05 7.26341988685e-06 -24719653135.1 +UniRef50_UPI000441EDB2 PREDICTED 7.4692537161e-06 2.22672187371e-05 5974120070.43 +UniRef50_G8VLT1 Tryptophanase L cysteine desulfhydrase, PLP dependent 0.000332441248351 0.00558806556191 2.12176002915e+12 +UniRef50_B2VB13 TraW protein 8.43207081217e-05 2.98953532783e-05 -21972183624.5 +UniRef50_UPI0002192F7F molybdopterin biosynthesis protein MoeB, partial 8.10518595153e-06 2.08271782494e-05 5136024407.06 +UniRef50_UPI0003803CF1 hypothetical protein 4.59949261723e-06 1.87177710338e-05 5699722247.54 +UniRef50_C5N2S8 0.0201677760263 0.00989047471669 -4.14907265535e+12 +UniRef50_A9M1X9 0.000300386728529 0.0015111157669 4.88786170106e+11 +UniRef50_UPI0003622625 hypothetical protein 8.03838721625e-06 5.78172758859e-06 -911041184.014 +UniRef50_M4RDW5 Glycosyltransferase 0.00031632904094 0.00575967175538 2.19754425115e+12 +UniRef50_Q49ZP2 3.93217206925e-05 6.27008115306e-05 9438425865.05 +UniRef50_G5P8G8 Peptide transport system permease protein sapB 0.000138163080354 0.000161712070374 9507016249.68 +UniRef50_UPI0003F6BA02 cysteinyl tRNA synthetase 2.97018692777e-06 6.57885778531e-06 1456864708.56 +UniRef50_UPI00034C3E89 hypothetical protein 8.55928739509e-06 1.16634588696e-05 1253192116.73 +UniRef50_F5YFX0 Polar amino acid ABC transporter, inner membrane subunit 0.000542471217641 0.00111728182699 2.32058096714e+11 +UniRef50_F2AIJ3 0.000706935002209 0.000506526527332 -80907360596.4 +UniRef50_R6Z8P0 1.21604351698e-05 6.27948006139e-05 20441714683.3 +UniRef50_UPI00036C444A hypothetical protein 4.26933167686e-06 4.8833886478e-06 247902334.495 +UniRef50_A2SNL7 Essential for conjugative transfer protein 8.80703315204e-06 5.96376414866e-06 -1147862587.5 +UniRef50_UPI000471BC8E protease I 6.46407211153e-06 2.40343131672e-05 7093321925.29 +UniRef50_Q5LSV7 Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein 0.00693969864512 0.00187100436971 -2.04629407886e+12 +UniRef50_U5URI8 0.0125376454674 0.00351300905302 -3.64335646523e+12 +UniRef50_B9KPC4 0.00087821285884 0.000691814432947 -75251331898.9 +UniRef50_D3Q1B6 3.21442600597e-06 1.62603260229e-05 5266789928.02 +UniRef50_M9VB10 LysR family transcriptional regulator 0.000409926333486 0.00408736463252 1.48462696856e+12 +UniRef50_N6DL92 4.78986197002e-05 9.62554032953e-05 19522226941.8 +UniRef50_T1ATE5 0.00100685038387 8.61069163238e-05 -3.71715436641e+11 +UniRef50_Q91TH9 T121.1 4.57947330841e-06 6.45239662439e-05 24200327399.7 +UniRef50_Z5XAD0 Aldehyde dehydrogenase 4.61808795981e-05 5.52692201143e-05 3669074592.87 +UniRef50_K2I608 Flp pilus assembly protein, pilin Flp 6.10388052284e-05 4.91993938983e-05 -4779715639.88 +UniRef50_UPI0003C13F57 PREDICTED 2.40038874048e-05 1.33115865362e-05 -4316613069.94 +UniRef50_I6U0J6 0.00347990655782 0.00221683611563 -5.09917037129e+11 +UniRef50_Q8FHD1 0.00183686914013 0.0002590497414 -6.36985053289e+11 +UniRef50_Q9PMA7 NADH quinone oxidoreductase subunit L 0.000134199311951 0.00417688888495 1.63208339e+12 +UniRef50_A4QB30 0.000711093234097 0.00368305228797 1.19981634009e+12 +UniRef50_UPI000376F2DA hypothetical protein 5.08046253202e-06 1.66458676634e-05 4669095975.03 +UniRef50_H6PBU2 Nitroreductase 0.00542263006044 0.00104947157278 -1.76549774616e+12 +UniRef50_UPI00035E79DC transcriptional regulator 6.25107013103e-06 1.03226073193e-05 1643729526.28 +UniRef50_UPI00037CCCC7 hypothetical protein 0.000148393381764 3.37766509089e-05 -46272180751.6 +UniRef50_M5E3Y3 5.0715559381e-05 3.22137325423e-05 -7469414537.73 +UniRef50_A0B5U4 Glycine tRNA ligase 0.00249789424029 0.000695418270102 -7.27681668033e+11 +UniRef50_A4EG79 2.20651283011e-05 5.39840861795e-05 12886074985.2 +UniRef50_D1BHZ8 Ribonucleoside triphosphate reductase class III catalytic subunit 0.0178772329257 0.00945252018795 -3.40115991508e+12 +UniRef50_Q3IV40 0.0180353974429 0.00394939770027 -5.68669095074e+12 +UniRef50_UPI0003823B5A hypothetical protein 0.000162208389222 5.25972924986e-05 -44251344826.5 +UniRef50_UPI000466ECBC 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 6.20964248235e-05 4.50018327546e-05 -6901296592.45 +UniRef50_UPI0003F0E20A PREDICTED 2.60919668781e-05 2.88660950613e-06 -9368287532.83 +UniRef50_K0L2H6 0.00348731917626 0.00182388052857 -6.7155059476e+11 +UniRef50_O06997 0.000326367193234 0.00185325487027 6.1642329224e+11 +UniRef50_UPI00038F646F Response regulator MprA 6.4631430147e-05 0.000259967892613 78859726945.5 +UniRef50_W7SSQ1 GGDEF domain protein 1.97908183121e-05 0.000213362176081 78147132519.0 +UniRef50_Q03Q51 Phosphopentomutase 1.32177393866e-05 0.00227975597455 9.15029299086e+11 +UniRef50_Q0BT08 Ribosomal RNA large subunit methyltransferase E 8.58114061088e-05 4.851893146e-05 -15055429645.8 +UniRef50_A7ZVQ2 Primosomal protein 1 0.00112346754031 0.0053693946399 1.71413287349e+12 +UniRef50_A9GTV7 0.000239495960222 0.000354925767779 46600429793.8 +UniRef50_Q4UU98 Probable chemoreceptor glutamine deamidase CheD 0.000303126252081 0.000157181386636 -58919733125.0 +UniRef50_UPI0003781C90 hypothetical protein 0.000258853552028 3.6919614546e-05 -89597453997.2 +UniRef50_UPI00037EAB74 hypothetical protein 1.81590546566e-05 2.73744602056e-05 3720372305.87 +UniRef50_V6FEQ6 0.000318009513062 0.000473178529513 62643636079.2 +UniRef50_I6T6N0 0.00367469673017 0.00223414832775 -5.81567067574e+11 +UniRef50_UPI0003608CB6 MULTISPECIES 3.69775141068e-06 7.29794709932e-06 1453443178.87 +UniRef50_K7RUR3 ABC 2 type transporter 0.00067957666549 0.00972553870458 3.65196588162e+12 +UniRef50_A3VVX3 4.47437526371e-06 2.40643469648e-06 -834852983.475 +UniRef50_UPI0001DEA90D PREDICTED 7.61120464961e-05 0.000366215655028 1.17118386736e+11 +UniRef50_UPI00047E64E1 CreA 1.41969949062e-05 1.83563993704e-05 1679202623.83 +UniRef50_UPI0003B67BBB 23S rRNA tRNA pseudouridine synthase A 0.000113436626706 3.72191998179e-05 -30769910527.7 +UniRef50_U1T6A5 0.000171240474828 4.61076010919e-06 -67270460608.6 +UniRef50_A6LRD1 Aldehyde dehydrogenase 0.000268525912586 0.00168832351465 5.73189714827e+11 +UniRef50_UPI000369B8F0 hypothetical protein 4.19299672821e-06 6.20294369383e-06 811440254.844 +UniRef50_UPI0003476644 hypothetical protein 6.06753103765e-06 6.52343398641e-06 184053614.973 +UniRef50_R9ZF26 TonB denpendent receptor 0.000260148305909 0.000638992454516 1.52944031733e+11 +UniRef50_Q7A363 Accessory Sec system protein translocase subunit SecY2 0.0107025730992 0.00320866134013 -3.02538413778e+12 +UniRef50_UPI000380209B hypothetical protein 9.0739652157e-06 7.99926156069e-06 -433871053.624 +UniRef50_P0DF46 Ribosomal RNA small subunit methyltransferase I 0.00448546933394 0.00214544793178 -9.44695355344e+11 +UniRef50_A5W3B8 Peptidase S14, ClpP 0.000676360138888 0.00135736744886 2.74931007935e+11 +UniRef50_Q5FQ01 0.000274202897477 0.000871440366181 2.41112095044e+11 +UniRef50_Q92GB7 DNA polymerase I 4.22315376677e-06 4.59737825617e-05 16855241182.3 +UniRef50_I6TNQ1 Aminotransferase 0.00515219495143 0.00141488660305 -1.50879724217e+12 +UniRef50_Q1QU75 tRNA pseudouridine synthase D 5.35700096481e-06 7.43303865114e-06 838121889.819 +UniRef50_A5UNR6 Heavy metal cation efflux system protein, CzcD family 0.00261759245498 0.00121116054319 -5.6779382165e+11 +UniRef50_G7TK32 Transposase 8.81354951222e-05 5.98437280839e-05 -11421733532.4 +UniRef50_Q7VR12 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.38796330284e-05 4.4122286499e-05 12209330325.2 +UniRef50_S5XNV8 0.000661221835203 5.53493731199e-05 -2.44598147834e+11 +UniRef50_UPI00037F4A8F hypothetical protein 1.75055290185e-06 1.37416490305e-05 4840952654.45 +UniRef50_F9Z292 0.000308571653009 0.00766125039411 2.9683666353e+12 +UniRef50_A1AT66 Ribonuclease H 4.32874287242e-05 2.44220327035e-05 -7616191878.0 +UniRef50_O64174 Ribonucleoside diphosphate reductase subunit beta 0.000268415998084 0.0305957264838 1.2243507401e+13 +UniRef50_UPI000470D991 hypothetical protein 8.4171636485e-06 0.000129691557244 48959960898.9 +UniRef50_A0A037J8C0 0.000167180069528 6.07438984785e-05 -42969588371.6 +UniRef50_UPI0003B5DFE1 ABC transporter 5.70795251979e-06 5.77510498744e-06 27110275.2437 +UniRef50_A5N2H8 FprA 9.87321679628e-05 0.000405566271772 1.23872692986e+11 +UniRef50_Q5HNZ9 5 formyltetrahydrofolate cyclo ligase family protein 0.00953598762576 0.00101669026154 -3.43934488947e+12 +UniRef50_A5F9H5 Glutaminase 0.0010432399595 0.00193212608989 3.58854238698e+11 +UniRef50_UPI00036F62C9 hypothetical protein 0.000113869069403 2.41150541602e-05 -36234797359.1 +UniRef50_P33744 Aldehyde alcohol dehydrogenase 0.000785668334076 0.00201154903379 4.94903081721e+11 +UniRef50_Q2JPT8 GTP cyclohydrolase 1 3.78649620518e-05 5.55934811879e-05 7157220728.64 +UniRef50_K4W2H2 Cyclic di GMP phosphodiesterase 0.00360044551279 0.000807352330822 -1.12760599267e+12 +UniRef50_B9TCQ2 5.116307668e-05 0.000565602267857 2.07685414357e+11 +UniRef50_UPI0003648E77 hypothetical protein 7.64492004097e-06 1.45186538781e-06 -2500212160.81 +UniRef50_Q2Y7Q1 6.11820043457e-06 1.75842189288e-05 4628972369.98 +UniRef50_A0A023PYQ4 9.50540892723e-06 0.000797864081147 3.18270070224e+11 +UniRef50_D3E0R6 Chaperone protein DnaJ 0.00434622944607 0.000175262139585 -1.68387068515e+12 +UniRef50_P27896 Nitrate nitrite sensor protein NarQ 0.00319346006189 0.00120516911142 -8.02697455778e+11 +UniRef50_A7ZS72 Phosphoglucosamine mutase 0.00383661085 0.00168063508078 -8.70393874832e+11 +UniRef50_UPI00035EC538 hypothetical protein 0.000111578469607 0.000141815483016 12207053363.1 +UniRef50_P27756 Alpha galactosidase 0.00411525060023 0.00293537268932 -4.76331191365e+11 +UniRef50_Q6D3F5 Isopentenyl diphosphate Delta isomerase 5.6549084627e-05 1.44530011473e-05 -16994705477.8 +UniRef50_UPI0003706CCB hypothetical protein 8.68242173544e-06 3.58327583379e-05 10960924058.5 +UniRef50_D3E1V5 CBS domain containing protein 0.00282302681276 0.000875435417395 -7.86266545945e+11 +UniRef50_F0QEA5 Sphingosine kinase 0.000126108904961 0.00413647106439 1.61903241644e+12 +UniRef50_Q8DTR9 0.00474861512093 0.00179310416651 -1.1931760405e+12 +UniRef50_Q1GIV4 UDP N acetylmuramoylalanine D glutamate ligase 0.00309118556446 0.000276671673455 -1.13625379577e+12 +UniRef50_P46534 Orotate phosphoribosyltransferase 2.18888001338e-05 7.29022429163e-05 20594752856.6 +UniRef50_F0YBU9 Expressed protein 0.000314838525889 0.000745568273148 1.73890884617e+11 +UniRef50_C0W8D6 Rhamnan synthesis protein F 3.90861041832e-06 6.73469947604e-06 1140926832.61 +UniRef50_UPI0003B75B95 50S ribosomal protein L5 0.000285079679051 0.00030907090492 9685552288.76 +UniRef50_Q3KIW5 NH dependent NAD(+) synthetase 3.72762508221e-05 8.54712936459e-05 19456930207.7 +UniRef50_J7P463 3.06995049524e-06 0.00147482838249 5.94166939501e+11 +UniRef50_Q9CM47 Macrolide export ATP binding permease protein MacB 4.92591917552e-06 5.45788115749e-06 214759580.029 +UniRef50_G9AIM1 1.80366662437e-05 0.000153524453604 54698082379.3 +UniRef50_B5JD39 9.86043697982e-06 0.00044602812168 1.76086246693e+11 +UniRef50_Q9RSR2 WD repeat family protein 0.000170294431062 0.00224370664436 8.37061954138e+11 +UniRef50_X6XZ89 0.000335093665908 0.000476317266442 57013700544.0 +UniRef50_A0A059LAV6 0.000254362452988 0.00104140303084 3.17737939353e+11 +UniRef50_B4U4I6 Holliday junction resolvase RecU 0.00523255317461 0.00374657647497 -5.99907028629e+11 +UniRef50_K1Y1K5 0.000268197404208 2.43707715944e-05 -98435803675.5 +UniRef50_UPI00035C76C3 hypothetical protein 3.69101124056e-05 0.000115819582152 31856721264.7 +UniRef50_A6VC61 Peptide chain release factor 1 0.000104857219123 0.000524727750822 1.69506886038e+11 +UniRef50_UPI0003B52326 histidinol dehydrogenase 4.25276531165e-06 6.79367154058e-06 1025795025.04 +UniRef50_F2I852 Oxidoreductase, FAD FMN binding protein 0.0123860860977 0.00262569456892 -3.94038983364e+12 +UniRef50_P16145 Probable Ni Fe hydrogenase B type cytochrome subunit 0.0133509655413 0.00361854205527 -3.92909879158e+12 +UniRef50_A6LWU3 0.000164171288694 0.000695123701435 2.14352004542e+11 +UniRef50_D3A715 4.20715349579e-05 0.000373344124034 1.33738809382e+11 +UniRef50_A0L482 N acetyl gamma glutamyl phosphate reductase 1.80478029372e-05 4.57015280711e-05 11164148185.9 +UniRef50_UPI000422BA91 hypothetical protein 4.89180370941e-06 2.23317412968e-05 7040716816.13 +UniRef50_P76161 Antitermination protein Q homolog from lambdoid prophage Qin 0.00411988336238 0.000671401975318 -1.39219425358e+12 +UniRef50_U2ZTD9 3.64853280566e-07 1.02019073006e-06 264567770.256 +UniRef50_O85309 Excision nuclease UvrA 0.000165397083937 0.000220896865529 22405942887.6 +UniRef50_Q8DHS3 Acyl carrier protein 3.06587621384e-05 0.000410015961402 1.53151156579e+11 +UniRef50_Q8UJC5 Shikimate dehydrogenase 4.31228389481e-05 3.66856330652e-05 -2598779008.33 +UniRef50_UPI00046D3AA4 hypothetical protein 3.11426395258e-05 3.33634067777e-05 896550991.471 +UniRef50_UPI0003B31446 peptide ABC transporter ATP binding protein 2.24321947669e-06 7.84466514374e-06 2261372353.26 +UniRef50_D5ZSF1 0.000390903464139 0.00149262702056 4.44779319395e+11 +UniRef50_B2V197 Helix turn helix domain protein 0.000112235675575 0.000654633767157 2.18972765545e+11 +UniRef50_UPI000373CA50 hypothetical protein 3.03701598461e-05 0.000128539087464 39632000747.6 +UniRef50_A7HRI8 UPF0260 protein Plav_0898 0.0168196798655 0.00235573535507 -5.83927189141e+12 +UniRef50_UPI0002F72AC7 hypothetical protein 1.02926004363e-05 0.000194158547558 74228939142.0 +UniRef50_S5XR90 Aminotransferase 0.0127036950058 0.00375226913531 -3.61380047026e+12 +UniRef50_A1B4T6 0.000320802591739 0.000796650812189 1.9210576591e+11 +UniRef50_A0A058TF07 Periplasmic binding protein LacI transcriptionalregulator 0.000129417307607 2.58216515044e-05 -41822837630.4 +UniRef50_B8J6J0 1.23483872819e-05 9.7951084547e-05 34558859349.1 +UniRef50_UPI0003692945 hypothetical protein 2.10807954063e-05 2.62882541962e-05 2102315016.19 +UniRef50_A7ZSA7 Monofunctional biosynthetic peptidoglycan transglycosylase 0.00712280325678 0.00042288788334 -2.70483805346e+12 +UniRef50_P0A6C2 Endonuclease 4 0.00320459178605 0.00528843867512 8.41274560794e+11 +UniRef50_G8ATW7 0.000124628748879 3.27827436784e-05 -37079359376.7 +UniRef50_UPI000471B5FA hypothetical protein, partial 4.3003955889e-05 0.000107944283316 26217207089.7 +UniRef50_U6I1P7 Fibrillar collagen chain FAp1 alpha 8.39830604904e-06 5.24758030807e-06 -1271986645.38 +UniRef50_F0KI43 Transcriptional regulator, LysR family 0.000173158710486 0.00672179916575 2.64376651264e+12 +UniRef50_UPI0004763F0C GTP binding protein Era, partial 1.8388975208e-05 0.000153093910305 54382035314.1 +UniRef50_W0YTS0 Periplasmic tail specific protease 0.000918601726542 0.000170656713888 -3.01954579926e+11 +UniRef50_P53652 Superoxide dismutase [Mn] 0.000229242503354 6.56831859363e-05 -66030903540.2 +UniRef50_UPI000427CAFD hypothetical protein 1.2400920263e-06 1.63439733752e-05 6097622246.02 +UniRef50_B2FUP3 0.00012609140758 8.08936753714e-05 -18246879131.2 +UniRef50_H0JKI3 DNA polymerase II large subunit 2.84570488317e-06 6.65832759929e-05 25731639604.9 +UniRef50_V5S959 Dihydroorotate dehydrogenase 0.000336627398679 2.034295502e-05 -1.27687911152e+11 +UniRef50_Q9RSJ1 2.02236956248e-06 0.00150945756858 6.08570088154e+11 +UniRef50_Q2C7C2 3.25193248383e-05 3.15305420154e-05 -399183759.334 +UniRef50_A8SBF8 2.68210129445e-05 1.96921715916e-05 -2878000734.89 +UniRef50_P32129 Probable acyltransferase YihG 0.00285654272014 0.000209197193767 -1.06876587558e+12 +UniRef50_UPI00016A4C3D hypothetical protein 0.000184144043637 7.97452775599e-05 -42147062982.2 +UniRef50_B5Z3J3 8.52570495091e-05 1.28756323673e-05 -29221266320.0 +UniRef50_Q1BAN7 0.00197988196541 0.00621022837143 1.7078427563e+12 +UniRef50_G0NRW8 2.22064278335e-06 2.62719878332e-05 9709823139.84 +UniRef50_UPI00022CA8A0 PREDICTED 5.27460627209e-05 0.00808391205407 3.2422802642e+12 +UniRef50_C1F933 Aminomethyltransferase 2.21622872946e-05 1.48384872564e-05 -2956707948.55 +UniRef50_R7ACY8 Dyp type peroxidase 0.000267089143052 0.00411570230027 1.55373235936e+12 +UniRef50_F0VQM4 6.46002187561e-06 1.01089698222e-05 1473125063.67 +UniRef50_UPI0004710988 hypothetical protein 5.2294531821e-05 6.91296175571e-05 6796530701.4 +UniRef50_Q8FHF8 Protein YdeP 0.0017293100796 0.000756766628069 -3.92627725833e+11 +UniRef50_R4ZTR9 Hydrolase, haloacid dehalogenase like family 0.0102276243361 0.000296800708731 -4.00919536328e+12 +UniRef50_UPI0003B58A15 hypothetical protein 5.80443599072e-06 8.726629228e-06 1179725269.23 +UniRef50_UPI00046F911C riboflavin biosynthesis protein RibF 1.00971532303e-05 1.28967646164e-05 1130237471.66 +UniRef50_UPI0003B578C2 LuxR family transcriptional regulator 9.23911855955e-06 1.17084296089e-05 996891172.477 +UniRef50_D9W2E7 BldA regulated nucleotide binding protein 0.000185918559711 0.000303465333238 47455074934.0 +UniRef50_Q4PIL0 Catabolic 3 dehydroquinase 0.000115137153741 4.08506579921e-05 -29990369931.6 +UniRef50_D2ZRP9 Conserved repeat protein 0.000607759462445 0.000314926774661 -1.1822014952e+11 +UniRef50_K4Z6Z2 Lipoprotein, YaeC family 8.08844018573e-05 4.80546487882e-05 -13253774180.4 +UniRef50_UPI0003730702 hypothetical protein 6.56974493527e-06 3.84611870077e-05 12874966516.6 +UniRef50_UPI000237AA64 binding protein dependent transporter inner membrane component 5.12804946669e-05 1.11302818994e-05 -16209133592.8 +UniRef50_P41338 Acetyl CoA acetyltransferase 4.83959499634e-06 6.12146257819e-06 517505673.077 +UniRef50_R4RQD5 Exodeoxyribonuclease I 0.000514829119411 0.000471844902017 -17353256037.6 +UniRef50_B6JP11 L seryl tRNA selenium transferase 0.000125828662949 0.00298919840628 1.15597750288e+12 +UniRef50_B9KSR5 Acetyltransferase 0.00579538265564 0.00203620737595 -1.51762519068e+12 +UniRef50_A5WGD9 Endonuclease exonuclease phosphatase 0.000106835657221 0.00736630417068 2.93073652258e+12 +UniRef50_UPI0003B3F986 esterase, partial 2.71214784362e-05 2.51235417726e-05 -806591548.535 +UniRef50_B5F9P6 Isopentenyl diphosphate Delta isomerase 6.0617201478e-05 1.58329251885e-05 -18079961902.9 +UniRef50_UPI00046D1DF4 hypothetical protein 8.38863447297e-06 0.000123517531901 46478948682.1 +UniRef50_A0A059IPL7 0.000534735206893 0.00142895179933 3.61006211638e+11 +UniRef50_D7I1Z5 Protein involved in meta pathway of phenol degradation 0.000161779709512 0.003745383422 1.44674479449e+12 +UniRef50_UPI0003B7A9E3 methionine aminopeptidase 5.43914057364e-05 1.16668616977e-05 -17248422717.5 +UniRef50_UPI00046D808E hypothetical protein 2.91123084894e-06 0.00144467485761 5.82057668552e+11 +UniRef50_UPI0002898699 glycosyl transferase family protein 3.17717022939e-05 3.0717773612e-05 -425483942.042 +UniRef50_P33639 Sensor protein PilS 0.000515975548047 0.000697369982521 73231159157.2 +UniRef50_P27250 Aldehyde reductase Ahr 0.00354454248924 0.00928659750962 2.31813807467e+12 +UniRef50_I0J9Y4 0.00650534735772 0.00104229425363 -2.20550157732e+12 +UniRef50_UPI00047854C4 hypothetical protein 5.98539522028e-06 7.8823458602e-06 765822251.538 +UniRef50_B9KRB9 0.00562887624012 0.000122483601538 -2.22299827923e+12 +UniRef50_C9TQ56 TRAP dicarboxylate transporter 2.98489511065e-05 3.89094289149e-05 3657826075.82 +UniRef50_Q4V0C6 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.82223519066e-06 1.14161343066e-05 1450901175.21 +UniRef50_Q9HTN0 0.00160643458038 0.00050384727275 -4.45128026358e+11 +UniRef50_E8QKR2 Zinc dependent alcohol dehydrogenase 0.000146123608583 0.00400907448043 1.5595206707e+12 +UniRef50_UPI000413BA09 sugar kinase 0.00011875082649 9.68496145918e-05 -8841788001.4 +UniRef50_Q4LAB5 Protein ArsC 1 0.00814343949632 0.000835801995839 -2.95018293374e+12 +UniRef50_R8ZEH6 Putative major facilitator superfamily transporter 0.000344911741645 0.000687418122876 1.38274029129e+11 +UniRef50_UPI0002E5E41F hypothetical protein 4.35266714093e-06 2.93482529109e-05 10091024705.7 +UniRef50_Q5LQC3 Putative arginyl tRNA protein transferase 0.0092098333498 0.00185965957167 -2.96735535101e+12 +UniRef50_UPI000288DE5F cation 0.000273441013945 0.00025927681651 -5718260318.76 +UniRef50_UPI0004716842 hypothetical protein 1.12614959586e-05 1.61564020544e-05 1976133658.13 +UniRef50_Q13T51 UPF0271 protein Bxeno_A4200 0.0054363477413 0.000591786387407 -1.95580886802e+12 +UniRef50_Q9RSD6 Aminopeptidase 0.000267149184478 0.0325248783089 1.30228410944e+13 +UniRef50_E6RJK7 7.76909041162e-05 2.99503847075e-05 -19273433527.3 +UniRef50_Q3HKI4 0.0263919569899 0.00851841232426 -7.21576931456e+12 +UniRef50_Q3HKI5 0.052782319054 0.0105830691393 -1.70363550336e+13 +UniRef50_UPI00034472D6 3.26787048208e-05 8.96767271476e-05 23010801057.7 +UniRef50_Q0SI65 Putative 3 methyladenine DNA glycosylase 7.1850293024e-06 2.37330304149e-05 6680631115.93 +UniRef50_UPI000412412A phosphohydrolase 4.15305453937e-05 0.000325038833951 1.14455775128e+11 +UniRef50_UPI00028909B3 Sua5 YciO YrdC YwlC family protein, partial 2.59489038596e-05 9.4729313822e-05 27767495532.4 +UniRef50_E8RT81 0.000104126466159 3.74703858831e-05 -26909877569.5 +UniRef50_P74839 Propionate catabolism operon regulatory protein 0.00639791717654 0.0026670868257 -1.50618199507e+12 +UniRef50_A4IR80 Alanine tRNA ligase 0.0114864035546 0.00686248743583 -1.86673167898e+12 +UniRef50_B9G127 8.27822558884e-05 0.00010427503067 8676896925.34 +UniRef50_UPI0003C17643 5.34516296268e-06 3.26701377001e-06 -838974330.839 +UniRef50_Q83EL0 Chaperone protein HtpG 0.00101411078308 0.00122586469392 85487652318.8 +UniRef50_UPI0001FFFE99 hypothetical protein 8.16381786993e-05 9.03203561744e-06 -29311990939.7 +UniRef50_Q5F551 Phosphopantetheine adenylyltransferase 6.60402272903e-05 0.00126831973152 4.85374989486e+11 +UniRef50_G4LM89 0.00118070589173 0.000350826816659 -3.35032366368e+11 +UniRef50_S0F055 2.93964992691e-06 5.5889742747e-06 1069564750.07 +UniRef50_UPI0003458B5D hypothetical protein 8.61247106387e-06 8.05708223206e-05 29050469430.6 +UniRef50_UPI00038FF0AB Ribonuclease H 1.44765806814e-05 9.29622841725e-05 31685641627.2 +UniRef50_Q28TL6 Phosphatidylcholine synthase 0.00890816149968 0.00450534443628 -1.77747127714e+12 +UniRef50_P15531 Nucleoside diphosphate kinase A 1.27208491738e-05 1.81766861968e-05 2202588356.83 +UniRef50_Q4L8S8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0130298642878 0.00316301830304 -3.98336680386e+12 +UniRef50_UPI00046D6A82 hypothetical protein 5.25579369349e-05 1.37847939152e-05 -15653193637.0 +UniRef50_O35046 Putative carboxypeptidase YocD 9.39045459123e-06 0.00156859634034 6.29470549685e+11 +UniRef50_Q3S2Y2 Glycosyltransferase Gtf1 0.000110874356845 0.00312765459478 1.21791120211e+12 +UniRef50_F8WKF3 0.0195116928842 0.00236061479183 -6.9241006933e+12 +UniRef50_J4VP36 DNA polymerase III, alpha subunit 3.33370022518e-05 0.00679362194553 2.72920998963e+12 +UniRef50_M1LZD3 0.000275580846929 0.000331919299987 22744524850.1 +UniRef50_D7W4Z4 2.07328842744e-05 1.62776448947e-05 -1798634809.52 +UniRef50_F9Z273 Glycerol 3 phosphate dehydrogenase 0.00015428582651 0.00691240397387 2.72833522752e+12 +UniRef50_R7PG96 0.000250543797907 0.00126564302227 4.09808013542e+11 +UniRef50_A0A024DEK4 Lactoylglutathione lyase 0.00221796076653 0.00652768859602 1.73989001107e+12 +UniRef50_X1FSK7 Marine sediment metagenome DNA, contig 1.35953098304e-05 1.92455974855e-05 2281090463.19 +UniRef50_E5QVT2 Riboflavin transporter RibU 0.00874963798593 0.000369145881487 -3.38330750277e+12 +UniRef50_W4RLM9 Transketolase 0.000157708015486 8.4563939649e-05 -29529160994.1 +UniRef50_P45564 0.00351669937676 0.00109130256553 -9.79162455659e+11 +UniRef50_Q8CQW0 0.00939593818585 0.00409978365661 -2.13812257458e+12 +UniRef50_UPI0002FD0224 hypothetical protein 1.04280371092e-05 8.9150362921e-05 31781168961.8 +UniRef50_U6I5L2 Propionyl coenzyme A carboxylase alpha chain 4.88410051516e-06 3.57671691119e-06 -527806804.324 +UniRef50_G2JJI4 0.000486358319742 0.00509848402169 1.86197174302e+12 +UniRef50_UPI0003694B5F hypothetical protein 2.66912031495e-05 2.22280554895e-05 -1801827479.32 +UniRef50_I4YT79 2.81324974766e-05 2.10773274871e-05 -2848258701.43 +UniRef50_O31038 FMN reductase 0.000202586398316 0.000584785554841 1.542984896e+11 +UniRef50_Q5HM43 Alcohol dehydrogenase, zinc containing 0.010941895819 0.00268490864115 -3.33344704832e+12 +UniRef50_Q8CY30 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.00358513413841 0.0218297286986 7.3655667103e+12 +UniRef50_F0KMP6 0.000156850133866 0.00625977282899 2.4638247833e+12 +UniRef50_UPI0003500B2C PREDICTED 2.52665832468e-05 0.000350876504993 1.31452721092e+11 +UniRef50_N2QIY6 RNA pseudouridylate synthase family protein 0.00154934087445 0.000700355822605 -3.42745683648e+11 +UniRef50_D0IT38 Sodium D alanine glycine symporter 0.000492090723093 0.00184740328571 5.47156313085e+11 +UniRef50_F0LF03 Oligopeptide ABC transporter membrane spanning protein 0.00252680484021 0.00141341384763 -4.49489606548e+11 +UniRef50_UPI000255B4D9 citryl CoA lyase 5.71887759999e-05 9.99928749691e-06 -19050975588.8 +UniRef50_A8GL06 TRAP dicarboxylate transporter, DctM subunit 0.00412448432507 0.000941564521568 -1.28498378349e+12 +UniRef50_UPI00035EC92D hypothetical protein 7.18523765202e-06 4.48221764235e-06 -1091242347.69 +UniRef50_G0LSM2 Phage protein 0.00407882990441 0.0024976139356 -6.38356290311e+11 +UniRef50_Q1ISS4 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.58752471503e-05 1.2686922388e-05 -1287165831.69 +UniRef50_B9DKA9 Teichoic acid biosynthesis protein B 0.00732376567237 0.00295544893095 -1.76354307379e+12 +UniRef50_UPI000462E9F8 hypothetical protein 6.23254076204e-05 2.84884634669e-05 -13660389580.8 +UniRef50_Q8DSW4 0.004315714206 0.00152988630413 -1.12467290994e+12 +UniRef50_UPI0003071439 hypothetical protein 8.99014894395e-06 4.35195287432e-05 13939934348.1 +UniRef50_P71067 L lactate permease 0.0073065777602 0.0454291398461 1.53905461305e+13 +UniRef50_U5MKH7 Short chain dehydrogenase reductase SDR 0.00117083215973 0.00158110023274 1.6563025563e+11 +UniRef50_UPI000371974E hypothetical protein 2.49536545569e-06 7.55413752459e-06 2042288362.33 +UniRef50_C9AA28 FeS assembly protein SufD 0.00866677828 0.00159370275064 -2.8554873876e+12 +UniRef50_M9VHT5 Primosome assembly protein PriA 0.000203715074394 0.00602311698012 2.34936396144e+12 +UniRef50_UPI00038C29BD PREDICTED 1.78877359603e-06 4.72714023511e-06 1186254670.01 +UniRef50_L7ETS7 D5 like N terminal domain protein 9.04112640343e-06 1.77434146317e-05 3513220546.84 +UniRef50_G7M7Y7 Transcriptional regulator, TetR family 0.000767876918728 0.00244342714415 6.76440187315e+11 +UniRef50_Q3J4U2 0.0129019035377 0.00288389260971 -4.04439394645e+12 +UniRef50_UPI0003786C39 hypothetical protein 0.000239535022129 8.81242411625e-05 -61126390295.6 +UniRef50_P26218 Cryptic outer membrane porin BglH 0.00471028844198 0.00119313119806 -1.41991953974e+12 +UniRef50_Q3IZ97 Transglutaminase like domain protein 0.00298869620373 0.000697168144763 -9.25117997618e+11 +UniRef50_B4EU40 UPF0234 protein PMI0103 0.00292071125052 0.00520958115688 9.2404486879e+11 +UniRef50_UPI0002627F9F 30S ribosomal protein S17 9.95257731363e-05 0.000426421138727 1.31971670546e+11 +UniRef50_F5ZJK9 Methyltransferase 0.00016508133623 0.0120228916284 4.78714352666e+12 +UniRef50_D9SQV1 Inner membrane translocator 0.000125828662949 0.0037853569928 1.47739649422e+12 +UniRef50_A6QIK5 0.00174974136927 0.0124033016182 4.30097300637e+12 +UniRef50_Q6F9V8 Pseudouridine synthase 0.000134977111625 0.00590089982846 2.32777375661e+12 +UniRef50_UPI000377859E hypothetical protein 1.78626419942e-05 2.54639258093e-05 3068731554.4 +UniRef50_UPI00025564DF thioredoxin 0.000249463772597 0.000143962163713 -42592294156.8 +UniRef50_I6U015 0.00363010004224 0.00174298982337 -7.61849552804e+11 +UniRef50_A6QJ17 Iron compound ABC transporter, permease protein 0.0172786390315 0.00313635667709 -5.70941293179e+12 +UniRef50_UPI0002559088 major facilitator transporter 0.000517782558451 0.000131251868968 -1.56047182609e+11 +UniRef50_W9T9W7 Lon protease 0.000570727039869 0.00025598649862 -1.27064618803e+11 +UniRef50_V8G2W5 Integrase 0.000128749190972 8.85918105145e-05 -16212027277.2 +UniRef50_A0A023XXU1 Alanine dehydrogenase 0.000392620184869 0.00869380317236 3.35128943902e+12 +UniRef50_E6E9V0 0.000130087027394 0.00131794026067 4.79550926873e+11 +UniRef50_Q88KQ9 Membrane protein, putative 0.000370757938214 0.00614232502475 2.33005245793e+12 +UniRef50_A5UP71 Predicted tubulin like protein 0.00180544108894 0.000245415544476 -6.29801455965e+11 +UniRef50_Q2FJ09 Putative antiporter subunit mnhG2 0.0154441559366 0.000446322476372 -6.054809412e+12 +UniRef50_A6LWW3 GCN5 related N acetyltransferase 0.000432235865095 0.000827990762236 1.59771108435e+11 +UniRef50_D3E4D7 Transcriptional regulator MarR family 0.00199474803725 0.000905817906907 -4.39614456294e+11 +UniRef50_F6A8J6 Flagellar hook basal body protein 0.00102556865495 0.000565346542769 -1.85797314248e+11 +UniRef50_B7V109 Adenylate kinase 7.79202111019e-06 2.81608597213e-05 8223150101.06 +UniRef50_X0UW79 Marine sediment metagenome DNA, contig 3.02979048604e-05 0.00390856953861 1.56570585029e+12 +UniRef50_P0ABS6 DNA primase 0.0035856819892 0.00111745540535 -9.96453360446e+11 +UniRef50_Q7NM67 Ribose phosphate pyrophosphokinase 4.79180533923e-05 6.51786640479e-05 6968320333.18 +UniRef50_D8PHS6 4.74284231752e-06 0.00044644563042 1.7832083586e+11 +UniRef50_UPI000299E436 putative oxidase 3.08064086561e-05 0.00019343485972 65655101370.0 +UniRef50_L7VT93 Chemotaxis protein methyltransferase 2 0.000978407110204 0.00119610414582 87886964721.2 +UniRef50_F9YAM3 0.000821758338519 8.23467551486e-05 -2.98509529807e+11 +UniRef50_J0MX42 ISSep1, transposase family protein 0.00116956693662 0.000212623548732 -3.86329788706e+11 +UniRef50_S5Y434 Sulfolipid biosynthesis protein 0.000840976058686 0.000217945907889 -2.51524917316e+11 +UniRef50_A3PLB3 0.0109125476458 0.00314947772749 -3.1340465896e+12 +UniRef50_B3JPS9 2.45764342125e-05 2.17978518278e-05 -1121747805.74 +UniRef50_UPI0003B4FC9A transcriptional regulator 0.000141727885356 5.38844088179e-05 -35463489439.1 +UniRef50_Q7N475 UPF0259 membrane protein plu2479 0.00224444518027 0.00099620377663 -5.03930372294e+11 +UniRef50_I0C6V2 Acetyltransferase 0.0145504805201 0.00150239529729 -5.26767212246e+12 +UniRef50_Q64XQ0 Lipoyl synthase 5.32053171879e-06 3.37243015871e-05 11466950449.3 +UniRef50_A0A059KIS0 1.18689501377e-05 4.00683429897e-05 11384440939.8 +UniRef50_A5FPX2 Glutamate tRNA ligase 4.85804950872e-06 5.7378424164e-05 21203119745.8 +UniRef50_UPI0004765137 hypothetical protein 3.6435553358e-06 4.63673154192e-06 400957422.053 +UniRef50_UPI0004545C86 PREDICTED 1.045482162e-05 1.09778222878e-05 211141787.531 +UniRef50_A5UMB6 Cell wall biosynthesis protein, MurD like peptide ligase family 0.00403136630546 0.000948192125586 -1.24471525122e+12 +UniRef50_M7DM48 Permease 0.00465703242077 0.00171617433912 -1.18726049595e+12 +UniRef50_Q01T92 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.59703192049e-05 2.06726420239e-05 1898385426.02 +UniRef50_UPI0002892E6E extracellular solute binding protein 9.91785971057e-06 0.00051265670649 2.02961841744e+11 +UniRef50_Q5HS30 0.00355439322914 0.00324151543941 -1.26312603156e+11 +UniRef50_UPI0002D8B23E acetyltransferase 0.000121707723196 0.000129111977662 2989188388.34 +UniRef50_UPI0003B5C533 PTS glucose transporter subunit IIA 1.12939753627e-05 6.93470540792e-06 -1759890775.0 +UniRef50_E1RMJ4 2.6141688974e-05 4.090259074e-05 5959157179.57 +UniRef50_Q9ZAH9 Bacterial PH domain protein 0.00491793474577 0.00150391192687 -1.37828290676e+12 +UniRef50_V9WPU7 0.000160055073261 0.000132033228208 -11312762714.6 +UniRef50_D4HFD7 4.07927914051e-05 0.000355749293159 1.27151804709e+11 +UniRef50_U5NML8 0.00236501981175 0.000637374183882 -6.97471740567e+11 +UniRef50_Q9I082 3.60671742488e-05 0.000876906889179 3.39457311181e+11 +UniRef50_U5NML2 0.0096052396591 0.00304824766512 -2.64713813131e+12 +UniRef50_Q9I089 0.000435560756373 0.000578279453069 57617289211.5 +UniRef50_Q9T0P4 Ferredoxin dependent glutamate synthase 2, chloroplastic 2.2043027059e-06 2.76034657124e-06 224481731.863 +UniRef50_P0A9G2 Transcriptional activator protein NhaR 0.00269825184057 0.000432848373346 -9.14571179343e+11 +UniRef50_Q4L7Y8 ATP synthase subunit b 0.028689000604 0.00603601213826 -9.14528942703e+12 +UniRef50_UPI00046E378F electron transporter RnfB, partial 4.69633123263e-05 2.28598502957e-05 -9730863404.49 +UniRef50_F3ZK40 Putative ABC transporter solute binding lipoprotein 5.3217053099e-05 8.32660562008e-05 12131151294.9 +UniRef50_M4Z7B3 Putative membrane protein 3.94917804559e-05 0.000111859106646 29215577629.9 +UniRef50_UPI0003804CCC hypothetical protein 9.61335363832e-05 8.18933468588e-05 -5748939257.78 +UniRef50_Q9HTF1 Low specificity L threonine aldolase 0.000547735871686 0.00108877547075 2.18424325445e+11 +UniRef50_Q9I1P2 HTH type transcriptional regulator VqsM 0.000549286809212 0.000216085394041 -1.34517500146e+11 +UniRef50_P25524 Cytosine deaminase 0.00293986125375 0.00203887727803 -3.63738287315e+11 +UniRef50_UPI00047C40EA lysophospholipase 2.35864983119e-05 4.63655183047e-05 9196169901.1 +UniRef50_E0IXH7 ShET2 enterotoxin domain protein 0.00319604708711 0.000562917894681 -1.06302656711e+12 +UniRef50_UPI00036ACAB2 hypothetical protein 9.25319813766e-06 1.72405633087e-05 3224597335.54 +UniRef50_A7K3E5 Nucleoside diphosphate sugar epimerase dehydratase 7.6933285773e-05 0.00291488132792 1.14571445015e+12 +UniRef50_D4M7N5 Monosaccharide ABC transporter membrane protein, CUT2 family 0.000545323508899 0.000367653718447 -71727474659.0 +UniRef50_V5XTJ1 0.00156568770498 0.000948969425598 -2.48976737371e+11 +UniRef50_UPI00046F6DC9 hypothetical protein 9.42259609704e-05 4.13499985605e-05 -21346674885.9 +UniRef50_W7SUS4 Non ribosomal peptide synthetase 3.66192767703e-05 1.91233476565e-05 -7063321282.43 +UniRef50_Q8XPQ1 Probable remnant of a transposase protein 4.70934889244e-05 4.27787669631e-05 -1741906203.37 +UniRef50_W1K3W6 2.21303591483e-05 1.03519971196e-05 -4755069287.74 +UniRef50_I4DYX6 ABC transporter homolog 0.00647510067623 0.000214256376199 -2.52757967312e+12 +UniRef50_P24200 5 methylcytosine specific restriction enzyme A 0.00282313711647 0.00578825307607 1.19705369896e+12 +UniRef50_Q49XC4 0.0211849846689 0.00456685995472 -6.70894087444e+12 +UniRef50_A0A024TW04 Secondary thiamine phosphate synthase enzyme, variant 1.5965533313e-05 2.6701071707e-05 4334068589.53 +UniRef50_G8VL07 Universal stress protein UspA 0.000132761778031 0.00617243139378 2.43828873896e+12 +UniRef50_UPI00006D0388 conserved hypothetical protein 5.31860992743e-05 1.68007818884e-05 -14689199126.7 +UniRef50_Q795M6 Putative aminotransferase YugH 0.000220693214703 0.0013806425441 4.68285778458e+11 +UniRef50_I3TTH4 9.43560993708e-05 5.11235423888e-05 -17453513776.8 +UniRef50_UPI0003B46BA7 hypothetical protein 0.000168082562019 1.98123795181e-05 -59858492155.4 +UniRef50_I3TTH2 0.0150853829615 0.00350986064304 -4.67318040761e+12 +UniRef50_I3TTH3 0.000368796561965 8.30781764986e-05 -1.15348018371e+11 +UniRef50_J3XAF4 Membrane flanked domain containing protein 3.86906259438e-05 0.000342260255617 1.22554784717e+11 +UniRef50_Q9FFF4 Acetolactate synthase small subunit 1, chloroplastic 2.1690630046e-05 0.000165208476793 57939915893.8 +UniRef50_Q49XL3 0.00866062858509 0.00523311632171 -1.38372876103e+12 +UniRef50_I1G1I4 3.64713277618e-05 6.49754156272e-06 -12100785308.3 +UniRef50_UPI0003B53CAB LolC E family lipoprotein releasing system, transmembrane protein 6.94733639748e-06 1.84101566972e-05 4627681219.61 +UniRef50_UPI0003B4AD44 cytochrome C550 0.00043842693117 8.36313648316e-05 -1.43235323962e+11 +UniRef50_H1Z0J9 NADPH dependent FMN reductase 0.00129537751391 0.0033397006438 8.25318334202e+11 +UniRef50_M4QZZ1 Chloride channel protein 9.42929197787e-05 0.00451480551647 1.78461518107e+12 +UniRef50_U1RIR7 0.000126550057598 4.24569875954e-05 -33949404298.1 +UniRef50_B2S8N8 Argininosuccinate lyase 0.00240599619993 0.000989815494563 -5.71729529249e+11 +UniRef50_P0A3S3 DNA entry nuclease 0.00646575110679 0.00268998530994 -1.52432298605e+12 +UniRef50_B4TBG4 UDP 4 amino 4 deoxy L arabinose oxoglutarate aminotransferase 0.0029749323127 0.000369263391484 -1.05194051865e+12 +UniRef50_Q8CPC5 Nuclease SbcCD subunit C 0.00930050015102 0.00336481434269 -2.39630919988e+12 +UniRef50_Q8CQW1 0.00241949840593 0.00030853947811 -8.5222002354e+11 +UniRef50_A3QJF9 Ribosomal RNA large subunit methyltransferase F 0.000466750924797 0.00116991495242 2.83875946744e+11 +UniRef50_Q8CQW3 0.0101312948381 0.00471674221971 -2.18592133608e+12 +UniRef50_Q8CQW5 0.00499984721893 0.00357622625113 -5.74733254495e+11 +UniRef50_Q8CQW7 0.017322910438 0.000881542403566 -6.63758203376e+12 +UniRef50_H6P8E7 Pyridoxal phosphate enzyme, YggS family 0.00542658740054 0.0046973860078 -2.94387550556e+11 +UniRef50_A6LZ09 0.00128748175706 0.00210647097253 3.30635996413e+11 +UniRef50_G2SXD8 Aspartate aminotransferase 0.00039575677738 0.000859754110769 1.87321417377e+11 +UniRef50_A6M2G5 Phage infection protein, putative 0.000351590580038 0.0007821927186 1.7383936742e+11 +UniRef50_U5MXH4 DNA helicase, Rad3 0.000255406871656 0.000840464325227 2.36194873469e+11 +UniRef50_I0EP63 8.03731700836e-05 0.00215002115924 8.35542290661e+11 +UniRef50_UPI0003A9ADDB hypothetical protein 0.00016440309413 0.000357350394256 77895192790.5 +UniRef50_UPI0003B779BE spermidine putrescine ABC transporter permease, partial 3.04269767458e-05 0.000215346823979 74654411549.7 +UniRef50_A6M0M4 Respiratory chain NADH dehydrogenase domain, 51 kDa subunit 0.000840815573878 0.00272419067155 7.60341638541e+11 +UniRef50_UPI0002624FE5 Bcr CflA subfamily drug resistance transporter 9.52011697421e-06 8.52932413276e-06 -399995228.489 +UniRef50_UPI00037F95F5 hypothetical protein 8.1669980282e-05 0.000664535275814 2.35309872368e+11 +UniRef50_R5J671 Arabitol phosphate dehydrogenase 0.000119710144452 0.00197433174467 7.48733498775e+11 +UniRef50_P41006 Uracil permease 0.00473546390597 0.00304206396544 -6.83646336346e+11 +UniRef50_C4J3V7 0.000186800307713 0.000187548114652 301898837.897 +UniRef50_E5ARK1 Transposase 9.4514906556e-06 1.44994245789e-05 2037912869.95 +UniRef50_M4ZCC6 Acetylornithine deacetylase 0.00956568730844 0.00422832255539 -2.15475964764e+12 +UniRef50_A5UKP7 0.00259160533764 0.000233759924953 -9.5189112712e+11 +UniRef50_UPI00041293AC membrane protein 0.00028893540153 0.000238199907919 -20482541365.3 +UniRef50_D3DZ29 GTP binding protein 0.00302130446044 0.000960167684075 -8.32106209609e+11 +UniRef50_C7ZTN4 Acyl CoA dehydrogenase 0.0150278471013 0.00260501344824 -5.01525039107e+12 +UniRef50_E9WE17 LysR family bacterial regulatory helix turn helix protein 0.00016629338716 0.000630167165795 1.87271536806e+11 +UniRef50_Q8RG52 Lysine tRNA ligase 1.48982537835e-05 4.33919008605e-06 -4262823588.92 +UniRef50_A0A022NN79 Putative transcriptional regulator 6.2296976176e-05 0.000332100182845 1.0892286539e+11 +UniRef50_Q5F7E0 ATP phosphoribosyltransferase 3.88254468993e-05 0.001991412023 7.88283161703e+11 +UniRef50_B9DNZ7 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.0174892627418 0.003845889404 -5.50799723949e+12 +UniRef50_A4J5C2 Methylenetetrahydrofolate reductase 0.000272012488274 0.00115860436454 3.57928020154e+11 +UniRef50_E4RJQ9 Cysteine desulfurase, SufS subfamily 0.000278235589752 0.000690406627596 1.66398505885e+11 +UniRef50_UPI0001E8958F inosine uridine nucleoside hydrolase 1.12008384976e-05 7.75092426812e-06 -1392772709.65 +UniRef50_P29849 Maltodextrin phosphorylase 0.00459365359943 0.00537675140239 3.16146192746e+11 +UniRef50_P76272 0.00338203376751 0.00118543516999 -8.86793809115e+11 +UniRef50_D3QGG7 Tributyrin esterase 0.039792210454 0.00738705035634 -1.30823607875e+13 +UniRef50_G4KXX3 0.000100573531661 0.0014600370791 5.48832116595e+11 +UniRef50_W7DIL1 Shikimate 5 dehydrogenase 3.31789155702e-05 2.76999942654e-05 -2211907764.67 +UniRef50_A3PGM6 50S ribosomal protein L6 0.0269542735652 0.00459529538046 -9.02659386868e+12 +UniRef50_A6M2I8 0.000440024954543 0.000867287131708 1.72490984018e+11 +UniRef50_A0A024DHC4 MarR family transcriptional regulator 0.00154145689254 0.000880443303739 -2.66859297348e+11 +UniRef50_Q8VRM3 Type II secretion system protein L 0.0042201370393 0.000556873012072 -1.4789046411e+12 +UniRef50_Q5HRK2 Acetyltransferase, GNAT family 0.0213467308785 0.00148941191592 -8.01664334191e+12 +UniRef50_A9KMQ0 L lactate dehydrogenase 0.000282471710003 0.00102085761574 2.9809545116e+11 +UniRef50_Q73JJ6 50S ribosomal protein L7 L12 0.0306060120911 0.00372633536007 -1.0851655347e+13 +UniRef50_D4HCK8 0.00068729941948 0.00519892218567 1.82139747455e+12 +UniRef50_Q8D2Y0 Polyribonucleotide nucleotidyltransferase 4.56349494935e-06 1.85124106852e-05 5631348455.03 +UniRef50_Q9RTI8 MutT nudix family protein 0.000282408470458 0.0437800975533 1.75605508594e+13 +UniRef50_G7U580 Pyridine nucleotide disulfide oxidoreductase 0.000205155428724 0.00376148124089 1.4357323714e+12 +UniRef50_O08368 Glutathione peroxidase 0.00266660622481 0.00101602243346 -6.66360931509e+11 +UniRef50_A1JIE0 sn glycerol 3 phosphate import ATP binding protein UgpC 6.3587661951e-05 5.14939589649e-05 -4882376301.91 +UniRef50_UPI0003FD6A90 sugar ABC transporter permease 6.17822081552e-05 0.000193125491769 53024895358.3 +UniRef50_P0A9G4 HTH type transcriptional regulator CueR 0.00467817562702 0.0233820775185 7.55099471629e+12 +UniRef50_Q6G970 Segregation and condensation protein B 0.0163450291323 0.00168235266177 -5.91950242241e+12 +UniRef50_F6D4R4 Peptidase U32 0.00274039518634 0.00124288501598 -6.04563232291e+11 +UniRef50_Q99VJ4 Clumping factor A 0.0251381137507 0.00420200427075 -8.45216431199e+12 +UniRef50_Q9RVI9 0.000686338161548 0.0469049569648 1.86590235771e+13 +UniRef50_Q9RVI8 0.000108265579982 0.047548525461 1.91522150714e+13 +UniRef50_P27669 Regulatory protein UhpC 0.0020414298206 0.00102347696792 -4.10960058313e+11 +UniRef50_C7DA27 2.76995036226e-05 1.91020987809e-05 -3470877836.62 +UniRef50_UPI00036D28EF hypothetical protein 0.000165717272362 2.0706756809e-05 -58542524607.9 +UniRef50_U1KC82 7.78695067687e-06 1.14565344292e-05 1481455991.67 +UniRef50_UPI0003B7607C 50S ribosomal protein L13 2.01445036772e-05 8.76840848259e-05 27266557713.6 +UniRef50_Q46PS3 Pseudouridine 5 phosphate glycosidase 0.00313379370701 0.000843077797164 -9.24790123052e+11 +UniRef50_I0C2G5 Permease 0.00537189978128 0.00145665641492 -1.58063179244e+12 +UniRef50_UPI0003B4774F coproporphyrinogen III oxidase 2.95770805295e-05 1.21472574101e-05 -7036633481.28 +UniRef50_Q2YSR3 HTH type transcriptional regulator SarX 0.00646980990613 0.00288228180553 -1.44832911813e+12 +UniRef50_Q0DU63 Os03g0204900 protein 0.000286580420309 0.000601363125089 1.27081640738e+11 +UniRef50_I6T4Q5 Transcriptional regulator 0.0117581380805 0.000515087276506 -4.53895757732e+12 +UniRef50_UPI00035E2F93 hypothetical protein 4.51260818845e-06 0.000358965536761 1.43096996891e+11 +UniRef50_UPI000378F4AE hypothetical protein 3.81157553097e-06 4.36387679719e-05 16078726323.0 +UniRef50_UPI000424F3F7 2 hydroxyacid dehydrogenase 1.70942989117e-05 6.22645418748e-05 18235781385.4 +UniRef50_B7MG07 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.00242674528026 0.000858582712558 -6.33086472099e+11 +UniRef50_N9PED4 Ferrous iron transporter B 0.000226680206122 0.00757456492926 2.96643123142e+12 +UniRef50_F2DIT6 Predicted protein 0.000110435142015 0.00015710855739 18842630534.1 +UniRef50_C5YL49 6.85905204115e-05 4.48919709712e-05 -9567395222.95 +UniRef50_UPI00046D46EC PTS sugar transporter subunit IIA 1.95535616753e-05 9.27513891516e-05 29550861190.5 +UniRef50_UPI000466BC57 branched chain amino acid ABC transporter ATP binding protein 1.08751809236e-05 0.000347672104276 1.3596905092e+11 +UniRef50_Q5JN18 0.000249815525412 0.000327962805693 31549016024.4 +UniRef50_A0A059ILG1 3.58062078039e-05 2.11364456803e-05 -5922362987.52 +UniRef50_C4KRY7 Class II aldolase adducin family protein 0.000765258239834 0.00486031881027 1.65322620433e+12 +UniRef50_Q17Y79 ATP synthase gamma chain 0.00028574536304 0.00621061849578 2.39194399006e+12 +UniRef50_Q1GUM2 Valine tRNA ligase 2.08212162336e-06 4.06325590807e-06 799808221.989 +UniRef50_E3A2F4 0.000667332534303 0.000286616227945 -1.53699844791e+11 +UniRef50_UPI00046731A3 hypothetical protein, partial 1.6445131153e-05 2.08546365369e-05 1780171434.2 +UniRef50_A8NT37 7.00879236708e-05 8.52695010185e-05 6128989074.17 +UniRef50_O95396 Adenylyltransferase and sulfurtransferase MOCS3 3.67437882588e-06 6.92430281201e-06 1312034194.25 +UniRef50_G6X002 3 oxoacyl [acyl carrier protein] reductase 7.7942881778e-06 4.86746480723e-05 16503902947.8 +UniRef50_A6LZM1 Cell wall associated hydrolase like protein 0.000417881168475 0.00188983880345 5.94247360189e+11 +UniRef50_J5HE89 Adenylosuccinate lyase 0.000287051380608 0.000141979185193 -58567425525.1 +UniRef50_Q1C0H3 Chaperone SurA 0.00375298963505 0.000458743602547 -1.32992754826e+12 +UniRef50_F0VVV7 Two component sensor protein 0.00555297600271 0.000630179848313 -1.98739321703e+12 +UniRef50_G8VLG4 ErfK YbiS YcfS YnhG 0.000381099892006 0.00572559985553 2.15764021966e+12 +UniRef50_Q57625 Probable acetolactate synthase small subunit 4.42239433663e-05 0.000504575356638 1.85849514685e+11 +UniRef50_Q6FE82 0.000303608033935 0.00234112223242 8.22569485037e+11 +UniRef50_B1K4I6 Putative reductase Bcenmc03_4815 0.000490699864458 0.0002590497414 -93519997345.2 +UniRef50_G8VKU4 Oxidoreductase 0.000224086283212 0.00443774209115 1.70110455704e+12 +UniRef50_UPI00036AEC25 sodium 6.510111881e-05 0.00609818877438 2.43563152086e+12 +UniRef50_UPI00035F3E55 hypothetical protein, partial 6.75795015523e-05 0.000323184168135 1.03190740522e+11 +UniRef50_UPI000345C0EA acetyl CoA acetyltransferase 4.76058058419e-06 0.000120741072892 46822747985.4 +UniRef50_Q9RYY7 4.80822460382e-05 0.0122430696456 4.92326606254e+12 +UniRef50_UPI000373C694 hypothetical protein 2.04888543159e-06 0.000130470098932 51845219795.5 +UniRef50_Q8DW90 0.00614368875423 0.00156838304913 -1.84710705846e+12 +UniRef50_A6EWF4 1.98247538873e-05 0.00127873594207 5.08237895246e+11 +UniRef50_Q8FFV5 tRNA dihydrouridine synthase C 0.00477128604952 0.00166703114196 -1.25322579967e+12 +UniRef50_U5MMM3 D galactose binding periplasmic protein MglB 0.000134977111625 0.0001707032978 14423099768.5 +UniRef50_F0RLL3 DEAD DEAH box helicase domain protein 0.000198556229644 0.0241900656545 9.68566676376e+12 +UniRef50_F8E027 Phage primase 6.06890657318e-05 0.00503696636669 2.00898421219e+12 +UniRef50_M5ADI0 1.01223703853e-05 1.18825014242e-05 710586499.641 +UniRef50_P20506 L Threonine dehydratase biosynthetic IlvA 0.0038204926019 0.0378869260907 1.37530372416e+13 +UniRef50_UPI00035D7F4D hypothetical protein 4.50577313646e-06 6.48644736758e-05 24367548092.3 +UniRef50_I0JFD7 0.00390014284455 0.000920894782945 -1.20275900196e+12 +UniRef50_UPI0003771410 hypothetical protein 0.000164712626692 3.89358831551e-05 -50777614820.1 +UniRef50_X5FYX4 2.7314779204e-05 3.0160507853e-05 1148855576.62 +UniRef50_UPI00047310EB hypothetical protein 2.92271743464e-05 0.000207697045711 72050477141.7 +UniRef50_A9GJ97 6.94968456379e-05 1.39921322537e-05 -22407933912.6 +UniRef50_X0QIZ7 Respiratory nitrate reductase beta chain 4.51914607553e-05 5.43761202395e-05 3707959742.22 +UniRef50_A5UM16 Phosphoribosylformylglycinamidine cyclo ligase 0.0028471679797 0.00115247388795 -6.84168801075e+11 +UniRef50_UPI00037699BE hypothetical protein 7.35060752184e-06 2.44860212302e-05 6917776789.25 +UniRef50_O64903 Nucleoside diphosphate kinase II, chloroplastic 8.16670830468e-06 3.80956862676e-05 12082695673.5 +UniRef50_Q8CRX7 Two component sensor histidine kinase like protein 0.0280098433614 0.00548567432829 -9.0932834413e+12 +UniRef50_Q6AB62 Thymidylate kinase 0.000416344840642 0.0148703929239 5.83527658234e+12 +UniRef50_A7X0T7 0.0109938934598 0.00588073305572 -2.06424560066e+12 +UniRef50_UPI00016C59FB Hemolysin type calcium binding region 2.88337921734e-05 2.2231734291e-05 -2665331783.49 +UniRef50_UPI0004654759 hypothetical protein, partial 2.10295561339e-05 1.78638541988e-05 -1278032718.73 +UniRef50_F2LTP6 ABC type transporter, periplasmic subunit family 3 0.00245915481614 0.000527351259279 -7.798928018e+11 +UniRef50_A0A011RSG6 NAD transhydrogenase subunit beta 6.73222358327e-06 5.61542929444e-06 -450863559.008 +UniRef50_A4W0M7 ATP dependent helicase nuclease subunit A 0.000396738966758 0.00380525990969 1.37606173192e+12 +UniRef50_F0J0R1 1.29254983483e-06 2.31000684049e-06 410759878.786 +UniRef50_I4JFC2 7.17728998954e-05 9.25072874803e-05 8370726707.57 +UniRef50_UPI000466A8A4 hypothetical protein 9.92925711068e-05 0.00010906985457 3947209314.85 +UniRef50_W4FWB3 1.38953207421e-05 2.69713275471e-05 5278944407.83 +UniRef50_UPI000288F47D AraC family transcriptional regulator 0.000273324948351 7.34887984343e-05 -80676305986.8 +UniRef50_P51056 2 oxoglutarate dehydrogenase E1 component 1.54512024775e-06 3.65329671866e-05 14125023158.4 +UniRef50_UPI0003834F1F PREDICTED 1.8342475476e-05 4.37393413302e-05 10253026399.9 +UniRef50_UPI000262CDFD recombination and repair protein 2.73608127597e-06 5.71832129056e-06 1203966890.09 +UniRef50_Q7N3E1 Multidrug resistance protein MdtC 3.69963399748e-05 0.00011769820902 32580334856.8 +UniRef50_Q0FUB4 Replication initiator RepC 0.000499614958437 9.82180971187e-05 -1.62048838607e+11 +UniRef50_J3IXG8 0.000170038733717 0.000359613128836 76533509649.0 +UniRef50_D3E2B7 Transporter CDF family 0.00265342289965 0.000695117961878 -7.90591734482e+11 +UniRef50_UPI000225A94B Hsp33 like chaperonin 0.000779396375078 0.000255434602639 -2.11529797268e+11 +UniRef50_E3J1U8 DNA polymerase I 0.000101395470254 0.00633086625638 2.51491380056e+12 +UniRef50_UPI0003B712C5 DNA invertase 0.000223578042452 0.000230587298608 2829722723.42 +UniRef50_G8V5D6 Bacterial extracellular solute binding family protein 0.0138644302921 0.00240490301547 -4.62635178578e+12 +UniRef50_Q03UL2 Dihydroxy acid dehydratase 5.9740342955e-05 9.67298599527e-05 14933121924.4 +UniRef50_UPI0004770CE7 hypothetical protein 3.76233949515e-05 5.62861832217e-05 7534396642.85 +UniRef50_Q1ZXF1 Probable enoyl CoA hydratase, mitochondrial 1.11722743404e-05 1.72701200398e-05 2461775137.83 +UniRef50_UPI000377CE34 hypothetical protein 2.37850172196e-05 5.39901299185e-05 12194174655.0 +UniRef50_J9V4P4 0.00233306266731 0.000835801995839 -6.04462506527e+11 +UniRef50_UPI0003802583 PE family protein 6.08282753244e-06 0.000175040623174 68210335446.0 +UniRef50_G8AVW9 7.2682884003e-05 0.000125366249979 21268921342.1 +UniRef50_K4Q9Y1 ATP dependent RNA helicase DBP2 0.00412756262897 0.00389303732075 -94680744877.6 +UniRef50_P30979 0.00540839498659 0.000459824699511 -1.99779855068e+12 +UniRef50_E1PKG3 Putative aliphatic sulfonates binding protein 1.85556602353e-05 5.61727967036e-05 15186499606.4 +UniRef50_UPI000383147C hypothetical protein M271_01890 1.05612347882e-05 7.75544796485e-06 -1132730571.46 +UniRef50_Q0APX2 3.65529882866e-05 1.72398465042e-05 -7796952336.46 +UniRef50_M7XX40 6.88539407456e-05 5.33094020849e-05 -6275521010.26 +UniRef50_R9ZJZ3 TonB denpendent receptor 0.00118929246388 0.000532329678268 -2.65223938392e+11 +UniRef50_A6LV94 0.00068557575284 0.00472633868302 1.63130558065e+12 +UniRef50_V6VNG0 HTH like domain protein 0.000228989867768 8.49952681128e-05 -58132386893.2 +UniRef50_C2ZZN3 8.82749090328e-06 0.000619985902531 2.46732150531e+11 +UniRef50_R9SHV7 Metallophosphoesterase 0.00234114998256 0.000421988593527 -7.7478900351e+11 +UniRef50_UPI0002DF27A4 hypothetical protein 6.97233916572e-05 1.44271334238e-05 -22323778010.2 +UniRef50_UPI0003649624 hypothetical protein 4.93026556505e-05 1.16813941146e-05 -15188164946.8 +UniRef50_UPI00047E508E light independent protochlorophyllide reductase subunit B 0.000258127195561 1.65369861839e-05 -97532932170.7 +UniRef50_UPI000363054E hypothetical protein, partial 7.46707381039e-05 1.81557248829e-05 -22815804354.5 +UniRef50_I5BWG8 9.39403967344e-05 1.78204294956e-05 -30730564871.3 +UniRef50_UPI000308C935 hypothetical protein 1.3857867073e-05 4.51762083976e-05 12643598712.0 +UniRef50_UPI0003B370F2 flagellin 1.36188348666e-06 1.32988448902e-05 4819097801.58 +UniRef50_UPI00039E8E1C hypothetical protein 0.000133678609704 4.91943275571e-05 -34107341441.4 +UniRef50_P11160 Lipopolysaccharide export system ATP binding protein LptB 2.96361027666e-05 0.00015508154327 50643863719.7 +UniRef50_Q5LNW7 CpaB family protein 0.0057411477203 0.000848208924025 -1.97533943517e+12 +UniRef50_X5ERA2 8.15304511551e-05 0.000355758580433 1.10709260947e+11 +UniRef50_UPI00047E842D DNA recombination protein RecO 1.81919628433e-05 6.44128974776e-05 18659958506.5 +UniRef50_UPI000372993F hypothetical protein 6.11863226911e-05 4.1243467418e-05 -8051175400.1 +UniRef50_E3ZRD8 6.16076619219e-05 0.000362978813281 1.21667232044e+11 +UniRef50_O67291 Isoprenyl transferase 9.07479923701e-06 1.10673354271e-05 804411311.108 +UniRef50_B2RH63 3 oxoacyl [acyl carrier protein] synthase 3 1.2330106398e-05 4.54685968132e-05 13378415235.6 +UniRef50_UPI000371500A hypothetical protein 7.43504380413e-05 5.49434999341e-05 -7834819063.79 +UniRef50_UPI0003B3003D type I secretion protein 1.37053793429e-06 9.57996948663e-06 3314248258.73 +UniRef50_UPI00037EBA03 hypothetical protein 6.85830631191e-06 1.32291926616e-05 2572004998.94 +UniRef50_A8EVQ3 Uroporphyrinogen decarboxylase 5.63080529302e-06 0.00346356819282 1.39601175701e+12 +UniRef50_UPI0003B5001E translation initiation factor IF 3 2.29158055057e-05 4.53818132684e-05 9069803022.72 +UniRef50_UPI0004411670 hypothetical protein DICSQDRAFT_95428 7.12647788253e-05 0.000316164281707 98868934568.3 +UniRef50_Q6Z707 Non ribosomal peptide synthetase modules and related proteins like 6.99501460941e-05 0.000198393877463 51854310535.5 +UniRef50_A0A031HIT4 Flagellar FlaF family protein 4.57779304089e-05 2.22678073091e-05 -9491325197.04 +UniRef50_UPI00047D2222 3 keto L gulonate 6 phosphate decarboxylase 2.85202572222e-05 6.90856471265e-05 16376745697.7 +UniRef50_W7X754 0.000148175227134 7.07395874586e-06 -56964313555.5 +UniRef50_Q5HL20 Lipoprotein, putative 0.00763066974425 0.00228203963559 -2.15930760994e+12 +UniRef50_Q89XX5 Cobalt insertion protein 0.01380695419 0.00197047802827 -4.77853067637e+12 +UniRef50_Q3SNY6 UPF0301 protein Nwi_2752 1.77837407826e-05 3.61706666577e-05 7423027608.73 +UniRef50_P52215 Thioredoxin reductase 0.000443357276977 0.00521152425718 1.9249675219e+12 +UniRef50_A6M1X0 ThiW protein 0.000247802618498 0.00170529207169 5.8840637766e+11 +UniRef50_UPI00035CB3DD hypothetical protein 1.00000008845e-05 4.01016605615e-05 12152409400.5 +UniRef50_UPI0003B37751 translation initiation factor IF 3 0.000298270122633 0.000456584023284 63913264422.8 +UniRef50_I2FHZ3 Glycosyl transferases group 1 family protein 0.00803664835769 0.00422010241172 -1.54078643267e+12 +UniRef50_UPI00037E157B hypothetical protein 1.38134316873e-05 1.09336995977e-05 -1162583182.86 +UniRef50_UPI00036B9069 hypothetical protein 0.000182861087103 0.000623706072522 1.7797453039e+11 +UniRef50_S1EU50 Trimethylamine N oxide reductase 2 0.002328174063 0.00326165762352 3.76858768513e+11 +UniRef50_UPI00036A682A hypothetical protein, partial 0.000329294625389 0.000116877607045 -85755356955.4 +UniRef50_P45482 Cell division protein FtsZ 0.0218687320212 0.00531121753436 -6.68447178187e+12 +UniRef50_A9AYE8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.43346911045e-05 5.47769971981e-06 -3575676109.51 +UniRef50_UPI0003B6D0DD peptidase M24 3.10160420158e-06 6.47976396898e-05 24907446622.1 +UniRef50_U5MLD2 Anti sigma factor N terminus 0.000118087379206 0.00150944749926 5.61709154373e+11 +UniRef50_P76079 1,2 phenylacetyl CoA epoxidase, subunit C 0.00254045564221 0.0089886404172 2.60321132179e+12 +UniRef50_G4LCX9 Transcriptional regulator 0.000215170033855 0.000348433791827 53800214423.5 +UniRef50_Q57747 0.00195994796636 0.000956771484301 -4.04994656167e+11 +UniRef50_E3M3A4 7.76745941055e-06 0.000231120928599 90170536366.5 +UniRef50_Q7VRR0 Ribonuclease 3 6.23469419994e-06 3.32882281163e-05 10921843626.2 +UniRef50_A5FRK6 DNA directed RNA polymerase subunit beta 5.18634167827e-06 1.15591546513e-05 2572782800.42 +UniRef50_A6M049 Alcohol dehydrogenase GroES domain protein 0.000315474160481 0.000201123749283 -46164664238.0 +UniRef50_C5X103 3.91518366528e-05 0.000265411367142 91343748975.1 +UniRef50_Q6F9W1 tRNA dimethylallyltransferase 0.000360272948004 0.00393948227439 1.4449707269e+12 +UniRef50_J0P427 Type III restriction modification system DNA endonuclease 8.37491901067e-05 0.00449107667134 1.77929218816e+12 +UniRef50_Q492E0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.42565749954e-06 2.60074437664e-06 -736739821.917 +UniRef50_I2ZQB3 L lactate dehydrogenase 0.00500150632283 0.000572327537919 -1.7881138276e+12 +UniRef50_Q5HLD9 Peptidase, M20 M25 M40 family 0.0131572385744 0.00438155773378 -3.54285004507e+12 +UniRef50_B5ERH7 1.89337661166e-05 2.20970767307e-05 1277067313.1 +UniRef50_S5XXA0 Exodeoxyribonuclease III 0.00289726586772 0.00185673542679 -4.20074907748e+11 +UniRef50_B6GDZ1 0.000101492317696 5.52094119079e-06 -38744822396.4 +UniRef50_Q3Y002 8.23121811592e-06 0.000213225057899 82758528677.7 +UniRef50_X2HWL3 TonB dependent receptor 4.42366393186e-05 0.00427443641213 1.70778355867e+12 +UniRef50_A8LL44 0.000181776878108 0.000284913067946 41637345461.0 +UniRef50_A6M0N1 Response regulator receiver protein 0.00011626878507 0.000666847955777 2.22275567581e+11 +UniRef50_UPI0003C14EB6 5.89214799713e-06 2.58420501692e-06 -1335457174.14 +UniRef50_F4DM00 Glutamate dehydrogenase 0.000737372743047 0.000561721442847 -70912585374.6 +UniRef50_L1K914 0.00144343637847 0.00031208044929 -4.56742271908e+11 +UniRef50_UPI00047DD927 damage inducible protein CinA 1.78436775247e-05 4.62040231184e-06 -5338398471.28 +UniRef50_X6J8Z0 4.9705646752e-05 6.58109557836e-05 6501910890.42 +UniRef50_UPI0001BF5AE1 hypothetical protein SMAC_10035 0.000182342335854 1.12392023253e-05 -69076434677.2 +UniRef50_Q97WN9 NH dependent NAD(+) synthetase 0.000145935304967 1.43769547331e-05 -53111720392.0 +UniRef50_A3PKG7 Two component transcriptional regulator, LuxR family 0.0133780028405 0.00378085122552 -3.87448787726e+12 +UniRef50_P11000 Wall associated protein 0.00501275968581 0.00100929105052 -1.61624941615e+12 +UniRef50_A8YV22 ATP dependent 6 phosphofructokinase 2.61918372251e-05 1.37534725664e-05 -5021520448.62 +UniRef50_UPI0003B46133 PREDICTED 1.34491395397e-05 1.6240284839e-05 1126819608.53 +UniRef50_A0A037Z3Z8 1.98459908036e-05 4.4983075206e-05 10148149440.0 +UniRef50_P16683 Putative phosphonates transport system permease protein PhnE 0.00484596011886 0.000406399135599 -1.79230524848e+12 +UniRef50_M7A0E0 9.12422142401e-06 0.00060932809448 2.42309668882e+11 +UniRef50_P32670 Multiphosphoryl transfer protein 2 0.00328149266186 0.00072600247699 -1.03168274702e+12 +UniRef50_R9CAH0 Cobalt transporter 2.00183578594e-05 1.94187857959e-05 -242054599.612 +UniRef50_K4RS80 Potassium efflux system KefA protein Small conductance mechanosensitive channel 0.000190274961439 5.33704888947e-05 -55270015572.8 +UniRef50_A0A017HSP4 7.1350756846e-05 3.60468051083e-05 -14252638544.7 +UniRef50_A6LTV6 SEC C motif domain protein 0.000280706847759 0.00225456132015 7.96869272422e+11 +UniRef50_UPI0002652F6C PREDICTED 1.42095731848e-06 1.15256404696e-05 4079384586.51 +UniRef50_P50843 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.07508711214e-06 1.61342697802e-05 3657303211.77 +UniRef50_W1IC39 Chromosome I, genome 0.000130105447887 7.60929564831e-05 -21805505587.6 +UniRef50_T2ENN0 Rhs element Vgr family protein 5.88719949895e-05 9.71117083152e-06 -19846827983.7 +UniRef50_Q8Y0Z5 Ubiquinone biosynthesis O methyltransferase 0.00632588714021 0.00252935979752 -1.53270467687e+12 +UniRef50_L7WZX4 0.00102862739793 0.000107184172829 -3.71997937353e+11 +UniRef50_W1ELN4 Formate dehydrogenase N alpha subunit @ selenocysteine containing 0.00182811565854 0.000469955787221 -5.48305806548e+11 +UniRef50_A0A017HCQ2 3.4983140185e-05 1.6863370614e-05 -7315173330.39 +UniRef50_C6LQB4 Deoxyribose phosphate aldolase 0.000703390041336 0.00347454415185 1.1187489203e+12 +UniRef50_X0T0E9 Marine sediment metagenome DNA, contig 2.99540692409e-05 0.000259955724479 92854490657.3 +UniRef50_P39376 HTH type transcriptional regulator YjiE 0.00145593584431 0.000399622420079 -4.26446691785e+11 +UniRef50_V1A381 Diguanylate cyclase domain protein 0.000801783565377 0.000474585543039 -1.32093856789e+11 +UniRef50_F8JJM3 2.98299933071e-06 8.37502234739e-06 2176825859.4 +UniRef50_Z2DBM9 Oxoglutarate dehydrogenase , E1 component 0.000179321511895 0.000127981838255 -20726456257.1 +UniRef50_P44908 0.00386357924937 0.00408590375589 89755131510.6 +UniRef50_E3F0C5 0.00326124338712 0.00090628582768 -9.50725265325e+11 +UniRef50_UPI0003620071 hypothetical protein 0.000130390419599 4.4109367663e-05 -34832719454.1 +UniRef50_Q4KJ83 Chemotaxis protein MotB 0.000647927800583 0.00017897982133 -1.89320053863e+11 +UniRef50_Q9KN05 Tryptophanase 0.00202232319463 0.000427342839429 -6.43913142004e+11 +UniRef50_F3U1C5 0.00292540284984 0.00132231360536 -6.47186800114e+11 +UniRef50_X3ELX1 Chloride channel protein 0.00306700943729 0.000842754567673 -8.97958985542e+11 +UniRef50_B2TNE9 Biotin [acetyl CoA carboxylase] ligase 0.000555498754472 0.00125014055836 2.80435420443e+11 +UniRef50_UPI000380DD01 hypothetical protein, partial 1.17234603637e-05 1.41508968534e-05 979985898.887 +UniRef50_F4N161 0.00146298841641 0.000202964855242 -5.08686973872e+11 +UniRef50_UPI0003B799F9 ribonucleoside diphosphate reductase 6.77111049682e-05 1.59109061456e-05 -20912375924.6 +UniRef50_K1T508 Excinuclease ABC, A subunit 1.23183481096e-05 2.52506955659e-05 5220947365.86 +UniRef50_A6M335 1,4 alpha glucan branching enzyme 0.000241258610414 0.000940232616997 2.82184383833e+11 +UniRef50_UPI00035EBE88 hypothetical protein 0.000803610696332 3.37284266417e-05 -3.10810919792e+11 +UniRef50_W5XAJ1 Ribosomal protein L25 L23 1.55945185437e-06 5.68907861104e-06 1667180997.89 +UniRef50_Z4K4V4 0.000380912420951 0.00017423410001 -83438574392.1 +UniRef50_X1YKP1 0.000183840578989 0.000286715247755 41531766195.0 +UniRef50_UPI00037EB0E7 hypothetical protein 5.68451315394e-06 5.01663665263e-05 17957870060.2 +UniRef50_Q2CDG7 Flagellar protein FlaF, putative 2.73616851826e-05 7.29541969626e-05 18406256488.6 +UniRef50_I6TW14 Alpha glucosidase 0.00673120494887 0.00166542436028 -2.04511778773e+12 +UniRef50_P33485 Probable nuclear antigen 3.76231801468e-05 2.89250173533e-05 -3511555058.2 +UniRef50_Q4L9L8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00828413820323 0.00219932175912 -2.45651506758e+12 +UniRef50_D9QKH6 NAD dependent epimerase dehydratase 0.0102313738529 0.00115401881988 -3.6646396185e+12 +UniRef50_Q8Z9U9 DNA replication and repair protein RecF 0.000751049695102 0.000486121877901 -1.06954610834e+11 +UniRef50_Q8ZES9 Long chain fatty acid CoA ligase 0.00374516453351 0.00513407284004 5.60719327168e+11 +UniRef50_G8NWZ5 Sigma 54 interacting domain protein 8.02024055691e-05 0.0512552923016 2.066001178e+13 +UniRef50_D3DZ67 Met 10+ like protein 0.000657471857311 0.00149713603876 3.38982733889e+11 +UniRef50_I6TX91 Histidine kinase 0.0022214135967 0.000265578539903 -7.89594613225e+11 +UniRef50_C8N7Z4 4.25239937372e-05 1.11979969449e-05 -12646689318.3 +UniRef50_UPI00047D1D69 hypothetical protein 4.57065981839e-06 3.53270964266e-06 -419033223.023 +UniRef50_UPI0001B4124B hypothetical protein, partial 3.59331030031e-05 0.000143826239368 43557783148.2 +UniRef50_Q88K39 Glutaminase asparaginase 0.000406069153273 0.000169397727654 -95547158807.4 +UniRef50_L8DZR6 Internalin J 1.66938321836e-05 9.94603168881e-06 -2724169864.57 +UniRef50_A3SID6 Cation transport protein ChaC, putative 1.74670463075e-05 2.16788182281e-05 1700344008.6 +UniRef50_UPI0002375A77 extracellular solute binding protein 3.40710149843e-05 0.000118570169965 34113345786.9 +UniRef50_Q49VQ7 7 cyano 7 deazaguanine synthase 0.00806521111542 0.0048059425412 -1.31580671914e+12 +UniRef50_L6MLX7 Nitrate reductase Z subunit beta 5.31724348327e-05 9.65891227545e-05 17527849696.7 +UniRef50_R4GKP1 4.9299173365e-05 5.87200702166e-06 -17532079964.0 +UniRef50_E4RQB3 9.97499405749e-05 4.37307969438e-05 -22615615716.1 +UniRef50_B7GYT0 Ribonuclease 3 0.000172393362484 0.00721667229284 2.84386184721e+12 +UniRef50_F8DL52 Rhodanese like protein 1.33248896037e-05 4.92388941969e-05 14498924368.7 +UniRef50_I6TRN9 0.00693633553132 0.00222237314395 -1.9030844626e+12 +UniRef50_A7B8Z2 Cell wall binding repeat protein 1.3932031632e-06 0.00270170017441 1.09014706079e+12 +UniRef50_UPI0003764F6C hypothetical protein 1.22795300099e-05 4.83845410668e-05 14576036022.0 +UniRef50_D7GE62 ATP dependent helicase 0.00025397269057 0.00568920690393 2.19427074976e+12 +UniRef50_U6KE00 6.91272852732e-06 2.06300261578e-05 5537841383.6 +UniRef50_J2YGZ8 FAD dependent oxidoreductase 2.23039762679e-05 0.00228928990928 9.15210040202e+11 +UniRef50_UPI000365642F hypothetical protein 0.000109000725988 4.04795181971e-05 -27662852435.0 +UniRef50_P00148 Cytochrome c 0.00765824938661 0.000919082695981 -2.72068429188e+12 +UniRef50_Q5HRL1 0.0114621021255 0.00453243147221 -2.79759307935e+12 +UniRef50_E3A2F6 0.00245090097262 0.00223511229618 -87116536703.7 +UniRef50_Q0C2D0 Peptidyl tRNA hydrolase 4.52633397422e-05 2.91375234034e-05 -6510189941.99 +UniRef50_UPI00046FE521 hypothetical protein 4.3759171598e-06 6.2115372859e-06 741062370.499 +UniRef50_M1MYZ3 Methyl accepting chemotaxis protein TlpC 0.000324649418513 0.000493596486554 68206004581.8 +UniRef50_C1CXQ2 0.000266593902716 0.0333236553237 1.33455413514e+13 +UniRef50_F8KQA4 Phospholipid binding protein 0.00018874299443 0.00623784617623 2.44209718534e+12 +UniRef50_UPI00045DC843 PREDICTED 1.85653597038e-05 9.28641798507e-05 29995345442.4 +UniRef50_UPI000375A3E4 hypothetical protein 1.79743523816e-05 6.30039292273e-05 18178992747.7 +UniRef50_A0RBY1 8.07209506317e-05 0.0018079607547 6.97307904519e+11 +UniRef50_U3T289 0.000310056570229 0.00536462497939 2.04059129331e+12 +UniRef50_J0JAX6 6.51987325532e-05 3.00506865576e-05 -14189697483.5 +UniRef50_B9TMP1 5.43559444234e-06 0.000222042635489 87446920538.0 +UniRef50_F4ED07 Ribosomal protein L7Ae L30e S12e Gadd45 0.000425736077648 0.000661156802679 95042235632.2 +UniRef50_A5UJE1 0.00275099529625 0.000167793582503 -1.04287023129e+12 +UniRef50_G0DRR1 0.000588148512511 0.00216699033911 6.37397819966e+11 +UniRef50_UPI0003DF491B PREDICTED 2.90374386356e-06 2.37067446649e-05 8398426705.01 +UniRef50_A3CLV1 0.00628972659019 0.00324213009939 -1.23035210155e+12 +UniRef50_UPI00037FE503 hypothetical protein 0.000390842627692 3.54248857044e-05 -1.43486503907e+11 +UniRef50_I6U158 0.00494516401457 0.000346751512944 -1.85643555577e+12 +UniRef50_UPI000373EEF8 MULTISPECIES 1.84981967927e-05 4.07988863808e-05 9003062046.95 +UniRef50_UPI0003647A42 hypothetical protein 8.46230620889e-06 4.67913487571e-05 15473904827.0 +UniRef50_J8V820 0.000322905958286 0.000168758027001 -62231411467.6 +UniRef50_B7GVN1 Ribosomal RNA small subunit methyltransferase H 0.000190348590571 0.00703397757491 2.76285700175e+12 +UniRef50_S5ZQH2 4.56437616925e-05 0.00536708471361 2.14833101371e+12 +UniRef50_Q2RS21 Nickel import ATP binding protein NikD 0.00235669579698 0.000241732637264 -8.53836581095e+11 +UniRef50_B7JYJ9 Quinolinate synthase A 1.33474814719e-05 0.00173985370345 6.97011748427e+11 +UniRef50_U5RSM0 0.000521069616518 0.00119424906527 2.71770804302e+11 +UniRef50_R5FEK9 3.63194734268e-05 0.000884882185469 3.42575179887e+11 +UniRef50_A1VIU6 ATP synthase subunit a 0.000131071523907 0.000207725701201 30946232026.1 +UniRef50_I8QU08 4.77851717485e-05 0.000202450957361 62440475614.6 +UniRef50_UPI000329212D PREDICTED 0.000189659863134 3.16783074381e-05 -63779092686.2 +UniRef50_P15047 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.00346408025147 0.000397664880272 -1.2379495145e+12 +UniRef50_UPI0001D2E7B0 Hemolysin type calcium binding region 1.11803027427e-05 5.60295394736e-06 -2251644150.44 +UniRef50_P37439 PTS system glucose specific EIICB component 0.004142464285 0.00172404924137 -9.76343830403e+11 +UniRef50_A5UM83 Hydrogenase maturation factor, HypF 0.00234968631646 0.00152548570694 -3.32739900142e+11 +UniRef50_R6UTM8 1.35949819499e-05 2.59932886935e-05 5005348576.72 +UniRef50_UPI0002ADB961 1.23235463975e-05 2.42462693968e-05 4813349583.08 +UniRef50_Q5HQZ0 0.0131103479716 0.00310488144008 -4.03932961965e+12 +UniRef50_P32722 Porin D 0.000916558785393 0.00100090428843 34051314611.8 +UniRef50_UPI0004661A11 3 5 exonuclease 7.10425737099e-05 0.00144890115476 5.56258417396e+11 +UniRef50_N0B552 HupH hydrogenase expression protein 0.000150600057615 3.2782478053e-05 -47564402653.5 +UniRef50_UPI00035DB243 hypothetical protein 2.28332697156e-05 1.96762052644e-05 -1274545660.49 +UniRef50_A0A030TPT1 0.000527371275902 0.000328091711381 -80451605632.4 +UniRef50_A5UKE8 Type II secretion system protein F, GspF 0.002061537307 0.000325119308468 -7.01013254252e+11 +UniRef50_UPI000479F301 hypothetical protein 3.50860868992e-05 8.44838057622e-06 -10753968924.0 +UniRef50_A6LUH2 Alanine racemase 0.000171066158086 0.000606425617678 1.75759956299e+11 +UniRef50_A5IVF9 Mg2+ transporter protein, CorA family protein 0.0220142577497 0.00418403523091 -7.19827963227e+12 +UniRef50_Q89XA0 3 isopropylmalate dehydrogenase 1 5.27731411045e-06 7.14496164088e-06 753992226.647 +UniRef50_B0VUU2 0.000172632652776 0.00848203621595 3.3546081863e+12 +UniRef50_Q8VVU3 Replication associated protein 0.0156344361669 0.00620062292766 -3.80854617059e+12 +UniRef50_E3A4C5 2.75693867163e-06 7.81516991353e-05 30437789996.9 +UniRef50_A1SPT8 Phosphoribosylformylglycinamidine synthase 2 1.89351416906e-05 0.00217968614132 8.72321693947e+11 +UniRef50_S5RIW0 0.000229085035006 0.00233706388735 8.51016930499e+11 +UniRef50_UPI00036A417A hypothetical protein 0.000317915608956 0.000248023991515 -28216103627.5 +UniRef50_O33259 Methionine synthase 2.56379121598e-06 7.17471628083e-05 27930176087.3 +UniRef50_UPI00047BB1A3 hypothetical protein 1.39638587177e-05 8.65137120671e-05 29289266084.0 +UniRef50_A6LRU6 0.000136112736362 0.00234870030592 8.93248753334e+11 +UniRef50_A6LRU7 0.000473412696177 0.00203037814871 6.28566059301e+11 +UniRef50_A1SVB2 3.6137383823e-05 0.00370206705049 1.47998079245e+12 +UniRef50_B0V786 0.000216945970609 0.0182036185133 7.26144042678e+12 +UniRef50_UPI0003B5372C TetR family transcriptional regulator 0.000356697056625 4.08908760697e-05 -1.27494830468e+11 +UniRef50_UPI0003B59C0B dihydroorotase 2.00723904639e-05 5.22738711286e-06 -5993110021.48 +UniRef50_UPI00037651B9 hypothetical protein 1.22315692599e-05 0.00119615242555 4.77963378027e+11 +UniRef50_A6FKW5 3.00780998878e-05 2.38624979909e-05 -2509314759.79 +UniRef50_UPI0002899E1F DNA mismatch repair protein MutS 3.97252134049e-06 5.50024096988e-05 20601392137.4 +UniRef50_UPI00030D0981 hypothetical protein 5.31250666865e-06 0.000663296952683 2.65636395233e+11 +UniRef50_UPI00046F9613 hypothetical protein 5.36744908996e-06 5.00021355613e-06 -148257491.494 +UniRef50_Q73D76 4.30636082256e-05 0.000164216888892 48911066122.8 +UniRef50_UPI00046CFC68 hypothetical protein 2.83228030063e-05 0.000207084000656 72168089137.9 +UniRef50_Q0VN76 PhoH family protein 0.000997252693451 0.000295201448707 -2.83426702641e+11 +UniRef50_Q8H580 9.2087217049e-05 3.24395649477e-05 -24080489112.3 +UniRef50_D7B233 1.68705425893e-05 1.65801358349e-05 -117240770.443 +UniRef50_UPI000289E08F glutathione ABC transporter substrate binding protein GsiB 2.27080401129e-05 2.41766017171e-05 592876340.893 +UniRef50_A6M367 Extracellular solute binding protein, family 1 0.000490017689378 0.000421720443767 -27572436154.6 +UniRef50_M3DCH5 3 deoxy D manno octulosonic acid 8 phosphate synthase 2.94283067293e-05 5.30833351331e-05 9549825246.46 +UniRef50_UPI0003B45A6F MULTISPECIES 0.000155705562304 8.44071788382e-05 -28784032334.7 +UniRef50_A6Q773 50S ribosomal protein L19 0.0236262437361 0.000735228311697 -9.24138383118e+12 +UniRef50_Q28MI3 0.000235525447874 2.40717833819e-05 -85366439183.7 +UniRef50_Q28MI2 8.87149931269e-05 3.61383847973e-05 -21225821970.2 +UniRef50_UPI0004696A5C glyceraldehyde 3 phosphate dehydrogenase 9.18406024137e-05 4.96701491977e-05 -17024729453.0 +UniRef50_Q03UP2 Aryl alcohol dehydrogenase family enzyme 0.00556827580353 0.00287911864757 -1.08564574353e+12 +UniRef50_D5ZLN9 Predicted protein 4.53374215072e-05 2.58598590777e-05 -7863330969.36 +UniRef50_A5ULA0 Multidrug ABC transporter, ATPase component 0.00380683345404 0.00102260498507 -1.12402719925e+12 +UniRef50_F0YBG4 2.60529422634e-06 9.39380051857e-06 2740603294.51 +UniRef50_P59495 Glutathione synthetase 6.14820115543e-05 1.09680640788e-05 -20393100471.7 +UniRef50_UPI0003D30C55 sulfoxide reductase heme binding subunit yedz 5.63469727133e-05 1.63265863384e-05 -16156721084.9 +UniRef50_N6Z631 Cytosine deaminase 0.000543536161781 0.000332660204175 -85133211824.5 +UniRef50_Q9HZK8 Na translocating NADH quinone reductase subunit C 0.000948779344854 0.000322552694912 -2.52815383247e+11 +UniRef50_UPI0002B49D99 PREDICTED 1.02818443732e-05 2.63854480093e-05 6501222401.33 +UniRef50_P0A8Z9 Esterase YqiA 0.00122407307144 0.000726425818614 -2.00906302784e+11 +UniRef50_UPI0003458FD8 hypothetical protein 1.8023635718e-05 4.63878449032e-05 11450979316.1 +UniRef50_K0HFH6 0.000293382892887 0.00532954987164 2.03316241004e+12 +UniRef50_Q3J266 0.00401887937646 0.00147899144678 -1.02538392514e+12 +UniRef50_Q3J267 0.00233338886165 0.000342648156063 -8.03686451982e+11 +UniRef50_M9VDE3 ABC transporter 0.000142809746505 0.00567602304324 2.23382610805e+12 +UniRef50_Q8CU42 Carbamate kinase 2 0.0122333741852 0.00575793985231 -2.6142123027e+12 +UniRef50_F7YL25 Thiamine binding protein 0.00194503454444 0.000277727308957 -6.73112391124e+11 +UniRef50_E8QNM4 0.000111753251029 0.00348421551617 1.3615044012e+12 +UniRef50_H8L2K5 Phage tail sheath protein FI 0.00111117451391 0.00114957701733 15503561882.4 +UniRef50_A2RCF8 Ribonuclease P protein component 0.00186152913728 0.00104321338437 -3.30364111313e+11 +UniRef50_G7U4V3 Oxidoreductase, Gfo Idh MocA family protein 0.000138781613551 0.00637509469001 2.51767611713e+12 +UniRef50_P39365 Putative permease IIC component 0.00301314573935 0.000139629647843 -1.16007370815e+12 +UniRef50_UPI00034B692F hypothetical protein 1.09266394512e-05 5.06024177953e-06 -2368336728.85 +UniRef50_UPI00047130C0 hypothetical protein 6.32803965929e-05 5.64194487772e-05 -2769848826.5 +UniRef50_X6KZ77 0.000562266550961 0.000260860702499 -1.2168123969e+11 +UniRef50_UPI0004651C83 hypothetical protein 2.60498876052e-05 2.59308762719e-05 -48046335.6865 +UniRef50_UPI0003B2E3F6 DNA polymerase III subunit alpha 7.28137946038e-06 2.8354446112e-06 -1794878456.37 +UniRef50_C1DRR2 3 phosphoshikimate 1 carboxyvinyltransferase 0.000685481902221 0.000795735973312 44510921469.0 +UniRef50_F0XXB3 0.000106792685367 0.000198210538999 36906509334.5 +UniRef50_W0YJM1 Putative TonB dependent receptor 0.000328008067129 0.000405190701873 31159576783.6 +UniRef50_E2XUN1 Iron containing alcohol dehydrogenase 0.00112123478886 0.000816680140779 -1.22952448736e+11 +UniRef50_D8MEB7 Serine rich repeat protein 2.59948188583e-06 6.53885502903e-06 1590373279.45 +UniRef50_Q8H3H1 0.000294329214524 2.73132470593e-05 -1.0779762272e+11 +UniRef50_A1B945 Glutamate racemase 0.000113865216658 0.000100996588728 -5195223011.16 +UniRef50_Q1IXY0 DNA polymerase of the X family containing C terminal PHP hydrolase domain 6.80563681868e-05 0.00555368635114 2.21461614037e+12 +UniRef50_UPI000363D712 hypothetical protein 5.64554493897e-05 0.000276817518846 88962871586.1 +UniRef50_A0A037W4W5 3.41352956428e-05 1.42529408535e-05 -8026750612.37 +UniRef50_A6LQ35 Cyclase family protein 0.000775656141478 0.000921800269252 59000177772.5 +UniRef50_W1HHP3 Ribose ABC transporter, periplasmic ribose binding protein RbsB 0.00046375043112 7.0702896632e-05 -1.58678112908e+11 +UniRef50_B0UBE5 NAD dependent epimerase dehydratase 0.000299578219869 0.000188700770092 -44762587094.3 +UniRef50_W0YRT6 Putative phosphatase 0.00033516374106 0.000190875411799 -58250969139.6 +UniRef50_C9RRF6 von Willebrand factor type A 0.00790326671147 0.000703346168896 -2.906696276e+12 +UniRef50_UPI00036F1B6D hypothetical protein 5.2016679182e-05 2.12509484603e-05 -12420503030.3 +UniRef50_Q4FRK9 N acetyl gamma glutamyl phosphate reductase 0.000550735507107 0.0100520141822 3.83578279493e+12 +UniRef50_B5F4E2 Fatty acid metabolism regulator protein 0.00225678985915 0.00274263208003 1.96140466524e+11 +UniRef50_A6QFE8 0.0199393980434 0.00840442294886 -4.65681099571e+12 +UniRef50_O29388 Probable amidophosphoribosyltransferase 0.000516832228728 0.000903138373516 1.5595653116e+11 +UniRef50_UPI0002192A6F hypothetical protein, partial 4.63514613452e-05 6.41552819661e-05 7187620862.1 +UniRef50_U5MW64 Diguanylate cyclase and metal dependent phosphohydrolase 0.00035747651459 0.000840571999087 1.9503157534e+11 +UniRef50_M7DL42 Type I restriction modification system, specificity determinant 0.00541487252299 0.00223062602793 -1.28551938515e+12 +UniRef50_B9KJA0 Acetyl CoA hydrolase 0.00946553154836 0.0014150338646 -3.25008470565e+12 +UniRef50_UPI0002003A9E L serine ammonia lyase, partial 1.96088494963e-05 0.000202295259513 73752745538.2 +UniRef50_UPI000469BD09 hypothetical protein 2.73897386692e-05 1.46430802207e-05 -5145982434.75 +UniRef50_B5YJ32 Elongation factor P 9.87868361822e-06 3.56460190837e-05 10402589528.2 +UniRef50_Q8P1D8 0.00588093440391 0.00116547973889 -1.9036869134e+12 +UniRef50_UPI0003B5C7ED histidine kinase, partial 5.54160302854e-05 0.00516405219345 2.06241910908e+12 +UniRef50_Q8E7L9 Adapter protein MecA 0.000184439408233 0.000235312115686 20537936277.1 +UniRef50_J0EKQ4 0.000544450945461 0.000443205038943 -40874214888.3 +UniRef50_Q49YT7 Ferritin 0.0109082595338 0.00248498315549 -3.40058003915e+12 +UniRef50_R0ESP5 Replication initiation protein RepC 0.00032405888911 4.00430322278e-05 -1.1466068669e+11 +UniRef50_Q2LUE0 Tryptophan synthase alpha chain 1.45735328541e-05 5.42814606691e-06 -3692104872.5 +UniRef50_E8SIH2 Cysteine desulfurase 0.0289048267827 0.00639126715288 -9.08900029499e+12 +UniRef50_U6LM07 Transportin, putative 1.05499274558e-06 0.000358658140367 1.44368778979e+11 +UniRef50_Q4L4T7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0213467713986 0.00482954677885 -6.66820626815e+12 +UniRef50_A8Z4C3 9.24953798595e-05 0.000545910648302 1.83049307901e+11 +UniRef50_Q8CNM7 Ser Asp rich fibrinogen binding protein 0.0128466320814 0.00327703494994 -3.86336379413e+12 +UniRef50_UPI000410849B hypothetical protein 4.71534871703e-05 1.58472817266e-05 -12638699308.0 +UniRef50_K8EKX2 DNA 3 methylpurine glycosylase 0.000134177484187 0.00155608945971 5.7404331334e+11 +UniRef50_UPI00031BCDF1 hypothetical protein 8.14589267407e-06 0.000494525980692 1.96357610088e+11 +UniRef50_B0V5G5 0.000725701070767 0.00702175553421 2.54179444817e+12 +UniRef50_Q98C73 Mll5269 protein 0.00233615701709 0.00112865405765 -4.87483762454e+11 +UniRef50_UPI0003AD207F hypothetical protein 2.9460439771e-06 5.93182510478e-05 22758151759.2 +UniRef50_M1N642 Transcriptional regulator, TetR family 0.000190009725932 0.00196949366017 7.18399500976e+11 +UniRef50_UPI00037F1905 hypothetical protein 1.72336501293e-05 6.85726130118e-06 -4189075502.51 +UniRef50_G7M799 Signal transduction histidine kinase, LytS 0.00115930237388 0.0017832294396 2.51887012877e+11 +UniRef50_Q5FRT7 Peptidyl tRNA hydrolase 7.24277916288e-05 3.53587290098e-05 -14965235467.8 +UniRef50_Q6ABX1 Replicative DNA helicase 9.08874772519e-05 0.00818994932366 3.26969065406e+12 +UniRef50_A0KZD8 Glucose 1 phosphate adenylyltransferase 1.0929205567e-05 2.37085077764e-05 5159161121.61 +UniRef50_B9KTQ6 TRAP T family transporter, large inner membrane subunit 0.00381999849935 0.000307463663354 -1.41805341694e+12 +UniRef50_A1KKI2 Dihydroorotate dehydrogenase 5.820659425e-06 6.96606713835e-06 462415149.613 +UniRef50_UPI00030DA7F9 thioredoxin 0.000339479509458 0.000207784924361 -53166720077.9 +UniRef50_K9ERP2 6.51849752047e-06 2.14195184547e-05 6015725007.23 +UniRef50_A0A023RSC8 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.000211725075906 0.00344782874165 1.30645476132e+12 +UniRef50_J7N582 3.08504985742e-05 0.00309070888943 1.23530238108e+12 +UniRef50_Q6N6C1 Ribonuclease 3 1.58274438912e-05 1.30235498012e-05 -1131966451.78 +UniRef50_Q8CR64 0.0112002390839 0.00360771804439 -3.06519391436e+12 +UniRef50_D5BRY1 Trimethylamine methyltransferase MttB like protein 0.00465065265852 0.00165498210449 -1.20938896367e+12 +UniRef50_B9KX93 ParB like nuclease 3.86496640219e-05 0.000226875829852 75989212940.4 +UniRef50_B6J667 Arginine tRNA ligase 3.17083194595e-06 7.91840525252e-06 1916653603.14 +UniRef50_A0RJK0 Malate dehydrogenase 0.0113140302627 0.00309514517328 -3.31806476766e+12 +UniRef50_P9WHH0 Thioredoxin reductase 7.24085468987e-05 0.000111937120171 15958170100.2 +UniRef50_G8S3A0 Zonadhesin 6.51586862235e-05 1.55159507712e-05 -20041381487.0 +UniRef50_UPI0003B45B4C porphyrin biosynthesis protein HemD 3.7267613486e-06 1.05788362479e-05 2766266721.26 +UniRef50_UPI0002D482D7 hypothetical protein 4.90027264004e-05 0.000332736312694 1.1454673059e+11 +UniRef50_F4MZ90 0.000106130995183 0.000117132006168 4441243132.23 +UniRef50_Q3IWQ9 0.000591599765443 0.000643532891962 20966040466.8 +UniRef50_B2TK25 Ribosomal protein alanine acetyltransferase 0.000522528263136 0.00220179936463 6.77942350645e+11 +UniRef50_UPI0002F7E60E hypothetical protein 8.03853303153e-05 7.88351408466e-05 -625830511.478 +UniRef50_P37498 9.4766357036e-05 0.0021519156283 8.30496404868e+11 +UniRef50_P37497 0.000449726431648 0.000864936928866 1.67625572933e+11 +UniRef50_M8Y264 Inner membrane transporter ygjI 9.13272553671e-05 0.000150671788373 23958116213.8 +UniRef50_A3M617 0.000267720559474 0.00223904450587 7.95847668027e+11 +UniRef50_Q3IXS5 0.00283033569829 0.00315322674608 1.30355078312e+11 +UniRef50_Q98DN4 Non canonical purine NTP pyrophosphatase 0.000126005386141 3.68436427288e-05 -35995689953.1 +UniRef50_Q8RFX8 tRNA N6 adenosine threonylcarbamoyltransferase 1.11875605072e-05 3.24009683361e-06 -3208488611.37 +UniRef50_UPI0003642424 hypothetical protein 0.00028420229073 5.67957048102e-05 -91806829328.5 +UniRef50_P26208 Beta glucosidase A 3.21071776104e-06 8.54588592476e-06 2153872857.57 +UniRef50_N0BCG1 Thioesterase superfamily protein 1.37161196875e-05 0.000540150306769 2.12527941399e+11 +UniRef50_UPI0003B6024A amidohydrolase 1.16630095649e-05 1.99861919805e-05 3360170878.11 +UniRef50_I0C5D3 0.00294346456335 0.000584785554841 -9.52227659982e+11 +UniRef50_P32444 MreB like protein 0.000388095115748 0.00939529103395 3.6363155229e+12 +UniRef50_UPI0003B44D54 hypothetical protein, partial 3.231654542e-06 1.55313984278e-05 4965557541.53 +UniRef50_UPI00047E3099 antitermination protein NusG 3.19485371456e-05 0.000718119465745 2.7701562414e+11 +UniRef50_O54479 DNA topoisomerase 4 subunit B 4.06104526265e-06 7.73769783026e-06 1484309759.14 +UniRef50_A0A033LNC5 Plasmid recombination enzyme type 3 0.0010767727695 0.000303304278421 -3.12258721374e+11 +UniRef50_F9YWG0 0.000703390041336 0.00344074685892 1.1051045384e+12 +UniRef50_Q836B6 Membrane protein 1.94542757785e-05 0.00188197701013 7.51923283581e+11 +UniRef50_F6E617 1.93742648487e-05 8.8250253285e-06 -4258857448.03 +UniRef50_Q9JXS4 Membrane protein insertase YidC 8.89597774156e-05 0.00239224766876 9.29865586255e+11 +UniRef50_S0ZBX9 FhuE receptor 0.00343515259148 0.00159065668768 -7.44645630874e+11 +UniRef50_V8FSB8 Chitinase 0.000143052151964 0.00186008668324 6.93187910661e+11 +UniRef50_F6BYP3 Soluble epoxide hydrolase 0.000332022841676 0.000298299702217 -13614445229.1 +UniRef50_N6YQC2 NAD specific glutamate dehydrogenase 5.18265812319e-05 4.17822705968e-05 -4055011460.94 +UniRef50_M5EIH7 0.000269597361079 0.000211517762764 -23447446556.6 +UniRef50_Q9F1K0 DNA polymerase III subunit alpha 0.0118030692909 0.00234609896372 -3.81789497116e+12 +UniRef50_Q3Z7J2 DNA methylase 0.000402913677185 0.000872582720359 1.89611156217e+11 +UniRef50_UPI000463CA0D hypothetical protein 0.000183518623069 2.58781360691e-05 -63641399068.2 +UniRef50_A6LXM6 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.000125968628095 0.00236280055991 9.0303649989e+11 +UniRef50_E6KS29 8.91168977822e-05 0.00645756586073 2.571020996e+12 +UniRef50_D6UC71 0.00066629616825 3.24591100703e-05 -2.55887798443e+11 +UniRef50_B8JAU2 Peptide chain release factor 1 0.000319120933889 0.00521291326167 1.97568401631e+12 +UniRef50_UPI0003B32316 flagellar P ring protein FlgI 7.36970633485e-06 1.49242733809e-05 3049871421.45 +UniRef50_P76594 0.00177605367585 0.000720319967982 -4.26212653177e+11 +UniRef50_B7GV54 Probable allantoicase 0.000167771550603 0.00504667208343 1.96967201595e+12 +UniRef50_K8E4H2 Transcription termination factor NusA 0.00157035508195 0.00354535485164 7.97331642996e+11 +UniRef50_Q8X958 0.0022824864527 0.00123949875793 -4.21066931277e+11 +UniRef50_M4D1J6 3.83473347309e-05 0.000415188416117 1.52135368916e+11 +UniRef50_W1W4W6 Fibrinogen binding protein 7.08146216309e-05 4.6848854273e-05 -9675274375.42 +UniRef50_UPI0003B49B6A aminoglycoside resistance protein 6.57446914222e-06 9.91654400867e-06 1349236635.46 +UniRef50_M4IFW7 0.000236270519647 7.59540531662e-05 -64721724822.7 +UniRef50_W1IYA0 2.66037451308e-06 7.86653808263e-06 2101792119.84 +UniRef50_A0A011NJ23 3.80912136999e-06 1.41565822079e-05 4177396917.88 +UniRef50_D7GGE9 Glyoxalase bleomycin resistance protein dioxygenase 0.000786429143437 0.0350020384246 1.38132613396e+13 +UniRef50_P94558 Non canonical purine NTP pyrophosphatase 8.57356079452e-05 2.12877795506e-05 -26018379186.7 +UniRef50_C1DMW2 Apolipoprotein N acyltransferase 0.000658577891726 0.000428888196953 -92728548389.4 +UniRef50_Q7U836 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000275589461605 0.000429094424593 61971837276.0 +UniRef50_UPI0002893D0F integrase catalytic subunit 0.000630060806927 2.65757676359e-05 -2.43634315956e+11 +UniRef50_Q47HX8 BRO, N terminal 8.53595661837e-05 2.43852100651e-05 -24616095804.6 +UniRef50_Q9I122 8.14717961515e-05 7.55648366401e-05 -2384712041.3 +UniRef50_UPI000467C382 hypothetical protein, partial 1.7205564345e-05 2.8946862243e-05 4740106043.35 +UniRef50_Q1QM99 Bifunctional enzyme IspD IspF 5.72157068923e-06 8.19997713861e-06 1000563097.08 +UniRef50_H8GX99 Minor tail protein gp26 related protein 1.22357445078e-05 0.00237500198363 9.53877725135e+11 +UniRef50_UPI0003150799 hypothetical protein 7.16677369495e-06 0.0010623551574 4.25992499121e+11 +UniRef50_A5UK29 Predicted DNA modification methylase 0.0031050708363 0.000536718182534 -1.03687548356e+12 +UniRef50_U2FHG3 0.000221121022929 0.000301386404106 32404119348.1 +UniRef50_A0A011QRD8 2.87540708244e-05 0.000458123897433 1.73341867962e+11 +UniRef50_UPI00036BFACB hypothetical protein 2.12640813726e-05 1.89001960121e-06 -7821546483.59 +UniRef50_X7YZZ8 Secretory lipase family protein 1.45302078434e-05 1.26563758911e-05 -756488953.647 +UniRef50_Q54800 UTP glucose 1 phosphate uridylyltransferase 0.000311862247187 0.000117392733756 -78509728981.4 +UniRef50_R9SMD3 0.00341750059888 0.000696166975294 -1.09863577836e+12 +UniRef50_UPI000470CD83 cell division protein FtsZ 1.20496486528e-05 1.5034923146e-05 1205191946.34 +UniRef50_Q28RD6 Ribosomal RNA small subunit methyltransferase A 0.00289946658605 0.00268393358856 -87013315974.0 +UniRef50_UPI0004750A2D gas vesicle protein 4.41991053582e-05 9.4393944192e-05 20264272397.1 +UniRef50_UPI0002BA7CDC hypothetical protein, partial 0.000731463294014 0.000185035929831 -2.20599432338e+11 +UniRef50_UPI00047D5FC6 hypothetical protein 4.5162956086e-05 3.04948972678e-05 -5921675342.23 +UniRef50_UPI0003AA219E hypothetical protein 0.000120631958295 0.000177069892924 22784686781.1 +UniRef50_P22939 Farnesyl diphosphate synthase 0.00312635788628 0.00285008169582 -1.11536088379e+11 +UniRef50_D3QDI5 0.0129653403119 0.0013258776586 -4.69899390541e+12 +UniRef50_Q2RSB2 NAD transhydrogenase subunit alpha part 1 0.000201236462023 0.0102328570823 4.04988834624e+12 +UniRef50_R6EN42 Selenium dependent molybdenum hydroxylase 1 0.000594656477845 0.00150534575444 3.67656436376e+11 +UniRef50_D4HEA1 Hydrolase, NUDIX family 0.000403539301834 0.00620362742993 2.3415667524e+12 +UniRef50_UPI00025560C0 dihydropyrimidine dehydrogenase subunit A 1.15072816461e-05 3.02805556708e-05 7579001097.75 +UniRef50_Z6NTK4 4.74316208288e-05 0.00180806146039 7.10787871588e+11 +UniRef50_P31672 NifS IcsS protein homolog 0.00382850273939 0.0020865021916 -7.03266997893e+11 +UniRef50_Q8CQ61 Mercuric reductase like protein 0.0210919927057 0.00358806324045 -7.06655112247e+12 +UniRef50_Q1QE74 1 deoxy D xylulose 5 phosphate synthase 2.37149062373e-06 9.97685745486e-06 3070379918.07 +UniRef50_UPI0002193BBE ribonucleotide diphosphate reductase subunit alpha, partial 4.15251596048e-05 0.00781014792494 3.13628834209e+12 +UniRef50_C7MAW1 Ferritin like protein 0.000219044094112 0.00335669577408 1.26670848652e+12 +UniRef50_Q6GCR4 FMN dependent NADH azoreductase 0.0107569970558 0.00308064544506 -3.09903734468e+12 +UniRef50_UPI0002000E25 3 hydroxybutyrate dehydrogenase 9.74184696341e-05 4.87616428808e-05 -19643358046.7 +UniRef50_Q5HRI8 Hydrolase, haloacid dehalogenase like family 0.0219191948775 0.00717344310014 -5.95304094326e+12 +UniRef50_UPI0003099509 hypothetical protein 1.32549338813e-05 9.60880601117e-06 -1471986564.19 +UniRef50_U5MWZ3 HTH type transcriptional regulator GlvR 0.00029414691084 0.00024372767966 -20354862340.9 +UniRef50_UPI00037E3C64 hypothetical protein 0.000109251194106 0.0003534458039 98584360578.7 +UniRef50_UPI0003634D70 glutathione synthetase 3.91675247402e-05 2.90444991552e-05 -4086789652.16 +UniRef50_A0A038FYY7 0.000233091636094 2.27798263378e-05 -84905458414.6 +UniRef50_C9SB93 Predicted protein 9.26689968771e-05 2.09375278016e-05 -28958874309.9 +UniRef50_UPI000050F857 peptide ABC transporter ATPase 1.29348605029e-05 5.34676616222e-06 -3063406801.72 +UniRef50_UPI000328D76F PREDICTED 8.08509800443e-06 2.38466608707e-05 6363136345.25 +UniRef50_S6BC90 0.00713667380605 0.0017176893057 -2.18771054121e+12 +UniRef50_L6YLT0 Pheromone autoinducer 2 transporter 0.000111981204558 2.47322297618e-05 -35223481790.5 +UniRef50_UPI0004077040 hypothetical protein 1.32803496355e-05 2.69428624307e-05 5515724073.31 +UniRef50_A0A028CJ48 Type IV fimbrial assembly protein PilC 0.00194067913801 0.000211949788416 -6.97909252324e+11 +UniRef50_Q6GJR0 UPF0355 protein MRSA252 0.00443737335821 0.000875012459831 -1.43816880976e+12 +UniRef50_G8RDK6 0.0154599776358 0.000423899576834 -6.07024922585e+12 +UniRef50_Q14P38 Hypothetical glucose inhibited protein n terminal and c terminal truncated 1.41119440627e-05 2.31265807809e-05 3639319465.17 +UniRef50_Q8CPD8 Cardiolipin synthase 1 0.0100857979182 0.00365707694915 -2.59535354448e+12 +UniRef50_F0PBS4 PTS system, IIC component 0.000136770285816 0.000326316801329 76522254309.9 +UniRef50_D4HDK7 0.000180903828528 0.00778319479267 3.06913815282e+12 +UniRef50_Q8CN46 Para nitrobenzyl esterase chain A 0.0172311438625 0.00526992318813 -4.82889156694e+12 +UniRef50_A6LQ09 0.00066991763206 0.00123406324237 2.27752505727e+11 +UniRef50_Q50028 Amidophosphoribosyltransferase 8.05744746907e-06 9.35200774792e-05 34502312479.5 +UniRef50_R4QJK7 MFS transporter 9.83036429352e-05 0.00319199577081 1.24896147589e+12 +UniRef50_Q87Q74 Imidazolonepropionase 0.000102857217666 0.00765379509256 3.04840628052e+12 +UniRef50_P0C7I7 Succinyl CoA 0.000212252091912 0.000118245936551 -37951438504.5 +UniRef50_X1Y946 Translation factor GUF1 homolog, mitochondrial 1.21292830404e-05 4.90522478435e-06 -2916440967.13 +UniRef50_Q985R7 Mlr7559 protein 2.83690946718e-06 3.98673524484e-06 464198776.39 +UniRef50_P47691 UTP glucose 1 phosphate uridylyltransferase 0.000217607645211 8.03295264533e-05 -55420861134.6 +UniRef50_D8K235 DNA gyrase subunit A 8.04138150306e-06 1.5984467948e-05 3206721470.45 +UniRef50_Q5ZY07 Tyrosine tRNA ligase 0.00150561129129 0.00516109050061 1.47576181458e+12 +UniRef50_Q8CP00 Truncated transposase 4.78012896264e-05 0.00182670126925 7.1816375133e+11 +UniRef50_UPI0003B60438 ABC transporter 7.11122879581e-05 3.24187566549e-05 -15621053410.1 +UniRef50_UPI00047C8194 PTS fructose transporter subunit IIC, partial 0.000380747750328 0.00100627540486 2.52533190222e+11 +UniRef50_UPI000370B249 hypothetical protein 7.3371337306e-05 2.17347598294e-05 -20846319979.4 +UniRef50_P47203 Cell division protein FtsA 0.000817907866714 0.00096279209358 58491540315.2 +UniRef50_E2RPM1 1.77946294791e-05 0.000152618452293 54430031744.4 +UniRef50_I0ETC3 0.000173689872173 0.00304514785587 1.15924282477e+12 +UniRef50_S3ASG0 0.000205678611677 0.000204843957368 -336960186.903 +UniRef50_U7QZ50 2.97044685065e-05 1.41328971289e-05 -6286434449.81 +UniRef50_A0NWG0 0.000492472452184 0.00133832246948 3.41480031729e+11 +UniRef50_D6SE59 Transcriptional regulator, GntR family 0.0121394162887 0.00212499713052 -4.04294390491e+12 +UniRef50_F4FR09 Succinate semialdehyde dehydrogenase (+)) 0.00871020571909 0.00191572780956 -2.7430141097e+12 +UniRef50_Q8XNK5 Tagatose 6 phosphate kinase 0.0250734245553 0.0064086872466 -7.53518349361e+12 +UniRef50_UPI000407C5D8 acyl CoA dehydrogenase 1.74269428e-05 4.15848954229e-05 9752861925.28 +UniRef50_UPI0003690E4C ATPase, partial 0.0011266004134 7.83151932378e-05 -4.23205607285e+11 +UniRef50_B9AFH1 7.45618551809e-05 1.30355088166e-05 -24838941040.4 +UniRef50_F6D286 Glycosyl transferase family 2 0.00228073329637 0.000699684090318 -6.38288966138e+11 +UniRef50_A6LXN5 Methyl accepting chemotaxis sensory transducer 0.000227945118015 0.00136200969454 4.57835786078e+11 +UniRef50_P77316 0.0117604719164 0.006644245834 -2.06548325262e+12 +UniRef50_P59626 Probable dihydroorotate dehydrogenase A 0.00603590507505 0.00709525803535 4.27673789796e+11 +UniRef50_A6M2U8 Methyl accepting chemotaxis sensory transducer 0.000375640604108 0.00273822716372 9.53805186312e+11 +UniRef50_P77318 0.00148311792614 0.000377721279616 -4.46262190942e+11 +UniRef50_G2RMW8 Acetylxylan esterase enzyme 0.000382381826815 0.00144537080383 4.29141694365e+11 +UniRef50_P60480 Isoprenyl transferase 1 0.000273540571632 0.00752340909078 2.92686088707e+12 +UniRef50_UPI0003808BDF hypothetical protein 2.96754254782e-06 0.000410890034081 1.64683315604e+11 +UniRef50_R4XZE6 Integral membrane protein 0.0001837331267 4.41403866548e-05 -56355302151.7 +UniRef50_D7PDW2 RmlC 0.0218160111106 0.0054850596379 -6.59300551284e+12 +UniRef50_UPI00036788A9 hypothetical protein 4.25852773795e-05 2.19327890648e-05 -8337662967.18 +UniRef50_Q2KZM3 Integration host factor subunit alpha 0.00102363426994 0.000611000079721 -1.66585486182e+11 +UniRef50_D1GN41 0.000177048591137 1.78116821735e-05 -64285894205.0 +UniRef50_K1ZZ76 0.000129471578378 3.85052287397e-05 -36724231631.6 +UniRef50_UPI0003B64AAF hydrogenase nickel incorporation protein HypA 0.000833060908762 6.71011738496e-05 -3.09227344367e+11 +UniRef50_UPI0004693869 hypothetical protein 3.35859695798e-05 3.35039691245e-05 -33104590.0634 +UniRef50_D9SVX2 Ion transport 2 domain protein 0.000318654513624 0.0019960143724 6.7717075851e+11 +UniRef50_M5DTK5 FMN oxidoreductase 0.000106234330817 0.00858893494279 3.42457033149e+12 +UniRef50_D3E3M3 RNA binding protein 0.00105861423623 0.00296794882833 7.70821805001e+11 +UniRef50_A9KCU3 Aspartate aminotransferase 9.25967266145e-05 0.00556275901368 2.20837164173e+12 +UniRef50_Q02JU1 Protein phosphatase CheZ 0.00149114289821 0.00163570894843 58363088498.7 +UniRef50_Q8CNS6 Secretory antigen SsaA like protein 0.011082962571 0.0052096720672 -2.37111944976e+12 +UniRef50_UPI000402B9E3 methionyl tRNA formyltransferase 4.78971947736e-05 1.15107410921e-05 -14689657863.2 +UniRef50_P80046 Isocitrate dehydrogenase [NADP] 0.0132358594195 0.0042534766752 -3.62629814011e+12 +UniRef50_Q9HHK0 Vng6359h 2.4449883858e-05 0.000102530749951 31522203801.7 +UniRef50_H6U1K2 0.000109484242337 5.62970908979e-05 -21472305715.7 +UniRef50_UPI0004676D4F hypothetical protein 4.04652937113e-06 0.000242242140974 96162491393.0 +UniRef50_A6LX18 0.000399183219358 0.000789180981163 1.57446882251e+11 +UniRef50_Q8R9W1 Acyl carrier protein 4.82925544334e-05 0.000296622347216 1.00253784696e+11 +UniRef50_Q322I7 IS911 ORF2 3.891943817e-05 7.66018237618e-05 15212841478.3 +UniRef50_W7WXB1 0.000182605614369 0.000885069547031 2.83593309817e+11 +UniRef50_G8WN72 Tetratricopeptide TPR_4 1.50219540583e-05 2.13185463301e-05 2542011568.0 +UniRef50_UPI00046660B8 cobinamide adenolsyltransferase 0.000161230397139 0.00208486648215 7.76595493188e+11 +UniRef50_B5EZV0 Probable protein kinase UbiB 0.00320088833449 0.00149242452105 -6.89727806694e+11 +UniRef50_Q9RZR2 0.000287425879838 0.0187789073947 7.46523800356e+12 +UniRef50_UPI00047ADAC8 hypothetical protein 5.77294694377e-06 0.000161884680638 63024222598.7 +UniRef50_P0ABR8 Putative dioxygenase subunit alpha YeaW 0.00288350644618 0.00679031030624 1.57722466018e+12 +UniRef50_G4LKP1 AraC family transcriptional regulator 0.00103952444466 0.000172531668084 -3.50015623102e+11 +UniRef50_Q9RZR8 0.00113303676326 0.158341167947 6.34668517197e+13 +UniRef50_K0CFL0 2.72527822831e-05 3.61488997494e-05 3591471788.78 +UniRef50_D4HCQ6 0.000390502747092 0.00326432554259 1.16019752831e+12 +UniRef50_A6M372 SH3, type 3 domain protein 0.000129128616484 0.00141398748134 5.18713290735e+11 +UniRef50_I1EBV8 2.38469521385e-05 0.00301175355727 1.20625456223e+12 +UniRef50_P0CE45 Glucuronide carrier protein 0.00271726228068 0.00163473681388 -4.37028815028e+11 +UniRef50_V7EQN7 5.61042367013e-05 1.56936735516e-05 -16314240236.9 +UniRef50_A6W322 Transposase IS4 family protein 3.26690077532e-05 3.09878303438e-05 -678711950.542 +UniRef50_I6TWA3 Integral membrane protein 0.00670483481502 0.000740453155812 -2.40789406702e+12 +UniRef50_A0A022P2T6 0.000252946066768 7.94925630535e-05 -70025307963.6 +UniRef50_P75728 2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.0029925394521 0.00265402550568 -1.36662234203e+11 +UniRef50_UPI0002FBC2B3 hypothetical protein 9.45348808271e-05 0.000135864749085 16685374990.2 +UniRef50_U5MLY8 Periplasmic metal binding protein 0.000738162390631 0.00439164984525 1.47495771876e+12 +UniRef50_A4EN59 0.00139767420995 0.00050338074749 -3.6103724501e+11 +UniRef50_O30853 Pyruvate kinase I 0.00114877359079 0.00188384634257 2.96757890251e+11 +UniRef50_M9RKI9 Multidrug resistance protein 0.00399278537596 0.00141512970503 -1.04063122575e+12 +UniRef50_UPI0003A400F2 diaminohydroxyphosphoribosylaminopyrimidine deaminase 4.36234148132e-05 0.00025418971329 85008198634.2 +UniRef50_D9PYH9 tRNA pseudouridine synthase Pus10 0.00213657975183 0.000147045662343 -8.03199326256e+11 +UniRef50_UPI000444934A hypothetical protein STEHIDRAFT_148098 1.71341464609e-05 2.18146737348e-05 1889586297.0 +UniRef50_D1DJ22 2.46820239252e-05 0.000115362268151 36608727365.7 +UniRef50_F0K4V5 Proline glycine betaine ABC type transport system, ATPase component 0.000695669353697 0.000491215608188 -82540485991.6 +UniRef50_UPI00016C406D methylcitrate synthase 2.29927847324e-05 4.95925860547e-05 10738666210.1 +UniRef50_UPI0003B5D4F6 hypothetical protein 1.31665866566e-05 2.06532255058e-05 3022447974.81 +UniRef50_UPI00036DB78E hypothetical protein 0.000159089249315 3.94591102498e-05 -48296155167.4 +UniRef50_Q2NAA1 4.28897515685e-06 6.71800854796e-06 980630587.583 +UniRef50_UPI00035ED814 hypothetical protein, partial 1.39391620064e-05 0.000160799853503 59289463340.7 +UniRef50_UPI000373BE23 glyceraldehyde 3 phosphate dehydrogenase, partial 0.000183222535819 5.28532042217e-05 -52631698977.3 +UniRef50_M9VD52 Efflux ABC transporter permease 5.18762238404e-05 0.0069319656701 2.77757653765e+12 +UniRef50_UPI00037FDD41 hypothetical protein 8.19069551971e-06 1.37281173828e-05 2235525157.94 +UniRef50_I0GDF4 1.64033268748e-05 3.0410020518e-05 5654674105.22 +UniRef50_S0AE89 Allophanate hydrolase AtzF 0.000337611916097 0.00729824214236 2.81009183888e+12 +UniRef50_D1NC80 0.000143575956807 5.44984247138e-05 -35961692810.3 +UniRef50_UPI000442239B PREDICTED 1.6915460085e-05 0.000680029183118 2.67707147309e+11 +UniRef50_UPI0003FC0AD6 hypothetical protein 0.000151788253939 3.87734223892e-05 -45625474344.7 +UniRef50_A7FNV8 Pimeloyl [acyl carrier protein] methyl ester esterase 0.00327254034239 0.00130909069981 -7.92668714946e+11 +UniRef50_A3JZS3 0.00019766040074 0.000313688679274 46842039871.3 +UniRef50_E5CPU2 0.00177697564769 0.000390758585583 -5.5963283877e+11 +UniRef50_Q6GER3 Arginase 0.0125076170316 0.00141810767885 -4.47697100931e+12 +UniRef50_UPI000375E276 hypothetical protein 5.50145364519e-06 0.000138115146792 53537775276.5 +UniRef50_D4HA59 Precorrin 6A synthase 0.000707502677738 0.00582490901771 2.06595973708e+12 +UniRef50_Q8CMZ3 2 dehydropantoate 2 reductase 0.00830883951017 0.00240740348744 -2.38248214114e+12 +UniRef50_UPI000361337E 30S ribosomal protein S5 1.2134212494e-05 1.81763538415e-05 2439286607.4 +UniRef50_Q7NFC3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.00517132403331 0.00626246737375 4.4050795637e+11 +UniRef50_O34997 0.0183054763861 0.0053761287071 -5.21973631895e+12 +UniRef50_G9WGT8 dTDP 4 dehydrorhamnose reductase 0.00907222853237 0.00292478934515 -2.48179663744e+12 +UniRef50_A7FAW9 0.000286255250654 0.00746640847699 2.89871596786e+12 +UniRef50_Q2FUW4 Accessory Sec system protein Asp2 0.0215119186918 0.00767607657642 -5.58569924686e+12 +UniRef50_A7FAW6 0.00014842175184 0.0137011994221 5.47142265678e+12 +UniRef50_A7FAW0 0.000582358090914 0.0136350344581 5.26952562379e+12 +UniRef50_A7FAW2 0.000373313578779 0.00872122293026 3.37015344556e+12 +UniRef50_R9SHN0 ABC transporter ATP binding protein 0.00278389426139 0.000337506030452 -9.8763694939e+11 +UniRef50_UPI00046352F2 hypothetical protein 1.45136677172e-05 1.84512413226e-05 1589646783.96 +UniRef50_U3SSP8 0.00539114000969 0.00078162964425 -1.86091589958e+12 +UniRef50_UPI000366C569 hypothetical protein 0.000166569049624 3.54394713138e-05 -52938619904.6 +UniRef50_UPI0003C16BB8 PREDICTED 1.61029536785e-05 2.73006163166e-05 4520633817.77 +UniRef50_UPI000376CC75 hypothetical protein 0.000458270968608 0.000254982075216 -82070220897.6 +UniRef50_A6UV64 30S ribosomal protein S19 0.00192898075128 0.000433227440392 -6.03853966563e+11 +UniRef50_Q9K0Q4 Beta hexosaminidase 5.00383185329e-06 0.00874156825064 3.52705826557e+12 +UniRef50_P37669 Inner membrane protein YiaH 0.00152577712655 0.000275996920751 -5.04551605609e+11 +UniRef50_U3SSP7 0.00638318592068 0.00507242298452 -5.29171082198e+11 +UniRef50_Q08QR2 ABC D methionine uptake transporter, substrate binding protein 3.76411238867e-05 2.08963529864e-05 -6760069493.9 +UniRef50_X7F6B4 Membrane protein 9.75095939175e-06 2.02717284401e-05 4247363569.19 +UniRef50_Q9RS79 Dipeptidyl peptidase IV related protein 0.000240627612955 0.0433269637271 1.73944826181e+13 +UniRef50_UPI000369B201 NADH 2.79896104986e-06 1.15976244304e-05 3552128378.47 +UniRef50_UPI00036BA5B6 hypothetical protein 7.77735127234e-06 2.12370083188e-05 5433828718.24 +UniRef50_A4A467 Type IV pilus biogenesis stability protein PilW 8.36324678114e-06 1.55344313008e-05 2895095190.92 +UniRef50_D6SDK6 0.000244859079133 0.000177723192699 -27103581203.4 +UniRef50_UPI00045E77FA MarR family transcriptional regulator 2.83046098879e-05 0.000184591410704 63094899344.1 +UniRef50_R7PVC1 DNA helicase UvrD REP helicase family 0.00258092133347 0.00112856014145 -5.86336035694e+11 +UniRef50_P57527 0.00250056053256 0.000275139787458 -8.9842966378e+11 +UniRef50_P76219 TVP38 TMEM64 family membrane protein YdjX 0.0033828227249 0.000517120838683 -1.15691901758e+12 +UniRef50_G8V0Z4 0.00877412993885 0.00515987979217 -1.45911713605e+12 +UniRef50_UPI000383F1E5 PREDICTED 3.15361001781e-05 3.19561047692e-05 169561007.463 +UniRef50_UPI000328DEDF PREDICTED 9.04831890783e-05 0.000160063254856 28090326397.9 +UniRef50_B3EH06 Polyribonucleotide nucleotidyltransferase 7.78843028982e-06 6.37613110064e-06 -570162513.532 +UniRef50_K7RKE8 Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR 0.00018832569052 0.00630946895641 2.47118065131e+12 +UniRef50_Q57766 Formylmethanofuran tetrahydromethanopterin formyltransferase 0.00264523642331 0.000206034910605 -9.84735583046e+11 +UniRef50_A6M1R7 Methyl accepting chemotaxis sensory transducer 0.000863901800333 0.00179298914907 3.75083963869e+11 +UniRef50_Q5HPB5 Glucose specific phosphotransferase enzyme IIA component 0.0254539302591 0.00040920415787 -1.01108632604e+13 +UniRef50_A3SND6 ArsC family protein 0.000132792131607 9.15015893171e-05 -16669498614.4 +UniRef50_A3PMB5 Large conductance mechanosensitive channel 0.0201084386923 0.00375054136981 -6.60388388307e+12 +UniRef50_B6AX96 0.000313884603069 9.19852653131e-05 -89583485663.2 +UniRef50_A1KU06 Sulfite reductase [NADPH] flavoprotein alpha component 0.000127731434113 0.0033734789105 1.31034808602e+12 +UniRef50_M7E309 MDR permease 0.00460302035819 0.00150254674536 -1.25169924459e+12 +UniRef50_Q6F6V8 0.000498880161478 0.00878332463362 3.34453189497e+12 +UniRef50_UPI000344EB03 hypothetical protein 3.00953045403e-06 1.06341754032e-05 3078162730.9 +UniRef50_M4S586 Beta lactamase domain containing protein 8.24029015742e-06 2.76703350653e-05 7844147562.78 +UniRef50_H6LL43 0.000290185129516 7.36758633105e-05 -87407447634.8 +UniRef50_F5XF11 Two component histidine kinase SenX3 0.000171066158086 0.00438125706264 1.69970573302e+12 +UniRef50_Q8CU74 0.00715247381234 0.00275936863705 -1.77355046873e+12 +UniRef50_F5WYS0 ICESt1 ORFD ATP GTP binding protein 0.000660051449838 8.84181752067e-05 -2.30775367698e+11 +UniRef50_UPI000360AFBD hypothetical protein 2.81811938373e-05 7.60395207207e-06 -8307285011.76 +UniRef50_K7RZE6 Transcription termination antitermination protein NusG 0.000281006939596 0.00781113212247 3.04000394135e+12 +UniRef50_H8I846 Formate nitrite transporter 0.00462186480245 0.000221211015129 -1.77659793604e+12 +UniRef50_B9KPG8 1.79712611338e-05 2.77095231551e-06 -6136551198.71 +UniRef50_J9D1K7 0.000324128190113 0.00252053617521 8.86716856542e+11 +UniRef50_A5VTC2 D isomer specific 2 hydroxyacid dehydrogenases family protein 0.00195032563519 0.000251333366122 -6.85904028003e+11 +UniRef50_P52046 3 hydroxybutyryl CoA dehydratase 0.000887650654886 0.00659054324976 2.30232772291e+12 +UniRef50_Q0VRV2 Acetyl CoA C acetyltransferase 0.000562472016648 0.012347988704 4.75795771126e+12 +UniRef50_Q9RR73 0.00100078876231 0.0502645881787 1.98884003592e+13 +UniRef50_A5VNQ2 0.000565182321255 5.65472888275e-05 -2.05342204245e+11 +UniRef50_A9M492 Adhesin MafA 3 0.000123227199839 0.011298120541 4.5114415732e+12 +UniRef50_A6DYV3 Flagellar scaffolding protein FlgD 9.9206446965e-06 1.36952560755e-05 1523856933.39 +UniRef50_W4U0B3 0.000163143287358 0.000141822583322 -8607429853.79 +UniRef50_Z5JZC3 6.01971740866e-05 0.000336153457143 1.11406937834e+11 +UniRef50_K7RUT9 0.000167771550603 0.0063029752548 2.4768570228e+12 +UniRef50_UPI00046E091D PilS cassette 6.33796658764e-05 0.000164624242536 40873678008.3 +UniRef50_M9R624 Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme 0.000749810928391 0.000480447284148 -1.08745408645e+11 +UniRef50_O07020 Lactate utilization protein A 0.00330081361737 0.000625536701782 -1.08004212016e+12 +UniRef50_UPI0003759AA3 purine nucleoside phosphorylase 4.7543742004e-05 0.000194131173471 59179144913.3 +UniRef50_T1Y5U5 ABC transporter permease protein 0.0178999304822 0.00309685030896 -5.97618512014e+12 +UniRef50_C5BUP0 Urease subunit beta 7.22728688083e-05 3.12071793663e-05 -16578722760.4 +UniRef50_D4W6Z6 Membrane family protein 6.2199946917e-06 2.99726827608e-05 9589251651.76 +UniRef50_UPI0003C179AB PREDICTED 2.55770629397e-05 2.84526028641e-05 1160890754.32 +UniRef50_Q5HGK2 3 oxoacyl [acyl carrier protein] reductase FabG 0.0309970729355 0.0134952954547 -7.06568233996e+12 +UniRef50_U6KAI1 2.54745231289e-05 3.36412184966e-05 3296995136.56 +UniRef50_UPI0003B35B8E cupin 8.08235397045e-05 2.4469623906e-05 -22750767348.2 +UniRef50_Q9EUS8 Polyphosphate kinase 1.17880767505e-05 0.000524350687989 2.06927816007e+11 +UniRef50_G8VFL4 Cystathionine beta synthase 0.000239020447962 0.00736416276298 2.8765073879e+12 +UniRef50_Q99YM5 Guanylate kinase 0.0346915167994 0.0140835460324 -8.31969068688e+12 +UniRef50_Q9CJJ1 DNA polymerase III subunit beta 0.00898002172417 0.0086717461674 -1.24454625235e+11 +UniRef50_D8GNU7 Cell shape determining protein MreC 0.000798831241898 0.00247413493888 6.76340660759e+11 +UniRef50_UPI0001A44424 betaine aldehyde dehydrogenase, partial 6.54044397151e-05 0.000292765031581 91788260964.5 +UniRef50_UPI0003F82984 damage inducible protein CinA 2.43914407826e-05 7.59169964777e-06 -6782261652.13 +UniRef50_H5Y5I7 ABC type multidrug transport system, ATPase and permease component 0.000269060549412 0.000821297541102 2.22944850255e+11 +UniRef50_B4TGE4 Succinylglutamate desuccinylase 0.00209478361568 0.000599826634225 -6.03532478596e+11 +UniRef50_Q65RE8 7 cyano 7 deazaguanine synthase 4.03911714157e-05 0.00326241652494 1.30077117391e+12 +UniRef50_Q3JJR8 9.95305699112e-06 0.000195985852983 75103722621.1 +UniRef50_A5UMJ4 Type II restriction endonuclease 0.00272281622131 0.0013599855927 -5.50191448582e+11 +UniRef50_Q3JU21 2.18634165189e-05 2.98486573284e-06 -7621502618.22 +UniRef50_UPI00047AABBE fucose isomerase 0.000148872981473 0.000677948946537 2.13594459589e+11 +UniRef50_B7UNN6 ATP dependent 6 phosphofructokinase isozyme 1 0.034993714843 0.00849376788707 -1.0698353777e+13 +UniRef50_P46392 Acetyl propionyl coenzyme A carboxylase alpha chain 8.87369493691e-05 0.00653772305711 2.60353482965e+12 +UniRef50_T0YVF7 Pyridine nucleotide transhydrogenase subunit alpha 7.75725682494e-06 1.41895951367e-05 2596813910.12 +UniRef50_UPI00045E62A3 hypothetical protein 8.80963342274e-06 9.08741216152e-05 33130440927.8 +UniRef50_I2RL58 PF09994 domain protein 4.04924392951e-06 2.51497573201e-05 8518536188.2 +UniRef50_UPI000472C37E PTS fructose transporter subunit IIC, partial 6.0311729084e-06 0.000153809705904 59660007217.0 +UniRef50_C6SPS1 0.00192246950163 0.000905358373282 -4.10620243872e+11 +UniRef50_UPI00037FA03F hypothetical protein 8.46849092423e-06 2.8140379124e-06 -2282772068.82 +UniRef50_V4L8J8 0.000140764764599 2.94050790979e-05 -44957271573.8 +UniRef50_A1SWY4 Leucyl phenylalanyl tRNA protein transferase 5.9329126449e-06 1.03524407857e-05 1784217744.15 +UniRef50_I4Y4D8 Thioesterase family protein 0.000147072463189 0.000102045193119 -18178061474.0 +UniRef50_UPI000464BB09 glycine betaine ABC transporter ATP binding protein 8.82756527973e-05 7.70220340832e-06 -32528490265.8 +UniRef50_T5X6I4 Colicin I receptor 0.00364837481422 0.00222825857959 -5.73318350706e+11 +UniRef50_K9ZX93 Threonine tRNA ligase 0.000137622107211 0.0420964261582 1.69392840878e+13 +UniRef50_D4Z4T4 Aminomethyltransferase 0.000967034568974 0.000674196757176 -1.18222218147e+11 +UniRef50_T0VCJ2 1.95432764089e-05 0.00561807633148 2.26019649606e+12 +UniRef50_D7GTN9 Predicted phosphatase homologous to the C terminal domain of histone macroH2A1 1.38637711087e-05 0.000156109150731 57426205300.5 +UniRef50_P11502 Lactose specific phosphotransferase enzyme IIA component 4.81078295433e-05 0.00166687811773 6.53517429888e+11 +UniRef50_UPI0004209A5E hypothetical protein 9.4096064599e-06 0.000115076435093 42658995396.9 +UniRef50_UPI0001FFECE5 modular polyketide synthase, partial 1.58923174253e-05 8.92442581824e-05 29613078613.2 +UniRef50_UPI00017449FD LuxR family transcriptional regulator 4.20695383552e-05 5.78168787499e-05 6357394558.94 +UniRef50_UPI000378F680 hypothetical protein 1.72182927649e-05 2.04383980537e-05 1299996020.22 +UniRef50_Q8XA81 0.00320240401711 0.000816114675605 -9.63374290227e+11 +UniRef50_A6LQJ4 Integral membrane sensor signal transduction histidine kinase 0.00030068195338 0.00107831884218 3.13941554686e+11 +UniRef50_Q6A662 Chaperone protein DnaJ 2 0.000515760254413 0.00496195432916 1.79498310891e+12 +UniRef50_Q88RZ3 Putative ribose uptake protein RbsU 0.0273427435426 0.00867479699412 -7.53647910309e+12 +UniRef50_A0A023RQK0 0.000227401198102 0.00552252863506 2.13770792482e+12 +UniRef50_A6V0G0 0.000214847805227 0.000144056929367 -28579145286.4 +UniRef50_Q9KD29 Manganese transport system membrane protein MntC 0.0184274774468 0.00738252906251 -4.4589811995e+12 +UniRef50_Q2RX27 Dihydroorotate dehydrogenase 0.000112547909083 7.13944362462e-06 -42554691012.7 +UniRef50_M7D5Z8 Glucosyltransferase SI 0.00180152405111 0.000160935534159 -6.62325716578e+11 +UniRef50_H6VUW6 Universal stress protein 1.2077110532e-05 0.000231670922108 88652716452.3 +UniRef50_O07641 Nitrogenase iron protein 0.0134032232764 0.00834483981311 -2.04213147748e+12 +UniRef50_X1BTL4 Marine sediment metagenome DNA, contig 0.00018301282492 3.56922694185e-05 -59475116082.3 +UniRef50_UPI0003B672DD serine threonine protein phosphatase 6.01750873852e-06 1.65059218846e-05 4234301094.38 +UniRef50_UPI0004764F09 hypothetical protein 1.25049829354e-05 6.37591113694e-06 -2474381497.21 +UniRef50_S9SME8 0.00142380156698 0.000624224374848 -3.22799124379e+11 +UniRef50_B7N3G5 Putative aminoacrylate hydrolase RutD 0.00223532897472 0.00158416517713 -2.62882815765e+11 +UniRef50_C1E2L9 Serine pyruvate aminotransferase and or alanine glyoxylate transaminase 0.000156416846208 0.000175088955651 7538159714.69 +UniRef50_UPI00034AE262 hypothetical protein 1.89565847143e-05 4.19644071805e-06 -5958851258.64 +UniRef50_R0WMM8 Dehydrogenase E1 component family protein 8.91395623543e-05 0.00347903591988 1.36854275824e+12 +UniRef50_A0A025BQD1 Peptide ABC transporter permease 0.000444101163361 0.000551993841485 43557598150.7 +UniRef50_Q89AJ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.5119010553e-05 4.19928780027e-05 10849310068.9 +UniRef50_UPI00037341E7 hypothetical protein 3.05648755069e-05 7.42368384363e-05 17630907349.8 +UniRef50_UPI0003699727 hypothetical protein 2.95001406898e-06 1.03926800907e-05 3004695604.75 +UniRef50_S2VYA1 0.00161203981004 0.000630569477283 -3.96231617329e+11 +UniRef50_Q98GP9 Phosphoadenosine phosphosulfate reductase 8.84548647801e-05 1.45326902693e-05 -29843288977.1 +UniRef50_UPI0003737277 hypothetical protein 1.24347800654e-05 8.61100334685e-06 -1543705584.3 +UniRef50_UPI00016C406B hypothetical protein 2.06782893365e-05 0.00336119132743 1.34860610618e+12 +UniRef50_K9ZZM6 9.08594968655e-05 0.00129011517711 4.84154234635e+11 +UniRef50_Q8ZNB8 UPF0226 protein YfcJ 0.00151599417384 0.000407635758131 -4.47457893509e+11 +UniRef50_UPI0003C17609 PREDICTED 1.24720416017e-05 1.58288043865e-05 1355166328.34 +UniRef50_UPI000366A6AC molybdenum ABC transporter permease, partial 6.96715264752e-05 0.000169556098307 40324627370.0 +UniRef50_UPI000361A0EC hypothetical protein 7.81388499599e-05 4.51565414392e-05 -13315362688.2 +UniRef50_A1TJX6 Respiratory nitrate reductase alpha subunit apoprotein 0.00347904978328 0.000998907020898 -1.00126406795e+12 +UniRef50_A6LQT2 Transcriptional antiterminator, BglG 0.000585535498806 0.000854432450413 1.085569991e+11 +UniRef50_Q7W5I7 Acyl carrier protein 4.43742718615e-05 0.000135375276389 36738222235.7 +UniRef50_P42592 Glucosidase YgjK 0.00267833676706 0.0018147854047 -3.48626281952e+11 +UniRef50_Q8DSD7 30S ribosomal protein S6 0.0053352614749 0.0030092323109 -9.39046517094e+11 +UniRef50_F5XFZ9 0.00011626878507 0.00502198955515 1.98049967484e+12 +UniRef50_L7VWI6 0.0002965222684 0.00215381935616 7.49813625927e+11 +UniRef50_Q3JWK6 0.000111061051714 6.16077896587e-05 -19964888751.5 +UniRef50_Q2SVL7 Amino acid ABC transporter, permease protein 0.000920828364241 0.00936874807574 3.41052885517e+12 +UniRef50_A8HTG7 Glycine rich protein 3.75818057951e-05 8.35102338868e-05 18541870025.8 +UniRef50_V9WKD4 1.66865494709e-05 2.71903574682e-05 4240516184.73 +UniRef50_UPI0002654825 PREDICTED 0.000218779327025 0.000125590932598 -37621298380.4 +UniRef50_R9ZLH4 binding protein 0.000276271495287 0.000372247947718 38746871609.9 +UniRef50_A7X4S8 Thiamine phosphate synthase 0.0162512165071 0.00532096088876 -4.41267832243e+12 +UniRef50_S9TII9 2.75742172611e-05 5.61566310732e-05 11539071201.6 +UniRef50_UPI00037C37FD hypothetical protein 1.49964699717e-05 4.36028973401e-05 11548765769.0 +UniRef50_D2PYN9 1.34243047478e-06 3.62960602276e-05 14111209260.5 +UniRef50_A3PMH2 Chromosomal replication initiator, DnaA 0.00025369362184 0.00030361581695 20154202780.1 +UniRef50_Q9VC54 CG6695, isoform A 2.26051916846e-05 9.81732509088e-06 -5162618668.65 +UniRef50_Q9KXR1 Bifunctional protein PyrR 3.79477537662e-05 7.92772366519e-05 16685219410.7 +UniRef50_R1HQL9 Putative thioesterase 1.87746586939e-06 0.00104193686432 4.19884742118e+11 +UniRef50_UPI0003B6B26D heme ABC transporter ATP binding protein 3.69274342109e-06 4.48568236291e-06 320119181.268 +UniRef50_U5VKS0 6 pyruvoyl tetrahydropterin synthase 0.00106924502244 0.000603519713684 -1.88019022237e+11 +UniRef50_G2PZY4 1.9551527407e-05 8.31430732305e-05 25672687405.0 +UniRef50_UPI000380DC6B 50S ribosomal protein L6 0.000223111110249 0.000382306720477 64269221398.9 +UniRef50_UPI00037713A6 hypothetical protein 3.0419894852e-06 1.05508197765e-05 3031406932.31 +UniRef50_UPI00016C3B98 serine threonine protein kinase 3.44119985311e-06 4.47586506109e-06 417707041.231 +UniRef50_B9KTH1 Transcriptional regulator, TetR family 0.00155322168978 0.00192006140307 1.48097693885e+11 +UniRef50_G2JGS2 ABC type dipeptide transport system, periplasmic component 0.000318071736837 0.0043397590703 1.62360452817e+12 +UniRef50_P0A349 GTP sensing transcriptional pleiotropic repressor CodY 0.00621486404786 0.00274243345645 -1.40186284127e+12 +UniRef50_Q9CPL9 Probable uracil permease 0.00133975908274 0.00400057022574 1.07420211025e+12 +UniRef50_I0DAK7 UDP glucose GDP mannose dehydrogenase family protein 0.0108976994247 0.00230629229535 -3.46845648654e+12 +UniRef50_B3WA65 Probable potassium transport system protein kup 0.000129792056282 9.45517732816e-05 -14226934694.2 +UniRef50_D2Q0P5 1.15145700096e-05 5.85915982714e-05 19005574009.4 +UniRef50_K2FFC0 0.000131455139547 0.000557404254872 1.7196088484e+11 +UniRef50_H0B2B9 0.0109977344134 0.00309004981378 -3.19242931107e+12 +UniRef50_Q117D2 Formamidopyrimidine DNA glycosylase 4.80485102739e-06 1.09680837115e-05 2488172665.95 +UniRef50_UPI00039DBFBF MULTISPECIES 1.15303042107e-05 6.014540962e-06 -2226781309.53 +UniRef50_G2T8N1 0.00410414141744 0.000810929493278 -1.32951006604e+12 +UniRef50_UPI0002557290 2,3 dihydroxybenzoate 2,3 dehydrogenase 1.6664444401e-05 2.52742763686e-05 3475894819.84 +UniRef50_M9TV63 0.000294144926378 0.000460233826278 67052127029.6 +UniRef50_A4EKM3 5.98588638428e-05 5.55798901992e-05 -1727474168.83 +UniRef50_Q3JMQ9 5.02290349863e-05 0.000135798517315 34545450071.7 +UniRef50_U3T560 0.000218412983181 0.00559418576684 2.17026544091e+12 +UniRef50_G6Y004 0.00029103906 6.44738758116e-05 -91467145124.2 +UniRef50_A6LWZ4 Transcriptional regulator, XRE family 0.000111134245983 0.00233306378487 8.97020220991e+11 +UniRef50_A8ALR8 Carnitine operon protein CaiE 0.00835468738804 0.0105478625622 8.85411731094e+11 +UniRef50_UPI0001FFE0D7 large conductance mechanosensitive channel protein 1.05354747894e-05 2.46353667449e-05 5692299407.57 +UniRef50_UPI000262A240 polar amino acid ABC transporter permease 7.11716380304e-06 3.06577852564e-05 9503637756.65 +UniRef50_P57011 Signal recognition particle receptor FtsY 0.000232896301478 0.00267137741287 9.84444748196e+11 +UniRef50_J3XF98 Response regulator aspartate phosphatase 1.57214837176e-05 0.000177013010107 65115368472.8 +UniRef50_UPI00036D551C hypothetical protein 4.24201385311e-05 0.000474332582522 1.74368353801e+11 +UniRef50_P20925 Frd operon probable iron sulfur subunit A 0.000240436935571 0.00116572383629 3.73549676367e+11 +UniRef50_B0V8H4 Outer membrane lipoprotein 0.000654599980668 0.00229743613671 6.6323311606e+11 +UniRef50_UPI0002F817F3 hypothetical protein 1.34716177885e-05 1.87569456925e-05 2133751733.11 +UniRef50_UPI0003D0DACE 2.66191742024e-05 8.26985916499e-06 -7407843652.01 +UniRef50_UPI0002628372 ABC transporter permease 7.01591137044e-06 9.1167597641e-05 33973068404.8 +UniRef50_UPI00046E6C82 hypothetical protein 0.00018876178714 2.53766985984e-05 -65960565204.9 +UniRef50_Q8TMA8 0.000571027154808 0.00345213122577 1.16313706857e+12 +UniRef50_UPI00030EAE4B hypothetical protein 9.31604913579e-06 5.92884746189e-05 20174481398.1 +UniRef50_Q5HNQ0 0.0230934674574 0.00860544904211 -5.84899082224e+12 +UniRef50_C5N6Q3 0.00756979456186 0.000864341576184 -2.70707365548e+12 +UniRef50_B9KQJ6 Flagellar hook capping protein 0.0055570871755 0.00275216540885 -1.13238133746e+12 +UniRef50_C5N6Q5 0.000712237714815 0.000322779077901 -1.57229230917e+11 +UniRef50_UPI0002FA4ABF hypothetical protein 1.63812690171e-05 9.94876450826e-06 -2596881005.93 +UniRef50_UPI0004628FA4 hypothetical protein 7.83942943586e-05 5.5462092872e-05 -9258011149.9 +UniRef50_P32718 D allose kinase 0.00422505255531 0.000762029008334 -1.39806510199e+12 +UniRef50_L7MJF8 5.05872473975e-05 4.73908548811e-05 -1290422883.02 +UniRef50_UPI0003639553 hypothetical protein, partial 3.05847426813e-06 2.39833486033e-05 8447628546.2 +UniRef50_G8B073 0.000774391466711 0.00129855481407 2.11611175536e+11 +UniRef50_P0A8Y3 Alpha D glucose 1 phosphate phosphatase YihX 0.00622026159926 0.000295809721398 -2.39177392429e+12 +UniRef50_R9SMW4 Transporter ExbD Tol family 0.00239157124303 0.000466289534524 -7.77259851589e+11 +UniRef50_V8G3J5 0.000436309142546 0.000282599717884 -62054380962.8 +UniRef50_D4LWG1 ATPase components of various ABC type transport systems, contain duplicated ATPase 0.00350717226372 0.000594922189873 -1.17571109214e+12 +UniRef50_Q07UN5 Leucine tRNA ligase 1.56642599484e-06 2.10485024268e-06 217368476.062 +UniRef50_P41441 Putative type II secretion system protein F 0.00168466941769 0.0016544779646 -12188660103.2 +UniRef50_Q8EPE6 Formamidopyrimidine DNA glycosylase 7.11819513252e-06 9.37007812337e-06 909112797.118 +UniRef50_Q87MG2 Ribonuclease HI 4.7919820593e-05 2.4437233428e-05 -9480208602.26 +UniRef50_P0A2J8 Spermidine putrescine transport system permease protein PotB 0.0025142441585 0.000828959172479 -6.80370229629e+11 +UniRef50_F3WY50 2.35959591489e-05 2.1645342408e-05 -787487915.06 +UniRef50_X7TVE6 0.000169561674168 8.01204318782e-05 -36108527079.9 +UniRef50_A0A023WMY2 Amino acid transporter 0.00211417757871 0.00138376435324 -2.948767823e+11 +UniRef50_B2SB84 Zinc containing alcohol dehydrogenase superfamily 0.00091854574269 0.000417987402093 -2.02081544641e+11 +UniRef50_UPI000471E251 hypothetical protein 6.72164099799e-05 6.87707667232e-05 627512891.372 +UniRef50_UPI0004742581 hypothetical protein, partial 7.34301894932e-05 1.69442846507e-05 -22804052944.9 +UniRef50_UPI000371C1F0 hypothetical protein 7.08006868148e-06 2.69391720763e-05 8017363739.08 +UniRef50_L1JWK7 1.70422559791e-05 2.72199399273e-05 4108855904.12 +UniRef50_M1X9S4 0.00136171667226 0.000302521418897 -4.27610121569e+11 +UniRef50_Q98D52 Peptide deformylase 6.06404125177e-05 7.8806581022e-05 7333905149.14 +UniRef50_B0VM85 0.00011796437152 0.00487379042999 1.91998534035e+12 +UniRef50_Q9L0Q7 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.000297233062088 0.00327866215539 1.20363951121e+12 +UniRef50_A6LWL7 Glycosyl transferase, family 2 0.000210103733117 0.000608542521751 1.60854628365e+11 +UniRef50_Q98DM9 Ribosomal RNA small subunit methyltransferase I 4.01160229619e-05 1.5082016923e-05 -10106535439.7 +UniRef50_Q3J1K3 Cellulose synthase like protein 0.00446604179901 0.000394399866942 -1.64377181264e+12 +UniRef50_A7IBU8 LigA 0.000196793621444 4.46584471011e-05 -61418836790.8 +UniRef50_P0AGM1 UPF0118 inner membrane protein YhhT 0.00258692665867 0.00101684159176 -6.33862608622e+11 +UniRef50_I6WV66 Transcriptional regulator 0.000122560385996 0.00033432079833 85490277051.7 +UniRef50_C1DCM4 Hydroxyethylthiazole kinase 1.12570303711e-05 9.41087477955e-06 -745315667.185 +UniRef50_UPI00046F396F hypothetical protein 0.000295356594739 0.000195190639787 -40438225188.6 +UniRef50_S3L5X6 4.34331037458e-05 0.000197774059711 62309337899.6 +UniRef50_K8EUS8 6.02973776707e-06 0.00160194392297 6.44290140635e+11 +UniRef50_Q8K7S6 Ribonuclease J 2 0.000519571685317 0.00473855465759 1.70325519865e+12 +UniRef50_P45848 0.00287596320364 0.00109582558109 -7.18663402969e+11 +UniRef50_Q59650 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.000111572213456 0.000125134197123 5475139230.62 +UniRef50_UPI000382C69D hypothetical protein 4.93171770119e-05 0.000163079356461 45927187862.5 +UniRef50_Q9Z515 Sporulation transcription regulator WhiA 0.000173689872173 0.00671002286067 2.63879783728e+12 +UniRef50_Q8X8Q3 0.00203545767749 0.000353836440799 -6.78891129065e+11 +UniRef50_R6XPV2 0.000209522808884 0.000293934127809 34077885293.4 +UniRef50_G7QNB5 ABC transporter permease protein 0.014729546539 0.00196490360154 -5.15324299365e+12 +UniRef50_A7Z7M0 Argininosuccinate synthase 0.0212370251456 0.00584811491052 -6.21269190507e+12 +UniRef50_B2W926 Predicted protein 2.93586788875e-05 0.000227166696312 79857524011.4 +UniRef50_W8N413 Lytic transglycosylase 0.000613600488153 0.000248550477328 -1.47375169037e+11 +UniRef50_A4CBF5 1.32776770007e-05 1.95166864731e-05 2518764685.26 +UniRef50_UPI000237DF5D cobalamin adenosyltransferase family protein 3.14085390483e-05 1.59405553876e-05 -6244614817.33 +UniRef50_P62221 Protein RecA 0.0249784217034 0.0070800593789 -7.22578850801e+12 +UniRef50_C8RX55 2.65600949801e-05 8.08480424375e-06 -7458701587.6 +UniRef50_T1JH80 1.22257321865e-06 9.74880742766e-07 -99996492.0429 +UniRef50_A3DJK3 Energy coupling factor transporter ATP binding protein EcfA1 2.42264085212e-05 1.00705557871e-05 -5714891460.6 +UniRef50_P0A9P7 ATP dependent RNA helicase DeaD 0.00784208772218 0.00156345348448 -2.53476168927e+12 +UniRef50_D6EHT9 Nitrate reductase subunit beta NarH2 2.1620539244e-05 1.01530060791e-05 -4629583861.13 +UniRef50_M1MQI8 Monosaccharide ABC transporter substrate binding protein, CUT2 family 0.00108386420635 0.0012867077159 81890413975.1 +UniRef50_Q9CLL7 Bifunctional protein PyrR 8.96691382823e-06 8.59545839347e-05 31080867166.9 +UniRef50_S5CVX5 0.000108442606287 0.00411327509227 1.61680001941e+12 +UniRef50_D9SR17 GCN5 related N acetyltransferase 0.0017813189581 0.00218181243891 1.61684132811e+11 +UniRef50_C5MZ73 0.00975885037427 0.00281695741394 -2.80252737469e+12 +UniRef50_M9VQH6 MarR family transcriptional regulator 0.000330162672461 0.00439814740684 1.64229535706e+12 +UniRef50_O25001 Beta lactamase HcpA 0.000363260863075 0.00673722934297 2.57324929272e+12 +UniRef50_Q8FL94 DnaJ like protein DjlA 0.00386936121043 0.00123333728707 -1.06419520551e+12 +UniRef50_UPI0003B6B2AB nickel ABC transporter permease 4.60357662078e-05 6.93050738469e-05 9394105040.42 +UniRef50_A6WVV0 AMP dependent synthetase and ligase 0.000407168992871 0.00583266953428 2.19034114695e+12 +UniRef50_Q7VGP6 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000103990630532 0.00468624729504 1.84991324608e+12 +UniRef50_C5Y6L8 0.000334753322404 4.29683419841e-05 -1.177971772e+11 +UniRef50_D8LGM3 1.99146489782e-06 1.24146286499e-05 4207959113.33 +UniRef50_F0P516 Replication initiation protein, truncated 0.219429720121 0.0852047566562 -5.41882648763e+13 +UniRef50_Q895N8 Phosphopantetheine adenylyltransferase 8.71225288318e-05 1.573147295e-05 -28821445326.3 +UniRef50_E3EY08 Glutathionylspermidine synthase 0.00696088495222 0.00079392691396 -2.48967663713e+12 +UniRef50_E2XT92 Long chain fatty acid transporter 0.000883718489308 0.000802132812382 -32937138943.9 +UniRef50_P37338 HTH type transcriptional repressor CsiR 0.00359283916966 0.000952634532885 -1.06588301082e+12 +UniRef50_Q52881 Chemotaxis protein CheW 0.0181141240439 0.00535184842335 -5.15228727877e+12 +UniRef50_A8LLG1 1.92225614363e-05 1.53880859677e-05 -1548024800.98 +UniRef50_UPI00047C9DA6 hypothetical protein 8.32481204106e-06 1.16471279208e-05 1341259690.05 +UniRef50_P51057 Succinate dehydrogenase hydrophobic membrane anchor subunit 3.96101928542e-05 0.000155482499379 46779072057.2 +UniRef50_D9PYS7 Predicted single stranded DNA specific exonuclease 0.00391804148773 0.000181919941603 -1.50831811554e+12 +UniRef50_S9SJ05 0.000745797889687 0.000130438261925 -2.48428233039e+11 +UniRef50_E8TFR7 TRAP transporter, 4TM 12TM fusion protein 0.00625654657014 0.00169769241938 -1.84046536409e+12 +UniRef50_A6M215 ATPase, BadF BadG BcrA BcrD type 0.000474958740952 0.00119896792092 2.92291390545e+11 +UniRef50_J9P613 2.02585331461e-05 2.94931492196e-05 3728127830.35 +UniRef50_K5P2M6 4.73633612113e-05 0.00077228955095 2.92661598642e+11 +UniRef50_D8GSG1 Predicted transcriptional regulator, AraC family 0.000302796247737 0.00162635393454 5.3433648004e+11 +UniRef50_UPI0002F0964C hypothetical protein 3.42915877634e-05 5.14111931861e-05 6911394790.33 +UniRef50_F2QGL2 Competence protein 1.19670167055e-05 0.000788495367634 3.13494024344e+11 +UniRef50_F5X6K5 ABC transport system ATP binding protein 0.000625577626837 0.000899658995962 1.10650012072e+11 +UniRef50_Q1Q9B8 Single stranded DNA binding protein 0.000390502747092 0.0103297203555 4.01258411643e+12 +UniRef50_A4WVV8 Ferrochelatase 0.0142166060705 0.00243006482229 -4.75837133902e+12 +UniRef50_Q9RSX3 0.000725934593951 0.0151140807316 5.80867115816e+12 +UniRef50_Q9RSX2 0.000161779709512 0.0465547427678 1.87294084923e+13 +UniRef50_UPI000376B804 hypothetical protein 0.000379449078029 0.000126359388452 -1.02175413442e+11 +UniRef50_A0A023X2K9 Nitroreductase family 0.000397353672473 0.0387526127649 1.54844887676e+13 +UniRef50_UPI00036A2930 hypothetical protein 0.000216786443294 9.3647601387e-05 -49712661561.4 +UniRef50_Q8Y213 Glycine tRNA ligase beta subunit 0.000190792034906 0.0016507512256 5.89403440995e+11 +UniRef50_UPI000470A4B9 5 methyltetrahydrofolate homocysteine methyltransferase 0.00164355857136 0.000150269598844 -6.02859082923e+11 +UniRef50_E3HK42 Lysine specific permease 2 0.00895196411539 0.0153483084517 2.58228270054e+12 +UniRef50_UPI0003B67722 30S ribosomal protein S15 0.000109369899132 5.34020438687e-05 -22594909972.6 +UniRef50_A6LS13 Sugar isomerase 0.00115527821766 0.000684977584469 -1.89866136857e+11 +UniRef50_B8JF24 Cupin 2 conserved barrel domain protein 0.000106706368685 3.33916215777e-05 -29598063080.3 +UniRef50_A5UL58 Putative DNA helicase II, UvrD 0.000884829174592 0.000826856766784 -23404172433.5 +UniRef50_I6SXV6 Transmembrane protein 0.00677777313624 0.00197745414317 -1.93794768404e+12 +UniRef50_Q7R6Y8 0.00011095544113 0.00216664253068 8.29906104169e+11 +UniRef50_J0I3X2 Cag pathogenicity island protein Cagb 0.000106658669702 0.00338849253255 1.32491660306e+12 +UniRef50_A3LE40 Glycerol kinase 0.000578120848726 0.000117034361371 -1.86146273113e+11 +UniRef50_M1CWM3 3.0930972113e-06 8.62684289458e-06 2234041039.04 +UniRef50_A5UP04 Multimeric flavodoxin 0.00942140029875 0.00925054564337 -68976120999.3 +UniRef50_A6LYF1 0.000558779583827 0.000224007614567 -1.35151552104e+11 +UniRef50_B2TS40 Protein MurJ homolog 0.00034134121422 0.000814935255896 1.91195726277e+11 +UniRef50_A0A031I8F2 3.77092415845e-05 3.39168486341e-05 -1531035571.97 +UniRef50_UPI0003B74B63 aldolase 2.93763442465e-05 4.56357029522e-06 -10017221331.1 +UniRef50_UPI00047054F2 hypothetical protein, partial 1.24095323454e-05 9.56799856411e-06 -1147162057.05 +UniRef50_B1Y0J8 Non canonical purine NTP pyrophosphatase 6.39526934465e-05 1.4219636323e-05 -20077845454.0 +UniRef50_Q8K9W5 Phosphate acetyltransferase 3.33175437022e-06 6.37894867006e-06 1230189732.12 +UniRef50_UPI0002486152 MerR family transcriptional regulator 0.000517453224534 6.24837777437e-05 -1.83676748772e+11 +UniRef50_B9KUZ2 Phage portal protein, lambda family 0.00365716099605 0.000128212751885 -1.42467971123e+12 +UniRef50_UPI0004745B47 RNA directed DNA polymerase, partial 1.15141999224e-05 5.97308129621e-05 19465638368.5 +UniRef50_UPI000387178C PREDICTED 1.08822213128e-05 1.41920044072e-05 1336200050.82 +UniRef50_UPI000410CB45 chemotaxis protein 0.000141618129636 7.77385847604e-05 -25788956156.4 +UniRef50_R4U7U8 Phosphoribosylglycinamide formyltransferase 0.000398598357149 0.00502328840371 1.86704412312e+12 +UniRef50_V4I3S7 Integral membrane protein 2.22021392152e-05 0.000100088149566 31443538147.4 +UniRef50_L8XYT3 5.8561959107e-06 9.46652545255e-06 1457534339.77 +UniRef50_UPI000265943A PREDICTED 6.73521922903e-06 6.22339174143e-06 -206631037.574 +UniRef50_A5VYM5 Outer membrane porin 0.000712052542299 0.000135259559627 -2.32858405151e+11 +UniRef50_P45867 Acyl CoA dehydrogenase 0.000321602418365 0.00639429722542 2.45162141395e+12 +UniRef50_I1E8F4 0.000935297887875 0.000253518831711 -2.75242571343e+11 +UniRef50_P49323 Non heme chloroperoxidase 2.15748109197e-05 0.00568611399293 2.28684397949e+12 +UniRef50_UPI00046F109B isoleucyl tRNA synthase 3.30833019063e-06 8.14625551568e-06 1953129821.74 +UniRef50_B1IIB8 Sensor histidine kinase 0.000167029198609 0.00160599260059 5.80927183446e+11 +UniRef50_B9KWJ6 Transcriptional regulator, GntR family 0.00780084468892 0.00050194971513 -2.94665346843e+12 +UniRef50_D1APR3 Deoxyribose phosphate aldolase 0.000236421287378 0.00111057233113 3.52905503402e+11 +UniRef50_A9ANN8 AMP nucleosidase 0.00924485626481 0.00295668899393 -2.53861029174e+12 +UniRef50_S5RJR0 0.000900629909451 0.000174228144654 -2.93257306401e+11 +UniRef50_UPI00037E9476 hypothetical protein 2.74504301606e-06 3.2550825026e-06 205909199.605 +UniRef50_D5ALJ5 Phage integrase 0.00955352880636 0.00347152709262 -2.45537872639e+12 +UniRef50_A6LVF9 Response regulator receiver and SARP domain protein 0.00101801246464 0.000663093745618 -1.43285042212e+11 +UniRef50_A5UM43 Energy converting hydrogenase B, subunit K, EhbK 0.00447485495977 0.000645790574129 -1.54584028039e+12 +UniRef50_UPI00046FBB36 hypothetical protein, partial 8.61911705199e-05 9.58202374981e-05 3887372501.04 +UniRef50_X1UX68 Marine sediment metagenome DNA, contig 0.000109323446385 3.03563092429e-05 -31880002300.0 +UniRef50_Q8CNT2 Phage phi PVL amidase like protein 0.00127206490012 0.00716227120475 2.37794856614e+12 +UniRef50_O05100 Peptide deformylase 1 1.02396419002e-05 1.35541607587e-05 1338111936.9 +UniRef50_UPI0004622CC9 hypothetical protein TRAVEDRAFT_74361 7.58527652731e-05 7.22163702643e-06 -27707228671.8 +UniRef50_UPI00047DE100 hypothetical protein 1.65016345996e-05 3.44549679833e-05 7247980999.17 +UniRef50_UPI00037530DA hypothetical protein 3.02183990295e-05 3.05098368141e-05 117657009.987 +UniRef50_D5AMF4 ABC transporter, periplasmic substrate binding protein 0.00740140719947 0.00179561635316 -2.26312655544e+12 +UniRef50_A6LZL2 0.000580937019762 0.00151826894179 3.78412399279e+11 +UniRef50_UPI000475B6F2 4 alpha glucanotransferase 1.09153834079e-05 0.000605308000484 2.39963593531e+11 +UniRef50_I4B854 Pirin domain protein 0.00032713973769 0.000861831578614 2.15861657588e+11 +UniRef50_B9KW74 DMSO membrane protein 0.000496973199177 0.000243351804232 -1.02390069424e+11 +UniRef50_UPI00036F9198 DNA invertase, partial 0.000219688036698 0.000217341483536 -947332306.945 +UniRef50_O66849 Anthranilate synthase component 1 2.71614728087e-05 2.26486541938e-05 -1821880253.35 +UniRef50_G2I7Y6 Transposase 0.000105079604605 3.70826446056e-05 -27451207168.3 +UniRef50_UPI0003B53587 GntR family transcriptional regulator 6.60938519156e-05 2.30752970623e-05 -17367118491.3 +UniRef50_F3SV61 4.38530721135e-05 5.29308980956e-05 3664829746.43 +UniRef50_F7YWV7 Phosphoribosylformylglycinamidine synthase, purS 2.62768944782e-05 2.76469710546e-05 553116726.623 +UniRef50_P63459 Malonyl CoA acyl carrier protein transacylase 2.29576325689e-05 6.49321669801e-05 16945634627.3 +UniRef50_UPI000359C10F PREDICTED 8.81385521473e-06 2.11432831952e-05 4977541374.82 +UniRef50_Q1IZN6 Membrane associated PIN like nuclease 0.000111025290843 0.0196895551073 7.9040927425e+12 +UniRef50_A3X2R1 0.000171462759804 1.17956751058e-05 -64459561428.0 +UniRef50_D9RH26 Site specific DNA methyltransferase 0.0186619635287 0.00359423619915 -6.08302642477e+12 +UniRef50_UPI000226002C hypothetical protein 0.000339514536961 4.1210001379e-05 -1.20429201623e+11 +UniRef50_Q1WSV7 Redox sensing transcriptional repressor Rex 0.013285517983 0.00918448931643 -1.65563559798e+12 +UniRef50_R5MZ93 7.78036730234e-07 0.000184692765612 74248632937.2 +UniRef50_A4XV16 TRAP dicarboxylate transporter, DctP subunit 0.00113644968715 0.000472027018757 -2.68235584613e+11 +UniRef50_A6LTW4 0.000275537218136 0.00043007287164 62387939685.3 +UniRef50_A6LTW3 0.000500744598622 0.000574929415443 29949320900.7 +UniRef50_S2TB06 Protein chain release factor B 0.000994069041706 0.000120016208388 -3.52865854645e+11 +UniRef50_Q06801 4 alpha glucanotransferase, chloroplastic amyloplastic 7.78501768437e-06 0.000479983725298 1.90632412794e+11 +UniRef50_A6LTW8 0.000636445321137 0.00311681033554 1.00135379381e+12 +UniRef50_B9E4P1 0.00030045898646 0.00032752979006 10928815609.4 +UniRef50_F4DT19 Integral membrane sensor hybrid histidine kinase 0.000477945694102 0.000305104535311 -69778096803.5 +UniRef50_UPI0001B469EF DNA recombination protein RecA, partial 0.000172406829549 0.000278371352803 42779178368.6 +UniRef50_P03030 Transcriptional activator protein LysR 0.00234564869706 0.00111818786032 -4.9554100243e+11 +UniRef50_P98008 Nitric oxide reductase subunit B 0.0115524648824 0.00197562615567 -3.86628731501e+12 +UniRef50_UPI000468BEB6 hypothetical protein 6.48858194459e-06 2.87618385071e-05 8991986997.88 +UniRef50_P63353 Sulfate thiosulfate import ATP binding protein CysA 0.000105477001375 2.93885309673e-05 -30717849214.1 +UniRef50_UPI000376EAD9 resolvase 3.45469618252e-05 1.92979332521e-05 -6156219961.58 +UniRef50_Q7UE67 3.88231862867e-06 4.84508997405e-05 17992883112.8 +UniRef50_UPI00016C4079 sodium hydrogen exchanger family protein 8.28076051333e-06 6.47461040956e-06 -729164960.846 +UniRef50_P39356 0.00277116509995 0.00147919686197 -5.21583431906e+11 +UniRef50_P39357 0.0340379965054 0.00565478683134 -1.14586500466e+13 +UniRef50_Q8D1Y6 Nucleoside diphosphate kinase 6.00934656132e-05 2.03257832336e-05 -16054701381.0 +UniRef50_Q9USZ1 Elongation factor G, mitochondrial 9.01198402455e-06 3.88156926285e-06 -2071211396.57 +UniRef50_P39353 0.00224877196048 0.00914534370761 2.78423064477e+12 +UniRef50_P39351 0.00155212226196 0.000575292282856 -3.94358249616e+11 +UniRef50_D5ARH0 Biotin transport ATP binding protein BioM 0.000225140748821 2.47771374569e-05 -80889248645.6 +UniRef50_C5WG38 0.000856232715292 0.000305577555117 -2.22306245461e+11 +UniRef50_Q8CU46 Alginate lyase 0.0101048716863 0.00498971374503 -2.06505203094e+12 +UniRef50_UPI0001912A18 adenylosuccinate lyase, partial 2.68019224664e-05 2.58574382721e-05 -381299859.363 +UniRef50_Q8DVI5 0.00173211342997 0.00322153078716 6.01296064304e+11 +UniRef50_P53597 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 4.3035404292e-05 8.06553301431e-05 15187625714.5 +UniRef50_Q8RCX1 K insensitive pyrophosphate energized proton pump 0.000431607138667 0.00130398187341 3.52188385658e+11 +UniRef50_A9DEP6 9.31808403366e-05 9.85185169912e-05 2154885566.12 +UniRef50_UPI0003AD3579 hypothetical protein 1.88580987405e-05 2.45772717178e-05 2308900313.08 +UniRef50_F8JJ47 1.43529559755e-05 5.88230709542e-06 -3419704899.44 +UniRef50_C3L318 Precorrin 2 C methyltransferase 0.000479855070575 0.0020546533804 6.35765402627e+11 +UniRef50_P44421 Methionine aminopeptidase 4.3842782238e-05 0.00721671165618 2.89577518541e+12 +UniRef50_E6MUY1 Amino acid carrier family protein 0.00019649594095 0.00359311770453 1.37125788719e+12 +UniRef50_UPI0003B5FC66 ABC transporter ATP binding protein 0.000194517563835 3.37717805397e-05 -64895045288.8 +UniRef50_UPI00047BD4E4 hypothetical protein 2.43668381673e-06 2.1902132905e-06 -99503175.9725 +UniRef50_A0A059MR78 Nitrogen fixation protein NifU 0.000891699186261 0.00324111206341 9.48486809044e+11 +UniRef50_UPI0002E2A0B8 hypothetical protein 6.69394705665e-05 4.21525309445e-05 -10006791695.4 +UniRef50_S5S0J3 DnaJ family heat shock protein 8.24717421085e-06 1.28142056539e-05 1843766637.34 +UniRef50_B1IK08 Argininosuccinate synthase 0.000316564767207 0.00173881625666 5.74180379279e+11 +UniRef50_O33407 Esterase EstA 0.000717375093178 0.00020794297274 -2.05663998456e+11 +UniRef50_UPI00047D5868 hypothetical protein 3.75638531654e-06 7.44710947036e-06 1489990631.18 +UniRef50_UPI0004763C22 CREA protein 0.000237057051715 0.000130104305279 -43178136194.0 +UniRef50_R7PWQ3 Minor teichoic acid biosynthesis protein GgaB 0.00358427962013 0.000283616829334 -1.33251807233e+12 +UniRef50_K0WKW0 Putrescine binding periplasmic protein 0.00204970957042 0.00026565220857 -7.20245849825e+11 +UniRef50_D4HAV0 0.000490241543964 0.00133225581291 3.39931493051e+11 +UniRef50_I0C5C5 Peptidoglycan endo beta N acetylglucosaminidase 0.01416976684 0.00399622705984 -4.10718285264e+12 +UniRef50_X1M7F5 Marine sediment metagenome DNA, contig 1.26461843855e-05 2.16754146203e-05 3645211046.9 +UniRef50_F9L838 Phenol soluble modulin beta 1 family protein 0.00149007627177 0.00370760454945 8.95243377831e+11 +UniRef50_E3ZCM1 Internalin A 5.98127674244e-06 3.43789790143e-06 -1026793248.88 +UniRef50_R7AAF8 9.74116746711e-05 6.81435219618e-05 -11815912409.4 +UniRef50_F7QQI7 N acetylneuraminate synthase 0.00352067091798 0.00162313600065 -7.66058131498e+11 +UniRef50_Q1YUP9 5.66670185165e-05 1.07169596983e-05 -18550602615.5 +UniRef50_UPI000471DB3E hypothetical protein 1.3612593653e-05 1.47388679423e-05 454690751.53 +UniRef50_V4JMQ3 7.59982990658e-05 6.87441037177e-05 -2928607681.02 +UniRef50_G7MAU3 Cobalt ABC transporter, inner membrane subunit CbiQ 0.000127816926252 0.000414873607316 1.15888304727e+11 +UniRef50_UPI000306B7B0 hypothetical protein 0.000136462009784 8.90809707896e-06 -51495079821.5 +UniRef50_F2ABZ8 0.000355498851954 8.283445715e-05 -1.10077962151e+11 +UniRef50_R5XW73 Glycerol 3 phosphate cytidyltransferase 0.00855074222465 0.000646678916486 -3.19096735127e+12 +UniRef50_Q039P7 tRNA specific 2 thiouridylase MnmA 0.00732019289523 0.0124862816118 2.08561340992e+12 +UniRef50_UPI0003AD23FF hypothetical protein 4.06983453619e-05 0.000787746183197 3.01592379442e+11 +UniRef50_Q0VM47 Type II secretion system protein, putative 0.000233718436937 0.0088389869067 3.47405247976e+12 +UniRef50_Q47BQ9 Tripartite ATP independent periplasmic transporter, DctQ component 0.00764418838133 0.00291980844924 -1.90729015325e+12 +UniRef50_P76630 Inner membrane protein YgaZ 0.00355843919074 0.001808541622 -7.06455122158e+11 +UniRef50_Z5X8T7 Pyridine nucleotide transhydrogenase 8.1405552264e-05 6.31343540901e-05 -7376306915.62 +UniRef50_G8RA57 Tandem lipo protein within Pathogenicity island 1.41899657622e-05 2.80650802923e-05 5601554002.6 +UniRef50_E6JNN1 0.00166646925468 0.000563644714229 -4.45223800159e+11 +UniRef50_B7GZW3 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000116208749974 0.00833815779723 3.31930172504e+12 +UniRef50_UPI0003B3F639 thioredoxin 1.76473952329e-05 6.50077638984e-05 19119962007.3 +UniRef50_B6ZQQ2 Inner membrane protein YicO 0.000114044105391 0.000244063392719 52490381810.4 +UniRef50_T1U7S9 TrbL VirB6 plasmid conjugal transfer family protein 0.00019525137354 0.0029708647117 1.12054916522e+12 +UniRef50_P74309 Fructose bisphosphate aldolase class 1 0.0251530955936 0.0131061484868 -4.86350037968e+12 +UniRef50_Q5P706 Arginine biosynthesis bifunctional protein ArgJ 5.65379877053e-05 0.00453907614432 1.80965566075e+12 +UniRef50_G8VD08 Amino acid carrier protein 0.000179029881523 0.00672715510309 2.64355850648e+12 +UniRef50_Q88PJ9 Type IV pili biogenesis protein PilF 1.3149674167e-05 0.000649540969014 2.56918975129e+11 +UniRef50_B9KMF9 0.0017508937293 2.1564357708e-05 -6.98151488569e+11 +UniRef50_UPI0004572EA5 PREDICTED 3.5391665733e-05 9.42746626859e-06 -10482065940.3 +UniRef50_F5XQJ4 0.000775656141478 0.00223027598747 5.87247882019e+11 +UniRef50_C1D2J4 Putative Diguanylate cyclase with GAF sensor 4.82616860866e-06 0.00282720723132 1.13942986953e+12 +UniRef50_B9KMF2 3.33930059447e-06 0.000501954739708 2.0129717147e+11 +UniRef50_Q73WQ0 0.000244901483682 0.000339874548272 38341791625.5 +UniRef50_O31605 Oligoendopeptidase F homolog 0.0238633223081 0.00545540402824 -7.43150250015e+12 +UniRef50_Q04F01 Adenine phosphoribosyltransferase 0.0352800527814 0.00613083508048 -1.1767896887e+13 +UniRef50_UPI0003346C39 PREDICTED 9.34383507123e-05 3.29543263994e-06 -36391802203.8 +UniRef50_UPI00034AF933 glycogen debranching protein 9.29581018675e-06 1.66210552484e-05 2957291322.25 +UniRef50_Q9LAM9 Peptide methionine sulfoxide reductase MsrA MsrB 4.20241421468e-06 0.00216399217451 8.71933629834e+11 +UniRef50_Q3Z6G6 Anthranilate phosphoribosyltransferase 6.31159246716e-06 7.89124547717e-06 637725304.663 +UniRef50_P40510 D 3 phosphoglycerate dehydrogenase 2 2.38637578147e-05 2.45644127012e-05 282862975.682 +UniRef50_X1MDH4 Marine sediment metagenome DNA, contig 1.17311309431e-05 3.73967078264e-05 10361508339.8 +UniRef50_K7SNQ8 RfbX family protein involved in the export of O antigen and teichoic acid 9.59710141129e-05 0.00647120080121 2.57375849792e+12 +UniRef50_A4EKV5 0.000130886118624 4.63296112428e-05 -34136499654.8 +UniRef50_UPI0002E79C21 hypothetical protein 0.000115895761955 0.000211795479862 38715892940.9 +UniRef50_R8XI05 Taurine binding periplasmic protein 0.000672489310732 0.000754000098364 32906905216.9 +UniRef50_Q9RYQ5 Resolvase, putative 0.000674082122953 0.361753596131 1.45772230749e+14 +UniRef50_Q3JXV9 0.000196687193883 1.89265081635e-05 -71764170194.1 +UniRef50_X1MF22 Marine sediment metagenome DNA, contig 5.44671356808e-05 0.000754669389664 2.82680242381e+11 +UniRef50_V6EZW5 Putative chromosomal replication initiator, DnaA homolog protein 5.91905164251e-05 1.02598448589e-05 -19753912558.1 +UniRef50_UPI0004701EC5 transcriptional regulator 0.000111709601932 1.35579980213e-05 -39625006954.4 +UniRef50_UPI000370F20A DNA polymerase I, partial 3.06884607693e-06 0.000114981045429 45180328195.5 +UniRef50_UPI00039553CA PREDICTED 4.08219086886e-06 3.44167776329e-05 12246444923.9 +UniRef50_UPI000364FAD7 hypothetical protein 4.76555787286e-06 3.60160714458e-05 12616215816.3 +UniRef50_A0RGP9 DNA mismatch repair protein 0.000527639869078 0.00117328730425 2.60655792564e+11 +UniRef50_Q9P6J4 0.00165767830291 0.000461925744776 -4.82739981251e+11 +UniRef50_UPI000369C449 aminotransferase, partial 0.000264024772165 1.21541360509e-05 -1.01683266599e+11 +UniRef50_M9R9X0 0.00199934724674 0.000318044784504 -6.78762435908e+11 +UniRef50_Q9PB92 0.000107434141846 4.14186265777e-05 -26651273615.3 +UniRef50_Q9RYT4 Homoprotocatechuate 2,3 dioxygenase, putative 0.000312398971088 0.0580886041364 2.3324963019e+13 +UniRef50_UPI00047C50D0 hypothetical protein 1.16764988606e-05 7.65849700846e-06 -1622116654.14 +UniRef50_A0KKD3 Adenine phosphoribosyltransferase 4.94830160703e-05 3.75798315712e-05 -4805461650.79 +UniRef50_P22255 3,5 bisphosphate nucleotidase CysQ 0.00394678988047 0.000360875810829 -1.44767751403e+12 +UniRef50_UPI000288FCAE MULTISPECIES 9.33792368141e-05 3.64279342212e-05 -22991939727.8 +UniRef50_UPI0003795D58 hypothetical protein 0.000171996264047 3.42776244782e-05 -55598704791.8 +UniRef50_S1U9Z1 NrdI protein 3.82323857287e-05 3.70071570311e-05 -494639860.468 +UniRef50_C1L2U0 UPF0176 protein Lm4b_01393 0.0160934807047 0.0186977141859 1.0513610139e+12 +UniRef50_X1HZW5 Marine sediment metagenome DNA, contig 1.46499965405e-05 3.34288917627e-05 7581270444.16 +UniRef50_Q5E530 Permease 1.14683465747e-05 1.62295239117e-05 1922145717.16 +UniRef50_L7WWR2 Anaerobic ribonucleoside triphosphate reductase activating protein 0.0289332005253 0.00499952525389 -9.66231840629e+12 +UniRef50_UPI0003662A30 hypothetical protein 5.59472645169e-05 3.41806576102e-05 -8787446314.54 +UniRef50_F0MTV5 MafB family protein 6.90944457927e-05 0.000938519785064 3.50997678512e+11 +UniRef50_P0AC49 Fumarate reductase iron sulfur subunit 0.00198322470253 0.00136893867733 -2.4799480651e+11 +UniRef50_UPI00041436A6 hypothetical protein 3.1459580401e-05 3.81786826413e-05 2712584027.07 +UniRef50_A3K301 6.26924712324e-06 4.65342608468e-06 -652326781.621 +UniRef50_A7ZIA3 S formylglutathione hydrolase FrmB 0.0148527493421 0.00419113373722 -4.30422505243e+12 +UniRef50_S9E849 Neutral zinc metallopeptidase 0.000343032573815 1.09237650138e-05 -1.34076401546e+11 +UniRef50_UPI00035E2411 hypothetical protein 1.00096892549e-05 4.11394191861e-05 12567453978.0 +UniRef50_H8GZZ4 Peptide ABC transporter, permease protein 0.00232330927841 0.054070602717 2.08910173719e+13 +UniRef50_UPI00047D0EF5 alcohol dehydrogenase, partial 1.34056451246e-05 0.000106093545024 37419242597.8 +UniRef50_A4W0T4 GMP reductase 0.0212390512543 0.0159234121013 -2.14598875629e+12 +UniRef50_F2LNV1 2.03235849065e-05 2.00423680751e-05 -113530685.755 +UniRef50_B5Z6V3 0.000128981545165 0.00368880240914 1.4371433667e+12 +UniRef50_D3QCT2 0.0129106470757 0.00772308498336 -2.09428247522e+12 +UniRef50_P16679 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL 0.00803274304733 0.00101251441781 -2.83415244563e+12 +UniRef50_M5RF79 Magnesium protoporphyrin chelatase 8.81582568252e-05 0.00111955898243 4.16389129635e+11 +UniRef50_UPI0004069A6C hypothetical protein 3.21403157652e-05 4.38143704256e-05 4712959123.16 +UniRef50_D7CRR2 Cytochrome c assembly protein 0.000128971280521 0.0194379270854 7.79526240597e+12 +UniRef50_P76502 Phosphohistidine phosphatase SixA 0.00196427812318 0.000366095089089 -6.45206102773e+11 +UniRef50_Q3IUV8 TrbC, sex pilus assembly and mating pair formation protein 0.00109267956391 0.000409214833994 -2.75923098522e+11 +UniRef50_A0A023LBQ7 2.28571859482e-05 7.93910154335e-06 -6022613739.7 +UniRef50_A5MYM8 0.000332092538599 0.00154678452539 4.90386061014e+11 +UniRef50_L1L1V6 6.65317925159e-05 9.74409957735e-06 -22925888502.6 +UniRef50_UPI0003A7F275 xanthine dehydrogenase 4.61465257156e-06 0.000143135179761 55922436664.2 +UniRef50_UPI000470BD2F hypothetical protein 1.06356088972e-05 0.000139429508718 51995677836.6 +UniRef50_I0I1B3 1.26664865258e-05 9.23978562686e-05 32188532379.1 +UniRef50_Q5HP11 Shikimate kinase 0.0169750629144 0.00146750453051 -6.26059161872e+12 +UniRef50_K0LNC6 Na+transporting ATP synthase 0.0159233560347 0.00468866960147 -4.53558077819e+12 +UniRef50_F0YGA0 Expressed protein 0.000418446480179 0.000266414579294 -61377144028.5 +UniRef50_UPI0004262E77 hypothetical protein 1.71552724417e-05 0.00061546409844 2.4154461513e+11 +UniRef50_K3ZIS6 2.7226186519e-05 0.000214301174639 75524468372.3 +UniRef50_UPI0003B62EF2 hypothetical protein 6.6164229807e-05 8.5782127543e-05 7919986054.7 +UniRef50_G2JE35 Lipid A core O antigen ligase 0.000173705695169 0.00418384410855 1.61894208741e+12 +UniRef50_Q98LT6 Glycine dehydrogenase 3.30524962184e-06 6.83476247395e-06 1424907650.39 +UniRef50_B7KTM9 Phage cell wall peptidase, NlpC P60 family 0.0022693786963 0.000516588988672 -7.07622714119e+11 +UniRef50_A5UMD8 0.00301238810486 0.000894927932988 -8.54844655542e+11 +UniRef50_K0LRB0 Ferrous iron transport protein B 0.000227401198102 0.000612055347554 1.55289600371e+11 +UniRef50_UPI0004421582 PREDICTED 7.87289520971e-05 4.88455515706e-05 -12064295503.1 +UniRef50_C4J1N8 0.000137592833116 3.40814210265e-05 -41788827288.6 +UniRef50_Q8XWR3 Prolipoprotein diacylglyceryl transferase 0.00142173060169 0.00386976263432 9.88300572304e+11 +UniRef50_C6SPD3 Putative potassium uptake system protein 0.00619511255583 0.00225667419769 -1.58999589525e+12 +UniRef50_UPI0003A9FA54 amino acid transporter 7.46754994442e-06 0.000608960482025 2.42830077829e+11 +UniRef50_UPI000469E754 DNA repair protein RadA 1.02825922711e-05 7.77657507373e-05 27243779184.3 +UniRef50_P36938 Phosphoglucomutase 0.00180423843021 0.00687662661879 2.04778535693e+12 +UniRef50_UPI00046E8175 hypothetical protein 1.65285557188e-06 2.42990330773e-05 9142539758.78 +UniRef50_P32382 NADH oxidase 7.60559641199e-06 8.20577479618e-06 242299378.714 +UniRef50_B9KJE4 Flagellar biosynthetic protein FlhB 0.00260108961525 0.00095933242503 -6.62797524318e+11 +UniRef50_J9P7D1 1.9775680871e-06 1.93370355109e-06 -17708651.4656 +UniRef50_D7GE04 8.74916503464e-05 0.000399775173314 1.26072690372e+11 +UniRef50_Q9I6M4 5 aminovalerate aminotransferase DavT 0.00105157280429 0.0115695824996 4.24624958449e+12 +UniRef50_UPI000262CACD citrate lyase subunit beta 8.62709919896e-05 3.43895831461e-05 -20945161406.6 +UniRef50_Q48KB0 Acyl homoserine lactone acylase PvdQ 0.000354011428865 7.83260111316e-05 -1.11297586179e+11 +UniRef50_UPI0002657863 PREDICTED 6.21849165951e-06 1.74328109222e-05 4527358301.52 +UniRef50_UPI0003B7969B LysR family transcriptional regulator 5.97281562804e-06 0.000176413365332 68808941456.2 +UniRef50_C5X3K1 2.81949398159e-05 0.000294702936378 1.07592548633e+11 +UniRef50_UPI0003EDCB7F PREDICTED 5.31620110893e-06 7.66185301585e-05 28785625215.3 +UniRef50_P76053 Probable DNA endonuclease SmrA 0.00269784452705 0.00148899179089 -4.88028683879e+11 +UniRef50_V4IVP0 0.00177829349423 0.00170803701125 -28363404323.0 +UniRef50_A2RNI8 Arginine tRNA ligase 6.38924935664e-06 0.00582469574036 2.34892172907e+12 +UniRef50_A6LY18 Small acid soluble spore protein, alpha beta type 0.00984746057875 0.000860145743281 -3.62828928583e+12 +UniRef50_F8G289 Cro CI family transcriptional regulator 0.000681162479595 0.000677390310903 -1522870790.68 +UniRef50_K6M6J3 Transporter, major facilitator family protein 9.64614963009e-05 0.00191596772533 7.34556992512e+11 +UniRef50_F6CLL2 PSP1 domain protein 0.0133542522397 0.00140780158883 -4.8229287272e+12 +UniRef50_J2DHS3 1.91775867741e-05 5.77166199039e-05 15558680601.6 +UniRef50_P77297 0.00450739102959 0.00238103988529 -8.58434050217e+11 +UniRef50_P77296 0.00703524920178 0.000506257208899 -2.63583418727e+12 +UniRef50_L1K9E2 0.0131018993676 0.00615426256831 -2.80484623296e+12 +UniRef50_R9SJS7 Adenylate cyclase CyaA 0.00252224647012 0.000710691241489 -7.3134707608e+11 +UniRef50_E3J3H5 8.16196415514e-06 3.00656690371e-06 -2081297134.24 +UniRef50_UPI0003B2F361 ribose phosphate pyrophosphokinase 9.03460841929e-05 3.52785804517e-05 -22231427014.6 +UniRef50_D4HCR1 Hydrolase, alpha beta domain protein 0.000176120990128 0.00544634586267 2.12765445398e+12 +UniRef50_UPI000410CB72 hypothetical protein 9.19159344349e-06 3.14569551052e-05 8988799729.54 +UniRef50_UPI0003B62778 2 deoxy D gluconate 3 dehydrogenase 7.550303427e-06 1.12947808465e-05 1511691484.16 +UniRef50_D8JEW7 0.000413524934136 0.00701216898307 2.66395357702e+12 +UniRef50_A1B817 Transposase IS66 1.05705553249e-05 6.62005042576e-06 -1594867305.93 +UniRef50_A5UNB4 0.00188646291916 0.00115112143082 -2.96866382498e+11 +UniRef50_A0A024C317 0.00514753621162 0.000703135012379 -1.79425930307e+12 +UniRef50_UPI000370F732 hypothetical protein 6.35417219591e-06 5.06502337633e-06 -520445198.099 +UniRef50_L8M031 NAD dependent epimerase dehydratase family protein 0.00323683029269 0.000277634711436 -1.19466356956e+12 +UniRef50_A7Q0V4 S adenosylmethionine synthase 5 4.32143854799e-05 0.000107647867442 26012587355.8 +UniRef50_Q1IZH8 tRNA N6 adenosine threonylcarbamoyltransferase 0.00041504516033 0.0165747970024 6.52389012111e+12 +UniRef50_E3G1M3 Ribose 1,5 bisphosphate phosphokinase PhnN 0.0037971304474 0.000318114942752 -1.40452125155e+12 +UniRef50_UPI00046961B9 hypothetical protein 3.86524198017e-05 2.58504101894e-05 -5168328378.81 +UniRef50_D3E3F0 4Fe 4S binding domain containing protein 0.00363322800798 0.0013357832772 -9.27506630633e+11 +UniRef50_Q6FYD4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.00268170694242 0.0116761971744 3.63118608146e+12 +UniRef50_UPI000477D162 iron ABC transporter permease 9.79089316643e-06 8.75591517729e-05 31396000323.3 +UniRef50_D7AQD0 NADH 0.000279458722235 0.00123120035496 3.84229776314e+11 +UniRef50_I7EMW2 0.00639179441936 0.000238800570243 -2.48403912262e+12 +UniRef50_P28246 Bicyclomycin resistance protein 0.00283663273053 0.0014592590558 -5.56062654764e+11 +UniRef50_UPI00047BE7E7 hypothetical protein 4.3539261556e-05 1.44264680044e-05 -11753192010.9 +UniRef50_Q02H49 0.0010801395194 0.00065379243675 -1.72121549133e+11 +UniRef50_K2F5A0 0.000506914449864 0.00218019681134 6.75524622813e+11 +UniRef50_S4B4H2 Accessory colonization factor AcfD 0.00035689939649 0.000229215558903 -51547532090.8 +UniRef50_A6LYR9 Peptidoglycan binding domain 1 protein 0.000218199993555 0.00109020191915 3.5203787803e+11 +UniRef50_B9KM18 Pyruvate kinase 0.00053675768345 0.000263506281125 -1.1031494429e+11 +UniRef50_UPI000366947C hypothetical protein 0.000466531931967 2.74680952811e-05 -1.77255458789e+11 +UniRef50_F9SJR5 Putative sulfate permease 0.000954491242982 0.000410703117443 -2.19533939311e+11 +UniRef50_Q4L4H7 0.0380724844609 0.0133869550201 -9.96585116076e+12 +UniRef50_D1FMX0 InlA 1.41077967412e-05 4.50083205673e-06 -3878449533.83 +UniRef50_Q1C1V0 Regulator of sigma D 0.0071784323343 0.014097614816 2.79335887578e+12 +UniRef50_A9B5I3 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.96654231779e-05 5.56442114355e-05 14525078329.0 +UniRef50_P30363 L asparaginase 5.31448501724e-05 0.00295247749418 1.1704961672e+12 +UniRef50_Q92Q90 Bifunctional enzyme IspD IspF 5.59309950482e-06 7.35606071364e-06 711729073.967 +UniRef50_D0K261 Cbb3 type cytochrome c oxidase subunit CcoP 0.000440202340584 0.003679862354 1.30789050252e+12 +UniRef50_A0A011TPN1 0.000110318566055 2.91757436635e-05 -32758353133.9 +UniRef50_UPI0004663F53 hypothetical protein 1.57197096882e-05 1.11189821549e-05 -1857370162.47 +UniRef50_P46118 HTH type transcriptional regulator HexR 0.00481614900316 0.00295865574251 -7.4989282333e+11 +UniRef50_X7ED55 8.57880058693e-05 7.71018679163e-05 -3506700482.53 +UniRef50_UPI0004674A11 hypothetical protein, partial 1.02318610646e-05 3.91001985156e-05 11654502083.3 +UniRef50_A0A022FVN3 Calcium transporter ChaC 2.46138505784e-06 2.10305054135e-06 -144664041.566 +UniRef50_G3XDA3 Methyl accepting chemotaxis protein CtpH 7.01646819436e-05 0.00010661252895 14714443101.9 +UniRef50_F1YSU2 Folylpolyglutamate Synthase 1.05345260388e-05 8.16512993868e-06 -956554281.378 +UniRef50_S5SLF3 sn glycerol 3 phosphate ABC transporter substrate binding protein UgpB 1 1.49400390137e-05 5.57662040911e-06 -3780126992.74 +UniRef50_D8UC33 6.57701548528e-06 2.07342768294e-06 -1818153661.04 +UniRef50_UPI0002628085 PTS system sucrose specific transporter subunit IIABC 8.84991987881e-06 1.22508995579e-05 1373017231.16 +UniRef50_R6G0R0 Glutamine ABC transporter permease substrate binding protein 0.00485225236123 0.00112778825551 -1.50361186379e+12 +UniRef50_Q6F6W5 Two component sensor 0.000206916889359 0.00692757814205 2.7132134195e+12 +UniRef50_UPI0001AF2CE2 aldehyde dehydrogenase 3.01992502523e-06 0.000355132392361 1.42152123969e+11 +UniRef50_B8DVI9 Uracil phosphoribosyltransferase 1.77830714206e-05 0.00970130110951 3.90935506211e+12 +UniRef50_Q0SAY4 Proline tRNA ligase 2 4.83060766271e-06 0.0424797862746 1.7147660829e+13 +UniRef50_Q3IX83 0.00200164334153 0.000497397827948 -6.07282373e+11 +UniRef50_Q8Z7H3 Virulence sensor histidine kinase PhoQ 0.00320474905523 0.000338845567286 -1.15700040667e+12 +UniRef50_Q6MS86 Uracil phosphoribosyltransferase 3.67235518238e-05 0.00338156044231 1.35035169846e+12 +UniRef50_UPI000362A0E4 hypothetical protein 5.73965021646e-05 1.78473294218e-05 -15966486359.2 +UniRef50_R1CV54 2.08432337532e-05 9.78987662691e-05 31108264054.4 +UniRef50_UPI000273CDF3 0.0005618634754 0.000142026709046 -1.69493254554e+11 +UniRef50_UPI0002F1A5E0 hypothetical protein 4.92002978257e-06 1.26248816403e-06 -1476594434.49 +UniRef50_I6CNQ8 Tail protein 0.000102284336647 0.000111425695703 3690478828.0 +UniRef50_F9Z2A5 0.000247810571456 0.00183884168898 6.4231878629e+11 +UniRef50_D2NS08 6 pyruvoyl tetrahydropterin synthase 0.000124105167333 0.00137175954301 5.03693381903e+11 +UniRef50_UPI00022CA8F3 PREDICTED 7.33091784889e-06 5.80434141213e-06 -616297640.719 +UniRef50_UPI0003B40293 hypothetical protein 1.76939269228e-05 1.28395651609e-05 -1959765413.0 +UniRef50_D2ZQZ2 0.00124195771905 0.000619545535373 -2.51275436407e+11 +UniRef50_F5ZJC0 PpGpp synthetase 0.00442178227922 0.00296005296257 -5.90118062567e+11 +UniRef50_Q8DUK3 Probable thiol peroxidase 0.0132764082642 0.00396168975493 -3.76046616664e+12 +UniRef50_UPI0003EAABA8 PREDICTED 3.04499093141e-05 2.30839478692e-05 -2973729025.82 +UniRef50_C4L7S9 30S ribosomal protein S10 0.00183051427246 0.0301069628024 1.14155492626e+13 +UniRef50_B5YGX0 Phosphoglucosamine mutase 4.01942056969e-06 4.88869548899e-06 350936952.124 +UniRef50_UPI00047DE500 ABC transporter ATP binding protein 4.19774035681e-06 7.97986228311e-06 1526889033.5 +UniRef50_UPI000466389B hypothetical protein 6.51287080114e-06 1.7961927778e-05 4622124797.3 +UniRef50_Q92PK6 Anhydro N acetylmuramic acid kinase 5.95729418181e-06 3.02656637883e-05 9813587107.38 +UniRef50_UPI00035E7A12 hypothetical protein, partial 6.50548491029e-06 9.91944172116e-06 1378256258.51 +UniRef50_Q5LKT8 Branched chain amino acid aminotransferase, putative 0.0100355162323 0.00201462623339 -3.23813171995e+12 +UniRef50_P0AF42 Inner membrane protein YijD 0.00106122453314 0.000777149224201 -1.14684688215e+11 +UniRef50_V4QDE8 6.61748464419e-05 0.000293759826162 91878849094.7 +UniRef50_U8EUK5 0.00236554099546 0.000921188697658 -5.83102746818e+11 +UniRef50_F6BNG0 Mov34 MPN PAD 1 family protein 0.000480777368385 0.000326931133971 -62109612738.5 +UniRef50_UPI0003820CC8 hypothetical protein 1.31987820968e-05 1.88003025141e-05 2261402530.85 +UniRef50_UPI0003C7BE7D MerR family transcriptional regulator 5.15843506585e-05 9.00199368689e-06 -17191020053.7 +UniRef50_J3L9G7 0.00144053926662 0.000372639375648 -4.3112429059e+11 +UniRef50_K7RLI9 Myo inositol catabolism protein 0.000749056148611 0.00479571949045 1.63368764924e+12 +UniRef50_A7I8B8 Proteasome activating nucleotidase 0.00208487388978 0.000145000018924 -7.83150886595e+11 +UniRef50_U7JTW3 1.0092564522e-05 6.32702863908e-05 21468498882.5 +UniRef50_UPI00036B2583 MULTISPECIES 1.39920720054e-05 3.100750804e-05 6869340330.05 +UniRef50_A0A022SAV9 Glucose Sorbosone dehydrogenase family protein 0.00039276103946 0.00389324109081 1.41318675245e+12 +UniRef50_UPI00034D4ECA hypothetical protein 9.29005714967e-05 5.21233971085e-06 -35400815227.5 +UniRef50_D3HHR2 0.00233307915385 0.00151761138162 -3.29214346564e+11 +UniRef50_UPI00036B57D3 hypothetical protein, partial 4.48650145262e-05 1.71174512554e-05 -11202031793.3 +UniRef50_W8YGK7 9.16362016213e-05 8.21340861547e-05 -3836120617.94 +UniRef50_J0D235 4.06239303486e-06 7.95638042336e-06 1572050493.34 +UniRef50_UPI000464FCC9 resolvase, partial 0.000142984079293 5.12961252941e-05 -37015552167.1 +UniRef50_A9WEB9 Thioesterase superfamily protein 8.25199620555e-06 0.000629068314867 2.50631166116e+11 +UniRef50_B7LPQ4 N acetyl D glucosamine kinase 0.00616413128626 0.000223442652099 -2.39832890206e+12 +UniRef50_Q8KWX4 DNA directed RNA polymerase subunit beta 3.93210529726e-06 2.11245015313e-06 -734617111.365 +UniRef50_D4JIJ4 Saccharopine dehydrogenase and related proteins 0.000298749486303 0.00597277926776 2.29067545095e+12 +UniRef50_F2CTX8 Predicted protein 0.000149932759589 0.000240747314022 36662950044.5 +UniRef50_A7A5J4 3.90513767709e-05 4.33379377629e-05 1730537274.49 +UniRef50_UPI0003609C50 MULTISPECIES 1.95878741325e-05 1.9527613959e-05 -24327771.5174 +UniRef50_UPI00042A54EF 2,5 diketo D gluconic acid reductase 2.40433167827e-05 8.6415045362e-06 -6217900605.4 +UniRef50_Q5KX02 Deoxyribose phosphate aldolase 0.0508528279081 0.0400455472515 -4.36303182132e+12 +UniRef50_UPI0003657039 flagellar P ring protein FlgI 3.01610381989e-05 3.24171446688e-05 910817867.438 +UniRef50_S5YTM5 Acetamidase formamidase 0.00142646230667 0.00079870498931 -2.53433332467e+11 +UniRef50_UPI0004704B80 hypothetical protein, partial 1.18179146397e-05 7.39476584358e-05 25082539988.2 +UniRef50_Q9FFE6 Probable acyl activating enzyme 5, peroxisomal 0.0128671048739 0.00183563832995 -4.45353841509e+12 +UniRef50_I0B601 0.000462891497923 0.0319668995254 1.27185546384e+13 +UniRef50_P36843 Arginine biosynthesis bifunctional protein ArgJ 0.00998622489401 0.00289275356942 -2.86372142042e+12 +UniRef50_P00644 Thermonuclease 0.00854510824123 0.000663214998362 -3.18201702385e+12 +UniRef50_M1LU25 Ferredoxin NADP+ reductase 0.000177501248674 0.0063475597419 2.49092832885e+12 +UniRef50_UPI00039B2C8B hypothetical protein, partial 5.4923098772e-05 0.000644922595971 2.38190037127e+11 +UniRef50_Q21E72 Phosphate import ATP binding protein PstB 0.0120518066965 0.00436244992538 -3.10428768752e+12 +UniRef50_A4WXS2 0.00159506452928 0.000355803259269 -5.00304982149e+11 +UniRef50_A6QDJ4 0.0114607069271 0.0018364580597 -3.88542737058e+12 +UniRef50_Q6LLL9 3 octaprenyl 4 hydroxybenzoate carboxy lyase 1.02789871251e-05 0.00290687069189 1.16938961639e+12 +UniRef50_F6F2F7 Sodium hydrogen exchanger 0.00121380345087 0.000426177426962 -3.1797429111e+11 +UniRef50_W9TLX8 Cytochrome C type biogenesis protein CcmF 0.000126255393394 0.000104056579505 -8961933577.07 +UniRef50_U7J4M5 8.50193668641e-05 0.00647734652608 2.58066091685e+12 +UniRef50_B8ENG6 Peptide deformylase 8.19476024657e-05 4.98654364176e-05 -12951964126.1 +UniRef50_UPI00046F07FD chromosome partitioning protein ParB 6.56309060546e-05 0.000869496830371 3.24530538191e+11 +UniRef50_E0VHF0 1.12645075267e-06 3.3141491512e-06 883200689.565 +UniRef50_L4XF07 D galactonate transporter 0.000457707913475 0.00053693946399 31986749223.4 +UniRef50_B2TRD7 Peptidase, M23 M37 family 4.44450038838e-06 9.28820811107e-06 1955464246.63 +UniRef50_UPI00040D222C hypothetical protein 0.000139715267809 3.88486708281e-05 -40721082973.6 +UniRef50_M2LUA1 Myosin cross reactive antigen 0.00249459351656 0.000309772767695 -8.82038947084e+11 +UniRef50_A8GM77 NADH quinone oxidoreductase subunit F 0.00941043928249 0.00115221776751 -3.33394536537e+12 +UniRef50_A3JRD5 0.000119319330955 0.000240736907866 49017765760.2 +UniRef50_UPI0003684E03 hypothetical protein 6.76028254867e-05 3.67686959915e-05 -12448116454.5 +UniRef50_Q2YVA6 0.000737788945268 0.000396595223403 -1.37744092435e+11 +UniRef50_A4WT37 Flagellin domain protein 0.0102634184283 0.00329895712411 -2.81163849205e+12 +UniRef50_A3CMD6 Cobalamin independent methionine synthase II, putative 0.00419311024892 0.00191845933426 -9.18304487354e+11 +UniRef50_UPI00037F264A hypothetical protein 5.67475642836e-06 1.16666072528e-05 2418983706.1 +UniRef50_A3M7T3 0.000372858440026 0.0090595612816 3.50692853497e+12 +UniRef50_Q3IVA4 DNA binding protein, H NS family 0.0024991030916 0.000608900423076 -7.63098012677e+11 +UniRef50_A7C736 Cell shape determining protein 0.000207621189872 5.26987626334e-05 -62544084988.4 +UniRef50_P21639 Precorrin 2 C methyltransferase 7.50677087757e-05 3.24921963736e-05 -17188256817.0 +UniRef50_UPI000370964C hypothetical protein 0.00022785701659 0.000162375754193 -26435589175.1 +UniRef50_Q3IYL4 0.00806789015315 0.000232017692675 -3.16343786926e+12 +UniRef50_I4D0J0 DNA repair protein radA 0.000884305702589 0.000744845875768 -56301643452.2 +UniRef50_W7WR28 Lactate utilization protein A 1.07442457145e-05 7.18754806513e-05 24679429708.6 +UniRef50_C5CNW9 Alkanesulfonate monooxygenase 0.000341977887354 0.00375965410765 1.37975782974e+12 +UniRef50_Q182W3 Stage IV sporulation protein A 0.00017560537547 0.00084958646112 2.72094434955e+11 +UniRef50_V5BSI8 7.39796990369e-06 8.11245863088e-05 29764339770.1 +UniRef50_L7WY01 0.0235516526839 0.00458101272811 -7.65868014609e+12 +UniRef50_UPI00035E8B7E hypothetical protein 1.79704080645e-05 1.34367887939e-05 -1830277733.31 +UniRef50_UPI00035057EC PREDICTED 0.000146683648299 0.000229508553963 33437430792.4 +UniRef50_F5M5C7 XRE family transcriptional regulator 0.00566962244404 0.000572528021041 -2.05775956695e+12 +UniRef50_UPI000381892F hypothetical protein 1.3085769077e-05 1.32518457505e-05 67047191.0819 +UniRef50_Q5LN51 RmuC domain protein 0.00557481358019 0.00106066614965 -1.82241671253e+12 +UniRef50_Q7MT83 Ribose phosphate pyrophosphokinase 5.31376958578e-06 0.00390926662888 1.57607367618e+12 +UniRef50_UPI00046FE313 hypothetical protein, partial 6.30764648533e-06 5.13486245894e-05 18183595575.6 +UniRef50_UPI0003610E12 hypothetical protein 4.44040307618e-06 1.25774356981e-05 3285019922.09 +UniRef50_R9SMA2 Radical SAM domain containing protein 0.0046907940812 0.000356820562545 -1.74967829331e+12 +UniRef50_F5XLU5 NADH quinone oxidoreductase subunit M 8.37616839153e-05 0.00469347864328 1.86099930408e+12 +UniRef50_Q8X582 Laminin binding fimbrial subunit ElfA 0.00391702566762 0.00353407048578 -1.54603706297e+11 +UniRef50_UPI0003943B89 PREDICTED 3.13016932926e-05 7.11250804251e-05 16077190073.3 +UniRef50_R9YQF0 Alpha acetolactate decarboxylase 0.0158262965387 0.00382500466219 -4.84506880296e+12 +UniRef50_P77416 Hydrogenase 4 component D 0.00330967145201 0.00109671905878 -8.93396037127e+11 +UniRef50_UPI000477B336 ABC transporter 2.47088178354e-05 7.16676652111e-06 -7081941380.76 +UniRef50_Q02F98 NH dependent NAD(+) synthetase 7.97629574974e-05 7.88879228307e-05 -353262232.83 +UniRef50_G2IZ95 FIST domain protein 3.31182700567e-06 4.83924754767e-06 616638416.363 +UniRef50_P77333 HTH type transcriptional regulator PgrR 0.0025749633512 0.00268400702123 44022267707.4 +UniRef50_I4CYH2 Epoxide hydrolase 0.000252780796101 0.00146700395093 4.90196787799e+11 +UniRef50_A3PI48 Glucose 1 phosphate adenylyltransferase 0.000887401536012 0.000140404138754 -3.01572015962e+11 +UniRef50_Q0ALN8 MotA TolQ ExbB proton channel 0.00886136565012 0.0071162089237 -7.04541185937e+11 +UniRef50_C3AI25 1.639984699e-05 0.000436744134342 1.69698147008e+11 +UniRef50_UPI00036C9A3E hypothetical protein 1.4810252468e-05 1.61597839032e-05 544822401.003 +UniRef50_UPI000474F64C hypothetical protein 8.49267190284e-06 1.11269107706e-05 1063474556.66 +UniRef50_UPI0004778BE4 hypothetical protein 2.44373119892e-05 1.1803962921e-05 -5100238047.46 +UniRef50_A0A023RZD3 7.90822602291e-05 0.00766419433836 3.06220282573e+12 +UniRef50_D9SU99 Glycosyl transferase group 1 0.000181774954504 0.000326178306595 58297405267.5 +UniRef50_UPI00037EBCF0 hypothetical protein 1.46522514342e-05 5.33448000093e-06 -3761698669.52 +UniRef50_UPI00030C6615 ATPase AAA 1.71232694626e-05 3.72552006136e-05 8127507652.23 +UniRef50_A3S801 0.000408457936484 1.15595843902e-05 -1.60232735231e+11 +UniRef50_P49938 Iron hydroxamate import ATP binding protein FhuC 7.42215529435e-05 0.000984724077882 3.6758104244e+11 +UniRef50_A4WQH4 0.00729226865601 0.000898718987384 -2.5811544589e+12 +UniRef50_UPI0003B6A5DD serine threonine phosphatase 5.46071425124e-06 1.07893241568e-05 2151225208.27 +UniRef50_C9D174 Recombinase 9.98298423132e-06 1.72516716525e-05 2934458308.76 +UniRef50_UPI000464FB82 hypothetical protein 8.58951548407e-06 8.46273051401e-05 30697388772.7 +UniRef50_Q887Q9 Alginate biosynthesis protein AlgA 2.5141855572e-05 2.9724820054e-05 1850199000.68 +UniRef50_W8S5E9 ATP synthase protein I2 3.07669181821e-05 5.63896783551e-05 10344222708.5 +UniRef50_Q8DSN0 Trans 2 decenoyl [acyl carrier protein] isomerase 0.00830792710601 0.00873288127745 1.71559213784e+11 +UniRef50_X1B5W7 Marine sediment metagenome DNA, contig 3.17998647229e-05 1.97600604251e-05 -4860616740.03 +UniRef50_P0ACV2 Protein Ddg 0.00543324024235 0.00168206461126 -1.51439563437e+12 +UniRef50_X2I2X2 Type I restriction enzyme, S subunit 0.000487620538287 0.00163614093352 4.63671777484e+11 +UniRef50_UPI0003743283 hypothetical protein 7.97343472719e-06 3.35799047064e-05 10337646157.3 +UniRef50_UPI000376D2EE hypothetical protein 0.0001269026374 0.000134860043275 3212502400.09 +UniRef50_H8H3X9 8.15177148986e-06 0.000301835713761 1.18563811402e+11 +UniRef50_UPI00016C4EB2 CoA transferase 1.01505351359e-05 0.000348845601499 1.36735354547e+11 +UniRef50_R4KIZ1 6.11390627853e-06 0.000160063254856 62151241191.5 +UniRef50_UPI00046550E0 ABC transporter permease 1.17369052217e-05 1.14269056527e-05 -125150630.128 +UniRef50_P41443 Putative type II secretion system protein H 0.00322546607497 0.000390286394531 -1.14459682856e+12 +UniRef50_Q6LUZ6 Glutamate ammonia ligase adenylyltransferase 0.000360306724402 0.000142715668596 -87844179371.4 +UniRef50_A5UN96 Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA 0.00239991180861 0.000307088428274 -8.44898480474e+11 +UniRef50_R1GH14 6 pyruvoyl tetrahydropterin synthase 0.000100925695388 0.000610351192916 2.05661324706e+11 +UniRef50_Q2FME4 Transport system permease protein 0.00437976746225 0.000706722931278 -1.48285315048e+12 +UniRef50_UPI000255A6BC hypothetical protein 0.000100694496065 3.04524302059e-05 -28357583954.4 +UniRef50_D6SDT2 PTS system, glucose subfamily, IIA component 0.0113602376407 0.00223398084898 -3.68438185858e+12 +UniRef50_G0LQ60 0.0166362182491 0.0024564233749 -5.72455719636e+12 +UniRef50_X2MMA8 0.000674396850982 2.30687264842e-05 -2.62949156555e+11 +UniRef50_V5IK03 Putative thyroid hormone receptor associated protein complex subunit 5.08071213708e-06 9.97158431522e-05 38205363694.4 +UniRef50_B8FK17 Putative flagellar rod assembly protein muramidase FlgJ 5.37513920886e-05 8.69758197847e-05 13413109170.5 +UniRef50_R0J3J3 1.14163449089e-05 5.4219283804e-06 -2420019512.32 +UniRef50_I1ZKX0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.00441891616026 0.00434231544878 -30924647220.9 +UniRef50_UPI0004059FEB methionine aminopeptidase 5.29558507064e-05 1.88071700096e-05 -13786241448.7 +UniRef50_UPI0003C3A0E4 PREDICTED 1.06134224488e-06 2.68380106598e-07 -320128545.964 +UniRef50_UPI000366D9A0 hypothetical protein, partial 1.53450681884e-05 0.0002283977417 86011978747.1 +UniRef50_UPI0003B4B64F hypothetical protein 0.000124976474321 4.48242286738e-05 -32358445146.4 +UniRef50_L1N290 TRAP transporter, DctM subunit 8.57371853798e-05 3.38266379331e-05 -20956925018.3 +UniRef50_A5ULG2 Shikimate kinase 0.00235423511663 0.00119908770842 -4.66347183947e+11 +UniRef50_UPI0004202308 hypothetical protein 3.84937293502e-06 1.04701711882e-05 2672897501.14 +UniRef50_UPI00040D932D DNA processing protein DprA 5.37955974041e-05 6.09627153994e-05 2893453485.13 +UniRef50_Q1CWT2 ATP synthase subunit alpha 4.85062844372e-06 1.9238707664e-05 5808644142.82 +UniRef50_T0U356 ABC transporter, ATP binding permease protein 0.00704849539221 0.00158954306946 -2.20384604157e+12 +UniRef50_U2YP81 L proline glycine betaine binding ABC transporter protein ProX 0.00302279062866 0.000873463451147 -8.67709756771e+11 +UniRef50_Q4L675 Anthranilate synthase component II 0.0159380057571 0.0056253479845 -4.16334649334e+12 +UniRef50_P06770 FeMo cofactor biosynthesis protein NifB 0.000673450979859 0.000135259559627 -2.17274480699e+11 +UniRef50_G7LYR7 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.000311067123082 0.00158535467558 5.14445522211e+11 +UniRef50_A0A059ECE9 3.25825728876e-05 3.46915907829e-05 851436404.893 +UniRef50_UPI0002625F09 monosaccharide transporting ATPase 0.000180946036086 3.47152703867e-05 -59035154566.0 +UniRef50_A5UKX5 Phosphomannomutase, ManB 0.00266061919226 0.000936704149232 -6.95965657688e+11 +UniRef50_UPI00036BA739 hypothetical protein 5.95164408854e-06 6.368226193e-06 168179307.608 +UniRef50_Q8XXJ7 5 hydroxyisourate hydrolase 4.77681442691e-05 5.71751069759e-05 3797706281.15 +UniRef50_Q5HKE5 Serine protease 0.00974384965142 0.0032848677284 -2.60757026294e+12 +UniRef50_Q99335 Transposase for insertion sequence element IS232 0.000461368338436 0.00100010437559 2.17494349234e+11 +UniRef50_UPI0003EC0F26 PREDICTED 6.90617549135e-06 4.65020657738e-06 -910762334.421 +UniRef50_X8EYS2 8.47011057242e-05 0.000437602860485 1.42470768989e+11 +UniRef50_F6D6R1 Polymorphic outer membrane protein 1.00857377483e-05 4.42481601298e-07 -3893100842.6 +UniRef50_UPI0003B67906 glycine cleavage system protein H 8.82755565383e-05 2.96688322415e-05 -23660253784.0 +UniRef50_Q02000 Anthranilate phosphoribosyltransferase 0.00629780606486 0.00448887046593 -7.30289499424e+11 +UniRef50_Q2T960 Transposase 4.77975386085e-05 1.44435619335e-05 -13465409683.0 +UniRef50_O05393 O acetylserine dependent cystathionine beta synthase 1.17113361781e-05 0.00517569080136 2.08476187925e+12 +UniRef50_Q3JHP8 3.68666959603e-06 1.09853862995e-05 2946581498.52 +UniRef50_Q3I510 EaeH 0.000108494650488 8.96414333579e-05 -7611275110.41 +UniRef50_Q5HRF6 Octanoyl [GcvH] 0.0214411729638 0.00652189713856 -6.02309473074e+12 +UniRef50_E6MUI1 Transposase for insertion sequence element IS4351 0.000524674184769 0.0286007485361 1.13346557478e+13 +UniRef50_F0P3X1 Membrane protein, putative 0.00632371041829 0.00144815043485 -1.96832339516e+12 +UniRef50_A0A011PV93 NADH quinone oxidoreductase subunit M 2.22330913299e-05 9.31644300459e-06 -5214609434.02 +UniRef50_M9VNY9 Trehalose 6 phosphate phosphatase 0.000324855730792 0.00197213275456 6.65025948858e+11 +UniRef50_Q7VRS0 Probable malate 4.63596837488e-06 1.2737354106e-05 3270628834.84 +UniRef50_S0AB89 FAD dependent pyridine nucleotide disulfide oxidoreductase 0.000256634365371 0.000220111829952 -14744595730.6 +UniRef50_Q725Q3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.38544440489e-05 3.24318867546e-06 -4283894008.99 +UniRef50_K5Z1T4 8.26457386128e-06 1.28724154824e-05 1860242207.02 +UniRef50_E6UA31 IstB domain protein ATP binding protein 0.000537835630213 0.000851840697171 1.26767698806e+11 +UniRef50_Q5HP08 0.00664782325246 0.00324875898239 -1.37224395704e+12 +UniRef50_UPI000262C9F7 malonyl CoA ACP transacylase 1.04632654191e-05 2.639056469e-05 6430046165.6 +UniRef50_D3E006 0.00319549904747 0.00151444464203 -6.78662292333e+11 +UniRef50_Z6ILY0 0.226654902022 0.0411737778722 -7.48810059287e+13 +UniRef50_UPI000365DBB0 hypothetical protein 2.56461183579e-05 1.94489192451e-05 -2501885330.02 +UniRef50_B1ZNE5 50S ribosomal protein L2 0.00202072289189 0.0498711478545 1.93178037481e+13 +UniRef50_H0J5U8 Beta lactamase like protein 6.96761715234e-05 1.75200021458e-05 -21056085605.9 +UniRef50_Q9CD72 ATP dependent DNA helicase UvrD1 1.93192650571e-05 1.24664089258e-05 -2766582114.21 +UniRef50_Q2IQ01 Polyribonucleotide nucleotidyltransferase 7.40046492376e-06 1.58790309362e-05 3422901142.93 +UniRef50_P13458 Nuclease SbcCD subunit C 0.00268512304215 0.0019846916723 -2.82772739268e+11 +UniRef50_A6LTD7 Regulatory protein, LacI 0.000515861012312 0.000848543808525 1.34308127308e+11 +UniRef50_UPI000471A07E hypothetical protein 5.02070021107e-06 7.35647215596e-05 27672062548.1 +UniRef50_Q9ZFV2 Ethanolamine utilization protein EutA 0.00320409139833 0.00056465813467 -1.06557159803e+12 +UniRef50_Q5HHC7 NAD specific glutamate dehydrogenase 0.0248217825334 0.00714889696559 -7.13476077441e+12 +UniRef50_Q8ZQZ8 Nicotinate nucleotide adenylyltransferase 0.00110496810652 0.00233932127486 4.98323521276e+11 +UniRef50_UPI00016C532F competence protein 1.74057420092e-05 7.02930914578e-06 -4189093280.1 +UniRef50_W8ESZ0 MFS transporter 0.000168771679067 0.0068281039657 2.68845416331e+12 +UniRef50_Q18GT4 Ketol acid reductoisomerase 0.0159798551999 0.0170780799244 4.43366798014e+11 +UniRef50_B2UX29 Probable tRNA sulfurtransferase 0.000176946557275 0.00149699501733 5.32919762142e+11 +UniRef50_L8P9Y5 4.53929195576e-05 3.13175768306e-05 -5682388582.77 +UniRef50_UPI0003782695 hypothetical protein 2.50134773737e-05 0.000163637526545 55964229758.7 +UniRef50_UPI0004687CD1 hypothetical protein 6.89609248198e-06 2.88948601074e-05 8881172445.61 +UniRef50_D4FA45 0.000446110900423 5.79864769071e-05 -1.56690592596e+11 +UniRef50_P77161 2 hydroxy 3 oxopropionate reductase 0.00389204218141 0.000674366264168 -1.29901525311e+12 +UniRef50_P0AG22 GTP pyrophosphokinase 0.00455354363415 0.00105659819438 -1.41175978638e+12 +UniRef50_UPI000376960F hypothetical protein 1.32689773114e-05 1.78053790282e-05 1831401040.98 +UniRef50_R6GAB3 1.30609916553e-05 0.000385889205454 1.50515325027e+11 +UniRef50_V5TWY7 PTS system glucose specific transporter subunit IICBA 0.0117664701107 0.00412166415741 -3.08630197566e+12 +UniRef50_P0AAY8 0.0033763923461 0.00037381861418 -1.2121758613e+12 +UniRef50_B9DPU7 SpoU rRNA Methylase family protein 0.017012111595 0.00279649005363 -5.73902086156e+12 +UniRef50_Q9KT08 Phosphate acetyltransferase 4.00843983823e-06 4.23201108894e-05 15466891740.4 +UniRef50_E8RV78 Thioesterase superfamily protein 1.08181752544e-05 2.64311388665e-05 6303145002.81 +UniRef50_R5QLK2 UPF0301 protein BN820_01713 1.89509260256e-05 2.82676538848e-05 3761277365.87 +UniRef50_A6LR77 0.000604442779257 0.000395869853358 -84203449663.0 +UniRef50_I0C756 Phage infection protein 0.00964486780758 0.00222376163346 -2.99599162971e+12 +UniRef50_UPI0003B7187B hypothetical protein 3.12724277815e-06 5.39258776798e-06 914547571.303 +UniRef50_Q8X5K0 2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase 0.00207556511661 0.000929020796484 -4.62874011717e+11 +UniRef50_A3M2F6 TraB protein 0.000321587976525 0.0139663629227 5.508563086e+12 +UniRef50_W9R3M0 F box LRR repeat protein 20 2.67066679275e-05 3.74101057663e-05 4321109201.48 +UniRef50_P0A042 Penicillinase repressor 0.102743611817 0.00946449512329 -3.76579240727e+13 +UniRef50_UPI000477F667 oligo 1,6 glucosidase 4.85469934699e-06 2.55836396239e-05 8368527562.49 +UniRef50_D0Z4T1 Sex pilus assembly and synthesis protein TraW 0.000110133046984 2.11818667481e-05 -35910683015.0 +UniRef50_UPI0003B35337 metallophosphatase 2.20994136925e-05 0.000157609166976 54706950292.0 +UniRef50_E5AMJ1 5 methyltetrahydrofolate homocysteine methyltransferase homocysteine binding subunit 0.00123840239869 0.000164521841338 -4.33538758999e+11 +UniRef50_A7N2P9 Oxygen dependent choline dehydrogenase 0.00288520093223 0.000630939344942 -9.10073065689e+11 +UniRef50_Q02443 Protein PucC 0.00282622137911 0.000587102980539 -9.03959574575e+11 +UniRef50_UPI0003654508 hypothetical protein 1.9634204879e-05 0.000100444086032 32623940670.2 +UniRef50_A5ULF0 Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA 0.00237091503971 0.000205473280904 -8.7421541099e+11 +UniRef50_A3M7N4 Chaperone protein 0.000179541746759 0.0074079265746 2.91818765726e+12 +UniRef50_UPI00034630B7 hypothetical protein 4.96103621917e-05 7.67689218563e-06 -16929056423.0 +UniRef50_UPI0004666EB5 peptide ABC transporter permease 1.26140567229e-05 2.08310111708e-05 3317285343.99 +UniRef50_E4RBH8 FolC 0.000211718678311 0.000140627002483 -28700581924.7 +UniRef50_Q2YSR2 Probable transcriptional regulatory protein SAB0618 0.024892059746 0.00451488566039 -8.2265152344e+12 +UniRef50_G7M175 Regulatory protein MerR 0.000411862138822 0.00633557074342 2.39147385576e+12 +UniRef50_C6A2X9 Protein TSIB_0916 0.00139391642619 0.000775553708256 -2.49640617394e+11 +UniRef50_A6LR78 0.000248346045292 0.00042903153298 72944948639.9 +UniRef50_H6P8H2 0.0047483481857 0.00582404369511 4.34271477417e+11 +UniRef50_F7S8I9 Integral membrane protein MviN 0.000339951426538 0.000296463095397 -17556772943.5 +UniRef50_S9S8H7 Enoyl [acyl carrier protein] reductase 7.50879790259e-05 0.000133694097981 23660009400.1 +UniRef50_K8BPK1 TRAP type C4 dicarboxylate transport system,large permease component 5.38096767783e-05 3.42863122114e-05 -7881821854.28 +UniRef50_A1AYY0 Phage portal protein, HK97 family 0.0118287700269 0.00373650347458 -3.26694731045e+12 +UniRef50_UPI00035D2BA5 hypothetical protein 0.00332808398622 0.000630558278289 -1.08902423065e+12 +UniRef50_UPI0003B75FCC SpeB arginase agmatinase formimionoglutamate hydrolase SpeB 5.31753949305e-06 1.99802208185e-05 5919504382.4 +UniRef50_Q72ZS2 4.56636276892e-05 0.00021883532944 69911541052.6 +UniRef50_Q5HKE8 Accumulation associated protein 0.00469941004339 0.00199446713919 -1.09201864381e+12 +UniRef50_UPI0004726693 hypothetical protein 2.72384181748e-06 0.000234744223097 93669475133.0 +UniRef50_Q9HWU3 Chaperone CupB2 0.00119165504671 0.000531199922635 -2.66633838285e+11 +UniRef50_B2FQX2 tRNA specific 2 thiouridylase MnmA 0.000848508938512 1.0976850808e-05 -3.38121981481e+11 +UniRef50_I0E539 Integral membrane protein 0.000159247779219 0.00283844938843 1.08162656714e+12 +UniRef50_D9WMQ1 Linear gramicidin synthetase LgrC 2.61840860033e-05 4.51626827214e-05 7661892388.67 +UniRef50_Q8CUF5 0.0134756277929 0.00364147086919 -3.97016982878e+12 +UniRef50_B2IUI4 S adenosylmethionine synthase 0.00280797324293 0.00532278314709 1.0152596185e+12 +UniRef50_C1CSL1 Transposase 0.000498864703879 6.32538489508e-05 -1.75861447681e+11 +UniRef50_UPI000288C7BA 30S ribosomal protein S4 4.15653772414e-05 2.84579714207e-05 -5291620575.77 +UniRef50_S2E7R7 GMP synthase , N terminal domain protein (Fragment) 0.00011558767407 0.00010599065434 -3874434633.68 +UniRef50_UPI0003787C04 hypothetical protein 1.29711857342e-05 4.45244240939e-05 12738429527.6 +UniRef50_Q8CUF8 0.0407873277028 0.0133660968503 -1.10702873915e+13 +UniRef50_P39434 Soluble lytic murein transglycosylase 0.00351587897532 0.000324226819846 -1.28850914114e+12 +UniRef50_T1YBP6 0.00412326218797 0.0022963030733 -7.37565813902e+11 +UniRef50_D8LEF1 9.07709684701e-06 3.31295799127e-05 9710282570.78 +UniRef50_UPI0001912679 hypothetical protein, partial 0.000105609823837 0.000365477262384 1.04911673873e+11 +UniRef50_C7RGN8 NusA antitermination factor 0.000218158599058 0.000646189081135 1.72801158139e+11 +UniRef50_UPI0004715BAF hypothetical protein 1.99921429523e-05 0.000663640337699 2.59848674671e+11 +UniRef50_F0KKH9 6.94887207843e-05 0.00351622771526 1.39149082832e+12 +UniRef50_A1KR53 Truncated pilin 0.000416344840642 0.000513594269898 39260787975.3 +UniRef50_C1FK14 Transcriptional regulator, PadR family 0.000342132316185 0.000573430495526 93377913347.8 +UniRef50_C6DIM2 p hydroxybenzoic acid efflux pump subunit AaeA 0.00266710302094 0.00177452980835 -3.60342759028e+11 +UniRef50_UPI0003B3D425 hypothetical protein 1.35848518416e-05 5.61264042979e-06 -3218479576.98 +UniRef50_W9UYG1 0.000113929372892 4.63803771412e-05 -27270358504.0 +UniRef50_UPI00046605A2 ABC transporter permease, partial 9.86204550387e-05 1.5208704671e-05 -33674347200.7 +UniRef50_UPI0003634E25 hypothetical protein 0.000101104543546 3.66176712293e-05 -26034141697.2 +UniRef50_UPI0004779514 ABC transporter ATP binding protein 4.34915219524e-06 1.22987128859e-05 3209335202.9 +UniRef50_UPI0002881118 ribosome biogenesis GTPase ObgE 1.59775341625e-05 0.00103421837341 4.11076322025e+11 +UniRef50_UPI0003FA120A hypothetical protein 1.58689415224e-05 2.76042739469e-05 4737697708.49 +UniRef50_A5UL98 Cobalt ABC transporter, permease component, CbiQ 0.00253568526927 0.000495290313477 -8.23732482114e+11 +UniRef50_A4IK74 Phosphomethylpyrimidine synthase 2.60596728008e-06 9.66913450079e-06 2851487281.81 +UniRef50_A9XTE3 Jhp0563 like glycosyltransferase 0.000387356403882 0.000575298332566 75874462916.5 +UniRef50_W7X9E0 4.34368587273e-05 0.000249305229591 83111587606.8 +UniRef50_UPI00016A4104 Succinate semialdehyde dehydrogenase (+)) 1.24268124649e-05 1.84423515042e-05 2428546929.13 +UniRef50_A6LY03 ABC transporter related 0.000232625774347 0.00132706855048 4.41839979047e+11 +UniRef50_X1JM57 Marine sediment metagenome DNA, contig 2.99629469866e-05 1.64638928718e-05 -5449733798.17 +UniRef50_UPI00046E044E 7.48804682208e-06 4.62227673421e-06 -1156946551.43 +UniRef50_C5YVS6 1.9807607126e-06 1.27037929336e-05 4329019694.02 +UniRef50_UPI00047E12F0 hypothetical protein 3.74879285403e-06 4.82506144331e-05 17965931470.2 +UniRef50_A7FM33 Polyamine aminopropyl transferase 0.00376831176294 0.000753665078294 -1.21704986047e+12 +UniRef50_D3D5C3 2.45874977153e-05 2.66737712782e-06 -8849421671.3 +UniRef50_F7Q1E0 Carbonic anhydrase Gamma family Zn dependent enzyme protein 1.6452639757e-05 1.48339560468e-05 -653482477.291 +UniRef50_D5BS21 Surface presentation of antigens protein 0.0110688456128 0.00207929368858 -3.62919242601e+12 +UniRef50_UPI000363FFD6 hypothetical protein 9.27389603794e-06 2.44196351808e-05 6114520751.11 +UniRef50_A0A017HJR6 Uracil DNA glycosylase, family 4 6.67122256848e-06 0.000149401368563 57621911434.0 +UniRef50_UPI000363A8BB hypothetical protein 1.63555119175e-05 0.000233811113467 87789494826.0 +UniRef50_W0F5U5 Spermidine putrescine ABC transporter permease protein 0.0189661852469 0.0133830857683 -2.25396577185e+12 +UniRef50_D9RGW2 SWIM zinc finger domain protein 0.0146069619984 0.00159961517614 -5.25122553026e+12 +UniRef50_N8ZPV3 7.68164587931e-06 0.00142624545122 5.72691615951e+11 +UniRef50_P28306 UPF0755 protein YceG 0.00373805359765 0.000557007659957 -1.28422728087e+12 +UniRef50_UPI0003B40484 ABC transporter substrate binding protein 4.16479467449e-06 1.02418607803e-05 2453386160.9 +UniRef50_A0A023LG84 0.000729966895211 0.000641992837382 -35516206708.7 +UniRef50_T2A0U3 0.00644175557497 0.00291901259026 -1.42217457185e+12 +UniRef50_M7DV55 ATP binding protein 0.00528052208862 0.00150175179625 -1.52553593776e+12 +UniRef50_O67260 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.7183587158e-05 2.13268607061e-05 -18512923193.9 +UniRef50_T2SKF0 5.41069262592e-05 0.000945032115242 3.59677431674e+11 +UniRef50_R4MC14 Poly polymerase 0.000180486374365 0.00357467742193 1.37027657731e+12 +UniRef50_N0C862 Histidine kinase 0.00457806341145 0.0070485833319 9.97379208574e+11 +UniRef50_Q4SDM4 Chromosome 10 SCAF14634, whole genome shotgun sequence 8.88202326721e-05 0.000138321641777 19984326306.2 +UniRef50_UPI00047BEAD1 carnitine dehydratase 9.43135891636e-06 0.000180250783341 68961897830.4 +UniRef50_A4VS16 Predicted esterase of the alpha beta hydrolase superfamily 0.000105051759422 0.000161081839199 22620030772.4 +UniRef50_R5N6D2 DNA repair protein radA 7.1041348413e-05 0.000502203814538 1.74065578533e+11 +UniRef50_A0LT91 S malonyltransferase like protein 0.000287425879838 0.00725903193647 2.81452291629e+12 +UniRef50_UPI00047DAB1B 3 ketoacyl ACP reductase 9.36161069431e-06 7.88780938876e-05 28064657328.3 +UniRef50_UPI000350AD27 PREDICTED 2.42238996511e-05 9.72645983213e-06 -5852794358.52 +UniRef50_UPI0003689445 hypothetical protein 0.000106552373166 2.56273932271e-05 -32670407462.5 +UniRef50_A3XF72 8.200264802e-05 2.9407621757e-05 -21233257515.9 +UniRef50_UPI0003767FF8 MULTISPECIES 3.94504180628e-06 0.000485169128244 1.94276068979e+11 +UniRef50_A6M2A6 0.000646321432094 0.00215613081364 6.09528574776e+11 +UniRef50_UPI0001AF2BB8 hypothetical protein 3.13933506579e-05 2.98851871602e-05 -608864111.269 +UniRef50_UPI00046AF737 iron transporter FeoB 2.02745698268e-06 1.75810874318e-05 6279191476.81 +UniRef50_UPI0003B74184 pyridine nucleotide disulfide oxidoreductase 6.93318721851e-06 5.84914695182e-05 20814711255.7 +UniRef50_Q1C306 Serine threonine transporter SstT 0.00151173674236 0.0174023159613 6.41522183001e+12 +UniRef50_UPI0004728704 dihydrofolate reductase 9.39461044018e-06 1.67579754899e-05 2972680829.22 +UniRef50_O06745 Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase 0.000204579640357 0.0003430472397 55901069043.3 +UniRef50_Q1BQE2 Oxygen dependent choline dehydrogenase 0.00199009862921 0.00883979572834 2.76530677415e+12 +UniRef50_Q17WJ2 Lipid A disaccharide synthase 0.000113814871007 0.00480051968337 1.89208024509e+12 +UniRef50_Q8R9S4 Diaminopimelate epimerase 6.99981141936e-06 1.2596920151e-05 2259621479.21 +UniRef50_Q67Q92 Queuine tRNA ribosyltransferase 0.00715441280628 0.00749925503936 1.39217041184e+11 +UniRef50_UPI0001A64225 ubiquitin activating enzyme E1C 7.26104725343e-06 5.80967837562e-06 -585935426.271 +UniRef50_UPI0001B43C5C hypothetical protein 0.000359370354861 0.000448340793706 35918457951.8 +UniRef50_I6DSS5 Inner membrane transport YhaO domain protein 6.64039115119e-06 5.33471461469e-05 18856090148.1 +UniRef50_UPI000328C4DC PREDICTED 5.27424085961e-05 6.42183268496e-05 4632969024.29 +UniRef50_B2SSQ5 MazG family protein 1.23772007498e-05 8.22109049933e-06 -1677872709.32 +UniRef50_P56468 Adenylosuccinate lyase 2.19245649797e-05 0.00389146945085 1.56218275508e+12 +UniRef50_A4W496 Glutamate tRNA ligase 0.0306025236873 0.0143672193783 -6.55439157913e+12 +UniRef50_A3M472 Putative VGR related protein 0.000218687245022 0.00613097234509 2.3868620468e+12 +UniRef50_L1ENB1 4Fe 4S binding domain protein 0.000239690393573 0.000498665076251 1.04551257374e+11 +UniRef50_UPI00035C121E hypothetical protein 5.05027168959e-06 3.85313244358e-06 -483299804.165 +UniRef50_A7ZV28 Elongation factor P beta lysine ligase 0.00260751095839 0.000813093308337 -7.24428425306e+11 +UniRef50_D9WVR9 Putative PE PGRS family protein 1.67315728401e-05 0.000159818499389 57765948121.9 +UniRef50_P62410 Phosphoglycerate kinase 3.89912285422e-05 3.51353345263e-05 -1556671731.36 +UniRef50_F2QFE8 ABC transporter, membrane spanning permease amino acid transport 0.00392621463373 0.00166205695057 -9.14068241031e+11 +UniRef50_UPI00038138EB hypothetical protein 9.74520957538e-05 6.70327217113e-05 -12280674588.7 +UniRef50_A0A009ENE3 0.000843973069637 0.00168582303174 3.39865160362e+11 +UniRef50_R4YI13 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 2.18983818154e-05 8.19958858392e-05 24262099853.7 +UniRef50_B2JNG5 Response regulator receiver modulated diguanylate cyclase 0.000308517570146 0.000672437675137 1.46919012187e+11 +UniRef50_N6UYM2 0.000922155916471 0.00186240189643 3.79588840225e+11 +UniRef50_Q5HKC3 Membrane protein, putative 0.00726108399416 0.00309896527255 -1.68029840285e+12 +UniRef50_Q6F9M2 0.000151804016961 0.0028152436106 1.07526324803e+12 +UniRef50_UPI0002F008CE hypothetical protein 3.05510220014e-05 2.92928165668e-05 -507952973.865 +UniRef50_D6SFU4 0.0104844913194 0.000760127631047 -3.92584495235e+12 +UniRef50_UPI00036F8D63 acriflavine resistance protein B, partial 0.00106048843486 0.000499540787336 -2.26461448907e+11 +UniRef50_E1SCF3 Protein CreA 2.11541297717e-05 1.45553518633e-05 -2664007617.73 +UniRef50_Q09CY9 Glycerophosphoryl diester phosphodiesterase family protein 0.000204599451951 0.00422326132078 1.62238311097e+12 +UniRef50_UPI0003B43E42 ferredoxin 4.46274154567e-06 3.92315621134e-05 14036599524.6 +UniRef50_Q5F9U6 Ferrochelatase 0.000122353727569 0.00366894321078 1.43180169592e+12 +UniRef50_B2UCS2 MJ0042 family finger like protein 0.000436415527039 2.88660891432e-05 -1.64532709273e+11 +UniRef50_Q2SQX2 Methionyl tRNA formyltransferase 7.03321240642e-06 8.12177811378e-06 439467334.265 +UniRef50_M2P9Q5 7.17253100933e-06 1.38216466581e-05 2684329581.23 +UniRef50_Q0DG35 Glutamate synthase 2 [NADH], chloroplastic 1.1608916872e-06 7.63134752787e-06 2612202424.3 +UniRef50_S5N4L1 Phosphodiesterase 1.11725266408e-05 1.40569125541e-05 1164461988.59 +UniRef50_E2CN00 RNA binding region RNP 1 0.000396145670546 7.73765875453e-05 -1.28690990544e+11 +UniRef50_M1LU43 ABC type multidrug transport system, permease component 0.000240268655239 0.00135462214449 4.49878178265e+11 +UniRef50_Q73UD7 Uracil phosphoribosyltransferase 6.27443715546e-06 3.12001698176e-05 10062824148.8 +UniRef50_G3VFK2 0.000230091468406 0.000109538040348 -48668898263.9 +UniRef50_UPI00046F72B6 hypothetical protein 6.2197453924e-06 8.59113495867e-06 957359068.126 +UniRef50_M1MME7 Diguanylate cyclase with GAF sensor 0.000381712520228 0.000671718341601 1.1707890886e+11 +UniRef50_Q9RXG2 0.000387828070733 0.00530660967886 1.98577249544e+12 +UniRef50_Q492H7 NADH quinone oxidoreductase subunit B 0.00404767099453 0.00502923563427 3.96269690216e+11 +UniRef50_Q9RU97 NADH quinone oxidoreductase subunit K 1.34522316482e-05 0.00418202630395 1.68290450714e+12 +UniRef50_M4JWD8 Peptidase, M48 family protein 0.000162141165429 0.000127842729522 -13846699464.8 +UniRef50_A7ZV66 3 keto L gulonate 6 phosphate decarboxylase UlaD 0.000103341699514 7.2991824593e-05 -12252616940.5 +UniRef50_E0S0B7 HD domain containing protein 0.000468041431179 0.000295883924982 -69502097861.9 +UniRef50_UPI00037812FE hypothetical protein 3.35813047136e-06 0.000287064064529 1.14535567043e+11 +UniRef50_A0A016QQ81 Ferripyochelin binding protein 6.54836586944e-05 2.78214091041e-05 -15204712327.4 +UniRef50_UPI0002481AAE ATP dependent DNA helicase 2.42694999284e-05 7.7027657563e-06 -6688193881.97 +UniRef50_Q9HVI1 Cyclic diguanosine monophosphate binding protein PA4608 0.00105837193136 0.00466289534518 1.45519033464e+12 +UniRef50_C7NJL3 0.000109848409144 0.000906500687807 3.21618300919e+11 +UniRef50_Q6GCB8 Probable acetyl CoA acyltransferase 0.0203482312237 0.00454040359876 -6.38181399603e+12 +UniRef50_UPI0001744E0A heme oxygenase BphO 7.89527497315e-05 0.00023252591904 61999373004.8 +UniRef50_U3T6D3 2.72456884078e-05 0.000584785554841 2.25085685863e+11 +UniRef50_Q9I5S3 0.000501945955988 0.000806210423977 1.22835299472e+11 +UniRef50_Q9I5S0 0.00174343484166 0.000180806146044 -6.30852380032e+11 +UniRef50_G7ZR16 6 phospho beta glucosidase 0.00467654438836 0.000567947675405 -1.65869091117e+12 +UniRef50_D9W5N7 Modular polyketide synthase 0.000410239963179 0.000593776310854 74095875800.7 +UniRef50_A6LR15 Heavy metal transport detoxification protein 0.000316180921983 0.000512459086671 79239903688.5 +UniRef50_F8TV67 3.46312723582e-05 1.03103551076e-05 -9818652745.28 +UniRef50_UPI00039592BB PREDICTED 7.9666718241e-05 0.000268347866217 76172894816.0 +UniRef50_C5C3V4 Dihydrodipicolinate synthetase 0.000246186514471 0.00753736372692 2.94353771347e+12 +UniRef50_Q8VPM9 Putative minor silk ampullate protein 4.7304008625e-05 3.87749774621e-05 -3443274543.44 +UniRef50_Q6A9K7 UvrABC system protein B 0.00270230565789 0.00831561808501 2.26616310992e+12 +UniRef50_M9VGK7 AsnC family transcriptional regulator 0.000143530794236 0.00551264336394 2.16757663081e+12 +UniRef50_F0BGS2 8.07267186025e-06 4.23917160179e-05 13855019268.5 +UniRef50_A7X1H8 Probable dual specificity RNA methyltransferase RlmN 0.0173155908513 0.00438866654436 -5.2187579739e+12 +UniRef50_I0C1J1 ABC transporter ATP binding protein 0.0261910592652 0.0105394015222 -6.31876629829e+12 +UniRef50_Q6A6A0 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.000281006939596 0.0013911193257 4.48165992879e+11 +UniRef50_B9KJF4 Flagellar protein FlgJ 0.000715610509157 0.00112698588731 1.66077288304e+11 +UniRef50_Q9KZ75 Urocanate hydratase 0.0182166153492 0.0681099405334 2.01425476368e+13 +UniRef50_A6LXE4 0.000149203948168 0.000738619916081 2.37954459194e+11 +UniRef50_Q4L666 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0145257566457 0.00476950824406 -3.93871720237e+12 +UniRef50_C4Z005 Sex pilus assembly 8.8555487215e-05 6.91722850034e-06 -32958366857.2 +UniRef50_R6X9T8 HAD hydrolase family IIA 0.000278930533636 0.0011980488161 3.7105932948e+11 +UniRef50_UPI0002B45CA4 PREDICTED 2.98187693916e-05 1.34323196185e-05 -6615410857.75 +UniRef50_X5A6R4 NMT1 THI5 like domain containing protein 0.000221225350812 0.00152028612435 5.24446775546e+11 +UniRef50_UPI00036E0775 hypothetical protein 6.32796426477e-06 4.37819395129e-06 -787146201.924 +UniRef50_A6LY63 Restriction modification system DNA specificity domain 0.000631529146184 0.000962204258572 1.33497600711e+11 +UniRef50_A0A016QUC8 UvrABC system protein B 0.000162050388312 0.0521461707026 2.09866272878e+13 +UniRef50_P64625 0.00346788922668 0.000372247947718 -1.24974837211e+12 +UniRef50_A6M107 AzlC family protein 0.000478643582965 0.000829265443732 1.41550347806e+11 +UniRef50_UPI0003C16A5C PREDICTED 0.000251337971586 9.19579373135e-05 -64343675648.6 +UniRef50_UPI0002E46BCB hypothetical protein 5.50110513577e-05 0.000450612827147 1.59709291466e+11 +UniRef50_A9FT06 Succinate dehydrogenase 0.00779650447133 0.0030815218532 -1.90349634228e+12 +UniRef50_B4EW02 Exoribonuclease 2 0.00326555404829 0.000878606472084 -9.63640027657e+11 +UniRef50_D3QD55 Hydrolase 0.0231365541319 0.0076293262034 -6.26045820982e+12 +UniRef50_T0U7I8 7.23954326956e-06 1.65422229641e-05 3755605949.4 +UniRef50_UPI0003B4922D aliphatic sulfonate ABC transporter ATP binding protein 2.23952646445e-05 1.33864378036e-05 -3636973946.41 +UniRef50_UPI0002C44C85 9.46637939872e-05 9.77869884769e-05 1260871941.4 +UniRef50_UPI000479BB48 MerR family transcriptional regulator 0.000215980572717 0.000155763447928 -24310392224.5 +UniRef50_L7X2B6 0.00944755731629 0.001823243788 -3.07802893222e+12 +UniRef50_E1HW74 0.000244259788288 0.000138828911316 -42563738815.9 +UniRef50_Q6GGX3 Extracellular matrix binding protein ebh 0.003334960755 4.60832309785e-05 -1.32776021551e+12 +UniRef50_M1VHC0 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide a dehydrogenase 0.000293814387718 0.000159090209926 -54389803826.2 +UniRef50_A0A011PNT7 N acetylmuramoyl L alanine amidase AmiC 1.31242779817e-05 8.68316240677e-06 -1792932856.22 +UniRef50_UPI00042B1EB5 Urease isoform 3 1.12520559249e-05 1.84403915345e-05 2902019296.39 +UniRef50_B9JSW9 Altronate oxidoreductase 0.000334571641719 0.000131641919103 -81925219247.8 +UniRef50_D4TSX0 8.82751808228e-06 0.0017486384547 7.02383024995e+11 +UniRef50_UPI00022CADD1 PREDICTED 1.6286251196e-05 4.72618973113e-05 12505248450.7 +UniRef50_U6HVE2 NADH dehydrogenase iron sulfur 1.49300869617e-05 2.99851778646e-05 6077924944.24 +UniRef50_H4AYY9 0.000271572653853 0.000424916122588 61906640064.3 +UniRef50_UPI000467CE02 hypothetical protein 1.16220723644e-05 8.99413266923e-06 -1060931503.39 +UniRef50_F4QVG8 ABC transporter ATP binding protein 4.76204554315e-05 0.000146436949921 39893431440.2 +UniRef50_C4LBT6 CreA family protein 3.36022263197e-05 1.89467968641e-05 -5916576713.57 +UniRef50_P75713 0.00323162144966 0.00268839973059 -2.19305274069e+11 +UniRef50_Q9A5B6 Histidinol phosphate aminotransferase 2 2.27177554584e-05 3.28487897182e-05 4090022852.45 +UniRef50_UPI00046D93F6 30S ribosomal protein S2 1.41273048132e-05 7.10809810176e-05 22992897983.9 +UniRef50_UPI00046FBC18 ribonucleoside diphosphate reductase, partial 2.52582639161e-05 6.91638117411e-05 17725208438.6 +UniRef50_E5QQY5 Magnesium transporter 0.017965537466 0.00240778700589 -6.28085477581e+12 +UniRef50_E8SE09 0.00472048239387 0.00187938577467 -1.14698556935e+12 +UniRef50_B4V430 Secreted protein 3.40701929331e-05 1.29466452027e-05 -8527835433.84 +UniRef50_UPI0001BF7CE0 hypothetical protein SMAC_11079 0.000128207828784 0.000414173488835 1.15447846156e+11 +UniRef50_Q04677 Acetyl CoA acetyltransferase IB 1.21298909665e-05 4.07787402473e-05 11565892015.6 +UniRef50_G8VNQ8 L lactate dehydrogenase 0.000446262692631 0.00571270550924 2.12612759159e+12 +UniRef50_UPI00037C43AF hypothetical protein 2.00906876099e-05 3.70002381506e-05 6826593056.8 +UniRef50_UPI00037D4375 hypothetical protein 2.13910017578e-05 5.40325035305e-05 13177774821.9 +UniRef50_Q88J90 Ribose import ATP binding protein RbsA 0.00440773607674 0.000307383772219 -1.65536254232e+12 +UniRef50_U2ZG68 7.98678786862e-05 1.57130771881e-05 -25900080632.7 +UniRef50_Q896G3 Glutamate 5 kinase 7.47678913671e-06 0.0024131528176 9.71200933654e+11 +UniRef50_G7VUW1 2.1019726512e-05 2.11359497786e-05 46920758.9463 +UniRef50_D6XC51 Transcriptional regulator 1.36787110789e-05 9.94961436477e-06 -1505482104.66 +UniRef50_P33655 DNA primase 8.35762336971e-05 0.000530095324728 1.80265236455e+11 +UniRef50_A1SJN3 Putative spermidine synthase 7.89399475999e-06 4.33104682062e-05 14298064939.2 +UniRef50_A5ULC4 Archaeosine tRNA ribosyltransferase 0.00192138966956 0.00240659929951 1.95885081803e+11 +UniRef50_UPI00037F7E70 hypothetical protein 7.29407301526e-05 0.000288014754741 86828022981.2 +UniRef50_UPI000155436C hypothetical protein ORF028 6.20073369599e-05 1.49679770166e-05 -18990366847.0 +UniRef50_D6TC11 2.05278831548e-05 4.74473247922e-05 10867708927.7 +UniRef50_H6MGY8 0.0008644717302 0.00144056929363 2.32577655869e+11 +UniRef50_UPI00029A30E6 DEAD DEAH box helicase 1.17690045276e-05 4.14982408194e-05 12002057509.8 +UniRef50_D2AI68 0.000679051253281 7.64917025722e-06 -2.71053259947e+11 +UniRef50_Q5HM66 0.0188302815262 0.00564301100836 -5.32386293404e+12 +UniRef50_C1L1N4 Protease HtpX homolog 0.00319280056892 0.00528929293076 8.46379693329e+11 +UniRef50_R7IC53 4.71667980926e-06 1.14380848547e-05 2713513697.76 +UniRef50_Q2LSL3 Chemotaxis response regulator protein glutamate methylesterase 2 8.44274447877e-05 9.1517727501e-06 -30389712538.0 +UniRef50_UPI0004659E7D hypothetical protein 6.88292749957e-06 7.5503558979e-05 27702990998.1 +UniRef50_P48372 DNA gyrase subunit A 0.000930594521004 0.00364226957599 1.09473649569e+12 +UniRef50_Q89AT7 NADH quinone oxidoreductase subunit K 4.0262775166e-05 5.81517340679e-05 7221992230.91 +UniRef50_UPI00041970DE hypothetical protein 6.13008733624e-06 4.52171149826e-05 15779912712.6 +UniRef50_UPI00016C51C4 hypothetical protein 0.000154749066346 6.04312757241e-05 -38077249483.5 +UniRef50_M5Q8W3 Opacity protein 0.00366758055408 0.000600644146164 -1.23815986342e+12 +UniRef50_UPI00046AB508 ABC transporter permease 5.60732507828e-05 4.31860228865e-05 -5202732045.81 +UniRef50_C6S5R7 0.00060237125881 0.00448312547227 1.56670809818e+12 +UniRef50_Q28TI8 Chromosomal replication initiator DnaA 8.29777069447e-05 1.35544832623e-05 -28027007319.3 +UniRef50_Q9I633 0.00110122422018 0.00112976333564 11521591125.5 +UniRef50_S5UJA4 0.000563272726229 0.000215762773233 -1.40294032451e+11 +UniRef50_UPI0003612EB0 hypothetical protein 1.236221516e-05 1.34671040401e-05 446057199.408 +UniRef50_A6QI12 0.0179601373816 0.00728077508766 -4.31138960856e+12 +UniRef50_UPI0003C17432 PREDICTED 5.79010549164e-05 5.03991597532e-06 -21340690469.6 +UniRef50_F3ZDJ3 2.35894280487e-05 6.04648472623e-06 -7082301495.42 +UniRef50_U5NMQ2 Phage major tail protein 2 0.0102943503063 0.000987839050157 -3.75715279784e+12 +UniRef50_C6D5Z2 Inosine uridine preferring nucleoside hydrolase 0.01789529746 0.00573741625865 -4.90828583498e+12 +UniRef50_A0A032VXU1 0.00013212252015 2.93015154984e-05 -41510101333.6 +UniRef50_J4TL27 5.00051400286e-05 2.65842247385e-05 -9455310909.56 +UniRef50_P33517 Cytochrome c oxidase subunit 1 0.0136412285444 0.00313674057469 -4.24079069793e+12 +UniRef50_UPI000363849B hypothetical protein 1.01937742949e-05 1.12750633357e-05 436529654.68 +UniRef50_R7B083 0.000699377019834 0.00201040717165 5.29278960439e+11 +UniRef50_P05101 Modification methylase EcoRII 0.00277558740306 0.00180407385009 -3.92211943146e+11 +UniRef50_Q83EC8 Lipoprotein signal peptidase 1.53027344975e-05 2.2156846363e-05 2767089069.51 +UniRef50_Q5PK75 N acetyl gamma glutamyl phosphate reductase 0.00187205310246 0.000545553657893 -5.35524103752e+11 +UniRef50_E7HD27 EAL domain protein 0.00288123176201 0.00150581795258 -5.55271433092e+11 +UniRef50_F3U4M2 TRAP dicarboxylate family transporter DctQ subunit 0.0208209957479 0.00031754484429 -8.27749473542e+12 +UniRef50_B3Q9Q6 Polyphosphate kinase 2.36701005378e-06 0.000307542962394 1.2320327689e+11 +UniRef50_W5YF86 4.9834501953e-05 3.10333472713e-05 -7590256861.11 +UniRef50_P30866 0.00516235348174 0.000350871332905 -1.94245438701e+12 +UniRef50_M1FJM0 0.000121777348094 4.70100154563e-05 -30184489684.2 +UniRef50_Q6F7D3 Septum formation, penicillin binding protein 3, peptidoglycan synthetase 6.90523150384e-05 0.00740593690898 2.96199034427e+12 +UniRef50_UPI000382D7E4 hypothetical protein 5.45345376878e-06 9.18193274234e-06 1505232715.21 +UniRef50_P37755 Phosphomannomutase 0.00303176942356 0.00613549440538 1.25301186215e+12 +UniRef50_F2J6H9 Bacteriophage related protein 0.00501063747204 0.000252407440337 -1.92095585385e+12 +UniRef50_F4DMU6 0.00190827878082 0.000597588102367 -5.29141910874e+11 +UniRef50_UPI00036D9AC5 hypothetical protein 4.26343589344e-05 5.13812084703e-05 3531210493.56 +UniRef50_Q2RYZ8 Glyoxalase family protein 1.18913295002e-05 2.83455037213e-05 6642752048.48 +UniRef50_P39400 Putative L galactonate oxidoreductase 0.00242366681941 0.00124901404606 -4.74221739212e+11 +UniRef50_K6KS82 Thiamine biosynthesis protein ThiH 0.000537631260744 0.00022323218345 -1.26926765614e+11 +UniRef50_B8GCI5 SAF domain protein 0.00481591578526 0.00175863145623 -1.23426320073e+12 +UniRef50_F9YY04 N acetylgalactosaminoglycan deacetylase 0.000892585745973 0.00489596295345 1.61621250562e+12 +UniRef50_P23842 0.00278058507856 0.000965219277847 -7.3288545079e+11 +UniRef50_UPI0003781C48 hypothetical protein 4.13030439537e-05 2.47627958913e-05 -6677501114.46 +UniRef50_Q7WJ90 Isoprenyl transferase 0.000159053085188 0.00236730761292 8.91499451175e+11 +UniRef50_P21883 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.011853523903 0.00201255846901 -3.97291850793e+12 +UniRef50_P11512 DNA directed RNA polymerase subunit A 0.00362178105971 0.000415063051819 -1.29459141064e+12 +UniRef50_U5MVJ3 Isochorismatase hydrolase 0.000236421287378 0.000326316801329 36291922124.0 +UniRef50_UPI000462F18D hypothetical protein 7.98109725941e-05 2.04315075058e-05 -23972218724.1 +UniRef50_Q8KLH5 Cbb3 type cytochrome c oxidase subunit FixP 5.85796773065e-05 3.70552172911e-05 -8689688643.04 +UniRef50_Q49YW6 0.0240410890848 0.00369208288584 -8.21514351292e+12 +UniRef50_UPI0002880B99 putative tartrate dehydrogenase 5.16879667234e-05 7.2030985309e-05 8212726239.92 +UniRef50_M1MKH3 Xylose transport system permease protein XylH 0.000458041194981 0.000839849003335 1.54140497541e+11 +UniRef50_W6IFL4 ABC transporter ATP binding protein uup 0.0023587129122 0.000659668875454 -6.85924927251e+11 +UniRef50_Q2RPU1 UPF0301 protein Rru_A3059 3.09504684075e-05 4.27170627701e-05 4750318536.53 +UniRef50_R5BPH7 0.000158830009337 0.00313271613378 1.20059432212e+12 +UniRef50_V2PEB0 Virulence factor MviN 2.1484164896e-05 2.20039700713e-05 209851727.995 +UniRef50_M1XJR0 6.63581375609e-06 1.20984357469e-05 2205327531.6 +UniRef50_UPI0003B68FE0 MerR family transcriptional regulator 5.31846975178e-05 8.94839451467e-05 14654451709.6 +UniRef50_Q9RVH4 Aspartate tRNA ligase 0.000201469908573 0.0414308882991 1.66448221461e+13 +UniRef50_UPI000468F8E2 cystathionine beta lyase 1.23996303595e-05 4.8227116963e-05 14463995994.5 +UniRef50_R9U1S9 RNA polymerase sigma factor 0.00129483588609 0.00023625336415 -4.27362754376e+11 +UniRef50_UPI0004687562 MerR family transcriptional regulator 0.000290881013318 0.000129877749424 -64998993366.2 +UniRef50_O25534 Plasminogen binding protein PgbB 8.72463764734e-05 0.00320398865443 1.25826710434e+12 +UniRef50_G7M904 Protein FdhD homolog 0.00103937441773 0.00157398702709 2.15829670833e+11 +UniRef50_K2EJ34 NADH dehydrogenase 1 alpha subcomplex subunit 9 7.29156488472e-05 7.48647990631e-06 -26414558407.6 +UniRef50_UPI00036C5DD6 hypothetical protein 1.98068723647e-05 8.00193321237e-05 24308508894.7 +UniRef50_M2IF34 0.00310512668249 0.00196877803463 -4.58757893707e+11 +UniRef50_Q163W1 Ferredoxin flavodoxin oxidoreductase family protein, putative 0.0065292919727 0.00229630977559 -1.70890685751e+12 +UniRef50_C5XYX3 0.000306057379469 5.84501891865e-05 -99962061198.8 +UniRef50_A3MMR3 6,7 dimethyl 8 ribityllumazine synthase 1.93804017857e-05 0.00790566518263 3.18378994162e+12 +UniRef50_C6A0C0 0.000586072951818 0.00193065899772 5.42825886656e+11 +UniRef50_G8VCJ9 Thioredoxin 0.000419629596194 0.00385010181324 1.38492373065e+12 +UniRef50_T3IDK7 Pyridoxal phosphate dependent enzyme family protein 0.000746352796944 0.00518364784753 1.79139046366e+12 +UniRef50_UPI0003AA60F6 hypothetical protein 0.000140200449436 5.66717307982e-05 -33721568726.7 +UniRef50_Q8XHI3 Probable cytosol aminopeptidase 0.000583662719966 0.00259482982871 8.11932841594e+11 +UniRef50_UPI000382BCA5 hypothetical protein 1.39573917259e-05 1.41648661781e-05 83759982.351 +UniRef50_D4HCP3 0.00010342081886 0.00209105665189 8.02432976829e+11 +UniRef50_W5XBB1 Histidine ammonia lyase 3.61367647422e-06 9.26555519941e-05 35947297814.1 +UniRef50_C9ADA6 0.00198676836238 0.000560727921252 -5.75710025568e+11 +UniRef50_C9ADA5 0.00308347474601 0.00222782084296 -3.45437980715e+11 +UniRef50_Q46858 0.002701613847 0.000938775529307 -7.1167946131e+11 +UniRef50_P77622 Probable D,D dipeptide transport ATP binding protein DdpF 0.00244855463794 0.0021873905373 -1.05435152272e+11 +UniRef50_UPI00036F0C0F MULTISPECIES 4.84202910377e-05 9.34398274799e-05 18174939313.6 +UniRef50_Q5HF07 Riboflavin biosynthesis protein RibBA 0.0190624057742 0.00555824631039 -5.45179489021e+12 +UniRef50_C4ZZR6 Phosphoadenosine phosphosulfate reductase 0.00328279120666 0.000818494850332 -9.94866679367e+11 +UniRef50_B2VEQ1 Electron transport complex subunit A 0.0170314075983 0.00126680153349 -6.36436492183e+12 +UniRef50_A8J087 Vasa intronic gene 0.000152141560531 0.000228901958219 30989114502.7 +UniRef50_Q2RXH9 S methyl 5 thioadenosine phosphorylase 0.000730391775106 0.000238479169743 -1.98591155232e+11 +UniRef50_UPI0002626AF6 binding protein dependent transport systems inner membrane component 6.71206543511e-06 2.71629193096e-05 8256260669.33 +UniRef50_P05165 Propionyl CoA carboxylase alpha chain, mitochondrial 1.61935911975e-05 3.24110961633e-06 -5229075759.15 +UniRef50_UPI0001CBB1BB PREDICTED 8.53039829045e-06 5.21788023025e-06 -1337304190.07 +UniRef50_W4TUT3 Transglutaminase like enzymes 2.5862456118e-05 0.000107251474331 32857745408.2 +UniRef50_K2BIT5 0.000129059078639 0.000287330651315 63896176099.9 +UniRef50_A8IAB0 Amino acid ABC transporter permease protein 0.00281637280679 0.000841597151491 -7.97241165267e+11 +UniRef50_UPI0004708F04 hypothetical protein 6.2257393452e-06 2.43093788484e-05 7300587178.65 +UniRef50_E2XPH3 0.000290564872999 0.000345399655201 22137474473.4 +UniRef50_Q39XE0 8 amino 7 oxononanoate synthase 1.25556389014e-05 5.04897623632e-05 15314471145.6 +UniRef50_C6S4Z8 1.45198687173e-05 0.00119479420507 4.76491233179e+11 +UniRef50_U7DLP3 Glutathione S transferase 0.000390104399963 0.000331816522686 -23531531329.4 +UniRef50_B7MUC3 Orotidine 5 phosphate decarboxylase 0.00388374367237 0.00119287884832 -1.08633515009e+12 +UniRef50_Q837G9 Probable potassium transport system protein kup 0.000443530771157 0.00180347286273 5.49025310733e+11 +UniRef50_Q3IW67 0.00229514943092 0.00230880025573 5511005490.25 +UniRef50_C4ZAX1 Chorismate synthase 5.7795286649e-06 1.45660469822e-05 3547225267.4 +UniRef50_UPI00046B80C4 PREDICTED 4.18902954676e-06 2.9089235791e-05 10052518820.7 +UniRef50_H4FA07 Pirin domain protein 2.01974655201e-05 1.76610919166e-05 -1023965148.54 +UniRef50_F3MX46 0.000875973587294 0.00127482698404 1.61022010748e+11 +UniRef50_UPI0003B5EAE0 oxidoreductase 1.39866628539e-05 1.10941363218e-05 -1167748456.3 +UniRef50_C6SS05 0.00598815968907 0.000194287306055 -2.33905737983e+12 +UniRef50_C6SS04 0.00587935260479 0.00225630437445 -1.46266903039e+12 +UniRef50_S9QXJ6 CRISPR associated helicase Cas3 0.000377661764705 2.18823682261e-05 -1.43632508263e+11 +UniRef50_I6FFI0 0.000191584057255 3.06088970939e-05 -64987647544.3 +UniRef50_F3ZKC2 Putative ADP ribosylation Crystallin J1 8.55179844037e-05 0.000270957744136 74864306605.6 +UniRef50_Q9RX93 Trans aconitate 2 methyltransferase 0.000152007780746 0.0243229490084 9.75810558443e+12 +UniRef50_A5UKU5 pH regulator (Monovalent cation 0.00252867423531 0.00252135717113 -2953988599.94 +UniRef50_S6GN96 Transporting ATPase 6.22803714885e-05 2.56353706763e-05 -14794036512.6 +UniRef50_X8L2K3 Putative aldehyde alcohol dehydrogenase 0.00282206543533 0.000672122116716 -8.67958500494e+11 +UniRef50_P55604 0.000658665929235 4.46762366605e-05 -2.47875173393e+11 +UniRef50_D4H9L5 Cyclic nucleotide binding domain protein 0.000507828684551 0.00602888510839 2.22891822929e+12 +UniRef50_A5EBW8 ATP synthase subunit a 2 0.00449838640915 0.00150499976281 -1.20846692211e+12 +UniRef50_Z9WHX3 0.0002209039276 7.44130526917e-05 -59140163845.5 +UniRef50_UPI000466F07F phosphogluconate dehydratase 1.05947354315e-05 4.83108469034e-05 15226457029.9 +UniRef50_UPI0004768B65 3 oxoacyl ACP synthase 1.1281742801e-05 7.64733761624e-06 -1467253972.25 +UniRef50_A6LU78 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000703390041336 0.00115209973879 1.81149611149e+11 +UniRef50_D7GFP5 Iron sulfur protein 0.000172660699175 0.00414534096087 1.60381977192e+12 +UniRef50_UPI00047E8C5B hypothetical protein 1.79336051512e-05 1.26032279032e-05 -2151938706.1 +UniRef50_UPI00036C9333 hypothetical protein 0.000397152344639 0.000486348309227 36009505461.7 +UniRef50_F0YDM5 1.5176269066e-05 0.000284353565144 1.08670177604e+11 +UniRef50_B4S8V9 3 methyl 2 oxobutanoate hydroxymethyltransferase 7.20326931592e-06 1.10056351147e-05 1535061733.24 +UniRef50_UPI0002631405 anaerobic dehydrogenase iron sulfur binding subunit 1, partial 1.19232248618e-05 1.87243630519e-05 2745702946.69 +UniRef50_F8KPC2 Arginase 0.000230583183354 0.00397294523244 1.51083748316e+12 +UniRef50_UPI00040E124F sodium 1.33710768226e-05 0.00303005492361 1.21787228782e+12 +UniRef50_H3VVP7 Gram positive signal peptide protein, YSIRK family 0.0103226323892 0.00261871323479 -3.11016670035e+12 +UniRef50_UPI00037B942A hypothetical protein 9.43495658811e-06 9.06567190075e-05 32790222191.8 +UniRef50_X1YQR0 6.13492178685e-05 1.7436954316e-05 -17727919660.2 +UniRef50_A6UIR4 Tripartite ATP independent periplasmic transporter DctQ component 7.83111358524e-05 2.30901302771e-05 -22293397588.7 +UniRef50_X1TSL9 Marine sediment metagenome DNA, contig 8.16098982228e-06 1.53847382988e-05 2916315905.33 +UniRef50_G4LLH9 0.00107510097027 0.000938402286798 -55186935999.1 +UniRef50_UPI0002376205 rtx family calcium binding cytotoxins and bacteriocins protein, partial 1.10250642722e-05 2.78836809785e-05 6806030442.82 +UniRef50_UPI000263050C tryptophan synthase subunit alpha, partial 1.29998909956e-05 1.22609418911e-05 -298322821.412 +UniRef50_E0TAZ2 Plasma membrane H+ transporting two sector ATPase, C subunit 0.000146007179933 6.08014709546e-05 -34398590306.2 +UniRef50_U5MY05 SH3, type 3 domain protein 0.00022469404098 0.000535790788628 1.25593574612e+11 +UniRef50_H7CVA1 Iron chelate ABC transporter permease protein 0.000234441534824 0.000961314176563 2.934474052e+11 +UniRef50_E3I0H1 L carnitine dehydratase bile acid inducible protein F 0.000879268488435 0.000331278904589 -2.21230119587e+11 +UniRef50_A0A037XJM6 3.23587209859e-06 1.73340412166e-06 -606564759.642 +UniRef50_V8HAI2 2.1256264004e-05 1.59266287479e-05 -2151639154.87 +UniRef50_K2HT96 0.000273963012405 1.8895318272e-05 -1.02973958154e+11 +UniRef50_U4TIA1 Phage portal protein, HK97 family 3.7623194529e-06 6.75123771946e-06 1206662982.36 +UniRef50_H5TPA6 Putative uracil permease 6.24446444935e-05 3.06187918985e-05 -12848487239.7 +UniRef50_Q6FER0 Sec independent protein translocase protein TatB 0.000529185965684 0.00206979674078 6.21963475328e+11 +UniRef50_B7RPE0 0.000386673330433 0.000368378426439 -7385877246.1 +UniRef50_Q65I16 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000601175682778 0.00390136299412 1.33232611544e+12 +UniRef50_V4IFH3 8.36475922404e-06 2.58604758054e-05 7063235480.5 +UniRef50_UPI000367658B hypothetical protein 2.17704235779e-05 3.81355705191e-06 -7249407372.08 +UniRef50_UPI00044077DF carboxymuconolactone decarboxylase 2.55063761025e-05 6.22334868425e-05 14827185298.1 +UniRef50_UPI0003B3D63E DEAD DEAH box helicase 2.61441615261e-06 9.81634331638e-06 2907506373.6 +UniRef50_C5N0Y3 0.0116853212466 0.00232857505071 -3.77743325947e+12 +UniRef50_UPI0003B528A9 ribonuclease D 5.87504737223e-05 1.08728215709e-05 -19328795698.4 +UniRef50_C5N0Y1 0.00949016883411 0.0038952447552 -2.2587395081e+12 +UniRef50_B4U5D1 Pyruvate formate lyase activating enzyme 0.00576430219594 0.00422583836511 -6.2109672758e+11 +UniRef50_UPI0003B42040 phosphoenolpyruvate synthase 2.07058458325e-06 9.04947398264e-05 35697916558.1 +UniRef50_UPI00041405D4 hypothetical protein 9.54553442703e-06 1.86528030537e-05 3676716103.34 +UniRef50_K0LAR2 APC family amino acid polyamine organocation transporter 0.0128754117271 0.00680745298341 -2.44970940705e+12 +UniRef50_UPI0003696CB7 hypothetical protein 0.00106841111076 0.000188171055716 -3.55363711981e+11 +UniRef50_P51362 Anthranilate synthase component 2 1.16010562662e-05 1.71166158398e-05 2226699083.39 +UniRef50_L0KYG3 Methanol cobalamin methyltransferase B subunit 0.00268090451571 0.000311464309399 -9.56572087588e+11 +UniRef50_UPI000476424B glycerol 3 phosphate ABC transporter ATPase 3.52149775234e-05 4.31231558842e-05 3192628648.52 +UniRef50_UPI000190A758 pyrroline 5 carboxylate reductase, partial 3.14170453931e-05 8.42404785176e-05 21325468168.8 +UniRef50_P68898 HPr kinase phosphorylase 0.00497873466573 0.00629147406749 5.29969005614e+11 +UniRef50_B9KZY0 50S ribosomal protein L16 0.0261491624965 0.0244104387282 -7.01944121803e+11 +UniRef50_UPI000366C8A8 calcium binding protein 1.64669888487e-06 3.14233362043e-06 603806096.248 +UniRef50_Q47QB9 0.00112843414284 0.0745696251234 2.96491100236e+13 +UniRef50_UPI000364349F hypothetical protein 2.15885116566e-05 7.04746708322e-06 -5870398132.96 +UniRef50_D0K393 Lipoprotein 0.00821212528409 0.00185166752122 -2.56779485046e+12 +UniRef50_P0AE07 Multidrug efflux pump subunit AcrA 0.00307260862145 0.000634719588446 -9.84205718885e+11 +UniRef50_K1QDX5 0.000170367404275 1.90086793457e-05 -61105374634.3 +UniRef50_UPI0003EF0A28 hypothetical protein 0.000101113144247 8.30030510118e-05 -7311266874.89 +UniRef50_U5LCP0 1.29815170349e-05 0.000872513739769 3.47003705964e+11 +UniRef50_M9VES2 0.000443826550027 0.00186232437716 5.72664979738e+11 +UniRef50_UPI0003677933 hypothetical protein 0.00012614892914 3.93480271489e-05 -35042589300.7 +UniRef50_UPI000333F6F9 PREDICTED 8.82159566685e-06 0.000330305502409 1.29786998203e+11 +UniRef50_D3DZ41 Arginase agmatinase family protein 0.00226449580392 0.00050225715194 -7.11437368904e+11 +UniRef50_E4U2W7 3.99549222094e-05 3.13019215606e-05 -3493322546.18 +UniRef50_UPI00047C1003 30S ribosomal protein S2 1.42201355636e-05 0.000143951690365 52374220658.4 +UniRef50_Q57657 Probable amidophosphoribosyltransferase 7.83462283127e-06 6.39014213947e-05 22634854597.0 +UniRef50_UPI000373F66D hypothetical protein 0.000204905612754 7.13502236322e-05 -53917949497.5 +UniRef50_X1H0M2 Marine sediment metagenome DNA, contig 4.95879619353e-05 0.000159663677551 44438917175.1 +UniRef50_G2JLL9 0.00013291760171 0.00448864269382 1.75845967044e+12 +UniRef50_P71362 L 2,4 diaminobutyrate decarboxylase 0.000104760218922 0.00482345320867 1.90499426484e+12 +UniRef50_A0A008Q9S3 7.56481722007e-05 0.000137537026618 24985289989.9 +UniRef50_P0ACP3 Catabolite repressor activator 0.00234896333666 0.00105020469483 -5.24324801268e+11 +UniRef50_B7V6Q1 0.000642555301206 0.000735228311697 37413231560.9 +UniRef50_K0DWJ8 9.15736378938e-05 7.34684501446e-05 -7309286469.99 +UniRef50_UPI000377E049 hypothetical protein 3.90093367829e-06 1.87471346809e-05 5993593528.12 +UniRef50_UPI00037626C6 peptidase 3.71102718145e-05 3.36700446023e-05 -1388861941.9 +UniRef50_H4F7M3 1.13485180716e-05 3.72372914155e-05 10451615489.9 +UniRef50_P75747 Protein AbrB 0.00225633196586 0.00158806502216 -2.69787565729e+11 +UniRef50_T1JYL1 8.0231088521e-06 1.17260441222e-05 1494920408.66 +UniRef50_F3ZCA1 Putative glutamate binding periplasmic protein 0.000120705753764 9.04845510458e-05 -12200670393.2 +UniRef50_Q9RYQ0 Catalase 0.000401590909646 0.0475205488625 1.90225015402e+13 +UniRef50_Q97M68 Prolipoprotein diacylglyceryl transferase 0.000334390924066 0.00469245024513 1.75940202731e+12 +UniRef50_P38021 Ornithine aminotransferase 0.0363448777619 0.0038629155494 -1.31133667437e+13 +UniRef50_A4Y017 Transcriptional regulator, TetR family 0.00162511351231 0.000864341576184 -3.07132966336e+11 +UniRef50_W4U293 0.000629143314759 0.00262827018416 8.07072049222e+11 +UniRef50_A3PNI0 0.0198044188252 0.00435366330203 -6.23765960681e+12 +UniRef50_UPI00037C3547 hypothetical protein 8.41604956353e-05 0.000153301484076 27913065488.8 +UniRef50_A0A023S1T5 Mutlidrug resistance protein 0.000102577714356 0.00462696631728 1.82655119949e+12 +UniRef50_G5M3D2 Glucan biosynthesis protein MdoG 6.79525928643e-05 0.000291965305604 90436681078.2 +UniRef50_UPI0003793B75 hypothetical protein, partial 8.66730654038e-05 7.07040147895e-06 -32136572261.0 +UniRef50_G7U887 0.00127044430963 0.006285730969 2.02473276888e+12 +UniRef50_F4A797 Transferase hexapeptide repeat containing protein 0.000469819556092 0.00335385138297 1.16431903956e+12 +UniRef50_UPI00047EC165 hypothetical protein 1.79678737142e-05 1.02221188172e-05 -3127056303.02 +UniRef50_UPI000225ABB3 Glycine cleavage system T protein 2.01638269094e-05 7.60073896135e-06 -5071872771.03 +UniRef50_Q1AT13 Lipoyl synthase 5.5855448211e-06 3.91666730715e-05 13557113561.5 +UniRef50_UPI000252BB02 PREDICTED 1.38727294061e-05 1.26269232769e-05 -502947222.118 +UniRef50_M4MFI8 Oxidoreductase,likely required for utilization of stachydrine 0.00633455674473 0.00202261065394 -1.74078555038e+12 +UniRef50_A5URF1 Spermidine putrescine ABC transporter ATPase subunit 0.00113433524055 0.000828419672073 -1.23501869e+11 +UniRef50_Q8KCS2 3 methyl 2 oxobutanoate hydroxymethyltransferase 6.65282901631e-06 0.00196488159383 7.90560982523e+11 +UniRef50_A0A035ZUD7 4.08331425698e-05 7.855590716e-06 -13313442363.4 +UniRef50_R6DSS9 Dihydroorotate dehydrogenase 0.00357087758517 0.000191764094291 -1.36418958265e+12 +UniRef50_A3TG55 0.000106409529527 0.000149731011855 17489414030.2 +UniRef50_UPI0003B6DC28 taurine pyruvate aminotransferase, partial 0.000405768803778 9.90501091207e-05 -1.23826100895e+11 +UniRef50_I1ZMS2 Oxidoreductase, short chain dehydrogenase 0.00803246549993 0.00646922075891 -6.3110108512e+11 +UniRef50_F3U214 Binding protein dependent transport systems inner membrane component 0.012168571997 0.001255647078 -4.40568170645e+12 +UniRef50_D5D972 Small heat shock protein 0.000867783882414 0.00423626721934 1.35989805906e+12 +UniRef50_A6LYN9 D galactose binding periplasmic protein 0.00090570956882 0.00264022433003 7.0024489399e+11 +UniRef50_UPI0003B622F4 transcriptional regulator 0.000166659418173 6.35450722712e-05 -41628526796.0 +UniRef50_W4SPZ4 1.8858534114e-05 9.3676222342e-06 -3831597592.46 +UniRef50_UPI0004709FDA molybdenum ABC transporter permease, partial 1.2366956433e-05 3.623277736e-05 9634924774.79 +UniRef50_Q92L73 Argininosuccinate synthase 4.67005755664e-06 0.000189802026764 74740047793.6 +UniRef50_UPI000425B71D hypothetical protein 5.80497949466e-05 1.35475765192e-05 -17966091682.8 +UniRef50_A4WTW6 0.0137101381369 0.00234596779109 -4.58785502265e+12 +UniRef50_G5SIY2 0.000160474594636 0.00153002624741 5.52904808512e+11 +UniRef50_K7SJ66 von Willebrand factor type A domain containing protein 0.000664998357309 0.00926626598169 3.47243728939e+12 +UniRef50_P45419 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.6277332444e-05 6.13007848381e-05 18176520231.4 +UniRef50_Q8XAR3 Poly beta 1,6 N acetyl D glucosamine N deacetylase 0.00330013676025 0.000943144675865 -9.51546628014e+11 +UniRef50_W4TPM5 Phosphoglycerate mutase family protein 0.000216945970609 0.00667100905552 2.60558446764e+12 +UniRef50_V5VCE3 Outer membrane protein assembly factor BamA 9.78018025449e-05 0.00266655611519 1.03703763818e+12 +UniRef50_W4TKT8 Molybdopterin guanine dinucleotide biosynthesis protein 9.21476590258e-05 0.000446279081066 1.42967200759e+11 +UniRef50_UPI0003787FA8 hypothetical protein 0.00023980166999 4.76333997079e-05 -77580688882.7 +UniRef50_P18080 5 aminolevulinate synthase, erythroid specific, mitochondrial 7.33743180374e-06 3.50860214266e-06 -1545745519.2 +UniRef50_UPI00046369B9 MULTISPECIES 1.10939165388e-05 1.58155976344e-05 1906200599.84 +UniRef50_UPI0003B333D6 AsnC family transcriptional regulator, partial 0.000198299294229 9.76501286571e-05 -40633303245.6 +UniRef50_F0KP66 Outer membrane usher protein 0.00014365236857 0.00966348105333 3.84327166147e+12 +UniRef50_Q2IL11 NADH quinone oxidoreductase subunit A 1.9229155422e-05 7.20028541249e-05 21305389772.5 +UniRef50_UPI0003B77D72 serine dehydratase subunit beta 1.1138583195e-05 0.000168171352961 63396056163.3 +UniRef50_Q92375 Thioredoxin reductase 5.97150396427e-05 1.71529286139e-05 -17182846518.2 +UniRef50_S3BAZ0 2.48229769934e-05 0.000666157861379 2.58914762891e+11 +UniRef50_K5JB68 Bacterial extracellular solute binding s, 3 family protein 0.000394388856035 9.29155863266e-05 -1.21708458474e+11 +UniRef50_UPI000474C9A9 hypothetical protein 1.11335927472e-05 9.86498908306e-06 -512150866.731 +UniRef50_UPI0002628E30 Sua5 YciO YrdC YwlC family protein 2.45053473685e-05 2.45530355425e-05 19252301.0435 +UniRef50_A6LYF6 Rubrerythrin 0.000146312398781 0.00151286287989 5.51693198684e+11 +UniRef50_W0HD99 0.000282637119679 0.000177723192699 -42355039760.5 +UniRef50_D9RK78 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter 0.0210254084466 0.00424839052006 -6.77308801409e+12 +UniRef50_UPI00037C2AEE hypothetical protein 2.9989791008e-05 4.26299618248e-05 5102992071.08 +UniRef50_P26280 Reaction center protein L chain 0.0162234028551 0.0024262788167 -5.57006828405e+12 +UniRef50_UPI0004686580 hypothetical protein 3.20446510048e-05 5.01386596235e-05 7304773317.82 +UniRef50_UPI00037303BE hypothetical protein, partial 6.76016295205e-06 7.77020633451e-06 407766908.125 +UniRef50_W8XZ85 0.000184261935083 0.000478812194975 1.18913554457e+11 +UniRef50_O22854 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 5.61031719189e-06 1.54845813153e-05 3986361597.47 +UniRef50_P08401 Sensor protein CreC 0.00200194553282 0.000445482219259 -6.28363339637e+11 +UniRef50_T2EES2 3 beta hydroxysteroid dehydrogenase isomerase family protein 0.000498029375613 0.000184572940753 -1.26546209296e+11 +UniRef50_A6LY79 Lysine exporter protein 0.00100013271503 0.000581904837826 -1.6884372626e+11 +UniRef50_UPI0003946175 PREDICTED 2.06571140033e-05 2.10283417814e-05 149869209.496 +UniRef50_Q7UIA7 3 isopropylmalate dehydratase large subunit 0.00542823582668 0.0195604947191 5.70536633718e+12 +UniRef50_Q8Y8Q5 Calcium transporting ATPase lmo0841 1.38360603378e-05 0.00166581633166 6.66924707609e+11 +UniRef50_K0YSF4 6.74878785343e-06 3.15992659455e-05 10032442955.4 +UniRef50_G7M906 Molybdenum cofactor synthesis domain protein 0.000321493711482 0.000974327058143 2.63556833213e+11 +UniRef50_UPI00046F0789 multidrug MFS transporter 1.68228922347e-05 7.92689848418e-06 -3591421843.2 +UniRef50_Q8XBQ1 Rare lipoprotein A 0.0024712615255 0.00031754484429 -8.6948185328e+11 +UniRef50_A6M2G0 Methyl accepting chemotaxis sensory transducer 0.000274075114113 0.000888881501153 2.48204882971e+11 +UniRef50_A6LWZ6 Response regulator receiver sensor signal transduction histidine kinase 8.92401864878e-05 0.000994924280792 3.65635782864e+11 +UniRef50_UPI0000057DE0 50S ribosomal protein L4 2.56734370151e-05 0.000125390682676 40257075741.5 +UniRef50_A9H7F9 0.000121118499099 0.000205693106709 34143806939.3 +UniRef50_UPI00037D5622 hypothetical protein 1.46995381452e-05 1.09329641528e-05 -1520612141.79 +UniRef50_R9SK92 Energy converting hydrogenase A subunit Q EhaQ 0.00405870528582 0.000715390932757 -1.34973703141e+12 +UniRef50_UPI00036E2295 hypothetical protein, partial 5.78408004857e-05 0.000105255598858 19141935947.9 +UniRef50_Q9RZL8 Protein NrdI 0.000278245200628 0.0101826758014 3.99854017456e+12 +UniRef50_K1X086 0.00029875766889 0.000225723155117 -29484929444.4 +UniRef50_G7MBG6 Glucokinase 0.000266160989946 0.00240744600086 8.64463035426e+11 +UniRef50_UPI00037CC8E0 hypothetical protein 1.23954220777e-05 6.62348816027e-06 -2330200552.06 +UniRef50_H8LBR4 Zeta toxin 0.00191510734549 0.00341394391089 6.05098714245e+11 +UniRef50_F2PQ83 1.91187153239e-05 1.70566806412e-05 -832468705.417 +UniRef50_I6TQY8 Gramicidin S synthetase 0.00516329398556 0.00130933774444 -1.5558894279e+12 +UniRef50_U1FPP9 Serine dehydratase alpha chain domain protein 2.19768768144e-05 1.99568423137e-05 -815512716.543 +UniRef50_UPI0002FF8C25 hypothetical protein 5.18060364965e-06 2.91863915789e-05 9691431171.2 +UniRef50_O34900 L cystine import ATP binding protein TcyN 0.00920332650164 0.0267580495836 7.08705712888e+12 +UniRef50_A5UJG8 Dephospho CoA kinase, CoaE 0.000905531718019 0.00215119755502 5.02890584436e+11 +UniRef50_UPI000376DDCE hypothetical protein, partial 4.37904073141e-05 0.000126496198145 33389342672.6 +UniRef50_Q9KE44 BH1014 protein 8.26588420574e-06 8.50737326924e-05 31008270972.4 +UniRef50_Q9RXS7 Endoglucanase, putative 0.00011301975714 0.0316685225141 1.27393436926e+13 +UniRef50_D5AV16 Cobalamin biosynthesis protein CobD 3.0888789141e-05 0.00012038008543 36128734493.6 +UniRef50_UPI0003B61FEB amino acid transporter 7.07188653678e-06 2.03446260814e-05 5358367828.98 +UniRef50_B5XSL3 5.44891854867e-05 8.28115556762e-05 11434088400.1 +UniRef50_P50511 RNA polymerase sigma factor RpoH 0.000604457946096 0.00499983723944 1.77446855809e+12 +UniRef50_W5X4I3 Tyrosine recombinase XerC 4.61731604475e-06 9.4382950065e-06 1946288366.92 +UniRef50_A0R8M9 Gluconate kinase, FGGY family 0.00988890244243 0.00350907738141 -2.57561366639e+12 +UniRef50_UPI000255F256 hypothetical protein 1.04914179958e-06 7.77307564342e-06 2714534604.71 +UniRef50_Q6GEF9 Molybdenum cofactor biosynthesis protein B 0.0211021224292 0.0138333145366 -2.93450694455e+12 +UniRef50_Q828A3 Acetylornithine aminotransferase 0.000479505048972 0.00615153820326 2.28986938806e+12 +UniRef50_UPI0004418616 P loop containing nucleoside triphosphate hydrolase protein 8.16108710042e-07 3.61456324717e-07 -183548747.168 +UniRef50_Q47456 Transcriptional regulatory protein PcoR 0.000168520530738 0.000333063953224 66428198832.5 +UniRef50_G0DX35 Beta D glucuronidase 0.000313215449466 0.00455608773225 1.71289960646e+12 +UniRef50_Q822W9 Tryptophan synthase beta chain 1 2.05611663096e-05 1.63249310823e-05 -1710220145.71 +UniRef50_B7UNM8 L rhamnose proton symporter 0.00313025659774 0.0012857160748 -7.44663644168e+11 +UniRef50_W7NL02 0.0322735090222 0.000121814230132 -1.29800337332e+13 +UniRef50_P44431 DNA adenine methylase 0.00443627168968 0.00117020474367 -1.31855130525e+12 +UniRef50_UPI0004656CA8 ATPase AAA 9.78529869158e-05 1.23736926869e-05 -34509040029.1 +UniRef50_Q2KX38 Cysteine tRNA ligase 2.75913620631e-06 1.09322295052e-05 3299578059.9 +UniRef50_UPI0003304FE8 ABC transporter 1.25909622698e-05 0.00038373369304 1.49834874845e+11 +UniRef50_B9DSF8 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 0.00814614715665 0.00242390601841 -2.3101389673e+12 +UniRef50_W5VLQ9 ABC transporter ATP binding protein 0.00124312127399 0.000196659293133 -4.22469543206e+11 +UniRef50_UPI0003B78B56 acetolactate synthase 1.7002649666e-05 0.000167465970217 60743888899.0 +UniRef50_Q4ZMZ5 0.00161866315074 0.000325281081862 -5.2215421279e+11 +UniRef50_UPI00046F9C6C hypothetical protein, partial 4.45136224903e-05 7.88859333588e-05 13876523693.3 +UniRef50_F0KJU7 Siderophore interacting protein 0.000502292002391 0.00803342513719 3.04041086391e+12 +UniRef50_B4U3Z1 0.000127072047585 8.41813353406e-05 -17315506861.3 +UniRef50_B0VQL7 0.000186566386584 0.00438317843742 1.69422378315e+12 +UniRef50_Q83LB6 Gamma glutamyl gamma aminobutyrate hydrolase 0.0060048065699 0.00361292493342 -9.65631968335e+11 +UniRef50_J8UT53 Multidrug transport protein, mfs family 3.79377457142e-05 0.000647393139862 2.46044621476e+11 +UniRef50_X5A2G4 Epoxide hydrolase domain containing protein 0.000233649238274 0.00191517651442 6.78853196042e+11 +UniRef50_Q9I163 Putative quercetin 2,3 dioxygenase PA2418 0.000147343870432 0.000425020189921 1.12101337649e+11 +UniRef50_D0W9Q2 Translation initiation factor IF 2 0.000173507682131 0.00329846500267 1.26158361784e+12 +UniRef50_A3M0R3 RND type efflux pump 0.00113288269163 0.0119147136524 4.35275746682e+12 +UniRef50_UPI00047675B7 iron ABC transporter 1.32370888919e-05 0.000965568362127 3.84467821424e+11 +UniRef50_S9QHG5 ABC type dipeptide transport system, periplasmic component 1.36807721072e-05 2.07009942528e-05 2834149827.99 +UniRef50_P42371 Formamidopyrimidine DNA glycosylase 1.01617983137e-05 1.01465294293e-05 -6164236.00256 +UniRef50_UPI0003F5623F hypothetical protein 2.19120802761e-05 6.56053275946e-05 17639500118.9 +UniRef50_Q8DTP8 0.00785950500436 0.000606815147654 -2.92799989567e+12 +UniRef50_Q5HKT3 Transcriptional antiterminator, BglG family 0.0080330598484 0.00338442272027 -1.87671185382e+12 +UniRef50_Q9VDT6 Putative ribosomal RNA methyltransferase CG11447 3.4203571375e-05 3.47570760337e-05 223456622.983 +UniRef50_Q1WV73 Ribosomal RNA small subunit methyltransferase A 0.0127550352222 0.00793547853733 -1.94571417629e+12 +UniRef50_Q79VG7 ATP synthase subunit alpha 0.000661884294734 0.00426824127388 1.45593056746e+12 +UniRef50_M8LWS9 Amidohydrolase family protein 0.000359510465573 0.00148228462067 4.53277704402e+11 +UniRef50_B2VBD6 7.33966667669e-05 7.23261155984e-05 -432194643.864 +UniRef50_B6AY70 0.000167320852626 0.000115783081663 -20806430577.3 +UniRef50_Q9ZCH1 3 oxoacyl [acyl carrier protein] synthase 3 0.000116176713701 1.02103949507e-05 -42779903232.3 +UniRef50_UPI00042C6A1E PREDICTED 1.07785186262e-06 5.81138049842e-06 1910983597.2 +UniRef50_A0LUZ1 LexA repressor 3.00909365593e-05 1.14742367934e-05 -7515790148.09 +UniRef50_C9A6P4 0.00311794085032 0.023964964783 8.41619938338e+12 +UniRef50_X8DM60 1.26927740234e-05 0.000224920061928 85678760448.9 +UniRef50_W5X752 Aldo keto reductase 2.39150912737e-05 0.000184566515081 64856951205.5 +UniRef50_A0A058ZFV0 2.06101103276e-06 4.88508471071e-06 1140113199.07 +UniRef50_UPI0003B55097 ABC transporter 7.8177563681e-05 5.6982733203e-06 -29260778939.5 +UniRef50_UPI000466B8BE ATP dependent DNA helicase RecQ 1.87579726053e-05 5.65353682624e-06 -5290421533.53 +UniRef50_X0Z3F5 Marine sediment metagenome DNA, contig 8.21597430873e-05 2.71646853979e-05 -22202179654.5 +UniRef50_UPI0003AB2F70 zinc transporter 1.98773376251e-05 5.15238626873e-05 12776090514.1 +UniRef50_A8EWF0 3 oxoacyl [acyl carrier protein] synthase 2 9.17713100965e-05 0.00260283090423 1.01374557232e+12 +UniRef50_P0ADP3 0.000336040939626 0.00120178510303 3.49511542642e+11 +UniRef50_R9SKB3 0.00385526461448 0.000248513356408 -1.4560897427e+12 +UniRef50_I6L8Z7 0.00601876726467 0.00256756463594 -1.39329285224e+12 +UniRef50_UPI000377F0F1 50S ribosomal protein L15 6.13261178776e-05 0.000145989328959 34179577248.0 +UniRef50_P00911 Indole 3 glycerol phosphate synthase 1.22512000564e-05 0.00905962278299 3.65253493176e+12 +UniRef50_UPI00037E35A9 hypothetical protein 6.94091127264e-06 1.05712898489e-05 1465628380.99 +UniRef50_J9QWN8 3.48788335131e-05 0.000121300039977 34889301556.9 +UniRef50_UPI0003C13804 PREDICTED 2.78452660133e-05 4.61999413689e-06 -9376327262.64 +UniRef50_A5IXT6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 7.03409129573e-06 5.12989326396e-06 -768748112.563 +UniRef50_M9RBK8 0.000113559130255 2.03588949812e-05 -37626078675.5 +UniRef50_P75969 Prophage lambda integrase 0.00396475513483 0.00125177959805 -1.09526151615e+12 +UniRef50_UPI000299D232 arginyl tRNA ligase 0.00018030618242 5.24788616285e-05 -51605458021.4 +UniRef50_Q9KD27 Polyphosphate kinase 9.34569674946e-06 0.00040192648549 1.58489681923e+11 +UniRef50_Q5HLU4 Putative 2 hydroxyacid dehydrogenase SERP1888 0.0201636215518 0.00742616435466 -5.14226777665e+12 +UniRef50_UPI00047D602E membrane protein 4.01897727128e-05 2.81449598051e-05 -4862638777.31 +UniRef50_UPI00040C0EAB dipeptidase PepV 6.97615980824e-06 7.93343298644e-06 386462929.102 +UniRef50_A3SGM5 2.4354311642e-05 4.91453191356e-05 10008433945.0 +UniRef50_X5RWX0 0.000615435794799 0.000163047421043 -1.82634737915e+11 +UniRef50_B0V917 0.00039875280513 0.000942500122969 2.19517464742e+11 +UniRef50_L8NGN8 Sulfite oxidoreductase, molibdopterin binding subunit 0.00196451818634 0.00066212885384 -5.25790555645e+11 +UniRef50_Q5HM71 Lytic regulatory protein, putative 0.0106591044736 0.00304269334014 -3.07483863845e+12 +UniRef50_Q2SS11 S adenosylmethionine synthase 4.22719497926e-05 0.000231242044482 76289546149.8 +UniRef50_D2BQV2 NTPase, KAP P loop domain containing family 3.64612774804e-06 1.1282990835e-05 3083095343.05 +UniRef50_UPI00046D1EDA hypothetical protein 5.77388519766e-05 6.34105973761e-06 -20749919448.7 +UniRef50_M4VPY4 3.40716538266e-05 3.02978667462e-05 -1523524153.93 +UniRef50_O27101 Putative biopolymer transport protein ExbB homolog 0.00376786834011 0.000975301049817 -1.12739368374e+12 +UniRef50_UPI000470CC65 hypothetical protein, partial 8.86593165557e-05 0.000357899152787 1.08695425831e+11 +UniRef50_UPI000362B8D4 hypothetical protein 1.04342017914e-05 1.95364356833e-05 3674683519.13 +UniRef50_Q6FF14 0.000403089064699 0.0054382963575 2.03277497305e+12 +UniRef50_F9Y8H3 2.56310598718e-05 6.78628471887e-06 -7607866980.62 +UniRef50_UPI00047C7174 GTPase CgtA 8.37016453651e-06 0.000406645514871 1.60788646318e+11 +UniRef50_D0Z2G0 6.13247720305e-05 3.14402685538e-05 -12064740777.6 +UniRef50_UPI00047E6697 hypothetical protein 6.81435544836e-06 6.69073885102e-05 24260294871.5 +UniRef50_O34374 Putative cytochrome P450 YjiB 8.59152279979e-06 8.06218856681e-05 29079541401.9 +UniRef50_A6M3B7 Phage minor structural protein 0.000352234460215 0.00253464274132 8.81065004241e+11 +UniRef50_Q94IN5 Pyruvate dehydrogenase [NADP], mitochondrial 0.000596731744541 0.00149681627909 3.63375171877e+11 +UniRef50_B4RAW2 0.0102067713539 0.00234980091651 -3.17195538144e+12 +UniRef50_B5SGS2 Phosphoribosylaminoimidazole carboxylase atpase subunit protein 0.000139465266818 0.00214557730186 8.09892046309e+11 +UniRef50_O32219 Cadmium, zinc and cobalt transporting ATPase 5.23737610038e-06 0.00157417235599 6.33398304379e+11 +UniRef50_UPI0002DD1873 multidrug transporter 0.00016275042563 0.00010664661744 -22649795837.4 +UniRef50_UPI000372E87D hypothetical protein 2.62099004393e-05 5.43407215181e-05 11356757673.5 +UniRef50_Q5HPN2 Glutamine synthetase 0.0102613150723 0.00456067526779 -2.3014182438e+12 +UniRef50_A6M2W7 Helix turn helix domain containing protein, AraC type 0.000479247809865 0.0024504709217 7.95806959874e+11 +UniRef50_A6LZ11 Transcriptional regulator, LysR family 0.000134656119687 0.00131707722284 4.7735790928e+11 +UniRef50_F4A8L7 0.000371297693954 0.000606736994061 95049734618.3 +UniRef50_UPI0004746BAC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 5.18097135648e-05 5.28324483951e-05 412890601.36 +UniRef50_UPI0003B6272C 30S ribosomal protein S2, partial 1.40725504025e-05 4.22369177815e-05 11370300726.6 +UniRef50_G0LQ11 ABC transport system, ATP binding protein 0.0112223281127 0.0033863795942 -3.16346857482e+12 +UniRef50_Q1GE51 Cytochrome c oxidase assembly protein CtaG 0.00341928785143 0.000337504805945 -1.24415363319e+12 +UniRef50_A6LSR5 Cell divisionFtsK SpoIIIE 0.000161336404174 0.00091888573031 3.05831959137e+11 +UniRef50_UPI0003946AEB PREDICTED 3.54119356436e-05 8.72393522557e-05 20923364080.2 +UniRef50_W1V573 0.000259933944651 0.00212518216721 7.53023596617e+11 +UniRef50_A2WHS9 0.000263864555761 0.000113878716332 -60551123910.7 +UniRef50_Q89W19 Partitioning protein 0.0111071938086 0.00770964164969 -1.37163349921e+12 +UniRef50_UPI00036C0568 hypothetical protein 1.69707125734e-05 1.77359228603e-05 308924783.008 +UniRef50_Q28JJ0 Flagellar protein FlgJ putative 0.000107128364311 5.93790608919e-05 -19276979740.1 +UniRef50_V9TVW8 Signal transduction histidine kinase CheA 0.000293100271592 0.000248775317081 -17894528064.4 +UniRef50_UPI00022CAC9E PREDICTED 5.30579222346e-06 3.97601370512e-05 13909641809.3 +UniRef50_V5VGK2 Universal bacterial protein YeaZ 0.000170808139747 0.00356547527068 1.37046877801e+12 +UniRef50_UPI000380AFF0 hypothetical protein 1.66656978508e-05 5.08469811353e-06 -4675391708.8 +UniRef50_Q5M3F8 Polysaccharide biosynthesis protein 0.00549775011829 0.00121997095475 -1.72699194257e+12 +UniRef50_L0LMR9 ABC transporter, ATP binding protein 0.00658143586887 0.00200426881728 -1.84785850688e+12 +UniRef50_Q8DVD7 Cell division protein SepF 0.0037044273976 0.00306231074306 -2.59230373095e+11 +UniRef50_UPI0003B704ED hypothetical protein 3.48028651978e-05 5.64344277132e-06 -11772016659.9 +UniRef50_UPI00036F3039 hypothetical protein 0.000149608177669 3.79962076068e-05 -45059121946.9 +UniRef50_C5WTK0 5.89371531896e-05 8.96203735086e-05 12387192568.2 +UniRef50_T1B3T8 Virulence factor MviN 0.00012264531826 0.000148901838437 10600079399.2 +UniRef50_Q11IP6 Phosphate transporter 0.00342110329637 0.000557443864461 -1.15609445371e+12 +UniRef50_A1URR2 sn glycerol 3 phosphate import ATP binding protein UgpC 0.000103514073048 4.81610057707e-05 -22346712518.4 +UniRef50_P0A4S1 Fructose bisphosphate aldolase 8.37627983898e-05 0.00393775090089 1.55590229073e+12 +UniRef50_Q48460 UDP glucose 0.0024706186238 0.00108779160929 -5.58264234953e+11 +UniRef50_F0QG73 SAM dependent methyltransferase 0.000188812356745 0.0145240795621 5.78732328433e+12 +UniRef50_UPI0003A87FEF hypothetical protein 6.31376195086e-06 2.32078735436e-05 6820360164.04 +UniRef50_Q12R52 Hemin import ATP binding protein HmuV 7.02972441324e-06 0.000431572149605 1.71392986771e+11 +UniRef50_UPI000376155F hypothetical protein 2.75090985045e-05 1.30446929653e-05 -5839458014.39 +UniRef50_Y1HNL2 PTS system maltose and glucose specific EIICB component 9.45995589328e-05 4.15230617395e-05 -21427633238.8 +UniRef50_A1AC10 Phosphoribosylglycinamide formyltransferase 2 0.00209067197729 0.000855692277837 -4.98576459573e+11 +UniRef50_A0A011NL09 3.98316651332e-06 0.00163957371157 6.60307973994e+11 +UniRef50_UPI000467180A aldehyde activating protein 1.41404095602e-05 2.66801214851e-05 5062435583.65 +UniRef50_B9KWD4 Periplasmic sensor diguanylate cyclase phosphodiesterase 0.00342251007916 0.000970801575124 -9.89784808928e+11 +UniRef50_Q8RTQ0 Putative 1 deoxy D xylulose 5 phosphate synthase 0.000123703418686 7.55808518896e-05 -19427670746.0 +UniRef50_D9WU07 Putative vgr related protein 4.79723715915e-05 4.51060092898e-05 -1157185635.42 +UniRef50_UPI00042AFC27 D aminoacid aminotransferase like PLP dependent enzymes superfamily protein isoform 3 9.17567555769e-06 2.74262788609e-05 7367992513.59 +UniRef50_P58224 Putative outer membrane protein YiaT 0.00138908439056 0.000274287961482 -4.5005699851e+11 +UniRef50_D4H950 YD repeat protein 0.000147833050033 0.00602378263988 2.37219295543e+12 +UniRef50_P31078 HTH type transcriptional regulator PetP 0.00840860761431 0.000348113994329 -3.25412018777e+12 +UniRef50_A6U9L1 0.000118841560449 4.76696931327e-05 -28732956212.6 +UniRef50_G0DWF3 0.00015141640003 0.00318388821914 1.22424608599e+12 +UniRef50_Q6GJE0 Serine acetyltransferase 0.0263765257778 0.00813626238588 -7.36381816451e+12 +UniRef50_B1K1C0 Recombinase 0.0109288769219 0.00266357594883 -3.33680342948e+12 +UniRef50_UPI0004795AC6 hypothetical protein 2.81983729982e-05 3.29087854625e-05 1901651315.1 +UniRef50_D0D0I6 GumN family protein 1.15946197148e-05 9.68905498281e-06 -769299866.213 +UniRef50_UPI000362BAED hypothetical protein, partial 7.36698666684e-05 2.88024204799e-05 -18113538611.8 +UniRef50_Q6A8I8 Alanine tRNA ligase 5.14052640274e-05 0.00451194116323 1.80077307944e+12 +UniRef50_UPI00035CA936 hypothetical protein 0.000246027875671 9.37832296474e-05 -61463031851.8 +UniRef50_UPI0004759D2E magnesium transporter 4.65908818374e-05 0.000504982730728 1.85058414498e+11 +UniRef50_UPI00036009B3 hypothetical protein 1.62787238837e-05 1.53580791207e-05 -371675588.405 +UniRef50_C1MWX1 Predicted protein 0.000138104630066 0.0123825617926 4.94323761289e+12 +UniRef50_B6SHE9 Insect intestinal mucin IIM22 0.000506809100946 0.00013633849615 -1.49563529342e+11 +UniRef50_Q9R9Y4 Cell division protein FtsX 0.000359212890386 0.000999925282614 2.58663455168e+11 +UniRef50_UPI000420B7BC O acetylhomoserine aminocarboxypropyltransferase 1.87359997725e-05 7.41706087748e-06 -4569594530.91 +UniRef50_Q47147 Putative glutamine amidotransferase YafJ 0.00256523373906 0.00133607621753 -4.96225974901e+11 +UniRef50_P0A9M3 Hypoxanthine phosphoribosyltransferase 0.00256931430375 0.00637384421507 1.53593541203e+12 +UniRef50_UPI00041235F6 lysine transporter LysE 7.57858179594e-05 5.91965958154e-05 -6697272552.18 +UniRef50_UPI00029AB95D phenylacetate CoA oxygenase reductase subunit PaaK 1.15980606543e-05 1.54913002901e-05 1571748616.4 +UniRef50_A8JGS9 DnaJ like protein 4.59788049763e-05 7.1649827385e-05 10363706765.3 +UniRef50_D5ARW9 Nif specific regulatory protein 0.00220134471261 0.00122444967874 -3.94384513023e+11 +UniRef50_U0B3S9 0.000219035091853 0.000208953584437 -4070028257.85 +UniRef50_P72525 DNA topoisomerase 4 subunit A 0.00500858121419 0.00718753218222 8.79669244529e+11 +UniRef50_Q9Z3R6 Alpha glucoside transport system permease protein AglF 0.0122473902765 0.00324814999465 -3.63310373488e+12 +UniRef50_Q0TPM3 ATP dependent DNA helicase RecG 0.000178086788681 0.000937600943891 3.06625184745e+11 +UniRef50_Q7N9D9 PTS system N acetylmuramic acid specific EIIBC component 0.00184996480888 0.000846242392495 -4.05215056556e+11 +UniRef50_D8QID1 0.000132209443208 9.72004629573e-05 -14133554935.7 +UniRef50_X7XPI4 0.000147118098131 0.00027113589694 50067507248.7 +UniRef50_B9KT83 Transport system permease protein 0.00039010580463 0.000222321233524 -67736690303.7 +UniRef50_Q9SRW7 Adenylyl sulfate kinase 3 1.05498967662e-05 0.000473997824286 1.87099615485e+11 +UniRef50_UPI000381376E hypothetical protein 0.00023976791245 7.04552706155e-05 -68353591208.5 +UniRef50_D3P3D0 D xylose transport system substrate binding protein 0.00892024616867 0.00284149075135 -2.45406815669e+12 +UniRef50_D9VWR6 Septum site determining protein 8.79308911103e-05 0.000305076678753 87664419149.9 +UniRef50_E3A1I4 0.00195719318858 0.000821814941568 -4.58366130976e+11 +UniRef50_A9WDZ1 Imidazoleglycerol phosphate dehydratase 0.000128447008822 1.32021008741e-05 -46525783552.7 +UniRef50_A6LUX7 Regulatory protein, LysR 0.000122163750441 0.00143743726056 5.30992056256e+11 +UniRef50_F4A4S9 Transcriptional regulator, GntR family, putative 0.000739387693764 0.00263156061344 7.63893427248e+11 +UniRef50_B9KKN4 Transcriptional regulator, GntR family 0.00114077658589 0.00249926348355 5.48437831094e+11 +UniRef50_C7M5H1 0.00805404203975 0.000704141888288 -2.96724488456e+12 +UniRef50_F9EIQ5 0.000130234882555 0.000768316637908 2.5760143478e+11 +UniRef50_B2UFB1 Cyclohexanone monooxygenase 0.000446765503447 0.000718890373892 1.09860149546e+11 +UniRef50_V4ITY3 Sodium 0.000312662486085 0.000282664608751 -12110511195.1 +UniRef50_X4ZS10 Bacterial regulatory s, gntR family protein 0.000837128535452 0.00506646704298 1.70743585531e+12 +UniRef50_R0MDF2 DNA mismatch repair protein MutS 0.00824262772619 0.00260586914204 -2.27562861123e+12 +UniRef50_Q0VTE2 Methionyl tRNA formyltransferase 5.29504113183e-06 3.45748586689e-05 11820621643.5 +UniRef50_S1PI08 0.00356082596515 0.00288609757052 -2.72396132761e+11 +UniRef50_A6LZ46 Response regulator receiver protein 0.000263634949602 0.001041490288 3.1402974547e+11 +UniRef50_R5I1Z2 0.000159501122048 0.00390617697768 1.5125790198e+12 +UniRef50_M3NMQ8 TonB dependent receptor plug domain protein 4.75223653651e-05 0.00464695047785 1.85684557034e+12 +UniRef50_F0MSR5 0.000205155428724 0.0055229370175 2.14685368391e+12 +UniRef50_D0IYV6 0.000131625844663 3.38751255575e-05 -39463164839.1 +UniRef50_I1XGF6 Stringent starvation protein A 7.55455320202e-06 0.00010226350363 38235165497.3 +UniRef50_B7UY15 0.000312703089435 0.000881320525776 2.29557836771e+11 +UniRef50_A6LX91 0.000308624183919 0.00121686861632 3.66669422773e+11 +UniRef50_P0A0K1 0.0086698967236 0.00363051842324 -2.03445885998e+12 +UniRef50_UPI0003B6C3E5 6 phosphofructokinase 1.67033405045e-05 6.43430380783e-06 -4145736129.71 +UniRef50_G7M347 ABC transporter related protein 0.00030220313273 0.00234322816515 8.23986851782e+11 +UniRef50_M9VKH9 Extracellular solute binding protein 0.000552035673073 0.010488586884 4.01150765905e+12 +UniRef50_K2FKB3 4.02524532308e-05 0.000376860886875 1.35892955312e+11 +UniRef50_K4JSU1 0.000154929083008 9.18053031875e-05 -25483844529.4 +UniRef50_U6BC07 Aconitate hydratase 0.0172458521589 0.00513364833695 -4.88984531636e+12 +UniRef50_P16923 N anthranilate isomerase 1.15740233055e-05 0.00552730526878 2.22676838943e+12 +UniRef50_I6SU46 Cell division protein DivIB 0.00367299644346 0.00181595875336 -7.49708903908e+11 +UniRef50_UPI00036BA80E hypothetical protein 5.60114658805e-05 7.29454143619e-05 6836442804.86 +UniRef50_A6LX65 0.000394994349159 0.00119919758711 3.24666715844e+11 +UniRef50_D3SBH0 Riboflavin synthase, alpha subunit 0.00621272484125 0.00061738684013 -2.25890661357e+12 +UniRef50_U2YCQ7 4.4013913601e-05 0.000162321060825 47762047126.3 +UniRef50_R7PTH2 0.000403566941078 0.000244063392719 -64393539801.2 +UniRef50_Q2SCI9 1.66852351515e-05 2.16654082745e-05 2010557003.35 +UniRef50_UPI0003691CE3 hypothetical protein 4.72107510513e-06 1.03587452776e-05 2275996630.62 +UniRef50_F4FSV5 RelA SpoT domain protein 0.0102423799544 0.0062712501834 -1.60319381979e+12 +UniRef50_B9DZ64 9.78788216567e-05 0.000204843957368 43183137896.4 +UniRef50_A7FBW9 0.00188425779309 0.0139652676252 4.87725191988e+12 +UniRef50_A7FBW8 0.00157000498395 0.00833218854948 2.72997648673e+12 +UniRef50_P76046 0.0029985575029 0.000564877565235 -9.82506455449e+11 +UniRef50_P76044 0.00326001518145 0.0014471150023 -7.3189004911e+11 +UniRef50_C5N0D9 Glyoxalase family protein 0.0179814613733 0.00207460814254 -6.42179184831e+12 +UniRef50_P03880 Intron encoded DNA endonuclease I AniI 0.000196302400859 7.40190271575e-05 -49367298548.8 +UniRef50_Q2K6L3 sn glycerol 3 phosphate import ATP binding protein UgpC 1 1.90749312261e-05 4.13584427284e-05 8996127042.91 +UniRef50_C6STT6 0.00236050906249 0.000877955758006 -5.98524961993e+11 +UniRef50_D2NPJ7 Protein containing PAS PAC domain 2.89985479906e-06 0.000221211015129 88134894404.4 +UniRef50_A5CPE6 Thymidine kinase 0.000194580406623 0.00475722127357 1.84199410789e+12 +UniRef50_A5UK48 Glutamine amidotransferase subunit PdxT 0.00151583333931 0.00243427355675 3.70785586309e+11 +UniRef50_UPI000361F456 hypothetical protein 0.000291252555585 4.9840392167e-05 -97461052832.2 +UniRef50_A6LQV8 Phosphomannomutase 0.00100809362922 0.00442312223232 1.37868895418e+12 +UniRef50_O50236 Carbamoyl phosphate synthase large chain 1.94991240811e-05 1.5481229961e-05 -1622073161.39 +UniRef50_J8V402 6.17805349938e-05 7.320990373e-05 4614176412.93 +UniRef50_UPI000382615E hypothetical protein 3.56567611084e-06 4.69986108862e-05 17534408750.9 +UniRef50_D8TJQ5 1.01875783796e-05 3.5862244884e-05 10365177931.4 +UniRef50_H3VMS8 0.000240948503526 3.97181061602e-05 -81239180791.3 +UniRef50_UPI0002484D08 glycerophosphoryl diester phosphodiesterase 1.12113579903e-06 0.000602957402776 2.4296868634e+11 +UniRef50_R1FE37 0.000122663424213 3.06796173529e-05 -37134991597.7 +UniRef50_UPI00039572EC molybdopterin guanine dinucleotide biosynthesis protein A 6.84918709221e-06 8.27068875096e-06 573877663.424 +UniRef50_P31434 Alpha xylosidase 0.00710594607545 0.00124080422324 -2.36782973912e+12 +UniRef50_J8V5R5 0.000117750627813 2.12403397037e-05 -38962387624.1 +UniRef50_UPI00016C54C0 histidinol dehydrogenase 1.7086051979e-05 5.65303843146e-05 15924161000.3 +UniRef50_Q4DRG1 MaoC like dehydratase, putative 2.02092077729e-05 1.13155281681e-05 -3590487594.18 +UniRef50_B3QY47 NADH quinone oxidoreductase subunit B 2 6.25436198249e-06 0.00162873018128 6.55013398269e+11 +UniRef50_A3M2E1 DNA polymerase V component 0.00151678867335 0.0132586826657 4.74034669393e+12 +UniRef50_Q47CM9 Phenylalanine tRNA ligase beta subunit 0.000118528752683 0.00306482708079 1.1894567902e+12 +UniRef50_P44704 CDP diacylglycerol serine O phosphatidyltransferase 0.00367129718611 0.000453412403041 -1.29909957481e+12 +UniRef50_Q1CA93 Leucyl phenylalanyl tRNA protein transferase 0.00170733670721 0.000799414180825 -3.66539465364e+11 +UniRef50_UPI00037210F0 hypothetical protein, partial 6.78244562533e-06 7.81107243145e-06 415269264.301 +UniRef50_UPI0003114778 hypothetical protein 1.05833445011e-05 1.13717107124e-05 318273113.843 +UniRef50_Q3BY50 3.66750891684e-06 2.55397815315e-05 8830104857.52 +UniRef50_N6D480 0.00923996744515 0.00233829655505 -2.78628923136e+12 +UniRef50_P0ADQ4 0.00407021694859 0.00207743922445 -8.04508821368e+11 +UniRef50_A3M418 0.000383234506454 0.00512967614181 1.91619673358e+12 +UniRef50_UPI000255A3BD acetyl CoA acetyltransferase, partial 0.000118948978912 0.000372416874894 1.02328100009e+11 +UniRef50_D3QHV4 Transcription repressor of sporulation, septation and degradation PaiA 0.0124538539675 0.0103939553095 -8.31606366034e+11 +UniRef50_F8I0C3 3.68724254049e-06 6.79816775513e-06 1255918684.5 +UniRef50_UPI0002886B91 NAD dependent malic enzyme 1 2.57107897143e-05 2.2080164244e-05 -1465728055.14 +UniRef50_Q6CEK4 YALI0B14971p 1.27921083893e-06 3.9761792892e-05 15535890609.2 +UniRef50_S5XJ53 0.000163309455408 0.000161935132449 -554831043.387 +UniRef50_G8VB45 Exonuclease V subunit alpha 7.0208181432e-05 0.00503767104597 2.00542571604e+12 +UniRef50_A3L1C1 0.000440128622474 0.00100351627844 2.27446510257e+11 +UniRef50_UPI000477E357 hypothetical protein 5.33023002087e-06 8.92884565857e-06 1452805292.92 +UniRef50_UPI0003DE7F24 PREDICTED 4.84549121802e-06 5.82588949084e-06 395798813.577 +UniRef50_D2ZNL5 0.0070553989254 0.000732234273367 -2.55273916398e+12 +UniRef50_R3B8E7 3.5481001118e-05 5.7087317789e-05 8722735179.4 +UniRef50_UPI0003731F30 hypothetical protein 3.09230035725e-06 0.000214689072251 85424213398.0 +UniRef50_UPI00046581AB peptide ABC transporter permease 4.68831999283e-06 9.57363031865e-06 1972259728.03 +UniRef50_UPI000470EA3B orotidine 5 phosphate decarboxylase, partial 2.31907387926e-05 1.75210819596e-05 -2288910038.0 +UniRef50_UPI0003779D2C hypothetical protein 4.59421782733e-05 1.02500716242e-05 -14409341445.6 +UniRef50_W1XGP9 Branched chain amino acid transport system 5.00924052576e-05 0.000119876242002 28172591237.7 +UniRef50_H0PS77 0.000179797593136 0.000307967615435 51743810825.1 +UniRef50_Q4L3C5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0192114288008 0.00283572001439 -6.61107458961e+12 +UniRef50_G0A952 Inner membrane translocator 0.000251754082824 0.00286032303523 1.05311129683e+12 +UniRef50_A4XYG1 Protein RnfH 3.67391132005e-05 4.16432394374e-05 1979855942.23 +UniRef50_Q59801 Hyaluronate lyase 0.0183602992503 0.00365940401754 -5.93493180575e+12 +UniRef50_P21507 ATP dependent RNA helicase SrmB 0.00233325991696 0.000358059855331 -7.9741250331e+11 +UniRef50_UPI00046D65C0 hypothetical protein 4.20213290307e-05 3.20806108295e-05 -4013189924.15 +UniRef50_D6U054 Short chain dehydrogenase reductase SDR 4.93134509874e-06 1.73094039184e-05 4997174241.38 +UniRef50_P50205 Acetoacetyl CoA reductase 0.0152883076888 0.00683420031243 -3.4130268914e+12 +UniRef50_P28721 Protein GltF 0.00364575528263 0.001195018539 -9.89392497325e+11 +UniRef50_F2UKD5 7.36915143044e-06 2.19470278957e-05 5885267619.7 +UniRef50_D3QJ79 Multimodular transpeptidase transglycosylase 0.020232266713 0.00457664506267 -6.32036657631e+12 +UniRef50_P72158 N5 carboxyaminoimidazole ribonucleotide synthase 0.000957598683487 6.1988622634e-06 -3.84091782817e+11 +UniRef50_S3DKH9 0.000130580479645 4.2622482067e-06 -50996220130.5 +UniRef50_O85674 Anthranilate 1,2 dioxygenase small subunit 0.0053477181754 0.00953068634601 1.68871558127e+12 +UniRef50_Q7MYS8 Oligoribonuclease 8.16328159899e-05 7.82972890187e-05 -1346593169.79 +UniRef50_UPI000369E32A single stranded DNA binding protein 1.70068572342e-05 8.67826352611e-05 28169337834.5 +UniRef50_Q168P4 GTP cyclohydrolase FolE2 0.0116537868542 0.00277842197801 -3.58309371349e+12 +UniRef50_E3I2H2 NADH ubiquinone oxidoreductase 20 kDa subunit 0.00162846859475 0.000448274859085 -4.76458693696e+11 +UniRef50_A3M2G1 0.000500521725877 0.00626723211893 2.32809175117e+12 +UniRef50_W9T9K1 Sulfate transporter 0.00117179153738 0.000515654955492 -2.64890389809e+11 +UniRef50_UPI000468F97A adenosylcobinamide kinase 6.21623501958e-05 2.98840681696e-05 -13031138553.0 +UniRef50_H6VX70 Tyrosine recombinase XerC 0.000258046204092 0.00540768208926 2.07897119998e+12 +UniRef50_K1E1R3 Exodeoxyribonuclease V subunit gamma 1.88493849747e-05 0.000102497995773 33769970663.2 +UniRef50_Q5GWV2 0.00201416007059 1.02298592394e-05 -8.09011217311e+11 +UniRef50_Q1HTP5 X2R 4.98852190603e-05 2.54160464958e-05 -9878505234.8 +UniRef50_A0A018ZXW4 Molybdopterin guanine dinucleotide biosynthesis protein MobA 1.6314008624e-05 1.9308756249e-05 1209016365.9 +UniRef50_C6BD53 MscS Mechanosensitive ion channel 0.000698807652753 0.000208213893202 -1.98058720993e+11 +UniRef50_Q9HZ76 UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase 0.000782575120573 0.00932760165831 3.44973207255e+12 +UniRef50_UPI00036DC1D7 MULTISPECIES 1.05941589764e-05 8.30658682949e-06 -923520947.375 +UniRef50_P43505 Membrane fusion protein MtrC 0.000509278897222 0.00120404363229 2.80485049269e+11 +UniRef50_A1B1U3 Magnesium transporter 0.00707307148112 0.0022687688197 -1.93955593984e+12 +UniRef50_Q8DUY3 Putative two component membrane permease complex subunit SMU_747c 0.00387047323499 0.0059095452334 8.23198387985e+11 +UniRef50_O85786 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 6.94937636196e-06 7.70800290866e-06 306266846.297 +UniRef50_A0A020CZ26 0.0210461784723 0.00555299514891 -6.2547882304e+12 +UniRef50_Q2CIE7 2.54243507904e-05 3.95407679884e-05 5698970850.75 +UniRef50_UPI0003C88714 PREDICTED 5.82509846771e-06 1.38944004386e-05 3257676227.12 +UniRef50_UPI00041F5BCB inositol monophosphatase 1.69274544343e-05 6.35805586309e-05 18834430662.1 +UniRef50_T1BV79 Potassium transporting ATPase subunit B 2.37188003866e-05 0.00245986548492 9.83502311426e+11 +UniRef50_F5M3E9 0.0020153994224 0.00089040212621 -4.54175213741e+11 +UniRef50_UPI0004725E16 hypothetical protein 1.0976794078e-05 4.08059186099e-06 -2784081460.92 +UniRef50_E3IHD0 Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein 0.000109099996778 0.000788430457683 2.7425404339e+11 +UniRef50_A4FA42 2.15557500101e-05 1.12897904313e-05 -4144493859.45 +UniRef50_T6N9U5 0.000853968258333 0.000177013010107 -2.73295140884e+11 +UniRef50_M4YYU6 A G specific adenine glycosylase 0.00397771338546 0.00125144344785 -1.10062862891e+12 +UniRef50_B5R8Z8 D amino acid dehydrogenase Alanine racemase fusion protein 0.00309300441818 0.000879730768933 -8.93525732124e+11 +UniRef50_G7ZH30 7.60806220332e-06 5.25966197436e-06 -948077990.543 +UniRef50_A4VT18 Mevalonate kinase 0.00400837697981 0.00153019205453 -1.00047366508e+12 +UniRef50_P0AF19 N acetylglucosamine 6 phosphate deacetylase 0.00283087753654 0.000235312115686 -1.04786161157e+12 +UniRef50_B9KUF9 2.26617868603e-05 1.96387671742e-05 -1220430143.9 +UniRef50_Q7UFS3 GMP synthase [glutamine hydrolyzing] 0.0412571411158 0.0610338261949 7.98409045365e+12 +UniRef50_H8FW24 2.3042972393e-05 1.75590035836e-05 -2213945504.22 +UniRef50_A6LW90 0.000123630782379 0.000876527289091 3.03953558839e+11 +UniRef50_M5ABS1 Antiholin like protein LrgB 0.00549715953097 0.00255176966193 -1.18909003413e+12 +UniRef50_G3Z6Q7 UPF0125 protein HMPREF1028_02272 1.97795416353e-05 9.65123544505e-05 30977978151.0 +UniRef50_B0VLI0 0.000331128060398 0.00749117790417 2.89059998562e+12 +UniRef50_N6W8Z6 Putative oxidoreductase 0.000151383310707 0.00135550477381 4.86118610885e+11 +UniRef50_A6WEM4 2.8436482489e-06 3.31287153493e-05 12226453228.0 +UniRef50_A5N6U5 Transcriptional regulator 0.000486033462046 0.000383528188565 -41382636785.4 +UniRef50_Q8PNB5 Adenylosuccinate synthetase 0.00200103022677 0.000769906449362 -4.97019776528e+11 +UniRef50_UPI00035FCD7D hypothetical protein 4.85293926949e-06 2.96587232849e-05 10014399408.2 +UniRef50_Q16D47 3,5 bisphosphate nucleotidase 0.00661194819128 0.00151661303362 -2.05704932994e+12 +UniRef50_G0DW29 Penicillin binding protein 0.000189057975903 0.0049596214952 1.92593503414e+12 +UniRef50_Q5HNL5 Formamidopyrimidine DNA glycosylase 0.0180271665343 0.00358042415733 -5.83232717906e+12 +UniRef50_C6E3P1 3.13611472904e-05 6.77750222451e-06 -9924719188.35 +UniRef50_E1S7F7 Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase 6.785248452e-05 0.00214070425634 8.36835697035e+11 +UniRef50_UPI000379B136 hypothetical protein 6.06515050908e-06 7.8108707715e-06 704768692.336 +UniRef50_E5QW86 0.00107782489575 0.000831878042813 -99291762637.9 +UniRef50_Q3IV65 Capsular polysaccharide biosynthesis protein, putative 0.00657103657571 0.00130880822469 -2.12442616011e+12 +UniRef50_T0K2V4 3.90142498159e-05 3.40263642946e-05 -2013670593.19 +UniRef50_Q56734 Aspartate semialdehyde dehydrogenase 0.0138164559658 0.00220703876686 -4.68686418677e+12 +UniRef50_A0RKK5 Cell wall surface anchor family protein 3.03612921906e-06 0.000223276804629 88913863320.0 +UniRef50_T1ZLK9 DNA repair protein radA 0.00686882455541 0.00326756133696 -1.45387415376e+12 +UniRef50_UPI0004660A11 hypothetical protein 1.12856037578e-05 4.229914993e-05 12520549168.7 +UniRef50_Q2NI31 Methionine tRNA ligase 0.00307220756712 0.000715195859351 -9.51554550213e+11 +UniRef50_UPI00036BF67A hypothetical protein 0.000395323398558 4.96013099524e-05 -1.39572249657e+11 +UniRef50_UPI0004249615 fructose 1,6 bisphosphatase 1.64181957988e-05 0.000310426781458 1.18694873922e+11 +UniRef50_Q2RKK1 Xanthine phosphoribosyltransferase 4.86394466476e-05 6.64478940087e-05 7189488733.9 +UniRef50_B8FB52 Sulfate adenylyltransferase 6.88008286142e-05 4.3482667566e-05 -10221252303.9 +UniRef50_H9U2W8 Transposase 0.000702229395936 0.0123859094175 4.7168449996e+12 +UniRef50_W5XCI5 N acetyl gamma glutamyl phosphate reductase 1.01003334328e-05 1.16240872642e-05 615158120.298 +UniRef50_U6ECP8 0.000178982268597 4.02756036838e-05 -55997582747.6 +UniRef50_Q3JPC5 4.76455084367e-05 0.00369719291179 1.47336707172e+12 +UniRef50_UPI0004752042 formyltetrahydrofolate deformylase, partial 5.20083847201e-05 1.58032021469e-05 -14616476492.4 +UniRef50_Q4ZWM4 DNA polymerase IV 4.26798686037e-06 1.40088563695e-05 3932508554.75 +UniRef50_Q6A6W0 0.000119457591412 0.00540956641899 2.13568185063e+12 +UniRef50_Q0BQG5 Nucleoside diphosphate kinase 0.000187483359791 0.000190110559529 1060632773.6 +UniRef50_J9QTZ5 Prophage antirepressor 8.41461234527e-06 1.53268392262e-05 2790550814.39 +UniRef50_G8RG67 0.0146805635927 0.00374089903989 -4.41647682475e+12 +UniRef50_A5UJT9 Desulfoferrodoxin 0.0133420144443 0.00181733357043 -4.65265509253e+12 +UniRef50_I1F5H5 1.35354130867e-05 2.23027702495e-05 3539489674.19 +UniRef50_D2VS44 Predicted protein 1.5557643085e-05 1.12936181256e-05 -1721439201.58 +UniRef50_UPI0002002642 GAF domain GGDEF domain EAL domain containing protein 3.03044404226e-06 7.44145217387e-05 28818628147.2 +UniRef50_Q6A9G3 Conjugal transfer protein 0.000304424184557 0.000583610289954 1.12710856748e+11 +UniRef50_C4LJM5 Peptide chain release factor 1 0.000441195532936 0.00749346034408 2.84708584528e+12 +UniRef50_P56259 0.00031632904094 0.000453171414615 55244945497.4 +UniRef50_W9H1I0 0.000111691703264 8.05677432011e-05 -12565124611.3 +UniRef50_E3A0A4 2,4 dienoyl CoA reductase FadH2 8.1354738977e-05 0.000278616464193 79636979143.3 +UniRef50_UPI0002EF5C1B accessory secretory protein Asp2 4.1773836899e-05 0.000115734828939 29858960090.0 +UniRef50_H4F217 7.70793398961e-05 8.49963256006e-06 -27686469419.2 +UniRef50_UPI00030A8FAF membrane protein 0.000142639908964 6.21053009884e-05 -32512809510.5 +UniRef50_A9WDI1 Dihydroorotate dehydrogenase 4.41362597166e-06 1.54882662299e-05 4470968173.35 +UniRef50_P37464 Serine tRNA ligase 0.032221307589 0.017607073002 -5.8999458396e+12 +UniRef50_UPI0003622EE4 hypothetical protein 1.31106623149e-05 7.30551405241e-06 -2343609590.75 +UniRef50_UPI00047159CC hypothetical protein 0.000103443648182 3.07649440946e-05 -29341284708.1 +UniRef50_A8WTI8 Elongation factor G, mitochondrial 5.12331633824e-06 9.13898021517e-06 1621172784.85 +UniRef50_B0C079 Pyridoxine pyridoxamine 5 phosphate oxidase 9.71765560356e-06 0.00044750773437 1.76741227086e+11 +UniRef50_UPI0002DCCC59 hypothetical protein 0.000141796347298 2.77973911559e-05 -46022777519.0 +UniRef50_UPI000477E15D hypothetical protein 4.22602557826e-05 0.000135597867936 37681539407.6 +UniRef50_F2RAT0 UDP galactose lipid carrier transferase 0.000214075229968 0.000869444584582 2.64580650744e+11 +UniRef50_Q2YYV8 Imidazolonepropionase 0.0151904070268 0.00433615085942 -4.38199641148e+12 +UniRef50_M1MXQ5 Amylopullulanase AmyB 0.000243656894405 0.00150982077313 5.11165895417e+11 +UniRef50_Q9RRU0 Na+ H+ antiporter, putative 0.000205246765242 0.0217040660457 8.67933716372e+12 +UniRef50_B9KNM4 Urea amidolyase related protein 0.0122818941539 0.000784326980384 -4.64170895896e+12 +UniRef50_Q72NX7 Polyribonucleotide nucleotidyltransferase 2.362651744e-06 5.65294447998e-05 21867799057.9 +UniRef50_B6ISK5 Acyl CoA dehydrogenase, putative 0.00040931767137 0.051379674755 2.05773586313e+13 +UniRef50_E3A0N8 Protease subunit HflC 0.000308571653009 0.000220385600888 -35601791405.8 +UniRef50_A6LU25 0.000615466286172 0.000902457376142 1.15861824798e+11 +UniRef50_UPI00036B07DE hypothetical protein, partial 3.03854375534e-06 3.42147649177e-05 12586223058.5 +UniRef50_O25758 Probable chromosome partitioning protein ParB 0.000138104630066 0.00294753368337 1.13420098439e+12 +UniRef50_UPI00024850D8 hemolysin type calcium binding protein, partial 3.03287245114e-06 2.7039357176e-06 -132795795.838 +UniRef50_UPI000466B878 potassium transporter KefB 2.1823675817e-05 6.24224584607e-05 16390226756.3 +UniRef50_B0K1N2 N acetylmuramic acid 6 phosphate etherase 8.47771690075e-06 1.08135324425e-05 942997397.884 +UniRef50_UPI0003A7C1AD 30S ribosomal protein S15 0.000268621455664 6.81394152462e-05 -80937059908.0 +UniRef50_A1B7K4 TRAP dicarboxylate transporter DctP subunit 0.0125587248754 0.00243415027228 -4.08741500977e+12 +UniRef50_X2MU03 Glutamate ammonia ligase adenylyltransferase 0.000569363059183 6.36687111458e-05 -2.0415501387e+11 +UniRef50_A7HA47 LigA 3.83410873907e-05 0.000417899137682 1.53232242604e+11 +UniRef50_M9S6C0 0.00071500184404 0.000973849677425 1.04500046758e+11 +UniRef50_Q3JNY9 4.17877728475e-05 6.3191877006e-05 8641099506.68 +UniRef50_UPI0003725615 hypothetical protein 7.5418105732e-05 4.14632317031e-05 -13707999318.6 +UniRef50_P77588 0.00321753592959 0.00101233745279 -8.90265685913e+11 +UniRef50_B2TL20 [Fe] hydrogenase 0.000653821901209 0.000135570025341 -2.09224641954e+11 +UniRef50_UPI00047C43F4 hypothetical protein 0.00412212797885 0.00632698803512 8.90129061392e+11 +UniRef50_UPI0004719EA1 aminotransferase, partial 3.53565899653e-05 4.99914290137e-05 5908264113.51 +UniRef50_UPI00038F9F8C Spermidine putrescine binding periplasmic protein 2 9.42697870372e-05 0.000164791741151 28470578277.4 +UniRef50_B6IYF9 NAD dependent epimerase 0.0108325900845 0.00254087885557 -3.34746557386e+12 +UniRef50_P57260 NADH quinone oxidoreductase subunit J 5.38774265065e-05 0.000115264928635 24782887918.6 +UniRef50_UPI00036191C4 hypothetical protein 1.87487897527e-05 2.15882252395e-05 1146314949.81 +UniRef50_J9P5P7 1.73669516433e-05 1.32026735168e-05 -1681170181.11 +UniRef50_UPI0002D709E2 hypothetical protein 2.3756107776e-06 4.47033358192e-05 17088222018.9 +UniRef50_UPI00035DB1EC 50S ribosomal protein L3, partial 2.95061011445e-05 6.16587413941e-05 12980415426.0 +UniRef50_F2MUA2 Metallo beta lactamase 0.00573624024849 0.00208747442115 -1.47305153989e+12 +UniRef50_UPI0004708144 hypothetical protein, partial 2.36668896684e-05 0.000242044837703 88161857420.5 +UniRef50_UPI0003AF4F98 PREDICTED 1.08085086159e-05 5.84974476085e-06 -2001913819.16 +UniRef50_Q0HP98 Shikimate dehydrogenase 0.00247599250204 0.000619849234165 -7.49347814682e+11 +UniRef50_UPI00026CDAF4 flagellar biosynthetic protein FliQ 0.00169861907655 9.58487216093e-05 -6.47058060493e+11 +UniRef50_A3TWT0 0.000760769161291 0.000225618165918 -2.16047023873e+11 +UniRef50_B5E1P6 Aspartyl glutamyl tRNA amidotransferase subunit B 0.00774318969066 0.00467991271449 -1.23668250592e+12 +UniRef50_D5MJP7 0.000367495176206 0.000662740410904 1.19194124314e+11 +UniRef50_UPI00047D5D86 hypothetical protein 4.53740360476e-05 0.00011708792494 28951776974.2 +UniRef50_A5FEC6 N acetyl gamma glutamyl phosphate reductase 2.6316477576e-05 0.00280311982482 1.12102958649e+12 +UniRef50_UPI0003777642 hypothetical protein 4.33339445031e-06 1.81372341649e-05 5572779484.95 +UniRef50_UPI0003B4B360 cation 8.30870661117e-05 0.000160297229232 31170690326.9 +UniRef50_U3SQI4 Putative glutathione reductase 0.00705520332116 0.0014877919812 -2.24763227776e+12 +UniRef50_V8N2X3 Gar1 6.3128562812e-05 0.000233363571585 68725962060.1 +UniRef50_Q8CR31 N succinyldiaminopimelate aminotransferase 0.0250390556123 0.00866522052559 -6.61031815405e+12 +UniRef50_UPI0003B58990 tRNA methyltransferase 8.91109431823e-06 6.3789094402e-06 -1022274108.66 +UniRef50_UPI00042BDC6C PREDICTED 2.72115544825e-05 0.000396644874722 1.49144764838e+11 +UniRef50_Q65U21 Lipid A export ATP binding permease protein MsbA 0.00291514674987 0.000491303313492 -9.7853533917e+11 +UniRef50_C4UBB8 sn glycerol 3 phosphate binding periplasmic protein ugpB 3.35470966465e-05 1.73339725023e-05 -6545437174.42 +UniRef50_M4X3Z5 Nitrous oxide reductase 0.000814688529057 0.000435432614899 -1.53110266539e+11 +UniRef50_Q9RXJ6 30S ribosomal protein S3 0.000151398123869 0.0101164858475 4.02302819941e+12 +UniRef50_X1GQT1 Marine sediment metagenome DNA, contig 3.59423430675e-05 2.68583301737e-05 -3667327478.6 +UniRef50_Q97KH7 Phosphoribosyl AMP cyclohydrolase 2.6292623538e-05 1.81208014558e-05 -3299064854.12 +UniRef50_Q7URW6 DNA directed RNA polymerase subunit beta 4.31090170609e-06 4.23388298992e-06 -31093400.8438 +UniRef50_D9VIN0 Predicted protein 0.000122152884961 8.5310555185e-05 -14873700636.8 +UniRef50_M8UUK1 0.000130018136227 0.000146409034395 6617206729.36 +UniRef50_UPI00042BD38E PREDICTED 2.48287255425e-05 1.79204354384e-05 -2788961489.28 +UniRef50_Q9K005 Orotidine 5 phosphate decarboxylase 0.000626876905465 0.00389737484814 1.32034015298e+12 +UniRef50_B4RNK3 TspB3 0.000124995360549 0.0056296372884 2.22229149583e+12 +UniRef50_UPI00040ED66A riboflavin biosynthesis protein RibD 4.14196120762e-06 3.30863421451e-05 11685201772.0 +UniRef50_B0TFC9 Bifunctional protein FolD 5.98370234284e-06 4.95828400011e-06 -413973968.258 +UniRef50_A5UMF6 Shikimate dehydrogenase 0.00392696061352 0.00233615403594 -6.42228136761e+11 +UniRef50_UPI0003457810 hypothetical protein 4.16954027244e-05 1.69769539017e-05 -9979141119.2 +UniRef50_UPI00016B2503 excinuclease ABC, B subunit, partial 0.000181333147499 3.80083682114e-05 -57861972191.4 +UniRef50_W4UC70 8.95941775374e-05 0.000752451400967 2.67603595272e+11 +UniRef50_W1GWA4 GTP binding protein TypA BipA 2.24634476511e-05 2.4377617384e-05 772773810.676 +UniRef50_UPI000372735A hypothetical protein, partial 6.96153010697e-05 0.000137299685561 27325016599.9 +UniRef50_A0A059LBF3 0.000288405505015 0.000166658928276 -49150587028.0 +UniRef50_B7V938 0.000440433163965 0.000292392777421 -59765720707.6 +UniRef50_UPI00036DDC82 hypothetical protein 1.62964196266e-05 6.67797237896e-05 20380729390.4 +UniRef50_P76542 Putative prophage CPZ 55 integrase 0.00360295403007 0.000174399629052 -1.38414948479e+12 +UniRef50_A4WCP1 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 6.38327903825e-05 5.68908654031e-05 -2802540301.18 +UniRef50_A3SZC0 0.00116471448102 0.000296774096314 -3.50398184132e+11 +UniRef50_C4LEY6 Beta hexosaminidase 2.53338068237e-05 3.43735801228e-05 3649467411.34 +UniRef50_UPI000366F960 hypothetical protein 0.00028388464448 0.000456541799664 69703812289.3 +UniRef50_S2XRA0 Heme A synthase 0.00779347380956 0.00256761225037 -2.10974443998e+12 +UniRef50_A8HVZ9 Predicted protein 6.82698715631e-06 1.82982920464e-05 4631106552.87 +UniRef50_X1CFP7 Marine sediment metagenome DNA, contig 6.61209206847e-06 1.07737059726e-05 1680094601.84 +UniRef50_UPI0004778F7D hypothetical protein 6.36857025517e-06 3.40418260908e-06 -1196759669.85 +UniRef50_Q3JR20 2.82542739658e-06 8.4325648074e-06 2263670180.06 +UniRef50_UPI00041694C7 Rrf2 family transcriptional regulator 2.44891098578e-05 4.51420239594e-05 8337834862.57 +UniRef50_A5FHP3 Malate dehydrogenase 1.71895566326e-05 2.77028828526e-05 4244358808.03 +UniRef50_Q69PS6 Thioredoxin reductase NTRA 5.36994816989e-05 2.05194235429e-05 -13395196642.7 +UniRef50_UPI0002628AE7 methionyl tRNA synthetase 2.53490138657e-06 1.47520354114e-05 4932206926.91 +UniRef50_B0VUW8 Membrane bound lytic murein transglycosylase B 0.000113132663991 0.00719134187582 2.85755991821e+12 +UniRef50_K9EE72 9.98553725587e-06 5.21859029268e-05 17036805478.1 +UniRef50_G1L4H7 2.44881488766e-05 2.7374238541e-05 1165149813.82 +UniRef50_K7RS07 Iojap like protein 0.000413305827211 0.0091109141766 3.51133122231e+12 +UniRef50_UPI000466C5B8 hypothetical protein, partial 0.000819284072046 0.000144484648222 -2.72424808118e+11 +UniRef50_F3U4V8 0.0015165396145 0.000974442904323 -2.18851094173e+11 +UniRef50_UPI000474972D hypothetical protein, partial 2.42452542185e-05 8.49097927619e-05 24491018647.6 +UniRef50_I6ST97 Transcriptional regulator 0.00413539053031 0.00218142416353 -7.88840200133e+11 +UniRef50_UPI00037FD271 hypothetical protein 5.32169847099e-05 7.50401192001e-06 -18454888076.5 +UniRef50_UPI0002378711 hypothetical protein 1.59430938622e-05 3.17697038061e-05 6389396648.7 +UniRef50_O27273 L sulfolactate dehydrogenase 0.00184100770609 0.000536565705238 -5.26619243047e+11 +UniRef50_G2MPZ1 3.56813724097e-05 7.6070867585e-06 -11333933627.6 +UniRef50_R0LYS9 Excinuclease ABC subunit C 5.41931538964e-05 2.98715491098e-05 -9818930312.0 +UniRef50_A6LX48 Beta lactamase domain protein 0.000151398123869 0.000444085270977 1.18161392963e+11 +UniRef50_Q4L686 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00976213551725 0.00111453922216 -3.49114074227e+12 +UniRef50_M1MPJ0 0.000167029198609 0.000592774535802 1.71878617108e+11 +UniRef50_V1IJP0 Anaerobic C4 dicarboxylate transporter 0.000416395654823 0.000206515178457 -84731323832.0 +UniRef50_B1I0S9 Bifunctional enzyme IspD IspF 5.08863326154e-06 1.76924978559e-05 5088334803.57 +UniRef50_UPI000376EAF4 hypothetical protein 5.76886044655e-06 1.17422421785e-05 2411527506.83 +UniRef50_Q6MQ03 Aminomethyltransferase 4.14340012683e-05 2.09009880117e-05 -8289429420.1 +UniRef50_X5KCP0 DNA binding response regulator VncR 0.000820621714897 0.00436262695167 1.42995097938e+12 +UniRef50_M4EC72 1.06049596924e-05 2.84454720289e-05 7202433757.95 +UniRef50_D0LWP0 ABC transporter related protein 0.00063254472526 0.000915520564698 1.14240818885e+11 +UniRef50_G7M0T0 NADPH dependent FMN reductase 0.00600958204098 0.00734483669639 5.39058689806e+11 +UniRef50_A0A024E7D7 Peptidase M42 0.000436857647962 0.000454467678334 7109385360.55 +UniRef50_UPI0003B54765 enoyl CoA hydratase 7.19413366425e-06 1.8051375552e-05 4383201783.45 +UniRef50_D5ALC3 4.98816405951e-05 0.000117670762799 27367300499.8 +UniRef50_A0A059LAL0 0.000227943356578 3.36297561803e-05 -78446784976.7 +UniRef50_G5JVU3 GBS Bsp like repeat protein 0.0011433681447 0.00128448740433 56971576840.7 +UniRef50_A1WZ50 4 hydroxy tetrahydrodipicolinate synthase 0.00181250372922 2.60895492644e-05 -7.21197326217e+11 +UniRef50_Q8R7Y4 Energy coupling factor transporter ATP binding protein EcfA1 0.000154438136513 0.00193935043895 7.20590999832e+11 +UniRef50_B4RP36 CadB 0.0601506131513 0.0122786966974 -1.93264801269e+13 +UniRef50_UPI00031DDA32 hypothetical protein 1.44664281278e-06 0.000392809243585 1.57997884491e+11 +UniRef50_R9ZL92 0.000490907633022 0.000553918706303 25438343516.4 +UniRef50_D3QDJ7 Predicted ring cleavage extradiol dioxygenase 0.0227593006241 0.00593385838246 -6.79263750433e+12 +UniRef50_F6CD95 Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific 0.0100075344918 0.00345170927419 -2.64666708937e+12 +UniRef50_D7CSB0 ABC transporter related protein 6.65368958018e-05 0.00955728395314 3.83153105161e+12 +UniRef50_P52143 0.00299116675964 0.000759502413463 -9.00950282154e+11 +UniRef50_UPI00036FBDE9 helicase SNF2 4.01061715854e-06 0.000382990457936 1.52998812327e+11 +UniRef50_A0QX20 Aconitate hydratase 1.53353377698e-05 0.000104779051713 36109524916.7 +UniRef50_O59439 30S ribosomal protein S5 0.0030588302176 0.000525786418738 -1.02262086554e+12 +UniRef50_UPI00036C31D6 succinylarginine dihydrolase, partial 3.34293500994e-05 0.000110365601957 31060108988.9 +UniRef50_Q59086 Quinate shikimate dehydrogenase 0.000106972992731 0.00591891734488 2.34635325554e+12 +UniRef50_UPI0003B4E02A HNH endonuclease 0.000589296819748 9.66429109124e-05 -1.9889042854e+11 +UniRef50_V4ZHB5 1.9544232849e-06 1.9442325331e-05 7060080656.7 +UniRef50_Q9RZD4 0.000377343172071 0.00705571253511 2.69613966467e+12 +UniRef50_V2VFK5 Methionine biosynthesis protein MetW 0.000193914035367 0.00688358372877 2.7007017467e+12 +UniRef50_F6DMK6 4.51885396252e-05 6.79195222504e-05 9176776626.32 +UniRef50_Q2G2M4 Mini ribonuclease 3 0.00480663734947 0.00471820927473 -35699498907.0 +UniRef50_A3JQ23 1.29608316484e-05 1.96164124734e-05 2686939652.21 +UniRef50_C5AYY6 ABC family transporter, periplasmic protein 0.000568360251346 0.000299188066121 -1.08668114289e+11 +UniRef50_J1K243 1.16659721542e-05 1.8035559039e-05 2571480389.01 +UniRef50_UPI000287B619 UBA THIF type NAD FAD binding protein 6.68116794457e-05 1.72557420262e-05 -20006340056.0 +UniRef50_C5WHW2 Arginine repressor 0.00416717736112 0.000767895536374 -1.37233178653e+12 +UniRef50_UPI0003F95C37 PTS system cellobiose specific transporter subunit IIA 3.88116023515e-05 2.90294954126e-05 -3949156611.18 +UniRef50_U5MQ56 Serine threonine protein phosphatase 0.000128650114592 0.00183399075822 6.88466944716e+11 +UniRef50_B0YLW6 Cysteine desulfurase, mitosomal 0.00121077993915 0.0132257090831 4.85057433519e+12 +UniRef50_UPI000476C43C cell division protein FtsZ 1.34343999424e-05 3.01403834785e-05 6744410558.99 +UniRef50_D3HAC9 Single stranded DNA specific exonuclease 0.00357539021211 0.00363865811261 25542027816.3 +UniRef50_U6HVX7 Heat shock 70 kDa protein, mitochondrial, putative 8.06800389116e-06 2.53330721822e-06 -2234424965.23 +UniRef50_W5N2Q1 3.01489705002e-05 0.000374161376496 1.38882029808e+11 +UniRef50_UPI00047E91BA ferredoxin 3.95305467569e-05 0.000377678613216 1.36514523973e+11 +UniRef50_G7MC40 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.000401476229602 0.00132896834504 3.7443994861e+11 +UniRef50_P15038 Helicase IV 0.00347264656256 0.000755643951553 -1.09688729544e+12 +UniRef50_UPI0003787F1C hypothetical protein 8.38464440454e-06 0.000100402503308 37148738825.5 +UniRef50_O26663 Succinyl CoA ligase [ADP forming] subunit alpha 2.50018353435e-05 5.31228835388e-05 11352812240.5 +UniRef50_G0DVB6 Alpha galactosidase 0.000140046063163 0.00654373297158 2.585246987e+12 +UniRef50_UPI000472DA74 membrane protein 0.000144429780783 0.000152293026922 3174488959.2 +UniRef50_K0HCK8 ComE operon protein 3 0.000357633900494 0.00691330143899 2.64660343238e+12 +UniRef50_UPI0003B6E09E ABC transporter 3.05554356883e-05 1.685337575e-05 -5531689740.28 +UniRef50_Q5P3C5 Crossover junction endodeoxyribonuclease RuvC 0.00672973679377 0.00324440790271 -1.40707004312e+12 +UniRef50_Q27580 Adenosylhomocysteinase 0.00147056985734 0.00878137630401 2.9514622762e+12 +UniRef50_I5C553 Bacteriophage replication gene A protein 0.00014377790448 0.000231459564019 35398161930.9 +UniRef50_UPI000248C2C2 electron transfer flavoprotein, alpha subunit FixB family protein 7.92925169843e-06 6.58521061466e-06 -542605878.757 +UniRef50_UPI0002E17ECF hypothetical protein 1.80025876165e-05 1.2444170816e-05 -2244001071.81 +UniRef50_X7YY04 1.26007477712e-05 0.000178320725581 66903188654.7 +UniRef50_F3SAU0 0.000369781082124 0.000160367720189 -84542744004.1 +UniRef50_Q44472 Putative hydroxypyruvate reductase 0.000221723287586 0.000358481974484 55211160118.5 +UniRef50_Z4XCQ6 Putative cross wall targeting lipoprotein signal 0.0011687222984 0.000399058474063 -3.10722730722e+11 +UniRef50_A3PHP4 Putative ECF RNA polymerase sigma factor protein 0.00209271500155 0.002041949508 -20494652708.8 +UniRef50_Q6F2A0 Serine tRNA ligase 4.55409117694e-06 5.01428674969e-06 185786599.954 +UniRef50_Q029K6 Queuine tRNA ribosyltransferase 5.11012980515e-06 2.66600471668e-05 8699966086.1 +UniRef50_A5UM57 Predicted deacylase 0.00262030114659 0.0031753989484 2.24099794407e+11 +UniRef50_A6QBY0 3 oxoacyl [acyl carrier protein] synthase 3 0.00023313351618 0.00525262503571 2.02643032252e+12 +UniRef50_A6LXB6 Methyl accepting chemotaxis sensory transducer 0.000388869115435 0.00182248306777 5.78767544981e+11 +UniRef50_R7MK20 PTS system fructose specific IIABC component 3.28898923433e-05 0.00322523933261 1.28879064357e+12 +UniRef50_Q5L925 GTP cyclohydrolase 1 4.14401765163e-05 5.01032910244e-05 3497405635.29 +UniRef50_P0AAE6 Putative arginine ornithine antiporter 0.00321731849906 0.00118887122218 -8.18909057524e+11 +UniRef50_A3PM57 OmpA domain protein 0.00205159269046 0.000506257208899 -6.23870897305e+11 +UniRef50_N8JY23 0.000814371038283 0.000195905694112 -2.49682048865e+11 +UniRef50_P0A201 Curli production assembly transport component CsgE 0.000294910928794 0.000457855356899 65782665179.0 +UniRef50_UPI00047B3E5B hypothetical protein 2.88526552427e-06 3.8645633795e-06 395354561.492 +UniRef50_UPI00035D0534 hypothetical protein 1.38642134921e-05 9.04969157907e-05 30937562307.0 +UniRef50_A5UYT7 PUCC protein 2.52927104903e-05 7.46671855865e-06 -7196571692.35 +UniRef50_Q8XJR2 Putative zinc metalloprotease CPE1693 0.000115674971054 0.00190739236163 7.23338297422e+11 +UniRef50_Q9SEY5 Probable acyl activating enzyme 2 2.74732972388e-05 2.49179190056e-05 -1031637550.76 +UniRef50_W4SG00 2.22444323188e-05 3.56667229583e-05 5418743441.19 +UniRef50_A5UNX6 Predicted universal stress protein, UspA 0.000267720559474 0.000418888943548 61028531695.4 +UniRef50_D6EFB5 Regulatory protein 0.000178666647148 1.77787487498e-05 -64952418899.8 +UniRef50_Q94522 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 3.58557555352e-05 3.31760241465e-05 -1081840445.62 +UniRef50_Q8DX72 Transcriptional regulator, Cro CI family 0.000316034781363 0.000176133223777 -56479975582.6 +UniRef50_Q53599 Protein map 0.000410859895788 7.51760810916e-05 -1.35519675296e+11 +UniRef50_P06576 ATP synthase subunit beta, mitochondrial 2.10459577151e-05 6.5573744164e-06 -5849218872.6 +UniRef50_UPI00021A56D7 PREDICTED 0.000160165382243 5.30646424894e-05 -43237882912.6 +UniRef50_P44910 GTP binding protein TypA BipA homolog 0.00277243939937 0.00862394085157 2.36232294225e+12 +UniRef50_T0IMD9 1.22010289975e-05 1.61676746888e-05 1601383541.79 +UniRef50_A7HYI4 50S ribosomal protein L9 0.0084537481466 0.00312428523868 -2.15156957579e+12 +UniRef50_B9L2J1 Acetaldehyde dehydrogenase 0.003183070885 0.00085277936566 -9.4076728225e+11 +UniRef50_UPI0003B61C67 50S ribosomal protein L4 1.53808126387e-05 8.25228664921e-05 27106071066.3 +UniRef50_A6LZH7 Transcriptional regulator, MarR family 0.000501087595826 0.00199220938814 6.01984165678e+11 +UniRef50_Q2FF13 Low molecular weight protein tyrosine phosphatase PtpB 0.00282003811312 0.00146321569137 -5.47765861744e+11 +UniRef50_Q5HHD1 Putative peptidyl prolyl cis trans isomerase 7.82183758467e-06 0.000244340854826 95485629674.9 +UniRef50_UPI00040BC9E5 butanediol dehydrogenase 3.31628385514e-05 3.9065104171e-05 2382817059.58 +UniRef50_A1R669 Oxidoreductase family, NAD binding Rossmann fold domain protein 0.000100040456404 0.00555578241785 2.20254997932e+12 +UniRef50_UPI00039B5846 hypothetical protein 1.99663654005e-05 2.87625972349e-05 3551146733.45 +UniRef50_F2MM74 Cytidine deaminase 0.00218789767709 0.00412203269675 7.80834041942e+11 +UniRef50_UPI00022CE1AC 1.44801159207e-06 1.4950238736e-05 5451014788.95 +UniRef50_N9Z7F0 YhgE Pip domain containing protein 0.000202627359004 0.000846011625188 2.59742123471e+11 +UniRef50_F5YEL5 Nitrogenase 0.000172041329329 0.00027447804323 41354958441.7 +UniRef50_F0RQS6 4.07036361602e-05 0.000175951169409 54601088846.5 +UniRef50_P45799 ADP compounds hydrolase NudE 0.00505668406772 0.000328738447346 -1.90872966536e+12 +UniRef50_O26664 0.00442429830978 0.00117420219928 -1.31210368297e+12 +UniRef50_UPI0000164CEE putative transposase 7.43361581767e-05 0.124709122894 5.03165928461e+13 +UniRef50_UPI0004415ED9 GTP binding protein Obg CgtA 3.32974925147e-06 0.000162329367688 64190097107.7 +UniRef50_UPI00038219EB hypothetical protein 0.000255697695808 0.000473665301161 87996197044.3 +UniRef50_A0A023UVB3 MFS transporter 0.000222866963081 0.000151186026547 -28938473702.8 +UniRef50_Q93PN3 Ferric hydroxamate receptor 1 0.00587358546412 0.00119907596136 -1.88715684895e+12 +UniRef50_UPI000466770B BCCT transporter 7.18521343554e-05 2.38078511347e-05 -19396066705.9 +UniRef50_L2ZQX2 Melibiose carrier protein 0.0027949020284 0.00112097381491 -6.75785361195e+11 +UniRef50_P37746 Putative O antigen transporter 0.0036819077642 0.000518282303339 -1.2771944206e+12 +UniRef50_UPI0004718772 30S ribosomal protein S2 2.26820062065e-05 1.81507737684e-05 -1829314139.74 +UniRef50_L1KZ53 1.89982943189e-05 0.000441975583678 1.70761122229e+11 +UniRef50_E1M0K4 N acetyl glucosamine matabolism 2.15832256713e-05 1.64239543469e-05 -2082861145.04 +UniRef50_H8XGR9 0.0120099486241 0.00163145268247 -4.18992617009e+12 +UniRef50_UPI0002064BBF PREDICTED 4.39544944375e-06 8.51102350421e-06 1661507751.98 +UniRef50_U5UMZ1 N acetylglucosamine 6 phosphate deacetylase 0.0253303677845 0.00391479829046 -8.64572820332e+12 +UniRef50_Q6A9W9 Cation transporting P type ATPase A 0.000131223579037 0.00646341304687 2.55638259287e+12 +UniRef50_F4M600 0.00195046875892 0.000849499201307 -4.44474920823e+11 +UniRef50_UPI00046BAD61 PREDICTED 3.55781656944e-06 3.84097047477e-06 114312706.271 +UniRef50_UPI0003A27C90 hypothetical protein 8.11993465715e-05 1.3815079482e-05 -27203855522.0 +UniRef50_UPI00037AE98E hypothetical protein 2.62055422881e-05 7.08113241508e-05 18007901512.5 +UniRef50_P42778 Aminopeptidase T 0.000104374006137 6.03549396929e-05 -17771037298.2 +UniRef50_M4YX89 Stage 0 sporulation protein 0.00549170061236 0.00416064540081 -5.37363322787e+11 +UniRef50_R9ZFL5 ABC transporter permease 0.00081882291189 0.00117060013925 1.42016783477e+11 +UniRef50_UPI000428106D hypothetical protein 5.37267293737e-06 3.62345242764e-06 -706181785.127 +UniRef50_A0A029PSG2 2.72482044463e-05 4.64456117212e-05 7750228895.56 +UniRef50_A0A024IS11 Plasmid partitioning protein 0.000155161686285 2.61026807106e-05 -52102704282.3 +UniRef50_P9WQK2 0.00291735582738 0.0178384257432 6.02381902713e+12 +UniRef50_Q7M8H7 Valine tRNA ligase 9.74505257933e-05 0.00339688354859 1.3320215999e+12 +UniRef50_A6LZT7 0.000976256867724 0.00150291410778 2.12617990622e+11 +UniRef50_W7G027 8.65801201392e-05 3.67742887112e-05 -20107225333.8 +UniRef50_D5AM27 Pseudouridine synthase 0.00736051960925 0.00213257429764 -2.1105856764e+12 +UniRef50_P76561 Esterase YpfH 0.00225488975585 0.00118454319802 -4.32112040025e+11 +UniRef50_UPI00021974F8 DeoR family transcriptional regulator 1.34285385325e-05 3.15364545099e-05 7310387889.19 +UniRef50_D2QMM0 2.44558858853e-05 0.000156756003057 53411180807.3 +UniRef50_UPI00016C4288 CheA Signal Transduction Histidine Kinases , partial 3.47015662212e-06 1.88282300538e-05 6200242709.13 +UniRef50_UPI00046451D1 polyamine ABC transporter ATPase 7.70399117753e-05 1.91074257509e-05 -23388055519.6 +UniRef50_R5ELQ2 Topology modulation protein 1.84657547031e-05 3.22028087596e-05 5545817295.22 +UniRef50_P25857 Glyceraldehyde 3 phosphate dehydrogenase GAPB, chloroplastic 3.95322378677e-05 1.66939328316e-05 -9220104000.59 +UniRef50_Q67TG7 4.67716271118e-06 1.03796425551e-05 2302161090.29 +UniRef50_W4UAM7 3.51049601379e-05 0.000342681357451 1.24172365982e+11 +UniRef50_UPI0003B31F76 hypothetical protein 1.83619984512e-05 3.53820842673e-05 6871217503.9 +UniRef50_E3CUZ5 NLPA lipoprotein 3.80733402177e-05 7.63512111011e-05 15453246197.9 +UniRef50_UPI0004758E9D hypothetical protein, partial 0.000456925779047 0.000203392862809 -1.02354349484e+11 +UniRef50_G8V940 MutT Nudix family protein 0.00124906335495 0.00967047615812 3.399827691e+12 +UniRef50_UPI00045E611A cytidine deaminase 3.52740427485e-05 3.12633425969e-05 -1619168868.03 +UniRef50_UPI000349A3D9 hypothetical protein 4.99171129157e-06 2.22797850888e-05 6979407540.45 +UniRef50_UPI0003B40D78 sugar ABC transporter, partial 2.90286549519e-05 5.67016168015e-06 -9430110374.77 +UniRef50_G2SQ27 Glycosyltransferase 0.0049933749049 0.00222203034387 -1.11882580751e+12 +UniRef50_X6L644 7.68364419879e-05 4.75555776371e-05 -11821044255.0 +UniRef50_A5UHD3 Bifunctional protein GlmU 2.40471064061e-05 6.26200091589e-06 -7180065334.18 +UniRef50_UPI00046B76DF PREDICTED 5.04899414111e-06 0.000249563412836 98713471356.5 +UniRef50_A7X6P6 Holin like protein CidA 0.00937027488317 0.00362824018862 -2.31812986888e+12 +UniRef50_P0A1J8 Flagella synthesis protein FlgN 0.00119810770375 0.00179099540274 2.39356039632e+11 +UniRef50_Q39NK6 Endoribonuclease L PSP 2.84660207752e-05 5.63131650807e-05 11242233879.0 +UniRef50_UPI0001B44150 hypothetical protein 0.000199443979412 0.00048018976455 1.13340518598e+11 +UniRef50_P00490 Maltodextrin phosphorylase 0.00417851816225 0.0014514079557 -1.10096785579e+12 +UniRef50_A5UJI7 Asparagine synthetase, AsnB 0.00277802607671 0.000444286616466 -9.42159258302e+11 +UniRef50_K2DSG6 9.47148534366e-05 7.57196065083e-05 -7668614282.85 +UniRef50_UPI00046C2950 cytochrome b 0.000182421291978 7.00135235024e-05 -45380395532.2 +UniRef50_UPI0003B5555F MFS transporter 2.5915732082e-05 0.000146975885355 48873469451.4 +UniRef50_A6QHT5 0.0121458381922 0.000432170788082 -4.7289512739e+12 +UniRef50_Q8DV31 0.000890941918006 0.00428434342103 1.36995782849e+12 +UniRef50_P0A3T3 31 kDa immunogenic protein 9.48415684732e-06 3.55014442685e-05 10503498200.0 +UniRef50_D3NZU9 0.00762712272573 0.000671757737056 -2.80796619785e+12 +UniRef50_Q9KPB3 GTPase Era 0.00118255818439 0.00603129469943 1.95749443181e+12 +UniRef50_UPI00046411BA diaminopimelate decarboxylase, partial 8.60334502678e-06 1.05949688857e-05 804042991.819 +UniRef50_UPI00037DE21F multidrug transporter 0.000164501174775 0.000155239578183 -3739020196.76 +UniRef50_Q839Y4 Adenylosuccinate synthetase 0.0347473135737 0.0140876365168 -8.34056515062e+12 +UniRef50_M9VFY2 0.000108785587569 0.00431494178593 1.69807687262e+12 +UniRef50_W0E3L8 Flagellar hook capping protein 7.32679813667e-06 1.00367653662e-05 1094047025.6 +UniRef50_Q5HKD7 Oxidoreductase, short chain dehydrogenase reductase family 0.0132319131403 0.00499700710651 -3.3245326195e+12 +UniRef50_UPI00036E9589 hypothetical protein, partial 6.63350689618e-05 2.75294293418e-05 -15666312913.3 +UniRef50_M3F475 1.49444886109e-05 0.00102414303003 4.0742583543e+11 +UniRef50_UPI000463B4EA carnitine dehydratase 1.05141878525e-05 0.000181113420105 68873003548.1 +UniRef50_D6EJW5 Predicted protein 1.28993004054e-06 0.000216715425948 86969916265.8 +UniRef50_H4XQD7 Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein 0.00112624474485 0.000297298696507 -3.34655692028e+11 +UniRef50_UPI0003A6E25E serine dehydratase 7.84921346501e-06 1.15845442806e-05 1507998887.92 +UniRef50_UPI00039D719D DNA binding protein 1.646249897e-05 7.62296948745e-06 -3568626525.33 +UniRef50_G5RJ22 0.000297856595278 0.000458721991281 64943334406.8 +UniRef50_W0YK09 0.00188742994426 0.000522684433979 -5.50964509811e+11 +UniRef50_I6B1F5 0.000143154764953 7.05798232947e-05 -29299394542.1 +UniRef50_B9KLE9 Transcriptional regulator, AraC family 0.00220524596689 0.000723224584158 -5.98310218656e+11 +UniRef50_UPI0004764017 peptide ABC transporter permease 5.79321490638e-06 1.88023816264e-06 -1579716729.07 +UniRef50_UPI00037A033B hypothetical protein 5.52278806612e-06 2.41599996676e-05 7524071027.83 +UniRef50_Q0K7G7 Acyl CoA synthetase 0.00146380294672 0.000799607146322 -2.6814399522e+11 +UniRef50_C2ZQ18 ABC transporter ATP binding protein yxdL 0.0142986704227 0.00118600761412 -5.2937428863e+12 +UniRef50_Q6FDY0 Cell shape determining protein MreC 0.00116538673977 0.00465542170944 1.4089699448e+12 +UniRef50_C6CXW7 LmbE family protein 5.88736323765e-06 1.7798412076e-05 4808636581.03 +UniRef50_I0C3E8 Myo inositol 1 monophosphatase 0.0125863151521 0.0065766851731 -2.42616136898e+12 +UniRef50_Q3AHV1 Glutamyl Q tRNA synthetase 5.46980659771e-06 9.86217989472e-06 1773255000.48 +UniRef50_A3M2F5 Conjugal transfer protein 0.000138781613551 0.0105792594756 4.21494903196e+12 +UniRef50_UPI00046744B6 ABC transporter permease, partial 0.000255394058913 0.000129835462706 -50689546066.0 +UniRef50_UPI000362E5AE hypothetical protein 4.99055866453e-06 8.32020359926e-06 1344218519.49 +UniRef50_D3SBY0 Ribonuclease, Rne Rng family 0.00087350077108 0.000568480292046 -1.23140510408e+11 +UniRef50_B1LM32 Fatty acid oxidation complex subunit alpha 0.00219675556078 0.00898546085097 2.74068363243e+12 +UniRef50_UPI0003FCFBC7 GTP binding protein Era 1.4978195305e-05 7.17873565932e-05 22934555538.8 +UniRef50_UPI00036244E1 MULTISPECIES 2.32920935315e-05 3.91430741955e-05 6399235407.46 +UniRef50_F4EDN7 Ribulose phosphate 3 epimerase 0.00399043971041 0.002485363064 -6.07617911523e+11 +UniRef50_Q8CQF2 Capsular polysaccharide synthesis enzyme Cap5B 0.00917460579185 0.00283808374536 -2.55813170804e+12 +UniRef50_P08997 Malate synthase A 0.00330262831587 0.000239826397051 -1.23649071943e+12 +UniRef50_A0A036W4K8 0.000175972960421 1.05574901127e-05 -66780255239.4 +UniRef50_UPI00047C7627 glutathione synthetase 6.76957271516e-06 1.3231054911e-05 2608579653.76 +UniRef50_P32167 0.00631360126312 0.00387100126126 -9.86107594824e+11 +UniRef50_F7X4C7 Delta aminolevulinic acid dehydratase 0.00032238132368 0.000516274360376 78276998249.3 +UniRef50_P65897 Phosphoribosylglycinamide formyltransferase 0.00460402110486 0.00135545998455 -1.3114839886e+12 +UniRef50_UPI000287C995 membrane protein 2.47886402903e-05 0.00013213731124 43337975778.8 +UniRef50_M5DTI1 1.32813830827e-05 1.86778831321e-05 2178633292.45 +UniRef50_B6ERK3 L allo threonine aldolase 0.00353744798453 0.000502783432462 -1.22513131919e+12 +UniRef50_V8CW46 0.0021583852341 0.000604621637068 -6.27273430944e+11 +UniRef50_H0UKG1 Urocanate hydratase 5.67079602693e-05 0.00831233597702 3.33289833831e+12 +UniRef50_M7AG58 5.65768941141e-05 2.65313754221e-05 -12129744595.9 +UniRef50_P37643 Inner membrane metabolite transport protein YhjE 0.00290675726449 0.00735094201163 1.7941719187e+12 +UniRef50_UPI000466C516 flagellar biosynthesis protein FlhB 0.000152961130101 2.0631210496e-05 -53423212415.3 +UniRef50_UPI0003648093 hypothetical protein 4.65536964476e-06 7.53183002715e-06 1161262354.51 +UniRef50_P43669 Tail specific protease 0.00313247374606 0.00120983697504 -7.76192057867e+11 +UniRef50_E6S4X2 Outer membrane protein 5.83741219845e-05 0.00927612093405 3.72131750251e+12 +UniRef50_G4R850 Molybdopterin guanine dinucleotide biosynthesis protein MobA 7.40469363506e-06 1.96668148133e-05 4950368792.79 +UniRef50_B7H1A9 DNA polymerase III, subunits gamma and tau 0.000122424811164 0.00431159539542 1.69121957177e+12 +UniRef50_K4L2S2 Flagellar motor rotation protein MotA 0.000159951690188 0.000645185269355 1.95894750395e+11 +UniRef50_G5M6M8 0.000230069696257 0.00175435666453 6.15373354195e+11 +UniRef50_N6UCJ2 7.76268620214e-06 0.000119857349329 45253991060.6 +UniRef50_C5N315 0.0152296120901 0.000619545535373 -5.89826315381e+12 +UniRef50_UPI000465C017 ferredoxin 1.93723789665e-05 0.000167761450846 59906489256.2 +UniRef50_A0A022H1C7 DNA binding protein 3.43926884354e-05 4.61142098899e-05 4732122050.42 +UniRef50_A1AZ02 1.7016476536e-05 8.81937904438e-06 -3309268847.06 +UniRef50_UPI0002484134 hemolysin type calcium binding protein 3.84764336707e-05 1.72492509887e-05 -8569674135.55 +UniRef50_A0A023S0A7 DcaP like protein 0.000259409943429 0.00820890118734 3.20930716639e+12 +UniRef50_V4A4N8 3.99879225442e-05 7.17293110198e-05 12814388038.2 +UniRef50_Q59977 Citrate synthase 1.64762271917e-05 8.97766192279e-05 29592267762.0 +UniRef50_V4YV07 0.000456636276836 0.000714475899663 1.04093019783e+11 +UniRef50_F3U350 0.00743902633541 0.00224180998752 -2.09818001666e+12 +UniRef50_R7BMM6 Glycerol 3 phosphate cytidyltransferase TagD 0.00379100297471 0.000765336638399 -1.22149862907e+12 +UniRef50_UPI0002B41A80 PREDICTED 1.31749187047e-06 2.08007236196e-06 307863102.329 +UniRef50_UPI0004762A43 iron ABC transporter 8.82551747071e-06 4.00482074699e-05 12604983098.2 +UniRef50_P39142 Pyrimidine nucleoside phosphorylase 0.0101609472363 0.0082711488146 -7.62934813275e+11 +UniRef50_Q1R031 Uridylate kinase 0.000503713269936 0.0067419351698 2.51844673256e+12 +UniRef50_A9NG27 Thymidylate synthase 3.66256855311e-05 0.000352304721448 1.27443500617e+11 +UniRef50_A6UJH5 5.44900500844e-05 0.000216878853269 65558352580.5 +UniRef50_H5LJB5 0.00159869564113 0.000242394012474 -5.47555611183e+11 +UniRef50_D6K6K4 0.00016643821842 0.000163292597318 -1269925839.99 +UniRef50_B1TED8 6.22426323493e-05 0.000100004406744 15244891712.2 +UniRef50_P0A5T7 Formyltetrahydrofolate deformylase 1.9670168743e-05 2.60927527183e-05 2592875964.8 +UniRef50_X2GNK8 Arsenic transporter ATPase 0.000158764481514 0.00579713249654 2.27627835822e+12 +UniRef50_G7M542 Two component transcriptional regulator, winged helix family 0.000172368031437 0.00281842012135 1.06824369941e+12 +UniRef50_P55910 L lactate permease 0.0104828072799 0.00125029396343 -3.72727892154e+12 +UniRef50_A6LWU2 ABC transporter related 0.000244264005313 0.00110788236617 3.48653330067e+11 +UniRef50_B8ZUC1 Phosphoglucosamine mutase 4.12083920184e-06 4.34954885932e-05 15896029140.6 +UniRef50_A0A024HWF4 7.19532428526e-06 0.000129565183052 49402213631.3 +UniRef50_G8V8M1 Membrane spanning protein 0.000332099110422 0.00630498737476 2.4113282879e+12 +UniRef50_A8HYX7 ABC type branched chain amino acid transport ATPase component 0.0123506018978 0.00223487074113 -4.08384480194e+12 +UniRef50_A6LZK9 Methyl accepting chemotaxis sensory transducer 0.00032748132922 0.000845520705842 2.091388534e+11 +UniRef50_K2KCN1 2.36104821523e-05 1.75743252226e-05 -2436870624.49 +UniRef50_P54933 ATP binding transport protein SmoK 0.00193713174033 0.00155532118149 -1.54141607946e+11 +UniRef50_UPI0004698811 DNA topoisomerase I 1.96474976141e-06 9.49962261751e-06 3041920635.3 +UniRef50_P0AA51 0.00334585969751 0.00292305487312 -1.70691496005e+11 +UniRef50_F8KLF6 0.0161395852245 0.00122485690681 -6.02125884615e+12 +UniRef50_Q6B945 3 oxoacyl [acyl carrier protein] synthase 3 4.10706383138e-05 1.24820701495e-05 -11541555789.1 +UniRef50_A0A024L5K6 Amino acid ABC transporter permease 0.000359510465573 0.0011483803807 3.18476465259e+11 +UniRef50_UPI000262D62D glucose 6 phosphate 1 dehydrogenase, partial 1.05059878376e-05 1.03288499718e-05 -71512730.1495 +UniRef50_Q9JZ77 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.000268190343332 0.00488176321812 1.86255598446e+12 +UniRef50_Q08WZ7 0.000167211316105 6.34923387838e-05 -41872623919.5 +UniRef50_UPI0003B3DE24 multidrug ABC transporter ATP binding protein 1.69221278616e-05 7.77250975164e-06 -3693813109.43 +UniRef50_UPI0004737AC7 hypothetical protein 0.000103062271139 0.000383389254612 1.13171443227e+11 +UniRef50_UPI0003B6AFA9 glycerol 3 phosphate dehydrogenase 1.86023845111e-05 5.93021304059e-06 -5115911127.67 +UniRef50_Q9AF05 1.86027704527e-05 9.35565678686e-06 -3733173261.74 +UniRef50_B6ITD9 2.43993609106e-05 6.75563235453e-05 17422995411.1 +UniRef50_P69424 Sec independent protein translocase protein TatC 0.00245849186491 0.00132319596881 -4.58332884903e+11 +UniRef50_F0KHC4 Cell division protein ftsA 0.000306533843866 0.00473524918581 1.78792672999e+12 +UniRef50_Q9RTP9 1.083114388e-05 0.102880427759 4.15297185054e+13 +UniRef50_R0PW25 0.000168270128756 0.00256412201142 9.67234805439e+11 +UniRef50_Q6A6H1 NADH quinone oxidoreductase subunit N 0.000103997588196 0.00625544529755 2.48341492702e+12 +UniRef50_UPI00029A832E aspartyl glutamyl tRNA amidotransferase subunit B 9.36553079156e-05 2.36942158064e-05 -28244151403.6 +UniRef50_Q9HA92 Radical S adenosyl methionine domain containing protein 1, mitochondrial 2.53181032556e-05 9.99153284642e-06 -6187524552.36 +UniRef50_UPI00045EA718 hypothetical protein 8.91871129846e-06 4.0771068876e-06 -1954615113.83 +UniRef50_UPI00037A936B hypothetical protein 1.7297532389e-05 3.72679047838e-05 8062284399.81 +UniRef50_A5CSI8 Argininosuccinate lyase 4.7338225616e-06 0.00627576491785 2.53169220737e+12 +UniRef50_Q82Z40 DNA directed RNA polymerase subunit beta 0.0072572200655 0.005897493267 -5.48938394279e+11 +UniRef50_I4YRS4 Replication protein C 8.03090426695e-05 1.43582989626e-05 -26625124541.1 +UniRef50_A5HY11 Spore coat protein 0.000331365286798 0.00154988058338 4.91929578094e+11 +UniRef50_UPI0003680468 hypothetical protein 7.78512611721e-05 2.78911788629e-05 -20169498307.4 +UniRef50_UPI000392E29D PREDICTED 2.18805900061e-05 1.37838425997e-05 -3268756286.23 +UniRef50_P37487 Manganese dependent inorganic pyrophosphatase 0.00493600771547 0.00921295754804 1.72665713148e+12 +UniRef50_Q2NFD4 Flap endonuclease 1 0.00190689529131 0.000185928670631 -6.94775343404e+11 +UniRef50_P43010 NAD transhydrogenase subunit beta 0.000247026354042 0.00874579628668 3.43105771344e+12 +UniRef50_A0A037XJH2 Membrane protein 4.92629381754e-05 7.2392851173e-06 -16965464427.8 +UniRef50_UPI000237ADAF branched chain amino acid ABC transporter ATP binding protein 6.88760517269e-05 8.37878857449e-06 -24423487519.5 +UniRef50_R7PX51 Peptidase M50 0.00558849007108 0.00144300766143 -1.67358211957e+12 +UniRef50_UPI0003D2B83C catalase 0.000120029996956 0.000144385632098 9832668784.08 +UniRef50_Q9AC07 NifU like domain protein 0.00409168324117 0.000866501500009 -1.30204544634e+12 +UniRef50_UPI0004785B50 hypothetical protein 5.22529040024e-05 1.46463247118e-05 -15182237544.2 +UniRef50_I7EPM1 Gamma glutamyltranspeptidase Ggt 0.00136020741089 0.00088002878136 -1.93854005196e+11 +UniRef50_UPI0004785B1F LuxR family transcriptional regulator 4.22536934038e-05 0.000995542231388 3.8485428095e+11 +UniRef50_C9JF41 Transcription cofactor HES 6 1.55468564229e-05 0.000137167252976 49099646538.5 +UniRef50_P62423 Phosphoglycerate kinase 0.00179555853644 0.00299905857252 4.85867733172e+11 +UniRef50_L7WTC3 Lipoprotein 0.00994670720227 0.000675427690666 -3.74292931023e+12 +UniRef50_G7MAA3 0.000189691451679 0.00313423375231 1.18874786036e+12 +UniRef50_UPI0003AE3085 PREDICTED 0.000145969244132 4.4634705658e-05 -40909996696.6 +UniRef50_F7MME9 Radical SAM family protein 3.62424329115e-05 3.30274587994e-05 -1297924501.22 +UniRef50_UPI000367D5BE hypothetical protein 8.68124865621e-06 1.82511209614e-05 3863474885.14 +UniRef50_T2K0U5 Plasmid replication protein 3.77228265956e-05 6.70767184903e-06 -12521198570.0 +UniRef50_D9QK96 FAD dependent oxidoreductase 1.40727113362e-05 3.7128363778e-06 -4182408650.67 +UniRef50_O67262 Diaminopimelate decarboxylase 1.54228866344e-05 9.96394916168e-05 33999276885.4 +UniRef50_Q9XJJ6 Spanin, inner membrane subunit 0.000838857753003 0.00653054548712 2.29780418313e+12 +UniRef50_C5IBJ2 RhsA 0.000761381634286 0.000389300886958 -1.50213563641e+11 +UniRef50_A5VCY9 Polyribonucleotide nucleotidyltransferase 1.45816899375e-05 2.96065127916e-05 6065705361.51 +UniRef50_T1XSM0 Cell shape determinant MreD 0.0115770177727 0.00803400690555 -1.4303569647e+12 +UniRef50_Q07T82 Protease HtpX homolog 0.00252656485065 0.00108266774844 -5.82918978772e+11 +UniRef50_Q12A19 Histone deacetylase superfamily 0.00294968877164 0.000600541100723 -9.48379742034e+11 +UniRef50_F2MQQ8 Tagatose 6 phosphate kinase 0.00763103817039 0.00339285856977 -1.71100511308e+12 +UniRef50_Q9K1M6 9.04771327611e-05 0.0029869506689 1.16934191027e+12 +UniRef50_G9P654 0.000211992637469 0.000250870066872 15695295329.7 +UniRef50_A6LY61 AAA ATPase 0.000329615525915 0.000826180358046 2.00469316267e+11 +UniRef50_P77216 0.00324359650427 0.00158361671743 -6.7015421019e+11 +UniRef50_P22983 Pyruvate, phosphate dikinase 0.00100711043243 0.00623050255463 2.10874749796e+12 +UniRef50_UPI000289D44B AMP dependent synthetase ligase 3.11363157333e-05 2.73178130336e-05 -1541576398.17 +UniRef50_P43712 Malonyl CoA acyl carrier protein transacylase 0.000606724884815 0.0009322051588 1.314003807e+11 +UniRef50_R3W3Z9 Regulatory protein BlaR1 0.000423383718283 0.000154347329742 -1.08613291502e+11 +UniRef50_G7M658 0.000817523306876 0.000385684116258 -1.74338780515e+11 +UniRef50_B9NM77 0.000917851048195 0.000393339400741 -2.11751788559e+11 +UniRef50_G9L997 GMP synthase 0.000126979662922 9.81998749854e-05 -11618753557.7 +UniRef50_U5UNZ2 Cell division protein DivIB 0.00883444999799 0.00343873603891 -2.17831593814e+12 +UniRef50_UPI0003BCFABD PREDICTED 1.37276829101e-05 1.20484130898e-05 -677941833.413 +UniRef50_H8GRZ1 0.000184538064811 0.00441625287451 1.70839519766e+12 +UniRef50_UPI000252B988 PREDICTED 7.52495179263e-06 6.129126153e-06 -563511939.425 +UniRef50_P0A9Q3 Aerobic respiration control protein ArcA 0.00209069326909 0.00312937584048 4.19328900139e+11 +UniRef50_Q62CS2 Conserved domain protein 0.000122481085786 6.6379520224e-05 -22648890461.0 +UniRef50_I7BX60 0.000692922191886 0.000439246632237 -1.02411936379e+11 +UniRef50_N8WA96 0.000258967631858 0.00706703195947 2.7484991134e+12 +UniRef50_Q9ZIG2 Thymidine kinase 1.79794644102e-05 1.08213928046e-05 -2889801346.6 +UniRef50_H8GUV3 GTPase, G3E family 0.000166537936259 0.0192423497852 7.70113932994e+12 +UniRef50_K9BES8 Type I secretion C terminal target domain protein, VC_A0849 subclass family 8.91442553166e-05 0.00255416038734 9.95157261646e+11 +UniRef50_U6H4I5 2.7705225072e-05 0.00018278765798 62608681240.4 +UniRef50_Q8L7B5 Chaperonin CPN60 like 1, mitochondrial 0.0330292442193 0.0614562438329 1.14763285825e+13 +UniRef50_P37725 Uroporphyrinogen III C methyltransferase 2.24046064489e-05 2.63905492569e-05 1609174024.61 +UniRef50_UPI00037CF2DE hypothetical protein 3.21744569382e-06 0.000439102108772 1.75971987391e+11 +UniRef50_P76641 Guanine deaminase 0.000680806716102 0.00668236540545 2.4229028903e+12 +UniRef50_U3TW22 Glycine betaine ABC transporter substrate binding protein 0.00181643860444 0.000558141041216 -5.07990167319e+11 +UniRef50_UPI000368C576 hypothetical protein 0.000691926137349 0.000116396359191 -2.32348433987e+11 +UniRef50_Q8AAB1 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.26910642384e-05 4.11822586129e-05 11502244795.3 +UniRef50_Q4L7J6 Sensor protein VraS 0.0172759452698 0.00346547147105 -5.57545774611e+12 +UniRef50_P39366 Putative aminopeptidase SgcX 0.00314707647034 0.00311622320841 -12455840453.2 +UniRef50_UPI00036B883D hypothetical protein 6.01140992804e-05 3.87656002647e-05 -8618651028.18 +UniRef50_Q9ZE99 Prolipoprotein diacylglyceryl transferase 1.55172015048e-05 1.33995511588e-05 -854921431.172 +UniRef50_P48632 Ferripyoverdine receptor 0.0011528000235 0.000565769953355 -2.36991242987e+11 +UniRef50_UPI00037AF8F5 50S ribosomal protein L10 0.000197079205272 0.000133012450425 -25864535119.2 +UniRef50_UPI00035D9CD4 hypothetical protein 1.04867074349e-05 2.20535250532e-05 4669666213.32 +UniRef50_Q73DE0 Quinol oxidase subunit 2 5.8386679675e-05 0.000347431417872 1.16690907788e+11 +UniRef50_G6XJ67 6.98003965453e-06 2.49942494553e-05 7272557555.8 +UniRef50_UPI00016C3B3C autotransporter associated beta strand repeat protein, partial 4.05438320609e-05 4.23918719097e-06 -14656630642.1 +UniRef50_P56453 Glycine tRNA ligase alpha subunit 0.0011651247949 0.00370800724976 1.0265928517e+12 +UniRef50_A6M1U7 Transcriptional regulator, GntR family 0.000642529342721 0.00160126541707 3.87053518229e+11 +UniRef50_X5DX47 Bacterial regulatory s, tetR family protein 0.00940476762368 0.00142347219139 -3.22214690752e+12 +UniRef50_F8HGF9 0.00822854273072 0.0236089422457 6.20925602293e+12 +UniRef50_UPI0004719644 phosphoenolpyruvate carboxykinase 2.72049244395e-05 0.0001159383943 35822790664.8 +UniRef50_UPI000255D4C6 ferredoxin NADP reductase subunit alpha 9.04421235478e-05 0.00017960068757 35994406394.4 +UniRef50_UPI000262CC71 mannose 1 phosphate guanyltransferase 2.66215683657e-05 1.18020487549e-05 -5982821922.84 +UniRef50_A4X0F9 0.00169373056156 0.000671174329992 -4.12818498861e+11 +UniRef50_G7U4K0 Hydrolase, NUDIX family protein 0.000256212209626 0.00550827275118 2.12032129065e+12 +UniRef50_W0T788 7.92680359609e-06 6.59641250591e-05 23430378872.6 +UniRef50_K1ER07 Major facilitator transporter 0.000176768395805 3.61346748635e-05 -56775558914.1 +UniRef50_A7X202 Nuclease SbcCD subunit D 0.0246215119242 0.00570094479188 -7.63846513278e+12 +UniRef50_U6AXU2 ABC transporter, periplasmic spermidine putrescine binding protein PotD 0.00181530426283 0.00122363040151 -2.3886599847e+11 +UniRef50_Q1MRB9 ATP synthase subunit alpha 0.000601431102195 0.00588077105119 2.13133432219e+12 +UniRef50_Q4L700 UPF0758 protein SH1266 0.0162152868427 0.00220835798357 -5.65476906476e+12 +UniRef50_G7U594 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 9.66261063593e-05 0.00576842997014 2.28977682067e+12 +UniRef50_UPI000479001A uridine kinase 9.89054462057e-06 0.000256250654091 99458599371.5 +UniRef50_F3KRZ8 7.5192958706e-05 2.62319045263e-05 -19766178392.0 +UniRef50_R5Q800 0.0026269996782 0.000794912925284 -7.39635904386e+11 +UniRef50_K0HYU5 0.000671378910635 0.0114090895128 4.33494553663e+12 +UniRef50_T9BKY3 Xanthine dehydrogenase accessory factor 0.000167955557231 3.0107772009e-05 -55650842476.7 +UniRef50_A4WZ55 Heme A synthase 0.00596508311088 0.000570587245925 -2.17782417859e+12 +UniRef50_F7XW34 30S ribosomal protein S1 0.0119959516228 0.00464029319678 -2.96956957066e+12 +UniRef50_V5WF15 Oligopeptide transport system permease protein OppB 0.000765516270981 0.00116422200583 1.60962397828e+11 +UniRef50_N3GRF4 Type VII secretion system , usher family protein 0.00109103283534 0.000556554468458 -2.15775475497e+11 +UniRef50_D0WC80 2.55406071133e-05 0.000349879066668 1.30939416203e+11 +UniRef50_P0ACI5 Xylose operon regulatory protein 0.00393616738578 0.000305238942662 -1.46585036899e+12 +UniRef50_Q60151 Glutathione reductase 0.00601246333006 0.00593158841279 -32650196548.7 +UniRef50_P20370 4 carboxymuconolactone decarboxylase 3.76687772533e-05 0.000275436083939 95989579442.1 +UniRef50_A4XU74 Elongation factor P 0.00127242468152 9.74772781063e-05 -4.74340684983e+11 +UniRef50_S5Y8U0 Glyoxalase bleomycin resistance protein dioxygenase 0.0003380471542 0.000831878042813 1.9936558972e+11 +UniRef50_A5FMG2 Leucine tRNA ligase 6.00887002074e-06 2.15704384974e-06 -1555029492.46 +UniRef50_D4HCU9 Cysteine rich domain protein 0.000577784676811 0.00635551188357 2.33253937405e+12 +UniRef50_Q75AN4 ADL112Wp 0.000287009044144 0.00014151430695 -58738010826.4 +UniRef50_UPI00047A0692 hypothetical protein 3.33296290105e-05 5.88666255555e-05 10309598879.4 +UniRef50_Q0TLW2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.96110222257e-05 5.46533636745e-05 -10075713022.0 +UniRef50_Q21Y74 Penicillin amidase 0.000445437462131 8.43762014861e-05 -1.45764861642e+11 +UniRef50_A4WV32 0.000827774426284 0.000980244008616 61553841399.6 +UniRef50_UPI0002489B60 hemolysin type calcium binding region 2.20736930467e-05 3.08847668455e-05 3557138616.61 +UniRef50_I6SV43 0.00270985826164 0.00488969432594 8.80026568754e+11 +UniRef50_UPI00037DDE2A hypothetical protein 1.31876817892e-05 2.35911233374e-05 4199997017.59 +UniRef50_A6M0W1 0.00036734713342 0.00117287919229 3.25203177156e+11 +UniRef50_Q9CHL8 Multidrug resistance ABC transporter ATP binding and permease protein 3.79380803442e-05 3.45257736482e-05 -1377590086.89 +UniRef50_A3M5M9 Aldehyde dehydrogenase 0.00161779709507 0.000892788613137 -2.92694821011e+11 +UniRef50_B7MT79 Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor] 0.0039868811774 0.00216231605159 -7.36599331221e+11 +UniRef50_Q8A2T6 S adenosylmethionine synthase 4.6309620919e-05 0.00418181746631 1.66955526557e+12 +UniRef50_Q87ZG4 Non homologous end joining protein Ku 0.000463098809869 0.000811031327626 1.40464627031e+11 +UniRef50_A0A023S0C8 Long chain fatty acid transporter 0.000438197115076 0.0180022572371 7.09082660651e+12 +UniRef50_Q1MPL2 Porphobilinogen deaminase 9.6689147599e-06 9.77905084099e-06 44463287.4577 +UniRef50_C2RB76 Glyoxalase 8.86165257367e-06 0.000237838957205 92440947747.0 +UniRef50_A6LTD1 0.000435560756373 0.000434289272355 -513313700.93 +UniRef50_Q5HFS5 Tyrosine recombinase XerD 0.00872999922707 0.00152204699815 -2.90993876634e+12 +UniRef50_K8NEW5 9.11216619719e-05 0.000150873625599 24122600955.3 +UniRef50_H6NGS7 Glutamine ABC transporter substrate binding protein 0.000335140754847 0.000285330149942 -20109152445.0 +UniRef50_Q5HKU1 Arginine repressor 0.0125086002255 0.00740974031135 -2.05847231739e+12 +UniRef50_E8QXQ6 Magnesium protoporphyrin chelatase, putative 2.25699950721e-05 0.000313866754202 1.17600076274e+11 +UniRef50_D3D6E8 5.46359858431e-05 9.98706445071e-06 -18025317470.0 +UniRef50_P12011 Gluconokinase 0.0141270022645 0.00249369216922 -4.69651004224e+12 +UniRef50_UPI0004111510 hypothetical protein 3.64522810078e-06 9.41683890714e-06 2330070108.16 +UniRef50_G7M433 Transglutaminase domain containing protein 0.00110825846102 0.00134472761166 95465497916.2 +UniRef50_UPI00042062D8 hypothetical protein 5.58610110711e-06 3.26864189117e-05 10940730856.0 +UniRef50_B0UDK8 Light independent protochlorophyllide reductase iron sulfur ATP binding protein 0.0127444497704 0.00104203776195 -4.72440733254e+12 +UniRef50_C2ZDZ0 9.33091993623e-05 0.000183616604275 36458207559.7 +UniRef50_Q8CWX8 Signal recognition particle receptor FtsY 0.00453225023052 0.00248380827919 -8.26981152961e+11 +UniRef50_Q6F9W0 DNA mismatch repair protein MutL 5.81045647247e-05 0.0086032855284 3.4497944162e+12 +UniRef50_UPI000255B291 ribosomal large subunit pseudouridine synthase A 4.39709536948e-06 4.57035153459e-06 69945639.9471 +UniRef50_E6SIA9 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 0.000370977058843 0.0443345427276 1.77486309541e+13 +UniRef50_UPI00037DBD2E hypothetical protein 0.00194805508597 0.000456675317307 -6.02088313896e+11 +UniRef50_UPI0002EC1AE8 hypothetical protein 3.36831035119e-06 0.000110842792958 43388767488.7 +UniRef50_UPI0003A0F247 30S ribosomal protein S13 4.29788998148e-05 0.000257430416149 86576708760.1 +UniRef50_G2ZGH2 Gyrase B 4.84374055578e-05 8.62020229093e-06 -16074693570.9 +UniRef50_UPI000465F37A ABC transporter 1.63858586201e-05 4.28736713038e-05 10693455022.4 +UniRef50_Q8DV69 0.0159086476172 0.000363839883189 -6.27562963846e+12 +UniRef50_D2N5G1 LysM domain protein 0.0103363034143 0.00315116686925 -2.90072779478e+12 +UniRef50_F9NYN4 Conserved domain protein 1.42849738216e-05 2.87807051516e-05 5852104620.55 +UniRef50_Q219F8 Peptidyl tRNA hydrolase 7.23210324156e-05 3.35713450462e-05 -15643724303.2 +UniRef50_A9LZL8 Type II restriction endonuclease 0.000117474892792 0.0022743775068 8.70768053447e+11 +UniRef50_S4AF74 4.46418878164e-05 1.12982766285e-05 -13461225008.7 +UniRef50_F4FDU4 3.04192586597e-05 0.000197821328162 67582269712.4 +UniRef50_Q932N6 0.000754306752964 0.000220760383266 -2.15399216797e+11 +UniRef50_D2NSF8 3.07909073336e-05 0.000426455262018 1.59734555334e+11 +UniRef50_M0TB60 8.67765209201e-05 0.000416504302426 1.33115151609e+11 +UniRef50_B4RCU4 Ribonuclease 3 1.56741382206e-05 1.17962455336e-05 -1565552864.84 +UniRef50_A0A017HMU6 Secreted hemolysin type calcium binding protein bacteriocin, putative 1.19910626612e-06 2.75352645637e-06 627538505.685 +UniRef50_R1DNP7 5.59780954246e-05 4.25736197387e-05 -5411551325.81 +UniRef50_UPI0003B5DB85 hypothetical protein, partial 6.99021298875e-06 8.66887360839e-06 677695891.631 +UniRef50_W6IYR1 Auxin binding protein 7.0033383238e-06 3.17342072226e-05 9984155256.33 +UniRef50_Q0TMI0 tRNA lysidine synthase 0.000442540974491 0.000714828076404 1.09925644381e+11 +UniRef50_B8GQB0 Flagellar hook capping protein 7.84049383311e-06 1.22582275171e-05 1783493299.92 +UniRef50_UPI00039DC1E4 3 oxoadipate enol lactonase 9.83179082138e-06 3.81141198949e-05 11417923310.2 +UniRef50_U5MQD6 TIGR03943 family protein 0.000833451241271 0.00141981968315 2.36724135536e+11 +UniRef50_P0A913 Peptidoglycan associated lipoprotein 0.00203267977688 0.00110657623782 -3.73879363287e+11 +UniRef50_B4TF25 Nitric oxide reductase FlRd NAD reductase 0.00421109277935 0.00116223282026 -1.2308621792e+12 +UniRef50_R9BBW4 HAE1 family hydrophobic amphiphilic exporter 1 0.000234597045345 0.00730659950531 2.85505417632e+12 +UniRef50_L7WTZ4 0.0134312978767 0.00331779071393 -4.08294694831e+12 +UniRef50_B4R909 0.000114209820231 4.5341666563e-05 -27802918743.1 +UniRef50_UPI0003B6B13E ABC transporter permease 0.000122793294573 1.87966287625e-05 -41984730170.1 +UniRef50_V1XPG8 0.000460879377242 0.000179924051069 -1.13425112886e+11 +UniRef50_B9DXX3 0.000424355854593 0.00372440498799 1.33227033131e+12 +UniRef50_P0A1Q3 Lactoylglutathione lyase 0.00010092957212 3.19574935491e-05 -27844874501.7 +UniRef50_Q3HKI1 Possible replication protein C 0.0399137244924 0.00949697881737 -1.22796134844e+13 +UniRef50_K9YB57 PUCC protein 2.71051295482e-05 1.07896829135e-05 -6586746019.47 +UniRef50_UPI00036A764A hypothetical protein 3.0617160072e-05 3.25853016508e-05 794562907.175 +UniRef50_W4KF41 7.81686305015e-05 6.11403854125e-05 -6874511502.49 +UniRef50_Q13BG6 NADH quinone oxidoreductase subunit K 0.000126163005581 2.94459071699e-05 -39045879480.8 +UniRef50_UPI00029CB7E1 hypothetical protein, partial 0.000852323929784 0.00231825727847 5.91815281891e+11 +UniRef50_UPI00037A794A hypothetical protein 1.14358175463e-05 1.80487944072e-05 2669739909.1 +UniRef50_W4KF45 6.09956871518e-06 1.06557100331e-05 1839370160.19 +UniRef50_UPI00037E1072 hypothetical protein 5.08539077618e-05 9.81698492146e-06 -16567109330.3 +UniRef50_D8NYU1 3.12001958753e-05 2.79900684554e-05 -1295967832.11 +UniRef50_V6L4N0 1.05994254609e-05 1.46478400054e-05 1634394631.25 +UniRef50_O27710 Phosphosulfolactate synthase 0.00333280018207 0.00108925824294 -9.05745412182e+11 +UniRef50_A1BCD3 0.00240814851133 0.000352968173539 -8.29701522265e+11 +UniRef50_UPI00047DD048 glucose 6 phosphate dehydrogenase 3.38520627299e-06 5.29182485174e-06 769725317.082 +UniRef50_G2TC10 ChaC like protein 1.10700891022e-05 1.97799130966e-05 3516262828.1 +UniRef50_G8S496 Replication associated recombination protein A 8.17069239939e-05 0.00643759371496 2.56594949302e+12 +UniRef50_D6YPZ0 47 kDa protein 8.60285291717e-06 1.00515693978e-05 584864620.981 +UniRef50_UPI0004784B81 phosphoesterase 1.3258339726e-05 1.48909011993e-05 659085100.553 +UniRef50_Q1IYN8 0.000536111567746 0.00980643409211 3.74254296273e+12 +UniRef50_UPI00025577F3 hydrogenase nickel insertion protein HypA 0.000209432980981 4.6966614284e-05 -65589665922.1 +UniRef50_UPI0003B54717 hydantoinase 3.88075202029e-06 6.94634257532e-06 1237616526.09 +UniRef50_UPI000463C9AE carboxypeptidase 1.13171730167e-05 5.38259837921e-06 -2395860606.57 +UniRef50_O43895 Xaa Pro aminopeptidase 2 4.72134874094e-06 2.81932979345e-05 9475913922.66 +UniRef50_UPI00036806EE hypothetical protein 4.96339050416e-05 0.000199211097749 60386148214.4 +UniRef50_UPI000262636B DNA gyrase subunit A 2.58771086859e-06 3.40799692556e-06 331159547.241 +UniRef50_F4FTG4 Galactonate dehydratase 0.000108890189088 0.00151581581718 5.67993140979e+11 +UniRef50_S5GEI0 Catecholate siderophore receptor CirA 0.00054048556745 0.000108705535652 -1.74314897374e+11 +UniRef50_A6LR14 Heavy metal translocating P type ATPase 0.000399984267679 0.0012763435474 3.53796995361e+11 +UniRef50_C4J951 4.39847392415e-05 0.00183861138937 7.24512801203e+11 +UniRef50_D2Q478 Spermidine synthase like protein 8.58804900762e-06 3.33284292898e-05 9987995118.53 +UniRef50_C6DEY0 RNA polymerase associated protein RapA 0.00150987729449 0.000199485169109 -5.29021381336e+11 +UniRef50_UPI0004692C05 hydrogenase 0.000138993631686 8.93476370612e-05 -20042697254.9 +UniRef50_Q3JT43 0.000138310262633 3.09381373665e-05 -43347444574.4 +UniRef50_B9KVR7 Transcriptional regulator, MerR family 0.0226956087143 0.00560804043464 -6.89846100256e+12 +UniRef50_B2KEK1 Adenylate kinase 9.98002542441e-06 2.25091531795e-05 5058162624.42 +UniRef50_Q46855 0.00279434620188 0.00180938255289 -3.9764191196e+11 +UniRef50_UPI0003A592DF transcriptional regulator 0.000191478620933 3.37712280436e-05 -63668409796.6 +UniRef50_P04816 Leucine specific binding protein 0.00456776130769 0.00159741202639 -1.19916645515e+12 +UniRef50_M3G6K7 Mg transport ATPase protein C 0.00049347560123 0.00412996962068 1.46809726045e+12 +UniRef50_S6DCW1 0.000183327125707 0.000216796944823 13512176698.0 +UniRef50_B9KL47 Protein tyrosine phosphatase 0.0214966044989 0.00248772224485 -7.6741190312e+12 +UniRef50_Q7VZ05 Tryptophan tRNA ligase 0.00139914842629 0.000455783882222 -3.80847842825e+11 +UniRef50_Q5HEB2 Cardiolipin synthase 2 0.0239397309071 0.00816247351671 -6.36947241722e+12 +UniRef50_X5K4N5 Membrane protein, putative 8.65793552431e-05 0.000130382651297 17683928143.8 +UniRef50_W4TSQ7 0.000251754755085 0.000310320057551 23643531282.6 +UniRef50_W4TSQ5 0.000340756501337 0.00531958090506 2.01001250883e+12 +UniRef50_Q9I048 tRNA dihydrouridine synthase A 0.000841950817805 0.000245950323951 -2.40612713117e+11 +UniRef50_E0Q484 0.000242521057489 2.86299041271e-06 -96752902613.8 +UniRef50_UPI000375D23B hypothetical protein, partial 5.50613882311e-05 0.000212718448872 63648090050.5 +UniRef50_Q83J60 HTH type transcriptional regulator DctR 0.00109287248752 0.000855990449842 -95632185480.1 +UniRef50_B4EY85 DnaA regulatory inactivator Hda 0.00442248171812 0.000772455356727 -1.47356043295e+12 +UniRef50_UPI000471D4BC hypothetical protein, partial 8.57598592947e-06 7.18395561893e-06 -561979718.498 +UniRef50_M1MLW2 dTDP glucose 4,6 dehydratase 2 0.000242514144524 0.00153846359622 5.23190696739e+11 +UniRef50_UPI00047D17AA hypothetical protein 1.4157799109e-05 8.12347972273e-06 -2436128785.66 +UniRef50_H8GSQ0 VanW like protein 8.55330790492e-05 0.0171574523692 6.89214331346e+12 +UniRef50_A5EY11 Ribosomal RNA small subunit methyltransferase H 1.5825019865e-05 9.33228205619e-06 -2621197928.27 +UniRef50_UPI000470B3CF ribosome binding factor A 2.11426364671e-05 6.80882719153e-05 18952529118.2 +UniRef50_A3PR72 Binding protein dependent transport systems inner membrane component 0.00308811386997 0.000800360338922 -9.23594174378e+11 +UniRef50_Q1INX8 DGPFAETKE domain protein 2.77849700215e-05 2.41196122496e-05 -1479749911.51 +UniRef50_UPI000365E142 hypothetical protein 9.86995092907e-06 1.96945478338e-05 3966310331.8 +UniRef50_UPI00037A3857 helicase 2.71397631932e-06 6.1906767045e-06 1403586609.41 +UniRef50_UPI0003B7A6B2 branched chain amino acid ABC transporter ATP binding protein 9.71799392539e-06 1.28538573967e-05 1265986564.74 +UniRef50_K0C423 MaoC like dehydratase 4.10710811275e-05 2.44621592625e-05 -6705225571.29 +UniRef50_G8LZB4 4.68915684868e-05 4.76521239978e-05 307045592.856 +UniRef50_A0A009XXP0 RecF RecN SMC N terminal domain protein 3.28534367999e-05 0.000492552110271 1.85585995617e+11 +UniRef50_P26266 Ferric enterobactin transport protein FepE 0.00199100890319 0.00161339547218 -1.52447175937e+11 +UniRef50_E9AEN0 Proteophosphoglycan ppg1 1.80671612417e-06 2.43313345527e-05 9093464867.74 +UniRef50_B2KCN5 Dihydroorotase 1.8650369405e-05 6.00951168899e-06 -5103269380.72 +UniRef50_UPI00024929D9 putative N acylamino acid racemase 1.47927670904e-05 0.000536841179644 2.10757350402e+11 +UniRef50_G4U7X4 1.33251904412e-06 1.38176042095e-06 19879348.0859 +UniRef50_UPI00039427DC phosphatase 8.28397872105e-06 1.98525445273e-05 4670371978.23 +UniRef50_UPI0003B3863F carboxynorspermidine decarboxylase 3.09783952287e-05 3.88751230482e-05 3188005924.48 +UniRef50_UPI00047C82E1 hypothetical protein 1.44520122436e-05 0.00344715948779 1.38582613194e+12 +UniRef50_X1KVA0 Marine sediment metagenome DNA, contig 8.86410354113e-06 3.61719251499e-05 11024502688.1 +UniRef50_E3E7X0 Formate dehydrogenase, alpha subunit 0.000391748896025 0.00193325895473 6.22326527153e+11 +UniRef50_N6V3N6 Sulfate transporter 0.000233868521761 7.22879104881e-05 -65232075588.0 +UniRef50_R6HNH6 8.60836599321e-05 4.46689868421e-05 -16719611741.6 +UniRef50_D3QF31 Phosphohydrolase, Icc family 0.0136169009713 0.00220175929637 -4.6084327737e+12 +UniRef50_UPI0004163F11 quinone oxidoreductase 6.62639838732e-06 6.93976101315e-05 25341508470.5 +UniRef50_B1ZSZ2 Phosphate transporter 0.000902655575258 0.0748742055766 2.98632224685e+13 +UniRef50_Q6A8L4 Histidinol phosphate aminotransferase 0.000100662930362 0.0064710586767 2.57180693634e+12 +UniRef50_G9ZDV2 5.34013212348e-05 5.15260477059e-05 -757070935.811 +UniRef50_V4I6Z5 Phenylacetate CoA oxygenase subunit PaaA 0.000144815596745 0.00575190871803 2.26365229983e+12 +UniRef50_UPI00037394E3 hypothetical protein 2.44302591315e-05 7.14735209376e-06 -6977321656.24 +UniRef50_UPI00037AD4AC hypothetical protein 5.84966394976e-06 3.05808327101e-05 9984276314.1 +UniRef50_U5MNP0 0.000236279194446 0.00169861027446 5.9036100182e+11 +UniRef50_R9SMA4 Cell wall biosynthesis protein Mur ligase family 0.00186229519288 0.000131251868968 -6.98843432153e+11 +UniRef50_UPI000376DBC0 hypothetical protein 0.000139560472831 2.93584994025e-05 -44489889003.2 +UniRef50_Q47083 HTH type transcriptional regulator cbl 0.00312781552367 0.00095501936351 -8.77184473064e+11 +UniRef50_U4TH79 0.00418600848012 0.000476317266442 -1.49764786599e+12 +UniRef50_F4DVS4 Periplasmic binding protein 0.000150994395537 0.000847619051331 2.8123592209e+11 +UniRef50_P0ABX0 Flagellar basal body rod protein FlgB 0.000822618361401 0.000427995224921 -1.59314202767e+11 +UniRef50_A0A059DWP9 2.75809257042e-05 1.79851733549e-05 -3873922976.54 +UniRef50_Z8B9P7 0.0144565389511 0.0028962080146 -4.66704746028e+12 +UniRef50_UPI00037E3FD0 hypothetical protein 1.70123333366e-05 2.15335157468e-05 1825256820.14 +UniRef50_A4GAA6 ABC transporter, permease component 0.00953114606574 0.0017456209993 -3.14311200846e+12 +UniRef50_P52642 UDP N acetylglucosamine 2 epimerase 0.00034076456275 0.00612892928251 2.33675312614e+12 +UniRef50_UPI0004703E7C hypothetical protein, partial 5.75760551305e-06 4.85529950903e-05 17277023930.8 +UniRef50_UPI00029A41E2 hypothetical protein 1.1891837283e-05 1.37626696677e-05 755277991.398 +UniRef50_UPI000375C1B4 hypothetical protein 1.40226852773e-05 3.81888269298e-05 9756167937.02 +UniRef50_B5E972 NADH quinone oxidoreductase subunit B C D 9.75325627698e-06 3.47281700506e-05 10082679167.1 +UniRef50_I3R6R8 Branched chain amino acids ABC transporter permease,azaleucine resistance protein 5.2676726555e-05 8.01865116547e-05 11106037827.8 +UniRef50_N6UXN6 Putative secreted adhesin 1.07169251094e-05 5.47112903536e-06 -2117792248.25 +UniRef50_Q28MM7 Phosphorylase 0.0106124843879 0.00228406714962 -3.36228424027e+12 +UniRef50_A3M6U7 CsuD 0.000186701138799 0.00411483172854 1.58583452266e+12 +UniRef50_Q0FEW4 Cation transport protein ChaC, putative 6.16379579696e-06 2.7587423158e-05 8648981263.11 +UniRef50_UPI0002C30275 PREDICTED 7.11700882617e-06 5.88617774061e-06 -496901613.236 +UniRef50_F3G839 1.43903178701e-05 1.21358788339e-05 -910144703.992 +UniRef50_B9J7K1 7.82720989392e-05 4.7223456485e-05 -12534717968.4 +UniRef50_M4R0D2 Glycosyltransferase 0.000191942028225 0.00674051719041 2.64374015303e+12 +UniRef50_U3TVU1 0.000137248050342 0.00121795579043 4.3629497645e+11 +UniRef50_X3W353 Enterobactin synthase subunit F 0.00320173908992 0.00101765042506 -8.81743395786e+11 +UniRef50_U6BEE8 Cytochrome D ubiquinol oxidase subunit I 0.0237706751042 0.00645331091147 -6.99123243255e+12 +UniRef50_Q15RL2 Electron transport complex subunit D 0.00348986666908 0.000179888348343 -1.33627886608e+12 +UniRef50_R4ZIA7 Cell surface protein 0.000241904160026 7.6705637713e-05 -66692670671.6 +UniRef50_A5ULR0 Cobalamin synthase 0.00334042009846 0.000495172963909 -1.14866118333e+12 +UniRef50_B9DY53 Transcription repair coupling factor 0.000762288352078 0.00127080506178 2.05294435908e+11 +UniRef50_Q48K36 Potassium transporting ATPase B chain 0.000239370461106 0.000201415116304 -15323038461.0 +UniRef50_Q2NG20 Predicted multimeric flavodoxin 0.00439068691512 0.000370690424931 -1.62292191399e+12 +UniRef50_D2ZS60 0.00298471826539 0.000368664155221 -1.05613314687e+12 +UniRef50_A5UM77 0.00189017537927 0.00150589104918 -1.55140299756e+11 +UniRef50_UPI0003B68375 50S ribosomal protein L22 1.13117758353e-05 3.31207577631e-05 8804553630.56 +UniRef50_Q11H35 0.000334548449671 7.5148268371e-05 -1.04723036389e+11 +UniRef50_Q1QC36 Urease subunit alpha 2 5.43904531355e-06 1.67095423867e-05 4550037973.0 +UniRef50_J9NYD9 1.26550674652e-05 2.83646142146e-05 6342136800.55 +UniRef50_L0A4U7 Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED 0.000178903312256 0.0407501413074 1.63791066437e+13 +UniRef50_UPI00035D30E0 hypothetical protein 0.000153109085598 4.88253577022e-05 -42100620656.9 +UniRef50_Q8YNJ3 Phosphate import ATP binding protein PstB 3 2.3217171075e-05 0.000200226041529 71460653145.4 +UniRef50_UPI0003B49864 transporter 3.32651286779e-06 0.000401553268179 1.60769027911e+11 +UniRef50_A9WS29 1.96216499744e-05 9.10210365788e-05 28824808541.2 +UniRef50_UPI000363E420 hypothetical protein 0.000157147688443 0.0002182730407 24677054798.6 +UniRef50_A0RKD1 Possible membrane protein 0.00021049404583 0.000731758892311 2.10441015163e+11 +UniRef50_Q9HX91 0.00121256810956 0.000883428226811 -1.32877809666e+11 +UniRef50_D9UD16 Predicted protein 5.59763855716e-05 0.000801297103416 3.00895119907e+11 +UniRef50_P45428 Putative cryptic C4 dicarboxylate transporter DcuD 0.00239335129304 0.00110588297413 -5.19766759357e+11 +UniRef50_X6M7B3 9.85296333479e-07 1.9042138687e-06 370978285.355 +UniRef50_A1TZP8 Type IV pilus biogenesis stability protein PilW 5.09730254437e-06 9.2477889228e-06 1675602283.17 +UniRef50_T1VWL4 Oligopeptide dipeptide ABC transporter ATPase subunit 0.000564404081815 0.00473751438551 1.68473583942e+12 +UniRef50_Q2YW86 D specific D 2 hydroxyacid dehydrogenase 0.00779483233244 0.000235625030732 -3.05174474961e+12 +UniRef50_T1Z3D7 0.00633034572464 0.00546534763075 -3.49210345224e+11 +UniRef50_H2HHM8 0.000109235507514 0.00526814967935 2.08271695817e+12 +UniRef50_UPI00040D05AB hypothetical protein 8.21528884891e-06 8.8296773994e-06 248036197.228 +UniRef50_UPI0003A7F193 sulfate 2.95718148604e-06 5.01938378018e-06 832536372.212 +UniRef50_UPI000465E42E hypothetical protein 1.11607215592e-05 0.000115486902692 42117759549.6 +UniRef50_K9NK52 Putrescine binding periplasmic protein 0.000761787438696 0.000350939072136 -1.65864527257e+11 +UniRef50_T3GIH5 AAA domain family protein 0.000333344154562 0.000333680751748 135888414.5 +UniRef50_UPI00040C7D51 hypothetical protein 4.19618720203e-05 7.79637473166e-06 -13793030513.2 +UniRef50_UPI0003634400 hypothetical protein 0.000123344510752 1.27924486504e-05 -44631224096.9 +UniRef50_Q1Q8K4 Phosphate import ATP binding protein PstB 1.86412917012e-05 0.000237219767078 88242812769.2 +UniRef50_A6LUQ8 Phosphotransferase system, EIIC 8.3391602835e-05 0.00133180116422 5.03998259641e+11 +UniRef50_Q01244 Yop proteins translocation protein C 0.000546498721004 0.000117969389561 -1.7300254975e+11 +UniRef50_X2HA66 Macrolide specific efflux protein MacA 0.000141028389365 0.0059816485191 2.35793001884e+12 +UniRef50_D7JTM0 Predicted protein 0.000118614241335 0.000305157177599 75309672509.0 +UniRef50_V9G8C1 Transketolase 3.37823824328e-05 3.04965106184e-05 -1326546773.65 +UniRef50_D1BYT2 Succinyl diaminopimelate desuccinylase 0.000153657797359 0.00473699729004 1.8503503971e+12 +UniRef50_UPI0003803CC2 hypothetical protein 3.25841139817e-06 0.000663188510564 2.66421879286e+11 +UniRef50_U7PWZ9 1.31086609446e-05 3.81991450591e-05 10129336331.9 +UniRef50_I6F1W3 7.74994548266e-05 7.58064904667e-05 -683470487.101 +UniRef50_L1J0A5 1.80092600248e-06 1.54888823019e-06 -101750741.525 +UniRef50_K8F0R0 Internalin J 4.96092509334e-06 3.08413378543e-05 10448240220.0 +UniRef50_B9E249 0.000782305421019 0.000685955355659 -38897703734.1 +UniRef50_D2UPM2 SdrD protein 0.000530444391198 0.000405739173213 -50345026805.7 +UniRef50_Q9I2W4 Uroporphyrinogen III C methyltransferase 0.000863346591525 3.61568103094e-05 -3.33946665437e+11 +UniRef50_E4QDT6 0.000176120990128 0.000656002864533 1.9373420151e+11 +UniRef50_P52086 Alpha ribazole phosphatase 0.00191958373824 0.000754223859081 -4.70470083791e+11 +UniRef50_UPI00047E8AFF hypothetical protein 5.93958941323e-06 2.37004531963e-05 7170278659.55 +UniRef50_T0NEN1 Seg 5.89943200075e-05 0.000113229994581 21895607371.9 +UniRef50_Q8Y4A9 Release factor glutamine methyltransferase 9.20958647924e-06 0.00212814190296 8.55438978387e+11 +UniRef50_UPI0004711AD3 type II secretion system protein F 3.43188022232e-06 5.94428875025e-06 1014290153.44 +UniRef50_C6XQ34 Prephenate dehydratase 0.00121129334836 0.0023370329872 4.54474906579e+11 +UniRef50_P27128 Lipopolysaccharide 1,3 galactosyltransferase 0.0013450564653 0.00044835808033 -3.62008141739e+11 +UniRef50_W0YR49 Acetoacetyl CoA synthetase 0.000260600540258 9.15237722678e-05 -68258366042.8 +UniRef50_UPI0004675627 molybdopterin guanine dinucleotide biosynthesis protein A 7.22964941464e-06 2.09672965228e-05 5546056717.47 +UniRef50_UPI00046465E7 hypothetical protein 0.00017279702682 2.20393258775e-05 -60862733875.7 +UniRef50_S6AM82 0.000534272929636 0.000666127906449 53231472181.9 +UniRef50_Q54TC2 Alcohol dehydrogenase class 3 0.000525474010647 0.00609316128661 2.24774367651e+12 +UniRef50_UPI0003B589A1 cell wall hydrolase 2.00265351458e-05 1.22273679964e-05 -3148619484.76 +UniRef50_C1DMM9 Transcriptional regulator, LysR family 0.000548832102549 0.000578583137367 12010857842.3 +UniRef50_D3PTH4 0.000152007780746 0.00047567791441 1.30669604839e+11 +UniRef50_Q98457 1.24108099618e-05 2.24871120341e-05 4067926796.72 +UniRef50_S9R6B1 Transcriptional regulator, LysR family 3.63046046953e-05 5.93796545671e-05 9315680795.95 +UniRef50_UPI00047D5268 hypothetical protein 2.33026941308e-05 1.81431292769e-05 -2082979646.5 +UniRef50_A7ZXV0 8.8271932537e-05 9.68592979732e-05 3466824805.42 +UniRef50_A2C536 Bifunctional pantoate ligase cytidylate kinase 3.73425144824e-06 1.6094218651e-05 4989870433.62 +UniRef50_Q83RZ7 Anaerobic dimethyl sulfoxide reductase chain B 0.00461856062089 0.000738291762994 -1.56651215419e+12 +UniRef50_UPI0004785D8D hypothetical protein 1.56296548754e-05 1.80036624782e-05 958416001.6 +UniRef50_UPI0003827A64 hypothetical protein 3.09298301424e-06 5.978815945e-06 1165046167.3 +UniRef50_Q9L646 Anaerobic ribonucleoside triphosphate reductase 0.00326720389651 0.00231418762758 -3.84744362592e+11 +UniRef50_V7ZGN6 Phosphatidylserine synthase 0.00030606972069 0.000475040276462 68215486867.0 +UniRef50_UPI000315C43C hypothetical protein 0.000121239080211 4.45210210708e-05 -30972021911.4 +UniRef50_S9SA83 2.20698226112e-05 0.00011843926272 38905525557.9 +UniRef50_UPI000467D8F5 hypothetical protein, partial 7.08474948132e-06 1.75652842789e-05 4231120508.42 +UniRef50_UPI00037A985E hypothetical protein 2.51799753303e-05 1.58438342998e-05 -3769114701.35 +UniRef50_UPI00035D529A hypothetical protein 3.96247719595e-05 1.44225781518e-05 -10174434905.9 +UniRef50_S9SA88 0.000154011607261 0.00037577033466 89526719536.6 +UniRef50_UPI0004661BBA hypothetical protein, partial 3.15173760049e-05 1.28135299397e-05 -7550972178.52 +UniRef50_Q38854 1 deoxy D xylulose 5 phosphate synthase, chloroplastic 1.94815225927e-05 8.92550025601e-05 28168410079.7 +UniRef50_Q6GI66 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 0.0253182517682 0.00533237024999 -8.06854562324e+12 +UniRef50_G2IIB3 UPF0301 protein SLG_23610 1.2507684244e-05 1.8413571521e-05 2384279167.11 +UniRef50_P23905 D galactose binding periplasmic protein 0.00346274129006 0.000405546712688 -1.23422696688e+12 +UniRef50_Q022D1 1.74468395316e-05 1.3679974322e-05 -1520729709.75 +UniRef50_Q1J9N5 Para aminobenzoate synthetase component I 4 amino 4 deoxychorismate lyase 0.000134351964319 0.00501592486069 1.9707508819e+12 +UniRef50_E6TY02 Binding protein dependent transport systems inner membrane component 0.0118491495563 0.0025400799286 -3.75818564383e+12 +UniRef50_V9UQ05 3.21896031218e-05 1.12221994542e-05 -8464798159.59 +UniRef50_C8NMF6 0.000247477620977 0.000455318714892 83908000110.5 +UniRef50_A3PKK7 0.000614146619484 0.000514757296004 -40124689533.0 +UniRef50_UPI00016C558B DNA gyrase subunit A 3.408732803e-05 0.000102573196371 27648585465.4 +UniRef50_Q5YWD4 NADH quinone oxidoreductase subunits H I 2.23639858044e-06 3.20873879936e-05 12051210738.9 +UniRef50_UPI00036E3130 hypothetical protein 5.64032516502e-06 1.77651688001e-05 4894948164.05 +UniRef50_UPI0002558195 ABC transporter ATP binding protein, partial 0.000108526225885 1.37063456903e-05 -38279949205.4 +UniRef50_H9JRN0 9.82216877676e-05 0.000320355447479 89678124683.1 +UniRef50_P52276 Asparagine tRNA ligase 0.00229198608535 0.00126289788874 -4.15455533304e+11 +UniRef50_UPI00037E9004 hypothetical protein 4.36198360535e-05 0.000708053883612 2.68240178522e+11 +UniRef50_X6F5A2 ABC transporter permease 4.58466101908e-06 7.71129394756e-06 1262260081.33 +UniRef50_A9M1A6 Ribosomal RNA small subunit methyltransferase J 0.000452179490217 0.0016001640409 4.63455450464e+11 +UniRef50_W5HYZ3 8.29032186386e-05 0.000131935981468 19795128053.9 +UniRef50_J9YT00 0.000204046480461 0.000173375756472 -12382147646.5 +UniRef50_P77790 D alanyl D alanine dipeptidase 0.00655190302961 0.000311406016025 -2.51936522389e+12 +UniRef50_E3GEX1 Glyoxalase 0.000242496352579 0.000381053813154 55937347125.4 +UniRef50_UPI0003723E28 hypothetical protein 1.41675297315e-05 2.03189561906e-05 2483406348.03 +UniRef50_W6RE07 0.000371618233475 0.000117267073799 -1.02684684401e+11 +UniRef50_UPI0001913E60 hypothetical protein, partial 0.000534102705541 0.00058528226382 20661815721.0 +UniRef50_Q1Q8J3 Trigger factor 8.49555863898e-05 0.00805462955226 3.21745517892e+12 +UniRef50_P19066 Nitrogenase molybdenum iron protein alpha chain 0.0144885354579 0.00154395360669 -5.22588654121e+12 +UniRef50_UPI0002F6860E hypothetical protein 1.93890810907e-05 0.00116786842418 4.63655204232e+11 +UniRef50_A6TT61 Biotin synthase 0.000139809625497 0.000846201930427 2.85179241909e+11 +UniRef50_C1CRY7 S1 RNA binding domain protein 0.00425992736669 0.00559193946457 5.37749629541e+11 +UniRef50_X1MW22 Marine sediment metagenome DNA, contig 0.000298357384804 7.68121571965e-05 -89440527050.6 +UniRef50_UPI000470373F amidophosphoribosyltransferase, partial 1.8198806015e-05 0.000106780516308 35761523465.1 +UniRef50_J8WK23 Type III restriction modification system EcoPI enzyme, subunit res 7.84118886106e-05 0.00314278181702 1.23712374415e+12 +UniRef50_E3F2Y8 Arsenate reductase like protein 0.000124805804095 7.33712978296e-05 -20764741351.7 +UniRef50_UPI0003B7001D hypothetical protein 5.73180080942e-05 3.87182781961e-05 -7508939204.22 +UniRef50_B9KXJ4 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 7.66775953251e-06 1.97727214673e-05 4886921677.67 +UniRef50_UPI000379C639 hypothetical protein 1.66630372767e-05 2.95135632112e-05 5187915013.44 +UniRef50_Q6FDX8 Maf like protein ACIAD0829 0.000219044094112 0.0104349213209 4.12427499937e+12 +UniRef50_B1IMR8 Transposase C for 0.000304424184557 0.00192741751511 6.55222323911e+11 +UniRef50_UPI0003716807 hypothetical protein 1.20722191403e-05 4.89677230817e-05 14895167699.9 +UniRef50_A1B4U8 Rhs element Vgr protein 0.00305110867345 0.000571627003944 -1.00099717664e+12 +UniRef50_F0RMF0 Aminomethyltransferase 0.000211064491351 0.046324697242 1.86166394193e+13 +UniRef50_G5JYJ7 Phosphatidate cytidylyltransferase like protein 0.00448395932219 0.000333691192315 -1.67551417355e+12 +UniRef50_Q9I4X6 Chaperone CupC2 0.0002066529136 0.00053050905124 1.30744696927e+11 +UniRef50_UPI0004781EE1 NADH dehydrogenase 3.03663793051e-06 5.73246184821e-05 21916723937.1 +UniRef50_UPI00047C938B cold shock protein 3.37886871772e-05 2.09617821213e-05 -5178378974.89 +UniRef50_UPI0003B3943C xanthine CO dehydrogenase maturation protein 3.67234948385e-06 1.56522615145e-05 4836437496.81 +UniRef50_Q13LM2 ABC putrescine transporter, inner membrane subunit PotI 0.000143167884525 0.00310453657663 1.19554088108e+12 +UniRef50_UPI000289739C amino acid carrier protein, partial 1.64955637756e-05 0.00092876876301 3.68295885382e+11 +UniRef50_Q4FMW6 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.88313139591e-05 9.30230463347e-05 25914990081.2 +UniRef50_I4F4V3 6.73437744018e-05 1.8383107134e-05 -19766022191.0 +UniRef50_A0A059ABD6 4.27008770127e-05 3.55776615116e-05 -2875729509.48 +UniRef50_UPI00047AED65 hypothetical protein 1.44619946454e-05 9.36617646108e-05 31973919025.5 +UniRef50_F3ZC19 Putative 3 oxoacyl ACP synthase II 1.75296749475e-06 0.000247177834149 99081030370.0 +UniRef50_H3F275 0.000198328890814 0.000630033363477 1.74284393224e+11 +UniRef50_D9SKB5 0.000374986081636 0.000500932806491 50846238364.1 +UniRef50_A0A023RVI8 Magnesium transporter 0.000301185629405 0.00918823414902 3.58781054372e+12 +UniRef50_F5M3S4 0.00856842380994 0.000114250158396 -3.4130536475e+12 +UniRef50_B5F621 Mannonate dehydratase 0.00209359949345 0.00050543648718 -6.41160894583e+11 +UniRef50_M9VAU8 0.000246722868534 0.00563197060303 2.17409059484e+12 +UniRef50_UPI000408DFD9 hypothetical protein 3.44769909732e-06 0.000301681764831 1.2040075208e+11 +UniRef50_P0A130 0.00133204368662 0.000706947747623 -2.52358901363e+11 +UniRef50_Q3IZJ1 0.00391797543566 0.000214256376199 -1.49523683405e+12 +UniRef50_B8EFC6 Lipoprotein signal peptidase 1.09586699489e-05 3.61799090311e-05 10182123716.9 +UniRef50_Q8CPS1 Glucose 6 phosphate 1 dehydrogenase 0.00766633030792 0.00100442060216 -2.68949469904e+12 +UniRef50_UPI0004659DA3 glutamyl tRNA synthetase 7.02323465901e-06 4.23636132906e-06 -1125094962.08 +UniRef50_A6QDY9 0.0114495888984 0.00192582947912 -3.84485854723e+12 +UniRef50_Q5HLX2 Molybdenum ABC transporter, ATP binding protein ModC 0.0304860752542 0.00623789802915 -9.78928670433e+12 +UniRef50_F4T4M6 0.000405623910255 1.18624748408e-05 -1.58966323473e+11 +UniRef50_M4YZ38 Mutator protein 0.00254381906842 0.00197047055441 -2.31467830883e+11 +UniRef50_UPI000473A889 hypothetical protein, partial 2.19733420959e-05 0.000227223392726 82861964140.7 +UniRef50_M9VKV2 Efflux ABC transporter permease 0.000264238813255 0.0066006347032 2.55808077709e+12 +UniRef50_UPI000288B881 ABC transporter ATP binding protein 2.73946790058e-05 4.0037731358e-05 5104155382.28 +UniRef50_M7A534 Tex like N terminal domain protein 6.50154837314e-06 0.000321953948561 1.27352004992e+11 +UniRef50_UPI0002376558 ribose galactose ABC transporterpermease, partial 0.000481395714206 0.00047353849886 -3172054254.06 +UniRef50_Q02N09 0.000227401198102 0.0003565191612 52126506158.2 +UniRef50_Q0K9Q9 Cation multidrug efflux pump 0.000480478171689 0.000427814023884 -21261162730.6 +UniRef50_F0SEF6 Transcriptional regulator, BadM Rrf2 family 3.07672933767e-05 4.82817918505e-05 7070817960.94 +UniRef50_UPI0004788904 glucose 6 phosphate dehydrogenase 4.00982226365e-06 6.27362188813e-06 913923688.348 +UniRef50_UPI0004434C05 PREDICTED 2.89876910028e-06 7.70846661495e-06 1941733908.3 +UniRef50_UPI0002DB754C hypothetical protein 1.48669932552e-05 2.31199342946e-05 3331813572.58 +UniRef50_M4MUD1 3.93715181761e-05 0.000366739167718 1.32162337373e+11 +UniRef50_Q4L9F7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0113744248511 0.00363708004323 -3.12366104684e+12 +UniRef50_G8V7N9 0.00022356095159 0.00613739302249 2.3874865779e+12 +UniRef50_Q023V7 Chorismate synthase 1.31826381159e-05 0.000125872165644 45494145119.1 +UniRef50_A7BEJ6 LPXTG motif cell wall anchor domain protein 0.000244788292356 0.00229374617795 8.27189441953e+11 +UniRef50_UPI0003B44F1F transcriptional regulator 0.000292909441915 6.97460678316e-05 -90093792639.9 +UniRef50_Q9HTE2 0.000748118971379 0.000353672700827 -1.59242799822e+11 +UniRef50_Q989G8 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 0.0152931653212 0.00111396529743 -5.72431704796e+12 +UniRef50_UPI0004715D8D alkane 1 monooxygenase 4.88503086336e-06 1.57246154303e-05 4376073306.32 +UniRef50_UPI000289EDA6 GAF sensor hybrid histidine kinase 5.36278806284e-06 0.000247100604107 97592522793.6 +UniRef50_Q6FCV5 Lipoprotein 0.000781278586898 0.0115673418346 4.35446609298e+12 +UniRef50_UPI0003F7499C 3 oxoacyl ACP reductase 8.65916829654e-06 4.06237063481e-05 12904476260.4 +UniRef50_UPI0003B3ACCD ABC transporter permease 0.000148837292117 9.29802496461e-05 -22550173488.5 +UniRef50_P69799 PTS system mannose specific EIIAB component 0.00453439695357 0.000273864023365 -1.72002942654e+12 +UniRef50_I7DNJ2 Pyruvate carboxylase 0.00631582210675 0.00211157548887 -1.69730595155e+12 +UniRef50_Q8FHG0 HTH type transcriptional regulator YdeO 0.00259678317979 0.00023815863322 -9.52205673028e+11 +UniRef50_Q8FBT8 Phosphate specific transport system accessory protein PhoU 0.00336421687162 0.0017583751909 -6.482979924e+11 +UniRef50_Q8E4M4 0.0074888439944 0.00157853883591 -2.38606272008e+12 +UniRef50_UPI0003B6CE98 gas vesicle protein 0.000327849446176 0.000198514041641 -52214289934.7 +UniRef50_Q9RVY3 0.000817831775596 0.0437856768564 1.73466463339e+13 +UniRef50_P27238 0.000667859826427 0.000700355822605 13119032427.8 +UniRef50_F0XVM8 Expressed protein 0.000183035479424 1.61661083112e-05 -67367212835.8 +UniRef50_UPI00046666B3 maltooligosyl trehalose synthase 3.00394124171e-06 1.99795068666e-06 -406130731.966 +UniRef50_P11959 Dihydrolipoyl dehydrogenase 0.0120707170418 0.00357307212383 -3.43060353121e+12 +UniRef50_Q9ZH99 Isocitrate dehydrogenase [NADP] 0.0177947085274 0.0505071278369 1.32064051018e+13 +UniRef50_D4HEQ0 Phosphofructokinase 0.000321442448304 0.00524117010157 1.98615442547e+12 +UniRef50_N6YIN7 2.92471219367e-05 1.40525406206e-05 -6134238935.79 +UniRef50_D6M4Q7 7.6348343069e-05 0.000576013143876 2.01720811662e+11 +UniRef50_E1V3L9 0.000248578436584 0.000174239613579 -30011495087.1 +UniRef50_C6STB9 0.00623048199751 0.00393991603926 -9.24729585751e+11 +UniRef50_UPI000474260B DNA gyrase subunit B 2.10075203363e-05 2.83705726897e-05 2972554589.88 +UniRef50_UPI00036EEE9D hypothetical protein 1.2125159659e-05 1.48645824741e-05 1105938606.95 +UniRef50_G7LZP2 SMC domain protein 0.000100976296509 0.000837118377555 2.97189591597e+11 +UniRef50_M1WSJ3 Protein CreA 1.25914867791e-05 1.44075415584e-05 733163599.902 +UniRef50_A6LR21 Binding protein dependent transport systems inner membrane component 0.000149203948168 0.00149618833866 5.43794127798e+11 +UniRef50_Q9WYT7 Probable transcriptional regulatory protein TM_0466 0.0126217631373 0.00119873009354 -4.61161861616e+12 +UniRef50_J9P642 1.22827108352e-05 1.58829650154e-05 1453466792.63 +UniRef50_O65396 Aminomethyltransferase, mitochondrial 1.61649018132e-05 6.08946753519e-06 -4067576457.51 +UniRef50_I6U214 Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system 0.00528532609915 0.00209060148228 -1.28974953151e+12 +UniRef50_U6A7W2 Extracellular Matrix protein PelB 6.35676657784e-06 7.88961355707e-06 618829135.663 +UniRef50_UPI0003652A76 hypothetical protein, partial 3.47208997701e-05 2.43194607304e-05 -4199188580.34 +UniRef50_UPI0001FFEBC1 alpha dehydro beta deoxy D glucarate aldolase 5.66794851686e-05 0.000387442773627 1.33533198472e+11 +UniRef50_UPI00047E6581 hypothetical protein 2.78169934413e-06 4.07028030531e-06 520215946.695 +UniRef50_A7MK41 Ribosomal RNA large subunit methyltransferase H 0.00284209371122 0.00156950570598 -5.13759394126e+11 +UniRef50_UPI00003793A9 hypothetical protein 0.0158119949092 0.00289894976593 -5.21315478523e+12 +UniRef50_D9ST52 0.000567908745949 0.000921853242513 1.4289173665e+11 +UniRef50_R0XB61 0.00868509441421 0.00136832650265 -2.95386899274e+12 +UniRef50_Q4KEY4 Chitinase 0.000242373475001 0.000790942824762 2.21464178201e+11 +UniRef50_UPI00035CFB31 hypothetical protein 3.22622799594e-06 1.14221783469e-05 3308805732.3 +UniRef50_A1BBC0 Dihydrodipicolinate synthetase 0.0015038378906 0.000618743774582 -3.57323355963e+11 +UniRef50_UPI0003606737 hypothetical protein, partial 7.84895808442e-06 7.27858325265e-05 26215813077.3 +UniRef50_P77555 Ureidoglycolate dehydrogenase ) 0.00202580429175 0.00139285310958 -2.55530159426e+11 +UniRef50_B0KQI9 Mammalian cell entry related domain protein 0.00162148323626 6.08574197497e-05 -6.30043793157e+11 +UniRef50_Q5N7D3 0.00010612648894 2.33360722439e-05 -33423507172.9 +UniRef50_Q6A5B4 0.000269632849186 0.00188150082771 6.50730882773e+11 +UniRef50_UPI0004729581 aminotransferase 6.15799168942e-06 7.13631583799e-05 26324125950.3 +UniRef50_Q1WSM8 1,4 alpha glucan branching enzyme GlgB 0.000405253999462 0.00222668756542 7.35335082081e+11 +UniRef50_UPI0002196E5D biotin biosynthesis protein BioY 1.32949176993e-05 4.57623178041e-05 13107487842.1 +UniRef50_O27236 Methyl coenzyme M reductase I subunit beta 0.00486698395396 0.00243579822391 -9.81499513225e+11 +UniRef50_A5VZ70 Permease YjgP YjgQ family protein 0.00123493442736 0.000960869232393 -1.10643482366e+11 +UniRef50_K2AI23 0.000106211860257 3.45863517985e-05 -28916096708.5 +UniRef50_UPI0004758DC8 hypothetical protein 1.25772857788e-05 7.41964046299e-06 -2082204705.42 +UniRef50_C8XBK0 Transcriptional regulator, Fis family 3.86754475757e-05 0.000288314795161 1.00782468039e+11 +UniRef50_X1DSN1 Marine sediment metagenome DNA, contig 2.65336766156e-05 8.48440293581e-05 23540604950.6 +UniRef50_A6LQD7 2 alkenal reductase 9.35142829476e-05 0.00165442969298 6.30160705615e+11 +UniRef50_P75828 0.00439320652914 0.00158271498759 -1.13462992393e+12 +UniRef50_Q96397 LRG5 1.59805106584e-05 1.12312682522e-05 -1917327439.14 +UniRef50_Q979N7 Peroxiredoxin 8.97950839155e-06 0.000574016101235 2.28112206309e+11 +UniRef50_UPI0002F0BE06 hypothetical protein 2.05065009442e-05 9.39769623437e-05 29660926850.9 +UniRef50_UPI00045492E4 PREDICTED 3.81407449199e-06 2.91352151312e-05 10222455201.4 +UniRef50_UPI00042548B2 hypothetical protein 4.2928636857e-05 6.06703456241e-05 7162545544.53 +UniRef50_B8CXX9 Predicted nucleotide kinase 0.000234463347108 0.000355803259269 48986411547.6 +UniRef50_F0C0C2 TRAP type C4 dicarboxylate transport system, large permease component 0.00048581506978 0.000191399145994 -1.18859321322e+11 +UniRef50_A5UMP3 Probable cobalamin biosynthesis protein CobD 0.00210044954735 0.000209692335056 -7.63321888802e+11 +UniRef50_A0A015CJF0 DnaJ domain protein 3.43760850162e-05 0.000109628869531 30380472564.1 +UniRef50_A6LQC6 Polysaccharide deacetylase 0.000146123608583 0.00384767221542 1.49436059569e+12 +UniRef50_U2W2Q1 TIGR01906 family protein 3.53827307983e-05 2.582116448e-05 -3860121656.31 +UniRef50_U5MRU9 0.000210886027289 0.00110803352691 3.62189454835e+11 +UniRef50_UPI0003B6A7C9 flagellar biosynthesis protein FlhA, partial 1.57274318512e-06 1.46080846596e-05 5262527314.88 +UniRef50_B4WWC7 9.46072664305e-06 0.00112480450166 4.50277968783e+11 +UniRef50_I8QJJ6 0.000158348065441 0.000172637998293 5769021249.55 +UniRef50_UPI0001D61AB0 1.85766623704e-05 6.3396049898e-06 -4940250230.13 +UniRef50_B9KKZ2 0.000971793574354 0.000760472202226 -85313031132.9 +UniRef50_P39165 0.00337734796223 0.00163202158092 -7.04609677698e+11 +UniRef50_Q6GJA0 Glucosamine 6 phosphate deaminase 0.0202986336909 0.0070823497383 -5.33557601371e+12 +UniRef50_C1EN33 CCA adding enzyme 9.76621801715e-06 0.00032583937137 1.27602610662e+11 +UniRef50_P37621 UPF0226 protein YhhS 0.00262132005974 0.000467241607633 -8.69627904632e+11 +UniRef50_D2JDV7 Replication initiator protein 0.00157057708253 0.000130508168705 -5.81373492146e+11 +UniRef50_M8L412 Bacterial regulatory helix turn helix , lysR family protein 0.000194580406623 0.000860145743281 2.68696893814e+11 +UniRef50_UPI00037BFAD6 hypothetical protein 1.22954391191e-05 9.90281165785e-06 -965933066.947 +UniRef50_Q088F4 Drug resistance transporter, EmrB QacA subfamily 0.00124781442938 0.00074042245952 -2.04840364632e+11 +UniRef50_UPI0003B6C95A isoleucyl tRNA synthase 1.42603758153e-06 2.86211815939e-06 579763351.972 +UniRef50_P0AC99 Succinate acetate proton symporter SatP 0.00149840670868 0.00510153832381 1.45462844843e+12 +UniRef50_UPI00036D3FBE hypothetical protein 2.6321064597e-06 0.000260428755943 1.04075670917e+11 +UniRef50_P0ACP6 HTH type transcriptional regulator GntR 0.00201005529766 0.000239122838212 -7.14947165665e+11 +UniRef50_Q2NGT2 UvrABC system protein C 0.0024010658379 0.00118837878991 -4.89576642617e+11 +UniRef50_UPI00029AE452 hypothetical protein 2.88057995679e-06 1.89391482973e-05 6483041099.85 +UniRef50_Q9JUD9 Sulfite reductase [NADPH] hemoprotein beta component 0.00451982864619 0.003800083113 -2.9057010402e+11 +UniRef50_B9E1W5 Arginine tRNA ligase 0.000598467216048 0.000827577271651 92494540943.5 +UniRef50_UPI000426EB18 hypothetical protein 0.000133733353107 1.0266025052e-05 -49845275450.3 +UniRef50_Q9X1B8 Isoprenyl transferase 9.95319935242e-06 1.50295297829e-05 2049376888.36 +UniRef50_G7M3S8 Dihydropyrimidinase 0.000134018694272 0.00060098254429 1.88519036543e+11 +UniRef50_H0YAA0 0.000318149953669 2.16834004861e-05 -1.19687185574e+11 +UniRef50_X5ENC8 Fructose bisphosphate aldolase 0.000129128616484 0.00521952377765 2.05505499274e+12 +UniRef50_A0A023LEN6 0.000333179824425 0.00114115354466 3.26188905811e+11 +UniRef50_UPI000368781F ferredoxin 2.31249364166e-05 8.78298635762e-05 26122173113.1 +UniRef50_A6LQ12 Male sterility C terminal domain 0.000334566672732 0.00213499511305 7.26855055099e+11 +UniRef50_UPI00046FDE0E hypothetical protein 2.6406486128e-06 7.12157110488e-06 1809003397.16 +UniRef50_P14294 DNA topoisomerase 3 0.00256902142559 0.00130756232685 -5.09266518005e+11 +UniRef50_UPI000379CA00 hypothetical protein 0.000121181810849 9.77046815494e-05 -9478005195.02 +UniRef50_A6QIC9 Aspartyl glutamyl tRNA amidotransferase subunit C 0.00643061121219 0.000656259344878 -2.3311767081e+12 +UniRef50_L7WTC7 0.0141131368465 0.00207341700487 -4.86058264403e+12 +UniRef50_UPI00037FDD54 hypothetical protein 0.000196252436814 0.000120833246362 -30447652683.0 +UniRef50_P37648 Protein YhjJ 0.00370946003206 0.00065039344471 -1.23498272028e+12 +UniRef50_D4MIN1 Phage portal protein, HK97 family 1.13082847392e-05 2.33988867451e-05 4881124398.15 +UniRef50_A7MLE5 Glucans biosynthesis protein D 0.00312058113402 0.000555438491655 -1.03557956256e+12 +UniRef50_N6VC63 1.83304830633e-05 8.94310258223e-05 28704161613.6 +UniRef50_UPI0002D4E509 diacylglyceryl transferase 3.7695062803e-06 1.22668116473e-05 3430466450.32 +UniRef50_Q1QSC0 Ribosomal RNA small subunit methyltransferase G 4.23181801808e-05 4.27671122008e-05 181239365.489 +UniRef50_P75791 0.0031443388624 0.00101190376258 -8.60890217719e+11 +UniRef50_UPI0004785E92 hypothetical protein 4.84213461261e-06 7.51860702676e-06 1080524757.6 +UniRef50_Q3J6L2 0.0133665133121 0.00340248274179 -4.02260141364e+12 +UniRef50_Q5HQ32 Bacteriocin production protein, putative 0.00664213673359 0.00253352190475 -1.65869822478e+12 +UniRef50_B7RN53 0.000215345364451 3.05768799197e-05 -74593304569.4 +UniRef50_B2S1L1 Holliday junction ATP dependent DNA helicase RuvB 1.18510462944e-05 9.82946776368e-06 -816136060.41 +UniRef50_O32090 Nicotinate phosphoribosyltransferase 0.0178360404444 0.0075607708909 -4.14825241048e+12 +UniRef50_M5VMV2 1.00634205237e-05 1.90530917592e-05 3629240593.44 +UniRef50_A5W827 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.000177779900556 1.05942893619e-05 -67494882837.2 +UniRef50_F0XWS4 Expressed protein 0.000104095888582 7.5512280715e-05 -11539553256.2 +UniRef50_UPI0002ECD2DE hypothetical protein 4.61217208092e-06 0.000101438606145 39090019625.6 +UniRef50_Q5FP95 Siroheme synthase 1.07557063363e-05 1.14006352649e-05 260365722.644 +UniRef50_Q0SPB0 Triosephosphate isomerase 7.01049886686e-06 1.05086785847e-05 1412258079.58 +UniRef50_UPI0004651951 chemotaxis protein CheY 0.000149129767041 0.000144602834871 -1827578068.73 +UniRef50_P74892 Sucrose operon repressor 0.0240869588049 0.00440291493836 -7.94669005929e+12 +UniRef50_G8V9H7 Amino acid permease 0.000100752488128 0.0059431305216 2.35863970615e+12 +UniRef50_Q7VN08 Cytochrome c type biogenesis protein CcmE 0.00179808786101 0.000441870381833 -5.47521639005e+11 +UniRef50_UPI00035F3E28 hypothetical protein 1.33631278623e-05 0.000106559701747 37624600527.8 +UniRef50_C6SQA7 0.00395246756188 0.000243059016624 -1.49753374928e+12 +UniRef50_Q12V31 NH dependent NAD(+) synthetase 2.9797804152e-05 7.65573468689e-06 -8939025156.81 +UniRef50_UPI0004752D4B hypothetical protein 2.58875730278e-05 5.69140067745e-05 12525752040.7 +UniRef50_Q6GI89 Tryptophan tRNA ligase 0.0109333146344 0.00113014502294 -3.95765987057e+12 +UniRef50_UPI000368C1C4 hypothetical protein 1.55716083415e-05 9.1018956368e-06 -2611902411.19 +UniRef50_H5YKA6 ABC type metal ion transport system, periplasmic component surface antigen 4.08522627183e-05 1.81465921016e-05 -9166557857.87 +UniRef50_F7CCI5 3.116824508e-05 6.5003732542e-06 -9958722564.9 +UniRef50_O02604 Bifunctional dihydrofolate reductase thymidylate synthase 7.93608516497e-06 3.96615543874e-06 -1602709347.0 +UniRef50_F0QJF6 0.000471857486069 0.00277689329651 9.30571242645e+11 +UniRef50_UPI0003725CB2 hypothetical protein 1.04217873342e-05 1.55481626594e-05 2069580626.48 +UniRef50_B9E8W4 0.0256654013309 0.00422908758093 -8.65410291403e+12 +UniRef50_UPI000374716A hypothetical protein 2.50054354727e-05 4.18729287735e-05 6809614032.95 +UniRef50_UPI000364771D hypothetical protein 6.98819719093e-06 1.06245334663e-05 1468033577.23 +UniRef50_K2JZV8 0.000190693909314 0.000116707012549 -29869418145.4 +UniRef50_UPI0003F9070E hypothetical protein 3.62920662566e-05 2.48770715314e-05 -4608373448.3 +UniRef50_C0Q1R0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 0.00233425917312 0.000340914024259 -8.0473789769e+11 +UniRef50_F0RPF4 Protoporphyrinogen oxidase 0.000608234299602 0.0317714930706 1.2580989982e+13 +UniRef50_Q8K9C8 GTP binding protein TypA BipA homolog 0.000210644617408 0.00900850071806 3.55180246967e+12 +UniRef50_F0GD65 Putative binding protein dependent transport system protein 7.15512481104e-05 0.000269931663895 80088608253.9 +UniRef50_R6FYV1 0.00122986344501 0.00407297720698 1.14779991464e+12 +UniRef50_S5YQ77 YGGT family protein 0.0137530770647 0.000673726323636 -5.28029439586e+12 +UniRef50_UPI000403B702 helicase UvrD 5.20635737455e-06 2.57846564603e-05 8307711865.06 +UniRef50_UPI00036F2F3A hypothetical protein, partial 3.63651196026e-05 5.60019036418e-05 7927610687.06 +UniRef50_UPI0001BF7409 hypothetical protein SMAC_09879, partial 3.3998007537e-05 4.12073585897e-05 2910503488.66 +UniRef50_F4VSV6 Putative ribosomal protein 0.000781005494173 0.00122200015942 1.78034957973e+11 +UniRef50_G7ZRG1 AraC family transcriptional regulator, putative 0.011698448521 0.00189312447431 -3.95852964251e+12 +UniRef50_UPI0003B76C42 hypothetical protein, partial 1.94481730646e-05 2.87641334546e-05 3760967529.13 +UniRef50_UPI000299D763 L serine dehydratase, beta subunit 1.08169863321e-05 0.000258667918695 1.00060462868e+11 +UniRef50_Q031Z8 UPF0397 protein LACR_0367 0.0212358444449 0.00994222922908 -4.55937105086e+12 +UniRef50_P57178 Flagellum specific ATP synthase 0.000382467245661 0.000343079672703 -15901246543.0 +UniRef50_U3SZ43 Acyl CoA thioesterase 0.0002881572434 0.0073306351108 2.84313473599e+12 +UniRef50_UPI0004666EB7 sulfate ABC transporter ATP binding protein 0.000122388281795 0.000170641703146 19480498335.5 +UniRef50_D4HA77 0.000234463347108 0.0147060945156 5.84237508961e+12 +UniRef50_E6IF75 0.00207177487215 0.00108042697022 -4.00219313216e+11 +UniRef50_Q74D60 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 5.96663777539e-06 1.51969689682e-05 3726397971.44 +UniRef50_UPI0000557724 COG1620 1.75235532535e-05 2.6521977848e-05 3632774431.89 +UniRef50_O25515 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.000144630647073 0.00100819142047 3.48630081303e+11 +UniRef50_UPI0001DCFDB5 200 kDa antigen p200, putative 0.000675759143863 0.00105541305319 1.53270942073e+11 +UniRef50_P69832 Galactitol permease IIC component 0.0022981789217 0.000655256825911 -6.63267810992e+11 +UniRef50_J5ICW8 Putative lysophospholipase 2.71684416606e-05 2.11684601435e-05 -2422266166.51 +UniRef50_I6TY61 ABC transporter ATP binding protein 0.00450230988964 0.000620774206503 -1.56702358708e+12 +UniRef50_UPI000475C521 deaminase reductase, partial 4.53696528916e-05 0.000442474356264 1.60316041774e+11 +UniRef50_A5UM23 Pre mRNA splicing ribonucleoprotein PRP31 0.00220931194104 0.000237838957205 -7.9590783627e+11 +UniRef50_J2X7R8 0.000646116202093 0.000186223068576 -1.85664501524e+11 +UniRef50_UPI000440E4B2 PREDICTED 5.81413082748e-06 0.000148482965794 57597159419.7 +UniRef50_G7M114 Stage III sporulation protein AF 0.000189374241902 0.00148201825466 5.21856250477e+11 +UniRef50_UPI00034B4D85 phosphoenolpyruvate synthase 1.99062207731e-06 0.000561983870749 2.26076146379e+11 +UniRef50_X7UI62 PPE family protein 1.99959931282e-05 5.40012751533e-05 13728349645.3 +UniRef50_F8KL74 0.00977436275283 0.00270292832158 -2.85482485615e+12 +UniRef50_Q8TZ14 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.49597359468e-05 3.38465102549e-05 3587699841.16 +UniRef50_Q4KFA5 Glycerophosphodiester phosphodiesterase family protein 0.00109767267228 0.000614283862328 -1.95149994425e+11 +UniRef50_UPI00047B798B glycine cleavage system potein H 2.11491785069e-05 3.30937755676e-05 4822180410.09 +UniRef50_E1SRN0 Type IV pilus biogenesis stability protein PilW 6.48411070611e-06 1.56604531864e-05 3704602065.68 +UniRef50_J9NUS4 0.000213380003615 3.73359149747e-05 -71071158887.9 +UniRef50_J9NUS2 3.45555450412e-05 9.67128867077e-05 25093681587.1 +UniRef50_UPI00034A41B8 hypothetical protein 2.25359465795e-05 0.00631021569517 2.53841347301e+12 +UniRef50_UPI0003C7E91A GntR family transcriptional regulator, partial 2.3991121863e-05 3.75377061492e-05 5468922311.62 +UniRef50_Q49174 Methyl coenzyme M reductase II subunit alpha 0.00294859230613 0.00194905370055 -4.03526000791e+11 +UniRef50_Q1JM47 Transporter 0.0057880553415 0.00151525078939 -1.72498363089e+12 +UniRef50_N3KST8 Trehalose 6 phosphate phosphatase 0.0086909620675 0.00410886328969 -1.84984950528e+12 +UniRef50_UPI000287F633 D amino acid dehydrogenase 2.09000273695e-05 1.10942734315e-05 -3958703194.9 +UniRef50_A0A023LC15 0.000688396038288 0.000964807604116 1.11590741076e+11 +UniRef50_A5N1N7 Acyl protein synthetase related protein 0.00021189380417 0.00146048479544 5.0407150511e+11 +UniRef50_W0YM34 Protein YqjC 0.000686338161548 0.000456675317307 -92717708500.1 +UniRef50_Q3J8Q5 50S ribosomal protein L10 0.0140700515183 0.00043007287164 -5.50662676103e+12 +UniRef50_UPI00037516DE O acetylhomoserine lyase, partial 1.76495236422e-05 1.44173451457e-05 -1304870122.33 +UniRef50_Q8CRJ8 0.0182927710192 0.0105527874228 -3.12472635815e+12 +UniRef50_A6LQ15 BAAT Acyl CoA thioester hydrolase like protein 0.000146881707723 0.0013322924822 4.78564876284e+11 +UniRef50_UPI00022CA5D6 4.34105410157e-06 5.81796254078e-06 596246060.614 +UniRef50_UPI00036E56FD hypothetical protein 4.58424089983e-06 4.89660714756e-06 126106087.374 +UniRef50_UPI0002D738C7 hypothetical protein 2.1801144637e-05 2.49374435035e-05 1266162339.12 +UniRef50_B9TD78 Circumsporozoite protein, putative 7.70119206871e-05 0.000102412649186 10254585797.0 +UniRef50_Q9I1W8 Catalase HPII 0.00876617686367 0.00211350414225 -2.68576561511e+12 +UniRef50_K7U318 6.75967944459e-05 0.000325174686853 1.03987356001e+11 +UniRef50_Q9JWJ3 Cysteine tRNA ligase 5.72623314325e-06 0.000353169547732 1.40267129709e+11 +UniRef50_UPI00047AB713 ferredoxin 4.29483646938e-05 7.0244730666e-05 11019877907.1 +UniRef50_E0S112 Iron ABC transporter permease protein 0.000634842803854 0.00199531177304 5.49238017694e+11 +UniRef50_UPI000477640E PTS mannose transporter subunit IIA 1.01073529622e-05 3.85738088801e-05 11492257576.8 +UniRef50_A5UKG0 0.000608848369114 0.000649047703726 16228964684.2 +UniRef50_A5IRE1 SNARE associated Golgi protein 0.0114950751302 0.00656497924798 -1.99034020673e+12 +UniRef50_A8LR27 8.1983488224e-05 0.000560727921252 1.93275002468e+11 +UniRef50_UPI000381B84D hypothetical protein 5.08342949261e-05 4.09768897416e-05 -3979555436.95 +UniRef50_D8GPH6 Conserved protein with a HD domain 0.000157504585052 0.000806703602053 2.62089609731e+11 +UniRef50_Q5PJX5 Ribose import ATP binding protein RbsA 0.00305614885899 0.00117288146481 -7.6029815732e+11 +UniRef50_Q44532 Ferredoxin NADP reductase 0.0136533612924 0.00375399056117 -3.99649744314e+12 +UniRef50_C7IYC6 Os02g0235900 protein 0.000245218609646 0.00047279892046 91876964200.1 +UniRef50_B9DTQ1 Replication initiation and membrane attachment protein 0.00638270324875 0.00258071224544 -1.53491042371e+12 +UniRef50_UPI0004754009 flagellar biosynthesis protein FliQ 0.000567263248362 0.000107060932472 -1.85789322242e+11 +UniRef50_Q42601 Carbamoyl phosphate synthase large chain, chloroplastic 0.000123454295123 0.00431263341502 1.69122301771e+12 +UniRef50_UPI000476D67D peptide ABC transporter permease 3.11754917464e-05 9.38404971617e-06 -8797472558.66 +UniRef50_O33525 Malate dehydrogenase 8.66209450564e-05 2.53539615393e-05 -24734233076.3 +UniRef50_Q0FSC8 Replication initiator RepC 4.76618007924e-06 1.50810307365e-05 4164231787.8 +UniRef50_G8VEZ7 Long chain fatty acid CoA ligase synthetase 0.000182054112119 0.00467357938346 1.81328386925e+12 +UniRef50_A4QEG9 Riboflavin biosynthesis protein RibBA 0.00042503120067 0.0176430629816 6.95113071896e+12 +UniRef50_UPI00047D89FD hypothetical protein 6.02961556353e-06 1.83051267617e-05 4955774508.18 +UniRef50_Q0A4L8 Ribosomal RNA small subunit methyltransferase G 3.8442205593e-05 3.16942279971e-05 -2724241362.46 +UniRef50_UPI0003782025 hypothetical protein 0.000472151979452 0.000162683215526 -1.24936337606e+11 +UniRef50_H0A863 1.3739936094e-05 4.70609164091e-05 13452088647.6 +UniRef50_T1BAH6 Glutaredoxin family protein 6.59318775172e-05 0.000176460548997 44621781015.8 +UniRef50_M4ZG23 Transcriptional regulator, MarR family 0.000301988791085 0.00216550340304 7.5232371674e+11 +UniRef50_Q7N8S4 Amino acid acetyltransferase 0.00338193026959 0.000926804756968 -9.91164297223e+11 +UniRef50_I5BUN0 NAD dependent dehydrogenase 0.00276611621106 0.000706889539336 -8.31335076926e+11 +UniRef50_UPI00047AB05A ABC transporter substrate binding protein, partial 1.66464539699e-05 7.94879623323e-05 25369888077.9 +UniRef50_Q4ZVS4 Glycosyl hydrolase, BNR repeat protein 0.00046437059817 0.000283051155147 -73200884188.2 +UniRef50_Q8CQX8 0.00594310377868 0.00451227493297 -5.77643163258e+11 +UniRef50_P44428 2Fe 2S ferredoxin 0.00310217006879 0.0032880902994 75058278595.0 +UniRef50_P0ACK8 L fucose operon activator 0.00307520693864 0.00183493591065 -5.00712633837e+11 +UniRef50_UPI000310B4FE hypothetical protein 4.33549600919e-06 5.86138257498e-05 21912827786.3 +UniRef50_UPI00040DEDFB glycine cleavage system protein H 8.06376412934e-05 3.06482543468e-05 -20181328949.1 +UniRef50_K0CDY8 0.000197001942772 0.00118921699665 4.00569393098e+11 +UniRef50_D5HAF9 CobW P47K family protein 5.1219642627e-06 1.00019236592e-05 1970099492.2 +UniRef50_X1PT48 Marine sediment metagenome DNA, contig 4.64186968129e-06 2.32413128802e-05 7508823460.23 +UniRef50_Q5F569 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.00108674433531 0.00261092456822 6.15330263821e+11 +UniRef50_G8V1X3 Citrate transporter family protein 0.015747758559 0.00661122042263 -3.68853256358e+12 +UniRef50_R6M017 0.000141478480163 9.25089029219e-05 -19769619256.5 +UniRef50_G5JW97 Competence specific sigma factor ComX 0.0112295571732 0.00325395258503 -3.21984944392e+12 +UniRef50_T9NAD2 0.00375133364687 0.000630040348308 -1.2601044072e+12 +UniRef50_M9RZ40 Transport protein 0.00106849269852 0.00046506567747 -2.4361089328e+11 +UniRef50_F0KLI1 Phosphoribosyl dephospho CoA transferase 0.00069475948869 0.0143329141269 5.50589038642e+12 +UniRef50_B9KSK9 Mammalian cell entry related domain protein 0.000357886933336 0.000375005339931 6910910808.87 +UniRef50_Q46WX7 AMP dependent synthetase and ligase 0.000170749215151 0.0153451446618 6.12608965256e+12 +UniRef50_Q892J3 Chorismate synthase 1.30750893188e-05 8.52223895935e-05 29126750467.8 +UniRef50_F0A5S1 2.29463251347e-06 0.00196980995407 7.94310079442e+11 +UniRef50_G4LSM0 0.00133295779697 0.000828259604455 -2.03752853662e+11 +UniRef50_Q06173 Periplasmic [NiFe] hydrogenase small subunit 1 6.85440469864e-05 1.74750579851e-05 -20617177546.8 +UniRef50_Q1II76 Bifunctional protein FolD 2.23029168195e-05 3.16991803165e-06 -7724226398.93 +UniRef50_Q8ZM40 tRNA ) methyltransferase 0.00199051628087 0.00208864760108 39616818175.5 +UniRef50_Q8CNS2 Protoporphyrinogen oxidase 0.0231678697017 0.00374872006018 -7.83974901004e+12 +UniRef50_X0UVH5 Marine sediment metagenome DNA, contig 4.01001471582e-05 0.000803456767446 3.08176435049e+11 +UniRef50_I3V422 LysR family transcriptional regulator 0.000154075913818 0.000641323746361 1.96707929201e+11 +UniRef50_R9SK04 Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2 0.00131020889286 0.000268063575066 -4.20726853353e+11 +UniRef50_UPI0003A45EE2 alkyl hydroperoxide reductase 1.28324102355e-05 0.000960719036631 3.82673462953e+11 +UniRef50_UPI0003B56E34 dihydrolipoyllysine succinyltransferase 1.2347089168e-05 1.34345761335e-05 439031832.938 +UniRef50_E8SI43 ABC transporter ATP binding protein 0.0639937988302 0.0130824058303 -2.05535541071e+13 +UniRef50_P69814 Galactitol specific phosphotransferase enzyme IIA component 0.00390452283234 0.000787511213846 -1.25837584042e+12 +UniRef50_P19576 Maltose binding periplasmic protein 0.00234061946529 0.00160938696811 -2.95207532343e+11 +UniRef50_UPI0002002889 hypothetical protein 1.80381855945e-05 5.29800647831e-05 14106465413.5 +UniRef50_A6LUN8 Mg2+ transporter protein, CorA family protein 0.000392424296107 0.000923911364415 2.14567851556e+11 +UniRef50_A5IRS3 DoxX family protein 0.00397828644654 0.00236171905481 -6.52628093554e+11 +UniRef50_W5V4L7 Membrane protein 0.000799323643602 0.000626562891387 -69745635682.0 +UniRef50_U3SVR2 0.0059717229701 0.00233717582009 -1.46731128537e+12 +UniRef50_UPI0002378562 queuine tRNA ribosyltransferase, partial 5.8684450064e-06 5.37921963833e-05 19347406521.4 +UniRef50_UPI000473FB58 helicase DnaB, partial 8.34678641399e-06 0.000342245150645 1.34798867034e+11 +UniRef50_B7VMX2 Methionyl tRNA formyltransferase 8.21849574338e-06 1.56413115431e-05 2996681826.54 +UniRef50_F4DWI2 Regulatory protein, LuxR 0.000385392888794 0.000279835768189 -42614704919.8 +UniRef50_Q2GUA3 1.31138389048e-06 2.18667363629e-06 353365211.397 +UniRef50_UPI0002EEDC88 hypothetical protein 7.74915325016e-06 1.15922477231e-05 1551504398.8 +UniRef50_Q8Y7N5 Non canonical purine NTP pyrophosphatase 5.10247432929e-05 0.000575292282856 2.11653239208e+11 +UniRef50_R1D6J3 2.5894043904e-05 1.20846599668e-05 -5575017755.64 +UniRef50_A2SNI4 Sex pilus assembly protein 5.87130928703e-05 4.99822888612e-06 -21685349745.9 +UniRef50_I3X709 Extracellular solute binding protein family 3 0.0021259061298 0.000840334111646 -5.1900119947e+11 +UniRef50_UPI0001CE27CE PREDICTED 3.55027344812e-06 0.00019492851828 77261745913.8 +UniRef50_Q9I4D3 Putative quercetin 2,3 dioxygenase PA1205 0.000175394533608 0.000191143498515 6358050394.49 +UniRef50_H6MX85 Peptide methionine sulfoxide reductase MsrA 0.0388578222829 0.010084061677 -1.16163202504e+13 +UniRef50_G2JLT4 1.68582102353e-05 0.01649300103 6.65162104136e+12 +UniRef50_X6G7G7 5.50035310102e-05 2.04393714295e-05 -13953975372.7 +UniRef50_P44123 6 carboxy 5,6,7,8 tetrahydropterin synthase 2.16456536964e-05 0.00223023737812 8.91635581617e+11 +UniRef50_UPI000349B87B hypothetical protein 6.72640854751e-06 1.23771956628e-05 2281292101.4 +UniRef50_P69829 Nitrogen regulatory protein 0.000247515499001 0.00222773292896 7.99438076475e+11 +UniRef50_A8F8I3 Phosphoribosylformylglycinamidine synthase 2 1.52471762569e-05 3.64482455666e-06 -4684011758.24 +UniRef50_Q1NB30 0.000184104728343 4.75683352301e-05 -55121417389.7 +UniRef50_U3T7G4 Oligopeptide transport system permease protein 0.000375048866284 0.00767821631672 2.94837831969e+12 +UniRef50_A0Q4T9 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.62598784966e-05 5.25013161228e-05 -1517377753.05 +UniRef50_G8V7H1 ABC transporter ATP binding protein 0.000185528854924 0.0043520856322 1.68209010039e+12 +UniRef50_F7TW27 Nickel transport system permease protein NikB 9.14017480104e-06 2.61672345976e-05 6874032985.41 +UniRef50_F2I8E8 Branched chain amino acid ABC transporter, permease protein 0.00797411816463 0.00483739634805 -1.26633308926e+12 +UniRef50_UPI000328BD8B PREDICTED 7.22892610694e-05 0.000214775785594 57523558457.0 +UniRef50_R9PHP0 Membrane protein related to purine degradation 0.000166354274214 3.03338644409e-05 -54913108583.5 +UniRef50_UPI0000E10DEA Mg chelatase, subunit ChlI 2.51206953912e-06 6.13881015478e-06 1464159691.65 +UniRef50_D4GS06 Citrate synthase 2.32584276399e-05 5.41970175741e-05 12490288415.6 +UniRef50_B2URB8 Ketol acid reductoisomerase 2.22470787145e-05 3.82707957609e-05 6468971204.75 +UniRef50_A0A017HSW8 Cation transport protein chaC 1.15982875084e-05 1.08713229509e-05 -293484512.721 +UniRef50_UPI00021979C2 oligo 1,6 glucosidase 3.5274192233e-06 5.78638646359e-06 911972795.55 +UniRef50_UPI0003507592 PREDICTED 2.5460167367e-05 5.67874949761e-05 12647226585.3 +UniRef50_UPI0003AA57B2 sodium 1.36897052753e-05 0.00360154819851 1.44846250169e+12 +UniRef50_UPI0003B38D86 chemotaxis protein CheR 9.66713981777e-05 2.44111729396e-05 -29172339661.3 +UniRef50_C1C8T6 Alanine racemase 0.00576830142862 0.003166047133 -1.05056199239e+12 +UniRef50_UPI00034AEEE6 hypothetical protein 0.00173278246411 0.00143441051275 -1.204564182e+11 +UniRef50_Q6X7U6 2,3 diaminopropionate biosynthesis protein SbnB 0.0139060159203 0.00200661648535 -4.80393357396e+12 +UniRef50_UPI00046E80FA hypothetical protein 3.77990207457e-06 9.671988784e-06 2378707708.63 +UniRef50_R6AVV6 5.14333897648e-06 3.67568203441e-05 12762750369.1 +UniRef50_I6TPH6 N acetylmuramoyl L alanine amidase 0.00214288541827 0.000201810960268 -7.83635578357e+11 +UniRef50_A5VKT1 Peptide methionine sulfoxide reductase MsrA 0.0260769476688 0.0018263270428 -9.7902731353e+12 +UniRef50_G8VNH2 Cysteine synthase ornithine cyclodeaminase 0.000117353157162 0.00495137234234 1.95155286514e+12 +UniRef50_B9KN38 UvrB protein 0.0198485892128 0.0102377783882 -3.8800022678e+12 +UniRef50_Q54XM6 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 8.52052509155e-06 1.66929649665e-05 3299314264.63 +UniRef50_UPI0001FFDC47 5 nucleotidase ;exopolyphosphatase ;3 nucleotidase 6.07959572842e-05 0.000278040026756 87704096730.4 +UniRef50_UPI00036C2D64 hypothetical protein 1.04431833722e-05 3.05179150314e-06 -2983995600.12 +UniRef50_F7YPH9 ABC transporter ATP binding protein 0.00056831105291 0.0110292115999 4.22319392051e+12 +UniRef50_Q2CFL1 4.39711490438e-06 6.87994534513e-06 1002349116.69 +UniRef50_H5YAU5 Spermidine putrescine binding periplasmic protein 0.0136950160159 0.00257365827797 -4.4898285932e+12 +UniRef50_Q7WJI7 Argininosuccinate lyase 0.000342624921585 0.00321252954467 1.15861571403e+12 +UniRef50_Q8E0X1 Prophage LambdaSa1, pblA protein, internal deletion 0.000121737379666 0.000208700704506 35108161397.9 +UniRef50_R4WZZ5 0.00814857330499 0.00236691857474 -2.33412496348e+12 +UniRef50_UPI0004135EFA ATP dependent DNA helicase RecQ 1.74792101858e-05 9.53229261273e-06 -3208268143.89 +UniRef50_UPI00047C6850 hypothetical protein 3.74920263848e-05 0.000276249073565 96389149825.0 +UniRef50_A6QGQ2 0.000175784765011 0.000116336382583 -24000041499.9 +UniRef50_UPI000379AA44 hypothetical protein 3.62742611183e-05 5.15634302116e-06 -12562685395.6 +UniRef50_UPI00034B0709 hypothetical protein 0.0015816474433 0.000209629725795 -5.53900389105e+11 +UniRef50_A6V155 0.000552257736994 0.000239445977193 -1.26285946064e+11 +UniRef50_UPI000416D15E hypothetical protein 5.88035396834e-06 9.38108295273e-06 1413287249.77 +UniRef50_C1KVB2 Endoribonuclease YbeY 0.0118816058363 0.00202371685621 -3.97975075116e+12 +UniRef50_P0ABV8 Protein TolR 0.00405291947666 0.000414964925331 -1.46868689509e+12 +UniRef50_J9NZ26 0.000113245796655 0.000336331460735 90062420158.0 +UniRef50_UPI0004637A95 MULTISPECIES 9.15488519108e-05 9.61392715899e-05 1853208755.24 +UniRef50_Q1R1E5 1 deoxy D xylulose 5 phosphate synthase 6.74651421758e-06 7.41970937218e-06 271777144.946 +UniRef50_UPI00035C7334 hypothetical protein 0.000599514009231 0.000141677645391 -1.84834158366e+11 +UniRef50_UPI000367B022 hypothetical protein 2.26822633197e-05 3.6274889918e-05 5487510158.02 +UniRef50_P32157 Protein YiiM 0.00399161709896 0.0011303700054 -1.15512056312e+12 +UniRef50_Q5LR99 Peptidase, M23 M37 family 0.00234259958688 0.00039631795236 -7.85737779417e+11 +UniRef50_UPI0001DD0925 bile acid 0.000253977178749 0.000146638628562 -43333889902.6 +UniRef50_Q1IW67 PPC, peptidase containing PKD repeats 7.93789774321e-06 0.00127980353978 5.13467767238e+11 +UniRef50_L0A6E5 Phytoene desaturase 7.06461613625e-05 0.0385141613059 1.55201188188e+13 +UniRef50_Q7VA47 Fumarate hydratase class II 5.36259246469e-06 4.05765998134e-06 -526817256.851 +UniRef50_Q9ZKW2 Probable iron chelatin transport system permease protein jhp_0822 0.000125133476969 0.00179791040875 6.75320574641e+11 +UniRef50_R5AM14 Transketolase 0.00143201188526 0.00488682913879 1.39475212063e+12 +UniRef50_Q9HXC0 0.000751656975743 9.49571399342e-05 -2.65117782329e+11 +UniRef50_UPI0004785DA5 hypothetical protein 1.01680207739e-05 0.000656611577274 2.60977196514e+11 +UniRef50_UPI0001C4F400 sulfate ABC transporter permease 9.62878022308e-06 9.49572744923e-06 -53715037.5444 +UniRef50_W3MN34 8.15399645607e-05 0.00144526035913 5.50550658019e+11 +UniRef50_U2YW33 CRISPR associated protein, Cas5h family 0.000321816075461 6.31375525294e-05 -1.0443169405e+11 +UniRef50_Q9RT77 0.000271572653853 0.00241511090729 8.65372697086e+11 +UniRef50_Q9RT76 0.0033887333048 0.0397589987529 1.46831224747e+13 +UniRef50_W8TN29 ACT domain containing protein 0.000292624797564 0.0140372066139 5.54885634423e+12 +UniRef50_P52986 Homoserine dehydrogenase 4.02740615366e-06 6.25441730872e-05 23623936892.5 +UniRef50_B2S5S6 Threonine tRNA ligase 0.0124345707482 0.00725875749814 -2.08953932342e+12 +UniRef50_D5AQ72 Glycine betaine L proline ABC transporter, permease protein ProW 1 0.0127347731774 0.00108488013118 -4.70320478301e+12 +UniRef50_A3JTA0 Arsenate reductase 0.000404919655234 0.000221786797212 -73932982076.4 +UniRef50_G4LDX4 0.000141601051163 0.000249471483268 43548617159.8 +UniRef50_G2JZ44 Carnitine transport ATP binding protein OpuCA 0.0347290092841 0.0131295798624 -8.71995471235e+12 +UniRef50_A5USV3 Queuine tRNA ribosyltransferase 5.19715643669e-06 3.19758409382e-05 10810883544.7 +UniRef50_O52788 Tyrosine protein kinase ptk 0.000355909480386 0.0065052323679 2.48255711037e+12 +UniRef50_E5QV38 0.0104953728179 0.00118297732925 -3.75952833471e+12 +UniRef50_UPI000472FBDB S formylglutathione hydrolase 2.83168861965e-05 3.82243209264e-05 3999752978.36 +UniRef50_P52613 Flagellar FliJ protein 0.00141130233383 0.00122593107804 -74836650723.5 +UniRef50_UPI00035FA621 hypothetical protein 5.29796777693e-06 1.96857333744e-05 5808517529.45 +UniRef50_UPI0002891631 HAD family hydrolase 7.91027594963e-05 0.000245118627756 67022643260.4 +UniRef50_C1KVA9 GTPase Era 0.0236719701152 0.0119461568689 -4.73385469944e+12 +UniRef50_UPI00047412C9 hypothetical protein, partial 4.21815344166e-05 5.74483338498e-05 6163394275.88 +UniRef50_T7XDH6 Cytochrome bd II oxidase subunit 2 0.000768093580892 0.000387889518544 -1.53493045598e+11 +UniRef50_A0A010ITK8 1.86632233352e-05 4.17804104913e-05 9332692134.7 +UniRef50_Q5LVP8 Xanthine dehydrogenase accessory factor 6.71868334959e-06 4.3690587779e-05 14926011514.4 +UniRef50_F3U4A0 RND family efflux transporter MFP subunit 0.000255485527578 0.000491118925637 95128094343.4 +UniRef50_B9DZY6 0.000283342373642 0.00496713285668 1.89090369458e+12 +UniRef50_UPI0004701B61 hypothetical protein 6.25599781802e-06 8.14137681872e-06 761150638.785 +UniRef50_Q839H4 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.0049189487464 0.0121219237083 2.90792938256e+12 +UniRef50_UPI000362C020 hypothetical protein 3.11903779177e-06 0.000377434580452 1.5111577794e+11 +UniRef50_UPI000455F0CE hypothetical protein CONPUDRAFT_85381 8.53092037622e-06 9.37901574761e-07 -3065394866.97 +UniRef50_UPI000417B443 hypothetical protein 1.13260124627e-05 2.37311884538e-05 5008121776.23 +UniRef50_A8FY28 Ribonuclease HII 0.000595790580038 0.000643231907845 19152646206.2 +UniRef50_F9ECL7 6.73848948113e-05 0.00324199064956 1.28162729999e+12 +UniRef50_A3M1W3 0.000205901448467 0.00380607907314 1.45343588623e+12 +UniRef50_UPI0004168D45 DEAD DEAH box helicase 3.35799902697e-06 1.90921731628e-05 6352079178.65 +UniRef50_Q87DC2 Fumarate hydratase class II 0.000952430105442 0.00068039294302 -1.09824740741e+11 +UniRef50_X1CXM9 Marine sediment metagenome DNA, contig 1.44821891795e-05 8.33833166245e-06 -2480350673.24 +UniRef50_Q5VQ95 PE PGRS FAMILY PROTEIN like 5.41901981131e-05 2.18721494118e-05 -13047192847.8 +UniRef50_Q0MQH9 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.28347282207e-05 2.89022101445e-05 -1587605804.79 +UniRef50_P05448 Putative L,D transpeptidase in ATP synthase subunits region ORF 5 0.012404094123 0.00495968904425 -3.00539768341e+12 +UniRef50_UPI000364300D hypothetical protein 3.49162223831e-06 5.54494374112e-06 828951087.773 +UniRef50_UPI00046AFE1E fimbrial protein, partial 7.80354965687e-06 7.99769463389e-06 78378709.6498 +UniRef50_C1C8M1 Threonine tRNA ligase 0.0127555711153 0.00433481805511 -3.39956134466e+12 +UniRef50_Q9WY54 Aminomethyltransferase 3.8555108957e-05 3.18539284437e-05 -2705348805.95 +UniRef50_UPI000478F558 hypothetical protein 1.81335620539e-05 0.00020806905574 76679289571.6 +UniRef50_Z2DM67 0.000406030234906 0.000203832524573 -81629696906.4 +UniRef50_Q59935 Mannose 6 phosphate isomerase 0.028466988923 0.010110724363 -7.41064925957e+12 +UniRef50_E0MU16 Putative replication protein A 0.000782900747004 0.000252649811376 -2.14068809624e+11 +UniRef50_A6LPF8 Transcriptional regulator, TrmB 0.00220666947375 0.000423899576834 -7.19726084433e+11 +UniRef50_F1AX13 PP177 0.000407412710497 0.000185733256082 -89494716060.1 +UniRef50_UPI0003771110 hypothetical protein 0.000197215145787 0.00329601488918 1.25102348296e+12 +UniRef50_P52560 GTP pyrophosphokinase 0.000175001246301 0.00661396813026 2.59948994606e+12 +UniRef50_P72871 S adenosylmethionine synthase 8.67734417895e-06 0.000311232407899 1.22145191992e+11 +UniRef50_UPI000380FDEA hypothetical protein 7.4055781187e-06 4.42270073442e-05 14865262828.1 +UniRef50_A7BLF8 Serine threonine protein phosphatase 4.34916835541e-06 0.000116369495057 45223980533.6 +UniRef50_Q74NK6 0.000126634813833 0.00201264223045 7.61404338003e+11 +UniRef50_P43319 0.003001642598 0.000164369223673 -1.14544207848e+12 +UniRef50_M8E6M3 5.18836542369e-05 0.000916856693408 3.49200230326e+11 +UniRef50_A1B1I1 Leucyl phenylalanyl tRNA protein transferase 1.63040435828e-05 0.000119106719942 41502701976.8 +UniRef50_Q57847 0.00291361999475 0.000473770115279 -9.84997336667e+11 +UniRef50_Q745F5 4.93242201077e-05 0.000113656204698 25971611621.3 +UniRef50_UPI0003628FC3 hypothetical protein, partial 5.1714812704e-06 0.000134319236006 52138533408.1 +UniRef50_UPI000158478A hypothetical protein BC1G_06634 4.44073690214e-06 3.37066668032e-05 11815015034.4 +UniRef50_G9EQ58 4.11888742638e-05 0.000166729575426 50682321616.7 +UniRef50_F3YMS0 Permease 0.00484423132479 0.00506488682277 89081332282.0 +UniRef50_UPI0003651736 hypothetical protein, partial 9.88434426598e-06 1.54371702619e-05 2241743995.39 +UniRef50_Q7VR76 Ribose phosphate pyrophosphokinase 3.61466314181e-05 7.74923634178e-05 16691779377.5 +UniRef50_UPI0003B40518 ABC transporter ATP binding protein 6.07183430997e-07 4.92400882273e-06 1742755384.05 +UniRef50_UPI0004708F5B ABC transporter substrate binding protein, partial 1.59398045474e-05 0.000568516621707 2.23082041968e+11 +UniRef50_Q9K107 L aspartate oxidase 0.000322734424493 0.00331094834525 1.20637862932e+12 +UniRef50_Q6A6B1 BadF BadG BcrA BcrD ATPase family protein 0.000212070780251 0.00953832485507 3.76512321601e+12 +UniRef50_UPI0001CBF5BB macrolide ABC transporter ATP binding protein 5.7914471395e-06 2.2992336605e-05 6944210155.87 +UniRef50_D8JDP8 Protein visC 9.20697533807e-05 0.00669928486401 2.66741381981e+12 +UniRef50_UPI0003B5F778 iron ABC transporter 4.85694526029e-06 2.82073012087e-05 9426825237.46 +UniRef50_UPI000382A943 hypothetical protein 1.10087946562e-05 1.71522656751e-05 2480194639.2 +UniRef50_U3T3A9 3.44216046284e-05 0.00104743294192 4.08965107911e+11 +UniRef50_UPI000455D09C lamb YcsF family protein 0.000112239228912 2.70073731009e-05 -34409146103.4 +UniRef50_Q9RWW8 0.000187478528205 0.0481271771429 1.9353844617e+13 +UniRef50_C6ZBM7 4.09421260664e-05 5.05283847915e-05 3870090283.95 +UniRef50_A6LRH1 Response regulator receiver protein 0.000261537636621 0.000476637802963 86838576728.1 +UniRef50_B3QI42 Phosphoribosylformylglycinamidine synthase, purS 3.63675254415e-05 7.64707369879e-05 16190158623.0 +UniRef50_UPI0004712E3C hypothetical protein 6.18921543543e-06 4.83015211799e-06 -548670538.833 +UniRef50_C1N8X0 Predicted protein 2.13355405122e-05 5.77388870196e-06 -6282429798.72 +UniRef50_A5UNU8 Large terminase subunit 0.00398758493451 0.000131154717327 -1.5568882024e+12 +UniRef50_N8WPF6 0.000250543797907 0.0095014668419 3.73471115445e+12 +UniRef50_Q8TYX3 HSP70 class molecular chaperones involved in cell morphogenesis 0.00416940365777 0.000389379600506 -1.52604209803e+12 +UniRef50_P94544 DNA polymerase 3 5 exonuclease PolX 0.0194270517834 0.00734696994585 -4.87687727707e+12 +UniRef50_UPI0001745B7C iron sulfur cluster assembly accessory protein 0.000829585364471 0.000138146755862 -2.79142251201e+11 +UniRef50_Q13SP0 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0172264453457 0.0123561935057 -1.96618043252e+12 +UniRef50_K0S5W4 7.33932577173e-05 0.00013484035594 24806947593.2 +UniRef50_UPI0002FE110D Fosmidomycin resistance protein 0.000116565489397 0.000125985484617 3802967666.65 +UniRef50_A8A6H8 Inner membrane protein CbrB 0.0011177014855 0.00053050905124 -2.37056791372e+11 +UniRef50_B4G1R8 0.000433062319907 0.00033879545529 -38056690030.4 +UniRef50_Q21TR5 Putative ribose galactose methyl galactoside import ATP binding protein 0.000256469145597 0.00553008744338 2.12902442139e+12 +UniRef50_N0CFH5 L cystine ABC transporter substrate binding component 0.00400655896638 0.0039472097551 -23960004890.5 +UniRef50_M9VK56 Membrane associated protein 0.000217856681064 0.00480952172692 1.85371152508e+12 +UniRef50_U5UTH9 0.000174705665644 0.000142727768354 -12909869548.9 +UniRef50_K0S8Y4 7.41622767867e-05 5.47047881885e-05 -7855226917.33 +UniRef50_F7Z9W9 Transposase 8.96458704271e-05 2.2205186778e-05 -27226631579.4 +UniRef50_UPI00041D675E DNA primase 3.35866750559e-06 3.93695014633e-06 233459798.393 +UniRef50_Q6Z5U8 0.000680313186504 0.000521914648349 -63947433621.8 +UniRef50_I3TMV8 Phosphoribosylformylglycinamidine synthase protein 0.000109734009961 5.63056938811e-05 -21569666840.6 +UniRef50_UPI000406D548 hypothetical protein 7.69833893033e-05 5.50344431742e-05 -8861058896.18 +UniRef50_Q8CNT0 Abortive phage resistance protein 0.0098942135046 0.00411971861189 -2.33123444921e+12 +UniRef50_UPI0003610508 hypothetical protein 9.21608645163e-05 2.93963939164e-05 -25338786987.8 +UniRef50_A0A024IFX7 5.2348506908e-05 0.00379439805762 1.51071132373e+12 +UniRef50_S4X548 O acetylserine dependent cystathionine beta synthase 0.0246360035439 0.00777237761742 -6.80805272649e+12 +UniRef50_P0DC76 N utilization substance protein B homolog 0.00110334866358 0.00774683621263 2.68205744831e+12 +UniRef50_A4X990 Cobalamin synthesis protein, P47K 5.43176844442e-06 1.18232927224e-05 2580336783.84 +UniRef50_S9TDP6 Proteophosphoglycan ppg3 7.6541798406e-05 0.000465274564787 1.56936188075e+11 +UniRef50_A9M1F1 Ferric enterobactin transporter binding protein 1.5285507377e-05 0.00162534217049 6.49999632515e+11 +UniRef50_UPI0003B45A90 cytochrome C oxidase 2.86529933905e-06 2.6050401202e-05 9360110135.25 +UniRef50_B0VKG9 3.61731445806e-05 0.000103321865681 27108762715.7 +UniRef50_A6M1U3 Response regulator receiver protein 0.000573514395093 0.00065631404195 33427233502.1 +UniRef50_M9R1A8 0.00010607212978 7.10948993649e-05 -14120737137.5 +UniRef50_R4K891 rRNA methylase 0.000167771550603 0.000256425503788 35790688807.1 +UniRef50_S9QSU8 DNA polymerase III, beta subunit 0.00704671175177 0.00310655056767 -1.59069142124e+12 +UniRef50_UPI0003825004 hypothetical protein 0.000205302863325 6.72658797193e-05 -55727224186.0 +UniRef50_A5VZZ2 Cyclic pyranopterin monophosphate synthase 0.000236911298339 0.000317266707001 32440464548.6 +UniRef50_H3XB68 YhgE Pip C terminal domain protein 0.0162104351988 0.00337409065168 -5.18218981333e+12 +UniRef50_D8HBY6 0.00990628747066 0.000805343386522 -3.67416280791e+12 +UniRef50_A0A032VR07 0.00952389555968 0.000806062850735 -3.51949604444e+12 +UniRef50_Q5HR98 UDP N acetyl D mannosamine transferase 0.0101178003165 0.0024694031881 -3.08775177712e+12 +UniRef50_M2I9S9 0.000563411923659 0.000711606518538 59827976504.8 +UniRef50_R1D153 0.000954834283356 4.43976776073e-05 -3.67554430054e+11 +UniRef50_Q07417 Short chain specific acyl CoA dehydrogenase, mitochondrial 1.18623500481e-05 4.52552076834e-05 13481106403.8 +UniRef50_W4TL26 0.000139205042914 0.000329647337439 76883891289.5 +UniRef50_A3NXX0 Cytidylate kinase 9.21545642789e-06 0.00491395256901 1.98010256024e+12 +UniRef50_R7D247 Oxidoreductase short chain dehydrogenase reductase family protein 0.00311868194033 0.00096247304246 -8.70487991729e+11 +UniRef50_A8MH33 Phospho N acetylmuramoyl pentapeptide transferase 7.50793313504e-06 1.52173379182e-05 3112381316.0 +UniRef50_UPI000464379E DNA mismatch repair protein Vsr 1.0541421145e-05 6.5803724269e-05 22310069915.9 +UniRef50_UPI00035EB80A hypothetical protein 1.42600425103e-05 1.16230705833e-05 -1064577926.21 +UniRef50_K6EM35 DEAD DEAH box helicase 1.08439223771e-06 3.27575224684e-05 12786831347.1 +UniRef50_UPI00028A299B deoxyribonucleotide triphosphate pyrophosphatase 6.55068632452e-06 1.24763887995e-05 2392278805.7 +UniRef50_I7HG53 Penicillin binding protein 0.000141560784841 0.00434561570214 1.69722855967e+12 +UniRef50_E2X4D1 0.000320907874997 0.000852014557138 2.14414284992e+11 +UniRef50_Q02IQ8 0.00018571363304 0.000144522502443 -16629364894.0 +UniRef50_R4RFT5 3 oxoacyl [acyl carrier protein] synthase 3 0.000405422601424 0.00640143485144 2.42066372468e+12 +UniRef50_M0SUV4 2.01841312353e-05 5.09695283423e-05 12428442591.4 +UniRef50_O31776 L threonine 3 dehydrogenase 5.64158826333e-06 4.68237030175e-05 16625725087.6 +UniRef50_A8AW17 Cell division protein ftsA 0.00796597623952 0.00333844878707 -1.8681896187e+12 +UniRef50_UPI0003754678 hypothetical protein, partial 5.33893601912e-05 2.8768124341e-05 -9939895049.27 +UniRef50_O86018 GroESL operon, partial sequence. 4.46003321695e-05 0.00026496189759 88962668101.0 +UniRef50_P9WGZ8 Ribonuclease J 0.000326626648787 0.00542626754707 2.05878761027e+12 +UniRef50_X1R855 Marine sediment metagenome DNA, contig 1.63500340257e-05 3.96915548909e-05 9423258405.95 +UniRef50_P33362 Putative osmoprotectant uptake system substrate binding protein OsmF 0.00123993949482 0.00061897148499 -2.50692405703e+11 +UniRef50_P50107 Lactoylglutathione lyase 7.2768919145e-06 1.60619398382e-05 3546631651.46 +UniRef50_D4H934 DNA binding helix turn helix protein 0.000265949721148 0.00882892694115 3.45697898326e+12 +UniRef50_UPI0004786584 hypothetical protein 6.23613550185e-07 8.93333448607e-05 35813207120.9 +UniRef50_P77319 Chaperone protein HscC 0.0022052610613 0.000755929562201 -5.85112911484e+11 +UniRef50_A8EWD3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.000202949456367 0.00240083105717 8.87311773283e+11 +UniRef50_Q87VD5 Glutamate ammonia ligase adenylyltransferase 0.000556645922626 0.000123520421499 -1.74858079853e+11 +UniRef50_Q02ID7 7 carboxy 7 deazaguanine synthase 0.00118059889226 0.00646815487788 2.134651237e+12 +UniRef50_A9I0G7 Orotate phosphoribosyltransferase 0.0037843849584 0.000419307505292 -1.35852306196e+12 +UniRef50_F8FNN8 YbaR 0.0292391920903 0.0364224380777 2.89996455345e+12 +UniRef50_A6LZF6 Transcriptional regulator, XRE family 0.00040735898078 0.00151164968918 4.45815710152e+11 +UniRef50_H0HX43 Transposase 1.48775538787e-05 4.90979575359e-05 13815196888.0 +UniRef50_V9AHX5 PF12266 family protein 4.8701666323e-05 0.00100682866465 3.86807626765e+11 +UniRef50_B9DW70 DNA mismatch repair protein MutL 0.00594288439686 0.00262201802624 -1.34067450543e+12 +UniRef50_M8SYD2 3.92585912343e-05 8.3244671013e-05 17757720176.6 +UniRef50_UPI00045E6B47 Fis family transcriptional regulator 2.40798265933e-05 3.80250706568e-05 5629866155.82 +UniRef50_A5UMR0 Thiamine monphosphate kinase, ThiL 0.00157722361694 0.000534201632247 -4.21080774538e+11 +UniRef50_C1FHC6 Predicted protein 2.01109125958e-05 0.000963300793573 3.80777329192e+11 +UniRef50_L7WU68 Precorrin 2 dehydrogenase 0.0116835812124 0.0116723705241 -4525892437.33 +UniRef50_UPI00037FCE7E hypothetical protein, partial 1.42571754891e-06 4.76052131163e-06 1346301201.65 +UniRef50_J6MTI6 0.00879421180364 0.00164756192873 -2.88519025376e+12 +UniRef50_Q9KV18 Putative ribosome biogenesis GTPase RsgA 0.00206445193545 0.0040782409254 8.12991327213e+11 +UniRef50_UPI0003760B8C hypothetical protein 8.22771995326e-05 4.57790021053e-05 -14734770184.6 +UniRef50_UPI0003FB1D7B hypothetical protein 4.3997779812e-06 0.000196860050102 77698573608.4 +UniRef50_UPI00047AC70D hypothetical protein 2.44721652517e-06 7.73612441828e-06 2135197018.65 +UniRef50_A4XP48 Glutamate putrescine ligase 0.00133240539279 0.000725164600672 -2.45150559461e+11 +UniRef50_L1KHU2 0.00132027117581 0.000530192149453 -3.189645983e+11 +UniRef50_UPI0004280637 5 nucleotidase 2.09467522568e-06 0.000186577618849 74478028200.9 +UniRef50_A1TL07 Phosphoribosyl AMP cyclohydrolase 2.42246028509e-05 2.16911203011e-05 -1022797994.68 +UniRef50_A0ALI9 NLP P60 family protein 3.02842799869e-05 0.00106018823997 4.15784866987e+11 +UniRef50_Q6A964 Glycine tRNA ligase 0.000369458045884 0.00620760084721 2.35692989097e+12 +UniRef50_P75030 Urease subunit gamma 0.000228775385315 0.000278430288296 20046293667.6 +UniRef50_G0DXU0 0.00063712318923 0.00717982706466 2.64136984252e+12 +UniRef50_UPI00036F5C26 hypothetical protein, partial 0.000150962244195 5.37267459149e-05 -39255163869.4 +UniRef50_A0A017HQ29 3.3840152443e-06 1.72669400636e-06 -669080921.375 +UniRef50_R6TVK2 Aldehyde dehydrogenase A 0.00238425112088 0.000520546726894 -7.52400334078e+11 +UniRef50_P77522 FeS cluster assembly protein SufB 0.002194884004 0.00489967365281 1.09195677273e+12 +UniRef50_UPI00029A24D2 acyl CoA dehydrogenase 4.309022075e-06 6.86808408551e-06 1033124736.87 +UniRef50_Q8ERS7 Bis tetraphosphatase PrpE [asymmetrical] 3.28643635132e-05 0.000796766116559 3.08396511833e+11 +UniRef50_Q55738 DNA gyrase subunit A 5.6300028786e-06 1.28834540842e-05 2928307261.56 +UniRef50_UPI00046F2BB5 chromosomal replication initiation protein, partial 6.24353061092e-06 2.12836954623e-05 6071899114.09 +UniRef50_A3PFT2 Sulfoxide reductase heme binding subunit YedZ 0.0102911880121 0.00160284365739 -3.50759123397e+12 +UniRef50_UPI00047E1D32 iron transporter FeoB 7.30384168488e-06 3.77573686919e-06 -1424339208.81 +UniRef50_Q5X1A0 Ribosomal RNA large subunit methyltransferase E 0.00501580223808 0.00878000365372 1.51965430344e+12 +UniRef50_UPI0003113A1C hypothetical protein 4.93465890176e-05 8.76729481496e-05 15472821498.9 +UniRef50_UPI000424F2DF hypothetical protein 1.57351742057e-05 8.87868259603e-06 -2768049801.44 +UniRef50_P45527 0.0127285823465 0.00367660677636 -3.6543936179e+12 +UniRef50_UPI000344EADE thioredoxin 0.00027198151641 0.000536984920001 1.06985125987e+11 +UniRef50_E2ZZT1 Type I ferripyoverdine receptor, FpvB 0.00062425813578 0.0001680055727 -1.84194758564e+11 +UniRef50_UPI0004630EAC hypothetical protein 5.94956593079e-05 3.52127009707e-05 -9803328266.14 +UniRef50_P46125 Inner membrane protein YedI 0.00431975865781 0.00151175354775 -1.13362612103e+12 +UniRef50_D4DXV5 Type III restriction enzyme, res subunit 0.00159672408566 0.000446443165814 -4.64382522878e+11 +UniRef50_UPI00037CF6F9 nitrate ABC transporter ATP binding protein 4.3460363266e-05 1.287005905e-05 -12349681197.2 +UniRef50_M9VF54 5 formyltetrahydrofolate cyclo ligase 0.000446728980886 0.00339413890867 1.18990555663e+12 +UniRef50_UPI00026CD1F6 transposase IS3 IS911 family protein 4.20943527516e-05 6.41314270505e-05 8896637319.78 +UniRef50_B7GKM4 NADH dehydrogenase, FAD containing subunit 0.00395064786358 0.000891817979781 -1.23488716015e+12 +UniRef50_C6HWC8 Glutamate dehydrogenase 8.45171261952e-07 6.19806783192e-06 2161030032.72 +UniRef50_UPI00047D654A 8 amino 7 oxononanoate synthase 3.33820943951e-05 5.17454296682e-05 7413503793.21 +UniRef50_A5UKW4 Dihydrolipoamide dehydrogenase 0.00224504898119 0.000332407356562 -7.72156894615e+11 +UniRef50_Q832Z5 Ribose phosphate pyrophosphokinase 2 0.00594965991736 0.00139032658826 -1.84065881427e+12 +UniRef50_Q9RUT4 9.76256867702e-05 0.0349363729666 1.40648297964e+13 +UniRef50_UPI00038FBDD6 UPF0135 protein BH1380 1.48526971285e-05 1.09039070798e-05 -1594174999.76 +UniRef50_Q5L3C1 Heptaprenylglyceryl phosphate synthase 0.0137927109517 0.00485487033369 -3.60831593713e+12 +UniRef50_I4F0A8 0.000220565278525 7.76581089855e-05 -57693378011.5 +UniRef50_J9YQH5 PTS system transporter subunit IIBC 0.000279484325444 0.000129524870691 -60540472093.2 +UniRef50_D3V6J7 0.000171907562261 0.00234371663499 8.76785973755e+11 +UniRef50_A1SKT2 3.22159987012e-05 9.4674236784e-05 25215157162.8 +UniRef50_UPI00047E9906 methionine aminopeptidase 2.30407798864e-05 1.27104351497e-05 -4170486937.79 +UniRef50_UPI00021A445D PREDICTED 8.64995647575e-06 3.88653152084e-05 12198311104.5 +UniRef50_A6M169 Transmembrane protein 0.000211087783962 0.000818432552111 2.4519253586e+11 +UniRef50_P58696 Asparagine tRNA ligase 3.02253144633e-05 0.00595329403583 2.39121552704e+12 +UniRef50_F0PD68 Fructokinase 0.000737291825313 0.00393238749438 1.28989932984e+12 +UniRef50_P24242 HTH type transcriptional regulator AscG 0.00460157237382 0.000526254894912 -1.64525567601e+12 +UniRef50_G4E3T8 Putative solute symporter protein 1.90333193413e-05 5.37310786893e-05 14007911238.2 +UniRef50_UPI00036ED55B hypothetical protein 0.000135862715917 1.9327338592e-05 -47046761876.0 +UniRef50_I6SVK1 Putative transcriptional regulator 0.00184419286763 0.000214256376199 -6.5802536316e+11 +UniRef50_UPI00032A2B8F 6.87453639372e-05 0.00112799947878 4.27633884671e+11 +UniRef50_A5UMS2 Predicted DNA binding protein 0.00255817467002 0.00156406705021 -4.0133344519e+11 +UniRef50_L7WZG7 BirA bifunctional protein 0.0180208431651 0.00740753401297 -4.28472314465e+12 +UniRef50_Q9RZR4 5.54582745574e-05 0.0302559043963 1.21922907005e+13 +UniRef50_UPI0003780887 hypothetical protein 5.31543062983e-06 1.02129340483e-05 1977182229.16 +UniRef50_Q6F0T3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 2 1.26833734559e-05 1.01867889339e-05 -1007901808.07 +UniRef50_A2RF77 UPF0342 protein SpyM51181 0.000695866054262 6.14075150183e-05 -2.56138697975e+11 +UniRef50_F1Z1C1 TIGR01906 family protein 2.25774079495e-05 1.72364044285e-05 -2156228662.91 +UniRef50_P37426 Ribonucleoside diphosphate reductase 1 subunit alpha 0.00253085217977 0.000809567738229 -6.94903651585e+11 +UniRef50_D3QGY3 0.00603252463098 0.000705763054916 -2.15047901497e+12 +UniRef50_UPI0003B78806 dihydrolipoamide dehydrogenase 2.81910875676e-06 6.04358031595e-06 1301758737.16 +UniRef50_UPI00047995E8 potassium transporter 1.33189599745e-05 2.42800537047e-05 4425128046.63 +UniRef50_UPI0000379B08 hypothetical protein 0.000788561535673 0.00124311861241 1.83510269921e+11 +UniRef50_W1UDI4 0.00177640465342 0.000711606518538 -4.29872073594e+11 +UniRef50_Q88ZS6 Glucosamine 6 phosphate deaminase 0.00786569421299 0.00975855637412 7.64171682479e+11 +UniRef50_A7HHV0 0.00063658958353 0.000330154796252 -1.23711484002e+11 +UniRef50_X0XC51 Marine sediment metagenome DNA, contig 1.79999834953e-06 8.43793196406e-06 2679815256.79 +UniRef50_P0AEK2 3 oxoacyl [acyl carrier protein] reductase FabG 0.000331598992002 0.00362724289278 1.33049188484e+12 +UniRef50_V8FZY5 Histidine kinase 0.000129571849717 0.00189074750183 7.11008222812e+11 +UniRef50_Q9XAR5 NADH quinone oxidoreductase subunit L 0.000201701098746 0.0101841890695 4.03005289269e+12 +UniRef50_Q53178 Cytochrome c type protein NapC 0.0168376407817 0.00481472865397 -4.85379716368e+12 +UniRef50_U6I176 Nucleoside diphosphate kinase 8.90647370853e-06 1.51968441378e-05 2539499733.82 +UniRef50_UPI0004726D5E amino acid permease 3.31078158842e-06 2.07785460556e-05 7051950868.98 +UniRef50_U3T2J2 S8 S53 family peptidase 0.000236205835381 0.00138802323788 4.65002819778e+11 +UniRef50_B1IMN8 Exodeoxyribonuclease 7 large subunit 0.000486634798018 0.00181646193523 5.36867534106e+11 +UniRef50_C4TE51 Non ribosomal peptide synthetase 0.000322161316393 0.000129899549467 -77618434625.2 +UniRef50_A6M093 0.000635705284803 0.000909771765783 1.10644001546e+11 +UniRef50_B9E104 1 deoxy D xylulose 5 phosphate synthase 0.000282209324565 0.00188268109063 6.4613009196e+11 +UniRef50_UPI000425BC50 tartrate dehydrogenase 6.71102796659e-05 5.54985291652e-05 -4687806169.33 +UniRef50_D8JLT1 Cyanide insensitive terminal oxidase 0.000103138248322 0.00520480541534 2.05960563982e+12 +UniRef50_UPI00044067F2 PREDICTED 6.91579781683e-06 2.40413670135e-06 -1821412956.63 +UniRef50_V4RP20 1.63603309111e-05 8.48396015568e-06 -3179787527.9 +UniRef50_Q3A9L0 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.25492943861e-05 2.23974399198e-05 -61305511.5092 +UniRef50_P35450 Elongation factor G, chloroplastic 2.81349798471e-05 9.46761059615e-05 26863469163.8 +UniRef50_Q75JD5 Phosphoenolpyruvate carboxykinase [ATP] 1.02740654968e-05 0.000133142198032 49603372865.9 +UniRef50_Q2NBQ3 Acyl carrier protein 0.000600574589762 0.000723224584158 49515307822.3 +UniRef50_N9WEN9 1.638328862e-05 1.22819883803e-05 -1655745235.38 +UniRef50_R1DJF2 6.02867697897e-05 4.94710712632e-05 -4366430218.69 +UniRef50_Q5QU71 1.9843216055e-05 1.33051948491e-05 -2639479391.36 +UniRef50_B6IQY7 Potassium transporting ATPase C chain 1.93222982665e-06 0.000305885613509 1.2270971092e+11 +UniRef50_Q5LMZ8 Lipoprotein, putative 0.00669305513444 0.00669106970626 -801541720.21 +UniRef50_P76938 Elongation factor P hydroxylase 0.00331194357482 0.00057158071973 -1.10631811263e+12 +UniRef50_UPI0003801D4F hypothetical protein 5.4750036738e-06 3.94985385028e-05 13735718526.2 +UniRef50_F4A6Q6 Homoserine dehydrogenase 0.000464628869536 0.000327546700935 -55341753651.6 +UniRef50_A3PR64 Transcriptional regulator, TetR family 0.00639075890412 0.000604684459685 -2.33590925633e+12 +UniRef50_I6TVX8 0.00769598861689 0.00294558827978 -1.91779491006e+12 +UniRef50_UPI000174552F ribonuclease III 1.23602613189e-05 1.37482742541e-05 560357854.774 +UniRef50_S1SWX2 Serine phosphatase RsbU, regulator of sigma subunit 0.000166006318407 0.000102776497683 -25526654543.4 +UniRef50_A6LVE7 Multi sensor hybrid histidine kinase 0.000377015750433 0.000755862401371 1.52945041955e+11 +UniRef50_F7WGV5 2.68025521131e-05 0.000197536257659 68927292067.1 +UniRef50_E1VBD1 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.00111140344635 0.000208950498955 -3.64331329206e+11 +UniRef50_P45148 Carbonic anhydrase 2 0.00379259477021 8.28325376683e-05 -1.49767653718e+12 +UniRef50_P26410 Hydrogenase nickel incorporation protein HypB 0.0105157348383 0.00187217868679 -3.48950968673e+12 +UniRef50_Q8FD60 N acetylmannosamine kinase 0.00363085074547 0.000202966807698 -1.38387881054e+12 +UniRef50_UPI0003945864 PREDICTED 3.08064589258e-06 2.92379467526e-06 -63322761.213 +UniRef50_UPI0002D3C2A9 MULTISPECIES 1.71413965814e-05 1.90291582421e-05 762112547.865 +UniRef50_UPI0004009643 triosephosphate isomerase 1.41242434395e-05 3.46680699944e-05 8293794881.31 +UniRef50_U6HBJ2 2 amino 3 ketobutyrate coenzyme A ligase 8.8164978824e-05 1.06969564153e-05 -31274791285.9 +UniRef50_F1ZDB1 3.43451518249e-05 1.59729804885e-05 -7417071020.4 +UniRef50_Q5HFW6 CCA adding enzyme 0.0202562764823 0.00552434820371 -5.94746022716e+12 +UniRef50_I0C1Q8 Membrane lipoprotein 0.000226105212186 5.0534525294e-05 -70880040792.9 +UniRef50_M9VIA3 0.00014334910969 0.00910784166428 3.61907565098e+12 +UniRef50_P0A957 KHG KDPG aldolase 0.00369856599315 0.000368759639664 -1.34428368622e+12 +UniRef50_I0EP41 Outer membrane protein P1 0.00014152966364 0.0029398597359 1.12972018954e+12 +UniRef50_UPI00036E82C7 hypothetical protein 9.26864831832e-06 0.000322827463534 1.26587541502e+11 +UniRef50_O07603 Putative aminopeptidase YhfE 0.00857580652702 0.00593408679096 -1.06649467499e+12 +UniRef50_D8TJY5 1.19851500528e-05 7.49333306713e-06 -1813401637.91 +UniRef50_UPI0003AF1724 PREDICTED 5.77795349287e-05 0.000186287283038 51880154879.0 +UniRef50_Q1QU74 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.72652167609e-05 0.000358156489471 1.37621989999e+11 +UniRef50_Q6FCN6 tRNA ) methyltransferase 0.000256212209626 0.00849171418077 3.32477320672e+12 +UniRef50_UPI00047DEB0D hypothetical protein 4.52367962977e-06 0.000617534076128 2.4747981955e+11 +UniRef50_UPI0004785335 hypothetical protein 1.82122398656e-05 4.0466542554e-05 8984335086.31 +UniRef50_UPI0003690A51 hypothetical protein 1.37397559538e-05 1.59597392021e-05 896234479.597 +UniRef50_A0A035VZY3 0.000585156271758 0.000307131509617 -1.12242008224e+11 +UniRef50_A8FBX4 3 oxoacyl [acyl carrier protein] synthase 3 0.000122094595367 3.53406750296e-05 -35023622230.5 +UniRef50_UPI00037C1BAA hypothetical protein 5.34376118582e-05 5.86476080023e-06 -19205743756.6 +UniRef50_B1M613 GntR domain protein 0.00263808013418 0.00106454292821 -6.35256279523e+11 +UniRef50_R7PTP8 0.00199189146274 0.000248165298485 -7.03963650434e+11 +UniRef50_P0A0T2 Lactoylglutathione lyase 0.00013613610624 0.00275124955612 1.05575339077e+12 +UniRef50_Q0FYC5 8.26531849996e-05 0.000340338832007 1.04030857855e+11 +UniRef50_UPI00036FE1F3 hypothetical protein 5.83821530933e-06 3.42435388057e-05 11467577668.0 +UniRef50_A3PL07 Isopentenyl diphosphate Delta isomerase 0.0111087583992 0.00641128999484 -1.89642563926e+12 +UniRef50_A3PRG0 0.00083672077002 0.000985325696855 59993632550.8 +UniRef50_A7ZM51 Voltage gated ClC type chloride channel ClcB 0.000926872944512 0.000808875892042 -47636858068.8 +UniRef50_O07631 GTP binding protein TypA BipA homolog 0.0226456624636 0.00692764458553 -6.34555669916e+12 +UniRef50_V0KMQ9 Pyruvate 0.00257194294777 0.000921906527381 -6.66139951135e+11 +UniRef50_M4NGZ8 ATP dependent zinc metalloprotease FtsH 0.000693778316813 0.00366050917015 1.19770565137e+12 +UniRef50_Q7VFS3 NADH quinone oxidoreductase subunit B 2.71711053829e-05 0.000189596656067 65573187996.8 +UniRef50_UPI0002F2BA6C phosphoglyceromutase 1.65574222083e-05 1.65738181424e-05 6619239.79691 +UniRef50_X1FPD3 Marine sediment metagenome DNA, contig 6.87964836561e-06 7.59979584973e-06 290732376.543 +UniRef50_O27906 CoB CoM heterodisulfide reductase iron sulfur subunit C 0.00202701179436 0.000173206278698 -7.48404035424e+11 +UniRef50_K2AN26 1.73297512937e-05 3.21869275367e-05 5998024367.35 +UniRef50_I4GV48 2.48062101151e-06 3.33649226382e-06 345525727.279 +UniRef50_F0RC69 2.00433523731e-06 2.46233829052e-05 9131587110.46 +UniRef50_X5EHY0 Sodium hydrogen exchanger family protein 0.0210619565628 0.00733053838988 -5.54354201985e+12 +UniRef50_A6LVZ4 Glycerol 1 phosphate dehydrogenase (+)) 0.00066279883438 0.000678200889273 6217998564.77 +UniRef50_A8ZUH7 Holliday junction ATP dependent DNA helicase RuvB 1.55527721116e-05 9.46713363959e-06 -2456846930.33 +UniRef50_B9NXF6 Plasmid partitioning protein RepA 0.000333308458276 0.000106249749494 -91666387059.0 +UniRef50_UPI0003F56407 hypothetical protein 5.17218252234e-06 1.075876593e-05 2255372276.76 +UniRef50_B9KYR9 Polyribonucleotide nucleotidyltransferase 0.000527091752672 0.00326769737766 1.10641612182e+12 +UniRef50_Q7U9I1 Ribonuclease PH 7.65695853346e-06 2.11686589682e-05 5454839272.7 +UniRef50_U5UJE9 0.0180600207159 0.00389625051803 -5.7180878379e+12 +UniRef50_A6LVF8 Signal transduction histidine kinase, LytS 0.000210856006213 0.000729932545394 2.09557568653e+11 +UniRef50_C0Z7Z0 Formamidopyrimidine DNA glycosylase 6.30584853844e-06 0.000435971349292 1.73461235243e+11 +UniRef50_W7Z395 Cold shock DEAD box protein A 8.90717327312e-06 1.138993359e-05 1002320806.82 +UniRef50_Q3ZXC2 1 deoxy D xylulose 5 phosphate synthase 2.78982478667e-06 9.67666088446e-05 37939580949.0 +UniRef50_I0KD42 8.63919048438e-05 2.80825071437e-05 -23540219388.3 +UniRef50_Y3FJT1 0.004216438889 0.000300322073074 -1.58098441475e+12 +UniRef50_V4VCN9 0.00016508133623 3.27259672642e-06 -65324173754.3 +UniRef50_Q6AHE8 Glutamate 1 semialdehyde 2,1 aminomutase 7.1248763967e-06 3.65273912647e-05 11870156061.6 +UniRef50_S1HH61 Cyclic di GMP binding protein 0.00547941209687 0.00142553044142 -1.63660177103e+12 +UniRef50_L5QQP7 Type I restriction modification DNA specificity domain protein 0.000396974130375 0.00355308990285 1.27416266724e+12 +UniRef50_P55222 Cyclic AMP receptor like protein 0.000593084818241 0.000431119277652 -65387476276.5 +UniRef50_C6SU58 Bacteriocin operon protein ScnE homolog 0.0051498495613 0.000696238046426 -1.79797762051e+12 +UniRef50_Q1Q2Q1 2.23583800242e-05 3.06716228936e-05 3356158161.34 +UniRef50_Q7VIT0 1 deoxy D xylulose 5 phosphate reductoisomerase 0.000445958476869 0.00655205534562 2.46510623615e+12 +UniRef50_UPI0003AD0F18 hypothetical protein 1.51962883634e-05 3.04422987284e-05 6155001473.94 +UniRef50_H2K2L5 Anti sigma factor 2.87028174756e-05 0.00140606938378 5.56059785004e+11 +UniRef50_B9E8P7 0.0117585639058 0.00363372371757 -3.28009768699e+12 +UniRef50_UPI00045E98AE hypothetical protein 2.17673155582e-06 4.38527923101e-06 891617798.402 +UniRef50_Q3IUW6 Putative conjugative transfer factor, TraB 0.00586413496936 0.00138521226105 -1.80819605991e+12 +UniRef50_A3JQQ6 9.05133237508e-06 5.71553800739e-06 -1346701121.04 +UniRef50_B1JLB8 0.00129331771088 0.00158343711284 1.17124762737e+11 +UniRef50_A1B1W2 0.000308728681172 4.12145865429e-05 -1.07998722769e+11 +UniRef50_P64543 0.000828479400653 0.000851875111142 9445135422.06 +UniRef50_B0KJ12 KAP P loop domain protein 9.15918502187e-06 0.00130775344652 5.24258438911e+11 +UniRef50_J7MB46 Quinolone resistance protein 0.000809880982916 0.0015087873687 2.82157084487e+11 +UniRef50_A0A058ZI44 5.48959453517e-05 5.39378129694e-05 -386809800.341 +UniRef50_UPI0004756747 6,7 dimethyl 8 ribityllumazine synthase 1.8030550393e-05 2.82858879607e-05 4140205623.22 +UniRef50_E6MX89 0.000748941698309 0.0412613346166 1.63553501641e+13 +UniRef50_Q38V64 Alanine racemase 1.29249195263e-05 0.00219934897039 8.82686219772e+11 +UniRef50_Q8XV10 Elongation factor G 1 0.000258038355446 0.0135612186774 5.37065714437e+12 +UniRef50_E7IEY2 0.000138415488225 2.67370526219e-05 -45085954901.4 +UniRef50_K7SMY3 Phosphoglycerate mutase family protein 0.000794707344946 0.009442226434 3.49110957324e+12 +UniRef50_A5IPM4 0.0160587725539 0.00557751520879 -4.23141220971e+12 +UniRef50_UPI00039C12F7 hypothetical protein 9.40642543756e-05 2.29309603022e-05 -28717383721.1 +UniRef50_UPI000373BCBB hypothetical protein 5.46306918626e-06 7.76895718027e-06 930915279.61 +UniRef50_H5M601 Beta galactosidase small chain family protein 0.00211102532133 0.000338502154399 -7.15589353795e+11 +UniRef50_UPI0002374DEC ABC transporter, permease ATP binding protein 6.04482510819e-06 1.16327372381e-05 2255908698.24 +UniRef50_B3CQC3 Phosphoglycerate kinase 2.60933511721e-05 2.65253410208e-05 174399603.032 +UniRef50_Q2K5Z5 Leucine responsive transcriptional regulator protein, AsnC family 0.0186330557244 0.00178918484814 -6.8000773703e+12 +UniRef50_Q2YZ71 Imidazole glycerol phosphate synthase subunit HisF 0.0288196427476 0.00322805593995 -1.03316376383e+13 +UniRef50_B2SII2 Glycine tRNA ligase alpha subunit 0.0123748733341 0.0147236726277 9.48239097835e+11 +UniRef50_UPI00039E6CDE 50S ribosomal protein L17 1.11967442657e-05 7.20993760686e-05 24587139818.2 +UniRef50_UPI0003F05D85 PREDICTED 1.78195132838e-05 0.000345589255063 1.32324666943e+11 +UniRef50_Q28RK4 Orotate phosphoribosyltransferase 0.000111220159952 5.91975211019e-05 -21002177693.4 +UniRef50_Q5HM44 Zinc type alcohol dehydrogenase like protein SERP1785 0.0234720409477 0.00754857999409 -6.42849658981e+12 +UniRef50_A3PRI0 Forkhead associated protein 0.000768581913618 0.000145955537989 -2.51361908326e+11 +UniRef50_UPI00047CBFD0 hypothetical protein 0.00038753355487 0.000146293075096 -97391742038.3 +UniRef50_B5F731 Non specific ribonucleoside hydrolase RihC 0.00313533492155 0.000407333386473 -1.10132769606e+12 +UniRef50_P0AFI1 Probable oxalyl CoA decarboxylase 0.0021352762228 0.000797929980985 -5.39903088903e+11 +UniRef50_B4EX96 HTH type transcriptional regulator BetI 0.0119489730753 0.00139318247705 -4.26150219865e+12 +UniRef50_B4RQ09 PglB 9.28244234828e-05 0.00232654876292 9.01781926712e+11 +UniRef50_A0A023KRT9 0.00233754801327 0.0003565191612 -7.99765657538e+11 +UniRef50_A0A046SJ38 PE PGRS family protein PE_PGRS54 5.01645641543e-07 2.14054200114e-06 661642571.89 +UniRef50_UPI000360B5E8 hypothetical protein 4.64195982495e-06 7.58066416452e-06 1186391003.84 +UniRef50_UPI0003C15BBB 8.84322945304e-06 2.70551086603e-06 -2477872311.85 +UniRef50_A6LRJ1 Amino acid permease associated region 0.000432414948181 0.00134089189795 3.66763292888e+11 +UniRef50_UPI0004791D16 hypothetical protein 2.29303341488e-05 5.45545329802e-05 12767077140.8 +UniRef50_Q49YA1 Uroporphyrinogen III synthase 0.00739001850706 0.00113501117807 -2.52522321628e+12 +UniRef50_Q89EB1 Bll7176 protein 0.00767217901022 0.00224520260367 -2.19093697181e+12 +UniRef50_Q6F885 0.000294910928794 0.00647658193312 2.49561644208e+12 +UniRef50_R9YS82 tRNA threonylcarbamoyl adenosine modification protein YeaZ 0.0240280820458 0.00855779619975 -6.24554423779e+12 +UniRef50_X1ABS4 Marine sediment metagenome DNA, contig 3.99884952848e-05 3.63689403977e-05 -1461258724.86 +UniRef50_Q5HL89 0.00947641034654 0.00353413568556 -2.39896920055e+12 +UniRef50_W0NHL6 Branched chain amino acid ABC transporter ATP binding protein 0.00997378282825 0.00274964161527 -2.91647445786e+12 +UniRef50_Q9ZKU5 Acetate kinase 0.00095828622276 0.00456224764565 1.454963452e+12 +UniRef50_A3PP96 TonB dependent siderophore receptor 0.0109029725924 0.00201798695158 -3.58697773423e+12 +UniRef50_UPI000349F59B hypothetical protein 9.82989582285e-06 2.24207230432e-05 5083071455.7 +UniRef50_B0KMS2 1.04417019246e-05 8.29103858392e-05 29256496987.1 +UniRef50_UPI000369906D hypothetical protein 0.000462492093701 0.000101742789409 -1.45638921034e+11 +UniRef50_X0ZTS5 Marine sediment metagenome DNA, contig 0.000446719007521 0.000342676011522 -42003434235.9 +UniRef50_UPI00016A7F76 branched chain amino acid ABC transporter, ATP binding protein, putative, partial 0.000172634369719 5.79557177821e-05 -46297179052.3 +UniRef50_Q28Q04 Phosphate ABC transporter membrane protein 2, PhoT family 0.00359254093474 0.000440137395082 -1.2726639933e+12 +UniRef50_A5ULX2 Adhesin like protein 0.00450304950556 0.0011305085534 -1.36153616812e+12 +UniRef50_M9VA38 Anchored repeat type ABC transporter, ATP binding subunit 0.000794399234004 0.00214980360775 5.47193378365e+11 +UniRef50_UPI000350B839 PREDICTED 0.0010021312947 0.00050641974357 -2.00124836256e+11 +UniRef50_UPI000377C272 hypothetical protein 7.02417672814e-06 2.13400455753e-06 -1974222514.44 +UniRef50_G0DVM2 ABC transporter ATP binding protein 0.000371996109852 0.00559158482614 2.10721201632e+12 +UniRef50_UPI0003B35C64 MerR family transcriptional regulator 0.000179094947032 2.84034325442e-05 -60836013591.6 +UniRef50_Q8FMG3 GTP cyclohydrolase 1 0.0068051226662 0.0043980082463 -9.71781629929e+11 +UniRef50_UPI0002D62563 hypothetical protein 0.000431990838211 5.9146847785e-05 -1.50521694245e+11 +UniRef50_A5ULL0 PyrE like protein 0.00365881650461 0.00134674446517 -9.33411854636e+11 +UniRef50_F2AIM9 0.00245026320497 0.0012905598376 -4.68186480568e+11 +UniRef50_A5UNK0 N acetyltransferase, GNAT family 0.00273621213779 0.00104158181736 -6.8414305581e+11 +UniRef50_G2SIS1 Gamma glutamyltransferase 0.000148645555952 0.00535202403857 2.10066774607e+12 +UniRef50_A6V4P3 Trans aconitate 2 methyltransferase 0.000421259974083 0.000938933079941 2.08990985398e+11 +UniRef50_UPI0002736FFE GntR family transcriptional regulator 5.01361488927e-05 0.000122067286509 29039482950.0 +UniRef50_R4K9K7 0.000268217239288 0.00154533666847 5.15588785578e+11 +UniRef50_B7A6L8 4.41067028242e-05 0.000699786618047 2.64706027873e+11 +UniRef50_A6UW73 Argininosuccinate lyase 0.00295695614437 0.00138190100552 -6.35869087654e+11 +UniRef50_B0VLA1 0.000171712260249 0.0059044610884 2.31438105066e+12 +UniRef50_Q46RL8 Trans feruloyl CoA synthase 7.10450418114e-05 0.00809788957508 3.24053563854e+12 +UniRef50_UPI00037F929E hypothetical protein 7.52991739432e-06 2.5397030622e-05 7213172864.16 +UniRef50_K5YBM6 6.0082264109e-05 7.0117833249e-05 4051482412.1 +UniRef50_R5ZXT3 7.84129352962e-06 1.27651696617e-05 1987829217.28 +UniRef50_UPI0003F68FC8 hypothetical protein 4.98293520664e-06 2.79970255203e-05 9291070674.29 +UniRef50_A5UKD8 Adhesin like protein 0.00221644117185 0.0007231065879 -6.02877496817e+11 +UniRef50_G7M5R9 0.000458179202255 0.00127204744013 3.28568594917e+11 +UniRef50_R5VLQ7 Predicted acyltransferase 0.000279619251005 0.00337504805937 1.24966259512e+12 +UniRef50_B0TI92 S adenosylmethionine decarboxylase proenzyme 0.0040729586849 0.00562030481807 6.24682622033e+11 +UniRef50_P37251 Acetolactate synthase large subunit 1.42796143058e-05 3.74434981121e-05 9351544145.42 +UniRef50_M1PXL5 Sensor histidine kinase 0.000347352227904 0.00110573844036 3.06169820414e+11 +UniRef50_C2Z7L9 6.22343944084e-05 0.000739338656704 2.73355299693e+11 +UniRef50_E8SFE6 0.00780593506899 0.00356521842326 -1.71202934933e+12 +UniRef50_M4R5V1 0.000341631850066 0.00379064368286 1.39240840103e+12 +UniRef50_Q9Z8R3 DNA gyrase subunit B 6.09051204113e-06 1.75457671522e-05 4624627060.14 +UniRef50_Q8FCZ8 0.00130033358621 0.000697598516207 -2.43331544151e+11 +UniRef50_Q8FIB4 0.00322946452092 0.000661381253552 -1.03676672896e+12 +UniRef50_W8T781 Enterobactin synthase 7.64199186819e-05 0.000138450791829 25042624693.9 +UniRef50_A9GRJ8 1.21864883278e-05 0.000626409934916 2.47969542757e+11 +UniRef50_Q9KD39 Putative GTP cyclohydrolase 1 type 2 9.29101982161e-06 0.000220660053703 85332272767.5 +UniRef50_UPI0002FB4076 hypothetical protein 3.89553160012e-05 5.86104233824e-05 7935008045.08 +UniRef50_B9KTP9 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.00087481225201 0.000493470210772 -1.53952461641e+11 +UniRef50_UPI000350BA5C 5.29900924189e-06 7.26721007003e-06 794586826.86 +UniRef50_A8IG02 Phosphate starvation inducible protein 0.00812923575682 0.00348297700341 -1.87575167476e+12 +UniRef50_P77503 0.00347480436562 0.00494073766593 5.9181526236e+11 +UniRef50_Q8FK36 Cation efflux system protein CusA 0.000421167021005 0.000123514856297 -1.20165831495e+11 +UniRef50_K0C7J8 Glutathione S transferase domain protein 0.00223435732697 0.000370690424931 -7.52385198118e+11 +UniRef50_UPI0003C7F072 DNA binding protein 0.000162006688492 0.00111269118695 3.83802998238e+11 +UniRef50_Q9CJR2 0.000119987176185 0.00141222290873 5.21691422746e+11 +UniRef50_P77509 0.000543104811486 0.0005755298106 13090370041.8 +UniRef50_B9KPE8 0.0100933085386 0.000574905051763 -3.84269629158e+12 +UniRef50_J9P5H2 4.84595718711e-05 0.000137250211555 35845870824.1 +UniRef50_Q6FD84 Urease subunit beta 0.00153612540492 0.000579052363126 -3.86382131579e+11 +UniRef50_B9JTR3 ATP synthase gamma chain 0.00776772345897 0.000750842177285 -2.83280108023e+12 +UniRef50_UPI00040C67E8 hypothetical protein 5.20270139255e-05 7.73221387876e-05 10211952312.9 +UniRef50_UPI00047E5667 PTS fructose transporter subunit IIBC 5.09837372503e-06 0.000378278982343 1.5065759114e+11 +UniRef50_A5UL83 30S ribosomal protein S3 0.00236489475572 0.00121828693992 -4.62899645699e+11 +UniRef50_C7N8H5 Lipoyltransferase and lipoate protein ligase 0.00573633539 0.00179093935162 -1.59280479615e+12 +UniRef50_UPI00047C1EB1 hypothetical protein 1.37364212615e-06 2.92557476167e-06 626534249.314 +UniRef50_M1BG02 8.73615990094e-07 1.70063429579e-05 6512979847.72 +UniRef50_Q21Y67 ATP dependent Clp protease proteolytic subunit 8.63984350154e-06 0.000160692457284 61385506079.2 +UniRef50_UPI0003C19464 PREDICTED 7.82982570874e-05 1.74076596667e-05 -24582281390.4 +UniRef50_A5WGE7 1 deoxy D xylulose 5 phosphate reductoisomerase 0.000271778695192 0.00539467744712 2.06817709119e+12 +UniRef50_UPI0004407D87 hypothetical protein FOMMEDRAFT_83654 9.26572566966e-05 0.000343726909496 1.01359899806e+11 +UniRef50_G8W4V0 Aromatic amino acid transporter 0.00175660869402 0.000212203620496 -6.23495280161e+11 +UniRef50_Q04IT2 Segregation and condensation protein A 0.00321624152886 0.00267591608365 -2.1813601277e+11 +UniRef50_Q73YR0 FtsQ 2.31021089177e-05 2.69962151971e-05 1572098491.05 +UniRef50_UPI0003818A60 hypothetical protein 1.47632401516e-05 1.60566958286e-05 522183929.291 +UniRef50_A0RRT8 Imidazole glycerol phosphate synthase subunit HisF 0.00682627689427 0.00338360232196 -1.38984997121e+12 +UniRef50_UPI000255E8B6 molybdopterin molybdochelatase 7.92298501578e-06 1.5978580845e-05 3252142889.53 +UniRef50_A9W3A9 5.63597684238e-05 1.22996209139e-05 -17787622228.6 +UniRef50_H4PDP4 Integrase core domain protein 0.00301412334254 0.00180806146039 -4.86901981868e+11 +UniRef50_I6TUC0 UDP glucose 6 dehydrogenase 0.000608950878337 0.00131685031215 2.85787688333e+11 +UniRef50_Q9JWJ7 Ribosomal RNA small subunit methyltransferase I 0.00040555503329 0.00116852640315 3.08020904724e+11 +UniRef50_UPI00046E904F allantoinase, partial 6.46328634424e-06 1.37995389956e-05 2961735221.3 +UniRef50_Q0FVS1 3.70773414769e-05 1.57193413515e-05 -8622486742.76 +UniRef50_D7GCL3 Cation transport protein 0.000747907192158 0.0035194524375 1.11890682623e+12 +UniRef50_F4BLG0 8.07432540743e-06 3.01031027507e-05 8893287736.99 +UniRef50_D5C7M7 6 phospho alpha glucosidase 0.000613401120288 0.00294017768569 9.39348252211e+11 +UniRef50_X1Y8J9 6.99299033059e-06 1.39728562473e-05 2817857523.16 +UniRef50_C1KVE4 Uridine kinase 0.0225478616875 0.0161253363425 -2.59285229503e+12 +UniRef50_W8RU50 GTA host specificity protein 8.41663061186e-06 7.9391185713e-06 -192777470.506 +UniRef50_UPI0003EFB0C6 hypothetical protein, partial 8.03299795863e-05 4.08349777735e-06 -30781640355.8 +UniRef50_O34436 Probable low affinity inorganic phosphate transporter 0.0265132166772 0.00727277337269 -7.76760306882e+12 +UniRef50_R0ZXH9 3.1244887706e-05 9.3936415809e-05 25309339206.7 +UniRef50_Q9L7S0 3 sulfolactaldehyde reductase 0.00419477277585 0.00146917406662 -1.10035764577e+12 +UniRef50_Q9CMC7 tRNA dimethylallyltransferase 0.00442254404504 0.00095941948423 -1.39810588252e+12 +UniRef50_A3PLQ2 Glycoside hydrolase, family 16 0.00171565394798 0.000373031627616 -5.42033106558e+11 +UniRef50_Q9PMT4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.000250647684992 0.00459216815504 1.75272509021e+12 +UniRef50_UPI0002DDE806 hypothetical protein 4.88277720631e-05 1.73249803567e-05 -12718063594.6 +UniRef50_A0A033NL01 0.000103362779302 1.7964420062e-05 -34476365580.9 +UniRef50_Q5HRE0 UPF0272 protein SERP0253 0.0121644600107 0.00300921628803 -3.69608423832e+12 +UniRef50_Q5HNA8 0.00879492359642 0.00184692369288 -2.80499282261e+12 +UniRef50_R4REY2 9.35959437895e-05 0.000207830890927 46118049979.6 +UniRef50_A6M2K2 Methyl accepting chemotaxis sensory transducer 0.000215597116244 0.00137921739413 4.69767785411e+11 +UniRef50_Q89XS8 Branched chain amino acid transaminase 0.00786612504329 0.00231936364357 -2.23929564348e+12 +UniRef50_P0C2L2 Glutathione transport system permease protein GsiD 0.00197209305265 0.000233451940873 -7.01910752351e+11 +UniRef50_I4F571 0.000344983293 0.000144062992721 -81113990792.0 +UniRef50_G7M5T5 0.000509441935021 0.000560459658694 20596481104.7 +UniRef50_E8XP36 Outer membrane protein assembly factor BamC 0.00205858621324 0.000275996920751 -7.19653172209e+11 +UniRef50_UPI0003B65F02 3 hydroxyacyl CoA dehydrogenase 1.26027651884e-05 2.69618085624e-05 5796922015.36 +UniRef50_UPI0003651249 hypothetical protein 0.000104693635558 5.58823125138e-05 -19705730095.2 +UniRef50_D8JEK9 Phage related protein family protein 0.00035201879381 0.00783711567608 3.02182546384e+12 +UniRef50_Q2W276 0.000132714905255 0.000110493452284 -8971073252.29 +UniRef50_A6LX89 Elongation factor G, domain IV 0.000773205535494 0.000648277767855 -50434872832.0 +UniRef50_UPI0001FFE2B2 MarR family transcriptional regulator 1.50351838174e-05 0.000117080923471 41197117340.4 +UniRef50_UPI0003B50DDF transposase 0.000188613600258 0.000170101437937 -7473587098.77 +UniRef50_P39396 Inner membrane protein YjiY 0.00301120479254 0.00167419231318 -5.39768344906e+11 +UniRef50_UPI00047720D7 mannitol ABC transporter permease 0.000387679761388 0.000178484901848 -84454531905.9 +UniRef50_UPI0004059D26 hypothetical protein 1.14764978599e-05 5.3870103275e-05 17114818734.1 +UniRef50_I2NDA2 PF06738 domain protein 6.07945638739e-05 4.71042512946e-05 -5526947187.29 +UniRef50_H8HC20 Rhodanese like domain protein 0.00300114682395 0.00110181953877 -7.66781732394e+11 +UniRef50_A7MGP9 0.000299592054644 0.000686783035329 1.5631375027e+11 +UniRef50_W5X3Y6 50S ribosomal protein L1 3.42040678106e-05 0.000302036460737 1.08127223697e+11 +UniRef50_Q46814 Probable hypoxanthine oxidase XdhD 0.00245513973548 0.000804560244025 -6.6635919559e+11 +UniRef50_UPI0003AF618D PREDICTED 1.40825318871e-05 0.000129639478793 46651757509.2 +UniRef50_B9T9T8 0.000200416346621 4.82091617308e-05 -61447908332.3 +UniRef50_P76369 0.00278244392301 0.000299307471484 -1.00247265699e+12 +UniRef50_A0A023B4Y6 1.44340266822e-05 1.65926709305e-05 871471172.582 +UniRef50_Q88PG8 Dipeptide ABC transporter, periplasmic dipeptide binding protein 0.00147125311932 0.000742504450425 -2.94204780385e+11 +UniRef50_A5F3J8 30S ribosomal protein S7 0.0551593175362 0.0557451758787 2.36518202158e+11 +UniRef50_D4KTJ1 ABC type Fe3+ hydroxamate transport system, periplasmic component 0.000243459729101 0.00182230372662 6.37398696393e+11 +UniRef50_UPI0002F2DA04 hypothetical protein 2.07721582677e-05 8.40478702869e-06 -4992859533.9 +UniRef50_P10346 Glutamine transport ATP binding protein GlnQ 0.00763480675589 0.00276649053952 -1.96539899751e+12 +UniRef50_A0RA50 Alcohol dehydrogenase, zinc containing protein 0.00100611995971 0.000179160791827 -3.33853564005e+11 +UniRef50_Z4CKX6 0.000238277775142 6.1503483509e-05 -71365950796.7 +UniRef50_A8Y0M2 Protein CBG21728 0.000376653230877 0.000407252046241 12353117252.1 +UniRef50_UPI00026573D2 PREDICTED 2.42271584122e-05 1.0628956714e-05 -5489760894.26 +UniRef50_P27833 dTDP 4 amino 4,6 dideoxygalactose transaminase 0.002802401752 0.00046452078599 -9.43831235004e+11 +UniRef50_D3E2C7 RNA binding protein 0.00210425562608 0.000628310334557 -5.95857226072e+11 +UniRef50_UPI0003DEB96B PREDICTED 5.11596203503e-05 6.93134371095e-05 7328918598.07 +UniRef50_UPI00027F4AD8 0.000561400445783 0.000717068506854 62845106516.3 +UniRef50_N1M8P2 0.000581519728681 0.000299865272711 -1.13707360164e+11 +UniRef50_D3ZUH5 Protein RGD1566084 1.93227575235e-05 9.168420621e-06 -4099430415.27 +UniRef50_Q63NI4 Methionine import ATP binding protein MetN 2 0.000219608050819 8.84523200785e-06 -85087536304.6 +UniRef50_UPI000367D0D4 hypothetical protein 4.00211803659e-05 6.30263613247e-05 9287473858.38 +UniRef50_C0DRQ8 7.96543573264e-05 3.43539445801e-05 -18288332524.3 +UniRef50_UPI0003B3FD89 ribonuclease E 7.87893460917e-06 3.23299969984e-06 -1875620934.93 +UniRef50_Q8CMU9 Protein translocase subunit SecA 2 0.0256575032881 0.00545343430768 -8.15663057919e+12 +UniRef50_D5ALK5 0.00153500836213 0.000563990854904 -3.92011683392e+11 +UniRef50_P33234 HTH type transcriptional regulator AdiY 0.00654895919509 0.00298291729603 -1.43965487491e+12 +UniRef50_UPI0003B59851 alpha amylase 3.27064237454e-06 4.53503308009e-06 510450043.649 +UniRef50_UPI00037EDB2C hypothetical protein 1.07268040385e-05 6.98923856825e-05 23885871353.0 +UniRef50_Q8KE45 UPF0324 membrane protein CT0845 0.000300655877108 0.00147110814645 4.72525944197e+11 +UniRef50_G0DSM5 Phosphotransferase enzyme family protein 0.000335744749695 0.00469595653126 1.76027100203e+12 +UniRef50_UPI00037A1055 hypothetical protein 1.17830562925e-05 7.76230358328e-05 26580407687.8 +UniRef50_A0A059DM35 1.34959902318e-05 7.0976116436e-05 23205432309.1 +UniRef50_O86810 DNA translocase FtsK 0.000221840760214 0.00580795293583 2.2551820346e+12 +UniRef50_Q03PU9 DNA directed RNA polymerase subunit beta 0.000215529640536 0.000156615034484 -23784549426.7 +UniRef50_UPI0003C10113 2.39757844185e-05 4.56746563182e-05 8760100861.01 +UniRef50_W7WPQ3 0.00123012413117 0.00293242250447 6.87238742851e+11 +UniRef50_A7ZTX6 Ketol acid reductoisomerase 0.00262761631757 0.00122262686577 -5.67211482851e+11 +UniRef50_J4SMJ9 0.000101280545124 6.10338767555e-05 -16248073902.5 +UniRef50_Q0SIB7 Hemin import ATP binding protein HmuV 6.2887668822e-06 4.16240961109e-05 14265306022.9 +UniRef50_O32176 Probable acyl CoA dehydrogenase 0.000178909383646 0.000466944115205 1.16283155714e+11 +UniRef50_A7ZKS4 Phosphatase NudJ 0.00502338986561 0.00119605812642 -1.54514078975e+12 +UniRef50_Q6GCC9 Efem EfeO family lipoprotein 0.0119688526748 0.00273928442559 -3.72608996174e+12 +UniRef50_A0A017HGM4 Putative outer membrane lipoprotein 1.14911380274e-05 7.07627926185e-06 -1782332660.06 +UniRef50_UPI000476B824 CpxR 1.38566080968e-05 2.92956886931e-05 6232946295.55 +UniRef50_UPI00046D7612 hypothetical protein 3.63242282101e-06 0.000262616567884 1.04555077455e+11 +UniRef50_L8UE55 PTS system, galactitol specific IIC component 0.0017309970547 0.000388574612093 -5.41952413457e+11 +UniRef50_Q9RTN2 Putative phosphoenolpyruvate synthase regulatory protein 0.000408502003005 0.0270017661622 1.07360270771e+13 +UniRef50_UPI00036E3FCF phospholipase C, partial 4.94717838992e-06 1.49713180762e-05 4046868201.39 +UniRef50_Q6XQN6 Nicotinate phosphoribosyltransferase 3.11684037033e-06 7.58539051349e-06 1804008528.07 +UniRef50_G8T537 Transposase IS66 2.81387596293e-06 4.44976321649e-06 660427758.856 +UniRef50_A0A022H366 Transposase 5.13472494063e-05 0.00268484778297 1.06317648208e+12 +UniRef50_D7DUK5 Tryptophan tRNA ligase 0.00241132256863 0.000333961071697 -8.38656328403e+11 +UniRef50_A5UJH1 0.00266266408825 0.000733240097973 -7.78932141571e+11 +UniRef50_UPI000365D184 hypothetical protein 3.18876760572e-05 0.000207832948651 71031265637.5 +UniRef50_A0A031Z188 Replication initiation protein 0.000245440372718 0.000165475243496 -32282903949.4 +UniRef50_G8R9I8 Secretory antigen SsaA 0.0121556998458 0.000577713106287 -4.67417532461e+12 +UniRef50_D3QGA7 Luciferase like monooxygenase 0.0213540442619 0.00610190014142 -6.1574777463e+12 +UniRef50_H5IJ08 Putative phosphotransferase ydiA domain protein 0.00130167582364 0.000437506229925 -3.48875869536e+11 +UniRef50_UPI0002B461E9 PREDICTED 0.000199899698526 0.000341226561394 57055388815.4 +UniRef50_UPI0003724D90 hypothetical protein, partial 4.04813725308e-05 6.07076929753e-05 8165613768.31 +UniRef50_P07962 Methyl coenzyme M reductase subunit alpha 0.00467328378824 0.000245986392399 -1.78735428775e+12 +UniRef50_A1SJB1 Adenine phosphoribosyltransferase 0.000213268920259 0.0129652779239 5.1481425195e+12 +UniRef50_UPI00036946A1 MULTISPECIES 9.17883611198e-05 8.59461812826e-05 -2358559691.89 +UniRef50_UPI0003C7ADB6 hypothetical protein, partial 1.64130390382e-05 0.000284851560469 1.08371925213e+11 +UniRef50_E6M7L3 0.000521870030673 0.00012431477853 -1.60497933842e+11 +UniRef50_B8ID11 Dihydroorotate dehydrogenase 6.5998345586e-06 8.49687964727e-06 765860381.657 +UniRef50_A0A058Z181 3.89781183141e-07 8.42553071784e-06 3244130696.89 +UniRef50_UPI000378D9D6 MULTISPECIES 0.000121566238292 0.000114130524423 -3001888935.39 +UniRef50_A1V5P8 Nitrite extrusion protein 0.0002059468112 0.000507635054785 1.21795246066e+11 +UniRef50_A0A059MV07 3D trihydroxycyclohexane 1,2 dione hydrolase 7.89169314675e-05 0.00562200671941 2.23781336875e+12 +UniRef50_Q2RS22 Nickel import ATP binding protein NikE 0.00172865639535 0.000343391517665 -5.59248430231e+11 +UniRef50_UPI000475FACA phage tail protein 2.17647527493e-05 3.38772112259e-05 4889948123.58 +UniRef50_I6U0Z2 Transcriptional regulator 0.00534926201181 0.0022149155666 -1.26537412269e+12 +UniRef50_B9KX94 ATPase, ParA type 0.0196446599325 0.00458150337815 -6.08118114669e+12 +UniRef50_G0HAA3 Putative membrane protein 3.27737682008e-05 0.000313172873074 1.13200559521e+11 +UniRef50_B1XW26 Lipoprotein signal peptidase 1.13026914727e-05 2.87216727006e-05 7032256476.64 +UniRef50_B1KEG2 40 residue YVTN family beta propeller repeat protein 0.000107976115006 1.1364668986e-05 -39003226314.0 +UniRef50_K7RRX2 Lipoprotein signal peptidase 0.00044150408053 0.0047975496827 1.75858906429e+12 +UniRef50_G7M388 CoA disulfide reductase 4.59414996592e-05 0.00127761251622 4.97240703688e+11 +UniRef50_E7C400 Fe S oxidoreductase 5.49645143113e-06 1.17585981643e-05 2528105481.36 +UniRef50_D9SNP1 OmpA MotB domain protein 0.0027159816135 0.00187080877618 -3.41206645863e+11 +UniRef50_F2AJ88 0.000402185676218 0.000156094570083 -99349999424.2 +UniRef50_UPI00046577D3 dihydroxy acid dehydratase 4.67397024988e-05 3.10562978799e-05 -6331582901.67 +UniRef50_E3GX46 Triphosphoribosyl dephospho CoA protein 0.0036065429991 0.0015770722748 -8.19322235806e+11 +UniRef50_E6CES2 2.16840228218e-06 0.00649775330824 2.62234733633e+12 +UniRef50_U3P882 0.000114274265039 0.00573424167317 2.26884980742e+12 +UniRef50_L0WHQ4 Short chain dehydrogenase reductase SDR 0.000308845282678 0.00633977153008 2.43475893386e+12 +UniRef50_Q0FGF7 Fe S metabolism associated family protein 0.000207408041022 2.62907580684e-05 -73119269687.5 +UniRef50_UPI0003B39369 hypothetical protein 0.000216455590433 4.52497292161e-05 -69117907105.5 +UniRef50_UPI0003840079 PREDICTED 1.3903645837e-05 6.56049110031e-05 20872435193.4 +UniRef50_UPI00037D595A hypothetical protein 2.97089594838e-06 2.59681137122e-05 9284259018.84 +UniRef50_UPI0003B59F3E iron ABC transporter substrate binding protein 3.34235057783e-05 3.60612104801e-05 1064873756.39 +UniRef50_I1B3N6 0.00109098768827 0.000471597269197 -2.50055512955e+11 +UniRef50_A3CTF1 Nucleoside diphosphate kinase 1.56121172689e-05 1.79321490278e-05 936625291.059 +UniRef50_O27714 Transcription elongation factor Spt5 0.000241462252992 0.000755607774488 2.07566856303e+11 +UniRef50_UPI00047C566A macrolide ABC transporter ATP binding protein 4.11000424037e-06 0.000620222673958 2.48732245318e+11 +UniRef50_A3CMZ5 Dihydrolipoamide acetyl transferase, E2 component, putative 0.00544956103083 0.0021517964312 -1.33134803699e+12 +UniRef50_R7KL80 0.000484204971575 0.00441158866774 1.58553299256e+12 +UniRef50_D0ZSY8 Anti sigma E factor RseA 0.00272039707059 0.00137272082355 -5.44073438777e+11 +UniRef50_UPI00026C6BF8 6 pyruvoyl tetrahydropterin synthase 9.84517308623e-05 0.000220109919488 49114903662.2 +UniRef50_G2I067 DNA gyrase modulator 0.00239704322997 0.000728326609419 -6.73681377172e+11 +UniRef50_O33406 Uptake hydrogenase large subunit 0.0100702773329 0.00212717096976 -3.20672951168e+12 +UniRef50_S4MZL0 0.000143336645087 0.000151696611984 3375021224.65 +UniRef50_Q7A7M5 UPF0324 membrane protein SA0329 0.0217176533114 0.0101676502468 -4.66287797165e+12 +UniRef50_UPI0004778F57 hypothetical protein 2.24821107509e-05 0.000200138698081 71722144396.6 +UniRef50_R7PUY3 0.00239415561391 0.000972995717799 -5.73739689653e+11 +UniRef50_P0A960 Glutamate pyruvate aminotransferase AlaA 0.00290092267126 0.00107226908642 -7.38249892303e+11 +UniRef50_B9KJF9 Flagellar hook protein FlgE 0.000788725468533 0.000302850801117 -1.96153565588e+11 +UniRef50_B4F105 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.000881023632128 0.00817040286877 2.94281184857e+12 +UniRef50_R0XQP3 1.67798834742e-05 2.68246152003e-05 4055181460.55 +UniRef50_A8IEX2 2.31765666474e-05 9.26347065269e-05 28041103416.6 +UniRef50_Q8DUY4 Putative two component membrane permease complex subunit SMU_746c 0.00742575607476 0.00182493819015 -2.26111890978e+12 +UniRef50_Q6FB27 Nitrate reductase, large subunit 9.94325010105e-05 0.00739611194907 2.94575903351e+12 +UniRef50_P74104 Riboflavin biosynthesis protein RibBA 2.87757048937e-05 8.48763930982e-05 22648536261.0 +UniRef50_UPI000262CBE2 tRNA 2 selenouridine synthase 3.04451991156e-05 2.28536840298e-05 -3064787798.5 +UniRef50_K0HTN3 0.000319472344066 0.00636900174076 2.44226925352e+12 +UniRef50_Q8XJE0 Geranyltranstransferase 0.000831550474524 0.000433977193254 -1.60505212421e+11 +UniRef50_UPI0002E69439 hypothetical protein 1.77358706065e-05 8.30491888664e-06 -3807390940.1 +UniRef50_UPI0003B34D8A ribonuclease PH 2.72227797231e-05 6.69047162367e-06 -8289144739.48 +UniRef50_UPI00046F223A hypothetical protein, partial 3.52851272132e-05 0.000159034388654 49959095417.9 +UniRef50_P30860 ABC transporter arginine binding protein 1 0.00406067731075 0.000474638795622 -1.4477277542e+12 +UniRef50_W7VJ75 Fatty acid binding protein 0.000183480753267 0.000157340680608 -10553068107.2 +UniRef50_D1B150 CreA family protein 1.01616129983e-05 1.71288733495e-05 2812768501.68 +UniRef50_B9KJQ4 0.00364493649149 0.000409626445797 -1.30613436716e+12 +UniRef50_UPI00040C080C hypothetical protein 1.95684440754e-05 9.57558559283e-06 -4034239595.58 +UniRef50_UPI0004448111 PREDICTED 4.89139670403e-06 5.95014580189e-06 427430003.119 +UniRef50_P32141 Sulfofructosephosphate aldolase 0.00377029824083 0.0011508679836 -1.05749613887e+12 +UniRef50_UPI000248C1C0 acyl CoA dehydrogenase domain containing protein 5.14947900503e-06 1.1427533118e-05 2534527485.79 +UniRef50_B0V590 0.000510693947458 0.00754407083579 2.83946055906e+12 +UniRef50_W0W629 0.00033839678925 0.000469318901815 52854863437.5 +UniRef50_P96611 Thioredoxin like protein YdbP 0.00297999794683 0.00127474836775 -6.8843018084e+11 +UniRef50_C5N3Y4 XkdX family protein 0.000775656141478 0.00141752018494 2.59128390903e+11 +UniRef50_Q9RDF2 GTPase Era 0.000342251190037 0.00687982472135 2.63929865964e+12 +UniRef50_B9KJN1 0.000317307645012 0.000295688183394 -8728041955.81 +UniRef50_A9BIZ6 Glutamate synthase, NADH NADPH, small subunit 0.0274640610088 0.00878213327488 -7.54212347921e+12 +UniRef50_UPI000479919E phosphoribosylaminoimidazolecarboxamide formyltransferase 2.94591333676e-06 3.16372912258e-05 11583061336.6 +UniRef50_UPI00037E9975 30S ribosomal protein S2 2.05255626578e-05 2.71068196902e-05 2656934225.09 +UniRef50_UPI00037F5062 hypothetical protein 0.00014989529959 3.71726637111e-05 -45507511366.6 +UniRef50_A3M5J5 0.000455529371447 0.00786880308308 2.99282956848e+12 +UniRef50_A0A058ZCQ6 0.000104422126926 8.1692034629e-05 -9176417189.9 +UniRef50_A0NWH9 0.000857712349539 0.00064117767888 -87417703724.3 +UniRef50_E1VQ88 Transcriptional regulator 0.000521844591342 0.00129579706428 3.1245411079e+11 +UniRef50_H5YDF6 8.63204288759e-05 0.000120547869604 13818037839.9 +UniRef50_UPI00037EF636 hypothetical protein 4.24156623778e-05 0.000101588713435 23888886846.8 +UniRef50_UPI00025582F7 aldehyde dehydrogenase 4.13492953149e-05 1.94162164875e-05 -8854653071.77 +UniRef50_C5Q4V1 0.0085010914948 0.00115810472625 -2.96445386704e+12 +UniRef50_UPI000474476C hypothetical protein 2.8642377673e-05 1.34936514644e-05 -6115726666.19 +UniRef50_F0JCL8 0.000136650160722 1.32994108175e-05 -49798211420.2 +UniRef50_B7V9P7 RNA binding protein, putative 0.000807625501377 0.000381995238133 -1.71832160342e+11 +UniRef50_C3TQZ2 Thiamine import ATP binding protein ThiQ 0.00267146684242 0.000632387253784 -8.23201452254e+11 +UniRef50_K9AHZ4 6 pyruvoyl tetrahydropterin synthase 3.03659412023e-05 0.000143730540932 45766680051.1 +UniRef50_P26239 Magnesium chelatase 38 kDa subunit 0.00160119057009 0.000394357039049 -4.87213505994e+11 +UniRef50_L7WEC7 ATG13 multi domain protein 0.000147974074888 1.94054226737e-05 -51904742613.6 +UniRef50_L7WZ17 0.00703156611742 0.00446446055689 -1.03637201671e+12 +UniRef50_H6RCQ6 3.72708499602e-05 4.49166958368e-05 3086721805.46 +UniRef50_UPI0003C42A4B PREDICTED 1.21048607915e-05 0.00119135674826 4.7607845802e+11 +UniRef50_UPI0002D92AB4 excinuclease ABC subunit A 1.12336526902e-06 1.17277901881e-05 4281136470.77 +UniRef50_C5N6A8 Primosomal protein DnaI 0.0125825112181 0.00359176041581 -3.6296764278e+12 +UniRef50_UPI0001D2E559 AraC family transcriptional regulator 0.000498413298512 0.000130111790902 -1.4868783819e+11 +UniRef50_I6XQ31 Major ampullate silk protein 1 7.49712955625e-05 2.91066961843e-05 -18516101590.9 +UniRef50_UPI000466460D hypothetical protein 2.92983877879e-05 0.000129589420485 40488720609.1 +UniRef50_UPI00046FD040 TetR family transcriptional regulator 2.76536573302e-05 7.93912806693e-05 20887113434.0 +UniRef50_R7PSI9 Adhesin like protein 0.00419591326205 0.000431876156779 -1.51958796933e+12 +UniRef50_Q99R75 Dehydrosqualene synthase 0.0124457164121 0.0031388646772 -3.75729025329e+12 +UniRef50_Q58730 Putative UTP glucose 1 phosphate uridylyltransferase 0.000197650782571 0.000101780333973 -38704076561.7 +UniRef50_U7IYF3 0.000440645123179 0.00105160987611 2.46653968139e+11 +UniRef50_X0XJV9 Marine sediment metagenome DNA, contig 0.000487124451429 0.00021535575781 -1.09716356591e+11 +UniRef50_UPI0003753443 hypothetical protein 5.9234878654e-06 4.09400099948e-06 -738586298.1 +UniRef50_UPI000362D291 hypothetical protein 1.98247170144e-05 0.000149364125737 52296648928.8 +UniRef50_Q8P0D4 Superoxide dismutase [Mn] 1.0760164393e-05 3.43225837357e-05 9512437832.05 +UniRef50_Q2YX92 High affinity heme uptake system protein IsdE 0.00945460577931 0.00128149805755 -3.29958388258e+12 +UniRef50_A0A059ITV9 3.2647470543e-05 0.000178830144151 59015739198.7 +UniRef50_O26254 Methyl coenzyme M reductase system, component A2 homolog 0.00244655021471 0.000830909189524 -6.52254108014e+11 +UniRef50_UPI00047B06F8 glyoxylate reductase 1.40047515937e-05 9.20334966499e-06 -1938384878.45 +UniRef50_UPI00023753A7 FAD dependent oxidoreductase, partial 4.09417910627e-05 2.0344674525e-05 -8315308701.31 +UniRef50_T1XU32 Lipoprotein, putative 3.31923274171e-05 6.64203869765e-05 13414575398.3 +UniRef50_L7TP46 5.67569622804e-05 4.209882153e-05 -5917671296.55 +UniRef50_UPI00037C0C48 hypothetical protein 4.02294012448e-06 0.000751431919193 3.0173817659e+11 +UniRef50_UPI000466A942 hypothetical protein 6.19738943776e-06 1.97472116324e-06 -1704743000.39 +UniRef50_X1XR73 8.19424930871e-06 3.40148926758e-06 -1934896042.38 +UniRef50_UPI000382799A hypothetical protein, partial 3.02858159622e-05 2.21170516455e-06 -11333863037.1 +UniRef50_W1MW06 7.58326625022e-05 7.41787279937e-05 -667713657.14 +UniRef50_E8SHT5 8.36408920982e-05 9.93180775617e-05 6329072152.31 +UniRef50_W0A6S5 2.4732936121e-05 1.50521049613e-05 -3908270336.33 +UniRef50_D3QYX7 Leucine tRNA ligase 0.000478640917691 0.00100100136565 2.10883322925e+11 +UniRef50_Q9RXI9 Serine cycle enzyme, putative 0.000176395321898 0.036435498939 1.46382450795e+13 +UniRef50_UPI000469863D transcriptional regulator 0.00113370293364 0.000372560645709 -3.07282481904e+11 +UniRef50_X5DRL9 Nitroreductase family protein 0.00788957150914 0.00230825328073 -2.25324665929e+12 +UniRef50_S5E3S7 ABC transport protein permease component 0.00492901755771 0.000670635845474 -1.71916095345e+12 +UniRef50_O27918 Phosphopantetheine adenylyltransferase 0.00227029796111 0.0112875923052 3.64039238135e+12 +UniRef50_R5TNC8 0.000784342483387 0.0010411170146 1.03663029229e+11 +UniRef50_UPI00036F39E5 hypothetical protein 3.72269442025e-06 1.78175480315e-05 5690265366.19 +UniRef50_C8S4K0 2.91383894493e-05 3.63018564145e-05 2891979519.48 +UniRef50_Q96RQ3 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.51743658583e-06 8.27836749323e-06 2325758501.89 +UniRef50_UPI00046231D8 hypothetical protein, partial 4.47373488591e-05 3.63930832826e-05 -3368682408.89 +UniRef50_H3V6W0 Ornithine cyclodeaminase domain protein 0.000802447279365 0.000308927216958 -1.99240105366e+11 +UniRef50_UPI000471846E hypothetical protein 0.000808383915555 0.000278164153082 -2.14056224639e+11 +UniRef50_UPI000372055F 50S ribosomal protein L6, partial 0.000229646599554 4.01649805326e-05 -76496054799.7 +UniRef50_D4GJK9 Protein CreA 2.11603448256e-05 1.66001093677e-05 -1841023014.74 +UniRef50_F7XFL7 0.00351030479105 0.000506228361158 -1.21278251891e+12 +UniRef50_Q2RZH4 Thymidine kinase 1.63990413481e-05 1.27587419518e-05 -1469633537.78 +UniRef50_C6XKW1 Cytochrome c type biogenesis protein CcmB 0.000524761460416 0.00144178507883 3.70213687899e+11 +UniRef50_UPI0003503A2D PREDICTED 0.000101293199152 4.26478368962e-05 -23675852402.2 +UniRef50_Q99707 Methionine synthase 1.75343293271e-05 3.65250306683e-05 7666779173.55 +UniRef50_B0JUG8 Bifunctional protein PyrR 4.19995227598e-05 9.26584859952e-05 20451645113.5 +UniRef50_Q81G11 3 isopropylmalate dehydrogenase 4.06080723244e-05 0.00375632999248 1.5000825362e+12 +UniRef50_UPI0004730E10 50S ribosomal protein L22, partial 6.11187045318e-05 1.9772129883e-05 -16692119565.2 +UniRef50_A0A050BZL5 PE PGRS family protein PE_PGRS6 9.90555305202e-06 8.87609487572e-05 31834890910.7 +UniRef50_A7ZRN9 UPF0114 protein YqhA 0.00114947692097 0.000719554135001 -1.73565104442e+11 +UniRef50_UPI000345BBD3 hypothetical protein 1.5878632622e-05 3.04966947543e-06 -5179209851.36 +UniRef50_UPI00036781FF hypothetical protein 5.40088668938e-06 5.55655161902e-06 62843842.3192 +UniRef50_UPI000470525C spore coat protein 7.15587442686e-05 1.18755178693e-05 -24094850892.9 +UniRef50_U5L7I3 Topology modulation protein 9.81988046651e-06 9.7325116865e-05 35326937744.1 +UniRef50_UPI000475A3D2 dehydrogenase 3.3322310886e-05 2.61722457796e-05 -2886569024.62 +UniRef50_R9VB07 0.000481015811204 0.000361871881834 -48099866347.1 +UniRef50_UPI0003336D92 PREDICTED 5.76799049574e-05 0.000178613785405 48822491562.5 +UniRef50_A0A017HNY0 Dipeptide transport system permease protein DppC 1.54081792102e-05 2.46237879085e-05 3720454319.74 +UniRef50_UPI0003771DAE hypothetical protein 1.38375321028e-05 3.25235487128e-05 7543774208.67 +UniRef50_UPI00047A9CE7 luciferase 4.79947006276e-05 2.65037645741e-05 -8676154608.24 +UniRef50_G7M9S8 UvrD REP helicase 0.000342980682439 0.000505095641597 65447798386.3 +UniRef50_P06864 Evolved beta galactosidase subunit alpha 0.000558951884317 0.000135792327377 -1.70834705888e+11 +UniRef50_B7V1N9 Arylamine N acetyltransferase 0.000609376081685 0.000993901661408 1.55237695194e+11 +UniRef50_E8U3M5 0.000146371138664 0.00223672922498 8.43903211026e+11 +UniRef50_C9XJX6 DeoR family transcriptional regulator 0.000381265006881 0.000926405262164 2.20079810681e+11 +UniRef50_P38105 Starvation sensing protein RspB 0.00092003925548 0.000239445977193 -2.74763858263e+11 +UniRef50_A4XE82 0.000223954181186 8.16530038662e-05 -57448731515.9 +UniRef50_A6DYV9 0.000454725954148 6.14241866327e-05 -1.58780749901e+11 +UniRef50_W3E224 0.000471875732651 0.0119228382227 4.62289407632e+12 +UniRef50_P24270 Catalase 1.84643067649e-05 4.42845313411e-05 10423941511.2 +UniRef50_UPI0003B51789 ABC transporter 5.41035393606e-06 9.90539939411e-06 1814705011.83 +UniRef50_A3CNT7 Histidinol phosphate aminotransferase 0.00471494331624 0.000470108519721 -1.71369189734e+12 +UniRef50_Q8EKI8 L seryl tRNA selenium transferase 0.00236470531243 0.000815652915127 -6.25371461801e+11 +UniRef50_Q5KBM9 Chaperone, putative 4.78670042144e-06 5.54404161357e-06 305747932.884 +UniRef50_A0PXA5 Glutamate 5 kinase 9.99925997383e-06 1.28847315179e-05 1164900271.06 +UniRef50_B0S912 DNA gyrase subunit A 2.10379307511e-06 2.56744734136e-06 187182916.963 +UniRef50_UPI0003B5B207 oxidoreductase 6.56698444893e-05 0.000163746378186 39594700187.8 +UniRef50_UPI00037350A3 hypothetical protein 4.78316257745e-06 1.21223713726e-05 2962928652.82 +UniRef50_UPI000225FBCC resolvase domain containing protein 7.58755049498e-05 4.54064440993e-05 -12300733762.8 +UniRef50_Q9HZQ2 Protein CobW 0.00114708357177 0.000160063254856 -3.9847221404e+11 +UniRef50_I9CAP4 3 oxoadipate enol lactonase 3.24882497161e-06 3.01667808584e-05 10867109112.0 +UniRef50_S5CZX0 Site specific DNA methylase 9.5244572462e-05 0.0061648714253 2.45038284319e+12 +UniRef50_A1U4W5 5.30977397964e-06 1.62822857141e-05 4429737635.08 +UniRef50_P76577 Penicillin binding protein 1C 0.00180664128352 0.000317607508622 -6.01141207426e+11 +UniRef50_L7WU63 0.0116410636345 0.00675195025273 -1.97379506839e+12 +UniRef50_F0MRE3 Di tripeptide transporter 0.000159326034159 0.005186442751 2.02950870825e+12 +UniRef50_UPI000262D0B4 flagellin FliC 6.13210018968e-06 2.74781586998e-06 -1366277109.7 +UniRef50_W5X9X7 Transcriptional regulator, LacI family 2.83040555723e-06 9.71265952894e-06 2778450383.13 +UniRef50_P24395 Ribulose bisphosphate carboxylase small chain 0.000558864572034 7.55699860657e-05 -1.95111955047e+11 +UniRef50_UPI0003346733 PREDICTED 0.000121085031761 9.32579069084e-05 -11234151780.2 +UniRef50_Q3IW03 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.0107570601971 0.00246356419112 -3.34818611025e+12 +UniRef50_P45946 Arsenite resistance protein ArsB 0.000223781255477 0.00116460884001 3.79823641129e+11 +UniRef50_U6N0Z9 1.8112517712e-05 1.40591220251e-05 -1636405579.56 +UniRef50_A0A059II46 0.000122713958859 4.04595479601e-05 -33207115055.0 +UniRef50_K0K2V8 1.64040255787e-05 0.000650945692359 2.56172257581e+11 +UniRef50_B9J7R7 Biphenyl 2,3 diol 1,2 dioxygenase protein 0.000758523593186 0.000955646635363 79580991098.6 +UniRef50_B6IN07 DNA directed RNA polymerase subunit omega 0.0117925885861 0.000504814880674 -4.55701276143e+12 +UniRef50_Q2Y5B3 Transposase 0.000114814081331 3.85161526286e-05 -30802410098.0 +UniRef50_P37682 0.00170879567553 0.00153979637747 -68227090481.4 +UniRef50_V5VC89 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00011069970347 0.00689038510508 2.73704219273e+12 +UniRef50_UPI00047A404B hypothetical protein 7.19443627514e-05 8.73330694941e-05 6212609752.7 +UniRef50_A5UP62 0.00398338138838 0.000205081045272 -1.52534621347e+12 +UniRef50_A5UP68 0.00425861482496 0.00110824643173 -1.27184237971e+12 +UniRef50_C0F8A8 1.04771205441e-05 3.33111398848e-05 9218373812.77 +UniRef50_Q9K0Y0 D alanine D alanine ligase 0.000180041012167 0.00316280294963 1.20417759676e+12 +UniRef50_C6CBJ2 Oligogalacturonide transporter 0.000679211324629 0.000517283158157 -65372387886.8 +UniRef50_UPI00036B05F9 3 oxoacyl ACP synthase, partial 2.46719458646e-05 2.77174566258e-05 1229510066.92 +UniRef50_A5UND0 Glycosyltransferase, GT2 family 0.00122484785614 0.000211191922662 -4.09225339303e+11 +UniRef50_E6MVK2 0.00020760016828 0.00349054217588 1.3253639747e+12 +UniRef50_Q9JX72 Glutamate ammonia ligase adenylyltransferase 0.000250119878552 0.00533423663274 2.05252032279e+12 +UniRef50_K4NHA2 1.16589878896e-05 0.00243052574325 9.76526191972e+11 +UniRef50_A0A011QY25 Efflux pump membrane transporter BepE 2.25934219017e-06 1.27492102803e-05 4234888473.13 +UniRef50_P09738 Superoxide dismutase [Mn Fe] 0.00440846237805 0.000295809721398 -1.66032834541e+12 +UniRef50_UPI0003B50A76 amino acid ABC transporter substrate binding protein 1.66894735227e-05 0.000335954684364 1.28891283441e+11 +UniRef50_UPI0004771768 hypothetical protein 0.000309560423554 8.40756064081e-05 -91030987691.7 +UniRef50_UPI0004678EBB deoxyguanosinetriphosphate triphosphohydrolase 0.000525484613408 0.000179797292587 -1.39558213476e+11 +UniRef50_Q4L427 Transcriptional regulator, MerR family 0.00923102738949 0.00369732422525 -2.23402387358e+12 +UniRef50_X6LEJ6 TRAP transporter solute receptor TAXI family 7.26158795454e-05 8.13822762045e-06 -26030419311.8 +UniRef50_E1HGR2 0.000117080946541 0.00016150196213 17933309100.4 +UniRef50_UPI0004630420 hypothetical protein 0.000397912864204 6.92754584126e-05 -1.32674953552e+11 +UniRef50_L7ZH95 23S rRNA C(5)) methyltransferase RlmD 0.00169059228849 0.000139409931648 -6.26231352604e+11 +UniRef50_Q3JXF7 0.000517711979141 0.000450912390201 -26967813778.2 +UniRef50_L0DDS9 4.45388448999e-05 1.97688750795e-05 -9999940778.21 +UniRef50_UPI00036A6475 hypothetical protein 3.32216469351e-06 1.1489147511e-05 3297111183.57 +UniRef50_Q6FMA3 FK506 binding protein 1 2.56242208789e-05 2.54615525616e-05 -65671195.8587 +UniRef50_Q8XIA9 4 diphosphocytidyl 2 C methyl D erythritol kinase 7.00229050575e-06 0.00185288478188 7.45205413291e+11 +UniRef50_S6NZ74 Glutamate synthase subunit alpha 0.000832536924097 0.000171712920262 -2.66782759571e+11 +UniRef50_Q9A311 UPF0301 protein CC_3395 2.99959277185e-05 4.42806576127e-05 5766920751.64 +UniRef50_UPI0000E0EE96 pilus modification protein PilQ 3.72083720051e-06 5.95912215987e-06 903623104.939 +UniRef50_U5MRW2 NADP reducing hydrogenase subunit HndC 0.000623306056286 0.00111669668042 1.99187849547e+11 +UniRef50_R7YUC0 3.43544959394e-06 0.000664092128154 2.66715208304e+11 +UniRef50_A7C4B4 Short chain dehydrogenase reductase SDR 8.70939128307e-05 0.000293626980776 83379933975.1 +UniRef50_Q88VE3 Probable GTP binding protein EngB 0.0116139307511 0.00660061792373 -2.02393590868e+12 +UniRef50_I1W617 Metallo beta lactamase superfamily domain protein 0.00201748141082 0.00041760732602 -6.45888800697e+11 +UniRef50_UPI000414FA05 zinc iron permease 3.77930202926e-05 3.1825321008e-06 -13972678801.5 +UniRef50_UPI00036EBE75 hypothetical protein 1.88452011993e-06 6.61182397139e-05 25931940836.5 +UniRef50_X1Y0Y0 4.84327477355e-05 1.40307477007e-05 -13888509574.1 +UniRef50_V2HBE7 Cupin 0.000102347497237 4.19141480811e-05 -24397684654.8 +UniRef50_Q92CE4 Glutamate 5 kinase 0.00339997043709 0.00320433582191 -78980094854.9 +UniRef50_UPI00039CB03A acyltransferase 0.000408737690532 1.90287745902e-05 -1.57330271632e+11 +UniRef50_D6AF37 0.000205663650323 0.000191320549107 -5790485970.54 +UniRef50_A6LRK6 Dephospho CoA kinase 0.000797261735345 0.000596599404435 -81009845392.1 +UniRef50_C5YML5 0.000405931280309 0.000825486054037 1.6937941067e+11 +UniRef50_R7A629 Cell division ATP binding protein FtsE 0.0033693416474 0.000744495895456 -1.05968244054e+12 +UniRef50_UPI00037DADC1 hypothetical protein 2.3292794874e-05 2.43865324165e-05 441555267.576 +UniRef50_P29131 Cell division protein FtsN 0.00324220939089 0.000191556781752 -1.23158589403e+12 +UniRef50_Q4KEZ9 N anthranilate isomerase 1.02601007952e-05 0.000153595595735 57866298231.6 +UniRef50_D2UBU1 1.35609470921e-05 2.05937536237e-05 2839230299.05 +UniRef50_UPI000376D12A hypothetical protein 1.35131977267e-05 5.98374563722e-06 -3039732205.29 +UniRef50_D3QIX9 0.0177761571934 0.0058410180758 -4.8183621224e+12 +UniRef50_UPI00039B183B helicase 4.84121768405e-06 0.000595745423049 2.38555278916e+11 +UniRef50_UPI000374642A hypothetical protein 1.40557262107e-05 2.68987008473e-05 5184866461.82 +UniRef50_R7YU19 0.0193059569459 0.00171026331519 -7.10359744216e+12 +UniRef50_A0A028ILN1 0.00014334910969 0.00390258783748 1.51765080546e+12 +UniRef50_F0RMH9 Thioredoxin reductase 0.00025679318969 0.0541254570811 2.17474406558e+13 +UniRef50_Z1D1L3 Serine aspartate repeat containing protein D 0.000711333053306 4.42311590482e-05 -2.69317220973e+11 +UniRef50_UPI0003B4CF71 30S ribosomal protein S3 0.00119208161134 0.00240161280902 4.8830258712e+11 +UniRef50_P43850 N5 carboxyaminoimidazole ribonucleotide synthase 0.00459312406955 0.00231689491927 -9.18941640441e+11 +UniRef50_P0AEB8 RutC family protein YoaB 0.00164124342979 0.000504814880674 -4.58790150826e+11 +UniRef50_G8QQ16 Aminoacyl histidine dipeptidase 0.000273872777893 0.00773616953062 3.01262077176e+12 +UniRef50_K0F919 Phosphate transporter 0.000104181965648 0.0040015074312 1.573398116e+12 +UniRef50_Q9RSU4 0.000216117932552 0.0656287083932 2.64078654717e+13 +UniRef50_R7NVL6 AICARFT IMPCHase bienzyme 0.000421321216007 0.00715609365736 2.71891027952e+12 +UniRef50_E6N0K4 0.000252062366568 0.0114387395791 4.51619886665e+12 +UniRef50_Q4L628 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00892515031597 0.00127224663586 -3.08957112735e+12 +UniRef50_K1YQK0 3.42969770403e-06 1.77146092217e-05 5766994075.27 +UniRef50_A4XID9 Type II secretion system protein E 0.000333745068237 0.00117734964386 3.40573519371e+11 +UniRef50_B9DL96 SirB protein 0.0097181349086 0.00476879152068 -1.99811066098e+12 +UniRef50_UPI0003B65A97 hypothetical protein 5.39663444561e-06 9.23655686496e-06 1550223801.84 +UniRef50_A6LWV9 Transcription activator, effector binding 0.000144815596745 0.000665487067368 2.10201462048e+11 +UniRef50_UPI0003AD00EB ABC transporter permease 3.92971143175e-05 5.26471030416e-05 5389554270.7 +UniRef50_UPI00029A0867 HNH endonuclease 5.87356667664e-05 4.1660811939e-05 -6893328425.85 +UniRef50_A4WUM0 HAD superfamily hydrolase, subfamily IIA 0.00449822119752 0.000302372053093 -1.69391578847e+12 +UniRef50_Q0JN66 Os01g0323600 protein 3.17616105306e-05 4.20974276115e-05 4172696190.3 +UniRef50_UPI000425885C ABC transporter 3.09085322094e-05 2.66990219196e-05 -1699430960.49 +UniRef50_A6LPJ7 PpiC type peptidyl prolyl cis trans isomerase 0.000323461863408 0.00278205206636 9.92563035225e+11 +UniRef50_UPI000376B01F hypothetical protein 6.6838362273e-05 1.18580684616e-05 -22196219295.7 +UniRef50_P62904 Transposase from transposon Tn1545 0.00532791552797 0.000814460075612 -1.82213735244e+12 +UniRef50_UPI00036D74AB hypothetical protein 9.88637148125e-05 3.22523867407e-05 -26891810555.5 +UniRef50_P03740 Tail fiber assembly protein 0.00206508142092 0.000576033462575 -6.01146933455e+11 +UniRef50_UPI00036AE08D hypothetical protein 9.23186072931e-05 1.23849710268e-05 -32270189856.7 +UniRef50_UPI000349BBCB transcription factor WhiB 2.5334135078e-05 5.19309771244e-05 10737471514.1 +UniRef50_UPI0003B720CE peptide ABC transporter permease 2.2812624769e-05 5.79208003795e-05 14173601319.7 +UniRef50_Q8Z8G7 Apolipoprotein N acyltransferase 0.00243975478069 0.000702461648296 -7.0136655653e+11 +UniRef50_A6LY96 0.000898789562983 0.00237157264769 5.94580604378e+11 +UniRef50_UPI00037F0E4A hypothetical protein 3.51002513324e-06 0.00127236295714 5.12251499229e+11 +UniRef50_Q0FWM3 0.000293846080516 7.5679153973e-05 -88076665454.7 +UniRef50_UPI000372A004 30S ribosomal protein S11 0.000174453712998 0.000705832061959 2.14523960221e+11 +UniRef50_UPI000406AC71 hypothetical protein 9.85958385394e-06 4.69188527309e-05 14961281614.0 +UniRef50_P44931 tRNA specific adenosine deaminase 1.28912553334e-05 4.2527082994e-05 11964347299.1 +UniRef50_UPI00047200C5 hypothetical protein 0.000155033439847 3.11189660221e-05 -50025793684.7 +UniRef50_C5A6Q6 tRNA binding protein, putative 0.002692523666 0.000680971069289 -8.12088467818e+11 +UniRef50_UPI000476F5C1 hypothetical protein 9.6427293307e-06 1.22285426599e-05 1043924572.5 +UniRef50_F3SBC7 0.000979394828674 0.000706552584989 -1.10149761926e+11 +UniRef50_UPI000467C7DA hypothetical protein 0.000373442604188 7.80074132817e-05 -1.19270811966e+11 +UniRef50_UPI000348A11C hypothetical protein 1.3152696482e-05 9.59639051888e-06 -1435724358.09 +UniRef50_Q8Y3E7 Acetylglutamate kinase 4.15455675846e-05 1.55582899729e-05 -10491382871.6 +UniRef50_P76162 0.00357079995732 0.00202340442568 -6.24702564802e+11 +UniRef50_UPI000316A923 hypothetical protein 7.09646976444e-06 5.05677696507e-05 17549897216.9 +UniRef50_T5D7P0 1 pyrroline 5 carboxylate dehydrogenase 0.000161736894571 0.00404711962454 1.5685766871e+12 +UniRef50_D9SWK1 MmpL domain containing protein 0.000346577486773 0.000998418597716 2.63156255478e+11 +UniRef50_F3ZHY8 Putative lipoyl synthase 1.46141785711e-05 0.000256734126088 97746793958.5 +UniRef50_Q2P1U6 Lysine tRNA ligase 0.00388062588244 0.0111181477765 2.92187640301e+12 +UniRef50_UPI0001D2F0AE putrescine spermidine ABC transporter substrate binding protein 4.94423994687e-05 0.000156918570774 43389449236.8 +UniRef50_S5XYD0 Type I secretion outer membrane protein, TolC 0.00184104795783 0.000285970248103 -6.27803954367e+11 +UniRef50_P71242 Colanic acid biosynthesis protein WcaK 0.00403863322402 0.00280416529586 -4.98369851223e+11 +UniRef50_A6LXV6 Xylan 1,4 beta xylosidase 0.000281514035724 0.000435633401281 62219879132.7 +UniRef50_K2CIP8 0.000287434078471 0.000272519277143 -6021288321.31 +UniRef50_F3Z911 Putative LysR family transcriptional regulator 6.46449363503e-06 8.63963822913e-06 878132564.664 +UniRef50_K0H1B5 0.000199026004668 0.00477943069043 1.84916557953e+12 +UniRef50_UPI0003A37396 spermidine putrescine ABC transporter substrate binding protein 2.1858112165e-05 0.000140247148855 47795106908.6 +UniRef50_UPI0003F726C9 5 methyltetrahydrofolate homocysteine methyltransferase 2.5703228032e-06 9.44013082095e-05 37073295701.4 +UniRef50_UPI00036FE7ED hypothetical protein 3.82274812346e-06 7.5605265184e-06 1508987005.74 +UniRef50_P07738 Bisphosphoglycerate mutase 6.93865428391e-06 1.08268953876e-05 1569730647.64 +UniRef50_UPI000365C798 Cro Cl family transcriptional regulator 0.000149950899505 1.89136212394e-05 -52901357244.2 +UniRef50_A7X393 Glutamyl tRNA reductase 0.0224842324256 0.00773057805568 -5.95623131683e+12 +UniRef50_Q5JFN5 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.43601521343e-05 1.41923253337e-05 -67753738.8687 +UniRef50_UPI0003B3B62E iron ABC transporter permease 2.72473713082e-05 3.73991359144e-05 4098391947.68 +UniRef50_Q55498 N5 carboxyaminoimidazole ribonucleotide mutase 6.79865379295e-05 0.00128191708905 4.9007866009e+11 +UniRef50_UPI000479DC3A hypothetical protein 1.23714420198e-05 1.91842564612e-05 2750416792.63 +UniRef50_Q4K8R5 ErfK YbiS YcfS YnhG family protein 0.000162709477954 0.000256425503788 37834309654.1 +UniRef50_UPI00047C9C40 hypothetical protein 2.92911779603e-05 9.24224415084e-06 -8094000606.98 +UniRef50_P13061 Periplasmic [NiFe] hydrogenase small subunit 7.69108722329e-05 1.8856320254e-05 -23437335043.3 +UniRef50_B1J449 Peptidase M23B 0.000162943592314 0.000575097842339 1.66391728436e+11 +UniRef50_B9DQ98 Processive diacylglycerol beta glucosyltransferase 0.0198464767666 0.00675950586718 -5.28337074728e+12 +UniRef50_R5FWD3 Ribokinase family Sugar kinase 0.000134496195558 0.0034156083976 1.32462525974e+12 +UniRef50_A8YNI5 Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328 0.0105982934744 0.00114121458492 -3.81793879909e+12 +UniRef50_M7DS31 Surfactin synthetase 0.00450390897081 0.00161306756 -1.16706815216e+12 +UniRef50_P0AFE2 NADH quinone oxidoreductase subunit J 0.00137227545386 0.000921880746498 -1.81829870327e+11 +UniRef50_P21649 Protein MrkE 0.00217848286038 0.000242062873115 -7.81756511406e+11 +UniRef50_F1B2P1 8.58316077885e-05 0.000184389507422 39789033523.5 +UniRef50_UPI00047188E0 hypothetical protein 1.89694365947e-06 8.47390249912e-05 33444364820.3 +UniRef50_Q59679 Superoxide dismutase [Mn] 8.98493947876e-06 0.000101625309855 37400054346.1 +UniRef50_UPI000466807B hypothetical protein 3.08554171336e-05 9.31008585714e-05 25129248545.9 +UniRef50_E6NJW8 Poly E rich protein 9.72902033113e-05 0.0016157725006 6.13029937289e+11 +UniRef50_Q9RRU7 Lipoprotein signal peptidase 0.000210886027289 0.0589720930584 2.37226203596e+13 +UniRef50_I4CUQ3 1.19451267234e-05 2.52492187934e-05 5371025228.23 +UniRef50_UPI00046AEF9B ABC transporter ATP binding protein 3.94553123196e-06 1.06847874475e-05 2720720434.19 +UniRef50_E1ZBZ0 2.86716874178e-05 1.71968047086e-05 -4632550962.35 +UniRef50_Q6BX45 FK506 binding protein 1 2.33589223222e-05 3.98636179738e-05 6663148169.94 +UniRef50_A6LTL3 0.00065137301791 0.00190684295112 5.06848618385e+11 +UniRef50_F0YG09 Expressed protein 7.80565758921e-05 0.000157820203341 32201555210.9 +UniRef50_UPI0001744DA7 translation initiation factor IF 3 0.000105004466992 0.000159689471882 22077007534.6 +UniRef50_P76010 Flagellar brake protein YcgR 0.00241238935191 0.00105097769196 -5.49618593522e+11 +UniRef50_V4JQ05 0.00420718582365 0.00155030985672 -1.07261343138e+12 +UniRef50_Q5LX99 TPR domain protein 0.00430307842293 0.00109205905205 -1.29632792366e+12 +UniRef50_X5EHV6 0.0101430927956 0.00457866986304 -2.24642582102e+12 +UniRef50_E8QKL2 0.000227368276202 0.00251283127724 9.22669459305e+11 +UniRef50_UPI000329FDA5 6.54716222631e-05 7.12910084452e-05 2349357613.61 +UniRef50_B9TMP8 1.30933047694e-05 2.87360192984e-05 6315155813.05 +UniRef50_X2LS39 Ribonuclease E 0.00274999332299 0.00138714312318 -5.50199349716e+11 +UniRef50_W4HN66 5.19164956879e-05 6.44240431552e-06 -18358448716.9 +UniRef50_Q8DKV8 Tlr0743 protein 4.3262647894e-05 5.04287455258e-05 2893041551.86 +UniRef50_UPI0004795C04 hypothetical protein 6.7156382041e-06 1.66941434042e-05 4028444999.31 +UniRef50_UPI00046D9877 hemolysin, partial 4.51711379703e-06 6.18913240484e-05 23162672739.2 +UniRef50_E6V9U6 3.22811072996e-07 2.8967950797e-06 1039148929.84 +UniRef50_Q6FFH7 0.000321496728861 0.00978488556199 3.82048620077e+12 +UniRef50_A6LW46 Ppx GppA phosphatase 0.000290597391961 0.000496017377705 82930569031.5 +UniRef50_C4Z2C3 0.000933193774585 0.00320042020036 9.15307130084e+11 +UniRef50_UPI000471C2D7 hypothetical protein 8.11991646648e-06 7.91676388818e-06 -82015188.8222 +UniRef50_F0RP65 Peptidase S41 8.4574904144e-05 0.0229642203728 9.23679364054e+12 +UniRef50_S4XIK9 Iron ABC transport system substrate binding protein 1.01346881533e-05 3.39299526337e-05 9606440271.47 +UniRef50_UPI0003013893 hypothetical protein 1.40359868907e-05 2.16174082945e-05 3060712855.22 +UniRef50_A3PJZ0 LPS assembly protein LptD 0.00356102265516 0.00172213444474 -7.42381736242e+11 +UniRef50_UPI00036BEF36 hypothetical protein 3.54152569162e-05 0.000235044337973 80592709747.0 +UniRef50_Q8X7J5 Multidrug resistance protein MdtA 0.00266231431142 0.00160990403123 -4.24870944639e+11 +UniRef50_I3THN2 Dehydrogenase 0.0022161951311 0.00132104325577 -3.61383796819e+11 +UniRef50_P42463 Acetolactate synthase large subunit 1.69097736512e-05 0.00230555534205 9.23954300802e+11 +UniRef50_UPI00047BA501 hypothetical protein 4.02117844229e-05 5.56810994926e-05 6245152323.48 +UniRef50_UPI000328B2BB PREDICTED 4.248480136e-06 4.92893816057e-06 274709254.678 +UniRef50_UPI0003799127 hypothetical protein 0.000732633833179 5.45869184791e-05 -2.73735860036e+11 +UniRef50_A5UMH3 Predicted ATPase, AAA+ superfamily 0.00213266956327 0.000781683078755 -5.45409822265e+11 +UniRef50_UPI0000164CF9 ferredoxin, putative, partial 0.000187493040823 0.0468189019154 1.88256719944e+13 +UniRef50_UPI0003668456 hypothetical protein 4.24703662581e-06 1.22141981353e-05 3216440869.45 +UniRef50_Q818I1 Superoxide dismutase [Mn] 1 2.02637594056e-05 8.74674783861e-05 27130966034.8 +UniRef50_UPI00046F3B88 hypothetical protein 4.25430876693e-05 3.23861634539e-05 -4100474945.23 +UniRef50_UPI00047E80CF hypothetical protein 0.000108843291093 6.88861501375e-05 -16131188133.0 +UniRef50_P0AEN0 Cystine binding periplasmic protein 0.00191394142 0.000454046998212 -5.89377292996e+11 +UniRef50_B1JXE0 6.66348875595e-05 0.000173290188611 43058053842.0 +UniRef50_A4WSN3 Transcriptional regulator, TetR family 0.0105358659897 0.00224653346222 -3.34650526289e+12 +UniRef50_D9REU8 Poly alpha glucosyltransferase 0.0079873345677 0.00342822467136 -1.84056861172e+12 +UniRef50_R9ZGV6 ABC transporter substrate binding protein 0.000676826074404 0.000371851407592 -1.23122015452e+11 +UniRef50_O25046 Adenosine deaminase 0.000205867189564 0.00310145812432 1.16898559326e+12 +UniRef50_P0AFU3 0.00381426467027 0.000577873072428 -1.30657100304e+12 +UniRef50_G7M452 Integral membrane sensor signal transduction histidine kinase 0.000266786014426 0.000639492970865 1.50466371943e+11 +UniRef50_Q02LE1 0.0002066529136 1.30307797212e-05 -78167631457.7 +UniRef50_D4KM36 Dihydroxyacid dehydratase phosphogluconate dehydratase 0.000176811119401 0.00218247055578 8.09709326676e+11 +UniRef50_Q17XN9 Aspartate carbamoyltransferase 0.000265418137248 0.00284269616841 1.04047876794e+12 +UniRef50_G8NMF7 Oligopeptide ABC transporter, permease protein 0.00873258730521 0.00163441828101 -2.8656179394e+12 +UniRef50_B2UX24 Histidinol phosphate aminotransferase 0.000541329825509 0.00258933431853 8.26804545673e+11 +UniRef50_UPI00037E9746 hypothetical protein, partial 2.69602660008e-07 6.08557227832e-06 2347978304.88 +UniRef50_G8QIK2 Cysteine synthase 0.000373664887828 0.000486087065181 45386212572.7 +UniRef50_W8S4A8 2.83022467878e-05 0.000186553295655 63887890386.4 +UniRef50_N2L427 CSS motif domain associated with EAL family protein 0.000367681157978 0.000379421891038 4739878011.32 +UniRef50_UPI0003B5F916 ABC transporter ATP binding protein 6.22119388654e-05 2.25546934608e-05 -16010116619.0 +UniRef50_A7X5Y6 Heme sensor protein HssS 0.020711942119 0.00680491665805 -5.614436837e+12 +UniRef50_M1VXV3 Related to ECM4 protein 0.000100020510852 1.49171220093e-05 -34357282411.8 +UniRef50_H8H0N8 Diguanylate cyclase with GAF sensor 5.15596817037e-06 0.00148609462042 5.97873107074e+11 +UniRef50_D5UF49 Zn dependent hydrolase, glyoxylase 0.000345789498071 0.00602446012333 2.29254901654e+12 +UniRef50_Q1C8A9 N succinylglutamate 5 semialdehyde dehydrogenase 0.000212715512557 0.00725039413563 2.84119722216e+12 +UniRef50_O67078 3 isopropylmalate dehydratase large subunit 0.00300386851349 0.00329882926347 1.19079274342e+11 +UniRef50_A5WE51 Inner membrane peptidase, Serine peptidase, MEROPS family S49 0.000998820398352 0.00849768141504 3.02738221381e+12 +UniRef50_Q8CP91 ABC transporter protein 0.00555704034401 0.00213595798967 -1.38113292785e+12 +UniRef50_Q2S5G4 Phosphoadenosine phosphosulfate reductase 3.9666519241e-06 6.17905155058e-06 893172878.406 +UniRef50_UPI000471DE1F indole 3 glycerol phosphate synthase 7.13455546964e-06 1.26556823339e-05 2228946666.95 +UniRef50_Q9RUK2 Transcriptional regulator, TetR family 0.000216117932552 0.0368675735952 1.47966424149e+13 +UniRef50_UPI00036055AD GTP cyclohydrolase I 2.55656355782e-05 9.84271622627e-05 29415092434.0 +UniRef50_Q5HKY3 ABC transporter, ATP binding protein 0.0103189522032 0.00222667898673 -3.26695000085e+12 +UniRef50_G7M5B9 Type II secretion system protein E 0.000168020469813 0.00179333160157 6.56158048702e+11 +UniRef50_W4K0D8 0.000122470552319 1.58772825845e-05 -43033011038.5 +UniRef50_C3BHS6 Aldehyde dehydrogenase 7.88070957963e-05 0.000320705924188 97657525454.3 +UniRef50_K2D6N5 2.51673317541e-05 1.37062155265e-05 -4626993264.79 +UniRef50_UPI00031C1838 hypothetical protein 0.000257251664199 2.43583553933e-05 -94021886687.3 +UniRef50_UPI000475EE77 histidine kinase 2.83204896551e-05 7.27693870242e-05 17944565317.2 +UniRef50_P39156 Putative sugar phosphate isomerase YwlF 0.000259143699447 0.0230945126387 9.21891866228e+12 +UniRef50_G7U731 0.00103746350656 0.0110051348113 4.02407122281e+12 +UniRef50_B9J3P1 0.000376050029429 5.34275165115e-05 -1.30246667488e+11 +UniRef50_P32153 Putative aminopeptidase FrvX 0.00263847019278 0.00111739504775 -6.1407670174e+11 +UniRef50_Q03WF6 Pseudouridine synthase 0.00622973340576 0.00159720051878 -1.87021037404e+12 +UniRef50_C7CLY8 Pirin like protein 1.07691096558e-05 1.62733079208e-05 2222112383.69 +UniRef50_W9H6Y5 Anti sigma regulatory factor 2.49108787771e-05 0.00196427302199 7.82944295864e+11 +UniRef50_Q744M7 8.2278572502e-05 0.00041010340218 1.32346906604e+11 +UniRef50_A6FZQ4 1.17721964737e-06 1.90281984392e-06 292933703.463 +UniRef50_B9KU19 Proline racemase 0.00671027587605 0.000987401770517 -2.31039450396e+12 +UniRef50_UPI000376B5E0 hypothetical protein 3.45512211015e-06 2.05776696778e-05 6912582570.33 +UniRef50_X0NIS7 0.000251657325899 6.48520454435e-05 -75415584078.7 +UniRef50_P0AEQ0 Glycolate oxidase subunit GlcD 0.010533790776 0.00268810835807 -3.16739826947e+12 +UniRef50_Q4ZLN0 9.62974461409e-05 0.000213739472998 47412787417.9 +UniRef50_UPI0003C1B110 4.42669354004e-06 3.22239022395e-05 11222074262.1 +UniRef50_Q6A8L2 Imidazole glycerol phosphate synthase subunit HisH 0.000456636276836 0.00308746143726 1.06209640112e+12 +UniRef50_Q1Q8B0 UvrABC system protein C 9.14747953543e-05 0.00870733995616 3.47833049397e+12 +UniRef50_UPI00036C8E2B hypothetical protein 0.000241861192974 0.000109549949697 -53415672552.5 +UniRef50_UPI0003C12083 PREDICTED 0.000253758691267 7.30402197775e-05 -72958264605.5 +UniRef50_J9YQK1 Cobyric acid synthase 0.00650470710924 0.00223013663677 -1.72569655461e+12 +UniRef50_A8AVW5 Competence protein ComFC 0.00675505114439 0.000801764810481 -2.40341474804e+12 +UniRef50_D4J129 9.50234955805e-06 1.52845018673e-05 2334325842.23 +UniRef50_A5VGR7 Type F conjugative transfer system protein TraW 0.000339730411081 0.000131072656658 -84237695979.1 +UniRef50_F5ZGN4 Membrane protein 0.000189691451679 0.000369920168561 72760544660.3 +UniRef50_J0VQZ8 8.44407444647e-05 0.000109289535097 10031761707.2 +UniRef50_UPI00036E2511 hypothetical protein 1.57539346744e-05 1.47464640963e-05 -406728235.433 +UniRef50_UPI000372ECF2 hypothetical protein 7.90877581427e-05 7.07682426647e-05 -3358690490.4 +UniRef50_UPI00036BAEE5 hypothetical protein, partial 1.07418130249e-05 6.64488281368e-05 22489605602.6 +UniRef50_B9DKX8 Glutamine amidotransferase subunit PdxT 0.0135433070421 0.00233047565188 -4.52675762914e+12 +UniRef50_J9YPK5 SorC family transcriptional regulator 0.000117719123342 0.00456610404785 1.79586758185e+12 +UniRef50_R6U1L8 Glycosyltransferases involved in cell wall biogenesis 0.00214650030179 0.00199769355328 -60075110437.6 +UniRef50_U4VDJ5 Threonine dehydratase 7.80101255919e-05 0.000118362641484 16290805846.7 +UniRef50_UPI0003BB97B6 PREDICTED 3.11763471032e-05 1.20789275329e-05 -7709862632.22 +UniRef50_UPI00038069E1 hypothetical protein 2.97388836664e-06 1.87239576766e-05 6358496255.53 +UniRef50_V4I3L2 DNA polymerase II large subunit 5.20884945589e-05 0.000103192264344 20631218976.0 +UniRef50_D1AIE5 Selenate reductase YgfK 0.000234992315178 0.00129197734883 4.26717828749e+11 +UniRef50_D3EVZ5 Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated 0.00385591040675 0.00050770780263 -1.35171047835e+12 +UniRef50_UPI000361B549 hypothetical protein 0.000240524230697 6.21544949988e-06 -94593330261.3 +UniRef50_G4B724 Transporting ATPase 0.00014674982724 6.30975081868e-05 -33771467731.2 +UniRef50_K9ZWQ1 1.8977846103e-05 0.00115138430546 4.57166383834e+11 +UniRef50_UPI0002000114 hypothetical protein 8.99262839273e-05 6.39903477161e-06 -33720975478.8 +UniRef50_Q3JRN2 5.66217485885e-05 0.000135466378533 31830544641.0 +UniRef50_K9ZWQ8 0.000463826619528 0.0590811091549 2.36645162745e+13 +UniRef50_P94462 Peptide deformylase 1 5.11030596013e-05 0.00050770780263 1.84336937931e+11 +UniRef50_Q164M5 5,10 methylenetetrahydrofolate reductase, putative 0.00830675860726 0.00146924406929 -2.76038852472e+12 +UniRef50_UPI00037A0B76 hypothetical protein, partial 0.000103142713456 4.15820020515e-05 -24852814628.9 +UniRef50_Q57981 Adenylosuccinate synthetase 0.00475470242676 0.00112723611237 -1.46445266514e+12 +UniRef50_UPI00041516F3 chemotaxis protein CheW 0.000253626809017 0.000101188468796 -61541228576.0 +UniRef50_Q0AUL1 Energy coupling factor transporter ATP binding protein EcfA 1.12799243792e-05 3.08964276854e-05 7919423106.28 +UniRef50_Q46841 Inner membrane protein YghQ 0.00254128261388 0.000298802737126 -9.05316644567e+11 +UniRef50_K8DRW2 Phosphoribosylformylglycinamidine synthase,synthetase subunit Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit 0.000543184994289 0.000139541839325 -1.62955694917e+11 +UniRef50_V4JYH9 4.99075633506e-05 8.51757946241e-05 14238217755.0 +UniRef50_UPI000395D985 PREDICTED 3.83182932993e-05 0.000231016979293 77794824214.6 +UniRef50_UPI0004445EDA PREDICTED 1.24795071496e-05 1.53524892008e-05 1159858109.52 +UniRef50_A6LU01 0.00142776083898 0.00110234670396 -1.31373679588e+11 +UniRef50_C5N580 0.0157424653439 0.0028091859804 -5.22132358823e+12 +UniRef50_M9S177 Oxidoreductase 0.000608848369114 0.00100107357693 1.5834612954e+11 +UniRef50_A4WZ24 4.07631310852e-05 0.000107947036194 27122966931.6 +UniRef50_D0K9R4 0.0194132776122 0.000725006767648 -7.54468427084e+12 +UniRef50_Q9ZHF6 DNA polymerase III PolC type 3.50595821622e-06 1.62863361008e-06 -757898980.862 +UniRef50_P39386 Multidrug resistance protein MdtM 0.0016552044875 0.00126853813681 -1.56101950703e+11 +UniRef50_I0C5I2 EcsB 0.0107112776757 0.00186295964339 -3.57217457072e+12 +UniRef50_S5CTA0 AraC type DNA binding domain containing protein 0.000282796742494 0.00286096025943 1.04083624941e+12 +UniRef50_UPI0003B4EBEF adenosylcobinamide kinase 6.21816298963e-05 0.000136175736748 29872328945.8 +UniRef50_UPI0003F6C3B5 family 2 glycosyl transferase 0.000470615557377 0.000110153115611 -1.45523111113e+11 +UniRef50_R7E4L4 Hydrolase NUDIX family 0.00400540652602 0.00158163581531 -9.78505978925e+11 +UniRef50_B2S710 Oxygen dependent coproporphyrinogen III oxidase 0.00264773689023 0.00160641367452 -4.20394960655e+11 +UniRef50_UPI0003178DCE hypothetical protein 9.88420958276e-06 8.74408379193e-06 -460282772.675 +UniRef50_P24207 Phenylalanine specific permease 0.0104204752047 0.025340974758 6.02358876479e+12 +UniRef50_Q3J2Z9 0.0018010249781 0.000851875111142 -3.8318344867e+11 +UniRef50_T1CKZ6 Snf2 family protein 2.59872112095e-05 0.00121101552606 4.78410472638e+11 +UniRef50_Q093G7 1.26682609742e-05 7.58872719654e-06 -2050670118.93 +UniRef50_UPI0004719E67 hypothetical protein 2.59642711444e-06 4.41125574911e-06 732668590.268 +UniRef50_UPI000379C92D hypothetical protein 1.62446777127e-05 1.53782460741e-05 -349789084.815 +UniRef50_D0D8I9 5.51402648911e-05 4.64388417158e-06 -20386008556.7 +UniRef50_D5V7X1 5.82945409357e-06 0.000140427456678 54338865346.4 +UniRef50_A0A017HKQ1 Mobile element protein 0.000190585736692 9.06566037808e-05 -40342617224.6 +UniRef50_UPI00037AC60C hypothetical protein 8.46456825631e-05 2.25955496882e-05 -25050400082.4 +UniRef50_Q080R9 Beta hexosaminidase 1.48491524218e-05 2.46760553683e-05 3967241309.16 +UniRef50_I1F0Y4 4.68361260514e-05 9.72843530599e-06 -14980830116.5 +UniRef50_X1GXU9 Marine sediment metagenome DNA, contig 2.44837517688e-05 2.67237940063e-05 904332539.688 +UniRef50_O27502 Hydroxylamine reductase 0.00452198374966 0.000309605316568 -1.70058886513e+12 +UniRef50_A0KQA4 DNA directed RNA polymerase subunit beta 5.64639397329e-06 3.24564807299e-06 -969210580.416 +UniRef50_K2SHY0 0.000841342734295 8.18174650896e-05 -3.06629671601e+11 +UniRef50_Q46DD8 Acetyltransferase 0.00190049520132 0.000982516736696 -3.70599171031e+11 +UniRef50_A5VPU4 Transcriptional regulator, MarR family 0.0142413238766 0.000715919285321 -5.46037180889e+12 +UniRef50_P07661 Citrate proton symporter 0.00013198810799 0.00550458138936 2.16898183682e+12 +UniRef50_UPI00046F7539 hypothetical protein 3.7508012116e-06 3.20622109569e-06 -219853675.542 +UniRef50_Q7UXF5 Glucose 1 phosphate adenylyltransferase 7.89082454583e-06 6.55718983757e-06 -538404697.263 +UniRef50_UPI000476E759 hypothetical protein 2.05574624699e-06 6.17399741779e-06 1662588534.28 +UniRef50_UPI000478E93F hypothetical protein, partial 4.42318025113e-05 5.28710938048e-05 3487787911.21 +UniRef50_P77884 Dihydroorotase 4.58789429982e-06 7.18377052623e-06 1047987087.59 +UniRef50_UPI0001850CBB hydrolase 0.000291870609934 1.07807596416e-05 -1.13479421923e+11 +UniRef50_Y5FPX8 3.38026184034e-05 4.04053851872e-05 2665617975.68 +UniRef50_UPI0003F0DCE2 PREDICTED 1.45973419674e-05 6.5187567758e-05 20423894963.5 +UniRef50_G8AE70 0.000132195944694 6.03323453248e-05 -29012216930.9 +UniRef50_R0VSS0 Tetrapyrrole Methylases family protein (Fragment) 0.00039596432397 0.000537769710152 57248574549.4 +UniRef50_Q9JLZ1-2 Isoform 2 of Glutaredoxin 3 9.92745199079e-05 7.6030284992e-05 -9383982874.39 +UniRef50_UPI000365E816 hypothetical protein 6.03346431253e-06 1.63191835873e-05 4152471091.21 +UniRef50_Q21NT4 5.2003617978e-05 1.06351794859e-05 -16700946267.1 +UniRef50_UPI0003298B2A PREDICTED 4.92823123569e-06 6.47775133308e-06 625560278.066 +UniRef50_Q5HNZ4 Ferric uptake regulation protein 0.0149948230784 0.00226035592642 -5.14106065875e+12 +UniRef50_UPI00037B54FA hypothetical protein 1.11340890809e-05 1.83762037399e-05 2923730558.58 +UniRef50_U5MNS8 Permease 0.000245205163361 0.000378673401363 53882765520.9 +UniRef50_A5VZX6 2.41132732977e-05 1.02386853225e-05 -5601341425.93 +UniRef50_B2KCI5 Tryptophan synthase beta chain 0.000117629774232 2.04643832186e-05 -39226860705.5 +UniRef50_D8JK92 LysR family transcriptional regulator 0.000146501677432 0.00816274919585 3.23625749361e+12 +UniRef50_UPI00036EAD03 hypothetical protein 2.11771781224e-06 3.31527060457e-06 483466757.889 +UniRef50_J3JJ09 0.000141773346578 4.48651825862e-05 -39123015000.4 +UniRef50_UPI00036EDC4E hypothetical protein 2.22817708509e-05 3.38874267446e-05 4685345701.7 +UniRef50_D9VUJ1 Rim protein 9.27165255943e-06 0.000569117992702 2.26016837603e+11 +UniRef50_A3PH50 0.00845558079176 0.00183629394278 -2.67228732872e+12 +UniRef50_Q3IV16 0.0239036241221 0.00241953917364 -8.67338873308e+12 +UniRef50_A5UMF4 Replication factor C large subunit 0.0020421134256 0.000562429418714 -5.97366591346e+11 +UniRef50_Q3IV10 0.0091409655003 0.00457739040826 -1.84237126602e+12 +UniRef50_UPI000372C9B6 MULTISPECIES 6.93226034356e-05 5.04271825325e-06 -25950578451.0 +UniRef50_UPI00038172EF hypothetical protein, partial 6.17480180261e-05 0.000105800390049 17784483169.0 +UniRef50_UPI00046F18A1 oxidoreductase 2.06668985647e-06 7.20076490994e-06 2072689101.27 +UniRef50_Q2NEJ8 Predicted Fe S oxidoreductase 0.00260911485228 0.000393153774187 -8.94610680125e+11 +UniRef50_A6LSG6 Penicillin binding protein, transpeptidase 0.000331882878003 0.00182343453349 6.02157706718e+11 +UniRef50_UPI0004790007 hypothetical protein 3.28075863175e-05 6.69997818735e-06 -10539961778.5 +UniRef50_UPI000365533E hypothetical protein 6.505621983e-06 0.000240386649613 94420640897.2 +UniRef50_M8PZ54 PTS system, glucose like IIB component domain protein 0.00164604523284 0.000235625030732 -5.69403943394e+11 +UniRef50_UPI0003775AE8 hypothetical protein 0.000515857817048 8.96537279181e-05 -1.72063820894e+11 +UniRef50_UPI000477A38C molybdopterin biosynthesis protein MoeB 1.68808741053e-05 2.67215868743e-05 3972816503.97 +UniRef50_Q8ZNT5 Cellulose synthesis regulatory protein 0.00141494910134 0.000292368137996 -4.53199710518e+11 +UniRef50_O27097 2 phospho L lactate transferase 0.00228994347001 0.00156414781145 -2.93012613875e+11 +UniRef50_A6LR83 Drug resistance transporter, EmrB QacA subfamily 9.65437311629e-05 0.00103278156127 3.77970700944e+11 +UniRef50_UPI00036A9345 hypothetical protein 5.32848429275e-05 1.86717049058e-05 -13973748570.3 +UniRef50_Q8FE40 9.65283474009e-06 0.000145779848251 54956145820.7 +UniRef50_K9VLK6 0.000135511232593 1.56960430429e-05 -48370862319.0 +UniRef50_G8UZK4 Replication protein Rep 0.00439265995996 0.000800016090176 -1.45039441693e+12 +UniRef50_UPI00047CA240 hypothetical protein 8.59037087487e-06 0.000212552231732 82341906121.5 +UniRef50_Q5LY98 Probable dual specificity RNA methyltransferase RlmN 0.00771002923959 0.00665418278146 -4.2625817184e+11 +UniRef50_X2N374 0.00163099844591 0.000376199624447 -5.06577682336e+11 +UniRef50_G8PS78 2.85023979977e-06 4.78823315793e-06 782391700.542 +UniRef50_F0QDW1 Adenylate guanylate cyclase 0.000183133219776 0.00950985509696 3.76531207357e+12 +UniRef50_UPI0003C1B148 PREDICTED 4.5065170515e-05 3.72256559668e-05 -3164908224.77 +UniRef50_P77802 Probable outer membrane usher protein EcpC 0.000750848481408 0.00131489472524 2.27712390261e+11 +UniRef50_Q1J1F1 Diguanylate cyclase 3.37831024948e-06 0.00101143677659 4.0696557313e+11 +UniRef50_E6N053 O succinylhomoserine sulfhydrylase 0.000353998304629 0.00368434343958 1.34450119891e+12 +UniRef50_M9VKY5 Mannose 6 phosphate isomerase 0.000197497483254 0.0040960472943 1.57389239931e+12 +UniRef50_U5NZ17 0.00121850256087 0.000740505583435 -1.92973245473e+11 +UniRef50_P46723 Delta aminolevulinic acid dehydratase 5.68046062819e-05 6.50359977466e-05 3323113744.83 +UniRef50_Z5R973 2.12106902489e-05 3.54871501192e-05 5763582041.5 +UniRef50_D3E4F5 Archaea specific RecJ like exonuclease 0.00463683983834 0.000251730228627 -1.77032256079e+12 +UniRef50_Q03CK3 Pyrrolidone carboxylate peptidase 1.29313011648e-05 3.79850278201e-05 10114496894.5 +UniRef50_B7A2D4 Beta glucuronidase UidA 0.00183743949821 0.000496090318404 -5.41519124095e+11 +UniRef50_Q88UE0 Imidazoleglycerol phosphate dehydratase 1.40955356415e-05 0.000308693420057 1.18932781061e+11 +UniRef50_UPI00047854CC hypothetical protein 2.66800936349e-06 6.33683522622e-06 1481150022.34 +UniRef50_X5E185 0.000620334373313 0.000271843494808 -1.40690044116e+11 +UniRef50_UPI00036C176D hypothetical protein 1.88419793905e-05 0.000159095109903 56621909887.1 +UniRef50_A1V6Q7 4.46632625869e-05 4.60640697911e-05 565523058.173 +UniRef50_P80651 Tetrahydromethanopterin S methyltransferase subunit E 0.00178714235988 0.00110371478556 -2.75908098352e+11 +UniRef50_Q83QI5 GTPase Era 0.00159063071802 0.000932449164947 -2.65715969771e+11 +UniRef50_A5UNW2 0.00285667453409 0.00136811960901 -6.00947889878e+11 +UniRef50_A5UNW3 0.00242155541944 0.000324816550467 -8.46479211282e+11 +UniRef50_A5UNW4 0.00247557280243 0.000506243385578 -7.95042451972e+11 +UniRef50_A5UNW5 0.00341217129683 0.00100274137072 -9.72716428201e+11 +UniRef50_A1WS37 NAD transhydrogenase, subunit alpha part 2 5.16930851842e-05 5.24131401657e-05 290695032.1 +UniRef50_Q10216 3.18232637393e-05 4.70028660337e-05 6128191720.92 +UniRef50_F2ZBV1 60 kDa chaperonin 2.34873842884e-05 8.27722815076e-05 23934040514.9 +UniRef50_D6D7L5 Phage tail tape measure protein, TP901 family, core region 4.52788031274e-06 0.00296170169458 1.19384735742e+12 +UniRef50_E4PGW6 L carnitine dehydratase bile acid inducible protein F 0.000101474728189 0.00488797135005 1.93236742316e+12 +UniRef50_P76319 0.00703951790252 0.00074293510741 -2.54200774215e+12 +UniRef50_W8T2N2 Mannitol 1 phosphate 5 dehydrogenase 0.00069767491037 0.000105599780768 -2.39027995399e+11 +UniRef50_UPI000225A95D UDP N acetylglucosamine pyrophosphorylase 3.83319357599e-06 1.13923735143e-05 3051733702.66 +UniRef50_UPI00037DA29D hypothetical protein 2.56199191014e-06 3.89654848214e-06 538776864.967 +UniRef50_P94909 4.82366086317e-05 2.57393219854e-05 -9082430691.86 +UniRef50_D7GCK3 Mannose 1 phosphate guanylyltransferase 0.000219071332796 0.00419968170138 1.60702125338e+12 +UniRef50_R7VTK3 Neurofilament heavy polypeptide 5.30764219547e-06 3.86684098007e-06 -581669131.276 +UniRef50_Q9XGI9 N carbamoylputrescine amidase 0.00132858208304 0.00337382397018 8.25689247779e+11 +UniRef50_U5T4K4 0.00646947657082 0.000984116545227 -2.21450715527e+12 +UniRef50_Q9RW76 0.000808898547544 0.0447192904455 1.77271640503e+13 +UniRef50_I6SVC2 0.00280303646625 0.00198808735513 -3.29004956709e+11 +UniRef50_UPI00040EFCE1 hypothetical protein 2.4498473779e-05 2.07891197993e-05 -1497511720.5 +UniRef50_D2N9E8 MAP domain protein 0.00854667035152 0.00167395991889 -2.77459753929e+12 +UniRef50_UPI0003C75CB7 hypothetical protein 0.000165023126249 0.00013016607264 -14072220286.1 +UniRef50_B9NSA4 7.84094741989e-05 4.15359892577e-05 -14886278359.3 +UniRef50_UPI000413A679 hypothetical protein 0.000110056964347 4.43657873899e-05 -26520334259.0 +UniRef50_E7B190 Methyl viologen resistance protein smvA 0.000247054934676 0.00680520638547 2.64760621825e+12 +UniRef50_UPI000361644F hypothetical protein 6.24905034921e-05 5.22278513714e-05 -4143158598.03 +UniRef50_G4T2X8 0.00221089323748 0.00142895179933 -3.15679354082e+11 +UniRef50_F9YYN2 0.0030606972069 0.00565630314522 1.04787796897e+12 +UniRef50_Q0AZJ3 Chorismate synthase 1.68724057885e-05 0.000113186278063 38883092141.3 +UniRef50_S5CTY8 8.27820150938e-05 0.00527786407966 2.09731838029e+12 +UniRef50_P08660 Lysine sensitive aspartokinase 3 0.00471721180914 0.00136173150206 -1.35464857634e+12 +UniRef50_A6U596 Ribonuclease P protein component 0.00776329579911 0.000513594269898 -2.92679347118e+12 +UniRef50_P45213 Peptide methionine sulfoxide reductase MsrA MsrB 0.00264406343735 0.000476513409224 -8.75066545186e+11 +UniRef50_S3G9A5 8.31974926995e-05 2.84939044588e-05 -22084509861.3 +UniRef50_W4KUQ3 Cytochrome C biogenesis protein CcmI 2.8766646521e-05 0.000470000061318 1.78131344096e+11 +UniRef50_UPI0003A1B331 MFS transporter 0.000104642943705 6.44653014978e-06 -39643097157.7 +UniRef50_F3STZ2 Valine tRNA ligase 0.00999356050885 0.00311975584142 -2.77503929531e+12 +UniRef50_Q8CNH3 Repressor protein 0.00344877995438 0.000588671173145 -1.15466101246e+12 +UniRef50_UPI0003B68F93 ABC transporter ATPase 7.71706047856e-06 0.000313999243079 1.23649875621e+11 +UniRef50_A4U2D7 7.77543090901e-05 4.82600080912e-05 -11907211249.0 +UniRef50_UPI0003DEC987 PREDICTED 3.8218700801e-05 0.000100385043428 25097315385.3 +UniRef50_D3DZ44 Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase 0.00256211965701 0.000697670961853 -7.52700817594e+11 +UniRef50_H8GUK3 Peptidase M20D, amidohydrolase 0.0004455255288 0.0882152863352 3.54337294936e+13 +UniRef50_J3N2U1 0.00113386794639 4.35696086151e-05 -4.40166818423e+11 +UniRef50_UPI0003B7917E DNA binding protein 4.13946727472e-06 0.000392638113001 1.56841670694e+11 +UniRef50_A0Z0Z6 3.14897189465e-06 5.01303605391e-06 752545575.733 +UniRef50_UPI0003B5A232 ribosomal protein L36 5.0667129952e-05 0.000459378159744 1.65001658175e+11 +UniRef50_Q7VKM9 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.84622647066e-05 6.4982807109e-06 -8867129867.46 +UniRef50_UPI00036E6417 hypothetical protein 1.52698667396e-06 1.72611975298e-05 6352094002.97 +UniRef50_UPI0003292B2A PREDICTED 1.73186854581e-05 6.82763102027e-05 20572218429.8 +UniRef50_M1N3H4 Exopolysaccharide biosynthesis protein 0.000244962190495 0.000923735088712 2.7402894849e+11 +UniRef50_F0JXQ7 8.75632513603e-05 0.000370638226522 1.14280841193e+11 +UniRef50_UPI0002EF3F38 hypothetical protein 2.62164310186e-05 3.32727668159e-06 -9240632487.36 +UniRef50_Q8Z2V9 Superoxide dismutase [Mn] 0.00172662976306 0.00228414191033 2.25074495296e+11 +UniRef50_Q9RYV9 0.000338251556951 0.00891760645308 3.46359085209e+12 +UniRef50_J3F9J8 Nicotinamide mononucleotide transporter 0.00418713704251 0.00100758225853 -1.28362528382e+12 +UniRef50_B5Y0Y6 Queuine tRNA ribosyltransferase 0.00348088671559 0.00257498700551 -3.65722829599e+11 +UniRef50_K7S0T6 5 Nucleotidase domain containing protein 0.000264021945448 0.00228925626309 8.17611946451e+11 +UniRef50_G7ZMN3 Iron transporting membrane protein, putative 0.00760783733088 0.000676536190194 -2.79825132713e+12 +UniRef50_A0A031JAP0 Plasmid stabilization system 0.000209615527261 4.27047485242e-05 -67383929601.7 +UniRef50_Q0VT82 Monooxygenase, putative 7.93037791655e-05 0.00769352718979 3.0739554279e+12 +UniRef50_G7U5S7 HAD hydrolase, family IIA 0.000454346682378 0.0061452184808 2.29747477987e+12 +UniRef50_Q5HLV3 Transcriptional regulator, AraC family 0.0093275210869 0.00209506782327 -2.91983013471e+12 +UniRef50_F1UC42 0.000137972896485 0.000570682823659 1.74690307548e+11 +UniRef50_H7CSE8 GntR family transcriptional regulator 0.000256345594659 0.000744558989598 1.97097738589e+11 +UniRef50_UPI000479951F PTS glucose transporter subunit IIA 1.98508316764e-05 6.26298415928e-05 17270411260.7 +UniRef50_C7ZSD0 GtrA family protein 0.0113369013403 0.000995277041056 -4.17504063559e+12 +UniRef50_A3JMR3 0.00017439017889 3.5041424328e-05 -56256802218.2 +UniRef50_UPI00046681A8 hypothetical protein 5.55779695436e-05 3.45500979934e-05 -8489209785.82 +UniRef50_A6M2M1 0.000277276821291 0.00218159784021 7.68797763985e+11 +UniRef50_UPI0004417C25 hypothetical protein PUNSTDRAFT_59595 3.99121004518e-06 1.35721080172e-05 3867926082.14 +UniRef50_A6LPG6 Hydrolase, TatD family 0.00113515263772 0.00112204662369 -5291058692.79 +UniRef50_UPI0003FC161E hypothetical protein 4.26923956839e-05 2.94999216703e-05 -5325963649.15 +UniRef50_G7M238 Transcriptional regulator, TetR family 0.00181163480643 0.00137454010541 -1.76460494557e+11 +UniRef50_Q8ZAX7 tRNA dihydrouridine synthase B 0.00120825837784 0.00431531295247 1.25435605963e+12 +UniRef50_Q47SC0 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000175187788843 0.00699325139052 2.75253594305e+12 +UniRef50_L8E1V7 Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG 0.0141592244189 0.00481627715774 -3.77186246019e+12 +UniRef50_UPI0003727421 hypothetical protein 1.73729237397e-05 3.58992703517e-05 7479313471.1 +UniRef50_UPI0002D60E46 hypothetical protein 1.34272214726e-05 3.44113955746e-06 -4031503812.15 +UniRef50_Q3HKG9 0.017265930779 0.00265882810498 -5.8970665988e+12 +UniRef50_W0LIC7 Branched chain amino acid transport 4.29519926248e-05 4.48018707836e-05 746818513.265 +UniRef50_UPI0004702F9D hypothetical protein, partial 0.000211205101001 5.18849272802e-05 -64319509209.6 +UniRef50_UPI000473FCD3 hypothetical protein, partial 8.54158379408e-05 0.00070817097023 2.5141388897e+11 +UniRef50_C4K578 UPF0145 protein HDEF_1024 0.000447692830401 0.00211205948976 6.71925244459e+11 +UniRef50_UPI0003621977 hypothetical protein 8.20029271594e-06 0.000126054317289 47579115951.6 +UniRef50_Q2NE86 Bifunctional enzyme Fae Hps 0.00209764063385 0.000292763539482 -7.2865103133e+11 +UniRef50_Q6A9R8 Glycine dehydrogenase 0.000350818823421 0.00680483377118 2.60556503408e+12 +UniRef50_A8A338 0.00409376665691 0.00193650298488 -8.70913817001e+11 +UniRef50_P45763 Putative type II secretion system protein L 0.0033416882143 0.000798691199691 -1.02663910088e+12 +UniRef50_M9VKX5 0.000769967304622 0.00932205000829 3.45258073333e+12 +UniRef50_Q8A624 ATP dependent 6 phosphofructokinase 2 1.86254678661e-05 2.59001272116e-05 2936869247.89 +UniRef50_V6PAD8 Putative peptidase, aminobenzoyl glutamate utilization protein 0.00299955417645 0.000343391517665 -1.07232546013e+12 +UniRef50_UPI000471F071 cobinamide kinase 8.91746531157e-06 0.000123197666257 46136319497.3 +UniRef50_C4ZVV8 HTH type transcriptional regulator MurR 0.00460447238516 0.00169853105957 -1.17316417305e+12 +UniRef50_K0SVQ3 0.000114183282777 0.00031024253672 79151526734.4 +UniRef50_I0TP75 0.0123179737632 0.00294292680883 -3.78482150024e+12 +UniRef50_F8FB46 Iron ABC transporter permease 0.000346376403132 0.00170023368121 5.46568796858e+11 +UniRef50_Q8ZPN4 0.00482190448347 0.00301192962947 -7.30709059449e+11 +UniRef50_V5BVX1 0.000755547429813 0.000151880351022 -2.43707807536e+11 +UniRef50_G5ML36 Permease protein HisM 0.00015093983677 0.000198420687431 19168602067.4 +UniRef50_UPI0003712D9F cold shock protein 1.39807736308e-05 1.10369855935e-05 -1188443355.0 +UniRef50_P52614 Flagellar hook length control protein 0.00358840843536 0.000511266433277 -1.24227998702e+12 +UniRef50_W9CKC5 2.15410417027e-05 1.81642870237e-05 -1363237301.35 +UniRef50_V8HF01 Transposase IS5 0.000495757062521 0.000118484775626 -1.52309451871e+11 +UniRef50_A4WVU4 Surface antigen 0.00158803482858 0.000327340409736 -5.08957807346e+11 +UniRef50_I6TXF6 0.00130488493397 0.000972432875408 -1.34214975687e+11 +UniRef50_D4HD50 0.000290483666308 0.000257375315014 -13366247702.5 +UniRef50_UPI00046FE274 hypothetical protein 3.37683565218e-05 1.47411157041e-05 -7681530608.61 +UniRef50_D4HD52 0.000111025290843 0.00470598960883 1.85504348173e+12 +UniRef50_G4Q6N7 Inner membrane translocator 0.0064481718642 0.00527372306114 -4.74139393903e+11 +UniRef50_UPI00046D7550 hypothetical protein 1.8196074651e-05 2.00989171014e-05 768200847.729 +UniRef50_S4YYU3 GntR family transcriptional regulator 0.000241462252992 0.00524339973559 2.0193435424e+12 +UniRef50_P50045 Urease subunit beta 9.56859371734e-06 3.71457135516e-05 11133221686.4 +UniRef50_L0WLU4 Apolipoprotein N acyltransferase 0.000177081527952 0.00839953829536 3.31950669789e+12 +UniRef50_UPI0004659182 phosphoadenosine phosphosulfate reductase 1.12127392719e-05 1.66251038809e-05 2185038009.84 +UniRef50_UPI000225A9BC bacteriophage replication gene A protein 0.00022371803292 0.000252878997653 11772639308.0 +UniRef50_E4PPI0 UPF0125 protein HP15_3087 1.70732814203e-05 3.4631863056e-05 7088614874.36 +UniRef50_B7V3C6 0.000620833664586 0.000192807424497 -1.72799445597e+11 +UniRef50_UPI00047C25CC cytochrome D ubiquinol oxidase subunit II 1.45975191631e-05 2.0504367565e-05 2384667185.03 +UniRef50_A6LSC2 3 oxoacyl [acyl carrier protein] synthase 3 0.000600102861441 0.000208453041384 -1.58113838441e+11 +UniRef50_UPI0004771F9A hypothetical protein 4.1757239244e-06 1.11573688496e-05 2818575730.72 +UniRef50_A6LR66 Signal transduction histidine kinase regulating citrate malate metabolism 9.214466774e-05 0.000388596770786 1.19681351876e+11 +UniRef50_A4XYX3 Lipoyl synthase 3.94357719838e-06 0.0563654446876 2.27538296317e+13 +UniRef50_UPI000386F412 PREDICTED 6.52068591621e-06 1.02025904921e-05 1486430059.34 +UniRef50_A0A058YZC5 1.48948292193e-05 0.000108221522658 37677131388.5 +UniRef50_UPI0004548432 PREDICTED 2.04429158187e-05 0.000111479742682 36752684152.2 +UniRef50_R8A9F1 0.0022233228711 0.00131594079692 -3.66321278177e+11 +UniRef50_F6II99 YVTN beta propeller repeat containing protein 0.000162106227539 1.48045921339e-05 -59467477807.3 +UniRef50_P0AFH0 Methylated DNA protein cysteine methyltransferase 0.00375778777938 0.000346751512944 -1.37707719888e+12 +UniRef50_UPI000370022D hypothetical protein 7.92407470081e-06 3.02541310036e-06 -1977649801.44 +UniRef50_P24205 Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase 0.00336801201352 0.000985982117213 -9.61654699934e+11 +UniRef50_UPI000379C912 hypothetical protein 2.70993756199e-05 5.67495541447e-06 -8649301344.12 +UniRef50_UPI00035D44F9 hypothetical protein 2.53655065304e-06 1.43741449778e-05 4778982092.54 +UniRef50_UPI0003B7A57E prolipoprotein diacylglyceryl transferase 0.000137634071901 1.00455974915e-05 -51509032806.0 +UniRef50_Q8CP86 Putative branched chain amino acid carrier protein SE_1090 0.0155643108753 0.00480222598513 -4.34478573581e+12 +UniRef50_G8AFT7 0.0118807814263 0.000163379172346 -4.73045907863e+12 +UniRef50_UPI00046E7A1E TonB dependent receptor 0.000213842960087 0.000179398412117 -13905686697.6 +UniRef50_U2RQ03 0.000639806760763 0.00495573661168 1.74239384323e+12 +UniRef50_F5M4B6 0.000296661755423 0.000694993764996 1.60811520348e+11 +UniRef50_Q9I7A3 0.000752274247313 0.000188500024587 -2.27602572002e+11 +UniRef50_V5SRZ3 Aminoglycoside phosphotransferase 0.00080641702341 0.000329962799096 -1.92350417106e+11 +UniRef50_Q0T1Y1 3 phenylpropionate cinnamic acid dioxygenase subunit alpha 0.0036595801954 0.0023085886548 -5.45411863471e+11 +UniRef50_Q0TMN9 DNA directed RNA polymerase subunit beta 4.25549847631e-06 4.85212492119e-06 240865417.228 +UniRef50_C5F4X4 Spermidine putrescine ABC transporter permease 0.0187750295822 0.00864786608688 -4.08846017732e+12 +UniRef50_A6LQT7 Ribulose phosphate 3 epimerase 0.000542965031826 0.00111168135594 2.29597758979e+11 +UniRef50_Q7UKV0 Peptidyl tRNA hydrolase 1.73284287074e-05 2.8350129515e-05 4449595867.51 +UniRef50_UPI000477C8DB alcohol dehydrogenase 1.16730695514e-05 1.73136486649e-05 2277171005.81 +UniRef50_A2FBD4 Alanine dehydrogenase 2, putative 1.30916503275e-05 1.20698673995e-05 -412506306.72 +UniRef50_D5ALB3 0.000330691039377 5.32549878972e-05 -1.12004338506e+11 +UniRef50_A4WQF1 Homocysteine S methyltransferase 0.000331442869217 0.000192807424497 -55968830281.7 +UniRef50_Q9KL04 Maltose maltodextrin import ATP binding protein MalK 7.78327777594e-05 2.29644103942e-05 -22151033215.9 +UniRef50_A9WP05 Dihydroxy acid dehydratase 3.77364924188e-05 3.58646342559e-05 -755692110.645 +UniRef50_UPI0002FFECEA hypothetical protein 4.24335872169e-05 4.23905152011e-05 -17388701.3315 +UniRef50_Q3J7W9 2.83638882642e-05 0.000108647044534 32411295371.2 +UniRef50_UPI0002192F2F putative nitrate transport ATP binding protein, partial 0.000106128058674 0.000153041771148 18939641421.7 +UniRef50_UPI0002E83586 hypothetical protein 9.80496521369e-06 8.35181853421e-06 -586653146.621 +UniRef50_UPI000367925C hypothetical protein 1.05795066237e-05 2.2947070667e-06 -3344675247.08 +UniRef50_A8ZXR7 Phosphopantetheine adenylyltransferase 3.22051603876e-05 1.5069480091e-05 -6917884414.18 +UniRef50_UPI00029A061A adenylosuccinate lyase 5.94167392635e-05 6.11477142931e-05 698815860.902 +UniRef50_UPI000363D694 hypothetical protein 0.000117411954549 4.9575529495e-05 -27386397240.8 +UniRef50_Q3HKJ2 0.00269523790358 0.00108495875889 -6.50089451059e+11 +UniRef50_UPI00036EA5DF hypothetical protein 0.00788801390558 0.000551993841485 -2.96164132296e+12 +UniRef50_U6ZV82 0.000324665739305 0.00027688397003 -19290086604.6 +UniRef50_Q9HZJ5 DNA topoisomerase 1 0.00295712263778 0.00405126519879 4.41718778519e+11 +UniRef50_E8TEM3 2 oxo hepta 3 ene 1,7 dioic acid hydratase 0.000657885372515 0.000893307354578 95042743111.4 +UniRef50_I0TLB8 Cupin domain protein 0.000356597114027 0.000430914410902 30002804724.2 +UniRef50_B2IPX4 ATP dependent helicase deoxyribonuclease subunit B 1.15243091141e-05 0.00368289538595 1.48217755651e+12 +UniRef50_Q9RW95 General secretion pathway protein D, putative 0.000118768598299 0.0408669558821 1.6450543243e+13 +UniRef50_A6LZ07 Abortive infection protein 0.000321530260182 0.00182389037252 6.06521213383e+11 +UniRef50_W8RWR3 Isopropylmalate homocitrate citramalate synthase 0.000539975417129 0.000232434771269 -1.24157932682e+11 +UniRef50_E8P8P5 0.000142447542961 0.00855328807824 3.39555953671e+12 +UniRef50_E8SK14 Teichoic acid export ATP binding protein TagH 0.00940812031823 0.00280428507158 -2.66604932724e+12 +UniRef50_E8P8P8 8.03161678458e-05 0.00715194512967 2.85490339053e+12 +UniRef50_B9DKZ2 Protein containing tetrapyrrole methyltransferase domain and MazG like domain 0.0207868554593 0.00594930985708 -5.99009923677e+12 +UniRef50_F5XQT8 LytR family regulatory protein 5.56587208972e-06 2.10428146095e-05 6248231618.69 +UniRef50_UPI00047372AD hypothetical protein, partial 5.16139642758e-05 9.66415441571e-06 -16935653022.6 +UniRef50_A4VGB2 1.4026429172e-05 0.00094954506201 3.77680352181e+11 +UniRef50_Q7N1I3 Antitoxin HicB 1 0.0041488346692 0.000418888943548 -1.50582486103e+12 +UniRef50_Q9X7L2 2 isopropylmalate synthase 2.74042676633e-06 1.88238035281e-05 6493056563.97 +UniRef50_D4BTI9 Cardiolipin synthetase 0.000532307127821 0.000253128604458 -1.12707795787e+11 +UniRef50_W9FRU9 2.1366917559e-05 0.000380120859522 1.44833368776e+11 +UniRef50_K0SKL9 4.29105761455e-05 0.00103586261032 4.00866921088e+11 +UniRef50_A3MKU1 Uridylate kinase 0.0157517403776 0.0133283830394 -9.7833909537e+11 +UniRef50_Q6G726 0.0012443011832 0.00438504426591 1.26795652374e+12 +UniRef50_Q7V4J6 Acyl carrier protein 2.20533689596e-05 0.000107846393731 34635696899.0 +UniRef50_UPI000346B698 hypothetical protein 7.86193726444e-06 2.46085373935e-06 -2180483697.83 +UniRef50_UPI00036E5C3C hypothetical protein 1.74793804508e-06 1.42354088044e-05 5041345184.03 +UniRef50_M7Y540 Dipeptide transporter permease DppB 0.000126798281886 9.80153948154e-05 -11620004716.1 +UniRef50_F0RJ20 6.64877596397e-05 0.000680804966381 2.48007394881e+11 +UniRef50_Q4K4P3 Permease, cytosine purine, uracil, thiamine, allantoin family 0.000441796181201 0.000316820360017 -50454272637.8 +UniRef50_O31611 GTP pyrophosphokinase YjbM 0.00329889737152 0.00257424011629 -2.92553026481e+11 +UniRef50_A6W7I0 4.32204273809e-05 0.000183970974469 56822723062.9 +UniRef50_G9A888 Multidrug resistance protein, AcrB family 0.00355628985989 0.000186848059888 -1.36028500236e+12 +UniRef50_W0X4S5 0.000134018694272 0.000612407914008 1.93131598503e+11 +UniRef50_Q3IXT7 ABC peptide opine transporter, ATPase subunit 0.000310355949796 0.000337504805945 10960326381.3 +UniRef50_UPI00036250D8 hypothetical protein 0.000269425781806 1.42946448112e-05 -1.02999570816e+11 +UniRef50_UPI000169B03B FKBP type peptidyl prolyl cis trans isomerase 0.000350998626548 7.69030954929e-05 -1.10655729417e+11 +UniRef50_UPI0000E11708 beta hexosaminidase 1.23875862612e-05 2.58390102263e-05 5430504922.25 +UniRef50_A5UK53 Alcohol dehydrogenase , GroES like protein 0.00399095188806 0.00131679807146 -1.07958871132e+12 +UniRef50_P65239 Ribose phosphate pyrophosphokinase 1 1.79723412269e-05 0.0126940964913 5.11750687293e+12 +UniRef50_UPI0002F7DE76 hypothetical protein 6.16494005513e-06 0.000116539159572 44559426863.0 +UniRef50_A5IUX4 Choline carnitine betaine transporter 0.00995484830915 0.00221901340908 -3.12305147853e+12 +UniRef50_A4XP60 Acetylornithine deacetylase 0.000220165381129 0.000219566323568 -241846888.639 +UniRef50_I0ELI9 DnaA initiator associating factor for replication initiation HobA 0.000536709936758 0.00167018452953 4.57597602399e+11 +UniRef50_B9MQ98 Phospho N acetylmuramoyl pentapeptide transferase 6.00312187926e-06 3.09970590735e-05 10090359155.4 +UniRef50_U3AIN5 9.97033956804e-06 1.3263118562e-05 1329335286.8 +UniRef50_C5MYS8 Acyl coenzyme A 0.0225218291506 0.00513925545284 -7.01755830997e+12 +UniRef50_A3V0X0 Membrane protein, putative 2.96234008235e-05 1.64512640605e-05 -5317753251.52 +UniRef50_A6LUJ9 DegV family protein 0.00100167007762 0.000469515830098 -2.14837199992e+11 +UniRef50_Q1RIM1 DNA topoisomerase 1 5.33705420125e-06 1.70560998832e-06 -1466058591.59 +UniRef50_F0VRX4 Autolysin 0.00629277981773 0.00184090115647 -1.79727804625e+12 +UniRef50_Q9FKK7 Xylose isomerase 0.000225341521387 0.00687447082843 2.68433509524e+12 +UniRef50_UPI000468EE55 ATP dependent DNA helicase PcrA 2.02305340402e-05 4.5308788777e-06 -6338143445.53 +UniRef50_P37617 Lead, cadmium, zinc and mercury transporting ATPase 0.00371605280545 0.000984643946884 -1.10270327436e+12 +UniRef50_UPI0004669FC1 oxidoreductase 9.08145923477e-05 0.00525690664124 2.08561475522e+12 +UniRef50_UPI000471FBF4 thioredoxin 5.26428284755e-05 6.31718181032e-05 4250682317.93 +UniRef50_UPI000467E3B3 transposase 7.1175157891e-05 0.000134233565215 25457452850.4 +UniRef50_R9SIT6 0.00105447552396 0.000354167404262 -2.82722981669e+11 +UniRef50_UPI0004780904 cobinamide adenolsyltransferase 8.42087887165e-05 0.0267519938802 1.0766112092e+13 +UniRef50_P30526 Anthranilate synthase component 1 1.07151405708e-05 5.81191912066e-06 -1979490668.71 +UniRef50_Q2FFK2 Ferritin 0.0437379970517 0.00258336485784 -1.66146300408e+13 +UniRef50_UPI00047870AD GTP pyrophosphokinase 6.260201921e-06 2.68810685441e-06 -1442098612.92 +UniRef50_Q99V46 Staphopain B 0.00756196738298 0.0032146623785 -1.75506037774e+12 +UniRef50_A5UMY4 Predicted RNA binding protein 0.00215854439897 0.00292264550899 3.0847699469e+11 +UniRef50_Q89UE3 Malate synthase G 0.00334350506728 0.000650725569601 -1.08710812733e+12 +UniRef50_Q9CEY4 Putrescine carbamoyltransferase 0.00840628351147 0.00355173537106 -1.95984065629e+12 +UniRef50_J9NSA1 3.61931089539e-05 2.23689870118e-05 -5580967669.08 +UniRef50_UPI0003B73B69 glutaredoxin 6.26566082592e-05 0.000370809750344 1.24405204924e+11 +UniRef50_F3SCH8 Thymocyte nuclear protein 1 2.49606771213e-05 1.76728271941e-05 -2942194447.59 +UniRef50_A5MC69 6.48813894289e-05 0.00395893790491 1.57207840075e+12 +UniRef50_M4AFD6 1.83432535653e-05 2.7888944479e-05 3853712560.66 +UniRef50_UPI00034ACF0F hypothetical protein 2.19233243606e-05 0.000158987969475 55334679204.9 +UniRef50_C8S1S6 Plasmid partitioning protein RepA 0.000319265879641 9.50834551224e-05 -90505195806.0 +UniRef50_A6LRW1 Phage portal protein 0.00028744254467 0.00250912031843 8.96918580319e+11 +UniRef50_Q886P5 Bifunctional uridylyltransferase uridylyl removing enzyme 0.000821351494297 0.00020991480622 -2.46844494149e+11 +UniRef50_A1SWU5 Threonine tRNA ligase 0.00148057926367 0.00155480886701 29967401768.0 +UniRef50_R4PYA3 Ribonucleoside diphosphate reductase 0.00458453426269 0.00531181366406 2.93611619055e+11 +UniRef50_O94634 Threonine dehydratase, mitochondrial 6.7003977773e-06 1.35929351983e-05 2782601937.8 +UniRef50_Q4L5E4 Phenylalanine tRNA ligase beta subunit 0.0191294504504 0.00700138403892 -4.89624923843e+12 +UniRef50_V6NXW6 7.25465146038e-05 0.000157644172158 34354968620.3 +UniRef50_Q9RU25 Peptide ABC transporter, permease protein 0.000314822511971 0.0592678085587 2.38000439015e+13 +UniRef50_R4K2V5 Phosphatidate cytidylyltransferase 0.000214887659684 0.00137783290954 4.69495268311e+11 +UniRef50_UPI0002B41FFA PREDICTED 6.91155891341e-06 4.64619820241e-06 -914553918.133 +UniRef50_Q5H5P3 Integral membrane protein 8.29663312346e-06 0.06248737091 2.522356899e+13 +UniRef50_UPI00046F521F ribonucleoside hydrolase, partial 8.88573458678e-06 5.80196141169e-05 19835950106.8 +UniRef50_UPI00036EE5B3 endonuclease 8.84565813259e-05 0.000165004225743 30903223396.4 +UniRef50_UPI0003B7257B TetR family transcriptional regulator 7.24634714497e-05 7.20076022857e-05 -184039975.651 +UniRef50_C4U4D5 5.8802189703e-05 6.41585800394e-05 2162440509.11 +UniRef50_A4X048 0.000786422430849 0.000401854706556 -1.55254709474e+11 +UniRef50_A7GMD4 2 oxoglutarate dehydrogenase E1 component 5.329557137e-06 0.000418319637284 1.66729163314e+11 +UniRef50_H8GVT2 Cytochrome P450 0.000100573531661 0.0474756170523 1.91258864264e+13 +UniRef50_UPI00016C05CE glycogen starch alpha glucan phosphorylase 0.000632550941626 0.00153541029098 3.64495398664e+11 +UniRef50_UPI0003C13A7A PREDICTED 9.54813530928e-06 8.31517912632e-05 29714699127.0 +UniRef50_UPI00047D9051 hypothetical protein 0.000335690007277 0.000114209131322 -89414547499.0 +UniRef50_UPI00046657E8 hypothetical protein 1.67704013358e-05 7.31284328736e-07 -6475188357.87 +UniRef50_S4MC93 0.00035774733061 0.000312281141212 -18355258592.9 +UniRef50_P52067 Fosmidomycin resistance protein 0.00217636788641 0.00117454805599 -4.04446959252e+11 +UniRef50_A0A059DRC5 0.000219847190836 8.34085961124e-05 -55081934979.9 +UniRef50_S5CP54 0.000158156601349 0.00662009964046 2.60876570185e+12 +UniRef50_P12655 PTS system sucrose specific EIIBCA component 0.00421321265955 0.00099123625233 -1.30075141369e+12 +UniRef50_A3CNS7 0.00907791188288 0.00884019256131 -95970207261.9 +UniRef50_D3DZS9 ABC transporter ATP binding protein 0.00366346890755 0.00120590444208 -9.92148932418e+11 +UniRef50_Q00277 Glutathione peroxidase 0.00606583482233 0.00145580599575 -1.86112520871e+12 +UniRef50_UPI00046E9599 hypothetical protein 6.86331472052e-06 3.58280171403e-05 11693405803.7 +UniRef50_A6UGG8 2.57726533676e-06 3.01131687212e-05 11116582099.8 +UniRef50_UPI0003F4971B hypothetical protein TREMEDRAFT_28317 8.30692322542e-06 5.35310911676e-05 18257551561.2 +UniRef50_UPI00029A7679 histidine kinase 5.09012454788e-05 0.000104874073389 21789492948.4 +UniRef50_Q5YRD1 Methionine import ATP binding protein MetN 2.34829594014e-05 8.33825182062e-06 -6114104296.83 +UniRef50_UPI0004561653 hypothetical protein PFL1_00418 1.44351542592e-05 1.6930141662e-05 1007257031.45 +UniRef50_C5MYZ4 0.0157058398563 0.0029073386529 -5.16691199108e+12 +UniRef50_A0A059IL85 4.3909652103e-05 3.60330953846e-05 -3179862603.44 +UniRef50_P36674 HTH type transcriptional regulator TreR 0.00204397456903 0.00244413423677 1.61549368378e+11 +UniRef50_UPI000360C55F hypothetical protein 5.98192800769e-06 3.44116182315e-05 11477414814.9 +UniRef50_E2PIJ4 0.00102950724232 0.00218130469219 4.64994764657e+11 +UniRef50_Q99QS1 Protein map 0.0060240792885 0.000743240575922 -2.13193939145e+12 +UniRef50_V6JB74 Thioesterase superfamily protein 2.89059043789e-05 0.000788673671916 3.06727571154e+11 +UniRef50_UPI00030E967A hypothetical protein 5.10257720516e-06 1.09033715407e-05 2341851857.01 +UniRef50_B5FD80 Type VI secretion protein, family 6.24297267153e-06 9.63935303958e-06 1371160432.86 +UniRef50_Q67KF8 Phosphoribosylformylglycinamidine synthase 2 1.77683552199e-05 3.24065620478e-06 -5865010367.31 +UniRef50_Q5GVA4 Dehydrogenase 0.000844599915232 0.0044410477957 1.45193014272e+12 +UniRef50_A4EC20 5.86619003005e-05 4.57209879124e-05 -5224405133.93 +UniRef50_C3M9I7 0.00017268983657 5.74324696195e-05 -46530813404.7 +UniRef50_Q7X1N2 Lfe103p1 2.53626234397e-05 6.37290777491e-05 15489008414.0 +UniRef50_L7WUJ3 ABC transporter permease 0.00749172007414 0.00410359688673 -1.3678269077e+12 +UniRef50_P36672 PTS system trehalose specific EIIBC component 0.00348580978333 0.00448846038804 4.04782353028e+11 +UniRef50_UPI0003CFF16B SsrA binding protein 1.09328068852e-05 3.76746411507e-05 10796006652.2 +UniRef50_Q9VQX4 Nicotinate phosphoribosyltransferase 2.78788704917e-06 7.95108143169e-06 2084444931.74 +UniRef50_W0NF85 4.77447072474e-06 6.61782828567e-06 744186067.888 +UniRef50_UPI0003A03E70 FAD dependent oxidoreductase 2.76775127724e-05 1.01169724679e-05 -7089405612.99 +UniRef50_O67642 Transketolase 5.82247897919e-06 1.07195573749e-05 1977010642.26 +UniRef50_L7DMI2 0.000930544261681 0.000121953453206 -3.26438031906e+11 +UniRef50_P77263 Probable fimbrial chaperone EcpE 0.00410762734431 0.000255685459043 -1.55507620773e+12 +UniRef50_UPI0003B721B0 ATPase P 2.66782867982e-06 2.72188900409e-05 9911564746.88 +UniRef50_Q11I48 ATP dependent Clp protease proteolytic subunit 2 7.7979696401e-06 0.000306027673785 1.20398991253e+11 +UniRef50_A1B0S4 Transposase, IS5 family 0.000306837909612 0.000128754718473 -71894369589.3 +UniRef50_P23840 DNA damage inducible protein D 0.00157981000808 0.00143570803253 -58175735859.6 +UniRef50_I1Y3Y4 Multidrug resistance efflux pump 0.000538408292668 0.0054899375577 1.99899312639e+12 +UniRef50_D4J6G0 Amino acid ABC transporter substrate binding protein, PAAT family 0.00281348997862 0.000874316134225 -7.82868277319e+11 +UniRef50_UPI0003644DE3 hypothetical protein 2.89671946234e-05 5.32933931082e-06 -9542892258.8 +UniRef50_A8FNH9 Carboxynorspermidine carboxyspermidine decarboxylase 6.91463769744e-05 8.41177223149e-06 -24519305232.1 +UniRef50_L7UHD0 DGPF domain containing protein 4.71875756953e-05 2.49290811974e-05 -8986027371.25 +UniRef50_UPI00046ADB22 3 hydroxyisobutyrate dehydrogenase 7.74342288829e-06 8.73457519056e-06 400140347.233 +UniRef50_A6LZ68 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.000424320049013 0.000499387474997 30305641050.6 +UniRef50_P77154 0.00178739776729 0.00121963045875 -2.29214629746e+11 +UniRef50_UPI00029AD7C0 ribosomal large subunit pseudouridine synthase A, partial 0.000384195037709 7.25258829261e-05 -1.25824662397e+11 +UniRef50_A5UM01 Pheromone shutdown protein, TraB family 0.00247638550246 0.00134747560098 -4.5575478051e+11 +UniRef50_Q02RK7 0.000728722208372 0.000194074505054 -2.15843838695e+11 +UniRef50_Q9RVA9 Probable butyrate kinase 9.57276387603e-05 0.00128239424401 4.79071870576e+11 +UniRef50_Q8XMG8 Zinc transporter ZupT 0.000119963767644 0.000536874721219 1.68312068031e+11 +UniRef50_A1W1W9 3 isopropylmalate dehydratase small subunit 1.19296027404e-05 2.26478447543e-05 4327085828.63 +UniRef50_E6MWH5 0.00224337068985 0.00260573563408 1.46291174704e+11 +UniRef50_S5N5Q9 Ribulose phosphate 3 epimerase 0.000819174802876 0.00205266893707 4.97976718648e+11 +UniRef50_Q8XI79 Putative pyruvate, phosphate dikinase regulatory protein 0.000232061058724 0.0011330555826 3.63742545735e+11 +UniRef50_Q6ZKP4 8.31037641478e-05 3.74387782484e-05 -18435515180.0 +UniRef50_UPI0003B52784 ATPase 5.75239184644e-06 3.61564552382e-06 -862630711.268 +UniRef50_Q87QK9 Histidine biosynthesis bifunctional protein HisB 0.000911200984642 0.000354844347581 -2.24608001645e+11 +UniRef50_D8LJV9 3.57580665174e-05 5.58606630291e-05 8115664898.37 +UniRef50_UPI0003625364 alkaline phosphatase 5.75414261513e-06 3.29535977939e-06 -992640803.447 +UniRef50_H9UZ27 0.000794942020893 0.00053693946399 -1.04158798269e+11 +UniRef50_F3U4H9 0.00130997634709 0.000462287616326 -3.4222234292e+11 +UniRef50_A0A022NNU5 8.88518243538e-05 1.71604656927e-05 -28942681243.4 +UniRef50_A5ULV6 Ribonuclease HII 0.00300657107502 0.000284871419803 -1.09878354982e+12 +UniRef50_UPI00036D09DC hypothetical protein, partial 5.43824717982e-05 1.79665267805e-05 -14701563877.5 +UniRef50_F9Z1I9 3 oxoacyl [acyl carrier protein] synthase 1 0.000461460406091 0.00477535766012 1.74157325892e+12 +UniRef50_UPI0003B52617 transporter 0.000227603734835 4.02957882144e-05 -75618516577.9 +UniRef50_H5Y2B5 Cytosine deaminase like metal dependent hydrolase 8.57273252495e-05 0.00118128824708 4.42291388187e+11 +UniRef50_P16678 Putative phosphonates utilization ATP binding protein PhnK 0.00271970167633 0.000272181295113 -9.88094012351e+11 +UniRef50_B4RDA5 1.71103444027e-05 4.65761627788e-05 11895712464.7 +UniRef50_UPI00015FC63D hypothetical protein 0.000151282223013 5.32226048435e-05 -39587871181.9 +UniRef50_U6LWE1 1.04748990013e-05 1.14716119181e-05 402385235.555 +UniRef50_Q8CTH6 Urea amidolyase 0.0189818111781 0.00457581813622 -5.81587617243e+12 +UniRef50_Q9RRX1 Acyl CoA dehydrogenase, putative 0.000147444917754 0.0531942052309 2.14156280953e+13 +UniRef50_UPI00035ED69A hypothetical protein 5.40722671001e-06 8.15881019073e-06 1110848016.89 +UniRef50_Q8A1F7 Elongation factor P 1.58786034046e-05 0.0065645201445 2.64376695101e+12 +UniRef50_A3PHK3 ComEC Rec2 related protein 0.000877295710645 0.000197497658938 -2.74442815534e+11 +UniRef50_P46920 Glycine betaine transport ATP binding protein OpuAA 0.00459674635824 0.00447427891711 -49441608828.7 +UniRef50_UPI00035CE6C9 hypothetical protein 0.000202867599011 3.80399362617e-05 -66542950114.6 +UniRef50_I7BZ98 1.64279156742e-05 0.000637310285562 2.50657831807e+11 +UniRef50_U3T4G5 Pseudouridine synthase 0.000541845917011 0.00861812180895 3.26049168463e+12 +UniRef50_D6M2H8 Fatty oxidation complex, alpha subunit 0.000320612664711 0.000771731647059 1.82122269026e+11 +UniRef50_UPI00047E1145 sugar ABC transporter permease 0.00355996176418 0.000685775888195 -1.16034410836e+12 +UniRef50_P44468 Rod shape determining protein RodA 0.000423400043966 0.000161817372704 -1.05604134369e+11 +UniRef50_UPI0004255E92 adenylosuccinate synthetase 1.90407271338e-05 1.30306912679e-05 -2426325230.5 +UniRef50_G8VQJ8 0.000259143699447 0.00698571364398 2.7155988309e+12 +UniRef50_R9IVY1 1.52114184662e-05 0.004097579608 1.6481021344e+12 +UniRef50_UPI000346609E hypothetical protein 4.14152799715e-06 6.08732020474e-06 785540191.76 +UniRef50_UPI000478591D amino acid ABC transporter permease 2.17703288817e-05 4.48057822709e-05 9299695210.02 +UniRef50_UPI000479F6B7 transporter 2.69775984851e-05 0.000199357786174 69591997112.8 +UniRef50_Q9RY77 Phosphate acetyltransferase 4.09872310179e-06 0.0215410898964 8.69474762526e+12 +UniRef50_C9CZK5 0.000131769352783 9.55312495184e-05 -14629766979.5 +UniRef50_Y5PA95 1.82108238854e-05 2.64770361678e-05 3337171336.24 +UniRef50_A6M280 RelA SpoT domain protein 0.00122526368747 0.0041141556324 1.16628112886e+12 +UniRef50_O32035 0.0192825334003 0.00248698571214 -6.78056870627e+12 +UniRef50_O32034 0.0222695974246 0.00555000856796 -6.74990319384e+12 +UniRef50_UPI000467BFBE hypothetical protein 1.76155561431e-05 0.000123700533988 42827807365.1 +UniRef50_UPI0002B4A544 4.9770038448e-07 4.07776717737e-05 16261518740.7 +UniRef50_B8J198 Lon protease 4.85677086175e-06 4.45031583673e-06 -164090881.365 +UniRef50_A6M0E8 TPR repeat containing protein 0.000309024063976 0.000803119987383 1.99472587518e+11 +UniRef50_L8E534 Undefined function 0.00308482605995 0.00116451614519 -7.75252677441e+11 +UniRef50_Q03K84 Phosphoribosyl ATP pyrophosphatase 0.00131485339287 0.0010076174605 -1.24034916107e+11 +UniRef50_P34559 Probable enoyl CoA hydratase, mitochondrial 8.83951690476e-06 1.65801515694e-05 3124989202.38 +UniRef50_U1EG57 3.92919240134e-05 0.000152594129773 45741490839.7 +UniRef50_A6M1X1 FMN binding domain protein 0.000516279836014 0.00117829586626 2.67263995261e+11 +UniRef50_UPI00035DE7E6 hypothetical protein 7.08492961009e-06 2.51051795707e-05 7274996042.43 +UniRef50_A0A023S135 Ferrous iron transporter B 0.000549736876965 0.0115642022308 4.44667482602e+12 +UniRef50_P33224 Putative acyl CoA dehydrogenase AidB 0.00373902454694 0.00108251365615 -1.07246604567e+12 +UniRef50_W5X8Z0 Ribose phosphate pyrophosphokinase 1.89606206925e-05 1.65731157611e-05 -963865038.786 +UniRef50_UPI000378494C hypothetical protein 0.000143473277397 6.12769494843e-05 -33183666240.7 +UniRef50_UPI0003B44A26 membrane protein 5.18520910706e-06 0.00103989937472 4.17726806027e+11 +UniRef50_N0AUD5 0.000240516974948 2.94791027639e-05 -85198578726.6 +UniRef50_M4WTT8 0.000249440080738 0.00026057356341 4494723577.88 +UniRef50_X6L243 0.00051456069069 0.000134071258569 -1.53608252878e+11 +UniRef50_UPI0003F95F23 phosphonate ABC transporter ATP binding protein 9.86836993847e-06 0.000111168036762 40895918583.5 +UniRef50_R5G6K3 Histidinol phosphate phosphatase HisJ family 0.000191293575433 0.00050321563993 1.25926765152e+11 +UniRef50_UPI00047094F6 ABC transporter 3.88380847905e-06 1.33642628266e-05 3827375758.36 +UniRef50_Q9RS47 Uracil permease 0.000257493506759 0.0227836959836 9.09410436747e+12 +UniRef50_UPI000360D3DC hypothetical protein 5.02406901305e-06 0.000173265353639 67921071156.2 +UniRef50_W5X572 L aspartate aminotransferase 2.3107970826e-06 3.35640392357e-05 12617317377.6 +UniRef50_UPI0002ECDC1A hypothetical protein 4.63564673417e-06 6.86068578189e-06 898275567.864 +UniRef50_W6IAM9 Putative membrane spanning protein 1.10833186687e-06 1.96018066643e-06 343901813.743 +UniRef50_A5ULW0 0.00384399294531 0.000917465041578 -1.18147522727e+12 +UniRef50_UPI0003B49F43 hypothetical protein 3.75532743659e-05 5.03889230957e-05 5181908903.34 +UniRef50_Q9MUN1 Sulfate thiosulfate import ATP binding protein CysA 0.000117384284026 5.31804455429e-05 -25919877465.3 +UniRef50_H5FVP6 Amidohydrolase family protein 0.000480959390166 0.000136090647547 -1.39227743411e+11 +UniRef50_A6LXR8 hydrogenase maturation protein HypF 0.000843671853631 0.00153450821843 2.78899117985e+11 +UniRef50_C0VQW3 6.54339857247e-06 0.000108705535652 41244108409.6 +UniRef50_UPI000471077D hypothetical protein, partial 7.12238041405e-06 1.55443768174e-05 3400063297.55 +UniRef50_Q5H2Q9 IS1478 transposase 3.63207482007e-05 2.83227934887e-05 -3228872463.18 +UniRef50_G8AGV1 RepB plasmid partition 1.95383615074e-06 1.129302826e-05 3770346459.28 +UniRef50_H2JWP6 Permease for cytosine purines uracil thiamine allantoin 7.94707344991e-05 0.00579436111513 2.30717137625e+12 +UniRef50_W6K6P7 0.00178344578038 0.000942500122969 -3.3950008146e+11 +UniRef50_UPI00047DE1A1 spermidine putrescine ABC transporter substrate binding protein 8.17412784086e-06 0.000194481319863 75214499665.6 +UniRef50_E1Q026 Iron regulated outer membrane protein 0.000177131573659 0.00576244977216 2.2548614963e+12 +UniRef50_D8GLI1 0.000262143047812 0.00122482886349 3.88648077273e+11 +UniRef50_UPI00046EAE05 2 amino 3 ketobutyrate CoA ligase 3.4402725433e-05 8.32174359318e-06 -10529212418.4 +UniRef50_C4ZA66 Xanthine phosphoribosyltransferase 2.3788113858e-05 4.16351219371e-05 7205056168.95 +UniRef50_F0Y306 Expressed protein 5.30495330086e-05 0.000225863230617 69767010386.9 +UniRef50_D8JG86 Sensor protein gacS 9.19623735464e-05 0.00536989537175 2.13076631889e+12 +UniRef50_UPI00029A8D53 alpha amylase, catalytic subdomain 5.13561924834e-06 2.93891979105e-05 9791467330.81 +UniRef50_UPI0004785413 hypothetical protein 3.26114025268e-05 3.45112972587e-05 767010817.598 +UniRef50_D3QI48 RND multidrug efflux transporter Acriflavin resistance protein 0.0121518293451 0.00285767655938 -3.75216353168e+12 +UniRef50_K0SH63 6.35288603168e-05 0.000423377036971 1.45275124749e+11 +UniRef50_UPI00028A1721 3 oxoacyl ACP reductase 4.38911243546e-06 5.54597887106e-05 20617858719.9 +UniRef50_A6LZZ2 0.00153262881566 0.000518015641142 -4.09611789257e+11 +UniRef50_UPI00037FAA98 hypothetical protein, partial 7.45545589806e-05 4.68826047022e-05 -11171507515.3 +UniRef50_Q5F653 7.83165951945e-05 0.00215307533758 8.37605564456e+11 +UniRef50_Q0A911 Beta hexosaminidase 1.88565193693e-05 3.06259493478e-05 4751463309.47 +UniRef50_D3NSC7 sn glycerol 3 phosphate transport system substrate binding protein 7.45093599332e-06 5.83698771707e-06 -651570724.495 +UniRef50_W6M4I0 1.12389641899e-05 0.000393281939311 1.54235437251e+11 +UniRef50_UPI0002378B1B glutathione dependent formaldehyde activating protein 4.36045039317e-05 6.81049796057e-05 9891142684.24 +UniRef50_E6U6T7 LemA family protein 0.00112124551144 0.000719635868098 -1.62134741322e+11 +UniRef50_Q1J1I0 O antigen polymerase 0.00016629338716 0.0254571932968 1.02102466477e+13 +UniRef50_UPI00047AE469 hypothetical protein 1.11050789278e-05 3.10313867524e-05 8044494992.09 +UniRef50_Z7T5S7 4.51907673512e-05 8.91297903088e-05 17738722760.4 +UniRef50_P39160 D mannonate oxidoreductase 0.0069161112056 0.00252223745215 -1.77386075316e+12 +UniRef50_UPI0003594B33 PREDICTED 4.15125577144e-05 2.04988802556e-05 -8483479456.94 +UniRef50_A6LZZ5 0.000496829472686 0.00149135069072 4.01500419868e+11 +UniRef50_UPI000255C6FB ADP ribose pyrophosphatase 1.74476226376e-05 0.000111812262122 38096162944.2 +UniRef50_P64555 7 carboxy 7 deazaguanine synthase 0.0015782923388 0.00121121615205 -1.48193161122e+11 +UniRef50_B9E3V1 0.000759819500351 0.000404558899058 -1.4342306428e+11 +UniRef50_UPI00036B19F3 hypothetical protein 2.3784329761e-06 0.000154705233477 61496198622.3 +UniRef50_A0A031MEU2 ATPase 1.73526008415e-05 6.48656935404e-06 -4386750252.7 +UniRef50_UPI0003ACEC40 hypothetical protein 6.72821354282e-05 2.08448366528e-05 -18747307365.4 +UniRef50_B2TJ96 Nudix family hydrolase 0.000766555119553 0.00163687387631 3.51358362115e+11 +UniRef50_W5BNZ7 7.72359308498e-06 1.3427016144e-05 2302541877.8 +UniRef50_A1U0K1 1,4 alpha glucan branching enzyme GlgB 3.84798542487e-06 7.48850876751e-06 1469723947.67 +UniRef50_I6TPZ0 Permease 0.00408799558549 0.000195790080794 -1.57133112498e+12 +UniRef50_A6LXJ6 Diguanylate cyclase 0.000205155428724 0.00123501167588 4.15765604736e+11 +UniRef50_G8V5E5 Coagulase family protein 0.00947424866577 0.00207634032504 -2.9866263797e+12 +UniRef50_Q5Z8R4 6.0620691136e-06 1.32289793957e-05 2893369628.76 +UniRef50_H3FSC0 0.000101226352186 1.69027803684e-05 -34042460709.4 +UniRef50_UPI0003B6DB9D anthranilate synthase subunit I 1.36509235275e-05 4.98954784012e-05 14632371573.2 +UniRef50_A8AY72 Glycosyl transferase, family 8 SP1766 0.000534061447799 0.000158205377791 -1.51737707735e+11 +UniRef50_U4PWQ9 DNA gyrase subunit A 0.011134047428 0.00386367116224 -2.93514011604e+12 +UniRef50_A0A011QMZ0 0.00190433151023 0.000331196304892 -6.35093986936e+11 +UniRef50_UPI0003292DB3 PREDICTED 1.96918075461e-05 3.45672160025e-05 6005384935.64 +UniRef50_Q8KDG0 Prolipoprotein diacylglyceryl transferase 5.28628688069e-06 1.10977009067e-05 2346139156.37 +UniRef50_M4XH87 0.0032867367212 0.000371467553704 -1.1769299373e+12 +UniRef50_UPI00047B1D04 DNA repair protein RadA 5.14111376452e-06 4.93072692929e-06 -84935747.1191 +UniRef50_UPI00037F4D6C hypothetical protein, partial 7.55549839673e-06 1.92686222481e-05 4728731835.0 +UniRef50_UPI000463A207 glycoside hydrolase 8.04755903862e-05 4.96504410956e-05 -12444491035.7 +UniRef50_UPI000462BEE8 hypothetical protein 1.74788509248e-05 0.00204745880296 8.19527817294e+11 +UniRef50_UPI0003C175AF 4.09886979926e-05 2.17506402903e-05 -7766639971.93 +UniRef50_Q07637 Pyruvate kinase 0.00554048499219 0.00463314984442 -3.66302333409e+11 +UniRef50_P60543 Phosphoribosyl AMP cyclohydrolase 0.00330022842704 0.00425636872028 3.86005569542e+11 +UniRef50_O03063 ATP synthase subunit beta, chloroplastic 1.52151036883e-05 9.45936111063e-06 -2323663909.51 +UniRef50_Q1I6V1 0.000106071283675 4.51641326141e-05 -24588964298.1 +UniRef50_M5Q933 Clumping factor 0.000613126540622 0.00050870817159 -42154976935.7 +UniRef50_V6Q8F3 0.0213988305269 0.00376499755387 -7.11899476266e+12 +UniRef50_Q1AU48 50S ribosomal protein L15 0.027577613847 0.00504782880356 -9.09555069357e+12 +UniRef50_O83675 DNA polymerase III subunit alpha 5.93265733226e-06 8.98800749364e-06 1233482353.51 +UniRef50_T2DYY9 Bacterial type II and III secretion system family protein 0.00102211583538 0.000406555349265 -2.48509322021e+11 +UniRef50_A6U466 0.000131700917714 0.00112859887336 4.02459938008e+11 +UniRef50_Q8GFD7 MobA 0.000332087227834 4.54936245674e-05 -1.15701354538e+11 +UniRef50_F5XM79 0.000336191020962 0.00544719796078 2.06337622071e+12 +UniRef50_B7UXA6 Flagellar L ring protein 0.000384876383243 0.000567112411859 73570921039.8 +UniRef50_UPI0003789BA4 hypothetical protein 1.39486283132e-05 3.55292053207e-05 8712343761.39 +UniRef50_UPI0003B325A0 short chain dehydrogenase 1.1707467713e-05 4.44111229989e-05 13202866957.9 +UniRef50_Q06ZX9 2.75863211756e-05 0.000137282803604 44285816083.4 +UniRef50_D4KHH9 Alcohol dehydrogenase, class IV 0.000101931410131 0.00183026528076 6.97749592615e+11 +UniRef50_UPI00046FD571 hypothetical protein, partial 3.68714596787e-05 0.00021123705693 70393531316.7 +UniRef50_E0IXG6 0.00045158265196 0.00105773717125 2.4471201779e+11 +UniRef50_Q2FYR1 Aminoacyltransferase FemB 0.0178541464293 0.00353719740354 -5.77992801044e+12 +UniRef50_Q8PI35 6.14962753154e-05 7.47412694261e-05 5347166656.84 +UniRef50_R9SLG3 HD domain containing protein 0.00362077164333 0.000480597673454 -1.26772676591e+12 +UniRef50_UPI000348EEAA RNA helicase 2.60788949725e-05 4.49642805009e-05 7624261887.56 +UniRef50_F9CJM1 0.000102405174997 0.000791026888919 2.78005036249e+11 +UniRef50_T0TL30 0.00484919848617 0.000646094250825 -1.6968447577e+12 +UniRef50_O05956 Endonuclease III 0.0142690824359 0.00192240843871 -4.9845038034e+12 +UniRef50_E4DG75 Helicase C terminal domain protein 0.000320196634375 0.00566606278949 2.15819176798e+12 +UniRef50_UPI0003721D8E hypothetical protein 9.89879382944e-06 2.44139592528e-05 5859950402.54 +UniRef50_F8ABT6 TRAP transporter solute receptor, TAXI family 0.000117855168938 0.000112194173777 -2285413214.72 +UniRef50_UPI000369C5C3 hypothetical protein 3.62131131331e-06 2.46749824828e-05 8499625408.73 +UniRef50_Q48656 Aminopeptidase N 0.0043008628774 0.00615863999066 7.50007418112e+11 +UniRef50_UPI0004544631 PREDICTED 3.36606668357e-05 0.000318938784929 1.1517027703e+11 +UniRef50_UPI0000D9989C PREDICTED 3.15830432221e-06 3.18411804011e-06 10421314.6862 +UniRef50_Q8YX97 Valine tRNA ligase 2.98329819769e-06 2.17511225306e-06 -326274583.404 +UniRef50_A3CRB9 Energy coupling factor transporter ATP binding protein EcfA1 0.00790892298894 0.0118898709521 1.60715754445e+12 +UniRef50_B6IXR1 Replication protein A, putative 0.000107942522011 3.00447093003e-05 -31448302905.0 +UniRef50_UPI00047D3AFF hypothetical protein 2.61450638686e-06 4.17492012152e-06 629958173.112 +UniRef50_L5KY59 0.00019615403736 3.1685761344e-05 -66397861280.4 +UniRef50_C5MZU4 Uroporphyrinogen III C methyltransferase 0.0128995940244 0.00391278318903 -3.62808581481e+12 +UniRef50_UPI0003809E92 hypothetical protein 0.000872259865734 0.000548115766357 -1.30860950614e+11 +UniRef50_UPI000411FAC5 hypothetical protein 7.20801642117e-06 5.00514283551e-05 17296411145.5 +UniRef50_UPI0002B964D7 hypothetical protein 0.000137786941122 3.71767906084e-05 -40617552387.9 +UniRef50_Q5HKN0 UPF0312 protein SERP2314 0.0106164419685 0.000688119189111 -4.00818574026e+12 +UniRef50_M1MSQ2 Methyl accepting chemotaxis protein 0.000624803421619 0.000869907891557 98951682284.0 +UniRef50_E0TB06 1.60633812371e-05 2.51715115062e-05 3677063958.96 +UniRef50_M9R6I4 2.16758446181e-05 1.39830484123e-05 -3105676229.51 +UniRef50_UPI000476DD64 acetolactate synthase catalytic subunit 1.90902602677e-05 1.69741306799e-05 -854307482.425 +UniRef50_P09431 Nitrogen regulation protein NtrB 0.0058937018836 0.000493630095444 -2.18007524721e+12 +UniRef50_E2QNK3 PTS system galactitol specific enzyme IIC component 0.000123630782379 0.00957852684744 3.81705756609e+12 +UniRef50_E3DQN8 Lipoprotein 3.23804433189e-05 4.67343809066e-05 5794860746.78 +UniRef50_C9U0N0 Acyl CoA dehydrogenase 0.000529471203513 0.000685128820353 62840890052.1 +UniRef50_Q57QC3 Virulence transcriptional regulatory protein PhoP 0.00475020971055 0.00173845147417 -1.21588375846e+12 +UniRef50_K6UZ95 Benzoate transport porin BenP 0.000228318138423 0.00380975251275 1.44586900606e+12 +UniRef50_UPI00036BFE12 hypothetical protein 3.06860341385e-06 0.00019291238228 76642263173.3 +UniRef50_F5LYA7 0.00251107528548 0.00508656143347 1.03975536271e+12 +UniRef50_B5YRT3 Transposase InsI for insertion sequence element IS30B C D 0.00627876232202 0.000444723418224 -2.35527309717e+12 +UniRef50_UPI00039A65D3 MULTISPECIES 1.51086504085e-05 9.40432695259e-06 -2302905379.07 +UniRef50_F0KEE0 Membrane flavodoxin oxidoreductase 0.000502388050647 0.000608678835417 42910894146.3 +UniRef50_L7WYV5 Dihydroxyacetone kinase subunit DhaK 0.0243269613471 0.00359019264559 -8.37168799356e+12 +UniRef50_O26914 Probable threonylcarbamoyladenosine tRNA methylthiotransferase 0.00302646513729 0.000165908261343 -1.1548419138e+12 +UniRef50_D4GIJ6 YyaJ 0.000177922554112 0.00750791400857 2.95920749928e+12 +UniRef50_B2JED1 6,7 dimethyl 8 ribityllumazine synthase 1.77930090337e-05 7.74850806244e-05 24098421805.3 +UniRef50_Q6AA35 NAD transhydrogenase subunit alpha 0.000153763885274 0.00435916063617 1.69777027436e+12 +UniRef50_R4Q3R7 Tetratricopeptide repeat family protein 1.02331795288e-05 7.50791412271e-06 -1100223087.21 +UniRef50_P33341 Outer membrane usher protein YehB 0.00192717668067 0.00262921601492 2.83421894228e+11 +UniRef50_P0A6B3 Acyl carrier protein 0.0133955596999 0.00999842154002 -1.37146636272e+12 +UniRef50_M9VIB3 Type III restriction enzyme, res subunit 6.6303159637e-05 0.00595267119433 2.37639900946e+12 +UniRef50_D3EJ05 Cytochrome bd type ubiquinol oxidase subunit II 0.0172877263814 0.00626645424125 -4.44942280922e+12 +UniRef50_Z4WXY4 0.00238086637257 0.000812815335304 -6.33041445896e+11 +UniRef50_A0A011NRP5 Tellurite resistance protein TerB 3.35163766064e-05 9.82794722521e-06 -9563309630.91 +UniRef50_Q39GU7 Transcriptional regulator, HxlR family 4.73209455078e-05 0.00479872549471 1.9182003228e+12 +UniRef50_UPI0003822F5F hypothetical protein 0.000102855020686 7.5913802911e-05 -10876500221.7 +UniRef50_B9DLQ3 TcaB protein 0.0252361838304 0.00634674290883 -7.62589909956e+12 +UniRef50_Q3AC01 Dihydroorotase 4.62784421202e-06 9.66250621185e-06 2032554831.58 +UniRef50_D1CTE1 Replication protein RepA 9.25558371926e-05 6.8791184684e-05 -9594081842.8 +UniRef50_A9G7W0 Probable bifunctional SAT APS kinase 2 3.32630066782e-06 0.00019931264466 79122092092.5 +UniRef50_A6LQC9 0.000309414744966 0.00144465008854 4.58308439103e+11 +UniRef50_D4HAA4 NlpC P60 family protein 0.000150193364259 0.00341552370466 1.31825392853e+12 +UniRef50_Q2CCV7 0.00056938969883 0.000332925366387 -95463552750.9 +UniRef50_P69743 Hydrogenase 2 small chain 0.00328809742048 0.000767532454686 -1.0175830075e+12 +UniRef50_UPI0003B574AD hypothetical protein 6.25289368052e-05 3.08439646255e-05 -12791612087.3 +UniRef50_V9VZ32 0.000790458637027 0.000210385017086 -2.34182838674e+11 +UniRef50_Q9X429 CylG 0.00078468636418 0.000327523148093 -1.84562400358e+11 +UniRef50_K0RNQ3 0.00126229391177 0.00028214971834 -3.95696238609e+11 +UniRef50_UPI00047375C6 XRE family transcriptional regulator, partial 3.99668421902e-05 1.89520133916e-05 -8483944266.94 +UniRef50_P00914 Deoxyribodipyrimidine photo lyase 0.0026413251553 0.00161740854284 -4.1336770132e+11 +UniRef50_UPI000350AF0A PREDICTED 2.83260320517e-06 1.01339497882e-06 -734436685.173 +UniRef50_W7ST93 0.00011301975714 0.00119820617911 4.38103075284e+11 +UniRef50_Q9RXT4 Phosphoribosylformylglycinamidine synthase 2 6.21458368296e-06 0.0138241782778 5.57848150879e+12 +UniRef50_A0KFN8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.87549981139e-05 5.52941199019e-06 -5339331414.33 +UniRef50_B9L9J4 0.000209326796037 0.00270606078645 1.0079621503e+12 +UniRef50_UPI0003C12600 1.84712287898e-05 3.54554300041e-05 6856730449.8 +UniRef50_Q9I4U3 DNA recombination protein RmuC homolog 0.00050681757557 0.00170997370487 4.85728893784e+11 +UniRef50_UPI0003C176FD PREDICTED 2.36110590491e-06 0.000103075740127 40659733743.0 +UniRef50_UPI00022CAACE PREDICTED 8.2700175199e-05 5.83544262361e-05 -9828677612.26 +UniRef50_A5UZW4 Triosephosphate isomerase 1.45227456022e-05 5.74300169551e-05 17322191976.6 +UniRef50_UPI0002557ECE hypothetical protein 1.58826851002e-05 1.52557206261e-05 -253113251.913 +UniRef50_W1PEW2 1.30907068881e-05 2.23837545244e-06 -4381219373.67 +UniRef50_UPI00026276DF cell division protein FtsZ 8.73687859274e-06 9.56177853871e-06 333022230.849 +UniRef50_R4RK88 Ferrichrysobactin receptor 0.000129626831276 0.000280196432526 60786795721.4 +UniRef50_UPI00035C5909 hypothetical protein 1.40424184592e-05 0.000175774062098 65293049207.5 +UniRef50_UPI0003819143 30S ribosomal protein S5 1.27897800331e-05 1.40721790516e-05 517720220.574 +UniRef50_H8L2T6 Flagellar hook capping protein 6.66107666239e-06 9.06468300322e-06 970365375.36 +UniRef50_UPI00037CA814 hypothetical protein 4.81551138649e-06 3.16864137045e-05 10848113008.8 +UniRef50_Q82S57 L sorbosone dehydrogenase 0.00100543522061 0.00019886646815 -3.2562170308e+11 +UniRef50_Q3JSM3 1.50494369559e-05 2.8789035581e-05 5546844568.79 +UniRef50_H4Q189 HdhA domain protein 3.77690715698e-05 0.000330552930043 1.18200436528e+11 +UniRef50_UPI0003B6CB71 sulfonate ABC transporter ATP binding protein 5.13284618379e-05 2.70209832084e-05 -9813227409.03 +UniRef50_B0VPR5 0.000306468466276 0.00592010089146 2.26629229706e+12 +UniRef50_B2HZL6 Cobalamin synthase 0.000154075913818 0.00570820544599 2.24227024897e+12 +UniRef50_Q9HV71 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000708934065062 0.000784908294054 30671728552.7 +UniRef50_Q89VT1 Blr0964 protein 1.47151370516e-05 0.000827616600412 3.28178296181e+11 +UniRef50_G0VM95 Inner membrane transport protein YhaO 2.34789040921e-05 2.85289545944e-05 2038767358.87 +UniRef50_S4X2L4 Mercury transport protein 0.0101345858563 0.00244314356595 -3.10512963722e+12 +UniRef50_M7XVH9 0.000112979087244 0.000357569806377 98744274779.6 +UniRef50_A5UL22 DNA repair helicase 0.00261559551078 0.000927941796405 -6.81326514335e+11 +UniRef50_Q8TI16 Energy coupling factor transporter ATP binding protein EcfA 1.00863230139e-05 1.31644035549e-05 1242658886.7 +UniRef50_A4Y9D9 Peptidyl tRNA hydrolase 0.00112105413996 0.000611443586101 -2.05736034218e+11 +UniRef50_UPI000262C9FD ribonuclease, Rne Rng family protein 2.17494163806e-06 1.67390803533e-06 -202273413.796 +UniRef50_UPI00047C08EE short chain dehydrogenase 7.55969237554e-06 1.13088261504e-05 1513571311.96 +UniRef50_UPI00026257AD inosine uridine preferring nucleoside hydrolase, partial 8.92970214276e-06 3.57062880019e-05 10810036297.0 +UniRef50_D3QFZ0 Penicillin amidase V 0.0106202423416 0.00508979217296 -2.23271059934e+12 +UniRef50_UPI0003B42BB6 GntR family transcriptional regulator 2.18369763659e-05 4.85482653925e-05 10783675164.4 +UniRef50_Q49XR9 0.0186048008768 0.005676133054 -5.21946185266e+12 +UniRef50_M4R497 Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II 0.000107673689615 0.00647730187985 2.57149706453e+12 +UniRef50_Q9RSH0 Amino acid ABC transporter, periplasmic amino acid binding protein 0.000529318112793 0.0730961929478 2.92961378666e+13 +UniRef50_P0A0M5 Thymidylate synthase 0.0181731349413 0.00954795892753 -3.48208939957e+12 +UniRef50_A4VHG9 tRNA N6 adenosine threonylcarbamoyltransferase 0.00427081853895 0.0148486763185 4.27041099054e+12 +UniRef50_Q8CQ28 ABC transporter 0.0240270293557 0.00547106398333 -7.49127092814e+12 +UniRef50_UPI00046FA309 hypothetical protein 0.000138509477888 1.36841122583e-05 -50393531884.3 +UniRef50_Q1AS60 Glutamate tRNA ligase 2 4.48203596814e-06 5.15201944286e-06 270480550.366 +UniRef50_UPI00037B162D MULTISPECIES 7.17095078314e-05 1.21268087424e-05 -24054266784.2 +UniRef50_P52662 HTH type transcriptional regulator PecT 0.00275816168391 0.0012444199892 -6.11116097854e+11 +UniRef50_S9S860 2.06007863142e-05 9.12186169211e-06 -4634182732.19 +UniRef50_UPI0003D719FF 3.71604734836e-05 0.000139620773387 41364480400.1 +UniRef50_UPI000467E030 calcium binding protein, partial 3.40173475522e-05 5.47186407626e-05 8357366102.47 +UniRef50_A5UL93 Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA 0.00268936863328 0.000396204540274 -9.25778484636e+11 +UniRef50_F4A673 Hydrogenase maturation factor 0.00137150052624 0.000862596146583 -2.05450943027e+11 +UniRef50_A5F3A7 Aldehyde dehydrogenase 0.000285898751085 0.000124303029555 -65238175784.2 +UniRef50_Q8U1E4 Translation initiation factor 5A 0.00121839193345 0.00142945357351 85208174109.8 +UniRef50_Q5FPL0 GMP synthase [glutamine hydrolyzing] 4.63863651493e-05 2.45414202402e-05 -8819072327.42 +UniRef50_D8K701 UPF0125 protein Nwat_1827 0.000240788535107 3.39674089035e-05 -83496226629.2 +UniRef50_P63811 Pantothenate kinase 2.28964772681e-05 0.00982962184725 3.95909537391e+12 +UniRef50_F2L7R0 NAD NADP transhydrogenase alpha subunit like protein 6.90445917882e-05 7.93875962153e-05 4175597810.16 +UniRef50_D4H9R8 Triacylglycerol lipase 0.000122959605492 0.000780978135531 2.65650155372e+11 +UniRef50_M7DU42 Transcriptional regulator 0.020000401014 0.00201690014581 -7.26015998286e+12 +UniRef50_Q2S3A7 Phosphoglycerate kinase 1.26613379189e-05 6.02078225909e-05 19195099323.1 +UniRef50_UPI0003725ECA hypothetical protein 0.000144439603769 9.46587886666e-05 -20097125936.1 +UniRef50_P0AFS7 UPF0118 inner membrane protein YdiK 0.00138765668479 0.000221211015129 -4.7090843074e+11 +UniRef50_Q2RPW6 0.00178451391895 0.000355090226682 -5.77075885571e+11 +UniRef50_A0A024E8U2 Mandelate racemase muconate lactonizing enzyme family protein 0.00128339356896 0.000152618452293 -4.56507790771e+11 +UniRef50_I6U2V2 Transcriptional regulator 0.00437074281514 0.00283379297683 -6.20485510221e+11 +UniRef50_P45858 2 methylcitrate synthase 1.37783269286e-05 2.32746613714e-05 3833786747.69 +UniRef50_Q6CBZ1 YALI0C14234p 6.34366737652e-05 3.66382605505e-05 -10818848268.3 +UniRef50_W0YNG1 0.000456636276836 0.000562508009894 42741717827.8 +UniRef50_O26830 Putative phospho N acetylmuramoyl pentapeptide transferase 0.00251354107868 0.000167952628551 -9.46942840925e+11 +UniRef50_P23878 Ferric enterobactin transport ATP binding protein FepC 0.0029883307859 0.000330578401339 -1.07296725194e+12 +UniRef50_D9RDD4 0.0118574844678 0.00143913607484 -4.20601509377e+12 +UniRef50_K0HJZ6 HTH domain protein 0.000261449209184 0.00506221296237 1.93812723916e+12 +UniRef50_UPI00045603DB hypothetical protein PFL1_00982 0.000171018606143 0.000105955935372 -26266598599.0 +UniRef50_A9NFP2 50S ribosomal protein L32 0.0143104300398 0.00131251868976 -5.2474163143e+12 +UniRef50_UPI00024926A7 DNA 3 methyladenine glycosylase 2.59914714258e-05 2.39860354065e-05 -809619130.459 +UniRef50_P28916 H repeat associated protein YbfD 0.00397026537791 0.00084252980344 -1.26270523305e+12 +UniRef50_UPI000262D669 FKBP type peptidyl prolyl cis trans isomerase 6.57563479367e-05 7.34406922112e-05 3102264081.12 +UniRef50_UPI0003B77EBB ABC transporter 4.973639969e-06 1.14254128622e-05 2604659889.14 +UniRef50_A6LQ88 Type II secretory pathway pseudopilin PulG like protein 0.000278930533636 0.00219212680326 7.72380811604e+11 +UniRef50_O32197 Transcriptional regulatory protein LiaR 0.0269240769037 0.0094963912138 -7.03577057477e+12 +UniRef50_UPI00016BFC87 ribonuclease III 1.33226155261e-05 4.19702565599e-05 11565404231.4 +UniRef50_G2JLA5 0.00290896410951 0.00442741603415 6.13017675478e+11 +UniRef50_A0A022GY86 2.6587365406e-05 1.58102333837e-05 -4350860447.68 +UniRef50_L8EHD4 Major facilitator transporter 2.577396566e-06 8.71502747379e-05 34143108743.9 +UniRef50_UPI000225F112 hypothetical protein 0.000432544562197 2.81547347408e-05 -1.63257135765e+11 +UniRef50_O08385 ATP phosphoribosyltransferase 0.000991351460727 0.00135435873523 1.46550491317e+11 +UniRef50_Q3IVA5 Aldo keto reductase 0.0111008236061 0.00323010674666 -3.17750498071e+12 +UniRef50_UPI00037D4803 hypothetical protein 3.95387702816e-06 3.04347110971e-05 10690637670.0 +UniRef50_UPI0004015A16 MULTISPECIES 1.07708635954e-05 8.3000362986e-05 29159935259.6 +UniRef50_Q9AAA2 MaoC family protein 4.65400514843e-05 2.54519743246e-05 -8513515529.18 +UniRef50_P42810 TPR repeat containing protein PA4667 0.000186076124692 0.000231644734857 18396607113.3 +UniRef50_Q3XXT3 Amino acid permease associated region 0.0111250079144 0.0046166597895 -2.62750000443e+12 +UniRef50_UPI000474EE1B hypothetical protein 3.15407426103e-05 6.35040851712e-05 12903993626.2 +UniRef50_A8LKL8 AFG1 family ATPase 0.0105735808999 0.00145115805369 -3.68283404773e+12 +UniRef50_Q87XY9 Decarboxylase family protein 0.00147746944521 0.0012055871232 -1.09762229767e+11 +UniRef50_B1N5W5 Diaphanous protein, putative 5.76129969286e-06 5.22737074051e-06 -215553670.109 +UniRef50_A4X0A4 HipA domain protein 0.0125561241003 0.0024732534568 -4.07057860952e+12 +UniRef50_UPI000364B97F hypothetical protein 2.8631219123e-05 4.03376147698e-06 -9930295496.44 +UniRef50_UPI0003B7A32E chromosome partitioning protein ParB 5.48520703516e-05 0.0014724578973 5.72304868319e+11 +UniRef50_Q17058 Alpha glucosidase 1.06694861621e-05 8.0930281643e-06 -1040147710.41 +UniRef50_G0HDD8 7.15387218342e-05 0.00724632690383 2.89655003363e+12 +UniRef50_A4CMU2 1.68421787526e-05 1.39232721e-05 -1178398434.67 +UniRef50_I6RKC9 0.000700587372529 0.000392685618868 -1.24303716332e+11 +UniRef50_UPI00025588CA phage terminase, partial 0.000307310065221 2.38934011889e-05 -1.14418785183e+11 +UniRef50_H3LAA4 4.91331526942e-05 3.92439353637e-05 -3992398390.67 +UniRef50_D3E1C3 0.00436285950222 0.000375805506968 -1.60962262454e+12 +UniRef50_B9KX02 0.00217811564083 0.000388507227435 -7.22486877454e+11 +UniRef50_G4YDD7 2.28282756213e-05 6.03193271208e-05 15135597557.3 +UniRef50_Q9HYT1 0.00138255559842 0.000207239793125 -4.74489413342e+11 +UniRef50_UPI0003797423 hypothetical protein, partial 3.98716356562e-05 3.6635790752e-06 -14617636764.6 +UniRef50_Q9HYT3 0.000339139844059 0.000272457711549 -26920395176.1 +UniRef50_I6U0G5 ComB, accessory factor for ComA 0.00483145832485 0.00213812750687 -1.0873307021e+12 +UniRef50_W8KRF0 Flagellar hook capping protein 7.38024235006e-06 1.08043072921e-05 1382337035.1 +UniRef50_K4PRA4 Phosphotransferase system, EIIC 9.33600961682e-05 0.000193017454369 40232898439.0 +UniRef50_D0RWK6 0.00396792102761 0.000244737600989 -1.50309483792e+12 +UniRef50_Q9RUL2 0.0010000042236 0.0427452685108 1.68530754647e+13 +UniRef50_UPI000408C0D1 L threonine 3 dehydrogenase 5.9951888187e-06 0.000100911293367 38318796157.7 +UniRef50_Q67PA6 Proline tRNA ligase 4.85933386328e-06 7.16625984978e-05 26969297701.2 +UniRef50_C4UFH2 1.09575374683e-05 9.96495131301e-06 -400719211.292 +UniRef50_B7I478 Transcriptional regulator, TetR family 0.00063476438756 0.0159508354081 6.1832858203e+12 +UniRef50_C5BM48 Ethanolamine ammonia lyase, large subunit 0.00105224780203 0.00826546092781 2.91206265496e+12 +UniRef50_D2P376 1.46061579715e-05 0.000392882534625 1.52714815228e+11 +UniRef50_Q9ZL96 tRNA ) methyltransferase 9.7709919458e-05 0.00418355403412 1.64950540803e+12 +UniRef50_V0L6T7 Glycine dehydrogenase 0.00207656711224 0.00101588119878 -4.28211919344e+11 +UniRef50_UPI000470D224 sugar ABC transporter permease 2.16092626466e-05 1.12991154461e-05 -4162332944.58 +UniRef50_A0A024HX03 4.1721630349e-06 6.48750116095e-06 934730413.88 +UniRef50_UPI0004691DC1 mechanosensitive ion channel protein MscL 0.000387408570048 7.66063542803e-05 -1.25474668478e+11 +UniRef50_T7H4C9 Periplasmic endochitinase 0.00131351461295 0.00021287170559 -4.44343048109e+11 +UniRef50_G2JK97 0.000349656531858 0.00191037331937 6.30080519266e+11 +UniRef50_UPI0003616A00 hypothetical protein 1.98787154188e-05 0.000457112840812 1.76516781887e+11 +UniRef50_M4MLE9 0.00793743329946 0.000376919454664 -3.05227221708e+12 +UniRef50_I3UFE6 Saccharopine dehydrogenase 0.0107269916045 0.00384223409919 -2.77946109037e+12 +UniRef50_UPI00046ED2B4 hypothetical protein 0.000192849680478 3.08237033184e-05 -65411875261.8 +UniRef50_UPI0002E5AE52 choline dehydrogenase 5.30227941019e-05 1.63196421019e-05 -14817512860.7 +UniRef50_M4QZX1 0.00058854715767 0.0104978088938 4.00049056319e+12 +UniRef50_P13512 Cobalt zinc cadmium resistance protein CzcD 0.00120458752684 0.00652892166771 2.1494990296e+12 +UniRef50_V8R0S1 Deoxyribonuclease 3.38117407713e-06 0.00016304357694 64457671313.8 +UniRef50_UPI00036A5DE2 peptidase 6.45374007465e-06 1.94865172316e-05 5261492068.4 +UniRef50_X5DX77 0.00537426714876 0.00190688163344 -1.39982608214e+12 +UniRef50_D6ZZK2 Sulfate ABC transporter, periplasmic sulfate binding protein 0.0115071100577 0.00215277780634 -3.77645872044e+12 +UniRef50_UPI000472CD56 hypothetical protein 3.9891164237e-05 3.31834844312e-05 -2707972650.09 +UniRef50_UPI000289BAA8 acetyl CoA 6.17782641891e-06 1.74262646191e-05 4541132535.28 +UniRef50_UPI000474C455 hypothetical protein, partial 0.00039268102794 3.16291897258e-05 -1.45761057691e+11 +UniRef50_B1GYQ3 3 phosphoshikimate 1 carboxyvinyltransferase 4.62881862416e-06 6.12078938013e-06 602326902.725 +UniRef50_Q7P3Y5 NagD protein 2.92518313198e-05 0.000108569821968 32021646165.9 +UniRef50_UPI0001BF64A8 hypothetical protein SMAC_11040, partial 3.3115664033e-05 0.00106056017007 4.1479195525e+11 +UniRef50_D8GQL0 0.000208940584237 0.00193525063326 6.96932550996e+11 +UniRef50_UPI0001C36D2D hypothetical protein 1.83718360343e-06 4.10116016747e-06 913995121.02 +UniRef50_Q5XE77 Single stranded DNA binding protein 1 0.0039355426687 0.00304400667739 -3.59924020069e+11 +UniRef50_P75788 Inner membrane protein YbiR 0.00302248965996 0.00206589444548 -3.86189226829e+11 +UniRef50_D4Z138 0.00010693465288 5.75975357341e-05 -19917999626.3 +UniRef50_UPI000237EFA3 transposase IS3 family protein 0.000286604444997 8.68699389826e-05 -80635271095.9 +UniRef50_U3SWI7 0.00601158467119 0.00183399137865 -1.68654567703e+12 +UniRef50_X0PLV2 Excinuclease ABC 2.97484220653e-05 0.000135801477647 42814919955.8 +UniRef50_C7ZYL4 Phage major tail protein 0.0204212647858 0.00494129306886 -6.24945454273e+12 +UniRef50_UPI0004713D66 hypothetical protein 7.21640072095e-06 1.12640253541e-05 1634075734.34 +UniRef50_C5CT24 Polyribonucleotide nucleotidyltransferase 0.000124506955017 0.00459928233292 1.80652173173e+12 +UniRef50_L7WT15 Glycosyltransferase stabilizing protein Gtf2 0.00875125543601 0.003063620881 -2.29616786498e+12 +UniRef50_I6SK88 0.000238412203486 0.000600644146164 1.46237480345e+11 +UniRef50_UPI0001C39745 ABC type dipeptide transport system, periplasmic component, partial 3.13337892238e-05 0.000135986465501 42249569645.8 +UniRef50_A3W978 2.61473206309e-06 0.000313593498676 1.2554594422e+11 +UniRef50_A2FR65 Basic proline rich protein, putative 2.11169831119e-06 3.18342517219e-05 11999359548.6 +UniRef50_UPI000181656F hypothetical protein, partial 2.16900262647e-05 1.5155570114e-05 -2638040134.83 +UniRef50_A0A011PGA8 Hydrogenase 2 maturation protease 0.000248256548396 0.00017256791668 -30556429427.7 +UniRef50_O27051 D 3 phosphoglycerate dehydrogenase 0.00358423364029 0.000354210289475 -1.30400006357e+12 +UniRef50_UPI000262927F GTPase Der 1.12727972097e-05 2.35203809827e-05 4944499863.91 +UniRef50_K4HIZ1 DnaJ related protein 1.49019470913e-05 1.48192455894e-05 -33387611.1786 +UniRef50_UPI0003637E5A hypothetical protein, partial 9.18675973125e-05 0.000258422851782 67240400091.9 +UniRef50_P76102 Putative transposase InsQ for insertion sequence element IS609 0.00175907738129 0.000312664261817 -5.83934725815e+11 +UniRef50_F0KM17 Lipid A biosynthesis lauroyl acyltransferase 0.000373308522105 0.011063586228 4.31579629433e+12 +UniRef50_S5YHY9 Partition protein A 0.0145321861429 0.00264323265894 -4.79971641536e+12 +UniRef50_Q3J218 0.0030720523076 0.00171474215919 -5.47962762982e+11 +UniRef50_K0TK24 0.000246962555471 4.81494526799e-05 -80263289307.8 +UniRef50_UPI000471D82C hypothetical protein 3.84688142104e-05 0.000811410424334 3.12046013067e+11 +UniRef50_UPI000363C207 hypothetical protein 4.74333979498e-06 6.84645238196e-05 25725023937.6 +UniRef50_D3E2Q4 Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family 0.00315403853425 0.000270519119271 -1.16411217259e+12 +UniRef50_UPI0003B72DF0 GntR family transcriptional regulator 1.5939806031e-05 3.10123742982e-05 6084980770.68 +UniRef50_Q3J215 0.001203240963 0.00630565214824 2.05990600911e+12 +UniRef50_UPI0003B5B026 zinc metalloprotease 1.84205551687e-05 1.54374997467e-05 -1204296080.07 +UniRef50_O14556 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 4.33825724748e-06 7.77553162118e-06 1387669844.76 +UniRef50_P65671 Sulfate adenylyltransferase subunit 2 0.000213268920259 0.00564501940932 2.19286432751e+12 +UniRef50_F0QP46 Flavoprotein 0.000157397867263 0.00604211782 2.37573365856e+12 +UniRef50_D5UQ22 Cell envelope related transcriptional attenuator 3.31078256233e-06 1.1268986533e-05 3212824601.1 +UniRef50_Q1IX28 Periplasmic YigE like protein 2.17226819131e-05 0.000691747021624 2.70497048065e+11 +UniRef50_Q3JG98 Acyl CoA dehydrogenase, C terminal domain family 0.000124720040369 0.006136361895 2.42697358786e+12 +UniRef50_UPI00046FA5DF hypothetical protein 0.00012337205503 3.93800954421e-05 -33908584782.9 +UniRef50_UPI00035D1933 glycine cleavage system protein H 0.000124853802669 4.6589547855e-05 -31596240078.8 +UniRef50_V9T6E9 Sugar ABC transporter permease 0.000860792997232 0.00065188957927 -84336873364.5 +UniRef50_UPI0003B3F1EE transposase 0.000384892189275 3.95470821019e-05 -1.39420057627e+11 +UniRef50_B8EJI5 Holliday junction ATP dependent DNA helicase RuvA 2.04898634152e-05 9.87572791475e-06 -4285056751.6 +UniRef50_UPI00046E909F hypothetical protein 3.38564496456e-06 0.000221696813083 88134897548.5 +UniRef50_A1BAZ5 0.00974840854578 0.00142477357769 -3.36035357911e+12 +UniRef50_A5UML2 Predicted flavoprotein 0.00464997341681 0.000766833645921 -1.56767117699e+12 +UniRef50_UPI000349F337 hypothetical protein 1.4036090839e-05 1.12698204955e-05 -1116777283.63 +UniRef50_UPI0004624C72 polymerase 4.17309261302e-05 2.16815619447e-05 -8094174355.05 +UniRef50_Q3J4T5 Putative metal dependent protease of the PAD1 JAB1 superfamily 0.0230458028673 0.0175647305321 -2.21277616204e+12 +UniRef50_Q6GE10 6 carboxyhexanoate CoA ligase 0.0266472780519 0.00584916836143 -8.39645210356e+12 +UniRef50_P07018 Methyl accepting chemotaxis protein IV 0.00162047782135 0.00113776911677 -1.94875427541e+11 +UniRef50_I3Y049 3.44811547833e-05 2.53411013532e-05 -3689951730.8 +UniRef50_UPI0003476A90 hypothetical protein 9.66656837494e-05 9.70359987393e-06 -35107660405.3 +UniRef50_UPI0003F0CB72 PREDICTED 6.93545577416e-05 1.0174843704e-05 -23891576773.7 +UniRef50_O68872 2.72126846076e-05 1.34368848486e-05 -5561459410.78 +UniRef50_Q2GDJ8 NADH quinone oxidoreductase subunit D 3.06954159752e-05 6.20545543858e-05 12660068996.3 +UniRef50_A1AJH6 N acetylneuraminate epimerase 0.000769666761398 0.000610086487235 -64424514949.8 +UniRef50_F2J2D8 Putative HTH type transcriptional regulator rrf2 like protein 4.90750144085e-05 2.29800756401e-05 -10534847001.7 +UniRef50_Q9RXY1 50S ribosomal protein L13 0.000258552047156 0.0549214743431 2.20680925203e+13 +UniRef50_D3E348 0.00386453019058 0.00176908813741 -8.4595567083e+11 +UniRef50_K0C281 Flagellar hook capping protein 7.71910395366e-06 1.05748344467e-05 1152893443.79 +UniRef50_UPI0003697B4B ABC transporter, partial 6.41654148153e-05 0.000118127265163 21785061171.7 +UniRef50_A3WH30 0.000164333357018 0.000182799932358 7455183075.12 +UniRef50_UPI00036F7350 hypothetical protein 1.19850643372e-05 6.02588518114e-06 -2405793752.65 +UniRef50_A0A011PL33 0.000374556825403 1.17355788946e-05 -1.46475389533e+11 +UniRef50_Q9LUW5 DEAD box ATP dependent RNA helicase 53 8.50081762769e-06 0.000106866592368 39711470346.5 +UniRef50_UPI0003C14327 PREDICTED 0.000162178424441 5.27710566236e-05 -44169096967.1 +UniRef50_Q016E9 Glyoxalase bleomycin resistance protein dioxygenas 0.000962416231123 0.000173248252835 -3.18596797015e+11 +UniRef50_UPI0003B4F316 ABC transporter ATP binding protein 0.000363357806267 2.17217093411e-05 -1.37922684675e+11 +UniRef50_C5AQC0 DNA helicase, ATP dependent resolution of Holliday junctions, branch migration 0.00104658638442 0.000348211301669 -2.81942590933e+11 +UniRef50_Q49Y17 0.0203020479131 0.0056986131494 -5.8955858184e+12 +UniRef50_A8AKZ3 0.0105053070929 0.000730151811032 -3.94635014194e+12 +UniRef50_P0AE54 Putative peroxiredoxin bcp 0.00495091743456 0.000391147953907 -1.840834894e+12 +UniRef50_Q5HLM6 0.00403612911074 0.000985874696806 -1.23142513773e+12 +UniRef50_W0IR18 C4 dicarboxylate ABC transporter 0.00797326769653 0.00166761276481 -2.54567027502e+12 +UniRef50_A4WSF9 0.000111665054727 1.04485138187e-05 -40862359631.2 +UniRef50_UPI00030293EE hypothetical protein 2.6584012096e-05 7.62252711482e-06 -7654984170.5 +UniRef50_W4U1X8 4.79721629021e-06 1.21189552376e-05 2955875860.9 +UniRef50_B2T0E3 0.000124904224454 4.23617813936e-05 -33323397173.2 +UniRef50_B0VUD5 High frequency lysogenization protein HflD homolog 0.000324448646184 0.00524252596288 1.98548816435e+12 +UniRef50_A0A029AVJ5 8.88994172475e-06 6.25809746045e-05 21675728836.6 +UniRef50_S6WIX2 Fosmidomycin resistance protein 0.000272636125244 7.31894960285e-05 -80519051699.9 +UniRef50_Q6LKZ5 ATP synthase epsilon chain 2 0.000267720559474 0.00258153816371 9.34116560567e+11 +UniRef50_UPI00046E6D22 LysR family transcriptional regulator, partial 7.839716899e-06 7.92737002227e-06 35386641.4889 +UniRef50_P33368 0.00371291664563 0.00295360639918 -3.06542864276e+11 +UniRef50_UPI000370601D hypothetical protein 1.60624268695e-05 5.77164115815e-05 16816224780.1 +UniRef50_C3FDC0 0.000264134060577 0.00111415002597 3.43161876098e+11 +UniRef50_B9KUV4 0.000381257569712 0.000167793582503 -86178031134.0 +UniRef50_C6STH9 0.00899353871183 0.000800805684286 -3.30750685936e+12 +UniRef50_V5EUP7 3.85221178065e-06 0.00045831473518 1.83472097578e+11 +UniRef50_UPI00029A0BC2 3 hydroxybutyryl CoA epimerase 2.14084001059e-06 6.97326654617e-06 1950909892.96 +UniRef50_C9CS38 Rb142 9.56265565135e-06 3.86333736629e-06 -2300884730.18 +UniRef50_UPI0003B6D51E DNA topoisomerase I 2.83705753605e-06 1.05980405102e-05 3133204064.64 +UniRef50_UPI0003597373 PREDICTED 5.07142653666e-06 6.54546077233e-05 24377431230.0 +UniRef50_T1YC46 Integral membrane protein 0.0207937568195 0.00578644829849 -6.05863461031e+12 +UniRef50_P37460 Proline specific permease ProY 0.000592191124291 0.00622326276457 2.2733327222e+12 +UniRef50_A9BFZ1 30S ribosomal protein S4 0.000368279013511 0.0466653065696 1.86906781528e+13 +UniRef50_UPI00037C9C7B hypothetical protein 6.45164087129e-06 3.74823998982e-06 -1091396110.31 +UniRef50_Q3KHK6 GntR family transcriptional regulator 0.000738824547026 0.000951154104944 85720048108.2 +UniRef50_Q5H1Q0 Beta hexosaminidase 5.06447053817e-06 1.35511392081e-05 3426172285.19 +UniRef50_UPI0002F5F4FB hypothetical protein 9.92241861262e-06 0.000195528914058 74931619859.0 +UniRef50_P18179 Potential ATP binding protein 0.0963378801446 0.0232054379517 -2.95244643493e+13 +UniRef50_UPI00035C1F2F hypothetical protein 4.79370706344e-06 6.44979159794e-06 668581649.02 +UniRef50_Q1AR89 Aminomethyltransferase 6.85779632759e-05 7.64576784375e-05 3181137705.72 +UniRef50_UPI0002B48709 PREDICTED 5.78312169356e-06 4.48981749963e-06 -522122773.717 +UniRef50_UPI00037FBF9D hypothetical protein 3.38471567748e-05 1.86828954834e-06 -12910261124.2 +UniRef50_G7ZS60 0.0649074988819 0.00118672743544 -2.57248573747e+13 +UniRef50_R5A691 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.61360957856e-05 1.48437299725e-05 -521743937.86 +UniRef50_X4ZCF7 ABC transporter family protein 0.00748640814696 0.00525444214884 -9.01072062744e+11 +UniRef50_I3WXC9 Dissimilatory sulfite reductase 0.000478163254587 0.000192936276143 -1.15149631326e+11 +UniRef50_Q8DUY9 0.00406087927091 0.00123408248075 -1.14121255289e+12 +UniRef50_P0AGL8 Ribosomal RNA small subunit methyltransferase E 0.00167321558672 0.000242726059064 -5.77506176397e+11 +UniRef50_Q9I2V5 Aconitate hydratase 2 0.00146339021553 0.00703722012203 2.25022353184e+12 +UniRef50_A6L1U8 Lipoyl synthase 4.99056838101e-06 0.00104289989206 4.19016730549e+11 +UniRef50_UPI00046AA788 hypothetical protein 7.87343176829e-05 9.25174812046e-05 5564432252.15 +UniRef50_Q2SPQ1 Chemotaxis response regulator protein glutamate methylesterase 1 6.91105173079e-05 9.12754628472e-06 -24215861475.9 +UniRef50_Q51465 Flagellar motor switch protein FliM 0.000732560789549 0.000316410755563 -1.68004875455e+11 +UniRef50_UPI000479C05A malate 2.94586139091e-06 9.01905228428e-06 2451821690.09 +UniRef50_I2FD14 UDP glucose 4 epimerase 0.000327230863435 0.00272999298272 9.7002455276e+11 +UniRef50_Q2IFU3 Pantothenate synthetase 0.0017014366498 0.000366853049924 -5.38787776454e+11 +UniRef50_Q1J0G9 Aminotransferase, class V 0.000264902448311 0.00944622575209 3.70661288524e+12 +UniRef50_H8GYV6 0.000202224636884 0.0250286813448 1.00227452279e+13 +UniRef50_A5X3K4 Polyphenol oxidase 0.00127442879115 0.000327523148093 -3.82277427941e+11 +UniRef50_P76555 Ethanolamine utilization protein EutQ 0.00158995578719 0.00139084880992 -80381930041.3 +UniRef50_Q83II9 Ascorbate specific permease IIC component UlaA 0.00355915577359 0.00147891567685 -8.39818454471e+11 +UniRef50_UPI0004688BBC flagellar motor switch protein 6.37310095676e-05 4.83741372484e-05 -6199757805.28 +UniRef50_D8N1D9 4.34669031089e-07 6.62266369511e-07 91883838.4544 +UniRef50_C5B779 Protein CreA 2.30157294746e-05 1.96712669253e-05 -1350200572.32 +UniRef50_K0HWI3 NADPH dependent FMN reductase 0.000218621229065 0.00474455018938 1.82717306067e+12 +UniRef50_P75693 0.00160137149409 0.000905635345209 -2.80877220946e+11 +UniRef50_UPI00034B5B3B hypothetical protein 7.50510702956e-06 1.07457068127e-05 1308269899.08 +UniRef50_E7B3D1 Metallo beta lactamase superfamily protein PA0057 0.000490388584265 1.24872037343e-05 -1.9293465183e+11 +UniRef50_D8HDI6 Pyridoxal dependent decarboxylase 0.0147138284894 0.00301774935129 -4.72185067508e+12 +UniRef50_X7FEK2 3.98682728336e-05 3.37435988918e-05 -2472606028.51 +UniRef50_UPI00047DFC44 hypothetical protein 6.11709534811e-06 3.40405525375e-05 11273042326.7 +UniRef50_B0VLY8 7.96383942783e-05 0.0070697329979 2.82198696959e+12 +UniRef50_Q6A7P4 Riboflavin biosynthesis protein RibF 0.000346062750835 0.00734999540155 2.82757355901e+12 +UniRef50_Q08052 Ribulose bisphosphate carboxylase small chain 0.000402794549515 5.31370998841e-05 -1.41161003195e+11 +UniRef50_D4HAX6 ROK family protein 0.000224249102288 0.00700035354057 2.73559651389e+12 +UniRef50_E0RV96 Rhamnulose 1 phosphate aldolase 0.000304424184557 0.000360142323408 22494096392.6 +UniRef50_P69854 Tat proofreading chaperone DmsD 0.00225767937135 0.00110743764448 -4.64366700191e+11 +UniRef50_U6I0U9 Glutamyl tRNA amidotransferase subunit B, mitochondrial 6.25866030598e-06 5.55175549263e-06 -285386147.847 +UniRef50_UPI00036CBFA7 hypothetical protein 4.85183895068e-06 7.69823187115e-06 1149123751.16 +UniRef50_A3PIF9 PRC barrel domain protein 0.00583982593218 0.000516588988672 -2.14905607756e+12 +UniRef50_Q8RD56 AAA superfamily ATPases with N terminal receiver domain 0.000125809280332 0.000484200692328 1.4468701098e+11 +UniRef50_P09384 Chemotaxis protein CheA 0.00218454274231 0.000543667850736 -6.62441329526e+11 +UniRef50_A6QE42 0.00196482446064 0.00135675809661 -2.45483852972e+11 +UniRef50_Q6F806 0.000171066158086 0.00586978844928 2.30064412014e+12 +UniRef50_I1ZNS6 Cation efflux protein 0.000522429306784 0.00401458253734 1.40982511272e+12 +UniRef50_Q4SPJ4 Chromosome 16 SCAF14537, whole genome shotgun sequence. 0.00034342620462 3.53180417329e-05 -1.2438704627e+11 +UniRef50_Q9LDF4 2.27250809553e-05 0.000385587851347 1.46492153234e+11 +UniRef50_Q37370 Cytochrome c oxidase subunit 1+2 6.78222520371e-06 2.14012945669e-05 5901897698.08 +UniRef50_B2S5Z1 Indole 3 glycerol phosphate synthase 0.00633943426866 0.000944133167229 -2.17814926244e+12 +UniRef50_A7MEJ4 Spermidine export protein MdtJ 0.000660266673678 0.000801764810481 57124534204.8 +UniRef50_R9YQ52 Sugar transporter family protein 0.0102970729819 0.00324175932818 -2.84831670044e+12 +UniRef50_UPI000476FBDE hypothetical protein 9.66007984378e-06 2.81550733155e-06 -2763237915.54 +UniRef50_Q5HL84 Gamma glutamyltranspeptidase 0.00974316376915 0.00447760741072 -2.12576971754e+12 +UniRef50_UPI00041118D3 PTS beta glucoside transporter subunit IIABC 3.12226329252e-06 1.10058678006e-05 3182707882.62 +UniRef50_Q58991 Homoisocitrate dehydrogenase 1.16354700669e-05 1.97641285663e-05 3281639186.06 +UniRef50_D7I1Z9 Dienelactone hydrolase 0.000398462105027 0.00619258482255 2.33915844294e+12 +UniRef50_UPI0003B77390 DNA directed RNA polymerase subunit alpha 3.85468930198e-05 2.88554297813e-05 -3912562637.01 +UniRef50_F3ZLH7 0.00113699202626 0.000224878562908 -3.68231398046e+11 +UniRef50_Q8U8I2 Serine 3 dehydrogenase 0.00153880232243 0.0013717453524 -67442948820.7 +UniRef50_D6B8D3 Primosome assembly protein PriA 7.26432665917e-06 0.000749686775877 2.99725053297e+11 +UniRef50_Q03IX4 Protein translocase subunit SecA 0.00599226893105 0.00121529080841 -1.92852468822e+12 +UniRef50_H8GTG2 Putative serine protease 0.000148616531043 0.000958398244057 3.26918814683e+11 +UniRef50_H9UPI6 Porin thermoregulatory protein envY 0.000265864360815 4.67067784397e-05 -88476605370.7 +UniRef50_UPI00041B2F47 hypothetical protein 9.39336506483e-06 1.55887241844e-05 2501142502.18 +UniRef50_B9KJW8 Methyl accepting chemotaxis sensory transducer 0.00175365505308 0.00258203385907 3.34426689329e+11 +UniRef50_J0MRE5 0.0528191405412 0.00998150389135 -1.72940795925e+13 +UniRef50_UPI000373B743 hypothetical protein 1.57819486834e-05 7.41505037315e-06 -3377819521.24 +UniRef50_A6LQ39 0.000284895085921 0.000252767508006 -12970297454.0 +UniRef50_UPI00037EEBFC hypothetical protein 1.18742615807e-05 1.89315876876e-05 2849129152.49 +UniRef50_A6LXC6 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.0005083513987 0.00168124529959 4.73511660816e+11 +UniRef50_T1ZMP3 Competence protein 1.0931122354e-05 5.08414499362e-05 16112288999.7 +UniRef50_Q3JTH0 1.33643758423e-05 0.000118125161829 42293214862.4 +UniRef50_D2NF85 0.000143679791753 6.40026319106e-05 -32166647177.1 +UniRef50_B1ZB21 ABC transporter related 0.00784396451984 0.00212351892044 -2.30941408624e+12 +UniRef50_E6S7U2 Molybdopterin dehydrogenase FAD binding protein 0.000118955668759 0.00679574812345 2.69550304742e+12 +UniRef50_UPI00046CF8F3 hypothetical protein, partial 0.00017928416197 8.24921492373e-05 -39076123311.8 +UniRef50_G6CYT2 Arrestin domain containing 4 2.2220380984e-05 2.91265614185e-05 2788109789.77 +UniRef50_Q2S026 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.59818701289e-05 5.08153725614e-06 -4400598142.88 +UniRef50_G2SQT2 ABC transporter, ATP binding protein 0.0128933254692 0.00301955959575 -3.98616044784e+12 +UniRef50_B3DTC2 Phosphoglucosamine mutase 0.00017371648652 0.00935113035538 3.70503459839e+12 +UniRef50_I6TYE3 Transcription regulator 0.00276949827888 0.000583373649418 -8.82565339679e+11 +UniRef50_P0AAA0 Putative L,D transpeptidase YafK 0.00693298412826 0.00164678958507 -2.13410160599e+12 +UniRef50_Q8L847 Biotin synthase Bio B 9.23647046514e-06 2.51091183984e-05 6407982749.97 +UniRef50_F5M104 ABC transporter related protein 0.000707340993622 0.000320415955001 -1.56206386195e+11 +UniRef50_C5MZ72 0.00216946400912 0.000504814880674 -6.72039280697e+11 +UniRef50_UPI0003C75BDD hypothetical protein 0.000414819767969 0.000367382518893 -19150999572.5 +UniRef50_Q8CMX3 Phosphoadenosine phosphosulfate reductase 0.00793024604776 0.00960322523248 6.75402226635e+11 +UniRef50_M9S1K0 Type III secretion protein PcrV 0.000305331686769 0.000361612292071 22721171001.1 +UniRef50_UPI000372BC15 hypothetical protein 6.28449967867e-06 1.09305883712e-05 1875683019.09 +UniRef50_D4MD52 ABC type proline glycine betaine transport system, permease component 0.00300871855084 0.00159066728045 -5.72484699302e+11 +UniRef50_C6XQD6 Polygalacturonase 7.25839627125e-06 0.00295404007112 1.18965192321e+12 +UniRef50_Q52666 Glutamate glutamine aspartate asparagine transport ATP binding protein BztD 0.0165164957471 0.00562201927878 -4.39823384051e+12 +UniRef50_UPI000465B0D7 hypothetical protein 0.000130206382325 5.50820824129e-05 -30328601753.3 +UniRef50_F6K0S0 Silk fibroin 2.67337493688e-05 1.07406211578e-05 -6456622116.53 +UniRef50_H2WUA1 1.00004210264e-06 9.78907534882e-06 3548240575.05 +UniRef50_Q1RFT2 0.000343169080774 0.00553466328478 2.09586991696e+12 +UniRef50_R1H4G9 Immunogenic protein 5.26631450205e-05 1.02444919458e-05 -17124930781.7 +UniRef50_UPI00036D594A hypothetical protein 1.23420876788e-05 0.000467862080669 1.83899011029e+11 +UniRef50_UPI0003C19FB7 PREDICTED 1.23634289964e-05 1.99667556879e-05 3069556288.67 +UniRef50_UPI00035D526E hypothetical protein 0.00036162929496 0.000101203590973 -1.05137052482e+11 +UniRef50_UPI00046A043A hypothetical protein 0.00247501074101 0.000497724784029 -7.9825460486e+11 +UniRef50_R4XQ21 Phage minor tail protein 0.000489535144044 0.00200817889419 6.1309511779e+11 +UniRef50_Q017S2 Probable membrane protein YCR013c yeast 0.000107573079025 0.000173284562526 26528532259.9 +UniRef50_B5XJ20 Bifunctional purine biosynthesis protein PurH 0.000257953270843 0.000182458371159 -30478217429.0 +UniRef50_P56117 0.000160024982324 0.00353860842852 1.36397559711e+12 +UniRef50_UPI0002B49AD0 PREDICTED 2.11853219787e-05 1.94239349735e-05 -711093548.648 +UniRef50_A6LTX3 0.000653341134548 0.000341406595601 -1.2593180124e+11 +UniRef50_UPI00046A5CCB PA phosphatase 8.12053070035e-05 3.74352975807e-05 -17670489922.4 +UniRef50_Q3IW22 L alanine exporter AlaE 0.000985628140097 0.000436428628368 -2.21718582321e+11 +UniRef50_F9Z196 Oligopeptide binding protein OppA 6.80154934868e-05 0.0038254108771 1.51690662479e+12 +UniRef50_O83940 Ribosomal RNA small subunit methyltransferase I 9.18041392036e-06 2.92724300042e-05 8111393449.79 +UniRef50_UPI0002628324 arginine ABC transporter ATP binding protein 0.000157884942429 5.32265602563e-05 -42251873186.0 +UniRef50_D5APQ0 0.0108600032869 0.00534544925084 -2.22629313555e+12 +UniRef50_Q4EQ49 0.000876509573523 0.00024182256549 -2.56230933628e+11 +UniRef50_A8Z3H2 TetR family transcriptional regulator 0.0122563423778 0.00349498374392 -3.53706799446e+12 +UniRef50_Q5M103 ATP synthase epsilon chain 0.00301885716408 0.00364148684768 2.51363243795e+11 +UniRef50_Q88LV4 GTP cyclohydrolase 1 1 0.000131743092193 0.000115666046802 -6490500511.88 +UniRef50_UPI0003775137 hypothetical protein 6.73748840301e-06 2.49797678211e-05 7364632059.03 +UniRef50_Q8NM41 Peptide deformylase 2 1.11834005135e-05 5.74261421105e-05 18668762245.0 +UniRef50_Q99SN7 0.00860900896339 0.00390416651894 -1.89940262973e+12 +UniRef50_G0DRT9 Regulatory protein 1.09960114367e-05 0.00430559168726 1.73378097494e+12 +UniRef50_Q8X7W7 Catecholate siderophore receptor Fiu 0.0034462689335 0.000778999423286 -1.07680943235e+12 +UniRef50_S6BDB2 Methionine tRNA ligase 0.00636862377881 0.00424605634746 -8.56906518867e+11 +UniRef50_G0FNR8 0.000203176833565 5.47233998387e-05 -59932472923.7 +UniRef50_J5L0G3 Chaperone protein HscA 0.000113981592443 0.000124831197151 4380118560.24 +UniRef50_B9EUP4 2.08735671268e-05 6.26459478293e-06 -5897821407.48 +UniRef50_Q21WE1 Alcohol dehydrogenase, zinc binding 0.000667010080329 0.000275139787458 -1.58202846021e+11 +UniRef50_U6IF34 Heat shock protein 71 kDa protein 1.43780746859e-05 4.99161521535e-06 -3789428873.07 +UniRef50_Q6LV34 RNA polymerase associated protein RapA 0.00226172063096 0.000912572316718 -5.4466773037e+11 +UniRef50_H8GTZ6 9.41659307779e-05 0.0221552131783 8.90631549331e+12 +UniRef50_UPI0003C7D07B hypothetical protein 0.000162249896705 9.17207710547e-05 -28473473514.7 +UniRef50_B6EJ93 Imidazole glycerol phosphate synthase subunit HisF 0.000821793480819 0.00783774071396 2.83242399337e+12 +UniRef50_Q8UBB7 sn glycerol 3 phosphate import ATP binding protein UgpC 2 0.000106545254932 6.15781519342e-05 -18153771288.6 +UniRef50_A8F986 50S ribosomal protein L4 0.000536709936758 0.000344058297312 -77775830945.8 +UniRef50_UPI0003B645FE protein pucC, partial 0.000151247293605 7.58006029206e-05 -30458754864.3 +UniRef50_C8X890 Two component transcriptional regulator, LuxR family 0.000670093471334 0.00566498681681 2.0164997378e+12 +UniRef50_K0ECU0 CreA protein 0.000112903302432 5.83457074415e-05 -22025570594.6 +UniRef50_UPI00040FE389 O sialoglycoprotein endopeptidase 4.66671804002e-06 2.17386421514e-05 6892145259.84 +UniRef50_R5FR54 1.37261117605e-05 0.00524577168719 2.11224100322e+12 +UniRef50_UPI00036C9093 hypothetical protein 9.7154259184e-06 9.44246944398e-06 -110195878.276 +UniRef50_O13774 GTP cyclohydrolase 1 4.46575438327e-05 5.61799705961e-05 4651745080.46 +UniRef50_G0DV83 HAD hydrolase, family IIB 0.000783264504791 0.00294531019607 8.72844376854e+11 +UniRef50_B0TH67 tRNA ) methyltransferase 0.0175094261163 0.0060852830873 -4.61206673081e+12 +UniRef50_D2TMN6 Proofreading thioesterase EntH 0.00657434899225 0.00042903153298 -2.48094006983e+12 +UniRef50_B2V2W5 Sensor histidine kinase 0.000113950976906 0.000630027398056 2.08346384188e+11 +UniRef50_UPI0003671A9B hypothetical protein 0.000212796006683 0.000119542118496 -37647739015.0 +UniRef50_UPI0004719C11 DNA topoisomerase III, partial 4.02274700642e-06 1.29115194069e-05 3588506495.58 +UniRef50_Q7CQ37 Flagellar regulator flk 0.00214833044401 0.00106172128245 -4.38677452716e+11 +UniRef50_O84867 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.51538399953e-05 4.6207042454e-05 -11686177384.6 +UniRef50_Q882G0 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.000268390073234 0.00939833132412 3.68586931996e+12 +UniRef50_Q8RDK3 2 isopropylmalate synthase 1 9.83741549096e-06 6.53262219278e-06 -1334185608.85 +UniRef50_B2RIJ1 GTP cyclohydrolase 1 5.62486140959e-05 7.56482212017e-05 7831859448.56 +UniRef50_UPI0002376FCC putative D amino acid dehydrogenase small subunit, partial 4.78591065771e-05 3.22706550321e-05 -6293249180.53 +UniRef50_Q8DWE5 Tagatose 1,6 diphosphate aldolase 2 0.0275943336869 0.00889453172035 -7.54933952629e+12 +UniRef50_N0A6X1 Pirin family protein 5.64329380165e-06 1.04939788473e-05 1958281077.53 +UniRef50_D4H966 2.04104886097e-05 0.000846495552049 3.33500677314e+11 +UniRef50_Q2NCT3 Peptide deformylase 2.96563645232e-05 4.49691802303e-05 6181971610.34 +UniRef50_G7M922 GAF modulated sigma54 specific transcriptional regulator, Fis family 0.000428724063848 0.00210461111834 6.76576169344e+11 +UniRef50_D4DVN6 3.91690230953e-06 0.000526783747844 2.1108776184e+11 +UniRef50_D9RE87 Superantigen like protein 0.0134769906841 0.00116587542225 -4.9701483056e+12 +UniRef50_UPI0003781EF8 hypothetical protein 8.94347122921e-05 5.32774660994e-05 -14597123987.3 +UniRef50_UPI000467DD39 hypothetical protein 0.000831727033985 0.000212550177213 -2.49969295233e+11 +UniRef50_U5MQB3 BglP 0.000373830511131 0.00107548828906 2.83267855259e+11 +UniRef50_W7YQJ5 L serine dehydratase 1.57695371932e-05 3.17883450827e-05 6466989317.87 +UniRef50_Q3J213 Histone like nucleoid structuring protein H NS 0.002630737868 0.0121548003248 3.8449808872e+12 +UniRef50_UPI0002481AA6 type II secretion system protein E 5.09082006052e-06 7.09979625838e-06 811048343.986 +UniRef50_UPI0002C431F7 PREDICTED 6.72885756713e-06 6.86282515649e-06 54084359.7918 +UniRef50_Q9RZQ5 3.79499055155e-05 0.0172530032125 6.9499282725e+12 +UniRef50_UPI00036E554C hypothetical protein 7.06318469579e-06 6.62054898533e-06 -178697468.064 +UniRef50_Q9RZQ2 6.45391313574e-05 0.0325822703044 1.3127807112e+13 +UniRef50_D8JIG9 TetR family regulatory protein 0.000800297196335 0.0108055842713 4.03925717086e+12 +UniRef50_A3PMN1 0.00760536301962 0.0015746592138 -2.43466913147e+12 +UniRef50_UPI00041FCE8E 16S rRNA methyltransferase 2.04454325707e-05 2.3697005486e-05 1312699887.19 +UniRef50_U3AG04 0.000243051842678 2.9903588716e-05 -86050565747.7 +UniRef50_Q4FQ57 tRNA dihydrouridine synthase 0.00030916337053 0.0107160553481 4.20138999828e+12 +UniRef50_F6B6L3 Biotin and thiamin synthesis associated 0.000181281340016 0.00438811635572 1.69835091951e+12 +UniRef50_W8T306 0.000210103518845 0.000320415955001 44534484162.0 +UniRef50_UPI0000E48B78 8.04452697527e-05 6.95406902601e-05 -4402312555.4 +UniRef50_G7U5D1 0.000449388081972 0.00129916046564 3.43063539167e+11 +UniRef50_UPI0003B78451 Fur family transcriptional regulator 2.42643321264e-05 5.45372352293e-05 12221542472.9 +UniRef50_B7VBB6 0.00089678458948 0.000673163926063 -90278405955.6 +UniRef50_Q9XAQ2 Peptide deformylase 3 2.46144694101e-05 4.26219599765e-05 7269844918.41 +UniRef50_UPI0003F78D52 dihydrolipoamide dehydrogenase 4.4091165399e-05 5.05302669038e-06 -15760175648.5 +UniRef50_UPI000470E763 50S ribosomal protein L20 4.16856163057e-05 0.000111221826355 28072621302.2 +UniRef50_P76097 0.00356301645962 0.00106325344239 -1.0091850056e+12 +UniRef50_P76091 0.00201711653875 0.000509967374951 -6.08454612226e+11 +UniRef50_P76092 0.00235729780894 0.00078029831934 -6.36654045911e+11 +UniRef50_P76093 0.0025000717507 0.00171674625812 -3.16238113839e+11 +UniRef50_UPI0004726B91 succinylglutamate desuccinylase 0.000172806796874 7.40117175019e-05 -39884785894.5 +UniRef50_Q65WJ9 2,3 diketo L gulonate reductase 0.00335716395959 0.0008173320351 -1.02536131516e+12 +UniRef50_P37079 Sorbitol 6 phosphate 2 dehydrogenase 0.0070650700495 0.00297491079493 -1.65124748297e+12 +UniRef50_M4VE07 0.000409534680746 0.000111620052693 -1.20271791169e+11 +UniRef50_Q4L9T6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0138370971311 0.00156073432148 -4.95611831415e+12 +UniRef50_G0W8W8 3.2724375537e-05 2.37833821672e-05 -3609588741.71 +UniRef50_H8E1H7 Rhamnan synthesis F 3.62110766339e-06 5.42965374139e-06 730132245.045 +UniRef50_K8BHL7 0.000119502669921 0.000126482326098 2817772848.67 +UniRef50_A0LK48 Cytidylate kinase 1.7875011221e-05 1.26760826466e-05 -2098871263.51 +UniRef50_A3PN16 malyl CoA thioesterase 0.00737608676664 0.0071144095129 -1.05642318476e+11 +UniRef50_W5XB80 7.88820605388e-06 1.05544241583e-05 1076384966.93 +UniRef50_I7EVV9 Protease DegQ 0.00438899668242 0.00171705793376 -1.07869446121e+12 +UniRef50_UPI0003C16653 PREDICTED 4.4709067907e-05 2.38428490702e-05 -8423948601.72 +UniRef50_UPI0003748772 hypothetical protein 3.10366119822e-06 7.90650956488e-06 1938968823.2 +UniRef50_N2KX33 Permease family protein 0.0041119048066 0.000501954739708 -1.45738114107e+12 +UniRef50_UPI000422BE1C hypothetical protein 6.96464088406e-05 1.2196799528e-05 -23193112265.5 +UniRef50_A3PIC8 GumN family protein 0.00223667336386 0.000474139974964 -7.11556357816e+11 +UniRef50_UPI000476E7CA hypothetical protein, partial 3.24332460515e-05 0.000360332619486 1.32377000833e+11 +UniRef50_Q45388 Protein tex 0.00210180891784 0.00673021747364 1.86854533094e+12 +UniRef50_A3PKD8 Flagellar basal body associated protein FliL 0.000654599980668 0.000763380190275 43915905501.6 +UniRef50_UPI0004631839 hypothetical protein 2.03760254449e-05 0.000108845823106 35716342962.3 +UniRef50_P0AEU2 Histidine binding periplasmic protein 0.00328814752836 0.000369916540948 -1.17812566034e+12 +UniRef50_D2N8C9 Membrane protein, putative 0.00413771502081 0.000438838993689 -1.49328164246e+12 +UniRef50_W0RB11 2.89708651689e-06 0.000221091908687 88087927261.6 +UniRef50_A3PRR5 0.00111785653596 0.00020319956779 -3.69258242153e+11 +UniRef50_A4WV09 Heme NO binding domain protein 0.00428101146838 0.000950314467692 -1.34464325143e+12 +UniRef50_Q8CN58 Beta lactamase 0.00974171953173 0.00155538470796 -3.30492382598e+12 +UniRef50_A0LG38 Non canonical purine NTP pyrophosphatase 5.85935234284e-06 3.1034087394e-05 10163349468.9 +UniRef50_E4BAZ7 0.000167275918245 0.00319024270853 1.22040878921e+12 +UniRef50_M4R8Z6 Allophanate hydrolase subunit 1 and 2 0.000106035390125 0.00944855307062 3.7716890332e+12 +UniRef50_B2A6S5 5.48627576404e-06 0.000527905288201 2.10906966123e+11 +UniRef50_A6LQH2 ATP synthase subunit b 0.00176946557275 0.000761289914267 -4.07012885035e+11 +UniRef50_A0A059IQJ7 1.71804120686e-05 2.2215893237e-05 2032885539.99 +UniRef50_UPI00047A44A8 hypothetical protein 7.61422876536e-06 8.04535933483e-06 174052701.462 +UniRef50_M1MIH5 Methionine tRNA ligase MetG 0.000329270528303 0.000716797792498 1.5644951205e+11 +UniRef50_Q2J3G4 ABC transporter related 0.000164841043168 0.000257918519823 37576519514.7 +UniRef50_D5AR59 Long chain fatty acid CoA ligase 0.00739043140798 0.00269263623804 -1.89655755853e+12 +UniRef50_M1MSQ9 Glycosyltransferase 0.000126673150626 0.000613973891223 1.96729288832e+11 +UniRef50_U5MP56 ATP dependent DNA helicase PcrA 0.000264406580561 0.000761487357835 2.00677609653e+11 +UniRef50_UPI0000557635 COG1494 0.000231845659421 6.4397287639e-05 -67600962511.0 +UniRef50_B4U3D2 Glycerol 3 phosphate acyltransferase 0.00710924348572 0.00438501291583 -1.09980531113e+12 +UniRef50_Q47151 Probable endopeptidase YafL 0.00401376420638 0.00147455324372 -1.02511062525e+12 +UniRef50_P34918 Glyceraldehyde 3 phosphate dehydrogenase 3 0.0113657976531 0.0032136113748 -3.29113763912e+12 +UniRef50_A9V0F3 Predicted protein 5.67595553148e-06 3.21047883019e-06 -995343199.112 +UniRef50_UPI00026C7458 uridylate kinase 1.18602595647e-05 0.00032347256221 1.25801710491e+11 +UniRef50_UPI000466CCAB hypothetical protein 7.58130286368e-05 5.42555512351e-06 -28416286808.8 +UniRef50_G4SV55 0.000162787776744 0.00017011488705 2958044344.29 +UniRef50_D0CPI8 Membrane bound lytic murein transglycosylase A 0.000124726858763 4.67247053037e-05 -31490426545.6 +UniRef50_Q9HTX6 Glycine cleavage system H protein 2 0.000265212638537 0.0121478660649 4.79717300479e+12 +UniRef50_UPI0002FE2DAD hypothetical protein 9.84303334315e-06 0.00141506220113 5.67304222015e+11 +UniRef50_A5V6A9 1 deoxy D xylulose 5 phosphate synthase 0.00322264409689 0.000728099062133 -1.00707844204e+12 +UniRef50_P37051 Formyltetrahydrofolate deformylase 0.002969319614 0.00194674785454 -4.12824767661e+11 +UniRef50_M1MN84 Transcriptional regulator, TetR family 0.00069714595573 0.00448209912357 1.52803204046e+12 +UniRef50_UPI0003B5D266 RNA polymerase sigma70 factor 5.2779075524e-06 6.56252586194e-06 518616175.601 +UniRef50_B2UC97 1.49952456488e-05 3.35773187243e-05 7501810928.26 +UniRef50_Q89AM1 Enoyl [acyl carrier protein] reductase [NADH] FabI 7.7142035136e-06 3.89567304826e-05 12612991526.3 +UniRef50_UPI000379D6F2 hypothetical protein 8.01371242936e-06 9.34545198818e-06 537639602.178 +UniRef50_D6SDD7 0.00314858377232 0.000889353538793 -9.12078969149e+11 +UniRef50_A6M2T4 Transcriptional regulator, RpiR family 0.000964709876066 0.00189169310385 3.7423450442e+11 +UniRef50_P0C0G7 Glyceraldehyde 3 phosphate dehydrogenase 0.0312091721497 0.0262510387645 -2.00165929074e+12 +UniRef50_U5MXQ9 Neutral endopeptidase PepO 0.000184277992011 0.00142288521904 5.00040936972e+11 +UniRef50_Q1YYL9 8.0179446909e-05 0.000238822870829 64046297010.2 +UniRef50_UPI0003DE8BE2 PREDICTED 9.03868372557e-06 2.64923870609e-05 7046274217.49 +UniRef50_B2TKY4 0.000298015254361 0.00324529316528 1.18985225981e+12 +UniRef50_V4KU43 1.52960440491e-05 6.4422989229e-06 -3574365555.12 +UniRef50_Q2S8X6 0.00103273619944 0.000791504684792 -97388122707.0 +UniRef50_Q9RWK1 0.000331128060398 0.0589119176438 2.36497836219e+13 +UniRef50_G7U9N4 Sugar kinase 0.000202224636884 0.00371618222463 1.41862779928e+12 +UniRef50_P0AAF8 Arginine transport ATP binding protein ArtP 0.00112252473688 0.00142918795512 1.23803704384e+11 +UniRef50_Q5HNW5 Protein GrpE 0.0217446947066 0.0045715881213 -6.9329938662e+12 +UniRef50_D9RBB0 ABC 2 type transport system permease protein 0.0152254918157 0.00323793116598 -4.8395253382e+12 +UniRef50_B2IX22 Nucleoside diphosphate kinase 2.96625841749e-05 0.000122981531816 37674004315.0 +UniRef50_P51599 GTP cyclohydrolase 1 1.78342529037e-05 2.65029180842e-05 3499646509.85 +UniRef50_P39211 Xylulose kinase 0.0121707827446 0.00477951394816 -2.98394591419e+12 +UniRef50_Q8TUT7 Carbamoyl phosphate synthase large chain, C terminal section 2.19675455646e-06 1.18542587344e-05 3898852947.54 +UniRef50_P42455 2 isopropylmalate synthase 0.000233778443676 0.00755147484335 2.95424383478e+12 +UniRef50_Z5QLE0 0.000195801475224 7.64499399824e-05 -48183679385.2 +UniRef50_Q7UUJ7 Arginine biosynthesis bifunctional protein ArgJ 7.61013046793e-06 1.56223566404e-05 3234634026.9 +UniRef50_P37640 Putative HTH type transcriptional regulator YhjB 0.00168348343601 0.00112215745199 -2.26614187993e+11 +UniRef50_Q6N6M8 Putative 3 methyladenine DNA glycosylase 3.46496940633e-05 3.03142830297e-05 -1750258635.74 +UniRef50_Q9HWF5 Protein translocase subunit SecY 0.0153597488857 0.0028233898868 -5.06108196628e+12 +UniRef50_Q1H4S2 Transcriptional regulator, BolA protein family 3.47820639494e-05 0.000101699846043 27015529804.7 +UniRef50_UPI00047D0941 ribonuclease J 4.41658138232e-05 7.60871799111e-05 12887047208.9 +UniRef50_D6RK40 3.88803457436e-06 5.72259483041e-06 740634487.953 +UniRef50_UPI00037D2EDA Fis family transcriptional regulator 2.85690616081e-05 6.85223115284e-05 16129617274.3 +UniRef50_B7H290 Bacterial regulatory helix turn helix protein, AraC family protein 0.000569942571355 0.00432311624254 1.51520226768e+12 +UniRef50_D9SLQ3 0.000381211316936 0.00432041352107 1.59030426925e+12 +UniRef50_D1QZF9 0.00199861059831 0.00096825149244 -4.15968614968e+11 +UniRef50_UPI0003773794 hypothetical protein, partial 7.11328550823e-06 1.0451608283e-05 1347721870.0 +UniRef50_M2SBT2 2.34907269986e-05 2.41590832408e-05 269823616.63 +UniRef50_W4SVI6 1.75669727904e-05 8.50826327346e-06 -3657112194.85 +UniRef50_T0U4L8 0.000164197362179 3.85445307448e-05 -50727589983.5 +UniRef50_UPI00037CC475 RNaseH ribonuclease 1.21193660833e-05 2.00647528096e-05 3207650122.27 +UniRef50_J0G9L6 0.0237918001072 0.00464661078999 -7.72914786525e+12 +UniRef50_R5WWI1 Sugar efflux transporter 0.000249865680095 0.000642196130241 1.5838861716e+11 +UniRef50_Q8CSQ8 Two component sensor histidine kinase 0.00790436750321 0.00218217187302 -2.31012059514e+12 +UniRef50_UPI00034B82F7 hypothetical protein 1.48941021585e-05 2.05197166506e-05 2271129604.51 +UniRef50_Q3STT6 Ribosomal RNA small subunit methyltransferase H 6.03893489987e-06 9.82304937404e-06 1527693449.53 +UniRef50_UPI00016C4B38 hypothetical protein 4.34435018842e-06 0.00013459701863 52584600630.0 +UniRef50_M1XJ95 0.00062011904865 0.00245638279711 7.41322208743e+11 +UniRef50_S1SS99 0.000186469437616 0.000283166868808 39037939583.1 +UniRef50_Q9MB35 Peroxiredoxin Q, chloroplastic 1.26087283836e-05 0.000289937078423 1.11960858112e+11 +UniRef50_Q9RU52 Propionyl CoA carboxylase, beta subunit, putative 0.00024566050805 0.0375754021169 1.50704747749e+13 +UniRef50_A6LSX6 Metal dependent phosphohydrolase 0.000276095179701 0.00110832621713 3.35981882433e+11 +UniRef50_UPI000380524A hypothetical protein 9.07208606024e-06 8.46940201252e-05 30529502767.5 +UniRef50_A5UNL2 Adhesin like protein 0.00269941434356 0.000393507004076 -9.30923089613e+11 +UniRef50_UPI00037DF1FA hypothetical protein, partial 2.35975321104e-05 3.81466499987e-05 5873657429.26 +UniRef50_P45475 0.00282392780224 0.00049732744901 -9.39277113196e+11 +UniRef50_A3PQA6 Transcriptional activator, TenA family 0.00362950200244 0.00125414943877 -9.58958978807e+11 +UniRef50_Q1QVP5 Phosphoribosylformylglycinamidine cyclo ligase 0.000135592317297 0.00020589203825 28380860023.3 +UniRef50_M8BCA5 4.3274159533e-05 5.21507714433e-05 3583597156.47 +UniRef50_UPI0003699F3D hypothetical protein 0.000254326332754 5.41322522287e-05 -80820806965.6 +UniRef50_P44990 Putative L ribulose 5 phosphate 3 epimerase SgbU 0.00502164878361 0.0048863558954 -54619399200.8 +UniRef50_U3NFX9 ABC transporter ATP binding protein 0.0114803453649 0.00348412896761 -3.2281706842e+12 +UniRef50_UPI00035F71CA hypothetical protein, partial 0.000120677405022 0.000102916041577 -7170480379.19 +UniRef50_I5C4V6 4.76553083995e-05 3.63396328313e-05 -4568277085.84 +UniRef50_C6DH09 Dipeptide and tripeptide permease A 0.00380633421698 0.00167401192526 -8.60844675704e+11 +UniRef50_K6WI65 2.42416031627e-05 7.89125253998e-05 22071322194.8 +UniRef50_Q6FWS8 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.44177514164e-05 3.74429258416e-05 5258422752.32 +UniRef50_P39361 Putative sgc region transcriptional regulator 0.00310448986857 0.000730729744925 -9.58316091226e+11 +UniRef50_UPI00046EB60D FAD dependent oxidoreductase 3.76532761913e-05 6.45134814142e-06 -12596601244.5 +UniRef50_A2C638 Holliday junction ATP dependent DNA helicase RuvB 1.34899598818e-05 1.5472354052e-05 800316853.222 +UniRef50_I0C1C0 0.013969418527 0.00321716328876 -4.34081738467e+12 +UniRef50_UPI00041A4D89 ABC transporter 2.14139228768e-06 7.48307264848e-06 2156501911.44 +UniRef50_C6SPV4 0.00551911855697 0.00113055741727 -1.7717159858e+12 +UniRef50_A9M100 Inner membrane protein 9.61339530144e-05 0.00404695253804 1.59499394477e+12 +UniRef50_Q8DXA0 Membrane protein, putative 0.000111352799069 0.000423394934474 1.25975239251e+11 +UniRef50_I6TR24 Transcriptional regulator 0.00402767363987 0.00140129314112 -1.06030203666e+12 +UniRef50_X6L6D5 0.000467357646695 5.79202984179e-05 -1.65294881861e+11 +UniRef50_N6V1G3 0.000271450233574 8.4644289495e-05 -75415851991.4 +UniRef50_P18005 UPF0380 protein YubP 5.50028846938e-05 1.35426340338e-05 -16738011965.9 +UniRef50_P96704 0.00107565091756 0.00120742214588 53197661887.6 +UniRef50_K7RW82 Inositol monophosphatase family protein 0.00075196865095 0.00537599664904 1.86677684603e+12 +UniRef50_D5AQI9 RNA polymerase sigma factor RpoD 0.00917695135375 0.00166812086099 -3.03140701364e+12 +UniRef50_UPI000476E737 16S rRNA methyltransferase 1.77588786757e-05 4.03341764505e-05 9113924741.74 +UniRef50_A4WNN4 Succinate dehydrogenase subunit D 0.00612085748838 0.00047889195437 -2.27773072078e+12 +UniRef50_P18190 Uptake hydrogenase small subunit 0.00022767267507 5.20272514985e-05 -70910212907.7 +UniRef50_K2DSW0 4.84310846305e-05 0.000241382637143 77896909531.3 +UniRef50_G1XZ93 5.43026453118e-05 2.26977700987e-05 -12759275959.0 +UniRef50_Q8S4Y1 Acetyl CoA acetyltransferase, cytosolic 1 6.08264120912e-06 6.04291516233e-06 -16037892.5825 +UniRef50_G7LY81 Multi sensor signal transduction histidine kinase 0.000147476250443 0.000941798867973 3.20677788131e+11 +UniRef50_Q7NF44 Glutathione synthetase 5.16051069709e-06 9.9042308259e-06 1915098027.99 +UniRef50_A0M0D8 30S ribosomal protein S18 0.00354273107629 0.00151237753588 -8.19678639503e+11 +UniRef50_P11290 0.000565927500567 0.000174916113641 -1.57856095151e+11 +UniRef50_I6U2C8 Transcriptional regulator 0.00300806379549 0.00512603096127 8.55049335205e+11 +UniRef50_A6V7V9 0.0013383957765 9.43149365607e-06 -5.36519189208e+11 +UniRef50_A3M2U1 Chromosome partition protein Smc 0.000141191198509 0.00699114061376 2.76540863727e+12 +UniRef50_P39762 Aminopeptidase AmpS 0.000120474251758 0.00152043786618 5.65182490627e+11 +UniRef50_Q6A6Z0 0.000152949049345 0.00491401698154 1.9221015491e+12 +UniRef50_F5M502 0.00234765907505 0.00115198789165 -4.82707129274e+11 +UniRef50_UPI000287F837 alpha beta hydrolase 7.78967760848e-05 2.64978040258e-05 -20750395756.5 +UniRef50_F5M500 0.00174749995948 0.000204622019741 -6.22878757514e+11 +UniRef50_UPI0003AD3586 hypothetical protein 9.80286148051e-06 1.02295035835e-05 172240652.464 +UniRef50_G7U769 Translocase subunit 0.000243016731023 0.00517288475424 1.99024821726e+12 +UniRef50_P37387 D xylose binding periplasmic protein 0.00403690109778 0.000200895717825 -1.54864244497e+12 +UniRef50_W0YQG2 NADH dependent enoyl ACP reductase 3.2073309994e-05 0.000109545252939 31276374054.5 +UniRef50_B8DVQ6 30S ribosomal protein S16 0.00174224302547 0.0012478170642 -1.99605827854e+11 +UniRef50_UPI0003B54983 heme ABC transporter ATP binding protein 1.0908174305e-05 7.40248864949e-05 25480991240.2 +UniRef50_G8V7W6 Myo inositol catabolism protein 0.000294144926378 0.00814745696907 3.17047844261e+12 +UniRef50_R8ZC75 Sensor response regulator hybrid 9.53766746351e-05 4.57382609982e-05 -20039636717.1 +UniRef50_UPI000237926B polar amino acid ABC transporter, inner membrane subunit 6.25109496583e-06 1.12882999088e-05 2033581448.93 +UniRef50_Q9ZMX5 Threonine synthase 8.78555443445e-05 0.0048185830238 1.90985273601e+12 +UniRef50_E4ZD88 CobW related protein 0.000453238579631 0.00184058102211 5.60087168635e+11 +UniRef50_Q8DVW8 Ribonuclease M5 0.00614246376994 0.00280927412234 -1.34564956357e+12 +UniRef50_A0A023RUP9 0.000460348766892 0.00245216220496 8.04119527248e+11 +UniRef50_A4YJX9 Argininosuccinate synthase 2.28043905765e-05 4.5133528938e-05 9014547165.88 +UniRef50_B8A191 1.39101390792e-05 2.54200530281e-05 4646693503.7 +UniRef50_E3I166 Response regulator receiver protein 0.0128393501946 0.00265977656136 -4.10961879314e+12 +UniRef50_B2S5M8 Glutamate tRNA ligase 1 0.00551398269547 0.00180957186633 -1.49551610996e+12 +UniRef50_P68398 tRNA specific adenosine deaminase 0.000226039514279 0.00363257854014 1.37526160767e+12 +UniRef50_D4HA24 1.10105365464e-05 0.00390960683218 1.5739111657e+12 +UniRef50_P22610 Type 4 prepilin like proteins leader peptide processing enzyme 0.000473106579946 0.00024982807633 -90140271845.1 +UniRef50_UPI00031B36EE hypothetical protein 4.18543658605e-06 7.72020159125e-06 1427028009.04 +UniRef50_A7IKH6 Chitin deacetylase 0.00705397979079 0.000896868348018 -2.4857014457e+12 +UniRef50_W1YCR6 DNA polymerase II protein 1.00134637373e-05 0.000337174067088 1.32078750285e+11 +UniRef50_R4UR16 Cobalamin synthesis protein P47K 5.19168052679e-06 6.77820634222e-06 640499940.55 +UniRef50_J3UP44 0.00857094071114 0.00167522890869 -2.78388347455e+12 +UniRef50_P48925 NADH ubiquinone oxidoreductase chain 6 0.000110682708458 1.44067371866e-05 -38867791041.3 +UniRef50_UPI0004727F6C major facilitator transporter 1.77570623264e-05 1.15141893517e-05 -2520324428.55 +UniRef50_G7U931 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.000517764178998 0.00480363774912 1.73025975384e+12 +UniRef50_Q67QM2 Oligopeptide ABC transporter permease protein 0.000425251298767 0.00113366620795 2.85995792066e+11 +UniRef50_F9YZR2 0.000398783766156 0.00175693348648 5.48301708464e+11 +UniRef50_E8ZNH1 Magnesium transporter 0.000360286142419 0.00206637851517 6.88770426987e+11 +UniRef50_UPI0004707272 peptide ABC transporter substrate binding protein 6.20658054929e-05 4.88667733008e-06 -23083915706.1 +UniRef50_A4VMC4 Isocitrate dehydrogenase kinase phosphatase 0.000720082109218 0.000733333500788 5349749389.67 +UniRef50_F9YZR4 0.0003594538252 0.000615243135819 1.03265283585e+11 +UniRef50_Q81G03 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.61253024194e-05 8.07831529704e-06 -3248667448.93 +UniRef50_UPI000185F617 GTP binding protein lepA, putative 2.12087921474e-05 1.27303855591e-05 -3422836781.45 +UniRef50_UPI00035F1A33 hypothetical protein 1.24949684171e-05 5.31051634378e-06 -2900451465.14 +UniRef50_UPI00038FD59B Leu Ile Val binding protein homolog 1 5.50769749069e-05 0.000164773576958 44285864376.7 +UniRef50_Q796Y8 Putative peroxiredoxin YgaF 1.5503080275e-05 0.000423870777005 1.64863050405e+11 +UniRef50_C0QKP4 Holliday junction ATP dependent DNA helicase RuvB 1.08471768462e-05 9.73932967508e-06 -447251497.795 +UniRef50_Q1QUS4 Leucyl phenylalanyl tRNA protein transferase 0.00186638178171 2.3423010334e-05 -7.44025071653e+11 +UniRef50_Q9FEA2 Glutamate tRNA ligase, chloroplastic mitochondrial 3.51923865272e-06 5.687859083e-06 875498679.669 +UniRef50_R0D1R5 1.6114000738e-05 1.57092991778e-05 -163382986.099 +UniRef50_UPI0003C19684 7.94027972473e-05 2.94397424455e-06 -30867365101.5 +UniRef50_UPI00022B367A PREDICTED 3.97294913556e-05 3.67435541448e-05 -1205459493.57 +UniRef50_A3PJ06 0.000511393577465 0.00101529936426 2.03432949749e+11 +UniRef50_Q89IA9 Blr5730 protein 0.00147020726376 3.78468844891e-05 -5.7826146215e+11 +UniRef50_UPI000395A40D hemin ABC transporter ATP binding protein 9.04485964171e-06 0.0001824528903 70006949932.5 +UniRef50_UPI0004737F0F 50S ribosomal protein L4, partial 2.69624230048e-05 0.000274116468261 99779120991.0 +UniRef50_P36645 Protein transport protein HofB homolog 0.00387705485979 0.00089830085079 -1.20255954686e+12 +UniRef50_UPI00036C1E72 hypothetical protein 1.6034634256e-05 3.21817571849e-05 6518791673.88 +UniRef50_Q479B1 D amino acid dehydrogenase small subunit 3.27093417385e-05 2.13242302316e-05 -4596309226.36 +UniRef50_R5BVY8 Adenylylsulfate reductase 0.00050326031403 0.000405983747733 -39271743531.8 +UniRef50_H8XBT8 Recombinase A 9.04781887215e-05 0.000103567946051 5284495663.3 +UniRef50_A8LGN1 Thioesterase superfamily protein 2.55159319187e-05 7.28315827601e-05 19101908873.0 +UniRef50_Q59643 Delta aminolevulinic acid dehydratase 0.0103385774077 0.00260028995401 -3.12404160452e+12 +UniRef50_UPI000367F7CA hypothetical protein 0.00103641467131 0.000805409195995 -93259745140.6 +UniRef50_Q5HNG0 D alanine aminotransferase 0.01288906538 0.00382529543471 -3.65915515188e+12 +UniRef50_Q2FZK3 Protein FmtA 0.0172714855141 0.00501362938122 -4.94864694166e+12 +UniRef50_W0RCE0 CHAT domain protein 6.81742071424e-05 0.000207274046011 56156311898.4 +UniRef50_C9XLF6 NUDIX family protein 0.00022469404098 0.000847799153669 2.51555180352e+11 +UniRef50_K2FFD1 4.67746337876e-06 8.8691289884e-06 1692226844.13 +UniRef50_B4SL85 Phosphatidate cytidylyltransferase 0.000120989098994 0.000436802156898 1.27497606938e+11 +UniRef50_B9DKR8 Mevalonate kinase 0.0235668667175 0.00658274570528 -6.85669807123e+12 +UniRef50_F0YFQ2 Expressed protein 0.000356460470221 9.81636267971e-05 -1.04277605349e+11 +UniRef50_UPI0003AD8CD3 PREDICTED 5.69224233244e-05 3.83696408609e-05 -7489985948.76 +UniRef50_C1KYW0 Peptide chain release factor 1 0.0103663097957 0.00647748035097 -1.56996816814e+12 +UniRef50_A8EQZ6 Phosphate ABC transporter, periplasmic phosphate binding protein 5.17540087729e-06 8.86415627443e-06 1489195819.94 +UniRef50_UPI0004720687 hypothetical protein 7.73567847482e-05 0.000232758917577 62737748021.7 +UniRef50_UPI000380DC03 hypothetical protein 8.88661127911e-06 2.17568984116e-05 5195892851.57 +UniRef50_Q989X4 Mlr6247 protein 0.0137836325786 0.00206133706904 -4.73243454597e+12 +UniRef50_Q9RZ42 0.000407163231412 0.0589261063404 2.36248154413e+13 +UniRef50_UPI0003646AAD alkaline phosphatase 7.55662202152e-06 1.78873493124e-06 -2328566798.28 +UniRef50_Q9RZ45 0.000112338638698 0.023027951335 9.25131405169e+12 +UniRef50_Q9RZ47 0.000422007264252 0.0646013149426 2.59099740784e+13 +UniRef50_Q9RZ48 0.000304850160433 0.105786969309 4.25844259116e+13 +UniRef50_Q6GIG7 Probable nitronate monooxygenase 0.017993146217 0.00150349809539 -6.65707329743e+12 +UniRef50_D5GYN2 Transcriptional regulator, repressor of sugar transport operon 0.00557419310884 0.0033112742603 -9.13568108293e+11 +UniRef50_P63946 4 hydroxy tetrahydrodipicolinate synthase 0.000141028389365 0.00659797121806 2.60674705554e+12 +UniRef50_D4GJL5 UPF0246 protein PANA_0658 3.26698352855e-05 4.33227891144e-05 4300728187.17 +UniRef50_A0A021ZQ34 ThiC associated domain protein 2.42191359894e-05 9.92110420654e-05 30275152737.1 +UniRef50_I6T523 0.00948815322503 0.00351216795452 -2.41257858729e+12 +UniRef50_UPI00037F2099 hypothetical protein 1.01779810248e-05 2.69185504356e-05 6758373301.03 +UniRef50_UPI0002559CF1 sulfate ABC transporter ATPase 8.22121588816e-05 5.07888145943e-05 -12685989696.6 +UniRef50_UPI0004768E22 hypothetical protein 3.74800787946e-06 0.000109851739266 42835378400.1 +UniRef50_Q9PQU6 Methionine tRNA ligase 1.12830008144e-05 1.84705436418e-05 2901699240.49 +UniRef50_B2N0Z3 Anaerobic dimethyl sulfoxide reductase chain A 0.00422868366749 0.00145920469569 -1.11807264624e+12 +UniRef50_C6DKE8 Altronate oxidoreductase 0.00261399181079 0.000351346461041 -9.13457693475e+11 +UniRef50_Q8CQJ8 Penicillin binding protein 4 0.00897662413118 0.00385433456954 -2.0679311536e+12 +UniRef50_Q4A044 Histidinol dehydrogenase 0.0154982370418 0.00280294191569 -5.1252464312e+12 +UniRef50_Z5YDT5 Replication initiator protein 3.54545398333e-05 5.43716860061e-06 -12118381121.2 +UniRef50_V9FLN1 2.49543689114e-05 0.00101306417375 3.98912053684e+11 +UniRef50_Q2VP64 1.03828821597e-05 1.49398557018e-05 1839706139.3 +UniRef50_A9M916 Modification methylase BabI 0.00647115852041 0.0024321683294 -1.63058990409e+12 +UniRef50_D2NA34 0.00962311234154 0.00313183120487 -2.62060985185e+12 +UniRef50_P06202 Periplasmic oligopeptide binding protein 0.00263512751505 0.000473095131148 -8.72839004501e+11 +UniRef50_UPI0002F32181 glycerophosphoryl diester phosphodiesterase 5.66175492305e-05 1.99639767635e-05 -14797496994.8 +UniRef50_M9V9X8 6 phosphogluconolactonase 0.000608028606607 0.00640365433242 2.33976522583e+12 +UniRef50_D5BS61 RNA polymerase, sigma 28 subunit, FliA WhiG 0.00854063031988 0.00339406749657 -2.0777305672e+12 +UniRef50_UPI0003AD846F PREDICTED 8.6025359705e-05 5.17228213197e-05 -13848355685.6 +UniRef50_I0C6W8 Staphylococcal accessory regulator 0.0114407131788 0.000810599740996 -4.291507241e+12 +UniRef50_A6LWF3 Diguanylate cyclase phosphodiesterase 0.000340403280732 0.000704190322897 1.46865293091e+11 +UniRef50_UPI00041214C6 biotin attachment protein 3.34093086964e-05 2.91290404665e-05 -1727996809.21 +UniRef50_D3E6A1 Respiratory nitrate reductase, gamma subunit 0.0174236468167 0.00751953314765 -3.99841222534e+12 +UniRef50_Q21JR5 3.98266638365e-05 4.05159521514e-05 278274151.244 +UniRef50_A0JXX3 D alanine D alanine ligase 0.000335165084517 0.00511480524772 1.92959938666e+12 +UniRef50_UPI00035DE730 hypothetical protein 6.36899821103e-06 8.50295718001e-05 31756238831.7 +UniRef50_B7KZS8 3.31451076911e-05 2.13681774328e-05 -4754491264.46 +UniRef50_UPI000382DE8E MULTISPECIES 1.37744383511e-05 3.05569592427e-05 6775309628.63 +UniRef50_UPI0000E116E2 two component LuxR family transcriptional regulator 1.53708360804e-05 2.47717924667e-05 3795281455.86 +UniRef50_A4WNW4 Transposase, IS4 family 0.00165184404296 0.00124904543779 -1.62614739802e+11 +UniRef50_A1BF67 Bifunctional protein FolD 8.14143598766e-06 2.45187334144e-06 -2296946259.06 +UniRef50_P0ABZ3 Flagellar motor switch protein FliG 0.00195196439836 0.000460048431843 -6.02304783552e+11 +UniRef50_N5AMH8 Diacetyl reductase [ acetoin forming] 0.00253194908843 0.00157730838189 -3.85400167989e+11 +UniRef50_F0YAY5 0.000248619208242 0.000146692105592 -41149222126.0 +UniRef50_A6KXK3 3 oxoacyl [acyl carrier protein] synthase 3 3.85278219633e-05 0.00448236204553 1.79403040803e+12 +UniRef50_Q5NQ43 Adenylate kinase 0.000232169034401 0.000401798482461 68481489769.2 +UniRef50_UPI00036D1E75 NADPH 9.33339050994e-06 8.20403086894e-05 29352675083.3 +UniRef50_I0UU63 1.85710498861e-06 8.04980375673e-06 2500068485.65 +UniRef50_Q5HQ74 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.0131044623867 0.00404670757669 -3.65672676795e+12 +UniRef50_D3DYQ8 Isoleucine tRNA ligase 0.00318713445573 0.000861884565147 -9.38731914852e+11 +UniRef50_UPI00046F3F36 hypothetical protein, partial 3.71511401727e-05 2.88384731921e-05 -3355925667.96 +UniRef50_Q96528 Catalase 1 1.57921564784e-05 4.43056457471e-05 11511245517.6 +UniRef50_K8DL52 Ribonuclease E 0.00940047039555 0.00110661535764 -3.34833105585e+12 +UniRef50_P30793 GTP cyclohydrolase 1 6.10870781631e-05 4.01977104534e-05 -8433294085.77 +UniRef50_Q8X7L9 Tyrosine protein kinase wzc 0.00357717346774 0.000856916072981 -1.09820129158e+12 +UniRef50_UPI00036966F0 30S ribosomal protein S2 1.31022188669e-05 1.06063153197e-05 -1007626890.19 +UniRef50_W1MMZ8 4.09490814421e-05 0.000152031729916 44845428326.3 +UniRef50_UPI000377C983 phospholipase C 3.42781538902e-06 4.70761518805e-06 516670883.778 +UniRef50_P32151 0.00390592085378 0.000987483548604 -1.17820895335e+12 +UniRef50_B4D0M3 6.47122377157e-05 8.55227474138e-06 -22672466213.0 +UniRef50_UPI0003B38626 hypothetical protein 4.94356569047e-06 0.000208644187816 82236440840.0 +UniRef50_UPI00037E7CCD hypothetical protein 3.57962790692e-05 1.70328989228e-05 -7575006817.67 +UniRef50_UPI0003B6D2EE diaminopimelate decarboxylase 4.77516726566e-06 0.000101277774783 38959286874.9 +UniRef50_E3D189 Adhesin MafB2 0.000233016042498 0.00265727457858 9.78702920013e+11 +UniRef50_UPI0003B777B8 hypothetical protein, partial 0.00118780063651 0.000366858754132 -3.31424312006e+11 +UniRef50_V6F621 1.806542464e-05 5.71892126128e-05 15794753307.5 +UniRef50_UPI0003F4A07E hypothetical protein TREMEDRAFT_69682 3.75365990922e-06 6.95035490164e-06 1290544996.3 +UniRef50_UPI0004772D62 hypothetical protein 1.48847945658e-06 1.12413892046e-05 3937369346.94 +UniRef50_P51973 Competence protein ComA 0.000222726908368 0.00396872555079 1.51230562052e+12 +UniRef50_R8HF68 5.78941968868e-06 0.00053050905124 2.11835754291e+11 +UniRef50_UPI00034D0998 hypothetical protein 7.2713593817e-06 1.34450908375e-05 2492411148.91 +UniRef50_UPI000470E01F transposase 1.5289836662e-05 0.00266616597531 1.07019122708e+12 +UniRef50_R1CYW6 9.61288668513e-06 6.32065426698e-05 21636416589.1 +UniRef50_UPI0004753801 5 hydroxyisourate hydrolase 3.89129792753e-05 4.80584334076e-05 3692132060.55 +UniRef50_Q1QUQ7 Transcriptional regulator, LysR family 0.000216117932552 0.000296304386488 32372255452.4 +UniRef50_UPI0002C376E7 6.25633958252e-05 6.15626849461e-05 -403999261.996 +UniRef50_UPI00037266A5 MULTISPECIES 9.43123630514e-06 7.26291881117e-06 -875376380.563 +UniRef50_A5ISN2 7.45947997873e-05 0.000139850305379 26344448382.5 +UniRef50_I4API8 Mg chelatase subunit ChlI 1.35185705489e-05 8.69719154025e-05 29654016691.3 +UniRef50_X6KUI6 8.33995770377e-06 6.16099870099e-05 21505764527.6 +UniRef50_Q849Z0 0.00368411555032 0.000773755559468 -1.17494804244e+12 +UniRef50_G6A195 4.10657088035e-05 6.18016290057e-05 8371345443.98 +UniRef50_P46331 0.0316653564599 0.00671076062587 -1.00744765655e+13 +UniRef50_B6JCL5 0.000732697442754 0.00606678126014 2.15343509365e+12 +UniRef50_F0P804 0.0236306598737 0.00176527747472 -8.82732319289e+12 +UniRef50_W1YTI2 0.000170649850073 0.00255650819785 9.63200292773e+11 +UniRef50_P77279 Probable iron export ATP binding protein FetA 0.00380299104152 0.00168416334469 -8.5539674215e+11 +UniRef50_A3CKQ0 Malate permease, putative 0.00501887956223 0.00258908036465 -9.80939753052e+11 +UniRef50_UPI000288D813 hypothetical protein 0.000617162498962 7.29966006614e-05 -2.19686450811e+11 +UniRef50_Q03LK9 ABC type amino acid transport system, permease component 0.00616350332049 0.00210814387477 -1.63719837309e+12 +UniRef50_D5ASM5 Type I secretion membrane fusion protein, HlyD family 0.00591531589236 0.00204698684809 -1.56169190491e+12 +UniRef50_B8ZUE2 GMP synthase [glutamine hydrolyzing] 2.45355627173e-05 4.57355168031e-05 8558681617.13 +UniRef50_A0PZM2 4 hydroxy tetrahydrodipicolinate reductase 0.000354802524375 0.00141187269415 4.2675219925e+11 +UniRef50_UPI0004207E45 hypothetical protein 2.55505842038e-05 3.44103333913e-05 3576789468.34 +UniRef50_G5JDC1 1.84699267914e-05 6.09773218817e-05 17160757022.3 +UniRef50_H8HKL3 Acyl CoA dehydrogenase FadE23 0.000794684292609 0.000155021892496 -2.58239560466e+11 +UniRef50_UPI00022CA85D PREDICTED 6.28874870626e-07 1.61546926491e-05 6267963160.39 +UniRef50_UPI00016C57C9 lysyl tRNA synthetase 4.16065734123e-06 5.25286073023e-06 440935910.982 +UniRef50_P30852 Protein smf 0.00337566204641 0.000936140724188 -9.84864694073e+11 +UniRef50_UPI0003A4112D cell division protein FtsZ 8.83313311464e-06 2.68003637158e-05 7253591476.42 +UniRef50_A9WLY4 Cysteine tRNA ligase 4.58947098707e-06 1.20296299373e-05 3003683469.23 +UniRef50_UPI00037650D9 hypothetical protein 2.33189679708e-05 6.42410066233e-05 16520729173.9 +UniRef50_UPI0003C1696D PREDICTED 1.13142446051e-05 7.8544689614e-06 -1396753883.58 +UniRef50_Q9RZG7 Transposase related 4.24739620612e-05 0.0427974200824 1.7260696411e+13 +UniRef50_UPI0004726E09 porin 3.84824649493e-05 1.19311906733e-05 -10719075246.0 +UniRef50_J6J4P6 0.000119667036976 0.000115029588815 -1872194730.48 +UniRef50_UPI0004785436 acetolactate synthase 9.32716781195e-06 0.000359678666412 1.41441199281e+11 +UniRef50_A0A058ZLV2 Tim44 family protein 0.000380360437791 0.000275996920751 -42132832513.4 +UniRef50_C5QYU7 0.000605275665785 5.86226139851e-05 -2.20690545199e+11 +UniRef50_M9KGL8 Alpha beta hydrolase family protein 0.00104451415198 0.00031754484429 -2.93486430431e+11 +UniRef50_L0WM00 NAD+ synthetase 0.000209717802518 0.00604869661018 2.35726739698e+12 +UniRef50_UPI000314C40B hypothetical protein 3.05130591452e-05 4.03205846823e-05 3959418411.2 +UniRef50_Q89FG2 Coenzyme PQQ synthesis protein D 0.000642670136543 0.000444167895145 -80137790748.8 +UniRef50_U6JTT0 Beta tubulin cofactor d, putative 3.2491915743e-05 5.28149452811e-05 8204656416.15 +UniRef50_UPI0003492D90 MULTISPECIES 6.50377774349e-05 0.00404964141828 1.6086333864e+12 +UniRef50_Q57975 Putative aminopeptidase MJ0555 0.00303179156342 0.00167118666206 -5.49292895179e+11 +UniRef50_E3GPG2 Phage prohead protease 0.000383234506454 0.000377803887234 -2192407620.31 +UniRef50_I6TPD4 MutE 0.00321702208702 0.000237202172853 -1.20298986585e+12 +UniRef50_UPI00047CC989 magnesium transporter 0.000487292539311 1.75671358437e-05 -1.89633909559e+11 +UniRef50_UPI0003ACFD18 hypothetical protein 1.03578613843e-05 0.00198407323305 7.96813115754e+11 +UniRef50_UPI0001FFE023 cation diffusion facilitator family transporter 7.76395698985e-06 4.17724681257e-05 13729653276.9 +UniRef50_V7ABJ2 Branched chain amino acid transport family protein 3.46912113766e-05 4.02368333017e-05 2238835623.6 +UniRef50_W4UL00 Secreted lipoprotein 0.000130802481382 0.000266654366494 54845073109.8 +UniRef50_Q9ZMN9 Fumarate reductase cytochrome b subunit 0.00014803372112 0.0100900560791 4.01371642825e+12 +UniRef50_A0A023Z2T1 0.000147795082047 3.95512644243e-05 -43699357475.4 +UniRef50_P30744 L serine dehydratase 2 0.00710356582203 0.00275965049683 -1.75369192262e+12 +UniRef50_Q30T29 Phosphoheptose isomerase 8.86768145148e-06 1.22836990791e-05 1379088235.52 +UniRef50_UPI0002492490 L serine ammonia lyase beta subunit, partial 1.41727946985e-05 0.00017206634699 63743564632.1 +UniRef50_P33650 Ferrous iron transport protein B 0.00484834336017 0.00258321166408 -9.14461462003e+11 +UniRef50_Q98IW6 Mll2216 protein 0.00546588430334 0.00200304344281 -1.39799134923e+12 +UniRef50_Q8TYM1 Putative citramalate synthase CimA 0.00746579313362 0.00129361766876 -2.49178297627e+12 +UniRef50_G3NJA9 3.40925183228e-06 2.53102228199e-06 -354552046.541 +UniRef50_UPI0001744894 3 phosphoglycerate dehydrogenase 6.1305383263e-06 5.656835945e-06 -191239464.313 +UniRef50_T4EWY4 DEAD DEAH box helicase family protein 0.000744974825181 0.00187169854179 4.5487219085e+11 +UniRef50_UPI00035CD489 hypothetical protein 5.82240599793e-05 7.05673848386e-05 4983151715.33 +UniRef50_B1ZP50 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.13182010803e-06 9.64575321409e-06 1014905644.34 +UniRef50_A7X235 N anthranilate isomerase 0.00981547052031 0.000558078812965 -3.73732263322e+12 +UniRef50_Q6MMY0 Lipoprotein releasing system ATP binding protein LolD 3.65080841992e-05 3.74812467634e-05 392877669.215 +UniRef50_U5MQT2 Diguanylate cyclase 0.000206743710026 0.00164873069431 5.82147840724e+11 +UniRef50_A5D504 N acetyl gamma glutamyl phosphate reductase 1.98480593853e-05 2.86938491005e-05 3571153858.07 +UniRef50_UPI00036A45EE hypothetical protein, partial 1.06528225414e-05 1.30048508318e-05 949542683.467 +UniRef50_A1VBW6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 7.75530083221e-06 6.1755188245e-06 -637777382.618 +UniRef50_UPI0003A8F6AB hypothetical protein 7.57235631324e-06 0.000196647594516 76331993876.6 +UniRef50_K0R3E3 2.41131458509e-05 5.64515405483e-05 13055406776.1 +UniRef50_Q5LQ58 Translation initiation factor IF 3 0.0122617240416 0.00339701217924 -3.57879296108e+12 +UniRef50_UPI00037C5039 hypothetical protein 2.9457026203e-06 0.000239746868444 95599536520.2 +UniRef50_A6LSJ0 0.000317869054209 0.000754609631724 1.76317530552e+11 +UniRef50_Q4MH05 6.26394460399e-06 9.75656280464e-06 1410012826.85 +UniRef50_A3M6B4 0.000240948503526 0.0043275868743 1.64982605897e+12 +UniRef50_R0FJ43 0.000123938716906 6.99342745911e-05 -21802256071.6 +UniRef50_P57371 DNA topoisomerase 1 1.80109174903e-06 4.83483665009e-06 1224760044.79 +UniRef50_A3M6B3 0.000306558539943 0.00575762125619 2.20066091061e+12 +UniRef50_A3M6B2 0.000340909339201 0.009609108098 3.74168557252e+12 +UniRef50_P37469 Replicative DNA helicase 0.0357807243797 0.0153279110926 -8.25705170825e+12 +UniRef50_O06851 Valine tRNA ligase 8.23660122089e-06 4.17019627095e-06 -1641657578.69 +UniRef50_UPI00036C4ADF hypothetical protein 2.73986679984e-06 1.34524004575e-05 4324781295.18 +UniRef50_G7DHM9 3.06513214593e-05 8.03486007643e-05 20063401509.6 +UniRef50_UPI0003B33000 ABC transporter ATP binding protein, partial 0.000182507419585 3.38468337329e-05 -60016102779.0 +UniRef50_UPI0002198415 LysR family transcriptional regulator 0.000175734877293 9.31124003574e-05 -33355707830.7 +UniRef50_F2DNI7 Predicted protein 2.45002123398e-05 4.0497043141e-05 6458116897.63 +UniRef50_J4Q6B5 IS1167, transposase domain protein 0.000123310242767 0.00045254477494 1.329160208e+11 +UniRef50_P67641 UPF0735 ACT domain containing protein SA1469 0.0115389244963 0.00164478861935 -3.99438406823e+12 +UniRef50_A6LZA0 0.00101532567238 0.000943374700462 -29047490301.0 +UniRef50_Q6F925 0.000364136273772 0.00777325857487 2.99115359311e+12 +UniRef50_Q1RJH2 ATP dependent Clp protease proteolytic subunit 0.000854434721756 0.00108135758837 91611545908.8 +UniRef50_G7LZU7 GerA spore germination protein 0.000191503915899 0.00141084126532 4.92261450913e+11 +UniRef50_A5UP49 0.00240771727614 0.000352968173539 -8.29527427327e+11 +UniRef50_A3PFM0 0.00217100033568 0.000870005657286 -5.25227516666e+11 +UniRef50_Q1RB71 0.000667297812554 0.000494944198654 -69581268948.1 +UniRef50_Q4L5M1 Antibacterial protein 3 homolog 0.0447548604793 0.0055611587342 -1.58229783553e+13 +UniRef50_U9FRQ4 0.000177353468843 0.000568300433186 1.57830086964e+11 +UniRef50_P37017 0.00433974174284 0.00046506567747 -1.56425427521e+12 +UniRef50_UPI0003B51420 ABC transporter ATP binding protein 4.11567404632e-05 9.38442180989e-05 21270581269.6 +UniRef50_UPI000378DF42 hypothetical protein 2.39148461759e-05 0.000152830941635 52045009715.2 +UniRef50_T1XUW5 0.00829449092945 0.000646094215422 -3.08775160984e+12 +UniRef50_P13039 Enterochelin esterase 0.00237586305733 0.000589362993517 -7.21231998581e+11 +UniRef50_K0CJ28 Quinohemoprotein alcohol dehydrogenase protein 3.93425988461e-05 2.31084507864e-05 -6553924787.1 +UniRef50_UPI0003611858 hypothetical protein 1.38014475868e-05 2.1490762647e-05 3104270848.31 +UniRef50_UPI00047763D0 metal ABC transporter permease 1.22558446742e-05 5.9920730456e-05 19242899304.0 +UniRef50_D1GS39 MarR family regulatory protein 0.0135348964404 0.00172631129432 -4.76727073112e+12 +UniRef50_UPI0003594BA5 PREDICTED 3.764625998e-06 0.000177190023117 70013960985.9 +UniRef50_Q8E035 0.00147511760958 1.25154072652e-05 -5.9047045722e+11 +UniRef50_UPI0003F5F292 hypothetical protein 9.95347504138e-05 3.77728152675e-05 -24934051122.7 +UniRef50_R9ZBZ3 0.00257203727339 0.000392882534625 -8.79751509277e+11 +UniRef50_R5RCP3 7.80426296949e-06 0.00245722545362 9.88861392443e+11 +UniRef50_UPI00037F2711 hypothetical protein, partial 0.000172327325745 9.69205256492e-05 -30442650544.2 +UniRef50_E5ASL7 Folylpolyglutamate synthase Dihydrofolate synthase (EC 6.3.2.12) 0.000140503469798 0.00222540170714 8.41699002993e+11 +UniRef50_B9EUD8 4.60777015226e-05 6.01668163898e-05 5687948564.77 +UniRef50_Q3J1Y6 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.0046125438215 0.00085041605354 -1.51881714642e+12 +UniRef50_Q92405 Catalase B 1.7444891636e-05 3.26536838345e-05 6139976043.4 +UniRef50_UPI00017448C8 DEAD DEAH box helicase like protein 2.51440941243e-06 4.45530808413e-05 16971527528.4 +UniRef50_U7DNX2 TonB denpendent receptor 0.00080300629774 0.00139593103838 2.39370993801e+11 +UniRef50_A5ULE5 Predicted transcriptional regulator 0.00298974039677 0.000932671573616 -8.30463926979e+11 +UniRef50_UPI00036B87E5 hypothetical protein 2.48173530599e-05 5.69929680531e-06 -7718193914.91 +UniRef50_S1T170 0.000707786229098 0.00105470251856 1.40054363197e+11 +UniRef50_Q5H1A4 Transposase 2.96078588798e-05 3.162297817e-05 813528385.748 +UniRef50_F0Y5C9 Expressed protein 3.78430977197e-05 6.47928182961e-06 -12661957352.1 +UniRef50_U3TBQ8 0.000501222343795 0.00604316250271 2.23734924941e+12 +UniRef50_Q2FEJ8 HTH type transcriptional regulator SarR 0.00379722229942 0.000518099482802 -1.32382212043e+12 +UniRef50_I7FYE4 Ethanolamine permease 0.00146219713943 0.00718500312068 2.31036700136e+12 +UniRef50_UPI0002628848 short chain dehydrogenase 3.39459896091e-05 3.27535609423e-05 -481398085.532 +UniRef50_P39369 0.00214852658782 0.000192388733031 -7.8971685649e+11 +UniRef50_Q8AA15 Phosphomethylpyrimidine synthase 3.21008279185e-06 0.00355795151387 1.43509273731e+12 +UniRef50_UPI0003B3A510 MULTISPECIES 2.84976823295e-06 4.23871893089e-06 560736441.1 +UniRef50_UPI00029B3B69 guanosine 3,5 bis 3 pyrophosphohydrolase 8.4290072563e-06 1.0529428068e-05 847965656.745 +UniRef50_Q5HQL5 Na H(+) antiporter subunit F1 0.000892475465054 0.000619545535373 -1.10185161839e+11 +UniRef50_P27127 Lipopolysaccharide 1,6 galactosyltransferase 0.00272732606936 0.00135527202931 -5.53915052965e+11 +UniRef50_UPI000465DD48 hypothetical protein 5.81972756272e-05 3.25791709824e-05 -10342343214.6 +UniRef50_Q880Z2 Xylose import ATP binding protein XylG 0.00265430499479 0.00135704457577 -5.23719950334e+11 +UniRef50_I2AGX0 3.71566219601e-07 2.94793120608e-05 11751154188.3 +UniRef50_R6VPX6 Lipoprotein 6.15535587085e-06 8.91776410593e-06 1115218103.06 +UniRef50_P23145 Probable serine acetyltransferase 1.05163317766e-05 2.91954482395e-05 7540988534.61 +UniRef50_V0UHK4 0.000468558664494 0.000314243077726 -62299096043.4 +UniRef50_Q6W109 Tartrate dehydrogenase 0.00170101345321 0.000354720933048 -5.43514811256e+11 +UniRef50_D6AP01 0.000154888062119 0.00226360138587 8.5131344562e+11 +UniRef50_UPI00037CB222 hypothetical protein 1.90285388738e-05 6.20098372411e-06 -5178641425.74 +UniRef50_G8VN68 Glycosyl hydrolase, alpha L fucosidase 0.000117353157162 0.00673428716931 2.67133745962e+12 +UniRef50_B9KTR8 Methyl accepting chemotaxis sensory transducer 0.00217916152551 0.00114027634466 -4.19410696064e+11 +UniRef50_V5PNN3 Hydrogenase expression protein HypA 0.000241094453622 0.000113858597291 -51366676560.4 +UniRef50_UPI000382E44E hypothetical protein 0.000120266319339 6.11381107711e-05 -23870783383.6 +UniRef50_UPI0002E512FA hypothetical protein 4.3628165463e-06 2.41442461632e-05 7986005881.78 +UniRef50_R5MTV1 0.000127908898271 4.15301014282e-05 -34872180272.5 +UniRef50_K7SJY0 CoA substrate specific enzyme activase 0.00016310900447 0.00729524248233 2.87932980613e+12 +UniRef50_R0FCW6 Replication initiation protein RepC 0.00010345292094 9.16161395486e-05 -4778653901.35 +UniRef50_Q8DGX5 Phosphoribosylformylglycinamidine synthase 1 0.00056316983505 0.00344103592028 1.161829854e+12 +UniRef50_R9ZNN5 Potassium transporter 0.000620973006857 0.000541392002198 -32127828149.6 +UniRef50_UPI0003826E10 hypothetical protein 5.07272350452e-05 3.11447431836e-05 -7905692268.73 +UniRef50_G7UAA4 Arginine ornithine antiporter ArcD 0.000281143086592 0.00584692481287 2.24697438272e+12 +UniRef50_H6CP54 2.5234562726e-05 0.000219001613913 78226136353.3 +UniRef50_V9WDP4 MmoB DmpM family 0.0269938026983 0.00193650298488 -1.01159393819e+13 +UniRef50_M1N619 0.000310929842145 0.000677602912104 1.48030417927e+11 +UniRef50_U3T2N9 0.00025679318969 0.0100075998265 3.93652029513e+12 +UniRef50_B9DTE1 Major Facilitator Superfamily protein 0.00284323173286 0.00223738178969 -2.44589056673e+11 +UniRef50_UPI0002F7BEAC hypothetical protein 4.06232226189e-05 3.25400368825e-05 -3263281273.63 +UniRef50_W5X9K0 Cell division protein FtsZ 6.12669530755e-06 4.9238376607e-05 17404714780.4 +UniRef50_UPI0003A0AA3D hypothetical protein 3.8664232652e-05 5.25722333465e-05 5614830550.73 +UniRef50_A0A059IQN5 Membrane protein 0.000400915743948 9.56182631268e-05 -1.23252339429e+11 +UniRef50_UPI00046FD731 hypothetical protein 4.08283930411e-05 4.06886571585e-05 -56413090.5577 +UniRef50_U6GJB3 JmjC domain containing protein, putative 7.46977592644e-06 6.31130753047e-06 -467687907.459 +UniRef50_A1S9I7 NAD transhydrogenase subunit beta 0.000937149678997 0.000255053168034 -2.75370731741e+11 +UniRef50_UPI00039D9A64 membrane protein 6.63058500514e-06 6.23931291176e-05 22512023341.6 +UniRef50_P38035 Transcriptional regulatory protein RtcR 0.00335469576323 0.0021477832089 -4.87245408666e+11 +UniRef50_D3E234 0.00380484586612 0.000412143602128 -1.36967553711e+12 +UniRef50_E8SEX9 Staphylococcal secretory antigen SssA 0.0408122742115 0.00230393477294 -1.55462891818e+13 +UniRef50_M9Y2Q0 TonB dependent vitamin B12 receptor 0.000603120245989 0.000615595322767 5036341581.69 +UniRef50_UPI00047539FF orotate phosphoribosyltransferase 1.45468308428e-05 6.61549051494e-05 20834812899.9 +UniRef50_P77315 Probable ABC transporter permease protein YphD 0.00617959944311 0.000466412197916 -2.30648379957e+12 +UniRef50_G7M256 Sporulation protein YtaF 0.00118542081731 0.000824171855499 -1.45840638906e+11 +UniRef50_UPI00046F04B8 hypothetical protein 2.28849750511e-05 2.86256406163e-05 2317577134.56 +UniRef50_T2ES40 0.0025124520616 0.00244436066334 -27489333053.0 +UniRef50_P39587 Putative ribosomal RNA large subunit methyltransferase YwbD 0.00068702086705 0.00159597290482 3.66955091744e+11 +UniRef50_A0K5P1 Transcriptional regulator, AsnC family 0.000385189784541 0.00590865577611 2.22989100135e+12 +UniRef50_N1ZJ21 0.000185625772682 2.89417166979e-05 -63255276130.3 +UniRef50_UPI00046FF2AA succinate dehydrogenase 4.89300748618e-05 0.000246128671611 79611493406.5 +UniRef50_Q2W2A3 Holliday junction ATP dependent DNA helicase RuvA 1.37218555191e-05 9.18956109002e-05 31559704347.2 +UniRef50_N6V8V2 0.000244293122551 5.67115135731e-06 -96334617991.9 +UniRef50_A3N3J7 0.00604427909286 0.00109306460701 -1.99886604617e+12 +UniRef50_Q887Q2 Alginate production protein AlgE 0.000879124192724 0.000654847976765 -90543060561.3 +UniRef50_UPI000470382C response regulator receiver protein 6.37036480469e-06 1.03172366365e-05 1593400592.07 +UniRef50_P38102 0.000923453859705 0.000546882787401 -1.52026362936e+11 +UniRef50_Q9V1I6 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 1.15087897063e-05 0.0001878060782 71173378776.0 +UniRef50_Q8U194 Sulfide dehydrogenase subunit beta 0.000385189784541 0.00290510485719 1.01732063766e+12 +UniRef50_A6LU85 0.000159276788545 0.000997249908705 3.38300031695e+11 +UniRef50_UPI00046CF004 hypothetical protein 0.000239272284566 0.000422767932055 74079444636.1 +UniRef50_Q9HYB8 Electron transport complex subunit C 0.000171454993011 0.000181037355936 3868517501.64 +UniRef50_Q0BUN4 50S ribosomal protein L18 0.0247471780619 0.0334628826732 3.5186369053e+12 +UniRef50_UPI00037ECE30 hypothetical protein 4.49136837305e-06 2.33473111236e-05 7612375476.81 +UniRef50_F3P4A4 Periplasmic binding protein 1.73250918181e-05 0.000172117081508 62491425749.2 +UniRef50_UPI0003B4D558 prephenate dehydrogenase 6.12548668045e-06 0.000160025556704 62131346834.9 +UniRef50_UPI0003B57E0D flagellar biosynthesis protein FlhB 0.00148152817125 0.000149109227168 -5.37913878344e+11 +UniRef50_Q51785 Acyl homoserine lactone synthase 7.89655009476e-06 1.24788372467e-05 1849925554.22 +UniRef50_UPI00041DC25F hypothetical protein 0.000232053498718 1.05508851951e-05 -89423323222.0 +UniRef50_U6I036 GTP cyclohydrolase I 4.48072804713e-06 2.53531234127e-05 8426442142.19 +UniRef50_A0A017HMU3 0.000247598948413 3.3257838468e-05 -86532136346.0 +UniRef50_E8TGI4 0.000221131563735 8.42079373926e-05 -55277748196.1 +UniRef50_P60776 Lipoate protein ligase A 0.00169835670208 0.00135518716045 -1.3854175512e+11 +UniRef50_F5LYA2 Glycosyltransferase 0.00304725544523 0.000374237548822 -1.0791301264e+12 +UniRef50_A0RAL4 Serine protein kinase RsbW 5.95003560074e-05 0.000784026650967 2.92500156213e+11 +UniRef50_K7S7B4 Phosphoribosylformylglycinamidine synthase 2 5.0309105574e-05 0.00531814190361 2.12668874415e+12 +UniRef50_UPI0004767068 PTS lactose transporter subunit IIC 1.60778100086e-05 2.96049888157e-05 5461088081.58 +UniRef50_D5VBA0 Ribosomal RNA small subunit methyltransferase E 0.000364134394391 0.00720391378882 2.76130287506e+12 +UniRef50_E8U946 Methylenetetrahydrofolate reductase 0.000163413847988 0.0365775115942 1.47008181114e+13 +UniRef50_UPI00046A6655 hypothetical protein 0.000138059236055 1.24872035394e-05 -50694970468.8 +UniRef50_F0KGP8 LysR family transcriptional regulatory protein 0.000204784442414 0.00498413998453 1.92948448164e+12 +UniRef50_UPI0003B71411 ACP S malonyltransferase 6.92181816722e-06 5.1773911405e-05 18107340437.2 +UniRef50_A5UJE7 Purine NTPase involved in DNA repair, Rad50 0.00263412409884 0.000198128296286 -9.83441398519e+11 +UniRef50_Q9RWR2 Acetyltransferase, putative 0.000200790419604 0.0342045220262 1.37277237223e+13 +UniRef50_C9XDD0 Inner membrane protein 9.86698803626e-05 0.000231198450901 53503410234.6 +UniRef50_W7D2J3 2.35661539424e-05 1.98257365628e-05 -1510052396.23 +UniRef50_I6WPK4 6.89775913169e-06 4.20201076087e-05 14179323079.8 +UniRef50_U4V0C7 0.00138119634243 0.000173630741616 -4.87509051543e+11 +UniRef50_P65931 Uridylate kinase 0.000334343474711 0.00350478851296 1.27994756768e+12 +UniRef50_UPI00036A819E hypothetical protein 5.65976369844e-05 2.09121798119e-05 -14406656970.3 +UniRef50_UPI000362D7F9 hypothetical protein 3.06172837477e-05 5.37536964289e-05 9340453715.11 +UniRef50_A8LNR0 Sulphur oxidation protein SoxZ 0.00390237519106 0.000354380046235 -1.43236917876e+12 +UniRef50_UPI00046EDA6C transcriptional regulator, partial 0.000114707433721 5.87684088776e-05 -22583270778.3 +UniRef50_V5SCF0 Membrane protein 8.34476107634e-05 2.6013900004e-05 -23186693824.5 +UniRef50_A3M2C8 DNA mismatch repair enzyme 0.000183875238476 0.00800986208095 3.15944692396e+12 +UniRef50_F4FMG8 Sulfite reductase flavoprotein alpha component 0.0105496624651 0.00218041066354 -3.37876965456e+12 +UniRef50_UPI00046D0275 hypothetical protein 0.00100020642563 5.16566032464e-05 -3.82941203312e+11 +UniRef50_A6LRC8 Transposase IS116 IS110 IS902 family protein 0.000549226401503 0.00298314804689 9.82604035821e+11 +UniRef50_UPI000462DF28 MFS transporter 2.80833750738e-06 4.10054593824e-06 521680400.719 +UniRef50_UPI000470E3CB hypothetical protein 1.33367713526e-05 0.000387527993931 1.51065588397e+11 +UniRef50_UPI0004725AED hypothetical protein 7.57633848617e-05 1.43512803772e-05 -24792820191.7 +UniRef50_O27587 0.00314919061744 0.000211949788416 -1.18580016667e+12 +UniRef50_UPI0003482043 hypothetical protein 5.46699181681e-06 7.87409872776e-06 971778598.474 +UniRef50_A7X3Z2 Monofunctional glycosyltransferase 0.0228572298249 0.00227744200029 -8.30831288719e+12 +UniRef50_UPI0003752A98 hypothetical protein 4.67634041306e-05 8.31317115757e-06 -15522830888.6 +UniRef50_A3N1B7 Beta hexosaminidase 0.00438465495445 0.00116152897987 -1.30121550814e+12 +UniRef50_UPI000255F2C8 serine threonine protein phosphatase 6.60008505831e-06 1.03548995631e-05 1515864692.34 +UniRef50_J0JV07 0.00079192864794 0.00128026355953 1.97146796352e+11 +UniRef50_Q6A5V6 Calcineurin like phosphoesterase 0.000124857548682 0.00476534631565 1.87342226043e+12 +UniRef50_Q9F9J0 Hypothetical CdoFa 1.76551519923e-05 9.62905337337e-06 -3240234503.77 +UniRef50_E6WRK7 Inner membrane translocator 0.000589003532625 0.00280448592793 8.94417430013e+11 +UniRef50_Q19842 Propionyl CoA carboxylase alpha chain, mitochondrial 8.15356107921e-06 3.56917699729e-06 -1850772110.59 +UniRef50_P77460 0.00212527261898 0.000564580020288 -6.30070753943e+11 +UniRef50_A0A023S045 Metallophosphatase 0.000146312398781 0.00537499734598 2.11088427636e+12 +UniRef50_D3QDA3 Peptidase, M16 family 0.015992610221 0.00437260005116 -4.69114069911e+12 +UniRef50_F9JXI9 Conserved domain protein 0.000153034860351 0.000132619833392 -8241796903.9 +UniRef50_U6KFK3 Nuclease, putative 2.82437032181e-05 8.27191359472e-06 -8062856552.39 +UniRef50_G9E8D1 Protein fecR 5.44109810878e-06 9.39606500707e-06 1596668669.74 +UniRef50_UPI0002629810 hypothetical protein 0.0011779168355 0.00011827770915 -4.27789318542e+11 +UniRef50_N0B0K5 ATP dependent RNA helicase 2.87284742054e-06 0.000920987257213 3.70654053764e+11 +UniRef50_Q8CSL7 Signal transduction histidine protein kinase ArlS 0.0160604993807 0.00233487249357 -5.5412040067e+12 +UniRef50_Q3IV94 0.0370096748735 0.00147525559777 -1.4345681118e+13 +UniRef50_Q3IV95 0.0112488780811 0.00082750872119 -4.20723469517e+12 +UniRef50_Q3IV96 0.00988995503002 0.00448860384084 -2.1805917571e+12 +UniRef50_Q3IUU5 0.0194068654384 0.00551817604994 -5.60703433952e+12 +UniRef50_Q3IV90 0.0139038845912 0.00310057298992 -4.36142946499e+12 +UniRef50_Q3IV91 0.0155931747404 0.00147055964764 -5.70147301694e+12 +UniRef50_Q3IV92 0.0161697855904 0.00556637989482 -4.28072499773e+12 +UniRef50_UPI000360ED21 hypothetical protein 1.03979873937e-05 0.000235370940222 90824341785.2 +UniRef50_J9NYT9 2.01122576501e-05 2.98616720242e-05 3935958221.59 +UniRef50_M9RZ09 0.00117094380385 0.000565073685071 -2.44597201814e+11 +UniRef50_A7HTG1 1.67622854285e-05 8.23756394436e-06 -3441534673.24 +UniRef50_Q3JGL0 0.000159726088367 0.000177244726568 7072489219.61 +UniRef50_UPI00046F01F9 mannose 1 phosphate guanylyltransferase, partial 1.21575643888e-05 3.80569748721e-06 -3371751157.1 +UniRef50_W5YSI9 7.17075152151e-05 6.00101630625e-05 -4722364606.66 +UniRef50_Q3IUU4 0.0308839586523 0.00552509204126 -1.02376856391e+13 +UniRef50_I0EQF7 0.000209326796037 0.00242766685714 8.9557110476e+11 +UniRef50_UPI00047690D0 LuxR family transcriptional regulator 4.18502968937e-05 1.20592782225e-05 -12026999814.5 +UniRef50_UPI0003B652E5 surfeit locus 1 family protein 1.37548737128e-05 2.31637537949e-05 3798480349.09 +UniRef50_Q9KKL3 Chemotaxis protein methyltransferase 3 3.75800678458e-05 2.4541978566e-05 -5263636637.6 +UniRef50_D3QHI5 0.0104129599782 0.000738468952486 -3.90571074643e+12 +UniRef50_S1T9V9 Thiamine monophosphate kinase 0.000118706285809 0.00377699243766 1.47689501172e+12 +UniRef50_P40320-2 Isoform 1 of S adenosylmethionine synthase 0.000118467254157 0.000695544544856 2.3297318379e+11 +UniRef50_Q28VX1 Sigma 54 modulation protein SSU ribosomal protein S30P 0.0214224240428 0.00216892028786 -7.77287573291e+12 +UniRef50_D3QHI9 0.000836690289677 0.000301856938874 -2.15918786862e+11 +UniRef50_P0A207 Ethanolamine utilization protein EutJ 0.00408048864205 0.000460695907647 -1.46135474673e+12 +UniRef50_Q1GW94 0.000124306770898 2.95427824485e-05 -38257385022.0 +UniRef50_Q5ZY26 Phosphopantetheine adenylyltransferase 0.00152142799879 2.6391295971e-05 -6.03564663092e+11 +UniRef50_F0Y7E7 Expressed protein 6.70507188771e-05 0.000107408979818 16293125193.4 +UniRef50_Q0VKW4 Ribosomal RNA small subunit methyltransferase G 4.88214887221e-05 5.19645839234e-05 1268906102.88 +UniRef50_Q89B37 DNA gyrase subunit B 9.20540963452e-06 9.44319409802e-06 95996505.8584 +UniRef50_P50487 Putative purine permease CPE0397 0.000326315189428 0.000288318177648 -15339859931.4 +UniRef50_J4UL42 2.82391045668e-05 9.43244768258e-06 -7592478167.78 +UniRef50_M1NX79 0.000315920730615 5.95899378392e-05 -1.03483886576e+11 +UniRef50_G0DX90 Phosphatidylglycerophosphate synthase 0.000826611654421 0.00675323241645 2.39264952945e+12 +UniRef50_Q2LR47 UDP N acetylmuramate L alanine ligase 1.43271045874e-05 1.1739787512e-05 -1044531653.29 +UniRef50_A3VYM7 0.000349405195303 5.41937599002e-05 -1.19180479124e+11 +UniRef50_Q02MT4 0.000486033462046 0.000220534945056 -1.07185009342e+11 +UniRef50_Q5FIJ4 Elongation factor P 1 0.00443493513201 0.00772919344222 1.32993250493e+12 +UniRef50_E8N7U3 Predicted Fe S cluster redox enzyme 5.35147200718e-05 0.00407351189508 1.62292219046e+12 +UniRef50_D5AV34 Nonfunctional major facilitator superfamily MFS_1 0.00235969418882 0.000171695758841 -8.83321815943e+11 +UniRef50_Q5LYI8 Tryptophan synthase alpha chain 0.00582126078289 0.00327378881762 -1.02844569338e+12 +UniRef50_Q9RX01 0.00277034584862 0.0105613099768 3.14530782443e+12 +UniRef50_UPI00047A3CEB hypothetical protein 1.21903402477e-05 8.17833940707e-05 28095569831.2 +UniRef50_Q65PC9 Serine acetyltransferase 1.40131692896e-05 0.00032679217514 1.26272722892e+11 +UniRef50_UPI0004794B50 hypothetical protein 1.11601934714e-05 4.28297592572e-05 12785392337.0 +UniRef50_Q9K7H6 Probable adenylyl sulfate kinase 9.6030805051e-06 1.95447941974e-05 4013591816.13 +UniRef50_C0MBU0 50S ribosomal protein L11 0.000857922701941 0.00595638778275 2.05831291833e+12 +UniRef50_UPI000410106E beta methylgalactoside transporter permease 1.16327288619e-05 8.6837129716e-06 -1190553903.41 +UniRef50_Q8R966 Triosephosphate isomerase 1.89462706947e-05 9.97992648351e-05 32641345912.3 +UniRef50_Q1MYB0 5.44821279861e-06 4.98484350879e-05 17924914590.2 +UniRef50_R5H1H3 Zinc finger protein 0.000524286095625 0.000666127906449 57263279624.4 +UniRef50_UPI0003AD21EA hypothetical protein 1.01122332671e-05 0.000164600439767 62368784747.5 +UniRef50_B9ADZ7 0.00090223612652 0.000492194508663 -1.65538832905e+11 +UniRef50_P38684 TorCAD operon transcriptional regulatory protein TorR 0.00120003583557 0.00141739270752 87749636475.0 +UniRef50_R1CDN5 2.22440303416e-05 1.9711579268e-05 -1022381575.08 +UniRef50_UPI00046252B9 adenine deaminase 3.34732567859e-06 0.000103718286434 40520988547.0 +UniRef50_O27089 Type 2 DNA topoisomerase 6 subunit A 0.00338062962478 0.00103595268279 -9.46574853903e+11 +UniRef50_UPI000158407C hypothetical protein BC1G_05447 4.54645339686e-05 0.000308033504502 1.06002315488e+11 +UniRef50_P37349 PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM 0.00610937255773 0.000823597770438 -2.13393214538e+12 +UniRef50_O59521 Elongation factor 2 0.00380774845533 0.000441194419507 -1.35911917652e+12 +UniRef50_Q160Y9 Zinc import ATP binding protein ZnuC 2.39226109871e-05 1.82719073179e-05 -2281258413.19 +UniRef50_UPI00031F41C2 hypothetical protein 5.85024012966e-05 5.49454977517e-05 -1435965609.19 +UniRef50_U5VFI8 Transcriptional regulator 0.000204784442414 0.000711606518538 2.04610291538e+11 +UniRef50_Q5M018 DNA topoisomerase 1 0.00583597841961 0.000814635789979 -2.02717763838e+12 +UniRef50_Q3JX48 4.5673472067e-05 6.59598869572e-05 8189874633.48 +UniRef50_G1Y3U3 3.47448062748e-05 0.00028719071257 1.01915510231e+11 +UniRef50_Q5PCT4 Thymidine kinase 0.000368279013511 0.00117595015342 3.26066750421e+11 +UniRef50_UPI0004776C9C uracil phosphoribosyltransferase 8.36139504249e-06 4.90377573497e-05 16421546618.5 +UniRef50_B9KZP8 N acetyl gamma glutamyl phosphate reductase 1.23105259846e-05 0.000216698024188 82513741141.2 +UniRef50_G7M047 Enoyl CoA hydratase isomerase 0.000336646207595 0.00147346465931 4.58947559286e+11 +UniRef50_UPI00047BE467 phosphoenolpyruvate protein phosphotransferase 3.25697516968e-06 0.000241243356713 96078022650.2 +UniRef50_UPI000378D9A5 hypothetical protein 1.59020496785e-05 1.48042835398e-05 -443181661.299 +UniRef50_UPI00047C7B9C hypothetical protein, partial 6.19533661195e-05 5.75437463715e-05 -1780217604.39 +UniRef50_UPI0003C10252 0.000547867017453 5.28871142104e-05 -1.99829461026e+11 +UniRef50_UPI00004C2470 COG1166 0.000913703626762 0.00122293767187 1.24841578739e+11 +UniRef50_P05379 Anthranilate synthase component 2 0.00613607730587 0.00467789779397 -5.88684962829e+11 +UniRef50_UPI000466FBB9 hypothetical protein 1.0852272488e-05 1.62343196838e-05 2172798498.09 +UniRef50_E3BCS0 1.1611637274e-05 0.00150482605996 6.02828986241e+11 +UniRef50_L7WT69 0.00847469413296 0.000795241800863 -3.10028914395e+12 +UniRef50_P54425 0.0254816648885 0.00533616798942 -8.13298431121e+12 +UniRef50_F8DJ95 Tat pathway signal sequence domain protein 0.00580651755474 0.00422750901743 -6.37465123126e+11 +UniRef50_T0ZN95 0.000121697516795 0.00163501593642 6.10945216506e+11 +UniRef50_P32677 0.00212299715208 0.00149671743737 -2.52836806145e+11 +UniRef50_Q83JV1 IS911 ORF2 1.4971715539e-05 3.8106622808e-05 9339845961.73 +UniRef50_Q042B4 Putative RNA 2 O) methyltransferase 0.00171031409699 0.0108062290325 3.67213247889e+12 +UniRef50_A6LWX2 RNA polymerase, sigma 24 subunit, ECF subfamily 0.00736451688131 0.000557201330567 -2.74819682299e+12 +UniRef50_A6W862 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 0.000237334656096 0.00670101555851 2.60946729859e+12 +UniRef50_P28638 DNA adenine methyltransferase YhdJ 0.003460968852 0.00185136280437 -6.49817713516e+11 +UniRef50_D9PXD9 Predicted biotin biosynthesis protein 0.000686338161548 0.000848054408814 65286833502.8 +UniRef50_A4YZY5 Pyrroloquinoline quinone synthase 0.00621692927988 0.0034882699116 -1.10159327139e+12 +UniRef50_B2VCR3 Iron dicitrate sensor protein FecR 3.58298049777e-05 1.52049552237e-05 -8326504941.06 +UniRef50_A5N275 FolC 0.000305247551134 0.000820306827793 2.07935750475e+11 +UniRef50_Q2NFU9 UPF0425 pyridoxal phosphate dependent protein Msp_0916 0.00279530461177 0.000314465525801 -1.00154518233e+12 +UniRef50_F2MU09 Phospholipase carboxylesterase 3.55473314347e-05 0.000709805102506 2.72206136255e+11 +UniRef50_Q5HLB6 Glycine oxidase, putative 0.00754095217395 0.00196274755759 -2.25198965589e+12 +UniRef50_P0CS91 Heat shock protein SSC1, mitochondrial 0.000218575431332 0.005189588184 2.00685884944e+12 +UniRef50_D6UDQ3 Tandem lipoprotein 0.00106781261774 3.97636165494e-05 -4.1503599736e+11 +UniRef50_I6SXL7 Transcriptional regulator 0.00915016764153 0.00706192025914 -8.43051093948e+11 +UniRef50_Q1J5E1 Glycine tRNA ligase beta subunit 0.00726507032039 0.00216833002658 -2.05761660065e+12 +UniRef50_Q5FSM8 DNA polymerase IV 4.44787391271e-06 1.00259447791e-05 2251935659.39 +UniRef50_UPI0003628E06 hypothetical protein 8.90318913877e-06 0.000113707424611 42310755952.6 +UniRef50_I6T999 Putative DNA binding protein 0.00534185608288 0.00755106700499 8.91885559322e+11 +UniRef50_Q2G506 ATM1 type heavy metal exporter 0.00332426932883 0.00103110508692 -9.25778544749e+11 +UniRef50_Q92M99 Phosphoglucosamine mutase 0.000712538667275 0.000473196623433 -96625320156.2 +UniRef50_UPI000474F1D7 GntR family transcriptional regulator 2.86867725733e-05 3.44374369266e-05 2321613768.01 +UniRef50_V9TEA7 Membrane protein 0.000880826779157 0.000403621920536 -1.92653457387e+11 +UniRef50_A6LWP9 0.000194915312664 0.00118373546568 3.9919882996e+11 +UniRef50_C8XAV6 5.91903043269e-05 2.12013810219e-05 -15336594514.7 +UniRef50_B7GT76 2 isopropylmalate synthase 2.89137793217e-06 1.81961061171e-05 6178706578.38 +UniRef50_A1B1J8 Multisubunit potassium proton antiporter, PhaD subunit 0.00472524768805 0.000729142247698 -1.613276804e+12 +UniRef50_A6LWP5 0.000202949456367 0.0015554572052 5.46023975339e+11 +UniRef50_A0A024E8N7 LysR family transcriptional regulator 0.000229707498285 0.00055446503265 1.31108601846e+11 +UniRef50_A1AT80 Glutamate 5 kinase 8.79259766504e-06 6.3693331168e-06 -978301634.924 +UniRef50_A1ZV16 6.80091804187e-06 0.000685311454025 2.73923029637e+11 +UniRef50_F2K1C2 Cytochrome b 0.00122225995043 0.000305552698654 -3.70085966805e+11 +UniRef50_Q869Z4 Phosphoenolpyruvate carboxykinase [GTP], mitochondrial 0.000251908367335 0.00980676409642 3.85741250909e+12 +UniRef50_Q8CN10 PTS enzyme II glucose specific factor IIABC component 0.00442989965018 0.00243733647365 -8.04422205865e+11 +UniRef50_Q6GC59 Exotoxin 0.0118168768448 0.00185094368724 -4.02336951146e+12 +UniRef50_Q8DWC2 Peptide deformylase 0.00285621120808 0.00584253982118 1.20561750748e+12 +UniRef50_A3W5J9 Flagellar protein FlgJ, putative 4.87205142173e-05 2.51568973161e-05 -9512921301.11 +UniRef50_UPI00045E6DFA hypothetical protein 9.66802408398e-05 0.000110816689341 5707057733.67 +UniRef50_F2DJV5 Predicted protein 7.8518275517e-07 0.00018652292323 74984605088.1 +UniRef50_D8JDR1 0.000117474892792 0.00777465670553 3.09129826199e+12 +UniRef50_A3PJK1 0.00295903026021 0.00258643445711 -1.50421497976e+11 +UniRef50_O05389 0.000178339837253 0.00170920855092 6.1803048558e+11 +UniRef50_A3PJK2 0.00484115957411 0.00161081839197 -1.30412837597e+12 +UniRef50_UPI00016C499F dimethyladenosine transferase, partial 9.64260839552e-06 3.64661975384e-05 10829012099.4 +UniRef50_UPI0004749CAE ketodeoxygluconokinase 1.23084589658e-05 1.4500448755e-05 884933176.64 +UniRef50_R6XMV8 9.00798728142e-05 1.74903880052e-05 -29305265790.5 +UniRef50_Q7VEG3 Nucleoside diphosphate kinase 4.41466594858e-05 9.93947754327e-05 22304342378.4 +UniRef50_E3I2G3 HupH hydrogenase expression protein 0.000156956709815 2.58213713316e-05 -52940945357.1 +UniRef50_W5XCB4 DegT DnrJ EryC1 StrS family protein 3.81361203014e-06 1.09591344281e-05 2884735077.48 +UniRef50_Q8SDT3 Phi105 orf 44 like protein 0.00286660113217 0.000714475899663 -8.68839365911e+11 +UniRef50_I6T631 ABC transporter substrate binding protein 0.00317403621288 0.000968168861503 -8.90535718788e+11 +UniRef50_I4L8Z6 5.97313242863e-05 9.38806767182e-05 13786512636.4 +UniRef50_UPI00047863ED hypothetical protein 3.3761668814e-05 1.18400770828e-05 -8850015590.07 +UniRef50_B9KL61 Transporter, RhaT family, DMT superfamily 0.000128834808487 0.000197536257659 27735618092.3 +UniRef50_R7PSP1 0.00286218390364 0.00068237070487 -8.80017337659e+11 +UniRef50_I3UXJ0 Homocysteine S methyltransferase 0.000226039514279 0.00460748400648 1.76884290787e+12 +UniRef50_B3T1S1 0.000694467053355 0.00230521136462 6.50277244515e+11 +UniRef50_UPI0003775D8A hypothetical protein 1.56952429452e-05 2.73756178236e-05 4715510672.73 +UniRef50_UPI00035142FA PREDICTED 8.98039164874e-05 0.000157753013168 27431884159.1 +UniRef50_F9Y4R9 0.000474835567621 0.000737650781258 1.06101726851e+11 +UniRef50_A5UJU3 Adhesin like protein 0.0035910587592 0.000766157579497 -1.14044727168e+12 +UniRef50_U7XVU8 4.62804059383e-05 0.000204770702883 63984477771.3 +UniRef50_Q7N964 Thiamine phosphate synthase 0.00196729849616 0.00300092558576 4.17287940102e+11 +UniRef50_Q6UXR0 GWSI6489 8.63153937979e-05 0.00570393597839 2.26790236596e+12 +UniRef50_K1ZGG7 0.000438113956219 2.65477180654e-05 -1.66154340828e+11 +UniRef50_B7UWX0 0.000173274777077 0.000104391512769 -27809019093.8 +UniRef50_B3PNG9 Serine tRNA ligase 4.53124456224e-06 1.38124542524e-05 3746938245.17 +UniRef50_UPI0003A2F50C hypothetical protein 5.40361122358e-05 2.19373336876e-05 -12958670796.2 +UniRef50_A4WXV4 0.00378599139669 0.00801800731847 1.7085167603e+12 +UniRef50_UPI0003666757 hypothetical protein 3.55645335052e-05 0.000338245967872 1.22196209373e+11 +UniRef50_M9VE13 LacI family transcriptional regulator 0.000125410627529 0.00892062491184 3.55073593599e+12 +UniRef50_U5WUM2 Zinc binding dehydrogenase 0.00033546625972 0.00261009207997 9.18294356433e+11 +UniRef50_A0B8A2 0.00256630616398 0.00034631809876 -8.96236424246e+11 +UniRef50_T8GQ95 Glyoxylate carboligase 0.000587385912372 0.000120701650628 -1.88406163326e+11 +UniRef50_C1FAE8 Aspartate tRNA ligase 3.23384215636e-06 9.5712017522e-06 2558469836.99 +UniRef50_Q88MC6 0.000279619251005 4.63681665336e-05 -94166325113.6 +UniRef50_G8AMM6 0.000314672552125 0.00019851292274 -46895067821.7 +UniRef50_UPI0003717327 hypothetical protein 7.75182707403e-06 1.26986986495e-05 1997112759.96 +UniRef50_C6NS61 2 isopropylmalate synthase 1.68527932359e-05 1.06639040794e-05 -2498530498.69 +UniRef50_Q57060 0.00969989369764 0.00630671349842 -1.36986848543e+12 +UniRef50_X5X5U8 0.00197509012991 0.000125041384493 -7.46887381177e+11 +UniRef50_F3ZHT3 Putative transcriptional regulator, MerR family protein 2.33580878932e-05 0.000332069428132 1.24630556369e+11 +UniRef50_UPI000372025C hypothetical protein 2.51731079127e-05 3.55126379471e-05 4174195155.19 +UniRef50_UPI0003636A8B hypothetical protein 4.29338463108e-06 1.04520123471e-05 2486313583.82 +UniRef50_UPI000380509C hypothetical protein 5.38222826097e-05 5.45919704146e-06 -19524771125.7 +UniRef50_A7IB90 2.03545358546e-05 9.97340430481e-06 -4190990197.46 +UniRef50_UPI0003810DDB hypothetical protein 1.45856266558e-05 1.13250550909e-05 -1316332752.46 +UniRef50_W4RTV0 1.81238837283e-05 2.69978209462e-05 3582517350.32 +UniRef50_UPI00045DC04C PREDICTED 3.10482415329e-05 2.63505259997e-06 -11470753041.2 +UniRef50_D7GCK2 Cell envelope related transcriptional attenuator 4.62587843487e-06 1.61862955883e-05 4667082267.1 +UniRef50_D5ANZ4 Cytochrome c1 0.0134026609234 0.00436792146564 -3.64743518782e+12 +UniRef50_A4FPJ2 DNA directed RNA polymerase subunit alpha 3.17979134865e-05 0.012584070998 5.06750667792e+12 +UniRef50_UPI0004730699 hypothetical protein, partial 5.90007538297e-05 7.20348592853e-05 5262028318.89 +UniRef50_UPI00047D1B9F hypothetical protein 5.87799486135e-05 4.78548480246e-05 -4410597173.8 +UniRef50_E2QG11 Receptor protein 0.00415290197654 0.00204806734375 -8.49747570483e+11 +UniRef50_T1ADV2 Pyridine nucleotide transhydrogenase subunit alpha 2.38841538244e-05 4.180411274e-05 7234507316.85 +UniRef50_N0SZ54 Ribosomal RNA large subunit methyltransferase F 0.000608029457276 0.000190731994744 -1.6846810644e+11 +UniRef50_UPI0002379B91 glutamine ABC transporter ATP binding protein 8.88855142422e-05 7.36755713723e-05 -6140440583.57 +UniRef50_U5MMN5 Sensor protein GtcS 0.000240136730035 0.000871504193622 2.548907928e+11 +UniRef50_A8IMG6 1.05213898548e-05 1.62660381331e-05 2319185004.71 +UniRef50_UPI0003B34E5F NADH quinone oxidoreductase subunit F 3.53993288383e-06 8.39531118976e-06 1960175804.3 +UniRef50_A3CP57 0.00907002511004 0.000863415031478 -3.31310919515e+12 +UniRef50_R7JSE9 Appr 1 p processing domain protein 5.35329799714e-06 9.56916415376e-05 36470697863.4 +UniRef50_A6U0P1 Bifunctional purine biosynthesis protein PurH 0.0218753187337 0.00457302768351 -6.98514721995e+12 +UniRef50_D3DYR0 Molybdopterin biosynthesis protein MoeA1 0.00324944342893 0.000452450660442 -1.1291803036e+12 +UniRef50_A6WXN2 Cysteine synthase A 0.000130018136227 0.00557131604534 2.19671873814e+12 +UniRef50_F9ZDK1 3.37111282454e-05 6.67430696767e-06 -10915096528.9 +UniRef50_Q2NUJ6 8 amino 7 oxononanoate synthase 0.00399810123578 0.00337579472008 -2.51232776948e+11 +UniRef50_B0VSH8 0.000143895548483 0.0110025074475 4.38375487378e+12 +UniRef50_D1WNS1 3.7892125551e-05 0.0016406483622 6.47052360766e+11 +UniRef50_V9Y3L4 0.000402885329893 0.000331623239557 -28769380352.8 +UniRef50_S9QX59 Asparagine synthetase A 4.63086470958e-05 3.31497843772e-05 -5312394356.9 +UniRef50_I2NA66 Putative transposase 6.64192932355e-06 0.000852258612792 3.41385832e+11 +UniRef50_K7SNW3 Biotin requiring enzyme 8.04874176639e-05 0.00195593859233 7.57142653588e+11 +UniRef50_Z3WPG1 Quinolone resistance protein norA 0.000682914692114 0.00269066780044 8.10554567734e+11 +UniRef50_U3JHG3 1.38918322733e-05 5.00532640968e-06 -3587591466.83 +UniRef50_G8P8V7 Transcriptional regulator, TetR family 0.000218199993555 0.000682813191202 1.87570049335e+11 +UniRef50_M9VE40 DNA polymerase III subunit beta 0.000257388808393 0.00619901311715 2.39870664538e+12 +UniRef50_UPI0003B45127 adenosylcobinamide amidohydrolase 8.24948297216e-05 0.000117808899184 14256723194.3 +UniRef50_Q7VRJ3 3 octaprenyl 4 hydroxybenzoate carboxy lyase 5.72408336432e-06 4.8384120152e-05 17222380348.7 +UniRef50_E1ZM35 3.16669191744e-06 2.84236216817e-05 10196532483.2 +UniRef50_Q3IUW2 Sex pilus assembly protein 0.0281196200925 0.00315021751953 -1.00804542277e+13 +UniRef50_A0A059LE43 3.06260763212e-05 0.000121002849056 36486212200.8 +UniRef50_L7X117 0.0191231733148 0.00223825152444 -6.81665012808e+12 +UniRef50_Q5HM49 Transporter, putative 0.0213051256247 0.0049672390802 -6.59580528643e+12 +UniRef50_E8ZPJ7 Flagellar motor rotation protein MotB 0.00094128649863 0.00218132411405 5.00618402318e+11 +UniRef50_Q8FDB4 Toxin YhaV 0.00347749112547 0.00208458850726 -5.62331879809e+11 +UniRef50_P31448 0.00107272792866 0.00102212553568 -20428807007.2 +UniRef50_A0A017IJ86 0.000244789231481 0.000281382160804 14773014613.4 +UniRef50_UPI000409D88E ABC transporter ATP binding protein 3.58313550975e-06 6.41405502813e-06 1142876948.86 +UniRef50_U1GJH2 1.47030468737e-05 1.0239062436e-05 -1802165296.75 +UniRef50_R5LKI5 0.00232839171695 0.00115725372531 -4.72802778704e+11 +UniRef50_UPI00047A834E hypothetical protein 0.000111014512165 1.42301692954e-05 -39073026893.9 +UniRef50_I6T4P1 Peptidoglycan hydrolase 0.00670845175229 0.00348859502504 -1.29989567288e+12 +UniRef50_F8HDN7 GTPase HflX 0.00531731433307 0.00361993831836 -6.85251526284e+11 +UniRef50_S5CMF0 Lysine ornithine N monooxygenase 0.00010202324023 0.00795027182549 3.16843426271e+12 +UniRef50_D9VIL0 Predicted protein 0.000153573611612 0.00015899866043 2190158780.66 +UniRef50_A5EJC6 3 dehydroquinate dehydratase 9.49616816534e-05 8.89289109897e-05 -2435503547.36 +UniRef50_R9SJV5 0.00263635198837 0.000294335586571 -9.4550076118e+11 +UniRef50_X6L1Q7 0.000116778683408 2.93396353982e-05 -35300216679.3 +UniRef50_A6LY84 RNA directed DNA polymerase 0.000434393979868 0.00130425650155 3.51174174417e+11 +UniRef50_P08395 Protease 4 0.00222398001135 0.00157480391412 -2.62080356738e+11 +UniRef50_P21881 Pyruvate dehydrogenase E1 component subunit alpha 0.0179371443628 0.0086235632723 -3.76000697673e+12 +UniRef50_C1F934 Glycine cleavage system H protein 0.0288539773614 0.00307449230898 -1.04074944655e+13 +UniRef50_S5F6B6 Carbonic anhydrase 4.15446119826e-05 8.42574207011e-06 -13370494197.9 +UniRef50_D4G4T6 5.7469821423e-05 3.49773580148e-05 -9080483491.45 +UniRef50_A0A024HMN0 0.000391853967671 0.000138406772972 -1.02319742647e+11 +UniRef50_Q1GK69 Peptidyl tRNA hydrolase 8.85381953972e-05 4.42063883791e-05 -17897294505.7 +UniRef50_A0KZ99 Ribosomal RNA large subunit methyltransferase M 0.00227457323911 0.000967514881814 -5.27675498252e+11 +UniRef50_A4VKN0 DNA ligase 0.000536467342314 0.000403952028561 -53498058307.8 +UniRef50_F0P455 Transcriptional regulator, LysR family 0.0126720514182 0.00365741191777 -3.63932058839e+12 +UniRef50_Q47208 Protein FdrA 0.00269823892419 0.000998169253062 -6.86338988436e+11 +UniRef50_UPI000470719A hypothetical protein 0.000809405787415 0.000376273312674 -1.74860895186e+11 +UniRef50_Q98I23 Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2 0.0112907531346 0.00180753727094 -3.8284906163e+12 +UniRef50_A8MGM7 Histidine tRNA ligase 3.83531696865e-06 0.00127237515733 5.12125100288e+11 +UniRef50_Q5HNS1 Histidine tRNA ligase 0.00709239387417 0.00249233214643 -1.85710136859e+12 +UniRef50_A8MHC4 tRNA ) methyltransferase 0.000492502060568 0.00229233378357 7.26614152994e+11 +UniRef50_Q6FAF0 0.0114581508055 0.0125134159118 4.26023472972e+11 +UniRef50_B9KN35 Tyrosine recombinase 0.0110153288993 0.0016529579735 -3.77970403196e+12 +UniRef50_J8RT93 0.000102560902995 0.000108563047887 2423139547.5 +UniRef50_P31447 0.00261199428869 0.0016911398858 -3.71760222601e+11 +UniRef50_I4WA77 Cupin 9.78337770766e-05 6.17355340618e-05 -14573303680.3 +UniRef50_A9NHF4 Tyrosine tRNA ligase 6.02686790342e-06 2.75516539321e-05 8689820258.61 +UniRef50_UPI0002B46B6C PREDICTED 7.27489706034e-05 1.02217714716e-05 -25242997584.5 +UniRef50_U5MSB6 Actin like ATPase involved in cell division 0.000312263919734 0.000333837366925 8709465366.97 +UniRef50_D9RE66 0.0171733699952 0.00330947177673 -5.59702583997e+12 +UniRef50_A8G7C4 Lysine tRNA ligase 3.16598278359e-06 9.21418366545e-06 2441732915.78 +UniRef50_W9GGB6 4.63256884592e-05 2.54756518198e-05 -8417415650.05 +UniRef50_Q8CP80 Maltose maltodextrin transport permease like protein 0.00989120722369 0.00395888975696 -2.39494935904e+12 +UniRef50_B7H087 Acetate kinase 0.000259452833451 0.00718777906633 2.79705032034e+12 +UniRef50_Q3IUU3 0.0188881920516 0.00670040016913 -4.92036114399e+12 +UniRef50_Q3IUU2 0.0159041357202 0.00246280133573 -5.42643163474e+12 +UniRef50_Q3IUU1 0.0230438108927 0.0060360527903 -6.8662406546e+12 +UniRef50_Q3IUU0 0.00651793720796 0.00438939776545 -8.59317493058e+11 +UniRef50_C7NTI4 Oxidoreductase 1.703150927e-05 1.12845321756e-05 -2320125176.35 +UniRef50_UPI0002E8C668 hypothetical protein 1.53638399363e-05 1.04544214404e-05 -1981992492.13 +UniRef50_X9ZAP3 0.0126048090474 0.00116228549627 -4.61948717313e+12 +UniRef50_C4REF2 9.02213839011e-06 1.52850913431e-05 2528430962.2 +UniRef50_W8X9Y2 0.000492853497076 0.000352968173539 -56473421697.8 +UniRef50_UPI000372F67C hypothetical protein 4.46136915496e-05 0.000244394639562 80654020300.4 +UniRef50_D5AN32 Na+ solute symporter histidine kinase 0.00418552828243 0.00171525271346 -9.97280560883e+11 +UniRef50_UPI0004686CF3 DNA processing protein 8.14873273029e-05 7.77469149418e-05 -1510050370.2 +UniRef50_UPI0003709489 hypothetical protein 5.93749840887e-06 1.14775116548e-05 2236571330.99 +UniRef50_A0A021W377 0.000455616423831 9.55954285953e-05 -1.45344893731e+11 +UniRef50_I0C6Z8 Transcriptional regulator, RpiR family 0.0198593555728 0.00403829350683 -6.38715690231e+12 +UniRef50_A4FXY0 ATP phosphoribosyltransferase 0.0021917006289 0.000557440784418 -6.5977075384e+11 +UniRef50_UPI0004793307 arginine ABC transporter ATP binding protein 3.11739942067e-05 3.19267971495e-05 303915785.939 +UniRef50_UPI0003346A33 PREDICTED 0.000101502877674 0.000110491093052 3628652845.9 +UniRef50_UPI00037EBF8D hypothetical protein 3.31220580153e-06 3.49998163542e-06 75807408.41 +UniRef50_UPI0004749A8E hypothetical protein, partial 1.54484434021e-05 2.29404779047e-05 3024626266.3 +UniRef50_D3E438 Transcriptional regulator 0.000235438246685 0.000376199624447 56827095538.9 +UniRef50_UPI00037D9D80 hypothetical protein 1.31082291724e-05 6.5785020285e-05 21266266989.1 +UniRef50_UPI00046F048D hypothetical protein 7.62181273444e-06 4.74164384982e-05 16065578755.8 +UniRef50_H8GSQ7 2 oxoisovalerate dehydrogenase, ODBB 0.000109734299089 0.0414945050286 1.67075397917e+13 +UniRef50_UPI0002F0E78D hypothetical protein 4.616173654e-05 1.11029690496e-05 -14153654655.3 +UniRef50_S2EW51 4.12393286296e-05 2.70843064575e-05 -5714556152.53 +UniRef50_X5EI43 0.000266460698017 0.00246387372732 8.87122605219e+11 +UniRef50_H3K0N4 ABC transporter ATP binding protein 0.0123130925283 0.00161917052688 -4.31726754115e+12 +UniRef50_P33983 RNA polymerase sigma 54 factor 0.000222985006094 0.00628274989442 2.4464014471e+12 +UniRef50_Q3JQY5 0.000124041122045 2.41998405252e-05 -40307150539.8 +UniRef50_UPI0004679CCC 50S ribosomal protein L6, partial 7.43227108272e-05 7.41801608231e-05 -57549185.9404 +UniRef50_Q0A5K0 Succinyl CoA ligase [ADP forming] subunit beta 1.25601820849e-05 1.67423955609e-05 1688410901.79 +UniRef50_G2JIW3 Enoyl CoA hydratase carnithine racemase 0.000348448605091 0.00730990622933 2.8104258696e+12 +UniRef50_UPI00037A4F24 hypothetical protein, partial 6.90312984757e-05 7.16722269859e-05 1066175247.4 +UniRef50_P67371 DegV domain containing protein SA1258 0.0188807561605 0.00372933095145 -6.11681628581e+12 +UniRef50_G8VAM5 Transferase 8.55330790492e-05 0.0058082201334 2.31031898911e+12 +UniRef50_UPI00046527B9 diguanylate cyclase 8.51910015367e-06 1.09405114023e-05 977553435.129 +UniRef50_B9EB64 Bifunctional protein PyrR 3.19139163426e-05 6.52042832446e-05 13439729637.1 +UniRef50_P45053 Oligopeptide transport system permease protein OppC 0.00160299492796 0.000677046210608 -3.73816859864e+11 +UniRef50_A5FG89 Lon protease 1.37771355036e-06 5.28039767225e-06 1575561471.33 +UniRef50_P10768 S formylglutathione hydrolase 0.00427875368191 0.00108034769734 -1.29123574483e+12 +UniRef50_Q5LZ72 Phenylalanine tRNA ligase beta subunit 0.00559061506466 0.00611890388621 2.13276680093e+11 +UniRef50_W1UDP7 Surface protective antigen SpaA 0.000387899399708 0.00392408042021 1.4275996718e+12 +UniRef50_UPI00047EAA8B hypothetical protein 2.97014066686e-06 6.16556953381e-06 1290033845.91 +UniRef50_D6M4Y7 Peptidase C14, caspase catalytic subunit p20 4.58566943327e-05 0.000371379696512 1.31417630596e+11 +UniRef50_UPI0001E896F1 ATPase 1.16187525186e-05 2.25994083022e-05 4433025487.64 +UniRef50_UPI00037DE191 hypothetical protein 6.4112953349e-06 0.000533948350804 2.129731829e+11 +UniRef50_UPI000467F219 type I secretion protein 1.07008823361e-05 7.11283328012e-06 -1448539434.21 +UniRef50_I1ELJ8 0.000199602454323 9.14968757791e-05 -43643548662.8 +UniRef50_UPI0001B41487 ATP dependent protease ATP binding subunit HslU 2.56320928773e-05 0.000132826104285 43275537823.9 +UniRef50_B9IYP4 Formate tetrahydrofolate ligase 0.000188838473161 0.000269829818879 32697200141.9 +UniRef50_UPI00046EB4AA hypothetical protein, partial 1.95854501175e-05 1.50517408535e-05 -1830314064.75 +UniRef50_B0VBG2 0.000278497783418 0.00672224117113 2.60141827924e+12 +UniRef50_Q9CMM8 Selenide, water dikinase 0.00471221466806 0.00188696620209 -1.14058747541e+12 +UniRef50_UPI0003B5EFE3 hypothetical protein 7.18860393996e-06 0.000142598597216 54666675953.0 +UniRef50_UPI00047CBC2F diacylglycerol kinase 1.68109342939e-05 6.46445264066e-05 19311008120.1 +UniRef50_U1TXR6 0.000383209154752 0.000262846566382 -48591853940.0 +UniRef50_D5AS82 SsrA binding protein 0.004217737032 0.000454333392607 -1.51933223138e+12 +UniRef50_UPI00037E7A93 hypothetical protein 6.21520284304e-06 1.809391916e-05 4795583545.41 +UniRef50_B9NUC1 0.00263684126974 0.000898109404517 -7.01947390629e+11 +UniRef50_P0ADH6 Type 1 fimbriae regulatory protein FimB 0.00117594377016 0.000715919285321 -1.85717529665e+11 +UniRef50_R7PU85 0.00157966338382 0.00544818206587 1.56176846401e+12 +UniRef50_P06134 Bifunctional transcriptional activator DNA repair enzyme Ada 0.00335467093571 0.00138236693724 -7.96243327074e+11 +UniRef50_W1XPX0 NADH quinone oxidoreductase subunit L 0.000115829105569 6.49002375505e-05 -20560608986.6 +UniRef50_UPI0003C1934F 3.78417411257e-05 2.5895969802e-06 -14231723184.0 +UniRef50_C7MB99 Methyltransferase family protein 0.00744243175817 0.00227391446052 -2.0865938579e+12 +UniRef50_UPI0002B4434D 2.78046370792e-06 6.21010806232e-05 23948460994.5 +UniRef50_E6JE24 Integral membrane protein 4.09823469531e-07 5.50411747651e-07 56757213.0892 +UniRef50_R4R862 Sensor protein RstB 0.00106447486408 0.000287328884659 -3.13743368546e+11 +UniRef50_B9KTV5 Extracellular solute binding protein, family 3 0.0050268720665 0.000606661121221 -1.7844934007e+12 +UniRef50_Q7N772 Protein NrdI 1.25669523943e-05 6.82413956352e-05 22476455938.6 +UniRef50_P09162 0.000424141560512 0.00327500377695 1.15092806079e+12 +UniRef50_G7M7A9 Transcriptional regulator, MarR family 0.000361502176702 0.000911075144815 2.21869351246e+11 +UniRef50_A6LW07 Periplasmic binding protein LacI transcriptional regulator 0.000352588665638 0.00104338790602 2.78884130402e+11 +UniRef50_G7U7C0 Transporter, major facilitator family protein 0.00012653161638 0.00821193458673 3.26417639818e+12 +UniRef50_X7V429 HD domain protein 1.58293703042e-05 2.6534702342e-05 4321873912.86 +UniRef50_B2V5D3 UV damage endonuclease UvdE 0.000941992832652 0.0028184960095 7.57567359778e+11 +UniRef50_P63590 3 dehydroquinate dehydratase 0.00370560175667 0.006739333854 1.22475487577e+12 +UniRef50_Q51161 Dihydropteroate synthase 7.90613099492e-06 0.00327148269588 1.31754590783e+12 +UniRef50_Q89376 2.39686355964e-06 6.45927211468e-06 1640044185.03 +UniRef50_Q8CRZ8 0.00790010380089 0.00530120797493 -1.04920613698e+12 +UniRef50_Q8CRZ9 0.00962120989327 0.00322620327274 -2.58174264826e+12 +UniRef50_W8U6I9 AAA domain containing protein YrvN 0.000313453926406 0.00177363963041 5.89494887198e+11 +UniRef50_Q8CRZ1 0.00207115559023 0.0014586493131 -2.47276300375e+11 +UniRef50_Q8CRZ2 0.00750356750985 0.00250352311195 -2.01857928088e+12 +UniRef50_Q8CRZ3 0.0077284168268 0.00389350518463 -1.5482008896e+12 +UniRef50_Q8CRZ4 0.00731681357456 0.0026196801655 -1.89629039755e+12 +UniRef50_Q8CRZ7 0.0108567159428 0.00387078172572 -2.82030737049e+12 +UniRef50_A7ZQU2 Bifunctional protein Aas 0.000654323084117 9.40000122672e-05 -2.26209300043e+11 +UniRef50_UPI00047B3496 molybdenum cofactor biosynthesis protein MoeB 1.66385641126e-05 4.43993430872e-05 11207367135.1 +UniRef50_UPI0003A35158 hypothetical protein 4.70725546009e-06 6.97508947712e-06 915552422.128 +UniRef50_A5WHC3 4 hydroxy tetrahydrodipicolinate synthase 0.000138969684288 0.0050351708271 1.9766564845e+12 +UniRef50_P65103 Isopentenyl diphosphate delta isomerase 0.00405480175395 0.00400813441353 -18840178000.2 +UniRef50_UPI0000557F47 hypothetical protein 0.000227065328509 0.000231952606917 1973054266.96 +UniRef50_Q6GHN9 Lipoprotein signal peptidase 0.0141048611762 0.00280216732161 -4.56303620875e+12 +UniRef50_S4YB05 0.000124376858201 7.96430386153e-05 -18059591912.4 +UniRef50_I0LGH2 ABC type transporter, periplasmic component 1.14119418896e-05 4.70868645767e-05 14402404069.3 +UniRef50_UPI000471C41C spermidine putrescine ABC transporter ATPase 5.47967384213e-05 2.78837464855e-05 -10865105104.0 +UniRef50_UPI00037D6690 hypothetical protein 3.14905879948e-06 8.85293101891e-05 34469055219.5 +UniRef50_UPI0003B79E24 inner membrane translocator 6.71891356697e-06 4.995245077e-06 -695866121.192 +UniRef50_UPI00029ADD09 dehydrogenase E1 component 2.29540197336e-06 6.95669276728e-05 27158340439.3 +UniRef50_A0A023S2F8 Type I deoxyribonuclease HsdR 0.000178621130367 0.00883110911525 3.49311557746e+12 +UniRef50_H4UHR1 K H(+) antiporter NhaP2 0.00103752419948 0.000213869711137 -3.32519424321e+11 +UniRef50_A6LYC9 ThiJ PfpI domain protein 0.000475987449258 0.00208335419594 6.48913680243e+11 +UniRef50_B9KL85 Transporter, RhaT family, DMT superfamily 0.00275848749377 0.000385414392769 -9.58038731755e+11 +UniRef50_Q9XE67 3.48750152386e-05 2.1993264817e-05 -5200520722.05 +UniRef50_F8FDJ3 1.10903701447e-06 1.16098682432e-05 4239314426.72 +UniRef50_Q5H175 Dihydrolipoyl dehydrogenase 8.42602653634e-05 0.00647369290447 2.57949236356e+12 +UniRef50_C6WVP9 DoxX family protein 4.10038053669e-05 4.71766814374e-05 2492065819.37 +UniRef50_UPI0003B7B25C alanine glycine permease 4.4189377499e-05 0.00392555254348 1.56695393979e+12 +UniRef50_D3DZS4 0.0024448721345 0.000332336463118 -8.52856574264e+11 +UniRef50_C0PAL9 0.000104808220079 3.18844231656e-05 -29440231689.6 +UniRef50_UPI00038F99E9 hypothetical protein, partial 6.52365554942e-06 5.61078940713e-05 20017765558.3 +UniRef50_Q2RFS8 Energy coupling factor transporter ATP binding protein EcfA 1.37678363702e-05 6.46066778025e-05 20524264149.0 +UniRef50_H1XUH5 Cysteine desulfurase 0.00536623894244 0.00477537728117 -2.38538103343e+11 +UniRef50_X2M2B8 Multidrug transporter 0.00368490472939 0.00117825399277 -1.01196566244e+12 +UniRef50_UPI0003642FB6 hypothetical protein 7.43860068587e-05 2.40273149764e-05 -20330421883.5 +UniRef50_Q42577 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.39975530249e-05 2.95833410853e-05 -1782071528.49 +UniRef50_M9VCQ3 UvrD REP helicase 0.000290220748966 0.00679535657305 2.62620315917e+12 +UniRef50_A1YRL8 Cassette chromosome recombinase A 0.00817738679606 0.00176457998533 -2.58892880348e+12 +UniRef50_Q8L940 Pyridoxal biosynthesis protein PDX1.3 2.58182898383e-05 0.00374091744826 1.49983111965e+12 +UniRef50_UPI00047114BD hypothetical protein 2.53149989052e-06 2.11421898796e-05 7513363927.45 +UniRef50_UPI00016C4C7D molecular chaperone GroEL 3.34732511688e-05 1.10966693241e-05 -9033700682.24 +UniRef50_Q44058 Acyl homoserine lactone synthase 9.26002480944e-06 1.26777051579e-05 1379759496.33 +UniRef50_B1FL99 RemN protein 0.000657733614019 0.000373015824303 -1.14944065589e+11 +UniRef50_UPI00045E9959 sarcosine oxidase subunit alpha 1.40493937095e-05 6.81528934358e-06 -2920496704.97 +UniRef50_UPI00047E113B hypothetical protein 2.09772275841e-05 2.94914456261e-05 3437294304.76 +UniRef50_A1B2B5 Polysaccharide export protein 0.00210196899702 0.00033816666398 -7.12068646137e+11 +UniRef50_UPI000225EB41 FAD dependent oxidoreductase 2.36573505899e-05 0.00252717590457 1.01070116187e+12 +UniRef50_UPI0003B63FA5 hemolysin III 7.76568791787e-06 1.03646502946e-05 1049233004.34 +UniRef50_Q67KN6 NADH quinone oxidoreductase subunit B 2 1.24321375994e-05 1.47641445421e-05 941459819.711 +UniRef50_Q46901 CRISPR system Cascade subunit CasA 0.00128953394128 0.00109734315681 -77589778136.7 +UniRef50_UPI0003AB1459 hypothetical protein 0.000165871459254 0.000651749256272 1.96154829047e+11 +UniRef50_UPI000473BBBF ABC transporter, partial 1.08017190095e-05 7.25055494675e-05 24910593547.0 +UniRef50_P26647 1 acyl sn glycerol 3 phosphate acyltransferase 0.00361027609027 0.000682304693505 -1.18205798313e+12 +UniRef50_A0A059E9X7 0.000177802645998 8.8480133685e-05 -36060594331.2 +UniRef50_UPI000473AECE 4 alpha glucanotransferase 1.56260874176e-05 0.00062188175466 2.44752852459e+11 +UniRef50_P24241 PTS system arbutin , cellobiose , and salicin specific EIIBC component 0.000959976124565 0.00167955131452 2.90501334365e+11 +UniRef50_I4KLQ2 Phosphate ABC transporter, permease protein 0.00064206337963 0.000693388382863 20720533633.8 +UniRef50_A7X4U8 ATP synthase subunit delta 0.0274847006939 0.00529113851919 -8.95981339556e+12 +UniRef50_X2NAF9 Glycerol 3 phosphate dehydrogenase 0.00125208932704 0.000652027110056 -2.42252480588e+11 +UniRef50_UPI000361DA3C hypothetical protein 0.000833399264168 0.000124167937525 -2.86325389813e+11 +UniRef50_B4RQ53 0.000428969156652 0.00466222470045 1.70901721092e+12 +UniRef50_Q9FZ42 Glucose and ribitol dehydrogenase homolog 1 1.89084954643e-05 3.78563893164e-05 7649497264.9 +UniRef50_A3PPH2 0.000674917133269 0.000707415861126 13120135240.1 +UniRef50_I4YVW1 TRAP type C4 dicarboxylate transport system, small permease component 5.31021978418e-05 3.43527978771e-05 -7569362846.76 +UniRef50_Q9RRJ1 Nucleoside diphosphate kinase 1.3146618852e-05 0.00609016050498 2.45336507918e+12 +UniRef50_S5N397 p6.9 0.000227579096253 3.60965429503e-05 -77303856523.6 +UniRef50_UPI000328C952 PREDICTED 0.000259285633722 0.000367228242781 43577755881.9 +UniRef50_Q0BEA7 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.000302262802495 0.000317166439827 6016781279.12 +UniRef50_A6M2L1 0.000224186990672 0.000986691849689 3.07832568572e+11 +UniRef50_UPI0004095AFD hypothetical protein 5.36155723618e-05 3.46015217629e-05 -7676205555.42 +UniRef50_M1MFL6 ATP dependent DNA helicase Rep 0.000111519982377 0.00108831705254 3.94344963873e+11 +UniRef50_B7K205 Peptide chain release factor 1 0.00557848924943 0.000929519190096 -1.87684626223e+12 +UniRef50_S6AT82 0.00216982459302 0.00649894566187 1.74771929978e+12 +UniRef50_Q2J4N0 Phosphoribosylformylglycinamidine synthase 1 0.00024657308765 0.0124109828601 4.91092149925e+12 +UniRef50_P76657 Inner membrane protein YqiJ 0.00304621659419 0.00145955537989 -6.40554602736e+11 +UniRef50_UPI000474867C helicase 6.52713525415e-05 0.000108687316974 17527557615.2 +UniRef50_W5X6U2 Glycoside hydrolase family 28 4.81315052871e-05 2.86777787273e-05 -7853708136.26 +UniRef50_Q83MG9 Probable crotonobetaine carnitine CoA ligase 0.00424737238161 0.000738914603909 -1.41640745848e+12 +UniRef50_UPI000374E0DC hypothetical protein 2.71531122792e-05 0.000173432073752 59054611791.4 +UniRef50_UPI0003182F0E amino acid ABC transporter ATP binding protein 0.000151848825991 7.40032027594e-05 -31427233371.8 +UniRef50_A1VXS2 GTP cyclohydrolase 1 3.11475697043e-05 0.00803465479294 3.2311140801e+12 +UniRef50_A3NGW6 2 aminoethylphosphonate pyruvate transaminase 0.000635841260221 0.000527875642999 -43587044559.6 +UniRef50_Q5F904 Cytidylate kinase 9.03460444211e-06 5.43577638848e-05 18297515644.7 +UniRef50_D2ZRU8 Transglutaminase like protein 0.00359887721456 0.00086684012795 -1.10295689773e+12 +UniRef50_D5QFG0 Oligopeptide dipeptide ABC transporter, ATP binding protein like protein 0.00744897272059 0.00146101880512 -2.41741047613e+12 +UniRef50_UPI0003B64D82 DNA topoisomerase III 4.59698119917e-06 6.22626347786e-06 657761249.449 +UniRef50_UPI00016AA13E hypothetical protein 0.00016667708334 0.000406548696204 96839113668.9 +UniRef50_Q9CM13 Magnesium and cobalt efflux protein CorC 0.00155357691633 0.000203432862359 -5.45069722718e+11 +UniRef50_A5UMG3 Potassium transport system, membrane component, KefB 0.00272328369291 0.000406295068956 -9.35396740136e+11 +UniRef50_Q9HZP9 Precorrin 4 C methyltransferase 0.000312833692416 2.17181010258e-05 -1.17526936634e+11 +UniRef50_Q9RVT2 0.000871121512734 0.0590542470524 2.34892417676e+13 +UniRef50_UPI000375E2EF hypothetical protein 0.000324993960027 9.30806073818e-05 -93626266359.7 +UniRef50_Q6GE66 Probable malate 0.0166860722604 0.00215418778532 -5.86670008887e+12 +UniRef50_G7M706 Helix turn helix domain protein 0.000660666894504 0.000836811138647 71111592893.5 +UniRef50_C5VY51 AzlC family protein 0.00324217012165 0.00294864050536 -1.1850150811e+11 +UniRef50_G5JXL5 Rod shape determining protein MreD 0.0041767438353 0.000350177911301 -1.54483162076e+12 +UniRef50_F3EJZ8 Nitrate reductase 0.000289289472983 0.000149088990278 -56600655321.4 +UniRef50_X0YTR7 Marine sediment metagenome DNA, contig 1.7824664518e-05 5.81656972798e-05 16286169966.1 +UniRef50_UPI000471CA6A hypothetical protein 1.17911908514e-05 3.01185690832e-05 7398987494.4 +UniRef50_UPI0003637C6B hypothetical protein 4.09722061318e-06 6.52884024894e-06 981674686.285 +UniRef50_X2GN29 Metal ABC transporter permease 0.0193804739881 0.00609686235275 -5.36275702542e+12 +UniRef50_UPI000423E6F5 hypothetical protein 1.84440341707e-05 4.29187666253e-05 9880749830.66 +UniRef50_UPI00046990FD O acetylhomoserine aminocarboxypropyltransferase 2.68455580989e-05 3.32256545049e-05 2575723211.69 +UniRef50_F3U3H0 ABC peptide opine transporter, periplasmic substrate binding protein 0.00649281197224 0.00256849384026 -1.58429538668e+12 +UniRef50_UPI0003B4A86D ABC transporter ATP binding protein 2.75671047908e-05 0.000145948801259 47792143570.9 +UniRef50_B3PG87 Metallo beta lactamase superfamily domain protein 0.00191698106923 0.00135118073172 -2.28420539404e+11 +UniRef50_A0A023X460 HGPRTase 0.0116587614098 0.00874283461916 -1.17719542783e+12 +UniRef50_A0A059IPV7 3.22776355119e-05 5.47785584726e-05 9083898716.61 +UniRef50_F9NYN7 Conserved domain protein 2.10792734961e-05 1.82277505187e-05 -1151194818.1 +UniRef50_UPI00046C8F06 50S ribosomal protein L1 2.87599279876e-05 0.00029912818424 1.09150982841e+11 +UniRef50_H5T409 ABC transporter substrate binding protein 1.64349257588e-05 1.36336056775e-05 -1130927292.88 +UniRef50_D8N394 5.14014845735e-07 0.000230198674676 92726515721.1 +UniRef50_E0MSL9 Thymocyte nuclear protein 1 0.000214039403528 7.68021641043e-05 -55404357645.8 +UniRef50_A6M2L8 Protein tyrosine phosphatase 0.000761355179524 0.000794866846363 13529071137.3 +UniRef50_A6LYX8 ABC transporter related 0.000444407956235 0.00233264697442 7.62305262938e+11 +UniRef50_A8Z6F5 Chorismate synthase 4.66752535798e-06 2.32425642669e-05 7498971148.88 +UniRef50_B5L3R8 WfeY 0.000121904558218 1.17898064305e-05 -44454676556.8 +UniRef50_UPI00047E8000 hypothetical protein 1.44412795432e-05 2.92841500612e-05 5992248970.62 +UniRef50_M9V9W9 0.000320355860411 0.00334421710288 1.22076989054e+12 +UniRef50_W5ENS0 0.000122295676732 0.000216403482487 37992476015.9 +UniRef50_Q8CNA9 Phosphoglycolate phosphatase 0.0264437636495 0.00605454864904 -8.23137629951e+12 +UniRef50_B9KMF0 0.00061197918371 7.85355569744e-05 -2.15357738203e+11 +UniRef50_R8ZAQ7 Sarcosine oxidase subunit alpha 0.00048718082496 0.000970181975066 1.94993491388e+11 +UniRef50_UPI00023B2764 9.24284892252e-05 0.000111694104904 7777765465.22 +UniRef50_UPI0003C11580 PREDICTED 4.00856192739e-05 0.00073225148054 2.79435852023e+11 +UniRef50_Q9K8U9 Oligo 1,6 glucosidase 2.96870063558e-05 5.45003182906e-05 10017438521.7 +UniRef50_UPI0002557D02 hypothetical protein 9.42131105622e-05 2.63325686945e-05 -27404207739.9 +UniRef50_G7M7C0 Cell wall binding repeat containing protein 0.000524837713307 0.00174192079327 4.91351374669e+11 +UniRef50_P0AAF0 Probable cadaverine lysine antiporter 0.00328549138473 0.00261423317635 -2.70995175988e+11 +UniRef50_X1BS27 Marine sediment metagenome DNA, contig 8.39219792183e-06 0.000833278922693 3.33016893288e+11 +UniRef50_UPI000478AB20 ABC transporter ATP binding protein 7.94809058969e-06 3.53692605646e-05 11070262814.5 +UniRef50_F0RJQ8 Acetolactate synthase 6.66543829593e-05 0.0181524746349 7.30146757366e+12 +UniRef50_A8IE40 Chromate transport protein 0.000227858745785 0.0114583824763 4.53390024403e+12 +UniRef50_W1YMN4 2.71576867072e-05 1.93955156783e-05 -3133683696.92 +UniRef50_UPI000403C5BD hypothetical protein 1.15042475194e-06 5.97033688853e-06 1945857676.51 +UniRef50_UPI000373B07D hypothetical protein 5.03149491931e-05 0.0023452986544 9.2651308441e+11 +UniRef50_D4ZGG3 6.26483866483e-05 3.45759184601e-05 -11333199895.5 +UniRef50_C7RB36 Acyl CoA dehydrogenase domain protein 0.000419858406031 0.00715211876228 2.71789611994e+12 +UniRef50_P56904 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.000297730951128 0.00155432747759 5.07303437905e+11 +UniRef50_Q04760 Lactoylglutathione lyase 9.65764210344e-06 2.45987469006e-05 6031907354.6 +UniRef50_Q8CNV0 Spore cortex protein like protein 0.0202037879956 0.00581123780409 -5.81044912876e+12 +UniRef50_UPI00029B28E4 hydrogenase nickel incorporation protein HypA 4.29119391833e-05 2.93511963384e-05 -5474638295.51 +UniRef50_UPI0003B738BF O acetylhomoserine aminocarboxypropyltransferase 3.37917667269e-05 1.98595781917e-05 -5624595478.84 +UniRef50_UPI00037956D5 hypothetical protein 0.000355002497348 0.000538571498834 74109058544.9 +UniRef50_UPI00017458ED ATP binding transport protein; multicopy suppressor of HtrB 3.79513768276e-05 3.10307854756e-05 -2793927654.01 +UniRef50_K1H2M5 Carbamoyl phosphate synthase small chain 3.3765307492e-05 1.50871337279e-05 -7540607955.53 +UniRef50_Q59330 Phosphate acetyltransferase 9.94885703294e-06 0.000917584688273 3.66423723016e+11 +UniRef50_Q5HQY7 Glycerate kinase family protein 0.0230993969468 0.00753952607299 -6.28171081284e+12 +UniRef50_B0S0R4 Transcriptional regulator PadR family 0.000166711485341 3.28638116755e-05 -54035948354.2 +UniRef50_A6LXB1 0.000542483980407 0.000779854278838 95829302337.7 +UniRef50_P08194 Glycerol 3 phosphate transporter 0.00284773049005 0.00177966095472 -4.311927781e+11 +UniRef50_UPI000471094A choline dehydrogenase 4.33495444514e-05 9.76951704318e-06 -13556669138.0 +UniRef50_M0E7L5 DRTGG domain protein 0.000665300784727 0.000446857376782 -88188284389.5 +UniRef50_UPI0003EDAB70 hypothetical protein, partial 1.2175805297e-05 3.21435333812e-06 -3617848125.18 +UniRef50_A9U7B4 Predicted protein 1.19998569447e-05 5.56513266428e-05 17622633980.9 +UniRef50_A3PJJ0 Rhodanese domain protein 0.00462663793668 0.000728319353752 -1.57379904968e+12 +UniRef50_UPI00035C57AE hypothetical protein 8.81151380126e-06 3.50981612289e-05 10612242140.0 +UniRef50_UPI00046311A7 alpha beta hydrolase 6.79545757869e-06 1.98103872999e-05 5254286839.6 +UniRef50_UPI00046F6433 hypothetical protein 9.04574574476e-06 1.36758151937e-05 1869215853.88 +UniRef50_UPI000289D647 acetylglutamate kinase 3.03362657076e-05 1.1136113666e-05 -7751336991.55 +UniRef50_R6BWJ5 Efflux ABC transporter permease ATP binding protein 0.0039281974601 0.00127546790154 -1.07093947544e+12 +UniRef50_H9UWH8 4.09173312276e-05 8.86865088187e-05 19285003187.3 +UniRef50_Q4SXX9 Chromosome undetermined SCAF12296, whole genome shotgun sequence. 0.000218209544355 0.000315105744735 39118185143.5 +UniRef50_F9YXR6 6 aminohexanoate dimer hydrolase 0.000203154129289 0.00703700367635 2.75890892291e+12 +UniRef50_Q0A9A9 3 isopropylmalate dehydratase small subunit 0.00435489648606 0.00266770011918 -6.81141877537e+11 +UniRef50_Q88FY7 Porin like protein NicP 0.000710914110435 0.000233144767263 -1.92881346728e+11 +UniRef50_A4WTZ9 Glycoside hydrolase, family 16 0.0151570967007 0.00233932231203 -5.1746928125e+12 +UniRef50_U4K6F1 Methylmalonate semialdehyde dehydrogenase [acylating] 0.00042724051235 0.0040759234227 1.47301806528e+12 +UniRef50_A0A023RX61 Metal binding protein 0.000207030706866 0.00749591711923 2.94261288936e+12 +UniRef50_Q75JL2 Mitochondrial DNA repair protein recA homolog 0.0171291469068 0.00717525230782 -4.01850939763e+12 +UniRef50_Q03SY7 Dipeptide tripeptide permease 0.000305245126778 0.00104756524836 2.99683742375e+11 +UniRef50_Q1CBV8 Phosphoenolpyruvate carboxylase 0.00323069753667 0.000503146823898 -1.10114569356e+12 +UniRef50_E9MXH2 Clumping factor A 2.19662327627e-05 3.06516250148e-05 3506399433.92 +UniRef50_Q8GPI8 0.00650048990936 0.00168592373696 -1.94369944517e+12 +UniRef50_P0ACL3 Exu regulon transcriptional regulator 0.00643298976639 0.00163618490691 -1.93652898519e+12 +UniRef50_U1FCM2 7.27781730365e-05 0.000227966559755 62651456094.1 +UniRef50_S5XWF4 Transcriptional regulator, MerR family 0.0408945019794 0.00107350078112 -1.60762268424e+13 +UniRef50_Q48QI5 Oxidoreductase alpha subunit, fusion 0.000266838818597 0.000269285749417 987855999.252 +UniRef50_C5N6C7 DHHA1 domain protein 0.0144190351288 0.00772569847387 -2.70218214407e+12 +UniRef50_F5YTR0 3.88411229488e-06 1.67695379008e-06 -891056973.268 +UniRef50_G8VCG0 Acyltransferase 0.000124173022652 0.00271566575488 1.04621741719e+12 +UniRef50_P0AAN4 Hydrogenase isoenzymes nickel incorporation protein HypB 0.000897783075371 0.000898070266572 115942612.076 +UniRef50_G3XD29 Na H(+) antiporter NhaP 0.000649990968404 0.000169559830726 -1.93955945834e+11 +UniRef50_G7U530 ABC transporter, ATP binding protein 0.000171066158086 0.00362712468574 1.39525323822e+12 +UniRef50_UPI0003B392E0 hypothetical protein 1.49313321786e-05 3.74806216369e-05 9103424865.21 +UniRef50_M9V971 NADH quinone oxidoreductase subunit C 0.000236915892584 0.00403669441218 1.53401721689e+12 +UniRef50_Q2IMR8 0.000151415191822 0.000822296315087 2.70842942099e+11 +UniRef50_K8AK15 Putative threonine efflux protein 0.000418586823927 0.000469632869441 20607914979.4 +UniRef50_Q7VFT4 Donor ubiquinone reductase I 7.9806762976e-05 0.002299864913 8.9626471834e+11 +UniRef50_C1DNP3 Short chain dehydrogenase reductase SDR 0.000355002497348 0.00207380049203 6.93899842476e+11 +UniRef50_C7ZV90 Thioredoxin 0.00553694694329 0.00182670126925 -1.49787170844e+12 +UniRef50_K9RE57 GAF domain containing protein 3.50148333121e-06 0.000401341716278 1.60612984089e+11 +UniRef50_L1AYN6 Inner membrane protein ybjJ 0.00096647296573 0.000472721838441 -1.99333389094e+11 +UniRef50_Q0B621 Sigma54 specific transcriptional regulator, Fis family 9.43714972093e-05 0.00012262285337 11405419165.2 +UniRef50_UPI000371346A hypothetical protein 2.06154441932e-05 1.11367090776e-05 -3826681683.33 +UniRef50_A3M4G7 Surface antigen 0.000716745548459 0.0086049177893 3.18455193239e+12 +UniRef50_E2XNF0 Fatty acid oxidation complex subunit alpha 0.000619969900142 0.000272526302036 -1.40267244168e+11 +UniRef50_I0G4P6 9.93697147663e-05 3.18488107351e-05 -27259017532.1 +UniRef50_Q9HJL5 Malate dehydrogenase 4.05335437595e-05 2.2644805839e-05 -7221903018.01 +UniRef50_P0ACU3 HTH type transcriptional regulator RutR 0.000557344305512 0.000824139642406 1.07708551451e+11 +UniRef50_C1FT82 D alanyl D alanine carboxypeptidase family protein 0.000639806760763 0.00053975262049 -40393084230.6 +UniRef50_O32333 Glucitol sorbitol specific phosphotransferase enzyme IIB component 0.00380853036399 0.00914603950022 2.1548179369e+12 +UniRef50_UPI00037CE211 hypothetical protein 2.30410280647e-06 5.24551457363e-06 1187484025.58 +UniRef50_G5LK96 Putative cytoplasmic protein 1.87403410728e-05 9.79140335994e-06 -3612795970.5 +UniRef50_UPI0004694C70 glucosamine fructose 6 phosphate aminotransferase 2.29731541851e-05 3.95087757806e-05 6675633353.0 +UniRef50_V5VA73 0.000102763880809 0.00508829324991 2.01271938563e+12 +UniRef50_UPI0002491573 N acylamino acid racemase 1.32760121742e-05 0.000621143354204 2.45403505349e+11 +UniRef50_UPI00046F1E63 spermidine putrescine ABC transporter ATP binding protein 0.000144007283286 4.16227035212e-05 -41333911251.2 +UniRef50_M9VHY4 DeoR family transcriptional regulator 0.000302796247737 0.00625510872728 2.40302159108e+12 +UniRef50_UPI000345870C hypothetical protein 0.000241581313303 0.000123692308472 -47593237911.0 +UniRef50_L8N0M9 1.65873532762e-05 0.013027794984 5.25278418599e+12 +UniRef50_P16684 Probable transcriptional regulator PhnF 0.0020767266039 0.000591429379792 -5.9963271602e+11 +UniRef50_P63978 DNA polymerase III subunit alpha 3.33008563678e-06 0.00437896057995 1.76649572558e+12 +UniRef50_D8IGU8 ABC superfamily ATP binding cassette transporter, ABC protein 0.00313284475072 0.00237521610529 -3.05863981309e+11 +UniRef50_Q604M0 tRNA pseudouridine synthase D 4.58948250417e-06 2.18074369399e-05 6951099493.75 +UniRef50_M0EDY5 8.16215159392e-05 3.98979030029e-05 -16844334548.7 +UniRef50_Y1FPC0 5.78450819582e-06 9.58127039807e-06 1532799492.56 +UniRef50_UPI0000E48FF4 PREDICTED 4.09363282213e-05 5.18116360823e-05 4390495238.52 +UniRef50_Q0S277 Probable dual specificity RNA methyltransferase RlmN 2.19875717813e-05 3.2801672109e-05 4365785006.23 +UniRef50_Q3IVM7 0.00478719323747 0.00142567740779 -1.35708519088e+12 +UniRef50_A3V1R1 Flagellar protein FlgJ, putative 0.000116815451647 6.1708474133e-05 -22247363061.1 +UniRef50_UPI000370C492 hypothetical protein 6.90633429479e-05 2.48681221594e-05 -17842152968.7 +UniRef50_UPI0004647D08 hypothetical protein 3.94375058902e-06 5.33625610055e-06 562171562.969 +UniRef50_P58839 Glyceraldehyde 3 phosphate dehydrogenase 0.00383353550346 0.00218700099375 -6.6472618682e+11 +UniRef50_UPI0003B6456C ATP dependent Clp protease ClpS 0.000466581291291 0.000180998448197 -1.15293298253e+11 +UniRef50_H9V023 TRAP transporter, DctM subunit 0.00038819860474 7.77946338983e-05 -1.25313892114e+11 +UniRef50_U7IWX4 4.90081696955e-05 0.000102163458263 21459442283.4 +UniRef50_UPI0001746414 glycogen debranching protein 6.7671981773e-06 2.35994486284e-05 6795386062.05 +UniRef50_F4CX14 FAD dependent oxidoreductase 7.96889859886e-06 0.000855440987 3.42134881739e+11 +UniRef50_N1MM41 3.26353404007e-05 3.30118681505e-05 152008873.109 +UniRef50_UPI0003B5E825 ArsR family transcriptional regulator, partial 0.000126418600835 2.22867962678e-05 -42039287344.6 +UniRef50_UPI00039D6F74 ubiquinol cytochrome C oxidoreductase 0.000117058806297 0.000326570611313 84582486683.9 +UniRef50_Q0E4C7 Os02g0125700 protein 0.000184294076221 0.000118522075738 -26552963708.2 +UniRef50_UPI00036A48DC hypothetical protein 6.93114996286e-05 3.0885181098e-05 -15513176334.8 +UniRef50_Q5WDJ2 Putative sporulation transcription regulator WhiA 0.0232197598952 0.00729635775466 -6.42847284624e+12 +UniRef50_UPI00047AAA82 hypothetical protein 5.1133017633e-06 2.08152779195e-05 6339080459.17 +UniRef50_Q0Q2J7 Putative antiporter subunit mnhD2 0.0167697175769 0.00669537082244 -4.06713741093e+12 +UniRef50_P43948 UDP N acetylmuramate 0.000262772192774 0.00749404349647 2.91935296298e+12 +UniRef50_Q28RG9 Transcriptional regulator, AsnC family 0.00126323970846 0.00464631616173 1.3657894792e+12 +UniRef50_B7L8J6 2 3 dephosphocoenzyme A synthase 0.00331605033119 0.000970283455674 -9.47014873444e+11 +UniRef50_UPI0003AEE558 PREDICTED 0.000200790419604 4.53085188458e-05 -62769951313.5 +UniRef50_UPI00036ED489 hypothetical protein 1.7605382809e-05 6.9202572094e-05 20830418483.1 +UniRef50_UPI0003B77D2D DNA repair protein RadA 7.92941540656e-06 5.43068307366e-06 -1008768905.69 +UniRef50_H6LCQ4 Branched chain amino acid ABC transport system permease protein LivM2 0.000344817063516 0.0011131923804 3.10202544452e+11 +UniRef50_UPI0004663E52 hypothetical protein 5.87993363731e-05 1.26598349593e-05 -18627082916.1 +UniRef50_D8HCQ5 Aminopeptidase 0.00907523285814 0.00184063450864 -2.9206961322e+12 +UniRef50_Q2YQI5 Adenylosuccinate synthetase 0.00191397932047 0.0141961314676 4.95845554074e+12 +UniRef50_UPI0003B6ABA5 sugar ABC transporter ATPase, partial 6.02864137675e-05 1.21251564985e-05 -19443290564.6 +UniRef50_A1APQ8 Succinyl CoA ligase [ADP forming] subunit beta 1.94654465478e-05 1.25561975779e-05 -2789348595.17 +UniRef50_K4MG34 Beta Ig H3 fasciclin 1.42956855037e-05 3.28145401269e-06 -4446580412.74 +UniRef50_P56145 Phenylalanine tRNA ligase beta subunit 0.000167694835908 0.00406839703335 1.57476134411e+12 +UniRef50_Q1RH95 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.6665989051e-05 1.81121988447e-05 583852640.707 +UniRef50_D5WB27 Histidine ammonia lyase 0.00017612479445 0.00760901936351 3.0007507494e+12 +UniRef50_J9NST0 1.73336490442e-05 5.22636825252e-05 14101683156.0 +UniRef50_P00561 Bifunctional aspartokinase homoserine dehydrogenase 1 0.000530309264921 0.00057016696198 16091041411.7 +UniRef50_UPI00047E7181 hypothetical protein 2.53902412244e-06 0.000205978482689 82131005906.4 +UniRef50_UPI000421E015 hypothetical protein 2.90051009587e-06 3.02782724178e-05 11052738612.3 +UniRef50_UPI0003B5F4A9 hypothetical protein 4.49433847056e-05 5.48705522192e-05 4007719345.28 +UniRef50_P77615 0.00277974044814 0.00306723218398 1.16063941679e+11 +UniRef50_P77616 0.00149638617425 0.000237202172853 -5.0834803329e+11 +UniRef50_D5AQK3 Cache sensor protein 0.00898676496674 0.00322197543682 -2.32731627515e+12 +UniRef50_UPI0003B4A397 hypothetical protein, partial 3.10325434458e-05 2.71625023638e-05 -1562383075.55 +UniRef50_UPI00047E19A4 ABC transporter ATP binding protein 2.84490179267e-05 1.91452053039e-05 -3756063326.44 +UniRef50_Q9V8M5 Probable 3 hydroxyisobutyrate dehydrogenase, mitochondrial 9.54187117465e-06 3.7021116699e-05 11093708626.5 +UniRef50_I0KAK8 Major facilitator superfamily MFS_1 9.07418242453e-05 0.00551195591426 2.18861065391e+12 +UniRef50_UPI00046328AB hypothetical protein 1.67185495395e-05 1.31065009385e-05 -1458228345.04 +UniRef50_I6TSN2 Peptidase 0.00590506649337 0.00307190401022 -1.14378246126e+12 +UniRef50_UPI000463E283 ABC transporter substrate binding protein 8.08805608656e-06 7.575058767e-05 27316194312.9 +UniRef50_G0AA04 Sulfate binding protein sbp 0.00408174572246 0.00764593547626 1.43890714114e+12 +UniRef50_I6TQ24 Folyl polyglutamate synthetase 0.00654218379533 0.0044296181832 -8.52868661712e+11 +UniRef50_UPI000366242D hypothetical protein 1.01129802477e-05 2.18898030309e-05 4754447875.44 +UniRef50_S9RVB4 Gene Transfer Agent NlpC P60 family peptidase 3.7055222693e-06 3.98363849304e-05 14586472631.8 +UniRef50_M1MRW4 Haloacid dehalogenase superfamily enzyme, subfamily IA 0.000172368031437 0.000591689469991 1.69285210397e+11 +UniRef50_U6AND4 Transcriptional regulator, LysR family 0.000326625231868 0.000520367091081 78215966044.3 +UniRef50_UPI0003809FBC gluconate transporter, partial 6.67594907431e-06 0.000187257969817 72903177764.5 +UniRef50_A9ANH6 Transcriptional regulator, AraC family 0.000135786326927 0.000216349234575 32524234435.5 +UniRef50_UPI0004708F76 ABC transporter ATP binding protein 2.36265625571e-05 4.57605766819e-05 8935773117.08 +UniRef50_UPI00036BF64F hypothetical protein 6.29481283748e-06 8.80365369561e-06 1012849841.37 +UniRef50_Q8G5P8 Methionine import ATP binding protein MetN 1.11933076521e-05 7.63900334175e-06 -1434916266.31 +UniRef50_D3E2P1 Bicarbonate ABC transporter ATP binding protein BtcA 0.00452309951396 0.00129070068068 -1.30495907499e+12 +UniRef50_I6TQK5 0.00578422433849 0.00033432079833 -2.200192937e+12 +UniRef50_A1UAJ5 0.00920037897169 0.00319629765922 -2.42392130421e+12 +UniRef50_I6U427 Sugar binding periplasmic protein 0.00481288687163 0.00146180753323 -1.35287185128e+12 +UniRef50_C7D6Q8 Lipoprotein, putative 1.84903573751e-05 1.48174907703e-05 -1482781319.5 +UniRef50_P36928 0.00398547122777 0.000813460942127 -1.28057947726e+12 +UniRef50_Q5HLU9 0.0102665343482 0.00204692028092 -3.31835906497e+12 +UniRef50_A6UM37 0.000987740897369 0.000334363005098 -2.63776672958e+11 +UniRef50_W1MWT9 0.000756600516044 0.000229223833269 -2.12908438476e+11 +UniRef50_Q5HLU0 0.00084672416931 0.00096825149244 49062071655.5 +UniRef50_G7Z253 0.00108788854871 0.000758250307607 -1.33079003049e+11 +UniRef50_UPI0003784C38 hypothetical protein 8.29434288576e-06 3.78072509614e-05 11914723154.2 +UniRef50_Q168A3 Holliday junction ATP dependent DNA helicase RuvA 4.47058521567e-05 2.13994459434e-05 -9409082190.08 +UniRef50_Q9RSC3 UDP glucose 4 epimerase 0.000405304692528 0.0203168803191 8.03854742297e+12 +UniRef50_A8AJ50 0.000424141560512 0.000661156802679 95685961766.9 +UniRef50_UPI000465930A MULTISPECIES 1.83696336188e-05 2.38254004777e-05 2202560030.73 +UniRef50_A7ZQY1 D phenylhydantoinase 0.00343279192196 0.00105400190068 -9.60346722627e+11 +UniRef50_Q8RGA3 Tryptophan tRNA ligase 7.81405623949e-06 1.61317779569e-05 3357966327.24 +UniRef50_UPI000475AC4B lactate permease 4.80190225406e-06 2.58909894511e-05 8513923293.63 +UniRef50_UPI0000164CFE hypothetical protein DR_2417m 0.000657459458912 0.0487816943293 1.9428344168e+13 +UniRef50_E4PYL2 Plasmid recombination protein, Mob family 0.027198422793 0.00449850209926 -9.1642365434e+12 +UniRef50_UPI0003614BF9 hypothetical protein 0.000929398911926 0.000637981684785 -1.17648710688e+11 +UniRef50_K0LK11 ABC transporter, ATP binding protein 0.0182013804019 0.00609182674174 -4.88877541356e+12 +UniRef50_A5UME7 Arsenite transporting ATPase 0.0038032037515 0.000981813823058 -1.13902973646e+12 +UniRef50_Q8CQM8 0.0141874817969 0.00577124006317 -3.39774006681e+12 +UniRef50_UPI0003A8604F DNA polymerase I 1.83482923464e-06 3.89210870262e-06 830548966.882 +UniRef50_Q9KVU3 Peptide deformylase 1 8.77624864117e-05 5.50704173912e-05 -13198189440.4 +UniRef50_T1Y647 Ribitol 5 phosphate 2 dehydrogenase 0.0251449596379 0.0109745763734 -5.72075761404e+12 +UniRef50_A5ULT4 Adhesin like protein 0.00300512413483 0.00102613917044 -7.98940515001e+11 +UniRef50_B5F295 NAD kinase 6.04582796427e-05 8.55455051512e-05 10128020792.7 +UniRef50_UPI0003796137 hypothetical protein 3.01303514984e-05 0.000275245003707 98955792991.8 +UniRef50_UPI00032895A1 PREDICTED 2.23098804281e-05 5.17511559535e-06 -6917514830.17 +UniRef50_A5KZG1 Sex pilus assembly and synthesis protein TraW 0.000127498867064 2.70174144772e-05 -40565595455.5 +UniRef50_UPI000377C2D0 hypothetical protein 8.06877810059e-05 2.69348466021e-05 -21700719241.5 +UniRef50_P0AFB0 Nickel transport system permease protein NikC 0.00339311427549 0.00107420143177 -9.3617357127e+11 +UniRef50_D8JIG5 3.41654998594e-05 5.37531484332e-05 7907774096.72 +UniRef50_UPI0002195926 spermidine putrescine ABC transporter substrate binding protein 2.63265855334e-05 0.000111378965981 34336689696.8 +UniRef50_M1MNN2 0.000173158710486 0.00076512568067 2.38984330115e+11 +UniRef50_D8FZ53 1.44890968787e-05 0.000285515219498 1.09416571566e+11 +UniRef50_J7LRM2 Gamma aminobutyraldehyde dehydrogenase 7.97505610236e-05 0.00720929462535 2.87828442811e+12 +UniRef50_E6U6T5 Major facilitator superfamily MFS_1 0.00110852314383 0.0016799595578 2.30695892633e+11 +UniRef50_F2JM65 Alcohol dehydrogenase 0.000435691095207 0.00114048192533 2.84532706877e+11 +UniRef50_A5UKJ6 0.00258369193486 0.000322750497486 -9.12769803138e+11 +UniRef50_P40924 Phosphoglycerate kinase 5.23413886284e-05 0.0203077273163 8.17734786055e+12 +UniRef50_UPI0003804C63 hypothetical protein 1.92743421822e-05 1.88740800277e-05 -161590743.541 +UniRef50_UPI000362831E hypothetical protein 2.54620468734e-06 0.000689441014069 2.77307863695e+11 +UniRef50_W8RX73 Cytochrome C 0.00112888599176 0.0013691531857 96998814603.6 +UniRef50_P32014 Capsule polysaccharide export inner membrane protein CtrB 0.000334034435074 0.00335474366775 1.2194973855e+12 +UniRef50_I7DUX8 ABC transporter ATP binding protein 0.00447182700257 0.00101300364074 -1.39636943571e+12 +UniRef50_G2L2K0 Penicillin binding protein 3A 0.000158068812007 0.000545330940557 1.56342473536e+11 +UniRef50_Q2LR78 Glutamate 5 kinase 4.25806369744e-06 6.18060963561e-06 776155387.531 +UniRef50_UPI000468E962 hypothetical protein 5.42210797777e-06 6.94435740917e-06 614550775.557 +UniRef50_Q5HRW9 0.0105854037675 0.00204636272098 -3.4473156563e+12 +UniRef50_Q5HKM6 0.0121409400019 0.00326961798458 -3.58146156176e+12 +UniRef50_UPI0002B8EE79 5.58404174135e-05 1.43148306175e-05 -16764388965.8 +UniRef50_Q5HRW3 0.00352379205711 0.00251973321369 -4.05350876276e+11 +UniRef50_R6W4I9 Glycerol 3 phosphate dehydrogenase anaerobic B subunit 4.59991657778e-05 4.60013256345e-05 871960.654212 +UniRef50_Q6DAT5 L threonine 3 dehydrogenase 8.62132554775e-05 0.000103134636585 6831369201.79 +UniRef50_D6DGD0 Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain 0.00067836330399 0.00524925567144 1.8453253399e+12 +UniRef50_Q9FA54 Glucans biosynthesis protein G 0.00563411520595 0.00265096000823 -1.20433636075e+12 +UniRef50_UPI0002629408 riboflavin biosynthesis protein RibD 7.5952552475e-06 6.37567767136e-06 -492358433.388 +UniRef50_UPI00037ECE7A hypothetical protein 8.82781830821e-06 1.44908772334e-05 2286246381.65 +UniRef50_H3CIZ8 0.000328248685954 9.13330065475e-05 -95645767058.9 +UniRef50_C0ZDE1 ABC transporter substrate binding protein 0.022127574577 0.00916300584971 -5.23395548836e+12 +UniRef50_P56891 Phosphoadenosine phosphosulfate reductase 1.01505447278e-05 1.04529853861e-05 122099005.12 +UniRef50_J0WNU1 5.05197272186e-05 2.02289879385e-06 -19578764758.1 +UniRef50_UPI000467B474 integrase, partial 0.000549736876965 0.000286715247755 -1.0618505935e+11 +UniRef50_L9MX54 Phage like baseplate assembly protein 8.50596860029e-05 0.00500460460188 1.98608065215e+12 +UniRef50_UPI000454729B PREDICTED 1.62484531464e-05 5.08849853831e-06 -4505410623.33 +UniRef50_E8RQD7 Peptidase M15A 4.15147683291e-06 1.10806945981e-05 2797410242.87 +UniRef50_D1GNQ1 Aldo keto reductase family protein 0.0189278288728 0.00975261312967 -3.70414718806e+12 +UniRef50_P75835 Inner membrane transporter YcaM 0.00342985438353 0.00150097962544 -7.78710409796e+11 +UniRef50_B4T6V0 Orotidine 5 phosphate decarboxylase 9.11470863667e-05 0.00540022006541 2.14333791129e+12 +UniRef50_B9QX37 5.6926271745e-05 7.46556695816e-05 7157575470.81 +UniRef50_UPI00046968BE hypothetical protein 3.09168702935e-06 5.04028006537e-06 786670920.567 +UniRef50_E6VT00 Periplasmic phosphate binding protein 5.53701504496e-06 7.83872394454e-06 929228127.905 +UniRef50_A6X6Y3 0.000196287472017 8.34500045881e-05 -45553870272.5 +UniRef50_Q00UL4 WGS project CAID00000000 data, contig chromosome 16 0.0002271911947 3.21821203537e-05 -78727556343.9 +UniRef50_W5XBC0 30S ribosomal protein S3 0.000286980109978 0.000586742306421 1.210176772e+11 +UniRef50_T1ZLX4 Transaldolase 0.0322541136059 0.00365621992571 -1.15453206143e+13 +UniRef50_UPI00036712C2 hypothetical protein, partial 0.000164683891353 2.54545804178e-05 -56208581360.2 +UniRef50_A5UL05 Conserved hypothetical membrane protein Msm_0678 0.00189966820991 0.000316410755563 -6.39180463075e+11 +UniRef50_C2THV2 0.000168689352317 0.00048412574623 1.27345543063e+11 +UniRef50_A6LQP6 0.000971819739094 0.000920158245145 -20856379065.0 +UniRef50_Q9RV37 0.00131681158902 0.0313659508802 1.21312062763e+13 +UniRef50_F8JYV1 0.000104415643072 0.000113733545964 3761751741.03 +UniRef50_Q9RV33 0.000368878816464 0.284296397807 1.14625023599e+14 +UniRef50_A6LQP1 0.000172894346045 0.00236709482168 8.8582565788e+11 +UniRef50_P66936 DNA gyrase subunit B 0.0265086483188 0.00810541267735 -7.42961206157e+12 +UniRef50_UPI00037BCD79 hypothetical protein, partial 4.2036591597e-05 0.000146838433029 42309789449.3 +UniRef50_W5X9F8 Polyphosphate kinase 2.42284768311e-06 0.0001191110645 47108465054.5 +UniRef50_B2VFX0 Protein Syd 0.00466402111213 0.000325716954257 -1.75142662551e+12 +UniRef50_Q5HLU5 SugE protein 0.00129914009151 0.000600644146164 -2.81991384645e+11 +UniRef50_Q88F38 Cation transporting P type ATPase 0.000168155470433 8.49832245247e-05 -33577656311.4 +UniRef50_UPI0003B6672C 50S ribosomal protein L24, partial 5.60503169801e-05 0.000265006347746 84358113799.1 +UniRef50_L5UXA6 Glycosyl transferase, group 2 family protein 0.000529873048328 0.0024938656632 7.92887919523e+11 +UniRef50_K4A3K7 0.000930730898387 0.000431164163464 -2.01681221262e+11 +UniRef50_UPI000475C24E phosphoribosylaminoimidazole carboxylase 6.1735596004e-06 6.12098101113e-06 -21226621.7001 +UniRef50_UPI0002F5CF5E hypothetical protein 1.05122041938e-05 1.31217912326e-05 1053522310.8 +UniRef50_A5FNF9 Lipoyl synthase 5.47672342448e-06 4.08591233341e-05 14284309034.4 +UniRef50_Q1LTX5 Adenylate kinase 7.8679174239e-06 1.31521698773e-05 2133317560.51 +UniRef50_B2GLQ7 Biotin synthase 0.000435037591562 0.00673261521158 2.54240936517e+12 +UniRef50_B9KX84 0.000134364899842 0.00018248200115 19425464261.3 +UniRef50_D2J7P9 Replication initiator protein 0.00834619944178 0.000133697660085 -3.315487748e+12 +UniRef50_UPI0003F8A6FF hypothetical protein 5.24200468485e-05 8.5866025566e-05 13502552036.6 +UniRef50_G2T679 CRISPR associated helicase Cas3 family protein 4.60988269145e-05 7.63116500443e-06 -15529867164.4 +UniRef50_F4LK69 Regulatory protein TetR 0.00616809800164 0.00363507015887 -1.02261442387e+12 +UniRef50_Q8TWX0 Carbamoyl phosphate synthase large chain, N terminal section 1.94036608189e-05 7.10908551621e-06 -4963470921.1 +UniRef50_D9PX81 FAD synthase 0.00131070661436 0.00212814756194 3.30010941666e+11 +UniRef50_X6N172 4.24489266771e-06 2.07307355095e-05 6655537059.28 +UniRef50_X1SQS0 Marine sediment metagenome DNA, contig 2.16217787872e-05 0.000170333857364 60036891024.0 +UniRef50_UPI000406F11E permease 3.64315753729e-06 1.49815793631e-05 4577460029.16 +UniRef50_Q3IWF1 AMP binding enzyme 0.00115958987202 0.000562250478975 -2.41153243151e+11 +UniRef50_UPI0003B50149 5 amino 6 uracil reductase 6.02656334017e-06 5.99559404169e-05 21771951313.7 +UniRef50_UPI0004787588 NAD dependent dehydratase 0.000402718204 3.94025422642e-05 -1.46674991027e+11 +UniRef50_UPI00036D4BC8 hypothetical protein, partial 6.87133260219e-05 6.20816136414e-05 -2677303668.27 +UniRef50_I6T8B1 0.00117658764336 0.00280405393727 6.57028114109e+11 +UniRef50_UPI00034FE692 PREDICTED 5.26565911919e-05 0.00014013856307 35317545571.7 +UniRef50_Q9RUD9 0.000126390398057 0.0249739433388 1.00312620359e+13 +UniRef50_M9S778 Two component sensor 0.000325859434811 0.000105219728687 -89074956915.9 +UniRef50_UPI00037416F3 hypothetical protein 1.79114179214e-06 2.15382021394e-06 146417729.445 +UniRef50_D4H976 Dihydrofolate reductase 0.000795642209936 0.00143022103662 2.5618725949e+11 +UniRef50_I3UPT4 AMP dependent synthetase and ligase 0.000416701857449 0.0158768196205 6.24143925794e+12 +UniRef50_A6LTP7 Multi sensor signal transduction histidine kinase 0.000349453338786 0.00188722532225 6.20817420307e+11 +UniRef50_U5MZ96 Sulfate adenylyltransferase subunit 1 0.000255381049746 0.00163710706659 5.57819748683e+11 +UniRef50_UPI00039A293C amino acid ABC transporter permease 4.96692090564e-05 3.83234720158e-05 -4580413271.14 +UniRef50_UPI000417C130 MerR family transcriptional regulator 3.90654319672e-05 4.47251553353e-05 2284899776.32 +UniRef50_B9KQ54 Phosphate starvation inducible E 0.00615068307641 0.00403373445639 -8.54638135783e+11 +UniRef50_K7UQK0 0.00040172288342 0.00037540259135 -10625824895.0 +UniRef50_UPI0003FD08E7 MULTISPECIES 7.90011968155e-06 9.5045789591e-06 647739899.276 +UniRef50_P95907 Glycerol kinase 2 2.36208727825e-05 8.13554320578e-05 23308150062.2 +UniRef50_B3PN30 DNA gyrase subunit A 7.30528499122e-06 1.18001024997e-05 1814612985.79 +UniRef50_K0HFT9 5.28198678376e-05 0.00409030991727 1.62998427853e+12 +UniRef50_UPI00046EC477 hypothetical protein, partial 4.89167655137e-05 3.51008431594e-05 -5577657394.86 +UniRef50_UPI0004639765 hypothetical protein, partial 1.76355109358e-05 3.79588827765e-05 8204794607.91 +UniRef50_UPI000225FA9E hypothetical protein 3.41257426237e-05 1.98715735663e-05 -5754582966.8 +UniRef50_UPI0003041FF9 hypothetical protein 0.000165560394148 5.35261402834e-05 -45229603100.2 +UniRef50_P44450 Formate dehydrogenase iron sulfur subunit 0.00497099228313 0.0010493614941 -1.58321047335e+12 +UniRef50_D4MEH6 Hemolysins and related proteins containing CBS domains 0.00751433152063 0.00421041737216 -1.33383068532e+12 +UniRef50_W6KFD1 2.01765961771e-05 1.03614413656e-05 -3962498442.9 +UniRef50_P0AFF4 Nucleoside permease NupG 0.00695202810137 0.000827585499186 -2.47251263386e+12 +UniRef50_UPI0003B5C461 30S ribosomal protein S4 3.14893792771e-05 0.000267101127091 95119353873.8 +UniRef50_UPI00036F3F50 hypothetical protein 1.37032091684e-05 2.40843544294e-05 4190995732.84 +UniRef50_P52078 0.0171996635391 0.00520707337005 -4.8415558169e+12 +UniRef50_R7LL20 6.17942048372e-05 5.15338195262e-05 -4142243459.14 +UniRef50_Q6FD51 Aminopeptidase P 8.93810549727e-05 0.00540022150259 2.14405146005e+12 +UniRef50_Q5GUU6 9.85568104139e-06 4.17115420451e-05 12860602002.6 +UniRef50_A3K9P8 5.1674524753e-05 0.000106299060078 22052595229.1 +UniRef50_Q2RVQ3 0.00158284656614 0.00083536463216 -3.01767629383e+11 +UniRef50_W4HQH1 1.3106406923e-05 1.5370601937e-05 914083311.949 +UniRef50_P67051 Thymidylate synthase 0.00377263560373 0.00403727310054 1.06837404929e+11 +UniRef50_UPI0002492BAD sugar ABC transporter ATPase 1.42634758285e-05 2.08202325954e-05 2647043167.25 +UniRef50_Q57180 0.000453037391315 0.0114759069772 4.45006771765e+12 +UniRef50_D0LYV0 2.59058104479e-05 7.32110425834e-06 -7502873948.73 +UniRef50_UPI000478D57C hypothetical protein 5.16369785282e-06 1.97626488878e-05 5893775682.1 +UniRef50_F9YXY3 Phosphate binding protein PstS 0.000330532551907 0.00631221279842 2.41487771899e+12 +UniRef50_Q9RTB2 6.6213513098e-05 0.0426761947741 1.72021723183e+13 +UniRef50_R6QEM9 Oxidoreductase short chain dehydrogenase reductase family protein 0.000174762031871 0.00215212519749 7.98285774935e+11 +UniRef50_D8GL93 Adenine deaminase 0.000136645604629 0.00118400466695 4.22831706e+11 +UniRef50_V8UF34 0.000232599735175 0.000114680532496 -47605429152.9 +UniRef50_P0ACL0 Glycerol 3 phosphate regulon repressor 0.00307562852661 0.000776998345638 -9.27985211422e+11 +UniRef50_X5EPD5 Iron ascorbate oxidoreductase 0.000555064216431 0.0012547447402 2.82469613491e+11 +UniRef50_Q74RF9 Maltose transport system permease protein MalF 0.00267831639582 0.000629533809413 -8.27118671523e+11 +UniRef50_A5IVI8 Protein disulfide isomerase like protein 0.0100620037701 0.000321578989328 -3.93232901245e+12 +UniRef50_N5SB54 6.11306513292e-05 0.000126734486814 26485073434.8 +UniRef50_UPI000371F13D hypothetical protein, partial 1.30533238052e-05 1.66867831787e-05 1466872136.64 +UniRef50_UPI00037C627C hypothetical protein 3.94121017778e-05 3.83338501595e-05 -435303409.943 +UniRef50_O05220 0.0112105640704 0.000341406595601 -4.38801225214e+12 +UniRef50_UPI000418FC9B biotin attachment protein 3.07298493448e-05 9.69662840157e-05 26740461489.1 +UniRef50_UPI00046AABC6 recombinase RecF 2.20395303685e-05 1.13561158464e-05 -4313025542.81 +UniRef50_B4V9Q0 5.88009157444e-05 6.02733221586e-05 594428537.871 +UniRef50_O06924 Acetyl S ACP 9.08874772519e-05 0.0052620970499 2.08768076236e+12 +UniRef50_C6S5H1 Protein disulfide isomerase 0.000222050581675 0.00203896762174 7.33511705152e+11 +UniRef50_G7M244 Mannosyl glycoprotein endo beta N acetylglucosamidase 0.0002066529136 0.000215822196247 3701751924.35 +UniRef50_L0FRW3 3.63087897843e-05 1.7104474177e-05 -7753017874.12 +UniRef50_G8V6G8 0.0124681276502 0.000577414994704 -4.80042661448e+12 +UniRef50_U3H984 0.000317066401727 0.00235522488852 8.22829592134e+11 +UniRef50_Q6G9J2 Anthranilate synthase component I 0.018531529984 0.00378665942533 -5.95268518446e+12 +UniRef50_C6SPU8 Glucan binding protein C 0.00505614040375 0.0017301255981 -1.34275299183e+12 +UniRef50_Q47S88 8.85322585204e-06 1.30946994982e-05 1712334959.69 +UniRef50_UPI0001F2A777 hypothetical protein AOR_1_134104 1.40055810171e-05 1.66715157775e-05 1076270577.47 +UniRef50_W7VUT6 Alanine dehydrogenase 0.000312602695192 0.000254016518955 -23651958280.1 +UniRef50_UPI0003615879 hypothetical protein 1.6202379547e-05 2.30232240154e-05 2753658613.07 +UniRef50_UPI0002E18D8D hypothetical protein 6.02237927036e-06 1.12106639584e-05 2094574195.97 +UniRef50_Q58899 UDP N acetylglucosamine 2 epimerase 0.00404145023959 0.00179373964349 -9.07428350156e+11 +UniRef50_A3DGC7 DNA integrity scanning protein DisA 0.00065907517044 0.00231026667376 6.66606272289e+11 +UniRef50_I1B4H1 0.00199291615538 0.00108895556455 -3.64939983362e+11 +UniRef50_UPI00037C4D1B hypothetical protein 7.98404689114e-05 3.37282980195e-05 -18616049249.0 +UniRef50_L0A6W7 2.67957437305e-05 1.3686057415e-05 -5292541239.51 +UniRef50_E5ASY5 DNA polymerase III subunit beta 0.000135299637578 0.00431908246866 1.6890444697e+12 +UniRef50_Q9RTT6 Cysteine tRNA ligase 0.000161903457372 0.0459015585923 1.84656600666e+13 +UniRef50_Q2I2W2 Egg case silk protein 2 6.32895762293e-06 2.30380696157e-06 -1625002716.14 +UniRef50_Q9WZ28 Carbamoyl phosphate synthase small chain 1.44193478073e-05 7.33359147716e-06 -2860606782.49 +UniRef50_P52696 0.00165666679941 0.000755412048227 -3.63847602692e+11 +UniRef50_P56580 Glucitol sorbitol specific phosphotransferase enzyme IIB component 0.000267720559474 0.00127636705322 4.07202967011e+11 +UniRef50_C1MVJ6 Predicted protein 0.000171625332922 3.06430626791e-05 -56916272544.1 +UniRef50_UPI0003EF10EB hypothetical protein 0.0002413527699 0.000123217151347 -47692798896.9 +UniRef50_UPI0003780D4B hypothetical protein, partial 5.7468164637e-05 1.61195475573e-05 -16692944119.7 +UniRef50_R7PQW4 6.88577835491e-05 0.00157333010141 6.07373936672e+11 +UniRef50_UPI00016B142B F0F1 ATP synthase subunit beta, partial 2.09604706262e-06 4.59165817419e-06 1007508830.33 +UniRef50_UPI000473C475 hypothetical protein, partial 3.31677221518e-05 2.56264924994e-05 -3044486951.97 +UniRef50_W7J736 5.5617700212e-05 8.13425793846e-05 10385449401.7 +UniRef50_O27739 Energy coupling factor transporter ATP binding protein EcfA 0.00649504207326 0.000300997260245 -2.50061190049e+12 +UniRef50_A5UNK3 0.000696691088564 0.000701092508093 1776907075.35 +UniRef50_Q92210 Phosphoribosylaminoimidazole carboxylase 1.76639495373e-05 2.51827994675e-05 3035451983.49 +UniRef50_Q1CJW8 Macrolide export ATP binding permease protein MacB 1 1.90100044099e-06 8.53340917787e-06 2677584795.89 +UniRef50_UPI00042688B1 hypothetical protein 0.000117001401368 0.000136717160549 7959493920.94 +UniRef50_Q5LNV7 0.010257615189 0.00202796789503 -3.3224096017e+12 +UniRef50_R1BQD4 0.000131907310205 0.00028548621078 62001686787.2 +UniRef50_Q16762 Thiosulfate sulfurtransferase 2.92758525086e-05 1.15355356642e-05 -7161983608.25 +UniRef50_Q5FA95 5.94131169041e-05 0.00186707040297 7.29773428836e+11 +UniRef50_UPI0000167758 hypothetical protein 6.23814840172e-05 1.85270405389e-05 -17704576986.7 +UniRef50_UPI0003EAFD31 PREDICTED 4.8819231337e-05 4.90204567108e-05 81237152.7161 +UniRef50_D0K910 0.0156974061215 0.00442474955693 -4.55090978618e+12 +UniRef50_E1M6K4 Aldehyde alcohol dehydrogenase 2 0.000233654863306 6.76039767643e-05 -67036780570.5 +UniRef50_R7PUN2 Chlamydial polymorphic outer membrane protein repeat containing domain protein 2.50210721805e-05 8.12521568883e-06 -6821064601.17 +UniRef50_UPI0003738034 hypothetical protein 1.49516142289e-06 2.34898526123e-06 344699161.135 +UniRef50_UPI000377F542 universal stress protein A, partial 0.000141320207057 6.50326098557e-05 -30798239144.3 +UniRef50_B1YLN1 Cyclic nucleotide binding protein 1.05967860751e-05 2.57433155472e-05 6114839816.7 +UniRef50_UPI0004575D3A PREDICTED 2.88780381556e-06 4.08202001257e-06 482119733.414 +UniRef50_E1V7V8 Aspartate semialdehyde dehydrogenase 8.3778196919e-06 2.36778144776e-05 6176795647.04 +UniRef50_W8QZ31 5.79738522702e-05 2.11834607849e-05 -14852732511.5 +UniRef50_E0DRL2 Transcriptional regulator 0.00011496810387 2.4045312681e-05 -36706646551.1 +UniRef50_G8AUU4 8.23621158739e-05 8.96540434935e-05 2943840662.05 +UniRef50_A2SME8 3.23686449414e-05 7.59187922985e-05 17581728908.5 +UniRef50_UPI00029DABF0 PREDICTED 3.9427531914e-05 0.000108626350954 27936412411.4 +UniRef50_B2S0D7 DNA gyrase subunit A 5.96746080054e-06 1.29487910802e-05 2818448704.46 +UniRef50_Q3IVR0 0.011310750354 0.00243727111011 -3.58233246059e+12 +UniRef50_Q3IVR4 0.00352757188072 0.00377150376131 98478293575.0 +UniRef50_Q3IVR7 0.00978083173765 0.00014851893365 -3.88868288074e+12 +UniRef50_Q5HKL3 RarD protein 0.0160009279628 0.00845938645724 -3.04461285092e+12 +UniRef50_T5YD38 0.00059290993013 0.000493565523996 -40106555849.2 +UniRef50_F1SH72 0.000150907332576 0.000364478183102 86221173166.4 +UniRef50_Q47RR4 tRNA dimethylallyltransferase 6.3661461836e-06 8.15210145751e-06 721012060.213 +UniRef50_UPI000364980E hypothetical protein 2.93587283872e-05 1.85272146281e-05 -4372815022.17 +UniRef50_I6TW93 Transposase 0.000344536686639 0.00861510112398 3.33892835459e+12 +UniRef50_K0L2R6 Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein 0.010125978931 0.00343907320571 -2.69958589886e+12 +UniRef50_B3PGL6 Pyoverdine ABC transporter, permease ATP binding protein 0.000932474316509 0.0002384449538 -2.80188170424e+11 +UniRef50_R6TDY4 ATPase histidine kinase DNA gyrase B HSP90 domain protein 7.01212363148e-05 0.00177204818259 6.87088793205e+11 +UniRef50_UPI0002F6E2AD hypothetical protein 6.57259928765e-05 2.37857204022e-05 -16931802662.9 +UniRef50_A4VRC8 Membrane protein, TIGR01666 0.000972376807363 0.000444084928647 -2.13277914308e+11 +UniRef50_E2XRI8 YcaO like fatty acid binding protein 0.000904624437586 0.000144220611698 -3.06984355715e+11 +UniRef50_W7SJH2 Transcriptional regulator 7.25828961296e-05 7.98647575189e-05 2939776801.35 +UniRef50_UPI00047CB349 DNA gyrase subunit B 2.89052448466e-05 3.82519617194e-05 3773384298.66 +UniRef50_UPI000393D820 PREDICTED 3.45431607188e-06 1.19779256582e-05 3441085786.45 +UniRef50_P35595 PTS system glucose specific EIICBA component 0.0080054416916 0.00594505330486 -8.31804075536e+11 +UniRef50_P11701 Levansucrase 0.00812051859562 0.00149210009294 -2.67597388937e+12 +UniRef50_Q4KEM3 Two component sensor histidine kinase PedS1 0.000398470911846 0.000149017247225 -1.00707505548e+11 +UniRef50_I4KPZ2 Choline ABC transporter, ATP binding protein 0.000679080754717 0.00177869486044 4.43927708262e+11 +UniRef50_D9RD76 MFS family major facilitator transporter, bicyclomycin 0.0209513376319 0.00395586317548 -6.86128159597e+12 +UniRef50_B3EQY1 ABC type phosphate transport system periplasmic component like protein 3.6972000622e-06 6.57447823267e-06 1161592505.59 +UniRef50_Q8FVT0 Putative ATP binding protein BRA0745 BS1330_II0738 0.00614958929933 0.00285589370023 -1.32970533155e+12 +UniRef50_G9PKM7 1.53370912451e-05 2.70943838033e-05 4746563283.95 +UniRef50_B0VQI7 0.000832689681294 0.00750388422842 2.69324310344e+12 +UniRef50_A5F3F4 Vibriobactin specific isochorismatase 1.9368865006e-05 4.06100307513e-05 8575319269.79 +UniRef50_W8S0N6 3.04325263901e-05 1.19657019564e-05 -7455283637.3 +UniRef50_W8S6V4 5.21227415034e-06 3.08744378365e-06 -857820093.634 +UniRef50_F0YCB9 1.45505589963e-05 5.99963086808e-05 18347006829.7 +UniRef50_UPI0001BF5B06 hypothetical protein SMAC_11105, partial 8.4195206378e-05 4.60459504988e-05 -15401322742.4 +UniRef50_M5R665 7.30955119821e-06 3.60626555355e-05 11607981061.2 +UniRef50_UPI00041E8F2C hypothetical protein 2.46094983047e-05 6.81262103192e-05 17568230650.4 +UniRef50_N5FY18 P loop ATPase 0.00192557945717 0.000289526181564 -6.60494783995e+11 +UniRef50_R1FJP7 0.00013435673277 0.000173943778871 15981776298.7 +UniRef50_P54291 Acyl homoserine lactone synthase 0.00195418032151 0.000767380806037 -4.79125528063e+11 +UniRef50_D8UHU1 5.00940402212e-06 1.96611934953e-05 5915107208.01 +UniRef50_UPI00045E12F9 PREDICTED 5.38230710835e-06 0.000194714311118 76435653383.8 +UniRef50_Q12GA5 Dyp type peroxidase 0.000232537570129 0.000399977478817 67597545856.1 +UniRef50_B9KSF4 0.00210033065119 3.87640262326e-05 -8.32279744764e+11 +UniRef50_Q2YA20 NADH quinone oxidoreductase subunit H 2 4.34706464487e-06 0.00301519424442 1.21551595373e+12 +UniRef50_A8AYH1 Glucose 1 phosphate adenylyltransferase, GlgD subunit 0.00826045846617 0.003469549694 -1.93414866239e+12 +UniRef50_Q49WT2 Excinuclease ATPase subunit 0.00935152060119 0.00248964988262 -2.77022141371e+12 +UniRef50_D7A127 3.07649580786e-06 2.12238952825e-05 7326327861.53 +UniRef50_A5V6E6 1.47054139374e-05 5.2415280001e-05 15223935682.0 +UniRef50_UPI0003B309A2 flagellin 1.3676023054e-05 4.48284689728e-06 -3711398027.43 +UniRef50_UPI0003754A94 hypothetical protein 6.87126877685e-06 0.00017969230399 69769972668.1 +UniRef50_UPI0004785717 hypothetical protein 3.13948965423e-05 2.45214542912e-05 -2774892983.39 +UniRef50_D8JJ99 Fatty acid desaturase 0.000200270500699 0.00919027800764 3.62937635035e+12 +UniRef50_B2IML2 Ascorbate specific PTS system enzyme IIC 0.00659982236963 0.00573127687669 -3.50642473752e+11 +UniRef50_UPI00046730B7 hypothetical protein 1.01640728895e-05 2.03031126737e-05 4093254780.89 +UniRef50_Q8X524 Sensor protein QseC 0.002382693266 0.000413024683256 -7.95179377404e+11 +UniRef50_B8GNE7 Peptidase M24 0.00174912788259 0.00201313558902 1.06583150825e+11 +UniRef50_D8GPC7 Regulatory protein 0.000411242934588 0.000930523458585 2.09639919826e+11 +UniRef50_UPI000379B182 hypothetical protein 0.000103416525565 5.13929596241e-05 -21002551971.3 +UniRef50_E0XV83 0.000107586050663 8.72918284808e-05 -8193026533.07 +UniRef50_A0A042PYY0 3.09732808672e-05 1.51336378342e-05 -6394658266.7 +UniRef50_Q9I466 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.000130577892319 0.000182553415976 20983156711.7 +UniRef50_Q9I489 0.000125968628095 0.000332439067766 83354650172.4 +UniRef50_Q47269 0.000530997660683 0.000391147953907 -56459042774.4 +UniRef50_P37774 0.000695313524011 0.000472506728318 -89949837568.1 +UniRef50_Q8A9K9 Isoleucine tRNA ligase 1.19980617044e-06 6.67226883943e-06 2209300334.14 +UniRef50_UPI0003670352 chemotaxis protein CheW 1.61346786277e-05 4.93524104889e-05 13410405979.8 +UniRef50_K0T1C7 0.000206131182559 7.33145957287e-05 -53619685946.1 +UniRef50_V9T5G7 ATPase 0.000676991035218 0.000592171034274 -34242875239.6 +UniRef50_A4WS75 ATPase associated with various cellular activities, AAA_3 0.00370258999365 0.000169074449542 -1.42652358627e+12 +UniRef50_UPI00046413C1 hypothetical protein 1.55849813904e-05 1.08209353708e-05 -1923303839.53 +UniRef50_UPI0001CC0058 putative ISRSO12 transposase 6.19763590592e-06 1.93253848239e-05 5299833333.79 +UniRef50_UPI00045EAD98 D amino acid aminotransferase 0.000103476034068 5.3091327679e-05 -20340924259.1 +UniRef50_M9REZ0 0.0130916601532 0.0024233045962 -4.30694605381e+12 +UniRef50_P81140 Glutaryl CoA dehydrogenase, mitochondrial 2.58388453094e-05 0.000259730054698 94424751398.2 +UniRef50_P44501 2 hydroxyacid dehydrogenase homolog 0.00537679030812 0.00053566519634 -1.95442161491e+12 +UniRef50_UPI000378023E catalase 7.51403980138e-06 2.53557096606e-05 7202901064.07 +UniRef50_UPI000255D957 thioesterase 9.21478880994e-06 8.67430340529e-05 31299103983.2 +UniRef50_B0VCQ8 NADH dehydrogenase 0.000132761778031 0.00397741755827 1.55213471771e+12 +UniRef50_Q3IUV7 TraN 0.0330142938932 0.00843538952719 -9.92280530963e+12 +UniRef50_G0AKF2 7.67047828324e-05 1.90495393119e-05 -23276129318.6 +UniRef50_Q8D1X9 Phosphoenolpyruvate carboxykinase [ATP] 2.89501727837e-06 0.00469063728929 1.89249908028e+12 +UniRef50_Q0DGM2 Os05g0524100 protein 0.000350780307088 5.71860085388e-05 -1.18527621131e+11 +UniRef50_UPI000361FC4E hypothetical protein 0.000847477586539 0.000746047030207 -40948760284.1 +UniRef50_UPI00046278DB long chain fatty acid CoA ligase, partial 3.38282779757e-05 6.65185490798e-05 13197463599.5 +UniRef50_F4A5L9 PIS system, IIC component 0.00112228756118 0.00220313451772 4.36351179839e+11 +UniRef50_P37180 Probable Ni Fe hydrogenase 2 b type cytochrome subunit 0.00291153056421 0.000677594078739 -9.01867572668e+11 +UniRef50_Q9KNM2 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.00264748460205 0.00190385416374 -3.00212733317e+11 +UniRef50_UPI0003EB0EAA hypothetical protein, partial 0.000103530154109 4.73782935614e-05 -22669195163.9 +UniRef50_W6BIT8 ParB like nuclease domain protein 0.000229690032861 4.83662623568e-05 -73202631245.3 +UniRef50_X5DX57 0.00187087248108 0.000787511213846 -4.37366237918e+11 +UniRef50_Q98A81 Serine hydroxymethyltransferase 2 3.07639907102e-05 9.99653378854e-05 27937433050.7 +UniRef50_A6M258 Sensor histidine kinase like protein 0.000173357743485 0.000602550751425 1.73270484096e+11 +UniRef50_G8VH52 Aminotransferase 0.000348196785645 0.00543838853477 2.0549728728e+12 +UniRef50_UPI0003FA6D6A serine dehydratase 1.070499394e-05 0.000155669653754 58524012083.3 +UniRef50_P55045 Formamidopyrimidine DNA glycosylase 0.00581960378923 0.00311430364661 -1.09216286534e+12 +UniRef50_UPI000362483E hypothetical protein 2.95449488693e-05 2.94105557934e-05 -54256133.9293 +UniRef50_A5UNN3 Arylsulfatase regulator, AslB 0.00275554758971 0.00058437429166 -8.76529303715e+11 +UniRef50_A8AQ08 Threonine serine transporter TdcC 0.00317696380378 0.000331443215042 -1.14877158014e+12 +UniRef50_Q09C64 1.29116101556e-05 3.95200261598e-05 10742144062.9 +UniRef50_H8FWZ7 0.000177815856776 0.000176687276992 -455621508.032 +UniRef50_UPI000477C548 alcohol dehydrogenase 9.15367668969e-06 1.67687426542e-05 3074295577.24 +UniRef50_Q8CNS9 LtrC like protein 0.00878701398648 0.00287014353032 -2.38871321132e+12 +UniRef50_F6BYQ8 0.000230803317782 7.01546021278e-05 -64855857890.9 +UniRef50_UPI00037DF186 hypothetical protein 0.000728494181778 2.90158400686e-05 -2.82387990112e+11 +UniRef50_UPI0002F6EC83 hypothetical protein 2.18248232461e-06 0.000680534130847 2.73858884819e+11 +UniRef50_Q99R72 Glycosyl 4,4 diaponeurosporenoate acyltransferase 0.00636388360471 0.00407430070286 -9.24332713819e+11 +UniRef50_P76223 Protein YnjB 0.00343271367511 0.00092934880502 -1.0106391178e+12 +UniRef50_O59536 Triosephosphate isomerase 0.00249911254594 0.00282807281052 1.32805295607e+11 +UniRef50_F0VQ97 2.68581202174e-06 1.45897754727e-06 -495288132.296 +UniRef50_B6IR83 0.00333049782179 0.00184499448705 -5.9971592541e+11 +UniRef50_U9YKK0 0.00172813002195 0.000272181295113 -5.87784367525e+11 +UniRef50_Q5HQL1 Na H(+) antiporter subunit B1 0.00653895011582 0.00663145982577 37347305128.6 +UniRef50_M7E7M7 Integrase 0.00251488895654 0.00178990121966 -2.92686445978e+11 +UniRef50_F0LCG3 Cation transport protein chaC 8.53494934457e-06 1.98739380255e-05 4577688875.52 +UniRef50_Q5HR27 0.016836610319 0.00253844147617 -5.7723462201e+12 +UniRef50_UPI00035FFCE6 hypothetical protein 3.92096369903e-05 8.87245618645e-05 19989782788.2 +UniRef50_Q3JNN5 Gamma glutamyl phosphate reductase 0.00324097021463 0.0003199436242 -1.17925427958e+12 +UniRef50_E6V0C3 Nicotinamidase 0.000769546202562 0.00303592964662 9.14966808019e+11 +UniRef50_Q9I158 0.000986405635988 0.000516282486185 -1.89794484635e+11 +UniRef50_B8D0S4 Adenylyl sulfate kinase 1.21404346371e-05 0.000226502490934 86540592645.3 +UniRef50_UPI000369E4B0 hypothetical protein 2.15420966212e-06 1.73581704932e-05 6138025561.1 +UniRef50_I0EQA8 Paralysed flagella protein 0.000200956636653 0.00371954140219 1.42049584774e+12 +UniRef50_G7U4F0 Transcriptional regulator, LuxR family protein 0.000173158710486 0.0039870470697 1.53971353229e+12 +UniRef50_W4JRF8 0.000115721957538 0.000562848543728 1.80510489705e+11 +UniRef50_T0T886 Guanine deaminase 9.03076528389e-05 0.000434737406406 1.39050518143e+11 +UniRef50_F7QRG4 Glyoxalase family protein 3.06597030299e-05 4.0463741038e-05 3958010452.95 +UniRef50_UPI0003804921 hypothetical protein 1.31990149642e-05 1.1774396728e-05 -575135863.986 +UniRef50_U9G1I6 2.25522783674e-05 7.05056539254e-06 -6258231755.38 +UniRef50_Q42523 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.18261448245e-06 4.07323888256e-06 763268270.895 +UniRef50_UPI000375CE36 hypothetical protein 6.55230537703e-06 0.000726200007453 2.90530608398e+11 +UniRef50_P39409 0.00353316818497 0.0017335041206 -7.26546467148e+11 +UniRef50_UPI0002629A6E putative hydrolase 0.000142861304553 7.27190238609e-05 -28317299458.0 +UniRef50_A0A011RU24 Putative L lactate dehydrogenase operon regulatory protein 2.24001608492e-05 3.84660956498e-05 6486015030.19 +UniRef50_A9FGU9 2.41065882284e-06 3.84885124911e-06 580615931.091 +UniRef50_A8FH40 8.56619610214e-06 3.87254999477e-05 12175681058.7 +UniRef50_A6M1K4 0.00147020331343 0.000608900423076 -3.47718546211e+11 +UniRef50_Q5PCT5 DNA binding protein H NS 0.00139298586548 0.000506257208899 -3.57983240046e+11 +UniRef50_F4DU26 0.000506692602481 0.00218223734865 6.76437975275e+11 +UniRef50_B3DX55 Predicted phosphatase, Macro Appr 1 family 1.19794098047e-05 0.000228911281232 87578058548.5 +UniRef50_T2SUX4 Cation transporter 0.000117770017646 0.00523051381228 2.06407741031e+12 +UniRef50_K0WI88 Type VI secretion system protein 0.000509548472204 8.9399608029e-05 -1.69619252274e+11 +UniRef50_UPI000473E94E MULTISPECIES 0.000313060947342 8.32317831851e-05 -92784853891.2 +UniRef50_A1TN83 Ribonuclease HII 1.97219205547e-05 1.43765397541e-05 -2157995824.4 +UniRef50_R6ED70 6.89745180299e-05 9.07930933087e-06 -24180430748.6 +UniRef50_V4RKF1 2.41373948449e-05 9.02725317012e-06 -6100149616.41 +UniRef50_G7QBD3 SEC C motif domain protein 1.09036436804e-05 4.57854292127e-05 14082204867.0 +UniRef50_W5V0V9 Diguanylate cyclase 0.000941863439182 0.00046175625396 -1.93825162252e+11 +UniRef50_Q87VK2 23S rRNA methyltransferase RlmB 0.00230316973423 0.00214507735106 -63823835097.4 +UniRef50_J3NBY7 0.000120530694889 0.000650640477246 2.14011824316e+11 +UniRef50_A7HSL3 Cobyrinic acid ac diamide synthase 0.0148672134401 0.00365074459378 -4.5282261148e+12 +UniRef50_Q5HRG3 UPF0382 membrane protein SERP0230 0.016053330234 0.0290199228086 5.23477254035e+12 +UniRef50_K0WGN5 0.000477548506983 0.000282374538832 -78794125996.5 +UniRef50_F2A341 3.72942688965e-05 6.69305281982e-05 11964521557.9 +UniRef50_Q3IVE7 Transcriptional regulator, LysR family 0.000130018136227 0.000313056577946 73894865056.2 +UniRef50_D1ABZ6 6.74185480987e-06 3.24769725612e-05 10389582841.6 +UniRef50_Q8CTY1 0.00380740178412 0.00254195888779 -5.10874825979e+11 +UniRef50_N4DJP8 LysR substrate binding domain protein 0.0165015303699 0.00868372233138 -3.15614504044e+12 +UniRef50_UPI00046D6061 hypothetical protein 1.3662100412e-05 1.78345391372e-05 1684464714.94 +UniRef50_UPI00031728D0 hypothetical protein 8.38000235742e-06 1.06201148078e-05 904360885.489 +UniRef50_A5MZF0 Predicted signal transduction protein 0.000266817972855 0.000955268522999 2.77935935331e+11 +UniRef50_UPI000478BE40 cell division protein FtsY 4.4937198201e-06 4.99444260112e-06 202147931.257 +UniRef50_H3VHH5 0.00216623604627 0.000177013010107 -8.03073750209e+11 +UniRef50_A1AZI3 0.000258175290983 0.000199184284167 -23815393352.7 +UniRef50_P31777 Ribosomal RNA large subunit methyltransferase J 0.00316398745274 0.00153695522832 -6.56852874929e+11 +UniRef50_I0ETN8 0.000328018114884 0.00199484573836 6.72918765874e+11 +UniRef50_C8S0X4 0.00123528781913 8.91322057633e-05 -4.62717086028e+11 +UniRef50_P75966 Ribosomal large subunit pseudouridine synthase E 0.0033564393373 0.000833305232026 -1.01862020063e+12 +UniRef50_E2QQW0 0.00254431218071 0.00347431417878 3.75453219029e+11 +UniRef50_UPI000378A4F9 hypothetical protein 8.19284926225e-06 0.000666130595076 2.65617541789e+11 +UniRef50_A3PJC9 MgtC SapB transporter 0.00766071982215 0.000866553596055 -2.74288827927e+12 +UniRef50_A8LHS0 Type II secretion system protein 0.0104727742299 0.00189637569442 -3.46239733302e+12 +UniRef50_N0AZ28 Short chain acyl CoA synthetase 0.00227995720259 0.000296880863012 -8.00592253372e+11 +UniRef50_A0A018QNM9 Glucan biosynthesis protein G 5.63269110392e-05 8.26795838205e-05 10638897385.5 +UniRef50_UPI000425424A leucyl tRNA synthetase 1.74457684189e-06 2.31904836894e-06 231921205.028 +UniRef50_UPI000361D7A6 hypothetical protein, partial 7.41257975185e-05 0.0007016652789 2.53345389409e+11 +UniRef50_B5F095 UPF0194 membrane protein YbhG 0.00410699612823 0.001559162677 -1.02859162969e+12 +UniRef50_A0A038GAC7 4.62578920171e-05 0.000269659717006 90190058196.7 +UniRef50_A7IGL7 Fructose 1,6 bisphosphatase class 1 1 2.39869896485e-05 2.39258956952e-05 -24664378.6543 +UniRef50_X0UWW1 Marine sediment metagenome DNA, contig 0.000814339825635 0.000292059306647 -2.10851054618e+11 +UniRef50_UPI00046D96F8 PREDICTED 6.0731794209e-05 6.0793935683e-05 25087275.6154 +UniRef50_UPI00047DA76B UTP glucose 1 phosphate uridylyltransferase 0.000190319808949 0.000106826509575 -33707269535.3 +UniRef50_T1DQ54 Putative dosage compensation complex subunit mle 3.25045340539e-05 6.27084539134e-06 -10590862036.7 +UniRef50_Q60317 Probable aspartate aminotransferase 1 0.00235168158573 0.00055882807145 -7.23796964501e+11 +UniRef50_P57061 Lipoprotein releasing system transmembrane protein LolC 0.000124995360549 0.00149496598633 5.53073953057e+11 +UniRef50_I3U950 1.84589809737e-05 1.45515088597e-05 -1577494442.5 +UniRef50_C0ZTQ3 0.000234949785595 0.00326621253566 1.22375796998e+12 +UniRef50_S5VEZ7 Alpha galactosidase 0.000417487277896 0.000929494223385 2.06703486926e+11 +UniRef50_UPI00036308A8 hypothetical protein 2.41299024464e-05 1.89814350507e-05 -2078499466.44 +UniRef50_B2S842 Porphobilinogen deaminase 3.06435229914e-05 8.22282976115e-06 -9051508989.92 +UniRef50_Q9RXS6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.000560622755721 0.0354419827311 1.40820330645e+13 +UniRef50_Q9RUR7 0.000440645123179 0.0538495595985 2.15618341748e+13 +UniRef50_D7BIR4 0.000385250327578 6.21687670526e-05 -1.30431990641e+11 +UniRef50_Q5SI49 tRNA pseudouridine synthase D 1.33116038787e-05 4.97740017588e-05 14720317468.1 +UniRef50_O07134 Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.000307733143081 0.00326070662046 1.19215162988e+12 +UniRef50_E3A1T0 0.00101832388616 0.000665838472429 -1.42302687006e+11 +UniRef50_J9YRE4 Permease 0.000305046228192 0.000297673757941 -2976356710.71 +UniRef50_N1NMR4 0.000419130082496 0.000413989260398 -2075412965.94 +UniRef50_UPI000273BF3C PREDICTED 2.01047016641e-05 0.00103208153753 4.08547466993e+11 +UniRef50_Q9A176 Protein NrdI 1.19568256144e-05 4.8972160221e-05 14943544809.9 +UniRef50_A8LHW3 Aminotransferase class I and II 0.00367212573027 0.00032612323016 -1.35082226936e+12 +UniRef50_Q88XV1 Energy coupling factor transporter ATP binding protein EcfA2 0.00694285955778 0.00529908676943 -6.63611246017e+11 +UniRef50_J8W6V4 Putative phage associated protein 1.10403802565e-05 6.74218271393e-05 22761881984.7 +UniRef50_A6LX69 0.000260423895184 0.000683892032202 1.70959283453e+11 +UniRef50_UPI000479C5D4 hypothetical protein 0.000189999040989 2.48246695313e-05 -66682920675.1 +UniRef50_UPI000426B838 sulfate permease 5.68407074452e-05 1.80334646706e-05 -15666960126.5 +UniRef50_I4DYV1 Branched chain amino acid ABC transporter permease protein 0.000354712598539 0.00135551109466 4.04034634062e+11 +UniRef50_E9C0U9 GTP binding protein TypA 0.00794444714053 0.00252287959768 -2.18875334716e+12 +UniRef50_S5XU71 8.19930893159e-05 6.38009451897e-05 -7344391826.46 +UniRef50_UPI0004748AC6 aldolase 0.000120739065241 3.78468844891e-05 -33464590571.0 +UniRef50_F6FQD2 Nicotinate phosphoribosyltransferase 0.000135299637578 0.0018037064542 6.73556305523e+11 +UniRef50_Q92V09 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 1.32314507799e-05 1.65877858902e-05 1354993670.89 +UniRef50_UPI000379F656 hypothetical protein 3.29441715631e-05 6.43868306279e-05 12693787309.3 +UniRef50_A5G208 6.69571599676e-05 3.88776787839e-05 -11336031127.8 +UniRef50_D5Z124 Phosphoribosylformylglycinamidine synthase subunit I 2.51703186687e-05 2.46718300064e-05 -201245990.114 +UniRef50_D8JJB8 Riboflavin biosynthesis protein RibF 0.00026475727968 0.00725609991529 2.82249081542e+12 +UniRef50_D9QJC6 Cysteine desulfurase 0.00664871113548 0.00165431861469 -2.01629754873e+12 +UniRef50_T0TC75 Poly D alaninet ransfer protein DltD 0.00473674329413 0.00115899275952 -1.44438179476e+12 +UniRef50_B5F7E7 Phosphoenolpyruvate synthase regulatory protein 0.00456153042611 0.00073957950839 -1.5429684861e+12 +UniRef50_Q52986 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI 0.003342519993 0.00101311366358 -9.40409920217e+11 +UniRef50_Q8DUN5 Ferredoxin NADP reductase 0.0060242820727 0.00132603322691 -1.89674071304e+12 +UniRef50_UPI00047D9459 hypothetical protein 9.82030943027e-06 7.5251691884e-06 -926576280.181 +UniRef50_UPI000472033F hypothetical protein 7.77162903018e-07 4.72664108727e-05 18768279892.6 +UniRef50_R4RQA1 MFS type transporter 7.74595052315e-05 0.000140738699848 25546587389.7 +UniRef50_UPI000377EFC4 hypothetical protein 5.89117691443e-06 8.98611234003e-06 1249463410.44 +UniRef50_D3QJ40 Riboflavin biosynthesis protein RibD 0.0257206235796 0.00537257116554 -8.21475845825e+12 +UniRef50_B0SGE9 Pyridoxine pyridoxamine 5 phosphate oxidase 1.0061762005e-05 9.32392407724e-05 33579768880.8 +UniRef50_T0TDK7 Chorismate mutase I 0.000834248644471 0.000673726323636 -64804830751.5 +UniRef50_Q9RZG4 0.000199376402564 0.0201966654755 8.07315099306e+12 +UniRef50_T1BKR4 DNA repair protein RadA 7.94560936296e-06 3.56516053712e-05 11185250579.3 +UniRef50_O32232 Carboxylesterase 0.018312527669 0.00918979181966 -3.68296041094e+12 +UniRef50_O25039 Exodeoxyribonuclease 7 large subunit 9.94256335816e-05 0.00257500949559 9.99423583924e+11 +UniRef50_F5M463 4 alpha glucanotransferase 0.000624703563073 0.000326795801954 -1.20269018903e+11 +UniRef50_A7ILS7 0.000195131380502 5.86705342295e-05 -55090918202.9 +UniRef50_X1FUR4 Marine sediment metagenome DNA, contig 5.73541250892e-05 7.33990986429e-05 6477552717.6 +UniRef50_J1C3T0 0.00677065814862 0.00272088707168 -1.63494228004e+12 +UniRef50_Q2NYV9 ATP dependent protease ATPase subunit HslU 0.00466495914154 0.00126406691381 -1.37298192598e+12 +UniRef50_C1DN07 Polysaccharide biosynthesis protein 0.0004631099309 9.51100499805e-05 -1.48566067793e+11 +UniRef50_UPI0004758B17 NUDIX hydrolase 5.7461720283e-05 9.05738826716e-06 -19541422822.7 +UniRef50_H1SB32 0.000172122406604 0.000768411982585 2.40729419119e+11 +UniRef50_A5UXK1 NADH quinone oxidoreductase subunit B 1 1.46523285773e-05 0.000122680776647 43612410144.0 +UniRef50_UPI000467AAFA hypothetical protein 2.31629721577e-06 1.24192951441e-06 -433735425.013 +UniRef50_Q9A0C6 Carbamoyl phosphate synthase large chain 0.000781758507262 0.00205153872519 5.12625855934e+11 +UniRef50_UPI0004722C63 hypothetical protein 1.84074761173e-05 3.08474762305e-05 5022180701.67 +UniRef50_UPI000367B5A7 peptidase S14 6.13528049403e-06 1.06297807008e-05 1814484887.19 +UniRef50_Q8XJ76 Phenylalanine tRNA ligase beta subunit 0.000531019916438 0.000813067194797 1.13865947383e+11 +UniRef50_P32689 0.00638341394546 0.00141919615665 -2.00411563915e+12 +UniRef50_P32688 0.00312582134213 0.00061813542191 -1.01238357876e+12 +UniRef50_A5UKK2 Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF 0.00368550201413 0.00123855306996 -9.87863316202e+11 +UniRef50_UPI0003B45101 recombinase RecF 1.31776464676e-05 1.40945977535e-05 370184486.375 +UniRef50_P39651 0.0245750725437 0.00722354848411 -7.00502319e+12 +UniRef50_UPI0004735386 hypothetical protein, partial 1.43575808658e-05 4.5761733786e-06 -3948874233.95 +UniRef50_Q1ARM2 Biotin lipoyl attachment 3.10784266904e-05 3.73818573356e-05 2544772303.26 +UniRef50_C1F2D1 NAD specific glutamate dehydrogenase domain protein 3.70416471266e-06 7.83154241518e-06 1666273027.13 +UniRef50_P32687 0.00441561342627 0.00072743604818 -1.48896246656e+12 +UniRef50_UPI00047736AE threonine aldolase 5.80882714178e-06 8.71874967627e-06 1174771435.94 +UniRef50_Q9ZGN9 ABC transporter family protein 0.0231026341526 0.00281019902571 -8.19230507691e+12 +UniRef50_UPI000011E309 transposase, pseudogene 0.000130716080354 0.0151274084754 6.05434874997e+12 +UniRef50_D4JCQ5 NADPH dependent glutamate synthase beta chain and related oxidoreductases 0.000406263274426 0.00112893847319 2.91752845963e+11 +UniRef50_Q18B68 1 deoxy D xylulose 5 phosphate synthase 2.07099384224e-06 7.90805629204e-06 2356493739.8 +UniRef50_C5C7N2 4.34439023213e-06 1.75737853778e-05 5340869163.25 +UniRef50_C7ZS00 0.00701141806626 0.00138297340731 -2.2722721776e+12 +UniRef50_M7N0H7 1.40641553897e-05 0.000136500446927 49429033355.7 +UniRef50_A4WW43 0.000174762031871 8.00426769978e-05 -38239365899.5 +UniRef50_R4K685 Fe S oxidoreductase 0.0024214986201 0.000622434657062 -7.26304198877e+11 +UniRef50_UPI00036082CE hypothetical protein 3.78895586084e-06 4.10599987904e-05 15046777397.8 +UniRef50_M4WXK7 0.00161906284018 0.000361665506771 -5.07626733498e+11 +UniRef50_A3PRJ1 0.00222871928188 0.0012289177358 -4.03632153097e+11 +UniRef50_A6M0J7 Methyl accepting chemotaxis sensory transducer 0.000257035560643 0.000895202361581 2.57635768726e+11 +UniRef50_O59778 Biotin synthase 0.00156055492876 0.001124401892 -1.7608033314e+11 +UniRef50_A0A011NHA3 0.000162804305058 2.51812244254e-05 -55560126476.7 +UniRef50_I0JR51 TetR family transcription regulator 0.00736492188731 0.00278067092202 -1.85071836977e+12 +UniRef50_T2SYZ3 9.20334809672e-06 0.00336602471348 1.35518997803e+12 +UniRef50_A6M003 Two component, sigma54 specific, transcriptional regulator, Fis family 0.000398514318507 0.00079673729552 1.60767502566e+11 +UniRef50_C9A997 Alpha acetolactate decarboxylase 0.0265054845912 0.00862250635303 -7.21957776358e+12 +UniRef50_F3Y7S3 Low molecular weight protein tyrosine phosphatase 0.0059758445174 0.000415939021406 -2.24460207644e+12 +UniRef50_W4TWJ0 GMP synthase 0.000103136495798 0.000304825480215 81424318011.3 +UniRef50_UPI000304C6B6 hypothetical protein 3.03277086967e-05 6.1948372485e-05 12765650000.5 +UniRef50_UPI00047969EC ferrichrome ABC transporter 1.58582755803e-05 3.38348184242e-05 7257350943.07 +UniRef50_UPI00036BADB7 hypothetical protein 1.05451137734e-05 1.40705537584e-05 1423263383.96 +UniRef50_UPI000476CE7F formyltetrahydrofolate deformylase 1.92575875458e-05 1.86895804732e-05 -229311425.439 +UniRef50_E6X978 NADP dependent oxidoreductase domain protein 0.000187803974553 0.00202465598241 7.41559696282e+11 +UniRef50_Q9I596 Neutral ceramidase 0.000747080080554 0.000326476831722 -1.69802692936e+11 +UniRef50_E2QM67 0.00214901423075 0.00130578687325 -3.40421231786e+11 +UniRef50_UPI0004756DAB chromosome partitioning protein 8.17605639413e-06 1.29659318228e-05 1933731488.94 +UniRef50_K9IFC3 Purine nucleosidase 1.53882886279e-05 1.42061755336e-05 -477233562.328 +UniRef50_U5MVL7 Low specificity L threonine aldolase LtaE 0.00052686354827 0.000950233193128 1.70919520959e+11 +UniRef50_UPI000467F4BE hypothetical protein 0.000150542335541 2.79367605533e-05 -49497375162.2 +UniRef50_Q4A072 Na+ H+ exchanger 0.00857290661587 0.00323854595074 -2.15354686048e+12 +UniRef50_A6LQ30 Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein 0.000437100657518 0.000752530591529 1.27342935121e+11 +UniRef50_Q6FAA9 Elongation factor P 0.000216117932552 0.00452430942389 1.73926977251e+12 +UniRef50_UPI000287DA5E heavy metal transporting P type ATPase 4.8042382204e-06 5.34025931399e-05 19619752249.9 +UniRef50_F5M2C8 Inositol monophosphatase 0.00464371332074 0.000452357064562 -1.69210195434e+12 +UniRef50_M1N6B4 Ribonuclease E 0.000837681513816 0.00242474244203 6.40715972146e+11 +UniRef50_S9RVU8 Mobile element protein 2.42881846922e-05 1.17539025047e-05 -5060243532.03 +UniRef50_UPI0004768A02 hypothetical protein 3.80517971301e-05 0.00713747840495 2.86612564134e+12 +UniRef50_UPI0003B4B8C4 rRNA methyltransferase 3.59520715948e-05 2.1174259502e-05 -5965984086.01 +UniRef50_UPI0003827792 hypothetical protein 1.32423340973e-05 9.17165658924e-06 -1643382462.83 +UniRef50_Q8UD63 2 isopropylmalate synthase 3.42790571387e-06 1.8136583151e-05 5938073577.13 +UniRef50_Q4FQ21 UDP N acetylmuramoylalanine D glutamate ligase 8.50193668641e-05 0.0061263127281 2.43894426494e+12 +UniRef50_A3PS43 RepA 0.000811322712027 0.000295809721398 -2.08118920373e+11 +UniRef50_UPI000472BDAD hypothetical protein, partial 0.000219233112502 0.000106540698524 -45495310414.3 +UniRef50_P00893 Acetolactate synthase isozyme 3 large subunit 0.00263134643519 0.00228647244295 -1.39229862747e+11 +UniRef50_Q16134 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 6.77978060068e-06 1.61953006511e-05 3801160985.78 +UniRef50_Q9RWS6 1.80149902168e-05 0.0178655269123 7.20525957655e+12 +UniRef50_UPI000473521A glutamate synthase, partial 1.77432696565e-06 2.83195674963e-06 426978122.37 +UniRef50_D2Q2X8 Cell envelope related transcriptional attenuator 3.83383480767e-06 1.33563431059e-05 3844353454.31 +UniRef50_Q1R8C8 0.00239204786417 0.000373031627616 -8.15101630811e+11 +UniRef50_P31660 2 methylcitrate synthase 0.00224962882798 0.0128614066204 4.28410491595e+12 +UniRef50_Q5M2Y8 Polar amino acid ABC uptake transporter membrane spanning protein 0.00577906079839 0.00537740734636 -1.62152427427e+11 +UniRef50_Q2S1S3 Glutamate 1 semialdehyde 2,1 aminomutase 9.04314876951e-06 2.44276965825e-05 6210930741.74 +UniRef50_M9RWZ9 RNA methyltransferase 0.000797513117142 0.000952864192453 62717135475.1 +UniRef50_B6JIZ7 Crossover junction endodeoxyribonuclease RuvC 0.0046648044647 0.0028204990672 -7.44568721143e+11 +UniRef50_Q0BQU0 1.12821560914e-06 2.30266026039e-05 8840647553.23 +UniRef50_U6I6D8 Dihydropyrimidine dehydrogenase 1.11580789459e-05 9.28411541135e-06 -756542075.016 +UniRef50_A3M2D6 0.000705949687179 0.0102144213192 3.83868667991e+12 +UniRef50_A3M2D5 0.000223648994873 0.0157066851758 6.25069170445e+12 +UniRef50_UPI00046DDB7F PREDICTED 0.000104156638361 5.42494403056e-06 -39859196575.3 +UniRef50_A3M2D9 0.000351945069607 0.0123522579442 4.84467356787e+12 +UniRef50_A3M2D8 9.68473818285e-05 0.00986230622784 3.94243557179e+12 +UniRef50_Q5E727 Urease subunit beta 3.86473069012e-05 2.15352461845e-05 -6908348899.93 +UniRef50_UPI0003C1B3D1 3.29972921767e-06 1.42042003433e-05 4402268806.31 +UniRef50_UPI00041EF0AD hypothetical protein 1.79569004117e-05 6.02985700891e-05 17093851639.5 +UniRef50_UPI000369A5D7 hypothetical protein 1.14320495302e-05 1.72387678422e-05 2344243439.0 +UniRef50_UPI000467E096 hypothetical protein 6.30358355682e-05 4.84440774108e-05 -5890871829.15 +UniRef50_Q88WP5 tRNA dimethylallyltransferase 2.95371902639e-05 0.00341033193067 1.36486832372e+12 +UniRef50_A8F961 Serine acetyltransferase 0.000492897018218 0.00109320600233 2.42352103506e+11 +UniRef50_P77968 Superoxide dismutase [Fe] 0.00509775378426 0.000366438191664 -1.9100901645e+12 +UniRef50_E6S1Z5 Menaquinone biosynthesis protein, SCO4494 family 0.000107240337745 0.00261019214687 1.01047236001e+12 +UniRef50_UPI00016C3B63 L aspartate oxidase, partial 5.13564402652e-06 9.50703334215e-06 1764783509.7 +UniRef50_Q7NPZ7 UDP N acetylmuramoylalanine D glutamate ligase 0.000130467507666 0.00243187437997 9.29106195786e+11 +UniRef50_A0A058VD88 Phosphoribosylaminoimidazolesuccinocarboxamide synthase like protein 4.56932642727e-05 4.42091165916e-05 -599168631.4 +UniRef50_Q9I0I6 Methyl accepting chemotaxis protein PA2652 0.000352490786946 0.00039004886388 15162656547.7 +UniRef50_T1K2G0 0.00965610707001 0.00105173805588 -3.47368935849e+12 +UniRef50_D3P3A4 Transposase 0.00737916836446 7.61084223548e-05 -2.94833491725e+12 +UniRef50_A3PLJ3 0.013076074232 0.00297060972472 -4.07970002959e+12 +UniRef50_UPI0003720E8F hypothetical protein 9.49329018536e-05 0.000109745865198 5980175077.64 +UniRef50_UPI00037E700F hypothetical protein 4.5864165894e-06 5.7364189125e-06 464270049.951 +UniRef50_Q05624 Phosphate butyryltransferase 0.000124857548682 0.00152569703067 5.65536089113e+11 +UniRef50_A0A023RYG5 Hydrolase 0.000212673599042 0.00802945430199 3.15573029247e+12 +UniRef50_A5IS38 Phosphodiesterase, MJ0936 family 0.0131558039801 0.0009042730315 -4.94609338714e+12 +UniRef50_Q6GI75 Enoyl [acyl carrier protein] reductase [NADPH] FabI 0.0179188376293 0.00380824134455 -5.69662087666e+12 +UniRef50_UPI00045E7AD4 2 polyprenylphenol hydroxylase 6.95508288561e-06 1.05811140966e-05 1463873296.28 +UniRef50_P52308 DNA primase 6.02106915919e-05 0.0019527130863 7.6402644036e+11 +UniRef50_A4WQE3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.00257883166041 0.0019227576281 -2.64865137777e+11 +UniRef50_G7M2Z2 Acriflavin resistance protein 0.000388936743934 0.000548785424775 64532874019.4 +UniRef50_UPI0003C4AE88 PREDICTED 5.4153621612e-05 2.15401070385e-05 -13166476046.2 +UniRef50_N0B1P0 Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase 0.000825155147243 0.00134257029589 2.08886844907e+11 +UniRef50_J9Z1D2 Hypoxia induced family protein 2.13565309037e-05 2.53920855143e-05 1629202918.12 +UniRef50_UPI00037EB16F thymidylate synthase 1.08099390009e-05 5.5912709852e-05 18208542065.8 +UniRef50_F5RE08 0.000521561848398 0.000323358572359 -80017094764.7 +UniRef50_R0EX71 TRAP C4 dicarboxylate transport system permease DctM subunit 1.1025893288e-05 8.11070396768e-06 -1176897702.01 +UniRef50_UPI00046EE358 hypothetical protein, partial 1.54291497045e-05 0.000111014171378 38588846209.7 +UniRef50_G7LXD6 0.000107138880474 0.00126655150632 4.68069104648e+11 +UniRef50_B4VB07 Type I PKS 0.00025325859972 8.09269813902e-05 -69572389066.6 +UniRef50_P55189 Putative sulfate transporter YbaR 0.0332638873465 0.00979420999235 -9.47499675322e+12 +UniRef50_B9EBL7 0.0147188271841 0.00224854317062 -5.03440668384e+12 +UniRef50_E4NJ63 3.07827872702e-07 4.1342699129e-07 42631660.0209 +UniRef50_A1B623 0.000693799523845 7.17820107701e-05 -2.51116103042e+11 +UniRef50_UPI00021954C2 thymidylate kinase 1.00235012671e-05 1.42640886043e-05 1711977145.89 +UniRef50_Q4L540 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0191855804536 0.00502667276234 -5.71612478431e+12 +UniRef50_UPI00046E93BA Holliday junction resolvase 1.76975454317e-05 1.42982953332e-05 -1372318978.25 +UniRef50_P39346 L idonate 5 dehydrogenase (+)) 0.00189798702301 0.000454320676636 -5.82825819808e+11 +UniRef50_I6DGS5 Response regulator 0.00010113535271 0.00014959060866 19561981439.9 +UniRef50_UPI000376418A xanthine phosphoribosyltransferase 3.47631047232e-05 5.3162084705e-05 7427893999.53 +UniRef50_UPI00047230A9 carbamoyl phosphate synthase large subunit 1.43848954576e-06 4.62011510452e-06 1284461281.01 +UniRef50_A6LT71 0.000190329070009 0.00316875556521 1.20242732552e+12 +UniRef50_F4A863 8.38802052221e-06 1.38886124734e-05 2220656470.55 +UniRef50_UPI00037C86FD hypothetical protein 1.28239747486e-05 2.16149143981e-05 3549010213.46 +UniRef50_A3PGH0 Acyltransferase 3 0.00180608458437 0.000726140859349 -4.3598653419e+11 +UniRef50_A0A012LJX4 PTS system mannitol specific EIICB component 1.18758394005e-05 2.99492061989e-05 7296439961.66 +UniRef50_UPI00047AF5BF hypothetical protein 4.93267020139e-05 5.42699650765e-05 1995655959.03 +UniRef50_UPI00047D7213 antitermination protein NusG 2.6258829305e-05 5.57646079986e-05 11911844935.2 +UniRef50_J9NZJ3 9.07280274307e-05 0.000374123687487 1.1441030562e+11 +UniRef50_Q3JPN7 0.00011424244143 2.95136361072e-05 -34206058448.2 +UniRef50_J9NZJ0 6.76170516728e-06 0.000121835406466 46456665327.5 +UniRef50_UPI00006CADE3 Glutamate Leucine Phenylalanine Valine dehydrogenase family protein 5.04609241008e-06 7.09297487305e-05 26598040539.9 +UniRef50_K7S7N6 AXE1 multi domain protein 0.000114737382625 0.00416092608606 1.6334960319e+12 +UniRef50_Q86ZM3 Catabolic 3 dehydroquinase 4.36126849552e-05 2.23471679917e-05 -8585150155.4 +UniRef50_Q838A4 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 0.00659566765884 0.00835561685915 7.1051308917e+11 +UniRef50_Q46904 Probable electron transfer flavoprotein quinone oxidoreductase YgcN 0.00450671294569 0.00139201722548 -1.25744088386e+12 +UniRef50_Q9ZLD6 UvrABC system protein A 4.52802065825e-05 0.0034339979654 1.36806694348e+12 +UniRef50_Q2FRE6 Nucleoside diphosphate kinase 1.06555755807e-05 4.75735487631e-05 14904238808.2 +UniRef50_P46859 Thermoresistant gluconokinase 0.000619543379916 0.0023801048857 7.10760284403e+11 +UniRef50_P0A9C3 Aldose 1 epimerase 0.00258067039322 0.00130548031936 -5.14809881159e+11 +UniRef50_UPI0003F77CB8 hypothetical protein 3.53088560919e-06 5.80156056179e-05 21996150070.2 +UniRef50_M9VF11 0.00175850184045 0.00889661509526 2.88174391547e+12 +UniRef50_A6LR82 Transposase 0.000294910928794 0.00127720519856 3.96564250811e+11 +UniRef50_V5VI78 Thiol 0.000162476035378 0.00410126531656 1.59013756719e+12 +UniRef50_Q54433 Probable phosphopantothenoylcysteine decarboxylase 0.00107745967448 0.00396123237492 1.16421442704e+12 +UniRef50_B0VEJ2 6.86338161594e-05 0.00511761076274 2.03833395125e+12 +UniRef50_Q5HP16 Octanoyltransferase LipM 0.00623460419002 0.00451189382822 -6.95479313092e+11 +UniRef50_C7J469 Os06g0328400 protein 4.32644533038e-05 0.0001572496307 46017214870.2 +UniRef50_D3FFF2 ABC transporter related protein 0.00170486514729 0.000481839989651 -4.93750264346e+11 +UniRef50_A6LTK9 Transcriptional regulator, GntR family 0.000166783205682 0.00141169236652 5.02585104984e+11 +UniRef50_UPI0003B2EB2A glycerol kinase 1.30864608729e-05 5.55243145485e-06 -3041580129.0 +UniRef50_E5CQ05 Replication initiation protein 0.000252022280953 0.000285752892185 13617461675.5 +UniRef50_UPI000255E431 cystine transporter permease 6.66403429153e-05 0.000109528254037 17314376013.7 +UniRef50_UPI00037539AF S adenosylmethionine synthetase 1.7943762393e-05 0.00160165593925 6.39364040132e+11 +UniRef50_A6E1L3 2 hydroxyacid dehydrogenase 0.000261608366741 0.0001913708631 -28355742131.0 +UniRef50_UPI0004672A57 hypothetical protein 0.000111682245224 1.56004909309e-05 -38789383263.8 +UniRef50_M9RK54 UPF0717 family protein 0.00568106025131 0.00445715976106 -4.94103646862e+11 +UniRef50_UPI0004628C07 hypothetical protein 1.55257226169e-05 1.49894808155e-05 -216487395.652 +UniRef50_Q49VT5 0.000797990404066 0.00114872277836 1.41594963473e+11 +UniRef50_M1MBM4 0.000561364523412 0.00218356047383 6.54900411767e+11 +UniRef50_B6ISU5 1 deoxy D xylulose 5 phosphate reductoisomerase 0.00300656720842 0.00171140520722 -5.22872793309e+11 +UniRef50_A5IVI2 GCN5 related N acetyltransferase 0.0174203900916 0.00535429124419 -4.87123217238e+12 +UniRef50_G3A8C8 Putative transposase 5.80401440153e-05 2.06172713112e-05 -15108072940.9 +UniRef50_V9G5F4 Iojap protein 3.58681641036e-05 0.000983865104399 3.82717998028e+11 +UniRef50_UPI0004774299 aldehyde dehydrogenase, partial 1.90479037125e-05 0.000206548502196 75696292499.1 +UniRef50_P50141 GTP cyclohydrolase 1 2.93670348758e-05 3.37790018659e-05 1781165214.83 +UniRef50_A0A037UUK8 0.000219783825067 8.67799590184e-05 -53695292865.0 +UniRef50_Q6A5P9 0.000613639472531 0.0104821050853 3.98402066757e+12 +UniRef50_Q53074 UvrB protein 0.0052310331042 0.00029694267887 -1.9919528528e+12 +UniRef50_Q97PK0 Putative GTP cyclohydrolase 1 type 2 0.00434769471106 0.00474624853255 1.60901068541e+11 +UniRef50_UPI0003707E4A hypothetical protein 0.000132912306155 1.72820546738e-05 -46681351465.6 +UniRef50_B4FZA3 6.81491647936e-06 1.10499416571e-05 1709731633.86 +UniRef50_UPI000366285D ATPase AAA 5.06646848846e-06 7.82940424901e-05 29562870227.8 +UniRef50_V0V0Z7 0.000343169080774 0.00048412574623 56905935577.4 +UniRef50_UPI000377C6CE hypothetical protein 2.05073781574e-06 1.74474566522e-05 6215844333.28 +UniRef50_E3GXW6 CobB CobQ domain protein glutamine amidotransferase 0.00221183120807 0.00149131048148 -2.90883059108e+11 +UniRef50_A5UL08 0.00340474721315 0.000710170474252 -1.08783369567e+12 +UniRef50_R4RG70 Cyclase family protein 0.0185230147964 0.00562504453324 -5.20706887115e+12 +UniRef50_UPI00040EF0A5 hypothetical protein 2.55961049826e-06 6.92807511495e-05 26936143241.4 +UniRef50_F8TVB7 1.97370042719e-05 1.78455386154e-05 -763607896.423 +UniRef50_V5YQU8 YycH protein 0.0219938124284 0.00461887532639 -7.01447532253e+12 +UniRef50_UPI00047D67EB thioredoxin reductase 1.28772586399e-05 1.31331204614e-05 103294557.117 +UniRef50_G7M4A9 Exonuclease RNase T and DNA polymerase III 0.00014803372112 0.000234378337464 34858381185.7 +UniRef50_F1VZ41 0.000140049385308 2.33971483692e-05 -47093939536.2 +UniRef50_M1KV66 Mucin 17 like protein 4.47502244079e-06 1.42213285055e-05 3934703358.95 +UniRef50_F2JM36 ABC type transporter, periplasmic subunit family 3 0.000705143430581 0.00116441901343 1.85415188741e+11 +UniRef50_UPI0003FD0BE2 D ribose transporter ATP binding protein 3.49936720893e-06 5.71028827454e-06 892575965.239 +UniRef50_J7R096 5.70409440876e-05 5.38698830455e-05 -1280196255.99 +UniRef50_M7RJM0 Mg chelatase, subunit ChlI 8.8684293154e-06 2.11383979777e-05 4953536918.42 +UniRef50_A6M192 Flagellar hook capping protein 0.000345123738524 0.000765675231504 1.69781798463e+11 +UniRef50_B2IDX6 Signal recognition particle protein 0.0061461913419 0.00155959532189 -1.85166509714e+12 +UniRef50_A1JMA3 Formate tetrahydrofolate ligase 2.69741483613e-05 4.3496199444e-05 6670154770.45 +UniRef50_Q6ZEM6 Arsenate reductase ArsI1 0.00628721445997 0.00164367513208 -1.8746538093e+12 +UniRef50_I4Z0I0 0.000148008297087 3.29094813587e-05 -46466804330.7 +UniRef50_UPI0004655B4D chemotaxis protein CheY 2.00210299506e-05 2.36994274255e-05 1485014199.63 +UniRef50_Q313L3 Protein translocase subunit SecA 0.000392081843457 0.00152683184065 4.58112498814e+11 +UniRef50_A0JSX3 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.000242672580455 0.00701389251153 2.73362457839e+12 +UniRef50_A4SMY4 Serine threonine protein kinase, RI01 family 0.000430484341631 0.000703533841073 1.10233433619e+11 +UniRef50_UPI0003793F1D hypothetical protein 4.57069822343e-05 3.12458430267e-05 -5838139356.24 +UniRef50_UPI0003C112FF PREDICTED 1.59055496191e-05 1.43128647474e-05 -642986427.146 +UniRef50_P0ABM9 Cytochrome c type biogenesis protein CcmH 0.00311220942337 0.00101510923214 -8.46625081513e+11 +UniRef50_B3PGS4 Flagellar basal body rod protein FlgF 0.000160177930206 0.000301343576728 56990303798.2 +UniRef50_F6BJB1 N acetylglucosamine 6 phosphate deacetylase 0.000389661516172 0.00114106500078 3.03350807494e+11 +UniRef50_Q9RW85 MutT nudix family protein 0.000243016731023 0.0372221973502 1.49289490015e+13 +UniRef50_W5YET9 NADH quinone oxidoreductase, chain I 8.37404603167e-05 6.2501547139e-05 -8574409880.61 +UniRef50_A6LVB6 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000197072619077 0.00120862278872 4.083752166e+11 +UniRef50_W0A553 0.000300386728529 0.00330786237509 1.21415482439e+12 +UniRef50_UPI00046278A4 hypothetical protein 0.000810758331273 0.000276517025475 -2.15679771029e+11 +UniRef50_Q3J4U6 0.00258327018712 0.00326089690688 2.73566222182e+11 +UniRef50_Q9ZM69 Copper transporting ATPase 0.000103073608538 0.00539555313043 2.13663892901e+12 +UniRef50_T8TFL3 Exonuclease VIII 0.000454282958651 0.000150077429885 -1.22811504984e+11 +UniRef50_Q0SAE7 0.000120107238596 8.18196257271e-05 -15457179157.0 +UniRef50_P55255 Glucose 1 phosphate thymidylyltransferase 0.00161138241622 0.00484057112833 1.30366310968e+12 +UniRef50_P40733 Deoxyguanosinetriphosphate triphosphohydrolase 0.00154295699281 0.000670265255215 -3.52316363599e+11 +UniRef50_R9SLI5 von Willebrand factor type A domain containing protein 0.00246779820902 0.000532583745424 -7.81269826707e+11 +UniRef50_C6NYG2 Flagellar biosynthesis protein FlhB 9.14892244882e-05 3.13016641743e-05 -24298456683.1 +UniRef50_UPI0004658BA2 ABC transporter ATP binding protein 0.000142569188243 4.3875420929e-05 -39843884973.4 +UniRef50_J1L2V8 Beta Ig H3 fasciclin 5.30556213744e-05 1.23186796677e-05 -16446003265.5 +UniRef50_Y8DDU0 0.00622958067642 0.000230716175927 -2.42181521319e+12 +UniRef50_UPI000373827F peptidase 2.7849031436e-05 2.97640846367e-05 773130477.468 +UniRef50_G8B089 6.35136322225e-05 0.000118710243746 22283549410.6 +UniRef50_UPI0002DC68DF hypothetical protein 7.38687925474e-05 9.47998532056e-06 -25994551617.0 +UniRef50_Q9I1P5 0.000705744710068 0.00175102031702 4.219905895e+11 +UniRef50_B8EMG0 0.00095691803505 0.000695845906121 -1.05398022164e+11 +UniRef50_UPI00005C8244 transposase 0.00530276686792 0.00116572383629 -1.6701750391e+12 +UniRef50_K4FFQ5 Lysine decarboxylase 0.000215604834896 0.00899432625473 3.54407756421e+12 +UniRef50_Q8CSF5 0.0106079243499 0.000459041510662 -4.09722854298e+12 +UniRef50_UPI0003798946 hypothetical protein 0.00018489448043 5.45780386188e-05 -52610346721.7 +UniRef50_Q9JW21 Amino acid acetyltransferase 0.000141878567076 0.00294290087203 1.13080707692e+12 +UniRef50_UPI00046441BB hypothetical protein, partial 2.77478391595e-05 7.52691037452e-05 19184917664.7 +UniRef50_A8IPV3 Acetylglutamate kinase 0.00570593237411 0.0019096560019 -1.53260335701e+12 +UniRef50_UPI0003823B10 hypothetical protein 0.000136966638286 1.58733586583e-05 -48886842967.5 +UniRef50_O29313 Glutamine synthetase 8.29429869726e-06 1.28309922823e-05 1831518871.77 +UniRef50_P26503 UDP glucose 4 epimerase 0.000982529560611 0.000203473150108 -3.14514633017e+11 +UniRef50_H4EPB9 7.28156244633e-05 2.53510505022e-05 -19162030963.9 +UniRef50_UPI00046D45A2 hypothetical protein 7.41324548199e-06 0.000222481318952 86825620441.9 +UniRef50_UPI00047D5506 hypothetical protein 6.01104862865e-05 1.37015801647e-05 -18735844902.7 +UniRef50_W1MTL3 0.00107876667732 0.000385455424858 -2.79898260505e+11 +UniRef50_U5S0M7 Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein 0.000669918486442 0.000715373051998 18350565905.2 +UniRef50_W7VQA0 0.00140555984924 0.000781046212398 -2.52123818837e+11 +UniRef50_UPI000377C3F1 resolvase 0.000113212928966 2.60393643897e-05 -35193037759.4 +UniRef50_Q9ZMY3 RNA polymerase sigma factor RpoD 0.000345497038117 0.00291801703149 1.03855788969e+12 +UniRef50_P46450 Long chain fatty acid CoA ligase 0.000939180578539 0.00701150887057 2.45147344734e+12 +UniRef50_A4JN97 0.00160424906864 0.000767690581897 -3.37728926825e+11 +UniRef50_A6FSV8 0.000139876655356 0.000130160823173 -3922400678.95 +UniRef50_UPI0004279983 hypothetical protein 3.67917922461e-06 7.26875706296e-06 1449156622.42 +UniRef50_A7X0H4 Argininosuccinate lyase 0.0117212605862 0.00250056503979 -3.72250794274e+12 +UniRef50_Q9I1V0 Glycogen synthase 0.000407735096774 0.000254176614783 -61993443554.2 +UniRef50_Q5HMZ9 0.00884548794109 0.00335199617572 -2.2177900384e+12 +UniRef50_W4U346 DeoR family transcriptional regulator 1.13204102724e-05 4.47881573567e-05 13511340193.4 +UniRef50_R7AGH6 M42 glutamyl aminopeptidase 0.000433405071934 0.000746332107514 1.2633248431e+11 +UniRef50_G0P7V6 5.77902730311e-06 3.8321928354e-06 -785960964.96 +UniRef50_P14081 Selenocysteine specific elongation factor 0.00307511351861 0.00108050685201 -8.05247187883e+11 +UniRef50_I6TYL9 0.00549049537977 0.00177108757975 -1.50157057113e+12 +UniRef50_UPI0003D073EE PREDICTED 4.77159757469e-05 8.28974042425e-05 14203174408.3 +UniRef50_P39755 Probable NADH quinone oxidoreductase subunit 5 0.0206132666973 0.0051755362641 -6.23240121814e+12 +UniRef50_UPI000347DE5C hypothetical protein 1.48289786683e-05 0.000198449184087 74129730201.0 +UniRef50_UPI0003D31A3C ABC type dipeptide oligopeptide nickel transport systems 0.000306841023033 6.42854944311e-05 -97922643387.7 +UniRef50_U6A643 Nicotinamidase family protein YcaC 0.000387165116772 0.00426859035205 1.56697899793e+12 +UniRef50_B2ILL9 Acetyl CoA carboxylase, biotin carboxylase 0.000266728620143 0.00811163231694 3.16708389019e+12 +UniRef50_UPI0001E8EA99 phospho N acetylmuramoyl pentapeptide transferase 6.62080952606e-06 1.45888631213e-05 3216801015.41 +UniRef50_Q02CU2 NADH quinone oxidoreductase subunit A 6.99487687194e-05 0.000101830225562 12870935356.8 +UniRef50_Q2SKM8 ABC type multidrug transport system, permease component 0.000944425537599 0.000206756152991 -2.97806182788e+11 +UniRef50_A5WCU0 D alanine D alanine ligase 7.04444012695e-06 0.0065885560069 2.65703698373e+12 +UniRef50_A0A024HNL0 Diguanylate cyclase 4.05143560939e-06 3.43072804711e-05 12214655851.6 +UniRef50_I1ZKL5 Pseudouridine synthase 0.00638055860822 0.0101266352365 1.51233710437e+12 +UniRef50_Z7MRV5 EAL domain protein 8.52802165753e-06 7.98820009254e-05 28806477042.2 +UniRef50_UPI000471D234 hypothetical protein 6.49560312737e-06 2.53911563829e-05 7628366723.76 +UniRef50_UPI0003D05F43 hypothetical protein 8.29706154929e-05 0.000531761810539 1.81182512727e+11 +UniRef50_Q5YYN2 Prolipoprotein diacylglyceryl transferase 5.2166377034e-06 2.09813023488e-05 6364388571.54 +UniRef50_UPI00035D1759 DNA invertase 6.23891323779e-05 5.58853861582e-05 -2625642158.83 +UniRef50_P74193 Threonine synthase 0.0171966409042 0.0148887435881 -9.31726467594e+11 +UniRef50_UPI000409380C orotidine 5 phosphate decarboxylase 5.9463045832e-06 1.49168702931e-05 3621527458.31 +UniRef50_Q99WV0 Glycyl glycine endopeptidase LytM 0.0124148092938 0.00190392494214 -4.24337299584e+12 +UniRef50_P64427 UPF0748 lipoprotein YddW 0.00176247697209 0.000155566306503 -6.4872955471e+11 +UniRef50_Q5LLU6 50S ribosomal protein L3 0.00890530689748 0.0040670688692 -1.95325606387e+12 +UniRef50_P54452 0.0239797302527 0.00836967941145 -6.3019690815e+12 +UniRef50_UPI000262729B diguanylate cyclase 1.32497692275e-05 9.32520815207e-06 -1584393465.93 +UniRef50_UPI0003029904 hypothetical protein 1.46632997847e-05 3.12985779494e-05 6715865932.91 +UniRef50_A0A022G9Q8 0.000378118168027 0.000181964720127 -79189553990.7 +UniRef50_Q9ZLB9 Probable L asparaginase 0.00025679318969 0.00339785519996 1.26808527871e+12 +UniRef50_C3PF03 Bifunctional purine biosynthesis protein PurH 3.33090273918e-06 2.10543918866e-05 7155190060.47 +UniRef50_D9PXM6 Predicted serine threonine protein kinase 0.00106585281482 0.00211625124959 4.24058737955e+11 +UniRef50_P77735 0.00346603896349 0.00126457590845 -8.88757650309e+11 +UniRef50_G8VB53 Amino acid permease 0.000324446809098 0.00372422486106 1.37253211954e+12 +UniRef50_Q2P0U3 Tryptophan synthase alpha chain 1.61264990198e-05 3.56779987997e-05 7893180385.03 +UniRef50_L1FI55 Citrate carrier 0.00192866308867 0.000445499117303 -5.98771495711e+11 +UniRef50_Q0FMS9 0.00153034860346 0.000930435885393 -2.42192126041e+11 +UniRef50_T1Y8E9 2 oxoacid ferredoxin oxidoreductase, alpha subunit 0.0198602005341 0.003277275121 -6.69473048465e+12 +UniRef50_A5UJE2 0.00248787035764 0.00277295820046 1.15093460568e+11 +UniRef50_UPI000474A3E0 transcriptional regulator 7.40912305188e-06 0.00012568434344 47749157870.8 +UniRef50_W5VFG0 0.00500866852388 0.0028685024806 -8.64011294463e+11 +UniRef50_Q04661 Tyrosine protein phosphatase CpsB 0.000158607558343 0.00414148094738 1.60793486251e+12 +UniRef50_J8RX83 Thioesterase family protein 0.000142626947925 2.37146561462e-05 -48006351409.1 +UniRef50_D3A297 9.48090552991e-05 0.000259666475798 66554963683.5 +UniRef50_B9E8V3 Putative septation protein SpoVG 0.00402749747522 0.00926232168594 2.11336277238e+12 +UniRef50_X2M604 7.36797636035e-05 0.000160207977501 34932501771.0 +UniRef50_UPI00046A9133 hypothetical protein 1.41482857487e-05 9.01894795478e-06 -2070776611.46 +UniRef50_UPI000375D747 cold shock protein 2.07195172502e-05 1.33807533173e-05 -2962749056.47 +UniRef50_R6JIT7 0.0196303988558 0.00590671668225 -5.540418902e+12 +UniRef50_UPI00036CC3FF hypothetical protein 4.16752659457e-05 5.95286567939e-05 7207632971.16 +UniRef50_F6CST0 Peroxiredoxin 0.00123078383155 0.00132206999562 36853344642.3 +UniRef50_Q7MU77 Phosphoglycerate kinase 5.22437976361e-06 0.00479080225146 1.93199651245e+12 +UniRef50_A5FWQ8 Fructose 1,6 bisphosphatase class 1 3.82220601129e-05 2.64084401867e-05 -4769303333.63 +UniRef50_Q4L8W8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.021539143469 0.00800008620146 -5.46588356181e+12 +UniRef50_Q8A883 Spermidine putrescine import ATP binding protein PotA 8.08585898108e-05 0.00580272971393 2.30998958806e+12 +UniRef50_UPI000409F09E hypothetical protein 4.01551425785e-06 5.30661169585e-06 521231879.268 +UniRef50_D2JLI1 Conjugal transfer protein, putative 0.0123358784789 0.00312583087785 -3.71820923654e+12 +UniRef50_M9SAS9 Transcriptional regulator 0.000553112996021 0.000271763839138 -1.13584107176e+11 +UniRef50_A0A011ME20 2.52762134088e-05 0.000382253627912 1.4411616284e+11 +UniRef50_Q3J233 0.0119113447684 0.00475681591974 -2.88837109215e+12 +UniRef50_B7N3F3 Chaperone protein TorD 0.00522173509315 0.00266647443365 -1.03159008481e+12 +UniRef50_UPI00047D14F9 hypothetical protein 4.50993869057e-06 6.95645994845e-06 987690653.998 +UniRef50_Q63QK7 Arginine biosynthesis bifunctional protein ArgJ 0.000287587800444 0.0135742045261 5.36397021729e+12 +UniRef50_D6T8U6 0.0110219587789 0.00126474873508 -3.93910542912e+12 +UniRef50_M4V953 4.69207520079e-06 8.32937711656e-06 1468423418.11 +UniRef50_E8ZZL4 EtfB protein 0.000236915892584 0.00364592574369 1.37625911015e+12 +UniRef50_H1QUK8 8.55626286146e-05 6.94085024983e-05 -6521618946.57 +UniRef50_UPI00036C1506 hypothetical protein 4.08143320466e-05 3.53341976536e-05 -2212397503.27 +UniRef50_UPI0003945D12 PREDICTED 1.30451569939e-05 8.04623183622e-06 -2018127429.87 +UniRef50_G7DIA2 9.74015453895e-05 8.34897140595e-05 -5616377025.29 +UniRef50_Q2P4Y9 Coenzyme PQQ synthesis protein E 0.00175926292942 0.000174228144654 -6.39897993176e+11 +UniRef50_UPI0004184600 GTP pyrophosphokinase 2.65559882458e-06 1.77088068155e-05 6077164789.56 +UniRef50_A6QIK9 0.00643768430981 0.00270767554157 -1.50585031209e+12 +UniRef50_P45627 Glutamine synthetase 5.18456172615e-06 0.0012002902599 4.82478835947e+11 +UniRef50_B2T5I0 Ribonuclease HII 2.18466481345e-05 9.19637160294e-06 -5107071872.16 +UniRef50_UPI00036856CA hypothetical protein 0.00027386493518 4.80139875405e-05 -91178799064.7 +UniRef50_R7M1V7 DEAD DEAH box helicase domain protein 0.000666095097609 0.00236650721688 6.86477238952e+11 +UniRef50_H1BUU0 Inner membrane metabolite transporter ygcS 0.00262683084276 0.00138244233851 -5.0237490953e+11 +UniRef50_J7QJW8 0.000125745658831 0.000184889009233 23876896327.8 +UniRef50_K5GQ46 0.00111966198608 0.00010854187655 -4.08201596056e+11 +UniRef50_A6LYI1 0.00060317442049 0.000411113742723 -77537252464.1 +UniRef50_UPI0003EC3EE0 PREDICTED 1.65961049793e-05 0.000141962838917 50612088913.6 +UniRef50_A0A014I7A1 Pyridine nucleotide disulfide oxidoreductase family protein 0.000135265622063 0.00035110911428 87138666505.5 +UniRef50_Q5HNI2 Aminotransferase, class V 0.0164863780619 0.00587086214606 -4.28561404224e+12 +UniRef50_X2H2G3 RND efflux system, outer membrane lipoprotein CmeC 0.000196035806721 0.00243418162646 9.03566932567e+11 +UniRef50_A0R5R7 Putative aminotransferase MSMEG_6286 MSMEI_6121 0.000279278289246 0.00503858320069 1.92138979599e+12 +UniRef50_A6LWI0 GCN5 related N acetyltransferase 0.000150592814697 0.00046334784557 1.26263043899e+11 +UniRef50_A6LPV1 TPR repeat containing protein 0.000409207252008 0.000235000030651 -70329593024.8 +UniRef50_Q8CWR9 30S Ribosomal protein S1 0.004909127607 0.00507423977484 66657808311.2 +UniRef50_UPI0003A07669 hypothetical protein 2.06629740203e-05 0.000248933166937 92155478070.9 +UniRef50_D3E2P3 2 phospho L lactate guanylyltransferase 0.00172021417878 0.00238968223095 2.70272467958e+11 +UniRef50_B9KPQ3 0.00494509457258 0.000385755698885 -1.84066105269e+12 +UniRef50_T0TBW3 Late competence protein ComGD 2.28759285352e-05 2.85739526563e-05 2300362260.31 +UniRef50_A7AK72 3.44063939853e-05 0.0001989991499 66448115343.1 +UniRef50_D4FM51 Plasmid recombination enzyme 0.240102320308 0.0660335100375 -7.02737147705e+13 +UniRef50_Q9RRA3 0.00124788756646 0.013878437658 5.09910806622e+12 +UniRef50_B7H011 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000475820556097 0.00639284500169 2.38877537874e+12 +UniRef50_Q9Z3R5 Alpha glucosides binding periplasmic protein AglE 0.0123909599914 0.00226435783225 -4.08823355905e+12 +UniRef50_UPI0002558932 hypothetical protein 9.60562720262e-05 4.55910656136e-05 -20373423106.5 +UniRef50_UPI00036947AC hypothetical protein 1.54268043047e-05 1.38998641816e-05 -616444465.358 +UniRef50_UPI000329BBE6 PREDICTED 3.46071572661e-05 4.37339130431e-06 -12205742328.8 +UniRef50_A4WS76 Multi sensor signal transduction histidine kinase 0.00435282231411 0.00144453862634 -1.17410981341e+12 +UniRef50_UPI000363EF1A hypothetical protein 2.0230960003e-06 2.05139470601e-06 11424534.7593 +UniRef50_A6CJT6 1.92164955045e-05 0.000162885354401 58000881351.9 +UniRef50_UPI00028868C0 ribonucleotide diphosphate reductase subunit beta 0.000143104370948 0.00245520790807 9.33424570636e+11 +UniRef50_Q39RR0 Peptidyl tRNA hydrolase 2.48340452411e-05 2.54769220243e-05 259537246.363 +UniRef50_W4U5J7 Hypothetical radical SAM family enzyme 2.54747923368e-05 0.000229745583095 82466624913.5 +UniRef50_Q3C148 DNA repair and recombination protein 0.000307369899816 0.000312039484729 1885168731.63 +UniRef50_UPI0002885658 3 hydroxyacyl CoA dehydrogenase 7.49944571364e-06 6.16964778192e-05 21880006933.4 +UniRef50_Q46078 Pyruvate kinase 4.10722507528e-06 1.46519114423e-05 4257019284.21 +UniRef50_Q2J2E9 sn glycerol 3 phosphate import ATP binding protein UgpC 7.42127560666e-05 6.93997617146e-05 -1943064881.98 +UniRef50_Q7WF76 Putative Holliday junction resolvase 2.98719514976e-05 2.05217218392e-05 -3774802453.32 +UniRef50_M4YXX5 Glycosyl hydrolase, family 3 0.000612076421126 0.000100676149502 -2.06458565242e+11 +UniRef50_UPI00034F86F8 PREDICTED 0.00036472076218 0.000136301410845 -92215695154.6 +UniRef50_Q58493 0.00390209051187 0.000744952766978 -1.27457525005e+12 +UniRef50_A4WTJ0 0.0001581635 7.80656323595e-05 -32336492077.8 +UniRef50_P0A9T4 Protein tas 0.00322141072683 0.00951298081662 2.5399840515e+12 +UniRef50_U6FW85 0.000636001215368 0.00076156012448 50689672389.6 +UniRef50_B7UZW2 Ecotin 0.00210753622359 0.000580562715609 -6.16457943244e+11 +UniRef50_UPI0004782022 peptide ABC transporter permease 1.57498051211e-05 1.49573783599e-05 -319912407.666 +UniRef50_H8DHC5 ATP dependent OLD family endonuclease 0.00365791904567 0.00242597264769 -4.97351878547e+11 +UniRef50_I0HUP6 Diguanylate cyclase 3.15710943184e-06 4.31775296905e-05 16156734764.2 +UniRef50_D2BL86 Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase 0.00382885290478 0.00226008180602 -6.33332143556e+11 +UniRef50_Q8XP36 UPF0324 membrane protein CPE0129 0.000454286268022 0.00201433866532 6.29812296786e+11 +UniRef50_C6DHE2 UDP N acetyl D mannosaminuronic acid transferase 0.00329855186385 0.000479217720496 -1.13819979079e+12 +UniRef50_J2FLN3 Alcohol dehydrogenase Adh4 0.000577784676811 0.00266263900478 8.41681276241e+11 +UniRef50_UPI000225FA9C ABC transporter related protein, partial 4.04390984072e-05 1.55620113355e-05 -10043185327.0 +UniRef50_UPI0003B37CEF hypothetical protein 5.36775258869e-05 1.95722761396e-05 -13768707841.5 +UniRef50_Q8DUK9 7 carboxy 7 deazaguanine synthase 0.00486054989841 0.00150801556633 -1.35345925008e+12 +UniRef50_Q0FEK0 4.80649975142e-05 1.02757762974e-05 -15255972331.1 +UniRef50_Q1BY14 Methionine import ATP binding protein MetN 1 4.78332482471e-06 1.24888941271e-05 3110832885.34 +UniRef50_UPI0003016AD5 hypothetical protein 8.81693766339e-06 5.1040721061e-06 -1498929387.46 +UniRef50_K0B0R4 Para aminobenzoate synthase component 1 8.72463764734e-05 0.000800660411786 2.88014000631e+11 +UniRef50_F0DCU8 7.83947972266e-05 3.19259254101e-05 -18760053789.5 +UniRef50_A8LPC9 Endoribonuclease L PSP 0.000470455168012 0.000221510019484 -1.00502211361e+11 +UniRef50_T9QA68 Adhesin invasin 0.000182594781991 0.000230611542828 19384955581.8 +UniRef50_Q9ZI33 Ribulose bisphosphate carboxylase small chain 0.00803583869336 0.000572765435544 -3.01293425639e+12 +UniRef50_Q5H5Y6 Phenol hydroxylase 1.13173389672e-05 0.000173418600772 65442268596.9 +UniRef50_C6SPE5 0.00319907264003 0.000777149224201 -9.77760203313e+11 +UniRef50_I6Z3X6 0.00202968843911 3.3002896435e-05 -8.06086455667e+11 +UniRef50_F3ZHG8 Putative zinc binding oxidoreductase 0.00010740760634 0.000199189901464 37053638837.0 +UniRef50_Q9CIR1 tRNA N6 adenosine threonylcarbamoyltransferase 1.51396572322e-05 4.18550408913e-06 -4422326046.44 +UniRef50_A1WG08 Binding protein dependent transport systems inner membrane component 0.00229928496834 0.00109443493432 -4.86412743906e+11 +UniRef50_B7GYQ7 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.000993258212345 0.00757204158262 2.65593557733e+12 +UniRef50_C3KT41 D isomer specific 2 hydroxyacid dehydrogenase family protein 0.000134656119687 0.00122836599102 4.41544096385e+11 +UniRef50_D5ASZ5 Flagellar basal body associated protein FliL 2 0.00698407376846 0.000348799258104 -2.67874174381e+12 +UniRef50_UPI0004636BA5 DNA repair protein 3.82769862948e-06 3.74479619542e-06 -33468729.9573 +UniRef50_N2UKS8 Electron transfer flavodomain protein 0.00364892438374 0.000728142626337 -1.17915543749e+12 +UniRef50_G7VQ62 Dehydrogenase 0.000446383790597 0.00161146937431 4.70359347352e+11 +UniRef50_UPI0003AF9315 PREDICTED 2.4760991295e-06 1.75642186049e-05 6091258984.27 +UniRef50_Q03027 Alkaline protease secretion protein AprF 0.000243106414525 0.000366698694133 49895719925.6 +UniRef50_P50939 NADH quinone oxidoreductase subunit L 0.00921382484706 0.00207187908037 -2.88329114754e+12 +UniRef50_F2KIT5 Glycine betaine ABC transporter, ATP binding component 0.0112604217102 0.00533058238626 -2.39394890239e+12 +UniRef50_Q89P06 Blr3677 protein 0.0126741799096 0.00409077981821 -3.46522394706e+12 +UniRef50_D6FNR4 5.54683132424e-05 2.41601509524e-06 -21417863786.9 +UniRef50_A8AY63 Membrane protein, putative 0.00665838492907 0.00102743141551 -2.27328503299e+12 +UniRef50_A0A023RYQ0 0.000331560432068 0.00613921131723 2.34461993023e+12 +UniRef50_S6BF09 ATP dependent DNA helicase RecQ 0.000948887703246 9.07270983708e-05 -3.46449967003e+11 +UniRef50_UPI00034547F6 hypothetical protein 6.62139703393e-06 1.1325869155e-05 1899253125.64 +UniRef50_C4K0T2 Queuine tRNA ribosyltransferase 5.56987846554e-06 1.60754334432e-05 4241221462.15 +UniRef50_P76045 Outer membrane protein G 0.00286948503479 0.000796876361409 -8.36737555212e+11 +UniRef50_Q87WZ6 MutT nudix family protein 0.000791368862338 0.000303927998483 -1.9678585831e+11 +UniRef50_B2S8A9 Nicotinate phosphoribosyltransferase 0.00587895368077 0.0016896042043 -1.69129179275e+12 +UniRef50_F7X314 Phage major capsid protein, HK97 family 0.0101520557457 0.00143571977989 -3.51889179087e+12 +UniRef50_F0VY37 PTS system, beta glucosides specific IIA component 0.00567315879734 0.00270948350905 -1.19647208227e+12 +UniRef50_B8ZUM2 S adenosylmethionine synthase 3.84847036829e-05 0.000474096272763 1.75861735993e+11 +UniRef50_B7LN16 Ribosomal protein S6 L glutamate ligase 0.00227782588061 0.00183060678154 -1.8054783829e+11 +UniRef50_B0VE73 0.000285459560716 0.00767900298141 2.98486420791e+12 +UniRef50_U1FWN3 Putative glucoamylase S1 S2 2.22724625107e-05 0.000218009940572 79021621862.2 +UniRef50_G9AFA8 Sugar ABC transporter, ATP binding protein 0.000696435768328 0.000116649126482 -2.34066982095e+11 +UniRef50_UPI00041E0388 hypothetical protein 2.01972134237e-05 9.63787431796e-06 -4262934774.63 +UniRef50_B8J249 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.34033495984e-05 4.5339372661e-05 12892964409.4 +UniRef50_Q9RV43 0.000831749761635 0.0323108680729 1.27085063545e+13 +UniRef50_E4PJS6 5.19306913542e-06 1.23305304199e-05 2881480707.04 +UniRef50_M1MMU0 Amino acid ABC transporter substrate binding protein, PAAT family 0.00167788350834 0.00143364479164 -98602167077.9 +UniRef50_P42407 Putative UTP glucose 1 phosphate uridylyltransferase 9.87933817892e-05 6.23100114394e-05 -14728784311.5 +UniRef50_O86422 UDP glucose 6 dehydrogenase 2.77401116628e-06 0.000270624343531 1.08134466069e+11 +UniRef50_H5YG53 N terminal double transmembrane domain containing protein 1.12854843854e-06 1.99982062614e-06 351743273.846 +UniRef50_Q1CXY2 0.00104962070547 2.65041967582e-05 -4.13044689618e+11 +UniRef50_X4YWC2 7.73206701881e-06 2.04282594886e-05 5125608699.86 +UniRef50_P07769 Benzoate 1,2 dioxygenase subunit alpha 0.000490798519983 0.00912964140078 3.4876068815e+12 +UniRef50_O30826 Superoxide dismutase [Mn] 0.00126235748581 0.00695113265559 2.29662834516e+12 +UniRef50_P58362 Trimethylamine N oxide reductase 2 0.000891613326797 0.000297374549075 -2.39901486696e+11 +UniRef50_A4VYI2 Transcription repair coupling factor 0.000521069885137 5.07417019289e-05 -1.89877259137e+11 +UniRef50_Q81QB6 Methylmalonate semialdehyde dehydrogenase [acylating] 2 1.35149002753e-05 0.00428298221083 1.72363634552e+12 +UniRef50_F4GAH1 Transposase IS4 family protein 0.000748197907821 3.98182635472e-05 -2.85981555189e+11 +UniRef50_K0S0E9 3.22227152755e-06 1.1041515421e-05 3156724712.7 +UniRef50_J0YAZ5 0.000943714972126 0.000112537289145 -3.35556630317e+11 +UniRef50_P46561 ATP synthase subunit beta, mitochondrial 1.88796007539e-05 1.67017945757e-05 -879207078.826 +UniRef50_W4TMC7 9.6666693449e-06 0.000260132555142 1.01116151658e+11 +UniRef50_D3QC48 Glycerophosphoryl diester phosphodiesterase 0.00819854319724 0.00313345987695 -2.04483629196e+12 +UniRef50_UPI0003EC2A72 PREDICTED 1.943127028e-05 1.03059774686e-05 -3683992687.9 +UniRef50_V7ZEH0 ABC transporter permease and ATP binding protein 0.00498199210856 0.0016058858543 -1.36297552433e+12 +UniRef50_A0A017HVI0 Mobile element protein 2.48892011534e-05 7.10630492633e-06 -7179173427.56 +UniRef50_UPI00046E240D PREDICTED 6.26010721355e-06 6.8202529925e-05 25006916167.6 +UniRef50_A6LU76 0.000108994991968 0.00144734949684 5.40310137073e+11 +UniRef50_T5XQY7 Membrane protein 0.00134223008634 0.000112430217714 -4.96485298307e+11 +UniRef50_P0ADS0 LOG family protein YgdH 0.00335978591208 0.000406592361637 -1.19224047607e+12 +UniRef50_Q9HI36 Major exported protein 0.000481006234789 0.000345399655201 -54746040259.5 +UniRef50_D2NU09 6.33454757134e-06 6.02303815742e-05 21758409563.2 +UniRef50_D9RIX1 0.000300502717536 0.000220408171759 -32335151000.8 +UniRef50_UPI000419A0DE hypothetical protein 4.7369935798e-06 9.2212428451e-06 1810346456.33 +UniRef50_A6L050 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.00475359888e-05 0.00626266337721 2.52425774333e+12 +UniRef50_UPI0002E5C3C1 hypothetical protein 4.36628745523e-05 9.57003068738e-05 21008149999.3 +UniRef50_Q03KT7 Dihydroorotate dehydrogenase B ), electron transfer subunit 0.0056163042561 0.0027594789636 -1.15333542777e+12 +UniRef50_Q5HKN3 Acetyltransferase, GNAT family 0.0195241026204 0.00568079280125 -5.58871405049e+12 +UniRef50_F2EDX4 Predicted protein 6.66180020111e-06 1.93469623516e-05 5121155624.6 +UniRef50_UPI00036EAACB hypothetical protein 0.000297908085549 0.000995449568075 2.81606056292e+11 +UniRef50_UPI000441BADB PREDICTED 1.6202714075e-05 2.76286544791e-05 4612792353.19 +UniRef50_P37631 0.0023970278766 0.00306671512104 2.70360958567e+11 +UniRef50_UPI00036F2919 hypothetical protein 1.76312314451e-05 1.85725749019e-05 380031905.093 +UniRef50_P80521 Pyruvate synthase subunit PorA 0.00476276083121 0.00169305634929 -1.23927736886e+12 +UniRef50_G7U8S0 CoA transferase family III 0.000961759036027 0.0061183082032 2.08176217676e+12 +UniRef50_Q6F964 0.000130317372447 0.00557526767679 2.19819325492e+12 +UniRef50_F0P513 Replication initiation protein, truncated 0.000155014365938 6.5408497528e-05 -36174988664.8 +UniRef50_Q2RN85 Uroporphyrinogen decarboxylase 7.34158177522e-06 2.37978976802e-05 6643616672.55 +UniRef50_F3Z4V2 8.71622374851e-05 4.35384635348e-05 -17611452867.6 +UniRef50_U5NRR7 0.0178701955913 0.00435807404342 -5.45500928126e+12 +UniRef50_B2UNA2 Dihydroorotate dehydrogenase 8.24979655317e-06 0.00661451815751 2.66703160535e+12 +UniRef50_A5V4D5 2.1633631885e-05 2.20348044488e-05 161958286.947 +UniRef50_UPI00040B6C97 hypothetical protein 2.81612700626e-06 5.17388827095e-06 951857155.54 +UniRef50_Q4L7R6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0129153798986 0.00188978133068 -4.45116944117e+12 +UniRef50_C8NS74 Formamidopyrimidine DNA glycosylase H2TH domain protein 0.000196607285859 0.00812714584714 3.20165573584e+12 +UniRef50_UPI0003B44FF8 N acetylglucosamine 1 phosphate uridyltransferase, partial 1.44931641581e-05 8.72975360197e-06 -2326759566.51 +UniRef50_Q0FP15 ABC peptide transporter, inner membrane subunit 0.0012957576308 0.000529431418181 -3.09375295914e+11 +UniRef50_W8QUX6 Transcriptional regulator PdhR 0.000744714257679 0.000503687953156 -97305276861.3 +UniRef50_V5ESH7 4.93068535137e-06 0.000314797489609 1.25097031372e+11 +UniRef50_F9Y7Q5 Carbonic anhydrase 0.0195187590679 0.0012758348223 -7.3648923838e+12 +UniRef50_K0K6Y3 1.96883294732e-05 2.51794637945e-05 2216838309.3 +UniRef50_P0AEX3 Alpha ketoglutarate permease 0.00292871950988 0.00541792867589 1.00492428635e+12 +UniRef50_M1XFP7 0.000118042719085 0.000606372868261 1.97144873707e+11 +UniRef50_R4GHV6 7.05271752157e-05 0.000119155509215 19631855172.3 +UniRef50_UPI000374C07B hypothetical protein, partial 3.47340689879e-05 1.63003801997e-05 -7441906370.6 +UniRef50_A5IQH4 Phage integrase family protein 0.00796668772165 0.00464112046482 -1.34257231088e+12 +UniRef50_Q8DND7 0.00745880730675 0.000950408473414 -2.62752047605e+12 +UniRef50_C3KNX2 0.000200396216705 0.000124352586522 -30699746665.2 +UniRef50_UPI0003DEB94F PREDICTED 6.29944425082e-06 8.0295191492e-06 698452466.882 +UniRef50_D2VIA9 Predicted protein 8.63375220039e-05 0.00018081824869 38143028772.1 +UniRef50_O34599 Putative cysteine desulfurase IscS 1 9.74178797707e-06 0.000881061934195 3.51762635329e+11 +UniRef50_UPI0002558DCB heat shock protein HSP33 2.15857936444e-05 2.0035748238e-05 -625772351.76 +UniRef50_B1XYL1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.00368459714855 0.00031474998002 -1.36044865461e+12 +UniRef50_B1MLZ3 Ribonuclease PH 0.001265649655 2.21303801448e-05 -5.02023990958e+11 +UniRef50_A6LWJ3 Leucyl phenylalanyl tRNA protein transferase 0.00147404339564 0.000770391404865 -2.84072943457e+11 +UniRef50_Q9RU74 Ketol acid reductoisomerase 0.0345635300434 0.0356633327832 4.44003862155e+11 +UniRef50_UPI00045E0C55 PREDICTED 9.18811302645e-06 3.81662388165e-05 11698824983.1 +UniRef50_UPI0003B5B300 preprotein translocase subunit TatA 8.32311736754e-05 4.69820677701e-05 -14634208880.5 +UniRef50_Q5HLM4 Acetyltransferase, GNAT family 0.0122964494695 0.00133223057407 -4.42638971417e+12 +UniRef50_Q7VRS2 GMP synthase [glutamine hydrolyzing] 5.85095789624e-06 1.87342324122e-05 5201136017.67 +UniRef50_A7ZIS2 0.00024057403108 6.34175550613e-05 -71520243323.3 +UniRef50_UPI00035E4867 hypothetical protein 6.04793029774e-05 1.11856354779e-05 -19900458470.9 +UniRef50_P72097 CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase 0.000141380520171 0.0044268424835 1.73009358313e+12 +UniRef50_A6LXH9 NHL repeat containing protein 9.29768445451e-05 0.00087280270583 3.1482526974e+11 +UniRef50_UPI0004721624 malate dehydrogenase, partial 6.81315371794e-05 3.56775277755e-05 -13102081851.8 +UniRef50_Q7MUV7 Lysine tRNA ligase 0.000643565679842 0.00544020543667 1.93646233122e+12 +UniRef50_Q8VNN2 Beta galactosidase 0.00282343659554 0.00109666103591 -6.97120483342e+11 +UniRef50_Q3IV38 0.0153032259772 0.00253890594903 -5.15311263121e+12 +UniRef50_P63858 Capsular polysaccharide biosynthesis protein CapA 0.0101339182863 0.00111417183229 -3.64138232822e+12 +UniRef50_UPI000347E827 3 beta hydroxysteroid dehydrogenase 7.21531759285e-06 4.32703889925e-05 14555874769.5 +UniRef50_C2DDU8 Putative L xylulose 5 phosphate 3 epimerase 8.76998914849e-05 2.11702670564e-05 -26858825792.1 +UniRef50_UPI000365187A chromosome partitioning protein ParA, partial 0.000569845787601 0.000154800056222 -1.67559054942e+11 +UniRef50_UPI00046F371B chorismate synthase 1.51307463395e-05 0.00016949091412 62317093945.5 +UniRef50_B7GWT8 Ribosomal RNA small subunit methyltransferase C 0.000355815146342 0.00638547615168 2.43424814012e+12 +UniRef50_UPI0003EE05C6 PREDICTED 1.29706877245e-05 1.87376025664e-05 2328174289.68 +UniRef50_X3EN79 0.000607383470784 0.000711606518538 42076123338.9 +UniRef50_UPI00047A30AA hypothetical protein 0.000733331025094 0.000162708928474 -2.30367142726e+11 +UniRef50_Q1C1E1 Glucose 1 phosphate adenylyltransferase 0.0146105118213 0.00280394115917 -4.7664574592e+12 +UniRef50_UPI00036C8CDE hypothetical protein 0.00209310138369 0.000490213643435 -6.47105450383e+11 +UniRef50_UPI00037C3A9D hypothetical protein, partial 7.1749049923e-07 5.25935869592e-07 -77332954.6245 +UniRef50_UPI0003C11566 PREDICTED 0.000507628667435 0.000616714956331 44039473466.6 +UniRef50_UPI00040E5729 ABC transporter 7.13162582353e-06 0.000107823965266 40650733066.7 +UniRef50_X1PNE8 Marine sediment metagenome DNA, contig 3.43854112944e-05 6.74345318944e-05 13342335544.5 +UniRef50_G7MAQ1 Membrane bound O acyl transferase MBOAT family protein 0.000103704941998 0.00102623323107 3.72435990994e+11 +UniRef50_Q7W8T4 Peptide chain release factor 2 0.00391579861939 0.0140551801167 4.09339273466e+12 +UniRef50_A7WYY0 Molecular chaperone Hsp31 and glyoxalase 3 0.0119154523855 0.0108137618934 -4.44765970923e+11 +UniRef50_UPI000421D154 hypothetical protein 2.04316553362e-06 2.60813903017e-06 228086733.562 +UniRef50_UPI000412790F hypothetical protein 4.11239513658e-05 7.31339895527e-06 -13649734910.3 +UniRef50_U9X3Y3 Rhamnan synthesis protein F domain protein 3.74385527953e-05 6.92212407108e-05 12831061128.9 +UniRef50_U5MVV7 HTH type transcriptional regulator YybE 0.000301576958057 0.00211714282057 7.32966218194e+11 +UniRef50_A7IIB6 Dihydrodipicolinate synthetase 0.000340613114707 0.000193650298495 -59330692341.3 +UniRef50_C5CFW2 UDP N acetylglucosamine 1 carboxyvinyltransferase 7.66293856835e-06 2.66349645368e-05 7659239696.38 +UniRef50_UPI00042449ED hypothetical protein 3.57504886523e-06 4.40591584425e-06 335431195.315 +UniRef50_C7C7I3 0.00706909805164 0.00133281873626 -2.31580635168e+12 +UniRef50_E8U7F9 Response regulator receiver protein 0.000227401198102 0.117670917672 4.74133887946e+13 +UniRef50_V0X9G6 dGTPase 0.00237612601739 0.000503066310752 -7.56177188598e+11 +UniRef50_B4F298 Fructose 1,6 bisphosphatase class 1 0.0031179689885 0.00259089780759 -2.12785103624e+11 +UniRef50_Q831F7 Release factor glutamine methyltransferase 8.94480009502e-06 0.000555729973354 2.20743884253e+11 +UniRef50_A3PFV7 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.00121434716993 9.90441716778e-05 -4.502615067e+11 +UniRef50_UPI0004746084 hypothetical protein 0.000246092734189 0.000555514176567 1.24917233316e+11 +UniRef50_UPI0003608471 hypothetical protein 1.41129241711e-05 2.23272824339e-05 3316237232.2 +UniRef50_Q5HH10 Phosphoribosylamine glycine ligase 0.0179634239187 0.00563114731999 -4.97869139695e+12 +UniRef50_A6WEY6 Carbamoyl phosphate synthase L chain ATP binding 7.44548301457e-05 0.00427397955166 1.69539966404e+12 +UniRef50_UPI0003F48E6E hypothetical protein TREMEDRAFT_44294 2.21180825112e-05 4.18100491019e-05 7949888560.27 +UniRef50_UPI00047B5729 hypothetical protein 2.22683159818e-05 2.59780853997e-05 1497679438.0 +UniRef50_P67129 UPF0053 inner membrane protein YgdQ 0.00341827803617 0.000746239122265 -1.07873489915e+12 +UniRef50_L2T6M0 Phenol hydroxylase 0.000112426538546 8.19981063315e-06 -42077609064.3 +UniRef50_Q49WG8 1,4 Dihydroxy 2 naphthoyl CoA synthase 6.90296991846e-05 2.99098170517e-05 -15793176472.0 +UniRef50_P44316 Diaminopimelate decarboxylase 1.11393716802e-05 0.00326164028778 1.31226710796e+12 +UniRef50_W4VJA0 PTS system 4.09727825416e-05 3.23332853973e-05 -3487871015.71 +UniRef50_UPI00046A542B hypothetical protein 6.42202537412e-06 4.06509540806e-05 13818638555.0 +UniRef50_UPI00037E6930 hypothetical protein 6.05608913533e-06 6.74768392549e-06 279205303.61 +UniRef50_C4L3Y8 Polyphosphate kinase 2.29918954698e-06 0.000151549774789 60254292772.8 +UniRef50_UPI0002002F71 hypothetical protein 0.000168159727512 2.91080135921e-05 -56136883265.9 +UniRef50_B9DKN5 Biotin synthase 0.0245126456752 0.00636023733733 -7.32835000111e+12 +UniRef50_F4A413 Transcriptional regulator 0.000517035759702 0.000208213893202 -1.24675177177e+11 +UniRef50_E3I461 Arsenical resistance protein 0.000142626947925 0.0120677017563 4.81429903727e+12 +UniRef50_UPI0003A6D827 sulfite oxidase 1.01200806686e-05 7.82739070587e-05 27514536055.2 +UniRef50_C9SSZ1 Oxidoreductase FAD NAD binding 5.01311429643e-05 1.32658248915e-05 -14882981294.3 +UniRef50_Q1GW15 0.000102624145099 5.76288639402e-05 -18165147158.0 +UniRef50_I1F5A5 1.39959896984e-05 7.55433985786e-06 -2600573088.56 +UniRef50_B8G5R5 Peptide deformylase 9.47820163591e-06 1.25462462496e-05 1238607259.69 +UniRef50_C6T9B8 0.000109541432732 5.2251204662e-05 -23128768102.0 +UniRef50_A6QEA3 0.0132291254386 0.00260674501126 -4.28838532977e+12 +UniRef50_Q05098 Ferric enterobactin receptor 0.00124647008613 0.00118438003259 -25066516544.7 +UniRef50_UPI0004792802 transcription antiterminator NusG 2.63086439452e-05 5.23383824546e-05 10508524857.1 +UniRef50_UPI0003F4A35E hypothetical protein TREMEDRAFT_74449 1.89351258361e-06 2.74200557878e-06 342547034.33 +UniRef50_Q7VIA9 Ribonuclease 3 6.21444178598e-06 0.00132849598711 5.33821286065e+11 +UniRef50_Q927P1 tRNA pseudouridine synthase A 7.43579762364e-06 0.00274548306196 1.10538328023e+12 +UniRef50_UPI00035A1EA0 PREDICTED 1.58781606928e-05 1.52564703525e-05 -250984019.377 +UniRef50_R2NN08 PemK family transcriptional regulator 0.00173388432926 0.00252917940354 3.21070380855e+11 +UniRef50_UPI00047C7F40 hypothetical protein 0.00562562701337 0.0023647063448 -1.3164736899e+12 +UniRef50_Q4JV62 4 hydroxy tetrahydrodipicolinate reductase 0.000355002497348 0.00672055018433 2.56984971529e+12 +UniRef50_F0E145 Hydrophobe amphiphile efflux 1 family protein (Fragment) 0.000589341537003 0.000294914266632 -1.18863902078e+11 +UniRef50_D9SR21 0.000237412571605 0.000372247947718 54434695952.9 +UniRef50_H5UVK0 4.26846650389e-05 2.81674891621e-05 -5860762047.25 +UniRef50_I3GYQ4 3.07148892466e-05 4.9425389992e-05 7553658754.58 +UniRef50_O31760 Ribonuclease J2 6.49331477975e-05 4.89756907145e-05 -6442221244.43 +UniRef50_I1EYN0 0.000328152899579 5.06670061103e-05 -1.12024460328e+11 +UniRef50_P00964 Glutamine synthetase 0.0131530285518 0.00382147249017 -3.76726369315e+12 +UniRef50_UPI0003490F7B hypothetical protein 1.14728637909e-05 6.1924361837e-06 -2131773423.16 +UniRef50_P54745 Heat responsive suppressor HrsA 0.00351697439169 0.000818838298675 -1.0892706506e+12 +UniRef50_Q9RVP6 Phosphoenolpyruvate carboxykinase [ATP] 1.03971711973e-05 0.044581085496 1.79937338206e+13 +UniRef50_A3PIK5 Putrescine binding periplasmic protein 0.0134480689331 0.00280411781676 -4.29709368162e+12 +UniRef50_Q8XBV3 Enterobactin synthase component E 0.00368344859595 0.0102789562906 2.66268739231e+12 +UniRef50_UPI00035FD10F hypothetical protein 0.000261102186081 0.000195226594638 -26594784650.0 +UniRef50_UPI0003743277 hypothetical protein 2.39073400293e-05 8.91157397248e-06 -6053974775.87 +UniRef50_U3QMM7 ABC transporter ATP binding protein 0.000140409629971 0.000304188330053 66119471013.8 +UniRef50_A9IQ26 0.00941456641079 0.00162520872735 -3.14465928297e+12 +UniRef50_Q9RZE6 Succinate semialdehyde dehydrogenase 0.000256230296385 0.0643787763394 2.58870587097e+13 +UniRef50_UPI00036FBC00 hypothetical protein 6.65587960894e-06 6.48869933759e-06 -67492727.0766 +UniRef50_H4HIB4 0.00514611612858 0.000715737239671 -1.78859832432e+12 +UniRef50_C8VZ79 Beta lactamase domain protein 0.000373748503814 0.0022048209743 7.39226426123e+11 +UniRef50_E6SKM4 Electron transfer flavoprotein alpha subunit 5.89571095904e-06 8.17876380729e-06 921696451.047 +UniRef50_P93306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2 2.91622736447e-05 2.34356359381e-05 -2311913915.9 +UniRef50_Q9KTJ5 Methionine import ATP binding protein MetN 9.12062034357e-06 1.00549448677e-05 377198275.843 +UniRef50_UPI0003769C5A hypothetical protein 8.04479105088e-06 1.60751300407e-05 3241946393.53 +UniRef50_UPI00039A55CB hypothetical protein 3.12469733653e-05 2.22286446993e-05 -3640809949.8 +UniRef50_W1FXV5 Iron uptake factor PiuC 0.000163962913269 8.78595552198e-05 -30723859537.7 +UniRef50_UPI00042A0F4E hypothetical protein 9.5583776e-05 2.15164812296e-05 -29901875806.7 +UniRef50_F0MZJ7 Lipopolysaccharide N acetylglucosaminyltransferase 0.000238857099643 0.00308676362059 1.14973481025e+12 +UniRef50_UPI0002BC466A hypothetical protein, partial 1.66856985306e-05 0.00021636836013 80614340869.3 +UniRef50_A7Z9P0 Cyclic pyranopterin monophosphate synthase 0.0144864843454 0.00162431299659 -5.1926164101e+12 +UniRef50_UPI0003626443 hypothetical protein, partial 6.41493409221e-06 7.25583475405e-06 339481916.196 +UniRef50_F4LW30 Galactitol specific enzyme IIC component of PTS 0.0159246353103 0.00468285717887 -4.53844378378e+12 +UniRef50_UPI0004724E83 hypothetical protein 1.86589141741e-05 0.00368351165259 1.4795460233e+12 +UniRef50_B5ZCH4 Sporulation domain protein 7.14277561963e-06 2.78937947192e-05 8377441054.15 +UniRef50_Q4L9C4 Putative pyruvate, phosphate dikinase regulatory protein 1 0.0140220294402 0.00418523288181 -3.97123548169e+12 +UniRef50_Q8DSC8 Ribonuclease HIII 0.00787490637491 0.00424435233857 -1.46569921638e+12 +UniRef50_UPI00035C68B7 hypothetical protein 7.74895755011e-06 1.9437431378e-05 4718780318.03 +UniRef50_R4VHN6 AzlC family protein 4.6241825768e-05 1.67570746735e-05 -11903355835.4 +UniRef50_Q88F11 0.000184566013681 0.000350302005361 66909653650.5 +UniRef50_F2N3V4 Peptide ABC transporter, periplasmic peptide binding protein 0.000138819999912 9.89335695768e-05 -16102641387.9 +UniRef50_M1E792 Protein tyrosine phosphatase 1.15958817487e-05 5.33451056974e-05 16854674028.7 +UniRef50_G0DVB5 Beta glucanase 0.000215500847 0.00672234447109 2.626892619e+12 +UniRef50_N0APD1 2.19748717749e-06 3.36918387625e-06 473028335.625 +UniRef50_W6SQC5 0.000740249189385 0.000706090250575 -13790382774.9 +UniRef50_Q9RXH6 0.000143030297574 0.00358038805558 1.38770350803e+12 +UniRef50_Q255E7 0.000334481087742 0.000199919808566 -54324039655.9 +UniRef50_UPI00045E6D39 hypothetical protein 0.000364408161665 0.000101679229027 -1.06066894153e+11 +UniRef50_M5EG32 0.000381903940063 0.000214523445595 -67573559606.4 +UniRef50_P0ADW7 0.00385221223143 0.000767572239215 -1.24530701764e+12 +UniRef50_E6SFW3 Acyl CoA dehydrogenase domain containing protein 9.84746057885e-05 0.019374117907 7.78181373944e+12 +UniRef50_UPI000472D6AB arginine ABC transporter ATP binding protein 3.90039433386e-05 2.6381682491e-05 -5095761596.73 +UniRef50_Q4FS54 Dihydroxy acid dehydratase 0.000164685839464 0.000397676496707 94061187445.9 +UniRef50_Q5HNG2 tRNA ) methyltransferase 0.0105528050772 0.00370953722634 -2.76271120773e+12 +UniRef50_I3X570 Phosphotriesterase protein Php 0.00381993050899 0.000432558727564 -1.36752355589e+12 +UniRef50_O31404 Acetoin 0.0184022723598 0.00633182727105 -4.87298680333e+12 +UniRef50_X5Z2U4 1.12001162952e-05 3.0968893674e-05 7980898018.0 +UniRef50_UPI0004752454 50S ribosomal protein L18, partial 7.58225725509e-05 0.000478325350467 1.62495310709e+11 +UniRef50_T1XNC8 0.00674358826406 0.000319261302914 -2.59357962957e+12 +UniRef50_UPI00047D8D50 PTS sugar transporter 5.73279120733e-06 7.17278600284e-06 581343569.671 +UniRef50_A3M7U1 Phosphopantetheinyl transferase component of siderophore synthetase 0.000166783205682 0.0101576989298 4.03345528015e+12 +UniRef50_UPI0003694178 hypothetical protein 2.34031223265e-06 8.03963942825e-06 2300888327.47 +UniRef50_A6TDX1 Membrane bound lytic murein transglycosylase C 0.00194047499521 0.00063806929983 -5.2579716154e+11 +UniRef50_Q1YML4 0.000109613713572 3.73717697836e-05 -29164959215.7 +UniRef50_Q3IXU4 Transcriptional regulator, IclR family MhpR 0.00726619844944 0.000855747270728 -2.58797780593e+12 +UniRef50_F9Z2J9 0.000216945970609 0.00417675248357 1.59862248157e+12 +UniRef50_S9V0F9 Plectin 4.99734712492e-05 2.27038231402e-05 -11009091577.8 +UniRef50_UPI000475D84B spermidine putrescine ABC transporter substrate binding protein 8.9332761801e-06 2.79369190498e-05 7672003827.42 +UniRef50_F3U2V0 Gas vesicle operon protein 0.0102161334589 0.00300276689147 -2.91212460123e+12 +UniRef50_K7U3H6 1.88215337338e-06 9.9597207344e-06 3261013066.54 +UniRef50_W7WRB6 0.000312385792788 0.00018048425152 -53250270823.8 +UniRef50_UPI000345BA64 hypothetical protein 0.000405254368462 0.000116213482927 -1.16689352421e+11 +UniRef50_Q5Z7E3 2.35390357303e-05 4.94986379554e-05 10480209978.4 +UniRef50_E8SMG2 PetC 0.000173689872173 0.00186316201436 6.82060635957e+11 +UniRef50_E4EZN9 5.92886023805e-05 0.000366718545812 1.24113240753e+11 +UniRef50_UPI00042B0CC2 Non intrinsic ABC protein 7 isoform 6 3.30675926418e-05 1.79033815897e-05 -6121978087.53 +UniRef50_K0EQ96 NADP dependent isocitrate dehydrogenase 0.000369448863451 0.000147092484913 -89767998635.4 +UniRef50_A5UM19 Predicted permease 0.00204574534145 0.000412218931968 -6.5947465713e+11 +UniRef50_U6K4H4 2.6510600078e-05 1.38633217339e-05 -5105861467.07 +UniRef50_W8U7U4 ABC type transport system involved in resistance to organic solvents, periplasmic component 0.000709169836922 0.000820661926468 45010724711.5 +UniRef50_C3Z9G8 1.670201896e-05 7.73288820198e-06 -3620948150.62 +UniRef50_C4IYT1 2.00616378548e-05 0.000176836350414 63291875302.1 +UniRef50_UPI000470303C hypothetical protein 3.28967757738e-06 4.6579597572e-06 552392306.704 +UniRef50_Q8DU86 0.00273643935438 0.0020366669324 -2.82506713927e+11 +UniRef50_X1QUX5 Marine sediment metagenome DNA, contig 9.22344759715e-05 4.15593295073e-05 -20458178481.6 +UniRef50_UPI00047A6123 transcriptional regulator 4.62745804386e-05 4.03757359807e-05 -2381435894.62 +UniRef50_D5CZH2 Pyrimidine monooxygenase RutA 0.00407044737873 0.000581731435362 -1.4084374377e+12 +UniRef50_Q4L7G4 Peroxide responsive repressor PerR 0.0126420309016 0.00245292168467 -4.11346842529e+12 +UniRef50_Q31EP3 ATP binding cassette superfamily transporter, ATP binding component 0.000141204235229 0.00383455747249 1.49105202442e+12 +UniRef50_UPI0002DB68C6 hypothetical protein 8.81981913474e-06 1.04487444493e-05 657617138.649 +UniRef50_B2TL50 CoA transferase, A subunit 0.000339059271419 0.000743454642449 1.63259373774e+11 +UniRef50_I7EE24 0.00049760760615 5.46130297325e-05 -1.78842346655e+11 +UniRef50_UPI00046E59C8 30S ribosomal protein S5 7.55763561671e-06 1.32760435288e-05 2308591446.87 +UniRef50_W9BYI7 Permease 0.000188196479694 5.12424234278e-05 -55290033129.8 +UniRef50_UPI0003F65C64 PTS beta glucoside transporter subunit IIA 4.30760916382e-06 9.33676817093e-06 2030333205.89 +UniRef50_S9Q8L7 XdhC protein 3.05451570015e-05 3.16080178392e-05 429089962.949 +UniRef50_A0A014NSW5 3.1138976817e-05 8.40181812125e-06 -9179269981.77 +UniRef50_W4HZ56 1.43467971594e-05 3.31469282512e-05 7589843625.31 +UniRef50_B9KX06 Transcriptional regulator, GntR family 0.0029892983123 0.00050009538222 -1.00492176883e+12 +UniRef50_A0A038FVF0 0.000344055501749 6.26747112453e-05 -1.13596878057e+11 +UniRef50_P55792 4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase 0.000605113540747 0.00250946707022 7.68810888893e+11 +UniRef50_UPI00040A1C88 glycerol 3 phosphate ABC transporter permease 6.05755715192e-06 9.2311083373e-05 34821606985.2 +UniRef50_Q62C32 0.000227024636271 0.000435679305636 84236450503.4 +UniRef50_U5MNP4 Penicillin binding protein 1A 0.000541216002363 0.0017899970886 5.04148248782e+11 +UniRef50_UPI0003BD7FE7 1.2380791638e-05 1.86627778243e-05 2536114912.05 +UniRef50_P0A0H1 rRNA adenine N 6 methyltransferase 0.0710695482894 0.015250564999 -2.25348085303e+13 +UniRef50_Q46821 Uric acid transporter UacT 0.00208716939372 0.000901464150756 -4.78683756822e+11 +UniRef50_Q8DV32 0.00624729803654 0.00273695481469 -1.41716863542e+12 +UniRef50_UPI00047156EA hypothetical protein 1.18738483808e-05 6.66745940074e-05 22123733490.2 +UniRef50_Q8G7H1 Ribonuclease 3 1.8068345351e-05 5.10460533467e-05 13313505399.8 +UniRef50_P75989 HTH type transcriptional repressor YcgE 0.00653831875561 0.000864063278628 -2.290766567e+12 +UniRef50_B9KRF9 Electron transport protein SCO1 SenC 0.0107427363269 0.00135282965922 -3.79082054885e+12 +UniRef50_D5C9N5 IS911 transposase orfB 2.74675665259e-05 5.3360102565e-05 10453134536.1 +UniRef50_C1AE27 Aminotransferase 0.00152811983905 0.000557345394294 -3.9191355609e+11 +UniRef50_P77212 Probable pyridine nucleotide disulfide oxidoreductase RclA 0.00154307635008 0.000531832458592 -4.08251568353e+11 +UniRef50_U5WJX6 9.75170777661e-07 6.99869588374e-06 2431771002.29 +UniRef50_U1G994 Putative adhesion protein like protein 1.35953912994e-05 1.53446156912e-05 706183352.367 +UniRef50_UPI00036FB1EC hypothetical protein 3.8192973519e-05 1.20642543562e-05 -10548484561.5 +UniRef50_G6YS95 0.000138602962078 3.24302539132e-05 -42863225171.9 +UniRef50_A6LWX5 Acriflavin resistance protein 0.000231691695838 0.000827583578552 2.40568865467e+11 +UniRef50_UPI0002D36C87 hypothetical protein 0.000252873935684 0.000719329472493 1.88313824263e+11 +UniRef50_Q21LG2 tRNA ) methyltransferase 0.00378426341098 0.00506320593819 5.16324792624e+11 +UniRef50_U3T3T5 Lipid A biosynthesis lauroyl acyltransferase 9.38249783738e-05 0.00784515633825 3.12930758952e+12 +UniRef50_F4QAU5 WH2 domain containing protein 3.30225670531e-06 2.09645037068e-05 7130465854.65 +UniRef50_A5UKD0 Putative HTH type transcriptional regulatory protein Msm_0453 0.0032452428957 0.00079141834743 -9.9063908195e+11 +UniRef50_UPI000376FFD8 hypothetical protein 3.8237498165e-06 6.63765184477e-06 1136006779.27 +UniRef50_Q9RU03 0.000151398123869 0.0202540496638 8.11568711393e+12 +UniRef50_Q9RU05 0.0012166247329 0.0428166763999 1.6794451348e+13 +UniRef50_D5ARQ5 Methyltransferase small domain protein 0.000983190070638 0.000190526906577 -3.20007846402e+11 +UniRef50_B8FJP4 Phosphoglycerate kinase 2.9113669953e-05 4.64350843305e-05 6992867541.85 +UniRef50_UPI000479F495 oxidoreductase 1.67870164307e-05 1.68778862333e-05 36685254.4075 +UniRef50_A0A011F836 TonB dependent Receptor Plug domain protein 0.000237962800056 0.00174289009336 6.0755761584e+11 +UniRef50_I6Q293 0.000310495959855 1.90246331987e-06 -1.24582981419e+11 +UniRef50_O07575 0.00857377147127 0.00414676789055 -1.78723567098e+12 +UniRef50_UPI0002F93554 hypothetical protein 3.25391568499e-05 0.00020005628824 67628721608.5 +UniRef50_D4DM85 DNA gyrase, B subunit, C terminal domain protein 0.000237370727057 0.00359899417335 1.35712863703e+12 +UniRef50_UPI00046EE6DC dTDP 4 dehydrorhamnose 3,5 epimerase 8.09720927999e-06 1.33780657522e-05 2131946561.23 +UniRef50_Q8FRR3 Tryptophan tRNA ligase 6.96678118772e-06 0.00104168742263 4.17729420399e+11 +UniRef50_O69282 Malate 4.50397808867e-06 1.30083901139e-05 3433335495.46 +UniRef50_F2AE05 0.000742844876609 0.00121815905214 1.91890165423e+11 +UniRef50_UPI0004717CFE hypothetical protein 1.65266953169e-06 1.1828102581e-06 -189687954.57 +UniRef50_Q87ST5 4 hydroxythreonine 4 phosphate dehydrogenase 2.79010069193e-05 5.24443039217e-05 9908430179.99 +UniRef50_A5UMP7 Fuculose 1 phosphate aldolase, class II aldolase adducin family 0.00226042650783 0.000586721930844 -6.75695076396e+11 +UniRef50_A6LXI3 Integral membrane sensor signal transduction histidine kinase 0.000282756489039 0.0014810680286 4.83773073457e+11 +UniRef50_UPI000368FC1C hypothetical protein 8.43077872633e-06 3.10569945556e-05 9134480985.18 +UniRef50_Q1IVY6 FAD dependent oxidoreductase 9.35142829476e-05 0.0150304900812 6.03024042708e+12 +UniRef50_UPI00041819DF glycine cleavage system protein T 7.66125304056e-06 5.97556055673e-06 -680534741.495 +UniRef50_B2TQB0 Amylovoran biosynthesis AmsK 0.000419479947242 0.00286781137482 9.88421441719e+11 +UniRef50_A1IRV5 0.000376248493809 0.00837739838349 3.23016239561e+12 +UniRef50_Q2FD95 AdeI 0.000241857910556 0.0039325935646 1.48999527396e+12 +UniRef50_R9SJQ0 Cell wall biosynthesis protein Mur ligase family 0.00303316314678 0.000536311970277 -1.00800945976e+12 +UniRef50_UPI00047BD281 hypothetical protein 0.000326038076861 4.98465635184e-05 -1.11501903188e+11 +UniRef50_UPI00035D739B hypothetical protein 4.77989472503e-05 2.5664848983e-06 -18260900116.2 +UniRef50_UPI00047BB945 SAM dependent methyltransferase 3.27997534341e-05 1.76416281773e-05 -6119521177.28 +UniRef50_A0A023Y271 Carbon nitrogen hydrolase 0.00161607676697 0.00129897041445 -1.28019725845e+11 +UniRef50_Z2DBY9 Glycolate oxidase 1.46951476283e-05 2.55338874649e-05 4375732278.33 +UniRef50_Q67PR5 Peptide deformylase 5.69533365392e-05 5.46136799135e-05 -944548090.61 +UniRef50_R7NQ15 Gluconate 5 dehydrogenase 0.00014900762718 0.00960413462624 3.81715079698e+12 +UniRef50_UPI0003B557FA hydrolase 0.000102624549964 4.90561887621e-05 -21626204774.9 +UniRef50_B7ELK9 cDNA clone 3.48527519644e-05 7.51291275249e-05 16260067060.5 +UniRef50_Q1YMK1 N acetyl gamma glutamyl phosphate reductase 2.49780161966e-05 2.17201642265e-05 -1315234818.67 +UniRef50_H5DQ87 6.21593375632e-05 7.09802853806e-05 3561124879.09 +UniRef50_UPI00035E02BE hypothetical protein 5.46594627386e-05 9.52746351128e-06 -18220341920.0 +UniRef50_D6CMF6 Sulfite reductase 0.000921020160606 0.000507659308166 -1.66878848638e+11 +UniRef50_D5UQG6 6.34738694943e-06 2.47999378792e-05 7449521248.62 +UniRef50_UPI0004690DDD pesticidal protein Cry5Ba 0.00173696051446 0.000259404547005 -5.9650747571e+11 +UniRef50_A4WT11 Methyl accepting chemotaxis sensory transducer 0.00294387287978 0.00095833591277 -8.0158563886e+11 +UniRef50_I0JFL4 BioY family protein 0.0112587901427 0.00514966187553 -2.46633004889e+12 +UniRef50_W1FZE6 TRAP type C4 dicarboxylate transport system, large permease component 8.45353666165e-05 6.67317486163e-05 -7187539061.64 +UniRef50_D4H9D0 Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II 9.27484002093e-05 0.00360248207781 1.41692255492e+12 +UniRef50_Q8EXQ7 Adenosylcobalamin biosynthesis bifunctional protein CobDQ 6.48511705355e-06 5.93945308035e-05 21360179602.4 +UniRef50_D8JE40 Soluble lytic transglycosylase fused to an ABC type amino acid binding protein 0.000563161913801 0.00192763556202 5.50854755761e+11 +UniRef50_A1HQK7 1.17167859395e-05 2.83740968929e-05 6724760840.08 +UniRef50_U7PXV4 5.03073008551e-06 6.64049255522e-07 -1762882636.27 +UniRef50_O27762 Phosphate transporter permease PstC 0.00432885079117 0.000352266447552 -1.6053958977e+12 +UniRef50_Q1IXT2 Cysteine synthase 0.000566132060278 0.0389249431035 1.54859227337e+13 +UniRef50_F0KPZ6 Oligopeptidase A 0.000255896112659 0.00601024709726 2.32310210631e+12 +UniRef50_B2UVS5 Purine nucleoside phosphorylase 0.00102950724232 0.00296465705605 7.81243726761e+11 +UniRef50_F8X9S0 Ribonucleoside diphosphage reductase 1, beta subunit, B2 0.000410245834973 7.61465601684e-05 -1.34879977098e+11 +UniRef50_Q9I0J7 NADH quinone oxidoreductase subunit F 0.00342625131585 0.00678094031501 1.35432911562e+12 +UniRef50_P0A3B9 4 phosphopantetheinyl transferase EntD 0.00214344532893 0.00214800826273 1842112368.55 +UniRef50_A6LP26 Adenine phosphoribosyltransferase 2.68037226555e-05 1.70730222569e-05 -3928403160.04 +UniRef50_A9M1L0 Valine pyruvate aminotransferase 8.35145992986e-05 0.00414379382515 1.6391845487e+12 +UniRef50_B7HEG4 HPr kinase phosphorylase 0.0259769095693 0.0067024937685 -7.78131818246e+12 +UniRef50_UPI00035EE4F1 hypothetical protein, partial 1.91921330609e-05 3.73627273159e-05 7335691879.01 +UniRef50_UPI000371E3B5 hypothetical protein 5.660720733e-06 1.23711448007e-05 2709080542.29 +UniRef50_A4YBV8 DNA directed RNA polymerase subunit alpha 0.000355026420161 0.00338735792118 1.22418943785e+12 +UniRef50_P07003 Pyruvate dehydrogenase [ubiquinone] 0.00274332577794 0.00169456374456 -4.23398102633e+11 +UniRef50_Q5ZT84 4 hydroxyphenylpyruvate dioxygenase 0.000158385729588 0.00824153990315 3.26326853132e+12 +UniRef50_S4N129 4.24903846836e-05 0.000536436119069 1.99411954367e+11 +UniRef50_A6LV69 Adenylosuccinate synthetase 0.000193785441027 0.00122167915969 4.14973307897e+11 +UniRef50_P37872 0.00662693611282 0.000292392777421 -2.55733287809e+12 +UniRef50_K4KM08 Phosphatidylserine phosphatidylglycerophosphate cardiolipin synthase like protein 0.000711250787108 0.000524323775164 -75464728574.2 +UniRef50_Q5FIF8 N acetylmuramic acid 6 phosphate etherase 7.28262728184e-06 1.13769710944e-05 1652936840.38 +UniRef50_G7ZP06 0.00898205778025 0.00454895843689 -1.78969660516e+12 +UniRef50_UPI0004734490 hypothetical protein, partial 7.26582664506e-06 1.00571454438e-05 1126889652.38 +UniRef50_UPI0003804668 hypothetical protein, partial 3.27128438195e-05 3.78289598399e-06 -11679374951.6 +UniRef50_A9KJX4 Two component transcriptional regulator, winged helix family 0.00098006653273 0.000518099482802 -1.86501767029e+11 +UniRef50_P39381 0.0018171307634 0.000628962295273 -4.79678191051e+11 +UniRef50_UPI00036F79EF hypothetical protein 2.04829005201e-05 2.08469189899e-05 146958723.267 +UniRef50_UPI00035C1F0F PhoB family transcriptional regulator 1.19974411968e-05 3.18909407107e-05 8031249874.45 +UniRef50_Q2L1W2 Phosphonoacetaldehyde hydrolase 0.000564786096375 0.0010537782868 1.97412147884e+11 +UniRef50_Q9RYF4 Oxidoreductase, short chain dehydrogenase reductase family 0.000303369295793 0.0481947194562 1.93343257527e+13 +UniRef50_S5K087 0.00020051685915 0.00224837509715 8.26745500727e+11 +UniRef50_UPI00016B0FEC hypothetical protein 0.000272225472725 0.000446322476372 70285096782.8 +UniRef50_A3PN29 0.00525917967236 0.000466289534524 -1.93494856402e+12 +UniRef50_A3M3L2 Transcription regulator LysR family 0.000146123608583 0.00688485413227 2.72050820594e+12 +UniRef50_UPI0003C27927 PREDICTED 1.1805216264e-05 1.21754720508e-05 149476804.681 +UniRef50_Q0S2H3 Ketol acid reductoisomerase 2.2804197232e-05 3.91952302383e-05 6617261165.24 +UniRef50_Q98BA9 Mll5655 protein 0.000889600871452 0.00318015763219 9.24725872603e+11 +UniRef50_B8DA95 Ggdef motif membrane protein 0.000101799161961 0.000704875498837 2.43469317776e+11 +UniRef50_Q8VNM5 Orf513 protein 1.85780990745e-05 7.50066528596e-05 22780899619.3 +UniRef50_A4W448 ATPases with chaperone activity, ATP binding subunit 0.00749593764114 0.00562690196658 -7.54552637467e+11 +UniRef50_R9SJ71 Type II secretion system protein E GspE 0.00239202141976 0.00177817982011 -2.47815386462e+11 +UniRef50_UPI000376BA8C hypothetical protein 9.48507284613e-05 1.65663314918e-05 -31604371714.2 +UniRef50_A6M2J8 Glycerophosphoryl diester phosphodiesterase 0.000649550450817 0.000960775223075 1.25645259718e+11 +UniRef50_A0A017HNC7 4.02499631709e-06 2.15117888125e-05 7059632717.47 +UniRef50_A3QG19 Homoserine O succinyltransferase 0.00662165468051 0.0163075785497 3.91032632564e+12 +UniRef50_UPI0003B4CB27 MarR family transcriptional regulator 1.49238087733e-05 8.15505867925e-05 26898047888.9 +UniRef50_H9KGM6 1.01928736284e-05 2.20836331286e-05 4800445526.26 +UniRef50_UPI00047DD55E electron transfer flavoprotein subunit alpha 1.0167012003e-05 1.36027365176e-05 1387044147.62 +UniRef50_H3YNY8 Penicillin binding protein, transpeptidase domain protein 0.0173990111027 0.00467672177978 -5.1361443197e+12 +UniRef50_A5UP25 Predicted type II restriction enzyme, methylase subunit 0.00559611369867 0.000411456557505 -2.09310971079e+12 +UniRef50_G8MLW9 Binding protein dependent transport systems inner membrane component 0.000507217107692 0.0015949476058 4.39130150041e+11 +UniRef50_G2KXV7 0.000117033712309 0.00654737190689 2.59600643828e+12 +UniRef50_UPI00035CE0CD hypothetical protein 1.40269029924e-05 1.29074661319e-05 -451930397.619 +UniRef50_I0ESN6 Alanine dehydrogenase 0.00010342081886 0.00436034903428 1.71857415895e+12 +UniRef50_P73002 Cobyrinic acid A,C diamide synthase 1.10603340866e-05 0.000371790995168 1.45631394541e+11 +UniRef50_UPI0003645BA6 hypothetical protein 2.42269586579e-07 8.1319791206e-07 230490771.075 +UniRef50_A4WRS0 SAM dependent methyltransferase 9.516453501e-05 0.000149024409689 21743892342.9 +UniRef50_B9KQ53 0.000936602790663 0.000703135012379 -94253807065.1 +UniRef50_UPI000465DFCD hypothetical protein 1.55286322412e-05 5.08126450223e-05 14244588943.3 +UniRef50_UPI0003651ACE hypothetical protein 3.55366880624e-06 3.1956570336e-05 11466599890.4 +UniRef50_Q1IZ90 Drug resistance transporter EmrB QacA subfamily 0.000137912002714 0.0330351825307 1.32810318071e+13 +UniRef50_UPI0003681123 hypothetical protein 5.66697429046e-06 1.87441322491e-05 5279409142.66 +UniRef50_UPI000419642D MULTISPECIES 0.000297298079047 9.93951751378e-05 -79895830849.8 +UniRef50_R7PVV2 0.00199467256595 0.00116982940041 -3.32999307892e+11 +UniRef50_J7RBB7 Fdhd protein 0.000158502778779 0.000166069600779 3054818896.75 +UniRef50_X8A316 0.00099524258552 0.000223643230125 -3.11504128362e+11 +UniRef50_I7L4T0 Phosphate import ATP binding protein pstB 0.000272881437722 0.00433012411265 1.63795865584e+12 +UniRef50_M4WV43 Cis,cis muconate transporter MucK 8.75160715986e-05 0.000274946358252 75667906750.1 +UniRef50_O26307 Hydrogenase expression formation protein HypE 0.00184768815042 0.000607463870433 -5.00693761095e+11 +UniRef50_P0AD04 Inner membrane protein YebS 0.00231831291635 0.000672491541523 -6.64438285518e+11 +UniRef50_Q3JHW2 8.95077155721e-07 3.92315100904e-05 15476888416.7 +UniRef50_K0L036 Formate dehydrogenase 0.0117134009283 0.0014173807587 -4.15662968884e+12 +UniRef50_Q2GPL7 Predicted protein 4.68581199479e-06 4.22726290486e-06 -185121894.635 +UniRef50_P02929 Protein TonB 0.00416827720089 0.00139023834552 -1.12152837628e+12 +UniRef50_Y0BJC5 5.56445672337e-05 0.000117453029342 24952834628.2 +UniRef50_Q3JEN4 Cytidylate kinase 0.0030630079815 0.0026786689622 -1.55162378462e+11 +UniRef50_A6T1E5 60 kDa chaperonin 0.000758693464667 0.000348865577547 -1.65452547184e+11 +UniRef50_UPI00047C3395 hypothetical protein 1.68109620053e-05 9.70455211084e-06 -2868944879.85 +UniRef50_UPI0003791B6C hypothetical protein 7.37081740068e-06 2.89324819614e-05 8704708574.53 +UniRef50_UPI0003EB0A2B GTPase 7.47574908731e-06 0.000709715475647 2.83502795063e+11 +UniRef50_B5F7X0 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.00414634585082 0.000959486386399 -1.28657427295e+12 +UniRef50_UPI0001E892A8 probable mannose 1 phosphate guanyltransferase 6.88439991802e-05 7.83492809126e-06 -24630110664.1 +UniRef50_U5MUF8 0.00143349109691 0.000694667506903 -2.98272149671e+11 +UniRef50_G8PBV9 PTS system, lactose cellobiose IIC component family protein 0.000112235675575 0.00120817404873 4.42443769921e+11 +UniRef50_Q46863 Putative binding protein YgiS 0.00496299031516 0.000366356472688 -1.85571748925e+12 +UniRef50_UPI0003C17ADD PREDICTED 7.47564838915e-06 0.0005007437225 1.99138374599e+11 +UniRef50_P21912 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.94011728551e-05 3.91688387943e-05 3943326602.39 +UniRef50_P77726 Inner membrane transport protein YajR 0.00230917749029 0.000189305580258 -8.55818303833e+11 +UniRef50_A9WS85 Leucine tRNA ligase 0.000315224109719 0.00657415066267 2.52680545509e+12 +UniRef50_D2RJ96 CRISPR associated protein Cas4 0.00641169304169 0.00360300894259 -1.13390023724e+12 +UniRef50_A6M3G8 Extracellular ligand binding receptor 0.00060846503087 0.00199566028927 5.60027748616e+11 +UniRef50_H8GYP5 3.42358033143e-05 0.000394202561313 1.45322997493e+11 +UniRef50_G8VEM4 Glycosyl transferase 0.000335545549501 0.00638348381479 2.44162689425e+12 +UniRef50_F0ME34 Sodium alanine symporter family protein 0.000126673150626 0.00165094312532 6.15366493678e+11 +UniRef50_F8JQP0 2.0445906561e-05 0.000352435599669 1.34028313079e+11 +UniRef50_V5NK98 0.00073801364786 0.00318122909438 9.86356057385e+11 +UniRef50_P45856 Probable 3 hydroxybutyryl CoA dehydrogenase 7.47097841561e-06 8.49836080879e-05 31292799785.6 +UniRef50_I1HGX9 6.76900919389e-05 3.78371488187e-05 -12051999474.4 +UniRef50_D6M5U2 Transcriptional regulator 2.20421068803e-05 1.73055318203e-05 -1912213476.03 +UniRef50_UPI00047B87C7 resolvase 0.000166082738007 0.000148930119471 -6924722589.28 +UniRef50_P31471 0.0015782699698 0.00139317978913 -74723177248.4 +UniRef50_P31470 0.00408368660701 0.000270106742557 -1.53958898917e+12 +UniRef50_B2V075 Ser Thr protein phosphatase family protein 0.000117353157162 0.00123286111148 4.50344249981e+11 +UniRef50_Q5L7W2 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 1.81637554896e-06 0.00369317750004 1.49024778405e+12 +UniRef50_M4U7I0 8.71076362508e-06 1.53955181854e-05 2698717447.16 +UniRef50_U5NMY3 0.00272276246603 0.000680665341122 -8.24419668676e+11 +UniRef50_UPI0002379CD5 IS5 family transposase OrfA 1.43397962364e-05 2.48454257831e-05 4241251566.57 +UniRef50_Q73F23 Tn7 like transposition protein C 3.30071623406e-06 0.000236417545201 94112124519.2 +UniRef50_UPI000364A211 hypothetical protein 0.00301238287585 0.000364588524928 -1.06894707156e+12 +UniRef50_Q53199 Probable glutamate dehydrogenase 1.11411276695e-05 7.32779240207e-06 -1539490242.35 +UniRef50_UPI0003641B94 hypothetical protein, partial 9.81817981587e-05 4.70173132578e-05 -20655730413.3 +UniRef50_Q1LDL8 0.000803468928268 0.00184584933892 4.20821763225e+11 +UniRef50_UPI0003B6B0F4 hypothetical protein 5.28199585023e-06 3.33549767674e-05 11333406890.5 +UniRef50_N9CNB8 9.46769974165e-06 2.93669261701e-05 8033561900.11 +UniRef50_G2J0I7 0.000413835263349 0.00132096291232 3.66218563598e+11 +UniRef50_J0FRW1 0.000990128757628 0.000155279690407 -3.37038813187e+11 +UniRef50_UPI000411C2A5 hypothetical protein 0.000152485521016 7.29994343906e-05 -32089508574.6 +UniRef50_UPI0003B57812 ABC transporter ATP binding protein 8.03968854634e-06 4.76007031518e-05 15971267064.5 +UniRef50_W5X841 Phage associated DNA primase 1.01294888463e-05 0.000412216041804 1.62327275586e+11 +UniRef50_Q74L45 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2 0.0224244593613 0.00365361251891 -7.57802121447e+12 +UniRef50_F0TCP3 0.00323483186316 0.00115134382828 -8.41129686954e+11 +UniRef50_Q5UBV9 Resuscitation promoting factor 5.78245943101e-05 7.67520567149e-05 7641248838.9 +UniRef50_Q6GI36 Staphostatin B 0.00146042537418 0.00053693946399 -3.7282259439e+11 +UniRef50_D4HBN4 Trypsin 0.000509160138868 0.00391973859595 1.37689237563e+12 +UniRef50_P76417 Putative nucleoside transporter YegT 0.00218786512907 0.000210689682662 -7.98209990387e+11 +UniRef50_B7S018 Oxidoreductase, short chain dehydrogenase reductase family 5.80179615192e-06 0.000281965618596 1.11490724032e+11 +UniRef50_T6VVX4 Galactitol 1 phosphate 5 dehydrogenase 0.000516991680384 0.000292392777421 -90673333264.6 +UniRef50_A6LXN2 NLP P60 protein 0.000104857219123 0.00276303772658 1.0731400904e+12 +UniRef50_UPI00037E23C1 hypothetical protein 8.26092340567e-06 9.51068804585e-06 504545321.577 +UniRef50_B3HGM5 0.00145106314815 0.000457855356899 -4.00970173358e+11 +UniRef50_A6T6B5 tRNA 2 methylthio N dimethylallyladenosine synthase 0.00361416626661 0.0156928468018 4.87631155414e+12 +UniRef50_A0A009GFK1 0.000913272553671 0.0170646064139 6.52049167852e+12 +UniRef50_Q04JY7 Homoserine kinase 0.00031457165738 0.00297997355262 1.07605545327e+12 +UniRef50_UPI00035FAAB9 hypothetical protein 4.77501492741e-06 9.28672028189e-06 1821430816.45 +UniRef50_H3XMI1 Periplasmic binding domain protein 6.32670742894e-05 0.000119400285112 22661666041.0 +UniRef50_Q4UMZ3 Putative export ATP binding permease protein RF_0214 6.35949153104e-05 7.74314191575e-05 5585966396.07 +UniRef50_UPI000361120A hypothetical protein 8.40803186985e-06 0.000119028408526 44658803520.7 +UniRef50_Q5WVI7 2.30312102203e-05 0.00176784514883 7.04402798292e+11 +UniRef50_H3F815 1.27395869027e-05 0.000210074258441 79666428468.6 +UniRef50_B5EN70 NADH quinone oxidoreductase subunit B 2 3.61010732909e-05 0.000143093900298 43194317212.4 +UniRef50_UPI00037A86DD hypothetical protein 9.49220195328e-06 1.08675751515e-05 555255037.848 +UniRef50_D8TR27 9.7123324747e-05 7.59819996298e-05 -8535012383.05 +UniRef50_UPI00042C3CC5 PREDICTED 1.60034511086e-05 1.32223924275e-05 -1122747516.99 +UniRef50_K0HTI4 YD repeat protein 9.644414632e-05 0.00370034648493 1.45493959895e+12 +UniRef50_C5CI63 Adenine deaminase 1.84376755211e-05 6.20522698217e-06 -4938389584.18 +UniRef50_A6M0R7 ABC transporter, periplasmic substrate binding protein 0.000309685371786 0.00361705747001 1.33522670207e+12 +UniRef50_B9KWE3 Methyl accepting chemotaxis sensory transducer 0.00440953233595 0.00164325783259 -1.11677896301e+12 +UniRef50_Q48K66 Branched chain amino acid transport system II carrier protein 0.000318522141699 0.00755936087353 2.92321545112e+12 +UniRef50_UPI0003780D5B hypothetical protein, partial 0.000301958839214 0.000646943829869 1.39274674169e+11 +UniRef50_B6JHG4 N acetyl gamma glutamyl phosphate reductase 5.29826498259e-05 4.21125530479e-05 -4388391460.37 +UniRef50_A3PKL4 0.00440071333486 0.000477790105511 -1.58373224737e+12 +UniRef50_UPI00047265F4 hypothetical protein 2.82982757334e-06 2.04584009291e-05 7116871390.66 +UniRef50_Q8RWV0 Transketolase 1, chloroplastic 4.08513644073e-05 1.72453155097e-05 -9530051618.76 +UniRef50_Q1IRT8 Histidine ammonia lyase 4.28038896247e-06 4.88825145435e-05 18006425426.7 +UniRef50_A6M3B4 0.000175303090798 0.000683855261656 2.05308752012e+11 +UniRef50_D0ISP2 Aminodeoxychorismate lyase 0.000140503469798 0.00376593821096 1.46363249409e+12 +UniRef50_I4DZ43 0.00667688312194 0.00174723469169 -1.99015956488e+12 +UniRef50_I6T9F6 Transcriptional regulator 0.00607751964798 0.00342578926584 -1.07053609566e+12 +UniRef50_UPI00047B64CE hypothetical protein 4.56528187742e-06 1.64584238309e-05 4801407351.89 +UniRef50_Q2YQE0 Urease subunit gamma 2 5.7132099174e-05 0.00280250394319 1.10834030293e+12 +UniRef50_A8IHJ3 Altronate oxidoreductase 0.000943328049709 0.000740517866176 -81876959853.1 +UniRef50_UPI000225ED80 DNA damage repair protein MutT 0.0001890738036 1.70532133868e-05 -69446823199.0 +UniRef50_A5WC44 Membrane protein like protein 2.99238693049e-05 0.000100614891863 28538833283.1 +UniRef50_W0MF84 0.000333022505855 0.00925260462548 3.60094475727e+12 +UniRef50_UPI0001FFF273 hypothetical protein, partial 2.50573607881e-05 0.000350998230871 1.31586328997e+11 +UniRef50_D3QIV7 Immunodominant antigen B 0.011228205139 0.00270456715148 -3.44109725236e+12 +UniRef50_A5UJ84 Adhesin like protein 0.00268025077318 0.000245076103906 -9.83109896938e+11 +UniRef50_UPI00035E8644 hypothetical protein, partial 3.01743483058e-05 3.81599280698e-05 3223876544.81 +UniRef50_UPI0003B6B470 hypothetical protein 0.000595194555565 0.000105749566174 -1.97594948383e+11 +UniRef50_UPI000362BA63 hypothetical protein 1.95592461839e-06 0.000730533611889 2.94135753005e+11 +UniRef50_A9M2L0 Transcriptional regulator, Fnr family 0.000796364292508 0.00259298060845 7.25316053706e+11 +UniRef50_Q9M439 Branched chain amino acid aminotransferase 2, chloroplastic 6.88732373537e-06 2.05608250904e-05 5520160289.74 +UniRef50_F4LTT4 DNA methylase N 4 N 6 domain protein 0.000246241277342 0.00706890209602 2.75439189596e+12 +UniRef50_Q4L9Y1 PTS system mannitol specific EIICB component 0.00767983501024 0.00312703496244 -1.83802124844e+12 +UniRef50_UPI00047BEA91 hypothetical protein 1.06360246451e-05 9.10414453258e-05 32460655014.3 +UniRef50_A6LWG3 0.000285569292609 0.00112970576838 3.40788253988e+11 +UniRef50_B9KWP4 ABC sugar transporter, inner membrane subunit 0.00758924334585 0.00288027685276 -1.90106755878e+12 +UniRef50_UPI00026C8165 peptidase A8 1.19733616071e-05 1.77552085591e-05 2334202565.76 +UniRef50_C3C2K9 0.000857677302841 0.00314670086138 9.2410690006e+11 +UniRef50_B5F445 Aspartate carbamoyltransferase regulatory chain 0.000493445737057 0.00222743179208 7.00031448813e+11 +UniRef50_UPI00037CE05A hypothetical protein 6.14154385859e-06 2.92317876983e-05 9321814787.24 +UniRef50_P16682 Phosphonates binding periplasmic protein 0.00459295954877 0.000892910800665 -1.49375508431e+12 +UniRef50_Q5FSJ7 Anhydro N acetylmuramic acid kinase 9.14293144155e-06 5.24623869964e-05 17488595797.0 +UniRef50_Q5HRD0 Endonuclease III 0.0191347268313 0.00385395803607 -6.16903387874e+12 +UniRef50_E6MWX9 5.61450906434e-05 0.000435288705025 1.53064929741e+11 +UniRef50_Q4L8H1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.006813252479 0.00190532872175 -1.9813890478e+12 +UniRef50_UPI00035DC37A hypothetical protein 3.92402545882e-06 4.91393459536e-06 399638465.972 +UniRef50_B2TR74 P type ATPase metal cation transport 0.000306540410571 0.00227759965536 7.95740804739e+11 +UniRef50_Q9CPY0 Putative ribosomal RNA methyltransferase 2 1.58624720732e-05 3.39665865469e-05 7308853175.5 +UniRef50_U2YLP5 Possible lipoprotein 5.53750190449e-05 3.8870143796e-05 -6663220675.58 +UniRef50_UPI000376B5CE hypothetical protein 1.15789176755e-05 3.79914350291e-05 10663057373.7 +UniRef50_E8U4R9 GAF domain protein 8.08303031738e-06 0.00258434682014 1.04006930626e+12 +UniRef50_UPI00039595AE amino acid carrier protein 2.27907604823e-05 0.00231573459769 9.25689564667e+11 +UniRef50_UPI00037DB88D hypothetical protein 4.4087330398e-06 2.59238280605e-05 8685907879.76 +UniRef50_UPI0003B53AEE hemolysin secretion protein D, partial 0.000127509562846 0.000187003006468 24018233256.9 +UniRef50_UPI000465E12B hypothetical protein, partial 1.08803681926e-05 7.34977782121e-06 -1425342658.15 +UniRef50_S1U9M8 Respiratory nitrate reductase 2 beta chain domain protein 4.01688940269e-05 0.000153124499628 45601564102.3 +UniRef50_Q0RF16 Potassium transporting ATPase A chain 3.99613545594e-06 0.00142940576034 5.75455357307e+11 +UniRef50_X1GYM7 Marine sediment metagenome DNA, contig 3.11715608716e-05 4.76730438315e-05 6661851166.88 +UniRef50_F2U6L8 SAM domain and HD domain containing protein 1 2.76295375609e-06 2.8560456801e-06 37582352.0892 +UniRef50_P23883 Aldehyde dehydrogenase PuuC 0.00531195182793 0.000937634185837 -1.76596571103e+12 +UniRef50_UPI00037CF752 hypothetical protein 1.11349720131e-05 1.8394083737e-05 2930592482.26 +UniRef50_UPI00037C0B53 50S ribosomal protein L3 6.23917493977e-06 0.000340814098583 1.35072002371e+11 +UniRef50_A5UP78 Exoribonuclease VII, large subunit, XseA 0.00215857067305 0.000391078004213 -7.13558479985e+11 +UniRef50_P31131 Protein YdeJ 0.00292769080694 0.00221508008896 -2.87689691565e+11 +UniRef50_D7AQ31 Transcriptional regulator, DeoR family 0.000459429269956 0.000801836292727 1.38233916899e+11 +UniRef50_E7PVM6 Streptococcal histidine triad protein 0.000114621985566 0.000154651280037 16160317392.6 +UniRef50_Q56953 Chelated iron transport system membrane protein YfeB 0.00213059780018 0.000390286394531 -7.02585070483e+11 +UniRef50_Q53CQ0 JM170 0.000209244122337 0.000270504075483 24731394829.2 +UniRef50_Q98NF5 Threonine dehydratase 0.00315123497302 0.00102587252864 -8.58034899926e+11 +UniRef50_P76042 Putative ABC transporter periplasmic binding protein YcjN 0.00229229309692 0.00263038294274 1.36491019586e+11 +UniRef50_Q9BYC2 Succinyl CoA 5.56656991258e-05 3.5509475619e-05 -8137314774.37 +UniRef50_UPI0002E54E33 hypothetical protein 9.82025663508e-05 1.41242329797e-05 -33943454939.1 +UniRef50_X5EK24 Integral membrane transporter 7.46019740784e-05 0.00328373813961 1.29556765055e+12 +UniRef50_UPI00016A5F2C deoxyribodipyrimidine photolyase, partial 1.8824471964e-05 0.000214989296045 79194146694.6 +UniRef50_UPI000478533A ribose ABC transporter permease 0.000130797652061 6.4056112945e-05 -26944378351.9 +UniRef50_Q8ZYR9 DNA repair and recombination protein RadA 0.00299372232861 0.00148089947023 -6.10745152352e+11 +UniRef50_UPI000382A2F1 hypothetical protein 3.54409921254e-05 4.56870033621e-06 -12463523040.9 +UniRef50_G7ZRL2 0.0171826271024 0.00560910229823 -4.67237398658e+12 +UniRef50_S4YXA5 Meta pathway phenol degradation like protein 7.64823676121e-06 9.51941935003e-06 755419373.099 +UniRef50_B2TNM6 DNA polymerase 8.97592399675e-05 0.0015944452856 6.07460221195e+11 +UniRef50_Q5HNN0 Probable GTP binding protein EngB 0.0111553700708 0.00477534449053 -2.57569461847e+12 +UniRef50_A5IS41 0.00518126123941 0.00214145439617 -1.22720732524e+12 +UniRef50_T2HRY4 Transposase DDE domain protein 0.000190810983781 0.000180254347023 -4261843803.71 +UniRef50_Q5HRQ4 50S ribosomal protein L25 0.0254628850566 0.00893083873549 -6.67418997085e+12 +UniRef50_C5ASM5 Enoyl CoA hydratase 0.000635921096979 0.000748799869256 45570545546.5 +UniRef50_A5VBZ8 DNA directed RNA polymerase subunit beta 1.26709949315e-05 2.49085934594e-06 -4109845660.22 +UniRef50_D2GMB8 0.00120721971164 3.99118210134e-05 -4.71256519926e+11 +UniRef50_A3CNT1 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.00371627697137 0.00126518946121 -9.89534106078e+11 +UniRef50_UPI00031618D7 hypothetical protein 1.26569992233e-05 6.59325799901e-05 21508005720.5 +UniRef50_UPI0003C8E1FD PREDICTED 7.96052706528e-05 1.94522517642e-05 -24284511885.9 +UniRef50_M3X368 0.000175369346644 0.000102962392396 -29231575963.2 +UniRef50_B7I751 NADH quinone oxidoreductase subunit N 0.00109528870245 0.00991772383966 3.56172532835e+12 +UniRef50_UPI00037AC0F7 hypothetical protein 0.000415012029582 4.66075767625e-05 -1.48729398434e+11 +UniRef50_W0NQ86 0.000173125784067 0.000172221570483 -365042119.809 +UniRef50_UPI00040AFE18 DNA primase 4.34732605014e-06 1.74681419572e-05 5297034392.21 +UniRef50_R1DKY4 3.62810417783e-05 0.000224555930352 76008882910.0 +UniRef50_P0AFI5 D alanyl D alanine endopeptidase 0.00351682754093 0.00114984705152 -9.55579069692e+11 +UniRef50_Q54IJ8 3.9009919625e-05 6.63207975011e-07 -15481038060.2 +UniRef50_A0A059LB29 9.34525275573e-05 0.000733225041784 2.58284014885e+11 +UniRef50_K9XNW0 2.70520364308e-06 0.00152418098013 6.14238441576e+11 +UniRef50_Q9AK82 DNA polymerase IV 8.3887696239e-05 0.00536219246456 2.13091640705e+12 +UniRef50_U3SRM8 0.00445585099275 0.00158659460002 -1.15835401548e+12 +UniRef50_F7SKK4 Pirin like protein 5.06929127244e-05 3.64614498735e-05 -5745416192.6 +UniRef50_Q49VP4 UTP glucose 1 phosphate uridylyltransferase 2 0.0214025197099 0.0070510296093 -5.7938726662e+12 +UniRef50_A7I262 DedA family protein 0.000788118449162 0.00153897694497 3.03130788828e+11 +UniRef50_A8AQ14 5 keto 4 deoxy D glucarate aldolase 0.00411022060924 0.000510998980884 -1.45304993879e+12 +UniRef50_UPI0000F2F781 two component response regulator 1.17928995719e-05 1.67265293638e-05 1991766889.44 +UniRef50_UPI00026CD75D rare lipoprotein A 1.01343426064e-05 5.5350877534e-05 18254470019.6 +UniRef50_P37327 Inner membrane protein YfdC 0.00312410409659 0.000483227980161 -1.0661540954e+12 +UniRef50_C5Z886 0.000108802350393 0.00132409392729 4.90628122899e+11 +UniRef50_B9TC98 Xanthosine phosphorylase, putative 0.0014002308986 0.000242062873115 -4.6756664421e+11 +UniRef50_P39851 Putative tyrosine protein kinase CapB 0.0258133970862 0.00394277478097 -8.82943860733e+12 +UniRef50_UPI00035DBD49 hypothetical protein 1.18899010743e-05 0.000190542928152 72124419350.6 +UniRef50_UPI000329916F PREDICTED 3.93095096021e-06 1.30466569572e-05 3680122373.28 +UniRef50_U3U1E2 Alkyl hydroperoxide reductase subunit F 8.38787326643e-05 0.000531341062728 1.80646033627e+11 +UniRef50_UPI000369BED8 hypothetical protein 2.45204019703e-05 2.5944529224e-05 574937648.325 +UniRef50_U8KDA3 0.000481897007041 0.00268684851974 8.90165983475e+11 +UniRef50_S6SYK4 Alkanesulfonate transporter substrate binding subunit 1.64367512698e-05 5.61668295816e-05 16039520157.4 +UniRef50_UPI000415C161 phospholipase C 2.45859708223e-06 4.05222703401e-06 643367967.572 +UniRef50_G5KHM6 5.11210656376e-05 0.000137289552241 34787275448.0 +UniRef50_UPI00046F982B hypothetical protein 9.16156515407e-06 8.34461994146e-06 -329810807.376 +UniRef50_UPI00045E9E9F hypothetical protein 2.56130020935e-05 8.57604175303e-05 24282249703.6 +UniRef50_R7PWF8 0.00160719875038 0.000382094348328 -4.94589680829e+11 +UniRef50_UPI0004290598 luciferase 4.53953629829e-05 7.04463643718e-06 -15482658922.8 +UniRef50_Q8FEN7 Arabinose 5 phosphate isomerase GutQ 0.00237728752386 0.000488709141147 -7.62442268563e+11 +UniRef50_O34133 Putative regulator AldR 0.000959953619953 0.0269602341966 1.04966323281e+13 +UniRef50_UPI00027F9D39 PREDICTED 0.00010441532621 1.44087256308e-05 -36336769159.0 +UniRef50_A0NLI7 0.00047631933423 0.00211235857593 6.60489118333e+11 +UniRef50_A0A045UMF7 6.67631110754e-05 1.70044478929e-05 -20088182934.2 +UniRef50_H0YQH9 2.25250653346e-05 7.03642243928e-06 -6252955203.85 +UniRef50_G7QF23 Peptide chain release factor 3 0.000198235735785 0.0412329953604 1.65662360136e+13 +UniRef50_D9UK32 0.000257248533406 4.61275472664e-05 -85232132850.6 +UniRef50_UPI000456151B hypothetical protein PFL1_04047 1.8900081494e-05 0.000113046338114 38007999102.0 +UniRef50_I6TYU2 Peptide synthetase 0.00568245088731 0.00131991713018 -1.76120841206e+12 +UniRef50_D3QF29 ABC transporter 0.0108437550286 0.00300708603153 -3.16375944086e+12 +UniRef50_Q8D820 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.78194721416e-05 5.95071185313e-06 -4791564174.53 +UniRef50_UPI0003B36CD8 metal dependent hydrolase 5.52168911759e-06 1.15389153335e-05 2429228063.03 +UniRef50_UPI000470D6FC hypothetical protein 0.000558524529389 9.01576586826e-05 -1.89085453212e+11 +UniRef50_S4X9L5 2 oxoglutarate ferredoxin oxidoreductase subunit beta 0.0114404834969 0.000704497677118 -4.33424922081e+12 +UniRef50_Q97L63 Spore photoproduct lyase 0.000251798222424 0.00101598528715 3.0851169566e+11 +UniRef50_UPI000427F61C O acetylhomoserine aminocarboxypropyltransferase 4.80092053304e-05 6.75559670035e-06 -16654588042.7 +UniRef50_H9UVF1 Short chain dehydrogenase reductase SDR 0.00417589910305 0.00163271561365 -1.02671438304e+12 +UniRef50_V9R1Z5 Chemotaxis protein CheY 0.000741983596461 0.0002428287112 -2.01514952499e+11 +UniRef50_Q9RT22 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.000127526494248 0.0306512436277 1.23227991749e+13 +UniRef50_V4FVJ2 IS3 Spn1, transposase 0.000381917154385 4.11371599247e-05 -1.37577065604e+11 +UniRef50_UPI0000167300 COG0174 2.95723761745e-05 5.03560344835e-05 8390617903.51 +UniRef50_U3ST30 0.00321881920049 0.00312375900188 -38376968698.7 +UniRef50_A6C7R0 4.84496331142e-06 5.39135851219e-06 220586447.574 +UniRef50_Q07GL5 Pirin protein, putative 0.000163318030493 7.6313959539e-06 -62852604853.2 +UniRef50_A1B348 Cbb3 type cytochrome c oxidase subunit CcoP 0.0136581272347 0.00506429725071 -3.46943462269e+12 +UniRef50_M7M6N5 Transposase domain protein 0.000244243585442 0.000644118984519 1.6143460563e+11 +UniRef50_M1LYE3 Flagellar basal body protein FliL 0.000706339265833 0.000501954739708 -82512541276.8 +UniRef50_Q9RXG4 Lon protease 0.000284005533994 0.0504697663211 2.02606074783e+13 +UniRef50_UPI000287D648 multidrug efflux associated protein 3.35002361247e-06 2.88471350202e-06 -187851401.586 +UniRef50_UPI0003B6CDE7 serine ammonia lyase 4.24305704395e-06 3.48140028116e-05 12341865954.1 +UniRef50_A4AEG2 3.72612544287e-05 9.34581160418e-05 22687362646.2 +UniRef50_B9DLC6 Transcription repair coupling factor 0.0101739401259 0.00358605458647 -2.65961023471e+12 +UniRef50_UPI0003C808C2 PREDICTED 4.02129300966e-07 1.01094027683e-06 245784461.907 +UniRef50_UPI0003775EA0 30S ribosomal protein S4, partial 2.09074650817e-05 0.000269567901264 1.00387269493e+11 +UniRef50_C5CV27 0.000312298694041 0.000285482025943 -10826217988.7 +UniRef50_P54978 Phytoene desaturase 1.679693469e-05 3.01378114058e-05 5385875641.14 +UniRef50_Q4L5Y5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.016400846572 0.0246547981902 3.33222155564e+12 +UniRef50_G8RAR9 Proline dehydrogenase 0.00948274430694 0.000915805065464 -3.45857849995e+12 +UniRef50_Q2FWK2 3 isopropylmalate dehydrogenase 0.0113165078642 0.000949521928702 -4.18527943938e+12 +UniRef50_R9YQ24 0.00887621566963 0.00163250803704 -2.92437366157e+12 +UniRef50_UPI0003626E85 PhoB family transcriptional regulator 9.96388947703e-05 2.95977809913e-05 -28276457133.7 +UniRef50_UPI0003F822DA ABC transporter permease 5.73126320897e-05 0.000196446744309 56170148470.4 +UniRef50_C5VTT8 tRNA specific adenosine deaminase 0.000256212209626 0.000792796524005 2.16625672345e+11 +UniRef50_K6U2B0 ABC type sugar transport system, periplasmic component 0.000158385729588 0.00184013748086 6.78943819402e+11 +UniRef50_A5ITW6 0.0121051911068 0.000315284738642 -4.75972987926e+12 +UniRef50_D8JKJ3 Transcription repair coupling factor 3.80274669728e-05 0.00630447377816 2.52984127377e+12 +UniRef50_U6B4B7 Lipoprotein 3.25593662758e-05 9.57026190087e-06 -9280983544.18 +UniRef50_C3T922 Membrane associated protein 0.00325192515238 0.000758152611373 -1.00676657684e+12 +UniRef50_B2JSF8 Major facilitator superfamily MFS_1 0.000770992638191 0.000367038528455 -1.63081231175e+11 +UniRef50_A7GWQ0 S ribosylhomocysteine lyase 8.93000762329e-06 0.000469883756694 1.86092685039e+11 +UniRef50_UPI00046650D5 DNA recombination protein RecN 3.92385279295e-06 1.19037562535e-05 3221584951.45 +UniRef50_UPI0000E0F611 UTP glucose 1 phosphate uridylyltransferase 0.00085692130517 0.000261145479274 -2.40522011906e+11 +UniRef50_D8HI13 NPQTN specific sortase B 0.0138265985307 0.000533704888912 -5.36650428534e+12 +UniRef50_A5UK93 Mg dependent DNase, TatD related 0.0021290659579 0.00118196942019 -3.82354494455e+11 +UniRef50_Q9RSH5 Membrane protein insertase YidC 0.000227982246464 0.0380320244727 1.52619557545e+13 +UniRef50_A0A059IP43 9.13671249766e-05 5.92477950321e-05 -12966967647.1 +UniRef50_Q2FJ80 FMN dependent NADPH azoreductase 0.0185592461058 0.00557423277481 -5.24220922576e+12 +UniRef50_UPI00046F326D hypothetical protein 0.000337634843705 0.000330787682637 -2764282947.27 +UniRef50_C6SQB9 0.00471556158544 0.00131761107357 -1.37179431918e+12 +UniRef50_Q930I4 Histidinol dehydrogenase 2 0.000552067536772 0.00013536289008 -1.68228779411e+11 +UniRef50_A0A023VI11 Beta lactamase 0.00440264323697 0.000971503193893 -1.38519334021e+12 +UniRef50_F5X3F3 HI0933 like oxidoreductase dehydrogenase 0.00461334314387 0.00496447499705 1.41756238001e+11 +UniRef50_UPI00036BFC25 hypothetical protein 8.17238696985e-06 4.46865155601e-05 14741201790.6 +UniRef50_UPI00046A9281 glycine cleavage system protein H 7.25175726586e-05 4.2109723022e-05 -12276022044.6 +UniRef50_W6JZG7 0.00018996331545 5.51749449576e-05 -54415719206.9 +UniRef50_B9KSX5 Sporulation domain protein 0.000114853749147 0.000292844959078 71857235646.9 +UniRef50_UPI00037A69CE hypothetical protein 3.71292529424e-06 0.000180340969236 71306908809.2 +UniRef50_B9KUJ5 0.000320667299987 6.88145081358e-05 -1.01676062652e+11 +UniRef50_L5N059 6.54809863542e-06 2.80456329253e-05 8678818397.24 +UniRef50_Q8VVL8 ORF 5 0.000806448360266 0.000529094249114 -1.1197125819e+11 +UniRef50_UPI000441F366 0.000129681746904 2.5530086296e-05 -42047303472.0 +UniRef50_UPI000363D669 hypothetical protein 1.35543753366e-05 7.95990891992e-05 26663061446.1 +UniRef50_T0MER8 0.000348005966761 0.000518180593909 68701585257.2 +UniRef50_F1VLT2 0.0005789719829 0.000639342072811 24372146121.4 +UniRef50_A3M519 EsvK1 0.000408829590809 0.00210564495683 6.85025185528e+11 +UniRef50_A6M0I4 Transcriptional regulatory protein 0.000418554545908 0.0012225577219 3.24585948376e+11 +UniRef50_UPI000372ED7A hypothetical protein 1.0482815913e-05 6.92945939606e-06 -1434533630.48 +UniRef50_A7X766 Imidazoleglycerol phosphate dehydratase 0.0131656631923 0.0109802267631 -8.82287504789e+11 +UniRef50_F3T6C6 Conserved domain protein 1.82463189118e-05 0.000102903168863 34177009181.7 +UniRef50_D3G1Y7 Cadmium resistance transporter, putative 0.0130973520699 0.00678809564193 -2.54712424325e+12 +UniRef50_A9FQ61 9.35086209409e-05 2.84356395773e-05 -26270761111.8 +UniRef50_I0IJ24 1.55541118659e-05 3.13118097559e-05 6361576006.89 +UniRef50_S5YT17 Transposase 0.00129478547536 7.61189957441e-05 -4.91990612542e+11 +UniRef50_UPI00047ABD8A arginine tRNA ligase 3.20281599027e-06 1.10506827367e-05 3168280109.69 +UniRef50_UPI00028A110F UrtA 5.67815879186e-05 0.000289335144547 93884724563.8 +UniRef50_Q2CDM2 0.000618388949015 0.000149146733034 -1.89438840841e+11 +UniRef50_F8CGQ9 1.99876564936e-05 6.66717267717e-06 -5377642777.4 +UniRef50_Q4L732 DNA polymerase 0.0096210484349 0.00386334423775 -2.32445583937e+12 +UniRef50_S5CN83 Outer membrane receptor for monomeric catechols 0.000103895576076 0.00748927075989 2.98156659045e+12 +UniRef50_Q5LMC4 Peptidase, family S49 0.00537228637452 0.000299307471484 -2.04802383561e+12 +UniRef50_W7J7H8 Basic proline rich protein 0.00026314464008 0.000308821568063 18440336345.7 +UniRef50_UPI00037AC687 hypothetical protein 5.74955104166e-06 3.1246709291e-06 -1059696312.34 +UniRef50_G7M7P5 Aspartate semialdehyde dehydrogenase 0.0151801086402 0.00557957797411 -3.87585204166e+12 +UniRef50_P77280 0.00322488994571 0.00132915114518 -7.65333017105e+11 +UniRef50_UPI000472DE9D hypothetical protein, partial 9.77964138116e-06 3.42787963245e-05 9890609489.05 +UniRef50_UPI00047A4340 hypothetical protein 1.82734146786e-06 3.74954873306e-07 -586346291.008 +UniRef50_P35598 Putative ABC transporter ATP binding protein exp8 0.00615679346361 0.00346641124066 -1.08614031811e+12 +UniRef50_D2N3U7 Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative 0.0185189684308 0.00114316143946 -7.01482650752e+12 +UniRef50_UPI000365A456 hypothetical protein 1.46711065423e-05 4.99379291617e-06 -3906850264.86 +UniRef50_UPI0003676E73 hypothetical protein 8.49407490501e-06 8.23047469559e-06 -106418639.281 +UniRef50_UPI0003A0CBF8 MULTISPECIES 2.1761733673e-05 2.69720846801e-05 2103482639.76 +UniRef50_P0AAG7 Multidrug resistance like ATP binding protein MdlB 0.00362555793418 0.00138551737165 -9.04331863482e+11 +UniRef50_J8RWM9 Sulfate ABC transporter permease 3.59470576485e-05 4.88450919042e-05 5207094705.7 +UniRef50_UPI0003AD9F9E PREDICTED 2.62024477787e-06 0.000111650426235 44016822205.0 +UniRef50_UPI0004268641 50S ribosomal protein L21 0.000174170271306 0.000533610056723 1.45110252195e+11 +UniRef50_Q7MGT4 Phosphoribosylamine glycine ligase 0.00269549286978 0.00191132722778 -3.1657729247e+11 +UniRef50_F0YT45 9.30648393263e-05 0.000304541484263 85375716671.3 +UniRef50_S4YSN2 NAD transhydrogenase subunit alpha 3.47675440264e-05 2.82355334621e-05 -2637052821.59 +UniRef50_C3P7X7 3 dehydroquinate dehydratase 1.40149481772e-05 0.00797302724206 3.2131509311e+12 +UniRef50_UPI00016B1721 pyrophosphatase, MutT nudix family protein 8.64472431158e-05 0.000485697079988 1.61182058492e+11 +UniRef50_UPI0003B5F58F anthranilate synthase subunit I 3.37609441314e-05 3.46722114391e-05 367889794.626 +UniRef50_Q4UV65 Lipid A export ATP binding permease protein MsbA 2.82857286653e-06 4.28928363009e-06 589706860.186 +UniRef50_I0C7F8 Aminobenzoyl glutamate transport protein 0.011505852907 0.00255722850754 -3.61266948203e+12 +UniRef50_UPI00041D865E peptide ABC transporter permease 1.42774826121e-05 6.55129913751e-06 -3119155079.62 +UniRef50_Q1LNK1 1.90446807371e-05 1.99719684057e-05 374357410.913 +UniRef50_A6LQM0 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 0.0018596256697 0.000336863161818 -6.14757910828e+11 +UniRef50_A3PS70 YD repeat protein 0.0178464423983 0.00394190970567 -5.61343047581e+12 +UniRef50_I6U2R2 0.00282659351591 0.00113809634826 -6.81667026771e+11 +UniRef50_UPI00038092FF hypothetical protein 8.68289799064e-06 1.18108598478e-05 1262796586.14 +UniRef50_Q828X4 Putative cytochrome c oxidase subunit 1 beta 4.2835530908e-05 0.000104455297438 24876655907.7 +UniRef50_T3I3Z9 Homocitrate synthase 0.00023436273396 0.00393933040863 1.49574091533e+12 +UniRef50_Q3SFK0 Chromate transporter 8.47648178546e-05 0.00681067727041 2.71533339333e+12 +UniRef50_U2BSH5 Glyoxalase family protein 6.98444338041e-05 3.73485901213e-05 -13118970863.6 +UniRef50_G8RET5 D specific D 2 hydroxyacid dehydrogenase ddh like protein 0.0192881411404 0.00885030533241 -4.21388240234e+12 +UniRef50_UPI00046F8D3D hypothetical protein, partial 1.71870560522e-05 5.44835496114e-05 15057052129.3 +UniRef50_S5Z097 0.0013772739649 0.000272600035571 -4.45970421144e+11 +UniRef50_UPI0002557980 hemolysin type calcium binding protein 1.6239079418e-06 4.02398115472e-06 968939008.266 +UniRef50_X1M4K5 Marine sediment metagenome DNA, contig 0.000191819905193 0.0105954605861 4.20007740991e+12 +UniRef50_K0NK11 MaoC domain protein dehydratase 0.000440637162124 0.000425937555561 -5934411553.94 +UniRef50_F0KIW4 0.000101383882411 0.00729510827071 2.90419481248e+12 +UniRef50_UPI00036F6565 hypothetical protein 6.44861232762e-06 0.00095556043908 3.83168091372e+11 +UniRef50_UPI0003735CF6 hypothetical protein 7.46106680375e-06 2.82210088947e-05 8381043375.23 +UniRef50_A7GPF0 40 residue YVTN family beta propeller repeat protein 6.10500934901e-06 0.000595819283947 2.38074889263e+11 +UniRef50_Q9V150 Tryptophan synthase beta chain 2 0.00383061466461 0.00571815498712 7.62023190922e+11 +UniRef50_UPI00047A278A hypothetical protein 0.000114516141402 1.04477878889e-05 -42013671375.5 +UniRef50_I0C7M3 Transporter, drug metabolite exporter family 0.0115676540833 0.0017248427924 -3.97366370301e+12 +UniRef50_A0A024HE97 Lon protease 2 0.000708907774043 0.000651036257387 -23363441437.4 +UniRef50_B2V4S9 Elongation factor P 0.000353485280728 0.00118438200682 3.35443204573e+11 +UniRef50_B7JB82 Bifunctional protein GlmU 4.25502632061e-06 6.87990841872e-06 1059697113.93 +UniRef50_Q49XB9 0.00271001707394 0.00505559369371 9.46938064863e+11 +UniRef50_Q9JVD3 Ribonuclease 3 5.97440078609e-06 0.00201162066148 8.09704007488e+11 +UniRef50_A4G9I7 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.000178136611464 0.0108084973648 4.2916070853e+12 +UniRef50_B7UT13 1.64708801895e-05 0.000346527359113 1.3324785079e+11 +UniRef50_UPI00016A620A SsrA binding protein, partial 0.000108351431927 0.000580690553869 1.90689099781e+11 +UniRef50_P02906 Sulfate binding protein 0.00269219432221 0.000653199635336 -8.23167176368e+11 +UniRef50_C1D8I2 DUF1376 domain containing protein 3.89975733757e-06 1.16332526839e-05 3122106971.97 +UniRef50_R7AXX0 1.30129559593e-05 0.00433771551145 1.74593549172e+12 +UniRef50_X1YKE3 1.82972162046e-05 2.8474602299e-05 4108735656.88 +UniRef50_Q820K4 tRNA ) methyltransferase 9.34392744243e-06 0.00483039032914 1.94631559326e+12 +UniRef50_L7WWS4 0.00975176111395 0.00198692980585 -3.13475768428e+12 +UniRef50_D9STU2 Transcriptional antiterminator, BglG 0.00040438159484 0.00113424131447 2.94653325201e+11 +UniRef50_UPI00047C795E hypothetical protein 3.19877229204e-05 7.42457073818e-05 17060066890.9 +UniRef50_M9VJN7 Isochorismate synthetase, enterochelin 0.000297419644424 0.00488981503896 1.8540063758e+12 +UniRef50_Q0I781 Membrane protein, putative 2.06330480711e-05 3.10989259013e-06 -7074312900.98 +UniRef50_A0A029LEA3 Prepilin type N terminal cleavage methylation domain protein 0.000674082122953 0.000496063427586 -71868331854.7 +UniRef50_A6LVZ7 Ribose 5 phosphate isomerase A 0.000327333484896 0.00574098971917 2.18555945481e+12 +UniRef50_A0A031J2A8 Conjugative relaxase domain containing protein 8.73801015494e-05 8.14698142777e-06 -31987382892.8 +UniRef50_P77698 0.00357416084623 0.00300319327654 -2.30506614444e+11 +UniRef50_B1FEG9 7.58562577622e-06 0.000144612251227 55319330200.4 +UniRef50_A3PRL8 WD 40 repeat protein 0.0021571385514 0.000894030959313 -5.09932035e+11 +UniRef50_A7X1Y2 Homoserine kinase 0.0177115504993 0.00328287360686 -5.82503392124e+12 +UniRef50_W4HHB0 Lipoprotein 2.95059924398e-05 2.57707069277e-05 -1507980598.34 +UniRef50_U5P9W8 Haloacid dehalogenase 0.00516875808853 0.00644806941442 5.16473681177e+11 +UniRef50_R7PUA8 0.00277105543127 0.00116995512095 -6.46383842986e+11 +UniRef50_P42454 Rubredoxin NAD reductase 9.61339530144e-05 0.00891875489119 3.56180033848e+12 +UniRef50_Q46509 Aldehyde oxidoreductase 1.95527903808e-06 1.04484689719e-05 3428804999.44 +UniRef50_F8FKS7 YyzM 3.83291087711e-05 4.31317648386e-05 1938891189.67 +UniRef50_A1AHE9 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00474038978031 0.00993496555168 2.09711398352e+12 +UniRef50_UPI00032A0F3F PREDICTED 1.84358759547e-05 1.06604097327e-05 -3139051129.52 +UniRef50_B7MIX6 Thiazole synthase 0.00360554367745 0.000798748159054 -1.13313779403e+12 +UniRef50_Q6MCC8 Leucine tRNA ligase 6.80970865623e-06 2.43997740574e-06 -1764114128.46 +UniRef50_G7U922 0.000344965000067 0.0093852481019 3.64967322496e+12 +UniRef50_Q9HUG6 Putative lipopolysaccharide biosynthesis protein PA4999 0.000923671013764 0.00044745209392 -1.92255421804e+11 +UniRef50_UPI0003957ECC PREDICTED 2.21134360022e-05 4.86451413621e-06 -6963601425.38 +UniRef50_Q00673 Probable NADH ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial 1.40622820891e-05 1.067456555e-05 -1367662738.79 +UniRef50_T7R7U1 Cardiolipin synthase 2 0.000632740158944 0.000514282224196 -47822921900.1 +UniRef50_L8A918 Glucitol operon activator protein 1.67613653178e-05 0.000391147953907 1.51144460053e+11 +UniRef50_R6GV45 Relaxase Mobilisation nuclease domain 1.31773661277e-05 1.40072476613e-05 335033358.906 +UniRef50_UPI000467E284 transposase, partial 0.00618360991507 0.00246476735922 -1.50134237513e+12 +UniRef50_W1MJT1 0.000119302751488 0.000526959262801 1.64575936125e+11 +UniRef50_A3PPZ3 HNH endonuclease 0.00170321982326 0.000604112608529 -4.43723070149e+11 +UniRef50_UPI0002485FE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 9.05170018724e-05 6.00337928758e-05 -12306445543.0 +UniRef50_A4WUJ0 Membrane protein involved in aromatic hydrocarbon degradation 0.0143834913405 0.00321030908671 -4.51075078622e+12 +UniRef50_G4LLE1 0.000240948503526 0.000279921047585 15733694283.5 +UniRef50_D3E1F7 Glycyl radical enzyme activating protein 0.00242993795847 0.000224575441206 -8.90331911059e+11 +UniRef50_I1ZNG1 0.00028453717753 0.000996146410384 2.8728537973e+11 +UniRef50_W1S615 Transposase 2.23952286323e-05 5.84388035934e-05 14551233516.2 +UniRef50_UPI0002BB9C7E hypothetical protein, partial 4.29745563515e-05 0.0207335782421 8.35305061018e+12 +UniRef50_UPI0003630D50 hypothetical protein 6.25724804935e-05 0.000418477321272 1.43683151666e+11 +UniRef50_UPI000372EB1D hypothetical protein 5.17999672013e-06 7.73057034385e-06 1029697870.95 +UniRef50_UPI0003C7B9A1 hypothetical protein 1.04853287353e-05 9.32691887922e-05 33420860177.2 +UniRef50_K0N5S7 ATP dependent DNA helicase recG 0.00485367531638 0.00192149056604 -1.18375896567e+12 +UniRef50_UPI000361113C hypothetical protein 1.84665459854e-05 1.25629740332e-05 -2383344442.08 +UniRef50_A1B0G9 Permease YjgP YjgQ family protein 0.0045826395547 0.00255635345531 -8.1803656365e+11 +UniRef50_UPI0003704086 hypothetical protein 2.3059155659e-05 1.26316462061e-05 -4209713526.07 +UniRef50_D8MD39 Histidine triad protein 0.0235903287683 0.000847823271214 -9.18142855111e+12 +UniRef50_A6KYZ4 2.82590521797e-05 0.00798051071653 3.210421582e+12 +UniRef50_C0PBW7 0.000134018694272 0.000629077005151 1.9986111515e+11 +UniRef50_UPI00047AE4DE hypothetical protein 3.16455890568e-05 2.09721836894e-05 -4308984724.23 +UniRef50_UPI0003B51919 LysR family transcriptional regulator 2.10407545011e-05 3.5714977826e-05 5924164029.23 +UniRef50_UPI000362B9D7 hypothetical protein 2.5924171793e-05 1.77580499252e-05 -3296763607.61 +UniRef50_Q8CQE3 0.0188346667523 0.00508187303468 -5.55217158955e+12 +UniRef50_A6VWE9 Hemolysin type calcium binding region 2.25830962632e-06 5.28616807798e-07 -698298216.554 +UniRef50_G0DXM7 0.00025679318969 0.00178078822592 6.15255497648e+11 +UniRef50_O75600 2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial 0.00382283411204 0.000935963212015 -1.16546520823e+12 +UniRef50_Y5VS88 0.0201595997002 0.00123048627164 -7.64191537747e+12 +UniRef50_Q8ZAW9 Sulfoxide reductase catalytic subunit YedY 0.00526538135016 0.00164094774279 -1.4632283241e+12 +UniRef50_UPI0002B44272 PREDICTED 4.17696313465e-05 7.61169957825e-05 13866452512.4 +UniRef50_I2FJ48 Type II R M system DNA modification enzyme 0.000362036563254 0.00462002353444 1.71900159165e+12 +UniRef50_UPI00021A4B49 PREDICTED 1.47353047464e-05 1.11556483699e-05 -1445151206.52 +UniRef50_Z5X4K7 Peptide chain release factor 3 2.251193855e-05 4.76300227494e-05 10140478824.9 +UniRef50_X5EDT3 Transcriptional regulator 0.000116989459351 0.000181547154827 26062733875.7 +UniRef50_C7C6J2 0.000240645211634 1.22912768053e-05 -92189285708.4 +UniRef50_R7Y8S1 Phenol hydroxylase 0.000109257947678 7.35711851151e-05 -14407183972.5 +UniRef50_A6LPT1 Protein translocase subunit SecY 9.11801905478e-05 0.00207757073798 8.01930239751e+11 +UniRef50_C5YXP4 3.00116684653e-05 4.61774897982e-05 6526340449.03 +UniRef50_W8G3Q0 RNA helicase 0.000286709251694 0.000397078411985 44557384391.4 +UniRef50_UPI0004743A90 hypothetical protein, partial 2.3604179684e-05 0.000159302789758 54783194096.1 +UniRef50_A7WY72 0.00817496347434 0.00348899025683 -1.89178489127e+12 +UniRef50_UPI0004710467 membrane protein 1.02983807623e-05 1.50779122806e-05 1929555525.38 +UniRef50_Q3J0K0 PAS PAC sensor hybrid histidine kinase 3.99315220946e-05 6.2766568591e-05 9218788488.13 +UniRef50_Q0C161 Methionine tRNA ligase 0.00705542363086 0.00197500707064 -2.05102650908e+12 +UniRef50_S4YUV8 ABC transporter 0.000235855267876 0.00986755039602 3.88843351742e+12 +UniRef50_Q9RYR2 Extracellular solute binding protein, family 5 0.00106094764695 0.224438113631 9.01801030538e+13 +UniRef50_Q57I24 Small heat shock protein IbpA 0.000999406228507 0.000431119277652 -2.29424415725e+11 +UniRef50_A6M276 0.000174492752936 0.00101238837568 3.38268745037e+11 +UniRef50_D3QC45 D 3 phosphoglycerate dehydrogenase 0.00954437552519 0.00787562453815 -6.73695251345e+11 +UniRef50_D3E414 Thioredoxin disulfide reductase TrxB 0.00265195827691 0.000977441371624 -6.76023023299e+11 +UniRef50_G2DRR8 1.12212809947e-05 8.98508127128e-06 -902781269.601 +UniRef50_UPI000382579F hypothetical protein 3.50006607366e-05 0.000160898216948 50826388379.1 +UniRef50_W4ANY2 Diadenosine tetraphosphatase 3.47891440653e-06 4.2650031749e-06 317353682.185 +UniRef50_UPI000441FCBD PREDICTED 9.18104448428e-06 1.48384140238e-05 2283949506.84 +UniRef50_I6STV8 0.00088878967274 0.00324926679388 9.52953580116e+11 +UniRef50_UPI0003167C65 hypothetical protein 5.05361426384e-06 2.9193153044e-05 9745428031.02 +UniRef50_UPI0002D70FB9 hypothetical protein 9.99291300444e-05 0.000158275039623 23554959681.7 +UniRef50_Q9FNM5 Translation factor GUF1 homolog, chloroplastic 0.000234051297385 0.00545133271958 2.10628053338e+12 +UniRef50_Q17ZB6 30S ribosomal protein S11 0.000305244734926 0.000945013456618 2.58282483792e+11 +UniRef50_W5X7S1 FHA domain containing protein 1.88499303439e-06 0.000572487607239 2.30359277436e+11 +UniRef50_Q06584 Pyocin S2 0.00048432801628 9.40499061074e-05 -1.57560062328e+11 +UniRef50_P59339 Transcriptional regulatory protein DcuR 0.00396153735527 0.000461432351874 -1.41303534099e+12 +UniRef50_M1N6P4 0.000961804890904 0.00100229692073 16347129333.8 +UniRef50_R1FSG8 0.00049203935164 0.000343391517665 -60010954689.8 +UniRef50_UPI0002DB7074 hypothetical protein 6.17747138994e-05 2.5498953495e-05 -14644969628.9 +UniRef50_Q5HF39 Acetoin utilization protein AcuC 0.00882286997334 0.0012707270887 -3.04889275774e+12 +UniRef50_E1VHW6 0.00221644887336 0.000545891850939 -6.74424369991e+11 +UniRef50_UPI0002555FE2 cobalamin adenolsyltransferase cobinamide ATP dependent adenolsyltransferase 3.60711697531e-05 0.000945321112419 3.67075359606e+11 +UniRef50_A6M1L4 Putative cell wall binding repeat containing protein 0.000762295016662 0.000883768062641 49040159303.6 +UniRef50_UPI0003304489 50S ribosomal protein L21 0.000204887761299 5.12385842871e-05 -62030058247.2 +UniRef50_UPI000470B9A7 hypothetical protein 0.000165145844943 0.000133854160303 -12632837081.3 +UniRef50_Q5HHC0 Inactive signal peptidase IA 0.0146351372408 0.00232630589915 -4.96922625895e+12 +UniRef50_UPI000225E6BE two component transcriptional regulator, winged helix family protein 0.000110624387564 3.37255606108e-05 -31045000095.7 +UniRef50_UPI0002000266 preprotein translocase subunit SecF 0.000116640169769 0.000255182945321 55931418601.4 +UniRef50_UPI00037E0BE4 hypothetical protein, partial 1.25982197285e-05 0.000149323860013 55197818795.3 +UniRef50_P69789 Phosphotransferase enzyme IIB component GlvB 0.0122033296646 0.00273594243939 -3.82210040072e+12 +UniRef50_UPI0002236A65 PREDICTED 8.78010452465e-06 1.78392596034e-05 3657292073.63 +UniRef50_W5X9J0 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.38081106343e-06 9.66901326737e-06 1731199851.89 +UniRef50_C4WZ51 Sugar ABC transport system permease component 0.00386602781633 0.00120447347645 -1.07450214795e+12 +UniRef50_G7M6K7 Phosphoglycerate mutase 0.000206276496643 0.00674934090445 2.64151539386e+12 +UniRef50_U5MSL5 NADPH dependent FMN reductase 0.00127460586271 0.00119011211164 -34111164161.9 +UniRef50_E1VM94 0.000364134394391 0.000508378985802 58233311632.8 +UniRef50_M9VFH2 ABC transporter associated permease 0.000199556703666 0.00508080667036 1.97062051123e+12 +UniRef50_UPI000350CE44 PREDICTED 2.08207074995e-05 4.75823740487e-05 10804013188.5 +UniRef50_UPI00037A0BCD hypothetical protein 4.98511274778e-05 2.90609822392e-05 -8393236756.59 +UniRef50_UPI000366EF31 hypothetical protein 1.17229900425e-06 3.02941265129e-05 11756839130.3 +UniRef50_UPI00035CAB47 phosphoribosylglycinamide synthetase 2.7887496877e-05 7.10194828436e-06 -8391381034.2 +UniRef50_Q8A9V4 ATP synthase subunit beta 1.44847987138e-05 5.84272603368e-06 -3488910791.12 +UniRef50_Q8DNY1 1 acyl sn glycerol 3 phosphate acyltransferase 0.0057831945315 0.00302372163657 -1.11403307022e+12 +UniRef50_Q8KG38 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.228931421e-05 4.07051787282e-05 7434710494.07 +UniRef50_L0GWW9 2.07934498478e-05 4.58425124139e-06 -6543852386.64 +UniRef50_X1R6D7 Marine sediment metagenome DNA, contig 1.10229011529e-05 2.28582736057e-05 4778085095.55 +UniRef50_UPI000288AE11 1 phosphofructokinase 8.25260328229e-06 9.14031768089e-06 358381196.195 +UniRef50_B9DKC4 Haloacid dehalogenase like hydrolase family protein 0.0150043086498 0.00463430995065 -4.18649572906e+12 +UniRef50_E2XJ48 1 acyl sn glycerol 3 phosphate acyltransferase 0.00147134102421 0.000538897619392 -3.76438844892e+11 +UniRef50_Q92Q22 Serine tRNA ligase 0.000732513781457 0.0011643139597 1.74323030741e+11 +UniRef50_M4VHL0 Glyoxalase family protein 8.61958004611e-06 1.93713087747e-05 4340604826.28 +UniRef50_UPI0001744949 GNAT family acetyltransferase 0.000102167828602 0.000316920128224 86698138664.5 +UniRef50_UPI000329B94F 0.00162682036952 0.000950796708307 -2.72919047775e+11 +UniRef50_UPI00037660D4 hypothetical protein 8.96495645163e-05 1.6214916189e-05 -29646468674.2 +UniRef50_Q3AT37 Adenine phosphoribosyltransferase 4.61923597209e-05 0.00282451985682 1.12164490449e+12 +UniRef50_K7S318 Proline dehydrogenase aldehyde dehydrogenase family protein 0.000217994359766 0.00580806907749 2.25678176147e+12 +UniRef50_Q6ZTJ3 cDNA FLJ44595 fis, clone BLADE2004849 1.2091643331e-05 1.02773546884e-05 -732450588.843 +UniRef50_A0A011PEW7 NAD specific glutamate dehydrogenase 0.000100246760541 6.34323547162e-05 -14862427395.0 +UniRef50_A4WR24 IS66 Orf2 family protein 4.75439372512e-05 7.8644938945e-05 12555856036.0 +UniRef50_Q1MR60 Glutamate tRNA ligase 1.28695657397e-05 7.04329953844e-06 -2352135161.77 +UniRef50_UPI000372FBE5 hypothetical protein 4.97414268974e-06 2.73130863481e-05 9018505684.56 +UniRef50_R7PTD3 Chlamydial polymorphic outer membrane protein repeat containing domain protein 0.00269258271682 0.00192805360378 -3.08649784761e+11 +UniRef50_A6M0N3 Iron containing alcohol dehydrogenase 0.000254807680966 0.00107140151355 3.29668950947e+11 +UniRef50_E4BLL0 0.000135513936518 6.7932281385e-05 -27283543497.4 +UniRef50_Q034H8 Ribose 5 phosphate isomerase A 0.00909402298277 0.00257807785393 -2.63056700815e+12 +UniRef50_P53607 L threonine dehydratase biosynthetic IlvA 4.09806198415e-06 2.59333444582e-05 8815171483.84 +UniRef50_A6LPD2 0.000191617253221 0.000325716954257 54137694896.6 +UniRef50_G8AVE8 1.06699385904e-05 7.97499189639e-06 -1087983051.09 +UniRef50_Q75V35 0.000811914200962 0.000501978491339 -1.25124849314e+11 +UniRef50_I6XYY5 Periplasmic binding protein 1.0490026975e-05 2.90578520179e-05 7496058822.65 +UniRef50_UPI00026286B5 ABC type sugar transport system, ATPase component 1.10288939619e-05 3.06366256846e-05 7915881910.38 +UniRef50_Q9AGG3 Rubrerythrin 0.000194580406623 0.0118817226393 4.7182427367e+12 +UniRef50_T1YAJ7 Conserved membrane protein 0.0256686025569 0.00789280131187 -7.17630909622e+12 +UniRef50_K0L607 Indigoidine systhesis protein 0.0140152343203 0.00508321729657 -3.60596488065e+12 +UniRef50_Q9RVK7 ATP dependent zinc metalloprotease FtsH 0.000201755112325 0.0521394967435 2.09679036443e+13 +UniRef50_A3PHB5 Secretion protein HlyD family protein 0.0146666115421 0.00379464817189 -4.38914502654e+12 +UniRef50_I1F0I8 4.43264007568e-05 0.000997767456984 3.84915854436e+11 +UniRef50_B1M6B8 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 3.66994623591e-05 8.48792930964e-05 19450788901.7 +UniRef50_T0W257 0.000257376810578 0.00420236376757 1.59263964497e+12 +UniRef50_P02921 Melibiose carrier protein 0.000833340156917 0.000360065131389 -1.91066935543e+11 +UniRef50_Q2CBB5 6.59289861935e-05 4.57086518367e-05 -8163197111.25 +UniRef50_A3M2F1 IcmB protein 3.47166758604e-05 0.0111191475114 4.47492074955e+12 +UniRef50_Q0FPA9 0.000686338161548 0.000338320794688 -1.40498881655e+11 +UniRef50_U5UJV7 Aminopeptidase PepS 0.0126981782461 0.00430566177993 -3.38816188515e+12 +UniRef50_Q4L629 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00723699810416 0.000632406461821 -2.66635469347e+12 +UniRef50_F3U1Z6 0.000952365178106 0.000667203396607 -1.1512331052e+11 +UniRef50_R0NVZ1 0.000291120299886 0.00303406875011 1.10736194912e+12 +UniRef50_UPI00036593BA hypothetical protein 4.12917606974e-05 0.000116043539108 30178210251.8 +UniRef50_W7VW27 1.25360097357e-05 8.61674282229e-05 29725907202.4 +UniRef50_F7ZK72 6.65294073215e-05 2.72608722224e-05 -15853189498.6 +UniRef50_B3PB28 Membrane protein, PerM family 0.00120905144553 0.00142751526495 88196524752.4 +UniRef50_A4WNY6 ATP synthase subunit a 0.0172635590343 0.00435651928708 -5.21073033313e+12 +UniRef50_UPI000376746B hypothetical protein 5.06398633312e-06 2.76758781362e-05 9128698200.03 +UniRef50_UPI00047040E8 hypothetical protein 7.02101346729e-06 5.23850836493e-05 18314031812.2 +UniRef50_UPI0001850BCC bis tetraphosphatase PrpE 8.95183704161e-06 0.00029806458431 1.16718363884e+11 +UniRef50_A1U0M3 Transposase, IS4 family 3.40882927822e-06 6.03320669062e-06 1059493366.12 +UniRef50_UPI00047D0A7B DNA methyltransferase 0.000133275499648 0.000162424970458 11767999070.2 +UniRef50_Q9RSK3 Branched chain amino acid ABC transporter, permease protein 0.000169529635709 0.00934793434431 3.70543461255e+12 +UniRef50_Q1AVI4 NADH quinone oxidoreductase subunit B 8.14984762497e-06 0.00013693838263 51993511994.6 +UniRef50_Q2YUT9 0.00832557777277 0.00151469847612 -2.74963555095e+12 +UniRef50_A8FEL7 Glycerol 3 phosphate dehydrogenase [NAD+] 1.65743093309e-05 0.00045708646179 1.7784016164e+11 +UniRef50_Q9RS18 0.000173158710486 0.00722106594778 2.84532663924e+12 +UniRef50_J9YPZ0 0.000444453170174 0.000559074181959 46273909015.6 +UniRef50_B9DZV8 0.000598119123326 0.00143691611792 3.38632639914e+11 +UniRef50_Q9RS17 0.000221579796577 0.0366633591274 1.47119935068e+13 +UniRef50_H8GVZ3 PPC, peptidase containing PKD repeats 7.83158733431e-06 0.00110766770009 4.44017335228e+11 +UniRef50_B1WUS6 Glutathione S transferase 0.000249990721098 0.00649842662101 2.52257024972e+12 +UniRef50_Q9NZB8 Molybdenum cofactor biosynthesis protein 1 2.37606010295e-06 9.35006550252e-06 2815491560.48 +UniRef50_U5MS35 0.00050016346648 0.000787736682816 1.16096836355e+11 +UniRef50_Q9KCM5 Diaminopimelate decarboxylase 8.34887874333e-06 0.000322446104942 1.26804904623e+11 +UniRef50_Q9RX22 Formamidopyrimidine DNA glycosylase 0.000613949201586 0.0241224530083 9.49067146855e+12 +UniRef50_Q9L7R4 Putative sulfoquinovose importer 0.00212078077617 0.000763193871103 -5.48074493041e+11 +UniRef50_E5G5K3 Putative conjugative transfer protein 1.38682181352e-05 1.58339775555e-05 793601200.556 +UniRef50_Q1QCP2 tRNA 2 thiocytidine biosynthesis protein TtcA 0.000242032345401 0.00188960662919 6.65145956376e+11 +UniRef50_Q4L842 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.0113959047079 0.00152231337021 -3.98608998562e+12 +UniRef50_F9HIH2 Conserved domain protein 5.58631046687e-05 6.07512673153e-06 -20100017660.4 +UniRef50_A0A011QZ11 5.69049313221e-07 8.23624520585e-05 33021000406.2 +UniRef50_E2SFH7 0.000113029677675 0.000420878914765 1.24282514748e+11 +UniRef50_A6UYI4 6 aminohexanoate dimer hydrolase 0.000196448785151 0.000408998840153 85809065486.8 +UniRef50_P67082 UPF0001 protein YggS 0.00251694113206 0.000298002080405 -8.95812924599e+11 +UniRef50_P37745 dTDP 4 dehydrorhamnose 3,5 epimerase 0.00135245527309 0.00467199205858 1.3401377356e+12 +UniRef50_B9KLT3 0.00307309099608 0.00101022344065 -8.32804946359e+11 +UniRef50_P26973 DNA topoisomerase 4 subunit A 0.000305549731936 0.000279588378933 -10480916788.9 +UniRef50_UPI0003FC94D0 cysteinyl tRNA synthetase 3.92745545883e-06 1.01932268322e-05 2529568793.09 +UniRef50_UPI000470A448 hypothetical protein 5.88686375574e-06 0.000159616944887 62062720232.8 +UniRef50_L5S037 ACT domain protein 0.000104782384182 0.00133525992958 4.96758884735e+11 +UniRef50_UPI0003013AD2 hypothetical protein 1.51012460813e-05 2.93121179116e-05 5737103344.9 +UniRef50_A6LV61 Histidine kinase 0.000187882514284 0.00151914524908 5.3744710247e+11 +UniRef50_UPI0002E3E4A1 hypothetical protein 8.54528630764e-05 1.56453968895e-05 -28182130733.6 +UniRef50_Q28VZ9 Shikimate dehydrogenase 9.60419361502e-05 8.25331412278e-05 -5453666281.73 +UniRef50_G7M2K6 Phosphoesterase, HXTX 0.000214887659684 0.00102372921604 3.26539261903e+11 +UniRef50_D3UYE0 9.34630741609e-06 0.00688077435364 2.77407982416e+12 +UniRef50_P0AB60 Lipopolysaccharide regulatory protein 0.00288266801513 0.000795531318942 -8.42602696299e+11 +UniRef50_Q5HLQ3 Putative 3 methyladenine DNA glycosylase 0.00631521739014 0.00160986108954 -1.89961007977e+12 +UniRef50_B9MQ93 Ribosomal RNA small subunit methyltransferase H 2.19554492941e-05 9.43642024745e-06 -5054085651.91 +UniRef50_UPI0003667B7C hypothetical protein 0.000163784045111 0.000335909631657 69489211507.1 +UniRef50_UPI00047095B2 hypothetical protein 3.96904865814e-05 8.59422575513e-06 -12553942089.6 +UniRef50_UPI0003189EE0 hypothetical protein 7.52531950173e-06 8.34012494952e-06 328946958.06 +UniRef50_UPI00036C1384 hypothetical protein 8.60744518598e-05 0.000143392030538 23139809878.2 +UniRef50_P47734 S glutathione dehydrogenase 7.09550053898e-06 0.0511591141552 2.06506976368e+13 +UniRef50_Q1IZT5 Oligopeptidase A 0.000297772575356 0.0382019092963 1.53023651303e+13 +UniRef50_P44742 0.0049647723182 0.00905030485776 1.64937962134e+12 +UniRef50_A0A023S121 Cation transporter 0.000117110441217 0.00588601975751 2.32897948346e+12 +UniRef50_UPI000477260F sulfite oxidase 1.18050150715e-05 2.12289600643e-05 3804562238.4 +UniRef50_UPI00047DFE8E phosphoribosylaminoimidazole carboxylase 5.47024916228e-06 1.15648935703e-05 2460482737.21 +UniRef50_Q99J99 3 mercaptopyruvate sulfurtransferase 3.85318637964e-05 1.23930831582e-05 -10552546502.5 +UniRef50_R9SLZ6 SAM dependent methyltransferase 0.00234044764352 0.000222321233524 -8.55113624051e+11 +UniRef50_UPI00035E4699 hypothetical protein 1.39177235013e-05 3.81583415989e-05 9786234991.84 +UniRef50_C5ZSV0 Transcriptional regulator, LuxR family 0.000149796027328 0.00173203169082 6.38767953566e+11 +UniRef50_E9G921 1.21774833618e-06 8.60145743281e-05 34233519227.0 +UniRef50_V6Q9S0 0.0395163555086 0.0131467175661 -1.06457464292e+13 +UniRef50_G6DMD6 0.000308258473899 3.33924797446e-05 -1.10966774825e+11 +UniRef50_UPI00046C8B78 hypothetical protein 3.86324313751e-05 0.000297095777552 1.04344824554e+11 +UniRef50_UPI000476D6FD hypothetical protein 1.39505005493e-05 1.35071264644e-05 -178995558.886 +UniRef50_UPI00035D082A hypothetical protein 5.72897374815e-06 2.94966096167e-05 9595286261.8 +UniRef50_I3X451 4.8762730393e-05 2.1677387844e-05 -10934685161.6 +UniRef50_C8VYT7 dTDP 4 dehydrorhamnose reductase 0.00338181581552 0.00214675516122 -4.98609142039e+11 +UniRef50_K2J0W9 Cupin 0.000308514691359 0.000148052931154 -64780381682.0 +UniRef50_UPI00034BFA99 hypothetical protein 5.53053643752e-05 7.15518069096e-05 6558888217.41 +UniRef50_UPI000350BCA6 PREDICTED 5.52223373927e-06 0.00206376998464 8.30939874579e+11 +UniRef50_UPI00046D05B1 hypothetical protein 8.19920323476e-06 9.36854709526e-06 472078465.947 +UniRef50_F3RDV1 Amino acid ABC transporter permease 0.000815436775779 0.00542440417343 1.86069669682e+12 +UniRef50_UPI00037F5AC8 hypothetical protein 1.56087895639e-05 1.491240312e-05 -281139753.025 +UniRef50_P45073 Lipopolysaccharide export system ATP binding protein LptB 0.00433148914032 0.00199718365805 -9.42387768342e+11 +UniRef50_B9KSN1 0.0086120016255 0.000382699833941 -3.32227011814e+12 +UniRef50_UPI000023CA35 hypothetical protein FG01684.1 4.8471439838e-07 1.26775090262e-06 316121445.7 +UniRef50_UPI0003ACFD99 hypothetical protein 9.75169014309e-05 3.35815546289e-05 -25811484078.9 +UniRef50_P38036 CRISPR associated endonuclease helicase Cas3 0.00252200016565 0.000933709121083 -6.41212585216e+11 +UniRef50_V5SXK1 Histidine kinase 0.000149670514747 0.000160698750524 4452234114.85 +UniRef50_C1EGE2 Predicted protein 2.96478676684e-05 7.51153078373e-06 -8936710843.75 +UniRef50_C6STX0 0.00216928373759 0.000881542403566 -5.19876978907e+11 +UniRef50_UPI0003615DBA hypothetical protein 4.25434712329e-05 3.92108605423e-05 -1345415831.53 +UniRef50_D3QHK9 Glycerate kinase 0.0244992486178 0.0060040213785 -7.46675019847e+12 +UniRef50_UPI0003B42182 DeoR family transcriptional regulator 1.09721850873e-05 1.19975695998e-05 413960310.579 +UniRef50_I6U493 0.0260687080754 0.0023778289647 -9.56429861677e+12 +UniRef50_K2KBP7 1.36452838754e-06 2.45095057125e-06 438601967.463 +UniRef50_UPI00047AB8B0 high frequency lysogenization protein HflD 6.41019431396e-06 7.17850332245e-06 310175774.939 +UniRef50_S5Y296 Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB 0.00635899830222 0.00153919198301 -1.94581495674e+12 +UniRef50_P0ADU0 0.00166235689929 0.00161934166987 -17365775973.1 +UniRef50_A0K2M1 Chromosome segregation ATPase 0.000347974776446 0.00875851366357 3.39543775765e+12 +UniRef50_B7VQP3 NH dependent NAD(+) synthetase 1.56596828703e-05 2.04306344906e-05 1926091715.28 +UniRef50_K9P9J8 LysM repeat containing protein 3.67610835645e-05 2.72627421618e-05 -3834596982.03 +UniRef50_C4Z3J5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.0217274662798 0.00603758633555 -6.33419706999e+12 +UniRef50_Q8R5T0 Glucosamine 6 phosphate deaminase 6.36972999405e-06 1.6543655634e-05 4107338628.93 +UniRef50_M3E127 Cation transport ATPase 0.000109698263541 1.65372475746e-05 -37610245359.9 +UniRef50_K0SY54 2.37159856396e-05 1.98458041834e-05 -1562439746.34 +UniRef50_X5EXI6 0.000911107363322 0.000223779524654 -2.77482682931e+11 +UniRef50_UPI0004643DB1 hypothetical protein 0.000334123146079 0.000114206805968 -88782925179.8 +UniRef50_Q6D8D5 Outer membrane protein assembly factor BamA 0.00136656872567 0.000863440062441 -2.03119215429e+11 +UniRef50_Q4L4Z3 3 oxoacyl [acyl carrier protein] synthase 3 0.00759353037144 0.000950607340545 -2.6818295454e+12 +UniRef50_Q6FD06 0.000126108904961 0.00677745921864 2.68523174288e+12 +UniRef50_Q5HRT0 Acetyltransferase, GNAT family 0.0373369972196 0.00404780401371 -1.34392558016e+13 +UniRef50_F4EG72 ABC type polar amino acid transport system, ATPase component 0.00411955312168 0.00224005046027 -7.58778288502e+11 +UniRef50_UPI0002559D42 non specific serine threonine protein kinase 3.51381330707e-06 0.000442407617322 1.77186814513e+11 +UniRef50_Q1IZL1 Glutamyl Q tRNA synthetase 7.42782831309e-06 0.000425497156138 1.68779717931e+11 +UniRef50_UPI000470F3D8 hypothetical protein 1.50262562888e-05 4.2914682856e-05 11258900034.7 +UniRef50_D5ANE3 0.000323673981177 6.76969056312e-05 -1.0334108659e+11 +UniRef50_P0A9J7 Ribokinase 0.00210078679337 0.000322750497486 -7.17815071606e+11 +UniRef50_M1LZF7 Transcriptional antiterminator 0.000495929021099 0.000771205913753 1.11132659592e+11 +UniRef50_E0XU72 0.000133456988552 0.000111740431165 -8767240709.26 +UniRef50_P37443 0.00486089344957 0.00143711638644 -1.38222081485e+12 +UniRef50_UPI00036CABD5 hypothetical protein 1.21622232756e-05 9.33585339199e-06 -1141040205.47 +UniRef50_B0V9N7 9.45290456222e-05 0.00469445572516 1.85704684798e+12 +UniRef50_Q2GAK4 6.15627096257e-05 2.03465912603e-05 -16639452762.8 +UniRef50_P55891 Motility protein A 0.00137322593366 0.000824767182313 -2.21419528265e+11 +UniRef50_G8P8U5 Transporter 0.00723046083601 0.00351244434113 -1.50100888418e+12 +UniRef50_G8LNB8 0.000231745730627 0.000183221813758 -19589700695.4 +UniRef50_K0I6Y3 Tricarballylate dehydrogenase 0.000712659891238 0.00592589504898 2.10464700677e+12 +UniRef50_B9MFW6 5 nucleotidase SurE 0.000159053085188 0.000989988395348 3.35458781434e+11 +UniRef50_Q97JJ9 Germination protease 0.0013089170066 0.00185094809295 2.18824601029e+11 +UniRef50_UPI0004710C19 hypothetical protein 2.95762252406e-05 1.1047200244e-05 -7480394767.83 +UniRef50_U0EEM2 1.3058071386e-05 4.85819789306e-05 14341437403.1 +UniRef50_B9KX11 ABC branched chain amino acid transporter, inner membrane subunit 0.0126700902744 0.00254854146672 -4.08619345904e+12 +UniRef50_Q8DUL1 0.000747067521347 0.0010610181025 1.26745702218e+11 +UniRef50_A5UK96 0.00152883265696 0.000636874212322 -3.60094569661e+11 +UniRef50_D8IV87 1,4 alpha glucan branching enzyme GlgB 0.000412010222809 0.000282260087542 -52381721820.5 +UniRef50_D7BEZ9 ATP dependent DNA helicase RecG 4.93445737068e-05 0.0304549403388 1.2275112129e+13 +UniRef50_UPI00047DE858 ABC transporter ATPase 1.66654644852e-05 1.36103750377e-05 -1233377100.12 +UniRef50_D4DLY8 Primosomal protein N 5.17576767137e-05 0.00438107830364 1.74779986383e+12 +UniRef50_UPI00047D2C54 DNA 3 methyladenine glycosylase 3.22053326685e-05 2.17002329181e-05 -4241037681.31 +UniRef50_B2ACV0 Putative glutathione dependent formaldehyde activating enzyme 0.00573646791987 0.00112035727572 -1.86358051309e+12 +UniRef50_UPI00040EADB4 hypothetical protein 0.000380798967031 9.57838597129e-05 -1.15064096353e+11 +UniRef50_X4ZHJ1 Methionine import ATP binding protein MetN 0.000523055684959 0.00492009958595 1.77514058063e+12 +UniRef50_J7QS02 2.20650776349e-05 1.05298207211e-05 -4656924769.62 +UniRef50_UPI0003C0FD3F 2.20550207061e-05 4.5186868752e-06 -7079633162.55 +UniRef50_UPI00037837C4 hypothetical protein, partial 4.37943223119e-05 2.69912429616e-05 -6783609330.69 +UniRef50_UPI00035A0C3F PREDICTED 4.17016094433e-05 9.57450763253e-05 21818010768.2 +UniRef50_B9KLU7 GCN5 related N acetyltransferase 0.00511802537321 0.000365340253849 -1.91871730469e+12 +UniRef50_UPI00037510F3 hypothetical protein, partial 0.000245519509095 0.000489475201976 98487906889.1 +UniRef50_Q5NYZ2 Nitrate proton symporter 0.000349074629554 0.00062682038244 1.12129368764e+11 +UniRef50_S3BZ34 1.80368166228e-05 8.25891952738e-05 26060587408.2 +UniRef50_S5XXA3 0.00220036285277 0.000175333428801 -8.17529228362e+11 +UniRef50_M1N724 0.000608125428094 0.00112402670773 2.0827567741e+11 +UniRef50_A0A022G4G2 LysR family transcriptional regulator 1.54507264034e-05 1.12377309394e-05 -1700837968.08 +UniRef50_UPI00026C800D sodium 4.89000157243e-06 6.50795470143e-06 653187532.695 +UniRef50_V7EQ63 Ribonuclease E 0.00267758359708 0.000324636333967 -9.49913684027e+11 +UniRef50_UPI0003C45913 PREDICTED 5.47608902606e-05 0.000107714299774 21377941232.0 +UniRef50_A3PS91 0.0112434888451 0.00264514244081 -3.47125795699e+12 +UniRef50_P22447 DNA gyrase subunit B 6.51699890487e-06 1.57828625218e-05 3740742847.09 +UniRef50_Q97K30 Probable M18 family aminopeptidase 1 0.000493679508123 0.00185293951898 5.4874994638e+11 +UniRef50_B9MJR9 ATP phosphoribosyltransferase 1.37703672779e-05 4.46407116557e-05 12462736847.0 +UniRef50_Q9JTQ0 Tryptophan tRNA ligase 2.15538909898e-05 0.00092541790524 3.64900994211e+11 +UniRef50_E3GYA2 Phosphate uptake regulator, PhoU 0.00276933240745 0.00107286780249 -6.84883578984e+11 +UniRef50_R7PS35 0.000444101163361 0.000521147126817 31104400907.5 +UniRef50_UPI0003610FEF hypothetical protein 3.87068967488e-05 6.00610930389e-06 -13201709175.3 +UniRef50_I9KTK5 Oligoendopeptidase F 0.00787300823183 0.00167735282022 -2.50126211891e+12 +UniRef50_A6LWM9 Collagen triple helix repeat 6.60325344921e-05 0.000200991470693 54484578676.7 +UniRef50_Q37383 NADH ubiquinone oxidoreductase subunit 9 8.77889723386e-06 1.41006136028e-05 2148442202.94 +UniRef50_A5UQY7 0.000142638779632 6.66460680616e-05 -30679190196.4 +UniRef50_A1B5M1 5 nucleotidase SurE 0.000164750955752 0.000369916540948 82827864408.5 +UniRef50_Q1R6G9 0.000652851043194 0.000251964177045 -1.61842947299e+11 +UniRef50_P48596 GTP cyclohydrolase 1 3.2438361115e-05 5.07853277604e-05 7406895577.35 +UniRef50_UPI000464508F spermidine putrescine ABC transporter ATP binding protein 4.88906220308e-05 9.58505283096e-05 18958290427.6 +UniRef50_UPI00047B2829 hypothetical protein 2.68694792578e-05 1.79602351349e-05 -3596771181.13 +UniRef50_A1B894 Protein HflC 0.00158167437796 0.000697022966759 -3.57144630595e+11 +UniRef50_P59199 DNA polymerase I 0.00742786197298 0.00537093494678 -8.3040668181e+11 +UniRef50_Q3JTX2 6.81300817105e-05 0.000140071164521 29043497947.0 +UniRef50_A8LJI8 Purine nucleoside phosphorylase DeoD type 3.02773346334e-05 0.000329039341415 1.2061388836e+11 +UniRef50_P52028 DNA polymerase I, thermostable 1.97336231941e-06 9.14825501075e-05 36135957511.3 +UniRef50_UPI000262577A single stranded DNA binding protein 1.61365321897e-05 0.0013353735878 5.32592188209e+11 +UniRef50_E4GKY2 Membrane alanyl aminopeptidase 0.000110108142818 0.00600378608755 2.37935010985e+12 +UniRef50_Q6A780 Error prone DNA polymerase 0.000200238704937 0.00459049506526 1.77240036717e+12 +UniRef50_D7CX24 Peptidase M20 8.46381140973e-05 0.0361286655965 1.45514162046e+13 +UniRef50_UPI0003694929 hypothetical protein 3.39362049457e-05 1.69781222573e-05 -6846186080.38 +UniRef50_UPI000255571F ABC transporter 0.00011370858558 5.98872240883e-06 -43487830633.5 +UniRef50_A0A023VS51 1.53179704397e-05 2.0453904998e-05 2073439806.19 +UniRef50_UPI000255A6AD transcriptional regulator 0.00188154993113 0.00094746350882 -3.77102151216e+11 +UniRef50_L0LNE1 SecY stabilizing membrane protein 0.0215461158202 0.00649633466086 -6.07578133559e+12 +UniRef50_W1S564 Cupin 0.000151641815833 5.68258266711e-05 -38278378347.7 +UniRef50_C7MNW3 Acyl CoA synthetase AMP acid ligase II 0.0032397771704 0.00490080435177 6.70577056215e+11 +UniRef50_Q9KA05 Ribonuclease 3 0.00748017508687 0.00350115034765 -1.60638111535e+12 +UniRef50_X1WZZ9 0.000551181268383 5.34402971215e-05 -2.00944138067e+11 +UniRef50_UPI00014D324F ABC transporter permease 0.000300452900777 0.000148352777391 -61404686289.3 +UniRef50_E8P8N2 Major facilitator superfamily permease 0.000183067675657 0.00726249387333 2.85805123033e+12 +UniRef50_UPI0002E55EAF hypothetical protein 6.78022435433e-06 7.41652055421e-05 27204143812.2 +UniRef50_A4FQ90 Xaa Pro dipeptidase 6.26325850433e-06 1.27870180243e-05 2633721773.74 +UniRef50_U7G8B2 Toxin PIN 4.25068467947e-05 0.000219499344533 71454043279.0 +UniRef50_B2K316 tRNA methyltransferase 2 0.00471833538305 0.000702208615786 -1.62135965936e+12 +UniRef50_M1MIQ5 0.000903608936504 0.00121052071101 1.23904049599e+11 +UniRef50_F0YS51 Expressed protein 0.00043023513216 0.000667801724293 95908548514.0 +UniRef50_D9RDU7 Glyoxalase bleomycin resistance protein dioxygenase superfamily protein 0.0176985158771 0.00374676900778 -5.63249141832e+12 +UniRef50_Q3ILQ9 Siroheme synthase 3.65184047643e-05 3.07469632762e-05 -2330001752.3 +UniRef50_D3F1T9 0.000771446441153 0.000261676851705 -2.05800238836e+11 +UniRef50_Q28KF1 Acyl CoA dehydrogenase like protein 0.00176935905105 0.000114316143943 -6.68161131261e+11 +UniRef50_D5RUB7 1.64442762717e-05 0.000860733030521 3.40849730678e+11 +UniRef50_Q9K1R6 Glutamate tRNA ligase 8.35762336971e-05 0.00378289945056 1.49346217845e+12 +UniRef50_R6YL47 1.95277663098e-05 0.000253739644554 94554209350.0 +UniRef50_Q8NYY1 0.0224784443033 0.00880158059737 -5.52151771206e+12 +UniRef50_Q88PE3 RND efflux membrane fusion protein related protein 0.00123345153797 0.000611942019472 -2.50911019397e+11 +UniRef50_B5EZ88 LPS assembly lipoprotein LptE 0.00272225826673 0.00372204800439 4.03627385893e+11 +UniRef50_UPI0004634C4E hypothetical protein 0.000189458515494 7.52161363492e-05 -46121050372.5 +UniRef50_UPI0003827005 50S ribosomal protein L11 6.90908858546e-05 0.00101745198954 3.82865015257e+11 +UniRef50_A1ADH3 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 0.00316968178677 0.000689968208696 -1.00109080097e+12 +UniRef50_V2D6G8 Putative cation 3.54310242984e-05 0.000120581675316 34376362731.8 +UniRef50_UPI00047D8F91 PTS cellobiose transporter subunit IIC 6.48030120811e-06 5.09985608212e-06 -557302637.329 +UniRef50_D6A8A0 5.66129093464e-05 0.000111080003284 21989034209.0 +UniRef50_D5AL25 Membrane protein, putative 5.0710157364e-05 0.00033718462327 1.15653257323e+11 +UniRef50_A0KMY1 Dipeptide and tripeptide permease B 0.00397534031014 0.00123196065224 -1.10753603295e+12 +UniRef50_UPI000476AB7B membrane protein 0.000550970137325 0.000283228407808 -1.08090621767e+11 +UniRef50_A6QE85 Staphylococcal enterotoxin like toxin 0.029258219362 0.00298369980929 -1.0607345968e+13 +UniRef50_D4HAK8 Protoporphyrinogen oxidase 0.000192096331671 0.00668360246861 2.62070068722e+12 +UniRef50_Q8F0X6 Hydroxyethylthiazole kinase 6.92589543491e-06 1.02258733143e-05 1332241565.19 +UniRef50_UPI0001B434CE glyoxalase I 0.000666976975332 0.000605890401675 -24661399401.9 +UniRef50_Q9RTU9 0.00065922954574 0.0302011951903 1.19264540514e+13 +UniRef50_Q9RTU8 0.000319387789692 0.0472635026843 1.8951915252e+13 +UniRef50_M1MCZ5 0.00122359420713 0.000696507046023 -2.12791555026e+11 +UniRef50_S1H4E1 Outer membrane autotransporter barrel domain containing protein 0.000140678008262 0.000157782745423 6905392290.62 +UniRef50_UPI00035CEBAE hypothetical protein 1.4108831989e-06 2.35101470715e-06 379542626.591 +UniRef50_Q4L869 PTS system lactose specific EIICB component 0.0299982705729 0.00739260136927 -9.12618606025e+12 +UniRef50_D9V5U8 Predicted protein 1.69832787799e-05 1.49106118352e-05 -836761080.059 +UniRef50_UPI0002892C39 acetoacetyl CoA synthetase 5.69353430165e-05 1.62510958225e-05 -16424729844.1 +UniRef50_R9I899 7.5186695953e-06 1.19220511233e-05 1777699158.42 +UniRef50_UPI00023751B8 6 pyruvoyl tetrahydropterin synthase 0.000840770262649 0.00105630511526 87014064909.1 +UniRef50_S5Y0M6 Transcriptional regulator, TetR family 0.000269632849186 0.000947689460791 2.73739774795e+11 +UniRef50_A9AST0 Isopentenyl diphosphate Delta isomerase 6.17723908317e-05 1.47155827812e-05 -18997410862.0 +UniRef50_Q04D22 Cys tRNA Cys tRNA(Cys) deacylase 0.00147443843198 0.00536222606216 1.56954757482e+12 +UniRef50_J9P557 0.000119836821857 2.97798788237e-05 -36357093025.5 +UniRef50_C5BV15 Mandelate racemase muconate lactonizing protein 0.00722135272139 0.00190159585312 -2.14765112848e+12 +UniRef50_J3L617 1.89161651264e-05 3.38875665475e-05 6044138473.45 +UniRef50_D6SCW3 5.64069200778e-05 5.93064095273e-05 1170559471.5 +UniRef50_I7EWS3 0.00237970344177 0.000436182837952 -7.84623117442e+11 +UniRef50_Q8FH89 Pyridoxamine kinase 0.0067198160392 0.002726190734 -1.612275543e+12 +UniRef50_UPI00037451EF hypothetical protein 3.05083653787e-05 2.77842628282e-05 -1099753628.13 +UniRef50_Q9RRP9 0.000375607949105 0.0543968560736 2.18090407831e+13 +UniRef50_UPI0003767955 hypothetical protein, partial 3.11694750878e-05 6.5323383645e-05 13788352000.1 +UniRef50_P44594 Queuine tRNA ribosyltransferase 0.0236153839526 0.0189804711445 -1.87117117741e+12 +UniRef50_A9MN50 0.00273767167473 0.00162702832326 -4.48380350115e+11 +UniRef50_UPI00036CE8A3 hypothetical protein 1.75948052325e-05 0.00312444420656 1.25427322865e+12 +UniRef50_Q0VKZ2 Rubredoxin 2 0.000185375071345 3.05722509722e-05 -62495798228.8 +UniRef50_A6LZX0 Methyl accepting chemotaxis sensory transducer 0.000812419448737 0.000732775381417 -32153287319.7 +UniRef50_R9SHV3 NH dependent NAD(+) synthetase 0.00448797927173 0.000810016271225 -1.48483879698e+12 +UniRef50_A6WJ89 PKHD type hydroxylase Shew185_0721 0.00196986792966 0.00687744465717 1.98124894763e+12 +UniRef50_D4HAH8 GDSL like protein 0.000249990721098 0.00206261328125 7.31777970913e+11 +UniRef50_R5U1M5 Glycoside hydrolase family 3 domain containing protein 0.000550532298556 0.00237358158408 7.35987367895e+11 +UniRef50_A3PG26 0.00296293505533 0.000114983791768 -1.14975287339e+12 +UniRef50_UPI0003B75FB1 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.3366368247e-06 1.45679627962e-05 4130511847.18 +UniRef50_UPI0004560989 hypothetical protein PFL1_01444 4.09437749366e-05 0.000143155624938 41264178125.8 +UniRef50_Q9S2L4 Probable proline iminopeptidase 3.29486153056e-05 9.02977403485e-06 -9656329738.17 +UniRef50_UPI00016C0749 hypothetical protein 8.54750813356e-06 1.88119691482e-05 4143888870.7 +UniRef50_I6ABZ2 Isrso9 transposase protein 4.82318570193e-05 7.65362096936e-06 -16381931844.3 +UniRef50_T1Y9Z4 0.00070353231279 0.000521147126817 -73631137695.2 +UniRef50_R6MIG6 0.000414139361527 0.000993864223318 2.34042040729e+11 +UniRef50_UPI000348D44D hypothetical protein 1.16040801554e-05 7.31219936109e-06 -1732684943.96 +UniRef50_UPI000370B19E hypothetical protein, partial 5.5693747856e-05 1.68292008647e-05 -15690094542.0 +UniRef50_A3MML4 Ribonuclease PH 4.33534068578e-05 1.3105145169e-05 -12211594431.7 +UniRef50_Q6GJN1 0.0543144771585 0.0115744881537 -1.72546580399e+13 +UniRef50_P62448 Imidazole glycerol phosphate synthase subunit HisH 0.00411468152794 0.00172175676057 -9.66053093076e+11 +UniRef50_J9P132 0.000109968755837 0.000347542702579 95911517659.9 +UniRef50_Q8DS10 0.00580935695515 0.00184491074961 -1.6004955824e+12 +UniRef50_E4SGD8 Natural resistance associated macrophage protein 9.99521594492e-05 0.000675503587462 2.32357174299e+11 +UniRef50_UPI000473AE7C hypothetical protein, partial 3.61148972506e-05 0.000275959125357 96828058106.0 +UniRef50_UPI000471B809 hypothetical protein 1.86680080947e-05 4.85345487407e-06 -5577104658.79 +UniRef50_B4RND3 Electron transfer flavoprotein ubiquinone oxidoreductase 0.00014170233467 0.00924397152446 3.67469776932e+12 +UniRef50_A9KDE5 Phosphoenolpyruvate carboxykinase [ATP] 0.00151117489766 0.00040202249454 -4.4777843597e+11 +UniRef50_M9VP93 PTS system, sucrose specific IIBC component 7.2733331189e-05 0.00630008879507 2.51405981901e+12 +UniRef50_B4TR32 Ethanolamine ammonia lyase light chain 0.00168857802146 0.00317247378427 5.99066928895e+11 +UniRef50_I1XWU0 Soluble lytic murein transglycosylase like protein 5.90744896513e-05 0.00551085363816 2.20095014311e+12 +UniRef50_A5UMU4 Glycosyltransferase , GT1 family 0.00223033983618 0.000528029326888 -6.87243642299e+11 +UniRef50_Q5F919 0.000110862246227 0.00199375778595 7.60148035112e+11 +UniRef50_Q54VU7 Methionine aminopeptidase 1D, mitochondrial 7.63945019991e-05 2.35126934341e-05 -21349035050.5 +UniRef50_G2I4C8 UTP glucose 1 phosphate uridylyltransferase 0.0137419941268 0.00167822680893 -4.87029090531e+12 +UniRef50_L0WME5 N acetyl anhydromuranmyl L alanine amidase 0.0020349771538 0.00665598561088 1.86555782027e+12 +UniRef50_UPI0004689B76 ABC transporter ATP binding protein 3.35251334848e-05 9.24389563274e-06 -9802633685.19 +UniRef50_Q03I89 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0165194865636 0.00716430489965 -3.77680163873e+12 +UniRef50_G0DVW8 GntR family transcriptional regulator 0.000410310857448 0.00522564689838 1.94401025054e+12 +UniRef50_Q2L004 Glycerol 3 phosphate acyltransferase 8.18331650288e-06 0.00318808162536 1.28376396903e+12 +UniRef50_UPI00044124E5 PH domain like protein, partial 1.95431732533e-05 2.92083179584e-05 3901937522.11 +UniRef50_F4DQW9 FAD dependent oxidoreductase 0.000371345213544 0.000168752402972 -81789203721.3 +UniRef50_E6SMC9 AzlC family protein 2.67853063411e-05 1.21085813642e-05 -5925173976.84 +UniRef50_Q9LC43 TagG homolog 0.00787595751274 0.000936013722495 -2.80174047081e+12 +UniRef50_Q59695 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 2.51114921091e-05 1.36313632669e-05 -4634668890.62 +UniRef50_O83540 V type ATP synthase beta chain 2 0.00241820749037 0.0450704226573 1.72192226644e+13 +UniRef50_Q04614 NADH ubiquinone oxidoreductase chain 4L 2.17196048097e-05 3.58298339582e-05 5696472659.23 +UniRef50_E7ACI0 Na+ H+ Antiporter 0.00011005422415 0.00300221106742 1.16759920838e+12 +UniRef50_P37642 Inner membrane protein YhjD 0.00218345002039 0.00254353396624 1.45370307667e+11 +UniRef50_F2IUQ0 Integrase, catalytic region 0.0139177360053 0.00728791606601 -2.67653966653e+12 +UniRef50_UPI0003718EA8 5 keto 4 deoxyuronate isomerase 9.56121932094e-06 1.25785662059e-05 1218139964.47 +UniRef50_UPI00047E791A saccharopine dehydrogenase 6.14208627651e-05 0.000531942761933 1.89955464647e+11 +UniRef50_S5XU55 Arsenate reductase 0.000119914941797 9.1203677162e-05 -11591089860.0 +UniRef50_F0P418 ABC transporter, substrate binding protein 0.0225357777741 0.00598221194518 -6.68287766022e+12 +UniRef50_R4KAP5 Ribulose phosphate 3 epimerase 0.000536709936758 0.000269285749417 -1.07962426093e+11 +UniRef50_T2EFY2 Bacterial extracellular solute binding s, 3 family protein 0.00059603050871 0.00390433225243 1.33560201137e+12 +UniRef50_UPI0001746A5A 2 dehydro 3 deoxyglucarate aldolase 2.20901928235e-05 3.66152152692e-05 5863929803.4 +UniRef50_P9WQI2 Trehalose import ATP binding protein SugC 0.0291615498054 0.0140531174001 -6.09945956333e+12 +UniRef50_Q89XW5 Tyrosine recombinase XerD 0.000662748815921 0.000532080092299 -52752567211.8 +UniRef50_UPI00044166F3 Metallo dependent phosphatase 2.59504571842e-05 4.86404858712e-06 -8512841909.98 +UniRef50_U5WTC2 Magnesium transporter 0.000555443345432 0.00531589410318 1.9218523882e+12 +UniRef50_A0A037Y901 Gluconate 8.03731700836e-05 0.00700170306844 2.79422581424e+12 +UniRef50_Q02430 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase 0.00185320264948 0.000428060392718 -5.75347417516e+11 +UniRef50_UPI0003B555DD iron ABC transporter ATP binding protein 1.59766218884e-05 1.17246730613e-05 -1716563918.78 +UniRef50_W8RSD6 LysR family transcriptional regulator 0.000322927313917 0.000199988739417 -49631811151.6 +UniRef50_A6LS03 Glycoside hydrolase, family 46 0.000289631193489 0.0015230976353 4.97965538894e+11 +UniRef50_P30844 Sensor protein BasS 0.0031343595362 0.00104332382149 -8.44176777922e+11 +UniRef50_A4WYB5 0.000178145644131 0.00028437823696 42887401345.6 +UniRef50_A4WYB3 7.25298054809e-05 0.00016024142513 35410257195.0 +UniRef50_V5LN28 9.26659148588e-05 5.29706391776e-05 -16025469908.3 +UniRef50_M7D8T2 Glycosyltransferase 0.00516387043397 0.00271493269726 -9.88666216155e+11 +UniRef50_A3SEI8 Xanthine dehydrogenase accessory factor 6.69667893256e-06 1.00128444828e-05 1338776726.56 +UniRef50_J3LXD1 0.000191701699445 6.65242966635e-05 -50535653602.6 +UniRef50_K2BFC0 0.00262159904976 0.000242122003781 -9.60624082929e+11 +UniRef50_Q7D3Z9 Dihydrodipicolinate synthase 0.00486270449281 0.00105972596199 -1.53530910069e+12 +UniRef50_A7FAX6 0.00019525137354 0.0140023685856 5.57410265091e+12 +UniRef50_A7FAX1 0.000310899245916 0.00945459576041 3.69142248867e+12 +UniRef50_A7FAX3 0.000226067454316 0.0114478702269 4.5303794863e+12 +UniRef50_A4XW77 HAD superfamily hydrolase, subfamily IB 0.00145377468432 0.00154078280971 35126247929.7 +UniRef50_E3D438 0.000272405814481 0.00140473606342 4.57135616752e+11 +UniRef50_A7FAX8 0.000456400243355 0.0138130063006 5.39222576928e+12 +UniRef50_I0ENV0 Outer membrane protein HofB 0.00020860147467 0.00353483855602 1.34284272726e+12 +UniRef50_B1W4V9 NADH quinone oxidoreductase subunit B 2 8.21349711922e-06 0.000230421867322 89708245854.3 +UniRef50_Q8DTF8 0.00535184531923 0.00140477849407 -1.59347931327e+12 +UniRef50_Q8DTF4 0.00372171021 0.00134916433814 -9.57825882882e+11 +UniRef50_UPI000360F750 hypothetical protein 0.000178871073942 3.30951658892e-05 -58851522952.6 +UniRef50_N1SEI4 EamA like transporter family protein 0.000333075872518 0.00146438035634 4.56721502785e+11 +UniRef50_B9KSS7 0.00120220789427 0.000604744106207 -2.41203462946e+11 +UniRef50_C0Z6P5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 8.05338730149e-06 4.3383277394e-05 14263110176.8 +UniRef50_Q54UH8 D 3 phosphoglycerate dehydrogenase 2.63276724327e-05 2.87333893377e-05 971217436.015 +UniRef50_P71349 L serine dehydratase 0.000687785283856 0.0132816241494 5.08428729378e+12 +UniRef50_V6KSS1 1.91443938763e-06 9.8439891594e-06 3201256549.38 +UniRef50_D4GZ01 DNA gyrase subunit B 2.2650161579e-05 3.37753445576e-05 4491372889.81 +UniRef50_D5HC82 DNA repair protein radA 0.0222028500405 0.00820791815277 -5.64992574019e+12 +UniRef50_Q9RTR7 Glucose 1 phosphate adenylyltransferase 0.000409671666293 0.0457672966502 1.83114298067e+13 +UniRef50_Q3IY01 Conserved hypoothetical protein 0.00132516083155 0.000600644146164 -2.9249627671e+11 +UniRef50_P19930 Hydrogenase 1 maturation protease 0.00446969307827 0.000646678916486 -1.54339773077e+12 +UniRef50_B5GZL5 8.37078597283e-06 0.000116362539126 43597595955.7 +UniRef50_F0YEL0 9.51325576245e-06 1.51416281297e-07 -3779489481.23 +UniRef50_O30085 Copper exporting P type ATPase B 4.46295039356e-06 1.88440613622e-05 5805830974.1 +UniRef50_UPI0003A50805 translation initiation factor IF 3 7.41723003533e-06 6.25720752178e-05 22266687826.2 +UniRef50_UPI00019B35BE hypothetical protein 6.79436043077e-06 1.27510649106e-05 2404794695.49 +UniRef50_P77455 Bifunctional protein PaaZ 0.00332990917147 0.0338927958422 1.23386123978e+13 +UniRef50_UPI0003814B4D hypothetical protein 2.31530886873e-05 5.7301398899e-05 13786091879.4 +UniRef50_A6LQ13 Peptidase U32 0.000737336957692 0.00124993852289 2.06943542199e+11 +UniRef50_S1MU41 3.54840489248e-06 5.93640071111e-06 964063215.985 +UniRef50_UPI00036AC04F hypothetical protein 4.56719885131e-05 2.35673394042e-06 -17486899808.9 +UniRef50_P57864 0.00389180523647 0.00364407093129 -1.00013379043e+11 +UniRef50_UPI000361AD9C hypothetical protein 1.24232143742e-05 2.31865467043e-06 -4079334749.32 +UniRef50_UPI000469CEAC ribonucleotide diphosphate reductase subunit alpha, partial 1.39828623589e-05 0.00945971654909 3.81335860152e+12 +UniRef50_Q3AMY6 Ribonuclease PH 1.3723587523e-05 1.9527613959e-05 2343156695.63 +UniRef50_W7ZFA7 Serine threonine phosphatase 4.73918615432e-06 3.18380167086e-05 10940130434.8 +UniRef50_UPI00046D13E9 hypothetical protein 4.02090943482e-06 9.95106597632e-06 2394076967.01 +UniRef50_Q9HTD7 Aspartate ammonia lyase 0.000844567942513 0.0050981405566 1.71721946151e+12 +UniRef50_P9WLT0 0.000123765897988 0.00508568826974 2.00318895111e+12 +UniRef50_M4QWY4 Acyl CoA dehydrogenase 0.000127672825993 0.00787025258794 3.12577446204e+12 +UniRef50_Q8NXN8 MW0677 protein 0.0102793538839 0.00155810868787 -3.52087370735e+12 +UniRef50_P76613 0.00334073913898 0.000136510033226 -1.2935866103e+12 +UniRef50_Q89WR0 Exodeoxyribonuclease III 0.0127234329472 0.00265585597345 -4.06440436739e+12 +UniRef50_Q8DUL3 0.00613286616598 0.00581903031313 -1.26699384995e+11 +UniRef50_A6LPZ2 Binding protein dependent transport systems inner membrane component 0.000884366006203 0.00190942752185 4.13829912787e+11 +UniRef50_Q9RYC4 Methyltransferase, putative 0.000771546010255 0.0571315857243 2.2753239648e+13 +UniRef50_A9G3I5 Malate dehydrogenase (NADP(+)) 0.000144475269083 0.0669948974642 2.69883357871e+13 +UniRef50_Q3JPF1 2.64991597272e-05 0.000116879962485 36487839170.5 +UniRef50_UPI0001B4442A hypothetical protein 4.76108207396e-05 8.39508034304e-05 14670896954.0 +UniRef50_A6TDP3 Isopentenyl diphosphate Delta isomerase 0.000622229651954 0.000324523851863 -1.20187484758e+11 +UniRef50_Q04K89 Phosphopantothenate cysteine ligase 0.00451833879012 0.00171854821777 -1.13030981135e+12 +UniRef50_UPI0004778BF4 nickel transporter permease NikB 4.62725449699e-05 8.62853903544e-05 16153676694.6 +UniRef50_B0KRB8 Ribosomal RNA small subunit methyltransferase G 7.82948668254e-05 2.84965044919e-05 -20104209968.7 +UniRef50_B1QWY3 0.000525629594426 0.00155481219115 4.15493643787e+11 +UniRef50_P65631 Membrane protein insertase YidC 1 0.00418470916251 0.00223976116242 -7.85199374832e+11 +UniRef50_UPI0003B43DEF leucyl phenylalanyl tRNA protein transferase 1.00792661474e-05 3.34040703286e-05 9416509675.48 +UniRef50_B2UZ33 Phosphodiesterase, family 0.000577784676811 0.000742157978635 66359519033.6 +UniRef50_Q8XBY4 Sensor kinase CusS 0.00248220948872 0.0012502049496 -4.97375350839e+11 +UniRef50_E9AEM8 Proteophosphoglycan ppg4 1.21174796688e-05 2.50735879183e-05 5230539889.65 +UniRef50_W8EKH5 Fatty acid CoA ligase 8.89597774156e-05 0.00595848275364 2.36959845265e+12 +UniRef50_UPI00036DBE7B hypothetical protein 6.57903534864e-06 0.000292342138515 1.15366071456e+11 +UniRef50_D8JKA9 Homoserine dehydrogenase 0.000382233208592 0.00499735234705 1.86318023008e+12 +UniRef50_UPI000367DF3F hypothetical protein 2.48405683576e-05 6.87286022487e-05 17718137848.6 +UniRef50_UPI0003808AE5 hypothetical protein 8.08324761341e-06 2.29618747517e-05 6006684357.02 +UniRef50_UPI0003B5E6AE peptidase M24 3.89856407794e-06 1.50807185631e-05 4514372986.14 +UniRef50_UPI0003B421A5 heme ABC transporter ATP binding protein 5.81287411282e-05 5.79419619714e-05 -75405037.6382 +UniRef50_UPI0003753359 hypothetical protein 1.61072015283e-05 3.42710038439e-06 -5119112434.13 +UniRef50_P0AB04 0.00194950393666 0.0013505102435 -2.41821104408e+11 +UniRef50_UPI0002A4C202 5.55525589308e-05 2.72340887632e-05 -11432513913.4 +UniRef50_UPI00036E9616 alpha L fucosidase 1.54419626849e-05 4.72784427132e-05 12852777665.0 +UniRef50_A0A017Y7E3 2.9767910727e-05 4.46189247071e-05 5995536586.2 +UniRef50_Q97FA7 0.000297920703939 0.00212965617169 7.39494086253e+11 +UniRef50_A6LTV0 Fibronectin, type III domain protein 0.000232107329756 0.000968568529317 2.97318423658e+11 +UniRef50_UPI000463D2BB oxidoreductase 5.61898751659e-06 1.72615614073e-05 4700249950.12 +UniRef50_UPI000219711C branched chain amino acid transporter II carrier protein 1.58941721423e-05 1.26151252564e-05 -1323791466.27 +UniRef50_K0S2S0 2.86793669097e-05 0.000499802341001 1.9019812597e+11 +UniRef50_Q4L709 Porphobilinogen deaminase 0.00787394947315 0.00123977484846 -2.67829770646e+12 +UniRef50_P45174 Sodium proline symporter 0.00172509854048 0.0132769626526 4.66362929937e+12 +UniRef50_UPI0004294A5C hypothetical protein 2.3854643408e-05 0.000161567506456 55596372739.3 +UniRef50_UPI0004730D89 hypothetical protein 5.97964782623e-05 5.05455149912e-06 -22099987593.3 +UniRef50_K8Z2D7 1.3812899602e-05 2.46549338392e-05 4377062268.28 +UniRef50_P67446 Xanthine permease XanQ 0.00379919491288 0.00221854695027 -6.38126979237e+11 +UniRef50_F3L0R4 UPF0246 protein YaaA 1.34689232179e-05 1.58400623849e-05 957257978.868 +UniRef50_Q8XKT3 DegV domain containing protein CPE1310 0.000454116200659 0.000890132602642 1.76025172003e+11 +UniRef50_UPI0003B581A8 taurine pyruvate aminotransferase 4.74853506028e-05 1.65980319741e-05 -12469589560.4 +UniRef50_UPI0004766D5E malyl CoA thiolesterase 0.00010122795894 4.47789761493e-05 -22789147059.5 +UniRef50_E3D1E7 0.000285654843523 0.00126361117974 3.94812973805e+11 +UniRef50_UPI0004692352 peptide ABC transporter permease 5.40927499806e-06 2.43665928334e-05 7653301842.56 +UniRef50_W3PE26 DnaK domain protein 9.47651841946e-05 6.37123709624e-05 -12536401762.7 +UniRef50_UPI000371AEC6 hypothetical protein, partial 3.70251797835e-05 2.14913216992e-05 -6271209130.51 +UniRef50_UPI000441DE45 PREDICTED 1.2652266455e-05 1.60395922604e-06 -4460337206.32 +UniRef50_M1MSX4 Phage infection protein Pip 0.000482315278466 0.00128096311338 3.22423931466e+11 +UniRef50_G7L1M9 50S ribosomal protein L22 8.40541386484e-06 3.14240493409e-05 9292905612.12 +UniRef50_A8G2K7 0.000566697337317 0.00294743438332 9.61132760399e+11 +UniRef50_V9U122 0.00037836467757 0.000260790930809 -47465964359.5 +UniRef50_Q81WF1 Carbamoyl phosphate synthase small chain 0.000336544305143 0.00244579174399 8.5152907444e+11 +UniRef50_Q64QH6 1.77190352826e-06 3.10012895916e-06 536220905.613 +UniRef50_UPI0003722F98 hypothetical protein 3.11076713415e-06 5.97056521558e-06 1154535579.14 +UniRef50_V5VGJ6 Membrane fusion protein 8.51472155251e-05 0.00611497234421 2.43431439872e+12 +UniRef50_R4REL3 Peptidase family M48 family 0.000608546229884 0.000412069821193 -79319937225.2 +UniRef50_UPI0003B6D53E MarR family transcriptional regulator, partial 1.19401063788e-05 4.26634331797e-05 12403384047.1 +UniRef50_UPI000371A422 hypothetical protein 0.000149729190961 3.76661214999e-05 -45241236309.9 +UniRef50_A6LRF3 Transcriptional regulator, RpiR family 0.000316507820176 0.0015608070061 5.02338850624e+11 +UniRef50_A1TJ24 Potassium transporting ATPase A chain 0.00814353413742 0.0122663514283 1.66443193299e+12 +UniRef50_B9DNM2 Putative pyruvate, phosphate dikinase regulatory protein 0.0224430959464 0.0040564575784 -7.42291153859e+12 diff -r 000000000000 -r 72633301cc0d test-data/output_column_proportion.tabular --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/output_column_proportion.tabular Fri Apr 15 08:42:40 2016 -0400 @@ -0,0 +1,44933 @@ +UniRef50_F0RML5 Peptidoglycan glycosyltransferase 1.81399063257e-06 0.00023462188863 93987405295.6 +UniRef50_D9SMK5 4Fe 4S ferredoxin iron sulfur binding domain containing protein 9.74298729943e-06 1.04942971233e-05 303312995.505 +UniRef50_UPI000289C850 glutamine synthetase 3.02071076987e-08 1.13251396637e-07 33525998.5124 +UniRef50_UPI0003344A46 PREDICTED 2.92448096954e-08 1.23166316876e-07 37917264.9953 +UniRef50_A5MZ45 CheA2 1.68607563575e-06 1.56010359401e-05 5617640230.65 +UniRef50_Q2LVL0 Lipid A export ATP binding permease protein MsbA 1.24797999013e-07 2.11666856208e-07 35070023.6504 +UniRef50_P31134 Putrescine transport ATP binding protein PotG 2.76274252245e-05 1.3215449275e-05 -5818291545.65 +UniRef50_T1T0E7 1.13062785186e-06 1.4719447673e-06 137793827.193 +UniRef50_B1ES30 4.65083689682e-07 7.40274272935e-07 111097815.427 +UniRef50_U5FV07 6.97112841074e-08 1.69093447272e-07 40121798.8258 +UniRef50_UPI00037AE754 hypothetical protein 4.96975012537e-07 7.77591897983e-07 113288480.211 +UniRef50_E3EZF3 3.7834529758e-07 5.98806720443e-07 89002981.7757 +UniRef50_UPI00040F4463 MULTISPECIES 3.47916254551e-06 5.38916925611e-06 771093147.487 +UniRef50_A6TTD6 Xanthine phosphoribosyltransferase 3.29952916783e-07 8.400468316e-07 205931172.968 +UniRef50_UPI00047775E1 osmotically inducible protein C 3.20342739866e-07 1.43696613898e-06 450794568.731 +UniRef50_UPI00035F4F82 hypothetical protein 1.38179068894e-07 2.13437062856e-07 30382575.6819 +UniRef50_V6QDM9 8.79068711831e-05 6.49365504839e-06 -32867514406.1 +UniRef50_UPI000366B462 hypothetical protein 8.96520934309e-08 5.13157979404e-08 -15476832.9288 +UniRef50_UPI0003A50DF1 hypothetical protein 1.78941032845e-07 2.0766777608e-07 11597338.7608 +UniRef50_A7X4V0 ATP synthase subunit c 2.00926083898e-05 3.78523004621e-05 7169805625.52 +UniRef50_A6M004 Signal transduction histidine kinase, nitrogen specific, NtrB 5.6455066055e-06 1.12908749909e-05 2279104493.65 +UniRef50_Q6G4Z3 Ribosomal RNA large subunit methyltransferase E 9.91937485213e-07 4.15778712915e-07 -232602366.64 +UniRef50_UPI00031D9BC6 hypothetical protein 1.21726134302e-07 5.23901784827e-08 -27991776.2121 +UniRef50_K6GJU3 Pyridoxal phosphate dependent protein 5.22036525674e-08 7.45619049448e-08 9026300.85137 +UniRef50_UPI0004781473 ppGpp synthetase 7.9055593981e-08 6.36800227798e-08 -6207306.7734 +UniRef50_A7MGX5 tRNA methyltransferase TrmJ 2.12961214357e-05 2.94172368815e-06 -7409895604.49 +UniRef50_Q4JXU5 Aminomethyltransferase 2.61473105294e-07 2.98878317567e-07 15100943.2082 +UniRef50_G3A3C4 2.43165574186e-07 5.52071853911e-07 124709255.831 +UniRef50_L7WPW4 Cation efflux family protein 0.000220787994494 7.29898175619e-05 -59667937715.0 +UniRef50_Q4JXJ2 Cysteine tRNA ligase 1.46406253943e-07 1.21697869621e-07 -9975077.95676 +UniRef50_C1KWN7 GTPase Der 0.000221045853772 0.000112808239108 -43696853264.8 +UniRef50_UPI0002003BFB transcriptional regulator, partial 7.87344330917e-08 1.02617563671e-07 9641912.89383 +UniRef50_A6M2Q1 M18 family aminopeptidase 2.78330413639e-06 1.97325854824e-05 6842632870.45 +UniRef50_UPI00037CE245 hypothetical protein 1.19456994074e-07 2.06099674676e-07 34978713.3843 +UniRef50_Q8CTD2 4.00791961979e-05 8.45403015075e-06 -12767467617.7 +UniRef50_N6UZ26 1.84609644252e-06 1.74056997165e-06 -42602331.2456 +UniRef50_Q8CTD8 4.67178630856e-05 1.76140084145e-05 -11749583275.2 +UniRef50_Q213B4 Aspartate racemase 4.20809284222e-05 2.54295130469e-05 -6722380722.85 +UniRef50_S9QQA7 pH adaptation potassium efflux system a 8.62911388131e-08 8.32021938689e-08 -1247044.97959 +UniRef50_L8PMS9 Putative secreted protein 6.8034549289e-09 9.4093242251e-08 35239958.3081 +UniRef50_P0AFQ9 3.85881354037e-05 8.73804337357e-06 -12050848454.4 +UniRef50_UPI000366BC2B MULTISPECIES 1.19391317174e-07 1.78601929922e-07 23904050.9623 +UniRef50_Q49VL4 9.58062041709e-05 6.87547851727e-05 -10920989807.8 +UniRef50_Q9ZFS6 Exotoxin 3 0.000134071014543 3.67840610916e-05 -39275936953.5 +UniRef50_Q49VL2 0.000115447480988 5.87318414106e-05 -22896799676.6 +UniRef50_U4W1Q6 1.65509910814e-07 5.0345135915e-07 136431109.701 +UniRef50_A0A023Y807 4.47259288811e-08 5.34024471886e-08 3502816.91359 +UniRef50_P39380 RNA 2 phosphotransferase 4.05186331914e-05 4.7889195437e-06 -14424523852.5 +UniRef50_F6D690 Metallophosphoesterase 2.69501196954e-05 1.183685322e-05 -6101411136.75 +UniRef50_UPI0002558482 multidrug transporter 5.69408882215e-08 2.10785393429e-07 62108914.6364 +UniRef50_B0VT73 1.85513842053e-06 3.18682804429e-05 12116673737.1 +UniRef50_Q28UP9 Periplasmic sensor signal transduction histidine kinase 2.28296634791e-05 4.35691148858e-06 -7457676664.72 +UniRef50_UPI0003667138 hypothetical protein 5.59750229755e-08 1.37249322398e-06 531494553.239 +UniRef50_C6SR58 2.29496650516e-05 9.05494784279e-06 -5609467844.55 +UniRef50_UPI000369C54D hypothetical protein 4.45569141727e-07 3.39343449794e-07 -42884615.3692 +UniRef50_UPI00036B1698 hypothetical protein 1.29140086902e-07 5.53364217023e-06 2181863811.74 +UniRef50_UPI00046E1459 hypothetical protein 5.28399444941e-07 1.79693810088e-05 7041138282.26 +UniRef50_I1ZLT1 Thiamine biosynthesis protein ApbE, putative 4.9240598846e-05 1.47292172806e-05 -13932668240.2 +UniRef50_UPI0003B2E5CE quinone oxidoreductase 6.72862514147e-08 1.0147057367e-07 13800630.3833 +UniRef50_Q1IC36 3.85170594679e-07 3.0445887783e-07 -32584310.5361 +UniRef50_Q8RE57 Methionine tRNA ligase 6.85189237575e-08 1.23893578974e-07 22355427.8343 +UniRef50_UPI0003620A0A hypothetical protein 7.60915619622e-07 1.65413928944e-06 360605356.593 +UniRef50_J3K6Q4 6.28763007674e-07 4.67621584372e-07 -65054770.0146 +UniRef50_W8RQ92 Membrane protein 7.09208969743e-06 1.06038314257e-06 -2435073953.56 +UniRef50_V4SQT0 1.18993701262e-06 4.01124822048e-06 1138997955.99 +UniRef50_UPI000367FC54 hypothetical protein 1.65609129421e-07 2.4728863878e-07 32975020.2485 +UniRef50_Q3JR57 8.27798318848e-07 9.56233260128e-07 51850761.8687 +UniRef50_Q6A6J6 UPF0336 protein PPA1896 2.6583520342e-06 0.000323661355571 1.29592851678e+11 +UniRef50_UPI0002F2D647 hypothetical protein 2.34623756597e-06 8.17062694021e-07 -617346660.892 +UniRef50_UPI000344933C ABC transporter permease 4.6646117135e-08 5.44448818935e-07 200969059.443 +UniRef50_P55573 3.10201548483e-06 5.24951017719e-05 19940595055.4 +UniRef50_P77306 Inner membrane protein YqiK 3.52192733794e-05 6.78998696655e-06 -11477251791.5 +UniRef50_UPI0004659A64 hypothetical protein 1.24064365563e-07 6.73323112003e-08 -22903426.5268 +UniRef50_A0R6E0 Trehalose synthase amylase TreS 1.79009657205e-06 0.000422492777565 1.69842834919e+11 +UniRef50_Q1IZH7 Protein translocase subunit SecA 4.53164452374e-07 0.000375674284729 1.51481370737e+11 +UniRef50_P77806 Methionine aminotransferase 1.29444171825e-05 1.66052228432e-06 -4555446839.36 +UniRef50_Q8CSN4 0.000139370888828 4.0446271353e-05 -39937082016.2 +UniRef50_R7PW99 1.769843077e-05 2.79479531722e-06 -6016780520.47 +UniRef50_B0SVK0 5.16114447607e-07 8.32823298463e-07 127859249.545 +UniRef50_UPI00047131A0 hypothetical protein, partial 6.18569422725e-07 4.1457876436e-07 -82353532.0288 +UniRef50_W5ZFT8 Oxidoreductase, putative 4.00137817428e-05 6.69233267561e-05 10863713539.1 +UniRef50_P76352 3.77418782733e-05 4.82029585704e-06 -13290846814.7 +UniRef50_UPI0003B4CE11 glycosyl hydrolase family 20 8.67507024865e-09 1.25162269462e-08 1550722.09509 +UniRef50_P94364 Cytochrome bd ubiquinol oxidase subunit 1 2.25221118163e-07 1.33169031774e-05 5285272700.3 +UniRef50_U9N986 1.55302086056e-06 2.6525452562e-06 443891491.201 +UniRef50_P76359 1.81112086248e-05 1.83681561418e-05 103732865.714 +UniRef50_B7MDB8 Cobalamin synthase 3.59246200571e-05 5.11495595117e-06 -12438239476.6 +UniRef50_UPI0003B4027B MULTISPECIES 1.00508343406e-07 7.08990790867e-07 245651830.959 +UniRef50_F5ZLB8 Transglycosylase protein 2.70264968209e-05 5.3301964375e-05 10607728687.8 +UniRef50_I1EV25 2.4063742345e-06 2.13740376979e-05 7657478499.58 +UniRef50_Q1RJJ1 NADH quinone oxidoreductase subunit E 2.95013468356e-06 9.44377105531e-07 -809748947.664 +UniRef50_C1DH85 Deoxyribonuclease I 3.97942135757e-05 2.45570704289e-05 -6151421669.14 +UniRef50_UPI0001CBBA36 PREDICTED 1.11577543041e-07 1.81078333964e-07 28058322.1662 +UniRef50_Q9RRB5 Queuine tRNA ribosyltransferase 4.7592026773e-08 0.000605007602104 2.44229779762e+11 +UniRef50_UPI0003B6BA24 GTPase Era 1.71025038414e-07 9.74575415476e-07 324403147.892 +UniRef50_V7F7P6 1.75809706843e-06 1.09324706077e-07 -665629635.393 +UniRef50_Q2G5F9 Hemimethylated DNA binding region protein 8.29121011225e-06 8.85950115586e-05 32419630082.4 +UniRef50_Q329H4 Phosphonate metabolism 5.9910060023e-06 3.60546006472e-06 -963074168.942 +UniRef50_UPI00036463CF hypothetical protein 7.50889669823e-08 1.6809831922e-07 37549016.8515 +UniRef50_UPI000455DF56 2 isopropylmalate synthase 3.22585223506e-08 1.01056091831e-07 27774423.0404 +UniRef50_D9SMY3 RNA polymerase sigma factor 6.84801384175e-06 3.62351785524e-06 -1301768598.77 +UniRef50_P21865 Sensor protein KdpD 3.91689714282e-05 1.21962454941e-05 -10889220452.2 +UniRef50_Q1GCD6 Flagellar fliL protein 5.83205487323e-05 9.88723146173e-06 -19553124525.8 +UniRef50_Q6MJ09 DNA directed RNA polymerase subunit beta 1.0581793113e-07 6.537319961e-08 -16328034.4273 +UniRef50_Q2FH43 4 hydroxy tetrahydrodipicolinate synthase 0.000173611926901 3.47989036311e-05 -56040520921.4 +UniRef50_D2JBF4 DNA recombination protein RmuC 1.3992100865e-06 4.57428493162e-07 -380208786.19 +UniRef50_Q03K16 4 hydroxy tetrahydrodipicolinate synthase 4.98099101573e-05 4.78988731751e-05 -771509080.775 +UniRef50_UPI000475E634 leucine isoleucine valine transporter ATP binding subunit 1.09976698195e-07 5.56803813077e-06 2203486378.27 +UniRef50_X4Z848 Short chain dehydrogenase family protein 0.00012742667348 4.78472358504e-05 -32127195520.6 +UniRef50_K0NAB4 Dehydrogenase 8.77630524198e-06 4.84888309251e-05 16032433945.8 +UniRef50_Q58927 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 4.57160507878e-07 2.77788469619e-07 -72414692.9876 +UniRef50_Q9RXT3 Phosphoribosylformylglycinamidine synthase 1 1.36728029777e-07 0.000320173365451 1.29202717818e+11 +UniRef50_UPI000375A953 hypothetical protein 2.20086869924e-07 1.29548291137e-07 -36551535.2896 +UniRef50_P45768 Inner membrane amino acid ABC transporter permease protein YhdY 2.82955632043e-05 1.9702558924e-05 -3469101275.98 +UniRef50_Q9CFC2 CCA adding enzyme 6.40568999331e-05 3.51547025219e-05 -11668171764.7 +UniRef50_D7WL32 5.38686170741e-06 2.41897746651e-05 7590966698.71 +UniRef50_L1KE49 8.41676254502e-06 1.14316143946e-05 1217132688.07 +UniRef50_Q45604 9.92513555255e-07 3.25422896763e-07 -269312684.956 +UniRef50_M1MVG4 Transcriptional regulator, AraC family 4.71857486069e-06 1.31840712176e-05 3417624762.61 +UniRef50_R1HR76 8.20621714942e-07 1.79611818045e-06 393819893.813 +UniRef50_L0LIX3 3.14292843872e-07 4.30251589219e-07 46813968.4704 +UniRef50_UPI00038168DE hypothetical protein 5.54862983169e-07 3.21001600808e-07 -94412709.861 +UniRef50_W7SZX8 1.13301462751e-06 1.68365443616e-06 222300047.862 +UniRef50_UPI0003716923 hypothetical protein 2.03033141466e-07 1.62556007734e-05 6480618540.15 +UniRef50_F2DTP4 Predicted protein 2.93170380287e-06 7.32390847827e-07 -887889628.555 +UniRef50_Q0SQN8 Mannose 1 phosphate guanylyltransferase 4.3672968815e-06 1.92388733031e-06 -986434419.822 +UniRef50_W0II99 C4 dicarboxylate ABC transporter permease 0.000136874572094 3.53683605065e-06 -53830080278.6 +UniRef50_UPI00024843D9 LysR family transcriptional regulator 4.89372785742e-08 1.68415470048e-07 48234812.0603 +UniRef50_J7Q3B6 4.84016146315e-08 6.70039663929e-08 7509997.6826 +UniRef50_I0C2L0 FatD 0.000264162995858 7.86869512614e-05 -74878955250.8 +UniRef50_UPI0003C17D4A 2.16087322599e-08 6.07646988507e-08 15807744.2104 +UniRef50_UPI0001CB9AD0 PREDICTED 1.44847105293e-07 4.19227742584e-08 -41551815.4624 +UniRef50_W8BRR9 1.61516869121e-07 2.22241800246e-08 -56234167.9016 +UniRef50_P19480 Alkyl hydroperoxide reductase subunit F 0.000350548772664 0.000333419141668 -6915442237.3 +UniRef50_F0RMK3 Peptidase S54, rhomboid domain protein 2.2469404098e-06 0.000175415869413 69910421660.2 +UniRef50_F3U2Q5 0.000130278982207 8.9754380941e-06 -48971729320.3 +UniRef50_N6U5R6 9.90278853131e-06 3.88597505292e-06 -2429061435.83 +UniRef50_R7D6K7 1.33702239266e-06 2.95374395045e-05 11384854446.1 +UniRef50_F9EYP6 2.27931254283e-08 4.10102522307e-07 156361556.341 +UniRef50_X3WVZ6 5.60797452027e-07 1.34363742738e-06 316042104.577 +UniRef50_A6LXH6 Na+ H+ antiporter 4.29714616836e-06 1.27015885956e-05 3392976541.98 +UniRef50_Q5HGN0 Carbamoyl phosphate synthase small chain 0.000267902175384 0.000155625482972 -45327478516.7 +UniRef50_P37454 Exodeoxyribonuclease 1.60404811127e-06 1.65249028366e-05 6023732152.08 +UniRef50_A0A059LAI1 2.0835918992e-07 1.03930779142e-06 335464147.312 +UniRef50_C3K6C6 2.51744598828e-06 1.24156860881e-06 -515087354.868 +UniRef50_H2DK93 Truncated internaline 3.67562850117e-07 1.5743253783e-07 -84832185.6592 +UniRef50_A8I3Y9 NADH quinone oxidoreductase subunit C 2.4436044395e-07 9.21263150744e-07 273273929.263 +UniRef50_Q7UNC2 Imidazoleglycerol phosphate dehydratase 5.15072657715e-05 1.47806793631e-05 -14826973619.0 +UniRef50_Q54HJ6 2.3522367206e-08 3.78920563213e-09 -7966519.48051 +UniRef50_A6LUV0 2 dehydropantoate 2 reductase 1.24173022652e-06 1.11610607976e-05 4004555475.42 +UniRef50_Q9RSM5 2.63362317798e-06 0.000361775510149 1.44989986937e+11 +UniRef50_E8SFA5 Glycerophosphoryl diester phosphodiesterase 0.000204621605844 6.12862085794e-05 -57866258799.0 +UniRef50_B2ICY0 N acylglucosamine 2 epimerase 2.89528374842e-05 2.00668202859e-06 -10878493623.9 +UniRef50_B1LZZ2 Electron transfer flavoprotein alpha subunit 4.99928052058e-07 4.22085162053e-07 -31426129.9347 +UniRef50_I4SI86 Phenylacetate CoA ligase 2.81670546175e-05 4.124715484e-06 -9706187340.87 +UniRef50_Q57JH6 4.2426137469e-06 1.61649871325e-06 -1060194865.14 +UniRef50_Q9L6Q3 Uroporphyrinogen III synthase 1.79866140932e-05 1.86452732822e-05 265908797.256 +UniRef50_C8N6S7 Periplasmic binding protein 2.56273899946e-07 4.48586588393e-07 77638992.2681 +UniRef50_UPI00035FDB03 hypothetical protein 2.75762575879e-07 4.71167135119e-07 78887218.4488 +UniRef50_UPI000262CF7A proline iminopeptidase 5.95466499945e-08 1.06806379229e-07 19079332.6341 +UniRef50_Q9RXD5 Outer membrane protein 4.51178472729e-07 0.000321202726649 1.29491336063e+11 +UniRef50_K1YE78 3.54233414624e-06 5.54251272714e-06 807496638.061 +UniRef50_S5YEK4 Transcriptional regulator, GntR family 3.25086715779e-05 2.37202172853e-06 -12166535362.5 +UniRef50_Q4L460 Teichoic acid translocation permease protein 0.000918666683286 0.000371758073129 -2.20793717244e+11 +UniRef50_I7DPX0 5.98979718292e-07 1.85349951005e-06 506465034.623 +UniRef50_P52135 6.05852267453e-05 4.27219732618e-05 -7211614638.06 +UniRef50_Q3IV29 Two component transcriptional regulator, LuxR family 0.000177157167515 1.54566708624e-05 -65280474787.0 +UniRef50_P52131 6.26593510651e-05 9.77705100014e-06 -21349233475.0 +UniRef50_D3DZN3 Heavy metal translocating P type ATPase 4.38136307585e-05 2.37724597806e-05 -8090866656.6 +UniRef50_P52133 2.84936732982e-05 2.6057356341e-06 -10451278115.7 +UniRef50_A0A023S217 1.56201098833e-06 2.93825853796e-05 11231507278.6 +UniRef50_P52139 1.61589807204e-05 1.47317340239e-06 -5928840629.4 +UniRef50_P52138 1.98838666401e-05 1.20311256979e-05 -3170247882.33 +UniRef50_J7RFM5 Tpr protein 6.78656391744e-07 5.63066444877e-07 -46665079.9984 +UniRef50_B3PWI5 Imidazoleglycerol phosphate dehydratase 2.53082601495e-06 4.61524086922e-07 -835402581.536 +UniRef50_W8ZDB9 1.99166633945e-07 6.93794274937e-07 199687248.432 +UniRef50_B7N578 Protein Ves 1.33788147562e-05 2.97669744834e-05 6616101187.21 +UniRef50_UPI00047CFF00 hypothetical protein 1.10880818888e-07 5.73400275999e-07 186724780.588 +UniRef50_UPI00046CDEFF transposase 5.55776770298e-07 2.05808732025e-07 -141286391.642 +UniRef50_Q8CRI9 50S ribosomal protein L13 7.66988732486e-05 1.61057477153e-05 -24462188339.1 +UniRef50_A6LYQ3 1.34496195558e-06 6.60017440637e-06 2121593755.09 +UniRef50_UPI0002EBAF2D hypothetical protein 6.94285922604e-07 4.36910058409e-07 -103905794.733 +UniRef50_UPI0003750B35 hypothetical protein 7.88304917776e-07 1.7995378632e-07 -245598817.077 +UniRef50_A1B1I9 9.8995977242e-05 2.10880302798e-05 -31452394226.7 +UniRef50_UPI00047BF436 histidine ammonia lyase, partial 1.26904510803e-07 4.06190243854e-07 112751077.654 +UniRef50_P96589 0.000197932069637 7.13943178039e-05 -51084843207.8 +UniRef50_P85097 Respiratory nitrate reductase alpha chain 4.66672593325e-08 2.13421901947e-07 67320895.5328 +UniRef50_J2K6A4 6 pyruvoyl tetrahydropterin synthase 8.90646920701e-07 1.38182310047e-05 5219024334.01 +UniRef50_A0ZZF7 L asparaginase I 2.02586398316e-06 9.3522834691e-05 36938449868.8 +UniRef50_X7Z663 PE PGRS family protein 1.41512795825e-07 1.14150879588e-06 403710656.553 +UniRef50_V8H036 2.14625581086e-06 1.07716315346e-06 -431605825.035 +UniRef50_C1CXX6 Non canonical purine NTP pyrophosphatase 1.01899098614e-07 5.71844618173e-05 23044931051.4 +UniRef50_UPI0004776B86 hypothetical protein 5.00717425768e-08 7.18214312445e-08 8780616.21384 +UniRef50_A6LU83 1 acyl sn glycerol 3 phosphate acyltransferase 3.32587491469e-06 1.32277403927e-05 3997504603.03 +UniRef50_V5SGX2 C4 dicarboxylate ABC transporter 7.29056136163e-08 1.81117323743e-07 43686395.2853 +UniRef50_Q8CTD3 5.60786381026e-05 5.15087276506e-06 -20560163820.7 +UniRef50_Q8CP66 Heptaprenyl diphosphate syntase component II 0.000193791028179 6.53627216723e-05 -51848083329.4 +UniRef50_UPI00046D37AA N succinylarginine dihydrolase 9.07071271714e-08 2.99347464476e-07 84230664.4749 +UniRef50_Q2RM79 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.54680738702e-07 1.42873521305e-07 -4766718.55402 +UniRef50_UPI000367B671 hypothetical protein 1.44487475485e-07 1.00471185261e-06 347283137.186 +UniRef50_L0A0T1 Putative phosphatase, C terminal domain of histone macro H2A1 like protein 1.92429788947e-07 4.45745887049e-06 1721844578.01 +UniRef50_Q6ABS5 Formate tetrahydrofolate ligase 5.88718773702e-06 5.51418981851e-05 19884731031.2 +UniRef50_UPI0003C1A241 PREDICTED 5.21399776348e-06 2.13602096581e-07 -2018721092.48 +UniRef50_A9KJR8 Urease accessory protein UreE 4.74796526595e-05 6.396751737e-06 -16585671246.3 +UniRef50_P25605 Acetolactate synthase small subunit, mitochondrial 2.56525616588e-07 1.66008437689e-06 566633895.136 +UniRef50_UPI00036577C7 hypothetical protein 1.87237543234e-07 2.77323367249e-08 -64394209.2167 +UniRef50_A6LSZ9 4.24666948962e-06 1.47381176374e-05 4235526361.81 +UniRef50_A3W226 4.91028485652e-06 4.77973634881e-07 -1789378430.75 +UniRef50_A6LSZ0 4.15325951833e-06 1.0683790577e-05 2636455527.01 +UniRef50_A3W220 2.88169891019e-07 2.20689788937e-07 -27242545.2845 +UniRef50_E6DRN3 9.55354509541e-06 1.88365842032e-05 3747676803.51 +UniRef50_P80876 General stress protein 18 8.43385255331e-05 5.82767273259e-05 -10521467750.5 +UniRef50_O32135 UPF0759 protein YunF 9.69853833149e-08 3.70558142974e-07 110444680.19 +UniRef50_UPI00046D55BC nitrate transporter 2.74516516297e-08 6.95817197617e-08 17008425.499 +UniRef50_J2MVR4 2.58420658952e-07 1.31773563795e-06 427658456.279 +UniRef50_UPI00016C4574 Catalase, partial 3.1571789138e-06 9.19420520224e-06 2437221595.29 +UniRef50_UPI0003682E3B hypothetical protein 1.85767870711e-06 1.09744822948e-06 -306914372.896 +UniRef50_P06846 HTH type transcriptional regulator EbgR 2.23657892649e-05 1.80437905414e-06 -8300893618.98 +UniRef50_Q8G7I0 Ribonuclease PH 1.99258830518e-07 2.56106051173e-05 10258872328.3 +UniRef50_UPI0003767C06 hypothetical protein 1.42841372682e-06 2.73555479348e-07 -466230446.208 +UniRef50_L1NJN4 1.8294959072e-06 6.57849952057e-06 1917231035.55 +UniRef50_F0MTL8 Carbonate dehydratase 1.19776378691e-05 1.88897774361e-05 2790515564.69 +UniRef50_UPI000376F581 hypothetical protein 9.03808218655e-08 1.35204046595e-07 18095685.8661 +UniRef50_P36556 Transcriptional regulatory protein BasR 6.14644468857e-05 2.38502708738e-05 -15185304433.8 +UniRef50_UPI0004650D3F iron ABC transporter permease 1.1018809469e-07 1.62341271668e-07 21054877.5375 +UniRef50_W4U8H5 TsaD Kae1 Qri7 protein 1.46809502519e-07 1.0259391807e-06 354915439.216 +UniRef50_UPI0003D768D4 PREDICTED 1.51984202496e-07 3.36542016879e-07 74508254.4455 +UniRef50_D3QH01 Branched chain amino acid permease 5.18266232913e-07 2.09592878172e-07 -124615221.157 +UniRef50_A9M387 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 1.12907075432e-06 2.58204649305e-05 9968218826.41 +UniRef50_UPI00037FC5AF hypothetical protein 9.14370214715e-08 6.88288721336e-07 240956355.429 +UniRef50_P29013 2.73296266096e-05 1.58468312409e-05 -4635745400.09 +UniRef50_Q1GJ00 Aminodeoxychorismate synthase, subunit I 1.68245053275e-05 3.3322120471e-06 -5447004366.35 +UniRef50_Q83Q93 Biosynthetic arginine decarboxylase 3.82047035778e-05 5.47223014453e-05 6668356952.83 +UniRef50_UPI00038015E1 hypothetical protein 1.48147866146e-07 3.31670635407e-07 74090394.0283 +UniRef50_Q4L4Q7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000151724224858 1.70586946154e-05 -54366127091.0 +UniRef50_Q1GI12 Sarcosine oxidase alpha subunit family 4.33596334087e-05 1.38701226791e-05 -11905277358.5 +UniRef50_UPI0003B6C2BF inosine uridine preferring nucleoside hydrolase 5.80032462471e-08 2.46730154963e-07 76191368.9883 +UniRef50_A6VCM9 Oxidoreductase, FAD binding 4.59669958711e-06 4.08651797653e-06 -205966576.824 +UniRef50_UPI0003B30607 transcriptional regulator 1.31855150121e-07 4.02375460841e-07 109212369.095 +UniRef50_B9KPI4 5.17023883235e-05 1.10332198569e-05 -16418642376.8 +UniRef50_P52616 Phase 2 flagellin 3.47365908733e-05 1.17890532258e-05 -9264202546.25 +UniRef50_J9P338 1.41384974083e-06 3.52859771623e-06 853749708.545 +UniRef50_Q2P0J5 Thiazole synthase 1.7478248921e-05 5.72216112251e-05 16044883068.1 +UniRef50_F8JVM5 LigA 3.32142357587e-06 1.24313146858e-06 -839032027.225 +UniRef50_P65769 Polyphosphate kinase 9.91740508531e-08 5.28332132287e-06 2092903870.36 +UniRef50_B2TS76 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 4.05478513173e-06 1.79132797507e-05 5594844340.54 +UniRef50_R6KLR0 Polysaccharide deacetylase 1.58607558343e-06 2.46832381868e-05 9324607977.05 +UniRef50_M9VL85 1.11479896583e-05 9.94431647601e-05 35645845692.2 +UniRef50_M2BGU5 4.01580839207e-06 4.59991145523e-05 16949175890.0 +UniRef50_UPI0004726713 2 hydroxychromene 2 carboxylate isomerase 8.11696062435e-07 6.43211708804e-07 -68019201.0964 +UniRef50_B4SQ60 DoxX family protein 8.86079142093e-07 3.49859424817e-07 -216478480.02 +UniRef50_Q0I3Q6 Glutamyl tRNA reductase 3.51516019594e-08 6.62623191235e-08 12559778.2906 +UniRef50_A0A023NRD3 0.000112226755099 1.34148928712e-05 -39891561339.3 +UniRef50_B6I2P2 Phosphoglycerol transferase I 2.93177228019e-05 5.89520087834e-06 -9455959527.22 +UniRef50_Q9KCT8 NADPH dehydrogenase 1.02148070517e-07 8.51113263554e-08 -6877942.6824 +UniRef50_A1T1H6 1.14774714567e-07 3.40976421885e-07 91320405.0514 +UniRef50_R7UXT3 1.90887934969e-07 4.50735666292e-07 104903717.825 +UniRef50_A6LZQ9 2.62143047812e-06 4.10162090547e-06 597571039.5 +UniRef50_UPI000370658C hypothetical protein 5.52473277956e-08 6.58412176425e-08 4276883.33284 +UniRef50_A6LZQ3 1.74762031871e-06 3.62917224226e-06 759605600.776 +UniRef50_UPI00037BAE23 mutator mutT protein, partial 8.48405241532e-07 8.24014448672e-08 -309245132.637 +UniRef50_Q1JUQ1 L arabonate dehydratase 1.60209109763e-06 0.000118967778257 47381968145.0 +UniRef50_E9KNS2 Crp family transcriptional regulator 8.20414834355e-05 4.28170386247e-05 -15835389708.2 +UniRef50_UPI000384168E PREDICTED 6.39356631133e-07 2.36831143021e-07 -162504479.094 +UniRef50_L7WTA8 LysM domain containing protein 0.000122281866817 6.51630362905e-05 -23059572810.4 +UniRef50_Q6LUK6 Carbamoyl phosphate synthase small chain 2.26725165598e-07 7.51544078281e-08 -61190974.8941 +UniRef50_Q8CNU4 Proline dehydrohenase like protein 0.000111986869792 4.26772827281e-05 -27981130822.0 +UniRef50_A4WXA3 0.000129108795898 3.4183021443e-05 -38322700017.7 +UniRef50_UPI0004418811 PREDICTED 3.77837194267e-08 2.85237867215e-06 1136286521.38 +UniRef50_U2JRM5 9.95598241079e-06 7.44449176773e-07 -3718809004.8 +UniRef50_Q9KNM9 K H(+) antiporter NhaP2 2.82865702426e-05 8.26995252695e-06 -8080954203.31 +UniRef50_Q9KX08 Putative ribosome biogenesis GTPase RsgA 0.000160066737988 3.10100882932e-05 -52101753185.1 +UniRef50_Q18A91 DNA polymerase IV 3.79355087699e-08 8.25998046682e-08 18031524.3467 +UniRef50_B3W6P3 Divalent metal cation transporter MntH 5.62368593445e-05 5.70844622845e-05 342187708.136 +UniRef50_D4HBR1 Mannose 6 phosphate isomerase, class I 6.93339835125e-06 5.79753449531e-05 20606260198.3 +UniRef50_M1XIG8 SCCmec staphylococcal cassette region, isolate CMFT535 0.000133596767733 1.36000526311e-05 -48444146412.0 +UniRef50_R6CBZ9 3.76867282714e-06 3.11954266055e-06 -262061813.975 +UniRef50_P17815 Malate synthase, glyoxysomal 1.39143681189e-07 0.000656070587306 2.64807572975e+11 +UniRef50_P23105 2 hydroxymuconic semialdehyde dehydrogenase 1.2812223153e-07 4.92800349914e-07 147225031.495 +UniRef50_B5EXV0 Uridine kinase 4.81223996375e-05 2.65467130732e-05 -8710369429.46 +UniRef50_Q4K681 Spermidine putrescine import ATP binding protein PotA 4.14588012089e-06 2.34914576457e-06 -725363708.056 +UniRef50_W0BHE5 ABC type transport system involved in Fe S cluster assembly, ATPase component 1.48932592701e-07 1.77125595354e-06 654951848.917 +UniRef50_B7GXR8 2.13671314441e-06 4.2112727081e-05 16138807387.1 +UniRef50_E0TNV6 Gp34 5.35919048192e-06 1.41979185193e-06 -1590383568.78 +UniRef50_M7RDL9 5.8186488478e-07 1.334564237e-06 303873965.151 +UniRef50_Q1IVV5 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 6.88424295821e-07 0.000385699683013 1.55433769763e+11 +UniRef50_O27661 DNA topoisomerase 1 3.3327700218e-05 1.70153386149e-05 -6585500554.36 +UniRef50_Q37371 NADH ubiquinone oxidoreductase chain 6 6.90015632437e-07 8.51423307113e-08 -244194774.537 +UniRef50_B7I2D1 Glycerophosphoryl diester phosphodiesterase 1.07037614984e-06 7.18031715919e-05 28555697509.0 +UniRef50_D8U6B8 4.16014276365e-08 1.2944692356e-07 35464304.6898 +UniRef50_A0A022GZQ6 LacI family transcriptional regulator 8.95451841103e-07 2.74789644893e-07 -250568944.992 +UniRef50_UPI000471138D hypothetical protein 1.92006834979e-06 1.65278410825e-06 -107905928.256 +UniRef50_M4ZMN9 Gas vesicle structural protein 1.10779387647e-05 0.000161081839197 60558415359.3 +UniRef50_Q11DH5 Holliday junction ATP dependent DNA helicase RuvA 2.25708882418e-07 1.01306997688e-07 -50222567.4483 +UniRef50_F5ZH83 Phosphohydrolase 7.22792978235e-05 7.5412615888e-05 1264958952.78 +UniRef50_O66976 Histidinol dehydrogenase 1.91101505964e-06 2.33133236627e-05 8640374618.93 +UniRef50_A7GJ81 DNA directed RNA polymerase subunit beta 3.54598993163e-06 1.16690458447e-05 3279377353.21 +UniRef50_R7HT16 9.23180881063e-06 1.44218740724e-05 2095293035.44 +UniRef50_A0A024H9M2 HTH type transcriptional regulator HexR 8.49730540512e-06 4.02476048286e-06 -1805621269.41 +UniRef50_UPI00036B500B hypothetical protein, partial 1.11461199474e-06 3.46523069927e-07 -310086924.458 +UniRef50_F6D5Z8 ABC type transporter, periplasmic subunit 2.76253793539e-05 5.09021827504e-06 -9097721065.08 +UniRef50_Q6FEG1 Kinase sensor component of a two component signal transduction system 3.31084856469e-06 7.62263271973e-05 29436873497.5 +UniRef50_Q7MN25 Methionine import ATP binding protein MetN 1.7418074601e-07 9.50659814573e-08 -31939601.2973 +UniRef50_UPI00047C1764 hydrogenase maturation protease 8.59907463197e-07 2.52634990795e-06 672763264.494 +UniRef50_E1PW93 Transposase B 1.02670713198e-06 0.000181127847642 72709040513.4 +UniRef50_F0RJQ2 3 mercaptopyruvate sulfurtransferase 1.44815596745e-06 4.56911748174e-06 1259970461.82 +UniRef50_P00887 Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive 1.25492103727e-05 1.01086734115e-05 -985274719.993 +UniRef50_G7ZT27 6.57414280083e-05 0.000108490850961 17258466640.4 +UniRef50_Q9M315 3 methyl 2 oxobutanoate hydroxymethyltransferase 2, mitochondrial 2.51906096655e-07 1.45998657535e-07 -42756132.8032 +UniRef50_Q46106 Ferritin 9.78757152452e-07 1.7626841933e-05 6721036120.86 +UniRef50_P10996 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 2.92838285346e-06 1.11331700517e-05 3312373275.99 +UniRef50_X5DZU0 NAD dependent epimerase dehydratase family protein 0.000135841464478 2.75185034063e-05 -43731308657.0 +UniRef50_G7V8Z9 0.000129126186976 9.43264208836e-05 -14049092612.7 +UniRef50_B2TN34 3.17136869388e-06 1.12562002417e-05 3263945707.89 +UniRef50_Q4L6M0 DNA repair protein RecN 0.000175914822821 7.2221969977e-05 -41862077147.5 +UniRef50_I6Y1G9 Putative membrane protein 1.51273736531e-07 1.20716798603e-06 426277465.803 +UniRef50_Q7VK73 UvrABC system protein C 7.33457232246e-07 3.23513663939e-05 12764537924.0 +UniRef50_E2QNB6 Cystine transporter subunit 1.52716231474e-05 2.93290139211e-06 -4981293385.76 +UniRef50_Q5WEL9 Glutamate racemase 7.24095123122e-05 2.30557859273e-05 -19924704979.9 +UniRef50_C2X6L3 Alpha glucosidase 1.53889795835e-06 2.38744855777e-05 9017150810.39 +UniRef50_UPI0002D7F533 succinyl CoA synthetase subunit alpha 2.47174097259e-07 4.80255943907e-07 94098001.7277 +UniRef50_D2PWU8 ResB family protein 1.90523329085e-06 5.34754501453e-05 20819529381.8 +UniRef50_X2MBD9 PTS mannitol transporter subunit IIBC 2.32234677225e-07 5.30091646653e-07 120248513.674 +UniRef50_P37646 Cyclic di GMP phosphodiesterase YhjH 3.90400950836e-05 2.98051383061e-05 -3728265376.74 +UniRef50_Q8ZCA7 Copper exporting P type ATPase A 7.58973237456e-08 2.12246169774e-07 55045702.33 +UniRef50_P23378 Glycine dehydrogenase , mitochondrial 3.68651209684e-06 3.50154872658e-05 12647891725.5 +UniRef50_Q3IUX7 Acyltransferase 3 family 8.59084275982e-05 2.47993089834e-05 -24670501078.0 +UniRef50_A3PFZ9 DNA translocase FtsK 4.48200008599e-05 6.33924089602e-06 -15535155009.5 +UniRef50_Q5HNA3 Signal transduction protein TRAP 7.04223430034e-05 5.67898452593e-05 -5503606628.85 +UniRef50_P25527 GABA permease 3.59210397676e-05 1.89679345445e-05 -6844176616.56 +UniRef50_UPI0003C7ED51 hypothetical protein 1.3576584553e-06 2.54517422546e-05 9727077297.43 +UniRef50_UPI000289BAFB deoxyguanosinetriphosphate triphosphohydrolase 7.56074420363e-07 9.33353704351e-07 71569822.4074 +UniRef50_M1MT32 Two component transcriptional regulator, AraC family 3.70221366583e-06 1.19519449111e-05 3330517739.3 +UniRef50_K6GMQ5 5.49455248371e-06 2.79515271677e-06 -1089780811.27 +UniRef50_UPI00032893EC 4.0790492991e-07 2.93933399063e-06 1021968975.94 +UniRef50_W4JVY5 1.96396323594e-06 3.21759177124e-06 506105223.453 +UniRef50_F1UED2 1.52622367462e-06 8.56112650074e-05 33946163025.5 +UniRef50_UPI000299DF64 tRNA 2 selenouridine synthase 1.22727410263e-07 9.82810556222e-08 -9869293.359 +UniRef50_A5UP39 3.25280687339e-05 1.57782745423e-06 -12494992206.8 +UniRef50_E0UH66 Amine oxidase 1.17218339161e-07 5.62502700467e-08 -24613557.6638 +UniRef50_A5UP37 3.10262456591e-06 6.00644146164e-06 1172306514.65 +UniRef50_A5UP34 1.93596381494e-05 5.80950895467e-06 -5470353434.68 +UniRef50_A1B0E4 Membrane protein insertase YidC 7.25385144355e-05 2.1378463581e-05 -20653940334.4 +UniRef50_A9HRV7 Trigger factor 6.77679702012e-07 2.35810042456e-07 -178388203.913 +UniRef50_P39149 Uracil phosphoribosyltransferase 5.54699389765e-07 3.84097674364e-05 15282555504.3 +UniRef50_UPI00047EB418 amino acid ABC transporter permease 5.48649509851e-08 3.06939847882e-07 101765729.184 +UniRef50_D3E0M0 Calcineurin like phosphoesterase 2.34522392032e-05 7.39604659451e-06 -6482081987.77 +UniRef50_S1FKD9 2.88063929283e-06 6.16850746259e-06 1327352726.81 +UniRef50_A5UJ82 3 dehydroquinate synthase 3.24360433651e-05 4.42885821655e-06 -11306844331.3 +UniRef50_B7LJH6 4.00815766368e-07 4.90701128327e-07 36287823.6403 +UniRef50_F9Y4V0 6.53863805325e-07 3.80381106198e-07 -110408321.648 +UniRef50_I7JVN9 2.2242637305e-07 8.36343804463e-07 247846000.675 +UniRef50_A8I6P0 Predicted protein 3.64132072445e-08 2.86750750026e-08 -3123978.94362 +UniRef50_Q890U2 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.77436903749e-06 3.50804061526e-06 699904490.488 +UniRef50_Q0D831 Os07g0187900 protein 1.72067918298e-06 3.99034535673e-06 916292086.279 +UniRef50_A1B1L1 5.16213074887e-05 1.68645087742e-05 -14031746154.9 +UniRef50_C6CW74 Sulfate ABC transporter, ATPase subunit 1.84740288181e-06 9.6579111761e-06 3153198044.12 +UniRef50_F7KI55 Excinuclease ABC subunit A 8.61720574606e-08 6.03327691101e-07 208782075.514 +UniRef50_G0ICQ4 Transposase like protein, IS1381 ISSpn7 5.00565686819e-07 8.56113752942e-07 143539117.359 +UniRef50_K0HZ43 Transporter, major facilitator family protein 1.90836185841e-06 7.5868043089e-05 29858430900.1 +UniRef50_Q7A441 Molybdopterin synthase sulfur carrier subunit 9.62329973805e-07 8.1433898321e-05 32487359639.0 +UniRef50_A1U404 Type II secretion system protein E 5.26333702828e-06 6.60285866956e-06 540781324.364 +UniRef50_B2UX09 2.33016042498e-06 2.04275857248e-05 7306152673.91 +UniRef50_A6VAG5 Haloacid dehalogenase, type II 1.61548925324e-06 4.03621920536e-06 977278387.368 +UniRef50_UPI0003735394 hypothetical protein 1.09421026098e-07 1.71205596291e-07 24943189.1688 +UniRef50_Q9KSC2 Methylisocitrate lyase 3.1894638228e-05 0.000127252157453 38497000679.5 +UniRef50_Q06172 Flagellar basal body rod protein FlgG 7.26670960472e-05 1.71086309173e-05 -22429634152.0 +UniRef50_A9C1V3 1.01312670431e-07 3.06718235967e-07 82924747.4166 +UniRef50_X5IXK7 IS431mec, transposase 3.24643977845e-07 3.97666395352e-07 29480046.0334 +UniRef50_UPI000225B431 dTDP glucose 4,6 dehydratase 5.910974035e-08 8.17960333362e-08 9158734.87065 +UniRef50_P0ACS8 HTH type transcriptional regulator RpiR 3.4413698919e-05 8.09449387504e-06 -10625386049.2 +UniRef50_W5X9M8 Type I phosphodiesterase nucleotide pyrophosphatase 1.26652104041e-07 1.06135991692e-06 377353014.214 +UniRef50_W9H4Y7 ABC transporter permease 2.72008265724e-08 4.35452320697e-08 6598437.06767 +UniRef50_Q7V3R5 Phosphoribosylformylglycinamidine synthase 2 6.95673629689e-08 2.58160813765e-08 -17662929.2675 +UniRef50_P45743 Isochorismatase 2.27169953979e-07 3.91111870967e-07 66185363.6816 +UniRef50_UPI00036B0594 hypothetical protein 2.56793189679e-07 2.99345808814e-07 17179014.5242 +UniRef50_UPI000478FCEB alkyl hydroperoxide reductase 1.51010878429e-07 7.29572356491e-06 2884408187.02 +UniRef50_UPI00037BF563 hypothetical protein 2.41287367666e-06 5.07249500475e-07 -769323864.562 +UniRef50_UPI0002D56393 hypothetical protein 2.16036598222e-07 7.5871107522e-07 219084345.729 +UniRef50_C9M6I7 5.83225699386e-07 3.76409876268e-07 -83494085.7083 +UniRef50_UPI0003822EF9 hypothetical protein 2.06208242519e-07 9.25352878274e-07 290327514.351 +UniRef50_Q9JV11 UPF0307 protein NMA1049 2.47802618498e-06 3.53672700827e-06 427410514.082 +UniRef50_Q5FPZ9 Holo [acyl carrier protein] synthase 2.04172189206e-07 4.28458375686e-07 90547085.783 +UniRef50_P27303 Multidrug export protein EmrA 3.89260861418e-05 9.60432850044e-06 -11837553378.3 +UniRef50_P14532 Cytochrome c551 peroxidase 3.0970212708e-06 1.72196329551e-06 -555127778.483 +UniRef50_A0A016QQV6 2.87280869728e-07 4.08089066644e-06 1531526827.76 +UniRef50_D4H9H0 2.94230502286e-06 2.60978332472e-05 9348170894.43 +UniRef50_D0K339 1.58013571195e-06 4.58857290075e-07 -452673858.546 +UniRef50_UPI00037E8439 iron transporter FeoB 7.66538554955e-08 9.46109048526e-08 7249481.18324 +UniRef50_K0LZX2 0.000152168515458 2.21487528896e-05 -52490573670.6 +UniRef50_UPI0001CC3EEF hypothetical protein 5.37969314622e-08 1.17278568293e-07 25628315.7959 +UniRef50_Q4L4W4 Na+ H+ antiporter, MnhD subunit 0.000171138321528 4.18039142987e-05 -52213887310.0 +UniRef50_UPI00037D2BB8 hypothetical protein 3.8027169578e-08 1.47447747489e-07 44174430.0442 +UniRef50_A3PS55 0.000234428653813 2.53304662746e-05 -84415504232.4 +UniRef50_K6YKE1 8.64205710921e-07 4.3202245342e-07 -174477684.538 +UniRef50_P0A2J0 Histidine transport system permease protein HisQ 6.15811942655e-05 7.90280777913e-06 -21670623332.4 +UniRef50_Q8X6V3 2.74385337905e-05 1.3842970556e-06 -10518415091.3 +UniRef50_J9P815 2.07291676946e-07 7.50827592702e-08 -53374362.4517 +UniRef50_Q9ZKV9 IS606 TRANSPOSASE 1.75329979574e-06 3.39728423799e-05 13007424719.5 +UniRef50_W4UM07 TsaD Kae1 Qri7 protein 1.46809502519e-07 1.17506156474e-06 415117975.59 +UniRef50_W4TJV2 Transcription termination protein NusB 6.36212340763e-06 1.01251441781e-05 1519177662.5 +UniRef50_G7M0Z9 Type II secretion system F domain containing protein 1.02857217666e-06 4.79183477566e-06 1519275291.64 +UniRef50_Q6YWZ7 1.1708624299e-06 1.1097513351e-07 -427889507.832 +UniRef50_A5UNC4 Predicted coenzyme PQQ synthesis protein 3.7799615595e-05 2.74871176414e-05 -4163281972.45 +UniRef50_UPI00036D5C8E hypothetical protein 3.57566335505e-07 3.9744882142e-07 16101048.977 +UniRef50_M1MYX8 Methyl accepting chemotaxis protein 3.79124979432e-06 4.13025994186e-05 15143792159.4 +UniRef50_UPI000360D29B hypothetical protein 5.86441218768e-08 4.93857835919e-07 175701117.032 +UniRef50_B9KUN2 Oxidoreductase domain protein 5.3418468593e-05 2.88618486724e-05 -9913808805.56 +UniRef50_Q51700 Nitrite reductase 9.82429626756e-06 7.39220709474e-06 -981864244.158 +UniRef50_R6AHC9 8.42472741453e-08 2.23911196739e-06 869945319.824 +UniRef50_J9NWS4 2.60340323218e-07 7.28447638374e-07 188980667.451 +UniRef50_UPI000373A5D7 hypothetical protein 4.48555982627e-08 3.06265621011e-06 1218323139.58 +UniRef50_K4YWM5 4.41601516807e-07 1.16105547305e-06 290452390.828 +UniRef50_P76090 Inner membrane protein YnbA 1.19147640467e-05 9.66677545342e-06 -907540581.029 +UniRef50_Q6FEM6 Dual specificity RNA methyltransferase RlmN 1.17003443421e-05 6.09768359198e-05 19893524340.5 +UniRef50_F0HFQ0 1.73959396342e-07 1.91182023772e-07 6952986.0389 +UniRef50_I2DWY9 MotA TolQ ExbB proton channel family protein 2.87756739867e-06 4.98632401153e-06 851330921.965 +UniRef50_P0ADB2 Osmotically inducible lipoprotein E 4.49388081972e-06 1.91676530768e-05 5923981927.63 +UniRef50_F3U4S4 Blue light receptor BLUF domain containing protein 5.27954765308e-05 5.0770780263e-06 -19264503046.9 +UniRef50_UPI0003FEC0C1 hypothetical protein 3.18312182146e-08 8.24968335214e-08 20454330.6364 +UniRef50_UPI0003656647 hypothetical protein 2.70582155676e-06 1.14409524502e-06 -630488076.586 +UniRef50_Q9RSV9 1.27672825993e-06 0.000194578190858 78038172526.5 +UniRef50_UPI0003B6AB5A ABC transporter permease 1.55436298576e-07 1.86338019594e-06 689517910.193 +UniRef50_UPI0004120031 glycerol 3 phosphate ABC transporter substrate binding protein 2.58580869479e-07 9.84088138813e-08 -64663424.3771 +UniRef50_UPI0003713513 hypothetical protein 1.34469093019e-06 1.84741208071e-07 -468285937.004 +UniRef50_Q45592 Probable peptide export permease protein YydJ 0.000107566520619 2.26054613848e-05 -34299822202.3 +UniRef50_E8SHI1 Predicted oxidoreductase 8.49377236132e-05 3.95788692335e-06 -32692553806.1 +UniRef50_Q1IUD5 Potassium transporting ATPase A chain 3.49290054553e-08 1.84081997239e-05 7417514854.4 +UniRef50_S3DA11 FAD NAD binding protein 3.22068775111e-08 7.66965658036e-06 3083332167.09 +UniRef50_M2EZJ0 2.79912750829e-05 3.03927998483e-06 -10073426616.5 +UniRef50_B3PS08 Bacterioferritin 8.15992141695e-05 7.130383224e-06 -30063980888.0 +UniRef50_UPI0003598731 PREDICTED 8.41918166822e-07 7.15202028187e-07 -51156860.1488 +UniRef50_UPI0002626701 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.58362261254e-07 1.88770077385e-07 12276008.5179 +UniRef50_Q8CNC7 Urease accessory protein UreF 8.283002803e-05 6.73125712415e-05 -6264587726.13 +UniRef50_Q9RSI9 Phosphopentomutase 1.2584233918e-07 0.000235201359659 94902871043.1 +UniRef50_Q5HKJ8 Glycerol dehydrogenase 0.000122438563176 5.7312047889e-05 -26292373413.6 +UniRef50_Q11190 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 7.95720613581e-06 2.66870491225e-06 -2135032841.16 +UniRef50_B0CG85 1.59704254521e-07 1.64620885281e-07 1984904.17166 +UniRef50_G8VFK8 Biotin carboxylase 3.46986305232e-06 6.10201571927e-05 23233759966.0 +UniRef50_Q6GER8 Mannitol 1 phosphate 5 dehydrogenase 0.000107364848067 2.18374082753e-05 -34528476983.6 +UniRef50_C5N1D9 9.35915674838e-06 1.72029148658e-05 3166621405.74 +UniRef50_C6B577 Peptidase S8 and S53, subtilisin, kexin, sedolisin 2.73207134254e-05 5.72852811789e-06 -8717030174.55 +UniRef50_A1B2H5 Flagellin domain protein 4.71763552964e-05 1.6595672718e-05 -12345796824.1 +UniRef50_Q6FF20 Polyphosphate AMP phosphotransferase 8.00323651255e-07 6.27597523877e-05 25013781708.6 +UniRef50_Q5HPK8 Catalase 9.7405230881e-05 1.60855096368e-05 -32829769371.5 +UniRef50_D3QEW8 0.00013834812556 3.34070707763e-05 -42365991587.9 +UniRef50_O34645 Alpha galactosidase 3.02118604617e-06 1.51596541635e-05 4900448534.71 +UniRef50_UPI0003B72D82 hypothetical protein 2.43270322244e-07 6.48835250992e-06 2521216314.94 +UniRef50_A4SUD8 TraN protein 6.7680655042e-08 4.3483147875e-08 -9768830.58012 +UniRef50_Q9JZD0 5.99501305782e-07 2.82028712693e-05 11143819185.7 +UniRef50_Q2G6V6 Thymidylate synthase 8.5838222656e-05 1.88852209428e-05 -27029748397.3 +UniRef50_Q5HFZ7 Dihydrofolate reductase 0.000205051196372 3.61133348255e-05 -68202287806.8 +UniRef50_Q6A812 N acetyl gamma glutamyl phosphate reductase 4.3324502106e-06 2.57786299378e-05 8658085930.09 +UniRef50_A6LY45 3.12833692416e-06 3.2365364023e-05 11803346618.5 +UniRef50_UPI0002F39B78 hypothetical protein 3.60419074469e-07 3.15640897746e-07 -18077499.4331 +UniRef50_UPI0001BF786C hypothetical protein SMAC_11506, partial 2.74250362674e-06 1.08738361078e-07 -1063283357.68 +UniRef50_A5ISU2 0.000114435979021 4.82930776554e-06 -44249558210.8 +UniRef50_F3J2W3 AsmA family protein 1.31034739134e-07 1.57702505258e-07 10766104.4345 +UniRef50_UPI00047EDDA8 ACGS family amino acid carrier protein 1.93977796476e-08 5.38148330432e-06 2164739726.5 +UniRef50_B7GJM7 2 oxoglutarate ferredoxin oxidoreductase, beta subunit 0.000127508646162 3.25310898128e-05 -38343605003.9 +UniRef50_UPI000262500B dihydropteroate synthase 1.52809991299e-07 1.15182885366e-07 -15190524.4017 +UniRef50_F7ZT52 ABC type transporter, duplicate ATPase component 4.98898971513e-06 2.12976963129e-05 6584024983.87 +UniRef50_U5NN33 0.000418522193713 4.80877260914e-05 -1.49548940321e+11 +UniRef50_Q7VFA9 ATP dependent RNA helicase DeaD 1.59480178144e-06 4.43469579344e-05 17259570066.9 +UniRef50_F2U351 1.36382083913e-08 5.5543749636e-08 16917781.2393 +UniRef50_UPI000369F682 hypothetical protein 1.80204914258e-06 9.35406129701e-08 -689745859.161 +UniRef50_B9KZ43 GTPase Der 7.66566470157e-06 8.6915135331e-06 414147761.869 +UniRef50_B8HHC7 Formyltetrahydrofolate deformylase 6.01677278104e-06 2.30116913138e-06 -1500034788.95 +UniRef50_D1BX90 Transcriptional regulator, LysR family 6.18396851872e-07 3.52262837378e-07 -107441567.483 +UniRef50_B4S6J0 UDP N acetylglucosamine 1 carboxyvinyltransferase 9.46832203863e-08 6.89920504126e-07 240304595.829 +UniRef50_P76117 3.50581838882e-05 8.12398710068e-06 -10873665762.9 +UniRef50_I0C7E7 NikE 0.000254935710989 2.97588058451e-05 -90906679838.0 +UniRef50_G7MCM7 Aminodeoxychorismate lyase 1.89058091245e-06 1.05208141205e-05 3484131050.96 +UniRef50_A6LSA1 1.43167884525e-06 4.33757706537e-06 1173146770.84 +UniRef50_I9LBA0 Alkaline phosphatase 1.18017386351e-06 0.000159990893513 64113836349.0 +UniRef50_C5WFH4 UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase 4.34467724944e-05 3.67750703236e-05 -2693448037.34 +UniRef50_Q55S44 1.1702548157e-07 4.02060549517e-07 115072154.704 +UniRef50_U5MVS9 Cytochrome b5 2.01948088615e-05 1.29565060247e-05 -2922191679.18 +UniRef50_Q6GEQ8 Probable uridylyltransferase SAR2262 0.000208410287977 4.45415142352e-05 -66155834855.6 +UniRef50_I0C5M6 Acyl CoA hydrolase 0.000164633051779 1.55654286643e-05 -60180428717.0 +UniRef50_P39197 Phosphate acetyltransferase 2.39105784739e-07 6.40813151249e-08 -70659526.1749 +UniRef50_X2N154 Glutamate synthase 2.58080008632e-05 1.77929259451e-06 -9700684393.48 +UniRef50_P33315 Transketolase 2 5.28172458124e-08 4.38479513016e-08 -3621014.25963 +UniRef50_P23354 1 phosphofructokinase 8.01266000219e-08 1.82959842845e-06 706283245.571 +UniRef50_P0AD42 Phosphatidylglycerophosphatase C 2.96350704177e-05 1.36144382608e-05 -6467725797.0 +UniRef50_P0CB40 Phosphoethanolamine transferase EptC 3.7319946603e-05 1.72392246925e-05 -8106833853.44 +UniRef50_UPI0003653436 hypothetical protein 2.26927368029e-06 4.5416144615e-07 -732783082.854 +UniRef50_T1A1M3 Cobyrinic acid a,c diamide synthase 2.44515119022e-07 7.7565575713e-07 214427993.433 +UniRef50_Q9HU82 1.42447542961e-06 3.60875810829e-06 881821721.546 +UniRef50_Q0T052 Malate dehydrogenase 2.13015398234e-05 1.89103546545e-06 -7836258802.96 +UniRef50_UPI00047042B3 protoheme IX farnesyltransferase, partial 1.83988975329e-07 8.811365902e-07 281447047.087 +UniRef50_I3KYK8 1.23456361474e-05 2.45625701145e-06 -3992463713.51 +UniRef50_B9E056 DNA repair protein RecO 4.78397722615e-06 2.47472099328e-06 -932275078.97 +UniRef50_W8UX70 Pirin 8.53728172102e-08 8.72226812083e-08 746812.796417 +UniRef50_A4WV68 1.15905678836e-05 5.3693946399e-06 -2511563980.86 +UniRef50_UPI00047437FE 30S ribosomal protein S15, partial 3.6668433021e-06 4.75094805256e-06 437666391.222 +UniRef50_A4X0K4 0.000300055571713 4.36688331536e-05 -1.03506472575e+11 +UniRef50_UPI0003B358DD phytoene desaturase 6.30617128896e-08 3.13531484542e-07 101117720.426 +UniRef50_G7U9F5 2.0046288771e-06 4.1452329292e-05 15925520735.2 +UniRef50_A4X0K2 0.000114331359002 2.72021454746e-05 -35175132696.7 +UniRef50_V9W010 2.16487923241e-06 1.55822723944e-07 -811080766.365 +UniRef50_Q8A8R5 ATP dependent 6 phosphofructokinase 1 1.6131739956e-07 0.000140149105755 56514788002.3 +UniRef50_E4RMY1 CoA substrate specific enzyme activase 4.29789246994e-06 2.55939253788e-05 8597469817.03 +UniRef50_A0A031IYL1 1.25689338356e-06 1.27654570816e-06 7933884.60216 +UniRef50_P00358 Glyceraldehyde 3 phosphate dehydrogenase 2 1.08008182864e-07 8.2187355376e-08 -10424184.9141 +UniRef50_W6TF97 Outer membrane protein assembly factor BamD 8.52202351465e-08 2.16384639622e-07 52952679.6548 +UniRef50_UPI00016C52B2 potassium transporting ATPase subunit A 4.87815568839e-08 3.86021959834e-06 1538724308.94 +UniRef50_P0AFR0 NTE family protein RssA 3.17174674159e-05 2.15136218476e-05 -4119417671.19 +UniRef50_P0A9R0 Aspartate semialdehyde dehydrogenase 4.11128250197e-05 0.000118431750768 31214599134.5 +UniRef50_Q8DU04 2.02187564251e-05 1.17085918359e-05 -3435657876.12 +UniRef50_R9YS20 Phage portal family protein 2.4987985815e-05 3.79421891038e-06 -8556183776.15 +UniRef50_V8EVN4 1.24347018405e-05 8.9040212621e-06 -1425379075.82 +UniRef50_G8LI42 1.42978596829e-05 6.14749501921e-06 -3290402230.95 +UniRef50_Q8DU03 7.93800496678e-05 4.12069821193e-06 -30383123718.8 +UniRef50_A6LTA9 9.76256867724e-06 9.35926788773e-05 33843244198.9 +UniRef50_UPI000402B508 peptide deformylase 2.87131447448e-07 1.93873141191e-07 -37649522.6441 +UniRef50_W7U2M8 1.3349098486e-07 5.367577662e-08 -32222379.0092 +UniRef50_E8QFC4 3.01988791085e-06 2.60166041199e-05 9284056535.02 +UniRef50_P45303 2 oxoglutarate dehydrogenase E1 component 4.8595850617e-07 0.000104775174901 42102836431.3 +UniRef50_A6LQ67 GntR domain protein 4.77830365635e-06 3.39045928521e-05 11758640368.1 +UniRef50_A0A036I5S3 8.81176511406e-07 1.45671086782e-06 232350282.285 +UniRef50_P45240 Sodium glutamate symport carrier protein 3.6658949996e-05 0.000100387145615 25727854604.3 +UniRef50_UPI00047875CB hypothetical protein 7.94316094354e-08 6.19839150672e-07 218169155.944 +UniRef50_A6TGA9 HTH type transcriptional activator RhaS 2.11730969928e-05 2.19838738361e-06 -7660323115.11 +UniRef50_B7V1B6 1.32391861385e-05 4.3858916614e-06 -3574183622.55 +UniRef50_L9BSL0 Penicillin binding protein activator LpoA 1.07250441969e-05 1.90734858542e-06 -3559811923.65 +UniRef50_A0A043WFQ4 2.83124416727e-07 2.2149529354e-07 -24880433.305 +UniRef50_P73426 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 3.29222940049e-05 4.01679048146e-06 -11669506482.8 +UniRef50_P71239 Putative colanic acid biosynthesis glycosyl transferase WcaE 8.66590360751e-06 7.95244486817e-06 -288032048.195 +UniRef50_UPI000410C3F5 bacitracin ABC transporter ATP binding protein 1.10225717888e-07 1.27685304248e-07 7048649.26675 +UniRef50_UPI0002D5F775 ATPase 4.9885532083e-07 4.4625668772e-07 -21234713.6443 +UniRef50_UPI00037CF9B5 hypothetical protein 7.45201199033e-07 4.87106337714e-07 -104196062.695 +UniRef50_UPI000405E993 acetyltransferase 5.37854786543e-07 2.99012328242e-06 990010884.505 +UniRef50_I7B8G3 Poly 6.37231987322e-06 8.26821320576e-06 765395403.574 +UniRef50_B4RA53 3.03222068082e-07 3.16480523303e-07 5352601.07226 +UniRef50_UPI000373244E hypothetical protein 9.52816567006e-08 6.1216679113e-07 208672871.663 +UniRef50_P35482 Alkaline phosphatase L 2.15315467719e-05 3.82286997012e-06 -7149210134.79 +UniRef50_B9KJR5 Binding protein dependent transport systems inner membrane component 1.2975591023e-05 4.61259753837e-06 -3376243095.22 +UniRef50_UPI0003B5FEB1 sulfate transporter 5.66195050081e-07 1.2972346332e-07 -176208935.684 +UniRef50_UPI0004657597 hypothetical protein 2.32343274735e-07 7.35403034455e-07 203091398.236 +UniRef50_Q5F8F6 tRNA lysidine synthase 3.6905839131e-06 2.94703239931e-05 10407597423.3 +UniRef50_UPI00047939C9 Fis family transcriptional regulator 3.60070132245e-06 1.46950401638e-06 -860390505.192 +UniRef50_D6AYQ3 4.37027514448e-06 2.17448020881e-06 -886469360.964 +UniRef50_C7RP31 4.10149103732e-06 1.11166927105e-05 2832123001.67 +UniRef50_UPI000347473B ABC transporter permease 4.17237915091e-07 6.96944164614e-07 112920845.314 +UniRef50_H6PD14 Oxidoreductase,pyridinenucleotide disulfide, class I 2.2202328079e-05 1.82498836633e-05 -1595650312.57 +UniRef50_Q99WQ6 Lipase 2 0.00014421842654 2.8858997087e-05 -46572017289.6 +UniRef50_A3PMS2 Chromosome partition protein Smc 1.06247713254e-05 4.3733494839e-06 -2523775710.99 +UniRef50_UPI00046813B7 hypothetical protein 8.61351368169e-07 1.73546326286e-07 -277675335.725 +UniRef50_Q9K0Y6 Phospho N acetylmuramoyl pentapeptide transferase 2.80896417523e-05 0.00010830892556 32385509274.5 +UniRef50_UPI000248DDD1 sugar ABC transporter permease 1.77521528267e-07 2.02410115945e-06 745486857.188 +UniRef50_P49433 Glyceraldehyde 3 phosphate dehydrogenase 1 2.49020807337e-07 2.75708028578e-07 10773958.704 +UniRef50_Q99Y18 6 phospho beta galactosidase 0.000264831448372 7.3104365963e-05 -77402575924.4 +UniRef50_P14953 Anthranilate synthase component 1 1.04165324688e-07 1.56973389576e-07 21319263.8231 +UniRef50_U5RY54 1.97208268834e-06 1.72746271754e-05 6177824992.78 +UniRef50_Q97GY4 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 6.40548442558e-06 2.09242508865e-05 5861404185.56 +UniRef50_P0DC56 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 7.78206562738e-05 6.01532214999e-05 -7132560222.03 +UniRef50_UPI0003C7A2A0 hypothetical protein 7.77195970112e-07 5.77900624486e-06 2019292187.03 +UniRef50_K2JJ46 NAD specific glutamate dehydrogenase 7.19633193391e-07 5.9241299866e-07 -51360353.7803 +UniRef50_M9B494 7.78576930011e-07 8.63214005412e-07 34169025.9531 +UniRef50_Q9RSU0 Glutamine synthase 9.75631551138e-07 0.000499112496199 2.01103965085e+11 +UniRef50_UPI000375E388 hypothetical protein, partial 7.4192639978e-07 2.57091751582e-07 -195733697.068 +UniRef50_W4TMV5 2.22941369635e-07 1.36458157977e-06 460894162.33 +UniRef50_Q46267 Pyruvate formate lyase activating enzyme 5.20290834472e-07 2.29710190775e-05 9063634493.12 +UniRef50_F8JI17 2.82171367632e-06 1.25680876309e-07 -1088421525.41 +UniRef50_A7INU8 Anhydro N acetylmuramic acid kinase 4.50929574888e-08 2.44405435681e-07 80464893.2853 +UniRef50_D0D2I8 ArsC family protein 1.20915942346e-06 7.22677741709e-07 -196398624.724 +UniRef50_B2Y834 Abortive phage resistance protein like protein 8.67933720424e-05 3.52586565796e-05 -20805197034.4 +UniRef50_P0AA69 Threonine homoserine exporter RhtA 3.03146107685e-05 1.83958609873e-05 -4811745546.18 +UniRef50_UPI00047DFAFF hypothetical protein 3.39537933543e-08 2.79241872734e-08 -2434225.96645 +UniRef50_M4NGT3 Arsenical resistance protein ArsH 2.96067442241e-06 8.12320374969e-05 31599109770.8 +UniRef50_Q47539 Taurine transport system permease protein TauC 2.66478013264e-05 8.14200202826e-05 22112216923.3 +UniRef50_W4UB64 Menaquinone specific isochorismate synthase 3.6296729697e-06 1.35047144752e-05 3986675436.16 +UniRef50_C2W144 Cell wall surface anchor 3.40130826249e-08 2.99474824448e-06 1195285117.15 +UniRef50_UPI00035CC609 hypothetical protein 1.21836328929e-06 9.02753853642e-07 -127415402.134 +UniRef50_Q2RP22 Dual specificity RNA methyltransferase RlmN 0.000107307669935 2.14281541268e-05 -34670614391.9 +UniRef50_UPI0003C16468 PREDICTED 7.89544409101e-08 4.72636564893e-08 -12793958.5603 +UniRef50_UPI000476C674 hypothetical protein 9.69708710926e-08 1.56551135474e-07 24053283.8628 +UniRef50_Z5XDL4 Glutamate synthase 3.23186144207e-08 3.06062049218e-08 -691320.728334 +UniRef50_UPI0004774B62 hypothetical protein, partial 4.06777620211e-07 3.20489455372e-07 -34835591.0204 +UniRef50_A1IRN6 8.90841136789e-07 1.30722608256e-05 4917788611.2 +UniRef50_UPI000477DB28 NrdR family transcriptional regulator 9.34125128345e-07 1.33689831989e-06 162604480.01 +UniRef50_UPI0002E108A4 hypothetical protein 3.17006815175e-07 2.12236204661e-06 728844061.132 +UniRef50_C3YD63 1.52303062457e-08 4.07171857443e-08 10289366.0128 +UniRef50_UPI00037451D4 hypothetical protein 8.28759168097e-08 9.29504144432e-08 4067198.32263 +UniRef50_P0A585 Glucose 6 phosphate 1 dehydrogenase 2 1.17362633558e-07 7.40612531387e-05 29852055990.5 +UniRef50_A5UNF6 Putative Zn peptidase 4.66781943369e-05 2.54218110649e-06 -17818250150.9 +UniRef50_Q46820 2.13469435242e-05 4.65842697415e-06 -6737358922.4 +UniRef50_G0LV16 CAAX amino terminal protease family protein 7.52090649818e-05 1.49350521893e-05 -24333358609.6 +UniRef50_K0HMU2 Polysaccharide deacetylase 4.93834622703e-06 5.30509906634e-05 19423664967.5 +UniRef50_A6LYX7 4.61536301295e-06 2.55317036191e-06 -832532479.174 +UniRef50_UPI0003795D86 hypothetical protein 4.33034926066e-07 3.18144203592e-06 1109565676.99 +UniRef50_UPI00046281E4 PREDICTED 1.41084058665e-06 7.12975280051e-06 2308795039.68 +UniRef50_O25242 DNA polymerase III subunit beta 1.01112318447e-06 4.03959574074e-05 15900140882.0 +UniRef50_Q8D5U6 1.59434593721e-06 2.30683569368e-05 8669321756.29 +UniRef50_B9KJP6 NADH hydrate epimerase 7.31925595303e-07 7.15655687981e-07 -6568361.24011 +UniRef50_M9B696 Bifunctional glmU domain protein 1.65646172412e-05 8.51875111142e-06 -3248214890.47 +UniRef50_Q820V5 Enoyl [acyl carrier protein] reductase [NADH] FabI 1.25395055315e-07 1.89832920819e-05 7613164442.06 +UniRef50_Q1CG91 Methionine import ATP binding protein MetN 1 1.82552416953e-07 2.23241459225e-07 16426665.6759 +UniRef50_Q186R1 Thiazole synthase 8.37528356113e-06 2.97397047942e-05 8625079022.73 +UniRef50_H6LJB5 Chemotaxis protein methyltransferase CheR2 3.00788024613e-06 1.6249039914e-05 5345618645.23 +UniRef50_UPI000328B359 PREDICTED 4.09183807218e-07 4.40997348515e-07 12843517.0177 +UniRef50_Q8K9N2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.62645836624e-07 2.52217190258e-07 36161054.6262 +UniRef50_D2AAC8 Biotin sulfoxide reductase 1.33387709286e-05 8.05043267146e-07 -5060019663.08 +UniRef50_B8CY71 Lon protease 6.7944948875e-08 1.5359773394e-07 34579080.4086 +UniRef50_R9SL42 3.1431773612e-05 8.15840095442e-06 -9395746138.27 +UniRef50_M1FGU0 4.2825448039e-06 2.36253364156e-05 7808922336.39 +UniRef50_P19496 Coenzyme F420 hydrogenase subunit alpha 1.65309763648e-05 3.67596858647e-06 -5189724388.78 +UniRef50_A7ZU67 Der GTPase activating protein YihI 3.04624412835e-05 7.14075750017e-06 -9415249932.56 +UniRef50_Q8TX50 50S ribosomal protein L10 1.65989492411e-05 7.97251355547e-06 -3482597944.56 +UniRef50_A6LX70 MukB N terminal domain M protein repeat protein 6.5873309663e-06 1.43271639743e-05 3124665563.76 +UniRef50_E3DSX1 KdgR1 8.18368301181e-06 1.29675182196e-05 1931292977.64 +UniRef50_UPI000464DA5F ABC transporter 5.59939890418e-08 1.38348009265e-07 33247328.5616 +UniRef50_UPI0003FDD6FE FAD containing monooxygenase EthA 1.17356455547e-07 2.38205925472e-05 9569287281.64 +UniRef50_A0A022LQG6 Glyoxalase 2.9420058585e-07 3.7942528545e-07 34406257.0532 +UniRef50_Q3J3Q2 3.26318618142e-05 1.12057516709e-05 -8649983592.79 +UniRef50_UPI0003F48E9A hypothetical protein TREMEDRAFT_26315 2.69750014306e-08 3.42607698797e-08 2941354.12933 +UniRef50_S5RL61 ATP dependent DNA helicase 5.6491774676e-05 2.53834531831e-05 -12558811128.7 +UniRef50_B8FP23 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.53507860593e-07 8.37965866608e-08 -28143296.74 +UniRef50_A4EPQ9 6.81816818623e-05 3.61091044288e-05 -12948093084.7 +UniRef50_UPI000329816A PREDICTED 5.08374541215e-07 1.8976776119e-06 560878698.299 +UniRef50_G1XX87 1.81024986141e-06 1.31706190063e-05 4586320431.2 +UniRef50_A0A024L1D8 Antirestriction protein 4.98892606782e-07 3.91147953907e-06 1377703221.72 +UniRef50_U5MT98 5.90476353155e-06 1.66053057755e-05 4319940214.28 +UniRef50_Q1RK88 4.56424049103e-05 4.88387348001e-05 1290397599.89 +UniRef50_X0PNW8 DNA gyrase subunit B 1.62962300532e-07 1.37760030061e-06 490364265.917 +UniRef50_UPI0003752FD7 hypothetical protein, partial 2.39535396236e-06 1.01061680298e-06 -559035383.878 +UniRef50_Q03KB7 ATP dependent 6 phosphofructokinase 4.78124301285e-05 3.82948422281e-05 -3842367029.33 +UniRef50_Q2FH56 Putative oligopeptide transport system permease protein oppC2 0.000205963816924 2.37620889639e-05 -73557073444.1 +UniRef50_A1SW90 Beta hexosaminidase 4.07470685053e-08 2.49014504511e-07 84080119.6445 +UniRef50_UPI0001B664E4 Os08g0187500 8.10315376137e-07 4.4673363675e-06 1476384250.91 +UniRef50_B2UZH1 Cyanophycinase 1.19936410372e-05 2.92835996884e-05 6980168479.14 +UniRef50_A6M0N2 Signal transduction histidine kinase, LytS 9.32503262961e-06 9.70362057043e-06 152840597.505 +UniRef50_A6LYP0 PTS system, mannose fructose sorbose family, IIA subunit 2.86698219379e-06 2.54783039777e-05 9128468076.28 +UniRef50_A0A023KNT6 1.50395407342e-06 2.15814277023e-06 264104004.7 +UniRef50_Q2YU28 1.61615964863e-05 1.53332570187e-06 -5905612424.73 +UniRef50_UPI0001FFEA10 ABC transporter 9.42562944799e-07 2.49498033757e-07 -279798809.451 +UniRef50_G5J8I8 Transposase, Tn3 family 2.55846774511e-07 1.28569724911e-05 5087229084.99 +UniRef50_UPI000361DFBB hypothetical protein 4.81947407208e-08 8.02953902992e-08 12959426.1541 +UniRef50_A3PNG9 Transferase hexapeptide repeat containing protein 0.000104750361539 1.8630623084e-05 -34767595222.3 +UniRef50_B9NR02 3.77552927356e-05 4.28149721403e-06 -13513782021.7 +UniRef50_P39916 Thioredoxin reductase 0.000101142581658 0.000101379492084 95643646.1941 +UniRef50_B0VT23 Erythronate 4 phosphate dehydrogenase 4.20854951058e-06 8.71508239562e-05 33484814009.9 +UniRef50_Q02RB8 UDP 3 O acylglucosamine N acyltransferase 1.5265059377e-05 9.82087922008e-06 -2197882336.95 +UniRef50_A0LM36 Macrolide export ATP binding permease protein MacB 3.17051649979e-08 1.41139116432e-07 44179829.0995 +UniRef50_UPI0004713629 hypothetical protein 2.99420651106e-06 2.8588446127e-06 -54647259.4452 +UniRef50_Q3V7R9 4 hydroxythreonine 4 phosphate dehydrogenase 9.26690746418e-06 7.09958081303e-08 -3712502382.07 +UniRef50_A3M2D7 DNA primase 1.91933123357e-06 0.000103129813918 40859913851.8 +UniRef50_G3GPU6 9.52024639151e-08 2.19460337709e-07 50164428.4662 +UniRef50_Q5HRQ3 Peptidyl tRNA hydrolase 9.64635371193e-05 2.45405725638e-05 -29036183385.1 +UniRef50_Q4L4Y2 ATP dependent helicase deoxyribonuclease subunit B 0.000115570726846 2.63892526894e-05 -36003655496.8 +UniRef50_A3SHH8 5.73401723464e-07 3.61154484524e-07 -85686814.9266 +UniRef50_UPI00045E8170 hypothetical protein 6.09339181379e-08 1.01273537124e-07 16285599.2075 +UniRef50_UPI000371708D hypothetical protein 1.01912128211e-06 5.48238585019e-07 -190101123.196 +UniRef50_R8S9D2 9.50442621984e-07 0.00011640101584 46608813146.0 +UniRef50_C1DIU1 Response regulator 3.09420256021e-05 1.30341252148e-05 -7229639141.0 +UniRef50_R7MTU6 5.03446074007e-05 1.47724168973e-05 -14360929826.1 +UniRef50_P77768 1.92106833763e-05 4.0664849239e-06 -6113898755.45 +UniRef50_UPI00046ADC84 transposase 3.91429399837e-08 8.86595122707e-08 19990447.8689 +UniRef50_UPI00047D345D hypothetical protein 3.17999080168e-07 2.37858741144e-07 -32353638.2965 +UniRef50_B2TQ47 Shikimate kinase 2.35928743029e-06 1.30787911857e-05 4327595209.16 +UniRef50_P50852 PTS system mannitol specific EIICB component 7.99085938229e-08 9.66299220863e-08 6750605.41371 +UniRef50_UPI000368B6A3 hypothetical protein, partial 3.07655091778e-07 3.1218179004e-07 1827483.6372 +UniRef50_A6LU00 Baseplate J family protein 3.57453725764e-06 2.46599753734e-05 8512450114.77 +UniRef50_UPI0003B708C3 DNA glycosylase, partial 5.75759874775e-07 1.61466798753e-06 419419953.953 +UniRef50_A0A011PVV2 1.62938363087e-06 6.66152906117e-06 2031538861.58 +UniRef50_G7M9T7 8.8114942308e-06 1.41687953598e-05 2162808207.25 +UniRef50_A4VN57 Oxidoreductase, molybdopterin binding 2.41258907866e-06 9.62989256126e-07 -585221236.946 +UniRef50_Q9I0H4 Flavohemoprotein 1.01717425989e-05 5.11872506009e-07 -3899808096.44 +UniRef50_UPI00026306CB ubiquinol cytochrome C reductase 1.09625419348e-06 4.49333072065e-07 -261169995.33 +UniRef50_Q9RZD6 Ferredoxin nitrite reductase 3.01421464354e-06 0.000344282270331 1.37774101911e+11 +UniRef50_U3T069 Nicotinamide nucleotide adenylyltransferase 3.82587150866e-06 2.77462359093e-05 9656944644.4 +UniRef50_A5UJ97 3.94226652981e-05 3.46988903649e-06 -14514576967.0 +UniRef50_A8L7A1 Putative transcriptional regulator 6.43992197656e-07 2.27393772044e-07 -168185896.657 +UniRef50_UPI0004729065 membrane protein 3.05030440267e-07 1.04666874197e-07 -80889230.3599 +UniRef50_M4VIT1 MotA TolQ ExbB proton channel family protein 2.98165438002e-05 1.9559822084e-05 -4140764420.96 +UniRef50_Q5HKI1 Probable succinyl diaminopimelate desuccinylase 0.000202955628631 5.82029046095e-05 -58438451003.4 +UniRef50_UPI0003620D57 hypothetical protein 1.65138140605e-08 9.06269473625e-08 29920381.3844 +UniRef50_G4QII0 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein 4.99633516867e-05 6.0963709524e-05 4440979448.49 +UniRef50_UPI0001FFF2A8 putative hydrolase 1.01513511738e-07 7.81778520282e-07 274631331.74 +UniRef50_UPI0003D0D2FE PREDICTED 2.78207475169e-07 2.46269420503e-07 -12893784.5927 +UniRef50_V9U2A1 Thioesterase PvdG involved in non ribosomal peptide biosynthesis 7.19562651032e-06 6.81500088921e-06 -153663234.044 +UniRef50_E4CZ61 5.89821857578e-06 1.84572940748e-05 5070252896.13 +UniRef50_A6TRD7 2.02711978108e-06 1.20527589669e-05 4047473567.74 +UniRef50_UPI0002D6A2EC deoxyguanosinetriphosphate triphosphohydrolase 7.32536050167e-07 5.6176240941e-08 -273054754.853 +UniRef50_P9WGC6 Succinyl CoA ligase [ADP forming] subunit alpha 0.00011603345089 7.96659258257e-05 -14682016148.2 +UniRef50_UPI00037FF954 hypothetical protein 1.35283566279e-07 7.86820024732e-07 263033263.529 +UniRef50_UPI0003B73915 potassium transporter TrkA 8.12097968596e-08 1.34428828904e-07 21485176.3073 +UniRef50_UPI000463E242 hypothetical protein 5.12334019912e-08 3.41577203972e-07 117215355.779 +UniRef50_A3PH06 0.000138328769499 3.57363137893e-05 -41417833321.1 +UniRef50_P23630 Diaminopimelate decarboxylase 9.09729700937e-08 1.48169990653e-05 5945077443.29 +UniRef50_A8F7Z9 Ornithine carbamoyltransferase 6.04205672409e-08 8.36436123122e-08 9375428.27409 +UniRef50_P0AFS5 AI 2 transport protein TqsA 3.34426124009e-05 1.44804104504e-05 -7655273619.8 +UniRef50_UPI0003449BF9 acetolactate synthase 3.29398305574e-07 9.84241736536e-06 3840522532.31 +UniRef50_UPI0003B58311 citrate synthase, partial 2.32538742189e-07 5.71442172265e-07 136819473.534 +UniRef50_A0A023RXS3 Magnesium transporter 3.37842557968e-06 6.44628195509e-05 24660519436.0 +UniRef50_A9NAA5 Phosphoheptose isomerase 6.37758434682e-05 2.81154134615e-05 -14396553196.4 +UniRef50_UPI000249446F cellobiose phosphorylase 1.14378563817e-06 1.50705006754e-06 146654307.893 +UniRef50_A9M3I8 dTDP 4 dehydrorhamnose reductase 1.10523249462e-05 2.16042348677e-05 4259935521.81 +UniRef50_Q46851 L glyceraldehyde 3 phosphate reductase 4.42795078185e-05 5.98245808684e-05 6275736749.74 +UniRef50_UPI000300C9AC heme ABC transporter ATP binding protein 2.01490003621e-07 8.0258825366e-07 242670739.846 +UniRef50_K4NDS6 1.20989098994e-06 1.98480952046e-05 7524471757.96 +UniRef50_T0ZCE6 Thiamine biosynthesis protein ThiC 2.04562772034e-07 8.12653630909e-07 245493741.842 +UniRef50_A8FEQ2 Pseudouridine synthase 7.1191407092e-05 2.83095504139e-05 -17311931760.5 +UniRef50_A6M2V9 Methyl accepting chemotaxis sensory transducer 7.84794155617e-07 1.50074286437e-05 5741852074.2 +UniRef50_P64434 Inner membrane protein YpjD 2.93604828794e-05 2.08213893202e-06 -11012602194.5 +UniRef50_D3E0C1 4.20301781789e-05 4.28129877289e-06 -15239685847.0 +UniRef50_UPI0002196E63 amino acid ABC transporter periplasmic protein 6.73356453807e-08 9.21004062606e-08 9997837.86501 +UniRef50_I6D8C7 Sensor atoS domain protein 2.37183370661e-05 4.04543431768e-06 -7942192253.19 +UniRef50_E6MU88 DNA binding response regulator, Fis family 2.15115103052e-06 4.51759698677e-05 17369647338.5 +UniRef50_B8DW19 30S ribosomal protein S3 1.61659948589e-05 4.09237941937e-05 9995027403.82 +UniRef50_Q83BS0 Transcription termination antitermination protein NusA 3.95200935005e-05 9.15030030039e-05 20986138468.6 +UniRef50_P02924 L arabinose binding periplasmic protein 1.48123092923e-05 2.1848338239e-06 -5097866803.14 +UniRef50_E5WAH0 4.32235865095e-06 2.15284477612e-06 -875859374.198 +UniRef50_UPI000477EDEC hypothetical protein 9.95893161909e-07 6.26745704145e-07 -149029358.648 +UniRef50_UPI00036184DA hypothetical protein 1.81090887652e-07 3.91604677352e-08 -57299052.2026 +UniRef50_Q0ASX6 1.93664009927e-07 4.16074123058e-07 89789691.95 +UniRef50_A9BTA7 Non canonical purine NTP pyrophosphatase 3.31090980871e-07 1.34930922527e-07 -79192222.7081 +UniRef50_C7Q8K8 6.33023679082e-08 7.1063468417e-06 2843363481.94 +UniRef50_U5AI32 DNA polymerase III subunit beta 1.5099439554e-05 1.88500024587e-06 -5334831308.09 +UniRef50_G5MH51 3.47493861839e-07 3.6410037568e-07 6704253.42245 +UniRef50_UPI000475DCB4 ATPase, partial 1.81680432359e-06 3.16450718534e-05 12042037635.8 +UniRef50_UPI0003B5589D hypothetical protein 2.45949660491e-08 1.50185023973e-07 50702247.5472 +UniRef50_UPI000363404F MULTISPECIES 1.78925068132e-07 1.79820425666e-07 361466.823748 +UniRef50_S1SPS9 PTS system transporter subunit IIA 5.72303066785e-05 9.57783908741e-06 -19237885928.1 +UniRef50_UPI00037ACE4F hypothetical protein 5.24489057051e-08 7.48844184284e-08 9057491.8011 +UniRef50_A5UJD7 Predicted transposase 3.60697537197e-05 7.13394269692e-06 -11681741992.2 +UniRef50_A9B4Z7 NADH quinone oxidoreductase subunit D 1 6.21073167249e-08 7.42080091766e-07 274513353.488 +UniRef50_F3SFL5 3.09270081671e-06 7.20353275986e-07 -957745814.167 +UniRef50_UPI00036E2F89 hypothetical protein 4.92745695945e-06 2.14110756335e-07 -1902835701.46 +UniRef50_UPI000469CEC8 hypothetical protein 1.82046109492e-07 3.98851393146e-08 -57392128.1717 +UniRef50_A8GE31 PTS system, maltose and glucose specific IIAbc component 1.91602065363e-06 5.95596999188e-07 -533071232.718 +UniRef50_K7TAU7 7.86184567758e-06 1.10712867877e-06 -2726962142.12 +UniRef50_Q1C1E0 Glycogen debranching enzyme 2.98322902965e-05 2.41700997045e-06 -11067885090.9 +UniRef50_Q2RRM4 N acetyl gamma glutamyl phosphate reductase 5.85980225593e-07 2.24794465634e-07 -145815123.543 +UniRef50_T2DXA7 1.05603699885e-05 2.68469731995e-05 6575101575.38 +UniRef50_UPI00035EBF42 hypothetical protein 3.41046528148e-06 1.28732906505e-06 -857136144.384 +UniRef50_P52146 Arsenical pump membrane protein 0.000226288889207 6.55159883118e-05 -64905992996.7 +UniRef50_B9DN29 6,7 dimethyl 8 ribityllumazine synthase 1.60933768439e-07 6.21860919488e-07 186081947.091 +UniRef50_UPI0002D3715C hypothetical protein 1.64033516518e-05 8.51871004283e-08 -6587843275.8 +UniRef50_Q55038 Amidophosphoribosyltransferase 4.3283230997e-08 6.73673434576e-07 254496260.943 +UniRef50_M4KMH2 Cysteine desulfurase 3.36005900066e-05 4.73844407918e-05 5564709708.86 +UniRef50_UPI000476ECF5 hypothetical protein 2.07713318283e-06 5.93918699409e-07 -598791888.045 +UniRef50_Q9UZU7 Phosphate import ATP binding protein PstB 7.29162451769e-05 0.000105844478216 13293531752.7 +UniRef50_UPI0003C1AD3B PREDICTED 3.37736341156e-07 6.45326877495e-08 -110295667.466 +UniRef50_S6B705 8.11158127318e-05 2.94201310697e-05 -20870181064.3 +UniRef50_A6M0A3 2.3349648795e-06 3.35587164987e-06 412152591.133 +UniRef50_Q38451 C repressor 1.55293136979e-05 2.72362141742e-05 4726219382.11 +UniRef50_Q88VD4 30S ribosomal protein S20 2.2117862046e-05 1.33225581291e-05 -3550772121.77 +UniRef50_B0CHX9 Adenine phosphoribosyltransferase 7.57968032653e-05 7.98046467691e-06 -27378288088.2 +UniRef50_A3WPC3 1.90849599432e-06 2.72116370809e-06 328083928.603 +UniRef50_UPI00028995EB 6 pyruvoyl tetrahydropterin synthase 1.07300780255e-06 8.3595193852e-06 2941654141.47 +UniRef50_A0A022NGW7 2.10984624753e-07 2.73676672327e-06 1019689228.0 +UniRef50_Q890R5 tRNA pseudouridine synthase A 2 4.71857486069e-06 2.75353749934e-05 9211422207.19 +UniRef50_UPI000464C09A GntR family transcriptional regulator, partial 2.24152182028e-07 3.00769829037e-07 30931484.3018 +UniRef50_H3V9W4 1.29230863228e-05 2.11763948756e-06 -4362291485.11 +UniRef50_A6LSW5 Cobalamin synthase 1.51398123869e-06 5.1088667735e-06 1451299404.61 +UniRef50_U5MTT1 Transcriptional regulator, AraC family 1.35949335724e-06 1.56429884676e-05 5766422254.26 +UniRef50_A9IYN9 Elongation factor P 0.000203834695393 3.72004565284e-05 -67272287061.9 +UniRef50_B5QX24 Protein TolB 3.17935108626e-05 1.83648513329e-05 -5421314640.32 +UniRef50_P0A9D0 Fructose 1,6 bisphosphatase class 2 2.65203254394e-05 2.24914685275e-05 -1626498974.97 +UniRef50_K2EHJ4 5.01000550452e-08 6.86783035329e-06 2752401384.36 +UniRef50_O25582 Protease HtpX homolog 1.32451224162e-06 2.08228370361e-05 7871712990.89 +UniRef50_Q2IGL4 Bifunctional protein GlmU 5.86563372479e-08 6.48345017174e-08 2494200.81094 +UniRef50_D3E2G7 6.36573839715e-06 3.16410755563e-06 -1292537659.15 +UniRef50_W1TXW2 Prophage LambdaSa04, terminase, large subunit 1.07736379702e-07 1.08341431842e-06 393893156.775 +UniRef50_D5ZU02 Modular polyketide synthase 1.18450535691e-06 4.36624021654e-06 1284505407.11 +UniRef50_UPI00047270A3 ribosome associated protein IOJAP 5.07169856552e-07 4.30986570067e-07 -30756127.628 +UniRef50_UPI00042AA310 PREDICTED 1.12532928975e-07 4.17376532099e-08 -28580921.5821 +UniRef50_D8GM15 Membrane associated dicarboxylate carrier protein 3.9875280513e-06 6.04089305011e-05 22778012537.5 +UniRef50_UPI0003B419EF serine threonine protein phosphatase 1.55083930543e-07 2.05315042169e-07 20278916.1685 +UniRef50_A0A011PK79 Glucose inhibited division protein A 1.3425977207e-07 1.92770218348e-07 23621385.1663 +UniRef50_D9CIX9 SAD1f 2.41047234099e-09 9.02138052573e-08 35447282.9664 +UniRef50_Q3IXN3 Phosphatidylethanolamine 4.06268926363e-05 1.55421583442e-05 -10127015058.0 +UniRef50_G8VAR4 Bacterial extracellular solute binding protein 1.14621251678e-06 6.81250589398e-05 27040182223.8 +UniRef50_Q5HL87 Ribokinase 0.000215121393573 4.57780099036e-05 -68366002064.2 +UniRef50_V8R0S4 Peptidase M16 4.69493692399e-06 3.51568890229e-06 -476076897.361 +UniRef50_UPI0002EDB6DA hypothetical protein 7.7083630768e-07 1.44628714395e-06 272687791.316 +UniRef50_C0P8W3 2.30967847119e-07 2.80874434628e-07 20147901.8001 +UniRef50_M4WUF5 1.48426917094e-06 1.17084282232e-06 -126534063.112 +UniRef50_UPI00037D4258 hypothetical protein 4.240520582e-05 2.36773269547e-05 -7560674514.84 +UniRef50_UPI000380CC39 hypothetical protein 2.24558682685e-07 2.24591615183e-06 816046815.141 +UniRef50_B9T8B0 4.12408609019e-07 8.60050235732e-08 -131773132.867 +UniRef50_Q8ZBY6 Acyl coenzyme A dehydrogenase 2.01516242167e-05 3.18566984978e-06 -6849363973.59 +UniRef50_UPI000476F4CB ATPase P 4.09500726938e-08 1.53035889006e-06 601292616.674 +UniRef50_UPI0002DC070B hypothetical protein 1.30842289681e-07 7.00175960592e-06 2773873636.2 +UniRef50_A6TLH7 Electron transfer flavoprotein, alpha subunit like protein 4.72161977211e-08 7.61534739281e-08 11682333.5051 +UniRef50_W5X2T3 PAS PAC sensor signal transduction histidine kinase 1.30823131346e-06 8.4483527255e-07 -187078668.224 +UniRef50_Q88GV8 1.92573175068e-06 4.66856678433e-07 -588965769.078 +UniRef50_F4AJ46 Peptidase M24 1.85953689091e-06 3.92488313224e-06 833805622.273 +UniRef50_UPI000367681C hypothetical protein 1.73858808707e-07 8.20919341188e-08 -37047413.3774 +UniRef50_A9M0F1 Lipoprotein 1.00069625113e-07 2.62745013248e-05 10566939273.6 +UniRef50_A5UN02 Predicted RNA binding protein 3.45593901787e-05 2.98802737126e-06 -12745746589.5 +UniRef50_L8ME45 2.45392808487e-07 2.43777178331e-07 -652249.719989 +UniRef50_UPI0001FFE55B large conductance mechanosensitive channel, partial 3.03324270148e-07 2.33083961723e-07 -28356874.4567 +UniRef50_B9EB85 Signal peptidase I 0.000700970244098 0.000233782198032 -1.88609547239e+11 +UniRef50_R5TSV1 Phosphoglucomutase phosphomannomutase family protein 8.04302533035e-07 5.78139942827e-05 23015512146.9 +UniRef50_E3DAW5 Transposase of insertion element IS911A 2.94643236828e-07 6.97937974018e-07 162815034.387 +UniRef50_M9S895 Glycosyl transferase 7.1670502361e-06 1.47535406424e-06 -2297807589.55 +UniRef50_S5DC92 1.59501122048e-06 5.68037415438e-05 22288441918.8 +UniRef50_Q53554 Citrate synthase 1.97364103883e-07 2.67283437677e-07 28227293.0593 +UniRef50_A0A011R9T0 Cyclolysin 2.15217698048e-07 4.71279253878e-08 -67859903.9163 +UniRef50_I1ZNE0 SpoU rRNA methylase family protein 9.49442730922e-05 4.44242804509e-05 -20395540979.3 +UniRef50_UPI000289013C enoyl CoA hydratase 1.14525905737e-07 1.88313456746e-07 29788939.8174 +UniRef50_R7D190 6 phosphogluconate dehydrogenase 1.2796135215e-06 7.31948967574e-06 2438372121.08 +UniRef50_A0A016QRP5 4.43528600823e-08 5.974070917e-06 2393899945.4 +UniRef50_P13510 Cobalt zinc cadmium resistance protein CzcB 1.06134767253e-06 4.17998563486e-06 1259032415.38 +UniRef50_A4WRH7 3.33931582955e-06 1.57447247136e-06 -712488920.765 +UniRef50_F2E7K1 Predicted protein 6.7904108613e-07 7.48491993067e-07 28038183.3889 +UniRef50_P34107 Superoxide dismutase [Fe] 1.03293699876e-07 1.16852801753e-07 5473975.81664 +UniRef50_UPI0004423401 PREDICTED 5.57195265686e-06 1.2944890027e-05 2976545292.44 +UniRef50_C9LYG0 Lipoprotein 3.35266072023e-06 6.4281895211e-06 1241628717.89 +UniRef50_Q9HXK5 2 isopropylmalate synthase 2.00916904916e-05 8.74221048132e-05 27182114498.7 +UniRef50_UPI00047437D2 hypothetical protein 5.57461330627e-08 8.00865325031e-07 300813761.438 +UniRef50_A6M2U6 Response regulator receiver protein 0.000157892387145 8.05409195995e-06 -60491558488.8 +UniRef50_UPI0001FFE930 peptide ABC transporter ATP binding protein 6.93823201299e-08 1.29976423518e-07 24462583.111 +UniRef50_M0QW80 Protein Gm26571 5.9704915627e-07 1.3691602474e-06 311710722.358 +UniRef50_F8H984 Two component sensor 7.96705380501e-06 7.65641599191e-06 -125408297.103 +UniRef50_L8NI67 8.80181536158e-06 2.48026924754e-07 -3453269358.74 +UniRef50_P45868 Probable NAD dependent malic enzyme 2 6.70093471299e-07 8.13897742778e-05 32587525683.5 +UniRef50_A5I0L6 Cyclic nucleotide binding domain protein 3.29682086335e-06 8.2334917808e-06 1992994629.14 +UniRef50_X2H6U2 Two component system histidine kinase 1.70231443998e-06 1.57595063205e-05 5675060863.3 +UniRef50_B6J695 NADH quinone oxidoreductase subunit B 4.69843950471e-07 1.49777612459e-06 414988832.839 +UniRef50_V4YKS4 DNA directed RNA polymerase 2.01189692619e-06 8.59336482555e-05 33880240847.3 +UniRef50_L9TGP7 Exonuclease V subunit beta 3.08265853862e-05 1.18325238587e-05 -7668135722.0 +UniRef50_Q6GE63 0.000151652193927 1.0687929148e-05 -56909003517.3 +UniRef50_D4HD09 7.75125233802e-07 5.8085561343e-06 2032057821.67 +UniRef50_UPI0003635A0A hypothetical protein 1.59214330895e-07 1.63979885134e-07 1923912.72621 +UniRef50_C0QFA3 PstS1 8.17862377826e-08 8.98200190359e-08 3243336.07754 +UniRef50_A6M264 Lantibiotic modifying like protein 1.17093750791e-06 1.52073231466e-05 5666661128.16 +UniRef50_UPI0001850C5F exsB protein 1.05394585716e-06 1.93409763765e-07 -347408980.869 +UniRef50_B4U3E4 Histidine protein kinase 3.25160366933e-05 1.48515355014e-05 -7131375898.98 +UniRef50_R4QKT1 Fibronectin 1.37434219241e-06 2.18021209411e-05 8246944957.88 +UniRef50_F2UJQ2 3.11738797491e-07 4.33162780722e-07 49020352.0702 +UniRef50_UPI0003B71026 MerR family transcriptional regulator 8.57997512137e-07 9.21781003275e-06 3374958901.01 +UniRef50_M4S432 LysR family transcriptional regulator 3.54053911814e-06 8.74173380978e-05 33862093032.2 +UniRef50_V4PX87 2.59364552135e-07 2.69536001639e-07 4106338.98249 +UniRef50_A6LXR1 4.31554443823e-06 5.62278508468e-06 527749090.619 +UniRef50_A6LX56 PAS PAC sensor signal transduction histidine kinase 2.42967424109e-06 6.95364885176e-06 1826384065.74 +UniRef50_G8V9G8 Luciferase family oxidoreductase, group 1 1.63886825841e-06 4.91061912461e-05 19163140779.7 +UniRef50_B9DIP6 Pseudouridine synthase 0.000110775720678 8.44545331001e-05 -10626186422.5 +UniRef50_UPI00034DB930 hypothetical protein 2.57171408444e-08 1.12304112018e-07 34956222.8044 +UniRef50_Q0FVR8 7.29873637411e-07 1.31633456649e-06 236761473.754 +UniRef50_Q7V5R2 Fumarate hydratase class II 7.30019021005e-08 1.31343062525e-07 23553042.3899 +UniRef50_B2IAX9 Tyrosine tRNA ligase 7.61203348401e-05 2.44901056399e-05 -20843757102.3 +UniRef50_D3A3L2 1.26825838155e-07 7.11301881401e-07 235960150.986 +UniRef50_H1KT40 2.90318737689e-05 1.05163999278e-05 -7474924000.07 +UniRef50_Q2JKE8 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 3.64322486192e-08 3.70735589038e-08 258904.831655 +UniRef50_A3VLI2 Replication initiator RepC 2.30453306088e-06 7.71870186729e-07 -618754810.183 +UniRef50_UPI00035F5471 hypothetical protein 1.27245397751e-07 5.60399985577e-07 174869822.51 +UniRef50_P44270 2.64592982837e-06 2.9445705021e-05 10819398115.5 +UniRef50_N6WGS6 Glycolate oxidase iron sulfur subunit 5.94651311854e-07 1.80123734392e-06 487113587.622 +UniRef50_UPI0003637414 hypothetical protein 2.90185171882e-08 9.13743986684e-08 25173834.5463 +UniRef50_B9ADC4 CRISPR associated endonuclease Cas1 2.28873926688e-05 3.19261302914e-06 -7951024222.67 +UniRef50_Q28KP2 N acetylmuramic acid 6 phosphate etherase 3.21927078461e-05 9.47854742547e-06 -9169985295.89 +UniRef50_O32507 Succinate semialdehyde dehydrogenase [NADP] 4.0595132169e-08 0.000369246351424 1.49052894479e+11 +UniRef50_Q8KBK4 50S ribosomal protein L13 6.1383806848e-06 2.66548780668e-05 8282761758.85 +UniRef50_UPI0002378E6D type II secretion system protein E 3.92166305184e-07 1.83717811655e-07 -84153214.7883 +UniRef50_P32135 Inner membrane protein YihN 1.79553623626e-05 1.13263184739e-05 -2676226365.38 +UniRef50_B7GVD0 LysR substrate binding domain protein 2.47638574341e-06 0.000118613511056 46885982651.6 +UniRef50_A6M010 GCN5 related N acetyltransferase 2.26491593311e-06 1.66791829766e-05 5819216488.41 +UniRef50_F8G3F6 TetR family transcriptional regulator 9.65146910892e-06 2.84414162307e-06 -2748201641.34 +UniRef50_UPI00047242E7 3 hydroxybutyryl CoA dehydrogenase 1.47167077255e-07 3.03264893491e-07 63018603.9501 +UniRef50_A8B6F6 3.55149838826e-07 2.53285854649e-07 -41123740.4239 +UniRef50_C5L3X3 Cysteine synthase, putative 8.07227220333e-05 1.20342180401e-05 -27730391964.8 +UniRef50_UPI0002EB3FDF hypothetical protein 6.69042830817e-08 3.16499317672e-07 100764578.339 +UniRef50_Q6F7U5 2.00790419604e-06 4.58029509603e-05 17680597804.4 +UniRef50_Q9I676 D hydantoinase dihydropyrimidinase 5.11537562015e-05 1.30846340369e-05 -15368971778.5 +UniRef50_UPI00041336EE alkylhydroperoxidase 6.76031610453e-07 5.01882416977e-07 -70306166.4572 +UniRef50_Q3BPQ5 1.6517012413e-05 1.94127552044e-07 -6589748922.71 +UniRef50_F7W5G6 WGS project CABT00000000 data, contig 2.30 9.08206131398e-07 2.532379795e-07 -264418680.284 +UniRef50_O34808 Uronate isomerase 3.77522927091e-06 1.34205138309e-05 3893919737.82 +UniRef50_UPI000362A126 hypothetical protein 2.03913702504e-07 2.79775292489e-07 30626254.8033 +UniRef50_UPI000373C086 hypothetical protein 9.60690850746e-08 1.91478854448e-06 734239363.961 +UniRef50_A6M385 Response regulator receiver protein 2.79243089872e-06 1.60011816692e-05 5332534775.65 +UniRef50_UPI0004560391 hypothetical protein PFL1_05761 9.48782743802e-08 1.03893234915e-07 3639450.1939 +UniRef50_D6SI05 9.45418269506e-07 7.19506100539e-07 -91203514.866 +UniRef50_W7VQI3 Basic proline rich protein 3.24458933387e-06 2.33759924953e-06 -366163027.068 +UniRef50_C1AFW3 Cobyrinic acid a,c diamide adenosyltransferase 4.20988091661e-06 6.15147218567e-05 23134667497.0 +UniRef50_UPI000474482D hypothetical protein, partial 4.8799441215e-07 7.01148922844e-07 86053091.6672 +UniRef50_Q97IA9 UPF0348 protein CA_C1741 5.30770698644e-06 1.36149150242e-05 3353721825.75 +UniRef50_UPI00042BA8AC PREDICTED 4.20936786899e-08 8.03451239949e-08 15442577.8676 +UniRef50_UPI0001BC2D00 helicase 1.83468362206e-07 1.72958481906e-07 -4242967.64784 +UniRef50_P21517 Maltodextrin glucosidase 1.28397278196e-05 4.68616028117e-06 -3291695270.79 +UniRef50_H3VA72 PF04394 family protein 3.4541003871e-05 1.163868767e-05 -9245946093.37 +UniRef50_UPI00044163EB hypothetical protein PUNSTDRAFT_130809 3.15292419561e-08 1.42937091592e-07 44976716.0261 +UniRef50_E3CRS2 6.67433513938e-07 1.00156663863e-06 134893642.713 +UniRef50_Q6FC54 DNA mismatch repair protein MutS 4.44101163304e-07 7.07147443315e-05 28369120964.8 +UniRef50_UPI00032905A5 PREDICTED 3.68416892952e-07 2.85016180189e-08 -137227967.72 +UniRef50_E5API3 Transposase 2.21659388509e-06 1.12396165602e-07 -849490440.768 +UniRef50_Q3IUX0 8.86254944158e-05 0.000308796085115 88885569262.2 +UniRef50_UPI00047647D3 hypothetical protein 9.10473193407e-05 5.4309287487e-06 -34564387513.2 +UniRef50_O27047 tRNA 2 agmatinylcytidine synthetase TiaS 2.82869476521e-05 6.69285643586e-06 -8717799613.28 +UniRef50_E3A3J4 Fimbrial subunit CupA4 6.57234504483e-06 6.62817636785e-06 22539790.2306 +UniRef50_UPI00047BE124 sulfite oxidase 5.79121391884e-07 1.67979497185e-07 -165983028.168 +UniRef50_P54954 Probable amino acid import ATP binding protein YxeO 8.15265684097e-07 3.82811443517e-05 15125434976.1 +UniRef50_Q9X3Y6 DNA gyrase subunit B 2.14882968851e-06 5.11277747173e-05 19773401147.4 +UniRef50_UPI000381C95D hypothetical protein 1.96172913023e-07 1.16112093236e-07 -32321535.4048 +UniRef50_N8PPS0 3.83372504894e-06 8.48735799787e-05 32716783906.0 +UniRef50_Q2S2A1 Imidazoleglycerol phosphate dehydratase 6.2062804444e-05 2.80114894422e-05 -13746933722.9 +UniRef50_F2F5B1 Predicted acetamidase formamidase 1.42387186085e-05 7.70110546665e-06 -2639314650.9 +UniRef50_P75859 2.40530100595e-05 3.93755606923e-06 -8120855620.26 +UniRef50_C6SRL3 4.95608320902e-05 1.13958131605e-05 -15407686479.4 +UniRef50_P58356 Sensor protein TorS 3.66918755646e-05 3.63692462295e-06 -13344689325.0 +UniRef50_M2HZ79 Putative transposase, IS150 like protein 1.09552298365e-05 1.27724543838e-05 733635849.598 +UniRef50_A0A017HPG3 9.04025779242e-06 3.56942450676e-06 -2208642532.09 +UniRef50_P20712 Bifunctional dihydrofolate reductase thymidylate synthase 5.12073118583e-08 2.4129427053e-07 76740437.8452 +UniRef50_Q48BK0 Glucans biosynthesis protein D 1.53915406961e-07 1.52418596176e-07 -604280.881838 +UniRef50_K7S7X3 1.48883121388e-07 2.02888098596e-07 21802472.0145 +UniRef50_C8RX73 Flagellar FlaF family protein 1.67318378477e-06 1.65757425253e-06 -6301759.71579 +UniRef50_Q5FUN5 50S ribosomal protein L32 2.09714438251e-05 9.78950403971e-06 -4514286309.2 +UniRef50_Q3JHB3 3.27857395839e-07 7.34097109433e-07 164003957.5 +UniRef50_C6S564 ATPase involved in chromosome partitioning 1.1257037441e-06 4.16988611967e-05 16379881552.2 +UniRef50_B0VRQ2 7.1000499465e-07 6.46945647554e-05 25831351954.3 +UniRef50_F9WBG1 WGS project CAEQ00000000 data, annotated contig 2102 6.10418093335e-09 1.18630956615e-08 2324944.54558 +UniRef50_M9VFS0 Beta galactosidase 1.23862344655e-06 6.33195477416e-05 25062830956.5 +UniRef50_UPI00038210EB hypothetical protein 2.37210850672e-06 4.61895850905e-07 -771176290.1 +UniRef50_Q5XAF5 PTS system mannose specific EIIAB component 5.52220298693e-05 5.54790947272e-05 103780237.675 +UniRef50_UPI0003B66035 preprotein translocase subunit TatA 9.55732753513e-07 6.86300217818e-07 -108773220.969 +UniRef50_A8LLI4 Transcriptional regulator 0.000143903698112 3.88574612093e-06 -56526965432.3 +UniRef50_UPI00036B21D8 hypothetical protein 1.18102176627e-07 8.63653118435e-08 -12812561.7682 +UniRef50_P0A9G7 Isocitrate lyase 4.06611707766e-05 0.000364770124365 1.30846761828e+11 +UniRef50_Q726S7 Phosphate acetyltransferase 3.82973365645e-08 1.31027200223e-07 37436183.8823 +UniRef50_Q57083 HTH type transcriptional regulator PerR 3.30879058509e-05 1.5641985692e-05 -7043132053.66 +UniRef50_N4K7E1 Intergenic region domain protein 5.26200647601e-06 6.396751737e-06 458110586.752 +UniRef50_UPI00029A45C7 alkyl hydroperoxide reductase thiol specific antioxidant mal allergen 6.75623760359e-08 3.3362896853e-06 1319625326.54 +UniRef50_P0AEX1 1 phosphofructokinase 1.66472052111e-05 4.96883622962e-06 -4714700867.53 +UniRef50_J9CDN0 2.25505843576e-07 1.86497259647e-06 661872846.661 +UniRef50_Q9I399 2.28569321711e-06 4.16917701458e-06 760385521.984 +UniRef50_D8JJR4 Indoleacetamide hydrolase (Indole 3 acetamidehydrolase) 9.92513555255e-07 8.32622448222e-05 33213300075.6 +UniRef50_UPI00039D5255 cation 5.28631549336e-07 9.35584788275e-07 164292016.437 +UniRef50_UPI000369419C hypothetical protein 3.05585062349e-09 4.39177225311e-08 16496439.1207 +UniRef50_UPI00040205B3 hypothetical protein 1.77045770218e-07 2.59565185919e-07 33314100.7456 +UniRef50_UPI0002DD9DEF hypothetical protein 1.98681123168e-08 3.97944536964e-06 1598529928.26 +UniRef50_Q3A6U9 Flotillin band_7_stomatin like domain protein 3.79446938613e-06 3.88060305515e-05 14134596882.6 +UniRef50_H2J1V2 ABC type dipeptide oligopeptide nickel transport system, permease component 0.000104684002547 1.54426802674e-05 -36027816918.4 +UniRef50_B0R6S2 Glycerol kinase 9.40084142776e-08 8.94217569414e-07 323054255.599 +UniRef50_UPI000345EF10 hypothetical protein 2.09841306288e-07 4.23716354448e-07 86343981.4842 +UniRef50_UPI00035FBF65 hypothetical protein 9.62833370623e-08 3.11324140237e-06 1217982993.2 +UniRef50_R9SJL7 Precorrin 6y C5,15 methyltransferase CbiE 2.76703466835e-05 2.20302988858e-05 -2276956507.1 +UniRef50_UPI0004714D3A NADH dehydrogenase 2.40732262149e-06 1.91502405819e-06 -198746971.187 +UniRef50_W9A1H3 1.41607432314e-06 1.61604499835e-06 80730615.4984 +UniRef50_Q0RAT5 Spermidine putrescine import ATP binding protein PotA 5.54537504897e-07 6.35948160311e-07 32866480.6117 +UniRef50_W7HYY6 2.89944484927e-08 3.5577540296e-07 131925481.372 +UniRef50_UPI000470BDCC ABC transporter permease 9.59655943502e-07 2.47907956537e-07 -287341396.468 +UniRef50_M9VFR5 D alanine D alanine ligase 4.34178863226e-06 4.04067806697e-05 14559879852.7 +UniRef50_I0EM51 Zinc protease 8.75160715986e-07 3.55021791245e-05 13979352252.8 +UniRef50_A6LYZ9 Peptidase C45, acyl coenzyme A 1.03610060989e-06 1.03244253139e-05 3749810663.57 +UniRef50_B0I1W2 7.38657644376e-05 8.77093063844e-05 5588807763.29 +UniRef50_Q8CS09 DNA topoisomerase 0.000100096381826 3.15384583435e-05 -27677675010.2 +UniRef50_A9CR98 5.501777326e-05 9.39029469613e-06 -18420373008.4 +UniRef50_D4U0U9 Cell wall binding repeat protein 2.16064499154e-07 8.67345646852e-06 3414352921.9 +UniRef50_A9CR91 7.75656141478e-06 1.58205377784e-05 3255526214.11 +UniRef50_A0A023S1K2 ABC transporter substrate binding protein 4.87586068939e-06 8.13239015291e-05 30863012209.9 +UniRef50_UPI0003B30E52 organic solvent ABC transporter ATP binding protein 9.79427308235e-07 2.7827318037e-07 -283064525.548 +UniRef50_Q9I024 7.95767266761e-08 2.67427461059e-06 1047511376.26 +UniRef50_Q52282 Putative protein KleG 8.69561404066e-07 1.11536420528e-05 4151809557.74 +UniRef50_UPI0004784EFD hypothetical protein, partial 1.40560501389e-07 2.03070045285e-08 -48547812.3591 +UniRef50_UPI000478461E zinc binding protein 1.27069862803e-07 4.33439134787e-07 123685034.674 +UniRef50_D8JNP8 Xylanase chitin deacetylase 3.945667096e-06 8.37177758103e-05 32204979201.8 +UniRef50_UPI000248C70B chemotaxis protein CheY 5.89487244187e-08 2.24819804161e-07 66964190.3589 +UniRef50_P76056 Putative lambdoid prophage Rac integrase 3.15295215498e-05 4.56038663251e-05 5681985697.42 +UniRef50_A6QIJ7 Endodeoxyribonuclease RusA 9.74354191081e-05 1.01310797225e-05 -35245833154.7 +UniRef50_D3JD05 Spermidine N acetyltransferase 0.000114905674303 9.63653962298e-05 -7484937772.95 +UniRef50_UPI00047076F4 hypothetical protein, partial 5.73127305683e-08 7.8917831603e-08 8722244.41211 +UniRef50_Q7XUN3 OSJNBa0064M23.10 protein 8.87556271456e-07 1.04342488347e-07 -316193015.355 +UniRef50_A0A059DVD1 1.409944013e-06 3.12750485673e-07 -442950491.062 +UniRef50_UPI000288E019 sulfate ABC transporter membrane protein 7.79318589304e-07 1.1003091503e-05 4127462585.06 +UniRef50_UPI0003B6935E hypothetical protein, partial 9.32422163195e-08 1.93674835256e-07 40545880.7117 +UniRef50_Q0C1E4 NADH quinone oxidoreductase subunit D 3.79463021475e-07 7.18210537235e-07 136756529.012 +UniRef50_UPI000373A2A8 hypothetical protein 6.69850194074e-08 1.41749897706e-07 30183498.8374 +UniRef50_S2TS61 Hydantoin utilization protein A 7.10570824329e-08 1.5850383438e-07 35303326.8534 +UniRef50_W4PJR5 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.13624823735e-06 1.9947411488e-06 -57128148.1349 +UniRef50_Q5SJB6 Membrane lipoprotein 1.04374006137e-06 0.000404368926637 1.62827327177e+11 +UniRef50_UPI0004702CE7 hypothetical protein, partial 1.06970698258e-07 1.29899702666e-06 481235656.583 +UniRef50_O07084 Cadmium, cobalt and zinc H K(+) antiporter 0.000140655539784 4.68497082314e-05 -37870565324.8 +UniRef50_UPI0003F0E976 PREDICTED 4.71417691862e-08 7.29928382084e-09 -16084900.2643 +UniRef50_UPI00037CFCEC hypothetical protein 2.56147191602e-07 2.98218650096e-07 16984764.0689 +UniRef50_UPI00047A74FB hypothetical protein 1.26699819705e-07 2.39003794814e-07 45338492.8763 +UniRef50_F4CWU8 Cell envelope related transcriptional attenuator 7.91737377942e-07 7.25037726058e-07 -26927467.9623 +UniRef50_UPI0003724082 hypothetical protein 3.12326353603e-08 1.11746234723e-07 32504328.0757 +UniRef50_A4X015 2.31209691715e-05 5.18600874398e-06 -7240563611.3 +UniRef50_A5IQC1 LmbE family protein 0.000188806080329 6.18837815922e-05 -51240089511.9 +UniRef50_A5ZX27 1.50624019712e-06 2.28650594716e-06 315002858.229 +UniRef50_Q989X5 Msl6246 protein 2.11870472886e-06 3.11680074788e-06 402943610.894 +UniRef50_P27241 Lipopolysaccharide core biosynthesis protein RfaZ 9.76340616286e-06 1.78001823852e-05 3244545183.29 +UniRef50_UPI000468A625 ABC transporter ATP binding protein 2.96059481515e-07 1.26753101335e-07 -68351063.3016 +UniRef50_L7WYU2 Aldo keto reductase 0.000153542038489 6.37945666426e-05 -36232155709.7 +UniRef50_UPI0002ED3852 hypothetical protein 4.51884115782e-08 1.50426395766e-07 42485865.632 +UniRef50_B3HH44 Tail protein 1.67314421091e-07 1.9682711682e-07 11914637.4273 +UniRef50_F5M3A2 Transposase IS116 IS110 IS902 2.19003295135e-05 2.33164559305e-05 571707612.368 +UniRef50_Q2NHQ3 Probable cobyrinic acid A,C diamide synthase 2.89056898019e-05 1.11411570605e-05 -7171759863.03 +UniRef50_UPI000237D266 carboxymuconolactone decarboxylase 4.28729914398e-07 1.10021053441e-06 271084966.293 +UniRef50_D7CX06 Lysine biosynthesis enzyme LysX 1.34977111625e-06 0.000169099333639 67722556909.2 +UniRef50_U1QU88 Rhamnan synthesis protein F 1.18882098503e-07 3.32921994334e-05 13392475290.5 +UniRef50_W0R6T6 Glutamine tRNA ligase 1.18488940003e-06 9.26726062326e-07 -104223707.452 +UniRef50_D6SHR9 C4 dicarboxylate transporter malic acid transport protein 7.46210946698e-05 6.68772824989e-06 -27425533659.9 +UniRef50_UPI00036FEF96 hypothetical protein 2.65945332647e-08 5.4307625168e-07 208510007.668 +UniRef50_Q3JJE8 Oxidoreductase, short chain dehydrogenase reductase family 9.31631409754e-06 9.0824130777e-05 32905705806.9 +UniRef50_UPI0004663F41 calcium binding protein, partial 4.65340251205e-07 6.45410108432e-07 72696411.0682 +UniRef50_M2C9Y4 4.6359595579e-05 7.02739344115e-06 -15878892663.4 +UniRef50_Q2CH95 ISSpo7, transposase 8.65420751798e-07 3.98931533181e-07 -188327422.022 +UniRef50_A8LQ48 3.28438982311e-07 9.46479144264e-07 249510397.586 +UniRef50_D4HAW2 ATPase histidine kinase DNA gyrase B HSP90 domain protein 3.12156767467e-06 6.69283984319e-05 25759600574.5 +UniRef50_E8SJ70 Organic hydroperoxide resistance protein 8.45402222539e-05 1.94442281051e-05 -26280051655.5 +UniRef50_Q8CRU1 0.000208980376172 5.35415623644e-05 -62752556583.0 +UniRef50_R9YKU7 Na+ dependent nucleoside transporter family protein 0.000130965931634 1.30294767671e-05 -47612394072.9 +UniRef50_UPI0004681F99 hypothetical protein 2.18201349041e-07 4.52877878434e-07 94741794.7208 +UniRef50_Q83JF8 7.70725451415e-06 6.17459040989e-06 -618755306.793 +UniRef50_E8RC09 1.21507807391e-07 3.30418598477e-07 84339849.9851 +UniRef50_Q8CRU7 9.05912877877e-05 2.50111982835e-05 -26475486891.0 +UniRef50_Q8CRU6 0.000202551760532 7.00439190925e-05 -53495041643.0 +UniRef50_UPI000468FB82 ATPase 8.09673416179e-07 4.98072205115e-08 -306767307.798 +UniRef50_Q6AAE4 Thiazole synthase 2.94910928794e-06 5.89684684204e-05 22615702716.6 +UniRef50_F8DI84 ABC transporter, ATP binding protein 7.8696013055e-05 5.12919794881e-05 -11063344636.3 +UniRef50_J9P994 1.51128403931e-06 3.45113394584e-06 783141211.901 +UniRef50_B0N8M0 5.72681403756e-07 2.67043850895e-07 -123389630.685 +UniRef50_P37353 2 succinylbenzoate CoA ligase 2.20631883784e-05 9.4224191637e-06 -5103233651.66 +UniRef50_D3H4R6 3.18106170376e-06 4.81494628027e-06 659619253.556 +UniRef50_A3K475 7.80425843399e-07 6.56087725053e-08 -288580423.312 +UniRef50_P76037 Putrescine importer PuuP 3.00800385047e-05 7.10053935861e-06 -9277105795.45 +UniRef50_Q2W0K2 ATPase involved in chromosome partitioning 0.000132786698995 1.69783033703e-05 -46753270442.6 +UniRef50_A0A017HBN8 Polyhydroxyalkanoate depolymerase, intracellular 1.84538549911e-06 3.13817029099e-07 -618312985.802 +UniRef50_A6LXH8 MORN repeat containing protein 1.64601448628e-06 2.21318432562e-05 8270380463.8 +UniRef50_UPI00004C2754 COG1063 1.18682454114e-06 2.51270480125e-06 535274131.387 +UniRef50_P22825 PTS system sucrose specific EIIBC component 0.000179015994423 4.37863971091e-05 -54593847889.4 +UniRef50_M9VJF8 Phosphate transport system permease protein PstA 2.14480675479e-06 4.54799722793e-05 17494938104.5 +UniRef50_V6ZI12 Pyridoxal phosphate dependent enzyme family protein 7.90139290404e-08 8.64466728953e-08 3000689.90425 +UniRef50_O58855 Orotate phosphoribosyltransferase 3.28111795697e-05 3.48113994329e-06 -11840896917.2 +UniRef50_A5N2B2 Phage related protein 4.95367129679e-06 1.43118211249e-05 3777999923.02 +UniRef50_B5YH68 3 phosphoshikimate 1 carboxyvinyltransferase 3.98276657448e-08 7.01631016675e-08 12246787.7397 +UniRef50_A6LZC1 AraC type transcriptional regulator domain protein 3.5687200642e-06 2.21010326777e-05 7481722019.12 +UniRef50_D6SEI0 Mannose 6 phosphate isomerase, class I 0.000220032198485 8.70628829274e-05 -53681344407.8 +UniRef50_P15428 15 hydroxyprostaglandin dehydrogenase [NAD] 5.21341958627e-08 2.70365116228e-06 1070449937.12 +UniRef50_Q4DJ07 Prostaglandin F synthase 3.94190405067e-05 1.55506705056e-05 -9635953867.28 +UniRef50_Q53151 Flagellar M ring protein 7.25442927608e-06 3.50083318107e-06 -1515372805.36 +UniRef50_J3M9R4 1.75032143208e-06 1.98746334431e-07 -626389906.889 +UniRef50_M8HET6 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 7.94453930614e-06 2.18137384537e-05 5599165890.1 +UniRef50_D5RKR4 1.53893664641e-06 4.84679163936e-06 1335421652.6 +UniRef50_A1KRZ2 Phosphate acyltransferase 4.53526844223e-06 3.64821947194e-05 12897366171.0 +UniRef50_A0A014H8V3 Thi4 family protein 2.99328774418e-07 5.40495024715e-06 2061202041.56 +UniRef50_O83092 Ribonucleoside diphosphate reductase subunit beta 1.09734299089e-06 6.97558362287e-05 27718276254.6 +UniRef50_B4RLX4 DNA mismatch repair protein MutL 1.33621742511e-06 2.83707314926e-05 10914165079.8 +UniRef50_X8C7Q8 Cell envelope related transcriptional attenuator domain protein 2.11802092254e-07 3.41231306189e-07 52252161.9406 +UniRef50_F2E943 Predicted protein 1.01244853536e-06 5.69742839604e-06 1891383860.92 +UniRef50_Q3J0Q8 Multisensor hybrid histidine kinase 4.81944327022e-05 1.10707413718e-05 -14987289749.0 +UniRef50_Q57565 Signal recognition particle 54 kDa protein 2.98199030185e-05 4.37834133528e-06 -10271070654.6 +UniRef50_UPI000474AE61 TetR family transcriptional regulator 1.82501648975e-07 8.07373830509e-07 252268567.729 +UniRef50_M7DFK4 2 hydroxyglutaryl CoA dehydratase activator related protein 5.89427502809e-05 3.50227862284e-05 -9656783018.96 +UniRef50_A0A038G1M9 2.94123975044e-06 2.01150523929e-05 6933278910.16 +UniRef50_UPI00037E7CFC hypothetical protein 1.1237851448e-07 5.65156145869e-08 -22552538.2017 +UniRef50_UPI000424F639 hypothetical protein 1.28284449339e-07 2.02716643682e-07 30049190.242 +UniRef50_UPI0003B51DAD aconitate hydratase 2.23554105722e-07 7.41590195195e-07 209137526.338 +UniRef50_UPI00047DF06C RNA polymerase subunit sigma 24 9.49034262603e-07 6.90599778205e-07 -104333172.699 +UniRef50_J1B9G8 1.64774944455e-05 2.9344579425e-07 -6533699041.1 +UniRef50_S4RE69 1.3570348689e-06 3.72843634866e-07 -397330078.564 +UniRef50_V9U3F4 Penicillin binding protein 4.19767396092e-06 1.04802450963e-05 2536351063.17 +UniRef50_P26946 0.000100390637737 3.9875222856e-05 -24430815595.1 +UniRef50_UPI0001B42DB2 3 methyl 2 oxobutanoate hydroxymethyltransferase, partial 1.62202918645e-06 4.98364829831e-07 -453637089.68 +UniRef50_G7ZME4 Acetyltransferase family protein 2.71225571149e-05 1.05470251856e-05 -6691745644.51 +UniRef50_I6SXG2 6.80652124152e-06 9.92661193941e-06 1259618902.56 +UniRef50_J9P1W0 8.59253110526e-07 1.81733357036e-06 386788838.604 +UniRef50_UPI000478FE81 ATP dependent DNA helicase PcrA 1.23646480308e-07 1.18578432176e-07 -2046033.22283 +UniRef50_D4HCQ0 5.69895014224e-06 1.93210233564e-05 5499398118.21 +UniRef50_R1DZ31 5.32492756502e-07 3.0180203605e-07 -93132674.74 +UniRef50_W4ZID1 9.96005247615e-07 5.83932096293e-05 23171955751.8 +UniRef50_Q3IUV9 TraU 0.00023698888244 7.27457943765e-05 -66306950140.4 +UniRef50_A0A017SU62 2.12497233934e-06 1.9642443403e-06 -64887865.5668 +UniRef50_R5RCL0 Chromosomal replication initiator 4.9091866844e-07 8.91886753909e-08 -162183327.975 +UniRef50_UPI0003738950 hypothetical protein 1.4720435024e-06 1.74121796513e-06 108669033.746 +UniRef50_UPI0003B5CBF4 thioredoxin 2.95694953917e-06 1.81200916148e-06 -462226480.472 +UniRef50_A7IGI6 Appr 1 p processing domain protein 1.21413645436e-07 1.79107407591e-06 674062404.818 +UniRef50_A0A059LGP9 6.09503749491e-07 5.346945478e-06 1912563360.75 +UniRef50_P35886 DNA gyrase subunit B 4.52024604441e-06 9.32271560414e-05 35812068122.0 +UniRef50_Q6C7L4 Thioredoxin reductase 5.86665245226e-07 2.81184696662e-07 -123326246.123 +UniRef50_K0B2S0 2.45120771981e-06 5.11086831627e-05 19643619930.7 +UniRef50_UPI000360C821 MULTISPECIES 1.68230764177e-07 4.81168088911e-07 126336638.168 +UniRef50_UPI00036ED5A7 hypothetical protein 3.41519815276e-07 7.73957714307e-08 -106630117.667 +UniRef50_W0IKU6 5.52633853587e-07 6.6461075653e-07 45206449.8292 +UniRef50_I4MVU8 Membrane protein 2.14690793282e-06 5.948567076e-07 -626582125.432 +UniRef50_V4R951 1.26073244041e-06 2.73128680499e-06 593680842.712 +UniRef50_Q8FJC7 DNA translocase FtsK 2.97780164762e-07 9.53302382989e-07 264642363.66 +UniRef50_UPI00040EF117 hypothetical protein 1.51860625829e-06 2.49074582914e-07 -512525516.256 +UniRef50_M4X643 SAM dependent methyltransferase 3.91946617829e-06 2.98059150193e-06 -379035228.134 +UniRef50_H6VX66 1.57625183536e-06 0.000109747634241 43670114489.4 +UniRef50_B8IA33 Fumarylacetoacetate hydrolase 0.000160042483505 1.30551539799e-05 -59340588666.6 +UniRef50_A1T726 2.28465553048e-07 4.17149733653e-07 76174119.1255 +UniRef50_T1YCU2 Siderophore synthase 4.12571744192e-05 9.95686157226e-06 -12636320394.3 +UniRef50_Q85FX6 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 4.55765306074e-07 2.6282608798e-07 -77891929.975 +UniRef50_I1ZJT5 Competence protein ComYD 1.12681524106e-07 4.25625392314e-07 126339279.849 +UniRef50_P45857 Acyl CoA dehydrogenase 1.20863770361e-05 6.12752978245e-05 19858170938.2 +UniRef50_Q3JIW0 2.14590229815e-07 1.10696815719e-06 360263919.99 +UniRef50_F8M7U6 PE PGRS family protein 5.8006759245e-08 6.03249372757e-07 220121133.954 +UniRef50_F4D588 Type I restriction modification system, M subunit 1.39486422152e-06 2.97363532628e-05 11441806915.2 +UniRef50_UPI0002484AC1 patatin family phospholipase 1.07279676391e-07 3.65023817433e-07 104054472.615 +UniRef50_Q57609 GTP cyclohydrolase III 1.91365931277e-05 1.86878444584e-05 -181165344.562 +UniRef50_S5XQ93 8.56010614182e-07 3.01400843818e-07 -223902770.123 +UniRef50_Q8DBE9 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 3.88600185752e-05 3.0267787823e-05 -3468788993.19 +UniRef50_J1LSW8 2.52349393555e-06 0.000111318420207 43921846799.5 +UniRef50_U4UXP2 8.67849896899e-08 2.58459573864e-08 -24601835.1469 +UniRef50_A4VYZ2 ABC type sugar transport system, periplasmic component 1.1005422415e-06 5.88996451395e-06 1933548544.21 +UniRef50_Q73WG1 Serine hydroxymethyltransferase 0.000388325848407 0.000808033939056 1.69441306592e+11 +UniRef50_Q4A0F8 ABC type transport system involved in lipoprotein release permease component 0.000229243076733 4.31996528257e-05 -75108013240.8 +UniRef50_D9RM99 Phage N acetylglucosaminidase 0.000149220238362 1.00972494741e-05 -56165657845.1 +UniRef50_A1A081 50S ribosomal protein L5 0.000167610836704 3.01571026798e-05 -55491759172.5 +UniRef50_P44839 RutC family protein HI_0719 1.46867967203e-05 2.17259795995e-06 -5052135606.06 +UniRef50_V7EMQ8 1.48617681167e-07 6.96244050155e-08 -31890554.9389 +UniRef50_UPI0002653244 PREDICTED 2.04309426951e-06 1.5149470491e-06 -213219513.975 +UniRef50_UPI000362C6BE hypothetical protein 7.01205917876e-08 1.35489938019e-06 518680962.886 +UniRef50_Q6D734 Fe ions import ATP binding protein FbpC 1 3.97103455162e-05 1.44373426971e-05 -10203021372.7 +UniRef50_P08064 Succinate dehydrogenase cytochrome b558 subunit 0.000195262250668 4.78029374548e-05 -59531134273.3 +UniRef50_Q59638 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 6.128088198e-06 1.24714807971e-06 -1970495421.62 +UniRef50_UPI0003C1126B PREDICTED 1.37646937881e-07 6.01738145983e-08 -31276850.5714 +UniRef50_Q3ACC4 LexA repressor 9.14673504851e-07 1.92803224066e-07 -291427890.697 +UniRef50_Q48QB2 Fatty acid desaturase 3.98314730706e-06 3.94708023921e-06 -14560717.8837 +UniRef50_UPI0003B5C4DC 30S ribosomal protein S3 3.40321676898e-06 5.95262499083e-06 1029227383.92 +UniRef50_O31632 Cystathionine beta lyase MetC 6.96312354554e-07 5.09088227462e-06 1774141804.17 +UniRef50_Q2G2P8 ADP dependent NAD(P)H hydrate dehydratase 0.000213170531994 6.3032729479e-05 -60612473273.3 +UniRef50_K7SJI3 Transporter, major facilitator family protein 8.4574904144e-07 7.21192155396e-05 28773973049.1 +UniRef50_UPI00035DD1FA diaminopimelate decarboxylase, partial 5.61477189877e-07 2.4698542888e-05 9744429617.43 +UniRef50_Q58094 Putative transketolase N terminal section 2.06005975062e-06 4.81678458582e-06 1112923644.79 +UniRef50_A1WVC8 DNA directed RNA polymerase subunit beta 6.58293198928e-08 1.33242092168e-07 27215363.4152 +UniRef50_UPI000347C25A hypothetical protein 2.93161369941e-08 1.1913038087e-08 -7025844.58884 +UniRef50_Q9ZLS9 Transcription termination factor Rho 0.000131763709854 0.000153368314818 8722044142.28 +UniRef50_T1Y682 Transporter 0.000248764651984 6.55874741448e-05 -73950874530.4 +UniRef50_H1Z450 AMP dependent synthetase and ligase 2.29690689784e-05 8.42616402564e-06 -5871149190.96 +UniRef50_Q58575 Chorismate synthase 4.79627776568e-08 2.53921610327e-07 83148108.148 +UniRef50_B9KRV4 Outer membrane protein 0.000107642216899 7.38291762994e-06 -40475909434.8 +UniRef50_I4D2I9 Calcium proton exchanger Cax 1.1257037441e-06 9.55485161652e-06 3402950433.37 +UniRef50_F3WH46 Pertactin family protein 1.79063917586e-05 2.28337658653e-06 -6307202940.93 +UniRef50_F8G2I2 ppGpp synthetase I, SpoT RelA 9.35885431234e-06 1.06640765046e-05 526934215.893 +UniRef50_Q45223 3 hydroxybutyryl CoA dehydrogenase 1.74933492712e-06 3.57056113726e-05 13708565491.4 +UniRef50_Q9RYC5 1.16030529356e-06 0.000574548466078 2.31483836772e+11 +UniRef50_F9Y8G5 4 hydroxybenzoate polyprenyl transferase 6.1269702069e-05 1.73893788458e-05 -17715024957.3 +UniRef50_Q8DW77 5.26456765524e-05 1.75934535362e-05 -14151012570.8 +UniRef50_Q8DW75 2.46584663068e-05 9.65087271884e-06 -6058749695.36 +UniRef50_Q6FF92 50S ribosomal protein L10 4.53623678777e-05 0.00012840420261 33525007719.3 +UniRef50_Q8DW79 4.62227741456e-06 1.01251441781e-05 2221574840.21 +UniRef50_P18416 Transposase for transposon Tn552 0.00103830460453 0.000242464343416 -3.2129047947e+11 +UniRef50_R7B660 Dihydrodipicolinate reductase domain protein 5.20935606531e-05 2.41088508415e-05 -11297770761.9 +UniRef50_UPI00046F0297 hypothetical protein 2.62615157897e-07 1.22483568634e-07 -56572842.1934 +UniRef50_UPI000475E0B3 hypothetical protein 2.32746264998e-07 5.84427383992e-07 141977983.351 +UniRef50_UPI000382CD04 hypothetical protein, partial 1.03012012927e-06 1.63515756245e-07 -349858819.822 +UniRef50_Q7VFL0 Lysine tRNA ligase 1.6873147673e-06 4.04087269238e-05 15632309252.7 +UniRef50_Q9ZKB2 Glucose 6 phosphate 1 dehydrogenase 3.16108344428e-07 3.38097321378e-05 13521786938.4 +UniRef50_P21264 Phosphoribosylaminoimidazole carboxylase 2.02610606337e-07 2.54830741858e-07 21081909.523 +UniRef50_P96060 2 aminoethylphosphonate pyruvate transaminase 1.7863811812e-07 6.32711060134e-06 2482213791.72 +UniRef50_L7ZNE5 ABC transporter ATP binding protein 2.14374214012e-06 9.96377327045e-06 3157042529.89 +UniRef50_A8Z2F6 9.20697533784e-06 1.35524898288e-05 1754337525.46 +UniRef50_T9L0J3 1.79108882815e-05 1.99589497337e-06 -6425078097.41 +UniRef50_I4EST6 5.00203806966e-06 5.82184256462e-07 -1784349222.09 +UniRef50_R5P601 Anthranilate synthase component II 1.33740539413e-07 4.2797390804e-07 118785621.564 +UniRef50_B1ZAH8 Binding protein dependent transport systems inner membrane component 2.90181611547e-06 6.18268683156e-05 23788766664.9 +UniRef50_A3PS89 Alpha beta hydrolase fold 0.000325916959504 4.00769519733e-05 -1.15397118692e+11 +UniRef50_A0A011M2C2 Lipopolysaccharide export system ATP binding protein LptB 1.22354986738e-07 5.78794618054e-07 184270280.306 +UniRef50_D3V7P3 Multidrug resistance protein MdtB 8.47193707175e-06 1.8700475792e-06 -2665263802.44 +UniRef50_B7M9X6 Adenosine deaminase 2.93612082579e-05 7.60526813175e-05 18849920643.0 +UniRef50_UPI000370A178 hypothetical protein 1.11099132776e-07 2.63773023535e-07 61636323.2187 +UniRef50_J9YXD5 Amino acid amide ABC transporter membrane protein, 2, HAAT family 5.5638105715e-05 1.35565897634e-05 -16988824387.9 +UniRef50_E9UN53 1.63716853074e-06 4.09078992645e-08 -644430005.249 +UniRef50_O83658 Spermidine putrescine import ATP binding protein PotA 1.03368087302e-07 9.12794824028e-08 -4880318.14167 +UniRef50_E1W4Y0 1.51741188907e-07 5.54940802781e-06 2179104339.68 +UniRef50_E1W4Y6 2.10203892207e-06 2.66183633431e-06 225997084.808 +UniRef50_Q8E4F9 Probable tRNA sulfurtransferase 7.42815332759e-05 7.26385694108e-05 -663284673.775 +UniRef50_B7GPE3 Ribosomal RNA small subunit methyltransferase A 3.70070964026e-06 4.52618126687e-05 16778727304.7 +UniRef50_UPI000359998F PREDICTED 2.54441259526e-08 5.0551769622e-09 -8231268.90796 +UniRef50_R1DHJ6 3.69869795461e-06 2.26485232255e-06 -578861076.927 +UniRef50_Q97FC1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 2 5.46908666088e-06 1.42168546925e-05 3531581301.55 +UniRef50_H1C309 Cellulose synthase operon protein C 5.66772463717e-06 6.37374183882e-06 285027808.111 +UniRef50_U6KCN1 4.6561534076e-08 4.27020120015e-07 153595799.895 +UniRef50_UPI000371DD5B hypothetical protein 2.47538444773e-07 8.34763287353e-07 237069875.009 +UniRef50_E8XUV9 Lysozyme 4.06508886758e-06 8.70284985912e-07 -1289781531.68 +UniRef50_U5SV18 5.33913109406e-07 1.21300913257e-06 274159397.997 +UniRef50_R7CJA9 Binding protein dependent transport system inner membrane component 5.14506176723e-06 9.02026531548e-06 1564467226.52 +UniRef50_UPI00037382D8 ABC transporter permease 3.97907249998e-07 1.90860152584e-06 609885817.46 +UniRef50_M9R962 1.65550127556e-06 3.60480907106e-07 -522815614.43 +UniRef50_Q9RS94 1.52212092278e-06 0.000209032626466 83774537528.0 +UniRef50_B0BPX9 DNA polymerase IV 2.52879355514e-05 2.32519409964e-06 -9270340508.62 +UniRef50_Q9RS99 1.37751984987e-06 0.000415124518216 1.67034740487e+11 +UniRef50_UPI0004753E7E polyamine ABC transporter substrate binding protein 2.62758037287e-07 1.768057318e-07 -34700000.4785 +UniRef50_Q5FL50 Phosphoglycerate kinase 3.68887929331e-08 3.6694862858e-07 133249205.94 +UniRef50_B7H3D4 FhuE receptor 6.69697200815e-07 3.62576379561e-05 14367288396.1 +UniRef50_G0VME5 Citrate transporter 7.84722294375e-06 2.62078420304e-05 7412407235.39 +UniRef50_A5UMK8 Arginine tRNA ligase 3.15356095886e-05 1.15189207294e-05 -8080982924.85 +UniRef50_Q3JUL5 Benzoate transport protein 2.31770764675e-06 9.54764302493e-06 2918813633.46 +UniRef50_Q9JZR3 23S rRNA methyltransferase RlmB 1.53034860351e-06 2.94028169751e-05 11252457515.3 +UniRef50_UPI0003810BBD hypothetical protein 1.16379072422e-06 3.26480020593e-07 -338032606.012 +UniRef50_P63342 Inner membrane transport protein YqeG 2.95335552993e-05 1.38752174296e-05 -6321463147.41 +UniRef50_V6LYC7 2.19895167655e-06 4.03932776796e-06 742982412.056 +UniRef50_Q55905 Phosphoenolpyruvate synthase 9.60800511635e-07 0.000500040139396 2.014844535e+11 +UniRef50_M4X1W1 5.41292857132e-07 5.06257208906e-05 20219698202.2 +UniRef50_F2A9W7 4.31543014717e-06 1.24333182531e-06 -1240243791.42 +UniRef50_F2A9W6 4.85496315761e-06 2.65229639724e-06 -889243600.922 +UniRef50_K7A9D1 Inner membrane transport permease 2.48346045292e-06 3.49636270585e-05 13112641835.1 +UniRef50_UPI00035C805A hypothetical protein 5.97272120369e-08 7.34791364041e-08 5551820.62213 +UniRef50_UPI000369165B hypothetical protein 5.08913105609e-08 6.90038095399e-08 7312238.10318 +UniRef50_P76002 Inhibitor of g type lysozyme 1.25555758451e-05 4.56675317307e-06 -3225185746.58 +UniRef50_R5T4K7 Basic membrane protein A immunodominant antigen P39 5.18420611702e-06 2.34080195559e-05 7357177116.62 +UniRef50_K2GDX3 2.55532586744e-06 7.5076281894e-07 -728524247.158 +UniRef50_Q487E8 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.43705646096e-07 1.18606543196e-06 420813436.745 +UniRef50_P46139 Probable diguanylate cyclase YfiN 2.82136737505e-05 8.83149217962e-08 -11354552496.1 +UniRef50_UPI00046CFF5C sodium 1.12647131358e-07 8.52755529669e-06 3397201688.88 +UniRef50_UPI00046EF3B8 hypothetical protein, partial 6.96024129732e-07 1.69024971301e-06 401381068.489 +UniRef50_A3PQB2 Transcriptional regulator, LacI family 3.79763213736e-05 5.42727143109e-06 -13140450883.5 +UniRef50_UPI0004632850 LysR family transcriptional regulator 4.40900824294e-07 1.86738286168e-07 -102608535.567 +UniRef50_Q6DB92 Low affinity potassium transport system protein kup 6.68116794457e-07 3.14883151536e-05 12442492283.9 +UniRef50_UPI000287F836 transposon Tn917 resolvase 1.08478437167e-07 7.32555037242e-07 251947381.731 +UniRef50_C1DCE3 Probable chemoreceptor glutamine deamidase CheD 1.24801105618e-06 1.62496523971e-07 -438235537.414 +UniRef50_U5MLL1 3 methylornithine synthase PylB 2.09326796037e-06 2.09783918011e-05 7624156241.02 +UniRef50_UPI0003B7B4C4 ABC transporter 1.04254286395e-07 1.73081239331e-07 27786285.502 +UniRef50_Q1AU97 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.61268729234e-07 2.73529827372e-07 45321182.9169 +UniRef50_K8B033 3.05646799428e-07 6.87953323833e-07 154341835.331 +UniRef50_C5N619 Hydrolase, HD family 0.000297202808879 2.87591532902e-05 -1.08373997935e+11 +UniRef50_UPI00036B8F43 hypothetical protein 1.20879174583e-06 2.32444794617e-05 8896077539.21 +UniRef50_P24893 Cytochrome c oxidase subunit 1 1.71276514181e-07 3.06467247363e-07 54578157.9624 +UniRef50_A1UR85 Holliday junction ATP dependent DNA helicase RuvA 2.34458687644e-07 1.11701225268e-07 -49558693.9647 +UniRef50_R4QAT2 Membrane protein required for colicin V production 1.66783205682e-06 1.30056671512e-05 4577223158.49 +UniRef50_P96676 1.39541660183e-05 3.07621567909e-06 -4391562039.4 +UniRef50_A4WVS1 3.46808505299e-06 1.72410817933e-06 -704064864.899 +UniRef50_A6U922 8.29481660539e-07 3.63042056884e-07 -188307391.853 +UniRef50_X1YLX5 1.18094687116e-07 3.27676245146e-07 84610646.8316 +UniRef50_Q5HKG8 Conserved domain protein 4.85406931504e-05 4.15939021406e-06 -17917276615.2 +UniRef50_Q8CP81 Maltose maltodextrin transport permease 7.45959039993e-05 5.78483868586e-05 -6761178184.85 +UniRef50_M4ZKD5 ADP heptose lps heptosyltransferase II 2.21139773364e-06 2.99946755119e-05 11216450178.3 +UniRef50_B4RNI0 1.49203948168e-06 5.8996704105e-05 23215338770.0 +UniRef50_F4MUN4 DnaK suppressor protein 1.47134128787e-06 1.95380462006e-06 194776367.696 +UniRef50_E4RMK3 Molybdenum cofactor synthesis domain protein 4.86569551453e-06 1.79745599668e-05 5292209443.25 +UniRef50_P52235 Thiol 2.94465705472e-05 2.21978428959e-05 -2926400304.72 +UniRef50_A7Z1S6 Cadmium, cobalt and zinc H K(+) antiporter 8.29467770501e-05 8.36793205583e-06 -30108394909.5 +UniRef50_G2J491 Formate dehydrogenase, alpha subunit 6.28879025298e-05 3.0187419961e-05 -13201586093.1 +UniRef50_O54408 GTP pyrophosphokinase 2.67326664106e-07 1.30467029473e-05 5159191026.11 +UniRef50_D2NTC3 Threonine dehydrogenase 4.02659675209e-06 0.000113946600073 44376054210.8 +UniRef50_G3XN37 1.01731439954e-05 2.58903289983e-05 6345220457.22 +UniRef50_T2EB50 AAA domain family protein 6.25066984903e-06 1.29430257935e-06 -2000946288.24 +UniRef50_B0T9Q7 Cobyrinic acid ac diamide synthase 7.23954200121e-08 9.66289236382e-07 360875902.979 +UniRef50_F9Y9C1 1.0417855499e-06 2.57524749425e-08 -410185020.489 +UniRef50_A3SVY2 4.20892033417e-06 1.4234586935e-06 -1124525045.8 +UniRef50_Q6FEG4 Acyl CoA dehydrogenase 4.4092189141e-06 1.31965177566e-05 3547540375.0 +UniRef50_F5X205 GNAT family acetyltransferase 2.87310901502e-05 3.33063953224e-06 -10254473613.1 +UniRef50_Q8TQ68 Aspartate tRNA ligase 2.87598294181e-05 1.9677597241e-05 -3666608581.42 +UniRef50_W4K1D0 4.2231207862e-07 8.58672097447e-07 176163894.34 +UniRef50_B5EXE3 UPF0758 protein YicR 2.54445436623e-05 8.77821463386e-06 -6728401547.62 +UniRef50_D0S9A9 Excinuclease ABC, A subunit family protein 6.20494840218e-09 3.40172926792e-07 134826971.124 +UniRef50_A2BXS2 1.67762912531e-06 6.03940638348e-07 -433461217.825 +UniRef50_G8PGZ1 Rubrerythrin 1.14742725143e-05 3.99411518114e-06 -3019831307.25 +UniRef50_H3WY71 1.54899397491e-06 1.01151284814e-06 -216987726.512 +UniRef50_Q8X6C4 Xanthine dehydrogenase iron sulfur binding subunit 5.7262632188e-05 9.55719785765e-08 -23079043725.3 +UniRef50_UPI0001AF2B31 LysR family transcriptional regulator 4.55807503724e-06 2.80865905817e-06 -706260698.499 +UniRef50_F8DHP6 ABC transporter, permease protein 6.01260649746e-05 5.54254826549e-05 -1897682765.09 +UniRef50_C9LYN2 Diaminopimelate decarboxylase 7.98364433565e-05 1.47871398556e-05 -26261202068.0 +UniRef50_Q3JLX9 6.13355565863e-08 7.83798525705e-08 6880991.44585 +UniRef50_F6AGQ7 HemY domain protein 3.14791769769e-06 3.82754946241e-06 274375683.437 +UniRef50_Q61503 5 nucleotidase 2.7313881346e-07 2.68261863265e-07 -1968884.64063 +UniRef50_G7SHI8 Phosphatase 7.3741049642e-05 2.61223632849e-05 -19224248029.4 +UniRef50_C4RLJ2 4.33797350561e-07 6.13989249169e-07 72745680.6713 +UniRef50_W0H5K7 Serine threonine protein kinase 7.5092718418e-06 1.79160791827e-06 -2308291089.56 +UniRef50_A0A055F483 PE PGRS family protein PE_PGRS6 5.24269515353e-08 4.69783558164e-07 168491983.638 +UniRef50_H1LB61 6.89648139183e-07 1.01050670348e-07 -237624021.072 +UniRef50_W4UK26 2.35222506455e-06 4.49592019857e-05 17200959429.5 +UniRef50_UPI000470BCA6 RNA polymerase sigma 70 factor, partial 2.4508163787e-06 7.43715148851e-07 -689177714.978 +UniRef50_A7K529 Trap transporter solute receptor, taxi family 0.000152917753311 1.03865457336e-05 -57541597553.4 +UniRef50_Q9SIB9 Aconitate hydratase 2, mitochondrial 1.49202737921e-06 0.000442865745655 1.78187986333e+11 +UniRef50_UPI000375E9C9 hypothetical protein 5.10851337995e-08 1.05968755035e-07 22157191.3905 +UniRef50_O29757 Exosome complex component Rrp41 3.92500596221e-05 1.57441357557e-05 -9489629914.99 +UniRef50_Q9JRT1 Phosphoadenosine phosphosulfate reductase 9.09720862102e-08 5.08060624088e-05 20474304307.4 +UniRef50_UPI000467A91C alkaline phosphatase, partial 2.40574183757e-07 1.39525093504e-06 466157173.969 +UniRef50_Q3IWD8 3.83402105623e-05 3.66853049924e-06 -13997382710.8 +UniRef50_UPI000255A89F type IV pilus biogenesis stability protein PilW 4.7897552721e-08 1.81736912425e-07 54032591.9061 +UniRef50_UPI0003B2F6BE aspartyl glutamyl tRNA amidotransferase subunit B 1.71966044055e-07 4.56949446645e-07 115051296.765 +UniRef50_UPI000376A46D hypothetical protein 6.40214219808e-08 3.80909968804e-07 127931795.012 +UniRef50_P44914 dTDP glucose 4,6 dehydratase 7.79676901949e-08 1.66338729443e-07 35676472.9791 +UniRef50_UPI000472A285 multidrug ABC transporter ATP binding protein, partial 4.05435192647e-08 1.36816707216e-07 38866667.3808 +UniRef50_Q8XQG4 L aspartate oxidase 2 4.19091525915e-08 8.74353739104e-08 18379494.216 +UniRef50_UPI000379010F hypothetical protein 2.1441090736e-07 2.80008316861e-07 26482479.1863 +UniRef50_G7U9P9 Transcriptional regulator 3.6296729697e-06 4.05385045661e-05 14900548237.8 +UniRef50_R4ZW20 YfaA 4.4119407745e-05 9.71962899638e-06 -13887612813.6 +UniRef50_F0J5L6 L sorbosone dehydrogenase 2.75497146315e-06 1.49653735742e-06 -508045291.206 +UniRef50_P0A9A0 Ferritin 1 1.93749913548e-05 7.94522227467e-06 -4614338036.68 +UniRef50_UPI000399D476 hemolysin expression modulating protein 1.32598977617e-07 7.96395584613e-08 -21380367.3983 +UniRef50_A5UP13 Permease, xanthine uracil vitamin C permease family 2.40171134475e-05 9.57182627863e-06 -5831739693.69 +UniRef50_UPI000383E553 PREDICTED 1.27221266204e-07 8.72306524738e-07 300800062.094 +UniRef50_H9K4X2 5.15271053613e-07 4.54424579714e-07 -24564468.1832 +UniRef50_Q5HN24 UPF0316 protein SERP1448 0.000108582554337 9.78121816698e-06 -39887311840.6 +UniRef50_A0A029IUD7 Major Facilitator Superfamily protein 2.24504877258e-05 1.31251868976e-05 -3764738378.65 +UniRef50_Q1J3T7 5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit 7.04658589914e-06 0.000406231344061 1.61155785418e+11 +UniRef50_P07129 Beta xylosidase 2.6141908774e-05 3.7643316804e-05 4643259559.86 +UniRef50_D4HBL6 6.69794694541e-06 6.9232613565e-05 25246012301.0 +UniRef50_F7V2B8 Serine pyruvate aminotransferase 1.80327701681e-06 5.2725835155e-06 1400601606.7 +UniRef50_A0A024HIN5 Transcriptional regulator 6.47506031278e-06 7.2190967899e-05 26530318317.4 +UniRef50_K0M4V6 9.53326852359e-05 5.66102310275e-06 -36201550398.2 +UniRef50_A7X232 Anthranilate phosphoribosyltransferase 7.61748851797e-05 3.71347250307e-06 -29253561499.1 +UniRef50_B9JGE0 1.72308081581e-07 7.29267359996e-07 224851295.355 +UniRef50_W5YGZ9 1.37818167212e-06 3.31353646709e-07 -422617319.882 +UniRef50_Q3JSJ3 5.1064696557e-08 1.02540522637e-06 393353228.388 +UniRef50_F0KG04 7.92453281958e-06 3.94549588024e-05 12729219891.1 +UniRef50_UPI00029A2946 endo 1,4 D glucanase 7.5788551158e-08 2.73733660396e-07 79912869.659 +UniRef50_UPI0003714199 hypothetical protein 2.97164246694e-07 3.91409332385e-06 1460198653.16 +UniRef50_A5UK18 5.54873160905e-05 4.75040276462e-06 -20483114521.6 +UniRef50_UPI0002485E7A gluconate transporter 4.03587723368e-08 1.50138213788e-06 589833061.441 +UniRef50_G8SGJ4 6.16819921255e-08 1.43594943857e-06 554808632.286 +UniRef50_UPI0003C0FE99 PREDICTED 1.0035359504e-06 6.19967052099e-07 -154851471.164 +UniRef50_Q3J099 Transcriptional regulator, HxlR family 3.21777376035e-05 1.86405141247e-05 -5465143238.8 +UniRef50_Q9RVW0 DNA directed RNA polymerase subunit beta 1.59427368944e-06 0.000434378002333 1.74720102107e+11 +UniRef50_D0CTG3 1.69566472415e-07 6.07952414494e-08 -43912280.7141 +UniRef50_U6EYS7 Chemotaxis protein CheW 2.52780796101e-06 3.99977478817e-06 594251071.189 +UniRef50_F0N6L8 4.13305827211e-06 1.41126752413e-05 4028893834.13 +UniRef50_Q9RRC4 Arginine tRNA ligase 1.04914971274e-06 0.000334171756495 1.34485684232e+11 +UniRef50_N0B321 2.25281628562e-07 1.1530579234e-07 -44398594.6381 +UniRef50_U6A8Y3 Non ribosomal peptide synthetase modules related protein 6.59857201406e-07 1.04571512175e-06 155775577.452 +UniRef50_UPI00028904E4 two component response regulator 1.29835264004e-07 1.26506539823e-07 -1343846.79991 +UniRef50_F8JIF2 Recombination protein 6.13275378259e-06 2.07969510703e-06 -1636269523.95 +UniRef50_UPI0002482319 hypothetical protein 7.74158406986e-07 8.42704791274e-07 27673016.4958 +UniRef50_U6EZC2 Transcriptional regulatory component of sensorytransduction system 7.37916887843e-06 2.27179404699e-05 6192450319.38 +UniRef50_A9MHF6 2.5991799967e-05 9.64300264889e-06 -6600210099.62 +UniRef50_Q895P9 16S rRNA MC 967 methyltransferase 9.91644454127e-07 2.73020066435e-06 701876476.55 +UniRef50_UPI00047BB63F ABC transporter ATP binding protein 1.8354529618e-06 1.06550970726e-06 -310835540.124 +UniRef50_H0DJE3 HTH domain protein 2.12496381283e-07 2.92288399119e-07 32213016.7586 +UniRef50_Q5HRV3 PAP2 family protein 0.000135542815494 2.38987762634e-05 -45072068664.0 +UniRef50_A6VPG7 Hydroxyethylthiazole kinase 7.18508108971e-08 8.65156529641e-06 3463736022.74 +UniRef50_UPI0003A5B886 chaperonin 9.09640796191e-08 9.35234104767e-08 1033233.27373 +UniRef50_U5NV97 3.02969116022e-05 1.12162173241e-06 -11778422541.5 +UniRef50_E3EXD3 Flagellar protein, putative 2.41902573871e-06 9.85308938737e-07 -578809065.831 +UniRef50_R5K4V5 Indole 3 glycerol phosphate synthase 3.27655201467e-05 2.34688772347e-06 -12280375187.8 +UniRef50_UPI00034C05DA hypothetical protein 2.55809434088e-08 2.21093917207e-08 -1401508.01722 +UniRef50_Q9I6Q3 4 hydroxybenzoate transporter PcaK 6.45601310283e-06 6.99666111386e-05 25640007789.7 +UniRef50_V8HPC0 Transposase 6.81747919664e-07 2.38226382092e-07 -179055087.339 +UniRef50_R5VPY7 Phosphorylase 2.42213525199e-06 1.71388127012e-05 5941303280.18 +UniRef50_Q57PU8 Phenylalanine tRNA ligase beta subunit 4.07795171589e-05 6.40808398073e-06 -13876169359.0 +UniRef50_A6M2B6 PTS system, lactose cellobiose family IIC subunit 2.29627019321e-06 1.50964229402e-05 5167578739.5 +UniRef50_F5X5Y4 Oxidoreductase dehydrogenase 2.89657565217e-05 2.9074440528e-05 43877067.046 +UniRef50_UPI000363AE14 hypothetical protein 1.34266488905e-07 3.37036676317e-07 81860812.9282 +UniRef50_A6TSP5 DEAD DEAH box helicase domain protein 3.17438306632e-05 4.5691072329e-06 -10970769320.2 +UniRef50_UPI00041C3470 major facilitator transporter 3.84117167443e-08 1.39013172337e-06 545705954.146 +UniRef50_UPI00046337D4 histidine ammonia lyase, partial 4.30376647347e-08 2.65539469503e-07 89826708.989 +UniRef50_V6F9W2 2.43016731023e-06 1.09990021337e-05 3459343769.66 +UniRef50_A8LMR7 6.33456340649e-07 2.87558541267e-07 -139643186.254 +UniRef50_I6S1H3 5.66972802055e-08 1.19862096242e-05 4816090524.85 +UniRef50_UPI0003292D89 PREDICTED 5.29761665494e-07 6.49921351006e-07 48509939.5663 +UniRef50_N8PWN0 DNA ligase 2.27360656141e-06 3.92176688639e-05 14914771306.1 +UniRef50_Q72R38 Lysine tRNA ligase 8.84648468082e-08 9.72346927208e-08 3540494.41303 +UniRef50_W5Y8Y3 Polyprenyl synthetase 1.13283138747e-05 9.70455382071e-06 -655531859.572 +UniRef50_R7IF91 Lipoprotein 7.85533926989e-08 5.51382765986e-07 190887020.265 +UniRef50_Q5HRB4 5.19476131447e-06 7.98153257284e-06 1125053754.53 +UniRef50_UPI00037CCB39 hypothetical protein 8.42188390204e-07 1.1021743814e-07 -295505655.642 +UniRef50_P35163 Transcriptional regulatory protein ResD 0.000151705998784 5.54784862343e-05 -38848227660.7 +UniRef50_A5IRW7 6.14297103839e-05 1.52607960721e-05 -18638957264.0 +UniRef50_P57355 UPF0056 membrane protein BU267 2.142525006e-05 3.36863161818e-06 -7289678444.58 +UniRef50_G7M6S5 Peptidase M16 domain protein 7.46490515554e-06 8.64431519168e-06 476142304.578 +UniRef50_A4WPQ5 Periplasmic protein thiol disulphide oxidoreductase DsbE 2.30846799262e-05 8.16543885337e-06 -6023080700.77 +UniRef50_X5E5J7 Lipoprotein 0.000252470232476 3.01273581933e-05 -89762546801.9 +UniRef50_P40892 Putative acetyltransferase YJL218W 5.17104094322e-06 2.88583099537e-06 -922567298.627 +UniRef50_E3A496 1.98756851854e-06 6.06424305037e-06 1645803534.92 +UniRef50_I6E2A6 Inner membrane protein yghQ 1.78740284979e-05 3.93755606923e-06 -5626324939.21 +UniRef50_Q8U3B8 Arsenical resistance protein acr3 0.000169055493578 1.34877350399e-05 -62804613152.9 +UniRef50_I6TZW1 ATP binding protein 6.85592074412e-05 1.89858921362e-05 -20013355721.6 +UniRef50_X6L6R2 MFS transporter 1.44688777476e-07 2.76764163509e-07 53320454.0888 +UniRef50_K6PSM8 ATPase component of an ABC superfamily transporter 0.00022146934598 0.000109078405415 -45373601898.0 +UniRef50_A6M2B1 Beta lactamase domain protein 1.42963258193e-06 2.23607035037e-05 8450130184.25 +UniRef50_UPI0003FB35D8 chemotaxis protein CheY 1.12722596319e-07 1.4905301397e-07 14667035.4301 +UniRef50_F7ZEB4 TatD family deoxyribonuclease 1.04734834323e-05 6.60803075986e-06 -1560530678.3 +UniRef50_UPI0003B3F7AD phosphoribosylaminoimidazole carboxylase 5.88989665937e-08 7.38341770147e-08 6029527.7226 +UniRef50_A5UKF2 1.4215734479e-05 3.02888928405e-06 -4516266683.21 +UniRef50_S5CXQ6 1.19613739235e-06 6.21412458414e-05 24604288161.5 +UniRef50_L7WXI7 CorA like Mg2+ transporter protein 0.000181109598927 5.55523275515e-05 -50689011215.5 +UniRef50_G0DRH6 6.07672236434e-07 8.73991007228e-05 35038764730.6 +UniRef50_A5WG42 NADH quinone oxidoreductase subunit H 2.70402425458e-05 8.84178449282e-05 24778891269.7 +UniRef50_G9Z7C4 Amine oxidase 4.08617393598e-05 7.68521484726e-06 -13393770067.4 +UniRef50_UPI0003B6CB25 GTPase Era 8.97370131697e-08 1.09569257421e-06 406116604.455 +UniRef50_B9KRR2 ATP dependent DNA ligase 2.59902429154e-05 4.26730544845e-06 -8769816425.85 +UniRef50_S3X9I7 1.29251208434e-07 8.25629609088e-07 281136505.868 +UniRef50_P06744 Glucose 6 phosphate isomerase 2.33553106705e-05 3.56994827639e-05 4983493754.13 +UniRef50_D8JHR5 2.41462252992e-06 4.54613680704e-05 17378499417.7 +UniRef50_B9KPJ0 Ribose phosphate pyrophosphokinase 0.000120963824909 0.000139462796982 7468262033.78 +UniRef50_P08555 DsdX permease 2.63963721621e-05 2.09838004817e-05 -2185121607.1 +UniRef50_P0ABU8 Biopolymer transport protein ExbB 3.32545517822e-05 1.08791572777e-05 -9033221338.43 +UniRef50_S5XVE4 Type VI secretion system ATPase 9.1007064607e-06 7.02856101231e-07 -3390315243.33 +UniRef50_E0RCX2 2.04353808852e-07 3.59588519144e-07 62670157.489 +UniRef50_T0USP0 VanZF related protein 3.63962522306e-05 6.68641596675e-06 -11994225480.4 +UniRef50_D2N5R5 Kinase associated protein B 7.77254753491e-05 1.22597899592e-05 -26429300546.2 +UniRef50_Q0C5T7 Peptide ABC transporter, ATP binding protein 6.03051808392e-05 1.75573516821e-05 -17257823205.6 +UniRef50_Q4L7E3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000161186311388 2.49863880463e-05 -54985580414.2 +UniRef50_D2ABX7 1.71584540388e-05 1.59914152712e-06 -6281485395.21 +UniRef50_UPI00037710EA hypothetical protein 2.35365370977e-07 1.12322138445e-07 -49674062.8834 +UniRef50_B2V422 7.73008850942e-07 2.61002638502e-05 10224923643.6 +UniRef50_Q03MZ6 Bifunctional purine biosynthesis protein PurH 6.41718181199e-06 5.18262115673e-05 18332182543.7 +UniRef50_P42915 Outer membrane usher protein YraJ 2.17130659328e-05 1.21422452384e-05 -3863857761.51 +UniRef50_Q49775 Methionine synthase 1.06033349663e-08 7.09635890482e-07 282208020.756 +UniRef50_UPI0003B44CF0 streptomycin 3 kinase 2.68776543359e-07 4.31263542171e-07 65597995.3601 +UniRef50_UPI0004639093 hypothetical protein 4.57172883606e-08 7.8368142082e-08 13181550.3184 +UniRef50_F0RPF2 7.43242554228e-06 0.000731273562321 2.92223549447e+11 +UniRef50_F0RPF3 2.99592054644e-06 0.000549428872926 2.20601688362e+11 +UniRef50_UPI0002002483 hypothetical protein 7.99985027071e-07 2.38248331151e-07 -226779997.427 +UniRef50_S5FCX8 Carboxylate amine ligase 5.02558112002e-05 2.59492638056e-05 -9812851458.08 +UniRef50_A5D1A4 Dihydroorotase 5.30457669969e-08 2.61393843482e-07 84112675.1954 +UniRef50_W8TQE0 Pili assembly chaperone 3.21978963707e-05 8.35801995839e-06 -9624450655.83 +UniRef50_UPI000364022E hypothetical protein 6.86235417419e-06 5.82756857009e-07 -2535150496.27 +UniRef50_R5UAJ8 3.23590301479e-06 9.78075620281e-06 2642237546.38 +UniRef50_UPI000262CCDC Mutator MutT protein 1.6192284341e-07 6.63987735146e-08 -38564239.2289 +UniRef50_UPI00036EE512 hypothetical protein 6.18832522155e-08 1.48418233902e-07 34935234.0105 +UniRef50_UPI0003B63CEB molybdopterin biosynthesis protein MoeA 4.70409997922e-08 6.52810499892e-08 7363732.09512 +UniRef50_Q98E39 Msr4423 protein 2.28260779246e-06 1.71625714296e-06 -228642707.107 +UniRef50_UPI0003615A32 hypothetical protein 7.16885277453e-08 9.94518622662e-08 11208398.8405 +UniRef50_C9CVV7 1.83469183877e-05 3.05974496968e-07 -7283350435.95 +UniRef50_UPI00035A01D7 PREDICTED 5.97540589915e-08 2.5749973728e-08 -13727866.4979 +UniRef50_UPI00047B26FB glyoxalase 1.78391682808e-07 6.48510055506e-08 -45837764.7094 +UniRef50_B9KU28 Transcriptional regulator 2.54934295449e-05 1.03109280248e-05 -6129362173.91 +UniRef50_UPI00036F2709 LysR family transcriptional regulator 2.38286186519e-07 1.26865360074e-07 -44981954.9231 +UniRef50_S2L5Z7 Alkaline phosphatase 2.47608820128e-07 5.33231287834e-08 -78435517.7495 +UniRef50_A3MFR5 NADH quinone oxidoreductase subunit B 2 1.68268890753e-07 3.94110923383e-07 91175199.9661 +UniRef50_Q28RF2 Anhydro N acetylmuramic acid kinase 1 2.19977504789e-06 6.01735922779e-07 -645148004.952 +UniRef50_UPI00044199D7 PREDICTED 8.96143697272e-07 3.38607804837e-07 -225084081.511 +UniRef50_P61676 UDP N acetylmuramate L alanine ligase 3.91961596194e-08 7.01197188165e-08 12484220.3226 +UniRef50_B9KT87 Periplasmic sensor signal transduction histidine kinase 7.25706855587e-05 2.56896710157e-05 -18926440865.8 +UniRef50_A5WG85 1.39982443328e-06 4.83058577809e-05 18936541264.2 +UniRef50_H9JZZ5 4.09301926887e-07 6.89294317242e-08 -137412553.138 +UniRef50_U5SUC1 Protein co occurring with transport systems 0.000205793186279 6.09787688609e-05 -58463357384.4 +UniRef50_UPI000368DF15 hypothetical protein 3.21418074842e-07 3.44409141213e-07 9281775.62608 +UniRef50_D4GE62 Fcy21 6.17548560134e-06 1.72196329551e-06 -1797941605.73 +UniRef50_P28905 DNA polymerase III subunit chi 1.02659177871e-05 9.06606316307e-06 -484396035.593 +UniRef50_UPI0002493F0F sugar transporter 5.92872628753e-08 2.42033782658e-07 73777012.5884 +UniRef50_X1IEE0 Marine sediment metagenome DNA, contig 8.16988967355e-08 5.63977337749e-06 2243862873.12 +UniRef50_I1ZKN3 1.32932482751e-07 7.39323493242e-08 -23819077.8775 +UniRef50_UPI000287D4FC ribose phosphate diphosphokinase 7.23853254403e-07 1.12823302299e-06 163253074.876 +UniRef50_Q9RTM5 1.8874299443e-06 0.000404617512149 1.6258707624e+11 +UniRef50_P0A9A4 Ferritin like protein 2 7.54424998393e-06 7.67668081954e-06 53463953.4449 +UniRef50_Q08Z31 6.23625198308e-07 2.25364770328e-06 658060087.882 +UniRef50_B9E9S0 3.70260526954e-05 1.01068384146e-05 -10867617141.1 +UniRef50_Q9RZI4 8.72272203127e-07 0.000171631502825 68937596853.5 +UniRef50_UPI00030FEE7F AsnC family transcriptional regulator 1.06045450984e-06 1.61533359405e-07 -362905499.434 +UniRef50_UPI0003B3D4FC purine nucleoside phosphorylase 1.39977150548e-07 5.70636982172e-07 173862658.817 +UniRef50_C5X3F1 1.11708386012e-06 9.36938504283e-07 -72726890.7835 +UniRef50_A4YXJ9 Cobyric acid synthase 3.19064178391e-06 6.46553154361e-07 -1027079799.23 +UniRef50_A6LUJ6 1.17558934525e-06 1.01587414635e-05 3626608745.81 +UniRef50_I1HS37 2.80311377865e-06 1.87638168363e-06 -374133119.041 +UniRef50_Q5LI72 Lipoprotein releasing system ATP binding protein LolD 2.63766443623e-06 7.33216708209e-05 28536000767.8 +UniRef50_UPI0004715EC0 hypothetical protein 4.63349699827e-07 3.40102172866e-07 -49756539.0514 +UniRef50_P77467 1,2 epoxyphenylacetyl CoA isomerase 3.86228291096e-05 9.56518227577e-06 -11730928604.2 +UniRef50_Q9L6X9 DNA replication terminus site binding protein 1.67109980127e-05 1.06795401294e-05 -2434973561.8 +UniRef50_UPI0002C2EB05 4.35911761018e-08 6.6063254106e-08 9072253.6537 +UniRef50_F2MXH3 Hydrolase 2.09326796037e-06 9.36724490257e-06 2936593753.3 +UniRef50_C7M9T6 Cation diffusion facilitator family transporter 3.87180070617e-06 7.58046665167e-05 29040180643.2 +UniRef50_Q6GJ30 Putative glycosyltransferase TagX 0.000133445251833 1.71439082339e-05 -46952279588.9 +UniRef50_J1H1W6 Putative transposase 2.84709620404e-07 1.76922074009e-05 7027620468.01 +UniRef50_W6KCI0 Putative chaC like cation transporter 4.14539079995e-08 3.57896173158e-08 -2286743.65767 +UniRef50_Q4L9R4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000118303588053 1.09366960582e-05 -43345331838.3 +UniRef50_UPI00037EBF23 hypothetical protein 1.15796857651e-07 1.07844693274e-07 -3210386.34303 +UniRef50_Q9V2R2 Quinolinate synthase A 5.04431959733e-05 1.93227942332e-06 -19584452307.1 +UniRef50_Q9RU50 Acyl CoA dehydrogenase 1.79471373386e-06 0.000379073307501 1.52311998033e+11 +UniRef50_UPI0002D896B4 hypothetical protein 5.96124217941e-08 1.51184646095e-06 586284702.525 +UniRef50_UPI0003731541 hypothetical protein 3.23776645162e-08 5.42962673159e-06 2178935680.07 +UniRef50_UPI00047C50BA hypothetical protein 4.57091440853e-07 1.72937752693e-06 513637505.656 +UniRef50_A3PHA2 5.28896316931e-05 5.48575922964e-06 -19137525024.4 +UniRef50_A3PHA5 1.19658113546e-05 3.54841190446e-06 -3398207451.13 +UniRef50_K1TC59 Branched chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein 4.07214265313e-07 1.13297149972e-06 292997101.573 +UniRef50_A3PHA6 4.97949806314e-05 5.58452792495e-07 -19877390488.7 +UniRef50_A3PHA9 5.77566646291e-05 7.40200596614e-06 -20328793623.4 +UniRef50_A3PHA8 8.12423433082e-05 5.99107607165e-05 -8611821660.22 +UniRef50_H0YUU4 2.36512539798e-07 5.48232768401e-07 125845281.524 +UniRef50_A1AZJ2 UPF0173 metal dependent hydrolase Pden_0574 0.000121511147485 1.4224080271e-05 -43313105594.7 +UniRef50_Q9RXG0 Ribonuclease R 5.52418520216e-07 0.000481502799253 1.94165570627e+11 +UniRef50_Q8P0D6 1.34481635014e-06 5.38353182688e-07 -325579077.116 +UniRef50_P44023 0.000145922422725 8.03075455965e-05 -26489531081.9 +UniRef50_R7CLA1 2.13268920259e-06 1.51776782542e-05 5266422160.15 +UniRef50_A4WSE9 IS66 Orf2 family protein 9.36151616917e-07 4.17979058444e-07 -209192620.548 +UniRef50_J2PZW7 6.64270819961e-06 2.31459153056e-05 6662547225.82 +UniRef50_A0A017HSQ6 Transport protein 2.59697993965e-07 7.30076489908e-08 -75369183.2142 +UniRef50_P0AEC3 Aerobic respiration control sensor protein ArcB 3.75703801352e-05 4.08005870559e-06 -13520453733.6 +UniRef50_UPI0003698849 DNA glycosylase 8.22525092424e-07 4.70710103576e-07 -142032028.253 +UniRef50_UPI00035C8219 hypothetical protein 4.90660247307e-07 4.86524241201e-07 -1669756.41949 +UniRef50_P0ABD0 High affinity choline transport protein 3.1724971962e-05 4.43552315145e-05 5098990772.06 +UniRef50_E0TF91 Prephenate dehydrogenase 2.96500306601e-05 2.27166696312e-06 -11052981394.8 +UniRef50_J1E0S9 4.80727184423e-05 2.30815250453e-06 -18475716863.5 +UniRef50_UPI00037D56C5 hypothetical protein, partial 2.98378584541e-08 5.35593608257e-08 9576661.60298 +UniRef50_P13794 Outer membrane porin F 1.00611509587e-05 1.3240281445e-05 1283453989.64 +UniRef50_Q5HQN6 2.24826876127e-05 9.8995752842e-06 -5079956859.17 +UniRef50_UPI00047A7DC3 sodium 3.5253327397e-07 3.92722179035e-07 16224754.1481 +UniRef50_UPI0003480247 membrane protein 6.85792997348e-08 7.78987254177e-07 286800408.894 +UniRef50_X4QYD5 Ribonucleotide reductase 1.39779348191e-07 5.43807193306e-07 163110999.052 +UniRef50_T2EHJ1 Hpt domain protein 6.26118777209e-06 9.56749584945e-07 -2141466788.92 +UniRef50_A1B2U2 ABC polyamine opine transporter, periplasmic substrate binding protein 0.000200368239311 6.27577632576e-05 -55555037853.0 +UniRef50_Q89AP8 Acetolactate synthase small subunit 8.62318649553e-07 2.98353382378e-06 856360596.074 +UniRef50_V4JFT6 4.49520935758e-06 3.24999072492e-06 -502710042.556 +UniRef50_K2R125 Insertion sequence transposase 8.18980895121e-07 5.44436216117e-07 -110837055.956 +UniRef50_B9K5L2 5.99094993713e-06 1.11352392269e-05 2076812713.81 +UniRef50_Q9RVK2 MutT nudix family protein 3.85189784541e-06 0.000270357674711 1.07591652514e+11 +UniRef50_P49058 Inosine 5 monophosphate dehydrogenase 3.71012071226e-07 1.25736386471e-06 357831095.789 +UniRef50_T2EMC8 5.79345115376e-06 1.13920109527e-05 2260207292.89 +UniRef50_N9ANA5 1.34496195558e-06 7.22662622128e-05 28631799216.1 +UniRef50_S9RPX9 Integral membrane protein 1.22371556864e-07 8.31062832128e-08 -15851872.8121 +UniRef50_V3H5M7 1.75775724271e-07 2.90463776173e-07 46300973.9335 +UniRef50_E8SI82 6.39120747705e-05 1.48456803506e-05 -19808705539.7 +UniRef50_A8L741 Putative glyoxalase family protein 2.04615741509e-07 4.8396485535e-07 112776665.257 +UniRef50_UPI0002E43044 hypothetical protein 1.33103668495e-07 1.66952516746e-07 13665195.411 +UniRef50_UPI000366CBF5 hypothetical protein 9.45196917233e-07 2.92934850871e-07 -263326200.346 +UniRef50_UPI000368F6D6 hypothetical protein 6.65688152847e-08 1.37525744079e-07 28646182.8937 +UniRef50_UPI0003777C13 hypothetical protein 8.18571119849e-08 1.49005647356e-07 27108687.7345 +UniRef50_UPI00047CBCB4 C4 dicarboxylate ABC transporter substrate binding protein 1.81236696587e-06 5.38413564618e-07 -514310621.251 +UniRef50_UPI0003446A8D PREDICTED 8.8862908388e-08 5.11361579109e-08 -15230752.1269 +UniRef50_UPI0003A59A55 chorismate synthase 1.6986118373e-07 1.13943713425e-06 391429709.26 +UniRef50_UPI0003B6EE3B diguanylate cyclase, partial 1.45257274841e-06 1.15571782826e-06 -119843974.084 +UniRef50_U3ASA7 1.84666518703e-08 3.32757774516e-08 5978625.72558 +UniRef50_Q0TRI9 MTA SAH nucleosidase 2.14887659684e-06 1.26097901204e-05 4223199159.32 +UniRef50_C7NKD3 2.7372526667e-07 0.000101278999495 40777068679.9 +UniRef50_Q5HLN7 Membrane associated protein TcaA 0.000210737201956 6.22385896204e-05 -59950712082.9 +UniRef50_Q7NLT7 Leucyl phenylalanyl tRNA protein transferase 1.91321353472e-07 9.47108371906e-07 305120493.891 +UniRef50_Q2II05 LigA 1.20024294193e-06 1.25184506651e-06 20832410.9222 +UniRef50_Q15UL9 Deoxycytidine triphosphate deaminase 4.71563737819e-05 2.0244395898e-05 -10864695718.8 +UniRef50_G2L306 Two component sensor EnvZ 5.06403057564e-06 1.3536289008e-06 -1497934687.88 +UniRef50_A1JKQ0 tRNA methyltransferase TrmJ 2.68542258647e-05 1.43373181154e-05 -5053229258.12 +UniRef50_G2KD33 7.26400235152e-07 3.63100634327e-05 14365561493.5 +UniRef50_P39334 HTH type transcriptional repressor BdcR 9.71755101824e-06 3.6535801658e-05 10826856880.2 +UniRef50_UPI0001744E68 hypothetical protein 7.63607740057e-06 8.7906150325e-05 32406013464.1 +UniRef50_UPI000469DAE1 hypothetical protein 6.51446342605e-06 8.25540506605e-07 -2296687993.52 +UniRef50_UPI000474FED4 response regulator receiver protein 1.09206605601e-06 2.49825532604e-05 9644882853.66 +UniRef50_Q0RCK1 N acetylglucosamine 6 phosphate deacetylase 2.98801574284e-06 1.45297309222e-05 4659532050.7 +UniRef50_P75908 Probable diguanylate cyclase YcdT 2.6302912369e-05 5.68847564351e-06 -8322301073.67 +UniRef50_Q46I59 Phosphoribosylformylglycinamidine synthase 2 1.02701295032e-07 2.8966734919e-08 -29767546.7424 +UniRef50_D6Y938 Binding protein dependent transport systems inner membrane component 1.28688405295e-06 5.69369801193e-05 22466626685.5 +UniRef50_Q9RVJ3 Branched chain amino acid ABC transporter, ATP binding protein 1.71584540393e-06 0.000426391594977 1.7144681146e+11 +UniRef50_Q8CR74 0.000105912759731 1.68928151801e-05 -35938444012.8 +UniRef50_X1SN69 Marine sediment metagenome DNA, contig 4.84133274969e-07 8.2493986287e-05 33108384035.0 +UniRef50_Q3J097 Acetyltransferase 0.000138220763884 3.06056003084e-05 -43445562122.2 +UniRef50_UPI00045E8316 ribose ABC transporter permease 7.24140710852e-07 2.99689809244e-07 -171356037.577 +UniRef50_X5DRJ8 Phosphate ABC transporter, permease protein PstA 7.20423078315e-05 1.59667186083e-05 -22638403494.3 +UniRef50_B1B3J5 3.89429937343e-05 4.66289534518e-05 3102916255.29 +UniRef50_H6PD11 Ion transport protein 3.89017138533e-05 1.7940217818e-05 -8462413175.93 +UniRef50_Q8DUD5 1.7953761144e-05 1.26564302227e-05 -2138597498.49 +UniRef50_B9KWI5 1.86189251815e-05 2.365687892e-06 -6561631343.42 +UniRef50_UPI0003765EEA hypothetical protein 1.90713493748e-07 6.18247837019e-08 -52033953.8879 +UniRef50_UPI00037DF3B3 MULTISPECIES 1.1026280147e-07 3.75998452924e-06 1473437448.62 +UniRef50_C2Z2I2 ATPase 2.85439985693e-07 2.14515766481e-06 750790848.363 +UniRef50_K0CB29 1.31681158905e-06 7.80161198911e-05 30964451967.9 +UniRef50_P33590 Nickel binding periplasmic protein 3.08633580725e-05 1.39081650806e-06 -11898426698.3 +UniRef50_Q3IXY3 0.000100315788801 2.0453797212e-05 -32241266021.3 +UniRef50_W4MVL4 Phosphoenolpyruvate protein phosphotransferase 8.84394027992e-07 5.66500633226e-05 22513285015.9 +UniRef50_I9L186 Transposase 2.68252701597e-06 1.00874665903e-06 -675725669.691 +UniRef50_A3MMQ8 Glutamate 1 semialdehyde 2,1 aminomutase 1.01704747537e-07 2.09939595549e-05 8434459642.54 +UniRef50_UPI000382D4BD hypothetical protein 3.16324837096e-07 2.58408976722e-07 -23381343.5405 +UniRef50_Q3IUW7 TraK protein 0.000270197165389 6.13296556956e-05 -84322376755.6 +UniRef50_UPI0003F107C2 2.08705570988e-07 1.59810680259e-07 -19739467.3951 +UniRef50_Q91TW1 T2 3.849585135e-08 1.12002814878e-06 436627860.366 +UniRef50_B5Y1K1 Elongation factor Ts 3.41785048679e-05 3.63727122243e-05 885828435.731 +UniRef50_UPI00047479E9 hypothetical protein 1.49745182071e-06 5.98902432132e-06 1813302936.29 +UniRef50_UPI000412A15D hypothetical protein 1.85038909385e-08 1.12116690157e-07 37792635.8027 +UniRef50_S5AVG1 MazG protein 9.85236584997e-08 9.19402427812e-08 -2657805.71315 +UniRef50_P27876 Triosephosphate isomerase 6.36483511888e-06 7.07672886736e-07 -2283865814.3 +UniRef50_UPI00031DE78E hypothetical protein 7.67795590093e-08 8.65493879494e-07 318413649.793 +UniRef50_UPI000363D58E protein meaA, partial 4.36129319092e-06 1.69330583355e-06 -1077099236.06 +UniRef50_M4N5D5 6.25117970063e-06 3.04433363087e-06 -1294643110.79 +UniRef50_E2Q9I1 Prevent host death family protein 6.79113370469e-07 4.48144983192e-07 -93244772.2446 +UniRef50_F2MT10 HD domain protein 5.75005918993e-05 3.42255767114e-05 -9396409247.91 +UniRef50_B9KPZ0 Potassium transporting ATPase C chain 4.37640569085e-08 3.38042128949e-06 1347049470.18 +UniRef50_J8EJF8 LPXTG domain containing protein cell wall anchor domain 1.73579669935e-07 3.5876061967e-07 74759821.8338 +UniRef50_E0J5J4 2 dehydro 3 deoxygluconokinase 2.68762105149e-05 1.09599367054e-05 -6425595051.54 +UniRef50_A0A028QNK4 5.35510596134e-05 7.47637228341e-06 -18600916675.1 +UniRef50_F0RNA5 ATPase AAA 2 domain protein 3.16657994906e-06 0.000272149981083 1.08591899835e+11 +UniRef50_A6LUR0 Transcriptional regulator, RpiR family 1.46123608583e-06 2.19104229317e-05 8255587669.43 +UniRef50_UPI000477413F regulator 9.9232886914e-08 1.95382552831e-07 38816800.0198 +UniRef50_A8FXN6 8.91868556561e-07 3.25860433506e-07 -228504424.978 +UniRef50_A4WWH1 Glycosyl transferase, group 1 4.09200429515e-06 6.4435333893e-06 949341151.815 +UniRef50_K7S6T7 Glycosyltransferase, group 1 family protein 3.41622791841e-06 3.50980706601e-05 12790348694.8 +UniRef50_UPI0003B3B81F indole 3 glycerol phosphate synthase 7.58102927655e-08 1.34523656752e-07 23703305.5353 +UniRef50_C4ZXX6 PKHD type hydroxylase YbiX 3.97935412408e-05 9.11282999557e-06 -12386179624.4 +UniRef50_Q6A5N5 Undecaprenyl diphosphatase 2.09714438257e-06 5.88217807873e-05 22900431806.1 +UniRef50_X5ENW5 ABC transporter family protein 0.000121317188201 1.69002397752e-05 -42154403419.6 +UniRef50_UPI00047B3063 ABC transporter ATP binding protein 1.19824536116e-06 4.6367389077e-07 -296555516.802 +UniRef50_Q9RYM8 Probable subtilase type serine protease DR_A0283 4.90388316337e-06 0.000553858390182 2.21619670913e+11 +UniRef50_E0MS58 Molecular chaperone, DnaJ family 8.95990221473e-08 1.07998695502e-07 7428173.92267 +UniRef50_A1B8N7 ATP synthase subunit delta 9.75711642676e-06 3.61612292071e-06 -2479194436.86 +UniRef50_P0AE26 L arabinose transport system permease protein AraH 2.44277036179e-05 2.03201800685e-05 -1658257661.87 +UniRef50_C2LZ77 1.4368761125e-07 3.91382597653e-07 99997505.5702 +UniRef50_UPI000382715E hypothetical protein 6.39860316502e-08 1.01609084706e-07 15188888.2054 +UniRef50_W4UHC4 Helicase 4.18189795614e-07 4.61271207283e-05 18453256329.2 +UniRef50_A0A011Q8A5 2.10665604662e-07 8.70133191825e-07 266235157.515 +UniRef50_P27675 Glutamine transport ATP binding protein GlnQ 3.53196235531e-05 5.89444925253e-05 9537649513.82 +UniRef50_N6UYQ4 2.72408954719e-07 7.79436149862e-08 -78508044.0083 +UniRef50_A6LWG5 7 carboxy 7 deazaguanine synthase 1.85345002706e-06 6.03410104149e-06 1687780116.88 +UniRef50_A0A023RTQ5 GntR family transcriptional regulator 8.21812747825e-07 4.17395668058e-05 16518999430.5 +UniRef50_UPI00029DA75A PREDICTED 4.21568476482e-08 8.68822477888e-08 18056192.8791 +UniRef50_D0SBY2 Oxidoreductase alpha subunit 4.74427300602e-07 5.00766804199e-05 20025038272.4 +UniRef50_X1SF25 Marine sediment metagenome DNA, contig 1.24128541504e-07 3.99621678043e-07 111219959.902 +UniRef50_Q7TUT1 Glutamyl Q tRNA synthetase 4.64230348064e-08 8.57262829356e-08 15867203.5748 +UniRef50_L5R254 Replication initiation factor domain protein 3.380471542e-06 1.14957157856e-05 3276223686.39 +UniRef50_A6SXI6 Tricarboxylate transport protein TctA 2.92389927118e-08 1.83808000136e-07 62401405.0721 +UniRef50_A6KYS6 S ribosylhomocysteine lyase 2.36915892584e-06 6.71094847844e-05 26136464002.3 +UniRef50_S5UDS6 0.000125828662951 4.78899414478e-07 -50605237754.5 +UniRef50_C7PD55 Chitinase 6.3380173546e-08 1.27918525655e-07 26054924.721 +UniRef50_Q9ZDH5 NADH quinone oxidoreductase subunit E 2.69817055093e-06 8.66908802427e-07 -739302839.978 +UniRef50_X1TNP8 Marine sediment metagenome DNA, contig 5.84861665717e-07 1.88040248669e-05 7355299758.6 +UniRef50_P16926 Cell shape determining protein MreC 3.99894980063e-05 2.43699442131e-05 -6305805539.79 +UniRef50_S1T2A2 1.43897943507e-06 3.83111194313e-06 965733248.271 +UniRef50_UPI00038199B5 hypothetical protein 1.13065314754e-05 2.74345876413e-06 -3457017534.26 +UniRef50_B0VLQ7 General secretion pathway protein F 3.0006202761e-06 8.94105033112e-05 34884730149.8 +UniRef50_A0KKZ8 Fumarate hydratase, class I 9.94349423305e-06 0.000114826175936 42342425658.7 +UniRef50_S1T2A8 1.13691658697e-06 9.00225191442e-06 3175332390.21 +UniRef50_J3NR99 5.14380360552e-06 8.0431240632e-07 -1751905848.66 +UniRef50_UPI0003FEFECF hypothetical protein 2.66619999237e-07 1.62775802912e-07 -41923176.368 +UniRef50_A4WQ31 Signal transduction histidine kinase 3.00998224502e-05 1.70884813059e-05 -5252838087.06 +UniRef50_A6M1A3 MotA TolQ ExbB proton channel 3.21887277318e-06 1.18861898917e-05 3499102280.69 +UniRef50_Q08SF7 8.3594031154e-06 2.48449545256e-05 6655419404.76 +UniRef50_A0A031D1F0 6.58183592274e-06 4.57199374696e-06 -811397949.899 +UniRef50_A6LRT2 Resolvase, N terminal domain 1.7087408573e-06 9.61856027269e-06 3193291162.39 +UniRef50_X6C1Q7 3.74759710808e-06 7.48860906593e-07 -1210626603.17 +UniRef50_Q43768 Glutamate tRNA ligase, chloroplastic mitochondrial 3.68853550172e-08 1.49986084406e-07 45660152.3564 +UniRef50_P45015 Protein NrfC homolog 3.78982437037e-05 8.95571743794e-06 -11684453018.2 +UniRef50_UPI0004408DA8 ribosomal protein S5 domain 2 like protein 1.80614508677e-07 1.53391085013e-07 -10990430.2021 +UniRef50_Q57E96 4 hydroxy tetrahydrodipicolinate synthase 5.39320107088e-08 2.52128569731e-07 80014383.0225 +UniRef50_L0GKZ5 Asparagine synthetase 2.41981424281e-06 2.21786687866e-06 -81528629.0802 +UniRef50_G2JGA5 Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA 4.3472474724e-06 7.74091839019e-05 29496000307.4 +UniRef50_P41504 Probable tRNA dihydrouridine synthase 1.38442294196e-06 6.55268931905e-07 -294368421.585 +UniRef50_F7Y0P1 Binding protein dependent transport systems inner membrane component 0.000137820788626 3.24446720485e-05 -42541631372.5 +UniRef50_A6LSC4 Malonyl CoA acyl carrier protein transacylase 3.51095044177e-06 1.87701295675e-06 -659640613.37 +UniRef50_X3EYH3 DNA mismatch repair protein MutL 3.82169413602e-05 1.36090647547e-06 -14879233557.4 +UniRef50_Q9ZMK8 Peptide methionine sulfoxide reductase MsrA MsrB 5.18477651944e-08 1.89459144901e-05 7627766593.11 +UniRef50_O27156 CRISPR associated endonuclease Cas1 2.06935928118e-05 4.39551067004e-06 -6579735760.6 +UniRef50_F0KK42 8.23043613343e-06 4.82213573608e-05 16144825643.3 +UniRef50_P40420 Glucose uptake protein GlcU 0.000214172740005 6.97255889135e-05 -58315087461.3 +UniRef50_F0YA24 2.22576249581e-06 1.77848630087e-06 -180570888.593 +UniRef50_P77554 3.12453658081e-05 7.49099544771e-06 -9589930813.4 +UniRef50_Q887Q4 Alginate biosynthesis protein AlgX 1.66774630257e-06 1.91143498515e-06 98380111.554 +UniRef50_A4VKL4 Cbb3 type cytochrome c oxidase subunit CcoP 3.51646903291e-05 9.72469033247e-06 -10270440182.5 +UniRef50_M2QHJ0 9.3826335217e-07 2.92471506049e-07 -260714093.036 +UniRef50_P77559 2.49228701283e-05 5.32084065573e-06 -7913579842.04 +UniRef50_B8EN54 Ribonuclease D 7.88377952255e-07 1.36867311269e-07 -263022840.701 +UniRef50_Q8NXR4 ABC transporter permease 0.000168686296564 3.03371433348e-05 -55853250893.6 +UniRef50_D3E2D0 2.03919020356e-05 4.22762417725e-06 -6525717329.43 +UniRef50_Q2YNG3 Phosphoribosylformylglycinamidine synthase 1 2.56275835543e-07 1.63884622108e-07 -37299466.6314 +UniRef50_A6U9U3 Cyclic pyranopterin monophosphate synthase 5.00703146175e-05 9.87594615084e-06 -16226959790.4 +UniRef50_K4NN39 Type I restriction enzyme R protein 3.70205284955e-07 3.45600286235e-05 13802851238.1 +UniRef50_UPI0003B6F790 50S ribosomal protein L9 5.81509672466e-07 2.30492772212e-07 -141709830.094 +UniRef50_UPI00029A559A acetate CoA ligase 1.46979324671e-07 3.14681606359e-06 1211070903.64 +UniRef50_B4U7T6 Acyl carrier protein 3.06045015022e-07 3.89791843337e-06 1450083376.23 +UniRef50_Q9M5K2-2 Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial 9.00511491391e-07 1.87334446076e-06 392744607.737 +UniRef50_UPI0003B5C4DF UDP N acetylglucosamine 2 epimerase 6.74493295519e-08 1.91877371643e-07 50233127.4959 +UniRef50_Q4L7F0 UPF0754 membrane protein SH1116 0.000190769105313 8.25999096347e-05 -43669231680.5 +UniRef50_UPI00025578B3 3 oxoacyl ACP reductase 1.64407145895e-07 2.10454509844e-07 18589885.8909 +UniRef50_G4QEZ4 2 nitropropane dioxygenase family protein 3.61548512267e-05 3.83629288373e-06 -13047398596.4 +UniRef50_D5ARQ6 Lipoprotein, putative 5.99493976514e-07 3.32617827532e-07 -107741176.283 +UniRef50_Q2S2L8 ATP dependent Clp protease proteolytic subunit 1 6.9064334766e-08 3.75906691686e-07 123876024.868 +UniRef50_UPI0003A2476A hypothetical protein 5.04477507042e-07 1.2665813457e-07 -152530317.032 +UniRef50_E6J991 Metallophosphoesterase 8.97830776414e-07 5.18576168439e-06 1731090326.38 +UniRef50_UPI0003F99510 hypothetical protein 6.51156150194e-07 3.26137602645e-07 -131213976.072 +UniRef50_E3GC98 Multidrug resistance protein MdtG 1.16203125828e-05 2.27750672386e-06 -3771805374.37 +UniRef50_E8JLX0 3.70333918682e-06 7.92842493087e-06 1705718962.51 +UniRef50_Q6LMV3 S ribosylhomocysteine lyase 1.55607427943e-05 3.51463317331e-06 -4863162276.39 +UniRef50_UPI0002C376D2 PREDICTED 6.32028421002e-07 2.40579075657e-06 716089621.381 +UniRef50_UPI000319E332 hypothetical protein 6.93645771181e-08 5.92772717087e-08 -4072368.97893 +UniRef50_UPI00035F7937 hypothetical protein 7.26162069617e-09 8.85054628926e-07 354375809.154 +UniRef50_Q8LK02 5.08306137583e-07 3.67716347234e-08 -190364265.184 +UniRef50_UPI00045E23DB PREDICTED 1.10079216784e-07 1.11334202005e-07 506652.934118 +UniRef50_P76318 Putative SOS response associated peptidase YedK 3.16381574327e-05 1.33772994399e-05 -7372132457.62 +UniRef50_O31019 Carbamate kinase 3.16356056823e-06 3.42545872957e-05 12551829019.7 +UniRef50_J7Q543 0.000123097419915 3.15180457104e-05 -36971717171.7 +UniRef50_Q7NZ19 Phosphopantetheine adenylyltransferase 2.6903143847e-07 1.19709202044e-06 374669445.525 +UniRef50_I1PC32 3.70569975378e-07 3.9326509848e-07 9162299.69676 +UniRef50_A5V3M9 N succinylarginine dihydrolase 1.43662811328e-07 4.73381871135e-07 133111630.552 +UniRef50_F3GLY7 Periplasmic binding protein LacI transcriptional regulator 2.68176307705e-06 5.50062197804e-07 -860593803.865 +UniRef50_UPI00016A69C6 hypothetical protein 4.35234330555e-05 1.41279077093e-05 -11867334305.9 +UniRef50_Q49016 Arabinose transport protein 1.59395040383e-07 4.85963194684e-07 131839571.333 +UniRef50_O28733 Succinyl CoA ligase [ADP forming] subunit alpha 1 3.95267603724e-07 4.76327467094e-07 32724861.5589 +UniRef50_V6FRW4 Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein 5.24889416796e-06 3.04846731061e-05 10187993635.1 +UniRef50_P95785 ATP synthase subunit b 6.04819541684e-05 7.37678309092e-06 -21439209237.7 +UniRef50_H2ITE9 1.75146934346e-07 2.0699160779e-07 12856085.4474 +UniRef50_A6W759 3.38994915078e-07 1.1077853675e-07 -92133752.4609 +UniRef50_F9XKQ7 3.42067777326e-06 4.10180933783e-06 274981171.041 +UniRef50_A8LS45 Glycine tRNA ligase beta subunit 1.4829288782e-05 9.40000122672e-07 -5607276272.5 +UniRef50_J9GQF0 Heat shock protein 70 1.14428572481e-06 1.13230775014e-06 -4835655.36056 +UniRef50_B0C3D3 2 isopropylmalate synthase homocitrate synthase family protein 3.91951961456e-06 7.68012456789e-06 1518202367.47 +UniRef50_B3PE41 Rrf2 family protein 2.11573155118e-07 9.10391602823e-05 36668211503.1 +UniRef50_B7LNX4 UPF0319 protein YccT 9.05270177581e-05 3.03640627508e-05 -24288523218.9 +UniRef50_A0KTT2 4 hydroxy tetrahydrodipicolinate reductase 2.86565120064e-05 8.43442358593e-05 22481817484.6 +UniRef50_UPI00029A5235 molybdenum cofactor biosynthesis protein A, partial 8.20232448143e-08 4.56917032921e-07 151349222.723 +UniRef50_F0VSK8 Complete chromosome sequence, strain ATCC BAA 2069 1.73843772901e-05 2.81618893625e-05 4351013878.57 +UniRef50_UPI000475CB6C methionine synthase 1.76655782045e-07 2.76983408875e-07 40503494.1097 +UniRef50_F8HCE7 2.2828177701e-05 7.82295907797e-06 -6057790892.84 +UniRef50_UPI00035E8FBB hypothetical protein 4.75130985215e-06 2.0171079404e-07 -1836728969.62 +UniRef50_Q9RY78 2.74202897477e-06 2.78498984103e-05 10136354999.3 +UniRef50_A3JAP6 1.00630534148e-06 7.29030957143e-08 -376825940.749 +UniRef50_UPI0003B4F317 ABC transporter ATP binding protein, partial 1.27565215432e-07 2.45005391177e-07 47412040.1013 +UniRef50_Q5XD15 Zinc binding protein AdcA 4.63993307252e-05 6.00987054649e-05 5530605692.65 +UniRef50_Q5F8G9 ADP dependent NAD(P)H hydrate dehydratase 1.49400787142e-06 2.34077256309e-05 8846836771.07 +UniRef50_Q21YB9 NADH quinone oxidoreductase subunit I 5.97710367334e-07 8.31890020682e-05 33343117968.8 +UniRef50_D7GI06 Proline specific permease proY 6.43983504138e-06 3.48807417514e-05 11481943048.0 +UniRef50_A7MY01 Ribonuclease HII 2.55677494469e-07 1.15731896604e-07 -56497755.1837 +UniRef50_W1GG79 CFA I fimbrial auxiliary subunit 7.35362315945e-06 4.03944670667e-05 13338994142.1 +UniRef50_R7EZG6 1.3906840331e-07 1.83055392069e-07 17758087.1431 +UniRef50_F7V4L9 L lactate permease 1.06134767253e-06 2.04241926651e-05 7817018132.34 +UniRef50_UPI0003483AFA hypothetical protein 5.41856301628e-07 1.71110510454e-07 -149674625.459 +UniRef50_Q8CSV4 0.00018113792202 7.51950250096e-05 -42770447588.5 +UniRef50_UPI000362C8FC hypothetical protein 1.34677635697e-07 1.86676787232e-07 20992695.576 +UniRef50_G9EJ55 1.08910196392e-07 1.79799905998e-07 28619045.6825 +UniRef50_D3QEL4 ComF operon protein A, DNA transporter ATPase 0.000162273314327 0.00010714810302 -22254724267.0 +UniRef50_S9R468 Mobile element protein 5.17178942919e-07 2.32665657187e-07 -114861504.821 +UniRef50_K7RQ95 Integral membrane protein MviN 1.3827325599e-06 5.37598928512e-05 21145302349.6 +UniRef50_S5E1S4 Chromosome partitioning protein ParB 9.90664722385e-07 2.10305892066e-07 -315040435.879 +UniRef50_Q89B29 Ribosomal RNA small subunit methyltransferase D 2.02605062616e-07 1.70557319127e-07 -12938067.3165 +UniRef50_UPI000370F5E4 hypothetical protein, partial 1.4348701999e-07 2.46322225257e-07 41515834.2962 +UniRef50_R8ZG28 Putative glucosyl transferase 4.07276519902e-06 1.50347381809e-06 -1037254459.23 +UniRef50_G7U5G6 3.40462405978e-07 1.69336258575e-06 546182404.525 +UniRef50_UPI000366A264 hypothetical protein 2.7558138804e-08 5.04891132806e-08 9257515.7909 +UniRef50_B1ES29 Inner membrane protein YeaI 9.39128150774e-06 4.6506567747e-06 -1913848378.74 +UniRef50_J9UQW7 1.9194202823e-05 2.85790359866e-05 3788772313.0 +UniRef50_A0A011NUN7 N5 carboxyaminoimidazole ribonucleotide synthase 8.02895683107e-08 5.55983778517e-08 -9968136.58328 +UniRef50_Q6FDQ7 1.55771384668e-06 6.0001545221e-05 23594491912.3 +UniRef50_UPI00036983C7 hypothetical protein 2.61384873002e-07 2.99715415684e-07 15474510.4494 +UniRef50_B5HTP9 2.3884679799e-06 3.33691192315e-06 382898458.606 +UniRef50_UPI00046A99F4 spermidine putrescine ABC transporter permease 6.64952969062e-08 1.92814297149e-06 751570011.214 +UniRef50_A6M301 Carbohydrate kinase, YjeF related protein 5.6353282674e-06 7.45740636852e-06 735595288.835 +UniRef50_Q2NFN1 Predicted peptidase 3.49579322556e-05 8.37596861015e-06 -10731464921.0 +UniRef50_U5UFJ6 4.3371692672e-05 2.73190259626e-05 -6480658538.96 +UniRef50_UPI0002D512F5 hypothetical protein 3.32791509763e-07 3.50532334761e-07 7162188.7561 +UniRef50_P32016 Capsule polysaccharide export ATP binding protein CtrD 2.25017016282e-06 1.15893900599e-05 3770357677.57 +UniRef50_UPI000368193C hypothetical protein 3.69599017695e-07 1.13431851564e-07 -103417828.492 +UniRef50_A9MZ05 1.02086107456e-06 1.33424453305e-07 -358269054.073 +UniRef50_A6LSS4 2.02586398316e-06 9.63847612847e-06 3073304940.32 +UniRef50_Q5F4W7 1.59951690188e-06 1.96362532888e-05 7281651815.04 +UniRef50_W1Y671 Protein AraJ 2.13065782269e-06 4.56883817763e-07 -675723105.307 +UniRef50_R6V897 Extracellular solute binding protein family 1 1.4334910969e-06 1.38396398987e-05 5008514511.85 +UniRef50_U5V3F5 8.6798602231e-07 2.87678953141e-06 810978627.415 +UniRef50_K7UNN0 8.32368429412e-08 8.94230568605e-08 2497450.4726 +UniRef50_K2H9R9 1.96599667576e-06 1.57452455265e-06 -158042100.003 +UniRef50_UPI00036568A9 hypothetical protein 2.34182749085e-07 7.37526142144e-07 203205904.496 +UniRef50_P77334 Cyclic di GMP phosphodiesterase Gmr 2.02340489233e-05 1.19480797778e-06 -7686375207.46 +UniRef50_UPI000377D288 hypothetical protein 6.49821045329e-08 2.06404001375e-08 -17901290.1983 +UniRef50_K3YVC5 1.69529635709e-06 5.09174919915e-07 -478851779.536 +UniRef50_Q4L8M6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 7.39820577065e-05 3.57050478837e-05 -15452898577.2 +UniRef50_X1E4N0 Marine sediment metagenome DNA, contig 2.00750935732e-07 5.30990699226e-06 2062628996.42 +UniRef50_A3JZY7 6.50837911816e-06 9.57783908741e-06 1239178656.1 +UniRef50_Q8K986 7 cyano 7 deazaguanine synthase 8.64329073757e-08 2.35766420221e-07 60287771.6638 +UniRef50_Q9RXF1 D alanine D alanine ligase 5.99084280798e-06 0.00023093455771 90812538075.7 +UniRef50_Q06986 E3 ubiquitin protein ligase SIAH2 1.2255282069e-07 1.34837897587e-07 4959636.29817 +UniRef50_A4WPA7 3.49360394337e-06 1.6070796965e-06 -761612988.717 +UniRef50_B7RMN2 Flagellar protein, putative 6.7206946878e-07 7.57132292623e-07 34340905.8236 +UniRef50_A4WPA8 1.00442351114e-05 4.9611907576e-06 -2052087381.6 +UniRef50_K6TWJ0 1.8759738336e-05 3.72247947718e-06 -6070725929.21 +UniRef50_UPI00037DF98D hypothetical protein 5.20660431834e-08 3.41393670369e-07 116805113.544 +UniRef50_Q5HPV8 Ribonuclease 3 0.000156286721779 4.78453119349e-05 -43779127879.8 +UniRef50_B8DTT6 Phosphoribosylformylglycinamidine cyclo ligase 8.09619427983e-05 3.6342108669e-05 -18013574584.9 +UniRef50_Q6CX30 FK506 binding protein 1 2.31808009757e-07 3.05153377848e-07 29610425.1472 +UniRef50_UPI000466CF90 nitrate reductase, partial 9.32738393023e-09 2.96004615928e-08 8184490.23103 +UniRef50_UPI0003B7B122 malonyl CoA ACP transacylase 7.95515606289e-08 1.18188858294e-07 15598351.2004 +UniRef50_Q18DZ3 Probable cell surface glycoprotein 1.12428152944e-07 6.41919392861e-08 -19473551.3786 +UniRef50_A6M1K6 3.61302641379e-06 5.41224463645e-06 726366475.378 +UniRef50_F0YBF5 Expressed protein 7.48433102705e-07 7.52481930542e-07 1634561.4825 +UniRef50_UPI0004210B91 thioredoxin 4.93178159571e-06 3.49524690767e-06 -579946681.825 +UniRef50_UPI00037B4F64 hypothetical protein 1.1587387323e-06 1.89234699748e-07 -391400675.094 +UniRef50_J7Q7A9 8.2632854156e-06 4.12069821193e-06 -1672413289.38 +UniRef50_UPI000423006B antiporter 5.31157010441e-07 4.43559775125e-07 -35364078.836 +UniRef50_E8PEU6 4.10151771361e-08 6.04117135677e-05 24372391772.1 +UniRef50_Z2D7Y6 5.56147481478e-06 3.0053561448e-07 -2123905714.14 +UniRef50_UPI0003B393A2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 5.69890129287e-08 1.84221216962e-06 720716495.507 +UniRef50_P77694 Fimbria adhesin EcpD 3.28011894763e-05 1.82262096975e-05 -5884098191.82 +UniRef50_R9SL72 DNA primase large subunit PriL 2.18222646683e-05 4.20188348721e-06 -7113564109.2 +UniRef50_UPI0003D007CA hypothetical protein 1.01259721453e-07 2.18846110266e-07 47471068.1111 +UniRef50_UPI0002EC7A35 hypothetical protein 8.02518868703e-07 2.18773200257e-06 559227540.62 +UniRef50_UPI00036B4C2E hypothetical protein 3.80383581835e-07 3.4335038192e-07 -14950757.2542 +UniRef50_UPI0004669DE9 malate dehydrogenase 5.51636765796e-07 2.00708246155e-07 -141674149.756 +UniRef50_A3PJ14 Lipopolysaccharide biosynthesis 5.28967320725e-05 1.03965213058e-05 -17157856622.8 +UniRef50_D6SDA6 2.41154845084e-05 1.23784804092e-05 -4738372584.08 +UniRef50_Q5LP30 Valine tRNA ligase 2.11234786303e-07 2.04317590448e-07 -2792556.8502 +UniRef50_Q0K7S4 Undecaprenyl diphosphatase 1.20728080037e-06 2.28565910625e-07 -395119211.172 +UniRef50_B9KU47 1.18668487779e-05 1.5542984484e-05 1484101095.81 +UniRef50_B8NDP1 Putative glutathione dependent formaldehyde activating enzyme 1.15760293108e-06 3.13745345103e-07 -340675662.756 +UniRef50_UPI0000393886 peptidase 4.90776077713e-07 2.4850801693e-07 -97806589.1015 +UniRef50_D8HS39 9.4121642657e-07 2.51938920415e-07 -278269787.621 +UniRef50_N3DVV4 9.00524150175e-06 6.26113155893e-06 -1107830857.93 +UniRef50_F6HHF0 6.73770234243e-07 9.26216610533e-07 101915699.974 +UniRef50_UPI0002483870 rod shape determining protein MreB 4.75216239676e-07 8.39423738277e-08 -157962061.113 +UniRef50_P21108 Ribose phosphate pyrophosphokinase 3 1.4225941132e-07 8.3466995995e-07 279534635.315 +UniRef50_UPI0003B4201A transcriptional regulator 6.09487069631e-07 6.56004784885e-07 18779772.4846 +UniRef50_D3QI08 Autolysin 0.000215291072408 7.49875433849e-05 -56642256384.5 +UniRef50_C1DNK0 3.83990500841e-06 1.27536273223e-05 3598579081.79 +UniRef50_A7K6E8 Aconitase family 1.63977241011e-05 1.40708530747e-05 -939386387.276 +UniRef50_I0C2F4 0.000152122343978 4.60380080298e-05 -42827548223.4 +UniRef50_Q753M0 Phosphoenolpyruvate carboxykinase [ATP] 8.20230582985e-08 9.66170692182e-07 356941249.511 +UniRef50_F3ZB33 Putative ABC transporter substrate binding protein 1.35864358377e-06 1.19425219434e-06 -66366821.2221 +UniRef50_UPI00040A2517 hypothetical protein 3.3213772076e-06 4.02931165964e-07 -1178212480.37 +UniRef50_A0A059IKZ4 1.61471986946e-06 9.44430084815e-07 -270604211.442 +UniRef50_UPI000289D94C aspartyl glutamyl tRNA amidotransferase subunit B 4.93947260234e-07 1.52029134454e-07 -138036543.185 +UniRef50_T1YAV1 Transposase 0.000183137785987 7.85360256338e-05 -42229014262.5 +UniRef50_B4SDX3 Leucine tRNA ligase 6.79643785696e-08 1.92147086118e-05 7729775603.92 +UniRef50_Q0C3D1 Protoheme IX farnesyltransferase 1.19822319692e-07 3.44526903829e-07 90715998.0514 +UniRef50_X5QZB1 3.3688443945e-05 2.91068386847e-05 -1849650266.2 +UniRef50_H9UQR5 5.85195313439e-06 3.14724730229e-06 -1091922934.89 +UniRef50_W4SVT3 7.34010055984e-07 9.2401462068e-07 76707174.386 +UniRef50_M9VDN7 DeoR family transcriptional regulator 1.9226790604e-06 4.03398612018e-05 15509487862.3 +UniRef50_UPI00037E4101 polyamine ABC transporter substrate binding protein 1.01306117802e-07 3.18600146338e-06 1245329364.48 +UniRef50_UPI00038013D7 hypothetical protein 7.62767558371e-07 1.1081647278e-07 -263200653.593 +UniRef50_K7RSS9 Pseudouridine synthase 3.48448605091e-06 3.76961961972e-05 13811687211.0 +UniRef50_Q9KRL3 Carboxynorspermidine synthase 1.07410806881e-06 1.93611674065e-06 348003478.858 +UniRef50_J3I1E6 2.0642442648e-07 1.70940173787e-07 -14325428.2529 +UniRef50_UPI00037A3195 hypothetical protein, partial 1.70893235369e-07 8.26822692035e-05 33310855006.8 +UniRef50_A3PIJ7 NUDIX hydrolase 3.61605067409e-05 4.13030356916e-06 -12930986075.2 +UniRef50_A0A010IZE0 5.08699593909e-07 2.61784107254e-06 851486296.999 +UniRef50_Q82K60 6.96230609209e-07 2.25346633513e-07 -190101639.385 +UniRef50_A7BWG5 1.73354793907e-07 2.07158598045e-07 13647010.5498 +UniRef50_D7REY5 Caffeine dehydrogenase subunit gamma 8.22779693662e-07 1.33646217534e-06 207379921.446 +UniRef50_Q033L0 tRNA modification GTPase MnmE 0.000353775648642 0.000121140186976 -93917790632.7 +UniRef50_UPI000365C459 hypothetical protein 8.19106581083e-08 1.39278241648e-07 23159997.4544 +UniRef50_F7X9S0 Phosphosugar isomerase 0.000130800191909 1.64423422159e-05 -46167667249.7 +UniRef50_E3H2R2 PTS system, mannose fructose sorbose family, IIC component 6.92040185662e-06 4.67764090842e-05 16090359206.0 +UniRef50_X8C840 Transketolase, thiamine diphosphate binding domain protein 5.76837509771e-07 4.93859767822e-07 -33499132.6762 +UniRef50_A5UJG6 1.3213779871e-05 1.23047226354e-05 -366997561.398 +UniRef50_L1INE5 7.41488434345e-07 9.81322363619e-07 96823900.3412 +UniRef50_Q8YNF7 Aminomethyltransferase 4.69890776135e-08 4.68138184012e-07 170023062.334 +UniRef50_UPI000287F8C3 50S ribosomal protein L18 1.42954482967e-05 3.70945629594e-06 -4273694875.45 +UniRef50_E2XNC4 Oligopeptidase B 3.74127080514e-06 9.44006516318e-07 -1129289919.69 +UniRef50_A8FKX4 Elongation factor P 2.68744403058e-06 4.2707649781e-05 16156648164.6 +UniRef50_A3TSE6 ISSfl4 5.06874471652e-07 3.25863489324e-07 -73076354.8204 +UniRef50_K0SGI4 2.83169731715e-06 3.51964995301e-07 -1001098368.07 +UniRef50_K9DHZ5 Inner membrane transporter YhaO 1.33070237883e-07 2.63503906619e-07 52657672.6698 +UniRef50_K2CR97 1.63478186016e-06 1.85231234168e-07 -585201375.699 +UniRef50_UPI000382A7B2 hypothetical protein 1.1633839862e-06 4.2650992739e-07 -297485100.003 +UniRef50_I0C1L9 7.7424418145e-05 3.34918325015e-05 -17736123937.7 +UniRef50_M9RMB0 Amino acid ABC transporter permease protein 7.01602023124e-05 4.63680559831e-06 -26452599316.0 +UniRef50_B9KWA6 1.75128358184e-06 5.3133981494e-06 1438069362.99 +UniRef50_A0A058T6Z9 2.51726533089e-06 8.01008046243e-06 2217516873.02 +UniRef50_D6K2W1 6.36009757362e-06 2.17267557662e-06 -1690513645.64 +UniRef50_A0RR59 Uracil phosphoribosyltransferase 8.99994128535e-08 8.49884162279e-07 306774798.178 +UniRef50_UPI00037904B4 amino acid ABC transporter ATP binding protein, partial 2.87801029189e-07 2.82599717884e-06 1024700932.78 +UniRef50_Q1GHA7 Ferredoxin 2.94303938972e-05 9.73185433509e-06 -7952542149.48 +UniRef50_UPI00036F7268 MULTISPECIES 5.38517757108e-07 1.13687333978e-05 4372290955.84 +UniRef50_UPI00047D88C2 stage V sporulation protein D 1.83584615925e-08 4.9107949299e-08 12413945.5258 +UniRef50_UPI000287A5C2 organic hydroperoxide resistance protein 3.46390341799e-07 6.13599021632e-07 107875423.068 +UniRef50_A9ALK8 FAD dependent oxidoreductase 6.50079717867e-06 4.28578711365e-06 -894226744.479 +UniRef50_UPI00045EB579 hypothetical protein 5.88422342093e-07 7.42582458616e-07 62236330.7977 +UniRef50_Q69XT0 8.6758480038e-07 2.65019951527e-06 719663435.544 +UniRef50_UPI00047E74A6 hypothetical protein 2.95534504691e-08 4.17079818546e-08 4906933.4732 +UniRef50_B9KQD9 Phage phi C31 gp36 major capsid like protein 5.97959573684e-05 1.46385166116e-05 -18230612977.6 +UniRef50_A5W9S9 GTPase HflX 1.17001585493e-05 5.78585926887e-06 -2387675196.12 +UniRef50_C8S226 Endoribonuclease L PSP 5.53065015373e-06 2.00968105726e-06 -1421458431.39 +UniRef50_UPI000475C0DD iron ABC transporter 3.64264635142e-07 7.05786027797e-06 2702286700.67 +UniRef50_P56861 Adenylyl sulfate kinase 6.11933435908e-06 0.000653218668405 2.61241941956e+11 +UniRef50_Q6GJM1 UPF0753 protein SAR0453 0.000144999723743 2.83211721259e-05 -47104563094.6 +UniRef50_E1PY57 Riboflavin biosynthesis protein 1.50392824239e-06 3.36462745012e-05 12976259615.6 +UniRef50_E8P9Z6 DNA repair protein RecN 2.30261577886e-06 5.53840728224e-05 21429635591.2 +UniRef50_UPI0003FA1CD0 leucyl tRNA synthase 9.2068801765e-08 3.39818458505e-08 -23450416.9098 +UniRef50_E4PYJ4 Thiol disulfide isomerase and thioredoxin 4.10369278631e-05 1.61921754179e-05 -10030131441.5 +UniRef50_F0YAU6 3.78888960073e-07 1.70909184492e-07 -83963987.6009 +UniRef50_V9QPJ8 7.64386143059e-08 2.53199315928e-07 71360464.3425 +UniRef50_UPI0001745568 4 alpha glucanotransferase 1.30591475721e-07 6.61971863283e-06 2619740263.87 +UniRef50_J2F940 Multidrug efflux RND transporter, membrane fusion protein MexE 2.26293248633e-06 8.14365563854e-06 2374120101.14 +UniRef50_UPI0003090BBE chemotaxis protein CheY 3.35779407133e-07 2.87905011906e-08 -123935188.506 +UniRef50_Q50784 Polyferredoxin protein MvhB 8.45645231742e-05 1.4811835677e-05 -28160015904.4 +UniRef50_C0HHH0 2.07205774913e-07 1.20713337178e-07 -34918058.4952 +UniRef50_P75853 Putative aliphatic sulfonates binding protein 3.7666796059e-05 8.06757493532e-06 -11949568790.9 +UniRef50_Q2KTS9 Phosphoribosyl ATP pyrophosphatase 4.92649040658e-07 1.51076227879e-06 411024807.887 +UniRef50_Q3IXK5 0.000154678049422 1.8331334815e-05 -55044841849.2 +UniRef50_Q9KUI0 Sulfate thiosulfate import ATP binding protein CysA 4.38973686944e-05 1.43047372762e-05 -11946908446.0 +UniRef50_Q3J5B1 1.9020657152e-05 2.0627476498e-06 -6846116162.99 +UniRef50_F3ZY36 MATE efflux family protein 2.06000862184e-06 2.08388289696e-05 7581240216.45 +UniRef50_Q891I6 Xanthine phosphoribosyltransferase 4.04198800632e-07 2.20562928676e-07 -74136054.9742 +UniRef50_R7TBI6 8.53117590403e-08 3.43876879217e-07 104385911.966 +UniRef50_UPI00037EC417 hypothetical protein, partial 1.82849133624e-07 7.48610044857e-07 228404622.532 +UniRef50_UPI000469EAA1 hypothetical protein 4.88133817726e-07 2.52310769979e-07 -95204658.2497 +UniRef50_W7S895 3.82067070859e-07 1.33325826272e-06 384007556.583 +UniRef50_UPI00037EBED1 hypothetical protein 1.67229533186e-06 1.34465473679e-06 -132272528.832 +UniRef50_F0PBM9 7.40846026952e-08 8.15496488974e-06 3262350535.43 +UniRef50_X1YAY8 4.08789242554e-07 1.15833198071e-06 302599601.317 +UniRef50_UPI0003B33944 ATPase 1.716573376e-08 5.12628069606e-07 200024224.988 +UniRef50_H3FTW8 2.38567656569e-07 6.64804947937e-08 -69473698.9555 +UniRef50_S4RAN5 2.1530352262e-07 1.4302145318e-07 -29181158.4337 +UniRef50_UPI0003658A58 hypothetical protein 7.22472887346e-08 1.07583958687e-06 405162526.222 +UniRef50_V5VE79 AdaA 2.23805922247e-06 7.53602561511e-05 29520328210.3 +UniRef50_Y5XPW9 Serine aspartate repeat containing protein C 1.6538351933e-05 1.06540301821e-05 -2375572899.59 +UniRef50_P64588 Transcriptional regulator YqjI 2.61544531006e-05 1.35707150627e-05 -5080209465.73 +UniRef50_Q5XHA8 CTP synthase 1 A 2.86620627935e-08 1.19156222015e-06 469477063.916 +UniRef50_Q3JNW3 1.34073408106e-06 3.0006777835e-06 670139642.475 +UniRef50_Q93R93 Acetylornithine acetyl lysine aminotransferase 4.89927379852e-08 1.46790872994e-06 572833798.007 +UniRef50_UPI0003B5FA5F arginyl tRNA synthetase 4.75176717345e-08 8.32268108788e-08 14416217.673 +UniRef50_P37325 1.9003511684e-05 2.16613720186e-06 -6797454696.24 +UniRef50_B4U1Q9 CRISPR associated endoribonuclease Cas2 2.23485324481e-05 6.06815147654e-06 -6572589580.98 +UniRef50_UPI00047540FD ATP dependent DNA helicase RecQ 2.31410617912e-07 8.05548872144e-08 -60902309.6908 +UniRef50_Q9HWZ6 Inorganic pyrophosphatase 4.84351747574e-05 6.28111270444e-07 -19300298188.3 +UniRef50_UPI00041DD57B hypothetical protein 2.39299532104e-07 1.25557180309e-07 -45919183.1953 +UniRef50_I0CNI8 1.26247943044e-07 2.50134510197e-05 10047269282.4 +UniRef50_P19072 Branched chain amino acid transport system 2 carrier protein 4.34696734427e-05 9.91417624319e-06 -13546765991.7 +UniRef50_UPI00037B9617 hypothetical protein 3.77235867806e-07 1.75025607471e-07 -81634763.4962 +UniRef50_C9YGV0 4.6389785614e-08 2.43927506878e-07 79748402.1347 +UniRef50_P44555 1.6740442782e-06 0.000109087080578 43363960860.5 +UniRef50_UPI0004408592 acyl CoA dehydrogenase NM domain like protein 6.31859110269e-08 1.148399398e-06 438114001.757 +UniRef50_L8DV59 Pyrimidine nucleoside phosphorylase 3.34058397217e-06 8.64341576184e-06 2140818266.55 +UniRef50_I7DAX1 2.10783956259e-08 9.06653965343e-08 28093126.1952 +UniRef50_X2HWT2 Membrane protein 7.14034026878e-07 5.36752917368e-05 21381109645.2 +UniRef50_R6H7C0 1.88165395862e-06 7.52651739008e-07 -455792050.472 +UniRef50_A5ZTX7 TRAP transporter, DctM like membrane protein 7.85583173735e-07 4.36826055632e-07 -140797528.309 +UniRef50_A8ACU9 1.87226529253e-06 2.32250559567e-05 8620383619.34 +UniRef50_O87014 USG 1 protein homolog 2.35438501092e-06 7.56893320425e-06 2105177095.35 +UniRef50_B9KU14 Transcriptional regulator, AraC family with amidase like domain 2.34364589398e-05 1.86712353132e-06 -8707805389.92 +UniRef50_A6LR19 Nitrogenase 6.20235931743e-06 1.78315933054e-05 4694864467.7 +UniRef50_UPI0003FC1CC9 DNA mismatch repair protein MutS 2.77612010877e-08 5.88477466318e-07 226368037.036 +UniRef50_UPI0002B472DF PREDICTED 2.19545220715e-08 1.48459877987e-07 51071764.5782 +UniRef50_G3XDA7 Cell division protein FtsQ 5.37898391826e-06 2.62115418808e-06 -1113369704.45 +UniRef50_A8EWJ4 Dihydroxy acid dehydratase 6.11296593526e-07 8.60642524568e-07 100664012.18 +UniRef50_UPI0002FFF8E0 hypothetical protein 2.34090951023e-07 3.32985445807e-05 13348525676.8 +UniRef50_C3KCS9 Lipid II flippase FtsW 7.51130258207e-06 3.08584917056e-06 -1786609848.65 +UniRef50_W1DNY7 Acyl CoA dehydrogenases 1.10096073692e-06 6.47603733676e-07 -183025785.526 +UniRef50_UPI0000164CF4 4 alpha glucanotransferase 3.97163360216e-07 6.55871213079e-05 26317985994.2 +UniRef50_S9ULD0 1.2989500354e-07 2.18990911885e-06 831652977.567 +UniRef50_R6NN79 Asparagine synthetase 6.26936148384e-06 1.16536040765e-05 2173684806.74 +UniRef50_UPI000362C4BE hypothetical protein 1.14666147068e-07 1.60418720227e-07 18470875.2315 +UniRef50_A7MGN4 5.64816940918e-07 6.82246386152e-07 47407708.0623 +UniRef50_UPI00036F08F2 hypothetical protein 8.52882913404e-08 1.33446315541e-07 19441985.3352 +UniRef50_Q8EQK9 GTP cyclohydrolase FolE2 0.000117798639933 1.7554060213e-05 -40469966972.3 +UniRef50_UPI0001FFEE83 carbohydrate kinase, FGGY 2.51991762604e-06 1.23649702104e-06 -518132647.58 +UniRef50_G7M6Z6 SNF2 related protein 8.65915149539e-07 8.09803939848e-06 2919697307.44 +UniRef50_A0A016QN06 Peptidase like protein 9.40362566627e-08 1.67036143697e-05 6705490506.66 +UniRef50_O87050 Z47f protein 9.4060435331e-07 1.24002184055e-07 -329672316.564 +UniRef50_Q5HQ44 0.000233144648132 8.96620202729e-05 -57925697596.5 +UniRef50_UPI0003B47736 ABC transporter 5.48534508744e-07 1.50137789542e-07 -160837644.419 +UniRef50_Q9RYX6 Xanthine dehydrogenase, C terminal subunit 1.8969919819e-06 0.000154462706107 61592650984.1 +UniRef50_A5N5A2 Predicted methyl accepting chemotaxis protein 7.11431388129e-06 2.09672976631e-05 5592619547.94 +UniRef50_Q896Z8 2 hydroxyacid dehydrogenase 8.88222259522e-06 8.90936513813e-06 10957777.6492 +UniRef50_A0A023L6S3 AraC family transcriptional regulator 3.69649322654e-05 1.11975540808e-05 -10402606774.4 +UniRef50_S6AEX2 8.72536361223e-06 3.42307869233e-06 -2140597488.52 +UniRef50_UPI000374E005 hypothetical protein 8.01029820221e-07 1.30437963661e-07 -270726161.581 +UniRef50_A4BQV7 2.25601952872e-06 3.43161175401e-07 -772244390.647 +UniRef50_B2I1F3 GGDEF domain protein 7.8588339106e-07 7.34373196011e-05 29330276331.4 +UniRef50_Q9RZ34 5.12598112666e-06 0.00066926493974 2.68121047494e+11 +UniRef50_P32053 Prophage CP4 57 integrase 1.08704608187e-05 1.17557706547e-05 357410444.767 +UniRef50_P53579 Methionine aminopeptidase A 6.51516167641e-07 3.98612518492e-07 -102100306.638 +UniRef50_X1SD71 Marine sediment metagenome DNA, contig 5.37499953376e-07 8.48859192237e-06 3209953398.75 +UniRef50_UPI0002483124 anaerobic glycerol 3 phosphate dehydrogenase subunit B, partial 8.25213401889e-07 1.21782328858e-06 158501429.122 +UniRef50_UPI0002EC7919 citrate lyase 6.96986107929e-07 4.19627471405e-07 -111973085.138 +UniRef50_N6U9J3 6.0213976558e-08 8.99072720102e-08 11987547.7518 +UniRef50_UPI000219384C amino acid transport protein, partial 8.58069097523e-07 3.62302042933e-06 1116244782.42 +UniRef50_UPI0003488777 hypothetical protein 1.69971883727e-06 4.52986058613e-07 -503321321.877 +UniRef50_UPI000477CFFE hypothetical protein, partial 1.87598409299e-06 1.69494629795e-06 -73087179.4412 +UniRef50_A7IPN7 TRAP dicarboxylate transporter, DctM subunit 4.81515137809e-08 8.57893005674e-08 15194836.3933 +UniRef50_P76537 2.09079907652e-05 3.12504449935e-06 -7179193628.79 +UniRef50_Q02SV2 Tyrosine tRNA ligase 1.43811297212e-06 1.49492989024e-06 22937687.067 +UniRef50_UPI000379976F hypothetical protein 1.7442224856e-07 6.7817546433e-08 -43037626.4355 +UniRef50_D3E3L7 Ribonuclease III Rnc 3.49403387883e-05 2.36911011144e-05 -4541455292.62 +UniRef50_Q8FAM3 1.99452606254e-05 9.22864703728e-06 -4326428413.15 +UniRef50_E3H102 3.18779069318e-05 1.62760157032e-05 -6298674945.72 +UniRef50_B7A940 Carbamoyl phosphate synthase small chain 3.61833149931e-07 1.85070185093e-07 -71361378.0306 +UniRef50_P0A0V1 LPP20 lipoprotein 8.98776163933e-06 4.86273282123e-05 16002979457.7 +UniRef50_A0A023RX60 Membrane protein insertase 2.87097672285e-06 8.58287455781e-05 33491069293.2 +UniRef50_Q1CSU8 tRNA pseudouridine synthase D 1.21638879333e-06 3.65313791682e-05 14257094978.0 +UniRef50_B3PB14 2.94241870736e-08 9.06645050914e-08 24723467.887 +UniRef50_U5QR95 ATPase 1.04676274751e-06 1.48014819033e-06 174963021.504 +UniRef50_UPI00036F0DA2 hypothetical protein 1.68735068094e-07 4.6403893996e-08 -49386596.1557 +UniRef50_UPI00046FF35E hypothetical protein, partial 1.31904504881e-06 1.99314374117e-05 7514051196.64 +UniRef50_K7VAT5 1.03650276802e-07 3.39550108645e-07 95235656.9315 +UniRef50_A0A024BZJ6 Peptide ABC transporter ATP binding protein 7.63111837258e-07 5.61826297187e-05 22373539442.7 +UniRef50_W0YTU6 Aminoglycoside response regulator 1.39879654241e-05 2.92403335831e-05 6157568193.39 +UniRef50_Q38YN7 Putative Holliday junction resolvase 0.000159539920915 8.71287441779e-05 -29233280633.8 +UniRef50_D3V3Z5 2.59352942516e-07 3.64886123068e-07 42605040.0266 +UniRef50_S0JG44 2.77490168795e-05 6.30240733497e-06 -8658259452.61 +UniRef50_UPI00041DC2F9 ABC transporter 6.6377822421e-07 1.9381710839e-07 -189729069.528 +UniRef50_A7MUU9 Glutamate 1 semialdehyde 2,1 aminomutase 4.48710573816e-05 4.0387479338e-07 -17951947284.5 +UniRef50_C1DQZ5 Transcriptional regulator PsrA 1.33353279737e-05 5.0698146814e-06 -3336889145.36 +UniRef50_UPI0003A41BA8 succinate semialdehyde dehdyrogenase 1.04463163511e-07 1.10295071468e-06 403101677.227 +UniRef50_K8E2T1 3.88114116683e-07 1.07844034216e-06 278693168.48 +UniRef50_UPI00047B06D7 acetyltransferase 2.63064605777e-07 5.72319419515e-07 124849963.289 +UniRef50_UPI0003673946 hypothetical protein 4.7650590164e-06 2.55513215777e-06 -892174591.681 +UniRef50_Q1R4J9 4.10762933058e-05 1.82939648424e-05 -9197505571.28 +UniRef50_F9Z1V7 1.30784016554e-06 1.55387354433e-05 5745187056.37 +UniRef50_P31058 1.95010595022e-05 8.7323945645e-06 -4347442181.73 +UniRef50_L0GJH1 1.82700804616e-05 1.58234372656e-05 -987739881.913 +UniRef50_UPI00047B6853 NAD binding oxidoreductase 1.62431559609e-07 2.65279926873e-07 41521147.9559 +UniRef50_M1MHE2 Glycosyl transferase, family 2 7.44059110757e-07 1.09975658954e-05 4139466513.62 +UniRef50_UPI00029A566E glycoside hydrolase family protein 1.85400331874e-07 2.42365246543e-07 22997435.09 +UniRef50_UPI00030D2211 hypothetical protein 6.06044624924e-07 9.06308093076e-07 121220046.74 +UniRef50_Q67KH8 Imidazole glycerol phosphate synthase subunit HisH 1.14195399126e-07 1.16149392268e-07 788851.009618 +UniRef50_P39794 PTS system trehalose specific EIIBC component 0.000126677351851 4.19699302187e-05 -34197425589.9 +UniRef50_A4EHJ0 AzlC family protein 6.29202129575e-07 2.23128649955e-07 -163936846.805 +UniRef50_U6ED29 Ferrous iron transport protein B 3.7477827622e-05 7.22463488991e-06 -12213585154.4 +UniRef50_Q21SX1 D alanine D alanine ligase 4.86232265292e-05 1.34949699205e-05 -14181708265.1 +UniRef50_X7X2Q6 2.99192168505e-07 1.04641759106e-07 -78542387.6764 +UniRef50_A6M1J5 1.86720699949e-06 4.79394136731e-06 1181558579.36 +UniRef50_A6M1J9 7.84941123248e-06 3.0897850838e-05 9304937904.9 +UniRef50_Q98IL5 Mlr2349 protein 1.02756812312e-06 5.51135375225e-07 -192341746.812 +UniRef50_B2IM62 Cmp binding factor 1 6.85109997428e-05 4.81311565228e-05 -8227592796.71 +UniRef50_U3SS19 4.83975215599e-05 3.42065681693e-06 -18157712224.9 +UniRef50_UPI0003D32881 hypothetical protein 1.01020864089e-05 1.04850860876e-07 -4036006670.61 +UniRef50_R5ZJK5 Pyruvate dehydrogenase complex repressor 1.65564030199e-06 5.65809443022e-06 1615839847.2 +UniRef50_P23173 Low affinity tryptophan permease 3.85371302162e-05 6.05733083301e-06 -13112493583.0 +UniRef50_E0TBL9 3.47367607272e-07 1.1184156012e-07 -95084755.4649 +UniRef50_J3KZC6 1.08190273645e-06 4.6189898304e-06 1427965464.77 +UniRef50_P08987 Glucosyltransferase I 4.69119221995e-05 1.9732121045e-05 -10972819259.7 +UniRef50_S5N864 Molecular chaperone GroES 7.62707122606e-05 2.31030505892e-05 -21464437457.3 +UniRef50_UPI0001FFE2F2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridin epyrophosphokinase 1.11894335927e-06 1.15583837648e-06 14894971.2005 +UniRef50_E8P8Z7 Transposase 5.35260825662e-07 1.8088448861e-07 -143066075.955 +UniRef50_B7H383 Fumarate reductase flavoprotein subunit 7.09115821271e-07 9.57584426058e-05 38372579609.3 +UniRef50_UPI0003B789C4 DNA mismatch repair protein MutS 2.01800429941e-08 7.38274774422e-07 289903655.091 +UniRef50_Q49WG0 Organic hydroperoxide resistance protein like 2 9.25329932551e-05 7.4116136236e-05 -7435111178.86 +UniRef50_X5MDF7 Thioesterase family protein domain protein 1.04842235922e-07 1.14341128037e-07 3834819.31134 +UniRef50_A4WNH8 Major facilitator superfamily MFS_1 6.35630223941e-05 2.93368202811e-06 -24476808711.4 +UniRef50_A2SMC9 Phosphoheptose isomerase 2.06739875477e-07 1.97260897133e-07 -3826779.87762 +UniRef50_A8F5R0 Holliday junction ATP dependent DNA helicase RuvB 1.03102797246e-07 1.07474888836e-07 1765067.02648 +UniRef50_Q6MAC7 Glutamate 1 semialdehyde 2,1 aminomutase 3.8063877297e-08 6.88982650623e-08 12448220.7213 +UniRef50_Q9JSQ9 Dihydrofolate reductase 1.37734124348e-07 8.31015680389e-05 33493517832.1 +UniRef50_Q8UEB0 Phosphoribosylformylglycinamidine synthase 2 6.73114358529e-07 1.61416090264e-07 -206578870.142 +UniRef50_A5UKW8 Prephenate dehydrogenase 2.41892254872e-05 2.7871060906e-06 -8640298233.95 +UniRef50_I1VJZ3 PhoH 2.28938364882e-06 6.88393220252e-05 26867026782.1 +UniRef50_A3M2Y1 Pseudouridine synthase 1.27385598041e-06 3.02870484292e-05 11712981823.5 +UniRef50_C7MCQ3 Pseudouridine synthase 1.54075913818e-06 7.13291459184e-05 28174428143.0 +UniRef50_UPI0002F44DE1 amino acid dehydrogenase 2.04340808687e-07 1.10657337888e-07 -37821166.787 +UniRef50_D2SFI0 SAF domain protein 1.49165601091e-06 2.45476866008e-07 -503097813.134 +UniRef50_Q041N3 1.13739241886e-07 1.92577607478e-07 31828015.645 +UniRef50_Q2NEB6 Phosphoribosylformylglycinamidine synthase 2 4.04265552258e-05 6.90512270379e-06 -13533013663.4 +UniRef50_UPI000472CD1A anhydro N acetylmuramic acid kinase 2.59910544547e-08 2.59577889735e-07 94301871.8353 +UniRef50_F0S3X5 4.39325474021e-07 6.14604192458e-07 70762169.5448 +UniRef50_UPI00035C5DE1 hypothetical protein 2.8201575767e-06 9.02944725924e-07 -774002354.707 +UniRef50_K9SGR1 Transposase IS4 family protein 6.4290731221e-07 1.72704547517e-07 -189826626.143 +UniRef50_A0A022S5M2 NAD binding domain of 6 phosphogluconate dehydrogenase family protein 8.1839675541e-07 2.77514886541e-06 789964838.856 +UniRef50_P77211 Cation efflux system protein CusC 6.27290823104e-05 3.41711104428e-05 -11529203688.7 +UniRef50_Q3IUV3 TraH 0.000366612917254 9.83177993298e-05 -1.08314031457e+11 +UniRef50_UPI0003B5C889 6 phosphofructokinase 2.27206508363e-07 9.3115154918e-08 -54134324.8717 +UniRef50_E4BA85 8.43449572516e-08 6.02015836948e-07 208990086.669 +UniRef50_UPI00016A5A20 ABC type spermidine putrescine transport system, permease component II 3.96802204763e-07 1.14820200813e-06 303349321.332 +UniRef50_A3M530 Phage tail tape meausure protein lambda family 6.15466286206e-07 5.34266354363e-05 21320517051.8 +UniRef50_G1UVN7 8.49230890476e-07 2.60476582826e-07 -237687338.826 +UniRef50_D5AUR3 Tyrosine protein kinase Wzc 1.9106135318e-05 8.95621616885e-06 -4097646914.01 +UniRef50_UPI00040C0F6B hypothetical protein 3.70014875625e-08 8.71714428149e-08 20254226.59 +UniRef50_Q6A666 9.89046258984e-07 6.27880106146e-05 24949000268.9 +UniRef50_A8AQ52 2.78632419218e-05 1.31338164962e-05 -5946449794.69 +UniRef50_Q2GCH6 Malate dehydrogenase 3.42967318858e-07 1.76359014312e-07 -67261817.059 +UniRef50_E2ZRH0 3.20621656529e-06 6.22844134027e-06 1220109228.53 +UniRef50_UPI00047014CA hypothetical protein 1.86307243351e-06 7.40277057652e-07 -453286271.483 +UniRef50_UPI000161E9D3 2 methyl branched chain enoyl CoA reductase isoform I 3.74463278101e-08 3.06672046248e-07 108689726.305 +UniRef50_P0ADV7 Probable phospholipid binding protein MlaC 6.07319025028e-05 1.86853258617e-05 -16974718959.5 +UniRef50_UPI00039F6CD4 glutathione ABC transporter permease 1.53736692184e-07 2.6495755142e-07 44901225.707 +UniRef50_Q47NN7 Uroporphyrinogen decarboxylase 1.03579746867e-07 1.00471023132e-07 -1255029.92015 +UniRef50_Q9RXX4 4.05898912746e-06 0.000188208162243 74343280951.4 +UniRef50_A4WS74 3.30741114618e-06 8.7435946252e-07 -982252821.595 +UniRef50_P39310 1.14051067353e-05 2.75961606811e-05 6536527164.49 +UniRef50_B3DX01 Aspartate tRNA ligase 2.75347321435e-08 3.92312955488e-08 4722046.17969 +UniRef50_M9RV27 UPF0301 protein OA238_c37660 5.05275766811e-07 1.10945811078e-06 243915826.411 +UniRef50_P0AE13 AMP nucleosidase 4.58100208324e-05 6.6283845966e-06 -15818107361.1 +UniRef50_UPI00046665BD hypothetical protein 6.18100265434e-07 2.85437845488e-07 -134299901.159 +UniRef50_UPI000473A39B 30S ribosomal protein S15, partial 1.64852158096e-06 1.33539151667e-06 -126414449.492 +UniRef50_UPI00026CDD90 putative esterase 1.82992757039e-06 1.13772798055e-06 -279449468.663 +UniRef50_M2JJ86 Aryl alcohol dehydrogenase 3.5985959882e-06 1.75435666453e-05 5629755778.3 +UniRef50_M9RIF3 5.95076213481e-07 2.27692871371e-06 678984492.994 +UniRef50_UPI000467C7F7 hypothetical protein 1.49539822438e-07 1.0157590637e-06 349703337.403 +UniRef50_Q4L8I6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000277376706018 5.66421499871e-05 -89113248987.3 +UniRef50_G7M6V2 Cof like hydrolase 1.2355547902e-05 1.42666982638e-05 771554853.511 +UniRef50_UPI0003B6B463 protein phosphatase 8.57644775715e-08 1.0581766776e-07 8095718.95941 +UniRef50_Q9RS72 1.29720271086e-06 0.000445737677852 1.79426073712e+11 +UniRef50_L0LHI9 8.82023075829e-07 7.20336255997e-07 -65274953.2866 +UniRef50_Q3IVA7 Phosphoglucomutase phosphomannomutase 8.02297378384e-06 3.76567163405e-06 -1718725120.84 +UniRef50_W5X4J6 Glycoside hydrolase family protein 7.48994529727e-08 1.00935265689e-06 377250225.452 +UniRef50_P0A635 Cysteine tRNA ligase 4.56035083835e-08 1.15090948905e-07 28052932.4453 +UniRef50_Q838S5 Glyoxalase 4.20870301763e-07 1.19523348917e-05 4655393761.93 +UniRef50_K7RWW8 3 5 exonuclease 5.43019546019e-06 3.928756062e-05 13668633791.6 +UniRef50_Q1GDK6 Uroporphyrinogen decarboxylase 0.000142716639859 3.48555649866e-05 -43544839530.1 +UniRef50_B0RVK3 Succinyl CoA 0.000133136531123 0.000399481304585 1.07526653465e+11 +UniRef50_A8ACZ6 Xaa Pro dipeptidase 4.51495223133e-05 8.0613097734e-06 -14972966525.9 +UniRef50_A8LRK2 4.37041328714e-06 2.04775113178e-06 -937687214.389 +UniRef50_R7S2B2 HD domain PDEase like protein 2.41597887256e-08 6.70515302197e-08 17315922.382 +UniRef50_F0XZC7 2.69520191837e-06 5.35785712312e-06 1074946580.61 +UniRef50_Q6GBA6 Histidinol phosphate aminotransferase 0.000186552743932 6.69131202621e-05 -48299984218.9 +UniRef50_UPI00037E8A1E hypothetical protein 1.17587631553e-07 1.74776342465e-06 658121972.181 +UniRef50_UPI000255621F hypothetical protein 3.3329442087e-07 3.02511250281e-07 -12427543.7188 +UniRef50_G2RRU8 Glycerol uptake facilitator Permease 0.000148307840887 5.25786418738e-06 -57751031014.4 +UniRef50_UPI0003FB737F DNA gyrase subunit A 6.87623927077e-08 1.39678457209e-07 28629685.4771 +UniRef50_J3I8M6 3.09107475349e-07 5.91634499551e-06 2263710595.43 +UniRef50_Q8XBT3 Universal stress protein G 6.57223082255e-05 5.66102310275e-06 -24247477838.9 +UniRef50_M9VBX6 2.24004066923e-06 4.75112126189e-05 18276527655.8 +UniRef50_M4WZP2 2.38412203486e-06 6.61156802679e-06 1706671823.54 +UniRef50_UPI00016C466B Extracellular ligand binding receptor 7.59667976638e-08 2.38021061735e-07 65423295.0349 +UniRef50_Q1IL91 NADH quinone oxidoreductase subunit B 2 2.91782887407e-07 1.34068517014e-06 423454723.017 +UniRef50_A6VB56 1.40130727096e-05 3.83528188565e-06 -4108899051.19 +UniRef50_T1A5J7 1.08886392692e-07 4.41908693859e-07 134445189.624 +UniRef50_UPI0003B56320 DNA repair protein RadA 8.88224326416e-08 2.19455277163e-07 52738082.3784 +UniRef50_UPI000382943F hypothetical protein, partial 1.3233442521e-06 2.71424058965e-07 -424673090.483 +UniRef50_S8UV07 1.49500838014e-06 4.5608757559e-07 -419425077.789 +UniRef50_UPI0001913D8E hypothetical protein, partial 5.60626694013e-07 6.13547616856e-07 21364825.9645 +UniRef50_W4TLW8 ABC type multidrug transport system 4.16344840642e-06 7.14475899663e-06 1203591670.06 +UniRef50_Q93K67 Arginine deiminase 3.4531198059e-06 6.09572905263e-05 23215139375.4 +UniRef50_UPI00036FB25E GMP synthase 1.35509705451e-07 1.07792058092e-07 -11189954.3726 +UniRef50_V9U0L1 Transcriptional regulator 2.38387123302e-06 2.6057356341e-06 89569381.2984 +UniRef50_F8FR22 ABC transporter permease protein 0.000245589962513 7.68157444921e-05 -68136222907.6 +UniRef50_UPI00035D0F9F hypothetical protein, partial 1.50770599952e-07 1.44315739263e-06 521752407.574 +UniRef50_S5S114 CarD family transcriptional regulator protein 4.76040117614e-05 8.3803972742e-06 -15835054496.4 +UniRef50_UPI00037BA794 hypothetical protein 1.33490158393e-07 1.64159890884e-07 12381747.3666 +UniRef50_E8SJL6 Manganese ABC transporter, ATP binding protein SitB 0.000194900015167 4.92071690459e-05 -58817989831.3 +UniRef50_E1W2A8 Deoxyribose phosphate aldolase 3.93113982e-06 1.2902373158e-05 3621796987.96 +UniRef50_UPI0003175B32 hypothetical protein 1.88641176413e-07 2.55057759843e-07 26813189.7538 +UniRef50_A6LZB7 6.72355115255e-06 4.4009909253e-05 15052960320.2 +UniRef50_A6LZB6 2.16945970609e-06 3.01856938874e-06 342795998.633 +UniRef50_Q6GB21 2.95060832698e-05 8.96840665248e-06 -8291312076.04 +UniRef50_UPI0003B57978 siderophore interacting protein 1.14355928213e-07 6.10495452829e-06 2418478167.76 +UniRef50_C1N717 Predicted protein 6.18829489886e-07 1.57460542253e-06 385858472.698 +UniRef50_Q5HIS8 Single stranded DNA binding protein 1 0.00055049965532 0.000245721877675 -1.23042528879e+11 +UniRef50_UPI00046AB08C hypothetical protein 8.68352887165e-08 1.09258858791e-06 406034948.864 +UniRef50_U7I8Y0 1.29634534954e-05 4.74642211084e-06 -3317316404.26 +UniRef50_Q8DW20 AguR protein 5.45234688493e-05 1.00319420213e-05 -17961775352.9 +UniRef50_UPI00046CE535 hypothetical protein 5.24391124012e-07 9.07922112568e-08 -175049201.936 +UniRef50_Q4EE14 2.83498777876e-06 4.38160392755e-06 624387918.381 +UniRef50_A6M0G1 Extracellular solute binding protein, family 5 8.34814193266e-06 1.94451863003e-05 4480012987.25 +UniRef50_M1Y549 1.65011658617e-06 4.22318236215e-07 -495677260.659 +UniRef50_P37597 Inner membrane transport protein YdhC 3.14854546762e-05 3.17902734364e-06 -11427652073.1 +UniRef50_UPI00046FDF41 hypothetical protein 1.16432129652e-07 2.66589005524e-07 60620173.4216 +UniRef50_M3EIH0 Alkaline phosphatase 8.92785718753e-08 3.71051242698e-06 1461936544.84 +UniRef50_Q88FX9 Nicotinate dehydrogenase subunit A 2.49085644463e-06 1.01493398536e-05 3091823732.36 +UniRef50_P77923 Delta aminolevulinic acid dehydratase 2.79099075769e-06 6.33465280423e-05 24447013501.8 +UniRef50_K5YXR4 2.56515961025e-08 1.58673936802e-07 53702751.3083 +UniRef50_Q6FED0 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.73009181642e-06 5.88864850608e-05 22267312797.8 +UniRef50_B0KA54 GTPase Era 1.69028099822e-05 7.19824693411e-06 -3917851190.89 +UniRef50_UPI00037E38E9 hypothetical protein, partial 1.93050692661e-07 1.32412544879e-06 456628758.898 +UniRef50_B9DIA5 Methylenetetrahydrofolate reductase 0.000237864330294 5.15324347738e-05 -75224472770.9 +UniRef50_W5XBY9 Sugar ABC transporter permease 3.88534849052e-07 7.3502942433e-07 139884112.006 +UniRef50_P71348 Glutamate pyruvate aminotransferase AlaA 7.16282105868e-06 2.31379459493e-05 6449353955.16 +UniRef50_UPI00036FDD71 hypothetical protein 5.21628421797e-08 9.220967669e-08 16167398.5217 +UniRef50_Q8CVL1 Multidrug resistance protein MdtE 4.04971879983e-05 1.8552535062e-05 -8859325681.56 +UniRef50_A6LTI4 1.50592814697e-06 1.3614924166e-05 4888550286.96 +UniRef50_A6LTI6 1.52416953778e-06 3.74207894439e-05 14491905957.2 +UniRef50_A6LTI7 1.38803792491e-06 1.62901646139e-05 6016171414.01 +UniRef50_Q98QY9 Glycerol kinase 2.17158329999e-08 8.02616276262e-07 315259091.671 +UniRef50_Q03ZA4 Ribosomal RNA small subunit methyltransferase G 0.000147534322414 0.000128532572221 -7671239730.61 +UniRef50_X6FLX7 C4 dicarboxylate ABC transporter 1.28831672507e-07 2.86776151455e-07 63764124.348 +UniRef50_X0T626 Marine sediment metagenome DNA, contig 3.95622022752e-07 1.29442402025e-07 -107459979.279 +UniRef50_A4WNY5 0.000150506381063 9.80029789019e-05 -21196267741.6 +UniRef50_F2D9R2 Predicted protein 5.16745400073e-08 1.22148700345e-06 472267646.704 +UniRef50_O25042 1.82360381085e-06 6.98167885197e-05 27449683037.1 +UniRef50_UPI000377F130 hypothetical protein 1.21574936125e-06 8.00361562986e-07 -167697151.541 +UniRef50_Q2LUS9 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.73045032e-07 8.36942852922e-08 -36071992.9029 +UniRef50_B7V621 6.57658069571e-06 1.09985116255e-05 1785187779.55 +UniRef50_Q18CF3 DNA directed RNA polymerase subunit beta 4.24912972522e-08 3.0088349183e-08 -5007222.33682 +UniRef50_X4QVT5 Antitoxin HicB 5.99138378937e-07 1.76523274017e-06 470766603.216 +UniRef50_R0U5E9 3.26576008664e-07 1.08033761939e-07 -88228186.8178 +UniRef50_H7CZX2 DNA replication protein DnaC 2.46086316459e-06 1.57599001565e-05 5368984431.17 +UniRef50_X5K1L0 2.47832284945e-06 4.62096708163e-06 865011769.733 +UniRef50_B1LXW0 2.54370283955e-05 1.17886895209e-05 -5510001887.63 +UniRef50_UPI0003ACEF34 dihydrofolate synthase 2.00470741962e-08 2.02209855765e-07 73541350.3081 +UniRef50_B2UX43 Chromosomal replication initiator protein DnaA 0.000112623430536 4.56642502132e-05 -27032242777.9 +UniRef50_Q6G904 DNA primase 0.000190406576145 4.71023152792e-05 -57853688652.6 +UniRef50_Q0TMX8 Threonine tRNA ligase 2.04451528796e-06 8.33818936025e-06 2540833455.05 +UniRef50_D0CZU1 2 oxoglutarate dehydrogenase E1 component 8.35458268566e-05 2.1186019053e-05 -25175419651.2 +UniRef50_A5UN27 Putative antimicrobial peptide ABC transporter, permease component 1.23730632132e-05 6.73240753426e-06 -2277201916.22 +UniRef50_UPI0003093DAF hypothetical protein 8.82278766945e-08 5.10323507815e-08 -15016290.2515 +UniRef50_Q9HZS1 Histidine transport ATP binding protein HisP 5.4202023741e-06 2.44737600989e-06 -1200166483.91 +UniRef50_Q02F58 Phosphoserine phosphatase 3.9839037489e-06 5.77165786004e-05 21692540211.6 +UniRef50_Q04849 Nitrogen assimilation regulatory protein NtrX 4.2029536618e-05 9.2009278594e-06 -13253312208.2 +UniRef50_UPI0002378F3D ABC transporter 3.81340870863e-08 3.00118447326e-08 -3279048.90931 +UniRef50_A0M4U6 Phosphopantetheine adenylyltransferase 1.26616957756e-07 1.68303758117e-07 16829472.8603 +UniRef50_Q9CHW5 Phosphoserine aminotransferase 4.47947331171e-05 1.31520116333e-05 -12774554962.9 +UniRef50_UPI0002E6BDE4 hypothetical protein 7.77256900993e-07 1.06899487625e-07 -270631513.987 +UniRef50_P66901 Diaminopropionate ammonia lyase 3.35974377099e-05 2.32366285866e-05 -4182785784.5 +UniRef50_P0A2E0 Nitrogen regulation protein NR 3.50135714236e-05 4.18586134499e-06 -12445524857.3 +UniRef50_B9KU76 Gas vesicle protein 1.2505997281e-05 8.1279827118e-06 -1767458205.87 +UniRef50_A6M095 Pentapeptide repeat protein 3.42525236349e-06 1.35590410539e-05 4091134849.89 +UniRef50_Q8D653 Sulfate thiosulfate import ATP binding protein CysA 1.16661898341e-06 4.376729536e-07 -294284457.408 +UniRef50_A5UM14 Proteasome subunit beta 1.58955364513e-05 2.16260462366e-05 2313477121.59 +UniRef50_P68209 Succinyl CoA ligase [ADP forming] subunit alpha 1, mitochondrial 5.60996344374e-07 3.62113745594e-07 -80291345.6914 +UniRef50_Q9RZP0 Potassium transporting ATPase B chain 1.38425487671e-07 7.84244833036e-05 31605042218.2 +UniRef50_V9ZQ34 2.23384954315e-06 3.15846743525e-06 373279589.378 +UniRef50_B0K4D2 N acetyl gamma glutamyl phosphate reductase 5.3310024025e-08 1.70557550182e-07 47334265.0985 +UniRef50_UPI0003B7561B transposase, partial 9.69707931002e-07 8.32649203064e-07 -55332290.3683 +UniRef50_UPI00029A0E68 dgpfaetke family protein 2.63646142194e-07 1.51699170307e-07 -45194366.2946 +UniRef50_Q2CH80 2.78907460348e-07 3.26119481191e-06 1203986000.61 +UniRef50_UPI000467FCE1 ABC transporter ATP binding protein 2.5975302123e-07 4.54469068407e-07 78609257.68 +UniRef50_L2Q9X2 9.66958834137e-07 1.61625606657e-07 -325122906.484 +UniRef50_UPI000361DBC6 hypothetical protein 6.53103590256e-08 6.82083735101e-07 248998980.582 +UniRef50_D8J0Q1 2 isopropylmalate synthase 3.21998901321e-08 1.2083083206e-07 35781398.8803 +UniRef50_A0A014L0D1 Polyketide cyclase 2.79246277729e-07 4.74736117826e-07 78921647.3773 +UniRef50_UPI00031B5027 hypothetical protein 8.94809452849e-08 2.11444371808e-08 -27588286.9049 +UniRef50_B0CEH5 1.16660721695e-06 4.58869325352e-07 -285722471.759 +UniRef50_P0AA79 Hexuronate transporter 3.4566739948e-05 6.9089442604e-06 -11165791518.4 +UniRef50_X2GRS8 FAD dependent pyridine nucleotide disulfide oxidoreductase 0.000158425986149 1.72405589693e-05 -56998289492.6 +UniRef50_A4W853 Negative modulator of initiation of replication 2.69488381753e-05 3.26316801329e-06 -9562195700.26 +UniRef50_Q2NUD2 Cytidine deaminase 2.91438493102e-05 7.55369253966e-06 -8716211229.27 +UniRef50_F0Y8N9 6.72786260995e-07 4.58191542328e-07 -86634521.2992 +UniRef50_T1YB06 Ribosomal RNA small subunit methyltransferase E 0.000200712432531 4.98183350878e-05 -60917798816.5 +UniRef50_Q8DWK3 6.05372499495e-05 2.04170473111e-05 -16197018135.4 +UniRef50_M1XHY8 Membrane protein, putative 4.8650516939e-05 2.05254462429e-05 -11354436173.4 +UniRef50_Q9RVM4 Transcriptional regulator 4.36232529273e-06 0.000420832337783 1.68134054704e+11 +UniRef50_D7AF64 NADPH Fe oxidoreductase subunit beta 3.03344909874e-08 3.92985887758e-08 3618916.27903 +UniRef50_UPI000427FE74 hypothetical protein 6.26062635493e-08 8.81401445695e-08 10308341.1038 +UniRef50_A1WXT0 Zinc import ATP binding protein ZnuC 2.19873152004e-07 3.53139133472e-07 53801112.0761 +UniRef50_UPI000380220D hypothetical protein, partial 3.97351870416e-07 1.98504469146e-06 640971075.036 +UniRef50_P35630 NADP dependent isopropanol dehydrogenase 2.20148601437e-05 1.37493197121e-05 -3336900101.82 +UniRef50_UPI0003641C87 hypothetical protein 1.00212644815e-08 1.75723760438e-07 66896131.0161 +UniRef50_Q47152 5.49178776369e-05 4.03200465087e-05 -5893323561.99 +UniRef50_UPI00036884C8 hypothetical protein 2.00884117885e-06 6.63884889273e-07 -542975358.573 +UniRef50_Q8KA76 RNA polymerase sigma factor RpoH 2.2789234777e-05 4.14479586229e-06 -7526988782.86 +UniRef50_W4KQX7 1.72670631544e-08 9.4363042766e-08 31124593.0433 +UniRef50_UPI0003734279 hypothetical protein 2.74371199291e-08 2.59455287883e-08 -602173.647423 +UniRef50_UPI000395CB52 2.44573020013e-07 4.11891037648e-07 67548336.9422 +UniRef50_C5N1M7 7.61034404067e-06 2.45897694793e-07 -2973117361.75 +UniRef50_UPI0003F148E4 glutamate rich protein 2 isoform 3 3.49335774146e-08 5.98228434046e-06 2401018485.24 +UniRef50_UPI0003A99930 hypothetical protein 3.4046696582e-08 1.13995932104e-07 32276487.4677 +UniRef50_B1M288 1.97176912657e-07 9.95149945399e-08 -39427314.7904 +UniRef50_Q5Y0N1 RNA binding tegument protein 1.24384520751e-06 1.3493960599e-06 42612174.3645 +UniRef50_A9M0X9 1.08390792412e-05 3.86389038262e-05 11223130327.2 +UniRef50_W5V8H5 O methyltransferase 1.37267632307e-06 4.97740449558e-06 1455272998.23 +UniRef50_Q8E7H4 Sensor protein LytS 5.77726689744e-05 1.58359786283e-05 -16930356513.8 +UniRef50_UPI00021977F6 DNA repair ATPase 3.0831970033e-08 5.20041056974e-08 8547450.97904 +UniRef50_A0LBS6 Plasmid pRiA4b ORF 3 family protein 1.21394663855e-06 1.01435046007e-07 -449134581.961 +UniRef50_Q5PJK8 sn glycerol 3 phosphate binding periplasmic protein UgpB 2.23863487834e-05 5.43540262579e-06 -6843304975.32 +UniRef50_Q58400 Putative hydrogenase expression formation protein MJ0993 4.50158673608e-05 9.33629868734e-06 -14404279711.0 +UniRef50_Q3IF99 Twitching motility protein PilU 2.45428490074e-06 4.94108344441e-05 18956935272.3 +UniRef50_B9KX88 0.000358514246382 5.41999804001e-05 -1.22855403533e+11 +UniRef50_UPI0003B52C75 ATP binding protein 4.92991863429e-07 1.65065199187e-07 -132388018.467 +UniRef50_UPI00037FF3F7 hypothetical protein 9.33313758677e-08 5.01751984567e-07 164884411.616 +UniRef50_Q3JNU0 NAD transhydrogenase subunit beta 9.35208884628e-06 0.000101613367368 37247010312.4 +UniRef50_Q87NA5 Probable intracellular septation protein A 3.31967903984e-05 1.0287948211e-05 -9248580714.16 +UniRef50_A4WC00 Protein MtfA 1.72841700889e-05 5.16954293387e-06 -4890823645.67 +UniRef50_V6USS0 Leucyl tRNA synthetase 3.31184007446e-06 2.05214057872e-06 -508556144.681 +UniRef50_P25131 4.57780669233e-05 1.86285211532e-05 -10960604789.8 +UniRef50_A4XZS6 GCN5 related N acetyltransferase 7.68644479962e-06 5.75292282856e-06 -780586546.7 +UniRef50_I6SSZ2 Transcriptional regulator 6.66524396169e-05 2.88034041398e-05 -15280120082.0 +UniRef50_UPI0004777E62 molecular chaperone GroES 1.23073522032e-07 1.34086356488e-06 491636784.263 +UniRef50_L7WXY9 0.00120662254724 0.000336332433747 -3.51346798478e+11 +UniRef50_X1NEY9 Marine sediment metagenome DNA, contig 2.30812002296e-06 5.86934495774e-07 -694863718.648 +UniRef50_Q4L9U1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000108801536274 2.83087359372e-05 -32495931253.7 +UniRef50_A3PS34 Methyltransferase type 11 2.01864165162e-06 2.99813913899e-06 395435155.437 +UniRef50_F2DK91 Predicted protein 7.83506406181e-07 4.48228842268e-07 -135355666.87 +UniRef50_Q9RUN0 UvrABC system protein C 6.14131218259e-07 0.000159052575331 63963544146.8 +UniRef50_A6Q9M2 Imidazoleglycerol phosphate dehydratase 1.14988276095e-07 2.39261597791e-07 50170664.9738 +UniRef50_B0VKB6 Type II secretion system protein L 3.15693634753e-06 0.000100234597846 39191443223.8 +UniRef50_W8T948 3.73374070743e-07 1.35562049752e-06 396544936.009 +UniRef50_Q1CHM2 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 6.12250743721e-07 2.020250005e-07 -165613166.574 +UniRef50_D2ATJ4 2 isopropylmalate synthase 2.35739608585e-08 1.17798286299e-07 38039516.4428 +UniRef50_UPI000349D801 hypothetical protein 1.09341186113e-07 1.59030631402e-05 6376119363.63 +UniRef50_L7VSY8 1.00800241366e-06 2.70507731418e-05 10513786123.7 +UniRef50_UPI00035C1945 hypothetical protein, partial 2.55300425828e-07 1.00574178025e-07 -62464884.9426 +UniRef50_F5XRW0 7.81403775608e-06 4.47389694955e-05 14907048063.1 +UniRef50_E9USM4 3.23090073268e-08 4.03717959656e-08 3255046.71503 +UniRef50_B8A2U2 1.24141865608e-06 2.29945034618e-07 -408344313.161 +UniRef50_D8JJP8 8.95931935559e-07 6.4113700103e-05 25521788778.4 +UniRef50_L7VTK0 1.3198810799e-06 9.78427621959e-06 3417180187.7 +UniRef50_A0A017HMR2 4.81737024421e-06 8.39305871475e-07 -1605993403.61 +UniRef50_UPI0003F79B23 N anthranilate isomerase 7.6025546299e-08 8.23527065541e-07 301775536.193 +UniRef50_B9KL86 2.28494165222e-05 1.57007379245e-05 -2886009274.04 +UniRef50_Q2YXZ9 Probable CtpA like serine protease 0.000159507206765 4.23847117099e-05 -47283788508.3 +UniRef50_C5MZV6 2.00184172698e-05 2.12563122969e-05 499753413.12 +UniRef50_A3PGB9 Two component, sigma54 specific, transcriptional regulator, Fis family 8.90297143505e-07 1.34438560782e-06 183321085.336 +UniRef50_UPI000308CCAF hypothetical protein 1.15697317314e-07 1.08862330483e-07 -2759368.0584 +UniRef50_I6SVD2 ABC transporter permease 5.4905474429e-05 1.37523189429e-05 -16614033875.7 +UniRef50_X5NVN5 Oxidoreductase 6.60304303512e-07 4.78625120955e-07 -73346115.4525 +UniRef50_E5ANB9 Transposase 8.41450708557e-07 4.46984999313e-07 -159250647.46 +UniRef50_UPI00035E5C37 hypothetical protein 1.90399327373e-07 5.90036323223e-06 2305182497.53 +UniRef50_B0VTM3 Signal peptidase I 3.80643142163e-06 4.62802623346e-05 17147206752.1 +UniRef50_Q6ASN4 GMP synthase [glutamine hydrolyzing] 2.58234881714e-07 3.22168882966e-07 25810940.8639 +UniRef50_Q8RBE5 Dephospho CoA kinase 1.59608343145e-07 1.35740187458e-07 -9635867.34605 +UniRef50_A6LWC7 Glycerol 1 phosphate dehydrogenase (+)) 1.19206101737e-06 7.18768717791e-06 2420507855.62 +UniRef50_W1GFB3 ABC peptide transporter, inner membrane subunit 6.72732690309e-06 2.85336752184e-06 -1563964941.04 +UniRef50_U5UCP9 Putative transposase 3.99030676636e-06 1.92226710349e-06 -834892989.601 +UniRef50_UPI000255CD61 peptidase M24 5.11554200297e-08 2.17259459547e-07 67058239.0788 +UniRef50_U3TGB3 ATPase components of ABC transporters 5.64049648223e-05 6.37189910954e-06 -20198962603.0 +UniRef50_F8ACN4 TraU family protein 1.05155868877e-06 1.56713989583e-07 -361259786.041 +UniRef50_UPI0003710E05 hypothetical protein 5.48727988055e-08 8.86800168774e-08 13648388.7968 +UniRef50_UPI000287BD0C iron siderophore uptake system transmembrane protein 1.85570698396e-07 2.46666861624e-07 24665270.8294 +UniRef50_U2SDU2 Macro domain protein 1.86379009635e-07 1.70827956918e-06 614409931.71 +UniRef50_P21362 Protein YciF 2.46758976008e-05 3.92882534625e-06 -8375847664.39 +UniRef50_L8FTT7 1.74130730822e-06 2.93779615222e-06 483037228.892 +UniRef50_Q1GEB3 4.28390235975e-06 7.15630141786e-07 -1440555282.01 +UniRef50_D8JLE3 Cell division protein FtsQ 1.4334910969e-06 5.2397511638e-05 20574800491.3 +UniRef50_Q1GEB7 1.44532557278e-06 8.38466394581e-07 -244996497.238 +UniRef50_G9F1Y9 2 enoate reductase FldZ 3.3784934993e-06 1.68181456954e-05 5425752514.64 +UniRef50_J3PLS0 1.76417593292e-07 6.45814050655e-07 189501109.98 +UniRef50_Q01V55 Dihydroorotase 1.89253211283e-07 7.18785523468e-08 -47385590.1615 +UniRef50_R0VGG6 6.24316632184e-07 1.11943812053e-07 -206851195.008 +UniRef50_UPI00021958FB inosine 5 monophosphate dehydrogenase 1.16221459969e-07 6.74000538166e-07 225182258.587 +UniRef50_C5N5S9 Streptolysin associated protein SagD 6.5610370904e-05 1.58912095191e-05 -20072235573.8 +UniRef50_UPI000472128D hypothetical protein, partial 8.55214457501e-08 1.20275982234e-07 14030832.8647 +UniRef50_P36647 Prepilin peptidase dependent protein D 2.67089143052e-06 4.04543431768e-06 554919831.085 +UniRef50_Q3KIW4 Nicotinate phosphoribosyltransferase 1.84569590458e-05 4.81871637809e-06 -5505925925.01 +UniRef50_UPI00040FE5F8 hypothetical protein 1.40245922481e-06 1.11898014332e-06 -114443983.877 +UniRef50_P45394 Inner membrane protein YrbG 2.48425803855e-05 4.38650232183e-06 -8258369738.62 +UniRef50_Q8PWQ2 UPF0107 protein MM_1524 6.87448771559e-06 0.000221487528896 86641918322.5 +UniRef50_P25718 Alpha amylase 2.93335089222e-05 9.44551521626e-06 -8029027112.2 +UniRef50_UPI00047A8026 D ribose transporter ATP binding protein 3.1122563277e-08 1.14662674595e-07 33726168.0915 +UniRef50_Q3IV67 4.52853633036e-05 1.13110222496e-05 -13715858395.5 +UniRef50_Q5FL71 Prolipoprotein diacylglyceryl transferase 7.28625190608e-08 6.77372903543e-06 2705222041.54 +UniRef50_K7RVZ0 TIGR01777 family protein 1.26249494601e-06 8.10572466251e-05 32214120444.6 +UniRef50_B0VR24 9.03442746157e-08 3.00645552726e-05 12100956804.8 +UniRef50_Q17ZN4 NADPH dependent 7 cyano 7 deazaguanine reductase 4.51427665587e-06 7.65920185557e-05 29098668898.3 +UniRef50_A0A017TGF9 1.17392175095e-06 5.00305302093e-07 -271947226.607 +UniRef50_R7C015 ABC transporter permease protein 6.58106748512e-06 9.83244159752e-06 1312619628.02 +UniRef50_P23874 Serine threonine protein kinase HipA 1.88077423819e-05 1.65633768778e-05 -906077895.467 +UniRef50_P54385 Glutamate dehydrogenase, mitochondrial 6.52898490794e-08 1.27182257874e-07 24986724.9356 +UniRef50_V9T176 Phage tail length tape measure protein 6.90280184256e-06 8.28016336657e-06 556057749.369 +UniRef50_UPI0004690011 hypothetical protein 1.4585432813e-08 3.19258010404e-08 7000519.44365 +UniRef50_Q729V5 1,4 alpha glucan branching enzyme GlgB 3.77878698851e-08 7.6275014235e-08 15537732.4644 +UniRef50_P76251 D malate dehydrogenase [decarboxylating] 2.79773383952e-05 7.23658526859e-05 17920187927.5 +UniRef50_M4QX58 1.54919010474e-06 4.33940503256e-05 16893283565.4 +UniRef50_P05417 Ubiquinol cytochrome c reductase iron sulfur subunit 3.9820486114e-05 6.02687153456e-06 -13642896900.0 +UniRef50_B4V7N1 Integral membrane protein 3.56200252365e-07 3.51090316775e-07 -2062943.70364 +UniRef50_S5XTF2 2.75438385494e-06 6.99930109575e-07 -829408187.984 +UniRef50_P76418 3.34559105602e-05 1.4774852516e-05 -7541772374.8 +UniRef50_P65264 Lipoprotein signal peptidase 6.78118542849e-06 7.33652145062e-07 -2441463398.1 +UniRef50_Q8NXI7 MW0768 protein 0.000165691126842 6.00644146164e-06 -64466667039.4 +UniRef50_J7M936 Competence protein 9.31772114203e-08 2.36436077487e-07 57835362.2152 +UniRef50_UPI000466F951 hypothetical protein 1.11235640618e-07 4.83065357461e-07 150112219.553 +UniRef50_A0A023S2A4 Anhydratase 2.26319551871e-06 0.000104032284435 41085430042.5 +UniRef50_UPI00036D0961 hypothetical protein 1.08090106798e-07 6.91415519432e-07 235495627.288 +UniRef50_F4AWZ4 Acetyl CoA acetyltransferase 0.000119538864178 4.16581225511e-05 -31441411099.0 +UniRef50_UPI0004692135 cell division protein 2.41999729773e-08 2.92030284286e-07 108126383.323 +UniRef50_I6T6L1 4.90303065892e-05 1.15237180559e-05 -15141870048.5 +UniRef50_F9YRZ6 HD domain containing protein 2 2.69534117763e-07 2.25242321922e-07 -17881141.5025 +UniRef50_X1T676 Marine sediment metagenome DNA, contig 1.63419450484e-07 2.1614616051e-06 806634136.555 +UniRef50_I0I0B9 2.982452067e-07 1.82535131153e-07 -46713577.4206 +UniRef50_Q8CPM1 Protoheme IX farnesyltransferase 0.000209683406444 6.01370238337e-05 -60373709800.1 +UniRef50_UPI0003613269 hypothetical protein 9.33464011615e-07 8.58097414564e-07 -30426420.0816 +UniRef50_A5UJC1 Predicted transcription regulator 3.08898325174e-05 3.03407573826e-06 -11245710840.3 +UniRef50_Q9HSC3 Archaeal Lon protease 2.52692122893e-05 2.81117718886e-06 -9066584361.11 +UniRef50_A3I3T9 2.14034627228e-06 1.97007803564e-06 -68739376.5578 +UniRef50_D6SE14 4 phosphopantetheinyl transferase family protein 0.000172477035074 9.98060263055e-06 -65601803832.7 +UniRef50_O26872 2.20884133646e-05 1.54178300083e-05 -2692996358.2 +UniRef50_F6DA35 2.36597432698e-07 1.36035498907e-07 -40598086.7051 +UniRef50_A0A016QP53 3.69661543406e-06 1.00050246086e-06 -1088453892.31 +UniRef50_C6D6V1 Extradiol ring cleavage dioxygenase class III protein subunit B 9.64540787351e-06 1.92377730863e-05 3872555547.96 +UniRef50_Q9RX31 4.09285711357e-06 0.000576873507816 2.31238577497e+11 +UniRef50_Q5HH87 Regulatory protein Spx 0.000108788541575 0.000120331991202 4660232268.48 +UniRef50_UPI0003641212 hypothetical protein 1.82340779019e-07 9.99261487502e-08 -33271797.5808 +UniRef50_UPI00034C12E9 hypothetical protein 6.9637076968e-09 1.39642356514e-07 53563998.6775 +UniRef50_Q9RX39 2.30044792465e-06 0.000220865498423 88237392980.8 +UniRef50_UPI00026C7577 oxidoreductase 1.38659649176e-07 1.86974401265e-07 19505258.307 +UniRef50_UPI000428654A hypothetical protein 4.47392491801e-07 2.09588827432e-07 -96004257.4849 +UniRef50_A8LTG8 NADH dehydrogenase 9.34019849585e-05 1.02085984401e-05 -33586191035.1 +UniRef50_E3I8L4 6.11876282111e-05 2.00808416269e-05 -16595314181.0 +UniRef50_J0XSF7 0.000513049709221 2.33144767259e-05 -1.97712123085e+11 +UniRef50_UPI000454614C 1.66461712178e-08 1.64901363444e-07 59852440.3974 +UniRef50_E7EWU3 Acetyl coenzyme A synthetase, cytoplasmic 3.81541307996e-08 2.14397251516e-07 71151510.5793 +UniRef50_D0C8Q0 1.17110441217e-06 5.63391484364e-05 22272016360.6 +UniRef50_A3U071 1.47238885055e-07 3.25295088891e-07 71883474.4839 +UniRef50_M1MFW2 Cobalamin biosynthesis protein CobD 7.79562398727e-06 3.1361066038e-06 -1881104346.42 +UniRef50_P19318 Respiratory nitrate reductase 2 beta chain 2.88732484574e-05 1.43133738948e-05 -5878000030.67 +UniRef50_UPI000376E605 hypothetical protein 2.6674446554e-07 2.61901875984e-07 -1955012.82901 +UniRef50_X5EIL9 Tandem five TM family protein 7.95500277792e-05 1.06777734317e-05 -27804574237.7 +UniRef50_H0PXP7 7.86677190994e-06 1.18144031415e-06 -2698950403.46 +UniRef50_Q4L3J2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000206001290036 5.75165995132e-05 -59945091676.2 +UniRef50_B9KQG2 Chemotaxis MotB protein 0.000142613161985 3.25941138405e-05 -44416039821.7 +UniRef50_Q3J6K8 Transcriptional regulator AcuR 0.00010457243851 2.66519052993e-05 -31457475449.6 +UniRef50_D5BS88 Aerobic glycerol 3 phosphate dehydrogenase 1.23740947687e-05 6.54333801122e-06 -2353948054.43 +UniRef50_A6M2L9 Capsular exopolysaccharide family 1.70038733717e-06 1.46291508511e-05 5219500484.33 +UniRef50_J9DL69 1.61626434882e-07 5.78101069547e-08 -41911925.5537 +UniRef50_UPI0003EFB221 hypothetical protein 4.53211126404e-07 5.01662530361e-07 19560426.343 +UniRef50_UPI00046939D9 hypothetical protein 1.74752379989e-07 1.01333503721e-07 -29640101.3003 +UniRef50_UPI00038308DC hypothetical protein M271_48570 9.66337255591e-08 4.15433201229e-07 128703260.437 +UniRef50_A6M0I9 1.6508133623e-06 7.08465746741e-06 2193709546.0 +UniRef50_R9YNN7 ABC 2 transporter family protein 5.46480751441e-05 7.22300561842e-05 7098061501.06 +UniRef50_P0A1A6 Branched chain amino acid aminotransferase 2.0358755766e-05 9.93391537532e-06 -4208635992.9 +UniRef50_R7PVV7 Conserved hypothetical membrane protein Msm_1770 1.39895125516e-05 5.3693946399e-06 -3480047381.7 +UniRef50_T0MQ15 2.07086548719e-07 4.62836384938e-08 -64918108.1314 +UniRef50_UPI000364254B hypothetical protein 1.81432309913e-07 6.19993327076e-08 -48216558.5051 +UniRef50_UPI0003B3327B 16S rRNA methyltransferase 7.16663046167e-08 1.09414866562e-07 15239557.6843 +UniRef50_Q9ZKX6 Putative 5.21395803504e-06 2.45194622331e-05 7793868949.95 +UniRef50_UPI000469FF0C hypothetical protein 7.41243022549e-08 1.08800575862e-07 13999237.1809 +UniRef50_P39829 D galactarate dehydratase 2.92883297348e-05 6.18345656555e-05 13139314828.4 +UniRef50_UPI00035E2496 hypothetical protein 5.44078358104e-07 3.22410668852e-07 -89489966.3195 +UniRef50_A3PPP4 1.14161201013e-06 1.13822235914e-07 -414931344.251 +UniRef50_Q74IL5 50S ribosomal protein L27 6.62760749953e-05 2.4620569401e-05 -16816838779.0 +UniRef50_UPI000379C346 hypothetical protein 3.16654567748e-07 4.14242237802e-06 1544509412.46 +UniRef50_UPI0003FF1625 hypothetical protein 3.5415317548e-07 3.0683708334e-07 -19102087.0307 +UniRef50_B4QTQ4 GD21117 3.60705131652e-07 2.22494684607e-07 -55797253.505 +UniRef50_S4GRW5 Polyphosphate kinase 2.92512079526e-06 0.000233776446907 93197513215.7 +UniRef50_UPI000380F5C4 hypothetical protein 9.00158313422e-09 8.46389058594e-09 -217073.07997 +UniRef50_Q6F8V1 2,3 dihydroxybenzoate AMP ligase 1.9719975882e-06 6.70947507743e-05 26290854607.3 +UniRef50_O34987 Guanine hypoxanthine permease PbuG 0.000210958936531 0.000105009596311 -42773048791.4 +UniRef50_X4UKI9 Membrane protein 7.80810490109e-08 8.24156514316e-08 1749932.18879 +UniRef50_U5PB64 Uroporphyrinogen decarboxylase 2.91163590113e-05 1.89291625163e-05 -4112696235.99 +UniRef50_N2JS66 Cyanate hydratase 2.38476753563e-05 3.45399655201e-06 -8233178391.88 +UniRef50_UPI00031EB597 hypothetical protein 3.44031671482e-07 7.15982024871e-07 150160922.007 +UniRef50_Q9KN37 Ribose import ATP binding protein RbsA 1.76644650209e-07 1.82101642495e-07 2203054.75068 +UniRef50_Q1XDM0 Pyruvate dehydrogenase E1 component subunit alpha 5.09700187677e-08 1.57494231675e-07 43005131.9496 +UniRef50_UPI0001FFE0CA DEAD DEAH box helicase 2.14073724003e-08 1.0708786431e-06 423684430.442 +UniRef50_UPI0003175780 hypothetical protein 5.15056249552e-08 1.00541843327e-07 19796523.0988 +UniRef50_G7M2K8 YibE F family protein 1.04277897476e-06 1.39816367086e-05 5223575644.77 +UniRef50_A6LWW9 2.29707498285e-06 5.69742839604e-06 1372764399.93 +UniRef50_Q1QA11 Ribosomal protein S12 methylthiotransferase RimO 3.15974778708e-05 0.000577544898855 2.20405673379e+11 +UniRef50_Q03224 Fructose 1,6 bisphosphatase class 2 2.74947101137e-05 1.49352001702e-05 -5070428286.71 +UniRef50_B2TBY2 VRR NUC domain protein 8.10055288423e-06 1.07453015844e-06 -2836491593.4 +UniRef50_Q160T4 Histidine tRNA ligase 1.23608981799e-05 1.26473963685e-06 -4479655368.99 +UniRef50_Q8VQS9 MntC 0.000118001290659 4.59207073564e-06 -45784693770.5 +UniRef50_A6LW09 Response regulator receiver protein 8.48283121002e-07 1.53786222414e-05 5866076210.22 +UniRef50_E4GYP5 Phenylalanine tRNA ligase beta subunit 1.56956296637e-06 4.33814918197e-05 16879988768.1 +UniRef50_Q05756 Glutamate synthase [NADPH] small chain 1.82548531874e-05 3.85792153819e-06 -5812217977.0 +UniRef50_Q58569 Protein FwdA 3.72795827053e-05 4.48156465229e-06 -13240962364.9 +UniRef50_W0RSQ0 1.94683583351e-07 5.80051521861e-07 155577765.773 +UniRef50_UPI00045E8969 hypothetical protein 1.30023489956e-07 1.77161130512e-07 19030043.9364 +UniRef50_UPI00035A2281 PREDICTED 1.05773835482e-07 4.84319633896e-07 152823584.099 +UniRef50_X6ZDD4 1.58557191652e-06 4.64836144275e-07 -452454784.228 +UniRef50_U6ED09 ATP dependent RNA helicase, DEAD DEAH box family 2.76072421958e-05 8.5373104716e-06 -7698765451.44 +UniRef50_V6EN15 Oligopeptidase A 5.37317263568e-05 2.41130511707e-05 -11957422634.6 +UniRef50_UPI0003761157 hypothetical protein 6.19705686204e-07 9.0598183929e-08 -213607191.548 +UniRef50_W9EJG3 Tandem lipoprotein 5.52826268501e-07 8.12209023577e-07 104716001.209 +UniRef50_Q8XDN0 Septum site determining protein MinC 2.95121637515e-05 1.47212539437e-05 -5971271794.28 +UniRef50_A9B6J1 DNA directed RNA polymerase subunit beta 9.42652847353e-09 3.60212737802e-08 10736625.0345 +UniRef50_UPI0003AB99D7 4.05189863182e-06 1.20865445599e-07 -1587006336.48 +UniRef50_A3DEM3 4 hydroxy tetrahydrodipicolinate reductase 2.81705961835e-06 6.31980646712e-06 1414101886.39 +UniRef50_B5YHP1 Adenylate kinase 2.87008915949e-07 5.48688779862e-07 105643372.235 +UniRef50_A0A024L5Z4 Glycyl radical enzyme activating protein family 7.26139519627e-06 1.54078280971e-05 3288814930.04 +UniRef50_Q1Q8C1 Sec independent protein translocase protein TatC 3.47379744345e-06 4.46130776241e-05 16608432244.7 +UniRef50_R4LTT1 2.53735323054e-07 6.16975961362e-07 146644703.149 +UniRef50_Q7BQS4 Se3 9.5563583074e-07 6.47729163482e-07 -124305700.012 +UniRef50_A0A013GNM0 Penicillin binding transpeptidase domain protein 4.52675413254e-06 6.97751451027e-05 26341576122.5 +UniRef50_W7T589 4.8865870735e-07 1.45747900163e-07 -138437300.85 +UniRef50_U3SVP2 Signal peptidase type IV 3.46104486116e-05 2.39060605953e-05 -4321492799.79 +UniRef50_UPI000463AB2B proline iminopeptidase 6.90262166838e-08 9.19897813907e-08 9270672.8668 +UniRef50_UPI00046A179B dihydropteroate synthase 5.19730628353e-08 9.26754626421e-07 353160051.997 +UniRef50_UPI0003A95978 hypothetical protein 3.87422294827e-07 3.85563551135e-07 -750397.63781 +UniRef50_F3ZGB9 Putative AraC family transcription regulator 1.92649951006e-08 1.56722388568e-06 624929999.719 +UniRef50_A0A011NPY8 Phosphofructokinase 1.13278885152e-07 3.29593880414e-06 1284878864.93 +UniRef50_D3DJ42 2 oxoglutarate carboxylase small subunit 0.000357993525907 0.000158055817562 -80717306370.5 +UniRef50_UPI00037C16F6 ABC transporter permease 5.13008799522e-08 2.08503899299e-07 63464788.0084 +UniRef50_UPI0003B5FDE5 PREDICTED 1.12113284331e-08 8.81558939275e-09 -967189.249613 +UniRef50_L2Y6Z3 Inner membrane ABC transporter ATP binding protein YddA 1.58184742444e-05 1.74776241254e-05 669819167.018 +UniRef50_UPI0003B5FA7B diacylglycerol kinase 1.11200722409e-07 8.94418242077e-07 316194523.85 +UniRef50_UPI00035D784B hypothetical protein 1.07665698244e-07 3.42478378076e-07 94796760.3238 +UniRef50_C8KCZ1 1.63128915561e-08 9.31824982898e-08 31033203.5345 +UniRef50_A4WTQ5 Cytochrome c biogenesis factor like protein 3.08658515242e-06 2.69526413726e-06 -157981095.869 +UniRef50_UPI00026CD046 cell wall hydrolase 4.63368908805e-08 6.81650702886e-08 8812303.88893 +UniRef50_M3K7Q0 Replication initiation protein RepC 8.41080854467e-07 3.34422769452e-07 -204544086.314 +UniRef50_W0ISJ9 Sulfate thiosulfate transporter subunit 6.95766637868e-05 2.37123855438e-05 -18515971944.7 +UniRef50_UPI000378F5B1 hypothetical protein, partial 9.77547095748e-08 4.15153315766e-07 128137712.238 +UniRef50_N7TQJ5 2.39646540089e-06 3.65166229343e-06 506738388.516 +UniRef50_C9R5I1 Lipopolysaccharide biosynthesis protein 3.12894684428e-08 5.41625872492e-08 9234158.74688 +UniRef50_A5D5F2 1.78563270122e-08 2.46849605136e-08 2756803.14127 +UniRef50_A0A023L0Z2 Tail assembly protein 5.19235789519e-06 5.38571498834e-06 78060631.263 +UniRef50_UPI0003799A1D hypothetical protein 2.02649546358e-07 3.9076128183e-06 1495739137.89 +UniRef50_UPI0003836BE8 1.16835891119e-08 5.25259459081e-08 16488560.6307 +UniRef50_P23101 Toluate 1,2 dioxygenase electron transfer component 1.05164845735e-05 2.21408825359e-06 -3351779276.21 +UniRef50_X7EHW6 3.87392749395e-06 3.01386165342e-06 -347219134.017 +UniRef50_UPI0003646727 hypothetical protein 6.93350505529e-07 6.85112377367e-07 -3325833.4322 +UniRef50_A5N1Z0 1.58997433803e-06 2.25674895649e-05 8468880320.16 +UniRef50_H0PW14 Transcriptional regulator, LuxR family 5.0800391874e-06 1.30151586895e-05 3203505117.86 +UniRef50_B1LE56 Cysteine desulfurase 6.23482142684e-06 1.01949863082e-05 1598767159.29 +UniRef50_E3G1U2 Alpha L rhamnosidase 7.99906236806e-06 2.48148876585e-06 -2227512171.45 +UniRef50_UPI000265785F PREDICTED 5.01642342693e-08 8.08781842324e-08 12399598.5027 +UniRef50_Q9ZS97 UPF0051 protein ABCI8, chloroplastic 0.000123884638089 3.59875269364e-05 -35485142391.2 +UniRef50_UPI00047644EC glycogen debranching protein 3.25812123978e-08 1.07034997416e-07 30057906.6625 +UniRef50_UPI0003B33C48 hypothetical protein 1.54015127585e-06 3.21355637372e-06 675574173.0 +UniRef50_Q3J226 Phage protein, HK97 gp10 family 5.08585783294e-05 1.1743897636e-05 -15791076587.0 +UniRef50_Q8DRY1 5.58598359346e-05 7.50590748787e-06 -19521074283.4 +UniRef50_UPI0003B70F3D multidrug ABC transporter ATP binding protein 1.06783807927e-07 2.32430738122e-07 50725207.5809 +UniRef50_UPI00042929E4 hypothetical protein 3.65831068215e-07 2.74822333085e-07 -36741343.1747 +UniRef50_P37056 Probable endopeptidase YaeF 2.005502287e-05 3.16976785549e-06 -6816784654.73 +UniRef50_A7IM59 Pyridoxine 5 phosphate synthase 4.82003584857e-06 7.64284989672e-05 28909215295.6 +UniRef50_Q8TQ79 Enolase 8.58745161339e-08 7.43581556257e-07 265524403.071 +UniRef50_UPI0002DF017A hypothetical protein 7.00675146039e-07 1.26460936427e-07 -231817322.821 +UniRef50_UPI00038FD033 KDP operon transcriptional regulatory protein KdpE 2.41348165212e-07 3.97396415166e-07 62998593.4338 +UniRef50_E8U6Y9 3.38849076462e-07 2.2134952232e-06 756817653.934 +UniRef50_Q7CJM5 Outer membrane protein assembly factor BamB 2.310704462e-05 1.83072346489e-05 -1937742185.62 +UniRef50_UPI000370F145 hypothetical protein 7.15946695159e-08 4.33823841614e-08 -11389645.8013 +UniRef50_K8C533 2 ketogluconate transporter 4.81146857949e-07 6.1138344272e-07 52578107.4547 +UniRef50_UPI00046A53B5 nickel transporter permease NikC 7.83920258189e-08 8.73067670882e-08 3598990.44659 +UniRef50_Q3IWB5 Zinc import ATP binding protein ZnuC 1.7861401246e-06 1.05175051994e-07 -678626227.574 +UniRef50_F4DWP9 Methyl accepting chemotaxis sensory transducer 4.68115415633e-06 2.85984355477e-06 -735285439.844 +UniRef50_D9UC41 Membrane protein 4.48853793592e-07 2.63910373091e-08 -170553398.912 +UniRef50_X8APG4 FeS assembly SufB domain protein 3.01690121525e-08 3.94588810191e-07 147120744.402 +UniRef50_E6WPS1 Appr 1 p processing domain protein 1.25609106857e-07 2.07488831115e-06 786947935.118 +UniRef50_UPI00047CA54F chemotaxis protein CheY 8.29526474472e-06 9.55028964568e-07 -2963343259.27 +UniRef50_P10482 Beta glucosidase A 3.15703538041e-08 7.68800377198e-08 18292075.4091 +UniRef50_Q7UF84 Biotin synthase 6.61076097737e-08 8.82401865048e-06 3535676158.79 +UniRef50_A9M323 1.69228986145e-05 0.000104597686755 35395387863.0 +UniRef50_A3CP26 5.19476131447e-06 1.24580779575e-05 2932290059.71 +UniRef50_UPI000374A30D hypothetical protein 2.69299040371e-06 4.11904180894e-07 -920902500.228 +UniRef50_S0RSE8 1.48469144131e-07 1.30806730846e-06 468144008.81 +UniRef50_UPI000474435D Phyllosphere induced regulator PhyR 3.31370467465e-06 5.24076867529e-07 -1126206978.32 +UniRef50_UPI0003A55370 tRNA synthetase RNA binding protein 6.33410463306e-08 1.28190600404e-07 26180560.7729 +UniRef50_F2EPT9 Transporting ATPase YfcM 2.81164778654e-06 9.88859968553e-07 -735881810.244 +UniRef50_UPI00047D26C2 branched chain amino acid ABC transporter ATP binding protein 1.09777596683e-07 1.83477044788e-07 29753371.5939 +UniRef50_A3PJ45 Histidine kinase 3.04653473166e-05 6.93604921494e-06 -9499066380.61 +UniRef50_UPI00047C6448 ribosomal protein S3 3.01173807326e-07 4.4705426059e-07 58893729.1371 +UniRef50_UPI000421C8B5 cation 2.49817127137e-06 5.14471137146e-06 1068440715.11 +UniRef50_UPI0004792DA6 DSBA oxidoreductase 2.50302560182e-07 1.05228545308e-07 -58568160.063 +UniRef50_F4BY74 Acyl coenzyme A synthetase 2.8741246228e-05 3.56919098857e-06 -10162267596.0 +UniRef50_P34897 Serine hydroxymethyltransferase, mitochondrial 7.05503156805e-07 1.00935017392e-06 122666769.432 +UniRef50_B7MGN9 Cyclic pyranopterin monophosphate synthase 3.30987781524e-05 1.3184955654e-05 -8039454512.69 +UniRef50_V9WDD5 Deacetylase 1.23122913801e-05 4.40311476324e-06 -3193031656.74 +UniRef50_UPI0003819A1B hypothetical protein 8.02084964377e-08 6.73676450172e-08 -5184009.29342 +UniRef50_A1A1W2 Tyrosine tRNA ligase 6.43103339528e-06 6.82843678021e-05 24970950125.8 +UniRef50_Q1GTK0 NADH quinone oxidoreductase subunit D 0.000116929002798 3.63099731956e-05 -32546891557.2 +UniRef50_D9PVP5 F420 dependent NADP reductase 1.51987522171e-05 6.80202050891e-06 -3389863630.08 +UniRef50_I4E028 Hydrolase homolog 7.31864863656e-05 1.4992249874e-05 -23493727395.2 +UniRef50_UPI000379680D hypothetical protein 1.96280875449e-07 6.44027175759e-05 25920926397.6 +UniRef50_Q890M8 Tetracycline resistance protein 2.47802618498e-06 1.17216524735e-05 3731765364.73 +UniRef50_F0YEB9 5.41332395452e-06 1.99584384148e-06 -1379678658.83 +UniRef50_Q1QIW5 Prolipoprotein diacylglyceryl transferase 7.700206674e-07 1.26862258717e-07 -259650942.027 +UniRef50_Q5HL74 Abortive infection family protein 0.000115231647495 1.95733636432e-05 -38618423050.1 +UniRef50_Q3J4Z5 Valine tRNA ligase 8.26419911155e-05 1.62811758998e-05 -26790675441.4 +UniRef50_UPI0004731B78 4 alpha glucanotransferase, partial 1.6272736737e-07 4.42375209303e-06 1720227970.4 +UniRef50_W2GPF9 8.58381750483e-07 2.94628994452e-07 -227593905.634 +UniRef50_UPI0004724CFB hypothetical protein 1.08151292936e-07 1.62936773492e-07 22117570.7939 +UniRef50_S9S8F9 3.20913733553e-07 5.07126284481e-07 75176291.8946 +UniRef50_UPI0003B55E14 ammonium transporter 5.0134854799e-08 4.66810920171e-08 -1394326.41749 +UniRef50_UPI00040CCFDE Fur family transcriptional regulator 7.56307758571e-07 1.15599588495e-06 161359001.344 +UniRef50_UPI00037BF338 hypothetical protein 4.01029163123e-07 3.03534761746e-06 1063506686.74 +UniRef50_UPI0004410CB8 ClpX, ATPase regulatory subunit 1.68281664312e-07 1.35535079021e-07 -13220198.3278 +UniRef50_Y0KNL3 Hemagglutinin 3.59107075597e-09 1.02330906184e-08 2681464.92521 +UniRef50_V5VFP2 OsmC family protein 2.13671314441e-06 6.36314923485e-05 24826196990.5 +UniRef50_Q57NA5 Zinc import ATP binding protein ZnuC 8.63080774716e-06 7.80432315716e-07 -3169292896.61 +UniRef50_F6EKX3 Tartrate dehydrogenase 1.97523441112e-05 3.82020315467e-06 -6432000813.49 +UniRef50_B2HMS4 3.67369319959e-07 8.75781235443e-07 205252129.197 +UniRef50_G1Q986 3.28684299998e-07 1.46296030058e-07 -73632382.7305 +UniRef50_Q7G491 Transposon protein, putative, CACTA, En Spm sub class 2.3308408978e-08 2.41658807462e-08 346171.875184 +UniRef50_L8P6V5 Putative Non ribosomal peptide synthetase 2.08926916398e-06 2.68257275904e-06 239523941.98 +UniRef50_X6G717 Transposase 2.41860069485e-06 9.85911331836e-07 -578394276.923 +UniRef50_P45508 3.04124058859e-05 9.95689179185e-06 -8258142057.13 +UniRef50_C1MS99 Predicted protein 8.6270624122e-07 7.39140245093e-08 -318445097.455 +UniRef50_B6IWR2 2.34744647776e-07 3.75418278904e-07 56791671.1459 +UniRef50_F3U250 McpJ 3.15581788163e-05 1.68306035032e-05 -5945702881.57 +UniRef50_UPI00036970FF hypothetical protein 3.88987340299e-08 1.30163996522e-08 -10449016.0002 +UniRef50_D4HBY8 Alanine racemase domain protein 4.61377385892e-06 4.48844410466e-05 16257762520.3 +UniRef50_UPI00031FC917 hypothetical protein 1.3266108784e-07 2.17266184439e-07 34156115.7183 +UniRef50_Q5F8E8 Chaperone protein HscA homolog 3.47263625001e-05 0.000134614546163 40326085510.6 +UniRef50_J9PAT3 5.63630486903e-07 6.44451526532e-07 32628445.4839 +UniRef50_UPI0003B753D6 glutamyl tRNA amidotransferase 2.33925093268e-07 4.81914533953e-08 -74982949.6248 +UniRef50_I6TW73 Putative transcriptional regulator 8.13667244045e-05 8.40358355689e-06 -29456115318.6 +UniRef50_Q3HKF1 Transcriptional regulator, AraC family 1.6145544307e-05 2.32532838735e-06 -5579390759.9 +UniRef50_K7SJ58 Cof like hydrolase 2.57376810578e-06 0.000110258101865 43473486973.9 +UniRef50_U3U4T1 1.31718641598e-07 2.53051877882e-07 48983716.4141 +UniRef50_UPI00047935B6 cytochrome C oxidase 3.75058053632e-07 1.18017700935e-06 325036402.344 +UniRef50_UPI00045E9BEE hypothetical protein 1.51010198331e-06 4.34258095203e-07 -434331379.719 +UniRef50_X1UXC6 Marine sediment metagenome DNA, contig 5.94114739228e-08 4.16462256031e-07 144145782.243 +UniRef50_UPI0001BF6223 hypothetical protein SMAC_10415, partial 7.89868783907e-07 3.36444731406e-07 -183052854.133 +UniRef50_P05704 Methyl accepting chemotaxis protein III 3.5633590764e-05 1.52065099726e-05 -8246663183.96 +UniRef50_A0A013Y7Z1 His Kinase A domain protein 2.38626828392e-06 6.83471039618e-05 26629198793.6 +UniRef50_B8EMX2 Alpha,alpha trehalose phosphate synthase 8.42480781385e-05 8.61012552018e-06 -30535969654.1 +UniRef50_A8AQY2 Glycogen debranching enzyme 3.13527384277e-07 5.54389298125e-07 97238910.3285 +UniRef50_Q88NS8 Hydrolase, putative 1.76281644805e-06 1.96878046531e-06 83150201.2306 +UniRef50_B2TH59 7.48322539702e-07 2.17626178751e-07 -214248633.293 +UniRef50_Q7N3N2 ProP effector 3.58148557637e-05 8.16580961978e-06 -11162259220.2 +UniRef50_UPI00036B28F1 hypothetical protein 1.27872616119e-06 2.7120266627e-06 578641001.035 +UniRef50_Q9RX36 Penicillin binding protein 1 5.25258797111e-07 0.000342474652614 1.38049166475e+11 +UniRef50_F3U3S2 Serine threonine protein kinase 4.22230041635e-05 3.16411007811e-06 -15768554848.8 +UniRef50_Q0P9X7 Probable ABC transporter ATP binding protein PEB1C 1.53510308042e-05 2.26073373775e-05 2929460008.54 +UniRef50_UPI000363DE89 hypothetical protein 4.03606592508e-06 3.6439927948e-06 -158284733.972 +UniRef50_UPI00047A233F hypothetical protein 5.81258633147e-07 3.28293989457e-07 -102124930.883 +UniRef50_Q837R5 UPF0042 nucleotide binding protein EF_0766 5.14746982934e-05 8.33648927281e-05 12874462830.0 +UniRef50_K7S1A1 Membrane associated protein 1.60404811127e-06 4.42794777195e-05 17228594619.2 +UniRef50_UPI0002F99648 MFS transporter 5.29925797496e-08 8.55827313752e-08 13157044.1374 +UniRef50_Q9RVG7 FemA related protein 2.20752040266e-06 0.00021228711111 84811708734.9 +UniRef50_C6SQR5 3.41999350939e-05 1.71121230295e-05 -6898559421.43 +UniRef50_W5X8X9 30S ribosomal protein S2 2.1572894563e-07 1.70829856554e-06 602568671.447 +UniRef50_H4SSE2 Putative MFS family efflux protein 2.25848739051e-07 2.23581836828e-07 -915176.245444 +UniRef50_UPI0001AF2B76 hypothetical protein 9.23443831462e-08 6.08285203936e-08 -12723340.5364 +UniRef50_Q6FD60 9.3437125959e-07 4.74711118343e-05 18787453240.0 +UniRef50_UPI0003ABA7EF PREDICTED 8.59890718334e-07 1.07416870798e-06 86506653.9067 +UniRef50_UPI0003FBECCD flagellin 1.2604370674e-07 5.37014252303e-08 -29205466.7851 +UniRef50_R7PVE4 Glycosyltransferase GT2 family 2.70820645013e-05 9.24321479e-06 -7201762535.75 +UniRef50_A1WI30 Endoribonuclease L PSP 1.70936059991e-06 9.53615163247e-07 -305103706.82 +UniRef50_P46855 2.75224374224e-05 4.01405775434e-06 -9490621352.27 +UniRef50_P46854 2.19214000515e-05 6.35089688595e-06 -6286003199.51 +UniRef50_P46853 4.28164554385e-05 3.95698224055e-05 -1310705596.09 +UniRef50_B8DKX1 4Fe 4S ferredoxin iron sulfur binding domain protein 5.47375962807e-06 4.31561830731e-06 -467555863.183 +UniRef50_Q0C1N8 Macrolide export ATP binding permease protein MacB 2.21376173093e-08 2.54554451051e-07 93829527.8569 +UniRef50_Q9RS60 DNA modification methyltransferase related protein 1.4454168712e-06 0.000503735329407 2.02780601481e+11 +UniRef50_X2HAY5 SUN family protein 1.00752488128e-06 4.00374723183e-05 15756868731.6 +UniRef50_A8ESW7 Aspartate tRNA ligase 8.14968288292e-07 4.07133114359e-05 16107450736.4 +UniRef50_B2HZZ5 1.25410627529e-06 5.10458401914e-05 20101533995.2 +UniRef50_E7B4R3 Trap type C4 dicarboxylate transport system,large permease component 7.77087935318e-05 4.74065069405e-06 -29458134683.4 +UniRef50_O34319 1.37601211005e-06 3.93670200305e-05 15337436099.6 +UniRef50_Q8EUY3 Orotidine 5 phosphate decarboxylase 1.06615424111e-07 1.54805640986e-07 19454981.9129 +UniRef50_C0MHK2 Phosphoglycerate mutase family protein 0.000115743545876 3.7713592142e-05 -31501649857.6 +UniRef50_UPI00035C8FD2 hypothetical protein 4.92197646649e-08 1.21681034265e-07 29253503.7373 +UniRef50_UPI000328B62B PREDICTED 2.0173282605e-07 2.54648761325e-07 21362812.4221 +UniRef50_P76536 Probable deferrochelatase peroxidase YfeX 3.33416638731e-05 2.35903236722e-05 -3936735701.5 +UniRef50_Q97BK5 Nucleoside diphosphate kinase 2.81504836949e-07 3.75766775356e-07 38054701.259 +UniRef50_Q2UJU5 Mannose 1 phosphate guanyltransferase 9.84461536427e-08 7.66521394558e-08 -8798510.96988 +UniRef50_M2HJP8 6.95934136265e-05 1.8015002488e-05 -20822837514.9 +UniRef50_E8R1M1 2.44265059733e-07 3.81229987629e-07 55294422.1403 +UniRef50_A0A023YKE2 LemA family protein 2.26448279738e-07 1.02951584584e-07 -49857131.3085 +UniRef50_Q6HHL1 2.26573241326e-05 1.42036661101e-05 -3412845481.73 +UniRef50_B2II06 1.59348905292e-07 4.28487924601e-07 108654724.802 +UniRef50_N6V6H2 3.08351183352e-06 1.735505138e-06 -544206844.884 +UniRef50_A3PM06 RNA polymerase, sigma 24 subunit, ECF subfamily 0.000102226334813 2.00723177373e-05 -33166584836.6 +UniRef50_UPI00023B21D9 7.15054746349e-08 2.08923299366e-06 814581359.733 +UniRef50_UPI0004769BB2 hypothetical protein 1.00441420779e-06 2.05126701755e-07 -322682174.547 +UniRef50_D3FUC5 [Ni Fe] hydrogenase, large subunit 2.80410616358e-06 5.45173065257e-06 1068878496.21 +UniRef50_V9VZS0 5.00169377934e-06 1.68627845899e-06 -1338473849.55 +UniRef50_G8PG31 Ferric anguibactin binding protein 1.70370806914e-07 1.62704178984e-07 -3095111.77545 +UniRef50_C5B1E9 5.21456768009e-07 2.75908403208e-07 -99130888.0874 +UniRef50_UPI0003C186B8 PREDICTED 1.02776111547e-07 4.24145935179e-08 -24368685.5475 +UniRef50_UPI000255891A TonB dependent siderophore receptor 4.62854555117e-07 4.1016051802e-08 -170301380.329 +UniRef50_Q9K4U8 Nitric oxide reductase transcription regulator NorR2 2.99105009897e-08 1.29539098696e-07 40221287.4744 +UniRef50_Q9RYH2 Serine protease, subtilase family 8.4574904144e-07 0.000454124818458 1.82994322683e+11 +UniRef50_W9QZ02 F box like WD repeat containing protein 1.13155663193e-08 4.20467610281e-08 12406560.4181 +UniRef50_UPI0003C12BAB PREDICTED 9.07965576036e-08 8.92600083377e-07 323697922.59 +UniRef50_D3E2Y7 Poly gamma glutamate biosynthesis protein 3.04871459303e-05 1.63913064863e-06 -11646297774.2 +UniRef50_Q4L8D2 Cyclic pyranopterin monophosphate synthase 7.62540631274e-05 1.49539706111e-05 -24747599585.6 +UniRef50_A6M1L8 Putative cell wall binding repeat containing protein 6.22251968849e-06 1.8278829389e-05 4867280173.65 +UniRef50_UPI0003697AAB hypothetical protein 5.7114235397e-07 6.22075283093e-07 20562248.5043 +UniRef50_U5NMN3 0.000170444915299 2.17022691981e-05 -60049231508.5 +UniRef50_O26778 Exosome complex component Rrp42 3.23624141242e-05 2.25719774668e-06 -12153845284.1 +UniRef50_I6T2I9 Type 4 fimbrial biogenesis protein PilW 1.32306618415e-05 1.41295791279e-05 362903939.475 +UniRef50_F2AE29 1.96794277604e-05 6.05867311565e-06 -5498865795.56 +UniRef50_UPI00036B7282 hypothetical protein 8.89218531649e-09 6.56024477075e-08 22894628.8404 +UniRef50_A5WCX2 30S ribosomal protein S2 1.57285828689e-06 5.91025012365e-05 23225422826.9 +UniRef50_UPI0002377ACD calcium binding hemolysin protein 1.04799702387e-07 3.38662181974e-08 -28636718.0191 +UniRef50_Q8CPR8 Alcohol dehydrogenase 1.45936560009e-05 2.20477513343e-05 3009309758.13 +UniRef50_UPI0003A88A02 molecular chaperone Hsp33 1.82202718123e-07 2.38751615669e-07 22829483.8723 +UniRef50_Q4V2F4 3.0002725422e-07 2.7532756244e-07 -9971568.67089 +UniRef50_UPI0003B71C77 dihydrolipoamide dehydrogenase 3.156344649e-08 3.50913682242e-07 128925609.041 +UniRef50_S9S2N5 Transposase 1.10209404129e-06 5.34852280284e-07 -229002459.757 +UniRef50_M9VCM8 2 amino 3 ketobutyrate coenzyme A ligase 1.033264568e-06 4.92676877642e-05 19472828547.2 +UniRef50_B2ICH3 6,7 dimethyl 8 ribityllumazine synthase 1.69136773131e-07 1.5991001086e-07 -3724957.15391 +UniRef50_E3EYN7 Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC 9.09006346632e-05 2.28761020337e-05 -27462338577.4 +UniRef50_UPI00047B3379 hypothetical protein 2.50696880234e-07 4.78101163677e-08 -81907876.2733 +UniRef50_R6HE72 2.25140748821e-06 2.7347963805e-05 10131787754.5 +UniRef50_C5WEU2 Aminodeoxychorismate lyase family 5.90731015886e-05 1.19507734092e-05 -19023862142.0 +UniRef50_A1W8H0 Ribosomal RNA large subunit methyltransferase E 1.85884378042e-07 2.35304656643e-07 19951572.9262 +UniRef50_A0A009NBC4 5.52891319945e-07 4.32940504095e-06 1524624932.2 +UniRef50_T5E2V5 ThiC associated domain protein 2.83767197944e-07 8.00205248783e-07 208492378.531 +UniRef50_C7ZS16 Membrane protein 4.18141283125e-05 1.48157246071e-05 -10899586883.5 +UniRef50_A5UN23 Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE 3.24282049437e-05 1.50330185974e-05 -7022650190.94 +UniRef50_B0X4X0 6.93196604378e-08 1.55370600211e-07 34739820.3502 +UniRef50_UPI000479C781 hypothetical protein 1.56698517994e-07 7.2933346853e-07 231179756.552 +UniRef50_Q033R5 Fructosamine 3 kinase 0.00030538318404 8.40488775066e-05 -89355375624.7 +UniRef50_K0T107 5.29590301274e-07 8.39412795021e-07 125079142.675 +UniRef50_H3VZC8 8.87478403467e-05 5.15087276506e-06 -33749121662.8 +UniRef50_G2DQA0 Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase 1.24754625602e-06 4.89309030068e-05 19250356260.9 +UniRef50_E3CJI9 DNA ligase 7.55478665068e-05 2.44522764585e-05 -20627916715.9 +UniRef50_Q2YUD5 Membrane anchored Ser Asp rich fibrinogen binding protein 5.77887054116e-05 1.16652747034e-05 -18620594975.0 +UniRef50_UPI0003B7AB15 magnesium chelatase 1.41012549505e-07 1.33419077023e-06 481700689.652 +UniRef50_J0D169 6.0545117233e-08 8.37630268351e-07 313718811.413 +UniRef50_W8RQ15 Type IV secretion protein Rhs 3.47486809367e-06 2.5841069091e-06 -359611221.08 +UniRef50_W5WGU1 6.30677394866e-06 3.7037786916e-05 12406487046.8 +UniRef50_J9YS58 4.42215143228e-05 2.95773816031e-05 -5912016082.66 +UniRef50_P18775 Dimethyl sulfoxide reductase DmsA 2.10598937471e-05 8.02724450294e-06 -5261440428.47 +UniRef50_O27719 3.51147148896e-05 3.04911461639e-06 -12945276319.5 +UniRef50_Q4MQ56 3.51837842848e-06 6.80131471693e-06 1325361665.81 +UniRef50_UPI000379EBC4 hypothetical protein 3.11620229595e-07 1.98658488225e-07 -45604041.1875 +UniRef50_Q54Z26 Serine hydroxymethyltransferase 1 5.30607948274e-07 1.32265373628e-06 319758604.113 +UniRef50_Q9RJ16 Cobyrinic acid A,C diamide synthase 5.82417625057e-08 2.61579339181e-06 1032514977.44 +UniRef50_V9XXT7 1.25121145634e-06 9.1717389817e-06 3197614157.79 +UniRef50_T9IBZ3 Protein icc 1.53866571546e-06 2.39122838212e-06 344190010.651 +UniRef50_B9DIE1 MarR family regulatory protein 0.000133926798052 4.35356322155e-06 -52310304943.3 +UniRef50_Q8DZB5 Membrane protein, putative 5.30719837873e-06 3.03282243973e-06 -918193476.306 +UniRef50_P37837 Transaldolase 2.57630553125e-05 1.65758168455e-05 -3709000909.22 +UniRef50_A1TL16 9.81663276505e-07 1.18731633383e-05 4397032228.68 +UniRef50_Q9RTF6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 6.10475865724e-06 0.000501739544973 2.00093845359e+11 +UniRef50_UPI00021A5788 PREDICTED 1.51872319612e-07 4.89913529305e-07 136471384.585 +UniRef50_UPI0004692177 hypothetical protein 1.10348698633e-07 1.1486159662e-07 1821912.29684 +UniRef50_B2TPF4 Cobyrinic acid a,c diamide adenosyltransferase 2.1301041578e-05 1.3120439764e-05 -3302609339.58 +UniRef50_Q3J098 RhtB family transporter 0.000105711746592 1.58619998401e-05 -36273445344.1 +UniRef50_UPI0004113202 hypothetical protein 6.06304949379e-08 4.05428611373e-06 1612287780.97 +UniRef50_N4EZP0 FAD binding domain protein 4.17910734816e-05 4.21324643037e-06 -15170629912.4 +UniRef50_R9SH54 Oxidoreductase aldo keto reductase family 3.00334438134e-05 6.40983350009e-06 -9537141377.78 +UniRef50_P58991 Polyphosphate kinase 1 2.39656085362e-08 2.29690377311e-06 917613029.125 +UniRef50_UPI0003790149 hypothetical protein, partial 1.13849986966e-06 4.73061642873e-07 -268645577.999 +UniRef50_I1EEC9 7.36732126513e-09 5.2525319187e-08 18230837.912 +UniRef50_N9BDB1 2.55479678749e-07 6.87607483993e-07 174455297.781 +UniRef50_E6CCB2 4.78597595523e-07 5.1797088769e-06 1897896313.42 +UniRef50_A5UKL7 Predicted transcriptional regulator 1.76074857349e-05 1.22031696369e-06 -6615701126.11 +UniRef50_K9ZE84 1.87319166319e-06 4.3782624813e-07 -579474631.974 +UniRef50_UPI0001BF6909 hypothetical protein SMAC_10569, partial 3.00559933004e-08 2.97060291052e-08 -141284.840146 +UniRef50_Q2LQU2 Porphobilinogen deaminase 1.33147676378e-07 8.12304812327e-08 -20959608.7758 +UniRef50_A3PR63 Glyoxalase bleomycin resistance protein dioxygenase 5.77103534748e-05 1.13296871704e-05 -18724444141.9 +UniRef50_P07464 Galactoside O acetyltransferase 4.64807711369e-05 1.31964205227e-05 -13437300787.9 +UniRef50_R5UMD4 1.63756008612e-07 9.77521791956e-08 -26646555.8935 +UniRef50_UPI000371DE88 hypothetical protein 1.2015283944e-07 7.0178312545e-08 -20175329.7639 +UniRef50_UPI00021965CD 3 keto L gulonate 6 phosphate decarboxylase 2.54844520333e-07 4.20939699962e-07 67054662.2333 +UniRef50_Q1M6X3 1.44424149999e-06 5.43066362882e-07 -363815461.513 +UniRef50_UPI000225B96A conjugal transfer protein TraW 2.58207304041e-06 8.70345144229e-07 -691045556.951 +UniRef50_UPI00036AEC1C hypothetical protein 1.95649152685e-08 7.36908635977e-08 21851309.5406 +UniRef50_Q53222 2 vinyl bacteriochlorophyllide hydratase 0.000147498326847 4.06399135599e-06 -57906201374.9 +UniRef50_B5SDA9 Hemagglutinin related protein 2.18206417582e-09 6.56922672792e-09 1771151.35882 +UniRef50_UPI00037FDE39 histidinol phosphate aminotransferase, partial 1.52951537333e-07 1.66619200518e-07 5517803.34887 +UniRef50_UPI00047119F6 hypothetical protein, partial 4.21332458301e-06 8.59123338065e-07 -1354132203.26 +UniRef50_P45499 Cell division protein FtsZ 3.34031035322e-06 0.000101610578236 39672913056.1 +UniRef50_Q3A7A3 Cobyrinic acid A,C diamide synthase 1.1700405388e-07 4.1160707049e-06 1614472281.08 +UniRef50_A2RE15 Cell envelope related transcriptional attenuator domain protein 5.61918856303e-05 1.44889657695e-05 -16835980500.2 +UniRef50_UPI00037A3F8A hypothetical protein 6.5907662429e-08 2.72100577207e-07 83242609.9675 +UniRef50_R5A8C5 1.46107889251e-06 7.6780599671e-07 -279882775.45 +UniRef50_UPI0003B46C21 alcohol dehydrogenase 2.37494452879e-06 1.02903150932e-07 -917250985.325 +UniRef50_O32068 0.000123955048755 3.36562588311e-05 -36454729583.0 +UniRef50_Q02LX8 Adenylate cyclase ExoY 1.85042151398e-06 2.55685459043e-06 285195701.872 +UniRef50_H4F527 Na+ H+ antiporter MnhB subunit related protein 6.80010327006e-07 1.89452033056e-07 -198044403.095 +UniRef50_Q48662 Malolactic enzyme 5.61092101531e-05 2.08791204426e-05 -14222819537.9 +UniRef50_K2LWC9 4.27573799271e-07 1.45601143058e-07 -113835821.507 +UniRef50_I4SXS6 Choline transport protein BetT 1.22560859231e-05 3.53672700827e-06 -3520112192.48 +UniRef50_UPI00035D7CEB hypothetical protein 9.22314525125e-09 2.26169241915e-08 5407232.91831 +UniRef50_UPI0004713CDC methionine synthase, partial 1.41229752451e-07 9.23927996375e-07 315984885.86 +UniRef50_L0FJC9 Sodium 1.75006015661e-05 8.14238824702e-06 -3778025555.1 +UniRef50_UPI000362C162 hypothetical protein 3.21089500135e-06 2.67582292394e-07 -1188251459.12 +UniRef50_O26134 Protein translocase subunit SecY 1.87712737577e-05 6.62687738033e-06 -4902841846.06 +UniRef50_D3DZ14 ABC transporter ATP binding protein 2.79780477395e-05 1.40993158868e-05 -5603014360.13 +UniRef50_R9ZEH0 Ring hydroxylating dioxygenase subunit 5.94079514485e-06 4.90861889379e-06 -416702218.78 +UniRef50_I6S279 Flagellar hook associated protein FlgL 1.07143407317e-05 3.34845143421e-06 -2973699899.02 +UniRef50_UPI0004719539 hypothetical protein 4.20462934777e-08 2.92203904107e-08 -5177974.45968 +UniRef50_UPI0004779E49 quinone oxidoreductase 1.00768143419e-07 6.89046016435e-07 237494996.318 +UniRef50_A6UJ92 0.000159920560835 2.76490553281e-05 -53399629927.1 +UniRef50_Q8X800 D methionine transport system permease protein MetI 3.82312818186e-05 1.12408288806e-05 -10896377061.2 +UniRef50_F9YY95 2.41264145619e-06 4.43288701656e-05 16922095900.0 +UniRef50_UPI000252BB00 PREDICTED 1.64506806726e-07 1.3274986484e-07 -12820667.1409 +UniRef50_Q2YKR3 Adenine deaminase 5.72208066794e-05 1.52790838885e-05 -16932388173.5 +UniRef50_S8F394 1.23076400401e-08 2.81704741406e-08 6404020.78524 +UniRef50_P26899 Aspartate ammonia lyase 6.75772979986e-06 1.59342285875e-05 3704665168.87 +UniRef50_UPI000479F1A9 peptidase S1 and S6 chymotrypsin Hap 4.62201385411e-08 3.43204678563e-07 119896303.217 +UniRef50_G7MCG2 7TM receptor with intracellular metal dependent phosphohydrolase 3.40611285754e-06 5.35336256847e-06 786128603.743 +UniRef50_UPI0003B66F39 DNA gyrase subunit A 2.06424301116e-08 3.53656793769e-08 5943956.40299 +UniRef50_UPI0002EC0588 hypothetical protein 1.78121241201e-08 4.22113064167e-08 9850249.30477 +UniRef50_T2ERE8 Zinc binding dehydrogenase family protein 7.19664581671e-06 4.91015202922e-06 -923085600.444 +UniRef50_E7BGF6 6.12563604033e-08 4.6068281598e-07 161253361.63 +UniRef50_UPI00034FCB25 PREDICTED 1.22663424055e-06 3.35909124416e-07 -359596659.81 +UniRef50_UPI00036E0F49 hypothetical protein 4.29316048369e-08 9.48551141668e-08 20962157.8896 +UniRef50_UPI00042B506F Translation initiation factor 3 family protein, putative isoform 1 6.62549461791e-08 1.65244132582e-07 39963149.2848 +UniRef50_UPI0003EB658E hypothetical protein 8.23250858574e-08 2.71011056132e-07 76174841.6372 +UniRef50_X0TKS1 Marine sediment metagenome DNA, contig 2.42855635616e-07 4.83692113125e-07 97228641.3663 +UniRef50_Q9KP38 Probable aromatic acid decarboxylase 5.62598240481e-07 9.44809975973e-07 154303567.884 +UniRef50_K9DMW3 3.10742435378e-07 1.21846747513e-07 -76259507.2019 +UniRef50_P67586 Tryptophan tRNA ligase 9.18688837973e-05 5.66246187334e-06 -34802590402.5 +UniRef50_A0AK10 CCA adding enzyme 1.52165488179e-07 1.72677118275e-05 6909756088.55 +UniRef50_O83796 1 deoxy D xylulose 5 phosphate synthase 2.29782747183e-08 1.51587334786e-06 602700060.909 +UniRef50_B2TPF9 Precorrin 6x reductase 2.99592054644e-06 1.36898659386e-05 4317276984.3 +UniRef50_A0A011N6I9 1.51918001834e-09 4.01161738419e-09 1006227.55024 +UniRef50_P23485 Protein FecR 4.83654908614e-05 6.12226884417e-06 -17054107111.0 +UniRef50_Q839D4 Energy coupling factor transporter ATP binding protein EcfA2 5.09868159505e-08 1.71026528269e-05 6883966816.07 +UniRef50_A8I2E1 Ribonuclease R 3.30884834172e-05 9.96243787342e-06 -9336268374.52 +UniRef50_C7QFW5 Nucleic acid binding OB fold tRNA helicase type 7.45038135845e-07 6.41402011208e-05 25593405243.2 +UniRef50_Q1JBS9 Short chain dehydrogenase 4.38029932662e-05 0.00014920154065 42550686964.5 +UniRef50_G0DT71 1.13814871007e-06 5.9984507223e-05 23756997057.7 +UniRef50_Q8U5S6 ABC transporter, membrane spanning protein 0.000169268753561 5.3760734939e-05 -46632004560.5 +UniRef50_A0AKE9 UPF0348 protein lwe2063 2.67265019322e-07 9.18633020216e-06 3600736063.55 +UniRef50_O08437 FKBP type peptidyl prolyl cis trans isomerase FkpA 6.17831122416e-08 1.35240788541e-07 29655765.3491 +UniRef50_UPI00034BD3ED hypothetical protein 1.24081759212e-07 3.10949114955e-05 12503304019.4 +UniRef50_B0SXA7 Acetyl CoA carboxylase, biotin carboxyl carrier protein 7.85653419287e-06 3.61612292071e-06 -1711906066.27 +UniRef50_C9U024 Replication initiation protein RepC 6.93384818212e-07 2.5306105349e-07 -177764107.198 +UniRef50_T2GFI0 Putative anti sigma regulatory factor 1.86958375698e-07 9.46909395129e-06 3747312036.48 +UniRef50_UPI00030A24CF hypothetical protein 1.01600470694e-07 2.16523365891e-06 833114041.711 +UniRef50_A0A024PW13 6.58240640477e-06 5.562001892e-05 19797085931.6 +UniRef50_J0USZ4 ABC transporter permease protein 2.48782464005e-07 5.93865535669e-07 139314270.676 +UniRef50_Q5WKY5 6 phospho 5 dehydro 2 deoxy D gluconate aldolase 1.58775035275e-07 2.40454216882e-07 32974887.931 +UniRef50_Q82WT5 Sulfate thiosulfate import ATP binding protein CysA 1.28625228738e-06 6.93231697643e-05 27467338492.3 +UniRef50_P77031 Inner membrane protein YqcE 1.70148971795e-05 5.10394988325e-06 -4808595587.24 +UniRef50_U6JNN9 9.72836141953e-07 8.17941718665e-07 -62532779.4497 +UniRef50_UPI00047CF42A aldo keto reductase 8.03032126173e-08 5.96560617539e-07 208419449.558 +UniRef50_UPI0003608BB9 hypothetical protein 5.24213951303e-08 5.34062704177e-08 397606.239302 +UniRef50_Q9CL63 Ribose import ATP binding protein RbsA 2 4.6283280377e-07 5.31932586317e-07 27896430.1639 +UniRef50_P23886 ATP binding permease protein CydC 2.50865488251e-05 4.83041824818e-06 -8177648484.57 +UniRef50_F0YQI4 3.25214207009e-06 1.83319522719e-05 6087904428.55 +UniRef50_Q3KFI9 Methylthioribulose 1 phosphate dehydratase 5.62887990554e-06 6.02730735611e-06 160850051.05 +UniRef50_L8A867 Glycerol dehydrogenase 1.07853139674e-06 5.34689303488e-06 1723189972.0 +UniRef50_M1IWL8 4.38653516404e-05 4.52015365101e-06 -15884139248.2 +UniRef50_V7ZHE5 Potassium transporting ATPase A chain 1.85837285921e-06 5.26789577783e-05 20516893770.5 +UniRef50_C1CAY3 Transposase protein B 6.20231587339e-07 4.52339138902e-07 -67780241.706 +UniRef50_UPI0002DC9866 hypothetical protein 1.30826781236e-07 2.20847933335e-07 36342643.7861 +UniRef50_Q09AD1 6.8364900086e-07 3.4696640663e-07 -135922894.851 +UniRef50_UPI00031EE013 hypothetical protein 3.86313915974e-07 5.78540911886e-08 -132603261.921 +UniRef50_UPI0003F0CAAC PREDICTED 2.40743436396e-08 1.82455789359e-07 63940533.1957 +UniRef50_UPI0003B6428F prolipoprotein diacylglyceryl transferase 2.66348963769e-07 7.40145033012e-08 -77647781.9002 +UniRef50_P59952 Methionine tRNA ligase 5.7947118686e-08 1.91434482877e-07 53890486.9981 +UniRef50_P16256 Sodium pantothenate symporter 1.49268364943e-05 2.32568396625e-05 3362924499.64 +UniRef50_V9TIA6 FAD linked oxidoreductase 5.40846487693e-06 1.41525577565e-06 -1612107516.37 +UniRef50_Q1GE40 1.03418820932e-06 3.78457387961e-07 -264726579.305 +UniRef50_Q1GE41 1.33876601203e-06 4.05184742565e-07 -376898214.813 +UniRef50_UPI00029A1476 large conductance mechanosensitive channel protein MscL 3.02968559292e-06 8.70364239287e-07 -871744528.313 +UniRef50_Q28UC9 ATP synthase F0 subunit I 3.99963057228e-07 7.53271278961e-07 142634864.693 +UniRef50_Q2FK78 N acetyl gamma glutamyl phosphate reductase 0.000123017086062 4.73288708206e-05 -30556261291.8 +UniRef50_A3UCX1 3.21156217719e-07 5.15375710997e-08 -108848356.233 +UniRef50_Q57714 Pyruvate synthase subunit PorB 2.61614267694e-05 2.3688505764e-06 -9605354976.86 +UniRef50_B1LDG8 0.000151668477663 1.77190023117e-05 -54077046944.1 +UniRef50_UPI00041FFD36 hypothetical protein 1.38953488655e-06 1.12396107969e-05 3976596519.03 +UniRef50_D3DZ23 GMC oxidoreductase family protein 2.83513583057e-05 5.06879780025e-06 -9399455385.18 +UniRef50_P31806 Bifunctional NADH hydrate repair enzyme Nnr 3.49387460562e-05 1.51515902239e-05 -7988317625.21 +UniRef50_W8KGC4 Flagellar biosynthesis protein FlhB 4.11009779397e-06 2.04135971329e-06 -835174949.442 +UniRef50_F8LHA2 Acetyltransferase, including N acetylase of ribosomal protein 5.30495328908e-06 5.59613457528e-06 117553458.435 +UniRef50_A1B2J7 1.7627622719e-05 1.60826934277e-05 -623706913.312 +UniRef50_I7ZAU8 7.05686831409e-07 6.64167214818e-07 -16761978.7208 +UniRef50_F9YXK8 1.90649489319e-06 1.3119871208e-05 4526977621.89 +UniRef50_UPI0002377E10 FAD dependent oxidoreductase, partial 1.13758206593e-07 1.47236602542e-07 13515639.2707 +UniRef50_R6BDT2 9.43433287974e-06 2.32425162529e-05 5574533073.23 +UniRef50_A9N4N9 2.63348335306e-06 2.15708090639e-06 -192329513.836 +UniRef50_C3KDN7 Ferrochelatase 5.69083175843e-06 1.89710945528e-06 -1531572247.99 +UniRef50_UPI00041EEA6A hypothetical protein 3.51542205647e-07 9.27948146877e-07 232702151.771 +UniRef50_UPI0002F4135C hypothetical protein 7.66941211709e-08 2.22294511089e-07 58780664.1276 +UniRef50_B9KWR6 ABC sugar transporter, periplasmic lignad binding protein 5.62456176975e-05 9.61188052067e-06 -18826611958.6 +UniRef50_UPI000200107B putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 2.08668255253e-07 5.95367829764e-08 -60206205.4072 +UniRef50_F2QGL0 Competence protein 1.69923786482e-06 1.03424912004e-05 3489387436.22 +UniRef50_Q1D8I9 Triosephosphate isomerase 7.05086242439e-06 3.12883228154e-05 9784960186.93 +UniRef50_E2Q677 Transcriptional regulator 1.7574079134e-07 2.56652457115e-08 -60587339.4041 +UniRef50_P18256 Threonine tRNA ligase 2 8.81188665171e-08 8.72380200171e-08 -355608.541252 +UniRef50_UPI0003B50469 MULTISPECIES 5.35970811351e-07 6.39088190285e-06 2363699455.48 +UniRef50_P39187 2.63109519152e-05 6.56766108858e-06 -7970608784.12 +UniRef50_G4LES1 AsmA family protein 4.64053046482e-07 5.3554876288e-07 28863698.061 +UniRef50_A4WX29 NH dependent NAD(+) synthetase 2.7661491707e-05 2.47867042243e-05 -1160586984.38 +UniRef50_Q46906 1.55107167279e-05 3.16410755563e-06 -4984477632.79 +UniRef50_UPI00034690F7 hypothetical protein 3.87141437211e-08 1.7480214073e-07 54940394.3801 +UniRef50_Q60759 Glutaryl CoA dehydrogenase, mitochondrial 1.22127935186e-05 0.000222356432992 84837566007.7 +UniRef50_B6TP29 9.55660731271e-06 4.5942225497e-07 -3672645242.82 +UniRef50_E8SI80 Disulfide bond regulator 7.44334668654e-05 5.19267137046e-05 -9086252439.93 +UniRef50_I4E0I3 Arabinose efflux permease homolog 3.9646496868e-05 8.41015482165e-06 -12610494597.2 +UniRef50_UPI0004758598 hypothetical protein 1.03322863703e-06 1.2014684595e-06 67920480.8659 +UniRef50_S9QAC1 Mobile element protein 1.75690414174e-07 1.29538176776e-07 -18632224.5892 +UniRef50_UPI00036AF80F hypothetical protein 3.3492886665e-07 2.43792539112e-07 -36792853.7956 +UniRef50_UPI00036D58A4 hypothetical protein 1.71947717262e-07 1.53584672502e-06 550622766.356 +UniRef50_Q3JVF3 1.33507487321e-06 4.53350341598e-06 1291244851.85 +UniRef50_C8PGN6 NLPA lipoprotein 9.3853897817e-07 8.98200582303e-07 -16285105.4193 +UniRef50_Q6FFC1 Lipid II flippase FtsW 9.48457258396e-07 7.42819281348e-05 29605622095.7 +UniRef50_D9VLM5 Predicted protein 2.72881676196e-08 2.33759924953e-06 932700934.472 +UniRef50_UPI0003B4E250 phosphohydrolase 5.05283365151e-07 4.46014519245e-06 1596626251.29 +UniRef50_P56431 Thioredoxin reductase 2.93352938116e-06 2.97950758623e-05 10844335942.7 +UniRef50_V4R4P9 Amino acid ABC transporter substrate binding protein 5.28592450262e-06 3.11954266055e-06 -874594934.138 +UniRef50_Q5L0Z2 UPF0348 protein GK1103 5.33717073118e-08 6.03177239407e-06 2413553720.47 +UniRef50_V9W180 Transposase 2.08172420321e-06 0.00028190081614 1.12966401181e+11 +UniRef50_UPI000476CA5A hypothetical protein 1.08159826629e-06 2.11898835158e-07 -351108332.76 +UniRef50_Q47129 Transcriptional activator FeaR 5.7719588533e-05 4.31006693396e-06 -21562079278.0 +UniRef50_B0VAR2 3.10262456591e-06 8.24925253297e-05 32050677162.0 +UniRef50_UPI0003C12F22 PREDICTED 1.00212523302e-07 1.38971306711e-07 15647396.486 +UniRef50_K9AD18 Putative relaxase 1.65116274744e-06 2.45830705802e-07 -567349790.573 +UniRef50_F0P9I7 Conserved integral membrane protein, putative 0.000214175323826 5.53038332947e-05 -64138370299.8 +UniRef50_UPI00035F08CC hypothetical protein 7.11423311508e-08 6.12048326664e-08 -4011890.08497 +UniRef50_UPI0004692399 spermidine putrescine ABC transporter ATPase 4.65941328524e-07 2.25009538529e-07 -97267120.1865 +UniRef50_A5FZW4 50S ribosomal protein L4 0.000161045284736 8.61087213001e-06 -61539642949.6 +UniRef50_C5CJ75 Glycogen synthase 4.85630786845e-05 4.85998855931e-06 -17643473780.8 +UniRef50_UPI0003600771 hypothetical protein 1.40228097457e-07 9.96411839586e-08 -16385435.0367 +UniRef50_V4R4P8 Phosphoribosylformylglycinamidine cyclo ligase 1.33702129055e-06 2.14104543468e-06 324594413.471 +UniRef50_U6R7W5 4.98625704559e-08 8.04118694745e-07 304502453.139 +UniRef50_E8U4E2 8.23413949508e-07 0.000709306429242 2.86023287338e+11 +UniRef50_H9KEJ9 2.12844644722e-08 2.21847098839e-08 363440.119957 +UniRef50_L1BUX8 2.08156706662e-07 5.13217935299e-06 1987888366.88 +UniRef50_Q8SDJ9 Amidase 0.000185940463825 4.85060747131e-05 -55483949394.1 +UniRef50_A8ARE5 2.60040996763e-06 3.45971725452e-07 -910144383.436 +UniRef50_P0AFV6 Murein DD endopeptidase MepS Murein LD carboxypeptidase 2.45758881366e-05 2.90730719629e-05 1815568297.33 +UniRef50_M9RIA5 0.000286609732276 1.75862905252e-05 -1.08608064724e+11 +UniRef50_F8ETX3 ParB like partition protein 5.08878308153e-05 1.94378626674e-05 -12696738075.8 +UniRef50_I0P9H0 Cellobiose phosphorylase 5.59718780152e-07 1.75678653173e-07 -155041711.964 +UniRef50_UPI000380D689 hypothetical protein 7.53590808564e-08 1.8465251277e-07 44123099.6449 +UniRef50_UPI000362D231 hypothetical protein 1.84505432559e-07 9.22579209264e-08 -37241452.4503 +UniRef50_Q50245 ORF492 1.81400632233e-07 5.57851705111e-08 -50712503.3722 +UniRef50_UPI00037B94E6 hypothetical protein 5.80896567536e-08 2.37692786564e-07 72507987.4825 +UniRef50_UPI0003B6AEBD ATPase AAA 4.28792879967e-08 3.89942195503e-08 -1568449.80696 +UniRef50_A3VC61 5.75193348679e-06 1.48939998204e-06 -1720837083.04 +UniRef50_UPI0004785D9F hypothetical protein 2.11763211688e-07 3.06866241995e-06 1153365268.47 +UniRef50_A4WUP0 30S ribosomal protein S4 0.000223286660813 7.66989852299e-05 -59179243465.9 +UniRef50_L9IWH1 CarD like TRCF domain protein 1.97320793986e-05 6.68998565575e-06 -5265253288.46 +UniRef50_A1APL2 Carbonic anhydrase 2.10305619399e-05 2.55540773338e-05 1826198674.29 +UniRef50_UPI00036630BD hypothetical protein, partial 2.18362737097e-07 8.0044626609e-06 3143344085.43 +UniRef50_A3K318 Flagellar protein FlaF, putative 1.10318707228e-06 2.15945770765e-06 426429417.397 +UniRef50_B9KP57 1.67077292697e-05 1.23961789519e-05 -1740625771.97 +UniRef50_G9RRJ9 2.70857963504e-07 1.92731318228e-07 -31540685.4197 +UniRef50_V5SXS6 Multidrug transporter 9.24099335345e-06 6.80228272872e-06 -984537405.548 +UniRef50_L1K935 7.17974040016e-06 7.82531669559e-06 260627072.577 +UniRef50_K4TPI5 LysE family efflux protein 7.23683791117e-06 8.24584446383e-06 407348327.212 +UniRef50_UPI0003B59697 transketolase 2.31652842518e-07 1.12423272131e-07 -48134440.6766 +UniRef50_UPI000376937D hypothetical protein 8.54503017963e-08 1.87584368174e-07 41232775.9227 +UniRef50_UPI0004561BB0 hypothetical protein PFL1_05640 1.86796112704e-08 7.45079128412e-08 22538570.4344 +UniRef50_Q7VHW3 Dihydroxy acid dehydratase 7.02203490247e-07 9.78701946437e-07 111625819.782 +UniRef50_X5DHG9 Membrane protein 5.82886316341e-07 2.70248089712e-07 -126215888.593 +UniRef50_M9R6L8 1.22880219295e-05 2.44063392719e-06 -3975511377.57 +UniRef50_O27115 Succinyl CoA ligase [ADP forming] subunit beta 2.55977515612e-05 3.26764381874e-07 -10202207634.2 +UniRef50_Q0FGA1 ArsC family protein 3.36816800802e-07 6.32920284748e-07 119540610.067 +UniRef50_M0LR14 1.56671892774e-08 1.26040490372e-07 44559056.0848 +UniRef50_Q2G6B7 9.04922605423e-07 1.96758324388e-07 -285894610.407 +UniRef50_G7ZM83 LysR family regulatory protein 0.000100596731468 1.32789202267e-05 -35251271908.2 +UniRef50_UPI0003737615 hypothetical protein 4.88062952016e-08 2.68209586006e-08 -8875750.17624 +UniRef50_UPI000225B453 superfamily II DNA RNA helicase 2.10154509848e-07 4.25262794549e-07 86841854.2093 +UniRef50_R0DQJ6 9.81542836656e-08 8.84457661741e-08 -3919447.64823 +UniRef50_Q2G6B8 2.60032384171e-06 7.36737421688e-07 -752352706.539 +UniRef50_UPI000470B11D hypothetical protein, partial 9.05990986426e-07 1.19472416867e-06 116565128.826 +UniRef50_U5UEE2 Putative transposase 7.94579813612e-06 4.25549426858e-06 -1489820956.45 +UniRef50_D5APM3 Response regulator receiver protein 5.73606833002e-05 1.52859377045e-05 -16986091112.2 +UniRef50_Q89LH6 UPF0271 protein blr4568 3.34743294007e-05 1.78581042589e-05 -6304461722.38 +UniRef50_UPI00035D3C47 MULTISPECIES 3.76546728857e-07 4.12827848174e-06 1514620147.56 +UniRef50_UPI000470BC53 4 alpha glucanotransferase, partial 1.17772791602e-07 5.13795743814e-06 2026710146.4 +UniRef50_UPI000255652B arginyl tRNA synthetase 2.48446608002e-08 5.20173887474e-08 10969963.7192 +UniRef50_G7M9U0 Flagellar hook length control protein 4.77484479373e-06 1.75016469241e-05 5137966195.47 +UniRef50_Q7NNG3 Phosphate import ATP binding protein PstB 2 2.84611287239e-05 3.74294022347e-06 -9979036023.89 +UniRef50_T0UHU4 4 carboxymuconolactone decarboxylase 3.62610164857e-05 9.45013456618e-06 -10823882037.4 +UniRef50_D3LR53 1.53190505464e-06 2.1067185738e-06 232059271.44 +UniRef50_F8DFL1 DHHA1 domain protein 2.69332731969e-06 2.66160559166e-05 9657899099.46 +UniRef50_A6M0Z6 4.29176598265e-06 1.30610906882e-05 3540283995.35 +UniRef50_Q9RY66 GTPase Obg 4.87021664979e-06 0.000483118291317 1.93074616507e+11 +UniRef50_D4HCN2 3.72519067945e-06 1.80833181262e-05 5796552244.27 +UniRef50_UPI000367C16B MULTISPECIES 3.13205186056e-07 3.91998659723e-07 31809892.224 +UniRef50_A0A058ZKH3 HupH hydrogenase expression protein 2.10498323396e-06 9.15873718623e-07 -480058103.357 +UniRef50_E6JKQ2 2.78306881583e-05 7.70391404865e-06 -8125425691.34 +UniRef50_S5MQR6 3.35196496251e-07 5.68746720068e-07 94287091.3385 +UniRef50_Q6A9F2 2.84117166548e-06 5.44885458829e-05 20850678756.1 +UniRef50_UPI00035E22E6 hypothetical protein 1.03103298132e-08 1.62102524768e-08 2381871.17949 +UniRef50_O07319 Transcriptional regulator MraZ 0.00011630499547 2.42971734755e-05 -37144686802.1 +UniRef50_B9KXA3 2 dehydro 3 deoxyphosphooctonate aldolase 6.80399872152e-05 4.36429290281e-06 -25706659182.6 +UniRef50_F0KLN9 Alkanesulfonate monooxygenase 4.98067367165e-06 7.47921768352e-05 28183760510.6 +UniRef50_Q9X6A2 1.57310789199e-05 3.7755569733e-06 -4826590920.59 +UniRef50_UPI00047341A0 3 isopropylmalate dehydrogenase, partial 1.70827308988e-07 4.28890039641e-07 104183091.15 +UniRef50_A5CW53 UDP N acetylmuramate L alanine ligase 3.93384244249e-08 6.08193954618e-08 8672131.60875 +UniRef50_Q9ZN31 ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT 1.04080915098e-06 4.77422529246e-05 18853945942.6 +UniRef50_Q92UW6 Probable sulfoacetaldehyde acetyltransferase 3.5996341033e-05 1.23617120207e-05 -9541589761.78 +UniRef50_UPI00047B8BC4 hypothetical protein 1.48984379325e-07 1.28767861933e-07 -8161656.15572 +UniRef50_Q5HLP5 0.000243081285757 8.9040212621e-06 -94540235354.8 +UniRef50_W1MLM9 5.76377878717e-07 1.85932252757e-06 517940498.242 +UniRef50_UPI0002651735 6.29648843361e-08 9.61603403342e-07 362791397.657 +UniRef50_P0ACM1 Pyruvate dehydrogenase complex repressor 2.76770458698e-05 9.96507867737e-06 -7150538505.85 +UniRef50_R6M784 9.70700149224e-07 6.12839599899e-07 -144472695.205 +UniRef50_C3DTJ7 Carbon starvation protein A 2.36560785725e-06 0.000111471603305 44047429243.5 +UniRef50_Q3KFU0 3.07103943511e-07 2.62924668182e-07 -17835715.591 +UniRef50_Q3J1W1 Chemotaxis histidine protein kinase, CheA4 2.9177334441e-06 3.14237246508e-06 90689529.4004 +UniRef50_UPI00036536A6 hypothetical protein 3.62750760237e-07 5.10358019115e-08 -125843153.848 +UniRef50_UPI0004672B34 molecular chaperone 3.84233683506e-06 1.21421235011e-06 -1061006105.29 +UniRef50_F9NYD0 Cobalt transport protein 2.05155428724e-06 9.26790208234e-05 36587420364.7 +UniRef50_Q3JP97 3.06003056662e-07 2.27326996034e-07 -31762491.1394 +UniRef50_A7MKS2 2.20341252157e-06 2.92718630493e-07 -771370570.68 +UniRef50_V9VW16 Short chain dehydrogenase 2.10200881844e-05 1.14123418586e-05 -3878765092.03 +UniRef50_UPI0004792999 hypothetical protein 7.91885140831e-08 2.11191922662e-06 820638333.063 +UniRef50_Q7N3Z6 D amino acid dehydrogenase small subunit 2.66758935861e-07 2.5544815252e-07 -4566302.03368 +UniRef50_P0A1I8 Flagellar basal body rod protein FlgC 7.29981178358e-05 5.58959063463e-06 -27213649626.8 +UniRef50_Q166G1 Oligopeptide ABC transporter, permease protein, putative 3.35162883982e-06 4.34289272355e-06 400185394.038 +UniRef50_B9KSM2 Alcohol dehydrogenase GroES domain protein 3.81265161128e-05 4.63339605172e-06 -13521583575.5 +UniRef50_Q8CQN2 0.000122954271695 1.57026861228e-05 -43298781220.4 +UniRef50_UPI0003FD0CB4 ribonucleotide diphosphate reductase subunit alpha 5.1041979337e-08 2.84045098594e-07 94066218.5139 +UniRef50_I1ZLL6 Glutamine amidotransferase 3.29992149264e-05 1.13718275107e-05 -8731241697.61 +UniRef50_C5WGZ9 1.95423301531e-06 1.28136437524e-06 -271645327.023 +UniRef50_A0A016ULG1 1.0334150104e-07 1.02480028067e-07 -347787.210662 +UniRef50_A0A023RVX8 Protein TniQ 7.54492273666e-06 0.000250971120869 98274143361.3 +UniRef50_A0NZT5 1.64870192273e-06 3.54631234886e-07 -522432216.714 +UniRef50_A0A017HEA9 Transport protein 4.58034513117e-07 6.34801634195e-08 -159286432.699 +UniRef50_P44595 S adenosylmethionine 2.20367576955e-05 8.21909583901e-05 24284988995.5 +UniRef50_E3EXK7 Peptidase, M48 family, putative 9.04542431408e-05 4.42658819906e-05 -18646808191.3 +UniRef50_P65742 Phosphate acyltransferase 0.000198432634069 0.000101572824026 -39103493917.9 +UniRef50_G0DTI5 Iron chelate uptake ABC transporter, FeCT family, permease protein 9.97700502833e-06 3.67843500875e-05 10822454163.5 +UniRef50_P0ACL7 Putative L lactate dehydrogenase operon regulatory protein 2.57106029993e-05 3.91159728505e-05 5411912311.32 +UniRef50_UPI00047E9930 ABC transporter permease 1.49820153733e-06 5.85388505556e-07 -368513822.403 +UniRef50_UPI0002D53BE1 hypothetical protein 3.55164984885e-07 1.25481695144e-06 363200538.869 +UniRef50_A5UKI1 1.12241721228e-05 4.99126825692e-06 -2516299776.99 +UniRef50_UPI000380963E hypothetical protein 2.69994222525e-07 1.75395288762e-07 -38190750.4196 +UniRef50_C1DH36 1.34930295167e-06 1.84335031093e-06 199452981.576 +UniRef50_A0A010D0D1 Ribonuclease R 4.05239932148e-06 5.90488475736e-05 22202741041.7 +UniRef50_UPI0002630D1B hypothetical protein 1.31392680446e-07 1.07984511547e-06 382901886.839 +UniRef50_UPI00035EED6C hypothetical protein 9.26224322665e-07 7.49295799483e-07 -71428215.9657 +UniRef50_E6YJ75 8.1286825971e-08 1.01445041805e-05 4062644335.58 +UniRef50_UPI000315AE23 hypothetical protein 2.78627140287e-06 8.02381318748e-07 -800920772.028 +UniRef50_A6LR92 AMP dependent synthetase and ligase 8.41976183323e-07 1.33383467156e-05 5044938131.6 +UniRef50_Q4L3C7 Transcription activator of glutamate synthase operon 0.000181089007795 4.69507687983e-05 -54153253144.4 +UniRef50_O05267 NADH dehydrogenase like protein YumB 0.000108935172027 3.84170912194e-05 -28469014576.2 +UniRef50_UPI0003AEB97B PREDICTED 1.67041915013e-07 3.45399655201e-06 1326983922.43 +UniRef50_P0ABU3 Ribosome binding ATPase YchF 4.03226623261e-05 0.00051238621047 1.90577847257e+11 +UniRef50_Q59829 Putative cystathionine gamma lyase 2.20070183609e-07 3.11388734628e-07 36866419.651 +UniRef50_E6PJS8 7.60253689221e-07 1.17472433191e-06 167326884.58 +UniRef50_T2GDK5 2.30137774795e-07 6.51203412961e-08 -66619562.8952 +UniRef50_UPI00036891D5 hypothetical protein 2.17302023173e-07 6.07627279662e-08 -63196834.4282 +UniRef50_Q2GKK2 Ribosomal RNA large subunit methyltransferase E 9.39633076161e-07 4.26220018819e-07 -207271151.536 +UniRef50_P72622 Peptide methionine sulfoxide reductase MsrA 1 8.82127461275e-07 9.02387653957e-07 8179288.40625 +UniRef50_UPI0003F87E98 hypothetical protein 6.48121695892e-09 1.48504368275e-07 57336489.0063 +UniRef50_UPI0003AA29AA flagellar basal body P ring protein 2.97679158004e-07 1.7232214983e-07 -50608162.5033 +UniRef50_G8SD75 2.87613702974e-08 8.22785508283e-08 21605542.51 +UniRef50_UPI00046737F8 hypothetical protein 2.6625117591e-07 2.925875198e-07 10632305.2117 +UniRef50_V4NZE7 2.97816355649e-06 1.07483552135e-06 -768396884.247 +UniRef50_UPI000469A681 hypothetical protein 1.42772106637e-07 5.80756907016e-07 176819838.591 +UniRef50_UPI00029A7A9B 30S ribosomal protein S17 1.82272082306e-07 2.03679016919e-06 748691709.17 +UniRef50_UPI0003608DE6 hypothetical protein 1.09147639092e-06 9.34767852255e-08 -402904687.651 +UniRef50_K2I8R3 3.28297044332e-07 1.89365796444e-07 -56088249.6505 +UniRef50_A6UWL8 N acetyl gamma glutamyl phosphate reductase 3.18066399445e-05 2.92444432406e-06 -11660096796.4 +UniRef50_UPI0003EC17DE PREDICTED 1.57166635462e-07 4.0899559249e-07 101666440.241 +UniRef50_D3EJM2 Peptidyl prolyl cis trans isomerase 5.41845917011e-06 1.30467347959e-05 3079628479.6 +UniRef50_M4ZCL2 DNA polymerase III subunit delta 4.24997687245e-05 1.91617420191e-05 -9421847770.76 +UniRef50_Q1REU7 2.72607979711e-06 1.27200303739e-06 -587028631.427 +UniRef50_UPI000444942A GIDA domain containing protein 9.28899600597e-08 9.21096842847e-08 -315006.905428 +UniRef50_N1MZ98 8.2577830148e-07 5.68391109791e-07 -103910367.781 +UniRef50_Q9RYF7 Cation transporter, putative 1.08058966276e-06 0.000542342682921 2.18514149081e+11 +UniRef50_A5ULI1 1.72036473231e-05 2.93105347974e-05 4887699041.59 +UniRef50_B8GZV6 Prolipoprotein diacylglyceryl transferase 1.23644673244e-06 8.70299119297e-08 -464033675.37 +UniRef50_Q9RV78 3 hydroxybutyryl CoA dehydratase 2.68992391105e-06 0.000177578846902 70604804339.9 +UniRef50_A3PPE9 5.96690696791e-05 8.7054853906e-06 -20574624370.8 +UniRef50_U1J219 2.87447238108e-07 4.90123661611e-07 81822959.2876 +UniRef50_UPI00047A7925 nitrate reductase 2.5192530971e-07 9.30408375773e-07 273911939.693 +UniRef50_D8JNU4 Patatin like phospholipase family protein 1.36770285816e-06 7.59635910017e-05 30115275438.0 +UniRef50_B9KX78 9.1851766883e-06 3.79293370738e-06 -2176914661.66 +UniRef50_D3SQB6 Urea ABC transporter, urea binding protein 1.28688405295e-06 0.000618487860277 2.49171608009e+11 +UniRef50_B9KX77 1.09867249485e-05 2.82515018784e-06 -3294927884.66 +UniRef50_UPI000360A512 single stranded DNA binding protein, partial 2.07733649357e-07 4.76190512958e-06 1838574912.53 +UniRef50_A8Z136 7.72150459114e-05 4.33666362347e-05 -13665018353.2 +UniRef50_R7CC37 2.56217476247e-07 2.29716559246e-07 -10698745.3961 +UniRef50_Q9HYQ2 7.67475317639e-06 7.37121468519e-06 -122542213.734 +UniRef50_J5K8F9 Phosphate starvation inducible E 5.72100298805e-07 3.74015636479e-07 -79969208.9532 +UniRef50_UPI0003C1568F PREDICTED 5.9952218072e-08 6.31849921281e-08 1305110.55705 +UniRef50_J8G7J1 4.35950683145e-07 3.88036940467e-07 -19343365.8868 +UniRef50_H5UTL4 1.86714398839e-07 2.66000917684e-07 32008940.6127 +UniRef50_A9D8H9 3.25946618424e-07 5.55862262664e-07 92819766.9619 +UniRef50_Q5HNG8 FtsK SpoIIIE family protein 9.23194586035e-05 5.4246635279e-05 -15370465982.2 +UniRef50_F4CQG8 Amidohydrolase 2 0.000147318179917 2.83234314216e-05 -48039640197.2 +UniRef50_M7ECE4 NADH dehydrogenase subunit B 4.13355379642e-06 5.91969440825e-07 -1429781064.48 +UniRef50_U5W2D0 Cellulose synthesis regulatory protein 2.60578034524e-08 6.01811832403e-07 232438966.784 +UniRef50_UPI0003B6414D polynucleotide phosphorylase, partial 3.9454300695e-08 1.2730723301e-07 35467306.8523 +UniRef50_B2TMR9 2.64236791467e-06 2.34978666762e-05 8419620775.77 +UniRef50_UPI000393CC0B 1.62757991185e-07 2.40881767194e-08 -55982705.7699 +UniRef50_UPI000472C56D ABC transporter permease 6.56644040707e-07 4.31914850348e-07 -90725931.8852 +UniRef50_A6LYF9 HAD superfamily hydrolase, subfamily IA, variant 1 7.54168816027e-06 1.14580788056e-05 1581094963.04 +UniRef50_UPI00035D9B42 hypothetical protein 6.85547744323e-08 8.10728450146e-08 5053698.70807 +UniRef50_M1MIG9 Methyl accepting chemotaxis protein 2.8552964153e-06 1.53995975188e-05 5064288291.37 +UniRef50_Q5FAD3 Shikimate kinase 1.50716256125e-07 3.8363489849e-05 15426965622.9 +UniRef50_Q6A8V3 1 deoxy D xylulose 5 phosphate synthase 1.39932985774e-06 5.41676813877e-05 21303231053.2 +UniRef50_Q60AI1 Spermidine putrescine import ATP binding protein PotA 3.72957701979e-05 9.14842873652e-06 -11363427154.7 +UniRef50_M0WIY9 4.6876150298e-07 5.37528435832e-06 1980823486.51 +UniRef50_A6LRS1 7.15813189066e-06 1.50598707512e-05 3190028943.24 +UniRef50_J7MB25 Transposase 2.35590746396e-05 1.87721445581e-05 -1932542416.14 +UniRef50_UPI00037C3240 hypothetical protein 5.48597857197e-07 1.28356194049e-07 -169656716.358 +UniRef50_UPI0003A6B902 calcium binding protein 5.78782445176e-07 2.02561946162e-07 -151884832.197 +UniRef50_Q8CS10 8.23331486545e-05 3.87249481842e-05 -17605165662.7 +UniRef50_Q8CS11 1.94400419344e-05 1.11440266111e-05 -3349203189.57 +UniRef50_I0GNK9 8.81444873594e-08 1.18734742659e-07 12349661.4491 +UniRef50_Q8CS13 8.15329953045e-05 2.30065736676e-05 -23627834614.8 +UniRef50_Q8CS14 8.04306199481e-05 1.65604434775e-05 -25785174016.4 +UniRef50_A1VUK8 4.8776090849e-08 7.23005814175e-08 9497125.52047 +UniRef50_Q98FZ6 Mlr3554 protein 4.40984587446e-05 9.41128479584e-06 -14003637782.6 +UniRef50_B5EPN2 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 4.63284621103e-06 3.48113994329e-06 -464957953.312 +UniRef50_D3QJ51 Rhodanese like domain protein 5.07984219759e-05 1.41752018494e-05 -14785243382.5 +UniRef50_Q9RTE5 1.59276788545e-06 0.000356110179335 1.4312302942e+11 +UniRef50_UPI00037196F6 hypothetical protein 8.12062391296e-08 5.12016024434e-07 173923196.958 +UniRef50_Q9CBQ2 Ribonucleoside diphosphate reductase subunit beta 1.13221590412e-06 5.71729163774e-06 1851051338.87 +UniRef50_Q8BIG7 Catechol O methyltransferase domain containing protein 1 1.46444276445e-07 1.81569509493e-07 14180487.6166 +UniRef50_Q8CPK8 Penicillin binding protein 1 0.000199481914462 4.94624654849e-05 -60564692497.7 +UniRef50_T1XRT4 Competence protein ComGF, putative 0.000118698365882 1.05790219461e-05 -43649105920.5 +UniRef50_B8DMV4 Integral membrane protein MviN 5.00164091291e-07 3.90412577959e-07 -44308032.7346 +UniRef50_A6M167 2.07983258652e-06 2.28430180642e-05 8382352770.29 +UniRef50_A6M161 3.83140797233e-06 9.40410881359e-06 2249767714.35 +UniRef50_A6LUR8 1.55771384668e-06 1.74260392332e-05 6406237684.78 +UniRef50_UPI000366A76F hypothetical protein, partial 1.09585347221e-07 1.99912497457e-07 36466178.9891 +UniRef50_O05253 7.97613011656e-06 2.72358384753e-05 7775380607.61 +UniRef50_O05255 2.82833464044e-05 4.68627791081e-05 7500744977.76 +UniRef50_Q1IZU9 Serine tRNA ligase 9.25967266145e-07 0.000200639303506 80626724598.3 +UniRef50_M9VH54 Transporter, major facilitator family protein 1.39809625497e-06 3.86088035741e-05 15022419171.4 +UniRef50_Q9PEV8 DNA topoisomerase 1 5.62756909166e-07 4.37707701427e-05 17443605164.3 +UniRef50_D7CV09 ATP dependent zinc metalloprotease FtsH 1.92775420736e-06 0.000620828788116 2.49857942159e+11 +UniRef50_F5X6L2 Thiamine transporter protein 2.6632988611e-05 2.86202509202e-05 802282180.675 +UniRef50_Q7NMY2 Gsl0633 protein 2.30903238694e-07 1.41420698737e-06 477714244.112 +UniRef50_UPI000225C104 PhoP family transcriptional regulator 1.63473903479e-07 6.03633039479e-07 177697644.563 +UniRef50_UPI00037A9D80 hypothetical protein 8.45543840624e-08 8.04193253294e-08 -1669373.95339 +UniRef50_UPI0003626827 hypothetical protein 5.27403769438e-08 1.66955763931e-07 46110153.3071 +UniRef50_Q2YYZ3 4.60131953246e-05 2.0366669324e-05 -10353817264.7 +UniRef50_UPI0002490914 transcriptional regulator 1.59367230047e-07 2.26936951888e-07 27278725.8809 +UniRef50_I0C454 Nitrogen regulation protein NIFR3 1.10831171716e-06 4.14853337665e-07 -279957657.493 +UniRef50_E7C5A1 MoxR like ATPases 2.69302501344e-07 4.79892533018e-07 85017780.0171 +UniRef50_D2ZNN2 2.04929816724e-05 1.00428328925e-05 -4218853300.19 +UniRef50_B2ITM7 30S ribosomal protein S9 0.000288692210003 4.77601140485e-06 -1.14620453418e+11 +UniRef50_A4WTC5 7.17761607152e-06 3.33691192315e-06 -1550539395.44 +UniRef50_M4YY80 Ribose ABC transporter permease 6.49422652878e-06 5.79920873349e-06 -280587212.786 +UniRef50_P77453 Hydrogenase 4 component J 4.62229666611e-06 3.92013325476e-06 -283471985.676 +UniRef50_P06225 DNA polymerase 1.89393207435e-07 9.31201518538e-08 -38866613.9414 +UniRef50_R8T1N5 3.2742992727e-07 9.72204752947e-06 3792722410.93 +UniRef50_E8SF08 N acetyl L,L diaminopimelate deacetylase like protein 0.000243524177879 6.1210757926e-05 -73602164872.3 +UniRef50_UPI00037C81CE hypothetical protein 1.34195091168e-07 4.10166321171e-07 111412972.1 +UniRef50_K6VNK5 Putative ABC transporter substrate binding protein 4.07047724799e-07 1.21350655317e-07 -115339412.847 +UniRef50_UPI00046779B7 secretin 2.69256767708e-08 4.71974861155e-08 8183978.19553 +UniRef50_L7WTQ2 Serine threonine rich antigen 4.41576898586e-06 5.8362985223e-07 -1547081593.88 +UniRef50_UPI0003B4AC14 general secretion pathway protein I 3.97486276189e-07 2.64272190157e-07 -53780161.2518 +UniRef50_A6TVR2 Aspartate carbamoyltransferase 3.62658213269e-06 6.52725909678e-06 1171038885.71 +UniRef50_P10151 HTH type transcriptional regulator LeuO 9.14623912942e-06 2.13225057899e-06 -2831633249.13 +UniRef50_D8JPC9 NUDIX domain protein 3.45261575169e-06 6.31925724759e-05 24117753621.3 +UniRef50_Q6GGG1 Shikimate kinase 0.000115576285403 3.65340253849e-06 -45184641260.8 +UniRef50_I9PDN2 3.59510465573e-06 5.58959063463e-06 805198464.777 +UniRef50_UPI000470E9F4 uroporphyrinogen decarboxylase 4.02946166679e-08 1.06858031716e-07 26872467.4799 +UniRef50_Q43923 Putative porin QuiX 8.86811250236e-07 5.84402323672e-05 23235022364.8 +UniRef50_A5UNK1 Nitroreductase, NfnB 2.03394135176e-05 3.9907662865e-06 -6600149507.66 +UniRef50_F0MEP6 Acetyltransferase PglI 6.46380117888e-07 3.38773567771e-05 13415753067.3 +UniRef50_H4G9C2 6.34882130816e-05 3.34320798334e-05 -12134029822.5 +UniRef50_UPI000429B909 ribonucleotide diphosphate reductase subunit alpha 3.98872813898e-08 3.34971783169e-07 119129234.462 +UniRef50_Q0TPV7 Stage V sporulation protein B 1.56905386118e-06 1.7071025982e-05 6258336375.76 +UniRef50_UPI00024917F8 transcriptional regulator 1.99986538608e-07 2.67748715997e-07 27356422.5474 +UniRef50_UPI000377B35F hypothetical protein 7.93661496278e-08 1.31248640088e-07 20945598.0685 +UniRef50_UPI00037AAF89 hypothetical protein 8.45833243654e-08 2.66927805075e-07 73614704.481 +UniRef50_J4KJZ5 TonB dependent siderophore receptor 2.35085127254e-06 9.72025109182e-05 38292778959.7 +UniRef50_P75824 NADH oxidoreductase hcr 3.34663307471e-05 1.15202491063e-05 -8859902467.1 +UniRef50_Q0F3C9 2.09997779138e-07 3.36168293794e-06 1272373974.13 +UniRef50_P74241 Sulfate adenylyltransferase 0.000116975100777 2.61589694111e-05 -36663586671.7 +UniRef50_B2TX82 3.27154021598e-05 3.69916540948e-06 -11714210845.4 +UniRef50_A3PNK5 PTS IIA like nitrogen regulatory protein PtsN 6.72088823442e-05 1.56998050926e-05 -20794846573.9 +UniRef50_Q73TT9 2.35365498718e-07 7.91026888919e-06 3098452680.39 +UniRef50_P76552 Ethanolamine utilization protein EutH 2.4427510306e-05 7.56495595641e-06 -6807620117.74 +UniRef50_Q73TT2 1.15216776329e-06 1.65137306153e-06 201535304.837 +UniRef50_A6LRT3 1.47072463189e-05 1.08996252638e-05 -1537183344.71 +UniRef50_A8IJV0 BioY family protein 5.06559858125e-06 6.71825604273e-06 667198097.587 +UniRef50_B2AGC3 1.48329850475e-06 3.28531998182e-07 -466193409.281 +UniRef50_I4W6U8 Putative NAD specific glutamate dehydrogenase 2.52732430622e-07 1.43516863018e-07 -44091664.8675 +UniRef50_R7N6I4 Amino acid transporters Alcohol dehydrogenase class IV 2.04647714421e-06 2.47340480424e-05 9159250779.41 +UniRef50_A6LR22 Binding protein dependent transport systems inner membrane component 4.33338977621e-06 2.26296325824e-06 -835856592.295 +UniRef50_UPI0002F61CB0 hypothetical protein 1.4733738634e-06 8.25342595979e-08 -561499015.575 +UniRef50_UPI00034BD8C9 hypothetical protein 3.43273522016e-07 3.62213920152e-08 -123960712.835 +UniRef50_UPI00047221AF bifunctional glyoxylate hydroxypyruvate reductase B 3.73201983903e-07 9.3457149736e-08 -112936422.408 +UniRef50_P13511 Cobalt zinc cadmium resistance protein CzcA 6.36812986412e-06 6.87374501912e-05 25179259973.7 +UniRef50_E8SJT4 Lipid A export ATP binding permease protein MsbA 0.000168473947198 5.72730624667e-05 -44893161754.2 +UniRef50_A3PG03 Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03 2.45506229071e-05 1.308352585e-05 -4629407799.06 +UniRef50_UPI00046F85CB L threonine 3 dehydrogenase 7.17556608728e-08 5.79518336705e-07 204990023.182 +UniRef50_S1T400 3.36401700486e-07 4.23304245184e-07 35083623.7087 +UniRef50_X7DMX2 3.62287185685e-05 5.40213485111e-06 -12445070131.4 +UniRef50_A6LRT8 1.4334910969e-06 2.01882224934e-05 7571515211.2 +UniRef50_P76134 Anaerobic sulfatase maturating enzyme homolog YdeM 1.36385636199e-05 2.45755926652e-06 -4513908663.82 +UniRef50_A6LZF4 Virginiamycin B lyase 7.48679098248e-06 5.33675014833e-06 -867997868.714 +UniRef50_P16431 Formate hydrogenlyase subunit 5 6.87312360461e-05 2.6984294597e-05 -16853752555.6 +UniRef50_A8FP74 Methionyl tRNA formyltransferase 3.521665815e-05 1.68539264391e-05 -7413260127.75 +UniRef50_B0V5A3 1.42987116986e-06 6.66431884964e-05 26327416462.1 +UniRef50_F8I069 Spermidine putrescine binding periplasmic protein 7.09307934009e-05 3.31790905842e-05 -15240825692.6 +UniRef50_UPI000464AFE5 hypothetical protein 2.52303004713e-07 2.65922321505e-07 5498285.31674 +UniRef50_UPI0002491C94 N 6 DNA methylase 3.26698126137e-07 2.15029564568e-07 -45081968.6328 +UniRef50_A6M1E5 Transposase, IS4 family protein 2.09079791089e-06 1.47778559951e-05 5121921036.3 +UniRef50_UPI0003781939 30S ribosomal protein S2 2.01132048946e-07 1.63961366473e-07 -15006260.6499 +UniRef50_Q2JFL7 NADH quinone oxidoreductase subunit D 2.48631699718e-06 0.000491417942289 1.97387696996e+11 +UniRef50_C3A9F0 Beta glucosidase 4.06286439817e-06 1.61150897409e-05 4865631268.28 +UniRef50_UPI00037F85FD hypothetical protein 2.51272699936e-06 1.50580758753e-07 -953627424.128 +UniRef50_A3K670 NADP dependent isocitrate dehydrogenase protein 4.19709008393e-06 9.9184753374e-07 -1293995750.26 +UniRef50_B7MFR7 Pyrimidine specific ribonucleoside hydrolase RihA 2.44733732991e-05 7.92212748529e-06 -6681941041.66 +UniRef50_Q925Z1 Lin1243 protein 1.20499050039e-06 7.4057380629e-08 -456571578.557 +UniRef50_UPI000366F76E hypothetical protein 7.68153527215e-08 5.82544259988e-08 -7493273.88614 +UniRef50_Q8NUG3 7.5844509417e-05 1.072666723e-05 -26288871976.7 +UniRef50_P11961 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 7.0615459272e-08 8.66837023811e-07 321444416.342 +UniRef50_D2SAY9 ATPase involved in chromosome partitioning like protein 1.71676391487e-06 6.00223650408e-07 -450761006.252 +UniRef50_F3R5J1 8.99494302583e-07 1.63425567409e-07 -297159980.969 +UniRef50_Q3JPV0 7.62582162546e-07 1.09256542847e-07 -263755569.879 +UniRef50_Q036S8 Glucose 1 phosphate adenylyltransferase 4.49378779022e-08 3.64863359982e-05 14711839607.4 +UniRef50_B6JGW9 Replicative DNA helicase 6.50011849208e-05 1.07466508921e-05 -21903221165.4 +UniRef50_Q8CNU7 Multidrug resistance protein like protein 9.83015157263e-05 3.7811319924e-05 -24420634343.6 +UniRef50_H3UQK1 4.35495026938e-06 3.01349651069e-06 -541561343.872 +UniRef50_UPI000475A83D hypothetical protein 2.47063053415e-07 1.8397109239e-07 -25470998.8912 +UniRef50_P0AA74 1.53943678432e-05 3.32439067766e-06 -4872797896.99 +UniRef50_Q9RYX0 Pyridoxamine kinase 5.47434663642e-07 2.68819853244e-05 10631581263.0 +UniRef50_N1N3N6 Mobile element protein 6.3255603062e-05 5.93074004909e-06 -23142750653.5 +UniRef50_V9W2G7 Nitrate reductase 6.93561683809e-05 8.99406346395e-06 -24368922481.3 +UniRef50_P52196 Thiosulfate sulfurtransferase 3.6146229101e-07 1.15355356642e-07 -99356389.4761 +UniRef50_Q9NJP9 Glycerol kinase, glycosomal 2.81083823504e-08 5.36105207239e-08 10295526.2078 +UniRef50_R6CPB8 Methionine tRNA ligase 7.61572270731e-07 1.02081946198e-05 3813717365.41 +UniRef50_P24252 3.00040104459e-05 3.49487225087e-06 -10702064393.0 +UniRef50_Q2YX94 Iron regulated surface determinant protein C 8.12975078207e-05 3.46241069239e-05 -18842624689.1 +UniRef50_B7V9D9 Glutamate 1 semialdehyde 2,1 aminomutase 1.68314435661e-05 5.89807824604e-06 -4413933747.2 +UniRef50_E0NC84 9.14851879891e-07 1.84940509885e-06 377290602.751 +UniRef50_P33913 1.07561712744e-05 8.74731953247e-06 -810998099.6 +UniRef50_Q3IWW9 0.000155892846467 1.13153930161e-05 -58367692123.0 +UniRef50_B9DJK9 UPF0042 nucleotide binding protein Sca_0414 0.000105302911569 3.11176490031e-05 -29949500853.4 +UniRef50_P33916 2.51994775363e-05 2.04350723066e-05 -1923448857.06 +UniRef50_D8HEB7 0.000173873045571 4.76957997903e-05 -50939302490.7 +UniRef50_UPI000375905C hypothetical protein 4.61692733082e-07 4.51763639174e-07 -4008497.05434 +UniRef50_R4XS51 ABC transporter, periplasmic spermidine putrescine binding protein PotD 7.93009865866e-05 2.02095332423e-05 -23855944848.8 +UniRef50_E6VA72 ABC transporter related protein 1.45186918795e-06 7.44084444311e-06 2417822803.5 +UniRef50_E3GWS4 Oxidoreductase domain protein 2.88791918355e-05 6.85884161275e-06 -8889885605.03 +UniRef50_UPI00035E9C46 hypothetical protein 1.41237259742e-07 5.60530703086e-08 -34389902.6018 +UniRef50_UPI00032913FE PREDICTED 2.22371218383e-07 1.13306078541e-07 -44030935.334 +UniRef50_F2A5X0 6 pyruvoyl tetrahydropterin synthase 2.21458549105e-07 8.21690040535e-07 242320818.759 +UniRef50_UPI00016A2F14 potassium transporting ATPase subunit A, partial 2.99809487876e-07 5.69127869408e-05 22855353717.1 +UniRef50_A4WNG3 Histidine kinase 1.35006226483e-05 1.488060628e-06 -4849618698.31 +UniRef50_A4WWM3 Outer membrane lipoprotein carrier protein LolA 7.10456835784e-05 8.86214222692e-05 7095541388.04 +UniRef50_P28249 Protein AsmA 2.81614356189e-05 4.34798932434e-06 -9613780492.98 +UniRef50_Q8DFM1 Adenylate kinase 2.57944081683e-07 2.86360223214e-07 11471945.0413 +UniRef50_B0K5G6 50S ribosomal protein L10 0.000114714954327 8.79203595179e-06 -42762381968.4 +UniRef50_R5P840 3.30488570308e-07 1.32681864341e-06 402230676.856 +UniRef50_Q1R7P6 3.03365266544e-05 1.07718886632e-05 -7898484442.15 +UniRef50_B4KEQ1 GI22193 2.02625207005e-08 8.66083866101e-08 26784640.223 +UniRef50_Q3JSW3 7.85643680285e-07 3.68012859322e-07 -168602687.329 +UniRef50_A5UNT1 Putative Gp40 related protein, ERF family single strand annealing protein 2.65479455166e-05 3.1983758685e-06 -9426507798.38 +UniRef50_UPI0004686FFD hypothetical protein 1.82261617715e-07 2.81943627224e-07 40242850.4746 +UniRef50_Q48RL4 Xaa Pro dipeptidase 6.31110062102e-05 8.24579642618e-05 7810604379.3 +UniRef50_I2FE21 Riboflavin synthase subunit alpha 1.8294959072e-06 8.50610275909e-05 33601590706.5 +UniRef50_UPI0003761549 hypothetical protein 5.36408134229e-07 2.61282928728e-07 -111071421.627 +UniRef50_M9R9R9 Methylenetetrahydrofolate reductase 6.10159751872e-05 7.44368906608e-06 -21627789313.0 +UniRef50_K2CW16 Short chain dehydrogenase reductase SDR 4.8865538721e-08 5.14684494134e-07 188056828.542 +UniRef50_F6AYF9 ABC type transporter, integral membrane subunit 4.69001381553e-06 4.02249145926e-05 14345875506.0 +UniRef50_Q28TZ9 Protein MurJ homolog 2.4160809991e-05 6.11732986985e-06 -7284374343.29 +UniRef50_K4SH63 6.57297906535e-07 4.5472997044e-07 -81779161.5897 +UniRef50_J8ST30 3.19164994001e-07 4.80553833288e-05 19271697131.0 +UniRef50_E7S6W5 4.91028659405e-06 7.80379842539e-06 1168146233.7 +UniRef50_U0CZ19 7.10808439944e-07 6.26113155893e-06 2240733553.26 +UniRef50_UPI000368BB4B hypothetical protein 1.00566704627e-07 2.60486945075e-07 64561763.5109 +UniRef50_Q8CQ95 Histidinol dehydrogenase 9.69720235544e-05 4.68322482678e-05 -20242042567.4 +UniRef50_P15713 Non hemolytic phospholipase C 6.81265816543e-06 6.25523251695e-06 -225039574.673 +UniRef50_D0K1D5 1.11792494231e-06 3.46006906629e-05 13517403401.1 +UniRef50_A4VLC1 Rad3 related DNA helicase 1.74621930468e-06 1.62376611368e-06 -49435855.8763 +UniRef50_S5Y961 Phage terminase 1.09174991792e-05 3.50875569572e-06 -2991000659.79 +UniRef50_UPI000289E091 6 pyruvoyl tetrahydropterin synthase 5.22431132873e-06 6.23523758693e-06 408123335.896 +UniRef50_O24990 Enoyl [acyl carrier protein] reductase [NADH] FabI 2.41213351301e-07 2.44947618799e-05 9791455165.5 +UniRef50_A6LX16 Zinc finger, SWIM domain protein 1.67692230552e-06 1.21534271162e-05 4229493553.25 +UniRef50_B2VB14 TraU protein 9.35781268509e-07 8.1059802057e-08 -345061544.619 +UniRef50_UPI0003943901 PREDICTED 1.59857054583e-07 2.72425337655e-06 1035278263.86 +UniRef50_Q58811 4.0673964371e-05 5.85546207708e-06 -14056656647.1 +UniRef50_X7ZA42 Integral membrane nitrite extrusion NarU domain protein 2.21214070116e-07 1.83188997953e-07 -15351188.2523 +UniRef50_Q5HYK3 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 6.68709754544e-08 7.0573538081e-08 1494769.96791 +UniRef50_Q59659 Succinate dehydrogenase cytochrome b556 subunit 5.81920965314e-05 4.63848228053e-06 -21620251249.8 +UniRef50_M3H3A2 CRISPR associated helicase Cas3 3.18408876843e-07 1.02760345164e-07 -87059958.5439 +UniRef50_UPI0003347ABB PREDICTED 2.59274261715e-08 4.75901200702e-08 8745495.35805 +UniRef50_UPI0003697ED9 hypothetical protein, partial 9.87500695752e-08 2.22133773691e-07 49811515.4399 +UniRef50_D3E1C7 Xylose isomerase like TIM barrel domain containing protein 2.2864169283e-05 2.83958370386e-06 -8084170927.58 +UniRef50_F1U7I1 2.96049839993e-07 5.40870788903e-07 98837221.3658 +UniRef50_UPI0004727931 hypothetical protein 4.98240243046e-07 1.13157059074e-07 -155462806.872 +UniRef50_UPI000468C176 hypothetical protein 6.07452314229e-07 7.94187198909e-07 75387164.44 +UniRef50_P0AGH4 Peptide transport system permease protein SapB 2.02190115476e-05 6.43645314655e-06 -5564187957.49 +UniRef50_A6M060 PfkB domain protein 1.00356483133e-05 1.75371248917e-05 3028438148.17 +UniRef50_B1GYM8 UDP N acetylmuramate L alanine ligase 1.25775450324e-07 6.36184159349e-08 -25093557.5355 +UniRef50_Q9I0K4 Isocitrate lyase 4.98819853153e-06 9.01115400854e-05 34365337566.2 +UniRef50_Q21KT5 Tetratricopeptide TPR_2 7.72789238238e-08 1.99831961578e-07 49476165.2362 +UniRef50_D6DNI5 Cation multidrug efflux pump 1.58890227015e-05 3.6874383908e-06 -4925929316.51 +UniRef50_UPI000023E6F1 hypothetical protein FG03809.1 1.14531060573e-08 3.32584107032e-08 8803069.06673 +UniRef50_H7CZP9 ABC transporter, ATP binding protein 1.86871904876e-06 7.23172021518e-06 2165109382.31 +UniRef50_UPI0003650601 30S ribosomal protein S4 5.03937248265e-07 1.55151661348e-06 422920644.984 +UniRef50_C7NH75 Chromosome segregation ATPase 1.0720748933e-07 4.06528973413e-07 120839756.212 +UniRef50_U7G8A4 2.12763906924e-07 1.36856425068e-07 -30644781.9148 +UniRef50_L7WSV6 0.000208110411396 2.94384330578e-05 -72132070206.8 +UniRef50_E0QAI5 TQXA domain protein 8.26423419184e-08 1.05450547113e-06 392353071.365 +UniRef50_Q9L883 6.84137332974e-06 5.38345552708e-06 -588579307.597 +UniRef50_H6SQS4 Cyclic nucleotide binding 1.10903970089e-06 6.75509359373e-06 2279381241.41 +UniRef50_B5XNE4 3 dehydroquinate dehydratase 1.06066752266e-05 1.47115546141e-07 -4222652596.25 +UniRef50_P38135 Short chain fatty acid CoA ligase 3.09957241856e-05 8.14990096881e-06 -9223139182.4 +UniRef50_Q9RNH6 Glycogen synthase 2.96091135405e-05 8.706735064e-06 -8438546691.99 +UniRef50_R4R8F1 Transcriptional regulator, LysR family 2.79619251005e-06 2.97798358178e-06 73391286.4847 +UniRef50_Q5HR55 8.74170233776e-05 1.55512799746e-05 -29013082503.6 +UniRef50_Q97QF9 Putative 3 isopropylmalate dehydratase small subunit 2.13626211155e-07 2.7431953502e-05 10988372733.7 +UniRef50_P76524 Aminopeptidase YpdF 5.73786613051e-05 1.2032102586e-05 -18306962219.8 +UniRef50_UPI0004663E5A spermidine putrescine ABC transporter permease 6.79019900333e-07 2.89056145141e-06 892826462.838 +UniRef50_M7D3U9 5.54402087679e-05 2.08121531034e-05 -13979771005.8 +UniRef50_UPI00044496EC mannitol 1 phosphate dehydrogenase M1PDH1 2.22039048191e-07 1.18965866313e-07 -41611908.3743 +UniRef50_A0A058ZQ19 Putative cation transport protein 7.76279430658e-08 3.45729977485e-07 108236081.277 +UniRef50_F4FMY2 Group 2 glycosyl transferase 0.000113482289735 9.54524416758e-06 -41960660746.4 +UniRef50_Q9I4G8 Arachidonate 15 lipoxygenase 5.48856310141e-06 4.92696825262e-06 -226722732.0 +UniRef50_D4HAN6 ABC transporter, ATP binding protein 1.57504585052e-06 3.40993991455e-05 13130480543.9 +UniRef50_I3GFM4 1.2368876137e-05 1.44401183055e-05 836185880.423 +UniRef50_UPI0002F4F624 hypothetical protein 2.99466639964e-07 2.41311659071e-07 -23477879.4284 +UniRef50_D9XXK0 2.37412571605e-06 7.27669038904e-06 1979225519.72 +UniRef50_UPI000382A772 hypothetical protein 4.76973672202e-07 4.62804987576e-07 -5720071.85283 +UniRef50_A7HVG2 7.36637439323e-07 3.96149586029e-07 -137459124.631 +UniRef50_UPI00042B174B Beta carbonic anhydrase 5, putative isoform 3 1.1733833101e-07 1.52502201871e-07 14196086.1758 +UniRef50_Q9KAF4 BH2333 protein 0.00012144786948 6.32821511128e-06 -46475217145.8 +UniRef50_M7MZC8 Cytoplasmic protein 3.22471803311e-08 9.68828248747e-08 26094202.8708 +UniRef50_U5UPA0 Transcription termination factor NusA 0.000246171850219 3.58436003725e-05 -84912095480.7 +UniRef50_S6AFF6 8.92401864878e-07 1.14168829327e-06 100639990.23 +UniRef50_A6LUU0 8.14132254934e-07 6.30980644676e-06 2218671110.75 +UniRef50_Q9JZ56 Aspartate 1 decarboxylase 3.02796247737e-06 6.21472997773e-05 23867201943.8 +UniRef50_A7ZI94 3 propionate 3 hydroxycinnamic acid hydroxylase 8.79836348917e-06 1.16419200473e-06 -3082008710.09 +UniRef50_Q830B9 Probable nicotinate nucleotide adenylyltransferase 4.39049541418e-05 6.17097548013e-05 7188016515.71 +UniRef50_UPI0003637298 hypothetical protein 3.08735039141e-07 1.32229969289e-07 -71257262.66 +UniRef50_UPI0002F798B9 hypothetical protein 4.14840343257e-08 6.32428485689e-08 8784300.32066 +UniRef50_UPI0003680D49 hypothetical protein 8.83531079733e-08 1.0668911023e-06 395047796.321 +UniRef50_F9YXS7 Tyrosine recombinase XerC 4.05192966456e-06 4.93891817861e-05 18303205032.1 +UniRef50_I3XDQ4 TOP1E 1.5344958896e-06 6.56139274964e-06 2029419949.36 +UniRef50_Q00518 Type II secretion system protein K 6.89954749221e-06 1.9218006846e-06 -2009577470.05 +UniRef50_A6LUU6 2.90373837578e-06 2.28147001429e-05 8038299600.36 +UniRef50_P0AFY4 Protein SanA 4.13161446614e-05 2.59867378184e-05 -6188669655.49 +UniRef50_P34896 Serine hydroxymethyltransferase, cytosolic 8.00527001523e-07 1.2054364263e-06 163466903.58 +UniRef50_F4DTG1 TetR family transcriptional regulator 1.60632335681e-06 4.99126825692e-06 1366543794.12 +UniRef50_M5JL13 YaeC family lipoprotein 6.47576439463e-07 2.08769302488e-07 -177151825.966 +UniRef50_UPI0003A8766A hypothetical protein 3.1051190023e-07 2.66290425096e-07 -17852752.1701 +UniRef50_A0RGM3 7.37601891602e-08 3.49487225087e-06 1381144921.08 +UniRef50_U6I6N8 Mechanosensory protein 2 4.44830441661e-08 7.70382742575e-08 13142945.8855 +UniRef50_D5SMQ9 2.31767657539e-06 9.27589780055e-07 -561195097.558 +UniRef50_UPI00035E630D hypothetical protein 9.6952148618e-08 5.69142231235e-07 190628930.776 +UniRef50_D6AZ23 Integral membrane protein 9.02898588779e-08 6.60884833075e-08 -9770392.30205 +UniRef50_D2NRU7 Cytosine deaminase 1.94734193464e-08 3.86462821333e-07 148158125.049 +UniRef50_UPI00041D1FA9 hypothetical protein 3.86153910082e-08 6.03383241947e-08 8769814.69776 +UniRef50_S5VIT0 Relaxase mobilization nuclease domain protein 4.57819746427e-06 5.90424993402e-07 -1609912681.96 +UniRef50_P77339 1.2013631812e-05 4.68445833732e-06 -2958877270.8 +UniRef50_UPI00047C5809 short chain dehydrogenase 1.87741603106e-07 4.18647560786e-07 93219568.6502 +UniRef50_UPI000441CA6F PREDICTED 1.87705338427e-06 7.48656594271e-07 -455547631.109 +UniRef50_P71015 HTH type transcriptional repressor GbsR 0.000267089046572 3.86938121516e-05 -92205958860.1 +UniRef50_A3JNE7 1.49229721474e-06 8.52516392897e-07 -258287368.772 +UniRef50_A0REF7 DNA binding response regulator 9.77727025268e-06 9.92519376363e-05 36122021200.4 +UniRef50_Q6NCE2 3.52595635827e-07 1.18003008639e-07 -94707922.3711 +UniRef50_A7ZJJ2 Cyclic pyranopterin monophosphate synthase accessory protein 9.87988099604e-06 6.73726323636e-06 -1268713353.84 +UniRef50_Q888H1 Uronate dehydrogenase 6.96161873087e-08 5.0203135352e-07 174571308.93 +UniRef50_A6LV74 Integral membrane sensor signal transduction histidine kinase 1.99475307231e-06 7.24256541209e-06 2118606239.47 +UniRef50_C8VDQ3 Putative glutathione dependent formaldehyde activating enzyme 8.91023047476e-07 2.49646046077e-07 -258931766.046 +UniRef50_K8B5X1 3.83331743519e-07 1.182843946e-06 322772887.26 +UniRef50_F4H898 CRISPR associated HD domain protein 1.42027855374e-07 6.96184103225e-08 -29232581.5311 +UniRef50_M4UMY3 Transcriptional regulator, Crp Fnr family 1.83542620181e-06 3.22163678398e-06 559630222.739 +UniRef50_I1AQG2 IS5 family transposase OrfA 9.62907484674e-07 7.80155010848e-07 -73779416.3086 +UniRef50_UPI0003B76181 hypothetical protein 2.92105033648e-07 3.17162967487e-07 10116195.3862 +UniRef50_UPI000474B984 sugar ABC transporter ATP binding protein 1.37329812279e-07 4.65897606602e-07 132646850.548 +UniRef50_W4UB24 L xylulose 5 phosphate 3 epimerase 1.12346353354e-07 2.52765520183e-06 975089821.304 +UniRef50_UPI0002BA5A10 MerR family transcriptional regulator 1.44268123538e-05 2.49045105171e-05 4229975324.34 +UniRef50_Q893S7 Chemotaxis protein methyltransferase cheR 3.68878816464e-06 1.62061810776e-05 5053425124.66 +UniRef50_S5Y8D8 DNA topoisomerase 1 5.545819188e-05 1.24078986083e-05 -17379931680.3 +UniRef50_D4MGJ2 Cyclopropane fatty acyl phospholipid synthase 1.15087191723e-06 9.56930029311e-06 3398622841.08 +UniRef50_UPI00036A03D0 hypothetical protein, partial 1.53215269274e-06 2.32182404569e-06 318800015.543 +UniRef50_UPI000473270B hypothetical protein 8.94454828167e-08 1.57686001425e-07 27549534.7675 +UniRef50_G7M9J3 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 9.40292506537e-06 7.4930822433e-06 -771026983.677 +UniRef50_UPI0003595AF6 1.12942660081e-06 1.21114164807e-06 32989367.3353 +UniRef50_B4SRW3 Acetyl CoA acetyltransferase 1.06035390125e-06 5.68825099663e-05 22536089418.3 +UniRef50_A6LX32 2.55097986351e-06 3.84774759058e-06 523521044.548 +UniRef50_B5GLS3 9.90513790878e-07 3.24318294177e-06 909430179.573 +UniRef50_X4QTL9 2.09565552343e-06 0.000135372652476 53805559162.6 +UniRef50_V8R9C6 Cytochrome C assembly protein 6.22310584964e-06 2.68877121583e-06 -1426854262.83 +UniRef50_UPI000470A12B hypothetical protein 4.98012429875e-08 1.83618579394e-07 54023700.8305 +UniRef50_C5C6A7 2.30846910008e-08 1.83656647608e-07 64824869.3217 +UniRef50_U2Z7C1 6.67267421198e-07 4.03016204772e-07 -106681458.798 +UniRef50_F8LKD4 6.15826928226e-05 1.07432749897e-05 -20524496849.0 +UniRef50_I0C2E4 Hydrogen peroxide inducible genes activator 0.000157288754141 3.11570116055e-05 -50920932272.3 +UniRef50_UPI0004728112 shikimate dehydrogenase, partial 3.85580903565e-07 3.38828718271e-07 -18874430.917 +UniRef50_UPI0003B52B26 ABC transporter 1.89613097026e-07 7.15774437721e-08 -47652441.679 +UniRef50_M7DCE8 Anticodon nuclease 3.33468321886e-05 2.1962252729e-05 -4596094432.34 +UniRef50_UPI0004773C4C peptidylprolyl isomerase 6.44559936658e-08 2.53633220983e-07 76373168.1335 +UniRef50_L8N8P7 HflK protein 1.16066238137e-05 1.56205134455e-05 1620456500.32 +UniRef50_B2TPA5 Cell division protein FtsA 3.80561247775e-06 1.50451390765e-05 4537534812.4 +UniRef50_N0AQS7 D 3 phosphoglycerate dehydrogenase 3.67858797636e-05 2.22687901887e-05 -5860727206.11 +UniRef50_U3TMH1 Chloride channel protein 0.000115080046447 1.62874223364e-05 -39883794675.3 +UniRef50_UPI00022337B0 PREDICTED 4.97875541753e-09 7.7248953018e-08 29176365.6264 +UniRef50_UPI000370CB23 hypothetical protein 1.51167679488e-06 8.93179447265e-07 -249694969.048 +UniRef50_F4DXM1 Short chain dehydrogenase 2.81705961835e-06 2.34068722742e-06 -192317379.965 +UniRef50_E1R075 FAD dependent oxidoreductase 7.34509607042e-06 5.97391113129e-06 -553564186.258 +UniRef50_UPI0003A40543 hypothetical protein 1.92532944305e-06 5.45928348185e-07 -556881149.15 +UniRef50_B9KSE8 FAD dependent oxidoreductase 3.02282200461e-05 5.29762607153e-06 -10064786720.3 +UniRef50_Q11NV4 Isoleucine tRNA ligase 2.61784077345e-08 4.13882837431e-08 6140413.59084 +UniRef50_X0YWS3 Marine sediment metagenome DNA, contig 1.12947381864e-07 2.11295975518e-07 39704534.1311 +UniRef50_U3STL6 3.35445708426e-05 1.9635407469e-05 -5615299938.55 +UniRef50_D9VBW9 Predicted protein 3.32320876086e-07 4.69074606352e-07 55209159.0654 +UniRef50_B9KLG3 Membrane protein 1.29571849717e-06 2.73864023365e-06 582525211.658 +UniRef50_S5YCD9 6.49824300693e-07 1.15094696474e-07 -215876903.093 +UniRef50_K5RU55 4.06513133883e-06 7.93056907271e-05 30375537130.5 +UniRef50_L8P717 Putative UPF0225 protein 8.11625701915e-08 5.30623068058e-07 181452718.489 +UniRef50_P97089 Electron transfer flavoprotein subunit beta 1.23269506041e-05 5.02244926693e-05 15299702786.9 +UniRef50_D3P6N7 Peptide nickel transport system ATP binding protein 1.90434500872e-06 3.85158373492e-06 786124169.073 +UniRef50_J2GHT5 5.17778347599e-07 1.23377137212e-07 -159224608.48 +UniRef50_D7I331 Phenylalanine hydroxylase transcriptional activator PhhR 3.38415015832e-06 1.59630651457e-06 -721774418.291 +UniRef50_Q8DSP8 Membrane protein insertase YidC 2 6.53334374049e-05 6.99150135768e-05 1849638522.86 +UniRef50_D2JDJ5 Replication initiator protein 1.52293368515e-06 3.15623109994e-07 -487406094.559 +UniRef50_UPI000273B72B PREDICTED 9.5420187226e-08 4.42176667899e-07 139989846.428 +UniRef50_F0RNI2 4.67147949714e-06 0.000186302563141 73326697331.1 +UniRef50_Q9I4X3 Anthranilate CoA ligase 8.96382203803e-06 1.55566306503e-06 -2990764685.73 +UniRef50_UPI000477551D acetyl CoA hydrolase 6.45123520899e-07 4.09232928958e-07 -95231926.6697 +UniRef50_E8SEC6 Acid phosphatase 0.000197872925081 6.52914356851e-05 -53524774227.0 +UniRef50_Q2W0I4 6.28173082596e-06 1.68201568715e-06 -1856961446.39 +UniRef50_Q0D8N0-3 Isoform 3 of DEAD box ATP dependent RNA helicase 53 1.06555769396e-07 1.7226997901e-06 652457173.474 +UniRef50_UPI0003700CC6 hypothetical protein, partial 7.60524286994e-09 1.03685676294e-07 38788850.0128 +UniRef50_I6T7T0 Transposase 4.2896135097e-06 3.11670146086e-06 -473518987.366 +UniRef50_F7YG57 7.09008418504e-08 5.57908908074e-07 196611132.596 +UniRef50_A3PRI3 4.27809343597e-06 2.19498346369e-06 -840977058.443 +UniRef50_UPI00046735F8 methionine gamma lyase, partial 5.56661806243e-08 8.90237086444e-08 13466843.4046 +UniRef50_UPI0004753FFF hypothetical protein 3.12109510551e-08 2.36978900896e-07 83071046.4075 +UniRef50_UPI0002883A7C phosphoribosylaminoimidazole carboxylase 3.64934125607e-08 6.46133519128e-08 11352364.5869 +UniRef50_Q8CPQ1 Bifunctional autolysin 0.000187552720207 4.69974413244e-05 -56743890892.3 +UniRef50_UPI000225B6E8 flagellar biosynthesis protein FliQ 4.68296934658e-06 1.49756290545e-06 -1285987669.62 +UniRef50_F2FNL1 1.71385230033e-06 9.42515328672e-07 -311398200.827 +UniRef50_R9VQB8 Major facilitator transporter 3.75773105201e-06 2.27920907105e-05 7684404572.0 +UniRef50_Q56318 3.09902032432e-07 4.3845233274e-06 1644974618.01 +UniRef50_A7FAU5 6.50837911816e-06 0.00015686549076 60701011059.1 +UniRef50_U5P8L4 Membrane protein 5.58026408043e-05 2.55596465028e-05 -12209467922.8 +UniRef50_Q826Q0 Peptide deformylase 2 1.40409634433e-07 4.75203004678e-07 135160191.945 +UniRef50_Q7UJL3 Inosine 5 monophosphate dehydrogenase 8.67871221614e-05 2.55875222324e-05 -24707029494.9 +UniRef50_A3K7K9 2.88438103518e-06 1.60638752866e-06 -515941661.326 +UniRef50_E3JT91 2.37562605899e-07 9.3430345138e-08 -58187962.3709 +UniRef50_Q89ZA3 6.53597731495e-08 3.74432355559e-05 15089907131.6 +UniRef50_Q9HXE9 Phosphatidylcholine synthase 2.63114249638e-05 6.41905360119e-07 -10363100064.4 +UniRef50_UPI0003D71460 PREDICTED 6.00943169724e-08 3.86548482433e-07 131793552.64 +UniRef50_Q3J224 Phage related protein, putative DNA packing 3.33075872518e-06 5.22684433979e-06 765473030.205 +UniRef50_P43671 Paraquat inducible protein B 4.05579005205e-05 7.67517498713e-06 -13275159814.3 +UniRef50_UPI00006CBA16 Carbonic anhydrase family protein 1.81786432917e-07 9.50550847316e-07 310359627.893 +UniRef50_W7WVT2 3.86805509454e-06 1.02319047865e-06 -1148506755.85 +UniRef50_UPI000362D292 hypothetical protein 1.27606570305e-07 1.89459236717e-07 24970680.4481 +UniRef50_P37906 Gamma glutamylputrescine oxidoreductase 4.48105289624e-05 7.28979094331e-06 -15147582369.5 +UniRef50_UPI0001FFEB3E acyltransferase 3, partial 6.39145599516e-07 1.44080514404e-07 -199863849.991 +UniRef50_UPI00037F5E94 hypothetical protein 1.363233158e-07 1.23792924587e-07 -5058672.69788 +UniRef50_P0ADP7 2.91741151191e-05 2.94335586571e-06 -10589679398.2 +UniRef50_G9E7X5 Protein fecR 2.95138286299e-07 1.36285921389e-07 -64130649.0519 +UniRef50_A6LS23 Helix turn helix domain protein 1.45001020044e-06 1.19249429921e-05 4228858909.89 +UniRef50_UPI0003A885D5 translation initiation factor IF 2 2.63013036585e-08 7.58688947198e-07 295673879.104 +UniRef50_E6C679 7.52976542231e-06 6.87258354044e-05 24705604412.0 +UniRef50_W4TI22 Lysophospholipase L2 3.95370910729e-07 3.5402877194e-06 1269641508.13 +UniRef50_E7T8A0 Mg chelatase subunit ChlD 4.90348905408e-05 1.54027580513e-05 -13577704598.7 +UniRef50_Q1IVF1 Queuine tRNA ribosyltransferase 6.46852211643e-08 4.6756597222e-07 162647903.104 +UniRef50_P23910 Protein AraJ 2.46757895168e-05 1.43330075411e-05 -4175508003.8 +UniRef50_A6LPC4 ATP dependent helicase nuclease subunit A 4.1999196467e-06 1.15353815113e-05 2961415970.98 +UniRef50_UPI000379410F hypothetical protein 2.62342987558e-06 1.46378192363e-07 -1000016161.36 +UniRef50_N2DXX0 Dihydrouridine synthase family protein 4.00802427531e-06 5.53718822241e-06 617342250.396 +UniRef50_M9RF98 Peptidyl prolyl cis trans isomerase 4.01723530971e-05 6.23153372152e-06 -13702325282.6 +UniRef50_Q9L6V4 Transposase 1.00184098154e-07 3.26347939783e-07 91305118.2081 +UniRef50_Q1IQY5 Bifunctional protein GlmU 4.10585882136e-08 5.30013897974e-08 4821455.55404 +UniRef50_A0A011NHH5 Periplasmic [NiFeSe] hydrogenase small subunit 1.0971566267e-06 1.10355598163e-07 -398383684.631 +UniRef50_D4HEK1 Bacterial type II secretion system domain protein F 1.06312334069e-05 6.13748913487e-05 20485837405.8 +UniRef50_V9VZ19 Membrane protein 4.66072222998e-05 4.65498952615e-07 -18627979937.9 +UniRef50_Q9I3X4 1.39341763647e-05 2.42172737698e-06 -4647716929.97 +UniRef50_A5IV60 Molybdate ABC transporter, inner membrane subunit 0.000209006427244 3.57607465006e-05 -69941407279.5 +UniRef50_UPI0004625430 PREDICTED 1.26918562342e-07 4.41524394923e-07 127010235.261 +UniRef50_UPI000376710A hypothetical protein, partial 2.30396987402e-07 2.55688421838e-07 10210462.4426 +UniRef50_Q6F6X6 3.91769482445e-06 8.19260071316e-05 31492912948.0 +UniRef50_B7V4B9 2.08375718604e-05 4.24916122588e-06 -6696944935.84 +UniRef50_O31766 1.42187698079e-07 2.9460116961e-06 1131938154.79 +UniRef50_W0Z2F6 Putative major facilitator superfamily transporter 2.68773044517e-06 3.7631903353e-06 434176355.022 +UniRef50_P0A6G4 Nicotinamide nucleotide amidohydrolase PncC 4.13301879053e-05 9.71841663992e-06 -12762059979.9 +UniRef50_A6LT79 Periplasmic binding protein LacI transcriptional regulator 2.59959046035e-06 9.05519268575e-06 2606205837.54 +UniRef50_UPI00046F3756 50S ribosomal protein L3 3.18885010302e-07 9.83781746433e-07 268426971.577 +UniRef50_M2GKY0 2.32349308678e-05 7.12771551959e-06 -6502680493.83 +UniRef50_UPI0003B5DDE6 ATPase 5.02070069802e-07 2.0190129812e-07 -121181816.613 +UniRef50_Q8F4Q4 Inosine 5 monophosphate dehydrogenase 2.58031064534e-07 4.35773474071e-08 -86577597.2472 +UniRef50_J9YME8 ABC superfamily ATP binding cassette transporter, membrane protein 4.21485147643e-06 2.58671566595e-06 -657298406.164 +UniRef50_UPI00039B3F34 aldehyde activating protein 6.24089332808e-07 1.02345566425e-06 161229088.779 +UniRef50_A0A017SYI4 9.76617089557e-08 4.08607911706e-08 -22931227.5355 +UniRef50_G1WMK0 1.13022738335e-07 7.26703929428e-07 247750627.559 +UniRef50_Q5LMW0 Ribonuclease HII 1.34569502043e-07 3.029848459e-07 67991341.0037 +UniRef50_P39814 DNA topoisomerase 1 0.000220510460708 4.9457739908e-05 -69056082439.9 +UniRef50_A0A023KT22 DNA polymerase II 7.92370158037e-06 1.62782198958e-06 -2541723849.93 +UniRef50_A0A014PEH8 3.46158632631e-07 8.12425598867e-07 188237696.009 +UniRef50_B9KJL3 0.000103562773928 1.41752018494e-05 -36086859757.0 +UniRef50_UPI000350C992 PREDICTED 9.3073579535e-07 1.40336191537e-07 -319094019.353 +UniRef50_A8HYP6 3.95861867723e-07 9.14682872319e-08 -122887423.773 +UniRef50_UPI00042B224B Tubulin FtsZ family protein, putative isoform 4 3.20329347985e-08 1.33144282389e-07 40819891.7982 +UniRef50_I2C5T3 Ribonucleoside diphosphate reductase 0.00010004639477 4.2595998408e-05 -23193430007.0 +UniRef50_G9EUU6 4.70454097827e-06 0.000239414267189 94755196683.6 +UniRef50_I4CQD2 5.48359523491e-07 7.90088972637e-07 97589144.9742 +UniRef50_Q5HR38 Cys tRNA Cys tRNA(Cys) deacylase 0.00014542394519 2.11327855548e-05 -50177866368.7 +UniRef50_Q9HVZ2 5.20626827673e-06 1.31935981468e-06 -1569192643.86 +UniRef50_UPI000363B12A NADH dehydrogenase, partial 1.14582432049e-06 4.73088528801e-08 -443484174.575 +UniRef50_Z5X6G1 2.79755658908e-07 3.90549550631e-07 44728853.6825 +UniRef50_P0AG42 Riboflavin biosynthesis protein RibF 4.00826467786e-05 8.61049857057e-06 -12705692438.3 +UniRef50_C6S7Y9 2.22924796565e-06 5.04770345406e-05 19478223507.2 +UniRef50_P76422 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 4.15509071857e-05 4.54909502082e-06 -14938085634.3 +UniRef50_B8H627 Ribonuclease 3 1.99106079718e-07 1.41145614699e-07 -23399350.9831 +UniRef50_P49376 ATP synthase subunit beta, mitochondrial 2.37544018979e-07 9.77517537553e-06 3850458818.54 +UniRef50_W0YWB6 Protein PelB 1.32995650804e-07 1.65574701479e-07 13152562.5474 +UniRef50_UPI00036635D2 hypothetical protein 4.23636293519e-06 3.92324677706e-06 -126408835.404 +UniRef50_Q2T4E0 DNA binding response regulator 1.71584540393e-06 6.43806753779e-05 25298560844.4 +UniRef50_UPI0003ACD19D PREDICTED 1.39972127338e-06 9.28995362949e-07 -190037826.497 +UniRef50_UPI0003711349 hypothetical protein 3.6627084632e-06 1.22071493478e-06 -985862754.054 +UniRef50_UPI000378A2B6 hypothetical protein 1.47202043254e-07 1.48936210484e-07 700104.591376 +UniRef50_UPI0004253BDC phosphopentomutase 8.92103776348e-08 1.60697768643e-07 28860336.9989 +UniRef50_UPI00034DE29F hypothetical protein 2.92713625505e-07 1.00444004967e-06 287332691.301 +UniRef50_Q8CU58 5.82953518667e-05 5.77027629805e-05 -239235405.242 +UniRef50_Q8CU59 7.08778879664e-05 2.70396869368e-05 -17698019710.9 +UniRef50_X8BCV4 FAD binding domain protein 4.26204407769e-07 1.75477472867e-05 6912176965.17 +UniRef50_UPI0004769DD4 hypothetical protein, partial 2.50241001873e-06 1.98427422761e-06 -209177777.116 +UniRef50_P94132 Probable electron transfer flavoprotein ubiquinone oxidoreductase 8.94942108975e-08 6.06438667237e-05 24446543269.1 +UniRef50_Q8CU51 0.000153658943739 2.8005218736e-05 -50727950728.3 +UniRef50_UPI0003074F79 hypothetical protein 7.72744111147e-07 2.76852406622e-07 -200197566.392 +UniRef50_A6LT48 2.881572434e-06 3.57959642661e-06 281800851.534 +UniRef50_O67610 3 oxoacyl [acyl carrier protein] reductase FabG 1.29087399635e-07 3.73124738155e-07 98520868.2354 +UniRef50_A6LT46 2.46186514471e-06 3.7540259135e-06 521661158.956 +UniRef50_B4REX9 UPF0301 protein PHZ_c0553 4.84866925293e-07 9.12973086759e-07 172831710.837 +UniRef50_Q0IS03 Os11g0579700 protein 5.19157162963e-08 1.79631578807e-06 704235715.17 +UniRef50_A6LT42 8.2002749205e-07 2.50990709374e-06 682225132.357 +UniRef50_Q2NGX9 Phenylalanine tRNA ligase beta subunit 3.60382400105e-05 2.16098972538e-06 -13676661660.7 +UniRef50_UPI00016C0C74 DNA mismatch repair protein MutS 2.14564311589e-08 3.31929308211e-07 125341710.397 +UniRef50_UPI0004723041 hypothetical protein 1.97739518055e-05 2.61811851881e-06 -6926020423.59 +UniRef50_F2JLI9 MATE efflux family protein 4.64833609578e-06 4.42080971927e-06 -91855190.2597 +UniRef50_UPI000464D0AC hypothetical protein 4.29365125812e-07 3.40182117107e-07 -36004275.0128 +UniRef50_UPI0003B58353 preprotein translocase subunit SecB 5.21614936035e-07 9.16598403316e-07 159459672.734 +UniRef50_Q8FT41 Carbamoyl phosphate synthase small chain 4.86765306937e-08 7.95470631431e-08 12462812.7739 +UniRef50_F5XZV5 Candidate signal transduction protein , STAS domain protein 2.50703971573e-07 5.56343690481e-05 22359065225.4 +UniRef50_A6VBI2 Membrane protein, putative 5.5774807656e-06 4.69477201255e-06 -356360355.661 +UniRef50_UPI00030DD393 hypothetical protein 3.49878184027e-07 2.12340242704e-06 715993500.493 +UniRef50_P0AFT0 Murein DD endopeptidase MepM 2.77489039148e-05 4.20682623693e-06 -9504225652.35 +UniRef50_Q2FK43 Pyruvate formate lyase activating enzyme 0.000249632559056 4.27335225639e-05 -83527679968.5 +UniRef50_I7L6K8 Rhodanese like domain protein 2.10893064847e-07 2.89865110268e-07 31881983.8324 +UniRef50_O33367 DNA gyrase subunit B 1.4741424855e-07 1.20167081245e-07 -11000015.8014 +UniRef50_J9ZQJ4 2.51099327394e-06 4.90831088969e-06 967826539.874 +UniRef50_B2HGA4 Isopentenyl diphosphate delta isomerase 1.42806805364e-06 5.87166537189e-05 23128105043.1 +UniRef50_UPI0002626EA5 hypothetical protein 1.15228457292e-07 5.11895670415e-07 160139421.592 +UniRef50_A4EG23 6.37334960829e-07 2.57806518948e-07 -153220289.325 +UniRef50_O33818 4 hydroxybenzoyl CoA reductase subunit gamma 6.15068737902e-06 2.27424037889e-06 -1564969223.31 +UniRef50_F0QNA7 2.43539347646e-06 2.37210857846e-05 8593295189.6 +UniRef50_UPI000467E119 hypothetical protein 7.27970005919e-08 1.28422223556e-07 22456585.1089 +UniRef50_W1K4B0 ABC transporter glycerol 3 phosphate binding protein 7.75238429883e-07 2.9140143902e-07 -195330930.559 +UniRef50_Q65GR3 Histidine tRNA ligase 0.000106715233029 1.09291647713e-05 -38670011182.9 +UniRef50_UPI00047342DF hypothetical protein, partial 2.63105914219e-07 2.56093625476e-07 -2830947.01601 +UniRef50_F0MV13 CoA binding domain acetyltransferase, GNAT family 9.69868945575e-07 4.24945530025e-05 16764024518.9 +UniRef50_Q3JS21 EutG protein 1.4842175184e-06 3.06474867415e-05 11773569658.9 +UniRef50_A9IBR9 6.4386472309e-07 6.29141111262e-07 -5944102.774 +UniRef50_P0ABI1 ATP dependent Clp protease ATP binding subunit ClpA 3.02631730226e-05 0.000110599480006 32432752966.5 +UniRef50_UPI000347EC3A cell division protein FtsW 1.03774201338e-07 6.71910728558e-08 -14769057.8937 +UniRef50_I0C1D1 0.000152956111508 2.45054159883e-05 -51857122048.7 +UniRef50_Q5F4X8 Lipid A export ATP binding permease protein MsbA 6.3301171976e-07 4.11609759999e-05 16361636513.9 +UniRef50_V5VD21 2.91120299886e-06 4.45790363574e-05 16821815648.6 +UniRef50_A6LW40 NUDIX hydrolase 2.15296191359e-06 1.1734438617e-05 3868159723.11 +UniRef50_A0A011R4M2 N formylmethionyl tRNA deformylase 1.25143292356e-07 1.30466144873e-05 5216556485.66 +UniRef50_Q31N84 3 oxoacyl [acyl carrier protein] synthase 3 1.81201588023e-07 2.34286401925e-07 21430990.7962 +UniRef50_F9YZY2 1.19457591412e-06 5.65632369959e-05 22353007928.6 +UniRef50_B6B233 PucC protein 1.47214940286e-06 3.79736872511e-07 -441020343.912 +UniRef50_A6LYW0 Lysine exporter protein 6.43443565143e-06 5.28925442146e-06 -462323715.493 +UniRef50_P77733 Probable formate transporter 2 2.96658010794e-05 2.3688505764e-06 -11020113889.3 +UniRef50_K0C8T6 Oxidoreductase, short chain dehydrogenase reductase family 3.48954021977e-06 7.78331598507e-05 30013431543.8 +UniRef50_UPI0003B430E0 preprotein translocase subunit SecA 8.92039028064e-08 1.93822003087e-07 42235610.8919 +UniRef50_Q9RR67 Thymidylate synthase 1.96266545327e-06 0.000399768523249 1.60599106419e+11 +UniRef50_X0TUW0 Marine sediment metagenome DNA, contig 9.00394108045e-07 5.56900715447e-07 -138672497.73 +UniRef50_A6LRF1 Glycosyl hydrolase, BNR repeat containing protein 3.98289525115e-06 3.52146686695e-06 -186284301.065 +UniRef50_Q8XU08 2.09185418909e-07 5.74538965356e-08 -61255877.5371 +UniRef50_A5UJG2 Coenzyme F420 reducing hydrogenase, beta subunit 2.30374770485e-05 1.89654404796e-05 -1643931132.37 +UniRef50_A3CX71 Glycerol 1 phosphate dehydrogenase [NAD+] 1.92676720314e-05 3.66887969667e-06 -6297423884.23 +UniRef50_Q5HM56 Heme degrading monooxygenase 7.03390041336e-06 5.67916740756e-06 -546922338.885 +UniRef50_D9UMJ7 Secreted protein 4.08137245055e-07 1.15734616825e-07 -118046529.2 +UniRef50_UPI0001FFDC99 DEAD DEAH box helicase domain protein, partial 3.39560496635e-07 1.62512728265e-06 518999087.191 +UniRef50_A6LWX4 Efflux transporter, RND family, MFP subunit 4.43601321544e-06 3.67539916684e-06 -307069225.204 +UniRef50_Z6ADI2 5.84187962169e-07 5.87645765409e-07 1395957.60001 +UniRef50_A9M186 Imidazoleglycerol phosphate dehydratase 1.86819427941e-06 2.37721283452e-05 8842886973.86 +UniRef50_Q31TM6 5.88070452071e-08 1.25539138289e-07 26940564.872 +UniRef50_UPI00035E404B ABC transporter 5.99677005843e-08 2.00761006079e-07 56839985.1565 +UniRef50_G1Y0V7 1.52418055466e-06 4.84870768046e-07 -419582114.62 +UniRef50_G8R9K4 9.39670421942e-05 1.96907053381e-05 -29986268662.0 +UniRef50_M7MVN0 5 formyltetrahydrofolate cyclo ligase 4.5721643028e-05 9.95763014749e-05 21741786486.0 +UniRef50_A1KSK9 Sec independent protein translocase protein TatB 1.65564030199e-06 1.53817002584e-05 5541378842.1 +UniRef50_L1KLU3 2.07433296092e-06 9.79651469675e-07 -441936351.266 +UniRef50_UPI00042C20EE PREDICTED 9.29036540359e-07 8.54121402629e-07 -30244160.4137 +UniRef50_A5UP53 TPR repeat protein 1.38543198662e-05 1.07331649067e-05 -1260048558.03 +UniRef50_UPI000474AE63 MerR family transcriptional regulator 1.05167551913e-07 8.72318063174e-08 -7240880.59329 +UniRef50_A6QHZ9 Lantibiotic ABC transporter protein 4.31172703782e-06 3.1361066038e-06 -474612395.699 +UniRef50_Q3IV58 Site specific recombinase and resolvase superfamily 7.24804969167e-05 1.34246987694e-05 -23841550408.2 +UniRef50_S1FXN2 1.51986187015e-07 1.00072425741e-06 342645974.206 +UniRef50_Q2CBI1 ISxac3 transposase 6.56962133133e-06 6.50449797428e-06 -26291098.3945 +UniRef50_UPI000311BF3E hypothetical protein 3.9527842787e-07 4.60580464467e-07 26363233.5203 +UniRef50_G7ZQ52 Ammonium transporter family protein 0.000222808854984 5.00572796551e-05 -69741930860.5 +UniRef50_A5IR30 0.000111682032066 1.65544625296e-05 -38404167168.4 +UniRef50_UPI000381D79B hypothetical protein 1.4144977386e-07 1.93099320289e-07 20851555.7046 +UniRef50_F0M765 GAF domain containing protein 4.4005151332e-07 4.02309753996e-07 -15236811.3826 +UniRef50_Q8XLH3 3 oxoacyl [acyl carrier protein] synthase 3 2.17979243354e-06 4.56963730996e-07 -695527088.701 +UniRef50_UPI0001FFE008 error prone DNA polymerase 1.52768092279e-07 5.78849924198e-07 172014464.158 +UniRef50_Q9RYV3 Oxidoreductase, putative 2.27594145271e-06 0.000295205947652 1.18259438158e+11 +UniRef50_A7INL3 Integration host factor subunit alpha 1.04757946018e-05 2.04141256406e-05 4012226197.4 +UniRef50_A5IR39 5.36709936758e-06 7.87511213846e-06 1012515532.38 +UniRef50_B9KKS1 Non homologous end joining protein Ku 4.81303355044e-06 2.21211015129e-06 -1050024693.16 +UniRef50_D8J4V6 1.05481019223e-07 3.76767781686e-07 109521795.069 +UniRef50_Q8H8U0 Cardiolipin synthase, mitochondrial 6.63792098858e-08 2.69286954149e-07 81916346.317 +UniRef50_H0ABG8 9.34537072161e-07 4.9973405404e-07 -175535314.048 +UniRef50_W7QLC2 3.18272232416e-06 3.28215428467e-06 40141902.6253 +UniRef50_B9R471 Transporter, major facilitator family 2.98026445605e-07 1.52720242345e-07 -58661897.3637 +UniRef50_L3RWN4 Transcriptional regulator 3.53070979283e-06 2.75996920751e-06 -311157432.344 +UniRef50_P42912 Putative galactosamine 6 phosphate isomerase 2.45010903402e-05 1.93981339456e-05 -2060126116.82 +UniRef50_Q97J66 Protein CA_C1420 1.77657439292e-06 1.53125434169e-05 5464636800.01 +UniRef50_UPI0001BF5ACC hypothetical protein SMAC_10820, partial 1.01409996284e-05 9.31851078381e-07 -3717846278.6 +UniRef50_Z6NK79 ABC transporter, permease 0.000107142757125 1.2531601458e-05 -38195684552.2 +UniRef50_R9PQX7 1.89631882126e-07 2.80422996974e-07 36653487.1964 +UniRef50_Q9F7B2 Low molecular weight protein tyrosine phosphatase wzb 1.32208368756e-05 2.10014848429e-05 3141143063.69 +UniRef50_I4W6D9 4.26788677261e-07 5.72908213811e-07 58990249.9936 +UniRef50_Q9X0C4 Putative UDP N acetylglucosamine 2 epimerase 8.09625970267e-08 5.91659604223e-07 206174648.762 +UniRef50_B9E6S4 Exogenous DNA binding protein comGC homolog 2.07900680528e-05 1.0361989656e-05 -4209943215.7 +UniRef50_UPI00037DFA06 hypothetical protein 2.66427995971e-07 2.6532199958e-07 -446504.315149 +UniRef50_C9QWV1 Autotransporter family porin 4.96110121037e-06 2.24893517213e-06 -1094934711.66 +UniRef50_G0DVD7 CBS domain protein 4.16324534108e-06 6.31040328758e-05 23795119212.6 +UniRef50_F8J6S6 Dihydrodipicolinate synthase 4.71378691141e-06 3.42727317444e-06 -519381382.914 +UniRef50_UPI0003782A09 hypothetical protein 1.83687879783e-07 8.65825767569e-08 -39202602.4477 +UniRef50_E0SUZ8 2.51747209223e-05 1.82930011172e-05 -2778234733.52 +UniRef50_D8TJ66 1.99097777103e-08 4.4221469465e-08 9814928.29938 +UniRef50_P00892 Acetolactate synthase isozyme 2 large subunit 4.43890317642e-05 6.87836501052e-06 -15143516476.1 +UniRef50_UPI0003B4985D lipase 1.09039583792e-07 1.40566138454e-06 523462132.302 +UniRef50_F4CKZ8 PE PGRS family protein 1.55872867906e-06 1.34448460885e-06 -86492960.2142 +UniRef50_A4WYR6 Alcohol dehydrogenase, zinc binding domain protein 2.9224246766e-06 3.6878919223e-06 309028520.428 +UniRef50_I3TIJ2 Ornithine cyclodeaminase mu crystallin 3.91273889278e-05 6.89406569852e-06 -13012988135.0 +UniRef50_UPI00047B0B98 hypothetical protein 6.84476966812e-08 1.17697263002e-07 19882654.2838 +UniRef50_K9BMT1 Alkyl hydroperoxide reductase subunit F domain protein 4.02806911721e-07 3.88964060348e-06 1407677549.62 +UniRef50_R6LGJ5 Methionine synthase vitamin B12 independent 1.05639735687e-06 1.73715708945e-06 274831057.904 +UniRef50_A1B479 NADH quinone oxidoreductase subunit N 9.34928840233e-05 1.790344957e-05 -30516382275.5 +UniRef50_UPI0003B7991F hypothetical protein 8.12225280766e-07 3.43424025975e-06 1058539622.76 +UniRef50_M9XAR7 2 nitropropane dioxygenase 1.12013646546e-06 0.000132666431113 53106853404.0 +UniRef50_UPI0003B68CBF isomerase 8.64166534329e-08 2.42152662458e-07 62872537.9391 +UniRef50_V9WST0 Phage terminase like protein, large subunit 0.000112989734633 3.97970376628e-05 -29548789942.3 +UniRef50_A6M1B5 9.99154317139e-06 9.94116719189e-06 -20337401.1069 +UniRef50_A6M1B4 3.67658467971e-06 6.69289904245e-06 1217723122.58 +UniRef50_UPI000371C67C hypothetical protein 3.74374854311e-07 4.50404923928e-07 30694272.0983 +UniRef50_UPI000412F481 hypothetical protein 1.78940174216e-07 7.25445671181e-08 -42953212.2064 +UniRef50_B2VDT9 5.17104094322e-06 2.0526704875e-05 6199269964.45 +UniRef50_UPI0001C39674 dehydrogenase 2.3038297867e-07 4.29774687056e-07 80496879.4868 +UniRef50_P57041 Major outer membrane protein P.IA 4.64408840608e-06 2.47659906486e-05 8123458858.8 +UniRef50_R9SN55 Phosphopantothenate cysteine ligase CoaB 2.63989396921e-05 6.32917699228e-06 -8102409485.59 +UniRef50_J9UQD4 1.61042853938e-05 1.41721158092e-05 -780040571.69 +UniRef50_UPI000467BC4C type I secretion protein 2.88135520354e-08 8.53324359379e-08 22817366.9961 +UniRef50_Q5LSU1 Lipid A disaccharide synthase 1.51398123869e-06 4.66698919528e-06 1272908003.83 +UniRef50_Q9RRX9 Probable L asparaginase 1.74774173576e-07 4.43193311577e-05 17821699369.1 +UniRef50_Q0ARD7 Pyridoxine pyridoxamine 5 phosphate oxidase 1.84372989813e-05 7.77267929574e-06 -4305437836.68 +UniRef50_W0YV34 2.72293666138e-06 1.70375022228e-05 5778965776.61 +UniRef50_Q2GCI6 Uridylate kinase 8.24467954184e-08 1.1261468821e-07 12179148.5216 +UniRef50_B9KJE9 Flagellar hook associated 2 domain protein 4.74307812168e-05 1.29889310699e-05 -13904597553.3 +UniRef50_S5CLC3 3.00643564515e-06 6.40348392577e-05 24637915441.1 +UniRef50_UPI000381DE4F hypothetical protein 5.59717388927e-07 2.78542166094e-06 898544127.073 +UniRef50_Q9RSN5 Ferripyochelin binding protein 4.4387673018e-07 7.91450170799e-05 31772616130.8 +UniRef50_Q1YEW0 1.08999629045e-05 3.17769596398e-05 8428299771.6 +UniRef50_A8J5U5 Predicted protein 7.53136887589e-07 9.72072263005e-07 88386897.6946 +UniRef50_U5MSZ1 1.8874299443e-06 7.56904160379e-06 2293736348.15 +UniRef50_UPI000248490E Resolvase 2.51124537924e-07 5.80101009795e-08 -77962667.9749 +UniRef50_E0Y0D2 Nuclease subunit of the excinuclease complex 3.61232877188e-06 7.72536841864e-07 -1146458850.31 +UniRef50_Q2NF24 Predicted thioesterase 9.00868386582e-06 1.74976876848e-05 3427115013.51 +UniRef50_B1JX98 Serine tRNA ligase 4.29866099047e-05 0.000126044756765 33531593125.6 +UniRef50_UPI00047A8CC8 hypothetical protein 3.05089044288e-06 3.92740496053e-07 -1073127752.7 +UniRef50_A6UY58 2.56832733503e-06 9.33243904903e-06 2730754903.93 +UniRef50_G0JNN6 Integral membrane protein MviN 4.03294040779e-07 3.42751020719e-07 -24441960.1446 +UniRef50_Q8ZH57 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 2.1139604217e-05 7.84600436967e-06 -5366789389.17 +UniRef50_I0GCY5 6.95993328778e-06 2.4920390399e-06 -1803743735.1 +UniRef50_W1MH71 4.3951530342e-08 3.7932076754e-06 1513620714.31 +UniRef50_UPI00035C5743 hypothetical protein 2.71462072187e-08 1.14907084665e-07 35430143.1721 +UniRef50_A3UG89 1.27368875872e-08 2.49056560031e-08 4912681.13708 +UniRef50_B6J655 Methionyl tRNA formyltransferase 6.32262001443e-08 5.47331691219e-07 195439327.389 +UniRef50_F5XDX0 Diaminopimelate epimerase 1.38442294196e-06 6.72061300365e-05 26573030877.2 +UniRef50_UPI0003B3BC3C acetoacetate metabolism regulatory protein AtoC 5.05151450558e-08 9.50665823088e-08 17985961.9266 +UniRef50_UPI0002E4BD4A hypothetical protein 4.21855300906e-08 9.37878150949e-07 361602102.425 +UniRef50_A5UJF5 3.70809153955e-05 4.60233826278e-06 -13112000145.4 +UniRef50_A5UJF0 3.09672956657e-05 5.33718096869e-06 -10347191820.1 +UniRef50_D2P269 4.0240429698e-07 1.15831433797e-05 4513801570.78 +UniRef50_W4UBC8 3.43108868539e-06 4.59337104676e-05 17158829979.3 +UniRef50_A5IPS9 Phage envelope protein like protein 2.98810917937e-05 1.60236626432e-05 -5594414197.84 +UniRef50_UPI000234E1DF PREDICTED 5.35348652987e-07 2.87153219976e-07 -100199542.007 +UniRef50_N5MF41 1.25023751016e-05 4.5699401107e-06 -3202421347.75 +UniRef50_Q6GIN8 Protein translocase subunit SecA 1 0.000263615777707 6.68538907199e-05 -79435188316.5 +UniRef50_UPI00037BBD41 hypothetical protein 1.07820983598e-07 6.3752980063e-08 -17790793.8023 +UniRef50_P56690 Isoleucine tRNA ligase 3.6271550682e-08 7.46995573177e-08 15513857.8435 +UniRef50_B7I7J4 Gp12 6.43697788028e-07 1.67973178235e-07 -192055862.771 +UniRef50_A4XRT9 2.09714438257e-06 5.24235426359e-06 1269759825.03 +UniRef50_Q5KYA3 Glutamate 5 kinase 4.50948462023e-08 1.30324641959e-07 34408314.4342 +UniRef50_D2ZQE3 Topoisomerase DNA binding C4 zinc finger domain protein 3.12598734959e-05 1.05311394093e-05 -8368444320.93 +UniRef50_UPI00047AE2E4 hypothetical protein 1.55301952936e-07 2.41081799138e-07 34630376.5488 +UniRef50_Q9RSF1 5.32889630565e-06 0.000426798148613 1.70152309166e+11 +UniRef50_R7E1V4 2.72131888346e-07 8.5021082059e-08 -75538928.6059 +UniRef50_Q650K4 4 deoxy L threo 5 hexosulose uronate ketol isomerase 1.46570997778e-06 8.48172218468e-05 33650028179.6 +UniRef50_O23404 Pyruvate, phosphate dikinase 1, chloroplastic 5.3450631818e-08 1.51984399466e-07 39779291.1448 +UniRef50_UPI000262D9D9 ABC transporter ATP binding protein, partial 2.32173908504e-05 2.4231643939e-06 -8394884394.34 +UniRef50_A6LZA1 Transcriptional regulator like protein 1.77262648794e-06 1.63319366473e-05 5877772174.18 +UniRef50_C6AUH7 Acriflavin resistance protein 6.06721395648e-05 1.2301847637e-05 -19527680421.5 +UniRef50_S9R213 TRAP type mannitol chloroaromatic compound transport system, large permease component 4.27747540973e-07 1.05814169692e-06 254497856.562 +UniRef50_A8IC01 Aminotransferase 9.40435703163e-06 1.51186026547e-06 -3186297796.33 +UniRef50_R7II06 Oligopeptide transport ATP binding protein OppD 1.31375634168e-06 3.05765515478e-05 11813749519.6 +UniRef50_C5N1T5 9.98338770953e-05 5.98672507348e-05 -16135017507.4 +UniRef50_C5N1T1 9.30784972031e-05 1.21973853774e-05 -32652697366.9 +UniRef50_Q6A6S6 ABC transporter associated permease 1.82825274275e-06 7.44661276013e-05 29324801447.4 +UniRef50_A0A023S256 LysR family transcriptional regulator 2.5844995223e-06 0.000121824555466 48138673824.6 +UniRef50_Q6FFA8 Uroporphyrinogen III synthase (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing]) 2.23805922247e-06 7.10997283463e-05 27800300853.0 +UniRef50_Q9R9D5 Lipopolysaccharide core heptosyltransferase RfaQ 3.23524453727e-05 3.31661323203e-06 -11722121744.9 +UniRef50_R0DKH2 Binding protein dependent transport systems inner membrane component 1.86320994153e-07 4.99971063768e-07 126624382.023 +UniRef50_UPI00036FA71C hypothetical protein 5.92837316449e-08 9.27582841116e-08 13514087.6098 +UniRef50_UPI00037E9002 hypothetical protein 0.000423848837478 6.08194912561e-06 -1.68657619404e+11 +UniRef50_A0A023B3E8 1.70853790725e-08 4.41606052237e-09 -5114759.3687 +UniRef50_I0C5P0 CobB CobQ like glutamine amidotransferase domain protein 0.000215385728682 4.42743007176e-05 -69079783242.4 +UniRef50_A8L8V5 Cobyrinic acid ac diamide synthase 9.11023536428e-08 1.45874398602e-07 22112146.6786 +UniRef50_P32712 Formate dependent nitrite reductase complex subunit NrfG 3.6331233913e-05 2.98299702217e-06 -13463092461.7 +UniRef50_UPI0003B66B13 hypothetical protein 4.08610093254e-07 1.95525529941e-07 -86024853.0511 +UniRef50_UPI0004672483 hypothetical protein 4.2384777163e-06 6.32821511128e-06 843652630.315 +UniRef50_Q5F629 NADH quinone oxidoreductase subunit N 7.86429143391e-07 1.06878018414e-05 3997305661.69 +UniRef50_W4UKK8 DNA binding protein 1.87383008162e-06 5.39007325924e-05 21003898985.5 +UniRef50_Q87LZ7 Phosphoglucosamine mutase 4.17461772813e-08 8.10450830413e-07 310335501.536 +UniRef50_Q8XMU3 Diaminopimelate decarboxylase 2.07257297833e-06 1.50093142864e-05 5222721217.75 +UniRef50_Q58197 4.46884734839e-05 1.03472934489e-05 -13863955793.8 +UniRef50_UPI00037BD840 hypothetical protein 7.96841393742e-07 2.96158090307e-07 -202131993.672 +UniRef50_Q1IS93 DNA directed RNA polymerase subunit alpha 0.000128356428086 4.40918622334e-05 -34018639277.2 +UniRef50_UPI00026CC0A8 cell wall hydrolase 2.45775202057e-07 1.78947830185e-07 -26979030.0888 +UniRef50_UPI000377CCD2 hypothetical protein 1.95951013886e-08 6.05348479528e-08 16527878.0752 +UniRef50_UPI000380B7CD hypothetical protein 7.46249120938e-08 3.56681407973e-07 113869668.609 +UniRef50_UPI0003450375 hypothetical protein 7.93213199202e-08 4.89403613806e-08 -12265165.7787 +UniRef50_B9KW49 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 3.08357767643e-05 2.43059016624e-06 -11467522400.5 +UniRef50_Q1G991 Orotidine 5 phosphate decarboxylase 1.647912984e-07 1.85393006001e-07 8317162.16991 +UniRef50_A0LDR9 NADH quinone oxidoreductase subunit I 3.81039098334e-07 1.57425800357e-07 -90275432.4371 +UniRef50_F1BCI2 2.81032373911e-06 4.09091265907e-06 516989461.581 +UniRef50_Q9RXP2 1.7184491147e-06 0.000640882879768 2.58038524084e+11 +UniRef50_Q9RXP3 7.43570562389e-07 5.89429468746e-05 23495802403.9 +UniRef50_M5JML7 Inner membrane translocator 6.21868805603e-07 4.50152708175e-06 1566265654.84 +UniRef50_W9V4Y7 4.37646018133e-07 3.87564821193e-07 -20218393.7701 +UniRef50_Y9M1E8 Nitrate reductase, alpha subunit 0.00013263697848 2.31696803401e-05 -44193291573.9 +UniRef50_A3K427 Possible phenol degradation enzyme 6.15001607609e-05 1.39959996445e-05 -19178012784.3 +UniRef50_UPI00017453E0 probable helicase 5.51662841208e-08 6.27575390458e-06 2511327557.57 +UniRef50_UPI00046FF946 hypothetical protein 1.48753252773e-06 8.41800360771e-07 -260689999.826 +UniRef50_B2JWI7 Major facilitator superfamily MFS_1 9.4766357036e-07 4.89354478327e-05 19373257383.0 +UniRef50_E3NTU6 4.38069876142e-06 4.20800787856e-06 -69717428.566 +UniRef50_UPI00046C1753 PREDICTED 1.4031919668e-07 6.07647541518e-07 188666187.575 +UniRef50_G2AN26 4 alpha L fucosyltransferase family protein 8.33797486433e-06 3.18114942752e-06 -2081873710.2 +UniRef50_P24169 Ornithine decarboxylase, inducible 4.17644607316e-05 8.19058828315e-06 -13554184305.2 +UniRef50_G4KST8 Aminopeptidase 2.61064235557e-06 1.47045662343e-06 -460306971.717 +UniRef50_Q21VQ3 Transposase, IS4 family 7.88169233005e-07 1.65997815307e-07 -251178236.227 +UniRef50_X4YVT9 Nitronate monooxygenase family protein 7.43873686032e-05 8.01951731881e-05 2344681980.7 +UniRef50_A5F974 Pantothenate synthetase 2.68498612858e-05 1.16905671335e-05 -6119993074.74 +UniRef50_UPI0003C1ACBA PREDICTED 1.42532056124e-07 1.9025709132e-07 19267182.3607 +UniRef50_B7UFR8 Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD 3.47182694892e-05 8.52848478275e-06 -10573137470.8 +UniRef50_UPI0002555659 inner membrane translocator 1.7451607157e-07 2.09116261108e-07 13968521.1086 +UniRef50_P76017 2.46487907319e-05 3.15089770205e-06 -8678963224.94 +UniRef50_UPI000380A70F hypothetical protein 1.71168184271e-06 5.88902687112e-07 -453279723.165 +UniRef50_UPI00035FC337 general secretion pathway protein I, partial 6.7380566763e-06 9.17955376606e-07 -2349646315.36 +UniRef50_P0DD78 DNA repair protein RadA homolog 9.85603103999e-07 3.08994113823e-05 12076571485.7 +UniRef50_P9WPR0 7.9806762976e-07 7.38719073985e-05 29500805831.5 +UniRef50_A7WYY2 Ribulokinase 0.000220242009424 3.94761243042e-05 -72977406069.8 +UniRef50_D3ZPT0 Protein RGD1566084 1.98648664883e-07 1.51384834852e-07 -19080988.1759 +UniRef50_S1S766 1.15374790714e-06 2.83473428829e-07 -351340486.363 +UniRef50_Q5HFZ9 Glucose specific phosphotransferase enzyme IIA component 0.000237000252558 7.41680068775e-06 -92685656825.7 +UniRef50_G4L4Q8 Cation transporting ATPase 9.47563118184e-05 3.73889441871e-05 -23159910289.5 +UniRef50_D5V8P7 23S ribosomal RNA G745 methyltransferase 2.97092631875e-06 8.07238626402e-05 31389814528.8 +UniRef50_F3U2V4 Heat shock protein Hsp20 0.000100007569525 8.94115872954e-05 -4277728053.41 +UniRef50_I7EN44 Acetylornithine deacetylase ArgE 1.4200836406e-05 5.25503072435e-06 -3611531531.06 +UniRef50_Q0A8Z1 Ribonuclease 3 2.30263064621e-07 5.41485144986e-07 125644172.968 +UniRef50_O59469 3 hydroxy 3 methylglutaryl coenzyme A reductase 2.9299139847e-05 9.67870203856e-06 -7921011513.1 +UniRef50_B1Y4X6 Mg2 transporter protein CorA family protein 8.39843190883e-06 4.70811396981e-06 -1489826637.28 +UniRef50_J8V3X8 1.62737238304e-06 9.20726248106e-06 3060094648.28 +UniRef50_F2QCR4 ABC transporter, ATP binding permease protein 4.14869679308e-05 3.9511032403e-05 -797709420.028 +UniRef50_UPI0003799B60 hypothetical protein 4.95041079867e-08 1.1217148564e-07 25299589.3738 +UniRef50_D7T3T0 5.91356721652e-08 6.9181370599e-08 4055571.73231 +UniRef50_UPI00037A9531 hypothetical protein, partial 5.48281957028e-08 7.89531889862e-08 9739555.83547 +UniRef50_Q5VJ09 3.95221564212e-07 8.85744192428e-08 -123797215.408 +UniRef50_A4WGI4 Transcriptional regulator, MarR family 1.34850994534e-05 6.64423667769e-06 -2761740249.38 +UniRef50_R9SJH6 Energy converting hydrogenase A subunit J EhaJ 2.14704736384e-05 2.11443941661e-06 -7814268540.59 +UniRef50_UPI0001BF5D71 hypothetical protein SMAC_11478, partial 1.00550959349e-05 1.23354759653e-06 -3561367316.77 +UniRef50_G7UA16 UDP glucose 4 epimerase 1.36935667056e-06 4.61290382191e-05 18070032704.2 +UniRef50_UPI00046386D9 aldehyde activating protein 2.59727270574e-06 8.96305328935e-07 -686701403.235 +UniRef50_A4ACP7 Arabinose efflux permease 6.87495341457e-07 1.64830945294e-07 -211006030.544 +UniRef50_T9BKP2 1.96144680482e-05 1.13549836751e-05 -3334455196.69 +UniRef50_T1ZVL8 TetR AcrR family transcriptional regulator 2.88938029336e-05 2.16098845638e-05 -2940607229.62 +UniRef50_B2I6G9 Beta hexosaminidase 4.71467724987e-08 1.14975335073e-07 27383223.0613 +UniRef50_P19940 RNA polymerase sigma G factor 1.46312398781e-06 1.82856844879e-05 6791474109.92 +UniRef50_M9RAR4 3.25873353263e-07 1.11332846147e-07 -86612635.4308 +UniRef50_D7CI61 Two component system response regulator 1.82774032426e-05 5.09338498578e-05 13183808238.2 +UniRef50_P39336 2.33050519877e-05 4.5698479377e-06 -7563631781.79 +UniRef50_UPI000373730F hypothetical protein 1.68660482147e-07 7.17189443581e-08 -39136488.4118 +UniRef50_M9VFS5 1.36276530269e-06 4.79390722486e-05 18803426669.6 +UniRef50_UPI000479ED1E 50S ribosomal protein L4 1.49263388996e-07 4.48869899116e-07 120954824.721 +UniRef50_E6U991 Cys Met metabolism pyridoxal phosphate dependent protein 2.17848032856e-06 1.62473756342e-05 5679785679.63 +UniRef50_E3QJF9 THO complex subunit 2 9.53890596936e-08 2.09871419826e-07 46217933.6418 +UniRef50_Q2JDK2 Elongation factor 4 0.000275981586261 0.00068332859228 1.6445098504e+11 +UniRef50_UPI000262AF83 anhydrase 2.64089175491e-07 8.42254449895e-08 -72613195.1798 +UniRef50_P42403 Aryl phospho beta D glucosidase BglC 1.21746087969e-05 6.80641567764e-05 22563296361.2 +UniRef50_B0JXE8 N acetyl gamma glutamyl phosphate reductase 1.17499261781e-07 2.5407562425e-07 55137553.5092 +UniRef50_B9DV71 ABC transporter ATP binding protein 4.44841646062e-05 9.52587404094e-06 -14113090887.7 +UniRef50_UPI000469FAB8 MULTISPECIES 2.77093944878e-07 2.87288784341e-07 4115781.79596 +UniRef50_UPI00036048A6 hypothetical protein 9.49489645015e-07 5.99640612838e-07 -141238347.42 +UniRef50_R4Q5Z5 Phosphoribosylglycinamide formyltransferase 0.000102107997844 5.75428048635e-05 -17991515282.6 +UniRef50_V5PK16 Response regulator receiver protein ExsF 2.43007156907e-07 4.97213616151e-07 102626267.061 +UniRef50_UPI000361FBB1 hypothetical protein 7.79901561225e-08 5.82155248329e-07 203537634.525 +UniRef50_UPI00047CDCB7 ABC transporter permease 3.78768270404e-07 9.13657493146e-08 -116027924.589 +UniRef50_UPI00041FB107 symporter 8.06112057043e-07 2.10052302028e-06 522569590.069 +UniRef50_G7LZ27 Transcriptional regulator, TetR family 1.21454345351e-05 1.34412873477e-05 523151682.349 +UniRef50_A5F649 Glutamate tRNA ligase 2.24585750647e-05 4.62977585948e-06 -7197705023.11 +UniRef50_B1MB87 Urease accessory protein UreG 0.000252455685787 0.000464607963299 85648477832.8 +UniRef50_A5UN12 Predicted acyltransferase 5.60904700247e-06 2.44063392719e-06 -1279127239.29 +UniRef50_Q6GFH6 Low molecular weight protein tyrosine phosphatase PtpA 0.000602798153093 9.37329667736e-06 -2.39572896677e+11 +UniRef50_P20580 Anthranilate synthase component 1 1.07137371998e-05 4.78253038084e-06 -2394500976.91 +UniRef50_G3TAD7 3.86599249733e-06 3.60085752092e-07 -1415377575.37 +UniRef50_K0DH79 Alpha beta hydrolase fold protein 8.18432918586e-06 7.16026379468e-06 -413427765.115 +UniRef50_B9EBX9 DNA damage repair protein homolog 0.000167956175137 7.32120057833e-05 -38249383809.8 +UniRef50_U6IMY1 Growth factor receptor bound protein 1.15911126283e-07 7.07463750768e-08 -18233564.2958 +UniRef50_D4KGU1 Transcriptional regulator, LacI family 1.11127647533e-05 1.24935010227e-05 557420175.496 +UniRef50_Q2YXL5 ATP dependent protease subunit HslV 0.00032602442122 0.000130957267463 -78751003714.9 +UniRef50_Q5LFB0 1.46312398781e-06 4.03402987726e-05 15695192537.2 +UniRef50_UPI000248515B hypothetical protein 5.26650162827e-08 2.52907117708e-07 80840193.5922 +UniRef50_E8RRB9 Fe S metabolism associated SufE 1.78665097311e-06 2.63449781625e-07 -614935012.781 +UniRef50_Q54J34 Adenylosuccinate lyase 2.71477811088e-08 3.62350523105e-05 14617575379.5 +UniRef50_Q6GC63 Exotoxin 0.000139026155469 3.06395030568e-05 -43757021632.5 +UniRef50_Q8ZJR1 UPF0761 membrane protein YPO0028 y3801 YP_0029 1.97095925607e-05 2.47472099328e-06 -6957929147.42 +UniRef50_UPI000372EDA6 hypothetical protein 5.05846124056e-08 4.56076928064e-07 163702223.781 +UniRef50_A5UN19 Formate dehydrogenase accessory protein FdhD, FdhD 4.42383343158e-05 3.67614155849e-06 -16375454970.2 +UniRef50_Q89ZL8 Alpha N acetylglucosaminidase 3.65321426232e-08 4.09620997556e-05 16522153858.6 +UniRef50_W8RNU6 PhbF 3.7519764091e-06 4.47892959973e-07 -1333899034.08 +UniRef50_P57099 Glycerate kinase 5.85627605924e-05 0.000102439860954 17713723848.5 +UniRef50_X2HW61 Iron ABC transporter substrate binding protein 1.12347020496e-06 0.000121133877849 48449674259.2 +UniRef50_UPI00047EF55F amidohydrolase 1.39886147811e-07 2.37297030521e-07 39325968.716 +UniRef50_Q5HM69 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.000261802491718 0.00013839224818 -49822229730.3 +UniRef50_UPI0002886FB4 histidine ammonia lyase 1.14158806351e-06 2.1406582573e-07 -374452109.37 +UniRef50_B0V4X0 Type IV pilus biogenesis protein 1.22028536353e-06 7.50919244064e-05 29822887188.6 +UniRef50_D3QJ04 DNA repair exonuclease family protein YhaO 0.000195842396823 2.82669271731e-05 -67652273480.0 +UniRef50_Q1GKI8 Peptidase M16 like protein 4.19620753013e-05 7.49823240174e-06 -13913476297.5 +UniRef50_A6LXP5 NADH quinone oxidoreductase subunit N 1.08369183398e-06 1.78184843867e-05 6756041112.52 +UniRef50_E0NA78 2.99988912829e-06 5.10357041009e-06 849281948.535 +UniRef50_E2XU95 Transcription factor jumonji 4.43949146643e-06 3.46074588866e-06 -395131600.305 +UniRef50_V9WFJ2 0.000463255626377 4.43972613021e-05 -1.69098261951e+11 +UniRef50_UPI0003958BDE endonuclease 7.78154268047e-09 3.27438093957e-06 1318766262.21 +UniRef50_Q5GWI0 Phenol hydroxylase 1.47065317888e-06 2.17133020999e-07 -506061470.158 +UniRef50_Q49YF5 OsmC like protein 7.07660991824e-05 1.99538314321e-05 -20513536027.4 +UniRef50_A4T2T4 Peptide deformylase 9.64759829975e-08 5.32643944902e-07 176086358.603 +UniRef50_U5NRQ9 1.09248292142e-05 4.48469382986e-05 13694771708.5 +UniRef50_G2JHQ9 Histone acetyltransferase HPA2 2.31586496233e-06 1.83692709911e-05 6480957011.27 +UniRef50_UPI00036803C3 hypothetical protein 4.07414486826e-08 1.90993644128e-06 754616956.115 +UniRef50_Q3IV36 0.000163512920163 5.75947224952e-06 -63687002775.0 +UniRef50_R9SMB0 Dihydropteroate synthase related protein 2.75224760895e-05 2.19908147813e-05 -2233199551.24 +UniRef50_Q8R7B8 N acetyl gamma glutamyl phosphate reductase 5.98860314529e-08 2.91103422057e-07 93345297.9433 +UniRef50_UPI0003721DDA hypothetical protein 2.85847882784e-08 5.64687380804e-08 11257092.7096 +UniRef50_P0AFD8 NADH quinone oxidoreductase subunit I 0.000153623825534 6.62627301432e-05 -35268746250.5 +UniRef50_F8DZR5 Pyruvate 1.91850396126e-06 8.62315452881e-05 34038209421.0 +UniRef50_K7RJP7 Molybdenum cofactor synthesis domain containing protein 2.90972546522e-05 0.000100150474729 28685056866.1 +UniRef50_R9ZCH5 NADH dehydrogenase 2.30268795425e-07 1.99059997274e-06 710667297.977 +UniRef50_B1KCA5 Transcriptional regulator, LysR family 6.10688476316e-06 5.83035794767e-05 21072446181.3 +UniRef50_UPI00039CA1F9 hypothetical protein 5.62031342102e-08 1.05329796542e-06 402539419.089 +UniRef50_C1CY21 1.51393573381e-06 2.57986490857e-05 9804036787.11 +UniRef50_A1AZ65 1.48899910315e-06 3.28399845965e-07 -468548162.278 +UniRef50_H8FQH1 4.66864224341e-06 1.31805538018e-06 -1352673033.01 +UniRef50_X2HD61 Phosphopantothenoylcysteine decarboxylase Phosphopantothenoylcysteine synthetase 2.40620241729e-06 4.5521835064e-05 17406309987.8 +UniRef50_UPI0003503787 PREDICTED 6.6815079696e-07 2.55008737831e-06 759760891.85 +UniRef50_L0A294 1.68250939369e-07 6.1020541397e-06 2395549167.93 +UniRef50_M4YWX8 Acetyl transferase GNAT family 0.000101882247088 0.000113517936388 4697470556.37 +UniRef50_UPI0003B796E5 hydrolase 1.00451697405e-07 5.33177551417e-08 -19028550.8902 +UniRef50_R5QRF5 5.0122610437e-08 2.91026892623e-07 97256014.9465 +UniRef50_E1ZM28 Expressed protein 1.93707655196e-07 7.66271832032e-06 3015331260.58 +UniRef50_F8KP37 Phospholipase A1 1.5344958896e-06 3.2847708167e-05 12641528052.7 +UniRef50_E4CH69 3.6296729697e-06 3.39511860912e-05 12241166934.0 +UniRef50_B2TQB7 LicD family protein 9.74408304798e-06 1.39840642983e-05 1711732461.18 +UniRef50_F2A4B5 1.07138880474e-06 5.06931692096e-08 -412067353.407 +UniRef50_B9TM50 1.90576807068e-06 8.99441741714e-06 2861774728.68 +UniRef50_T1IZI3 5.16367131933e-08 1.68537003267e-08 -14042329.1298 +UniRef50_Q8Y489 Lipoyl [GcvH] 6.42906118825e-08 1.04936613748e-05 4210464959.75 +UniRef50_UPI00047DCDB5 hypothetical protein 8.70414937975e-08 1.1451826951e-07 11092711.5331 +UniRef50_UPI0003668AD0 hypothetical protein 8.018520941e-07 1.16964075422e-06 148480795.365 +UniRef50_R7KQ82 ABC type antimicrobial peptide transport system ATPase component 8.35092905202e-06 1.85230689413e-05 4106617699.5 +UniRef50_UPI00035D87E2 hypothetical protein, partial 1.10036544522e-06 6.94733390921e-07 -163758637.986 +UniRef50_Q08WK0 6.63170275248e-08 2.41908881056e-08 -17006839.4294 +UniRef50_C6VMG4 Bifunctional protein 5.99672343014e-05 3.96685622436e-05 -8194823002.45 +UniRef50_UPI0003800150 hypothetical protein 2.88067384887e-08 1.47620535935e-07 47966588.0382 +UniRef50_A5UJI5 Type I restriction modification system methylase, subunit S 1.65950697979e-05 3.02372053093e-06 -5478920238.27 +UniRef50_UPI0003C11576 PREDICTED 1.53373935604e-06 9.96009123698e-07 -217088293.488 +UniRef50_UPI00037C0DCF MULTISPECIES 6.18036895804e-07 9.63828935724e-07 139600489.861 +UniRef50_B5YFK5 Queuine tRNA ribosyltransferase 4.97834995228e-08 6.70574443087e-07 250620921.878 +UniRef50_Q5HKG6 Diacetyl reductase [ acetoin forming] 0.000118060912709 3.26473860871e-05 -34482488839.1 +UniRef50_D4H9E3 1.42447542961e-06 7.24002882446e-05 28653806604.6 +UniRef50_Q5HKY5 0.000126351677471 1.54011986029e-05 -44792069834.5 +UniRef50_UPI00046A628C PAS sensor protein 2.37981553299e-06 7.59611350085e-07 -654096310.778 +UniRef50_A5UP86 2.70922958506e-06 8.01764810481e-06 2143073698.04 +UniRef50_B9KX55 AcrB AcrD AcrF family protein 1.96494400835e-05 3.53186430201e-06 -6506863127.89 +UniRef50_Q8XS05 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.04790631602e-08 3.59592143921e-08 -22010331.9815 +UniRef50_E8QNX4 Type II adenine specific DNA methyltransferase 1.37267632307e-06 3.12030774909e-05 12042899011.6 +UniRef50_K7E6V3 4.5867758379e-07 2.6470728522e-07 -78308189.8159 +UniRef50_X0UE20 Marine sediment metagenome DNA, contig 2.11539601747e-07 3.95847297191e-07 74407278.3605 +UniRef50_Q1GLI8 Inner membrane protein 0.000223609477621 5.53718822241e-06 -88038459278.3 +UniRef50_E5QR95 2.43688858955e-05 1.72957573403e-05 -2855508794.78 +UniRef50_O32037 tRNA threonylcarbamoyladenosine dehydratase 8.72754530524e-05 1.47079260956e-05 -29296401136.2 +UniRef50_UPI0002375EA2 ABC transporter like protein 3.09280551505e-07 6.32267070895e-08 -99334956.4105 +UniRef50_Q9ZK41 Putative glucose galactose transporter 9.42929197787e-07 5.46910420443e-05 21698772719.6 +UniRef50_U6MX87 3.95121475878e-07 3.02166697193e-07 -37526984.8385 +UniRef50_UPI000478606A phosphodiesterase 2.85727387897e-07 1.56260222767e-07 -52267483.3038 +UniRef50_Q5HRH5 Hydrolase, haloacid dehalogenase like family 8.06485397718e-05 3.64355297745e-05 -17849334690.6 +UniRef50_P19581 Capsule biosynthesis protein CapC 0.000260090826627 5.26870309618e-05 -83731457440.7 +UniRef50_B3E8Z1 Glucose 1 phosphate adenylyltransferase 4.41758046959e-08 2.63465882349e-07 88530095.3404 +UniRef50_H8H606 4.85408472581e-07 3.43647983281e-05 13677525431.5 +UniRef50_Q5HKS4 IS1272 like transposase, degenerate 5.60407353273e-05 3.27916601224e-05 -9385936958.45 +UniRef50_Q72PA7 Adenylosuccinate synthetase 4.8197237564e-08 9.02609937956e-08 16981654.571 +UniRef50_UPI0003B5996F coproporphyrinogen III oxidase 4.32175726922e-07 1.27271392252e-07 -123093621.503 +UniRef50_A6U4R9 PTS system glucoside specific EIICBA component 0.000405297631219 6.92904236015e-05 -1.35650232987e+11 +UniRef50_Q2FEB2 HTH type transcriptional regulator SarZ 8.53992392461e-05 7.98153257284e-06 -31254478206.1 +UniRef50_T2FXM3 Sulfatase 1.79932205866e-05 4.01791435631e-06 -5642002621.46 +UniRef50_UPI000372A769 hypothetical protein 7.4136398718e-08 7.86772038307e-08 1833178.74594 +UniRef50_F5ZKR4 Oxidoreductase 1.81774954504e-06 9.22098481126e-06 2988776924.89 +UniRef50_N9B926 9.07418242453e-07 6.14008279025e-05 24421931817.4 +UniRef50_UPI00047A6086 AMP binding protein 6.76094308422e-07 2.39991459267e-06 695927402.405 +UniRef50_A7WXZ6 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.000125288834037 5.40050450354e-05 -28778140370.4 +UniRef50_UPI00046EFEDF ABC transporter substrate binding protein 7.01895217862e-08 4.82083142133e-07 166286509.037 +UniRef50_C1N027 Predicted protein 2.09495082077e-06 4.63177670129e-06 1024147738.32 +UniRef50_F0XWK7 Expressed protein 3.05331708627e-07 2.37157257432e-06 834166793.106 +UniRef50_UPI000455FDEB hypothetical protein CONPUDRAFT_131066 1.58456162517e-07 2.33181913963e-07 30167702.8468 +UniRef50_L8MS48 1.72015231234e-07 1.26613840431e-07 -18329098.6049 +UniRef50_A9GPH2 Serine hydroxymethyltransferase 7.55849061455e-07 7.94781646276e-07 15717562.2488 +UniRef50_C3A4D2 Permease, probably tetracycline resistance protein 7.12165429876e-06 2.15620013285e-05 5829745298.87 +UniRef50_U4QA39 Xanthine dehydrogenase, iron sulfur binding subunit 9.97156568122e-05 2.72763895826e-05 -29244621110.4 +UniRef50_B1LL17 D galactonate dehydratase 2 2.11680353613e-05 8.39149493093e-06 -5158046157.53 +UniRef50_Q6GIA3 3 oxoacyl [acyl carrier protein] synthase 2 0.000142773923639 7.12598335296e-05 -28871115753.7 +UniRef50_Q9Z913 Putative GMP synthase [glutamine hydrolyzing] 1.34882106984e-07 2.18266354433e-07 33663243.9349 +UniRef50_UPI00035C8380 hypothetical protein 1.85071072853e-05 4.78850859645e-06 -5538366636.81 +UniRef50_A5UMB3 1.39143036675e-05 1.33321449211e-05 -235024629.813 +UniRef50_UPI000370ED97 hypothetical protein, partial 2.32651918679e-07 3.69070203753e-07 55073735.725 +UniRef50_P27243 O antigen ligase 2.63937895003e-05 9.72610698141e-06 -6728947968.34 +UniRef50_A0A014MKE4 5.48811665997e-06 0.000154443280694 60135027605.9 +UniRef50_UPI000350731C PREDICTED 2.3073715705e-07 3.61022867067e-07 52597939.9193 +UniRef50_M4WZV5 Dicarboxylate transporter 5.99184109289e-06 6.47861144854e-06 196515165.92 +UniRef50_K1X7T9 1.22774148162e-07 7.92890767729e-08 -17555456.9416 +UniRef50_A5UM90 Adhesin like protein 3.79875505127e-05 3.23189022329e-06 -14031286558.7 +UniRef50_UPI00037FBFF6 hypothetical protein 7.9962931421e-08 1.00297576993e-05 4016854245.51 +UniRef50_L7WZN3 7.37517567007e-05 2.5899977473e-05 -19318350481.6 +UniRef50_B1N6N2 Putative hemolysin activator related protein 2.51414277974e-07 2.55082714311e-06 928301190.626 +UniRef50_Q2KWY0 Ribonuclease 3 6.91259732074e-08 5.15514829972e-07 180212659.283 +UniRef50_A5IT97 Diacylglycerol kinase 4.21577180547e-05 1.7730616839e-05 -9861520515.02 +UniRef50_K6ZP91 3.22896389661e-07 1.44504775538e-07 -72018883.7327 +UniRef50_UPI00037C95EF hypothetical protein, partial 2.68083552852e-06 2.75735429243e-07 -970968423.976 +UniRef50_P77228 Putative inner membrane metabolite transport protein YdfJ 3.05053395198e-05 9.09304605775e-06 -8644405629.0 +UniRef50_UPI00042356A9 exodeoxyribonuclease III 8.45882300374e-07 2.46361785765e-07 -242033788.692 +UniRef50_B5E2W4 Acetate kinase 7.00227893116e-05 8.10106834429e-05 4435947697.43 +UniRef50_R4YDZ3 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 4.36770336414e-06 1.37569893719e-06 -1207908903.18 +UniRef50_B9DND6 Pyrrolidone carboxylate peptidase 3.30425434305e-07 5.832169449e-07 102055034.928 +UniRef50_UPI0004754876 shikimate kinase 1.84592757073e-07 1.45019687619e-07 -15976133.7548 +UniRef50_UPI000252B25E PREDICTED 2.15375695616e-06 2.34678585836e-06 77928136.5491 +UniRef50_I3UA32 Transketolase 1.21813938717e-06 3.07901362632e-07 -367474260.383 +UniRef50_A0A024J8E7 Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit 3.36976957085e-07 6.54536719473e-07 128202772.973 +UniRef50_G4KZ65 ATP dependent zinc metalloprotease FtsH 2.82389844379e-06 1.84294018492e-05 6300133225.82 +UniRef50_UPI00046FC736 hypothetical protein 1.33169101916e-07 9.24807512013e-08 -16426386.4857 +UniRef50_Q7W2B7 Shikimate kinase 1.51015677332e-07 1.41973602414e-07 -3650396.60313 +UniRef50_R9SIK3 2 5 RNA ligase LigT 2.99703261793e-05 6.60899396553e-06 -9431256490.49 +UniRef50_P33924 3.90289729606e-05 4.81982532273e-06 -13810652694.9 +UniRef50_UPI00047E33F6 ABC transporter ATP binding protein 9.75603447948e-08 3.0628788109e-07 84265867.7772 +UniRef50_UPI0004649A94 hypothetical protein 4.78784669426e-07 4.58787879958e-08 -174769416.686 +UniRef50_UPI000471C14A tryptophan synthase subunit alpha, partial 9.70385336441e-08 1.94486019864e-07 39340746.0021 +UniRef50_UPI000225DE65 nitrogen regulatory IIA 1.4768953368e-07 3.66114899909e-07 88181000.7273 +UniRef50_UPI0002558CA8 membrane protein 1.65377251517e-07 3.94865898355e-07 92647382.8709 +UniRef50_Q4K9S7 NADH quinone oxidoreductase subunit K 6.37780455637e-07 5.24558314715e-05 20919583074.1 +UniRef50_A4XGW8 3.42914982539e-06 2.6134221699e-06 -329319264.625 +UniRef50_B4RKU4 Drug resistance translocase family protein 1.26390398057e-06 2.83004940982e-05 10915003206.7 +UniRef50_G3GQA9 2.2672675387e-08 1.4187648155e-07 48124039.3432 +UniRef50_Q9JPD1 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 7.09666095732e-08 1.73053226474e-07 41213619.9866 +UniRef50_Q9LV91 4 alpha glucanotransferase DPE1, chloroplastic amyloplastic 8.6937134172e-08 4.90259193479e-06 1944138937.74 +UniRef50_UPI0002491571 tRNA delta isopentenylpyrophosphate transferase 2.56385431654e-07 9.62958256908e-08 -64630138.4476 +UniRef50_Q6BSU5 Sulfate adenylyltransferase 6.64377924913e-07 4.05552810896e-07 -104490874.67 +UniRef50_I3TNE9 5.85087720182e-07 1.67487468487e-07 -168590346.141 +UniRef50_UPI00036C6220 MULTISPECIES 3.31066369954e-08 1.1749367326e-07 34068082.0854 +UniRef50_UPI00046D83DE hypothetical protein 1.92573511679e-07 2.59776496185e-08 -67256793.8751 +UniRef50_UPI00036A4575 hypothetical protein 6.06509876934e-07 1.15977455752e-07 -198033957.941 +UniRef50_G2LQE7 6.88290388782e-08 2.8311956795e-07 86511716.2269 +UniRef50_UPI0003619428 Cro Cl family transcriptional regulator 1.70891160263e-06 2.21229077935e-07 -600595691.139 +UniRef50_A7HCR8 tRNA dimethylallyltransferase 2.40210377898e-07 9.24970101577e-08 -59633699.2035 +UniRef50_UPI00044020B0 PREDICTED 1.95561353559e-07 1.48932452284e-07 -18824659.6457 +UniRef50_A6LRG0 ErfK YbiS YcfS YnhG family protein 2.65765921374e-06 3.09480315259e-05 11421170464.3 +UniRef50_UPI0004724C7E 30S ribosomal protein S15, partial 2.67370777035e-06 4.09628047311e-06 574310057.034 +UniRef50_UPI0004545041 PREDICTED 1.66897971451e-07 8.74826914429e-08 -32060923.0743 +UniRef50_UPI00047AA68A protein phosphatase 9.28596304572e-08 1.32390658846e-07 15959161.2608 +UniRef50_A5UX75 Dihydroorotate dehydrogenase 8.97886785067e-08 1.58302236431e-07 27659764.0899 +UniRef50_UPI000365F67B hypothetical protein 4.35313762625e-07 1.24329168043e-07 -125548297.043 +UniRef50_V6U9N7 LacI family transcriptional regulator 5.64343859773e-08 1.26471651462e-07 28274903.5301 +UniRef50_P76498 9.31155044788e-06 7.46871350035e-06 -743975889.87 +UniRef50_P76499 3.53293480451e-05 7.20284646817e-06 -11355013837.6 +UniRef50_W8EV27 1.07989108761e-07 2.08548832562e-07 40597194.505 +UniRef50_Q5HGC3 Glutamine synthetase 0.000142097980388 0.000309080522931 67412901530.8 +UniRef50_Q2FEH9 Phosphosugar binding transcriptional regulator, RpiR family 0.000272650312859 0.000111762501149 -64952383902.8 +UniRef50_P33361 Putative osmoprotectant uptake system permease protein YehY 2.90695454741e-05 1.63459430921e-06 -11075826450.0 +UniRef50_E8LCX8 Lipoprotein 7.88247515973e-08 1.11570387623e-07 13219815.0977 +UniRef50_A0A059FU98 Dehydrogenase 1.41400017054e-07 8.29958870596e-07 277979658.742 +UniRef50_Q82BB8 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 1.51288475812e-07 2.31623581222e-07 32432267.8766 +UniRef50_UPI0003C18AE4 PREDICTED 4.4369607437e-08 9.48666853842e-08 20386290.0361 +UniRef50_Q2FH00 Alanine dehydrogenase 1 7.56553594373e-05 7.24035293526e-06 -27619977671.4 +UniRef50_A5UKT6 Ferredoxin, iron sulfur binding 1.78225761195e-05 2.4781821415e-06 -6194720145.81 +UniRef50_A6M115 Metal dependent phosphohydrolase 2.1049404583e-06 4.42526318907e-05 17015540241.6 +UniRef50_D8TH60 4.544817456e-08 1.14394249783e-07 27834376.631 +UniRef50_UPI000479FA8A hypothetical protein 1.07765987204e-06 3.9621945613e-07 -275105858.117 +UniRef50_P0AET6 Protein HdeD 1.98676836237e-06 3.48113994329e-06 603296145.219 +UniRef50_Q1GSN3 DNA mismatch repair protein MutL 7.22230845972e-07 2.30657339484e-06 639618529.048 +UniRef50_UPI000378A614 hypothetical protein 2.00347906511e-09 1.1435229597e-08 3807713.43032 +UniRef50_R5A3J3 9.68393999545e-06 2.53128604458e-06 -2887614172.9 +UniRef50_U5MM11 Response regulator GtcR 5.53650214931e-06 2.03291194923e-05 5971961147.2 +UniRef50_Q9RT94 Chloromuconate cycloisomerase, putative 1.33387275209e-06 2.83701782407e-05 10914888298.5 +UniRef50_UPI00046B9072 PREDICTED 1.76117037477e-08 8.88867178989e-08 28774597.8556 +UniRef50_UPI00036EA45A hypothetical protein 3.85778194956e-06 1.13987488734e-06 -1097252433.49 +UniRef50_UPI00046E002C hypothetical protein 2.02372731164e-08 4.14552208057e-06 1665428099.7 +UniRef50_UPI0003ABC022 PREDICTED 2.61479896871e-08 6.4089809969e-08 15317578.4463 +UniRef50_B8H9Q5 Pyridoxal 5 phosphate dependent protein beta subunit 1.10386635635e-07 6.57305468802e-08 -18028211.0221 +UniRef50_Q2FIE3 D alanine poly ligase subunit 1 0.000198247832664 7.94660540071e-05 -47953661660.2 +UniRef50_Q9RXK8 8.11797825447e-07 0.000331584097141 1.33536836266e+11 +UniRef50_O27113 2 oxoglutarate synthase subunit KorB 3.4485042802e-05 2.07725701201e-06 -13083420811.7 +UniRef50_I3USW1 Multi sensor signal transduction histidine kinase 8.78779187298e-06 3.89056146569e-06 -1977072011.2 +UniRef50_B2VKE4 Cation acetate symporter ActP 0.000127578199634 0.000133974896044 2582424837.01 +UniRef50_A7HME6 Cytidylate kinase 1.06297795698e-07 1.18826781713e-07 5058105.4022 +UniRef50_UPI0003B60C69 translation factor Sua5 3.03886109838e-07 8.61776802427e-07 225227318.687 +UniRef50_B0RVB2 Ribosomal RNA small subunit methyltransferase H 1.88894591176e-07 8.8755190985e-08 -40427504.7057 +UniRef50_F7U1Y8 Ribonucleoside diphosphate reductase subunit alpha 8.63849769869e-07 0.000126447878802 50699813609.6 +UniRef50_P19642 PTS system maltose and glucose specific EIICB component 3.48452658119e-05 1.66961774741e-05 -7327009676.33 +UniRef50_K7S7B0 Peptidase dimerization domain containing protein 3.16725541448e-06 5.45668026469e-05 20750627961.1 +UniRef50_G0LRP3 Haloacid dehalogenase like hydrolase 0.00016471640274 8.56123556742e-05 -31935274516.3 +UniRef50_W0YRX8 3.69081143881e-05 1.22264372525e-05 -9964295937.88 +UniRef50_UPI0003506C1B PREDICTED 3.03414288326e-07 1.11238744476e-06 326592390.469 +UniRef50_A0A011R518 CRISPR associated endonuclease helicase Cas3 6.24966168059e-07 6.28857904726e-08 -226918745.933 +UniRef50_UPI000366C818 hypothetical protein 1.39762740695e-07 1.66702496839e-07 10875910.1433 +UniRef50_P09143 Succinyl CoA ligase [ADP forming] subunit alpha 2.82939774891e-07 5.19471214745e-07 95490644.8362 +UniRef50_Q24TX4 Guanylate kinase 1.03385757157e-07 1.28003960305e-07 9938670.71017 +UniRef50_A3TWR1 Phenol hydroxylase, putative 1.05973706805e-06 3.05164321458e-07 -304630277.448 +UniRef50_UPI0003513255 2.93176517926e-07 1.49664378147e-06 485854502.495 +UniRef50_P26840 Probable macrolide acetyltransferase 1.65438521456e-07 1.03210362294e-05 4099939417.88 +UniRef50_P05823 Transposon Tn2501 resolvase 1.08912845703e-05 1.00676149498e-05 -332525533.359 +UniRef50_F0YCT2 Expressed protein 1.46918110199e-06 2.30887322796e-06 338994015.435 +UniRef50_F0GIC2 Putative exported alkaline phosphatase 6.78439904738e-08 1.53485379855e-06 592249861.757 +UniRef50_D9UFT2 2.40294930518e-06 4.20372328648e-07 -800390654.381 +UniRef50_Q1AS32 N acetyl gamma glutamyl phosphate reductase 6.7926635784e-08 9.30933885413e-08 10160126.9189 +UniRef50_UPI00046F7B75 hypothetical protein 8.49556580971e-07 6.64925818111e-07 -74537704.6408 +UniRef50_A0A022NVZ1 1.03148076066e-05 3.41443648143e-06 -2785764500.31 +UniRef50_R5W852 5.90257362713e-07 3.22493384344e-07 -108099603.901 +UniRef50_A3LL65 Aflatoxin B1 aldehyde reductase member 1 3.97428711086e-06 1.22890830151e-05 3356785140.56 +UniRef50_UPI000258F562 PREDICTED 3.0344593645e-08 5.97989015065e-07 229165018.708 +UniRef50_M9UY12 2.95247270203e-07 7.32099277214e-07 176362516.007 +UniRef50_F0RLX6 2.6583520342e-06 8.1147119939e-05 31686878768.7 +UniRef50_B1ZI45 2.09287667406e-07 1.84853831095e-06 661785600.665 +UniRef50_V1UZX9 Thiamine biosynthesis protein ThiC 1.07333557156e-07 3.40260234162e-07 94035357.8391 +UniRef50_G6XLM0 8.9289854724e-07 5.63414591201e-07 -133016716.276 +UniRef50_I0C0X1 AmrA 0.000137990897548 1.50732073288e-05 -49623379911.1 +UniRef50_Q2RMS9 Endoribonuclease YbeY 1.67024032482e-05 2.65295787897e-05 3967351359.11 +UniRef50_P21822 Methyl accepting chemotaxis serine transducer 4.18358039712e-05 4.87685969885e-06 -14920779340.0 +UniRef50_A3PPX9 2.18610505484e-05 1.17681285142e-05 -4074636479.29 +UniRef50_W2F2K9 8.2334764183e-08 9.52877283924e-08 5229270.60208 +UniRef50_D2ZRM1 3.12684121942e-05 1.17111713888e-06 -12150647349.2 +UniRef50_A3M9B5 1.80615305666e-06 6.10091303075e-05 23900968418.4 +UniRef50_D3AVG0 RNase P protein subunit, RNase MRP protein subunit 9.73415350036e-08 6.18609152283e-08 -14323961.5995 +UniRef50_A3M9B3 1.01687329291e-06 8.62773406449e-05 34420696933.6 +UniRef50_Q1GY83 Outer membrane autotransporter barrel 3.78876780148e-07 9.83510447954e-08 -113251681.8 +UniRef50_M5Y1W9 3.96247105123e-07 3.10224891056e-06 1092446135.23 +UniRef50_U7DKX9 Glutathione S transferase 8.88899502794e-06 4.95683034939e-05 16422736019.0 +UniRef50_Q1D0T1 UDP N acetylmuramate L alanine ligase 1.63212475218e-07 4.91353669745e-08 -46054328.4816 +UniRef50_G9G286 IS5 transposase 2.05405338176e-05 4.24407240993e-06 -6579081450.36 +UniRef50_V6ET42 3.44259763556e-06 4.92558914032e-06 598701868.824 +UniRef50_R7PSW3 2.84162898078e-05 2.02974864068e-06 -10652570468.4 +UniRef50_I6TY91 Phosphoglycerate mutase 9.24846529452e-05 1.59563255196e-05 -30895424889.9 +UniRef50_Q3J3M8 Alpha 1,4 glucan 0.000105803303394 2.9891816198e-05 -30646398919.7 +UniRef50_F4RCY2 3.33201057751e-08 4.48078451278e-06 1795495957.63 +UniRef50_E2ZZ10 Peptide chain release factor 3 9.43714972126e-06 6.78888977457e-06 -1069135038.28 +UniRef50_UPI00036CAA44 hypothetical protein 6.78214739253e-08 1.12233578694e-07 17929711.6929 +UniRef50_D3QD86 3.56563985316e-05 4.86785777803e-06 -12429711720.1 +UniRef50_D4J7S8 FAD FMN containing dehydrogenases 9.05017179151e-06 3.26654113725e-05 9533762010.43 +UniRef50_B0D259 Predicted protein 2.75120487342e-06 1.12004748003e-06 -658518256.264 +UniRef50_M9VAJ1 2.27401198102e-06 5.56040137569e-05 21529976149.6 +UniRef50_Q6G9H0 Conserved virulence factor B 0.000208976058795 3.95898866511e-05 -68383276296.6 +UniRef50_K9Z9U6 Plasmid maintenance system killer 4.16344840642e-06 1.49336463372e-05 4348061069.85 +UniRef50_M5A5P1 Geranyltranstransferase 3.57120404745e-06 3.59702477028e-05 13079891504.6 +UniRef50_Q5WAG0 Ribonuclease P protein component 2.63897056914e-05 5.13594269898e-06 -8580404933.03 +UniRef50_UPI00021A4D09 PREDICTED 1.75518316009e-08 4.3719775937e-09 -5320868.7977 +UniRef50_C3I9I9 1.75303090798e-06 2.75645982594e-05 10420446483.3 +UniRef50_I2QLC8 4.09622871137e-07 5.11715971912e-07 41216237.6061 +UniRef50_UPI0003C1A367 PREDICTED 7.08418270876e-08 6.15747714143e-08 -3741224.09487 +UniRef50_UPI0001E2AEC5 hypothetical protein, partial 1.37657663957e-07 1.40475453415e-06 511542555.523 +UniRef50_Q3B4Y6 Imidazoleglycerol phosphate dehydratase 1.81219588941e-06 3.07671247899e-07 -607395060.371 +UniRef50_V9WJV3 2 polyprenyl 6 methoxyphenol hydroxylase 1.4458717797e-05 1.83236838799e-06 -5097412199.14 +UniRef50_H5SYI3 1.49917534994e-07 2.38810135155e-07 35887033.5199 +UniRef50_UPI00035C6608 hypothetical protein 4.88519287279e-08 5.74876753327e-08 3486356.87689 +UniRef50_J9YRR4 3.14454583716e-06 2.02271715884e-06 -452896003.824 +UniRef50_U6EZ18 Rubrerythrin 6.81176625195e-05 4.3007287164e-06 -25763679298.2 +UniRef50_UPI0004670A8C hypothetical protein 1.11817872931e-07 6.12794977072e-08 -20402962.2535 +UniRef50_P23382 Immune inhibitor A 2.35666150226e-07 5.45681492822e-06 2107841832.37 +UniRef50_Q897Q2 NH3 dependent NAD+ synthetase 7.28737430216e-07 1.37088377339e-05 5240225776.35 +UniRef50_F6G8K0 Lipoprotein 2.70807099381e-07 8.00106308709e-08 -77026875.6734 +UniRef50_A4WT68 NADH quinone oxidoreductase subunit 7.06824376332e-06 1.13772993221e-05 1739618607.14 +UniRef50_Q9RU53 1.4842175184e-06 0.000123773187149 49369557694.4 +UniRef50_D2ZUU5 2.62699209946e-07 6.56259344878e-06 2543344612.61 +UniRef50_UPI0003B370CA taurine ABC transporter substrate binding protein 2.72756881027e-07 5.65361333867e-07 118128008.272 +UniRef50_Q9RU59 1.03610060989e-06 8.08585709169e-05 32225310794.8 +UniRef50_P25888 ATP dependent RNA helicase RhlE 1.11619192147e-05 6.30647411922e-06 -1960202768.06 +UniRef50_S6ETI6 2.02243322926e-07 3.26281289402e-07 50075649.1834 +UniRef50_F9Y8Y0 Oxidoreductase, aldo keto reductase family protein 1.49203948168e-06 4.38106733407e-05 17084551796.9 +UniRef50_F0XZ87 1.65566406425e-07 8.19945478244e-08 -33738984.8591 +UniRef50_G8VGA8 Protease 1.63649995166e-06 3.54839161829e-05 13664617287.0 +UniRef50_S1SW71 1.42626947925e-06 1.37256393928e-06 -21681585.527 +UniRef50_A8LI88 Rhomboid family protein 2.76595968193e-05 7.58258887237e-06 -8105334480.76 +UniRef50_Q1MFZ6 Pseudouridine 5 phosphate glycosidase 1 1.20859975083e-06 9.26146026174e-05 36901725035.0 +UniRef50_UPI00047858B2 hypothetical protein 9.64586650427e-07 8.64005586956e-07 -40605809.5917 +UniRef50_UPI0003B760AC citrate synthase, partial 1.76923480839e-07 9.83189193583e-08 -31733626.0562 +UniRef50_P56902 3 oxoacyl [acyl carrier protein] synthase 2 2.83841465137e-05 3.7366579436e-06 -9950493594.45 +UniRef50_Q5HQM9 DltB protein 0.000193753840766 9.05398509003e-05 -41668754287.0 +UniRef50_Q57RM6 Dipeptide permease D 4.76377060849e-05 1.11918718808e-05 -14713630508.9 +UniRef50_P26612 Cytoplasmic alpha amylase 3.03487843724e-05 9.46361467673e-06 -8431599296.01 +UniRef50_UPI0002625B7F glutaredoxin 1.51639177376e-06 2.02333961764e-06 204661065.524 +UniRef50_P10423 Alkaline phosphatase isozyme conversion protein 5.84935992427e-05 3.90921693153e-05 -7832595344.01 +UniRef50_U3KIJ5 1.00306285793e-06 1.23362746369e-07 -355145730.171 +UniRef50_G8UQE5 FAD dependent oxidoreductase 3.49797191879e-08 7.13931193699e-08 14700536.4961 +UniRef50_W1WTC0 1.15184492656e-05 1.57531237624e-05 1709590059.66 +UniRef50_Q9I3D2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2.10546186166e-06 6.40976225501e-06 1737698888.5 +UniRef50_W4STC6 2.45551154116e-06 1.68645251753e-06 -310478565.255 +UniRef50_F0YPY3 Expressed protein 5.06178427924e-06 3.3384129576e-06 -695746150.69 +UniRef50_W4MCA9 2.30194937626e-06 1.00274026064e-06 -524506663.064 +UniRef50_UPI000225AF78 chemotaxis protein CheY 6.55886830048e-07 5.99686926589e-07 -22688590.6768 +UniRef50_UPI000367F02C hypothetical protein 4.65259054762e-08 6.65222150704e-08 8072755.56549 +UniRef50_C6W4P9 Aldehyde Dehydrogenase 4.0503937086e-05 8.8213402259e-06 -12790653141.6 +UniRef50_R9BZ13 ABC transporter periplasmic protein 1.17805336745e-07 1.97220940783e-07 32061053.8892 +UniRef50_UPI00037C0FB7 hypothetical protein, partial 1.52338356982e-07 2.65965170129e-07 45872538.8252 +UniRef50_B5YEP5 Glutamate tRNA ligase 4.40635389283e-08 6.27205104542e-08 7532048.35179 +UniRef50_Q9KYS1 1 deoxy D xylulose 5 phosphate reductoisomerase 5.78357361836e-06 4.10091389546e-05 14220992992.5 +UniRef50_A8AXV1 Transporter 4.97484296298e-05 2.69751357433e-05 -9193858201.72 +UniRef50_L5N6N7 Transducer protein Htr38 1.49849224224e-07 2.18371924905e-06 821098287.416 +UniRef50_Q49WX1 Cell division protein SepF 0.000160646866225 5.54511218203e-05 -42468812913.2 +UniRef50_UPI0004769219 glycerophosphodiester phosphodiesterase 9.39608466264e-08 1.59814949027e-05 6413992460.41 +UniRef50_UPI0002F2BD70 hypothetical protein 6.35060328633e-07 1.1850954975e-06 222055947.362 +UniRef50_Q2YUG1 4.86188445306e-07 2.21961210099e-07 -106671777.286 +UniRef50_I6SW45 Enoyl ACP reductase 7.1489070075e-05 1.58560160088e-05 -22459746620.9 +UniRef50_H8LF45 Xanthine uracil vitamin C permease 5.74149914444e-05 5.7639337417e-05 90571222.1733 +UniRef50_UPI0003B35348 amino acid ABC transporter permease 6.49304400225e-07 1.51459404032e-07 -200986134.208 +UniRef50_UPI0002487593 citrate lyase, partial 1.46180603765e-06 2.36873484171e-07 -494520303.453 +UniRef50_UPI0004418637 hypothetical protein PUNSTDRAFT_120887 4.28253670298e-08 7.50487179661e-07 285691757.746 +UniRef50_D4HBG9 Zinc binding alcohol dehydrogenase family protein 1.12347020496e-06 3.62778240351e-05 14192244033.6 +UniRef50_UPI000477DEB8 hypothetical protein 6.00198442829e-07 5.10850563969e-07 -36070835.1176 +UniRef50_Q89BK7 Phosphoenolpyruvate carboxykinase [ATP] 0.000110368987713 2.15068283114e-05 -35874744211.7 +UniRef50_B5YHP2 Non canonical purine NTP pyrophosphatase 7.7502729793e-08 4.16827437049e-07 136989548.302 +UniRef50_W1DH05 Shikimate transporter 1.91943054766e-05 4.86118033249e-06 -5786458507.9 +UniRef50_Q57242 ABC transporter ATP binding protein uup 1 2.09485243691e-05 2.2039632969e-06 -7567409326.48 +UniRef50_Q1QVP8 2.05437352787e-07 1.86996043467e-06 671988394.15 +UniRef50_C3JXG2 3.67029645114e-06 9.32854758332e-07 -1105138803.57 +UniRef50_Q28S78 YjeF related protein like protein 1.94738188209e-07 1.96375041106e-07 660817.600963 +UniRef50_A0A011QSB3 Multiple resistance and pH homeostasis protein B 7.76284445182e-08 2.17945365846e-07 56647663.0224 +UniRef50_M2L7K7 Putative type I restriction modification system, specificity determinant 5.6693040472e-06 9.29334277671e-06 1463068907.06 +UniRef50_Q5HLR4 Formimidoylglutamase 0.000148528999508 1.74109860626e-05 -52933951026.7 +UniRef50_P45793 Type IV pilus assembly protein TapC 2.77393359766e-06 5.66652306322e-05 21756577933.4 +UniRef50_H9K906 4.31069336779e-07 4.45779258594e-07 5938575.94776 +UniRef50_P00632 3 oxoadipate enol lactonase 2 3.40077467434e-06 0.000151477871992 59780541297.6 +UniRef50_Q0W662 Pyruvate carboxylase, subunit B 3.69344684918e-05 1.08716449443e-05 -10521881692.9 +UniRef50_D0D597 9.51258804145e-07 1.3426422327e-06 158006292.922 +UniRef50_Q0JR18 Os01g0126200 protein 6.51045149722e-08 6.98515090606e-07 255715622.205 +UniRef50_Q87CM2 Ketol acid reductoisomerase 2.04759517127e-07 3.84332302317e-07 72495736.9871 +UniRef50_W5X9Y1 50S ribosomal protein L21 3.57865914587e-06 5.25751207925e-06 677773531.048 +UniRef50_UPI000383BB6B PREDICTED 4.24659264566e-08 1.09931348706e-06 426662329.192 +UniRef50_Q9JZG4 DNA translocase FtsK 2 1.57592301055e-06 2.85431975419e-05 10887019654.0 +UniRef50_I3Y8S8 Alkyl sulfatase like hydrolase 4.62216033901e-06 2.90441846676e-06 -693473472.89 +UniRef50_D3E4K2 MFS transporter 2.42142277609e-05 2.81052812108e-06 -8640936197.52 +UniRef50_B2TIE4 Putative ATP 4.80976230066e-06 1.41885111969e-05 3786316019.6 +UniRef50_A3NQD4 Multifunctional CCA protein 5.57373180286e-05 0.000150195145802 38133784200.0 +UniRef50_C7LD35 2.23597114788e-06 7.5308575835e-07 -598659028.803 +UniRef50_E7SW38 2.55385853633e-06 3.92555272236e-07 -872544649.887 +UniRef50_A0A023XLY7 1.96664983143e-06 4.82817041415e-07 -599041506.003 +UniRef50_E7GLY7 6.06707874525e-08 7.95678243208e-08 7628965.67645 +UniRef50_D3B9J3 Electron transfer flavoprotein ubiquinone oxidoreductase 1.16378622033e-07 3.07168523126e-07 77024224.3266 +UniRef50_I2GQ39 UvrABC system protein A Short=UvrA protein 5.71015212688e-08 1.88076002093e-06 736233315.119 +UniRef50_UPI00047D4973 hypothetical protein 4.04682651678e-08 6.6167702185e-07 250789598.161 +UniRef50_UPI00046D0079 hypothetical protein 1.8215671519e-07 2.11146574471e-06 778885730.501 +UniRef50_H7CVL3 Beta lactamase 6.32231981035e-06 5.65151631228e-06 -270811603.855 +UniRef50_Q48838 Probable L serine dehydratase, alpha chain 2.07811754869e-07 1.4119558831e-07 -26893763.9122 +UniRef50_L0FK70 5.05580598562e-07 6.52156998636e-07 59174691.4046 +UniRef50_Q24UB9 NADH quinone oxidoreductase subunit H 1.58164520469e-06 3.17611604452e-05 12183840646.9 +UniRef50_A3SBX3 4.47365814602e-08 2.3998701605e-08 -8372136.57995 +UniRef50_UPI000255C58A amino acid permease associated protein, partial 1.58186036073e-07 8.03473744677e-07 260510566.534 +UniRef50_Q38XW7 Phosphoribosylformylglycinamidine synthase 2 1.51032290944e-07 3.41735658098e-08 -47177301.3544 +UniRef50_E8WDB2 Prevent host death family protein 8.13551367075e-07 8.86099895376e-07 29288731.1457 +UniRef50_UPI0003B627AC NAD dependent epimerase 1.00581306653e-07 2.43261656893e-07 57601808.2767 +UniRef50_UPI00046A94A2 MFS transporter permease 3.26918874016e-08 1.64364515663e-06 650361603.408 +UniRef50_UPI0003FD0D46 peptide ABC transporter permease 6.16355774297e-08 6.01695993539e-07 218029017.27 +UniRef50_A3JZB9 9.83654153861e-06 1.48302226566e-06 -3372418239.7 +UniRef50_P51601 GTP cyclohydrolase 1 3.2640448862e-07 1.30504462899e-07 -79087244.3472 +UniRef50_A0A037YFV8 Transposase 2.75561179728e-05 1.20435106898e-05 -6262629921.25 +UniRef50_B9KT97 ABC transporter related 7.7655580059e-05 6.48041933358e-06 -28734285802.3 +UniRef50_UPI0002DCE8E8 hypothetical protein 4.68985942221e-08 1.06959485762e-07 24247318.9447 +UniRef50_B9KQ64 1.68577660971e-05 6.09880727552e-06 -4343523703.55 +UniRef50_B2V2R9 2.99592054644e-06 9.19741390482e-06 2503618969.66 +UniRef50_A6WC54 Triosephosphate isomerase 6.50666978973e-08 6.59893916741e-05 26614458975.3 +UniRef50_UPI0003615D0A 30S ribosomal protein S15, partial 3.75016582941e-06 7.39062837505e-07 -1215619228.22 +UniRef50_P0C0C8 S ribosylhomocysteine lyase 2.6854542958e-05 9.32380943447e-05 26799854312.6 +UniRef50_UPI00037B7B2D hypothetical protein 6.08925832862e-07 1.03799398977e-07 -203925739.958 +UniRef50_B9AFV8 Transcriptional regulator, MarR family 1.28360092158e-05 7.05178068698e-06 -2335164037.55 +UniRef50_UPI000375A8C0 hypothetical protein 7.60377006306e-08 2.29213778303e-07 61839062.238 +UniRef50_Q3JHR7 3.5088691428e-08 5.61300070671e-07 212437991.14 +UniRef50_Q9CI68 DegV domain containing protein YejH 4.06596168558e-05 7.22095005853e-05 12737075222.2 +UniRef50_Q3JHR1 6.26504097732e-07 7.73080380057e-07 59174643.8679 +UniRef50_Q8EBR2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.6229333059e-08 7.77056158277e-08 8670238.89735 +UniRef50_D6B6K5 Deaminase 2.57341602245e-06 3.53771381212e-06 389298850.954 +UniRef50_Q8UDF7 Carbamoyl phosphate synthase small chain 2.38562670839e-05 9.65060876847e-05 29329624090.1 +UniRef50_UPI00047BA94E hypothetical protein 7.08238053779e-08 2.52217165451e-07 73230725.4083 +UniRef50_B7GJX4 Predicted dithiol disulfide isomerase involved in polyketide biosynthesis 1.77779900556e-06 5.64193826766e-06 1560000438.43 +UniRef50_W1CVX6 Potassium efflux system KefA protein Small conductance mechanosensitive channel 2.69667925213e-05 8.11633639819e-06 -7610160458.0 +UniRef50_O69762 Hydroxycinnamoyl CoA hydratase lyase 4.23018810486e-06 0.000101261400964 39172691338.1 +UniRef50_UPI00047E8386 hypothetical protein 5.01224808839e-08 2.66863896531e-07 87501169.213 +UniRef50_Q6A5D0 Uronate isomerase 1.15729023204e-06 4.66194750909e-05 18353641911.3 +UniRef50_A4KKZ2 Integral membrane protein 3.73569140138e-07 2.94512025292e-07 -31916327.4032 +UniRef50_L8A4F6 ATP dependent DNA helicase RecG 5.62013879147e-07 2.11363286974e-05 8306103367.38 +UniRef50_B5FHH0 Protein FixA 8.48634949623e-06 5.00982907698e-06 -1403513954.95 +UniRef50_K7RV74 2.77022252248e-07 1.32839462127e-06 424451927.163 +UniRef50_Q7N253 Complete genome; segment 12 17 1.80785787962e-08 1.10319243023e-07 37238688.0686 +UniRef50_F1WXM9 8.04793256855e-07 1.9896929736e-05 7707729783.47 +UniRef50_B7UXK4 4.16344840642e-06 4.10162090547e-06 -24960520.8423 +UniRef50_T1Y6Z9 Transcription antiterminator, BglG family 0.000119335605342 2.75654756203e-05 -37048727514.8 +UniRef50_A0A011NCB6 Endonuclease III 6.28370743373e-08 1.33601972724e-07 28568657.8617 +UniRef50_P61653 2 dehydro 3 deoxyphosphooctonate aldolase 3.48581006844e-05 0.000146052026306 44890352276.5 +UniRef50_UPI0003760644 hypothetical protein 4.71702405281e-06 1.91841128628e-06 -1129834316.69 +UniRef50_F7WSN7 PE PGRS family protein 6.69981599401e-07 1.72787419362e-06 427084222.089 +UniRef50_V6ICR3 Peptidase 5.04079082691e-06 3.00220762586e-06 -823001054.493 +UniRef50_UPI0002ED547D hypothetical protein 2.6163040914e-07 1.88445620658e-07 -29545597.1885 +UniRef50_UPI00037F3F52 hypothetical protein 4.05034301632e-06 6.4274643633e-07 -1375688555.25 +UniRef50_UPI000473CF45 magnesium transporter 1.72991116152e-06 2.37795079427e-07 -602385572.663 +UniRef50_W2ELZ6 4.64690927099e-07 6.02498720692e-07 55634697.3653 +UniRef50_A1KAD0 GTPase Obg 1.07324554186e-05 3.61806054868e-05 10273730466.5 +UniRef50_R9SJH3 MATE efflux family protein 7.12111820969e-05 9.24117333518e-06 -25018052994.6 +UniRef50_V5SG04 NAD NADP transhydrogenase subunit alpha 2.04776273881e-07 1.6000457558e-07 -18074884.0146 +UniRef50_UPI000289DD7B protein export cytoplasm protein SecA ATPase RNA helicase 2.36371257514e-07 5.60627129897e-07 130906074.748 +UniRef50_A5IQ87 RNA polymerase, sigma 24 subunit, ECF subfamily 6.31954881368e-05 1.78840449647e-05 -18292785642.5 +UniRef50_Q51368 Protein TonB 1.84439408233e-06 5.48982512883e-06 1471705247.94 +UniRef50_UPI0002FEF856 hypothetical protein 1.22128516096e-07 1.10156253539e-07 -4833349.31044 +UniRef50_U5NMV6 3.2428446394e-05 2.15298537194e-05 -4399895603.51 +UniRef50_U5UNI0 0.000211711439897 4.36810590223e-05 -67835926723.9 +UniRef50_Q4FBH4 Superfamily I DNA helicase 1.33408830187e-06 1.54274456624e-06 84237094.4265 +UniRef50_UPI000371EB10 hypothetical protein 1.13742843895e-07 4.39721540659e-08 -28167283.6667 +UniRef50_Q03U25 4 deoxy L threo 5 hexosulose uronate ketol isomerase 4.34639281418e-08 7.45230684356e-08 12538956.0751 +UniRef50_L7MHU7 Putative glycine rich protein 1.1455558112e-07 2.21939040262e-07 43352020.1989 +UniRef50_UPI00047BE3BA hypothetical protein 1.07937967412e-07 8.38168699571e-08 -9737983.04169 +UniRef50_P45207 Stringent starvation protein A homolog 1.22137164791e-07 5.4876164855e-07 172233539.365 +UniRef50_T2E6P2 Outer membrane autotransporter barrel domain protein 4.54809645883e-06 4.15994549764e-06 -156701306.18 +UniRef50_Q87UP6 Polyphosphate kinase 1.05330587512e-05 0.000119892544016 44149766193.3 +UniRef50_UPI0001B412E7 histidine transporter permease 8.99426628706e-07 1.75833604537e-06 346752271.511 +UniRef50_A3M5I7 AdeS 1.48370731676e-05 6.03766790133e-05 18384897713.7 +UniRef50_A8GDW2 Isopentenyl diphosphate Delta isomerase 4.02743418312e-07 9.54498119029e-08 -124058199.824 +UniRef50_P76014 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 1.43125628549e-05 1.81553184676e-05 1551367596.76 +UniRef50_R7PTX8 Hydrolase TatD family 2.45137427705e-05 8.27443186981e-06 -6556009089.37 +UniRef50_UPI00047C0852 glycine cleavage system protein H 8.75776946726e-07 3.16549518795e-07 -225766975.148 +UniRef50_Q839B2 Hypoxanthine guanine phosphoribosyltransferase 3.12911457716e-07 3.52784343301e-06 1297907490.08 +UniRef50_B2UYP0 WblI protein 2.97444520913e-06 2.39951448613e-05 8486314402.59 +UniRef50_Q1PY54 2.64981722691e-07 2.22005871553e-07 -17349878.4774 +UniRef50_P40727 Flagellar biosynthetic protein FlhB 3.03280264224e-05 3.74753857016e-05 2885476648.97 +UniRef50_B9KW14 Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32 3.1099238158e-05 5.47988466506e-06 -10342847389.9 +UniRef50_UPI00036FCE04 50S ribosomal protein L13 1.6025339571e-06 7.38949428271e-07 -348639671.662 +UniRef50_O29458 Diaminopimelate decarboxylase 5.13512760304e-08 1.33052340701e-06 516417486.484 +UniRef50_B1YMX6 Transposase, IS4 6.33869285446e-07 5.81391298683e-08 -232429328.81 +UniRef50_U3SU32 3.29413616876e-05 6.73726323636e-06 -10578916105.2 +UniRef50_Q4ZX12 Exodeoxyribonuclease 7 large subunit 1.73823172146e-06 1.71363658722e-06 -9929357.50893 +UniRef50_UPI0002F5B1BD hypothetical protein 1.6393428139e-07 1.75602855711e-06 642747996.302 +UniRef50_I3TX99 Sulfite reductase 8.28798106504e-05 5.9691824769e-05 -9361274448.91 +UniRef50_UPI0003EBBF6F PREDICTED 3.16307625095e-08 1.50963772352e-07 48176200.4539 +UniRef50_Q8CUD0 2.71715603282e-05 4.87605167142e-06 -9000970441.41 +UniRef50_Q8CUD7 0.000337973615811 9.5621073783e-05 -97840695216.8 +UniRef50_M0FQF4 5.22032318356e-06 9.62021548053e-07 -1719128625.49 +UniRef50_Q1QVC8 UPF0042 nucleotide binding protein Csal_2229 7.00876816112e-06 1.2380459907e-05 2168617875.88 +UniRef50_H6CMH0 1.89003079664e-06 1.28094471297e-05 4408302369.98 +UniRef50_UPI00035CA530 hypothetical protein 8.33271950809e-08 1.22703095555e-07 15896534.218 +UniRef50_UPI0004777D24 phosphate starvation inducible E 2.62183551667e-07 2.83260904812e-07 8509186.11285 +UniRef50_Q7VRW1 NADH quinone oxidoreductase subunit K 4.59366177349e-07 5.50764921917e-07 36898794.7708 +UniRef50_G4LBC3 2.53890301285e-07 2.31335216862e-06 831430028.284 +UniRef50_F3U4G5 2.11872700608e-05 1.22014787727e-06 -8060972249.62 +UniRef50_G7M1G9 Calcium transporting ATPase 2.78428181941e-06 9.66798628852e-06 2779035966.73 +UniRef50_UPI00034DCD19 hypothetical protein 1.30549585875e-07 2.32300114808e-06 885119600.066 +UniRef50_M9VKR8 1.47678170721e-06 1.45338287171e-05 5271290105.88 +UniRef50_H4WKP6 Conjugal transfer pilus assembly protein TraU 4.50409544857e-06 8.12128046143e-07 -1490492545.9 +UniRef50_V8GU79 Transposase 3.51418873432e-06 3.99810952284e-06 195364760.701 +UniRef50_UPI0004697DC4 hypothetical protein 1.7691636017e-07 4.14934456923e-06 1603718015.17 +UniRef50_W0YRC1 5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase 4.66319169037e-06 5.82433654521e-06 468768426.749 +UniRef50_G7LZV6 Xenobiotic transporting ATPase 3.12669926367e-06 3.58171905251e-06 183697072.475 +UniRef50_Q9S7G6 Polyribonucleotide nucleotidyltransferase 2, mitochondrial 1.76896391652e-08 8.43792677239e-08 26923421.4229 +UniRef50_UPI00039AB780 elongation factor P 1.98234833713e-07 3.38986798349e-07 56823295.3444 +UniRef50_D3E3L9 6.78672588022e-06 4.35356322155e-06 -982297623.569 +UniRef50_M1MSP8 Lactose binding protein LacE 8.90297143505e-07 7.90265526973e-06 2830975026.87 +UniRef50_W5X7C7 Dihydrolipoyl dehydrogenase 3.18576357751e-07 3.03595849903e-07 -6047814.84974 +UniRef50_B2UX27 ATP phosphoribosyltransferase regulatory subunit 3.69265408737e-06 3.43168439732e-06 -105356666.331 +UniRef50_E4G4A0 8.87490624453e-07 7.3257481342e-06 2599203562.99 +UniRef50_UPI0004628EFB hypothetical protein 8.43817974988e-06 4.8327235487e-06 -1455566912.34 +UniRef50_F5M013 Phage integrase family protein 0.000163883479143 2.79039406483e-06 -65035255280.4 +UniRef50_Q8FP97 Proline tRNA ligase 1.55119067611e-06 5.19760659706e-05 20357140939.2 +UniRef50_B2TK67 Sterol regulatory element binding protein 5.5678913232e-06 6.9033799591e-06 539153150.601 +UniRef50_UPI00029B24E7 30S ribosomal protein S10 1.21661376437e-06 9.67470368209e-06 3414634692.22 +UniRef50_Q02MJ3 Pyoverdine synthetase D 2.64286330954e-06 3.91171544172e-06 512251176.328 +UniRef50_A6LWJ6 1.28251185346e-06 3.67867372334e-06 967359951.083 +UniRef50_C1DKJ6 Type III pantothenate kinase 7.24902498396e-06 1.24986842306e-05 2119351858.43 +UniRef50_Q0C348 Histidinol phosphate aminotransferase 2.01922765412e-07 2.57565274909e-07 22463563.8943 +UniRef50_Q6F755 2.52498989202e-06 7.84201618484e-05 30639812257.3 +UniRef50_UPI0003B54DE9 peptide chain release factor 3 2.10761379011e-07 9.10066435929e-07 282318032.916 +UniRef50_Q1J276 Acyl CoA dehydrogenase like protein 6.72350459777e-06 2.04315377964e-06 -1889515059.64 +UniRef50_K5VLJ3 2.86555936363e-06 1.37814154189e-06 -600488827.306 +UniRef50_UPI000468B1D5 hypothetical protein 2.15993982242e-07 9.171725463e-08 -50172039.9839 +UniRef50_UPI0003687009 hypothetical protein, partial 4.10014439316e-08 9.83316820012e-08 23144920.6298 +UniRef50_R9VAP8 LysR family transcriptional regulator 6.54260306819e-06 5.24283480283e-05 18524638321.8 +UniRef50_Q6GHY8 UPF0223 protein SAR1071 4.844023293e-05 4.2067884795e-05 -2572595139.6 +UniRef50_D4I0J4 Protein CreA 2.30783372321e-07 1.59493724517e-07 -28780505.6408 +UniRef50_Q6NAB4 1.23627546063e-07 3.80045506522e-07 103519077.24 +UniRef50_UPI0003664B75 hypothetical protein 2.42451652096e-06 1.43914308745e-07 -920707099.209 +UniRef50_I6TNU2 1.35483613969e-05 2.07278156552e-05 2898433785.89 +UniRef50_A0A011NYR8 1.37240791457e-07 3.64486060402e-06 1416069161.67 +UniRef50_A0A022NSH9 2.77603564518e-06 1.34442192823e-06 -577960025.409 +UniRef50_Q4FPU1 Imidazole glycerol phosphate synthase subunit HisH 5.06182081834e-06 1.05711113831e-07 -2000842306.02 +UniRef50_A3M4F0 Transporter LysE family 1.90649489319e-06 7.27538407615e-05 28601942921.7 +UniRef50_I0C381 1,4 dihydroxy 2 naphthoate polyprenyltransferase 0.000165060182837 5.48337201447e-05 -44499775619.6 +UniRef50_UPI0003794EB4 hypothetical protein 1.82562347908e-06 2.90823985241e-07 -619617389.771 +UniRef50_Q8CQA3 Dihydrolipoyl dehydrogenase 0.000102468733009 2.32993945533e-05 -31961633451.6 +UniRef50_UPI000363BDDF hypothetical protein 7.54909502641e-08 6.42635912814e-07 228963381.033 +UniRef50_Q9WYD1 Transaldolase 1.91665019551e-06 1.56688825397e-05 5551944956.22 +UniRef50_F0S5S6 3.81689562598e-08 1.6771912419e-06 661693409.778 +UniRef50_A9A450 Malate dehydrogenase 2.86800635299e-07 7.82078191315e-08 -84211479.6083 +UniRef50_R0DXB9 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 8.19836513727e-06 3.92725078927e-07 -3151232677.53 +UniRef50_Q3HKN1 Hemolysin type calcium binding protein 5.92265129916e-05 1.15913371379e-05 -19230905041.5 +UniRef50_UPI00046A80FC anthranilate synthase 6.87777030864e-08 1.40677714852e-07 29026917.0621 +UniRef50_I6TXL9 3.80837574833e-05 1.47658352597e-05 -9413731344.75 +UniRef50_UPI0003704CF4 hypothetical protein 1.56774465267e-07 1.93727418557e-06 718809586.274 +UniRef50_G3VGY4 3.44884622118e-06 3.87205276236e-07 -1236022020.03 +UniRef50_Q9KNK2 33 kDa chaperonin 2.18167187132e-05 8.08164301569e-06 -5545018607.41 +UniRef50_A0A023S0I7 Rod shape determining protein MreD 1.2506844993e-05 1.23239839793e-05 -73823235.1877 +UniRef50_Q9KVL7 Diaminopimelate decarboxylase 4.89289122748e-06 7.43741344272e-05 28050430510.5 +UniRef50_B1LBM8 50S ribosomal protein L5 7.27592398308e-06 0.000482839205738 1.91990732662e+11 +UniRef50_UPI0003739253 hypothetical protein, partial 3.16088626613e-06 4.73148021591e-07 -1085072911.58 +UniRef50_UPI0003EDF954 PREDICTED 2.86292100406e-07 2.77297029724e-07 -3631420.41625 +UniRef50_Q74LG2 CTP synthase 8.59428914546e-08 1.67714476779e-06 642387723.721 +UniRef50_Q6F9J2 Coenzyme PQQ synthesis protein B 1.78777062219e-06 5.68493917273e-05 22229052122.2 +UniRef50_UPI0003679109 hypothetical protein 3.49580104331e-07 6.0754970392e-07 104145492.997 +UniRef50_P31049 Probable fatty acid methyltransferase 1.04239874653e-05 6.98168724668e-06 -1389698840.03 +UniRef50_Q1IYR1 NH dependent NAD(+) synthetase 1.70968813824e-06 5.63738763957e-05 22068603604.6 +UniRef50_P39671 Phosphoglucomutase 5.51805352326e-05 2.75775041881e-06 -21163721529.2 +UniRef50_UPI00036E3AFC hypothetical protein 4.49338876866e-08 2.70740211807e-06 1074871096.76 +UniRef50_Q0IAT1 Two component response regulator 5.03434517162e-06 6.06694230887e-05 22460563674.3 +UniRef50_W1WM64 1.06453343623e-05 2.50064482336e-06 -3288111113.45 +UniRef50_G5LNV5 Respiratory nitrate reductase alpha chain 4.90081520632e-07 1.71178924762e-07 -128744891.328 +UniRef50_M4YXM6 3.96904435117e-05 4.15223072005e-05 739545850.664 +UniRef50_Q2NQH3 Rhomboid protease GlpG 4.78841872084e-05 1.24037835444e-05 -14323874352.7 +UniRef50_N0GIW3 1.14716156977e-07 1.78567583231e-07 25777604.3239 +UniRef50_F2NB99 Nucleoside ABC transporter membrane protein 1.47087608227e-05 3.30624730476e-05 7409618850.57 +UniRef50_UPI00046AD244 carbonic anhydrase 9.04369490869e-08 9.66183071032e-08 2495490.08497 +UniRef50_UPI0004626526 hypothetical protein 5.84583158743e-08 4.62241011753e-07 163012029.297 +UniRef50_P27897 UTP glucose 1 phosphate uridylyltransferase 3.83970746052e-06 2.6117075777e-06 -495758621.948 +UniRef50_P22256 4 aminobutyrate aminotransferase GabT 0.000122335533159 5.39273839892e-05 -27617209282.2 +UniRef50_Q9RU94 NADH quinone oxidoreductase subunit H 9.52825487377e-08 0.000260376145002 1.05078578178e+11 +UniRef50_A6TI09 Probable phosphoglycerate mutase GpmB 2.77235416766e-05 3.29024001791e-06 -9864023709.95 +UniRef50_A6F5Z7 NAD dependent 4 hydroxybutyrate dehydrogenase 5.67942515837e-05 1.30722835427e-06 -22400792180.1 +UniRef50_E8SH67 Zn peptidase with DNA binding domain 0.000111030342812 2.07493502593e-05 -36447544565.9 +UniRef50_UPI0003B5F4E2 N acetyl gamma glutamyl phosphate reductase 1.966641144e-07 2.27919884659e-07 12618338.005 +UniRef50_Q89WH6 Blr0711 protein 1.12884760857e-06 1.66103549201e-07 -388671590.965 +UniRef50_G9MRN8 4.72227014612e-06 9.87080454821e-08 -1866588757.52 +UniRef50_I0C7B0 ATP dependent dethiobiotin synthetase BioD 0.000147915496597 1.28502006866e-05 -54527517396.4 +UniRef50_UPI000328AD5C 2.88292949224e-07 4.18144497047e-07 52422663.3138 +UniRef50_UPI0003A730C5 pyruvate kinase 1.67044562134e-07 6.745549335e-08 -40205329.1634 +UniRef50_UPI00044428D0 PREDICTED 5.30260981272e-08 4.45303386968e-07 158367155.289 +UniRef50_F9I1V8 3.00182514456e-05 7.87002116894e-06 -8941512352.05 +UniRef50_UPI0003B495EE exonuclease subunit SbcD 8.0532360051e-08 1.79453086473e-07 39935511.1504 +UniRef50_Q5WHY0 Glucosamine 6 phosphate deaminase 6.28482314263e-08 4.19083756032e-05 16893552902.4 +UniRef50_I3U5U5 Mobilization protein C 0.00113317013222 0.000618804861852 -2.07655571619e+11 +UniRef50_UPI0003734C10 hypothetical protein 1.1202885584e-05 1.80420100493e-06 -3794364299.4 +UniRef50_UPI00047099BD hypothetical protein 7.58028491194e-08 3.43928733877e-07 108245709.951 +UniRef50_A4XUQ2 6.41980769516e-06 1.12508861926e-05 1950365673.42 +UniRef50_P48812 Glyceraldehyde 3 phosphate dehydrogenase 9.55543030906e-08 8.1817438777e-08 -5545740.69368 +UniRef50_K9NNF0 LysR family transcriptional regulator 2.75537218136e-06 3.98179827223e-06 495123262.825 +UniRef50_Q8X5L9 Endoglucanase 4.4222616687e-05 6.994108916e-06 -15029605432.3 +UniRef50_O54537 Glucose 6 phosphate 1 dehydrogenase 1.06819159075e-07 4.36204469986e-05 17566985531.1 +UniRef50_Q2CB82 7.55593300012e-08 1.47404604022e-07 29004818.7629 +UniRef50_H3NTE5 3.239869152e-07 2.62876213621e-07 -24671140.1401 +UniRef50_Q8DWT2 Membrane protein, putative 1.95790967962e-06 7.13038322365e-07 -502569843.211 +UniRef50_Q6GFS7 RNA polymerase sigma factor SigS 0.000115843250797 2.1644985149e-05 -38028995784.8 +UniRef50_X4ZMG7 Enoyl reductase family protein 6.46704411723e-07 1.5791583324e-06 376443090.274 +UniRef50_Q3HKI6 TraI 0.000282669681769 6.64516987275e-05 -87289853047.1 +UniRef50_A9FGM6 PhoH family protein 6.79385006258e-05 4.06179090732e-05 -11029658071.1 +UniRef50_U5MSH8 Signal transduction and transcriptional control protein Stc 6.28883106539e-06 1.4520799739e-05 3323346771.15 +UniRef50_P0CF89 Transposase InsI for insertion sequence element IS30C 4.84720797524e-05 1.84781077051e-05 -12108934582.9 +UniRef50_Q9RSL3 50S ribosomal protein L6 2.20752040266e-06 0.000500645173627 2.01225397124e+11 +UniRef50_U3AK46 Hypotheical conserved protein 5.97651633194e-06 3.03079901881e-06 -1189222227.33 +UniRef50_P0ABH6 Rod shape determining protein MreD 1.03727625684e-05 1.54491510429e-05 2049400321.45 +UniRef50_S5XQY4 Cytochrome b561 1.16432762227e-05 1.1852192031e-05 84341875.496 +UniRef50_UPI0003825EF9 hypothetical protein 7.04998149293e-08 1.14304381484e-07 17684441.0606 +UniRef50_Q6A834 8.16151459085e-07 1.40275108861e-05 5333587922.29 +UniRef50_UPI0004744DBC hypothetical protein 3.91432963682e-07 9.22235361923e-07 214291441.848 +UniRef50_A4VSE4 3 methyladenine DNA glycosylase 9.10898931407e-05 3.36191686088e-05 -23201636738.6 +UniRef50_A6L4N0 2 aminoethylphosphonate pyruvate transaminase 1.77471256079e-07 1.8467462766e-05 7383894015.98 +UniRef50_Q9L6R5 UDP N acetylglucosamine 2 epimerase 6.08051888097e-08 5.33762701444e-07 190938751.692 +UniRef50_G9ZVF4 7.09681836332e-07 6.4194085199e-07 -27347866.6542 +UniRef50_J9JHL4 3.72691554418e-06 3.55465398277e-06 -69544106.2283 +UniRef50_D8TYM2 4.28697862213e-08 5.15758783423e-08 3514756.22501 +UniRef50_UPI00036C70D3 hypothetical protein 1.91671464743e-07 5.66684041263e-08 -54502392.2449 +UniRef50_F0N5W3 Rhodanese domain protein 1.85648846977e-06 2.72175910237e-06 349320372.445 +UniRef50_B9GC78 Os12g0188566 protein 6.34711525125e-07 1.33008534525e-06 280730944.381 +UniRef50_W8ZGJ2 1.83245625651e-06 2.86715247755e-06 417719561.584 +UniRef50_A6M046 Transcriptional regulator, TetR family 1.83840578989e-06 1.11398945006e-05 3755125134.62 +UniRef50_Q8DRN9 2.07808048828e-05 3.71757178312e-05 6618827545.48 +UniRef50_UPI000475D486 pseudouridine synthase 1.224482672e-06 5.48829504709e-07 -272769474.832 +UniRef50_B2S7V7 Glyoxalase Bleomycin resistance protein 5.91721865607e-05 4.50865198773e-06 -22068339704.1 +UniRef50_UPI00035ECC54 hypothetical protein 1.00138563831e-07 1.39230182398e-07 15781766.1236 +UniRef50_UPI00037E3E52 hypothetical protein 5.40514946274e-07 3.91999289988e-07 -59957592.9347 +UniRef50_Q9HXZ1 DNA polymerase III subunit alpha 7.09095521666e-06 6.74647887156e-06 -139069327.717 +UniRef50_A6M0Z1 Methyl accepting chemotaxis sensory transducer 1.08619768978e-05 1.14994972905e-05 257374805.788 +UniRef50_C7IW70 Os01g0561500 protein 1.3129895143e-06 2.51946170197e-06 487067627.241 +UniRef50_B2TPI9 4.3543623929e-06 2.04371422282e-06 -932837021.103 +UniRef50_P75883 1.77561483703e-05 6.40590329834e-07 -6909760812.47 +UniRef50_V4REQ5 Bacteriophytochrome heme oxygenase BphO 2.89382400061e-07 2.79350992374e-07 -4049802.38246 +UniRef50_UPI0002000915 NRPS siderophore biosynthesis protein 3.22637597309e-07 1.06962200756e-06 301566772.948 +UniRef50_Q54430 Sucrose operon repressor 4.05992107902e-05 1.78205600625e-05 -9196020824.25 +UniRef50_A6LTD5 Lipoprotein, putative 1.13359155811e-06 1.72308340428e-05 6498654326.45 +UniRef50_Q2FJI0 Methionine import ATP binding protein MetN 1 0.000247257056837 6.73051906752e-05 -72648776627.3 +UniRef50_UPI000470E6C8 hypothetical protein 1.11705950525e-07 3.42235449316e-07 93067587.577 +UniRef50_P39636 Amino acid permease RocC 1.22384584998e-05 1.62295916673e-05 1611269436.43 +UniRef50_A7GKI0 Phosphoribosylformylglycinamidine cyclo ligase 2.43998777417e-08 9.46726695737e-08 28369988.4067 +UniRef50_P22608 Type 4 fimbrial assembly protein PilB 1.69203240639e-05 9.6174613359e-06 -2948255299.5 +UniRef50_UPI0003627506 Cro Cl family transcriptional regulator 1.71136209819e-06 2.18980312572e-07 -602492840.439 +UniRef50_C1D205 Putative diguanylate cyclase 3.16548291664e-08 1.3168081389e-06 518832161.743 +UniRef50_Q9KU46 Lipoprotein signal peptidase 1.86195772501e-07 1.70684160959e-07 -6262227.92838 +UniRef50_I6Y4U3 NAD dependent malic enzyme 1.37917729531e-07 1.28807427933e-07 -3677940.55108 +UniRef50_E0DCF6 5.1445369767e-06 0.000182942495379 71779217633.2 +UniRef50_K0WMD7 Glycosyltransferase 1.51054400983e-05 2.08213893202e-06 -5257666494.71 +UniRef50_W7VMD9 Peptidase M23 1.46481743545e-06 2.27616506777e-06 327550995.523 +UniRef50_UPI0004724D89 hypothetical protein 3.92340660451e-08 4.95742120871e-08 4174443.84502 +UniRef50_C6S911 Deoxyribodipyrimidine photolyase 8.87506243427e-07 2.5977328384e-05 10129069084.9 +UniRef50_X5MKP4 FIG003603 1.67802005625e-08 4.41277098959e-08 11040525.1096 +UniRef50_UPI00047E4FB4 hypothetical protein 1.64687805049e-06 1.66464014484e-06 7170775.4545 +UniRef50_A6LX64 ABC transporter related 5.84154764232e-06 1.39860132819e-05 3288020722.53 +UniRef50_U4VGY9 1.06436640526e-06 2.16645479638e-07 -342235340.379 +UniRef50_A0A024E6B6 Cytochrome B561 1.74259606357e-05 1.37356607068e-05 -1489819366.37 +UniRef50_UPI00046BD92F PREDICTED 6.17918487358e-07 7.85352274896e-08 -217755640.986 +UniRef50_A9M1B3 Potassium uptake protein 3.81960850639e-06 3.10080548537e-05 10976309430.2 +UniRef50_P0A9J2 Ribonuclease G 4.26004794361e-05 7.92478167688e-05 14794979794.6 +UniRef50_C7ZY18 4.9096229059e-05 1.12567615605e-05 -15276257371.6 +UniRef50_P69955 Low calcium response locus protein D 4.10352372292e-06 5.49664559346e-06 562420394.665 +UniRef50_T1JU83 7.86192350507e-08 1.88855631107e-07 44503785.8405 +UniRef50_B0TEJ5 1 deoxy D xylulose 5 phosphate synthase 1.98501182392e-08 3.57841472046e-06 1436636198.41 +UniRef50_R6STG9 Putative glutamate binding periplasmic protein 8.94101527327e-08 3.57524488061e-06 1407274255.65 +UniRef50_O67546 Succinyl CoA ligase [ADP forming] subunit beta 8.42002469031e-08 3.66883338309e-07 114122632.912 +UniRef50_F0YAV0 Expressed protein 8.76257844775e-07 3.23736101786e-07 -223059807.849 +UniRef50_UPI00016C49DC histidinol phosphate phosphatase, putative 6.01969953508e-08 1.52555607759e-06 591583443.478 +UniRef50_Q08653 Anthranilate synthase component 1 7.72206193387e-08 3.12795323146e-06 1231618192.21 +UniRef50_A6M2V0 Methyl accepting chemotaxis sensory transducer 4.1346384146e-06 1.50171352841e-05 4393397529.47 +UniRef50_UPI0003AE1EC3 PREDICTED 3.15622314758e-08 7.54000098382e-07 291657032.18 +UniRef50_Q2FIM4 Epimerase family protein SAUSA300_0753 0.000219596516598 5.38802337317e-05 -66901696960.5 +UniRef50_UPI0003752D61 hypothetical protein 1.50102311343e-05 6.44566176804e-06 -3457621752.24 +UniRef50_Q9HWF9 Bacterioferritin 2.89881212598e-05 3.22489892283e-06 -10400929007.7 +UniRef50_F9Z1G0 DNA primase 6.05592495497e-07 6.98334080533e-05 27948118661.5 +UniRef50_K4RZ48 5.02644459164e-07 4.72510527858e-08 -183847906.46 +UniRef50_V9U4M1 1.29534797437e-06 7.38291762994e-06 2457626572.83 +UniRef50_C7ZTX4 SSS sodium solute transporter superfamily protein 9.55989008909e-05 6.04764664588e-05 -14179357781.0 +UniRef50_UPI0002F68D16 hypothetical protein 8.30130371985e-08 3.52691292777e-07 108872421.102 +UniRef50_A3DK16 Diaminopimelate epimerase 4.77606624477e-08 1.75014019244e-07 51373741.7128 +UniRef50_F9YXC7 1.99381964576e-06 5.7706712088e-05 22491978353.0 +UniRef50_P69740 Hydrogenase 1 small chain 3.53433071634e-05 4.85548468854e-07 -14072504937.8 +UniRef50_J9NRS4 8.86811250236e-07 1.11866619574e-07 -312854657.038 +UniRef50_A1VYJ5 DNA directed RNA polymerase subunit beta 3.35481735234e-08 1.46557461534e-08 -7627104.76542 +UniRef50_Q28M41 Kef type potassium proton antiporter, CPA2 family 1.71619171337e-05 9.91779207053e-06 -2924542183.41 +UniRef50_P0A9H6 Cobyrinic acid a,c diamide adenosyltransferase 4.94984621138e-05 1.88839693665e-05 -12359446404.2 +UniRef50_UPI000466B185 hydrolase 1.15889222849e-07 8.06826111519e-07 278939700.705 +UniRef50_UPI0004738B15 MFS transporter 1.00781317642e-07 4.12420822351e-07 125812692.298 +UniRef50_Q9RCA1 DNA polymerase III subunit beta 0.000188437795847 7.67141116464e-05 -45104222315.7 +UniRef50_A8GHR1 Putative multidrug resistance protein MdtD 1.0995547975e-05 1.78439096792e-06 -3718657117.37 +UniRef50_UPI00016A58F4 hypothetical protein, partial 7.11546619533e-07 2.19928727789e-06 600619160.411 +UniRef50_P76345 Cytochrome b561 homolog 1 4.96316258967e-05 3.64588524928e-06 -18565007807.9 +UniRef50_A0A023VMN5 DNA polymerase III subunit epsilon 3.86834771105e-06 4.10034998887e-05 14991916633.7 +UniRef50_UPI00036CE3D7 hypothetical protein, partial 3.86987674786e-07 7.71998788235e-08 -125065134.754 +UniRef50_A0A024GR22 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763 5.18041383486e-06 2.56615948379e-05 8268504103.26 +UniRef50_Q7VGX8 Isoleucine tRNA ligase 8.22413465362e-07 2.45674715692e-05 9586171341.13 +UniRef50_G1P8T6 7.97070917265e-08 5.21797079207e-08 -11113142.6414 +UniRef50_B1ZT49 Tryptophan synthase alpha chain 6.67968532493e-08 9.08665724165e-08 9717240.99647 +UniRef50_C9X0B4 Cystathionine beta lyase 1.77501248674e-06 2.52986390946e-05 9496776728.97 +UniRef50_UPI0004680597 hypothetical protein 1.52544471013e-07 1.56314532927e-07 1522020.25854 +UniRef50_P59019 3 isopropylmalate dehydratase small subunit 1.04805145886e-07 1.53438588772e-07 19633917.6925 +UniRef50_G7D6B1 1.02521133079e-05 4.35895748475e-06 -2379139322.96 +UniRef50_D0K7S8 5.58332118742e-05 5.59379743674e-07 -22314724317.3 +UniRef50_A8WP91 Probable medium chain specific acyl CoA dehydrogenase 2, mitochondrial 3.03142666471e-08 2.21974185725e-07 77375461.2635 +UniRef50_P07654 Phosphate transport system permease protein PstA 2.28669852005e-05 2.92392777421e-06 -8051257011.83 +UniRef50_UPI00046BF57D PREDICTED 1.38818464288e-07 1.00907034622e-07 -15305309.3817 +UniRef50_D5AUV7 1.60777963965e-07 1.24047297343e-07 -14828620.8513 +UniRef50_E6WAB3 Thymidine phosphorylase 4.28519336342e-06 6.6356430709e-06 948905390.171 +UniRef50_P16919 Protein RhsD 4.84954582135e-05 9.96077702367e-06 -15556923670.0 +UniRef50_Q8CNS3 Integrase 7.85160938702e-05 1.79204034191e-05 -24463223827.8 +UniRef50_UPI00038257CA hypothetical protein 6.83880852264e-08 2.36795046223e-07 67987956.7403 +UniRef50_B3E616 Phosphoribosyl ATP pyrophosphatase 1.11853768214e-06 4.81819890207e-07 -257050786.009 +UniRef50_UPI000255D14E uracil xanthine permease 2.53026562798e-07 6.7637007731e-07 170908971.818 +UniRef50_A0A011PEE7 4.24676589076e-05 5.95872852833e-06 -14739103209.1 +UniRef50_Q2J8T7 NAD NADP transhydrogenase alpha subunit like 1.83450686689e-07 2.68237798202e-07 34229597.3727 +UniRef50_X1LFP4 Marine sediment metagenome DNA, contig 1.92213537492e-07 8.89434529748e-07 281476670.437 +UniRef50_F5H1R7 Protein FLJ22184 1.07167977419e-08 3.61869434395e-08 10282610.372 +UniRef50_B5YJV0 GTP cyclohydrolase 1 2.12070780251e-06 2.59996471084e-05 9640220825.33 +UniRef50_I6SZZ6 Glutathione synthase 1.07632511589e-05 6.71756349428e-06 -1633293756.38 +UniRef50_A4IWK9 Ribonuclease 3 7.55124492991e-08 1.45028689935e-07 28064559.4049 +UniRef50_P0AAD4 Tyrosine specific transport protein 1.98736736912e-05 2.42394012474e-06 -7044671573.11 +UniRef50_UPI0004573F1D PREDICTED 1.65041695185e-06 1.74606595238e-07 -595802751.193 +UniRef50_UPI0003805ECB hypothetical protein 2.79384434769e-07 2.26324843107e-07 -21420808.2684 +UniRef50_G5LNP8 Glucans biosynthesis protein G 3.93808099937e-07 2.17783843728e-06 720234939.698 +UniRef50_A6LZ85 O acetylhomoserine aminocarboxypropyltransferase 8.67498566062e-06 1.92631588812e-05 4274575460.65 +UniRef50_Q04LT6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.38650992893e-08 3.46756180107e-05 13993374997.9 +UniRef50_I6U4A9 2.63590785676e-05 4.48588694827e-07 -10460382719.1 +UniRef50_A0A017HQJ0 Mobile element protein 1.04471362314e-06 3.02093758868e-07 -299804752.177 +UniRef50_Q49UU5 UPF0355 protein SSP2326 2.96687845538e-05 4.37506229925e-06 -10211386063.0 +UniRef50_Q1JF79 ComE operon protein 2 6.35302784126e-05 5.82690077184e-05 -2124039542.3 +UniRef50_Q93GF3 Rep 0.00410004761703 0.00131513750747 -1.12430238592e+12 +UniRef50_A1U4H5 D 3 phosphoglycerate dehydrogenase 1.59726088367e-06 7.6288399733e-05 30153729316.8 +UniRef50_B6VK40 Type iii secretion component protein sctt 4.72631611028e-06 5.19520793169e-06 189297382.253 +UniRef50_UPI00036474E6 hypothetical protein 2.34510016302e-08 1.77062695784e-07 62014925.9574 +UniRef50_P0ADM6 2.85776723549e-05 3.36863161818e-06 -10177199095.1 +UniRef50_U7R6W7 4.19126630413e-07 2.4592809316e-07 -69922374.8741 +UniRef50_E3I502 Oligoendopeptidase, pepF M3 family 9.98412673087e-05 2.21708312703e-05 -31356508152.1 +UniRef50_R6WGW0 Macro domain protein 3.80640496571e-08 1.72239453829e-07 54168257.1816 +UniRef50_UPI0003661C28 hypothetical protein, partial 1.14581658908e-07 2.56216461218e-07 57179707.747 +UniRef50_A0YRN0 Putative transposase 1.08015430708e-07 1.01446595357e-05 4051916388.66 +UniRef50_Q1GHV9 YjeF related protein like protein 1.9045333418e-07 1.73331521479e-07 -6912285.89566 +UniRef50_A0A023YXN9 Type 1 fimbriae anchoring protein FimD 4.03664049756e-06 6.78369154289e-07 -1355775351.9 +UniRef50_Q4L8X8 Ppx GppA, Ppx GppA phosphatase family protein 8.19689273811e-05 1.44506122901e-05 -27257972345.1 +UniRef50_B0V1R4 Novel protein 3.16928750669e-06 1.85173704217e-06 -531911290.689 +UniRef50_B9KPX1 Periplasmic binding protein LacI transcriptional regulator 0.000127659845375 1.65325258792e-05 -44863462566.1 +UniRef50_C7ZSW5 ABC transporter 0.000122512577802 1.42808143217e-05 -43694491070.0 +UniRef50_D8JP76 1.29720271086e-06 5.93238323664e-05 23426062458.7 +UniRef50_I6TX73 Acetyltransferase 2.15644753586e-05 5.96599404435e-06 -6297298321.47 +UniRef50_P51995 NAD transhydrogenase subunit alpha part 2 2.01399775711e-07 7.91140163099e-06 3112622361.34 +UniRef50_C5N4H6 0.000152087068687 3.26213299753e-05 -48229784727.5 +UniRef50_R6RWM5 Prophage LambdaSa04 DNA polymerase 1.7104095588e-06 4.99753408088e-05 19485145022.9 +UniRef50_Q9JY85 2.67431008715e-06 2.1931560169e-05 7774388171.1 +UniRef50_A4WW73 4.91223134508e-05 1.09832298906e-05 -15397216052.4 +UniRef50_UPI00016AAA4C MFS transporter 5.30389645485e-08 8.14194767184e-08 11457561.031 +UniRef50_Q46915 Glucarate dehydratase related protein 4.68365670371e-05 7.43707890032e-06 -15906056846.9 +UniRef50_Q5HRD9 AIR carboxylase, putative 0.000103709130938 3.67530658485e-05 -27030985119.9 +UniRef50_Q3IW48 5.35357754704e-05 8.16543885337e-06 -18316561648.9 +UniRef50_J9NUI2 4.69515057499e-07 5.01796159812e-07 13032277.1374 +UniRef50_UPI0003B47644 ABC transporter 1.83672405538e-07 1.03730443885e-06 344621727.091 +UniRef50_A8LE21 Peptide deformylase 1.696153339e-07 1.93122815757e-06 711184714.336 +UniRef50_UPI0003B50607 MarR family transcriptional regulator, partial 3.0900146007e-07 8.12584791168e-07 203302770.427 +UniRef50_A0A023L4E6 Multidrug transporter membrane component ATP binding component 1.17657751455e-05 1.45356868839e-06 -4163164291.73 +UniRef50_G8AI77 2.29120217543e-05 1.29545146294e-05 -4019967818.68 +UniRef50_W7WQX4 7.98181908449e-06 3.30170971717e-06 -1889417582.99 +UniRef50_UPI00036C7DC7 hypothetical protein 6.15263919252e-07 9.07270591586e-07 117886676.946 +UniRef50_UPI0003B4B204 hypothetical protein 1.84678636003e-07 2.95382614627e-07 44692554.6611 +UniRef50_P76518 3.34107914555e-05 7.62727160681e-06 -10409123362.3 +UniRef50_O32177 3 ketoacyl CoA thiolase 1.21238847423e-06 0.000342031515765 1.37592864008e+11 +UniRef50_Q6MGU4 Nucleoside diphosphate kinase 7.25805057486e-07 4.44787777822e-07 -113450124.27 +UniRef50_P76514 1.82054674941e-05 7.16176659606e-06 -4458477573.97 +UniRef50_Q7P1W4 7.6165503042e-07 7.23003177589e-08 -278300956.835 +UniRef50_E0SN31 Oxidoreductase 3.15976689791e-06 1.93650298495e-06 -493846652.798 +UniRef50_B4EH82 Catalase related peroxidase 3.35375767292e-06 4.75938632788e-05 17860273520.2 +UniRef50_H8FXV9 8.10729358581e-06 4.47904146487e-05 14809426125.6 +UniRef50_M9VA45 1.59138626748e-06 5.93386507711e-05 23313279318.7 +UniRef50_B7V4I1 LPS assembly protein LptD 5.11203357662e-06 4.88725577381e-06 -90745557.3282 +UniRef50_Q8CU34 ABC transporter 0.000106969552657 3.72461379786e-05 -28148198108.2 +UniRef50_C6B907 NAD dependent epimerase dehydratase 2.21361893687e-05 3.65877338409e-06 -7459559576.37 +UniRef50_Q88EH6 Acetyl coenzyme A synthetase 1 0.000151427980615 3.19060675343e-05 -48252463009.6 +UniRef50_A0A059LIS0 7.28405287655e-08 7.52696297692e-07 274466116.684 +UniRef50_Q00X46 WGS project CAID00000000 data, contig chromosome 13 7.27289578742e-09 6.60833575544e-09 -268291.039979 +UniRef50_S6ASW9 2.15831558213e-06 3.58999369761e-07 -726406035.027 +UniRef50_UPI0002D680F8 hydroxymethylglutaryl CoA lyase 2.5264454022e-08 1.56204284232e-07 52862016.2682 +UniRef50_G4MEB0 Protein containing domains DUF404, DUF407 5.63163527146e-08 1.66738390577e-07 44578731.7157 +UniRef50_A1AYY2 Phage major capsid protein, HK97 family 0.000103398344141 2.74959383635e-05 -30642732639.6 +UniRef50_I0C4W3 Enterotoxin 8.35627548538e-05 1.33541063328e-05 -28344092964.9 +UniRef50_B2GK44 2.24052420409e-08 1.46040817952e-07 49913199.1744 +UniRef50_A8ZUK6 Tyrosine tRNA ligase 3.48333187251e-07 2.39419345286e-07 -43969854.5244 +UniRef50_UPI00047522DD hypothetical protein 6.79500627155e-08 5.34219322439e-07 188238621.917 +UniRef50_F9PNH7 RDD family protein 4.20792043256e-07 3.98273878766e-07 -9090859.33357 +UniRef50_R6Q8V3 O 6 methylguanine DNA methyltransferase 3.97910536368e-05 5.92608772976e-06 -13671702306.5 +UniRef50_A7X782 Pyrrolidone carboxylate peptidase 0.00012958682208 3.77134784834e-05 -37090396222.7 +UniRef50_A7HQ81 Thioesterase superfamily protein 6.61333752309e-08 9.71734329914e-08 12531252.2223 +UniRef50_Q722V6 Homoserine O acetyltransferase 3.23983775801e-07 6.50659733354e-06 2495996962.46 +UniRef50_E5S583 Glycine cleavage system H protein 1.1053599948e-07 7.95195916018e-08 -12521704.4746 +UniRef50_W8Z324 1.78596510549e-06 1.07780104746e-06 -285894520.377 +UniRef50_D3HCJ2 2 isopropylmalate synthase 0.000325299845153 0.000102834088525 -89812155912.5 +UniRef50_A3DJH8 30S ribosomal protein S3 2.37412571605e-06 1.10541003727e-05 3504212284.16 +UniRef50_T2E8G6 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 7.11361824182e-06 2.72181295113e-06 -1773025689.36 +UniRef50_U7JH15 2.85594305966e-07 9.55191819211e-07 270324732.983 +UniRef50_S9Q8I1 3.18800240954e-08 1.44620329834e-08 -7031856.7547 +UniRef50_UPI0003497FAE hypothetical protein 4.60002496307e-08 2.35791847876e-07 76621197.2163 +UniRef50_A7GB27 Transcriptional regulator, AraC family 1.00509758833e-05 3.85195702433e-06 -2502619983.88 +UniRef50_UPI0004687B18 hypothetical protein 3.4445770466e-08 4.0115550257e-07 148045218.885 +UniRef50_D2UWK2 Probable membrane protein 1.03126608158e-05 4.12069821193e-06 -2499771287.11 +UniRef50_P23862 Primosomal replication protein N 1.0358695633e-05 6.7500961187e-06 -1456835906.42 +UniRef50_L1KG88 0.000103058147219 1.99340585259e-06 -40801076293.3 +UniRef50_U8CNV5 3.03339457655e-06 4.51305691949e-06 597357845.344 +UniRef50_Q88U22 Phosphoribosylaminoimidazole succinocarboxamide synthase 7.89963687168e-05 5.33031842319e-05 -10372653867.4 +UniRef50_G0DXB0 1.28834808487e-06 4.02822417894e-05 15742313397.4 +UniRef50_UPI0004548C9D 7.26695443163e-07 1.72100242396e-06 401413929.666 +UniRef50_P0A232 Phospholipase A1 1.80049533662e-05 9.0168451203e-07 -6904799517.15 +UniRef50_F3LPE7 Outer membrane autotransporter 1.52372987829e-06 1.0047976645e-06 -209499302.721 +UniRef50_O26834 Putative nickel responsive regulator 2 5.61939947183e-06 3.87724339418e-06 -703329787.206 +UniRef50_UPI00037DF050 hypothetical protein 2.65827695857e-07 6.02606020945e-08 -82989958.3436 +UniRef50_Q9ZJU5 Anthranilate synthase component 1 3.17734809777e-08 7.00497237441e-05 28267105738.1 +UniRef50_U5RZU5 1.18210643688e-06 2.27849388766e-05 8721328552.47 +UniRef50_M4MKF6 1.32993263525e-06 4.86892572658e-07 -340345618.533 +UniRef50_G4STG9 Pyrophosphate fructose 6 phosphate 1 phosphotransferase 4.84937658063e-06 6.94317847354e-05 26072710687.4 +UniRef50_F3WSY6 MazG family protein 1.71453090991e-07 1.43330302478e-07 -11353514.8281 +UniRef50_UPI00047EE3D3 hypothetical protein 1.3724154624e-07 4.2644265968e-07 116754038.392 +UniRef50_UPI00047A45E7 hypothetical protein 3.1945837796e-08 4.54948336944e-08 5469895.90906 +UniRef50_Q92GE0 3 oxoacyl [acyl carrier protein] reductase FabG 5.63328565342e-05 1.90110756164e-05 -15067260946.3 +UniRef50_UPI000366025E MULTISPECIES 6.0343034299e-08 1.17576622643e-07 23105901.9496 +UniRef50_O07329 Catabolite control protein A 7.75324485625e-05 1.43682834209e-05 -25500148579.1 +UniRef50_Q03UU4 Ketol acid reductoisomerase 1.61763794219e-07 4.76643938576e-07 127120978.291 +UniRef50_C6PR80 8.59958840324e-08 8.37314712711e-06 3345624651.61 +UniRef50_G4B1K2 Transcription repair coupling factor 7.67656962516e-08 2.51827087108e-07 70674431.7334 +UniRef50_A4IS03 S ribosylhomocysteine lyase 1.37257987945e-07 1.49446556353e-05 5977928137.46 +UniRef50_A0A011NLS4 2.65868900793e-08 1.62134824985e-06 643824730.862 +UniRef50_Q59094 Superoxide dismutase [Mn] 1.11953640826e-07 7.67772889463e-07 264762278.482 +UniRef50_A4WT79 Proton translocating NADH quinone oxidoreductase, chain M 3.22850470546e-05 5.20835782613e-06 -10931191709.9 +UniRef50_P23621 Phosphate regulon sensor protein PhoR 9.93159616954e-06 1.05765974777e-05 260394943.16 +UniRef50_B9E752 1.47793850838e-07 1.7308604313e-07 10210768.3984 +UniRef50_S5YGB9 7.57046076543e-05 4.43825608546e-05 -12645094657.8 +UniRef50_B9E750 0.000100627651212 2.91008267101e-05 -28876256784.3 +UniRef50_A3NT46 Oxygen dependent coproporphyrinogen III oxidase 7.6262879123e-06 2.06756152991e-06 -2244126053.81 +UniRef50_UPI00034B714A hypothetical protein 1.99770194631e-07 6.26937490907e-08 -55339443.1816 +UniRef50_I6STQ9 9.60206659121e-05 4.05190869683e-05 -22406668500.6 +UniRef50_U4TS42 Phosphorylase 2.33377451391e-05 1.71165407588e-05 -2511576551.09 +UniRef50_G4LBK7 Two component sensor 3.8118130373e-06 2.44184573207e-06 -553072612.511 +UniRef50_UPI0003F8C513 acetolactate synthase 1.24514609108e-07 3.31298606118e-06 1287225052.15 +UniRef50_S0L1H4 Diphosphomevalonate decarboxylase 0.000224097743413 8.27111886757e-05 -57079487155.5 +UniRef50_UPI00037B22BE hypothetical protein 5.60411553498e-08 2.28570770593e-07 69652322.8501 +UniRef50_A6TQQ4 2.41172753023e-07 3.71459436328e-07 52598332.8476 +UniRef50_G7SBD4 5.28946620781e-05 5.19678615034e-05 -374160765.128 +UniRef50_J9NTF4 3.48785187238e-07 1.26663710155e-06 370548081.117 +UniRef50_P31440 Adenine permease AdeQ 3.833588985e-05 1.12276001969e-05 -10943949189.1 +UniRef50_UPI00037ECA28 hypothetical protein, partial 1.50557666723e-06 4.11869905611e-07 -441542840.957 +UniRef50_UPI00035E1B99 hypothetical protein 1.41812304231e-07 2.08689040547e-07 26998959.1206 +UniRef50_A4T5H7 7.58097985609e-08 1.52733662239e-06 585999191.017 +UniRef50_P15977 4 alpha glucanotransferase 3.02820226699e-05 1.18934239425e-05 -7423702959.73 +UniRef50_I4N9F9 Lipoprotein 1.69982398226e-06 2.25488709275e-06 224085789.095 +UniRef50_A0KCX4 Carbohydrate ABC transporter membrane protein 2, CUT1 family 1.34336650837e-06 2.0994078568e-06 305223170.032 +UniRef50_D3H3M8 1.87379828837e-05 3.37504805945e-06 -6202205312.98 +UniRef50_E8U8Y0 Oligoendopeptidase F 6.4971770888e-07 0.000283176471771 1.14059517608e+11 +UniRef50_W4TXL6 Iron ABC transporter 4.93445737057e-06 1.79578795789e-05 5257715360.85 +UniRef50_A1B3M6 2.15590058288e-05 3.59858680012e-06 -7250841561.01 +UniRef50_Q9I5L2 2.49770293208e-05 1.22523496665e-05 -5137109325.82 +UniRef50_Q9I5L3 2.5091048076e-05 1.5206475195e-05 -3990523369.41 +UniRef50_A6LZM7 ABC transporter related 6.12118787511e-06 1.76004050141e-05 4634300824.85 +UniRef50_UPI00047CD6DA hypothetical protein 1.61038052937e-06 5.21836076233e-06 1456585894.94 +UniRef50_Q9TKX3 Sulfate thiosulfate import ATP binding protein CysA 1.48581398574e-07 3.79247889356e-07 93122892.9248 +UniRef50_D5AUK2 Transcriptional regulator, GntR family 1.13245796655e-06 1.61669729117e-06 195493357.634 +UniRef50_Q14VU5 ORF13 1.93518972071e-08 1.94596379658e-07 70748348.0571 +UniRef50_UPI0003B67745 exonuclease, partial 2.50358626704e-07 1.97468816337e-07 -21352265.4761 +UniRef50_D5ANZ3 Cytochrome b 0.000126426079407 3.3334568963e-05 -37582185127.5 +UniRef50_Q5HQP3 1.21954699548e-05 9.16896867559e-06 -1221835705.76 +UniRef50_C8NEG6 ABC transporter, substrate binding protein, family 3 2.29294731724e-05 4.43700710633e-06 -7465635478.96 +UniRef50_A6LW01 8.41611976392e-06 6.76307631791e-06 -667353924.278 +UniRef50_UPI00047A328A ABC transporter substrate binding protein 7.32498305569e-08 3.73056864454e-07 121035778.63 +UniRef50_O83668 Fructose bisphosphate aldolase 1.39281752955e-07 5.7998256801e-05 23358378236.3 +UniRef50_X6KYL5 ATPase 4.06935588584e-07 4.00442577627e-07 -2621308.20155 +UniRef50_Q2CBA4 5.23034630674e-06 5.27351259279e-06 17426759.3883 +UniRef50_I6T7T2 Permease 3.92482061747e-05 8.79043425551e-06 -12296176282.7 +UniRef50_P0ACQ6 Hydrogen peroxide inducible genes activator 4.43159449783e-05 1.16770140896e-05 -13176736924.5 +UniRef50_Q8D0W8 Sulfate thiosulfate import ATP binding protein CysA 2.59261559997e-06 4.37233491368e-06 718494526.557 +UniRef50_R9SKE9 Radical SAM domain containing protein 3.08670795166e-05 2.79971292315e-06 -11331140319.1 +UniRef50_G9ZYG4 ABC transporter, solute binding protein 8.28349461792e-08 1.86651188944e-07 41911891.1728 +UniRef50_UPI0003B488FD histidinol dehydrogenase 4.17337978171e-08 6.66248458354e-08 10048821.5325 +UniRef50_W5X7W3 Preprotein translocase subunit SecA 3.37029915123e-07 6.82188862652e-08 -108522311.032 +UniRef50_Q8YMN9 All4894 protein 6.81247790327e-07 1.55701436842e-07 -212169512.081 +UniRef50_P76407 Lipid kinase YegS 1.85186760525e-05 5.47872620502e-06 -5264387771.61 +UniRef50_UPI00046E91F0 ATP dependent DNA helicase RuvB 7.69870648316e-08 1.26859993343e-07 20134313.2497 +UniRef50_F2KCE9 Protein tldE, 9.13769319381e-07 1.49780239319e-06 235781318.788 +UniRef50_R7CNB5 4.24838133132e-06 1.74538209066e-05 5331198005.51 +UniRef50_A4W3H4 Ribosomal RNA small subunit methyltransferase H 1.72877259824e-07 2.38205449579e-05 9546853639.24 +UniRef50_B4UFY0 Holliday junction ATP dependent DNA helicase RuvA 1.26924115802e-07 8.83077160094e-08 -15589914.4728 +UniRef50_Q089C0 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.19221837037e-07 5.62072362602e-08 -65810994.7478 +UniRef50_UPI0003B490B8 ArsR family transcriptional regulator 1.04827875076e-06 6.71874375898e-07 -151959065.133 +UniRef50_UPI0002003580 Rhamnan synthesis F, partial 9.34932539392e-08 1.05091762229e-07 4682460.12629 +UniRef50_A2BPB2 S adenosylmethionine synthase 0.000135892131308 7.41983032761e-05 -24906555444.9 +UniRef50_A5I6S3 2.16226306108e-06 1.64674742667e-06 -208119987.7 +UniRef50_Q1JDC3 SAM dependent methyltransferase 6.75928954462e-05 5.34677932484e-05 -5702477091.75 +UniRef50_UPI0002555D97 glutamine ABC transporter ATP binding protein 1.60097709647e-06 1.31743554077e-06 -114469205.482 +UniRef50_A6TC48 Cell division protein ZipA homolog 2.05184445951e-05 2.95328780334e-05 3639237398.58 +UniRef50_UPI00021940CD 3 phosphoshikimate 1 carboxyvinyltransferase 4.45028863019e-08 7.3057439033e-08 11527823.3413 +UniRef50_UPI00016C05A2 alpha amylase, catalytic region 4.05949264013e-08 6.26836083283e-08 8917471.95254 +UniRef50_Q5JCY6 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.04570743768e-07 1.95754533339e-07 -84301666.6132 +UniRef50_M8VH72 Mechanosensitive ion channel family protein 1.5737790242e-05 7.59188153723e-06 -3288603305.66 +UniRef50_F0YHZ1 6.07856218612e-08 3.85281084015e-07 131002800.079 +UniRef50_Q251B6 Nitrate reductase gamma chain 6.3023160944e-05 2.35881727735e-05 -15920388646.2 +UniRef50_UPI00047789D2 hypothetical protein, partial 4.49010851424e-06 4.7884433868e-07 -1619396571.42 +UniRef50_UPI00046CC1E2 hypothetical protein 1.34674404318e-06 7.71772579833e-07 -232123035.446 +UniRef50_D1CT73 Replication protein RepA 2.72968042264e-06 8.45758248116e-07 -760562500.179 +UniRef50_Q7W0R9 DNA directed RNA polymerase subunit beta 7.60029842256e-08 6.92035962524e-08 -2744996.36265 +UniRef50_B2TQ13 Thiamine phosphate synthase 2.2248683036e-06 2.31163709501e-05 8434155985.96 +UniRef50_Q6LQV5 1.63350827495e-07 1.57920637463e-06 571598258.882 +UniRef50_U6LL89 3.99386249955e-08 1.749187447e-08 -9062028.63975 +UniRef50_I6TNX3 5.23875341133e-05 2.88666764683e-05 -9495658864.67 +UniRef50_UPI000371A755 hypothetical protein 4.14615818744e-08 2.82952112497e-06 1125573850.89 +UniRef50_Q9RY41 Putative GTP cyclohydrolase 1 type 2 3.34058397217e-06 0.000377857979011 1.51197268222e+11 +UniRef50_B7UYR5 5.26851875572e-06 4.60233826278e-06 -268945239.954 +UniRef50_M9VDI6 2.7565167683e-06 4.86423162389e-06 850910351.771 +UniRef50_Q097V6 NTR 1.67351199363e-07 1.14500822689e-06 394692139.213 +UniRef50_P77301 1.85344238781e-05 6.06428443274e-06 -5034348319.93 +UniRef50_Q3JVY5 1.06960636822e-06 3.54108125162e-06 997764738.836 +UniRef50_W7CT60 XRE family transcriptional regulator 4.03886623871e-07 5.64007903666e-07 64642925.5623 +UniRef50_UPI0004707E78 hypothetical protein 1.16165537314e-06 3.40778121796e-07 -331398219.664 +UniRef50_M5U388 5.5510866732e-08 2.12902135391e-08 -13815297.6286 +UniRef50_UPI0003738D5A hypothetical protein 1.74775047618e-06 6.98364877408e-07 -423649843.633 +UniRef50_Q167I1 1.97397444238e-06 4.69496575001e-07 -607376177.081 +UniRef50_A3M3F4 Urease accessory protein UreF 3.02796247737e-06 4.70890023083e-05 17787982469.5 +UniRef50_Q63060 Glycerol kinase 4.18707507153e-08 4.56472314666e-08 1524611.62193 +UniRef50_UPI00042B2928 Chloroplast heat shock protein 70 isoform 1 1.65512041081e-07 9.37853173534e-08 -28956958.5547 +UniRef50_M9VEF8 Glucoamylase S1 S2 2.83767961447e-06 9.11239439799e-06 2533179357.52 +UniRef50_A5V2F8 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.19399629891e-06 3.62130472155e-07 -335834442.403 +UniRef50_UPI00036140A6 hypothetical protein 2.8346551216e-07 2.55882409651e-07 -11135636.9656 +UniRef50_W8S0L8 Flagellar protein FlgJ, putative 1.37968433853e-06 1.15718910595e-06 -89824055.7161 +UniRef50_W0PCE9 5.09321514118e-08 1.37532608598e-07 34961667.2732 +UniRef50_UPI0002EE0684 hypothetical protein 1.2069164233e-07 2.47984120959e-08 -38713273.7878 +UniRef50_B9KPQ7 Ribonuclease BN 2.57933656796e-05 9.79770789844e-06 -6457643335.06 +UniRef50_Q9RS22 4.86033462046e-06 0.000400403389859 1.59685585259e+11 +UniRef50_Q2A1U9 Lipid A export ATP binding permease protein MsbA 3.31853988807e-08 4.57945793233e-08 5090480.87672 +UniRef50_Q83QP2 Fructose like permease IIC component 1.55343295917e-05 3.69439691128e-06 -4779926115.39 +UniRef50_Q4L8U4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000106294602453 3.21301323198e-05 -29941106693.2 +UniRef50_H8GX31 9.79096584758e-08 3.06632169627e-05 12339589637.2 +UniRef50_U1KQC4 Branched chain amino acid transport 3.82393626324e-07 3.90854927715e-07 3415931.20339 +UniRef50_UPI0004709E67 membrane protein 1.14674010968e-07 1.34000682525e-07 7802414.47249 +UniRef50_UPI000407D6C0 MULTISPECIES 3.60985479097e-07 5.04164491759e-07 57803124.4157 +UniRef50_K9QPP2 Mannose 1 phosphate guanylyltransferase 4.7469097309e-06 0.000571037799429 2.28618581342e+11 +UniRef50_UPI0003F78AFE serine protease 8.5754265292e-08 4.00950421952e-07 127248556.335 +UniRef50_UPI0004714520 hypothetical protein 2.06772670667e-07 1.25788225822e-07 -32694414.1748 +UniRef50_E7Q0E7 9.69401391164e-07 1.69128734311e-07 -323079892.021 +UniRef50_T1UAW5 CobW HypB UreG, nucleotide binding domain protein 1.18581986021e-06 5.11122365075e-05 20155907066.5 +UniRef50_Q9UTM8 Putative succinate semialdehyde dehydrogenase C139.05 [NADP] 3.82118012215e-08 6.86081670759e-08 12271385.9008 +UniRef50_UPI0003B349C5 2 hydroxy acid oxidase, partial 1.20057820554e-07 1.8338811223e-07 25567215.8997 +UniRef50_S5SX20 Amino acid ABC transporter ATP binding protein 8.15351264251e-06 6.87397337742e-06 -516565703.029 +UniRef50_Q3IUW9 TraL 6.66372010756e-05 3.0291105647e-05 -14673364741.3 +UniRef50_I2B6D3 5.86381905036e-07 9.35600269367e-07 140983739.072 +UniRef50_G2JEX5 1.19331714078e-06 7.14952761314e-05 28381763546.6 +UniRef50_R1DUC8 4.2229519084e-07 1.02341758949e-06 242680488.936 +UniRef50_C8S343 2.06150960869e-07 6.69573156264e-08 -56194182.6827 +UniRef50_W0ACQ7 4.55814597666e-08 7.98606375673e-08 13838924.731 +UniRef50_J4SHG0 PTS system N acetylmuramic acid transporter subunits EIIBC 3.18136347097e-07 5.49032302234e-07 93215530.5008 +UniRef50_UPI00047B5F70 iron ABC transporter ATP binding protein 1.81664410594e-06 1.18999859333e-07 -685359814.794 +UniRef50_A6QJP6 Zn binding lipoprotein adcA like protein 0.000132101779348 2.30858690386e-05 -44011060767.4 +UniRef50_E6SMQ6 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein 0.000348640666911 0.000103510307359 -98962134238.9 +UniRef50_C0M7M5 Thymidylate kinase 3.75126159729e-05 7.30833487767e-05 14360341334.9 +UniRef50_Q1J230 TatD related deoxyribonuclease 2.10103518845e-06 0.000302188966039 1.21149180178e+11 +UniRef50_UPI00041E2B86 hypothetical protein 1.91921822435e-08 2.42544412233e-07 90170036.0866 +UniRef50_S9SAD7 2.18405197906e-06 2.71388424458e-07 -772165748.013 +UniRef50_UPI00037D7D9D hypothetical protein 4.45902826129e-08 9.35053533002e-06 3756924212.43 +UniRef50_UPI0003648262 hypothetical protein 6.83420315356e-07 1.83896522323e-07 -201663885.094 +UniRef50_B8GAP1 1.1262094893e-07 2.44379317871e-07 53192470.3985 +UniRef50_C3KRZ1 1.16653090434e-07 1.89902066833e-07 29571510.6383 +UniRef50_K0AWK4 Signal transduction response regulator 3.4485110672e-06 3.09772767695e-06 -141615559.24 +UniRef50_F2MTK1 Cysteine synthase 4.04609803256e-05 1.65486259673e-05 -9653710892.03 +UniRef50_A5WC68 Short chain dehydrogenase reductase SDR 4.13215248013e-06 4.75040276462e-06 249595226.633 +UniRef50_E3EXD1 Flagellar biosynthesis regulatory protein FlaF 9.92641436033e-07 1.06292919008e-06 28376028.8365 +UniRef50_UPI0003713DCA hypothetical protein 8.73847807637e-08 4.98005929809e-06 1975232742.51 +UniRef50_T2H287 5.35853192817e-06 1.03104535349e-06 -1747059434.43 +UniRef50_P0ACK4 Putative aga operon transcriptional repressor 3.86527900076e-05 5.64228969712e-06 -13326744059.7 +UniRef50_X5ET90 M23 peptidase domain protein 1.26673150626e-06 1.91181472931e-05 7206835614.64 +UniRef50_P46333 Probable metabolite transport protein CsbC 0.000121403459608 2.07179873112e-05 -40647960716.0 +UniRef50_I0TGY1 3.07319972126e-05 1.20888942708e-05 -7526449434.2 +UniRef50_P76268 Transcriptional regulator KdgR 4.48900218816e-05 6.75749033314e-06 -15394570924.9 +UniRef50_UPI0004410E83 hypothetical protein AURDEDRAFT_58877, partial 3.37857074765e-07 2.12392714251e-07 -50651501.9603 +UniRef50_H8GVU2 ABC transporter, ATP binding protein 1.24173022652e-06 0.000129759961736 51884387156.2 +UniRef50_B2AGK5 5.12890227549e-07 2.05391591804e-07 -124140972.683 +UniRef50_UPI000473B328 ABC transporter ATP binding protein, partial 8.79557546893e-07 6.31648074203e-07 -100084096.316 +UniRef50_Q3IXI2 3.23927395556e-05 1.60749233432e-05 -6587702647.07 +UniRef50_W8S015 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 9.89335753291e-08 3.95055436573e-07 119548029.208 +UniRef50_B9KSK5 1.3938905445e-05 1.75262139585e-06 -4919752413.14 +UniRef50_H2PRE9 6.636561201e-07 1.51399236449e-06 343291176.659 +UniRef50_K7E9E4 6.36125515652e-07 2.13885938448e-05 8378026125.88 +UniRef50_A7X538 4.47993564031e-05 5.09166733097e-06 -16030481346.5 +UniRef50_B2UUZ0 RNA pyrophosphohydrolase 3.81298978638e-06 3.10228041941e-05 10984935978.4 +UniRef50_UPI00036109FB hypothetical protein 4.04573095656e-07 3.84114796426e-07 -8259266.45071 +UniRef50_UPI00037C9F7B hypothetical protein 1.90335792403e-08 4.55954634524e-08 10723358.6074 +UniRef50_UPI00037F00C2 hypothetical protein 8.74258589778e-08 5.63583277875e-08 -12542343.583 +UniRef50_UPI0003A983A5 amidophosphoribosyltransferase 8.17854053128e-08 6.03716547012e-07 210710006.719 +UniRef50_B8GWS6 DNA polymerase III subunit alpha 1.11023881397e-07 5.60117892858e-08 -22209056.6596 +UniRef50_W1JGI9 1.16744393623e-06 4.91756503465e-07 -272783308.224 +UniRef50_D2T8K9 Aromatic amino acid transaminase 1.60177930206e-06 0.000118484525728 47186999044.8 +UniRef50_UPI00046FDA71 acyl transferase 1.9679621671e-06 1.90938039666e-07 -717406446.782 +UniRef50_M9VAR4 Response regulator MprA 2.15706279348e-06 8.81764770999e-05 34727093132.4 +UniRef50_A0A016QSU1 5.61820336645e-07 8.15484568749e-05 32695298988.3 +UniRef50_UPI000379C227 dehydrogenase 3.62774354659e-07 2.08413466472e-07 -62317384.7822 +UniRef50_A6QIG0 GntR family regulatory protein 0.000105588467751 3.25332184047e-05 -29493300649.8 +UniRef50_I6SY16 2.40760195392e-06 6.04125547655e-07 -728085556.351 +UniRef50_D2PY67 ABC transporter related protein 3.01988791085e-06 6.80960494108e-05 26272044971.8 +UniRef50_P22344 0.000351935426953 6.42975647167e-05 -1.16122934698e+11 +UniRef50_H4CJE2 Bacterial regulatory s, gntR family protein 3.89415190696e-05 4.56675317307e-06 -13877514818.2 +UniRef50_UPI00021A48D6 PREDICTED 8.32206896854e-07 8.6570499113e-07 13523591.7271 +UniRef50_A6VAY7 Membrane protein, putative 1.83908970067e-05 2.54914428892e-05 2866577506.26 +UniRef50_P17802 A G specific adenine glycosylase 5.41156774029e-05 1.41551153993e-05 -16132569252.1 +UniRef50_Q8ET44 2 hydroxypenta 2,4 dienoate hydratase 8.15080018727e-05 4.91796919772e-05 -13051335417.8 +UniRef50_G2JI07 Transcriptional regulator 7.84345074076e-06 3.61623073966e-05 11432669943.4 +UniRef50_Q2NFZ8 50S ribosomal protein L13 1.89180433271e-05 0.000274751738243 1.0328320207e+11 +UniRef50_P47385 Ribonuclease J 4.55987292977e-08 3.11483224045e-08 -5833806.58922 +UniRef50_C1CA92 Mobile genetic element 2.6428768201e-07 1.2287974001e-06 389384409.058 +UniRef50_UPI00037DF719 hypothetical protein, partial 5.76331182378e-07 2.03944170625e-07 -150337206.347 +UniRef50_Q8DUT9 5.51095360208e-05 2.08127453603e-05 -13846035258.6 +UniRef50_UPI00037DF44A molybdate ABC transporter permease 4.24050906562e-07 4.48225756857e-07 9759683.72286 +UniRef50_Q21RX2 3.81076924197e-06 1.07670793581e-06 -1103774100.0 +UniRef50_A0A024HLH2 9.21628968707e-07 2.31199679607e-07 -278734776.53 +UniRef50_A3X988 2.3671967473e-06 1.80090402131e-07 -882961670.358 +UniRef50_C4ZT30 Endoribonuclease SymE 6.66157507638e-06 1.0361989656e-05 1493902774.99 +UniRef50_K1LFR3 1.87187419284e-07 9.06098124848e-07 290233073.863 +UniRef50_A0Q196 DNA gyrase, A subunit 4.54878417847e-06 7.05479092612e-06 1011705676.19 +UniRef50_P25748 HTH type transcriptional regulator GalS 9.06802042389e-05 1.25388142012e-05 -31546638060.9 +UniRef50_D6AT21 1.21900749898e-06 9.99867107053e-07 -88469665.3759 +UniRef50_UPI000367E513 hypothetical protein 1.42653801834e-06 3.14117731554e-07 -449097720.709 +UniRef50_Q5HGH1 Isoprenyl transferase 6.39455120327e-05 3.0854806892e-05 -13359123733.9 +UniRef50_A0A058ZPK5 2.86432061453e-07 5.89014362011e-07 122156187.838 +UniRef50_UPI000466E6FA 3 oxoacyl ACP synthase, partial 3.39841490146e-07 3.26659521527e-07 -5321722.49244 +UniRef50_O26091 RlpA like lipoprotein 3.40685847228e-06 3.55536265083e-05 12978044741.3 +UniRef50_UPI000380CA6B hypothetical protein 4.68509779545e-07 4.07735366546e-07 -24535376.3136 +UniRef50_A8MM09 Diguanylate cyclase 4.77780525616e-06 1.65443532329e-06 -1260942769.96 +UniRef50_P33772 N acetylmuramoyl L alanine amidase AmiA 1.7278024531e-05 6.19934767226e-06 -4472597798.51 +UniRef50_UPI00036F5D2F hypothetical protein, partial 8.00072190209e-08 3.48437832804e-07 108368732.798 +UniRef50_UPI000416A546 hypothetical protein 3.22802967201e-07 9.06029141938e-08 -93742010.814 +UniRef50_B5FV81 KLLA0D19929p 2.64584140756e-05 5.22324190859e-05 10405282105.3 +UniRef50_Q6MIR4 NADH quinone oxidoreductase subunit B 1.03992571282e-07 3.35844194903e-07 93601345.5952 +UniRef50_I0C718 Integral membrane protein 0.0001477288785 4.77601140485e-06 -57711826675.2 +UniRef50_UPI0004640768 hypothetical protein 5.40357463613e-07 2.45202074406e-07 -119157852.587 +UniRef50_UPI0003B6DF5B hemin receptor 1.15137464635e-07 5.52635647935e-07 176623385.305 +UniRef50_D4X8Q2 ParB like protein 4.16891923588e-07 1.54690481469e-07 -105853939.757 +UniRef50_G7EHM5 1.0656326808e-06 1.95590001222e-06 359411846.503 +UniRef50_P45563 Purine nucleoside phosphorylase 2 2.8885442046e-05 2.18753114953e-06 -10778274249.1 +UniRef50_B6TQL9 6.96584544903e-08 1.51517577573e-06 583573081.077 +UniRef50_Q9C550 2 isopropylmalate synthase 2, chloroplastic 1.15794674952e-07 5.14381570425e-08 -25981516.0233 +UniRef50_A5EYT7 NH dependent NAD(+) synthetase 1.44185027218e-07 1.06878215892e-06 373271208.151 +UniRef50_I8HVI3 1.31681158902e-05 3.62998440141e-07 -5169583051.07 +UniRef50_R7BPR1 D amino acid transaminase 3.58628526425e-06 2.21779501072e-05 7505683242.46 +UniRef50_P59872 Acetyl coenzyme A synthetase 2.73613063041e-06 0.000468117745856 1.87880268941e+11 +UniRef50_UPI000474B8D5 ABC transporter ATP binding protein 2.62477395065e-07 1.51588743181e-07 -44767109.5223 +UniRef50_UPI0004772A28 phospholipase 3.32334991836e-07 4.04094670606e-07 28970262.9097 +UniRef50_UPI0003806FFB hypothetical protein 2.03647012719e-06 3.11288361973e-07 -696477048.98 +UniRef50_X5PNE7 1.39836171138e-05 2.78010385417e-06 -4522995785.47 +UniRef50_C5C445 YCII related protein 3.86717879019e-07 1.93713029451e-07 -77918426.2064 +UniRef50_S5XXL2 3.22692709622e-08 6.46454656554e-08 13070667.0982 +UniRef50_Q9LCJ9 FmtB 6.70591900274e-06 1.21159347838e-06 -2218126637.14 +UniRef50_UPI00041BC991 mechanosensitive ion channel protein MscL 1.33203356731e-07 1.98705563716e-07 26444044.7623 +UniRef50_A0A017HRC2 2.6345740223e-06 2.74169289687e-07 -952924355.978 +UniRef50_UPI00037F91DA hypothetical protein 2.52918923461e-08 1.17066579213e-07 37050567.2902 +UniRef50_Q1GDV5 4.50863202773e-07 6.20203134595e-07 68364608.5112 +UniRef50_F8UHK9 IS4 family transposase 1.4757032753e-07 3.03000379087e-07 62749019.1548 +UniRef50_A2SD53 8 amino 7 oxononanoate synthase 2.78247957257e-07 5.42821088302e-08 -90417761.38 +UniRef50_UPI000479CA29 ABC transporter permease 5.14586969163e-08 5.59848395694e-07 205243160.04 +UniRef50_Q5SJ45 Valine tRNA ligase 2.01663350434e-08 4.20065913411e-08 8817179.47746 +UniRef50_P37127 Protein AegA 5.59429278276e-05 3.84082208818e-05 -7078976369.07 +UniRef50_P45537 2.30285736921e-05 4.80143836312e-06 -7358518204.42 +UniRef50_UPI0003730FF4 hypothetical protein 2.0507725822e-08 6.87904131277e-07 269436118.757 +UniRef50_UPI0003792FEF thioredoxin, partial 2.41897474492e-06 7.1392197663e-07 -688350725.909 +UniRef50_UPI00039C7ED5 UDP N acetylglucosamine 1 carboxyvinyltransferase 8.46256784066e-08 1.33416252064e-07 19697353.3132 +UniRef50_P0ACN0 1.65098908463e-05 5.46882787401e-06 -4457412611.0 +UniRef50_Q83GA7 Oligoribonuclease 4.64134230695e-07 1.8172971284e-07 -114010169.351 +UniRef50_UPI00037DBB4D hypothetical protein 4.94693563624e-08 7.82835838134e-08 11632657.2123 +UniRef50_E1VBT7 Na H(+) antiporter NhaD 0.000129402022105 2.13583080506e-05 -43618573209.1 +UniRef50_Q3M8C8 Lysine tRNA ligase 3.70186612876e-08 1.46029912792e-07 44009179.9507 +UniRef50_UPI00037733AF hypothetical protein, partial 6.90420791812e-07 1.96108699003e-06 512983537.049 +UniRef50_UPI000364EBAA hypothetical protein 1.13175177822e-07 3.01349704651e-07 75968365.642 +UniRef50_A4EBS8 5.85008665216e-07 1.68311918781e-08 -229380218.308 +UniRef50_D8LTU3 2.18438073365e-06 2.36353112865e-07 -786442655.496 +UniRef50_Q5HEZ3 Putative fluoride ion transporter CrcB 1 3.9885252192e-05 1.47963431839e-05 -10128700442.1 +UniRef50_W2EZB5 6.44563408774e-08 9.85697653249e-08 13772008.0682 +UniRef50_B1YHH7 Na+ H+ antiporter MnhB subunit related protein 7.97976087521e-08 7.49897557177e-07 270527572.23 +UniRef50_F0P908 Transcriptional regulator, GntR family 5.21188900623e-05 1.5092310375e-05 -14948084587.0 +UniRef50_V9W7G7 2.97935388736e-07 1.82954545271e-06 618329777.794 +UniRef50_A0A038GMN1 4.13305827211e-06 2.56425503788e-06 -633345117.039 +UniRef50_U4QJA4 Extracellular ligand binding receptor 6.95194900568e-06 2.00064694203e-05 5270270088.35 +UniRef50_UPI00045E1D0A PREDICTED 3.02749735265e-08 7.14136420501e-08 16608185.3112 +UniRef50_A9KHS7 Radical SAM domain protein 8.57273252495e-07 2.82527757878e-06 794507496.652 +UniRef50_Q9KWU8 DNA directed RNA polymerase subunit alpha 1.66600072268e-07 1.094389646e-06 374560036.174 +UniRef50_P46707 Probable acetyl CoA acetyltransferase 6.26475621396e-08 6.09770284373e-07 220880156.916 +UniRef50_D9X888 Integral membrane protein 1.42132163247e-07 6.13919298622e-07 190466256.03 +UniRef50_Q3IV17 Putative threonine efflux protein 9.91865729053e-05 2.38140564875e-05 -30428809802.7 +UniRef50_P31126 3.19862055069e-05 8.32040179338e-06 -9554175371.21 +UniRef50_UPI000475237F hypothetical protein 1.54174154842e-06 5.68930370085e-07 -392735810.429 +UniRef50_Q6MBY2 Protoheme IX farnesyltransferase 5.4557248113e-08 1.59576093072e-07 42397396.4361 +UniRef50_UPI0002558CFD HD superfamily hydrolase like protein, partial 1.85163183024e-06 2.91960368577e-06 431153343.566 +UniRef50_UPI00016C46AD probable chromosome partitioning protein parB 7.56617608243e-08 5.92340631102e-06 2360806234.81 +UniRef50_UPI00037F23A8 hypothetical protein 3.81823609609e-07 4.05665449352e-07 9625243.27652 +UniRef50_B2ICS4 Putative DNA topology modulation protein FlaR 1.08381131848e-07 2.174523502e-07 44033389.3031 +UniRef50_E3A1I0 Putative transcriptional accessory protein 5.13718119008e-06 6.97316913152e-06 741210862.065 +UniRef50_B1GZT3 Chorismate synthase 1.63136524433e-07 1.58076098603e-06 572312391.356 +UniRef50_UPI0002B47979 PREDICTED 6.35580399989e-08 4.18161164959e-07 143157633.016 +UniRef50_Q02C42 Allantoinase 9.99641442404e-08 3.97076371003e-07 119947851.921 +UniRef50_A0A011PY56 Putative acetyltransferase 2.55571688864e-06 5.1126970555e-07 -825368416.002 +UniRef50_UPI0003B33483 MULTISPECIES 4.9594058738e-07 2.7088950413e-07 -90855883.9954 +UniRef50_A4WVT7 Lytic transglycosylase, catalytic 3.54223458085e-05 2.6134221699e-06 -13245365083.7 +UniRef50_A6FVD1 4.71569952194e-07 2.46568339008e-07 -90835912.3235 +UniRef50_W4YP60 3.62713540647e-07 8.74686114986e-07 206689610.871 +UniRef50_W4YP61 2.9119806403e-07 2.61324401648e-08 -107010245.075 +UniRef50_A0A024HY78 7.33608045297e-08 7.29619251054e-07 264939588.058 +UniRef50_A0A024HY79 4.28769904659e-08 6.44825016876e-08 8722410.00964 +UniRef50_L6T5N5 CRISPR associated helicase Cas3 1.99475568817e-07 3.18868695041e-07 48200470.175 +UniRef50_UPI000368B121 hypothetical protein 6.66846154536e-08 5.97946071645e-07 214476769.175 +UniRef50_Q2FDY2 Putative NADH nitroreductase SAUSA300_2462 0.000163025235974 4.37974558027e-05 -48133717944.4 +UniRef50_UPI000471156C MULTISPECIES 1.57818309519e-06 1.55737033255e-07 -574258930.577 +UniRef50_UPI0003683BB9 hypothetical protein 7.64237766151e-08 8.9575464249e-06 3585418196.74 +UniRef50_Z9JK63 Transposase 6.03336371628e-08 9.08198255688e-06 3642150376.97 +UniRef50_A0A023Y025 Multidrug transporter 5.84173558641e-05 1.378610379e-05 -18018184149.4 +UniRef50_UPI000474A653 guanine permease 2.25674243247e-07 5.92086387479e-08 -67204207.2989 +UniRef50_D0K5S8 Ftsk spoiiie family protein 8.54272438723e-05 9.12030060158e-06 -30806049389.9 +UniRef50_UPI00036ED578 hypothetical protein, partial 4.36651411896e-07 4.2235817148e-07 -5770356.55372 +UniRef50_J7N103 Cell wall surface anchor family protein 1.77054004094e-07 8.71998145347e-07 280557477.747 +UniRef50_P77828 10 kDa chaperonin 1 4.0300995251e-06 0.000100291862261 38862054881.1 +UniRef50_R5QB36 6.0207087997e-05 5.18220577343e-05 -3385139612.94 +UniRef50_UPI00040C1A22 succinate semialdehyde dehydrogenase 9.88462858088e-08 2.81851516231e-07 73881457.2481 +UniRef50_O54151 3 oxoacyl [acyl carrier protein] synthase 3 protein 3 4.45758900914e-08 7.47580764492e-08 12184919.0097 +UniRef50_E3DNN6 Binding protein dependent transport systems inner membrane component 1.36605303564e-06 0.000563983677778 2.27135639203e+11 +UniRef50_Q46834 Putative type II secretion system C type protein YghF 4.13750315515e-05 1.93058979619e-05 -8909580048.84 +UniRef50_UPI0003677725 hypothetical protein 1.45210897562e-07 2.09982697464e-07 26149170.4598 +UniRef50_R9K990 1.41367985016e-06 7.68845884024e-07 -260327385.132 +UniRef50_Q6GJM8 0.000755007529771 0.0001629437357 -2.39023419106e+11 +UniRef50_Q9LXS6 Citrate synthase 2, peroxisomal 9.69541613356e-08 4.03679563109e-07 123828808.64 +UniRef50_R6ND25 N acetylmannosamine kinase 9.85350082675e-06 1.64154672689e-05 2649146377.08 +UniRef50_G2JIZ7 Methionine import ATP binding protein MetN 4.38987184999e-06 3.27827958547e-05 11462571841.1 +UniRef50_A5IQI8 0.000125731150065 4.42567338981e-05 -32892221610.1 +UniRef50_Q9I1X7 Multifunctional non homologous end joining protein LigD 9.36179702101e-07 2.38244598237e-06 583875445.028 +UniRef50_C9WZF0 9.96210958277e-06 8.32357385113e-06 -661496981.958 +UniRef50_L1ITB2 2.06659019779e-06 6.49339461628e-07 -572161513.81 +UniRef50_UPI00036D7E16 hypothetical protein 5.24416439317e-08 6.60785268229e-08 5505376.96655 +UniRef50_G2U6X6 2.01603468197e-06 1.09936523364e-06 -370070705.09 +UniRef50_Y1DKJ6 Alpha glucosidase yihQ 2.24037425686e-05 4.81869487784e-06 -7099299545.58 +UniRef50_UPI0003762D52 hypothetical protein 2.36734195231e-07 1.6921106725e-07 -27259915.3679 +UniRef50_P78285 Lysozyme RrrD 8.45679486144e-06 2.34885877881e-05 6068519265.35 +UniRef50_O26565 2.97764657233e-05 4.36386296078e-06 -10259379582.9 +UniRef50_Q8XAS8 Ferrous iron permease EfeU 3.3069104539e-05 2.32228077477e-06 -12412870059.6 +UniRef50_A5UMC5 Predicted metal dependent membrane protease 3.95799030476e-05 7.11609072484e-06 -13106039410.5 +UniRef50_Q05762 Bifunctional dihydrofolate reductase thymidylate synthase 1 9.39046864504e-08 1.98891741525e-07 42384562.4698 +UniRef50_P76065 1.44194394776e-05 9.13545328939e-06 -2133210065.98 +UniRef50_UPI0003F08F9D PREDICTED 1.41126510563e-07 2.10916002321e-07 28174874.2361 +UniRef50_Q2NBI6 2.89726178842e-06 8.42070123898e-07 -829706095.004 +UniRef50_E3A6K9 5.35868456969e-07 4.02338835485e-07 -53907546.7858 +UniRef50_UPI00031A8C2B hypothetical protein 5.2269522121e-07 3.28552967736e-07 -78377610.1208 +UniRef50_Q8P013 2.35142866621e-06 2.3455441151e-06 -2375665.49467 +UniRef50_A0LH56 Bifunctional protein PyrR 1.97230956949e-07 7.88110498961e-07 238545322.018 +UniRef50_C9A4C5 Universal bacterial protein YeaZ 4.75317918058e-05 3.00126290854e-05 -7072700974.53 +UniRef50_UPI00036C9E20 hypothetical protein 2.35852343077e-07 2.48210644939e-07 4989198.11511 +UniRef50_P0AEA0 Curli production assembly transport component CsgF 1.85648846977e-05 8.66454880764e-06 -3996887089.6 +UniRef50_UPI00035005CE PREDICTED 2.42659520452e-06 3.63094309672e-06 486210023.092 +UniRef50_E2CI08 Membrane bound lytic murein transglycosylase A 2.56230695123e-06 3.36626033459e-06 324565846.48 +UniRef50_UPI000299DD27 signal recognition particle protein, partial 1.3826971185e-07 7.07536180026e-07 229819858.888 +UniRef50_P32701 Putative cyclic di GMP phosphodiesterase YjcC 1.15728853815e-05 1.02980320599e-05 -514673930.139 +UniRef50_G9RRR3 1.11519059968e-07 3.49501736738e-06 1365959786.89 +UniRef50_UPI00047ACFC0 glutamyl tRNA amidotransferase 1.29682592136e-07 5.49689336837e-08 -30162820.7569 +UniRef50_J1CAV3 4.438756278e-06 8.72091777161e-07 -1439906226.88 +UniRef50_Q5HL30 Transcriptional regulator, LysR family 7.85878644397e-05 2.56951626669e-05 -21353432772.1 +UniRef50_UPI00046AB4F5 hypothetical protein 3.71846177253e-06 2.06689908995e-07 -1417745395.6 +UniRef50_A6LTS7 Stage V sporulation protein E 1.24582834604e-06 1.24398430982e-05 4519161121.47 +UniRef50_R7EZW8 6.66559876749e-07 5.44434779106e-07 -49303400.562 +UniRef50_U8X5K1 7.54222420008e-08 3.10507668615e-05 12505126733.1 +UniRef50_D7A419 ABC transporter related protein 2.69122528164e-05 1.39676538112e-05 -5225893466.49 +UniRef50_Q2NRT0 5.9968629877e-06 1.38537938329e-06 -1861712520.37 +UniRef50_Q0AW39 Imidazoleglycerol phosphate dehydratase 1.0143461962e-07 1.53887614515e-07 21175917.7097 +UniRef50_J4J838 Proline glycine betaine ABC transporter periplasmic protein 5.39796058107e-07 7.94777510129e-08 -185836149.315 +UniRef50_Q8CUB7 0.00037625246692 0.000112208022931 -1.06597982228e+11 +UniRef50_Q9RV62 NADH pyrophosphatase 1.41028389365e-06 0.000311817471377 1.25315190711e+11 +UniRef50_Q52664 Glutamate glutamine aspartate asparagine transport system permease protein BztB 9.01788248812e-05 2.99393813178e-05 -24319402587.6 +UniRef50_A3MLT7 Histidine ammonia lyase 8.13483937471e-06 7.8150551855e-05 28266202317.7 +UniRef50_M4WY62 Non specific serine threonine protein kinase 5.83741219845e-07 7.64079444229e-07 72804754.1827 +UniRef50_UPI0003123F96 hypothetical protein 2.077372337e-07 2.09310507443e-07 635149.916289 +UniRef50_UPI00036BA2FA hypothetical protein 1.87425802593e-07 5.87294078934e-06 2295312169.27 +UniRef50_UPI0004279204 ABC transporter substrate binding protein 9.93880033057e-08 4.8305296426e-07 154890252.836 +UniRef50_I0C5Y5 0.000127271333544 0.000170454250119 17433473335.3 +UniRef50_V9VWJ8 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 7.30273036311e-07 4.63605909159e-07 -107656791.605 +UniRef50_W4TIC1 Lysophospholipase L2 1.37000918514e-07 7.36587209376e-07 242060343.372 +UniRef50_UPI000475C78C hypothetical protein 4.05272102845e-08 4.51399431638e-08 1862216.86797 +UniRef50_UPI000478596D hypothetical protein, partial 5.46589816024e-07 1.79831154806e-06 505335423.578 +UniRef50_UPI0004776897 50S ribosomal protein L21 1.75735937399e-07 4.27376557539e-06 1654424853.34 +UniRef50_Q57725 Probable acetolactate synthase large subunit 3.17878869786e-05 7.55076734394e-06 -9784822619.43 +UniRef50_I0DU68 Pirin like protein 6.40012533574e-08 9.73732670135e-08 13472691.4336 +UniRef50_G4RE73 Glutaredoxin 3.21116601003e-05 1.95250714179e-05 -5081360305.9 +UniRef50_B5EZL8 UPF0208 membrane protein YfbV 3.19075492974e-05 4.73770115279e-06 -10968801107.5 +UniRef50_UPI0003792331 hypothetical protein 1.22042895546e-06 2.60174489607e-07 -387666511.512 +UniRef50_P63482 Alanine racemase 2 0.000194382773403 4.93593055764e-05 -58547753599.8 +UniRef50_U9FP56 3.45281634012e-06 2.71763839138e-06 -296800359.554 +UniRef50_B4UAT5 MJ0042 family finger like protein 1.93000214367e-07 1.40330047224e-06 488613066.156 +UniRef50_A7FBU7 6.12830389931e-06 9.1483827415e-05 34459072273.3 +UniRef50_Q8FDG8 L tartrate dehydratase subunit alpha 4.74467535037e-05 1.47448845305e-06 -18559567544.1 +UniRef50_G5Q5Z8 Outer membrane protein NlpB 1.6344332665e-05 6.49697949665e-06 -3975497314.68 +UniRef50_A5IPG6 0.000137905195811 2.46252002941e-05 -45732524292.1 +UniRef50_UPI0002ADAB72 3.57916926859e-06 1.07403963639e-06 -1011351573.92 +UniRef50_A5IPG3 0.000140582363333 3.00831957759e-06 -55540329687.3 +UniRef50_D0LXH2 1.12636842298e-07 7.26125288652e-07 247672814.143 +UniRef50_A6M239 PTS system fructose subfamily IIA component 2.68354968373e-06 4.20878914765e-06 615757888.377 +UniRef50_Q6MBM7 Succinyl CoA ligase [ADP forming] subunit beta 8.02649982762e-08 1.88494142906e-07 43693433.8081 +UniRef50_UPI000463ADD2 hypothetical protein 3.13657862573e-08 3.92441346315e-07 145770634.491 +UniRef50_P24735 Beta lactamase 1.59601701204e-05 2.24575441206e-06 -5536677916.25 +UniRef50_UPI00036198F2 hypothetical protein 2.11409597385e-08 1.74394885941e-07 61870490.6453 +UniRef50_UPI0003B66134 deoxyguanosinetriphosphate triphosphohydrolase 7.86416237334e-07 2.10119971713e-07 -232657874.382 +UniRef50_Q4KJK0 Arginine tRNA ligase 6.45536126859e-05 1.96814494161e-05 -18115442955.4 +UniRef50_A5UMU3 Glycosyltransferase, GT2 family 4.66841516088e-05 5.31396657464e-06 -16701651367.6 +UniRef50_Q8XE72 2 dehydropantoate 2 reductase 5.02073030654e-05 1.09589483159e-05 -15845042443.8 +UniRef50_B5YKP8 Phenylacrylic acid decarboxylase 8.46406121886e-06 3.24523851863e-06 -2106902766.24 +UniRef50_Q0SR44 Cell division topological specificity factor 4.77830365635e-06 1.1734438617e-05 2808277044.99 +UniRef50_S4X915 Beta hemolysin 3.43307767155e-05 8.9489910665e-06 -10246938336.0 +UniRef50_W6M0A7 1.92414723598e-06 3.25572043706e-05 12366941075.1 +UniRef50_G0DV19 Efflux ABC transporter, permease protein 2.4066891731e-06 4.57644486667e-05 17504059567.1 +UniRef50_UPI000362EEF4 hypothetical protein 2.58021666945e-08 5.27664686068e-08 10885819.5712 +UniRef50_Q0A4X2 DNA polymerase IV 3.56584603617e-08 8.80782033673e-08 21162493.5139 +UniRef50_UPI0003736343 hypothetical protein, partial 2.87496441029e-07 9.98253651381e-07 286941407.791 +UniRef50_U5MKI7 Subtilisin like serine protease 3.17632099203e-06 1.52716326649e-05 4883025748.51 +UniRef50_Q2GEH7 Adenylosuccinate synthetase 3.83765424865e-08 1.31342562849e-07 37531523.2417 +UniRef50_I1Q3T9 7.45960385152e-07 1.27305251015e-06 212793559.009 +UniRef50_R5PZK9 Aldo keto reductase 2.99371166668e-06 1.5931120747e-05 5222990805.58 +UniRef50_Q4UUD9 Flagellar biosynthesis switch protein 8.52955945528e-06 2.12968777781e-06 -2583706731.45 +UniRef50_Q9I3P5 1.45560149942e-06 1.83807077915e-06 154407541.653 +UniRef50_A4WCP8 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 2.44889870577e-05 2.62893209369e-06 -8825172442.01 +UniRef50_A9LZI0 ABC transporter ATP binding protein 1.83542620181e-06 2.40146314219e-05 8954017316.81 +UniRef50_F4FKW9 5.389676597e-05 2.42726059064e-05 -11959636947.0 +UniRef50_B5EZK0 NADH quinone oxidoreductase subunit K 6.16442237463e-07 8.22490148817e-07 83184070.3058 +UniRef50_U5MVT4 Nodulation protein NolG 6.24701597215e-06 2.48638227097e-05 7515833333.88 +UniRef50_A5G6M1 Tryptophan synthase alpha chain 1.46743032333e-07 8.24713619239e-08 -25947262.0462 +UniRef50_UPI000372C358 hypothetical protein 4.38937431636e-08 1.17332775682e-07 29648238.6259 +UniRef50_K7RNR2 Succinate dehydrogenase subunit C 1.17113257725e-05 7.61459230597e-05 26013037626.3 +UniRef50_M1CWG1 2.34057918923e-07 2.09732892648e-06 752225370.658 +UniRef50_P28304 Quinone oxidoreductase 1 3.88343496321e-05 7.94674597738e-06 -12469704628.9 +UniRef50_T0V3S5 8.55779831705e-07 1.5291291665e-07 -283755998.755 +UniRef50_UPI0003291247 PREDICTED 1.20396535447e-07 8.80102260044e-06 3504475265.7 +UniRef50_Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 2.74739080526e-08 4.4004260012e-08 6673505.93624 +UniRef50_Q46832 Putative type II secretion system M type protein YghD 4.74062141734e-05 1.91710303513e-05 -11398890193.7 +UniRef50_UPI000378EA8F hypothetical protein 1.77333219193e-08 2.82764477725e-08 4256389.28564 +UniRef50_I1ZM50 Cytosine specific methyltransferase 8.13507857067e-06 4.86354440158e-05 16350494525.6 +UniRef50_D8JGN7 Surface antigen family protein 1.29127810593e-06 6.18591702472e-05 24452001309.1 +UniRef50_UPI0002BA2677 hypothetical protein, partial 1.9838755858e-07 6.55513760179e-06 2566297998.54 +UniRef50_A6M2Z1 Membrane protein containing C terminal PDZ domain 1.02392221207e-06 9.61970691309e-06 3470223765.94 +UniRef50_A0JW97 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 1.88307819643e-06 3.48748837992e-06 647720079.402 +UniRef50_UPI000255C63D FhuG, partial 1.2800735402e-06 3.39194000109e-07 -379844616.225 +UniRef50_UPI0002653F14 PREDICTED 4.25237102377e-07 4.65983926492e-09 -169792202.182 +UniRef50_UPI0003B5B2C4 NADH dehydrogenase subunit L, partial 9.34724069736e-08 7.78127528894e-08 -6321994.51936 +UniRef50_X7EC41 1.18063471479e-06 3.79988849641e-06 1057424893.5 +UniRef50_U5W2Y7 1.14247247241e-07 7.7444781128e-08 -14857607.1869 +UniRef50_B9KUD4 1.08890189092e-05 1.5542984484e-05 1878863013.13 +UniRef50_F0RMA7 Polyphosphate 4.48502806262e-06 0.000500165458335 2.00112272384e+11 +UniRef50_R6CQ31 1.84534311822e-07 1.29756681949e-06 449344881.791 +UniRef50_U6LIN1 TPR domain containing protein, putative 2.37272158289e-08 3.20404851566e-08 3356168.84288 +UniRef50_I0THL6 Branched chain amino acid transport protein AzlD 2.50918091595e-06 8.21251801589e-07 -681437696.687 +UniRef50_Q2FX83 2.95250778181e-05 2.58463341208e-06 -10876188003.1 +UniRef50_Q2FX82 6.00738176552e-05 2.82186342579e-06 -23113316482.9 +UniRef50_Q87VA4 Glutathione synthetase 2.50477832542e-05 1.47756337913e-07 -10052446423.8 +UniRef50_Q92W60 Ribose import ATP binding protein RbsA 2 2.85111657138e-07 1.43370311099e-07 -57222720.7579 +UniRef50_G7LXK1 3.82028850527e-06 1.01946315988e-05 2573400528.84 +UniRef50_Q8ZP50 Outer membrane protein W 2.14371774459e-05 2.65284403128e-05 2055405296.19 +UniRef50_A9M0L0 ATP dependent RNA helicase HrpA 8.21669762549e-07 2.91963578525e-05 11455209778.5 +UniRef50_W4TIL7 4.31371003163e-06 3.35523347021e-05 11803991577.8 +UniRef50_E1HJW0 Pertactin 2.28474159094e-05 2.76362630948e-06 -8108072317.29 +UniRef50_U5US72 1.60775083463e-05 0.000113542326449 39347743095.9 +UniRef50_UPI00036A56E1 hypothetical protein 2.7243295977e-07 9.33061411336e-08 -72315694.8166 +UniRef50_S9SLK2 9.9059743932e-07 2.9423694168e-07 -281129278.202 +UniRef50_UPI0004203E19 hypothetical protein 8.30973138143e-08 1.08022290303e-07 10062518.8723 +UniRef50_UPI0003C154AA PREDICTED 1.8195759318e-08 2.75172738936e-07 103744760.134 +UniRef50_G7U653 1.46123608583e-06 1.68723475994e-05 6221654833.65 +UniRef50_C6W3G1 Aminotransferase class I and II 5.8010425734e-06 2.77925056774e-05 8878223520.68 +UniRef50_UPI00042431D1 hypothetical protein 2.08164410094e-07 7.53906005341e-08 -53602416.2372 +UniRef50_T2HSJ7 F pilus assembly protein 8.75712949714e-07 2.40291068814e-07 -256527610.823 +UniRef50_I0C7C9 dTDP glucose 4,6 dehydratase 0.000106241732942 1.10387198207e-05 -38434624669.4 +UniRef50_R7PW61 Type IV leader peptidase 5.18067696928e-06 1.07603825425e-05 2252595610.6 +UniRef50_E8SGS1 0.000118104355609 1.84705884496e-05 -40223374446.1 +UniRef50_Q8DUK2 0.000108637471843 3.00698495088e-05 -31718713269.5 +UniRef50_A8GY42 ATP synthase subunit alpha 4.03695507321e-08 1.0537664197e-07 26244160.4595 +UniRef50_Q6FUF3 GMP synthase [glutamine hydrolyzing] 3.01478731712e-07 3.14852876128e-07 5399306.21995 +UniRef50_G4Q6V2 Carbamoyl phosphate synthase large chain 5.3950695308e-05 9.09900178838e-05 14953229047.5 +UniRef50_K4PQ99 Clostridial hydrophobic W 3.70043538567e-06 1.80502254133e-06 -765201424.591 +UniRef50_UPI00035C4E3D hypothetical protein 8.62094795342e-08 1.66166518087e-06 636030799.646 +UniRef50_P13570 Bacterioferritin 1.21118115786e-06 4.95380389212e-07 -288977554.166 +UniRef50_G7M0S1 Lysine tRNA ligase 4.98355565453e-06 5.34690105858e-06 146686998.364 +UniRef50_R9YJ81 Thioester reductase domain protein 0.000139008014083 3.16885958878e-05 -43326166082.7 +UniRef50_UPI0003B42AEE C4 dicarboxylate ABC transporter 1.21380618432e-07 5.35186028148e-07 167058321.866 +UniRef50_B3QR98 DNA directed RNA polymerase subunit alpha 1.70546956108e-07 5.2309565297e-07 142328235.182 +UniRef50_C4LJ74 Polyribonucleotide nucleotidyltransferase 2.43187919393e-08 7.08024576682e-08 18766026.2735 +UniRef50_UPI0003B4EE97 helicase SNF2 1.57710266133e-08 1.45822703997e-06 582337193.519 +UniRef50_UPI00036D95BA hypothetical protein 1.24205654077e-07 1.57224219241e-07 13329999.9401 +UniRef50_B4RQR5 MafB5 7.73008850942e-07 0.000112981725091 45300035701.9 +UniRef50_S2WYG7 4.4949093766e-08 1.39708656945e-07 38255598.486 +UniRef50_Q2NFU2 Glutamate tRNA ligase 4.17260545942e-05 2.5223600293e-06 -15827012579.3 +UniRef50_C5N0Q7 Transition metal uptake transporter, Ni2+ Co2+ transporter family 0.000119055975031 1.89995209721e-05 -40394018334.4 +UniRef50_P0A084 Peptide methionine sulfoxide reductase MsrA 1 3.59161530083e-05 1.57319561264e-05 -8148607969.17 +UniRef50_J9P4P6 1.87498079265e-06 3.66771152395e-06 723747395.506 +UniRef50_F0Y4U2 2.48090074845e-06 4.06830410055e-06 640854212.872 +UniRef50_UPI0002652BE7 PREDICTED 2.43837977446e-07 1.37315801897e-07 -43004309.4432 +UniRef50_A6LTC6 Methyl accepting chemotaxis sensory transducer 3.76434544841e-06 1.69311165696e-05 5315587076.08 +UniRef50_P0AGG1 Thiamine monophosphate kinase 2.13029514292e-05 1.28822028526e-05 -3399559534.58 +UniRef50_O31875 Ribonucleoside diphosphate reductase NrdEB subunit alpha 1.32583882405e-07 6.18116651266e-05 24900601985.7 +UniRef50_W4FVH2 5.9417141252e-07 4.83822280636e-07 -44549298.6777 +UniRef50_A5UKG7 SAM dependent methyltransferase, UbiE CobQ family 2.33279535001e-05 4.06399135599e-06 -7777097912.97 +UniRef50_UPI0002629825 monosaccharide ABC transporter ATP binding protein 1.98586295553e-07 5.45882800605e-07 140207860.897 +UniRef50_J3LY38 3.36713743001e-05 2.20120321928e-05 -4707019484.93 +UniRef50_O85673 Anthranilate 1,2 dioxygenase large subunit 5.51156015442e-06 7.52400659321e-05 28150253447.4 +UniRef50_Q1GKJ0 2.9560558398e-07 2.35686286387e-07 -24190155.7308 +UniRef50_O24457 Pyruvate dehydrogenase E1 component subunit alpha 3, chloroplastic 4.11267291154e-08 1.48091951232e-07 43183172.7795 +UniRef50_UPI0002FF342B hypothetical protein 1.32109089438e-07 4.07281135847e-08 -36891621.3227 +UniRef50_I0JK96 Hit like protein involved in cell cycle regulation 7.88202306286e-05 4.92513605913e-05 -11937315684.9 +UniRef50_A4G1V2 Valine tRNA ligase 3.32539668324e-08 1.84665725121e-08 -5969852.54884 +UniRef50_W7VMY1 3.61027535641e-07 2.35043235336e-05 9343232594.57 +UniRef50_UPI000262925E hypothetical protein 6.33125089561e-08 2.10032995687e-07 59232860.9561 +UniRef50_Q53143 Diheme cytochrome c type 4.14200089627e-05 3.62351785524e-06 -15258907275.2 +UniRef50_UPI0003760E73 hypothetical protein 2.06083504335e-06 1.87444355275e-07 -756310809.863 +UniRef50_P36547 HTH type transcriptional regulator eutR 4.67455047681e-05 1.00464669488e-05 -14815851915.5 +UniRef50_UPI0003C7FEAE cation 1.94262517925e-06 8.75624012626e-06 2750739966.57 +UniRef50_M7DZA1 Transcriptional regulator 7.06374476827e-05 1.94175979174e-05 -20678081888.5 +UniRef50_UPI00046569ED MULTISPECIES 8.68274969527e-08 1.04171394334e-06 385499376.181 +UniRef50_S9S8N1 2.55010418744e-07 1.64202098079e-07 -36660433.3959 +UniRef50_A3SJL5 3.73345220017e-07 4.82590790839e-07 44103777.5347 +UniRef50_P0AAP2 Protein AdrA 1.74797592104e-05 1.56902743598e-05 -722436993.636 +UniRef50_E8SHK7 6.0322112258e-05 2.29383215423e-05 -15092295062.6 +UniRef50_Q4K5Z7 Hemin import ATP binding protein HmuV 1.15190688688e-07 2.28224289719e-05 9167190744.08 +UniRef50_A6DX59 FlgJ 7.35022472387e-07 3.94961655918e-07 -137286724.624 +UniRef50_E6DXQ9 2.18621229065e-06 2.98319847351e-05 11160937587.6 +UniRef50_A3NGC1 3.58875481148e-07 1.5255365112e-06 470995374.372 +UniRef50_C3P501 ATP phosphoribosyltransferase 3.01331552906e-05 2.02051483892e-05 -4008058216.44 +UniRef50_P58939 Carbamoyl phosphate synthase large chain 1.22039021227e-07 1.0202939716e-07 -8078130.78155 +UniRef50_O52058 Biotin carboxylase 2.92925225503e-06 2.03149462811e-05 7018818024.79 +UniRef50_D3QZW7 9.80680125511e-05 3.45261939479e-05 -25652611915.9 +UniRef50_B9JEG2 Deoxyguanosinetriphosphate triphosphohydrolase like protein 7.71781921498e-05 1.74667507939e-05 -24106241617.2 +UniRef50_A0A031JSK7 FAD dependent oxidoreductase 1.89086488443e-07 3.71663561538e-08 -61332021.6747 +UniRef50_UPI00025555DE ribose transport ATP binding protein RbsA 3.39473502347e-08 4.75876652797e-08 5506762.56915 +UniRef50_UPI0003C17A60 PREDICTED 6.85570190773e-08 3.39654147539e-07 109445237.496 +UniRef50_Q6A948 Pyridoxal biosynthesis lyase PdxS 1.63763416959e-06 3.08210759861e-05 11781713582.4 +UniRef50_C6D7D6 3.21318552284e-08 5.81024279496e-07 221594607.344 +UniRef50_Q9VMC6 CG9547 5.68403392361e-05 6.24238946759e-05 2254149848.98 +UniRef50_Q04D50 Dipeptidase A, Cysteine peptidase, MEROPS family C69 6.25520797827e-05 1.31196366206e-05 -19956483908.8 +UniRef50_X1BPY3 Marine sediment metagenome DNA, contig 1.56859376853e-07 1.13933600198e-07 -17329662.7941 +UniRef50_UPI0003DEC72F PREDICTED 1.03534241082e-07 9.52733061877e-08 -3335040.7899 +UniRef50_A3M193 Transposition Helper 1.60404811127e-06 0.000102587095515 40768095438.3 +UniRef50_UPI000471875A TetR family transcriptional regulator 9.26285140189e-08 1.75328009356e-07 33386801.1045 +UniRef50_UPI00037E1773 DeoR family transcripitonal regulator 3.59992831786e-07 7.5506123645e-08 -114850775.121 +UniRef50_UPI00036F7656 MULTISPECIES 6.38815966369e-07 1.62419008121e-07 -192327298.093 +UniRef50_A9B436 30S ribosomal protein S4 0.000168491938428 8.25516082248e-05 -34695165909.5 +UniRef50_J7TT99 Transport protein SgaT, putative 1.99049651704e-06 7.38472278661e-06 2177715339.63 +UniRef50_A5UNM1 Glycosyltransferase CDP glycerol 3.29511126452e-05 2.56960016771e-06 -12265389410.2 +UniRef50_C4S247 Hydrogenase nickel incorporation protein 6.58094955333e-06 1.23668170407e-06 -2157546512.29 +UniRef50_W7CHL0 4.11514823816e-08 1.20703088507e-07 32115959.6008 +UniRef50_F2U144 7.35776316135e-07 2.53679291629e-07 -194628484.789 +UniRef50_J0ZPP4 1.04784471121e-06 1.00107357693e-05 3618429107.19 +UniRef50_W4U3A3 Valyl tRNA synthetase 1.97807464495e-06 4.80105231662e-05 18583864349.7 +UniRef50_P05096 DNA primase 4.15172593969e-08 3.45062285609e-08 -2830439.18352 +UniRef50_P44808 1.0815860551e-05 6.99858047475e-06 -1541082810.08 +UniRef50_Q9ZSS6 Threonine dehydratase biosynthetic, chloroplastic 2.12151621216e-08 2.07767117667e-07 75313313.7034 +UniRef50_Q8RLE0 Thymidine kinase 1.20864204236e-07 2.690913555e-07 59841119.917 +UniRef50_UPI000377E217 hypothetical protein 9.70316545848e-07 1.11759193717e-05 4120127097.65 +UniRef50_UPI000467D001 hypothetical protein 7.54851052634e-07 5.24087867663e-07 -93161929.5555 +UniRef50_X7U6C1 PPE family protein 1.74808702695e-06 4.20955336095e-07 -535779349.333 +UniRef50_A3PGB8 Histidine kinase 7.65268017034e-06 9.94890640735e-07 -2687831333.37 +UniRef50_G8R7R2 Methyltransferase family protein 5.65439845776e-06 1.79088111745e-05 4947256792.29 +UniRef50_O86564 L serine dehydratase 9.57011210521e-06 2.26770720448e-06 -2948070469.01 +UniRef50_Q040L6 Pyrrolidone carboxylate peptidase 1.79060036398e-07 4.7394824134e-05 19061583368.8 +UniRef50_UPI0003F05B0E PREDICTED 1.19402384799e-07 1.85724110366e-07 26774894.4705 +UniRef50_V4HTY9 2.83061874041e-06 3.86506188734e-06 417617392.461 +UniRef50_A4XXI2 AzlC family protein 3.45280353157e-07 1.25711181296e-07 -88642769.097 +UniRef50_F8JSP7 9.36826702177e-09 4.45451068846e-06 1794558543.57 +UniRef50_E8UAV0 Ferripyochelin binding protein 6.39937393516e-07 2.70821797696e-07 -149016495.59 +UniRef50_UPI00047643BC hypothetical protein 1.34814383621e-07 2.57719857434e-07 49618447.9981 +UniRef50_A6LZP3 LuxR family transcriptional regulator 2.48772061791e-06 5.56971100481e-06 1244237339.47 +UniRef50_UPI00045EBBEF hypothetical protein 1.04358822424e-06 8.85737719854e-07 -63726185.6641 +UniRef50_UPI0003799247 hypothetical protein 2.66700391635e-07 3.74003767051e-07 43319689.4159 +UniRef50_F5TD70 Type I site specific deoxyribonuclease, HsdR family 5.59880477804e-05 1.46444714773e-05 -16690909096.3 +UniRef50_UPI00036F6A1E hypothetical protein 1.38135283087e-07 6.97845353602e-08 -27594035.6153 +UniRef50_H3W5C9 3.23244902479e-06 1.6406483622e-05 5318519430.47 +UniRef50_UPI000479F12E hypothetical protein 6.12922761945e-08 1.06620708538e-07 18299644.3795 +UniRef50_P0AEV5 Formate hydrogenlyase regulatory protein HycA 3.12321793233e-05 1.62559654236e-05 -6046081330.12 +UniRef50_UPI0004766E4B hemolysin secretion protein D 1.63186940329e-07 2.74038489784e-07 44752130.8165 +UniRef50_UPI000441FC52 PREDICTED 8.09156270868e-08 1.13267357206e-07 13060790.4495 +UniRef50_A5VUC7 Tetracycline resistance protein 8.65696593872e-07 7.56746574395e-07 -43984459.8299 +UniRef50_UPI0002DF600A hypothetical protein 2.67984579038e-07 3.77087794666e-08 -92965166.0886 +UniRef50_E0RHV7 Predicted transcriptional regulator 3.23112341457e-06 8.83943065643e-06 2264142455.21 +UniRef50_Q9RY38 Oxidoreductase, short chain dehydrogenase reductase family 1.18830846434e-06 8.54821222625e-05 34030447031.7 +UniRef50_E1VLU5 Short chain dehydrogenase reductase SDR 3.12396270696e-06 6.82340946668e-05 26285759263.3 +UniRef50_W7X1H4 1.79053598994e-05 2.3000036649e-06 -6300073811.12 +UniRef50_UPI000289460A xanthine permease 7.57070346026e-07 2.16710396056e-06 569247873.244 +UniRef50_H8H074 Phosphoglucomutase phosphomannomutase alpha beta alpha domain I 3.20127685782e-06 0.000611466447986 2.45564113837e+11 +UniRef50_R9SM76 CDP glycerol 3.20596217537e-05 6.5750923437e-06 -10288417253.2 +UniRef50_Q9YAS0 UPF0219 protein APE_1873.1 3.09430619939e-05 1.49517423546e-05 -6455891973.94 +UniRef50_P0A9E1 Arabinose operon regulatory protein 5.03968012991e-05 6.61023478047e-06 -17677174225.2 +UniRef50_Q3JGP6 5.6645440651e-07 1.70727389123e-08 -221792120.88 +UniRef50_Q99ZP1 Serine hydroxymethyltransferase 1.27483777174e-06 8.51200866412e-05 33849355865.5 +UniRef50_Q8XMJ3 3 dehydroquinate synthase 1.47840465605e-06 1.95151448496e-05 7281653351.81 +UniRef50_UPI000362B451 PTS fructose transporter subunit IIA 5.68516927744e-08 4.65761661879e-06 1857385258.37 +UniRef50_I7DVA3 0.000112495100977 3.75996269249e-05 -30236221945.7 +UniRef50_UPI000473C32B branched chain amino acid aminotransferase, partial 5.31434996234e-06 5.37079496503e-07 -1928642710.76 +UniRef50_C4RR63 Secreted protein 1.35657630168e-08 1.62933354593e-06 652305281.661 +UniRef50_Q4UTD4 Serine tRNA ligase 2.78132886957e-07 1.19513497594e-07 -64036593.9646 +UniRef50_Q97DA2 3 oxoacyl [acyl carrier protein] synthase 3 3.67413304853e-06 1.32802062717e-06 -947154374.54 +UniRef50_Q5HQF6 Transposase, putative, truncation 6.08848369114e-06 4.87380049521e-07 -2261234273.39 +UniRef50_P11901 Transposase for insertion sequence element IS421 0.000121123026975 3.51301569196e-05 -34716376892.5 +UniRef50_UPI000467ECCA hypothetical protein 1.10996397435e-07 2.46013044436e-07 54507877.2349 +UniRef50_Q04JH1 Adenine phosphoribosyltransferase 8.64296606538e-06 4.56015581562e-05 14920637160.0 +UniRef50_A6M3C4 ATPase like protein 4.77774808878e-06 4.22284350448e-06 -224021790.127 +UniRef50_Q4PJD9 Predicted acetyl CoA carboxylase 2.52208017196e-07 4.17310028785e-07 66653708.108 +UniRef50_W5XBC3 50S ribosomal protein L24 7.23894009866e-07 9.32581063359e-08 -254595453.028 +UniRef50_E8PH61 AdeT, RND type efflux pump 2.55663786733e-06 0.000150266631524 59632337044.8 +UniRef50_B9M8U3 8 amino 7 oxononanoate synthase 2.50071097098e-07 5.85229974351e-07 135307751.609 +UniRef50_Q1GGF9 Endoribonuclease L PSP 1.14021392599e-06 1.91445928643e-07 -383029283.222 +UniRef50_X1CCA7 Marine sediment metagenome DNA, contig 1.38381650314e-06 4.62192843001e-07 -372070781.192 +UniRef50_A6LSR6 Ribosomal protein S12 methylthiotransferase RimO 7.50680178348e-06 2.14731201104e-05 5638374094.57 +UniRef50_UPI00030C0032 hypothetical protein 7.73314708927e-07 2.86575260671e-07 -196502688.226 +UniRef50_UPI0003B76375 acetyl CoA carboxylase biotin carboxylase subunit 2.6273768849e-08 1.93268379593e-07 67417773.6117 +UniRef50_S4XY12 3.35619750061e-06 1.65135156678e-06 -688267224.299 +UniRef50_A6LY74 Resolvase helix turn helix domain protein 2.83114491639e-06 3.58695557167e-05 13338011867.0 +UniRef50_UPI00035E0C27 hypothetical protein 3.96740022967e-08 6.17925468122e-08 8929527.84597 +UniRef50_A7FB80 1.15556935367e-06 6.04809169925e-05 23950370845.7 +UniRef50_A6LR67 Accessory gene regulator B 1.10247393114e-05 6.52642456561e-06 -1816024863.4 +UniRef50_Q8CP92 Membrane spanning protein 7.44565362627e-05 4.83684485023e-05 -10532081165.7 +UniRef50_Q47482 ORF114 4.93688641771e-06 5.7158071973e-06 314459877.153 +UniRef50_C7ZV35 II DNA RNA helicase ComFC 0.000210091560338 7.54229594776e-05 -54367366736.7 +UniRef50_M3ID57 E1 E2 ATPase 2.49990721098e-06 7.89265136377e-06 2177116990.89 +UniRef50_A0A023FF30 3.62139561122e-07 1.42827675171e-05 5619928331.15 +UniRef50_H0DLY7 Surface protein G 1.57394557062e-05 3.19912896401e-06 -5062683792.94 +UniRef50_UPI00046D439D hypothetical protein 2.38020122541e-07 9.0603070688e-07 269684070.309 +UniRef50_UPI0003B4EBBD nitrogen regulatory protein P II 1 1.59542406813e-05 1.35634088186e-05 -965208161.778 +UniRef50_M1MAL1 Glycosyltransferase 2.50972966228e-06 1.60676762963e-05 5473509430.86 +UniRef50_P55294 dTDP glucose 4,6 dehydratase 0.00030414237891 0.000248018092279 -22658063235.4 +UniRef50_G1Y1D6 9.64896299881e-07 2.63589067334e-08 -378899062.763 +UniRef50_A1U6L0 Acetylglutamate kinase 5.78979809045e-07 2.84418948458e-07 -118917834.087 +UniRef50_D2J655 Replication initiation protein 0.000122474735701 6.04259091261e-05 -25049872713.0 +UniRef50_A8LJQ4 Pyrophosphate phospho hydrolase 0.000163185787048 1.75023911835e-05 -58814174646.6 +UniRef50_R6VGJ2 Transcriptional regulator 3.43311342375e-08 4.50064458968e-08 4309754.31766 +UniRef50_P34750 Fimbrial assembly protein PilQ 7.62210711383e-06 6.36221986797e-06 -508631941.709 +UniRef50_Q4L4Y3 ATP dependent helicase nuclease subunit A 0.00010431432022 2.38436368062e-05 -32487002380.5 +UniRef50_UPI00037D8E01 hypothetical protein 2.33980037298e-07 5.80809211738e-08 -71012631.7041 +UniRef50_Q46PF7 Flagellar P ring protein 1.53967282916e-05 2.47472099328e-06 -5216772917.18 +UniRef50_UPI0003B3AA9D alpha amylase 1.93087461307e-07 2.18815178027e-07 10386594.9545 +UniRef50_Q88BP2 3.39033404267e-07 8.75099966028e-08 -101543086.213 +UniRef50_F2EDD7 Predicted protein 2.80319485155e-07 3.2441954798e-07 17803736.5311 +UniRef50_Q89DX7 Arginine deiminase 5.10375683227e-06 6.99897750424e-05 26195281792.4 +UniRef50_Q9PBX0 Ribose 5 phosphate isomerase A 7.15213027021e-06 3.81047271182e-05 12495943178.6 +UniRef50_P0A925 Phosphatidylglycerophosphatase B 1.37073378749e-05 3.13813200463e-05 7135203486.74 +UniRef50_UPI00037F38F9 hypothetical protein 1.2004610822e-08 3.86118987638e-08 10741688.6502 +UniRef50_D8JJE0 3.34568976163e-06 0.000108057389389 42273398096.5 +UniRef50_UPI00046934E1 hypothetical protein 2.66495917335e-06 2.3411680485e-07 -981360893.954 +UniRef50_Q8ZPK6 ATP dependent dethiobiotin synthetase BioD 2 2.09755211865e-05 1.98044188274e-05 -472788393.411 +UniRef50_B9KRH6 CBR SDC 3 protein 2.10983179633e-05 1.8639736818e-05 -992559378.541 +UniRef50_UPI0002EB1E79 hypothetical protein 4.64891720504e-08 2.72914598628e-07 91410723.262 +UniRef50_Q0C397 Intracellular protease, PfpI family 6.62979260241e-05 1.36300017782e-05 -21262687326.2 +UniRef50_K2EJR9 1.10642568531e-07 3.11507874188e-07 81091788.7882 +UniRef50_O48917 UDP sulfoquinovose synthase, chloroplastic 3.74055007741e-06 3.74532390097e-07 -1358902646.05 +UniRef50_A5UJN9 1.33111087142e-05 8.59534186694e-06 -1903812945.21 +UniRef50_A9U6J3 Predicted protein 2.79313676191e-08 6.25435518412e-08 13973363.5097 +UniRef50_UPI00035E9CFE 50S ribosomal protein L24 1.10607488233e-06 2.71515398775e-06 649604980.479 +UniRef50_UPI000472DFA0 hypothetical protein, partial 2.74092417244e-07 1.75612436021e-07 -39757576.905 +UniRef50_UPI00040078F0 hypothetical protein 1.35155001406e-06 9.24941621294e-07 -172227043.233 +UniRef50_W5V1P4 Type II secretion system protein E 8.6047314663e-06 3.02051193502e-06 -2254417950.86 +UniRef50_P65904 Phosphoribosylformylglycinamidine synthase 1 0.000241475662707 2.62203693888e-05 -86901203392.0 +UniRef50_Q7MAB8 GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE 2.52851661188e-06 3.7854676914e-05 14261604414.7 +UniRef50_K1Y7A4 3.3965001404e-08 4.97122702253e-08 6357365.66388 +UniRef50_T1Y669 Multidrug resistance protein B 0.000136958739464 1.74634284999e-05 -48241723408.5 +UniRef50_Q8RHI7 DNA directed RNA polymerase subunit beta 2.4971001548e-08 2.13760256041e-08 -1451335.90387 +UniRef50_C3AKR0 Cobalamin synthesis protein 4.05000960698e-08 6.67603705106e-08 10601595.0416 +UniRef50_Q9VLJ8 Adenylyltransferase and sulfurtransferase MOCS3 9.47662301215e-08 1.59556152992e-07 26156486.9246 +UniRef50_Q9RSN4 9.05242179512e-07 7.57152767279e-05 30201728969.5 +UniRef50_A3CP54 ABC transporter membrane spanning permease, arginine histidine transport, putative 3.53588336533e-05 3.86679912588e-05 1335947533.27 +UniRef50_UPI000345D7AA diaminopimelate decarboxylase 4.34609108208e-08 2.39633102191e-07 79197120.9596 +UniRef50_I6TNC0 Serine acetyltransferase 8.51035619071e-05 6.3426358078e-05 -8751353195.01 +UniRef50_G7U472 Membrane spanning protein 1.10161280792e-06 6.01291757033e-05 23830151490.5 +UniRef50_UPI000374B781 hypothetical protein, partial 2.14689757061e-06 2.24315485918e-07 -776169980.325 +UniRef50_M9VCZ7 1.71256856409e-07 9.66367756369e-07 320996027.422 +UniRef50_Q2GW43 Predicted protein 4.3477166281e-07 1.77385147269e-06 540602951.606 +UniRef50_UPI00029AD767 Gnt II system L idonate transporter IdnT 1.72851080794e-07 7.85614078471e-08 -38065898.0331 +UniRef50_A5UDU8 5.24025360031e-06 1.35881919561e-06 -1566982699.73 +UniRef50_UPI0003718E98 30S ribosomal protein S1 2.18921912679e-07 7.2780034869e-07 205440469.258 +UniRef50_R9SII2 Hmd co occurring protein HcgC 1.72424918664e-05 4.60542401304e-06 -5101739366.68 +UniRef50_K4ADF5 1.25559604402e-07 4.42420454189e-06 1735415711.57 +UniRef50_UPI0002195D49 NADPH 9.73611157681e-08 6.47032043887e-07 221908898.902 +UniRef50_Q0TM34 Pyridine nucleotide disulphide oxidoreductase 3.3207216226e-06 1.70295475624e-05 5534421258.11 +UniRef50_A5W887 2.41705488396e-06 8.98421567906e-06 2651243401.11 +UniRef50_A1AT17 Cobyrinic acid A,C diamide synthase 1.51923968868e-07 2.19469456068e-06 824691555.528 +UniRef50_W9AMV1 3 oxoadipate enol lactonase 2.28444236225e-08 1.4579366498e-07 49636117.4931 +UniRef50_P31469 UPF0167 protein CbrC 2.16536828323e-05 1.71556918863e-05 -1815894141.46 +UniRef50_A6D355 1.74580398694e-07 8.23222475182e-07 261864766.012 +UniRef50_E3B8X8 CobQ CobB MinD ParA nucleotide binding domain protein 2.61866800002e-08 7.4442877724e-08 19481619.1912 +UniRef50_B2TKG7 2.16399407732e-06 8.6928381685e-06 2635774477.54 +UniRef50_UPI000289DAB7 ABC transporter 1.13413739141e-06 2.64098519837e-07 -351245369.032 +UniRef50_B2TKG9 1.02643486032e-05 9.93315951759e-06 -133705098.008 +UniRef50_A6LPH0 7.50394818849e-06 1.28100895609e-05 2142154385.72 +UniRef50_Q2YTW8 4.39193115912e-06 7.53213285907e-06 1267737960.88 +UniRef50_Q39242 Thioredoxin reductase 2 6.00663567777e-07 2.0663385369e-07 -159074630.865 +UniRef50_U6ZY01 2.0564138946e-06 8.17945692505e-07 -499984810.902 +UniRef50_A0RWW0 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 6.32058527058e-08 3.50662434408e-07 116049749.522 +UniRef50_Q6LLR8 UPF0761 membrane protein PBPRA3489 1.77760099104e-05 8.08242823505e-06 -3913417875.96 +UniRef50_B5XXZ2 4 hydroxybenzoate octaprenyltransferase 5.96847879521e-06 3.24082819905e-06 -1101186017.71 +UniRef50_UPI000406F7B4 MULTISPECIES 1.58434904583e-07 2.49197695075e-07 36642052.3063 +UniRef50_I6ST36 Transcriptional regulator MutR 6.24037941467e-05 4.43695388435e-05 -7280650171.1 +UniRef50_O34453 Nitric oxide synthase oxygenase 0.00017196129162 6.20526817423e-05 -44371454538.1 +UniRef50_UPI0003B677CD streptomycin 3 kinase 4.04359492681e-07 3.30317809956e-07 -29891535.9097 +UniRef50_D9RG71 Colicin V production protein 6.72710458867e-05 2.73586636745e-05 -16113118479.1 +UniRef50_P57067 Outer membrane lipoprotein carrier protein 8.41162307276e-06 5.07186423073e-05 17079862830.5 +UniRef50_A9LZF1 P type cation transporting ATPase 4.68344899327e-07 7.25891123e-07 103974570.944 +UniRef50_A7HZX6 Serine tRNA ligase 1.04893050104e-06 2.56121763324e-05 9916483767.06 +UniRef50_A9TBR6 Predicted protein 0.000145760983376 4.35395015742e-05 -41268066602.1 +UniRef50_F6D6D0 Peptidyl tRNA hydrolase 3.37041061476e-06 2.90475447734e-05 10366174153.7 +UniRef50_UPI0003B5DDB2 ABC transporter ATP binding protein, partial 6.78812102337e-07 1.25750896615e-06 233627025.33 +UniRef50_E2BKF3 3.96643296335e-08 1.36438871888e-06 534807492.137 +UniRef50_K4A2U8 3.04970727084e-06 4.61271704896e-08 -1212582144.58 +UniRef50_F4FN41 Transcriptional regulator, AraC family 0.000155775375806 2.93833408134e-05 -51026015531.4 +UniRef50_E3A746 1.40156412891e-06 5.64479207156e-07 -337941455.099 +UniRef50_F2D3N2 Predicted protein 1.33567755941e-06 2.59395788164e-06 507983206.92 +UniRef50_Q7WFR5 Ribosomal RNA small subunit methyltransferase H 1.36602863729e-07 3.8174383672e-05 15356318888.4 +UniRef50_UPI000475712A MFS transporter 1.75256842449e-07 7.44057420618e-08 -40714826.8084 +UniRef50_UPI0002FE50F2 ABC transporter ATP binding protein 1.85584804407e-07 3.70529158408e-07 74664305.2326 +UniRef50_I0C492 Transposase 1.30975222434e-05 2.31620945253e-06 -4352548275.27 +UniRef50_P37105 Signal recognition particle protein 0.000224193313677 6.63389889878e-05 -63727727967.3 +UniRef50_Q9HU72 Lactoylglutathione lyase 6.80299541495e-06 2.41787225508e-05 7014794268.87 +UniRef50_Q49VK4 Sensor histidine kinase GraS 0.000220620443689 1.95780223641e-05 -81163292556.8 +UniRef50_U6LXV1 1.27464680231e-07 1.0041373937e-07 -10920796.778 +UniRef50_UPI0004712B82 deoxyguanosinetriphosphate triphosphohydrolase 7.23374901893e-07 5.49917380398e-08 -269834485.231 +UniRef50_X7ECQ0 2.99058323184e-08 4.02256535327e-08 4166238.46266 +UniRef50_C7J660 Os08g0537001 protein 7.25487460329e-07 1.86602925987e-05 7240500919.18 +UniRef50_UPI0003B571D7 NAD synthetase 1.39661225465e-07 5.49529399806e-08 -34197774.3376 +UniRef50_A6QIL3 2.87740971635e-05 1.71699017539e-05 -4684756086.35 +UniRef50_Q8CR15 3.16949491293e-05 2.55735160822e-05 -2471297639.54 +UniRef50_O03077 ATP synthase subunit beta, chloroplastic 2.17568855978e-07 1.33017848625e-07 -34134279.2259 +UniRef50_UPI000359A7EA PREDICTED 1.04670684848e-07 2.64353075984e-07 64465740.8249 +UniRef50_Q8H107 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2, mitochondrial 6.03303344623e-08 5.79615092735e-08 -956323.797472 +UniRef50_R4LTE6 4.53103929857e-07 7.91328701238e-07 136545490.691 +UniRef50_A6LZR2 4.2555437847e-06 6.29305670241e-06 822568967.975 +UniRef50_A6LZR6 2.60727048894e-06 1.60567895302e-05 5429735881.13 +UniRef50_Q2Y639 UDP N acetylmuramate L alanine ligase 1.8293613576e-06 7.31875406767e-05 28808172654.5 +UniRef50_V8B5L5 8.63045765934e-06 1.56252224977e-06 -2853412258.16 +UniRef50_F3SUZ8 Radical SAM domain protein 2.01568528409e-05 6.29795527281e-06 -5595007016.04 +UniRef50_Y1QUK6 8.13734964445e-07 3.69775393467e-07 -179231926.8 +UniRef50_UPI00047377E9 hypothetical protein, partial 3.94525681701e-07 8.87784107276e-07 199134479.366 +UniRef50_A3M2I8 Histidinol phosphate aminotransferase 4.6885235971e-06 5.67610350902e-05 21022311891.3 +UniRef50_A4WVN9 2.90065566427e-05 3.23945366127e-06 -10402495671.5 +UniRef50_UPI000237EED8 CP4 like integrase 7.58327646046e-07 5.910362196e-07 -67537601.7529 +UniRef50_UPI000463B864 lysine transporter LysE 5.39093855123e-07 7.24673588335e-07 74920815.6171 +UniRef50_Q89KP5 Uridylate kinase 8.17442297073e-08 2.76865616493e-07 78772898.2542 +UniRef50_B1M0V9 1.3377247099e-07 2.36096310302e-07 41309389.585 +UniRef50_B1M0V4 4.05579581943e-07 6.49182479773e-07 98345479.1977 +UniRef50_UPI0003C18CC4 6.59008925046e-07 2.15749481963e-07 -178949276.578 +UniRef50_G5RK09 Membrane bound lytic murein transglycosylase A 2.77436384188e-06 1.41726147669e-06 -547878878.346 +UniRef50_UPI0003B301C3 transcriptional regulator 4.51441636142e-08 8.83461974299e-08 17441191.2 +UniRef50_T1Y750 IolE protein like protein 0.000135275379538 6.04186639642e-05 -30220574672.3 +UniRef50_A6M054 Glycosyl hydrolase family 32, N terminal domain protein 2.96335201666e-06 2.21755969591e-05 7756219044.0 +UniRef50_U5MWS1 Cna B domain protein 1.47754306325e-05 9.86657194776e-06 -1981766489.5 +UniRef50_Q8E2K7 DNA replication and repair protein RecF 6.88625625614e-06 3.17949993775e-05 10055965262.8 +UniRef50_UPI00047CBDF2 hypothetical protein 2.40575889047e-06 2.78700690247e-06 153914500.884 +UniRef50_Q92PH0 Glutaminase 3.95056542981e-06 3.31770832467e-07 -1460951786.55 +UniRef50_UPI0004777D5E competence protein 1.67227393961e-07 4.62272983391e-07 119113525.069 +UniRef50_A6LTY9 4.03648665065e-06 8.6916539709e-06 1879348172.51 +UniRef50_Q8NZX4 Transketolase 0.000100067845775 8.9052511478e-05 -4447025629.05 +UniRef50_UPI0003FFF64C hypothetical protein 4.05869280772e-08 9.74515360993e-08 22956940.0657 +UniRef50_A4WVF5 L malyl CoA beta methylmalyl CoA lyase 0.000110867481252 6.25155815433e-05 -19520255256.9 +UniRef50_Q9SR52 Urease 2.73049017245e-08 2.21385589703e-07 78352755.375 +UniRef50_UPI00040A8344 potassium ABC transporter ATPase 6.70967284587e-08 1.02219574503e-07 14179523.9539 +UniRef50_UPI000380F703 hypothetical protein 2.47089203454e-07 1.46005608877e-07 -40808687.5659 +UniRef50_D6SH06 0.000183974481137 2.31373795736e-05 -64931911594.2 +UniRef50_Q892X8 Oligoendopeptidase F 2.26404643234e-06 1.57831737671e-05 5457837603.41 +UniRef50_F7Y3H5 Enoyl CoA hydratase 2.46186514471e-06 0.000590711926567 2.37483768436e+11 +UniRef50_A1VBP9 Binding protein dependent transport systems inner membrane component 1.54075913818e-06 9.97984902347e-05 39667851801.6 +UniRef50_A4WQT8 Membrane protein like protein 5.95654681931e-05 1.69416164506e-06 -23363356614.2 +UniRef50_UPI0004686834 glycoside hydrolase family 13 1.39139135503e-08 1.33664790574e-06 534003944.418 +UniRef50_P37182 Hydrogenase 2 maturation protease 1.2659285297e-05 0.000159027051226 59090463240.0 +UniRef50_Q93SE0 Vitamin B12 transporter BtuB 2.89727394483e-05 3.89327202494e-06 -10124888758.5 +UniRef50_R7PWN2 3.35139666452e-05 5.26319731719e-06 -11405182253.6 +UniRef50_A0A009DJS4 7.55210588108e-07 2.16302604238e-06 568352374.727 +UniRef50_UPI000467756F N succinylarginine dihydrolase, partial 1.73659323971e-07 6.10571141461e-07 176386662.232 +UniRef50_A0A011P1Z9 Inner membrane protein YgaZ 2.79496348456e-07 1.4148988127e-07 -55714904.3328 +UniRef50_Q126M1 Tryptophan synthase beta chain 0.000390244254185 0.00034919170447 -16573418091.4 +UniRef50_Q87EJ9 Divalent metal cation transporter MntH 5.33505103497e-06 1.69933831719e-05 4706611747.49 +UniRef50_UPI00045E71E0 hypothetical protein 6.35215729272e-08 9.87891253154e-07 373179383.199 +UniRef50_Q9RYV0 Oligoendopeptidase F, putative 6.53844091497e-07 0.00042862623316 1.72777705279e+11 +UniRef50_UPI000299DE22 insertion element transposase 2.13229361984e-07 4.98160277947e-07 115030107.27 +UniRef50_UPI0002C37426 PREDICTED 8.2749926433e-07 6.47373315948e-07 -72719055.7558 +UniRef50_UPI00032A12CA PREDICTED 8.21602733608e-07 1.13563759223e-06 126779726.067 +UniRef50_N6V3L4 5.99909796145e-06 2.67276486635e-06 -1342881489.19 +UniRef50_Q46793 6.85965317271e-06 2.70932757067e-06 -1675537375.77 +UniRef50_UPI000470AE3D phage infection protein 2.15417488433e-08 1.50393423538e-08 -2625101.29331 +UniRef50_UPI00037632C6 hypothetical protein 9.33547047284e-09 4.0935953938e-08 12757502.9564 +UniRef50_UPI00037FBEB2 hypothetical protein 4.27434906246e-07 5.85990885898e-08 -148903545.712 +UniRef50_V5VD88 3.78420750072e-06 4.38671684144e-05 16181983194.1 +UniRef50_UPI0003C0FBBA PREDICTED 7.48071362449e-08 6.66086152294e-08 -3309843.54112 +UniRef50_P0A9X5 Rod shape determining protein MreB 3.30849815233e-05 4.74401201749e-06 -11441597172.3 +UniRef50_Q2YWJ9 3 dehydroquinate dehydratase 0.000129695489765 1.74171401473e-05 -45328147551.1 +UniRef50_Q2LRC2 UDP N acetylglucosamine pyrophosphorylase 1.57723950778e-06 4.65736058541e-05 18165585261.5 +UniRef50_Q9KDA5 DNA binding protein HU 1 1.3591268233e-05 6.56259344878e-06 -2837562261.93 +UniRef50_A0A017SZJ0 7.69620674074e-08 2.30694069895e-06 900269738.468 +UniRef50_D3P3K9 Transposase 1.97329598523e-06 3.19289732468e-06 492368026.927 +UniRef50_Q9RWI1 2.54771196058e-07 0.000111339034122 44846080100.4 +UniRef50_UPI0004650D81 DNA polymerase III subunit alpha 3.28332557535e-08 2.04905317529e-08 -4982909.1413 +UniRef50_A5N5C6 Redox sensing transcriptional repressor Rex 5.93527946053e-06 3.72247947718e-06 -893334507.388 +UniRef50_A6LXW2 FMN binding domain protein 4.07947092057e-06 8.39336190158e-06 1741570726.43 +UniRef50_W5X9T1 Capsule biosynthesis protein, putative 4.89792640796e-07 2.26521937824e-05 8947233304.11 +UniRef50_Q5HJ91 Virulence factor EsxA 3.72004184177e-05 3.40750044457e-05 -1261767973.64 +UniRef50_UPI00035D6DF9 hypothetical protein 3.73643105384e-07 2.04757585346e-07 -68181156.8977 +UniRef50_A6LUC6 HIRAN 1.04182623438e-05 3.75130960621e-06 -2691530632.88 +UniRef50_O34760 Probable quorum quenching lactonase YtnP 7.64133599172e-05 4.79555153508e-05 -11488781068.5 +UniRef50_P32709 Protein NrfD 1.6338349976e-05 3.75802375719e-06 -5078832072.49 +UniRef50_A8LAR7 Pyrimidine nucleoside phosphorylase 2.12341184589e-06 4.47234074609e-05 17198140990.5 +UniRef50_W5FVF8 6.9311237827e-07 2.3199549927e-06 656776327.049 +UniRef50_UPI00040BC8B6 hypothetical protein 8.16253013499e-08 2.05466357489e-07 49996154.064 +UniRef50_UPI00036FB676 hypothetical protein 6.10333952445e-06 4.84818932346e-07 -2268265710.03 +UniRef50_R7PY44 1.16355851109e-05 1.53752720228e-06 -4076709894.81 +UniRef50_Q8NSL1 2 methylcitrate synthase 2 1.41759844362e-07 1.19090337343e-07 -9151958.1697 +UniRef50_A9FRC1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.22092137243e-07 8.4996594575e-08 -14975925.7886 +UniRef50_Q74GU4 Acetylglutamate kinase 5.65200365026e-07 1.94846213692e-07 -149516515.65 +UniRef50_A1B414 General secretory system II, protein E domain protein 2.10708305497e-05 3.4781511842e-06 -7102380546.31 +UniRef50_O34990 Formyltetrahydrofolate deformylase 9.69478794779e-08 0.000420678430526 1.6979390566e+11 +UniRef50_UPI0003B4C8ED 3 5 exonuclease, partial 4.86049074949e-06 6.15903480777e-06 524238171.255 +UniRef50_D3E1K6 Cytidyltransferase related domain containing protein 3.00214912185e-05 3.13833281181e-06 -10853060942.2 +UniRef50_M9RAZ0 5.05876655689e-07 5.34024642696e-07 11363687.7694 +UniRef50_P32144 1.99228377555e-05 1.10530096434e-05 -3580858453.89 +UniRef50_C2ZP74 Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein 0.000103726473532 3.03941058357e-05 -29605176728.3 +UniRef50_UPI00047AA5CF hypothetical protein, partial 1.64180391911e-07 8.53622670478e-07 278336308.266 +UniRef50_V4QYP1 HupE UreJ family metal transporter 1.42095862126e-06 1.90912916601e-07 -496584545.329 +UniRef50_A5IUJ4 DNA mismatch repair protein MutS domain protein 0.000107425217306 2.15060550812e-05 -34686620136.8 +UniRef50_I1ZMC2 Multidrug ABC transporter, ATPase and permease component 5.58132555468e-05 5.26401058772e-05 -1281039460.54 +UniRef50_A3JX48 1.59893359667e-06 9.91594747543e-07 -245190146.278 +UniRef50_UPI0003B4645F hypothetical protein 9.41212324581e-08 3.7632110885e-07 113927553.081 +UniRef50_UPI00047B8895 DNA primase 3.25774208154e-08 7.41038416249e-08 16764725.6673 +UniRef50_P37662 4.92642113745e-05 7.84772776271e-06 -16720342671.5 +UniRef50_P37663 2.86626541508e-05 1.04841250564e-05 -7338895271.05 +UniRef50_P37664 2.58552047156e-06 1.94714311118e-05 6817049338.87 +UniRef50_Q28WI0 Chromosomal replication initiator protein DnaA 8.35778969479e-05 1.97801508343e-05 -25755932992.4 +UniRef50_Q31DK9 Ribosomal RNA small subunit methyltransferase G 3.29002600525e-07 3.93699810458e-07 26119057.574 +UniRef50_B0SXH8 Transglutaminase domain protein 7.13480526043e-07 6.95608355963e-07 -7215214.37749 +UniRef50_U4GBY1 Putative signal peptide protein 1.65295635543e-06 2.35417567459e-06 283090844.074 +UniRef50_Q4ZUG2 Phenylalanine tRNA ligase beta subunit 2.10874217451e-06 1.70239220598e-06 -164048468.77 +UniRef50_C5WFX1 Ribosomal protein L21 1.30175416232e-05 8.9040212621e-06 -1660678648.35 +UniRef50_Q51392 Probable alginate O acetylase AlgI 7.47853101288e-06 9.68536553959e-06 890926179.338 +UniRef50_C7ZXN9 Peptidase A24A 0.000124913439708 8.74758491299e-06 -46897581096.1 +UniRef50_U5NRI8 4.92737936354e-06 2.10146179404e-05 6494615626.11 +UniRef50_A4WPL6 0.000167966931418 6.9845382664e-05 -39612873318.8 +UniRef50_A3ZQR3 1.51110456182e-06 3.40474006485e-07 -472597920.443 +UniRef50_W1JLJ8 2.47076569867e-06 4.10305972424e-07 -831832876.171 +UniRef50_B2V4B1 Peptide deformylase 1.50756821902e-07 2.68779406796e-07 47647165.8217 +UniRef50_A9GXK1 Peptidyl tRNA hydrolase 4.41622785726e-07 2.15409242388e-07 -91325183.3979 +UniRef50_P0A4K2 Cystathionine beta lyase 7.72438350101e-07 4.90272783015e-05 19481071041.9 +UniRef50_A6LWY3 Transcriptional antiterminator, BglG 2.20351590581e-06 9.98516514623e-06 3141547289.93 +UniRef50_A5UN38 Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD 2.10743012443e-05 1.03745359071e-05 -4319626567.51 +UniRef50_UPI0003A61C77 hypothetical protein 4.04609101818e-07 1.61322566286e-06 487933337.085 +UniRef50_Q72L31 Uroporphyrinogen decarboxylase 1.58948273712e-07 2.51241192528e-07 37259783.8875 +UniRef50_E6NII4 Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase 9.87321679628e-07 3.01672439636e-05 11780292704.0 +UniRef50_A5IPW8 Uracil xanthine permease 0.000144146479779 3.19911161925e-05 -45278496581.2 +UniRef50_UPI0003B7912D D ribose transporter ATP binding protein 4.23903796195e-08 6.0308726196e-08 7233856.39577 +UniRef50_Q5HRP0 Dihydropteroate synthase 0.000286146329528 6.01408980101e-05 -91241166102.3 +UniRef50_R9ZGA8 AraC family transcriptional regulator 3.82300568732e-06 5.98390490412e-06 872381531.037 +UniRef50_C5DAG0 Extracellular solute binding protein family 1 2.2219893676e-07 7.97002201073e-06 3127891251.44 +UniRef50_K9NKD1 NAD dependent epimerase dehydratase 4.59788822913e-05 3.59675538793e-05 -4041696132.74 +UniRef50_I1ZK66 Oligoendopeptidase F 1.53928255183e-06 5.07883314062e-05 19882445376.3 +UniRef50_F4EDJ1 Phosphatidate cytidylyltransferase 6.43715005119e-05 5.76353629175e-05 -2719461408.56 +UniRef50_R6UCD8 Aminotransferase class I and II 6.74578927021e-05 3.67682280454e-05 -12389794226.4 +UniRef50_W8EXQ8 2.83637118726e-08 4.1713364533e-08 5389418.59766 +UniRef50_UPI0001584DF8 conserved hypothetical protein 2.59693270029e-08 1.1985325149e-07 37902092.4008 +UniRef50_R7PWY7 3.96490603807e-05 6.61420965292e-06 -13336574622.0 +UniRef50_P19317 Probable nitrate reductase molybdenum cofactor assembly chaperone NarW 4.44603370354e-05 3.03407573826e-06 -16724290043.0 +UniRef50_Q18JB5 Formate tetrahydrofolate ligase 0.000331755428504 0.000230001547629 -41079290369.8 +UniRef50_Q7VL09 8 amino 7 oxononanoate synthase 2.58702422127e-06 0.000146959408894 58284903340.9 +UniRef50_E2XWM2 Amidotransferase 9.49809775798e-06 3.90286394531e-06 -2258864551.41 +UniRef50_B7RLJ4 1.14523459095e-05 1.09458496327e-06 -4181555198.0 +UniRef50_R4R6C5 HlyD family secretion protein domain protein 4.63043204404e-06 5.88437754967e-06 506233188.265 +UniRef50_Q9XAQ9 NADH quinone oxidoreductase subunit F 1.29720271086e-06 6.13986998772e-05 24263711934.3 +UniRef50_T5JDW5 8.47623822773e-08 2.68710233989e-06 1050596575.19 +UniRef50_Q6LTY5 Na translocating NADH quinone reductase subunit E 1.17706487853e-06 1.0927429796e-06 -34041785.3441 +UniRef50_Q2NEW4 Alanine tRNA ligase 3.30038608059e-05 2.00041518123e-05 -5248142045.08 +UniRef50_Q5HNU8 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.000106082168038 3.38301680929e-05 -29169019009.6 +UniRef50_Q6GGZ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.000105951139712 3.94944358452e-07 -42614331384.6 +UniRef50_C7NZH8 Chorismate synthase 4.20192635179e-08 1.94741746707e-07 61655940.579 +UniRef50_A5UP06 2.23265652286e-05 9.53286768366e-06 -5164972695.2 +UniRef50_UPI000361F275 hypothetical protein 3.36439162762e-08 6.18237852361e-08 11376558.905 +UniRef50_A6LQ11 Erythronolide synthase., Aspartate racemase 4.38115619619e-06 1.1981649277e-05 3068412325.26 +UniRef50_A0A023X8X0 1.81149506258e-06 1.95319865074e-06 57207477.4388 +UniRef50_Q6A7E9 ATP dependent Clp protease proteolytic subunit 2 2.08555794952e-06 0.000102651487825 40599699973.3 +UniRef50_A1R5F0 Ribosomal RNA small subunit methyltransferase H 6.80470288626e-08 3.59082503308e-05 14469129881.7 +UniRef50_A5UP09 1.95575710316e-05 8.35757948297e-06 -4521574027.52 +UniRef50_X2H8Z5 1.85042151398e-06 4.0240633382e-05 15498599632.0 +UniRef50_V7FG71 5.00727469764e-07 2.70369689397e-06 889365790.028 +UniRef50_UPI00032911E8 PREDICTED 1.96502606983e-08 2.92197862106e-07 110030811.224 +UniRef50_R7B346 4.5825992868e-05 9.26976715102e-06 -14758196917.3 +UniRef50_K0TNG1 7.23799936697e-08 5.26275926482e-07 183243358.006 +UniRef50_UPI0003604578 hypothetical protein 9.7420849302e-08 8.23942497118e-08 -6066422.65168 +UniRef50_UPI0003A753CE hypothetical protein 3.41496392274e-06 9.87091553117e-07 -980161868.96 +UniRef50_UPI00037FE958 hypothetical protein 4.8793045217e-08 2.04239654656e-07 62755703.7749 +UniRef50_B7UR12 Purine nucleoside phosphorylase DeoD type 4.39971004135e-05 2.41404502703e-05 -8016373331.31 +UniRef50_C7ZTK0 0.000109440861639 4.03931476013e-05 -27875409467.8 +UniRef50_UPI0004704B3B ABC transporter permease 2.40406699e-07 4.70773513151e-07 93001909.7915 +UniRef50_B9KCQ6 Polyphosphate kinase 6.0591651505e-07 2.40530526739e-05 9465896596.02 +UniRef50_C5X9K2 9.90454725722e-07 9.53050437718e-06 3447722842.49 +UniRef50_G7M2R9 ABC type transporter, periplasmic subunit family 3 2.79619251005e-06 7.39837358076e-06 1857956973.36 +UniRef50_I0E8W5 8.53397111153e-07 2.19286963168e-05 8508356912.3 +UniRef50_UPI000470B5F1 hypothetical protein, partial 1.65226214149e-06 1.80399754985e-06 61257446.3578 +UniRef50_Q41805 Extensin like protein 3.466733666e-08 1.8099495206e-08 -6688640.90526 +UniRef50_Q5X5I2 Ribonuclease H 4.95919986044e-07 2.73818670852e-07 -89665026.4326 +UniRef50_G8VGX4 4.12722542063e-06 6.86393774067e-05 26044347409.9 +UniRef50_A3PR71 Transcriptional regulator, GntR family 4.76397688187e-05 6.70022927747e-06 -16527794497.4 +UniRef50_A1W649 Membrane lipoprotein lipid attachment site 1.25389147293e-06 9.51908017289e-08 -467781679.82 +UniRef50_U3B280 1.05079898647e-07 7.10833080719e-07 244549993.03 +UniRef50_A6M1W5 Periplasmic binding protein LacI transcriptional regulator 4.75383202959e-06 1.5816981088e-05 4466329034.98 +UniRef50_C4RK38 Polyketide synthase 1.33860279732e-06 2.26353014903e-06 373404522.02 +UniRef50_A7HH59 Ribosomal RNA small subunit methyltransferase H 6.13104205493e-08 1.7040101598e-06 663178042.928 +UniRef50_UPI00038ED75B PREDICTED 9.8600309257e-08 1.10516635721e-07 4810767.22329 +UniRef50_UPI00037D470D hypothetical protein 1.69069567209e-06 7.80030842106e-08 -651063787.691 +UniRef50_A9GG06 3.64478080255e-08 2.28597461204e-06 908161575.577 +UniRef50_Q03283 Urease subunit beta 2.19499168179e-07 3.53325343717e-05 14175563197.0 +UniRef50_R7H8U8 Nitroreductase 5.55126454193e-06 3.41406595601e-06 -862813295.512 +UniRef50_P75858 4.67126415092e-05 8.56589379178e-06 -15400310166.7 +UniRef50_Q0ST10 Transcriptional regulator, Crp Fnr family 3.06264660003e-05 1.03939205231e-05 -8168126890.4 +UniRef50_G8VPJ1 NAD specific glutamate dehydrogenase 9.62826894095e-08 3.16864463512e-05 12753336725.2 +UniRef50_F0P4A3 Acetyltransferase, GNAT family 0.000229276700966 6.49948025381e-05 -66322618361.0 +UniRef50_UPI000365B96C cytochrome C oxidase subunit I, partial 3.76491108749e-07 5.55042274723e-07 72083296.7729 +UniRef50_Q5HW32 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.91711901895e-06 4.22387100072e-05 16278321083.5 +UniRef50_Q129M4 Ribosomal RNA large subunit methyltransferase E 4.52416574076e-07 4.01809671834e-07 -20430627.4516 +UniRef50_Q9SFH9 Delta aminolevulinic acid dehydratase 1, chloroplastic 1.27871054051e-07 2.35862525078e-07 43597482.058 +UniRef50_UPI00036BED26 hypothetical protein 5.66051980098e-08 1.52793417572e-07 38832364.5994 +UniRef50_E8SNN7 Ribosomal protein 8.46591860258e-08 2.21052354027e-06 858237527.096 +UniRef50_UPI000379BCC8 hypothetical protein 8.4442287031e-08 2.78851101755e-07 78485224.1685 +UniRef50_Q92947 Glutaryl CoA dehydrogenase, mitochondrial 2.53509656796e-07 2.40517076478e-06 868651993.142 +UniRef50_Q5HS21 Lipase, putative 0.000124046045783 5.18442855378e-05 -29148736626.2 +UniRef50_I2HEM4 3.6544216505e-07 6.44327253476e-06 2453694703.62 +UniRef50_A0RIM4 L cystine uptake protein TcyP 8.51916075504e-05 0.000102571248938 7016374500.36 +UniRef50_UPI0003C1735E PREDICTED 8.21900938102e-09 1.33362698152e-08 2065900.83313 +UniRef50_Q49ZB9 0.000233936410807 5.97432165255e-05 -70323930122.1 +UniRef50_W1WJ70 4.95299346306e-07 3.63500087069e-07 -53208978.3128 +UniRef50_C5N256 Bacteriocin, lactococcin 972 family 0.000109756638068 6.08900423076e-06 -41851895924.9 +UniRef50_Q1R4E5 8.65327217169e-06 2.94335586571e-06 -2305163281.28 +UniRef50_Q9X5W3 Cyclic pyranopterin monophosphate synthase 1.06380096741e-07 7.97185750055e-07 278886719.382 +UniRef50_UPI0003B792B2 FAD dependent oxidoreductase 1.42125134306e-07 1.69452598868e-07 11032432.7894 +UniRef50_M9VD00 6.738233878e-06 5.66662922101e-05 20156569834.8 +UniRef50_A7IJF9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding 2.02519472778e-05 4.87002524188e-06 -6209870683.3 +UniRef50_UPI000373BD8F hypothetical protein 1.99730517482e-06 4.13157993623e-07 -639539656.722 +UniRef50_Q2G607 Phosphate import ATP binding protein PstB 1.9246639282e-07 1.93023861011e-06 701559968.983 +UniRef50_G0A719 Type VI secretion protein, VC_A0114 family 3.57544057112e-08 6.3434105708e-08 11174634.5568 +UniRef50_Q9I696 Component of chemotactic signal transduction system 1.93068430848e-06 2.85978824189e-06 375090659.305 +UniRef50_M1FEG3 Sporulation initiation inhibitor protein soj 6.48522788994e-06 2.30725731556e-07 -2525019272.71 +UniRef50_C0ERG4 2.7008406986e-06 3.16902353442e-06 189011156.07 +UniRef50_UPI0003B646B9 hypothetical protein 3.66028307627e-08 4.50495268159e-08 3410034.84929 +UniRef50_B9KQI0 Type III secretion system inner membrane R protein 0.000146759790381 3.19868674853e-05 -46335237395.3 +UniRef50_P44614 Tryptophan specific transport protein 4.85095542886e-05 9.63352338842e-06 -15694730737.0 +UniRef50_G2JMU8 2.43016731023e-06 0.000133790551135 53031798923.3 +UniRef50_B1J5I1 6.89853022232e-08 1.18341773461e-07 19925813.1107 +UniRef50_B4VCX3 3.8983717979e-07 5.41642554932e-08 -135515278.709 +UniRef50_UPI0003B55D0D CTP synthetase 3.30068040309e-08 1.95316094877e-07 65526252.4735 +UniRef50_P56860 Phosphoadenosine phosphosulfate reductase 1.18425721906e-07 0.000139365158458 56215614755.1 +UniRef50_Q03T56 Ribosomal RNA small subunit methyltransferase A 2.72266313712e-07 3.76328447706e-07 42011160.4794 +UniRef50_W6KBC4 3.2801619204e-07 5.87263941285e-08 -108715595.974 +UniRef50_P42628 Inner membrane transport protein YhaO 2.577755407e-05 4.41545478478e-05 7419017899.17 +UniRef50_R4KE37 1.04523293712e-05 5.61183422741e-06 -1954167289.1 +UniRef50_A4WUY8 Substrate binding region of ABC type glycine betaine transport system 9.20759330504e-05 6.9423888041e-06 -34369456518.3 +UniRef50_UPI00026C5B6F transcriptional regulator 6.84447946218e-07 3.74176062183e-06 1234274644.59 +UniRef50_UPI00035D359F hypothetical protein, partial 3.56834704693e-08 2.51514632171e-08 -4251900.56998 +UniRef50_UPI0004648BE1 chemotaxis protein CheW 2.82681472667e-07 4.79417105607e-07 79424589.2356 +UniRef50_UPI0002B4606A PREDICTED 1.17872905744e-06 7.0167976165e-08 -447539712.083 +UniRef50_P30177 5.36453528811e-05 1.28311148592e-05 -16477208736.5 +UniRef50_UPI0004723693 PTS system lactose specific transporter subunit IIA 5.06920177655e-07 4.63991260427e-07 -17330930.682 +UniRef50_Q04804 Sensor protein PfeS 9.42034586082e-06 2.0632363615e-06 -2970155386.76 +UniRef50_O33566 ORF700 protein 2.56060600159e-05 5.80317228756e-07 -10103199463.6 +UniRef50_UPI0004678A2B cystathionine beta lyase, partial 2.93689426824e-07 1.01260101921e-06 290233431.884 +UniRef50_UPI00037D0482 50S ribosomal protein L6 8.61366620339e-08 2.69362574228e-06 1052675339.19 +UniRef50_F0VF06 1.06869509062e-08 1.68125183531e-08 2472966.74748 +UniRef50_P37047 Carbohydrate diacid regulator 2.6678854304e-05 5.5877126603e-06 -8514752698.97 +UniRef50_UPI000475D4DC hypothetical protein 3.67780271062e-08 4.85887077572e-08 4768116.71216 +UniRef50_UPI0003124421 hypothetical protein 2.05663687536e-07 5.50077780602e-07 139044195.807 +UniRef50_P50735 Cryptic catabolic NAD specific glutamate dehydrogenase GudB 4.96965260715e-08 3.77390158577e-06 1503507283.74 +UniRef50_A4XNZ9 Lysine exporter protein 5.01087595826e-06 4.78388132025e-05 17290163823.4 +UniRef50_U4V580 UPF0301 protein HIMB11_01782 3.76897860925e-07 7.26699372455e-07 141219162.752 +UniRef50_UPI00036AF0AB hypothetical protein 1.51049159358e-07 5.07284145377e-07 143816435.351 +UniRef50_B8D1K3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.54160793162e-07 3.46950774597e-05 13944591923.0 +UniRef50_A5UJ58 Adhesin like protein 2.29880269678e-05 4.76317266442e-06 -7357597326.39 +UniRef50_UPI0003703272 hypothetical protein 1.61316082511e-08 8.23581394483e-08 26736463.3352 +UniRef50_E2ZSG3 Glycolate oxidase, iron sulfur subunit 1.31330069224e-07 2.24412737548e-07 37578615.4552 +UniRef50_L6WWY8 3.02396989976e-06 1.37044480224e-06 -667548372.904 +UniRef50_UPI000225FE4D coenzyme PQQ biosynthesis protein D 1.06206693939e-06 7.11232719528e-07 -141636079.778 +UniRef50_UPI0004700C7A hypothetical protein, partial 5.57525325827e-08 1.6687846053e-07 44862900.7807 +UniRef50_K1ZX87 1.78410397243e-07 3.86097305425e-07 83845753.438 +UniRef50_D3QET9 0.000137331681876 3.29273510606e-05 -42149309535.2 +UniRef50_M5X9E3 3.44256423507e-07 2.68035573355e-07 -30771292.5414 +UniRef50_A0A024HK83 DNA polymerase III subunit epsilon 2.20752040266e-06 7.2121761978e-06 2020440958.53 +UniRef50_Q0FDU0 2.19411619326e-07 2.26554242169e-07 2883564.49156 +UniRef50_O34591 Acetoin 0.000116559460306 0.000115344620238 -490445843.216 +UniRef50_UPI00034B0D3D hypothetical protein 1.99674784254e-07 6.36726592939e-08 -54905726.7801 +UniRef50_A7ZKH0 Multidrug resistance protein MdtH 2.79545926657e-05 1.49043239446e-05 -5268553627.51 +UniRef50_A6M3F8 Metal dependent phosphohydrolase 2.62143047812e-06 2.07258329605e-05 7308969448.15 +UniRef50_A7ZMQ9 UPF0756 membrane protein YeaL 5.14753621162e-05 4.07333386473e-06 -19136780493.4 +UniRef50_A4WXX3 Transcriptional regulator, DeoR family 1.38947465983e-05 2.33144767263e-06 -4668245673.94 +UniRef50_F6AYF6 TonB dependent siderophore receptor 2.13304303761e-06 9.6243078876e-05 37993376328.0 +UniRef50_UPI00037C438D hypothetical protein 1.24226973165e-08 2.03582519587e-08 3203680.78926 +UniRef50_UPI00047806EC hypothetical protein 3.68664442149e-08 2.51068396993e-07 86475956.89 +UniRef50_D6B3T3 Polyketide synthase 3.80166456054e-06 6.73002942567e-07 -1263079088.17 +UniRef50_L8UIS8 8.76434499951e-07 4.95871227016e-07 -153638063.32 +UniRef50_Q9RXC5 2.09496058222e-06 0.000390166753048 1.56669344795e+11 +UniRef50_C1D4B9 Recombination associated protein RdgC 8.51879013176e-06 3.44743405807e-05 10478574226.6 +UniRef50_Q71YN8 Peptidase T 0.000323403818888 0.000188104559663 -54621971257.7 +UniRef50_Q2RMC1 Peptidyl tRNA hydrolase 4.53925548609e-07 1.30148930409e-07 -130712593.953 +UniRef50_A0A009R5V4 TetR family transcriptional regulator domain protein 2.16014603453e-06 8.7780808855e-07 -517695564.848 +UniRef50_UPI000466D206 50S ribosomal protein L17 7.04515482458e-07 9.68359430347e-07 106517039.492 +UniRef50_R7PX92 Chlamydial polymorphic outer membrane protein repeat containing domain protein 7.13851464801e-07 4.91934179698e-08 -268330609.777 +UniRef50_Q5H1S4 Acyl CoA dehydrogenase 5.18503437907e-05 2.70163367077e-05 -10025793406.9 +UniRef50_Q2NGB7 Transporter 4.43202770759e-05 1.01835446879e-05 -13781417769.8 +UniRef50_A5UNH0 2.2498671239e-05 8.96201212874e-06 -5464915396.32 +UniRef50_A5UNH3 1.9004762106e-05 2.1572463838e-05 1036612698.45 +UniRef50_E6UB19 Arginine biosynthesis bifunctional protein ArgJ 4.34972063444e-06 1.13807229048e-05 2838501896.64 +UniRef50_UPI00036661AC hypothetical protein 3.44615632153e-07 4.88145171633e-07 57944636.3936 +UniRef50_K2EUH3 5.69023122866e-07 1.85209847686e-07 -154950129.109 +UniRef50_P06971 Ferrichrome iron receptor 2.95515708199e-05 3.50439699142e-06 -10515563709.3 +UniRef50_Q04CP4 Fhu operon transcription regulator 4.97367021258e-05 1.12074036404e-05 -15554750606.2 +UniRef50_O19889 Uroporphyrinogen III C methyltransferase 2.11040011233e-07 3.01510580434e-07 36524078.9852 +UniRef50_Q47427 Tail fiber assembly protein homolog 2.05524027409e-05 2.27201665278e-07 -8205533092.48 +UniRef50_Q04G79 30S ribosomal protein S3 4.81408644045e-05 5.21175482733e-05 1605436077.23 +UniRef50_A4WDR5 Anaerobic nitric oxide reductase transcription regulator NorR 3.30482542509e-05 2.00291431097e-06 -12533384702.9 +UniRef50_I2JKJ5 Bifunctional adenylate cyclase hybrid sensor diguanylate cyclase response regulator 1.96575340115e-07 9.81945340175e-07 317063506.598 +UniRef50_K7Y9Y7 Outer membrane protein 1.54707372483e-06 4.17709019422e-05 16238853053.2 +UniRef50_Q4L6H4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000198217411377 0.000228644933931 12283964242.7 +UniRef50_UPI0003B53166 hypothetical protein 2.5846962913e-06 3.39476459576e-06 327034515.166 +UniRef50_UPI00046E53C7 hypothetical protein 1.36957664735e-08 2.28230021775e-07 86610111.4964 +UniRef50_U3SZE2 2.95172210686e-06 4.49701408499e-05 16963351270.5 +UniRef50_A6LP67 Aminomethyltransferase 3.7794114564e-07 1.43697569023e-07 -94567006.3722 +UniRef50_C3K475 Acetylglutamate kinase 8.79493298011e-06 8.33109184008e-05 30083017728.3 +UniRef50_UPI0003677E0E hypothetical protein 1.00606321404e-07 1.56532233852e-06 591323830.198 +UniRef50_UPI0002BC90CC PREDICTED 3.58747273317e-08 1.37844349105e-07 41166387.6177 +UniRef50_Q1M667 Blue light activated histidine kinase 3.50797147394e-07 3.28226154736e-07 -9112186.71326 +UniRef50_E3A0D4 9.26455114066e-06 3.04974222238e-06 -2508994624.59 +UniRef50_Q3J430 ATP synthase epsilon chain 1 6.48982891585e-05 7.60472202226e-06 -23130116124.0 +UniRef50_R0TGF0 2.28140541416e-06 6.32821511128e-06 1633746734.67 +UniRef50_E3HHW2 Pirin C terminal cupin domain protein 2 1.9741991764e-07 4.82260231688e-08 -60231406.0129 +UniRef50_UPI0003B4B661 hypothetical protein, partial 1.321497423e-06 4.16887110219e-07 -365202284.087 +UniRef50_C6BYG5 UDP N acetylmuramate L alanine ligase 3.94110094315e-08 7.09810001829e-08 12745192.6737 +UniRef50_Q2J728 Translation initiation factor IF 2 3.308209786e-06 0.000105939275634 41433420707.6 +UniRef50_W8SB38 Pe pgrs family protein 7.43773360583e-08 6.66474944059e-07 239037070.205 +UniRef50_A0A009HBV1 Ferrous iron transport protein B 1.53768728707e-06 0.000110218444381 43875755301.7 +UniRef50_UPI000382BA5B DNA glycosylase 6.91541118095e-07 4.88608850105e-07 -81926246.8465 +UniRef50_E2PFC0 4.14773871599e-07 2.19345176899e-06 718074094.009 +UniRef50_D6SIZ2 Luciferase family oxidoreductase, FMN dependent, PP_0088 family 0.000264795109874 7.66559231302e-05 -75954098416.0 +UniRef50_E8SJV4 Secretory antigen SsaA 0.000105223202959 2.22880532219e-06 -41580102209.4 +UniRef50_Q8FJN9 Cardiolipin synthase B 2.69441546301e-05 7.96215476306e-06 -7663266281.64 +UniRef50_A8TW43 Beta lactamase like protein 4.44002558944e-07 9.32076139124e-08 -141620224.047 +UniRef50_UPI0004652B1C hypothetical protein 1.12853808788e-07 7.37062759403e-08 -15804339.4049 +UniRef50_UPI00031CBF3C hypothetical protein 2.7158762497e-07 3.12182724186e-08 -97040057.2885 +UniRef50_UPI000310C5E8 hypothetical protein 7.92521408376e-07 1.09597617659e-06 122508413.737 +UniRef50_F5M2T1 Diguanylate cyclase 9.1085131109e-05 7.25118959036e-06 -33844790949.2 +UniRef50_UPI0003769589 hypothetical protein 8.12213480441e-08 5.6289108381e-07 194455983.081 +UniRef50_P26276 Phosphomannomutase phosphoglucomutase 3.94684521467e-06 3.64709898942e-06 -121011229.433 +UniRef50_C8RWL5 2.03803755852e-06 1.03253912421e-06 -405932056.784 +UniRef50_Q3Z396 Deferrochelatase peroxidase EfeB 4.26707625365e-05 3.13407946967e-06 -15961444123.7 +UniRef50_A9UTR3 Predicted protein 8.24993790657e-08 1.29082644261e-07 18806235.8003 +UniRef50_T0I6W5 2.58476803046e-07 2.00381440775e-07 -23453810.6591 +UniRef50_P0AC04 Outer membrane protein assembly factor BamD 3.67800029486e-05 1.19036375135e-05 -10042893993.5 +UniRef50_A0A022S625 UvrD REP helicase N terminal domain protein 6.73652114688e-07 8.15320498135e-05 32643527395.1 +UniRef50_A1B5D2 1.53811082933e-05 7.10995997344e-06 -3339164075.13 +UniRef50_A1B5D1 6.37106323794e-07 2.6083315932e-07 -151906093.889 +UniRef50_C1A399 Arginine deiminase 6.52745271495e-08 1.17929395753e-07 21257416.6031 +UniRef50_W5XHV0 Glycosyltransferase 36 1.47953364439e-06 2.91414085125e-06 579168534.019 +UniRef50_C4Z0Q8 Galactose 6 phosphate isomerase 5.37362878444e-06 4.27524006556e-05 15090268893.5 +UniRef50_Q3IX62 1.38206341026e-05 1.01729979102e-06 -5168863176.17 +UniRef50_Q3IX61 7.59564519592e-05 2.24270375944e-05 -21610481458.9 +UniRef50_A3YTK8 MazG 1.46690931906e-07 9.38683732276e-08 -21325115.1442 +UniRef50_W5X9I3 UDP glucose pyrophosphorylase 4.93940207852e-07 1.41117955691e-07 -142438672.813 +UniRef50_A3CQV0 33 kDa chaperonin 3.47770362184e-05 4.09774080656e-05 2503166201.83 +UniRef50_UPI0003666D5F hypothetical protein 5.19693405252e-07 4.26306526711e-07 -37701428.8529 +UniRef50_L0DXM3 ADP heptose lipooligosaccharide heptosyltransferase II 1.61548925324e-06 3.99347606755e-05 15469960103.5 +UniRef50_UPI000370C5F4 MULTISPECIES 6.85062166732e-08 1.97348534025e-06 769063448.912 +UniRef50_Q8DV84 5.65142415826e-05 2.16863125405e-05 -14060462341.0 +UniRef50_G0EVT1 D lactate dehydrogenase 1.24223561794e-05 1.90118050557e-06 -4247527728.86 +UniRef50_F4BQ82 NADH peroxidase 8.67277368233e-05 1.69250067474e-05 -28180218707.5 +UniRef50_A4WXA2 Sulfotransferase 9.25636674667e-06 8.38967912513e-07 -3398207202.45 +UniRef50_W0Z1I7 3.29279650037e-06 1.95263113306e-06 -541041204.461 +UniRef50_W7JJV3 2.48346045292e-06 8.0920393093e-07 -675917903.365 +UniRef50_Q5XAQ1 Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase 4.63445492129e-05 4.41034321433e-05 -904766462.597 +UniRef50_Q9MA93 Glucose and ribitol dehydrogenase homolog 2 2.59182594791e-07 6.19301784008e-07 145384535.846 +UniRef50_UPI000255EED3 acetolactate synthase 3 regulatory subunit 1.25558028247e-07 2.25534882495e-06 859822680.1 +UniRef50_UPI0003B75ED8 3 hydroxyacyl CoA dehydrogenase 2.37520368161e-08 4.9808186197e-08 10519187.25 +UniRef50_I6TX78 Competence protein transcription factor 5.62646504624e-05 2.62115587353e-05 -12132801923.1 +UniRef50_A9FDL0 tRNA N6 adenosine threonylcarbamoyltransferase 5.88576930307e-08 1.28147942615e-07 27973324.0442 +UniRef50_D3DZK4 Sortase family protein 5.46430550572e-05 1.05267516554e-05 -17810293051.2 +UniRef50_Q9RWY1 Serine threonine protein kinase related protein 2.39043627327e-06 0.000579704021936 2.33068578967e+11 +UniRef50_Q47153 Putative protein FhiA 5.47909844496e-05 4.11373672018e-06 -20459026788.1 +UniRef50_U6GAH2 6.61143300058e-08 3.22046580918e-08 -13689750.6701 +UniRef50_I4YVM4 3.00215148816e-07 1.8691572408e-07 -45740368.1062 +UniRef50_V9XXU2 4.17092972124e-06 5.3921152176e-06 493007570.512 +UniRef50_P77766 Protein TrpH 2.40220542502e-05 1.29411112873e-05 -4473512652.58 +UniRef50_P69827 PTS system mannitol specific cryptic EIICB component 1.68743322254e-05 1.27301288228e-05 -1673065768.72 +UniRef50_T2EKM2 Fic DOC family protein 3.45092107772e-06 3.57341313693e-06 49451547.4497 +UniRef50_UPI000309099A hypothetical protein 8.04936175202e-07 2.01972825941e-06 490426471.571 +UniRef50_S5Y902 2.73905820559e-07 2.67366148739e-07 -2640145.76453 +UniRef50_UPI0003B7338D proline iminopeptidase 8.27447744401e-08 1.2374039873e-07 16550436.5987 +UniRef50_Q3IWE2 Integrase family protein 0.00012260760857 2.77028221382e-05 -38314226895.2 +UniRef50_P0DH75 Orotate phosphoribosyltransferase 0.000214324677234 6.43371012611e-05 -60551824974.8 +UniRef50_A0A037X3F6 Sodium 6.38143883878e-06 1.28959259902e-06 -2055640810.97 +UniRef50_X1CKD2 Marine sediment metagenome DNA, contig 2.43074058672e-07 1.04917836046e-07 -55775362.4416 +UniRef50_UPI000382C157 MULTISPECIES 1.16472740954e-07 6.30917958462e-08 -21550542.5979 +UniRef50_Q8PY83 CoB CoM heterodisulfide reductase 1 subunit B 3.16998445477e-05 3.60875810829e-06 -11340716312.0 +UniRef50_P58253 Stage 0 sporulation protein A homolog 1.3827325599e-06 1.16843210215e-05 4158877676.65 +UniRef50_Q06400 UPF0394 inner membrane protein YedE 2.39822768777e-05 3.50907583857e-06 -8265282493.91 +UniRef50_A6L2R5 L arabinose isomerase 1.56083842572e-07 5.83986046704e-05 23513220374.3 +UniRef50_UPI000382BAEE hypothetical protein, partial 7.69763534325e-07 2.22378650835e-07 -220985994.633 +UniRef50_Q12SM7 Argininosuccinate synthase 4.28170401796e-08 6.36284076096e-07 239589925.059 +UniRef50_UPI0003760F37 hypothetical protein 7.75438859203e-08 1.31032623301e-07 21594059.6612 +UniRef50_G7U6J5 Transporter, major facilitator family protein 1.89834543044e-06 7.96609843678e-05 31393731593.9 +UniRef50_UPI00040DB596 hypothetical protein 8.94430757772e-08 5.13048862245e-08 -15396855.1306 +UniRef50_P31446 Inner membrane protein YidI 2.1773525917e-05 2.12403689804e-05 -215241997.877 +UniRef50_G2QV25 1.49994432661e-06 2.26875829852e-06 310379634.868 +UniRef50_UPI0003B518FF glycerophosphoryl diester phosphodiesterase 6.36631692428e-08 1.32402635297e-07 27750965.9742 +UniRef50_D5ATD5 Flagellar protein, putative 1.49956634045e-06 5.75843959422e-07 -372918060.569 +UniRef50_UPI00046CA2CA hypothetical protein 1.8191231751e-08 2.97830893155e-06 1195035840.14 +UniRef50_UPI0003C18CFE PREDICTED 6.73724572859e-08 2.29166212526e-07 65318124.423 +UniRef50_P57487 Endonuclease 1 2.37116977459e-05 1.95932616735e-05 -1662663181.32 +UniRef50_P0C0R4 Lipase 0.000228640233925 6.21830992186e-05 -67200787939.6 +UniRef50_Q5QKR8 UDP N acetylglucosamine 4,6 dehydratase 5.29579086442e-05 4.37979518392e-05 -3697986967.49 +UniRef50_L7LQU6 Putative monotil peptide 1.081934572e-06 1.11490969176e-06 13312460.4973 +UniRef50_U6MR10 2.09210782683e-07 7.51430106113e-08 -54124804.782 +UniRef50_W4TVZ8 Heme ABC transporter 1.47698784763e-06 6.3988827649e-06 1987029376.54 +UniRef50_E1PY25 1.15793248112e-06 3.0632883327e-05 11899399354.8 +UniRef50_W6R6D1 3.66191644304e-08 5.24363577465e-08 6385595.0405 +UniRef50_M0DCT7 ABC transporter 1.70001773494e-06 2.20143564313e-06 202428562.626 +UniRef50_A1TM37 Adenylosuccinate synthetase 8.4201052194e-08 1.48190700826e-07 25833406.394 +UniRef50_C7ND01 Diphosphomevalonate decarboxylase 4.65935712518e-06 1.88099812232e-06 -1121657623.75 +UniRef50_A6LU62 2.5679318969e-06 4.17900997911e-06 650411991.939 +UniRef50_A3PMY6 ABC transporter related 2.27250364417e-05 8.37480395854e-06 -5793364950.62 +UniRef50_R6SI27 MATE family multi antimicrobial extrusion protein 3.23989112238e-06 1.26778811233e-05 3810232380.53 +UniRef50_K9GVE2 Flp pilus assembly protein TadB 1.04393563199e-06 2.08546251968e-07 -337256944.095 +UniRef50_UPI000464BD2D hypothetical protein 9.46996333261e-08 5.1657024994e-08 -17376829.1759 +UniRef50_UPI0004702CEA UDP diphosphatase 3.5680475922e-07 2.49229883237e-07 -43429297.5265 +UniRef50_K6DGD7 1.44486421937e-06 4.85375355443e-07 -387357428.62 +UniRef50_Q6GIU7 Quinolone resistance protein NorA 0.000179421536492 5.16981772652e-05 -51563487461.8 +UniRef50_D9SRN1 Cation diffusion facilitator family transporter 2.94339764276e-06 1.28103038671e-05 3983391123.32 +UniRef50_B0BXC2 Holliday junction ATP dependent DNA helicase RuvA 1.39302050565e-07 1.10428037697e-07 -11656793.3188 +UniRef50_UPI0003592A52 PREDICTED 3.64537532825e-07 5.72209603517e-07 83839763.3612 +UniRef50_F8LQS7 3.69522145188e-05 2.56434807235e-05 -4565474606.93 +UniRef50_UPI00047D9DA7 membrane protein 2.80203427805e-07 1.99766895275e-07 -32473215.2496 +UniRef50_G7M6Q3 Lysophospholipase 1.15556935367e-06 8.6050984064e-06 3007466294.59 +UniRef50_UPI00034C319E hypothetical protein 1.50171477598e-05 5.48501996132e-06 -3848236964.61 +UniRef50_B0KR46 N succinylarginine dihydrolase 5.48156161458e-05 0.000100844671499 18582494486.1 +UniRef50_UPI000360EE81 hypothetical protein, partial 4.76070088473e-05 9.93782766318e-06 -15207510696.9 +UniRef50_UPI000373527A hypothetical protein, partial 6.57580309844e-08 1.80891701378e-06 703734672.323 +UniRef50_UPI000273E344 1.75723901069e-07 2.06515178457e-06 762785222.456 +UniRef50_UPI0003B4641B tRNA delta isopentenylpyrophosphate transferase 5.85922950512e-08 6.47617179033e-08 2490671.71272 +UniRef50_P65858 tRNA pseudouridine synthase B 4.72598894426e-05 2.28511505579e-05 -9854107416.66 +UniRef50_A6LF29 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.12815880732e-07 4.85591010407e-07 150493894.315 +UniRef50_W0Z6N6 Rhs element Vgr protein 1.3950637452e-07 2.8895959412e-07 60336098.7498 +UniRef50_Q49UP7 9.86091429104e-06 1.07946332005e-06 -3545179517.51 +UniRef50_E4A2Y9 1.20843330125e-06 3.33756487901e-06 859556545.324 +UniRef50_Q3JRD1 4.77007516841e-08 1.3897682051e-08 -13646714.0212 +UniRef50_Q65UG3 Zinc import ATP binding protein ZnuC 1.83482592107e-07 6.27546989148e-08 -48739331.9795 +UniRef50_C6SJL2 Glutaminyl tRNA synthetase 1.01839745189e-06 9.38655064242e-06 3378326131.8 +UniRef50_Q6FFB2 Argininosuccinate lyase 2.76989087549e-06 9.1263797547e-05 35726076065.6 +UniRef50_O67691 Phosphoribosylformylglycinamidine synthase 2 1.32131126277e-07 2.42464281413e-08 -43554376.5316 +UniRef50_Q1I3E4 4.01668764398e-07 9.58809611391e-07 224924596.818 +UniRef50_I3DVS9 Ribosylpyrimidine nucleosidase 8.61534528749e-08 4.07296790408e-07 129649506.234 +UniRef50_A5UKN8 Formate dehydrogenase, iron sulfur subunit 2.78333064957e-05 3.53672700827e-06 -9808827291.62 +UniRef50_A0A029LKQ2 Transposase IS66 family protein 1.65370147268e-07 3.4898894268e-07 74129160.9638 +UniRef50_I0BK74 Transcriptional regulator 1.47647714023e-06 7.67527508587e-06 2502530798.46 +UniRef50_UPI0004281C6D hypothetical protein 8.78828452901e-08 2.66158836521e-08 -24734224.2434 +UniRef50_UPI0004776DB1 hypothetical protein, partial 2.51637073451e-07 1.01320463775e-06 307454171.192 +UniRef50_Q3JKK7 9.83702684725e-07 3.51928292478e-06 1023644857.98 +UniRef50_Q5F973 Phosphoribosylformylglycinamidine cyclo ligase 0.000258141219175 0.000179972795609 -31557551828.0 +UniRef50_M9S656 Short chain dehydrogenase 1.89691451679e-06 1.45539612703e-05 5109805093.82 +UniRef50_Q48P72 Acyl CoA dehydrogenase family protein 3.27102125375e-06 5.23577800771e-06 793196411.85 +UniRef50_J1KAC8 7.73985994521e-05 2.72877465217e-05 -20230366257.3 +UniRef50_D3E112 Polysaccharide biosynthesis protein 1.35832960428e-05 1.66877178344e-05 1253293172.81 +UniRef50_UPI000443C5AC PREDICTED 5.08267091565e-08 5.92579757507e-07 218712353.676 +UniRef50_P64634 Putative DNA utilization protein HofN 2.12070780251e-06 2.92405338383e-05 10948606568.3 +UniRef50_UPI0003B6BEF2 3 dehydroquinate dehydratase 7.33240170063e-07 6.43211608159e-07 -36345635.2153 +UniRef50_X6KT46 7.1725400588e-07 8.1206852571e-07 38277785.1604 +UniRef50_A7FFL7 Protein NrdI 2.00179836386e-07 6.50117522155e-07 181645365.101 +UniRef50_UPI000381D661 hypothetical protein 5.20169759313e-08 3.01022016333e-07 100526390.446 +UniRef50_UPI00031610FF hypothetical protein 6.30823079966e-08 3.16510609459e-07 102312115.215 +UniRef50_W8AT56 Putative transposase, IS630 family 3.33182604122e-07 4.64386041358e-06 1740273529.64 +UniRef50_UPI0003B5E3DD GTPase Era 6.86347782843e-08 8.35234719837e-07 309485803.644 +UniRef50_A3VZS1 1.84528921436e-07 6.18775269702e-08 -49515873.0478 +UniRef50_P21893 Single stranded DNA specific exonuclease RecJ 3.41374718866e-05 6.26122744708e-06 -11253981960.2 +UniRef50_W6RJG6 8.70158500796e-08 1.69582412709e-07 33333134.5391 +UniRef50_Q5HDD6 Gamma hemolysin component A 0.000287295199174 4.55629671131e-05 -97590268471.1 +UniRef50_UPI0002F9333F hypothetical protein 4.14411895905e-08 1.20072126175e-07 31744274.0093 +UniRef50_Q3IV09 O acetylhomoserine sulfhydrylase 0.00022417953824 4.00494112946e-05 -74335591778.4 +UniRef50_A4VNQ6 Long chain fatty acid CoA ligase 8.44313373164e-06 7.28833268361e-06 -466207354.092 +UniRef50_UPI00046FBE0E purine nucleoside phosphorylase 2.07941840203e-07 9.29909893461e-07 291467362.645 +UniRef50_UPI00016C0F2D oligopeptide transport system permease protein 4.9244683723e-08 4.50967561077e-08 -1674569.27909 +UniRef50_V4RCH7 2.08972145252e-07 2.84080852529e-07 30322306.8152 +UniRef50_W8RY81 ATP phosphoribosyltransferase regulatory subunit 3.76530714836e-06 2.59429023591e-06 -472753897.55 +UniRef50_F9JWB9 Tandem lipoprotein 4.10940930017e-07 5.05991465309e-07 38373067.4986 +UniRef50_W7Q3C9 2.5314171067e-07 9.84306664612e-07 295180264.309 +UniRef50_Q9RSL6 Molybdate metabolism regulator related protein 1.18581986021e-06 0.000339540040705 1.36597751028e+11 +UniRef50_Q89DJ1 Ribose phosphate pyrophosphokinase 7.83753989287e-05 2.62088552144e-05 -21060273852.9 +UniRef50_V5SZD4 Chemotaxis protein 7.13818312355e-06 6.67165698207e-06 -188342328.235 +UniRef50_P31069 Voltage gated potassium channel Kch 2.70026405514e-05 1.76148646986e-05 -3789960312.74 +UniRef50_UPI00037DB293 glutaredoxin, partial 1.54490156105e-06 1.29934472292e-06 -99134308.8743 +UniRef50_X3EPV1 1.74051061113e-07 2.42703907175e-07 27715996.4204 +UniRef50_N6UFE0 4.08838834928e-07 3.47020118898e-06 1235909549.47 +UniRef50_A5ULK1 Adenine deaminase 3.01534187372e-05 5.49811784091e-06 -9953647526.4 +UniRef50_K8EIP5 Radical SAM superfamily protein 5.06574266553e-05 1.22666056066e-05 -15498845565.7 +UniRef50_UPI0001CE17CF PREDICTED 4.57914633382e-08 3.7486955631e-08 -3352631.66917 +UniRef50_A8LML0 Major facilitator superfamiy transporter 8.04211490641e-05 2.48969110144e-05 -22415816259.7 +UniRef50_D8UEV7 3.77171590964e-08 4.8541817855e-07 180742395.463 +UniRef50_Q49ZY7 2.28693613597e-05 4.19304919855e-05 7695212340.01 +UniRef50_Q8FP91 Probable malate 3.07473975058e-08 1.03634110099e-07 29425260.2944 +UniRef50_D3E2A1 Adhesin like protein 9.04497122279e-10 2.28645810921e-09 557914.608992 +UniRef50_C6M427 1.771428932e-06 1.31784323675e-05 4605147266.58 +UniRef50_B0VBR0 1.22767796998e-07 5.4060114159e-05 21775168612.0 +UniRef50_F2HSU2 2.05600681968e-06 2.89162496845e-06 337349300.846 +UniRef50_UPI00037460BA hypothetical protein 3.44723354045e-06 3.11406016025e-06 -134506182.084 +UniRef50_UPI00046ED203 hypothetical protein 3.42862577594e-08 2.7790672943e-07 98352573.973 +UniRef50_Q5HHH0 Probable cysteine desulfurase 0.000135115519945 3.25912101124e-05 -41390321994.3 +UniRef50_K0LZ01 Aminoacylase 0.000154030767049 1.26939282875e-05 -57059416205.9 +UniRef50_O05158 PAGS 5 5.42398282029e-05 4.53379909403e-06 -20066933912.8 +UniRef50_UPI00036B729E hypothetical protein 1.31138581793e-07 1.63627005533e-07 13115975.3416 +UniRef50_UPI0001CBAA68 PREDICTED 1.35280573419e-07 1.11812774006e-07 -9474238.60531 +UniRef50_UPI000476A0F0 hypothetical protein 8.08136948849e-08 1.26264849105e-06 477121209.958 +UniRef50_UPI000225A96D DNA replication and repair protein 6.77785150383e-08 9.36341710742e-08 10438245.6263 +UniRef50_I3TRT4 1.27970421916e-07 4.0302512434e-07 111042958.669 +UniRef50_A3PS72 0.000321057999872 0.000247517978237 -29689009171.6 +UniRef50_D0D1V0 ISSpo9, transposase 3.22852848804e-06 5.27379461516e-08 -1282105613.09 +UniRef50_E1RJD9 Radical SAM domain protein 3.66313905256e-05 1.1019615324e-05 -10339787940.7 +UniRef50_P56480 ATP synthase subunit beta, mitochondrial 2.10459577151e-07 6.5573744164e-08 -58492188.726 +UniRef50_UPI0003663FE6 hypothetical protein 7.5032212379e-08 3.04894990675e-07 92798424.3316 +UniRef50_Q1CT84 Outer membrane lipoprotein carrier protein 2.05155428724e-06 1.4441743997e-05 5002071630.57 +UniRef50_UPI0003B62AA1 MULTISPECIES 6.75688760049e-08 5.76319452037e-07 205388850.616 +UniRef50_Q74I98 tRNA ) methyltransferase 0.000174224187073 5.94022313677e-05 -46355032542.0 +UniRef50_UPI0002629E92 molybdenum cofactor biosynthesis protein 7.3835195362e-08 2.64159803486e-08 -19143719.0001 +UniRef50_R4ZNC7 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 4.77843286018e-06 1.44644916828e-06 -1345162704.46 +UniRef50_UPI00036F9B44 hypothetical protein, partial 6.15284834845e-08 1.22263262076e-07 24519375.4169 +UniRef50_Q0BGD7 Putative ribose galactose methyl galactoside import ATP binding protein 1 1.24595346227e-07 1.93302950253e-07 27738102.8824 +UniRef50_T2EKK2 Type I restriction modification DNA specificity domain protein 1.11828402562e-05 1.70211357467e-06 -3827485702.93 +UniRef50_B4RVP1 Lipoprotein signal peptidase 8.20562129306e-08 3.22802041214e-07 97192045.1614 +UniRef50_Q2YYZ8 UPF0060 membrane protein SAB2216c 3.05000736918e-05 1.9978107061e-05 -4247847047.9 +UniRef50_B5F8H0 Glutathione regulated potassium efflux system ancillary protein KefG 6.88455291034e-05 9.6825149244e-06 -23884834835.9 +UniRef50_UPI000374D55A MULTISPECIES 3.59359338876e-07 1.53745336461e-05 6061810124.73 +UniRef50_A0A024JQ60 Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Fragment) 2.30009104127e-07 5.05836967834e-07 111355093.367 +UniRef50_A6LWE1 Multi sensor hybrid histidine kinase 3.4557873077e-06 5.86993701942e-06 974621863.57 +UniRef50_G7LY47 Multi sensor signal transduction histidine kinase 6.45275194619e-07 1.94883387429e-05 7607175984.84 +UniRef50_D3P6U6 ATP dependent helicase Lhr and Lhr like helicase 0.000143689982943 4.73817093866e-05 -38880831870.1 +UniRef50_C4ZIQ5 Transcriptional regulator, BadM Rrf2 family 1.8870070735e-07 2.5112341999e-07 25200815.1056 +UniRef50_UPI0003B7698F hypothetical protein 1.08765144268e-07 2.0407747564e-07 38478757.7887 +UniRef50_UPI00046423BB MULTISPECIES 5.87092710625e-07 2.23733678578e-07 -146692500.154 +UniRef50_P0AAC5 Inner membrane protein YbhL 2.18575393679e-05 2.78728730773e-05 2428464034.93 +UniRef50_Q67JV0 50S ribosomal protein L16 0.000206450779195 0.000136209186424 -28357392962.9 +UniRef50_S3XCS7 5.50306351345e-08 7.55404738801e-07 282749620.207 +UniRef50_Q89AM3 Adenylosuccinate lyase 2.75143678314e-08 9.59641371305e-08 27634011.8392 +UniRef50_K0RMT8 2.3883482039e-07 4.35249437589e-07 79294991.2416 +UniRef50_C7ZXZ9 0.000146302537775 1.7738603728e-05 -51902837831.7 +UniRef50_UPI0002D7A7D9 hypothetical protein 4.75934573618e-07 9.43348172102e-07 188700605.518 +UniRef50_Q6G7M7 D alanine D alanine ligase 0.000183743927206 5.29793732398e-05 -52791255097.6 +UniRef50_A5ULE1 Phosphoribosylformylglycinamidine synthase related protein 2.52084535205e-05 4.37318496723e-06 -8411453592.46 +UniRef50_Q46856 Alcohol dehydrogenase YqhD 1.64692097917e-05 3.30937667248e-05 6711537640.15 +UniRef50_Q4JIU1 1.1083265784e-06 1.27192495205e-07 -396095869.255 +UniRef50_B6YWH0 Glyoxylate reductase 0.000108289555712 8.88291245996e-06 -40131681737.5 +UniRef50_T2HA74 Polysaccharide biosynthesis protein WbpM 7.40280554145e-06 1.82443948742e-06 -2252054830.26 +UniRef50_Q9I4V0 Nitronate monooxygenase 3.82129693134e-06 2.71763839138e-06 -445560495.995 +UniRef50_UPI00021A5C77 PREDICTED 1.06611313742e-07 5.88649092397e-08 -19275809.4118 +UniRef50_UPI0001AF28DC putative NRPS 8.88131607553e-08 1.70972538076e-06 654382154.044 +UniRef50_P0AC61 Glutaredoxin 2 2.71683729835e-05 7.4138084986e-06 -7975160098.32 +UniRef50_B2THH4 HDIG domain HD domain protein 5.9784359491e-06 4.44841180885e-05 15545216397.5 +UniRef50_H7QP44 Thioesterase superfamily protein 7.55819453827e-06 3.32508871333e-06 -1708956767.58 +UniRef50_F7ZCY2 High affinity branched chain amino acid transport system permease protein 6.15122281328e-05 2.49991667745e-05 -14740770936.0 +UniRef50_A5IQI7 Iron dependent repressor 0.000232660925804 7.68758985763e-05 -62892327189.2 +UniRef50_UPI000479C12C hypothetical protein 6.02602611344e-08 6.90276423422e-07 254345255.883 +UniRef50_U3QQX1 C4 dicarboxylate ABC transporter 3.8443589434e-08 1.00981124681e-07 25247170.4011 +UniRef50_Q8XHH1 Prolipoprotein diacylglyceryl transferase 2 9.25760004832e-06 1.64255456126e-05 2893787584.88 +UniRef50_UPI000371D403 hypothetical protein 1.4740653753e-07 2.14141258889e-07 26941625.9397 +UniRef50_UPI00036A9BE8 hypothetical protein, partial 2.94180246904e-08 1.6815662466e-07 56010475.322 +UniRef50_T5YMK1 Putrescine aminotransferase 2.72278290666e-06 1.54886383839e-06 -473925533.468 +UniRef50_A6X0F3 Glutathione S transferase domain protein 2.64457427067e-05 8.54494036845e-06 -7226773571.52 +UniRef50_P0AAS6 3.01479302705e-05 7.70104003268e-06 -9062085043.32 +UniRef50_A1B5Z0 UPF0042 nucleotide binding protein Pden_2850 7.00874022664e-05 7.94654133621e-06 -25087028111.6 +UniRef50_P76221 TVP38 TMEM64 family inner membrane protein YdjZ 1.55573092963e-05 5.10634072383e-06 -4219184260.52 +UniRef50_UPI000464FB5D hypothetical protein 2.37132667756e-06 4.09555212804e-07 -791991213.967 +UniRef50_E7I7N1 Cryptic beta glucoside bgl operon antiterminator 9.54801304345e-06 4.00882405239e-06 -2236238569.18 +UniRef50_V4JK35 1.97016763895e-05 1.73886185593e-06 -7251808655.74 +UniRef50_UPI00040B5335 peptide ABC transporter ATP binding protein 8.69241183796e-08 3.43539528549e-07 103598790.11 +UniRef50_Q49UZ0 Orn Lys Arg decarboxylase family protein 0.000202895657818 5.87962248506e-05 -58174709387.7 +UniRef50_J7GCQ9 2.56455449198e-05 9.57397270738e-06 -6488290922.51 +UniRef50_V5V9H0 SAM dependent methyltransferase 2.59143699447e-06 5.88214827094e-05 22700759475.4 +UniRef50_Q8ESX1 Rhamnulokinase 2.80994464564e-06 1.64436613851e-05 5504098752.25 +UniRef50_Q7MDH6 Sugar phosphate permease 0.000238094070165 4.86401042311e-05 -76484890909.2 +UniRef50_U5T5B4 8.64431759734e-06 2.96617766466e-05 8485006131.43 +UniRef50_L5TAD4 9.98448045177e-07 5.35886123772e-06 1760352314.12 +UniRef50_T9KFG8 Phage protein 1.04748831144e-05 6.25584547041e-06 -1703277270.29 +UniRef50_Q0TD54 Glutamate ammonia ligase adenylyltransferase 1.2656267177e-05 1.33808174176e-06 -4569290349.94 +UniRef50_D5AQD8 6.7804990909e-07 2.21095397275e-07 -184478143.882 +UniRef50_K1YSK2 6.12396331385e-07 1.1110249862e-06 201302506.81 +UniRef50_W0H8V7 GGDEF domain EAL domain protein 7.82519312829e-06 4.42905096598e-06 -1371064266.28 +UniRef50_Q9HXI1 Protein translocase subunit SecD 6.43077416886e-06 2.65285813075e-05 8113731369.68 +UniRef50_UPI0003B4F453 uridine cytidine kinase 1.18723353037e-07 3.85310012767e-07 107624305.919 +UniRef50_UPI00037F9CB9 hypothetical protein 3.87295067252e-07 2.16620761222e-06 718168824.116 +UniRef50_UPI00047891B3 hypothetical protein 1.57924934525e-06 6.08227769029e-07 -392013326.095 +UniRef50_G2FHS7 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 5.40513820837e-08 8.43963892416e-08 12250651.7648 +UniRef50_Q6GEF4 Protein FdhD homolog 0.00016648549859 2.92836153648e-05 -55390083914.4 +UniRef50_D2QKI4 AMP dependent synthetase and ligase 9.13356729407e-06 2.42506213982e-06 -2708305853.39 +UniRef50_UPI000377E954 hypothetical protein 6.0421387367e-08 3.28961181655e-07 108412810.308 +UniRef50_S9SK01 1.61523697842e-07 2.53453578297e-07 37113220.8462 +UniRef50_Q8NMT1 Uronate isomerase 1.03021610202e-07 2.22559137301e-07 48258766.5803 +UniRef50_Q8DSG4 Aspartyl glutamyl tRNA amidotransferase subunit C 1.24987846965e-05 7.4138084986e-06 -2052867290.77 +UniRef50_B4F1G9 Argininosuccinate lyase 4.75591485511e-07 1.20014105834e-07 -143550951.601 +UniRef50_UPI0003592D1E PREDICTED 4.77048258149e-08 1.15095785661e-07 27206557.4699 +UniRef50_UPI000317A305 hypothetical protein 3.21737431657e-06 1.35637366249e-06 -751308801.098 +UniRef50_Q6FEF0 2.25589236365e-06 6.33991003753e-05 24684263385.9 +UniRef50_P07024 Protein UshA 1.5439512631e-05 2.27167628864e-06 -5316017118.95 +UniRef50_UPI000381BCCD hypothetical protein 2.88109959191e-07 6.66095275099e-07 152597310.433 +UniRef50_A1WG04 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.000149789830921 3.15943209358e-05 -47716977803.0 +UniRef50_Q6FEF8 7.86429143391e-07 5.79589388412e-05 23081243750.6 +UniRef50_M1MKU0 5.13241402379e-06 9.3852908226e-06 1716938552.35 +UniRef50_D5AT19 4.63438560633e-08 4.73956676633e-08 424629.2501 +UniRef50_W0M3M5 RNA pseudouridine synthase family protein 1.74322341986e-07 9.11896896221e-07 297767898.602 +UniRef50_UPI000472066C hypothetical protein 2.77891824027e-07 1.15261445221e-07 -65655879.6232 +UniRef50_R7N6I1 Thiamine pyrophosphate protein domain protein TPP binding 6.86754376362e-07 1.03036665919e-05 3882465474.2 +UniRef50_W5LSB3 3.75221782819e-07 9.3547261122e-07 226180134.476 +UniRef50_UPI00047AC46D hypothetical protein 3.80168977992e-07 7.45856714779e-07 147632626.834 +UniRef50_A3W953 1.90085568398e-06 1.22538051944e-06 -272697612.937 +UniRef50_G2T956 Thioesterase superfamily protein 9.66680118566e-08 6.04595219791e-06 2401799031.84 +UniRef50_A4WT88 Autoinducer binding domain protein 4.48971747239e-05 1.58544849517e-05 -11724890254.9 +UniRef50_Q883F3 Urease subunit gamma beta 2.07467420505e-06 0.000257169777574 1.02985023599e+11 +UniRef50_G8VJT5 Lysophospholipase 1.93823857275e-07 1.53978666532e-06 543381702.427 +UniRef50_UPI0004638C41 D alanyl D alanine carboxypeptidase 7.93593623542e-08 1.24220730052e-07 18111084.6505 +UniRef50_UPI00038F7D5E Allantoinase 9.98666050696e-08 1.39260278478e-07 15903709.3697 +UniRef50_B4T534 Isopentenyl diphosphate Delta isomerase 9.03556888214e-06 1.17107907278e-05 1080019887.76 +UniRef50_M1MET0 Cell wall binding repeat containing protein 3.6550513354e-06 1.39822002058e-05 4169196727.35 +UniRef50_W6M800 1.84503154394e-07 3.54459088754e-07 68613296.295 +UniRef50_Q9RYT6 TDP glucose 4,6 dehydratase related protein 4.40012030796e-06 0.000311743831295 1.24078427657e+11 +UniRef50_O85342 Mannose 1 phosphate guanylyltransferase 2 2.13623819176e-07 1.10212775562e-07 -41748307.3032 +UniRef50_F0QHU9 Lipid A phosphoethanolamine transferase, associated with polymyxin resistance 3.06490256408e-06 5.4900629274e-05 20926718968.7 +UniRef50_W8V286 Beta hydroxyacyl ACP dehydratase 1.08741288248e-07 3.23312192553e-07 86624907.149 +UniRef50_Q8XRC2 UPF0271 protein RSp0936 1.2512724306e-05 8.35377675494e-05 28673681532.7 +UniRef50_UPI000470CB6A hypothetical protein, partial 1.26733500137e-07 3.1825497064e-07 77319567.8748 +UniRef50_V9QR17 GntR family transcriptional regulator 1.90857951352e-05 5.09166733097e-06 -5649601121.81 +UniRef50_S5XZH4 Replication protein C 1.84642246177e-06 3.13422065627e-07 -618891071.952 +UniRef50_S2ZMR6 1.02866352819e-07 3.0152447036e-07 80200719.8605 +UniRef50_P42604 Altronate dehydratase 3.13392792794e-05 6.40670936184e-05 13212620264.1 +UniRef50_UPI0004081C8A ABC transporter ATP binding protein 1.20953506588e-07 9.49766499023e-07 334601975.725 +UniRef50_UPI00037C4CDF hypothetical protein 2.53745218018e-07 2.88784410243e-07 14145751.8805 +UniRef50_A0A035VXH8 9.67583739845e-06 1.98724759845e-06 -3103978051.87 +UniRef50_UPI0002F80216 ABC transporter ATP binding protein 2.08447367061e-08 5.05992499922e-08 12012262.1425 +UniRef50_UPI00036DADFE hypothetical protein 6.97208023748e-06 2.51333366122e-06 -1800050707.81 +UniRef50_UPI0003FA02C9 hypothetical protein 1.97810536707e-07 7.8648812496e-07 237656366.264 +UniRef50_Q67N85 L threonine 3 dehydrogenase 7.19269073162e-08 5.21037960824e-07 181311643.514 +UniRef50_P70971 2.20248668497e-07 6.30162755622e-07 165487347.184 +UniRef50_Q6SSE6 Plus agglutinin 3.68410569987e-08 2.91717431202e-07 102896719.951 +UniRef50_Q8YI99 Pyrazinamidase nicotinamidase 1.33796852055e-05 1.35133707812e-05 53970507.4166 +UniRef50_B7V5U6 2.59035845508e-06 4.27013063902e-06 678144643.779 +UniRef50_M3VMM8 Insoluble matrix protein 1.43744135852e-07 2.9879449446e-07 62595732.4519 +UniRef50_Q8CT01 9.02546522588e-05 4.17425620137e-05 -19584926142.2 +UniRef50_T5MN46 Inner membrane amino acid ABC transporter permease yhdY 1.54496311943e-06 2.33451940873e-06 318753562.936 +UniRef50_G7ZNW2 0.000154060712507 4.75080998459e-05 -43016597278.8 +UniRef50_Q28RH4 4.54887226161e-06 1.77734319615e-05 5338917034.45 +UniRef50_Q2W825 Predicted transcriptional regulator 1.48174061495e-06 2.25362641568e-07 -507215205.345 +UniRef50_C6S923 Thiol 1.75606438739e-05 4.50851826651e-05 11111994074.1 +UniRef50_UPI0004449CBD SKN1 domain containing protein 1.43157328522e-08 1.00999994179e-07 34995500.0331 +UniRef50_B2J5F8 Malate dehydrogenase 2.88278501439e-07 7.66585811992e-08 -85433558.6693 +UniRef50_UPI00036B8B42 hypothetical protein 4.34231434949e-07 1.20113109164e-07 -126813422.785 +UniRef50_P30847 Signal transduction histidine protein kinase BaeS 2.83913936315e-05 1.10697990601e-05 -6992940288.34 +UniRef50_N4UTL9 5.23658787645e-06 2.27775885127e-06 -1194515586.38 +UniRef50_UPI0002375E1A epimerase 1.376674116e-06 3.05813491483e-07 -432319575.056 +UniRef50_H8GXK1 Coenzyme F390 synthetase FtsA 2.00579423501e-07 3.46570489416e-06 1318171220.1 +UniRef50_A5IVA2 Bile acid 7.95558545244e-05 3.35820270768e-05 -18560198302.9 +UniRef50_Q83MN8 Chromosome partitioning protein ParA 5.55397165518e-08 7.68949897227e-08 8621385.83776 +UniRef50_Q1IWN0 Carbamoyl phosphate synthase small chain 3.01118567589e-06 0.000550800785935 2.21149383759e+11 +UniRef50_P0AFN8 Inner membrane transport permease YadH 2.44864436126e-05 1.23289537138e-05 -4908127861.32 +UniRef50_P0AD69 Peptidoglycan synthase FtsI 2.61793849627e-05 5.67080351345e-06 -8279565999.64 +UniRef50_Q931T2 0.000122302880241 2.5435732345e-05 -39106456299.2 +UniRef50_UPI0004769FCE hypothetical protein 4.97505730809e-08 1.57074115725e-07 43327831.1734 +UniRef50_Q7UKI3 Succinyl CoA ligase [ADP forming] subunit beta 1.4845285354e-05 6.06322096462e-06 -3545427162.04 +UniRef50_Q9PQK7 CTP synthase 2.94704100442e-08 4.09975345587e-08 4653641.62023 +UniRef50_Y1DSI1 Nitrite extrusion protein 1 6.58300129118e-07 3.9422910718e-07 -106608712.072 +UniRef50_W0RI86 von Willebrand factor type A 1.43895548483e-06 0.000610781603149 2.45999104337e+11 +UniRef50_Q6GDQ8 Holin like protein CidB 0.000259488486569 7.96754149783e-05 -72592743555.8 +UniRef50_Q9RVB8 Transcriptional regulator, MerR family 1.98676836238e-05 0.000381449868971 1.45975165337e+11 +UniRef50_D0IUG7 Type III R M system restriction enzyme 1.707555879e-06 4.75460780327e-05 18505573895.4 +UniRef50_N1M5F6 1.47343818849e-06 2.66370749727e-06 480526326.201 +UniRef50_U3SRF9 6.66151745035e-06 1.67160399168e-05 4059134102.55 +UniRef50_X3EWC3 1.32467294272e-07 6.33690691732e-08 -27895801.403 +UniRef50_D7A0M4 Short chain dehydrogenase reductase SDR 8.77924111885e-05 8.72234390519e-06 -31921556461.1 +UniRef50_Q1NBV4 1.10871202587e-05 4.34268147368e-07 -4300687122.53 +UniRef50_C0MBF3 Energy coupling factor transporter transmembrane protein EcfT 5.64031534735e-05 4.52306164188e-05 -4510490311.43 +UniRef50_D4HEP8 Sugar binding domain protein 1.11572213456e-06 4.86377036047e-05 19185207079.8 +UniRef50_UPI000363A6EC hypothetical protein 2.98388335005e-08 3.6893903618e-07 136898913.049 +UniRef50_UPI00037796C2 hypothetical protein 2.89873871077e-07 1.03616020415e-07 -75194579.9531 +UniRef50_Q58158 Type A flavoprotein FprA 6.97409339168e-05 1.28788814155e-05 -22955908370.6 +UniRef50_C2R4M4 Phage infection protein 2.700486933e-08 1.8829256746e-08 -3300595.12621 +UniRef50_M9VCW9 Proteasome subunit beta 3.52790643786e-06 2.41366787056e-05 8320014262.55 +UniRef50_U5VGF8 1.42987116986e-06 5.81565935203e-06 1770596508.82 +UniRef50_Q2JLL9 LL diaminopimelate aminotransferase 4.20088824962e-05 4.87632106739e-05 2726805170.26 +UniRef50_Q8FMN9 Phosphate import ATP binding protein PstB 1.38779177283e-07 3.32644324494e-06 1286899101.15 +UniRef50_Q2G260 0.000111926408092 3.10509037974e-05 -32650433537.8 +UniRef50_W4S5W1 Translation initiation inhibitor 1.01692942466e-06 1.65651161136e-06 258207177.327 +UniRef50_M5T1U6 Permease large protein, C4 dicarboxylate transport system 4.41260130784e-07 1.60643652507e-07 -113288315.832 +UniRef50_Q0TNA9 Protein methyltransferase, release factor specific 2.65022765889e-06 1.04215524505e-05 3137379183.25 +UniRef50_P0A2C8 Spermidine putrescine binding periplasmic protein 2.99187353789e-05 2.34688772347e-06 -11131093243.1 +UniRef50_G6CLR5 1.35237877262e-07 4.41822506859e-07 123771977.185 +UniRef50_D8U8L9 2.56811730167e-07 7.825235028e-07 212236293.821 +UniRef50_B7H0C7 AraC like ligand binding domain protein 2.80936493587e-06 5.5995603536e-05 21471937191.4 +UniRef50_UPI0004671146 hypothetical protein 2.64411489676e-07 5.35062801878e-08 -85145021.1683 +UniRef50_Q47163 Type I restriction enzyme EcoprrI M protein 4.89734158324e-05 5.79547465568e-05 3625873426.76 +UniRef50_Q4L635 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000198611736033 4.73540929011e-05 -61064566672.4 +UniRef50_U3SR89 Tellurite resistance protein TehB 3.66285990988e-05 1.33839258884e-05 -9384159819.26 +UniRef50_UPI00047D168D amino acid permease 2.46105033951e-07 5.28461779285e-07 113990882.998 +UniRef50_UPI00046D0817 hypothetical protein 5.10636954303e-07 3.66510568241e-07 -58185590.6829 +UniRef50_Q4L3Y7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 5.64789907553e-05 9.83595794895e-06 -18830364718.3 +UniRef50_T2EA26 Methyltransferase domain protein 2.83945806736e-05 2.39439423374e-05 -1796777311.8 +UniRef50_X1QW39 Marine sediment metagenome DNA, contig 1.05202302099e-06 2.46626196089e-06 570945614.701 +UniRef50_E0NML2 Transcriptional regulator, PadR family 8.66901159514e-07 2.35070981275e-07 -255077596.383 +UniRef50_D0JDL8 Ribonucleoside diphosphate reductase 2 alpha chain 3.81348963068e-07 6.02952176116e-05 24187963999.2 +UniRef50_UPI0003B62F85 damage inducible protein CinA 1.99272415598e-07 8.16656957218e-08 -47479276.0107 +UniRef50_Q6N6K5 Aliphatic sulfonates import ATP binding protein SsuB 3.89664261975e-05 1.77473358414e-05 -8566407164.28 +UniRef50_Q3K2F6 Fructose 1,6 bisphosphatase class 3 1.78127109519e-06 1.03317797734e-06 -302014371.811 +UniRef50_UPI0004158481 multidrug transporter 3.45771356581e-07 5.76813688346e-08 -116305463.315 +UniRef50_Q6GAW6 Argininosuccinate lyase 0.000122654042128 5.36687885828e-05 -27850193400.5 +UniRef50_Q07QW9 NADH quinone oxidoreductase subunit H 1 2.33150045958e-05 8.01684589787e-06 -6176054395.86 +UniRef50_F0Y0E3 Expressed protein 1.78850695994e-07 1.59963203925e-06 573586863.222 +UniRef50_W4UDN2 Maltose phosphorylase 4.72441474382e-06 7.60944279293e-05 28812950131.5 +UniRef50_M7TQJ9 2.89254899563e-08 1.00572915369e-08 -7617323.24074 +UniRef50_UPI000287CF8F thioredoxin 2.02419041673e-07 2.74146982525e-07 28957449.9228 +UniRef50_UPI00036E2E8C hypothetical protein, partial 4.89337402342e-06 4.83465119948e-07 -1780334340.0 +UniRef50_UPI0003800615 hypothetical protein, partial 4.75890717744e-06 3.25584313987e-06 -606805396.637 +UniRef50_UPI000479B301 hypothetical protein 7.36339304023e-08 2.13900097419e-07 56627172.8842 +UniRef50_I5ASV0 Anthranilate synthase component I 1.72051101113e-05 9.81332947463e-06 -2984152550.37 +UniRef50_F8FZ21 Acyl CoA synthetase 3.32794437405e-06 3.66523901933e-06 136169987.37 +UniRef50_J8HFC8 4.91411054244e-06 6.45934746829e-07 -1723114945.09 +UniRef50_U7JJA9 1.55021816583e-07 6.57876117424e-07 203008451.966 +UniRef50_UPI0003710DBF hypothetical protein 6.32855892977e-08 3.96347081498e-08 -9548150.94836 +UniRef50_Q71YR0 DNA ligase 0.000220782850341 6.52495408817e-05 -62790705636.9 +UniRef50_F0KGW3 3.23559419016e-05 3.91656799256e-05 2749174805.17 +UniRef50_Q3SMI5 Phosphoheptose isomerase 2.39696147082e-07 2.35092708847e-07 -1858464.50601 +UniRef50_Q05825 ATP synthase subunit beta, mitochondrial 2.83631546115e-06 5.64877390879e-05 21659738095.1 +UniRef50_UPI00047AF754 2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase 1.11076657223e-07 3.10322575173e-07 80438022.0988 +UniRef50_B4F0Z5 Cell division protein ZapD 1.9909416466e-05 3.93537816325e-05 7849928826.91 +UniRef50_R6FIZ1 2.62143047812e-06 3.45435819611e-05 12887364282.5 +UniRef50_UPI0001BF61D0 hypothetical protein SMAC_10790, partial 5.79136296957e-07 3.05510581239e-07 -110466059.2 +UniRef50_E2NSK7 1.44700467954e-07 5.35678710623e-06 2104183335.37 +UniRef50_A6F174 4.97127201061e-06 9.5440856542e-08 -1968432870.07 +UniRef50_Q75LR2 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 9.23534473397e-07 6.7368257392e-05 26824550010.7 +UniRef50_L0BJA1 2.61584803461e-06 1.32084978881e-05 4276382732.29 +UniRef50_E0R9G5 ABC type multidrug transport system protein 5.07023896072e-06 4.92565949362e-06 -58368505.0578 +UniRef50_UPI0003B6C406 3 oxoacyl ACP synthase, partial 1.86953739527e-07 5.83344361892e-07 160027758.509 +UniRef50_H5MQG0 Putative transport domain protein 1.08575814295e-05 6.04744106207e-06 -1941912693.39 +UniRef50_UPI0003665115 hypothetical protein 2.33658479595e-07 1.18268482351e-07 -46584357.8819 +UniRef50_E8SES7 0.000214601544789 9.51057482903e-05 -48241919425.0 +UniRef50_F4GHR3 Glutamate synthase 3.33686259254e-06 7.40169443101e-06 1641022494.29 +UniRef50_UPI0001744B3D possible HAD superfamily hydrolase 1.30415176251e-07 1.5114801142e-06 557552863.023 +UniRef50_E3EXE9 1.67253200754e-07 7.34209255833e-08 -37881240.9379 +UniRef50_UPI00037D9792 hypothetical protein 3.86101563685e-07 5.45383300156e-07 64303991.62 +UniRef50_P55785 Heptaprenyl diphosphate synthase component 2 3.85552455315e-07 4.23101809126e-07 15159134.9159 +UniRef50_U5WDI7 1.16628008914e-06 1.13408568086e-07 -425057153.234 +UniRef50_A1B739 3.99393433136e-08 5.96230132098e-08 7946539.08289 +UniRef50_A6LT02 RNA polymerase, sigma 24 subunit, ECF subfamily 8.36046935096e-06 3.33063953224e-06 -2030604020.77 +UniRef50_I4E1N1 3.62766682043e-05 3.37731875774e-05 -1010685850.24 +UniRef50_P36646 Protein transport protein HofC homolog 2.2147536356e-05 8.12052714213e-06 -5662875750.41 +UniRef50_UPI00018167BC putative redox regulated molecular chaperone heat shock like protein 1.65209891556e-07 1.43595343314e-07 -8726058.36563 +UniRef50_P55393 Putative replication protein A 0.000358742848444 5.31238549544e-05 -1.23382138039e+11 +UniRef50_UPI000363A7D4 hypothetical protein 2.45180147715e-07 2.54075172947e-07 3591030.84039 +UniRef50_B9KRZ0 AMP dependent synthetase and ligase 2.81051579798e-06 2.91053422665e-06 40378667.0182 +UniRef50_F9Z1W7 Acyl CoA thioesterase 2 4.86214821984e-06 7.61211321461e-05 28768126257.1 +UniRef50_Q9I692 7.73536862413e-07 2.97369481369e-06 888230763.906 +UniRef50_G2I8Q0 4.21980094491e-07 2.83023336403e-07 -56098548.4313 +UniRef50_UPI00046CEC40 hypothetical protein 2.71171961937e-06 1.64573219357e-06 -430352204.932 +UniRef50_O05103 HTH type transcriptional regulator MalR 1.83245625651e-06 1.70092504709e-05 6127058064.56 +UniRef50_P27294 Protein InaA 3.28990296069e-05 3.51022651577e-05 889473228.599 +UniRef50_UPI00037C8975 hypothetical protein 1.94321941732e-07 1.43256513695e-06 499893972.863 +UniRef50_Q3J6L3 Putative Pre type recombination enzyme 1.78065259978e-05 6.58668145238e-06 -4529588925.95 +UniRef50_C6KV56 UDP glucose pyrophosphorylase 2.83650970942e-05 4.26963911123e-06 -9727632072.26 +UniRef50_UPI0002880FB3 FAD dependent oxidoreductase 2.11162533447e-07 1.24399616847e-07 -35027254.1321 +UniRef50_UPI000362260F hypothetical protein 3.25354219129e-08 1.58916484676e-06 628430400.803 +UniRef50_A5UJF1 Geranylgeranylglyceryl phosphate synthase 1.19219032156e-05 1.20760424101e-05 62227884.3203 +UniRef50_Q0A6T1 Phosphoadenosine phosphosulfate reductase 3.86156438181e-07 2.08068915864e-07 -71896118.139 +UniRef50_C3PFR3 ATP synthase subunit alpha 0.000240277761545 0.000153294774359 -35116099328.3 +UniRef50_UPI0003F0E940 PREDICTED 4.51425535422e-07 4.42171335188e-07 -3736034.19627 +UniRef50_A4ELE1 Transcriptional regulator, LuxR family protein 1.03901544877e-06 1.4787896365e-06 177542236.223 +UniRef50_Q54431 Signal recognition particle protein 4.26226049327e-05 0.000108936639526 26771789530.0 +UniRef50_Q6N143 Acetate kinase 1.74198349438e-05 3.96684881891e-06 -5431135585.33 +UniRef50_UPI0003B5831F 3 phosphoshikimate 1 carboxyvinyltransferase 6.69884612869e-08 5.41171029246e-08 -5196325.32019 +UniRef50_UPI00046A2E06 hypothetical protein 1.1848347715e-07 1.97294892723e-06 748670459.047 +UniRef50_B8HW51 Urease subunit beta 8.33232234602e-07 4.10671373868e-07 -170593004.883 +UniRef50_UPI0004743F92 GMP synthase, partial 1.77844166674e-07 3.21860592347e-07 58141198.3245 +UniRef50_G8AZ63 1.01843620483e-06 1.59263612335e-06 231811553.332 +UniRef50_UPI00047CA294 ATP dependent DNA helicase PcrA 1.87357624206e-07 9.93293968501e-08 -35538075.6114 +UniRef50_A7ZV50 4.11475880512e-07 9.03496939694e-07 198634939.369 +UniRef50_R5EU95 Serine type site specific recombinase 5.34563921787e-08 1.22193134571e-06 471727677.54 +UniRef50_Q928B5 Thioredoxin reductase 0.000292537242529 0.000145177471353 -59490947931.5 +UniRef50_G0J229 Carbohydrate binding CenC domain protein 5.57223722826e-09 1.07856417584e-07 41293378.7778 +UniRef50_UPI00046D1393 transcription elongation factor GreA 1.83144151382e-07 3.04884210611e-07 49147955.8293 +UniRef50_Q8XCB3 Valine tRNA ligase 1.17339827899e-05 7.9733562092e-06 -1518211098.71 +UniRef50_A0A017SM38 1.97398119636e-07 6.29731471563e-07 174538279.5 +UniRef50_F9D1U7 Saccharopine dehydrogenase 5.06281391558e-06 0.000550079101617 2.20029763447e+11 +UniRef50_UPI000367DEE0 hypothetical protein 8.95315899716e-07 8.70618213898e-07 -9970758.83941 +UniRef50_Q07806 Penicillin binding protein 1A 7.90534358864e-06 3.00828421596e-06 -1977002962.43 +UniRef50_P11557 Protein DamX 3.61087114036e-05 1.25955078296e-05 -9492568822.28 +UniRef50_A1U6F9 4 hydroxythreonine 4 phosphate dehydrogenase 3.35240707976e-07 6.56985467164e-07 129892307.536 +UniRef50_UPI00035C0B1A hypothetical protein 5.67599645851e-08 2.81706251065e-08 -11541867.1782 +UniRef50_Q9FN42 ATP dependent Clp protease proteolytic subunit 2, mitochondrial 6.21149074774e-08 6.44156327244e-07 234977263.611 +UniRef50_Q49YA8 0.000119785947914 3.95184140683e-05 -32404988406.9 +UniRef50_F8K305 8.64963227569e-08 2.43773621366e-06 949224396.914 +UniRef50_A0A023YXD9 Anaerobic dimethyl sulfoxide reductase chain A 6.92634841923e-07 3.17587236346e-06 1002513460.2 +UniRef50_C4K9M3 NADH 1.8641364977e-06 8.22295439131e-05 32444501168.0 +UniRef50_UPI0004655D13 type VI secretion protein 6.13110916438e-08 8.61008234854e-08 10007918.9487 +UniRef50_UPI000479C70C hypothetical protein 4.58629542771e-08 1.5694018328e-07 44843240.4194 +UniRef50_P06131 Formate dehydrogenase subunit alpha 2.81948850349e-05 1.10971446987e-05 -6902567586.59 +UniRef50_D2U3Z3 1.98364621323e-07 8.58033498578e-07 266316420.795 +UniRef50_U5NMC4 0.000310048799419 4.2970219004e-05 -1.07822900336e+11 +UniRef50_A0A020LY90 4.02836358685e-07 2.67947791132e-06 919108132.334 +UniRef50_A5UL75 50S ribosomal protein L5 9.35517168202e-06 3.47431417872e-06 -2374174340.32 +UniRef50_Q9RSR5 Glycine tRNA ligase 7.56484947587e-07 0.000416666311895 1.67907900926e+11 +UniRef50_F0J7L0 1.5401192538e-06 7.17237333259e-07 -332207529.219 +UniRef50_P56900 Transketolase 7.53905414224e-05 0.000102792807092 11062630914.4 +UniRef50_M5FH04 4.20263226947e-07 7.04266987598e-08 -141233299.406 +UniRef50_D7AH61 4.21471842938e-07 1.97145795203e-07 -90563178.2608 +UniRef50_P39270 Inner membrane protein YjdF 3.29065740032e-05 9.50638432417e-06 -9446943726.03 +UniRef50_F4TUJ1 NADH quinone oxidoreductase subunit I 5.41797588994e-06 1.00946852693e-06 -1779768520.92 +UniRef50_I6S3Y4 4.17683559236e-06 9.3964145764e-07 -1306894997.03 +UniRef50_F5LY46 7.336089401e-05 3.39444488737e-06 -28246314095.7 +UniRef50_Q6A651 Putative pyruvate, phosphate dikinase regulatory protein 1.73689872173e-06 2.34292480256e-05 8757467609.04 +UniRef50_D9UMS0 Lipoprotein 3.77704423875e-07 1.81375126013e-06 579749730.075 +UniRef50_UPI00029A9C68 phenylacetate CoA ligase 9.43775428021e-08 1.46757795143e-06 554377856.028 +UniRef50_A6T5Z2 Putative glutamate cysteine ligase 2 5.03022649029e-05 4.52867913463e-06 -18479358279.7 +UniRef50_I0C5L3 Integral membrane protein 0.000178260243422 3.82954969333e-05 -56505485718.2 +UniRef50_UPI0003B39740 50S ribosomal protein L5 1.35128879021e-06 1.05622043206e-06 -119122717.081 +UniRef50_P77510 Sensor histidine kinase DpiB 3.90216362572e-05 1.75754268296e-05 -8658097920.51 +UniRef50_P37710 Autolysin 5.05033084919e-08 5.93141447913e-06 2374196006.48 +UniRef50_B1HUK4 Alanine tRNA ligase 0.000112107694589 1.92283739056e-05 -37496521517.3 +UniRef50_Q9K6G3 UPF0340 protein BH3766 0.000284885260525 6.30060159755e-05 -89575373788.9 +UniRef50_Q1GJP7 Urease subunit beta 8.73352489095e-07 3.16158949634e-07 -224945869.414 +UniRef50_UPI0000164CD8 hypothetical protein DR_0251 2.84598252313e-06 3.83419427424e-05 14330154724.9 +UniRef50_F0F251 2.39069405547e-07 3.09198785015e-07 28312091.0755 +UniRef50_H7CPK2 0.000190035357371 8.04454476465e-05 -44242791375.4 +UniRef50_V8RAR8 0.000161475072447 7.05792891766e-05 -36695743123.0 +UniRef50_H9KEV5 3.96739753443e-08 6.16428373669e-08 8869099.18678 +UniRef50_Q7UNZ2 Isoleucine tRNA ligase 1.2034398317e-08 2.88278181182e-08 6779709.65218 +UniRef50_UPI00034D189F aldehyde activating protein 1.06080760536e-06 4.12414924368e-06 1236708610.82 +UniRef50_Q8ZRW8 Ferredoxin like protein FixX 1.96693702436e-05 1.37676785639e-06 -7384948059.19 +UniRef50_Q8XCN6 Long chain fatty acid transport protein 3.0173134943e-05 4.87377034738e-06 -10213663945.4 +UniRef50_F0RM21 Serine threonine protein kinase 3.4952981194e-06 0.000316877879209 1.26516393623e+11 +UniRef50_P0AAC2 Universal stress protein E 2.51558309524e-05 2.06528111656e-05 -1817924346.2 +UniRef50_T2S877 1.38822232327e-06 9.25675644253e-07 -186735770.405 +UniRef50_Q7N4I9 Complete genome; segment 8 17 4.40645123179e-06 8.61901001715e-05 33017062675.2 +UniRef50_Q5JGR7 Nucleoside diphosphate kinase 0.00021381397079 1.04824877617e-05 -82087414856.3 +UniRef50_UPI0003C11FE8 PREDICTED 5.71180374095e-07 6.56421888604e-07 34413045.4383 +UniRef50_UPI000417E643 hypothetical protein 1.20045833248e-06 4.11043995059e-06 1174795288.72 +UniRef50_M1XGX9 1.00788929923e-06 1.40153652767e-06 158920216.716 +UniRef50_Q7N3U5 Cysteine desulfurase 4.71357894479e-06 6.06637450263e-06 546140167.368 +UniRef50_UPI000379DB36 hypothetical protein, partial 6.49868853174e-08 2.19373194044e-06 859400501.391 +UniRef50_UPI00046F039B DNA gyrase subunit B 1.24684212581e-07 4.21721120721e-07 119917444.869 +UniRef50_Q8CUA4 Mobilization protein 5.90071374576e-05 1.06740977781e-05 -19512641231.7 +UniRef50_Q3J611 Putative sensor histidine protein kinase 0.000189560659285 4.14201157734e-05 -59806155304.7 +UniRef50_W9T208 AsmA family protein 2.54539119975e-07 2.79687171638e-07 10152577.0576 +UniRef50_B9MJY9 Ribosomal protein L11 methyltransferase 6.5834730777e-08 2.15463652128e-07 60407031.7027 +UniRef50_A6LZQ4 Methyltransferase type 11 2.85074490886e-06 8.43882759885e-06 2255977555.43 +UniRef50_UPI0003EC04D4 PREDICTED 5.2206804198e-08 2.43613867957e-07 77273380.4683 +UniRef50_UPI0002EC1250 patatin 2.11122327112e-07 2.72975723515e-07 24970975.1544 +UniRef50_UPI0002493F15 oxidoreductase 1.29891624285e-07 2.75393679302e-07 58740965.1214 +UniRef50_G2PAE6 Oligopeptide dipeptide ABC transporter, ATPase subunit 2.35295251898e-06 3.83254128439e-05 14522523664.9 +UniRef50_UPI0003AE4F02 PREDICTED 4.13886492145e-07 4.69069334647e-06 1726599409.41 +UniRef50_V2EDG8 Porin thermoregulatory protein EnvY 2.31831780843e-07 5.88423127631e-07 143960302.566 +UniRef50_B5EWS4 Recombination associated protein RdgC 1.91341840512e-05 4.65050509721e-06 -5847238928.46 +UniRef50_UPI000467B16B hypothetical protein 7.85765155653e-08 1.01093559547e-07 9090406.97061 +UniRef50_UPI000050FD81 peptide ABC transporter permease 1.04094897579e-07 1.0351556379e-06 375880646.268 +UniRef50_P0A9L3 FKBP type 22 kDa peptidyl prolyl cis trans isomerase 4.22851125853e-05 2.14978026674e-05 -8392092102.83 +UniRef50_UPI00036605E2 hypothetical protein 1.36485500088e-07 2.95295507657e-07 64113548.8735 +UniRef50_C4JA46 1.05578835166e-07 9.42733670122e-06 3763308041.36 +UniRef50_P30149 Inner membrane protein YabI 4.6284194217e-05 9.30131354942e-06 -14930442756.5 +UniRef50_Q89B04 Phosphoenolpyruvate protein phosphotransferase 3.09963184691e-05 5.23884471679e-06 -10398608233.6 +UniRef50_Q3J217 Putative Endonuclease 0.000177400029565 4.34655175628e-05 -54071006056.5 +UniRef50_B7GQS6 Phosphoribosyl AMP cyclohydrolase 1.33029630545e-07 6.23335768974e-07 197942604.817 +UniRef50_C0ZZE5 Riboflavin biosynthesis protein RibBA 1.00873968671e-07 7.851320401e-08 -9027315.09108 +UniRef50_C1N2I9 Predicted protein 2.84236666888e-08 4.2044413969e-08 5498862.82238 +UniRef50_Q5HMG3 Dihydroxy acid dehydratase 0.000278417200064 9.97571700595e-05 -72127246517.7 +UniRef50_R6V2L6 YhgE Pip domain protein 1.37149606168e-08 1.94437019558e-08 2312763.17812 +UniRef50_Q5XA33 8.97848608486e-05 7.33581451576e-05 -6631666702.93 +UniRef50_F8KRE5 Chemotaxis protein Che 1.17474892792e-06 3.93178877904e-05 15398853227.7 +UniRef50_D4MWH4 Lysophospholipase 2.52674474934e-06 6.12637372854e-06 1453214391.32 +UniRef50_A6M2R6 4.62394367686e-07 6.74694394134e-06 2537149782.98 +UniRef50_UPI00037C1A9F hypothetical protein 7.62932694411e-08 3.72918563175e-06 1474717472.69 +UniRef50_Q6ABL2 DNA replication and repair protein RecF 1.09947375394e-05 0.000169823561784 64121145396.6 +UniRef50_Q983N4 Isoleucine tRNA ligase 3.81298978638e-07 5.69672735505e-08 -130936689.342 +UniRef50_UPI00037926CF hypothetical protein 3.82243688097e-07 1.03420626775e-07 -112564291.399 +UniRef50_D6GPL1 RNA polymerase sigma factor, sigma 70 family 8.77626901761e-05 4.19881571359e-06 -33735761564.6 +UniRef50_O25751 Protein TolB 9.07418242453e-07 2.1652883405e-05 8375198861.59 +UniRef50_N0B087 Transporter 2.43820164448e-07 3.98234848235e-07 62339102.7261 +UniRef50_UPI000378CCBF hypothetical protein 2.04076438527e-07 5.74602985705e-07 149586113.968 +UniRef50_L9BMS0 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 1.56850133866e-06 7.77570127407e-06 2505922784.83 +UniRef50_J0HGY2 6.10118134256e-06 1.52448715308e-06 -1847667606.65 +UniRef50_D2SC05 2.43321325773e-07 6.58648433981e-07 167672650.22 +UniRef50_T0T191 1.48976615759e-07 2.32681182578e-07 33792560.7954 +UniRef50_Q11IE7 Putative 3 methyladenine DNA glycosylase 4.52369476735e-07 1.35206731201e-07 -128042492.397 +UniRef50_Q6A923 Endo beta N acetylglucosaminidase H 5.40130200985e-06 3.34218049256e-05 11312220877.3 +UniRef50_V6EZI7 2.80061647579e-07 2.19185043949e-07 -24576631.9254 +UniRef50_Q4A0N2 Ornithine aminotransferase 1 5.15106177358e-08 1.4151613144e-07 36336330.3742 +UniRef50_O26837 Phenylalanine tRNA ligase alpha subunit 2.15766086932e-05 1.39550726349e-05 -3076907633.5 +UniRef50_Q9CGF7 Oxygen independent coproporphyrinogen III oxidase like protein LL1139 6.96048032706e-05 8.21433143512e-05 5061950788.07 +UniRef50_UPI00037C546A hypothetical protein 1.030943203e-06 1.7867677357e-07 -344070416.046 +UniRef50_C5B1H6 Amidase, hydantoinase carbamoylase 7.07200560896e-06 2.83512927957e-06 -1710478966.49 +UniRef50_G8YPB5 Piso0_001875 protein 4.24551452304e-08 1.20594920288e-06 469716828.751 +UniRef50_I5C3W2 6 pyruvoyl tetrahydropterin synthase 5.22148831758e-07 4.15042995505e-06 1464781613.49 +UniRef50_Q58787 citramalate synthase CimA 9.32536865333e-08 5.59145360609e-08 -15074273.2486 +UniRef50_Q9I0J1 NADH quinone oxidoreductase subunit L 5.11070398343e-06 1.54018909841e-06 -1441460674.23 +UniRef50_Q27527-2 Isoform b of Enolase 1.0736412095e-07 5.84563935484e-07 192651421.028 +UniRef50_F3T921 DoxX family protein 3.02989164364e-06 4.87523180539e-06 744986468.169 +UniRef50_E0Y1Z2 6.33631576555e-05 5.10634072383e-06 -23518991886.9 +UniRef50_I1AXI9 Transposase IS4 family protein 6.84369146396e-07 2.55404883603e-07 -173178136.873 +UniRef50_C3MZM4 Nucleoside diphosphate kinase 1.69572866386e-07 1.09297174681e-06 372787459.406 +UniRef50_L1JUV8 6.31120983793e-07 3.80735356896e-07 -101083750.155 +UniRef50_U2YT78 2.01741583823e-06 2.84371308104e-06 333586336.73 +UniRef50_A9V5N5 Predicted protein 4.27428881343e-06 6.06545267013e-08 -1701095868.66 +UniRef50_E6JPP5 Sodium 7.41137412691e-07 1.15358087973e-06 166508488.894 +UniRef50_Q1IZ16 Acyl CoA dehydrogenase like protein 1.01839745189e-06 0.000261731496901 1.05253077557e+11 +UniRef50_Q8K9X9 NADH quinone oxidoreductase subunit J 5.42235242221e-07 1.35933735682e-06 329874150.634 +UniRef50_UPI000467B0DE arginine ABC transporter ATP binding protein 2.41270846872e-07 2.70264831867e-07 11705227.5387 +UniRef50_A3PRL7 ABC transporter related 4.05176363618e-05 6.23379548785e-06 -13840807270.9 +UniRef50_G5SBT2 Respiratory nitrate reductase alpha chain 4.46055850191e-07 4.44199046251e-07 -749614.536125 +UniRef50_Q72HC1 Probable dual specificity RNA methyltransferase RlmN 1.28106104819e-06 0.000370130584752 1.48909079012e+11 +UniRef50_UPI000470C939 5 nucleotidase 1.60836945321e-07 8.64254946121e-08 -30040815.7824 +UniRef50_UPI00045EBAFF hypothetical protein 1.49409141998e-07 8.8222923673e-08 -24701627.1771 +UniRef50_C5N3B0 0.000221744339752 8.14028246988e-05 -56657591810.9 +UniRef50_O43414 ERI1 exoribonuclease 3 1.31640634156e-07 2.00911759369e-06 757960487.795 +UniRef50_P37049 Phosphodiesterase YaeI 2.21819713783e-05 2.02961135234e-05 -761343958.101 +UniRef50_D8JDR3 NADH 6.78474817046e-06 0.000216023908292 84472416594.5 +UniRef50_V9TSS5 Thymidylate synthase 1.06449664279e-06 2.51028653802e-07 -328407009.529 +UniRef50_UPI0004401CD8 PREDICTED 4.38379304258e-08 8.78184286181e-08 17755466.8216 +UniRef50_B1HZV3 HTH type transcriptional regulator 7.55730833363e-05 4.70000061318e-06 -28612333205.8 +UniRef50_Q5ZVR0 Histidine ammonia lyase 5.94715228461e-08 1.35496058943e-07 30692038.1483 +UniRef50_R5Y1H5 Cassette chromosome recombinase B 7.16434922814e-07 4.27836966907e-07 -116510536.295 +UniRef50_B2N3Y4 Transketolase 2 2.49971598778e-05 5.71819965561e-06 -7783152821.15 +UniRef50_UPI0002E7F1BB hypothetical protein 1.26801541191e-06 4.37895592331e-07 -335129557.88 +UniRef50_Q6A7E7 Trigger factor 3.22508423853e-06 6.71194017356e-05 25794920045.0 +UniRef50_UPI00046F5CB6 hypothetical protein 4.45340343316e-08 8.18667704286e-08 15071683.6865 +UniRef50_P45059 Peptidoglycan synthase FtsI 3.90992342407e-08 7.03408016436e-08 12612604.1377 +UniRef50_UPI00034B1305 MULTISPECIES 3.77718131373e-07 4.2946509886e-05 17185543609.1 +UniRef50_UPI0002193AE6 excinuclease ABC subunit A 2.09848798857e-07 3.37778503435e-07 51646791.6121 +UniRef50_G8VI88 Molybdopterin guanine dinucleotide biosynthesis protein A 3.04687093507e-07 5.56136170989e-05 22328893760.1 +UniRef50_F0RNI0 DEAD DEAH box helicase domain protein 2.02104336689e-06 8.69243819248e-05 34276519657.0 +UniRef50_UPI00035D0365 hypothetical protein 9.18423020553e-06 1.8077021033e-06 -2977994915.05 +UniRef50_F7WRG0 2.51793568383e-07 2.90534813073e-08 -89922906.4808 +UniRef50_Q8T6Z1 Thioredoxin reductase 3.2709694737e-07 1.8004269797e-07 -59367605.0413 +UniRef50_Q7MU65 Lipoprotein releasing system ATP binding protein LolD 7.6507873374e-07 5.55574264911e-07 -84579524.9752 +UniRef50_UPI000465AFEA GABA permease 1.93310624153e-07 2.92272062554e-07 39951947.0759 +UniRef50_K0HE29 9.93384181239e-07 8.08485284325e-05 32238501667.1 +UniRef50_D3S8T8 Flagellar hook capping protein 8.93857676286e-08 1.23236670352e-07 13666024.8267 +UniRef50_F0PEG3 Maltose Maltotriose maltodextrin ABC transporter, MalX subunit 7.76010824086e-08 3.44508200748e-06 1359493373.09 +UniRef50_D3QGU6 Cystathionine gamma lyase 0.000115934488544 1.75972216375e-05 -39699961384.1 +UniRef50_Q32FA3 2.5679318969e-06 8.70703284919e-06 2478430389.68 +UniRef50_Q9RVF4 3.27401032446e-06 9.84087094509e-05 38407045471.4 +UniRef50_G8V619 HMGL like family protein 9.72349490448e-05 3.32747917869e-05 -25821500364.4 +UniRef50_A6LQC0 0.000102950724232 1.58337032744e-05 -35170210406.6 +UniRef50_Q5JGT7 Thymidine kinase 1.54529703237e-07 3.34862514866e-07 72802568.9871 +UniRef50_Q00853 Homocitrate synthase subunit alpha 3.79517719931e-06 5.78487596381e-06 803265807.578 +UniRef50_Q5HMY5 Accessory gene regulator protein B 7.1665246348e-05 3.08156561946e-06 -27688073526.5 +UniRef50_UPI00036F3EF0 hypothetical protein 7.58243675421e-07 8.32581504958e-07 30011094.0118 +UniRef50_Q9I509 NADH dehydrogenase (quinone) 7.61851590707e-06 8.31087570182e-05 30476336706.0 +UniRef50_P97532 3 mercaptopyruvate sulfurtransferase 3.979460334e-07 1.28988716716e-07 -108581369.223 +UniRef50_UPI00025564EE bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase, partial 7.87835450758e-08 2.4515723399e-07 67167099.8493 +UniRef50_W0YLC7 3.87510204934e-06 2.03208475363e-06 -744048698.644 +UniRef50_A9IQX3 Single stranded DNA specific exonuclease 5.07530772989e-06 3.03570739452e-05 10206559263.3 +UniRef50_A7ZNH9 UPF0265 protein YeeX 3.44212147888e-06 1.02674584023e-06 -975116785.315 +UniRef50_J3RWH0 WbhQ 1.00479921392e-05 1.14518323135e-05 566747505.421 +UniRef50_A9M4D7 Lipoprotein 1.35786326927e-06 1.87558179737e-05 7023767811.08 +UniRef50_A5UNI6 Polysaccharide biosynthesis protein, MviN like family 6.55439402026e-05 1.54505000471e-05 -20223336506.4 +UniRef50_P76016 PTS dependent dihydroxyacetone kinase operon regulatory protein 3.85106209914e-05 6.53816933714e-06 -12907671078.9 +UniRef50_M9TX56 1.75258571181e-06 1.42422395861e-07 -650042689.575 +UniRef50_P53381 Protein mrp homolog 4.26487092165e-06 1.70765807063e-05 5172244457.44 +UniRef50_A6V8Q7 Signal peptidase I 3.80241208883e-05 3.57959642661e-06 -13905677207.0 +UniRef50_Q6MN06 Adenylosuccinate synthetase 1.20895064055e-07 1.29133177616e-07 3325827.5376 +UniRef50_Q8Y303 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.12081588883e-07 1.73534510015e-07 -15561928.7649 +UniRef50_V6K8C7 9.3477188766e-07 5.61697358523e-07 -150614765.552 +UniRef50_A8LJB0 NADH 2.04417660808e-05 3.98153074428e-05 7821336387.93 +UniRef50_UPI000328E67C PREDICTED 7.13449271789e-07 9.99960886291e-07 115668254.667 +UniRef50_T1DQZ2 1.89023937943e-06 1.11658158719e-06 -312335144.576 +UniRef50_P36999 23S rRNA N(1)) methyltransferase 2.77424420379e-05 1.48655894267e-05 -5198543415.89 +UniRef50_A1VRZ2 LPS biosynthesis protein WbpG 1.72103585868e-05 1.57362365106e-06 -6312741777.86 +UniRef50_P51776 Pyruvate, phosphate dikinase 5.84735500387e-08 1.42729671888e-07 34015230.3294 +UniRef50_UPI000288452E heme peroxidase 7.39790400596e-08 1.70871873412e-08 -22967939.084 +UniRef50_M4QXM9 Tetraacyldisaccharide 4 kinase 1.03721523468e-05 7.25125543768e-05 25086842848.0 +UniRef50_UPI0002625F2D dipeptide transport system permease, partial 1.00642983485e-07 1.64529143729e-07 25791626.8618 +UniRef50_A0A011PAY1 ATP dependent Clp protease ATP binding subunit ClpX 7.35471580755e-08 2.08586526197e-07 54517050.0298 +UniRef50_A7Z4X0 L threonine 3 dehydrogenase 5.45376253231e-07 4.40860151698e-07 -42194432.7457 +UniRef50_B5SL97 Choline dehydrogenase lipoprotein 4.31846814926e-05 1.23787649314e-05 -12436726546.9 +UniRef50_UPI0004216EAC tRNA delta isopentenylpyrophosphate transferase 1.04837980938e-07 1.58579744889e-07 21696209.5926 +UniRef50_Q8DW27 4.58769054685e-05 1.20134029755e-05 -13671111508.3 +UniRef50_Q5FAC7 Penicillin binding protein 1A 1.15491267187e-06 3.02519999064e-05 11746851178.0 +UniRef50_Q24751 ATP synthase subunit beta, mitochondrial 2.44156839332e-07 2.34600763429e-07 -3857905.10828 +UniRef50_UPI00047ECC3E 4 alpha glucanotransferase 1.15540305867e-07 6.33452529062e-06 2510680553.87 +UniRef50_F4WQV6 U6 snRNA associated Sm like protein LSm6 6.6654913799e-08 7.1168373848e-08 1822139.20816 +UniRef50_A0B2R8 1.54204126213e-07 9.68628250913e-06 3848217014.94 +UniRef50_R7WKM5 9.54483149226e-07 4.42265085189e-07 -206788718.074 +UniRef50_V8G079 1.94546412126e-06 1.1885662969e-05 4012980254.79 +UniRef50_T3G6D1 Bacterial regulatory s, gntR family protein 1.7132495712e-06 1.68080571582e-05 6093959056.99 +UniRef50_A3QD88 Leucyl phenylalanyl tRNA protein transferase 9.254905805e-08 5.76925125987e-07 195548562.589 +UniRef50_Q8CMQ4 NADPH dependent oxidoreductase 0.000316362653507 5.34895192664e-05 -1.06125110109e+11 +UniRef50_B7V2Q5 Thymidylate synthase 2.16837010033e-05 3.08090504584e-05 3684015555.65 +UniRef50_UPI000476F303 transcriptional regulator 4.36391684813e-07 1.44916941397e-06 408870797.442 +UniRef50_Q9RZ67 1.62969107833e-05 0.00045601538748 1.77519744995e+11 +UniRef50_UPI0002194D92 SSU ribosomal protein S1P 4.73045478222e-07 2.84983197772e-06 959537876.298 +UniRef50_G7M597 Peptidase M56 BlaR1 6.72480977733e-07 9.56863553371e-06 3591486762.34 +UniRef50_UPI0003B6979D thioredoxin reductase 1.56655545743e-07 7.93480484476e-08 -31209985.3278 +UniRef50_Q0SRR9 Polysaccharide deacetylase family protein 1.48811822151e-06 7.9108261465e-06 2592926004.81 +UniRef50_A0A024C6Z7 HrgA like protein 3.74279108692e-06 3.38853478266e-05 12168920046.6 +UniRef50_UPI0003B569E4 hypothetical protein 2.32953878291e-07 7.41844540488e-08 -64097164.8864 +UniRef50_J0NAX3 Glucose 6 phosphate 1 dehydrogenase 2.93462497108e-05 8.01764810481e-06 -8610618199.72 +UniRef50_UPI00047D6EDF fasciclin 5.45626444904e-07 1.69978680831e-07 -151653612.073 +UniRef50_P15567 Phosphoribosylaminoimidazole carboxylase 2.68727365352e-07 2.42878655697e-07 -10435441.2871 +UniRef50_Q6AJM7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.13908644359e-07 3.33120995991e-07 48127489.2539 +UniRef50_UPI000470F989 argininosuccinate lyase 4.38501341778e-07 2.55665682688e-07 -73812999.2205 +UniRef50_A0A024KA53 Auxin binding protein, putative 1.98139791579e-06 8.23669582666e-07 -467389135.005 +UniRef50_G4CKE5 YjbE family integral membrane protein 1.05698215261e-07 1.44526983295e-07 15675650.1379 +UniRef50_A4FE07 1.10210020356e-06 2.44063392719e-06 540382489.885 +UniRef50_C1MUY0 Predicted protein 5.83548789303e-07 8.08825747708e-07 90947072.5672 +UniRef50_I1QZW6 2.32345039331e-07 3.18141933328e-07 34637258.9529 +UniRef50_A3PL14 Regulatory protein, PpaA 2.86739884442e-05 2.31016979293e-06 -10643397110.0 +UniRef50_UPI000361C323 hypothetical protein 2.47260219103e-07 6.4747931102e-07 161573358.647 +UniRef50_O67258 Lysine tRNA ligase 2.70904922119e-08 3.06091537182e-08 1420526.82893 +UniRef50_X0U279 Marine sediment metagenome DNA, contig 5.45576066492e-08 5.34497397728e-07 193757583.182 +UniRef50_O83833 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.61499445359e-07 1.58240461965e-07 -41686918.7264 +UniRef50_D3E1H7 DNA polymerase II small subunit 2.47488635045e-05 2.5035956941e-06 -8980687595.19 +UniRef50_X7FC77 Flagellar protein FlgJ 1.57369054181e-06 8.7725751042e-07 -281158560.966 +UniRef50_P07771 Benzoate 1,2 dioxygenase electron transfer component 2.34949785595e-06 7.17333129157e-05 28011097574.8 +UniRef50_E0TD47 1.62033811619e-06 2.40515488838e-07 -557051326.989 +UniRef50_B2TQ92 Ser Thr protein phosphatase family protein 2.21183196593e-06 7.78459318204e-06 2249792088.41 +UniRef50_E3HVR7 Aspartate aminotransferase 9.58897516131e-07 7.62006286372e-06 2689194192.51 +UniRef50_A1B2A8 4.91432385076e-06 3.37332386089e-07 -1847787620.29 +UniRef50_UPI0004688DE5 hypothetical protein 1.37706740517e-06 4.10380736337e-07 -390263270.787 +UniRef50_UPI00045E7101 hypothetical protein 9.325894329e-07 1.80681130102e-07 -303554608.792 +UniRef50_UPI00046779A8 UGMP family protein 4.95734977632e-08 8.66876355568e-08 14983432.869 +UniRef50_W7W844 2.5135219425e-06 2.19192199981e-06 -129833843.339 +UniRef50_UPI00047A6C43 hypothetical protein, partial 5.06747060277e-07 9.53815124139e-08 -166073319.695 +UniRef50_A6LPV7 Tetratricopeptide TPR_2 repeat protein 3.90547980192e-06 3.46369534932e-06 -178353804.819 +UniRef50_R6IK84 Lipoprotein 1.93685426405e-07 2.1724875461e-07 9512804.75091 +UniRef50_UPI00046A2248 integrase 1.94862242842e-05 8.70903832291e-06 -4350882223.52 +UniRef50_N1U5S5 Winged helix turn helix 7.22168025357e-07 1.28248186273e-05 4885988564.21 +UniRef50_C3K6N0 Succinyl CoA ligase [ADP forming] subunit beta 2.01538613998e-05 2.63212067666e-05 2489833006.42 +UniRef50_I6TXK4 Prephenate dehydrogenase 3.81289350851e-05 4.16541324067e-05 1423165417.77 +UniRef50_UPI00041D4010 hypothetical protein 3.18315926619e-07 1.6129962716e-07 -63389406.8983 +UniRef50_UPI00037D201C hypothetical protein 1.09445413241e-07 3.69322158221e-06 1446814417.29 +UniRef50_M5RF68 Glutamate binding periplasmic protein 2.69567345224e-06 7.92089737881e-07 -768500105.086 +UniRef50_Q7N0A6 Isopentenyl diphosphate Delta isomerase 2 5.15215713675e-07 9.63827124133e-08 -169088022.268 +UniRef50_Q8X4L9 Ribosomal large subunit pseudouridine synthase F 2.52454833992e-05 2.31923123861e-06 -9255609333.99 +UniRef50_D8JG12 Copper resistance protein A 5.24241950828e-06 8.83711014326e-05 33560068996.5 +UniRef50_UPI000366B651 hypothetical protein 1.45759240617e-07 5.53260661999e-08 -36508982.252 +UniRef50_Q3BZD0 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.48859370868e-08 1.06587181173e-07 12798181.2556 +UniRef50_Q8DJY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.8322802131e-08 4.00790791106e-08 -23513705.7142 +UniRef50_UPI00034D05EE hypothetical protein 1.63833346204e-06 7.55068960341e-07 -356584718.21 +UniRef50_L0A753 PRPP binding protein, adenine guanine phosphoribosyltransferase 1.38104630068e-05 0.000188960615746 70710265994.8 +UniRef50_G0D380 5.76774076497e-07 1.30380961276e-07 -180214378.474 +UniRef50_P77268 Probable D,D dipeptide transport ATP binding protein DdpD 1.96116113863e-05 1.69090038935e-05 -1091075809.57 +UniRef50_P61614 LexA repressor 1.57319010669e-05 1.31885519435e-05 -1026781251.52 +UniRef50_UPI0002653AC6 PREDICTED 2.74726729261e-07 1.46052986122e-07 -51947169.1096 +UniRef50_K9ZKB4 SNARE associated Golgi family protein 1.14536214939e-05 0.000374541272953 1.46582940481e+11 +UniRef50_UPI000413BC23 hypothetical protein 3.83890031311e-06 5.33581829112e-06 604324156.972 +UniRef50_F0K2U2 Phosphate starvation inducible protein family 1.27099659549e-06 4.38062943966e-05 17172021689.1 +UniRef50_UPI00040DC67E hypothetical protein 1.46794670038e-07 4.15109483206e-07 108321982.669 +UniRef50_A6TUT9 Membrane spanning protein 1.77223468942e-06 1.40837775611e-05 4970320936.93 +UniRef50_T1A735 UDP N acetylglucosamine pyrophosphorylase 1.00855106338e-07 1.361318171e-07 14241641.0285 +UniRef50_Q5HPS0 tRNA pseudouridine synthase B 0.000155060684356 2.75916333653e-05 -51460820106.2 +UniRef50_W5XJD4 Translation initiation factor IF 2 8.51931272736e-08 1.20923669355e-07 14424858.3013 +UniRef50_A5UL38 Ribonuclease P protein component 4 3.11971891609e-06 1.50249699774e-05 4806295947.31 +UniRef50_UPI0002491B34 amino acid 1.28136857337e-06 1.18720032609e-06 -38016877.0013 +UniRef50_UPI000368B66A hypothetical protein 2.95170288089e-08 9.76114674597e-08 27490560.4961 +UniRef50_P11460 Ferric anguibactin binding protein 3.03826063881e-06 5.90062806842e-05 22594976497.2 +UniRef50_P19906 Nitrogen regulation protein NtrB 1.62978715283e-07 2.34660104544e-07 28938656.4742 +UniRef50_B5XYC7 Isocitrate dehydrogenase kinase phosphatase 9.92593992974e-06 3.30575863979e-06 -2672648425.51 +UniRef50_A5EV79 Dihydroorotate dehydrogenase 9.47349283038e-08 1.63944322388e-07 27940681.6866 +UniRef50_B9J9J5 4.58344520386e-05 3.15692339651e-05 -5759043590.18 +UniRef50_G7M6P0 2.86995034155e-06 1.59784731786e-05 5292071528.96 +UniRef50_A6L1E7 Thymidine kinase 2.01187252421e-07 1.24542289424e-05 4946703291.98 +UniRef50_C1D5X5 Protein export membrane protein SecF 4.23496731925e-06 4.79101777982e-05 17632218425.4 +UniRef50_S5YUZ3 Homoserine dehydrogenase 1.15924945427e-05 6.22501869013e-06 -2166915868.02 +UniRef50_R9P548 Glycoside hydrolase 1.36734263788e-06 1.1051466973e-05 3909599831.66 +UniRef50_D0K2M7 0.000226619215243 4.76317266442e-06 -89566006868.9 +UniRef50_P32057 Putative colanic acid biosynthesis glycosyl transferase WcaI 3.43250562133e-05 4.72761530975e-06 -11948850094.2 +UniRef50_F1VXE0 Structural constituent of cell wall 1.98840147218e-07 7.41527650307e-08 -50337826.2751 +UniRef50_V5UK09 Formate dehydrogenase subunit beta 2.10430502271e-05 5.50945453515e-06 -6271103199.47 +UniRef50_X1RXD5 Marine sediment metagenome DNA, contig 6.51937653887e-07 1.0577378169e-06 163826505.536 +UniRef50_UPI000465978A hypothetical protein 4.09615569275e-07 6.62596708413e-08 -138616989.648 +UniRef50_S1SMM7 1.47087991781e-06 1.10175365929e-06 -149020800.253 +UniRef50_B5YZ54 8.20621714897e-06 3.62156086568e-07 -3166743708.34 +UniRef50_Q7TUK9 Glutathione synthetase 4.65311950741e-08 8.40970938525e-08 15165814.3223 +UniRef50_UPI000377FA81 hypothetical protein 3.48602426756e-07 1.49144849256e-07 -80523471.6565 +UniRef50_A2D765 1.1771103176e-07 2.49951883145e-07 53387254.4819 +UniRef50_G3VCD6 3.2992866078e-07 3.27425355059e-07 -1010615.23858 +UniRef50_N0C6M2 Integrase recombinase, phage associated protein 5.97651544228e-06 3.58018986097e-06 -967426043.397 +UniRef50_Q4L884 Energy coupling factor transporter ATP binding protein EcfA2 7.39544804854e-05 9.01613223168e-06 -26216408073.2 +UniRef50_K0YRV5 7.24120891139e-08 4.44751703172e-07 150318071.316 +UniRef50_P26277 Chlorophyllide reductase subunit Z 9.68912381287e-05 3.37752784376e-05 -25480687447.2 +UniRef50_UPI00028A2E90 glycoside hydrolase family 3 domain containing protein 4.31965219746e-08 2.00158425337e-07 63367446.5264 +UniRef50_A6WZN8 Glycoside hydrolase family 25 4.07202681989e-05 5.36159497837e-06 -14274730278.8 +UniRef50_A6V3Q5 Major facilitator superfamily MFS_1 5.22225000813e-06 1.30191052996e-06 -1582689155.31 +UniRef50_A4XKS9 Bifunctional protein PyrR 0.000116595986579 3.11958449445e-05 -34477085155.4 +UniRef50_UPI00046FC8FA 5 hydroxymethyluracil DNA glycosylase 6.85011326164e-08 1.01781477911e-06 383249568.478 +UniRef50_Q1RKI0 Transcription elongation factor GreA 3.8920506607e-05 3.55890695659e-05 -1344942014.82 +UniRef50_X7FDX5 1.51899243654e-06 7.5198281885e-07 -309651194.928 +UniRef50_B9DNY9 Peptide methionine sulfoxide reductase MsrB 2.70405509402e-07 9.72982012043e-07 283638755.699 +UniRef50_P0A0Q1 9.53817216138e-05 4.58823744912e-05 -19983493858.7 +UniRef50_B0V512 1.77779900556e-06 4.24091626018e-05 16403380086.7 +UniRef50_R7PVB1 Formate dehydrogenase alpha subunit FdhA 3.80454465566e-05 1.62457344837e-05 -8800811276.38 +UniRef50_F0YC19 4.75003182884e-07 5.83417328566e-07 43768121.003 +UniRef50_UPI00036B39EC hypothetical protein 6.81075721039e-08 3.87313116175e-06 1536134716.03 +UniRef50_F3N0H6 TPR repeats containing protein 1.72560709512e-07 2.48489921398e-07 30653554.5946 +UniRef50_A0A024HEL1 1.28419923616e-05 3.59581890218e-06 -3732793688.88 +UniRef50_Q4JT56 30S ribosomal protein S17 0.000199426560148 0.000182401494385 -6873227969.57 +UniRef50_UPI0004707041 flagellar motor protein MotA 3.84695688012e-07 1.0844084613e-06 282482633.018 +UniRef50_P15005 5 methylcytosine specific restriction enzyme B 3.01289823091e-05 4.29364413392e-06 -10430043056.6 +UniRef50_K2JGI2 4.0016631271e-07 1.1436053566e-07 -115383299.426 +UniRef50_UPI0003B70013 phytoene dehydrogenase 1.07987814814e-07 8.63453572346e-08 -8737325.70762 +UniRef50_P37769 2 dehydro 3 deoxy D gluconate 5 dehydrogenase 4.30956673109e-05 2.34193606269e-05 -7943566463.77 +UniRef50_M4R3K2 2.92852633973e-06 6.41654026862e-05 24722078442.1 +UniRef50_G3XD01 UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase 2.90533867476e-05 8.04837182746e-07 -11404286108.0 +UniRef50_K0JWH3 Putative membrane protein 8.5362456375e-07 8.78827532743e-07 10174747.8577 +UniRef50_A8IMX0 Ribonuclease VapC 3.96939063587e-05 0.000165862952757 50935992299.2 +UniRef50_I1PF78 1.52416953778e-06 2.73265051256e-08 -604293900.61 +UniRef50_UPI000466F096 hypothetical protein 1.15780608925e-05 2.03956712401e-06 -3850806984.82 +UniRef50_B7LNV2 Alkanesulfonate monooxygenase 1.62112557046e-05 7.80887635834e-06 -3392143650.87 +UniRef50_D0J2L9 Transcriptional regulator, LysR family 1.20218467792e-06 2.23161238178e-06 415592596.547 +UniRef50_F5M0P1 Gifsy 1 prophage protein 0.000114219327633 4.80379288109e-05 -26718242841.6 +UniRef50_UPI00037B280F lysyl tRNA synthetase 6.98866724026e-08 9.08185225577e-08 8450444.7703 +UniRef50_UPI0003754233 hypothetical protein 1.20140696659e-06 6.05602076369e-07 -240533745.53 +UniRef50_Q03G75 tRNA dimethylallyltransferase 2.57213951039e-07 9.49414686105e-08 -65511392.4639 +UniRef50_P59588 Lysophospholipase L2 2.9489420786e-05 2.1366537172e-05 -3279307793.96 +UniRef50_T1C6H9 Acyl CoA dehydrogenase domain containing protein 8.75520798991e-06 8.86758559896e-06 45368219.8018 +UniRef50_UPI00047960F2 PTS mannose transporter subunit IID 1.02498666254e-07 4.00148300791e-07 120164810.034 +UniRef50_P26381 Fructose permease IIC component 2.6701964215e-05 1.92592937028e-05 -3004697417.61 +UniRef50_B2TLW3 Flagellar biosynthetic protein FliR FlhB 4.81169260526e-06 7.50222775946e-06 1086202058.33 +UniRef50_UPI0004720299 hypothetical protein 2.94636820662e-07 3.22703334321e-07 11330795.979 +UniRef50_D5ZRU0 Predicted protein 1.61311165684e-06 1.7522198666e-06 56159691.3298 +UniRef50_UPI0003605DC7 hypothetical protein 9.87806786005e-07 2.03280359034e-07 -316722945.79 +UniRef50_W6RN06 3.33507365367e-06 7.5307103758e-07 -1042386140.85 +UniRef50_UPI00047B8AE5 acetylornithine aminotransferase 1.99972552186e-07 2.84572483613e-07 34154030.475 +UniRef50_B4RRC4 7.59020084865e-07 3.02427920053e-05 11902960530.8 +UniRef50_X0ZZA4 Marine sediment metagenome DNA, contig 4.01387658661e-07 2.89942342969e-07 -44991841.5327 +UniRef50_P62087 0.000327288898215 1.28509363861e-05 -1.26942463778e+11 +UniRef50_A8AZX9 8.40303727242e-05 2.32336340322e-05 -24544389469.8 +UniRef50_UPI0002E4B515 hypothetical protein 2.94503811662e-08 8.86958468569e-08 23918121.523 +UniRef50_UPI00036DD363 hypothetical protein 7.38496337481e-08 4.74455424024e-08 -10659655.6909 +UniRef50_B3CLB3 Lon protease 6.08164819071e-08 3.09102364229e-08 -12073518.2929 +UniRef50_P32719 D allulose 6 phosphate 3 epimerase 3.24611413719e-05 4.35356322155e-06 -11347374218.0 +UniRef50_Q4A0X5 Probable transglycosylase SceD 1 0.00031396573588 8.06031017998e-05 -94211359059.6 +UniRef50_U5MQS6 2.03157967427e-06 2.8647152185e-06 336347042.928 +UniRef50_D9SWT2 Peptidase S8 and S53 subtilisin kexin sedolisin 1.26380276027e-05 3.38026991817e-05 8544437636.17 +UniRef50_F3U1Z7 7.50245327852e-06 2.2745116196e-06 -2110584201.76 +UniRef50_T2E5I8 Aminotransferase 6.18819791379e-06 7.25770298117e-06 431772320.004 +UniRef50_B1N6N5 1.75882948698e-06 9.98160252925e-07 -307091504.249 +UniRef50_E3NW25 2.33661547537e-07 1.19457122285e-06 387931027.612 +UniRef50_UPI00047D9B65 diaminopimelate decarboxylase 4.09545332192e-08 1.92779447645e-07 61293581.055 +UniRef50_W8S2N5 Transamidase GatB domain protein 5.44791810618e-05 7.77149224201e-06 -18856467144.3 +UniRef50_UPI0004762BB1 hypothetical protein 7.65220972952e-08 1.17290669309e-07 16458772.8086 +UniRef50_UPI00035C4CBC hypothetical protein 1.21541344001e-07 1.28816090754e-07 2936904.53537 +UniRef50_B8ET52 Major facilitator superfamily MFS_1 3.35604557333e-06 7.06067967682e-05 27149953516.9 +UniRef50_X2MTV9 ABC transporter ATP binding protein 1.81672056531e-06 1.94429484835e-06 51503303.5757 +UniRef50_P45543 Fructoselysine kinase 4.66679239644e-05 1.00465188097e-05 -14784510656.1 +UniRef50_P36634 Peptide transport periplasmic protein SapA 3.70878016206e-05 1.46986070418e-05 -9038792597.77 +UniRef50_F0PCZ7 Purine catabolism regulatory protein family protein 3.29575012276e-08 6.68192687577e-06 2684270528.53 +UniRef50_W8H188 0.000164734291377 3.25138839181e-05 -53379001018.1 +UniRef50_A0A024H2L6 7.32171040279e-06 3.3313356393e-05 10493146439.6 +UniRef50_A5UNJ9 ADP ribosylglycohydrolase 2.32805861492e-05 4.29073490513e-06 -7666435978.92 +UniRef50_O67589 Aspartate tRNA ligase 4.30621813173e-08 8.59134643497e-08 17299588.8046 +UniRef50_B7N653 Succinyl diaminopimelate desuccinylase 3.63875712286e-05 8.74884065336e-06 -11158094698.6 +UniRef50_H0AAM1 FeS assembly ATPase SufC 2.87776688251e-07 1.60934711767e-06 533534199.85 +UniRef50_Q59787 Sorbitol dehydrogenase 2.50653198203e-05 8.93052862394e-06 -6513813202.14 +UniRef50_D0UZ77 PCQ3_28 4.15623592636e-07 5.39601139639e-07 50051257.1007 +UniRef50_V1SPC6 Pheromone autoinducer 2 transporter 8.5909099192e-07 5.99226595592e-07 -104910445.692 +UniRef50_UPI000478598D hypothetical protein 7.10373662491e-07 6.73410119392e-08 -259600171.926 +UniRef50_Q74JW2 Peptide deformylase 2.41731385704e-07 2.23474274156e-07 -7370619.97188 +UniRef50_F2E297 Predicted protein 4.86956681008e-07 5.23252489599e-06 1915844123.06 +UniRef50_UPI0004752275 hypothetical protein 1.14028249723e-05 4.59041510662e-06 -2750253460.44 +UniRef50_C6EBU6 Protein phosphatase CheZ 7.23433061809e-06 6.78888977457e-06 -179829934.703 +UniRef50_A4WNW7 IS66 Orf2 family protein 7.0523954477e-05 7.80792468577e-06 -25319230838.9 +UniRef50_A7Z5S1 Peptide methionine sulfoxide reductase MsrB 1.56517462426e-07 6.19181240749e-07 186783044.832 +UniRef50_R5XIL5 Lactate dehydrogenase and related dehydrogenases 2.2248683036e-06 2.16256098738e-05 7832317445.76 +UniRef50_Q1QYW1 NADH 4.55243224798e-06 4.82544212137e-06 110217436.095 +UniRef50_UPI000463660C enolase 2.80812897045e-06 4.97759078396e-06 875838356.404 +UniRef50_UPI000376E944 hypothetical protein 4.3877914092e-06 6.63507474169e-07 -1503539126.67 +UniRef50_Q98DS8 Mll4564 protein 6.76823217318e-05 1.12745575856e-05 -22772506586.9 +UniRef50_R4K6M8 Glucose inhibited division protein A 1.71984288714e-05 2.42275307553e-05 2837734687.31 +UniRef50_B3CL83 Adenylosuccinate synthetase 1.93766977761e-07 1.48099357066e-07 -18436578.8793 +UniRef50_A4SQR5 Short chain dehydrogenase reductase 9.82568100816e-06 2.24860435429e-06 -3058958826.35 +UniRef50_UPI0003695FD7 D alanyl D alanine carboxypeptidase, partial 2.36203726778e-07 1.04757275838e-06 327559634.675 +UniRef50_O34113 LctF 5.81812747746e-05 8.46471370218e-06 -20071185795.7 +UniRef50_S4P7C3 8.85163895114e-07 3.08156561946e-06 886714329.0 +UniRef50_UPI00036089CB hypothetical protein 1.6381062638e-07 3.2229661057e-07 63982736.6592 +UniRef50_Q03075 Cbb3 type cytochrome c oxidase subunit FixP 5.14392962691e-07 3.31098721828e-07 -73998134.3097 +UniRef50_UPI0003658182 hypothetical protein, partial 2.41254644682e-07 1.50789038183e-07 -36522075.4815 +UniRef50_UPI0004674DF5 amino acid permease 1.33139121903e-07 6.32123518271e-07 201446124.041 +UniRef50_L1K8T7 3.78891467489e-05 2.26151214981e-05 -6166311427.12 +UniRef50_Q9RUV1 5.17104094322e-06 0.000242074170036 95640700343.2 +UniRef50_Q3J2V7 Cysteine tRNA ligase 0.00013321024907 3.66749135977e-05 -38972499551.9 +UniRef50_Q7UDG1 IS150 orfB 2.15112910013e-07 3.79095398557e-07 66201742.9166 +UniRef50_UPI00047119E7 hypothetical protein 1.3482816269e-07 1.72602988575e-07 15250160.759 +UniRef50_U5P9Q9 PTS sorbitol transporter subunit IIB 4.55599138761e-05 1.37658153812e-05 -12835667719.9 +UniRef50_UPI000377D2DD hypothetical protein 1.32659532636e-08 1.58533270959e-08 1044554.56675 +UniRef50_P76015 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 2.22489802156e-05 1.26748420619e-05 -3865197060.54 +UniRef50_UPI00037EA2E6 50S ribosomal protein L22 2.44714247261e-07 4.85340727426e-06 1860585930.02 +UniRef50_M4RZJ4 8.05921539269e-05 2.83257047125e-05 -21100606929.3 +UniRef50_Q9K1M2 Putative outer membrane protein NMB0088 1.82584478593e-06 4.2871878156e-05 16570787363.0 +UniRef50_E3GXS5 2.07712611303e-05 4.61491420949e-06 -6522515512.6 +UniRef50_Q2YY67 L threonine dehydratase catabolic TdcB 9.55045652567e-05 2.71362620379e-05 -27601122982.9 +UniRef50_A6LZV8 Glycoside hydrolase, family 3 domain protein 1.08375534935e-06 1.2283847382e-05 4521614594.19 +UniRef50_Q4V182 L carnitine dehydrogenase 0.000101480539402 3.56905336446e-05 -26560232658.4 +UniRef50_Q0TTK8 ATP dependent zinc metalloprotease FtsH 1.8612263233e-06 1.26585669549e-05 4359018911.25 +UniRef50_Q493R1 3 isopropylmalate dehydrogenase 4.7371828611e-07 5.00492365676e-08 -171040394.304 +UniRef50_I1P669 1.01280628442e-05 3.36931000897e-06 -2728591458.81 +UniRef50_Q97PA9 Serine threonine protein kinase StkP 6.96820233415e-05 2.70429604159e-05 -17213912943.2 +UniRef50_Q601J1 30S ribosomal protein S13 4.96692090597e-06 5.84785554841e-06 355644125.437 +UniRef50_P08967 Phosphoglycerate kinase, glycosomal 1.06910205071e-07 7.47959375274e-08 -12964923.8937 +UniRef50_O62584 Thymidylate synthase 1 2 2.9258513422e-07 2.05602591933e-06 711922684.801 +UniRef50_S5CQF3 3.99553315002e-06 7.15075457254e-05 27255427942.2 +UniRef50_A7MER9 Outer membrane lipoprotein carrier protein 2.02636880284e-05 3.68378426439e-06 -6693510607.83 +UniRef50_A6TF99 Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase 2.10514683691e-05 4.72480396285e-06 -6591274771.53 +UniRef50_B2GGG9 Serine tRNA ligase 5.12995877055e-06 0.000122645969753 47442655717.1 +UniRef50_A0A023RZA8 Membrane protein 1.90433602957e-06 8.64352207243e-05 34126155461.9 +UniRef50_Q8X4V6 1.79725305493e-05 3.37282909284e-06 -5894078636.47 +UniRef50_P0ABG6 Lipid II flippase FtsW 2.35333090038e-05 3.85869110511e-06 -7942884680.42 +UniRef50_Q5HP96 UPF0398 protein SERP1017 0.000267946354678 3.99158954331e-05 -92058694645.6 +UniRef50_A3PIJ2 0.000159060543423 9.40274233268e-05 -26254668629.0 +UniRef50_UPI00047E8C89 hypothetical protein 1.02988680736e-06 1.14711632553e-07 -369467448.532 +UniRef50_R5IVN1 7.55024440023e-06 1.2043787995e-05 1814098691.19 +UniRef50_U5MNN1 ABC transporter permease protein YtlD 7.072841997e-06 1.29521100198e-05 2373532647.54 +UniRef50_Q0TLV3 Carnitinyl CoA dehydratase 2.79965172778e-05 9.97654519112e-06 -7274883861.32 +UniRef50_UPI0003B62712 dihydropteroate synthase 9.18529581076e-08 9.25593165488e-08 285165.570705 +UniRef50_P36204 Bifunctional PGK TIM 2.72064941961e-07 5.97239697416e-07 131277039.12 +UniRef50_Q040Z6 PTS system IIC component, Glc family PTS system IIA component, Glc family PTS system IIB component, Glc family 7.77253237152e-07 5.8361120881e-05 23247314001.3 +UniRef50_UPI0003791F03 hypothetical protein 3.72904934968e-07 4.38467538158e-07 26468427.4514 +UniRef50_E2XKU2 Amino acid ABC transporter, permease protein 1.89691451679e-06 3.06027673785e-06 469663604.702 +UniRef50_Q9HYZ2 9.35915674838e-06 4.12069821193e-06 -2114829994.28 +UniRef50_UPI00035E2D1C hypothetical protein, partial 1.40661884157e-06 9.18979706105e-07 -196865902.992 +UniRef50_J3X3P8 9.61872981717e-08 1.85844440888e-05 7463936142.79 +UniRef50_B4RBF7 Shikimate dehydrogenase 7.14829064464e-08 3.51008448781e-07 112847891.605 +UniRef50_Q1QDQ1 DNA polymerase I 1.26294524063e-06 6.52444139612e-05 25830104063.4 +UniRef50_UPI000237E1F7 glutathione S transferase domain containing protein 1.89719968907e-06 1.5044558316e-06 -158555514.77 +UniRef50_Q9RZD1 1.81785552974e-06 0.000390509033601 1.56919398364e+11 +UniRef50_UPI000368F5E5 hypothetical protein 3.621121288e-07 3.61975321753e-06 1315149683.27 +UniRef50_UPI0003B79537 ArsR family transcriptional regulator 2.98520184878e-06 6.50198267348e-06 1419767574.69 +UniRef50_A5V938 3,4 dihydroxy 2 butanone 4 phosphate synthase 3.59135230845e-05 2.82243281589e-05 -3104222348.5 +UniRef50_W6I678 ThiJ PfpI family protein 3.09414744966e-06 4.73497887393e-05 17866545466.4 +UniRef50_X2HDH4 Prolyl endopeptidase 1.92831070286e-06 2.97778804545e-05 11243213061.4 +UniRef50_UPI00037D6405 hypothetical protein 8.09772237406e-08 6.06515826502e-06 2415887320.52 +UniRef50_UPI0000557872 hemolysin E 1.85850226055e-07 1.26798194406e-06 436869853.806 +UniRef50_P09432 Nitrogen regulation protein NtrC 2.38181079388e-05 1.29524870691e-06 -9092754658.48 +UniRef50_D5AL29 Two component response regulator receiver protein 8.4743438328e-05 1.54412879824e-05 -27978128527.5 +UniRef50_UPI00036494B1 hypothetical protein 1.14520053082e-07 1.33906661955e-07 7826611.90247 +UniRef50_Q052H7 Phosphoglycerate kinase 4.16179339248e-07 8.1299334423e-07 160198683.267 +UniRef50_UPI0003EABFC2 PREDICTED 7.10896622294e-08 1.53219417471e-07 33156790.0365 +UniRef50_Q9RSL1 30S ribosomal protein S5 1.04045668665e-05 0.000333469280332 1.30425189276e+11 +UniRef50_K1UC05 Protein containing DUF939, bacterial 2.69290506802e-06 7.69210317071e-06 2018237621.12 +UniRef50_A4A5I0 Transcriptional regulator, LysR family 1.15439140317e-06 9.00198469442e-05 35876074903.7 +UniRef50_E0SZL8 Transposase like protein, IS1381 ISSpn7 3.22620719948e-06 0.000125389865674 49318968043.0 +UniRef50_E4ZDR8 1.34816424593e-06 1.65133884099e-05 6122387093.23 +UniRef50_N1UYX5 Phenol hydroxylase 5.89116420825e-08 1.55200713376e-06 602780972.333 +UniRef50_S9SLF7 Autoinducer binding domain protein 9.3932713066e-06 1.91993246635e-06 -3017078597.99 +UniRef50_D2NRK7 3.3230263015e-08 9.39544695055e-08 24515107.33 +UniRef50_A0A023RRK9 Threonine transporter 1.84139506761e-06 8.28312346459e-05 32696592094.9 +UniRef50_B8D184 Undecaprenyl phosphate galactose phosphotransferase 0.000178802662006 2.03197898556e-05 -63981480290.5 +UniRef50_B8GW31 Chromosome partitioning protein ParA 1.64223749933e-05 2.70776806683e-05 4301677656.3 +UniRef50_Q2YX06 Serine protease HtrA like 7.19860748447e-05 1.69102115768e-05 -22234801858.1 +UniRef50_R1DBW6 2.43095049914e-07 2.20676144991e-05 8810826318.61 +UniRef50_F0KH23 Leucine responsive regulatory protein 3.57242260744e-06 0.000157264629202 62047429817.9 +UniRef50_UPI00037AFA99 hypothetical protein 1.61645342173e-07 2.68569374246e-07 43166543.8533 +UniRef50_F6BRI2 ABC transporter related protein 4.58187885437e-05 1.36207816973e-05 -12998730477.9 +UniRef50_UPI000475B74E thioredoxin 6.44921637278e-07 3.00267419484e-07 -139141137.106 +UniRef50_UPI0003B651BF hypothetical protein 3.59877954457e-08 1.51365858863e-07 46579540.0495 +UniRef50_E8SGD2 Histidinol phosphate aminotransferase 0.000113688942098 2.88484775792e-05 -34251136635.8 +UniRef50_UPI00035E63FD hypothetical protein 2.26884410251e-07 5.66026617906e-07 136915870.973 +UniRef50_Q6G9C7 0.000569236867706 7.19891760732e-05 -2.00744995028e+11 +UniRef50_D7ZSZ7 PAS domain S box protein 1.25882278881e-05 2.365687892e-06 -4126964841.1 +UniRef50_UPI00036BE173 hypothetical protein 2.13194056304e-06 0.000166347881054 66295990332.4 +UniRef50_X0ZMI1 Marine sediment metagenome DNA, contig 1.09933861727e-07 1.37482681765e-07 11121796.7114 +UniRef50_B9TQ51 2.34613584905e-07 2.38969980578e-07 1758730.39218 +UniRef50_UPI000361BC07 hypothetical protein 8.18239258705e-08 1.2240346634e-07 16382458.4545 +UniRef50_D4GML0 2.92979205697e-07 1.6259441306e-06 538134297.501 +UniRef50_UPI0003B5D96D isoleucyl tRNA synthase 1.30225950678e-08 9.47509600995e-08 32994743.8831 +UniRef50_P21979 Cell surface antigen I II 1.68513266848e-05 5.58986200168e-06 -4546391486.28 +UniRef50_U6JYK1 1.18503624596e-08 9.5229616426e-07 379669510.754 +UniRef50_UPI000388F8F9 PREDICTED 3.95096325119e-07 3.74273189267e-07 -8406555.47206 +UniRef50_Q83I82 Ribonuclease 3 1.36958573419e-07 3.17529083359e-07 72898530.7121 +UniRef50_A0A010CBA8 Sensory box protein 1.26314455301e-06 4.07593419031e-05 15945099543.1 +UniRef50_UPI00036F9D46 hypothetical protein 1.28250611703e-05 2.86046940196e-06 -4022827976.17 +UniRef50_I3URK7 3.57242260744e-06 1.66419186879e-06 -770376165.817 +UniRef50_UPI0003840A4F 4.26474190853e-07 2.6737376543e-07 -64230794.125 +UniRef50_Q046F5 Ribose xylose arabinose galactoside ABC type transport system, permease component 4.97908598323e-05 7.11740139129e-06 -17227798834.9 +UniRef50_UPI00047D7A3C hypothetical protein 4.26630180822e-08 9.73429077711e-07 375761680.056 +UniRef50_UPI00047EF134 hypothetical protein 1.42436275094e-07 5.48506620011e-08 -35359386.8019 +UniRef50_M0E9W2 ABC transporter 3.71357906449e-07 8.37799471534e-07 188308183.706 +UniRef50_Q4JX51 Glucose 6 phosphate isomerase 3.53900328692e-06 0.000586143601304 2.35204625582e+11 +UniRef50_E0WQQ5 Methionine import ATP binding protein MetN 1.22423816102e-05 1.07365529275e-05 -607921517.802 +UniRef50_Q02UV9 C4 dicarboxylate transport protein 1 1.48177567685e-05 6.48072472859e-05 20181370761.9 +UniRef50_M4RCM3 Transcriptional regulator, LysR family 1.35623708568e-06 6.28328739222e-05 24818872694.1 +UniRef50_F0K514 PTS cellobiose specific component IIC 5.91433385354e-06 1.34115428163e-05 3026715259.37 +UniRef50_Q1QEI9 Ubiquinone biosynthesis O methyltransferase 8.34226009116e-06 6.11269719309e-05 21309835910.9 +UniRef50_Q8GFF3 Putative PHA synthase 7.85591894568e-07 1.6609176027e-06 353379729.827 +UniRef50_P37690 Murein hydrolase activator EnvC 3.02434250169e-05 7.71325695306e-06 -9095705323.61 +UniRef50_E4PQ84 1.2040700253e-07 9.92077130194e-08 -8558413.31997 +UniRef50_J0QIU8 5.85101560969e-07 5.21675004671e-07 -25606079.1089 +UniRef50_A6TEB9 Transcriptional regulator LsrR 1.75953018171e-05 3.36223952777e-06 -5746061905.51 +UniRef50_UPI00047D6083 hypothetical protein 1.89691451679e-06 7.27618187069e-06 2171676241.8 +UniRef50_R9SM88 Cell wall biosynthesis glycosyl transferase GT2 family 1.68402716208e-05 1.62444142754e-05 -240554922.33 +UniRef50_A1B0F4 Trigger factor 0.0001941329768 5.72273330803e-05 -55270488390.9 +UniRef50_A5UMS8 Predicted Fe S oxidoreductase 3.63183121526e-05 2.71347661734e-06 -13566684483.3 +UniRef50_Q9KVQ7 DNA recombination protein RmuC homolog 2.56967020238e-05 7.29789765887e-06 -7427823100.83 +UniRef50_UPI0003940AB8 PREDICTED 1.79755232787e-06 7.60655666265e-07 -418607906.441 +UniRef50_A6LVE6 6.11295128081e-06 1.66531976621e-06 -1795563421.02 +UniRef50_UPI00045EBD23 ribonuclease 1.19504333421e-07 6.88081965385e-08 -20466652.571 +UniRef50_UPI00037A1E81 hypothetical protein 8.87392739883e-08 2.06787931047e-07 47657691.4746 +UniRef50_UPI00034A9AF9 hypothetical protein 3.26363488318e-08 8.04327478279e-09 -9928525.78454 +UniRef50_A0A046SME3 2.96200792677e-07 1.44724594823e-07 -61152799.8956 +UniRef50_F9EX65 4.73639024017e-08 1.06345959956e-06 410210301.84 +UniRef50_UPI0004420089 PREDICTED 6.45264576919e-08 1.31355339313e-07 26979639.593 +UniRef50_B2TRU1 2.27401198102e-06 3.55090226682e-06 515496277.583 +UniRef50_UPI0004713B45 molecular chaperone GroEL 1.41056271895e-07 7.91225073426e-08 -25003420.7626 +UniRef50_A3VY81 1.98337229906e-06 9.01256656242e-07 -436863364.059 +UniRef50_UPI0002192600 putative ATP dependent DNA helicase 2.32984283383e-06 7.28006461457e-06 1998465278.94 +UniRef50_Q4FNX4 Argininosuccinate synthase 4.60417650868e-08 1.15503887791e-06 447715743.37 +UniRef50_D7GFL4 Permease 3.03017887677e-06 4.22676574533e-05 15840651599.3 +UniRef50_UPI00047891E2 phytoene desaturase 5.3667327197e-08 7.2543480766e-08 7620534.83226 +UniRef50_A3U7R8 O acetylhomoserine sulfhydrylase 3.65375674043e-05 1.06991692891e-05 -10431278391.9 +UniRef50_UPI0004412677 hypothetical protein DICSQDRAFT_154134 5.55126454158e-07 1.99279368089e-07 -143659835.381 +UniRef50_Z3FT61 Fructose 1,6 bisphosphatase class 3 9.21474306472e-05 5.81094762015e-05 -13741539902.4 +UniRef50_M7TDD9 1.71223410963e-07 2.11344316552e-06 784097948.632 +UniRef50_UPI00036A8806 hypothetical protein 1.47694365878e-07 1.20058522411e-07 -11156929.1376 +UniRef50_X0VQS5 Marine sediment metagenome DNA, contig 6.85867987582e-08 2.2722108619e-07 64042608.4979 +UniRef50_UPI0003B398BB UDP N acetylglucosamine 1 carboxyvinyltransferase 3.77740652225e-08 5.39125423055e-07 202401695.43 +UniRef50_P20708 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.68746688471e-07 2.19307359587e-06 817245613.802 +UniRef50_UPI000464E54F MULTISPECIES 4.820905431e-08 1.30193572939e-06 506144843.686 +UniRef50_B1JTI2 Probable chemoreceptor glutamine deamidase CheD 1.09289381948e-06 2.20349851648e-07 -352256707.132 +UniRef50_E4BFD9 6.1631723639e-06 5.80557912342e-07 -2253769960.48 +UniRef50_UPI000466A1C5 sugar ABC transporter 3.91315781462e-08 2.76754962563e-07 95931476.256 +UniRef50_F0J4U6 0.000111589484345 7.73554567154e-06 -41927109473.4 +UniRef50_P22348 Probable N5 carboxyaminoimidazole ribonucleotide mutase 2.18475570302e-05 4.02932550225e-06 -7193438722.1 +UniRef50_UPI00034A55E9 hypothetical protein 7.05684739646e-07 9.35797057316e-07 92899166.4391 +UniRef50_R4Q3N6 Membrane protein 1.82123770809e-06 4.72225207694e-05 18329055108.2 +UniRef50_UPI0004634E35 hypothetical protein, partial 3.7630948582e-09 1.76644394791e-08 5612143.41214 +UniRef50_Q39189 DEAD box ATP dependent RNA helicase 7 9.34927762685e-09 7.86056544817e-07 313566255.035 +UniRef50_T0YWI9 Molecular chaperone DnaK 1.61053846977e-06 6.58745568312e-07 -384250474.131 +UniRef50_W6K8T3 Putative TRAP_TAXI 1.14743225202e-06 2.26318262268e-07 -371865021.003 +UniRef50_A4WWQ1 Lipoprotein signal peptidase 3.71567398925e-05 2.72756744012e-05 -3989107393.15 +UniRef50_Q4L4B4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.39971236081e-07 7.46491246428e-07 164117116.739 +UniRef50_A4WY58 CobB CobQ domain protein glutamine amidotransferase 2.46320457081e-06 1.96877803461e-06 -199606059.96 +UniRef50_D8GTF6 4.22402401927e-06 2.60190929686e-06 -654867619.023 +UniRef50_A6LQW7 ExsB family protein 3.73206855759e-06 6.8955586235e-06 1277139760.0 +UniRef50_P28297 Isocitrate lyase 4.26335849334e-08 2.36275284275e-07 78175530.2752 +UniRef50_P42597 6.31196308603e-05 8.12811340909e-06 -22200750416.9 +UniRef50_C6STB3 0.000107871716727 2.06669624854e-05 -35205629410.0 +UniRef50_P42591 1.93054519094e-05 3.20678251048e-05 5152326670.91 +UniRef50_Q8X7Z7 2,5 diketo D gluconic acid reductase B 3.13150716317e-05 7.60622112409e-05 18064969369.4 +UniRef50_P28629 Biodegradative arginine decarboxylase 4.09763984274e-05 8.5685515374e-06 -13083445478.5 +UniRef50_Q12S01 4 hydroxybenzoate octaprenyltransferase 4.2587374413e-05 1.1077741925e-05 -12720825302.1 +UniRef50_P42599 4.950465828e-05 1.822522206e-05 -12627892243.9 +UniRef50_O26899 Cobalt precorrin 5B C methyltransferase 2.60262151464e-05 1.2322035567e-05 -5532545465.4 +UniRef50_V5VH70 Phosphatase 5.77897974214e-07 5.72430436815e-05 22876414681.6 +UniRef50_Q3AAW2 Homoserine O acetyltransferase 1.08403569238e-07 3.86216739475e-07 112156585.976 +UniRef50_UPI0003B4A61E DEAD DEAH box helicase 3.38437072626e-07 3.77751647364e-07 15871776.2658 +UniRef50_A0A023XYH0 Chromosome partitioning protein ParB 2.60335164724e-06 3.9551344445e-06 545731303.494 +UniRef50_Q28TB6 Amino acid ABC transporter membrane protein 2, PAAT family 0.000187706893392 5.22536824028e-05 -54684123474.1 +UniRef50_UPI00046853C2 riboflavin synthase subunit alpha 1.67601060698e-07 1.82718435472e-07 6103069.70731 +UniRef50_G9ETY0 1.11146514251e-07 6.48812752766e-08 -18677844.7123 +UniRef50_K2HGL3 2.43492123435e-06 7.08970167188e-07 -696787625.614 +UniRef50_A7ZPD3 tRNA pseudouridine synthase A 2.90047114457e-05 3.92013325476e-06 -10126952038.1 +UniRef50_UPI000288F464 putative sugar permease 5.30496442386e-07 2.92260381479e-07 -96178821.2734 +UniRef50_A6LW08 Signal transduction histidine kinase, LytS 4.51598522543e-06 1.49653735742e-06 -1218988157.11 +UniRef50_UPI00017458E1 hypothetical protein 5.17666048763e-08 2.15387750992e-06 848647968.166 +UniRef50_D0LK45 1.52058451083e-07 1.33784034764e-07 -7377606.12029 +UniRef50_UPI00037DE0EA hypothetical protein 3.35671865527e-07 3.60582251116e-05 14421633110.5 +UniRef50_D2G3Z9 FemAB family protein 2.96593495892e-05 9.0988641634e-06 -8300520271.92 +UniRef50_N8EHW1 3.4027458933e-06 3.87422662346e-07 -1217322990.51 +UniRef50_UPI000429DAEA LamB YcsF family protein 1.94408159709e-06 7.36805082408e-07 -487392343.925 +UniRef50_Q2S6G3 N acetylmuramic acid 6 phosphate etherase 6.34452877274e-08 1.19211350155e-07 22513443.7286 +UniRef50_U3KRA1 2.01935365818e-07 5.93521871013e-07 158088277.454 +UniRef50_UPI0004002A98 peroxiredoxin 2.14039525811e-07 1.46770844706e-05 5838908725.74 +UniRef50_O26293 Putative glutamine amidotransferase MTH_191 2.46585552814e-05 6.31636943427e-06 -7404965510.41 +UniRef50_M9REL9 1.20005114013e-06 2.49764231824e-07 -383642486.215 +UniRef50_UPI000262CE83 molybdopterin biosynthesis protein MoeB 3.08415629599e-07 3.93587812719e-07 34385055.5058 +UniRef50_M9R8D3 1.49498981563e-05 2.57918519823e-06 -4994208626.9 +UniRef50_M0XFB3 6.75989933849e-08 4.94023284623e-07 172152719.187 +UniRef50_Q8DUC6 1.24417927162e-06 6.58698970703e-06 2156958136.43 +UniRef50_N6YKC6 ISPsy6, transposase 2.02453183491e-06 2.62525826019e-07 -711343448.034 +UniRef50_UPI00029CD3E9 cation transport ATPase, partial 3.66033828133e-07 2.00560950748e-07 -66803431.1809 +UniRef50_UPI0003B71BA4 ABC transporter permease, partial 2.95187469514e-07 1.11775702274e-06 332081422.701 +UniRef50_O27280 Probable dihydroorotate dehydrogenase B ), electron transfer subunit 3.27646536977e-05 7.01064507089e-06 -10397209319.9 +UniRef50_W0YRK3 Putative thioesterase 7.1434913512e-07 1.22569586611e-06 206436950.231 +UniRef50_P50456 Protein mlc 4.50629227192e-05 1.92374181264e-05 -10426073118.7 +UniRef50_UPI0001CB956C PREDICTED 7.42741603044e-08 3.6137647226e-08 -15396178.3174 +UniRef50_A3UCU0 5.89282781618e-07 1.64214993614e-07 -171605082.186 +UniRef50_G3XCV3 Pseudaminidase 8.94680172104e-06 3.48423188776e-06 -2205306474.97 +UniRef50_UPI00046CA980 hypothetical protein 1.03134540428e-06 8.30384340167e-06 2935996685.13 +UniRef50_UPI0000222793 Hypothetical protein CBG15144 4.76798104979e-08 7.43423387758e-07 280880219.874 +UniRef50_UPI000475010A CoA transferase 1.77751223697e-07 1.03484718355e-07 -29982299.5591 +UniRef50_B4D594 4.8185079133e-07 4.41455210369e-08 -176706988.865 +UniRef50_F4LXR7 PTS system transcriptional activator 2.58344947161e-06 1.15214692699e-05 3608388274.41 +UniRef50_UPI000362454E hypothetical protein, partial 2.79195077368e-06 7.40173396883e-07 -828327705.154 +UniRef50_UPI00047529B6 XRE family transcriptional regulator 1.34734766548e-06 2.09618877371e-05 7918630524.38 +UniRef50_I1ZJL0 Nicotinate phosphoribosyltransferase 8.87987135156e-05 8.01017535971e-05 -3511069442.8 +UniRef50_F8HYA2 Nucleoside permease 0.000119047796699 3.54020740774e-05 -33768804670.8 +UniRef50_J9P4X2 1.66866507466e-06 8.95894213725e-06 2943174311.93 +UniRef50_A0A058Z6X5 2.32379403655e-07 2.89762915922e-07 23166428.0771 +UniRef50_A6M027 YCII related 2.83495056924e-05 1.24343875871e-05 -6425128479.57 +UniRef50_P65213 Potassium transporting ATPase C chain 1 5.53997013872e-05 3.09685078509e-05 -9863172635.06 +UniRef50_Q6FE54 5.12424419253e-06 0.000132589333071 51459220552.6 +UniRef50_J0MDM2 2.69631637761e-06 7.1028548275e-07 -801785043.595 +UniRef50_A6LW35 5.47508094968e-06 7.13710053181e-06 670977700.58 +UniRef50_A6LW34 4.36399987111e-06 8.85387665832e-06 1812618355.98 +UniRef50_P23504 Cell surface antigen I II 1.81275939383e-05 6.50220892318e-06 -4693310590.11 +UniRef50_A5UL13 Acetolactate synthase , large subunit, IlvB 2.79597425515e-05 5.84644573848e-06 -8927409284.08 +UniRef50_P76655 Putative outer membrane usher protein YqiG 1.62472913007e-05 6.45227681151e-06 -3954367547.63 +UniRef50_UPI00035C946D hypothetical protein 2.47893644858e-07 3.40754936465e-06 1275591787.42 +UniRef50_UPI000377D66B hypothetical protein 1.31790862294e-07 8.04769440166e-07 271689710.263 +UniRef50_E8SK78 ABC transporter ATP binding protein 0.000217874363306 6.34562869259e-05 -62340472357.5 +UniRef50_P43085 Phosphoenolpyruvate carboxykinase [ATP] 6.76049522965e-05 3.53198982013e-05 -13033872520.4 +UniRef50_F5HTK1 Alcaligin biosynthesis enzyme family protein 3.37213365454e-06 8.6628498287e-05 33611616072.6 +UniRef50_Q48KB4 Tat pathway signal sequence domain protein 1.17050282886e-05 5.0992959632e-06 -2666815201.22 +UniRef50_W4THQ3 Exodeoxyribonuclease V alpha chain 8.82891222297e-07 1.84990175522e-06 390394018.695 +UniRef50_UPI0003604119 hypothetical protein 1.13143981663e-07 1.54021950422e-07 16502937.6171 +UniRef50_UPI0003B700CE molybdopterin biosynthesis MoeZ 3.57262595896e-07 5.10606179944e-07 61906686.6176 +UniRef50_B6BAZ3 2.23612922757e-07 1.41637150277e-07 -33094625.306 +UniRef50_A0A058T111 Glycerol 3 phosphate acyltransferase 3.33973788365e-05 7.01930699578e-06 -10649151297.4 +UniRef50_Q1QVF5 Phosphoheptose isomerase 2.80360261003e-07 9.96154590681e-06 3908413446.72 +UniRef50_UPI0002BA0065 hypothetical protein, partial 3.65959281483e-06 3.68773989167e-06 11363320.3238 +UniRef50_B5Y0W4 UPF0234 protein KPK_4305 7.71382803832e-06 8.09076916587e-06 152175758.78 +UniRef50_UPI0003B69561 IMP cyclohydrolase 3.64198487707e-08 1.13631075166e-07 31171119.5841 +UniRef50_UPI0001744350 glycine hydroxymethyltransferase 5.43278517763e-07 1.1810801453e-06 257488343.743 +UniRef50_UPI000470759E ATP dependent DNA helicase PcrA 2.2767975394e-07 3.54729822884e-08 -77596232.3582 +UniRef50_Q2G1Q2 1 phosphatidylinositol phosphodiesterase 0.000122526986999 7.67549261549e-06 -46366957669.1 +UniRef50_B9KLG1 Membrane anchored oxidoreductase 3.16724992267e-05 9.23417572624e-06 -9058626546.34 +UniRef50_UPI00047BB328 phosphoenolpyruvate carboxykinase 3.70943559105e-08 3.01753922579e-07 106846314.802 +UniRef50_P03014 DNA invertase from lambdoid prophage e14 3.83349400254e-05 2.12528194228e-05 -6896261708.46 +UniRef50_Q5L3T0 Type III pantothenate kinase 5.87109070158e-06 2.80214634288e-05 8942377285.61 +UniRef50_G8LV00 Transposase 2.84407251873e-06 6.71530690386e-06 1562864826.66 +UniRef50_D0KD36 Lipid A palmitoyltransferase PagP 1.4690437816e-05 3.19261302914e-06 -4641812960.65 +UniRef50_UPI00047780D2 alanine dehydrogenase 1.27751402393e-07 1.35502889441e-07 3129370.44272 +UniRef50_D6CRU4 2.54366637794e-07 7.21115035386e-08 -73578634.2207 +UniRef50_B9JWD9 5.9942485479e-07 4.89198339163e-07 -44499796.9901 +UniRef50_UPI0003479767 hypothetical protein 2.21732765988e-08 1.01266775305e-06 399874774.877 +UniRef50_UPI0003605B2B hydrogenase nickel incorporation protein HypA 8.64059133047e-06 3.49089772983e-06 -2078994500.43 +UniRef50_A4WW77 Ribosome maturation factor RimP 0.000117719189282 2.47377764146e-05 -37537737384.8 +UniRef50_E3EZC8 1.76408721327e-05 4.59099731777e-06 -5268394602.75 +UniRef50_W7DGX3 Bleomycin resistance protein 2.5492751768e-06 1.86448281897e-06 -276459078.203 +UniRef50_B2TRM3 NAD kinase 1.35786326927e-06 5.86882801755e-06 1821131824.64 +UniRef50_C1A7Q5 9.32520563225e-05 1.79019189762e-05 -30419775096.9 +UniRef50_N6UYT1 2.25987607162e-07 3.62094898069e-08 -76615754.8156 +UniRef50_Q3ABL6 Dephospho CoA kinase 1.20243908199e-07 2.08714931199e-07 35716837.6466 +UniRef50_UPI0003C0FD63 PREDICTED 1.92332436971e-08 6.0561121335e-08 16684571.3525 +UniRef50_O34011 Fructose 1,6 bisphosphatase class 1 0.00014432083949 2.63944714889e-05 -47608321881.3 +UniRef50_UPI00046969A6 glutamine amidotransferase 2.42198891871e-07 1.93209237267e-06 682230735.524 +UniRef50_UPI000191383D hypothetical protein, partial 2.19393285239e-06 5.70092336986e-06 1415815107.52 +UniRef50_D2J6T4 0.000146825025136 0.000184641894148 15267134085.3 +UniRef50_H8L0H5 Plasmid stabilization system protein 7.86429143437e-06 1.33388549242e-05 2210148461.29 +UniRef50_D5MJN8 3.4300926193e-07 2.01767967235e-07 -57020843.894 +UniRef50_U5ULW6 2.00748310105e-06 1.91019005938e-07 -733328845.717 +UniRef50_Q57QS3 Ribosomal RNA large subunit methyltransferase I 3.79190236464e-05 1.75416308921e-05 -8226603513.64 +UniRef50_J3CV04 1.1256696039e-05 3.45886947823e-06 -3148078272.68 +UniRef50_S5KGZ8 2.44073701629e-07 2.77223710451e-05 11093325834.2 +UniRef50_Q66FE1 Thiol 6.96968325316e-06 2.72439138384e-06 -1713876423.23 +UniRef50_B4U9I4 Cysteine tRNA ligase 2.53322269882e-08 1.05301970904e-07 32284766.9579 +UniRef50_A0A038GF87 Plasmid pRiA4b ORF 3 family protein 5.63196768525e-07 1.35083780639e-07 -172834466.747 +UniRef50_R4QCF3 Membrane protein 1.71703875971e-06 6.16852914197e-05 24209919492.1 +UniRef50_Q8CTK1 0.000324925758293 5.18341774847e-05 -1.10250422383e+11 +UniRef50_P77935 Amidophosphoribosyltransferase 6.44337706952e-05 2.76435319734e-05 -14852670839.0 +UniRef50_UPI00030EA43E hypothetical protein 3.03099895798e-08 5.64913886355e-08 10569752.0807 +UniRef50_B3R9A8 YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal 3.13301799874e-05 0.000411856486794 1.53623139641e+11 +UniRef50_UPI00040764A3 amidohydrolase 4.027611842e-08 6.82205019724e-07 259154574.81 +UniRef50_B2K1F3 3.12549922843e-06 4.85734848502e-06 699168797.066 +UniRef50_E0TI30 1.43836894815e-06 5.26031724255e-07 -368321732.923 +UniRef50_UPI000471B390 hypothetical protein, partial 3.29708045511e-08 6.5103841184e-08 12972501.2054 +UniRef50_F3IHL1 Transcriptional regulator, AsnC family protein 7.158995421e-07 1.12538268527e-06 165313369.821 +UniRef50_UPI000288AE42 MarR family transcriptional regulator 1.50946792519e-07 3.70789004918e-07 88752998.9128 +UniRef50_Q8D2C5 Oligoribonuclease 1.99303131102e-05 5.14815856262e-07 -7838274496.34 +UniRef50_Q6M0B4 UDP N acetylglucosamine 2 epimerase homolog 9.61199021542e-06 1.33927003941e-05 1526319093.66 +UniRef50_P77562 1.43411795248e-05 3.35732882396e-06 -4434315314.92 +UniRef50_Q8CWZ2 5.55126454193e-06 1.5542984484e-05 4033779952.81 +UniRef50_F6D1U5 Sulfate transporting ATPase 4.23660680077e-05 1.49112131277e-05 -11083861824.0 +UniRef50_Q70AC7 Methylmalonyl CoA carboxyltransferase 5S subunit 5.54549785474e-05 1.83141626312e-05 -14994203154.4 +UniRef50_UPI000380FAC7 hypothetical protein, partial 1.08593169994e-07 6.49801391588e-08 -17607115.7402 +UniRef50_O25369 Outer membrane protein assembly factor BamA 3.66470436589e-06 4.18504270778e-05 15416044850.3 +UniRef50_G5P5B1 Potassium transporting ATPase B chain 8.00975621009e-08 8.24558971844e-06 3296509385.37 +UniRef50_C5N6G1 2.7401988873e-05 5.88847750693e-06 -8685268538.97 +UniRef50_A9M2U6 Oxygen independent coproporphyrinogen III oxidase 1.31681158905e-06 2.44451735921e-05 9337203557.53 +UniRef50_B9L274 Ribosomal RNA small subunit methyltransferase H 1.14168869486e-07 0.000321372181383 1.29695801931e+11 +UniRef50_P35159 Ribosomal large subunit pseudouridine synthase B 1.53937981152e-07 6.6519374124e-05 26792540966.3 +UniRef50_A7ZIN4 Adenylate kinase 2.74337209643e-05 1.55478157458e-05 -4798485793.17 +UniRef50_I4CR94 6.01972024774e-08 1.29901047237e-07 28140297.4918 +UniRef50_U3HDX0 4.34886805021e-07 6.23068150023e-07 75971118.2221 +UniRef50_M9S9D1 1.02642635941e-06 3.20511788102e-06 879564502.825 +UniRef50_A8LU40 Replication protein C 2.38194922091e-05 2.92132676889e-06 -8436845837.54 +UniRef50_S5XWE5 Sarcosine oxidase 4.05759707163e-06 1.32034294431e-06 -1105063081.08 +UniRef50_R7D072 6.78633164352e-08 1.19527736585e-07 20857560.4082 +UniRef50_Q895M3 Ribosome maturation factor RimM 9.05966373245e-06 4.55501344774e-06 -1818582598.21 +UniRef50_P78271 2.98557451354e-05 1.24006736609e-05 -7046826552.07 +UniRef50_Q5M3Y0 Cell division protein 4.2033385397e-05 3.10893202238e-05 -4418253409.2 +UniRef50_Q3JY00 CarR 6.30810512401e-07 7.07586644453e-06 2601948169.53 +UniRef50_R4K7H3 DNA repair protein RecN 3.72408169587e-06 9.23721794552e-06 2225720757.77 +UniRef50_A3PGQ0 ErfK YbiS YcfS YnhG family protein 5.48844726795e-05 9.5184917707e-06 -18314803196.1 +UniRef50_B9KM31 8.11676282119e-06 9.15562800384e-06 419402622.545 +UniRef50_A4WW68 Flagellar M ring protein 1.35440902046e-05 4.36405557855e-06 -3706092630.23 +UniRef50_UPI000467700F hypothetical protein 2.10324750216e-08 2.8180648569e-08 2885805.37904 +UniRef50_I6U0E0 Stress response protein 5.0821074154e-05 1.37879705175e-05 -14950718385.3 +UniRef50_UPI0003653B40 hypothetical protein 1.18262841564e-06 2.08634390892e-07 -393213340.042 +UniRef50_A4J700 Endoribonuclease L PSP 6.83772871804e-05 4.72523032654e-05 -8528415239.19 +UniRef50_L5RDB7 Putative gluconolactonase domain protein 2.94144926378e-06 2.12555573097e-05 7393630157.51 +UniRef50_Q4JVZ1 Thiamine phosphate synthase 2.10065254141e-05 6.00514836908e-05 15762928791.8 +UniRef50_UPI0003318BBF 2.60408591974e-07 2.24369714747e-07 -14549336.9833 +UniRef50_J0CD84 3.39176229073e-07 1.89403013897e-06 627713603.63 +UniRef50_C5YXG0 1.23072411431e-07 1.78250453312e-07 22276052.6181 +UniRef50_UPI0003B2FF21 hydantoinase 3.77970207116e-08 6.94631480963e-08 12784004.2123 +UniRef50_I4KQZ4 1.01044746277e-07 1.73338582147e-07 29185908.6858 +UniRef50_UPI0003595520 PREDICTED 3.81360134766e-07 1.2552185264e-06 352787356.151 +UniRef50_I6RQF7 1.43349109691e-05 2.24291168503e-05 3267730241.32 +UniRef50_UPI00047616F1 hypothetical protein 4.2441254048e-08 3.45654141749e-07 122410763.605 +UniRef50_D8JKH6 Acyl CoA dehydrogenase 2.98272492969e-06 6.07280268115e-05 23312486984.2 +UniRef50_E8SH59 Chromosome replication initiation protein dnaD 0.000153268633487 3.3208542881e-05 -48469731880.6 +UniRef50_Q4LA96 1.75064309322e-05 3.60065744148e-06 -5613931401.23 +UniRef50_F6EZI7 Diguanylate cyclase with GAF sensor 2.62519084803e-05 1.05644592491e-05 -6333215761.29 +UniRef50_P77381 3.36650823539e-05 7.19478523288e-06 -10686383774.8 +UniRef50_A1WPN7 Peptidase C39, bacteriocin processing 1.20873094671e-05 9.69341301591e-05 34253702700.9 +UniRef50_Q2T3A1 Transcriptional regulator, LysR family 1.909709893e-06 2.23161238178e-06 129955984.908 +UniRef50_C6SR09 3.87280221803e-05 7.19678751628e-06 -12729546365.6 +UniRef50_E4PKD1 Adenylate guanylate cyclase 1.03831307265e-05 5.60886954259e-06 -1927427826.72 +UniRef50_Q4L4W9 Putative peptidyl prolyl cis trans isomerase 7.77862301132e-08 2.97577405515e-06 1169953247.28 +UniRef50_Q9RZC3 Glucose 1 phosphate thymidylyltransferase, putative 4.87500640715e-06 0.000653683785222 2.61932065787e+11 +UniRef50_UPI00046624C5 ribonuclease E 2.15714332845e-08 2.80005668047e-08 2595520.09644 +UniRef50_P45092 Arginine transport ATP binding protein ArtP 2.53248980406e-05 2.121031902e-05 -1661106042.18 +UniRef50_Q1YHY0 3.21687752459e-06 4.10844560814e-07 -1132829941.37 +UniRef50_X2HE44 DNA polymerase III delta prime subunit 7.09831890636e-06 2.52572322166e-05 7330976138.25 +UniRef50_Q890R3 Energy coupling factor transporter ATP binding protein EcfA2 2.92525046714e-06 3.17174375859e-05 11623759259.7 +UniRef50_UPI00047DDBCA molecular chaperone DnaJ 1.04507773522e-07 2.13350803741e-07 43941266.9536 +UniRef50_UPI000476F810 alkylhydroperoxidase 4.12207709729e-07 2.54622433705e-06 861528699.778 +UniRef50_Q81L09 S adenosylmethionine decarboxylase proenzyme 1 1.29976962468e-07 2.50575289812e-05 10063558645.4 +UniRef50_UPI0003B4E07A peptide deformylase 2.48539670114e-07 8.77124661315e-07 253767474.553 +UniRef50_A5IW20 LPXTG motif cell wall anchor domain 5.81041161264e-05 2.5407396483e-05 -13200066953.9 +UniRef50_A6W2Y5 Short chain dehydrogenase reductase SDR 6.98268786814e-05 3.02390183661e-05 -15982105007.0 +UniRef50_P70720 3 oxoacyl [acyl carrier protein] reductase FabG 1.66978133217e-05 0.000193489412926 71372938237.0 +UniRef50_UPI000363345A hypothetical protein 1.55330571043e-06 1.57250349826e-06 7750382.53032 +UniRef50_R5PT01 6 pyruvoyl tetrahydropterin synthase 1.65703016709e-06 1.05785492798e-06 -241894396.736 +UniRef50_E1S9J4 Signal transduction histidine kinase 2.1821731031e-06 5.18512110986e-05 20052000146.4 +UniRef50_A3IDC9 7.07315649066e-06 4.56403040261e-06 -1012964992.19 +UniRef50_M4K0X3 7.75693449478e-06 5.53299269543e-06 -897832595.232 +UniRef50_J9M4I5 6.25602599357e-08 1.50104862497e-08 -19196427.1384 +UniRef50_O31440 Fatty acid peroxygenase 7.22193721735e-08 1.29426314057e-07 23095144.4465 +UniRef50_UPI000371B5AE hypothetical protein 5.37853417855e-07 1.70369201795e-07 -148357887.562 +UniRef50_S5YFU3 SMP 30 Gluconolaconase LRE domain protein 2.23400713147e-06 2.15297719466e-06 -32712779.8393 +UniRef50_UPI000225EF72 magnesium transporter 1.06497184209e-06 7.85751203881e-07 -112724798.068 +UniRef50_B2V488 Metallo beta lactamase family protein 3.66794708838e-06 6.04560087828e-06 959888012.076 +UniRef50_G7RAI1 3.70084302795e-06 1.59456500466e-05 4943378854.13 +UniRef50_U6LJB2 1.70234329309e-07 3.49829073229e-07 72504601.9958 +UniRef50_UPI0003B686A2 AraC family transcriptional regulator 8.52065457567e-07 1.16493741055e-07 -296959328.436 +UniRef50_P09394 Glycerophosphoryl diester phosphodiesterase 3.94757382618e-05 1.04354922623e-05 -11723903673.9 +UniRef50_D7GCV1 Folylpolyglutamate synthase 1.18087379206e-06 5.23841012773e-05 20671371270.0 +UniRef50_X9G8K3 Surface protein G 1.58805050229e-05 1.67793582503e-06 -5733751470.32 +UniRef50_G8VA48 Lactate malate dehydrogenase, NAD binding domain protein 2.28779387182e-06 6.31749488628e-05 24580891639.3 +UniRef50_Q21DG3 Ribosomal RNA small subunit methyltransferase G 2.29568351826e-07 3.55005037617e-07 50640329.3351 +UniRef50_UPI0002D3A901 transaldolase 1.01589045223e-06 6.94478239413e-07 -129758054.486 +UniRef50_W1BA41 Chromosome partition protein MukF 4.49241696888e-06 3.22676294362e-06 -510960061.319 +UniRef50_F3U217 GntR family transcriptional regulator 6.30367019057e-05 2.25580969172e-05 -16341709562.2 +UniRef50_V9XEY4 Glutaminase 1.96622159211e-06 6.20868217029e-05 24271424027.5 +UniRef50_D9XFH8 6.54978288092e-06 2.20493869669e-05 6257380371.05 +UniRef50_UPI00035F6847 cold shock protein 2.57376312444e-07 1.96995627722e-07 -24376423.3766 +UniRef50_D5WIA8 Acyl CoA dehydrogenase domain protein 5.78069824507e-06 8.62829250615e-05 32499736839.2 +UniRef50_A0A013SXP0 Phosphoenolpyruvate protein phosphotransferase 8.25829468874e-07 2.53833850772e-05 9914186554.17 +UniRef50_U3T0Z6 dGTP pyrophosphohydrolase thiamine phosphate synthase 5.47145136573e-06 3.13359720103e-05 10441824377.6 +UniRef50_P50600 Protein TolA 1.26554723212e-05 2.94335586571e-06 -3920900594.15 +UniRef50_Q6GK25 Protein EssB 0.000119329809133 2.54262469166e-05 -37910020393.1 +UniRef50_C8UCL7 1.00072855528e-05 3.55803259269e-06 -2603642561.23 +UniRef50_X5J954 Transposase ISCca5, IS5 ssgr IS5 family 4.45942749009e-07 1.31710752731e-07 -126859312.958 +UniRef50_A0QL30 1.49369550588e-07 6.96787679778e-07 220999416.33 +UniRef50_Q892Q8 Heat inducible transcription repressor HrcA 1.42806805364e-06 7.42270567195e-06 2420108768.99 +UniRef50_UPI000370A1E5 hypothetical protein 6.44574868682e-07 9.22253716506e-08 -222990270.042 +UniRef50_Q9FDM1 Prolipoprotein diacylglyceryl transferase 9.18026690241e-07 1.12085412574e-07 -325368383.806 +UniRef50_P36638 Peptide transport system ATP binding protein SapF 4.24071720815e-05 1.19102980072e-05 -12311962302.5 +UniRef50_UPI00037F8A46 hypothetical protein 4.30682170917e-08 5.63542892726e-08 5363750.37787 +UniRef50_P75905 Poly beta 1,6 N acetyl D glucosamine synthase 2.431219069e-05 5.99056576316e-05 14369519385.3 +UniRef50_I1FPH4 2.60639077406e-08 7.03007481933e-08 17858955.3378 +UniRef50_S1EVH2 Transcriptional regulator 1.34492173059e-05 6.30291045772e-06 -2885051769.66 +UniRef50_P25519 GTPase HflX 3.70532114766e-05 5.06708949174e-06 -12913189959.2 +UniRef50_F3J1W5 5.03119092704e-06 3.05500039855e-05 10302257982.8 +UniRef50_UPI0004286E00 hypothetical protein 5.49754718614e-08 6.52530133892e-08 4149169.63439 +UniRef50_Q9A2A6 9.22732239607e-07 2.50293809212e-07 -271471646.098 +UniRef50_UPI0003B41A8E MerR family transcriptional regulator 5.18794096916e-06 1.30833047108e-06 -1566246366.25 +UniRef50_UPI00047DA8A6 transcriptional regulator 3.37829415838e-07 1.44823157659e-07 -77918994.88 +UniRef50_UPI000380DF8A hypothetical protein 4.67356673812e-08 1.10739915172e-07 25839300.2536 +UniRef50_A0A023RW94 Acyltransferase 4.92253223462e-06 7.53322163417e-05 28425253498.0 +UniRef50_UPI0004074116 hypothetical protein 1.81753631272e-07 2.3802491491e-07 22717407.731 +UniRef50_A7IK15 Chromosomal replication initiator, DnaA 4.50718373516e-07 1.21896824604e-07 -132749294.39 +UniRef50_Q0AMH8 UPF0301 protein Mmar10_2223 3.07703332223e-07 2.3100879244e-07 -30962526.8582 +UniRef50_Q8DY37 UPF0348 protein SAG1656 5.96244851989e-05 2.39852503203e-05 -14387996463.1 +UniRef50_UPI00038154C1 hypothetical protein 1.57646450315e-07 1.41896326655e-07 -6358518.19729 +UniRef50_G7D6S7 2.01932427667e-06 6.04803049477e-07 -571059577.544 +UniRef50_F7U6Q0 3.81006170307e-07 4.56870186004e-08 -135372456.373 +UniRef50_D7FE46 RBL01243 1.12309283497e-06 6.12568863742e-05 24276750376.4 +UniRef50_A5UNG5 CMP sialic acid synthetase, NeuA 4.06270603338e-05 7.07610763133e-06 -13544931322.5 +UniRef50_UPI0001745DFF Response regulator consisting of a CheY like receiver domain and a winged helix DNA binding domain 9.54160152509e-08 1.24488313335e-06 464053981.125 +UniRef50_C5WGS2 Amino acid ABC transporter extracellular binding protein 3.80953621996e-05 1.83643653005e-05 -7965645574.73 +UniRef50_P13716 Delta aminolevulinic acid dehydratase 1.75799955361e-07 8.07306120531e-08 -38380660.5254 +UniRef50_F7ZTM8 Riboflavin biosynthesis protein RibD 3.14684211198e-06 6.79962167477e-06 1474671934.14 +UniRef50_Q6G7T8 6.71469129317e-05 2.23391417608e-05 -18089447074.9 +UniRef50_UPI00037BBACA hypothetical protein, partial 4.11444894537e-08 6.01750962138e-08 7682889.48086 +UniRef50_R9ZHE0 Type II secretion system protein 1.56136021166e-05 2.22017253215e-05 2659706183.18 +UniRef50_P46354 Purine nucleoside phosphorylase 1 9.40296002323e-05 5.9824157719e-05 -13809156890.6 +UniRef50_A1VVY8 LemA family protein 2.69446105961e-07 1.39501559727e-07 -52460207.9136 +UniRef50_UPI0002490C4B DeoR faimly transcriptional regulator 1.62474778373e-06 1.22968628094e-07 -606286674.034 +UniRef50_H2A790 Amino acid ABC transporter, amino acid binding permease protein 7.79444803455e-05 7.54774716137e-05 -995961698.629 +UniRef50_UPI0003C13A29 PREDICTED 1.8100239229e-07 5.30812739702e-08 -51643325.2344 +UniRef50_UPI000360760D hypothetical protein 2.35823071417e-07 8.52589376936e-08 -60784588.4137 +UniRef50_UPI0001FFDEF3 hypothetical protein 2.60430978063e-08 1.24112749991e-06 490544483.89 +UniRef50_UPI00036476ED hypothetical protein 1.82202713707e-07 2.82817237649e-07 40619317.9944 +UniRef50_UPI0002555726 macrolide ABC transporter ATP binding protein 5.29845423556e-08 3.96332700578e-07 138613864.83 +UniRef50_UPI000287EE3A rhizobiocin RTX toxin and hemolysin type calcium binding protein 2.79745432699e-07 4.18818086338e-08 -96028463.9499 +UniRef50_U3SUU9 5.25092837966e-05 1.94749894873e-05 -13336349989.0 +UniRef50_P10249 Sucrose phosphorylase 4.99788296314e-05 8.48982805772e-05 14097410856.7 +UniRef50_C3Z7Q3 6.93080651327e-07 5.49170719359e-08 -257634468.148 +UniRef50_Q09067 Urease accessory protein UreH 2.55633852495e-06 4.18986501494e-05 15882973987.2 +UniRef50_UPI000464113C multidrug ABC transporter 6.2276009702e-08 3.46831031503e-07 114878354.184 +UniRef50_I2BZM7 Transcriptional regulator, AraC family 3.32530554699e-06 7.90316694578e-06 1848138823.37 +UniRef50_UPI00047C04E2 diguanylate cyclase 5.45297305169e-08 8.51236180273e-08 12351127.8172 +UniRef50_A0KL52 Adenylate kinase 8.53103151564e-08 1.44153518997e-07 23755723.4778 +UniRef50_UPI000262D071 pyrroline 5 carboxylate reductase 1.10598522484e-07 1.53571852148e-07 17348860.5274 +UniRef50_L7WZS3 Lipase 7.79010151918e-05 3.11786590358e-05 -18862388528.0 +UniRef50_A6LR40 Ribonuclease R 2.79850845443e-06 1.86752537675e-05 6409636912.47 +UniRef50_U6HJZ8 Succinate dehydrogenase iron sulfur protein 3.7476923495e-07 1.36065769359e-06 398015268.965 +UniRef50_Q9B6E7 Cytochrome c oxidase subunit 1 2.07046673402e-07 1.03680969772e-07 -41730002.9953 +UniRef50_UPI000288E3B9 DNA polymerase I, partial 1.21075766092e-06 6.88984415082e-07 -210646262.223 +UniRef50_Q87U89 5.58983172193e-06 3.20771188731e-06 -961691009.134 +UniRef50_UPI0001BF7861 hypothetical protein SMAC_10214, partial 5.08393907492e-07 1.50504638575e-06 402360835.774 +UniRef50_Q97K95 L aspartate oxidase 2.88047013599e-06 7.43680229215e-06 1839447203.92 +UniRef50_O31462 6.40013399744e-05 3.43945847283e-05 -11952610408.6 +UniRef50_A6QIT1 1.53908507774e-05 1.46283289675e-05 -307839411.851 +UniRef50_D0CS40 Outer membrane transporter, ompp1 fadl todx family 1.42236894092e-07 5.62289464677e-08 -34722463.8921 +UniRef50_G9PLE0 3.56914126801e-07 1.79815884782e-06 581848179.937 +UniRef50_B9KU12 1.24016601692e-06 5.18889107334e-06 1594148761.58 +UniRef50_UPI0003B6C6DF histidine kinase 3.83086464505e-06 7.33909615101e-07 -1250278749.5 +UniRef50_Q9Z4W7 Anthranilate synthase component 1 2.87569026375e-08 6.6070863e-08 15064103.6921 +UniRef50_K0I5D9 Protease 2.33016042498e-06 2.09692335056e-06 -94160669.0841 +UniRef50_Q3J615 0.000110028199121 3.00144665437e-05 -32302525720.4 +UniRef50_Q3J617 0.000145977411356 6.27458025541e-05 -33601621840.0 +UniRef50_Q9RWA3 2.00793136132e-06 0.0001954974652 78114099194.4 +UniRef50_B7GLM2 ABC type oligopeptide transport system, permease component 0.000234645505474 6.43591413794e-05 -68746694833.8 +UniRef50_A6LYT7 8.4818820978e-06 1.9924469491e-05 4619512946.97 +UniRef50_Q9RWA8 3.67416162542e-06 7.73262416766e-05 29734248529.3 +UniRef50_A6LYT5 3.22637597309e-06 2.52048397039e-06 -284977263.759 +UniRef50_R7LD69 1.46581612115e-07 3.08718426884e-06 1187157377.77 +UniRef50_UPI0003B71B68 molybdopterin dehydrogenase, partial 1.47504267633e-07 4.24301559936e-07 111746463.587 +UniRef50_UPI0004679659 hypothetical protein 1.64377266094e-06 3.16029364193e-07 -536026262.14 +UniRef50_UPI0003604091 hypothetical protein 3.12885741974e-07 7.63406363828e-08 -95496161.862 +UniRef50_UPI000367D1C3 hypothetical protein 3.14901085121e-07 4.6210633582e-07 59428566.1187 +UniRef50_U5MT62 Nodulation protein NolG 3.97447769323e-06 2.46574377197e-05 8349964771.16 +UniRef50_A0KEB8 Tetratricopeptide repeat family 4.50246784272e-08 8.23583706457e-07 314313833.609 +UniRef50_H6NKR1 6.75751366856e-08 7.96761159791e-06 3189341663.74 +UniRef50_A5UMM4 Serine threonine protein kinase related protein 3.71371749971e-05 8.54600463143e-06 -11542606329.7 +UniRef50_C5YW74 9.9400863872e-07 5.99955498646e-07 -159084088.224 +UniRef50_Q8D954 sn glycerol 3 phosphate import ATP binding protein UgpC 1.13757837482e-05 6.91402132548e-08 -4564630743.16 +UniRef50_E6US82 TROVE domain containing protein 5.84131469492e-06 1.61814837078e-05 4174453118.65 +UniRef50_O32168 Methionine import system permease protein MetP 0.000205838245752 0.000113935068067 -37102440610.2 +UniRef50_UPI0003B3F610 peptidylprolyl isomerase 8.87647443269e-08 1.4272946369e-07 21786219.4285 +UniRef50_A5INZ6 8.38553059702e-05 4.52688570361e-05 -15577822943.7 +UniRef50_U3QUF7 Chemotaxis protein 1.75134628674e-05 8.84700872465e-06 -3498753886.78 +UniRef50_D4HF48 8.75670734285e-08 2.81789063998e-05 11340818405.6 +UniRef50_UPI0003B6D344 MarR family transcriptional regulator 1.98043609353e-07 1.17973947863e-06 396322669.19 +UniRef50_G8VM83 Serine threonine protein kinase 1.3214499857e-06 6.29469775834e-05 24878981721.5 +UniRef50_Q9RSR9 Oligoendopeptidase F, putative 2.45113602402e-06 0.000167108129191 66474048710.0 +UniRef50_J3L6D3 1.60804316036e-06 2.59699546669e-06 399252181.875 +UniRef50_Q6F8Q1 Protease HtpX 2.28779387182e-06 9.4073233205e-05 37054908192.8 +UniRef50_W1EDI8 Error prone, lesion bypass DNA polymerase V 3.28856517855e-05 8.85735765023e-06 -9700517202.75 +UniRef50_F1XKP7 2.66221352618e-06 2.0319956779e-06 -254426678.993 +UniRef50_N2GZC1 Inner membrane transport protein YhjV 1.26002025586e-05 2.17945907889e-06 -4206982019.66 +UniRef50_UPI00036F024D hypothetical protein 2.11663099346e-07 2.21282658602e-07 3883534.11691 +UniRef50_A4X0E7 Transport system permease protein 6.10599482752e-07 5.34558720004e-07 -30698589.0465 +UniRef50_B9KGQ3 Transcriptional activator protein 9.68448593373e-05 2.3318276558e-05 -29683583740.6 +UniRef50_Q9PB21 3 phosphoshikimate 1 carboxyvinyltransferase 1.1719286871e-07 5.41456039399e-08 -25452954.4646 +UniRef50_UPI0003F0BF74 PREDICTED 4.47457613344e-07 3.42524106214e-07 -42362944.5073 +UniRef50_A4WX47 Heat shock protein DnaJ domain protein 0.000124123753124 3.33487280647e-05 -36646991551.3 +UniRef50_R9ZG29 Chemotaxis protein CheY 8.73554667212e-06 1.62470352679e-05 3032480122.45 +UniRef50_A8LHQ6 Protein TolB 3.35261676944e-05 8.67576778374e-06 -10032411392.6 +UniRef50_D4HB86 ABC transporter, ATP binding protein 1.22693170804e-06 5.82952625621e-05 23039185473.0 +UniRef50_Q2NAE1 Bifunctional enzyme IspD IspF 4.21011749954e-08 8.94643206959e-07 344181680.171 +UniRef50_UPI000478A42E peptide ABC transporter permease 1.08031624291e-07 3.21643854929e-07 86237878.8254 +UniRef50_Q12BS8 Prolipoprotein diacylglyceryl transferase 2.29538173633e-07 2.82769538627e-07 21490155.2704 +UniRef50_L0WHY8 Ppx GppA phosphatase 1.02763880809e-06 7.52989454377e-05 29984237897.8 +UniRef50_P0A2J6 Peptide transport system permease protein SapC 1.62156892181e-05 8.26934852159e-06 -3208035251.75 +UniRef50_A9WJ95 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.32847458146e-07 9.21340891981e-08 -16436486.6535 +UniRef50_U4V848 2.67494990054e-07 4.01361224971e-07 54043441.7594 +UniRef50_M9VBD0 2 dehydropantoate 2 reductase 4.50336783549e-06 3.08168074534e-05 10623058476.0 +UniRef50_UPI000349B178 hypothetical protein 4.55180592093e-07 4.76336786757e-07 8541015.40156 +UniRef50_UPI00046469DD competence protein 1.28414290628e-07 4.33445910534e-07 123145008.115 +UniRef50_P02915 Histidine transport ATP binding protein HisP 6.85999148608e-05 0.000134109215993 26446908756.6 +UniRef50_M9VL55 1.60154949157e-06 6.33562160272e-05 24931116695.4 +UniRef50_UPI0002C58260 1.26261422577e-08 1.49683041838e-06 599191479.504 +UniRef50_A1ARJ7 3 dehydroquinate dehydratase 1.45604886031e-07 1.06337860936e-06 370516514.458 +UniRef50_P0A9N6 Pyruvate formate lyase 1 activating enzyme 6.01868320962e-05 2.31620945253e-06 -23363080513.7 +UniRef50_B7K5B1 Adenylyl sulfate kinase 9.75498311682e-08 3.53388667842e-06 1387291353.83 +UniRef50_A7ZSR5 Shikimate kinase 1 5.25713490787e-05 1.63677609501e-05 -14615832795.5 +UniRef50_S0U1N3 4.99834642214e-06 4.72886993363e-06 -108790965.26 +UniRef50_P42199 L cystine binding protein TcyA 0.000114896460309 6.29208601573e-05 -20983187593.6 +UniRef50_UPI0004292B6B hypothetical protein 2.41984150549e-07 4.46471776208e-07 82554163.8239 +UniRef50_G1XC43 1.14017675518e-05 2.79301707413e-06 -3475458209.08 +UniRef50_P65942 Bifunctional protein PyrR 9.21955804342e-08 4.22062422726e-07 133171292.155 +UniRef50_UPI0002D9966A hypothetical protein 1.03519685204e-06 5.90574614253e-06 1966300516.93 +UniRef50_W5XD81 UDP N acetylglucosamine 2 epimerase 7.18094234088e-08 3.40355660737e-07 108415411.442 +UniRef50_R6V945 ATP dependent protease La 2.1754033241e-05 2.9101479221e-06 -7607507743.72 +UniRef50_E2PXX4 Putative regulator 1.51124735866e-07 4.0498032003e-07 102484614.485 +UniRef50_Q57947 4.14096473853e-05 7.15197592501e-06 -13830242357.4 +UniRef50_P0AF33 Respiratory nitrate reductase 2 gamma chain 4.4851366167e-05 2.76428664807e-05 -6947282495.4 +UniRef50_Q57942 1.75042492011e-05 8.36424207519e-06 -3689933037.23 +UniRef50_O27477 UPF0284 protein MTH_1426 3.57850911503e-05 5.66488133949e-06 -12159898317.2 +UniRef50_V8FR31 Histidine kinase 3.9372983494e-06 5.40373763642e-06 592019535.404 +UniRef50_K2AHW0 5.88733301473e-06 3.89092338127e-06 -805975067.729 +UniRef50_A4TIY8 Alkaline phosphatase 1.32590129434e-05 1.83950852537e-05 2073495418.36 +UniRef50_I3X7J2 1.1437196751e-06 5.26123058271e-07 -249331332.977 +UniRef50_C6SPX6 9.30701633793e-05 2.24596537411e-05 -28506329229.3 +UniRef50_C6SPX8 8.47767079612e-07 5.04814880674e-07 -138454011.208 +UniRef50_UPI000361A3EB hypothetical protein 1.64371302355e-07 3.99193813927e-07 94800729.5179 +UniRef50_Q6A9R6 Aminomethyltransferase 2.51627241247e-06 4.8984124473e-05 18759642101.5 +UniRef50_A4WVB3 CDP alcohol phosphatidyltransferase 9.18299573764e-05 3.15883965281e-05 -24320257361.5 +UniRef50_UPI0003B32207 adenosylcobinamide kinase 3.05216719863e-07 4.12456694471e-07 43294093.7317 +UniRef50_UPI00047017D2 hypothetical protein 1.35133781385e-07 1.05584870192e-07 -11929258.0545 +UniRef50_Q6F856 UPF0042 nucleotide binding protein ACIAD3059 1.33387275209e-06 6.75668462065e-05 26739064153.5 +UniRef50_UPI00047859F1 hypothetical protein 1.98337833257e-08 7.89900020386e-07 310885189.676 +UniRef50_A4ZNV6 Truncated internalin A 2.1781502233e-07 9.61514581704e-08 -49117073.8312 +UniRef50_E9C0L1 Cobalamin synthesis protein P47K 5.04717407731e-08 9.20136414449e-08 16770975.0777 +UniRef50_UPI0003C13F84 PREDICTED 1.37984256e-07 1.10826202284e-07 -10964039.5519 +UniRef50_A6LXV4 Methyl accepting chemotaxis sensory transducer 3.83207940757e-06 5.10109131453e-06 512315679.367 +UniRef50_N6U8E6 7.92875117908e-06 1.6988496944e-06 -2515087678.85 +UniRef50_Q0SNA5 Proline tRNA ligase 4.2240035066e-08 2.86562140638e-07 98635832.1888 +UniRef50_UPI00029A8E4B MFS transporter 3.38944857379e-08 4.89725397974e-08 6087195.45235 +UniRef50_UPI00021A5132 PREDICTED 3.65016156333e-08 6.64635600343e-08 12096004.6291 +UniRef50_UPI0002B43A90 PREDICTED 7.19553211168e-07 5.13608747989e-06 1783009081.25 +UniRef50_B1J909 Peptidase C39 bacteriocin processing 2.33852197222e-05 1.52261998247e-05 -3293896455.05 +UniRef50_A6V4I6 Transcriptional regulator, LuxR family 1.76946557275e-06 1.57769544621e-05 5654995155.87 +UniRef50_Q8ZBZ2 Na translocating NADH quinone reductase subunit C 3.76231882575e-06 2.56640646819e-05 8842003566.79 +UniRef50_F7XFJ7 3.16597803972e-06 1.36976954789e-06 -725151410.109 +UniRef50_J9ZMG3 Sulfatase 1.06336595782e-05 3.49487225087e-06 -2882016046.81 +UniRef50_UPI00025561EE acetyl transferase 1.36337218307e-07 2.03879841079e-07 27267785.6542 +UniRef50_H1XS41 UDP N acetylglucosamine 2 epimerase 0.000142640826506 1.32368405204e-05 -52241977108.0 +UniRef50_UPI000440B669 GTP binding protein TypA 4.40734722834e-08 1.05360835202e-07 24742460.4908 +UniRef50_O34996 DNA polymerase I 9.82209783596e-05 3.81261050911e-05 -24261037785.5 +UniRef50_UPI0003C8E764 PREDICTED 1.53252988244e-07 1.23413255449e-07 -12046666.304 +UniRef50_A1A1J0 Prolipoprotein diacylglyceryl transferase 1.23395672917e-07 5.45854487587e-08 -27779531.8891 +UniRef50_UPI000422F3ED selenocysteine specific elongation factor 8.61093315199e-09 7.85166322825e-08 28221788.5784 +UniRef50_Q6AL48 DNA polymerase IV 4.21910786817e-08 8.2810095914e-08 16398395.7081 +UniRef50_D8ULE3 6.05268669368e-07 1.07170768154e-05 4082261034.38 +UniRef50_F0J3V7 Spermidine putrescine ABC transporter ATP binding protein 1.59053085188e-06 0.000298462876047 1.19851008789e+11 +UniRef50_W6B709 Polyketide synthase module 7.43089220076e-08 3.58533568197e-08 -15524983.5692 +UniRef50_A5UMQ8 Sirohydrochlorin cobaltochelatase 9.76860718184e-06 8.30350615323e-06 -591479264.061 +UniRef50_I0C110 ABC transporter ATP binding protein 0.000127319458355 3.99872566427e-05 -35257081517.9 +UniRef50_W9R7E8 1.97460722377e-06 6.26499385029e-07 -544247677.643 +UniRef50_Q0AQ30 Cupin 2, conserved barrel domain protein 1.79654636704e-06 6.64589877522e-07 -456984725.487 +UniRef50_Q7R6Z1 4.03418588281e-07 4.09073072904e-07 2282784.83063 +UniRef50_W4UBI3 Methionine aminopeptidase 5.05419007863e-06 3.23559328821e-05 11022048599.8 +UniRef50_UPI00036C6884 hypothetical protein 1.50251759691e-07 1.33356450077e-07 -6820843.81994 +UniRef50_UPI0004773996 glutathione dependent formaldehyde activating protein 1.06449046546e-06 2.51234401897e-07 -328321452.635 +UniRef50_L0GI71 3.12763205378e-07 1.23181196302e-06 371031261.457 +UniRef50_L3S9H3 Ribonucleoside diphosphate reductase subunit beta 3.11647079041e-07 3.1755083627e-07 2383419.2406 +UniRef50_A5UMT8 Glycosyltransferase, GT2 family 2.07778081188e-05 7.3274760759e-06 -5430064099.85 +UniRef50_UPI0002D9EB50 hypothetical protein 1.65823926834e-06 1.7304324272e-06 29145264.1415 +UniRef50_Q4QN88 Autotransported protein Lav 5.88289852779e-07 3.32850886158e-05 13200098895.5 +UniRef50_UPI0003C7D864 glutamine ABC transporter permease, partial 1.15141974253e-06 6.24198187368e-07 -212845811.555 +UniRef50_Q3JNJ8 7.75502670264e-07 1.40137015244e-07 -256504911.745 +UniRef50_Q2YUE8 L threonine dehydratase biosynthetic IlvA 0.00018827011969 7.24451459336e-05 -46759963237.6 +UniRef50_F7ZM05 Transcriptional repressor protein, GntR family 4.45347944015e-05 1.38381121022e-05 -12392627334.9 +UniRef50_A7ZR72 Putative Holliday junction resolvase 6.505796702e-06 2.07034705365e-07 -2542887512.54 +UniRef50_A0A023RUU7 Amino acid transporter LysE 2.13268920259e-06 6.96996595112e-05 27277615053.5 +UniRef50_P0C2U0 Ornithine carbamoyltransferase, catabolic 0.000295050067199 9.99124110298e-05 -78779466403.7 +UniRef50_UPI0003819001 hypothetical protein 2.04966655252e-06 1.20043324752e-06 -342845906.493 +UniRef50_D8JNQ8 TonB dependent receptor family protein 5.7397768196e-07 9.39099981864e-05 37680896839.4 +UniRef50_P00927 Threonine dehydratase, mitochondrial 8.80547639605e-08 1.37606657017e-07 20004707.297 +UniRef50_B1JZ61 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.03356108728e-07 1.25732171049e-07 9033490.94415 +UniRef50_UPI0004763D11 phospholipase C 3.43978032837e-08 5.41026465223e-08 7955087.02104 +UniRef50_UPI0003C19153 2.87191293888e-08 3.25073466698e-08 1529349.80299 +UniRef50_UPI0004775FF2 hypothetical protein 1.03673245258e-06 4.85830007678e-07 -222406077.34 +UniRef50_A0A011QW65 Peroxiredoxin OsmC 1.74850914136e-07 2.2598909459e-05 9052867608.72 +UniRef50_A0A059IQB9 Intracellular septation protein 8.12817760958e-05 1.3563348077e-05 -27338760389.7 +UniRef50_K8EXK1 3.55880363919e-05 3.60660255706e-05 192970097.028 +UniRef50_UPI0003632065 hypothetical protein 1.42597570754e-06 6.1673910237e-06 1914167546.84 +UniRef50_A6LZ50 Type I phosphodiesterase nucleotide pyrophosphatase 5.8711732273e-06 8.30234785445e-06 981495030.848 +UniRef50_L9LRB5 Phage like baseplate assembly protein 2.37333191273e-06 6.63186863478e-05 25815524283.2 +UniRef50_B7K765 tRNA N6 adenosine threonylcarbamoyltransferase 5.34433307483e-08 4.21542372312e-08 -4557545.58561 +UniRef50_J9GQJ1 1.10425064815e-06 1.57625480542e-06 190553870.432 +UniRef50_C1DCA4 NADH quinone oxidoreductase subunit B 3.29010767813e-07 3.15816401984e-07 -5326727.39824 +UniRef50_A0A024HWH6 6.56748887516e-08 1.53868259162e-07 35604745.889 +UniRef50_UPI0003B3FB93 phosphoglyceromutase, partial 2.72469684363e-07 1.72497032308e-07 -40360186.437 +UniRef50_K0LDS3 0.00117476636053 0.000364053648054 -3.2729467059e+11 +UniRef50_UPI00047CA582 hypothetical protein, partial 4.13977621038e-07 5.83649452105e-07 68498600.3093 +UniRef50_G7W9E1 1.17353157162e-06 1.05347548955e-05 3779240730.98 +UniRef50_UPI0003678819 30S ribosomal protein S4 4.49903194599e-07 1.45600803013e-06 406176868.398 +UniRef50_Q74M23 50S ribosomal protein L9 2.48180294505e-05 0.000105642783415 32629945006.7 +UniRef50_R1FCU5 5.85484551006e-07 3.56195151825e-06 1201636240.03 +UniRef50_UPI0002F40D47 hypothetical protein 7.89521503667e-07 8.32518483605e-08 -285129726.751 +UniRef50_UPI0003B5C775 serine hydroxymethyltransferase 5.11351828926e-08 5.75250346088e-08 2579661.55013 +UniRef50_P04424 Argininosuccinate lyase 3.64537628291e-08 1.13340510461e-07 31040123.5255 +UniRef50_F0MZR9 Division cluster competence associated protein Dca 3.95175533181e-06 3.08298142422e-05 10851002213.0 +UniRef50_UPI00046E5BF5 molybdopterin converting factor 2.85198526403e-07 1.53393233725e-06 504129163.127 +UniRef50_UPI0004285813 LysR family transcriptional regulator 4.06204007828e-07 3.34446640774e-06 1186212587.38 +UniRef50_E1UN96 Acetoin utilization protein AcuA 0.000109976347622 1.43462369291e-05 -38607049200.1 +UniRef50_UPI00047EB5DF GTP binding protein Der 3.92410933432e-07 8.15770978929e-07 170915645.579 +UniRef50_G7LY49 Transcriptional regulator, GntR family with LacI sensor 1.07138880474e-06 2.16360782098e-05 8302217469.96 +UniRef50_UPI00037C0A9E hypothetical protein 4.84249425861e-08 1.65707148363e-07 47348265.6867 +UniRef50_D7A512 Phosphoesterase PA phosphatase related protein 9.38876887294e-05 1.07784142672e-05 -33552233965.9 +UniRef50_Q18DL1 Imidazoleglycerol phosphate dehydratase 2.49770903956e-05 3.39750673168e-06 -8711942736.39 +UniRef50_D4HC08 Acetyltransferase, GNAT family 4.54802396205e-06 3.58749940603e-05 12647082253.8 +UniRef50_C7ZRN4 Ferrichrome ABC transporter lipoprotein 0.000174759500666 5.26883332903e-05 -49281628251.4 +UniRef50_B1GZJ8 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.64299537135e-07 1.38398800962e-07 -10456445.0308 +UniRef50_R7PT43 2.6658983673e-05 1.00878681768e-05 -6689962676.27 +UniRef50_UPI00037A8649 hypothetical protein 3.8983062535e-07 6.46594232678e-08 -131275604.58 +UniRef50_UPI00035EAC91 hypothetical protein 7.41049517192e-08 1.46466068515e-07 29213070.8212 +UniRef50_P58115 Pirin like protein YhaK 3.20708062047e-05 6.43648938937e-06 -10348888266.8 +UniRef50_UPI000255F0AC hypothetical protein 2.48537621893e-06 4.20917449006e-06 695918515.439 +UniRef50_A0L4V9 Holliday junction ATP dependent DNA helicase RuvA 1.19688803803e-07 9.31464856579e-08 -10715459.546 +UniRef50_UPI0002195D67 branched chain amino acid transporter II carrier protein 1.18329702381e-07 8.20476773667e-08 -14647498.7288 +UniRef50_UPI000466B529 hypothetical protein 4.08420978095e-08 1.64574307339e-07 49952211.3518 +UniRef50_W4UAD6 1.28525962353e-06 4.15548640033e-06 1158745771.44 +UniRef50_T1UCZ0 5.56276600439e-07 1.92575512206e-05 7549934054.62 +UniRef50_R5EMC4 High affinity branched chain amino acid ABC transporter permease protein 3.04424184557e-06 2.0662400917e-05 7112667016.25 +UniRef50_T2J2D2 1.44973390097e-07 1.32613907844e-05 5295258658.62 +UniRef50_P39399 Probable HTH type transcriptional regulator YjjM 2.60266046293e-05 1.01931496087e-05 -6392160090.16 +UniRef50_M1MSH2 1.6508133623e-06 5.5267694285e-06 1564771027.25 +UniRef50_UPI0002F5C7CD alpha beta hydrolase 1.51696291932e-07 1.02605566348e-06 352989607.89 +UniRef50_Q93PU4 Toluene efflux pump membrane transporter TtgH 2.50666853077e-05 5.9345301947e-06 -7723885797.06 +UniRef50_D9SQU7 Integral membrane sensor signal transduction histidine kinase 1.44033330159e-06 8.41740202064e-06 2816728260.14 +UniRef50_E6MUI2 9.80794368573e-07 6.56747023401e-06 2255409603.1 +UniRef50_UPI00047B6725 hypothetical protein 1.06633597457e-07 8.77705209188e-07 311291071.769 +UniRef50_D2N524 0.00017992293918 4.55666665755e-05 -54241275987.1 +UniRef50_A6LT70 Phage portal protein, SPP1 8.55977298968e-07 1.88320343794e-05 7257154834.38 +UniRef50_Q9HZX3 Protein glutamine gamma glutamyltransferase 1.29612184348e-06 2.11277513186e-06 329692953.982 +UniRef50_UPI0003B4BDBC ammonia channel protein, partial 5.56072361872e-08 1.97273490028e-07 57192405.116 +UniRef50_UPI0003825C93 hypothetical protein 4.21165474215e-07 2.60926426477e-07 -64690469.9261 +UniRef50_A6E305 1.17001108687e-05 4.40141575438e-06 -2946572782.71 +UniRef50_B7VHW1 4.40053634301e-07 4.42692030221e-07 1065152.80966 +UniRef50_Q8RFZ3 UPF0324 membrane protein FN0533 5.10608146403e-05 6.4889686054e-05 5582885089.05 +UniRef50_UPI00046D88F2 chemotaxis protein CheY 2.12329841369e-06 1.24014358267e-06 -356540442.811 +UniRef50_J9NWV1 1.46619056202e-06 1.38566019263e-07 -535978319.697 +UniRef50_UPI0004656FEC exodeoxyribonuclease III, partial 1.15242140884e-06 3.31921655198e-07 -331245819.209 +UniRef50_J9NWV5 1.86367862954e-06 1.31385092849e-06 -221972190.059 +UniRef50_G7LHS1 50S ribosomal protein L11 1.27966030119e-06 1.07634812363e-05 3828734891.07 +UniRef50_Q1GI13 Sarcosine oxidase delta subunit heterotetrameric 1.3059350353e-05 5.84785554841e-06 -2911368947.61 +UniRef50_P0AEZ1 5,10 methylenetetrahydrofolate reductase 3.265715104e-05 4.96821647135e-05 6873206940.4 +UniRef50_UPI000371CC88 hypothetical protein 5.92390921903e-08 1.44421765379e-07 34389290.4752 +UniRef50_UPI00046F08F9 hypothetical protein 6.22515870003e-08 1.65123695283e-07 41530732.4966 +UniRef50_O24339 Catalase 1.28731583493e-07 3.99030818598e-07 109123118.157 +UniRef50_U1WYS6 3.14411773589e-07 3.27789641976e-07 5400809.63274 +UniRef50_Q0PAB6 Methionine import ATP binding protein MetN 5.05238817765e-07 7.07785350661e-08 -175396947.553 +UniRef50_P76340 Probable transcriptional regulatory protein YedW 3.14392418503e-05 6.52742079738e-06 -10057207861.5 +UniRef50_Q7CYZ1 5.88388808465e-05 6.91259520325e-06 -20963278721.4 +UniRef50_UPI0003653AAE hypothetical protein 2.09634422185e-07 3.7200749198e-07 65552000.8179 +UniRef50_UPI00036708EA hypothetical protein 1.08760833453e-07 4.13817692101e-07 123155197.305 +UniRef50_Q5HP06 ComG operon protein 2, putative 7.61373105567e-05 4.27481076298e-05 -13479630953.2 +UniRef50_U3SS47 6.13601895476e-05 2.76704045436e-05 -13600979626.3 +UniRef50_X5X320 8.03209253459e-06 3.62952899294e-07 -3096125781.7 +UniRef50_X1XW63 8.61472439476e-09 3.72888720691e-07 147061882.449 +UniRef50_P31904 Hydrogenase expression formation protein hypD2 2.38867649176e-05 6.73703378874e-06 -6923556907.6 +UniRef50_UPI00038BE2EA PREDICTED 9.97878154277e-07 6.96934046356e-07 -121494829.367 +UniRef50_UPI00037774DA hypothetical protein, partial 1.13094008105e-07 6.90680109783e-08 -17773835.2998 +UniRef50_C6X1R3 9.0582828132e-08 1.2863918831e-07 15363819.6079 +UniRef50_UPI0003B3A17D diguanylate cyclase 3.51950136031e-08 6.03642121887e-08 10161114.3298 +UniRef50_F3NZ35 DeaD DeaH box helicase 1.07893232944e-06 5.22110099308e-05 20642647188.8 +UniRef50_A5UMR2 3.3681173745e-05 4.38012851869e-06 -11829191522.1 +UniRef50_A4WV08 Diguanylate cyclase 9.27445709589e-06 2.62893209369e-06 -2682879993.15 +UniRef50_A0A011T5F4 Endoribonuclease L PSP 2.60275134305e-06 1.01977974932e-06 -639065057.635 +UniRef50_B0S9J5 Phosphopantetheine adenylyltransferase 1.18176026702e-07 3.51256386528e-07 94097401.4794 +UniRef50_B9JJI7 Taurine uptake ABC transporter 0.000112127263255 1.72877541624e-05 -38287873632.3 +UniRef50_P50933 L lactate dehydrogenase 1.27529050285e-06 0.000132898486497 53137899421.0 +UniRef50_V9WHB8 Glycosidase 8.07762967539e-05 2.07450535687e-05 -24235349540.1 +UniRef50_V4XDY8 3.73886772526e-06 2.1251265856e-05 7069970026.65 +UniRef50_R5PCX4 Exo poly alpha D galacturonosidase 4.50593096713e-08 9.67740039764e-08 20877856.7016 +UniRef50_UPI0003B768A4 recombinase 4.5199645901e-08 5.74372865655e-08 4940485.709 +UniRef50_UPI00036E0818 hypothetical protein 2.05790536235e-06 5.03367443727e-07 -627586034.072 +UniRef50_W5PP12 1.38810376398e-06 1.15327315612e-06 -94803998.0887 +UniRef50_M5D5M6 Sel1 repeat protein 8.2360579389e-07 4.09570297522e-05 16202355744.5 +UniRef50_UPI000440198D PREDICTED 7.00474893723e-07 4.8471628333e-07 -87104398.6715 +UniRef50_UPI000161C024 Centromere kinetochore Zw10 family protein 2.3199443646e-08 1.12713598516e-07 36137962.7832 +UniRef50_S5Y0K2 1.69391620219e-05 8.05878861274e-07 -6513204389.58 +UniRef50_UPI0003760BC3 MULTISPECIES 4.89424047585e-08 2.31013675797e-07 73504406.3838 +UniRef50_Q9I190 Macrolide export ATP binding permease protein MacB 4.55447095804e-06 1.35034294035e-06 -1293545799.81 +UniRef50_R6EZ78 3.81873320664e-07 1.00869720292e-05 3918067443.59 +UniRef50_UPI00047838E9 hypothetical protein 6.98116780916e-08 1.19247077706e-05 4785967028.48 +UniRef50_Y0F5P3 4.56871183667e-07 9.36827734116e-07 193764349.145 +UniRef50_UPI000289CB1A major facilitator superfamily protein, partial 1.07816483097e-07 1.48881112715e-07 16578294.8965 +UniRef50_A3PSA8 Oligopeptide dipeptide ABC transporter, ATPase subunit 7.36660458483e-05 9.85693114313e-06 -25760522632.4 +UniRef50_UPI0003C1628B PREDICTED 7.98279663603e-07 5.66855738396e-08 -299390634.42 +UniRef50_UPI0002B4638C PREDICTED 2.9622551027e-07 1.85519084676e-07 -44693542.5329 +UniRef50_I1QQ05 1.64209631864e-07 2.44059077488e-06 919003001.775 +UniRef50_UPI0002D42EAE hypothetical protein 1.27617033424e-07 1.27253073745e-06 462215711.988 +UniRef50_P33218 Inner membrane protein YebE 7.18146866408e-05 2.84871419803e-06 -27842409382.8 +UniRef50_Q2FEZ8 Type II pantothenate kinase 8.37728495441e-05 4.98212897562e-05 -13706661318.9 +UniRef50_W0A724 9.65574988622e-07 3.11998371079e-07 -263856900.789 +UniRef50_Q2NAY0 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.47660068201e-05 9.37907685442e-06 -6211892446.02 +UniRef50_Q08T18 3.95785337346e-07 1.47654682969e-06 436316676.893 +UniRef50_UPI000379B915 hypothetical protein 1.28128443628e-07 1.34702476568e-07 2654017.77033 +UniRef50_Q83P86 Multidrug resistance protein MdtN 3.49633074957e-05 2.24575441206e-06 -13208477669.4 +UniRef50_J0S1W5 0.000100519370973 8.25894786802e-05 -7238517543.12 +UniRef50_X0Y200 Marine sediment metagenome DNA, contig 2.57872450093e-06 5.19784693273e-06 1057371865.96 +UniRef50_F9NYE7 8.95461295654e-08 6.40177234507e-07 222296534.069 +UniRef50_Q929Y1 UDP N acetylmuramoylalanine D glutamate ligase 7.69029302553e-05 7.52038726644e-05 -685930399.228 +UniRef50_UPI00035EF123 RNA helicase, partial 5.08005154185e-05 1.29224588278e-05 -15291836261.7 +UniRef50_D8JM33 Transcriptional regulator 1.61318798655e-06 5.76074415175e-05 22605567277.2 +UniRef50_UPI0004642A6F hypothetical protein 4.44720228586e-08 2.53742864399e-07 84485206.7717 +UniRef50_Q2RPX0 Bifunctional protein GlmU 4.02604257234e-08 8.94799120005e-08 19870510.6011 +UniRef50_P0ACS3 Redox sensitive transcriptional activator SoxR 0.000109616726199 4.86518883354e-05 -24612253168.2 +UniRef50_O27492 Probable acetolactate synthase small subunit 4.16845121931e-07 4.76732928314e-06 1756343842.32 +UniRef50_Q5HKP7 Probable poly beta 1,6 N acetyl D glucosamine export protein 0.000140034374031 1.87437927169e-05 -48966496079.3 +UniRef50_E4PHF9 Acyl CoA dehydrogenase domain protein 2.10715970442e-05 8.99283327745e-05 27798309181.5 +UniRef50_Q4FRE8 1.48811822151e-06 3.78412614624e-05 14676210029.6 +UniRef50_Q7F1Y2 B1065G12.2 protein 6.18880855235e-07 1.01020537696e-06 157982511.512 +UniRef50_Q9KG60 Urease subunit beta 4.75823324231e-07 2.45806091628e-07 -92860779.4307 +UniRef50_Q8ERU3 UPF0736 protein OB1207 3.32028304098e-07 2.3815863322e-06 827431726.849 +UniRef50_C5N1I8 8.34218501901e-05 4.47449553334e-06 -31872015867.9 +UniRef50_UPI000381384D hypothetical protein 3.51619133743e-07 2.06081518015e-07 -58755321.4168 +UniRef50_UPI0003618EAB hypothetical protein, partial 5.43648348073e-07 9.71650887234e-07 172789877.241 +UniRef50_Q9RXH3 Folyl polyglutamate synthetase 9.20697533807e-07 1.68304273219e-05 6422953149.8 +UniRef50_Q1B677 Methionine import ATP binding protein MetN 5.01470944613e-07 8.14555327617e-08 -169565375.933 +UniRef50_P45756 Putative general secretion pathway protein A 3.06506657814e-05 4.90316835839e-06 -10394580667.0 +UniRef50_M0X8Z7 7.53570987378e-07 1.73711773053e-05 6708731591.5 +UniRef50_S5XST5 Apolipoprotein N acyltransferase 1.31256940276e-05 4.13993030489e-06 -3627663082.58 +UniRef50_P77775 Epimerase family protein YfcH 4.62617505083e-05 2.38109626062e-05 -9063658578.23 +UniRef50_B3E5B6 Carbon starvation protein CstA 1.6823606177e-06 7.92005695395e-06 2518234556.09 +UniRef50_U9LZ47 7.78813866117e-06 2.97551213411e-06 -1942916386.54 +UniRef50_D9RBR2 7.08175081756e-07 5.29053836182e-07 -72313444.9031 +UniRef50_Q0AAE8 Choline carnitine betaine transporter 7.46092788761e-05 3.07461818209e-05 -17708070541.9 +UniRef50_P43924 Pyruvate kinase 8.4739262491e-06 1.85659826242e-05 4074287002.09 +UniRef50_Q98NZ9 Mll9669 protein 8.13232557983e-05 1.04703439739e-05 -28604189966.5 +UniRef50_P31459 2 dehydro 3 deoxygalactonokinase 9.64904222789e-05 9.05922907199e-06 -35297045599.0 +UniRef50_A3M531 3.19488031859e-06 8.42750609e-05 32733063866.4 +UniRef50_A3M532 3.22542287064e-06 0.000164587911412 65144016764.4 +UniRef50_UPI0003B75002 NAD synthetase, partial 6.8785157491e-08 6.02225722074e-07 215356501.974 +UniRef50_UPI000369E819 hypothetical protein 2.35928743033e-05 7.70391404865e-06 -6414568234.29 +UniRef50_UPI0003B3957E 50S ribosomal protein L21 3.54746208623e-06 1.8040743114e-06 -703827038.473 +UniRef50_B5XIZ5 2.31586496233e-06 7.80749523569e-05 30584873249.7 +UniRef50_Q747W9 Cyclic pyranopterin monophosphate synthase 9.90184247422e-08 1.58802993864e-06 601132220.387 +UniRef50_Q82ZQ1 Allantoinase 5.7814671419e-07 9.25703107414e-06 3503772118.0 +UniRef50_A6LYV3 Putative cell wall binding repeat containing protein 2.53888640807e-06 3.04546633062e-05 11269941698.9 +UniRef50_D8R6N5 7.02068109087e-09 3.42717333352e-08 11001584.199 +UniRef50_Q8DU77 3.34807762799e-05 1.94832319792e-05 -5650980403.38 +UniRef50_B5QY15 Glucans biosynthesis protein G 3.6080294815e-05 3.74663143364e-06 -13053496685.7 +UniRef50_B2SD76 Leu Ile Val binding protein family 0.000145561061685 4.13918022378e-05 -42054408339.3 +UniRef50_E8QKJ5 1.79755232787e-06 6.54329403602e-06 1915914164.38 +UniRef50_B4TUR5 tRNA modifying protein YgfZ 4.69172810982e-05 9.26099184118e-06 -15202306067.7 +UniRef50_Q8FAD6 Ornithine carbamoyltransferase 0.000293808554165 0.000156584006965 -55399233639.2 +UniRef50_C7ZTG4 Polysaccharide biosynthesis protein 8.37963379925e-05 3.28607708217e-05 -20563313516.5 +UniRef50_X0Z8U3 Marine sediment metagenome DNA, contig 5.12435074799e-08 1.84918151269e-07 53966094.07 +UniRef50_E8TLE8 1.6795067491e-05 2.59595204728e-06 -5732357147.36 +UniRef50_I4YKM8 4.87422842948e-07 2.7754541718e-07 -84730092.2682 +UniRef50_A5V3U6 Trigger factor 9.24320539651e-08 3.74457668001e-07 113857201.23 +UniRef50_C7J1D9 Os04g0448000 protein 6.13138236987e-08 1.31758419328e-07 28439347.7079 +UniRef50_L7WY02 Aldo keto reductase 9.37115843088e-05 4.85654776626e-05 -18226037258.1 +UniRef50_B1GZ10 Peptide deformylase 9.38659618238e-08 4.33917978598e-07 137283172.079 +UniRef50_C1N707 Predicted protein 1.7997358605e-07 2.99289718371e-06 1135611774.83 +UniRef50_O98946 Ribulose bisphosphate carboxylase small chain 5.10700580774e-06 6.52632221923e-07 -1798285277.91 +UniRef50_Q83RQ0 Endo type membrane bound lytic murein transglycosylase A like protein 2.47605709102e-05 2.50503445938e-05 116985191.992 +UniRef50_Q7VF52 Phosphoribosylformylglycinamidine synthase 2 2.39814681004e-07 6.2925027963e-08 -71412523.6128 +UniRef50_A6LZG6 1.33230349002e-06 9.41179045577e-06 3261788034.53 +UniRef50_Q21CR1 4.10145374898e-07 2.23737053871e-07 -75255326.6859 +UniRef50_UPI000477F471 hypothetical protein 2.90615170702e-08 1.03856858866e-07 30195797.325 +UniRef50_UPI0003B5D675 peptide chain release factor 1 3.24051018211e-08 3.57622475881e-07 131294244.774 +UniRef50_UPI0002558465 threonine dehydratase 1.01564200217e-07 3.8635999938e-07 114975558.96 +UniRef50_I6L918 5.4388088772e-05 3.68939077079e-05 -7062615573.32 +UniRef50_B9JG36 2.87870076623e-07 1.41714137393e-07 -59004946.2022 +UniRef50_UPI000248E5FB phenazine biosynthesis protein PhzF 1.08909207077e-07 2.10203693822e-07 40893827.3221 +UniRef50_B8A1Z2 7.00083609837e-06 1.34847935489e-05 2617653189.88 +UniRef50_B6VA55 Nitrite oxidoreductase 6.46893964235e-07 5.16987403629e-07 -52444872.6494 +UniRef50_P54932 Protein RdxB 0.000215385073674 4.60038668437e-05 -68381271738.4 +UniRef50_A0A023SBI8 5.10693985452e-07 2.41645725522e-07 -108618084.127 +UniRef50_UPI000328C02F PREDICTED 7.84896938634e-08 1.2727671947e-07 19695920.9215 +UniRef50_W9GJ48 Sugar ABC transporter substrate binding protein 1.2785591139e-06 2.74210266296e-07 -405467954.522 +UniRef50_Q5HRJ0 Deoxynucleoside kinase family protein 0.00019953037022 2.63820951177e-05 -69902083426.9 +UniRef50_UPI0003B78493 5 hydroxyisourate hydrolase 2.51682042903e-07 3.39041629979e-07 35268137.3253 +UniRef50_F7ZII7 1.06249025572e-05 9.62020478533e-07 -3901024072.06 +UniRef50_A0A034TUN2 Excinuclease ABC subunit B 4.37431623795e-07 1.67173109308e-05 6572387052.82 +UniRef50_V4R3G1 Mucoidy inhibitor A 7.39916989239e-07 1.8248200115e-06 437988663.344 +UniRef50_UPI0003712D73 MULTISPECIES 3.38903913587e-07 1.1634377876e-07 -89850257.5496 +UniRef50_P75857 Probable outer membrane usher protein ElfC 1.92456015529e-05 5.92241177033e-06 -5378735209.16 +UniRef50_UPI0003B39972 LuxR family transcriptional regulator 6.96695990318e-07 1.80647820858e-07 -208334978.634 +UniRef50_Q2S5J0 NADH quinone oxidoreductase subunit D 7.65477497331e-08 1.40351332424e-07 25758289.2903 +UniRef50_P76173 Anaerobic dimethyl sulfoxide reductase chain YnfH 8.16390205017e-06 2.14775785594e-06 -2428791237.6 +UniRef50_Q97FQ5 DNA ligase 2 4.33010862591e-06 7.04647954935e-06 1096632275.41 +UniRef50_T2QCI3 2.27418815467e-07 7.11468063849e-07 195416621.524 +UniRef50_A4VMJ3 Transcriptional regulator FleQ 7.02497623611e-06 6.48446879999e-06 -218209484.734 +UniRef50_Q7DDH4 Putative lipoprotein NMB1126 NMB1164 3.13094532513e-05 2.74762591159e-05 -1547507511.04 +UniRef50_Q5FQD6 Bifunctional enzyme IspD IspF 5.76549021767e-08 1.88766602511e-07 52931402.3463 +UniRef50_L7WZU8 8.81179534533e-05 2.66189880022e-05 -24827887029.8 +UniRef50_K2AF52 7.04701485112e-06 5.9112148686e-06 -458536390.776 +UniRef50_F0KP57 Phospholipase D 1.08681186813e-06 4.70513163512e-05 18556434507.7 +UniRef50_B1ERT8 1.20346239139e-06 1.37356607068e-05 5059402247.29 +UniRef50_Q4A047 Imidazole glycerol phosphate synthase subunit HisH 0.000413805192798 6.49619394876e-05 -1.40832302149e+11 +UniRef50_P0CZ69 Arginine regulator 4.96270249132e-05 3.88427336852e-05 -4353750706.88 +UniRef50_P80480 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 2.93073393585e-07 4.66582837276e-07 70047891.6184 +UniRef50_D9SZV9 PKD domain containing protein 2.80676642579e-08 2.7807121103e-07 100929499.72 +UniRef50_A5FW26 MaoC domain protein dehydratase 1.63492746221e-07 2.41295965706e-07 31410114.459 +UniRef50_Q42565 Anthranilate synthase beta subunit 1, chloroplastic 6.86365626983e-08 9.51794943474e-08 10715707.2251 +UniRef50_A5UMG8 Cell wall biosynthesis protein, MurD like peptide ligase family 4.15382107225e-05 1.1493684761e-05 -12129343818.5 +UniRef50_F5LZS4 Hemolysin type calcium binding region RTX toxin 2.53565646349e-05 7.17798532973e-06 -7338915541.76 +UniRef50_A7FX06 Aminotransferase, class IV 1.54496311943e-06 1.21200914548e-05 4269309080.42 +UniRef50_R8A4W3 3.538727371e-07 3.42998225786e-07 -4390173.66272 +UniRef50_UPI0003785F11 hypothetical protein 1.09495978848e-07 1.9242845689e-07 33480859.0815 +UniRef50_UPI00047E325C AsnC family transcriptional regulator 1.75254310477e-06 5.93208242369e-07 -468037710.589 +UniRef50_UPI0003C1951F PREDICTED 3.10570402783e-08 1.60796633943e-07 52377466.0464 +UniRef50_C3F9W4 UTP glucose 1 phosphate uridylyltransferase 0.000268080905321 5.22621891568e-05 -87128664108.9 +UniRef50_A0A023S292 Lysozyme 1.59276788545e-06 4.6453489691e-05 18110823895.9 +UniRef50_UPI00047B031E hypothetical protein 2.93037015638e-07 7.30223488702e-07 176497544.057 +UniRef50_Q9PE70 30S ribosomal protein S3 3.96026569084e-05 5.4993372217e-05 6213420635.4 +UniRef50_Q3SSY2 50S ribosomal protein L10 0.000220554035469 9.06485510652e-05 -52444438173.5 +UniRef50_A6LYQ4 Integral membrane sensor signal transduction histidine kinase 5.5024423871e-06 1.84962317073e-05 5245752200.29 +UniRef50_Q9UYX0 Probable L threonine 3 dehydrogenase 1.755425112e-07 4.73576510301e-07 120319982.726 +UniRef50_P04993 RecBCD enzyme subunit RecD 3.6139973315e-05 9.46272575355e-06 -10769932207.2 +UniRef50_A9MFX7 Anaerobic nitric oxide reductase transcription regulator NorR 9.04691662704e-07 3.90320603757e-07 -207657908.54 +UniRef50_B9E7Y2 4.72022732158e-05 8.18843617088e-06 -15750364768.6 +UniRef50_E8QJ87 1.77693370281e-06 4.08584807692e-05 15777700135.2 +UniRef50_UPI000475BC46 hypothetical protein 4.41665249955e-08 1.98309544545e-07 62229428.5399 +UniRef50_F2AHK1 3.56204434747e-06 5.35614800893e-07 -1221806746.42 +UniRef50_UPI0004757A91 hypothetical protein, partial 6.29486685346e-07 1.05471167815e-06 171668547.692 +UniRef50_Q8X613 Transcriptional regulatory protein ZraR 2.80972716817e-05 1.42828352556e-05 -5577057507.41 +UniRef50_UPI0003B659FC ribose ABC transporter permease 9.68496902309e-07 1.23103396877e-07 -341295732.288 +UniRef50_E1VQY8 Transcriptional regulator, ArsR family 2.01147063333e-06 1.84380877328e-06 -67687150.3446 +UniRef50_E0TTE0 Alpha,alpha phosphotrehalase 2.17572516048e-06 4.04261283732e-05 15442157162.2 +UniRef50_UPI00046F1189 acriflavine resistance protein B 3.70692306318e-08 7.74186057319e-08 16289537.8704 +UniRef50_UPI00018172F7 putative 3 oxoadipate coa transferase subunit b protein 4.29546475366e-07 7.18146875696e-07 116511523.138 +UniRef50_V5SS13 1.66234588963e-05 1.05014791021e-05 -2471518368.06 +UniRef50_A0A023RZV0 3.16093099584e-06 5.587631498e-05 21281847404.9 +UniRef50_T5ME54 Cysteine and O acetyl L serine efflux system protein 1.7055089858e-06 3.22750497486e-06 614448457.775 +UniRef50_M1XIF6 7.6549315979e-07 1.67211608127e-06 366014798.916 +UniRef50_Q2T6R3 1,4 alpha glucan branching enzyme GlgB 2.21986409392e-08 2.38353364791e-08 660754.07397 +UniRef50_L0A7U4 ATPase involved in chromosome partitioning 1.64498616111e-07 1.76178405531e-05 7046128316.56 +UniRef50_I0BSQ6 Diguanylate cyclase 3.20243605063e-08 4.38854943236e-08 4788485.27452 +UniRef50_B9KLX0 Class I monoheme cytochrome c 2.34342667449e-05 5.41865514113e-06 -7273123480.87 +UniRef50_Q9X7Q6 Isopentenyl diphosphate Delta isomerase 6.73496260952e-07 1.48061081009e-07 -212124629.958 +UniRef50_UPI0001744EBE organic solvent ABC transporter ATP binding protein 2.81047071947e-06 5.64196916871e-07 -906848298.989 +UniRef50_U3SSQ2 Two component sensor histidine kinase 6.92994102605e-05 2.00782120446e-05 -19871201731.8 +UniRef50_P71229 Hydrogenase 4 transcriptional activator 3.178199986e-05 2.71301274573e-06 -11735506814.6 +UniRef50_UPI000368F50B hypothetical protein 1.10865871462e-07 1.63199368221e-07 21127674.8458 +UniRef50_J8V9R1 Monovalent cation H+ antiporter subunit C 1.47101440344e-05 9.34814084677e-07 -5561269743.0 +UniRef50_H9USG2 5.05624573592e-06 3.89428622235e-06 -469097314.475 +UniRef50_Q09BZ8 2.00828485434e-07 2.30280437258e-06 848593459.787 +UniRef50_G7MBG2 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 5.17529831499e-06 7.19557700774e-06 815611299.871 +UniRef50_O26010 Phosphopantetheine adenylyltransferase 3.35797090271e-06 1.35841420174e-05 4128430768.24 +UniRef50_K9NP10 L glutamine synthetase 7.80105026029e-06 1.32034294431e-06 -2616341070.68 +UniRef50_R5CIR9 4.05337209432e-05 9.99760285355e-06 -12327805593.1 +UniRef50_Q4BUD1 1.67334413844e-07 5.82590430039e-07 167643949.502 +UniRef50_F0MM85 Hemagglutinin hemolysin family protein 3.43846694326e-07 3.22654577832e-05 12887146118.8 +UniRef50_UPI0004127258 patatin 5.19166647299e-08 1.87730061253e-07 54829534.7941 +UniRef50_A0A056S3J4 Integral membrane protein 5.77598128449e-07 4.44386686764e-07 -53779093.6964 +UniRef50_Q6A8D2 1.00117637944e-06 2.49533088139e-05 9669769789.53 +UniRef50_B9KV10 0.00017709685862 4.91575854061e-05 -51650654587.9 +UniRef50_A6LRB3 Uroporphyrinogen decarboxylase 9.63312257075e-06 1.51073541187e-05 2210014452.28 +UniRef50_Q6FEM0 Outer membrane protein assembly factor BamB 8.83306680243e-06 6.42988052296e-05 22392199244.2 +UniRef50_W4KYJ2 Transposase IS861 3.28412050456e-06 4.09367210291e-07 -1160573182.09 +UniRef50_UPI0002558C10 AsmA family protein 2.81577533277e-08 4.37578616922e-08 6297955.18161 +UniRef50_UPI000288B7A4 ATP binding protein 4.32932306348e-07 2.92501517255e-07 -56693632.8364 +UniRef50_Q8NXM4 DegV domain containing protein MW0711 0.000205929689154 6.74372845395e-05 -55911083235.6 +UniRef50_F2GB41 EVE domain containing protein 5.29068628397e-07 1.78979865362e-06 508972182.078 +UniRef50_B9DRS8 Glycogen synthase 5.32436456921e-06 3.89091343246e-05 13558583681.7 +UniRef50_B9KRQ9 Response regulator receiver protein 0.000217574078598 1.74357519639e-05 -80798298435.6 +UniRef50_K3Z8U3 4.76745608984e-07 7.2735352914e-07 101173492.672 +UniRef50_B0VCR0 3.23811248118e-06 6.83531573359e-05 26287742659.3 +UniRef50_UPI00037D7B24 hypothetical protein 1.9090268999e-07 1.02833438706e-07 -35554637.4746 +UniRef50_U6JY85 3.29528794402e-08 5.79917821711e-07 220816459.209 +UniRef50_B9KU70 Periplasmic solute binding protein 7.37660930939e-06 4.31977079183e-06 -1234083221.17 +UniRef50_D7AAV7 1.23953317528e-07 7.56672215716e-07 255436383.532 +UniRef50_Q3J682 2 dehydropantoate 2 reductase 1.60426901248e-05 1.00349392811e-05 -2425402738.99 +UniRef50_U5MW40 SpoIIIAH like protein 1.00051496729e-05 3.44727671428e-06 -2647493787.55 +UniRef50_UPI0002D3A5FE hypothetical protein 1.0900914955e-07 2.76984442957e-07 67813687.2371 +UniRef50_A5UKH3 Homoserine O acetyltransferase 1.64405679011e-05 8.88144225338e-06 -3051711784.89 +UniRef50_G9A115 3.86500948995e-07 1.79882755269e-07 -83414300.2975 +UniRef50_UPI0003C1A4EF PREDICTED 1.7173856009e-07 3.74289079136e-07 81772130.1132 +UniRef50_A4IT51 Anthranilate 3 monooxygenase oxygenase component 7.81544490361e-07 5.59852545483e-08 -292917167.111 +UniRef50_UPI000343F89B PREDICTED 5.10851661878e-08 3.99563521443e-07 140684988.327 +UniRef50_UPI00037F4E3B hypothetical protein, partial 4.01591105753e-07 2.27460387961e-06 756158241.259 +UniRef50_P22996 Resolvase 6.1407918475e-06 0.000130000128978 50003534324.4 +UniRef50_P57286 Superoxide dismutase [Mn] 1.0941028632e-07 4.93483594644e-07 155055107.68 +UniRef50_D3UZU9 9.63058280965e-07 1.02416584098e-06 24669871.8521 +UniRef50_C5LZC5 9.85623182366e-08 1.46790110439e-07 19470151.5337 +UniRef50_M1MI36 4.04652752376e-06 2.80808277526e-06 -499975342.395 +UniRef50_P15931 Peptidoglycan hydrolase FlgJ 3.78460096157e-06 7.82246461611e-06 1630135107.5 +UniRef50_UPI00029A0F96 PfkB domain containing protein 3.22806675209e-07 2.74435806161e-07 -19527913.412 +UniRef50_E5QV40 6.73936198574e-05 3.43759260094e-05 -13329648179.1 +UniRef50_A4WQH8 Plasmid pRiA4b ORF 3 family protein 4.45558787576e-05 2.04495150905e-05 -9732034830.76 +UniRef50_UPI00036A1A43 hypothetical protein 4.32102011609e-08 2.86406489301e-07 98181325.8762 +UniRef50_Q795R8 0.000155327439546 4.98980199346e-05 -42563150461.4 +UniRef50_UPI0002D2C86E hypothetical protein 2.03419303959e-06 6.4634999714e-07 -560289266.986 +UniRef50_UPI000346B9B9 hypothetical protein 6.53120525372e-07 0.000101908430781 40878011292.7 +UniRef50_P77739 1.88448308011e-05 1.55104680679e-05 -1346123152.62 +UniRef50_X8FNE2 HD domain protein 7.20469324592e-08 4.49658595652e-07 152446462.247 +UniRef50_UPI00024935CA phosphoenolpyruvate dependent sugar phosphotransferase system EIIABC, glucose specific 2.48118930723e-07 2.62704621208e-06 960402136.206 +UniRef50_P77732 4.21043158161e-05 1.27290286732e-05 -11859163894.9 +UniRef50_P77730 3.58234604254e-05 1.7976311909e-05 -7205112865.21 +UniRef50_O26944 Metalloprotease MTH_856 5.04742613661e-05 2.557156869e-05 -10053522623.7 +UniRef50_F0XYT4 1.72188496817e-06 8.31996789275e-06 2663727044.24 +UniRef50_Q46871 NADPH dependent ferric chelate reductase 1.42465992177e-05 3.31816522686e-06 -4411942909.05 +UniRef50_P37686 Probable alcohol dehydrogenase 4.24285620785e-06 7.59885353708e-06 1354857304.53 +UniRef50_F4PD55 Expressed protein 5.70557914837e-07 3.9377370667e-07 -71369954.2232 +UniRef50_A9M1Y3 3.67681157978e-06 9.68872378748e-05 37630192915.8 +UniRef50_D0J3S0 TRAP dicarboxylate transporter, DctM subunit 4.99694444778e-08 8.59844440151e-08 14539697.267 +UniRef50_UPI00037FD144 hypothetical protein 4.90348117431e-08 7.08551366165e-08 8809132.91689 +UniRef50_M9VHU4 DNA gyrase topoisomerase IV, A subunit 2.40810985871e-06 5.60413711113e-05 21652405721.8 +UniRef50_A3TUW7 1.74106393237e-07 5.50073954361e-08 -48081726.9213 +UniRef50_Q28UZ5 Hypoxia induced protein conserved protein 2.59828273401e-07 4.74217819644e-07 86551690.6739 +UniRef50_A3M3B5 Arylsulfatase 1.38543760154e-06 5.251665161e-05 20642298545.8 +UniRef50_M4XE09 7.82669319412e-06 9.11542503506e-06 520276858.706 +UniRef50_UPI00037E95DD MULTISPECIES 1.29059943961e-06 3.69465814678e-07 -371872947.966 +UniRef50_O27566 1.37966418622e-05 7.14501112457e-06 -2685344953.47 +UniRef50_A4WFL4 Glycogen debranching enzyme 3.03229246733e-07 7.26431331438e-07 170851874.869 +UniRef50_UPI0003BBA1AF PREDICTED 3.56568970714e-07 1.25392858888e-07 -93328633.1941 +UniRef50_Q891J7 ATP dependent Clp protease proteolytic subunit 1.03375895373e-07 1.11712450451e-06 409262753.604 +UniRef50_D4JWQ1 Seryl tRNA synthetase 8.89597774156e-07 8.5699369107e-06 3100647157.78 +UniRef50_UPI000376DE1E TonB dependent receptor, partial 7.79071648464e-08 2.02769149232e-06 787151859.544 +UniRef50_UPI00046628D5 hypothetical protein 3.62445038034e-07 1.08889903377e-07 -102363319.332 +UniRef50_Q984K6 Phosphoribosylformylglycinamidine cyclo ligase 1.10366838633e-05 7.14085834325e-06 -1572792569.6 +UniRef50_R7QBK2 Stackhouse genomic scaffold, scaffold_21 2.82814053813e-06 1.19603647342e-06 -658900439.093 +UniRef50_UPI0003B66A9A magnesium transporter MgtC 7.37222419999e-07 4.57252778069e-07 -113027180.061 +UniRef50_G2WVV9 DUF814 domain containing protein 1.83852447782e-07 2.15086773379e-07 12609680.5318 +UniRef50_E4AYJ6 1.54939573793e-06 4.50665566965e-05 17568411894.6 +UniRef50_P63412 Acetate kinase 2.16801849266e-05 7.97908860343e-06 -5531300717.03 +UniRef50_UPI0002BC6437 hypothetical protein 9.43714972126e-06 0.000142410437294 53682947959.0 +UniRef50_UPI0003FE028E hypothetical protein 2.30551906406e-07 8.96698187744e-08 -56875827.5947 +UniRef50_V7GTL1 9.10814090943e-06 3.48435704399e-06 -2270390558.07 +UniRef50_Q1MMP4 50S ribosomal protein L20 7.6848228418e-05 1.62466788691e-05 -24465589217.5 +UniRef50_Q3IV37 6.3481836455e-05 2.03595035782e-05 -17409014952.9 +UniRef50_Q3IV35 9.59974209065e-05 2.89784039355e-05 -27056399567.0 +UniRef50_Q3IV32 0.000146959023823 3.32398067358e-05 -45909843429.7 +UniRef50_A6LSR7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.17224678083e-05 3.00831957759e-06 -3518008575.36 +UniRef50_P71310 2.13164314041e-06 6.30569477283e-06 1685115865.38 +UniRef50_Q3JQ29 5.20829069546e-08 2.39254677281e-08 -11367503.7464 +UniRef50_A1B962 Ribosomal RNA large subunit methyltransferase E 6.60613515998e-05 8.39555925897e-06 -23280388006.8 +UniRef50_A6LTV3 7.03719542133e-06 9.51450308472e-06 1000119503.69 +UniRef50_Q034X6 30S ribosomal protein S12 2.68354968373e-06 0.000250706489643 1.00129904445e+11 +UniRef50_E4D6N2 3.27299990334e-06 5.08258515809e-05 19197669761.4 +UniRef50_X1MDA3 Marine sediment metagenome DNA, contig 3.14479091987e-07 1.13583348153e-05 4458540078.85 +UniRef50_C0RJC1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 4.29592993492e-05 2.67961871454e-05 -6525246740.37 +UniRef50_R6IDY7 1.39396577579e-06 3.06037845981e-06 672751249.722 +UniRef50_Q6BA81 4.92758610609e-07 1.00823769841e-07 -158228904.799 +UniRef50_Q8CQ58 ATP utilizing enzyme of the PP loop superfamily 7.7979601101e-05 3.90104029723e-05 -15732343490.4 +UniRef50_P37659 Protein BcsG homolog 3.9883975772e-05 6.31616288139e-06 -13551737987.3 +UniRef50_E6DXU7 ABC transporter, solute binding protein 2.85912243473e-06 7.05307519839e-05 27319867273.3 +UniRef50_Q2SVU4 Ribose import ATP binding protein RbsA 1 1.25968014835e-07 5.54673924839e-07 173073836.682 +UniRef50_Q98FL3 Phosphate transport system permease protein PstC 3.67890663263e-05 3.64588524928e-06 -13380308913.4 +UniRef50_A1BBE0 Alkylhydroperoxidase like protein, AhpD family 0.00012539891893 7.50808552819e-06 -47593976127.6 +UniRef50_P76463 2.96083119914e-05 7.08964037068e-06 -9091064068.45 +UniRef50_P76462 3.36093646212e-05 2.28927678448e-06 -12644303800.4 +UniRef50_P76466 3.74512144197e-05 1.57109976358e-05 -8776792298.12 +UniRef50_UPI0004753B4A sugar ABC transporter permease 4.33409094142e-07 1.26550092953e-07 -123882744.363 +UniRef50_P0ABE5 Cytochrome b561 2.33723534335e-05 3.47431417878e-05 4590526793.9 +UniRef50_D4H299 2.42215105498e-07 1.85149550807e-07 -23038064.7019 +UniRef50_UPI0003C78158 hypothetical protein, partial 8.27601264253e-07 3.39050645762e-07 -197233879.875 +UniRef50_UPI00046770C1 hypothetical protein 2.2937290419e-07 3.62747432931e-07 53844933.9423 +UniRef50_UPI0003B4B937 ribonuclease D 5.64863518462e-07 9.8832521296e-08 -188142432.399 +UniRef50_Q3IV99 HipA domain containing protein 0.00013053203913 4.37044951208e-05 -35053345010.3 +UniRef50_V9WGZ8 Di and tricarboxylate transporter 0.000145184687072 4.56846683289e-05 -40169378569.1 +UniRef50_A0PKQ3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.66419759311e-07 7.08394712289e-07 16945803.6078 +UniRef50_I3VIL5 Exodeoxyribonuclease V beta subunit 5.69426275479e-06 2.53853901306e-06 -1274004399.62 +UniRef50_C4LGQ2 Putative lysophospholipase 1.66219999784e-07 2.8086347897e-07 46282979.3811 +UniRef50_P21627 High affinity branched chain amino acid transport system permease protein BraD 3.33223303574e-05 1.38478674986e-05 -7862079634.63 +UniRef50_UPI0001CC0C54 phosphogluconate dehydratase 7.38538367525e-07 3.75032691266e-07 -146751702.222 +UniRef50_UPI000479E1B9 biotin biosynthesis protein BioY 1.46785979329e-07 4.47382777095e-07 121354615.996 +UniRef50_B0TGJ1 6.66112406707e-08 7.4066114148e-08 3009623.90437 +UniRef50_K7SIM7 Phosphoglycerate mutase family protein 1.69783803081e-06 3.02176993236e-05 11513817982.0 +UniRef50_G8P2V7 Integral membrane protein 2.30898615207e-07 1.85342808422e-07 -18391438.2317 +UniRef50_X2NCX1 3.21882041851e-07 1.19660531471e-07 -81639305.2774 +UniRef50_UPI00034D1C35 hypothetical protein 1.47512589275e-07 1.61161441976e-08 -53046357.2933 +UniRef50_G9ZD87 1.23629562631e-07 1.44930957181e-06 535193287.629 +UniRef50_UPI0003EC446E PREDICTED 3.85481968413e-08 5.94359184417e-08 8432629.53125 +UniRef50_U5X589 Dehydrogenase 1.53040119441e-07 1.28074170541e-06 455266968.711 +UniRef50_D7G0G3 2.01371754319e-06 4.72848563011e-07 -622067715.887 +UniRef50_UPI0003695FD6 membrane protein 1.77855156612e-07 4.54280430137e-07 111596275.042 +UniRef50_P0AFF3 Nucleoside permease NupC 4.03773622393e-05 2.07682670989e-05 -7916432338.84 +UniRef50_UPI00047A3E0B MarR family transcriptional regulator 1.45732613926e-06 2.14726889456e-07 -501652565.552 +UniRef50_A5UNU3 2.76225339721e-05 3.50490937895e-05 2998193332.42 +UniRef50_UPI000422F603 organic hydroperoxide resistance protein 2.43903343146e-07 2.99027730413e-06 1108744869.85 +UniRef50_T2A3R6 4.56636276836e-06 2.01923160101e-05 6308389075.68 +UniRef50_O33517 Protein translocase subunit SecD 7.32020902115e-05 1.31898771393e-05 -24227666849.9 +UniRef50_B5FUN9 Zinc transport protein ZntB 3.95122011708e-05 1.25944441878e-05 -10867028812.1 +UniRef50_P77445 Ethanolamine utilization protein EutE 2.88630781035e-05 1.33069157337e-05 -6280213644.27 +UniRef50_B5YU52 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 2.511540717e-05 2.12586237943e-05 -1557030776.82 +UniRef50_V5T2Q4 Diguanylate cyclase 3.21028785553e-06 1.32703086319e-06 -760293957.97 +UniRef50_C7MC16 ATP dependent zinc metalloprotease FtsH 2.96219661011e-08 3.0749185114e-05 12401864614.2 +UniRef50_Q7W4T9 Holliday junction ATP dependent DNA helicase RuvA 1.33380848001e-07 1.10694518557e-07 -9158749.58911 +UniRef50_P00946 Mannose 6 phosphate isomerase 1.4161205321e-05 3.09532785374e-06 -4467430527.14 +UniRef50_V5T4B0 Pilus assembly protein PilV 3.68236392742e-07 1.65908261343e-06 521130459.757 +UniRef50_T0VJG1 PTS fructose IIC component 4.21560749834e-07 4.2395120547e-07 965056.274443 +UniRef50_J2DPW6 8.11797825447e-07 1.25134197123e-06 177449365.466 +UniRef50_Q3Z5U2 HTH type transcriptional regulator SgrR 2.95981232245e-05 7.63393652057e-06 -8867211703.24 +UniRef50_F9Z280 5.19384184784e-06 5.7716621663e-05 21204090738.4 +UniRef50_R7H8U6 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 1.72374420867e-06 6.02794437515e-06 1737658425.68 +UniRef50_K1CPP9 1.02360880271e-05 5.14025013599e-06 -2057252289.6 +UniRef50_P04995 Exodeoxyribonuclease I 3.92816663246e-05 8.7217593902e-06 -12337409441.6 +UniRef50_UPI00031469E2 hypothetical protein 3.49009310975e-07 6.01597668139e-07 101973019.395 +UniRef50_A6LY50 MATE efflux family protein 3.7798493582e-06 5.63503679245e-06 748961932.917 +UniRef50_B7H068 Histidine tRNA ligase 3.74389062106e-06 9.04860851041e-05 35018888359.2 +UniRef50_UPI000419FBF3 ABC transporter permease 7.80845981907e-07 1.68010086243e-06 363040230.365 +UniRef50_UPI00035EE3E6 hypothetical protein 2.74712410009e-08 3.41102951508e-08 2680267.63067 +UniRef50_G8VDA6 4.48895982328e-06 4.90907479145e-05 18006289177.9 +UniRef50_U2BA89 3.92571083939e-08 5.29196420108e-07 197794512.37 +UniRef50_W7AYX4 5.23157566426e-07 2.96255125765e-07 -91603299.7009 +UniRef50_A6M0D8 3.00123651783e-06 6.8386931676e-06 1549228340.4 +UniRef50_Q1IYN7 Amidase 2.34592456886e-06 0.000204267990746 81518415978.0 +UniRef50_T2I810 Structural constituent of cell wall 9.22268625471e-07 9.84040141582e-08 -332604253.543 +UniRef50_Q4L769 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000204604245464 1.84905888e-05 -75136367066.7 +UniRef50_UPI0004684CB5 ABC transporter permease 2.00441101256e-06 3.27098046281e-07 -677151827.432 +UniRef50_Q5HRJ5 Teichoic acid biosynthesis protein, putative 0.000114316634903 3.97435734213e-05 -30106060034.5 +UniRef50_Q5HRF7 Phosphate acetyltransferase 0.000271715617175 0.000112751940874 -64175586826.4 +UniRef50_X7YDZ8 PE family protein 7.39202328085e-07 1.86277812405e-05 7221838824.48 +UniRef50_O63849 NADH ubiquinone oxidoreductase chain 6 5.29330056772e-07 2.52769032283e-07 -111651079.372 +UniRef50_UPI0004677159 hypothetical protein 2.17046249955e-07 1.24248791991e-07 -37463472.5329 +UniRef50_L1K787 2.85764715954e-06 7.7621197061e-07 -840300927.853 +UniRef50_Q2JTU3 Phosphate import ATP binding protein PstB 2 1.90695323778e-06 0.000464865260573 1.86901949808e+11 +UniRef50_UPI000301C2E3 ATPase 3.51689445339e-08 3.48435988965e-08 -131346.026258 +UniRef50_A4SCS1 50S ribosomal protein L5 0.000402813495798 0.000147537626564 -1.03058000997e+11 +UniRef50_Q3J2X2 Phosphatidate cytidylyltransferase 2.12396514788e-05 2.24575441206e-06 -7668069327.15 +UniRef50_B2TLQ4 Chemotaxis response regulator protein glutamate methylesterase 4.56830830374e-06 1.47085245052e-05 4093729714.99 +UniRef50_UPI00016C54E3 chromosomal replication initiator protein DnaA 4.28705816598e-08 1.1215174862e-07 27969657.2774 +UniRef50_A3PKA4 7.81005494173e-06 1.05437295796e-05 1103617997.27 +UniRef50_P32674 Formate acetyltransferase 2 1.48411209976e-05 6.34397885357e-06 -3430400555.2 +UniRef50_J9NZ66 2.22094461737e-07 5.79639580396e-08 -66261498.4503 +UniRef50_Q69K37 3.80841636054e-07 5.82548264305e-07 81431441.0436 +UniRef50_P39342 3.6098702294e-05 1.21821897793e-05 -9655389590.8 +UniRef50_UPI00045609F1 hypothetical protein PFL1_01799 4.4142479742e-08 9.19040928678e-06 3692460147.32 +UniRef50_UPI0000397F81 COG2931 4.51495142517e-08 7.49232890291e-07 284247098.982 +UniRef50_P18813 Maltose maltodextrin import ATP binding protein MalK 1.42140131912e-06 6.38562559059e-07 -316041613.948 +UniRef50_UPI00044149CA hypothetical protein AURDEDRAFT_115522 1.8375825344e-07 6.81805591241e-07 201067821.998 +UniRef50_I0C4L0 ADP ribose pyrophosphatase 0.000165638621705 3.63257969083e-05 -52205174217.4 +UniRef50_UPI000467F222 hypothetical protein 5.77056911532e-05 4.80668924539e-06 -21355976213.9 +UniRef50_Q167S3 TRAP dicarboxylate transporter, DctM subunit, putative 5.42344358016e-05 1.08249148096e-05 -17524956319.2 +UniRef50_Q2CDM9 8.85199201869e-07 5.57072014965e-07 -132468971.927 +UniRef50_J8KBH6 YhgE Pip domain containing protein 4.49647113805e-08 3.6152658056e-08 -3557534.06316 +UniRef50_UPI000365A141 hypothetical protein 1.50867437226e-07 3.48843562518e-07 79925391.2206 +UniRef50_C2W425 PTS system Galactitol specific IIC component 6.44178679882e-06 2.44353021746e-05 7264202962.47 +UniRef50_UPI00037AE12F hypothetical protein 7.85966462809e-06 4.61097340622e-05 15442022411.7 +UniRef50_UPI0003330970 4.14980052152e-06 4.55420185115e-07 -1491466676.95 +UniRef50_Q64467 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 4.71370048222e-08 5.83309207037e-08 4519121.20616 +UniRef50_B5R9D9 Probable L ascorbate 6 phosphate lactonase UlaG 0.000107357100235 4.82892053753e-05 -23846433999.4 +UniRef50_Q1C790 Pyridoxine pyridoxamine 5 phosphate oxidase 2.4336708678e-05 3.15913364256e-05 2928782246.0 +UniRef50_UPI00046FFDD3 iron dicitrate transporter subunit FecD 1.28998321397e-07 3.18896870912e-07 76664374.7565 +UniRef50_P0AE25 Arabinose proton symporter 2.2554369045e-05 2.87828429602e-05 2514511351.54 +UniRef50_Q8DTN8 Adenosine deaminase 6.32842057744e-05 1.34913633666e-05 -20101981506.9 +UniRef50_UPI0002554E0F xylose ABC transporter ATP binding protein 8.29221375268e-07 2.9654600144e-07 -215047585.076 +UniRef50_W5X630 Putative OsmC like protein 1.23875489354e-07 2.72621155647e-07 60050450.7971 +UniRef50_A7X3N8 Putative membrane protein insertion efficiency factor 1.53034860346e-05 1.62603529987e-05 386298935.485 +UniRef50_Q4L3G1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000202080149535 7.02342394128e-05 -53227811847.5 +UniRef50_P77473 Putative cyclic di GMP phosphodiesterase YlaB 2.3238699253e-05 9.20959635185e-06 -5663720997.63 +UniRef50_Q1NHL2 Transposase and inactivated derivative 2.24138856622e-07 1.8650724916e-07 -15192341.7242 +UniRef50_P32717 Putative alkyl aryl sulfatase YjcS 3.70648146794e-05 1.42195500035e-05 -9222913692.58 +UniRef50_Q16DL2 Ubiquinone biosynthesis protein UbiB 8.71008014206e-05 1.04534339287e-05 -30943482825.4 +UniRef50_E1WIS2 Intracellular growth attenuator protein igaA 3.28148520949e-05 7.3376257054e-06 -10285468934.2 +UniRef50_G7M8Q2 Methyl accepting chemotaxis sensory transducer 2.37172727924e-06 9.47387498409e-06 2867224181.6 +UniRef50_UPI000255D9DF Fis family transcriptional regulator 6.50273458482e-06 3.14217101544e-06 -1356700751.71 +UniRef50_B0V742 2.48982830032e-06 5.54039407662e-05 21362076531.7 +UniRef50_Q2FH57 Putative oligopeptide transport ATP binding protein oppD2 0.000187761479194 4.90642295408e-05 -55993781691.6 +UniRef50_U6J469 NADH dehydrogenase ubiquinone iron sulfur 1.25651045625e-07 2.42665101498e-07 47240010.2799 +UniRef50_UPI000474822F isocitrate dehydrogenase 3.0908914629e-07 3.20114300149e-07 4450989.90673 +UniRef50_Q8DRQ7 Ribosomal RNA large subunit methyltransferase H 3.69798114721e-05 4.08781651296e-05 1573813209.71 +UniRef50_Q2YVJ6 0.000101380138573 3.99533692147e-05 -24798740581.2 +UniRef50_B9MKG1 Adenylate kinase 1.94525324048e-07 1.43448036743e-07 -20620527.6738 +UniRef50_A6M277 1.70294816142e-06 1.80806146044e-06 42435528.6996 +UniRef50_D4HBC2 Transporter, CPA2 family 2.40950646623e-06 4.53879779371e-05 17350936338.0 +UniRef50_P04890 Integrase 4.45318883312e-05 1.61219516575e-05 -11469440064.3 +UniRef50_A6LSE2 3.24244096982e-06 1.04731022023e-05 2919106669.74 +UniRef50_UPI00046606A2 hypothetical protein, partial 9.74285308776e-08 6.74204026379e-08 -12114649.6115 +UniRef50_A6M2U1 Multi sensor hybrid histidine kinase 2.50147082537e-06 1.54457549261e-05 5225766335.68 +UniRef50_UPI000476D31F DNA gyrase subunit A 8.78633060868e-08 2.07521458052e-07 48307464.3189 +UniRef50_UPI0001CC0D72 hypothetical protein 4.60593486597e-07 1.03767812091e-06 232976148.497 +UniRef50_R4ZZW8 Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage 5.3146838526e-05 1.29205251708e-05 -16239856333.9 +UniRef50_Q9K8F8 Glutamyl tRNA reductase 7.16692055211e-08 1.92649038552e-06 748814071.581 +UniRef50_I0C5E6 Endonuclease 8.7040249981e-05 2.90952418913e-06 -33964606402.3 +UniRef50_UPI000472AF7A hypothetical protein 3.65716987911e-07 1.0528778702e-07 -105138464.225 +UniRef50_B4FAT0 Adenylyltransferase and sulfurtransferase MOCS3 2 2.21194887522e-07 2.59044250973e-07 15280252.4891 +UniRef50_D6M307 Transcriptional regulator, CdaR 5.67075770637e-06 2.24875198353e-06 -1381505703.04 +UniRef50_M9VJY1 Transporter, lactate permease family protein 1.66316340848e-06 3.05029152082e-05 11642961705.1 +UniRef50_UPI00046A82C0 3 methyladenine DNA glycosylase 2.92974829087e-07 2.0863241983e-07 -34050065.6148 +UniRef50_UPI0004700FE4 hypothetical protein 3.24210305445e-07 1.10755738241e-07 -86174228.1623 +UniRef50_F0KN05 Multiple inositol polyphosphate histidine phosphatase 2.82906878879e-06 7.87989829104e-05 30669986586.6 +UniRef50_E8PIM3 9.61339530144e-07 6.44670102974e-05 25638018591.0 +UniRef50_P52129 mRNA endoribonuclease LS 2.03536311624e-05 1.00783115063e-05 -4148272637.52 +UniRef50_UPI000237AE14 spermidine putrescine ABC transporter ATPase subunit 1.88827311168e-07 9.17371961268e-08 -39196470.8718 +UniRef50_A5WHV0 Isochorismatase hydrolase 4.42102597091e-06 5.53718822241e-06 450608397.782 +UniRef50_Q4K629 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 4.74951535326e-07 1.57146415598e-06 442675600.679 +UniRef50_UPI0003718DF7 hypothetical protein 5.62021540451e-07 3.76715755861e-07 -74810219.1967 +UniRef50_UPI00036AD976 hypothetical protein 6.19319100806e-06 1.322913359e-06 -1966190851.95 +UniRef50_C1HZT4 9.17574154035e-07 6.95110090512e-06 2435808789.11 +UniRef50_UPI0003690E18 hypothetical protein 1.6176108017e-07 3.98381790308e-06 1543011241.32 +UniRef50_UPI00036650E1 ATPase AAA 5.25092471424e-08 5.50431275763e-07 201017233.145 +UniRef50_F9VEN7 Epoxyqueuosine reductase 6.50717554635e-05 5.10777796414e-05 -5649539764.78 +UniRef50_X1PDI0 Marine sediment metagenome DNA, contig 3.34307163761e-07 3.72821857681e-07 15548854.5639 +UniRef50_G7DLE2 0.000148808206506 1.24348655432e-05 -55055591235.8 +UniRef50_E2PHB7 8.40654494121e-08 1.63992346377e-07 32267469.1181 +UniRef50_R5GC07 8.10956618569e-08 1.66020903008e-06 637507444.651 +UniRef50_F0YDY4 2.95396329632e-06 7.26157018034e-06 1739033759.36 +UniRef50_UPI0003802080 hypothetical protein 3.38066816286e-07 9.78799899314e-06 3815053583.5 +UniRef50_UPI00029AFE54 RNA directed DNA polymerase 5.54738597044e-08 9.86150040641e-08 17416609.3794 +UniRef50_W7WC52 8.87671126056e-06 1.90168520771e-05 4093699281.14 +UniRef50_X1XUX4 Uroporphyrinogen decarboxylase 1.74450051423e-08 5.97598035533e-08 17083003.3795 +UniRef50_UPI0001CBC083 PREDICTED 2.68898682801e-07 5.0277683341e-07 94419479.4085 +UniRef50_P54746 Mannosylglycerate hydrolase 4.20434891043e-05 6.79071365828e-06 -14231978047.8 +UniRef50_E4BG02 Dinuclear metal center protein, YbgI family 2.60626612691e-06 6.09232392082e-05 23543277662.7 +UniRef50_A1VMA0 50S ribosomal protein L19 6.90683649031e-06 2.62869624505e-05 7823994671.02 +UniRef50_T1YBG5 Opine dehydrogenase 0.000236598526903 2.83989804219e-05 -84052711810.1 +UniRef50_X1B9K9 Marine sediment metagenome DNA, contig 1.40942159089e-07 3.06857897143e-07 66982219.4675 +UniRef50_A5WGQ7 Periplasmic protein like protein 1.04450235258e-07 4.16444173436e-07 125955781.439 +UniRef50_X2N5D2 Outer membrane specific lipoprotein transporter subunit LolC 8.18662840339e-07 4.53783390152e-07 -147306311.615 +UniRef50_X1D3Z2 Marine sediment metagenome DNA, contig 2.12937360642e-07 6.48408761285e-07 175805148.275 +UniRef50_Q97D80 4 hydroxy tetrahydrodipicolinate synthase 2 1.33073791603e-06 2.28148147829e-05 8673385470.44 +UniRef50_P40720 Fumarate hydratase class I, aerobic 2.93029697924e-05 6.02324560901e-06 -9398310327.18 +UniRef50_B6IUC1 Methylthioribose 1 phosphate isomerase 2.78372224471e-05 1.27142668247e-05 -6105322764.3 +UniRef50_Q02425 Putative transcriptional regulator MtlR 5.03092610053e-05 3.19147800609e-05 -7426077682.92 +UniRef50_B4M1F9 GJ18858 1.01981263875e-07 5.10213154577e-07 164808223.845 +UniRef50_B2IU46 Phosphoribosylformylglycinamidine synthase 2 2.53327206266e-07 6.02501613495e-08 -77947572.3544 +UniRef50_R4GH13 1.11755566566e-07 1.84542428861e-07 29384949.5037 +UniRef50_C1FA47 Potassium transporting ATPase A chain 9.22300757834e-08 2.02210674766e-05 8126258667.31 +UniRef50_Q1I3T3 Polyhydroxyalkanoate synthesis protein PhaF 1.66783205682e-06 5.05074079735e-07 -469419663.992 +UniRef50_Q3HKH1 0.000228404875845 6.85987989442e-05 -64515674286.0 +UniRef50_Q3HKH3 2.37788050164e-05 1.57805054865e-05 -3229011670.39 +UniRef50_UPI000370C63A hypothetical protein 3.19690775232e-06 9.41514765672e-06 2510379755.79 +UniRef50_W4TJY2 1.91976595905e-06 5.08845783457e-06 1279239794.37 +UniRef50_UPI000441F8F0 PREDICTED 5.63058661583e-06 1.75801197262e-07 -2202163811.22 +UniRef50_G2IS79 Hypothetical membrane protein 1.9534428448e-06 5.24911101547e-07 -576715794.806 +UniRef50_A5UM67 Sugar fermentation stimulation protein homolog 2.98102486338e-05 6.58810500783e-06 -9375064349.56 +UniRef50_R7PWU8 1.59021358448e-05 1.05843839075e-05 -2146841713.24 +UniRef50_Q2AC94 3.52250371022e-07 4.2520321529e-07 29451958.4631 +UniRef50_F7Z4K9 TnpA 6.05284995007e-06 2.4372767966e-06 -1459651250.13 +UniRef50_R7PWU3 2.92339228816e-05 7.95294053104e-06 -8591393721.96 +UniRef50_C0QUK8 Methionyl tRNA formyltransferase 4.58608148375e-08 1.44176175045e-07 39691117.3809 +UniRef50_UPI000375AFE0 hypothetical protein 4.71469669417e-08 3.14629291909e-07 107985896.966 +UniRef50_UPI00046A12DF hypothetical protein 1.44834385524e-07 2.41145096021e-07 38881815.693 +UniRef50_A6LX98 Glycoside hydrolase, family 18 4.18275602248e-06 1.57164378084e-05 4656288871.16 +UniRef50_P22102 Trifunctional purine biosynthetic protein adenosine 3 4.45304472711e-08 2.46798581498e-08 -8013926.42239 +UniRef50_Q5KXU4 Chorismate synthase 0.000271011618318 0.000413090051106 57358806814.9 +UniRef50_UPI000474B63A hypothetical protein 5.22419775497e-08 1.01118569742e-07 19732080.0513 +UniRef50_F8IFU6 LmbE family protein 1.76078834687e-07 1.68551746895e-07 -3038777.70938 +UniRef50_UPI000289F8D3 methionine aminotransferase 1.00075520236e-07 2.0148592413e-07 40940624.4976 +UniRef50_M9RJP3 2.05562130125e-05 2.25719774668e-06 -7387537016.97 +UniRef50_F4NWK8 3.11887641968e-06 8.60145743281e-06 2213385233.84 +UniRef50_UPI00041A4561 hypothetical protein 3.38778996678e-07 2.77703241396e-08 -125558017.609 +UniRef50_Q9PD69 Proline iminopeptidase 2.12520408214e-06 3.98316716448e-05 15222563665.5 +UniRef50_G7M2T0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 2.19779183948e-06 7.76722638459e-06 2248449070.51 +UniRef50_Q8R9V7 3 oxoacyl [acyl carrier protein] synthase 3 1.57914310134e-06 2.7250793335e-07 -527504651.534 +UniRef50_UPI0002888835 glycerol 3 phosphatase 7.71932335607e-08 1.63930098813e-07 35016736.8834 +UniRef50_UPI0003722744 hypothetical protein 1.04025515617e-07 3.46914523088e-07 98057272.8993 +UniRef50_B7GZ54 Actinomycin synthetase II 1.28516514653e-06 6.51273320248e-05 25773866200.3 +UniRef50_D7CWU8 Type IV pilus assembly protein PilM 9.93384181239e-07 0.000332070981776 1.33660088928e+11 +UniRef50_E8SJI8 0.000553151876156 3.37179861667e-05 -2.09701835559e+11 +UniRef50_UPI0003C10230 PREDICTED 9.09044766577e-08 5.28224137874e-07 176551313.749 +UniRef50_UPI000470BFD5 amino acid ABC transporter permease 2.29932477038e-07 4.0599114889e-07 71077046.3095 +UniRef50_P45579 2.88042369488e-05 5.88227214469e-06 -9253878475.55 +UniRef50_UPI000464E9C2 hypothetical protein 2.84290080852e-07 4.16968803504e-07 53564028.4856 +UniRef50_Q8GAI8 Succinate semialdehyde dehydrogenase 4.53639892396e-06 5.21119836773e-05 19206847383.0 +UniRef50_Q3IV11 Isopropylmalate homocitrate synthase 0.000216534286559 4.19992717389e-05 -70461927268.3 +UniRef50_A1JS01 DNA directed RNA polymerase subunit alpha 3.73896874347e-05 8.25341309138e-06 -11762671494.7 +UniRef50_UPI0003B67DBA hypothetical protein 2.52524233072e-06 9.10681211951e-07 -651818136.54 +UniRef50_P06574 RNA polymerase sigma B factor 0.000211631505799 9.70995263341e-05 -46237965575.5 +UniRef50_UPI00046D6464 translation factor Sua5 3.13026905236e-07 4.5684901782e-07 58062751.7459 +UniRef50_UPI000476E6E7 lysyl tRNA synthetase 1.43452792468e-07 7.34868156425e-08 -28246123.4235 +UniRef50_Q88IQ4 Sensor histidine kinase response regulator 2.06724935994e-05 1.39408796776e-05 -2717635146.42 +UniRef50_A8LKQ2 Sulfurtransferase 5.42881465951e-06 9.67612096378e-06 1714689675.34 +UniRef50_P44874 Acetate CoA transferase subunit beta 1.05755590958e-05 8.21770939953e-06 -951892856.454 +UniRef50_Q3KA14 LysR family regulatory protein 6.90365605888e-06 1.17353917808e-05 1950631003.0 +UniRef50_E9LLQ7 IS2 ORFB transposase 8.4388634471e-05 2.90687309535e-05 -22333323901.6 +UniRef50_P0AB08 1.89595411636e-05 1.80806146039e-05 -354833437.793 +UniRef50_Q5LS56 Acrylyl CoA reductase AcuI 6.03987495323e-08 7.49737680391e-07 278294585.528 +UniRef50_UPI000462E49A hypothetical protein 1.59645827957e-07 2.72691258045e-07 45637827.3499 +UniRef50_M3DK36 3.42413966477e-06 4.97906368169e-06 627741906.694 +UniRef50_P56072 L serine dehydratase 1.97575715726e-06 5.05622141995e-05 19614948930.8 +UniRef50_UPI00040107BB glycosyl transferase family 39 1.4853430044e-07 3.30138052097e-07 73315663.0726 +UniRef50_Q6A5R4 Sodium 3.09795425739e-06 6.0915922918e-05 23341823454.5 +UniRef50_U5NYY0 Lysophospholipase 6.8074712477e-08 2.00212996851e-07 53345846.9209 +UniRef50_B5GT91 WD 40 repeat containing protein 4.3740327724e-07 1.72628374944e-06 520336862.969 +UniRef50_UPI00034B152D hypothetical protein 1.85478690037e-07 7.97076189213e-08 -42701079.3665 +UniRef50_Q58321 Magnesium chelatase subunit ChlI homolog 2.24249102288e-06 4.99835185524e-05 19273638661.9 +UniRef50_G8VJV8 Allantoate amidohydrolase 2.33057399309e-06 7.47163948279e-05 29223044144.9 +UniRef50_Q2NEU9 Serine tRNA ligase 2.10232037425e-05 3.60861888495e-06 -7030481608.0 +UniRef50_Q8DSX1 0.000118005192322 1.12434754364e-06 -47186231326.1 +UniRef50_Q92QK5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000153994559258 0.000118880197218 -14176098857.2 +UniRef50_R9ZCZ8 Sensor histidine kinase 1.94241405987e-06 3.97771607208e-06 821676398.293 +UniRef50_UPI0003466363 hypothetical protein 2.38896737416e-07 5.79119070527e-08 -73065796.9512 +UniRef50_P32672 Fructose like permease IIC component 2 2.681293934e-05 1.62091535389e-05 -4280878450.99 +UniRef50_Q88YG1 Uracil DNA glycosylase 3.26356762696e-06 1.10336177835e-06 -872101609.791 +UniRef50_A0A034KNE5 8.64222206077e-07 1.34740399132e-07 -294500757.212 +UniRef50_A6LZY6 Molybdopterin guanine dinucleotide biosynthesis protein B 1.96266545327e-06 6.73726323636e-06 1927563715.94 +UniRef50_UPI0003AB5CEA PREDICTED 7.66873094363e-08 3.77712998854e-07 121527764.819 +UniRef50_Q81MS2 Arginine decarboxylase 5.52701098489e-07 7.45339683826e-06 2785895551.2 +UniRef50_A7WWP7 0.000216012122227 8.990303014e-05 -50911788008.1 +UniRef50_F8HFP7 Transcriptional regulator, LysR family 2.89515616722e-05 1.32425560493e-05 -6341918341.14 +UniRef50_R0PPD5 4.47611844493e-06 6.86783035329e-06 965563447.01 +UniRef50_D5BRX6 Inner membrane translocator 9.47113544009e-05 1.35590935082e-05 -32762163572.6 +UniRef50_UPI000477A269 hypothetical protein 1.23418692673e-06 4.16655726982e-07 -330047377.574 +UniRef50_K7E2E5 1.23633010252e-06 5.81792965431e-07 -264244674.317 +UniRef50_X8A453 Putative MAGNESIUM CHELATASE domain protein 6.11602089238e-07 5.05798388056e-06 1795058892.4 +UniRef50_B5XSS1 50S ribosomal protein L13 0.000205362311082 4.33760089894e-05 -65395857950.4 +UniRef50_P57576 50S ribosomal protein L6 5.21325399623e-05 0.00013601878598 33865906917.3 +UniRef50_A0A011QAN2 1.45434840898e-07 2.13895666075e-07 27638475.2328 +UniRef50_S5XRJ3 Proline iminopeptidase 8.25244928637e-05 1.1871127075e-05 -28523630783.2 +UniRef50_UPI0002557E64 C4 dicarboxylate transport transcriptional regulatory protein DctD, partial 2.11674386272e-06 3.40750044459e-06 521094271.465 +UniRef50_Q7N4V9 3 phenylpropionate cinnamic acid dioxygenase subunit beta 8.85263164251e-05 5.61413586235e-05 -13074204872.6 +UniRef50_B2UTG2 UPF0763 protein HPSH_03535 2.76884588405e-06 3.08317070629e-05 11329321428.0 +UniRef50_I4KRZ7 Transcriptional regulator, GntR family aminotransferase, classes I and II family protein 2.41310971238e-05 9.72480837877e-06 -5815995551.4 +UniRef50_A0A016QN34 3.09411129684e-07 0.000137680408713 55458357456.0 +UniRef50_UPI00041C20AD hypothetical protein 1.61369483793e-07 2.31241246083e-07 28208087.8594 +UniRef50_J8VH78 Coproporphyrinogen III oxidase 4.91074042262e-06 3.46389145314e-06 -584110683.813 +UniRef50_UPI00047EB041 hypothetical protein 6.65757192014e-08 7.50426515997e-08 3418204.51014 +UniRef50_UPI0002490BAD competence damage inducible protein A 1.76719284851e-07 7.73404174448e-08 -40120468.2877 +UniRef50_UPI0004296EAD ribosome binding factor A 5.55379054118e-07 9.96046652012e-07 177902916.869 +UniRef50_P0AAJ6 Formate dehydrogenase O iron sulfur subunit 3.60230513717e-05 7.74000796025e-06 -11418211697.2 +UniRef50_B7LQ20 Glyceraldehyde 3 phosphate dehydrogenase A 8.71097073012e-07 3.3096727597e-05 13009882495.5 +UniRef50_UPI00035D6F39 hypothetical protein 5.39956237266e-07 9.78389571234e-08 -178488171.383 +UniRef50_A6M0J9 CheA signal transduction histidine kinase 5.93520920681e-06 2.27722642946e-05 6797325752.84 +UniRef50_UPI00023759DD acyltransferase family protein 5.051735618e-08 6.96612311266e-08 7728617.23771 +UniRef50_R7PX72 2.91878355791e-05 1.67793582503e-06 -11106084115.2 +UniRef50_F0TA01 Archaeal glutamate synthase [NADPH] 3.35978709607e-05 9.08907900225e-06 -9894500070.3 +UniRef50_Q492F5 4 hydroxy tetrahydrodipicolinate synthase 4.57785272765e-06 4.36231104301e-06 -87016823.0831 +UniRef50_J7QKX2 Transposase domain protein 2.5323968039e-06 6.98625941747e-07 -740315799.949 +UniRef50_K0S542 7.5993358359e-06 1.16450193223e-06 -2597821411.2 +UniRef50_W9UW01 1.71349736015e-06 6.68853702205e-06 2008484562.11 +UniRef50_A6T6Q1 Ribosomal RNA large subunit methyltransferase F 1.47449936296e-05 2.2172617736e-05 2998622998.95 +UniRef50_K0Q3E4 3.29473244734e-07 1.52890744609e-05 6039374585.93 +UniRef50_Q8G5F0 Arginine biosynthesis bifunctional protein ArgJ 2.65281971498e-07 1.55475033706e-05 6169620312.76 +UniRef50_Q9I702 Putative 3 oxopropanoate dehydrogenase 5.07491012843e-06 3.37427410476e-06 -686567631.906 +UniRef50_A4WZZ2 0.000103968082553 6.89422299157e-05 -14140366525.2 +UniRef50_UPI00047EFBD1 glycine betaine ABC transporter ATPase 1.1710862618e-07 1.71980703415e-07 22152530.9359 +UniRef50_B9ADV3 Putative methyl coenzyme M reductase, alpha subunit 9.75849308718e-06 2.07529576475e-06 -3101801042.5 +UniRef50_UPI000463E516 hypothetical protein 1.88009409823e-07 2.67283216012e-07 32003808.3575 +UniRef50_P0AAT4 Miniconductance mechanosensitive channel YbdG 3.39433753035e-05 6.8528512706e-06 -10936776990.2 +UniRef50_Q6F1M4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1 7.06306053309e-08 5.23063929398e-08 -7397709.40566 +UniRef50_S5D395 Enoyl CoA hydratase carnithine racemase 3.01185629405e-06 4.79981320846e-05 18161511580.3 +UniRef50_P33216 Mannitol 2 dehydrogenase 3.56331307469e-05 2.48429943479e-06 -13382589982.6 +UniRef50_Q57354 Putative GTP cyclohydrolase 1 type 2 2.29396527318e-05 1.14583637709e-05 -4635137244.77 +UniRef50_UPI0004769B76 hypothetical protein 4.95041552103e-08 2.73149234365e-07 90288262.8886 +UniRef50_X0TRL2 Marine sediment metagenome DNA, contig 1.48422532501e-07 2.09258070182e-07 24560053.0978 +UniRef50_F2ECU7 Predicted protein 7.26248281037e-07 1.56293586922e-06 337781046.661 +UniRef50_Q98BM2 ABC transporter, periplasmic oligopeptide binding protein 0.000114872341155 3.24263744093e-05 -33284448501.0 +UniRef50_Q28L99 50S ribosomal protein L25 9.41637606505e-05 2.90475447734e-06 -36842380666.1 +UniRef50_A6LVP1 Sterol 3 beta glucosyltransferase 7.59093165696e-06 1.33456418674e-05 2323247130.19 +UniRef50_M1MJB2 3.37510870599e-06 4.90051855895e-05 18421421981.9 +UniRef50_UPI0004677D66 DNA 3 methyladenine glycosylase 2.49540027311e-07 2.71568465645e-07 8893150.87477 +UniRef50_P76114 HTH type transcriptional regulator McbR 3.07691554737e-05 2.86715247755e-06 -11264381005.6 +UniRef50_Q62KW5 Valine tRNA ligase 2.08206059521e-08 2.05786926489e-08 -97663.3691119 +UniRef50_F2AE12 1.07263013971e-06 6.11273463885e-07 -186255351.514 +UniRef50_UPI00032A5C01 PREDICTED 3.40784356417e-08 3.94420191026e-07 145474388.539 +UniRef50_S2ZSD0 9.43330332404e-08 2.00887778985e-07 43017458.431 +UniRef50_O25130 UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase 3.15938107649e-06 4.24031087024e-05 15843174417.3 +UniRef50_UPI0003638962 hypothetical protein 4.7301544623e-08 2.6577930683e-07 88202153.6266 +UniRef50_I1F566 2.61112152096e-07 4.2120478864e-07 64631361.9304 +UniRef50_F8JEF7 4.92326331845e-06 1.23143204724e-06 -1490437588.05 +UniRef50_UPI0003B4FCE0 MFS transporter 9.84172686036e-08 5.81622566746e-07 195075908.456 +UniRef50_P56909 NADH quinone oxidoreductase subunit E 1 4.49124236004e-06 9.58863052789e-07 -1426064873.51 +UniRef50_P0AC17 Dihydroneopterin aldolase 3.15447901544e-06 5.71580719732e-05 21801913175.7 +UniRef50_P02918 Penicillin binding protein 1A 4.48575270956e-05 1.57263967788e-05 -11760594788.1 +UniRef50_Q08NZ6 1.08318646895e-07 2.17627086816e-06 834857688.35 +UniRef50_X1G2K5 Marine sediment metagenome DNA, contig 2.35674185933e-06 1.53004192369e-07 -889675939.054 +UniRef50_UPI00023787D7 hypothetical protein 4.99091345749e-06 1.25763373362e-06 -1507170837.02 +UniRef50_A9CFS9 Small heat shock protein 0.000186393422623 7.35228311697e-06 -72281105100.4 +UniRef50_D9W0X8 Predicted protein 4.27135503951e-08 8.93453564839e-07 343454183.585 +UniRef50_G8VLV0 tRNA processing ribonuclease 1.16989459351e-06 5.29547348195e-05 20906175470.7 +UniRef50_UPI00046F8633 cation transporter 6.29543610837e-08 2.361819854e-07 69934117.6784 +UniRef50_P29961 Heme exporter protein C 6.33667996483e-05 2.71023970454e-05 -14640384345.1 +UniRef50_E8W5Y1 1.34656119687e-06 4.89480567786e-07 -346013967.523 +UniRef50_P77131 3.44899601103e-05 3.68343680309e-06 -12436971497.7 +UniRef50_A1B054 Transcriptional regulator, LuxR family 4.52533864009e-05 8.81114093073e-06 -14712181693.0 +UniRef50_B8CSC0 Lipoprotein signal peptidase 3.77962892304e-05 2.21170440102e-05 -6329903701.37 +UniRef50_B9KM78 OmpA MotB domain protein 6.37571353268e-05 2.37011799051e-05 -16171080745.6 +UniRef50_P71481 DNA primase 2.93534722082e-08 7.03535756268e-08 16552244.8779 +UniRef50_W4TGX7 Substrate specific component BL0695 of predicted ECF transporter 5.09848768654e-07 5.34909430196e-05 21389117900.2 +UniRef50_K6XJA6 5.02975019455e-07 5.19320411239e-06 1893503040.4 +UniRef50_R5KG87 AAA domain AAA domain multi domain protein 1.87039670551e-07 6.16536482589e-05 24814824167.2 +UniRef50_UPI00037A76B2 hypothetical protein 5.17462644591e-08 1.30416144481e-07 31759995.9528 +UniRef50_UPI0004632E52 hypothetical protein 4.33786031756e-07 3.12809515996e-07 -48839703.9611 +UniRef50_F3X0N5 4.15154658099e-08 1.54479119641e-07 45604813.2715 +UniRef50_M5AFG5 ABC type transporter ATP binding protein EcsA 0.000154175206791 1.97886890385e-05 -54253486324.9 +UniRef50_Q6K4U0 1.94246649494e-06 1.79109969865e-07 -711888667.993 +UniRef50_W4UAN6 Excinuclease 1.06068022332e-06 4.13362203352e-06 1240584318.01 +UniRef50_F9YZU0 Transcriptional regulator, GntR family 1.55985945804e-06 6.42747758696e-05 25318781353.9 +UniRef50_P35667 Glutathione synthetase 2.27515903807e-08 2.64124727127e-07 97445297.2858 +UniRef50_D2FKD3 1.19606505727e-06 1.84393460425e-07 -408424238.255 +UniRef50_P12282 Molybdopterin synthase adenylyltransferase 3.32547296515e-05 2.81964877713e-06 -12287015629.4 +UniRef50_B3QXJ4 Beta lactamase domain protein 5.39586293597e-08 1.05973540902e-06 406044428.218 +UniRef50_UPI0004403F5A PREDICTED 2.91580616825e-07 1.6289602209e-07 -51951550.0321 +UniRef50_Q8TJT7 Translation initiation factor 2 subunit gamma 2.43638092775e-05 1.06270768987e-05 -5545687429.98 +UniRef50_I5ARC3 Acetolactate synthase 5.74579168958e-06 1.03966230042e-05 1877597673.83 +UniRef50_Q55484 Diaminopimelate decarboxylase 4.40923585114e-08 1.0666126503e-07 25259835.3684 +UniRef50_D9QTB8 Oxidoreductase domain protein 6.85196686045e-06 3.30117129143e-06 -1433499744.37 +UniRef50_P0CF79 Transposase InsF for insertion sequence IS3A 0.00017169727372 0.000135475406738 -14623212192.9 +UniRef50_Q9RR46 Glycine betaine carnitine transport ATP binding protein GbuA 4.54241519897e-06 7.14149790813e-05 26997274657.9 +UniRef50_UPI00036AA55A hypothetical protein 2.9896390201e-07 3.37635228468e-07 15612089.0416 +UniRef50_Q3IUW0 TraW 0.000353646108748 9.91003465552e-05 -1.02763247825e+11 +UniRef50_UPI00021A7398 PREDICTED 9.39645183949e-08 1.25422156461e-06 468410007.514 +UniRef50_E5QWQ2 Aspartokinase 0.00016771635149 4.06066863886e-05 -51315731612.3 +UniRef50_Q7F759 P0044F08.26 protein 2.1365921671e-06 3.1756166524e-07 -734364935.615 +UniRef50_Q73C41 S layer protein, putative 1.07044019362e-07 1.53251193883e-05 6143723773.21 +UniRef50_V4QD05 Fimbrial protein 1.80435176483e-07 5.63528409567e-07 154659439.279 +UniRef50_A5GUA9 Light independent protochlorophyllide reductase subunit B 3.416250867e-05 1.87319756362e-05 -6229495539.68 +UniRef50_E6V099 Formiminoglutamate deiminase 1.23630782379e-06 1.35673830875e-06 48619264.6266 +UniRef50_P06710 DNA polymerase III subunit tau 3.61403521213e-05 1.53686321157e-05 -8385798263.93 +UniRef50_R1CZX5 1.09915370727e-07 4.27198990526e-06 1680280563.99 +UniRef50_A0A009JRB9 9.516453501e-07 9.30631852543e-06 3372884084.25 +UniRef50_UPI0002FFBB25 hypothetical protein 3.40387450623e-07 9.43353330814e-08 -99334259.2507 +UniRef50_UPI000423190C O succinylbenzoate synthase 4.74122658651e-07 2.39671351469e-05 9484417433.17 +UniRef50_B9DX48 3.17921175202e-06 8.60944452576e-06 2192251607.21 +UniRef50_B3DW88 1 deoxy D xylulose 5 phosphate synthase 2.03849139264e-08 1.15345236983e-06 457433236.248 +UniRef50_X8CKI5 CobQ CobB MinD ParA nucleotide binding domain protein 1.90480569793e-07 3.06313692361e-07 46763253.013 +UniRef50_Q9ZIS7 Lipopolysaccharide core heptose kinase RfaY 1.45952977339e-05 4.30534724948e-05 11488914372.1 +UniRef50_U3SVH6 4.11971759937e-05 1.52737945226e-05 -10465587215.5 +UniRef50_P76269 2.97558337707e-05 3.41140322832e-05 1759458220.61 +UniRef50_G2P8Z9 Transposase, IS605 OrfB family 5.25746502591e-07 6.57172083892e-06 2440834032.02 +UniRef50_UPI000471D0D3 hypothetical protein 1.16142176247e-07 1.28805767409e-05 5153158871.0 +UniRef50_Q6A9L6 Periplasmic binding protein 6.85383946735e-08 1.28119932557e-06 489566098.827 +UniRef50_UPI0003B48E1B ADP ribose pyrophosphatase 1.62582808545e-07 5.24238006971e-07 146004641.613 +UniRef50_UPI00036CF9CE hypothetical protein 2.88882160989e-07 5.160244687e-07 91700136.9725 +UniRef50_D3E124 UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU 5.08425213691e-05 7.38244923591e-06 -17545364435.2 +UniRef50_K8DBK5 8.66183062595e-08 2.1885100833e-07 53383964.5038 +UniRef50_N4W5E7 C4 dicarboxylate transport protein 6.78825717177e-06 1.58704335806e-05 3666586067.08 +UniRef50_U2ACI4 1.16290430102e-06 3.84411020048e-07 -314287290.715 +UniRef50_K2FH00 4.7796071396e-07 2.33245156449e-07 -98794673.5648 +UniRef50_B2UY31 Two component sensor kinase 1.54399678523e-06 1.33854775684e-05 4780551103.49 +UniRef50_F4REI7 1.60069797117e-07 9.1835394336e-06 3642885422.67 +UniRef50_C4I344 Permease, major facilitator superfamily 7.83707935342e-07 4.96204063851e-05 19715974457.9 +UniRef50_O29196 5,10 methylenetetrahydromethanopterin reductase 3.15080848301e-05 1.47149504184e-05 -6779594436.94 +UniRef50_E1AHU5 Major ampullate spidroin 2.1339163449e-07 3.8833938913e-07 70628555.3985 +UniRef50_X6L226 2.19357096152e-06 4.16479026535e-07 -717433821.526 +UniRef50_UPI000463A149 hypothetical protein 1.29035681842e-06 4.07845116098e-07 -356280803.864 +UniRef50_Q9RVN4 3.94584657338e-06 4.76556492744e-05 17646183730.0 +UniRef50_A6LSZ3 Threonine synthase 4.26553682165e-06 1.30053169259e-05 3528356477.25 +UniRef50_B9DZE4 UPF0229 protein CKR_0568 5.26595575761e-06 1.1177295849e-05 2386480535.19 +UniRef50_UPI0003801F95 hypothetical protein, partial 8.53641470782e-07 1.9001100271e-06 422472197.8 +UniRef50_C6DYM5 Anthranilate phosphoribosyltransferase 1.13144129872e-05 6.04337002985e-06 -2127984724.85 +UniRef50_A0A023AZW8 2.3530760305e-08 9.96751789277e-08 30740436.1951 +UniRef50_G7M887 Histidine kinase 1.73163669973e-06 1.41383795177e-05 5008754323.48 +UniRef50_K7UKE5 1.72755064213e-08 7.74244214627e-08 24282855.1124 +UniRef50_P37461 Sensor protein ZraS 4.09880859986e-05 2.84535068841e-06 -15398690308.7 +UniRef50_I0HXP3 1.3593932535e-07 2.0697344156e-07 28677344.4006 +UniRef50_F2U1N7 9.12400761595e-08 2.04847771348e-07 45864820.6706 +UniRef50_Q28JK1 Flagellar basal body rod protein FlgF 1.26604214778e-05 8.83894509959e-06 -1542776908.67 +UniRef50_UPI000471EEAE ABC transporter 6.84982214067e-08 4.65473080569e-08 -8861853.08731 +UniRef50_D3DZ81 Cytochrome C type biogenesis protein DsbD 1.93448622294e-05 1.6160376759e-05 -1285615862.43 +UniRef50_W7TIW7 7.59020084819e-06 3.57265052596e-07 -2920024938.78 +UniRef50_Q831X4 Asparagine tRNA ligase 0.000214473088796 0.000109057559629 -42557542718.7 +UniRef50_Q6GFB8 Protein map 9.4238539189e-06 1.00905480134e-06 -3397157664.96 +UniRef50_H8LBN6 PTS system, mannose fructose sorbose specific IID component 6.94806124124e-06 1.98310413586e-05 5201017165.34 +UniRef50_Q834K3 ATP dependent protease subunit HslV 4.97806097777e-06 1.35781391616e-05 3471957097.64 +UniRef50_B4I0B4 GM12486 1.32451224162e-06 7.03709289089e-08 -506312237.986 +UniRef50_UPI0003B5BA4B NUDIX hydrolase 1.47884352236e-07 3.349763226e-07 75531324.3126 +UniRef50_I3LMH8 7.40077960891e-07 2.48832882789e-07 -198321666.285 +UniRef50_A0A021VVK4 2.65841477191e-08 8.26260108954e-08 22624787.8753 +UniRef50_A6M053 Glycoside hydrolase, family 3 domain protein 7.58181198292e-06 1.56297277158e-05 3249042340.4 +UniRef50_D8LRQ2 Beta ketoacyl synthase 1.91774211861e-06 1.44174144111e-06 -192167314.692 +UniRef50_P45745 Dimodular nonribosomal peptide synthase 2.21808706353e-08 1.16238890594e-07 37972376.879 +UniRef50_I7ABN6 Outer membrane protein assembly factor BamA 9.07638321741e-06 9.4906279115e-07 -3281098989.52 +UniRef50_E3A4Y7 5.39706274914e-06 6.4036596488e-06 406375520.726 +UniRef50_Q02250 Delta aminolevulinic acid dehydratase 2.33444451268e-07 8.41714073871e-05 33886785671.8 +UniRef50_UPI0000D55548 PREDICTED 2.75573480086e-08 7.08173496038e-08 17464593.5039 +UniRef50_Q0HVJ1 Drug resistance transporter, EmrB QacA subfamily 8.70291764808e-05 2.85199219863e-05 -23620904028.7 +UniRef50_B2FNN8 UDP N acetylmuramate L alanine ligase 1.15516502959e-07 5.61291383399e-08 -23975407.8616 +UniRef50_UPI0003B77170 30S ribosomal protein S2 6.5492103241e-08 2.75489572239e-07 84778555.1932 +UniRef50_UPI0003487C99 hypothetical protein 5.61039732462e-08 4.13875595675e-08 -5941196.79279 +UniRef50_A6LYV1 Response regulator receiver sensor signal transduction histidine kinase 3.13140775278e-06 2.41920271969e-05 8502430512.45 +UniRef50_P63299 1.84223001507e-05 2.84095021236e-05 4031955993.21 +UniRef50_Q2P3J8 Imidazole glycerol phosphate synthase subunit HisF 4.18281453446e-05 4.25937555561e-06 -15166973384.5 +UniRef50_U5ML33 Lipolytic protein, G D S L family 2.68354968373e-06 3.26316801329e-06 233999032.36 +UniRef50_UPI0002EFC2F2 hypothetical protein 2.61498447778e-07 5.62267873896e-07 121424308.18 +UniRef50_L8NGT0 Membrane bound lytic murein transglycosylase 1.66537936259e-06 5.0629301762e-06 1371632956.09 +UniRef50_UPI00035C696E hypothetical protein 7.81340086341e-08 5.88962461015e-06 2346170070.84 +UniRef50_G7ZMW5 0.000263759012329 7.09231792006e-05 -77850192195.5 +UniRef50_UPI0002DDE0E6 hypothetical protein 4.90692127245e-07 1.92973063892e-07 -120192839.299 +UniRef50_P77219 2.35928743029e-06 3.69145881487e-06 537813935.536 +UniRef50_UPI000479998B formyltetrahydrofolate deformylase 1.10152351383e-06 1.8331698461e-07 -370691243.507 +UniRef50_K0RS76 1.15051310845e-06 2.44018463567e-06 520656221.588 +UniRef50_B9E3T3 2.244449559e-06 6.35031079717e-06 1657586566.43 +UniRef50_K9ZYR5 Tape measure domain protein 7.35748824585e-09 1.13882577338e-06 456787631.384 +UniRef50_UPI000310DE08 hypothetical protein 2.74073611534e-07 1.72515254352e-07 -41000355.0556 +UniRef50_UPI0003C7F041 urea ABC transporter ATP binding protein 2.27818087306e-07 1.56173507228e-06 538518655.835 +UniRef50_UPI00040937D6 hypothetical protein 2.33884331237e-07 8.42865847614e-08 -60394446.0231 +UniRef50_T2E4I0 Permease for cytosine purine, uracil, thiamine, allantoin family protein 8.96641303719e-07 7.45243612211e-06 2646654816.83 +UniRef50_T1Y8J8 Short chain dehydrogenase reductase family protein 9.88957441041e-05 4.70624231391e-06 -38025457707.9 +UniRef50_I3FPW3 7.2020383981e-06 2.48165298485e-06 -1905677516.97 +UniRef50_Q9N0B4 Unnamed protein product 1.41053975044e-07 1.47218287845e-06 537393073.095 +UniRef50_S5RNF0 4.95810183326e-05 5.33327763568e-06 -17863355900.2 +UniRef50_UPI00035FB164 hypothetical protein 1.01714975048e-06 3.98063155353e-07 -249932855.5 +UniRef50_I6Y0P6 5.83011243669e-08 2.7429444095e-07 87199152.4406 +UniRef50_K7V3T8 1.5822093503e-07 6.12651644519e-08 -39142234.3635 +UniRef50_A5UNP7 Cobalt ABC transporter, permease component, CbiQ 3.93749434818e-05 5.1596932013e-06 -13813116406.6 +UniRef50_K8BCX2 PTS system, mannitol specific IIC component PTS system, mannitol specific IIB component PTS system,mannitol specific IIA component 2.45833826772e-05 1.85465262813e-05 -2437153007.58 +UniRef50_K1V9J2 7.7586904216e-07 1.30125762441e-06 212105817.897 +UniRef50_UPI0003824623 hypothetical protein 1.7836132229e-07 5.96438517221e-06 2335888830.71 +UniRef50_L7WUR4 ABC transporter substrate binding protein 0.000165695757995 4.05478319022e-05 -50523753501.5 +UniRef50_V1D3F0 4.82486561748e-06 1.18413399551e-06 -1469808032.59 +UniRef50_A5ITY3 5.41289166865e-05 1.0199735881e-05 -17734749362.8 +UniRef50_A5ZJT5 1.01484736238e-05 6.68882039958e-06 -1396704461.34 +UniRef50_D8TVV3 Metalloproteinase, extracellular matrix glycoprotein VMP22 4.58572590328e-08 1.0922377988e-07 25581842.0607 +UniRef50_H8FWI4 Putative transposase IS66 family 4.61013001007e-08 1.7371959598e-07 51521072.0989 +UniRef50_UPI00047CB6D2 hypothetical protein, partial 3.20670544773e-07 4.43394205753e-07 49545047.9263 +UniRef50_I0C181 PTS system, galactitol specific IIB component 1.15534899334e-05 7.29177049855e-06 -1720508433.03 +UniRef50_I4XYD4 1.28209819713e-06 1.96886002487e-06 277254177.374 +UniRef50_Q165A6 Molybdate ABC transporter, periplasmic molybdate binding protein 1.84129343403e-05 2.23202173189e-05 1577418086.21 +UniRef50_P48261 Anthranilate synthase component 2 1.96215309984e-07 1.53756294027e-07 -17141225.7726 +UniRef50_U2YVN6 1.48288099254e-06 5.64074088393e-07 -370933622.233 +UniRef50_Q4SV06 Chromosome undetermined SCAF13832, whole genome shotgun sequence 5.28288961889e-07 1.95949180832e-07 -134169647.88 +UniRef50_Q5VRS0 6.31229118241e-07 6.49564446533e-07 7402197.03126 +UniRef50_C9A4P2 Phosphorylase 5.66072481381e-05 2.13946924431e-05 -14215740840.7 +UniRef50_UPI0003DF7732 PREDICTED 1.34800324382e-07 2.28127081282e-07 37677157.0086 +UniRef50_D3QCK9 Late competence protein ComGA 0.000220451892958 6.61979921968e-05 -62274192645.4 +UniRef50_E2ZYI5 2.17780378186e-06 1.01794773381e-05 3230373806.23 +UniRef50_L9P8Z2 Putative glycin rich signal peptide protein 3.67660281365e-07 8.00399423533e-08 -116115860.358 +UniRef50_Q985R5 Mlr7561 protein 2.58092950644e-08 4.04626451887e-08 5915737.26201 +UniRef50_W0AF71 9.79926806907e-07 6.33057600639e-07 -140035355.134 +UniRef50_UPI0004573A07 PREDICTED 7.83291576413e-08 3.93432708724e-07 127211170.328 +UniRef50_A6LZF1 7.72284289432e-06 2.7685941112e-06 -2000091029.21 +UniRef50_B9E8Q8 50S ribosomal protein L10 0.000215147270362 1.91740295706e-05 -79116802169.4 +UniRef50_Q9I0J3 NADH quinone oxidoreductase subunit J 8.08691009357e-06 5.54793754376e-06 -1025014375.06 +UniRef50_UPI000444A579 hypothetical protein STEHIDRAFT_80731 3.300956938e-08 3.64684049008e-07 133901057.529 +UniRef50_UPI000479C855 hypothetical protein 1.11523881181e-07 2.99177571316e-07 75758097.4772 +UniRef50_UPI000416282A dihydroorotase 4.11615113161e-08 5.7326959942e-07 214818564.868 +UniRef50_S3MQQ9 BASS family bile acid 4.38625383761e-06 4.85945185808e-05 17847418973.2 +UniRef50_O58888 Probable aminomethyltransferase 6.92695761253e-08 6.02185472828e-08 -3654011.41233 +UniRef50_F0KLK8 LysR family transcriptional regulatory protein 1.27529050285e-06 3.31039012365e-05 12849600734.1 +UniRef50_A1KVW4 Multidrug resistance translocase 2.63706978085e-06 2.23145302191e-05 7944032248.49 +UniRef50_A6LZ84 Binding protein dependent transport systems inner membrane component 1.85042151398e-06 5.45200071126e-06 1454001718.29 +UniRef50_M1N6G4 Signal peptidase I 3.11971891609e-06 1.03837585418e-05 2932581936.69 +UniRef50_Q1M8E0 Methionine import ATP binding protein MetN 2.51665618526e-07 3.43210735272e-07 36957887.0153 +UniRef50_I6U0Z0 4.57416180151e-05 9.5912415244e-06 -14594350604.3 +UniRef50_UPI0002F158F5 hypothetical protein 1.38537865438e-07 5.43371233202e-08 -33992872.8523 +UniRef50_O66646 Lipoprotein releasing system ATP binding protein LolD 1.06055089798e-07 2.70610951845e-07 66433220.8359 +UniRef50_D4M6I9 0.000131192652553 2.99388119984e-05 -40877417956.4 +UniRef50_H0I183 4.21746446555e-07 5.95137274357e-07 70000004.9284 +UniRef50_Q5YVA5 2 isopropylmalate synthase 3.5429807812e-08 1.32324547654e-07 39117595.5064 +UniRef50_Q5XCA7 Dihydroneopterin aldolase 6.28271925124e-06 1.69001702024e-05 4286395239.77 +UniRef50_A5UNB1 Multidrug ABC transporter, permease component 2.11054162806e-05 3.80102774321e-06 -6985994001.27 +UniRef50_C2MXE0 Phage infection protein 3.07313621275e-08 2.84324842713e-06 1135447652.61 +UniRef50_A6LWC3 Sigma 54 factor, interaction domain containing protein 2.02345068466e-06 1.22489058755e-05 4128141740.97 +UniRef50_Q7W4T6 Holliday junction ATP dependent DNA helicase RuvB 0.000171086000908 0.000335187720211 66249877837.2 +UniRef50_F5LXC8 4.61330872905e-05 6.72698455794e-06 -15908727240.4 +UniRef50_F3CNA8 Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family 1.04667778825e-06 5.85929007876e-05 23232116396.4 +UniRef50_C5N5T3 ABC 2 type transporter 8.30264815402e-05 1.04951229289e-05 -29281799531.2 +UniRef50_UPI000455DA16 glutaredoxin 6.5007381108e-08 4.40060170106e-07 151413413.334 +UniRef50_A3M105 Acyl CoA synthetase AMP acid ligases II 2.13301651782e-06 6.1998970914e-05 24168620427.6 +UniRef50_W7Q7T2 7.63153127241e-07 4.61480144152e-07 -121789085.217 +UniRef50_UPI00024907AC sugar ABC transporterATPase 4.78284726152e-07 8.02367861166e-07 130836338.552 +UniRef50_P54575 Riboflavin biosynthesis protein RibC 9.09030453441e-08 2.09444471765e-06 808854359.333 +UniRef50_H0C7J0 Single stranded DNA specific exonuclease RecJ 9.37460457052e-05 1.17558171318e-05 -33100461408.3 +UniRef50_E3HWF4 2.20218003144e-06 5.61954728218e-06 1379633094.94 +UniRef50_Q31C00 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 4.30325382334e-07 1.75931709586e-07 -102701847.45 +UniRef50_Q796Q6 2.84677420468e-06 1.78747455273e-05 6066976436.88 +UniRef50_UPI0004707FBC hypothetical protein 1.06413607531e-07 7.04879028693e-07 241607834.52 +UniRef50_UPI00037C6C2F hypothetical protein 1.38461124877e-07 1.26658272601e-07 -4764956.30111 +UniRef50_V4RDS5 RsbR, positive regulator of sigma B 2.51259726906e-07 1.31958374197e-05 5225884862.41 +UniRef50_A7ZHD9 Glutathione regulated potassium efflux system ancillary protein KefF 5.80613384242e-05 2.14249049249e-07 -23353579844.3 +UniRef50_UPI00046D8A91 hypothetical protein, partial 1.5529352173e-06 4.67413024309e-06 1260064733.28 +UniRef50_UPI0003B35384 hypothetical protein 6.63946008955e-08 1.95681212462e-08 -18904424.4599 +UniRef50_X1LC15 Marine sediment metagenome DNA, contig 3.30202914128e-07 5.9891760454e-07 108483418.019 +UniRef50_H0Z2E2 6.44026757158e-06 3.16443753626e-06 -1322492784.21 +UniRef50_E3F521 ABC transporter, inner membrane subunit 8.18930250718e-05 2.61854293068e-05 -22489840019.4 +UniRef50_A4VS30 Radical SAM domain protein 1.18326503208e-05 3.41521022969e-06 -3398223858.39 +UniRef50_U6PNF3 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752 4.33524741202e-08 3.67319262976e-07 130789368.181 +UniRef50_C1FKU5 Dipeptidase family protein 4.10514741036e-06 7.26853743859e-06 1277099373.56 +UniRef50_G5PHU3 Carbamoyl phosphate synthase small chain 2.03943213215e-06 2.74113606978e-06 283286490.497 +UniRef50_P17411 6 phospho beta glucosidase 3.28557830803e-05 2.1020483664e-05 -4778055609.82 +UniRef50_UPI00035D7ED2 hypothetical protein 1.19032649914e-05 8.64696445363e-07 -4456405580.49 +UniRef50_Q0B261 MaoC domain protein dehydratase 7.47185637879e-05 4.42097298147e-05 -12316790660.5 +UniRef50_A6LWB4 SEC C motif domain protein 3.75209077807e-06 7.62209805397e-06 1562369427.61 +UniRef50_UPI0002D6628B hypothetical protein 2.16320823767e-07 1.30169383631e-07 -34780393.58 +UniRef50_P50863 Protein mrp homolog SalA 0.000301749264577 8.77638967263e-05 -86388518897.2 +UniRef50_A9B5M8 6.20970439722e-08 2.66958747697e-06 1052675885.31 +UniRef50_Q9KDV3 UDP glucose 4 epimerase 6.89550785016e-05 3.14836124039e-05 -15127690690.2 +UniRef50_Q2K6Q4 Zinc import ATP binding protein ZnuC 1.68878845071e-07 7.96219583535e-08 -36034100.473 +UniRef50_B8DU64 Tyrosine tRNA ligase 4.13686848752e-08 7.230428841e-07 275200239.31 +UniRef50_A3VHM4 7.35022931598e-07 1.39405286718e-07 -240458152.288 +UniRef50_UPI00037AF9BE hypothetical protein 1.42529060094e-07 4.1711924368e-07 110855426.714 +UniRef50_P04043 Modification methylase DpnIIA 4.82911064817e-05 8.24600185978e-06 -16166700144.6 +UniRef50_C6W622 7.5258739758e-07 3.2736190774e-07 -171668748.352 +UniRef50_UPI00036DC86C peptide ABC transporter permease 2.29320203334e-07 9.61813969053e-08 -53749769.9523 +UniRef50_F4GXS4 DNA 3 methyladenine glycosidase I 2.06276496643e-06 1.62559654236e-05 5729969194.73 +UniRef50_E6YU01 2.29363489161e-07 4.4064272873e-07 85296021.7018 +UniRef50_E8SEA5 General stress protein 13 4.46045252914e-05 1.77178771359e-05 -10854469796.7 +UniRef50_P28635 D methionine binding lipoprotein MetQ 4.64171252436e-05 8.0895964282e-06 -15473293714.4 +UniRef50_I4WI90 Putative thioesterase 1.54327418272e-08 8.6781584673e-06 3497248678.97 +UniRef50_X7FDP3 2.91741751631e-06 5.01911798096e-07 -975169300.03 +UniRef50_A0A023SGI9 CAAX protease 8.51275264569e-06 3.01343576728e-06 -2220141708.02 +UniRef50_K4L3Q5 D serine D alanine glycine transporter 7.85716709317e-06 2.8620019828e-06 -2016609452.63 +UniRef50_M8AG73 3.68334091703e-07 1.46074368174e-07 -89728977.8222 +UniRef50_G4UTF3 1.77385028013e-08 1.59680190438e-07 57303601.1194 +UniRef50_A7MGZ5 Membrane bound lytic murein transglycosylase F 2.69266048106e-05 8.02903458375e-06 -7629180999.82 +UniRef50_U1Y4T1 8.49502983546e-07 3.4671457531e-07 -202981850.312 +UniRef50_S9S5F9 Malate synthase G 2.82575308059e-05 4.3871990663e-06 -9636745845.19 +UniRef50_I0E6L1 9.83793532167e-06 1.47501773872e-05 1983132401.84 +UniRef50_UPI0003A51EC3 hypothetical protein 3.36236043652e-06 2.59239243773e-06 -310845529.681 +UniRef50_B9KP07 4.94288382512e-05 1.26620616702e-05 -14843198884.8 +UniRef50_M1XHM6 Universal stress protein family protein 5.02028774384e-05 2.0844896286e-05 -11852177254.2 +UniRef50_Q5P082 Holo [acyl carrier protein] synthase 2.09828006362e-07 2.01149911956e-07 -3503453.2039 +UniRef50_Q9I472 Cobyrinic acid a,c diamide adenosyltransferase 1.48660742826e-06 9.65942474268e-07 -210198831.204 +UniRef50_P0ABE0 Biotin carboxyl carrier protein of acetyl CoA carboxylase 1.65506342382e-05 4.2288788334e-06 -4974443861.86 +UniRef50_UPI00037E3D20 50S ribosomal protein L13 6.33454175379e-06 7.7100665753e-07 -2246067390.61 +UniRef50_X1H5Y2 Marine sediment metagenome DNA, contig 2.141424223e-07 4.1065703565e-07 79335360.9149 +UniRef50_W5X593 Carbohydrate esterase, family 1 1.96546723015e-08 1.25202187362e-07 42610827.0438 +UniRef50_UPI0003B6353B MerR family transcriptional regulator 2.50443556522e-07 2.60511440178e-07 4064528.17875 +UniRef50_UPI00036BDAA2 hypothetical protein, partial 4.05244406434e-07 1.34912913712e-06 381057848.546 +UniRef50_Q5M0P7 Bifunctional protein FolD 2.00406885489e-07 3.41436444395e-08 -67122510.6913 +UniRef50_Q8P5Q4 Acetylornithine aminotransferase 1.23800413167e-07 3.91710610939e-07 108158634.468 +UniRef50_P20170 Anthranilate synthase component 1 1.25712203452e-07 1.82844323845e-07 23064938.0926 +UniRef50_A0A058V0Y9 1.86840445771e-06 2.8946924178e-06 414325043.458 +UniRef50_UPI0003B715FE branched chain amino acid aminotransferase 1.46317082017e-06 2.57000146822e-07 -486945902.21 +UniRef50_L1KZM9 8.06549814219e-07 8.09326023078e-06 2941734413.16 +UniRef50_B8D0U9 Phosphoglucosamine mutase 4.84837432011e-08 2.96122257878e-07 99974707.2414 +UniRef50_D1DII4 Ferredoxin 1.84527919256e-06 2.82591860403e-05 10663618329.5 +UniRef50_A7FWJ9 Cysteine desulfurase IscS 3.03476986329e-06 1.30673092403e-05 4050259259.6 +UniRef50_E1SA68 LPS assembly protein LptD 1.71141815044e-06 4.56060117513e-05 17720786083.9 +UniRef50_J3H4T2 Transposase 1.77811779191e-06 2.93750856466e-07 -599257147.068 +UniRef50_A0A059IPF2 FlaF protein 2.51534210708e-07 3.98785369308e-07 59447099.7017 +UniRef50_UPI0004784587 hypothetical protein 6.4768102071e-07 6.52550023471e-08 -235132530.784 +UniRef50_UPI00046D4969 hypothetical protein 3.42969315155e-08 8.42584593889e-08 20170081.8994 +UniRef50_A1B1F4 3 oxoacyl [acyl carrier protein] synthase II 5.51625001789e-05 2.10957637674e-05 -13753159535.2 +UniRef50_UPI0003B5466F peroxiredoxin 1.83334141024e-07 1.9129329372e-06 698260258.582 +UniRef50_P44978 3.97289545936e-05 2.31620945253e-06 -15103984319.5 +UniRef50_A5UK42 2.67146974361e-05 1.93076025189e-05 -2990335113.35 +UniRef50_UPI000388D459 PREDICTED 3.47144547592e-07 5.69742839604e-06 2159975244.99 +UniRef50_A9GRA4 50S ribosomal protein L1 5.02704756661e-05 9.26843335913e-05 17122994921.0 +UniRef50_W2BRM3 1.09532163711e-07 4.98773605088e-07 157141546.414 +UniRef50_C3YW49 3.79652007759e-07 1.51298871289e-07 -92188963.401 +UniRef50_X1A8H4 Marine sediment metagenome DNA, contig 1.47598886649e-06 7.96131890244e-07 -274466604.094 +UniRef50_M2QYI1 1.38633464709e-06 1.4893423944e-06 41585491.6363 +UniRef50_Q1WQZ0 Fructose 1,6 bisphosphatase class 3 0.000124838474982 2.93824537343e-05 -38536767154.8 +UniRef50_A0A011PL09 Fatty acid oxidation complex subunit alpha 5.85157687511e-08 1.15012731205e-07 22808517.0383 +UniRef50_Q6A8B2 Homoserine kinase 2.64592982837e-06 6.60338950525e-05 25590499418.8 +UniRef50_W7SMQ0 PE PGRS family protein 1.47296256509e-07 1.23404235254e-06 438732734.842 +UniRef50_UPI0003726300 hypothetical protein 4.09551538968e-07 1.84903252954e-07 -90693269.8083 +UniRef50_UPI00040B37CB hypothetical protein 2.21532000554e-07 9.42888038672e-08 -51369639.9522 +UniRef50_C1DFE7 Anti sigma factor, FecR family 2.41785134084e-07 1.0202629155e-07 -56422359.7648 +UniRef50_O34744 Uroporphyrinogen III C methyltransferase 7.00882112811e-07 9.03855550152e-08 -246464952.017 +UniRef50_P48027 Sensor protein GacS 2.48318411495e-08 5.1181506508e-08 10637683.252 +UniRef50_UPI000468EA55 hypothetical protein 2.95787550158e-08 1.52562386234e-07 49650001.1016 +UniRef50_UPI00047248BA delta aminolevulinic acid dehydratase 4.52208587525e-07 3.55751592873e-07 -38940872.4014 +UniRef50_Q0AKG2 Two component transcriptional regulator, winged helix family 0.000111900466073 2.29351544746e-05 -35916388019.4 +UniRef50_G7M0N1 6.48653022939e-06 6.30049294243e-06 -75105535.68 +UniRef50_R5LUL7 Flagellar biosynthesis type III secretory pathway ATPase FliI 5.39961738701e-06 5.71989025895e-06 129298088.592 +UniRef50_G7M7Z8 2.13671314441e-06 7.6233948289e-06 2215040725.18 +UniRef50_UPI0003750432 hypothetical protein, partial 2.01743962303e-07 9.09480121407e-08 -44729684.6996 +UniRef50_A0A059G6X4 Beta gamma crystallin domain containing protein 1.2945824406e-07 1.6871395054e-07 15848010.4277 +UniRef50_T1B8D6 Thiamine biosynthesis protein ThiC 8.24307113444e-08 3.10481406714e-07 92066864.2176 +UniRef50_UPI0004788CA9 hypothetical protein 2.18058087671e-07 3.58614882825e-07 56744503.0295 +UniRef50_UPI000476817E Clp protease ClpS 9.19082434485e-06 4.17599445546e-06 -2024548365.23 +UniRef50_Q28VD6 DNA polymerase III, delta subunit 7.24313627751e-06 1.81361333789e-06 -2191965038.46 +UniRef50_UPI0003B2FE9D osmotically inducible protein OsmC 1.40084936199e-07 2.34031341406e-06 888259236.352 +UniRef50_C2PG19 Phosphinothricin N acetyltransferase 0.000237516419707 6.33065195597e-05 -70330674485.2 +UniRef50_Q82JT9 Ribonuclease 3 2.39662532332e-07 6.7664828567e-07 176416511.041 +UniRef50_UPI000373DA51 hypothetical protein 2.15149136438e-07 1.97564077591e-07 -7099304.04947 +UniRef50_F8G053 Inosine uridine preferring nucleoside hydrolase 2.79184857886e-06 4.36950284461e-06 636918387.078 +UniRef50_Q7VIB6 Bifunctional protein GlmU 9.84746057885e-07 2.78275756518e-05 10836779705.6 +UniRef50_C5BKK1 ATP synthase subunit a 9.38268004148e-06 5.74004909186e-05 19385379495.9 +UniRef50_UPI0004785186 ATPase P 3.58274660104e-08 1.60207591935e-07 50213783.1517 +UniRef50_UPI000378BB5D hypothetical protein 3.81936517707e-08 5.45770653671e-08 6614185.11596 +UniRef50_U3T2I1 2.51371370659e-06 7.04620782878e-05 27431588601.6 +UniRef50_UPI000378F946 hypothetical protein 1.32455923941e-06 2.90184227904e-07 -417589885.355 +UniRef50_A5ITB1 Coproporphyrinogen III oxidase, anaerobic 0.000175518210439 1.22752642058e-05 -65903180610.5 +UniRef50_UPI00047ACB4C amino acid permease, partial 3.39300477265e-07 8.40792595348e-07 202458522.07 +UniRef50_Q9RX79 Cytochrome B6 2.13809857265e-06 0.000453867582823 1.82368736136e+11 +UniRef50_UPI000468517A potassium transporter 5.89251203707e-08 3.66828276945e-05 14785518895.0 +UniRef50_D2QXC4 Magnesium protoporphyrin chelatase, putative 1.04859875314e-07 1.14536901378e-06 420066307.683 +UniRef50_UPI00037FEB36 hypothetical protein 1.32582249142e-05 2.04421796698e-06 -4527232215.92 +UniRef50_I3UM32 2.09370048605e-06 2.37961180793e-06 115425909.169 +UniRef50_D2ZQ55 8.29439943426e-06 7.4138084986e-06 -355505366.792 +UniRef50_W8U544 Putative secreted protein 4.6899033242e-07 7.58096882506e-08 -158731850.92 +UniRef50_UPI00046F47C7 hypothetical protein, partial 2.98369729944e-06 3.94611317754e-07 -1045245782.47 +UniRef50_Q49Z66 Thymidine kinase 4.76174571811e-07 3.37765706948e-07 -55877357.213 +UniRef50_Q9KLJ6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.22759252388e-07 3.57946141101e-07 54576605.9031 +UniRef50_G4R5C5 6.25629541099e-07 7.23209396121e-07 39394184.9119 +UniRef50_P93313 NADH ubiquinone oxidoreductase chain 4 2.58551834503e-07 1.06790272302e-07 -61268004.9843 +UniRef50_T1Y5K7 8.68969142307e-05 4.43157993189e-05 -17190518618.9 +UniRef50_A3M7V0 Putative non ribosomal peptide synthetase 1.89689980004e-06 6.28771955273e-05 24618493697.5 +UniRef50_Q2RYK8 1.03626842736e-07 9.0287302008e-06 3603173748.98 +UniRef50_U6LIK5 2.51950556389e-08 3.57139865895e-08 4246621.50656 +UniRef50_P37313 Dipeptide transport ATP binding protein DppF 3.45263844561e-05 1.6243711828e-05 -7380939293.59 +UniRef50_M0RKR1 2.30252885681e-06 4.19295225794e-06 763187125.14 +UniRef50_UPI0004749E59 uroporphyrinogen decarboxylase 9.6497517252e-08 1.04106151408e-07 3071698.97722 +UniRef50_A0A031ANR6 Paraquat inducible protein B 1.12674940017e-05 3.63792886954e-06 -3080149069.15 +UniRef50_UPI000470B75A cupin, partial 1.70196623747e-06 3.97804233774e-07 -526506204.761 +UniRef50_UPI000401DB47 ABC transporter substrate binding protein 8.23616356778e-07 2.82560856798e-07 -218430744.84 +UniRef50_Q9KET5 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 1.49357144433e-05 7.51343145592e-06 -2996466723.66 +UniRef50_D4HFG5 ABC transporter, solute binding protein 2.28034547552e-06 3.61520294968e-05 13674414491.7 +UniRef50_Q9RZB4 First mannosyl transferase 3.22102715567e-06 0.000674679991308 2.71076223556e+11 +UniRef50_Q0TGS5 UvrC excinuclease ABC subunit C 3.77190982747e-05 8.37743031037e-06 -11845591419.9 +UniRef50_UPI000470078C hypothetical protein 5.75435958615e-07 8.08310623353e-07 94014359.8482 +UniRef50_P27848 Pyridoxal phosphate phosphatase YigL 2.48802542152e-05 2.24291168501e-06 -9138972970.87 +UniRef50_W6L595 Genomic scaffold, scaffold_6 2.91214739134e-07 4.66630290518e-06 1766276781.0 +UniRef50_UPI00047C3E54 diguanylate cyclase 3.14617089577e-08 1.3035781388e-07 39925571.1488 +UniRef50_P52005 Cytochrome c type protein TorY 2.73097470716e-05 5.39693356593e-06 -8846471712.71 +UniRef50_Q1AU26 Elongation factor G 0.00023164579351 0.000660409396751 1.73097128149e+11 +UniRef50_Q1AVD3 Ribose import ATP binding protein RbsA 2 1.3868378267e-06 8.77532589782e-07 -205612774.022 +UniRef50_UPI00037465BE hypothetical protein 1.59342110239e-06 3.58039396208e-07 -498738754.623 +UniRef50_G8AWA2 ATPase like protein 0.000109362639058 2.76313915005e-05 -32995907594.2 +UniRef50_E3FF38 2.39593606252e-06 4.33311397738e-06 782062496.075 +UniRef50_UPI0003D0828F PREDICTED 9.19716683423e-07 8.2638310842e-07 -37679909.5605 +UniRef50_I0ECM2 Flagellar motor switch protein FliY 1.85042151398e-06 3.40679482314e-05 13006610889.3 +UniRef50_P77716 Inner membrane ABC transporter permease protein YcjP 3.1717284922e-05 2.97798358178e-06 -11602408621.9 +UniRef50_UPI00047949F3 hypothetical protein 9.64971563377e-08 1.38616020237e-05 5557141751.8 +UniRef50_C5N0V3 0.000145834745611 2.04960639252e-05 -50600763875.2 +UniRef50_A7GMX2 Na+ antiporter NhaC 0.000207522519701 7.04507963392e-05 -55337536780.4 +UniRef50_O32332 Glucitol sorbitol permease IIC component 5.62360585454e-05 0.000144563315511 35658797534.3 +UniRef50_F5TRU1 5.77395494687e-07 1.32073324857e-06 300094573.023 +UniRef50_UPI00046CFD0F acetyl CoA acetyltransferase 7.40805091993e-08 1.88676223604e-06 731801857.231 +UniRef50_P33342 Probable fimbrial chaperone YehC 5.79241303265e-05 2.93847467856e-06 -22198383934.9 +UniRef50_F0LCD7 3.80821447047e-07 8.57784341234e-07 192555773.376 +UniRef50_UPI0001BF5AF2 hypothetical protein SMAC_10608, partial 5.5548909105e-06 2.15758393734e-06 -1371534514.71 +UniRef50_P0A2T5 Multiple antibiotic resistance protein MarR 1.01544422367e-05 5.49727676627e-05 18093707957.2 +UniRef50_D8UG15 9.72730037436e-08 5.99624104221e-08 -15062744.3764 +UniRef50_F2DLE5 Predicted protein 9.84541520235e-07 3.13788701908e-08 -384803458.444 +UniRef50_O34580 ATP dependent DNA helicase PcrA 0.000209111507909 7.13806633559e-05 -55603632093.6 +UniRef50_Q03EL2 ATP synthase subunit alpha 6.03108358011e-08 1.96243594282e-07 54877722.6813 +UniRef50_UPI00040FB89F glutathione dependent formaldehyde activating protein 9.5661752435e-07 3.25227362611e-07 -254899956.323 +UniRef50_K4RNE1 Outer membrane protein 1.01839745189e-06 5.77236514584e-05 22892606894.1 +UniRef50_A0A024L3Z4 N acetylneuraminic acid outer membrane channel 7.43910886573e-06 2.52286707733e-06 -1984747139.05 +UniRef50_G9A5Y6 2.20574570762e-07 1.56489052165e-07 -25872110.2754 +UniRef50_UPI000476B9E7 cytochrome C 6.80636781735e-06 1.3111684124e-06 -2218479433.46 +UniRef50_UPI000344CCAD hypothetical protein 1.26023458199e-05 1.16534021132e-06 -4617259512.03 +UniRef50_P0AEY4 Nucleoside triphosphate pyrophosphohydrolase 3.37665976676e-05 4.14964925331e-06 -11956725515.7 +UniRef50_T1Y562 Biotin synthesis protein bioC 0.000217796860131 3.69673225548e-05 -73003103347.4 +UniRef50_G0DU60 Triacylglycerol lipase 2.93767863174e-06 4.02379245706e-05 15058567011.0 +UniRef50_A5UJN4 Predicted DNA binding protein 1.72531580641e-05 1.38003621827e-05 -1393936067.89 +UniRef50_Q9HYR3 2.83824051773e-06 5.40213485111e-06 1035075604.91 +UniRef50_R7EGC5 1.79979459883e-07 2.27367621807e-07 19131182.4869 +UniRef50_E1V915 Transcriptional regulator, XRE family 4.79729618263e-06 7.01119545607e-06 893778304.287 +UniRef50_UPI00046D7AC9 ABC transporter permease 6.67537524654e-08 9.52452148357e-08 11502352.9885 +UniRef50_UPI000477BE6D ABC transporter 1.03496119263e-07 7.29545245869e-08 -12330016.5583 +UniRef50_UPI00046A3121 hypothetical protein 1.56035826524e-06 1.41216034798e-06 -59829317.7908 +UniRef50_E4ZBP3 Aminopeptidase N 4.35058765479e-07 3.72357812775e-05 14856903273.7 +UniRef50_G8TQ95 7.29213836596e-08 7.34095934398e-06 2934196113.44 +UniRef50_C5N3Z5 7.36953609273e-05 1.03850008464e-05 -25559169270.1 +UniRef50_A3PGB1 Tripartite ATP independent periplasmic transporter, DctQ component 8.7014620406e-05 2.21733603717e-05 -26177212367.6 +UniRef50_H4ER30 Phage minor structural, N terminal region domain protein 0.0001963767 3.87506580372e-05 -63635567429.5 +UniRef50_Q0S8U9 4.26791291087e-07 2.29873868016e-07 -79497980.1423 +UniRef50_Q8CP32 Truncated transposase 1.99764260132e-05 2.77130045931e-05 3123351711.2 +UniRef50_A0A023XH87 2.9029945501e-07 2.07587411369e-07 -33391867.0088 +UniRef50_I6TVV9 0.00010020834747 3.11208730094e-05 -27891461238.4 +UniRef50_Q4KED8 Phenazine biosynthesis protein, PhzF family 3.72044995957e-06 1.87619004443e-05 6072418140.03 +UniRef50_A0A017HN56 Short chain dehydrogenase reductase SDR 9.65159254695e-08 3.67139013589e-07 109253861.592 +UniRef50_UPI0004628D47 PREDICTED 5.89136578577e-08 9.98611069883e-07 379367376.618 +UniRef50_O86034 D beta hydroxybutyrate dehydrogenase 5.94044244e-05 3.99506683634e-05 -7853720036.41 +UniRef50_UPI000382D87E hypothetical protein 0.000213162101903 2.16524668711e-05 -77314789749.9 +UniRef50_A5UN78 Predicted O linked GlcNAc transferase 2.27068625061e-05 3.69726089793e-06 -7674409443.27 +UniRef50_UPI0004076B6B hypothetical protein 2.51103647358e-07 1.58982874163e-07 -37190286.5878 +UniRef50_A3M684 Molybdenum cofactor guanylyltransferase 5.69178097632e-06 7.65349706662e-05 28600265021.5 +UniRef50_J0D4G5 1.67530680361e-07 9.41890405508e-07 312618523.504 +UniRef50_Q5LSI2 ABC transporter, permease protein 7.51048025744e-05 1.80202699428e-05 -23045726329.4 +UniRef50_T1JDG9 1.04693207965e-07 5.70835380246e-07 188187315.158 +UniRef50_UPI000344A1E2 hypothetical protein 4.33324216869e-08 9.30963900888e-06 3740921679.62 +UniRef50_A6LRT5 1.80903828528e-06 1.86567504472e-05 6801628144.44 +UniRef50_A6LRT4 2.3872307185e-06 2.07087052896e-05 7396604114.13 +UniRef50_A6LRT6 5.94103274483e-06 1.12604128418e-05 2147499021.28 +UniRef50_UPI00047D7735 hypothetical protein 8.98623087721e-08 2.47719542784e-06 963795676.04 +UniRef50_G2P517 8.17359689927e-08 5.34261895618e-06 2123883020.22 +UniRef50_A3PIB1 8.27470400457e-06 1.25853190095e-05 1740248174.68 +UniRef50_Q2YSP8 Undecaprenyl diphosphatase 0.000232878381716 2.39190723502e-05 -84359437410.1 +UniRef50_Q5HQE2 Serine protease HtrA like 8.55169550037e-05 2.0474736011e-05 -26258341965.1 +UniRef50_UPI000466061A DEAD DEAH box helicase 1.68590895097e-08 1.93590040917e-06 774740530.032 +UniRef50_A5UJH6 Predicted acetylesterase 1.16217052223e-05 5.75619595141e-06 -2367978070.55 +UniRef50_Q1LU78 Nucleoside diphosphate kinase 4.61365363831e-07 1.90042768647e-07 -109536261.178 +UniRef50_B9J455 9.58514673654e-07 1.48587021482e-05 5611676257.94 +UniRef50_UPI000185E45C hypothetical protein, conserved 6.16976772345e-08 5.05647695225e-08 -4494491.45947 +UniRef50_P0AGJ3 tRNA 2 O) methyltransferase 3.17865269963e-05 0.000243761470242 85576885813.5 +UniRef50_UPI00037ACD1B hypothetical protein 2.74207890925e-07 3.66668204726e-06 1369583447.25 +UniRef50_W9T2S8 Guanosine 3,5 bis 3 pyrophosphohydrolase 5.7718263415e-06 4.25474117023e-06 -612465900.37 +UniRef50_UPI0002BA6E86 hypothetical protein 1.45438491376e-07 8.56936443916e-07 287240454.502 +UniRef50_B9MQS8 FMN dependent NADH azoreductase 3.81298978638e-06 6.36743185244e-06 1031259608.6 +UniRef50_D3E172 Sua5 YciO YrdC YwlC family translation factor 2.67049450413e-05 4.19903976289e-05 6170924783.21 +UniRef50_M9VHD2 Ion channel 4.5465034883e-06 4.9631123106e-05 18201214190.2 +UniRef50_UPI0003F7B6B3 hypothetical protein 1.64338598102e-08 9.7364418445e-07 386437554.349 +UniRef50_Q9RZL0 1.78903312256e-06 0.00023507939258 94182180907.4 +UniRef50_Q05763 Bifunctional dihydrofolate reductase thymidylate synthase 2 2.03542407135e-07 4.05693523518e-07 81610886.357 +UniRef50_J7PC82 Leucine rich repeat domain protein 2.92290662647e-09 1.76797023224e-05 7136332768.63 +UniRef50_Q9RZL3 2.43539347646e-06 0.000658165891974 2.64726448962e+11 +UniRef50_D3A510 9.96980162559e-07 9.61183920315e-08 -363688951.579 +UniRef50_Q4FSU1 Siroheme synthase 2.91241781211e-08 2.10917332665e-07 73392127.3423 +UniRef50_B1ZRT0 NADH quinone oxidoreductase subunit D 1 1.03869559395e-07 2.70617594523e-07 67318228.0097 +UniRef50_A0A036LTT5 0.000180312841599 9.32579069039e-05 -35145145420.6 +UniRef50_Q8X5V6 tRNA dihydrouridine synthase A 2.86694373131e-05 0.000290238222897 1.0559852855e+11 +UniRef50_F6AH52 Acylglycerol lipase 5.02408375245e-06 5.4813939725e-06 184621747.662 +UniRef50_UPI00040794A2 hypothetical protein 2.30105097267e-07 7.95373070604e-08 -60786064.5811 +UniRef50_A8IGC9 Fibrocystin L like protein 6.87544467031e-08 1.61575720401e-07 37473087.237 +UniRef50_UPI000418CD46 hypothetical protein 1.19080364194e-06 5.04368595885e-07 -277122251.598 +UniRef50_E1XQA2 3.90117840267e-05 3.23491156172e-05 -2689800997.05 +UniRef50_Q8XQ89 3 dehydroquinate dehydratase 2 9.75401700561e-07 1.49590784113e-06 210134716.276 +UniRef50_P42357 Histidine ammonia lyase 4.95592082953e-08 6.12671094668e-08 4726623.37504 +UniRef50_A0A029J2G1 Sodium hydrogen exchanger family protein 3.15056673229e-05 7.02998674595e-06 -9881132599.31 +UniRef50_Q9RYX3 GGDEF family protein 4.18832202133e-06 0.000954436430073 3.83626822076e+11 +UniRef50_H9KM06 2.04342617279e-06 1.38415881957e-06 -266154320.615 +UniRef50_B6XVC7 3.99374194147e-07 1.47920717299e-05 5810508613.46 +UniRef50_Q38XQ8 Ribosome maturation factor RimM 1.6867464081e-05 1.26604185097e-05 -1698435923.39 +UniRef50_B0K2T9 Tryptophan synthase beta chain 4.18006216396e-06 1.35154173018e-05 3768797426.84 +UniRef50_UPI000474CD31 LamB YcsF family protein 2.36491868839e-06 5.7468587892e-07 -722738953.81 +UniRef50_UPI0003781C56 50S ribosomal protein L22 2.27026531461e-07 2.08406181536e-06 749707932.496 +UniRef50_Q2NE88 Methionine aminopeptidase 2.69742172208e-05 3.00831957759e-06 -9675326973.2 +UniRef50_B5F4F0 Periplasmic trehalase 3.10821292862e-05 6.72296066341e-06 -9834095293.64 +UniRef50_UPI00041F5D41 uridine kinase 8.55041207287e-08 5.70881146976e-06 2270198182.54 +UniRef50_UPI0003637A82 hypothetical protein 1.15495358044e-07 1.24176342888e-07 3504620.10919 +UniRef50_UPI000365DDE9 hypothetical protein 6.75126330168e-06 4.75988694477e-06 -803943072.22 +UniRef50_P28997 NAD specific glutamate dehydrogenase 3.16649493771e-08 3.13230427619e-06 1251766145.36 +UniRef50_A7HY57 Trigger factor 3.14603600418e-07 1.74440692574e-07 -56585485.8889 +UniRef50_B2GCR2 Chorismate synthase 2.40083114425e-07 2.08794174032e-06 746003203.051 +UniRef50_P32166 1,4 dihydroxy 2 naphthoate octaprenyltransferase 1.27387212935e-05 1.31045436144e-05 147686960.092 +UniRef50_UPI00029ABD4E ATP dependent DNA helicase RecQ 7.28383848074e-07 4.0401960299e-07 -130949826.137 +UniRef50_P24532 Argininosuccinate synthase 3.83395831919e-05 0.000176343562006 55713899746.5 +UniRef50_UPI000466FB72 nitrogen regulation protein NR 1.36823686917e-07 1.89384656373e-07 21219508.365 +UniRef50_UPI0004188538 hypothetical protein 7.64577631509e-08 7.70201057242e-08 227024.597561 +UniRef50_B9V2B9 8.11031244356e-05 0.000124382159085 17472277381.4 +UniRef50_Q7U5G1 Acetolactate synthase large subunit 1.34620664341e-07 1.11638909018e-05 4452651739.24 +UniRef50_UPI0004780BEC alpha beta hydrolase 2.83145589501e-07 3.88523724162e-07 42542446.0978 +UniRef50_UPI0002558939 TadC family type II IV secretion system protein, partial 2.25179067217e-05 1.30808588777e-05 -3809852020.22 +UniRef50_W8WRJ5 Ribulose 5 phosphate 3 epimerase 3.45788692078e-06 2.292527167e-05 7859222114.93 +UniRef50_Q46185 Diaminopimelate epimerase 5.7769569789e-06 4.49983037122e-06 -515591683.626 +UniRef50_O87278 Probable N methylproline demethylase 4.56724865054e-05 7.69943270814e-06 -15330187799.7 +UniRef50_D6K1U6 LuxR family transcriptional regulator 2.95306384962e-07 1.35930809867e-06 429550548.594 +UniRef50_A4WWE4 Peptidase U35, phage prohead HK97 1.62269314735e-07 2.16834002913e-07 22028434.2015 +UniRef50_M9RCR3 1.91390076797e-07 5.2100414836e-07 133069245.509 +UniRef50_Q1QBI6 Aminoglycoside phosphotransferase 1.42037892693e-05 5.72302671179e-05 17370317101.7 +UniRef50_G7Z5T4 2.47405459669e-07 3.7429315114e-07 51226118.1339 +UniRef50_Q58409 Methanogen homoaconitase large subunit 2.2181315827e-05 8.64675947631e-06 -5464066486.46 +UniRef50_W5SE24 Glycerol 3 phosphate transporter 0.000220409797202 5.37133991688e-05 -67297381480.8 +UniRef50_F2U516 8.7347317129e-07 4.98178742387e-08 -332519750.807 +UniRef50_V6QC91 1.57441484222e-06 6.69576242383e-07 -365294446.372 +UniRef50_Q9CKP2 FKBP type peptidyl prolyl cis trans isomerase SlyD 7.34486223077e-07 1.93510993134e-07 -218398338.841 +UniRef50_Q8DTK1 2.81101294406e-05 7.07742688884e-06 -8491160120.45 +UniRef50_UPI0004011CB7 hypothetical protein 3.10665549637e-08 1.93916891711e-07 65744679.3431 +UniRef50_K7RYE1 Band 7 stomatin like protein 4.787206693e-06 1.79930522595e-05 5331361909.14 +UniRef50_Q3KK80 Carbonic anhydrase 8.29159217481e-06 5.1238147558e-06 -1278870617.05 +UniRef50_Q17YP3 Major facilitator family transporter 9.7373857834e-07 3.403435026e-05 13346974635.2 +UniRef50_F8DH56 NmrA family protein 7.41595555069e-05 1.69988751171e-05 -23076468113.8 +UniRef50_UPI00045602FF hypothetical protein PFL1_03008 1.03950384811e-06 1.04627146121e-06 2732168.45642 +UniRef50_P0A2M0 Protein sirB1 1.53443933971e-05 2.21211015129e-06 -5301663897.57 +UniRef50_UPI00034AAE41 hypothetical protein 2.51644218468e-07 4.93180644338e-06 1889438922.25 +UniRef50_B5EHD3 TRAP proton dicarboxylate symporter, large membrane protein component 8.62946285234e-05 3.01747736325e-05 -22656274087.5 +UniRef50_A6LTN2 Protein translocase subunit SecD 1.52212092278e-06 4.57791257273e-06 1233660587.87 +UniRef50_B9DQ89 ATP phosphoribosyltransferase 0.000153208103155 5.17155505528e-05 -40973788939.1 +UniRef50_B9KLF6 4.61146873898e-05 1.83202081075e-05 -11220972362.9 +UniRef50_A7A2K7 4.07487040984e-06 1.09838255389e-07 -1600732137.17 +UniRef50_B9KLF4 1.57130282882e-05 1.88500024587e-06 -5582544609.66 +UniRef50_UPI00029AF728 30S ribosomal protein S3 8.47326021898e-06 1.86401251544e-05 4104488135.88 +UniRef50_UPI000479EB25 hypothetical protein 1.2928359979e-07 3.73671725352e-07 98662485.2689 +UniRef50_A1AH06 3.15038199815e-05 3.49907286252e-06 -11305860068.8 +UniRef50_K7RXC5 Transporter, small conductance mechanosensitive ion channel family protein 8.31585096335e-06 6.08376999007e-05 21203714931.6 +UniRef50_UPI000361E642 hypothetical protein 9.59133516068e-08 1.49187934427e-07 21507602.8372 +UniRef50_V5ERF8 1.9402305346e-07 1.31153117301e-07 -25381364.7283 +UniRef50_Q1QJR5 S adenosylmethionine synthase 7.44469999927e-05 1.23424684439e-05 -25072361494.6 +UniRef50_P58894 Carbamoyl phosphate synthase small chain 1.03049203107e-07 6.86984970524e-06 2731840400.69 +UniRef50_H4VVH3 MpaA family protein 1.08289701627e-05 4.13030356916e-06 -2704333905.69 +UniRef50_UPI000475B05E lysyl tRNA synthetase 3.88614468321e-08 3.04271908336e-07 107149460.262 +UniRef50_R6V5M5 Radical SAM domain protein 5.07590323745e-05 9.75137652696e-05 18875459414.8 +UniRef50_UPI000393F4A9 PREDICTED 4.23118060619e-07 4.16382829364e-07 -2719095.50823 +UniRef50_Q8XD89 DNA ligase B 3.12678283065e-05 4.6494930119e-06 -10746148602.1 +UniRef50_A9CEU9 GGDEF family protein 0.000111451750856 9.23306002996e-05 -7719443122.52 +UniRef50_Q5LYF9 5.0603114479e-05 2.9411924999e-05 -8555143238.21 +UniRef50_X1NF57 Marine sediment metagenome DNA, contig 4.57588709443e-06 5.98966998918e-07 -1605531444.85 +UniRef50_UPI0004720041 hypothetical protein, partial 9.08733535419e-08 9.55654045788e-07 349122577.512 +UniRef50_UPI0003D34C26 transposase and inactivated derivatives 2.20293767402e-06 1.33435399519e-06 -350657889.864 +UniRef50_Q9ZB62 Ornithine carbamoyltransferase 2.82670050232e-06 8.15075370855e-06 2149385612.83 +UniRef50_D8U4W8 9.43608139066e-08 2.35808508521e-08 -28574739.6529 +UniRef50_B9TE37 5.2904521381e-07 1.17044549992e-06 258941166.369 +UniRef50_A5UMT9 Glycosyltransferase, GT2 family 4.29768274217e-05 7.82350451192e-06 -14191827838.5 +UniRef50_Q82TB9 3 dehydroquinate synthase 3.01419263178e-05 9.38088108676e-05 25703102573.3 +UniRef50_W8RUR9 Iron binding protein SufA for iron sulfur cluster assembly 9.45856580985e-05 5.19618836113e-06 -36087625865.1 +UniRef50_U3AME1 1.64069545703e-06 9.56066153988e-07 -276393250.984 +UniRef50_A6QAR3 Probable transcriptional regulatory protein SUN_1622 1.76670509603e-06 1.83125175383e-05 6679747522.91 +UniRef50_UPI000477BAB8 transcriptional regulator 4.85780548668e-08 4.55575110858e-07 164309705.919 +UniRef50_A7MQ64 Secretion monitor 2.0566817819e-05 3.90723498687e-05 7470910376.88 +UniRef50_B9KRG8 0.000122833043157 1.24801973752e-05 -44550798023.9 +UniRef50_P43334 Phenylalanine 4 hydroxylase 1.14711944073e-05 2.31318568035e-06 -3697200504.47 +UniRef50_Q3J1E7 0.000182143887178 4.57288746754e-05 -55072414547.9 +UniRef50_Q98P43 Msr9765 protein 2.57137025321e-07 3.07840869605e-07 20469764.1436 +UniRef50_Q094Z8 7.06840819553e-07 9.29807331267e-07 90014316.8857 +UniRef50_Q3J1E8 6.70093471334e-06 1.52750019929e-05 3461456176.4 +UniRef50_UPI000469C857 hypothetical protein 1.17979860099e-05 1.71246011404e-06 -4071650567.5 +UniRef50_UPI000380F48F hypothetical protein, partial 1.74984270575e-06 9.29962728159e-08 -668889236.766 +UniRef50_C9AC53 His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region 5.36846382667e-05 2.40200840033e-05 -11975944581.2 +UniRef50_J9SGG8 Transcriptional regulator 5.56140130421e-08 2.18466882508e-07 65745701.8329 +UniRef50_UPI0003B37E29 acetyltransferase 9.92315765809e-07 2.189735375e-06 483412990.221 +UniRef50_A0A016TVG0 5.53460263769e-08 1.65688408392e-07 44546573.6727 +UniRef50_Q88PE8 Sensor histidine kinase 9.2565746271e-06 2.86558373967e-06 -2580121447.53 +UniRef50_UPI000465A9FC ArsR family transcriptional regulator 2.29313381634e-07 1.23666290953e-07 -42651026.9435 +UniRef50_UPI0003338868 PREDICTED 2.86127081236e-08 5.3256280835e-08 9948912.71424 +UniRef50_UPI000366BC80 hypothetical protein 5.32221151294e-07 1.67993177673e-07 -147043302.531 +UniRef50_A0A024J4K6 Transposase 2.07638918343e-07 1.59791563227e-07 -19316564.4134 +UniRef50_P39328 Inner membrane ABC transporter permease protein YtfT 1.62181968124e-05 1.67711524295e-05 223234968.152 +UniRef50_Q4FPS9 Chaperone protein DnaK 3.97749549214e-06 0.000162548128326 64016910355.6 +UniRef50_I0C5G1 0.000113236480702 2.47062266416e-05 -35740749952.6 +UniRef50_B9KUT5 5.21199508258e-06 4.36265580396e-06 -342888689.344 +UniRef50_Q5HMF5 L threonine dehydratase biosynthetic IlvA 9.35151266836e-05 7.66427457168e-05 -6811587243.69 +UniRef50_R9ZNY2 Paraquat inducible protein A 2.54532604165e-05 6.33254204115e-06 -7719268645.71 +UniRef50_UPI00037ED0B2 hypothetical protein 1.00597498084e-06 6.84798350221e-07 -129662947.061 +UniRef50_A5UJB5 UPF0280 protein Msm_0088 2.46974999468e-05 7.59665090296e-06 -6903822610.0 +UniRef50_Q2G0L5 Serine aspartate repeat containing protein C 6.29022714757e-05 2.81800987835e-05 -14017767204.8 +UniRef50_F9YWF3 1.50822763527e-05 6.30456882887e-05 19363417975.8 +UniRef50_Q3IW26 DNA topology modulation kinase FlaR, putative 0.000162208188428 4.56000613515e-05 -47076131843.6 +UniRef50_UPI0003B577FD ATP dependent DNA helicase PcrA 2.45114974533e-07 1.08418654993e-07 -55185981.6508 +UniRef50_P50351 Transcriptional regulatory protein ChvI 5.85320222869e-05 8.90938557008e-06 -20033267380.8 +UniRef50_F9YWF9 3.380471542e-06 0.000192141123194 76204991425.6 +UniRef50_Q82Z75 Sensor protein LytS 1.58089448959e-07 1.45994586201e-05 5830157949.9 +UniRef50_D2ZQR5 2.66606869964e-05 4.40156149458e-06 -8986282115.26 +UniRef50_UPI000471299E hypothetical protein 1.1643930785e-07 4.21811596073e-07 123282540.095 +UniRef50_F7ZF49 SPFH domain band 7 family protein 4.85607401415e-05 1.4802184217e-05 -13628743290.8 +UniRef50_D2N911 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.000192996205021 6.2515864109e-05 -52676514800.0 +UniRef50_Q9KPE3 Dephospho CoA kinase 3.39698939991e-05 2.95316705201e-06 -12521833286.6 +UniRef50_E6V5R9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 9.79932843947e-05 2.11487333471e-05 -31023088246.6 +UniRef50_Q28FD1 Alcohol dehydrogenase [NADP] 6.88976363871e-08 1.29546042773e-07 24484505.8976 +UniRef50_Q9KT69 Methionine tRNA ligase 4.60355028949e-05 3.46890030383e-05 -4580721229.32 +UniRef50_Q4FQB2 tRNA methyltransferase 3.19314059569e-05 2.7111249858e-05 -1945956167.09 +UniRef50_I0C0P4 AzlD 4.10522171464e-05 4.65901746469e-07 -16385193577.0 +UniRef50_B5XXI0 Phosphate acyltransferase 2.49338397329e-05 4.75467875111e-06 -8146574914.5 +UniRef50_D6XNE0 Molybdenum cofactor synthesis domain containing protein 3.48034802494e-06 2.29714957582e-05 7868815523.21 +UniRef50_UPI00045607F1 hypothetical protein PFL1_05669 1.99540548916e-08 2.96425488266e-06 1188650374.8 +UniRef50_S5R225 Ribosomal protein alanine acetyltransferase 3.65719755574e-05 9.803513018e-06 -10806756813.1 +UniRef50_C5N425 0.000172968129285 3.33493053524e-05 -56365832537.4 +UniRef50_UPI0004727AC2 hypothetical protein 3.36941772522e-08 1.12033516097e-07 31626552.4234 +UniRef50_UPI00035D95F2 putrescine spermidine ABC transporter substrate binding protein 3.75736058821e-07 2.50348787787e-06 858999519.801 +UniRef50_Q8DN13 D alanine transfer from undecaprenol phosphate to the poly chain 1.0544301365e-06 3.26941484581e-05 12773342549.4 +UniRef50_A3PNG2 Hemolysin type calcium binding toxin 1.36638593906e-05 5.11309036438e-06 -3452050385.62 +UniRef50_UPI0003715F65 hypothetical protein, partial 3.92920096159e-08 1.71192144733e-07 53249703.1434 +UniRef50_UPI000347561C hypothetical protein 2.99927756463e-07 1.47996010276e-07 -61336710.3479 +UniRef50_Q7M7C0 Biopolymer transport exbD transmembrane protein 1.05837193136e-05 2.32087601977e-05 5096883931.58 +UniRef50_P16681 Protein PhnB 3.37951455394e-05 6.53837723686e-06 -11003891841.9 +UniRef50_Q47098 4 hydroxy 2 oxo heptane 1,7 dioate aldolase 9.54071793269e-07 5.26289050167e-06 1739522987.73 +UniRef50_E2ZTL2 Type 4 fimbrial biogenesis protein PilV 5.52487925847e-06 6.24949772005e-06 292537365.008 +UniRef50_UPI000474C4AE hypothetical protein, partial 1.36385525906e-07 1.42680508036e-07 2541361.534 +UniRef50_Q47534 3.18054924359e-05 4.84734087685e-06 -10883336598.1 +UniRef50_Q47536 1.85816274961e-05 4.50368108252e-06 -5683439723.0 +UniRef50_UPI00046F326A TetR family transcriptional regulator 1.02255927399e-07 1.3955715416e-07 15058962.9809 +UniRef50_UPI0003B387E8 hypothetical protein, partial 1.65077851725e-06 1.04649368071e-06 -243957203.92 +UniRef50_O21042 Cytochrome c oxidase subunit 1+2 1.1587315678e-07 1.29271343131e-07 5409012.24413 +UniRef50_G0DVK6 ROK family transcriptional regulator 5.05778315157e-06 4.70921764459e-05 16969800392.9 +UniRef50_UPI0004743039 hypothetical protein 1.5187478588e-07 9.72630698803e-08 -22047419.9102 +UniRef50_B8DVS6 Non canonical purine NTP pyrophosphatase 5.28946283753e-07 2.46078635043e-07 -114197140.961 +UniRef50_A3D954 Methyltransferase type 11 1.60465134741e-05 2.69285749417e-06 -5391034786.87 +UniRef50_UPI00047D5DD0 hypothetical protein 3.1864111702e-08 1.6039892881e-07 51891082.9661 +UniRef50_P16429 Formate hydrogenlyase subunit 3 2.28402712176e-05 1.8690930709e-06 -8466321963.12 +UniRef50_K6PYD7 2.46259667349e-07 9.26416400966e-08 -62017482.7068 +UniRef50_U5MSS6 Single stranded DNA specific exonuclease RecJ 9.22710761013e-06 1.57849959223e-05 2647499985.96 +UniRef50_UPI00036E07C4 hypothetical protein 2.13819387533e-07 2.60025528257e-07 18653986.0234 +UniRef50_UPI00047BD8AE ATPase 3.97736669779e-08 4.47989765086e-07 164801848.181 +UniRef50_UPI0003628A16 hypothetical protein 8.60462520709e-07 6.9674726291e-07 -66093858.5856 +UniRef50_A3P6S9 NH dependent NAD(+) synthetase 1.55495211984e-07 9.60409169519e-07 324953642.062 +UniRef50_UPI00036BA0C6 terminase 3.23904163326e-08 4.23743232403e-07 157993934.287 +UniRef50_UPI0004663C80 coproporphyrinogen III oxidase 1.64160984753e-07 2.37816051816e-07 29735454.4226 +UniRef50_V8DSA2 1.59267225617e-06 3.43679671965e-06 744495675.859 +UniRef50_A6LTC5 Glutamate tRNA ligase 6.83851429081e-07 1.34374128923e-05 5148769266.49 +UniRef50_F0Y8N4 Expressed protein 1.81348197232e-06 8.23925590177e-07 -399496054.693 +UniRef50_F5TR17 Ribonucleoside diphosphate reductase 1.40343136026e-06 5.86917680036e-05 23128004509.8 +UniRef50_P53638 Superoxide dismutase [Fe] 1.06436004832e-07 3.30258466078e-05 13289970027.0 +UniRef50_F0Y270 4.10422576975e-06 4.34398476833e-07 -1481554312.0 +UniRef50_UPI0003B51F21 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.82616804244e-08 1.14504774895e-07 26743150.132 +UniRef50_Q2YQ27 Xanthine phosphoribosyltransferase 3.54965653043e-05 8.9489910665e-06 -10717581495.2 +UniRef50_I4PWM5 7.21904867617e-06 1.55000317024e-06 -2288663237.76 +UniRef50_C4UW54 LemA family protein 8.31961747902e-08 1.04263024823e-07 8504945.87756 +UniRef50_UPI000369BDEC hypothetical protein 1.4626627104e-08 2.34451146121e-08 3560131.62203 +UniRef50_B0RUI2 4 hydroxythreonine 4 phosphate dehydrogenase 3.03938516822e-07 4.23275864657e-07 48177951.7549 +UniRef50_P19924 Phosphoribulokinase, plasmid 0.0002835424052 4.36178544222e-05 -96860485354.4 +UniRef50_UPI0003615A4F hypothetical protein 7.34926705399e-09 2.65974080837e-07 104410011.008 +UniRef50_S1T2D6 7.43837002795e-07 4.55553847169e-07 -116383447.558 +UniRef50_UPI00041AFFF6 50S ribosomal protein L35 2.44256145839e-06 1.56023127083e-06 -356207524.127 +UniRef50_A5UP66 Predicted ATPase, AAA+ superfamily 1.64729562854e-05 4.38208255361e-06 -4881234097.23 +UniRef50_P14175 Glycine betaine L proline transport ATP binding protein ProV 3.34509895935e-05 5.1588295564e-06 -11421892190.8 +UniRef50_UPI0000165EEC peptide ABC transporter, periplasmic peptide binding protein 1.12568571708e-06 0.000456290163813 1.83755485304e+11 +UniRef50_O33405 Uptake hydrogenase small subunit 0.000105990600932 2.40200790297e-05 -33092505583.4 +UniRef50_C6SSY8 3.26471705183e-05 1.29441373828e-05 -7954356260.21 +UniRef50_A0A058Z0V6 2.37574931118e-08 7.29348230054e-08 19853491.5517 +UniRef50_G2JE53 MFS family transporter 1.85399755385e-06 7.83599923819e-05 30886408946.2 +UniRef50_B2SB72 Bifunctional protein GlmU 2.34952573296e-05 9.69054573812e-06 -5573131472.35 +UniRef50_O30808 NADP dependent malic enzyme 8.30981036743e-05 1.90049023065e-05 -25875211904.2 +UniRef50_UPI00036C5BBF heme ABC transporter ATP binding protein, partial 9.27082591042e-08 7.58382278931e-08 -6810638.61848 +UniRef50_C6VKW6 ATP dependent zinc metalloprotease FtsH 7.63991423382e-05 9.55935602461e-05 7749022051.41 +UniRef50_Q14IC9 Polyribonucleotide nucleotidyltransferase 2.92695506178e-08 9.58865962957e-08 26894118.8232 +UniRef50_UPI0003B4D897 rod shape determining protein MreB 4.19202183818e-07 8.94133408228e-08 -133139802.881 +UniRef50_A7HVB6 7.47594531106e-05 3.39444488737e-06 -28810929566.8 +UniRef50_Q8FSA6 2.87796326475e-06 1.16624306874e-05 3546397296.06 +UniRef50_Q6F6Q6 Phosphoenolpyruvate carboxylase 4.25736077625e-07 7.31335699779e-05 29353044771.0 +UniRef50_UPI0002E62F3E cold shock protein 2.16127814766e-07 1.31790288017e-07 -34048094.4864 +UniRef50_UPI00039FBFD3 hypothetical protein 2.21393918709e-08 2.30432015703e-07 84090288.2789 +UniRef50_UPI00029AC084 UDP N acetylglucosamine enolpyruvyl transferase 1.25856078081e-06 7.89154014932e-06 2677815166.88 +UniRef50_R6LR95 Hydrogenase Fe only 2.2406400482e-06 1.56655383193e-05 5419796174.07 +UniRef50_G0I8I1 7.69960884537e-06 4.41447109578e-06 -1326250422.68 +UniRef50_Q7N0W9 Complete genome; segment 13 17 3.00386728529e-06 7.99352878588e-06 2014387577.82 +UniRef50_V4RTL0 1.30005794678e-06 2.37930944484e-07 -428793704.593 +UniRef50_P0ACA2 2.28727950268e-05 2.92392777421e-06 -8053602510.0 +UniRef50_Q9Y315 Putative deoxyribose phosphate aldolase 2.37545092662e-05 1.3052114341e-05 -4320688164.46 +UniRef50_U6A8S2 Benzoate specific porin 2.37369152544e-06 2.00895717825e-06 -147247731.754 +UniRef50_UPI000419623B hypothetical protein 4.14161368005e-07 1.16804864764e-07 -120046469.333 +UniRef50_UPI0003B3D40C ABC transporter 8.98336750254e-08 9.91540200125e-08 3762737.64479 +UniRef50_A6M3M5 tRNA modification GTPase MnmE 4.35420687731e-06 8.23451297226e-06 1566527187.24 +UniRef50_UPI0004652D96 hypothetical protein, partial 5.54788337995e-08 9.28197031349e-08 15074967.1747 +UniRef50_G2S6S7 2.11462479774e-08 1.366286822e-07 46621675.8247 +UniRef50_A5IGK7 L threonine 3 dehydrogenase 0.000109460872938 0.00027770994464 67924214894.4 +UniRef50_P68999 tRNA specific adenosine deaminase 4.51198637887e-05 5.94760187378e-05 5795755922.78 +UniRef50_Q6A9M5 Dephospho CoA kinase 8.77634570777e-06 8.51632893163e-05 30838346508.0 +UniRef50_UPI0003EDD9CA hypothetical protein, partial 8.93374805608e-07 4.16510288676e-05 16454365097.5 +UniRef50_P0AEZ8 Membrane bound lytic murein transglycosylase D 3.72892300374e-05 1.23522022426e-05 -10067384132.5 +UniRef50_U6ALT5 Ferrichrome iron receptor 9.9965911474e-06 1.01192458637e-05 49517214.1129 +UniRef50_D9SVV0 Phosphoribosyltransferase 2.2248683036e-06 3.1983758685e-06 393016950.231 +UniRef50_UPI000382B2B6 hypothetical protein 1.85496800419e-06 3.39692722692e-08 -735159534.243 +UniRef50_UPI000383F2C7 PREDICTED 2.52607782786e-07 1.74980778094e-06 604438011.963 +UniRef50_T0TUM6 5 nucleotidase 5.54377009227e-05 1.80402924441e-05 -15097792720.6 +UniRef50_F7X228 Putative prophage terminase large subunit 7.32580664594e-07 8.7857023263e-08 -260282845.654 +UniRef50_U5MTY5 Alanine racemase 3.28111682661e-06 5.17882317184e-06 766127339.045 +UniRef50_K7EE87 4.24819712083e-06 4.65892377811e-06 165815391.727 +UniRef50_A1RRZ8 Ketol acid reductoisomerase 6.73433450757e-08 2.73775284458e-07 83339107.1333 +UniRef50_Q6LQB9 HTH type transcriptional repressor PurR 2.82078638807e-05 5.54679836748e-06 -9148550230.22 +UniRef50_UPI0004107246 iron sulfur protein 7.71236354119e-08 2.50917833137e-07 70162850.3162 +UniRef50_U4V1N1 8.89160692605e-07 1.50280581489e-07 -298294967.936 +UniRef50_UPI00037A4D1B hypothetical protein 7.31937361767e-08 2.05814448883e-07 53540609.1586 +UniRef50_G8VAV8 Cytochrome oxidase assembly protein 4.78682584092e-06 4.84317913154e-05 17620008146.0 +UniRef50_UPI000372EB59 hypothetical protein 6.44125174947e-07 3.34621575416e-07 -124950401.167 +UniRef50_R6CH89 Peptidase M23 family 6.97585373883e-08 3.42020799504e-05 13779637005.1 +UniRef50_UPI000422DB1A hypothetical protein 1.30462057666e-06 8.19383863656e-07 -195896015.564 +UniRef50_Q2P047 Phosphoribosylglycinamide formyltransferase 2 4.3485880852e-06 5.2052954956e-06 345863294.561 +UniRef50_UPI000372AF58 hypothetical protein 1.28952266947e-06 8.78366130987e-08 -485135407.303 +UniRef50_A6LZV7 Transcriptional antiterminator, BglG 2.4714937072e-06 8.67556071504e-06 2504657983.53 +UniRef50_P24218 Prophage DLP12 integrase 2.91944751528e-05 1.4929594363e-05 -5758907424.61 +UniRef50_UPI000472A485 antitermination protein NusG 5.73752878069e-07 4.04867467722e-06 1402868572.4 +UniRef50_P77309 3.09844458265e-05 2.04135971329e-06 -11684679035.5 +UniRef50_M1R499 Response regulator aspartate phosphatase 1.0925229156e-07 1.87502669965e-06 712864797.035 +UniRef50_G0DWP5 Dihydrodipicolinate reductase 1.19457591412e-06 3.00350484336e-05 11643252668.5 +UniRef50_C6SR85 5.00184662863e-05 2.75230182958e-05 -9081688403.95 +UniRef50_UPI0003F14796 PREDICTED 9.41913294093e-07 5.5327287459e-06 1853368533.54 +UniRef50_Q92BQ5 DNA primase 3.26262416446e-08 9.07574641781e-06 3650818586.68 +UniRef50_O33587 AgrC 0.000153384746134 7.48283513536e-05 -31714180568.2 +UniRef50_UPI0003F68F3A magnesium chelatase 7.20972736131e-08 2.8177696158e-07 84650263.0914 +UniRef50_P76656 3.9113258808e-05 2.1408926102e-05 -7147456370.01 +UniRef50_C1CWV4 4.16507354951e-06 0.000199387771743 78813798912.4 +UniRef50_UPI00036962AD hypothetical protein 8.05784596969e-08 6.21251169283e-07 218276207.66 +UniRef50_A0A059LMT5 4.02039529891e-08 1.22937273965e-07 33400456.93 +UniRef50_UPI000469E0E3 hypothetical protein 6.80059847581e-07 4.36527755519e-07 -98316894.0403 +UniRef50_D2NAN7 7.59354629076e-05 3.62803130558e-05 -16009270618.6 +UniRef50_UPI0003680D68 hypothetical protein 1.02003607271e-07 8.18170050159e-08 -8149579.04785 +UniRef50_Q21YT7 Bifunctional enzyme IspD IspF 1.17530518074e-07 1.55646174056e-06 580914192.191 +UniRef50_UPI00047088D8 hypothetical protein 2.3860175601e-07 2.03599305505e-07 -14130918.7972 +UniRef50_Q3B6P1 CTP synthase 7.26820804561e-08 1.32912896919e-06 507243027.317 +UniRef50_C0QRW6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 6.73878747951e-08 5.08352412863e-07 178022795.261 +UniRef50_Q2YZ93 0.000192733458364 6.81513935148e-05 -50295308373.4 +UniRef50_Q3IV77 TPR repeat containing Spindly family protein 0.000109752312306 1.75911824595e-05 -37206579063.3 +UniRef50_UPI00035EB53D hypothetical protein 9.17286307682e-07 9.66525522645e-08 -331299917.371 +UniRef50_UPI0004635DEB UDP diphosphatase 4.0409431938e-07 5.50096028163e-07 58942681.4781 +UniRef50_P00393 NADH dehydrogenase 1.97523170256e-05 7.38458307458e-06 -4993005965.18 +UniRef50_A6LX04 2.00066307735e-06 9.544978323e-06 3045732643.83 +UniRef50_V8CG00 1.36548482576e-06 1.51925663702e-06 62079567.198 +UniRef50_Q9RZS8 1.30282873893e-06 0.000434122738625 1.74734708919e+11 +UniRef50_A4WP65 4.43508490918e-05 1.10447434579e-05 -13446083556.3 +UniRef50_UPI00046AD605 PTS fructose transporter subunit IIA 2.33014511563e-08 2.81050986838e-06 1125230240.93 +UniRef50_M4RDX0 Lipopolysaccharide core biosynthesis glycosyl transferase LpsC 3.30162672461e-06 4.18152164944e-05 15548408805.0 +UniRef50_Q9RZS7 1.74507927611e-06 0.000356400610041 1.43178789883e+11 +UniRef50_UPI000315D670 hypothetical protein 8.59155326291e-08 6.82287940224e-08 -7140353.41621 +UniRef50_P33020 2.14155286556e-05 2.03901062277e-06 -7822538106.46 +UniRef50_UPI0003C112FE PREDICTED 4.49197616324e-08 1.23034421407e-07 31535846.7257 +UniRef50_P0AE93 Protein CreA 4.2472500127e-05 1.82446284886e-07 -17073013693.4 +UniRef50_UPI000369C4E2 hypothetical protein 4.70876318065e-08 8.34577874118e-07 317919474.413 +UniRef50_D4HBB1 Cell envelope like function transcriptional attenuator common domain protein 3.1016839256e-06 4.75544485178e-05 17946126562.6 +UniRef50_UPI0002DA7A52 hypothetical protein 3.58502809616e-08 1.16890998607e-07 32717132.1949 +UniRef50_X1BI40 Marine sediment metagenome DNA, contig 1.36205069987e-06 1.27060666537e-07 -498580631.487 +UniRef50_Q6CZ33 sn glycerol 3 phosphate transport system permease protein UgpE 3.50067160729e-05 4.34072454899e-06 -12380237092.2 +UniRef50_R4K219 7.15782943978e-06 5.74102774054e-06 -571980232.095 +UniRef50_UPI0004794A3D hypothetical protein 1.48203848752e-07 3.69120686786e-07 89186838.4688 +UniRef50_B8GTL2 Chromosome partition protein Smc 1.80357792912e-06 2.71041392853e-06 366100821.091 +UniRef50_UPI00036F03E5 hypothetical protein 2.20197792371e-07 4.6876341531e-07 100348992.224 +UniRef50_UPI00038F73EB Bifunctional protein PyrR 1.88358630869e-07 3.98923648756e-07 85007681.6443 +UniRef50_U5MN80 2.25140748821e-06 1.75333049149e-05 6169489521.13 +UniRef50_UPI0003F56C41 hypothetical protein 1.16314649369e-07 1.15437588937e-07 -354080.05914 +UniRef50_N0C6R0 Competence protein ComYD 1.73469279858e-07 6.06222838581e-07 174707922.14 +UniRef50_P13989 Transposon Tn7 transposition protein TnsB 5.67648103501e-07 9.71951098215e-05 39009692047.9 +UniRef50_I4F3M5 Putative Diguanylate cyclase 6.27399650474e-08 1.47279368559e-06 569255990.287 +UniRef50_G1Y149 2.08627124413e-05 4.90884585046e-06 -6440771718.66 +UniRef50_P0A9V0 Probable acyl CoA dehydrogenase YdiO 3.16922740278e-05 5.86319777141e-06 -10427515043.1 +UniRef50_P21345 Proton glutamate symport protein 0.000232896308072 0.000736227739158 2.03201075301e+11 +UniRef50_Q3IMV2 Dihydroxy acid dehydratase 1.74854197019e-07 2.42925144866e-07 27481076.9703 +UniRef50_UPI0003A1A703 membrane protein 8.40978995082e-07 2.20730082125e-07 -250402097.471 +UniRef50_UPI0004659468 hypothetical protein, partial 4.0013669848e-07 5.90906851569e-07 77016251.8151 +UniRef50_T1Y8Z5 0.00012309756643 3.39866817172e-05 -35975157672.1 +UniRef50_S5CR26 Xaa Pro aminopeptidase 1.23495961457e-06 3.32785405822e-05 12936386855.6 +UniRef50_UPI000378FCC9 MULTISPECIES 4.67670755367e-08 4.18400601838e-08 -1989096.55924 +UniRef50_A8LIR2 Chorismate mutase related enzyme 3.58372774223e-06 1.5016103654e-05 4615390446.62 +UniRef50_P39404 Transcriptional activator protein BglJ 3.86728885526e-05 2.62115418808e-06 -14554527567.5 +UniRef50_I4KME6 DNA binding response regulator 5.10297907168e-06 2.53128604458e-06 -1038224033.26 +UniRef50_A0A023WST9 MerR family transcriptional regulator 1.66613139288e-05 4.04798746769e-06 -5092154675.27 +UniRef50_UPI00036CE626 hypothetical protein 2.80265683323e-07 4.86409382375e-07 83222740.9749 +UniRef50_UPI0003763AA0 hypothetical protein 3.60819457361e-08 1.35432000284e-06 532188880.251 +UniRef50_A4WR49 Cellulose synthase 3.67764845393e-05 9.68748435805e-06 -10936161792.6 +UniRef50_G0EC83 Threonine synthase 4.02773603257e-05 9.94959960484e-06 -12243689166.5 +UniRef50_B7UVS6 Exoenzyme S 1.20784726092e-05 4.39472771075e-06 -3102022105.66 +UniRef50_Q0W1R5 Predicted NADPH 5.63245679478e-05 5.85311276542e-06 -20375945811.5 +UniRef50_F9YX94 DNA processing uptake protein 1.05149300518e-06 7.54238016232e-05 30025013639.9 +UniRef50_UPI0003F687BA deoxyguanosinetriphosphate triphosphohydrolase 4.61311254254e-06 6.36745539692e-07 -1605308154.56 +UniRef50_X1R4V0 Marine sediment metagenome DNA, contig 1.90561041237e-07 6.94519048296e-06 2726926794.25 +UniRef50_A7FAV9 6.65216537137e-06 7.50027595768e-05 27593973636.8 +UniRef50_P0AD71 D alanyl D alanine carboxypeptidase endopeptidase AmpH 3.06090547773e-05 1.45317541859e-05 -6490603539.41 +UniRef50_A7FAV7 5.78966240613e-07 0.000101207507572 40624976986.4 +UniRef50_A7FAV5 2.28731728267e-06 0.000136905188742 54346886655.0 +UniRef50_Q46577 UvrABC system protein A 2.75514293858e-06 0.000422169047044 1.69322539875e+11 +UniRef50_Q9RW78 Chloride peroxidase, putative 1.38611746215e-06 0.000326111270417 1.31095529074e+11 +UniRef50_Q8EBC3 Sulfate thiosulfate import ATP binding protein CysA 1 5.74540070098e-07 3.29083557236e-07 -99093806.3325 +UniRef50_Q9R3J0 Transposase, putative 2.25014042765e-05 0.0110930408506 4.46931262527e+12 +UniRef50_M5B2K9 Probable transposase 5.14747553423e-06 1.97147640548e-06 -1282189822.17 +UniRef50_A7ZTZ7 Putative ECA polymerase 3.43875001613e-05 7.57370639339e-06 -10825057586.4 +UniRef50_D3DZE6 Transcriptional regulator LysR family 3.83295084273e-05 2.06515178457e-06 -14640365790.4 +UniRef50_UPI0004644785 transcriptional regulator 1.89114291646e-07 1.57283344486e-06 558624402.294 +UniRef50_B2SBI3 Tetracycline resistance protein 3.58781836501e-07 3.22524519289e-07 -14637523.8858 +UniRef50_U3SUM1 4.5423079898e-05 1.85975426552e-05 -10829798571.3 +UniRef50_A3SI31 2.35324190275e-07 2.3377099442e-07 -627044.22652 +UniRef50_Q1R311 6.3427917855e-06 8.27613459542e-06 780514217.149 +UniRef50_UPI0003640CCC hypothetical protein 3.12846685026e-06 1.86820904028e-07 -1187578566.55 +UniRef50_B7UUY0 3.98636542623e-06 1.87106677001e-06 -853972025.15 +UniRef50_UPI000289D6F0 cation 2.00154635176e-06 7.32952117496e-06 2150968817.73 +UniRef50_H2JHD1 Integral membrane protein, TerC family 6.17822663454e-06 3.54271710219e-05 11808157774.1 +UniRef50_R1D0M5 1.52177945557e-07 6.08255754423e-07 184124208.143 +UniRef50_R1DLZ1 3.85699246329e-08 4.20937970055e-08 1422630.5196 +UniRef50_W7WJF0 Neu5Ac permease 5.49370437122e-08 9.57142308025e-08 16462250.8207 +UniRef50_F2JL25 DNA topoisomerase 7.01403615934e-06 1.0535479445e-05 1421649867.39 +UniRef50_D8JXK3 Oxygen independent coproporphyrinogen III oxidase 4.1952557901e-05 1.04652153922e-05 -12711826563.9 +UniRef50_UPI0003B32353 potassium transporter 4.59412832238e-08 4.2563211827e-08 -1363768.87649 +UniRef50_Q9X2I3 Septum site determining protein MinD 2.4406421693e-06 1.82168003647e-05 6369028658.71 +UniRef50_B4SI67 2 isopropylmalate synthase 3.47531659889e-08 5.71049479482e-07 216509402.853 +UniRef50_P76072 Side tail fiber protein homolog from lambdoid prophage Rac 3.7001223461e-05 1.15155349363e-05 -10288885202.0 +UniRef50_A4WZC5 Phosphoribosylanthranilate isomerase like protein 3.00491985318e-05 1.40134220231e-05 -6473839757.67 +UniRef50_Q9RWI2 8.32357271643e-07 0.000294678301364 1.18629213525e+11 +UniRef50_Q9RWI3 3.57401016629e-06 0.000367800289279 1.47042618437e+11 +UniRef50_Q9RWI0 2.80859412564e-06 0.000335937732232 1.34488321008e+11 +UniRef50_UPI00046EF909 transketolase, partial 1.31139220386e-07 4.91095815735e-08 -33116371.8055 +UniRef50_Q5FKZ1 Thymidine kinase 5.74917178408e-05 9.09928354571e-05 13524812286.6 +UniRef50_A3KBE5 2.72348508473e-06 1.63814346524e-06 -438165730.427 +UniRef50_F7YHP7 Short chain dehydrogenase reductase SDR 1.03944301847e-07 3.49966371753e-07 99322128.6513 +UniRef50_Q0TR80 Amidohydrolase family protein 1.98100583414e-06 1.55126679116e-05 5462898032.85 +UniRef50_UPI00036450DC hypothetical protein 3.57960349679e-07 3.74447550096e-07 6656085.12904 +UniRef50_D4MHB3 Predicted flavoprotein 4.44910873957e-05 8.714382788e-05 17219434741.5 +UniRef50_F2F126 Lactoylglutathione lyase 0.000102058915229 3.9363660062e-05 -25310843868.2 +UniRef50_A1B1F7 7.4805173163e-07 4.32164501699e-07 -127527551.095 +UniRef50_D0DBX3 Integrase, catalytic region 5.9234538228e-06 2.79921047585e-06 -1261295377.94 +UniRef50_UPI0003B7524F multidrug ABC transporter ATPase 9.53029424938e-08 4.98265887808e-07 162681085.935 +UniRef50_UPI000376921C hypothetical protein 1.23151919719e-07 1.49952623487e-07 10819772.9928 +UniRef50_Q199U5 Thiamine biosynthesis protein 8.53600732078e-08 9.3605362652e-07 343435426.656 +UniRef50_UPI0003B774DC MFS transporter 1.65770614302e-07 5.58930023346e-08 -44358940.301 +UniRef50_UPI00036C63C0 hypothetical protein 8.63285406157e-08 1.20939303362e-07 13972789.6425 +UniRef50_A4ILI2 UDP N acetylenolpyruvoylglucosamine reductase 1.60094497565e-06 2.73424475628e-05 10392160478.2 +UniRef50_UPI000475759F flagellar hook capping protein 7.80949697504e-08 1.14013002414e-07 14500550.5501 +UniRef50_UPI0004761474 3 hydroxymyristoyl ACP dehydratase 1.15898810917e-07 1.91958617167e-07 30706277.1419 +UniRef50_Q2T2J9 Cobalamin synthesis protein P47K family protein 5.05279854973e-06 6.4026996263e-05 23808607311.6 +UniRef50_UPI00035A08C7 PREDICTED 2.86082580168e-08 8.19548615118e-08 21536678.4674 +UniRef50_X6L0P1 5.9664972334e-06 1.48272738939e-06 -1810152908.07 +UniRef50_A6LRQ4 Spore coat protein CotS 6.08482858113e-06 1.79614722228e-05 4794746780.96 +UniRef50_W6LXS6 7.15381411777e-08 2.84406857365e-08 -17398971.6269 +UniRef50_U7RK39 7.76296065333e-08 1.35249780049e-07 23261971.1273 +UniRef50_D1Q2W4 Transcriptional activator of maltose regulon,MalT 3.94144239854e-05 8.61924851744e-06 -12432390235.7 +UniRef50_W4KGM2 1.84664054554e-06 2.73154731383e-06 357247721.386 +UniRef50_UPI0004636D05 hypothetical protein 1.05312871977e-07 1.13763469779e-07 3411610.03316 +UniRef50_O58058 N5 carboxyaminoimidazole ribonucleotide mutase 7.87077991978e-07 7.91198913975e-07 1663666.77959 +UniRef50_UPI0004178882 hypothetical protein 9.57880683481e-08 6.37973423849e-07 218886881.378 +UniRef50_UPI0004632840 hypothetical protein 1.72722188731e-07 8.76610557044e-08 -34340223.2203 +UniRef50_A0A059IKA9 9.58964535559e-07 2.64905296133e-07 -280200232.021 +UniRef50_Q6LMJ9 Glutamyl Q tRNA synthetase 2.96523371137e-05 1.04414108313e-05 -7755686684.78 +UniRef50_R8ZHF6 1.21248176295e-06 2.22880532219e-06 410302292.558 +UniRef50_Q5HRC6 Iron compound ABC transporter, permease protein 0.000185653727979 3.15738116444e-05 -62203952997.6 +UniRef50_H7G193 5.32344121847e-08 4.91475298293e-08 -1649924.55856 +UniRef50_Q8R8R7 Galactokinase 7.36064165285e-05 8.00125538871e-05 2586236263.81 +UniRef50_Q839C1 L lactate dehydrogenase 1 4.89049421416e-05 6.98306790767e-05 8447976788.37 +UniRef50_Q466U8 ABC transporter ATP binding protein 5.59948635213e-06 1.25794035482e-05 2817878225.27 +UniRef50_P51008 Oxygen independent coproporphyrinogen III oxidase 4.78305266746e-05 5.40253459819e-06 -17128701051.3 +UniRef50_Q57493 3.73347090645e-06 7.2254144002e-06 1409740439.39 +UniRef50_UPI0003703812 hypothetical protein 3.79256122197e-08 2.5919695989e-07 89329958.3592 +UniRef50_UPI00037C1F67 hypothetical protein 6.31642291e-08 8.02695217963e-08 6905616.56704 +UniRef50_E8TBW5 Sugar ABC transporter 2.86840768933e-05 1.5909405566e-05 -5157291577.68 +UniRef50_E8S544 Diguanylate cyclase phosphodiesterase 4.74286289427e-08 3.17034683152e-08 -6348440.31474 +UniRef50_UPI000377E8D6 MULTISPECIES 6.57616777255e-08 1.0335564003e-07 15177143.9121 +UniRef50_B6A550 9.90058944227e-05 2.22624966511e-05 -30982251427.8 +UniRef50_A4WT86 Autoinducer binding domain protein 0.000153664146047 1.2108093431e-05 -57147915529.2 +UniRef50_UPI0003F8AF13 hypothetical protein 3.02939280418e-08 2.54222971079e-06 1014099300.41 +UniRef50_Q00751 Multiple sugar binding transport system permease protein MsmG 1.6372638374e-05 6.38458090591e-05 19165501566.9 +UniRef50_A4WZL0 Two component transcriptional regulator, winged helix family 8.50193668641e-07 3.21693885011e-06 955484072.989 +UniRef50_Q4L8E5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 8.83954889827e-05 2.35586399151e-05 -26175431606.2 +UniRef50_A3PRQ8 ABC cobalt transporter, periplasmic binding protein CbiN 2.36585238954e-05 2.41732637264e-06 -8575332098.76 +UniRef50_A9AH86 Glutamine amidotransferase class II 1.96949211577e-06 8.02327972552e-05 31595856683.5 +UniRef50_UPI0003B6246C sodium hydrogen exchanger 1.68130853073e-07 1.75668214377e-07 3042925.25225 +UniRef50_UPI000262878B cold shock DNA binding protein family 1.01615152445e-07 2.06919761488e-07 42512762.9035 +UniRef50_Q8EHK0 Purine nucleoside phosphorylase DeoD type 2 0.000208451723747 8.16833999165e-05 -51177927952.4 +UniRef50_Q6F7Y6 1.16461775817e-07 0.000164693540329 66441786199.7 +UniRef50_B0V7N3 3.12390478933e-06 6.06622410119e-05 23228932407.8 +UniRef50_V7CVS8 5.07163059765e-07 6.65576911002e-07 63953615.7009 +UniRef50_UPI000470AFA8 oligo 1,6 glucosidase 1.68383857092e-07 1.39250971926e-07 -11761303.2422 +UniRef50_UPI000255E45E metallophosphoesterase, partial 6.23475967867e-07 1.54727743981e-06 372949990.542 +UniRef50_UPI00047A285C heme response regulator HssR 1.12155372018e-07 1.83258493121e-07 28705202.5227 +UniRef50_Q9XAS7 BPS protein 2.55093362129e-06 6.35317400864e-07 -773357775.442 +UniRef50_B8HEC3 Transketolase central region 2.07409883985e-06 6.02557341406e-05 23488640139.8 +UniRef50_UPI0003A4A480 tRNA dihydrouridine synthase 1.18172314959e-07 5.74299994664e-07 184144341.613 +UniRef50_UPI00016C3AC8 Na+ H+ antiporter 2.08598947693e-07 8.04844997972e-05 32408366269.0 +UniRef50_F8K072 4.809387654e-08 8.31866791814e-07 316418743.871 +UniRef50_Q4L5P2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000186096750468 2.69309078164e-05 -64257203863.1 +UniRef50_UPI0003B7B948 methyltransferase, partial 2.58986106652e-07 3.34032812305e-07 30297275.9988 +UniRef50_Q6GK24 Protein EssC 9.65064559135e-05 1.81453518338e-05 -31635339315.9 +UniRef50_U5MYI0 Chitinase A1 3.85318623933e-06 2.01076581697e-05 6562129783.1 +UniRef50_A1AZK8 Membrane protein involved in aromatic hydrocarbon degradation 7.68579075474e-08 9.81972555499e-08 8614956.65186 +UniRef50_R7ZYU2 1.41253765657e-07 3.88418729187e-06 1511068195.49 +UniRef50_G8S2D3 8.18440704699e-06 2.30598079434e-07 -3211050284.42 +UniRef50_A0A021VU42 1.85742547003e-06 2.02938913328e-07 -667936525.773 +UniRef50_J9NU01 3.07239156151e-06 5.34107586109e-06 915895691.627 +UniRef50_UPI0004720155 hypothetical protein, partial 3.09295833233e-07 1.94188072359e-07 -46470415.5959 +UniRef50_Q492J8 Methionine tRNA ligase 2.48927160357e-06 7.04664850075e-08 -976501308.439 +UniRef50_I6TCA9 Tagatose 6 phosphate kinase 5.59327991277e-05 7.17113682593e-05 6370001983.24 +UniRef50_Q2T0M6 Pyridoxine pyridoxamine 5 phosphate oxidase 9.30060372278e-08 7.85273573395e-06 3132698101.16 +UniRef50_O34994 Transcriptional repressor CcpN 8.71711821258e-05 1.94366606991e-05 -27345257496.0 +UniRef50_Q9R3J8 Transposase, putative 2.48891860782e-06 0.00157984325125 6.36797300401e+11 +UniRef50_UPI000252B349 PREDICTED 1.58747674524e-07 2.88613889653e-07 52428584.6852 +UniRef50_A6V0F0 3.32633415052e-06 4.37506229925e-06 423384422.984 +UniRef50_X0YAI8 Marine sediment metagenome DNA, contig 2.34621924666e-07 4.42238394701e-07 83817316.6937 +UniRef50_UPI00046F5931 potassium transporter 7.54345615467e-07 1.06541544695e-06 125582708.226 +UniRef50_P64309 Non canonical purine NTP pyrophosphatase 0.000118334637817 4.1931517565e-05 -30844877217.4 +UniRef50_UPI0003B4DFFC 50S ribosomal protein L18 1.77248733072e-07 1.37609540412e-06 483989112.606 +UniRef50_D8JIL7 Chromosome partitioning protein parA 2.93382892887e-06 6.54576821856e-05 25241646813.7 +UniRef50_R4XZT5 FIG002261 2.73911749374e-06 9.64093717331e-06 2786349299.49 +UniRef50_M1G0P3 Sulfatase family protein 1.54905739093e-05 4.30519970655e-06 -4515672825.61 +UniRef50_B5FIB5 9.58916007924e-07 4.26227630195e-06 1333607087.49 +UniRef50_O31677 7 carboxy 7 deazaguanine synthase 0.000240009856615 5.03520628472e-05 -76567178707.0 +UniRef50_UPI00035C09C2 hypothetical protein 1.50267347738e-06 1.25174737899e-06 -101301945.13 +UniRef50_R5WTT7 Acriflavine resistance protein B 2.88474627455e-05 4.75600700207e-06 -9726016319.02 +UniRef50_X1S582 Marine sediment metagenome DNA, contig 2.75130815381e-06 1.56072237265e-07 -1047728586.64 +UniRef50_Q3Y3U4 Mobilization protein MobC 0.00100397045076 0.00016396133989 -3.39121986129e+11 +UniRef50_UPI000346E2F6 hypothetical protein 1.12084951252e-06 4.37362711233e-07 -275932009.006 +UniRef50_A6TED5 Modulator protein MzrA 6.69444310005e-05 5.90633410385e-06 -24641828738.9 +UniRef50_D5WQ35 Restriction endonuclease 6.84088317397e-06 0.000444201299269 1.76567766993e+11 +UniRef50_P21866 KDP operon transcriptional regulatory protein KdpE 2.6665865741e-05 8.81961527785e-06 -7204750310.11 +UniRef50_B4SKP9 Transcriptional regulator, LysR family 1.25828662949e-06 6.00030371903e-06 1914410490.14 +UniRef50_UPI00036C1571 hypothetical protein 1.40385424181e-07 2.43478199934e-08 -46845804.7522 +UniRef50_UPI00047D9616 helicase Cas3 1.38963203627e-07 5.39796164015e-08 -34308917.0288 +UniRef50_A0A037ZGX3 6.45298322694e-07 7.72912688482e-06 2859828518.88 +UniRef50_B9E8E5 ATP synthase epsilon chain 0.000270073681465 2.45786505807e-05 -99109356530.7 +UniRef50_UPI00040D8CBE potassium transporter KefB 1.91538957762e-07 2.00980643923e-07 3811724.56571 +UniRef50_Q5SJ70 Acetyl Coenzyme A dehydrogenase, medium chain 1.9922537711e-06 0.000422491606696 1.69760748883e+11 +UniRef50_UPI0004650AF8 hypothetical protein 3.39519110053e-07 2.04306190041e-07 -54587115.058 +UniRef50_UPI000362104F hypothetical protein 1.7770873059e-07 1.34002050254e-07 -17644923.1929 +UniRef50_D8FF08 7.37992346122e-08 2.22076776976e-07 59861463.4224 +UniRef50_UPI0003674A12 hypothetical protein 1.09958014564e-07 2.34514304973e-07 50284902.9157 +UniRef50_UPI0003D7284B PREDICTED 9.32987043421e-08 1.7354960028e-06 662975201.415 +UniRef50_F8JIY3 5.10305182736e-07 2.08102023342e-06 634116940.801 +UniRef50_Q3JNR9 6.59515124924e-07 2.89691018058e-07 -149302530.194 +UniRef50_UPI0003C10C25 1.50267482852e-08 8.29951023206e-08 27439658.5896 +UniRef50_E2ZSP5 2.51565412695e-05 1.30286781704e-05 -4896167158.72 +UniRef50_UPI000371A3CA hypothetical protein, partial 4.19855891476e-06 2.51588547025e-06 -679315918.274 +UniRef50_B9KR70 9.90114861485e-06 1.47213305846e-06 -3402897015.77 +UniRef50_Q47319 DTW domain containing protein YfiP 1.16246534144e-05 3.20415955001e-06 -3399456704.13 +UniRef50_T0TT19 Putative NagD like phosphatase 2.06627730317e-07 2.9083670837e-07 33996197.8004 +UniRef50_B0KIU6 Transposase like protein TnpA3 6.06882820403e-06 1.7510543461e-05 4619160854.89 +UniRef50_UPI000161E3FF Elongation factor G C terminus family protein 2.88020314273e-08 2.28746050684e-07 80719854.1631 +UniRef50_J7QW46 Precorrin 2 C20 methyltransferase 1.46733893681e-05 1.27024268214e-05 -795701766.533 +UniRef50_F0Y525 1.01447499336e-05 1.2339590795e-05 886084189.473 +UniRef50_UPI000365C1D0 hypothetical protein 5.50159718423e-08 5.31584140012e-07 192396417.639 +UniRef50_P59011 Bifunctional protein PyrR 1.1562119145e-07 5.10553787866e-07 159439135.541 +UniRef50_U3SYD5 MATE family drug transporter 8.8611734477e-07 6.31502039798e-05 25136775840.8 +UniRef50_Q43922 3 dehydroshikimate dehydratase 2.84412955181e-06 8.27871609782e-05 32273982798.2 +UniRef50_Q2RI74 Shikimate kinase 3.0003127003e-07 1.67252382864e-07 -53604466.1291 +UniRef50_C1CX80 Bifunctional protein PyrR 2.71649277704e-06 0.000487918494453 1.95882002175e+11 +UniRef50_Z4VVL5 8.99096630229e-07 4.05621034812e-06 1274565550.05 +UniRef50_B3QX75 UDP N acetylglucosamine 1 carboxyvinyltransferase 5.01326456e-08 1.48117103533e-07 39557528.0721 +UniRef50_P96121 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 6.41817386193e-08 1.12101483178e-07 19345788.9197 +UniRef50_UPI0002191618 6 phospho beta glucosidase 1.28061688515e-07 8.29851919407e-07 283321328.146 +UniRef50_UPI0003C10787 2.13320734582e-08 3.86253448286e-08 6981505.86453 +UniRef50_R5RKK3 L serine dehydratase 7.76652188257e-08 7.10729121916e-08 -2661395.08489 +UniRef50_Q5HKH4 Peptide ABC transporter, permease protein, putative 0.000178878785625 5.73722472797e-05 -49053680582.8 +UniRef50_A0A011QZG0 Respiratory nitrate reductase 2 beta chain 1.5539250397e-06 1.48961367109e-06 -25963288.6971 +UniRef50_UPI000345A202 hypothetical protein 9.38782444629e-08 2.62416707265e-08 -27305714.8115 +UniRef50_J2LQ54 NADH dehydrogenase subunit I 3.94919220244e-06 7.20281013641e-07 -1303551070.11 +UniRef50_UPI000463660E hypothetical protein 1.56168695155e-07 8.54418747387e-06 3386346113.53 +UniRef50_Q5WBL0 Aliphatic sulfonates import ATP binding protein SsuB 3 8.49010026632e-07 5.95484270717e-07 -102351458.774 +UniRef50_UPI000382981C hypothetical protein, partial 3.99208832295e-08 1.33233595906e-07 37671487.1833 +UniRef50_UPI00047CCC4C 3 oxoacyl ACP synthase 8.63192262621e-08 5.54157124799e-08 -12476127.7426 +UniRef50_Q9RZ68 2.98015254361e-06 0.000644308817478 2.58912252022e+11 +UniRef50_Q53L87 1.29081869843e-06 2.91911075976e-06 657361486.549 +UniRef50_Q4SKB1 Chromosome 13 SCAF14566, whole genome shotgun sequence 5.76961613574e-08 4.41026913378e-07 154755328.588 +UniRef50_Q9RZ60 1.8118184526e-06 0.000533760108616 2.14754052478e+11 +UniRef50_Q9RZ61 2.19044094112e-06 0.00071962552528 2.89637347466e+11 +UniRef50_O32167 Methionine binding lipoprotein MetQ 7.02591580323e-05 1.37607541567e-05 -22809098958.0 +UniRef50_A9MAP0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 1.12458586552e-06 6.73221330511e-08 -426830342.883 +UniRef50_A3CMH9 DEAD RNA helicase, putative 4.53937262651e-05 4.6021351709e-05 253380093.533 +UniRef50_Q01WB8 30S ribosomal protein S11 2.35139072764e-05 5.41865514113e-06 -7305275340.73 +UniRef50_Q5L310 Histidine ammonia lyase 6.76002416932e-08 8.13615769014e-07 301175623.019 +UniRef50_D5AP19 Sterol binding domain protein 4.70675757076e-06 7.32190178178e-06 1055765809.42 +UniRef50_UPI0003123919 hypothetical protein 7.56580344714e-07 1.93247371873e-06 474722584.926 +UniRef50_UPI0004650B6E MULTISPECIES 4.05812157848e-06 1.59774592534e-06 -993283843.377 +UniRef50_UPI00047AC749 hypothetical protein 3.03735484888e-07 2.65824489754e-07 -15305133.9558 +UniRef50_A8XU33 Protein CBG18769 6.14234829976e-06 1.8282278413e-06 -1741663369.29 +UniRef50_UPI0003758259 MULTISPECIES 2.79291145147e-07 6.7229590919e-07 158660845.955 +UniRef50_Q04FM1 Energy coupling factor transporter ATP binding protein EcfA2 5.34462857841e-08 2.80669502317e-07 91732800.8568 +UniRef50_V7WX89 9.47414561313e-08 2.39994213896e-05 9650612632.56 +UniRef50_UPI000328F9A1 PREDICTED 2.9187552607e-06 3.0620004922e-06 57829857.7732 +UniRef50_UPI000372F683 hypothetical protein 3.86971354254e-07 5.33802906394e-08 -134674806.004 +UniRef50_M4YYR0 Phosphoglycerate mutase 0.000109513373982 0.000116527547182 2831707794.42 +UniRef50_Q0BVP4 Ribonuclease D 7.70237035159e-07 1.12117477589e-07 -265690941.426 +UniRef50_A6V1L5 6.71707534196e-07 4.4600829835e-06 1529413657.48 +UniRef50_Q114I1 1,4 alpha glucan branching enzyme GlgB 2.39034889134e-08 5.73854117056e-08 13517063.1006 +UniRef50_F4DWN5 Alpha beta hydrolase fold protein 9.65784605402e-06 4.64472090682e-06 -2023860139.89 +UniRef50_D3QGJ7 Nitrilotriacetate monooxygenase 8.42831225876e-05 1.72274158185e-05 -27071211688.7 +UniRef50_A6LYY8 4Fe 4S ferredoxin, iron sulfur binding domain protein 3.05371577499e-06 2.99227858065e-05 10847373292.3 +UniRef50_UPI0003C8E201 PREDICTED 7.69125557788e-08 6.2079985708e-08 -5988090.55368 +UniRef50_A3M465 TPR domain protein 2.83338109982e-06 5.46352566663e-05 20913052846.7 +UniRef50_A7X204 Large conductance mechanosensitive channel 5.02319458014e-05 5.16588988672e-06 -18193719795.5 +UniRef50_UPI00035D3D92 hypothetical protein 9.23145898757e-08 3.05588372267e-07 86101243.1149 +UniRef50_UPI00036ED9BB thymidylate synthase 1.33726439632e-07 2.11377445363e-06 799369681.173 +UniRef50_UPI00037D216E hypothetical protein 9.54857822265e-07 4.48109577257e-07 -204580485.01 +UniRef50_P43784 Dihydrolipoyl dehydrogenase 2.05779231995e-07 1.41774247159e-07 -25839597.8078 +UniRef50_C3LL78 Peptidase, M23 M37 family protein 1.61141349003e-07 8.39673891573e-06 3324811799.84 +UniRef50_UPI000255ED81 hypothetical protein 4.71477510557e-08 3.32393602419e-07 115157250.555 +UniRef50_Q5HRN3 ISSep1 like transposase 0.00162660368355 0.000569568075052 -4.26738246437e+11 +UniRef50_W8UYM6 S formylglutathione hydrolase 2.62143047812e-06 4.23899576834e-06 653030957.42 +UniRef50_I0ETM1 Bifunctional riboflavin kinase FMN adenylyltransferase 7.78375684485e-06 2.90620120329e-05 8590292732.99 +UniRef50_Q1AU56 DNA directed RNA polymerase subunit alpha 1.57829938855e-07 1.71589910642e-07 5555069.46425 +UniRef50_P0A6M3 Disulfide bond formation protein B 1.02499185968e-05 1.00549512832e-05 -78710697.0183 +UniRef50_R9SIZ9 Xylose isomerase like TIM barrel domain containing protein 1.47517184205e-05 6.05134294071e-06 -3512448346.8 +UniRef50_A0A011MST9 Putative ATP dependent protease 2.79051309802e-07 3.93561972567e-07 46229359.7621 +UniRef50_UPI000364852F hypothetical protein 3.39126099349e-08 5.504038875e-08 8529543.57466 +UniRef50_A4XNC3 Transcriptional regulator, LysR family 5.08384579447e-06 3.16976785549e-06 -772736752.344 +UniRef50_Q9RZI9 2.7257021696e-07 0.000130150080886 52433144833.4 +UniRef50_Q2GBU1 4.383639402e-08 7.11078441415e-08 11009819.0724 +UniRef50_E2XNR6 Chemotaxis sensory transducer 4.97878784558e-06 1.40181980313e-06 -1444065893.07 +UniRef50_A3NNI6 S glutathione dehydrogenase 5.61701081925e-06 0.000488434325168 1.94919274637e+11 +UniRef50_UPI00035F7621 hypothetical protein 1.72453365293e-07 1.35091004499e-07 -15083643.5403 +UniRef50_Q8CMX9 Anaerobic dicarboxylate transport 0.000115710421362 2.55051752957e-05 -36416964779.8 +UniRef50_A7ZTG3 Protein export protein SecB 4.46848391137e-05 1.5542984484e-05 -11764924324.8 +UniRef50_P76128 Probable D,D dipeptide binding periplasmic protein DdpA 2.5594162188e-05 1.42025843111e-05 -4598919779.28 +UniRef50_A6LU60 Prophage ps3 protein 01, putative 5.55753370172e-06 1.00746934582e-05 1823632825.47 +UniRef50_Q5W6S1 Os05g0345700 protein 5.31381233381e-07 2.01506388763e-06 598980894.354 +UniRef50_C5CB84 Branched chain amino acid uptake carrier 8.78916813692e-06 5.07134232279e-05 16925336248.7 +UniRef50_UPI00036BAC4E hypothetical protein 2.81712449789e-08 6.24621491499e-08 13843658.8105 +UniRef50_S4X9U7 LysR family HTH type transcriptional regulator 0.000130423086757 2.55565808974e-05 -42335895272.4 +UniRef50_UPI0003B52A97 ribonuclease 1.36489157588e-07 8.1126805224e-08 -22350461.0218 +UniRef50_UPI00037423BF hypothetical protein, partial 1.61602833551e-07 1.84856649675e-07 9387850.92567 +UniRef50_UPI000378F32E hypothetical protein 1.08785587569e-06 1.70867910433e-06 250633955.76 +UniRef50_F0MS68 Outer membrane protein OpcA 7.44767324648e-06 6.92864029776e-05 24965054039.0 +UniRef50_A0KET1 Membrane lipoprotein 0.000100993880784 1.79518666923e-05 -33525080128.9 +UniRef50_W0WHZ7 8.70790384845e-06 3.14350228147e-06 -2246417195.48 +UniRef50_P45871 9.29409016622e-06 9.54095218597e-06 99661226.7107 +UniRef50_R4ZVH1 Hydroxymethylglutaryl CoA reductase 6.73236480112e-05 3.20897001124e-05 -14224377135.9 +UniRef50_UPI000262730A exodeoxyribonuclease III 3.38239713514e-07 2.46626750941e-07 -36985277.2082 +UniRef50_Q4FQI2 Shikimate kinase 2.55544336663e-07 1.97435744349e-07 -23459151.7898 +UniRef50_Q016J7 GTP binding protein 1.8438679864e-07 5.11889461323e-07 132216843.835 +UniRef50_UPI00046A74CA quinone oxidoreductase 1.15443544695e-07 5.16803319141e-07 162033866.182 +UniRef50_UPI0003632653 hypothetical protein 1.89180758887e-08 1.86737712604e-08 -98628.7763996 +UniRef50_I2ICF5 Transposase 3.83851941257e-07 1.1955022253e-07 -106701847.197 +UniRef50_H6NN00 MerR family transcriptional regulator 5.42836388043e-06 6.3279120141e-06 363158620.26 +UniRef50_E6MYF0 Bacterial lipid A biosynthesis acyltransferase family protein 1.33860279732e-06 2.31722102721e-05 8814495266.07 +UniRef50_UPI000478CD68 translation initiation factor IF 2 1.90604359e-07 3.67254870349e-07 71315979.1771 +UniRef50_V5VE92 MFS transporter 3.18873788606e-06 3.69439791441e-05 13627405119.2 +UniRef50_Q5F5X0 1 deoxy D xylulose 5 phosphate reductoisomerase 9.67912791928e-07 2.53456153785e-05 9841577682.26 +UniRef50_B7UXA3 Flagellar hook associated protein 1 FlgK 7.99672924193e-06 1.81190511586e-06 -2496889396.02 +UniRef50_U6LVU1 2.40837415685e-08 2.31651226409e-07 83797540.7698 +UniRef50_UPI0004678984 MULTISPECIES 1.15077446288e-07 5.18475920666e-07 162856914.362 +UniRef50_UPI00046E9450 hypothetical protein 1.94754915065e-07 4.97781282663e-07 122335463.151 +UniRef50_P39298 Esterase YjfP 2.96936979984e-05 2.89711675144e-05 -291694422.837 +UniRef50_E3RE87 7.94081805221e-07 1.25631732125e-07 -269861497.314 +UniRef50_Q2NAN4 DNA topology modulation protein 8.39850631177e-07 9.30574894704e-07 36626498.4978 +UniRef50_UPI00040DCB53 hypothetical protein 6.24216967163e-07 8.62870801449e-07 96347481.5131 +UniRef50_F2KZY9 Metal ion transporter, metal ion transporter (Nramp) family 3.80001546041e-06 3.85864129047e-05 14043695525.4 +UniRef50_UPI000288BAAB dihydroorotate dehydrogenase 3.9974577365e-08 7.60779140777e-08 14575360.0687 +UniRef50_P18159 Phosphoglucomutase 4.37280385273e-05 6.25526445618e-05 7599724460.02 +UniRef50_UPI0002B94CAD hypothetical protein, partial 3.53081199829e-07 1.05855203594e-05 4130961254.88 +UniRef50_A6M1D1 Phage replisome organizer, putative 5.35833594103e-06 2.39377294046e-05 7500729136.05 +UniRef50_S5XSU0 Segregation and condensation protein A 5.36530565577e-05 6.73745730992e-06 -18940403135.5 +UniRef50_M1TQL6 Fe S cluster redox enzyme 3.84156782408e-07 1.34090394489e-06 386250570.102 +UniRef50_E8NHR5 WGS CADB00000000 data, contig 91 1.95084056806e-06 1.66098900411e-05 5918038159.02 +UniRef50_A6LY06 Helix turn helix domain containing protein, AraC type 1.30167582368e-06 8.94178874746e-06 3084407342.06 +UniRef50_A7MN74 NAD dependent malic enzyme 2.06226248975e-05 8.60573130965e-05 26416786599.9 +UniRef50_E1VPQ4 8.24558837221e-07 2.30317669311e-07 -239902451.644 +UniRef50_Q634K1 Transposase 2.9552887343e-07 5.49133062935e-07 102383123.377 +UniRef50_Q9RTE1 Glucose 1 phosphate adenylyltransferase 1.25133476969e-06 0.000167281546121 67028433742.2 +UniRef50_C9RUW3 ComE operon protein 2 0.000242556342098 1.31182032925e-05 -92626992158.2 +UniRef50_F2LGK2 7.05768351849e-07 7.46636977426e-07 16499165.6599 +UniRef50_UPI0003656D72 hypothetical protein 1.00847457151e-07 2.52439286613e-07 61199481.7947 +UniRef50_E6N0Q8 1.68892903177e-07 7.5960414343e-06 2998431003.37 +UniRef50_E6N0Q9 6.50804683823e-07 6.84755813808e-07 13706487.8022 +UniRef50_Q3IXH2 Fumarase alpha subunit 3.31664784033e-05 1.40122742581e-05 -7732787261.93 +UniRef50_UPI00036E7B4E hypothetical protein 2.59433481261e-06 1.13028729164e-06 -591053950.099 +UniRef50_F4M9A1 Dimethyl sulfoxide reductase chain YnfE 8.44221360706e-06 1.30767544741e-06 -2880300605.68 +UniRef50_G8UZQ2 Bacterial low temperature requirement A family protein 9.9436691627e-05 1.71580529653e-05 -33216896100.2 +UniRef50_UPI00047AD872 2 oxoglutarate dehydrogenase 1.72877016346e-08 4.32659097173e-08 10487721.3914 +UniRef50_U2YEL7 7.1407943731e-07 1.39081650806e-06 273207059.959 +UniRef50_UPI00037E762B MULTISPECIES 5.18437813206e-08 4.30876186354e-08 -3534970.32621 +UniRef50_UPI00040E4B39 NADH 4.34555887214e-08 8.84156192407e-08 18150916.0423 +UniRef50_UPI000289FCDF shikimate kinase 3.10049756705e-07 5.69110187128e-07 104585874.791 +UniRef50_T0Y894 GMP synthase, large subunit 9.69100820059e-07 5.13850580653e-07 -183790108.197 +UniRef50_S9P8Y7 3.08121250774e-07 7.23983655037e-08 -95164221.4286 +UniRef50_A3RSV8 Hypothetical membrane spanning protein 2.31728375811e-06 6.18666073691e-07 -685752803.583 +UniRef50_Q1IKG7 Phospho N acetylmuramoyl pentapeptide transferase 5.67648652969e-08 4.0076306317e-07 138876293.814 +UniRef50_B7MKP4 2.15706279348e-06 1.43080589023e-05 4905506238.61 +UniRef50_Q5HQ23 Non canonical purine NTP pyrophosphatase 2.33545619095e-06 1.90353477199e-07 -866004288.911 +UniRef50_UPI0003FD107E phosphoglycerate mutase 1.63873274633e-07 5.07613549427e-08 -45664670.0182 +UniRef50_I0C7R8 Short chain dehydrogenase 0.000107410127745 2.69695621179e-06 -42273992323.0 +UniRef50_P0ABM0 Heme exporter protein B 3.77884517882e-05 1.3756825053e-05 -9701862614.22 +UniRef50_P0ABG2 Phosphatidate cytidylyltransferase 2.78837864127e-05 2.31016979293e-06 -10324382853.0 +UniRef50_A6LYG5 7.11119602238e-06 2.05031328656e-05 5406489241.15 +UniRef50_Q9JZS9 2.64592982837e-06 2.48471339488e-05 8962898542.82 +UniRef50_A0A011UDJ9 2.87665304554e-08 4.4001486687e-07 166025999.995 +UniRef50_UPI000292A56C 2.37109124476e-06 6.59988238092e-07 -690793281.388 +UniRef50_UPI00037DD48E hypothetical protein 1.63373388322e-07 2.64640287723e-07 40882689.9728 +UniRef50_E8SJM7 Siderophore staphylobactin biosynthesis protein SbnG 0.000188802880594 5.74820079201e-05 -53015847786.8 +UniRef50_T1AK40 NAD dependent dehydrogenase 4.49554345454e-07 7.78466614959e-07 132785919.407 +UniRef50_UPI0003775605 hypothetical protein 3.61640014434e-07 3.59849577725e-06 1306758392.14 +UniRef50_Q1QUR0 3 isopropylmalate dehydrogenase 4.74960145902e-05 8.02717770631e-05 13231977514.1 +UniRef50_B2TNA6 D galactose binding periplasmic protein 1.94246649494e-06 2.81581643978e-05 10583598946.2 +UniRef50_C5WII8 Amino acid ABC transporter extracellular binding protein 3.2230246027e-05 1.34631170266e-05 -7576520276.03 +UniRef50_Q88A48 Bis tetraphosphatase, symmetrical 5.34552866733e-08 4.29946379616e-06 1714165739.66 +UniRef50_K6LY10 Amidohydrolase family protein 1.44150269287e-06 1.75997078212e-05 6523265693.77 +UniRef50_UPI000470129B hypothetical protein 2.50157726056e-07 1.30135014401e-06 424379278.708 +UniRef50_A3K1G7 5.89512277509e-07 6.71648157749e-08 -210878080.226 +UniRef50_P37692 ADP heptose LPS heptosyltransferase 2 2.96909206967e-05 4.69696835465e-06 -10090365270.8 +UniRef50_UPI00035FB32E hypothetical protein, partial 1.71460308485e-07 2.92151984951e-07 48724710.8427 +UniRef50_A6M0G3 PAS PAC sensor signal transduction histidine kinase 1.03971976311e-06 2.31714059976e-05 8934833319.2 +UniRef50_Q1LFE8 Transcriptional regulator, LysR family 3.55681077713e-06 2.98299702217e-06 -231655654.364 +UniRef50_UPI00042AF78A PREDICTED 1.21462610869e-06 9.5023230289e-07 -106739023.878 +UniRef50_R6FZX0 Helicase domain protein 3.22815277223e-06 8.09300307508e-06 1963999765.69 +UniRef50_C1E796 Predicted protein 1.62537979177e-07 7.94771902066e-07 255240593.053 +UniRef50_UPI000262E85E nucleoside diphosphate sugar epimerase 3.10887003377e-07 2.61471842884e-07 -19949506.6832 +UniRef50_Q9RRK0 1.11792494231e-06 7.51174617461e-05 29874521084.1 +UniRef50_Q9RRK5 1.52416953778e-06 0.000634805286484 2.55663358144e+11 +UniRef50_B2SC15 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase 0.000135659153742 0.000116515829745 -7728394812.59 +UniRef50_Q9RRK7 9.54050519479e-07 0.000573174387728 2.31012372064e+11 +UniRef50_UPI0001850CC8 3 oxoacyl synthase II 3.09206400083e-07 1.77371437705e-07 -53223392.1089 +UniRef50_I1QER0 4.85161341716e-07 8.04782773361e-08 -163375519.11 +UniRef50_UPI0002481C5F transposase Tn3 family protein, partial 1.47980167239e-07 1.19269567781e-05 4755317402.12 +UniRef50_Q0B3Q1 Flavin containing monooxygenase FMO 1.21248176295e-06 1.64981399557e-06 176556388.979 +UniRef50_UPI00037EC779 hypothetical protein 1.72108907705e-07 1.00362015175e-06 335691293.011 +UniRef50_G0A2X8 DoxX family protein 5.19106947738e-07 3.23061681652e-07 -79145879.6649 +UniRef50_A5UN92 Multidrug efflux permease, AraJ 4.99330669844e-05 6.60491105875e-06 -17492108243.4 +UniRef50_I6T783 Transporter trans membrane domain bacteriocin immunity protein 5.28990544634e-05 1.11570251362e-05 -16851769471.7 +UniRef50_UPI000185DB7C zinc finger protein, putative 1.86905365454e-08 1.20834195835e-08 -2667374.19596 +UniRef50_G7U3Z0 2.61248490195e-06 3.74910812187e-05 14080917341.6 +UniRef50_F5XMJ8 Oxygen independent coproporphyrinogen III oxidase 6.70184801124e-06 4.03723084843e-05 13593178076.0 +UniRef50_P46322 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.000118903804173 2.89457153231e-05 -36317184378.6 +UniRef50_UPI00030144E8 hypothetical protein 5.81721261139e-07 4.3112322486e-07 -60798275.2916 +UniRef50_F0YGY7 2.08909977261e-06 9.38888504514e-06 2947012892.96 +UniRef50_M4YXB8 Uracil DNA glycosylase superfamily protein 3.93128589723e-05 4.68347099909e-06 -13980308875.2 +UniRef50_UPI00015FB2F9 hypothetical protein 1.02942774367e-07 4.09954815465e-07 123944528.453 +UniRef50_L0FIE0 Diguanylate cyclase 8.27675890719e-06 3.07621567909e-06 -2099523119.03 +UniRef50_Q8CXD9 Aminomethyltransferase 0.00013798275744 3.34196968425e-05 -42213390696.1 +UniRef50_M2TAB3 PhbF 2.42702630465e-07 1.09695176395e-07 -53696741.3931 +UniRef50_D8HDV1 M23 M37 peptidase domain protein 8.3790307085e-05 2.05669576719e-05 -25524041995.8 +UniRef50_P25795 Aldehyde dehydrogenase family 7 member A1 4.753712871e-06 1.51444464203e-06 -1307732334.33 +UniRef50_M4YX01 RNA binding protein 3.78748483804e-06 1.32683276549e-05 3827532588.19 +UniRef50_X5HG80 Long chain fatty acid ABC transporter 3.13226783592e-06 8.64951645332e-05 33654624374.5 +UniRef50_Q04IA2 Glucose 6 phosphate isomerase 7.55913876272e-05 0.000132656405619 23037848029.8 +UniRef50_B9DNP9 Exodeoxyribonuclease 7 large subunit 0.000167506456871 5.35867599622e-05 -45990779594.0 +UniRef50_U3QR56 ABC transporter permease 0.00011218659388 3.44294749294e-05 -31391503107.5 +UniRef50_UPI00035EC4D9 hypothetical protein, partial 3.34355112823e-07 7.75672291262e-07 178165160.507 +UniRef50_E6UXA3 Phosphate transporter 6.73742806667e-06 6.26742758178e-05 22582391859.4 +UniRef50_Q3JJ67 1.07446117589e-07 2.75409824326e-07 67809009.5562 +UniRef50_P44640 7.73684025405e-06 1.09586299042e-05 1300676017.57 +UniRef50_W5X6D8 Membrane fusion protein 9.7952605925e-08 4.23607431311e-07 131470849.242 +UniRef50_Q67NU0 Cytidylate kinase 1.56078945597e-07 9.79170741271e-07 332292258.386 +UniRef50_Q3JUL3 3.25798783623e-06 4.34656975814e-07 -1139813314.52 +UniRef50_Q5HJ85 Protein EsaC 2.44670532156e-05 9.33649726201e-05 27814935536.1 +UniRef50_J0NSU5 8.62704005634e-08 2.63764999154e-05 10613688272.5 +UniRef50_UPI00038115B9 hypothetical protein 2.9001460378e-07 3.08101198604e-07 7301780.27793 +UniRef50_G0AJ20 Glycosyltransferase 5.13366419918e-06 1.92597851207e-06 -1294982074.62 +UniRef50_A3CLG7 Hydrolase, HAD superfamily, putative 6.72611293986e-05 4.37715119931e-05 -9483046796.62 +UniRef50_N6V947 1.5543327308e-06 7.96235495201e-08 -595358193.199 +UniRef50_A6LTV8 2.28063123226e-06 2.11488160148e-05 7617317735.36 +UniRef50_UPI00038028F6 hypothetical protein 2.13183228138e-08 6.7449088285e-08 18623556.1089 +UniRef50_T0U2I3 4.49714639591e-05 2.09252893689e-05 -9707735761.81 +UniRef50_I4CVC3 1.58116322005e-06 1.25601466297e-06 -131266462.515 +UniRef50_B9KU56 Xanthine oxidase 1.25725716397e-05 1.49889273766e-06 -4470580062.06 +UniRef50_P0A4H7 Transcriptional regulatory protein CiaR 4.33244991405e-05 2.52589195558e-05 -7293296167.93 +UniRef50_G2TKZ3 NUDIX hydrolase 5.86860552378e-05 2.72822786562e-05 -12678089973.7 +UniRef50_I0EMS0 Bifunctional cytochrome c biogenesis protein 1.32980846837e-06 2.53757003084e-05 9707621612.08 +UniRef50_A6LTV7 1.64961452225e-06 7.78726237326e-06 2477843754.86 +UniRef50_I6SU15 3.72190360222e-05 7.89327781131e-06 -11839168457.3 +UniRef50_UPI0001BF70A9 hypothetical protein SMAC_07598 1.71013035831e-08 1.71938442177e-08 37359.7897893 +UniRef50_B9E4Q8 5.78960336452e-06 6.67914415714e-06 359118533.874 +UniRef50_M4RAV2 Phosphoglycerate mutase related protein 7.84342631636e-06 2.95856741404e-05 8777612253.93 +UniRef50_UPI0003B511AF histidine kinase 2.74884117816e-08 9.37515472934e-06 3773767601.16 +UniRef50_B4U2B4 Septation ring formation regulator EzrA 3.99886672741e-05 2.52696380952e-05 -5942252702.32 +UniRef50_L0F3J6 Phosphoenolpyruvate synthase pyruvate phosphate dikinase 5.15707073111e-06 8.31395614021e-06 1274473378.99 +UniRef50_V5BIM4 1.13713726136e-07 1.01970923034e-07 -4740713.71268 +UniRef50_UPI0002556319 pseudouridine synthase 6.27942338826e-07 1.74609432759e-07 -183016057.2 +UniRef50_B7RP52 3.23826134708e-08 1.73468874933e-08 -6070107.08622 +UniRef50_UPI0003B48412 thiamine biosynthesis protein ThiF 1.32517865654e-07 1.46138445934e-07 5498795.40235 +UniRef50_UPI0003AD5F31 hypothetical protein 1.28641671529e-06 7.2843266741e-07 -225265007.363 +UniRef50_T2E0C1 1.08392420378e-05 9.12838346346e-06 -690694601.057 +UniRef50_B8FZA5 Peptidyl tRNA hydrolase 2.56673091153e-07 2.6934613225e-07 5116262.20656 +UniRef50_UPI0004219762 hypothetical protein 6.62809261238e-08 1.15495995198e-07 19868727.3221 +UniRef50_E1Q396 Thioredoxin reductase 1.22826243664e-06 2.74272612365e-05 10576857313.4 +UniRef50_UPI00035FB5C7 hypothetical protein 2.05794651769e-07 6.43295565754e-07 176624487.716 +UniRef50_A1UAG5 Phosphatidylserine decarboxylase proenzyme 1.69245538422e-05 1.52360062867e-05 -681687368.964 +UniRef50_I2SYF8 Cation efflux system protein CusA 2.21422078921e-05 4.94414398836e-06 -6943069441.9 +UniRef50_UPI000371FCD3 hypothetical protein 3.72149705715e-06 5.81297397007e-07 -1267737137.38 +UniRef50_U5MS66 Glycerol 1 phosphate dehydrogenase 2.16223505426e-06 3.57206639684e-05 13547949560.9 +UniRef50_UPI0003B530FD peptidase M22 1.09168716841e-07 1.24132030499e-07 6040873.34424 +UniRef50_J5IRB2 3.48448605091e-06 7.98153257284e-06 1815512865.87 +UniRef50_F7QFG7 Glycolate dehydrogenase 4.46621098025e-06 4.60095914695e-06 54399488.4427 +UniRef50_R9SLR7 3.43357677766e-05 1.31006220993e-05 -8572888894.47 +UniRef50_P32143 Sulfofructose kinase 3.15059511625e-05 7.54956916339e-06 -9671485390.9 +UniRef50_D1DJP5 Phage repressor protein 3.27138881892e-06 2.4063925346e-05 8394202149.11 +UniRef50_S2W2I7 9.34522870458e-08 2.4647748766e-07 61778151.3182 +UniRef50_UPI0003C15FB0 PREDICTED 2.98995411747e-08 1.05361930591e-07 30465092.635 +UniRef50_C5QVZ6 0.000675603476614 0.000168618448495 -2.04676077258e+11 +UniRef50_UPI00037F1AC8 nucleoside triphosphate diphosphatase 8.11840148686e-08 1.95566828506e-07 46177745.5002 +UniRef50_UPI0002ED2583 hypothetical protein 5.77589887891e-06 3.10364408692e-06 -1078822051.78 +UniRef50_U5NRT4 6.41945956696e-05 1.37175746838e-05 -20378192794.7 +UniRef50_A4VM51 Nitrate binding protein NasS 4.6479100412e-06 3.40574032415e-06 -501479157.91 +UniRef50_UPI0002000C91 iron ABC transporter, partial 2.15146298045e-07 5.8371068437e-07 148793965.553 +UniRef50_M9SAW1 8.90814129841e-06 2.76121722171e-06 -2481588681.0 +UniRef50_C5ZXL6 Hydrogenase expression formation protein HypE 1.77223468942e-06 1.97976362333e-05 7277075799.82 +UniRef50_UPI0003B79B45 branched chain amino acid aminotransferase 1.77788742358e-06 1.76075990283e-07 -646670932.06 +UniRef50_A6TG52 D ribose pyranase 6.72914187671e-06 7.53479441464e-05 27702252523.7 +UniRef50_B1TES8 2.10447092255e-07 3.38664450361e-07 51762920.8713 +UniRef50_P76222 1.17991395255e-05 2.00214715387e-05 3319456333.09 +UniRef50_UPI000462ED7D hypothetical protein 2.42413041712e-07 1.85850282597e-07 -22835079.9578 +UniRef50_J2YES6 Outer membrane protein, OMP85 family 5.36677906781e-06 1.35128209951e-05 3288657089.22 +UniRef50_A1WN39 Mg chelatase, subunit ChlI 5.28594704658e-06 2.37036917522e-05 7435469548.79 +UniRef50_K4NKR5 7.95265425939e-07 2.88139197258e-05 11311474568.4 +UniRef50_P39370 Probable 9 O acetyl N acetylneuraminic acid deacetylase 2.2812811489e-05 6.98276012413e-06 -6390785992.58 +UniRef50_UPI000255E8AD membrane protein 2.61516693488e-07 1.98835490073e-07 -25305171.0035 +UniRef50_Q81II2 Arginine regulator 1.66919242749e-07 4.50865198773e-06 1752810788.2 +UniRef50_W1W6K4 0.00278232683798 0.000628932216423 -8.69351833847e+11 +UniRef50_M8EPJ5 1.54224705879e-05 9.50688063661e-05 32154203124.1 +UniRef50_Q74KF8 Phosphate import ATP binding protein PstB 2 1.44136027914e-07 8.76171550334e-07 295531723.487 +UniRef50_A3CQK2 4.94947520188e-06 3.08661081921e-06 -752061211.201 +UniRef50_UPI0003F5C642 hypothetical protein 1.77049738148e-06 1.17297177427e-06 -241228420.094 +UniRef50_Q2RK39 Orotidine 5 phosphate decarboxylase 1.6604602774e-07 1.12583196581e-07 -21583601.0016 +UniRef50_A1B425 3.46896234112e-06 5.29678126955e-07 -1186625106.33 +UniRef50_UPI0004685071 MerR family transcriptional regulator 1.49936702514e-06 5.05444574344e-06 1435228904.3 +UniRef50_W5X8A1 9.35804544484e-08 2.51745733853e-07 63853264.202 +UniRef50_UPI000313CECC hypothetical protein 2.81735408109e-07 1.764738175e-07 -42495395.8338 +UniRef50_Q06067 Signal transduction histidine protein kinase AtoS 2.16749963779e-05 1.00916423452e-05 -4676342166.74 +UniRef50_I6TW33 TetR AcrR family transcriptional regulator 5.40857432152e-05 3.00034340971e-05 -9722323714.14 +UniRef50_G7M6N7 GTP binding protein HSR1 related protein 5.67404543524e-06 1.78434334723e-05 4912931285.76 +UniRef50_F0Y8S9 3.25542511239e-06 7.05310250772e-06 1533168967.24 +UniRef50_M9RGW8 23S rRNA [guanosine 2 O ] methyltransferase RlmB 6.77705566004e-06 2.3815863322e-06 -1774504906.12 +UniRef50_G7M469 Drug resistance transporter, EmrB QacA subfamily 2.41703444048e-06 1.37143980732e-06 -422119384.296 +UniRef50_A4YX93 L fuculose 1 phosphate aldolase 0.000190900166282 4.58073408353e-05 -58575754122.1 +UniRef50_F8GTL5 4.08247297547e-08 7.01989868998e-08 11858748.0721 +UniRef50_UPI0003C177A0 PREDICTED 5.36708198106e-08 1.50951682323e-07 39273477.9667 +UniRef50_C0P4G8 0.000112494467024 2.94751619946e-05 -33515912201.8 +UniRef50_U9LDC5 8.13497390879e-06 2.48978824375e-05 6767391877.06 +UniRef50_B5WFL3 6.16655879961e-07 1.14519699256e-07 -202718538.054 +UniRef50_Q8PMG5 Phospholipase 1.73423884613e-06 4.61088783385e-05 17914586501.1 +UniRef50_V6F503 Transposase 3.42541856891e-07 2.94738262753e-07 -19298897.5696 +UniRef50_Q2IIK2 4.48099697328e-06 7.23643585034e-07 -1516889670.75 +UniRef50_L7BUG1 GTP binding protein TypA, BipA 2.52404285411e-07 3.72369119099e-07 48431275.4939 +UniRef50_O67550 5 3 exonuclease 2.18406213857e-07 1.44018203619e-06 493245892.35 +UniRef50_B7M371 Flagellar protein FliT 1.54698890717e-05 2.24291168503e-05 2809525653.55 +UniRef50_D5X8K2 NADH quinone oxidoreductase subunit I 2.94910928794e-06 5.09166733097e-06 864976974.115 +UniRef50_Q664W4 Isocitrate dehydrogenase kinase phosphatase 1.91288313022e-05 7.77803056041e-06 -4582457549.45 +UniRef50_F4D3L6 1.59951690188e-06 7.77026334343e-05 30723762034.4 +UniRef50_V8GXC4 Protein pucC 7.67674993625e-07 1.57911827097e-07 -246168872.963 +UniRef50_T2A3K0 MafB family adhesin protein 1.2724246815e-06 8.20324892546e-06 2798058798.06 +UniRef50_L7LVI6 Putative mucin 5ac 2.20938017744e-06 4.87562597947e-07 -695118885.918 +UniRef50_G2JRU4 Phosphoglycerate mutase 6.22917444087e-05 1.84144765348e-05 -17713791475.3 +UniRef50_UPI000465BD7B hypothetical protein 3.04236007301e-07 2.51399115261e-07 -21330901.6981 +UniRef50_Q5LXZ9 Argininosuccinate lyase 1.27976925509e-07 1.144906346e-07 -5444581.13536 +UniRef50_Q6F9Z8 Malate synthase G 1.05051962823e-06 6.56462835221e-05 26078102563.1 +UniRef50_B8ENG4 Leucyl aminopeptidase 1.3810856392e-05 4.1418495179e-06 -3903496727.13 +UniRef50_N6V8H7 5.75301892126e-07 2.82327328127e-06 907533635.507 +UniRef50_R5F4E6 5.67517826046e-06 9.23490986135e-06 1437107330.1 +UniRef50_V5C579 Non hemolytic phospholipase C 4.04407779216e-08 6.13832692213e-08 8454740.73096 +UniRef50_UPI00036632DA hypothetical protein 4.352594419e-07 1.80764929642e-07 -102742557.597 +UniRef50_A0A010PG87 Ribonuclease E 2.6914567433e-06 7.4217681721e-05 28876014749.0 +UniRef50_D6A365 Predicted protein 1.14853749147e-06 1.80071161704e-06 263290697.569 +UniRef50_UPI00037534FD resolvase 6.59230971402e-07 3.92493499541e-07 -107685190.627 +UniRef50_A5USR7 DNA directed RNA polymerase subunit beta 7.0317390333e-08 2.49028911299e-08 -18334390.6269 +UniRef50_UPI00035ECFEE hypothetical protein 6.47118838e-07 3.78942047778e-05 15037105667.0 +UniRef50_F3P5V2 Rhamnan synthesis protein F 3.78204593075e-08 4.8669151496e-08 4379750.16492 +UniRef50_J9NVA3 4.21064291552e-06 3.83891384436e-06 -150071587.656 +UniRef50_E6K098 ABC transporter, substrate binding protein, QAT family 9.46019015066e-05 2.0472585303e-05 -29926914620.4 +UniRef50_F2HK99 Branched chain amino acid 0.000210753069266 4.91245691468e-05 -65251408902.8 +UniRef50_UPI00047B7ECA peroxiredoxin 1.61437673729e-07 3.24609618691e-06 1245314494.79 +UniRef50_UPI000463E58D adenylyltransferase, partial 1.29081843162e-06 8.03393705995e-07 -196779343.109 +UniRef50_UPI0003B6A60F hypothetical protein 2.09759041937e-07 1.84725480685e-08 -77224704.9242 +UniRef50_D9R3W0 PTS system, lactose cellobiose family IIC subunit 2.24355402255e-06 9.17770612685e-06 2799402296.12 +UniRef50_A4X0D6 SH3, type 3 domain protein 0.000148435338747 5.08563810486e-05 -39393822651.3 +UniRef50_Z3GHL3 1.36388142802e-06 1.6720651992e-06 124417570.266 +UniRef50_Q02EP8 tRNA sulfurtransferase 1.10709311621e-05 1.62708928474e-06 -3812594854.86 +UniRef50_R0E2F9 5.69211773263e-07 1.67318246575e-06 445686515.802 +UniRef50_UPI000467973F hypothetical protein 1.79305637653e-07 1.47569500956e-07 -12812267.8308 +UniRef50_UPI0004255353 hypothetical protein 2.75271342113e-07 2.45645595031e-07 -11960277.6458 +UniRef50_UPI0003B4F400 iron ABC transporter ATP binding protein 1.40683180198e-06 1.3296368261e-06 -31164559.0516 +UniRef50_R5JER5 RelA SpoT domain protein 0.000112390811602 1.8593475661e-05 -37867135542.1 +UniRef50_Q8DSQ9 Tyrosine recombinase XerD like 4.67178762674e-05 1.32748160413e-05 -13501373805.8 +UniRef50_Q46339 Formyltetrahydrofolate deformylase 9.47395186985e-05 1.21113964559e-05 -33357986910.4 +UniRef50_UPI0003B771E7 MULTISPECIES 5.33769074795e-07 2.33578311611e-07 -121190694.852 +UniRef50_Q47702 3.32402332451e-05 4.8412574623e-06 -11465015018.1 +UniRef50_X7F5H4 1.77280294336e-07 1.39526738961e-07 -15241573.5931 +UniRef50_P0ABV0 Protein TolQ 1.03429585003e-05 2.54676684895e-05 6106031023.7 +UniRef50_UPI00047C65E6 hypothetical protein 5.98776590438e-07 6.5786544066e-08 -215174622.244 +UniRef50_A6LWR5 Phage integrase family protein 1.18334165783e-06 1.16810239152e-05 4238043148.36 +UniRef50_Q3IV24 9.13314869208e-06 1.16499844958e-05 1016077499.01 +UniRef50_UPI0003B5337E PREDICTED 2.7093055757e-08 9.8884150925e-09 -6945724.56094 +UniRef50_UPI00046923C9 hypothetical protein 5.12194945014e-08 8.0418094213e-09 -17431361.3166 +UniRef50_S2VZ33 3.6590588892e-08 1.25948707357e-07 36074968.9717 +UniRef50_B4RKT2 2.08172420321e-06 1.99207513225e-05 7201834157.54 +UniRef50_A5ULP1 Predicted O linked GlcNAc transferase 2.33157039354e-05 6.02576365377e-06 -6980161063.11 +UniRef50_C4ZJC7 NADH ubiquinone oxidoreductase chain 4L 4.42366393186e-06 5.32102171523e-06 362274348.965 +UniRef50_B1GYY9 Bifunctional protein PyrR 1.02426217482e-07 7.42280115737e-07 258316870.616 +UniRef50_D4HDS2 Alpha 1,4 glucan 1.51486876401e-06 3.69988131658e-05 14325303792.0 +UniRef50_B7GF12 Ferrochelatase 0.000190140428472 9.22770042343e-05 -39508665284.0 +UniRef50_A3NIS0 Proline specific permease 1.13345877002e-05 4.21420729944e-06 -2874584944.68 +UniRef50_A5UMI6 Multimeric flavodoxin 4.88906345484e-05 5.57201330567e-06 -17488258974.9 +UniRef50_P0AGN1 Xanthine permease XanP 3.83213711656e-05 4.63470800048e-06 -13599719301.6 +UniRef50_Q05069 Enoyl [acyl carrier protein] reductase [NADH] FabI 4.29377403536e-06 6.17931298426e-05 23213195535.8 +UniRef50_UPI0002627F1B glycerol 3 phosphate ABC transporter ATP binding protein 6.47145975203e-07 2.06782192039e-07 -177780263.135 +UniRef50_B6AV02 2.37650687121e-07 2.06739229483e-07 -12479334.7747 +UniRef50_UPI000364DCAC hypothetical protein, partial 4.29005252867e-07 6.42111121326e-08 -147271871.142 +UniRef50_A1UTL7 1.6253456944e-05 6.40115254802e-06 -3977496186.03 +UniRef50_M9S1E1 Transcriptional regulator 6.66167515011e-06 3.00079144647e-06 -1477943675.25 +UniRef50_UPI0003ADE5F5 PREDICTED 4.77187343126e-07 1.32801246403e-06 343488542.107 +UniRef50_A5UJE0 DNA helicase 1.86221625627e-05 1.07611436036e-05 -3173589819.34 +UniRef50_Q9X9H7 9.05966373245e-06 1.41752018494e-05 2065205512.52 +UniRef50_A0A037XIK8 5.07334039039e-06 4.76697335853e-07 -1855721208.27 +UniRef50_Q9RSR1 Polyribonucleotide nucleotidyltransferase 1.62875462885e-06 0.000304022303206 1.22079986347e+11 +UniRef50_A6M132 Abortive infection protein 1.99376402564e-06 1.28363920806e-05 4377301999.81 +UniRef50_UPI0002558D3C LysR 1.42883882164e-07 9.48110066088e-08 -19407609.7822 +UniRef50_UPI0003B5E137 glycine betaine ABC transporter ATP binding protein 8.07624538799e-07 7.99437717595e-08 -293773655.301 +UniRef50_C6D465 1.67310214576e-07 7.75914866708e-08 -36220551.4279 +UniRef50_C5BDM9 DNA mismatch repair protein MutL 1.1076466316e-05 1.09649993582e-05 -45000578.7173 +UniRef50_W7BGX2 Transposase IS3 IS911 family protein 1.21723477295e-06 3.45418879291e-07 -351962774.654 +UniRef50_Q0VLT2 Transcriptional regulator, TetR family 5.44450945461e-06 4.20878914765e-06 -498875451.913 +UniRef50_K3ZVN5 5.92841818649e-07 1.12759703998e-06 215887245.036 +UniRef50_A0A031GP16 1.3441135221e-05 1.28970358093e-06 -4905682067.94 +UniRef50_UPI00046D89CC hypothetical protein 2.0191198611e-07 3.60134836562e-07 63876506.3402 +UniRef50_G8V9S2 Protease 2.543345315e-06 4.96750136738e-05 19027632887.1 +UniRef50_A1V469 Sulfate thiosulfate ABC transporter, permease protein CysW 0.000100773852527 0.000105149379671 1766454001.79 +UniRef50_A0A024C0E9 LPS biosynthesis protein 2.28608457182e-06 3.47101861158e-05 13090007681.8 +UniRef50_U5MSD8 3.51960316455e-06 1.84114596569e-05 6012025209.61 +UniRef50_UPI0003B32410 chromosomal replication initiation protein 3.80627563901e-08 6.80753602202e-08 12116456.4623 +UniRef50_M7MCD8 Oxidoreductase, NAD binding domain protein 4.51531069022e-05 2.79832499157e-05 -6931681963.29 +UniRef50_D8FRN8 Putative ATPase 5.91562490057e-07 7.69451275178e-07 71815885.4942 +UniRef50_UPI0003B386D0 hypothetical protein 7.58766210551e-08 7.8373832008e-07 285772454.336 +UniRef50_J9NYR7 2.18158351966e-06 1.60809126406e-06 -231525861.127 +UniRef50_D7GEU1 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 5.12032424987e-06 5.44187412311e-05 19902375894.9 +UniRef50_Q8FE39 1.65813843133e-06 9.40320589966e-07 -289791871.174 +UniRef50_V9T419 Glycosyl transferase family 1 4.04096640229e-06 3.1065924589e-06 -377218227.004 +UniRef50_G2JD62 Ferric acinetobactin transport system ATP binding protein 2.63362317798e-06 6.52700183684e-05 25287081373.4 +UniRef50_UPI0004723CF7 succinate dehydrogenase 1.67323239428e-07 1.48880665664e-07 -7445493.34436 +UniRef50_UPI00046F8708 hypothetical protein, partial 6.23659772023e-07 8.23590439148e-07 80714463.7435 +UniRef50_UPI0003822266 MULTISPECIES 9.92661790266e-08 7.46188880691e-07 261170633.296 +UniRef50_P0AES0 Bifunctional glutathionylspermidine synthetase amidase 3.71462892728e-05 5.715327638e-06 -12689064913.2 +UniRef50_F4DAR6 ABC type oligopeptide transport system,, ATPase component 1.16989459351e-06 7.98322565575e-06 2750625358.8 +UniRef50_UPI00035D1F28 geranylgeranyl pyrophosphate synthase 1.86018471598e-07 7.58077872142e-07 230947399.958 +UniRef50_B6W8Z1 PTS system mannitol specific EIICBA component family protein 1.26797297383e-07 2.88917299039e-07 65449834.1047 +UniRef50_P32720 D allose transport system permease protein AlsC 3.93245458961e-05 1.84958270474e-06 -15129102509.9 +UniRef50_UPI0003816203 hypothetical protein 8.68786011569e-09 1.18777221132e-07 44444425.9905 +UniRef50_P80907 Ketoisovalerate oxidoreductase subunit VorA 2.52814161026e-05 2.99796171242e-06 -8996103986.06 +UniRef50_Q53046 Pyruvate flavodoxin oxidoreductase 2.7294852691e-06 1.15077820506e-06 -637343414.667 +UniRef50_L0GRI3 3 carboxymuconate cyclase 9.96882012767e-07 6.49452702637e-06 2219466755.68 +UniRef50_A6VA52 6.55262270873e-06 6.37374183882e-06 -72216402.2978 +UniRef50_C5N145 Cation diffusion facilitator family transporter 0.000183080787696 7.8446420129e-05 -42242178194.9 +UniRef50_K1GVU9 6.76911650447e-08 6.57765558645e-08 -772951.220943 +UniRef50_Q5KWI6 Non canonical purine NTP pyrophosphatase 1.59028529763e-07 1.17534496601e-07 -16751650.3765 +UniRef50_D3DZD8 Anaerobic ribonucleoside triphosphate reductase NrdD 3.46869179519e-05 2.14927555976e-05 -5326645253.01 +UniRef50_B6JN53 Polyribonucleotide nucleotidyltransferase 7.00345062854e-07 4.47354196908e-05 17777499998.4 +UniRef50_E1Q5C2 VirB8 type IV secretion protein 1.033264568e-06 2.71805591537e-05 10555983687.6 +UniRef50_P52022 DNA polymerase III subunit alpha 2.37362210782e-05 6.3231300459e-06 -7029878532.4 +UniRef50_Q27713 Bifunctional dihydrofolate reductase thymidylate synthase 2.61266200919e-08 4.21916477152e-08 6485648.79158 +UniRef50_Q7WP11 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 5.52418520273e-06 8.40363349219e-05 31696318294.1 +UniRef50_F0RPA5 Chlorite dismutase 3.21079789716e-07 0.000341682476641 1.37811784884e+11 +UniRef50_Q168Q1 Integral membrane protein, putative 3.51592644435e-05 1.76307214235e-05 -7076487916.59 +UniRef50_C6SLW0 Transposase for insertion sequence element IS1106 2.93736969561e-07 2.69855370033e-06 970854024.632 +UniRef50_A0LHK5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.41544990132e-07 4.52206519257e-07 125417871.553 +UniRef50_P02976 Immunoglobulin G binding protein A 5.54539476996e-05 7.86620594933e-06 -19211755311.9 +UniRef50_UPI0002896994 LuxR family transcriptional regulator 3.33371929351e-07 2.03276784758e-07 -52521006.3191 +UniRef50_G7M646 Nitroreductase 4.32836196781e-06 1.9403069489e-05 6085844413.77 +UniRef50_UPI0003B4D6A8 hypothetical protein 4.26803234555e-07 2.36650372058e-06 783080889.008 +UniRef50_F3FWR5 Potassium transporting ATPase subunit B 2.00165447942e-07 2.47967190376e-05 9929930517.82 +UniRef50_G2Y3Z8 1.46026142387e-08 1.1252462929e-06 448380482.206 +UniRef50_UPI00035116CC PREDICTED 1.66703074983e-07 1.80179251446e-06 660105671.522 +UniRef50_UPI0003C1260B PREDICTED 7.3191774986e-08 1.93850002655e-07 48711207.1529 +UniRef50_Q2S1Q5 DNA directed RNA polymerase subunit beta 2.79375212825e-08 2.20965399511e-08 -2358075.84039 +UniRef50_UPI00036CDFBA hypothetical protein 7.65849106278e-07 8.24636151407e-07 23733051.5167 +UniRef50_B5Y9Z4 8 amino 7 oxononanoate synthase 5.00131869351e-07 5.77264307382e-07 31139311.7546 +UniRef50_A6LZ45 Histidine kinase internal region 6.6458800855e-07 1.42736796171e-05 5494157284.69 +UniRef50_Q6FEP2 Phosphate acetyltransferase 2.94607897006e-08 8.25726049868e-05 33323680230.7 +UniRef50_P37902 Glutamate aspartate periplasmic binding protein 2.51860257979e-05 9.70762709875e-06 -6248819496.14 +UniRef50_UPI00039CF033 preprotein translocase subunit SecD 2.8093933206e-08 4.36129165322e-08 6265204.00813 +UniRef50_Q99MR8 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.54440795218e-08 6.23421057443e-08 14896185.9757 +UniRef50_UPI000393D46E PREDICTED 1.09857785715e-06 3.0775421323e-07 -319265209.548 +UniRef50_M9VH28 Actinobacterial surface anchored protein domain protein 2.0008091282e-06 4.40924485909e-05 16992911373.6 +UniRef50_P09785 Anthranilate synthase component 1, pyocyanine specific 6.33844114087e-06 1.24431196007e-06 -2056562462.28 +UniRef50_B9EAP7 ATP dependent Clp protease ATP binding subunit ClpB 0.000138398508012 7.24704027832e-05 -26615985109.7 +UniRef50_W0V3Q1 2.65148125521e-06 7.37219644158e-07 -772810903.012 +UniRef50_O83046 Pca operon regulatory protein 1.58830009337e-06 0.000181862426983 72778877237.8 +UniRef50_U3BC68 1.28600982439e-07 1.88200115908e-07 24060901.545 +UniRef50_P0AFU4 Transcriptional regulatory protein GlrR 4.5025149252e-05 2.64019154533e-05 -7518428017.31 +UniRef50_A0A011Q2M3 1.97604543621e-07 9.46803593016e-07 302460849.947 +UniRef50_A6M0L8 2.17086447274e-06 1.19571447971e-05 3950841458.11 +UniRef50_Q01269 Cyclohexadienyl dehydratase 1.45493165335e-05 2.20385600888e-06 -4984013909.62 +UniRef50_R5XL07 7.70336116499e-06 2.47436253623e-05 6879363764.01 +UniRef50_UPI00036FF49D hypothetical protein 4.03114214381e-08 4.82949743807e-07 178698522.523 +UniRef50_UPI00046F97B3 chemotaxis protein CheD 4.30288081365e-06 4.75785249677e-07 -1545045442.92 +UniRef50_B7V438 1.8294959072e-06 1.17899545856e-05 4021159397.04 +UniRef50_UPI00035D66E8 hypothetical protein 2.157612764e-07 1.00620777761e-07 -46483632.2334 +UniRef50_UPI00047161E6 hypothetical protein 3.93232781167e-07 1.66961206854e-07 -91348611.2146 +UniRef50_K9BU68 Molybdopterin binding domain of aldehyde dehydrogenase protein 1.87803974553e-06 8.95264483447e-06 2856104889.57 +UniRef50_W5DRR2 1.22725174571e-05 1.32802986763e-06 -4418423943.85 +UniRef50_F8FTQ8 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 5.99532538633e-06 7.24868250766e-06 505995650.302 +UniRef50_UPI000377D28B hypothetical protein 7.81173319448e-08 1.33168472371e-07 22224820.9435 +UniRef50_P17315 Colicin I receptor 2.41340696956e-05 1.27821718159e-05 -4582900477.49 +UniRef50_F0Y056 4.67042002586e-07 6.25139648833e-06 2335214887.9 +UniRef50_X0P3U7 3.25494911064e-07 1.44608252367e-05 5706606312.45 +UniRef50_UPI00046FA0D1 23S rRNA pseudouridylate synthase 1.11928739094e-07 2.92628595635e-07 72950749.5222 +UniRef50_UPI0003761003 hypothetical protein 9.72459370922e-08 6.08449476805e-08 -14695526.1159 +UniRef50_H7D699 UvrABC system protein C 1.49269374036e-07 5.7979767961e-07 173809560.137 +UniRef50_UPI000255DA26 glycosyltransferase, partial 2.24821406003e-06 1.32579029382e-07 -854107823.635 +UniRef50_Q3JHX4 3.39011936941e-07 2.63076122505e-06 925207310.536 +UniRef50_R7D4E7 1.67529885896e-06 2.66119264318e-07 -568903094.934 +UniRef50_O65989 PTS system mannitol specific EIICB component 3.71207316991e-06 6.22065290213e-06 1012744421.63 +UniRef50_Q11K56 Cupin 2, conserved barrel 2.23364490448e-06 0.000240723214356 96281165783.9 +UniRef50_A8LRD0 3 hydroxyacyl CoA dehydrogenase NAD binding 6.11089237967e-05 1.78212048875e-05 -17475783323.7 +UniRef50_J2ES16 Diguanylate cyclase domain protein 1.2369556219e-06 5.11440952763e-06 1565375723.45 +UniRef50_UPI00035E59D2 hypothetical protein 8.11323404945e-07 2.7125583582e-07 -218031905.03 +UniRef50_F7ZLE6 TRAP transporter subunit DctP 5.25374948067e-05 2.88583099537e-06 -20044985975.1 +UniRef50_UPI000470DE86 hypothetical protein 1.2591159159e-07 3.39505597092e-07 86230521.1144 +UniRef50_Q9I0K9 Adenylosuccinate lyase 9.04119522844e-06 0.000103944697447 38313708442.6 +UniRef50_N6RCJ7 RpiR family transcriptional regulator 3.19863682334e-05 1.87712542477e-05 -5335103683.71 +UniRef50_S5XYI0 Membrane protease subunit HflK 5.97155626821e-05 1.30391710234e-05 -18843832096.4 +UniRef50_C3K0N3 Acyl carrier protein 4.67813349378e-07 1.80353659284e-06 539247864.552 +UniRef50_Q56841 2 hydroxypropyl CoM dehydrogenase 6.78020574805e-08 1.47441361915e-07 32151364.4844 +UniRef50_Q1JJ05 tRNA binding domain protein 9.87683572221e-05 6.73294895636e-05 -12692256672.0 +UniRef50_UPI00016A8267 200 kDa antigen p200, putative 4.04764381849e-07 6.51503689629e-07 99611686.3826 +UniRef50_UPI0004788EAB ABC transporter permease 4.74140650917e-07 4.77377737214e-07 1306851.46161 +UniRef50_UPI0003B710E4 cell division protein FtsE 5.25224570381e-08 2.60590823259e-07 83999752.7294 +UniRef50_Q5HRH0 Putative proline betaine transporter 0.000106044747624 2.95210003071e-05 -30893575843.8 +UniRef50_B7V1I5 S adenosylmethionine decarboxylase proenzyme 3.02988852055e-06 2.45628829824e-06 -231569448.613 +UniRef50_R5AXK8 1.70552324163e-06 4.52502517123e-06 1138267528.16 +UniRef50_UPI0003B4A2CD malate 2.54942038101e-08 8.30538828073e-08 23237548.7479 +UniRef50_A6LWR4 2.94910928794e-06 5.97153298126e-06 1220189534.3 +UniRef50_Q117Z9 Urease subunit gamma 6.30590054317e-07 3.01230619932e-06 961528034.68 +UniRef50_C4RQ17 2.50504730316e-08 5.04240247938e-07 193454792.449 +UniRef50_A5UNG0 Adhesin like protein 1.25873468737e-05 1.97204604465e-06 -4285527209.06 +UniRef50_Q8R7X4 Adenylate kinase 2.57098751413e-07 2.32835156277e-07 -9795511.1042 +UniRef50_P64431 3.31600042713e-05 1.88963547567e-05 -5758410343.71 +UniRef50_Q1JUP4 Alpha ketoglutaric semialdehyde dehydrogenase 3.87733130644e-08 2.17231615782e-06 861337427.944 +UniRef50_S4MLD0 9.74171285999e-07 1.22977495711e-06 103190338.637 +UniRef50_Q5HR73 Transcriptional regulator, AraC family 0.00011413428387 4.70203394701e-05 -27094722935.0 +UniRef50_UPI0004213A8C peptidase A8 2.13353404522e-07 3.93123750277e-07 72575494.6115 +UniRef50_A5D374 3 dehydroquinate synthase 7.16800415583e-08 8.24463255052e-08 4346480.94652 +UniRef50_R7FWE0 1.94734272667e-06 9.53517459074e-08 -747671485.418 +UniRef50_UPI00046C2C33 PREDICTED 7.70441504522e-09 3.32486112089e-08 10312505.4538 +UniRef50_C1MJW7 Predicted protein 2.51638470224e-07 1.37523272278e-07 -46069705.7618 +UniRef50_J2ERM5 Lipid A biosynthesis lauroyl acyltransferase, putative 1.07463562395e-05 1.75174970381e-05 2733592631.64 +UniRef50_R9SHL8 NIF3 family protein HcgD 1.68158460299e-05 6.1738684013e-06 -4296296960.42 +UniRef50_G7LXR2 ABC type transporter, periplasmic subunit 5.74731400072e-06 1.73186548858e-05 4671492311.64 +UniRef50_UPI00046EDA0B hypothetical protein 2.30892756435e-08 1.76813920814e-07 62060525.6687 +UniRef50_U6A8G4 7.73241885198e-07 1.57700559074e-06 324489271.217 +UniRef50_UPI00047EFD61 16S rRNA methyltransferase 5.05310554108e-08 2.67056119001e-07 87413825.2326 +UniRef50_A3PH04 Peptidoglycan binding domain 1 protein 6.54494611194e-06 2.1062066472e-06 -1791973591.37 +UniRef50_D9SWT0 Glycoside hydrolase family 25 4.38614058638e-06 2.29520755339e-06 -844135324.052 +UniRef50_G8VBC9 Adhesion protein associated protein 2.02724100369e-07 1.12918932164e-05 4476833651.54 +UniRef50_Q0STL9 UPF0313 protein CPR_1216 5.43588191351e-06 3.46246438639e-05 11783861385.8 +UniRef50_UPI0003ADD74A PREDICTED 6.50635033466e-08 6.0462818029e-07 217828881.285 +UniRef50_G7M2T3 Polypeptide transport associated domain protein FtsQ type 4.35868790852e-06 1.75127044922e-05 5310437912.77 +UniRef50_J7M2N5 Dipeptide binding protein 1.38219464662e-05 1.11370221954e-06 -5130474150.09 +UniRef50_F7Y2V0 3.8513870353e-07 1.2156179353e-07 -106409233.019 +UniRef50_U4TGN7 Flagellar hook capping domain protein 9.22735781369e-08 1.27196950471e-07 14098993.9692 +UniRef50_Q9CJ30 Deoxyuridine 5 triphosphate nucleotidohydrolase 3.58737846247e-05 7.77911931586e-05 16922572209.6 +UniRef50_UPI00037A20A6 hypothetical protein 5.86399775903e-07 1.27828825155e-07 -185130720.115 +UniRef50_A9WSA8 Carbamoyl phosphate synthase large chain 1.7903862796e-07 1.28707693694e-07 -20319215.7932 +UniRef50_A1WY04 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 3.21483652709e-05 2.55638889886e-05 -2658233875.77 +UniRef50_E2CNB5 5.23277799828e-07 1.75406498866e-07 -140439913.059 +UniRef50_UPI0003B6AB3A aspartyl glutamyl tRNA amidotransferase subunit B 6.84635372768e-08 4.92178919875e-08 -7769703.17392 +UniRef50_UPI00037A3B64 primase 7.38559934055e-08 4.13141244382e-07 136973619.317 +UniRef50_E7AA86 Iron sulfur cluster binding protein 6.6050630372e-06 3.10791581001e-05 9880492507.81 +UniRef50_K7ABS1 Outer membrane porin 2.76743889324e-07 1.25472025264e-07 -61070307.8355 +UniRef50_Q5HJP2 Diacetyl reductase [ acetoin forming] 0.000407539317131 0.000116645142498 -1.17437547972e+11 +UniRef50_B7UPF3 Endonuclease V 5.29424507325e-05 1.52209418782e-05 -15228636019.4 +UniRef50_UPI0003773FBD hypothetical protein 3.88781014384e-08 1.15485073028e-07 30927174.504 +UniRef50_Q3K0J6 Hydroxymethylglutaryl CoA synthase 3.67270616483e-05 2.06097234666e-05 -6506767205.93 +UniRef50_J0QZG9 1.44213013312e-07 4.29641696374e-08 -40875400.6546 +UniRef50_UPI0003F49121 hypothetical protein TREMEDRAFT_73008 2.50428558928e-08 8.01616600275e-08 22252137.613 +UniRef50_Q6F9W5 1.74492752936e-06 5.488365364e-05 21452755816.3 +UniRef50_P23917 Fructokinase 4.4001890309e-05 1.20696168346e-05 -12891450654.7 +UniRef50_Q8R6A7 Phosphoglucosamine mutase 4.81213232443e-08 2.45168419463e-07 79550330.7834 +UniRef50_A6VA35 Chain length determinant protein 7.81129981653e-06 2.73232029468e-06 -2050446359.06 +UniRef50_Q9RW71 Acetyltransferase, putative 1.85953689091e-06 0.000293529362252 1.17750687689e+11 +UniRef50_Q57048 8.50477203954e-06 1.24343875878e-06 -2931489352.02 +UniRef50_Q2FD92 RND family drug transporter 4.14303096162e-06 7.21502732448e-05 27455358252.4 +UniRef50_R0NCH4 4.3975539085e-07 4.65782748484e-07 10507563.6684 +UniRef50_Q6SJ08 Conjugal transfer mating pair stabilization protein 1.47250638384e-07 5.99658829922e-08 -35237926.8561 +UniRef50_UPI000362B2C8 hypothetical protein 1.01559307998e-07 1.41400066872e-05 5667493478.1 +UniRef50_UPI0001B41070 amino acid ABC transporter, ATP binding protein 1.29390426984e-06 6.04634648434e-07 -278266604.451 +UniRef50_X5KFC2 7.89365746259e-06 1.94714311118e-06 -2400680815.6 +UniRef50_R5SPQ8 Chaperone protein DnaK 1 2.01531775885e-06 7.58984150561e-07 -507197294.614 +UniRef50_S4P442 Electron transfer flavoprotein ubiquinone oxidoreductase 2.83256789965e-07 1.60572241206e-07 -49529257.8427 +UniRef50_A8LI45 0.000165957897851 4.34299393816e-05 -49466040421.1 +UniRef50_B0UAY7 Extracellular solute binding protein family 1 1.08503489289e-07 5.10770219809e-08 -23183769.5543 +UniRef50_F0YKH0 1.99733727808e-06 2.30522189833e-06 124296799.364 +UniRef50_Q9APM5 Taurine pyruvate aminotransferase 8.3904931814e-05 1.62058439364e-05 -27330952537.4 +UniRef50_G7T9W9 Sulfate transporter 9.56467877165e-07 1.50671788373e-06 222142679.977 +UniRef50_UPI00037F5A09 hypothetical protein 1.84208287026e-07 1.16958653124e-07 -27149502.452 +UniRef50_B9KRK1 3.10017541237e-05 2.53637094856e-05 -2276147806.99 +UniRef50_Q9WZG8 Ribosomal RNA small subunit methyltransferase I 2.05686903717e-07 3.19064316194e-07 45771852.7143 +UniRef50_UPI00028822B1 hydrolase 2.48736718932e-07 7.06244252838e-08 -71906118.6293 +UniRef50_F5M323 Membrane bound O acyl transferase, MBOAT family protein 0.000102927601028 1.54852242795e-05 -35301560532.0 +UniRef50_P17994 3.25909053489e-05 1.56894185148e-05 -6823337639.49 +UniRef50_P28812 9.75403314738e-05 2.72376260833e-05 -28382064877.4 +UniRef50_C5Q6U5 1.52350288831e-06 1.0003164567e-06 -211216782.66 +UniRef50_UPI00036A99F9 hypothetical protein 8.87388077666e-07 1.179895762e-06 118088941.639 +UniRef50_Q9ZHY3 P protein 1.16069173476e-07 3.32056243583e-05 13358659482.6 +UniRef50_P39172 High affinity zinc uptake system protein ZnuA 2.71996381117e-05 1.32254518611e-05 -5641550471.92 +UniRef50_M9VFY7 Penicillin binding protein, transpeptidase domain protein 7.94150046685e-07 7.00982622691e-05 27978920561.3 +UniRef50_A5UNT4 2.58901453086e-05 4.2903153298e-06 -8720116422.16 +UniRef50_D5QG08 Phosphoribosylformylglycinamidine synthase, purS 1.14349883209e-06 3.3886271005e-07 -324841476.463 +UniRef50_UPI00046DCA03 PilS cassette, partial 9.65754206323e-07 1.93890322085e-06 392872199.046 +UniRef50_G5ZXS6 UPF0301 protein HIMB100_00008270 1.69252303548e-07 2.49509351062e-07 32400754.9461 +UniRef50_UPI0003654549 hypothetical protein 4.32500213705e-06 1.50929213104e-06 -1136736682.07 +UniRef50_F0KGG0 4.40438359604e-07 8.62258232802e-05 34632612597.5 +UniRef50_O66534 Riboflavin biosynthesis protein RibD 7.99008982048e-08 1.49397405478e-06 570878685.94 +UniRef50_P0AEC9 Sensor histidine kinase DcuS 3.19039390462e-05 5.15131843978e-06 -10800361230.4 +UniRef50_Q58633 2.65981376781e-05 1.49151887943e-05 -4716549830.29 +UniRef50_P55717 Probable ATP synthase y4yI 7.00693356076e-06 1.90322258993e-06 -2060430748.5 +UniRef50_UPI00036C881F hypothetical protein 3.80133611782e-08 2.89019007353e-07 101334059.547 +UniRef50_Q1MM06 Glucose 6 phosphate isomerase 3.20092349052e-05 1.82371178004e-05 -5559972678.09 +UniRef50_Q5LXV7 Late competence protein, ABC transporter subunit 6.95358199347e-05 9.73913268815e-06 -24140656429.3 +UniRef50_Q58639 3.95508565504e-05 2.19761601247e-05 -7095120612.83 +UniRef50_F7XUY9 Putative polyhydroxyalkanoate synthesis repressor PhaR 1.17159934907e-07 1.57622196361e-07 16335111.4768 +UniRef50_Q5HKM3 Immunodominant antigen B, putative 6.75371370149e-05 4.11738827427e-05 -10643169263.2 +UniRef50_B4U552 Zinc binding lipoprotein LraI, laminin binding protein 2.32061058724e-06 6.90599172841e-05 26943477096.9 +UniRef50_B9E943 0.000268514967504 5.47305927367e-05 -86307375522.7 +UniRef50_F5XY47 Xanthine and CO dehydrogenases maturation factor like protein 6.61640802432e-08 2.18635623757e-07 61554633.1528 +UniRef50_Q49X88 DNA mismatch repair protein MutS 0.000232366489346 4.46585496443e-05 -75779998693.1 +UniRef50_A0A022L535 5.53050374006e-08 1.90659496241e-07 54644256.0197 +UniRef50_Q097G2 4.17972315101e-07 9.85045064166e-08 -128973074.677 +UniRef50_C9LYM2 ATP dependent protease, Lon family 5.02178351593e-06 2.00766925822e-05 6077851534.57 +UniRef50_T4JEK7 N 6 DNA Methylase family protein 5.0499592194e-06 1.88522985676e-05 5572173768.62 +UniRef50_Q7VM29 GTPase Der 4.64102051613e-05 9.77635539588e-06 -14789534698.2 +UniRef50_Q4EKV3 6.05592495486e-06 9.32204239129e-06 1318571688.85 +UniRef50_R6C033 Thiazole biosynthesis protein ThiH 3.00393758387e-07 5.27926625725e-07 91857810.6866 +UniRef50_A6T533 UPF0255 protein KPN78578_02430 4.60145529896e-05 1.06798316623e-05 -14265060605.6 +UniRef50_UPI000219720B hypothetical protein 1.1176315459e-06 7.20723728053e-07 -160236556.671 +UniRef50_C4RDJ1 6.601387699e-06 3.47549539175e-07 -2524751208.34 +UniRef50_UPI00046600C4 branched chain amino acid ABC transporter ATPase 2.75307179198e-07 1.24895016408e-07 -60723235.8831 +UniRef50_UPI0002BA38E1 hypothetical protein, partial 7.65174301733e-06 9.35200985958e-05 34666108870.3 +UniRef50_P37751 Putative glycosyltransferase WbbK 1.24242801533e-05 1.27474790833e-05 130479374.138 +UniRef50_UPI0003605B6F hypothetical protein 7.32014649759e-08 1.28039337073e-06 487358186.262 +UniRef50_A5WHU9 1.66537936259e-06 4.26099378549e-05 16529820709.6 +UniRef50_C5N5T1 SagB type dehydrogenase domain protein 8.26640204784e-05 1.58178013846e-05 -26986638943.5 +UniRef50_B0SHK4 Argininosuccinate lyase 1.79443471265e-07 1.18705643804e-07 -24520606.283 +UniRef50_D8JF32 Lon protease C terminal proteolytic domain protein 9.25463766047e-07 8.3599719159e-05 33376611429.4 +UniRef50_UPI0002626C4E Tagatose bisphosphate aldolase 1.37592967312e-07 8.17206239203e-08 -22556350.658 +UniRef50_UPI0000164C98 putative transposase, partial 8.90646083249e-07 0.00022534112041 90613410802.9 +UniRef50_B2IIK5 tRNA 2 methylthio N dimethylallyladenosine synthase 2.83529462655e-05 3.43206776653e-06 -10060864463.6 +UniRef50_UPI000360793E hypothetical protein 3.27990943662e-08 4.39839517319e-08 4515464.17217 +UniRef50_UPI0002FF7139 hypothetical protein 4.57962792289e-08 5.94186673981e-08 5499525.26941 +UniRef50_E4R7C5 2 dehydropantoate 2 reductase 1.28325717802e-05 1.87502669965e-06 -4423695413.24 +UniRef50_Q9Z4J7 Quinoprotein ethanol dehydrogenase 6.58076984911e-06 4.10896603562e-06 -997897531.95 +UniRef50_X6FMB7 Chromosome partitioning protein ParA 1.80493864917e-06 7.3105313456e-07 -433540760.305 +UniRef50_UPI00039DA7C1 amino acid carrier protein 1.00886320051e-07 1.0270824368e-05 4105728789.11 +UniRef50_P92514 Cytochrome c oxidase subunit 3 0.000176488810023 3.65712121956e-05 -56486451224.8 +UniRef50_A0A014M9H7 Delta 1 pyrroline 5 carboxylate dehydrogenase 1.03356143755e-06 6.52886886295e-05 25940583346.4 +UniRef50_G0LQ70 0.000160834247792 2.40467853155e-05 -55222777172.5 +UniRef50_A0A057ZZ67 Oxidoreductase 3.51587918784e-07 1.28729154829e-05 5055013591.6 +UniRef50_Q59102 Ribulose bisphosphate carboxylase small chain, plasmid 6.16978232434e-06 7.2922485264e-07 -2196419814.47 +UniRef50_X8CBL8 1.34184975827e-07 1.06464503483e-06 375638143.848 +UniRef50_Q8Q0F9 Macro domain containing protein MM_0177 3.36768677592e-05 0.000241323868818 83829642442.8 +UniRef50_UPI0003C1AFD0 PREDICTED 7.65688706517e-07 1.05876166497e-06 118317149.737 +UniRef50_A0A023WMU7 Diguanylate cyclase 6.8395287659e-08 2.47341182178e-07 72242653.5304 +UniRef50_Q1GFH6 Ppx GppA phosphatase 8.87298551983e-06 1.22727254959e-05 1372516747.84 +UniRef50_A6V2C1 1.99728036426e-06 2.76420460614e-06 309616727.666 +UniRef50_P23847 Periplasmic dipeptide transport protein 0.000195928634865 4.63529660483e-05 -60385533001.3 +UniRef50_Q6FEQ6 Non canonical purine NTP pyrophosphatase 6.91280530797e-08 1.95580226552e-07 51050294.1733 +UniRef50_Q8DSP3 3.45208400235e-05 3.22750497486e-06 -12633503371.5 +UniRef50_S6D6U3 5.61117856197e-06 4.70724959189e-08 -2246297898.12 +UniRef50_V5ES07 9.15720396785e-08 1.15091343153e-07 9495031.42696 +UniRef50_D3QI46 0.000111450922195 1.52642008399e-05 -38831759754.9 +UniRef50_Q1IWL4 Chaperone protein DnaK 1.21557148449e-06 0.000538468163581 2.1689546426e+11 +UniRef50_UPI00047938D7 hypothetical protein, partial 2.33121490903e-07 5.24018868805e-07 117438841.171 +UniRef50_R0RZA1 Sterol O acyltransferase 2 domain protein 3.02796247737e-06 5.50279574895e-06 999120561.356 +UniRef50_M9VB96 Enoyl CoA hydratase isomerase family protein 5.84976996731e-06 0.0001037028875 39504504340.7 +UniRef50_Q4L4I8 Prolipoprotein diacylglyceryl transferase 9.90272145363e-05 5.78867130651e-05 -16608925294.6 +UniRef50_UPI00042857FF exodeoxyribonuclease III 4.81492674034e-07 1.88977653902e-07 -118091903.19 +UniRef50_Q3IUW3 0.000410016311801 2.99746071371e-05 -1.53427499809e+11 +UniRef50_UPI00047DBE48 methionine ABC transporter substrate binding protein 3.96821010926e-07 1.3901883067e-07 -104077903.758 +UniRef50_D4MBK3 TraX protein 9.23220574168e-08 1.15119549306e-05 4610245925.56 +UniRef50_K2HST1 ATP synthase F0, subunit I 2.70549741286e-07 3.12669875198e-07 17004414.9324 +UniRef50_UPI000466EE81 hypothetical protein 4.66222063836e-07 1.87304464177e-06 567951538.365 +UniRef50_UPI0003808063 hypothetical protein 6.02084529942e-08 1.74391398486e-07 46097056.2774 +UniRef50_UPI000415D4ED theronine dehydrogenase 9.52748937748e-08 6.29519064491e-08 -13049186.631 +UniRef50_T0V4W6 Proteinase 4.63076684351e-05 1.67356114966e-05 -11938602276.0 +UniRef50_A0A024E6L7 Carbamoyl phosphate synthase L chain, ATP binding 7.65691660987e-07 8.30563612971e-05 33221753152.2 +UniRef50_K0TJQ0 7.06404297436e-08 5.62341495465e-07 198505754.082 +UniRef50_O27367 DNA polymerase sliding clamp 3.1317904777e-05 1.23649489093e-05 -7651540862.71 +UniRef50_I6U069 6.73800652318e-05 1.09003907911e-05 -22801537655.3 +UniRef50_Q8NUV0 Putative surface protein MW2416 7.73623452992e-06 9.74642591402e-07 -2729737639.64 +UniRef50_X1T4G6 Marine sediment metagenome DNA, contig 1.68114861294e-07 2.09747308137e-07 16807529.6781 +UniRef50_P00467 Nitrogenase molybdenum iron protein alpha chain 4.2309152877e-06 1.72405904234e-05 5252165498.95 +UniRef50_W0IE40 2.12864626162e-06 1.70227055688e-06 -172133104.222 +UniRef50_A7ZJG7 Crossover junction endodeoxyribonuclease RusA 3.26356762696e-06 4.92194508663e-06 669507331.049 +UniRef50_K0S630 5.91789781506e-08 1.43363018454e-06 554882818.433 +UniRef50_Q8U2H9 Isopentenyl diphosphate delta isomerase 4.508833734e-05 1.5458476992e-05 -11961938221.8 +UniRef50_UPI0003B41990 GTP binding protein YchF 2.15016928992e-07 9.04287016718e-08 -50297796.2386 +UniRef50_UPI0003732AC1 hypothetical protein 1.46148649425e-07 3.16576806943e-07 68803938.5787 +UniRef50_F8JWN1 3.84843147402e-07 1.29201723771e-06 366237312.535 +UniRef50_UPI0003FF1B10 hypothetical protein 1.23645744096e-07 9.88919137972e-08 -9993425.05528 +UniRef50_Q8ZQU2 Succinate dehydrogenase iron sulfur subunit 1.61719350543e-05 1.13956999643e-05 -1928224716.83 +UniRef50_UPI00036FEB03 hypothetical protein 1.35284103629e-07 7.8437785203e-07 262047111.505 +UniRef50_UPI000368F721 hypothetical protein 1.74090409951e-08 3.28644557969e-08 6239540.61475 +UniRef50_I2BRJ1 UPF0125 protein PflA506_4569 2.24397623493e-07 4.52297385313e-07 92005930.4913 +UniRef50_V5SY76 ATPase AAA 2.44111058178e-06 7.7409359159e-07 -672995215.539 +UniRef50_A0A011Q9T7 1.48706334406e-06 8.44122010235e-07 -259563306.243 +UniRef50_A0P1B5 Putative translation initiation inhibitor 2.3315335057e-07 1.82799545977e-07 -20328448.8249 +UniRef50_G6YUN6 Cytochrome c type biogenesis protein CcmF 1.3766298652e-06 9.20500511064e-07 -184145017.601 +UniRef50_UPI000478A554 ABC transporter substrate binding protein 7.3499068248e-08 8.0111036962e-07 293745611.159 +UniRef50_F0Y1G4 3.12626116811e-07 1.88399131595e-06 634379413.712 +UniRef50_UPI000471C311 UTP glucose 1 phosphate uridylyltransferase 2.76002970659e-07 1.43531404295e-07 -53480396.9501 +UniRef50_A3CM87 Cation transporting ATPase, E1 E 2 family, putative 7.20835645868e-05 6.92071125386e-05 -1161258989.89 +UniRef50_A6M1C8 Flagellar hook associated protein FlgK 2.46441205932e-06 1.5373521008e-05 5211565695.17 +UniRef50_X1U0Y9 Marine sediment metagenome DNA, contig 3.77882028504e-07 2.96750603822e-07 -32753751.7387 +UniRef50_Q2T3V8 Aminotransferase, class III 7.52700280662e-06 3.24896022302e-06 -1727098288.49 +UniRef50_H2K108 9.21752031102e-07 8.05969091573e-07 -46742993.5043 +UniRef50_Q2JU97 Sulfate adenylyltransferase 5.95862455945e-07 7.9547655755e-07 80586662.3584 +UniRef50_UPI0003B4D9C2 acetyl CoA carboxylase 7.05390615059e-08 3.5669885056e-08 -14077114.4257 +UniRef50_P46187 Protein RseC 1.2343533184e-05 4.06399135599e-06 -3342552637.37 +UniRef50_A5D508 Carbamoyl phosphate synthase large chain 1.72081788734e-07 5.69042962533e-05 22903491161.9 +UniRef50_UPI00034916BB hypothetical protein 1.66919528265e-06 3.57968464385e-07 -529358357.094 +UniRef50_UPI0002889211 glucosamine fructose 6 phosphate aminotransferase , partial 1.72980137856e-07 1.97563564627e-07 9924631.06002 +UniRef50_UPI00046F52F1 hypothetical protein 9.8041609194e-08 9.51085657322e-06 3800068909.21 +UniRef50_U5QPT0 Prolyl endopeptidase 5.567639954e-07 0.000236144077809 95109489568.1 +UniRef50_D3BJZ9 9.55283921125e-09 1.86227912101e-07 71325894.9726 +UniRef50_UPI0003727191 peptidase 4.68671657956e-08 8.5660168731e-08 15661211.3287 +UniRef50_X3EY52 GTPase 1.85551999817e-07 3.71958909161e-05 14941527988.4 +UniRef50_T1XPL8 Cobalamin synthesis protein, putative 0.000250367200924 6.76092840125e-05 -73781613748.8 +UniRef50_UPI0004157C13 hypothetical protein 7.5336730949e-07 5.15102625556e-07 -96190376.7406 +UniRef50_E9Z893 Alpha beta hydrolase 2.41721944042e-05 2.42394012474e-06 -8780037133.73 +UniRef50_UPI000473D50C DNA repair protein RadA, partial 7.31417375573e-08 5.94751522108e-08 -5517368.21224 +UniRef50_A5VPL4 2 isopropylmalate synthase homocitrate synthase family protein 1.32719388278e-05 6.37491800334e-06 -2784411942.8 +UniRef50_UPI00047A1CF1 ATP synthase 5.60844725465e-08 4.09497577497e-08 -6110070.0873 +UniRef50_F9YYK5 Conserved membrane spanning protein 9.01638508349e-07 6.10975119033e-05 24301812776.0 +UniRef50_F6C514 Transcriptional regulator, DeoR family 3.00216551627e-05 2.59429023591e-06 -11072763792.6 +UniRef50_O27552 Leucine tRNA ligase 2.67861994676e-05 7.14457971558e-06 -7929562923.66 +UniRef50_Q9A0T3 Unsaturated chondroitin disaccharide hydrolase 6.43818558623e-06 2.57507307191e-05 7796711461.73 +UniRef50_F7ZZ02 RDD domain containing protein 1.79405089546e-08 7.93660222491e-08 24798233.4928 +UniRef50_Q6GEA0 Lysostaphin resistance protein A 0.000227527989668 4.8733510195e-05 -72181525418.2 +UniRef50_Q9ZLE4 Succinyl CoA 3.43924757258e-07 3.52688937974e-05 14099638579.1 +UniRef50_L0EXZ6 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 7.86372397735e-08 6.96159948682e-08 -3641987.27139 +UniRef50_B9KTS5 Animal heme peroxidase 3.53532906952e-05 1.68598660914e-05 -7466022452.39 +UniRef50_Q82AZ8 1.00361758047e-07 1.77395645239e-05 7121162613.95 +UniRef50_UPI000360375D hypothetical protein 5.84862412686e-08 4.37368570907e-07 152959445.884 +UniRef50_G7FVR9 6.09316557814e-07 9.0232831922e-08 -209560470.016 +UniRef50_B9UQA9 PI 1 ancillary protein 2 1.566331904e-06 1.6533890873e-05 6042587228.39 +UniRef50_A6FPM7 PhoH like protein 4.51463530496e-06 4.34289272355e-06 -69334587.6337 +UniRef50_UPI00030E455E hypothetical protein 6.47203370722e-06 2.05773594541e-05 5694493095.84 +UniRef50_O27218 UPF0051 protein MTH_1150 4.28358712802e-05 7.37031421257e-06 -14317880599.5 +UniRef50_UPI0003C165C4 PREDICTED 5.19766086743e-08 7.44205604633e-08 9060898.75548 +UniRef50_UPI0001B4101D thiamine biosynthesis protein ThiC 2.24393917865e-07 6.20239017523e-07 159807524.298 +UniRef50_F8IMU7 5.0777731058e-05 1.41599298021e-05 -14783055718.0 +UniRef50_A6M039 5.60947588265e-06 2.16165267926e-05 6462242880.93 +UniRef50_UPI00016C0F03 peptidyl tRNA hydrolase 1.79470699405e-07 2.65281089949e-07 34642707.6745 +UniRef50_UPI0004783915 hypothetical protein, partial 3.88341451504e-07 7.21223717473e-06 2754890442.09 +UniRef50_Q4L6U2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 9.92061313661e-05 4.85236752012e-05 -20461129497.4 +UniRef50_UPI00036584C7 hypothetical protein 8.62862655521e-07 8.20961013802e-07 -16916206.9529 +UniRef50_UPI0003808BC7 hypothetical protein 6.39959282003e-08 6.87295760849e-08 1911031.7394 +UniRef50_UPI000382E998 hypothetical protein 2.56050975403e-06 1.4443545189e-07 -975398844.34 +UniRef50_B9EA42 0.000248866993053 4.55613756771e-05 -82076972575.2 +UniRef50_UPI000376BE3D hypothetical protein 3.64016639192e-07 2.36890137376e-07 -51322528.8007 +UniRef50_B2TI02 Ser Thr protein phosphatase family protein 3.89678553867e-06 2.70932757067e-06 -479391353.429 +UniRef50_E8SHY9 Metallo beta lactamase superfamily domain protein in prophage 6.95211309805e-06 4.12851736792e-07 -2639980057.3 +UniRef50_P50867 Cysteine synthase 2.4239608372e-07 8.10625176713e-08 -65132340.3995 +UniRef50_UPI00036B0358 hypothetical protein 4.25096495263e-08 5.52649156193e-08 5149457.44646 +UniRef50_W4UBJ6 Sodium dependent galactose transporter 1.91942028225e-06 5.9994151876e-06 1647144010.46 +UniRef50_Q8IJN7 Enolase 8.02815177803e-08 6.42764108378e-07 227081124.262 +UniRef50_J1AHN1 ZIP zinc transporter family protein 4.17208768651e-05 2.0013292859e-05 -8763618045.27 +UniRef50_T9Q7C2 3.45261575169e-06 5.40213485111e-06 787044783.725 +UniRef50_UPI00045DD854 PREDICTED 1.09538273435e-07 2.4372767966e-06 939736606.364 +UniRef50_G0IAR7 Multidrug resistance protein MdtG 3.38938191841e-05 6.29765856829e-06 -11140908683.6 +UniRef50_A3PPJ6 Binding protein dependent transport systems inner membrane component 3.92895131657e-05 6.59004409589e-06 -13201176931.1 +UniRef50_A0A009I7P3 LPXTG motif cell wall anchor domain protein 7.87645652842e-07 1.88907928919e-08 -310355770.645 +UniRef50_A0A024L4S5 Tail protein 2.77268909009e-05 6.62888120069e-06 -8517525417.66 +UniRef50_K6PZY4 Putative esterase 6.36020606784e-08 9.88775311058e-08 14241140.2902 +UniRef50_D4YR40 5.59072811518e-09 2.46747619874e-08 7704458.66164 +UniRef50_R7CKR0 Replicative DNA helicase 8.46381140973e-07 1.81144651105e-05 6971337401.71 +UniRef50_UPI0003503BD0 3.75491549437e-06 8.74895344331e-07 -1162699476.39 +UniRef50_Q9RU95 NADH quinone oxidoreductase subunit I 2.18556774031e-06 4.47972561343e-05 17202861508.9 +UniRef50_P42640 Putative phosphoethanolamine transferase YhbX 2.57770462092e-05 7.90124915864e-06 -7216678630.02 +UniRef50_UPI00037DFCBE hypothetical protein 3.28965499843e-07 2.12793455181e-07 -46900080.0213 +UniRef50_M4WUT5 9.17940422378e-06 7.6518964315e-06 -616673640.372 +UniRef50_U6EDC0 Methyl viologen reducing hydrogenase subunit delta 2.8685346852e-05 6.69905769279e-06 -8876134735.68 +UniRef50_Q47005 Nitrogen assimilation regulatory protein nac 1.52553151237e-05 2.71491215676e-05 4801675614.82 +UniRef50_E4SRK6 Mannose specific phosphotransferase system component IIC low 2.88899858702e-06 3.59824066688e-05 13360214944.4 +UniRef50_Q8CQI0 Lipoprotein signal peptidase 1.28656128959e-05 5.84785554841e-06 -2833154758.75 +UniRef50_UPI00047E217B hypothetical protein 4.97748094594e-07 4.58167545483e-07 -15979153.3841 +UniRef50_B9EC33 0.000169155692712 3.24424518435e-05 -55192812998.5 +UniRef50_UPI0003B68BAD single stranded DNA binding protein 5.44704308844e-07 7.04227432158e-06 2623148748.29 +UniRef50_A5D3C3 Putative Holliday junction resolvase 8.13952435013e-05 4.26032143025e-05 -15660818219.3 +UniRef50_E3F446 Nickel import ATP binding protein NikD, putative 2.881572434e-06 4.04543431768e-06 469865324.633 +UniRef50_A0A022NSU8 6.22571724302e-07 9.42500122933e-07 129159020.49 +UniRef50_E6NXI7 2.63083411785e-05 8.39364231826e-06 -7232383767.94 +UniRef50_UPI0002FB146F 30S ribosomal protein S2 1.30516516969e-07 2.45014243412e-07 46224137.2101 +UniRef50_Q9RV68 Transcription elongation factor GreA 3.53893114548e-06 0.000235796829397 93765363649.2 +UniRef50_UPI00037DDB96 hypothetical protein 4.60648636281e-07 7.35995463982e-07 111160893.228 +UniRef50_E1QYV1 8.70776810049e-07 6.21869897831e-06 2159021805.71 +UniRef50_D3RCC6 Carbohydrate kinase, FGGY like protein 7.9192864794e-07 1.6988496944e-06 366135155.629 +UniRef50_L5SRM4 4.8349259828e-06 9.26404782403e-06 1788090838.74 +UniRef50_R5B4R5 Inner membrane translocator 2.64903897812e-06 2.32392702337e-05 8312529028.44 +UniRef50_Q6LWG7 Regulator of arsenical resistance 1.36971087067e-05 6.08900423076e-06 -3071485138.88 +UniRef50_A6X5J7 TonB dependent receptor 7.67163280476e-05 2.35195784382e-05 -21476180614.8 +UniRef50_F7YB26 2.22368129536e-06 1.70713615168e-06 -208535613.225 +UniRef50_A6LV07 Patatin 1.36605303564e-06 9.81663178563e-06 3411602341.63 +UniRef50_A3NHB2 Aldehyde dehydrogenase family protein 0.000101330109423 1.41861501652e-05 -35181085729.0 +UniRef50_UPI00044220DD 1.15795303126e-07 2.08746068447e-07 37525364.5942 +UniRef50_G8WCV6 PTS system ascorbate specific transporter subunit IIC 0.000122881312311 4.42292935069e-05 -31752785160.0 +UniRef50_Q6GCL3 Iron sulfur cluster repair protein ScdA 0.000199967513722 0.000103892598351 -38786622307.1 +UniRef50_B7V6M6 Homoprotocatechuate 2,3 dioxygenase 4.33597120441e-06 7.11151043628e-06 1120519247.6 +UniRef50_UPI00036F8CD4 hypothetical protein 3.07093601679e-08 1.16778055914e-07 34746988.6544 +UniRef50_Q5SHB3 Ribonuclease Y 1.32957542596e-06 0.000203274198332 81527522406.3 +UniRef50_B1BJN1 Oxidoreductase, NAD binding 1.52251361085e-06 1.08405933916e-05 3761823153.19 +UniRef50_X5Z4Q0 8.99528168626e-06 2.23988699868e-06 -2727235733.39 +UniRef50_G0K1E8 Oxygen independent coproporphyrinogen III oxidase 5.25080414167e-06 8.62928535389e-05 32717669839.4 +UniRef50_C0MDU1 Response regulator protein 7.27253398637e-05 1.54935168946e-05 -23105189246.1 +UniRef50_X5WX27 Transposase IS66 8.41465536282e-07 3.11518779172e-07 -213946009.023 +UniRef50_V7EIE7 6.28255376595e-07 3.3174602923e-07 -119704462.11 +UniRef50_Q9FMT1 3 isopropylmalate dehydrogenase 3, chloroplastic 5.80806512214e-07 2.996207124e-07 -113518157.923 +UniRef50_UPI00047729DA chemotaxis protein CheA 2.70733427215e-08 2.47272575441e-08 -947143.375819 +UniRef50_B0V429 Transcriptional repressor, antitoxin for RelE like 4.92373028943e-06 4.60953071179e-05 16621470797.7 +UniRef50_U5MLW0 Methyl accepting chemotaxis protein McpC 2.73663191735e-06 5.79324530124e-05 22283230304.9 +UniRef50_UPI0003C19C40 PREDICTED 4.62351372674e-08 8.47917844901e-07 323649146.825 +UniRef50_I6TP65 LrgA family protein 4.31722220459e-05 1.31736270931e-05 -12110800906.6 +UniRef50_C5N355 Periplasmic binding protein 0.000128128432588 4.01267492067e-05 -35527359483.1 +UniRef50_E6C9E2 1.41204235229e-06 4.25275696547e-05 16598842916.2 +UniRef50_UPI000477A2AE hypothetical protein 7.80320327194e-07 3.85214965911e-07 -159508882.838 +UniRef50_UPI0004747D71 hypothetical protein 2.36310013734e-07 4.01999064757e-07 66890703.1313 +UniRef50_F9YY68 2.00704150891e-06 7.38218097302e-05 28992503197.2 +UniRef50_UPI0003B2F873 glycerol 3 phosphate ABC transporter ATP binding protein 1.03493182799e-07 6.50970468326e-08 -15500991.2632 +UniRef50_P59831 Ribosomal large subunit pseudouridine synthase A 2.60599231646e-07 1.55795477789e-07 -42310561.5188 +UniRef50_B2VHD6 Protein RecA 1.08058966276e-06 5.0027122078e-05 19760315777.5 +UniRef50_F0KP29 Amidohydrolase 2.03283510393e-06 4.87650544172e-05 18866370405.6 +UniRef50_R7PW09 CAAX amino protease family protein 2.99477336982e-05 1.1068705684e-05 -7621695281.06 +UniRef50_UPI00036E74BD hypothetical protein 8.79705986538e-07 4.55135523497e-07 -171404305.995 +UniRef50_P23877 Ferric enterobactin transport system permease protein FepG 5.32642038654e-05 1.59375413827e-05 -15069231693.9 +UniRef50_B0BWD8 Ribosomal RNA large subunit methyltransferase E 1.24945826939e-06 5.18465737379e-07 -295110655.46 +UniRef50_F6GSD7 Autotransporter 6.07321802197e-06 1.69213110428e-06 -1768698550.65 +UniRef50_Q72PF1 Pyridoxine pyridoxamine 5 phosphate oxidase 9.33853636496e-08 3.73912910547e-06 1471831486.88 +UniRef50_UPI00034575CD hypothetical protein 1.92509328944e-07 1.00061342966e-07 -37322386.4037 +UniRef50_C5QLR6 2.39841092416e-07 2.71768287441e-07 12889400.4223 +UniRef50_Q74KU4 Non canonical purine NTP pyrophosphatase 1.1272020185e-07 1.12717309761e-07 -1167.57181922 +UniRef50_G8VH89 ABC transporter, permease protein 4.41004202645e-06 3.92006677388e-05 14045402529.1 +UniRef50_A3PPU7 ATPase associated with various cellular activities, AAA_5 1.07045890889e-05 2.04135971329e-06 -3497452008.71 +UniRef50_Q2S3M6 Nucleoside diphosphate kinase 5.77542370069e-07 4.01697906924e-07 -70990567.6259 +UniRef50_X5TWB1 C4 dicarboxylate ABC transporter 1.12210619093e-07 2.50499291876e-07 55828834.1953 +UniRef50_F4A6D4 Flagellar motor switch protein FliN 9.49252277069e-07 9.13079275518e-06 3302988289.8 +UniRef50_UPI000470A84B hypothetical protein 9.41830120038e-08 1.08799955024e-06 401215931.986 +UniRef50_G8LJ33 1.14816422054e-06 5.83599546428e-06 1892534999.26 +UniRef50_M3I579 Valine tRNA ligase 6.98043904907e-05 5.01779259376e-05 -7923444583.89 +UniRef50_G8UTA5 2.85974742877e-07 1.56993437741e-07 -52071335.662 +UniRef50_A1B9B4 5.87970630977e-05 2.06454511261e-05 -15402273925.9 +UniRef50_F3V8H4 Hca operon transcriptional activator 4.62951182693e-06 1.00948486478e-05 2206423541.81 +UniRef50_Q2T0P7 Mannitol ABC transporter, permease protein 0.000136900734705 1.61526647422e-05 -48747477589.5 +UniRef50_UPI0002F85C08 hypothetical protein 1.67061966088e-07 3.49298615559e-08 -53343352.0428 +UniRef50_UPI0000306491 50S ribosomal protein L18 7.02461102125e-07 1.74799719393e-06 422095750.434 +UniRef50_Q9RZA5 Response regulator 2.51657325899e-06 0.000705064913023 2.83627386e+11 +UniRef50_R9YN56 7.41481341688e-05 6.3464210059e-06 -27372383624.4 +UniRef50_Q7UX39 Histidinol dehydrogenase 3.82207423169e-08 1.25702241528e-07 35317354.7502 +UniRef50_UPI000248C060 NH dependent NAD+ synthetase 3.73972066032e-06 4.05022317255e-07 -1346258642.44 +UniRef50_E6G860 Replication initiator protein A domain protein 9.51041850226e-08 4.61987531327e-08 -19743722.9911 +UniRef50_R5YAM0 Glycogen debranching enzyme GlgX 3.40261614046e-06 1.57570981013e-05 4987655974.12 +UniRef50_G8VHB4 FecCD family membrane transport protein 1.16030529356e-06 5.0974001078e-05 20110400270.9 +UniRef50_A0NUH2 4.39912729906e-06 1.114207344e-06 -1326162496.36 +UniRef50_A7AXT8 8.70555691176e-08 2.12106591877e-07 50484632.4364 +UniRef50_K2FH80 1.63861306694e-06 2.50578460538e-06 350087791.46 +UniRef50_W8AHC9 3.89580662207e-08 8.75479774968e-06 3518691435.59 +UniRef50_UPI0002F0BE77 hypothetical protein 3.35242926121e-07 1.25844786224e-06 372709161.71 +UniRef50_F7ZQR5 S adenosylmethionine dependent methyltransferase 4.38904700045e-06 1.50395304405e-05 4299730860.86 +UniRef50_D3DZP8 CMP N acetylneuraminic acid synthetase NeuA 4.39305989831e-05 4.47838032911e-06 -15927344803.8 +UniRef50_UPI000470F84C ribonuclease D 6.86492659097e-07 1.09504522765e-07 -232937191.078 +UniRef50_Q87F08 Anhydro N acetylmuramic acid kinase 1.08153594866e-05 4.2664543238e-06 -2643873378.33 +UniRef50_B8ZKS3 Probable fructose 6 phosphate aldolase 6.84538805133e-07 3.49222278758e-05 13822175221.5 +UniRef50_UPI00037A15A0 hypothetical protein 2.03752893926e-08 6.73532459873e-06 2710907437.87 +UniRef50_Q64RT0 Imidazole glycerol phosphate synthase subunit HisH 3.67476873568e-07 4.30887165149e-05 17247088691.8 +UniRef50_P0AER7 Glutamate aspartate transport system permease protein GltK 2.57815953794e-05 2.64858031563e-06 -9339082055.27 +UniRef50_P56109 Fructose bisphosphate aldolase 1.51898573612e-07 0.000456819197685 1.84362192589e+11 +UniRef50_F0RL15 Diaminopimelate decarboxylase 8.94698375312e-05 4.56109854004e-05 -17706356813.8 +UniRef50_Q46UT4 1.84860117103e-06 6.22839389907e-07 -494855072.827 +UniRef50_A0A011GQD3 7.68213020928e-06 7.802134474e-05 28396804065.3 +UniRef50_O32544 TraN 1.47000494953e-07 5.98631430783e-08 -35178418.2474 +UniRef50_F0KLF9 1.13132663991e-06 8.27646225431e-05 32956363309.3 +UniRef50_E3NVW5 4.2257762563e-07 9.40346986673e-08 -132636811.29 +UniRef50_Q9I0J6 NADH quinone oxidoreductase subunit G 4.48092981434e-06 5.35738089464e-06 353834056.381 +UniRef50_U2R557 Raf like protein 1.32049346164e-07 2.10131069834e-07 31522550.0161 +UniRef50_UPI00016A6D7F hypothetical protein 7.95557562271e-07 6.81470711115e-06 2430004536.15 +UniRef50_A0A034SNG1 3 methyladenine DNA glycosylase 0.000117117826086 3.44069083943e-05 -33391412449.2 +UniRef50_UPI00034D9920 hypothetical protein 8.11865254147e-09 2.45046876323e-07 95650831.377 +UniRef50_B9EAD9 0.000195819537959 6.63787893714e-05 -52256818621.6 +UniRef50_A4VU30 DNA uptake protein and related DNA binding proteins 5.06819446202e-05 2.11965937365e-05 -11903597977.7 +UniRef50_UPI0003B4988B glycine cleavage system aminomethyltransferase T 4.66187999727e-07 3.55044779566e-07 -44869881.8597 +UniRef50_Q48G15 Transcriptional regulator ArgR 1.1148163917e-05 3.1361066038e-06 -3234565856.34 +UniRef50_UPI00035C402E hypothetical protein, partial 4.39876969726e-08 6.79998137654e-07 256765219.629 +UniRef50_P45119 Pyruvate dehydrogenase E1 component 8.85961965422e-07 3.56238375328e-07 -213855913.76 +UniRef50_P26905 Dipeptide transport ATP binding protein DppD 7.63159440762e-06 3.3377514052e-05 10393943698.4 +UniRef50_B7GK36 Fatty acid desaturase 1.29128616484e-06 1.31432195755e-05 4784770957.48 +UniRef50_Q0RPF6 GTPase Obg 1.12235675575e-06 8.61007139272e-05 34306805591.8 +UniRef50_N6VD20 1.94561651828e-07 1.2963368716e-07 -26212216.0922 +UniRef50_UPI0003742A66 ABC transporter 6.71424855361e-08 9.70552736473e-08 12076159.6317 +UniRef50_P64632 4.77493015614e-07 5.3693946399e-06 1974920716.11 +UniRef50_A6LWW1 GCN5 related N acetyltransferase 1.00217519164e-05 1.18845240429e-05 752023966.253 +UniRef50_F0Y0N8 Expressed protein 1.53139824143e-06 1.02939743285e-05 3537559495.25 +UniRef50_P52043 Propionyl CoA 3.04292038607e-05 7.00024654844e-05 15976211336.0 +UniRef50_UPI00040C8409 hypothetical protein 5.18686615852e-06 4.75883016221e-07 -1901881704.81 +UniRef50_Q9RYP5 7.32034884631e-07 3.83347948403e-05 15180695631.9 +UniRef50_UPI00046FD691 precorrin 2 C20 methyltransferase 5.30532566322e-07 1.83032141903e-07 -140290185.648 +UniRef50_H0E6G7 5.41094633615e-08 8.38697284166e-07 316747731.234 +UniRef50_UPI0003B6E2B1 serine 3 dehydrogenase 1.04893032777e-07 3.41723805857e-08 -28550795.1296 +UniRef50_UPI0002F6B5AC hypothetical protein 4.57044822994e-08 6.86275181754e-08 9254310.88042 +UniRef50_Q9ZDF1 CTP synthase 4.72019483423e-08 1.09112578132e-06 421444861.76 +UniRef50_R9ZG59 Oxidoreductase 3.89874525162e-06 2.07239793125e-06 -737318825.035 +UniRef50_F5YTP1 6.10867641777e-08 5.63451295406e-07 202810725.963 +UniRef50_W5XAY0 SsrA binding protein 2.0032081053e-07 9.3060189795e-06 3676082090.3 +UniRef50_B7QX02 8.50684875116e-07 4.49369833323e-07 -162015807.061 +UniRef50_E8P9C7 3.26670751027e-06 6.88654471952e-05 26483016197.9 +UniRef50_E6S2B8 9.66261063593e-07 3.13873438461e-05 12281364428.0 +UniRef50_B2S553 NADH quinone oxidoreductase subunit K 3.6858137681e-07 3.50093034092e-07 -7463970.83273 +UniRef50_UPI00029A5DDB F0F1 ATP synthase subunit beta 2.98253993782e-07 3.6776749916e-07 28063455.1477 +UniRef50_UPI000406B82B 2 dehydro 3 deoxygluconokinase 2.2197034944e-07 1.20422575083e-07 -40996082.6392 +UniRef50_B1W1Y7 Putative 3 methyladenine DNA glycosylase 1.67943166284e-07 3.54140289705e-07 75170063.6207 +UniRef50_K2A0T9 Membrane protein involved in aromatic hydrocarbon degradation 1.11404832896e-07 2.66285225987e-07 62527115.287 +UniRef50_T0XUL7 4.22411920983e-08 2.56650663099e-05 10344248927.5 +UniRef50_Q2RZV3 ATP synthase subunit beta 1.71169545259e-07 1.27775817519e-07 -17518580.3896 +UniRef50_Q1QYW0 2.70635817945e-06 5.33282456823e-06 1060336711.52 +UniRef50_UPI000395C02F hypothetical protein, partial 2.29241707236e-07 2.19923044684e-06 795308628.657 +UniRef50_A6LU81 UPF0246 protein Cbei_1739 3.65416778094e-06 4.34289272355e-06 278046710.937 +UniRef50_Q8DSK3 6.48618937898e-05 8.55774666994e-05 8363130992.27 +UniRef50_W4Q487 Carboxynorspermidine decarboxylase 7.71769419071e-07 1.50577321798e-06 296326340.859 +UniRef50_UPI0003B66FA9 FAD dependent pyridine nucleotide disulfide oxidoreductase, partial 2.4310258778e-06 3.38030597174e-07 -844967878.731 +UniRef50_UPI000309F09E cytochrome P450 6.54463190979e-08 1.05247366787e-07 16068171.3659 +UniRef50_Q9RQP9 Poly beta 1,6 N acetyl D glucosamine synthase 0.000180961403701 1.38838769974e-05 -67451247802.2 +UniRef50_UPI0003B680A3 hypothetical protein 8.6299925328e-09 1.96896066242e-08 4464901.92542 +UniRef50_Q8DSK9 1.2510119925e-05 5.54755219991e-05 17345660062.1 +UniRef50_H3USC3 6.82171677364e-05 0.000557818322076 1.97657994089e+11 +UniRef50_UPI000378FFA7 hypothetical protein 1.79402434838e-07 1.13203208925e-07 -26725439.8569 +UniRef50_UPI0003B3F8F7 transposase, partial 2.15274246182e-05 5.6970795275e-06 -6390904573.29 +UniRef50_P71285 2.529352368e-06 1.18158112352e-05 3749057402.35 +UniRef50_M9VD34 Tat pathway signal sequence 1.9226790604e-06 5.91982717186e-05 23122859606.7 +UniRef50_I6RIQ3 Two component sensor 3.80404368056e-06 3.82267957271e-06 7523538.34907 +UniRef50_D7A0A5 Phage head tail adaptor 3.27690035765e-07 3.41322921404e-07 5503763.22678 +UniRef50_W1ETW9 Trimethylamine N oxide reductase 8.67698665337e-06 2.65975169299e-06 -2429231593.28 +UniRef50_F7ZH46 Glutamate dehydrogenase 7.31393513344e-05 2.60982313338e-05 -18991077403.7 +UniRef50_U6H7V4 1.81558407862e-07 2.55661703e-07 29916409.5969 +UniRef50_W4TZ21 Protein translocase subunit SecA 9.69655795694e-07 5.25543040194e-05 20825355502.7 +UniRef50_UPI000367E627 hypothetical protein 6.605624953e-06 3.0615834861e-06 -1430773030.47 +UniRef50_R7N4P8 1.04818739005e-07 1.08885809047e-07 1641926.08452 +UniRef50_Q98D26 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 0.000102405404887 1.39937014502e-05 -35692889611.0 +UniRef50_G0DVP7 Triacylglycerol lipase 2.01504976255e-06 7.62077026376e-05 29952484411.9 +UniRef50_Z5A0E9 9.1334271635e-08 1.57413183541e-07 26676867.6159 +UniRef50_UPI000474C581 sodium 8.72742393899e-08 1.04257740839e-07 6856447.946 +UniRef50_H8MJ08 3.01628678885e-08 4.06755274841e-08 4244089.68358 +UniRef50_Y6XNC4 3.26036085579e-05 4.31119277652e-06 -11421995437.9 +UniRef50_B0V6T3 4.13122987161e-06 5.88389988141e-05 22086197661.9 +UniRef50_UPI00035C1E4A hypothetical protein, partial 2.17035231015e-06 6.46516329668e-07 -615191284.89 +UniRef50_A6LWL8 5.02712400051e-06 1.15531923181e-05 2634653863.67 +UniRef50_UPI000150A602 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein 2.99555503941e-08 1.35958129592e-07 42794542.0202 +UniRef50_UPI00036D39A9 hypothetical protein 8.47443115323e-08 1.25187770827e-07 16327520.8143 +UniRef50_A5IRS8 Isochorismate synthase 0.000167247503395 4.49483479116e-05 -49373669847.9 +UniRef50_Q9KNG7 Probable chromosome partitioning protein ParB 5.58134755183e-06 5.91177273773e-05 21613293500.8 +UniRef50_UPI00035F0102 hypothetical protein 1.47125258368e-06 1.53987812638e-07 -531795952.725 +UniRef50_UPI0002D8E4B0 hypothetical protein 3.87150273327e-07 5.24316948847e-07 55375870.1318 +UniRef50_E3D3B9 4.11158700507e-06 1.79892574703e-05 5602585864.97 +UniRef50_Q52967 1.85010250068e-06 2.59378315652e-07 -642194873.877 +UniRef50_UPI0003B70D90 heptaprenyl diphosphate synthase subunit II 3.80107002644e-07 3.76805535388e-07 -1332842.84481 +UniRef50_Q02500 NADH ubiquinone oxidoreductase chain 6 1.11020452156e-06 2.90525313383e-07 -330914554.936 +UniRef50_Q2JTQ1 4.23570121724e-06 8.72313169363e-06 1811630750.28 +UniRef50_UPI00046A3E00 PTS beta glucoside transporter subunit IIABC 5.56264755156e-08 5.32175970636e-08 -972493.791335 +UniRef50_UPI000365A17E hypothetical protein 5.52446008369e-07 1.74399629052e-06 481043470.87 +UniRef50_E8PAF3 Glycerate kinase 3.79110464253e-06 5.40498261899e-05 20290062632.6 +UniRef50_Q67P14 NADH quinone oxidoreductase subunit I 1 6.61586523722e-08 5.90748662164e-07 211783424.396 +UniRef50_M5DVC6 UPF0234 protein TOL_2827 1.4293609142e-07 5.63016835392e-07 169591751.312 +UniRef50_UPI0003955A36 biotin synthase 9.70603932537e-08 2.17311368072e-07 48546794.1794 +UniRef50_A4WT84 Cytochrome c, monohaem 1.96551470832e-05 5.6929866878e-06 -5636695486.6 +UniRef50_H9GTR8 8.80144926453e-07 4.00046662999e-07 -193821560.425 +UniRef50_Q9X051 Ribose import ATP binding protein RbsA 2 2.54153971927e-08 3.77109179729e-08 4963852.62197 +UniRef50_Q8CRJ6 Alkanal monooxygenase alpha chain 9.16218122751e-05 5.15684252718e-05 -16170043843.6 +UniRef50_A0A013LFH7 2.40055289649e-06 3.11473372933e-05 11605429623.7 +UniRef50_G6G0I0 Proteophosphoglycan ppg4 1.58850899008e-06 3.551640284e-06 792540193.685 +UniRef50_J9V068 5.36709936758e-06 6.68641596675e-06 532624300.92 +UniRef50_C2GIT9 2.9804454217e-07 2.90417226937e-07 -3079240.75725 +UniRef50_A6LV04 9.76277779387e-06 1.6175401785e-05 2588854996.96 +UniRef50_UPI000367DAA4 hypothetical protein 2.47465777097e-08 4.03227315166e-08 6288284.43275 +UniRef50_F2EEA5 Predicted protein 7.36124602676e-07 2.61151012451e-05 10245804305.6 +UniRef50_K0X1N1 3.39326745919e-06 7.96050889419e-07 -1048528200.65 +UniRef50_Q4L574 N5 carboxyaminoimidazole ribonucleotide synthase 0.000210438628288 7.15224371664e-05 -56082171049.3 +UniRef50_UPI0004766F31 hypothetical protein, partial 2.91968702582e-08 1.30214390605e-07 40782012.5885 +UniRef50_X5E0Q9 Triose phosphate Transporter family protein 0.000141145967891 4.84991494416e-05 -37402657512.3 +UniRef50_Q3M1P1 Binding protein dependent transport systems inner membrane component 1.9416260242e-05 6.9041534662e-06 -5051291046.21 +UniRef50_P02919 Penicillin binding protein 1B 3.17002982213e-05 9.21889924818e-06 -9076016643.23 +UniRef50_R4LWQ6 5.79327844407e-07 3.83720698526e-07 -78969005.1618 +UniRef50_Q4L860 Alkaline shock protein 23 6.14141851528e-05 3.32041588497e-05 -11388733794.5 +UniRef50_Q5HK19 Sensor protein kinase WalK 0.000257024238417 6.26586213568e-05 -78467784741.5 +UniRef50_W9HAI5 3.57669145021e-08 1.52063023641e-07 46950166.3732 +UniRef50_Q49WL3 Ribonuclease J 1 0.000238306703688 0.000134859834118 -41762770681.2 +UniRef50_B4EWA1 Purine nucleoside phosphorylase DeoD type 4.90951776641e-07 0.000683740606187 2.75836269901e+11 +UniRef50_I6T7P3 Flavodoxin 0.000100471277956 5.05614657222e-05 -20149203661.1 +UniRef50_Q49UP4 UPF0753 protein SSP2379 0.000106759006095 4.12049237136e-05 -26464987496.4 +UniRef50_UPI0003B5EE25 ABC transporter permease 3.59893980663e-07 2.93798327623e-07 -26683626.2171 +UniRef50_UPI0002F44B36 hypothetical protein 3.63529986671e-07 1.62896683754e-06 510872385.353 +UniRef50_P44758 Hybrid peroxiredoxin hyPrx5 1.70848174752e-07 1.62525811508e-05 6492392947.47 +UniRef50_UPI0003613AE0 hypothetical protein 1.15174482534e-06 9.14419955105e-07 -95810962.4175 +UniRef50_B2UZY6 Penicillin binding protein 2.57891648992e-06 2.95676336253e-05 10895676296.4 +UniRef50_Q8QZT1 Acetyl CoA acetyltransferase, mitochondrial 5.21214968188e-08 4.21961817776e-07 149309076.021 +UniRef50_P44624 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 3.31388473841e-07 7.75350065714e-07 179232742.661 +UniRef50_UPI0004032490 hypothetical protein 4.7350740862e-08 2.30985112234e-07 74135449.17 +UniRef50_Q04RS9 Biotin synthase 4.52331156961e-08 1.39601880466e-07 38097828.3726 +UniRef50_D7CVJ1 Transcriptional regulator, BadM Rrf2 family 2.96269119189e-07 1.9205421953e-06 655738972.898 +UniRef50_G6ES00 Transposase 1.92783092086e-05 4.73770115279e-06 -5870221905.45 +UniRef50_S9R1C4 Enoyl [acyl carrier protein] reductase 2.55352243368e-07 1.92631404318e-07 -25321172.3957 +UniRef50_G8RE63 ABC transporter ATP binding protein 0.000105803422739 1.40154196912e-05 -37055943195.9 +UniRef50_Q5KUX3 Ribose import ATP binding protein RbsA 4.15182200609e-08 4.80633108111e-08 2642333.45315 +UniRef50_UPI00037AE633 hypothetical protein 1.5059497486e-07 1.53262620828e-08 -54609639.2818 +UniRef50_Z9VYD6 3.13582981848e-07 4.90501219884e-07 71424063.7261 +UniRef50_UPI00016C5052 large conductance mechanosensitive channel protein MscL 3.62649120809e-06 8.02820309689e-07 -1139950592.02 +UniRef50_K9D9U6 Diguanylate cyclase domain containing protein 5.26048406939e-07 3.32500823929e-06 1129974431.42 +UniRef50_I6U2X8 5.25914523442e-05 1.14225995907e-05 -16620371055.2 +UniRef50_A6VYP9 Oxidoreductase FAD binding domain protein 5.03272830884e-06 1.95790080794e-06 -1241345594.49 +UniRef50_Q2WGJ0 ATP synthase subunit alpha, chloroplastic 3.37791407038e-08 5.92420757458e-08 10279699.3418 +UniRef50_UPI0003625BDB hypothetical protein 5.0359112619e-07 8.78177491299e-07 151225112.286 +UniRef50_Q6F8I3 UPF0176 protein ACIAD2917 4.45131580353e-08 1.22507488224e-07 31487268.1952 +UniRef50_Q02CT4 NADH quinone oxidoreductase subunit K 1 1.61533904911e-07 1.22797460772e-05 4892270961.14 +UniRef50_UPI0004714BA7 hypothetical protein 1.19347282906e-07 6.85173669344e-08 -20520660.8309 +UniRef50_P42237 Probable glucarate transporter 4.41753169118e-05 8.13680608618e-05 15015167138.9 +UniRef50_M9S4A5 6.63274622552e-06 5.28303811067e-06 -544893728.746 +UniRef50_B9JZN3 1.12571250333e-08 5.38093069683e-07 212690135.859 +UniRef50_H0HWX8 2.23946280706e-06 1.81371008949e-06 -171881596.656 +UniRef50_UPI0003289C1D 7.88293713464e-08 3.30623185799e-08 -18476720.8267 +UniRef50_P75919 Cardiolipin synthase C 4.00665440205e-05 5.75579195728e-06 -13851671648.2 +UniRef50_W1K3X1 LysR family transcriptional regulator 6.70635132853e-07 2.97591070676e-07 -150602465.666 +UniRef50_B6I424 Glutamate ammonia ligase adenylyltransferase 3.93291897783e-06 2.04501509084e-06 -762169966.364 +UniRef50_B7GXG8 Short chain dehydrogenase family protein 2.34949785595e-06 5.84000340349e-05 22628289272.8 +UniRef50_UPI0003B70587 hypothetical protein 2.55713156476e-07 1.99118279678e-07 -22848046.2606 +UniRef50_UPI0003FE3085 chemotaxis protein CheA 1.74072366045e-07 1.67949492536e-08 -63494823.1695 +UniRef50_D5AKE9 4.85780251964e-08 2.64231847178e-08 -8944180.97168 +UniRef50_Q02GV4 1.32980279419e-05 4.64996096738e-06 -3491330761.33 +UniRef50_A5ULP3 Hydroxyethylthiazole kinase 1.71930475128e-05 2.98299702217e-06 -5736771759.98 +UniRef50_Q49XX5 0.000160252370759 2.90269639789e-05 -52977307033.9 +UniRef50_M9R1S6 4.9734300396e-07 8.14292138594e-07 127956255.055 +UniRef50_U8A0B9 8.97008121123e-08 1.92801075814e-07 41622841.639 +UniRef50_Q9HW54 2.17154172112e-06 1.73375756472e-06 -176738836.154 +UniRef50_B1MCA4 Riboflavin biosynthesis protein RibBA 7.40731323682e-08 1.70311565424e-07 38852636.403 +UniRef50_B0VME8 Thiol 5.56563245085e-06 6.30040511786e-05 23188594489.0 +UniRef50_N9N018 8.37672113294e-07 1.73468886804e-07 -268146993.224 +UniRef50_Q9RVZ5 Zinc metalloprotease, putative 8.52754492897e-07 0.000114766869112 45988525955.1 +UniRef50_UPI00045E7E19 uroporphyrin III methyltransferase 2.98178600166e-07 1.12371780888e-07 -75012493.0486 +UniRef50_W2C810 9.05293113847e-07 1.64159061812e-07 -299204911.544 +UniRef50_A4WN46 Dihydroxy acid dehydratase 2.10199807601e-07 1.03939223345e-07 -42898701.8281 +UniRef50_Q2YWD0 HTH type transcriptional regulator SAB2452 0.000144201868865 2.61994393215e-05 -47639028859.6 +UniRef50_Q9RME4 Phosphopantetheine adenylyltransferase 6.16851469722e-07 1.27911579097e-07 -197391033.812 +UniRef50_Q46482 Phosphoribosylamine glycine ligase 4.87883062122e-06 2.00895717825e-06 -1158603126.23 +UniRef50_UPI000376F60F hypothetical protein 1.55247787925e-07 8.63297731949e-08 -27823048.2657 +UniRef50_UPI0004666ABA hypothetical protein 6.01243905262e-08 1.62607307604e-07 41373611.2312 +UniRef50_A7X198 3.70043574149e-06 1.45798313737e-07 -1435050749.89 +UniRef50_UPI00036FAB93 MULTISPECIES 1.90077304021e-05 5.98005961359e-06 -5259430564.82 +UniRef50_M1V095 A G specific adenine glycosylase 1.48227482538e-06 6.47141028911e-05 25527464931.9 +UniRef50_A4XQ45 Urease subunit beta 8.60701513733e-07 3.71996505491e-07 -197296208.912 +UniRef50_UPI00030D86CE flagellar biosynthetic protein FlhB 9.91249402959e-07 2.36404942187e-07 -304739971.797 +UniRef50_P76545 1.33622411715e-05 7.77149224201e-06 -2257053949.04 +UniRef50_R1EB69 2.43300382662e-08 4.23658433687e-07 161213773.542 +UniRef50_UPI00028A03C4 beta N acetylhexosaminidase 8.09530786042e-08 1.24279897522e-07 17491568.477 +UniRef50_D3F063 BolA family protein 3.78345731424e-07 1.11795426022e-06 298589039.092 +UniRef50_D7CQX7 1.20859975083e-06 0.000416186949894 1.6753185231e+11 +UniRef50_W6EXE3 Raffinose transport system permease protein 5.25204600731e-06 1.67692972345e-05 4649655652.99 +UniRef50_E3I496 Polyhydroxyalkonate synthesis repressor, PhaR 3.16480465812e-07 1.10626507001e-07 -83105769.2841 +UniRef50_UPI000225AC36 RNAse E 1.32467800821e-07 7.65325501882e-08 -22581747.0832 +UniRef50_A5UKL3 3.98188714036e-05 1.71675281453e-05 -9144625236.62 +UniRef50_U5UJL0 0.000220308311157 6.38544889348e-05 -63162327935.3 +UniRef50_UPI00047BF1EC excinuclease ABC subunit A 7.87508068484e-08 2.00602043417e-07 49192839.4857 +UniRef50_V4ZVN5 4.38018958171e-07 8.8669105693e-07 181134432.095 +UniRef50_Q9RW93 Shikimate kinase 5.07828684551e-06 0.00020336275748 80049874019.0 +UniRef50_UPI0003B51C56 homoserine dehydrogenase 4.51647330146e-08 3.64723241846e-07 129009691.439 +UniRef50_Q5HRU9 4.13223016883e-05 2.16607353705e-05 -7937615597.05 +UniRef50_Q27828 Bifunctional dihydrofolate reductase thymidylate synthase 2.28788741942e-07 8.83341961194e-07 264251166.883 +UniRef50_G7M1X8 1.6604955521e-06 5.9236275891e-06 1721078717.85 +UniRef50_C5KZL8 9.69760616004e-08 5.36348956922e-08 -17497360.5331 +UniRef50_UPI0002555E19 hydrolases of HD superfamily protein 1.86084292886e-07 1.02252056623e-06 337679587.776 +UniRef50_D7GDS1 5.55127442285e-06 2.38034160775e-05 7368613564.93 +UniRef50_E4BHA0 4 phosphoerythronate dehydrogenase 2.38412203486e-06 6.07172090438e-05 23549783053.0 +UniRef50_B4F2G7 Prolipoprotein diacylglyceryl transferase 1.28756849185e-05 2.33065040062e-06 -4257159837.0 +UniRef50_A9KSS0 UvrABC system protein C 3.72256634095e-06 1.59225960061e-05 4925301687.0 +UniRef50_Q2FW88 5.00897000195e-06 5.53816090173e-06 213640860.144 +UniRef50_P17855 Staphylocoagulase 0.000132376312781 2.65877636947e-05 -42708135437.5 +UniRef50_Q6A6L8 Conserved membrane spanning protein 1.17277378725e-06 5.60292978463e-05 22146251927.9 +UniRef50_B6ASY9 4.31546223661e-07 3.52506632775e-07 -31909252.7655 +UniRef50_K7KA74 2.13245459195e-07 2.07889820164e-07 -2162137.1979 +UniRef50_B0S1E5 Translation initiation factor IF 2 5.00509660907e-06 1.14409778029e-05 2598244215.09 +UniRef50_I6T4B3 6.33706676712e-07 6.36533679428e-07 1141295.68767 +UniRef50_G8QKA4 6.87620772728e-07 2.06995529004e-07 -194034308.826 +UniRef50_G2A420 Prepilin type N terminal cleavage methylation domain protein 5.71346966362e-07 7.39380445127e-07 67837177.3801 +UniRef50_B8FRJ8 Proton translocating NADH quinone oxidoreductase, chain M 1.538141831e-06 7.76576743153e-06 2514168876.49 +UniRef50_A9E7Y1 8.96849751893e-06 1.1975785162e-06 -3137215361.3 +UniRef50_C4JB45 6.58096548847e-07 6.11950423154e-07 -18629757.2189 +UniRef50_P0A4I5 Sensor protein CiaH 3.54618237767e-05 2.97614907758e-05 -2301294383.42 +UniRef50_D8JKU2 6.95619257029e-06 9.69717804176e-05 36340397429.4 +UniRef50_UPI000307CD30 hypothetical protein 5.05932232876e-07 9.04697160414e-07 160986294.643 +UniRef50_O33832 Fructose 1,6 bisphosphatase inositol 1 monophosphatase 7.21098269097e-08 2.57826292291e-07 74976016.0716 +UniRef50_M9VC77 Methylmalonyl CoA mutase, small subunit 7.64657641136e-07 7.69249042903e-05 30746826163.6 +UniRef50_I4KUA6 Iron ABC transporter, periplasmic iron binding protein 5.75712232199e-06 2.49563412836e-06 -1316702806.73 +UniRef50_A3SN26 4.22036483988e-08 7.77131779435e-08 14335632.8281 +UniRef50_A6LX02 NADH 1.38189354568e-06 1.60228524652e-05 5910734780.57 +UniRef50_UPI0000165EF1 hypothetical protein DR_A0286, partial 9.39185305452e-07 0.000352218831095 1.41815903691e+11 +UniRef50_E2PX18 Sugar kinase 1.19457591412e-06 5.21751341722e-05 20581476970.6 +UniRef50_UPI0003673178 hypothetical protein 1.94303615504e-07 3.46953521549e-08 -64435814.5276 +UniRef50_UPI0001FFDF12 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 9.08334799347e-07 1.57589244687e-07 -303085193.1 +UniRef50_E3HCS4 TRAP transporter solute receptor, TAXI family 1.40683717345e-07 2.56442763708e-07 46733347.54 +UniRef50_E2SCH3 Ribonucleoside diphosphate reductase subunit beta 5.70026814461e-06 4.37711343014e-05 15369675849.6 +UniRef50_UPI0003EA9CC0 PREDICTED 2.65273054864e-07 7.05734689415e-07 177819766.94 +UniRef50_J1K020 2.06627742094e-07 3.74426508071e-07 67742420.9473 +UniRef50_UPI00037CD073 hypothetical protein, partial 1.18738267055e-07 3.46023470964e-07 91757825.9212 +UniRef50_A5UJU7 Serine acetyltransferase, CysE 2.61350542105e-05 5.57201330567e-06 -8301551950.16 +UniRef50_UPI000395575D signal peptide protein 2.20514565551e-07 9.65755770203e-08 -50035690.5724 +UniRef50_Q16B11 Membrane protein, putative 7.43414003025e-05 2.04927068313e-07 -29929804001.5 +UniRef50_UPI00036A093B hypothetical protein 4.49485524703e-06 2.75313896873e-06 -703152234.812 +UniRef50_B9KVZ4 DoxX family protein 1.44484181353e-05 2.04350017516e-06 -5008017605.95 +UniRef50_L6P508 DNA topoisomerase IV subunit A 3.53284008632e-05 8.99602066631e-06 -10630705020.1 +UniRef50_A6LYN3 Drug resistance transporter, EmrB QacA subfamily 1.09522047056e-06 1.58495094711e-05 5956487524.99 +UniRef50_P12045 N5 carboxyaminoimidazole ribonucleotide synthase 4.01472980422e-08 8.64585509472e-06 3474229841.43 +UniRef50_W0YU10 Phosphatidylethanolamine 1.20031983903e-05 1.51444464203e-06 -4234438599.67 +UniRef50_Q9JSN0 Pimeloyl [acyl carrier protein] methyl ester esterase 6.92993024142e-06 4.80896423553e-05 16616680866.8 +UniRef50_J1AY66 2.27131568354e-06 0.000138707980335 55081155785.8 +UniRef50_A4WX23 2.609505722e-06 4.03408097292e-06 575118510.301 +UniRef50_UPI00035E0126 hypothetical protein 2.30383464608e-07 1.48941801892e-07 -32878998.64 +UniRef50_I1ZJ75 N acetylneuraminate lyase 3.79469604023e-06 3.00509355431e-05 10599966087.6 +UniRef50_UPI000374FB7B hypothetical protein 2.716693052e-08 4.24508526211e-08 6170306.90703 +UniRef50_A0A024JM61 Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2 3 protein complex that nucleates branched actin filaments 9.10167578266e-08 1.68957908953e-07 31465799.1552 +UniRef50_C7J807 Os10g0561000 protein 5.8700968243e-07 3.14223304134e-06 1031575026.11 +UniRef50_UPI0004673F99 transposase, partial 1.55122375566e-06 3.28414597034e-07 -493663062.895 +UniRef50_Q9RS38 Guanylate kinase 6.65668358082e-06 0.000387675489486 1.5382196757e+11 +UniRef50_UPI00046A1E34 hypothetical protein 8.0416508865e-07 2.60671293239e-06 727710684.267 +UniRef50_Q9RTJ0 3.13700267745e-06 0.00100472575923 4.04353671895e+11 +UniRef50_N6YR38 Proline glycine betaine ABC transporter periplasmic protein 1.959397886e-06 5.45655276388e-08 -769004197.992 +UniRef50_K9VMS4 UDP galactopyranose mutase 2.38664680596e-06 0.000547696078905 2.20148109438e+11 +UniRef50_Q5LX45 Membrane protein 4.16133359018e-05 9.78281425483e-06 -12850372193.3 +UniRef50_Q5HXL7 1.37535638915e-05 8.48947598611e-06 -2125176885.03 +UniRef50_Q83L33 UPF0061 protein YdiU 3.9166675244e-05 3.28726023827e-06 -14484960127.7 +UniRef50_UPI00042B6AB1 GMP synthase 3.0600809089e-08 3.81968825197e-08 3066628.05828 +UniRef50_I0ZPZ0 Hydrogenase 1 large subunit 1.41060494847e-05 7.60707140905e-06 -2623717200.57 +UniRef50_B2TCX7 Periplasmic binding protein LacI transcriptional regulator 9.93134968576e-08 9.35612586909e-07 337624205.197 +UniRef50_P42765 3 ketoacyl CoA thiolase, mitochondrial 7.97204612988e-08 1.64645272475e-07 34285188.4165 +UniRef50_A4VJJ6 RNA binding S1 6.82174827427e-06 2.11191922662e-06 -1901415782.64 +UniRef50_U6HHG3 Thymidylate synthase 1.22132270647e-07 5.65571551578e-07 179021879.324 +UniRef50_K8WD83 3.05824656255e-07 1.45608493609e-07 -64681230.9336 +UniRef50_I0QGZ0 Putative polysaccharide biosynthesis protein 1.12857081252e-07 6.64808613997e-08 -18722649.0546 +UniRef50_P52052 3.47043158911e-05 1.82670126934e-06 -13273096476.5 +UniRef50_Q6ADC9 50S ribosomal protein L20 0.00033961800351 0.000172376889532 -67517289992.2 +UniRef50_P21332 Oligo 1,6 glucosidase 2.7498218324e-07 9.00706111549e-06 3525247419.61 +UniRef50_A0A024HC94 LysR family transcriptional regulator 1.94246649494e-06 6.00667478795e-06 1640770761.33 +UniRef50_Q8CSM8 Aspartokinase 0.000153412784405 4.91240024303e-05 -42102661050.6 +UniRef50_C7LDR5 Glutamine amidotransferase, putative 5.11390510548e-05 9.72852655583e-06 -16717936904.5 +UniRef50_UPI0003467BCD hypothetical protein 7.21337449315e-07 3.83870064577e-07 -136239724.409 +UniRef50_Q30SK1 Polysaccharide deacetylase 1.85004913382e-06 8.74764169265e-05 34568415431.6 +UniRef50_UPI0003C7F3E1 protein tyrosine kinase 1.87733561182e-07 3.15141895913e-07 51436308.207 +UniRef50_R5PQB3 AmiC protein 1.40974905583e-07 3.60753415439e-07 88727281.4145 +UniRef50_Q4KC87 Fe ions import ATP binding protein FbpC 1.92586739354e-07 1.65824878376e-07 -10804091.6818 +UniRef50_Q49Y71 D tyrosyl tRNA deacylase 8.96476724282e-08 4.17489335343e-07 132353702.388 +UniRef50_UPI00029CB5BC L carnitine dehydratase bile acid inducible protein F, partial 9.5283238065e-08 1.65939169361e-06 631449777.275 +UniRef50_Q5HR28 Response regulator SaeR 0.000145538576158 2.54241007237e-05 -48491687703.1 +UniRef50_UPI000411F9DF hypothetical protein 1.90760319639e-07 1.10758449319e-06 370133169.56 +UniRef50_M1WNQ8 3.1151163683e-06 3.61085846407e-06 200137167.502 +UniRef50_K7YE63 1.79755232787e-06 1.32069569557e-05 4606116657.38 +UniRef50_Q8EDH1 3 oxoacyl [acyl carrier protein] synthase 3 2.7716453189e-07 1.80745131138e-07 -38925695.2827 +UniRef50_UPI000411E306 indole 3 glycerol phosphate synthase 2.29060948712e-07 1.16354238464e-07 -45501081.994 +UniRef50_UPI000464983B histidine kinase 1.05025276587e-06 7.27094247687e-07 -130463059.391 +UniRef50_P77599 Probable fimbrial chaperone YfcS 2.59997291813e-05 5.20391958389e-06 -8395523527.75 +UniRef50_Q9Z6P2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.8338745651e-07 3.44847885327e-07 -96301352.0963 +UniRef50_Q6LWM9 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 5.55563764806e-08 1.1446013559e-07 23780170.3829 +UniRef50_M2XTQ6 2.94835901563e-08 9.9100522092e-08 28105209.7183 +UniRef50_D2ZNU9 2.70032530065e-05 1.13220462059e-06 -10444459706.9 +UniRef50_O33925 Methionine tRNA ligase 8.59994846826e-08 1.62269579521e-07 30791173.2256 +UniRef50_A3DIZ4 DNA directed RNA polymerase subunit beta 1.08622261922e-06 1.77434470421e-05 6724725906.65 +UniRef50_D2ZNU3 2.30319135532e-05 5.09483617324e-06 -7241418251.0 +UniRef50_Q6GJ92 Protein VraC 5.38301300108e-05 2.52408789129e-05 -11541831497.8 +UniRef50_D2ZNU0 4.08801440118e-05 1.51644061144e-05 -10381758956.8 +UniRef50_F3U4T8 Aldehyde dehydrogenase EutE 2.11160489009e-06 8.86505932093e-05 34936851537.3 +UniRef50_G8AVK1 5.74268745739e-07 6.18563059841e-07 17882158.1553 +UniRef50_X6CFN2 Transposase 3.54010595625e-07 3.5415083322e-07 56615.6380103 +UniRef50_W4HGN2 6.58086108151e-07 4.14145599604e-07 -98481776.7871 +UniRef50_Q8DWZ2 Pseudouridine synthase 6.01695535068e-05 0.000108420113307 19479343092.3 +UniRef50_UPI0002F4B1FA hypothetical protein 3.0170871773e-07 4.57207759576e-07 62776871.3811 +UniRef50_L0GPC8 Acyl CoA dehydrogenase 7.04723695002e-06 3.32704819631e-06 -1501885851.72 +UniRef50_E4R6V3 ATP dependent helicase HrpB 5.22833779594e-07 9.07735774225e-07 155389658.511 +UniRef50_B9KQM1 Major facilitator superfamily MFS_1 6.2687744687e-06 4.3385957659e-06 -779236828.277 +UniRef50_Q72M00 Ketol acid reductoisomerase 1.93989710217e-06 5.11738440251e-05 19876348541.2 +UniRef50_UPI000369FF3F hypothetical protein 1.06934374895e-07 3.47331607848e-08 -29148516.1448 +UniRef50_R7U816 9.01592520477e-08 2.65831131546e-07 70920893.4897 +UniRef50_UPI00035CB92A hypothetical protein 7.77805858294e-08 1.63246722254e-07 34503728.062 +UniRef50_UPI000464C182 hypothetical protein 2.58302114497e-08 3.39968459782e-07 126821465.761 +UniRef50_UPI000379A4AF hypothetical protein 1.95337917903e-07 6.11270902781e-07 167917250.067 +UniRef50_Q3J4T6 ThiF family protein 0.000146518265403 2.92045267691e-05 -47360995888.0 +UniRef50_W7X462 3.66599653055e-08 2.58895280269e-06 1030391938.61 +UniRef50_UPI00035D977C hypothetical protein 9.15942036928e-08 2.2224132396e-07 52743845.6722 +UniRef50_I4VTW8 1.3296511865e-06 6.65102560551e-07 -268286435.224 +UniRef50_G4P1D7 6.71920246833e-08 1.43375068931e-05 5761101228.83 +UniRef50_J8V4X4 1.33075796983e-06 9.50465709992e-08 -498871855.592 +UniRef50_Q9K3C5 B type flagellar hook associated protein 2 1.18983305001e-05 2.6679866902e-06 -3726403065.11 +UniRef50_Q3JGP3 V4R domain protein 2.50543797907e-06 8.35801995839e-06 2362759164.31 +UniRef50_S5S8C8 Aldo keto reductase protein 4.29067220178e-05 6.68854683766e-06 -14621721767.2 +UniRef50_G0D373 4.16234263799e-07 1.07187798473e-07 -124765850.479 +UniRef50_P31449 1.32715307768e-05 1.55111395961e-05 904157563.442 +UniRef50_UPI0004715D35 hypothetical protein, partial 4.01598140582e-07 1.67549333427e-06 514287122.145 +UniRef50_W4SJE9 1.13276190287e-06 3.91412388612e-07 -299291896.288 +UniRef50_Q9KPW2 UDP 3 O acylglucosamine N acyltransferase 3.24577631464e-05 6.46210240034e-06 -10494767245.8 +UniRef50_UPI0003ACD77D 1.64466244913e-07 4.44052004578e-08 -48470116.9612 +UniRef50_J9YSZ8 Transcriptional regulator RofA 2.47944520113e-06 2.49037400741e-06 4412093.20677 +UniRef50_Q7VJB6 Phosphoglycerate kinase 5.24292543885e-08 5.36357131581e-05 21632229252.8 +UniRef50_B0UVX7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.0217650896e-07 5.07997876713e-07 2350157.5981 +UniRef50_UPI00037525E2 hypothetical protein 1.1260505332e-06 4.39055975949e-07 -277348133.133 +UniRef50_A6V9P7 Conserved exported protein 4.3849392214e-07 1.65787259339e-07 -110095026.26 +UniRef50_B7V5G9 Diaminopimelate epimerase 4.33347813722e-05 0.00014378396602 40552568492.5 +UniRef50_Q4JUY7 Ribonuclease 3 1.7361772528e-07 6.14774878368e-07 178100556.309 +UniRef50_Q5HLV2 Staphylococcal secretory antigen SsaA 0.00037140013015 9.66400716106e-05 -1.10924007317e+11 +UniRef50_B3PJA9 tRNA pseudouridine synthase D 5.38255502605e-08 7.38968624151e-08 8103035.01951 +UniRef50_UPI00016A3B06 nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial 5.63671260145e-08 2.51609597342e-07 78821781.5693 +UniRef50_A6GVN8 Uroporphyrinogen decarboxylase 9.83420976293e-08 1.01164115729e-07 1139283.33691 +UniRef50_A5UM22 Possible glycosyltransferase 4.3846249373e-05 3.0923215204e-06 -16452860781.0 +UniRef50_Q31YX9 Elongation factor P like protein 3.90680773216e-05 1.07780422863e-05 -11421034301.5 +UniRef50_U5MSB5 Stage V sporulation protein D 3.99610756021e-06 1.50644936997e-05 4468443308.89 +UniRef50_M4MR97 Ribonuclease J 1.71159783699e-06 4.62956254521e-07 -504091929.398 +UniRef50_UPI000363EEDE hypothetical protein 1.41220999367e-06 1.02523335063e-06 -156227219.533 +UniRef50_A6M3E8 4.65858794105e-06 2.59423366875e-05 8592510549.89 +UniRef50_P50360 6.78975678529e-08 6.87673967639e-08 351160.605372 +UniRef50_P50361 4.14994839979e-06 7.28571198646e-07 -1381251961.12 +UniRef50_T1XMS1 High affinity iron permease 0.000128122881096 4.4895675244e-05 -33599844315.1 +UniRef50_D8HC44 1.83352507788e-05 1.72029148656e-06 -6707662954.74 +UniRef50_D3E0N8 Dolichol kinase 2.25569794777e-05 7.73755559468e-06 -5982783276.35 +UniRef50_UPI0002558256 3 hydroxyacyl CoA dehydrogenase NAD binding protein, partial 5.09684253994e-08 8.52092167556e-08 13823427.6523 +UniRef50_Q8XCJ6 Glucose 6 phosphate 1 dehydrogenase 3.02398627218e-05 2.064214654e-05 -3874715799.81 +UniRef50_O53553 1.2618632476e-08 5.79145262757e-08 18286508.1701 +UniRef50_D3R582 Glycosyltransferase 4.53766970837e-06 0.000108386291823 41924963113.7 +UniRef50_UPI0003DE98F5 7.656692621e-08 6.27041524768e-06 2500532574.44 +UniRef50_Q9T4F6 Light independent protochlorophyllide reductase subunit N 5.96604285672e-07 2.72096305511e-07 -131007853.752 +UniRef50_UPI000262CF64 shikimate kinase 1.67483645531e-07 1.65260915312e-07 -897343.465377 +UniRef50_O26249 Probable cobalt precorrin 6B C methyltransferase (decarboxylating) 2.7494184603e-05 3.41406595601e-06 -9721439394.08 +UniRef50_Q9A1B6 Non canonical purine NTP pyrophosphatase 6.19033570964e-05 9.20366996397e-05 12165200162.4 +UniRef50_Q6AIT3 1.44839375134e-07 2.6804462307e-06 1023655602.99 +UniRef50_Q1IZX0 NADH quinone oxidoreductase subunit D 1.36418783139e-07 1.12195006889e-06 397871073.887 +UniRef50_M1LR90 Pleiotropic regulatory protein DegT 5.26039296542e-06 1.54851677335e-05 4127867045.98 +UniRef50_Q881N5 TonB dependent receptor, putative 1.29327083135e-05 4.53655687352e-06 -3389629368.68 +UniRef50_R6GWD9 GTP binding protein TypA 1.70688504294e-07 2.05476873716e-07 14044491.637 +UniRef50_UPI000361993A molybdenum metabolism regulator 4.4226573398e-07 3.09072792455e-07 -53771624.9548 +UniRef50_C6S8I9 8.21812747825e-07 4.9085116792e-05 19484488100.0 +UniRef50_UPI000365A3DC hypothetical protein 1.15712334465e-06 2.63589003369e-07 -360730778.475 +UniRef50_I3ZMM6 Endopolygalacturonase 7.1040862917e-08 1.03087780987e-07 12937734.0848 +UniRef50_A4BHS1 Phenol hydroxylase, putative 5.4750490027e-07 7.51635541821e-07 82410044.9588 +UniRef50_UPI000362A7CA hypothetical protein, partial 1.10319819596e-07 8.24373726249e-08 -11256485.9983 +UniRef50_W0NLZ2 Replication protein RepA 1.40659120767e-06 3.39387252408e-07 -430843332.804 +UniRef50_U7J5E9 1.23230321256e-07 1.22181263849e-07 -423517.348588 +UniRef50_M0YA73 5.95056610429e-06 3.24523851863e-06 -1092173944.43 +UniRef50_I6T572 Integrase 7.70168863285e-05 2.24185936166e-05 -22042000764.2 +UniRef50_Q5LNW6 Bacterial type II III secretion system protein 0.000112812311519 2.77581706003e-05 -34337400420.6 +UniRef50_F0YCD9 3.38615323502e-06 6.66692651771e-06 1324488433.84 +UniRef50_E2LMJ8 1.67675642795e-07 3.7307595473e-07 82922626.4734 +UniRef50_UPI00047D6BC3 hypothetical protein 1.81867098803e-07 1.91875867654e-07 4040662.80655 +UniRef50_Q8XE94 Pyrimidine specific ribonucleoside hydrolase RihB 3.65556008667e-05 5.08312631116e-06 -12705824188.7 +UniRef50_UPI0003B5EAE5 branched chain amino acid ABC transporter permease 4.80785666029e-07 1.22299618811e-07 -144725216.38 +UniRef50_Q9KF57 Phosphoribosylformylglycinamidine synthase 2 1.89818054931e-07 3.84261638498e-05 15436482010.1 +UniRef50_Q9K0Y9 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 4.51398238643e-06 2.88592028218e-05 9828464239.22 +UniRef50_K7RRN0 Integral membrane protein 1.2832687334e-05 0.000208896770386 79153476304.9 +UniRef50_J5III2 6.51031440774e-06 1.84259116595e-05 4810472831.37 +UniRef50_B9KQG4 Flagellar hook associated protein FlgK 1.3213104412e-05 9.18990110348e-06 -1624216545.91 +UniRef50_F8JV08 1.73433224809e-06 2.46948653296e-07 -600475009.466 +UniRef50_Q9KXU5 60 kDa chaperonin 2 2.32197681639e-05 2.87579608967e-05 2235836367.5 +UniRef50_UPI00045DE6E8 PREDICTED 1.30365761628e-06 3.44360207441e-06 863921837.819 +UniRef50_M9RHS9 1.92168524892e-06 3.63327048997e-06 690987965.325 +UniRef50_E8U7S3 9.88097606963e-06 0.000286343634284 1.11611367699e+11 +UniRef50_G0AF05 Methionine ABC transporter substrate binding protein 4.34134383867e-07 1.03656729646e-07 -133417884.426 +UniRef50_UPI00037AFDDF hypothetical protein 4.67174722923e-08 7.05812295456e-08 9634091.64439 +UniRef50_UPI000319862A hypothetical protein 6.63921895969e-06 6.11436615497e-07 -2433489701.56 +UniRef50_B1VYS6 9.14009658218e-07 4.2858431686e-07 -195972167.145 +UniRef50_P77552 2.64027280994e-05 1.46559158908e-06 -10067428022.3 +UniRef50_C6STR4 1.56939618896e-05 6.37374183882e-06 -3762687206.46 +UniRef50_K0TBE2 1.05296157079e-06 8.22609206691e-07 -92996076.1281 +UniRef50_UPI0004786C6A hypothetical protein 1.16300484585e-07 1.19978472902e-06 437415885.327 +UniRef50_UPI0003AE56AA PREDICTED 3.43240621507e-08 1.55449651556e-06 613712274.055 +UniRef50_Q0BTM6 3 oxoacyl [acyl carrier protein] reductase 1.73689872173e-06 2.29818447619e-06 226597946.826 +UniRef50_Q797S1 Putative PTS system EIIBC component YbbF 1.2339034572e-07 1.3736655603e-07 5642367.60953 +UniRef50_P19994 Methionine aminopeptidase 1 1.19577634368e-07 8.51264625898e-06 3388384798.29 +UniRef50_UPI000369A8C8 MULTISPECIES 3.82774819717e-08 1.02967645974e-07 26116213.0453 +UniRef50_A5UMG5 Adhesin like protein 3.48806394214e-05 1.14594488543e-05 -9455422042.27 +UniRef50_UPI00036FF434 hypothetical protein 5.12717286721e-08 8.1166132018e-09 -17422249.6882 +UniRef50_A9KCZ5 Uroporphyrinogen decarboxylase 5.18063270852e-08 9.1211091838e-08 15908187.0815 +UniRef50_A0A023S0A3 LysR family transcriptional regulator 4.92640676188e-06 8.55461688721e-05 32547187279.6 +UniRef50_UPI000370F363 hypothetical protein 3.06108513412e-07 1.52506782587e-07 -62010903.6393 +UniRef50_Q3JUP4 7.42262273789e-07 2.23996547545e-06 604641161.395 +UniRef50_E6K2Y0 Carbohydrate kinase, FGGY family protein 4.00509962594e-06 4.04560303575e-05 14715688039.6 +UniRef50_UPI00035EBFF4 hypothetical protein 4.51553951965e-07 5.24776383849e-06 1936288787.31 +UniRef50_UPI0001C39734 geranylgeranyl pyrophosphate synthase 5.12486443546e-06 1.93466065931e-06 -1287924412.63 +UniRef50_UPI0003ABA403 PREDICTED 3.884304285e-07 4.77654846108e-07 36020992.2951 +UniRef50_UPI000359FA90 PREDICTED 2.51507806092e-07 2.53861897644e-07 950375.647494 +UniRef50_UPI00036A2ED5 50S ribosomal protein L22 2.00311241373e-07 2.67576776929e-06 999372177.589 +UniRef50_UPI0003AB3C4C hypothetical protein 1.15419330705e-07 3.69382909768e-07 102528213.351 +UniRef50_Q3J1M2 8.4781763127e-05 3.79929130798e-05 -18889232927.8 +UniRef50_Q3J1M3 0.000111713945957 4.43200657402e-05 -27207736459.4 +UniRef50_X2GZX1 rRNA methyltransferase 7.78223829134e-05 1.26900973086e-05 -26294702961.7 +UniRef50_A0A017HLL9 6.21987396137e-06 2.54478279452e-06 -1483679402.5 +UniRef50_G4ZKG2 3.9310066092e-08 3.96287593136e-07 144116208.275 +UniRef50_UPI0003B5AE6D magnesium transporter MgtC 3.68884408859e-07 2.99766504351e-07 -27903746.2219 +UniRef50_Q5XD38 PTS system, N acetylgalactosamine specific IID component 1.45186918795e-06 3.50361006186e-05 13558366353.4 +UniRef50_UPI0003664D62 hypothetical protein 3.75627410691e-07 1.03087919726e-07 -110027536.938 +UniRef50_A3MWA6 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.4761761234e-07 3.46627179166e-07 -81142304.3023 +UniRef50_S9QMF6 Flagellar protein FlaF 7.88625487296e-07 1.26739334149e-06 193284457.88 +UniRef50_UPI000190F922 leucyl phenylalanyl tRNA protein transferase 1.23126621967e-07 1.56043956143e-07 13289131.748 +UniRef50_UPI000372C446 hypothetical protein 2.77812997365e-07 9.79024586966e-07 283087723.556 +UniRef50_G8R9S1 ATP dependent RNA helicase YqfR 6.83359776063e-05 9.62295054923e-06 -23703169512.8 +UniRef50_Q8EA37 Ribosomal protein S12 methylthiotransferase RimO 4.72247166933e-05 1.77545839701e-05 -11897454219.6 +UniRef50_Q9X0N9 Glucose 6 phosphate 1 dehydrogenase 3.72852330483e-07 6.08325691857e-08 -125966206.549 +UniRef50_G1LNR6 1.75215747882e-06 3.13728366028e-06 559192436.865 +UniRef50_Q5M1U0 Heat inducible transcription repressor HrcA 4.80432146388e-05 5.47582336896e-05 2710935593.36 +UniRef50_UPI000369E51E hypothetical protein, partial 1.01992099789e-05 1.10743764448e-05 353315441.784 +UniRef50_UPI000219386D riboflavin synthase subunit alpha 1.08504547571e-07 2.43771243706e-07 54608825.1387 +UniRef50_UPI0003B6FF8D fructose 1,6 bisphosphatase 1.82252392599e-07 8.78650333153e-08 -38105335.206 +UniRef50_Q8DYP7 DNA primase 5.7853992887e-05 5.18434594258e-05 -2426526115.83 +UniRef50_A7ZUE4 Regulator of ribonuclease activity A 4.59994995714e-05 1.15810472625e-05 -13895151559.0 +UniRef50_Q6A8H1 Methionyl tRNA formyltransferase 6.45753413816e-06 5.01209604202e-05 17627461000.5 +UniRef50_P31827 2.60776453685e-05 3.2868268965e-06 -9200933091.94 +UniRef50_B8EJY2 Chromosomal replication initiator DnaA 1.11306320944e-07 7.06116979016e-08 -16428918.7014 +UniRef50_UPI00036188FB hypothetical protein 2.16687420003e-08 1.26171858346e-07 42189190.4663 +UniRef50_Q9RZE7 Probable chromosome 2 partitioning protein ParB 1.05174340572e-05 0.000688892658729 2.738684028e+11 +UniRef50_F2IXW0 1.03248970526e-06 3.7202208411e-07 -266638883.507 +UniRef50_Q5LQ23 Paraquat inducible protein A, putative 5.49384836872e-05 4.03675941204e-06 -20549650724.3 +UniRef50_A5UL46 Phosphoserine phosphatase, HAD family, SerB 3.98212833509e-05 9.030078007e-06 -12430787447.9 +UniRef50_Q72GT4 Adenylosuccinate synthetase 3.22196207208e-08 0.00018358241974 74101468202.3 +UniRef50_B9TIG4 2.31463038226e-06 7.54532104517e-07 -629830819.282 +UniRef50_Z1ADI7 Gluconate permease 4.49956918919e-05 3.3189428584e-06 -16825415016.0 +UniRef50_E1CJT9 Iron responsive element binding protein 2 variant 5.41648192658e-08 1.96735958347e-06 772380203.847 +UniRef50_P37025 2 5 RNA ligase 6.20023403597e-05 3.35633958389e-05 -11481150888.1 +UniRef50_Q53075 UvrC protein 6.33200204603e-06 1.1505845657e-05 2088744155.95 +UniRef50_UPI00016C40E6 nitrogen regulatory protein P II 6.16548274712e-07 1.5595679295e-06 380708606.79 +UniRef50_Q6D108 Lysophospholipid transporter LplT 2.78474003868e-05 1.37515475267e-05 -5690668775.19 +UniRef50_D6ZIN1 ABC transporter, permease protein 6.59590373902e-06 4.10860970857e-05 13924114296.3 +UniRef50_K0HR37 FGGY family pentulose kinase 7.53465047635e-07 5.28944597554e-05 21049959405.5 +UniRef50_U4V4Z3 Beta barrel assembly machine subunit BamF 2.16898364873e-07 2.04290860271e-07 -5089804.31931 +UniRef50_E1TCG3 ABC transporter related protein 1.20758768849e-05 8.50484406558e-06 -1441669770.66 +UniRef50_UPI00046669DC hypothetical protein 1.67271051802e-07 9.56954393577e-07 318804855.579 +UniRef50_UPI0003B73A84 cation 1.62468764931e-07 9.60888883334e-07 322331999.516 +UniRef50_O67221 Aspartokinase 4.78463991519e-06 0.000146951138716 57394360145.1 +UniRef50_F5X3Q6 PTS system, ascorbate specific IIA component 6.96618626906e-05 1.69100897242e-05 -21296538083.6 +UniRef50_G2JDJ5 Metal dependent hydrolase 3.1787927103e-06 3.98611418686e-05 14809114498.2 +UniRef50_H4XIK4 1.42908435036e-05 3.50871332905e-06 -4352878263.1 +UniRef50_F8H8U4 Molybdopterin oxidoreductase, alpha subunit 3.12890358937e-06 2.41487819835e-06 -288260812.432 +UniRef50_I7DHA8 7.29821620769e-05 7.27581512224e-06 -26526458573.2 +UniRef50_B7V4R0 3 oxoacyl [acyl carrier protein] synthase 3 3.39599830546e-06 1.63959458137e-07 -1304813744.24 +UniRef50_UPI00046E82BD aldehyde reductase 1.23381501676e-07 1.78737578453e-07 22347927.4903 +UniRef50_UPI0002DD2F26 hypothetical protein 9.721842731e-08 3.83368244004e-07 115522192.452 +UniRef50_W6RY62 1.05307844385e-06 8.17297154518e-07 -95187799.8651 +UniRef50_B8EK13 Ribonuclease 3 1.62580458921e-07 1.10043198863e-07 -21209936.5901 +UniRef50_UPI00036C7A0B hypothetical protein, partial 2.90121310539e-07 5.69591923211e-07 112825715.826 +UniRef50_P08722 PTS system beta glucoside specific EIIBCA component 3.17674987716e-05 8.35476250198e-06 -9452008938.62 +UniRef50_P33129 Outer membrane usher protein HtrE 3.40121723708e-05 1.60651236238e-05 -7245443814.22 +UniRef50_J9W5M6 Dihydroxyacetone kinase like protein 6.09524465966e-05 4.03337492469e-05 -8324021139.94 +UniRef50_D0K567 7.86277116182e-05 1.49253474715e-05 -25717426121.9 +UniRef50_A0A059DS58 7.42126342029e-08 2.70479018812e-07 79235147.926 +UniRef50_UPI000345DC68 hypothetical protein 3.04155881709e-07 1.54131839423e-05 6099700036.69 +UniRef50_I0IQG7 2.77973394983e-05 4.92194508663e-06 -9235077436.66 +UniRef50_UPI0003955356 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.00384652055e-07 5.39176298386e-08 -59130534.2211 +UniRef50_A3PRH2 2.09010455792e-05 1.42712026016e-05 -2676548967.38 +UniRef50_W9VLN3 2.99409999387e-06 1.14163445567e-06 -747863070.08 +UniRef50_C5NXP6 1.39329468257e-06 2.71893151479e-07 -452723559.245 +UniRef50_Q4L3R2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000210289624462 5.76617765803e-05 -61617735144.3 +UniRef50_A1T8W3 Imidazoleglycerol phosphate dehydratase 1.97729040071e-06 5.6728808985e-07 -569235235.568 +UniRef50_P0ABQ1 Coenzyme A biosynthesis bifunctional protein CoaBC 3.39552680294e-05 4.7370016204e-06 -11795772697.8 +UniRef50_UPI00037505DF hypothetical protein 9.14717318743e-08 3.87908318052e-08 -21267925.8252 +UniRef50_D7BBF8 6.61600542306e-07 2.01738535236e-05 7877335970.82 +UniRef50_G2JJD3 Tartrate ABC transporter permease 1.72704518955e-06 0.000101441416207 40255915212.7 +UniRef50_D3QMJ7 1.90419958755e-05 9.859610215e-06 -3707041771.69 +UniRef50_Q12LS2 Phenylacetic acid degradation related protein 1.79330039519e-07 1.7590328866e-07 -1383421.37274 +UniRef50_UPI00036A4E56 hypothetical protein 1.73829551202e-07 1.45991973041e-07 -11238371.9091 +UniRef50_C5C1Y1 Tryptophanyl tRNA synthetase 3.61448329027e-06 5.28067435261e-05 19859519114.1 +UniRef50_UPI000378A2EB MULTISPECIES 3.24782051752e-06 1.05207235497e-06 -886450478.081 +UniRef50_B0S2Q1 Phosphoglucosamine mutase 4.26567203703e-08 4.93799597279e-08 2714254.23209 +UniRef50_UPI000300932B hypothetical protein 1.47026792325e-07 6.1828537951e-07 190252874.64 +UniRef50_G0DWG7 1.43641601296e-07 4.9688902033e-07 142610317.897 +UniRef50_Q4J6M5 Glyceraldehyde dehydrogenase small chain 4.15104147303e-07 6.96146839455e-07 113460383.603 +UniRef50_D4HCV7 ABC transporter, ATP binding protein 3.25418955908e-06 5.58689604923e-05 21241228681.6 +UniRef50_G2JE23 Pilus assembly protein tip associated adhesin PilY1 3.11663915056e-06 9.9456786112e-05 38893699554.9 +UniRef50_UPI0003B58E0A peptide ABC transporter ATPase 8.404532654e-07 1.91264296289e-07 -262085553.275 +UniRef50_UPI00047856FC hypothetical protein 4.82051192337e-07 1.83969061925e-05 7232446803.57 +UniRef50_P00894 Acetolactate synthase isozyme 3 small subunit 1.29027817478e-05 6.74204447632e-05 22009449566.3 +UniRef50_V9WQS7 Acetyltransferase 6.09620367238e-06 4.25162143439e-06 -744680485.046 +UniRef50_P25535 2 octaprenylphenol hydroxylase 3.58980571024e-05 2.06286269928e-05 -6164456312.22 +UniRef50_D3RW29 2.2288257911e-06 8.53142991038e-07 -555380027.911 +UniRef50_A0A032NY89 3.41301759814e-07 5.78740269445e-07 95856840.0362 +UniRef50_F4QWW5 Major Facilitator Superfamily protein 8.36700636039e-08 1.55304285251e-07 28919614.3297 +UniRef50_J2VJJ9 Replication protein C C terminal region Replication protein C N terminal domain containing protein 7.33101607037e-07 3.42804282268e-07 -157567819.496 +UniRef50_F0N8C1 RNA polymerase sigma 54 factor 1.33230349002e-06 9.81366542265e-06 3424029890.22 +UniRef50_UPI0000167295 COG2986 8.49978967294e-08 2.02731999643e-06 784139266.621 +UniRef50_A3M4V3 Transketolase 4.13187269337e-07 3.20712919809e-07 -37333029.6923 +UniRef50_UPI00029ADE1C hypothetical protein, partial 6.40974846752e-07 5.26422996327e-07 -46245987.7259 +UniRef50_M4JVT9 4.95488878208e-07 7.48297263889e-07 102061847.607 +UniRef50_Q1WTX2 Orotidine 5 phosphate decarboxylase 9.85968067363e-05 8.09153548648e-06 -36538088628.1 +UniRef50_P52636 Putative electron transport protein YccM 3.38180255861e-05 7.56378500466e-06 -10599159098.5 +UniRef50_A0A022J9C0 LysM domain protein 9.88012857229e-07 5.45749684895e-05 21633711574.7 +UniRef50_UPI0003717E93 phosphoribosylglycinamide synthetase 3.80104609535e-08 1.85205881819e-08 -7868300.80553 +UniRef50_Q477A8 UPF0225 protein Reut_A0143 1.06365357121e-07 4.09504417917e-07 122380958.778 +UniRef50_J9GTB9 2.16988050358e-06 6.62234888158e-07 -608655035.837 +UniRef50_B2IQJ8 ABC transporter, ATP binding protein 6.51252059147e-05 8.0417205855e-05 6173568029.84 +UniRef50_UPI00037869C0 hypothetical protein 5.27263515652e-08 2.02890891998e-08 -13095320.8669 +UniRef50_UPI0003B48C4E oligoendopeptidase F 6.89702668053e-08 2.3308920584e-07 66256829.6543 +UniRef50_V9VRW6 1.01024317528e-07 8.06657674151e-08 -8218996.50808 +UniRef50_P69000 Methionine aminopeptidase 3.21085758449e-07 1.46511363955e-07 -70477825.326 +UniRef50_W3XFA1 6.56847886425e-07 3.34728779988e-07 -130043436.115 +UniRef50_G2DTB6 2.91432466295e-07 3.76755951594e-07 34446138.0521 +UniRef50_UPI000476FFD2 ABC transporter permease 3.71039723924e-07 3.08177028173e-06 1094355190.59 +UniRef50_R5AEA5 Mg chelatase subunit ChlI 1.0984073391e-06 1.23219765733e-06 54012793.2613 +UniRef50_A3PN05 AAA ATPase 3.59766749321e-05 1.02517479797e-05 -10385468691.0 +UniRef50_Q8CPF5 Competence damage inducible protein cinA 0.000107119571584 3.28177633201e-05 -29996551781.9 +UniRef50_Q62JH0 Probable allantoicase 1 5.61652021897e-06 1.9218006846e-06 -1491603615.33 +UniRef50_UPI00029A69ED cytochrome D ubiquinol oxidase subunit I 5.41843034317e-08 4.6270300692e-08 -3194980.02175 +UniRef50_Q163Q7 NADH quinone oxidoreductase chain E 1.9474412232e-05 1.9492851828e-06 -7075108847.25 +UniRef50_L8UAB9 5.96236424086e-06 4.61585564471e-06 -543602043.784 +UniRef50_E4ZDG9 1.77779900556e-06 2.98042064289e-05 11314604599.5 +UniRef50_Q9RWD6 Histidine biosynthesis bifunctional protein HisIE 7.86921459788e-08 0.000383623957438 1.54841930228e+11 +UniRef50_L0DG52 Plasmid pRiA4b ORF 3 like protein 5.61486672853e-08 8.48735501021e-08 11596587.6871 +UniRef50_A0A038HZQ1 TRAP transporter, DctM like membrane domain protein 1.63473293198e-07 2.99788110195e-07 55031964.3926 +UniRef50_D3PQT0 GntR family transcriptional regulator 9.98640182185e-07 0.000193876752654 77867260885.5 +UniRef50_UPI000252BB4B PREDICTED 2.71327722017e-07 1.02713576566e-07 -68071599.6468 +UniRef50_W5P358 4.46052229735e-06 9.14278031195e-06 1890285018.26 +UniRef50_UPI000248DC75 coenzyme PQQ synthesis D 1.65677315042e-06 9.31906359365e-07 -292637618.665 +UniRef50_D6X9W8 7.48074100732e-08 4.31119277652e-06 1710280758.73 +UniRef50_H7PTJ4 1.10769098286e-07 8.91828124211e-07 315323113.438 +UniRef50_F3P3J8 ABC transport system, ATP binding protein 7.78856923336e-07 5.28017904842e-05 21002296671.7 +UniRef50_A1W4G0 Peptidyl tRNA hydrolase 1.77296057255e-05 3.97638065773e-05 8895477273.92 +UniRef50_B2VGJ3 Undecaprenyl diphosphatase 1.36398723153e-06 1.63111161787e-07 -484808405.761 +UniRef50_Q5LI12 Orotate phosphoribosyltransferase 2.35182702902e-07 3.73377385895e-05 14978757111.0 +UniRef50_C6SU74 1.39217855268e-05 5.53718822241e-06 -3384964822.36 +UniRef50_P13254 Methionine gamma lyase 2.48121756659e-07 1.81668953318e-07 -26827812.1764 +UniRef50_UPI00047299A3 ribose ABC transporter permease 1.05887828451e-06 3.96398262003e-06 1172826269.89 +UniRef50_UPI0003A95AEA outer membrane specific lipoprotein transporter subunit LolC 5.55947455382e-07 3.21292874096e-07 -94732934.0007 +UniRef50_J9P159 1.44794009571e-06 1.99774452129e-06 221962793.466 +UniRef50_J9P154 4.41084522678e-07 6.90142849256e-07 100547902.729 +UniRef50_V4IPG8 4.85868155729e-07 9.90246758972e-06 3801596746.17 +UniRef50_A8LRM2 Cyclopropane fatty acyl phospholipid synthase 6.5076016993e-05 3.59761266482e-05 -11747982828.0 +UniRef50_A0A024C3E3 Chemotaxis protein 2.575136657e-06 3.57581125079e-05 13396374551.9 +UniRef50_A6LX83 9.63235291789e-06 8.9036895237e-05 32056588137.5 +UniRef50_Q6ACB0 Adenylosuccinate synthetase 8.81393748779e-08 1.57007814884e-05 6303015209.88 +UniRef50_Q1GPC0 Adenylate kinase 4.30389203933e-05 3.43107303681e-06 -15990174020.8 +UniRef50_Q9CG80 DNA topoisomerase 1 4.03560207721e-06 6.31382858999e-05 23860478730.7 +UniRef50_UPI0004777C32 glutamine amidotransferase 1.29548783282e-07 1.37053244503e-06 501000332.83 +UniRef50_X1EYE5 Marine sediment metagenome DNA, contig 5.79846479806e-07 3.00052660746e-07 -112956198.211 +UniRef50_Q98I87 Carbamoyl phosphate synthase large chain 1.98996469225e-07 1.521406373e-07 -18916274.3338 +UniRef50_I3THI3 1.48045422185e-07 1.50694436784e-07 1069439.70068 +UniRef50_A7HQ34 Phosphate ABC transporter, periplasmic binding protein 4.78744612236e-08 6.87137539019e-08 8413078.18111 +UniRef50_P0A966 Chemotaxis protein CheW 7.78781722001e-06 3.52968173539e-06 -1719061548.34 +UniRef50_UPI000237708B glycerol 3 phosphate ABC transporter ATP binding protein 5.42349780944e-08 8.10033014743e-08 10806700.6327 +UniRef50_Q54EW1 Serine hydroxymethyltransferase 2 4.23086521099e-07 1.07918778212e-06 264876130.342 +UniRef50_Q9KBM8 Cobyrinic acid A,C diamide synthase 1.15566399624e-07 1.48468090337e-06 552728326.088 +UniRef50_K0CGP1 TENA THI 4 family 7.10501875895e-06 4.15082416175e-05 13889003243.0 +UniRef50_Q8DX74 ABC transporter, ATP binding protein 9.59954177836e-06 1.96877803461e-06 -3080632963.35 +UniRef50_UPI00036C4041 hypothetical protein 2.7053667057e-08 4.49030705795e-08 7206023.23885 +UniRef50_Q54GJ2 Bifunctional purine biosynthetic protein purD 2.41840108691e-08 3.49880062847e-08 4361705.52921 +UniRef50_R4REY9 Pyrazinamidase nicotinamidase PncA 3.02796247737e-06 2.79921047585e-06 -92349990.1163 +UniRef50_A6LRA0 Guanine specific ribonuclease N1 and T1 4.75793368374e-06 1.15194776431e-05 2729718269.87 +UniRef50_P76034 3.02023652592e-05 1.09856163522e-05 -7758037349.78 +UniRef50_P76035 3.20916495316e-05 8.67475708581e-06 -9453686837.95 +UniRef50_Q6GDM0 8.43707371088e-05 3.62532752967e-05 -19425609801.2 +UniRef50_Q5HF86 Glyceraldehyde 3 phosphate dehydrogenase 2 0.00015148917976 3.63234353107e-05 -46493824276.7 +UniRef50_O26931 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.3846452866e-05 2.88738954623e-07 -5473415477.89 +UniRef50_U3T7G8 6.96040544937e-07 4.43472101866e-05 17622512844.4 +UniRef50_A6LTU9 Resolvase, N terminal domain 4.31327811601e-06 1.38625298257e-05 3855150097.7 +UniRef50_UPI0004792045 DEAD DEAH box helicase 1.91180646816e-08 1.82407005756e-07 65921749.2922 +UniRef50_B2HTJ9 Anti anti sigma regulatory factor 1.45210786441e-05 4.28830275183e-05 11450066800.8 +UniRef50_B2A4R9 Phosphoglucosamine mutase 5.06990621184e-08 3.1508121524e-07 106734319.549 +UniRef50_Q3IVD4 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 1.71005078159e-05 4.72246814405e-06 -4997166511.17 +UniRef50_UPI000427273C preprotein translocase subunit SecA 3.17802617962e-08 1.32644384505e-07 40720084.0796 +UniRef50_A6LXB8 SCP like extracellular 2.29707498285e-06 2.39302949961e-05 8733596388.83 +UniRef50_R5XB78 1.57943928393e-06 2.11937101687e-05 7918521850.36 +UniRef50_D8U956 3.46347446329e-07 5.97579878872e-08 -115699681.221 +UniRef50_A7N2M2 Protoheme IX farnesyltransferase 1 6.49452486883e-08 1.40306366026e-07 30424207.8541 +UniRef50_M9RPB0 UPF0393 family membrane protein 6.18906983395e-05 1.88156913798e-05 -17389908899.4 +UniRef50_Q9FW53 Putative protoporphyrinogen oxidase 2.01803437217e-06 1.57222735682e-06 -179977762.764 +UniRef50_C4J5G1 1.28132175077e-06 3.93460475287e-08 -501400832.154 +UniRef50_Q28JJ5 Flagellar protein putative 1.87063791113e-07 1.17073489624e-07 -28255943.5887 +UniRef50_P41363 Thermostable alkaline protease 6.97273449661e-08 2.21005485033e-07 61072841.5366 +UniRef50_X5RU17 2.10295734616e-06 5.93260802245e-07 -609483020.84 +UniRef50_S9S7R4 1.77902844191e-07 2.28206127345e-07 20308052.7 +UniRef50_A6LVN7 6.77586919957e-06 6.51350316593e-05 23560310032.4 +UniRef50_R7XG30 5.04541110072e-07 5.4659955746e-08 -181622542.664 +UniRef50_X0Y3X4 Marine sediment metagenome DNA, contig 5.23268742543e-07 4.71128011562e-07 -21049852.9358 +UniRef50_I3TQH5 HNH endonuclease family protein 7.17696135887e-05 6.42599110623e-06 -26380022252.6 +UniRef50_Q5HPH6 Prephenate dehydrogenase 0.000106608536183 1.18536247938e-05 -38253720501.3 +UniRef50_C6XPM3 2.81851876881e-08 4.30707256929e-08 6009474.35863 +UniRef50_B1KWF3 1.23313566923e-05 1.42895179933e-05 790533746.555 +UniRef50_UPI000262970F alpha L arabinofuranosidase 2.05586593601e-06 6.25504836567e-07 -577454328.348 +UniRef50_UPI00047AAC54 DNA polymerase I 1.61536737415e-08 4.44410997059e-07 172892736.732 +UniRef50_UPI00038323B5 PREDICTED 2.61652226623e-07 1.90923152515e-07 -28554195.1607 +UniRef50_M9REP5 Penicillin binding protein2 6.92969959659e-05 3.04192457112e-05 -15695424861.5 +UniRef50_A3M202 Carboxy terminal protease 1.91164758928e-06 7.25662379234e-05 28524125147.2 +UniRef50_J9P1D4 1.01014888344e-07 5.77504459399e-07 192364687.019 +UniRef50_Q8XJK8 Guanylate kinase 1.09420642018e-05 5.60437882784e-06 -2154889086.23 +UniRef50_Q8X844 Fructoselysine 6 phosphate deglycase 3.01774382229e-05 1.77232106249e-05 -5027924511.87 +UniRef50_F4D464 Heavy metal translocating P type ATPase 1.97621084868e-06 5.30656042986e-05 20625415073.1 +UniRef50_Q2W3H2 D amino acid dehydrogenase small subunit 3.2048686598e-07 2.29979031713e-07 -36539123.3496 +UniRef50_K2A0P8 Inner membrane translocator 1.45959006237e-05 9.80412732766e-07 -5496739542.38 +UniRef50_UPI00022CA89F PREDICTED 4.4807435369e-07 2.68123339471e-07 -72648432.6875 +UniRef50_A7ZMR8 Transposase, IS605 family 1.47908675058e-05 7.79519785449e-06 -2824237684.75 +UniRef50_Q8XCY9 Protease ElaD 1.91455696406e-05 7.79165884896e-06 -4583713114.72 +UniRef50_U7DMJ8 Flagellar basal body rod modification protein FlgD 8.98381617774e-06 2.60190929686e-06 -2576454122.62 +UniRef50_A0A023XN60 Spermidine putrescine transport system permease protein potC 2.23805922247e-06 9.21838309754e-06 2818042406.57 +UniRef50_UPI0003C103D9 PREDICTED 3.93390152011e-06 4.02979356687e-07 -1425476606.66 +UniRef50_W5X8M6 Homoserine dehydrogenase 1.87872585912e-07 3.20703056351e-07 53625290.9294 +UniRef50_M9VAR2 5.03978548825e-06 3.40049884426e-05 11693607875.7 +UniRef50_UPI0003670873 hypothetical protein, partial 1.36683675816e-06 1.19712724519e-05 4281140820.61 +UniRef50_UPI000366ECCB MULTISPECIES 8.97967102383e-08 1.33153633221e-06 501305523.248 +UniRef50_Q3IUU7 DNA directed RNA polymerase specialized sigma subunit, sigma24 0.000331832228284 4.30754949409e-05 -1.16574636694e+11 +UniRef50_UPI00046D0748 2 keto 3 deoxy L rhamnonate aldolase, partial 1.26711935884e-06 8.89012628662e-06 3077501441.56 +UniRef50_Q3HKE5 FecR protein 3.9955992715e-05 1.63938384075e-05 -9512330834.09 +UniRef50_P0A0L2 Enterotoxin type A 0.000134150014143 1.80499944881e-05 -46871002642.2 +UniRef50_S1K712 IS605 OrfB family transposase 1.03226971812e-05 4.15939021406e-06 -2488202654.92 +UniRef50_W0PEX2 Dihydrodipicolinate synthase 3.32419542578e-05 3.66853049924e-06 -11939154078.1 +UniRef50_G2I013 Transposase 2.48725108225e-06 1.75312648115e-06 -296375110.186 +UniRef50_Q5SJP8 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 1.02763880809e-06 0.000523816249099 2.11056177312e+11 +UniRef50_D5ASB3 Membrane transport family protein 7.41319360621e-05 6.63861639426e-06 -27247881386.1 +UniRef50_UPI000423B5F5 sarcosine oxidase subunit delta 2.17300255826e-06 3.56387295322e-06 561511446.344 +UniRef50_E4N4A3 1.10427116251e-07 1.03345610278e-06 372638128.701 +UniRef50_UPI0003B50367 hypothetical protein 9.7281574412e-08 5.33618109601e-07 176154413.707 +UniRef50_Q2FHH3 Ribosome maturation factor RimP 0.000295147241547 4.91573670386e-05 -99309130974.1 +UniRef50_UPI0001C39687 ATPase component of various ABC type transport systems with duplicated ATPase domain, partial 1.86385471893e-07 5.68551590441e-08 -52292976.8128 +UniRef50_UPI00041FE5DE zinc ABC transporter ATPase 3.96439769857e-08 1.20107658091e-07 32484175.4626 +UniRef50_K7RPT1 4.96212687019e-07 1.77307050577e-05 6957776061.06 +UniRef50_X0YLP3 Marine sediment metagenome DNA, contig 1.65434284138e-07 1.64830512418e-07 -243750.052476 +UniRef50_UPI0003717CC9 sodium 1.32606319274e-06 2.32823287027e-07 -441354365.497 +UniRef50_A3M2F0 3.52916143661e-06 0.000102049948914 39774050890.6 +UniRef50_T1W7J5 4.91546036791e-07 3.65218684466e-07 -50999902.3445 +UniRef50_J0NEL3 7.24673523958e-05 2.87048845821e-06 -28097108021.2 +UniRef50_UPI00036B01E6 hypothetical protein 2.85559061836e-08 4.2522445045e-07 160139958.991 +UniRef50_M2LA35 5.83741219879e-06 2.97785752846e-06 -1154437311.09 +UniRef50_UPI0004689ED6 ferrichrome ABC transporter permease 1.34359639122e-07 1.0258765559e-07 -12826739.6379 +UniRef50_Q5LWE9 Rhomboid family protein 6.95668002448e-06 2.72600035571e-06 -1707977298.56 +UniRef50_C3NGW2 Ketol acid reductoisomerase 1.12143726387e-07 2.77345684509e-07 66694057.7498 +UniRef50_X7EDB2 1.09586650227e-07 5.02648355404e-08 -23948944.5495 +UniRef50_F5M536 XRE family transcriptional regulator 6.54946333606e-05 1.07807450414e-05 -22088668129.4 +UniRef50_Q55463 Bicarbonate transport ATP binding protein CmpD 6.74821944333e-07 8.6515654743e-08 -237506468.437 +UniRef50_S5K777 Internalin 9.20789354518e-08 1.2792767261e-05 5127423731.98 +UniRef50_I6TW59 5.6589045175e-05 2.76568241958e-05 -11680292647.6 +UniRef50_A5VNN0 1.08926191229e-07 1.54761375906e-07 18504226.5151 +UniRef50_P76077 1,2 phenylacetyl CoA epoxidase, subunit A 2.23156413766e-05 1.17109599435e-05 -4281240028.62 +UniRef50_A4VFR5 Ribonucleoside diphosphate reductase 5.23215879325e-06 9.03939209908e-06 1537026805.57 +UniRef50_UPI00034B41D8 Fe S cluster assembly protein HesB 4.49473779471e-06 9.32497872641e-07 -1438119970.14 +UniRef50_A6LWE7 Transcriptional regulator, Fis family 9.4766357036e-07 2.28344123682e-05 8835949070.28 +UniRef50_P0AC51 Zinc uptake regulation protein 1.02610931706e-05 2.75904829679e-05 6996087316.7 +UniRef50_P9WKE4 Pyruvate kinase 1.68732539655e-07 5.29097634188e-08 -46759076.0718 +UniRef50_P39812 Glutamate synthase [NADPH] large chain 3.21189432824e-08 3.19832033431e-08 -54799.8792118 +UniRef50_UPI00046F30F3 hypothetical protein 2.12340287376e-06 3.01161751574e-07 -735661102.441 +UniRef50_H3UK96 ATP dependent deoxyribonuclease subunit A domain protein 9.15378255813e-05 3.79707691317e-05 -21625678030.4 +UniRef50_A0A017SWC8 6.63376112847e-07 1.5379963033e-06 353094903.683 +UniRef50_Q650K7 Tyrosine tRNA ligase 3.47768127985e-07 4.18568700696e-05 16757733827.8 +UniRef50_Q0FMK9 Replication protein C 5.68714750485e-07 1.75529785026e-07 -158733595.478 +UniRef50_UPI00047EEBF5 hypothetical protein 9.50468846879e-08 3.33140443482e-07 96121291.4217 +UniRef50_U5RNQ9 Glucokinase 4.64573712241e-06 4.04395658423e-05 14450407893.9 +UniRef50_L0ILT4 ABC type nitrate sulfonate bicarbonate transport system, permease component 7.00434859726e-06 9.82329007516e-06 1138041266.93 +UniRef50_Q6FFD0 D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8 1.23899075913e-05 5.60665563993e-05 17632799096.5 +UniRef50_F8HF16 Thiamine diphosphokinase 4.66504872973e-05 1.23614442986e-05 -13842907432.4 +UniRef50_UPI000471BA5D ATPase 3.66818722405e-07 3.09256867018e-07 -23238427.3831 +UniRef50_UPI000476F7F2 hypothetical protein 9.71264773401e-07 2.08448792847e-07 -307958172.154 +UniRef50_Q3Z8B4 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000157006901158 5.17860614175e-05 -42478944208.3 +UniRef50_A6U6I4 FAD dependent pyridine nucleotide disulphide oxidoreductase 2.09527392088e-06 2.06997690564e-06 -10212715.4817 +UniRef50_Q6A735 Cell envelope related transcriptional attenuator 2.39212767365e-07 1.28477962199e-05 5090239864.49 +UniRef50_A0A023RXV8 2.61537636621e-06 5.43796499884e-05 20897872480.4 +UniRef50_F0Y4U6 Expressed protein 1.69469990813e-06 1.29169055534e-05 4530542130.96 +UniRef50_R7G9F0 4.87530206984e-07 4.2980751452e-07 -23303359.2848 +UniRef50_A0A023RXV6 4.81897007041e-06 0.000118230982726 45785821231.1 +UniRef50_J9V1L0 8.88473726768e-05 8.54272419507e-06 -32419972040.9 +UniRef50_UPI0003774EF4 hypothetical protein 3.58450949836e-08 4.62002643863e-08 4180508.96009 +UniRef50_UPI0003AED3B9 PREDICTED 4.70921408125e-06 7.78683596671e-06 1242473721.83 +UniRef50_A0A052J8X7 Oligopeptide ABC transporter, oligopeptide binding protein 4.40249420429e-08 1.04738650332e-07 24510869.0773 +UniRef50_UPI00047E2B61 DNA methyltransferase 1.04128870322e-06 9.89941772117e-07 -20729386.184 +UniRef50_A5ULF2 Adenosylcobinamide amidohydrolase, CbiZ 3.2148583585e-05 1.6112140852e-05 -6474108720.59 +UniRef50_UPI00037A1445 hypothetical protein 6.06315828902e-08 1.63005067134e-07 41329431.8532 +UniRef50_UPI00036E83CD hypothetical protein, partial 3.97587398231e-07 9.73890199152e-08 -121193769.175 +UniRef50_A6LZS8 HAD superfamily hydrolase, subfamily IA, variant 1 1.71584540393e-06 1.80043716586e-05 6575877931.72 +UniRef50_UPI000474ABAF isoleucine tRNA ligase 1.70448257242e-05 4.18971848154e-06 -5189764543.78 +UniRef50_E8SJH3 Integral membrane protein 9.70067557819e-05 6.95476385959e-05 -11085582569.2 +UniRef50_P0AC95 High affinity gluconate transporter 1.92261196755e-05 5.78223225695e-06 -5427462325.9 +UniRef50_M4QUJ5 1.39637233856e-06 3.75005775006e-05 14575710672.3 +UniRef50_UPI0003B7B681 nickel ABC transporter permease 1.80603845939e-06 7.03989240464e-07 -444910793.347 +UniRef50_UPI000475E454 MFS transporter 5.61145248101e-08 3.51726206583e-07 119342063.495 +UniRef50_Q9RWM7 1.48901320747e-06 0.000835845588562 3.36839988177e+11 +UniRef50_A0M024 Protein containing DUF124 1.53354645499e-05 2.20309121995e-05 2703034378.53 +UniRef50_N8UCZ7 Magnesium translocating P type ATPase 2.40911600266e-06 4.80856830784e-05 18440190643.0 +UniRef50_J9NU89 3.80233552218e-07 2.08262775748e-07 -69426712.7797 +UniRef50_I4E0M5 Cation efflux family protein 9.89111317363e-05 3.16904290592e-05 -27137822561.5 +UniRef50_A4VFK3 5.96401883601e-06 2.79310896275e-06 -1280135227.27 +UniRef50_A0A016YJN0 MMPL family protein 8.33336319946e-07 5.26023515738e-05 20899786735.3 +UniRef50_Q6ZD75 3.08571653009e-06 1.14411747794e-06 -783847363.453 +UniRef50_Q65H34 Shikimate dehydrogenase 3.23717772976e-07 4.165349257e-06 1550913772.22 +UniRef50_Q6MDR3 NADH quinone oxidoreductase subunit D 3.00233580135e-08 4.62083855544e-07 174428124.832 +UniRef50_UPI0004716349 integrase 4.87535767353e-07 2.73742658281e-07 -86310901.6688 +UniRef50_G2HS60 TRAP transporter solute receptor 9.2928636489e-07 7.96227161421e-07 -53717633.2605 +UniRef50_Q8DV44 Acetylglutamate kinase 5.90988317307e-05 2.85018489997e-05 -12352377395.7 +UniRef50_Q9RVJ0 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 9.60524144667e-07 0.000570177969991 2.29800067972e+11 +UniRef50_B9KTM7 1.93582558386e-05 3.59511164324e-05 6698741439.01 +UniRef50_K7E0S8 8.35110920989e-08 1.40408776366e-08 -28045978.0738 +UniRef50_UPI000478D511 hypothetical protein 1.59958586913e-07 4.54152294339e-05 18270108185.6 +UniRef50_Q1QTL2 Nucleoside diphosphate kinase 1.30003765777e-06 6.56278573416e-07 -259893442.166 +UniRef50_UPI000262552F EmrB QacA subfamily drug resistance transporter, partial 5.59845985871e-07 2.64946395537e-07 -119054583.443 +UniRef50_B9KW42 FAD dependent oxidoreductase 0.000138820631196 5.38884799663e-05 -34288151686.1 +UniRef50_G7M1F6 Multi sensor signal transduction histidine kinase 3.31847588427e-06 1.16321261494e-05 3356322631.99 +UniRef50_Y6NBB6 0.000112281191747 1.2828956409e-05 -40150087822.1 +UniRef50_J9P4U3 8.2326250783e-07 1.17224873692e-07 -285036056.958 +UniRef50_UPI0004025C8B tagatose bisphosphate aldolase 5.05361071925e-08 3.63184993948e-07 126220192.217 +UniRef50_Q2KCH9 Probable chemotaxis protein methyltransferase 1.74270673217e-06 2.29105165071e-07 -611059526.618 +UniRef50_UPI00035F1E2E MULTISPECIES 1.19580509536e-05 4.72875564998e-07 -4636706243.33 +UniRef50_Q6GHU5 Ribonuclease HIII 0.000155484360532 5.34914040731e-05 -41175808116.8 +UniRef50_K0M0Z9 Iron regulated ABC transporter siderophore binding protein SirA 0.000143220182205 1.45866881421e-05 -51930920063.7 +UniRef50_V4YZI7 4.15925829585e-07 1.2579255787e-06 339925631.217 +UniRef50_W5X9U5 Bifunctional protein GlmU 4.28751065089e-08 5.28955456913e-08 4045374.26255 +UniRef50_P33644 Laccase domain protein YfiH 2.19962930994e-05 2.40875810745e-05 844278618.537 +UniRef50_C1E811 Predicted protein 2.02807507518e-06 6.80745068375e-07 -543933657.348 +UniRef50_UPI0003B61251 elongation factor P 1.58724389716e-07 2.11280382619e-07 21217499.2695 +UniRef50_A1B9F5 DNA ligase 2.0740888864e-05 2.07431210266e-06 -7535926103.19 +UniRef50_UPI0003B49C22 MarR family transcriptional regulator 2.72038672753e-06 4.43950858665e-07 -919025095.272 +UniRef50_B2V232 Flagellar export protein FliJ 5.20670329449e-06 1.84844583174e-05 5360392639.12 +UniRef50_M1N377 Diguanylate cyclase 1.02763880809e-06 1.39753529895e-05 5227151101.35 +UniRef50_I6SW52 Malonyl CoA ACP transacylase 3.98381262397e-05 1.40631424058e-05 -10405677268.4 +UniRef50_Q9RUC2 Oxidoreductase, short chain dehydrogenase reductase family 1.47840465605e-06 0.000371434521586 1.49355824277e+11 +UniRef50_B2HZE4 Cytidylate kinase 4.92373028943e-06 7.54560511986e-05 28474763480.0 +UniRef50_D4Z2Y4 3.39368421561e-06 1.5468409678e-07 -1307624094.97 +UniRef50_I0C3R4 Thiamin pyrophosphokinase 6.19857081149e-05 1.07041456035e-05 -20702996081.4 +UniRef50_E9V1P4 PE PGRS family protein 2.17582561448e-06 1.91329122411e-06 -105988355.052 +UniRef50_P07954 Fumarate hydratase, mitochondrial 9.83162756624e-08 2.58259661878e-07 64571107.7415 +UniRef50_A0A023RUB5 3.74986081636e-06 8.74433124731e-05 33788073468.0 +UniRef50_Q2JL74 DNA directed RNA polymerase subunit alpha 1.07020396063e-07 3.7823781249e-07 109493799.224 +UniRef50_Q71ZI2 Probable nicotinate nucleotide adenylyltransferase 3.85385033408e-08 3.73354447161e-05 15057218722.6 +UniRef50_UPI00046F1475 transcriptional regulator, partial 2.77794326871e-07 5.73429372194e-07 119351495.647 +UniRef50_M4X2C4 Vanillate porin OpdK 1.00150367391e-05 1.4137892635e-05 1664447518.31 +UniRef50_I2DV60 Transcriptional regulator, GntR family 6.3300503657e-06 1.2399581744e-06 -2054932680.08 +UniRef50_UPI0004725EBD chromosomal replication initiator protein DnaA, partial 8.82450172386e-08 1.03073482638e-07 5986433.44747 +UniRef50_Q8RFY7 Glutamate 1 semialdehyde 2,1 aminomutase 8.65374496666e-08 1.657530443e-07 31980307.6382 +UniRef50_L8E176 Internalin A 1.2878114461e-07 5.79033643673e-08 -28614229.6521 +UniRef50_Q3JWB4 3.81322595143e-07 9.6418348109e-07 235308092.164 +UniRef50_W1Y5T8 Nitrate reductase, beta subunit 1.60649382197e-07 2.83156370672e-07 49457574.5772 +UniRef50_Q83GV1 Glycine dehydrogenase 1.79240803869e-08 5.3784220458e-08 14477178.6001 +UniRef50_UPI00036AFA97 hypothetical protein 1.94826634309e-07 2.65435474198e-09 -77582307.4803 +UniRef50_G3XD94 UDP N acetyl D glucosamine 6 dehydrogenase 8.87602463171e-06 5.69783997995e-06 -1283072144.63 +UniRef50_B2I0W8 8.93105651832e-07 5.70271395887e-05 22661998342.4 +UniRef50_P0A2J2 High affinity branched chain amino acid transport system permease protein LivH 3.53589679667e-05 6.3169348705e-06 -11724625146.8 +UniRef50_A3PJL0 Peptidoglycan binding domain 1 protein 5.76297306678e-05 6.75954613344e-06 -20536917743.9 +UniRef50_UPI00037D66CB coproporphyrinogen III oxidase, partial 4.96210856061e-07 2.99837410483e-07 -79278369.753 +UniRef50_R6FXK3 2.52484805529e-06 1.24248860634e-05 3996766831.0 +UniRef50_N6UDA5 6.24997613586e-07 4.34583201684e-07 -76872634.7324 +UniRef50_P52667 HTH type transcriptional regulator EstR 1.35461479253e-06 6.99604199659e-05 27697005436.4 +UniRef50_K2BGA3 1.05155749776e-07 1.60302056189e-07 22263240.6202 +UniRef50_B1ZP10 Urea ABC transporter, ATP binding protein UrtD 6.80865658134e-05 8.61470399378e-06 -24009520418.4 +UniRef50_UPI0003B52280 diguanylate cyclase 1.91885940505e-07 2.04871374582e-06 749624170.847 +UniRef50_Q8K9W2 DNA gyrase subunit A 6.49157712605e-08 1.04124992023e-07 15829243.5731 +UniRef50_B0V5B6 Phenylacetaldehyde dehydrogenase 8.87506243427e-07 6.36146319684e-05 25323710403.6 +UniRef50_UPI00037B050D MULTISPECIES 1.74275664786e-07 6.1506398533e-07 177951654.085 +UniRef50_K4NDV9 1.15556935367e-06 3.72855498616e-05 14586116495.8 +UniRef50_A5UL24 3.67194247487e-05 4.63848228053e-06 -12951470151.8 +UniRef50_A6LXE2 Efflux transporter, RND family, MFP subunit 5.46340833125e-06 3.74157674571e-06 -695124540.332 +UniRef50_B0VDR8 1.18706285809e-06 5.14079455936e-05 20274786639.9 +UniRef50_A8LHW6 Penicillin binding protein 7.72621587514e-05 1.4045097778e-05 -25521503275.5 +UniRef50_UPI000305920B biotin biosynthesis protein BioY 1.09816038195e-07 3.63753007754e-07 102517470.768 +UniRef50_I4E1E6 3.76732518322e-05 4.80682951834e-05 4196606562.41 +UniRef50_UPI0003503D61 PREDICTED 1.7335053984e-06 1.70760246426e-06 -10457332.3771 +UniRef50_D2NTN6 Signal transduction histidine kinase 3.66491251313e-06 1.45566027763e-05 4397109015.32 +UniRef50_UPI0003FCDB23 membrane protein 8.94989750349e-08 2.23826321673e-07 54229598.2197 +UniRef50_Q5HQ98 Phosphoribosylglycinamide formyltransferase 0.000168769251885 3.08700566957e-05 -55671597311.2 +UniRef50_B8F444 1.52007780746e-06 8.20662875421e-05 32517493283.0 +UniRef50_D8LK39 Short chain dehydrogenase 6.10521025838e-08 6.2102422602e-06 2482503525.68 +UniRef50_UPI00016C0059 50S ribosomal protein L24 1.27631864592e-06 8.0886410988e-07 -188717132.512 +UniRef50_UPI000467D444 phosphate transporter 5.80489080848e-08 7.72914086334e-08 7768433.60351 +UniRef50_Q39F07 Glutamate tRNA ligase 2.94854661862e-08 1.20306438364e-07 36665540.9668 +UniRef50_A0A017HAI8 3.31007571179e-05 2.79463723626e-06 -12234952494.1 +UniRef50_K7T243 2.38973645218e-06 9.40621126571e-07 -585025639.594 +UniRef50_A0A058ZA26 8.7249768219e-08 4.91238425354e-08 -15391904.0562 +UniRef50_P0ABU1 1,4 Dihydroxy 2 naphthoyl CoA synthase 0.000284493235425 0.000158134331444 -51012640135.2 +UniRef50_R6ZTJ7 1.21105370786e-07 1.03273943381e-07 -7198766.05962 +UniRef50_T1ZU11 8.38857753003e-06 5.49669112408e-05 18804244899.5 +UniRef50_Q8REM9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.36757193968e-07 1.07800999455e-07 -11689971.0574 +UniRef50_Q97GH9 Acetylornithine aminotransferase 1.37897579593e-07 1.98676281647e-07 24537107.8577 +UniRef50_A0A023RVA0 Haloacid dehalogenase 5.67648103501e-07 8.70508072153e-05 34914312601.1 +UniRef50_C1DJ65 1.54090873203e-06 1.40942059456e-06 -53083374.6375 +UniRef50_R3SKR3 1.11743399427e-06 3.19255147367e-07 -322234595.251 +UniRef50_Q48B49 ISPsy24, transposase orfB 2.95081850723e-05 4.40344626986e-05 5864436535.21 +UniRef50_UPI000381307B hypothetical protein 5.35315466872e-07 4.55572061241e-07 -32193391.4149 +UniRef50_B9KRJ2 Transcriptional regulator, IclR family 5.76539595526e-06 2.37202172853e-06 -1369946816.72 +UniRef50_B2JYC2 HesB YadR YfhF family protein 2.48651475888e-06 6.58688227141e-07 -737916000.817 +UniRef50_UPI00047A2796 hypothetical protein, partial 1.05183743514e-06 2.81257607522e-07 -311092532.487 +UniRef50_UPI0003C18538 4.56708677195e-07 1.05822004043e-06 242837518.712 +UniRef50_W6A6C9 Citrate lyase subunit alpha 3.78005267608e-05 2.15968666905e-05 -6541616411.65 +UniRef50_F5M379 CheW3 0.000137547842426 5.87248523315e-05 -31821808368.0 +UniRef50_D5DEH5 Bacillolysin 2.11429473721e-07 6.18056605518e-06 2409813687.48 +UniRef50_P77348 Periplasmic murein peptide binding protein 3.04652406031e-05 1.03832243292e-05 -8107356403.83 +UniRef50_Q2FJW9 1.92998406323e-05 1.3520840531e-06 -7245729574.76 +UniRef50_P11347 Nitrogenase molybdenum iron protein beta chain 3.07784916058e-06 3.25276748412e-06 70616673.7023 +UniRef50_W1YLG1 8.03161678413e-06 2.28861378296e-05 5996952431.54 +UniRef50_UPI00016C3D30 hypothetical protein 7.46074339526e-07 0.000139935765673 56192586440.7 +UniRef50_G4VUH5 Conjugative transfer pilus assembly protein 1.07873417274e-06 9.41871668195e-07 -55253072.5766 +UniRef50_G5QPS2 2.66397317583e-06 4.25430010191e-06 642034495.564 +UniRef50_J3IPS9 2.62487114046e-07 2.97021000812e-06 1093140959.83 +UniRef50_P45545 1.46575482499e-05 1.93862169709e-06 -5134786728.15 +UniRef50_A4VWT1 6.1233099668e-06 0.000134107443322 51668765177.3 +UniRef50_P23890 Transcriptional activator CadC 2.7910002098e-05 6.87654369234e-06 -8491465267.94 +UniRef50_UPI00046617E5 thioredoxin 3.64438299837e-07 5.25195713553e-07 64899740.6325 +UniRef50_Q9ZG89 GTP binding protein EngB 0.000129923233676 3.90450770705e-05 -36688627022.0 +UniRef50_B7I5N1 Zn dependent oligopeptidase 1.16597664465e-06 4.74002723601e-05 18665352538.9 +UniRef50_UPI0003F09CB7 PREDICTED 4.43740609412e-08 1.49376492962e-07 42390770.3316 +UniRef50_P0ADN4 UPF0438 protein YifE 7.75656141478e-06 9.52634532885e-06 714483483.801 +UniRef50_A0A031QGZ5 1.43029209883e-06 2.5614396695e-06 456658155.021 +UniRef50_B4RZS0 Succinyl diaminopimelate desuccinylase 1 3.0300776468e-08 5.70110616351e-08 10783269.894 +UniRef50_O33465 Methionine synthase 4.19296118488e-07 6.27561480633e-07 84079282.4013 +UniRef50_K2FJE0 Response regulator receiver protein 2.85162524193e-06 5.04480373429e-06 885413070.692 +UniRef50_Q1QTJ4 Methionyl tRNA formyltransferase 8.12685624816e-08 1.83195841386e-07 41149293.2819 +UniRef50_M1MD21 Lytic transglycosylase catalytic 3.45032049687e-06 1.17049807793e-05 3332507652.09 +UniRef50_P76446 Protein Rtn 3.4793960324e-05 1.15444812543e-05 -9386100003.63 +UniRef50_G8PUC6 9.93817398958e-07 2.11659674342e-07 -315766671.582 +UniRef50_UPI000360A87F hypothetical protein 4.50141121414e-08 8.45077293744e-07 322995324.292 +UniRef50_Q9JTW6 Co chaperone protein HscB homolog 2.70922958506e-06 4.24704449976e-05 16052090587.0 +UniRef50_P0A9H4 Lysine decarboxylase, inducible 3.1341605595e-05 8.12816271453e-06 -9371551751.84 +UniRef50_Q5QX02 N acetyl gamma glutamyl phosphate reductase 6.01250188139e-08 6.4573558223e-08 1795929.94917 +UniRef50_Q9RVG1 Probable 3 hydroxybutyryl CoA dehydrogenase 1.85868265068e-06 0.000454626415195 1.82787889713e+11 +UniRef50_U2Z7R5 Anti sigma B factor RsbT 5.08938903002e-08 5.9289118935e-07 218810960.681 +UniRef50_X5DTS0 PTS system sugar specific permease protein 8.36379591226e-07 3.62617651137e-05 14301662853.8 +UniRef50_P57936 Triosephosphate isomerase 3.49031231559e-05 2.51341071176e-06 -13076124380.2 +UniRef50_G0N365 9.20869373998e-08 5.38041414007e-08 -15455234.5276 +UniRef50_Q2W170 3.11094831836e-07 1.07241739723e-07 -82297994.8448 +UniRef50_B7V9E6 AMP nucleosidase 1.57311310104e-06 1.3262726281e-06 -99652527.9991 +UniRef50_A0A037Z329 Flagellar biosynthesis protein FlhA 4.80361863589e-06 1.48183985915e-05 4043089563.25 +UniRef50_A0B4T1 Short chain dehydrogenase reductase SDR 1.8718313497e-06 0.000176674296057 70569900069.7 +UniRef50_UPI000478334E hypothetical protein, partial 7.30618042937e-06 5.69742839604e-06 -649472937.463 +UniRef50_A5IR45 0.000194020970852 9.42845180321e-06 -74522265145.0 +UniRef50_S5XW27 0.000135101236397 4.21239778872e-05 -37536060219.7 +UniRef50_UPI00046741CB quinone oxidoreductase, partial 7.43954424757e-08 2.29844826571e-07 62756823.9376 +UniRef50_A5IR41 0.000130205193123 2.02136259761e-05 -44404945405.6 +UniRef50_C7BXR1 3.81298978638e-06 3.51945167646e-05 12669107535.7 +UniRef50_UPI000373FE9D hypothetical protein 1.64721712368e-07 1.79851952024e-07 6108263.41805 +UniRef50_UPI00037D3E99 hypothetical protein 1.2963808578e-06 4.69243360357e-07 -333925557.836 +UniRef50_A4VYJ7 DNA repair protein RecO 3.74232310789e-05 4.77747202929e-05 4179023222.75 +UniRef50_UPI00046FC1BE PTS mannose transporter subunit IIB 3.41280788618e-08 4.61560606141e-08 4855843.83334 +UniRef50_A7X1C4 UDP N acetylmuramoylalanine D glutamate ligase 0.000187003351303 7.13813388701e-05 -46678025260.8 +UniRef50_A3M783 Putative TonB dependent receptor 1.78548589662e-06 5.98956145748e-05 23459772038.9 +UniRef50_I6TYR1 2.47867012715e-05 3.63094309672e-06 -8540839185.51 +UniRef50_K0H8L8 Formimidoylglutamase 1.36276530269e-06 6.16160535403e-05 24324991852.5 +UniRef50_P29930 Cobyrinic acid a,c diamide adenosyltransferase 0.000107103019029 5.43566601178e-05 -21294352363.1 +UniRef50_D7GDB8 Permease protein of oligopeptide ABC transporter 1.51398123869e-06 5.16861980168e-05 20255139595.7 +UniRef50_UPI000410414C hypothetical protein 2.47731283068e-06 3.04122785391e-07 -877343489.324 +UniRef50_D5X7D2 Stage V sporulation protein AD 1.1124341518e-06 1.09489584666e-05 3971125573.61 +UniRef50_W9B8I4 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 4.17001517855e-05 2.22924469132e-05 -7835128616.27 +UniRef50_S5YWN2 5.12898554626e-05 1.77271701881e-05 -13549667905.8 +UniRef50_Q2NHM9 MtaC2 2.47211625146e-05 2.39122838212e-06 -9014868428.4 +UniRef50_R6JPB3 6.06382333827e-05 3.83666240486e-05 -8991321991.56 +UniRef50_Q9RY97 2.29707498285e-06 0.000420353587575 1.68774544264e+11 +UniRef50_K8B5J6 Sulfate permease 2.60644245378e-07 2.20963084702e-07 -16019771.5075 +UniRef50_U6HCK7 Mitochondrial ribosomal protein l11 3.18321071149e-07 5.97194916889e-07 112584793.692 +UniRef50_A7HM68 Lysine tRNA ligase 7.23706188429e-08 9.69866522038e-08 9937794.74049 +UniRef50_B3T0J2 4.43387943768e-07 5.09903875063e-07 26853297.7061 +UniRef50_B1ZBH9 Binding protein dependent transport systems inner membrane component 0.000141605404619 3.12199786369e-05 -44563951050.4 +UniRef50_UPI000203B2C5 PREDICTED 5.05078463076e-07 9.66116689802e-07 186126789.705 +UniRef50_A6M0R6 Methyl accepting chemotaxis sensory transducer 4.59410793836e-06 4.34512545817e-06 -100517282.611 +UniRef50_UPI00046D564F hypothetical protein 2.23194304348e-07 2.44025601401e-07 8409850.24906 +UniRef50_A3PLS6 Nitrogenase molybdenum iron cofactor biosynthesis protein NifN 2.24021747818e-05 2.09284767297e-06 -8199124577.29 +UniRef50_Q9JV28 UDP N acetylenolpyruvoylglucosamine reductase 2.71471385544e-06 4.79985929473e-05 18281657685.1 +UniRef50_F0RNS6 1.35623708568e-06 4.98379983779e-05 19572681971.8 +UniRef50_B1JXR9 3 phosphoshikimate 1 carboxyvinyltransferase 3.0300075275e-05 4.60180913716e-05 6345555979.94 +UniRef50_D0B1T7 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 2.76624981786e-05 7.78583906055e-06 -8024451199.97 +UniRef50_F8HBY9 D alanyl D alanine carboxypeptidase DacA 8.54188152757e-05 4.70414064406e-05 -15493430890.5 +UniRef50_P75838 Ribosomal protein S12 methylthiotransferase accessory factor YcaO 2.01328583389e-05 1.1649574169e-06 -7657574364.53 +UniRef50_UPI0003710A9E hypothetical protein 3.42738362583e-07 1.63026133433e-07 -72552032.2249 +UniRef50_Q49YE0 Putative universal stress protein SSP1056 0.000381019594888 1.13785739709e-05 -1.4922861615e+11 +UniRef50_UPI00046F5838 hypothetical protein 4.65396573663e-08 2.34356433979e-07 75823937.4897 +UniRef50_A4VNP3 Ribosomal RNA large subunit methyltransferase E 2.22403600905e-07 4.51756992669e-06 1734011353.34 +UniRef50_Q3JEP4 Adenine phosphoribosyltransferase 3.73398606577e-07 3.921092488e-07 7553715.87082 +UniRef50_S6BAJ6 Phosphoenolpyruvate protein phosphotransferase 3.52476453436e-06 1.75519136561e-06 -714398403.329 +UniRef50_UPI0003634116 hypothetical protein 2.12455709734e-07 1.33357914252e-06 452611287.549 +UniRef50_P45416 2 dehydro 3 deoxygluconokinase 4.03380285381e-07 3.62147446783e-07 -16646202.9258 +UniRef50_D8JN46 Ribosomal RNA large subunit methyltransferase J 4.03968359059e-06 0.000119263250846 46517168053.0 +UniRef50_UPI0003F071E0 PREDICTED 1.55681318201e-08 2.12201541809e-07 79383320.5758 +UniRef50_UPI000473748C RNA polymerase sigma factor RpoE, partial 3.06928638757e-06 2.74115238615e-06 -132471723.03 +UniRef50_UPI000364A43A hypothetical protein 3.89899138683e-06 1.08419002321e-06 -1136369851.99 +UniRef50_S0FU34 1.42906913618e-06 3.25735682869e-07 -445429254.525 +UniRef50_UPI0002628B07 chemotaxis protein 8.22664398117e-07 8.71160732363e-08 -296949884.947 +UniRef50_W4UBF2 7.75656141478e-06 1.46438035634e-05 2780464171.36 +UniRef50_Q72NI2 Adenylate kinase 1.0109307041e-07 1.68689048786e-07 27289325.9663 +UniRef50_B2V5F8 ABC transporter, permease protein 1.50392824239e-06 9.7236700679e-06 3318410642.53 +UniRef50_A7GM37 ATP dependent helicase nuclease subunit A 1.34646912792e-07 2.0920589456e-06 790231257.792 +UniRef50_UPI00047B0772 hypothetical protein 1.64317328389e-07 3.80240703305e-08 -50986138.0706 +UniRef50_UPI000023CB21 hypothetical protein FG03961.1 1.99796886439e-08 1.28710248065e-07 43895861.1123 +UniRef50_G2DUQ1 1.16748243974e-05 1.88500024592e-05 2896707432.88 +UniRef50_U4V185 3.29660119324e-07 3.97646479548e-07 27446927.9089 +UniRef50_UPI00037D808D hypothetical protein 5.55384818328e-08 6.63333306831e-08 4358012.94856 +UniRef50_Q4SPK5 Chromosome 16 SCAF14537, whole genome shotgun sequence 4.18268952613e-08 5.65921504708e-07 211583425.198 +UniRef50_UPI000378DA6C Cro Cl family transcriptional regulator 1.27632568505e-06 1.91813356963e-07 -437830935.313 +UniRef50_V8G168 3.87094723116e-06 2.40747314022e-06 -590822449.359 +UniRef50_I7DG40 Glutaredoxin like protein 3.21727580236e-06 9.77340382507e-07 -904289416.092 +UniRef50_Q7TUW5 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.49276014882e-07 1.30625408202e-07 -7529478.7854 +UniRef50_D2S8K3 4.90348795094e-07 1.71963377846e-06 496277432.81 +UniRef50_UPI0004561009 hypothetical protein PFL1_01934 8.73329464073e-07 4.58156026005e-07 -167610611.699 +UniRef50_UPI00036D6D03 hypothetical protein 2.13424083342e-06 1.08427538078e-06 -423883937.756 +UniRef50_Q2FZ95 Cell division protein FtsL 7.50719668041e-05 4.88082571781e-05 -10602981868.0 +UniRef50_O26874 Conserved protein 2.93914635062e-05 7.05699444334e-06 -9016699235.45 +UniRef50_C6B1R5 9.06793591697e-06 2.60760956937e-06 -2608113023.65 +UniRef50_Q9RXD2 S layer like array related protein 1.34496195558e-06 0.000405853643418 1.63305118586e+11 +UniRef50_K2KNE0 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 5.64234542586e-07 5.38749785522e-07 -10288509.1599 +UniRef50_A0A031H669 3.61218689857e-06 3.38659683702e-06 -91073476.1491 +UniRef50_UPI00046687D5 hypothetical protein 2.26460989201e-07 4.07280291537e-07 72998971.2554 +UniRef50_Q8CR42 0.000127424614757 2.69513482299e-05 -40562290642.6 +UniRef50_D8TXA0 8.32366856429e-08 6.64450417279e-08 -6778992.70513 +UniRef50_Q5UWH2 Dihydrolipoyl dehydrogenase 3 9.07273082519e-08 2.17368376482e-07 51126553.3051 +UniRef50_D3HEP6 Glycosyl hydrolases family 25 5.04380359101e-05 1.8616814278e-05 -12846617663.2 +UniRef50_UPI00036358BA MULTISPECIES 1.02127141165e-06 1.06583978818e-06 17992800.5206 +UniRef50_R7PXM1 3.23537694379e-05 3.73112658173e-06 -11555312160.4 +UniRef50_F0MJV4 Fic family protein 1.69557089412e-06 4.84363764456e-05 18869836775.3 +UniRef50_G7M7B2 Cell wall hydrolase autolysin 5.8757237032e-06 1.71835300373e-05 4565100179.46 +UniRef50_UPI0002C378DF 3.77392201137e-07 2.99508845251e-07 -31442466.5074 +UniRef50_UPI000474191D hypothetical protein, partial 8.76669476145e-08 2.80333822198e-07 77781981.5576 +UniRef50_X6GHK4 7.12364125459e-06 2.13512444986e-07 -2789703797.25 +UniRef50_A1B939 SufBD protein 8.51433314888e-05 2.02966807698e-06 -33554005838.7 +UniRef50_UPI0003B6276B heme oxygenase 2.22522502208e-06 2.67531080934e-07 -790345067.648 +UniRef50_UPI00047A5C79 hypothetical protein 3.30887514775e-06 4.13576907693e-07 -1168867428.82 +UniRef50_Q9X4A7 Aminopeptidase PepS 8.2040041286e-06 5.74308618846e-05 19873486557.6 +UniRef50_Q59258 Citrate synthase 6.56313169784e-08 2.9250951951e-07 91593514.4708 +UniRef50_G3VAE4 9.6521684811e-08 3.14443169206e-09 -37697542.9519 +UniRef50_UPI0003675D9F hypothetical protein 7.64423464683e-07 8.86073252375e-07 49111512.102 +UniRef50_I6TZP9 1.73375642168e-05 1.35661747762e-05 -1522556197.32 +UniRef50_C0AXX7 1.63315694798e-07 7.59499667569e-07 240686785.808 +UniRef50_UPI000470AA89 excinuclease ABC subunit C 3.67047242345e-08 1.67893737923e-08 -8040071.36235 +UniRef50_V9QTM2 Sugar ABC transporter substrate binding protein 1.42626947925e-06 4.49157376054e-06 1237500953.87 +UniRef50_B8F6Y2 L fucose mutarotase 1.18738011748e-05 1.99089913615e-05 3243904881.24 +UniRef50_I4DZ32 Transcriptional regulator homolog 5.96871315487e-05 2.1603313054e-05 -15374904867.3 +UniRef50_UPI0003B5B687 hypothetical protein 4.34049711344e-08 7.58934387096e-08 13115993.0384 +UniRef50_I1ES83 1.89472225223e-06 3.02285984705e-07 -642886062.588 +UniRef50_UPI000375CE7A hypothetical protein 1.19127155952e-07 2.19714098983e-07 40608183.2422 +UniRef50_UPI00037C6964 hypothetical protein 5.92612019032e-07 1.57094111867e-06 394963462.972 +UniRef50_P67661 1.97101421588e-05 2.68877121583e-06 -6871736325.4 +UniRef50_UPI0004656A3F hypothetical protein 8.9779180208e-07 1.1341217727e-07 -316663679.956 +UniRef50_Q8E6C2 1.88115941288e-06 4.48423643278e-06 1050894136.28 +UniRef50_UPI00039C9CFD endoribonuclease L PSP 5.72403086017e-07 7.11883674033e-07 56310025.0013 +UniRef50_G7M0U9 Short chain dehydrogenase reductase SDR 1.54075913818e-06 1.22799088034e-05 4335526504.03 +UniRef50_I0H6C5 7.84765897393e-08 7.68029581106e-08 -675665.626276 +UniRef50_Q87JM4 Macrolide export ATP binding permease protein MacB 2.07128529163e-08 1.90765594437e-07 68652378.5338 +UniRef50_K1E5Y4 2.07527503164e-08 2.17400149488e-07 79388968.1807 +UniRef50_A6M300 1.81483648491e-06 2.02722999723e-05 7451504508.41 +UniRef50_Q9HVX2 Putative GTP cyclohydrolase 1 type 2 1.2498306902e-05 3.02005793768e-07 -4923796422.83 +UniRef50_A0A018D403 2.4832531728e-06 6.03674852426e-07 -758808832.953 +UniRef50_O69077 Aspartokinase 7.3249904786e-05 2.91967624779e-05 -17784794142.6 +UniRef50_UPI00038109FF hypothetical protein 2.36473710193e-07 5.65197891308e-07 132709985.815 +UniRef50_R6JM85 L serine dehydratase 1.58609077523e-07 3.72512533336e-07 86355450.0023 +UniRef50_UPI0003B79E51 ATPase P 2.26840390365e-08 3.41247446427e-08 4618753.24647 +UniRef50_UPI0003B531E1 cell division protein FtsE 3.28760655411e-07 8.61413447351e-07 215038468.491 +UniRef50_B9AD59 1.73290851276e-05 6.05119126568e-06 -4553024147.37 +UniRef50_A6QII5 4.81197339144e-05 1.88500024592e-05 -11816549768.5 +UniRef50_D8JRT9 Peptidase S15 2.40311109468e-07 3.57069913224e-07 47136961.8679 +UniRef50_UPI0003C1B2C2 PREDICTED 4.02743669605e-08 2.76399753623e-08 -5100658.92961 +UniRef50_U5MNB4 ComEC Rec2 like protein 5.26061031377e-06 9.94448960014e-06 1890939545.57 +UniRef50_M1MHX3 Transcriptional regulator 2.91120299886e-06 3.96398262003e-06 425020052.125 +UniRef50_Q8CN85 Copper export proteins 4.16544358147e-05 6.65150916532e-05 10036551836.6 +UniRef50_Q8Z9C3 Poly polymerase I 2.14416578597e-05 3.05177775745e-06 -7424220266.5 +UniRef50_Q4A263 Putative membrane protein 5.64316707281e-07 1.59997834917e-07 -163228490.324 +UniRef50_UPI0003162EAB hypothetical protein 4.62102484459e-08 1.55582707478e-07 44155003.8622 +UniRef50_C0QR28 Biotin synthase 3.06764826482e-08 2.72090432723e-07 97461774.1276 +UniRef50_Q1LF13 Putrescine transporter subunit 3.43217592092e-06 5.96599404435e-06 1022933469.87 +UniRef50_A6E2L5 1.47090805718e-05 2.75892599174e-05 5199886459.39 +UniRef50_T0UNE5 8.35859699479e-07 1.89216650818e-07 -261057733.947 +UniRef50_P30851 Ribonuclease R 3.41109340536e-05 1.83637485414e-05 -6357332030.97 +UniRef50_Q6GDQ0 ATP dependent Clp protease ATP binding subunit ClpL 0.000170446599511 9.17682097626e-05 -31763431433.8 +UniRef50_Q9Z9G7 Glutamyl tRNA amidotransferase subunit A 4.65439644437e-08 3.62192851195e-07 127431329.029 +UniRef50_D8TTJ3 1.66348275902e-07 2.18216501135e-07 20939839.0213 +UniRef50_W1DFX7 Aspartokinase 1.629644029e-05 3.34116956942e-06 -5230201768.96 +UniRef50_UPI000477F71F aldehyde dehydrogenase 3.08882068764e-07 2.31301082623e-07 -31320396.1309 +UniRef50_UPI00037E43F6 hypothetical protein 4.3590913564e-07 3.14085481731e-07 -49181704.0274 +UniRef50_P08394 RecBCD enzyme subunit RecB 1.31076499281e-06 1.08972851112e-06 -89235140.0809 +UniRef50_A0A037ZMW4 2.83210444089e-06 3.86806325102e-07 -987196856.527 +UniRef50_Q89XW7 Shikimate kinase 3.79222910602e-07 1.24182022537e-07 -102963136.215 +UniRef50_V5EQM5 2.96594350358e-07 1.19258481106e-07 -71592666.5729 +UniRef50_R1DWA7 9.51419286462e-07 1.0576705467e-07 -341400183.294 +UniRef50_W8S8B2 Pe pgrs family protein 1.50431372622e-07 4.08294216261e-07 104102394.31 +UniRef50_R6BXV0 1.12013646546e-06 2.08188669737e-05 7952619236.77 +UniRef50_UPI00047A0085 6 phospho beta glucosidase 2.99715528178e-08 1.47404777137e-08 -6148971.92583 +UniRef50_N9KV58 1.74762031871e-06 7.97836606036e-05 31504107072.9 +UniRef50_Q6AAJ1 DNA or RNA helicase of superfamily II 2.29794868266e-06 4.88398295725e-05 18789528448.3 +UniRef50_UPI0004796361 hypothetical protein 1.07217101758e-06 6.27243221659e-07 -179622811.091 +UniRef50_A6LYE4 Peptidoglycan binding domain 1 protein 1.65898485148e-06 4.2213379478e-06 1034453388.59 +UniRef50_UPI000477452D histidine kinase 4.60630914106e-07 6.86164329904e-07 91050607.5639 +UniRef50_A0A024C8M9 Membrane protein 5.85552206083e-07 4.22318771014e-05 16813132418.1 +UniRef50_A4FWA2 50S ribosomal protein L18P 2.32842271831e-05 1.5226509923e-05 -3252999337.21 +UniRef50_P31826 Inner membrane ABC transporter ATP binding protein YddA 1.79919530112e-05 3.28421544177e-06 -5937694141.0 +UniRef50_UPI00036700D3 hypothetical protein 3.01297876521e-06 2.24584673373e-06 -309700614.877 +UniRef50_A4W3M3 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 2.60361561351e-05 2.85951972995e-05 1033116321.03 +UniRef50_Q5NNR3 7 cyano 7 deazaguanine synthase 8.0830832241e-05 3.91654925827e-05 -16820808911.3 +UniRef50_A0A017T5I2 EBNA 1 protein 1.21079502275e-07 1.11053149746e-07 -4047761.55314 +UniRef50_UPI000414E366 sodium 6.93968831996e-08 7.96343345451e-08 4132984.73583 +UniRef50_Q6FA05 1.4964889036e-06 5.59641518848e-05 21989263938.9 +UniRef50_R7Q4F8 Stackhouse genomic scaffold, scaffold_111 2.75747092235e-07 1.47622324686e-06 484646955.119 +UniRef50_G4RGP8 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components 4.63444876936e-05 2.7685941112e-06 -17592122975.6 +UniRef50_UPI00037A37E9 hypothetical protein 1.50223176476e-06 8.87730943536e-07 -248081522.301 +UniRef50_F5LFP9 Topology modulation protein 5.56789919968e-07 2.07914723689e-06 614594330.266 +UniRef50_E9AEM9 Proteophosphoglycan 5 7.07725029937e-08 3.21608774848e-07 101265681.055 +UniRef50_K8G8E5 3.155270097e-07 2.63855588771e-07 -20860386.7087 +UniRef50_I2BVX5 4.98236840259e-06 6.07647541518e-07 -1766128495.48 +UniRef50_UPI00036A1C3B hypothetical protein 1.02715912234e-07 1.63877532203e-07 24691696.519 +UniRef50_Q2LWY9 Ribonuclease H 1.34815721732e-07 1.66990883702e-07 12989507.7209 +UniRef50_Q3IW30 PreQ biosynthesis protein QueC 9.84280689209e-05 7.05936347077e-06 -36886667610.3 +UniRef50_M3G510 Hemolysin 1.88898297824e-08 1.40381891147e-07 49047836.0483 +UniRef50_U6JRA6 1.27667208899e-07 1.68595127265e-07 16523102.8864 +UniRef50_Q5HL91 Perfringolysin O regulator protein, putative 0.000247394349782 6.0734506343e-05 -75356869370.2 +UniRef50_Q2S3M1 4 hydroxy tetrahydrodipicolinate synthase 4.99095830441e-07 1.93398663342e-07 -123413697.684 +UniRef50_UPI00046FF4AE leucine isoleucine valine transporter ATP binding subunit, partial 4.90987283162e-07 3.49846683613e-07 -56980192.0279 +UniRef50_UPI000370E248 hypothetical protein 2.39486552724e-06 3.04307807035e-07 -843983805.677 +UniRef50_D8U8Q0 2.57057052498e-07 1.9713910309e-07 -24189611.4519 +UniRef50_Q8NYT6 0.000129668763468 1.97234011225e-05 -44386291960.4 +UniRef50_B9KNI6 2.93656106939e-05 3.88149210305e-05 3814802538.96 +UniRef50_Q9RWM5 8.62679536592e-06 0.000561989170929 2.23399181535e+11 +UniRef50_UPI00046849C9 ABC transporter ATP binding protein 5.98464756926e-07 2.41602845182e-07 -144069532.959 +UniRef50_D3SC43 UPF0125 protein TK90_2052 3.17473757718e-07 2.66451856724e-07 -20598167.5404 +UniRef50_R6PLE5 1.81447450763e-07 3.10154520357e-08 -60731243.8943 +UniRef50_A8FDI9 tRNA dimethylallyltransferase 2.58976472945e-07 8.74841575132e-08 -69233552.1873 +UniRef50_UPI00047E1B1C ribokinase, partial 8.04344230477e-08 1.28483066712e-07 19397827.0704 +UniRef50_C6NRJ9 Amino acid permease family protein 1.3939614933e-07 2.50653179639e-07 44915828.413 +UniRef50_Q8DWY0 UPF0246 protein SAG2081 6.37544225428e-05 4.76749063115e-05 -6491498020.43 +UniRef50_X5ENZ1 1.84139506761e-06 1.81463993961e-05 6582530332.32 +UniRef50_UPI0002558C15 response regulator receiver GGDEF EAL domain containing protein 5.78013895782e-08 3.03772821982e-07 99301685.6704 +UniRef50_Q3JNE0 4.39325825196e-07 2.29669505017e-06 749842748.604 +UniRef50_D2PRN7 CutC family protein 5.3926569836e-06 4.83246819892e-05 17332185330.0 +UniRef50_F0NB13 Transporter, gluconate 1.67731530739e-06 2.56544701727e-05 9679871651.9 +UniRef50_UPI00040B5085 phosphodiesterase 3.45327995097e-07 4.05214587922e-07 24176952.4146 +UniRef50_W0AGC9 8.1788704378e-07 4.22660245031e-07 -159557908.633 +UniRef50_P76553 Ethanolamine utilization protein EutG 3.41954089383e-05 1.41422918387e-05 -8095689452.53 +UniRef50_G8AHE6 2.5861854033e-06 2.50150935068e-06 -34184761.5347 +UniRef50_Q5HQB1 Probable quinol oxidase subunit 3 0.00026089914596 8.30162082321e-05 -71813524829.9 +UniRef50_F2ABA7 3.79458296193e-06 1.51722601437e-06 -919396946.042 +UniRef50_Q59409 RNA polymerase sigma factor RpoS 3.0099296252e-05 4.76036188385e-06 -10229638748.1 +UniRef50_F9V7A7 Mannose specific PTS system IID component 2.30174383446e-06 1.21154800667e-05 3961925745.04 +UniRef50_UPI00046D26DA hypothetical protein 7.5891429302e-08 1.18805795911e-06 448995275.902 +UniRef50_Q11CZ9 1.5076949652e-06 3.10485181216e-07 -483328281.209 +UniRef50_W7E2M1 Heme oxygenase 2.81695210041e-07 3.8599369285e-07 42106577.3963 +UniRef50_A2RGD6 7.75884795102e-05 5.73497447903e-05 -8170625563.63 +UniRef50_P75978 3.81771462607e-05 7.33528486484e-06 -12451237917.7 +UniRef50_W8YNB5 8.82664042509e-07 2.21881559628e-05 8601288536.01 +UniRef50_J3L401 1.98207177051e-08 6.97986207268e-08 20176692.7477 +UniRef50_E8SGA0 Teichoic acid biosynthesis protein F 0.000101883950395 2.86820365136e-05 -29552510922.4 +UniRef50_U4T249 3.54624377764e-08 1.26727904205e-07 36844988.7504 +UniRef50_UPI00029A6F6B transporter, MFS family protein, partial 2.28895641105e-07 4.37178314891e-07 84086271.3232 +UniRef50_UPI00047C75A1 elongation factor G 6.09933070649e-08 1.46199541709e-06 565601744.048 +UniRef50_H9UTM9 1.29476304864e-05 1.30189609489e-05 28796983.0345 +UniRef50_Q9LEU8 Argininosuccinate lyase, chloroplastic 2.86177146523e-07 2.7868395681e-07 -3025092.63892 +UniRef50_M0RG67 8.73173073326e-08 6.49664027681e-07 227026271.775 +UniRef50_UPI0004784289 mannose 1 phosphate guanyltransferase 3.65642446357e-08 1.8896222136e-07 61524933.337 +UniRef50_C6SR62 7.49738775457e-05 4.02304148061e-05 -14026362258.2 +UniRef50_D7GIE6 Thiamine phosphate synthase 2.94910928794e-06 1.5824862537e-05 5198099589.92 +UniRef50_P37615 6.3023747704e-06 4.71250061484e-06 -641851706.549 +UniRef50_F9YWL1 ABC transporter 2.43371238756e-06 2.3474869462e-05 8494573314.97 +UniRef50_P37661 Phosphoethanolamine transferase EptB 3.15040508671e-05 9.7207538931e-06 -8794184299.52 +UniRef50_P77817 Cell division protein FtsZ 1.46984599825e-05 2.12203620496e-06 -5077256609.05 +UniRef50_UPI0003703469 ATP binding protein, partial 6.9598139847e-07 2.06367990516e-07 -197662941.023 +UniRef50_F0RP27 Peptidyl prolyl cis trans isomerase 1.69032990832e-05 0.000530693842426 2.07423547267e+11 +UniRef50_Q8CNF4 NAD dependent protein deacetylase 0.000210545623379 5.30952965244e-05 -63564629084.1 +UniRef50_UPI00035FE3BB Fis family transcriptional regulator 1.01379527657e-06 5.10400329082e-07 -203226717.652 +UniRef50_B9KQH1 Flagellar biosynthesis type III secretory pathway protein 6.71231089254e-05 2.19384551172e-05 -18241599220.4 +UniRef50_UPI0003A911E9 adenylosuccinate lyase 1.75474775265e-08 1.34847889156e-07 47355615.6129 +UniRef50_UPI000366B7BC MULTISPECIES 1.97966992908e-08 7.11720013531e-07 279337932.813 +UniRef50_O27441 3 isopropylmalate dehydrogenase 5.07077720367e-05 1.83143830067e-05 -13077608663.0 +UniRef50_X8AYJ2 1.37520711262e-06 3.37504805945e-06 807360331.043 +UniRef50_N6UCK5 4.65790714061e-06 7.08506573235e-07 -1594421473.64 +UniRef50_A0A059IK34 1.21897231714e-06 8.92010571816e-07 -131998468.859 +UniRef50_UPI0003C19D83 1.41152600356e-07 3.65389414495e-07 90527153.5631 +UniRef50_I0ET87 2.57376810578e-06 2.972252228e-05 10960285212.8 +UniRef50_UPI00036DA55D hypothetical protein 3.38578179153e-07 6.1097135649e-07 109968468.331 +UniRef50_F8GLJ2 Putrescine binding periplasmic protein 4.53363943361e-06 8.39896880292e-06 1560480899.32 +UniRef50_W0RQV3 3.17299169844e-07 4.33429224372e-07 46883128.089 +UniRef50_A6LS21 Sugar isomerase 2.69023209136e-06 1.77287635887e-05 6071239708.99 +UniRef50_V5G7G2 8.27762082457e-07 3.67719352379e-08 -319332428.973 +UniRef50_Q6DQL1 Succinyl CoA ligase [ADP forming] subunit alpha 2, mitochondrial 5.5605163404e-07 3.80183606123e-07 -71000081.0135 +UniRef50_UPI000366E5C2 hypothetical protein 6.60771543552e-08 1.04174098821e-07 15380203.9829 +UniRef50_P0AFA6 Bacteriophage N4 adsorption protein B 5.9198201005e-06 4.47270583598e-06 -584217786.676 +UniRef50_UPI000376010F hypothetical protein 2.87691265587e-07 3.13246839383e-06 1148471436.01 +UniRef50_I1PTF2 7.57323628834e-06 7.55384323853e-07 -2752450502.52 +UniRef50_D9SVI0 DEAD DEAH box helicase domain protein 5.04894929871e-06 1.26323618435e-05 3061516703.27 +UniRef50_A9EWC9 Probable PE_PGRS family protein 1.3268122317e-07 7.01498942776e-08 -25244664.8196 +UniRef50_UPI0002556201 beta ketoacyl synthase 1.91078720841e-07 9.25191804214e-07 296370460.338 +UniRef50_A6V1S7 3.69641128892e-06 5.30757093494e-06 650444920.25 +UniRef50_UPI0004645B86 hypothetical protein 1.50797276133e-07 5.10099643814e-07 145054774.969 +UniRef50_W8AF54 6.76094308422e-07 2.02633648692e-06 545109336.795 +UniRef50_G7ZTD1 Fibrinogen and keratin 10 binding surface anchored protein 2.71866640193e-05 3.37282541898e-06 -9613938871.6 +UniRef50_Q16AI7 Signal peptidase I, putative 0.000111845892746 4.52837821333e-05 -26871940863.3 +UniRef50_UPI00035D6F7F hypothetical protein 6.79353137527e-07 2.95117110084e-07 -155120799.385 +UniRef50_M3YNX9 1.56185009798e-07 2.44374858176e-07 35603324.0013 +UniRef50_UPI0004636F37 ABC transporter permease 6.52577239647e-08 2.27147471354e-06 890676872.02 +UniRef50_Q9RUH1 Ornithine aminotransferase, putative 8.69115860788e-07 0.000362836088562 1.46130508714e+11 +UniRef50_I6TPB9 GntR family transcriptional regulator 3.61201470119e-05 2.53081550946e-05 -4364933815.07 +UniRef50_G5MQF2 2.23792707901e-06 2.60482806462e-05 9612531920.97 +UniRef50_UPI00046D6B05 hypothetical protein 8.43040171975e-08 1.57015612718e-07 29354563.3832 +UniRef50_P80885 Pyruvate kinase 0.000162808234147 9.7943942454e-05 -26186510530.8 +UniRef50_A0RMD0 NADH quinone oxidoreductase subunit B 9.47304045872e-08 1.41267578419e-06 532070722.753 +UniRef50_M1L621 ABC transport system permease protein 7.88813562631e-08 1.96448601012e-07 47463339.4175 +UniRef50_G7U7Q7 PAS domain S box 1.21769673823e-06 5.22266260856e-05 20592930727.5 +UniRef50_X8JCV2 1.9258538301e-07 1.05896425536e-07 -34997395.9254 +UniRef50_B8D004 2.27865914968e-07 3.04972289643e-07 31128789.6579 +UniRef50_D6SDZ2 Gamma glutamyltransferase 0.000146082198817 1.6882235684e-05 -52159610578.6 +UniRef50_UPI0004728A87 5 amino 6 uracil reductase, partial 1.08023243422e-07 1.9557852978e-07 35347143.5269 +UniRef50_UPI00046350E3 DNA primase 3.69449663589e-08 4.07880808902e-08 1551512.4966 +UniRef50_P26394 dTDP 4 dehydrorhamnose 3,5 epimerase 3.21656205519e-05 2.72320374059e-05 -1991748057.91 +UniRef50_O25396 Ferrous iron transport protein B 5.98234530714e-07 3.12630829952e-05 12379775625.1 +UniRef50_UPI0004766C33 NTP pyrophosphohydrolase 8.27448867561e-06 6.81759308144e-07 -3065278018.91 +UniRef50_UPI0002FD23FE hypothetical protein 1.08723016096e-06 1.83768788391e-06 302968991.907 +UniRef50_U5NN27 Antitoxin of type II toxin antitoxin system 1.39402406234e-05 8.16629530436e-06 -2331012579.57 +UniRef50_UPI00036547B5 hypothetical protein 1.11005594313e-05 3.00971465453e-06 -3266373322.21 +UniRef50_D8LJ34 3.92171160258e-07 8.84112993479e-08 -122631583.402 +UniRef50_C1D1L2 Glutamyl tRNA amidotransferase subunit A 2.97430987881e-08 4.82427303381e-06 1935610570.27 +UniRef50_J7M137 Adenine specific methyltransferase 6.55952188607e-05 4.41224264668e-05 -8668829790.21 +UniRef50_A6LWI4 1.15546442156e-05 1.02363418921e-05 -532214825.386 +UniRef50_Q0RS03 Glutamate 1 semialdehyde 2,1 aminomutase 5.84505817458e-06 2.82402259035e-05 9041204031.77 +UniRef50_J9YUJ8 Sensor histidine kinase 4.59054732756e-06 9.05474431312e-06 1802251104.93 +UniRef50_UPI0003804843 hypothetical protein 3.22293065206e-08 5.95066829984e-08 11012211.6151 +UniRef50_H2IGF7 4.3954923605e-07 2.47695625001e-06 822526213.331 +UniRef50_Q83MA0 Taurine import ATP binding protein TauB 4.93379543622e-05 1.34704237088e-05 -14480162268.9 +UniRef50_W7W7I1 5.69050295571e-06 1.40276079485e-06 -1731014126.85 +UniRef50_Q46786 1.61031644449e-05 9.84389017326e-06 -2526945833.39 +UniRef50_Q46787 6.50425965803e-05 2.9913578176e-05 -14182015811.3 +UniRef50_L2TVA4 Sugar transporter family protein 9.90950248786e-08 6.80398639023e-07 234679402.427 +UniRef50_UPI000478BD3D hypothetical protein 1.02797732095e-07 1.07134500423e-07 1750806.59215 +UniRef50_D4HA38 OmpA family protein 1.0673496386e-06 3.98974969212e-05 15676206957.5 +UniRef50_Q839B0 33 kDa chaperonin 0.000293312593117 7.6271929072e-05 -87621979463.4 +UniRef50_T2EL78 1.78628719397e-06 6.69905569354e-07 -450696961.402 +UniRef50_Q83H98 Glutamate 1 semialdehyde 2,1 aminomutase 5.11846138901e-08 5.52786434325e-06 2211002813.16 +UniRef50_M2M947 Putative 40K cell wall protein 1.88587855053e-05 7.44226661808e-06 -4608988771.2 +UniRef50_Q9ZLC0 Anaerobic C4 dicarboxylate transporter DcuA 2.82890113091e-05 3.37844555296e-05 2218578268.5 +UniRef50_W1CHR3 Tripeptide aminopeptidase 7.68365044158e-06 2.79921047585e-06 -1971908352.98 +UniRef50_UPI000470943C biopolymer transporter ExbD 3.79343583738e-07 5.93132699173e-07 86309289.3886 +UniRef50_UPI000364FFFE hypothetical protein, partial 2.88187227331e-06 1.58625800386e-06 -523055379.552 +UniRef50_UPI00046D09E1 hypothetical protein 2.41636368177e-07 2.07351545933e-07 -13841203.462 +UniRef50_Q8XAF1 Propionate kinase 4.02044731908e-05 1.95492503895e-05 -8338766912.97 +UniRef50_UPI000328F876 PREDICTED 2.28980102878e-08 8.08557099813e-08 23398234.5872 +UniRef50_W8WCZ2 1.76015318437e-06 1.40252969254e-05 4951589038.48 +UniRef50_D8JKZ8 AFG1 like ATPase family protein 5.1599525936e-06 6.43922794644e-05 23912817220.1 +UniRef50_UPI00046AD3AE dihydroxy acid dehydratase 3.33977139462e-07 3.0743133119e-08 -122419289.46 +UniRef50_UPI0003EA9F92 PREDICTED 2.11094360157e-07 1.07885088205e-06 350323956.458 +UniRef50_UPI000475069F ribose ABC transporter permease 7.94549786454e-07 1.1023475423e-06 124261731.138 +UniRef50_Q6F700 1.12438909664e-06 7.98248313796e-07 -131667036.232 +UniRef50_UPI00016C4E46 4 alpha glucanotransferase 1.17715046097e-07 6.46693377851e-06 2563257515.95 +UniRef50_O84917 Ribulose bisphosphate carboxylase 0.000110841365328 2.4996159848e-05 -34656762891.4 +UniRef50_UPI000329D36D PREDICTED 5.49703877593e-07 3.44139745399e-07 -82988762.7223 +UniRef50_E6VFF6 Diguanylate cyclase 5.81069090713e-08 7.69272881805e-06 3082190552.0 +UniRef50_Q8XJR3 DNA polymerase III PolC type 3.54555825554e-08 1.71413548628e-08 -7393678.46035 +UniRef50_Q9RS27 Alanine tRNA ligase 3.81266927201e-06 0.000329410323152 1.31447768404e+11 +UniRef50_K2HSX3 5.26887385253e-07 1.82775281575e-07 -138922278.985 +UniRef50_M1MML8 1.06375922176e-05 3.56867642859e-05 10112658151.9 +UniRef50_S2ZVN1 1.68302866869e-08 2.4819222001e-08 3225231.22156 +UniRef50_K4MTL7 Minor ampullate spidroin 9.13467432813e-08 2.91167304553e-07 80670012.6595 +UniRef50_Q67K77 Holo [acyl carrier protein] synthase 1.34932167629e-07 3.67226116839e-07 93779917.8634 +UniRef50_UPI0003C1325D PREDICTED 6.83247894327e-07 8.71670665404e-07 76068584.8912 +UniRef50_U3U4J5 AraC family transcriptional regulator 1.53487891056e-07 2.30361681009e-07 31034892.3515 +UniRef50_H5WT01 Activator of osmoprotectant transporter ProP 2.69493140269e-06 1.20535730883e-06 -601359340.821 +UniRef50_A6TYC4 0.00011906716984 3.02557061513e-05 -35854277730.3 +UniRef50_P77221 3.12616327745e-05 3.07564013901e-05 -203968109.769 +UniRef50_P75821 5.24809261963e-05 4.59881820649e-06 -19330594575.0 +UniRef50_F0DGH5 Metallo beta lactamase superfamily protein 2.08253136272e-05 1.22273265162e-07 -8358071449.01 +UniRef50_P75822 2.74132403307e-05 2.81865394675e-06 -9929136332.73 +UniRef50_V6UL61 3.37180843685e-07 8.71173012871e-07 215579191.521 +UniRef50_Q8G692 Prolipoprotein diacylglyceryl transferase 1.05381430643e-07 5.46566520379e-08 -20478215.5859 +UniRef50_Q51547 Phosphate specific transport system accessory protein PhoU homolog 2.20280175432e-05 0.000134273784804 45314993653.7 +UniRef50_L5MQQ0 4.47422346904e-08 5.49539336623e-08 4122588.18659 +UniRef50_Q9JV93 4 hydroxybenzoate octaprenyltransferase 1.40852980911e-06 2.03775650639e-05 7658032308.6 +UniRef50_UPI000467BA9A glycogen debranching protein 4.06588507317e-07 1.33848801421e-06 376219266.626 +UniRef50_UPI00046F258D bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial 4.89119721737e-06 9.3854875063e-05 35915728453.4 +UniRef50_C6AA47 N acetylmuramoyl L alanine amidase 1.76946557275e-06 3.29962799096e-06 617745345.436 +UniRef50_UPI0003B42974 ABC transporter ATP binding protein 3.37840811763e-07 3.96684421356e-07 23755887.285 +UniRef50_UPI0004075F22 hypothetical protein 1.56260016227e-07 5.83697657181e-08 -39519495.3789 +UniRef50_Q1LZ65 RpiR like protein 4.80414684853e-05 1.0339510549e-05 -15220743073.9 +UniRef50_UPI0003808D6C hypothetical protein 3.9472056073e-07 4.0607070225e-07 4582191.41352 +UniRef50_G0DU58 Triacylglycerol lipase 1.84439408233e-06 7.60196822075e-05 29945474049.3 +UniRef50_R4NRW2 Late competence protein ComGD, access of DNA to ComEA 1.18278288562e-07 4.32858633692e-07 126999945.664 +UniRef50_UPI00037397C6 hypothetical protein 6.77359588533e-08 2.29059705552e-08 -18098416.4018 +UniRef50_P39708 NADP specific glutamate dehydrogenase 2 7.82741812236e-08 3.50298410794e-07 109819519.59 +UniRef50_UPI0004645BC1 type III secretion system protein InvA 1.50568089289e-08 3.24586139206e-08 7025322.21931 +UniRef50_X1BI18 Marine sediment metagenome DNA, contig 1.8536218514e-07 7.07761006701e-07 210898814.819 +UniRef50_I5QRE7 Transcriptional regulator, LysR family 2.31031039916e-06 5.41879770379e-07 -713937145.923 +UniRef50_I0W3J8 Transposase, IS4 like family protein 7.41643275549e-07 6.22202366967e-07 -48219760.4993 +UniRef50_UPI0003B748CE hypothetical protein 1.10426172816e-05 2.54991658574e-08 -4447745778.55 +UniRef50_A6M3G1 Aminoglycoside phosphotransferase 1.18210643688e-06 2.14028413028e-05 8163358801.68 +UniRef50_D3QEQ2 0.000205609255763 3.1036663864e-05 -70477097596.2 +UniRef50_I1EWK9 8.78541112076e-08 4.99101052959e-07 166025436.952 +UniRef50_P67734 Coenzyme A biosynthesis bifunctional protein CoaBC 4.48609717032e-06 7.15588406959e-05 27078089636.4 +UniRef50_UPI0003735E21 hypothetical protein 7.69874388257e-07 2.29304389204e-07 -218234742.158 +UniRef50_B9MRP4 Argininosuccinate lyase 1.03449003462e-07 4.92613811524e-08 -21876208.0833 +UniRef50_UPI0003762CE6 MULTISPECIES 1.32684620204e-07 1.07420369167e-06 380102802.889 +UniRef50_T9DD40 Hydrolase 4.91596219502e-06 8.78310896958e-06 1561214608.12 +UniRef50_UPI0003C14BCE PREDICTED 4.18855225649e-07 7.53107502809e-06 2871290411.0 +UniRef50_UPI0003A2FE59 hypothetical protein 6.89801096769e-08 1.01875626519e-07 13280323.8225 +UniRef50_G0NWR7 6.21658168988e-09 7.95263326013e-07 318547853.376 +UniRef50_UPI000255BEAA ferrochelatase, partial 8.41272598739e-08 4.23104912254e-07 136849437.989 +UniRef50_Q6GEY2 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.000250145942039 4.29808574613e-05 -83635086845.6 +UniRef50_UPI00022CA988 PREDICTED 1.54565977503e-05 1.44089832261e-06 -5658309850.94 +UniRef50_UPI00037E7536 hypothetical protein 4.24485965656e-08 5.02530908542e-08 3150770.11622 +UniRef50_Q1H2B5 Dihydroxyacetone kinase DhaK subunit 1.73423884613e-06 8.73054076727e-05 34546130931.6 +UniRef50_R9ZDS5 LysR family transcriptional regulator 4.37265287315e-06 1.72304548347e-05 5190852434.87 +UniRef50_Q7UFW4 Argininosuccinate synthase 8.49139270096e-08 5.07727025993e-07 170694836.56 +UniRef50_UPI0004076A57 polyhydroxyalkanoate synthesis repressor 3.21861359658e-07 1.08785324585e-07 -86021410.096 +UniRef50_R5I2I4 Phospho 2 dehydro 3 deoxyheptonate aldolase 7.24827343602e-05 8.90513007173e-05 6688933557.53 +UniRef50_A5UNE8 8.78160099278e-05 4.66289534524e-06 -33569932760.5 +UniRef50_E0NCD7 5.55302392987e-06 4.00995073122e-05 13946839274.5 +UniRef50_A5UK92 Uridylate kinase 3.11337724788e-05 1.32865377874e-05 -7205147655.12 +UniRef50_UPI0003C11674 PREDICTED 5.2213613294e-07 4.46291662904e-07 -30619343.2698 +UniRef50_UPI0002492155 penicillin binding protein 2B 3.25657145973e-08 1.53861627826e-07 48968648.6388 +UniRef50_C3PHK3 Aminomethyltransferase 1.04093688114e-07 5.55398258339e-07 182197193.13 +UniRef50_R1HV07 DNA repair protein RadA 5.16891827567e-07 5.94204639029e-06 2190201471.1 +UniRef50_UPI00039EAFFC secretion protein HylD 2.18010124453e-07 4.92560984091e-08 -68128071.1587 +UniRef50_R7PRX3 1.03854126869e-06 3.58872699094e-07 -274390542.017 +UniRef50_Q5HPN8 tRNA dimethylallyltransferase 0.000166145798109 8.2930809458e-05 -33594912081.2 +UniRef50_D4HD87 Histidine kinase 2.31592880319e-06 4.73638938392e-05 18186416285.7 +UniRef50_Q0C093 Guanylate kinase 9.74120548599e-08 2.6746171033e-07 68651132.6572 +UniRef50_Q11SW8 Lipoprotein releasing system ATP binding protein LolD 1.58468233952e-07 5.4641967468e-07 156620757.321 +UniRef50_P37317 Integrase 5.25644915044e-05 2.06325489827e-05 -12891317045.0 +UniRef50_A3CQT5 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase 0.000257959937502 0.000121493355844 -55093233648.6 +UniRef50_Q5PHV8 Gamma aminobutyraldehyde dehydrogenase 2.49124149289e-05 4.90281934934e-06 -8078119280.83 +UniRef50_A5IU13 Transcriptional regulator, XRE family 0.000122434679821 8.01157507904e-05 -17084670961.3 +UniRef50_Q83CY8 Putative peroxiredoxin bcp 1.84484904834e-07 1.19281998397e-05 4741081830.81 +UniRef50_G2JM28 Permease 1.32761778031e-06 5.75878201728e-05 22712934096.2 +UniRef50_P33363 Periplasmic beta glucosidase 3.57985835018e-05 0.000143838529115 43617051843.2 +UniRef50_O32142 5 hydroxyisourate hydrolase 2.61692489581e-07 2.95768796738e-07 13757023.3626 +UniRef50_P16326 Flagellar hook associated protein 3 3.79644108501e-05 4.23374303e-06 -13617484520.8 +UniRef50_U6A8Z3 7.66471207329e-06 2.85614530751e-06 -1941277411.1 +UniRef50_A6QES9 2.51095123551e-06 1.20537430691e-05 3852542166.44 +UniRef50_K0AB23 Nucleotide sugar dehydrogenase 2.19106800022e-05 2.21636856195e-05 102141472.432 +UniRef50_R7PW62 MATE efflux family protein 2.5136377989e-05 6.32264113912e-06 -7595336436.82 +UniRef50_UPI0004783D2F molybdenum cofactor guanylyltransferase 8.97221555477e-08 9.29830367211e-08 1316457.74521 +UniRef50_UPI000301FF6F hypothetical protein 1.17297559195e-06 4.60145239169e-07 -287778360.83 +UniRef50_F0Y6Y0 Expressed protein 2.9157606303e-06 3.98381148276e-06 431185235.596 +UniRef50_Q1IWZ8 Glutamate 1 semialdehyde 2,1 aminomutase 4.75853129959e-08 2.47228368533e-05 9961701846.21 +UniRef50_Q2YVY3 Peptidyl tRNA hydrolase 0.000154799837399 2.34690984458e-05 -53019830924.7 +UniRef50_Q2LQB0 50S ribosomal protein L14 4.51633953667e-05 4.90831088969e-06 -16251471588.8 +UniRef50_A1VJH7 2.91531235519e-06 7.69637849186e-07 -866235128.459 +UniRef50_R1FK72 3.05783364798e-08 2.44440456934e-08 -2476488.46668 +UniRef50_UPI000395C119 PREDICTED 1.89745892444e-06 2.60000033926e-06 283624590.315 +UniRef50_B7V4B3 Transcriptional regulator Dnr 1.65232545465e-05 6.04744106207e-06 -4229214456.34 +UniRef50_P06988 Histidinol dehydrogenase 3.47506293447e-05 5.31840696352e-06 -11882149349.3 +UniRef50_E1VIL5 6.63420015524e-07 8.23102858277e-05 32961841648.1 +UniRef50_A9WHT8 Histidine ammonia lyase 3.09460586049e-08 1.12075691929e-07 32753028.5455 +UniRef50_UPI00035DFFA6 hypothetical protein 5.74886937602e-06 9.11671722432e-07 -1952836051.84 +UniRef50_M2XUJ5 9.30417190192e-07 6.09537409373e-08 -351013063.981 +UniRef50_D2ZRP6 3.90956596191e-05 4.99435917173e-06 -13767113460.6 +UniRef50_P26426 Lactose specific phosphotransferase enzyme IIA component 6.78077848386e-05 4.07497936645e-05 -10923643075.9 +UniRef50_UPI0003824A7E sarcosine oxidase subunit alpha 5.78506571621e-08 3.82133223873e-08 -7927833.02578 +UniRef50_Q45493 Ribonuclease J1 4.82676023189e-07 2.61141566327e-05 10347743255.7 +UniRef50_B9KU62 Sulfide quinone reductase 7.93928130123e-05 4.02738092392e-05 -15792821867.4 +UniRef50_A4WNN0 NnrU family protein 9.26814471448e-06 3.50177911301e-06 -2327952554.58 +UniRef50_UPI00037A9B52 hypothetical protein 3.39084576645e-08 2.19137753758e-06 870996742.687 +UniRef50_Q97FS6 Dihydroorotate dehydrogenase B ), electron transfer subunit 1.66783205682e-06 2.40060236153e-05 9018202052.6 +UniRef50_UPI0004105041 hypothetical protein 2.51322636758e-08 4.91563638151e-08 9698824.0351 +UniRef50_F5M5N5 2.75893496775e-05 1.64088591142e-06 -10475713245.8 +UniRef50_F5M5N4 1.8796929063e-05 2.71214057326e-05 3360693384.33 +UniRef50_J7L4H8 7.62216088599e-08 8.05805738426e-06 3222365050.67 +UniRef50_P15082 Glucitol operon repressor 1.80615107751e-05 9.51420880895e-06 -3450650690.92 +UniRef50_UPI00037CACA0 hypothetical protein 6.62896518257e-08 1.02566296573e-07 14645326.649 +UniRef50_Q3J0U8 6.73825664755e-06 1.05157283751e-06 -2295784037.57 +UniRef50_J0ZLP6 Putative formate dehydrogenase accessory protein 2.77693719433e-05 1.81213127968e-05 -3895039872.44 +UniRef50_UPI00035F0280 hypothetical protein 2.81564641374e-08 7.0593260943e-07 273626547.103 +UniRef50_D3E016 Tungsten formylmethanofuran dehydrogenase subunit F FwdF 5.29528123682e-05 8.15682455238e-06 -18084689989.8 +UniRef50_M4QXD0 Transcriptional regulator, LysR family 5.48029113216e-06 0.000140299073356 54427996796.3 +UniRef50_UPI00034978EE MULTISPECIES 1.83127355807e-06 5.8402496082e-08 -715729803.3 +UniRef50_A5IVE5 1.79802891376e-05 2.99713470719e-05 4840937234.9 +UniRef50_UPI0003B6AAEA aldehyde oxidase 1.72594315201e-08 2.38808014899e-08 2673128.31015 +UniRef50_P73471 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.34059865189e-07 1.38697583032e-07 -119241377.81 +UniRef50_UPI00035ED296 hypothetical protein 2.86345886837e-08 7.62847965418e-08 19236973.6461 +UniRef50_Q5XAK0 Alpha glycerophosphate oxidase 1.51342322376e-07 5.62912893038e-05 22664385511.0 +UniRef50_V1SNF4 7.25675592536e-06 4.11734172721e-06 -1267420036.74 +UniRef50_UPI0003B6CE87 pseudouridylate synthase 2.97154900291e-08 6.85951639861e-08 15696201.4837 +UniRef50_UPI00037F0084 hypothetical protein 1.42740595201e-07 1.09721347852e-05 4371959326.11 +UniRef50_P42913 4.66032084997e-06 6.65326022367e-06 804574081.279 +UniRef50_Q5HRP5 tRNA lysidine synthase 0.000226257314678 6.80934264638e-05 -63852702561.2 +UniRef50_Q7VK48 GTP cyclohydrolase 2 9.89908216082e-06 3.64217494039e-05 10707526235.8 +UniRef50_M7XY21 5.18195898667e-07 5.13766652118e-07 -1788141.1848 +UniRef50_A5UKS5 SAM dependent methyltransferase 1.65391898123e-05 1.86123973868e-06 -5925668563.41 +UniRef50_UPI000380CF2F hypothetical protein 3.05805837408e-07 3.3013586947e-07 9822332.5065 +UniRef50_UPI00037F7F53 hypothetical protein 3.11230370635e-07 4.0957922843e-08 -109112303.79 +UniRef50_X2LKW6 Acetyltransferase component of pyruvate dehydrogenase complex 3.12451601784e-05 9.70873939229e-06 -8694517352.95 +UniRef50_Q8KBE8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.11231398091e-07 2.95962832748e-08 -32957097.6268 +UniRef50_A5UP32 Purine pyrimidine phosphoribosyl transferase 3.93878852312e-05 1.32035291974e-05 -10570945849.0 +UniRef50_UPI000466F53C hypothetical protein 8.95979252485e-08 6.98561133964e-08 -7970011.70397 +UniRef50_UPI00042740A6 hypothetical protein 1.07380289279e-07 6.97176066274e-06 2771234592.19 +UniRef50_Q0FV17 Phenol hydroxylase, putative 7.35321092641e-06 7.04164799808e-07 -2684301514.28 +UniRef50_Q9RU29 2.38915182824e-06 0.000203799318796 81311755985.7 +UniRef50_Q81FQ1 Histidinol phosphate aminotransferase 1 1.19672659482e-07 4.21603393774e-06 1653751316.04 +UniRef50_B3RB46 Acyl CoA dehydrogenase 9.68319752328e-06 5.61095839466e-06 -1644012908.22 +UniRef50_C5N5E1 1.34885703018e-05 5.32102171523e-06 -3297339591.49 +UniRef50_A3M7M4 2.91870609934e-06 8.32744322765e-05 32440592733.4 +UniRef50_Q606N2 Beta hexosaminidase 5.06181037175e-08 2.82679540271e-07 93686049.6509 +UniRef50_UPI0004720773 50S ribosomal protein L7 L12 4.26340475426e-08 4.93316098297e-06 1974365737.35 +UniRef50_Q82YY1 Ribosomal RNA small subunit methyltransferase G 0.00013684831101 2.41676617498e-05 -45490560853.3 +UniRef50_UPI00034CCF2C hypothetical protein 7.67870740343e-07 1.22247515731e-07 -260646018.464 +UniRef50_UPI00040B1DFA hypothetical protein 4.64183765538e-08 5.47473993412e-07 202282301.169 +UniRef50_P00497 Amidophosphoribosyltransferase 5.55099191055e-05 0.000462611873891 1.64352054849e+11 +UniRef50_UPI00022CA5D5 PREDICTED 1.20368947609e-05 1.12373727427e-06 -4405775596.84 +UniRef50_UPI00047094BE hypothetical protein 1.24567744489e-08 3.76754720125e-07 147071551.108 +UniRef50_J8VE04 Lipoprotein 7.15700771594e-06 3.82835600961e-06 -1343817541.0 +UniRef50_A3MYE6 Recombination protein RecR 3.95369667265e-05 8.1279827118e-06 -12680192278.3 +UniRef50_G7M4Z3 Transglutaminase domain containing protein 2.57779220751e-06 8.56845342623e-06 2418503447.68 +UniRef50_Q8IV48 3 5 exoribonuclease 1 2.34321586507e-07 5.17043579261e-06 1992769877.94 +UniRef50_E3EXY1 1.98983739718e-07 2.43887343038e-07 18128135.6895 +UniRef50_Q3J3W5 Putative head portal protein, HK97 family 5.56215547599e-05 1.42642938993e-05 -16696433720.1 +UniRef50_Q4A2Z7 Putative membrane protein 5.94569914853e-08 1.54232498593e-07 38262035.2456 +UniRef50_A6LQS5 Transcriptional regulator, LysR family 3.03264442948e-06 2.82938679964e-05 10198265944.0 +UniRef50_A6LWU9 Aldo keto reductase 1.2724246815e-06 1.28603683676e-05 4678195066.14 +UniRef50_UPI000474A99F porin 2.56753754978e-06 2.37349649579e-07 -940725449.932 +UniRef50_F2MU03 3.62933948903e-08 3.68518953737e-06 1473104149.71 +UniRef50_A3MA77 A G specific adenine glycosylase 1.1268238473e-06 4.0098921305e-05 15733513985.1 +UniRef50_F5X4A4 Ribose transport system substrate binding protein 4.61500840068e-05 1.37665514854e-05 -13073629469.5 +UniRef50_R4LSC2 PE PGRS family protein PE_PGRS6 2.52289320997e-08 2.26069552683e-07 81081823.1209 +UniRef50_UPI0004726635 hypothetical protein, partial 7.37838882327e-07 3.44207147226e-06 1091731881.22 +UniRef50_Q46844 2.06827819258e-05 1.36837902621e-05 -2825578821.92 +UniRef50_Q46843 3.68475511095e-05 1.28232918258e-05 -9698888283.64 +UniRef50_Q07H98 Holliday junction ATP dependent DNA helicase RuvB 1.52802951599e-07 2.39818044027e-05 9620060300.54 +UniRef50_Q0BZG8 RND transporter, hydrophobe amphiphile efflux 1 family, permease protein 2.85297522603e-05 1.06432138039e-05 -7221015067.36 +UniRef50_Q46840 2.89466897656e-05 2.15531915208e-05 -2984845969.85 +UniRef50_UPI000225AFF4 sulfurase 6.55505892138e-07 4.37609442669e-07 -87967470.5408 +UniRef50_Q28UI8 tRNA ) methyltransferase 5.14430069696e-05 1.02433923134e-05 -16632790012.8 +UniRef50_Q1IS59 NADH quinone oxidoreductase subunit D 1 5.42922279216e-08 2.46715008583e-07 77683437.8459 +UniRef50_UPI0004148AB3 alpha amylase 2.58192284534e-07 2.81786574138e-07 9525304.24763 +UniRef50_U3TAS5 2.56212209626e-06 6.29951800019e-05 24397567073.5 +UniRef50_E8PJ04 BasH 2.22924796565e-06 8.89855179741e-05 35024570821.5 +UniRef50_UPI000468284E hypothetical protein 1.87493040823e-06 2.9336096543e-06 427401803.094 +UniRef50_A6U170 Tyrosine recombinase XerC 0.00016258464164 3.38040907669e-05 -51990288702.5 +UniRef50_U7DEQ6 2 ketogluconate reductase 4.46374300033e-06 1.98199131011e-06 -1001913611.86 +UniRef50_UPI000475888A membane protease HflC 2.86378670363e-07 1.51367561659e-07 -54505641.3564 +UniRef50_J9NV26 3.39289254085e-06 4.9893217492e-07 -1168327312.61 +UniRef50_H8LI74 7.50729999877e-05 6.76223742219e-06 -27577893115.0 +UniRef50_Q3HKK3 Succinylglutamatedesuccinylase aspartoacylase 0.00023105240929 6.9131780117e-05 -65369344986.7 +UniRef50_Q31HL9 Chemotaxis response regulator protein glutamate methylesterase 1.12484484167e-06 8.28806875331e-08 -420653715.364 +UniRef50_C4LJY5 Ribonuclease PH 1.12714861585e-05 2.63312523783e-06 -3487412308.28 +UniRef50_Q2G1Q1 0.000329801511633 6.03819836705e-05 -1.08767969588e+11 +UniRef50_P0AEK1 Exodeoxyribonuclease 10 1.65532498826e-05 3.91147953907e-06 -5103637819.64 +UniRef50_G7U431 6.84006200684e-06 6.133977976e-05 22002204843.7 +UniRef50_A0YEQ1 9.29445176944e-08 5.24804751917e-07 174347276.077 +UniRef50_Q2CHG7 Parallel beta helix repeat protein 4.12764306705e-07 4.20152864452e-06 1529570656.54 +UniRef50_UPI000368D551 alkanesulfonate monooxygenase 5.63527772059e-08 1.38525554731e-07 33174158.6603 +UniRef50_Q47688 1.99756433364e-05 9.7080589856e-06 -4145149799.85 +UniRef50_A4VVE0 FAD synthase 8.71594355611e-05 4.2171190003e-05 -18162306799.7 +UniRef50_E8SJY5 1.72854384061e-07 3.02721565979e-07 52428974.9898 +UniRef50_A8YUN6 Ribosomal RNA small subunit methyltransferase H 1.11908357795e-07 9.20391048914e-08 -8021461.22033 +UniRef50_Q8D5J3 Alkaline phosphatase 3.52999417902e-05 9.22598428747e-06 -10526376607.3 +UniRef50_U5MT37 1.71584540393e-06 9.10527938347e-06 2983205176.09 +UniRef50_D5AQC4 MotA TolQ ExbB proton channel family protein 6.56617300245e-05 8.29117996951e-06 -23161195073.0 +UniRef50_UPI000470CBD2 hypothetical protein 3.03178991193e-08 1.05985619272e-07 30547987.173 +UniRef50_P77308 Probable D,D dipeptide transport system permease protein DdpB 2.09729507335e-05 1.01245211862e-05 -4379644133.45 +UniRef50_F0Y304 Expressed protein 2.04477754541e-06 9.39116048467e-07 -446369114.307 +UniRef50_Q7UM39 3 methyl 2 oxobutanoate hydroxymethyltransferase 3.64178676713e-07 1.83797136616e-07 -72822241.2676 +UniRef50_A9FXE7 No similarity 4.77154150896e-08 4.74204148495e-06 1895157040.26 +UniRef50_P44843 Trk system potassium uptake protein TrkH 2.51016239535e-05 1.00802323769e-05 -6064320112.68 +UniRef50_P59329 D cysteine desulfhydrase 2.41818623843e-05 1.41635484783e-05 -4044516262.39 +UniRef50_A6TGL3 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 5.20026705572e-05 2.28083892918e-05 -11786089601.0 +UniRef50_F0VS50 Peptide nickel transport system substrate binding protein 7.25581772865e-05 1.35748706684e-05 -23812284688.3 +UniRef50_I3YBQ0 4.78968712417e-07 1.5250166603e-06 422302393.011 +UniRef50_B2IE93 1.30530966624e-06 4.3037055088e-07 -353223657.581 +UniRef50_Q67KZ3 Glutamyl Q tRNA synthetase 6.58070022039e-08 8.83652820358e-08 9107054.38936 +UniRef50_UPI000366ED99 MULTISPECIES 8.64574909997e-08 1.47681816219e-07 24717011.398 +UniRef50_C9M6U4 Putative phage terminase, large subunit 6.92296885776e-08 2.07796102587e-07 55940961.7365 +UniRef50_T4ZWD9 Membrane protein 2.32526344051e-06 3.2589726196e-05 12218135001.1 +UniRef50_UPI000381DE04 hypothetical protein 1.06550541517e-07 1.51480562825e-07 18138800.9554 +UniRef50_UPI00036B1851 LysR family transcriptional regulator 2.24835442955e-07 3.61934439568e-07 55348547.3265 +UniRef50_UPI00037FC311 hypothetical protein 1.01897531971e-07 3.49482402365e-08 -27028250.6334 +UniRef50_UPI0003AE2DCF PREDICTED 1.39334019854e-07 6.36522670983e-06 2513469279.24 +UniRef50_P0AB69 NAD transhydrogenase subunit beta 3.62116327788e-05 8.94307349721e-06 -11008652004.8 +UniRef50_F9ZV31 Flagellar hook capping protein 9.35428475578e-08 1.29068386312e-07 14342095.9425 +UniRef50_Q2NHM6 MapA 2.28802299293e-05 1.04403102834e-05 -5022148216.03 +UniRef50_E9W328 Phosphate acetyl butaryl transferase 1.42626947925e-06 5.49347140785e-06 1641979328.76 +UniRef50_B2GBA3 Peptide deformylase 2.37200505522e-07 1.68733729908e-07 -27640877.4972 +UniRef50_A8JGC3 Predicted protein 1.05252668779e-06 3.02516190871e-07 -302788441.27 +UniRef50_Q49173 Methyl coenzyme M reductase II subunit gamma 3.87799133453e-05 8.55237893514e-06 -12203226575.0 +UniRef50_UPI000361E906 hypothetical protein 2.96855103562e-07 6.59761982555e-07 146509960.418 +UniRef50_L8NJL2 Cytochrome B561 1.57972313691e-05 2.81076953675e-05 4969885382.54 +UniRef50_Q1JAC5 Copper exporting ATPase 4.47346463614e-06 8.98074116114e-07 -1443429027.91 +UniRef50_Q11F32 Amino acid amide ABC transporter substrate binding protein, HAAT family 1.15836347479e-08 6.35449079452e-08 20977403.6263 +UniRef50_A0REB6 3D trihydroxycyclohexane 1,2 dione hydrolase 4.11339492031e-06 2.10185439583e-05 6824816116.15 +UniRef50_D7CVL6 Deoxynucleoside kinase 7.01842788693e-06 0.000242798360958 95187252325.9 +UniRef50_Q3J2S9 5.57270180862e-05 2.57777325994e-05 -12090894070.1 +UniRef50_Q3J2S8 6.41035887819e-05 2.86261222142e-05 -14322688610.9 +UniRef50_UPI000476165E hypothetical protein 1.91591116465e-06 1.12349860719e-05 3762224897.97 +UniRef50_Q7SI97 L lactate dehydrogenase 3.19466869469e-07 1.06749404309e-07 -85876651.0219 +UniRef50_Q3J2S1 7.21434999927e-05 9.52634532885e-06 -25279313736.7 +UniRef50_UPI0003B6C4C4 xylose ABC transporter ATP binding protein 1.69174407767e-07 5.75342548688e-08 -45070499.7037 +UniRef50_UPI0003650D17 hypothetical protein 2.71115895833e-06 3.63928097898e-07 -947605902.117 +UniRef50_D2ZS96 2.7314996991e-05 2.28927678448e-06 -10103190347.5 +UniRef50_Q03XZ5 Glutamate synthase small subunit 4.53381627276e-05 1.65018018909e-05 -11641592731.7 +UniRef50_E2ZP88 Proline dehydrogenase PutA 5.5786630609e-06 2.33669384873e-06 -1308822754.39 +UniRef50_Q6GH28 Putative oligopeptide transport ATP binding protein oppF2 0.000159832188481 4.85786999076e-05 -44914398570.7 +UniRef50_D3E040 GTP 2.09915604565e-05 2.36031861271e-05 1054345331.47 +UniRef50_M5E5J2 Genomic scaffold, msy_sf_2 2.39568169253e-08 1.44536223223e-07 48679385.9982 +UniRef50_X2H7M9 Carboxyl terminal protease 5.93751110802e-06 3.76025418072e-05 12783561466.9 +UniRef50_D0K3P5 0.000101121164405 7.10876732369e-06 -37953958363.6 +UniRef50_A6LZI7 Isoprenylcysteine carboxyl methyltransferase 5.04286531449e-06 1.00763635911e-05 2032085022.24 +UniRef50_P42305 ATP dependent RNA helicase DbpA 5.16147317335e-06 4.29655576993e-05 15261972831.4 +UniRef50_X1UZY5 Marine sediment metagenome DNA, contig 3.8681665155e-07 1.11234353761e-06 292904107.119 +UniRef50_M1M078 4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH 3.9701205416e-06 8.67929573028e-06 1901151811.75 +UniRef50_UPI0003C4395A 4.52488469495e-06 3.28962133344e-07 -1693945427.88 +UniRef50_UPI0004709BDA branched chain amino acid ABC transporter permease 1.16553798445e-07 1.78154032844e-06 672175493.843 +UniRef50_UPI00045D6596 PREDICTED 4.23185904477e-07 2.89053871314e-06 996100606.68 +UniRef50_U3T459 4.19947329994e-06 5.77932919495e-05 21636482259.0 +UniRef50_Q6FDS2 Putative arginyl tRNA protein transferase 4.08829590809e-06 4.13523746678e-05 15043965877.0 +UniRef50_UPI000373DE43 MULTISPECIES 8.15471974226e-08 3.77944125518e-07 119659077.071 +UniRef50_G8VBC3 Binding protein dependent transport system inner membrane component 1.35138182163e-06 5.57722151863e-05 21970358248.1 +UniRef50_Q8CSG3 Geranyltranstransferase 0.00021515370693 3.77007912881e-05 -71639919636.8 +UniRef50_F3GGP2 Short chain dehydrogenase reductase SDR 6.70887799513e-07 2.58201916057e-06 771547182.679 +UniRef50_UPI00037791F6 hypothetical protein 1.5487134576e-07 1.25779307848e-07 -11744812.7045 +UniRef50_B5SHS9 Fad dependent oxidoreductase protein 3.40524435457e-06 6.49583350954e-06 1247708767.66 +UniRef50_T1ZTW1 ABC transporter, permease protein 4.31967932683e-05 1.56167924536e-05 -11134384773.6 +UniRef50_UPI00035E6C4D hypothetical protein 7.24030586676e-08 2.18043469406e-07 58796821.0237 +UniRef50_F1YW63 2.66217506349e-07 6.73662350099e-07 164490483.332 +UniRef50_A5UMU7 Possible glycosyltransferase 4.18571991734e-05 3.03927998483e-06 -15671270325.9 +UniRef50_A8ACB1 Ornithine carbamoyltransferase 5.40992865279e-08 2.87034524277e-07 94038813.9161 +UniRef50_A0A024HXE7 4.4577813458e-08 1.16817340537e-06 453609328.522 +UniRef50_I6TYS5 Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon 6.41046739814e-05 1.89188678805e-05 -18242064415.1 +UniRef50_A6M012 ABC transporter related 1.28688405295e-06 1.25784448352e-05 4558541650.81 +UniRef50_K8CD77 Outer Membrane Siderophore Receptor IroN 2.35928743029e-06 7.35228311697e-06 2015733629.66 +UniRef50_Q1MJF1 5.33981543274e-07 4.34234919632e-07 -40268935.993 +UniRef50_UPI00042B7372 Cold shock domain protein 1 6.04312895795e-08 9.38100502455e-08 13475415.2843 +UniRef50_UPI00046CFC16 hypothetical protein 3.39993364764e-07 1.54773680814e-06 487580848.771 +UniRef50_F1LHT5 GTP binding protein lepA 1.79015100806e-07 9.05517855343e-07 293298077.198 +UniRef50_UPI00045D782A PREDICTED 5.25332619329e-08 7.90367128193e-08 10699768.3568 +UniRef50_C6RGK7 3.0881773394e-07 5.51377414138e-07 97924319.4379 +UniRef50_Q6AB49 tRNA lysidine synthase 2.22924796565e-06 5.17750791996e-05 20002260064.9 +UniRef50_K0HED9 ABC transporter ATP binding protein 5.97070322555e-06 2.93013506612e-05 9418868669.03 +UniRef50_I4YTY9 TIGR00370 family protein 2.68086682557e-06 9.81854777999e-07 -685912012.826 +UniRef50_P31453 2.05069344819e-05 2.48165298485e-06 -7277027335.42 +UniRef50_Q30TW1 50S ribosomal protein L2 7.01152964066e-05 0.000146653985542 30899608039.3 +UniRef50_P31455 3.10397802391e-05 4.77528513661e-06 -10603298974.5 +UniRef50_UPI0004666336 DNA mismatch repair protein MutS 2.23303198675e-08 9.17926033228e-07 361562979.679 +UniRef50_E2XJC4 N acetyl anhydromuramyl L alanine amidase 7.26906226409e-06 1.02392753932e-05 1199111488.84 +UniRef50_Q03AI1 Uracil DNA glycosylase 1.67771550603e-06 9.46857209832e-07 -295056462.815 +UniRef50_V1MAY9 Nitrate reductase Z subunit beta 3.62124936786e-07 6.12941589944e-07 101257760.746 +UniRef50_Q8E3B1 Probable transaldolase 8.66339044841e-06 6.31026796388e-06 -949984423.065 +UniRef50_Q6LPL4 Chromosome partition protein MukE 2.60321304055e-05 2.53490734069e-06 -9486117294.61 +UniRef50_Q5HGC7 Glutathione peroxidase homolog BsaA 4.00299160089e-05 2.83021975904e-05 -4734623840.84 +UniRef50_UPI00037249D5 hypothetical protein 2.00931688345e-06 8.7653327349e-07 -457318644.159 +UniRef50_Q1GIW0 1.90128606805e-05 1.80806146039e-05 -376359181.069 +UniRef50_T0V4T9 ABC transporter, ATP binding protein 9.05415927444e-05 1.45554838179e-05 -30676524628.0 +UniRef50_I9CB55 4.81886748116e-07 5.72803929332e-07 36704381.7362 +UniRef50_D3E4P0 Valine tRNA ligase 3.29054582896e-05 1.31480671426e-05 -7976301256.5 +UniRef50_P0CL50 Trehalose phosphate phosphatase 2.51473980109e-05 1.72685404999e-05 -3180791461.64 +UniRef50_F2E3C9 Predicted protein 8.62615371094e-07 2.92694623017e-07 -230083999.713 +UniRef50_P63699 Putative bacterioferritin B 2.62802001527e-05 3.92639667628e-05 5241705909.23 +UniRef50_H2I4X3 DNA double strand break repair rad50 ATPase 1.4174858218e-06 7.09057317207e-05 28053257586.1 +UniRef50_Q15RF6 Chemotaxis response regulator protein glutamate methylesterase 1.15674971054e-06 9.5370542934e-08 -428491794.551 +UniRef50_F6DH03 Menaquinone biosynthesis protein 9.5244572462e-07 0.000266261704024 1.07108603286e+11 +UniRef50_D3E0I7 2.29304723541e-05 5.68565588045e-06 -6961944028.13 +UniRef50_Q5HM27 Energy coupling factor transporter ATP binding protein EcfA1 0.000227042559244 4.61999135108e-05 -73008395271.2 +UniRef50_Q28Q52 Cation transporter 2.56014111547e-05 4.02956119847e-06 -8708820543.68 +UniRef50_N9BB91 3.62600876435e-06 4.75547965534e-05 17734590697.3 +UniRef50_UPI0004781DCE hypothetical protein 7.48068148534e-08 5.14077062992e-07 177338789.626 +UniRef50_I6T5E5 Transcriptional regulator 7.14282133055e-05 1.02434242353e-05 -24701050169.4 +UniRef50_Q8FQB2 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 5.49502981135e-08 4.37229021006e-08 -4532637.54605 +UniRef50_G0DVU1 1.14806489261e-05 2.82568143088e-05 6772743831.7 +UniRef50_UPI00038FD62D Potassium transporting ATPase B chain 5.85040490569e-08 9.12114197139e-06 3658698140.32 +UniRef50_Q6GE73 Heme response regulator HssR 0.000269970489547 5.42696883388e-05 -87081060394.2 +UniRef50_Q8CUA1 4.03179036756e-05 2.21573811535e-05 -7331625796.84 +UniRef50_Q8CUA7 0.000259202410274 0.000136261668034 -49632686294.8 +UniRef50_A4WNZ4 PfkB domain protein 4.07048121114e-05 1.19327668482e-05 -11615627745.5 +UniRef50_S5XU40 Major facilitator transporter 5.46570082299e-06 1.61081839199e-06 -1556263342.12 +UniRef50_UPI0004791DBF serine acetyltransferase 7.42503667962e-08 1.58940801633e-07 34190567.8121 +UniRef50_UPI0003688AA7 hypothetical protein 2.68532123949e-06 1.27201746473e-07 -1032744230.99 +UniRef50_P25819 Catalase 2 1.25790729447e-07 3.13343067228e-07 75717180.2882 +UniRef50_Q4L5F0 Thioredoxin 2.73056758376e-05 4.80531770678e-05 8376020847.1 +UniRef50_B1FAB2 4.82678892713e-06 3.80352419825e-06 -413104527.919 +UniRef50_A6L4L7 ATP synthase subunit beta 1.42953619831e-07 2.70745190365e-05 10872603446.2 +UniRef50_UPI00046D5EE9 3 oxoacyl ACP synthase 1.52336802909e-07 2.58177931918e-07 42729362.5976 +UniRef50_H3YRV9 9.97615253831e-06 1.16572383629e-05 678674976.63 +UniRef50_F5I377 1.58193877551e-07 2.2448452272e-07 26762346.9324 +UniRef50_D3DZA3 Heavy metal translocating P type ATPase 3.09782140002e-05 1.56682270301e-06 -11873739585.0 +UniRef50_Q2FV54 O acetyltransferase OatA 0.000362100731917 6.66087038352e-05 -1.19293757832e+11 +UniRef50_UPI00047BDC90 MFS transporter 5.0236606487e-08 1.42658846024e-07 37311992.2495 +UniRef50_UPI000464A202 hypothetical protein 2.62444929986e-08 9.03906919312e-08 25896607.6715 +UniRef50_M1MPB4 ABC 2 family transporter protein 3.19515739074e-06 5.44726952555e-06 909205305.346 +UniRef50_B0RBL8 Putative heme synthetase 4.65391921638e-07 1.31057709404e-06 341211625.687 +UniRef50_M9R255 6.91807709459e-07 7.50826157109e-07 23826471.5541 +UniRef50_A0A025H559 Peptide ABC transporter permease 1.11242382095e-06 5.77697043161e-07 -215875762.029 +UniRef50_V9DII8 1.14969513078e-07 1.19836590135e-07 1964898.73366 +UniRef50_UPI0004757F7D aminotransferase class IV 1.10535061352e-06 2.35422880129e-07 -351200501.184 +UniRef50_A3CKK8 UPF0310 protein SSA_0254 0.000128640077891 9.1808302134e-06 -48227164217.4 +UniRef50_X7TXC3 PE family protein 2.41331768728e-06 4.32311901296e-06 771010231.075 +UniRef50_UPI000471111A hypothetical protein 1.40988201263e-06 9.95764449968e-07 -167184341.841 +UniRef50_G2G9I6 2.81654108963e-06 1.13124013348e-06 -680376676.966 +UniRef50_P75059 Spermidine putrescine import ATP binding protein PotA 1.59965985262e-07 5.10557584694e-08 -43968395.0351 +UniRef50_E8U7B0 Cytochrome P450 2.20028185941e-06 0.00016413563606 65375289661.2 +UniRef50_P0AEP2 Galactose proton symporter 2.43885767374e-05 1.50121080195e-05 -3785395483.63 +UniRef50_Q6FEE9 3.21739177092e-06 6.98290124442e-05 26891928682.3 +UniRef50_Q2YYE7 Truncated methicillin resistance related surface protein 2.34153872901e-05 1.02143556822e-05 -5329418454.98 +UniRef50_UPI00032A143E PREDICTED 5.38021232498e-07 3.99964394557e-07 -55735239.6247 +UniRef50_UPI0003F48FDB hypothetical protein TREMEDRAFT_63328 8.65847279748e-08 5.5075939979e-08 -12720484.3702 +UniRef50_E3LBP8 1.75000730059e-07 1.53818706909e-08 -64440092.2705 +UniRef50_A0A012NRC3 9.3344085556e-05 1.39176347189e-05 -32065432875.1 +UniRef50_I4CV16 3.56597260487e-06 3.93755606923e-06 150012804.404 +UniRef50_B2TLB0 Diguanylate cyclase phosphodiesterase domain 2 2.48493829393e-06 2.31238885482e-05 8332197486.06 +UniRef50_M4INN6 Rrf2 family protein 2.32624354312e-07 3.17846011815e-07 34405028.9213 +UniRef50_UPI00047AF807 hypothetical protein 4.12713220281e-08 5.40447153074e-07 201523408.57 +UniRef50_Q5HKL4 Thiamine biosynthesis protein, putative 9.0055498503e-05 4.29080734419e-05 -19033994061.1 +UniRef50_Q1YIF1 6.10973374032e-06 3.91295899974e-06 -886864920.23 +UniRef50_B2TMF1 Site specific recombinase 2.066529136e-06 1.57067885137e-05 5506740095.58 +UniRef50_F2MQN5 3.70045074655e-07 3.61516064688e-07 -3443265.9864 +UniRef50_UPI00041B00FC hypothetical protein 1.10607830722e-07 2.83854097673e-07 69941643.9389 +UniRef50_UPI00029A8D4F methylmalonyl CoA mutase 6.36543805084e-07 5.45652209051e-07 -36694052.6838 +UniRef50_C1KZA0 5 deoxy glucuronate isomerase 5.30764382281e-07 2.13503687376e-05 8405129763.51 +UniRef50_Q73S23 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.32620925116e-07 4.09412590959e-07 71372964.9785 +UniRef50_UPI000474601B branched chain amino acid ABC transporter ATP binding protein 1.02666257451e-06 6.08632424973e-07 -168763901.175 +UniRef50_W4TYR9 Excinuclease 9.2096340991e-08 2.36006803135e-06 915608002.541 +UniRef50_Q8DT53 Glucose 1 phosphate adenylyltransferase 3.72927227052e-05 1.76626221435e-05 -7924912485.18 +UniRef50_D3DYR5 ATP dependent DNA helicase 3.55779524266e-05 4.27518492966e-06 -12637311366.7 +UniRef50_UPI0003A7C5DF hypothetical protein 9.61576586212e-07 4.36855325546e-06 1375438289.68 +UniRef50_UPI00037226A5 hypothetical protein 3.98159323817e-07 2.50472935392e-07 -59622807.323 +UniRef50_K1ZGV2 1.14044902302e-06 3.06505510537e-06 776987093.017 +UniRef50_B9TBU0 2.25752788605e-07 1.00848049587e-06 315996780.572 +UniRef50_A6LWA9 5.46743370497e-06 2.74287961482e-06 -1099935920.23 +UniRef50_A6TG48 Aspartate ammonia ligase 3.27719420505e-05 3.48725676534e-05 848048333.466 +UniRef50_A5F4D2 Phosphomethylpyrimidine synthase 3.15592818976e-05 5.86377024192e-05 10931890654.2 +UniRef50_R5X951 1.7848759856e-05 1.03916192879e-05 -3010539156.75 +UniRef50_A5D654 4 diphosphocytidyl 2 C methyl D erythritol kinase 7.95459431843e-08 9.05863134377e-08 4457132.95188 +UniRef50_Q5HLI3 Amino acid ABC transporter, permease protein 0.000226405286452 4.79868385436e-05 -72029716861.0 +UniRef50_E1SVE3 Rhodanese domain protein 2.87651919353e-07 1.09752266311e-07 -71820273.0073 +UniRef50_A6QDV1 0.000111824237392 4.13780450569e-05 -28439992317.7 +UniRef50_W8T476 Pe pgrs family protein 6.39865258548e-08 2.6132570754e-08 -15282106.1945 +UniRef50_E6MZ19 Periplasmic protein 1.4842175184e-06 2.07449855273e-05 7775808401.4 +UniRef50_V6U561 4.21551589043e-07 1.02416579916e-06 243282751.532 +UniRef50_I1WGW6 8.34530557572e-07 4.46246289985e-05 17678600105.5 +UniRef50_UPI000472273F aspartate ammonia lyase 2.39021220366e-08 5.19345903303e-08 11317051.4472 +UniRef50_UPI000372D1EE cold shock protein 7.38621989468e-07 8.7187408965e-07 53795508.0306 +UniRef50_L0LNW6 6.39695633728e-06 2.74627427356e-06 -1473825148.03 +UniRef50_D3E1A2 ATPase 3.19507884737e-05 9.34729371988e-06 -9125308208.18 +UniRef50_N6Y413 5.04529658204e-07 1.38833484413e-07 -147636032.956 +UniRef50_C6DIM3 p hydroxybenzoic acid efflux pump subunit AaeB 2.50918122334e-05 1.24337077283e-05 -5110232121.12 +UniRef50_UPI00047D54B2 DSBA oxidoreductase 2.15050988684e-07 1.09826398542e-07 -42480458.2913 +UniRef50_UPI00046ED66D aminotransferase 1.28082499582e-07 3.54387395651e-06 1378996927.64 +UniRef50_UPI000474BB68 O sialoglycoprotein endopeptidase, partial 1.31084401493e-07 1.36668293738e-07 2254285.82137 +UniRef50_D8HG20 Probable membrane protein 2.05098719367e-05 8.09828614498e-06 -5010709491.39 +UniRef50_UPI0003601444 hypothetical protein 5.43161980025e-07 1.72281173397e-07 -149729132.855 +UniRef50_P43270 Thermonuclease 9.76498114362e-05 6.63537280379e-05 -12634612914.0 +UniRef50_H0TU43 1.28710248891e-06 2.37520138222e-06 439278875.704 +UniRef50_P33346 4.70375312309e-05 1.23258267525e-05 -14013541058.4 +UniRef50_Q2GCS7 Phosphoribosylaminoimidazole succinocarboxamide synthase 7.5679467235e-07 2.54981444005e-05 9988386495.74 +UniRef50_P44299 8.72430943044e-08 9.9818399825e-06 3994570184.12 +UniRef50_Q8TK95 Bifunctional protein FolD 1.29437233906e-07 2.68682720579e-08 -41408348.5607 +UniRef50_B4U336 Glutamine amidotransferase 5.17032751371e-05 2.92831621464e-05 -9051274740.07 +UniRef50_R4K1J7 Iron only hydrogenase large subunit 3.54850001566e-06 1.75430014147e-05 5649751946.62 +UniRef50_UPI00031BEDB0 hypothetical protein 1.09863127949e-07 1.11865046445e-06 407259826.958 +UniRef50_B7M4N2 Bifunctional protein FolD 3.60609107273e-05 2.20021779253e-06 -13669977255.2 +UniRef50_C6SLX9 4.73783882208e-06 6.60305050415e-06 753008844.773 +UniRef50_B9KRV7 7.87936393408e-05 1.94040537606e-05 -23976304490.9 +UniRef50_U0BIJ8 Protein UshA 2.47365967226e-05 5.10934398752e-06 -7923762782.64 +UniRef50_A6LWU4 Non specific serine threonine protein kinase 4.22068317642e-06 5.15594114356e-06 377575118.24 +UniRef50_E3FEG1 4.92537471239e-08 1.14961805906e-07 26527149.6589 +UniRef50_H3ZXZ3 5.81104572138e-06 4.41373054089e-07 -2167802749.08 +UniRef50_Q6FZE7 50S ribosomal protein L17 2.40629427813e-05 4.92194508663e-06 -7727455655.81 +UniRef50_UPI000362A66F hypothetical protein 6.48779034289e-07 1.30160438547e-08 -256665320.927 +UniRef50_UPI0001FFE9A8 diguanylate cyclase 3.32914985619e-07 3.39382423095e-07 2610983.87344 +UniRef50_UPI00035037FE PREDICTED 5.46873487573e-07 7.57796938602e-07 85152385.5022 +UniRef50_U7PB07 2.57314118328e-06 3.40279518339e-06 334941500.844 +UniRef50_A5U0Z1 Succinyl CoA ligase [ADP forming] subunit beta 4.06619125096e-06 4.79580865036e-05 17719696727.6 +UniRef50_W4U4M2 Heme ABC transporter 6.43298972005e-07 2.44755104297e-06 728398701.713 +UniRef50_P76458 Acetate CoA transferase subunit alpha 3.24359388849e-05 2.83958370386e-06 -11948411774.7 +UniRef50_A6LYU9 Integral membrane sensor hybrid histidine kinase 1.03945619926e-06 1.55925042433e-05 5875244081.34 +UniRef50_Q3JI08 7.59977215689e-07 3.55802925887e-07 -163170120.569 +UniRef50_UPI000475B85D hypothetical protein 9.48367204319e-07 1.72013453417e-05 6561526720.54 +UniRef50_UPI00039FFF6C NrdR family transcriptional regulator 1.62438266037e-06 1.00179945374e-06 -251344480.472 +UniRef50_Q1GI98 Glutamate ammonia ligase adenylyltransferase 1.0261631559e-05 4.85259949455e-06 -2183692620.71 +UniRef50_G7M6U6 Integral membrane sensor signal transduction histidine kinase 3.07141870174e-06 4.32126768835e-06 504579373.266 +UniRef50_G9ZVA2 6.9707653617e-07 3.48146600093e-07 -140867297.046 +UniRef50_Q9RZN0 GGDEF family protein 1.68490163255e-06 0.000432835645102 1.74060845953e+11 +UniRef50_Q72GQ7 Tripartite transporter, large subunit 6.00615134022e-08 1.32050747074e-07 29062937.0405 +UniRef50_UPI0003707BF1 nucleoside hydrolase, partial 2.83652759102e-07 1.35701973595e-07 -59729547.6695 +UniRef50_J9YTR5 Sensor histidine kinase CsrS 2.51882602535e-06 1.18919478603e-06 -536788447.724 +UniRef50_UPI000472729B hypothetical protein 7.05533790587e-07 8.38352582416e-07 53620576.1312 +UniRef50_UPI0003791242 phosphoenolpyruvate synthase 2.4420823571e-08 6.28472670581e-09 -7321764.85942 +UniRef50_Q2FJB8 Transcriptional regulator CtsR 0.000207619291095 8.25712385463e-06 -80484953363.7 +UniRef50_E3F288 1.71865603074e-07 1.62592244503e-07 -3743768.65202 +UniRef50_A3MQP5 Aminomethyltransferase 4.56235562189e-07 3.6498446816e-05 14550682970.8 +UniRef50_A0PZ54 Mur ligase family protein 4.69687904841e-06 9.87821403005e-06 2091768514.22 +UniRef50_UPI000375510C hypothetical protein 4.12995409554e-08 1.74569528325e-07 53802729.3079 +UniRef50_UPI00037D1824 hypothetical protein 6.86230069954e-06 2.4011623735e-06 -1801016286.55 +UniRef50_Q8UEY5 CTP synthase 0.000149246419771 0.000693609245991 2.19765953028e+11 +UniRef50_E4PL62 Secreted protein containing YkuD domain 3.03028094565e-08 2.42111782486e-06 965201360.316 +UniRef50_UPI0002FE793C betaine aldehyde dehydrogenase 6.36842699923e-08 2.05168448965e-07 57118899.2575 +UniRef50_T1Y8A8 Acetyltransferase 0.000213377725131 4.7424226744e-05 -66997463777.3 +UniRef50_F0P4Z6 Oligopeptide transport ATP binding protein 0.00010130143973 3.54298663843e-05 -26593162494.8 +UniRef50_UPI0003728158 hypothetical protein 1.53038424264e-07 1.22815258107e-05 4896419191.17 +UniRef50_UPI00016C46F4 hypothetical protein 2.92677527275e-07 4.56849423887e-05 18325414350.3 +UniRef50_F1SCK4 7.13475604041e-07 6.30261314385e-07 -33594629.8883 +UniRef50_P75836 1.65334418126e-05 1.23996266424e-05 -1668871911.83 +UniRef50_C7IYG9 Os02g0192900 protein 9.08724943007e-07 5.90548653255e-07 -128451672.635 +UniRef50_Q9RZ97 TerF related protein 2.1181362866e-06 0.000509594167764 2.04874301338e+11 +UniRef50_UPI00047811D4 leucine isoleucine valine transporter ATP binding subunit 1.53137871706e-06 3.79816943265e-07 -464899619.331 +UniRef50_A6VVT1 Isochorismatase 4.04344041288e-06 5.9556549115e-05 22411323205.5 +UniRef50_UPI0001E92D34 DNA gyrase subunit B 6.17057410147e-08 3.59677165188e-07 120294720.459 +UniRef50_C6SEB8 4.38937196334e-06 1.04410403273e-05 2443132780.85 +UniRef50_C6SRB4 3.46895339921e-05 4.40102668756e-05 3762894243.32 +UniRef50_P0AGD2 Superoxide dismutase [Cu Zn] 1.29506510486e-05 1.7472228371e-05 1825416251.05 +UniRef50_U3ST50 7.73292438433e-05 1.07386885985e-05 -26883424310.3 +UniRef50_UPI000364FC3A hypothetical protein 3.30050274218e-06 1.19089844559e-06 -851673142.289 +UniRef50_Q1GKH0 AMP dependent synthetase and ligase 0.000108787101069 3.01697327454e-05 -31738796335.8 +UniRef50_Q2NIM1 Thymidine kinase 1.31424068445e-07 2.29823983355e-07 39725253.1519 +UniRef50_E0RBR7 Periplasmic [Fe] hydrogenase large subunit 1.71847384623e-06 2.63450322562e-05 9942043831.97 +UniRef50_A4W401 Polyribonucleotide nucleotidyltransferase 2.38965045288e-06 2.01014961378e-07 -883579005.496 +UniRef50_K7JKT8 2.29648434056e-06 1.22301169047e-07 -877744426.566 +UniRef50_UPI0003B4FA18 membrane protein 3.35947674872e-08 2.01704023608e-08 -5419580.93701 +UniRef50_UPI0003607215 hypothetical protein, partial 1.98769168897e-06 5.23081817619e-07 -591280977.848 +UniRef50_M9S617 ABC transporter permease 2.83824051773e-06 6.63633045389e-06 1533335515.03 +UniRef50_R9SMZ9 Cysteine tRNA ligase 3.08882240295e-05 5.40837269867e-06 -10286528655.2 +UniRef50_UPI00047912C6 hypothetical protein 5.12398274445e-07 6.40095765546e-07 51553044.1819 +UniRef50_Q3HKE0 0.000205628439732 2.03825318709e-05 -74786046226.4 +UniRef50_E4Z9V1 SUN family protein 3.05980378466e-06 4.22439254261e-05 15819110749.9 +UniRef50_B9KKY7 2.5345487823e-05 4.3217078809e-05 7214980590.13 +UniRef50_Q2VZ24 Peptidyl tRNA hydrolase 5.74846326368e-07 2.91483509187e-07 -114397046.549 +UniRef50_A0A015J1B9 1.82988861497e-07 1.94441213823e-07 4623455.17017 +UniRef50_Q8X5L7 Cellulose synthase catalytic subunit [UDP forming] 2.59368540632e-05 9.30100673266e-06 -6716095712.13 +UniRef50_X5PU41 1.34901540474e-06 2.70683094764e-07 -435335986.164 +UniRef50_I6ZGW2 Type IV pilus biogenesis stability protein PilW 2.01261722517e-07 8.92100626696e-07 278900143.164 +UniRef50_B9KK81 Methyltransferase type 12 1.74002928411e-05 3.11954266055e-06 -5765314092.38 +UniRef50_I3X0I9 1.76405419619e-06 2.48154224269e-07 -611987420.849 +UniRef50_K2J734 1.15612518295e-07 3.30030067357e-07 86562995.7555 +UniRef50_UPI00035FADFC hypothetical protein 7.86974983318e-06 2.11042121785e-06 -2325111636.92 +UniRef50_UPI0002B9D075 hypothetical protein 2.04420778622e-06 8.45790641995e-07 -483815707.354 +UniRef50_A3XC42 4.13019570544e-08 3.82624274127e-07 137796007.898 +UniRef50_A4WWJ4 6.63580031506e-06 1.47843996562e-05 3289689548.58 +UniRef50_A1S9Z4 Oxidoreductase, GMC family 5.26152228409e-06 3.83525781208e-06 -575800469.584 +UniRef50_UPI0003B34D06 DNA topoisomerase I 2.55820535574e-08 4.92927019695e-08 9572279.72634 +UniRef50_R1EBF4 4.52545448584e-08 2.20506901545e-07 70751526.9828 +UniRef50_G0LQE0 Capsular polysaccharide synthesis enzyme 0.00013501218799 9.81233109992e-06 -50544718601.5 +UniRef50_Q2FHD8 Aerobic glycerol 3 phosphate dehydrogenase 0.000204808430227 5.43007428102e-05 -60761800347.3 +UniRef50_D9R3D4 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 5.58686712658e-07 1.37604761137e-05 5329724385.36 +UniRef50_Q896N6 Thymidylate kinase 2.27227001991e-06 8.31550133378e-06 2439726640.2 +UniRef50_UPI00016A3FE0 spermidine putrescine ABC transporter ATPase subunit, partial 2.1706102784e-06 8.42731383421e-07 -536081004.81 +UniRef50_A7WYE6 9.65440689355e-06 5.53156467708e-07 -3674286481.81 +UniRef50_UPI000472C988 hypothetical protein, partial 1.75980139253e-06 2.22773468081e-05 8283184862.87 +UniRef50_K2ADN8 Putative insertion sequence transposase protein 1.4787166933e-06 8.60840797902e-07 -249444081.162 +UniRef50_A6LPZ0 Extracellular solute binding protein, family 1 1.17647242485e-05 1.63230122652e-05 1840236808.83 +UniRef50_G6DGM2 9.22862415084e-08 1.02087904951e-07 3957051.81171 +UniRef50_Q9HNI0 Thermosome subunit beta 3.51395688958e-05 7.25356003674e-06 -11257923976.2 +UniRef50_U5UQ99 Peptidase M16 domain containing protein 0.000175938953812 3.80765055708e-05 -55656762117.4 +UniRef50_E0S0F8 Ornithine cyclodeaminase 2.39817583446e-05 6.20952845356e-06 -7174867296.78 +UniRef50_C7NCR9 Nickel ABC transporter, periplasmic nickel binding protein 7.31561993853e-07 3.57336078491e-06 1147269044.74 +UniRef50_Q8CNS7 Replication associated protein 9.85967378344e-05 8.88201851496e-05 -3946914290.65 +UniRef50_Q6A969 DNA repair protein RecO 4.0735898078e-06 7.00444070391e-05 26633228469.2 +UniRef50_Q6AKT0 2.68281462992e-05 3.6569196789e-05 3932581618.86 +UniRef50_Q88DY1 Hemin import ATP binding protein HmuV 1.01990828502e-07 1.84356926955e-05 7401540423.53 +UniRef50_Q6MML0 Threonine tRNA ligase 4.54569158898e-08 5.66088529588e-06 2267017346.06 +UniRef50_T7GQG4 Inner membrane transporter ygjI 1.97573266341e-05 2.44400031881e-06 -6989602291.89 +UniRef50_Q9KRQ1 Catalase 1.04820572794e-07 1.84259493427e-07 32070467.0847 +UniRef50_UPI0003698FB7 hypothetical protein 2.00219400437e-06 1.5130413626e-06 -197476924.06 +UniRef50_UPI00040AA97B hypothetical protein 2.15774835998e-07 7.00422327691e-07 195658139.69 +UniRef50_P9WH42 30S ribosomal protein S1 1.97195646366e-06 9.651750944e-05 38169199940.9 +UniRef50_T1Y598 Transporter, drug metabolite exporter family protein 0.000111822240768 2.14934800238e-05 -36466829171.0 +UniRef50_E7MYR2 4.87296204386e-06 4.10150858771e-06 -311445227.046 +UniRef50_Q3JSR8 Alkanesulfonate monooxygenase 2.451784505e-07 3.23152498095e-07 31479079.8633 +UniRef50_W5X5Q8 3.55721134767e-07 3.10624836014e-07 -18205929.2004 +UniRef50_Q5F6G1 UPF0213 protein NGO1598 1.55648948476e-07 7.87511213846e-06 3116442018.26 +UniRef50_B2TIV3 Phospholipase, patatin family 5.24117785486e-06 2.48484360979e-05 7915690760.81 +UniRef50_R5XTT8 AMP binding enzyme 4.1188844411e-06 2.04270112881e-05 6583790931.35 +UniRef50_UPI00037CADCD hypothetical protein 2.81945583588e-07 2.71745625739e-05 10856879488.5 +UniRef50_Q72C18 Acetylglutamate kinase 3.14443004401e-07 1.46829392759e-07 -67667671.8702 +UniRef50_D4HAH0 ATPase histidine kinase DNA gyrase B HSP90 domain protein 2.13615565721e-06 4.42855000265e-05 17016207552.5 +UniRef50_UPI000329D795 PREDICTED 3.13326402326e-05 8.46883626048e-05 21540359870.0 +UniRef50_F7Y006 1.8436034628e-06 7.79354544998e-07 -429650347.919 +UniRef50_O67501 Inorganic pyrophosphatase 7.8165386211e-06 6.86565159652e-05 24561845444.3 +UniRef50_UPI00041A51D0 hypothetical protein 1.72267658381e-06 1.00916247582e-06 -288054401.198 +UniRef50_B7I3M9 Peptidase M24 6.44907725824e-07 3.35431983008e-05 13281443612.6 +UniRef50_UPI000361F1B4 hypothetical protein 3.56997845568e-07 2.57131333885e-07 -40317336.2663 +UniRef50_P0A5L7 Glutamine dependent NAD synthetase 1.29113099896e-06 4.34460270108e-05 17018448818.7 +UniRef50_D5BPQ5 RNA polymerase sigma factor RpoH 0.000127247515463 6.51547956737e-05 -25067592942.3 +UniRef50_R4K8M3 1,4 dihydroxy 2 naphthoate octaprenyltransferase 3.8801659254e-06 2.30151386389e-05 7725023296.96 +UniRef50_UPI0002558C92 helix turn helix domain containing protein 8.68067067684e-07 1.27279246909e-07 -299065133.736 +UniRef50_K7YS10 1.10268545919e-06 3.82407404587e-05 14993088538.5 +UniRef50_D8JIS8 3.92228991138e-06 4.69957169232e-05 17389271055.1 +UniRef50_F8KHK9 Response regulator protein 0.000105888132497 4.47273461377e-05 -24691359980.5 +UniRef50_P76230 Putative metabolite transport protein YdjK 2.30555362504e-05 5.47835986836e-06 -7096121801.62 +UniRef50_P52610 Flagellar motor switch protein FliG 1.14505355566e-06 7.14172508987e-06 2420929885.8 +UniRef50_F0N1J6 Sensor histidine kinase 2.24718965463e-06 7.0532597898e-05 27567657264.0 +UniRef50_G8PSK7 Short chain dehydrogenase reductase SDR 1.16272706244e-05 1.27810915673e-05 465811673.624 +UniRef50_W8UIH3 Stage V sporulation protein R 7.38160104607e-06 8.12000262474e-06 298101778.515 +UniRef50_UPI000373430C 30S ribosomal protein S17 3.56223020432e-07 3.25710261417e-06 1171120689.79 +UniRef50_D4HFJ3 8.86813425461e-07 1.03483409075e-05 3819734750.5 +UniRef50_E1NZW5 PspA related protein 6.92211471039e-07 8.37372458833e-06 3101121108.22 +UniRef50_B9KQ43 Fatty acid beta hydroxylase 3.33030122227e-05 1.27368269576e-05 -8302821366.99 +UniRef50_D4Z694 Ribonuclease D 5.92448613162e-07 1.08310663521e-07 -195452431.311 +UniRef50_UPI00047C78E3 RNA polymerase sigma factor RpoE 5.64738195589e-06 4.16521812256e-07 -2111762429.86 +UniRef50_B4U3I6 Phosphoglucosamine mutase 0.000321541484765 0.000186199097666 -54639382509.7 +UniRef50_A4VZG9 Transcriptional regulator 4.06062414036e-05 2.4146277593e-05 -6645089376.81 +UniRef50_UPI0003056218 hypothetical protein 1.23303630096e-06 8.07794198247e-07 -171675455.173 +UniRef50_UPI00046F7510 hypothetical protein 1.7605409365e-07 9.5686865664e-07 315224420.751 +UniRef50_Q49V01 Ribonuclease M5 7.41152213516e-05 3.40834525099e-05 -16161316326.4 +UniRef50_UPI000367E0A5 hypothetical protein 5.68488687639e-08 7.89096547797e-07 295617373.715 +UniRef50_Q8CMV9 Succinyl diaminopimelate desuccinylase 0.000113088813103 5.85785448005e-05 -22006464229.9 +UniRef50_F2A6D1 3.8328227668e-06 7.93281095377e-07 -1227100272.12 +UniRef50_UPI00045E4C42 PREDICTED 1.0723083665e-07 6.08342735764e-08 -18730861.8627 +UniRef50_W3ZDR5 NLPA lipofamily protein 5.11046067427e-07 3.9741229972e-07 -45875346.4665 +UniRef50_G9WJ36 Ribonucleoside diphosphate reductase subunit beta 5.20883524132e-05 4.75779832854e-05 -1820891365.35 +UniRef50_F0Y9Q8 8.36626966138e-07 1.13438503525e-06 120208586.403 +UniRef50_UPI00035FAC18 hypothetical protein 1.95072744038e-08 3.00499659258e-08 4256213.9408 +UniRef50_I4XUK4 Outer membrane porin, OprD family 1.39703590694e-05 6.2531609542e-06 -3115527579.78 +UniRef50_Q8UII5 Glutathione synthetase 9.0507001568e-05 4.78608089535e-05 -17216791286.1 +UniRef50_Q6ME50 30S ribosomal protein S8 2.83824051773e-06 0.000414143439189 1.66048955986e+11 +UniRef50_UPI0003692650 hypothetical protein, partial 3.33669563539e-07 1.5889263412e-07 -70559591.1606 +UniRef50_A4WSD1 Haemin degrading family protein 1.74224302552e-06 2.95316705201e-06 488864889.203 +UniRef50_Q5NP09 Leucyl phenylalanyl tRNA protein transferase 1.75444608397e-07 1.42915105323e-07 -13132559.5729 +UniRef50_A5UNB6 Formylmethanofuran dehydrogenase subunit E, metal binding 6.40596899918e-05 1.88767038702e-05 -18240925954.9 +UniRef50_Q9JZ25 8.21812747825e-07 4.09415096393e-05 16196813959.1 +UniRef50_A1WR07 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.11573132684e-07 2.31671029202e-06 890240931.301 +UniRef50_Q9JZ20 6.46749267023e-07 4.68628230578e-05 18657996124.3 +UniRef50_V8UNT0 2.47103275661e-06 1.82858640994e-06 -259363473.854 +UniRef50_UPI0003730FD4 MULTISPECIES 4.05658192578e-06 7.19590933629e-07 -1347184213.02 +UniRef50_P77328 Putative purine permease YbbY 1.92780444417e-05 1.1862522077e-05 -2993737377.32 +UniRef50_H5NY39 8.25925185355e-07 2.12801456374e-07 -247525573.264 +UniRef50_Q20719 Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 1.72463416446e-06 5.27799997407e-07 -483176640.045 +UniRef50_UPI00036C23C8 hypothetical protein, partial 1.8228730035e-05 7.07256978392e-06 -4503878794.85 +UniRef50_R0B9U9 2.82392150721e-07 1.02565027804e-06 300062426.802 +UniRef50_Q59637 Pyruvate dehydrogenase E1 component 9.60617195579e-06 0.000113516571623 41949903469.6 +UniRef50_P32140 Sulfoquinovose isomerase 3.83661120243e-05 1.06210480799e-05 -11201022784.6 +UniRef50_I0C1T3 Phosphohydrolase 3.92995092711e-05 5.85045773662e-05 7753321662.68 +UniRef50_Q7AHT0 Protein FixC 1.5551025886e-05 1.04516001548e-05 -2058700744.68 +UniRef50_A0A023RTX7 3 oxoacyl ACP reductase 1.67029198609e-06 3.12366322429e-05 11936294381.5 +UniRef50_P0ABQ3 2 hydroxy 3 oxopropionate reductase 3.40693925121e-05 2.0044120263e-06 -12945026103.7 +UniRef50_Q132J0 1.81498142186e-07 3.18516102133e-07 55315831.83 +UniRef50_UPI00035C36AF hypothetical protein 8.95694072163e-07 1.6931379476e-07 -293248631.676 +UniRef50_F8DK82 Bacterial capsule synthesis protein 5.38991828681e-05 2.50829743023e-05 -11633457012.7 +UniRef50_Q9HU78 Histidine utilization repressor 1.61030237273e-05 6.96790273987e-05 21629290133.6 +UniRef50_Q67FW7 DeoX 3.72901818082e-06 6.10401970517e-05 23137226197.4 +UniRef50_UPI0004737BA1 hypothetical protein, partial 2.14438723608e-06 1.29729889967e-06 -341979956.352 +UniRef50_R4NT35 Bipolar DNA helicase 8.33639002711e-06 7.32574829828e-06 -408008467.897 +UniRef50_P39629 Glucose 1 phosphate thymidylyltransferase 1.34484457948e-06 1.82363283586e-07 -469307964.4 +UniRef50_A4XS92 Multisubunit potassium proton antiporter, PhaD subunit 1.86081699149e-06 1.21114164807e-06 -262281908.552 +UniRef50_UPI00047D80A6 DNA gyrase subunit A 5.43624143822e-08 8.94022097455e-08 14145995.3748 +UniRef50_F0KNK5 Two component system response regulator 3.88914210183e-06 6.55936810024e-05 24910879554.0 +UniRef50_X1C4Y0 Marine sediment metagenome DNA, contig 4.28779610345e-06 1.76686933668e-06 -1017729071.0 +UniRef50_N3AGF2 Cytochrome c type protein TorY 1.99625858811e-05 9.62100964089e-06 -4175021233.58 +UniRef50_V0HZJ9 Cysteine desulfurase ATPase component 2.90311699825e-07 4.32427377806e-07 57373843.1564 +UniRef50_UPI00047B2607 pyrroloquinoline quinone biosynthesis protein PqqD 5.68164998459e-06 4.786165479e-06 -361518083.737 +UniRef50_Q5HR89 Nucleoside permease NupC, putative 9.22752397086e-05 2.97410986471e-05 -25245800126.7 +UniRef50_A6X846 2.06784488205e-07 3.56971296522e-07 60632257.517 +UniRef50_Q8X5R9 Multidrug resistance outer membrane protein MdtP 6.28031205658e-05 8.34369175775e-06 -21985939702.1 +UniRef50_R7PWL5 Tetrahydromethanopterin S methyltransferase subunit D 1.85388268482e-05 1.75107661102e-05 -415040735.655 +UniRef50_UPI000381633B hypothetical protein 8.35102652347e-07 3.46544146433e-06 1061900056.28 +UniRef50_O28392 DNA directed RNA polymerase subunit B 3.57461536165e-05 1.45920216293e-05 -8540182673.62 +UniRef50_UPI000471C680 hypothetical protein 2.14021699552e-06 3.86798106142e-07 -707876722.512 +UniRef50_C6C0W1 Flagellar hook capping protein 6.25011979495e-08 8.53687735363e-08 9231920.8811 +UniRef50_C5ZYT0 Flagellar biosynthetic protein fliR 3.29918202451e-06 3.7714211467e-05 13893769705.8 +UniRef50_A3M994 Glycerol 3 phosphate acyltransferase 1.00296958099e-06 6.54940272376e-05 26035831370.2 +UniRef50_O27221 3.81901260513e-05 5.64871506842e-06 -13137366941.8 +UniRef50_UPI00046F1A00 PTS lactose transporter subunit IIC, partial 2.35694247981e-07 5.12340255421e-07 111685388.032 +UniRef50_Q8X852 Anaerobic nitric oxide reductase flavorubredoxin homolog 9.06004697287e-06 6.7171309201e-06 -945863961.316 +UniRef50_N1QCI2 3.47431612211e-07 1.97791547763e-07 -60411530.3077 +UniRef50_UPI000346EB07 hypothetical protein 6.84484538426e-08 5.75029185245e-06 2293829904.08 +UniRef50_C2TQQ2 Peptidase, M23 M37 4.72809257569e-07 3.6012092922e-06 1262973483.77 +UniRef50_Q31J61 tRNA pseudouridine synthase D 1.36551539828e-07 1.44006784927e-07 3009773.93261 +UniRef50_Q82X69 DNA directed RNA polymerase subunit alpha 3.01970573484e-06 2.48231436974e-05 8802315463.77 +UniRef50_A5FRB6 Triosephosphate isomerase 6.32048671276e-08 1.10248192836e-07 18991967.875 +UniRef50_E3EYC8 2.04316364208e-06 7.7206553359e-07 -513157904.525 +UniRef50_UPI000383025F hypothetical protein 5.79978541618e-08 1.11025359298e-06 424808554.392 +UniRef50_B9KX89 Lipopolysaccharide biosynthesis protein like protein 6.53475087511e-05 1.67991242651e-05 -19599578572.7 +UniRef50_UPI0004799F87 hypothetical protein 5.08306769381e-07 1.61228410485e-06 445689197.655 +UniRef50_Q5HMA0 Putative aldehyde dehydrogenase SERP1729 9.93051916199e-05 3.62160397685e-05 -25469864793.4 +UniRef50_J7Q688 5.88770481722e-05 1.73715708938e-05 -16756270506.8 +UniRef50_B7GSP5 UPF0145 protein Blon_0093 BLIJ_0092 6.26760354376e-05 8.9489910665e-06 -21690267117.6 +UniRef50_P0A080 Methionine aminopeptidase 0.000184456943461 6.12905183714e-05 -49723797230.8 +UniRef50_UPI00029AD8DA MgtC family protein 9.76279424565e-08 2.37583207115e-07 56501657.7867 +UniRef50_E4RH84 3.19002244105e-06 1.21789178688e-06 -796173345.853 +UniRef50_UPI0002E94BF6 hypothetical protein 1.80643877389e-07 8.4698820894e-08 -38734196.6853 +UniRef50_I6D5L2 DNA mismatch repair endonuclease MutH 1.57544674083e-05 6.76297798153e-06 -3629974619.57 +UniRef50_V6J5F5 2.9699405655e-06 9.24832007824e-07 -825635421.04 +UniRef50_N3N816 2.23763877706e-07 1.07733713138e-07 -46842801.2863 +UniRef50_UPI00046883B3 hypothetical protein 6.08898639376e-08 3.91170731897e-08 -8789942.80711 +UniRef50_O26311 2.52666245388e-05 2.52407440337e-06 -9181446572.13 +UniRef50_R9GEA9 1.18797513848e-06 5.49949343175e-07 -257578843.022 +UniRef50_F2MRI9 PTS family mannose fructose sorbose porter component IIB 2.11397282274e-05 0.000114010743195 37493168397.9 +UniRef50_Q2IXV2 Transglutaminase like 5.87363564302e-05 1.87308078712e-06 -22956402168.0 +UniRef50_R4RQ23 2.25032262051e-05 1.08583484632e-05 -4701180043.12 +UniRef50_A4WT49 Flagellar hook capping protein 3.73500608085e-06 2.91475161056e-07 -1390195689.2 +UniRef50_W4KX88 1.82360381085e-06 4.40664585546e-05 17053958838.2 +UniRef50_UPI0003822DD9 hypothetical protein 3.26953949297e-07 3.99070481698e-07 29114329.0997 +UniRef50_UPI0003599277 PREDICTED 8.75011433112e-08 1.77644757568e-07 36392083.262 +UniRef50_B1HQN9 Oxidoreductase 3.09811814829e-07 3.60951961111e-07 20645904.6142 +UniRef50_A6LQN9 2.20752040266e-06 1.14727635005e-05 3740492335.92 +UniRef50_A4VWU0 Oxidoreductase, aldo keto reductase family 5.31654410109e-05 4.69659214923e-05 -2502822106.32 +UniRef50_Q71ZB6 Valine tRNA ligase 0.00011607580159 6.70740818618e-05 -19782595573.0 +UniRef50_UPI0001745DE2 iojap like protein 1.57311865608e-07 1.54185978416e-07 -1261959.01836 +UniRef50_X2D8N8 CCR4 NOT transcription complex subunit 1 like protein 2.073948527e-09 1.64110422442e-07 65416112.9306 +UniRef50_UPI000288BDB9 hypothetical protein 4.23818883364e-07 6.75120098089e-06 2554441798.48 +UniRef50_A8TYU1 1.81654248277e-06 3.98131953456e-07 -572629736.537 +UniRef50_B1M8V2 ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein 0.000110482934425 9.8272298877e-06 -40635943106.0 +UniRef50_A8TJK3 4.64977491737e-07 3.30064999485e-07 -54465828.6846 +UniRef50_A6M2M8 ABC 2 type transporter 3.74970592476e-06 1.84698361002e-05 5942697188.12 +UniRef50_D7GD90 DEAD DEAH box helicase domain protein 1.26390398057e-06 5.6542384263e-05 22316600833.2 +UniRef50_UPI00036142F7 hypothetical protein 1.49991024948e-08 1.48577346644e-07 53927176.3523 +UniRef50_UPI0003804935 hypothetical protein 1.64102526707e-07 2.04195223195e-07 16185913.5649 +UniRef50_P54569 9.92392698782e-05 4.4337418747e-05 -22164551023.1 +UniRef50_G3N5H8 3.42844569056e-06 1.77368301016e-06 -668048000.299 +UniRef50_Q5HKG1 0.00013345753669 5.26656333702e-05 -32616682798.3 +UniRef50_UPI00036B826D hypothetical protein, partial 5.50766493932e-08 4.3426136046e-07 153081520.977 +UniRef50_UPI0003B72BA0 hydrogenase 3.12086082261e-08 9.57761927362e-08 26066726.2001 +UniRef50_B5R316 UPF0304 protein YfbU 1.66624954215e-05 3.97287047353e-06 -5122957310.72 +UniRef50_F0MMC4 Amine oxidase, flavin containing 3.478177114e-06 3.95127882311e-05 14547614702.4 +UniRef50_V9QXD6 Porin 6.65291397705e-06 4.25943697766e-06 -966276035.919 +UniRef50_A6LW94 Transcriptional regulator, DeoR family 1.76946557275e-06 1.61628231504e-05 5810775080.44 +UniRef50_U3SVU2 5.68801182077e-06 5.86309163956e-06 70681871.3165 +UniRef50_B1YGB5 DNA replication and repair protein RecF 0.000184665548133 3.36847218e-05 -60952812333.7 +UniRef50_I6STT7 3.34666335117e-05 6.02675346134e-05 10819852658.8 +UniRef50_UPI0002BC6165 bacterioferritin comigratory protein 1.84825304258e-07 2.2017092355e-06 814240792.991 +UniRef50_M0V7T6 9.84516834463e-07 3.47431417872e-06 1005161741.13 +UniRef50_F9YYL3 Ferrous iron transport protein B 2.69549589222e-06 3.66827884652e-05 13721087082.7 +UniRef50_UPI00030260F1 cation 1.66083424888e-06 1.32603447e-06 -135162779.189 +UniRef50_N1MTR3 Type I restriction modification system,specificity subunit S 0.000127677238355 2.50175631683e-05 -41444970648.9 +UniRef50_A0A024EBR0 LmbE like protein 7.65594314752e-06 1.36404944659e-06 -2540114697.28 +UniRef50_L2D926 Fimbrial like adhesin protein 1.4121910621e-05 2.74287961482e-06 -4593854453.62 +UniRef50_V5A3C8 5.28198678434e-06 3.33846493983e-07 -1997624955.73 +UniRef50_F3U4M4 GntR family transcriptional regulator 1.90835953959e-06 1.6988496944e-06 -84581695.4781 +UniRef50_UPI0004695BC6 leucyl tRNA synthetase 4.75422282929e-08 1.5562105193e-08 -12910768.1357 +UniRef50_Q5FPX3 tRNA pseudouridine synthase A 2.33016042498e-06 7.47651250683e-08 -910530759.386 +UniRef50_Q5LI89 N acetylmuramic acid 6 phosphate etherase 6.90100093984e-08 2.10289577065e-05 8461788092.8 +UniRef50_UPI00037D2323 alpha glucosidase 4.53041820766e-08 3.04100759075e-07 104479353.925 +UniRef50_E3F031 Beta glucosidase 2.95037214071e-05 1.10858584528e-05 -7435517287.24 +UniRef50_P0AES3 Glucarate dehydratase 7.02954799968e-05 8.78875403996e-05 7102130663.47 +UniRef50_UPI000370BA4E hypothetical protein 7.20502329626e-07 5.82777945811e-07 -55601023.8144 +UniRef50_I6SW42 Transposase 1.29800417186e-06 1.83934280053e-05 6901632385.98 +UniRef50_UPI000360A0FF phosphoribosylglycinamide synthetase 1.86467445882e-07 8.87922415961e-08 -39432678.5798 +UniRef50_X5F4A5 1.14128498685e-05 6.55180477956e-06 -1962463554.14 +UniRef50_UPI0003630547 hypothetical protein 7.60039227276e-07 1.05280356734e-07 -264334190.833 +UniRef50_Q5HQB3 Inosine uridine preferring nucleoside hydrolase family protein 0.000110896238537 1.73346835175e-05 -37771947890.8 +UniRef50_T1AIV4 Multidrug transporter 3.30373060728e-07 5.89183652317e-06 2245231046.62 +UniRef50_O86567 Aminomethyltransferase 2.09158158154e-07 6.90653761094e-07 194385683.522 +UniRef50_D2VSM7 Predicted protein 6.36531801708e-08 1.93201807955e-06 754281837.295 +UniRef50_G7ZTG3 9.48107114663e-05 4.58052852016e-05 -19784091947.3 +UniRef50_A6TGA6 Rhamnulose 1 phosphate aldolase 3.20383182012e-05 1.29427310983e-05 -7709122842.65 +UniRef50_UPI0004763CF3 pseudouridine synthase 5.81392126613e-08 2.42057008727e-07 74249871.197 +UniRef50_Q0SRF8 Endoribonuclease YbeY 2.25589236365e-06 3.87724339418e-06 654559307.239 +UniRef50_R1C5J1 5.24229248771e-07 7.90221917779e-07 107384504.576 +UniRef50_V5P4D6 PTS fructose transporter subunit IIB 5.64687527535e-05 2.5995800943e-05 -12302304591.1 +UniRef50_Q9HYB2 1.80932536709e-05 4.02041979561e-06 -5681375728.55 +UniRef50_H8GCV6 Putative transcriptional regulator 5.90744896513e-07 1.11794729683e-07 -193358059.729 +UniRef50_Q1J3U3 Transcriptional regulator, MerR family 1.2868840529e-05 0.000314781732444 1.21885939354e+11 +UniRef50_A1B304 Heat shock protein DnaJ domain protein 2.07030706866e-06 3.33691192315e-06 511343922.747 +UniRef50_A0A022H4X6 GntR family transcriptional regulator 3.34616244267e-07 4.40145301052e-07 42603375.2113 +UniRef50_O34677 Glutamine transport ATP binding protein GlnQ 1.81155000652e-05 9.01977646216e-05 29100494750.3 +UniRef50_Q98L75 Hemin import ATP binding protein HmuV 9.660166239e-08 5.54022556773e-06 2197657771.36 +UniRef50_G7U407 O antigen polymerase 1.07037614984e-06 7.39729341918e-05 29431657296.5 +UniRef50_O67604 Riboflavin synthase 1.8922804886e-07 2.95569233109e-07 42931241.0344 +UniRef50_UPI00035CB0C6 hypothetical protein 7.26520480106e-08 1.02498671824e-07 12049448.2927 +UniRef50_UPI000441B666 PREDICTED 1.84541740747e-07 1.4969606456e-07 -14067627.0812 +UniRef50_F9K9S6 Glyoxylate reductase 2.94680013299e-06 2.1848338239e-06 -307615149.358 +UniRef50_Q9RW09 Sensor histidine kinase 1.3827325599e-06 5.02788511845e-05 19739963111.6 +UniRef50_W4U410 Lysophospholipase L2 7.00358479649e-07 6.43304216154e-06 2314354750.32 +UniRef50_UPI0003B5FE88 RNA polymerase sigma factor RpoE 8.08418463745e-06 7.72663091172e-07 -2951750970.69 +UniRef50_I6T5F3 Deoxyribonuclease 6.95652230996e-05 1.43992609936e-05 -22271175864.7 +UniRef50_F7NPL8 4.342524562e-07 1.21262356921e-07 -126357943.899 +UniRef50_F0Y846 1.5185373942e-06 3.07109306929e-06 626785778.034 +UniRef50_K8C5J6 Translation initiation factor IF 2 2.53454226222e-05 1.51853782466e-05 -4101734592.19 +UniRef50_UPI0003DE73F4 PREDICTED 8.77149972398e-09 1.32507892727e-08 1808344.15788 +UniRef50_J3QFT9 4.38535395469e-08 8.10167048895e-07 309370167.448 +UniRef50_W8GMX2 Antitoxin 3.85189784541e-06 5.09166733097e-06 500510155.003 +UniRef50_UPI000476B5A8 hypothetical protein 8.51870467217e-07 0.000129108730146 51778868141.1 +UniRef50_F3Z514 Putative cold shock protein 1.82576859218e-05 4.11289866682e-06 -5710424190.9 +UniRef50_Q56632 Vibriobactin specific 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 8.22624134819e-08 2.29917180878e-07 59610041.5255 +UniRef50_Q9RYM5 8.81976609493e-07 7.52036892396e-05 30004587418.7 +UniRef50_Q9RYM9 1.55774901697e-07 0.000653801981306 2.63884994666e+11 +UniRef50_UPI000399284A PREDICTED 1.04118684972e-07 1.09546543662e-06 400218848.833 +UniRef50_C5N1J7 Kinase, PfkB family 0.000100911004936 1.53477095771e-05 -34542952316.1 +UniRef50_A5FZN2 Galactarate dehydratase 5.70192735234e-05 1.31200101454e-05 -17722671330.2 +UniRef50_UPI0003B3B04C MFS transporter 1.61280413142e-07 7.06417222195e-08 -36591951.7872 +UniRef50_UPI000262C1BF adenosylcobinamide phosphate synthase 2.50670606869e-07 1.16874545804e-07 -54015111.7142 +UniRef50_D5K8E6 UbiC transcription regulator associated protein 0.000148399742338 3.93272239083e-05 -44033914160.5 +UniRef50_E6MWT7 Peptidyl prolyl cis trans isomerase 1.64223720365e-06 3.54114655461e-05 13633051876.9 +UniRef50_Q5HGL7 Peptide deformylase like 0.000134900540338 5.07273647925e-05 -33981743888.7 +UniRef50_A9LZP7 2.8453717753e-06 1.89524027011e-05 6502606040.24 +UniRef50_Q1QLF3 2.44035780859e-05 8.972954244e-06 -6229532200.02 +UniRef50_Q5HRJ2 3 oxoacyl reductase, putative 0.000128128992334 3.60653980476e-05 -37167202760.8 +UniRef50_B6YRP0 S adenosylmethionine synthase 3.94428814984e-07 2.60829952447e-06 893766772.67 +UniRef50_Q9RT82 2.46722868534e-06 0.000175185642636 69728543205.3 +UniRef50_P05827 HTH type transcriptional regulator IlvY 3.45398178848e-05 1.75605343953e-05 -6854745103.95 +UniRef50_W1PW22 3.87021954854e-07 5.18001643751e-07 52878107.7092 +UniRef50_UPI0004098CB0 sugar ABC transporter 9.2286988138e-08 3.92979250041e-07 121393156.039 +UniRef50_UPI00046A1978 ABC transporter permease 3.63723394977e-07 8.51849342804e-08 -112449394.635 +UniRef50_D2NQB1 5.96808617329e-07 8.52588449168e-07 103261456.885 +UniRef50_F0QNU4 1 acyl sn glycerol 3 phosphate acyltransferase 7.37415830084e-06 0.0001070026496 40221244516.6 +UniRef50_F4GUZ8 9.129319897e-08 1.16422553192e-07 10145028.6713 +UniRef50_Q2CBD6 9.94205564893e-08 4.60123433811e-08 -21561551.0243 +UniRef50_P45095 Dipeptide transport ATP binding protein DppD 4.68100251102e-05 3.5156750618e-06 -17478460396.0 +UniRef50_A3PSS2 Dihydroxy acid dehydratase 3.81342339775e-07 3.62860237416e-07 -7461451.52323 +UniRef50_P08179 Phosphoribosylglycinamide formyltransferase 2.25177271537e-05 1.3762973617e-05 -3534401435.67 +UniRef50_UPI000360F7E6 hypothetical protein 1.26381634915e-07 1.07746639859e-07 -7523176.18121 +UniRef50_W1BDM8 Chaperone protein HscA 1.64323167059e-06 1.88851131809e-06 99022403.6155 +UniRef50_W0Z408 3.39695659152e-06 2.01058619745e-05 6745590144.44 +UniRef50_A7X763 Imidazole glycerol phosphate synthase subunit HisF 9.52121310255e-05 1.32884434372e-05 -33073597996.1 +UniRef50_D3E067 Nitroreductase family protein 6.77472677209e-05 9.85488178211e-06 -23371866623.0 +UniRef50_R0F7I9 1.65179960443e-06 4.64698622668e-07 -479247233.704 +UniRef50_UPI000465952B membane protease HflC 1.57205836514e-07 1.5985058735e-07 1067718.36724 +UniRef50_C5N6C9 Universal stress family protein 9.08686348549e-05 3.32179350531e-05 -23274294963.6 +UniRef50_UPI000427AC9A porin 2.17635528263e-06 2.32216974661e-07 -784872492.187 +UniRef50_V5V9L8 Glycine cleavage T protein 6.85657105098e-06 7.63927675394e-05 28072615827.5 +UniRef50_A0A027RVP4 4.36581542328e-05 9.54032941423e-06 -13773784552.1 +UniRef50_UPI00034A9B47 hypothetical protein 1.52334783284e-07 2.0309632292e-07 20493056.4652 +UniRef50_Q98KP1 Cobyrinic acid A,C diamide synthase 1.22576643302e-07 3.43154630125e-06 1335871656.54 +UniRef50_D5ZNQ6 Transposase IS204 family protein 1.909709893e-06 1.19647901543e-07 -722669992.483 +UniRef50_A6MVW4 ATP synthase subunit alpha, chloroplastic 4.1065778982e-08 2.21958633047e-07 73028664.991 +UniRef50_U1GGK9 Cell envelope related transcriptional attenuator 6.61732240486e-08 3.06203938204e-07 96903344.8125 +UniRef50_UPI0002BBA067 hypothetical protein 1.49804369715e-07 2.61693872819e-05 10504424917.8 +UniRef50_L8PB26 Putative Linear gramicidin synthetase LgrC 3.7919427142e-06 4.02523088356e-06 94181296.7384 +UniRef50_V7H7E4 6.84277782178e-07 2.66717731417e-07 -168574116.53 +UniRef50_B1VXS1 1.19949661193e-07 4.84109939426e-07 147015973.072 +UniRef50_Q9ZMV6 UPF0026 protein jhp_0109 1.24720040369e-06 3.24524857148e-05 12597956612.0 +UniRef50_UPI00037A38D7 hypothetical protein 8.6506383219e-07 1.21794085894e-06 142460785.987 +UniRef50_P58409 3.59326384759e-05 1.78334174832e-05 -7306877617.17 +UniRef50_D1BK43 2.43133426411e-06 4.37035060887e-05 16662082232.1 +UniRef50_B8EIF0 4.80681564945e-08 6.53496296159e-08 6976742.76663 +UniRef50_C9XTA5 Tat linked quality control protein TatD 4.41268379763e-05 1.44278582111e-05 -11989842578.7 +UniRef50_P38392 Superinfection exclusion protein B 5.48301099577e-05 2.55946801891e-05 -11802701756.7 +UniRef50_B2V3W1 Permease 7.46371472637e-06 5.39703075147e-06 -834345681.731 +UniRef50_X2M6Z7 7.15590225249e-07 1.93074159483e-07 -210946147.743 +UniRef50_D3QD71 FemC, factor involved in methicillin resistance Glutamine synthetase repressor 0.000170980775984 3.04282279934e-05 -56742788397.7 +UniRef50_Q2KBF3 Tetracycline efflux transporter protein 2.33310615449e-06 5.79657557487e-05 22459583330.6 +UniRef50_Q9WYG0 8.08941454917e-08 9.01169592152e-08 3723363.07683 +UniRef50_Q2FDT8 Probable transglycosylase IsaA 0.000328414448291 1.15594250238e-05 -1.27918261141e+11 +UniRef50_UPI00036FC7C5 hypothetical protein 5.6408117369e-08 3.57081443686e-07 121385511.511 +UniRef50_Q2T0X3 Cholesterol oxidase 9.14801495341e-06 2.01697732584e-06 -2878887397.92 +UniRef50_UPI0003C1A958 PREDICTED 3.89790669515e-07 1.20858745548e-06 330558310.261 +UniRef50_V6Q9U1 3.97280200999e-05 0.000126841599267 35168820913.6 +UniRef50_A6LU63 Metallophosphoesterase 2.55917559997e-06 1.0489383901e-05 3201522405.72 +UniRef50_Q9L6I1 Histidinol dehydrogenase 7.05974743672e-08 1.20703889761e-07 20228574.7693 +UniRef50_D2GME6 Uro adherence factor A 3.29769427568e-05 1.43742187303e-05 -7510147970.59 +UniRef50_R0ENU8 KxYKxGKxW signal peptide 2.33582500386e-08 4.87554345321e-08 10253155.0385 +UniRef50_F0RIT9 NHL repeat containing protein 9.516453501e-07 0.000177993019726 71473775377.6 +UniRef50_C0ZS23 9.95018329976e-08 1.9073865801e-07 36833425.8593 +UniRef50_Q8DSK8 6.00553873078e-05 1.52541645479e-05 -18086803401.0 +UniRef50_P27278 Trifunctional NAD biosynthesis regulator protein NadR 3.5173203564e-05 4.32221507771e-06 -12454922636.1 +UniRef50_UPI0003C16102 PREDICTED 2.78906870337e-07 2.6043153439e-07 -7458719.83967 +UniRef50_P0A2E9 RNA polymerase sigma factor FliA 2.41848291011e-05 1.23800534721e-05 -4765732782.31 +UniRef50_A6T4E6 UPF0246 protein KPN78578_00060 5.03051663173e-05 4.68393018195e-05 -1399212028.7 +UniRef50_Q72J47 Ribose 5 phosphate isomerase A 3.44530447282e-06 0.000489469828717 1.96214064629e+11 +UniRef50_UPI0003B500DC hypothetical protein, partial 1.55603472713e-06 4.14670566688e-07 -460782717.683 +UniRef50_R4MBB3 2.12778856842e-08 1.13723586609e-07 37321463.8997 +UniRef50_Q9ZJ57 Transcription repair coupling factor 8.11257640167e-07 5.16084735742e-05 20507459424.5 +UniRef50_R4ZYK3 CAAX amino terminal protease family 4.90800216882e-05 2.02966807698e-06 -18994805125.6 +UniRef50_D7CXC6 Thioesterase superfamily protein 1.20829146056e-07 2.01604776964e-05 8090252033.9 +UniRef50_UPI0002D421A9 hypothetical protein 9.90130692353e-07 2.09998907161e-07 -314948774.976 +UniRef50_UPI0004666DD2 NAD dependent dehydratase 5.32794220664e-08 1.70370488017e-07 47271100.1934 +UniRef50_P76149 Succinate semialdehyde dehydrogenase [NAD+] Sad 3.35644075898e-05 1.64821501142e-05 -6896316965.77 +UniRef50_N0B4C8 1.29842145169e-06 3.04863580198e-07 -401111505.047 +UniRef50_P77495 Propionate CoA ligase 7.84977629583e-06 7.26440129384e-06 -236323071.662 +UniRef50_A1AXZ2 S formylglutathione hydrolase 7.99509560498e-05 2.29799387586e-05 -22999898793.5 +UniRef50_C6STZ5 4.38895302526e-05 5.35973898332e-05 3919182041.52 +UniRef50_A9W4X6 Sulfite reductase [NADPH] hemoprotein beta component 0.000118305531116 3.12359921694e-05 -35151041336.1 +UniRef50_Q6SSJ3 Acetolactate synthase, mitochondrial 8.05417734946e-08 1.03221992684e-07 9156282.80435 +UniRef50_K7S2B2 Sirohydrochlorin cobaltochelatase 1.47647714023e-06 2.44399968812e-05 9270654713.52 +UniRef50_X2ME11 Glutathione ABC transporter permease 4.80482699606e-06 9.52549918961e-06 1905793293.7 +UniRef50_UPI000373BE38 hypothetical protein 9.75822269403e-08 1.52240829576e-07 22066348.6205 +UniRef50_L0EAK7 O glycosyl hydrolase 4.67692782591e-06 4.54705383499e-06 -52431723.8675 +UniRef50_Q97P97 Ribosomal silencing factor RsfS 9.69642706325e-05 0.000105902859345 3608617952.05 +UniRef50_UPI000360CFF1 hypothetical protein 1.7054782912e-07 7.93992166737e-07 251692129.618 +UniRef50_F5XDU3 1.68610186858e-07 9.56200205152e-07 317959755.202 +UniRef50_D1BRB3 3.13114066676e-07 1.14386016294e-07 -80228952.6066 +UniRef50_Q2J3W0 1.15721926882e-06 8.34949584588e-07 -130104226.218 +UniRef50_Q8XJS1 tRNA pseudouridine synthase B 1.26249494601e-06 8.52464311664e-06 2931818333.06 +UniRef50_B7UQI7 HTH type transcriptional repressor NsrR 7.16731215833e-06 4.16917701458e-06 -1210383948.79 +UniRef50_UPI00016BFAFA hypothetical protein, partial 1.11489569517e-08 3.19757907757e-08 8408048.38874 +UniRef50_W7WQV3 9.90065263461e-08 4.09142866282e-07 125205846.233 +UniRef50_UPI000395618F 6.06890657318e-07 9.56749584945e-07 141242342.335 +UniRef50_N8K6N9 1.08778229038e-06 2.31996144509e-07 -345491368.765 +UniRef50_UPI000185D852 hypothetical protein TGME49_026320 9.33756431966e-08 9.28750881292e-08 -202080.223211 +UniRef50_M4ZG31 Drug metabolite transporter superfamily protein 6.07313242201e-05 8.09912853241e-06 -21248263268.8 +UniRef50_UPI00036A115E hypothetical protein 8.33257015501e-07 4.37909185109e-07 -159606770.593 +UniRef50_A5UMF7 Predicted metal dependent membrane protease 2.5047657686e-05 1.11802674918e-05 -5598435593.41 +UniRef50_E6YL73 1.0354972995e-05 3.76904128365e-06 -2658821450.34 +UniRef50_R6M763 7.75656141478e-06 5.16070661491e-05 17702986867.4 +UniRef50_M1PJ51 1.21765464228e-07 3.11879104652e-07 76751209.5959 +UniRef50_K2JGL6 1.45221832666e-06 4.50277002653e-07 -404496007.706 +UniRef50_UPI000262543A preprotein translocase subunit SecB 5.04877266856e-07 9.82587918199e-07 192857652.116 +UniRef50_H5YAU3 ABC type spermidine putrescine transport system, permease component II 0.000152167393029 5.03649065513e-05 -41098913048.2 +UniRef50_UPI00037F1EED hypothetical protein 8.89378651807e-07 3.51108947596e-07 -217306084.902 +UniRef50_A0LA39 Indole 3 glycerol phosphate synthase 2.06278774831e-07 1.29145794963e-07 -31139530.5008 +UniRef50_P19319 Respiratory nitrate reductase 2 alpha chain 2.86593473857e-08 2.99052009327e-07 109160835.717 +UniRef50_W6RYK9 Alpha dextran endo 1,6 alpha glucosidase 1.16598614574e-06 1.74833938943e-05 6587537745.22 +UniRef50_K2M7A1 2.06281715712e-06 9.03429730277e-07 -468058931.499 +UniRef50_F3P2W5 5.82841619358e-07 3.46101525294e-07 -95574881.1013 +UniRef50_B0VAL5 Ribosomal RNA large subunit methyltransferase K L 1.93357553506e-06 5.80169637857e-05 22641552057.3 +UniRef50_P0ACQ8 HTH type transcriptional regulator TdcA 2.91857139325e-05 8.58157022104e-06 -8318145657.61 +UniRef50_R9SMW6 5.10560160835e-05 6.19540423194e-06 -18110779506.1 +UniRef50_UPI00037472A8 hypothetical protein 0.000108452909333 3.23656694733e-05 -30717352426.8 +UniRef50_UPI00036CDC12 hypothetical protein 4.89548727809e-08 3.86852179044e-07 136413289.005 +UniRef50_Q6GK63 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 0.000312873402737 8.93735192555e-05 -90229645613.3 +UniRef50_UPI00046235B0 hypothetical protein TRAVEDRAFT_69016 4.80786716452e-06 1.67081587097e-06 -1266466103.15 +UniRef50_UPI0001632402 hypothetical protein 8.64528789287e-07 8.44257606478e-06 3059350678.21 +UniRef50_UPI0003B5E791 excinuclease ABC subunit B 3.15399214197e-07 3.8764317956e-05 15522300317.4 +UniRef50_W7D397 PadR family transcriptional regulator 1.18540365383e-06 3.63671798199e-07 -331743233.902 +UniRef50_Q9RRD7 Aspartyl glutamyl tRNA amidotransferase subunit B 1.75995025254e-06 0.000502267896033 2.02061199635e+11 +UniRef50_D2J8F1 5.58292746484e-05 6.98624072391e-07 -22256920166.7 +UniRef50_UPI000474D7ED hypothetical protein, partial 6.5713985504e-07 5.94009960422e-07 -25486313.1482 +UniRef50_UPI0003694619 hypothetical protein 7.62576349525e-08 2.90555804597e-07 86514800.8195 +UniRef50_Q7VUN5 Prolipoprotein diacylglyceryl transferase 6.51701276842e-07 3.24150931095e-07 -132236094.073 +UniRef50_P11908 Ribose phosphate pyrophosphokinase 2 1.98175225429e-07 6.52788241283e-07 183532853.229 +UniRef50_E3NW74 4.41376074096e-07 3.41831142436e-07 -40187510.4648 +UniRef50_F3PMN2 5.99016490107e-07 2.48949448219e-06 763209164.176 +UniRef50_P67176 Probable transcriptional regulatory protein YebC 3.74263658625e-05 4.92736667377e-06 -13120244780.0 +UniRef50_UPI0003C1377F PREDICTED 1.51730767463e-07 7.8561869427e-08 -29539182.0205 +UniRef50_UPI00035E1742 hypothetical protein 3.88606070013e-08 7.75539927303e-08 15620994.64 +UniRef50_I0C568 Cysteine desulfurase 0.00017650146737 4.88476506883e-05 -51535412283.0 +UniRef50_Q9CIS4 N acetyldiaminopimelate deacetylase 7.95316598662e-05 7.41225728289e-05 -2183714813.92 +UniRef50_H9JHD1 1.20980512765e-07 5.41582488401e-07 169802178.931 +UniRef50_A3M3L5 Dichlorophenol hydroxylase 2.55813375982e-06 7.79631108392e-05 30441914570.1 +UniRef50_A2SL87 ABC transporter permease protein 0.000154917996742 3.25811325903e-05 -49388893300.3 +UniRef50_A3PG71 Multi sensor hybrid histidine kinase 1.00641208363e-05 7.87861374395e-07 -3744939777.28 +UniRef50_R4K8M4 ABC type nitrate sulfonate bicarbonate transport system, ATPase component 1.09096454872e-05 8.74808301326e-06 -872649296.084 +UniRef50_K7ECB4 7.34617983995e-07 1.17351804686e-06 177189341.288 +UniRef50_P15043 ATP dependent DNA helicase RecQ 2.09738780536e-05 5.23819557883e-06 -6352688113.62 +UniRef50_P52331 RNA polymerase sigma factor SigA 0.000238943328062 0.00012142180399 -47444881419.1 +UniRef50_Q31GL1 5.96917282558e-07 2.20291924508e-07 -152048278.758 +UniRef50_X2HGW8 Alkaline protease secretion protein AprE 1.76079988287e-06 1.96390953199e-05 7217687259.27 +UniRef50_O84834 Ribonucleoside diphosphate reductase subunit alpha 2.8791927524e-08 5.21165629071e-07 198777305.419 +UniRef50_F8KIL6 NADH oxidase family protein 9.92899441259e-05 3.2548485395e-05 -26944345899.5 +UniRef50_Q67N11 Pseudouridine 5 phosphate glycosidase 0.000182214047341 2.46025530664e-05 -63629694349.3 +UniRef50_Q28R93 Toxic anion resistance 4.18208358637e-05 8.63714470269e-06 -13396663331.4 +UniRef50_P37683 Inner membrane protein YiaV 5.58544802753e-05 1.31810113006e-05 -17227803087.4 +UniRef50_B7ULC6 Xylose isomerase 5.77521267828e-05 2.1378458552e-05 -14684496219.9 +UniRef50_W6M578 3.73503326426e-06 1.95989782119e-06 -716643961.729 +UniRef50_UPI00037B97F0 hypothetical protein 1.19153769054e-07 2.64256493778e-07 58579750.5817 +UniRef50_X6MYI2 5.91433015345e-08 1.76947537862e-06 690482047.656 +UniRef50_UPI00042541FF hypothetical protein 1.96438993307e-07 1.9530376192e-07 -458306.841788 +UniRef50_UPI0003B727B1 50S ribosomal protein L24 3.39707220721e-07 1.68139900757e-07 -69263832.4372 +UniRef50_UPI00046D149F hypothetical protein 1.21720508364e-07 1.30294836648e-07 3461561.54709 +UniRef50_Q7W6C6 Non canonical purine NTP pyrophosphatase 1.0555702073e-06 3.39980568062e-07 -288892318.633 +UniRef50_W5WYX4 Alkaline phosphatase 3.48207865387e-06 3.83922051208e-06 144182550.783 +UniRef50_P02983 Tetracycline resistance protein 0.00573449640169 0.00199788693154 -1.50851509645e+12 +UniRef50_U3T3X0 O methyltransferase 3.82587150866e-06 3.87493521807e-05 14099037706.6 +UniRef50_UPI00046FEA8D GntR family transcriptional regulator 6.30660519476e-07 2.27910646503e-07 -162595066.016 +UniRef50_Q97MM1 N acetylmuramic acid 6 phosphate etherase 7.38837239037e-08 9.57256916304e-08 8817870.40235 +UniRef50_L7WQT3 Prephenate dehydratase 0.000193261519228 8.27844693206e-05 -44600940753.3 +UniRef50_UPI00047E31BE methionine aminopeptidase 2.0896686494e-07 1.59942222588e-07 -19791849.7175 +UniRef50_UPI0003B46743 hypothetical protein 1.46105377266e-06 1.19396794301e-05 4230349765.09 +UniRef50_P72479 Oligopeptide transport ATP binding protein OppF 6.8082495341e-05 2.43256978593e-05 -17665156099.6 +UniRef50_A4WNF9 Metallophosphoesterase 2.93243478848e-05 1.27031100512e-05 -6710197678.95 +UniRef50_Q9AHJ5 Interrupted beta D glucuronidase 7.57471850256e-05 7.16382241939e-06 -27687945096.6 +UniRef50_E9B5T6 Proteophosphoglycan ppg1 2.90697901286e-08 7.08370068878e-08 16861937.9471 +UniRef50_Q02431 Chlorophyllide reductase 35.5 kDa chain 0.000113805442473 9.81479729588e-06 -41982299566.7 +UniRef50_A0A034HVJ8 4.07005541126e-05 4.16917701458e-06 -14748165224.9 +UniRef50_N0CE78 Snf2 family protein 7.44673737484e-07 2.18026279815e-05 8501354538.46 +UniRef50_UPI000473A49C hypothetical protein, partial 3.28072894097e-07 4.48726946494e-06 1679118694.73 +UniRef50_UPI000475C363 GntR family transcriptional regulator 2.0549375882e-07 2.30055457136e-07 9915859.0161 +UniRef50_UPI000255B851 thiamine biosynthesis adenylyltransferase 6.82402891564e-08 1.23479565094e-07 22300773.5582 +UniRef50_UPI0003C17DF0 PREDICTED 1.38774497287e-07 9.96542419774e-08 -15793327.128 +UniRef50_Y9YFG1 Serine aspartate repeat containing protein D 2.71732010744e-05 3.01856938874e-06 -9751521222.18 +UniRef50_UPI0002556FCA major facilitator family transporter, partial 1.42961203675e-07 5.32509012927e-07 157265230.884 +UniRef50_I1ALS6 Flp pilus assembly protein TadG 6.86443205609e-06 1.36404944659e-06 -2220571956.74 +UniRef50_UPI00035E72D8 hypothetical protein 5.76164371093e-08 2.77658124031e-07 88833529.2256 +UniRef50_UPI0004243274 hypothetical protein 2.54895606645e-07 1.67707422968e-07 -35198939.6697 +UniRef50_UPI0003942A9F 7.43765265774e-08 3.24246547439e-08 -16936485.4665 +UniRef50_A5UMV2 Predicted polysaccharide polyol phosphate ABC transporter, permease component 2.41752645776e-05 5.64082114019e-06 -7482582258.88 +UniRef50_A3DIP6 UDP N acetylmuramate L alanine ligase 1.82885775899e-06 7.70614094769e-06 2372731345.65 +UniRef50_UPI0000164CF6 hypothetical protein DR_1761 3.66361200249e-06 0.00367022323052 1.48023511174e+12 +UniRef50_Q13SY1 Probable chemoreceptor glutamine deamidase CheD 1.29908418105e-06 2.30232681357e-07 -431508466.708 +UniRef50_F0L781 Permeases of the major facilitator superfamily 1.80337174001e-06 4.96584957997e-07 -527565859.975 +UniRef50_G0DRF3 1.20731126496e-06 7.22314475428e-05 28673315379.5 +UniRef50_A1WQY3 Alanine racemase 8.52684738129e-06 3.67152253227e-07 -3294169053.92 +UniRef50_A5WHX2 Superfamily I DNA and RNA helicase like protein 1.83064294941e-06 8.52290629596e-05 33668965571.8 +UniRef50_R7PS51 3.8721516281e-05 6.74033673906e-06 -12911194634.3 +UniRef50_J9U7Y2 0.000122401822874 3.97473189481e-05 -33368637519.7 +UniRef50_J7QB56 7.14598300831e-06 6.11000079721e-06 -418238731.552 +UniRef50_Q8ZMH3 Serine threonine protein phosphatase 2 2.5254015282e-05 2.17160279463e-05 -1428328903.41 +UniRef50_P67760 UPF0302 protein SA1295 0.000187015404039 2.75045431704e-05 -64396491951.2 +UniRef50_A3PR59 Flavin reductase domain protein, FMN binding 0.000117203284293 4.06809538251e-05 -30893003844.5 +UniRef50_Q66FG9 Glycerol 3 phosphate acyltransferase 1.06288818658e-06 7.85765069176e-07 -111878003.179 +UniRef50_A6TWG5 30S ribosomal protein S5 0.000378096039141 0.000134995983289 -98142475720.6 +UniRef50_P37168 Putative oxidoreductase YceM 1.40302182391e-05 5.76335613062e-06 -3337433679.0 +UniRef50_UPI000255C7E1 uroporphyrin III C tetrapyrrole methyltransferase 1.68773922273e-07 6.94331487445e-07 212174038.377 +UniRef50_A0A028XDJ1 Ornithine cyclodeaminase mu crystallin domain protein 2.26262281297e-06 8.8121208325e-07 -557692463.404 +UniRef50_UPI000477AE3E hypothetical protein 2.54620588548e-07 1.26555052857e-07 -51701628.2993 +UniRef50_UPI0003B3FFE1 zinc binding dehydrogenase 1.37085843461e-07 1.04423237738e-07 -13186294.7456 +UniRef50_UPI0001913AE8 oligopeptide ABC transporter, permease protein OppC, partial 3.80250395831e-07 7.26280782821e-07 139696713.498 +UniRef50_Q5PMJ4 tRNA specific 2 thiouridylase MnmA 4.80990039616e-05 2.74157870841e-05 -8350068465.06 +UniRef50_Q9Y7M1 Putative 2 hydroxyacyl CoA lyase 1.84997417258e-08 6.58362972527e-08 19110348.3511 +UniRef50_UPI0003B30236 3 oxoacyl ACP synthase 3.69149421803e-08 5.28013571983e-07 198262543.309 +UniRef50_V6G3R8 ABC transporter, substrate binding protein, family 5 domain protein 1.38594828447e-05 4.32170788082e-06 -3850516794.58 +UniRef50_A9H9A8 ATP synthase subunit beta 0.000444593269575 0.000222112927959 -89818044051.2 +UniRef50_B8EPL9 UPF0301 protein Msil_1255 2.59320771537e-07 5.10107863836e-07 101245826.665 +UniRef50_U3T6B1 Iron ABC transporter substrate binding protein 6.55969071909e-06 7.18793021978e-05 26370328715.7 +UniRef50_A4XX95 NADH dehydrogenase (Quinone) 3.87828070733e-06 2.82599717884e-06 -424819773.422 +UniRef50_B9KX15 Short chain dehydrogenase reductase SDR 6.47332187081e-05 1.75159066935e-05 -19062208281.9 +UniRef50_UPI00047DFFFB hypothetical protein 6.5665246778e-08 7.87478303564e-08 5281599.53195 +UniRef50_Q72AR4 Lipoprotein signal peptidase 1.11565359832e-07 1.95860291508e-07 34030898.3327 +UniRef50_Q9RZC9 2.23364490448e-06 0.000292671559215 1.17253350081e+11 +UniRef50_Q6A8Z5 tRNA dimethylallyltransferase 2.78857484072e-07 7.6636112687e-05 30826360934.3 +UniRef50_C0Z6T1 N acetyl gamma glutamyl phosphate reductase 1.90839953744e-07 1.11661445576e-07 -31965335.377 +UniRef50_Q6G723 Staphylococcal secretory antigen ssaA2 7.98019925823e-05 1.84745821938e-05 -24758628145.8 +UniRef50_Q9RZC7 3.86043983463e-06 0.000484883359355 1.94194855425e+11 +UniRef50_T0GNN5 7.07299404308e-06 4.36215245423e-06 -1094400015.19 +UniRef50_D3PKE0 PepSY associated TM helix domain protein 2.08940584237e-06 0.000334656105796 1.34261257824e+11 +UniRef50_UPI000441E5AE PREDICTED 1.6772561522e-07 2.42505295588e-07 30189474.6144 +UniRef50_Q9L730 SanE 1.99648333434e-07 1.27435112644e-07 -29153363.3888 +UniRef50_UPI00030945F6 cation transporter 3.64740059683e-08 1.39182477174e-07 41464670.2005 +UniRef50_Q3IVJ0 Replication protein C 3.72978215305e-05 9.64121750937e-06 -11165310428.0 +UniRef50_UPI0002556222 ATP dependent DNA helicase Rep 7.68236512601e-08 1.08236932095e-07 12681926.9574 +UniRef50_Q13IW9 ATP synthase subunit alpha 3 4.51165384017e-06 1.19480797778e-06 -1339051376.92 +UniRef50_A3X0R4 Terminase, large subunit, putative 4.14720543927e-08 6.30294093475e-07 237714682.836 +UniRef50_D6SEC7 DHHA1 domain protein 0.000247525822377 6.89627481478e-05 -72088104281.6 +UniRef50_A5PL98 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 3.41815213199e-07 3.9204812533e-07 20279643.0544 +UniRef50_UPI0003C19C73 PREDICTED 1.97205281455e-06 2.49722981808e-07 -695325688.841 +UniRef50_I6WVI5 4.97598354546e-08 2.24101060476e-07 70383691.9484 +UniRef50_P13063 Periplasmic [NiFeSe] hydrogenase small subunit 5.24442222101e-07 1.59699051607e-07 -147251293.83 +UniRef50_Q9KC26 Biotin synthase 7.14569877676e-08 6.05228430452e-07 215490081.524 +UniRef50_O87131 Chemotaxis protein methyltransferase 1 1.6388114327e-05 6.91043885684e-06 -3826253891.46 +UniRef50_D2SGL3 Gm3773 predicted gene 3773 1.21324768436e-06 6.26293008265e-08 -464518761.106 +UniRef50_UPI0004662606 glycolate oxidase 4.23784533649e-08 4.21141587262e-07 152911325.101 +UniRef50_B5Z805 1.44815596745e-06 7.15425937683e-05 28297984695.7 +UniRef50_D2NRN3 3.70575723281e-07 1.41066330516e-05 5545414903.81 +UniRef50_A4WT54 4.65049659479e-05 1.42054429477e-05 -13039713794.9 +UniRef50_R0TNR1 6.22998670332e-06 2.24396514433e-05 6544040570.49 +UniRef50_Q9JSZ8 UDP N acetylmuramate L alanine ligase 2.09900531417e-06 2.59349446361e-05 9622861204.12 +UniRef50_D3E0J9 Putative adenylate kinase 3.35745966688e-05 3.34952784714e-06 -12202231186.6 +UniRef50_B4WIG2 8.40574045213e-07 5.58851510447e-07 -113734844.409 +UniRef50_UPI0004625279 transposase 3.72161937676e-07 7.30425775741e-08 -120758156.28 +UniRef50_K9WHG2 7.46002410406e-06 2.64071577242e-06 -1945613913.05 +UniRef50_A4XVS8 1.64841786411e-06 8.28377854697e-07 -331060214.823 +UniRef50_F8DJ84 CBS domain protein 8.72700155911e-05 4.74469116367e-05 -16077075750.8 +UniRef50_P45694 Transketolase 9.47111820625e-05 6.01062620824e-05 -13970430846.1 +UniRef50_A0A023S1I9 TetR family transcriptional regulator 1.89374241902e-06 7.73465104895e-05 30461208379.6 +UniRef50_UPI0003B3BF67 XRE family transcriptional regulator 1.87146692914e-06 1.27589480149e-06 -240439776.424 +UniRef50_Q2FWV6 Staphylococcal complement inhibitor 5.16536007076e-05 1.52458233835e-05 -14698266479.4 +UniRef50_UPI000467D6E6 TetR family transcriptional regulator 1.16109909575e-07 1.2939868751e-06 475523385.156 +UniRef50_R6HDW3 GTP binding protein TypA BipA 2.2782885732e-07 1.3698761851e-07 -36673722.855 +UniRef50_B9TQ05 1.3180762642e-06 1.40187240404e-05 5127407361.73 +UniRef50_A3KAM8 3.02719387657e-08 1.51836475033e-08 -6091328.33679 +UniRef50_Q8CN73 Nitrate reductase delta chain 7.13593379273e-05 3.85581745535e-05 -13242232169.5 +UniRef50_Q52987 Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase 9.82336510762e-08 3.27420208308e-06 1282177429.51 +UniRef50_Q3IXI3 PpkA related protein 2.62877973882e-05 1.18047983419e-06 -10136132198.0 +UniRef50_UPI00036E1A30 hypothetical protein 3.17035993747e-07 1.13123622431e-07 -82321926.5865 +UniRef50_G7U5R3 4.26746542044e-06 4.43392384377e-05 16177466503.0 +UniRef50_W5MN69 2.31278677658e-06 3.96655489892e-06 667646485.006 +UniRef50_D6SYK4 7.1596117703e-08 1.74672386071e-07 41613154.4282 +UniRef50_UPI00046AEB65 hypothetical protein 2.69320792352e-08 3.48979496326e-07 130014494.246 +UniRef50_I6TN35 Sorbose PTS system, IIB component 3.3372978259e-05 2.84993292385e-05 -1967551915.97 +UniRef50_O83990 Uridine phosphorylase 6.43158280444e-06 1.03059849607e-05 1564143694.74 +UniRef50_UPI0003B525E9 hypothetical protein 1.18207404621e-07 2.17880159387e-07 40239114.2213 +UniRef50_H2A6W4 6.69538019649e-05 1.50643971074e-05 -20948389495.6 +UniRef50_E6QN76 1.37122972376e-06 3.96223096322e-08 -537586253.745 +UniRef50_F3KCS8 Cysteine synthase 1.0573523435e-06 1.19851987062e-07 -378480398.317 +UniRef50_UPI000368CD4B hypothetical protein 1.88895212442e-07 6.1893098642e-07 173610719.087 +UniRef50_UPI0004729707 hypothetical protein, partial 1.35438127587e-05 2.95354954343e-06 -4275419217.16 +UniRef50_UPI00035DAFDB hypothetical protein 3.79166314568e-05 1.08124888397e-05 -10942274979.8 +UniRef50_Q2S8H5 3 hydroxydecanoyl [acyl carrier protein] dehydratase 7.17237319785e-05 6.98286483191e-06 -26136682526.9 +UniRef50_A5B2H7 1.20342200341e-07 1.65082092483e-07 18062043.4779 +UniRef50_UPI000376B264 hypothetical protein 1.10251964968e-06 7.88259231026e-07 -126870787.42 +UniRef50_Q5ZWE4 Spermidine putrescine import ATP binding protein PotA 4.96429357371e-07 3.49551241576e-07 -59296497.7436 +UniRef50_UPI00046F3C43 ribonuclease D, partial 8.79070324519e-07 1.3769196604e-07 -299303541.053 +UniRef50_S3H5L3 PilT protein domain protein 5.4942620498e-06 1.19840242305e-06 -1734291247.44 +UniRef50_E4TMS6 Beta Ig H3 fasciclin 0.000116460778107 4.01052476565e-05 -30825664630.6 +UniRef50_C4K3W9 Orotate phosphoribosyltransferase 4.90241543964e-06 1.16743227381e-05 2733902077.04 +UniRef50_UPI00036A0C85 resolvase 3.53176549166e-07 8.23740338362e-07 189972376.165 +UniRef50_B9KLM6 4.76381361066e-05 3.77627333572e-06 -17707572246.2 +UniRef50_UPI000467F2DE general secretion pathway protein GspI 2.23911480805e-07 2.63891448843e-07 16140403.7063 +UniRef50_E6SM17 3 deoxy D arabinoheptulosonate 7 phosphate synthase 5.91334570185e-06 2.73683368096e-05 8661643192.53 +UniRef50_UPI000479ECD0 hypothetical protein 1.24660660219e-06 9.5340641639e-07 -118368512.978 +UniRef50_B9KLM0 2.92721757663e-06 6.56745823328e-07 -916617308.629 +UniRef50_UPI000378DE23 hypothetical protein 8.29278703574e-08 2.38830464876e-07 62939790.5473 +UniRef50_F0JDW5 7.30163678129e-07 1.99437590808e-07 -214260634.193 +UniRef50_P32668 2.40001581757e-05 3.44702288856e-05 4226896027.8 +UniRef50_UPI0004245E45 GTP binding protein Der 1.26351798838e-07 2.12177951439e-07 34649071.0104 +UniRef50_Q00934 Type 4 fimbriae expression regulatory protein PilR 9.16970013417e-07 3.8189101397e-06 1171548839.79 +UniRef50_UPI000347AC3B preprotein translocase subunit SecG 9.27143145381e-07 4.42900581283e-07 -195494665.451 +UniRef50_Q2YX72 Spermidine putrescine binding periplasmic protein 0.000169425122362 2.77199200835e-05 -57208129078.0 +UniRef50_S1F8T4 Autoinducer 2 binding protein lsrB 5.96660609908e-06 1.18126682079e-05 2360127012.58 +UniRef50_P03018 DNA helicase II 3.97843345986e-05 1.47207137797e-05 -10118491289.8 +UniRef50_Q9ZJF9 DNA polymerase III subunit alpha 1.03789063173e-06 4.70812725949e-05 18588278314.4 +UniRef50_A1A8T2 9.26231145826e-06 2.48697266489e-05 6300905036.97 +UniRef50_A1T8W5 Phosphoribosyl isomerase A 1.69529635709e-06 4.81179859287e-05 18741409450.5 +UniRef50_P9WQ72 Phosphoserine aminotransferase 1.14274265039e-06 7.25271195211e-05 28818748927.5 +UniRef50_Q3HKJ3 Putative Mrr restriction system protein 0.000161897001833 4.05171681669e-05 -49002528349.0 +UniRef50_M4WVA9 5.25495878852e-06 3.0982973583e-06 -870670684.592 +UniRef50_Z5RZH0 5.16780348179e-07 9.38350877983e-07 170193196.134 +UniRef50_UPI000466DA55 hypothetical protein 1.71846019479e-06 1.38173192879e-07 -637981254.973 +UniRef50_B1KVH1 9.76366212543e-06 7.29632970983e-06 -996092373.751 +UniRef50_Q46927 tRNA threonylcarbamoyladenosine dehydratase 2.99619451546e-05 4.81079758001e-06 -10153826915.2 +UniRef50_A3PNX1 0.000208635824021 0.000107095207813 -40993192806.7 +UniRef50_P29925 NADH quinone oxidoreductase chain 13 0.000143929375044 3.25589838462e-05 -44961593595.0 +UniRef50_UPI0004786466 ABC transporter permease 2.37021761595e-06 3.74271854671e-07 -805787796.838 +UniRef50_UPI0003DE8355 1.33528961612e-07 1.27413807493e-07 -2468762.75922 +UniRef50_H9UVW0 Terminase large subunit 1.15556935363e-05 5.3693946399e-05 17011729775.2 +UniRef50_D4HFJ6 UvrD REP helicase 1.1025013016e-06 4.08726912287e-05 16055713708.7 +UniRef50_P39364 Putative sgc region protein SgcQ 3.39500214433e-05 1.1224463398e-05 -9174586656.84 +UniRef50_P64576 5.66228983278e-06 6.2390853211e-06 232859416.711 +UniRef50_F3Z838 Putative hydrogen peroxide sensitive repressor 4.71575469076e-07 9.37600567007e-07 188140050.806 +UniRef50_D3E4D6 SsDNA exonuclease RecJ2 1.65747351221e-05 1.83720509598e-05 725598459.225 +UniRef50_M4Z3L2 Hemolysin type calcium binding region 3.84912071399e-08 3.7852385247e-09 -14011225.4201 +UniRef50_P77489 Putative xanthine dehydrogenase YagR molybdenum binding subunit 1.98624417188e-05 8.50137343474e-05 26302376330.4 +UniRef50_A8LJB4 Leucyl phenylalanyl tRNA protein transferase 4.30865795692e-07 9.81287621085e-07 222212045.347 +UniRef50_P38489 Oxygen insensitive NADH nitroreductase 3.76415550857e-05 9.19243779006e-06 -11485257762.2 +UniRef50_UPI00037EE3C9 hypothetical protein 4.99571239014e-08 6.96394220472e-08 7945985.29042 +UniRef50_I6SUP0 Transcriptional regulator 1.5266794879e-05 2.3493896728e-05 3321381974.33 +UniRef50_P45288 Peptide transport system ATP binding protein SapD 1.72967329798e-05 1.18498928349e-05 -2198956206.74 +UniRef50_D9V463 Predicted protein 8.46307662005e-08 1.52933496934e-06 583244815.322 +UniRef50_G7UA10 2.0367949039e-06 6.1900896824e-05 24167872560.3 +UniRef50_P56129 Diaminopimelate decarboxylase 5.24192377978e-08 3.92790381971e-05 15836267438.6 +UniRef50_A0A024EEF7 2.98405486193e-07 7.51578552726e-07 182951528.018 +UniRef50_J2JCG0 Integral membrane protein MviN 2.19464277035e-06 2.1518847278e-06 -17261946.4776 +UniRef50_P0AE47 UPF0053 inner membrane protein YtfL 2.84518162001e-05 1.41299858951e-06 -10915902473.0 +UniRef50_A0A016QTH6 Cobyrinic acid a,c diamide synthase 3.08690896043e-07 3.2333437336e-05 12928783125.7 +UniRef50_M9VHF6 5.17104094322e-06 5.78687684106e-05 21274719252.4 +UniRef50_Q9RYL5 GGDEF family protein 1.01383882411e-06 0.000712625759797 2.87286464957e+11 +UniRef50_UPI00036176A4 hypothetical protein 2.16506263816e-06 1.16387735334e-06 -404190785.407 +UniRef50_W6S1I7 2.74868438483e-06 8.85493293889e-06 2465167473.37 +UniRef50_UPI000393F498 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.34161660567e-07 6.71379977105e-08 -67429502.3062 +UniRef50_A0A023KSK6 5 carboxymethyl 2 hydroxymuconate isomerase 1.7527603519e-05 2.98299702217e-06 -5871836125.15 +UniRef50_Q3IUW4 TraC 0.000277604115257 9.37690913022e-05 -74216455080.1 +UniRef50_B9KUI7 5.17104094322e-06 8.68578544689e-06 1418945486.9 +UniRef50_UPI00047C294C hypoxanthine oxidase, partial 6.70118467104e-06 1.40411859739e-06 -2138490576.24 +UniRef50_UPI0003B6C29E translation initiation factor IF 2 4.23445283216e-08 1.65413061475e-07 49684277.0546 +UniRef50_P0AFH9 Osmotically inducible protein Y 1.45033779083e-05 1.25188603289e-05 -801174099.573 +UniRef50_Q5HDU6 Lipid II 0.000206521660372 4.53141329982e-05 -65081457039.7 +UniRef50_Q830B5 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 4.10032668933e-05 8.24753206725e-05 16742777030.0 +UniRef50_UPI000470A41D hypothetical protein, partial 4.20935635529e-07 2.70794615507e-07 -60613772.2204 +UniRef50_P16433 Formate hydrogenlyase subunit 7 6.35297994815e-05 1.42067042035e-05 -19912338826.2 +UniRef50_P30015 Probable ATP dependent helicase lhr 9.04611299874e-06 2.6137601689e-06 -2596819771.25 +UniRef50_F1L3M9 DnaJ subfamily B member 5 2.69457156372e-07 3.12842592944e-07 17515233.1433 +UniRef50_D5VJS0 DEAD DEAH box helicase domain protein 8.57871031162e-05 1.20315003348e-05 -29776041925.9 +UniRef50_UPI000328CE6B PREDICTED 5.52896489843e-07 6.54431368487e-06 2418808644.59 +UniRef50_UPI00016C3888 hypothetical protein, partial 6.57285768533e-06 6.93136155931e-07 -2373715733.72 +UniRef50_J7TL98 Transcriptional regulator, AraC family 1.37768609074e-06 5.17636769948e-05 20341442833.6 +UniRef50_J1JW34 3.51555549172e-08 5.74902577001e-08 9016793.59108 +UniRef50_UPI000475758B transcriptional regulator 6.34518683161e-07 1.51723937043e-07 -194910163.566 +UniRef50_A3VVX0 Hypothetical BRO family protein 6.7986583443e-07 1.95269826664e-07 -195637354.997 +UniRef50_Q2S1E4 Adenylate kinase 8.61989643222e-08 1.29537756304e-07 17496402.1498 +UniRef50_F0XZ32 4.34095718637e-06 5.37535220615e-06 417597962.939 +UniRef50_M5S0G6 4.69017598951e-08 4.64377522965e-06 1855814229.72 +UniRef50_P24230 ATP dependent DNA helicase RecG 3.35057673804e-05 7.23451422294e-06 -10606027284.2 +UniRef50_B9KTP4 Extracellular solute binding protein, family 1 0.000134620523319 4.0452722241e-05 -38016696864.1 +UniRef50_D9R0R8 Flavodoxin nitric oxide synthase 2.54154753991e-06 1.51380784867e-05 5085374120.04 +UniRef50_P59784 Glucitol sorbitol specific phosphotransferase enzyme IIA component 6.43940239408e-06 2.99953013384e-06 -1388718643.44 +UniRef50_P08499 Homoserine dehydrogenase 4.70307769808e-08 5.0849799937e-05 20509701330.0 +UniRef50_A1A9I1 Formate transporter 2.83524516485e-05 6.39653250757e-06 -8863873986.61 +UniRef50_I0C2Q1 8.16467778568e-05 2.59787033201e-05 -22473884814.6 +UniRef50_UPI0003B4C7B5 cell division protein FtsZ 1.15218060536e-07 6.32685785094e-08 -20972643.386 +UniRef50_P0AD18 Inner membrane protein YohC 9.73600556889e-06 3.02888928405e-06 -2707745149.76 +UniRef50_UPI0002EF456C hypothetical protein 9.24946147709e-07 2.51706882459e-07 -271794952.956 +UniRef50_E8PF29 CzcI 2.85974233984e-06 0.000112898425668 44423966786.0 +UniRef50_P0AA97 3.63257556419e-05 7.77182862646e-06 -11527570732.2 +UniRef50_P0AA96 7.65778321076e-05 4.85470022509e-06 -28955508482.8 +UniRef50_M9LX88 2.7187555071e-08 6.27168658326e-08 14343618.7481 +UniRef50_P0AA92 4.29645963326e-05 2.24295988859e-05 -8290230461.99 +UniRef50_Q74JL8 Cytidylate kinase 0.00024990154944 0.000160876781113 -35940391430.4 +UniRef50_A5UM81 Acetyltransferase, GNAT family 2.71569874457e-05 6.83326407362e-06 -8204936525.45 +UniRef50_E8TMU8 Glycine betaine L proline ABC transporter, ATPase subunit 8.79839690642e-05 1.18681896647e-05 -30728874189.2 +UniRef50_UPI000476F019 molybdenum ABC transporter permease 3.43136925389e-07 1.93900870012e-07 -60248426.888 +UniRef50_X2LU18 Alanine tRNA ligase 1.12081805244e-05 4.52015365101e-06 -2700038520.11 +UniRef50_UPI00035EFE25 alkaline phosphatase 5.62959423681e-07 1.26600957653e-07 -176163267.456 +UniRef50_Q92GH4 Endonuclease III 7.00771523987e-08 2.7912165444e-07 84393830.7385 +UniRef50_P29931 Bifunctional adenosylcobalamin biosynthesis protein CobP 1.62932803002e-06 1.4137994893e-06 -87011516.7213 +UniRef50_A9I0E6 Homoserine O acetyltransferase 9.30397416083e-06 2.03523609641e-05 4460369331.44 +UniRef50_UPI0003C1A8F4 3.09302768745e-07 2.83814097557e-07 -10290089.3398 +UniRef50_P0AFA3 Nitrate nitrite sensor protein NarX 3.15741353269e-05 8.30352093904e-06 -9394632590.95 +UniRef50_A0K8T5 Transcriptional regulator, LysR family 5.27955305017e-06 2.00214715383e-06 -1323128978.65 +UniRef50_A5N540 Predicted transport protein, ATPase and permease component 5.91932455978e-06 5.97879828799e-06 24010273.9031 +UniRef50_E4P0V7 SerB Phosphoserine phosphatase 4.17245417395e-05 5.34621407545e-05 4738612758.89 +UniRef50_UPI000372888C hypothetical protein 3.553990243e-06 1.29825487262e-06 -910668050.008 +UniRef50_C6SSA3 2.56522953562e-05 3.28672121577e-05 2912750449.75 +UniRef50_V5VG42 1.52456503581e-06 5.43118984223e-05 21310894261.6 +UniRef50_UPI00037ACEC3 hypothetical protein 2.09952483934e-06 9.63181437841e-07 -458755775.687 +UniRef50_C3KCK1 1.81427059854e-05 1.11440266111e-05 -2825452746.86 +UniRef50_B4V1W5 ATP GTP binding protein 1.13251599211e-06 3.08999237138e-06 790257235.248 +UniRef50_F8DGR4 LytTr DNA binding domain protein 2.92743394964e-05 2.09681547148e-05 -3353308724.68 +UniRef50_Q2NEM0 DNA primase DnaG 3.76127202245e-05 9.13598474871e-06 -11496407560.4 +UniRef50_P31129 Diguanylate cyclase YdeH 3.8105261841e-06 5.76321497731e-06 788324428.005 +UniRef50_A0A014MJV1 Crp Fnr family transcriptional regulator 7.00364262885e-06 6.70372827031e-06 -121079106.906 +UniRef50_V6V4N6 2.59468118757e-06 2.05081045272e-06 -219567289.703 +UniRef50_E5U2A7 2.81168445056e-06 3.46171740739e-07 -995357736.198 +UniRef50_A6LR99 RNA directed DNA polymerase 5.6739479511e-06 7.38061676362e-06 689003142.796 +UniRef50_Q8PFF8 tRNA dihydrouridine synthase A 4.41417746843e-05 1.08775174182e-05 -13429188856.7 +UniRef50_Q71ZA3 Formamidopyrimidine DNA glycosylase 9.6156528043e-08 1.52251484292e-05 6107759684.12 +UniRef50_UPI000373BE1A hypothetical protein 1.48296141811e-07 3.01587793325e-06 1157677958.39 +UniRef50_UPI0003697F83 GntR family transcriptional regulator 3.15122030162e-07 5.82111843685e-07 107787064.053 +UniRef50_Q2FUU3 Imidazole glycerol phosphate synthase subunit hisF 0.000235879424055 9.63990284409e-06 -91335670984.0 +UniRef50_A5UJC4 Mg dependent DNase, TatD 8.35422876638e-06 9.59088594497e-06 499253678.487 +UniRef50_A0YFJ4 1.47573268184e-07 2.78411406661e-07 52820962.0677 +UniRef50_J9GKH0 3.23340125988e-07 8.99440004669e-06 3500613295.86 +UniRef50_A1WXH5 Isopentenyl diphosphate Delta isomerase 5.21703982337e-07 1.55470069552e-07 -147853124.787 +UniRef50_UPI000347F8B1 hypothetical protein 2.6681693268e-06 2.76643283554e-06 39670184.3072 +UniRef50_UPI000370761B hypothetical protein 2.91989238949e-06 7.35350453669e-07 -881926386.835 +UniRef50_W4LMW8 7.13522568092e-08 1.61363960427e-07 36338829.3183 +UniRef50_UPI0004786463 hypothetical protein 1.87009017859e-07 2.1632630259e-06 797837994.41 +UniRef50_UPI00042CD0F4 3.15797343158e-07 5.7717939686e-07 105523142.598 +UniRef50_A6LZW0 Sucrose 6 phosphate hydrolase 1.76940514229e-06 1.52285643221e-05 5433627723.34 +UniRef50_UPI0001BF7CE9 hypothetical protein SMAC_10228, partial 4.30879983092e-06 4.3856158219e-06 31011558.1968 +UniRef50_A0A038G2P2 3.54616383698e-06 1.76779365854e-06 -717949864.092 +UniRef50_UPI00037E17BF hypothetical protein 5.94720583856e-08 2.87808556213e-07 92182246.1767 +UniRef50_B5XU27 Urease subunit alpha 6.65189799997e-08 2.85320095808e-07 88332695.4433 +UniRef50_P16692 Phosphoribosyl 1,2 cyclic phosphodiesterase 5.55114873329e-05 7.03135012379e-06 -19572026309.5 +UniRef50_E0WIK7 CagY protein 3.98194924671e-07 2.25664517523e-05 8949597316.4 +UniRef50_B1X1Y0 1.89607543679e-07 7.28451871176e-06 2864302702.9 +UniRef50_A0A009UCL1 Phenylalanine tRNA ligase beta subunit 3.3756129987e-06 8.87585344474e-05 34470133155.1 +UniRef50_UPI0004708F1B hypothetical protein, partial 2.33267980536e-06 7.76381852963e-07 -628296581.307 +UniRef50_F0YFT4 Expressed protein 2.14744203046e-06 3.88874357509e-06 702984801.74 +UniRef50_D9VSA1 Predicted protein 1.82460999737e-07 1.74833498934e-07 -3079315.67413 +UniRef50_UPI000471C706 UDP pyrophosphate synthase 6.77985808345e-08 1.33718933909e-07 26612855.4699 +UniRef50_Q5F8C3 Fructose 1,6 bisphosphatase class 1 1.68556143408e-05 0.000143284658499 51040956585.4 +UniRef50_UPI00037A84AA hypothetical protein 6.11579618101e-08 1.62399270392e-07 40872358.6451 +UniRef50_UPI0004193DB1 chemotaxis protein CheY 1.58701271107e-06 6.16029292302e-07 -391997921.463 +UniRef50_P77536 3.22561483687e-05 5.11726875567e-06 -10956298731.3 +UniRef50_A6M0P7 Xanthine uracil vitamin C permease 5.05536038142e-06 7.55916704798e-06 1010817476.45 +UniRef50_Q8ZM06 2,5 diketo D gluconic acid reductase A 2.86797981497e-07 2.28514282236e-07 -23529844.6131 +UniRef50_I4Y2U3 DJ 1 PfpI family protein 2.00435038326e-06 4.04279054257e-05 15512060680.7 +UniRef50_I2DEY3 Flagellar hook associated protein FlgL 1.54571438899e-06 3.45060467491e-05 13306490642.5 +UniRef50_V8RB85 ATP dependent DNA helicase DinG 9.9338201923e-06 2.85078622058e-06 -2859507732.98 +UniRef50_UPI0003B331D4 glycosyl transferase 5.01490861379e-07 9.23942438424e-08 -165157324.68 +UniRef50_D3E1W2 Lactaldehyde dehydrogenase CofA 4.27353391694e-05 9.4303020948e-06 -13445652165.8 +UniRef50_O27126 DNA directed RNA polymerase subunit A 2.8679800619e-05 1.91570535193e-05 -3844449861.4 +UniRef50_B4EEY8 ATP synthase gamma chain 3.37892691407e-06 1.51709817266e-05 4760597232.59 +UniRef50_UPI00037BC6DA hypothetical protein, partial 4.82460297262e-06 4.09637911995e-07 -1782375572.69 +UniRef50_UPI00046F61F0 hypothetical protein 2.47944358703e-07 2.92248318735e-07 17886052.3356 +UniRef50_K9XMG5 Amidohydrolase 1.13245796655e-06 2.03689237047e-05 7765997276.45 +UniRef50_B2JFL4 1.81603730981e-07 1.24291479716e-05 4944483904.2 +UniRef50_H8FVE2 1.6455396676e-06 9.06725379656e-07 -298268394.314 +UniRef50_A9MKD9 1.176895491e-06 3.40750044457e-05 13281370290.2 +UniRef50_UPI0002FBDCEC hypothetical protein 1.18344793515e-07 9.9936240165e-07 355677619.706 +UniRef50_P0AAS3 Inner membrane protein YbbJ 4.01458533509e-05 2.09715036358e-05 -7740920275.72 +UniRef50_U6L2Z7 1.06228311814e-07 3.5263682598e-08 -28649291.6484 +UniRef50_UPI00034D6EDA hypothetical protein 2.57158685051e-07 1.29982240489e-07 -51342691.3002 +UniRef50_A9KF61 Thymidylate synthase 2.30220265864e-07 4.27417888971e-06 1632595721.4 +UniRef50_Q7TYA6 Aspartate tRNA ligase 2.118964789e-06 8.76516605444e-05 34530598880.7 +UniRef50_M2E542 Transposase 1.54719695554e-05 4.17900997911e-06 -4559106361.15 +UniRef50_C5A8E0 HlyD family secretion protein 5.46547263645e-06 2.06997690564e-06 -1370803293.95 +UniRef50_UPI000367DB79 hypothetical protein 4.06130547828e-06 5.28102564255e-07 -1426397373.67 +UniRef50_UPI000374E007 hypothetical protein 4.11538164794e-07 1.22487540065e-06 328354222.885 +UniRef50_W0RJM9 Beta lactamase domain protein 3.72059952023e-08 1.02671691006e-06 399477698.993 +UniRef50_UPI0003B6EABF sodium 8.63715532786e-06 6.03938283687e-06 -1048752632.87 +UniRef50_A5V5W9 DGPFAETKE family protein 8.04809849176e-07 5.17448613311e-07 -116011257.238 +UniRef50_D8S962 1.54829508233e-07 3.91208012679e-08 -46713024.9073 +UniRef50_D0KZ58 1.66381021286e-06 7.48150405963e-07 -369663100.454 +UniRef50_A3UE08 Chemotactic signal response protein CheL 4.29843346164e-07 2.13232606832e-07 -87448413.581 +UniRef50_B3PH50 Probable protein kinase UbiB 2.84945965412e-06 2.88945121091e-05 10514707284.8 +UniRef50_Q8FJC0 3.60664518398e-05 1.32190279688e-05 -9223785386.14 +UniRef50_O08399 DNA gyrase subunit B 1.78035763387e-07 2.36347690143e-07 23541240.3992 +UniRef50_Q1GKH2 Two component transcriptional regulator, winged helix family 1.63990936494e-05 2.80808277526e-06 -5486857870.33 +UniRef50_UPI00036B452D hypothetical protein 5.23966803562e-07 4.00043543745e-07 -50029340.6975 +UniRef50_Q49VN6 3.11269382701e-05 6.30569477283e-06 -10020640590.8 +UniRef50_B2T8C3 Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein 6.54993953678e-06 6.02145066982e-06 -213357440.879 +UniRef50_D8JMP7 3.81428188728e-06 6.68671283619e-05 25455207867.2 +UniRef50_Q2KUE4 Adenine phosphoribosyltransferase 3.51504566142e-07 4.04812010417e-07 21520869.4097 +UniRef50_Q79BD2 2.54028799716e-06 2.82118972221e-06 113403473.454 +UniRef50_J7M139 tRNA dihydrouridine synthase 6.21367007383e-05 8.71038446305e-05 10079542370.6 +UniRef50_Q49VN9 4.42400744827e-07 8.03943406679e-07 145959209.217 +UniRef50_UPI00045E99AE hypothetical protein 8.74677100605e-07 3.07146160859e-07 -229119204.763 +UniRef50_Q6AEL0 Non canonical purine NTP pyrophosphatase 1.05122938618e-07 3.51712355109e-07 99551173.4298 +UniRef50_S2XCJ5 1.81611189462e-07 1.38158704406e-07 -17542301.4391 +UniRef50_A6TCB0 Uracil phosphoribosyltransferase 1.49062647365e-05 9.56587277784e-06 -2155981767.69 +UniRef50_UPI000370FC7C hypothetical protein 5.17754904813e-08 3.24659021006e-08 -7795517.78458 +UniRef50_C6SR38 6.34342651441e-05 1.7641878581e-05 -18486948391.3 +UniRef50_B9KLG8 PTS system, fructose subfamily, IIC subunit 1.6640096454e-06 4.58588926713e-06 1179598658.79 +UniRef50_Q2P7B5 Acyl carrier protein 3.56444229336e-07 3.69144372112e-06 1346380219.88 +UniRef50_A6M0D3 Methyl accepting chemotaxis sensory transducer 1.33703404078e-06 6.82229754441e-06 2214468188.17 +UniRef50_K6GS41 Winged helix turn helix 2.40375247472e-07 2.48611384827e-05 9939704248.79 +UniRef50_Q893F0 Transcriptional regulatory protein 1.68270128756e-06 2.15370168918e-05 8015430849.27 +UniRef50_A9A5Y7 Inosine 5 monophosphate dehydrogenase 3.19369639347e-07 1.83456370965e-07 -54869854.2892 +UniRef50_B9Y1T7 4.29612278649e-07 4.1227701572e-05 16470689296.6 +UniRef50_Q8CUE7 Mobilization protein 0.000987639562808 0.000188168783081 -3.22756164385e+11 +UniRef50_Q5WIL7 Phosphonates import ATP binding protein PhnC 0.000235221402945 4.18770186016e-05 -78055500561.7 +UniRef50_D8JEB9 Group A colicins tolerance protein 9.58086266163e-07 5.62620018955e-05 22326869394.9 +UniRef50_P31549 Thiamine transport system permease protein ThiP 1.37996738335e-05 5.77177384265e-06 -3240961739.72 +UniRef50_A9M106 Soluble lytic murein transglycosylase, putative 6.5535761953e-07 2.13845859126e-05 8368643838.16 +UniRef50_F5XRT1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 2.61020783112e-06 6.73121512812e-05 26120968552.9 +UniRef50_UPI0004416A22 hypothetical protein PUNSTDRAFT_135060 4.57150299449e-07 3.59923096788e-07 -39251814.8262 +UniRef50_B9DLR4 Putative 3 methyladenine DNA glycosylase 0.000138339191912 4.49136237476e-05 -37717048328.6 +UniRef50_F0Y296 2.31220551491e-06 2.86783945567e-06 224316240.28 +UniRef50_F2F9R8 9.58202634487e-08 1.13313806009e-05 4535933584.08 +UniRef50_Q8DUW3 Shikimate dehydrogenase 6.01597034097e-05 1.90597270867e-05 -16592564795.0 +UniRef50_T2H9Z7 4.87078695291e-06 1.63349573798e-07 -1900450236.7 +UniRef50_UPI000380D55F hypothetical protein 2.23292768737e-08 5.9270877984e-08 14913777.6927 +UniRef50_Q14GX0 Chaperone protein DnaJ 3.00102990212e-06 0.000119400894871 46992053875.0 +UniRef50_UPI0003748B7D hypothetical protein 6.54290175183e-07 1.52183888198e-06 350240058.954 +UniRef50_Q321Q6 1.78658809424e-05 1.23048627164e-05 -2245051299.2 +UniRef50_K6QCW0 1.22405574203e-08 1.53775289329e-07 57139308.0981 +UniRef50_U5MWF2 1.42268588759e-06 9.52055870118e-06 3269210626.92 +UniRef50_UPI00037BD3FB hypothetical protein 5.25160465333e-08 3.3190746488e-06 1318749792.92 +UniRef50_UPI00046FDA02 hypothetical protein 2.928915761e-07 5.16439819125e-07 90249168.9546 +UniRef50_J3N3W4 3.91062260815e-07 2.39646303557e-07 -61128480.0278 +UniRef50_UPI0003B5133D ATP dependent DNA helicase 3.30862244406e-08 2.02432010591e-08 -5184886.14073 +UniRef50_UPI00041A4387 DNA polymerase I 1.57536321722e-08 6.15412892863e-07 242089802.188 +UniRef50_UPI0002378CB3 X Pro dipeptidase 3.22057043186e-07 1.47716852781e-06 466332681.153 +UniRef50_A6M378 Thymidylate synthase 1.47647714023e-06 6.45371747058e-06 2009372998.97 +UniRef50_I1EHP5 7.89662067181e-07 3.70886171851e-07 -169064967.903 +UniRef50_W4UBB6 Succinate dehydrogenase flavoprotein subunit 1.7995460448e-06 1.12280805381e-06 -273207431.472 +UniRef50_D6SC84 4.8361627099e-07 5.43655856903e-07 24238717.6016 +UniRef50_UPI000405366E FAD dependent oxidoreductase 2.96448090241e-08 2.3203813872e-08 -2600308.7828 +UniRef50_B0KAL7 4 hydroxy tetrahydrodipicolinate synthase 5.97784568924e-08 1.8036932173e-07 48684011.9514 +UniRef50_K0LQD7 Hydrolase 0.000122914495443 4.90998691538e-05 -29799870440.3 +UniRef50_G7M6G8 Heavy metal transport detoxification protein 5.14885202036e-06 8.96094834824e-06 1538990067.25 +UniRef50_UPI00046934BB peptidase C39, partial 6.11281053486e-08 6.79207316255e-08 2742266.58288 +UniRef50_Q3IV33 Putative outer membrane protein 0.000170931104728 1.06694591196e-05 -64699592963.5 +UniRef50_Q9RY14 1.99411718742e-06 0.000640754425057 2.57875374758e+11 +UniRef50_F5ZHL1 Sulfatase 5.30889712404e-05 1.70459691558e-05 -14551002238.9 +UniRef50_Q9RY17 3.69978654976e-06 0.000236431454019 93956630096.0 +UniRef50_Q9RY11 1.37542217499e-06 0.000553038078123 2.22712983868e+11 +UniRef50_Q9RY12 3.55002497348e-06 0.00061963462388 2.48720912787e+11 +UniRef50_UPI0003B667B4 ABC transporter ATP binding protein, partial 2.30512268792e-07 1.2825181176e-07 -41283801.3807 +UniRef50_UPI0004716B86 hypothetical protein 3.56721232518e-07 3.21787942666e-07 -14102997.7929 +UniRef50_UPI0004171A57 histidinol phosphate aminotransferase 2.79771440503e-07 4.51678160048e-07 69400852.213 +UniRef50_H9UQE9 Putative inner membrane protein 1.02810975195e-06 6.58047361923e-06 2241557428.39 +UniRef50_D4L1E1 ABC type Fe3+ siderophore transport system, permease component 1.23765897988e-06 6.34942285827e-06 2063681806.1 +UniRef50_H7BW27 1.62147576229e-06 2.24367302482e-07 -564029829.674 +UniRef50_UPI000363A648 hypothetical protein 2.7915766877e-06 1.77803270398e-06 -409180143.811 +UniRef50_K3QZQ8 5.28790071369e-07 7.2492932705e-07 79183824.4177 +UniRef50_P28912 H repeat associated protein YhhI 0.000113327221472 3.75876133986e-05 -30577009208.7 +UniRef50_UPI00036D582C hypothetical protein 1.21235111286e-07 9.65051508965e-08 -9983788.47998 +UniRef50_A6LR25 Binding protein dependent transport systems inner membrane component 1.46881707723e-06 2.96304386488e-06 603237690.399 +UniRef50_U1RDC8 6.27711886123e-08 3.45241724351e-07 114036821.581 +UniRef50_A3DE29 Phospho N acetylmuramoyl pentapeptide transferase 1.26067679064e-06 1.31138332516e-05 4785264717.89 +UniRef50_A5UJY3 Polyferredoxin, iron sulfur binding 2.65909277526e-05 2.35625030732e-06 -9783836677.6 +UniRef50_A0A011MBA1 DNA repair protein RecN 2.96742333397e-08 1.24193068563e-07 38158413.6562 +UniRef50_Q9ZK62 Signal recognition particle protein 8.55977298968e-07 4.46159414824e-05 17666434536.0 +UniRef50_L0M8C5 2.44868198239e-08 1.26535245847e-07 41198201.8605 +UniRef50_A3MYR6 Shikimate kinase 4.45026430385e-07 2.07890259772e-07 -95734782.0645 +UniRef50_O06005 Amino acid permease AapA 2.28669174344e-05 0.000440274873293 1.68512713952e+11 +UniRef50_B5YFV7 DNA directed RNA polymerase subunit beta 5.50881958214e-08 2.00081365218e-08 -14162250.42 +UniRef50_UPI0003632FFE hypothetical protein 6.5704492222e-08 2.26755003781e-07 65018067.8284 +UniRef50_D7AA03 Binding protein dependent transport systems inner membrane component 3.19346349473e-05 2.26296325824e-06 -11978817973.2 +UniRef50_A8HWS0 2.25588136781e-06 4.24574040983e-07 -739321240.509 +UniRef50_I4Z4F5 Lipoprotein 1.23756171431e-07 9.93211142797e-08 -9864732.42385 +UniRef50_Q06951 Phosphomannomutase 6.26595358918e-06 1.47140849762e-07 -2470239789.18 +UniRef50_E6MZK3 Binding dependent transport system inner membrane component family protein 1.02484883855e-06 1.7916050868e-05 6819185537.67 +UniRef50_G8LF66 Nitrate nitrite response regulator protein narL 1.54843126171e-05 1.25720710985e-05 -1175707638.28 +UniRef50_A5UJK6 3.06184394528e-06 9.85600759453e-06 2742887238.97 +UniRef50_A5UJK7 6.54557828834e-05 1.34234865999e-05 -21006076517.7 +UniRef50_R6G3H3 FAD binding domain protein 1.05821437006e-05 2.15985290146e-05 4447449937.51 +UniRef50_UPI00041B7937 hypothetical protein 2.72306940301e-07 3.84786692664e-07 45409456.3107 +UniRef50_Q9RR63 Tyrosine tRNA ligase 2.94370041344e-06 0.000495082877112 1.9868262486e+11 +UniRef50_Q5HQF1 Membrane protein, putative 0.000181286169811 4.92225299925e-05 -53315711997.6 +UniRef50_A0LSS7 Glutamate tRNA ligase 7.99758450996e-07 5.88717592932e-05 23444379363.6 +UniRef50_O26156 Short chain isoprenyl diphosphate synthase 2.18969545983e-05 2.59453418919e-05 1634383629.72 +UniRef50_UPI0003FDB9A0 SAM dependent methyltransferase 7.21140879526e-07 1.63482681424e-06 368866224.031 +UniRef50_V6FKX1 Glycosyl hydrolase family 3, C terminal domain protein 5.04660412934e-07 1.80865233991e-06 526437542.702 +UniRef50_Q49W95 NADH 0.000257099135579 3.99790632269e-05 -87654037571.4 +UniRef50_B1LKC4 Ureidoglycolate lyase 8.50713037148e-06 1.23048627164e-05 1533191151.06 +UniRef50_UPI000287FF7D RpoD subfamily RNA polymerase sigma 70 subunit 2.99283969964e-08 8.44556219171e-08 22013309.8248 +UniRef50_UPI0003AE35A2 PREDICTED 3.44693767788e-08 8.82066133314e-07 342185211.795 +UniRef50_A8LIE1 Transcriptional regulator 0.000135529915772 3.66788753144e-05 -39907378071.4 +UniRef50_M9VCG5 3.93214571719e-06 0.000131740293678 51597717714.2 +UniRef50_UPI0003B648D0 peptidase M20 5.38732851757e-08 1.92435972759e-07 55939457.3326 +UniRef50_D4HCS1 2.95968389143e-06 1.95517955798e-05 6698439096.71 +UniRef50_Q5HRF8 Putative heme dependent peroxidase SERP0235 0.000206740315406 0.000102621144865 -42034186833.3 +UniRef50_UPI0002FAB494 hypothetical protein 6.97110111851e-08 9.67053975942e-08 10897965.0517 +UniRef50_Q52463 Glycosyltransferase alg8 7.50105353216e-06 6.11875348484e-06 -558051491.832 +UniRef50_F0T7F9 Precorrin 2 C20 methyltransferase 4.76997407374e-05 1.37695930489e-05 -13698016991.6 +UniRef50_D5USJ5 ABC transporter related protein 4.32978035884e-06 8.6586486756e-06 1747617260.66 +UniRef50_A0A015A762 Aminopeptidase N 4.2716687238e-06 8.90449614552e-05 34224018561.0 +UniRef50_R1EVW7 1.63286015872e-06 4.45637327258e-07 -479296425.923 +UniRef50_P0DA58 DegV domain containing protein SpyM3_1667 0.000104488647604 1.23837039137e-05 -37183896022.5 +UniRef50_Q12GA2 Glycerol kinase 1.4708390166e-06 8.16102012439e-05 32353243951.7 +UniRef50_UPI0003C10A99 PREDICTED 5.99613517984e-08 2.00694672513e-07 56815768.5647 +UniRef50_C6XRP6 Transcriptional regulator, XRE family 1.29486390965e-05 4.92194508663e-06 -3240474870.4 +UniRef50_UPI0002A4AECE PREDICTED 4.67200040153e-08 1.45603029423e-07 39920290.7883 +UniRef50_Q7VZ77 Siroheme synthase 4.39172397526e-07 1.37933628956e-07 -121613787.487 +UniRef50_G7M8Y2 Site determining protein 6.52623181394e-06 1.48002523243e-05 3340323613.68 +UniRef50_Q8YHH4 Uridylate kinase 1.70263504483e-07 1.61839524629e-07 -3400864.04092 +UniRef50_UPI00047C4E72 chemotaxis protein CheD 2.0276325328e-06 2.89218839602e-07 -701818940.68 +UniRef50_UPI00041519E4 leucyl phenylalanyl tRNA protein transferase 7.38231529172e-08 1.65311811729e-07 36935094.2544 +UniRef50_A0A031GMI8 4.71509237386e-07 1.98218532928e-06 609878476.376 +UniRef50_UPI00037BE049 hypothetical protein 6.28873954468e-08 1.18230523819e-07 22342700.0604 +UniRef50_I1XZ29 2.51099327394e-06 2.61894073583e-05 9559266332.69 +UniRef50_A6LYW5 5.26202772398e-06 3.37504805945e-06 -761796846.415 +UniRef50_Q3J464 Pseudouridine synthase 2.87549256723e-05 1.66375608569e-06 -10937037608.1 +UniRef50_G4LRU0 4.43319659724e-06 7.60347587795e-06 1279880649.32 +UniRef50_M3BKE3 ComEC Rec2 like protein 3.56947917989e-07 1.81726035154e-06 589546049.473 +UniRef50_R6XPK5 2.73347059684e-07 7.2299974251e-06 2808485120.22 +UniRef50_A6LX94 Beta and gamma crystallin 3.43324042664e-06 4.29795997823e-06 349097894.279 +UniRef50_UPI000470DD33 cell division protein FtsZ 3.1521196182e-08 1.45456930579e-07 45997254.1248 +UniRef50_P0A4G4 Metal ABC transporter substrate binding lipoprotein 1.22560385996e-06 1.96877803461e-06 300028534.079 +UniRef50_UPI00035EA533 hypothetical protein 3.82769625642e-06 2.6125181921e-06 -490582296.478 +UniRef50_UPI00046E5D21 glycosyl transferase 7.43874515805e-07 5.26403439511e-07 -87795742.1701 +UniRef50_UPI0003740A8D hypothetical protein 4.31667869126e-08 1.06007427732e-06 410538032.737 +UniRef50_UPI0002FEF2A0 hypothetical protein 7.56346483311e-07 1.14153747461e-07 -259261088.054 +UniRef50_UPI0003AF1E76 PREDICTED 1.77037912205e-07 2.74714807446e-07 39433361.2391 +UniRef50_D0C6D9 Molybdopterin oxidoreductase 1.01429468035e-06 8.3212736265e-05 33184519556.1 +UniRef50_B1YJY5 Endonuclease MutS2 9.5020740786e-07 1.37461888686e-05 5165894740.03 +UniRef50_UPI00016C0B60 ABC transporter related protein 3.58425753778e-08 4.99791947691e-08 5707126.7241 +UniRef50_A6W7W9 Probable dual specificity RNA methyltransferase RlmN 1.93583159675e-07 4.45597765157e-07 101741388.8 +UniRef50_Q9RTP8 Divalent metal cation transporter MntH 2.50724661576e-05 0.000436649685415 1.66158774034e+11 +UniRef50_Q48C82 5.95387803284e-05 4.9861814253e-06 -22023553612.8 +UniRef50_Q8FKC6 Acyl carrier protein phosphodiesterase 1.92341798447e-05 3.0397701913e-05 4506850850.79 +UniRef50_UPI00030FC743 hypothetical protein 6.05353282664e-08 6.0339787607e-08 -78942.1637535 +UniRef50_A0A059IQC1 5.10211352025e-08 1.74294358049e-06 683049853.387 +UniRef50_UPI000376E9E0 hypothetical protein 3.65755081973e-06 1.65316730772e-06 -809194220.35 +UniRef50_C6SKJ8 2.95498238766e-06 6.44920986333e-05 24843288973.7 +UniRef50_UPI00047BE00A molecular chaperone GroES, partial 8.97646224949e-08 1.41157476738e-06 533630975.927 +UniRef50_UPI0004710755 ribonucleoside diphosphate reductase 7.11092069817e-08 3.55843350727e-07 114950667.911 +UniRef50_Q9FIW4 Beta glucosidase 42 3.05116665277e-08 7.07440856046e-08 16242321.2886 +UniRef50_UPI0003C13A93 PREDICTED 1.06102682363e-07 1.44082302323e-06 538842980.47 +UniRef50_Q67KG3 Bifunctional purine biosynthesis protein PurH 2.88639037212e-08 5.26748770462e-07 201002230.438 +UniRef50_UPI000368145E hypothetical protein 1.25679784114e-06 6.8875781509e-07 -229324729.151 +UniRef50_F9PTR8 Rhodanese like protein 3.7447654394e-07 7.38633159141e-07 147014494.261 +UniRef50_Q2NEX9 PurB 3.74381580472e-05 1.13393308348e-05 -10536416814.3 +UniRef50_Q6GFZ2 Probable tRNA sulfurtransferase 0.000164988607614 5.44887921562e-05 -44610131485.6 +UniRef50_UPI00037CBB5C hypothetical protein 7.90616379317e-07 8.45088659599e-07 21991127.9999 +UniRef50_J9NS14 3.68984340064e-06 2.96852719885e-06 -291204202.208 +UniRef50_UPI000388FD53 PREDICTED 1.61452306446e-07 1.43775058047e-06 515257275.163 +UniRef50_H5Y8S2 Transposase 5.95434908784e-07 7.71025517105e-08 -209257133.204 +UniRef50_Q5ZKW0 Mitochondrial tRNA specific 2 thiouridylase 1 3.15061528369e-08 6.05214431731e-08 11713828.7664 +UniRef50_B4RQI7 Anhydro N acetylmuramic acid kinase 2.26886514461e-06 4.62326549008e-05 17748721420.9 +UniRef50_Q9I5U5 Ribosomal RNA small subunit methyltransferase A 3.51521530011e-06 6.1636658951e-06 1069212005.34 +UniRef50_B9KU25 4.25644010162e-05 1.51444464203e-05 -11069772151.0 +UniRef50_Q9RSF6 Sun protein, putative 1.11902961123e-06 4.13688226887e-05 16249335385.9 +UniRef50_B9KJR9 7.20315401988e-05 2.33964945029e-05 -19634564766.6 +UniRef50_S5CP44 Kef type K+ transport systems, predicted NAD binding component 3.31206182048e-06 5.37861063859e-05 20376991177.2 +UniRef50_UPI0003B6E634 histidine kinase 2.08743145831e-08 2.55577989042e-07 94752753.5171 +UniRef50_M9VMF8 DNase 2.05665848165e-05 5.00696673867e-05 11910756477.1 +UniRef50_A0A022GYN4 tRNA specific adenosine deaminase 1.15806186047e-07 5.01982929259e-07 155904290.156 +UniRef50_U5MYV0 ATP dependent Clp protease ATP binding subunit ClpA 4.0258132726e-06 1.53107697118e-05 4555875396.49 +UniRef50_P76261 Putative cyclic di GMP phosphodiesterase AdrB 2.35056994584e-05 5.8878245484e-06 -7112552296.8 +UniRef50_U5UNN1 GNAT family acetyltransferase 0.000495902076576 1.68249775809e-05 -1.93409303801e+11 +UniRef50_U5NRK2 0.000101216849031 4.76317266442e-06 -38939532768.9 +UniRef50_Q1C1V1 NADH pyrophosphatase 3.46126201676e-05 1.24016872509e-05 -8966826177.27 +UniRef50_U5RUZ1 DNA polymerase III, subunits gamma and tau 4.43053973874e-06 2.23188865696e-05 7221745130.33 +UniRef50_UPI00037D5F1A hypothetical protein 6.38653174517e-07 2.9690216703e-07 -137969075.479 +UniRef50_UPI00047224C9 hypothetical protein 5.45901062337e-07 3.58816180791e-07 -75528462.4698 +UniRef50_P36678 Putative type II secretion system protein M 4.92373028943e-06 4.05469160461e-06 -350841581.366 +UniRef50_G7MCP1 Multi sensor signal transduction histidine kinase 2.10002449553e-06 1.16028735321e-05 3836416769.13 +UniRef50_Q6GIN0 Prolipoprotein diacylglyceryl transferase 0.000105972029372 5.07576790829e-05 -22290710768.0 +UniRef50_B8FQ92 Chorismate synthase 2.85402163636e-07 1.90240792814e-06 652805070.021 +UniRef50_Q2WBD9 Phosphoheptose isomerase 9.1405626226e-08 1.01349043109e-07 4014279.41511 +UniRef50_W8RXY9 Arsenate reductase related protein 3.68841721434e-06 1.13798139364e-06 -1029642238.18 +UniRef50_A9M3Z6 Periplasmic protein 1.61548925324e-06 7.86746897966e-06 2524000935.97 +UniRef50_UPI00036A03CE hypothetical protein 8.306192824e-08 9.18686727185e-08 3555390.81688 +UniRef50_UPI0003486CF4 hypothetical protein 2.29960488726e-08 1.78314182361e-07 62703836.4569 +UniRef50_Q6A8Q7 1,4 alpha glucan branching enzyme GlgB 6.17119008952e-07 4.53141931206e-05 18044757313.6 +UniRef50_G4B6N4 3.40841583254e-07 6.61156802679e-06 2531569215.72 +UniRef50_UPI000477A19D ribose ABC transporter permease 1.54420901092e-06 4.89726624129e-07 -425707479.501 +UniRef50_A1U1A4 Phosphoribosylaminoimidazole succinocarboxamide synthase 3.71807032243e-05 6.02806619236e-05 9325736795.28 +UniRef50_Q167T4 Branched chain amino acid ABC transporter, permease protein, putative 4.30897010205e-05 1.25570071271e-05 -12326423203.1 +UniRef50_V5ZX98 4.95644558563e-07 2.79599573674e-07 -87220011.5698 +UniRef50_C6M2N2 RND transporter, HAE1 family 2.23229365711e-06 2.41051587766e-05 8830344058.98 +UniRef50_UPI0004796185 16S rRNA methyltransferase 1.40724902464e-07 1.34581645376e-07 -2480108.27267 +UniRef50_UPI000472B33B ABC transporter 7.0927191316e-08 3.5710719737e-07 115534380.268 +UniRef50_P56396 Tryptophan tRNA ligase 1.29276023577e-06 3.11161665558e-05 12040075105.7 +UniRef50_Q5L8Z8 Malate dehydrogenase 2.00655358317e-07 1.65653799243e-05 6606640125.05 +UniRef50_UPI000377FC08 LuxR family transcriptional regulator 1.56374866602e-07 1.07442246713e-06 370627082.044 +UniRef50_A8LPC2 tRNA modification GTPase MnmE 0.000125165324807 2.98818501522e-05 -38467107977.9 +UniRef50_O26480 UDP glucose 4 epimerase homolog 2.09067147479e-05 3.87747082661e-06 -6874914743.35 +UniRef50_Q1J391 Allantoinase 9.23119800131e-08 0.000268731679347 1.08453009182e+11 +UniRef50_UPI00046FE227 multidrug ABC transporter ATP binding protein 7.258158976e-08 3.15866285051e-08 -16550168.9233 +UniRef50_V6EI61 Lactose permease 1.18566426436e-05 8.54798692905e-06 -1335744913.74 +UniRef50_D7DKW7 Short chain dehydrogenase reductase SDR 0.000126894301501 3.73978163359e-05 -36130829306.5 +UniRef50_I5C147 2.38828691517e-06 2.79726104894e-07 -851251874.061 +UniRef50_Q7VW21 UPF0246 protein BP2452 5.14985772163e-08 2.00245918226e-07 60051126.9009 +UniRef50_M3Z864 7.19906160945e-07 2.4574569857e-06 701470590.102 +UniRef50_UPI00035D274E hypothetical protein 3.96158641696e-08 3.11015111038e-08 -3437348.81552 +UniRef50_O25722 DNA translocase FtsK 2.26871427991e-06 4.03104154073e-05 15357901569.3 +UniRef50_Q1C3L9 Lipoprotein NlpI 4.03851570185e-05 1.26833725072e-05 -11183550346.3 +UniRef50_UPI0004650975 hypothetical protein 1.11458637407e-05 5.61012122887e-07 -4273234488.84 +UniRef50_UPI00037DD9E3 hypothetical protein, partial 2.41924525391e-07 1.73042036393e-07 -27808706.0917 +UniRef50_UPI0004630A02 hypothetical protein 8.81556363741e-07 9.54443822869e-07 29425561.6797 +UniRef50_UPI00037AA24F 30S ribosomal protein S19, partial 4.01454567108e-07 3.14358549628e-07 -35161731.045 +UniRef50_A0A023Y3Z5 1.52298661952e-06 3.97361055833e-07 -454428853.041 +UniRef50_UPI00036F824A MULTISPECIES 9.48243289863e-07 1.47712176666e-07 -323184234.019 +UniRef50_UPI00034D7E89 hypothetical protein 4.94244962007e-06 0.000196344434232 77271329954.3 +UniRef50_UPI000369A9BC hypothetical protein 6.02001831384e-06 1.6053349471e-07 -2365545925.45 +UniRef50_K4A616 5.58349256945e-08 5.06604191774e-08 -2089011.77929 +UniRef50_UPI0003B739B2 glutamyl tRNA synthetase 1.09299255498e-07 1.01322515281e-07 -3220307.91121 +UniRef50_Q8CPM6 Divalent metal cation transporter MntH 0.000221096787854 4.57056392758e-05 -70807558972.4 +UniRef50_A0A011R0M1 Dual specificity phosphatase, catalytic domain protein 7.71207796926e-08 2.04918086196e-07 51593340.8846 +UniRef50_P42590 Inner membrane transporter YgjI 1.16527148351e-05 1.38754912385e-06 -4144173365.4 +UniRef50_A3DDS7 Indole 3 glycerol phosphate synthase 9.19758723774e-08 1.40020088611e-07 19396039.6623 +UniRef50_R5TME3 Xylulokinase 2.72914524022e-06 2.36394809975e-05 8441759143.9 +UniRef50_A3PQ77 Tripartite ATP independent periplasmic transporter, DctQ component 0.000103874200994 3.90286394531e-06 -40359655552.8 +UniRef50_P47650 Phosphate import ATP binding protein PstB 6.15621484022e-08 8.16942178227e-08 8127563.47333 +UniRef50_X1GFV3 Marine sediment metagenome DNA, contig 5.36665218042e-07 3.95379210763e-06 1379536058.19 +UniRef50_UPI00029A5C6F protein narU, partial 1.25218775265e-06 6.40898778506e-07 -246784860.221 +UniRef50_Q732P6 Isoprenyl transferase 0.000120946865437 4.58843631451e-05 -30303653295.7 +UniRef50_Q6F7N0 Ferrochelatase 1.16628008914e-06 8.35371788803e-05 33254142646.6 +UniRef50_F4D5J0 3.97899487961e-06 2.88484624104e-05 10040109224.9 +UniRef50_UPI00039E983D acetylglutamate kinase 2.47295414425e-07 1.78389434255e-07 -27818189.7661 +UniRef50_U2ZS91 9.10756380874e-07 4.66657809918e-07 -179288042.797 +UniRef50_A5UKG8 Nicotinate nucleotide pyrophosphorylase [carboxylating] 5.26829712196e-05 1.15936138889e-05 -16588277777.5 +UniRef50_H0Q5F2 Short chain dehydrogenase reductase SDR 6.70152785609e-06 5.53696274512e-05 19647909031.3 +UniRef50_UPI0003629198 hypothetical protein 5.40451313235e-07 8.08216720438e-07 108100180.739 +UniRef50_Q5HKK3 1.17144561385e-05 2.20764947592e-05 4183282147.69 +UniRef50_UPI000475640B pilus assembly protein CpaF 2.01270551046e-07 1.09115462201e-07 -37204140.2368 +UniRef50_UPI0003C1219C 6.90528861822e-07 1.33914266773e-07 -224712142.45 +UniRef50_I6STQ4 Oxidoreductase 6.18896009767e-05 3.82245614644e-05 -9553866853.81 +UniRef50_Q6GHV6 Iron regulated surface determinant protein A 8.67254853466e-05 2.79298823315e-05 -23736506440.4 +UniRef50_Q3JF19 Glycerol 3 phosphate dehydrogenase [NAD+] 2.76109504078e-05 1.09084395363e-05 -6743008601.68 +UniRef50_UPI00037482BD hypothetical protein 6.63505100035e-08 9.67354623114e-08 12266778.112 +UniRef50_UPI00037267AF hypothetical protein 1.30395726511e-07 1.09901296729e-06 391042666.373 +UniRef50_UPI000370F5C3 hypothetical protein 1.69473000577e-05 1.93865511885e-06 -6059174138.58 +UniRef50_D6M286 Tat pathway signal sequence 1.65769767111e-07 3.51908837227e-08 -52716297.6068 +UniRef50_M0J3W1 dGTPase 4.44787922733e-07 1.43382782849e-06 399287546.839 +UniRef50_W5B0U3 2.81390506213e-06 2.28454725321e-06 -213708243.412 +UniRef50_P37342 6.67125602372e-05 6.17766556792e-06 -24438679824.7 +UniRef50_S6AVL7 1.47497606063e-07 3.17675601259e-06 1222948791.9 +UniRef50_UPI000371A11E MULTISPECIES 4.33308300852e-07 2.74957425416e-07 -63928191.5973 +UniRef50_Q0FDE4 FoF1 ATP synthase, subunit I 3.82888192802e-07 5.96823002297e-07 86368107.8685 +UniRef50_L7WPL2 0.000245130820171 4.04202220921e-05 -82644180526.0 +UniRef50_Q5HQZ3 Transferrin receptor 0.000237877892632 2.53906836159e-05 -85783693791.0 +UniRef50_Q8DR58 UPF0398 protein spr0331 6.32476987774e-05 3.26002910713e-05 -12372734576.9 +UniRef50_K1BXA7 Two component sensor 2.03203359071e-07 6.87794058176e-08 -54268599.4956 +UniRef50_B7VS71 Phosphomethylpyrimidine kinase 1.52416953778e-06 7.10306438132e-05 28060616605.3 +UniRef50_P23530 Phosphoenolpyruvate protein phosphotransferase 0.000221800378512 0.000129521821897 -37253985690.7 +UniRef50_UPI000472C798 pseudouridine synthase 8.75617696749e-08 2.17366360059e-07 52403706.0195 +UniRef50_M3BD66 1.4900762718e-06 5.35363960773e-07 -385429075.599 +UniRef50_K9NR38 Peptidase M23B 6.31013623811e-06 1.23219765733e-06 -2050026118.37 +UniRef50_Q6FA84 1.03063238685e-05 2.09298925569e-05 4288865045.35 +UniRef50_Q3D4U8 4.51929963161e-06 2.99504756839e-06 -615359262.598 +UniRef50_UPI00046FB65C hypothetical protein 2.18411519558e-06 8.79082342097e-07 -526857777.504 +UniRef50_Q7UR11 Ferripyochelin binding protein 4.05860529477e-07 2.68459257558e-07 -55470579.5769 +UniRef50_UPI00047CB9DF 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 2.24727465012e-07 5.81587834312e-08 -67245820.7818 +UniRef50_Q5LUR8 Zinc import ATP binding protein ZnuC 1.89531359833e-07 8.59805111053e-08 -41804748.3433 +UniRef50_Q3ZAD5 Cysteine tRNA ligase 2.80851782866e-08 9.8902911096e-08 28589987.7665 +UniRef50_Q8DVX1 2.37308217495e-05 5.97688758296e-06 -7167481088.29 +UniRef50_I0C0T2 Trp repressor binding protein 4.925432984e-05 3.43340857958e-05 -6023485612.63 +UniRef50_I5C5U6 2.35491798924e-07 4.47973598977e-07 85781510.1263 +UniRef50_A4WUQ1 7.31285504014e-07 2.88583099537e-06 869816454.108 +UniRef50_P37691 1.91472851882e-05 7.01268525188e-06 -4898886902.57 +UniRef50_U5MLQ3 Processive diacylglycerol glucosyltransferase UgtP 1.04374006137e-06 8.4737572678e-06 2999589122.8 +UniRef50_Q9P9A1 Nitrate reductase beta subunit 3.75088367833e-07 5.7001067285e-07 78692526.501 +UniRef50_UPI000379A03B malyl CoA thiolesterase 1.81792102623e-06 1.02123619372e-06 -321631443.307 +UniRef50_I0EPP7 Periplasmic dipeptide transport substrate binding protein 7.71954987484e-07 3.8468247406e-05 15218455834.9 +UniRef50_Q8CU41 Ornithine carbamoyltransferase 1, catabolic 9.18007512207e-05 2.91215003988e-05 -25304382717.7 +UniRef50_E4BBW7 4.92373028943e-06 8.91918096963e-06 1613012469.29 +UniRef50_Q2NI05 MvhA 2.48091175236e-05 1.04205943273e-05 -5808823381.38 +UniRef50_A0A058Z3Q5 4.91326820447e-08 3.6605424989e-08 -5057407.40012 +UniRef50_D3QHG0 Phosphonate ABC transporter permease protein phnE1 0.000180733284964 5.94815457642e-05 -48950815041.2 +UniRef50_G7M9K8 Methyl accepting chemotaxis sensory transducer 1.77186764338e-06 1.12167501092e-05 3813014953.19 +UniRef50_UPI00047CAA92 polynucleotide phosphorylase polyadenylase 2.29777499373e-08 7.69070512246e-08 21771920.7166 +UniRef50_V6ZFX5 HD domain protein 9.82612533802e-08 4.71871036838e-07 150830854.29 +UniRef50_C5B9D9 Phosphopantetheine adenylyltransferase 6.88279506994e-07 1.3664686544e-07 -222700866.689 +UniRef50_P0AEV2 Regulator of RpoS 2.13000696558e-05 5.72594360419e-06 -6287465803.05 +UniRef50_I3U2F8 DAACS family dicarboxylate amino acid 0.000114407456588 3.71867171704e-05 -31174960107.9 +UniRef50_UPI0004673090 DNA mismatch repair protein Vsr 5.86686998499e-07 1.73235082443e-07 -166915612.137 +UniRef50_I6TRJ5 Arsenate reductase 3.22637597309e-06 8.84656194236e-05 34412128584.1 +UniRef50_A6DYW3 6.83398416337e-07 1.17086547199e-06 196796432.261 +UniRef50_Q6A7D5 Conserved protein 1.51225107133e-06 5.33161724659e-05 20913878772.6 +UniRef50_A5ULE4 Predicted transcriptional regulator 2.3480850545e-05 4.76320701537e-06 -7556542384.21 +UniRef50_UPI0003820AE4 hypothetical protein 5.24925683015e-08 9.36139093951e-08 16601190.0151 +UniRef50_Q5ZUH9 Lipid A export ATP binding permease protein MsbA 2.84228847265e-08 1.31226486019e-07 41503075.3836 +UniRef50_A4VGV6 6.16382153773e-07 9.47568682882e-07 133704065.917 +UniRef50_UPI000382EBAF hypothetical protein 4.51447282579e-08 6.3114295258e-08 7254534.70932 +UniRef50_M4KI13 Fibrinogen binding family protein 4.92951353366e-05 1.97905751414e-05 -11911353012.5 +UniRef50_Q07V02 RNA pyrophosphohydrolase 1.80984491917e-05 3.63839883189e-06 -5837699775.02 +UniRef50_Q3JWW0 7.07167025995e-08 1.78562985876e-06 692331485.493 +UniRef50_A4H7G2 1.20992946588e-07 4.73039387273e-07 142125468.2 +UniRef50_Q2NES1 FrhB 6.01520135248e-05 2.06997690564e-06 -23448430929.9 +UniRef50_Q1IIL2 Chorismate synthase 1.34969087571e-07 1.37628670627e-06 501135155.349 +UniRef50_R6RW73 ABC type multidrug transport system ATPase component 4.51688047017e-05 2.05885697092e-05 -9923342499.87 +UniRef50_A0A009VZS8 Penicillin binding protein 2 5.02439376712e-06 3.65152270583e-05 12713235835.6 +UniRef50_UPI0003768F8C hypothetical protein 1.42595853597e-06 2.72833478731e-07 -465530736.043 +UniRef50_O27054 Probable L aspartate dehydrogenase 2.95361127864e-05 8.12545082389e-06 -8643746972.63 +UniRef50_B9KQJ4 Chemotactic signal response protein CheL 3.36628781603e-06 1.56292400883e-06 -728040098.729 +UniRef50_E3J2U0 Transcriptional regulator 1.21461799588e-08 4.32245540975e-08 12546721.0143 +UniRef50_F9YZS9 Integral membrane protein 9.85603103999e-07 5.47473889006e-05 21704292657.4 +UniRef50_K9F564 Putative extracellular nuclease 8.29399664806e-08 3.91903296689e-06 1548677818.42 +UniRef50_L8GHN9 8.69029961134e-08 2.53118430987e-07 67103210.7514 +UniRef50_UPI00047883C6 hypothetical protein 7.89395715898e-07 9.38139482134e-07 60049683.7207 +UniRef50_UPI00047EF6F7 ABC transporter ATP binding protein 1.43136006603e-08 3.983383226e-07 155035492.76 +UniRef50_UPI000463035D hypothetical protein 1.56201292732e-07 3.78053587313e-07 89564493.7561 +UniRef50_A0A024KYL9 ATP dependent Clp protease ATP binding subunit 6.77387439752e-06 1.46123419104e-06 -2144778044.78 +UniRef50_D5AP52 4.41034906072e-06 4.56787198172e-07 -1596101439.57 +UniRef50_UPI0004764AED hypothetical protein, partial 9.65298372967e-07 3.45941518806e-07 -250041962.388 +UniRef50_Q9KUD9 Ribosomal RNA small subunit methyltransferase I 9.34712335195e-06 7.62446709139e-05 27007360876.0 +UniRef50_F0XYP3 9.59058469323e-07 6.02197890836e-07 -144068994.707 +UniRef50_N1UE46 3.96284333773e-06 7.71001954907e-07 -1288585534.54 +UniRef50_A0A020CJ31 1.84113194658e-05 8.1530611061e-06 -4141384782.8 +UniRef50_S4MU14 6.96037155729e-06 1.22870912669e-06 -2313942458.64 +UniRef50_A5UP58 1.48823998097e-05 3.7381861418e-06 -4499055812.61 +UniRef50_D4X8Q1 RepB plasmid partitioning protein 2.21690314668e-08 1.52736801638e-07 52711811.0647 +UniRef50_U5P983 Macrolide ABC transporter ATP binding protein 0.000170793751473 0.000135919331389 -14079231345.2 +UniRef50_Q5GTU8 MFS transporter 4.07451108489e-06 3.07277022654e-06 -404415077.259 +UniRef50_O67528 Nucleoside diphosphate kinase 6.31315290138e-07 2.12191187001e-07 -169205543.668 +UniRef50_K9PAV6 Lysophospholipase 3.18644691057e-08 5.32239269999e-07 202007447.41 +UniRef50_Q4L7V6 Holo [acyl carrier protein] synthase 9.87010760655e-06 9.89888397308e-06 11617372.2939 +UniRef50_F2EXR6 3.09399622654e-06 1.79477512951e-06 -524511500.107 +UniRef50_UPI000395608F 3 hydroxyacyl CoA dehydrogenase 4.76993298832e-08 1.53966938412e-07 42901537.6134 +UniRef50_B8DYK8 Deoxycytidine triphosphate deaminase 3.689859716e-05 1.25972786555e-05 -9810740490.98 +UniRef50_UPI000349DE0E hypothetical protein 9.99809887487e-07 8.20237210275e-07 -72495693.395 +UniRef50_P35594 ATP dependent Clp protease ATP binding subunit ClpE 4.92293723292e-05 7.72174082563e-05 11299113555.6 +UniRef50_UPI00037BD53F hypothetical protein 2.65320614451e-06 2.33807340986e-06 -127222952.092 +UniRef50_A1TRG1 Glucose 1 phosphate adenylyltransferase 3.3949996336e-08 6.69859413834e-08 13337016.4123 +UniRef50_UPI00037AD344 hypothetical protein 1.58800428606e-07 6.15847179054e-07 184515381.75 +UniRef50_UPI0003A602B5 AraC family transcriptional regulator 7.06959859571e-07 2.77248884182e-07 -173479593.911 +UniRef50_A5WFS0 NADPH dependent FMN reductase 2.10886027289e-06 6.93147625564e-05 27131847461.0 +UniRef50_Q7VGA7 Tryptophan synthase beta chain 8.6585679919e-08 6.08346550665e-08 -10396004.7336 +UniRef50_Q0W484 Homoserine O acetyltransferase 2.85297943164e-05 4.101825575e-06 -9861870745.79 +UniRef50_U6AE16 Methyl accepting chemotaxis protein 2.9863052609e-06 1.26024198511e-06 -696832925.615 +UniRef50_UPI0003B4EF9E ATPase, partial 5.98981719684e-08 1.42709522154e-05 5737176906.56 +UniRef50_UPI0003B31E86 TDP glucose 4,6 dehydratase 9.70979713799e-08 8.11743906323e-07 288511333.628 +UniRef50_Q93XI4 N carbamoylputrescine amidase 1.50826140901e-07 4.74045564541e-07 130487647.672 +UniRef50_R7BPT0 2 nitropropane dioxygenase NPD 7.94218209023e-05 8.21712105957e-05 1109962358.03 +UniRef50_D3JTG7 AqsR 4.66249049448e-06 8.10117225065e-05 30823121873.7 +UniRef50_A5UNG9 4 diphosphocytidyl 2 methyl D erithritol synthase, IspD 2.44998893946e-05 1.63873099669e-05 -3275147867.51 +UniRef50_UPI000360F677 hypothetical protein 1.24175452782e-07 1.31523179408e-06 480844060.888 +UniRef50_Q602K3 Porphobilinogen deaminase 4.58430222764e-05 8.16445063979e-05 14453498473.5 +UniRef50_X2IT45 DNA polymerase III subunit gamma tau 6.53089946062e-07 3.84528620669e-05 15260231860.5 +UniRef50_UPI0004720C75 hypothetical protein 7.13781306086e-07 5.80535079812e-07 -53793136.6619 +UniRef50_A0A031H7A6 1.38295112599e-06 5.29728216803e-07 -344456558.661 +UniRef50_Q6L178 Probable transaldolase 1.34972447664e-06 2.96027925133e-06 650200726.272 +UniRef50_A7FBR2 1.44630647073e-06 5.65007774088e-05 22226165512.0 +UniRef50_L8E566 4.88916841405e-07 6.78369154289e-07 76484223.5526 +UniRef50_UPI000382D4E3 hypothetical protein 3.10393995049e-07 4.10198597573e-07 40292342.7791 +UniRef50_A0ALU1 50S ribosomal protein L17 6.73562969454e-05 4.8412574623e-06 -25238088585.1 +UniRef50_P38448 KHG KDPG aldolase 4.102076266e-06 1.86531208394e-05 5874435255.68 +UniRef50_W0YS94 1.78813354213e-06 1.40962379147e-06 -152809031.178 +UniRef50_A3QDX8 Dihydroorotate dehydrogenase 1.18287687058e-07 1.55927388319e-07 15195609.2901 +UniRef50_B4RKY8 Succinyl diaminopimelate desuccinylase 2.398422422e-08 3.85531378795e-05 15554692136.5 +UniRef50_UPI0003F8D5B0 hypothetical protein 6.85723904955e-08 9.45415471652e-06 3789074759.06 +UniRef50_B8ERB2 Ppx GppA phosphatase 6.87839942301e-08 2.91728963083e-07 90005619.7684 +UniRef50_R6FSB9 Peptidase M24 7.61020158855e-06 8.10877416917e-06 201279868.97 +UniRef50_F0MEQ3 Ferripyoverdine receptor 1.77354267045e-06 2.5266318187e-05 9484321764.79 +UniRef50_F6IIV1 Flagellum specific ATP synthase 1.33422502872e-05 3.60016503715e-06 -3932999364.27 +UniRef50_W4TT30 7.51234492661e-06 5.39494557245e-05 18747231476.5 +UniRef50_Q8CQA8 Surfactin synthetase 9.62540073976e-05 3.97915581325e-05 -22794583640.5 +UniRef50_P0A5I3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 2 4.64482292556e-07 3.85192943849e-07 -32010083.0627 +UniRef50_W7NBP5 2.11383489586e-07 3.18114942752e-06 1198930952.27 +UniRef50_Q3KF35 Glutamate tRNA ligase 1.05423141434e-05 6.56662282771e-05 22254200582.3 +UniRef50_P56926 Glutamine tRNA ligase 1.93909041555e-08 0.000126773244597 51172086180.6 +UniRef50_V4R1X6 2.82098885216e-07 4.43318414138e-07 65086302.2119 +UniRef50_Q9JU31 DNA translocase FtsK 1 4.70289853191e-07 2.03440217694e-05 8023269452.69 +UniRef50_H6PB78 DNA polymerase III, gamma and tau subunits 5.92492324569e-05 8.17703044934e-05 9092033145.77 +UniRef50_O04974 2 isopropylmalate synthase B 4.70187523157e-08 4.70913104871e-08 29292.6241831 +UniRef50_Q5HNB7 Phosphoenolpyruvate carboxykinase [ATP] 0.000118403635591 2.99584449305e-05 -35706408814.2 +UniRef50_F8GU00 Oxygenase subunit protein 1.42090083634e-06 5.43835290458e-05 21381662932.7 +UniRef50_H8GWF1 5` nucleotidase family protein 1.38740161886e-06 0.000273677064928 1.09926678448e+11 +UniRef50_H2GZD2 Ascorbate specific PTS system enzyme IIC 7.61572270731e-07 6.6490887205e-05 26535731028.4 +UniRef50_UPI00028A25D3 peptide ABC transporter 5.92132773013e-07 3.83700498509e-07 -84146666.9689 +UniRef50_UPI0003EE1B84 PREDICTED 1.12147007457e-07 9.57835282258e-08 -6606137.36811 +UniRef50_J7QTA8 Putative DNA transposase 2.51936735985e-07 4.3751403736e-07 74919833.8547 +UniRef50_W0YJI7 PAAR motif containing protein 8.83352547962e-07 8.20648616609e-06 2956438906.59 +UniRef50_Q8CUS7 Adenine deaminase 8.63744683545e-08 4.78729018806e-08 -15543554.8529 +UniRef50_Q73E41 Calcium transporting ATPase 1 1.07207093479e-06 2.29921075542e-05 8849387772.35 +UniRef50_UPI0002558955 Recombinase A 1.32800858871e-06 3.42008510535e-07 -398060331.141 +UniRef50_F0Y1K3 Expressed protein 9.52885099739e-07 6.66095799403e-07 -115780359.846 +UniRef50_UPI00035D9122 hypothetical protein 3.05103912668e-08 5.29293150975e-08 9050794.66159 +UniRef50_G0BED7 Transcriptional regulator, LysR family 1.29423767612e-06 4.36082382471e-05 17082681281.7 +UniRef50_A8Q1C8 9.01251171146e-07 2.74154003149e-07 -253166822.068 +UniRef50_K8WCA6 Heme lyase subunit CcmF 2.20513850352e-05 3.71523020117e-06 -7402530716.41 +UniRef50_Q88GW8 5 dehydro 4 deoxyglucarate dehydratase 7.70050255588e-05 2.31704651166e-05 -21733672674.9 +UniRef50_B4SMK1 L lactate dehydrogenase [cytochrome] 2.77210987986e-05 2.62865136642e-05 -579159623.097 +UniRef50_UPI00041BD20B hypothetical protein 1.32891695578e-08 4.5827002794e-07 179644233.058 +UniRef50_W5WU40 Anion transporter 0.000210276947909 3.73099895869e-05 -69828883617.9 +UniRef50_A7HYE5 Ribonuclease D 9.24728637223e-05 1.25879626387e-05 -32250514865.4 +UniRef50_UPI0003C1900C PREDICTED 3.13755984393e-08 3.39190520098e-08 1026823.4181 +UniRef50_Q99W51 tRNA specific adenosine deaminase 0.000202522098981 3.95425598226e-07 -81601018417.9 +UniRef50_UPI00029AF092 multidrug transport protein, mfs family 3.88513290337e-07 6.33024066718e-06 2398748255.22 +UniRef50_Q9RST5 2.96454965064e-06 0.000417999624277 1.6755475268e+11 +UniRef50_A7MS74 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1 4.31431904861e-07 1.83229040418e-07 -100202542.167 +UniRef50_I7DGD4 Signal transduction histidine kinase 3.47921956898e-05 1.65245819299e-05 -7374859843.7 +UniRef50_Q5HKI9 Amino acid ABC transporter, amino acid binding protein 0.000230334074624 6.85984263755e-05 -65294665917.3 +UniRef50_UPI00036BE230 macrolide ABC transporter ATP binding protein 6.69141287844e-08 2.86127260701e-06 1128116808.3 +UniRef50_A0A010IHG0 Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein 1.33891072498e-06 9.06966592504e-05 36074819622.6 +UniRef50_A4IMP7 Large conductance mechanosensitive channel 3.67620778118e-05 4.14035375839e-05 1873814267.11 +UniRef50_UPI00046537F1 transcriptional repressor NemR 9.39571494456e-07 1.25056543719e-07 -328829680.835 +UniRef50_V5VGM0 Flavoprotein 1.83607815991e-06 0.000150071067903 59844284407.1 +UniRef50_A5UKL2 2.90499744237e-05 2.2961427241e-05 -2458021212.53 +UniRef50_G8RFW9 6.88792732076e-05 5.96578305292e-05 -3722809569.1 +UniRef50_Q5HNR9 D tyrosyl tRNA deacylase 0.000139391373688 2.52205486821e-05 -46092163088.5 +UniRef50_M1MJA7 rRNA ) methyltransferase 1.01383882411e-06 1.52348984033e-05 5741216264.15 +UniRef50_UPI0003DF781B PREDICTED 1.11775366575e-07 1.67425559888e-07 22466665.9451 +UniRef50_F9Z1V2 RlpA like protein 1.11682245224e-06 5.78194086106e-05 22891529851.1 +UniRef50_A4WWS4 RecB family exonuclease like protein 1.6707953513e-06 6.76297798135e-07 -401490866.07 +UniRef50_Q98DE8 Glutathione synthetase 4.31723771781e-08 1.33553936137e-06 521744410.644 +UniRef50_A5ISW4 2.15950377238e-05 9.00158792352e-07 -8354776579.33 +UniRef50_O68575 Pyruvate formate lyase activating enzyme 7.04961433762e-05 2.72038973301e-05 -17477610984.4 +UniRef50_Q31RQ5 3 phosphoshikimate 1 carboxyvinyltransferase 4.52737935863e-08 6.45684138652e-08 7789474.97821 +UniRef50_UPI00040D856B hypothetical protein 1.21493199249e-07 5.18917884856e-08 -28098943.6305 +UniRef50_UPI000372D278 hypothetical protein 2.50165427223e-07 5.26118362912e-08 -79754808.9144 +UniRef50_UPI0004771B3E hypothetical protein 1.84640417686e-06 6.73823514703e-07 -473385202.497 +UniRef50_F0KEU3 2.88289456304e-06 5.17607074455e-05 19732572858.9 +UniRef50_X0VX75 Marine sediment metagenome DNA, contig 2.16090317724e-07 1.95148313822e-07 -8454543.96252 +UniRef50_B5H827 Cobalamin synthesis protein 5.05351778975e-08 5.60114698122e-08 2210846.24762 +UniRef50_P76176 5.25499730588e-05 1.55430262312e-05 -14940158560.6 +UniRef50_Q5HLI8 Glutaredoxin, putative 8.7297678033e-05 1.82389667053e-05 -27879849208.7 +UniRef50_B9JSI7 Cation efflux system protein 3.88056037886e-05 1.31421248571e-05 -10360661370.9 +UniRef50_Q5NPR4 UvrABC system protein C 6.69941446558e-05 1.20527037857e-05 -22180533886.6 +UniRef50_UPI00035DA52C hypothetical protein 6.45038736489e-08 3.13980733543e-07 100716869.765 +UniRef50_A5UP28 3.03238272507e-05 1.00405171648e-06 -11836753177.3 +UniRef50_V0RK41 5.95032319047e-06 9.14854355937e-07 -2032880560.65 +UniRef50_R5A601 Recombination inhibitory protein MutS2 3.86331609746e-06 7.65069184465e-07 -1250800298.54 +UniRef50_S5EBY8 1.76120990128e-06 3.65008306628e-06 762561275.791 +UniRef50_UPI0003C16983 1.19964392659e-07 3.94468704414e-07 110820759.202 +UniRef50_Q71ZJ9 Ribosomal protein L11 methyltransferase 6.66235456645e-07 1.20069374481e-05 4578380560.03 +UniRef50_UPI000378771A hypothetical protein 1.7979876806e-07 1.67992073956e-07 -4766507.29421 +UniRef50_UPI00037134C7 hypothetical protein 3.06261081886e-07 1.11955556385e-07 -78443525.0417 +UniRef50_UPI000359481D 8.27968252772e-07 8.0650685532e-07 -8664229.51233 +UniRef50_UPI0002F538D8 hypothetical protein 1.71774714716e-07 2.33352722666e-07 24859797.4565 +UniRef50_U6JB04 Nucleoside diphosphate kinase 1.17967957142e-07 2.00469007731e-07 33306686.5245 +UniRef50_A4WQY8 Cytochrome c type biogenesis protein CcmE 0.000149494223252 3.91147953907e-06 -58773540138.1 +UniRef50_A0A037VGU7 3.37989937905e-07 3.95544668504e-07 23235551.0188 +UniRef50_I2DHK5 2.87337202072e-06 1.52710815726e-05 5005107483.11 +UniRef50_Q6A7A2 DNA ligase 1.75600789695e-06 7.09209616305e-05 27922740571.6 +UniRef50_Q9RX88 50S ribosomal protein L25 6.16239474805e-06 0.000429377561976 1.70857156444e+11 +UniRef50_O26759 Putative ammonium transporter MTH_663 4.80368899843e-05 1.23159635083e-05 -14420976363.4 +UniRef50_H5UZW1 Glutathione regulated potassium efflux system protein KefC 4.04339727665e-07 1.47829676633e-06 433569635.442 +UniRef50_UPI0001DD0CDF flagellar hook capping protein 1.51730140987e-07 2.06417453818e-07 22077939.2787 +UniRef50_A5UMU8 Predicted glycosyltransferase, GT2 family 2.96254886061e-05 6.88358025688e-06 -9181187475.17 +UniRef50_UPI00047A6BB5 hypothetical protein 1.23789306359e-07 7.21040565962e-08 -20865969.5786 +UniRef50_Q2G1X0 Alpha hemolysin 6.48580380612e-05 1.14264692675e-05 -21570980001.1 +UniRef50_N0DZB3 Secreted protein 1.19498070023e-07 1.50350936205e-07 12455680.6849 +UniRef50_P78029 Thymidylate synthase 3.8548459764e-07 8.52720452937e-05 34269746228.3 +UniRef50_Q5HGH0 Phosphatidate cytidylyltransferase 0.000184719120561 5.04977001717e-05 -54186834493.1 +UniRef50_P76177 Protein YdgH 2.35769784607e-05 1.3608850701e-05 -4024255499.27 +UniRef50_UPI0003298C8F PREDICTED 1.96475787207e-07 2.78264532256e-07 33019120.037 +UniRef50_G2LAK2 Adhesive protein CupB5 4.82258208054e-06 2.56391175579e-06 -911852927.103 +UniRef50_V5VBD8 3 beta hydroxysteroid dehydrogenase isomerase 1.11462398283e-06 7.64059230108e-05 30396021345.7 +UniRef50_P54453 6.86910554002e-05 5.74858231545e-05 -4523689761.25 +UniRef50_F8A5M8 Alpha amylase catalytic region 2.8025620662e-06 4.71421802667e-05 17900447975.8 +UniRef50_X7E7E5 5.26488520307e-08 1.34729805773e-06 522665771.473 +UniRef50_R7PTU8 ATP grasp domain protein 9.76597802733e-06 2.33664674245e-05 5490684466.42 +UniRef50_R9SNU8 Radical SAM domain containing protein 2.01507769668e-05 4.99830812745e-06 -6117237612.13 +UniRef50_J7QY26 Escherichia coli IMT2125 genomic chromosome, IMT2125 8.19714139912e-07 1.76699944005e-06 382430700.164 +UniRef50_A5UKF9 ATP utilizing enzyme, PP loop superfamily 2.21254987031e-05 9.64668235747e-06 -5037851291.02 +UniRef50_D4Z726 3 oxoadipate CoA transferase alpha subunit LinG 3.46131478079e-06 6.9862639622e-05 26807029674.3 +UniRef50_R7PXC4 Probable ribosomal RNA small subunit methyltransferase A 2.2628322228e-05 8.6853452686e-06 -5628950898.08 +UniRef50_A1WY69 DNA polymerase IV 3.71722698113e-08 9.40816423289e-08 22975012.0419 +UniRef50_L7UII0 1.09586682955e-07 3.94038589455e-07 114836725.271 +UniRef50_F6CGX7 Quaternary amine transporting ATPase 1.67128534877e-05 8.42962997786e-06 -3344038977.51 +UniRef50_UPI00037ED53F hypothetical protein 7.07624706278e-07 5.96541915487e-07 -44845485.7815 +UniRef50_Q9ZJN2 Probable nicotinate nucleotide pyrophosphorylase [carboxylating] 1.3827325599e-06 1.93479666262e-05 7252785450.78 +UniRef50_D9SQ35 Integrase family protein 6.68939685117e-06 3.17853276605e-06 -1417378914.31 +UniRef50_UPI0003C17A16 PREDICTED 6.41208210667e-07 3.29794479577e-07 -125721544.717 +UniRef50_UPI000476CF1F pyridine nucleotide disulfide oxidoreductase 1.54577500539e-06 1.23689917825e-07 -574113200.798 +UniRef50_V8HJS7 tRNA ) methyltransferase 1.96011383086e-05 2.41074861385e-06 -6939971269.59 +UniRef50_S2KIU7 Membrane protein 1.3207073705e-06 1.32938103015e-07 -479517028.854 +UniRef50_J1SZC4 1.45270202608e-06 6.22955009409e-07 -334979052.771 +UniRef50_C1DKJ3 Phospholipid glycerol acyltransferase 1.33185126148e-05 7.17368514652e-06 -2480742254.46 +UniRef50_S5QXV6 Maltose maltodextrin binding protein 4.55381029461e-05 1.49662323974e-05 -12342239299.5 +UniRef50_F0Y553 Expressed protein 1.80238616139e-06 1.95964807575e-06 63488564.6478 +UniRef50_B9KWV4 TRAP T family transporter, large inner membrane subunit DctM 6.3494666167e-05 1.21023550967e-05 -20747706633.7 +UniRef50_B0U620 Uracil DNA glycosylase 4.22517521247e-05 7.0304080696e-05 11325069285.0 +UniRef50_P26170 Bacteriochlorophyll synthase 33 kDa chain 2.04032909728e-05 3.03927998483e-06 -7010064316.23 +UniRef50_D3QCC1 Preprotein translocase subunit YajC 5.69370490703e-05 5.18537313347e-05 -2052197749.19 +UniRef50_Q6FFG0 2.85604591901e-06 5.21362805372e-05 19895035451.9 +UniRef50_UPI00034A058C hypothetical protein 9.53117149662e-08 1.4765715686e-07 21132497.2433 +UniRef50_T0T503 Purine nucleoside phosphorylase 4.11549997476e-05 1.73154365099e-05 -9624324223.4 +UniRef50_B1JPZ9 4 alpha L fucosyltransferase 3.71269019079e-05 8.87072848379e-06 -11407363953.5 +UniRef50_Q3B1T5 2.30385735401e-06 1.29744782966e-06 -406299875.014 +UniRef50_M9VFM2 2.15524649217e-06 5.31896826566e-05 20603228142.5 +UniRef50_Q82TC0 Shikimate kinase 1.09338540238e-07 2.53385884619e-07 58153680.5863 +UniRef50_A0A037ZNE7 3.70585659355e-08 2.04860647923e-08 -6690522.07897 +UniRef50_W0Z1T3 3.52420304268e-07 3.24823701201e-06 1169076740.58 +UniRef50_B9L1J9 Glucose 1 phosphate adenylyltransferase 7.55557345605e-08 1.89216434114e-07 45886219.1832 +UniRef50_A6UGW8 Replication protein C 6.71343246363e-07 2.68288280527e-07 -162718235.749 +UniRef50_X0VZY3 Marine sediment metagenome DNA, contig 3.34146686086e-07 4.45341773945e-07 44890821.4858 +UniRef50_Q9LM59 Serine hydroxymethyltransferase 6 3.44136896306e-08 3.23871969501e-08 -818119.962979 +UniRef50_S4VW07 9.36517494721e-08 2.90803191283e-07 79592456.3793 +UniRef50_Z0L1U0 1.17466241311e-06 6.5680157546e-07 -209066775.026 +UniRef50_F9EXE3 ABC superfamily ATP binding cassette transporter, ABC protein 7.65691660987e-07 3.35121404494e-05 13220143220.0 +UniRef50_V5CIF7 1.63649995166e-06 6.01329423573e-05 23615731631.2 +UniRef50_UPI0004721200 hypothetical protein, partial 2.85905847589e-05 1.5243830532e-05 -5388248464.49 +UniRef50_C0Y0T7 Outer membrane efflux protein OprC 1.85333083145e-06 7.10912580023e-05 27952200843.8 +UniRef50_R5IJ86 7.86499230762e-08 7.00435779071e-07 251022580.236 +UniRef50_UPI0003777D9D hypothetical protein 8.63280112709e-07 4.39392337897e-07 -171128696.38 +UniRef50_B5Z6I2 Dihydroorotate dehydrogenase 1.24001033475e-06 2.38168731617e-05 9114556572.48 +UniRef50_UPI00038229EA hypothetical protein 3.20161328594e-08 5.51067962041e-08 9321984.14656 +UniRef50_A3NUG3 Chorismate synthase 7.72970542494e-08 1.69391159645e-07 37179520.47 +UniRef50_A7X623 Oxygen regulatory protein NreC 0.000191920643873 7.45583850442e-05 -47380584086.1 +UniRef50_F0K7S4 RNA polymerase factor sigma 54 1.75244481727e-06 1.11433118879e-05 3791208275.31 +UniRef50_UPI000360F77D MULTISPECIES 5.047558275e-08 9.4472002404e-08 17761894.5111 +UniRef50_UPI0003710793 hypothetical protein 8.16869670835e-08 2.98703780256e-07 87612350.5737 +UniRef50_M4UM17 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic component 1.1490588321e-07 3.47515069336e-07 93907182.8748 +UniRef50_J7LCE3 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 4.91334432829e-08 2.38654599701e-07 76512016.5321 +UniRef50_I6U2S8 Bacitracin synthetase 4.72041947654e-05 2.35910958567e-05 -9532897794.75 +UniRef50_Q5HRM1 Putative TrmH family tRNA rRNA methyltransferase 7.21007724781e-05 2.64665943441e-05 -18423077707.0 +UniRef50_B9E7Z8 6.95629033494e-08 2.87531179674e-06 1132715258.67 +UniRef50_P57000 Glutamine tRNA ligase 2.48509410305e-06 1.2208501096e-05 3925458722.68 +UniRef50_I9WK52 Putative transcriptional regulator 8.51456544092e-08 1.27067839189e-07 16924500.4387 +UniRef50_UPI00029AF772 multidrug ABC transporter ATPase 4.86783439853e-08 9.5230203864e-07 364803974.242 +UniRef50_UPI00037E28CC hypothetical protein 3.89083575445e-08 1.95965088421e-07 63405729.5579 +UniRef50_A4WNG7 1.39834225467e-05 3.36863161818e-06 -4285321355.97 +UniRef50_D4LM41 Nicotinate phosphoribosyltransferase 7.91401467116e-06 1.80016746281e-05 4072512114.11 +UniRef50_UPI00036CD6B7 hypothetical protein 9.0346964645e-07 2.26747481763e-06 550665625.831 +UniRef50_V9VSG3 Membrane protein 3.6845904938e-08 4.30672761399e-07 158992734.752 +UniRef50_UPI0003C84C0F PREDICTED 2.52184894783e-08 7.09465849191e-08 18460993.2763 +UniRef50_U4V017 Putative ATPase 3.86884472306e-08 6.64978452407e-08 11226995.2364 +UniRef50_P29848 Cysteine synthase B 3.51775511621e-05 4.08884432719e-05 2305557225.25 +UniRef50_W1JGD7 Putative virulence factor 1.06762749124e-06 1.37088518217e-06 122428851.219 +UniRef50_A0A010CAY1 Transposase DDE domain protein 5.80194012131e-08 4.01875688407e-07 138819002.731 +UniRef50_M4XIX4 Segregation and condensation protein B 1.15793248112e-06 1.77901629643e-06 250739157.796 +UniRef50_Q46899 CRISPR system Cascade subunit CasC 2.55589136e-05 1.64827928474e-06 -9653016489.57 +UniRef50_D8JDE7 Patatin like phospholipase family protein 1.909709893e-06 6.53380607089e-05 25606803577.8 +UniRef50_UPI0002F963E4 hypothetical protein 3.87494576108e-08 2.27321488507e-06 902081113.04 +UniRef50_Q8ECQ4 50S ribosomal protein L3 glutamine methyltransferase 3.41275751966e-05 9.27533107508e-06 -10033155923.2 +UniRef50_O30992 Cell division protein FtsZ 1.43288102719e-05 6.00376854765e-06 -3360921503.83 +UniRef50_Q8CSE1 ABC transporter ATP binding protein 0.000199279445589 4.39782279374e-05 -62697007326.4 +UniRef50_UPI000375F7D3 hypothetical protein 9.33658091582e-08 3.03375255766e-07 84783390.7014 +UniRef50_A3V315 3.385428348e-08 1.48212097408e-08 -7683885.43059 +UniRef50_UPI0002F27B8E hypothetical protein 3.79342389799e-06 7.87116615847e-07 -1213683141.34 +UniRef50_A4WQP1 Transposase, IS4 family 2.58542675962e-05 2.87883786207e-06 -9275462923.88 +UniRef50_S4YCA7 3.98388373067e-07 5.84933959813e-08 -137219773.23 +UniRef50_I0JRX2 Oxidoreductase domain protein 0.000148029266812 2.20034071325e-05 -50878186064.0 +UniRef50_A0A023RY49 Amino acid transporter 5.68639067231e-06 0.000136865253765 52958516776.3 +UniRef50_UPI000375F92B hypothetical protein 3.1333447312e-07 1.45241268137e-06 459859850.732 +UniRef50_K9NRT8 GntR family transcriptional regulator 1.04598797416e-05 8.39023511855e-06 -835540931.721 +UniRef50_U5L6I9 Peptide ABC transporter permease 6.29083227261e-05 2.73441393692e-06 -24292945395.1 +UniRef50_K1CTK9 Exoribonuclease RNase R 5.22684215462e-06 2.11953477904e-06 -1254458118.47 +UniRef50_P0A1U3 2.2620912671e-05 6.79857449786e-06 -6387672082.4 +UniRef50_P0A1U5 4.88689229256e-05 1.21363029532e-05 -14829409442.8 +UniRef50_F4D676 P type DNA transfer ATPase VirB11 1.34336650837e-06 1.69894981947e-05 6316535361.39 +UniRef50_G6KV35 Leucyl tRNA synthetase 7.09242505753e-05 1.80765180825e-05 -21335278121.9 +UniRef50_UPI00036AAC2D hypothetical protein 7.25934593951e-06 1.6196406101e-05 3608000857.25 +UniRef50_UPI000363377B preprotein translocase subunit TatA 1.67500209846e-06 9.72262109357e-07 -283704757.19 +UniRef50_B4U203 DNA polymerase III subunit delta 6.16056940915e-05 5.69712387738e-05 -1870986482.92 +UniRef50_U6LS15 2.09773158479e-07 2.58965322209e-07 19859480.1535 +UniRef50_P26281 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 7.10753886239e-06 5.82121212928e-05 20631547050.9 +UniRef50_G2JD06 Nitrate nitrite transporter 3.91686871608e-06 4.96913304419e-05 18479711914.5 +UniRef50_W5XIV0 GTPase Obg 6.00124661948e-08 1.80507408786e-06 704502790.982 +UniRef50_D9SXB9 RNA methyltransferase, TrmH family, group 3 8.13453900834e-06 5.62217853028e-06 -1014270755.12 +UniRef50_UPI00036CFE43 30S ribosomal protein S4 1.15099667491e-07 3.60512278245e-07 99076082.5128 +UniRef50_UPI0003B544A3 sugar ABC transporter permease, partial 1.16524994308e-06 7.76142098383e-07 -157087611.794 +UniRef50_UPI0003820942 hypothetical protein 9.33889904595e-08 4.24841504538e-07 133811447.313 +UniRef50_A4X3E5 Peptide methionine sulfoxide reductase MsrA 8.95770439919e-07 7.41605483327e-07 -62238284.7929 +UniRef50_P0CD78 Phosphoglycerate kinase 1.80786667541e-07 1.75598438896e-07 -2094551.57071 +UniRef50_A2SKF9 Transaldolase 3.98596981438e-06 4.26021204917e-06 110714955.515 +UniRef50_P28822 Dihydropteroate synthase 1.62486569322e-06 6.90670643479e-05 27227243205.7 +UniRef50_A3M7P6 Ribosomal protein alanine acetyltransferase 1.15556935363e-05 4.09314126729e-05 11859338296.1 +UniRef50_P75793 Putative formate acetyltransferase 3 1.15775014527e-05 8.78918765406e-07 -4319149117.24 +UniRef50_B3ENQ2 Nucleoside diphosphate kinase 5.80555086048e-07 1.8373728785e-07 -160200214.635 +UniRef50_E6MZF0 Type III restriction enzyme, res subunit 4.89817459631e-07 3.17073546965e-05 12602902864.8 +UniRef50_F0Y8H7 7.63187752143e-07 5.73782623539e-07 -76465174.6797 +UniRef50_Q4KCW6 Putrescine binding periplasmic protein 4.4131905324e-06 3.33087785229e-06 -436942910.431 +UniRef50_UPI000311B789 hypothetical protein 1.25671681966e-06 9.28300095699e-08 -469875387.731 +UniRef50_B9KTG2 MCPG protein 2.00485808078e-05 1.04179859644e-05 -3887989318.97 +UniRef50_A6V3S1 Aminoglycoside response regulator 1.13790648718e-05 8.40350550291e-06 -1201269831.44 +UniRef50_S4ZTI3 Transcriptional regulator, ArsR family 9.91548164412e-05 1.00232567726e-05 -35983504405.4 +UniRef50_U3T6X9 3.13123746508e-06 6.5888410654e-05 25335840933.5 +UniRef50_Q2FIS2 Lipoteichoic acid synthase 0.000180724999167 5.16016299855e-05 -52128688660.7 +UniRef50_UPI000429916D auxin binding protein 1.56945894524e-06 5.92073176546e-07 -394582628.694 +UniRef50_I7E3Y1 Dimethylglycine dehydrogenase DmgdH 8.41124977796e-05 1.76503145128e-05 -26831598967.5 +UniRef50_Q5HG72 Nuclease SbcCD subunit C 8.6932971381e-05 1.80414432606e-05 -27812355296.3 +UniRef50_D3QDA5 Transcriptional regulator in cluster with Zn dependent hydrolase 0.00025965632517 3.06885720355e-05 -92437091690.5 +UniRef50_J3C3Q8 ABC type transport system, involved in lipoprotein release, permease component 1.24131949863e-07 4.17031886517e-07 118247298.714 +UniRef50_Q2SFK9 Fatty acid desaturase 3.130537226e-06 4.75427407142e-05 17929751547.2 +UniRef50_T1XM99 IS1272 transposase, putative 0.000228006144587 1.68799914101e-05 -85234218846.8 +UniRef50_Q8DWA7 5.36707854546e-05 1.25727906036e-05 -16591764850.5 +UniRef50_O86428 Branched chain amino acid aminotransferase 1.50456749969e-05 0.000119892711355 42328035195.5 +UniRef50_T0JJ14 4.95164365017e-07 1.09893909305e-06 243751266.856 +UniRef50_UPI0003C7D7D4 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase, partial 3.32468007405e-05 2.48367509973e-06 -12419451327.2 +UniRef50_J9NXA3 3.23522183442e-07 1.5131295134e-07 -69522980.2445 +UniRef50_Q28KF2 Beta lactamase like protein 8.27968992086e-06 7.10101187567e-06 -475846790.849 +UniRef50_U3TA62 Protein MurJ homolog 7.67768112925e-07 9.0091469018e-05 36061074180.5 +UniRef50_UPI0003B2ED70 hypothetical protein 3.02872276979e-06 1.055617237e-06 -796566916.315 +UniRef50_UPI00037CE74D hypothetical protein 1.67380120109e-06 4.95960199955e-06 1326518103.65 +UniRef50_A1VKF6 Non canonical purine NTP pyrophosphatase 1.00766131415e-06 1.84583176897e-07 -332286744.314 +UniRef50_M9S4Z2 Two component response regulator 3.50680113038e-05 8.54724191782e-06 -10706760047.6 +UniRef50_X0TYQ9 Marine sediment metagenome DNA, contig 6.20870052873e-07 4.64887789744e-06 1626156196.07 +UniRef50_Q1D759 50S ribosomal protein L18 2.09067900516e-05 2.09383972068e-05 12760196.4177 +UniRef50_Q8NW76 0.000163248401662 4.3390240362e-05 -48388210541.8 +UniRef50_Q2YKR5 sn glycerol 3 phosphate binding periplasmic protein UgpB 0.000113020420264 5.12885430337e-05 -24921916373.2 +UniRef50_I9IAK6 3.03430917226e-07 9.66231899287e-07 267580889.941 +UniRef50_D7GF04 Methyltransferase 1.73689872173e-06 8.52799974273e-05 33727374136.6 +UniRef50_E2BF63 6.72498732409e-08 4.43825240331e-07 152028096.794 +UniRef50_UPI000288A745 acetyltransferase, putative 1.39910219213e-06 6.70255690994e-07 -294244276.461 +UniRef50_G4BY47 6.47740175785e-07 1.38814252332e-06 298909513.458 +UniRef50_Q2FVV8 Transcriptional regulator, putative 0.00026366630511 2.77394652152e-05 -95246560413.5 +UniRef50_A6LU14 1.30768818311e-06 2.66526098055e-05 10232055876.1 +UniRef50_UPI00034519AC hypothetical protein 4.36631388227e-08 8.24783063907e-07 315347699.176 +UniRef50_Q0BYA7 DNA directed RNA polymerase subunit beta 1.15219613476e-07 4.63090441765e-08 -27820042.454 +UniRef50_A4WZ35 2.77714744825e-05 0.000126064353227 39682041338.4 +UniRef50_L7WUA4 0.000184286427331 1.4207531913e-05 -68662937183.0 +UniRef50_A3ZLI5 ISxac3 transposase 1.24124491925e-06 2.03265995497e-06 319503961.675 +UniRef50_A5EBB8 3.60331763738e-06 8.08771114885e-07 -1128192724.08 +UniRef50_UPI0003B3E24D malto oligosyltrehalose synthase 5.0609168511e-08 3.16133170435e-08 -7668858.34274 +UniRef50_X5WY92 1.2126006511e-06 5.57941274668e-07 -264294023.84 +UniRef50_Q6GH07 Protein msa 1.57833778173e-05 4.56675317307e-06 -4528289012.33 +UniRef50_B9JUA7 1.26336048397e-06 2.67411298706e-07 -402076907.762 +UniRef50_Q09DS6 2.12191796861e-07 2.18025664112e-07 2355203.79883 +UniRef50_A6TFR2 Glycerol kinase 2.14436358673e-07 1.2704193748e-06 426313301.98 +UniRef50_I0EP78 Flagellar hook protein FlgE 6.31599535162e-07 5.36453959754e-05 21402320175.3 +UniRef50_UPI000477B830 hypothetical protein 5.75087152162e-08 1.03431977904e-06 394350613.285 +UniRef50_B7V0M2 Carbonic anhydrase 2.09662629996e-05 1.14413722499e-05 -3845315279.21 +UniRef50_M4WR94 3.71033858129e-05 4.49720870858e-06 -13163513819.8 +UniRef50_P0CL53 S glutathione dehydrogenase 0.000130080083911 3.51594955543e-05 -38320606326.2 +UniRef50_M4Z4L3 4.17673142503e-06 7.79680827666e-07 -1371431012.65 +UniRef50_Q87TS4 Ribosomal RNA small subunit methyltransferase G 7.79932963265e-07 5.37886474976e-07 -97717137.5667 +UniRef50_A6QFI0 UPF0344 protein NWMN_0840 0.000289202551681 9.37519911225e-06 -1.129697361e+11 +UniRef50_A8ZR93 Lytic transglycosylase catalytic 2.97601723133e-07 8.84723989154e-07 237028463.593 +UniRef50_A3PHM8 DHC, diheme cytochrome c 9.13202011268e-05 4.7889195437e-06 -34933740233.3 +UniRef50_UPI0003B2EC71 phosphoadenosine phosphosulfate reductase 6.73205937687e-08 1.25100918125e-07 23326625.987 +UniRef50_P13669 Mannosyl D glycerate transport metabolism system repressor MngR 5.4728774589e-05 1.14997848139e-05 -17452073651.6 +UniRef50_UPI00030F326B sulfate transporter 1.80490136582e-06 6.12976705108e-07 -481194612.089 +UniRef50_N2UC59 Sodium symporter family protein 6.92441652498e-06 2.94825329643e-06 -1605225888.38 +UniRef50_P77704 3.44755244063e-05 1.4625824099e-05 -8013567597.27 +UniRef50_UPI0003C17542 PREDICTED 1.81867901376e-08 3.1535644911e-08 5389096.48089 +UniRef50_Q9CGB9 5.16425235081e-05 1.32289030539e-05 -15508049965.5 +UniRef50_Q4JXF0 Phosphoribosylformylglycinamidine synthase 2 1.73257023036e-07 6.01630676691e-08 -45657417.6006 +UniRef50_S5CWK9 AraC type DNA binding domain containing protein 1.48293832789e-05 8.24484400211e-05 27298642986.0 +UniRef50_D3QCA4 Dihydrofolate synthase Folylpolyglutamate synthase 0.000201196334422 4.12168169721e-05 -64585694364.0 +UniRef50_T2DYR1 Tryptophan tyrosine permease family protein 1.4251671524e-05 7.06107667681e-06 -2902931378.33 +UniRef50_UPI00039563BC PREDICTED 5.85183578897e-08 3.66242968249e-07 124232201.408 +UniRef50_Q4FVL5 Translation initiation factor IF 2 4.34058247019e-07 9.02234339293e-05 36249072802.5 +UniRef50_UPI0003C10D8C 6.76318873025e-07 1.63179302655e-06 385736640.764 +UniRef50_UPI00016A626E Rh like protein ammonium transporter, partial 2.75204463811e-06 3.13272223095e-06 153684215.669 +UniRef50_A6LYM0 Antibiotic transport associated permease SpaG MutG 5.31745078117e-06 2.57384886395e-05 8244223577.71 +UniRef50_A3DGF9 Urease subunit beta 1.80321748928e-07 3.1768406545e-07 55454852.8051 +UniRef50_UPI0003B4EA64 isoleucyl tRNA synthase 2.00830835284e-08 3.04566037397e-08 4187917.40671 +UniRef50_F8J5A0 2.93149173819e-05 4.46333078449e-06 -10032890472.6 +UniRef50_T1CKH0 Coproporphyrinogen dehydrogenase 4.47468511666e-07 5.6907307202e-07 49093253.2707 +UniRef50_UPI0003B37585 ABC transporter 7.69810493281e-08 1.32400392425e-07 22373468.88 +UniRef50_UPI000478F27B ATP dependent DNA helicase Rep 6.29530469794e-08 8.40662190226e-08 8523646.6416 +UniRef50_UPI00047A6B84 PadR family transcriptional regulator 2.25093244406e-07 2.39900369951e-07 5977818.28638 +UniRef50_Q5N127 Transaldolase 1.21508365511e-06 5.5793832765e-05 22034110772.2 +UniRef50_G8PPN5 UbiD family decarboxylase 1.46189227519e-05 1.19884995349e-06 -5417848071.53 +UniRef50_L9MQV1 FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate pyruvate transaminase multi domain protein 2.94357056807e-06 5.28564095441e-05 20150425594.0 +UniRef50_P0A0A1 Pyruvate dehydrogenase E1 component subunit beta 0.00027235855687 8.3852322454e-05 -76102280065.4 +UniRef50_M7E6J0 Endonuclease 3.33752629278e-05 2.93235882669e-05 -1635710780.24 +UniRef50_UPI00046FABF2 chromosome partitioning protein ParB 2.83665935138e-07 6.49798958965e-06 2508798717.65 +UniRef50_UPI000265461A PREDICTED 5.87021771306e-07 6.7981617608e-07 37462239.9227 +UniRef50_UPI00034878D9 hypothetical protein 4.03583456268e-08 9.79875988216e-08 23265636.7052 +UniRef50_D2ZS12 3.64633829529e-05 6.09482152274e-06 -12260160913.5 +UniRef50_I6U1N8 Transaminase 5.73008636484e-05 2.12094796351e-05 -14570534617.3 +UniRef50_UPI000368E802 hypothetical protein 2.51454239698e-07 1.10367353569e-06 344051387.699 +UniRef50_O27494 Phosphoribosylamine glycine ligase 4.98736372117e-05 1.83601707575e-05 -12722373121.3 +UniRef50_Q3IV08 0.000153764965306 5.0293378544e-05 -41772749315.0 +UniRef50_A3PH60 2.35191963759e-05 8.86585562473e-06 -5915733477.97 +UniRef50_Q3IV03 0.000159279989687 2.91149116383e-05 -52549239313.5 +UniRef50_Q3IV02 5.32889663779e-05 0.000162254832996 43990857515.2 +UniRef50_A2BMY4 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.25650800834e-07 2.5614875124e-07 -108801284.583 +UniRef50_F8IMM6 Glycosyl transferase 2.23678625035e-06 2.15559638834e-06 -32777343.6051 +UniRef50_N1M6P3 1.04187818542e-06 5.51472896438e-06 1805744747.52 +UniRef50_Q46829 6 phospho beta glucosidase BglA 0.000136640566702 0.000120670958378 -6447126849.53 +UniRef50_UPI0003F4B23B oligo 1,6 glucosidase 1.52507641215e-07 5.32197915619e-08 -40083723.3039 +UniRef50_UPI0004675CB0 hypothetical protein 5.45412939885e-07 4.50865198773e-06 1600008238.03 +UniRef50_UPI000375AE50 hypothetical protein 2.54819395972e-06 3.80319130444e-07 -875197671.396 +UniRef50_A6LW27 Integral membrane sensor signal transduction histidine kinase 3.55358735704e-06 6.63328099287e-06 1243310112.88 +UniRef50_P77689 FeS cluster assembly protein SufD 2.73507311466e-05 2.0250288357e-06 -10224296804.2 +UniRef50_A7HC61 LexA repressor 2.02832151921e-07 9.69431146661e-08 -42748703.7445 +UniRef50_UPI0004675E29 transcriptional regulator 9.96341376088e-08 1.65405843639e-07 26552844.834 +UniRef50_P22045 Prostaglandin F synthase 2.0691278754e-07 1.564887201e-05 6234108432.27 +UniRef50_W1N7X0 9.03548969582e-08 7.02850365767e-08 -8102448.92089 +UniRef50_UPI0002631758 branched chain alpha keto acid dehydrogenase subunit E2, partial 1.24809066412e-07 1.79047083301e-06 672448095.145 +UniRef50_UPI0002194DF2 fructose bisphosphate aldolase 6.75158688524e-07 1.57608002341e-06 363712998.441 +UniRef50_UPI0003A0B379 MULTISPECIES 1.59667648836e-07 1.76370728167e-07 6743238.09576 +UniRef50_E2XTA7 3.93295952549e-06 6.8527932143e-06 1178772690.56 +UniRef50_UPI0003B324DC flagellar protein FlgJ 3.70782152816e-07 3.52032581246e-07 -7569432.12593 +UniRef50_P0AEE1 Protein DcrB 1.02445001406e-05 3.44727671428e-06 -2744122508.52 +UniRef50_U7G0Z6 1.3034313471e-07 1.06968708503e-07 -9436542.69623 +UniRef50_Q6D2R7 NADH quinone oxidoreductase subunit A 7.89799848317e-05 8.9377202969e-06 -28276921707.9 +UniRef50_A6LW63 PAS PAC sensor signal transduction histidine kinase 4.6856308741e-06 3.00764331946e-06 -677424167.031 +UniRef50_UPI0003B301E5 molybdopterin biosynthesis protein MoeB 1.69975706373e-07 1.31031838172e-07 -15722117.4877 +UniRef50_UPI00034D4353 hypothetical protein 5.78149379656e-08 5.66294015901e-08 -478615.582957 +UniRef50_A8HYF7 Lon protease 0.000111072949751 2.41915861826e-05 -35075072626.8 +UniRef50_W5X361 Dienelactone hydrolase 4.43675117782e-07 3.61936935467e-07 -32998707.2409 +UniRef50_M2PIC6 6.96815720682e-07 4.11224001447e-06 1378848699.37 +UniRef50_UPI0003B51C8D 16S rRNA methyltransferase 1.05152665753e-07 1.71144974622e-07 26641904.9071 +UniRef50_A0A031MCT4 4.0036943105e-07 1.10894076056e-06 286058940.871 +UniRef50_Q8YUR4 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.42216898055e-07 1.4829435575e-07 2453544.25026 +UniRef50_C5AMM3 2.28628747941e-06 6.5227972966e-07 -659668980.104 +UniRef50_UPI0003776EC3 hypothetical protein 1.77610244321e-06 2.53321278833e-07 -614765442.686 +UniRef50_P0AAV5 1.90242462631e-05 1.37766548012e-05 -2118517068.36 +UniRef50_UPI000395E276 LysR family transcriptional regulator 1.46936121625e-07 1.17722083781e-07 -11794065.5742 +UniRef50_F2IZR6 Multiple antibiotic resistance related protein 2.65442287033e-05 3.50871332905e-06 -9299720234.13 +UniRef50_A5UNV0 2.87233501005e-05 1.80400463203e-05 -4312980834.95 +UniRef50_A5UNV7 5.42790877622e-05 1.59882599776e-05 -15458477057.9 +UniRef50_A5UNV5 9.80444271529e-05 4.88126785439e-06 -37611110649.3 +UniRef50_F0RJD3 1.07750520127e-06 9.30458482624e-05 37128748672.2 +UniRef50_A5UNV8 3.00616083539e-05 9.49653838629e-06 -8302371107.71 +UniRef50_UPI00037EDF68 hypothetical protein, partial 5.76687252304e-07 5.32863231909e-07 -17692294.8147 +UniRef50_UPI0002D3C59D hypothetical protein 1.33156812096e-05 5.73344948768e-06 -3061039990.59 +UniRef50_UPI0003C02B7D 9.63208605814e-07 7.31032179182e-07 -93732472.5565 +UniRef50_I0C596 0.000202072204813 5.45577216337e-05 -59553407065.6 +UniRef50_P37758 Nitrate nitrite transporter NarU 8.33438456861e-05 2.16513945137e-05 -24905999589.8 +UniRef50_R6IJD9 7.40681185352e-07 2.39769990679e-06 668958791.752 +UniRef50_M5ABJ7 Glucuronide carrier protein 1.77208115904e-06 4.95765368167e-05 19299245375.7 +UniRef50_V4QZ84 Acyl homoserine lactone synthase 7.09270963142e-07 2.03083603901e-06 533532038.556 +UniRef50_P21911 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.44462913503e-07 5.48653476874e-07 122805463.271 +UniRef50_UPI0003B43349 cell division protein FtsZ 1.27285567621e-07 2.25802472034e-07 39772483.2499 +UniRef50_F4CS06 Plasmid pRiA4b ORF 3 family protein 2.65941673947e-06 3.04960475146e-07 -950522886.333 +UniRef50_UPI0003B37305 damage inducible protein 2.61719226007e-07 6.35754604664e-08 -79993069.6463 +UniRef50_G5JU10 Beta lactamase 4.43754564099e-05 3.08141360359e-05 -5474871451.1 +UniRef50_F8IME6 9.05793374031e-05 7.51148010347e-06 -33535513349.1 +UniRef50_M9VFD9 Osmosensitive K+ channel histidine kinase KdpD 2.45182008446e-06 4.94545778568e-05 18975590101.4 +UniRef50_C5XM13 7.49407395544e-06 4.00823450487e-06 -1407276162.26 +UniRef50_Q9RR86 BrkB protein, putative 1.87060606053e-06 0.000342890663283 1.37673981887e+11 +UniRef50_A3VLJ6 4.7719809492e-06 2.54901036153e-07 -1823600591.7 +UniRef50_F3BY18 2.28318138423e-06 1.59630134707e-05 5522716083.74 +UniRef50_A4X0R2 1.59010434035e-06 2.04158501804e-07 -559523342.491 +UniRef50_E2RL98 1.47268616834e-07 4.4154153345e-07 118801587.573 +UniRef50_D1AC29 6.53362091906e-08 7.73342287819e-06 3095700686.28 +UniRef50_UPI000379F62F hypothetical protein 2.9866656003e-06 6.15537706897e-06 1279247704.36 +UniRef50_Q1BYF5 Undecaprenyl diphosphatase 1 5.49105265091e-06 4.38135360418e-05 15471256814.7 +UniRef50_UPI000377866C hypothetical protein 7.52066092071e-08 4.14762725698e-07 137082971.05 +UniRef50_P41775 Cytochrome c oxidase subunit 3 5.00812724938e-07 9.41640014919e-08 -164169079.796 +UniRef50_P39410 Putative kinase YjjJ 2.23067840763e-05 6.60017290752e-06 -6340951670.64 +UniRef50_C5N358 Hydrolase, alpha beta domain protein 5.82963178402e-05 3.13047566386e-05 -10896824480.8 +UniRef50_UPI00047026FA hypothetical protein 1.56940472848e-07 4.93060925209e-07 135695951.28 +UniRef50_Q966L6 Protein LET 504 1.81714790342e-07 2.90095512934e-08 -61648978.9081 +UniRef50_E8U6I4 Agmatine deiminase 4.95573374271e-06 0.000385572948963 1.53659840483e+11 +UniRef50_P0AAR2 Hha toxicity modulator TomB 6.08032218492e-06 5.51993841485e-06 -226233804.659 +UniRef50_Q2NEH1 Glutamyl tRNA amidotransferase subunit D 2.13125651245e-05 5.04942135218e-06 -6565630712.09 +UniRef50_G2TGN8 Two component transcriptional regulator 6.59194591949e-06 2.92783470225e-05 9158778518.73 +UniRef50_E3F3T4 1.07515869185e-07 1.242524235e-07 6756752.35758 +UniRef50_X2N7K6 Formate acetyltransferase 2.52833398727e-05 7.1441402613e-06 -7323017476.13 +UniRef50_UPI0003B58C95 multidrug ABC transporter 7.1695294091e-07 5.65920786557e-07 -60973534.0853 +UniRef50_K1Z738 2.03233561387e-07 2.71320891048e-06 1013307849.29 +UniRef50_Q5KUG7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.000294520290361 0.000131984826963 -65617561108.2 +UniRef50_Q46BI1 Acetate kinase 2.89521512523e-06 6.38616684389e-05 24612905345.3 +UniRef50_P61607 LexA repressor 2.97750009218e-07 1.42987522354e-07 -62479515.0963 +UniRef50_D3QDU9 Flavohemoprotein 0.000196931207744 7.82813611027e-05 -47900399086.3 +UniRef50_D4MG24 Transcriptional regulator, GntR family 5.0247159323e-05 2.45699003735e-05 -10366224533.3 +UniRef50_Q02R92 DNA mismatch repair protein MutS 6.11512581595e-06 1.53992808546e-06 -1847063467.79 +UniRef50_UPI0003F9F77C D ribose transporter ATP binding protein 3.09489530768e-07 9.48403315576e-08 -86656515.763 +UniRef50_Q8KFI9 1 deoxy D xylulose 5 phosphate synthase 2.62120232771e-08 1.02190534174e-06 401973611.195 +UniRef50_A5WDL1 Peptidoglycan glycosyltransferase 1.28251185346e-06 4.59016966253e-05 18013312431.3 +UniRef50_P76052 p aminobenzoyl glutamate hydrolase subunit B 1.83645087652e-05 8.96748700845e-06 -3793692997.62 +UniRef50_X5K0B8 Hydrolase, haloacid dehalogenase like family 3.87407004267e-06 1.63530484638e-05 5037916722.88 +UniRef50_V9VVE0 Gene transfer agent protein 4.27054470096e-05 7.3988869109e-06 -14253691572.1 +UniRef50_Q9CH00 Ribonuclease R 1 4.76824406995e-07 2.41957351765e-05 9575615341.41 +UniRef50_Q1AVY9 Carbamoyl phosphate synthase large chain 1.74263682928e-07 1.5494813862e-07 -7797922.26552 +UniRef50_O33812 9.53393811414e-05 3.86583175167e-05 -22882840940.2 +UniRef50_Q2L0A6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 9.31242206544e-08 1.24614551712e-07 12713033.0778 +UniRef50_A0LK05 2 dehydro 3 deoxyphosphooctonate aldolase 2.27401198102e-06 3.12148464555e-05 11683770021.3 +UniRef50_UPI0003811395 hypothetical protein 1.5088151062e-08 3.59373027195e-08 8417058.37199 +UniRef50_C5BMI1 Alkaline phosphatase like protein 1.4521173139e-07 1.44685133896e-07 -212593.870406 +UniRef50_UPI0004713F18 2 hydroxy acid oxidase 2.58571442446e-08 1.39020477297e-07 45685426.2233 +UniRef50_UPI000174498F hypothetical protein 4.91817154362e-08 4.67813347424e-06 1868764628.65 +UniRef50_P0AA48 Low affinity putrescine importer PlaP 2.98804690311e-05 7.71712965479e-05 19091887392.2 +UniRef50_UPI0004575852 PREDICTED 2.62061346541e-07 6.00618934063e-08 -81549658.0426 +UniRef50_UPI00036CD191 hypothetical protein 1.1193928794e-06 1.06409936877e-06 -22322668.769 +UniRef50_S4NIZ2 1.93173714911e-06 1.76071780584e-06 -69042607.5214 +UniRef50_UPI00036F2A19 hypothetical protein 1.47837305029e-06 4.63322216062e-07 -409788477.853 +UniRef50_C5WG14 Two component system histidine kinase 5.70253580177e-05 2.52506789771e-05 -12827827847.8 +UniRef50_H1FIN1 UPF0047 protein yjbQ 1.85040215336e-07 2.43758145819e-07 23705149.086 +UniRef50_T2END3 1.58086830529e-05 6.32418901693e-06 -3829006630.15 +UniRef50_Q6G082 Ribonuclease 3 1.24015136143e-07 1.00536314289e-07 -9478688.5 +UniRef50_R4ZTI0 4.59605628995e-06 1.03559335537e-06 -1437402578.48 +UniRef50_UPI00037740DE hypothetical protein 1.0601998134e-05 8.70423298282e-06 -766151079.729 +UniRef50_A1U1Z4 Glyceraldehyde 3 phosphate dehydrogenase, type I 4.49277468427e-06 7.47387965536e-05 28359181044.3 +UniRef50_A9CJZ7 Ring hydroxylating dioxygenase, alpha subunit 2.73621293444e-05 1.31599437598e-05 -5733596600.92 +UniRef50_B9JQX1 Methionyl tRNA formyltransferase 1.4316480394e-05 1.91209035328e-07 -5702545384.08 +UniRef50_UPI000471E6E8 phosphoenolpyruvate protein phosphotransferase, partial 3.38525803765e-08 1.58695280669e-06 627005620.044 +UniRef50_Q8YBF1 Respiratory nitrate reductase 1 alpha chain 1.37673749167e-05 4.32457356817e-06 -3812174780.6 +UniRef50_T1BJ38 Cysteine desulfurase activator complex subunit SufB 5.39266585426e-07 1.18777381046e-06 261810324.825 +UniRef50_A5CSL4 tRNA dimethylallyltransferase 4.82717611123e-08 1.67596101918e-07 48172700.6577 +UniRef50_UPI0003F913CD hypothetical protein 5.48414557777e-07 1.37381098193e-07 -165939251.582 +UniRef50_D4H9Q4 Hydrolase, P loop family 1.88115941288e-06 2.61631902662e-05 9802953829.5 +UniRef50_F4ALX4 4.92851437283e-07 2.18202381571e-07 -110879194.114 +UniRef50_UPI00036E3CC6 hypothetical protein 8.41164703013e-07 7.26797543879e-07 -46171425.5853 +UniRef50_UPI00035E6B92 transcriptional regulator 2.43289991114e-07 1.87278587453e-07 -22612490.9952 +UniRef50_D3SBH7 TRAP transporter, 4TM 12TM fusion protein 2.29904214979e-05 4.87298686803e-06 -7314230686.01 +UniRef50_G7M624 Aryl alcohol dehydrogenase ) 4.70454886268e-06 3.75827733933e-06 -382021426.034 +UniRef50_R0X4D2 6.03455780612e-06 5.57529779188e-06 -185408903.503 +UniRef50_P36881 Putative phosphotransferase enzyme IIA component YadI 2.58552047156e-06 4.04543431768e-06 589385134.836 +UniRef50_UPI00036FCC75 MULTISPECIES 1.80703048317e-08 3.33633624269e-07 127396784.454 +UniRef50_Q3J385 2.03284515019e-05 3.12592202392e-06 -6944872249.04 +UniRef50_Q7VJ82 Bifunctional DNA directed RNA polymerase subunit beta beta 2.3719071078e-08 1.70375022228e-05 6868673040.94 +UniRef50_D9UIB7 Predicted protein 9.05477073264e-08 6.26399583813e-07 216329978.18 +UniRef50_Q9KPG5 UDP N acetylmuramoylalanine D glutamate ligase 2.90066441263e-05 3.93770134503e-06 -10120639831.3 +UniRef50_E6MXZ0 TonB dependent receptor family protein 1.90730608132e-06 3.01469983085e-05 11400710292.1 +UniRef50_UPI00047DE0AF hypothetical protein 1.32339094595e-08 4.57882141793e-07 179509947.84 +UniRef50_UPI00030CFC56 hypothetical protein 4.51741230956e-07 6.87548365251e-07 95198233.7938 +UniRef50_I7GUS8 1.29436364315e-06 6.78139646627e-05 26854779218.9 +UniRef50_G7U596 Metal binding protein 1.48616531043e-06 3.41042366722e-05 13168315677.5 +UniRef50_UPI0003B7B946 polyvinylalcohol dehydrogenase, partial 3.35797499055e-07 1.4815281276e-05 5845545283.98 +UniRef50_A6LQD9 ABC type sugar transport system periplasmic component like protein 9.83036429352e-07 2.01469412853e-05 7736703557.88 +UniRef50_UPI0003B45615 thioesterase 1.75349542967e-07 4.18046653071e-07 97979801.5774 +UniRef50_Q5LSN8 Polyphosphate kinase 2, putative 6.68041147604e-05 1.97688909845e-05 -18988697025.4 +UniRef50_Q71X09 Methionine import ATP binding protein MetN 2 0.000167797351048 6.08480506723e-05 -43176744977.3 +UniRef50_Q6F9B4 1.76946557275e-06 5.00790138682e-05 19503157471.7 +UniRef50_Q8CT75 0.000111303634878 5.75541861743e-05 -21699312021.6 +UniRef50_P74038 Ribosomal RNA small subunit methyltransferase I 3.19758083414e-07 3.69930940437e-07 20255398.0704 +UniRef50_UPI000466458A DNA gyrase subunit B 1.37382358216e-07 1.63970136493e-07 10733812.3592 +UniRef50_O26310 DNA polymerase PolB subunit 2 1.39160805613e-05 7.63520081072e-06 -2535668230.37 +UniRef50_UPI0003C19B5B 1.41493308036e-07 2.04089604829e-07 25270893.1583 +UniRef50_UPI00035B52D5 hypothetical protein 1.62168177859e-08 2.16345178519e-08 2187191.9993 +UniRef50_A0A024EA09 1.79908605589e-06 4.18531149599e-07 -557346956.983 +UniRef50_G7LZT7 1.07182521116e-05 1.52511516917e-05 1829987185.42 +UniRef50_B1L5U5 Inosine 5 monophosphate dehydrogenase 2.54568501145e-07 4.69966367946e-08 -83799308.8313 +UniRef50_L1K6E3 1.17968006452e-05 1.23077783314e-06 -4265633068.93 +UniRef50_UPI000455F431 GroES like protein 5.47771392884e-08 4.56625864528e-07 162231261.618 +UniRef50_UPI000476EB30 hypothetical protein 1.45388363124e-07 1.44258233517e-07 -456247.190596 +UniRef50_K0HYU8 M13 family metallopeptidase 6.04622512861e-07 5.13701151942e-05 20494652358.1 +UniRef50_U7NU39 9.86552238538e-07 1.21799384922e-06 93435818.3403 +UniRef50_A8EQW9 Glutamate tRNA ligase 1 3.98890354539e-08 7.81350416051e-05 31527971427.6 +UniRef50_Q899J9 Methyl accepting chemotaxis protein 4.33924224537e-06 1.50575952633e-05 4327130642.31 +UniRef50_M5RGX7 9.7789166152e-06 2.32774572528e-06 -3008129124.41 +UniRef50_UPI0003B60AC8 glycine betaine ABC transporter permease 4.51321383489e-07 1.41719597858e-07 -124990040.1 +UniRef50_F0XWS6 1.1056035514e-07 1.85317500743e-06 703514919.416 +UniRef50_UPI0003EF099D cytochrome d terminal oxidase subunit 1 9.25375555611e-08 1.25964721614e-07 13494957.133 +UniRef50_B4U5I2 Cationic amino acid transporter APC superfamily 7.10541293312e-05 4.15860430499e-05 -11896628045.8 +UniRef50_D7UQD7 Nitrogenase reductase 5.11223512481e-06 4.59303523303e-07 -1878445585.42 +UniRef50_A6LZK3 Histidine kinase 1.28834808487e-06 1.98130399334e-05 7478645422.77 +UniRef50_UPI0003F7F30F alpha amylase 2.64116661265e-07 1.58503773781e-07 -42637218.6932 +UniRef50_Q1IYB4 ATPase AAA 2 1.67731323782e-06 0.000196485216957 78646341293.2 +UniRef50_UPI0003646AB7 hypothetical protein 1.90261930325e-07 6.83758730463e-07 199230714.102 +UniRef50_A7HQ39 Two component transcriptional regulator, winged helix family 6.3573841682e-05 8.7734414176e-06 -22123594063.3 +UniRef50_Q9RZT2 Chromosome partitioning ATPase, putative, ParA family 1.09416228655e-06 0.000193749325695 77777253612.5 +UniRef50_UPI0003724B15 hypothetical protein 8.27464267755e-07 2.76826928114e-07 -222299051.093 +UniRef50_A8LMF7 Glutamate racemase 1.82214234583e-05 8.34012586967e-06 -3989201093.69 +UniRef50_UPI00045E66ED branched chain amino acid ABC transporter substrate binding protein 1.40867393682e-06 3.78025807639e-07 -416085297.225 +UniRef50_P39398 L galactonate transporter 4.67330142122e-05 5.70364215017e-06 -16564060988.4 +UniRef50_Q3JG68 1.29740521982e-06 1.86745122691e-08 -516239278.428 +UniRef50_P49988 RNA polymerase sigma 54 factor 4.3980907313e-06 6.18918254377e-06 723085743.862 +UniRef50_F2ZMW7 1.6764429749e-07 2.33164659022e-07 26451373.9757 +UniRef50_I7FLW8 General substrate transporter 1.30768818311e-06 3.14693467617e-05 12176631693.4 +UniRef50_UPI00035EEFC1 hypothetical protein 4.25659903294e-08 7.22230953345e-08 11972937.2242 +UniRef50_M9VER6 Tat pathway signal sequence 1.44446169206e-06 4.99899998622e-05 19598429480.0 +UniRef50_T0T7Z3 4.06131978331e-05 1.99754532221e-05 -8331710753.07 +UniRef50_UPI00036133DB hypothetical protein 3.06535260265e-08 9.97980540071e-08 27914494.4445 +UniRef50_Q5F507 2.55058100582e-06 1.19633308451e-05 3800042617.55 +UniRef50_UPI0004118E6E hypothetical protein 9.72576520301e-09 5.91021113973e-08 19933836.8745 +UniRef50_A7IES2 Ribonuclease HII 3.73555808006e-05 3.09268650577e-05 -2595351434.62 +UniRef50_A3PSB1 Flagellar FlbT family protein 0.00017075922513 5.28925442146e-06 -66802257720.1 +UniRef50_Q6D6Y6 Putrescine aminotransferase 2.07276499816e-05 6.41721214839e-06 -5777299362.08 +UniRef50_A3W182 Membrane protein, putative 2.99936445893e-06 4.08797015277e-07 -1045843866.84 +UniRef50_C4I8A2 Hydrolase, isochorismatase family 3.55090537122e-06 6.64255795222e-05 25383277513.8 +UniRef50_F8LGD6 7.41275880412e-05 1.79824250136e-05 -22666491292.9 +UniRef50_P0AG29 5.85328109888e-06 4.12069821203e-05 14272722941.0 +UniRef50_A3PNN1 4.59032163423e-06 3.01963469432e-06 -634105592.138 +UniRef50_UPI000374CA9B hypothetical protein 6.78669976031e-09 3.94068635212e-07 156350469.826 +UniRef50_Q28JJ3 Flagellar protein FlaF putative 7.54072651422e-07 7.87711804044e-07 13580538.7123 +UniRef50_A3M4L6 1.00484291618e-06 8.31216837324e-05 33151576324.5 +UniRef50_Q3IUZ0 0.000222175813563 3.45301351331e-05 -75754863053.6 +UniRef50_E6SBU2 1.15663865864e-07 6.90167445712e-07 231934145.136 +UniRef50_R7I998 6.84144707043e-08 1.68875394217e-07 40557307.6164 +UniRef50_UPI000350D37B PREDICTED 1.00740244864e-07 1.21197006228e-06 448617113.616 +UniRef50_L0GGI8 Lytic murein transglycosylase B 8.59989451478e-06 1.96441267312e-06 -2678825446.0 +UniRef50_B9DJG9 3 dehydroquinate dehydratase 6.54507941753e-05 3.7527257455e-05 -11273074434.3 +UniRef50_X0RZM7 Marine sediment metagenome DNA, contig 2.69476050868e-07 8.07289499169e-06 3150335985.13 +UniRef50_X5JHV8 Protein serine threonine phosphatase 9.38611690351e-08 9.07818527811e-07 328604574.118 +UniRef50_A7NB32 3 methyl 2 oxobutanoate hydroxymethyltransferase 7.28978314783e-08 1.21393645337e-07 19578355.1653 +UniRef50_UPI0003068E5B hypothetical protein 4.90837323417e-08 1.04605030627e-07 22414629.4407 +UniRef50_R0FLE9 6.41070643976e-07 4.10112958624e-07 -93240451.7461 +UniRef50_UPI0003767355 hypothetical protein, partial 4.48491287115e-07 5.27730978526e-07 31990035.803 +UniRef50_M9RMU0 9.07621379592e-07 5.95721723422e-07 -125917718.635 +UniRef50_A3DHY6 Ribosomal RNA small subunit methyltransferase G 6.22587460836e-06 2.46782762008e-06 -1517169685.59 +UniRef50_UPI00026579B9 PREDICTED 2.25301498103e-07 6.50686619832e-07 171733193.704 +UniRef50_E7KDY4 Muc1p 1.23892750845e-08 6.04787386056e-08 19414306.5475 +UniRef50_A9ALI4 ABC transporter related 7.59191295635e-07 7.04084354474e-07 -22247348.3849 +UniRef50_Q0T0I4 Ribosomal RNA large subunit methyltransferase G 4.08789992152e-05 9.82584687032e-06 -12536538666.7 +UniRef50_Q5ZWB8 UPF0234 protein lpg1167 1.24908262142e-07 3.60989349979e-07 95308832.2005 +UniRef50_Q9KGL2 Ribosomal RNA small subunit methyltransferase I 0.000214639256792 7.7635756028e-05 -55309994480.4 +UniRef50_Q5LWK7 ABC transporter, periplasmic substrate binding protein 9.57077247162e-05 1.97503810121e-05 -30664911754.8 +UniRef50_Q3JQP4 7.00859601585e-07 4.64327058432e-06 1591599692.56 +UniRef50_Q62IJ6 Potassium transporting ATPase A chain 4.14644576382e-08 2.02179610521e-05 8145499268.66 +UniRef50_X1YF14 1.26257820794e-07 1.01928529081e-07 -9822033.61852 +UniRef50_L2FGS4 Cvnh domain containing protein 4.28018492752e-08 7.62611124375e-08 13507915.13 +UniRef50_S9TEG5 General secretory system II protein E domain containing protein 1.84888007097e-07 1.6967481339e-06 610356485.799 +UniRef50_O24982 Apolipoprotein N acyltransferase 1.13245796655e-06 3.67326214924e-05 14372222878.5 +UniRef50_D0IRT5 Arginine permease 1.81606908375e-06 3.92159166488e-05 15098777409.8 +UniRef50_P21179 Catalase HPII 1.7848975057e-05 4.19664454578e-06 -5511613360.31 +UniRef50_U5MNZ4 Beta glucanase BglA 2.16207672803e-06 1.3536222542e-05 4591882241.58 +UniRef50_UPI00037A554B hypothetical protein 9.89219590283e-08 3.29521771553e-07 93095974.0943 +UniRef50_UPI0003812998 hypothetical protein 9.71982559687e-08 6.82464114948e-08 -11688214.8932 +UniRef50_G3XD19 O antigen translocase 8.86066839104e-06 4.27856611132e-06 -1849850919.04 +UniRef50_Q899R2 Single stranded DNA binding protein 2.13964775418e-05 4.27995224921e-06 -6910151304.01 +UniRef50_A6LVD4 Sigma54 specific transcriptional regulator, Fis family 1.87718240781e-06 1.24374752613e-05 4263319814.32 +UniRef50_UPI0004670897 shikimate kinase 1.64633438742e-07 1.08366573707e-07 -22715623.8867 +UniRef50_D7FNC8 Enoyl ACP reductase enoyl ACP reductase 3.27163544958e-08 1.32154529751e-07 40144411.5942 +UniRef50_A5UJH5 Predicted oxidoreductase, aldo keto reductase family 3.22905691019e-05 1.06201328855e-05 -8748621026.72 +UniRef50_A7ZV86 6.79645073595e-06 5.82062964133e-06 -393950950.57 +UniRef50_V9B8V8 8.50114917741e-07 1.02605227702e-07 -301778834.844 +UniRef50_B2SBZ3 Dihydrodipicolinate synthetase 1.35623708568e-06 7.00149345088e-05 27718358686.7 +UniRef50_UPI000381E70F hypothetical protein 8.30922862673e-08 8.82190144358e-07 322605611.345 +UniRef50_UPI00047BCB0B hypothetical protein 1.35353296698e-07 3.41242698621e-07 83120078.1034 +UniRef50_J1HZ40 Cadherin like beta sandwich domain protein 1.16612248791e-08 4.19162527075e-05 16917397808.7 +UniRef50_UPI0003B309D3 hypothetical protein 4.16993268157e-08 1.4136630948e-07 40236783.953 +UniRef50_L0F2G6 ABC type dipeptide oligopeptide nickel transport system, permease component 2.33057731141e-06 2.1381223713e-05 7690979730.05 +UniRef50_A4ISF0 Pyridine nucleotide disulphide oxidoreductase 0.000165629540166 3.77611408859e-05 -51622041911.0 +UniRef50_U2KRP8 1.94888647933e-07 2.42300413421e-07 19140711.5353 +UniRef50_Q2NHY4 Predicted ATPase 3.82887286818e-05 1.99988739417e-06 -14650250542.0 +UniRef50_Q6D8C5 tRNA lysidine synthase 3.02900314121e-05 6.75223259911e-06 -9502498222.08 +UniRef50_W1DNL9 DNA directed RNA polymerase beta subunit 4.06228226842e-05 8.8098536748e-06 -12843285978.1 +UniRef50_K7RSJ8 Exonuclease SbcCD, D subunit 1.63413847988e-06 6.22265587767e-05 24461903626.4 +UniRef50_Q03CD2 Purine nucleoside phosphorylase DeoD type 3.79393076353e-06 2.08193084354e-05 6873353891.02 +UniRef50_C5MYT2 0.000125791057334 5.48996463905e-05 -28619732533.3 +UniRef50_UPI00046D19BF hypothetical protein 2.89673566329e-07 6.91443616986e-07 162199499.723 +UniRef50_U5N005 Signaling protein 1.08681812416e-06 6.24724328459e-06 2083326962.8 +UniRef50_UPI0003B67EAC phosphate ABC transporter ATP binding protein 3.35606946241e-07 3.30970357223e-07 -1871847.88391 +UniRef50_W5V0N3 Hemagglutinin 7.17199544052e-07 1.07327531323e-06 143752157.558 +UniRef50_UPI000456105B hypothetical protein PFL1_03954 8.89617587187e-09 2.01543969632e-08 4545082.00847 +UniRef50_UPI0003B77756 deoxyribonucleotide triphosphate pyrophosphatase 8.29728254281e-08 1.43285283986e-07 24348879.6369 +UniRef50_V5SVZ8 7.53385261022e-06 7.03309526921e-06 -202161883.549 +UniRef50_D9PYS9 Non canonical purine NTP pyrophosphatase 5.30260494129e-05 3.64588524928e-06 -19935378235.6 +UniRef50_UPI0001745D89 molecular chaperone DnaK 4.5667210503e-08 4.18052047799e-08 -1559139.10256 +UniRef50_UPI000475F618 branched chain amino acid ABC transporter substrate binding protein 2.45825393727e-07 1.17489412903e-07 -51810810.3182 +UniRef50_Q8ZIQ1 Protein smp 3.04648696503e-05 1.06668777444e-05 -7992692281.09 +UniRef50_A5UNL4 Adhesin like protein 3.98338911148e-05 6.81338801524e-06 -13330782308.4 +UniRef50_UPI00029A29A8 oligo 1,6 glucosidase, partial 3.24052610787e-07 1.60670471457e-07 -65959374.5718 +UniRef50_W9EH11 1.0496863607e-05 1.85212077268e-07 -4162940260.73 +UniRef50_UPI0003B4600B ribonuclease, partial 1.81638168575e-07 1.05755312996e-07 -30634839.9846 +UniRef50_G5EL93 Cassette chromosome recombinase A 0.000104698623699 2.44512102572e-05 -32396865553.0 +UniRef50_P00803 Signal peptidase I 1.95666393901e-05 1.89914279868e-06 -7132585178.51 +UniRef50_B0T4C1 Probable chemoreceptor glutamine deamidase CheD 3.52722653841e-06 5.39374125376e-07 -1206232684.21 +UniRef50_B0KFB1 Rhomboid family protein 2.72225472725e-06 3.7381861418e-06 410143978.934 +UniRef50_Q2G4D3 UPF0260 protein Saro_2854 4.80345035694e-07 4.38327409636e-05 17501894229.8 +UniRef50_Q3J6E0 2.300973382e-05 5.57201330567e-06 -7039821756.52 +UniRef50_Q9BWD1 Acetyl CoA acetyltransferase, cytosolic 2.20170063826e-05 5.5481328387e-06 -6648686345.48 +UniRef50_O07347 Signal recognition particle protein 3.82165846742e-06 0.000422930778145 1.69199494661e+11 +UniRef50_A4VVR6 Predicted O methyltransferase 2.76202504291e-05 6.33208415943e-06 -8594293958.25 +UniRef50_K2AGU5 Chemotactic signal response protein CheL 1.49030613609e-06 7.8714263939e-07 -283875732.404 +UniRef50_A8AJ27 6 phosphogluconolactonase 2.56905283308e-05 9.69142138925e-06 -6459035803.4 +UniRef50_M0BHI2 Nucleolar protein like protein 1.96172275359e-06 1.50241749445e-06 -185427169.424 +UniRef50_K7VJY6 8.8074586029e-07 7.2516455212e-08 -326292128.92 +UniRef50_O34814 Cell division ATP binding protein FtsE 1.23560043394e-05 4.58784620661e-05 13533427551.1 +UniRef50_UPI00035D2A1B hypothetical protein 7.89764087148e-07 1.68873036155e-06 362923716.533 +UniRef50_UPI00037863B5 hypothetical protein 7.82343401066e-08 1.64437450904e-07 34801253.66 +UniRef50_B3DQ29 Elongation factor P 2.22099773758e-07 1.50779216079e-06 519049793.864 +UniRef50_P43735 Chaperone protein DnaJ 2.21118008496e-06 6.27846374938e-06 1642012326.51 +UniRef50_UPI000161E2A8 40S ribosomal protein S15 5.81127111971e-07 8.63690741194e-08 -199739891.245 +UniRef50_Q66L51 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 6.09941732819e-08 7.0573538081e-08 3867307.12142 +UniRef50_A0A023RVS9 Diguanylate cyclase 1.68892758539e-06 6.68143410448e-05 26291928592.3 +UniRef50_Q8ZLF2 sn glycerol 3 phosphate transport system permease protein UgpA 0.000138041268746 3.32104060678e-05 -42321505682.5 +UniRef50_A4J8U4 Putative sporulation transcription regulator WhiA 3.91916088574e-06 1.7903847323e-05 5645789526.14 +UniRef50_J9P3B1 2.80546862557e-07 1.04512852124e-07 -71067090.192 +UniRef50_E1TE96 Type VI secretion protein, VC_A0114 family 2.01443674674e-06 5.00699553971e-08 -793038979.155 +UniRef50_UPI000329034B 1.24094987895e-06 4.49290005853e-07 -319602805.528 +UniRef50_A5VR36 Lactoylglutathione lyase 0.000198644838985 7.63548079145e-05 -49369986210.4 +UniRef50_Q88QC7 Biosynthetic arginine decarboxylase 1.84062484814e-05 1.65574416389e-05 -746386009.728 +UniRef50_P27111 HTH type transcriptional regulator CynR 2.94885230787e-05 2.07239793125e-06 -11068226155.7 +UniRef50_G7ZTG5 Acetyltransferase, GNAT family protein 0.000268501424234 1.94003674946e-05 -1.00565153419e+11 +UniRef50_K3X5U2 2.68993196135e-06 4.49948474827e-06 730538665.789 +UniRef50_UPI0003B45AF6 NADPH 1.85984550178e-07 4.86706083171e-07 121404973.137 +UniRef50_UPI00047C5895 hypothetical protein 2.06525235057e-07 1.37384059676e-06 471259536.089 +UniRef50_A4VWF3 ATPase component of ABC transporters with duplicated ATPase domains 2.52774519159e-06 3.69728200893e-05 13905899424.8 +UniRef50_S6AW99 1.8874299443e-06 9.29474887452e-06 2990425550.15 +UniRef50_P29365 Homoserine dehydrogenase 1.10097239842e-05 8.76753784591e-05 30950865504.9 +UniRef50_A1W5W7 SwissProt accession number P19593 like protein 1.66141246844e-07 8.61006658394e-07 280525693.6 +UniRef50_H8LDC1 Helix turn helix domain protein 0.000159450795251 2.47573110905e-05 -54377412430.3 +UniRef50_E8ZZT0 DNA translocase ftsK 7.63769552922e-06 1.76267975336e-06 -2371815963.27 +UniRef50_A1K314 Holliday junction ATP dependent DNA helicase RuvA 8.91225204156e-06 1.74070991595e-05 3429474025.01 +UniRef50_UPI00037585D1 hypothetical protein 9.30259738955e-06 2.32587799164e-06 -2816587234.91 +UniRef50_G2SM74 Fe S cluster oxidoreductase 1.4330291612e-05 2.00736627624e-05 2318669412.51 +UniRef50_UPI00037560BA hypothetical protein 3.91240623283e-07 1.21584547317e-06 332903096.939 +UniRef50_B0SAP0 Succinyl CoA ligase [ADP forming] subunit beta 0.000283667051049 0.000157212646391 -51051194930.5 +UniRef50_Q8CRS1 1.54760209082e-05 6.94862835762e-06 -3442613015.54 +UniRef50_R0DRQ8 4.04277746655e-07 3.85371388555e-07 -7632728.77207 +UniRef50_F5HTJ7 Phosphopantetheine attachment domain protein 2.59011908145e-06 8.74682130595e-05 34266328110.3 +UniRef50_W5X2Q0 3.24360640712e-07 5.14850515515e-07 76903100.0316 +UniRef50_E8TF05 Tetracycline transcriptional regulator YcdC domain containing protein 0.000138723937395 3.27619614812e-05 -42778149976.1 +UniRef50_E9WHJ2 NrdB protein 3.31685042019e-05 2.61506160374e-06 -12334799709.8 +UniRef50_A3PP90 TRAP T family transporter, small inner membrane subunit 7.50675992924e-05 7.6705637713e-06 -27209010294.5 +UniRef50_UPI000469C97C riboflavin biosynthesis protein RibF 1.01646333543e-07 3.25578803253e-07 90404285.9823 +UniRef50_UPI00036BA29A MULTISPECIES 4.11342129639e-08 1.0918889205e-07 27474509.0719 +UniRef50_Q9I2Y2 Phosphoserine phosphatase ThrH 1.27558324272e-05 7.78029930595e-05 26260336965.7 +UniRef50_Q8Y2I3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.10306154339e-07 1.13609574929e-07 1333631.42971 +UniRef50_UPI0003A4B73E hypothetical protein 8.57944021391e-07 3.29810928129e-07 -213213810.672 +UniRef50_UPI00047210DD hypothetical protein 2.21033978269e-08 3.86564413234e-08 6682666.78822 +UniRef50_A6WP83 Thioesterase superfamily protein 2.82593347166e-07 1.65805292136e-05 6579676707.43 +UniRef50_M9VE12 Transglutaminase 2.886712045e-06 6.22188005373e-05 23953092210.9 +UniRef50_D4GJ64 MocR 4.81572578875e-06 6.24600701246e-05 23271729184.1 +UniRef50_E3D421 CinA related protein 2.92624797564e-06 2.98809786679e-05 10881955552.2 +UniRef50_UPI000367AB3B hypothetical protein, partial 3.62834922283e-06 1.4408741025e-06 -883110549.416 +UniRef50_P65809 2.06052734383e-05 4.13024238847e-06 -6651172206.17 +UniRef50_Q65GI9 3 isopropylmalate dehydrogenase 0.000140957481444 8.5783591506e-05 -22274376427.7 +UniRef50_UPI0003B44979 glutamate 2.61282004371e-08 6.50309340455e-08 15705510.9479 +UniRef50_P77148 3.47966007136e-05 4.84628288441e-05 5517223999.76 +UniRef50_J3M3U5 8.13619359059e-08 1.02590282255e-07 8570143.92224 +UniRef50_UPI000381BF29 hypothetical protein, partial 9.97976061044e-08 2.82313543114e-07 73683923.4933 +UniRef50_F8GT79 Major facilitator superfamily MFS 3.59008507951e-06 5.76619246276e-05 21829465161.7 +UniRef50_W1MCV7 1.71793908893e-06 9.71413014233e-07 -301381737.26 +UniRef50_R4GHX9 3.14658741268e-07 6.33687172028e-07 128795692.417 +UniRef50_UPI0003709C0F hypothetical protein 2.05862338216e-07 1.2381832389e-07 -33122175.3767 +UniRef50_A5FN12 Enolase 1.12111216576e-07 1.05029776287e-06 378757421.582 +UniRef50_F5ZL84 Membrane protein 4.86350970635e-05 4.30233906122e-05 -2265514757.77 +UniRef50_P08681 Cytochrome c oxidase subunit 1 3.70999527329e-07 8.73934730239e-07 203041113.124 +UniRef50_UPI00046D95AC multidrug MFS transporter 6.43481412002e-08 1.05903095801e-06 401565659.277 +UniRef50_B9DJU7 Choline transporter 0.000255059405985 6.94334932208e-05 -74939458868.9 +UniRef50_UPI0004689981 hypothetical protein 2.62629672384e-08 5.50421434629e-08 11618506.602 +UniRef50_UPI000467699E cytochrome d ubiquinol oxidase subunit 2 8.23976149206e-08 4.17029213606e-07 135094882.781 +UniRef50_UPI000471B371 hydrogenase accessory protein HypB 7.13043337588e-07 2.38707582884e-07 -191495164.928 +UniRef50_I4EB76 Replication protein C 3.50582929947e-07 1.62774934681e-07 -75820392.3522 +UniRef50_B1HXC5 Sulfate binding protein (SSI2) 2.72673160454e-05 0.000140375010985 45662964434.8 +UniRef50_UPI00022CA98C PREDICTED 5.30155865392e-08 2.61451584749e-07 84148170.2747 +UniRef50_U5MVB3 Phage like element PBSX protein XkdC 2.21781543851e-05 4.22483187002e-05 8102571622.62 +UniRef50_Q0C5Z7 Transcription termination factor NusA 0.000118103189586 4.16775709548e-05 -30853960089.2 +UniRef50_UPI00027F529F 1.28141787143e-06 4.07753557583e-07 -352709004.567 +UniRef50_A6LQD4 Endodeoxyribonuclease RusA 1.72368031437e-06 3.60762116849e-05 13868538467.2 +UniRef50_E8JNG4 2.08981395112e-06 2.54003249514e-06 181758751.024 +UniRef50_UPI0003B5B5B4 heme biosynthesis protein HemY 1.15118155548e-07 1.47712451311e-07 13158717.1765 +UniRef50_G8VCT1 Lysophospholipase 2.45155838441e-06 7.18549230707e-05 28018989998.9 +UniRef50_A4XPP9 Pilus assembly protein, PilQ 7.24448320794e-06 1.1734438617e-05 1812650096.59 +UniRef50_R5TNT7 NAD utilizing dehydrogenase 7.17705019224e-06 2.47094121843e-05 7078029682.49 +UniRef50_Q4L389 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 9.20697533784e-06 3.47431417878e-05 10309263759.9 +UniRef50_W8RPJ3 Hydroxymethylpyrimidine ABC transporter, transmembrane component 0.000102570971573 4.8282094133e-06 -39459952522.4 +UniRef50_Q6A5L3 Putative 3 methyladenine DNA glycosylase 3.3914245091e-07 4.30465682641e-05 17241511879.8 +UniRef50_H1QEQ5 Phosphoribosylaminoimidazole succinocarboxamide synthase 3.33154900203e-06 1.14757551134e-06 -881696898.56 +UniRef50_P58336 Fructose bisphosphate aldolase 0.000239386073392 0.000123999599233 -46582935569.3 +UniRef50_Q8RG98 ATP dependent 6 phosphofructokinase 2.32973473664e-07 8.08072284876e-08 -61431380.4674 +UniRef50_G8VQK9 1.27385598041e-06 8.14239523744e-05 32357577466.5 +UniRef50_Q49776 ATP phosphoribosyltransferase 1.76946557275e-06 4.14532915254e-05 16020847512.4 +UniRef50_P33014 UPF0033 protein YeeD 3.32037911719e-05 1.57502242771e-05 -7046219134.78 +UniRef50_F2A7T6 1.97551032108e-05 4.44085270977e-06 -6182550854.24 +UniRef50_Q6AB77 Na H(+) antiporter NhaA 4.69518101512e-06 7.71765885817e-05 29261633681.5 +UniRef50_A4WUL7 GumN family protein 5.23940067928e-07 2.56706957933e-07 -107885285.824 +UniRef50_P59302 Acetylglutamate kinase 3.00304466644e-05 1.36470963071e-05 -6614159585.56 +UniRef50_Q983F8 Ribosomal RNA large subunit methyltransferase E 8.51447409346e-07 5.46070363154e-07 -123284460.945 +UniRef50_P24136 Oligopeptide transport ATP binding protein OppD 0.000221541893521 9.7517292003e-05 -50070253585.8 +UniRef50_G2T6W5 Ppx GppA phosphatase 6.53811048072e-08 9.89612849316e-08 13556730.7914 +UniRef50_A7X5U0 Formimidoylglutamase 0.000115835693576 2.65165455367e-05 -36059236132.7 +UniRef50_U5MNC9 PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase 8.39748939815e-06 1.50202000155e-05 2673669546.02 +UniRef50_Q6FBR2 2.25362771271e-06 7.55250152421e-05 29580558286.7 +UniRef50_UPI000465E9D3 glycine betaine ABC transporter ATP binding protein 5.25652461244e-07 9.18632962417e-08 -175126009.103 +UniRef50_UPI0004662A15 peptide ABC transporter 8.40070407747e-07 1.25187976368e-07 -288606810.142 +UniRef50_UPI00037198AA hypothetical protein 4.17846103001e-08 2.54510188982e-08 -6594071.28465 +UniRef50_P12999 Malonyl [acyl carrier protein] O methyltransferase 2.45488402021e-05 8.94163728117e-06 -6300819341.08 +UniRef50_UPI000380847F hypothetical protein 1.3087802258e-07 7.78263290118e-08 -21417619.711 +UniRef50_UPI0004706833 hypothetical protein 1.23918657882e-06 2.68315157062e-07 -391952706.896 +UniRef50_F9YZ80 9.79772395697e-07 8.80478320372e-05 35150444122.5 +UniRef50_B5EXN2 Ferrochelatase 4.58661850665e-08 2.99701124777e-07 102476280.066 +UniRef50_S9TGH7 PE PGRS family protein 1.49689023164e-06 4.28629564389e-06 1126117194.78 +UniRef50_F0KI57 Transcription activator of glutamate synthase operon GltC 1.25828662949e-06 8.44905359922e-05 33601880442.3 +UniRef50_P60065 Arginine agmatine antiporter 2.56547106817e-05 9.20283166503e-06 -6641825446.3 +UniRef50_Z5XA58 2.565575288e-07 9.73032376359e-07 289249688.095 +UniRef50_Q2K5E7 Xylose ABC transporter, permease protein 3.21647948603e-05 1.04481321218e-05 -8767283240.95 +UniRef50_F0P396 Betaine aldehyde dehydrogenase 0.000255927792008 4.89463994243e-05 -83560928133.5 +UniRef50_G2L6P6 2.7437713379e-06 3.72247947718e-06 395116485.927 +UniRef50_A4XTI2 4.29199852858e-07 2.40883522049e-06 799203090.77 +UniRef50_A1R8N0 tRNA N6 adenosine threonylcarbamoyltransferase 1.33005836697e-07 2.070484484e-07 29891910.9495 +UniRef50_W8KIM2 Protein pucC 2.35621148982e-05 9.63482805149e-06 -5622616607.04 +UniRef50_D9S1W5 6.6116281873e-06 5.31659119422e-06 -522822325.997 +UniRef50_M1MXN6 ABC type multidrug transport system, ATPase and permease component 1.57150917647e-06 2.4505606956e-06 354883885.448 +UniRef50_Q54MI4 2.56113791227e-08 5.0041442333e-08 9862716.30859 +UniRef50_Q6GJ93 Putative acetyl CoA C acetyltransferase VraB 0.000265041112598 5.67172044024e-05 -84102918160.6 +UniRef50_V7EMW9 1.08029211079e-06 7.86540864863e-07 -118590982.714 +UniRef50_A3PLM1 4 deoxy L threo 5 hexosulose uronate ketol isomerase 4.10652278597e-05 2.81745691794e-06 -15441094482.1 +UniRef50_C3F739 VrrA protein product 4.45713313932e-07 2.40094882266e-06 789352568.312 +UniRef50_UPI000465695E ABC transporter 4.61893401462e-07 7.16246059976e-07 102685289.5 +UniRef50_P75785 Phosphoethanolamine transferase OpgE 3.89579338034e-05 9.90958143816e-06 -11727176313.2 +UniRef50_UPI0003C14A7B PREDICTED 1.02817151383e-06 8.56006357713e-07 -69505186.2285 +UniRef50_A0A011RZV2 2.17230326694e-07 1.12932642771e-07 -42106254.8762 +UniRef50_W7TIH3 3.90478390628e-07 1.89707109081e-07 -81053830.1012 +UniRef50_B0RVK4 Succinyl CoA 0.000177168520838 0.00048230540948 1.23187506395e+11 +UniRef50_UPI000370484E hypothetical protein 9.26381603864e-07 3.99214597254e-07 -212823789.635 +UniRef50_Q5HP94 Holliday junction resolvase RecU 0.000111475699299 3.52703783427e-05 -30765023214.5 +UniRef50_A0A009FMX4 BCCT transporter family protein 1.457366432e-06 4.90425601012e-05 19210726620.2 +UniRef50_UPI000347806D MULTISPECIES 1.30749637327e-06 0.000103674193301 41326691730.5 +UniRef50_A9MIT8 7.28267475651e-05 3.99977478817e-06 -27786293512.0 +UniRef50_Q1IUF1 tRNA N6 adenosine threonylcarbamoyltransferase 1.41105572094e-07 1.67277942171e-07 10566106.9712 +UniRef50_E3A4Z7 1.42557375498e-05 3.19415385196e-06 -4465697079.7 +UniRef50_UPI00035F7B5B hypothetical protein 3.82748951546e-07 6.50687237516e-07 108169974.019 +UniRef50_D4FIU1 3.2653585442e-05 2.30116913138e-05 -3892550978.9 +UniRef50_UPI00034D20EA cytochrome BD ubiquinol oxidase subunit I 3.52769276739e-07 4.73393745702e-07 48697578.3491 +UniRef50_A6YP79 Minor ampullate spidroin like protein 7.27119805174e-08 7.55820201919e-07 275779171.661 +UniRef50_C8W984 M20 DapE family protein YgeY 1.01383882411e-06 3.71370956182e-05 14583402050.0 +UniRef50_G8VJJ1 Poly depolymerase 2.39420288917e-06 6.04986671084e-05 23457485227.2 +UniRef50_P39295 2.96320994259e-05 3.87693058873e-05 3688802374.6 +UniRef50_R5TI31 9.8218383912e-07 5.57489537163e-05 22110017063.3 +UniRef50_P60811 Foldase protein PrsA 1 6.93660902889e-05 3.01147269684e-05 -15846257040.9 +UniRef50_UPI0002374DF8 30S ribosomal protein S2, partial 1.61400898517e-07 4.14271465827e-07 102086951.094 +UniRef50_S9QQX6 2.13370067565e-06 3.01725737495e-07 -739590763.396 +UniRef50_C0Z6S0 Argininosuccinate synthase 5.96177150828e-05 6.56272100111e-05 2426106847.35 +UniRef50_A6V127 7.00919968729e-07 1.70852227089e-05 6614544074.22 +UniRef50_Q9RYE9 3.4334209452e-06 0.000630712477059 2.53240252533e+11 +UniRef50_A7X3Q8 Serine protease SplB 0.000422240117743 9.20475457339e-05 -1.33302793239e+11 +UniRef50_Q8DW55 3.37266740265e-05 2.75911397125e-05 -2476990494.03 +UniRef50_G2L1N4 8.90725467284e-06 1.10429301976e-05 862198417.031 +UniRef50_UPI00047D67F7 branched chain amino acid ABC transporter 1.0533388264e-06 3.32307128548e-07 -291089344.477 +UniRef50_UPI0003B4B808 amino acid ABC transporter ATPase, partial 1.08782376507e-06 1.2282603841e-06 56695986.4535 +UniRef50_UPI00039C5902 RNA polymerase sigma 70 factor 2.82096910209e-08 2.05017498746e-06 816292202.477 +UniRef50_UPI00047B598A hypothetical protein 9.76766908537e-07 1.54947751158e-06 231210298.398 +UniRef50_D4L1E0 ABC type Fe3+ siderophore transport system, permease component 1.73956676891e-06 5.64935962282e-06 1578431353.68 +UniRef50_Q73HV5 Glutamate tRNA ligase 1 1.7730002753e-07 1.12259265932e-07 -26257753.597 +UniRef50_B7GXS6 5 formyltetrahydrofolate cyclo ligase 2.2469404098e-06 6.45502134425e-05 25152595870.4 +UniRef50_UPI00045717A3 PREDICTED 3.63477146069e-07 7.64151362825e-08 -115890455.998 +UniRef50_UPI000373B187 hypothetical protein 1.07911833566e-08 3.60127507502e-05 14534432870.8 +UniRef50_Q9HXH7 1.02547270045e-05 8.71829155164e-06 -620277846.503 +UniRef50_UPI0001A42D32 hypothetical protein, partial 7.32293615491e-07 9.92363614566e-08 -255572981.94 +UniRef50_UPI000255AEF1 30S ribosomal protein S3, partial 1.04052323866e-05 2.12063935744e-05 4360561316.67 +UniRef50_Q57926 Probable homocitrate synthase AksA 2.88106902442e-05 6.60299059958e-06 -8965520865.65 +UniRef50_Q08386 Molybdenum pterin binding protein MopB 6.64229229173e-06 4.36428628368e-06 -919658979.727 +UniRef50_D6SC26 6 O methylguanine DNA methyltransferase, DNA binding domain protein 0.0002075651314 0.000139455710319 -27496609087.0 +UniRef50_P9WP73 Oxygen independent coproporphyrinogen III oxidase like protein Rv2388c 2.90892723579e-07 9.87929676988e-08 -77553028.7778 +UniRef50_UPI0002195D79 glutamate ABC transporter permease 4.2087898851e-08 3.75810942451e-07 134728087.944 +UniRef50_UPI0004005367 hypothetical protein 9.56849057307e-09 3.52347192764e-07 138383968.442 +UniRef50_K2EGX4 1.48755743195e-07 2.243154542e-07 30504382.5546 +UniRef50_F0RN24 Polyprenyl synthetase 4.36181283126e-06 0.000149904263223 58757273230.0 +UniRef50_C0SPB0 0.000246011155853 9.5773021065e-05 -60652978643.1 +UniRef50_S9QSJ4 Flagellar protein FlgJ, putative 1.5887993754e-06 8.34309335018e-07 -304596887.936 +UniRef50_O27701 Conserved protein 4.11142667759e-05 1.1994202057e-05 -11756127470.4 +UniRef50_P55218 O succinylhomoserine sulfhydrylase 1.27877077879e-06 3.58814672543e-05 13969533190.0 +UniRef50_M6VVW5 PF12769 domain protein 1.51106598646e-07 2.21126714194e-07 28267979.8902 +UniRef50_I2C019 Transcriptional regulator, LysR family 1.2724246815e-06 2.4372767966e-06 470265093.209 +UniRef50_P76041 Putative sucrose phosphorylase 2.41551511253e-05 3.09527410767e-05 2744270479.19 +UniRef50_D5SSZ9 ATP dependent DNA ligase 3.29630904573e-05 1.42846993173e-05 -7540695712.85 +UniRef50_UPI00036A77AE hypothetical protein 1.0410526564e-06 4.21904332903e-07 -249957776.0 +UniRef50_P75806 Putative undecaprenyl diphosphatase YbjG 4.62832454494e-05 7.63750099644e-06 -15601761272.3 +UniRef50_UPI0003315352 PREDICTED 6.28350314963e-08 1.10917133368e-07 19411334.5593 +UniRef50_Q7MLR5 Cysteine tRNA ligase 3.63200825655e-05 2.67506755859e-05 -3863287027.49 +UniRef50_UPI00035CB1C3 hypothetical protein 8.15417938926e-06 1.58977782821e-06 -2650129464.46 +UniRef50_G8VCB9 BNR Asp box repeat protein 4.97346493856e-07 5.94654115279e-05 23806131473.8 +UniRef50_Q2YYG7 9.81645463155e-05 1.09501517897e-05 -35209521311.0 +UniRef50_Q7XIT3 1.42187289557e-06 4.09232375594e-07 -408815404.412 +UniRef50_I2ZRW4 Maltose regulon activator MalT domain protein 4.86033462046e-06 7.63750099644e-06 1121176145.65 +UniRef50_UPI000471FD97 hypothetical protein 1.17569589233e-07 6.50708255442e-08 -21194395.1334 +UniRef50_UPI0004708D1E hypothetical protein, partial 4.66630180737e-07 1.80091754091e-07 -115679079.059 +UniRef50_C3A4M2 2.94806683128e-07 3.16679981629e-06 1159458871.18 +UniRef50_Q9I6G4 1.76061521709e-05 5.70486930501e-06 -4804693938.13 +UniRef50_UPI0003B7884C ABC transporter, partial 5.77407588545e-07 4.46509388158e-07 -52845209.7978 +UniRef50_E7RTI9 6.42884078815e-07 4.73284262469e-07 -68469527.0827 +UniRef50_Q17WZ6 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.37742289358e-06 2.40830352697e-05 8359109802.67 +UniRef50_Q8FTK5 GTPase Der 2.15072761739e-06 6.38554106664e-05 24910937748.5 +UniRef50_F8LLX7 Restriction enzyme BgcI subunit alpha 5.77195701583e-07 2.73308358704e-05 10800772840.2 +UniRef50_Q03024 Alkaline protease secretion ATP binding protein AprD 1.40155688933e-06 4.51830836878e-06 1258270819.1 +UniRef50_K1Z0I8 Integral membrane protein MviN 1.03844479641e-07 5.72972818178e-08 -18791674.9596 +UniRef50_A4WTG8 Methyl accepting chemotaxis sensory transducer 7.5025241691e-05 1.72406183607e-05 -23328361535.5 +UniRef50_Q9I291 UTP glucose 1 phosphate uridylyltransferase 1.13118770972e-05 3.81534734807e-05 10836281843.4 +UniRef50_UPI00036E1A9D hypothetical protein 7.29867649879e-07 4.63821158892e-07 -107406233.169 +UniRef50_UPI0003B744A6 3 isopropylmalate dehydrogenase, partial 9.76979808143e-07 6.82386717994e-07 -118930845.557 +UniRef50_B2TRH5 Stage 0 sporulation protein J 3.20880170342e-06 9.31007452033e-06 2463158707.22 +UniRef50_P32710 Cytochrome c type biogenesis protein NrfE 3.19485752797e-05 1.34336636173e-06 -12355698408.3 +UniRef50_C4ZJP0 9.29650548197e-08 5.70012137326e-07 192589761.234 +UniRef50_H8GU51 4.84598329819e-07 0.000270148656537 1.08866689448e+11 +UniRef50_Q5HLG5 2 dehydropantoate 2 reductase 0.000227177054231 5.91282879499e-05 -67843349137.9 +UniRef50_UPI00035D0467 hypothetical protein, partial 8.91869282127e-07 3.03130514812e-06 863716512.931 +UniRef50_UPI00037FF715 hypothetical protein, partial 4.80843884675e-07 2.25801279014e-07 -102963829.63 +UniRef50_Q3JVL6 9.42464790477e-07 4.25267659107e-06 1336373124.76 +UniRef50_F3AA10 4.25086823392e-07 1.20952680004e-06 316688044.734 +UniRef50_P0AFA0 Lipopolysaccharide export system permease protein LptF 2.40791721303e-05 9.70096487667e-06 -5804658708.72 +UniRef50_E6UL31 Endonuclease V 7.16557019404e-06 2.57366686037e-05 7497380321.0 +UniRef50_D3NUN5 MoxR like ATPase 1.42095566427e-05 4.96391823051e-06 -3732577683.74 +UniRef50_UPI000287BC3E dehydrogenase 1.81967543204e-06 9.89025262923e-07 -335343666.496 +UniRef50_E8WHV5 Pseudouridine synthase 0.000184380855957 5.78534865681e-05 -51080651687.8 +UniRef50_UPI00036DC256 MULTISPECIES 1.689186615e-07 2.53168803984e-07 34012816.3863 +UniRef50_K9VRD1 Beta Ig H3 fasciclin 1.83638776293e-07 7.76113964505e-08 -42804554.3445 +UniRef50_A7X6Y1 L lactate dehydrogenase 2 0.000113637896733 2.57100424888e-05 -35497553754.5 +UniRef50_Q7NFA1 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 5.10865906161e-07 7.87632195402e-07 111733947.271 +UniRef50_Q92S04 Probable chemoreceptor glutamine deamidase CheD 3.22024224996e-06 4.90276064698e-07 -1102120849.44 +UniRef50_A6LS08 Sigma 54 factor, interaction domain containing protein 2.7119847468e-06 1.48149879002e-05 4886130893.58 +UniRef50_Q3AC58 Ribonuclease 3 1.6544121716e-07 3.61432717689e-07 79124173.8497 +UniRef50_Q5XAQ3 Cysteine synthase 4.31447704802e-07 2.21102536439e-07 -84918925.6936 +UniRef50_UPI00037792DA hypothetical protein 2.5113761249e-07 9.04688890778e-08 -64863935.2684 +UniRef50_V8MVT8 4.91110646101e-06 1.19192334299e-06 -1501479864.25 +UniRef50_A1JIY2 UPF0597 protein YE0448 2.25620146682e-05 5.0327951502e-06 -7076761027.13 +UniRef50_Q28NP7 Outer membrane protein assembly factor BamD 0.000117342406979 2.54218110649e-06 -46346259942.1 +UniRef50_A0A011PJY3 1.08699556153e-07 3.26404758599e-07 87890261.7707 +UniRef50_Y8CPG9 0.000103233081845 3.86004495548e-05 -26092986787.1 +UniRef50_P0AER2 Glycerol uptake facilitator protein 2.98183911859e-05 6.47114433421e-06 -9425570056.97 +UniRef50_UPI000470D0F7 hypothetical protein 1.91968451844e-07 4.64953143023e-08 -58729290.7818 +UniRef50_UPI0002626B82 polyphosphate kinase 2.09929978766e-08 4.78013359288e-07 184504728.172 +UniRef50_K9NFY1 Glutamine synthetase 5.3914798445e-06 2.62811667087e-06 -1115603623.47 +UniRef50_K9ZXW7 Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase 6.86742949725e-06 0.000628162628375 2.50824495936e+11 +UniRef50_B9KK79 Metallophosphoesterase 2.1281930188e-05 6.80060908247e-06 -5846287036.08 +UniRef50_F0YF94 7.90391610646e-07 7.07842138823e-07 -33326234.7709 +UniRef50_Q094I2 2.02795097443e-07 2.74804662455e-08 -70776667.9667 +UniRef50_F0YF93 1.5107809751e-06 3.2038779653e-06 683524031.58 +UniRef50_Q1MRW8 Adenylosuccinate synthetase 1.65005056636e-07 1.30462172425e-07 -13945386.2448 +UniRef50_UPI00035FD138 hypothetical protein 1.44636125882e-07 7.33050379924e-08 -28797235.5119 +UniRef50_R8A2V2 Glucose 6 phosphate 1 dehydrogenase 3.12621773303e-05 5.67097323646e-05 10273490244.0 +UniRef50_F9Z2P0 UDP N acetylglucosamine 1 carboxyvinyltransferase 7.29131821759e-06 5.07468031638e-05 17543512531.5 +UniRef50_A6W2T4 Shikimate kinase 2.14680216284e-07 1.55154426966e-07 -24031291.6113 +UniRef50_A6TLP6 PfkB domain protein 1.19836821857e-06 2.03441012935e-05 7729367386.9 +UniRef50_F3Z6R0 Putative integral membrane efflux protein 3.31942852557e-07 2.90975365729e-06 1040693855.17 +UniRef50_V6DRE9 6.47158158752e-08 8.61189093241e-06 3450599480.18 +UniRef50_UPI00034D4B82 hypothetical protein 3.3622882455e-08 2.00954327305e-08 -5461197.45426 +UniRef50_S7S4W9 6.11350722752e-07 2.52512296149e-06 772613337.406 +UniRef50_A3M0Z0 D amino acid dehydrogenase small subunit 2.89428171261e-06 0.000193160652379 76812868668.8 +UniRef50_D3D3X9 3.09973062122e-07 1.33131506811e-07 -71393105.969 +UniRef50_H3UKE3 Extracellular matrix binding protein ebh 5.35177800072e-08 7.17035546959e-08 7341820.40638 +UniRef50_Q1GFQ2 ABC transporter related 4.7798594192e-05 1.25408931148e-05 -14233966585.5 +UniRef50_S9W022 5.10678907906e-07 2.66425526039e-06 869425200.85 +UniRef50_A6LY02 Helix turn helix domain containing protein, AraC type 1.16868727202e-06 2.51269304711e-05 9672236780.18 +UniRef50_A0AIL5 Internalin family protein 7.82278085421e-08 2.65042622654e-08 -20881430.3512 +UniRef50_Q895J2 Zinc protease 5.03034975845e-06 2.89572475008e-06 -861774310.673 +UniRef50_R7P2I4 6.11642427956e-07 3.48292025347e-05 13814048911.8 +UniRef50_I0I041 4.45654810474e-07 1.19573314289e-07 -131643101.48 +UniRef50_UPI00046CFACA hypothetical protein 2.7440232773e-07 1.08129225208e-06 325751364.113 +UniRef50_P00471 Thymidylate synthase 2.06647526927e-07 4.63079529341e-07 103524746.149 +UniRef50_W0ZC25 1.35968026591e-07 1.13328227613e-06 402628000.961 +UniRef50_F3Z8L2 6.14263179056e-07 3.608291896e-06 1208726133.89 +UniRef50_Q3J618 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.000161721799674 8.13564202775e-05 -32444489856.5 +UniRef50_N0BBG7 1.57764823439e-06 3.26390777774e-07 -505147989.893 +UniRef50_D9SVN6 N5 carboxyaminoimidazole ribonucleotide mutase 8.97809892755e-05 1.89442478255e-05 -28597661787.9 +UniRef50_Q2GA52 Leucyl phenylalanyl tRNA protein transferase 3.28832742589e-07 3.60948794371e-07 12965644.2127 +UniRef50_D7URR5 Cell shape determining protein MreC 0.000154879651767 8.54406769689e-05 -28033366238.0 +UniRef50_A3QB39 Glucosamine 6 phosphate deaminase 6.21185281721e-08 1.80487179497e-07 47786877.0866 +UniRef50_N1MJG8 Mobile element protein 2.98110860607e-06 1.29563394921e-06 -680446802.074 +UniRef50_P10486 Type I restriction enzyme EcoR124II R protein 8.47275942557e-07 3.85684795796e-05 15228512799.5 +UniRef50_Q182T5 Bifunctional protein PyrR 4.97004879077e-07 1.36228026481e-06 349322291.343 +UniRef50_Q8CN80 General stress protein 26 0.000220491902999 0.000113467538626 -43207049234.0 +UniRef50_B7IWC4 BclA protein 1.6097127488e-07 3.29208307163e-07 67919354.4332 +UniRef50_Q9RSF0 Leucine tRNA ligase 1.88076434133e-06 0.000568513162789 2.28756452615e+11 +UniRef50_Q9JXK3 Serine type peptidase 8.29026316517e-07 1.35497375587e-05 5135507229.16 +UniRef50_P32155 Fructose like phosphotransferase enzyme IIA component 1.07325419803e-05 1.1694680335e-05 388427060.558 +UniRef50_R1DRR6 6.92360762181e-07 2.56121929279e-07 -176114970.095 +UniRef50_G5RNH3 Phosphoenolpyruvate carboxylase 5.11531491819e-06 6.63384586687e-07 -1797298906.16 +UniRef50_UPI0003C14DD4 PREDICTED 6.3720968312e-08 5.00305579928e-07 176254565.205 +UniRef50_B9KS86 6.39347783215e-05 4.14892201075e-05 -9061547288.96 +UniRef50_U6LIW8 Sybindin like family domain containing protein, putative 9.34183665324e-08 3.8565248334e-07 117978499.071 +UniRef50_W5X3E8 Methyltransferase family protein 1.30470760912e-07 5.30350133583e-07 161436209.819 +UniRef50_UPI000475A333 PA phosphatase 2.24926556458e-06 6.52432806778e-07 -644660979.665 +UniRef50_B9KS80 7.03235595499e-05 4.07333386473e-06 -26746029090.8 +UniRef50_Q2FH51 Phosphate import ATP binding protein PstB 7.87024600936e-05 1.08270900115e-05 -27402119826.6 +UniRef50_UPI00045EA79E hypothetical protein, partial 1.79235714263e-07 1.21214110293e-06 416996580.581 +UniRef50_Q48PX1 Glutamate cysteine ligase 4.75791730614e-06 2.40891396338e-06 -948321474.985 +UniRef50_UPI0002F819F8 hypothetical protein 3.12634365069e-07 3.52962884221e-06 1298740147.38 +UniRef50_A0A059E2E8 2.46163086532e-06 1.24995935748e-06 -489166656.596 +UniRef50_W4MLS6 6.45409019781e-07 1.89669847082e-06 505160906.433 +UniRef50_B0VS92 Paraquat inducible protein 8.02024055691e-07 4.28871463285e-05 16990280304.1 +UniRef50_UPI00028A3C04 FAD linked oxidase like protein, partial 7.75731751936e-06 7.14475899663e-06 -247297392.564 +UniRef50_P39805 Transcription antiterminator LicT 1.45512233392e-05 1.37668687578e-05 -316653569.624 +UniRef50_Q1R7E0 1.08576986252e-06 1.26745367044e-06 73347982.7683 +UniRef50_P26496 Poly polymerase 2 1.41303140726e-05 2.13507059454e-06 -4842626990.3 +UniRef50_UPI000367451B acyl CoA dehydrogenase 4.78743894258e-08 2.37041328306e-07 76369014.5652 +UniRef50_UPI0003628C72 hypothetical protein 5.21809100936e-08 7.01728386137e-08 7263562.32936 +UniRef50_P44941 5.18489289229e-06 1.61677799396e-06 -1440491770.15 +UniRef50_F8HFC0 Conserved domain protein 3.71297693954e-06 1.33630840149e-05 3895866646.45 +UniRef50_UPI0003B3ED87 hypothetical protein 9.53143210034e-06 5.58704644371e-06 -1592396892.64 +UniRef50_E8SRI9 4.07912024397e-06 2.59786560303e-05 8841111334.45 +UniRef50_A6VD60 N acetylmuramoyl L alanine amidase 3.55382828736e-06 1.25222631175e-06 -929184961.386 +UniRef50_A7ZZW4 Porin, autotransporter family 6.22032132315e-07 9.43015851861e-07 129585066.494 +UniRef50_UPI00035F5AB5 hypothetical protein 1.34190554654e-08 6.75895101381e-08 21869277.2976 +UniRef50_Q5HLZ6 2.93215270654e-05 1.2478170642e-05 -6799869679.35 +UniRef50_UPI00035EE7D2 hypothetical protein 2.363075033e-07 5.09463641842e-08 -74832566.4981 +UniRef50_P76350 Shikimate transporter 2.28881105161e-05 6.85347587023e-06 -6473378773.64 +UniRef50_A0A023RZ85 Acyltransferase 2.25140748821e-06 5.3679891519e-05 20762310101.7 +UniRef50_O67505 Enoyl [acyl carrier protein] reductase [NADH] FabI 1.4607661015e-07 5.96734323828e-07 181936049.204 +UniRef50_Q1II13 Lipoyl synthase 4.97205632845e-08 2.73497131206e-07 90341346.5174 +UniRef50_U5SRV6 Integrase 9.0916436775e-06 2.06787907482e-07 -3586925303.8 +UniRef50_UPI0002F99873 hypothetical protein 7.52879708649e-07 8.34725419364e-07 33042117.7755 +UniRef50_B1GZG8 Polyribonucleotide nucleotidyltransferase 2.30560306413e-08 3.80074383713e-07 144132690.243 +UniRef50_G8V046 Abi like family protein 8.35641333997e-05 1.04839086085e-05 -29503383543.4 +UniRef50_A3ZYM8 Nicotinamide nucleotide transhydrogenase, subunit alpha 1.10398154318e-07 1.89988615123e-07 32131645.7118 +UniRef50_A5VJ31 Phospho N acetylmuramoyl pentapeptide transferase 6.74440336122e-08 2.04020552325e-05 8209332074.74 +UniRef50_UPI00034DE442 hypothetical protein 3.9097075572e-07 4.52408141216e-05 18106432136.3 +UniRef50_A4W1C0 Predicted Rossmann fold nucleotide binding protein involved in DNA uptake 5.39156754003e-05 6.56411191415e-05 4733705525.7 +UniRef50_A6LV77 Binding protein dependent transport systems inner membrane component 1.56416846208e-06 1.39052893388e-05 4982261940.51 +UniRef50_Q2YV12 PTS system EIIBC component SAB0132 0.00021023638325 8.70503714079e-05 -49731704643.0 +UniRef50_Q8YYY4 All0708 protein 2.12885467771e-06 8.38575360774e-07 -520901593.756 +UniRef50_K2ALU5 3.91705537255e-08 1.42303603638e-05 5729157471.82 +UniRef50_UPI00047EB60C hypothetical protein 5.72361017808e-07 2.95780504924e-07 -111658947.076 +UniRef50_H1QFS1 Thiamine biosynthesis protein ThiC 2.1938479151e-07 6.51561855976e-07 174475184.334 +UniRef50_UPI00036E98A9 hypothetical protein 1.03885614478e-07 6.39887312116e-08 -16106861.3645 +UniRef50_UPI00036F5F0F hypothetical protein 2.7394400557e-08 4.92754466736e-08 8833646.8279 +UniRef50_UPI000404FF04 hypothetical protein 3.08754379598e-08 2.25302279305e-07 78492501.7366 +UniRef50_P37440 Oxidoreductase UcpA 5.4153728881e-05 1.50233736391e-05 -15797404594.6 +UniRef50_R6ZPD9 6.77923950005e-05 4.91091209574e-05 -7542667000.75 +UniRef50_D6B3U1 Short chain dehydrogenase 1.81774954504e-06 2.83994053042e-05 10731340623.6 +UniRef50_B9KNU0 Helicase 3.19903380388e-06 4.73770115279e-06 621178890.327 +UniRef50_I6U2T1 Polyketide synthase 5.77455840596e-05 1.44824836425e-05 -17465844536.3 +UniRef50_A0ADL6 Putative iron sulfur protein 5.07174074505e-07 6.31331941209e-06 2344012122.2 +UniRef50_F2AG83 1.8977159471e-06 8.17257867503e-06 2533239084.49 +UniRef50_UPI00037E75DF histidine kinase, partial 2.84505651714e-05 1.74441730222e-05 -4443415574.25 +UniRef50_G4YB17 4.70258307442e-08 2.24652926066e-07 71710238.1111 +UniRef50_E0N9M8 6.26131496841e-06 4.58147135763e-06 -678173479.671 +UniRef50_P0AB72 Fructose bisphosphate aldolase class 2 3.78322417834e-05 4.93273927992e-06 -13281932883.0 +UniRef50_D7GD43 Deoxyguanosinetriphosphate triphosphohydrolase 5.25546411233e-06 6.60908776213e-05 24560002968.1 +UniRef50_G0HCK4 3.58224928212e-08 4.55392289206e-07 169385475.501 +UniRef50_Q5HKT7 0.000216374404631 5.29847990038e-05 -65962388807.5 +UniRef50_C5N3T1 8.97661188533e-05 1.66933286249e-05 -29500382119.2 +UniRef50_UPI0002BBFDEB hypothetical protein 6.24591617212e-07 4.11716574579e-07 -85940266.9815 +UniRef50_UPI00035D07EB hypothetical protein 4.49479173686e-08 1.74029835511e-07 52111954.3672 +UniRef50_UPI00016A9C60 major facilitator family transporter, partial 8.42368939224e-08 1.50562473805e-07 26776450.505 +UniRef50_C5N3T8 7.29184147672e-05 9.42500122969e-06 -25633070196.9 +UniRef50_D4HAP5 Transcriptional regulatory protein, C terminal domain protein 5.36709936758e-06 1.06967040494e-05 2151626811.65 +UniRef50_Q9CET9 Prephenate dehydrogenase 8.10984246014e-08 3.84845746202e-08 -17203734.1682 +UniRef50_UPI000316C479 histidine ammonia lyase 5.06609875226e-08 8.08897763226e-07 306109490.963 +UniRef50_P06612 DNA topoisomerase 1 3.49475483362e-05 7.47985834648e-05 16088351908.6 +UniRef50_UPI00029A4174 ABC transporter ATP binding protein 1.68667053234e-07 9.6584792319e-08 -29100493.2802 +UniRef50_P57699 Potassium transporting ATPase B chain 9.35950550024e-08 1.6336054402e-05 6557280155.77 +UniRef50_I0C7Y1 Arginine repressor 4.59183311569e-05 2.51631113437e-05 -8379136933.78 +UniRef50_L7WV22 4.26525117713e-07 6.80119551092e-07 102379184.709 +UniRef50_UPI0003B500DF ribosomal large subunit pseudouridine synthase C 1.89887291712e-07 7.49621047186e-07 225971385.79 +UniRef50_G2TQW7 Phosphotransferase system PTS sorbose specific IIC subunit 2.38915182824e-06 1.44446736115e-05 4866962081.81 +UniRef50_A6LU65 Methyl accepting chemotaxis sensory transducer 1.16399664264e-05 1.05391538354e-05 -444411551.476 +UniRef50_Q3J3Y0 0.000137870328616 1.44316847222e-05 -49833695302.5 +UniRef50_W7BZR4 4.5227939446e-07 1.01906148032e-06 228816883.26 +UniRef50_Q02137 Acetolactate synthase large subunit 0.000182537510425 3.59286795449e-05 -59187784118.9 +UniRef50_E4HVL3 YD repeat protein 3.37041061476e-06 3.04144366761e-05 10918005188.5 +UniRef50_P19931 Hydrogenase 1 operon protein HyaE 0.000127630668451 4.44756432589e-05 -33570704097.0 +UniRef50_UPI000378C27D hypothetical protein 7.09333524536e-08 3.3841638734e-07 107986183.569 +UniRef50_B8D1K5 ATP dependent 6 phosphofructokinase 2.39707260798e-07 1.86394317985e-07 -21523089.237 +UniRef50_UPI000382BE75 hypothetical protein 7.02483270442e-08 3.44558736015e-07 110742478.269 +UniRef50_UPI0003675045 ABC transporter substrate binding protein, partial 1.29395736412e-06 1.44321772973e-07 -464121995.762 +UniRef50_Q9RSM8 Endopeptidase IV related protein 9.25210757045e-07 9.38826557001e-05 37528061239.7 +UniRef50_B7LSY4 5.55126454193e-06 8.68578544689e-06 1265444554.23 +UniRef50_Q9CKJ2 L threonine dehydratase biosynthetic IlvA 1.73510491816e-07 2.38083568351e-07 26068943.3979 +UniRef50_A0A022CKG6 9.82600088995e-07 6.86595573602e-05 27322018140.0 +UniRef50_P0ACY5 4.28644086102e-05 2.02858248083e-05 -9115251351.21 +UniRef50_R1F809 2.16484833159e-06 2.34521922266e-06 72817942.1247 +UniRef50_B4U058 ComG operon protein 6 6.08943842376e-05 2.7915956023e-05 -13313796161.1 +UniRef50_UPI00047620B0 SAM dependent methyltransferase 2.70355211621e-07 2.01355413933e-07 -27856065.0494 +UniRef50_UPI00047183CB MFS transporter 4.31449464414e-08 7.38389117094e-08 12391530.436 +UniRef50_M1M9U7 Carbohydrate ABC transporter membrane protein 1, CUT1 family 9.63563047049e-06 1.02530598105e-05 249263801.272 +UniRef50_F0N593 Transcriptional regulator, AraC family 1.18706285809e-06 1.55821497554e-05 5811473228.02 +UniRef50_J9NX06 2.77554231966e-07 1.31843849903e-07 -58825069.3063 +UniRef50_Q04R37 Pyridoxine pyridoxamine 5 phosphate oxidase 7.44961960154e-08 9.74130718131e-07 363193496.335 +UniRef50_A0A020HGX4 3.15062796313e-06 6.06898327703e-07 -1026934868.9 +UniRef50_Q06473 Cytochrome c oxidase subunit 1 3.09093765927e-07 1.48315340541e-07 -64908223.3015 +UniRef50_K7RQC1 Amino acid or sugar ABC transport system, permease protein 2.95809976439e-06 4.02565066785e-05 15057824574.1 +UniRef50_P07251 ATP synthase subunit alpha, mitochondrial 3.77122466069e-08 1.01922977186e-07 25922659.8891 +UniRef50_K1C2I8 4.95970707103e-06 2.45669966279e-07 -1903114626.93 +UniRef50_UPI000383E572 5.88446714186e-06 7.03135012379e-06 463010733.642 +UniRef50_UPI00037611BB hypothetical protein, partial 1.05334996469e-07 1.34057154757e-07 11595487.7614 +UniRef50_B7UXU5 Homologous to beta keto acyl acyl carrier protein synthase 5.66905531537e-06 1.72029148656e-06 -1594164414.47 +UniRef50_B0VV71 1.38442294196e-06 0.000136793413741 54666271240.7 +UniRef50_D3E1B0 2.15947299551e-05 4.36315164312e-06 -6956599619.8 +UniRef50_UPI00044349DC PREDICTED 1.8347800315e-06 1.87370153073e-06 15713086.8597 +UniRef50_F5XE67 UTP glucose 1 phosphate uridylyltransferase 1.80436896891e-06 4.17632150567e-05 16131876515.8 +UniRef50_A7FAZ2 3.53924589576e-06 0.000100950231556 39326010278.2 +UniRef50_Q47158 2.02667483436e-05 8.14901208814e-06 -4892078827.69 +UniRef50_UPI0002000B64 antigen penicillin binding protein, partial 6.05063382824e-07 3.05470589451e-07 -120949287.102 +UniRef50_P37940 2 oxoisovalerate dehydrogenase subunit alpha 9.46781057598e-05 3.10497870178e-05 -25687533083.4 +UniRef50_A6LRN8 Ribosomal protein L11 methyltransferase 1.20218467792e-06 1.16480138946e-05 4217109439.52 +UniRef50_Q9KQH7 3 oxoacyl [acyl carrier protein] reductase FabG 1.98383928536e-05 0.000138883337855 48059905142.7 +UniRef50_S9Q6A0 6.84346628827e-08 1.3970785959e-07 28773864.1312 +UniRef50_UPI0003B3866E hypothetical protein 1.86541014542e-07 3.0843389201e-07 49209650.4276 +UniRef50_X6HEY2 2.68428930064e-07 2.85100372737e-07 6730465.9887 +UniRef50_A5G0R5 Polyhydroxyalkonate synthesis repressor, PhaR 3.3241252976e-07 1.03331811693e-07 -92482697.0202 +UniRef50_R4ZBL9 Cro Cl family transcriptional regulator 2.50543797907e-06 6.44638687976e-06 1591009432.09 +UniRef50_UPI0003B54D0C hypothetical protein 2.12599264863e-08 1.28924004324e-05 5196237368.89 +UniRef50_H8H715 2.3759807224e-06 5.32154663681e-05 20524524225.8 +UniRef50_Q3IVM9 Bacteriophage protein gp37 5.83826168783e-05 1.17747944019e-05 -18816149876.0 +UniRef50_B7UXM6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2.9142976758e-06 6.11207066372e-06 1290980196.31 +UniRef50_Q6F8A1 Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase) 1.43530794236e-06 7.50666565866e-05 29725879005.9 +UniRef50_P58740 Undecaprenyl diphosphatase 1 7.33814090902e-05 2.39834579225e-06 -28656733713.5 +UniRef50_P18275 Arginine ornithine antiporter 8.67813967949e-06 3.75652305693e-06 -1986917025.55 +UniRef50_UPI0003AB78DA PREDICTED 1.61245912958e-06 1.01935041895e-06 -239445264.744 +UniRef50_UPI000380609D hypothetical protein 8.92280642614e-07 1.30690972798e-06 167390849.833 +UniRef50_UPI0004715FA9 hypothetical protein 9.76727475219e-07 1.75958515938e-06 316049253.84 +UniRef50_Q7MP85 4 hydroxythreonine 4 phosphate dehydrogenase 1.7757419229e-05 9.26628884416e-05 30240257114.6 +UniRef50_UPI00037E8BAF cell envelope biogenesis protein TonB, partial 5.91093917794e-07 5.15297484259e-07 -30599950.3449 +UniRef50_A6LRY0 2.60467644753e-06 1.21531400606e-05 3854831933.42 +UniRef50_A3PPF7 1.88119675583e-05 3.89519309542e-06 -6022084900.08 +UniRef50_G7MD13 Cell wall binding repeat containing protein 5.49895586566e-06 4.79115938453e-06 -285746125.072 +UniRef50_UPI000478557C carbon monoxide dehydrogenase 9.04413972119e-07 7.48029729103e-07 -63134237.956 +UniRef50_B2RKJ1 NAD specific glutamate dehydrogenase 0.000125424250654 0.000218666685197 37643115038.4 +UniRef50_UPI000237AD1B aldehyde dehydrogenase 5.47673103459e-08 7.90669588018e-08 9810066.27187 +UniRef50_D2N4B3 Ribosomal protein serine N acetyltransferase 0.000203915143028 4.13540880737e-05 -65627892733.4 +UniRef50_D3R7P0 Queuine tRNA ribosyltransferase 3.22364335723e-06 5.58184202023e-05 21233156822.9 +UniRef50_Q4L8F8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000273878041441 5.37498131452e-05 -88868467040.2 +UniRef50_F3Y5B2 Putative fluoride ion transporter CrcB 4.64198979205e-07 3.88054017154e-07 -30740655.5837 +UniRef50_Q3IVD1 3 oxoadipate enol lactonase 4.41496941689e-05 1.35887031112e-05 -12337847115.5 +UniRef50_X5F4R0 3.79324233336e-05 1.46438035634e-05 -9401901584.73 +UniRef50_UPI0004636ECE hypothetical protein 2.09386709031e-06 1.2569312457e-06 -337881270.827 +UniRef50_C6S6X2 Gamma glutamyltranspeptidase 3.41155720662e-06 3.2292752057e-05 11659692773.2 +UniRef50_Q49Y11 Cytidine deaminase 0.000118382093491 8.98626558672e-06 -44164438162.6 +UniRef50_P38051 Menaquinone specific isochorismate synthase 2.67667547568e-05 5.65095116097e-06 -8524709031.67 +UniRef50_D4H9R3 YjeF domain protein 2.75194618029e-06 3.73096243432e-05 13951358744.8 +UniRef50_UPI00035965D6 PREDICTED 7.43026692316e-07 2.48392921378e-07 -199689723.167 +UniRef50_A0A011PJV1 Dihydrofolate reductase 1.14782154589e-07 6.87603095704e-07 231254843.232 +UniRef50_Q9RTK3 2.16945970609e-06 0.000466683950739 1.87530200264e+11 +UniRef50_A1WST0 Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding 4.8333673348e-07 1.65824350589e-05 6499403552.12 +UniRef50_O33655 Lactate 2 monooxygenase 2.16823602716e-07 1.25427085928e-05 4976111026.12 +UniRef50_J3BE74 Metallo beta lactamase superfamily enzyme 1.90335031064e-06 3.58392100569e-07 -623718588.174 +UniRef50_UPI0001745109 peptide ABC transporter permease 4.32249417887e-07 2.95853640993e-07 -55064648.8965 +UniRef50_Q89AT8 NADH quinone oxidoreductase subunit J 1.82704594843e-07 2.95249777038e-07 45435871.1368 +UniRef50_Q9RZK0 3.78748483804e-06 6.25384889509e-05 23718501316.3 +UniRef50_F4FQW3 Recombinational DNA repair protein RecT 0.000176772474001 3.1979146898e-05 -58454842965.4 +UniRef50_Q8YIY0 Phosphoglycerate kinase 4.80601230375e-05 9.56686164383e-06 -15540201990.1 +UniRef50_UPI0004258808 hypothetical protein 1.52245565301e-08 8.5240506919e-08 28266298.3643 +UniRef50_UPI000225F0D6 hypothetical protein 6.66327452548e-08 7.35228311697e-06 2941306460.05 +UniRef50_UPI000362EC3A hypothetical protein 5.21964361489e-07 1.3820252403e-07 -154929363.07 +UniRef50_Q17XQ8 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 2.86808815281e-06 6.49398675032e-05 25059139030.1 +UniRef50_Q9RSF5 Drug transport protein 1.81283923867e-06 0.0002800437642 1.12325238684e+11 +UniRef50_UPI0003B73A04 AsnC family transcriptional regulator 2.37792613004e-06 6.48074969304e-07 -698362141.252 +UniRef50_UPI00035D1A94 hypothetical protein 1.81559160811e-06 3.04466972403e-07 -610059559.021 +UniRef50_Q6APZ3 Prolipoprotein diacylglyceryl transferase 2.44203682889e-07 1.40973977457e-07 -41675098.8538 +UniRef50_R7N4H0 Pyridine nucleotide disulfide oxidoreductase 3.2310301134e-06 9.14172891312e-06 2386221637.88 +UniRef50_A9WA88 Xanthine phosphoribosyltransferase 1.37793206945e-07 3.01307503126e-07 66012727.9143 +UniRef50_B3E7C1 5.03082333324e-07 1.9323718653e-07 -125088287.988 +UniRef50_D8U7R0 9.49365771667e-08 1.11125673445e-07 6535736.8301 +UniRef50_Q9ZJ75 Ribulose phosphate 3 epimerase 1.66035744343e-07 2.31493607223e-05 9278650330.73 +UniRef50_Q3J229 0.000126149558799 4.39772592246e-05 -33173965705.7 +UniRef50_Q3J227 0.000292566891742 4.82806602495e-06 -1.16163694894e+11 +UniRef50_UPI00038131B7 hypothetical protein 1.0023417839e-07 1.38110033496e-07 15290947.4953 +UniRef50_UPI0001F85C49 biotin synthase like protein 2.48935217411e-07 4.38051141605e-07 76348419.3105 +UniRef50_M4ZJP4 1.17474892792e-06 1.39895567705e-05 5173495181.43 +UniRef50_G7U4I0 Uroporphyrinogen III synthase 3.70760693428e-06 4.78929559332e-05 17838167606.1 +UniRef50_M1NMK8 1.46499384341e-07 8.34672844958e-07 277824070.889 +UniRef50_X0U0K9 Marine sediment metagenome DNA, contig 9.19524785138e-08 2.70521399083e-05 10884158504.1 +UniRef50_Q3JUG7 Xanthine uracil permease family protein 9.215419328e-06 9.94122766295e-05 36413578132.5 +UniRef50_UPI0002627BB0 50S ribosomal protein L15, partial 1.79456420581e-06 6.03213224877e-06 1710758219.75 +UniRef50_R9SMQ4 Phosphate ABC transporter permease protein PstA 8.34233270323e-06 1.26105161592e-05 1723118037.68 +UniRef50_K0T1H0 7.25005100276e-07 2.11926619617e-07 -207136078.823 +UniRef50_K0WK29 7.79260799929e-06 5.09042750724e-05 17404709037.1 +UniRef50_A4WTM8 1.49837666892e-05 1.17168609764e-06 -5576106428.12 +UniRef50_A1BAY3 2.89063807021e-07 1.55651349652e-07 -53860246.1948 +UniRef50_Q3IZ78 Mesaconyl CoA hydratase 5.73205588246e-05 1.59479613416e-05 -16702625302.8 +UniRef50_P19366 ATP synthase subunit beta, chloroplastic 1.9666321806e-07 4.51583984968e-07 102914641.83 +UniRef50_P49189 4 trimethylaminobutyraldehyde dehydrogenase 8.71099199654e-08 1.18016311535e-07 12477289.5407 +UniRef50_UPI0003627DD4 30S ribosomal protein S4 5.28344492532e-07 3.64703627265e-07 -66063825.4075 +UniRef50_UPI000455E0E7 ribosomal protein S12 6.22918789034e-07 7.00941753509e-07 31498828.208 +UniRef50_F2I9T6 Endoribonuclease L PSP 1.56375456285e-06 6.00301912227e-07 -388957657.95 +UniRef50_UPI000370459E hypothetical protein, partial 8.18503056861e-08 7.04640774292e-06 2811677302.14 +UniRef50_Q03SV2 Ribose 5 phosphate isomerase A 3.52133774432e-05 8.6749659062e-06 -10713882400.4 +UniRef50_UPI0002EFA82A nucleoside triphosphate pyrophosphohydrolase 8.65653773257e-08 6.02953775856e-08 -10605521.2642 +UniRef50_Q9Z670 Gluconate permease 1.45790358184e-07 1.31290205501e-07 -5853889.57501 +UniRef50_UPI00036A5335 CRISPR associated protein Csd1, partial 7.09507604288e-06 3.86541654168e-06 -1303853173.01 +UniRef50_K0S333 2.47427271148e-07 8.58985428236e-08 -65211129.8048 +UniRef50_A3T0X3 1.63630822506e-06 1.82507353108e-06 76206870.4511 +UniRef50_Q21VW6 NADPH dependent 7 cyano 7 deazaguanine reductase 9.69594158272e-08 2.80363960626e-06 1092720007.58 +UniRef50_A7ZQ55 NAD kinase 2.75759212725e-05 1.10914761965e-05 -6654972764.07 +UniRef50_A6LZN3 Hydrogenase accessory protein HypB 2.28151517949e-05 5.59695659009e-06 -6951196695.19 +UniRef50_Q2FJN4 Alkyl hydroperoxide reductase subunit C 9.19021265587e-05 2.78387878248e-05 -25863155992.4 +UniRef50_UPI0004658AD9 saccharopine dehydrogenase 4.82890507104e-07 2.54659291322e-06 833141985.827 +UniRef50_UPI0003F63AFE GntR family transcriptional regulator 3.27638487637e-08 4.90224030191e-08 6563777.8678 +UniRef50_V8FYN5 CoA activase 3.40082618917e-06 1.45180639083e-05 4488165291.05 +UniRef50_E3D490 6.72386425058e-06 3.54651672606e-05 11603216720.6 +UniRef50_Q2FH66 Indole 3 glycerol phosphate synthase 0.00017500966047 5.69041151961e-05 -47680657945.1 +UniRef50_B7V4W8 7.12657001806e-06 1.17375640368e-05 1861514868.62 +UniRef50_Q53135 Chemotaxis protein CheA 0.000128211307401 4.67647995935e-05 -32880954662.9 +UniRef50_A5IVV5 Sortase family protein 0.000205420931422 4.53185729897e-05 -64635286775.9 +UniRef50_E9JFX9 Dimethyl sulfide monooxygenase 6.83977558455e-06 8.6723544519e-05 32250057802.9 +UniRef50_C4K6C1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.000152517677422 1.32444778914e-05 -56226299725.0 +UniRef50_B4R8Q8 Peptidyl tRNA hydrolase 5.11134021247e-07 3.22681257508e-07 -76080693.2969 +UniRef50_P29968 Putative dehydrogenase XoxF 0.000118453384729 2.37847082998e-05 -38218906389.8 +UniRef50_U4V1U2 6.33472291306e-05 3.87423167729e-06 -24009978887.6 +UniRef50_Q74I62 Putative ABC transporter ATP binding protein LJ_1704 7.23965592388e-05 2.35200600469e-05 -19732042505.9 +UniRef50_D4MDT9 3.15002144198e-07 6.26113155893e-06 2400525411.94 +UniRef50_Q60177 Proteasome subunit alpha 2.00234204499e-05 2.39769990679e-06 -7115719675.16 +UniRef50_Q2FS70 30S ribosomal protein S7 3.56484645398e-05 5.25786418738e-06 -12269058296.9 +UniRef50_P44432 Enoyl [acyl carrier protein] reductase [NADH] FabI 3.34713666784e-05 5.3045623206e-05 7902367563.33 +UniRef50_P28274 CTP synthase 1 5.24020755106e-08 1.10182567853e-06 423665186.415 +UniRef50_A6LZD7 Flavin reductase domain protein, FMN binding 1.99026004668e-06 1.01165996604e-05 3280703023.46 +UniRef50_W8W2G5 1.05165722563e-06 5.7035452857e-06 1878024294.94 +UniRef50_C6XI98 Fe S metabolism associated SufE 9.45299442955e-07 1.78229946224e-07 -309675368.832 +UniRef50_P33352 2.23248240016e-05 5.08538814678e-06 -6959771806.25 +UniRef50_P33353 2.51378733583e-05 7.29354687196e-06 -7203973577.03 +UniRef50_F8JL19 4.4952903581e-08 4.62145704483e-06 1847590881.84 +UniRef50_G7ZSB9 Nucleoside permease 0.000205288050156 5.98075778161e-05 -58732251929.8 +UniRef50_UPI0003676E77 hypothetical protein 1.50654716095e-07 2.43731711017e-07 37576325.0332 +UniRef50_B7LSZ0 Cytoplasmic trehalase 3.18869190526e-05 1.52090322351e-05 -6733067568.91 +UniRef50_W1MRE5 General secretion pathway protein D 2.42676423441e-06 2.93763150069e-06 206243384.444 +UniRef50_Q1NCJ9 3.79238905892e-07 5.13775231482e-07 54313965.5871 +UniRef50_O34481 ATP dependent RecD like DNA helicase 1.20263455103e-07 9.02363051583e-06 3594398539.02 +UniRef50_I1QUN8 2.26823941402e-06 8.75678654467e-08 -880363864.007 +UniRef50_D6EJV1 Transcriptional regulatory protein 4.53291282004e-07 1.16149010866e-06 285908556.898 +UniRef50_Q8E7K5 4 diphosphocytidyl 2 C methyl D erythritol kinase 3.0708834998e-05 3.30322027954e-05 937972090.739 +UniRef50_M4QZK0 Alpha beta hydrolase family protein 2.96661826224e-06 7.41991463758e-05 28757445720.9 +UniRef50_UPI000262F232 cytochrome c oxidase subunit I, partial 1.55931085724e-06 5.5506090193e-06 1611336046.76 +UniRef50_P61429 Periplasmic [NiFe] hydrogenase small subunit 2 6.37963548497e-07 1.89667285623e-07 -180982702.536 +UniRef50_H7CVU9 FliB family protein 2.05602390439e-06 1.47753393576e-05 5134943732.01 +UniRef50_U5MR93 Sensor histidine kinase YvrG 4.63777779289e-06 1.11517935784e-05 2629788108.57 +UniRef50_M9VFE8 Low molecular weight phosphotyrosine protein phosphatase 2.75537218136e-06 7.87924822684e-05 30697114422.4 +UniRef50_A3LER3 4.41446232265e-05 1.00676149498e-05 -13757306413.2 +UniRef50_F1UR15 BNR Asp box repeat protein 2.26491593311e-06 2.67074677529e-05 9867758113.49 +UniRef50_Q5FQE8 Leucyl phenylalanyl tRNA protein transferase 1.89966206479e-07 5.67102383896e-07 152254502.805 +UniRef50_D9SN85 Glutathione peroxidase 4.75856278317e-06 1.30645942102e-05 3353246813.56 +UniRef50_H2CHQ0 Magnesium protoporphyrin chelatase 1.15894856147e-07 1.09151275654e-06 393868918.567 +UniRef50_R6QPN1 MaoC domain containing protein 3.43644226243e-07 3.4959274639e-07 2401490.57989 +UniRef50_UPI000378EE65 hypothetical protein 1.57251568903e-06 2.23593159626e-07 -544576578.26 +UniRef50_A0A023RUE3 3.01988791085e-06 3.15417711711e-05 11514634275.0 +UniRef50_Q3J1F8 4.10310857448e-06 1.97510419034e-05 6317262706.61 +UniRef50_Q3J1F7 0.000208445033174 9.76986721725e-05 -44709664946.8 +UniRef50_Q3J1F6 3.15502747031e-05 1.37635270273e-05 -7180728304.66 +UniRef50_U5T8A8 9.94971920716e-08 4.05608903942e-07 123581054.495 +UniRef50_K0HDE0 tRNA rRNA cytosine C5 methylase 3.72333068099e-06 5.41006285113e-05 20337933333.1 +UniRef50_A8AMK7 7.62632540255e-06 1.0227035599e-05 1049938620.61 +UniRef50_B2TKI7 Serine type D Ala D Ala carboxypeptidase 1.02299725981e-06 1.23582843999e-05 4576194518.07 +UniRef50_UPI000474D5BE ABC transporter substrate binding protein 6.25768387806e-08 9.45205436108e-08 12896065.6333 +UniRef50_P20966 PTS system fructose specific EIIBC component 2.09107048136e-05 7.36726751083e-05 21300654870.2 +UniRef50_Q6AFY0 Glutamate 5 kinase 6.1677719135e-08 2.65550382283e-07 82305895.9118 +UniRef50_W1DU15 4.65667300084e-07 3.38951472329e-07 -51156734.6428 +UniRef50_Q9TM10 1,4 Dihydroxy 2 naphthoyl CoA synthase 3.28202013443e-07 1.78517585979e-05 7074474831.38 +UniRef50_UPI0004704F45 hypothetical protein, partial 1.27064575081e-05 1.41957669611e-06 -4556652289.41 +UniRef50_Q4L3X4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000149898624179 2.71817457813e-05 -49542309714.7 +UniRef50_W8RT27 Cation transport protein chaC 2.27651293274e-05 4.4485747603e-06 -7394617848.14 +UniRef50_P9WPD4 Citrate synthase 1 0.000113707570175 0.000167683093421 21790581088.6 +UniRef50_A9U864 Predicted protein 4.04835219587e-07 2.16077389641e-07 -76203852.2682 +UniRef50_A3MR63 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 2.62084502793e-06 3.44372305919e-05 12844665283.1 +UniRef50_I0C5H5 0.000221089196473 3.69081817815e-05 -74356135786.0 +UniRef50_A7MHJ0 Multidrug resistance protein MdtC 3.26253936736e-06 6.54079081232e-07 -1053067426.92 +UniRef50_Q9ZKU4 Phosphate acetyltransferase 8.3957196985e-07 1.76656159321e-05 6792880426.32 +UniRef50_A6M1S0 Glycoside hydrolase, clan GH D 2.28178381989e-06 1.91982715527e-05 6829393686.38 +UniRef50_Q6AA51 L fucose isomerase 2.15706279348e-06 4.17994543444e-05 16004119935.9 +UniRef50_UPI000299F06B amino acid carrier protein 2.85858601498e-08 3.44522100366e-06 1379337534.26 +UniRef50_UPI0003FD6D14 preprotein translocase subunit SecY 3.66921986831e-08 3.23183384054e-06 1289917889.62 +UniRef50_Q3KE48 Macrolide export ATP binding permease protein MacB 2 2.63709742845e-08 5.44853369273e-08 11350113.2009 +UniRef50_UPI00037DAE2C hypothetical protein 1.14269289755e-06 6.06010743363e-07 -216665171.476 +UniRef50_UPI00044207B4 PREDICTED 1.40318390029e-07 2.50539843762e-07 44497753.4413 +UniRef50_UPI000427E2A8 MULTISPECIES 5.1160787201e-08 1.93947936289e-07 57644924.2822 +UniRef50_D2J8Q0 0.000273548738913 4.92647470874e-05 -90546199774.2 +UniRef50_UPI00047CFA7B transcriptional regulatory protein LPC_0711 1.23483993087e-07 2.70832667065e-07 59486467.8565 +UniRef50_D2J8Q4 0.000234684508688 0.000124695349464 -44403973297.5 +UniRef50_A0A023X187 Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain 9.73972226156e-05 4.14868564779e-05 -22571700907.1 +UniRef50_UPI00035F5A7F MULTISPECIES 2.1572836793e-06 7.54532659831e-07 -566307800.251 +UniRef50_Q97LP2 Putative gluconeogenesis factor 3.88762706854e-06 3.03045189421e-05 10664823421.1 +UniRef50_P25130 5.40355463117e-05 3.94615334061e-05 -5883707853.24 +UniRef50_K7SFI0 MMPL family protein 9.37474133492e-07 4.28479540653e-05 16919775047.9 +UniRef50_UPI0003B3F8CA cysteine desulfurase 6.8598991231e-07 6.35554557128e-08 -251284428.258 +UniRef50_UPI000455DBA8 alcohol oxidase 9.08362744899e-08 3.81624592824e-08 -21265065.5797 +UniRef50_F2I8T3 PTS system mannose fructose sorbose family IID component 4.27266965028e-06 1.07137923123e-05 2600360260.12 +UniRef50_E5QSU8 Transcriptional regulator, AraC family 9.03538083312e-05 1.70685068881e-05 -29586175504.4 +UniRef50_A0A011QY39 3 isopropylmalate dehydrogenase 2.13506550549e-07 4.0241419582e-07 76264334.5534 +UniRef50_A3V9P5 1.61520221422e-07 3.22505371603e-07 64991680.638 +UniRef50_UPI0003C140C5 PREDICTED 4.86692983414e-07 1.88666389327e-07 -120316993.23 +UniRef50_Q56200 UPF0045 protein in glkA 3region 3.49552586281e-05 1.48899179089e-05 -8100624277.76 +UniRef50_P43340 5.46998098416e-05 1.25325329887e-05 -17023447116.2 +UniRef50_Q03638 Glutamine dependent NAD synthetase 3.4038778168e-05 1.20856425564e-05 -8862750241.67 +UniRef50_X1F3U5 Marine sediment metagenome DNA, contig 1.49113208648e-07 4.18034837332e-08 -43322252.7866 +UniRef50_UPI00035E72A3 hypothetical protein 7.52799755192e-07 7.73908187746e-07 8521733.25165 +UniRef50_Q1LT55 Threonylcarbamoyl AMP synthase 2.19234459655e-05 4.25937555561e-06 -7131201987.0 +UniRef50_X1SY05 Marine sediment metagenome DNA, contig 3.41847846401e-06 1.27314394853e-06 -866097870.114 +UniRef50_Q12EY5 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.64825334368e-07 5.35633793892e-07 -52156210.2486 +UniRef50_I6T636 MutG 5.00147752383e-05 1.04286629288e-05 -15981399315.6 +UniRef50_D7DI05 1.18529861155e-07 1.13447712445e-06 410150377.265 +UniRef50_S5YTV6 TRAP type C4 dicarboxylate transport system, periplasmic component 0.000133092081594 5.37253844266e-05 -32041309585.4 +UniRef50_UPI0002EB61A9 hypothetical protein 1.24129652105e-07 6.26385048384e-07 202766666.845 +UniRef50_J9YRQ7 ABC transporter ATP binding protein 2.40948503526e-06 7.82164227135e-06 2184954290.85 +UniRef50_A8AVU5 Cell cycle protein GpsB 1.66450129044e-05 2.04299602631e-05 1528029695.23 +UniRef50_UPI0002887069 aldehyde dehydrogenase 2.04492784773e-07 5.6382479142e-08 -59793947.9011 +UniRef50_B1XZ42 40 residue YVTN family beta propeller repeat protein 5.34439096609e-08 9.18979337018e-08 15524361.3893 +UniRef50_F9Y8T0 2.59859155757e-07 8.18775957644e-07 225641571.602 +UniRef50_E4N2K8 5.05809124277e-07 1.0865013728e-07 -160337956.74 +UniRef50_K7WGH8 1.85885899069e-06 2.81399618593e-07 -636839706.12 +UniRef50_UPI00041077BF hypothetical protein 1.03339225354e-06 2.57742082024e-07 -313139492.539 +UniRef50_I6R4V1 Putative outer membrane protein 1.71386461242e-07 5.22012740727e-07 141552131.696 +UniRef50_Q3SF48 DEAD DEAH box helicase 8.92401864878e-07 2.92054196691e-05 11430312727.4 +UniRef50_W6RFV5 2.05505349017e-06 9.64489166481e-07 -440274200.203 +UniRef50_D3PQJ8 Thioesterase superfamily protein 1.2651837593e-07 2.32909892151e-05 9351781137.81 +UniRef50_P39852 Putative tyrosine protein phosphatase CapC 0.000228677104357 5.38371027409e-05 -70585054180.5 +UniRef50_Q1JBZ2 Xaa His dipeptidase 4.8986855135e-05 5.73969953438e-05 3395276806.32 +UniRef50_R5EHV3 1.2095598812e-06 5.02489268354e-07 -285453083.138 +UniRef50_T1ZCM0 Endonuclease, putative 3.68165158001e-05 1.54354284959e-05 -8631807320.15 +UniRef50_J1RUT9 Dehydrogenase 1.03409468992e-06 7.29107979874e-08 -388041732.226 +UniRef50_W6ELT6 Glutathionylspermidine synthetase 2.34463347108e-06 3.06372437279e-05 11422073950.0 +UniRef50_Q97K94 Quinolinate synthase A 4.63736915189e-06 3.85005668224e-06 -317847705.408 +UniRef50_P39438 Undecaprenyl diphosphatase 2.80239581447e-06 2.28631823718e-07 -1039060106.7 +UniRef50_R7LCT1 2.1712008157e-07 9.73644342857e-07 305418127.878 +UniRef50_O34546 9.55950544247e-05 2.30176246689e-05 -29300399017.6 +UniRef50_D0W2S1 7.18295583812e-06 8.69862414418e-05 32217565694.7 +UniRef50_I3U2U9 Iron ABC superfamily ATP binding cassette transporter, ABC protein 0.000100270564082 6.72196088517e-05 -13343076207.3 +UniRef50_Q5X449 1.51498074756e-07 1.15278825886e-05 4592786032.16 +UniRef50_L1K8B7 0.00012753794904 2.98438446265e-05 -39440308793.2 +UniRef50_A6LYL7 Methyl accepting chemotaxis sensory transducer 4.48253835515e-06 1.51624221087e-05 4311600128.2 +UniRef50_UPI000185085B tyrosyl tRNA synthetase 2.31211636328e-07 5.77033695808e-07 139612609.126 +UniRef50_P45767 Putative amino acid ABC transporter permease protein YhdX 2.03992669816e-05 1.46380685304e-05 -2325866512.6 +UniRef50_UPI0003B66746 RNA polymerase sigma factor RpoD, partial 2.09647679644e-07 9.98240321908e-08 -44337154.1645 +UniRef50_Q5HNC9 ISSep1 like transposase 5.11786813867e-05 3.49963448291e-05 -6533007847.9 +UniRef50_G8AR28 9.83890500953e-07 3.23045027969e-06 906963751.066 +UniRef50_Q2S9Q5 Shikimate kinase 2.16171300586e-07 1.31698154875e-07 -34102845.5256 +UniRef50_W7QBC1 4.18554950343e-08 4.50381329481e-07 164926892.542 +UniRef50_Q03Z27 Methionine import ATP binding protein MetN 3.4926307475e-05 3.95606905278e-05 1870957308.69 +UniRef50_UPI0004782D1F crotonyl CoA reductase 3.8665213185e-06 4.64929529619e-07 -1373264347.4 +UniRef50_Q6GF03 Alanine racemase 1 0.000212928500092 4.8768586199e-05 -66273371707.3 +UniRef50_A8FHJ2 Triosephosphate isomerase 0.000104497424988 1.05810507073e-05 -37915192780.6 +UniRef50_Q73GH4 NADH quinone oxidoreductase subunit I 8.46826360213e-05 6.74887412809e-05 -6941386299.51 +UniRef50_A1JK30 Fatty acid oxidation complex subunit alpha 1.13191549265e-05 4.78620154531e-06 -2637433448.34 +UniRef50_UPI00045D739F 1.83426520829e-07 6.35401538127e-07 182467860.84 +UniRef50_B9KWI6 ABC 2 type transporter 2.69422808131e-05 9.18886451209e-06 -7167272019.63 +UniRef50_Q1GCN0 MltA 1.80681039408e-05 3.55804693941e-06 -5857888069.89 +UniRef50_O29777 Probable copper exporting P type ATPase A 3.66428805917e-08 7.11730660171e-08 13940259.5893 +UniRef50_Q9RRB7 Probable manganese dependent inorganic pyrophosphatase 4.34634491936e-06 0.000568105207464 2.27596370909e+11 +UniRef50_R9SLB3 3.78520327101e-05 5.69981332219e-06 -12980245519.0 +UniRef50_B4RR70 Acyl CoA dehydrogenase, C terminal 2.09668340276e-06 8.91002373343e-07 -486748226.947 +UniRef50_A3PQF0 Extracellular solute binding protein, family 3 9.71884680711e-05 2.92279899301e-05 -27436478994.4 +UniRef50_D7GG00 Na+ H+ antiporter 1.07955954865e-06 3.79881285644e-05 14900442230.8 +UniRef50_Q6A7Y1 Glutamyl Q tRNA synthetase 3.11726804988e-07 7.40338958482e-05 29762544315.5 +UniRef50_A0YH35 2.34404390814e-06 6.49864447795e-06 1677263232.71 +UniRef50_A0A023RSS6 rRNA methyltransferase 1.73158710486e-06 6.51787625754e-05 25614403321.8 +UniRef50_N6UYS2 1.24252569829e-06 2.42571279646e-06 477667150.87 +UniRef50_UPI0003B3CC7C methyltransferase 1.70914943342e-07 5.52876165317e-07 154202432.503 +UniRef50_UPI000477CA46 alcohol dehydrogenase 7.58175173943e-08 5.8261944898e-07 204602158.94 +UniRef50_A9B3R2 Lon protease 2 1.63816700317e-08 7.89429011562e-08 25256736.7176 +UniRef50_J0ZPJ9 3.70084302795e-06 5.01954739708e-06 532377136.14 +UniRef50_UPI000473C272 hypothetical protein, partial 4.15273859945e-07 2.55607838118e-07 -64459132.334 +UniRef50_T8WTI4 Arylsulfatase 1.85705705839e-05 9.51413314313e-06 -3656194929.82 +UniRef50_M5F699 1.74714412176e-05 2.91997297174e-07 -6935552326.15 +UniRef50_J7IM71 Drug resistance transporter, EmrB QacA subfamily 8.30074092833e-06 2.50460938908e-05 6760304479.55 +UniRef50_Q7AJV9 Na+ H+ antiporter 8.5755593552e-08 7.22041787934e-07 256876544.782 +UniRef50_A4IRH3 Trigger factor 0.000196593345938 6.899484045e-05 -51513082475.2 +UniRef50_Q8XCW6 Protein SprT 4.17188256124e-05 2.30889098632e-05 -7521125602.73 +UniRef50_UPI0004656097 hypothetical protein 6.14098489997e-08 7.68714239811e-08 6242027.55485 +UniRef50_B2TPE7 Cobyric acid synthase 7.64657641136e-07 9.21124198382e-06 3409989750.39 +UniRef50_A0A023RH98 Immunogenic protein 4.17796295122e-07 1.27082182012e-07 -117364854.926 +UniRef50_B9KM49 1.46637509717e-05 7.40046318501e-07 -5621170431.57 +UniRef50_M9R6A5 Ribose 5 phosphate isomerase A 5.39829053595e-05 2.3815863322e-06 -20832085710.7 +UniRef50_Q1CUH3 Tetraacyldisaccharide 4 kinase 1.75032143208e-06 3.4728619872e-05 13313743769.4 +UniRef50_M7WMK4 1.20177663598e-08 2.19029291616e-07 83573093.0629 +UniRef50_Q8CTN4 6.07940714894e-05 2.24217023839e-05 -15491396289.8 +UniRef50_Q5HQC2 Aminotransferase, class I 0.000175013265377 3.04322508701e-05 -58369129765.0 +UniRef50_X1ED13 Marine sediment metagenome DNA, contig 5.97144146278e-07 4.22119354768e-07 -70659656.1283 +UniRef50_UPI0003B41E95 beta hexosaminidase 2.54937698522e-07 3.53412127659e-07 39755335.4597 +UniRef50_Q89FK3 Bll6696 protein 3.83234506454e-06 5.92418895915e-05 22369513077.1 +UniRef50_A9M2J7 Nicotinate nucleotide pyrophosphorylase 6.58498470807e-06 2.22283271526e-05 6315409310.24 +UniRef50_W1I511 Uncultured bacterium extrachromosomal DNA RGI02237 9.11825855719e-08 7.4326048067e-07 263251848.147 +UniRef50_G0HG32 Short chain dehydrogenase 3.3631284139e-06 8.91836598299e-05 34646801669.0 +UniRef50_Q4L8L0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000232927222927 7.1746016286e-05 -65070831036.8 +UniRef50_R4KHK5 ADP forming acetyl coenzyme A synthetase 2.88203896426e-05 2.8576736418e-06 -10481467047.9 +UniRef50_T7WH30 Electron transfer flavoprotein beta subunit 1.43420076665e-05 3.04450211538e-06 -4560941626.96 +UniRef50_UPI00047D95CB hypothetical protein 4.95016765882e-07 2.51119688013e-07 -98464243.2894 +UniRef50_A5UZH7 NADH quinone oxidoreductase subunit D 2 3.61454906705e-08 1.07086419769e-06 417728639.45 +UniRef50_UPI0003627E6E hypothetical protein 1.45387369845e-07 2.43940855843e-07 39787251.6847 +UniRef50_UPI000477A59D MFS transporter 2.13041021088e-07 8.01154522184e-07 237428637.357 +UniRef50_UPI000248D54F phosphofructokinase 1.48605882201e-07 8.45283208573e-08 -25868897.8346 +UniRef50_UPI000379B3FC hypothetical protein 8.50231617535e-08 1.44756458196e-07 24115064.7838 +UniRef50_G7M6V5 Drug resistance transporter, EmrB QacA subfamily 2.03396142896e-06 1.34039016278e-05 4590184383.11 +UniRef50_UPI0002FCF501 hypothetical protein 1.08354607452e-06 2.54234371448e-07 -334803311.329 +UniRef50_C1D381 4.80159593664e-07 3.62389027128e-07 -47545422.918 +UniRef50_R4RP03 1.03577717835e-05 3.80907636008e-06 -2643788703.96 +UniRef50_UPI0004721298 GTP pyrophosphokinase, partial 3.43618786593e-08 7.60515974612e-08 16830651.0707 +UniRef50_UPI0004798C74 hypothetical protein, partial 1.57031175346e-06 6.89419956487e-07 -355626828.196 +UniRef50_UPI00017465EA acetylornithine aminotransferase 2.76712976279e-08 5.71974596922e-08 11920073.9521 +UniRef50_I5AX29 ABC type multidrug transport system, ATPase and permease component 4.23121384711e-05 1.48688250167e-05 -11079202408.9 +UniRef50_E0TQE3 1.41080003062e-06 3.9259219208e-07 -411062999.234 +UniRef50_R7SQ97 7.72375205943e-07 3.57682137179e-06 1132189331.58 +UniRef50_W0YYF5 2.0076192379e-06 3.22328747082e-06 490780183.557 +UniRef50_Q18C09 Methionine import ATP binding protein MetN 2.89049725947e-06 1.29822842007e-05 4074178228.31 +UniRef50_UPI0003F12680 PREDICTED 1.18324974822e-08 6.52831408315e-09 -2141363.92785 +UniRef50_B8FI62 Phosphopantetheine adenylyltransferase 3.6175700425e-07 1.5669971108e-07 -82784145.5887 +UniRef50_P38527 Transcription termination factor Rho 0.000249334743059 5.87133716058e-05 -76956186842.9 +UniRef50_R6FSL2 1.25828662949e-06 1.85680017089e-05 6988144391.64 +UniRef50_UPI000344160C 3.04190551264e-06 7.21331912429e-08 -1198933529.35 +UniRef50_D2JFR4 5.47407329753e-06 2.55043684328e-06 -1180307913.63 +UniRef50_Q6G5A9 Shikimate dehydrogenase 4.71452623886e-07 3.6562461352e-07 -42724066.4405 +UniRef50_D2JFR8 0.000479451247822 0.000103019864525 -1.5196996877e+11 +UniRef50_G4Q931 3.1512990344e-06 8.37598391883e-06 2109269401.94 +UniRef50_F2IXV2 GfdT protein 8.39978823267e-08 5.92213840265e-08 -10002576.4056 +UniRef50_Q5HM63 Drug resistance transporter, EmrB QacA family 0.00021279683306 7.48211429318e-05 -55702479256.8 +UniRef50_UPI0003651980 hypothetical protein 2.03368464082e-08 4.37435610398e-08 9449577.92947 +UniRef50_UPI00037DFBE2 hypothetical protein 4.66491567994e-07 4.49004538372e-08 -170201506.29 +UniRef50_Q2G3T3 ATP dependent Clp protease proteolytic subunit 7.93737242993e-08 9.69724582376e-07 359445567.239 +UniRef50_T9PRX2 8.65790300272e-06 2.33791671239e-06 -2551456020.36 +UniRef50_UPI00036A03C0 hypothetical protein 1.74687767135e-06 1.47026249191e-06 -111672942.39 +UniRef50_C3MFX0 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.12899308735e-05 1.96397728304e-06 -3765001906.79 +UniRef50_R9SIP9 CoB CoM heterodisulfide reductase subunit B HdrB1 2.57696771695e-05 9.87743006891e-06 -6415895174.31 +UniRef50_O26278 tRNA guanine transglycosylase 3.02238591038e-05 8.01940633003e-06 -8964210064.06 +UniRef50_S6QJ91 Aryldialkylphosphatase 1.46410463029e-06 1.12143810897e-06 -138338679.648 +UniRef50_UPI000225F8FA hemolysin type calcium binding region, partial 7.20421798275e-07 1.44163431893e-07 -232642573.994 +UniRef50_B8G821 Uroporphyrinogen decarboxylase 5.83464720606e-08 2.22582805103e-07 66304223.0555 +UniRef50_X2X8I7 2.67565145032e-08 8.64895295165e-06 3480886507.93 +UniRef50_O32163 Zinc dependent sulfurtransferase SufU 0.000212547428349 1.68829802687e-05 -78992138762.7 +UniRef50_D1BE57 1.54224767752e-08 7.16607796421e-07 283077118.053 +UniRef50_A5ULR8 Digeranylgeranylglyceryl phosphate synthase 3.06668390493e-05 2.95316705201e-06 -11188349470.3 +UniRef50_UPI00036E0F7E hypothetical protein 5.58624884417e-07 2.58509876162e-07 -121160111.658 +UniRef50_Q6A9W7 Octanoyltransferase 3.9596432397e-06 2.15124378731e-05 7086278590.52 +UniRef50_G0DV78 Periplasmic binding protein of proline glycine betaine transport system 4.44908224649e-06 5.74970021227e-05 21416096225.2 +UniRef50_UPI0003602E81 hypothetical protein 4.04173779427e-08 4.86354770637e-08 3317747.46256 +UniRef50_A5VKN4 tRNA ) methyltransferase 7.157573731e-08 2.51422178024e-05 10121325853.1 +UniRef50_UPI000382652B hypothetical protein 2.861928382e-06 2.70558550679e-06 -63117537.2651 +UniRef50_F2A8G4 6 pyruvoyl tetrahydropterin synthase 2.02275703184e-07 8.78434346665e-07 272973541.773 +UniRef50_UPI0003F15D37 PREDICTED 9.14271541388e-08 1.93575295039e-07 41238457.98 +UniRef50_Q5X9T1 Exodeoxyribonuclease III 6.07719623749e-05 1.70721726123e-05 -17642141383.9 +UniRef50_UPI000376C1CF hypothetical protein 4.16385585551e-08 1.08756417096e-07 27096303.1217 +UniRef50_UPI000378C003 hypothetical protein 5.66607979588e-08 8.2466359116e-06 3306393455.67 +UniRef50_UPI00046E84D4 ketose bisphosphate aldolase 6.19133215792e-08 4.67309895605e-07 163663571.71 +UniRef50_UPI0002F33BF1 hypothetical protein 7.04903871034e-08 7.42977690177e-08 1537086.80063 +UniRef50_P94377 Catalase X 2.77831196531e-07 1.97992963749e-05 7881055047.84 +UniRef50_A6LV05 Exonuclease, RNase T and DNA polymerase III 3.20312412053e-06 8.7637398625e-06 2244888811.46 +UniRef50_O33787 3.76286315274e-05 3.97733437288e-06 -13585441609.1 +UniRef50_M1LPD5 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 5.60550920582e-06 7.25441959403e-06 665685358.126 +UniRef50_Q2FZ91 Cell division protein DivIB 9.94162116391e-05 8.40142817013e-06 -36743784963.4 +UniRef50_P58118 Protein translocase subunit SecY 7.25951649411e-05 3.82392025051e-05 -13869923630.5 +UniRef50_UPI00045E6DF6 hypothetical protein 1.46224963276e-07 2.16522867508e-07 28380126.5908 +UniRef50_Q3IUV4 2.12848609272e-05 9.38051819408e-06 -4805929244.07 +UniRef50_E8SGK9 Lysophospholipase Monoglyceride lipase putative 0.000166632011849 3.46310829758e-05 -53290394819.6 +UniRef50_UPI00036F909A hypothetical protein 6.0034821368e-08 1.13632694683e-07 21638119.1771 +UniRef50_F2AHF5 Malate dehydrogenase 5.01669294399e-07 6.85469743188e-06 2564795419.52 +UniRef50_F7MMY8 Cobyric acid synthase 5.5786106727e-06 8.25593223702e-06 1080867569.95 +UniRef50_A6M2F6 Binding protein dependent transport systems inner membrane component 5.14281316583e-06 1.34289198762e-05 3345202960.94 +UniRef50_UPI00016C3B4E SsrA binding protein 2.76248503853e-07 8.48037806993e-06 3312107781.82 +UniRef50_UPI00036A82E7 hypothetical protein, partial 5.15138778558e-08 2.54653713965e-07 82010044.6433 +UniRef50_S5KBE3 Amidohydrolase 0.000331869513768 0.000125968329541 -83124834764.1 +UniRef50_UPI0003287F61 PREDICTED 3.52030517433e-06 1.94721610124e-07 -1342578894.37 +UniRef50_C6L8Z7 9.68423329232e-08 3.34331923063e-07 95877461.8645 +UniRef50_A7MHL5 7.52340979993e-06 6.07804745002e-06 -583510517.249 +UniRef50_A0A038GLZ5 Peptide ABC transporter substrate binding protein 0.000141163817249 3.83241149435e-05 -41517649805.6 +UniRef50_L7WZ77 Sugar isomerase 0.000210677496253 9.98763257537e-05 -44731792213.7 +UniRef50_E2QQY4 Guanine deaminase 4.89641297609e-05 5.58048389704e-06 -17514510212.5 +UniRef50_E6U1U1 Cys Met metabolism pyridoxal phosphate dependent protein 3.38829335329e-06 1.83661026808e-05 6046725423.9 +UniRef50_D3E047 Tetrahydromethanopterin S methyltransferase subunit C 3.08479186582e-05 9.73314769449e-06 -8524292145.42 +UniRef50_F3SP64 Techoic acid ABC transporter, permease family protein 0.00107255534459 0.000430502288653 -2.59204697559e+11 +UniRef50_A0B9A2 Adenylate kinase 2.60415975826e-07 2.85588120524e-07 10162303.7115 +UniRef50_UPI00036A2D06 hypothetical protein 4.70721430657e-08 1.14662227385e-06 443901880.793 +UniRef50_P20083 DNA topoisomerase 4 subunit B 4.93895283309e-05 8.63585602378e-05 14924851841.9 +UniRef50_A6LRZ8 4.28734051029e-06 1.30619644257e-05 3542423351.39 +UniRef50_U3TMR9 Replication protein 7.89675232922e-06 2.63283838205e-06 -2125106655.96 +UniRef50_H1QFU3 Putative oxygen independent coproporphyrinogen III oxidase 2.12423155214e-06 5.51040052664e-07 -635116713.571 +UniRef50_G7ZPE9 LPXTG surface protein 0.00011073152598 1.77710019379e-05 -37529304309.7 +UniRef50_Q6GGX9 UPF0403 protein SAR1441 0.00052290588439 5.89323571765e-05 -1.87311806532e+11 +UniRef50_W0YTR9 2.11821592591e-06 7.44317151069e-08 -825100765.953 +UniRef50_Q8RXU4 Probable low specificity L threonine aldolase 1 5.56418205475e-08 7.86794195919e-08 9300561.43736 +UniRef50_UPI000377D666 hypothetical protein 7.74976302216e-08 1.70586202872e-07 37580999.1042 +UniRef50_UPI0002FDDFF5 hypothetical protein 5.69652769495e-08 1.15319855735e-07 23558459.5469 +UniRef50_Q07RP5 Ribosome binding ATPase YchF 2.97222024655e-05 2.85872884884e-05 -458178699.516 +UniRef50_Q3K1I5 ATP dependent helicase deoxyribonuclease subunit B 3.1870148823e-06 2.41896029146e-06 -310073063.412 +UniRef50_B9E1R4 8.52112841647e-07 4.5010088936e-06 1473104113.16 +UniRef50_B0VKL3 23S rRNA C(5)) methyltransferase RlmD 8.27215461305e-07 8.24181972749e-05 32939280592.1 +UniRef50_S3NQR8 C4 dicarboxylate transport two component sensor histidine kinase 4.16549139603e-06 1.01367290119e-06 -1272427803.53 +UniRef50_B9KEN0 Enolase 3.89757075376e-08 8.88105366609e-07 342804063.36 +UniRef50_A5UMV8 Sugar transferase, WcaJ 3.50552210029e-05 6.62277161534e-06 -11478528723.2 +UniRef50_D3QC63 Multiple CBS domains containing cytosolic protein 0.000279882033589 6.12255242314e-05 -88274316044.9 +UniRef50_UPI00046A5C9E branched chain amino acid ABC transporter substrate binding protein 1.59101215897e-07 2.01154302193e-07 16977346.9871 +UniRef50_K2EEA8 2.99460993188e-07 3.30145650004e-07 12387772.4997 +UniRef50_U5P8L5 5.92963560428e-05 3.46923589493e-05 -9932935551.64 +UniRef50_S5CQE4 GGDEF domain protein 1.23361434261e-06 1.53103634601e-05 5682956359.87 +UniRef50_C5ZZ07 ABC transporter, periplasmic binding protein 6.35498297692e-07 3.31125536224e-05 13111385772.9 +UniRef50_UPI0001D2E14D trehalose phosphatase 2.46760839906e-07 2.74253567994e-07 11099151.7028 +UniRef50_E1XJQ2 2.68249291483e-05 5.15087276506e-06 -8750082532.48 +UniRef50_K6ZAZ0 9.47965160733e-06 7.38788658589e-06 -844471207.999 +UniRef50_UPI00046287B9 glucosamine fructose 6 phosphate aminotransferase 3.2869600633e-08 2.41679989466e-07 84299316.3635 +UniRef50_S4P3V2 UPF0047 protein C4A8.02c 1.71227161324e-07 9.91757326299e-07 331258096.638 +UniRef50_UPI00021A5D5B PREDICTED 1.12082399598e-07 9.238539515e-08 -7951922.40508 +UniRef50_UPI0003B2F6F8 cytidine deaminase 7.15181483118e-08 3.00340415394e-07 92378357.186 +UniRef50_UPI000361B9B7 hypothetical protein 1.20433258568e-06 4.52055014322e-05 17763811818.4 +UniRef50_Q73UK5 4.61995861197e-06 3.91122696922e-07 -1707232952.56 +UniRef50_UPI0002E36D1B ketosteroid isomerase 5.11572370585e-08 3.78914167362e-07 132319494.793 +UniRef50_X6L0W1 2.44797013856e-07 3.56484707025e-07 45089692.2944 +UniRef50_Q04BY7 Energy coupling factor transporter ATP binding protein EcfA1 3.74166416929e-07 9.45249453653e-08 -112894693.657 +UniRef50_Q03MR7 Protein GrpE 1.98676836237e-06 5.31400603965e-05 20651211715.6 +UniRef50_Q1IW96 Probable transcriptional regulatory protein Dgeo_2194 4.38013253516e-06 0.000655899800272 2.63026484911e+11 +UniRef50_A6LXG6 PTS system mannose fructose sorbose family IID component 9.46080172615e-07 2.42080432721e-05 9391139959.66 +UniRef50_B9KWM5 Short chain alcohol dehydrogenase 4.92304580028e-05 9.01463409552e-06 -16235621615.0 +UniRef50_A6LWF9 NLP P60 protein 1.73158710486e-06 5.62653850715e-06 1572439677.53 +UniRef50_N0A5S9 GtrOC2 1.10591598297e-06 4.19839599358e-05 16502967973.8 +UniRef50_N7PIW9 2.5028915385e-06 2.90924397763e-07 -892998278.606 +UniRef50_C1I079 Predicted protein 4.79884625283e-07 3.86595817526e-06 1366999443.92 +UniRef50_D8JMR4 HTH type transcriptional activator aaeR 1.43530794236e-06 6.40273614812e-05 25269180104.5 +UniRef50_UPI00035DBD0C hypothetical protein 1.54058487816e-07 3.97987131975e-07 98476986.9881 +UniRef50_Z5XJ24 50S ribosomal protein L23 8.08416388515e-08 6.94093959702e-06 2769505728.58 +UniRef50_UPI00037F9208 hypothetical protein 6.57516210684e-07 3.77326494255e-07 -113116026.837 +UniRef50_C7RSG7 Large exoprotein involved in heme utilization or adhesion 4.80914022326e-08 3.24708848612e-08 -6306194.54814 +UniRef50_UPI0003B5E1C5 GntR family transcriptional regulator 8.14473881831e-07 2.2346062574e-07 -238599304.032 +UniRef50_A5UNJ4 Adhesin like protein 1.51399633016e-07 5.44170055438e-08 -39153076.8212 +UniRef50_F0KJQ4 1.58309167649e-06 6.36985844556e-05 25076786677.7 +UniRef50_E1KWK7 Metallo beta lactamase domain protein 6.7181393972e-07 2.72263718188e-07 -161303327.465 +UniRef50_UPI00047A5202 hypothetical protein 2.72569473049e-07 2.73785446501e-06 995265803.703 +UniRef50_Q02419 Protein PhnA 5.46521060756e-05 2.06096603461e-05 -13743353088.8 +UniRef50_U6A9U4 tRNA specific adenosine deaminase 1.04857219126e-05 4.6506567747e-06 -2355687400.47 +UniRef50_B2N6M8 Molybdate metabolism regulator 2.02426857316e-05 8.31595356419e-06 -4814968133.44 +UniRef50_UPI0004639C57 di tricarboxylate transporter 2.6631961612e-07 2.55505381709e-07 -4365839.1373 +UniRef50_UPI0003C16451 PREDICTED 4.5512269869e-08 7.86534669237e-08 13379507.9392 +UniRef50_Q8XL57 ATP dependent 6 phosphofructokinase 2 7.77751594215e-06 1.49601963207e-05 2899736210.22 +UniRef50_M4WU84 2.26287417368e-07 1.77661061354e-07 -19631056.6353 +UniRef50_B8D9X0 Putative Holliday junction resolvase 2.57146202194e-07 1.73499896653e-07 -33769040.0025 +UniRef50_A0A011Q708 Acetyl coenzyme A synthetase 9.82448756598e-08 5.7449327868e-08 -16469663.2612 +UniRef50_Q8P2Z1 7.09877126964e-06 1.07449954763e-06 -2432072420.3 +UniRef50_Q817Z6 Transcription elongation factor GreA 0.00026859291999 1.13288515053e-05 -1.03860661433e+11 +UniRef50_P50736 0.000146656015655 4.26933410543e-05 -41971007501.9 +UniRef50_F2JYX7 Peptidase M75, Imelysin 4.73705558211e-05 6.10485194111e-06 -16659471043.5 +UniRef50_Q1CBF6 Sec independent protein translocase protein TatB 6.16301302537e-05 1.88072544648e-05 -17288120451.8 +UniRef50_O07046 FKBP type peptidyl prolyl cis trans isomerase SlyD 5.10262093503e-07 1.46797585378e-07 -146735082.141 +UniRef50_A6UZF9 Oxidoreductase, short chain dehydrogenase reductase family 1.49994432661e-06 1.30469223246e-05 4661656715.15 +UniRef50_Q57935 4.44175919899e-05 1.2952044531e-05 -12703027634.8 +UniRef50_Q57936 1.0248106264e-05 3.9551344445e-06 -2540549946.98 +UniRef50_B8CVY1 1,4 alpha glucan branching enzyme GlgB 2.76815835171e-08 7.52455827263e-08 19202170.1567 +UniRef50_UPI0003C1A6D9 PREDICTED 1.30690836564e-07 1.24271209736e-06 448936629.02 +UniRef50_W6LVB0 1.53902013573e-06 5.18363230274e-06 1471374656.24 +UniRef50_B2AP02 Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3 1.3883046789e-07 1.01700192803e-07 -14989947.6923 +UniRef50_UPI0002E1B7CA hypothetical protein 2.53920393298e-07 8.07058248876e-07 223308540.062 +UniRef50_UPI0002FA5E7B peptide ABC transporter permease 8.99051379927e-08 4.06698190416e-07 127893242.751 +UniRef50_P0C0F3 DNA polymerase III subunit alpha 4.03955672508e-05 5.43157348254e-05 5619742469.53 +UniRef50_R1DWQ7 1.52212092278e-06 2.27166696312e-06 302600934.45 +UniRef50_B0S155 Phosphopantetheine adenylyltransferase 1.59580192052e-07 1.56736017847e-07 -1148228.0285 +UniRef50_P96719 2.6890512592e-08 1.05979177706e-07 31929064.6336 +UniRef50_UPI0004673C65 thioredoxin 5.11667610096e-06 5.13386765923e-06 6940443.03774 +UniRef50_UPI00036804AF 30S ribosomal protein S17 4.5536945392e-07 2.56717381648e-06 852561335.919 +UniRef50_UPI0004656BE4 DNA mismatch repair protein MutS 1.9360784624e-08 7.13687344081e-07 280308152.398 +UniRef50_Q1LNF6 Uridylate kinase 1.95301116416e-07 2.74782399356e-05 11014457200.6 +UniRef50_UPI00037C0023 hypothetical protein 8.46465175809e-07 2.99487191037e-07 -220821724.627 +UniRef50_G0LV60 Integrase 7.09967810563e-05 1.56983278354e-05 -22324664153.6 +UniRef50_UPI00035F36BD hypothetical protein 1.97312630293e-06 1.64603691984e-06 -132049997.792 +UniRef50_M0P4U3 AzlC family protein 1.36802251639e-07 1.02476841127e-07 -13857589.4438 +UniRef50_A0A023LDQ6 6.22399962998e-06 4.37506229925e-06 -746438689.428 +UniRef50_E2BB01 4.64763531924e-08 1.49384472733e-06 584320373.848 +UniRef50_P00362 Glyceraldehyde 3 phosphate dehydrogenase 1.03248004053e-06 6.02489228975e-07 -173592567.205 +UniRef50_F9YYR4 4.22918965471e-06 5.70734467149e-05 21333875047.2 +UniRef50_UPI0003607034 hypothetical protein 8.91577732635e-08 1.32181840581e-07 17369343.9408 +UniRef50_A5IT33 Glucose 6 phosphate 1 dehydrogenase 9.91318648846e-05 1.97115582353e-05 -32062952391.1 +UniRef50_E3GES0 4.98601239345e-06 1.99817465828e-05 6053961910.61 +UniRef50_L2V487 4.80002939282e-07 7.88401678338e-07 124504355.435 +UniRef50_F5M5L4 LysR family transcriptional regulator 3.21436045767e-05 9.9421530855e-06 -8962998409.44 +UniRef50_A5IJ44 Phosphopantetheine adenylyltransferase 4.41194375632e-07 1.71286059875e-07 -108965299.219 +UniRef50_G8NQU3 6.09429167621e-08 7.75085909763e-08 6687765.96395 +UniRef50_A6M0K2 Glycoside hydrolase, family 3 domain protein 3.43894292271e-06 1.21728994799e-05 3526005439.84 +UniRef50_Q8DUS0 5.51687426025e-05 9.64545626275e-06 -18378309328.9 +UniRef50_UPI000381094E hypothetical protein 1.00373507366e-06 7.80193778431e-07 -90246364.0441 +UniRef50_S5YT45 Uracil xanthine permease 6.63021385688e-06 3.83698085163e-06 -1127662441.04 +UniRef50_G7PJ01 6.8374547133e-07 2.3843835239e-07 -179775948.449 +UniRef50_K0K3W4 6.08789120499e-09 2.18818150567e-08 6376200.87217 +UniRef50_C5B8V8 UDP 2,3 diacylglucosamine hydrolase 3.27323213955e-06 3.46603014458e-05 12671345041.6 +UniRef50_D6Y589 Periplasmic binding protein LacI transcriptional regulator 1.24206954434e-06 1.79884537446e-07 -428817121.757 +UniRef50_Z2DT28 1.28477477479e-07 2.81254004947e-06 1083588997.46 +UniRef50_B2U084 Protein CsiD 3.78232897311e-05 3.80644957133e-06 -13733015806.1 +UniRef50_UPI0004791B4F autoinducer 2 import system permease LsrD 1.40550313005e-07 2.8338767364e-07 57665195.2999 +UniRef50_F2MNJ9 PTS family mannose fructose sorbose porter component IID 6.71886744182e-05 2.12458061294e-06 -26267173095.4 +UniRef50_S9QQP6 Glycine oxidase ThiO 5.5269610718e-08 1.23879322796e-07 27698582.7017 +UniRef50_Q47216 E. coli fhuB gene involved in transport of ferrichrome 1.58476947481e-06 8.33839720682e-07 -303159556.686 +UniRef50_G8LJW2 1.01502798572e-06 9.4182195523e-07 -29554172.8478 +UniRef50_A0A023KKD3 2.79908675214e-05 1.92583539548e-05 -3525422886.83 +UniRef50_Q2KXF0 N carbamoyl D amino acid hydrolase 0.000135926663573 1.75350891091e-05 -47796131439.1 +UniRef50_Q3J1R1 TRAP T family sorbitol mannitol transporter, DctM subunit 4.60836859799e-05 1.59615529929e-05 -12160674727.0 +UniRef50_Q892B0 Hydroxyacylglutathione hydrolase 1.89691451679e-06 1.57327773814e-05 5585707623.57 +UniRef50_U1LA38 3.34243355643e-07 3.3969477544e-07 2200805.06849 +UniRef50_UPI00046894CE hypothetical protein 4.99000735682e-07 1.51613890166e-07 -140244332.451 +UniRef50_UPI00037DFDE1 hypothetical protein 3.40576462048e-08 8.71654064824e-08 21440254.5296 +UniRef50_B7ITF9 NADPH dehydrogenase 2.539700886e-06 1.4440581311e-05 4804531467.8 +UniRef50_I0E927 2.14543665657e-06 3.06015871257e-05 11488097140.6 +UniRef50_U9RLL1 Maltose mannitol ABC transporter substrate binding protein 6.3274990576e-06 4.76620107794e-06 -630315153.669 +UniRef50_UPI0003728BB6 hypothetical protein 1.05923838599e-07 5.77718092803e-08 -19439565.1278 +UniRef50_P77256 5.32841290473e-05 1.23418609915e-05 -16528896032.3 +UniRef50_A0A024KCD9 1.94524647099e-06 7.18116698463e-07 -495407347.746 +UniRef50_W5XBZ3 Chromate transporter, chromate ion transporter family 2.7294379831e-08 2.40491621873e-07 86070342.8367 +UniRef50_UPI00047AFC40 hypothetical protein 2.05073103231e-07 6.03428216318e-08 -58429390.7218 +UniRef50_B3EDX3 Imidazoleglycerol phosphate dehydratase 9.25601848686e-07 2.91117623306e-07 -256149067.783 +UniRef50_N5CGV2 Transcriptional regulator 0.000115770194233 2.91668482813e-05 -34962833503.3 +UniRef50_W7X8F4 3.50455617991e-06 3.69670006157e-07 -1265592017.72 +UniRef50_C0D0V3 1.24295220517e-07 5.10608533914e-08 -29565612.6953 +UniRef50_UPI000347DE1F hypothetical protein 3.81726620699e-07 6.90409511558e-07 124619071.005 +UniRef50_G7M5H1 7.54949114049e-06 8.71098999181e-06 468911339.472 +UniRef50_W5XD42 Dihydroorotase 4.40008531897e-08 9.10497032667e-08 18994198.1304 +UniRef50_Q3IV21 N6 adenine specific DNA methyltransferase, N12 class 0.000165812545704 5.07050053199e-05 -46470326581.4 +UniRef50_Q39ZC5 NADH quinone oxidoreductase subunit A 1 4.62522914802e-07 4.44215931042e-07 -7390753.99587 +UniRef50_G8UZP9 0.000134306090933 4.03468268305e-05 -37932507928.0 +UniRef50_A0RBY2 0.000159004223149 4.6612526039e-05 -45373907324.5 +UniRef50_UPI00036FBBFE hypothetical protein 2.7447599129e-06 4.30121294129e-07 -934448014.207 +UniRef50_S6APH0 Peptidase M48 family protein 4.25353168933e-06 4.16497333721e-06 -35752093.484 +UniRef50_Q87VB5 Potassium efflux system protein KefA, putative 6.10803913599e-06 1.75165874053e-06 -1758724224.45 +UniRef50_Q2J3C8 OmpA MotB 8.11821913621e-07 4.95173330266e-07 -127834918.815 +UniRef50_Q9HK17 Carbamoyl phosphate synthase large chain 9.10722347907e-08 9.83605864781e-08 2942397.01434 +UniRef50_P0AB87 L fuculose phosphate aldolase 4.27417352777e-05 6.15139433657e-06 -14771969651.9 +UniRef50_T1W827 1.52233338572e-06 3.70960768497e-07 -464823254.503 +UniRef50_H6LQV6 0.000112425565678 2.04461248786e-05 -37133228965.4 +UniRef50_Q9HZP7 Electron transfer flavoprotein subunit alpha 4.96095647861e-06 2.3740628518e-05 7581584054.8 +UniRef50_UPI0004775C52 hypothetical protein 7.51770529546e-06 2.18287655351e-06 -2153735828.84 +UniRef50_A6W0A1 Inorganic pyrophosphatase 2.15706279348e-06 5.29664710818e-05 20512381627.5 +UniRef50_F0A853 PilS cassette 1.06840008192e-06 2.32761615507e-06 508360981.05 +UniRef50_F0RP81 Cation diffusion facilitator family transporter 4.88194346733e-05 1.13878465233e-05 -15111591473.4 +UniRef50_Q9JZN9 Probable TonB dependent receptor NMB0964 5.90129216602e-07 2.62291942531e-05 10350805181.9 +UniRef50_A9KTR8 Tryptophan synthase alpha chain 1.99487122625e-05 5.28283829082e-06 -5920793292.89 +UniRef50_D3E165 2.35713963251e-05 8.00604432177e-06 -6283923612.08 +UniRef50_W5XBF7 Peptidase like protein 3.13669057599e-07 1.6651319765e-07 -59408626.4669 +UniRef50_UPI0003B77CF1 hypothetical protein, partial 5.03544542531e-07 2.27047124605e-06 713329992.84 +UniRef50_UPI0002E07778 hypothetical protein 5.54597022607e-06 3.99912489397e-07 -2077526657.52 +UniRef50_UPI0002BA99C0 hypothetical protein, partial 7.68482350088e-07 2.58658809639e-06 733991600.448 +UniRef50_G7M4N9 Transcriptional antiterminator, BglG 1.75032143208e-06 8.11958139445e-06 2571348406.42 +UniRef50_H2CA16 CRISPR associated helicase, Cas3 family 1.44040577788e-07 1.08220438007e-07 -14461029.9921 +UniRef50_F2IZL0 9.76622834857e-07 1.08488287448e-06 43705906.4959 +UniRef50_Q9RZ59 7.00520362817e-07 0.000304117243333 1.22493054405e+11 +UniRef50_Q9RZ58 3.42528244293e-07 0.000533424050132 2.15211552032e+11 +UniRef50_A6LPF3 Integral membrane sensor signal transduction histidine kinase 1.12124551144e-06 1.24417146252e-05 4570212299.02 +UniRef50_S6A3I5 Hemolysin 6.15537272691e-06 3.70509438458e-05 12472921192.0 +UniRef50_D0CXH4 Amino acid regulated cytosolic protein 2.25801457911e-07 3.56440718362e-07 52740672.5681 +UniRef50_S3YVB6 Electron transfer flavoprotein ubiquinone oxidoreductase 3.77152019826e-07 7.84494188088e-07 164449031.978 +UniRef50_E8SIG3 O methyltransferase family protein 0.0002264696582 4.7149315001e-05 -72393823057.5 +UniRef50_E8YMA7 Xanthine dehydrogenase, small subunit 1.86409148895e-06 1.2399581744e-06 -251970278.061 +UniRef50_UPI0003647621 hypothetical protein 2.50779277876e-07 7.89949248558e-08 -69351451.3452 +UniRef50_A0A023RWB5 Metal binding protein 1.56416846208e-06 6.37636778578e-05 25110705216.9 +UniRef50_UPI000319D40D hypothetical protein 9.53850439977e-08 1.27663457427e-07 13031191.6021 +UniRef50_P42911 N acetylgalactosamine permease IID component 3.06029094691e-05 2.10672751595e-05 -3849652586.18 +UniRef50_G8LUB7 8.26008728365e-07 1.39002476547e-05 5278230693.5 +UniRef50_UPI00037F105A hypothetical protein 5.2687232277e-08 1.00903505351e-07 19465501.1202 +UniRef50_F7ZMZ2 LacI family transcription regulator 6.40731819857e-06 6.88177974312e-06 191545947.833 +UniRef50_P25269 Tryptophan synthase beta chain 2, chloroplastic 4.58346393174e-08 8.19696540435e-08 14588148.8714 +UniRef50_S9V0M4 6.06192166757e-08 3.36491821603e-07 111373155.947 +UniRef50_K7EAU2 4.37159826715e-06 9.00507522357e-06 1870591506.46 +UniRef50_UPI0003B55347 prolipoprotein diacylglyceryl transferase 1.40764828288e-07 6.90296424277e-08 -28960374.8215 +UniRef50_B0K282 tRNA dihydrouridine synthase 5.95677865387e-06 1.60390404092e-05 4070332793.88 +UniRef50_Q1IZ39 Maltodextrin phosphorylase 4.98221718638e-07 0.000222759272569 89729513677.9 +UniRef50_A0A023S035 Tail fiber protein 3.15533843529e-06 8.12357297385e-05 31522012123.2 +UniRef50_A7MJM9 DNA gyrase inhibitor 1.21071966282e-05 3.27638827753e-05 8339357683.63 +UniRef50_UPI00036379E0 hypothetical protein 1.80794992353e-07 2.38863713166e-07 23443055.1755 +UniRef50_V5T0I0 7.16665155766e-06 5.76956873815e-06 -564019478.37 +UniRef50_P44842 IMPACT family member HI_0722 1.25048069074e-05 1.03896068992e-05 -853932199.733 +UniRef50_G8B031 5.22539218953e-06 3.54234975447e-08 -2095254049.03 +UniRef50_A6QGY4 Extracellular matrix binding protein EbhA 2.0773190929e-05 5.12423531082e-06 -6317675417.35 +UniRef50_A9H0U5 Enoyl [acyl carrier protein] reductase [NADH] 5.54047457835e-07 6.38142512567e-07 33950205.5577 +UniRef50_UPI0004764CEE transcription termination factor Rho, partial 4.69282743033e-07 2.34045515101e-07 -94968155.6015 +UniRef50_UPI00047511DF peptide ABC transporter permease 2.85927890939e-07 8.34779079235e-08 -81731542.4838 +UniRef50_Q7UI51 2 isopropylmalate synthase 6.47594652218e-08 0.000343864822305 1.3879630427e+11 +UniRef50_UPI0003B5C125 acetyltransferase 1.60716782674e-06 4.04988543012e-06 986155072.0 +UniRef50_F5ZCF3 7.63395797809e-07 3.31823633499e-07 -174230978.718 +UniRef50_UPI0003645D29 hypothetical protein 4.54228990041e-08 3.98385066922e-07 142495158.521 +UniRef50_O28912 Phosphate import ATP binding protein PstB 1.50604124894e-07 3.79722369929e-05 15269057312.4 +UniRef50_P29363 Threonine synthase 9.33688136905e-05 2.99646473025e-05 -25597040027.5 +UniRef50_C6ST49 3.60502231645e-05 5.33704888912e-06 -12399285348.0 +UniRef50_UPI00037764D1 hypothetical protein 1.66606024128e-07 4.09516667683e-06 1586008144.36 +UniRef50_A0PY95 Alanine racemase 2.67165698207e-06 3.89286479141e-06 493016578.536 +UniRef50_L0DZY5 Sulfur acceptor protein SufE for iron sulfur cluster assembly 6.77801292892e-07 1.8667942506e-07 -198271924.787 +UniRef50_B9DJF9 Phage integrase 0.000107219308589 3.26305564071e-05 -30112394562.8 +UniRef50_B2ICL0 Imidazole glycerol phosphate synthase subunit HisF 2.04211896297e-06 0.000201143693452 80379748872.3 +UniRef50_A4X095 Superfamily II helicase and inactivated derivatives like protein 0.000134706402096 3.31794353231e-05 -40987682362.2 +UniRef50_B2TJ36 Mg chelatase family protein 5.18618002432e-06 1.27770544968e-05 3064529175.04 +UniRef50_D5UED6 7.27136282436e-08 2.42194271992e-07 68421415.6424 +UniRef50_G4LNF0 Aldehyde dehydrogenase 4.26104795691e-06 1.67634837394e-06 -1043474939.48 +UniRef50_D5ARZ1 Electron transport complex subunit RnfC 1.64965107969e-05 5.5525880437e-06 -4418195912.5 +UniRef50_UPI0004720CF2 peptide ABC transporter substrate binding protein 2.60716251133e-07 7.96361611971e-08 -73104254.4097 +UniRef50_A6M1H1 1.93914035367e-06 8.53333778341e-06 2662158422.29 +UniRef50_A6M1H0 8.27594611256e-06 3.40907198311e-05 10421740933.1 +UniRef50_UPI000383B0B4 PREDICTED 1.70642706901e-07 2.5870213811e-06 975521723.075 +UniRef50_Q54VM1 4.98855334194e-08 1.35179973381e-07 34434412.093 +UniRef50_UPI0003901246 hypothetical protein 2.89759281393e-07 4.02380714703e-07 45466654.6476 +UniRef50_E6NBZ7 Proline permease 9.62156301183e-07 5.18199229748e-05 20531904501.1 +UniRef50_UPI000456035A hypothetical protein PFL1_03912 3.52471675958e-08 4.75871392024e-07 177885406.469 +UniRef50_Q2YXC0 FPRL1 inhibitory protein 5.50214554178e-05 4.90831088969e-06 -20231291403.4 +UniRef50_UPI0001D2F4B5 histidine kinase 3.5476217876e-07 2.70764983841e-07 -33910698.3503 +UniRef50_Q03UC7 50S ribosomal protein L9 0.000118871414312 2.09340196429e-05 -39538528054.9 +UniRef50_K7RW71 TadB domain containing protein 1.70294431062e-06 9.09554062244e-05 36032314125.5 +UniRef50_UPI0004002975 hypothetical protein 5.98979435064e-07 1.45077112247e-07 -183245937.729 +UniRef50_B3QQR6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.08363496658e-06 1.03656893724e-07 -395629173.695 +UniRef50_I0ESN2 Outer membrane protein 33 3.47603199025e-06 2.25848650557e-05 7714470400.29 +UniRef50_Q3J228 Putative endonuclease 0.000105861549508 2.16151707463e-05 -34011296925.4 +UniRef50_G8PN37 sn glycerol 3 phosphate binding periplasmic protein UgpB 2.05842115461e-07 8.06909218425e-08 -50525072.6414 +UniRef50_UPI00037ED898 hypothetical protein 3.59788027216e-07 5.24796957861e-07 66616130.1887 +UniRef50_UPI0003B58F6D biotin synthase 4.30209052628e-08 6.0004686367e-08 6856560.8462 +UniRef50_O27651 Conserved protein 6.81850901043e-05 6.06816926888e-06 -25077363201.6 +UniRef50_U3SS39 3.36155849069e-05 2.57997276607e-05 -3155357481.64 +UniRef50_Q60182 Glutamine synthetase 2.99720748729e-05 5.86499750377e-06 -9732322961.01 +UniRef50_A3PHJ7 Transcriptional regulator, AsnC family 8.84853255404e-05 3.17550171157e-05 -22902721670.2 +UniRef50_UPI000475DE05 hypothetical protein 1.13965823962e-07 2.52237527598e-07 55821983.5425 +UniRef50_P76419 4.96310939566e-05 1.04886350313e-05 -15802291000.1 +UniRef50_K2JKB1 5.55686780374e-06 6.52839893415e-07 -1979816246.59 +UniRef50_Q2CHF8 Probable replication protein C 1.53091088781e-06 4.55496562521e-07 -434157959.937 +UniRef50_O28664 Proline tRNA ligase 3.15064372401e-05 6.25242653487e-06 -10195354023.2 +UniRef50_UPI00035071FD PREDICTED 5.65946010231e-07 2.84868833395e-07 -113474305.494 +UniRef50_UPI0004754290 UDP glucose 6 dehydrogenase 5.64026840622e-08 1.19316178785e-07 25398949.855 +UniRef50_UPI0003B57BB8 membrane protein 6.88774752379e-08 9.29449942003e-08 9716352.74679 +UniRef50_UPI00047CCE00 hypothetical protein 4.36512327463e-06 7.8337441607e-07 -1445995967.2 +UniRef50_Q8FBC3 Glycerol kinase 2.37929505766e-05 5.2991980645e-05 11788006751.0 +UniRef50_UPI000381A4A2 hypothetical protein 5.15866412245e-08 3.68912904372e-08 -5932693.44507 +UniRef50_UPI0003606567 hypothetical protein, partial 1.21970337878e-07 2.59095258664e-07 55359013.2333 +UniRef50_P50601 Protein TolB 1.49700819261e-05 1.86146020581e-05 1471337500.58 +UniRef50_V9VVJ4 3.71788446086e-06 8.18552895249e-07 -1170495731.84 +UniRef50_Q7VJY3 Chaperone protein ClpB 4.60723338757e-07 3.27916035117e-05 13052373070.3 +UniRef50_O04904 Dihydroorotase, mitochondrial 5.17236012849e-05 3.6977933925e-05 -5953006862.88 +UniRef50_C9XK28 L lactate dehydrogenase 1.2796135215e-06 2.70932757067e-06 577193106.214 +UniRef50_Q88V07 DNA polymerase IV 5.69787752989e-05 3.4659574793e-05 -9010535131.62 +UniRef50_UPI000371CF62 hypothetical protein, partial 1.92038535618e-05 9.75412828813e-07 -7359045212.03 +UniRef50_UPI0003610B2B hypothetical protein 2.59687111723e-08 3.18766683733e-08 2385114.82083 +UniRef50_I6Q203 Transposase 4.96437948703e-05 3.29532643394e-05 -6738171991.17 +UniRef50_UPI0003D737B1 PREDICTED 8.38030809842e-08 3.44352202793e-07 105186877.772 +UniRef50_K0RGV2 4.25968946429e-07 1.12381707865e-05 4365018563.49 +UniRef50_O32254 2.5676045596e-05 9.36837083141e-06 -6583608420.14 +UniRef50_C6S5N2 Putrescine transport system permease protein 1.59276788545e-06 2.97556511136e-05 11369701556.7 +UniRef50_A0A020D651 0.000213032093534 5.61240815551e-05 -63345689913.8 +UniRef50_A5D5I2 DNA directed RNA polymerase subunit beta 1.04033581322e-07 3.26996720875e-08 -28798374.5235 +UniRef50_B4F1A3 Agmatinase 5.44420955793e-05 4.49584654698e-06 -20163913643.7 +UniRef50_UPI0003B405D9 thioredoxin 7.78079844495e-07 6.83596029092e-07 -38144275.725 +UniRef50_A6LX09 Transcriptional antiterminator, BglG 2.2816252255e-06 4.33267641104e-06 828034532.831 +UniRef50_A3LGV5 2.60092704284e-06 3.77183128249e-06 472708410.158 +UniRef50_UPI0003733DDF hypothetical protein 7.3568494784e-07 1.63391069575e-07 -231042061.491 +UniRef50_Q9FCA2 Peptide deformylase 2 1.38463124345e-07 2.49879297961e-07 44980076.519 +UniRef50_Q2YZB2 ATP phosphoribosyltransferase regulatory subunit 0.000140074319147 3.07629553598e-06 -55307783286.6 +UniRef50_B8DEF0 2.09075886147e-06 1.88500024592e-05 6765912299.44 +UniRef50_S5CRU7 SAM dependent methyltransferase 4.68836268581e-06 3.67357662885e-05 12937930100.3 +UniRef50_P22805 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 1.38475483567e-05 1.07706619502e-05 -1242176799.95 +UniRef50_UPI00047CAE83 hypothetical protein 5.19572729738e-08 1.5994005963e-07 43593976.0708 +UniRef50_UPI000350E4F1 2.39444829859e-08 3.38247087766e-08 3988768.39571 +UniRef50_I0C1B5 Choloylglycine hydrolase 0.000186428479189 1.36303506354e-05 -69760724968.7 +UniRef50_Q167Y1 Type II IV secretion system protein, TadC subfamily, putative 0.000123155190766 2.48805686397e-05 -39674670917.6 +UniRef50_A3CPS1 Two component response transcriptional regulator , putative 6.15559436315e-05 3.00322073074e-06 -23638452757.8 +UniRef50_UPI0003D2A318 homoserine dehydrogenase 2.94256321806e-07 1.80752638502e-07 -45822829.7966 +UniRef50_V5NWP2 8.10564671074e-06 1.08717819923e-05 1116722757.46 +UniRef50_UPI0002886C73 serine hydroxymethyltransferase 2.37607770406e-06 1.76778506093e-06 -245575204.622 +UniRef50_J4KJN9 8.21507253925e-07 6.67490968747e-05 26615776952.4 +UniRef50_W8KL45 3.10969681189e-07 4.47817586173e-07 55247178.5547 +UniRef50_D9QPC0 Alpha beta hydrolase fold protein 3.07593293264e-05 1.23409477568e-05 -7435726658.61 +UniRef50_A8LNH2 UPF0246 protein Dshi_3333 1.2659159289e-05 2.52407440337e-06 -4091658139.79 +UniRef50_A3PP80 Diguanylate cyclase 5.0811662508e-05 1.00252219781e-05 -16465986547.8 +UniRef50_W4KSI3 PcsB protein 3.31825966611e-06 1.94714311118e-06 -553536578.717 +UniRef50_UPI00016A907F benzoate transport protein 3.00503137859e-07 4.02652328935e-07 41238881.9489 +UniRef50_G2KZ81 1.27771316163e-05 3.45399655201e-06 -3763864033.19 +UniRef50_W7Y3S8 1.66386071404e-06 7.31920402115e-07 -376235740.118 +UniRef50_UPI000300A99C hypothetical protein 1.80561189384e-07 4.08884415141e-07 92176888.0792 +UniRef50_UPI000379A26D hypothetical protein 8.80181069756e-08 1.59747719328e-07 28958124.728 +UniRef50_G0AE82 Aldo keto reductase 1.12078862208e-05 0.000463085556365 1.824285606e+11 +UniRef50_UPI00037FCE78 hypothetical protein 9.11927885878e-06 3.60406895028e-06 -2226557919.3 +UniRef50_A6LRX7 Baseplate J family protein 4.62978571857e-06 9.77872926926e-06 2078691696.06 +UniRef50_P15031 Fe dicitrate transport ATP binding protein FecE 1.95630393934e-05 2.04161228397e-05 344400255.782 +UniRef50_E1HL74 Transcriptional regulatory protein, C terminal domain protein 1.63338450892e-05 4.12069821193e-06 -4930597266.53 +UniRef50_D4GIS9 RbsA 4.02054897309e-05 4.70764545228e-06 -14330915342.8 +UniRef50_UPI0003B790C8 FAD dependent oxidoreductase 2.48950564028e-07 1.41882864998e-07 -43224543.9668 +UniRef50_U5PBB0 Glycine betaine ABC transporter ATP binding protein 3.05662688827e-05 2.46097254331e-06 -11346453023.0 +UniRef50_U5MMF7 Penicillin amidase 7.39171852123e-06 2.1283687312e-05 5608358274.47 +UniRef50_W0I1A1 Aspartate ammonia lyase 5.52364180171e-06 5.28418870072e-05 19102956249.6 +UniRef50_UPI000469D137 hypothetical protein 8.75748391323e-06 8.4851249639e-07 -3192948814.97 +UniRef50_UPI0002D7F2D9 hypothetical protein 1.34945408328e-07 6.42443200236e-08 -28542896.9484 +UniRef50_A6LPZ8 6.59765809036e-06 2.23297072634e-05 6351221305.09 +UniRef50_P0AEW5 3,5 cyclic adenosine monophosphate phosphodiesterase CpdA 4.09990380215e-05 1.12958503343e-05 -11991541368.4 +UniRef50_A1B9K8 Zinc import ATP binding protein ZnuC 2.19900774693e-07 9.56369444126e-08 -50166833.1727 +UniRef50_A6LYB4 3.30712852793e-06 2.56431475951e-05 9017324991.21 +UniRef50_S4YWC9 Iron ABC transporter permease 1.35138182163e-06 2.83508849182e-05 10900030721.3 +UniRef50_Q4L6B1 TelA like protein SH1505 0.000187432331894 4.55140681341e-05 -57294144612.8 +UniRef50_UPI0003783264 hypothetical protein, partial 4.22093496452e-08 6.50113556112e-08 9205449.62055 +UniRef50_M3GAZ5 HlyD family secretion protein 1.86485961184e-05 1.99313861778e-06 -6724012578.44 +UniRef50_W4HIJ8 1.18330014599e-07 1.37715502368e-07 7826159.29903 +UniRef50_D2ARI1 tRNA rRNA methyltransferase 6.11314455616e-06 7.06777702778e-05 26065531700.9 +UniRef50_UPI0003B31E13 hydroxyethylthiazole kinase, partial 1.0763358989e-07 1.79152951735e-07 28873244.0181 +UniRef50_Q609Q1 Sulfate thiosulfate import ATP binding protein CysA 3.2857737624e-06 1.25864433691e-06 -818377024.746 +UniRef50_R4QLQ3 2.21708073658e-06 9.56079298081e-05 37703031804.8 +UniRef50_Q51548 L ornithine 5 monooxygenase 2.35703912728e-06 1.96223724387e-06 -159386365.097 +UniRef50_Q12UL5 2,3 bisphosphoglycerate independent phosphoglycerate mutase 4.57709714287e-05 1.19144818953e-05 -13668280290.5 +UniRef50_P0AER4 Glutamate aspartate transport system permease protein GltJ 8.75827504994e-06 5.01841048263e-06 -1509829219.12 +UniRef50_P39630 dTDP glucose 4,6 dehydratase 5.26965582947e-08 6.62787774188e-08 5483308.53297 +UniRef50_Q9HZR2 2.20681518524e-05 1.55472883806e-05 -2632552603.56 +UniRef50_T1AU58 Acyl CoA dehydrogenase domain protein 1.42649012091e-06 4.07490987201e-06 1069199553.28 +UniRef50_J8RY92 4.2896135097e-06 4.22463899101e-06 -26231010.5222 +UniRef50_UPI0003AD3D4A hypothetical protein 8.11489912278e-09 2.90834720298e-07 114137461.171 +UniRef50_I4Y2X2 TonB dependent outermembrane receptor 4.44624250735e-07 3.0757372313e-06 1062212597.64 +UniRef50_UPI0003B34776 LysR family transcriptional regulator 5.27717123956e-08 8.21500999334e-08 11860415.5624 +UniRef50_Q9RRV3 1.27130206267e-05 0.000566096031802 2.23407512385e+11 +UniRef50_W5XB81 DNA directed RNA polymerase subunit beta 4.40177373453e-08 1.57075868843e-08 -11429155.1457 +UniRef50_G5PWF6 L xylulose 5 phosphate 3 epimerase 1.04342533273e-06 3.65714196011e-07 -273600302.344 +UniRef50_A8F740 Periplasmic binding protein LacI transcriptional regulator 7.40956127913e-08 3.31153674299e-07 103777493.888 +UniRef50_UPI00046961AC transcriptional regulator 1.71761455105e-07 6.90778528386e-07 209533561.539 +UniRef50_UPI0003A13922 ABC transporter 3.76200876646e-07 6.34489099345e-08 -126261806.86 +UniRef50_UPI00042B18AB Proline iminopeptidase isoform 3 7.56568137949e-08 1.00441475278e-07 10005871.9827 +UniRef50_UPI00046F35A8 hypothetical protein, partial 3.45872847578e-07 4.09013656304e-07 25490719.3075 +UniRef50_X1RXQ4 Marine sediment metagenome DNA, contig 4.22697437022e-06 7.63722139661e-07 -1398157424.36 +UniRef50_A8LHX0 4.76693106279e-05 2.85613655247e-05 -7714111919.02 +UniRef50_C1N038 Predicted protein 5.37254368201e-07 1.65793304886e-07 -149963389.6 +UniRef50_Q5HLE0 Polyphosphate kinase 0.000111692876278 3.47613759979e-05 -31058190718.7 +UniRef50_UPI0003B428E6 branched chain amino acid ABC transporter permease 7.97417099361e-07 2.89420935971e-06 846500766.038 +UniRef50_F0KJN4 3.53733377151e-06 7.27334262613e-05 27935311669.7 +UniRef50_G7U3Y8 6.4619232184e-06 6.5661311498e-05 23899519506.7 +UniRef50_B9QYQ7 3.66633845086e-06 3.38850348176e-06 -112165386.444 +UniRef50_A0A023RT23 LysR family transcriptional regulator 1.59501122048e-06 6.13738168926e-05 24133437418.3 +UniRef50_P16689 Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase 3.66142965681e-05 4.24494813777e-06 -13067903177.9 +UniRef50_C2SK84 Transposase for insertion sequence element IS257 in transposon Tn4003 4.76974077466e-05 1.44964613488e-05 -13403629482.2 +UniRef50_P32703 2.83790093713e-05 1.0116014054e-05 -7372995321.75 +UniRef50_P32704 2.69547653981e-05 1.35784633589e-05 -5400177278.91 +UniRef50_B1ME21 Protein NrdI 1.57867696249e-07 4.73310388074e-07 127348085.607 +UniRef50_P08189 Protein FimF 1.49532564932e-05 3.35587164987e-06 -4682006577.16 +UniRef50_UPI0003621B16 hypothetical protein 3.37671428779e-08 3.99574415264e-08 2499099.52791 +UniRef50_UPI0003AA87E8 hypothetical protein 1.96792047996e-06 1.84817699091e-06 -48341915.9473 +UniRef50_Q2LUP9 Bifunctional protein FolD 0.000113979612122 4.97712229982e-05 -25921714614.8 +UniRef50_E6JRH7 1.50424330657e-05 6.42280882479e-07 -5813518146.1 +UniRef50_UPI00035EC48D metallophosphoesterase 2.91306129511e-07 5.69229973607e-07 112201266.371 +UniRef50_K2CFL6 2.10888702392e-07 9.41839499346e-07 295093806.505 +UniRef50_UPI00041B2B13 ATP dependent DNA helicase RuvA 7.37862446398e-08 5.46389032146e-07 190795544.805 +UniRef50_F0L985 7.40829580323e-05 1.89738373436e-05 -22248228287.0 +UniRef50_UPI0003686526 hypothetical protein 7.82439291492e-07 5.8785184662e-07 -78557339.3513 +UniRef50_A6LY24 Amino acid permease associated region 2.29256886544e-06 5.13160263102e-06 1146152770.03 +UniRef50_D0L5P3 1.51187237433e-06 6.02420639923e-05 23710099056.7 +UniRef50_UPI000476F8E5 hypothetical protein 1.20422675296e-07 1.51987042787e-07 12742922.4945 +UniRef50_UPI0004421CDD PREDICTED 5.04832280869e-08 1.66785084755e-08 -13647380.1377 +UniRef50_F0P387 Signal peptidase I 0.000108914027252 2.06609360669e-05 -35628855898.6 +UniRef50_Q6L2D8 Pyridoxal biosynthesis lyase PdxS 1.5806335407e-07 1.04155553404e-07 -21763240.652 +UniRef50_P37649 Protein YhjK 7.55568256295e-05 9.79625313929e-06 -26548350087.3 +UniRef50_G7U7J9 Haloacid dehalogenase like hydrolase 1.57285828689e-06 7.19185659773e-06 2268458570.95 +UniRef50_UPI000390127B Transcriptional regulatory protein LiaR 2.33256017827e-06 2.95786848942e-05 10999594895.4 +UniRef50_K1SRL1 Adhesin like protein 3.99857154855e-07 2.74405140594e-07 -50646517.6265 +UniRef50_UPI00047A852C hypothetical protein 4.49279546827e-07 1.73751476718e-07 -111234063.013 +UniRef50_A6LY09 RNA polymerase, sigma 24 subunit, ECF subfamily 1.06835657223e-05 6.66127906449e-06 -1623846482.77 +UniRef50_A6LTK4 6.72425677579e-06 1.55904222972e-05 3579379821.08 +UniRef50_A7HN65 Glucose 1 phosphate adenylyltransferase 7.25516331892e-08 1.35400264878e-07 25372763.8522 +UniRef50_UPI000377BA4D hypothetical protein 8.72144248627e-07 2.46644594685e-07 -252521886.04 +UniRef50_UPI0003A503E2 hypothetical protein 8.72547786887e-07 5.64451931057e-07 -124382077.76 +UniRef50_A3PP31 7.00559017192e-05 3.35348715825e-05 -14743988029.6 +UniRef50_X2XBL9 2.28646296284e-07 4.63387178885e-07 94767774.9006 +UniRef50_UPI0004759CFA L iditol 2 dehydrogenase 4.84612896173e-08 2.31343228509e-07 73831682.9445 +UniRef50_Q1GD82 2.53264392922e-06 4.13832290256e-07 -855390259.391 +UniRef50_Q67KH9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.85494127818e-07 9.03198554352e-08 -38423021.6806 +UniRef50_O26346 Histidine tRNA ligase 3.02034650922e-05 2.13877165269e-05 -3559025877.21 +UniRef50_U3SYS1 Gamma aminobutyrate permease 2.64075443635e-06 4.19501029901e-05 15869666391.1 +UniRef50_Q8DYM7 Protein translocase subunit SecA 2 2.03308687323e-06 2.78889185501e-05 10438316534.7 +UniRef50_Q87C91 Phosphate binding protein PstS 3.80103938268e-05 1.87764177255e-05 -7764992179.52 +UniRef50_R6P001 1.07984047693e-07 1.51640521827e-07 17624654.3331 +UniRef50_UPI000361C657 hypothetical protein 9.63270075858e-08 1.50718041685e-07 21958327.9189 +UniRef50_A5IWE0 0.000489763846154 9.76123020229e-05 -1.58316390606e+11 +UniRef50_K2AF05 1.89667906072e-05 8.20793165379e-06 -4343483385.53 +UniRef50_UPI0003C10267 5.21784097736e-07 1.64200068792e-06 452245184.059 +UniRef50_P39393 1.63744657209e-05 7.90884139125e-06 -3417676426.77 +UniRef50_Q1BTH0 Formamidopyrimidine DNA glycosylase 7.79070973519e-08 5.55792664548e-07 192928267.792 +UniRef50_D8JEM9 1.07545865766e-06 3.90871732591e-05 15345795640.8 +UniRef50_F3GHC1 Putative monovalent cation H+ antiporter subunit A 4.09319752908e-07 1.40792035729e-07 -108407934.631 +UniRef50_F9KEG1 1.49485901325e-06 1.52088875647e-06 10508526.7588 +UniRef50_R4VNY3 Membrane protein 3.23164852676e-05 1.39537731812e-05 -7413252205.1 +UniRef50_P22874 Mercuric resistance operon regulatory protein 0.000112728209962 3.35899893494e-05 -31949070796.5 +UniRef50_P0AGB8 ECF RNA polymerase sigma E factor 8.7249418895e-05 9.73191973255e-06 -31294765658.5 +UniRef50_UPI00037E5BDF hypothetical protein 3.40392583036e-07 1.93289904637e-07 -59387156.4225 +UniRef50_Q4SV05 Chromosome undetermined SCAF13832, whole genome shotgun sequence 3.17490956244e-07 1.17616036438e-07 -80691957.8668 +UniRef50_A3Q0W3 4.12182937325e-07 4.49159110089e-08 -148270205.397 +UniRef50_A2RM05 Queuosine precursor transporter QueT 6.16344963098e-05 2.45359464467e-05 -14977139830.1 +UniRef50_Q6LLQ5 Probable GTP binding protein EngB 1.4291691902e-05 2.40178032016e-05 3926550484.46 +UniRef50_UPI00041CCB11 sugar ABC transporter permease 2.5376264264e-06 4.16512762488e-06 657042205.512 +UniRef50_A6V513 2.00968583281e-07 1.40968321374e-07 -24222842.0179 +UniRef50_A0A026BBH0 Aldo keto reductase 5.11998073964e-05 3.74396197367e-05 -5555156614.71 +UniRef50_A4WXV7 Transcriptional regulator, GntR family 8.46924300327e-06 2.53490734069e-06 -2395764129.47 +UniRef50_M9R7V5 Cold shock protein 4.3138275906e-05 2.85376436176e-05 -5894454424.73 +UniRef50_O58411 Pyruvate ketoisovalerate oxidoreductases common subunit gamma 5.06756246733e-05 1.67160399168e-05 -13709901097.2 +UniRef50_A0A023RSV7 Reverse transcriptase 1.90569586946e-06 6.47196514987e-05 25358764701.4 +UniRef50_D4HAZ8 2.00256312201e-06 4.56455867613e-05 17619224203.3 +UniRef50_I6X2N5 1.33860279732e-06 3.48944429041e-05 13546904427.6 +UniRef50_P25960 Type 4 prepilin like proteins leader peptide processing enzyme 2.4017910303e-05 6.43557551107e-06 -7098204315.0 +UniRef50_D5WUG2 5.30583811632e-07 1.07859269588e-05 4140207875.74 +UniRef50_Q6D201 Sulfate thiosulfate import ATP binding protein CysA 2.10110867828e-06 9.15364530134e-07 -478699463.325 +UniRef50_Q04DG6 1.13014809771e-07 5.06179038489e-08 -25190396.6169 +UniRef50_UPI0003756849 succinylarginine dihydrolase 1.14191926217e-07 3.90398405948e-07 111507945.302 +UniRef50_UPI000473959B 3 oxoacyl ACP synthase, partial 1.01030393279e-07 2.64550794357e-07 66015192.5362 +UniRef50_C4XLK3 DNA directed RNA polymerase subunit alpha 8.76701431844e-08 1.4299277781e-07 22334426.4834 +UniRef50_O33641 Outer membrane protease IcsP 3.96340291988e-05 8.23282908657e-06 -12677049821.4 +UniRef50_UPI0002197747 haloacid dehalogenase 5.4464920978e-07 1.38764290221e-06 340326898.33 +UniRef50_P49778 Elongation factor P 0.000243691113653 2.81104347607e-05 -87032565541.1 +UniRef50_P0AD45 Quorum sensing regulator protein G 2.76463240917e-05 2.83051155147e-06 -10018448046.7 +UniRef50_B9JX75 1.18971460875e-07 1.95629989661e-07 30947988.7768 +UniRef50_UPI00046CD0D4 ABC transporter permease 2.89851814929e-06 2.60264482471e-07 -1065095380.31 +UniRef50_F0Y8P3 6.36920694229e-07 1.20610750605e-06 229787700.64 +UniRef50_V7EH29 2.13034294627e-07 4.23040068502e-07 84781907.974 +UniRef50_Q5HN04 0.000103739905284 4.90301659956e-05 -22086993114.7 +UniRef50_Q6GJF6 Dihydroneopterin aldolase 2.32431798977e-05 4.94944198654e-06 -7385406484.16 +UniRef50_Q5HN02 5.11203516334e-05 1.51265278619e-05 -14531148350.4 +UniRef50_UPI00046B8737 3.20490075933e-07 1.87948343769e-07 -53508723.7446 +UniRef50_UPI00037E9D63 hypothetical protein 1.50319541718e-07 1.22409268427e-07 -11267719.8251 +UniRef50_C0HG71 3.13634432924e-07 5.03385356753e-07 76604776.4554 +UniRef50_P32929 Cystathionine gamma lyase 3.19565139608e-06 2.12968777781e-06 -430342593.54 +UniRef50_UPI00046313F5 translation initiation factor IF 3 2.20513827302e-07 2.3759145088e-07 6894446.20445 +UniRef50_B7KEP3 Bifunctional protein FolD 2.36352233125e-07 2.81908793437e-08 -84037292.9485 +UniRef50_V4Q726 1.64972710783e-06 3.58789719943e-07 -521167265.074 +UniRef50_H9KRJ0 8.65056717976e-07 1.08560576405e-06 89038356.3412 +UniRef50_A0A031F6L1 Porin O 9.36219727163e-06 3.95428249963e-06 -2183241556.03 +UniRef50_UPI0003B54A55 chemotaxis protein 1.10740462558e-06 1.11214277493e-07 -402174268.153 +UniRef50_P0A2Y1 Arginase 2.19165048988e-05 9.46983052827e-06 -5024875181.24 +UniRef50_S9RRM6 High affinity K+ transport system, ATPase chain B 1.5874461802e-07 3.8665645654e-07 92010806.0033 +UniRef50_UPI0004745E14 hypothetical protein 8.41849552099e-08 1.16685248209e-07 13120767.1072 +UniRef50_B9KUL3 GCN5 related N acetyltransferase 0.00043070442519 1.33126895675e-05 -1.68506165644e+11 +UniRef50_Q98H85 Cation efflux system protein 7.24470395197e-05 9.16990353245e-06 -25545756295.9 +UniRef50_I7EYE9 3.25030721334e-06 7.38653142985e-07 -1013985569.67 +UniRef50_W8S3E2 1.80059545e-06 4.07898024684e-07 -562249040.921 +UniRef50_UPI000376F465 hypothetical protein 1.71213333445e-07 1.28125491575e-07 -17395090.5102 +UniRef50_J5HWF5 7.28087787662e-07 3.1492698931e-06 977460927.212 +UniRef50_Q9JS61 Dihydroxy acid dehydratase 7.62570552755e-05 0.000748872952463 2.7154329162e+11 +UniRef50_B1Y6A6 Periplasmic nitrate reductase 0.000113032890575 2.24511089736e-05 -36568976795.9 +UniRef50_K4VY87 1.06921300841e-05 7.77149224201e-06 -1179097337.11 +UniRef50_UPI000363A65E ABC transporter ATP binding protein 2.80029543414e-07 8.39860800505e-08 -79145151.8839 +UniRef50_M1MNB9 Transcriptional regulator, RpiR family 1.59276788545e-06 1.28182932957e-05 4531882360.79 +UniRef50_P75980 Putative protein BeeE from lambdoid prophage e14 region 4.26428940886e-05 4.40771201791e-06 -15436012200.4 +UniRef50_D2J7Y2 0.000501460901656 0.000110872105218 -1.57685490186e+11 +UniRef50_L0EBD3 Lipoprotein, YaeC family 2.33604285751e-06 9.94010170098e-06 3069851867.4 +UniRef50_A4EAB4 1.24116549453e-08 3.1575802666e-06 1269743164.08 +UniRef50_A0A017HMY7 2.88134441751e-05 2.77129587083e-06 -10513534843.5 +UniRef50_UPI0003700BFB hypothetical protein 1.09587993289e-06 3.17183709175e-07 -314369221.191 +UniRef50_UPI000373B788 hypothetical protein 7.24868328232e-07 1.4988848442e-07 -232126418.743 +UniRef50_A0A011PBV4 4.30592382719e-06 1.26941167813e-06 -1225877216.77 +UniRef50_F7R3U3 Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein 2.65905521061e-05 7.25277465772e-06 -7806898057.13 +UniRef50_P51007 Transcriptional activator protein FnrL 0.00010924379198 3.36039348192e-05 -30536738541.2 +UniRef50_V9AR48 2.9854908243e-07 1.16380461046e-06 349314274.545 +UniRef50_UPI00035F62EF hypothetical protein 3.02054295602e-06 2.10047016396e-06 -371444676.717 +UniRef50_B9KX33 FlaF protein 0.000219735267976 4.27982755914e-05 -71431635086.9 +UniRef50_Q2JHF7 Acetylglutamate kinase 6.19591189608e-07 2.22433417259e-07 -160337466.371 +UniRef50_UPI000262920F ATP dependent Clp protease adapter protein clpS 7.50503540748e-06 4.59388084051e-07 -2844414284.28 +UniRef50_UPI0002D72F69 hypothetical protein 1.29567753991e-07 3.85614977173e-07 103369406.051 +UniRef50_A1AVM5 DNA directed RNA polymerase subunit alpha 1.16934550292e-07 8.6884601404e-08 -12131533.1204 +UniRef50_Q3IZ91 Crotonyl CoA reductase 0.000108533022874 2.90603747031e-05 -32084083305.7 +UniRef50_B5F3L0 Protein YebF 3.19903380388e-06 9.89888397308e-06 2704811729.71 +UniRef50_D9SWY9 Phosphofructokinase 1.08413797722e-05 9.82013686033e-06 -412288295.582 +UniRef50_M9RJL9 3.79127393571e-06 4.86416934213e-07 -1334211326.66 +UniRef50_B5YDB0 Thymidine kinase 1.91510515853e-07 2.88785795692e-07 39271224.1729 +UniRef50_UPI00023772DA putative transmembrane efflux protein of the MFS type 1.40065594042e-07 6.94387244008e-08 -28512933.9633 +UniRef50_UPI00038F2DE3 1.62392071367e-07 6.95892921192e-07 215380839.866 +UniRef50_Q5Z8D5 Os01g0349000 protein 1.134658825e-07 6.76041932905e-07 227118855.133 +UniRef50_UPI000361B676 hypothetical protein 4.93829784593e-07 5.05574345641e-08 -178954487.27 +UniRef50_A6U352 8.57922701941e-06 5.50279574895e-06 -1241993055.94 +UniRef50_UPI0003681885 hypothetical protein, partial 1.87512100193e-08 2.47073470555e-08 2404565.61153 +UniRef50_X1XJA7 4.14672156631e-05 4.29582582897e-05 601952205.509 +UniRef50_Q5HK08 Beta hemolysin 9.13599284771e-05 5.40851226132e-05 -15048296540.6 +UniRef50_UPI000237AA65 binding protein dependent transporter inner membrane component 6.1846068264e-07 9.91302653334e-07 150520878.855 +UniRef50_Q3J7A3 Adenylate kinase 7.92539999372e-08 2.42494351445e-07 65902133.0882 +UniRef50_Q2FFI7 Adenylosuccinate lyase 0.000421063992613 0.000492150615458 28698541973.5 +UniRef50_K1PM14 Threonine synthase like 2 3.34492692877e-08 7.32800194701e-08 16080162.6269 +UniRef50_P14789 Protease LasA 3.46160743749e-06 2.33451940873e-06 -455019268.136 +UniRef50_Q9RXH7 Fatty acid CoA ligase, putative 7.50966821352e-07 0.00017791347335 71522677914.2 +UniRef50_Q17VI1 Carbamoyl phosphate synthase small chain 1.11572213456e-06 3.12544472898e-05 12167373188.9 +UniRef50_G2QDG1 1.5801699577e-08 1.35536304113e-08 -907573.109104 +UniRef50_Q47AK8 Transcriptional regulator, BolA protein family 2.64940892145e-07 8.13834753557e-07 221595187.537 +UniRef50_A6UYT5 2.74048041324e-06 7.38448811562e-06 1874842897.83 +UniRef50_A6LPC3 ATP dependent helicase deoxyribonuclease subunit B 4.94562618109e-06 1.73729230968e-05 5017052264.95 +UniRef50_I6U222 ABC transporter permease 4.01912504961e-05 1.80066840691e-05 -8956181701.82 +UniRef50_P05804 Beta glucuronidase 1.13750019631e-05 2.06055348713e-06 -3760357150.89 +UniRef50_E0TN47 4.99100029369e-07 9.12410005749e-07 166858309.348 +UniRef50_Q09677 6.47118838034e-06 2.76447848459e-05 8548040722.41 +UniRef50_D3QCP0 0.000173476716169 5.72999287322e-05 -46901994737.8 +UniRef50_P58342 Copper transporting ATPase 2 4.40081108864e-08 1.2453931293e-06 485013874.584 +UniRef50_Q3JV89 4.40752835366e-08 1.72728233748e-07 51938774.7494 +UniRef50_F2AIV2 2.60719677038e-05 2.32413915278e-06 -9587289804.67 +UniRef50_UPI00040366D8 cardiolipin synthetase 2.33762738432e-07 3.62849061332e-08 -79724224.2246 +UniRef50_UPI000477CEDC competence protein ComL 4.90759753637e-06 1.92020709849e-06 -1206046179.18 +UniRef50_E4TDW5 DNA methylase N 4 N 6 domain protein 2.07030706866e-06 5.76410520652e-05 22434591684.8 +UniRef50_A5IR33 Prophage antirepressor 7.41134670854e-05 3.84056768113e-05 -14415673117.5 +UniRef50_Q5HEW0 Serine protease SplA 7.34905356531e-05 5.07047884434e-06 -27622016542.2 +UniRef50_A6LV33 AAA ATPase 2.06348090817e-06 1.43659586125e-05 4966661217.6 +UniRef50_B1M3E9 Binding protein dependent transport systems inner membrane component 6.68225323777e-05 1.38481947429e-05 -21386390171.4 +UniRef50_UPI0002C36421 PREDICTED 5.21652074428e-07 6.27352751496e-07 42672660.4255 +UniRef50_Q2FGH0 Superoxide dismutase [Mn Fe] 1 7.47540721377e-05 3.7720515265e-06 -28656312768.1 +UniRef50_UPI0003B79D68 peptide ABC transporter permease 2.05176288339e-06 1.13131587831e-06 -371595751.106 +UniRef50_X0RZB2 Marine sediment metagenome DNA, contig 1.7601830662e-07 1.93984529218e-07 7253184.53316 +UniRef50_UPI00036B0C57 hypothetical protein, partial 1.13381181349e-06 0.000625668048801 2.52132135369e+11 +UniRef50_UPI000362FAB4 hypothetical protein 1.25823749883e-06 1.9383129883e-07 -429713844.673 +UniRef50_Q73X87 Ribonuclease PH 6.67418467342e-05 4.21694454862e-05 -9920179921.09 +UniRef50_UPI00037598D9 hypothetical protein 9.71883093639e-08 1.37287971546e-07 16188725.7011 +UniRef50_V4Z1T8 4.4276361754e-08 3.63074346043e-08 -3217153.68007 +UniRef50_W7WAI9 2.31705772358e-07 6.49857500581e-08 -67306918.8872 +UniRef50_D0K7A4 IucC family siderophore biosynthesis protein 0.0001365102113 3.93519815943e-05 -39223969597.7 +UniRef50_I1ZP85 1.11177068986e-07 4.70009831517e-05 18929990118.2 +UniRef50_Q3IV82 0.000254352988171 6.48290318177e-05 -76513146900.2 +UniRef50_Q3IV81 7.02869045209e-05 8.46077209436e-06 -24959968352.5 +UniRef50_A6M1G7 Thiamine pyrophosphate protein domain protein TPP binding 6.85745318784e-06 1.20017689762e-05 2076823411.61 +UniRef50_F6D2B8 ABC transporter related protein 3.68202428849e-05 2.46439531448e-06 -13869877257.8 +UniRef50_A5UMH6 3.37213048898e-05 6.35089688595e-06 -11049769583.9 +UniRef50_C4J6F8 8.09529774758e-08 1.46767206662e-06 559835513.243 +UniRef50_Q3IV88 0.000101713007153 4.9731587432e-06 -39055063934.5 +UniRef50_UPI00037A900D hypothetical protein, partial 7.8402376145e-07 1.73955881179e-07 -246291889.64 +UniRef50_O31678 NADPH dependent 7 cyano 7 deazaguanine reductase 0.000165607479755 0.000115988485796 -20031796754.8 +UniRef50_UPI0003707B6D hypothetical protein 1.53325344607e-07 7.68099452447e-08 -30890205.6721 +UniRef50_W0H2V6 Hemolysin activator protein 5.52041371149e-06 1.46559158908e-06 -1636981449.08 +UniRef50_O26230 Probable deoxyhypusine synthase 2.62093867135e-05 2.36227762256e-05 -1044246395.25 +UniRef50_UPI0003B47108 PREDICTED 4.84672197334e-08 9.24871027547e-08 17771366.9604 +UniRef50_Q8KA28 3 oxoacyl [acyl carrier protein] synthase 1 0.000103911558271 0.000119304306329 6214241281.27 +UniRef50_P0A2X7 Carbamate kinase 1 0.000176563649554 0.000140878144938 -14406676123.9 +UniRef50_E4N8R6 1.31310347922e-07 5.85092373542e-07 183197372.274 +UniRef50_UPI0003B30ABB sodium 3.24893264685e-07 1.33350963211e-07 -77327977.5934 +UniRef50_R0F7E9 Molybdopterin guanine dinucleotide biosynthesis protein MobA 2.7449217049e-07 2.74497453582e-07 2132.84907123 +UniRef50_UPI0002F30145 50S ribosomal protein L3 5.08462694234e-08 7.21831173316e-07 270884839.612 +UniRef50_F0MZ05 4.93613804407e-06 2.89053871314e-06 -825833552.223 +UniRef50_C6WR75 Short chain dehydrogenase reductase SDR 1.11134245983e-06 8.31285132515e-05 33111338312.5 +UniRef50_UPI00037F0FC3 hypothetical protein 1.18623493346e-07 2.26315081611e-05 9088727804.55 +UniRef50_R5WF49 1.98798999584e-08 3.82966355237e-07 146582457.568 +UniRef50_UPI000255E7F9 MerR family transcriptional regulator 9.26711715395e-06 1.20373524491e-06 -3255286225.5 +UniRef50_Q5E4V6 Ribose import ATP binding protein RbsA 3.1862893321e-06 1.46875485522e-05 4643199483.48 +UniRef50_G7SI90 8.79531428448e-08 1.55116645269e-07 27114730.1175 +UniRef50_Q837G3 Formamidopyrimidine DNA glycosylase 8.60554416956e-08 8.35777457458e-05 33706619934.0 +UniRef50_Q9KPS2 Na translocating NADH quinone reductase subunit B 8.33720765893e-06 2.87670683851e-05 8247785477.75 +UniRef50_A1WG05 Dimethylmenaquinone methyltransferase 5.30308289461e-05 1.36944030877e-05 -15880597831.3 +UniRef50_D0KX67 6.16053119243e-08 2.47837433278e-06 975679310.812 +UniRef50_E6K041 GTPase HflX 3.43165745867e-06 4.49558393003e-05 16763821768.5 +UniRef50_Q54277 Dihydrofolate reductase 2.40732337741e-07 7.79643301974e-06 3050329084.2 +UniRef50_UPI00046CCCAD hypothetical protein 3.1077415077e-07 1.01431396247e-07 -84514238.9254 +UniRef50_UPI0003A0652D peptidase C60 2.28290831091e-07 9.38643106147e-08 -54269635.9151 +UniRef50_G7M701 NAD dependent epimerase dehydratase 1.48811822151e-06 1.27586044159e-05 4550033581.1 +UniRef50_E0NNQ0 2.47274649087e-06 2.54914725009e-05 9292942161.77 +UniRef50_O26325 Cyclic 2,3 diphosphoglycerate synthetase 3.88200704292e-05 6.69868465534e-06 -12967797610.7 +UniRef50_Q9RX12 2.5873805213e-06 0.000428070649503 1.71772816955e+11 +UniRef50_UPI0004757A78 replication initiation protein RepC 4.82053261111e-07 1.27556738889e-07 -143114596.183 +UniRef50_Q4FUR4 Homoserine O acetyltransferase 1.06053140962e-06 8.07706923074e-05 32179970108.1 +UniRef50_Q5HP79 3 phosphoshikimate 1 carboxyvinyltransferase 0.000171545815073 5.45575553442e-05 -47229596060.0 +UniRef50_A4VYG8 Ribosomal RNA large subunit methyltransferase H 8.94311910907e-06 2.30722898052e-05 5704119594.44 +UniRef50_UPI00046C9F03 hypothetical protein 2.78223735227e-08 4.78966086832e-07 182132253.219 +UniRef50_A6M2J1 Glycosyl transferase, group 1 1.45631731206e-06 2.13450270197e-05 8029316170.87 +UniRef50_I1ENI9 3.03647275924e-07 3.20077048074e-07 6632900.63293 +UniRef50_A1WY05 Tryptophan synthase alpha chain 6.03454238986e-08 1.31086651197e-07 28559101.5528 +UniRef50_UPI00047CE877 hypothetical protein, partial 2.50591108207e-07 5.95332465114e-06 2302263511.69 +UniRef50_J7TB42 Oxygen insensitive NADH nitroreductase 1.8874299443e-06 1.93124074851e-05 7034677261.74 +UniRef50_Q6A6Y6 6,7 dimethyl 8 ribityllumazine synthase 1.64124342979e-05 4.73539781693e-05 12491480956.3 +UniRef50_X9LDU8 4.37869009959e-05 1.15108929725e-05 -13030220510.2 +UniRef50_UPI000252BAC1 PREDICTED 2.35467222547e-07 4.04005921262e-07 68041140.8737 +UniRef50_A8LU41 Replication protein B 0.000206527645079 5.90632862231e-05 -59533171261.3 +UniRef50_C6ST62 3.60577688688e-05 4.82031831339e-06 -12610942115.8 +UniRef50_C6ST67 4.76603538458e-05 1.55231870474e-05 -12974168603.9 +UniRef50_P37780 dTDP 4 dehydrorhamnose 3,5 epimerase 1.03869520212e-07 3.445025868e-07 97146521.8814 +UniRef50_UPI00037518CF hypothetical protein 9.46331512487e-09 1.14617432135e-07 42452007.4231 +UniRef50_I7EP81 Bifunctional adenosylcobalamin biosynthesis protein CobP 4.24443357646e-05 6.49656259564e-06 -14512557157.1 +UniRef50_B2TS08 PHP domain protein 1.63691463422e-05 2.56797134949e-06 -5571703704.02 +UniRef50_S9R0I2 9.93267750971e-07 2.3320126524e-07 -306848167.354 +UniRef50_K7VG66 4.12409083971e-08 2.49041144677e-07 83891505.3819 +UniRef50_E3I2I3 PUCC protein 8.43480735608e-07 4.78283012381e-07 -147434802.347 +UniRef50_UPI00032A201E PREDICTED 1.26166630636e-07 1.67823392421e-07 16817345.9186 +UniRef50_M2WAS0 4.87801433499e-09 2.152918866e-08 6722283.40789 +UniRef50_D4H9P2 Amine oxidase 2.17266859686e-06 6.49614133503e-05 25348586761.5 +UniRef50_R6G969 Hypoxanthine phosphoribosyltransferase 5.92488113511e-06 7.08822406533e-06 469655816.753 +UniRef50_P75684 1.10954780239e-05 1.31624549324e-06 -3947996177.31 +UniRef50_A6L4U5 Altronate oxidoreductase 1.50156451202e-06 4.29462944642e-05 16731746065.7 +UniRef50_Q5HNN3 Porphobilinogen deaminase 0.000122699608397 3.92796608385e-05 -33677656507.2 +UniRef50_UPI00034C244F hypothetical protein 6.38888048112e-08 9.91684319403e-08 14242818.4017 +UniRef50_UPI000467C74C hypothetical protein, partial 1.35683874576e-06 7.14726709925e-07 -259228508.467 +UniRef50_B0KQA4 Lipoprotein 4.97180446663e-06 2.42726059064e-06 -1027263587.8 +UniRef50_B5Y813 7.13439341265e-07 5.48643350466e-08 -265874811.634 +UniRef50_Q46ZM0 sn glycerol 3 phosphate import ATP binding protein UgpC 0.000168706248213 3.84318185498e-05 -52593385902.0 +UniRef50_UPI00041C29D4 acyl CoA dehydrogenase 5.54462639687e-08 2.71780250604e-07 87336685.1211 +UniRef50_Q1MA75 Glutamate 5 kinase 6.64940069619e-06 1.38435390009e-05 2904361915.62 +UniRef50_W2DD36 Pirin family protein 9.56373699016e-08 7.50921228771e-08 -8294368.34232 +UniRef50_UPI000374B537 hypothetical protein 6.88597937187e-08 1.0470590916e-07 14471516.685 +UniRef50_D8JIN7 Diguanylate cyclase domain protein 5.62851871995e-07 5.08647495217e-05 20307493354.9 +UniRef50_Q838L2 L rhamnose isomerase 2.46771786606e-05 6.00039425772e-05 14261848101.3 +UniRef50_Q95XX1-3 Isoform c of Nicotinate phosphoribosyltransferase 8.96024584777e-08 1.66253822996e-07 30945096.4741 +UniRef50_UPI0002558ADA RNA binding protein 5.75973883736e-08 6.03255532236e-08 1101393.62829 +UniRef50_E5QTA2 1.07230539787e-06 7.60645733524e-07 -125820830.991 +UniRef50_D8BS45 1.14506174628e-06 4.73770115279e-06 1450392615.05 +UniRef50_F4GQ68 Acetolactate synthase 2 catalytic subunit 6.83851429081e-07 3.87097362143e-06 1286680339.44 +UniRef50_U3SQS3 5.0800647338e-05 1.59667324045e-05 -14062878918.9 +UniRef50_A6LWQ9 3.69702478148e-06 1.7084374783e-05 5404637476.86 +UniRef50_A6LWQ8 1.909709893e-06 1.38984395529e-05 4839997281.96 +UniRef50_P55478 UPF0721 transmembrane protein y4hK 1.36672589222e-05 7.16724846167e-06 -2624133987.01 +UniRef50_Q4PDQ3 1.23787024116e-07 1.34261010992e-07 4228477.03211 +UniRef50_A6LWQ2 1.87803974553e-06 3.15846743525e-06 516924370.955 +UniRef50_UPI00035D39C5 MULTISPECIES 5.21231885978e-08 8.54319736737e-08 13447165.2799 +UniRef50_UPI0002375F1F hypothetical protein 1.43434354276e-05 4.8733713943e-06 -3823181061.0 +UniRef50_UPI00037B7293 hypothetical protein 3.01668644459e-08 4.56323211034e-08 6243594.63513 +UniRef50_Q0ZKT3 ChrA 9.60524144667e-07 1.38625496421e-05 5208706018.96 +UniRef50_Q5PGP5 Glutathione transport system permease protein GsiC 1.87193432061e-05 1.93227942332e-06 -6777143649.55 +UniRef50_A1ISE9 SpoU methylase family protein 2.63362317798e-06 3.50267031795e-05 13077483904.4 +UniRef50_B4V0E4 1.85448134736e-07 1.78948633104e-06 647569903.608 +UniRef50_A1WDW4 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.86955026974e-06 5.36971005001e-07 -537978601.762 +UniRef50_UPI0003B33BE3 excinuclease ABC subunit A, partial 9.31159610723e-09 6.20396998906e-07 246702675.971 +UniRef50_UPI0003C7EA97 protein tyrosine kinase 2.17318396365e-07 2.44158850603e-07 10835820.7453 +UniRef50_A0A023RVY2 Peroxidase 2.25589236365e-06 3.209128431e-05 12044913850.2 +UniRef50_UPI0003B6B16C GumN family protein 2.72622024195e-07 1.2011127702e-07 -61570460.1519 +UniRef50_UPI0003814F56 hypothetical protein, partial 3.01368815027e-05 2.74683593385e-06 -11057697509.8 +UniRef50_K0SL40 1.16112264068e-07 3.79649919873e-08 -31549012.7138 +UniRef50_UPI00035D3F59 hypothetical protein 1.79290988471e-06 7.7564287329e-07 -410683175.78 +UniRef50_E3EY41 6.26528039592e-06 2.06189650528e-07 -2446129287.32 +UniRef50_UPI000371CC4C hypothetical protein, partial 3.17404198979e-07 2.03245374636e-07 -46087318.2736 +UniRef50_UPI000471DA2C hypothetical protein, partial 6.66322239618e-07 5.16705616031e-07 -60402066.9445 +UniRef50_R9ZP34 GntR family transcriptional regulator 2.91120299886e-06 5.88671173145e-06 1201249388.94 +UniRef50_A5UJX8 Peptide nickel ABC transporter, permease component, DppB 2.81784679336e-05 1.06670196846e-05 -7069586547.76 +UniRef50_Q47AM5 Phosphoribosyl ATP pyrophosphatase 9.53970735437e-07 5.17276217342e-07 -176298935.799 +UniRef50_A1B4P8 5.82087481806e-06 1.00337529268e-06 -1944883675.76 +UniRef50_UPI000468F104 hypothetical protein 3.28664846183e-07 2.03183631001e-07 -50658306.3966 +UniRef50_A0KXX9 Ion transport protein 1.17690198404e-05 7.03051887205e-06 -1912990988.87 +UniRef50_B0VBT1 2.22320577909e-06 6.16611339217e-05 23995820976.6 +UniRef50_UPI000366C56B hypothetical protein 2.82101963236e-07 2.43181287929e-07 -15712754.2318 +UniRef50_UPI000463A6B8 carbonic anhydrase 1.66895300323e-07 2.37532247619e-07 28517002.4362 +UniRef50_UPI0004791861 chemotaxis protein CheW 1.65289930707e-06 1.05008894531e-06 -243361940.357 +UniRef50_Q8CS22 Putative membrane protein insertion efficiency factor 2.3666020019e-05 2.60573563408e-05 965411818.107 +UniRef50_A8LHU2 Processing peptidase 6.1055635639e-05 5.60812462369e-06 -22384840614.4 +UniRef50_D5WZX2 Poly beta hydroxybutyrate polymerase domain protein 7.83147632262e-05 1.87480032019e-05 -24047831988.2 +UniRef50_UPI0003B3160E beta lactamase 2.68061958871e-08 3.62947109964e-07 135704211.926 +UniRef50_W4UEC1 1.39898634813e-06 8.26457488646e-06 2771722343.17 +UniRef50_R7I9W9 Val start codon 3.99378741759e-07 5.96224488951e-07 79469043.7104 +UniRef50_Q07QX1 NADH dehydrogenase 2.55943443219e-06 7.80138338526e-06 2116239118.3 +UniRef50_A5E8J0 Heat inducible transcription repressor HrcA 8.24710879027e-05 1.34813141531e-05 -27852018262.4 +UniRef50_A4VKS4 Lipoprotein, putative 5.02826985466e-06 1.66219533874e-06 -1358925588.46 +UniRef50_Q2CAF3 Transposase orfA IS5 family element 2.73300472288e-06 2.29676447605e-06 -176115540.915 +UniRef50_L7VRM1 OadB 4.14564638548e-05 1.97845163906e-05 -8749231136.0 +UniRef50_N6U3D2 Transposase 3.59584983277e-06 1.59048564335e-06 -809590131.855 +UniRef50_C1D0K2 6.8931561726e-06 0.000314794093342 1.24303386705e+11 +UniRef50_X5K3C1 Phosphoglucomutase phosphomannomutase family protein 3.47179042659e-06 2.57411427881e-06 -362402876.584 +UniRef50_UPI00026C6979 ABC type enterochelin transporter permease, partial 9.17249552513e-08 2.66222643533e-07 70446858.0869 +UniRef50_A3PNM9 ROK family protein 3.82484297307e-05 5.00338884245e-06 -13421430969.1 +UniRef50_P31675 Sugar efflux transporter A 3.89116332432e-05 6.1441903723e-06 -13228618788.7 +UniRef50_P30417 Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase 5.52919022573e-06 3.31816522686e-06 -892617924.372 +UniRef50_Q9SH30 Probable copper transporting ATPase HMA5 1.53007726499e-08 5.07037312941e-07 198520075.601 +UniRef50_F6AYB7 Lipoprotein 3.06286651881e-07 1.21952881679e-07 -74417805.0603 +UniRef50_Q8X7X9 Probable ATP dependent helicase DinG 3.22257779892e-05 6.69475517634e-06 -10307187210.4 +UniRef50_P0AA62 Inner membrane protein YghB 2.67941591725e-05 3.38148899085e-06 -9451982258.12 +UniRef50_A4VZ41 ATP dependent exoDNAse , alpha subunit helicase superfamily I member 2.55591490141e-06 3.04429359698e-05 11258332617.5 +UniRef50_R9ZFU1 Ammonium transporter 1.28362274926e-05 7.07748390358e-05 23390528466.7 +UniRef50_A5IQG6 Alpha beta hydrolase fold 9.48232904894e-05 4.69190946785e-06 -36387144554.8 +UniRef50_A1VLE6 3.62644118822e-07 2.85316569017e-07 -31218080.772 +UniRef50_G7ZLK6 Galactosyl transferase 0.000107618562079 2.55673810335e-05 -33125068669.3 +UniRef50_K2DS47 1.89413224876e-07 8.86269994962e-08 -40688635.972 +UniRef50_H6RPX4 6.35842519842e-08 1.19884995349e-06 458320694.976 +UniRef50_UPI00047AC889 ATPase P 3.17054757443e-08 4.53287265882e-07 170197742.069 +UniRef50_G7LZ49 Alpha beta hydrolase fold protein 9.19843985708e-06 1.59953975806e-05 2744015241.04 +UniRef50_UPI000370CAD4 50S ribosomal protein L5 9.87380905901e-06 5.60586160108e-06 -1723022762.37 +UniRef50_Q44290 Homocitrate synthase 1 5.82103379182e-07 9.73875440996e-08 -195685730.755 +UniRef50_K0TM89 1.20319073387e-06 2.28695027754e-07 -393415874.966 +UniRef50_UPI0003C7F990 histidine kinase 2.49103995888e-07 6.18451536442e-08 -75598692.5383 +UniRef50_D7GFC8 Ppx GppA phosphatase family 4.17042333463e-06 5.24774921477e-05 19502156474.2 +UniRef50_R6TT37 1.39623065708e-07 5.9704367748e-06 2353971046.49 +UniRef50_H9UYD8 2.69632849186e-06 5.06257208899e-06 955281577.236 +UniRef50_P58586 Putative gluconeogenesis factor 2.84581245179e-05 7.74722274249e-06 -8361245198.07 +UniRef50_UPI000473FA3F hypothetical protein, partial 1.68743292593e-06 1.06953155524e-06 -249454365.85 +UniRef50_F5YM75 ABC transporter, permease protein 4.79988007449e-06 8.10661186474e-06 1334968201.89 +UniRef50_UPI0003619046 hypothetical protein 1.06745767645e-07 1.6010795515e-08 -36630821.6922 +UniRef50_UPI0003B69332 NADH dehydrogenase 1.77800789571e-08 5.70114121169e-08 15838170.6192 +UniRef50_A6QE51 8.65998240698e-06 1.24135629171e-05 1515366513.55 +UniRef50_Q7A528 UPF0354 protein SA1564 0.000195903990573 9.30101942891e-05 -41539488208.7 +UniRef50_B9KRF2 2.07758440124e-05 6.59574698727e-07 -8121184776.32 +UniRef50_Q5XAE3 Malonyl CoA acyl carrier protein transacylase 5.50770081011e-05 3.01956989197e-05 -10044889844.5 +UniRef50_UPI00036445B6 MFS transporter 8.83300502232e-08 7.74061772693e-08 -4410101.56248 +UniRef50_I7DEQ4 Trk system potassium uptake protein TrkA 6.28145457055e-05 1.10415262574e-05 -20901403277.6 +UniRef50_UPI0003A5CBBE hypothetical protein 3.08863079482e-07 1.62378174148e-07 -59137753.8553 +UniRef50_T1Y9W9 Regulator of kinase autophosphorylation inhibitor 0.000172299258589 1.59841561035e-05 -63106325075.6 +UniRef50_R5QQK6 UPF0301 protein BN682_00876 3.75241223158e-07 7.38462311456e-07 146636810.57 +UniRef50_W4U2A1 5.0527468837e-07 1.28758607023e-05 4994157377.97 +UniRef50_M9VDD9 Periplasmic binding protein 2.06951071981e-07 1.49263552215e-05 5942404082.55 +UniRef50_Q2RS90 1.54913580894e-07 1.34892721421e-07 -8082666.65282 +UniRef50_UPI00046448EA deaminase 9.09807857523e-08 6.89789078035e-07 241746255.799 +UniRef50_Q54TJ4 Probable ATP dependent RNA helicase ddx27 2.00718153452e-08 4.3864287513e-08 9605312.98061 +UniRef50_W7K686 3.91120335048e-06 2.17822850854e-06 -699623209.684 +UniRef50_W5X6I0 Metallophosphoesterase 2.42185029341e-08 3.77254746648e-08 5452930.23687 +UniRef50_D3QEQ6 Para aminobenzoate synthase, amidotransferase component PabAb 0.000110624267328 9.55852892789e-06 -40801478808.2 +UniRef50_A4SR46 Short chain dehydrogenase reductase 1.49224925967e-07 4.18584934359e-05 16838543527.7 +UniRef50_U3TK30 Iron sulfur cluster assembly ATPase protein 2.96772838078e-07 1.47004646892e-06 473664962.457 +UniRef50_UPI0004412958 ribosomal protein S12 7.28483175509e-07 1.78830794421e-06 427864264.637 +UniRef50_Q92263 Glyceraldehyde 3 phosphate dehydrogenase 4.69732337339e-08 2.80583112081e-07 94311174.6043 +UniRef50_R7PWP6 2.89705369113e-05 2.02838482117e-05 -3506922825.69 +UniRef50_Q92PC8 5,6 dimethylbenzimidazole synthase 2.14208927053e-05 1.32389155389e-07 -8594430122.41 +UniRef50_Q49W91 Na H(+) antiporter subunit A1 0.000186862266216 6.60006311788e-05 -48793325203.5 +UniRef50_Q8RGJ4 Aspartate tRNA ligase 7.61572270731e-07 0.000312513917784 1.25858247515e+11 +UniRef50_Q0TBG1 Guanylate kinase 1.98413837299e-05 7.96882842116e-06 -4793096270.76 +UniRef50_P08369 Inner membrane protein CreD 3.25321608528e-05 4.21017665556e-06 -11433932570.2 +UniRef50_G7M6S6 Radical SAM domain protein 8.33302403623e-07 7.20310090259e-06 2571565820.25 +UniRef50_B9T7I1 5.6460130937e-08 1.9875074788e-07 57444468.1621 +UniRef50_A6LYI7 Polysaccharide deacetylase 2.51099327394e-06 2.25574198931e-05 8092988423.49 +UniRef50_Q5LW47 50S ribosomal protein L24 1.44776128338e-05 1.1983377356e-05 -1006953470.1 +UniRef50_UPI0003EAF802 PREDICTED 6.17504325624e-08 1.48888081776e-07 35178538.2867 +UniRef50_F8WKJ0 0.000121834634069 2.4411288099e-05 -39331000287.0 +UniRef50_B3FTP2 Putative membrane protein 2.19882923169e-06 8.75166569277e-07 -534378859.982 +UniRef50_UPI0003BB74C6 PREDICTED 1.36041627187e-07 8.67984253906e-08 -19880084.8472 +UniRef50_C4LL84 Sialic acid transporter 1.80840546199e-06 8.27658309472e-05 32683506127.7 +UniRef50_UPI0003746324 hypothetical protein 3.6849670474e-08 1.0368839811e-07 26983614.5501 +UniRef50_E8PBY1 AdiY 9.96005247615e-07 6.74620957393e-05 26833176362.1 +UniRef50_B9KQL5 1.75213030668e-05 4.70555047793e-06 -5173876587.11 +UniRef50_L0KL03 ABC type sugar transport system, periplasmic component 7.72323312431e-05 3.8227277368e-05 -15746818895.2 +UniRef50_M3Y9H2 1.03133635481e-06 1.87017501852e-07 -340861881.897 +UniRef50_Q8YPE1 Acetyl coenzyme A synthetase 2.01613725332e-07 2.31077632785e-06 851494824.973 +UniRef50_B8FRY4 Periplasmic binding protein 4.592283376e-06 1.1664232256e-05 2855032545.43 +UniRef50_UPI00016C42F5 drug resistance transporter, EmrB QacA subfamily protein, partial 2.61599585786e-07 3.21370098824e-07 24130089.5801 +UniRef50_P0AC82 Lactoylglutathione lyase 5.92452041641e-05 4.1506704306e-06 -22242339354.2 +UniRef50_Q8ZXL4 NH dependent NAD(+) synthetase 2.50654519738e-07 7.12486380937e-08 -72428355.9774 +UniRef50_UPI00046D6304 hypothetical protein 3.3564706617e-08 3.820267938e-07 140678420.706 +UniRef50_P9WGB4 O succinylhomoserine sulfhydrylase 1.569442599e-07 1.36860564936e-07 -8108034.11162 +UniRef50_A0A024HB78 Rod shape determining protein RodA 3.87096275183e-06 4.86576159628e-05 18080921495.3 +UniRef50_UPI00047E14BB alpha amylase 5.58695593168e-08 4.23477883964e-07 148407991.721 +UniRef50_U5MX52 Macrolide export ATP binding permease protein MacB 5.85855130096e-07 6.01686345668e-06 2192564707.41 +UniRef50_A5V3U8 3.56792049985e-07 3.63613511276e-06 1323911036.5 +UniRef50_R1DQP4 3.80192761535e-07 2.38555019617e-07 -57180894.5028 +UniRef50_A5ULR1 Predicted phosphatidylglycerophosphatase A related protein 4.25209515452e-05 1.64674742667e-06 -16501417785.5 +UniRef50_I7BLG8 3.08530298509e-06 7.00973198006e-07 -962583194.061 +UniRef50_K7SKZ4 Glycosyl transferase, group 2 family 9.06985349168e-05 7.12474767724e-06 -33739763474.3 +UniRef50_A0A018R4T4 Nitrate reductase Z subunit alpha 2.69275765937e-07 1.82185042295e-07 -35159593.8576 +UniRef50_F3TY15 Serine aspartate repeat protein F 3.32587517771e-05 1.17876559106e-05 -8668144881.28 +UniRef50_Q8DCB9 Non canonical purine NTP pyrophosphatase 3.35659091628e-07 3.25069822608e-07 -4275017.84832 +UniRef50_Z9KIC6 8.59889079894e-07 1.13356456323e-07 -301384381.121 +UniRef50_Q8E5U9 ATP synthase gamma chain 4.11243278946e-06 3.09938393463e-05 10852353698.9 +UniRef50_UPI00047577E0 hypothetical protein 2.54964350921e-08 3.43698964308e-08 3582325.23205 +UniRef50_K0LW41 4.53083806435e-05 4.56899562284e-06 -16446989661.3 +UniRef50_P58205 Flagellar L ring protein 4.05409179738e-05 1.61568316105e-05 -9844154891.25 +UniRef50_V5V8K7 Thiamine monophosphate kinase 3.46412610349e-06 9.18996773844e-05 35702517278.3 +UniRef50_V8NK60 Octapeptide repeat protein T2 2.80105138267e-07 2.58497145237e-07 -8723411.9461 +UniRef50_L4WM60 Starvation sensing protein RspB 1.49302501322e-05 9.47512667497e-06 -2202300281.58 +UniRef50_UPI00036B0F2C hypothetical protein 1.55923852647e-07 2.61928364828e-07 42795322.3891 +UniRef50_UPI00046310F9 pseudoazurin 5.23955257203e-06 1.93842457496e-06 -1332705881.81 +UniRef50_A0RKF7 Lipoyl synthase 1.42655462901e-07 4.81571787673e-07 136824679.281 +UniRef50_B5FM40 ATP phosphoribosyltransferase 2.89929044295e-05 2.60195691064e-05 -1200371956.86 +UniRef50_Q0A4M5 ATP synthase subunit delta 2.12070780251e-06 1.91295717107e-05 6866687081.97 +UniRef50_Q8DSS6 7.2460574956e-05 4.18685173549e-05 -12350389060.3 +UniRef50_UPI0003B3C008 hypothetical protein 2.24330132509e-07 7.06496690325e-07 194656556.239 +UniRef50_E2QHF8 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 5.29230083303e-06 5.53718822241e-06 98864044.1989 +UniRef50_UPI000364343F hypothetical protein 6.75603350749e-07 2.32268264439e-07 -178979814.677 +UniRef50_UPI000479AAE0 hypothetical protein 1.44325942474e-07 7.06273563612e-08 -29753023.5971 +UniRef50_UPI0003F0EEE2 PREDICTED 1.81394895088e-07 2.70127568248e-07 35822469.027 +UniRef50_Q2CE09 8.19219773903e-06 7.95243444249e-06 -96795385.0397 +UniRef50_Q16DQ1 Flagellar protein, putative 1.06478118328e-06 7.00449518916e-07 -147085163.756 +UniRef50_UPI0002DE5CBD hypothetical protein 2.3660206564e-06 2.11247094991e-07 -869908528.786 +UniRef50_Q9I3V2 8.94920666348e-06 3.86955719131e-06 -2050716826.22 +UniRef50_I0EM06 Metalloendopeptidase related membrane protein 6.63009076357e-06 4.59924750868e-05 15891077582.0 +UniRef50_R4ZBM2 5.23942770178e-06 1.16725970428e-06 -1643984191.71 +UniRef50_P37604 D alanyl D alanine carboxypeptidase DacD 2.83004851349e-05 5.38205133743e-06 -9252452964.86 +UniRef50_M3Z6H8 1.52963633229e-07 3.69297165746e-08 -46844316.0495 +UniRef50_B0V4K0 Phosphoenolpyruvate protein phosphotransferase 5.2893879798e-07 5.87787347158e-05 23516157417.4 +UniRef50_Q02LX5 Putative glutamate cysteine ligase 2 3.95695830542e-06 1.45955537989e-06 -1008232207.62 +UniRef50_UPI0003FA526E trehalose synthase 8.16898465844e-08 4.96299308366e-07 167382927.552 +UniRef50_UPI00046A3CDD hypothetical protein 4.33853032839e-08 4.58677694342e-08 1002202.04816 +UniRef50_R6Q6V2 Cytosine specific methyltransferase 4.73633612113e-07 3.92354288315e-05 15648612390.8 +UniRef50_P39119 Citrate synthase 1 2.87032122391e-08 1.97519364397e-07 68153152.2333 +UniRef50_I1JAZ8 6.03475278435e-06 3.08693420057e-06 -1190070536.07 +UniRef50_UPI000362AC26 hypothetical protein 1.73383949038e-07 3.15740207617e-07 57470968.4961 +UniRef50_UPI0002377E25 binding protein dependent transport systems inner membrane component, partial 4.4875436205e-06 2.81171989782e-06 -676550601.516 +UniRef50_UPI00046A4CBA hypothetical protein 2.30682586959e-08 2.50221029829e-08 788790.915027 +UniRef50_Q0QEP2 ATP synthase subunit beta, mitochondrial 1.32370562884e-07 7.32487831724e-08 -23868187.9754 +UniRef50_Q62KZ5 5.23989252616e-07 3.13031088522e-06 1052204026.24 +UniRef50_C3PHK6 Lipoyl synthase 1.97636643381e-06 0.000113645633529 45082253462.3 +UniRef50_I0C1U2 Trehalose operon transcriptional repressor 0.000174496358606 2.52373966088e-05 -60257674571.6 +UniRef50_B4UIY8 3.64300386614e-07 2.52435933999e-07 -45161052.2519 +UniRef50_Z5X3R4 Aconitate hydratase 1.34556872871e-07 1.25426235039e-06 452038841.606 +UniRef50_UPI000375B6D1 hypothetical protein 3.48540891708e-08 1.99367856433e-07 66416226.6546 +UniRef50_F8HFF8 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.000123873869598 7.80000724527e-05 -18519814842.4 +UniRef50_W5X5A5 9.83116396219e-06 3.61237502835e-07 -3823125520.71 +UniRef50_I6U3N4 7.30618042937e-06 8.51875111142e-06 489529664.259 +UniRef50_W8YU14 1.64587608939e-05 2.29814125973e-06 -5716815916.67 +UniRef50_UPI00035E9EF0 hypothetical protein 2.27321010622e-07 2.58446608692e-07 12565785.8949 +UniRef50_D7BMZ3 ABC transporter related protein 1.39680305184e-06 6.0305719843e-05 23782252602.3 +UniRef50_UPI000255BEE2 transcriptional activator, partial 3.06117049653e-07 6.21453211802e-07 127305078.269 +UniRef50_D4HBV2 Transporter, major facilitator family protein 9.80483087926e-07 2.86593275075e-05 11174289149.8 +UniRef50_Q1C8B1 Succinylornithine transaminase 7.5443137861e-05 0.000209197814473 53998404302.7 +UniRef50_O34206 Alginate biosynthesis sensor protein KinB 1.39144155009e-05 5.98076575463e-06 -3202911759.4 +UniRef50_W8RVI9 Iron sulfur cluster assembly ATPase protein SufC 1.42773010451e-07 2.35689132928e-06 893866735.599 +UniRef50_A7H1C4 GTP binding protein LepA 5.68718678529e-08 2.42084518542e-07 74772619.898 +UniRef50_UPI00046A28BD ABC transporter permease 6.65388561092e-08 6.75104204853e-08 392232.461067 +UniRef50_Q3ADL9 Acetyl CoA carboxylase, biotin carboxylase 3.12797972953e-05 1.35634583452e-05 -7152303438.08 +UniRef50_A2RED4 GntR family regulatory protein 4.11125111341e-05 7.57022240469e-05 13964291566.4 +UniRef50_B7IBN3 Thiol 1.83245625651e-06 0.000180189703715 72005009488.3 +UniRef50_UPI00047E966E cobinamide kinase 4.08956546798e-07 1.19238621968e-06 316280172.706 +UniRef50_W5X9G4 Methylthioadenosine phosphorylase 2.0325324158e-07 2.05286628687e-07 820903.327562 +UniRef50_UPI000456030C hypothetical protein PFL1_02724 6.13871297414e-09 2.58194996202e-07 101758214.618 +UniRef50_I6TWK1 4.75068834251e-05 8.20831638329e-06 -15865313762.4 +UniRef50_I0C256 5.11584105806e-05 8.9489910665e-06 -17040460625.7 +UniRef50_P64549 1.4181526131e-05 3.87631026651e-07 -5568764723.73 +UniRef50_UPI000477C3DA MULTISPECIES 1.66872935978e-07 9.3336860745e-08 -29687415.9607 +UniRef50_UPI00047DA574 hypothetical protein 5.73782744043e-08 1.08651239756e-07 20699525.3025 +UniRef50_F3WYB3 Phasin family domain protein 6.63778872882e-08 4.60061014549e-07 158934709.51 +UniRef50_A9CRC0 2.3862256351e-06 1.22169320374e-06 -470136032.96 +UniRef50_U5NMP2 0.000164672440999 5.35497467104e-05 -44861595313.3 +UniRef50_UPI000262D125 DNA mismatch repair protein MutS 2.25112512046e-08 3.52247198232e-07 133118448.13 +UniRef50_Q6FZZ7 Threonine tRNA ligase 7.85472199989e-07 9.28668884306e-07 57810258.6797 +UniRef50_UPI00036D1788 MULTISPECIES 2.50591866615e-07 6.49490890808e-06 2520907416.03 +UniRef50_L7WQ34 6.87790937647e-05 3.9551344445e-06 -26170227857.0 +UniRef50_P37748 O antigen polymerase 2.60381567713e-05 8.16252516064e-06 -7216611839.91 +UniRef50_UPI0004672B4A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 3.42028284485e-08 3.66508832666e-08 988309.771078 +UniRef50_B9DK04 3.24042441426e-07 3.94060188209e-07 28267023.5907 +UniRef50_A0A032Y4K4 8.79229969723e-07 1.49934025056e-06 250346129.983 +UniRef50_Q027L3 Ribonuclease 3 1.16301406405e-07 1.9867985309e-07 33257189.824 +UniRef50_F4DYP4 Adenylate cyclase 1.23182095919e-05 3.27440563791e-06 -3651094636.18 +UniRef50_A0A024HYE6 4.52311897248e-08 6.84041908825e-08 9355224.93207 +UniRef50_UPI0003B4674E peptide ABC transporter permease 6.79283804487e-08 2.55365825428e-07 75670796.6541 +UniRef50_A6LR23 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 3.93001645363e-06 1.31267784945e-05 3712845692.86 +UniRef50_F2MN23 Decarboxylase 1.61382631969e-07 2.08772156579e-05 8363236004.41 +UniRef50_P11553 L fuculokinase 2.91583361068e-05 1.54302324365e-05 -5542203914.48 +UniRef50_P46126 1.09457885986e-06 1.27861071825e-06 74295919.5569 +UniRef50_P46122 2.8053497348e-05 1.35820763149e-05 -5842290255.37 +UniRef50_Q88QE3 MORN domain protein 9.43714972093e-07 1.51444464203e-06 230410571.394 +UniRef50_A6LX93 NERD domain protein 2.73110124948e-06 1.75084395613e-05 5965792814.81 +UniRef50_Q5F6R3 Agmatinase 1.28688405295e-06 1.88687368667e-05 7098009734.49 +UniRef50_Q8XE09 2 keto 3 deoxy L rhamnonate aldolase 1.42077779903e-05 8.7399968234e-05 29548585370.6 +UniRef50_A7FFQ7 Potassium transporting ATPase C chain 1.5904658901e-05 4.75838802792e-06 -4499886331.6 +UniRef50_UPI0002197648 orotidine 5 phosphate decarboxylase 2.78390542434e-07 1.45259209371e-07 -53746752.8627 +UniRef50_A6LX07 Na+ H+ antiporter 2.12414153e-06 9.61485196865e-06 3024091725.44 +UniRef50_A7ZMU2 UPF0266 membrane protein YobD 2.47802618498e-06 9.5359163165e-06 2849356856.15 +UniRef50_UPI000262832B transcriptional regulator 7.19489360017e-08 2.6826275205e-07 79254296.58 +UniRef50_UPI000378C8E7 hypothetical protein 1.69556494328e-07 1.96334875494e-07 10810761.0844 +UniRef50_Q57MZ8 2.22032794259e-06 2.50902743813e-06 116551529.091 +UniRef50_UPI0004720DD8 hypothetical protein 6.00366868773e-07 4.04298216227e-07 -79155321.0658 +UniRef50_Q1J0J9 DinB YfiT family metal binding protein 8.08898547544e-06 5.43247240164e-05 18665935025.3 +UniRef50_UPI0003EDF3DD PREDICTED 3.9644834698e-07 1.97850890829e-05 7827432190.46 +UniRef50_Q5HKZ8 Uroporphyrin III C methyltransferase, putative 9.35563207926e-05 4.67699437783e-05 -18888234534.1 +UniRef50_UPI0003B7617D hypothetical protein 3.34897986333e-07 2.05205875927e-07 -52358296.4721 +UniRef50_P37766 Acetate CoA transferase YdiF 3.45693267139e-05 8.58467472737e-06 -10490322874.5 +UniRef50_I3TTL9 1.72663849265e-05 1.7926301725e-05 266416509.644 +UniRef50_A6FD16 1.29186557541e-07 2.15364452649e-07 34791073.7768 +UniRef50_UPI00040EB463 ATP synthase F0 subunit I 2.71472807436e-07 4.36824589561e-07 66754543.5384 +UniRef50_Q49W05 0.000174443588119 0.000362409750643 75884246415.1 +UniRef50_Q9I1M2 2 oxoisovalerate dehydrogenase subunit alpha 7.7956081639e-06 3.24797928185e-06 -1835933585.37 +UniRef50_M1EBV1 ADAM metallopeptidase with thrombospondin type 1 motif, 4 5.92049981843e-07 5.93789837823e-06 2158184598.56 +UniRef50_K0HKR5 Cobyrinic acid a,c diamide synthase 1.6556013101e-06 6.08946784961e-05 23915542405.2 +UniRef50_M9VNR8 NAD glutamate dehydrogenase 1.32143150579e-06 5.8982657746e-05 23278544616.0 +UniRef50_Q3J792 D alanine D alanine ligase 7.18377474282e-08 7.85341744493e-08 2703429.76282 +UniRef50_B8JBE1 Sporulation domain protein 4.2692743156e-07 3.53387120655e-07 -29689125.9534 +UniRef50_G7LIJ8 1 Deoxy D xylulose 5 phosphate synthase 1.13061556956e-07 3.35981390994e-06 1310753767.03 +UniRef50_X2HFM3 Integral membrane protein 5.89727450661e-06 4.03315293669e-05 13901531242.9 +UniRef50_A3PNQ6 Response regulator receiver protein 9.27874677158e-06 4.28700176898e-06 -2015228713.15 +UniRef50_E8SGT7 Enoyl CoA hydratase Enoyl CoA hydratase [valine degradation] 3 hydroxyacyl CoA dehydrogenase 0.000144019718007 2.20842313314e-05 -49226852287.8 +UniRef50_L8WI83 4.47946352985e-07 3.94861592991e-08 -164900392.561 +UniRef50_UPI0002000A30 amino acid decarboxylase, partial 2.05620752056e-06 7.3412754802e-07 -533739908.66 +UniRef50_D8JGA5 4.44015505135e-06 5.24724665621e-05 19391233579.7 +UniRef50_A3ACF3 Adenylyltransferase and sulfurtransferase MOCS3 2.03815475252e-07 3.51526921673e-07 59632923.5434 +UniRef50_UPI000382D11F MULTISPECIES 5.46540777085e-07 3.53461762128e-07 -77948367.6841 +UniRef50_UPI0003720140 hypothetical protein 9.35847889313e-08 4.26616774038e-07 134449099.15 +UniRef50_I6SLY5 1.94989782703e-05 6.49620490267e-06 -5249379170.47 +UniRef50_R9SLL8 Aspartate aminotransferase 2.49365054423e-05 5.78852918232e-06 -7730272988.25 +UniRef50_C6V3U5 ABC type phosphate transport system, periplasmic component 3.59437849583e-08 4.79451807033e-08 4845110.73594 +UniRef50_UPI00041F446B ABC transporter 2.96185800746e-07 3.22887723043e-07 10779893.7007 +UniRef50_UPI0001F27501 alcohol dehydrogenase 4.71691930261e-07 5.42434502021e-07 28559644.3285 +UniRef50_U2Z8B8 1.63216128414e-08 4.46073110882e-07 173495953.403 +UniRef50_UPI0003731013 hypothetical protein 1.01153540721e-07 7.58317783359e-07 265305269.065 +UniRef50_D7CNA1 Radical SAM domain protein 1.17841619826e-06 1.56968829045e-05 5861283170.91 +UniRef50_Q494C7 ATP synthase subunit b 2.62066954041e-05 4.99126825692e-06 -8564928281.89 +UniRef50_UPI00037C704A hypothetical protein 2.50653797004e-07 9.85449544691e-08 -61408206.3168 +UniRef50_Q6F739 1.26673150626e-06 7.47987013875e-05 29685758579.8 +UniRef50_W0GX12 4.95724791456e-06 2.12521002504e-06 -1143328449.01 +UniRef50_UPI0003B6FA07 D ribose transporter ATP binding protein 3.87867719423e-07 5.65972031506e-08 -133737972.565 +UniRef50_Q3JRC8 4.39136378455e-08 9.37500967433e-07 360752170.504 +UniRef50_A4WVY8 Ribosomal RNA small subunit methyltransferase G 0.000240767955736 4.36688197425e-05 -79571339878.8 +UniRef50_A0KE20 Alcohol dehydrogenase GroES domain protein 2.02293022897e-05 7.02330283654e-06 -5331424035.09 +UniRef50_Q11KE0 1 deoxy D xylulose 5 phosphate synthase 6.22679773782e-05 1.17900647749e-05 -20378552751.6 +UniRef50_H6PBH3 Thioredoxin 1.44698730955e-05 5.13594269898e-06 -3768222241.28 +UniRef50_K0RB57 2.01287110526e-08 1.11410714606e-07 36851664.9907 +UniRef50_N6UWS6 4.35010318814e-08 1.37295685886e-06 536717631.609 +UniRef50_P76234 3.01443593152e-05 4.55507334399e-06 -10330708762.4 +UniRef50_P25696 Bifunctional enolase 2 transcriptional activator 3.37449354904e-08 6.92209598824e-07 265830264.858 +UniRef50_Q1D5H7 Mutator mutT protein 2.37911337508e-06 8.50735990299e-05 33384778634.3 +UniRef50_S5YFQ1 3.12157187824e-07 2.45235243492e-07 -27017210.1514 +UniRef50_A6M2M5 3.69282072402e-06 1.05984744347e-05 2787897144.9 +UniRef50_UPI0002BA0B17 TetR family transcriptional regulator 1.49705522759e-06 9.02517945504e-06 3039196131.09 +UniRef50_Q2G0B1 HTH type transcriptional regulator MgrA 0.000164022935074 8.01768914466e-06 -62981232181.2 +UniRef50_UPI000288E524 OsmC like protein 4.00164027975e-07 3.78553577514e-07 -8724404.04115 +UniRef50_UPI000382593D hypothetical protein 6.09282285559e-08 1.52354208688e-07 36909790.1023 +UniRef50_X6KWY4 2.43899690743e-08 1.27279396103e-08 -4708104.40381 +UniRef50_O27390 Diaminopimelate decarboxylase 2.85997928363e-05 1.47257428961e-05 -5601124214.6 +UniRef50_UPI0003C19995 PREDICTED 8.72134924636e-06 2.4459578201e-06 -2533452526.49 +UniRef50_UPI00030C3B7B hypothetical protein 1.09422601574e-08 4.41221369153e-08 13395123.41 +UniRef50_Q1GIB5 Peptide chain release factor 2 0.000100595482915 2.34010565783e-05 -31164337194.3 +UniRef50_F0YJ84 8.6442833483e-08 1.39787530604e-07 21535908.8408 +UniRef50_M1MBM8 ATP dependent DNA helicase, UvrD REP family 4.07959711828e-06 3.7658250092e-06 -126673650.852 +UniRef50_K7SJM7 PAC2 family protein 6.10178886572e-06 8.02420346497e-05 29931327026.1 +UniRef50_M4UY53 Cytochrome c type biogenesis protein CcsA ResC 9.7123324747e-07 2.2740105291e-05 8788360778.06 +UniRef50_UPI000197AB5D isopentenyldiphosphate isomerase 4.93267720338e-07 1.38231088656e-07 -143332644.999 +UniRef50_Q58131 Acetylornithine aminotransferase 4.85537942714e-05 2.1837299274e-06 -18720164000.4 +UniRef50_A8L3S1 Malate dehydrogenase 5.76661933149e-06 6.38388505671e-06 249197747.974 +UniRef50_Q4MN04 1.71527494283e-06 1.11284204402e-06 -243209553.933 +UniRef50_D3E3T4 4Fe 4S binding domain containing protein 2.36446726417e-05 3.31196304892e-06 -8208564373.02 +UniRef50_Q9RVU1 1.90649489319e-06 4.76045311068e-05 18448857997.4 +UniRef50_UPI000329107E 7.21440624164e-07 1.01739584679e-06 119480755.153 +UniRef50_U5MZL4 Alpha amylase 2.16560863261e-06 1.27994028691e-05 4292993224.6 +UniRef50_F2MMN9 Dihydroorotate dehydrogenase B ), catalytic subunit 1.39501414241e-07 2.87179940213e-06 1103062226.78 +UniRef50_Q4L5S4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000124028405294 7.55093583571e-06 -47023383759.5 +UniRef50_Q17Z65 NADH quinone oxidoreductase subunit N 9.516453501e-07 3.28289703581e-05 12869267284.5 +UniRef50_Q3J1R9 Operon regulator SmoC 5.33030401594e-05 4.50810953732e-06 -19699112273.3 +UniRef50_Q4KIS2 Adenine deaminase 1.34927681215e-05 1.11450938242e-05 -947784923.023 +UniRef50_Q9CE42 Peptide methionine sulfoxide reductase MsrA 2 3.51285164222e-05 5.92608772976e-06 -11789378817.2 +UniRef50_A6WVY1 Dihydroorotate dehydrogenase 1.20612851113e-07 1.5325461556e-07 13177880.8667 +UniRef50_P76083 3 hydroxyadipyl CoA dehydrogenase 3.09784360577e-05 4.78713889632e-06 -10573748067.4 +UniRef50_P70996 0.000426866550656 5.06606071203e-05 -1.51878955972e+11 +UniRef50_UPI00036C37A7 hypothetical protein 2.11199299261e-07 5.05095807128e-07 118649626.742 +UniRef50_C7NA93 5.38793590574e-06 9.98081432814e-06 1854201380.08 +UniRef50_V4QCD9 6.46526870252e-06 3.1021711541e-06 -1357723750.14 +UniRef50_UPI00047938D1 hypothetical protein 3.03315233813e-08 6.05230968877e-08 12188708.7168 +UniRef50_UPI0001C4F313 putative helicase 4.24803505171e-07 9.9185004842e-07 228923647.953 +UniRef50_A7IGG7 ABC transporter related 7.79791569064e-05 1.73905375874e-05 -24460369125.0 +UniRef50_Q5FP90 Probable malate 4.16972529455e-08 9.93483164922e-08 23274441.8119 +UniRef50_E7BHI6 8.83701660744e-09 7.85808497388e-07 313672921.304 +UniRef50_E3A2J2 4.16919151502e-07 3.48670506162e-07 -27552815.6288 +UniRef50_Q2NYD6 Anthranilate phosphoribosyltransferase 2.14176878489e-06 2.61765960356e-05 9703154701.6 +UniRef50_F2R2E2 4.57840340516e-07 1.13232821364e-06 272299031.277 +UniRef50_Q9HV34 Polyamine aminopropyl transferase 2 5.69849011664e-06 3.22497521783e-06 -998588318.091 +UniRef50_UPI000412C9C3 hypothetical protein 1.62388212176e-07 3.92887577417e-08 -49696760.3552 +UniRef50_UPI000441854A ribosomal protein L17 2.9683244738e-07 2.47146419333e-07 -20058859.2387 +UniRef50_A6LWA6 Transcriptional regulator, TetR family 2.07409883985e-06 2.94335586571e-06 350929728.323 +UniRef50_G8VIN9 1.21073743518e-05 6.14597913596e-05 19924176368.3 +UniRef50_R9NMN5 2.83677383042e-07 1.20619805475e-07 -65828345.0053 +UniRef50_E8TFY3 Amidohydrolase 3 1.55042993445e-06 1.24693893825e-06 -122523039.419 +UniRef50_Q8D5H0 GlpM protein 3.34058397217e-06 2.15929365716e-06 -476901396.232 +UniRef50_Q9HTQ5 1.90716528408e-06 6.82134547142e-06 1983914845.4 +UniRef50_A1B622 5 Nucleotidase domain protein 6.40888659583e-05 1.58584245693e-05 -19471221042.8 +UniRef50_Q1QJ95 Uroporphyrinogen decarboxylase 6.69044594053e-08 1.42202539897e-07 30398759.1059 +UniRef50_Q9HTQ9 1.76264881143e-06 7.81335519178e-06 2442744416.26 +UniRef50_B0V5K4 Copper resistance protein A 1.50805228456e-06 7.5744076626e-06 2449062108.67 +UniRef50_P45608 Phosphate regulon sensor protein PhoR 2.27528250855e-05 8.54057946967e-06 -5737657958.96 +UniRef50_UPI00046CFE04 hypothetical protein 7.60972741481e-08 1.39169582542e-06 531123279.357 +UniRef50_A6M0G0 Binding protein dependent transport systems inner membrane component 7.06389033691e-06 1.55361507679e-05 3420355502.32 +UniRef50_UPI0003B46DF8 ABC transporter permease 1.59364282712e-07 6.08051972252e-08 -39789512.267 +UniRef50_R9YPY4 Phage head morphogenesis , SPP1 gp7 family domain protein 0.000139603270343 4.71300658733e-05 -37332567418.2 +UniRef50_UPI000380AB63 hypothetical protein 5.26941983996e-07 8.09234629456e-07 113965005.093 +UniRef50_A3PNV6 0.000148451012947 4.94378795455e-05 -39972816982.0 +UniRef50_S1QWB9 1.02865257393e-07 1.71250170744e-07 27607828.6971 +UniRef50_I9JNX9 Porin thermoregulatory protein EnvY 4.09119656305e-07 8.12048913078e-07 162667485.457 +UniRef50_Q2G0P2 Transcription termination antitermination protein NusG 0.000263663657674 0.000101872215524 -65317190600.2 +UniRef50_M4U471 4.27247693051e-07 3.00532080249e-07 -51156647.8636 +UniRef50_UPI0003B52E8B IMP cyclohydrolase 3.08576334557e-08 2.38934856731e-07 84003328.4308 +UniRef50_E7BFN4 2.28169365574e-07 1.30382821062e-06 434256675.565 +UniRef50_I6SU84 Transcriptional regulator 7.34380315265e-05 8.39763142736e-06 -26257607655.5 +UniRef50_B9E705 6.48356407064e-05 3.92490771333e-05 -10329609696.9 +UniRef50_K0HLL2 Peptidase, M24 family protein 1.56025094469e-06 6.73229242752e-05 26549198222.3 +UniRef50_Q6A853 1.19080753577e-06 5.30947884678e-05 20954274035.7 +UniRef50_UPI0003D397E3 transposase and inactivated derivatives 4.08077558847e-06 9.8634351797e-08 -1607639283.61 +UniRef50_H4F795 Replication protein C 4.00228073909e-07 1.63041745115e-07 -95755031.5377 +UniRef50_A0A023V7M1 ATPase 5.44450945494e-07 1.40599553994e-06 347816125.119 +UniRef50_Q9RX33 B cell receptor associated protein related protein 3.27642012594e-06 0.000230900943312 91894813277.2 +UniRef50_UPI0003809CA6 hypothetical protein 2.3402440349e-07 5.15660562564e-07 113699973.482 +UniRef50_U2Z2K4 Transport protein 3.99948549423e-07 5.05348403557e-08 -141062602.139 +UniRef50_D3NUN2 1.6449334074e-05 2.98835689723e-06 -5434361671.04 +UniRef50_D3NUN3 1.471661312e-08 2.66865624488e-08 4832415.43183 +UniRef50_P39691 Thiol 3.65153706276e-05 1.48789561695e-05 -8734886025.4 +UniRef50_Q67NS9 GTPase Der 7.43604047995e-05 6.34249394181e-05 -4414781567.72 +UniRef50_UPI00037AD157 hypothetical protein 7.5655071882e-07 6.99221551835e-07 -23144488.2198 +UniRef50_K8DSJ2 Membrane bound lytic murein transglycosylase A 3.17277698396e-06 1.80757876328e-06 -551147274.555 +UniRef50_F0YBW7 Expressed protein 5.22108220195e-06 1.28594438527e-06 -1588663426.17 +UniRef50_J7QRA8 8.67103188316e-07 1.11803973882e-06 101306164.776 +UniRef50_D5AP78 Demethylspheroidene O methyltransferase 2.0770500424e-06 3.37667515113e-06 524674604.588 +UniRef50_UPI0001470FF7 MULTISPECIES 7.38766856209e-07 9.6134393708e-07 89857098.8755 +UniRef50_UPI0001D30F07 hypothetical protein 7.13673484763e-07 1.32864797961e-06 248272750.155 +UniRef50_M1E6A4 1 deoxy D xylulose 5 phosphate synthase 1.84139506761e-06 2.2015890492e-05 8144691371.73 +UniRef50_Q9I526 Cysteine synthase B 6.9099022376e-06 5.80029984042e-06 -447960104.094 +UniRef50_R6W8A5 5.29933773748e-06 3.347703962e-06 -787898504.401 +UniRef50_D2NRM9 Aldehyde 6.79757246772e-07 6.05690335146e-06 2170819867.47 +UniRef50_R7A897 5.58391170876e-05 2.38390863839e-05 -12918805079.6 +UniRef50_UPI00046644F9 putrescine spermidine ABC transporter substrate binding protein 8.0372269168e-07 9.01821666322e-07 39603759.8728 +UniRef50_A6TCE8 Co chaperone protein HscB 4.01154701226e-05 5.04814880674e-06 -14157107939.7 +UniRef50_R4ZXB5 Cation transporting ATPase, E1 E2 family 4.38929265414e-06 6.47151289761e-07 -1510748390.04 +UniRef50_D5AR83 L malyl CoA beta methylmalyl CoA lyase 6.4197505878e-06 1.27432953743e-06 -2077269619.45 +UniRef50_UPI0003B31758 ABC transporter 5.22741265592e-08 1.28805645933e-07 30896713.5186 +UniRef50_Q16AG3 5.37899681481e-07 4.42596271592e-07 -38475156.0765 +UniRef50_T6HYQ6 Nitrite extrusion protein 2 3.17997983496e-07 2.08185671918e-06 712091416.575 +UniRef50_A5ULE7 Molybdenum cofactor biosynthesis protein, MoaB 2.5215740989e-05 5.16588988672e-06 -8094370929.34 +UniRef50_Q0BSD5 Alanine tRNA ligase 4.65398982997e-05 6.6776266642e-06 -16092888224.3 +UniRef50_P30140 2 iminoacetate synthase 2.98106424815e-05 3.95450283353e-05 3929891023.53 +UniRef50_Q0TP59 33 kDa chaperonin 6.44755983331e-06 2.01352299003e-06 -1790075085.38 +UniRef50_A6VEM4 1.40893465845e-05 7.14475899663e-06 -2803615228.9 +UniRef50_D5ASM9 Peptide deformylase 5.39474585891e-05 3.58180394578e-05 -7319068976.3 +UniRef50_C3A4E4 1.70733353367e-07 1.36087930306e-05 5425109595.22 +UniRef50_V4R261 3.9940756406e-07 6.61083774165e-06 2507630585.51 +UniRef50_M1MAA9 4.58723791042e-06 3.21992904974e-05 11147324467.4 +UniRef50_A3LL40 8.35057454897e-06 1.53775614067e-05 2836880825.29 +UniRef50_UPI000288786A cold shock DNA binding domain containing protein 1.15488475871e-07 1.75845180787e-07 24366742.4346 +UniRef50_UPI0002E3DB0E gluconokinase 4.89956767137e-08 8.44727118948e-08 14322514.4548 +UniRef50_H0A701 2.60070996402e-07 6.73294989643e-07 166823596.9 +UniRef50_Q6F9S8 Molybdopterin biosynthesis protein OR thiamin thiazole moiety synthesis (ThiF) 1.49994432661e-06 9.37785229708e-05 37253994584.2 +UniRef50_U3T3B6 Phospholipase D protein 8.03161678458e-07 0.000104105833421 41704556249.0 +UniRef50_S5YCI7 Transcriptional regulator, AraC family 4.70200888382e-05 1.29604341177e-05 -13750300569.6 +UniRef50_Q9HXP6 9.21063138383e-06 5.71934624678e-06 -1409474652.71 +UniRef50_S1SXR1 2.12666424717e-07 2.19930995697e-07 2932796.45094 +UniRef50_F9YZQ4 Endoglycoceramidase 1.59974748255e-06 4.45180887178e-05 17326661024.0 +UniRef50_UPI0003B3872E branched chain alpha keto acid dehydrogenase subunit E2 2.95263394253e-08 4.47205310125e-07 168622125.969 +UniRef50_A0A023RTZ1 LysR family transcriptional regulator 1.45373294809e-06 7.65189714499e-05 30304757937.2 +UniRef50_A7X0P1 0.000126994949812 4.95432766069e-05 -31268190911.8 +UniRef50_Q8TSH7 Malate dehydrogenase 3.36721762892e-07 2.29198624303e-07 -43408410.5057 +UniRef50_I3USA0 MscS mechanosensitive ion channel 4.28825071817e-06 4.62884184163e-06 137500816.064 +UniRef50_P0AFL2 Putrescine transport system permease protein PotI 4.8033144817e-05 1.52779026972e-05 -13223693195.8 +UniRef50_M4RDZ6 Taurine transporting AtPase 5.18407122581e-05 7.25006767648e-06 -18001790406.3 +UniRef50_UPI0003769FA7 Fis family transcriptional regulator 3.70982215796e-06 8.40235108226e-07 -1158487505.77 +UniRef50_UPI00040692FE hypothetical protein 1.09592088202e-05 1.7407043818e-06 -3721623365.55 +UniRef50_I7GKU7 Macaca fascicularis brain cDNA clone 5.4724709113e-06 1.57610867894e-06 -1573009246.95 +UniRef50_D6CV88 5.46821913738e-07 6.46317546914e-08 -194666084.346 +UniRef50_UPI000383163D hypothetical protein 1.28656944095e-07 1.1566140492e-07 -5246458.63815 +UniRef50_K5XT53 Phenol hydroxylase 4.63705622737e-06 8.50982958896e-07 -1528484238.82 +UniRef50_UPI00041A7C16 hypothetical protein 2.08689054711e-06 2.21127656313e-07 -753231374.501 +UniRef50_UPI00047AECEE KaiC 1 6.6801917341e-07 1.57463598178e-07 -206117550.943 +UniRef50_UPI00046F4CAF hypothetical protein 1.28727988822e-06 4.73308083187e-08 -500582659.442 +UniRef50_UPI00034D1E75 membrane protein 6.0957428407e-07 6.72765568889e-07 25511097.1257 +UniRef50_D8QF05 7.5261986515e-08 3.10393741772e-07 94925574.9884 +UniRef50_Q890Q5 Adenylate kinase 3.07471464059e-07 5.01868623798e-07 78480518.908 +UniRef50_M2ATY2 ParB like partition protein 1.10746234673e-06 1.90927581379e-07 -370016331.919 +UniRef50_S1DY96 2.20752040266e-06 6.88801581344e-06 1889573433.47 +UniRef50_UPI0001D2F09B permease 1.11682245224e-06 6.73035601169e-07 -179162197.654 +UniRef50_UPI000405BEEA hypothetical protein 3.88697556286e-06 1.14475683802e-06 -1107067350.03 +UniRef50_K2M4Q0 1.6077165776e-07 3.98030026135e-07 95784114.8006 +UniRef50_Q2FYR2 Aminoacyltransferase FemA 0.00011135692331 5.1071952313e-05 -24337782571.3 +UniRef50_P77156 Inner membrane ABC transporter permease protein YdcU 3.23822838589e-05 7.65446218327e-06 -9982925054.93 +UniRef50_E6KQ43 Membrane protein 5.70223613131e-07 1.98423527639e-05 7780395033.8 +UniRef50_H8Z7W7 TPR repeat containing protein 7.24293702526e-07 1.48191079659e-06 305859317.881 +UniRef50_UPI000381814C hypothetical protein 3.39811820766e-07 1.55437356269e-06 490333479.562 +UniRef50_UPI0003805D01 hypothetical protein, partial 9.00059496839e-07 5.76874723045e-07 -130473659.104 +UniRef50_R9CBP1 Flagellar hook capping protein 7.18622264131e-08 9.80959760362e-08 10590886.6472 +UniRef50_A4XQY6 2.51190961573e-05 2.84871419803e-06 -8990826485.29 +UniRef50_UPI00037FD9F7 hypothetical protein 6.65464009971e-08 8.46252077595e-07 314776749.707 +UniRef50_UPI00036C7A2E hypothetical protein 5.04360152915e-06 3.43369018749e-06 -649940964.462 +UniRef50_Q9I5G7 Signal peptidase I 1.7974718109e-05 1.61638550281e-05 -731067647.548 +UniRef50_F8FZW4 5.5993062886e-06 1.77190023117e-05 4892870009.92 +UniRef50_Q6I286 S layer protein, putative 3.63606040056e-08 1.82294262473e-06 721265085.591 +UniRef50_A7Z463 Adenine deaminase 2.49410813405e-07 7.29058589927e-08 -71257216.0555 +UniRef50_D7C3J3 2.47199927154e-07 8.33340845804e-06 3264501612.86 +UniRef50_Q3JVB5 Integral membrane protein MviN 6.42524753402e-06 3.36923429018e-06 -1233750048.04 +UniRef50_UPI00036BA72B hypothetical protein 2.90294906379e-07 2.11551516842e-07 -31789672.6461 +UniRef50_UPI00045EA377 secondary thiamine phosphate synthase 1.40765007896e-07 2.18094184913e-07 31218737.6975 +UniRef50_Q36837 Cytochrome c oxidase subunit 3 5.3619740226e-07 9.27134647813e-08 -179039907.72 +UniRef50_UPI000470F200 ATP dependent DNA helicase RuvA 1.14379975392e-07 9.52487719255e-08 -7723501.60569 +UniRef50_P33360 Putative osmoprotectant uptake system ATP binding protein YehX 2.29441744607e-05 1.86013466824e-05 -1753252866.59 +UniRef50_N6UWC7 1.12037220334e-06 1.11200440193e-06 -3378184.11369 +UniRef50_I0LGS3 1.19366816673e-07 1.7233769223e-07 21384992.4881 +UniRef50_U5MX92 Sensory transduction protein LytT 1.60177930206e-06 1.51373553468e-05 5464478149.44 +UniRef50_L1K958 0.000116649515268 1.96877803463e-05 -39144642242.2 +UniRef50_UPI00047330EC hypothetical protein 7.84308987749e-07 2.60188507818e-07 -211593869.43 +UniRef50_D3E3Z6 Energy converting hydrogenase A subunit F EhaF 2.45728272015e-05 1.21739049281e-05 -5005597073.66 +UniRef50_UPI0004658BC5 hypothetical protein 8.20177982917e-07 2.15381476889e-07 -244163771.171 +UniRef50_B6ZYE2 Galactosamine 6 phosphate isomerase 2.83557550311e-05 5.3693946399e-05 10229338789.8 +UniRef50_UPI00036A070A hypothetical protein 6.30303883095e-08 2.25926211624e-07 65763042.8288 +UniRef50_UPI00046F612F hypothetical protein 2.70783179717e-07 8.58364276205e-08 -74665273.3734 +UniRef50_R9XSB4 UvrABC system protein A 0.000103670523245 0.000106993021497 1341333315.97 +UniRef50_D5UV60 Acyl CoA dehydrogenase domain protein 2.48690634903e-06 1.47904860699e-06 -406884538.267 +UniRef50_B8ZJM7 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.000154259178572 0.000116201430628 -15364379866.1 +UniRef50_R5W2L7 4.91558913517e-07 1.06037211725e-05 4082403994.14 +UniRef50_A5UP24 Predicted type II restriction enzyme, methylase subunit 5.71239918668e-05 6.22645576659e-06 -20547959906.7 +UniRef50_A6LY51 Type IV pilus assembly PilZ 1.78621130367e-06 5.81777986442e-06 1627593700.88 +UniRef50_B5ZUG3 NAD NADP dependent betaine aldehyde dehydrogenase 4.01633545861e-07 5.40940287083e-08 -140305967.864 +UniRef50_Q7NYS3 8.00239257418e-06 8.77596660985e-07 -2876367541.24 +UniRef50_P18777 Anaerobic dimethyl sulfoxide reductase chain C 1.69577682731e-05 1.27704546544e-05 -1690469891.99 +UniRef50_A0Q197 DNA topoisomerase IV subunit B 4.47719235006e-06 1.44705415837e-05 4034437717.81 +UniRef50_UPI00036632E6 hypothetical protein 5.6804085272e-07 2.70436554763e-06 862460494.987 +UniRef50_P30335 Nitrogen regulatory protein 2.02137028157e-07 3.01835435662e-07 40249470.5468 +UniRef50_Q1KVX6 Light independent protochlorophyllide reductase subunit N 6.39004752321e-07 2.2064792602e-07 -168895784.593 +UniRef50_UPI00046F1C42 nitrogen regulatory protein P II 1 7.94134092391e-07 2.7066201996e-07 -211332099.365 +UniRef50_D9WR73 Anti sigma B factor RsbT 1.91413551744e-07 2.289249135e-05 9164703680.72 +UniRef50_E6PC05 6.80027503223e-08 6.67503231275e-08 -505620.227551 +UniRef50_UPI0003FFD344 membrane protein 7.98681944041e-08 1.16533113742e-07 14802077.8659 +UniRef50_UPI00047C9EAC ABC transporter 3.72548403793e-08 2.62710856702e-07 91019360.446 +UniRef50_Q9RW70 Glucose fructose oxidoreductase 2.10678124336e-06 0.000446305814316 1.79328600587e+11 +UniRef50_O27472 3.59294404307e-05 8.34580791197e-06 -11135850937.0 +UniRef50_R5YRU3 dTDP 4 dehydrorhamnose reductase 1.30684485638e-05 4.59020769276e-06 -3422769879.35 +UniRef50_A6LVM3 Drug resistance transporter, EmrB QacA subfamily 5.01527410384e-06 8.60646422696e-06 1449807521.56 +UniRef50_UPI00020D92F9 hypothetical protein 1.927664463e-06 2.75203086573e-06 332806832.895 +UniRef50_K4NLN5 9.29005714967e-07 5.07050331034e-05 20095193077.2 +UniRef50_H3YKG2 1.82932151423e-06 2.5992651504e-06 310835694.193 +UniRef50_O27911 2 phosphoglycerate kinase 3.19545789272e-05 1.93555370491e-05 -5086387813.82 +UniRef50_H8E733 NAD synthase 6.81028030856e-07 3.22644548697e-06 1027616262.82 +UniRef50_Q04FF6 Arginine tRNA ligase 6.66142559359e-05 3.69513435055e-05 -11975281753.0 +UniRef50_UPI000374A709 hypothetical protein 4.56451660763e-08 1.01217520766e-06 390200038.445 +UniRef50_UPI000163236E hypothetical protein 7.18027228022e-07 9.5999092877e-07 97683715.2205 +UniRef50_Q5HLR8 0.000190217967023 4.60042344378e-05 -58220853546.1 +UniRef50_UPI0003B7A728 sulfate ABC transporter permease, partial 4.14091149609e-07 1.88569275728e-07 -91045947.9504 +UniRef50_Q9JY28 8.61184765483e-07 3.36588824012e-05 13240833008.5 +UniRef50_I6L8N6 Capsular polysaccharide biosynthesis protein Cps4E 9.63001478345e-08 8.56549777224e-06 3419119009.72 +UniRef50_Q5E480 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.55419664366e-07 6.38432321557e-08 -77341756.5904 +UniRef50_U5PDI4 Glycosyltransferase 1.12661195705e-05 3.86191837597e-06 -2989166882.0 +UniRef50_UPI00035ED085 hypothetical protein 2.33533006989e-07 9.63858034933e-08 -55368009.0368 +UniRef50_R7E7K8 2.75054464409e-07 1.620848086e-07 -45607236.3437 +UniRef50_E8SGJ9 Substrate specific component ThiW of predicted thiazole ECF transporter 0.00019026468509 7.55329890095e-05 -46318593623.7 +UniRef50_B2I1P2 Ankyrin repeat protein 6.84749714784e-08 6.04147151498e-05 24362517691.6 +UniRef50_Q3IW29 0.000174840726416 3.9551344445e-06 -68988610480.7 +UniRef50_Q3IW25 3.69401701208e-05 5.6755629592e-06 -12621905571.0 +UniRef50_A7MPG3 2.73119930883e-05 2.5353570905e-05 -790639067.941 +UniRef50_Q3IW20 5.35649612679e-05 2.27351283164e-05 -12446381887.1 +UniRef50_P57162 Serine acetyltransferase 3.08328241511e-05 9.99697682294e-06 -8411687250.99 +UniRef50_UPI00016A72E3 oxidoreductase, 2 nitropropane dioxygenase family protein 8.97127414246e-09 1.72373567894e-07 65967511.1593 +UniRef50_UPI0004726F0A hypothetical protein 1.33510692687e-07 1.20225056935e-07 -5363574.18617 +UniRef50_Q8XWD0 Tyrosine recombinase XerD 1.26815001857e-06 4.565620435e-06 1331229271.63 +UniRef50_D6M3V3 Peptidase C14, caspase catalytic subunit p20 1.26868311671e-07 1.05534669122e-06 374838115.535 +UniRef50_Q9HU63 2.40670000018e-06 1.84709877544e-06 -225917881.507 +UniRef50_A8YWB0 50S ribosomal protein L33 1 1.56743463762e-05 1.40627002474e-05 -650641319.319 +UniRef50_Q5HS39 Replication associated protein RepA 0.00025417336461 8.18699879198e-05 -69560987570.0 +UniRef50_UPI0001C2FA1D 4E10_S0_1TJLC_004_N 1.33266175114e-06 1.66550217731e-06 134371764.456 +UniRef50_P76573 7.69096647034e-05 9.16440040902e-06 -27349594523.5 +UniRef50_UPI00037E947E hypothetical protein 5.77321491391e-07 2.00040319149e-07 -152313038.995 +UniRef50_UPI00035F6D48 hypothetical protein 8.20284232333e-06 2.09359529456e-06 -2466377994.41 +UniRef50_S3X0W6 6.51088027977e-08 3.04763390403e-07 96751497.9086 +UniRef50_Q4KG00 9.23329572432e-06 3.39772494473e-06 -2355891534.23 +UniRef50_B5GRY7 4.25500514704e-07 2.88811285539e-07 -55183119.1794 +UniRef50_R4GKT3 3.52494659532e-07 1.8059539033e-07 -69397844.4181 +UniRef50_A8TTI0 1.46332217464e-08 3.36890958609e-08 7693090.2219 +UniRef50_F7X525 ABC transporter, periplasmic solute binding protein 6.38843415655e-06 3.49487225087e-06 -1168166449.32 +UniRef50_I3TJX2 1.60309072009e-07 3.78424117522e-07 88055720.4462 +UniRef50_P75748 2.08196697646e-05 7.73199169791e-06 -5283656239.4 +UniRef50_A5UKK3 2.15978115111e-05 4.02295603158e-06 -7095184824.8 +UniRef50_Q5HFR9 Pyrroline 5 carboxylate reductase 0.00015465942895 7.85982338574e-05 -30706837834.7 +UniRef50_UPI0002880C2A histidine kinase 7.46191608947e-07 9.99737242183e-07 102359483.492 +UniRef50_UPI0003822CF6 hypothetical protein 9.38840241999e-06 2.12984067508e-06 -2930370448.99 +UniRef50_A5UKK6 1.98986127852e-05 8.91139026363e-06 -4435676560.35 +UniRef50_U3T1P2 Sulfate permease 2.24843203383e-06 8.27015472162e-05 32479909869.9 +UniRef50_UPI00005C81F5 hypothetical protein RSP_4057 3.57165250681e-05 1.88687714513e-05 -6801644880.29 +UniRef50_A9M1Y8 UPF0761 membrane protein NMCC_0461 3.35172110003e-06 2.66714919876e-05 9414477673.09 +UniRef50_Q5HRH1 2.67921557103e-05 6.84131363387e-06 -8054399770.61 +UniRef50_Q1JQN1 Cell division inhibitor SulA 4.05955035841e-05 3.60875810829e-06 -14932003027.0 +UniRef50_D7CUB2 RNA binding S1 domain protein 2.83797246844e-06 0.000428681815905 1.71918385287e+11 +UniRef50_I2F4T7 2.3913519524e-07 4.06600351579e-07 67607738.6426 +UniRef50_UPI0003806E6C hypothetical protein 1.94286607366e-05 1.5121642335e-05 -1738796181.79 +UniRef50_I0ZAW9 2.19256141454e-07 3.43059097292e-07 49980772.5049 +UniRef50_T1Y9B2 Phosphotransferase enzyme family protein 0.000198823509712 3.39603757511e-05 -66557270278.2 +UniRef50_T2HS98 9.32595855861e-07 5.81690109812e-07 -141664955.778 +UniRef50_E1I6F8 2.43016731023e-06 3.79421891038e-06 550684369.776 +UniRef50_UPI00031BE1DB hypothetical protein 5.36152916367e-07 4.79238412482e-07 -22977083.6379 +UniRef50_Q1QAV9 1.84740288181e-06 4.09903442619e-05 15802485773.1 +UniRef50_A3CLN3 GTP binding protein TypA BipA, putative 6.18062368975e-05 5.93646694468e-05 -985690741.249 +UniRef50_Q92GC1 3 oxoacyl [acyl carrier protein] synthase 3 7.80367086837e-07 9.80186907094e-08 -275472420.873 +UniRef50_O27543 3,4 dihydroxy 2 butanone 4 phosphate synthase 4.51635338729e-05 5.38634897921e-06 -16058537662.5 +UniRef50_UPI000428CAD9 hypothetical protein 2.66067466551e-06 1.08825318996e-06 -634805845.461 +UniRef50_P06709 Bifunctional ligase repressor BirA 3.19018773032e-05 9.64974485437e-06 -8983458933.95 +UniRef50_Q1R618 3.40947933089e-05 3.51018360083e-07 -13622776029.5 +UniRef50_UPI000373C739 hypothetical protein 1.15681812832e-07 2.26238386779e-07 44633045.5841 +UniRef50_Q8X534 Enterobactin exporter EntS 2.82061523415e-05 1.43823070714e-06 -10806538443.1 +UniRef50_C2XMN3 1.38681549327e-07 9.29709101565e-06 3697362287.88 +UniRef50_B1LTL1 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.56505691476e-07 2.30578093285e-07 -131580970.971 +UniRef50_A0A021WYQ6 Plasmid partitioning protein RepA 2.64076099192e-06 1.03697631606e-06 -647467554.296 +UniRef50_Q1R614 1.34827948699e-05 2.95479459378e-05 6485698627.68 +UniRef50_A5UEK8 Chromosome partition protein MukB 4.00246125301e-06 7.95204385348e-07 -1294808954.94 +UniRef50_UPI0002375359 EmrB QacA family drug resistance transporter 9.80511757459e-08 1.42533922805e-07 17958230.8524 +UniRef50_UPI000472C1EF amino acid ABC transporter ATPase 9.11357425806e-08 2.66958198497e-06 1040950389.15 +UniRef50_A3PMP8 UPF0178 protein Rsph17029_2512 5.80864190109e-05 3.98896083535e-06 -21839807715.9 +UniRef50_Q2W200 Hypothetical 217 kDa protein Y4HQ 1.33778463822e-06 1.26082917637e-07 -489178853.85 +UniRef50_UPI00006CFE7F glutaredoxin related protein 1.13776612886e-07 5.91477225901e-08 -22054353.3843 +UniRef50_UPI0002ED7898 hypothetical protein 9.36504408604e-07 3.66239648949e-07 -230222881.408 +UniRef50_E1Z4K9 1.13565887032e-08 2.58451531208e-08 5849211.25006 +UniRef50_R4RE02 Amino acid permease YtnA 1.07443829842e-06 7.24343145687e-05 28808857734.5 +UniRef50_A5FSB7 Ribosomal RNA small subunit methyltransferase H 5.65049875971e-08 9.59984942759e-08 15944013.2861 +UniRef50_P44726 UPF0701 protein HI_0467 1.38742685556e-05 1.05412928032e-05 -1345563211.46 +UniRef50_B0V531 Bifunctional protein 3.61058951565e-06 7.47390057552e-05 28715414479.7 +UniRef50_Q9DC70 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 4.06128049003e-07 8.50999937422e-07 179600240.547 +UniRef50_T3GII0 Zinc binding dehydrogenase family protein 7.25208802479e-06 6.87511771931e-06 -152187538.268 +UniRef50_B2JHN6 Integral membrane sensor signal transduction histidine kinase 2.41919844332e-06 1.58346758826e-06 -337394801.759 +UniRef50_UPI00037A6516 hypothetical protein 5.78326045817e-07 1.73754954781e-07 -163330314.097 +UniRef50_B9KX95 1.45761087894e-05 1.1034274802e-05 -1429881843.9 +UniRef50_B2TIX9 FliB domain protein 4.07711998086e-06 4.82394886397e-06 301503984.732 +UniRef50_I0C729 0.000189407042374 6.08159226964e-05 -51913813004.5 +UniRef50_K1ZPS1 2.30547562139e-06 8.7147259575e-06 2587493011.03 +UniRef50_UPI0004792537 hypothetical protein 1.83307769362e-07 1.21189243179e-07 -25078011.3001 +UniRef50_UPI00047030B9 hypothetical protein 5.60381874278e-06 7.08899220657e-07 -1976139078.5 +UniRef50_Q2FG85 Holliday junction ATP dependent DNA helicase RuvA 0.000236249924709 3.23044432134e-05 -82335293572.4 +UniRef50_Q5M0X3 Bifunctional protein PyrR 6.50069945208e-07 0.000103211051259 41405126721.2 +UniRef50_UPI000409D13D alpha beta hydrolase 6.41361882608e-07 1.20837045582e-07 -210142264.265 +UniRef50_A1YZ52 PdmP3 1.51878650913e-06 1.69199709511e-06 69927239.093 +UniRef50_A5V451 7.80952571682e-08 4.9162649454e-08 -11680448.7772 +UniRef50_UPI00037F3B9E transcriptional regulator 1.17585692332e-07 1.43405700731e-07 10423854.2378 +UniRef50_UPI00028A17CA serine threonine protein kinase like protein 6.89009589622e-07 1.92807193654e-07 -200322996.34 +UniRef50_UPI000360B53A hypothetical protein, partial 2.58916829103e-07 9.18807787131e-07 266406077.529 +UniRef50_C5N461 MAP domain protein 8.69550707414e-05 9.99848244378e-06 -31068319059.3 +UniRef50_R9T5B9 2.52936081332e-08 4.63955663484e-07 177093254.734 +UniRef50_UPI0004765C33 translation initiation factor IF 3 2.64398967397e-06 3.63345303131e-06 399458499.439 +UniRef50_C1DAI5 Glucose 6 phosphate isomerase 3.10064867964e-06 3.30607927114e-05 12095277797.9 +UniRef50_E3F1U6 Integrase 3.73196662839e-05 9.01286543999e-06 -11427802864.2 +UniRef50_UPI00036EA793 hypothetical protein 6.47128617963e-06 3.52958287488e-06 -1187601722.89 +UniRef50_UPI0004749630 phosphate starvation inducible protein PhoH, partial 9.40954921415e-07 6.43000888292e-07 -120287699.479 +UniRef50_A6M2K0 Cell wall surface repeat protein 4.21184097339e-06 1.86046617006e-05 5810558347.34 +UniRef50_Q6FFQ0 Alpha ketoglutaric semialdehyde dehydrogenase 9.48194373057e-06 0.000288863009899 1.12789564803e+11 +UniRef50_I1AWS6 Replication initiation protein RepC 6.98886232709e-06 1.39103140501e-06 -2259913036.35 +UniRef50_P46384 Protein PilG 5.63938135712e-05 5.19618836113e-06 -20669109562.8 +UniRef50_Q9I6C8 Probable coniferyl aldehyde dehydrogenase 6.12537579742e-06 1.24781706418e-06 -1969130314.99 +UniRef50_A7BCW8 Cell wall binding repeat protein 1.4038904646e-07 1.15034896945e-05 4587423172.52 +UniRef50_P09996 3.99855746522e-05 7.71860473809e-06 -13026571714.6 +UniRef50_A6UCT4 Glycosyl transferase family 8 5.25517494143e-05 6.53405823801e-06 -18577906628.4 +UniRef50_P0ADI5 Isochorismatase 2.43856681338e-05 4.45811552881e-05 8153165990.69 +UniRef50_A3PIG7 9.35150784869e-06 1.48761318134e-05 2230358489.31 +UniRef50_S5VV73 5.12668948094e-07 1.12647892034e-05 4340762890.42 +UniRef50_B5ZE82 Two component transcriptional regulator, winged helix family 2.57188327451e-05 1.08089486213e-05 -6019303185.63 +UniRef50_S9TC28 8.67225771908e-07 5.0204108267e-08 -329841671.595 +UniRef50_E3EDG6 Ser Thr phosphatase family protein 1.90295918558e-08 1.1626455905e-07 39254949.4635 +UniRef50_UPI0003AE0E04 2.9608183363e-07 7.63859535642e-07 188847598.58 +UniRef50_F0RM84 Long chain fatty acid CoA ligase 1.54071465819e-06 0.000332449894845 1.33592096754e+11 +UniRef50_Q8X8F2 Porin OmpL 1.44171989344e-05 8.72857256737e-06 -2296568271.67 +UniRef50_UPI0003A831EB hypothetical protein 3.49724034642e-07 8.79131000071e-08 -105696287.094 +UniRef50_Q9HJ59 Nucleoside diphosphate kinase 7.36954840226e-08 5.90102437569e-07 208479824.172 +UniRef50_I0C0Q8 5 nucleotidase 0.000151697109078 4.65806006527e-05 -42436824375.8 +UniRef50_A6M0I0 Ferredoxin hydrogenase 7.78025972439e-06 9.3722331786e-06 642699219.176 +UniRef50_Q9RTC8 7.25378449133e-07 0.000839262786282 3.38527841553e+11 +UniRef50_P77265 Multidrug resistance like ATP binding protein MdlA 3.85648946198e-05 1.64049592669e-05 -8946237834.95 +UniRef50_A6M2M2 NLP P60 protein 1.14970351935e-06 7.61169794935e-06 2608786448.98 +UniRef50_H6NSQ0 2 deoxy D gluconate 3 dehydrogenase 9.75362759137e-06 7.2609895258e-06 -1006308575.18 +UniRef50_F9PRQ2 6.09555212911e-07 1.36603736556e-06 305401128.104 +UniRef50_Q9RTC4 1.98676836238e-05 0.000564260709447 2.19778144978e+11 +UniRef50_A5D144 UDP N acetylmuramate L alanine ligase 8.18801145845e-08 1.29532227798e-07 19237742.8615 +UniRef50_A0A035VZJ1 2.87400821238e-06 8.2028703044e-07 -829112443.142 +UniRef50_Q9I2J9 Phenazine biosynthesis protein PhzA 2 4.51178472729e-06 0.000200923237782 79293713837.9 +UniRef50_A0A010YSV0 Bifunctional uridylyltransferase uridylyl removing enzyme 2.40474674121e-06 3.68797344723e-05 13917975602.7 +UniRef50_O31727 UPF0001 protein YlmE 0.000120364583646 9.63136180418e-05 -9709669952.95 +UniRef50_A6M141 2.16297815573e-06 1.40173417325e-05 4785752045.35 +UniRef50_A6M140 5.12424419253e-06 1.84295217498e-05 5371503824.0 +UniRef50_A0A031SXK0 Ferrienterobactin receptor 3.39026891811e-05 6.9013376552e-06 -10900776954.8 +UniRef50_A6M142 2.79566792415e-06 1.33094626545e-05 4244547951.39 +UniRef50_H4TYE9 Citrate synthase 9.0537615536e-06 4.68595360248e-06 -1763337668.9 +UniRef50_R1BPA7 1.05518659521e-07 2.31742579915e-07 50958145.6047 +UniRef50_UPI000478D81C hypothetical protein 3.58717549693e-08 1.19427292699e-07 33732395.9232 +UniRef50_Q9AS52 3.84512543987e-06 9.0629029659e-06 2106480816.59 +UniRef50_UPI00046DCEE5 4.07230498645e-08 1.11445442256e-07 28551497.6698 +UniRef50_UPI0003B553F2 hypothetical protein, partial 1.70861488608e-07 1.75888915271e-06 641106255.288 +UniRef50_UPI0003484775 hypothetical protein 4.79181047947e-07 2.47040483974e-07 -93717994.361 +UniRef50_K7U8Q8 1.6559285985e-07 1.99403205312e-07 13649651.3626 +UniRef50_Q4FU55 NADH quinone oxidoreductase subunit K 1.71764143561e-07 7.86213304476e-07 248060666.4 +UniRef50_D4GU70 Low salt glycan biosynthesis nucleotidyltransferase Agl11 6.85587217958e-07 1.62490157888e-07 -211180702.273 +UniRef50_H3UC52 Nitrate reductase delta subunit 2.23708306862e-07 1.19447905534e-06 391912063.857 +UniRef50_Y1QWF2 9.62969332507e-07 7.68054972259e-07 -78689319.1003 +UniRef50_UPI00042B2256 ATP dependent clp protease ATP binding subunit clpx isoform 1 1.06998716627e-07 2.2305241448e-07 46852301.9623 +UniRef50_W1MRY7 Type VI secretion protein ImpA 4.8634807273e-06 4.29932305819e-06 -227757374.013 +UniRef50_UPI000255EFAA hypothetical protein 8.53179218313e-07 4.81681159278e-07 -149978325.226 +UniRef50_M2K3R6 1.38104630068e-05 2.30116913138e-05 3714648779.3 +UniRef50_D1DKC6 1.70689752864e-06 4.3756635958e-05 16975995412.3 +UniRef50_Q27331 V type proton ATPase catalytic subunit A isoform 2 3.97891523898e-05 1.1900794122e-05 -11258872461.4 +UniRef50_N0CAR1 Integrase core subunit 1.95802779351e-06 3.49293255914e-07 -649465874.222 +UniRef50_A6LWI8 Aluminium resistance family protein 9.01638508349e-07 1.23844741915e-05 4635761675.55 +UniRef50_A4TTX4 1.71214161499e-08 4.73580713071e-08 12206908.7324 +UniRef50_Q2SGE5 Predicted Zn dependent Hydrolase of the beta lactamase fold 1.2986903286e-06 7.95272053143e-05 31581811471.6 +UniRef50_Q32IF4 IS911 ORF2 3.73531537098e-07 6.44599225047e-07 109433352.0 +UniRef50_A6L5D3 9.40310433924e-08 5.87141578068e-05 23665664524.2 +UniRef50_Q8CS32 5.07059330353e-05 2.15877801089e-05 -11755355656.3 +UniRef50_A8LE49 2.73543194722e-07 2.23738428689e-07 -20106795.2207 +UniRef50_Q8CS31 2.61137035218e-05 1.6970716737e-05 -3691135962.09 +UniRef50_A5WG67 1.43138173142e-06 5.87637987598e-05 23145800302.2 +UniRef50_S4MJP1 Putative Bifunctional P 450 NADPH P450 reductase 1.17277293112e-07 3.08073085034e-06 1196382566.72 +UniRef50_UPI0001D2F0E2 putrescine spermidine ABC transporter permease 1.02351966369e-06 3.68811149972e-06 1075728422.42 +UniRef50_UPI00037EBD36 hypothetical protein 1.14697349568e-08 7.10922271444e-09 -1760392.30174 +UniRef50_UPI000379E27A hypothetical protein 1.67024448298e-06 2.97192656605e-07 -554317871.55 +UniRef50_F3QCE5 7.10073205765e-07 5.590441502e-07 -60972283.0665 +UniRef50_A4WXK9 5.05301835925e-06 9.53146977416e-07 -1655168387.92 +UniRef50_Q53229 UPF0093 membrane protein RHOS4_28450 0.000186366404271 4.78458192289e-05 -55922460020.2 +UniRef50_UPI0004799C0B hemolysin type calcium binding protein 2.78164163521e-07 1.05819652643e-07 -69577593.9464 +UniRef50_K0KQ95 Transfer complex protein TraG 7.79954557169e-05 5.49313771403e-06 -29270075481.3 +UniRef50_UPI0001850DBE tRNA delta isopentenylpyrophosphate transferase 8.20218257539e-07 3.27036607943e-07 -199103483.961 +UniRef50_UPI0003B64D78 oxidoreductase 5.58982324617e-07 4.51071162312e-07 -43565060.4414 +UniRef50_K7S8U6 CvpA family protein 2.31603217983e-06 4.51711980247e-05 17301156343.6 +UniRef50_UPI000288B21D MarR family transcriptional regulator 5.99630715491e-08 4.97804406137e-07 176761919.691 +UniRef50_W5X7H9 Xylose isomerase domain containing protein 3.50137500119e-06 7.17416091415e-07 -1123918374.9 +UniRef50_P32125 Molybdopterin guanine dinucleotide biosynthesis adapter protein 4.19774307651e-05 3.37504805945e-06 -15584255602.8 +UniRef50_E2ZPK4 6.83345546031e-06 3.12502803434e-06 -1497137659.39 +UniRef50_U3T6E5 Penicillin acylase 2.1239765088e-06 0.00010276487344 40629965093.7 +UniRef50_E9BW21 2.06676953281e-07 4.87490227695e-07 113367764.847 +UniRef50_W1F8X3 Predicted chaperone lipoprotein YacC, potentially involved in protein secretion 4.43389776651e-07 1.70138653494e-06 507868728.678 +UniRef50_Q9RZB9 O antigen transporter RfbX, putative 2.35630189093e-06 0.000670898059928 2.69898511649e+11 +UniRef50_I8QM64 4.03374544498e-07 4.57022685378e-06 1682209410.28 +UniRef50_P58965 DNA polymerase IV 1.35949335724e-06 8.94437178693e-06 3062108498.99 +UniRef50_Q1QE36 Pseudouridine synthase 3.69058012367e-06 5.69937233198e-05 21519133011.4 +UniRef50_UPI0003B59F61 malonyl CoA ACP transacylase 9.20650070116e-08 1.11156775256e-07 7707581.12261 +UniRef50_Q6A917 Aspartate carbamoyltransferase 1.9226790604e-06 6.13076482023e-05 23974440778.1 +UniRef50_Q4L6U5 Probable nicotinate nucleotide adenylyltransferase 0.000241363756856 2.19308994628e-05 -88587737273.5 +UniRef50_P27745 Acetoin 9.42412138883e-08 3.17621801477e-05 12784735556.9 +UniRef50_UPI000470A616 diaminopimelate epimerase 5.11128083543e-08 1.11699317286e-07 24459517.1358 +UniRef50_UPI00046FCCA9 exodeoxyribonuclease III, partial 6.54042001776e-07 6.65926608979e-07 4797961.76838 +UniRef50_A0A014CIJ3 CDP alcohol phosphatidyltransferase family protein 6.15138654713e-06 3.12333695628e-05 10125904334.0 +UniRef50_Q3J0W1 9.57202734504e-05 6.57860518606e-06 -35987585369.6 +UniRef50_UPI00035D50AD hypothetical protein 1.00264388925e-06 6.4657198027e-07 -143750599.149 +UniRef50_A6LU07 Ig domain protein, group 2 domain protein 2.90474798357e-06 9.2785968256e-06 2573200993.45 +UniRef50_Q1QKV0 30S ribosomal protein S6 1.78487366724e-05 0.000164761114242 59310329642.6 +UniRef50_UPI00037AC352 hypothetical protein 4.07117419931e-06 2.75586272809e-07 -1532325423.03 +UniRef50_UPI000023D2B8 hypothetical protein FG07361.1 1.27453716225e-08 5.89122164952e-08 18638121.806 +UniRef50_Q9I1M1 2 oxoisovalerate dehydrogenase subunit beta 5.66624753669e-06 9.4680247688e-06 1534824121.66 +UniRef50_A3M3E9 Urease accessory protein UreD 2.00790419604e-06 7.48360181685e-05 29401603312.2 +UniRef50_E6W7Q1 Spore coat U domain protein 1.03528740712e-05 3.93755606923e-06 -2589942602.2 +UniRef50_UPI0003004A80 hypothetical protein 9.22588801802e-07 1.24662568542e-06 130817666.296 +UniRef50_Q57843 2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase 2.15657122054e-05 2.44737600989e-06 -7718306930.49 +UniRef50_F6T9R8 3.45352564678e-07 1.57083353828e-06 494741707.385 +UniRef50_A1B620 2.74361413156e-07 4.95133741054e-07 89128497.9535 +UniRef50_UPI0003B333E4 hypothetical protein 1.25370823432e-07 2.00856217367e-07 30474379.8415 +UniRef50_UPI000262ABB1 hypothetical protein 2.44067715683e-07 1.11352251342e-06 351009571.257 +UniRef50_B1XSD3 ATP synthase gamma chain 4.15671670561e-06 6.97590221049e-05 26484455720.5 +UniRef50_UPI00030C054C hypothetical protein 4.51990743494e-08 4.55800135455e-08 153789.828115 +UniRef50_Q89M20 Blr4373 protein 2.67107240035e-06 1.19159396853e-06 -597283598.168 +UniRef50_UPI0003A26AF5 TetR family transcriptional regulator 8.69457795147e-07 1.46755927472e-07 -291763612.53 +UniRef50_Q16B12 2.3679412853e-06 3.15506652737e-07 -828593047.37 +UniRef50_A5GFZ6 Adenylyltransferase and sulfurtransferase MOCS3 3.71578805739e-08 7.0054469831e-08 13280756.7696 +UniRef50_Q2NQZ7 Glutamate racemase 2.32051230025e-05 1.65808516631e-05 -2674299628.67 +UniRef50_D5HEW0 Carbohydrate ABC transporter membrane protein 1, CUT1 family 2.31586496233e-06 7.57339894904e-06 2122530987.63 +UniRef50_Q8CPV5 NADH dehydrogenase like protein SE_0635 9.543192535e-05 3.78481599275e-05 -23247272733.3 +UniRef50_UPI0004214BAF phospho 2 dehydro 3 deoxyheptonate aldolase 1.34096920764e-07 5.47277991479e-08 -32042288.3651 +UniRef50_P56190 Carbon starvation protein A homolog 6.87588322145e-07 2.50647568551e-05 9841362078.27 +UniRef50_Q8G564 Cystathionine beta synthase 1.62652633298e-07 7.40565733512e-08 -35767316.5964 +UniRef50_F9JRR2 Cupin domain protein 1.6141884725e-06 1.32747334655e-06 -115750414.736 +UniRef50_V5VHC2 3.51170859825e-06 6.83394620625e-05 26171759599.5 +UniRef50_K5X3B2 5.96013846323e-08 1.02732519243e-07 17412568.3209 +UniRef50_P09323 PTS system N acetylglucosamine specific EIICBA component 2.17963361092e-05 2.06924071316e-06 -7964070490.05 +UniRef50_Q3IYY7 Diguanylate cyclase phosphodiesterase 1.80369563764e-05 7.50125073367e-06 -4253393655.6 +UniRef50_J7LDC8 1.11320365348e-07 1.87883491866e-07 30909473.7105 +UniRef50_UPI00037F6FB0 hypothetical protein 3.4182197352e-07 2.47281398794e-07 -38167190.1602 +UniRef50_A3PG69 BLUF domain protein 2.92281593319e-05 4.02397633834e-06 -10175237964.6 +UniRef50_Q3ST27 1.14233427619e-06 3.8692361338e-07 -304968554.508 +UniRef50_UPI00036B67AF hypothetical protein 6.01340204957e-08 3.6811562422e-07 124335952.783 +UniRef50_UPI0003C19F7E PREDICTED 8.31785524532e-07 1.03988898391e-07 -293820429.042 +UniRef50_P94428 Succinate semialdehyde dehydrogenase [NADP] 2.01603608067e-07 1.80714660656e-07 -8433124.40603 +UniRef50_M3YVF8 1.04937647918e-06 6.45995111217e-07 -162850008.293 +UniRef50_F5M325 FkbH like protein 3.1036684353e-05 6.44358554147e-06 -9928535781.46 +UniRef50_R7PQ72 GMP synthase [glutamine hydrolyzing] 1.25932708907e-06 1.51245658361e-06 102191483.194 +UniRef50_A3M428 7.97906460359e-06 6.80691250646e-05 24259094796.1 +UniRef50_X6MXZ9 2.08751446181e-07 2.91195210387e-07 33283559.3087 +UniRef50_D6SIU1 Primosomal protein DnaI 0.000128068421652 2.17052159296e-05 -42940131373.3 +UniRef50_M7D0G7 Type II restriction endonuclease 4.87205552345e-05 7.41991069584e-06 -16673577016.2 +UniRef50_A6M2D9 Helix turn helix domain containing protein, AraC type 3.47872127907e-06 2.05556871361e-06 -574544154.722 +UniRef50_D4HBM5 Glycerate kinase 4.05539303652e-06 5.91814088249e-05 22255049046.1 +UniRef50_F3U2F5 Acetamidase Formamidase 5.48242008848e-06 5.20667526457e-06 -111321569.182 +UniRef50_A3DL27 Ornithine carbamoyltransferase 4.09662916435e-08 5.22971725381e-07 194591508.471 +UniRef50_Q895G1 Cytidylate kinase 5.15295005982e-06 2.21094521757e-05 6845547983.87 +UniRef50_Q9ZLT4 CAG pathogenicity island protein 23 3.36897781558e-06 2.71601145037e-05 9604773831.06 +UniRef50_H6RWI5 Metalloendopeptidase like membrane protein 4.15591239195e-06 1.233713089e-07 -1627986320.07 +UniRef50_D3I9D0 Pyruvate formate lyase 1 activating enzyme 3.89921967949e-06 1.10622807017e-05 2891815635.31 +UniRef50_L8BL77 CFA I fimbrial subunit C usher protein 2.47581118278e-05 6.47217936617e-06 -7382255328.37 +UniRef50_O22567-2 Isoform 2 of 1 deoxy D xylulose 5 phosphate synthase 1, chloroplastic 8.73996318175e-08 1.48822179419e-06 565529096.97 +UniRef50_UPI00036BEC99 phosphoheptose isomerase 1.058613088e-07 1.92055511936e-07 34797657.5278 +UniRef50_K2K0X8 Putative phenol degradation enzyme 1.09997988054e-06 2.48280451251e-07 -343841511.131 +UniRef50_W7WR24 2.21306104746e-05 2.03688670267e-06 -8112082864.43 +UniRef50_P37767 1.9678653801e-05 2.56425503788e-06 -6909292797.95 +UniRef50_F2AAA0 2.16329207388e-06 1.53944416267e-06 -251855057.23 +UniRef50_Q3J0V4 Periplasmic sensor diguanylate cyclase 1.29608834843e-05 4.0385203566e-06 -3602067484.36 +UniRef50_I7A0G4 Two component transcriptional regulator 4.04449273767e-06 2.6725493682e-06 -553870373.893 +UniRef50_Q88RC0 Glutarate semialdehyde dehydrogenase DavD 6.49809056459e-05 7.84787218906e-06 -23065306707.7 +UniRef50_Q47HI2 Ribosomal RNA large subunit methyltransferase E 8.0612304902e-08 4.90648773812e-07 165536754.212 +UniRef50_E8PGL4 Endonuclease III 1.84439408233e-06 1.19026819571e-05 4060654244.13 +UniRef50_B7V5R0 Phosphate ABC transporter, periplasmic phosphate binding protein, PstS 2.93217609458e-06 1.85345212465e-06 -435494104.092 +UniRef50_UPI0003B56757 GTPase Der 7.5643144008e-08 1.35288343331e-07 24079498.8956 +UniRef50_UPI0003720F40 hypothetical protein, partial 1.64267410548e-07 4.57513295422e-07 118386962.255 +UniRef50_G2MDU0 Outer membrane protein HopG 8.55330790492e-07 4.31605133087e-05 17079121325.6 +UniRef50_Q98R27 Proline tRNA ligase 4.3546771066e-08 1.42143359139e-07 39804652.5213 +UniRef50_UPI0003B722EC MULTISPECIES 4.50569830364e-08 6.09960114423e-07 228058326.282 +UniRef50_B8IMD9 2.74923853954e-07 4.30159577452e-07 62670566.5327 +UniRef50_A6LV83 AMP dependent synthetase and ligase 5.03276724829e-06 2.14217014057e-05 6616413834.18 +UniRef50_Q8XXC7 Uracil phosphoribosyltransferase 0.000330519847249 0.000418314798117 35443899030.6 +UniRef50_G8V724 Hsp20 alpha crystallin family protein 4.43669326528e-05 9.02070771962e-06 -14269704752.5 +UniRef50_UPI00047E563E hypothetical protein 3.52863258056e-06 5.83389133913e-07 -1189030921.61 +UniRef50_G9AD09 7.1091251068e-07 2.95713639078e-07 -167620879.529 +UniRef50_T0TCE5 SWF SNF family helicase 4.96202037088e-05 7.79683570711e-06 -16884606892.7 +UniRef50_Q5NRL6 Ribonuclease PH 2.31554356069e-06 2.69966535878e-05 9964066989.22 +UniRef50_Q9ZFE4 Enoyl [acyl carrier protein] reductase [NADH] FabI 6.57956894381e-06 6.75428086475e-06 70533346.4398 +UniRef50_J9NZP9 1.09629092634e-06 4.45139921906e-07 -262877651.011 +UniRef50_Q1LSV5 Uridylate kinase 4.59938297139e-05 2.83152187767e-05 -7137072176.3 +UniRef50_U5MWW8 Glycosyltransferase EpsJ 4.76616735539e-06 9.57538252297e-06 1941539178.86 +UniRef50_D5ATD7 Flagellar FlaF family protein 2.11779833475e-06 1.9748674593e-06 -57702948.3782 +UniRef50_UPI0004796392 hypothetical protein 5.43227945589e-07 1.49193751044e-07 -159076439.681 +UniRef50_P0A864 Thiol peroxidase 2.65074463916e-05 3.68378426439e-06 -9214192478.58 +UniRef50_UPI0003B588F0 short chain dehydrogenase 5.21285975907e-07 1.14635469689e-06 252347913.117 +UniRef50_T1Y9K8 0.000275965373987 7.2606605409e-05 -82098430367.7 +UniRef50_UPI0003C0FD80 1.23543006275e-06 9.90670756146e-07 -98812335.6105 +UniRef50_D2VX44 Predicted protein 3.77689752769e-08 6.22920192632e-08 9900253.78886 +UniRef50_I6T5F7 NADH dehydrogenase, NADH nitroreductase 6.27654715147e-05 9.1211631635e-06 -21656865571.1 +UniRef50_D3QJ09 0.000126784396694 1.83257517624e-05 -43786085896.3 +UniRef50_C6SS70 Negative transcriptional regulator, CopY 2.9531216815e-05 4.01791435631e-06 -10300033286.0 +UniRef50_P90463 Thymidylate synthase 3.26739210013e-07 1.12741223415e-06 323241525.207 +UniRef50_UPI0004431E21 1.21115443649e-06 1.07573535165e-06 -54670346.3289 +UniRef50_A6M1I3 Amino acid permease associated region 3.91124305208e-06 7.44986203214e-06 1428583905.99 +UniRef50_UPI00036E2C46 hypothetical protein, partial 1.45062615441e-08 9.96545910418e-08 34375425.5057 +UniRef50_Q9EXU9 Coenzyme PQQ synthesis protein D 2.73975813664e-06 1.08185021513e-06 -669317772.732 +UniRef50_O67876 Delta aminolevulinic acid dehydratase 0.000107239450185 2.28644127843e-05 -34063237996.8 +UniRef50_Q9KPA4 L aspartate oxidase 4.11234210087e-05 2.26329826876e-05 -7464816853.42 +UniRef50_P28345 Malate synthase, glyoxysomal 1.68469118833e-07 2.11578055833e-07 17403606.873 +UniRef50_C4ZXQ4 Purine ribonucleoside efflux pump NepI 2.2833015857e-05 7.15917265196e-06 -6327722841.54 +UniRef50_Q93A70 RecA like protein 4.55492456182e-07 4.09436768006e-06 1469058581.9 +UniRef50_UPI000318A15A hypothetical protein 4.5278120142e-08 7.58869198888e-08 12357148.07 +UniRef50_UPI00046CE89C hypothetical protein 1.84548559956e-07 3.06125494054e-07 49082100.2121 +UniRef50_Q4A0J9 Urease accessory protein UreD 0.000175186019734 3.74555935937e-05 -55603463175.1 +UniRef50_UPI00022CAA48 PREDICTED 1.17462909427e-07 7.14789923884e-08 -18564271.5946 +UniRef50_Q03S48 Bifunctional protein PyrR 4.13808905559e-06 3.61615485319e-05 12928263562.6 +UniRef50_UPI000479DE62 hypothetical protein 3.08497327948e-07 1.78641638844e-06 596654060.826 +UniRef50_Q5NYP6 Ribonuclease H 6.1266895422e-07 2.46391940494e-07 -147870525.166 +UniRef50_P45089 Arginine ABC transporter permease protein ArtM 2.58251456848e-05 3.36223952777e-06 -9068550866.44 +UniRef50_W1TYY5 3.25542642809e-06 1.37356607068e-05 4230999185.25 +UniRef50_Q6MI59 Aspartate tRNA ligase 3.61092171359e-08 1.5633044973e-07 48534786.8786 +UniRef50_A8J7P6 Predicted protein 5.72794768461e-08 3.76941830841e-08 -7906823.4303 +UniRef50_UPI00046612DA cation transporter 3.85077449897e-08 7.60941393681e-08 15174088.6475 +UniRef50_B3QS41 Adenylate kinase 4.13140952451e-06 1.79072055359e-05 5561457897.83 +UniRef50_P44779 L fucose isomerase 2.89135481291e-05 8.0332345031e-06 -8429638841.08 +UniRef50_P77504 3.6282451888e-05 1.65980289022e-05 -7946843114.4 +UniRef50_P77986 Cysteine tRNA ligase 1.2330998408e-06 1.11327062593e-06 -48376524.5128 +UniRef50_G7U7R4 2.45182122722e-07 7.38814227419e-05 29727853956.3 +UniRef50_Q5HR39 7.97227539995e-05 2.04750500429e-05 -23919025138.4 +UniRef50_C5VW20 Metal dependent transcriptional regulator 0.000129344480131 4.47480784315e-05 -34152605480.7 +UniRef50_UPI00046F9A55 UDP N acetylenolpyruvoylglucosamine reductase, partial 1.71945440455e-07 4.7039362607e-07 120487194.904 +UniRef50_UPI000462C1F9 ATPase, partial 2.66909568512e-08 1.38424063777e-06 548059465.195 +UniRef50_F2N7I9 2 keto 3 deoxy phosphogluconate aldolase 6.4080596504e-06 8.19488032608e-06 721361433.527 +UniRef50_B9EBC6 Ribonuclease HII 8.19303649257e-05 4.36977133179e-05 -15434990621.5 +UniRef50_UPI000255BC43 gamma aminobutyrate permease, partial 2.06406608613e-07 9.8153134667e-07 312927368.604 +UniRef50_A8F524 Peptide deformylase 8.24705332096e-08 1.09165816062e-07 10777213.2755 +UniRef50_Q9RW75 Acetylornithine acetyl lysine aminotransferase 1.90820085505e-06 0.000238562079432 95540074851.2 +UniRef50_M1MR71 PGA biosynthesis protein CapA 2.35086360003e-06 1.66747316035e-05 5782721286.64 +UniRef50_UPI00037D52AC hypothetical protein 3.31892970276e-08 1.30771084448e-07 39394965.0448 +UniRef50_M9S1L9 Periplasmic aliphatic sulfonate binding protein 1.1723167356e-06 2.06515178457e-06 360448465.587 +UniRef50_UPI000471FB75 hypothetical protein 4.49377133561e-07 1.50076730746e-07 -120831245.445 +UniRef50_UPI000462F0A6 sodium 1.03591151059e-07 1.58246256433e-07 22064936.733 +UniRef50_UPI00035E3397 hypothetical protein 4.98101853286e-08 4.43604775189e-08 -2200113.91821 +UniRef50_P39616 Probable aldehyde dehydrogenase YwdH 0.000194139667238 5.58740262145e-05 -55819535991.2 +UniRef50_G8PQT7 1.25694085677e-06 2.99009741532e-07 -386728546.358 +UniRef50_UPI00037BE06D hypothetical protein 4.91446441076e-07 4.36490099097e-07 -22186549.6471 +UniRef50_A6QK31 Transcriptional regulator LysR family protein 0.000161689411847 2.53536025748e-05 -55040439231.6 +UniRef50_M4WZ70 PpiC type peptidyl prolyl cis trans isomerase 9.05175697333e-06 2.20136373534e-06 -2765587813.95 +UniRef50_UPI00042CF608 PREDICTED 2.37841347631e-07 7.75791639907e-08 -64699810.1736 +UniRef50_T0T7J2 Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily 6.85942780203e-05 5.20399813437e-06 -25591433876.1 +UniRef50_UPI0003B3103D exodeoxyribonuclease III 3.43071150191e-07 3.94456160424e-07 20744759.196 +UniRef50_Q165N2 Long chain fatty acid protein, putative 8.93028677418e-08 2.63790951444e-07 70442980.6001 +UniRef50_G6XX97 Putative NAD specific glutamate dehydrogenase 3.06399391356e-07 1.84306468806e-07 -49290411.0821 +UniRef50_A6LQ40 1.77779900556e-06 1.7150363486e-05 6206092923.32 +UniRef50_W5X5Z9 Putative bile acid beta glucosidase 1.61688279091e-07 2.51197896676e-07 36136131.0256 +UniRef50_D8LTS8 1.75839565378e-06 1.83249429851e-07 -635905859.818 +UniRef50_UPI0002F66B6C hypothetical protein 1.98773034701e-07 2.08016767033e-06 759542101.712 +UniRef50_P68825 Peptide deformylase 0.000217730230778 7.49985794964e-05 -57622519136.9 +UniRef50_A5IR31 Transcriptional regulator, XRE family 3.79222337175e-05 1.6043492418e-05 -8832716344.96 +UniRef50_UPI0003616553 hypothetical protein 7.57605633654e-08 5.1969860412e-07 179223234.785 +UniRef50_X0YG76 Marine sediment metagenome DNA, contig 4.26828283053e-07 4.11363328195e-07 -6243392.05251 +UniRef50_D4DSS6 Delta 1 pyrroline 5 carboxylate dehydrogenase 1.03804687933e-06 3.99454279466e-05 15707387184.1 +UniRef50_A1W398 7.09189678027e-07 1.26304447337e-07 -235317920.436 +UniRef50_Q2J878 CTP synthase 0.000330242988951 0.000201113824007 -52131028480.9 +UniRef50_P76250 HTH type transcriptional regulator DmlR 3.79065996074e-05 1.13218794398e-05 -10732577762.9 +UniRef50_B9K420 Transposase 5.95511907884e-07 2.41594836547e-07 -142880664.75 +UniRef50_B6ZTT1 Outer membrane usher protein fimD homolog 1.05743945506e-05 2.27881224986e-06 -3349028373.05 +UniRef50_A7X2C6 Quinolone resistance protein NorB 0.000390686653492 8.52713261777e-05 -1.23299915504e+11 +UniRef50_R5GDG8 3.91682345988e-07 7.10651504003e-07 128771763.282 +UniRef50_UPI0003B34194 sodium hydrogen exchanger 4.78498507603e-08 6.53951437083e-08 7083250.06806 +UniRef50_UPI0003817F52 hypothetical protein 4.05713568254e-07 7.36506362885e-07 133545110.477 +UniRef50_UPI00046E6BB7 hypothetical protein 1.15777710732e-07 5.78754043134e-08 -23375871.6424 +UniRef50_Q8CTV4 1.19540366331e-05 2.24291168503e-05 4228918427.37 +UniRef50_F6D239 3.34318576125e-05 7.87528349983e-06 -10317502583.7 +UniRef50_K7EGU5 2.17273602896e-07 8.90976590777e-07 271982163.473 +UniRef50_A5UNG7 Glycerol 3 phosphate dehydrogenase 6.26499091887e-05 1.96408671005e-05 -17363278071.3 +UniRef50_A9GC83 Undecaprenyl diphosphatase 1.22990638441e-06 1.30028232995e-07 -444034306.751 +UniRef50_B4S8V7 Phosphoribosylformylglycinamidine synthase, purS 2.21651754361e-07 9.06759005361e-07 276586204.44 +UniRef50_UPI00036BB70C resolvase 8.33391543127e-07 1.70213090651e-07 -267733279.379 +UniRef50_W5XH95 Phosphoesterase PA phosphatase related protein 5.38579351157e-07 3.56077462921e-06 1220097320.26 +UniRef50_P77359 2.64891137119e-05 1.35567202294e-05 -5220965947.2 +UniRef50_F4CYV0 8.42740092923e-07 3.56441836254e-07 -196324573.768 +UniRef50_UPI00047AE18A hypothetical protein, partial 2.99313145365e-07 2.04362215755e-07 -38332855.4625 +UniRef50_A8F453 Carbamoyl phosphate synthase large chain 1.82268666246e-07 6.0205370901e-08 -49278450.2159 +UniRef50_T0VIT8 Malate Na symporter 9.76156905217e-06 7.65048428885e-06 -852270824.876 +UniRef50_A7H5L7 Adenylosuccinate synthetase 1.0984073391e-06 3.86607538677e-05 15164380235.4 +UniRef50_D6B724 Prevent host death family protein 7.30738217767e-07 8.233612396e-07 37393050.5263 +UniRef50_Q8MIF7 Phosphoglycerate kinase 2 9.27601131087e-08 1.16763387061e-07 9690416.24784 +UniRef50_UPI000311B4DE hypothetical protein 9.35246362747e-08 1.17506816915e-06 436632396.255 +UniRef50_M1XHI0 Transposon tn552 dna invertase binr 0.000189122510776 4.47277879416e-05 -58293921530.6 +UniRef50_UPI0003B5BE6D hypothetical protein 8.67931948009e-08 8.35018562184e-08 -1328753.77502 +UniRef50_Q87JE8 Catalase 1.65898213438e-07 1.71343229368e-06 624758498.572 +UniRef50_P37757 3.93126609127e-05 2.13799522707e-05 -7239654537.86 +UniRef50_R4RDL8 Methyl accepting chemotaxis transducer 5.8697529377e-06 4.56106233222e-06 -528334456.872 +UniRef50_UPI00035DEE56 hypothetical protein 7.5771237699e-07 8.7390494867e-08 -270617169.588 +UniRef50_L1K5S4 7.47389671087e-06 3.98866114553e-06 -1407032366.38 +UniRef50_A4WQH5 Transposase IS66 2.79728387848e-06 1.67812472678e-06 -451818283.168 +UniRef50_F1VLT5 Response regulator receiver domain protein 4.06197823147e-06 5.20001739019e-05 19353237860.0 +UniRef50_A0A013RJA0 Type I secretion C terminal target domain protein 3.58880309145e-06 4.42544502898e-05 16417220797.6 +UniRef50_K4PTK7 PTS system, IIC component 6.24103821781e-06 2.77727308957e-06 -1398364487.45 +UniRef50_Q04GD7 Xanthine phosphoribosyltransferase 5.30754470895e-07 6.31192561358e-07 40548089.6339 +UniRef50_UPI0003315B6B PREDICTED 7.36209050973e-08 3.67141406364e-08 -14899713.7098 +UniRef50_W0WCB8 3.28248685954e-06 9.02892285473e-06 2319906727.96 +UniRef50_Q321F0 3 dehydroquinate dehydratase 2.75388128753e-05 5.22436148021e-05 9973631699.86 +UniRef50_Q8DYV7 Lipoprotein signal peptidase 2.65322243263e-05 1.80732187811e-05 -3415004342.27 +UniRef50_A9MFF7 2.22503161389e-05 1.0982946248e-05 -4548775491.13 +UniRef50_P44645 Molybdopterin adenylyltransferase 5.1956389732e-05 7.16715768756e-07 -20686085160.5 +UniRef50_C6S4K8 Purine cytosine transport protein 1.58164520469e-06 4.44988520001e-05 17326203036.7 +UniRef50_D8JKV6 2.37412571605e-06 8.00499086684e-06 2273249359.86 +UniRef50_W8TU36 Membrane protein 9.84974911871e-05 1.0150982042e-05 -35666569875.5 +UniRef50_UPI000477BC75 transcriptional regulator 1.5991911645e-07 2.51531499952e-07 36985043.4301 +UniRef50_Q9RZV6 1.37521770903e-06 0.000451475265823 1.81710912772e+11 +UniRef50_Q9RZV7 2.50441106358e-06 0.000382929505919 1.53582279134e+11 +UniRef50_P46850 RNA splicing ligase RtcB 3.98192575317e-05 4.53617319524e-05 2237564937.45 +UniRef50_B7MDM9 Phosphoenolpyruvate carboxykinase [ATP] 2.8417889623e-05 8.6961481196e-06 -7961909057.91 +UniRef50_UPI00030354CC hypothetical protein 9.07473298052e-05 1.18469498658e-05 -31853051598.1 +UniRef50_P33030 1.60226702734e-05 8.15506776343e-06 -3176247679.61 +UniRef50_G8AF41 1.31817498045e-08 3.51368098637e-07 136529979.037 +UniRef50_Q1GBR1 Ribosomal RNA small subunit methyltransferase A 1.11260728979e-07 7.96308160828e-08 -12769383.9789 +UniRef50_A7FBS8 2.48346045292e-06 6.4329912625e-05 24968171683.2 +UniRef50_B9M627 Transcriptional regulator, BadM Rrf2 family 2.99841538362e-07 1.25041522789e-07 -70568911.3242 +UniRef50_Q6FDG7 9.62156301183e-07 3.8749210444e-05 15255097456.7 +UniRef50_UPI00036AD763 hypothetical protein 5.46847041056e-08 1.02593939812e-07 19341546.3671 +UniRef50_O28206 Formylmethanofuran tetrahydromethanopterin formyltransferase like protein 2.36046979148e-05 6.93745465837e-06 -6728770632.68 +UniRef50_C4XMN4 NADH quinone oxidoreductase subunit K 5.76325106515e-07 3.21245532997e-07 -102978754.008 +UniRef50_P76004 4.82600932099e-05 2.16778491095e-05 -10731578144.1 +UniRef50_G7M0B3 Subtilisin 2.05474200728e-06 1.74374743354e-05 6210197808.21 +UniRef50_F8KSC7 Phosphoglycerol transferase 5.63131758642e-07 3.587724873e-05 14256742374.3 +UniRef50_P76001 5.89223248134e-06 6.81500088921e-06 372532929.899 +UniRef50_A0A023NX12 Potassium transporter KefB 3.0953723359e-06 4.18158035251e-06 438515505.577 +UniRef50_UPI00037CB356 hypothetical protein, partial 1.20437315781e-06 4.13460486406e-07 -319301151.036 +UniRef50_C7NGM8 Signal recognition particle receptor FtsY 4.51318327698e-06 4.42336987928e-05 16035659539.3 +UniRef50_Q5HIG5 Hypoxanthine guanine phosphoribosyltransferase 0.000128282598958 4.39635506556e-06 -50014396914.4 +UniRef50_A3PHR5 5.22720533929e-05 5.05944341422e-05 -677275478.211 +UniRef50_W5X521 Virulence associated protein 1.07873082055e-06 2.97260019468e-07 -315489352.122 +UniRef50_UPI00037FC1A9 hypothetical protein, partial 2.88056684859e-07 7.97338811406e-08 -84102472.2692 +UniRef50_UPI000255A713 type I secretion target repeat containing protein 6.27722461015e-08 2.83605402261e-07 89153055.069 +UniRef50_E3A6M0 2.83583071926e-05 2.50471777561e-06 -10437411306.9 +UniRef50_Q88FA1 Transcriptional regulator, GntR family 8.38634628888e-06 1.12570317778e-05 1158930959.15 +UniRef50_D8JEZ3 Adenylate cyclase 9.11801905478e-07 7.23698906544e-05 28848507317.3 +UniRef50_Q8DWH1 tRNA pseudouridine synthase A 5.0902451797e-05 2.37802669005e-05 -10949558869.4 +UniRef50_C0QPF4 3 oxoacyl [acyl carrier protein] synthase 3 1.11042431648e-06 7.31991240064e-06 2506846538.56 +UniRef50_UPI0003F94ECB CMP deaminase 5.66141317442e-08 2.35332448012e-07 72150777.3978 +UniRef50_UPI0004090BEE hypothetical protein 2.0240844232e-07 5.51027619416e-08 -59469110.8126 +UniRef50_Q16DB6 0.000102853770731 2.66764307649e-05 -30753726945.4 +UniRef50_Q16DB7 2.05443592801e-06 5.57566899613e-07 -604304395.414 +UniRef50_B9KX58 ISSpo9, transposase 1.80396028647e-05 7.77321580853e-06 -4144666437.32 +UniRef50_UPI0004785315 hypothetical protein 3.45807084951e-08 6.87049441911e-08 13776372.7019 +UniRef50_UPI0002DCF3B2 sugar ABC transporter ATP binding protein 8.07537297295e-07 1.221988905e-06 167319199.924 +UniRef50_P26158 8.52295504189e-05 2.59825798934e-05 -23918729043.2 +UniRef50_U6N1Q3 Mitochondrial carrier domain containing protein, putative 3.4151325891e-07 1.49985599791e-07 -77322066.295 +UniRef50_UPI00047CE8B7 ABC transporter 4.53443613342e-07 4.33751977949e-07 -7949754.85169 +UniRef50_UPI0001D2E721 TonB dependent siderophore receptor 5.21219542073e-07 4.77981645463e-08 -191126019.641 +UniRef50_Q97EZ4 Galactose 1 phosphate uridylyltransferase 5.71267340116e-06 5.1661003385e-06 -220658252.602 +UniRef50_U7IBM4 8.97675076014e-07 1.78850446549e-07 -290198323.885 +UniRef50_P02992 Elongation factor Tu, mitochondrial 7.92274382853e-05 0.000170887639404 37004347988.8 +UniRef50_E3Z0Y0 Ion transport protein, putative 1.7135921283e-06 2.56795985818e-06 344918736.824 +UniRef50_UPI0003A9A8D3 16S rRNA methyltransferase 5.80842023151e-07 1.93292658702e-07 -156458434.194 +UniRef50_W4TI17 Excinuclease ABC subunit A 5.06618167083e-08 1.153514594e-06 445235199.717 +UniRef50_X4FS17 1.16381944324e-06 6.3101791844e-08 -444373223.195 +UniRef50_Q82F74 Probable M18 family aminopeptidase 2 8.98776163989e-07 3.93773782772e-05 15534283858.6 +UniRef50_R5E350 Phospholipase patatin family 5.52497353447e-06 4.63045368397e-06 -361128640.64 +UniRef50_Q04513 L threonine dehydratase biosynthetic IlvA 1.20853596503e-07 5.75814818574e-08 -25543729.1186 +UniRef50_Q51688 2.27491299583e-06 8.18694928362e-06 2386761598.22 +UniRef50_UPI0003732A38 hypothetical protein 1.85037008442e-07 8.05166134607e-08 -42196166.0633 +UniRef50_K7T001 Transposase 1.3047781796e-06 5.91597526763e-07 -287919781.261 +UniRef50_UPI0003814692 hypothetical protein 4.28024181088e-08 1.57205370652e-07 46185875.8237 +UniRef50_T2EQP3 AAA ATPase domain protein 7.75213591037e-06 1.30682417084e-05 2146177146.62 +UniRef50_G7M265 Precorrin 2 dehydrogenase 3.11971891609e-06 2.6524671094e-05 9448866405.28 +UniRef50_B9KM23 Trk system potassium uptake protein 0.000107478175445 3.08468724863e-05 -30936997376.3 +UniRef50_Q9UW15 Ribonucleoside diphosphate reductase large chain 2.66085096079e-08 3.92353091686e-07 147655575.976 +UniRef50_A0A031JPA4 Short chain dehydrogenase 4.84173914696e-08 2.57569600472e-07 84437313.3603 +UniRef50_Q8DT19 5.89679267316e-05 2.56591766107e-05 -13447151168.1 +UniRef50_UPI00034AF93B hypothetical protein 1.20324646676e-07 1.34992354662e-07 5921533.70697 +UniRef50_Q2L2E4 Phage protein 1.58402342792e-07 5.0220130852e-08 -43674486.5052 +UniRef50_Q8UEN6 Valine tRNA ligase 2.15842189615e-08 2.74458036245e-08 2366393.65819 +UniRef50_D9SQP5 Metal dependent phosphohydrolase 6.88759767944e-06 2.35844050013e-05 6740706008.72 +UniRef50_M1MG21 2.50563420697e-06 4.92194508663e-06 975494353.588 +UniRef50_D6LAV3 PTS system, mannose fructose sorbose family, IID component 5.5789152799e-06 4.29288760443e-05 15078637496.1 +UniRef50_UPI0003B68CA0 ABC transporter 1.57938418023e-07 2.94897299128e-07 55291980.9766 +UniRef50_A1SM04 5 carboxymethyl 2 hydroxymuconate delta isomerase 1.70294431062e-06 4.02855519095e-05 15576272149.5 +UniRef50_X5F517 Ribonuclease G 3.90020452734e-06 3.99395211082e-05 14549514355.9 +UniRef50_UPI0004670206 NADH 1.14020594284e-06 2.2944313289e-07 -367686122.693 +UniRef50_X5PZN2 Transposase 5.01311883519e-05 1.24140747518e-05 -15226861601.4 +UniRef50_G5JV69 Mannosyl glycoprotein endo beta N acetylglucosaminidase 6.99697848433e-05 3.02888928405e-06 -27024860994.4 +UniRef50_UPI00036BD2FB hypothetical protein 4.00831103359e-07 2.25780162039e-07 -70670213.1275 +UniRef50_B4U0E8 Transcriptional regulator AraC family 6.9489168283e-06 7.55977475005e-06 246610839.08 +UniRef50_Q9HTH5 HTH type transcriptional regulator CdhR 1.159117673e-06 1.90731994744e-06 302058439.666 +UniRef50_O26979 Probable tyrosine recombinase XerC like 2.24004279447e-05 4.92123507468e-06 -7056564655.44 +UniRef50_B2UYR1 Surface protein PspC 9.0537242023e-06 1.6474393278e-05 2995815167.71 +UniRef50_Q16DI2 Transcriptional regulator, LacI family, putative 6.4036640893e-05 9.97109696131e-06 -21826923544.1 +UniRef50_UPI000365A6F0 hypothetical protein 2.35466749406e-07 2.14222778525e-07 -8576451.7375 +UniRef50_T2EHK8 0.000103053082357 0.000216231310167 45691439419.9 +UniRef50_UPI00024849FE RTX toxins and related Ca2+ binding protein like protein 1.31074119341e-07 4.76051440121e-08 -33697449.6198 +UniRef50_UPI00047564FA hypothetical protein 1.34398643058e-06 6.76827814778e-07 -269340120.156 +UniRef50_A5VBC0 Aldehyde dehydrogenase 1.82674588784e-06 9.82813362649e-05 38939901766.2 +UniRef50_Q5F691 Dephospho CoA kinase 8.20660205591e-06 2.87076001064e-05 8276504488.52 +UniRef50_R9YSL1 Thermolysin metallopeptidase, catalytic domain protein 6.4132952579e-05 3.72053464676e-06 -24389234463.0 +UniRef50_UPI00037991D0 hypothetical protein 3.2768904637e-06 1.15867403879e-06 -855149964.175 +UniRef50_UPI00030D7518 hypothetical protein 1.646841461e-06 2.56621220818e-07 -561248970.881 +UniRef50_UPI0004649A8B MULTISPECIES 7.10232066516e-09 4.50521382424e-08 15320807.0525 +UniRef50_F0TFK9 Cysteine synthase 5.02033113056e-07 2.69693317851e-07 -93798426.4542 +UniRef50_Q68Y13 Zinc import ATP binding protein ZnuC 2.49795121395e-07 8.14253085734e-08 -67972959.5662 +UniRef50_P23620 Phosphate regulon transcriptional regulatory protein PhoB 3.3625437503e-05 5.96943731749e-05 10524349232.6 +UniRef50_Q04KA9 Uridine kinase 2.72734724215e-06 0.000360577192806 1.44468373966e+11 +UniRef50_K0L612 4.24865104263e-05 2.33144767259e-05 -7739985272.16 +UniRef50_W4UDR2 Glucoamylase S1 S2 5.38508959721e-07 1.55825829253e-06 411685319.387 +UniRef50_Q57H69 DNA directed RNA polymerase subunit beta 5.20007446378e-08 4.98038951864e-08 -886895.081904 +UniRef50_G7LYD5 1.29796819429e-05 3.83656151266e-06 -3691189916.39 +UniRef50_T9UYG2 1.45186918795e-06 7.84601211943e-06 2581393966.4 +UniRef50_UPI00035F619C hypothetical protein 2.23662314799e-07 7.53698296108e-08 -59867496.0238 +UniRef50_Q897P8 D alanine D alanine ligase A 1.17346074632e-05 2.99032158069e-05 7334890142.25 +UniRef50_P64579 mRNA interferase HigB 3.89160813245e-06 5.67916740756e-06 721659615.181 +UniRef50_Q67KN9 NADH quinone oxidoreductase subunit D 2 2.45166867811e-06 2.72469419497e-05 10010156092.0 +UniRef50_S9TMR0 LigA 9.01638508349e-07 1.50662779873e-06 244241600.58 +UniRef50_UPI00047706B6 hypothetical protein 4.91446625101e-07 2.9536463799e-07 -79160704.3933 +UniRef50_UPI00036FBC1B hypothetical protein 4.95459410972e-08 9.87819307095e-08 19877173.2 +UniRef50_J7QVF5 Conserved domain protein 2.37397525437e-05 6.84615572919e-06 -6820152341.76 +UniRef50_B0VQE3 Transposase of ISAba7, IS5 family 4.3940266949e-07 4.35835014646e-07 -1440306.04057 +UniRef50_Q2SHM4 Phosphonoacetaldehyde hydrolase 7.03753734855e-06 5.61755029929e-05 19837599721.3 +UniRef50_W8ADW9 NagD like phosphatase 2.81127906129e-07 1.21517477243e-07 -64436688.7815 +UniRef50_Q2CIA8 1.71654394907e-07 2.55408814794e-06 961817741.848 +UniRef50_J7L244 Zinc binding dehydrogenase family protein 5.57169284122e-06 7.98172167059e-05 29973829079.2 +UniRef50_I0EVS2 Cysteine rich protein C 8.65001265076e-06 9.18397231504e-06 215566068.892 +UniRef50_S5CUQ4 Folate dependent phosphoribosylglycinamide formyltransferase PurN 2.09326796037e-06 0.000118992480668 47193646684.9 +UniRef50_A0A024HP52 Mig 14 5.45682177815e-06 6.48017911051e-06 413141913.08 +UniRef50_A1SEI7 50S ribosomal protein L1 0.000314538045871 0.000154660186077 -64544653920.8 +UniRef50_B9KUB3 1.51527662611e-05 7.55440359541e-06 -3067552250.53 +UniRef50_B5XK69 Oleate hydratase 0.000290207911557 7.33131786053e-05 -87563065290.4 +UniRef50_Q9Z9J0 tRNA pseudouridine synthase A 6.61221346797e-08 1.01326898431e-07 14212595.1374 +UniRef50_UPI000475A5BB arabinose transporter permease 5.41907773541e-08 1.34564354996e-07 32447799.5887 +UniRef50_UPI000470CEEA hypothetical protein 1.11675017345e-06 3.68358643526e-07 -302134844.427 +UniRef50_Q13LX0 Ribose import ATP binding protein RbsA 3.77552860117e-08 4.83226880594e-05 19493219883.4 +UniRef50_UPI0004413371 ribosomal protein S12 7.64926842815e-07 1.10522871853e-06 137384043.2 +UniRef50_F0KGI1 DNA directed DNA polymerase 1.70743780995e-06 5.37394772967e-05 21005972845.7 +UniRef50_B8JA02 1.06211682348e-07 3.54175367128e-07 100105982.402 +UniRef50_R1GXI1 1.9233625596e-06 5.46438875869e-05 21283922907.1 +UniRef50_Q03XB9 5.80872096252e-08 6.1328696289e-08 1308627.94369 +UniRef50_R9HYC8 7.88729265857e-08 1.14454841506e-07 14364855.6925 +UniRef50_UPI0003941003 PREDICTED 3.87265982673e-09 5.14957937677e-08 19226043.5736 +UniRef50_UPI00047CE519 hypothetical protein 1.83136536847e-07 8.8381366584e-07 282871955.25 +UniRef50_UPI00035FDF95 acetylornithine aminotransferase 4.00023544073e-08 2.04305853894e-06 808658361.958 +UniRef50_Q56066 Molybdopterin molybdenumtransferase 3.51663700722e-05 1.9003417703e-05 -6525182213.18 +UniRef50_UPI0003B4081B biotin biosynthesis protein BioY 1.54784338901e-07 2.24899355305e-06 845457958.589 +UniRef50_Q62FS7 Ribosomal RNA small subunit methyltransferase G 4.48865217827e-07 1.04708773968e-07 -138940179.66 +UniRef50_UPI000477EC64 glycogen debranching protein, partial 6.20727357053e-07 2.26370140902e-06 663288786.339 +UniRef50_Q8YFU1 5 hydroxyisourate hydrolase 3.20998236775e-07 3.73443174851e-07 21172665.073 +UniRef50_B2HX69 Predicted hydrolase 1.75303090798e-06 4.9614658533e-05 19322326400.4 +UniRef50_Q8CU33 5.73538598731e-05 4.09177570223e-05 -6635456414.53 +UniRef50_UPI00037B3020 hypothetical protein 1.15750686468e-06 5.19467639051e-07 -257584265.008 +UniRef50_Q74CZ3 Adenine phosphoribosyltransferase 1.18204234757e-07 3.31118484539e-07 85956095.3886 +UniRef50_Q5PJI9 Arginine exporter protein ArgO 9.85810997847e-06 2.79479531722e-06 -2851546805.36 +UniRef50_A5U672 LexA repressor 9.4561414589e-07 1.53493071337e-07 -319788998.216 +UniRef50_UPI0004743595 hypothetical protein, partial 1.89681409268e-07 4.24404208244e-07 94760474.3193 +UniRef50_A6LT65 1.3122340285e-06 1.9463580868e-05 7327921461.18 +UniRef50_UPI000361C034 hypothetical protein 2.36858367208e-08 5.8270716318e-08 13962340.2976 +UniRef50_W0NSJ7 Transcriptional regulator ICP4 1.1182888895e-06 2.64567152027e-06 616623111.134 +UniRef50_Q67JB9 Ribosomal RNA small subunit methyltransferase A 1.94254594117e-07 2.82999621999e-07 35827456.7799 +UniRef50_UPI00035FFF58 hypothetical protein 5.35079479959e-07 9.7596061496e-08 -176617424.559 +UniRef50_Q6A6S0 2.30174383446e-06 1.4869168625e-05 5073623607.57 +UniRef50_Q99ZV9 CRISPR associated protein Csn2 2.27792300668e-05 4.0999716039e-05 7355833777.48 +UniRef50_G2AB04 7.26642884203e-07 1.81284462981e-06 438512973.897 +UniRef50_H2K8K5 2.90718097575e-06 1.21321463739e-06 -683874998.1 +UniRef50_A3PIQ0 Methyl accepting chemotaxis sensory transducer 4.69801662557e-05 5.84161428482e-06 -16608138257.5 +UniRef50_D6ENI5 Integral membrane protein 7.64388923005e-06 8.97250128943e-06 536376992.275 +UniRef50_B8GW41 Uroporphyrinogen decarboxylase 5.20347657135e-08 2.5576022455e-07 82246467.725 +UniRef50_B1XUJ9 NADH quinone oxidoreductase subunit B 2.8931674222e-06 4.22249043955e-05 15878704870.8 +UniRef50_W1H531 5 methyltetrahydrofolate homocysteine methyltransferase 2.37371339422e-05 9.04395817222e-06 -5931815363.89 +UniRef50_J9P4V0 4.30365266484e-07 2.10439457392e-06 675826174.063 +UniRef50_P20691 3 phosphoshikimate 1 carboxyvinyltransferase 3.63590790378e-08 8.36104054843e-08 19075940.3254 +UniRef50_UPI0003B3BE35 ABC transporter ATPase 8.07693593821e-08 1.13298816763e-07 13132541.126 +UniRef50_UPI00046F4B95 histidinol phosphatase, partial 4.72393444711e-07 6.32207055392e-07 64518715.7655 +UniRef50_UPI0002626B3F ABC transporter 1.03560664837e-07 7.88304556944e-07 276439511.996 +UniRef50_Q42682 Delta aminolevulinic acid dehydratase, chloroplastic 1.52510220819e-06 4.77515458711e-05 18662182569.0 +UniRef50_Q8X1P0 Catalase 1.85663514085e-07 3.40677501607e-07 62581048.9982 +UniRef50_D8HFS0 0.000126449300249 1.220095075e-05 -46123460677.7 +UniRef50_Q18J88 Thymidine kinase 1.81511447887e-07 2.62090641476e-07 32530809.2698 +UniRef50_P42449 Isocitrate lyase 1.70064558798e-07 5.26911653276e-07 144063551.047 +UniRef50_P58813 2,3 bisphosphoglycerate independent phosphoglycerate mutase 4.0352589527e-05 1.01247164942e-05 -12203363281.1 +UniRef50_C5QCS1 Mobilization protein 0.000875318015942 0.000342188277512 -2.15231017642e+11 +UniRef50_W8X1S4 Tricarboxylate transport membrane protein TctA 6.89138537299e-06 4.49138734104e-06 -968908656.786 +UniRef50_P0ADW1 Lipopolysaccharide export system protein LptC 2.18863110446e-05 6.18464304081e-06 -6338956054.27 +UniRef50_W5XB53 Putative hydrolase 1.27537116092e-07 1.11444624346e-07 -6496736.39494 +UniRef50_Q9RR99 Oxidoreductase, short chain dehydrogenase reductase family 1.20346223862e-06 0.000183382945385 73548092939.7 +UniRef50_UPI0004781063 peptide ABC transporter substrate binding protein 1.89618527615e-07 5.88922205479e-07 161203794.761 +UniRef50_A5WBZ4 Transporter, NhaC family 2.17049728402e-06 3.52758977622e-05 13365056422.0 +UniRef50_Q87BX0 Phage related protein 1.67989450747e-07 7.85026350168e-06 3101428306.46 +UniRef50_Q5N353 Phosphoribosylaminoimidazole carboxylase 1.46760948304e-05 2.17830873862e-05 2869180107.38 +UniRef50_Q3DCS0 2.58451294737e-06 1.69534363488e-06 -358968562.787 +UniRef50_Q165N5 Trimethylamine methyltransferase family protein 4.43649361198e-05 1.21763763818e-05 -12994916564.3 +UniRef50_I0C2I1 0.000194899647681 7.07429789861e-05 -50123570725.8 +UniRef50_A1AXZ6 Rhodanese 2.70982103251e-05 3.77803887234e-06 -9414639386.18 +UniRef50_A7GYU4 Porphobilinogen deaminase 1.2527189896e-06 2.91086474774e-05 11245780161.2 +UniRef50_UPI0003667454 hypothetical protein 1.74307832821e-08 3.65107663576e-08 7702823.3053 +UniRef50_Q8CPM3 Pyruvate carboxylase 0.000121790928414 6.0183262941e-05 -24871770562.5 +UniRef50_Q88V19 Glutamate racemase 3.8429661046e-05 8.33734215477e-05 18144347636.5 +UniRef50_Q6GDE9 Serine rich adhesin for platelets 2.60334308793e-05 7.05089503951e-06 -7663482660.44 +UniRef50_I9MZI2 1 5 phosphoribosyl 5 methylideneamino imidazole 4 carboxamide isomerase (Fragment) 1.14772186354e-07 1.73308744056e-07 23631926.6686 +UniRef50_K4S416 4.85316733861e-07 3.33283795348e-07 -61377562.9317 +UniRef50_V8G5H9 GntR family transcriptional regulator 3.07686483864e-06 1.05007392707e-05 2997109209.41 +UniRef50_F3U2E4 McpE 2.57786582352e-05 1.1476037767e-06 -9943858941.92 +UniRef50_Q8A251 Ribosomal RNA small subunit methyltransferase H 1.08304589241e-07 8.31335042072e-08 -10161875.9121 +UniRef50_A6TD39 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.45261978953e-05 7.32179251613e-06 -19056997714.8 +UniRef50_K0R9Z2 3.83954374459e-07 2.65533665821e-07 -47807893.2627 +UniRef50_W7Q6R7 4.49091447258e-08 1.17340504534e-07 29241428.7873 +UniRef50_A1BFY3 Lipoyl synthase 5.32397974754e-08 1.84138208097e-07 52845294.6722 +UniRef50_UPI000479C2FE hypothetical protein 3.0216536204e-08 8.35530152306e-08 21532591.0952 +UniRef50_K2J3T1 3.2810833849e-06 4.05986804015e-07 -1160711771.11 +UniRef50_X1ENU3 Marine sediment metagenome DNA, contig 2.94849077439e-06 3.19329884348e-07 -1061424514.74 +UniRef50_Q5YSJ6 6.07818701413e-08 9.29505863175e-08 12986905.4749 +UniRef50_A5ULM3 Precorrin 6X reductase, CbiJ 1.62152371903e-05 1.44901602335e-05 -696434736.535 +UniRef50_P0ADC7 Lipopolysaccharide export system permease protein LptG 5.07535732097e-05 1.52992744476e-05 -14313335483.4 +UniRef50_B0VDU9 3.58372774223e-06 3.33465903083e-05 12015632849.3 +UniRef50_Q3IIQ9 8.24371133558e-08 1.88770220023e-07 42927980.0154 +UniRef50_A3PI11 2.44467066402e-05 3.09651305176e-06 -8619335147.97 +UniRef50_UPI000467E1F1 hypothetical protein 1.29715854578e-07 1.06017928987e-07 -9567143.36734 +UniRef50_U5MMP4 Methyl accepting chemotaxis protein 8.99702522952e-06 8.36685586281e-06 -254407106.389 +UniRef50_E8U5H6 2.46186514471e-06 0.000296667468942 1.18774412562e+11 +UniRef50_Q07422 Bifunctional dihydrofolate reductase thymidylate synthase 1.46732144429e-07 4.04652124949e-08 -42901264.4637 +UniRef50_Q9CEG3 Aminopeptidase C 7.60447669273e-05 0.000100572788924 9902263472.75 +UniRef50_A6LZZ3 AAA ATPase, central domain protein 1.37652287579e-06 1.58274042109e-05 5833998127.24 +UniRef50_UPI00035E7781 hypothetical protein, partial 2.24083408422e-07 1.99916577965e-07 -9756446.01585 +UniRef50_UPI00045E7C5F translation initiation factor 2 1.84628970971e-06 7.258344268e-07 -452341547.243 +UniRef50_UPI000372ADBA actetate permease 7.68225458453e-07 9.3721532223e-07 68223281.7456 +UniRef50_UPI000468220F hypothetical protein 1.58028421252e-07 7.72634080029e-08 -32605826.9468 +UniRef50_L5JBS3 2.75537218136e-06 4.40771201791e-06 667069868.505 +UniRef50_UPI000300E129 hypothetical protein 5.16279100313e-08 2.76738796632e-07 90880027.342 +UniRef50_V9Z4G9 Replication protein 7.24774954015e-06 8.55990449842e-06 529733058.606 +UniRef50_D5ZZ05 7.5521921438e-07 6.47679894733e-07 -43414942.9973 +UniRef50_G1X3P0 2.89121107581e-08 4.53691439515e-09 -9840565.88904 +UniRef50_UPI0003C1128E 2.42641119652e-07 3.43199304391e-08 -84101820.4738 +UniRef50_UPI0002000005 ATP dependent DNA helicase 5.58497019608e-07 1.59255925212e-06 417463612.635 +UniRef50_P54533 Dihydrolipoyl dehydrogenase 1.81910555678e-06 8.35781594323e-06 2639757622.01 +UniRef50_A4W0T3 Endonuclease III 5.93074057537e-05 1.71630963205e-05 -17014174887.0 +UniRef50_Q8FEF9 tRNA pseudouridine synthase C 1.85429715988e-05 8.16930640887e-06 -4187975936.35 +UniRef50_A7ZPF5 1.24168853918e-05 3.31816522686e-06 -3673264984.44 +UniRef50_A7X2C5 Extracellular matrix binding protein EbhB 4.41803677974e-05 1.19794234017e-05 -12999916402.6 +UniRef50_UPI00039B42F6 3 dehydroquinate dehydratase 7.34189326571e-07 2.60355557787e-07 -191292507.052 +UniRef50_P24582 Modification methylase NlaIII 3.14465419062e-06 5.7057551513e-05 21765298234.7 +UniRef50_Q5NRF0 Probable chemoreceptor glutamine deamidase CheD 2.03181978107e-06 5.17014581743e-07 -611545447.72 +UniRef50_UPI000376D860 hypothetical protein 8.58458814813e-08 3.64197684721e-08 -19953928.3484 +UniRef50_A5UJQ2 3.47819576324e-05 7.89332381461e-06 -10855271432.9 +UniRef50_UPI0002192D8C peptide ABC transporter ATP binding protein 5.01171623516e-07 1.21005130696e-07 -153477878.319 +UniRef50_C7BZT5 Cytoplasmic pump proteins of the hefABC efflux system 3.18110756219e-06 2.93283953496e-05 10555980943.1 +UniRef50_UPI0002B9F68A hypothetical protein 6.18815898012e-07 2.44902149441e-06 738876458.415 +UniRef50_C5N6U7 0.000715481724334 7.26188619325e-06 -2.85917039492e+11 +UniRef50_E4ZD91 2.86632948998e-06 5.0863424825e-05 19377016377.3 +UniRef50_UPI0003176417 hypothetical protein 1.64024443277e-07 7.95226633326e-07 254824069.845 +UniRef50_UPI00017444A4 lactate permease 7.40662163341e-08 3.88498798487e-07 126940291.937 +UniRef50_B8I6U9 Phosphatidylserine decarboxylase proenzyme 1.41380520171e-06 2.07969510703e-06 268827926.166 +UniRef50_O34318 0.000138738905858 2.63926191736e-05 -45355574578.3 +UniRef50_UPI0002FA030F hypothetical protein 6.10226680761e-08 7.87884375256e-08 7172259.13727 +UniRef50_D4H9Z1 2.89153712066e-06 3.68588003269e-05 13713000981.5 +UniRef50_H2EPJ7 Acyl CoA synthetase 7.72311769725e-07 8.30172333899e-07 23359019.786 +UniRef50_UPI00035F5072 hypothetical protein 1.39302969329e-08 2.2976221438e-08 3651950.72869 +UniRef50_U2YKU9 Penicillin binding protein 2 2.26273070915e-05 5.47598462688e-06 -6924199349.35 +UniRef50_UPI0003D25F22 4.13109145931e-07 3.4393318365e-07 -27927184.8574 +UniRef50_UPI0003FE0ED1 hypothetical protein 1.78147400641e-07 9.12974863266e-08 -35062376.177 +UniRef50_D0UWA8 1.56954141561e-05 8.54893855216e-06 -2885119898.43 +UniRef50_X0U2P0 Marine sediment metagenome DNA, contig 4.83257007873e-07 3.49786319579e-07 -53883754.7338 +UniRef50_E0SXX7 Collagenase like protease 6.26204089565e-05 9.3663121422e-05 12532323959.2 +UniRef50_UPI0003722924 hypothetical protein 6.40414374959e-07 2.28901557965e-07 -166132774.051 +UniRef50_E3J760 2.94963867728e-07 2.32061522841e-07 -25394448.5295 +UniRef50_P31909 Hydrogenase expression formation protein HoxM 9.15342883711e-06 2.86715247755e-06 -2537846907.64 +UniRef50_UPI0003C16579 PREDICTED 1.43437042808e-07 3.53754994253e-07 84907937.8898 +UniRef50_I0LEQ3 1.27012166912e-06 1.68544062146e-06 167669357.596 +UniRef50_UPI0003FB6811 hypothetical protein 8.12482465594e-07 1.06964394103e-07 -284826303.141 +UniRef50_UPI0003C7E616 hypothetical protein 4.35852553171e-07 4.76949935468e-07 16591517.5549 +UniRef50_A6UEM2 3.76572124478e-05 5.76635328994e-06 -12874731186.9 +UniRef50_V6QFC6 Recombinase 0.00020923534863 0.000148267651036 -24613407676.5 +UniRef50_UPI00047624DC hypothetical protein 1.90017999071e-06 1.2478481605e-06 -263354364.868 +UniRef50_I3TRE3 Lipoprotein 5.5189098585e-07 1.49090116143e-07 -162615654.023 +UniRef50_E3RRY8 4.73261104675e-07 1.52876557611e-07 -129343173.21 +UniRef50_L2LUI2 1.23983557214e-07 1.66074034659e-07 16992442.2528 +UniRef50_S1HVV1 1.25040625089e-05 2.23448032776e-06 -4145956348.45 +UniRef50_UPI0004638CB3 50S ribosomal protein L3 8.40080403615e-08 3.13178303453e-06 1230424165.55 +UniRef50_Q3K3G9 Polyribonucleotide nucleotidyltransferase 6.78262960423e-05 6.55278929019e-05 -927893552.358 +UniRef50_P45804 2.46801760607e-05 1.00625796452e-05 -5901303051.02 +UniRef50_Q47WT5 Lysine tRNA ligase 7.64063478605e-08 9.37983991156e-08 7021384.51615 +UniRef50_UPI0002377EE6 transposase 6.18990646015e-07 1.5470622179e-07 -187437319.47 +UniRef50_Q71ZM1 Probable endonuclease 4 0.000270973192318 3.76535372977e-05 -94194007885.7 +UniRef50_Q5HKZ3 Glutathione peroxidase homolog BsaA 9.10768029996e-05 1.1710426068e-05 -32041180302.3 +UniRef50_UPI00046FCB34 carbon nitrogen hydrolase, partial 1.76324554057e-07 3.23930572427e-06 1236563085.42 +UniRef50_W8YQ25 3.89093993118e-06 1.61545937717e-06 -918639422.94 +UniRef50_Q4L8I4 PTS system, arbutin like IIBC component 0.000105118790475 3.37699435432e-05 -28804405055.2 +UniRef50_Q2G9M5 Guanylate kinase 5.98015744794e-05 2.33708418992e-05 -14707533798.0 +UniRef50_UPI000477407F peroxiredoxin, partial 1.1319983483e-07 2.75641953533e-07 65579876.7094 +UniRef50_Q1N9Q9 3.06774988141e-07 1.60452825408e-08 -117371149.805 +UniRef50_UPI000262D08E hypothetical protein 9.39309256147e-07 5.50807120963e-07 -156843079.431 +UniRef50_I7DPQ7 8.30883883469e-08 5.15037915936e-08 -12751089.2959 +UniRef50_N6VQS5 5.25293821999e-07 1.11134209575e-07 -167201317.846 +UniRef50_Q8KED5 Probable thiol peroxidase 2.27858745785e-06 3.38902059169e-07 -783074798.064 +UniRef50_Q1R155 Zinc import ATP binding protein ZnuC 2.14320683415e-07 9.68968778155e-08 -47405431.2729 +UniRef50_M1LWV2 Response regulator receiver protein 2.50013402159e-06 2.10439457392e-06 -159764871.294 +UniRef50_UPI0003B796C7 arginine ABC transporter ATP binding protein 1.17971420867e-06 4.65885312803e-07 -288181484.927 +UniRef50_F7PVM3 ABC type metal ion transport system protein 4.27427192848e-07 1.05945669124e-07 -129786036.149 +UniRef50_I0C688 1.44663931089e-05 6.19545535373e-06 -3339079067.58 +UniRef50_W4NY50 9.5258590978e-07 1.9948830082e-07 -304034746.284 +UniRef50_UPI0004722448 hypothetical protein 6.15298949801e-08 1.1221811727e-07 20463457.3529 +UniRef50_V5SBZ4 Phosphonate ABC transporter substrate binding protein 0.000129567124513 2.80175016809e-05 -40996828891.3 +UniRef50_UPI00037B6D80 hypothetical protein 7.83542461151e-08 1.07166983607e-07 11632055.6975 +UniRef50_B1GZJ0 Elongation factor P 1.11372934613e-07 3.87658587319e-07 111539908.404 +UniRef50_X1WW26 3.11971891609e-06 4.88126785439e-06 711158923.028 +UniRef50_F0PCL5 Amino acid ABC transporter, amino acid binding protein 4.22798830317e-05 2.00063883992e-05 -8992083109.66 +UniRef50_UPI000378F8D9 hypothetical protein 9.43360177201e-08 4.35891507963e-07 137890142.768 +UniRef50_P30147 Hydroxypyruvate isomerase 4.40676220297e-05 1.42076925352e-05 -12054819959.5 +UniRef50_UPI0004717369 amidohydrolase, partial 7.87065909331e-08 3.39558760833e-07 105309222.005 +UniRef50_UPI0003B62CCC electron transporter RnfB 1.38032260102e-07 2.88461883825e-07 60730285.076 +UniRef50_P68799 Fibrinogen binding protein 0.000109734696463 1.5281408062e-05 -38131951599.7 +UniRef50_Q0TQG4 Porphobilinogen deaminase 1.01842793199e-05 2.5549867956e-05 6203276689.37 +UniRef50_B7GQA5 Binding protein dependent transport systems inner membrane component 1.28834808487e-06 7.22222076274e-05 28636869553.6 +UniRef50_C6M8K8 1.99728036426e-06 1.75526786315e-06 -97703416.5255 +UniRef50_F3GKC7 RelA SpoT protein 5.96074809253e-07 5.24433094958e-07 -28922639.2036 +UniRef50_A6Q5D2 Cytochrome b 1.14159069206e-06 2.29266878621e-05 8794911060.73 +UniRef50_Q9F6X6 Light independent protochlorophyllide reductase subunit N 1.02979068275e-06 3.17531593788e-07 -287547734.616 +UniRef50_A5UMA2 Predicted endoglucanase 3.05274403381e-05 7.59595418098e-06 -9257722362.6 +UniRef50_UPI000301BD84 hypothetical protein 5.86119973284e-08 9.78741102064e-08 15850596.7692 +UniRef50_Q8XVE6 Indole 3 glycerol phosphate synthase 1 2.10650835712e-07 2.02795980161e-07 -3171101.57586 +UniRef50_P0C8J9 D tagatose 1,6 bisphosphate aldolase subunit GatZ 3.45888469187e-05 2.60400595107e-05 -3451250382.03 +UniRef50_UPI00047A0456 hypothetical protein, partial 6.0172973743e-07 1.90977889755e-06 528075497.509 +UniRef50_Q2NXB3 2.89146491173e-06 4.55501344774e-06 671594958.023 +UniRef50_W7T1C4 5.12403933111e-07 4.54557949759e-07 -23353133.3292 +UniRef50_U3SSK6 1.439770278e-05 7.85156013645e-06 -2642758115.4 +UniRef50_A1SJC3 Oligopeptide dipeptide ABC transporter, ATPase subunit 3.35251212962e-06 0.000420744160778 1.68506130531e+11 +UniRef50_UPI0004785ED3 hypothetical protein 6.27263882353e-07 8.01976594409e-07 70533665.8231 +UniRef50_R0WUD1 3.33488508537e-07 2.74824462041e-06 974866674.752 +UniRef50_I1H6Y1 1.06066813943e-06 3.32024226604e-07 -294162489.074 +UniRef50_A6YPV7 Recombination protein A 2.6108339293e-06 3.12578275834e-05 11565142876.3 +UniRef50_P58388 3 mercaptopyruvate sulfurtransferase 2.23923146161e-05 5.33901715896e-06 -6884625450.92 +UniRef50_A6QIJ6 0.000176597259472 2.49293899277e-05 -61230180109.0 +UniRef50_C1DBX8 BolA YrbA family protein 3.66962346387e-07 1.19207497317e-06 333108092.703 +UniRef50_A6QIJ0 4.4150135555e-05 5.66102310275e-06 -15538527011.5 +UniRef50_R0MK27 Phenylacetic acid degradation protein paaD 8.62938628955e-07 6.66707113487e-07 -79221070.8259 +UniRef50_UPI0003450573 hypothetical protein 3.35952872855e-07 3.27562973411e-07 -3387105.36119 +UniRef50_UPI0004785992 DNA polymerase III subunit alpha 8.52207281053e-08 5.48121768598e-08 -12276305.2927 +UniRef50_P0A2K8 UTP glucose 1 phosphate uridylyltransferase 2.85622713346e-05 6.0714572454e-06 -9079817641.14 +UniRef50_Q9JWE5 Homoserine kinase 2.33978918713e-06 2.97605788981e-05 11070109297.3 +UniRef50_P30011 Nicotinate nucleotide pyrophosphorylase [carboxylating] 3.02929863069e-05 6.35391554286e-06 -9664496632.86 +UniRef50_C3FD24 9.6885402055e-07 1.59774592534e-06 253891379.335 +UniRef50_J7QJP1 2.21797528993e-06 1.03184081319e-05 3270244141.79 +UniRef50_L2YG78 Tat pathway signal sequence 4.81897007041e-06 1.7897982133e-05 5280157667.2 +UniRef50_UPI0002891AB1 MsbA 1.92037343567e-07 3.10785006581e-07 47939888.7564 +UniRef50_UPI0003B3A4A3 adenine permease 7.21095974737e-08 7.16694302008e-08 -177700.92953 +UniRef50_A6M229 5 dehydro 2 deoxygluconokinase 3.8735209993e-06 7.78536942637e-06 1579261213.79 +UniRef50_A4WSW4 ErfK YbiS YcfS YnhG family protein 4.97223729314e-05 1.86291773393e-05 -12552704616.9 +UniRef50_UPI0004786723 hypothetical protein 4.79637031014e-08 3.78467758894e-07 133428543.064 +UniRef50_UPI0003656635 hypothetical protein, partial 6.68600152884e-07 3.80047068984e-07 -116492420.915 +UniRef50_A6LYJ9 1.24037017145e-06 1.44056929367e-06 80822842.3597 +UniRef50_W8ZDM8 2.19473187102e-07 7.57753201192e-08 -58012592.2722 +UniRef50_UPI000225ACBB acetyl CoA carboxylase, biotin carboxylase 2.90490113369e-08 8.26464798869e-08 21637955.7685 +UniRef50_A3PGH2 3.31466318752e-05 8.25750117316e-06 -10048047488.4 +UniRef50_C7RCC8 Serine O acetyltransferase 1.51600798739e-06 5.0508999965e-05 19779072073.0 +UniRef50_UPI00037A1089 hypothetical protein 2.74466850089e-07 4.67270467813e-08 -91941353.2771 +UniRef50_A5UMY5 Diphthamide synthase, subunit DPH2 2.99401549467e-05 4.57459555424e-06 -10240387597.2 +UniRef50_Q9RYI7 N glycosidase F, putative 5.80187185277e-06 0.000589466853033 2.35632715277e+11 +UniRef50_P07001 NAD transhydrogenase subunit alpha 0.000108030737621 5.21694842415e-05 -22551873484.0 +UniRef50_V0AI23 2.9703780783e-05 1.42104546197e-05 -6254845896.62 +UniRef50_V7ENM8 6.85992596688e-07 6.8972088663e-07 1505156.40085 +UniRef50_UPI00037DEAAC hypothetical protein 1.06358508853e-05 6.12062605704e-05 20415894958.6 +UniRef50_F0PHP0 Diacylglycerol kinase catalytic domain family protein 8.04005244648e-05 2.50302163142e-05 -22353672870.5 +UniRef50_Q9CE10 UDP N acetylmuramate L alanine ligase 0.00024599496981 0.00013772860967 -43708458166.2 +UniRef50_W4TIG8 Cytoplasmic axial filament protein CafA and Ribonuclease G 2.47802618498e-06 1.156713887e-05 3669386326.9 +UniRef50_Q9RRN1 5.74237126031e-06 0.000347013330602 1.37775274152e+11 +UniRef50_R4ZVK8 Transcriptional repressor of the fructose operon, DeoR family 1.46559310506e-07 8.52056889553e-07 284818030.09 +UniRef50_UPI00037A56E2 hypothetical protein 1.26163853057e-07 9.08868592567e-08 -14241755.2946 +UniRef50_Q4UPB2 1.16977323908e-07 1.7785783706e-05 7133113957.09 +UniRef50_P34001 5.4515887153e-05 1.104010369e-05 -17551707291.9 +UniRef50_V2I282 FAD linked oxidase 2.82648428852e-05 5.54216021574e-06 -9173425832.35 +UniRef50_Q4L978 Diapolycopene oxygenase 0.000124513397721 6.95954853552e-06 -47457931463.9 +UniRef50_M9S180 7.54971977708e-06 2.14831016484e-06 -2180615343.21 +UniRef50_B3QZ51 Homoserine O acetyltransferase 5.16418688215e-08 3.77547628999e-07 131572154.697 +UniRef50_R4KG93 ATPase family protein associated with various cellular activities 1.30894519976e-05 6.35678428034e-06 -2718060576.58 +UniRef50_D8HI57 Hydrolase, haloacid dehalogenase like family 0.000126007549563 4.29262324198e-05 -33540947253.1 +UniRef50_I6SDA8 Bacteriophage protein 3.94961689434e-06 2.0695538306e-06 -759004529.8 +UniRef50_K2NZ38 2.36924944638e-07 2.12520074187e-07 -9852545.68251 +UniRef50_J7Q8S5 4.47380076552e-07 5.75682638892e-07 51797318.8661 +UniRef50_A0YFR7 8.12687326901e-08 3.7419986077e-07 118259891.075 +UniRef50_A6LSK3 Protein kinase 1.3632738744e-06 5.89779386703e-06 1830641365.84 +UniRef50_F4BWI8 Conserved domain protein 3.51065970154e-07 9.91024067913e-07 258358937.234 +UniRef50_R4MJG0 4.13894382772e-07 1.02629832362e-06 247234985.962 +UniRef50_UPI00037EA4BC hypothetical protein, partial 5.34863809114e-08 2.54672631479e-08 -11311661.6744 +UniRef50_D1DK94 ATP dependent DNA helicase RecQ 5.00865973677e-07 3.53859272693e-05 14083527332.9 +UniRef50_Q0FEL8 1.35782170466e-06 1.64346354678e-07 -481820644.376 +UniRef50_A6LV27 Sigma54 specific transcriptional regulator, Fis family 7.00697298445e-06 5.42155538194e-06 -640052541.395 +UniRef50_B1I194 Bifunctional protein GlmU 4.76723660589e-08 6.12497682335e-08 5481363.87135 +UniRef50_F0XY59 Expressed protein 6.14927635066e-07 5.36822208263e-07 -31532119.2617 +UniRef50_K0S277 3.17970254583e-08 9.36923462798e-08 24987900.5566 +UniRef50_A7Z7B8 2 isopropylmalate synthase 7.09490263514e-08 4.26278163124e-06 1692294262.16 +UniRef50_Q75SP7 stereoselective amidase 1.06490205464e-05 7.98871513982e-06 -1073997938.25 +UniRef50_Q9SA96 Arogenate dehydratase prephenate dehydratase 1, chloroplastic 7.77782506218e-07 2.13388504107e-07 -227852784.545 +UniRef50_P43741 DNA polymerase I 2.60186226321e-06 2.67274970556e-05 9739814820.52 +UniRef50_O34635 Probable L serine dehydratase, beta chain 1.07338604181e-07 7.08779098295e-06 2818094285.09 +UniRef50_E8MF10 UDP glucose 4 epimerase 4.89001330252e-05 5.86586604472e-05 3939637270.86 +UniRef50_UPI0003787A5F hypothetical protein 1.17109777891e-07 2.89817468477e-07 69724214.0513 +UniRef50_A7GC03 Anaerobic sulfite reductase, subunit A 4.70348727971e-06 8.74050051263e-06 1629791781.85 +UniRef50_Q83HF6 Ribonuclease PH 1.93677605877e-07 4.09959468119e-07 87315641.864 +UniRef50_U5MQT4 Pentapeptide repeat protein 1.08785587569e-06 5.57075586851e-06 1809801738.47 +UniRef50_UPI00030D3128 glycerol 3 phosphate ABC transporter permease 1.29788743877e-07 9.86742807537e-07 345962871.508 +UniRef50_UPI000366A20C MULTISPECIES 3.90031063163e-07 5.11675185958e-08 -136803371.265 +UniRef50_U9FGT0 5.9290993013e-06 2.03313821883e-05 5814378337.37 +UniRef50_UPI0003B3E71E long chain fatty acid CoA ligase 7.80020776208e-08 4.13067198089e-08 -14814366.2513 +UniRef50_UPI0003C26616 5.649602272e-08 1.00214806997e-06 381771335.93 +UniRef50_D5WFZ7 Type VI secretion protein, EvpB VC_A0108 family 5.49154804951e-06 7.65489975813e-05 28686764348.9 +UniRef50_A3PNW5 Signal transduction histidine kinase 2.21656644866e-05 1.86282065564e-05 -1428115175.91 +UniRef50_Q5P6B9 1.55231174962e-05 5.97716433233e-06 -3853818434.27 +UniRef50_W5XA80 Vacuolar iron transporter 1.13981361739e-07 7.03893036915e-08 -17598648.7685 +UniRef50_UPI00047633B9 transcriptional regulator 1.61950088945e-06 3.52724197317e-07 -511413295.711 +UniRef50_A0A059LC79 2.25871861578e-07 7.0424699888e-06 2751944313.02 +UniRef50_D5W932 Sua5 YciO YrdC YwlC family protein 1.84139506761e-06 3.89866545092e-05 14995997060.2 +UniRef50_UPI00035D05BC hypothetical protein 3.10832502252e-08 4.85420394489e-08 7048327.45304 +UniRef50_P41367 Medium chain specific acyl CoA dehydrogenase, mitochondrial 4.61407805298e-08 4.60819020001e-07 167410693.949 +UniRef50_Q59042 Phosphoribosylformylglycinamidine synthase 1 2.85060398872e-05 1.18716033294e-05 -6715526165.88 +UniRef50_UPI0004283D87 hypothetical protein 2.90935596716e-06 1.67887162047e-06 -496761630.5 +UniRef50_Q897B2 Phosphomethylpyrimidine synthase 6.66468985673e-06 1.00992685535e-05 1386581566.91 +UniRef50_Q83B06 Aminomethyltransferase 5.53014101491e-07 1.21592082216e-07 -174170363.325 +UniRef50_Q8CTQ7 Putative pyridoxine kinase 0.000200966551082 0.000103619900941 -39300037239.7 +UniRef50_UPI00047B361F hypothetical protein 4.6292380628e-07 1.75751300551e-07 -115935064.566 +UniRef50_A7X2E3 Holliday junction resolvase RecU 7.98009649387e-05 1.90918494549e-05 -24509014905.4 +UniRef50_Q46866 Probable transcriptional regulator YgiV 3.44227865087e-05 1.99089913615e-05 -5859397205.22 +UniRef50_R9LSU9 1.55257274073e-07 8.28017246776e-07 271601456.673 +UniRef50_W0F5B5 Phospholipid binding protein 9.66139171706e-08 1.99706191569e-07 41619616.2589 +UniRef50_P70787 Probable tartrate dehydrogenase decarboxylase TtuC 3.37935341214e-05 4.04077058733e-06 -12011555746.2 +UniRef50_Q886D0 Autotransporter, putative 2.83014658313e-06 1.28485192585e-06 -623854416.042 +UniRef50_P32128 2.13658569127e-05 3.7242356339e-06 -7122138997.29 +UniRef50_W4VEN6 TRAP type C4 dicarboxylate transport system 6.16914972404e-06 1.18208389294e-06 -2013339674.19 +UniRef50_UPI0004691530 hypothetical protein 3.83550796902e-08 8.03963861318e-08 16972591.3153 +UniRef50_M1MML4 Transcriptional regulator, TetR family 4.4977616363e-06 2.24998713684e-05 7267672609.58 +UniRef50_A0L5I2 Arginine tRNA ligase 4.13660095565e-08 8.81731557796e-08 18896619.3185 +UniRef50_S5U768 2.49673018419e-07 1.09210383499e-06 340099658.438 +UniRef50_UPI000255F373 hypothetical protein 1.33456158041e-07 1.5762093289e-06 582457159.649 +UniRef50_Q1GRQ0 30S ribosomal protein S2 0.000150328087202 2.044863042e-05 -52433930503.1 +UniRef50_A0A015AL57 AcrB AcrD AcrF family protein 1.52295547092e-06 8.14405451824e-05 32263711665.6 +UniRef50_UPI0004761E95 ligand binding protein SH3 3.96942621906e-06 9.60365693821e-07 -1214794659.36 +UniRef50_U5MYJ1 Multidrug resistance protein MdtA 8.77490138922e-06 2.62253119356e-05 7044944878.2 +UniRef50_W0HG73 Malonyl CoA acyl carrier protein transacylase 1.2796135215e-06 0.000104496691721 41670001084.9 +UniRef50_R9V4R9 Pili assembly chaperone 8.25288777521e-06 2.79491347657e-06 -2203451201.24 +UniRef50_Q08432 Cystathionine beta lyase PatB 2.12687162399e-07 4.09775960387e-07 79567166.2993 +UniRef50_A6LZ60 ROK family protein 5.68930430525e-06 3.96342131848e-05 13703976265.6 +UniRef50_Q9I427 Cytochrome bo ubiquinol oxidase subunit 2 1.78020987535e-05 3.65340253849e-06 -5712002286.02 +UniRef50_C2PBH1 Phage infection protein 1.08454649208e-07 7.53726095451e-08 -13355625.3742 +UniRef50_L0NF86 1.60422811399e-06 3.14194170622e-07 -520802533.435 +UniRef50_UPI00037B865B hypothetical protein 2.1303686448e-06 4.46255309713e-07 -679897219.77 +UniRef50_A0AJ06 Glutamyl tRNA reductase 7.46753239132e-08 1.55338981674e-05 6241077967.92 +UniRef50_Q49X25 Ribosome maturation factor RimM 0.000154063703103 3.5612370028e-05 -47820256723.7 +UniRef50_U6M5K1 2.16993904463e-07 2.5231773796e-06 931034568.968 +UniRef50_J3HRH0 TRAP type C4 dicarboxylate transport system, small permease component 5.46876242616e-07 3.13853608562e-07 -94074096.8769 +UniRef50_O27098 Coenzyme F420 4.66664812955e-05 9.78940275044e-06 -14887729141.3 +UniRef50_UPI0004658FC6 hypothetical protein 2.44991572185e-06 2.36747205981e-07 -893483288.488 +UniRef50_A9W6R8 Chaperone protein DnaJ 4.11259041248e-05 1.26748186121e-05 -11486052355.6 +UniRef50_A6T4V9 H Cl( ) exchange transporter ClcA 1.02667276549e-05 5.53606431265e-06 -1909826843.03 +UniRef50_UPI000372F0D2 hypothetical protein 8.06057609936e-08 9.65594137464e-08 6440685.38964 +UniRef50_R4YES8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 9.48294020264e-06 4.33454011891e-06 -2078472291.78 +UniRef50_Q8YN97 Ribose phosphate pyrophosphokinase 2.90153811629e-07 5.79161763932e-07 116676056.871 +UniRef50_UPI00030B21C2 hypothetical protein 6.84529572883e-08 2.52134056951e-07 74154313.9545 +UniRef50_UPI00016C3D7A elongation factor Tu 2.76528749943e-07 2.10550155247e-07 -26636368.3272 +UniRef50_Q52812 General L amino acid binding periplasmic protein AapJ 0.000110852885914 3.81903345192e-05 -29334763667.9 +UniRef50_A0LXJ9 Phosphoenolpyruvate carboxykinase [ATP] 2.5441323255e-07 2.75792919131e-06 1010700114.15 +UniRef50_UPI0004776C78 PTS mannose transporter subunit IID 7.76124829762e-08 5.3198648522e-07 183436360.502 +UniRef50_UPI000472F6DD hypothetical protein 6.0873802626e-08 1.32735251447e-06 511292997.411 +UniRef50_B2TQB8 Minor teichoic acid biosynthesis protein GgaB 3.01941178804e-06 3.47431417872e-06 183649677.398 +UniRef50_T2DYB6 Major Facilitator Superfamily protein 1.86352833447e-06 5.82552576561e-06 1599506982.13 +UniRef50_A6LZ67 Methyl accepting chemotaxis sensory transducer 2.54036331322e-06 1.19222142727e-05 3787568360.6 +UniRef50_D8U6Y2 8.48919015402e-07 2.65652208605e-07 -235471967.393 +UniRef50_Q3IRZ4 Urease subunit gamma 7.16128937202e-07 2.63218196035e-06 773534118.06 +UniRef50_Q9RYE3 UPF0173 metal dependent hydrolase DR_0006 3.47379744345e-06 0.000301466529734 1.20303322808e+11 +UniRef50_C5WIU5 4.49083595315e-06 2.64578499311e-06 -744869713.889 +UniRef50_K4SQW1 Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA 1.40245005999e-05 4.17037689385e-06 -3978230663.83 +UniRef50_X4RBB0 3 dehydroquinate synthase 4.78961058927e-06 5.70918213422e-05 21115044301.2 +UniRef50_R9JUE8 1.90649489319e-06 1.74801271967e-07 -699105965.157 +UniRef50_I6WWP7 Cell division protein FtsX 2.6397621598e-06 2.58600715958e-05 9374323864.55 +UniRef50_B1IMR9 Integrase 3.17032032568e-06 1.35153126155e-05 4176400334.72 +UniRef50_P43790 3.08910692396e-05 5.66102310275e-06 -10185679232.9 +UniRef50_W4JVP7 4.95605237007e-06 1.03458245741e-06 -1583145525.59 +UniRef50_UPI00038FA156 Urease subunit gamma beta 3.87775750133e-07 2.27513459244e-06 761949925.138 +UniRef50_F8GG26 2.95479126251e-07 2.68787644182e-07 -10775678.8526 +UniRef50_G1Y156 1.42821755973e-06 4.99126825692e-06 1438447290.0 +UniRef50_U5UI30 ATP dependent DNA helicase RecQ 7.45318740602e-05 4.50171194787e-05 -11915468611.3 +UniRef50_B9KMZ8 0.000136561561427 2.93953147563e-05 -43264328858.8 +UniRef50_B9KMZ6 1.32609932222e-05 3.38459997828e-06 -3987221149.54 +UniRef50_W4U8Z0 Serine transporter 4.07286252948e-08 6.37877636163e-07 241076383.53 +UniRef50_P44598 Non canonical purine NTP pyrophosphatase 3.86401335727e-07 4.37484205648e-07 20622781.4444 +UniRef50_D3HF85 0.000101118624827 5.3260213334e-05 -19321028008.5 +UniRef50_F3KAS3 K+ transporting ATPase, subunit B 9.42833683903e-08 2.93593595164e-06 1147210018.86 +UniRef50_Q8EP56 Oligopeptide ABC transporter permease 8.36817739095e-05 1.27012273101e-05 -28655717691.4 +UniRef50_A3U2G6 1.0042237603e-08 1.64945643231e-08 2604883.47586 +UniRef50_UPI000424FB0D 50S ribosomal protein L35 4.20231122862e-06 3.43290664489e-06 -310618072.108 +UniRef50_C7D895 1.42591869837e-07 7.31491949374e-08 -28034860.0144 +UniRef50_M4YX49 Cystathionine beta lyase 3.48376936746e-05 1.78777927056e-05 -6846920142.57 +UniRef50_P50319 Phosphoglycerate kinase, chromosomal 3.9052711004e-05 7.88458094338e-05 16064962152.3 +UniRef50_UPI00034DE802 peptide ABC transporter ATPase 3.85327023475e-07 3.67689252222e-07 -7120584.69463 +UniRef50_Q6GJB5 0.000257041395827 0.000113228913842 -58058863755.0 +UniRef50_B8CX90 Diaminopimelate epimerase 5.32676922932e-08 1.00550755099e-07 19088752.6831 +UniRef50_K0RYW3 5.13549785225e-07 1.12765038728e-07 -161801720.343 +UniRef50_F3C2H3 3.37793083643e-07 7.52222354246e-07 167310182.161 +UniRef50_D4GIS8 RbsC 3.27897282923e-05 1.11112934313e-05 -8751850177.7 +UniRef50_Q6LP67 Putative reductase PBPRA2527 1.06108867978e-05 2.59760542494e-05 6203106652.02 +UniRef50_P0AD32 UPF0721 transmembrane protein YfcA 3.12206719215e-05 1.0314978874e-05 -8439884824.98 +UniRef50_P29683 Light independent protochlorophyllide reductase subunit N 7.83016320161e-07 2.26965696363e-07 -224484460.336 +UniRef50_B9KQA6 CheX protein 1.22071845545e-05 3.50267609694e-06 -3514116880.65 +UniRef50_R9SKF6 HEAT repeat containing protein 4.22454410956e-05 1.75381310806e-05 -9974644245.84 +UniRef50_UPI0004793211 peptidase 2.3256796435e-06 6.77634736726e-07 -665335952.648 +UniRef50_L5ME78 Transforming acidic coiled coil containing protein 3 3.26544973088e-07 2.0560652968e-07 -48824333.6854 +UniRef50_UPI000467A92B hypothetical protein 5.06899637246e-08 1.93208625979e-07 57536532.8526 +UniRef50_A5W1N9 2.94357056807e-06 5.70514544943e-05 21844016719.4 +UniRef50_Q6AAL7 Phosphotransferase system protein, mannitol fructose specific IIA subunit 2.52780796101e-06 5.61083792077e-05 21631134119.8 +UniRef50_B9KL54 Tripartite ATP independent periplasmic transporter, DctQ component 0.000355585645976 6.84016796028e-05 -1.15939691368e+11 +UniRef50_D4HCV9 ABC transporter, ATP binding protein 8.75837561086e-07 2.22064107781e-05 8611414163.27 +UniRef50_U5Q1X8 Urease subunit gamma 1.49533600261e-07 2.24976527674e-07 30457235.5855 +UniRef50_A6M1Q7 D galactose binding periplasmic protein 7.47524204557e-06 7.14294896405e-06 -134150794.704 +UniRef50_Q97KN0 Adenine deaminase 1.92713786756e-07 6.28074097571e-08 -52444798.525 +UniRef50_P80866 Vegetative protein 296 0.000218990119521 0.00055922570925 1.37357282734e+11 +UniRef50_R4GHY1 1.31180576506e-07 3.32127503491e-06 1287880279.72 +UniRef50_A0LZ82 Aldose 1 epimerase 8.49987475304e-06 1.65503735787e-05 3250085166.65 +UniRef50_Q49UM3 8.13379673982e-05 2.71463101389e-05 -21877837042.0 +UniRef50_B8DCV0 Transcriptional regulator, GntR family 6.91422147927e-06 2.91192008868e-05 8964422672.55 +UniRef50_Q2YVT4 N acetylmuramoyl L alanine amidase sle1 0.000209698096105 3.09222449035e-05 -72174004956.2 +UniRef50_D7C1Q5 8.68667197477e-07 1.1754329141e-06 123845084.239 +UniRef50_A0A024R8N7 HCG1776376, isoform CRA_a 1.54666100132e-06 6.69067397644e-07 -354295307.089 +UniRef50_Q5HNA1 ABC transporter, permease protein 8.1955424068e-05 2.8084783298e-05 -21748238745.9 +UniRef50_F0KFX3 3.75512750092e-06 7.36210724278e-05 28205739318.5 +UniRef50_UPI00035DDF13 hypothetical protein, partial 2.88087794044e-07 9.35092631292e-07 261203792.439 +UniRef50_UPI0002D43593 multidrug transporter 6.91378482183e-07 1.2614497054e-06 230144748.373 +UniRef50_UPI0003EA94D2 PREDICTED 5.66792409427e-08 3.70790415883e-07 126810535.901 +UniRef50_F5X5K2 Predicted membrane protein 6.81093680208e-05 1.43457585611e-05 -21705028892.6 +UniRef50_X0XNE1 Marine sediment metagenome DNA, contig 3.27936002374e-06 2.00716054885e-06 -513602539.656 +UniRef50_W4HQ00 1.22902387329e-06 5.00876399004e-07 -293962070.744 +UniRef50_R9YPL9 Host cell surface exposed lipofamily protein 8.5495957931e-05 6.46450341434e-05 -8417773802.66 +UniRef50_Q9ZUC2 Beta carbonic anhydrase 3 3.12571044249e-07 1.13359499384e-07 -80424145.2626 +UniRef50_E1V7W0 N alpha acetyl L 2,4 diaminobutyric acid deacetylase 2.89367419874e-06 1.85461818189e-06 -419479664.654 +UniRef50_R4Z8G3 Glycogen debranching protein 7.18522976828e-05 2.02078940391e-05 -20849479499.1 +UniRef50_Q3V7G7 Alanine racemase 3.28248685954e-06 3.26173694451e-05 11842852079.3 +UniRef50_P75860 1.70509440298e-05 4.28941170745e-05 10433206089.5 +UniRef50_UPI00039BF8F5 hypothetical protein 2.54694360043e-06 1.38440663452e-06 -469330439.071 +UniRef50_A6LYW2 5.98575634063e-06 9.52682763956e-06 1429573937.21 +UniRef50_J0H573 2.46951809358e-05 1.10735193613e-05 -5499231934.21 +UniRef50_P08190 Protein FimG 9.82874166741e-05 3.52266447552e-06 -38257693356.9 +UniRef50_A7MNJ8 6.86689484448e-06 2.30016182029e-06 -1843646161.98 +UniRef50_D7B2I8 8.82414327827e-07 1.10316269632e-06 89118825.2477 +UniRef50_A6V7D9 4.49438717542e-06 6.21719379354e-06 695518172.95 +UniRef50_UPI0002558E19 chemotaxis protein CheY 1.41432047155e-07 3.79743458309e-07 96209241.0927 +UniRef50_A6LYX0 Phosphoglycerate mutase 3.68878816464e-06 1.06205359972e-05 2798431662.12 +UniRef50_K7RNA7 SAM dependent methyltransferase related to tRNA 1.51398123869e-06 4.30453211495e-05 16766711568.8 +UniRef50_UPI000350FEA2 PREDICTED 9.0302573244e-07 3.10005473249e-07 -239409555.812 +UniRef50_G0A8S2 1.21769673823e-06 1.91143498515e-06 280070643.407 +UniRef50_M9R9T3 2.65034441592e-05 4.22639471078e-06 -8993518232.46 +UniRef50_UPI000377BD8B hypothetical protein, partial 9.17848841115e-07 1.24916073688e-06 133754677.974 +UniRef50_D7GV59 4.49119619641e-07 6.68535487723e-07 88580878.4802 +UniRef50_A1AYV3 Tryptophan synthase alpha chain 2.16461123079e-07 1.09213120305e-07 -43297334.8009 +UniRef50_R5A036 Transcriptional regulator, MerR family 8.58152773414e-05 3.69088433617e-05 -19744127547.0 +UniRef50_UPI00046400FC branched chain amino acid ABC transporter substrate binding protein 1.21369417063e-08 8.2736786377e-08 28502023.6511 +UniRef50_I1ZP03 8.19017497212e-05 5.96474873702e-05 -8984318801.61 +UniRef50_J9HV03 Sigma 70 factor, ECF subfamily 2.16945970609e-06 1.32774966207e-05 4484450813.37 +UniRef50_P55373 Putative transposase y4bF 0.000299957711967 9.34349055752e-05 -83375791260.3 +UniRef50_P0AEJ7 Ethanolamine ammonia lyase heavy chain 2.75860833969e-05 1.53511879688e-05 -4939377423.37 +UniRef50_A6LTI9 Transcriptional regulator, XRE family 7.75245960967e-06 3.77000049191e-06 -1607767616.11 +UniRef50_P0A9H8 Cyclopropane fatty acyl phospholipid synthase 1.87372168646e-05 3.64039045076e-06 -6094774082.14 +UniRef50_UPI000416C7B3 hypothetical protein 8.67042972356e-07 1.94449950177e-07 -271534056.698 +UniRef50_K2ADQ8 2.06847041854e-06 8.15881425901e-07 -505685547.324 +UniRef50_C5N2G7 3.7690859581e-05 8.01764810481e-06 -11979439604.2 +UniRef50_B2HNE5 Bifunctional protein PyrR 9.31785572333e-08 8.04670643615e-07 287238086.262 +UniRef50_U3NTD9 IS1272 like transposase, degenerate 0.000193920707337 1.98432095911e-05 -70277222011.2 +UniRef50_B9DM46 tRNA pseudouridine synthase A 0.000216339481163 7.86699973341e-05 -55578860016.3 +UniRef50_I6G9X5 Na H(+) antiporter NhaB 5.53101365644e-06 1.71862292072e-06 -1539108923.31 +UniRef50_Q6YWQ5 5.74693819727e-07 5.19618836113e-06 1865754058.48 +UniRef50_Q5HJG9 0.000156672149103 7.23312524878e-06 -60330367752.9 +UniRef50_I6SJA3 1.69432849153e-05 6.27243021205e-06 -4307954989.83 +UniRef50_Q12PW9 7.6427788121e-08 1.08705535655e-05 4357721035.15 +UniRef50_Q2NFV5 3.4815703794e-05 8.05936444134e-06 -10801862533.9 +UniRef50_Q8YH17 Methionine tRNA ligase 1.1485699885e-07 2.29990702511e-07 46480889.0174 +UniRef50_A6LUK3 Glutathione biosynthesis bifunctional protein GshAB 3.78442815358e-06 6.65166762273e-06 1157539758.68 +UniRef50_UPI00041F4DD3 cytochrome B562 1.21740290412e-06 2.858500981e-07 -376079299.229 +UniRef50_P0AB92 Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive 3.51257010042e-05 1.03667722213e-05 -9995483375.88 +UniRef50_M5D5S2 Capsule assembly, only in sialic acid capsules 2.91285864515e-07 2.4857769314e-05 9917790833.22 +UniRef50_P26389 Colanic acid biosynthesis protein WcaM 2.87000931399e-05 2.75861932129e-06 -10472891318.3 +UniRef50_T1VWC8 ABC transporter ATP binding protein permease 1.52610203936e-06 7.40103628683e-05 29262785578.5 +UniRef50_Q5FLS6 Alcohol acetaldehyde dehydrogenase 8.44332053398e-05 1.75415449414e-05 -27004984155.8 +UniRef50_UPI000191169A hypothetical protein 2.11546762959e-08 1.11421844868e-06 441283258.311 +UniRef50_Q89IP8 Serine acetyltransferase 0.000127054222658 4.822155231e-05 -31825716405.1 +UniRef50_G7M4A2 1.780594287e-06 7.79431600775e-06 2427813255.33 +UniRef50_UPI000395B0F7 streptomycin 3 kinase 3.36731791826e-07 5.15851569864e-07 72312852.4408 +UniRef50_F9UF35 4.12324945742e-08 9.03139535901e-08 19814787.302 +UniRef50_Q5HMZ8 ABC transporter, ATP binding protein 0.000177988087783 4.61640262814e-05 -53218991291.5 +UniRef50_Q71Y59 Tyrosine recombinase XerD 9.16725544038e-05 2.33120304932e-05 -27597982380.7 +UniRef50_P71238 Putative colanic acid polymerase 4.33712665536e-05 1.6269188484e-05 -10941441496.6 +UniRef50_J1A645 0.000880639364827 0.000365636711504 -2.0791289094e+11 +UniRef50_Q6F9X3 DNA polymerase III, delta prime subunit 4.71806134049e-06 3.62265843199e-05 12720377379.8 +UniRef50_UPI00036E0FA5 hypothetical protein, partial 1.95260974406e-08 6.64520368355e-08 18944577.5798 +UniRef50_R5NMQ5 3.83884056462e-06 2.71684180617e-05 9418436721.69 +UniRef50_A5UNF2 3.45024546518e-05 2.39445977193e-06 -12962391542.4 +UniRef50_A5UNF1 4.68184967718e-05 8.53593791268e-06 -15455138791.2 +UniRef50_UPI000478864C cell division protein FtsW 6.15300540904e-08 1.18672934863e-06 454256762.954 +UniRef50_UPI00047B937D DEAD DEAH box helicase 4.73477176522e-09 1.08267066625e-06 435175948.362 +UniRef50_A0A059LEJ0 8.36997758017e-07 1.34785410465e-06 206238976.048 +UniRef50_N6VGA3 Putative transcriptional regulator 1.44209633311e-06 3.21620963218e-07 -452349656.604 +UniRef50_P25885 6.56613469629e-05 9.9806225267e-05 13784706376.1 +UniRef50_UPI0003B5626D sodium 1.23599759508e-07 4.32833813136e-05 17424133443.5 +UniRef50_Q3A9Q7 DNA directed RNA polymerase subunit beta 8.03165151481e-08 3.53833204156e-08 -18140082.1058 +UniRef50_UPI00036DB2E6 hypothetical protein 5.99994622818e-07 6.130590221e-08 -217475246.963 +UniRef50_UPI000362123D hypothetical protein 1.71532437202e-06 9.92077370817e-06 3312640589.19 +UniRef50_S3YIQ8 1.21062467503e-07 3.27276887326e-06 1272382551.79 +UniRef50_UPI00046C8BA3 hypothetical protein 1.75510078284e-07 2.26466570318e-07 20571761.1406 +UniRef50_W1EYJ0 Ferredoxin like protein YgcO 1.98724496172e-06 4.69151757403e-06 1091748038.75 +UniRef50_P46448 Formate dehydrogenase major subunit 2.23558997434e-05 9.27536097449e-06 -5280774017.27 +UniRef50_UPI000262829F rhodanese related sulfurtransferase 3.317868567e-07 1.27639102127e-07 -82416953.6958 +UniRef50_UPI00047C1110 hypothetical protein 4.13394102706e-08 3.52305047408e-07 125540643.69 +UniRef50_A4VSJ2 ABC type Mn2+ Zn2+ transport system, permease component 4.42380914091e-05 0.000101847633373 23257679039.4 +UniRef50_D3QEN2 0.000204616867683 9.95614005708e-05 -42412181248.7 +UniRef50_UPI000377656B hypothetical protein 1.53477556131e-08 1.2271856389e-07 43346912.8894 +UniRef50_S5YYN3 Protein L isoaspartate O methyltransferase 7.47174736479e-05 3.35435460619e-05 -16622419827.4 +UniRef50_Q6F7L8 Glycine tRNA ligase beta subunit 6.78118542838e-07 6.94957406664e-05 27782518538.5 +UniRef50_Q6N372 1.23989885729e-06 3.64342573535e-07 -353472816.036 +UniRef50_V8HFR8 2.78930533612e-07 9.75671986588e-08 -73218603.8989 +UniRef50_P35818 Type II secretion system protein D 3.67135319987e-06 3.51921638834e-06 -61419497.7433 +UniRef50_P00272 Rubredoxin 2 1.75652976076e-06 3.07637264446e-07 -584935680.671 +UniRef50_W7WXT6 4.84648755024e-06 1.50973160647e-05 4138385263.12 +UniRef50_UPI0004680DA6 hypothetical protein, partial 8.65185667228e-09 1.17740603327e-08 1260471.93146 +UniRef50_UPI00046D684B hypothetical protein 1.75662583001e-07 3.795212583e-07 82300248.8455 +UniRef50_A8MLB2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.80317358274e-07 5.32593099871e-07 142218039.792 +UniRef50_UPI0004712276 hypothetical protein 1.45148225617e-06 1.18919555928e-07 -537971914.47 +UniRef50_Q54F10 NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 1.06659074828e-06 3.15541440277e-07 -303207822.052 +UniRef50_U6BPG2 Sulfide 9.04583198461e-06 1.51737212916e-06 -3039331628.24 +UniRef50_A6QIL0 Phage transcriptional regulator 1.86672001569e-05 7.84026650967e-06 -4370965974.79 +UniRef50_B2V042 Acetobutylicum phosphotransbutyrylase 7.14665915355e-06 9.99317087393e-06 1149171712.14 +UniRef50_B0VU19 1.80041012167e-06 3.31442310062e-05 12653885123.0 +UniRef50_C7NAK8 PP loop domain protein 1.2506929996e-05 1.08102916097e-05 -684953736.644 +UniRef50_UPI00046FF5CF glycerol 3 phosphate ABC transporter substrate binding protein 1.42205785471e-07 5.82943828806e-08 -33876062.9344 +UniRef50_G7M5U8 Type III restriction protein res subunit 3.90435426871e-06 2.84407874193e-05 9905659158.79 +UniRef50_UPI0004770856 hypothetical protein 7.66754084355e-08 2.68481280329e-07 77434384.2063 +UniRef50_Q88FX7 HTH type transcriptional repressor NicS 1.06596061616e-06 1.06134180544e-06 -1864670.56685 +UniRef50_UPI00038194DC 30S ribosomal protein S5 7.50639924337e-08 1.26197190849e-07 20643099.6752 +UniRef50_UPI0003B76623 coproporphyrinogen III oxidase 4.99071300156e-07 1.15261886601e-07 -154948570.123 +UniRef50_Q56232 Aspartate aminotransferase 5.10735844043e-06 0.000341239739702 1.35700767124e+11 +UniRef50_R9SJX9 ABC transporter ATP binding protein 3.92107418223e-05 1.86180023549e-05 -8313541624.32 +UniRef50_M1MQF5 Response regulator receiver protein 3.40673678683e-06 1.39860928457e-05 4271015864.28 +UniRef50_V5SVS2 Membrane protein 5.38024202165e-06 3.41406595601e-06 -793769405.392 +UniRef50_Q9RXI1 7.70903993561e-07 0.000265189828195 1.06749164485e+11 +UniRef50_Q9RXI0 2.97233062088e-06 0.000412710739285 1.65416423633e+11 +UniRef50_Q9RXI3 1.48618834644e-06 0.000193078869303 77348316408.9 +UniRef50_P0AEW2 Hydrogenase 4 component E 2.11387184902e-05 2.73441393692e-06 -7430043594.38 +UniRef50_UPI0004630DB7 hypothetical protein 5.85645579847e-08 1.31434214566e-07 29418374.5731 +UniRef50_UPI000361E4A2 hypothetical protein 1.27906103966e-07 7.49600025538e-08 -21374990.8618 +UniRef50_Q4ZY83 Two component response regulator CbrB 6.32095262601e-06 8.26584728306e-06 785177839.592 +UniRef50_A6X6K2 Extracellular solute binding protein family 1 1.49781440385e-07 1.55204975913e-07 2189547.84692 +UniRef50_I7ER35 Signal transduction protein, FIST domain protein 1.18528813216e-05 1.55021892496e-06 -4159311237.39 +UniRef50_P00934 Threonine synthase 4.35048689627e-05 6.92603560001e-06 -14767323901.3 +UniRef50_UPI00040DCB98 hypothetical protein 2.20946403709e-07 6.54914422332e-08 -62759075.5948 +UniRef50_UPI00046815CA branched chain amino acid ABC transporter permease 1.12889454714e-07 1.39904750132e-07 10906406.2752 +UniRef50_UPI0003C1A0D8 PREDICTED 1.55662833724e-06 4.60360207523e-07 -442576896.691 +UniRef50_A6LZT6 Transcriptional regulator, XRE family 1.54707372483e-06 1.47805601357e-05 5342520857.22 +UniRef50_C1CVB0 1.31681158902e-05 0.000830196173726 3.2984425301e+11 +UniRef50_UPI00047588DA hypothetical protein, partial 1.14392138376e-06 4.60357834771e-07 -275962992.995 +UniRef50_Q43844 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.59224934122e-07 5.11133207216e-07 61327233.9722 +UniRef50_Q56224 NADH quinone oxidoreductase subunit 9 5.47820906211e-08 5.61375581617e-07 204518008.916 +UniRef50_Q4RS53 Chromosome 13 SCAF15000, whole genome shotgun sequence 6.69003106456e-08 2.23710464737e-07 63306183.4835 +UniRef50_D6SFZ4 Tetratricopeptide repeat protein 0.000212894254182 4.17217374569e-05 -69104445524.9 +UniRef50_UPI0002554EAB ribose ABC transporter permease 1.2555511544e-06 4.52013999995e-07 -324397809.743 +UniRef50_Q43931 Muconate cycloisomerase 1 1.02950724233e-06 0.00010368195223 41442051728.8 +UniRef50_D2ZXF5 8.32283723821e-08 8.60760158686e-06 3441394072.51 +UniRef50_B7V7C6 Fimbrial subunit CupB6 5.16368653549e-06 2.25146153897e-06 -1175700968.11 +UniRef50_P77295 Probable HTH type transcriptional regulator YgaV 3.81298978638e-06 5.94597393014e-06 861111873.495 +UniRef50_E3EZG9 2.08730323462e-07 2.77114751335e-07 27607632.7036 +UniRef50_UPI00046E86F5 cell division protein FtsY 4.44790215621e-08 5.50714115337e-08 4276277.81478 +UniRef50_UPI0003B5A40E hypothetical protein 8.23966199431e-08 8.62091613637e-08 1539169.75664 +UniRef50_Q4QLL8 Cytochrome c 552 2.18347187021e-05 1.20498270762e-05 -3950280823.5 +UniRef50_UPI00046632A0 long chain fatty acid CoA ligase 9.46841611191e-08 3.27533901489e-07 94004297.575 +UniRef50_W0A5F8 Transposase 2.98796429823e-08 9.58315507976e-08 26625594.506 +UniRef50_I0C313 Hydrolase 0.000173053302443 7.9398166645e-05 -37809727599.4 +UniRef50_UPI0004631CAE hypothetical protein 5.27090708228e-08 8.19935238432e-08 11822493.045 +UniRef50_Q5HRP8 Cell division protein DivIC, putative 2.95581924139e-05 5.33704888912e-06 -9778372867.82 +UniRef50_B6VMG8 1.98030914159e-07 8.14106868882e-07 248717423.024 +UniRef50_UPI00047BC877 phosphoribosylaminoimidazole succinocarboxamide synthase 3.968487207e-07 1.92206285762e-07 -82616662.2295 +UniRef50_UPI0003B45BBB biotin synthase 5.45801998651e-08 8.17450971758e-07 307980292.09 +UniRef50_L1K758 1.16301362774e-05 3.90022291365e-06 -3120660881.65 +UniRef50_UPI0001BF7A81 hypothetical protein SMAC_09967, partial 4.85903190355e-07 8.48538313153e-07 146400249.107 +UniRef50_UPI000288416E winged helix family two component transcriptional regulator 1.10488407764e-06 1.73936633382e-07 -375834907.257 +UniRef50_UPI0002DF8C9A hypothetical protein 6.0836202983e-07 8.25663329766e-07 87727201.371 +UniRef50_Q30Q90 4.84080713473e-06 3.05942859384e-05 10396995423.8 +UniRef50_Q56198 Glucokinase 0.00024352163825 3.90251198507e-05 -82557753932.2 +UniRef50_UPI00047A54E3 hypothetical protein 2.15048363986e-07 9.90193915469e-07 312935771.239 +UniRef50_Q3IYC6 Phosphoglycolate phosphatase 2.70444877355e-06 9.1484620082e-06 2601527219.76 +UniRef50_V4R363 Tyrosyl tRNA synthetase 5.13564343198e-07 6.80541548978e-07 67410747.0141 +UniRef50_D3V593 2.0669008805e-06 2.83621214504e-06 310580398.006 +UniRef50_B8DKL2 Appr 1 p processing domain protein 1.17890619663e-07 9.91570128406e-07 352715138.933 +UniRef50_UPI0002F80699 hypothetical protein 1.2837390593e-07 4.79105544061e-08 -32484042.4066 +UniRef50_W4TMK3 Biotin synthase 1.1131705313e-05 8.17163828026e-06 -1195015385.22 +UniRef50_H2JJL8 Anaerobic ribonucleoside triphosphate reductase activating protein 6.92572461665e-06 2.58627886643e-05 7645125139.92 +UniRef50_F0DFZ2 1.85850148934e-07 2.96531180556e-07 44683290.6748 +UniRef50_S4YYU9 Enoyl CoA hydratase 4.87463689438e-06 0.000103449588408 39795917576.7 +UniRef50_B0RDR3 Serine hydroxymethyltransferase 1.26714033796e-06 1.60056343506e-06 134606995.861 +UniRef50_A0A011QYI3 Leucine responsive regulatory protein 5.90351127073e-06 2.14254722414e-06 -1518347337.83 +UniRef50_F0Y7D5 Expressed protein 3.74097293279e-07 2.22510081729e-06 747272837.01 +UniRef50_B7NFU7 Bifunctional purine biosynthesis protein PurH 6.21224802591e-05 0.000119636472151 23219104302.8 +UniRef50_UPI0002B4A5BA 3.55858144288e-08 1.16272400062e-07 32574164.7559 +UniRef50_UPI0003593C55 PREDICTED 2.63077113763e-06 6.29258832946e-07 -808035078.717 +UniRef50_W5XHW0 Translation initiation factor IF 3 1.3192011305e-06 3.78205675359e-06 994285037.679 +UniRef50_M1LW12 Sensor histidine kinase AruS 4.58017796203e-06 1.48956556954e-05 4164484946.12 +UniRef50_F8EJQ6 3 oxoacyl reductase 1.73158710486e-06 7.39270232583e-05 29146183512.8 +UniRef50_UPI000462EF2C hypothetical protein 6.96201178551e-07 8.68564900473e-07 69585349.6806 +UniRef50_F2JY03 6.95153070535e-05 2.23720146784e-05 -19032325645.1 +UniRef50_D8JE80 Tyrosine recombinase XerC 1.45935304967e-06 3.33522998216e-05 12875573982.3 +UniRef50_UPI00037E2E56 polyphosphate kinase 1.0098537128e-07 5.53647801007e-06 2194375079.27 +UniRef50_P18956 Gamma glutamyltranspeptidase 1.69593245734e-05 1.14273199784e-05 -2233338140.33 +UniRef50_Q213M9 C4 dicarboxylate transport protein 4.17381924491e-05 1.92652873253e-05 -9072587572.04 +UniRef50_UPI000050FB19 ABC transporter related protein 6.25418431682e-07 9.05268998511e-08 -215942275.257 +UniRef50_UPI00047A7902 mechanosensitive ion channel protein MscL 3.5849646117e-07 6.41013825507e-07 114055726.861 +UniRef50_UPI0003B393FA RNA pseudouridine synthase 5.4139451358e-07 4.43021179824e-07 -39714522.0139 +UniRef50_UPI00036D2E60 hypothetical protein 1.24252444931e-06 1.10249772662e-07 -457113181.536 +UniRef50_H6SJP6 2.29604561717e-08 3.93410373036e-08 6613041.61528 +UniRef50_P37677 L xylulose 3 keto L gulonate kinase 2.21679626234e-05 6.91400347411e-06 -6158210495.7 +UniRef50_Q0WM29 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 5.9524269573e-06 4.99054988108e-06 -388321579.229 +UniRef50_UPI0003C767D3 hypothetical protein 2.7080872695e-07 1.7330243097e-06 590314374.159 +UniRef50_Q1IPE7 NADH quinone oxidoreductase subunit B 1 1.88901547525e-07 2.05587040479e-06 753718237.964 +UniRef50_UPI0003317A65 PREDICTED 1.381659917e-06 4.17124883106e-07 -389394629.359 +UniRef50_B3PI58 Undecaprenyl diphosphatase 1.63413847988e-06 2.9298532658e-05 11168455410.0 +UniRef50_UPI00036B3249 hypothetical protein 2.4988564816e-06 1.14564381389e-06 -546308559.741 +UniRef50_UPI0003A8BB10 zinc transporter ZitB 5.27299305854e-08 3.43458129047e-07 117370541.355 +UniRef50_UPI0004722EB3 hypothetical protein 1.62121452756e-07 4.07005194457e-07 98862571.5861 +UniRef50_Q9RVR0 3.19903380388e-06 7.59033111478e-05 29351608945.5 +UniRef50_B9KV19 8.63717370006e-06 9.49745525536e-06 347306220.716 +UniRef50_UPI00035D3125 hypothetical protein 1.62332179968e-07 1.72107308788e-06 629282832.425 +UniRef50_F3L538 Putative exported protein 3.4193914385e-07 2.69215068335e-07 -29359601.7102 +UniRef50_C8RX76 Flagellar protein FlgJ, putative 2.44553912208e-06 1.25315924203e-06 -481378389.723 +UniRef50_Q8CNW5 Septation ring formation regulator EzrA 0.000166278275511 4.70385102223e-05 -48138556483.6 +UniRef50_Q89V93 Bll1154 protein 2.90941049928e-05 2.26296325824e-06 -10832061173.4 +UniRef50_P44051 Short chain fatty acids transporter 1.10968494846e-05 9.53764636463e-06 -629469433.106 +UniRef50_UPI0004773F07 ATPase P 4.0735915493e-08 6.51819254606e-08 9869154.2102 +UniRef50_A9S9Z8 7.18878781716e-08 3.33509712628e-07 105619945.031 +UniRef50_UPI0003494CA9 hypothetical protein 1.74357057825e-07 2.79859692705e-07 42592708.364 +UniRef50_A5UMD9 2.7838263795e-05 6.47208543853e-05 14889954421.6 +UniRef50_J7RHN4 Aconitate hydratase 4.70289853191e-07 3.35293530358e-05 13346349487.1 +UniRef50_UPI00046E29A5 dihydroxy acid dehydratase, partial 1.23234505389e-05 1.57053056886e-06 -4341085745.06 +UniRef50_M5AGE8 1.10802681553e-07 1.7698987033e-07 26720580.3174 +UniRef50_B3DS65 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 6.49275752096e-08 3.64335107987e-08 -11503403.4642 +UniRef50_A4JK78 Phospholipase C 2.19570434892e-07 4.22780073683e-07 82038224.8426 +UniRef50_Q9RX49 Sensory box GGDEF family protein 4.71857486102e-07 8.8516869521e-05 35544851792.3 +UniRef50_Q0F2B8 Stringent starvation protein A 1.09269686454e-07 3.7497929576e-07 107270229.9 +UniRef50_UPI0003B6D1EF LysR family transcriptional regulator 1.19850650505e-07 2.0873804794e-07 35884933.1155 +UniRef50_A7FKP6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 7.17603803914e-08 1.44166319382e-07 29231166.0913 +UniRef50_UPI0002628ACD parB like partition proteins 2.40489727307e-07 5.11234315636e-06 1966827013.67 +UniRef50_UPI0003601EED hypothetical protein, partial 3.79018403745e-06 5.5520098629e-06 711270705.768 +UniRef50_A3M7V2 23 dihydro 2,3 dihydroxybenzoate dehydrogenase 1.55557412985e-06 6.07131945209e-05 23882657297.5 +UniRef50_UPI000372E28D gamma aminobutyrate transporter, partial 4.0625742168e-07 9.72517135413e-07 228605995.222 +UniRef50_I0JLF4 Lactoylglutathione lyase 2.76714417874e-05 0.000116519516335 35869057983.3 +UniRef50_B5ZZ54 Hydrolase of the alpha beta superfamily like protein 1.60959866733e-05 2.53490734069e-06 -5474774139.73 +UniRef50_B7UVW2 1.15431596661e-05 4.13957071086e-06 -2988919713.48 +UniRef50_UPI00036095F7 hypothetical protein 0.000189776969503 5.2050143498e-05 -55602009756.4 +UniRef50_UPI00046CE9BB hypothetical protein 1.22170699499e-06 2.09197193767e-06 351336636.712 +UniRef50_F0KJR3 Membrane alanyl aminopeptidase 4.93445737068e-07 5.94282895461e-05 23792719657.6 +UniRef50_A2S1L9 1.01116894552e-06 8.84926248375e-07 -50965726.0095 +UniRef50_A1VT74 Transposase, IS4 family 1.0922193153e-05 6.26074002833e-06 -1881885828.89 +UniRef50_UPI0003C150A0 PREDICTED 9.0702000874e-08 1.32328999553e-07 16805330.1874 +UniRef50_UPI00041D4C0B hypothetical protein 1.50740037596e-06 2.14478331209e-06 257319312.884 +UniRef50_A3PJ68 SmpA OmlA domain protein 0.000134579703028 4.19037778553e-05 -37414408253.7 +UniRef50_Q99ZQ6 Pseudouridine synthase 3.11925984556e-05 3.32065650863e-05 813063042.963 +UniRef50_Q5HQT9 Sodium transport family protein 0.000172259539806 6.27233786729e-05 -44221092409.2 +UniRef50_G7M9D2 Pseudouridine synthase, RluA family 1.27385598041e-06 3.96186713523e-06 1085183088.81 +UniRef50_P13036 Fe dicitrate transport protein FecA 5.27385381521e-05 1.51267925277e-05 -15184323256.6 +UniRef50_UPI000366DA96 hypothetical protein 1.64334603922e-08 2.06483535067e-07 76725547.323 +UniRef50_UPI000475FEFF FAD binding protein 1.57298077253e-07 1.99718969537e-05 7999396718.87 +UniRef50_B4FJG3 4.46867420191e-07 1.43220448845e-06 397792665.902 +UniRef50_R7PWX3 9.54213507134e-08 7.58759236532e-09 -35459566.0865 +UniRef50_P39522 Dihydroxy acid dehydratase, mitochondrial 6.36373341395e-08 6.90635110603e-08 2190614.20961 +UniRef50_A2SLT0 tRNA specific 2 thiouridylase MnmA 5.67432646804e-08 1.05186865962e-07 19557276.3072 +UniRef50_X2NG16 Lysine decarboxylase LdcC 3.98208653109e-05 1.19116233895e-05 -11267303448.6 +UniRef50_Q9RY06 Valine tRNA ligase 9.10160645133e-07 0.000558427482078 2.25076584169e+11 +UniRef50_Q0RRW7 NADH quinone oxidoreductase subunit B 2.00544750015e-07 1.52527191493e-06 534808612.705 +UniRef50_P37813 ATP synthase subunit a 0.000198051196505 2.80035257875e-05 -68650331388.0 +UniRef50_U3T5D5 5.56985325125e-06 0.000159011099792 61946114164.4 +UniRef50_S9XSX4 2.22283320959e-07 1.00222821775e-05 3956379797.89 +UniRef50_J7D104 4.0751905466e-05 5.00503771397e-06 -14431449174.9 +UniRef50_B0K6Q8 1.52129137978e-06 2.01478912314e-06 199231094.893 +UniRef50_UPI00020009E9 hypothetical protein, partial 1.79880619506e-06 3.51812395118e-05 13476897978.5 +UniRef50_A0A058ZAA4 6.36876267111e-08 1.95527719833e-09 -24922107.0394 +UniRef50_D2NQQ7 ATP dependent zinc metalloprotease FtsH 8.87127455704e-06 6.93694989277e-05 24423875575.1 +UniRef50_UPI00035F9DDC hypothetical protein 1.05874954465e-07 1.98829983183e-07 37527085.7799 +UniRef50_B2E956 NADP dependent isocitrate dehydrogenase protein 2.17423631052e-06 1.1901517842e-06 -397286999.351 +UniRef50_UPI000349B827 hypothetical protein 4.48040620258e-08 1.05718895839e-07 24592065.9195 +UniRef50_I9CFE3 Transposase IS66 2.53042661254e-07 3.46215107465e-07 37614859.8899 +UniRef50_C6SRZ7 4.56627355165e-05 9.72119515738e-06 -14510040895.3 +UniRef50_G0LSH0 Pathogenicity island protein 6.13422155185e-07 5.53718822241e-06 1987784782.74 +UniRef50_X2HYB2 Sodium 2.20272022714e-06 2.21249711021e-05 8042857151.75 +UniRef50_Q7MNQ6 UPF0246 protein VV0659 8.94087280541e-06 4.28649462857e-05 13695564759.2 +UniRef50_A5WGK5 Aspartate carbamoyltransferase 1.41432264821e-05 6.67240784141e-05 21227535164.6 +UniRef50_Q1GID4 Extracellular solute binding protein family 1 2.53537525793e-07 9.52938635971e-08 -63884908.2966 +UniRef50_A6LVW3 RelA SpoT domain protein 2.06276496643e-06 2.19321560862e-05 8021517019.91 +UniRef50_UPI000471FC6E glyoxalase 6.59220560604e-07 1.80390790446e-06 462124327.61 +UniRef50_Q8XKQ2 Galactose methyl galactoside import ATP binding protein MglA 2.75979847426e-05 1.14593119087e-05 -6515380266.83 +UniRef50_UPI00016C49DE phosphoribosylanthranilate isomerase 9.07174811214e-08 1.31269812347e-07 16371473.7488 +UniRef50_B0TGQ8 Dihydroorotate dehydrogenase B ), catalytic subunit 5.99704070456e-08 1.99560677332e-05 8032298643.16 +UniRef50_B9KKA8 6.71606810779e-08 1.95288060882e-06 761288275.214 +UniRef50_UPI000472AD58 tryptophan synthase alpha chain 1.21211111217e-07 7.77844699951e-08 -17531867.9661 +UniRef50_UPI00046ADEBA ABC transporter ATP binding protein 5.27740504682e-08 4.72610002336e-08 -2225686.03244 +UniRef50_A7IEL6 Binding protein dependent transport systems inner membrane component 4.28338800051e-06 3.86680080175e-05 13881493047.6 +UniRef50_E8SEV3 Molybdopterin biosynthesis protein MoeB 0.000300974810281 7.21240646572e-05 -92389854322.9 +UniRef50_UPI0002B45AB9 3.46835315563e-07 1.28551612318e-07 -88123809.6423 +UniRef50_Q5WE04 L lactate dehydrogenase 0.000260637510171 0.000120648692818 -56515203421.4 +UniRef50_A6LYL8 Integral membrane sensor signal transduction histidine kinase 5.37243471011e-06 2.82380541781e-05 9231131171.94 +UniRef50_K8B662 1.30734681622e-06 1.50671788373e-06 80488546.5119 +UniRef50_UPI0001FFDAEB transcriptional regulator 1.71316082874e-06 9.86803785002e-08 -651785569.665 +UniRef50_K0FMM2 BclA protein 2.34817760961e-07 5.24767756059e-07 117056371.108 +UniRef50_B2VIE6 UPF0294 protein ETA_26410 3.01966390065e-05 4.53966749505e-06 -10358034245.6 +UniRef50_Q0H8X2 Probable intron encoded endonuclease bI1 2.92458690724e-06 1.11821289617e-06 -729255354.971 +UniRef50_W0EIH2 UvrABC system protein A 1.09550659468e-07 8.55301548604e-07 301068785.337 +UniRef50_D2NRU1 Archaeal DNA polymerase II, large subunit 2.80803766649e-08 7.16939560287e-07 278100905.681 +UniRef50_UPI0001E7AE98 putative ribonucleotide reductase large subunit 2.68750178491e-08 1.41807699165e-06 561645308.791 +UniRef50_UPI0003614ECF hypothetical protein 6.52380861244e-08 1.1080691072e-07 18396693.6816 +UniRef50_Q2CJ82 Short chain dehydrogenase reductase SDR 1.03388304735e-07 1.39999671359e-07 14780457.9781 +UniRef50_P0A936 Membrane bound lytic murein transglycosylase A 4.26115866906e-05 1.30205066746e-05 -11946282125.8 +UniRef50_UPI000443285E PREDICTED 5.01741881218e-08 6.89723717774e-07 258193993.276 +UniRef50_A5IW55 Transcriptional regulator, MarR family 0.000106057167506 6.46839995983e-05 -16702855590.2 +UniRef50_UPI000350F61A PREDICTED 2.10044736394e-08 1.1637722001e-08 -3781472.57939 +UniRef50_UPI0003B45CE3 arabinose ABC transporter permease 2.9532503847e-08 4.40416752801e-08 5857530.5551 +UniRef50_A0A022P145 5.88111278528e-06 1.88654342355e-07 -2298115327.73 +UniRef50_UPI00026276EB preprotein translocase subunit SecA 5.14905668541e-07 2.16180960222e-07 -120598830.513 +UniRef50_Q9RY70 Ornithine carbamoyltransferase 1.63886825841e-06 0.000521575567979 2.09904826018e+11 +UniRef50_P24520 Nicotinamide riboside transporter PnuC 2.30166498542e-05 5.67916740756e-06 -6999354418.53 +UniRef50_A0Q6K3 Malate dehydrogenase 0.000264608191773 7.55789098362e-05 -76313440768.1 +UniRef50_B9KQ46 1.83519778278e-05 3.99977478817e-06 -5794160488.42 +UniRef50_Q5XD24 Probable metallo hydrolase M6_Spy0554 5.15971547456e-05 8.81165215888e-05 14743316537.6 +UniRef50_V6URT8 Membrane protein 4.55952041033e-07 8.21353738476e-08 -150914375.789 +UniRef50_Q5HR11 ATP dependent DNA helicase RecQ 9.70656817334e-05 1.73184456588e-05 -32194937811.9 +UniRef50_UPI000471C72D NAD dependent malic enzyme 1 2.50828407752e-07 1.64211519981e-07 -34968300.5019 +UniRef50_C1CXG7 30S ribosomal protein S10 7.4260337074e-06 3.98784410932e-05 13101435097.5 +UniRef50_UPI00046A2C95 histidine phosphotransferase 6.46251895901e-07 2.43624324826e-07 -162545691.239 +UniRef50_V5VBC4 Acinetobactin biosynthesis protein 7.7287698312e-07 4.99994087583e-05 19873354955.1 +UniRef50_A0A031C6N4 2.05901448467e-06 6.42452596268e-07 -571883417.516 +UniRef50_A8LPB3 Import inner membrane translocase 5.02587011153e-05 5.66246806702e-06 -18004046538.9 +UniRef50_Q6D6A4 UPF0176 protein ECA1781 2.98869328346e-05 1.61361166763e-05 -5551373224.6 +UniRef50_D3DZB3 MatE efflux family protein 3.50056434364e-05 6.51809326294e-06 -11500773586.6 +UniRef50_F8G4X8 Citrate synthase 1.34989097874e-05 6.77906461153e-06 -2712883959.27 +UniRef50_UPI0003B63C52 peptide permease BMEII0860 8.77093862504e-08 1.151309756e-07 11070432.1212 +UniRef50_P20839 Inosine 5 monophosphate dehydrogenase 1 2.26505895462e-07 9.593921748e-08 -52711370.1346 +UniRef50_J3TFE7 Arabinose efflux permease family protein 1.13359155811e-06 4.17289592959e-05 16388848116.9 +UniRef50_UPI00034B9571 hypothetical protein 2.70868313263e-07 3.33910883421e-07 25451059.1921 +UniRef50_U2Z938 Initiation of plasmid replication 7.29942375831e-06 1.51255992455e-06 -2336227942.49 +UniRef50_T2KQZ5 Lipoyltransferase and lipoate protein ligase 0.000202426221139 3.49773755939e-05 -67601153774.9 +UniRef50_S6AU95 Transcriptional regulators 4.1192970673e-05 4.12656654739e-05 29347783.1889 +UniRef50_F4CWF2 1.24632804606e-06 6.12755474683e-07 -255781021.875 +UniRef50_N0AYY4 Aromatic amino acid transport protein AroP 0.00031394896346 7.76212371052e-05 -95408403196.8 +UniRef50_A6U7Z3 Proline tRNA ligase 0.000145095164521 2.93635628332e-05 -46722267787.9 +UniRef50_F0Y346 2.26814149978e-06 2.42567299515e-06 63597397.8097 +UniRef50_V9VJ25 2.52123087322e-06 0.000100227027858 39445029227.7 +UniRef50_X2HPT1 Membrane protein 1.39122600314e-06 4.8499777673e-05 19018300396.1 +UniRef50_C4ZU18 Fructose 1 phosphate kinase 2.38540650076e-05 5.86721930844e-06 -7261510332.18 +UniRef50_S5SQS1 Oligopeptide ABC transporter ATP binding protein 1.15727141235e-05 8.11442799272e-06 -1396152548.94 +UniRef50_C1DMJ1 TonB dependent siderophore receptor 6.7187626896e-06 5.51484416891e-06 -486036680.544 +UniRef50_D9VJK2 5.70526502717e-09 1.69579680527e-06 682310694.55 +UniRef50_Q8NQ46 Peptide deformylase 1 1.29258374628e-07 9.66405089067e-07 337966401.564 +UniRef50_F6DQM1 FAD linked oxidase domain protein 6.03719017794e-06 1.63158400665e-06 -1778597274.22 +UniRef50_Q49ZH2 DNA topoisomerase 3 0.000102579146244 3.46160852263e-05 -27437521733.4 +UniRef50_I0I0F8 Putative major facilitator superfamily transporter 6.13343134872e-08 3.79350676046e-08 -9446562.70384 +UniRef50_Q3JPX4 Val start codon 3.32897357665e-07 5.87624370776e-07 102836421.045 +UniRef50_O32867 Tetrahydromethanopterin S methyltransferase subunit A 2.83651439477e-05 5.08322774466e-06 -9399195272.39 +UniRef50_B8DWF1 ATP binding protein of ABC transporter 7.9806762976e-07 1.34443644192e-05 5105465201.39 +UniRef50_D9RCU3 ABC type nitrate sulfonate bicarbonate transporter, TauA 9.54138805413e-05 4.28885633426e-05 -21205115111.2 +UniRef50_H6P8S4 Acetoin dehydrogenase E1 component 9.51654849752e-05 4.67300993691e-05 -19553959538.2 +UniRef50_C5D403 Anti sigma F factor 5.14753621167e-06 8.26060713832e-06 1256784934.76 +UniRef50_UPI0003A374B9 ribonuclease 3 1.31455330626e-07 7.53506305934e-07 251129612.156 +UniRef50_A3PP97 Transcriptional regulator, AraC family 4.27920469186e-05 3.02372053093e-06 -16054961375.0 +UniRef50_P06130 Formate dehydrogenase subunit beta 3.68426348646e-05 6.90020470573e-06 -12088126490.1 +UniRef50_H3VE51 3.99513634297e-06 3.1220860807e-06 -352461104.41 +UniRef50_B9JCY0 8.21216023673e-07 5.04302581437e-07 -127941845.596 +UniRef50_U5NMX6 0.000157060533738 4.90140401226e-05 -43619695352.0 +UniRef50_X1RXJ8 Marine sediment metagenome DNA, contig 1.18064935746e-07 1.19259609452e-07 482304.435407 +UniRef50_M8R009 7.66369264197e-05 6.94862835762e-06 -28134021099.3 +UniRef50_Q8FDH0 HTH type transcriptional activator TtdR 2.45791682665e-05 4.73622087543e-06 -8010841362.13 +UniRef50_UPI0002DC6DF0 hypothetical protein 2.33296747131e-06 3.69135180841e-06 548396426.138 +UniRef50_UPI000363C9B5 hypothetical protein 3.27460368986e-08 2.27585010365e-06 905568637.729 +UniRef50_B2TGR6 NADH 3.44866680628e-05 3.3063479302e-06 -12587877863.1 +UniRef50_P39773 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.000257656392718 3.74224139949e-05 -88911159785.3 +UniRef50_Q932I8 Tetracycline resistance protein TetM 1.42381891009e-06 9.44509718088e-07 -193503002.596 +UniRef50_S4X5W3 1.73996884551e-06 1.10186878266e-06 -257608825.741 +UniRef50_UPI000473EC6D MFS transporter 1.65180832232e-07 1.11677830249e-06 384171576.157 +UniRef50_P36682 3.47600416181e-05 2.48154314239e-05 -4014761169.49 +UniRef50_Q5X5E0 Orotidine 5 phosphate decarboxylase 3.61623490513e-07 1.20477939878e-07 -97353417.98 +UniRef50_P08005 Oligopeptide transport system permease protein OppB 2.59948196924e-05 3.9323216977e-06 -8906901177.76 +UniRef50_A8BSP6 1.13443423855e-06 2.21487528896e-06 436187310.553 +UniRef50_R4ZI73 Hydrolase, haloacid dehalogenase like family 5.71378903837e-05 2.47512991375e-05 -13074864314.3 +UniRef50_Q9RWJ0 Argininosuccinate lyase 7.33429383423e-05 0.000195192635832 49192218140.6 +UniRef50_K7EGT5 3.48781643324e-07 6.04341161777e-06 2298992001.65 +UniRef50_B6JLQ7 Type II R M system protein 4.07799051658e-07 4.72811258922e-05 18923337245.9 +UniRef50_UPI0004225DED isoleucine tRNA ligase 1.37531687293e-08 6.51499332703e-08 20749504.5544 +UniRef50_A6E257 3.19333387442e-08 8.39392038982e-08 20995405.9464 +UniRef50_Q3IMY5 50S ribosomal protein L2 5.89840543537e-05 8.60667332413e-06 -20337966921.6 +UniRef50_G8VA00 Adhesion protein associated protein 6.57845574193e-06 7.07684035524e-05 25914269630.3 +UniRef50_Q8IQF1 Molybdenum cofactor biosynthesis protein 1 3.13539564882e-08 7.87906153327e-07 305429405.803 +UniRef50_Q4L770 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000176000195049 3.3443335214e-05 -57551953684.8 +UniRef50_I3UHD0 Spermidine putrescine ABC transporter ATPase 1.04881287132e-05 1.4188488577e-05 1493880685.54 +UniRef50_B5X4Z4 Probable amino acid acetyltransferase NAGS2, chloroplastic 2.86314551725e-08 5.34244005008e-08 10009216.2727 +UniRef50_W5XJA7 Primary replicative DNA helicase 4.65083201026e-08 7.24343625428e-08 10466661.4814 +UniRef50_P23325 Ankyrin repeat protein A 8.67212605624e-06 1.85200651719e-06 -2753365950.19 +UniRef50_Q8CUB3 0.000523263044 0.000116723163284 -1.6412513865e+11 +UniRef50_D0K767 7.92308556173e-05 6.54638500648e-06 -29343612724.3 +UniRef50_Q8CUB1 5.27565012877e-05 1.87196196748e-05 -13741106786.6 +UniRef50_Q8CUB0 6.88045255084e-06 3.84496984105e-06 -1225461619.5 +UniRef50_Q9I576 4 hydroxyphenylpyruvate dioxygenase 1.37192810219e-05 3.5389785821e-06 -4109913021.31 +UniRef50_Q8CUB6 8.20714297245e-05 7.69431180473e-05 -2070362355.55 +UniRef50_Q8CUB4 0.000345894628862 0.000110947264562 -94851134096.3 +UniRef50_D4YZ36 9.68704126262e-07 4.18345603648e-07 -222186489.238 +UniRef50_G7M679 D galactose binding protein 9.70125095041e-06 4.61549273457e-05 14716796497.7 +UniRef50_B5GNG9 2.88642298465e-07 2.20890571829e-06 775233906.867 +UniRef50_UPI00042A099E MULTISPECIES 9.34986347e-08 1.15428299218e-07 8853274.67316 +UniRef50_A6M2R3 Signal peptidase I 1.01191085796e-05 1.93112350419e-05 3710974252.91 +UniRef50_UPI00036D23D9 hypothetical protein, partial 8.98441945633e-07 1.32615502885e-07 -309173532.685 +UniRef50_UPI0003802981 30S ribosomal protein S13 1.88688016778e-06 1.0173289622e-05 3345325182.35 +UniRef50_UPI00046643A7 uracil phosphoribosyltransferase 8.90699868207e-08 2.47122974436e-07 63807930.6284 +UniRef50_U5SG79 Rlx protein 3.95483171821e-06 4.9834431849e-07 -1395426379.14 +UniRef50_Q9RUU7 6.74333839322e-07 0.000828867124478 3.34351592649e+11 +UniRef50_S4EU42 5.23117741504e-07 8.35624719508e-07 126162901.912 +UniRef50_UPI00046CF290 molecular chaperone DnaJ, partial 1.34954366863e-07 1.79363806799e-07 17928635.8673 +UniRef50_R9ZBV1 Membrane protein 2.2251613143e-06 2.96455743287e-06 298503286.477 +UniRef50_H9K042 6.5437293272e-07 1.3694047349e-06 288667112.967 +UniRef50_P0ACQ2 Ribose operon repressor 5.55451981669e-05 1.8868803424e-05 -14806710627.7 +UniRef50_Q6F9I9 Coenzyme PQQ synthesis protein E 2.97733211355e-06 3.43423304362e-05 12662434714.7 +UniRef50_U3SUW9 0.000215533751035 4.12069821203e-05 -70377855841.0 +UniRef50_UPI000478E845 acetyl CoA acetyltransferase 3.94063304549e-08 4.00508842265e-07 145781515.244 +UniRef50_E8QA77 Exported protein 4.85836768309e-05 5.1253203629e-05 1077720727.17 +UniRef50_UPI000478CDB6 hypothetical protein 2.41767984707e-08 1.22124213446e-07 39542573.3755 +UniRef50_A6LWY2 Peptidase M42 family protein 1.19457591412e-06 1.31237308102e-05 4815946218.75 +UniRef50_Q898F3 DNA binding protein iolR 2.08555794952e-06 5.22798163873e-06 1268635005.21 +UniRef50_U9DSS6 4.21643106482e-07 1.99254841624e-07 -89780871.5341 +UniRef50_E5U235 5.46347376875e-06 2.70118386102e-06 -1115170332.86 +UniRef50_G5N0A7 DNA ligase 2.78720758274e-05 1.02131526159e-05 -7129123999.84 +UniRef50_UPI000375E551 hypothetical protein, partial 1.60300389907e-07 3.04770917789e-07 58324524.9587 +UniRef50_UPI00037AE230 hypothetical protein 1.46798656517e-07 3.01841269429e-06 1159305825.71 +UniRef50_UPI00047B09DF hypothetical protein 4.14914404877e-08 2.80054536879e-07 96310849.5114 +UniRef50_UPI00047229B1 hypothetical protein 1.80557851816e-06 2.25868571e-07 -637748290.889 +UniRef50_M2ZV09 1.64591066016e-08 1.54888495218e-08 -391704.689509 +UniRef50_C7QH34 Thioesterase superfamily protein 6.7636987712e-07 1.00434415332e-05 3781601774.45 +UniRef50_M8ZKF1 TraU family protein 2.23775273993e-06 4.09111443757e-07 -738244931.216 +UniRef50_A4J903 UPF0042 nucleotide binding protein Dred_3054 5.69338702742e-06 4.13888113767e-05 14410680841.9 +UniRef50_UPI000429F6B2 hypothetical protein 3.6542628731e-08 1.74606430983e-07 55738051.2025 +UniRef50_X1F770 Marine sediment metagenome DNA, contig 8.08838336464e-07 6.07813619599e-07 -81156145.0491 +UniRef50_UPI000219576D homoserine dehydrogenase 4.89841567849e-08 1.59486969502e-06 624092961.936 +UniRef50_Q9RYT7 Glucan synthase 1 related protein 6.94443904091e-06 0.000417365707965 1.656921027e+11 +UniRef50_G8WNN7 2.88831785182e-07 1.77726240881e-07 -44854671.6527 +UniRef50_S5STQ7 Fasciclin domain containing protein 1.18444829756e-06 2.09622244584e-07 -393549240.047 +UniRef50_P67431 HTH type transcriptional repressor NemR 1.44142290001e-05 6.43261798562e-06 -3222274311.93 +UniRef50_Q92UB9 2.13689721651e-06 1.01976277451e-06 -451000883.017 +UniRef50_UPI000373D358 ferredoxin 7.87599171331e-08 8.69597216458e-08 3310361.70469 +UniRef50_T1ZVD1 Two component system response regulator 3.03100255673e-05 1.09195141113e-05 -7828187423.12 +UniRef50_Q7MUW1 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.09593099145e-07 7.08961575346e-05 28496662257.2 +UniRef50_A1KL82 Phosphoadenosine phosphosulfate reductase 8.67140763045e-08 1.08911020707e-07 8961178.84243 +UniRef50_U9V3J0 1.05983478365e-06 1.83511548505e-06 312990332.919 +UniRef50_Q5HNJ1 9.20845685419e-05 2.74938243779e-05 -26076076036.6 +UniRef50_P40131 Flagella basal body P ring formation protein FlgA 3.01986461335e-05 2.94140362215e-05 -316756649.721 +UniRef50_F0LTE4 2.80164479065e-07 3.32849731e-07 21269682.7269 +UniRef50_M7CYB4 40K cell wall protein 2.51880346255e-05 1.67084964205e-05 -3423293628.99 +UniRef50_A6M2E1 5.49133561104e-06 4.60076405293e-06 -359534666.551 +UniRef50_Q1RF99 3.66473942394e-05 3.46814498151e-06 -13394870080.6 +UniRef50_UPI0003771A5E hypothetical protein 5.32801363756e-07 1.95735016213e-07 -136077820.772 +UniRef50_Q9I2Q2 Methionine synthase 9.6728335384e-06 3.67943663333e-05 10949295607.9 +UniRef50_P52690 HTH type transcriptional regulator CbbR 2.41162990167e-05 4.38140473143e-06 -7967218997.36 +UniRef50_O05508 6 phospho beta glucosidase GmuD 5.95633453839e-06 7.03651462641e-05 26002627678.7 +UniRef50_Q9K8D9 Non canonical purine NTP pyrophosphatase 1.14005894289e-07 1.1083631629e-07 -1279597.53329 +UniRef50_F3U3U4 Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein 0.000120934555519 2.9230151804e-05 -37022193119.3 +UniRef50_A0AZ30 Extracellular solute binding protein, family 1 2.35638738697e-06 2.77292680931e-06 168162076.312 +UniRef50_UPI000373D0A7 Cro Cl family transcriptional regulator 2.63274183169e-06 3.08135301128e-07 -938472182.517 +UniRef50_S8AV33 4.483542443e-08 1.00492511852e-07 22469449.1815 +UniRef50_A0ZA13 Putative restriction modification enzyme 4.40571262719e-08 1.06757328176e-05 4292137941.91 +UniRef50_Q8CSP4 UPF0291 protein SE_1024 2.81641523841e-05 7.57222321012e-06 -8313214498.93 +UniRef50_B4RJ27 0.000113245796655 4.18888943548e-06 -44027611723.5 +UniRef50_D5WAU2 PTS system, N acetylglucosamine specific IIBC subunit 7.12163215026e-06 3.80211470956e-06 -1340129925.87 +UniRef50_A0A014MC25 2.87616065281e-08 3.9996132031e-08 4535515.80865 +UniRef50_UPI0003A406BC hemolysin expression modulating protein 5.170654259e-08 1.67924535321e-08 -14095246.1967 +UniRef50_B2IN54 Transketolase, N terminal subunit 1.36276530269e-06 5.16618448885e-05 20306355667.9 +UniRef50_UPI0002481BB1 IS21 family transposase 1.05492138374e-07 2.0882851266e-07 41718162.3792 +UniRef50_UPI00036B09EF hypothetical protein, partial 3.69651666798e-07 1.02180903294e-06 263283931.582 +UniRef50_Q1R597 Hemin import ATP binding protein HmuV 9.53441855938e-08 2.64640029823e-06 1029892657.65 +UniRef50_G7WK52 6.71158065137e-07 1.81039186132e-07 -197867005.889 +UniRef50_X5MEU2 6.64915406564e-08 1.12089597094e-07 18408494.9349 +UniRef50_E8SKH8 Sucrose 6 phosphate hydrolase 0.00012245056035 3.57003316047e-05 -35022131889.5 +UniRef50_A0A011MXQ2 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.14087161398e-07 8.13246242588e-07 282259100.723 +UniRef50_A6LVK7 MATE efflux family protein 1.65165424372e-06 1.09878632124e-05 3769142128.82 +UniRef50_Q03MN5 Adapter protein MecA 3.96535296489e-05 1.13808286303e-05 -11414036346.3 +UniRef50_UPI0003629460 hypothetical protein, partial 3.23843943629e-07 1.02480998873e-06 282988594.228 +UniRef50_B7V3W3 6.41374026635e-08 6.11000079721e-06 2440789243.47 +UniRef50_UPI00037C96DC hypothetical protein 1.41818810768e-07 2.46742207071e-05 9904031691.96 +UniRef50_R5QE34 7.74967509291e-06 1.75508227294e-05 3956843574.46 +UniRef50_UPI00037C173A hypothetical protein 5.92563212473e-07 1.93384438881e-07 -161153369.373 +UniRef50_UPI000440CBE5 PREDICTED 2.82233774435e-07 2.72593175217e-07 -3892028.20776 +UniRef50_G7U7Z2 8.93105651832e-07 5.19012666675e-05 20592620542.6 +UniRef50_R5DNX0 3.91212435035e-06 2.78794453153e-05 9675901585.63 +UniRef50_Q6MLR5 Ribonuclease 3 1.35811221478e-07 2.82851882375e-07 59362119.1959 +UniRef50_UPI0003693C86 hypothetical protein 6.35675969136e-07 2.30734208503e-07 -163479957.962 +UniRef50_F5LZD2 Acetyltransferase 3.32971789401e-05 3.81875049823e-06 -11900803303.0 +UniRef50_W8VP54 UPF0246 protein NMS_0251 1.09554499746e-07 2.08872897523e-07 40096055.9564 +UniRef50_U6MRR8 6.21887955241e-07 9.73036919865e-07 141763146.101 +UniRef50_Q9RZC4 1 pyrroline 5 carboxylate dehydrogenase, putative 5.46758895691e-06 0.000523921647194 2.09306265457e+11 +UniRef50_P0AGI6 Xylose transport system permease protein XylH 3.78210868293e-05 4.12792137545e-06 -13602344355.3 +UniRef50_U5PB97 Glutamyl tRNA synthetase 4.32578052004e-05 8.71814643229e-06 -13944084094.0 +UniRef50_A8AYG2 ATP synthase gamma chain 4.39785881599e-05 2.83511350248e-05 -6308994601.05 +UniRef50_A0A038G154 1.16109959176e-07 7.04091700241e-07 237375444.215 +UniRef50_M7DT58 Deacetylase 4.92163425208e-05 1.09610117315e-05 -15444146485.3 +UniRef50_D3QIY9 Glutamate ABC transporter, periplasmic glutamine binding protein 0.000158632106534 2.95388358511e-05 -52116537527.3 +UniRef50_A6LR18 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 5.26565872226e-06 7.58452088735e-06 936153111.686 +UniRef50_A0A025E7F4 1.20966951921e-06 8.27654050994e-07 -154224332.376 +UniRef50_Q9LU86 Peroxiredoxin Q, chloroplastic 1.19782465211e-07 9.16667406568e-06 3652341156.95 +UniRef50_A5E987 Fructose 1,6 bisphosphatase class 1 1 1.28056370821e-06 3.72406398993e-07 -366634250.074 +UniRef50_C4LJK5 ABC type transport system, ATP binding protein 3.93362768441e-06 6.29190023714e-05 23813119593.1 +UniRef50_UPI00046997D0 hypothetical protein 1.7446033867e-08 1.49778236965e-07 53424134.2894 +UniRef50_A6LSX7 Adenine deaminase 3.90590005447e-06 6.46741153082e-06 1034113616.28 +UniRef50_UPI00034A4595 hypothetical protein 2.04866504055e-07 3.46718720494e-07 57267480.4989 +UniRef50_UPI0004696A10 tRNA hydroxylase 1.56556273912e-07 2.18607988315e-07 25051038.5647 +UniRef50_T6AKZ2 5.00290209738e-07 1.01547192284e-06 207985179.57 +UniRef50_A3K6W1 3.77386141128e-07 2.96290545696e-07 -32739287.0308 +UniRef50_D6XR13 5.23075273197e-07 3.98883695534e-05 15892252367.4 +UniRef50_F5M2N9 1.18986889085e-06 5.24528466247e-07 -268606094.057 +UniRef50_I7E227 Uroporphyrinogen III C methyltransferase CobA 9.82777380713e-06 2.67658645188e-06 -2887022090.25 +UniRef50_A0A026W2G8 Activating molecule in BECN1 regulated autophagy protein 1.76344471275e-08 6.99891317187e-07 275435470.676 +UniRef50_UPI000402E7C3 oxidoreductase 2.77480007274e-07 7.06136052445e-05 28395556879.6 +UniRef50_UPI00036AC882 hypothetical protein 9.75021042822e-07 3.95773845017e-07 -233849201.916 +UniRef50_I3TXU6 TRAP type bacterial extracellular solute binding protein 0.000111613860287 1.6406262168e-05 -38436475689.3 +UniRef50_W1WFT4 Replication initiation protein 1.4243337495e-06 9.92567952405e-07 -174309150.649 +UniRef50_Q1GIZ8 Aspartate tRNA ligase 6.62754870603e-05 1.93816653781e-05 -18931611265.0 +UniRef50_UPI000464CCF6 resolvase 5.30985347139e-07 1.12095490788e-07 -169110975.365 +UniRef50_UPI0003B3855E DNA polymerase I 1.65221542737e-08 2.21415119839e-07 82717804.518 +UniRef50_A6U4E8 Immunoglobulin binding protein sbi 9.09314306788e-05 2.21084047587e-05 -27784700117.4 +UniRef50_Q5HPB4 Peptide methionine sulfoxide reductase MsrB 3.14368509729e-05 1.1824198187e-05 -7917868603.98 +UniRef50_O85746 Tyrosine aminotransferase 1.18397839161e-05 6.16044718624e-06 -2292817931.14 +UniRef50_UPI00041C01EF peptidase M24 5.68186963466e-08 2.3489824758e-07 71892900.1146 +UniRef50_UPI00022CAD53 PREDICTED 1.70320619322e-08 1.18721135705e-08 -2083134.47331 +UniRef50_A7ZJI0 Tail fiber assembly protein 0.000108648743134 1.8719813004e-05 -36305412645.6 +UniRef50_A6LXY5 PAS PAC sensor hybrid histidine kinase 7.10881334768e-06 6.90490674175e-06 -82319599.0294 +UniRef50_O83716 Purine nucleoside phosphorylase DeoD type 3.80737109731e-07 2.28463138887e-06 768625483.899 +UniRef50_UPI000273D5E4 8.06047579756e-08 2.1674505538e-06 842485256.25 +UniRef50_Q6FAN6 1.16030529356e-06 7.06817677985e-05 28066667537.5 +UniRef50_C8N6A0 LemA family protein 2.37146347418e-07 1.50537493024e-07 -34965057.329 +UniRef50_C0SP91 Putative metallo hydrolase YycJ 5.9701333986e-05 4.72848586651e-05 -5012683454.33 +UniRef50_UPI0004009357 ABC transporter permease 5.61307505546e-07 4.02772636529e-07 -64002472.0638 +UniRef50_D6SHS5 Superantigen like protein 0.000294014747932 4.69776743425e-05 -99731898094.1 +UniRef50_A5UP87 N acetyltransferase, GNAT family 3.28994806436e-05 8.27990762236e-06 -9939223744.79 +UniRef50_I3X1B7 3.41657291347e-06 1.45268216702e-06 -792846793.991 +UniRef50_B9KU34 5.06972607126e-05 1.13375529374e-05 -15889997026.8 +UniRef50_Q8CQE1 Galactosamine containing minor teichoic acid biosynthesis protein 7.31330278401e-05 4.13177683041e-05 -12844210691.8 +UniRef50_A1B9G9 1.03895226289e-05 9.32579069031e-06 -429441637.068 +UniRef50_A1WWL1 Diguanylate cyclase 2.37141620992e-08 4.7065936787e-07 180437264.204 +UniRef50_F0RQZ8 Xanthine dehydrogenase 1.32347230999e-06 0.000518109109646 2.08632703465e+11 +UniRef50_UPI00036CA33F hypothetical protein 1.29876350145e-07 6.12867001272e-07 194989252.822 +UniRef50_A3PS71 0.000164538242589 4.53308888517e-05 -48125471542.4 +UniRef50_UPI00045DD9A4 PREDICTED 1.05400200103e-06 1.44018756062e-07 -367371402.744 +UniRef50_UPI00035DAB70 hypothetical protein 1.70543161241e-07 2.62506918605e-07 37126897.3701 +UniRef50_W7VIZ6 Basic proline rich protein 8.27424182141e-07 1.11261341999e-07 -289123726.872 +UniRef50_UPI0003681CA6 hypothetical protein 1.4334545561e-07 1.85063630302e-07 16842139.0627 +UniRef50_D2YBW7 Diheme cytochrome c napB 2.53269676065e-06 6.93418983279e-07 -742539009.201 +UniRef50_G7MCB1 Transcriptional regulator, TrmB 3.14326432122e-06 1.90502167396e-05 6421831891.56 +UniRef50_C6SRE9 8.39404669527e-05 1.67206291721e-05 -27137473392.2 +UniRef50_N0AYA8 Two component system histidine kinase 4.5504421599e-06 2.47691041382e-05 8162521951.52 +UniRef50_UPI0003A4D539 single stranded DNA binding protein 2.03435711702e-07 6.27041220709e-06 2449312861.36 +UniRef50_UPI000473EB9F mannose 1 phosphate guanyltransferase 1.18458435673e-07 1.74095454824e-07 22461347.3743 +UniRef50_Q9ZKQ7 4.04984233366e-06 3.92456101917e-05 14208963384.9 +UniRef50_Q0STN1 Undecaprenyl diphosphatase 4.68307320182e-08 2.55352352906e-05 10289981698.2 +UniRef50_UPI000471BD1E hypothetical protein, partial 1.01889926055e-06 1.25993715289e-06 97309955.0052 +UniRef50_UPI000368EF4F hypothetical protein 1.11711766716e-07 5.04437662606e-07 158548263.459 +UniRef50_Q9HJD0 30S ribosomal protein S8e 0.000140865472567 6.53837723686e-06 -54229496763.5 +UniRef50_UPI00045E5CBA hypothetical protein 8.36411397894e-07 7.0054188276e-08 -309387809.783 +UniRef50_B2A3L9 Ribosomal RNA small subunit methyltransferase A 3.92596257346e-08 2.14329643068e-07 70677914.348 +UniRef50_UPI000375EF4E hypothetical protein, partial 1.15158799917e-07 1.47314053896e-07 12981470.6207 +UniRef50_Q2FXB1 Leucotoxin LukDv 0.000179290368545 2.02877877544e-05 -64191293046.4 +UniRef50_P25306 Threonine dehydratase biosynthetic, chloroplastic 2.49259204348e-08 2.18103275469e-07 77988068.7799 +UniRef50_U5MTT7 Cobalamin biosynthesis CbiG protein 2.02590450364e-06 5.07184923003e-06 1229685263.99 +UniRef50_UPI00031889A3 hypothetical protein 7.69021900174e-07 3.45626194629e-07 -170930041.978 +UniRef50_A1A025 Response regulator of two component system 2.89631193489e-06 5.26341721738e-05 20079784530.6 +UniRef50_P75870 Inner membrane protein YccS 3.40103413391e-05 1.57170744406e-05 -7385216330.55 +UniRef50_D1JNF2 6.60965481282e-07 1.18849786294e-07 -218858758.574 +UniRef50_I3X1L2 Transposase IS4 family protein 9.85580828551e-07 2.25051506874e-07 -307035019.905 +UniRef50_S5XKW1 Spermidine putrescine transport system, permease protein 5.43322661624e-05 9.57848300693e-06 -18067651450.6 +UniRef50_P75750 2.16783657664e-05 1.22312783156e-05 -3813905132.69 +UniRef50_A0A059LQ22 7.37708033943e-07 2.23090742277e-07 -207757315.71 +UniRef50_UPI00047BA782 major facilitator transporter 1.56422557579e-07 9.26174175117e-08 -25758918.0223 +UniRef50_Q6FB59 7.25934593951e-06 2.54128430164e-05 7328789538.4 +UniRef50_B7KX11 Alkanesulfonate monooxygenase 2.45750219016e-07 3.23122850483e-07 31236280.7922 +UniRef50_K6S6A5 FliK family flagellar hook length control protein 4.923749642e-07 2.21764734821e-06 696513632.898 +UniRef50_UPI000476116B 50S ribosomal protein L35 3.97915029565e-06 1.17914589748e-05 3153924881.58 +UniRef50_Q63IW3 ATP synthase subunit beta 2 1.7290998333e-08 1.11845092581e-07 38172648.1571 +UniRef50_W1GG81 2.96919065399e-06 5.35085236243e-06 961506057.973 +UniRef50_A3KA49 2.10034677438e-06 4.00546546175e-07 -686230211.023 +UniRef50_B7RRM5 Cobyrinic Acid a,c diamide synthase 2.83039208439e-07 5.10816816179e-07 91956615.3902 +UniRef50_Q67JT3 DNA directed RNA polymerase subunit beta 9.13658208948e-08 7.23888808761e-08 -7661223.55879 +UniRef50_C7RN78 9.48100370406e-06 1.17933524061e-05 933523546.723 +UniRef50_M4R3U4 Metal dependent hydrolase 3.380471542e-06 7.10377809483e-05 27314086055.9 +UniRef50_V3BAW5 Anhydro N acetylmuramic acid kinase 3.88720110795e-06 3.22163678398e-06 -268696484.979 +UniRef50_UPI000364C8A1 hypothetical protein 3.60467761102e-07 1.61039445405e-07 -80511658.3075 +UniRef50_A0A009MS46 1.99536650972e-06 5.4874074367e-07 -584020573.849 +UniRef50_P0AE22 Class B acid phosphatase 1.94943127979e-05 1.28648064215e-05 -2676413077.34 +UniRef50_A1B792 3.52210275884e-06 1.54892117939e-06 -796597617.285 +UniRef50_Q75ZQ6 Urease subunit beta 4.28949757783e-07 3.34697297219e-07 -38050874.9374 +UniRef50_A6W1Y7 1.58403141371e-05 2.22773839728e-06 -5495563871.25 +UniRef50_UPI000373FA13 hypothetical protein 3.08929098158e-07 1.39816766072e-07 -68272723.7048 +UniRef50_P0DMC6 Sensor histidine kinase RcsC 3.38164222019e-05 9.60718495971e-06 -9773566155.42 +UniRef50_D4HFJ2 Helicase C terminal domain protein 2.13016647942e-06 5.30437620506e-05 20554443312.2 +UniRef50_E1Q5C1 DNA topoisomerase I 1.17383764465e-06 1.81639739265e-05 6859126509.38 +UniRef50_Q9HJX7 ATP dependent DNA helicase Hel308 1.88132706411e-08 2.64834497024e-08 3096545.41073 +UniRef50_I4D6H8 Multimeric flavodoxin WrbA 1.79506995036e-05 1.21082539983e-05 -2358666945.36 +UniRef50_C6SQM5 4.07628133728e-05 1.46563362355e-05 -10539505182.8 +UniRef50_B0V6S4 4.37947145346e-05 9.72876671746e-05 21595761413.1 +UniRef50_F7QL87 ATPase 7.18037339298e-06 7.72760155004e-05 28298470889.0 +UniRef50_A3PPZ7 Peptidase S14, ClpP 3.06368231745e-05 2.27458309521e-06 -11450184363.8 +UniRef50_R1G067 5.12577568022e-07 9.09519488068e-07 160250324.148 +UniRef50_D1BEK3 2.82563433063e-07 1.60802066943e-07 -49156557.6826 +UniRef50_A1B788 1.30713680585e-06 5.28374117003e-07 -314396053.98 +UniRef50_A6VEE0 7.29141860105e-06 2.28337855193e-07 -2851452370.85 +UniRef50_P23524 Glycerate 2 kinase 6.10913276015e-05 1.2034699133e-05 -19804762905.3 +UniRef50_W1VWR4 4.39283413576e-05 1.11401656501e-05 -13236988889.3 +UniRef50_UPI0003A482DB hypothetical protein 7.76121257196e-07 6.68300777921e-07 -43528450.5894 +UniRef50_UPI00035CB5E5 hypothetical protein 1.04888995338e-07 8.37631530297e-08 -8528761.7831 +UniRef50_B4EXS5 UPF0225 protein PMI1492 2.45986825836e-07 2.10466639836e-05 8397488621.62 +UniRef50_F0VYF6 4.24141560512e-06 5.35317290393e-06 448830064.326 +UniRef50_P0AEH2 Regulator of sigma E protease 1.54921740244e-05 1.12850136484e-05 -1698482271.45 +UniRef50_Q1QMX7 2.27430106357e-06 1.33764284384e-06 -378140417.394 +UniRef50_I0C4V2 ComE operon protein 1 4.11442192742e-05 2.62503737955e-06 -15550666414.4 +UniRef50_Q1H4N6 50S ribosomal protein L4 3.77485988848e-06 7.35884208256e-05 28184591259.0 +UniRef50_P00873 Ribulose bisphosphate carboxylase small chain 1, chloroplastic 4.56176261594e-07 2.43032277143e-07 -86048842.0937 +UniRef50_N8WZK4 5.35845233426e-08 2.30277162078e-07 71332986.5198 +UniRef50_B5XSA9 Oxidoreductase, short chain dehydrogenase reductase family 7.59666807941e-08 1.13641394713e-07 15209744.3298 +UniRef50_Q4L8E8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000111238944366 3.35348774375e-05 -31370085355.2 +UniRef50_F6BZ95 1.1248480378e-06 2.38086708974e-06 507070304.355 +UniRef50_K0C6H8 DoxX subfamily, putative 2.14604877026e-07 1.26213188628e-07 -35684809.2943 +UniRef50_Q49WX9 Bifunctional protein PyrR 0.000183868583325 3.82525994494e-06 -72685699028.5 +UniRef50_M9RDG8 Monovalent cation proton antiporter subunit E 4.26433096322e-05 4.9701414203e-05 2849443427.91 +UniRef50_O26901 ATP dependent DNA helicase Hel308 3.21383427874e-05 3.55311866629e-06 -11540205757.8 +UniRef50_UPI00036A3BE1 hypothetical protein 1.93616255419e-07 4.08537668264e-08 -61672091.2515 +UniRef50_S6B942 4.39287586572e-05 2.33420865266e-05 -8311092166.0 +UniRef50_D5ARY7 Ferredoxin 4 6.70905393495e-05 8.28435332543e-05 6359676950.34 +UniRef50_R3N2B8 8.07874812632e-06 2.85102694652e-06 -2110495191.64 +UniRef50_UPI000308B01A hypothetical protein 2.0075470761e-07 6.21853001399e-07 170002548.66 +UniRef50_P0CZ01 Hyaluronate lyase 2.29678701724e-06 5.54886435555e-05 21474205222.0 +UniRef50_U5WBY0 8.41171942477e-08 5.66174241381e-06 2251755746.29 +UniRef50_UPI0003144775 hypothetical protein 4.02352715105e-07 4.79159962661e-08 -143090452.823 +UniRef50_F6IG84 Cytochrome bd I oxidase subunit II 7.5591224677e-05 4.96724435711e-06 -28511767508.8 +UniRef50_UPI00037B64B8 MULTISPECIES 1.38279815526e-07 1.15141254818e-06 409014116.708 +UniRef50_V5UAT4 1.53903132023e-07 1.05492658608e-05 4196735499.06 +UniRef50_B9DSE2 Nucleoside diphosphate kinase 6.41639841415e-06 2.28384599567e-05 6629787766.1 +UniRef50_UPI00045E79E3 hypothetical protein 5.37228520641e-07 2.90685023434e-07 -99532635.2514 +UniRef50_A7ZSB8 N acetylneuraminate lyase 3.43359952519e-05 7.04998718977e-06 -11015696291.6 +UniRef50_UPI0003B7208F D alanyl D alanine carboxypeptidase 5.76401753535e-08 7.05048030589e-08 5193608.0714 +UniRef50_X7XV22 Carbon starvation CstA family protein 1.72810748046e-05 9.62989256073e-06 -3088876162.41 +UniRef50_UPI00036BCED8 hypothetical protein, partial 4.7738885768e-07 8.96246704021e-08 -156545160.806 +UniRef50_UPI0004775FD4 hypothetical protein 1.98354945263e-07 5.90370745081e-07 158261588.961 +UniRef50_UPI00036B23BD hypothetical protein 1.20327556528e-07 1.55772354544e-06 580294399.555 +UniRef50_I1ELS0 1.43578379565e-07 4.95685120259e-07 142149812.054 +UniRef50_F0KJ61 Triacylglycerol lipase 4.08341505389e-06 5.89555088389e-05 22152537617.3 +UniRef50_UPI0003B4CFA2 organic solvent ABC transporter ATP binding protein 1.34952951007e-06 4.63545033225e-07 -357682805.554 +UniRef50_Q6LPK7 Tetraacyldisaccharide 4 kinase 1.91029905011e-05 3.78611160516e-06 -6183611969.52 +UniRef50_E8SFD5 Glycosyl transferase, group 1 family protein 8.55406148252e-05 3.22640850895e-05 -21508388830.8 +UniRef50_B4U3U9 CRISPR associated endonuclease Cas9 2.02458637509e-05 1.02306632804e-05 -4043259330.27 +UniRef50_H6PCS0 Transcriptional regulator CtsR 0.000103867646377 6.90546396424e-05 -14054438022.4 +UniRef50_UPI0001E45F6A ribonucleoside diphosphate reductase large subunit 1.54834830785e-08 9.90408488689e-07 393589188.44 +UniRef50_Q0BVI1 1.43449969431e-06 5.03850937891e-07 -375714323.311 +UniRef50_UPI00047AB688 acetylglutamate kinase 1.50471081807e-07 7.76887581462e-08 -29383117.2014 +UniRef50_Q49YR8 Regulatory protein RecX 0.000178162515421 2.37197770734e-05 -62350428696.6 +UniRef50_P0ABL2 Cytochrome c type protein NrfB 7.39411113053e-05 3.38148899085e-06 -28485785392.3 +UniRef50_E3GWD7 Protease HtpX homolog 3.1517637598e-05 2.00922138604e-05 -4612583768.58 +UniRef50_UPI00045E5DCC potassium transporter 9.84963377248e-08 7.95375046273e-08 -7653913.57251 +UniRef50_Q89A97 Multidrug resistance like ATP binding protein MdlA 3.27774448276e-08 1.22093464067e-07 36057972.9978 +UniRef50_F0P8I6 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.000218235052572 5.3872846236e-05 -66355039648.9 +UniRef50_A0A021ZS12 Sigma 54 interaction domain protein 9.53233844019e-07 4.44882215008e-05 17575608751.4 +UniRef50_Q9RVT7 Phosphatase, putative 1.54919010474e-06 6.2461825796e-05 24591178510.7 +UniRef50_UPI00037BA24E hypothetical protein 4.05189770433e-07 1.06670386595e-07 -120515938.5 +UniRef50_X2HYV0 Membrane protein 2.27443927303e-06 8.01624657513e-05 31444352082.9 +UniRef50_UPI0004765AD1 uracil phosphoribosyltransferase 1.64612520206e-07 1.29993797886e-07 -13976003.0201 +UniRef50_P33011 Inner membrane protein YeeA 1.91924795484e-05 9.39887594835e-06 -3953797954.37 +UniRef50_D4J5A0 Diaminopropionate ammonia lyase 1.48616531043e-06 2.31589532608e-05 8749570450.59 +UniRef50_V9X5Q7 3.20686713861e-06 4.95848722607e-06 707150524.103 +UniRef50_Q08NT1 2.78663593588e-06 1.25879134208e-06 -616809611.279 +UniRef50_S9QSJ6 Flagellar basal body rod protein FlgF 2.55431284064e-07 9.62544174455e-08 -64261654.3735 +UniRef50_E8PDG9 Malonyl CoA acyl carrier protein transacylase 6.31245598596e-06 8.94979405408e-05 33583000915.5 +UniRef50_Q2P2V7 Uracil phosphoribosyltransferase 3.74603305623e-07 1.1386551743e-06 308457115.356 +UniRef50_T2A0W0 Relaxase mobilization nuclease family protein 4.35596809792e-06 3.64149178266e-05 12942591413.0 +UniRef50_Q9RWN1 ATP dependent 6 phosphofructokinase 3.62976996892e-06 0.000190868843352 75590711606.5 +UniRef50_E3GYU4 Aspartokinase 2.19809712539e-05 1.39061755471e-05 -3259894115.72 +UniRef50_C7QHR1 1.496380278e-06 1.3069160053e-06 -76489051.8771 +UniRef50_C3L0M2 1.22826243664e-06 1.07381524158e-05 3839259284.06 +UniRef50_Q2JMP1 N acetylmuramic acid 6 phosphate etherase 7.11773760817e-08 1.25219884039e-07 21817623.6385 +UniRef50_C5MZE1 Transporter, major facilitator family protein 0.000213299595402 5.74093319301e-05 -62934812352.3 +UniRef50_C1DMN0 TonB dependent receptor 4.8222452949e-06 4.78324356414e-06 -15745477.3129 +UniRef50_UPI00036664BA hypothetical protein 2.44697046844e-06 3.51077178488e-07 -846137840.656 +UniRef50_E3YDC7 Cell surface protein 5.69376769557e-07 7.22171784474e-06 2685631725.46 +UniRef50_P14657 NADP specific glutamate dehydrogenase 9.6529513493e-07 7.8652287375e-06 2785587867.06 +UniRef50_Q836R3 ATP dependent 6 phosphofructokinase 2.21380964635e-07 1.01718699878e-05 4017134524.88 +UniRef50_Q0SHI1 1.7498239613e-06 1.30357638981e-05 4556272446.54 +UniRef50_F5WYS7 ICESt1 ORFJ phage replication initiation factor 7.83328810583e-05 2.38044796904e-05 -22013784771.0 +UniRef50_UPI000365D96C hypothetical protein, partial 5.69037695561e-07 3.03873040304e-07 -107050225.263 +UniRef50_B8RD42 Cell wall surface anchor family protein,putative 2.75354258771e-06 4.24143432964e-05 16011551938.9 +UniRef50_H1UU45 Dehydrogenase 3.03306343316e-06 4.40802117711e-07 -1046527703.67 +UniRef50_L2ZHW9 3 propionate 3 hydroxycinnamic acid hydroxylase 2.70627328175e-05 8.44980506742e-06 -7514267339.02 +UniRef50_UPI0001FFE295 hypothetical protein, partial 1.1163660231e-07 1.29314284034e-06 476988567.005 +UniRef50_M9R1X4 1.13904183495e-06 9.38082347389e-07 -81129811.1786 +UniRef50_G7U5K4 6 phosphogluconate dehydrogenase, decarboxylating 8.19434129148e-07 5.01170805201e-05 19902064798.2 +UniRef50_F5XWG5 1 aminocyclopropane 1 carboxylate deaminase like protein 7.94135899906e-08 1.81547154827e-06 700867901.584 +UniRef50_G7M6Z9 Nitroreductase 2.02224636884e-06 1.10486271177e-05 3644060674.46 +UniRef50_S9RGW6 Flagellar protein FlgJ, putative 1.09133365762e-06 7.21534205673e-07 -149292576.701 +UniRef50_J7Q7T7 Escherichia coli IMT2125 genomic chromosome, IMT2125 2.79812969814e-05 2.90475447734e-06 -10123707932.7 +UniRef50_X1YKD9 1.03915442628e-08 6.49158211296e-08 22012119.6592 +UniRef50_C4ZPZ7 2 isopropylmalate synthase 1.74834644778e-05 3.81975267088e-05 8362521112.78 +UniRef50_UPI0003FD05D8 methyltransferase 8.2566666434e-08 1.37996021107e-07 22377510.6762 +UniRef50_P73283 3 oxoacyl [acyl carrier protein] synthase 2 1.06163200464e-07 3.73554944781e-05 15038012137.5 +UniRef50_UPI00047C3DCE hypothetical protein 1.19588774697e-07 2.07111890933e-07 35334156.0539 +UniRef50_T0U8G3 ABC transporter membrane spanning permease,Pepexport, Vex3 3.15339163609e-06 6.93141239577e-05 26709899521.7 +UniRef50_P38487 Creatinase 5.60204074941e-05 3.5867774779e-05 -8135865127.7 +UniRef50_UPI0002DD21FE hypothetical protein 4.3163189773e-08 7.6953031504e-08 13641373.7548 +UniRef50_O26938 Aspartate carbamoyltransferase regulatory chain 3.82011835841e-05 8.28545781828e-06 -12077345598.9 +UniRef50_UPI0003F6906F chromosome partitioning protein ParB 4.97853629937e-07 5.62060687001e-06 2068118346.27 +UniRef50_B4U896 Glutamate tRNA ligase 2.73440161091e-07 5.19232175659e-08 -89429108.4196 +UniRef50_Q7W4F7 Exported protein, conserved 7.1109708681e-06 4.17382025963e-06 -1185763743.53 +UniRef50_D5BUA3 ABC transporter related protein 3.26787070476e-05 9.76162663273e-06 -9251906587.7 +UniRef50_UPI00046CCD8A ABC transporter permease 2.19728964625e-07 5.93436676277e-07 150870389.103 +UniRef50_F5XE95 4.1120503439e-06 5.17475755317e-05 19231046071.9 +UniRef50_W2RQC0 5.03301536757e-07 1.87905659224e-07 -127329186.103 +UniRef50_UPI0002FFACA2 hypothetical protein 1.54590807554e-06 9.04086232071e-08 -587602989.892 +UniRef50_P09155 Ribonuclease D 3.10989566436e-05 8.94509407104e-06 -8943786179.02 +UniRef50_F7TB61 9.23717369889e-08 7.94762672591e-07 283563840.009 +UniRef50_U5UU73 1.31476483582e-07 3.70007523029e-07 96297907.7298 +UniRef50_UPI000420A761 hypothetical protein 9.63526148386e-08 1.50608592116e-07 21903803.8226 +UniRef50_D1ZK87 Putative glutathione dependent formaldehyde activating enzyme 5.37317947109e-07 1.58691702405e-07 -152856061.254 +UniRef50_P46883 Primary amine oxidase 4.30447438042e-06 8.34939671573e-05 31969769998.4 +UniRef50_UPI000350E610 PREDICTED 5.10631361184e-06 1.38984926458e-06 -1500382263.13 +UniRef50_A3VBF6 1.15721545935e-06 1.30353387106e-06 59070538.3362 +UniRef50_Q9K5Z9 L lactate permease 0.000178858488396 3.71892939163e-05 -57193592288.1 +UniRef50_UPI00041F2A30 hypothetical protein 4.07855854392e-08 6.02067076227e-08 7840545.34945 +UniRef50_F2JYP7 ABC type transporter, integral membrane subunit 0.000119315065095 3.30279874024e-05 -34835152126.0 +UniRef50_I0JKD6 PTS system subunit IIBC, sucrose specific 3.62061334526e-06 1.13514792284e-05 3121045425.42 +UniRef50_W5XHN2 Transcriptional regulator, TetR family protein 9.84179333564e-08 9.81540364225e-07 356527362.473 +UniRef50_UPI00045D68F4 PREDICTED 4.60160852434e-08 5.32605149678e-08 2924665.17889 +UniRef50_Q02001 Anthranilate synthase component 1 4.94325793434e-05 6.74714315246e-05 7282505987.16 +UniRef50_R6U3E2 4.20439547187e-06 1.17314225555e-05 3038753200.67 +UniRef50_UPI0003B74FC2 cysteine ABC transporter ATP binding protein 2.30510851973e-08 1.91063263045e-08 -1592547.57266 +UniRef50_F0VTI5 PAP2 superfamily protein 3.16040102358e-05 1.37068093217e-05 -7225319632.37 +UniRef50_Q88U25 Phosphoribosylformylglycinamidine synthase 2 8.25343527651e-08 3.13155775601e-08 -20677648.0753 +UniRef50_UPI0001FFDC7C ABC transporter related protein 7.1875849203e-08 8.99677473195e-08 7303921.28219 +UniRef50_K7PC03 Protein ORF84 2.67753614348e-08 7.85273384581e-08 20892908.1925 +UniRef50_UPI000262CF31 Inner membrane arginine ABC transporter permease 2.08036860788e-07 2.24806086464e-07 6769942.18694 +UniRef50_UPI000471B2C3 shikimate dehydrogenase 3.72360970222e-07 2.98841186511e-07 -29680838.8733 +UniRef50_UPI0004296A6B hypothetical protein 2.54409842809e-06 4.74171590767e-07 -835654865.085 +UniRef50_UPI0001746B76 phosphoesterase 3.23008602159e-06 5.70794340911e-07 -1073588684.67 +UniRef50_M5M5H9 9.7681109195e-07 1.19548765337e-06 88282411.3084 +UniRef50_Q17RH7 Putative protein TPRXL 9.75858962174e-08 1.89929121446e-06 727370546.384 +UniRef50_K5VC32 DbpA RNA binding domain protein 1.02050253579e-05 1.93396277319e-06 -3339129462.8 +UniRef50_P0AGF5 D xylose proton symporter 3.76501033886e-05 7.28549788606e-05 14212640240.4 +UniRef50_A5G222 Probable chemoreceptor glutamine deamidase CheD 2.81929683594e-06 4.07061121122e-07 -973849159.534 +UniRef50_D3QDT5 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 0.000177948409229 4.08032911698e-05 -55367167120.3 +UniRef50_G0DXL2 2.79619251005e-06 6.53873175753e-05 25268805268.3 +UniRef50_UPI00018506DA deaminase reductase 1.6408445698e-07 1.83307190219e-06 673790712.41 +UniRef50_P76197 Inner membrane transport protein YdiM 3.52663138889e-05 4.22921676383e-06 -12530056977.4 +UniRef50_A0A036SNN0 1.19922673337e-05 6.61156802679e-06 -2172254338.81 +UniRef50_A5URZ0 Acyl carrier protein 3.20604114223e-07 4.27761578736e-06 1597494170.44 +UniRef50_UPI00030E7C94 2 hydroxychromene 2 carboxylate isomerase 7.6381222831e-07 4.82921907076e-07 -113398869.594 +UniRef50_Q3IW11 Transcriptional regulator, GntR family 3.36050532178e-05 1.74465298557e-05 -6523394168.66 +UniRef50_A3PPE3 Transcriptional regulator, LysR family 1.68406435424e-05 1.28892834653e-05 -1595212551.77 +UniRef50_UPI00047388A6 hypothetical protein 3.03055796526e-07 1.37536690825e-06 432905154.538 +UniRef50_Q9RUK6 Peptide methionine sulfoxide reductase MsrB 5.62462718885e-06 0.00041807055848 1.66509483743e+11 +UniRef50_Q9RV85 3.50606181596e-06 0.000319835531981 1.27706088905e+11 +UniRef50_Q9RV87 7.86429143391e-07 4.44088596534e-05 17610910504.3 +UniRef50_O34962 Probable NAD dependent malic enzyme 4 9.03731453972e-05 2.34722528041e-05 -27008711306.1 +UniRef50_A5ULC6 2.49920729388e-05 2.02966807698e-06 -9270204623.1 +UniRef50_J7M8F1 Primosome assembly protein 5.48627090681e-05 5.94719568269e-05 1860809882.06 +UniRef50_UPI0004743B0B hypothetical protein 2.05983643093e-06 1.0050569844e-06 -425827406.164 +UniRef50_UPI000287DB6E SAM dependent methyltransferase 4.94769690279e-07 2.81221291895e-06 935580269.64 +UniRef50_UPI00046CBCB9 hypothetical protein 1.66328249934e-06 9.1200999236e-07 -303297930.218 +UniRef50_UPI00026286FB diaminopimelate decarboxylase, partial 1.79958794677e-07 3.1747480366e-06 1209033167.16 +UniRef50_J4ZBB1 Thi4 domain protein 3.97313451552e-07 1.62506827182e-06 495659687.189 +UniRef50_Q58375 Uroporphyrinogen III C methyltransferase 2.09263771411e-07 1.7510230878e-07 -13791401.6724 +UniRef50_E6MV57 IS1016 transposase 1.09956281708e-05 0.000128961755162 47624373073.4 +UniRef50_D6ANF2 3.27902413874e-07 2.80000050768e-07 -19338771.814 +UniRef50_P50620 Ribonucleoside diphosphate reductase subunit alpha 2.33207863585e-07 0.000105337450598 42431872565.8 +UniRef50_A2WGI8 NAD+ synthase 4.44168475247e-07 2.36254262592e-06 774471185.724 +UniRef50_UPI00046AEE41 DNA primase 2.82310310588e-08 5.84930903287e-08 12217164.6845 +UniRef50_F2D1Z4 Predicted protein 1.93701857578e-07 3.22336754564e-07 51931486.4409 +UniRef50_D9XU96 Acyl CoA dehydrogenase 4.55893221618e-07 1.09510953345e-07 -139838772.29 +UniRef50_G7ZFF7 L sorbosone dehydrogenase 1.69974953242e-06 8.14947524231e-05 32214221861.8 +UniRef50_A7G768 Xanthine uracil permease family protein 6.17210715738e-06 2.28331498838e-05 6726267402.63 +UniRef50_Q2RKZ1 Leucine tRNA ligase 2.16391243741e-08 3.25280458312e-08 4395991.21432 +UniRef50_X2H662 Phosphoserine phosphatase 4.48506463151e-06 4.85508695572e-05 17789906196.7 +UniRef50_UPI00037ADDB6 hypothetical protein 1.36399184889e-06 9.34451728953e-07 -173410617.469 +UniRef50_V6AGZ8 1.87106657422e-05 1.13820565751e-05 -2958649452.91 +UniRef50_UPI0003B424BE hypothetical protein 3.57916747669e-07 2.43700266574e-06 839352498.378 +UniRef50_UPI0004641C50 hypothetical protein 1.83992753957e-06 1.83962771599e-06 -121042.458495 +UniRef50_UPI000476CD71 isopentenyl diphosphate delta isomerase 4.73997051056e-07 1.97167031782e-07 -111759675.867 +UniRef50_UPI00035C2722 hypothetical protein 5.90057664396e-08 4.35390849935e-08 -6244089.09732 +UniRef50_UPI00046890BA hypothetical protein, partial 1.86430528546e-07 1.19713313774e-06 408033046.046 +UniRef50_A8ALR3 L carnitine gamma butyrobetaine antiporter 2.85184827112e-05 1.01765236943e-05 -7404873936.27 +UniRef50_A0A017KTW4 5.62089307755e-07 5.0659646186e-07 -22403142.8616 +UniRef50_A0QM11 8.06019904975e-07 6.38272764067e-07 -67721579.2735 +UniRef50_B6IQY6 Sensor protein KdpD 9.84746802476e-07 6.81762305136e-07 -122318559.614 +UniRef50_Q6G7J6 UPF0340 protein SAS2017 0.000156920268588 1.01874404479e-05 -59237843334.4 +UniRef50_M5TC97 2.37826877082e-07 7.85951750331e-06 3076970034.47 +UniRef50_UPI00036AD709 hypothetical protein 1.59772865959e-07 3.94836691946e-07 94898151.1085 +UniRef50_O26153 Isopentenyl phosphate kinase 2.31493231061e-05 4.99870145261e-06 -7327628694.69 +UniRef50_UPI00046CFDF2 hypothetical protein 1.29175491729e-08 3.74038496119e-08 9885419.96792 +UniRef50_Q8ZN19 Pyridoxine 5 phosphate synthase 3.08235140282e-05 4.29827166635e-05 4908819314.07 +UniRef50_Q720G3 Gamma glutamyl phosphate reductase 7.02664100625e-05 5.98564018567e-05 -4202648057.85 +UniRef50_C7N3H3 Anion transporter 0.000237432144303 4.52606239393e-05 -77582000980.7 +UniRef50_P00728 Thermophilic aminopeptidase 1 alpha chain 0.000259971018651 5.76076226005e-05 -81696586263.9 +UniRef50_U5MQF0 Transporter YbhF 1.47167979232e-05 6.1644321569e-06 -3452695009.19 +UniRef50_UPI00036FB801 hypothetical protein 8.46303742568e-07 2.00647899842e-07 -260659186.797 +UniRef50_Q1IZ80 Potassium proton antiporter regulatory subunit, CPA2 family 2.48346045292e-06 6.15760034536e-05 23856384756.4 +UniRef50_Q51416 ATP dependent protease ATP binding subunit like protein AmiB 1.02857217666e-06 2.00214715383e-06 393044165.392 +UniRef50_C3YC75 7.12178172882e-09 1.29775847779e-07 49516951.599 +UniRef50_UPI0002492D8D transketolase 1.39747773338e-07 3.99072219756e-08 -40306855.7663 +UniRef50_UPI0003EB3D8F hypothetical protein 3.1132416975e-07 2.03299058961e-07 -43611062.8427 +UniRef50_UPI000255D367 30S ribosomal protein S3 2.72568388437e-06 8.342153111e-06 2267437548.62 +UniRef50_UPI0003B5823D dihydrolipoamide succinyltransferase 8.02500430363e-08 7.28996358487e-07 261906848.56 +UniRef50_I7B1F5 TRZ ATZ atrazine degradation family enzyme 7.09962959227e-06 1.9546252697e-05 5024854484.61 +UniRef50_I6Q147 IS861, transposase OrfB 3.41354307019e-06 4.40172007309e-07 -1200386385.45 +UniRef50_UPI00037D6715 hypothetical protein 3.31050893557e-07 8.70666870102e-08 -98499418.2059 +UniRef50_D4HDK2 Transporter, anaerobic C4 dicarboxylate uptake family 9.44502057218e-07 5.91509023624e-05 23498638076.1 +UniRef50_Q5HQV6 3.36412819943e-05 7.57222321012e-06 -10524398934.5 +UniRef50_Q94BZ7 DNA gyrase subunit B, mitochondrial 2.23729522668e-08 2.29406004848e-07 83581783.9082 +UniRef50_P50840 Putative RNA methyltransferase YpsC 5.33417924636e-05 5.12598869241e-05 -840490814.15 +UniRef50_UPI0004728778 hypothetical protein 1.05616600714e-07 1.86145888181e-07 32510661.5559 +UniRef50_A7FVN3 Carbon monoxide dehydrogenase 1.43215453489e-06 7.22702766858e-06 2339461395.16 +UniRef50_L0GY09 AAA+ family ATPase 2.88585029476e-06 1.40515482254e-06 -597774932.312 +UniRef50_A6LVS2 Restriction endonuclease 1.46075327188e-06 9.51492496194e-06 3251567947.08 +UniRef50_P66717 Probable DNA directed RNA polymerase subunit delta 7.68516023522e-05 0.000100705323525 9630039955.53 +UniRef50_W5XBG0 Leucyl phenylalanyl tRNA protein transferase 1.77021805482e-07 1.15772129991e-06 395920420.437 +UniRef50_R8ZDY1 2.2010844831e-06 2.01352299003e-06 -75720876.3907 +UniRef50_UPI000477AEDD pseudouridine synthase 9.91005262121e-07 2.05999857157e-07 -316916315.084 +UniRef50_X7E4C5 4.58701515345e-07 9.3596353762e-08 -147397434.075 +UniRef50_A6M139 von Willebrand factor, type A 3.05807775304e-06 1.03322539793e-05 2936674206.72 +UniRef50_B7NKV9 Phosphoheptose isomerase 5.02882655277e-07 1.4970082601e-07 -142583838.504 +UniRef50_B9TEU6 1.50750497351e-07 1.50617567623e-06 547201777.651 +UniRef50_E8SHT3 Chromosome partitioning protein ParB Stage 0 sporulation protein J 0.000312267521535 6.52912722147e-05 -99707342589.9 +UniRef50_M9V8S5 Cellulase 1.07443829842e-06 5.81875691343e-05 23057271775.4 +UniRef50_C3X191 1.77338467117e-07 1.63269972066e-07 -5679624.09194 +UniRef50_X5DRB4 ABC type iron transporter, substrate binding lipoprotein 1.09437970387e-07 9.90725946941e-07 355786770.754 +UniRef50_Q3J5T4 50S ribosomal protein L11 0.00139199499904 2.45855772567e-05 -5.52039963573e+11 +UniRef50_P09099 Xylulose kinase 2.6972184793e-05 1.46402956113e-05 -4978534991.95 +UniRef50_N8HI80 8.3782591309e-08 1.40835601794e-07 23033000.452 +UniRef50_W0YQ62 Fusaric acid resistance protein 5.36709936769e-07 9.80033313642e-07 178975087.433 +UniRef50_Z5X6F0 1.57932355862e-07 8.41816912623e-07 276092587.772 +UniRef50_L9IFJ0 BFD like [2Fe 2S] binding domain protein 4.68741420051e-06 4.30032067258e-08 -1875005711.52 +UniRef50_Q031D5 Phosphoserine aminotransferase 1.56850133866e-06 1.91629184058e-06 140407293.494 +UniRef50_UPI000362AEF0 hypothetical protein 1.50753902652e-07 2.03325586753e-06 759989144.119 +UniRef50_G3W4Q5 1.28363144715e-05 4.50138816053e-07 -5000451107.55 +UniRef50_W7X105 2.24249102288e-06 3.15284738642e-06 367522035.29 +UniRef50_F5M0G6 Response regulator receiver SARP domain containing protein 1.95037146735e-05 1.68540739684e-05 -1069692467.4 +UniRef50_UPI00035E64FF hypothetical protein 5.32328295747e-08 1.62396901007e-07 44070875.2309 +UniRef50_UPI00036BE8CD hypothetical protein 1.7294366263e-08 9.68483347305e-07 384006664.048 +UniRef50_UPI00031F67D7 hypothetical protein 8.93106652698e-07 2.62825054253e-07 -254452415.717 +UniRef50_E8NRV4 1.04195027678e-06 1.85279536345e-07 -345848490.446 +UniRef50_UPI0003B36054 riboflavin synthase subunit alpha 2.42622503288e-07 1.64145938764e-07 -31681952.1141 +UniRef50_K7VT43 2.95483217934e-07 5.14123792077e-07 88267882.8031 +UniRef50_UPI00037E7D3D hypothetical protein, partial 1.79703098997e-06 4.3565151384e-06 1033295159.12 +UniRef50_UPI00037D2DA0 hypothetical protein 5.35347739285e-06 9.5400475928e-07 -1776121089.77 +UniRef50_UPI0003B493CA pseudouridine synthase 4.3335336747e-07 3.77493923411e-07 -22551143.0391 +UniRef50_UPI00047DB330 D ala D ala transporter subunit 8.58580204115e-08 2.43048664741e-08 -24849763.5867 +UniRef50_P54616 Enoyl [acyl carrier protein] reductase [NADH] FabI 5.62826971963e-08 1.39797536062e-05 5621076066.16 +UniRef50_UPI000478BABE ferredoxin 1.2684503966e-07 1.31575319965e-06 479976813.732 +UniRef50_UPI0002E03FC6 hemolysin 3.13871470419e-07 1.05624215414e-07 -84071972.3267 +UniRef50_UPI000364F5FC hypothetical protein 2.51481312238e-08 5.56167962231e-08 12300573.9528 +UniRef50_UPI00037C05D9 hypothetical protein 1.77706551968e-07 1.18508993887e-07 -23898780.633 +UniRef50_UPI000463A1BE homoserine acetyltransferase 5.18384990836e-08 8.33814908584e-08 12734292.8555 +UniRef50_A8F1A5 UDP glucose 4 epimerase 1.92021386452e-06 4.66732232783e-05 18067339081.5 +UniRef50_F3FFT1 4.4757718709e-07 3.94813210547e-07 -21301464.8172 +UniRef50_UPI00047AA814 hypothetical protein 4.15318109155e-08 5.51937610675e-08 5515496.92734 +UniRef50_Q5LW04 Membrane protein, putative 3.02796247737e-06 2.4781821415e-06 -221953068.154 +UniRef50_UPI0003011CF5 hypothetical protein 2.0248256611e-07 2.31716765808e-07 11802205.1621 +UniRef50_A3SLT2 Glutamate dehydrogenase 1.71567865821e-06 2.42204169826e-06 285167427.317 +UniRef50_A0A031UV61 1.90007455242e-07 3.13777964902e-07 49967673.5847 +UniRef50_UPI0004653811 hypothetical protein 1.10435478887e-07 7.27103291112e-07 248956363.16 +UniRef50_Q8CP59 Probable elastin binding protein EbpS 8.32140351875e-05 4.11289250804e-05 -16990275392.6 +UniRef50_UPI000248CD16 PTS system mannitol specific transporter subunit IICBA 1.61649916398e-08 1.44637478462e-07 51865919.4647 +UniRef50_P05342 Homocitrate synthase 4.8631366005e-08 9.47718844693e-08 18627493.5119 +UniRef50_Q8DT75 ATP dependent helicase deoxyribonuclease subunit B 5.44756823373e-05 1.33373849452e-05 -16608035480.9 +UniRef50_UPI00029A0230 SecA DEAD domain containing protein 3.26174459568e-08 3.54871092945e-08 1158518.30416 +UniRef50_H3ZCT1 Putative periplasmic ligand binding sensor protein 3.20883108606e-08 2.76936061859e-06 1105070420.74 +UniRef50_B2V582 Purine nucleoside phosphorylase 5.1921673785e-06 2.31032794423e-05 7230935734.22 +UniRef50_A6LX49 Nitroreductase 6.41407587853e-06 2.60190929686e-06 -1539018429.56 +UniRef50_V5VAK2 1.52618491829e-06 6.64637599475e-05 26216095912.9 +UniRef50_UPI0003B47659 DNA helicase 1.21175537429e-07 1.18152969606e-06 428077985.848 +UniRef50_Q9RS08 4.02228976927e-06 0.000469619058344 1.87967128989e+11 +UniRef50_Q1J0I2 Acid phosphatase vanadium dependent haloperoxidase related protein 1.70958961568e-05 0.000639888977144 2.51429209325e+11 +UniRef50_Q5HN66 A G specific adenine glycosylase 0.000184575329324 4.61918443987e-05 -55867111020.5 +UniRef50_C1CXG1 50S ribosomal protein L22 2.81705961835e-06 0.000501256812034 2.01226244594e+11 +UniRef50_UPI0003620A7F hypothetical protein 1.05606761919e-06 7.01492749984e-08 -398027334.129 +UniRef50_UPI0004797B60 DeoR faimly transcriptional regulator 5.3413347157e-07 1.10351678542e-07 -171085910.233 +UniRef50_X2GNE3 Aconitate hydratase 4.43205394011e-05 1.12474200306e-05 -13352024142.7 +UniRef50_UPI00037C28A3 hypothetical protein 4.32363707923e-08 8.06105387024e-08 15088410.2179 +UniRef50_Q5LZ45 Sensor histidine kinase 4.39994047338e-05 1.8470820442e-05 -10306202749.6 +UniRef50_I2BMM3 SAM dependent methyltransferase 3.84771425101e-06 1.66688638861e-06 -880426969.818 +UniRef50_S7N8D9 3.73755414128e-06 3.34874094057e-07 -1373703690.64 +UniRef50_E8SP16 1.55110952123e-07 1.56440820615e-06 568950595.474 +UniRef50_Q8REV7 Phosphoribosylamine glycine ligase 9.08874772519e-07 9.14931261758e-06 3326765879.59 +UniRef50_UPI0003B37A7B transporter 1.87929490226e-08 8.69383380526e-06 3502220448.39 +UniRef50_F4CM54 Diguanylate cyclase 6.43618596827e-08 4.93578890273e-07 173280182.334 +UniRef50_A6TW03 Methyltransferase type 12 3.93214571719e-06 3.1031527691e-06 -334674626.031 +UniRef50_UPI00046554AE elongation factor G 2.01910224572e-07 2.32991741404e-07 12547989.7582 +UniRef50_P0A4L9 DNA gyrase subunit B 5.56501643766e-05 6.2609292251e-05 2809485321.0 +UniRef50_UPI00037BCC78 hypothetical protein, partial 2.2779567868e-07 4.31735614614e-06 1651005745.26 +UniRef50_L7UJT3 6.62226477192e-07 3.85196216903e-07 -111840515.622 +UniRef50_Q3YS50 2.29729563673e-07 3.15660806463e-07 34691497.2093 +UniRef50_A5UN86 Multidrug efflux permease, AraJ 2.93176708695e-05 1.38452720838e-05 -6246397257.47 +UniRef50_S1EZD1 4.73953884703e-08 7.8571192103e-08 12586054.4967 +UniRef50_Q5NXH9 6.36874448383e-08 1.49562425541e-07 34668783.5142 +UniRef50_I2BZE4 3.71565410131e-06 5.99477717425e-06 920109952.531 +UniRef50_Q49Z78 0.000197913509673 4.57283060761e-05 -61439034214.6 +UniRef50_X1RRN3 Marine sediment metagenome DNA, contig 6.31818709492e-07 1.43842335682e-06 325636194.278 +UniRef50_A7ZMU3 Probable manganese efflux pump MntP 5.09427093074e-05 3.58684257326e-06 -19118144522.4 +UniRef50_S1S3U4 Integral membrane protein 5.52870625181e-07 1.86513655394e-06 529777858.754 +UniRef50_L0DFT8 Arabinose efflux permease family protein 1.37966711738e-05 7.35236310614e-05 24112506638.8 +UniRef50_UPI0003B3A02D AraC family transcriptional regulator 7.53321879241e-08 7.85397458351e-08 1294930.48983 +UniRef50_Q28W31 Transcriptional regulator PpsR 4.98328705518e-05 1.3535030926e-05 -14653883281.5 +UniRef50_A5UN34 Molybdopterin guanine dinucleotide biosynthesis protein B, MobB 2.76129094823e-05 1.76484086778e-06 -10435182491.1 +UniRef50_Q2FDU6 Dehydrosqualene desaturase 0.000128623149623 2.48397643887e-05 -41898626184.3 +UniRef50_A5CVR1 Imidazoleglycerol phosphate dehydratase 1.31182725299e-06 5.74004032043e-07 -297868288.405 +UniRef50_UPI000315C86E DNA invertase 7.33618185325e-07 1.99707840675e-07 -215546157.952 +UniRef50_P25536 Maf like protein YhdE 1.78248514857e-05 3.64588524928e-06 -5724222665.12 +UniRef50_A6VCY0 Oxaloacetate decarboxylase 9.14495448893e-06 3.4123904243e-06 -2314306459.36 +UniRef50_UPI00046D7227 ABC transporter permease 2.28637083251e-06 1.06805459259e-07 -879917287.456 +UniRef50_P0A992 Fructose bisphosphate aldolase class 1 2.2035207065e-05 7.2797821002e-05 20493490173.7 +UniRef50_S6D840 Cobaltochelatase CobT 4.1970248918e-05 4.30193727675e-06 -15207159651.8 +UniRef50_C0Q8E7 Phosphoserine phosphatase 1.00107597085e-06 4.53009638529e-07 -221261103.888 +UniRef50_D8UBN5 9.78287868212e-09 3.71463864838e-08 11046983.8875 +UniRef50_A0A016UJ97 1.51097878153e-07 4.24544446883e-07 110393735.363 +UniRef50_UPI000368D600 hypothetical protein, partial 4.75644027597e-07 2.57494580698e-07 -88069608.7079 +UniRef50_Q898U2 BmrU protein 3.92033178228e-06 1.08389657175e-05 2793137420.83 +UniRef50_D4KWU8 N methylhydantoinase A acetone carboxylase, beta subunit 6.07632576895e-06 1.19768719334e-05 2382122894.43 +UniRef50_Y3F751 2.91254428598e-05 2.20106542379e-05 -2872327474.94 +UniRef50_V4J8H7 9.69955197423e-07 2.84758717061e-07 -276622227.428 +UniRef50_C6STY1 7.12237714815e-06 9.02927955779e-05 33576918535.9 +UniRef50_N2KV62 Transposase IS66 family protein 2.36924537972e-07 4.95077337218e-07 104219452.947 +UniRef50_A3SMT4 1.56208431973e-07 1.70246624926e-07 5667390.76313 +UniRef50_UPI000466B777 hypothetical protein 3.88576144811e-08 9.21973416065e-08 21533902.3926 +UniRef50_UPI0003B73659 ActP protein 4.11618274984e-08 1.41510955897e-07 40512174.557 +UniRef50_UPI00035C4E49 hypothetical protein 6.25847185931e-07 1.59562263036e-07 -188244945.332 +UniRef50_P0ADT1 4.88768768869e-05 1.41347723508e-05 -14025813934.8 +UniRef50_UPI00047198FB DNA resolvase 7.28311414477e-07 1.59390613568e-07 -229680308.77 +UniRef50_Q899S7 DNA replication and repair protein RecF 6.763645327e-06 1.41605365713e-05 2986215765.39 +UniRef50_UPI0003AA2F1C 3 phosphoglycerate dehydrogenase 1.04137488984e-07 1.13390022492e-07 3735361.31853 +UniRef50_X0YNP2 Marine sediment metagenome DNA, contig 2.39197256315e-07 1.98911126115e-07 -16264005.1282 +UniRef50_UPI0003B51ADA thiamine biosynthesis protein ThiF 3.92554490032e-08 8.70939792351e-08 19313001.6994 +UniRef50_UPI000406D91D phosphoserine phosphatase 3.42244562327e-07 6.07913087523e-07 107253643.741 +UniRef50_R4HZ48 23S rRNA methyltransferase RlmB 3.13700267745e-06 2.80808277526e-06 -132789000.815 +UniRef50_A0A023X8D6 Transposase 2.41392996845e-07 4.23488168073e-07 73514055.1838 +UniRef50_U3T6T2 Polyhydroxyalkanoate granule associated protein 2.49440080738e-06 2.95753664493e-05 10932918150.5 +UniRef50_C5D8K3 Phosphopantetheine adenylyltransferase 0.000176856415322 4.70212160973e-05 -52416063184.2 +UniRef50_Z5X3K7 4.44620384411e-07 4.95234013065e-07 20433342.9867 +UniRef50_Q9RYU4 NADH dehydrogenase (quinone) 1.97831249177e-05 0.000374013551242 1.43007170003e+11 +UniRef50_K2JGC9 9.43039741426e-08 5.46046255034e-08 -16027114.2114 +UniRef50_Q9HVN8 4.98204428157e-06 6.09298553289e-06 448500615.94 +UniRef50_UPI0001C36F9A outer membrane adhesin like proteiin 4.87196884402e-08 1.42788262073e-07 37976637.5268 +UniRef50_Q83GU1 7.09555827168e-08 8.1462065439e-07 300226715.231 +UniRef50_Q88NC4 GDP mannose 6 dehydrogenase 1.00198839707e-05 2.20588117478e-06 -3154608817.31 +UniRef50_Q88WV4 Formamidopyrimidine DNA glycosylase 6.39387554937e-08 7.81622064859e-07 289737558.955 +UniRef50_D2TWU4 1.77364466731e-06 2.67394014239e-05 10078982366.9 +UniRef50_A8AYT3 Potassium uptake protein, Trk family 4.60954114003e-05 4.16797741363e-05 -1782646949.44 +UniRef50_O49506 Peroxisomal 2 hydroxy acid oxidase GLO5 3.97615820661e-08 1.07291263378e-06 417095757.764 +UniRef50_UPI00047A69B8 hypothetical protein 2.8617229111e-07 1.2517339914e-06 389809107.182 +UniRef50_P50853 Riboflavin biosynthesis protein RibD 1.48386375156e-07 4.72822340835e-07 130978780.622 +UniRef50_UPI0004730689 hypothetical protein, partial 2.62806251686e-07 5.72765848892e-07 125134493.024 +UniRef50_B1MXB4 Endonuclease MutS2 2.58757112327e-08 9.48705011713e-06 3819592209.33 +UniRef50_U3UA35 Regulatory protein HrpB 1.43960835534e-07 2.02697542598e-07 23712729.4222 +UniRef50_R7CL39 Extracellular solute binding protein family 3 1.72359154281e-05 0.000168070132897 60893624536.2 +UniRef50_X1YEM9 1.14352887451e-07 8.12399341433e-08 -13368105.5919 +UniRef50_V7EI41 3.20806774711e-07 3.41938576822e-07 8531167.82858 +UniRef50_UPI0003705056 MULTISPECIES 2.02149123024e-06 2.40647570781e-06 155422957.886 +UniRef50_W8RSY4 Flp pilus assembly protein, pilin Flp 1.28139089152e-06 6.63471904157e-07 -249461477.917 +UniRef50_F8DIB1 1.25186641126e-06 8.58503344326e-07 -158805497.229 +UniRef50_A3V3M4 1.10756626356e-06 1.85691506338e-07 -372172152.166 +UniRef50_D0IU34 Transcriptional regulator of hydrogenase activity 2.74362718687e-06 4.82883478871e-05 18386962643.2 +UniRef50_H7FEN7 1.03253641383e-06 1.70908076434e-06 273129256.434 +UniRef50_U3T2L8 Pirin like protein 2.66227850401e-06 0.000105316599056 41442808917.0 +UniRef50_A6M260 ABC transporter related 2.41033780736e-06 1.48307726135e-05 5014281947.1 +UniRef50_M2FX18 SAM dependent methyltransferase 4.93382475933e-05 1.67482768286e-05 -13156971121.6 +UniRef50_D2RBW1 5.41238533916e-08 1.33656198187e-07 32108183.5655 +UniRef50_D3E362 8.71121512734e-06 1.00107357693e-05 524632430.071 +UniRef50_G0DS16 LacI family transcriptional regulator 7.42693016305e-06 6.13529355479e-05 21770590120.4 +UniRef50_E8QV25 7.25934593918e-07 5.35058891104e-05 21307915321.2 +UniRef50_D9RQI3 Immunoglobulin G binding protein A 3.4698789783e-05 6.18782833145e-06 -11510225006.9 +UniRef50_T2G7U7 Putative integral membrane protein MviN 1.33878022641e-07 6.22318278124e-08 -28924448.05 +UniRef50_A4ECQ1 5.87199597557e-08 2.49175115395e-07 76889083.479 +UniRef50_R4K2P7 Demethylmenaquinone methyltransferase 1.61089326681e-06 6.63957401703e-06 2030140127.72 +UniRef50_UPI00035F2BDC hypothetical protein 6.08295075518e-07 4.43161534345e-06 1543521309.58 +UniRef50_A6LSN9 GTP sensing transcriptional pleiotropic repressor CodY 2.61537636621e-06 1.15593245281e-05 3610781627.54 +UniRef50_Q3JUU4 3.44432256858e-07 3.52605845544e-07 3299778.05375 +UniRef50_S5Y2G0 Alpha beta fold family hydrolase 3.82076712572e-06 3.49487225087e-06 -131567760.157 +UniRef50_E6UYE2 Oxidoreductase FAD NAD binding domain protein 6.01039619697e-06 7.47728237143e-06 592199949.347 +UniRef50_UPI00035F6127 hypothetical protein 1.42965623319e-07 1.75641537002e-07 13191667.3324 +UniRef50_B7H179 Ferric alcaligin E 1.11116962251e-06 5.87061348075e-05 23251794214.9 +UniRef50_UPI00026CA76F BLUF domain containing protein 6.18829489919e-06 4.8412574623e-06 -543815543.281 +UniRef50_B8GLJ6 5.06914610605e-08 7.61157111904e-08 10264081.7681 +UniRef50_M0UCQ8 1.34906592086e-07 9.58278742817e-08 -15776557.9274 +UniRef50_Q08UF6 1.53019626108e-06 2.42228329614e-06 360146483.193 +UniRef50_UPI00041CAC19 hypothetical protein 4.45821545997e-07 6.47006920291e-07 81221004.4247 +UniRef50_A0A031I5W8 1.00022465565e-06 7.11707566996e-07 -116477889.192 +UniRef50_UPI0004750092 HAD family hydrolase 1.87616251786e-07 8.391742689e-07 263041967.025 +UniRef50_UPI00037547C0 hypothetical protein 1.83986028447e-07 6.90023971584e-08 -46420302.9592 +UniRef50_D1ABT4 Transglutaminase domain protein 1.34278610735e-07 1.1450204973e-06 408048902.802 +UniRef50_S5XRZ9 9.23024188812e-06 1.28450442334e-05 1459340065.4 +UniRef50_P27297 Protein bax 1.06261850832e-05 2.81254004947e-06 -3154464384.32 +UniRef50_T2HU52 Conjugal transfer protein 1.11334675313e-06 2.06750274623e-07 -366004123.563 +UniRef50_H8GVP7 Alpha amylase 1.59635914759e-06 0.000355316863556 1.42801308268e+11 +UniRef50_F2HR75 0.000148041826021 3.08156561942e-05 -47325643286.0 +UniRef50_P64274 Transcription elongation factor GreB 9.52940513262e-06 4.82806602495e-06 -1897988289.68 +UniRef50_Q72TM7 Potassium transporting ATPase A chain 8.07216730493e-08 1.77626566707e-05 7138414140.31 +UniRef50_UPI00041218DC peptide ABC transporter permease 9.62446188e-07 5.72898347339e-07 -157265243.564 +UniRef50_UPI0003B710BC hypothetical protein 1.69493399885e-07 8.59529015332e-08 -33726324.3418 +UniRef50_UPI00036FA209 hypothetical protein 3.62913594103e-08 7.23494307578e-08 14557085.8853 +UniRef50_UPI000478D470 hypothetical protein 6.16373838133e-08 3.42092625119e-08 -11073069.1503 +UniRef50_Q92DC2 Serine protein kinase RsbW 1.10395991086e-06 1.22367210878e-05 4494432301.46 +UniRef50_Q5LYH1 Dihydroxy acid dehydratase 8.06699910533e-05 5.85520457941e-05 -8929285918.85 +UniRef50_B9TGU7 1.90328162922e-07 5.33660813462e-07 138607604.188 +UniRef50_Q57NQ3 3.21125959461e-07 4.21344363879e-07 40459399.6817 +UniRef50_A6LS38 Tetratricopeptide TPR_2 repeat protein 1.19836821857e-06 2.13865178833e-05 8150203756.09 +UniRef50_B8ZNP1 Pantothenate kinase 3.36509900168e-05 6.96482045516e-05 14532517243.2 +UniRef50_UPI00036C732F magnesium chelatase 1.2000624151e-07 2.70249066739e-07 60654872.2317 +UniRef50_P25549 Arylsulfatase 1.75430262597e-05 1.67989585173e-05 -300389278.345 +UniRef50_P75800 Putative cyclic di GMP phosphodiesterase YliE 3.03515835543e-05 1.01305015105e-05 -8163498961.66 +UniRef50_S5MYM7 Phosphoserine phosphatase 1.00107597085e-06 4.53009638529e-07 -221261103.888 +UniRef50_UPI0002490F21 branched chain amino acid transporter II carrier protein 7.5299879238e-08 5.5820500607e-08 -7864064.19219 +UniRef50_A6LYA1 Phage replisome organizer, putative 1.87803974553e-06 9.40180338959e-06 3037435710.07 +UniRef50_D2U1P2 1.01242092128e-06 5.28209841651e-07 -195481954.784 +UniRef50_Q30UY1 0.000107188839784 1.18377522267e-05 -38494404136.3 +UniRef50_UPI00038283FF 30S ribosomal protein S17 4.2042186347e-07 2.36765376889e-06 786121415.441 +UniRef50_K2A1K8 2.93801491532e-05 5.66609276111e-06 -9573655569.69 +UniRef50_Q3JTY3 6.58405794467e-07 1.5316518423e-06 352540145.444 +UniRef50_P74587 Carbamoyl phosphate synthase small chain 2.25891074973e-07 6.75934614756e-08 -63906689.0989 +UniRef50_M5NSU4 Membrane protein 1.13951041875e-07 3.81468351799e-07 108000020.823 +UniRef50_UPI0003B53AE0 hypothetical protein 5.32401572573e-08 8.29746762091e-08 12004190.1844 +UniRef50_Q21NS8 Lipid A export ATP binding permease protein MsbA 8.46198254108e-08 4.87887184377e-08 -14465457.5822 +UniRef50_UPI00036998C6 hypothetical protein 4.28937362125e-07 6.58143157671e-08 -146597229.836 +UniRef50_Q1IJT2 Adenylosuccinate synthetase 3.86785327876e-08 1.17854259033e-07 31964212.2807 +UniRef50_UPI000378226F hypothetical protein 2.82236688363e-08 3.99012689755e-07 149692077.838 +UniRef50_Q2NFZ1 Digeranylgeranylglycerophospholipid reductase 1 3.34050099115e-05 4.13212017908e-05 3195863804.27 +UniRef50_A7FD15 Glutamate racemase 7.33372697701e-06 6.42242449804e-06 -367903993.699 +UniRef50_Q5E8X7 3 ketoacyl CoA thiolase 3.38575586643e-05 6.23721539973e-05 11511692049.4 +UniRef50_F0MDS8 Ribonuclease E 1.33680915218e-06 4.33833136964e-05 16974689853.1 +UniRef50_Q9Z7H0 Uridine kinase 1.34863350197e-07 1.95542275674e-06 734982173.196 +UniRef50_UPI000467A3EC cupin 6.5150823885e-07 2.17184232814e-07 -175341930.992 +UniRef50_P0ACE1 Hydrogenase 2 large chain 3.12555124396e-05 1.05664377758e-05 -8352433325.27 +UniRef50_UPI000468F1F3 hypothetical protein, partial 1.57690144949e-06 7.70389166955e-07 -325598905.478 +UniRef50_G4LC92 2.04913533208e-05 1.67882825218e-05 -1494975123.35 +UniRef50_UPI00031A1A33 hypothetical protein 6.20886911887e-08 5.44192420364e-08 -3096250.73751 +UniRef50_Q28K97 Taurine import ATP binding protein TauB 8.52049955463e-08 1.03504839523e-07 7387871.57773 +UniRef50_Q9RUX9 1.35496000475e-05 0.0005068317117 1.99144041726e+11 +UniRef50_M5R129 Bacteriophage replication 1.89809794024e-06 4.66120556427e-06 1115500454.96 +UniRef50_G6Y6C6 5.65882778137e-06 4.60710263245e-07 -2098543830.14 +UniRef50_P73016 Enoyl [acyl carrier protein] reductase [NADH] FabI 4.24505095136e-08 3.36347104132e-07 118649661.764 +UniRef50_P0ACH9 Melibiose operon regulatory protein 3.13230269599e-05 1.129102604e-05 -8087164591.66 +UniRef50_UPI0003770906 membrane protein 1.23209880843e-07 1.57441250441e-07 13819623.9729 +UniRef50_UPI00035D9DA9 hypothetical protein 1.23990260685e-07 3.61596057602e-06 1409751267.59 +UniRef50_O76511 Thymidylate synthase 2.85302606085e-07 2.0927438731e-06 729686219.294 +UniRef50_G5FKI8 1.72487459061e-06 1.14070981381e-06 -235834488.902 +UniRef50_UPI00016C4DB7 branched chain amino acid transport ATP binding protein 8.70191304705e-08 1.46093730295e-06 554667626.102 +UniRef50_UPI0003B40598 major facilitator transporter 5.70262590183e-08 1.99305033888e-07 57439687.3719 +UniRef50_UPI00039F2091 potassium transporter 1.47779598854e-07 1.56416817285e-07 3486951.07118 +UniRef50_E3H4N2 Periplasmic binding protein 7.79552935173e-08 1.19523794993e-06 451060718.993 +UniRef50_UPI00047150D6 hypothetical protein 2.90893697153e-07 3.56278564807e-06 1320902931.22 +UniRef50_UPI00036C6373 tail fiber protein 7.32124326048e-08 2.33857953437e-07 64854568.1021 +UniRef50_UPI0004728F0C DNA mismatch repair protein MutL 2.68462120821e-08 7.08654306481e-08 17771098.7117 +UniRef50_UPI00041001CB hypothetical protein 4.25877151765e-08 7.66636522004e-08 13756873.9353 +UniRef50_K7U6X3 1.05882543757e-06 4.17777703601e-07 -258798836.744 +UniRef50_U3SR01 4.50294280596e-05 2.50711205447e-05 -8057413659.74 +UniRef50_C7DF61 Chemotactic signal response protein, putative 1.15145333304e-06 5.88924754004e-07 -227099690.359 +UniRef50_A0A023RXZ9 Peptide transporter 1.265990815e-06 7.10388697802e-05 28168167447.8 +UniRef50_A6M202 Nitroreductase 1.74224302547e-05 7.99065265672e-06 -3807724357.23 +UniRef50_A9MD69 9.48433294362e-06 9.27165299754e-05 33601859315.7 +UniRef50_Q3JNQ1 2.02622699755e-06 6.0076060546e-07 -575478274.926 +UniRef50_B1ZHY8 Pyridoxal 5 phosphate dependent protein beta subunit 1.44169711234e-06 9.86511342191e-06 3400636531.12 +UniRef50_R5HQZ2 TRAP transporter DctM subunit tripartite ATP independent periplasmic transporter solute receptor DctP family 9.69309895129e-07 2.43438350076e-07 -293043250.183 +UniRef50_D2NLM2 Transcriptional regulator 5.80579479589e-06 4.98212180715e-06 -332526893.159 +UniRef50_UPI0003B4984E trehalose phosphatase 3.34519271892e-07 2.59270922195e-07 -30378682.1738 +UniRef50_D8JJA0 Flavodoxin reductase family protein 1 2.74571937307e-06 5.33207792291e-05 20417772289.6 +UniRef50_UPI0003B42639 heme ABC transporter ATPase 3.27566694672e-07 4.87882166355e-08 -112546292.58 +UniRef50_UPI00029ADE28 50S ribosomal protein L22 2.04437180746e-07 3.58998688252e-06 1366787959.97 +UniRef50_D7DK39 2.54757879259e-07 1.74232323308e-07 -32509155.0971 +UniRef50_UPI00037A6F5F hypothetical protein 1.68998196174e-07 2.15474190506e-07 18762929.2364 +UniRef50_UPI0003642305 hypothetical protein 7.99728443918e-08 3.10902035097e-07 93228948.1074 +UniRef50_UPI0003C7E218 hypothetical protein 2.29239941168e-07 5.72700117241e-07 138659087.811 +UniRef50_UPI000415A98C 3 hexulose 6 phosphate synthase 1.23292102048e-07 1.93882407166e-07 28498172.4166 +UniRef50_Q8E7H3 Sensory transduction protein LytR 3.60408532593e-05 2.38520267181e-05 -4920778848.4 +UniRef50_Q9RTV3 3.65034324106e-06 0.000480658044284 1.92573862454e+11 +UniRef50_F3GAC2 1.71494568023e-06 1.79416010205e-06 31979834.159 +UniRef50_Q04440 Cytochrome c oxidase subunit 1 2.59521030308e-07 3.49753103289e-06 1307224372.89 +UniRef50_Q4L7K3 UPF0421 protein SH1063 0.000181001297953 4.04296698988e-05 -56750491253.3 +UniRef50_Q8CMQ2 Alkyl hydroperoxide reductase subunit C 0.000148373139772 5.62444751678e-05 -37193472446.6 +UniRef50_UPI00016C50A5 N acetylmuramic acid 6 phosphate etherase 2.58224168548e-08 5.63091977782e-08 12307887.5736 +UniRef50_UPI00047D14DB cytochrome C oxidase assembly protein 9.61856960834e-08 2.45828268555e-07 60412542.8278 +UniRef50_T1CPC3 Magnesium protoporphyrin chelatase 5.69763612556e-07 6.50460967098e-06 2395970182.54 +UniRef50_R0ZN34 1.40678008262e-06 2.68628883158e-05 10276943275.3 +UniRef50_M8Q184 Prophage tail length tape measure family protein 1.00842205389e-06 1.81919941603e-06 327320770.453 +UniRef50_Q3M244 Phosphoribosyl AMP cyclohydrolase 3.64084507058e-07 1.58070497219e-07 -83170383.8482 +UniRef50_UPI000360A98B hypothetical protein, partial 9.1832894984e-07 2.42974782543e-06 610178347.271 +UniRef50_V9R1X9 Acriflavine resistance protein B 9.22042096269e-06 2.49875192007e-06 -2713620276.66 +UniRef50_Q6G3Y9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.000225879710182 3.87876723162e-05 -75531351564.0 +UniRef50_P42405 3 hexulose 6 phosphate synthase 9.63742585113e-05 9.56843054258e-06 -35044577978.3 +UniRef50_U3STF6 7.81270110667e-05 1.56730461903e-05 -25213432016.9 +UniRef50_Q5HKV0 Indole 3 pyruvate decarboxylase 0.000212264419487 5.95358167122e-05 -61658411131.0 +UniRef50_Q5HRL9 RNA polymerase sigma factor sigW, putative 4.57115858125e-05 1.35766533028e-05 -12973266594.1 +UniRef50_UPI0003B61754 transporter 2.54202769767e-07 3.05085050717e-07 20541801.2153 +UniRef50_A3PHJ2 5.9772306434e-07 4.01791435631e-06 1380773195.04 +UniRef50_A7X0F5 Na H(+) antiporter subunit G1 9.35111552297e-05 0.000129056256333 14349993502.8 +UniRef50_UPI00039FEC41 hypothetical protein 5.31610297012e-08 3.30064596023e-08 -8136647.27331 +UniRef50_Q89P04 Blr3679 protein 0.000134067948307 3.78137333201e-05 -38859007762.3 +UniRef50_Q8XZP8 Sulfate thiosulfate import ATP binding protein CysA 8.11692831193e-07 1.5493342529e-05 5927162147.1 +UniRef50_M6TCA5 Transcriptional regulator domain protein 1.36938052374e-07 1.24560358728e-06 447581881.299 +UniRef50_Q21QM7 Adenine phosphoribosyltransferase 4.58034412441e-07 2.01912434691e-07 -103399585.388 +UniRef50_A6E0W9 1.08385718858e-06 2.84085662353e-07 -322877579.438 +UniRef50_B8IL91 Endoribonuclease L PSP 1.57794945669e-05 6.2907375522e-06 -3830727646.98 +UniRef50_UPI00032A8D12 PREDICTED 4.87753141301e-07 2.71755108757e-06 900196793.607 +UniRef50_A5UN72 Predicted transcriptional regulator 2.58157449824e-05 2.28632287886e-06 -9499116441.66 +UniRef50_M1MA52 D alanyl D alanine carboxypeptidase 3.71535728465e-06 1.45761759296e-05 4384645764.18 +UniRef50_UPI0002556197 coproporphyrinogen III oxidase 3.50474357464e-07 4.45719674196e-07 38451703.1562 +UniRef50_Q21J87 2.57369353376e-07 1.77695931482e-06 613477114.899 +UniRef50_Q3J216 Putative class I holin 1.40643784758e-05 4.68756674913e-06 -3785533960.48 +UniRef50_UPI000377F527 hypothetical protein 4.80886116183e-07 4.01904624068e-07 -31885797.5787 +UniRef50_C6SU00 3.03051667575e-05 7.71517864425e-06 -9119855411.63 +UniRef50_UPI0003B3C220 DNA repair protein RecO, partial 1.31720268035e-07 4.01872517414e-07 109063778.215 +UniRef50_UPI00047C9CC6 hypothetical protein 1.38994065938e-07 3.38446452111e-06 1310236249.15 +UniRef50_Q5F9J0 ADP L glycero D manno heptose 6 epimerase 1.13471942806e-05 4.07589827804e-05 11873899940.6 +UniRef50_D9S0U1 Amine oxidase 2.8295022501e-06 3.39464198664e-06 228153846.686 +UniRef50_B4RJU8 Tpc 3.20954230783e-06 2.17566167269e-05 7487681541.19 +UniRef50_UPI0003A37E8C protease 2.06138888301e-07 1.54457396144e-07 -20864452.587 +UniRef50_UPI000476C2A7 ATPase AAA 4.97971851641e-08 9.00040106754e-08 16231988.8521 +UniRef50_A6DZ03 5.05054023371e-05 4.60796461851e-06 -18529358831.9 +UniRef50_Q8NR12 Ribose import ATP binding protein RbsA 3.33629928643e-08 1.28226291259e-07 38297477.6655 +UniRef50_G2JZ42 Carnitine transport binding protein OpuCC 0.000198117278382 9.15125617052e-05 -43037632309.5 +UniRef50_B2GI94 Elongation factor P 3.07830177934e-07 2.96930514669e-06 1074470104.86 +UniRef50_UPI0004783ADB cell wall hydrolase 1.60815933582e-07 4.09489797081e-08 -48391760.2119 +UniRef50_UPI00047D45FE arginine ABC transporter permease 1.08268274711e-07 2.48833198363e-07 56747784.6039 +UniRef50_S1S637 1.655503621e-06 2.77872412152e-07 -556166624.449 +UniRef50_Q18C32 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.50252640178e-07 1.16510577651e-07 -13622084.7038 +UniRef50_Q1J2H5 Pyruvate kinase 6.29403728881e-06 0.000588782914657 2.35157907736e+11 +UniRef50_Q1GIU5 Cell division protein ftsA 5.4380014543e-05 1.03493369603e-05 -17775724857.3 +UniRef50_D4GMR6 2.99397312428e-06 3.48953214438e-07 -1067826995.65 +UniRef50_UPI00029B2672 GntR family transcriptional regulator, partial 4.17685392267e-07 9.11968312661e-07 199548080.497 +UniRef50_Q2YCK0 Glycine cleavage system H protein 1.73759018497e-05 4.96330596971e-06 -5011117276.44 +UniRef50_A3LIM1 8.170887115e-06 9.08666785215e-06 369711921.481 +UniRef50_Q5XB25 Exodeoxyribonuclease 7 large subunit 6.71860777953e-05 2.91664467262e-05 -15348991615.9 +UniRef50_UPI000370F15C hypothetical protein 1.26254349018e-07 2.01505973182e-07 30380004.1163 +UniRef50_G3XD61 UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase 1.29002718057e-05 4.56988449836e-06 -3363079581.32 +UniRef50_X5ZEE6 2.59249311424e-06 1.68095180831e-07 -978759196.426 +UniRef50_X1KYQ6 Marine sediment metagenome DNA, contig 2.60664074491e-07 2.8852742925e-07 11248778.238 +UniRef50_UPI00034A7DFF hypothetical protein 1.45091890612e-08 3.70884597519e-07 143873125.613 +UniRef50_UPI00037DAE35 hypothetical protein 1.17908918598e-07 2.0244260177e-07 34127285.2415 +UniRef50_UPI00037E1EAE short chain dehydrogenase 1.94182088949e-07 4.42105901748e-07 100089885.594 +UniRef50_UPI000415BCBB MarR family transcriptional regulator 1.34145716e-07 1.07723481974e-06 380736644.185 +UniRef50_Q6NBT1 Sulfate thiosulfate import ATP binding protein CysA 8.68330497486e-06 2.16742500443e-06 -2630540702.9 +UniRef50_UPI000368D6F0 hypothetical protein 1.92220733129e-07 2.22981753207e-06 822602831.857 +UniRef50_B9DLF5 DNA polymerase III gamma and tau subunits 0.000270772474455 8.24267245966e-05 -76037490479.9 +UniRef50_E5AVM4 Transcriptional regulators, LysR family 1.25549663697e-06 5.70508560548e-05 22525271283.0 +UniRef50_R6J1R9 2.26669780816e-07 1.56112932497e-07 -28484665.4963 +UniRef50_UPI000468AE38 cupin 1.00693742006e-06 3.19217275303e-07 -277641061.714 +UniRef50_Q9UY68 N5 carboxyaminoimidazole ribonucleotide mutase 8.21415623014e-07 0.000128947793688 51726191112.3 +UniRef50_UPI0002F45A92 hypothetical protein 2.12775207723e-07 4.81994287538e-07 108687046.211 +UniRef50_Q9RVV9 DNA directed RNA polymerase subunit beta 2.01427621312e-06 0.000298571583257 1.19723824021e+11 +UniRef50_Q49UM5 Adenylyl sulfate kinase 0.000128117946947 4.29336847484e-05 -34389931978.0 +UniRef50_A5UNL3 Adhesin like protein 3.49912040045e-05 1.30543198649e-05 -8856189323.0 +UniRef50_F2AIB1 Molecular chaperone small heat shock protein 1.58395206665e-06 1.06667554089e-06 -208830881.146 +UniRef50_UPI00036E0C31 hypothetical protein 1.07533614235e-07 4.88836506504e-07 153936656.722 +UniRef50_Q2RPW9 Phosphoglycolate phosphatase 6.83146150906e-08 1.4853183202e-07 32384674.8503 +UniRef50_Q637E1 Phosphonate ABC transporter, phosphate binding protein 0.000170656142937 4.26598418179e-05 -51673677453.0 +UniRef50_UPI00046F5175 ATPase 2.88136860052e-08 9.62933042768e-08 27242349.9643 +UniRef50_B4U470 Nickel or oligopeptide transport ATP binding protein 1.44446169206e-06 1.0361989656e-05 3600115469.42 +UniRef50_P0AA87 Thiol 6.31829578192e-05 2.98203894202e-05 -13468878267.4 +UniRef50_UPI0003708E67 hypothetical protein 3.53518796422e-08 4.08007198546e-08 2199763.65853 +UniRef50_Q28UZ1 1.68791132125e-07 1.34658193061e-07 -13779886.3584 +UniRef50_B8G0S1 Glycosyl transferase family 4 2.4320610591e-06 1.30928295672e-05 4303883069.06 +UniRef50_UPI00046CFF8D phenylacetate CoA ligase 5.63540337813e-08 6.96269403389e-07 258341687.355 +UniRef50_L1K7B5 2.24616590853e-05 1.00134539023e-05 -5025493189.03 +UniRef50_P29823 Lactose transport system permease protein LacF 4.1872166478e-06 1.97756722234e-06 -892062588.506 +UniRef50_I4Y2D8 1.02300699327e-05 2.82664416606e-06 -2988853832.24 +UniRef50_A0A011QYY7 L threonine dehydratase biosynthetic IlvA 1.87109510819e-07 3.51207216829e-07 66248257.6215 +UniRef50_UPI0002192A5B cyclic nucleotide binding protein, partial 1.26284299972e-06 2.04166906102e-07 -427400530.411 +UniRef50_K6BVJ8 4.2143296543e-08 3.96522787554e-07 143067349.247 +UniRef50_A8FF31 3 dehydroquinate dehydratase 9.40057373735e-08 1.86942872426e-06 716760046.698 +UniRef50_K1VMV2 2.17434706207e-06 2.21997421502e-06 18420241.554 +UniRef50_Q5LUZ4 Prolipoprotein diacylglyceryl transferase 9.69019143465e-05 2.235458425e-05 -30095671958.6 +UniRef50_R7PUB9 2.36795786484e-05 1.94287306055e-06 -8775374785.17 +UniRef50_A2SFU4 Transport protein B 4.00716105696e-06 7.63294253207e-05 29197385577.2 +UniRef50_N0GPT3 L asparaginase I 3.58372774223e-06 6.53837723686e-06 1192828258.61 +UniRef50_R7PUB1 3.40672570152e-05 1.98982142971e-06 -12950054380.3 +UniRef50_B6JGY2 Peptide chain release factor 3 0.000144030370359 4.4878011983e-05 -40029023812.7 +UniRef50_D2SD20 TRAP transporter solute receptor, TAXI family 1.15239900667e-07 2.06067941359e-07 36668394.6128 +UniRef50_P05041 Aminodeoxychorismate synthase component 1 2.00312560123e-05 1.24723505506e-05 -3051622893.09 +UniRef50_Q9RZS9 GGDEF family protein 1.13793548035e-06 0.000182196679135 73095636654.2 +UniRef50_R6C7G1 Phage terminase 9.35117743834e-08 7.36313287246e-07 259506858.804 +UniRef50_Q2RYH6 KpsF GutQ 2.77098583371e-05 1.03249224889e-05 -7018511939.07 +UniRef50_B2I4P8 Peptide methionine sulfoxide reductase MsrA 5.13684557461e-07 3.08964459525e-05 12265893613.6 +UniRef50_Q9SJM7 Uridine nucleosidase 1 6.04471433116e-08 7.22201406908e-08 4752903.51291 +UniRef50_C5WH94 Tetra tricopeptide repeat family protein 5.63254290967e-05 3.20965063141e-05 -9781513449.65 +UniRef50_UPI0003607183 hypothetical protein 1.54754038063e-07 1.91542237445e-07 14851847.5325 +UniRef50_R6R0W0 Electron transfer flavoprotein domain containing protein 5.67306696935e-06 5.70660299901e-06 13538906.7071 +UniRef50_D4HFL5 AMP binding enzyme 1.98239267955e-06 5.48453008253e-05 21341404719.3 +UniRef50_B9KSR7 1.70574734514e-05 5.60502775299e-06 -4623492865.76 +UniRef50_B9J5U3 1.57719640427e-06 1.81017232643e-07 -563654664.632 +UniRef50_B9KSF7 Entericidin EcnAB 4.78240128508e-06 8.4341629595e-06 1474261000.12 +UniRef50_Q928I1 Triosephosphate isomerase 1 3.86734406747e-05 2.23308783928e-05 -6597692938.99 +UniRef50_UPI00037BAD1C hypothetical protein 1.16421623274e-08 2.09540025578e-08 3759304.17014 +UniRef50_M1M081 DNA mismatch repair protein MutS 3.40449036575e-06 1.61035886607e-05 5126781817.15 +UniRef50_Q3M630 DNA topology modulation protein 1.06036250001e-07 1.46575448713e-06 548934937.948 +UniRef50_M5KBZ8 4.12806961006e-06 4.5474397997e-07 -1482966633.64 +UniRef50_X2GPQ0 2.49222912468e-08 3.9432153995e-07 149131009.74 +UniRef50_Q9RWZ0 1.74224302547e-05 5.89430262056e-05 16762374100.4 +UniRef50_Q7CGI0 Cell division protein FtsP 2.89849823589e-05 1.18728302618e-05 -6908385791.32 +UniRef50_UPI00036E8C31 hypothetical protein 2.65389291912e-06 3.51635433376e-07 -929449598.87 +UniRef50_A7NI76 AAA ATPase central domain protein 3.73938161566e-06 0.000106834373395 41620713299.0 +UniRef50_P24173 Lipopolysaccharide heptosyltransferase 1 3.70041992576e-05 1.021387734e-05 -10815581712.4 +UniRef50_Q1R011 3 octaprenyl 4 hydroxybenzoate carboxy lyase 7.07112221482e-05 6.82057048299e-06 -25793440103.7 +UniRef50_UPI0003B662E9 uroporphyrin III C methyltransferase 7.35275078914e-08 5.2644238322e-08 -8430832.1917 +UniRef50_D3E2B0 Calcineurin like phosphoesterase 4.05404778582e-05 8.1953407602e-06 -13058128765.9 +UniRef50_A5UNH2 Glycosyltransferase, GT2 family 3.17357199685e-05 2.73441393692e-06 -11708183131.0 +UniRef50_Q5NLZ3 Tyrosine tRNA ligase 8.01499879515e-07 1.60654574323e-07 -258717113.762 +UniRef50_E6SII5 Endonuclease III 3.61437403208e-06 0.000276558927574 1.10191065671e+11 +UniRef50_X6YJ88 3.78566325289e-07 2.90787534417e-07 -35437375.0419 +UniRef50_UPI000441D732 PREDICTED 1.08323711133e-07 3.95595906365e-07 115975310.441 +UniRef50_P32715 Multidrug resistance protein MdtO 4.73586386858e-05 7.07832738041e-06 -16261655969.0 +UniRef50_UPI000315E7F4 hypothetical protein 5.51232177635e-08 3.85238842268e-08 -6701354.64549 +UniRef50_G7D8U7 Biopolymer transport protein 6.03761499101e-06 8.37777887078e-06 944752875.303 +UniRef50_A0A017HLZ7 1.84177191146e-06 7.02253126948e-07 -460037716.775 +UniRef50_V6JSM6 UDP N acetylglucosamine 2 epimerase 1.63886825841e-06 5.24739617613e-05 20522751063.9 +UniRef50_B4U8M6 Glutamate 1 semialdehyde 2,1 aminomutase 4.69046082534e-08 1.47103980062e-07 40451715.9839 +UniRef50_A0A011U926 Polymerase 1.48300302688e-07 1.76380899938e-07 11336481.6975 +UniRef50_UPI000463B6AC molybdopterin biosynthesis like protein MoeZ 2.05063260247e-07 5.33052622705e-07 132413330.506 +UniRef50_P34031 DNA gyrase subunit B 5.47255676056e-08 1.90734755754e-07 54908578.2758 +UniRef50_A0A023LIT9 1.6276234997e-06 2.05201838459e-06 171333422.941 +UniRef50_E5RBE6 Protein smf. domain protein 0.000218020948679 4.45137972063e-05 -70046966221.8 +UniRef50_UPI0003A10A10 hypothetical protein 1.6104116928e-08 2.93460448929e-08 5345928.81616 +UniRef50_Q9RYG5 Methyl accepting chemotaxis protein 5.91361862444e-07 0.000122182316847 49087760616.3 +UniRef50_Q6LRE4 Anhydro N acetylmuramic acid kinase 1.41863383458e-05 1.70867910433e-06 -5037384153.89 +UniRef50_A0A010U7S7 Glutamine tRNA ligase 1.62070942107e-06 7.84970355268e-05 31035916227.5 +UniRef50_UPI00037E096F hypothetical protein 3.01518530361e-08 1.1517170627e-07 34323558.0614 +UniRef50_R7LLC2 Cation efflux protein 3.92237051012e-06 4.93806474628e-06 410048227.108 +UniRef50_F2CXC6 Predicted protein 5.13387069926e-08 4.04291236713e-08 -4404332.66245 +UniRef50_UPI0003799FCE hypothetical protein 1.52166005089e-06 3.28366751475e-07 -481747148.327 +UniRef50_Q2YUY9 N acetylmuramic acid 6 phosphate etherase 0.000152311823614 3.67054031804e-05 -46671730579.5 +UniRef50_D7B3H1 CDP alcohol phosphatidyltransferase 7.69563339957e-06 6.49409271662e-05 23110627572.3 +UniRef50_E6MY79 Phosphoglycerate kinase 9.7963491915e-07 8.13575092068e-06 2889011845.24 +UniRef50_M9TYI3 2.53019622415e-07 8.52488090335e-07 242012776.805 +UniRef50_UPI0004740A93 citrate synthase, partial 1.89269214499e-07 1.16417904346e-06 393583061.44 +UniRef50_M9VKL6 Thiol reductant ABC exporter, CydC subunit 7.67768112925e-07 4.04134262667e-05 16005438703.6 +UniRef50_D4HEU0 Transcriptional regulator, TetR family 3.94584657338e-06 4.36389562582e-05 16024595469.0 +UniRef50_B8A0L8 1.94542899263e-06 1.79649815205e-06 -60125207.9291 +UniRef50_A5UNY6 Adhesin like protein 2.15068518922e-05 1.1086068635e-05 -4206998078.32 +UniRef50_K0PFX8 Group 1 glycosyl transferase 0.000107622468302 2.90447593266e-05 -31722785370.3 +UniRef50_X5EKA8 8.48550437128e-06 6.86783035329e-06 -653074852.155 +UniRef50_Q6A900 Ribonuclease Y 1.46745756494e-06 4.90997271259e-05 19229731735.5 +UniRef50_A7ZN22 Alpha,alpha trehalose phosphate synthase [UDP forming] 2.7469796381e-05 1.06188235924e-05 -6802944499.45 +UniRef50_M9VHV5 Transcriptional regulator 2.25589236365e-06 4.36925648719e-05 16728493176.8 +UniRef50_UPI00036BF090 hypothetical protein 3.43279814745e-08 8.4409372486e-08 20218472.1191 +UniRef50_X5W5P1 Cupin 1.80769829851e-06 7.16667277517e-07 -440462611.63 +UniRef50_P05648 Chromosomal replication initiator protein DnaA 0.000113564731635 6.68566528941e-05 -18856624560.3 +UniRef50_C1DQE7 KHG KDPG aldolase 2.57376810578e-06 3.15629878782e-05 11703303759.8 +UniRef50_B9KXN9 tRNA ) methyltransferase 0.000120231703974 2.95971251012e-05 -36590291702.3 +UniRef50_A3PQ24 Phage integrase family protein 2.55107659281e-05 1.36758569941e-05 -4777897967.32 +UniRef50_P96718 UDP glucose 6 dehydrogenase YwqF 1.20829661313e-06 1.56833704801e-05 5843764949.24 +UniRef50_I1HFT3 1.25287881305e-07 2.90041678708e-07 66513129.768 +UniRef50_I0C140 OppC 0.000126924445712 1.58630125612e-05 -44836863440.1 +UniRef50_G5KE14 Phage terminase, large subunit like protein 7.79843887406e-08 2.05572388529e-07 51508841.1952 +UniRef50_B4RGD5 Patch repair protein 0.000108912907855 9.40381616195e-06 -40173041430.3 +UniRef50_UPI0003442B9F PREDICTED 5.82291780552e-07 2.3177070582e-07 -141509659.247 +UniRef50_D2N4E0 Peptidase propeptide and ypeb domain protein 7.50510669895e-05 1.56342478604e-05 -23987299008.8 +UniRef50_B8JEW4 6,7 dimethyl 8 ribityllumazine synthase 0.000215648454522 0.000109127458277 -43003833343.7 +UniRef50_UPI00016C4567 chemotaxis protein methyltransferase 1.13021342479e-06 5.88442649718e-07 -218719510.172 +UniRef50_UPI0003B71F4A cell wall hydrolase 1.80208024441e-07 9.10392550799e-08 -35998526.4149 +UniRef50_A5VZS9 Ribosomal protein S12 methylthiotransferase RimO 1.11277494258e-05 1.65439681228e-06 -3824508701.19 +UniRef50_D7D802 8.102385349e-08 2.03666697605e-07 49512421.1662 +UniRef50_UPI00037181FA hypothetical protein 6.13558189659e-07 1.68214479329e-07 -179790720.842 +UniRef50_B0VU18 4.76623723326e-07 8.27763282021e-05 33225400629.0 +UniRef50_I7ES66 TRAP transporter, subunit DctM 2.06772052005e-07 2.81742240132e-07 30266384.9345 +UniRef50_P0AAM2 Probable Ni Fe hydrogenase 1 B type cytochrome subunit 5.39712652045e-05 3.40096013652e-06 -20415852723.4 +UniRef50_UPI000472D060 transposase 2.14740062497e-07 2.97784138086e-05 11935217878.4 +UniRef50_A7HHU8 LigA 1.21427234682e-06 1.78526398263e-06 230516330.232 +UniRef50_P33074 L serine dehydratase, beta chain 7.47890918861e-08 1.27499314827e-06 484537105.721 +UniRef50_Q1JF14 Trigger factor 5.66061966744e-05 8.65077366818e-05 12071618634.1 +UniRef50_UPI0002629D2B phenol hydroxylase 2.01455958786e-06 1.00466665675e-07 -772742801.246 +UniRef50_A9C3K7 4.70692549582e-08 1.66741009091e-07 48312955.6811 +UniRef50_UPI000414ACF6 TonB dependent receptor 5.79642479055e-08 2.76292977141e-08 -12246591.644 +UniRef50_B1XKV1 Elongation factor P 1.17457306025e-07 7.05112435617e-07 237243587.156 +UniRef50_UPI000379A93B hypothetical protein 2.06051979774e-06 1.41918362078e-06 -258915284.719 +UniRef50_Q1BN64 Methylmalonate semialdehyde dehydrogenase 2.31972154228e-05 4.99836766018e-05 10814023084.8 +UniRef50_Q3JID5 1.06060571166e-06 4.13104750589e-06 1239575030.89 +UniRef50_B9E8I0 S ribosylhomocysteine lyase 0.000518448955425 9.90487857501e-05 -1.69316995117e+11 +UniRef50_P35755 Iron utilization periplasmic protein 1.49598146176e-06 3.17446417631e-05 12211755356.4 +UniRef50_R9SK57 Molybdate ABC transporter ATP binding protein ModC 1.57391740286e-05 1.10180842614e-05 -1905961873.3 +UniRef50_Q24YW4 Enolase 1 6.56414394538e-08 5.55422728282e-07 197730716.592 +UniRef50_I0C4F0 GTPases 0.000177960036071 4.10352845075e-05 -55278202461.6 +UniRef50_UPI0003A26BF2 twin arginine targeting protein translocase 6.05986919509e-07 3.4428606396e-07 -105651846.816 +UniRef50_UPI00035144CC PREDICTED 1.13514881239e-07 3.69121429389e-07 103191500.133 +UniRef50_UPI00037AC467 hypothetical protein 4.4705954361e-08 2.55793114562e-07 85218476.9039 +UniRef50_D8JW50 1.82978366557e-07 1.64609520844e-07 -7415728.42542 +UniRef50_A8FDG9 8 amino 7 oxononanoate synthase 1.17714039908e-07 5.51694272071e-08 -25250027.6561 +UniRef50_UPI000478F20C macrolide transporter 2.20432737083e-08 4.88725153206e-08 10831294.0707 +UniRef50_F2ETD0 2.01491518566e-06 1.54080181991e-06 -191405383.779 +UniRef50_E0TH65 Flagellar biosynthesis protein FlhA 1.65651575802e-06 8.9444736556e-07 -307656361.667 +UniRef50_M8D633 1.26283134174e-06 0.000114723697259 45805543892.1 +UniRef50_P0AFP5 3.54206917723e-05 2.31318568035e-06 -13365906484.1 +UniRef50_W7VDK3 Transposase IS861 5.54027410123e-06 7.10089136183e-07 -1950004943.43 +UniRef50_F9X2K4 7.01264215171e-05 8.42127296826e-05 5686815464.85 +UniRef50_D0TA60 Metallo beta lactamase domain protein 3.63374607323e-07 1.91833125345e-07 -69253401.3252 +UniRef50_F8JIF8 2.35108250449e-06 8.39854526208e-05 32956796982.3 +UniRef50_UPI0002F8A47D hypothetical protein 2.22647700975e-07 2.8097533159e-07 23547580.2398 +UniRef50_Q3IVG9 ABC Glycine betaine L proline transporter, inner membrane subunit 3.58413891479e-05 4.17667859926e-06 -12783432218.2 +UniRef50_B3PDL9 Type IV pilus biogenesis protein PilF 7.04344071015e-08 1.69134258564e-07 39846341.2188 +UniRef50_B7US81 Predicted tail fiber protein 6.96897210206e-07 1.1899934394e-06 199068998.697 +UniRef50_UPI0001BF5FA9 hypothetical protein SMAC_11727, partial 2.70811010188e-06 3.48324282475e-06 312930592.171 +UniRef50_P76501 0.000105527000924 1.18126682079e-05 -37833626121.7 +UniRef50_UPI0003B2EAC3 1 phosphofructokinase 9.81497312978e-08 8.63958071324e-08 -4745203.42244 +UniRef50_P06208 2 isopropylmalate synthase 2.88934276931e-08 1.04075332216e-07 30351857.4416 +UniRef50_P32395 Uroporphyrinogen decarboxylase 2.81789315939e-07 5.17486510466e-06 1975394740.7 +UniRef50_A0A011NCP8 Nitrite facilitator 1 9.53793078716e-08 6.2647177528e-08 -13214362.6881 +UniRef50_Q28V62 9.00844273449e-07 1.38680137097e-06 196186843.633 +UniRef50_D3SCE5 Proteophosphoglycan ppg4 1.56658286144e-06 8.58129602549e-07 -286011274.313 +UniRef50_T0HYB4 4.79318307741e-07 7.47947260969e-07 108448804.866 +UniRef50_K7RU35 DNA repair protein RecN 9.33600961682e-07 4.90240804962e-05 19414716724.6 +UniRef50_Q3J4R2 9.79660569867e-06 4.72318782861e-06 -2048201051.98 +UniRef50_P76505 1.1861195402e-05 1.91764094291e-06 -4014334956.27 +UniRef50_A1U4C6 tRNA dimethylallyltransferase 7.54135212546e-06 1.82858640994e-06 -2306313622.87 +UniRef50_W5XIS1 50S ribosomal protein L22 1.06286406795e-07 2.321143706e-06 894165071.042 +UniRef50_Q65T94 ARA1 protein 0.000126717049883 1.14171278729e-05 -46547993404.6 +UniRef50_Q8XAR8 UDP N acetylglucosamine 2 epimerase 4.39405476616e-05 1.54209571462e-05 -11513708665.8 +UniRef50_Q31E54 8 amino 7 oxononanoate synthase 4.1699214476e-08 4.84113634015e-08 2709776.88855 +UniRef50_Q3JR64 3.12690057201e-08 1.78942595239e-05 7211508475.74 +UniRef50_UPI000258DCCB 1.25173663859e-08 5.54900986233e-08 17348619.339 +UniRef50_W1DUY3 Fosmidomycin resistance protein 2.28192575379e-06 3.80773092347e-07 -767518659.19 +UniRef50_UPI00041B42CD multidrug transporter 7.5873342929e-09 2.03665566778e-08 5159128.89548 +UniRef50_UPI000373198D hypothetical protein 7.1376427539e-08 3.49775288082e-07 112393036.339 +UniRef50_Q8CSM5 4.30974994928e-05 6.67339196815e-05 9542312881.67 +UniRef50_Q1GIM1 Type III pantothenate kinase 1.03693486189e-06 4.57436743484e-07 -233950501.642 +UniRef50_Q8CSM3 8.03449790282e-05 1.36228319696e-05 -26936549540.4 +UniRef50_S5D4V1 Nucleotidyltransferase DNA polymerase involved in DNA repair 5.06996594084e-06 0.000121664668939 47070712378.2 +UniRef50_UPI00047E5BE4 hypothetical protein 3.51881325961e-07 4.85179158388e-06 1816668991.23 +UniRef50_R5WDX8 FAD dependent oxidoreductase 3.2271312067e-06 1.99475571791e-06 -497525107.772 +UniRef50_X2NEQ0 4.48148080554e-07 2.59505660349e-07 -76157259.9396 +UniRef50_UPI00035C7733 hypothetical protein, partial 3.93362236582e-06 1.04611618605e-06 -1165721678.46 +UniRef50_Q4A065 0.000132331569655 4.02128347004e-05 -37189463725.2 +UniRef50_G7JG03 ATP synthase subunit a chloroplastic 2.55601913431e-08 3.24101077973e-08 2765395.33049 +UniRef50_UPI0002379BDC 3 oxoacyl ACP synthase 8.06941265869e-07 1.07815826361e-07 -282245519.163 +UniRef50_P65644 Ethanolamine utilization cobalamin adenosyltransferase 7.40390265328e-05 2.15297719466e-06 -29021280258.8 +UniRef50_UPI0003B5520E CoA transferase 9.18676219661e-08 1.45819308469e-06 551602355.999 +UniRef50_UPI000470029D diguanylate cyclase 6.37848269373e-08 6.70825786958e-08 1331342.85287 +UniRef50_A3PP83 3.0769299594e-07 4.45649505175e-07 55694735.6949 +UniRef50_W5XDF7 UvrABC system protein C 4.28706663676e-08 1.12522389572e-07 28119255.3804 +UniRef50_P46905 0.000187137881731 7.45368134023e-05 -45458433054.9 +UniRef50_UPI00036028EF hypothetical protein 6.22946038691e-08 6.10967123776e-08 -483603.4949 +UniRef50_B9DRH4 Haloacid dehalogenase like hydrolase 7.03014796308e-05 3.33197992912e-05 -14929958169.3 +UniRef50_UPI0003C257FE PREDICTED 1.58786891769e-07 1.63767043415e-07 2010548.33282 +UniRef50_UPI00037569F6 hypothetical protein, partial 6.06467288123e-06 1.97378058402e-06 -1651543421.28 +UniRef50_A6LXY6 PAS PAC sensor hybrid histidine kinase 3.04594294896e-06 5.39836778556e-06 949702774.034 +UniRef50_Q5HME3 3.13553451473e-05 1.7846992784e-05 -5453487615.19 +UniRef50_P45102 Succinyl CoA ligase [ADP forming] subunit alpha 5.15193386814e-07 1.01954187703e-06 203611674.552 +UniRef50_Q5HME1 4.88604912808e-05 1.07575841395e-05 -15382611188.2 +UniRef50_X5ETW2 Peptidase, M50 family 2.47802618498e-06 9.75145669635e-06 2936373152.47 +UniRef50_P26340 Mannose 1 phosphate guanylyltransferase ManC 1.61981289498e-06 1.83020976982e-07 -580050528.716 +UniRef50_P45413 Citrate lyase alpha chain 3.03354985921e-05 2.48477608632e-05 -2215467063.27 +UniRef50_C5N5E9 8.00917853217e-05 1.46166549668e-05 -26433113594.5 +UniRef50_P0A603 RNA polymerase sigma factor SigA 3.07394026764e-06 0.000100218740245 39218547851.6 +UniRef50_T1YCL4 0.000128026211644 1.75103865894e-05 -44616594756.4 +UniRef50_Q59635 Catalase 1.15257957366e-05 8.13149353868e-05 28174732085.8 +UniRef50_I0KW88 5.04408481011e-07 8.63611380439e-07 145014618.414 +UniRef50_A5ULP8 Predicted surface protein 1.7943588202e-05 2.87319834248e-05 4355407539.94 +UniRef50_C0P9U0 1.07363767816e-06 7.7641716853e-07 -119991567.043 +UniRef50_A3PS37 Sulfotransferase 3.22524232645e-05 8.37911192891e-06 -9637948744.66 +UniRef50_P25906 Putative oxidoreductase YdbC 9.88048056628e-06 4.05032096285e-06 -2353706976.01 +UniRef50_P52074 Glycolate oxidase iron sulfur subunit 2.91222301915e-05 2.4712694996e-06 -10759319875.4 +UniRef50_B7GX21 Aldehyde dehydrogenase 5.48308921475e-06 8.94479032768e-05 33897625801.0 +UniRef50_A5UNW8 Putative PeiW related protein 3.39560537233e-05 2.4372767966e-06 -12724517024.2 +UniRef50_B7N0I9 Zinc transporter ZupT 1.91940539584e-05 4.77208159983e-06 -5822327218.67 +UniRef50_UPI0003959B2A peptide synthetase, partial 1.18912502395e-07 1.11515083073e-07 -2986428.95683 +UniRef50_P0AAF2 Putrescine ornithine antiporter 1.79473007606e-05 1.66063751755e-06 -6575125811.03 +UniRef50_C1DK50 9.86243633233e-06 7.2459627969e-06 -1056302473.99 +UniRef50_A8LLD9 Ribonuclease 3 3.60711756531e-07 1.04904496012e-06 277888561.087 +UniRef50_Q7WH65 Beta hexosaminidase 1.74417489859e-07 3.30163746599e-07 62876675.0674 +UniRef50_D6SCK6 ABC transporter, ATP binding protein 0.000119776074233 5.3657227165e-05 -26692989930.8 +UniRef50_E0P352 1.33584465064e-06 2.4605116935e-07 -439963001.667 +UniRef50_F0Y057 Expressed protein 8.81085793256e-07 5.30170843736e-06 1784659608.56 +UniRef50_UPI00037F9362 hypothetical protein 4.56930838835e-08 1.18298859726e-05 4757423277.48 +UniRef50_UPI000262CE64 deoxyguanosinetriphosphate triphosphohydrolase like protein 7.51483679131e-07 4.80846976467e-08 -283970800.501 +UniRef50_K2AIZ3 ABC transporter related protein 6.60806259164e-07 1.31134803099e-06 262631696.331 +UniRef50_Q8EED7 Phosphomethylpyrimidine synthase 2.07414439285e-06 3.6316490367e-05 13824055270.6 +UniRef50_I6TQZ8 TetR family transcriptional regulator 2.5522143318e-05 1.28892288952e-05 -5100062575.78 +UniRef50_UPI0003941799 PREDICTED 3.40757630182e-07 9.34874033554e-07 239852082.669 +UniRef50_R5PZ37 3.52026230842e-06 1.56864890773e-06 -787890278.848 +UniRef50_K9NJR2 Universal stress protein 1.20520434655e-05 2.1848338239e-06 -3983513616.59 +UniRef50_P71838 KsdD like steroid dehydrogenase Rv0785 8.81976609493e-07 0.000105682986986 42309453942.2 +UniRef50_UPI0003B5E589 ABC transporter ATP binding protein 4.38850560898e-07 4.0757998206e-07 -12624316.4101 +UniRef50_P21189 DNA polymerase II 2.67098761014e-05 2.39861091619e-06 -9814756088.04 +UniRef50_Q3K742 UDP N acetylmuramoylalanine D glutamate ligase 4.56052139785e-06 7.12403735486e-06 1034922849.72 +UniRef50_F3U2R3 2.79921394165e-06 7.39558267897e-07 -831508270.31 +UniRef50_F0XXV4 Expressed protein 1.6204852748e-06 9.73360039515e-07 -261252398.604 +UniRef50_A6LWS8 TPR repeat containing protein 1.04235234566e-05 2.47788291221e-05 5795413056.57 +UniRef50_UPI00046FEF63 iron dicitrate transporter subunit FecD 2.81786032377e-07 1.50652933565e-07 -52940041.1745 +UniRef50_O67298 Methionine tRNA ligase 1.22936509793e-07 2.07437458995e-07 34114070.1361 +UniRef50_Q8H883 Putataive InsB from Escherichia coli 7.18320690996e-05 5.45200071126e-06 -26798448183.4 +UniRef50_Q9JZ07 Inositol 1 monophosphatase 1.58914971407e-07 1.77208467172e-05 7089967354.92 +UniRef50_Q9V076 Ribonuclease J 3.23230462404e-05 1.4890962383e-05 -7037546168.96 +UniRef50_J4JDJ6 PF05787 domain protein 1.14505355566e-06 2.26678256951e-05 8689007226.79 +UniRef50_A3PRQ7 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 1.18625448016e-05 9.2479135246e-07 -4415705288.73 +UniRef50_B7V1A6 Ketol acid reductoisomerase 8.22742554283e-06 5.61307244918e-06 -1055446425.63 +UniRef50_O66113 Pyruvate dehydrogenase E1 component subunit beta 0.000106990374148 2.55014247724e-05 -32898088844.8 +UniRef50_F3U3I1 Trimethylamine N oxide reductase c type cytochrome TorC 0.000150598207285 2.93506373102e-05 -48949131873.9 +UniRef50_M9VCX6 4.84864128688e-07 2.98599419336e-06 1009736899.42 +UniRef50_A5ULX3 Adhesin like protein 3.34876688316e-05 9.01763509367e-06 -9878852901.07 +UniRef50_Q9RSL9 5.14753621162e-05 0.000337498544379 1.15471068579e+11 +UniRef50_A6FNW8 4.76586975179e-08 3.8331287354e-08 -3765589.94336 +UniRef50_S5YTE6 L arabinose isomerase 3.12364094062e-05 4.84085936396e-06 -10656207461.9 +UniRef50_U8LE05 9.58677273497e-06 2.6134221699e-06 -2815227195.75 +UniRef50_Q51485 Porin B 2.76268389693e-05 8.64446384869e-05 23745467440.8 +UniRef50_P68188 Maltose maltodextrin import ATP binding protein MalK 7.59831846684e-05 2.71486210581e-06 -29579320921.9 +UniRef50_Q1IZP1 Gamma glutamyl phosphate reductase 3.14763498006e-05 3.45601726425e-05 1244977124.04 +UniRef50_UPI0004729B76 multidrug transporter MurJ 5.521866328e-07 5.42657232714e-07 -3847135.75361 +UniRef50_E8U8Q1 Tellurite resistance TerB 5.03314651798e-06 0.00100665192025 4.04365790199e+11 +UniRef50_UPI000369225C hypothetical protein 8.1909734249e-08 6.78926778378e-08 -5658857.68183 +UniRef50_D5ATK1 TRAP C4 dicarboxylate transport system permease, DctM 2 subunit 9.96638334879e-08 2.51952995149e-07 61481003.3607 +UniRef50_B8I813 Energy coupling factor transporter transmembrane protein EcfT 3.24348472666e-06 1.24632378201e-05 3722127462.91 +UniRef50_E1DDS4 Putative permease protein 1.21729256036e-07 6.73740933166e-08 -21943846.2027 +UniRef50_UPI00012E0EF0 UDP phosphate galactose phosphotransferase 9.77128728404e-08 1.3082297933e-07 13366956.2965 +UniRef50_UPI0001CBAFEA PREDICTED 8.50910113871e-08 7.26513639748e-08 -5022038.31199 +UniRef50_E2Q3I4 Flavoprotein disulfide reductase 3.35260977015e-06 6.05351063513e-05 23085275577.9 +UniRef50_R5Y4C4 7.5949657686e-08 8.65992531732e-08 4299372.38342 +UniRef50_R7PXB7 3.33521690897e-05 4.97417098993e-06 -11456546070.1 +UniRef50_P54458 Putative methyltransferase YqeM 1.23802129973e-07 3.64779497022e-07 97285520.2025 +UniRef50_W5WZ80 N succinyldiaminopimelate aminotransferase 1.46501677432e-06 6.29618262779e-05 24827016647.3 +UniRef50_UPI000344B62A hypothetical protein 6.78356452778e-08 2.06090495523e-08 -19065956.2299 +UniRef50_Q9L6S1 ATP dependent DNA helicase Rep 6.00284279221e-05 0.00010309517612 17386574735.9 +UniRef50_Q07HH8 2.41864746106e-07 1.17179738963e-07 -50336867.4407 +UniRef50_Q87VV7 Probable nicotinate nucleotide adenylyltransferase 1.89806004332e-07 2.80808277526e-06 1057030462.29 +UniRef50_Q97H93 Cell division protein SepF 2.80311377865e-06 7.84030488532e-06 2033575863.05 +UniRef50_F4C9G0 ATPase 1.76197714348e-07 1.3833501344e-07 -15285636.9841 +UniRef50_Q0VMD9 Putative ribosome biogenesis GTPase RsgA 2.593346888e-06 1.35425056951e-07 -992293205.288 +UniRef50_R1FQ49 1.48227482538e-06 2.4372767966e-06 385546014.974 +UniRef50_P45262 Replication associated recombination protein A 1.38611746215e-06 2.09575061554e-05 7901209783.43 +UniRef50_M4TV91 IS1114 transposase, IS5 family protein 4.33246200368e-07 3.09186792086e-07 -50084305.5036 +UniRef50_F0MX83 1.76844590442e-06 5.22684433979e-06 1396197887.68 +UniRef50_G4LLK3 1.19853309102e-05 2.42062873115e-06 -3861387641.78 +UniRef50_A4GA34 1.43181128598e-07 2.10307879784e-07 27099893.1917 +UniRef50_G2AUL8 2.08615555801e-06 7.37370050492e-07 -544521260.845 +UniRef50_H6NQR9 1.32320002817e-05 8.18849088786e-06 -2036126633.11 +UniRef50_Q9RYB1 2.07489046873e-06 5.25213281462e-05 20365845937.8 +UniRef50_UPI000312AE4D hypothetical protein 6.33363640698e-08 1.05649019182e-07 17082138.1035 +UniRef50_UPI000366A351 hypothetical protein 2.15533796624e-07 3.21547136285e-07 42798886.1511 +UniRef50_UPI0003B3F958 Hsp33 chaperonin 1.3023074845e-07 2.02003037443e-07 28975353.8115 +UniRef50_I1PKM1 7.57180170735e-06 2.51952828095e-06 -2039664780.6 +UniRef50_Q83RK8 3.54774107827e-05 7.92128302013e-06 -11124746929.5 +UniRef50_B8JEF4 4.09824530306e-07 3.90066409537e-06 1409294769.83 +UniRef50_R5GFP8 1.49796027328e-06 1.54388427373e-05 5628105324.58 +UniRef50_T2I1A7 2.16123660684e-07 2.4628220106e-06 907019693.952 +UniRef50_D5AUT9 Phage terminase, large subunit 4.82221893476e-05 4.9982584478e-06 -17450031321.5 +UniRef50_UPI0003A838D0 acyl CoA dehydrogenase 7.74438936189e-08 9.13366183889e-08 5608663.47255 +UniRef50_P0AGE7 6.36603080519e-05 2.8689498438e-05 -14118144981.2 +UniRef50_W5XIW0 Isoprenyl transferase 6.32998914491e-08 1.27660055201e-07 25982987.8947 +UniRef50_Q51687 Histidinol phosphate aminotransferase 3.18490080755e-05 1.29979258688e-05 -7610413215.64 +UniRef50_UPI000299D2EC hypothetical protein 6.27701323686e-08 9.10577042822e-08 11420039.9091 +UniRef50_UPI00045E7782 xanthine dehydrogenase 1.70681781797e-07 1.41366072931e-07 -11835111.4134 +UniRef50_B3T3L8 3.2370807636e-06 4.8018976455e-06 631735777.686 +UniRef50_Q9RSZ4 2.32061058724e-06 0.00013768881688 54649806035.2 +UniRef50_UPI0003772F6B hypothetical protein 6.99470208385e-07 7.07385685629e-07 3195575.29723 +UniRef50_F9VSE4 Threonine dehydratase 1.58709056122e-07 8.43109006723e-07 276300658.589 +UniRef50_UPI0004726CDF DNA polymerase III subunit alpha, partial 2.24852445792e-07 9.21998128758e-08 -53553495.739 +UniRef50_C8S240 1.43100964277e-07 1.01396808755e-07 -16836479.3518 +UniRef50_A4WY94 6.05287865868e-05 1.68752402968e-05 -17623472326.5 +UniRef50_UPI0003AB78D1 5.8313210298e-08 1.99508143091e-08 -15487370.0203 +UniRef50_P11072 Bacteriophage T4 late gene expression blocking protein 2.32809749275e-05 2.03901062277e-06 -8575641658.02 +UniRef50_A3M3V3 5.19331415074e-06 0.000141037790365 54842082046.8 +UniRef50_A1IQR7 DNA ligase 9.2960325562e-07 2.94036446176e-05 11495319913.6 +UniRef50_Q8GFF2 5.00435134913e-07 6.56701483245e-06 2449152669.2 +UniRef50_V2U4R3 1.10269303704e-06 4.93008201866e-05 19458175387.8 +UniRef50_B8ITI2 Electron transfer flavoprotein alpha subunit 3.3838402116e-08 4.74875993403e-08 5510348.41393 +UniRef50_U6A8L3 Sigma factor PvdS, controling pyoverdin biosynthesis 1.04963565189e-05 7.08883988783e-06 -1375656278.89 +UniRef50_Q2IPT7 Tyrosine tRNA ligase 3.19228161487e-07 7.49197506507e-08 -98630303.4558 +UniRef50_UPI000366594A hypothetical protein 5.94977337556e-07 1.36065147493e-06 309112045.136 +UniRef50_M9VKU7 ABC transporter permease 5.85231817474e-06 5.38143105719e-05 19362844890.6 +UniRef50_X0UZB7 Marine sediment metagenome DNA, contig 4.50920335639e-06 9.66092397758e-07 -1430397372.86 +UniRef50_Q72UH6 Phosphoribosylformylglycinamidine synthase 1 1.12120589817e-07 8.13387951903e-08 -12426988.2259 +UniRef50_P0A270 Exopolyphosphatase 3.35710305091e-05 5.05068018825e-06 -11514015408.6 +UniRef50_P45360 Putative UDP N acetylglucosamine 2 epimerase 0.000228211688713 0.000153431431014 -30189707690.0 +UniRef50_Q01BN9 Putative histone deacetylase 1.70837191156e-08 1.77770071668e-07 64871052.3685 +UniRef50_U5AK60 9.44956799112e-08 6.99160687062e-07 244110683.461 +UniRef50_A3CR82 6.4341807471e-05 9.56486326462e-06 -22114124564.8 +UniRef50_Q5HNN4 Uroporphyrinogen III synthase 9.48485868664e-05 1.09058284019e-05 -33888721685.6 +UniRef50_UPI000347D2C7 hypothetical protein 3.8660318447e-08 5.35940457728e-08 6028928.97887 +UniRef50_Q6BA79 2.09666923604e-06 6.37929758557e-07 -588911027.805 +UniRef50_Q8KA16 Endonuclease III 5.08997239308e-08 1.66586615096e-07 46704217.6011 +UniRef50_Q2YA02 Acetylglutamate kinase 4.6570163451e-07 1.63456003694e-07 -122020270.131 +UniRef50_X8A848 1.57329471649e-06 2.95439128552e-06 557565632.878 +UniRef50_A3P8Z9 AMP binding domain protein 8.14132254934e-07 3.92451659996e-06 1255700328.8 +UniRef50_Q8TUZ5 Acetylornithine aminotransferase 9.38748652083e-08 4.83111600869e-07 157139646.658 +UniRef50_UPI0000E0FA29 hypothetical protein 1.23237233712e-06 3.84743594911e-07 -342198124.804 +UniRef50_B7V608 Anthranilate phosphoribosyltransferase 1.31024828569e-05 4.75771409542e-06 -3368885550.84 +UniRef50_Q3BVS7 1.07533788181e-07 3.14675899973e-07 83625812.45 +UniRef50_Q1DG75 4.13640603699e-08 3.47206726092e-08 -2682017.16253 +UniRef50_D8JGE0 Paraquat inducible protein A 5.69290316935e-06 5.0559396245e-05 18113153828.4 +UniRef50_I7AAS7 1.45937204691e-05 2.13481955563e-05 2726864479.43 +UniRef50_P07023 T protein 2.08687828214e-05 2.98284358995e-05 3617121894.94 +UniRef50_UPI000415AB07 hypothetical protein 5.60599196008e-07 1.07069429761e-06 205931652.088 +UniRef50_A8L089 2.47191873227e-07 8.65782142323e-07 249732482.59 +UniRef50_R5PFJ0 1.71516534797e-07 3.79385370791e-05 15247009647.2 +UniRef50_UPI000371AE89 hypothetical protein 1.48081540801e-07 7.80331289052e-08 -28279403.473 +UniRef50_UPI000471CA1B hypothetical protein 1.44800047927e-07 6.31105398396e-07 196327437.622 +UniRef50_Q2GSP5 5.69840470326e-07 1.78320165679e-06 489848800.59 +UniRef50_Q67JS9 50S ribosomal protein L1 2.46722868534e-06 1.52745208586e-05 5170461013.51 +UniRef50_UPI000347BD58 hypothetical protein 1.50150856668e-08 5.85692250364e-07 230389374.384 +UniRef50_F2ECI9 Predicted protein 2.15052039164e-06 8.34596449124e-07 -531254643.798 +UniRef50_P26275 Positive alginate biosynthesis regulatory protein 9.55009829538e-06 8.92040883023e-06 -254213364.24 +UniRef50_UPI00037F445F hypothetical protein 7.92275228434e-08 1.60525168196e-07 32820857.0631 +UniRef50_Q2G505 6.28004850054e-07 6.6169965823e-07 13603007.5424 +UniRef50_UPI00041221D7 hypothetical protein 2.693182296e-08 2.04439373878e-06 814474132.458 +UniRef50_Q8TZ24 Shikimate dehydrogenase 7.03791767867e-08 2.84374033621e-07 86392349.7161 +UniRef50_UPI0003A57B20 cell envelope biogenesis protein AsmA 3.46969141971e-08 4.56602143568e-08 4426018.80929 +UniRef50_B9KNT5 1.12124551144e-05 9.90855989002e-07 -4126585000.05 +UniRef50_UPI000375676E hypothetical protein 3.4347237099e-07 1.89465646212e-07 -62174404.6679 +UniRef50_Q2S5X4 Osteoblast specific factor 2 related protein 1.05522770751e-06 1.97755386114e-07 -346172098.516 +UniRef50_UPI000479735A cobalt ABC transporter ATPase 7.1811675981e-08 1.13326514398e-07 16760049.7133 +UniRef50_UPI000374B954 MULTISPECIES 3.8641347511e-08 1.02575124499e-06 398508378.813 +UniRef50_Q5PAE7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.30288268063e-08 7.04288880134e-07 266958798.102 +UniRef50_UPI00037730C9 hypothetical protein 1.03626864446e-06 1.15644783698e-06 48517814.7849 +UniRef50_UPI00030CFB49 DNA repair protein RecO 2.17891034493e-07 7.65086594979e-07 220909562.613 +UniRef50_G0DX72 Galactose proton symporter 7.97505610236e-07 5.63611284579e-05 22431716385.9 +UniRef50_A6UF25 4.89641647118e-08 8.56735118484e-08 14820013.9134 +UniRef50_UPI0003F4DAD2 valyl tRNA synthetase 3.22222034044e-08 2.38048879683e-08 -3398173.53363 +UniRef50_UPI0002E6EF76 hypothetical protein 7.11779801575e-07 1.02466264123e-06 126314641.873 +UniRef50_A0A014FPC4 2.41412826739e-06 4.72602389292e-05 18104925197.8 +UniRef50_A3PJ57 2.16317432904e-05 1.00346291254e-05 -4681897301.0 +UniRef50_UPI00034D8CD9 glycoside hydrolase 5.84596530468e-07 4.15183368612e-07 -68394172.3745 +UniRef50_Q3IUW8 TraE protein 0.000543644498031 5.94806306319e-05 -1.95462894628e+11 +UniRef50_L0D7B2 1.29259428552e-05 6.77429293665e-06 -2483496561.35 +UniRef50_U5MVQ9 D galactose binding periplasmic protein MglB 4.48173103436e-06 4.17271836385e-05 15036446269.4 +UniRef50_K1YJB5 TRAP C4 dicarboxylate transport system permease DctM subunit 5.20817118718e-08 2.17330519833e-07 66712971.6048 +UniRef50_UPI0004648032 gamma aminobutyrate transporter 1.30534049084e-06 4.11778601541e-07 -360741899.947 +UniRef50_R5UIW1 Ribose phosphate diphosphokinase 1.91293575433e-06 5.34408280041e-06 1385196167.41 +UniRef50_V5SZP2 3.38330271987e-06 8.12698899949e-07 -1037784306.96 +UniRef50_B1IC45 6.48701327746e-05 2.93040489143e-05 -14358464499.3 +UniRef50_Y3DCZ9 2.80399023561e-05 2.42394012474e-06 -10341478296.0 +UniRef50_R5TSA7 1.15439140317e-06 1.3757934969e-05 5088205200.39 +UniRef50_Q0AVW1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 5.03305853913e-07 0.000164640967694 66264388280.4 +UniRef50_UPI000420523B hypothetical protein 1.47264003199e-07 1.93427272408e-06 721437349.682 +UniRef50_C1CER1 Mobile genetic element 2.11928801617e-07 2.60906209998e-05 10447545607.7 +UniRef50_B2UML1 Aminotransferase class I and II 2.49020386997e-05 2.48497779899e-06 -9050042573.88 +UniRef50_U3SWF7 5.79262691103e-05 3.8693386554e-05 -7764550701.99 +UniRef50_UPI00037F27EC hypothetical protein, partial 9.68568966044e-07 1.50697702042e-07 -330184665.687 +UniRef50_P44474 Rod shape determining protein MreB 1.449768585e-05 4.17700638408e-05 11010193664.6 +UniRef50_F3GF13 PAS protein 1.16568593363e-06 2.58716503313e-06 573868555.978 +UniRef50_UPI0004783EFD dihydroxyacetone kinase 4.68188491481e-07 4.0915200243e-06 1462783403.08 +UniRef50_J2LVD6 1.96959304303e-06 1.2189212742e-06 -303055404.855 +UniRef50_W1FRR0 Acyl CoA dehydrogenases 1.24160488222e-06 1.97202111862e-07 -421638214.658 +UniRef50_W8VHA5 Exodeoxyribonuclease III 3.54122444956e-05 6.78291340013e-06 -11558012284.7 +UniRef50_M9VM96 Methylaspartate mutase 2.18411220623e-06 7.68536071564e-05 30144991409.1 +UniRef50_UPI000454B050 PREDICTED 1.02904605098e-06 1.5261986347e-06 200706598.796 +UniRef50_UPI000440E201 ArfGap domain containing protein 6.17704543059e-08 1.39458016112e-06 538071634.054 +UniRef50_R9SKZ5 SAM dependent methyltransferase UbiE family 1.43286453148e-05 2.68469732005e-06 -4700804692.81 +UniRef50_P37641 6.21862712346e-06 1.99089913611e-06 -1706785668.55 +UniRef50_P37645 3.87970536495e-05 1.74572035699e-05 -8615159346.54 +UniRef50_UPI00041FC02E citrate synthase 5.60156266897e-08 7.78100631447e-08 8798681.44469 +UniRef50_B9KMR2 3.56932619299e-05 1.90449140493e-05 -6721142337.6 +UniRef50_S5DFR0 Isoleucine tRNA ligase 8.15034876593e-07 7.34439548074e-05 29321186233.1 +UniRef50_P62051 L lactate dehydrogenase 3.38147255908e-08 7.75145975408e-08 17642174.5639 +UniRef50_D8HE77 Inosine uridine preferring nucleoside hydrolase 0.000105504940507 4.92330823716e-05 -22717639662.6 +UniRef50_UPI0003FEA5A5 2 dehydro 3 deoxyglucarate aldolase 7.3338907549e-08 8.50562104595e-07 313774542.249 +UniRef50_A3V6T8 2.77812688782e-06 1.13454417794e-06 -663534509.006 +UniRef50_Q7T6Y8 Ribonucleoside diphosphate reductase large subunit 2.53435698004e-08 8.77604373359e-08 25198455.3652 +UniRef50_Q9K7C3 L arabinose transport ATP binding protein AraG 4.84223709654e-06 1.88076913427e-05 5638025254.59 +UniRef50_UPI00040B989C alkaline phosphatase 2.51914912274e-08 6.24416977003e-08 15038365.4645 +UniRef50_A4XZ93 Elongation factor G 1.51598623922e-05 5.52796376438e-06 -3888515672.74 +UniRef50_J7M1N2 LacI family transcriptional regulator 5.8463589806e-05 2.69379582364e-05 -12727284327.7 +UniRef50_UPI0003624EE9 hypothetical protein 8.26077504824e-06 2.52134224663e-06 -2317079452.77 +UniRef50_Q08120 Bacteroid development protein BacA 1.96591798834e-05 7.01873815889e-05 20398855079.3 +UniRef50_D8JM63 1.48202596255e-05 0.000103315108114 35726456288.7 +UniRef50_B2HNH3 PE PGRS family protein, PE_PGRS59 5.27533670295e-08 4.75711369588e-07 170753335.911 +UniRef50_UPI0003FE4D19 dienelactone hydrolase 2.30731265665e-08 1.34073541645e-07 44812229.6953 +UniRef50_Z9W2S3 2.89351749633e-07 5.66140501122e-07 111743015.556 +UniRef50_UPI00046A585D phenazine biosynthesis protein PhzF 1.48480432698e-07 2.42120711729e-07 37803729.7403 +UniRef50_UPI000249288F peptide ABC transporter ATP binding protein 2.71351761948e-07 9.46090156526e-08 -71353215.5567 +UniRef50_A0A029LLM4 FAD NAD binding family protein 1.66347154043e-06 2.49425765922e-07 -570867631.463 +UniRef50_Q3SEU9 Phosphoribosyl AMP cyclohydrolase 2.11283600111e-07 1.97402947008e-07 -5603789.99245 +UniRef50_F8JK27 6.41460811758e-07 7.38187008306e-07 39049552.5103 +UniRef50_Q88QZ8 Peptide methionine sulfoxide reductase MsrA 8.08561375296e-07 1.18814469735e-06 153242445.124 +UniRef50_D8JGI7 MJ0042 family finger like domain protein 1.45186918795e-06 5.75316778636e-05 22640106939.0 +UniRef50_Q49YQ5 0.00021690212582 5.87832984961e-05 -63834510926.9 +UniRef50_B9DPJ4 Signal recognition particle receptor FtsY 0.000217904047944 4.18360597676e-05 -71080807423.8 +UniRef50_UPI0004686D1F hypothetical protein 1.03940310952e-07 3.94884657073e-06 1552235839.38 +UniRef50_Q89AJ2 Thioredoxin reductase 7.82410790355e-07 3.30996253722e-07 -182241587.918 +UniRef50_A6LYH8 Cation diffusion facilitator family transporter 3.61230611344e-06 1.61556950029e-05 5063920019.38 +UniRef50_D5AMX5 1.6274326939e-06 7.70205648058e-07 -346073077.765 +UniRef50_UPI0004747720 peptide ABC transporter 1.03074359415e-07 5.94822246265e-07 198524656.347 +UniRef50_UPI00047E1486 hypothetical protein 2.39890909808e-07 6.21370992618e-07 154008190.717 +UniRef50_R4NJW9 Low specificity L threonine aldolase 0.000164907866256 5.27777341219e-05 -45268310334.0 +UniRef50_H4JD68 Dienelactone hydrolase family protein 3.51149757071e-06 5.78641212619e-06 918410922.388 +UniRef50_Q5H5C1 Phosphinothricin acetyltransferase 2.12468661645e-06 4.11624696069e-05 15760032040.7 +UniRef50_B2IQF0 2.69518708112e-06 3.30305531007e-06 245403863.409 +UniRef50_UPI00026CA133 hypothetical protein 2.16511834094e-06 9.10804851429e-07 -506381747.873 +UniRef50_UPI000368DDFC hypothetical protein 5.42936899248e-08 8.85508898254e-08 13830051.983 +UniRef50_G8DCQ6 4.56399245966e-07 1.03227427633e-07 -142579796.967 +UniRef50_UPI0003672F43 hypothetical protein 1.30716766001e-07 3.64635141302e-06 1419304848.69 +UniRef50_P39161 Uxu operon transcriptional regulator 2.87373611105e-05 3.5723794984e-06 -10159411885.9 +UniRef50_UPI0002D2FE43 hypothetical protein 9.55833738743e-06 2.58940421357e-06 -2813443840.71 +UniRef50_UPI0004786318 hypothetical protein 5.36924207238e-06 4.1849157279e-07 -1998678729.22 +UniRef50_B9L7V8 Acyl carrier protein 2.26712905155e-07 5.13143114561e-06 1980094941.33 +UniRef50_UPI00036E7E1F hypothetical protein 4.78428505846e-08 5.43272156887e-06 2173941618.47 +UniRef50_UPI00035EB162 hypothetical protein 5.5716660629e-07 4.05804588527e-07 -61106703.9918 +UniRef50_D6SCJ9 Quinone oxidoreductase, YhdH YhfP family 0.000214088430145 5.08140959083e-05 -65915852332.9 +UniRef50_R5IBX6 1.49881332125e-07 1.49608535524e-07 -110131.335414 +UniRef50_A5UP26 1.14763408026e-05 4.40771201791e-06 -2853692182.21 +UniRef50_Q0B215 DEAD DEAH box helicase domain protein 6.79280080716e-06 3.19879866729e-06 -1450942767.23 +UniRef50_T0QM98 5.11668441524e-08 7.18591037925e-08 8353719.13929 +UniRef50_A3K9M4 Transposase orfA IS5 family element 2.92464930602e-07 5.86066281138e-07 118530468.105 +UniRef50_A1TL08 Phosphoribosyl ATP pyrophosphatase 1.54711900322e-07 1.34216353082e-06 479388794.903 +UniRef50_UPI00016A61F3 ABC transporter related protein 2.12555823696e-06 2.41869153529e-06 118341509.686 +UniRef50_L3AZC3 Diguanylate cyclase YdeH 4.67479389619e-06 3.64588524928e-06 -415383046.887 +UniRef50_K4NAI3 1.7055089858e-06 2.01378883874e-05 7441377755.16 +UniRef50_Q6G956 Maltose operon transcriptional repressor 0.000112377751268 1.65632591667e-05 -38681486237.3 +UniRef50_A9G862 Phosphoglucosamine mutase 4.72781120293e-08 5.48691046475e-08 3064576.87192 +UniRef50_P0AB86 Thiamine biosynthesis lipoprotein ApbE 3.44699539116e-05 3.80543256776e-06 -12379643562.5 +UniRef50_UPI00036588E1 chromosome partitioning protein ParA 7.49391355456e-08 2.37405676355e-07 65589736.2132 +UniRef50_P46926 Glucosamine 6 phosphate isomerase 1 1.08646064161e-07 9.73035413219e-08 -4579115.65855 +UniRef50_UPI000470FD75 hypothetical protein 3.51318179187e-08 1.69973426916e-06 672020436.535 +UniRef50_F7Z394 Bis tetraphosphatase, ApaH 3.7156450053e-07 1.59842683594e-06 495299380.099 +UniRef50_B4S1N2 Thymidylate kinase 1.3312894856e-05 1.47001986999e-05 560071585.915 +UniRef50_UPI00036DAC41 hypothetical protein 5.38907131149e-07 6.96992693949e-07 63821081.6304 +UniRef50_P33358 HTH type transcriptional regulator MlrA 3.75415879462e-05 9.59613540458e-06 -11281922120.3 +UniRef50_I3R9M8 Respiratory nitrate reductase subunit beta 1.081078446e-07 3.2289311724e-07 86711450.2765 +UniRef50_Q119B3 Acyl carrier protein 3.90957602786e-07 1.41098069814e-06 411795840.684 +UniRef50_G2SPG8 Primosomal protein n 5.43525626661e-06 1.70441393493e-06 -1506186831.88 +UniRef50_A5W8P2 Protein translocase subunit SecA 1.28189170512e-05 5.99954631425e-06 -2753063649.6 +UniRef50_M1F9S3 Hydrogen peroxide inducible genes activator 8.45625339297e-06 5.42428114656e-06 -1224044402.36 +UniRef50_UPI000375B204 hypothetical protein 5.54064586374e-08 2.23487966338e-07 67856567.2509 +UniRef50_F4GVQ8 ABC transporter protein 6.71681162303e-05 2.64386164072e-05 -16442998885.8 +UniRef50_Q2RKD5 Flagellar biosynthetic protein FliP 9.49038838322e-06 2.33864205726e-05 5609998718.35 +UniRef50_A5F3I6 Phosphoadenosine phosphosulfate reductase 1.01669637716e-07 1.57657967483e-07 22603175.781 +UniRef50_A6LSK1 Probable dual specificity RNA methyltransferase RlmN 2.80207633198e-06 7.86546749325e-06 2044153146.6 +UniRef50_A8IHY5 C4 dicarboxylate binding protein 0.000143850533664 2.81301284109e-05 -46717747649.7 +UniRef50_A3VGU5 3.14735908656e-05 1.37139342748e-05 -7169791301.2 +UniRef50_Q8FQS8 5.7396550747e-07 9.4675041122e-06 3590430670.72 +UniRef50_UPI000377BBC9 hypothetical protein 3.71488997065e-07 3.6272139982e-07 -3539586.59832 +UniRef50_A4WUT7 Phage SPO1 DNA polymerase related protein 1.25853214858e-05 5.67416347288e-06 -2790119299.26 +UniRef50_UPI0001C3962F S1 RNA binding domain protein 5.46853994325e-06 2.54438502187e-06 -1180517225.18 +UniRef50_UPI00026276D0 aryldialkylphosphatase 1.78192867389e-06 1.90545617046e-06 49869566.2182 +UniRef50_P13016 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 3.76029037006e-05 9.09924006954e-06 -11507278787.2 +UniRef50_G7MAE0 6.15707367459e-06 7.18694309658e-06 415770923.576 +UniRef50_P31125 Probable amino acid metabolite efflux pump 2.37244834786e-05 4.44845840262e-06 -7781967866.61 +UniRef50_UPI00022CAAD4 PREDICTED 5.76073384891e-08 1.3924001485e-07 32956113.1925 +UniRef50_A6LQD1 Transcriptional regulator 2.1049404583e-06 1.71695789281e-05 6081779414.16 +UniRef50_U6Z4K6 1.89163041696e-07 2.01702655526e-07 5062395.98154 +UniRef50_A0A059IRR6 2.4665115535e-07 6.88274019879e-08 -71789631.3751 +UniRef50_P58219 Inner membrane protein YjgN 1.87377978863e-05 1.96702134066e-05 376427587.57 +UniRef50_A0A011M3E9 Putative hydrolase of the alpha beta hydrolase fold protein 7.11002243818e-07 3.07953615794e-07 -162715677.096 +UniRef50_P75976 4.10062560927e-05 2.52501269969e-05 -6360942665.42 +UniRef50_F8KLB6 0.000104776619413 5.40213485111e-06 -40118698879.7 +UniRef50_UPI0004409E56 PREDICTED 2.36548947869e-07 7.92658942225e-07 224508428.959 +UniRef50_R9SM81 NMD3 family protein 2.50138011209e-05 1.13499109971e-05 -5516280117.77 +UniRef50_UPI0003621607 hypothetical protein 2.29177250673e-07 1.87675553172e-07 -16754744.5643 +UniRef50_H0DMI5 GA module 9.2163534855e-05 5.30479974748e-05 -15791422442.0 +UniRef50_B1VGA4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.29729050126e-08 6.6618662258e-08 9546082.36604 +UniRef50_UPI000255A1B0 sulfate ABC transporter, inner membrane subunit CysT 4.3519338608e-07 8.08582239535e-08 -143049453.132 +UniRef50_Q9RTQ6 Daunorubicin C 13 ketoreductase 9.42144730903e-07 4.45955478839e-05 17623414540.4 +UniRef50_G7M7W5 Heat shock protein DnaJ domain protein 1.78621130367e-06 6.35158908179e-06 1843099032.51 +UniRef50_Q59998 Zinc transporting ATPase 6.03961704725e-08 1.23506521367e-07 25478423.1072 +UniRef50_I3G3U5 8.7597689592e-05 7.05171643859e-06 -32517397772.3 +UniRef50_F3Z677 Putative GTP dependent nucleic acid binding protein EngD 1.69814558057e-07 5.36170720414e-07 147902478.439 +UniRef50_A0A024JBZ5 Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl tRNA bond 3.39451880327e-08 1.97286636465e-07 65942947.157 +UniRef50_Q5LSI1 ABC transporter, permease protein 6.21612708683e-05 8.6919200598e-06 -21586233064.1 +UniRef50_V4IUE3 1.0315645238e-06 5.32492433079e-07 -201481527.327 +UniRef50_B2HQA4 Imidazoleglycerol phosphate dehydratase 2.80203910878e-06 5.47463029235e-05 20970536729.8 +UniRef50_D8J0P8 Quinohemoprotein alcohol dehydrogenase protein 2.03003627687e-07 2.05273948792e-07 916556.490061 +UniRef50_A0A023VQ43 Phosphatidylethanolamine binding protein 4.26538898029e-07 7.71788265224e-08 -141040947.998 +UniRef50_UPI0003619783 hypothetical protein 1.83209910815e-06 9.25604774978e-07 -365962886.238 +UniRef50_S9RV98 2.9672383764e-07 1.92457967002e-07 -42093411.4627 +UniRef50_B2HWV5 Periplasmic serine protease 2.00435038326e-06 5.28682380956e-05 20534375639.5 +UniRef50_C3DVF3 8.19058504845e-08 1.20732048569e-06 454343698.625 +UniRef50_Q4WWN8 Sulfate adenylyltransferase 0.000107301470245 3.17099974435e-05 -30517205181.6 +UniRef50_B2A2N1 Ribonuclease 3 1.67207751478e-07 3.774531247e-07 84878637.1706 +UniRef50_UPI000473A452 hypothetical protein, partial 1.05582610668e-07 1.90789829071e-07 34399199.6794 +UniRef50_UPI00042382C9 hypothetical protein 3.4606272488e-08 1.29922261312e-07 38480234.347 +UniRef50_E0XTA9 2.25785656794e-06 2.3139536678e-06 22647087.6023 +UniRef50_UPI00026292D6 TRAP dicarboxylate transporter subunit DctM, partial 3.80935032354e-07 7.92803232846e-07 166276246.73 +UniRef50_UPI0003B7A748 hypothetical protein 2.65686863385e-07 2.94723584244e-06 1082574229.15 +UniRef50_Q6FDS1 Leucyl phenylalanyl tRNA protein transferase 6.59803906303e-06 6.59114390271e-05 23945547422.8 +UniRef50_V2J6J5 3.09497615159e-08 4.44521405757e-08 5451076.11926 +UniRef50_A0A022H255 Methylhydantoinase 2.27711027447e-08 4.36558018335e-08 8431409.30623 +UniRef50_W4WUV4 8.994143814e-07 2.20023027663e-07 -274278626.573 +UniRef50_O06844 Nitric oxide reductase subunit C 0.00019246131115 3.73190347592e-05 -62632840788.9 +UniRef50_C5YNI9 1.95262885533e-05 1.24957710367e-05 -2838306195.6 +UniRef50_UPI00020D97D1 large conductance mechanosensitive channel protein MscL 3.9352707688e-06 8.81688854646e-07 -1232768490.41 +UniRef50_A6LY57 2.00775710763e-06 2.72581052311e-05 10193875394.1 +UniRef50_A6LY56 5.08573831134e-06 1.4894868116e-05 3960066073.7 +UniRef50_G8V949 ABC transporter, molybdenum transport system 4.77306289807e-06 5.53267193172e-05 20409131459.5 +UniRef50_Q9KIP8 D tagatose 1,6 bisphosphate aldolase subunit KbaY 3.21271779445e-05 2.66264123273e-05 -2220726581.65 +UniRef50_P20576 Anthranilate synthase component 2 1.01587443054e-05 3.70458718065e-05 10854663314.4 +UniRef50_UPI0004724CFA hypothetical protein 2.41313566924e-07 2.16217316425e-08 -88692289.8249 +UniRef50_F7ZHD8 2.78621984047e-06 5.76240456472e-07 -892195796.817 +UniRef50_H8FVA2 Transposase 1.44376803346e-06 7.15292622965e-07 -294094462.615 +UniRef50_K7RQ56 Cell cycle protein, FtsW RodA SpoVE family 2.51540005745e-06 4.12506337596e-05 15637889180.3 +UniRef50_D3QHZ6 3.75615311622e-07 5.9894085134e-07 90159260.8967 +UniRef50_UPI000374CE3A hypothetical protein, partial 9.65932242645e-07 4.5022694151e-07 -208196558.484 +UniRef50_P72371 Cap8E 0.000298456966409 7.45154278838e-05 -90407947174.2 +UniRef50_U5NN01 5.88657486979e-06 1.18126682079e-05 2392436601.94 +UniRef50_A6LV36 Integral membrane sensor signal transduction histidine kinase 2.2548951745e-06 2.20164270456e-05 7977972917.63 +UniRef50_Q1GCT8 Butyryl CoA dehydrogenase 1.50392824239e-06 6.21333551003e-06 1901245504.87 +UniRef50_R4ZMT7 Additional lipoprotein component of predicted cobalamin ECF transporter 2.86715376256e-05 8.64341576184e-06 -8085598569.11 +UniRef50_D6SCB6 Transporter, major facilitator family protein 0.000201908765071 5.85977767828e-05 -57856404595.5 +UniRef50_A0A009KXU9 8.56704583993e-06 6.73882369338e-05 23746836661.8 +UniRef50_Q2Y6A7 DedA 7.2274974554e-06 6.30212612732e-05 22524627119.7 +UniRef50_UPI00040856F2 hypothetical protein 4.18592294051e-07 8.72697745955e-08 -133758966.889 +UniRef50_G7M3S1 Transcriptional regulator, TetR family 1.20247925878e-05 6.7296182176e-06 -2137726872.35 +UniRef50_Q4I1N3 Sulfate adenylyltransferase 9.68744081644e-07 5.10222332665e-07 -185110856.757 +UniRef50_P76121 8.33075965547e-05 4.56675317307e-06 -31788644732.0 +UniRef50_P76123 2.03736621546e-05 4.40883819306e-06 -6445195343.68 +UniRef50_Y5PB14 1.25137296672e-05 1.31251868976e-05 246852787.336 +UniRef50_L0GW54 Exopolyphosphatase 2.95460731849e-08 1.911798982e-07 65253558.6286 +UniRef50_R5S9I0 2.3867989663e-07 4.08832865663e-05 16408726478.0 +UniRef50_O35008 Putative protein YtqA 0.000318279159764 9.59661938576e-05 -89750472423.1 +UniRef50_R6G2T1 Dihydroxyacetone kinase L subunit 1.84740288181e-06 8.73555359152e-06 2780830968.62 +UniRef50_X9N846 7.16955519116e-05 3.83507617837e-05 -13461700961.2 +UniRef50_D5WIU5 RND efflux system, outer membrane lipoprotein, NodT family 7.82624717782e-07 8.00896019677e-05 32017199921.8 +UniRef50_UPI0003B5B66A single stranded DNA binding protein 1.81003046964e-07 8.86394760128e-07 284775290.734 +UniRef50_Q1AVX4 UDP N acetylmuramate L alanine ligase 4.14154932133e-08 5.45919075122e-08 5319480.14525 +UniRef50_Q5E715 Methionine import ATP binding protein MetN 7.09196778935e-06 1.00549448677e-07 -2822521378.48 +UniRef50_Q9PDT8 Enolase 7.08847917128e-05 0.000174609156404 41874798866.8 +UniRef50_Q9Z3U1 DNA translocase FtsK 7.3754896499e-06 2.44590306005e-06 -1990134599.15 +UniRef50_A1WTJ3 Dihydroorotate dehydrogenase 1.17973315594e-07 1.92139002457e-07 29941597.9019 +UniRef50_H2JB32 Terminase like family 4.7380356794e-06 2.09457710738e-05 6543261670.0 +UniRef50_UPI0003812972 hypothetical protein 1.58488484792e-07 1.17149505207e-07 -16689053.3448 +UniRef50_N1MA35 4.03755792815e-06 1.43689554452e-06 -1049919317.99 +UniRef50_H8ZPX2 3 succinoylsemialdehyde pyridine dehydrogenase 6.81615975786e-05 1.50922056954e-05 -21424764737.9 +UniRef50_Q9JXS7 Chromosomal replication initiator protein DnaA 7.29206675159e-07 1.9026398556e-05 7386800894.07 +UniRef50_N9DK24 7.97875854232e-07 2.2566372817e-07 -231009057.124 +UniRef50_D5RTD5 1.61208480771e-07 3.12951140438e-07 61260373.7994 +UniRef50_UPI00047C92E9 chromosomal replication initiation protein 6.80686735317e-08 8.35579829301e-08 6253224.27933 +UniRef50_P0DKR8 Spermidine N acetyltransferase 0.000115619509848 1.35578050752e-05 -41203562654.8 +UniRef50_UPI000475FA76 hypothetical protein 1.40828212188e-07 4.92898527894e-07 142135106.839 +UniRef50_UPI0003631E18 hypothetical protein 2.13458069458e-07 5.13934948797e-06 1988642813.14 +UniRef50_A6E2Z7 1.8566465968e-07 1.75415932817e-07 -4137536.80061 +UniRef50_I0G8T6 3.95491838906e-06 1.78703158228e-07 -1524504428.06 +UniRef50_U1SML3 4.73797237908e-07 1.57433376093e-05 6164500826.27 +UniRef50_F9NW45 Trehalose utilization 2.32537570129e-06 6.16345902754e-05 23943857729.5 +UniRef50_Q9RTI6 3 isopropylmalate dehydratase large subunit 2 5.04016906207e-06 0.000441915962531 1.76372118892e+11 +UniRef50_E0RLY4 Short chain type dehydrogenase reductase 1.6629338716e-06 1.65459953099e-05 6008474538.34 +UniRef50_U4JC67 1.19423332984e-06 2.41981232351e-07 -384435857.204 +UniRef50_M1LR29 Phage late control gene D protein GPD 6.07658354639e-06 2.73424158235e-05 8585277451.37 +UniRef50_W4HIE7 8.65895119189e-07 7.51196124739e-07 -46305391.5744 +UniRef50_P45260 Acetolactate synthase small subunit 2.65606252909e-06 3.47344409226e-06 329986967.451 +UniRef50_UPI0000379465 hypothetical protein 1.02365695748e-05 4.01791435631e-06 -2510547423.19 +UniRef50_G7M1N6 Phage tail tape measure protein, TP901 family 2.30585659666e-06 1.74424655247e-05 6110834771.31 +UniRef50_R9YLQ5 LXG domain of WXG superfamily protein 3.33282140349e-06 6.58161901382e-06 1311579462.52 +UniRef50_Q4L5B7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000142730581574 6.36472446656e-05 -31926913571.6 +UniRef50_Q9LD57 Phosphoglycerate kinase 1, chloroplastic 5.78880574924e-08 4.43299766839e-07 155595436.597 +UniRef50_H3VIV1 Transposase, IS4 like family protein 4.18770192483e-05 1.00962976135e-05 -12830267317.3 +UniRef50_UPI0003823D63 hypothetical protein 5.18225623424e-07 1.35598700073e-06 338214548.507 +UniRef50_U5P976 Magnesium transporter 8.80023222741e-05 5.9187957924e-06 -33138126918.8 +UniRef50_UPI00026263A2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.75423002605e-07 4.20471360329e-07 -22184652.3193 +UniRef50_J7QFY9 Lysine , arginine , ornithine binding periplasmic protein 2.93579100811e-05 1.61118574196e-05 -5347594006.79 +UniRef50_Q6GK28 Protein EsaA 0.000120703165844 2.3850349728e-05 -39100670383.7 +UniRef50_B7H3M8 MotA TolQ ExbB proton channel family protein 7.35708108644e-06 8.90439824847e-05 32978004505.5 +UniRef50_A1B5F3 2.41560117097e-05 3.7381861418e-06 -8242926736.66 +UniRef50_U5LD58 Asparaginase 0.0002092799312 4.32627025036e-05 -67023192485.1 +UniRef50_P39280 L lysine 2,3 aminomutase 3.01452340411e-05 5.16378222061e-06 -10085318656.8 +UniRef50_UPI000380B87F hypothetical protein 4.2161090402e-08 4.10340899236e-08 -454983.922981 +UniRef50_L0GSA6 Type II secretory pathway, component ExeA 3.67105546411e-06 1.38972567152e-06 -921000832.333 +UniRef50_R1B4D2 3.92656682586e-07 8.2153907676e-07 173145085.507 +UniRef50_Q8D335 Glutathione synthetase 5.27277228925e-07 8.64010558553e-08 -177987121.227 +UniRef50_U5NRL5 0.000268686315762 0.00010024039437 -68003685529.9 +UniRef50_J7L4M3 5.65104544586e-07 1.57301845136e-05 6122328879.94 +UniRef50_L0NCJ2 2.00649964896e-06 2.78857245642e-07 -697470438.777 +UniRef50_UPI00036B778B hypothetical protein 6.25968339341e-07 2.78228713541e-06 870532358.981 +UniRef50_Q8CWR6 Alpha monoglucosyldiacylglycerol synthase 4.18503997781e-05 5.94243999149e-05 7094839512.46 +UniRef50_B9KQ22 Lysine exporter protein 8.29856265178e-06 1.87721433139e-05 4228313038.58 +UniRef50_A1SNL2 30S ribosomal protein S3 0.000173619141814 4.34943766922e-05 -52532964490.2 +UniRef50_M0X3J8 6.53508961172e-07 1.90569323248e-05 7429687847.29 +UniRef50_B3A0N5 Apyrase 9.70515907713e-08 5.14838127097e-08 -18396271.183 +UniRef50_S4JHM6 8.55062237382e-06 3.59081748679e-06 -2002334096.54 +UniRef50_UPI0001F85C4F L alanine dehydrogenase like protein 5.68994138396e-07 1.15830354983e-05 4446503654.48 +UniRef50_W0E372 Sensor histidine kinase 7.50315914886e-06 8.26984538403e-06 309520641.436 +UniRef50_UPI0003B51C09 sugar ABC transporter permease 1.645191136e-07 1.09049421513e-06 373827511.48 +UniRef50_UPI0000164CD9 putative transposase 1.04009031306e-05 0.00224490351769 9.02096125928e+11 +UniRef50_A5UNF8 Transporter 5.55748880488e-05 1.28402657247e-05 -17252491445.0 +UniRef50_U3SVD1 Glucosyltransferase 5.91138245052e-05 1.69724332695e-05 -17012996774.9 +UniRef50_R4W4T4 1.16557837691e-05 6.99750546659e-06 -1880604114.23 +UniRef50_UPI00046B847F PREDICTED 4.57991772569e-07 7.8698535773e-07 132818747.535 +UniRef50_Q9KDD8 Uridine kinase 1.9242592149e-07 5.53294454599e-06 2156032904.24 +UniRef50_UPI00024931AE DNA primase 2.5629783988e-07 8.38050006709e-07 234860488.651 +UniRef50_N1MTW2 Zn dependent hydroxyacylglutathione hydrolase Polysulfide binding protein 0.000128601120247 1.89599563013e-05 -44263483333.4 +UniRef50_B9DXD9 5.21870030673e-06 9.35843604362e-05 35674301362.9 +UniRef50_UPI0004137D5A hypothetical protein 5.15221984775e-08 5.55916322277e-08 1642880.34252 +UniRef50_B7J5S3 3 isopropylmalate dehydratase small subunit 2.79143686323e-07 4.75346164294e-07 79209348.032 +UniRef50_UPI0004561650 hypothetical protein PFL1_00576 4.92007997764e-07 8.13719612646e-08 -165778807.005 +UniRef50_I0TVV6 3.94338795662e-06 1.7073855617e-07 -1523064858.58 +UniRef50_A4WT53 PAS PAC sensor hybrid histidine kinase 8.17877758137e-05 1.77756860026e-05 -25842466173.4 +UniRef50_D1GN02 Phage protein 1.29411856802e-05 5.52826745699e-05 17093778653.3 +UniRef50_B9KPL9 Serine alanine racemase VanTc3 6.90152201695e-05 1.05136240652e-05 -23617812242.6 +UniRef50_A1A0Q3 ATP binding protein of ABC transporter for glutamate_aspartate 8.22898073514e-06 0.000145034286963 55229980914.1 +UniRef50_U6IFI6 Succinate dehydrogenase iron sulfur 1.56075853534e-07 3.63080855119e-07 83570459.3769 +UniRef50_UPI0002FDF659 hypothetical protein 2.24736170172e-06 8.22763072484e-07 -575127948.415 +UniRef50_A3M3T0 Merops peptidase family S24 2.14887659684e-06 4.97104478521e-05 19201189961.9 +UniRef50_Q8XBL0 Pyridoxine kinase 4.7296818035e-05 1.28831036566e-05 -13893238798.3 +UniRef50_I8G444 QmcA domain protein 1.53135691294e-06 4.92535906739e-07 -419384787.97 +UniRef50_UPI00040A034C hypothetical protein 1.17410236328e-06 3.18644624967e-07 -345358786.604 +UniRef50_UPI00046A4743 hypothetical protein 4.77346887315e-08 6.33420663349e-07 236448615.128 +UniRef50_D7GH22 Sugar phosphate isomerase epimerase 1.83245625651e-06 5.16893139385e-05 20127825258.7 +UniRef50_Q3HKP9 Capsule polysaccharide export protein 0.000167435587439 4.28559219853e-05 -50294339708.2 +UniRef50_G8WJH0 SD repeat containing cell surface protein 5.89785219924e-08 4.9981671354e-08 -3632139.00649 +UniRef50_M2IQZ0 9.40609324575e-07 9.5993694535e-07 7802797.68345 +UniRef50_UPI00036C3395 hypothetical protein 1.25206527223e-07 1.71480064877e-07 18681194.9911 +UniRef50_B7V5N6 ATP dependent DNA helicase RecG 5.97918672899e-07 2.85566237096e-06 911478836.538 +UniRef50_UPI000467A2E7 hypothetical protein 8.3421315248e-08 8.32340687593e-08 -75593.705261 +UniRef50_O25890 Chaperone protein DnaJ 1.49598146176e-06 5.76404844868e-05 22666224841.7 +UniRef50_UPI000370079F hypothetical protein 1.60036673401e-08 2.68153547889e-08 4364810.89741 +UniRef50_A0A037YH66 UDP pyrophosphate phosphatase 1.10309795144e-05 2.34468534782e-05 5012440679.09 +UniRef50_UPI00035FC7A0 hypothetical protein, partial 1.14066281251e-07 1.29698171571e-07 6310785.94705 +UniRef50_Z2DJY9 Membrane protein 4.35541143537e-07 7.85753266549e-08 -144111480.738 +UniRef50_Q2RRZ4 ABC transporter component 1.16755043878e-05 6.36426744807e-06 -2144211528.78 +UniRef50_W0DT44 Phosphate starvation inducible E 3.44221149706e-07 2.26576702423e-07 -47494507.0279 +UniRef50_UPI00016C3CBF tRNA pseudouridine synthase D 1.11517199679e-07 3.89456828263e-07 112207638.762 +UniRef50_P71243 Putative colanic acid biosynthesis glycosyltransferase WcaL 2.66901998859e-05 4.0551752795e-06 -9138037196.59 +UniRef50_UPI0003B6E3CF 3 ketoacyl ACP reductase 5.50152188711e-08 1.59382655432e-07 42134414.8721 +UniRef50_K1DU50 8.1572464485e-07 9.50415732837e-07 54376445.0659 +UniRef50_UPI0003ADCF18 PREDICTED 1.29394338211e-07 4.28829839684e-07 120885786.431 +UniRef50_C8S4J7 Rhodanese domain protein 7.3414245391e-07 4.82268201838e-06 1650593594.2 +UniRef50_Q6A9E9 Conserved protein DUF181 1.87411528866e-07 1.87368131423e-06 680767805.207 +UniRef50_Z4JX05 Aryl phospho beta D glucosidase BglA 7.41555694237e-05 9.16473200507e-06 -26237598593.1 +UniRef50_UPI00046D6223 hypothetical protein 9.24800655398e-09 5.91317081203e-07 234988428.227 +UniRef50_K1YN95 1.4837500546e-06 3.88327019228e-06 968715725.005 +UniRef50_E2XQ21 Transcriptional regulator, GntR family 5.46015685656e-06 8.91123966912e-06 1393244480.98 +UniRef50_G3Z0X9 6.51092115584e-07 1.80156244632e-06 464458990.378 +UniRef50_D8HEX2 0.000158601268871 6.07171340058e-05 -39517026418.5 +UniRef50_P45077 Metalloprotease PmbA homolog 2.68092204155e-05 1.54816858413e-05 -4573064712.09 +UniRef50_B6ISJ0 Peptidase M20D, amidohydrolase, putative 4.09085510496e-05 1.26918829327e-05 -11391415176.2 +UniRef50_D4TZ64 Tat pathway signal sequence domain protein 1.07574370492e-07 1.59110723982e-05 6380066084.51 +UniRef50_UPI0002EED4E0 hypothetical protein 3.03748642464e-07 5.30679800708e-06 2019792422.82 +UniRef50_Q7VDQ5 Imidazoleglycerol phosphate dehydratase 2.89900469797e-07 2.96656052923e-07 2727311.80829 +UniRef50_UPI00037AD56D hypothetical protein 1.74576034116e-05 1.40627002474e-05 -1370564067.53 +UniRef50_V9U275 Two component hybrid sensor and regulator 3.84996737874e-06 1.86284030768e-06 -802227583.378 +UniRef50_UPI00033433B7 4.19559761385e-07 2.37401923471e-07 -73539354.4939 +UniRef50_A5CXT4 Adenylate kinase 8.61323099979e-08 1.40693834537e-07 22027157.0016 +UniRef50_Q65JY3 Phospho N acetylmuramoyl pentapeptide transferase 0.000151481888935 0.000119667640595 -12843802459.6 +UniRef50_UPI0003650BE9 hypothetical protein 1.28141903458e-07 9.78084798547e-07 343132376.72 +UniRef50_L7WTJ0 Lipase 9.59269125166e-05 3.13940842354e-05 -26052694684.0 +UniRef50_A6LZ86 4Fe 4S ferredoxin, iron sulfur binding domain protein 5.91901940935e-06 1.95573976954e-06 -1600024625.5 +UniRef50_P13522 Sucrose 6 phosphate hydrolase 3.77287916303e-05 4.96639246154e-05 4818359646.64 +UniRef50_U4V9A4 1.10523066742e-06 2.74657171253e-07 -335312712.686 +UniRef50_U5MRD6 Glycosyl transferases group 1 2.21584936159e-06 4.38521638986e-06 875800090.44 +UniRef50_UPI000362B65E hypothetical protein 3.29133315166e-08 5.12265992425e-08 7393290.91001 +UniRef50_O34527 HTH type transcriptional regulator CymR 0.000192150299721 0.000110022922138 -33155830146.5 +UniRef50_R6AX85 7.9049456172e-08 1.24244419472e-07 18245761.2888 +UniRef50_A7NI79 Thymidine kinase 5.94286941918e-08 3.02363779631e-07 98075875.1405 +UniRef50_Q49UR2 1.6474594e-05 2.79498896508e-05 4632717671.94 +UniRef50_UPI0003F49ED6 hypothetical protein TREMEDRAFT_39067 2.6118484446e-07 6.48259576322e-07 156266819.194 +UniRef50_Q3JRJ0 4.49190764047e-07 3.27916737367e-07 -48959812.7704 +UniRef50_A0A017TDI9 2.28302484785e-06 5.95153886827e-06 1481024127.77 +UniRef50_U5RXJ0 ApbE family lipoprotein 2.78271246844e-06 9.80471241071e-06 2834867546.32 +UniRef50_Q9KIP9 Putative tagatose 6 phosphate ketose aldose isomerase 3.1908793394e-05 4.30670465334e-06 -11143301940.3 +UniRef50_R4ZN50 Accessory secretory protein Asp1 4.20737103937e-06 9.58713139362e-06 2171875272.09 +UniRef50_A7GMU8 Imidazole glycerol phosphate synthase subunit HisH 1.82852442582e-05 1.5499185642e-05 -1124766052.14 +UniRef50_F2A3T6 2.63248153318e-07 3.7530751246e-07 45239738.4086 +UniRef50_F2A3T7 4.16371803198e-07 9.35014067362e-07 209382246.499 +UniRef50_F6G911 Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein 8.3617128912e-05 2.39065456961e-05 -24105895175.5 +UniRef50_R6MA81 6.36656717431e-05 2.31599442465e-05 -16352659251.5 +UniRef50_UPI0003A6077C MULTISPECIES 2.27496268005e-07 2.05080173783e-07 -9049652.31383 +UniRef50_G7M9L8 RNA polymerase sigma factor, sigma 70 family 3.42132316185e-06 3.64988728217e-05 13353812704.9 +UniRef50_UPI00037595E9 hypothetical protein 8.04680106966e-06 1.44089306556e-06 -2666886124.86 +UniRef50_UPI00029AD5DC sugar acetyltransferase 1.63192216292e-06 3.15548488631e-06 615080967.65 +UniRef50_A8FSI3 Lipoprotein signal peptidase 1.2914898066e-07 3.35849165438e-07 83447401.0914 +UniRef50_I6X4E6 7.03390041336e-06 3.69249614578e-05 12067388148.2 +UniRef50_Q7NKY2 Gll1344 protein 6.20708487245e-07 2.42179461209e-07 -152816812.884 +UniRef50_K2JVH5 4.01853519558e-06 8.09797553478e-07 -1295406761.75 +UniRef50_Q87IM1 Tryptophan synthase beta chain 2 9.85695941472e-05 7.35173054717e-05 -10113916364.5 +UniRef50_UPI0003635E67 hypothetical protein 7.67537123549e-09 1.30839672438e-06 525117171.909 +UniRef50_D8HDF1 4.02926014687e-05 1.2511240102e-05 -11215676499.4 +UniRef50_S9RXU2 Putative membrane protein 1.35619347064e-06 1.88613664487e-07 -471366295.558 +UniRef50_F2AIM8 1.32363919928e-05 2.4201315059e-05 4426673996.56 +UniRef50_M5DRE1 Diguanylate cyclase 5.03261448424e-08 5.33281866195e-07 194975151.243 +UniRef50_L7WXF9 0.000196217480518 3.83407240475e-05 -63736783952.6 +UniRef50_A0A037V0H1 CRISPR associated protein Cas3 1.29795395708e-06 7.79523435085e-07 -209296763.587 +UniRef50_U5MZA5 Double stranded RNA RNA DNA hybrid binding protein 1.19457591412e-06 1.0682729974e-05 3830484226.72 +UniRef50_W1DV17 FIG001826 2.40623041765e-06 1.24814816943e-06 -467532014.874 +UniRef50_C4L8H9 Hydroxyethylthiazole kinase 8.03186243511e-08 8.91352113137e-08 3559364.34849 +UniRef50_Q82DT6 NADH quinone oxidoreductase subunit B 2 9.40441445721e-08 1.32836295103e-06 498309648.963 +UniRef50_UPI000262CA63 phosphoglycolate phosphatase 7.23667020105e-08 1.41718331835e-07 27998104.0004 +UniRef50_S5VB68 Extracellular solute binding protein family 1 1.07003461787e-05 4.67881152802e-06 -2430967431.02 +UniRef50_UPI0004746364 ABC transporter ATP binding protein 2.16693561435e-07 1.16754012645e-07 -40346822.2427 +UniRef50_UPI000470C654 hypothetical protein 4.05457825498e-07 2.25853472638e-07 -72508481.2428 +UniRef50_UPI00046D6B42 hypothetical protein 1.88998607553e-08 1.29989358213e-07 44848193.3452 +UniRef50_UPI00046533A1 hypothetical protein 4.48414150421e-07 1.51799489096e-07 -119746978.648 +UniRef50_A3PS59 ATP synthase subunit beta 2 2.13670217093e-05 8.27177709709e-06 -5286710946.67 +UniRef50_Q8TY90 50S ribosomal protein L3 2.03977377388e-05 1.38835882412e-05 -2629842089.78 +UniRef50_X1CQ64 Marine sediment metagenome DNA, contig 6.33774368481e-08 2.37809753065e-07 70420466.582 +UniRef50_UPI0003B5E6F5 succinyl CoA 4.50955400479e-07 7.29306988013e-07 112373951.646 +UniRef50_Q2FC51 Beta lactamase regulatory protein 8.84854930389e-06 2.35287798871e-06 -2622382220.79 +UniRef50_L9M7Y3 3.12057724381e-07 1.16627837632e-06 344859359.654 +UniRef50_W9GPH4 2.24026392221e-07 6.19239180645e-07 159552252.493 +UniRef50_Q1J961 Chromosome partitioning protein parB 2.95416793063e-05 1.09889015683e-05 -7489984041.02 +UniRef50_O57979 Amidophosphoribosyltransferase 9.66977626597e-08 6.82197319754e-07 236373356.086 +UniRef50_UPI00037A9112 hypothetical protein 1.01973264894e-06 1.59757800731e-07 -347182399.3 +UniRef50_W1K3B0 ABC transporter permease 1.46275645051e-06 9.37744974395e-07 -211953575.523 +UniRef50_Q46769 dTDP 4 dehydrorhamnose reductase 2.68197223256e-05 5.76284914849e-06 -8500918098.49 +UniRef50_UPI000375C690 hypothetical protein 3.46844481803e-05 5.18099482802e-06 -11910906166.4 +UniRef50_G7M2K9 3.5947760683e-06 1.5253445231e-05 4706747808.94 +UniRef50_W1JQY9 ABC transporter substrate binding protein 3.6129500953e-07 4.26125806884e-08 -128656007.197 +UniRef50_B9KQ28 Short chain dehydrogenase reductase SDR 1.4842175184e-06 7.79415626136e-06 2547399702.19 +UniRef50_Q3IV86 Putative signal peptide protein 4.08977136998e-05 5.36618798999e-05 5153050528.91 +UniRef50_B2IHW6 NADH quinone oxidoreductase subunit B 0.000187173152377 2.56464830968e-05 -65210298543.5 +UniRef50_E4R4C3 Phospholipid glycerol acyltransferase 1.52667343028e-05 4.63171940794e-06 -4293486019.38 +UniRef50_T5LAM1 7.09818393889e-07 2.2354747467e-06 615926191.538 +UniRef50_T1XT22 Amino acid permease, putative 0.000192927166706 6.537445294e-05 -51494595795.1 +UniRef50_UPI0003D746D3 PREDICTED 3.37341420109e-07 3.83837609567e-07 18771082.2566 +UniRef50_P12758 Uridine phosphorylase 7.24037112896e-05 1.17622224142e-05 -24481713213.7 +UniRef50_T0T7N0 Methylenetetrahydrofolate reductase 4.53118656265e-05 1.90930909601e-05 -10584841073.4 +UniRef50_UPI0003650C71 hypothetical protein 3.75398926197e-08 4.93411660296e-06 1976808105.72 +UniRef50_A6TH46 Thiol 2.6910727388e-05 5.88194810632e-06 -8489576248.16 +UniRef50_K8CFI0 3.29500338677e-07 3.3240091381e-06 1208919949.08 +UniRef50_A9BPL9 Alkylphosphonate utilization operon protein PhnA 1.42358009624e-05 1.70943992618e-05 1154051212.41 +UniRef50_B5EAA9 Repeat containing protein 8.41740174779e-09 4.61050513274e-08 15214966.6148 +UniRef50_C0YBF1 Bmlf1 4.50553563171e-07 4.81494628027e-06 1761958897.01 +UniRef50_Q4L4D1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 5.9681273456e-05 2.80436316379e-05 -12772504239.5 +UniRef50_R9ZJX7 Membrane protein 6.17291717953e-06 1.29809540745e-06 -1968025370.18 +UniRef50_UPI0004728032 hypothetical protein 9.13879209252e-08 6.37477685501e-08 -11158668.6966 +UniRef50_K1UNJ2 1.11250481525e-06 1.53266452563e-06 169623631.02 +UniRef50_O31214 Ubiquinol cytochrome c reductase iron sulfur subunit 2.71468647303e-05 5.2603280721e-05 10277067520.8 +UniRef50_F7Z135 Purine operon repressor, PurR 0.000246115778739 7.44939611464e-05 -69285833798.8 +UniRef50_UPI000360723E hypothetical protein 9.33102369204e-07 2.8095261512e-07 -263280858.501 +UniRef50_Q9CL21 ATP dependent DNA helicase RecQ 2.69715590188e-07 1.06163048148e-07 -66028168.2369 +UniRef50_D4HDF7 Dihydroorotase 8.84732786372e-07 6.89085363188e-05 27462044232.0 +UniRef50_C5N054 Transcriptional regulator, GntR family 0.000141059445048 1.74771802447e-05 -49891676825.9 +UniRef50_UPI00036E9C27 hypothetical protein 3.28227202705e-07 3.65917202089e-07 15215915.2596 +UniRef50_A8L4W4 Periplasmic binding protein LacI transcriptional regulator 6.8694884087e-05 2.14281664935e-05 -19082153920.3 +UniRef50_UPI0003084509 hypothetical protein 2.13642745381e-07 2.74032755915e-07 24380188.3213 +UniRef50_B2TER4 Lipid A ABC exporter family, fused ATPase and inner membrane subunits 5.55789561762e-06 1.01950531138e-06 -1832203858.94 +UniRef50_M7Y7A3 Gram positive signal peptide protein, YSIRK family 2.94802808926e-05 7.87511213846e-06 -8722271751.26 +UniRef50_B2UZX1 Medium FAD binding subunit of molybdenum enzyme 9.15588036967e-06 1.29290121664e-05 1523259607.87 +UniRef50_Q5HPD3 0.000178369003335 5.55979371893e-05 -49564185973.5 +UniRef50_Q8VYF5 N carbamoylputrescine amidase 1.00311860661e-05 0.000669718784096 2.66323978602e+11 +UniRef50_UPI0003B638F3 NADH quinone oxidoreductase subunit C 1.71585260953e-07 1.43702158245e-07 -11256750.7274 +UniRef50_UPI0001BF61FF hypothetical protein SMAC_10357, partial 3.07715102878e-07 1.08387659621e-06 313345919.431 +UniRef50_X4XF16 2.14016037738e-06 1.10291576289e-05 3588597270.7 +UniRef50_A7HVU8 UDP N acetylmuramate L alanine ligase 6.94832012535e-05 2.65222348691e-05 -17343869319.7 +UniRef50_Q7MWU9 Holliday junction DNA helicase RuvB 1.46679249356e-07 1.34160414192e-07 -5054007.37909 +UniRef50_UPI0003498384 hypothetical protein 3.65358747517e-07 1.40246285142e-07 -90880663.5013 +UniRef50_UPI000465F605 hypothetical protein 8.34053882458e-08 3.78458207996e-07 119116444.038 +UniRef50_A3CMZ0 Na+ driven multidrug efflux pump, putative 4.00208282712e-06 1.3515638682e-06 -1070047029.24 +UniRef50_Q8DVR0 Biofilm regulatory protein A 8.71238276259e-05 1.0967606795e-05 -30745200891.4 +UniRef50_UPI00035C59AE hypothetical protein 5.3390897265e-08 9.26128422881e-08 15834380.5132 +UniRef50_M1M0U2 8.01822697712e-06 3.90471017803e-05 12526737525.2 +UniRef50_L0SNC2 Transketolase 7.83452176476e-05 5.07993969819e-05 -11120585828.0 +UniRef50_F2JKB2 MATE efflux family protein 1.95540920246e-06 2.12158824757e-05 7775689412.98 +UniRef50_V0VWL0 1.64820678539e-06 7.40620129786e-07 -366403870.208 +UniRef50_J0I8Y3 9.92757340026e-06 3.55928317365e-06 -2570956912.19 +UniRef50_Q8Y2K1 Macro domain containing protein RSc0334 1.22545773291e-07 2.50833345073e-06 963171762.29 +UniRef50_UPI00037F821B MULTISPECIES 5.46463936188e-08 9.57589200755e-08 16597631.438 +UniRef50_UPI00047CF530 hypothetical protein 1.07943575231e-07 1.11973708883e-06 408473457.543 +UniRef50_I7F2J7 3.05041227496e-07 6.5983800558e-07 143235813.159 +UniRef50_A0A023RS80 Peptidase 7.60549339569e-07 3.74847791694e-05 14826022239.3 +UniRef50_A0A022H2W5 ABC transporter 9.75879467817e-07 1.03797831926e-06 25070068.3661 +UniRef50_E6MXW1 4.33169288013e-07 1.52777307547e-05 5992931627.36 +UniRef50_S2JUV8 Cache sensor containing methyl accepting chemotaxis sensory transducer 3.91681099492e-07 1.24260445654e-06 343528201.244 +UniRef50_J9YQ34 Oligopeptide ABC transporter permease 6.74065476329e-05 1.0675470542e-05 -22903031990.2 +UniRef50_C2MTH9 1.81528326302e-06 1.08589908587e-05 3651055735.15 +UniRef50_A6V0C7 Endoribonuclease YbeY 3.53893114548e-05 1.03808296372e-05 -10096230998.3 +UniRef50_I6U028 Histidine kinase of the competence regulon, ComD 5.96531478966e-05 1.64448262536e-05 -17443729673.0 +UniRef50_A5UN25 Adhesin like protein 2.67203171297e-05 6.60439264929e-06 -8121045562.89 +UniRef50_W5X6E3 Dihydrodipicolinate synthetase 2.23442717949e-07 3.26909896346e-07 41770969.6039 +UniRef50_A5UNS0 1.43740141139e-05 5.25786418738e-06 -3680301593.08 +UniRef50_U5MUD4 9.84333623217e-06 2.17971879889e-05 4825916644.44 +UniRef50_A6LXF6 Extracellular solute binding protein, family 3 4.24024084238e-06 1.33299090213e-05 3669610586.6 +UniRef50_L7WW55 1.91627895355e-05 1.26936057727e-05 -2611688870.85 +UniRef50_W4HNW2 1.75548100933e-06 6.9101234338e-07 -429739062.943 +UniRef50_Q326E0 2.33156346323e-05 6.96732845364e-06 -6600011820.62 +UniRef50_Q87VJ2 DNA mismatch repair protein MutL 2.83790145698e-06 5.16974879324e-06 941395384.633 +UniRef50_UPI000364E75E hypothetical protein 1.6289614279e-07 1.65944989468e-07 1230856.81746 +UniRef50_P76344 Metal binding protein ZinT 1.0063269456e-05 2.7685941112e-06 -2944949952.43 +UniRef50_A6LZ35 Major facilitator superfamily MFS_1 3.12463084358e-06 6.15650458012e-06 1224004632.72 +UniRef50_T1B713 Excinuclease ABC subunit C 1.14274265039e-06 2.93117279695e-07 -343004188.225 +UniRef50_A6QDY4 Phage major head protein 0.000163061123752 4.15989703457e-05 -49035761838.2 +UniRef50_T8P6W0 Glutathione regulated potassium efflux system protein kefC 1.42496481699e-05 1.10007650047e-05 -1311614002.07 +UniRef50_A7IP37 3.41658178e-05 1.10488934465e-05 -9332586038.07 +UniRef50_UPI0002628657 carbon monoxide dehydrogenase 1.65928134223e-08 7.83776851823e-08 24943310.9151 +UniRef50_P24255 RNA polymerase sigma 54 factor 3.85715440208e-05 1.18774010612e-05 -10776753086.8 +UniRef50_G7MAG2 Integral membrane sensor signal transduction histidine kinase 4.65813045532e-06 1.02671850504e-05 2264444170.87 +UniRef50_Q9RW34 1.33702239266e-06 0.00130553421098 5.26520409333e+11 +UniRef50_UPI00046F6D6F hypothetical protein, partial 1.16180000501e-06 3.77713594034e-07 -316545305.933 +UniRef50_Q3SJE0 Succinyl diaminopimelate desuccinylase 1.29564519235e-05 5.87669986218e-05 18494279860.7 +UniRef50_I1ZJN7 1.41461333002e-05 3.43194160753e-05 8144201810.33 +UniRef50_Q493N1 Siroheme synthase 5.06156188783e-08 2.28116761026e-07 71659389.2691 +UniRef50_A6LYS9 Conserved repeat domain 6.83184240824e-06 9.84901515369e-06 1218069662.21 +UniRef50_P52132 UPF0380 protein YfjQ 9.18469424836e-05 4.24149799921e-05 -19956289856.2 +UniRef50_A0A023RU18 Cytochrome C assembly protein 1.39982443328e-06 5.23220817102e-05 20557940149.1 +UniRef50_P57090 Probable nicotinate nucleotide adenylyltransferase 7.74800028339e-08 2.07833460035e-05 8359212194.03 +UniRef50_R5DD38 1.26441938643e-05 9.07950505196e-06 -1439108617.19 +UniRef50_X5E2G1 Transposase DDE domain protein 3.75262501931e-07 2.26354497405e-05 8986710751.44 +UniRef50_X8FIZ9 8.69349635899e-07 3.48124593075e-06 1054454585.8 +UniRef50_A0A023XW63 1.09859342255e-07 7.43359240541e-08 -14341239.8491 +UniRef50_UPI00037CE6B4 hypothetical protein 3.51651746946e-08 4.41408208943e-08 3623578.51438 +UniRef50_L1NZC1 Peptidase, M61 family 2.35358550272e-06 3.92459053246e-05 14893882231.8 +UniRef50_H7CZ41 6.55255359131e-06 3.15284738642e-06 -1372503114.0 +UniRef50_A0P4I0 BolA like protein 4.09390414434e-07 1.21558759842e-06 325471696.327 +UniRef50_O53871 Putative acyltransferase Rv0859 1.1653760883e-05 7.2072261005e-05 24391689917.6 +UniRef50_I0C833 9.09588435484e-05 4.19425782576e-05 -19788467795.1 +UniRef50_P35484 Dihydrolipoyl dehydrogenase 9.48565100103e-08 9.4082180455e-08 -312606.343567 +UniRef50_UPI000366F4F8 hypothetical protein 3.04557665679e-07 7.11047852039e-07 164105076.429 +UniRef50_G7MB49 Integral membrane sensor signal transduction histidine kinase 1.78097469345e-06 1.56581698798e-05 5602393989.04 +UniRef50_F0MAK0 ABC type spermidine putrescine transport system, ATPase component 7.09722431858e-06 2.47472099328e-06 -1866161316.92 +UniRef50_P45322 Molybdenum transport system permease protein ModB 7.38417193878e-05 6.03700445902e-05 -5438680431.83 +UniRef50_Q6G9Y4 Phosphate acyltransferase 0.000108364406024 7.91064605568e-06 -40554415605.3 +UniRef50_A4VG13 D lactate dehydrogenase 4.02387962304e-06 3.08511148134e-05 10830484053.6 +UniRef50_UPI00036F21BD hypothetical protein 1.71941792921e-08 4.68461902388e-08 11970880.6903 +UniRef50_I0DWZ9 2.76012854526e-07 2.80375176223e-07 1761122.80079 +UniRef50_K6CXP7 Hemolysin type calcium binding region 5.60140502968e-07 8.17774092473e-08 -193121051.11 +UniRef50_UPI0003C7E79E phosphoprotein phosphatase 9.30420957086e-08 1.45630803605e-07 21230706.7138 +UniRef50_Q4FP60 1.0938827632e-07 2.41537458519e-07 53350246.5066 +UniRef50_Q5HP10 7.93455641721e-05 7.45051619467e-06 -29024913119.9 +UniRef50_D7N6D8 Cysteine desulfurase ATPase component domain protein 1.88467875125e-07 5.25705025721e-07 136146776.061 +UniRef50_UPI0002D4A249 hypothetical protein 9.97859170997e-08 6.23259470773e-08 -15123049.5836 +UniRef50_I4ES52 1.19331714078e-06 7.49458221076e-05 29774791300.1 +UniRef50_O06458 Trehalose synthase 5.31295523526e-08 1.73191428668e-07 48470452.7933 +UniRef50_A0A024HWE9 3.76245357897e-07 4.03277950936e-07 10913389.5371 +UniRef50_D7I534 Acyl CoA thioesterase II 5.60791751245e-06 2.85330149942e-06 -1112072287.4 +UniRef50_K7UZS6 3.0901299642e-07 8.40807501992e-07 214691967.752 +UniRef50_F5M3N6 Phospholipase D transphosphatidylase 1.78261564169e-05 7.49477135326e-06 -4170906930.53 +UniRef50_V6ACD4 Peptidase M14, carboxypeptidase A 7.70931904675e-06 6.96647785508e-06 -299894104.764 +UniRef50_A5WCY2 FAD linked oxidase domain protein 7.58397427981e-06 8.53445979932e-05 31392918023.3 +UniRef50_A0A009IP40 SnoaL like domain protein 2.24561812277e-06 8.43970280647e-07 -565862434.017 +UniRef50_R6FR88 Two component system response regulator 2.03042247745e-05 1.30550034336e-05 -2926599613.27 +UniRef50_UPI00035F4A59 hypothetical protein 1.68277426314e-06 1.0431825591e-06 -258211019.594 +UniRef50_K8WUE9 Phosphomethylpyrimidine synthase ThiC 9.6474104816e-08 4.26944915255e-07 133415121.507 +UniRef50_Q9RU56 Osmotically inducible protein C 4.38937196334e-06 0.000660140364144 2.64734722513e+11 +UniRef50_UPI00047D8829 erythrose 4 phosphate dehydrogenase 4.8158850138e-07 6.72070788026e-07 76900036.5995 +UniRef50_D3QEY2 4 phosphopantetheinyl transferase 8.70557370541e-05 4.04025588936e-05 -18834460522.3 +UniRef50_R6M7U0 Transporter major facilitator family protein 1.1958373459e-06 3.23895818993e-05 12593297466.5 +UniRef50_UPI00016A29CB hypothetical protein 3.42963099569e-06 3.20072121394e-06 -92413687.9314 +UniRef50_K2JWT8 2.46122398948e-07 1.99139740934e-07 -18967475.5823 +UniRef50_Q5WE91 Acetoin dehydrogenase E1 component beta subunit 5.30261546252e-05 8.42227625789e-06 -18007133048.0 +UniRef50_UPI00031ABCD6 hypothetical protein 2.0828158654e-08 2.92321189728e-09 -7228446.72408 +UniRef50_Q2P3Y4 Serine tRNA ligase 2.0856588026e-07 1.13012532969e-07 -38576058.8728 +UniRef50_UPI0003AE0E87 PREDICTED 1.53720745704e-07 4.30159370849e-07 111601665.254 +UniRef50_S6AS82 1.21246862462e-08 9.43414266463e-08 33191907.0124 +UniRef50_A7ZP69 Nucleoside triphosphatase NudI 1.63022112397e-06 4.18888943548e-06 1032965795.75 +UniRef50_G7M113 Stage III sporulation protein AE 3.05388425099e-06 1.13116022178e-05 3333742076.8 +UniRef50_Q5QW41 8.90234787764e-07 3.40285727732e-07 -222021184.169 +UniRef50_E0D539 Transposase, putative 3.17938617421e-06 2.47439581659e-05 8705882340.11 +UniRef50_I8RAB7 Bifunctional protein 6.19245505121e-05 5.64640726234e-05 -2204461931.27 +UniRef50_F4PKU5 GTP binding protein 7.09423075916e-08 2.45367823446e-07 70417721.192 +UniRef50_B9AFH2 Polymorphic outer membrane protein repeat (Fragment) 4.65239245404e-05 6.22427999749e-06 -16269461034.2 +UniRef50_Q9FBM1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.71746473411e-07 8.73183399587e-06 3294327468.35 +UniRef50_P40747 5.42123896349e-08 1.6198528947e-07 43509242.1856 +UniRef50_UPI00037F886D hypothetical protein, partial 9.41625882376e-08 6.15004152159e-07 210270130.8 +UniRef50_Q98C76 Mlr5266 protein 5.39662797163e-05 1.12425841702e-05 -17248080170.7 +UniRef50_UPI0003A068C7 sodium hydrogen exchanger 3.66327363729e-08 8.92278046181e-08 21233274.4647 +UniRef50_S5XZ35 N carbamoyl L amino acid hydrolase 4.47841557911e-05 1.12297718678e-05 -13546316548.4 +UniRef50_UPI0003EDBEBD PREDICTED 1.94336482946e-07 4.2857357702e-07 94564389.2901 +UniRef50_K0TM35 1.052673218e-07 8.84786242565e-07 314701354.086 +UniRef50_A6LYV0 Response regulator receiver protein 6.56703973554e-06 7.43254568069e-06 349415371.009 +UniRef50_S3MI44 Major facilitator superfamily transporter 2.80435051188e-06 4.15369164399e-06 544745573.311 +UniRef50_A5IQJ9 0.000124117318935 6.99150844349e-05 -21882107203.9 +UniRef50_UPI0004675A7A thymidylate synthase 3.71253420442e-07 3.00782692181e-06 1064417076.9 +UniRef50_F5X1D7 Polysaccharide deacetylase family protein 3.87249400138e-05 1.62700923417e-05 -9065297557.19 +UniRef50_Q97F65 Thymidine kinase 2.34972018836e-07 4.12676534309e-07 71741493.5761 +UniRef50_G8VF81 1.23361434261e-06 6.24718453483e-05 24722625334.6 +UniRef50_B5FTN1 D amino acid dehydrogenase small subunit 2.66003357377e-05 1.01890091287e-05 -6625453941.68 +UniRef50_P0DD00 Peptidase T 1.98371540415e-07 2.32413445904e-05 9302730989.36 +UniRef50_X1XX47 2.76974454028e-08 3.40427439351e-08 2561674.88306 +UniRef50_Q6FD39 Bifunctional protein 1.14688224755e-06 6.58110354017e-05 26105712146.7 +UniRef50_Q2LTM3 Phosphopantothenoylcysteine decarboxylase phosphopantothenate cysteine ligase 0.000182382178451 6.32858968866e-05 -48080630343.1 +UniRef50_P0ACB2 Delta aminolevulinic acid dehydratase 5.11462776883e-05 1.56798900014e-05 -14318215930.7 +UniRef50_A5V3T8 Homoserine O succinyltransferase 6.50266905991e-05 2.74662881032e-05 -15163595405.6 +UniRef50_UPI0003B3EBD2 MarR family transcriptional regulator 1.36053655022e-07 4.9056661204e-07 143121231.111 +UniRef50_UPI0004410872 NAD binding protein 2.25238124737e-07 2.17318480834e-07 -3197257.4286 +UniRef50_Q9HQC9 Uridine kinase 9.5557806236e-08 5.89280326397e-06 2340419131.49 +UniRef50_G8MW75 9.64283406494e-07 5.5425707085e-06 1848310765.72 +UniRef50_P37941 2 oxoisovalerate dehydrogenase subunit beta 0.000228810220159 0.000110168703129 -47897036320.1 +UniRef50_UPI0003B580E0 NADH quinone oxidoreductase subunit N 3.80684136677e-06 2.55523260891e-06 -505289814.515 +UniRef50_B1T5I2 8.644717302e-06 2.19013728749e-05 5351874532.24 +UniRef50_P74089 Serine acetyltransferase 1.16275196345e-07 3.39024034125e-07 89926439.2474 +UniRef50_A5IUL9 Membrane flanked domain 0.00013333421178 2.7668044984e-05 -42658728205.2 +UniRef50_A9HYE8 Fumarate reductase iron sulfur protein 4.97179103935e-05 1.05108424525e-05 -15828374452.6 +UniRef50_Q5KX81 Octanoyltransferase LipM 0.000117946890581 1.88028250751e-05 -40025675879.2 +UniRef50_Q4L855 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000188163277998 4.10456856888e-05 -59393177351.0 +UniRef50_A0A052JJE9 PF04304 family protein 9.30866365262e-08 1.65685528877e-07 29309063.7306 +UniRef50_UPI0004790305 hypothetical protein 2.28734759483e-07 1.38956799455e-07 -36244464.1628 +UniRef50_P0AEW8 Inosine guanosine kinase 3.29720460027e-05 4.16698482988e-06 -11628956673.3 +UniRef50_U6AE90 Iron siderophore receptor protein 5.46134873074e-06 4.55565921252e-06 -365637972.566 +UniRef50_UPI00037FD430 hypothetical protein 4.22004747285e-06 5.14968538689e-06 375306233.838 +UniRef50_I3ZB99 Anti anti sigma regulatory factor 1.34470147202e-07 1.70866844165e-05 6843816927.58 +UniRef50_X7FC63 DNA topology modulation protein FlaR 1.20272092473e-07 7.27519882398e-07 245153384.561 +UniRef50_K7RWS7 UTP hexose 1 phosphate uridylyltransferase 2.19894750786e-06 0.00016278315577 64829815465.2 +UniRef50_UPI00038EEF34 PREDICTED 5.36723583906e-07 8.38514547387e-07 121836715.349 +UniRef50_P33226 Cytochrome c type protein TorC 3.04466669113e-05 6.61340127464e-06 -9621781804.59 +UniRef50_F4A9P0 6.48973046738e-06 5.32102171523e-06 -471822064.912 +UniRef50_A0A024E2H8 5.69942476081e-06 8.41436265288e-06 1096053743.06 +UniRef50_K0SEA3 2.36578271577e-06 2.30476863029e-07 -862049175.901 +UniRef50_UPI00047DC367 hypothetical protein 1.89622619208e-06 2.05012572066e-07 -682763691.923 +UniRef50_UPI0004636621 LysR family transcriptional regulator 7.7137009514e-07 4.27484330411e-07 -138830903.174 +UniRef50_E6MWP3 Ribonuclease R 5.618383897e-06 2.67058580429e-05 8513272085.11 +UniRef50_Q5LLN0 Maf like protein SPO3892 6.51022424552e-06 2.99813913899e-06 -1417871855.64 +UniRef50_A0A025DCK3 1.96534011341e-05 6.6522059301e-06 -5248742046.46 +UniRef50_C1FNN6 Xanthine uracil permease family protein 5.78975112097e-06 1.83787029211e-05 5082314325.51 +UniRef50_Q9K1B0 NADH quinone oxidoreductase subunit L 1.9261353775e-06 3.65883782312e-05 13993572793.6 +UniRef50_UPI0004784A1B hypothetical protein 5.49168705589e-08 4.72741849433e-08 -3085445.96932 +UniRef50_UPI00046D54E5 hypothetical protein 3.37512462937e-07 2.49413424635e-07 -35566662.8593 +UniRef50_D3QF80 Teichoic acid biosynthesis protein X 0.0001260565396 3.15157068384e-05 -38167294332.3 +UniRef50_V6UWS0 4.61070431122e-07 9.61659818164e-07 202094078.471 +UniRef50_UPI00037F4484 ADP ribose pyrophosphatase 1.60510613515e-07 4.13069991843e-07 101961320.283 +UniRef50_I6Y6R6 FAD containing monooxygenase EthA 4.33565901519e-08 1.19064230854e-05 4789265520.31 +UniRef50_UPI000464816A hypothetical protein 3.41086035292e-08 1.78316111783e-08 -6571221.55322 +UniRef50_UPI0003099314 hypothetical protein 7.94262649132e-08 1.31194741009e-07 20899569.0705 +UniRef50_C7NK94 Molybdopterin guanine dinucleotide biosynthesis protein A 3.20945684836e-08 1.03596168931e-07 28866073.5239 +UniRef50_Q5GT42 NADH quinone oxidoreductase subunit C 2.38919801395e-07 4.02367479138e-07 65985833.2334 +UniRef50_B9DPC0 DNA mismatch repair protein MutL 0.000105323675018 3.51169813867e-05 -28343303752.0 +UniRef50_B7VH15 8 amino 7 oxononanoate synthase 4.72090388881e-08 6.5426369729e-08 7354560.01226 +UniRef50_B0V8Y0 9.05562938967e-06 0.000211990466116 81927283876.8 +UniRef50_C6SRM3 5.26241595226e-05 2.73873043014e-05 -10188428143.8 +UniRef50_UPI00038126DC hypothetical protein 4.40952202213e-07 1.17696306707e-07 -130502371.812 +UniRef50_Q1CRC0 DNA helicase II 7.03390041314e-07 3.47929390156e-05 13762369246.7 +UniRef50_H3XJS2 HsdM N terminal domain protein 8.18920046117e-07 1.31809027421e-06 201521146.589 +UniRef50_A5WEV0 Serine O acetyltransferase 1.40328078208e-05 7.35608824968e-06 -2695473623.42 +UniRef50_Q2RMV4 Peptidyl tRNA hydrolase 6.82353715596e-07 3.26482736208e-07 -143669481.407 +UniRef50_Q8CMP5 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.000139113553394 2.70038693372e-05 -45260055194.3 +UniRef50_B6IRZ1 Phospholipase D 3.3528290026e-05 6.61904767747e-06 -10863591349.6 +UniRef50_Q0I1I7 tRNA tmRNA ) methyltransferase 3.94839151024e-05 6.19091115691e-05 9053327001.71 +UniRef50_M2HS82 N acetylmuramoyl L alanine amidase 4.13667678269e-05 8.8874606378e-06 -13112294878.2 +UniRef50_A3PKI1 NADH quinone oxidoreductase subunit B 2 4.58773028275e-05 1.18823496732e-05 -13724179753.4 +UniRef50_U3T6X0 1.18334165783e-06 7.02522070571e-05 27883948532.0 +UniRef50_UPI00047861DB hypothetical protein 1.0575360446e-07 5.72678691158e-06 2269280123.92 +UniRef50_UPI000379BC38 hypothetical protein 4.07926122275e-08 8.87549613469e-08 19362988.9037 +UniRef50_UPI00030F43CB hypothetical protein 2.10293445681e-07 6.25829915054e-08 -59632522.962 +UniRef50_F8HCR3 Pyrimidine nucleoside phosphorylase 4.51151931001e-05 5.70170699734e-06 -15911707997.6 +UniRef50_Q2NIS4 Uridylate kinase 2.11655019825e-07 2.08421570789e-07 -1305383.05471 +UniRef50_Q51697 Isoquinoline 1 oxidoreductase subunit alpha 3.3828006435e-07 6.41318624773e-07 122340385.544 +UniRef50_UPI0002896149 penicillin binding protein 2B 4.1256257506e-08 1.18698254272e-07 31264284.4146 +UniRef50_L8BQX8 1.7143598997e-07 1.051786854e-05 4176981785.44 +UniRef50_A5UJP8 Adhesin like protein 1.98957688591e-05 5.43399143023e-06 -5838397014.01 +UniRef50_Q2YSH2 0.00025784256351 8.6808658139e-05 -69048486420.3 +UniRef50_K0RL16 2.29707498285e-06 3.21104214386e-07 -797723647.115 +UniRef50_P09772 Nitrogenase molybdenum iron protein beta chain 0.000139273469701 3.86512868688e-05 -40622409982.3 +UniRef50_A4YC85 Protoheme IX farnesyltransferase 2 1.05538520455e-07 1.94996543834e-07 36115301.8115 +UniRef50_UPI0003696809 hypothetical protein 2.00850807268e-06 1.09233211971e-06 -369871474.957 +UniRef50_UPI00035C30D5 hypothetical protein 3.93936534939e-08 2.3581753157e-07 79298729.9713 +UniRef50_R4VP47 Twin arginine translocation pathway signal 0.00012262702714 2.5642447106e-05 -39153865094.4 +UniRef50_W5X7K8 Polyribonucleotide nucleotidyltransferase 5.04790710489e-07 6.0176745144e-08 -179496113.837 +UniRef50_P0AGG9 Metalloprotease TldD 2.75566454213e-05 5.79749737165e-06 -8784435082.4 +UniRef50_E4NBU8 2.48455827795e-07 3.37817215202e-07 36076288.6837 +UniRef50_UPI000367E778 hypothetical protein 4.81897543951e-07 7.87393820955e-07 123332595.887 +UniRef50_W8RNL3 5.05451662561e-07 9.28884659938e-07 170945097.148 +UniRef50_Q8PGP9 Proline tRNA ligase 3.73782922409e-05 8.30906379545e-05 18454634918.1 +UniRef50_A4E7N7 1.02246847351e-07 2.28554735532e-06 881425207.178 +UniRef50_UPI00047E0F2D hypothetical protein 9.02701809486e-07 3.09742967116e-07 -239384761.088 +UniRef50_P75863 2.95708657843e-05 1.16231213264e-05 -7245724681.25 +UniRef50_UPI0000379EF0 hypothetical protein 9.51739575211e-05 6.95175862668e-05 -10357791914.4 +UniRef50_B7UM47 Nucleoid occlusion factor SlmA 4.45714182167e-05 8.24139642406e-06 -14666875617.2 +UniRef50_Q8VQ99 Serine rich adhesin for platelets 0.000133651410297 3.07465969447e-05 -41543935934.3 +UniRef50_UPI000472F1A4 AsnC family transcriptional regulator, partial 2.09721294802e-06 9.25324162328e-07 -473105883.476 +UniRef50_P37567 Probable tRNA dihydrouridine synthase 1 2.48992172685e-07 8.76244473598e-08 -65146130.9184 +UniRef50_A0A024H9L1 Short chain dehydrogenase 1.1585744695e-05 4.20878914765e-06 -2978167479.89 +UniRef50_Q9HVL0 UPF0114 protein PA4574 4.65553612639e-06 4.35356322155e-06 -121910167.308 +UniRef50_A5W6U4 NAD kinase 1.35514604476e-05 9.14883585972e-05 31464082176.3 +UniRef50_A8WXW9 Protein CBG04553 5.94233117324e-09 8.70296404213e-07 348950346.103 +UniRef50_UPI000470F5F1 indole 3 glycerol phosphate synthase 3.74433064122e-08 4.52793155202e-08 3163493.03554 +UniRef50_B2HWA5 7.50638356551e-06 4.10416543211e-05 13538600328.1 +UniRef50_Q02151 5.82056033768e-05 1.91034817387e-05 -15786006342.3 +UniRef50_Q3JHC8 8.9262173431e-08 2.89319566816e-07 80765624.6898 +UniRef50_F4JP46 Formyltetrahydrofolate deformylase 2, mitochondrial 4.01045676852e-08 2.14538218759e-07 70421005.4802 +UniRef50_Q3JQU1 3.62050924882e-06 1.58986113162e-06 -819797563.768 +UniRef50_P58381 Enoyl [acyl carrier protein] reductase [NADH] 2 0.000233456732439 3.60406785844e-05 -79699283508.7 +UniRef50_P37560 0.000247124566727 4.94176026267e-05 -79816727544.4 +UniRef50_A7BEA1 1.95588595265e-06 3.93825298334e-05 15109595411.2 +UniRef50_R5E7A9 Extracellular ligand binding receptor 9.93384181239e-07 1.09204434406e-05 4007675641.72 +UniRef50_Q9RRM5 Transport protein, putative 1.56850133866e-06 0.000566886280836 2.28225724812e+11 +UniRef50_I0GP22 5.74851759676e-06 9.55635529577e-05 36259431929.6 +UniRef50_UPI000467D29B translation initiation factor IF 3 2.84736057238e-06 3.45096788494e-06 243683679.175 +UniRef50_Q8D2L3 Fumarate hydratase class II 6.38846853821e-08 2.87768563892e-07 90384669.1186 +UniRef50_B8DP86 Ribosomal RNA small subunit methyltransferase H 5.55877566644e-08 3.00860929869e-07 99019789.8632 +UniRef50_P45625 0.000191200132519 6.11551050911e-05 -52500773404.6 +UniRef50_UPI00035FFFC6 hypothetical protein 4.89220189296e-08 7.10232832152e-08 8922551.60511 +UniRef50_UPI000329D7B6 1.52043927363e-05 4.09088821109e-06 -4486658154.86 +UniRef50_G8XAZ1 Nitrate nitrite antiporter 5.34104805209e-08 1.97567236534e-07 58197851.4048 +UniRef50_A0A024L3K6 Fimbrial biogenesis outer membrane usher protein 1.36673023498e-05 9.6768544727e-06 -1610992776.29 +UniRef50_UPI0004623CA1 hypothetical protein TRAVEDRAFT_50483 1.46433848469e-05 1.14734779734e-05 -1279730303.96 +UniRef50_V6ECI2 Dihydroxy acid dehydratase 3.00089830918e-05 1.17364870241e-05 -7376830891.27 +UniRef50_A0A039PB00 Integral membrane protein 1.0239065735e-06 7.24339404585e-07 -120938942.194 +UniRef50_D3E2D1 Fumarate hydratase FumA3 4.55044301987e-05 5.75292282856e-06 -16048171331.2 +UniRef50_O33518 Protein translocase subunit SecF 0.000181422904964 4.66741639474e-05 -54399720301.6 +UniRef50_Q3KIA5 Protein RnfH 2.13451397922e-07 5.22917510373e-07 124935267.173 +UniRef50_UPI00037B6FC9 hypothetical protein 5.31470782947e-07 1.59501656606e-07 -150168500.878 +UniRef50_O27572 Probable tRNA pseudouridine synthase D 5.60182684156e-05 7.57531807255e-06 -19557013515.4 +UniRef50_P24891 Cytochrome c oxidase subunit 3 9.05422833056e-08 1.85659615324e-07 38400034.1567 +UniRef50_C7MF62 Alpha L fucosidase 4.84450537803e-06 6.49556280741e-05 24267597878.8 +UniRef50_I4E0F8 7.35859046839e-05 2.30994579008e-05 -20381998104.7 +UniRef50_UPI00021931F3 amino acid adenylation protein 2.56154256215e-07 8.82164135343e-08 -67798567.9194 +UniRef50_A5IUD1 0.000272242820652 2.62765055399e-05 -99299619756.8 +UniRef50_R9TX51 YlmE 7.06167836271e-05 2.61917102393e-05 -17934947283.6 +UniRef50_B5Y1Z5 Protein ApaG 7.01549052867e-06 4.21089715591e-07 -2662240530.64 +UniRef50_E8QVJ8 Molybdenum ABC transporter ModA 9.62945748232e-06 5.54111084734e-06 -1650515706.2 +UniRef50_U4KGU9 Toluene tolerance protein Ttg2B 1.68924000892e-06 3.32640212303e-07 -547675985.247 +UniRef50_UPI00042B69C5 Translation initiation factor 3 protein isoform 4, partial 1.22654838245e-06 4.90649270653e-07 -297091501.93 +UniRef50_UPI000416FC07 ADP ribose pyrophosphatase 1.7406307468e-07 1.02772278334e-05 4078771592.86 +UniRef50_C5Q752 6.15978929589e-05 2.78123323943e-05 -13639645395.4 +UniRef50_UPI0003815DCD hypothetical protein 1.79626024847e-07 9.78533272344e-08 -33012641.49 +UniRef50_UPI000362D4DF hypothetical protein 4.33292488794e-08 5.24399720686e-08 3678110.75263 +UniRef50_P9WP46 Carbon starvation protein A homolog 5.53498517408e-07 1.450268556e-05 5631457984.87 +UniRef50_Q5NP61 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 3.11847761641e-05 0.000108143639703 31069237602.1 +UniRef50_UPI00046F7845 hypothetical protein 9.77725619819e-07 6.97851834327e-07 -112988481.641 +UniRef50_F2D112 Predicted protein 2.76070279952e-06 4.57255780377e-06 731468099.177 +UniRef50_Q3J4J9 Ribonuclease E 4.1726369635e-05 8.90576157891e-06 -13250082226.4 +UniRef50_P59399 Histidinol dehydrogenase 3.58042793865e-08 5.26211012032e-08 6789157.33301 +UniRef50_W5BPL1 7.20976231916e-07 1.97741842596e-07 -211236143.776 +UniRef50_UPI0004738B2C hypothetical protein 1.22342457111e-07 1.38680059825e-07 6595690.70057 +UniRef50_K4QBP0 K12555 penicillin binding protein 2A 1.70237920242e-06 1.13656204698e-06 -228427329.008 +UniRef50_UPI00030CFAAF hypothetical protein 5.42388370583e-08 1.29024575317e-06 498991159.544 +UniRef50_J1B0P3 7.29065126538e-05 5.60599604239e-05 -6801159865.65 +UniRef50_UPI0003B4DEC2 DNA gyrase subunit B 7.58102851781e-08 2.06709034176e-07 52845431.2788 +UniRef50_O34384 3.93898423154e-06 0.00109211752741 4.39311031334e+11 +UniRef50_Q8DT90 Ribonuclease Z 5.56528829248e-05 3.04074178836e-05 -10191904033.8 +UniRef50_A9WMF4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 4.127114371e-06 8.08159626611e-05 30960229132.7 +UniRef50_A8J8D8 Predicted protein 7.89779326069e-07 5.23951874321e-07 -107317804.34 +UniRef50_Q2YI45 Streptokinase like protein 4.39832627451e-06 7.66000648442e-06 1316780326.06 +UniRef50_Q1GHZ2 GTPase Der 5.25917139903e-05 5.31736013761e-06 -19085236771.9 +UniRef50_Q6GIW1 UPF0178 protein SAR0734 9.89749961365e-05 6.41997573627e-05 -14039190633.2 +UniRef50_Q1R9Q5 6.32142872301e-07 6.36635190352e-07 1813603.92413 +UniRef50_A3UXL8 1.86111392492e-07 3.0931744026e-06 1173617010.86 +UniRef50_R6QI78 RpiR family Helix turn helix domain containing protein 1.24130768918e-05 7.16737921957e-06 -2117752522.23 +UniRef50_D3E0Y1 Thymidylate synthase ThyA 2.8632083678e-05 3.60875810829e-06 -10102223603.2 +UniRef50_A7X5Z9 Ferredoxin NADP reductase 0.000143967877412 4.07085605633e-05 -41687053346.3 +UniRef50_Q83H92 Uroporphyrinogen decarboxylase 3.86158700379e-08 6.50499141093e-08 10671747.9738 +UniRef50_UPI0004786744 hypothetical protein 2.86886674473e-07 5.04092251724e-06 1919262608.31 +UniRef50_Q3JVX1 2.74543377408e-07 2.66449036922e-07 -3267784.58293 +UniRef50_P44324 Aspartate ammonia lyase 7.81706715078e-08 8.84354366833e-05 35670912554.5 +UniRef50_C5YPR8 9.42582286729e-07 2.50149047621e-07 -279543795.739 +UniRef50_B2ZY73 1.16147818039e-07 4.90013030344e-06 1931352435.42 +UniRef50_P0AGC1 Hexose phosphate transport protein 2.88028788074e-05 7.03338153865e-06 -8788613189.15 +UniRef50_UPI0001FFF263 putative enterobactin iron transport system, ATP binding protein 3.85906011636e-08 2.80956816684e-06 1118677646.98 +UniRef50_A3M517 3.17215116685e-06 4.23129872881e-05 15801635854.2 +UniRef50_B1K7T3 Two component transcriptional regulator, LuxR family 1.27799304247e-05 5.72669132518e-06 -2847479177.45 +UniRef50_B0T202 UPF0386 protein Caul_4643 6.43442026451e-06 8.2726730099e-07 -2263676458.88 +UniRef50_T1B6U2 1.45227997145e-06 2.60747201073e-07 -481036401.154 +UniRef50_A8TBH7 3.33006228323e-07 2.71059672822e-07 -25008584.6255 +UniRef50_F3L3B7 1.05663787293e-07 2.59526988956e-05 10434765252.0 +UniRef50_Q1IXV7 UDP N acetylenolpyruvoylglucosamine reductase 2.07790452577e-06 0.000133036150785 52869451053.2 +UniRef50_A8TBH9 2.28016211279e-07 1.85556357129e-07 -17141564.1614 +UniRef50_Q8DEZ6 Dual specificity RNA methyltransferase RlmN 1.91758539698e-05 1.98092217823e-05 255698358.203 +UniRef50_T1DG32 Phosphoribosylformylglycinamidine synthase 5.05035815728e-07 7.64946016312e-07 104928937.433 +UniRef50_I3XA84 5.329161694e-08 1.95837486089e-07 57547516.61 +UniRef50_UPI0004655A42 MULTISPECIES 1.29751929707e-07 4.02567288e-07 110138907.964 +UniRef50_M3BXT0 DNA polymerase II large subunit 5.2803885481e-07 1.06517108153e-06 216846871.28 +UniRef50_A8LRN8 9.8425821442e-05 2.64643439579e-07 -39628872132.7 +UniRef50_P65098 Isocitrate dehydrogenase [NADP] 2.22932078485e-06 9.52584681021e-06 2945697094.88 +UniRef50_UPI00036FD78D hypothetical protein 6.41691420969e-07 2.8685344635e-07 -143252444.705 +UniRef50_J0FJU8 7.30687607927e-06 3.91492522588e-06 -1369372183.43 +UniRef50_X6EJ38 1.05868996491e-07 2.95767613642e-08 -30800111.5317 +UniRef50_F7X313 1.90627024615e-06 5.57962401566e-07 -544328422.455 +UniRef50_V9VVH8 Flagellar protein FlgJ 1.81366325563e-06 9.96839753491e-07 -329761671.365 +UniRef50_C5BY82 Glutamate racemase 1.3291760171e-06 8.96206782647e-05 35644362915.9 +UniRef50_H1LKH2 1.3577153381e-06 3.6154790343e-07 -402165017.725 +UniRef50_F7X315 1.80502741009e-06 9.24195866583e-07 -355602503.132 +UniRef50_UPI0003B4E9FE membrane protein, partial 1.07165518852e-07 3.44624577348e-07 95865135.8652 +UniRef50_I4KLM3 Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein 4.57799522156e-06 1.4228379447e-05 3895978535.34 +UniRef50_F8GY06 Endoribonuclease L PSP 7.48288081995e-06 3.68237718954e-07 -2872268726.36 +UniRef50_G7M214 Pyruvate, water dikinase 6.14755258589e-06 1.7276457733e-05 4492875574.91 +UniRef50_UPI000471162E hypothetical protein 4.59840773834e-07 1.42586141608e-06 389994387.681 +UniRef50_UPI000400283D hypothetical protein 3.14234853305e-07 2.41539503825e-07 -29348004.6573 +UniRef50_L7WWZ3 1.34486477337e-05 1.01833346619e-05 -1318246956.98 +UniRef50_UPI0004651131 hypothetical protein 1.35461501585e-07 1.75834418796e-07 16299042.1095 +UniRef50_Z5LDC7 8.81984199907e-08 1.46000310718e-07 23335332.5956 +UniRef50_Q2YUU9 Superoxide dismutase [Mn Fe] 2 0.000172192372112 7.42138719141e-05 -39555122861.3 +UniRef50_B6IVA8 2.74786408743e-06 2.20366318272e-07 -1020381865.3 +UniRef50_P77307 Probable iron export permease protein FetB 1.93535853081e-05 1.14289132711e-05 -3199287348.0 +UniRef50_UPI00047CBBFB 2 amino 4 ketopentanoate thiolase 1.74393197276e-07 2.43748277575e-07 27999496.9992 +UniRef50_M9VDV1 ComE operon protein 1 6.77992423077e-06 4.11448007384e-05 13873522350.6 +UniRef50_A0A023WVI0 Aldehyde dehydrogenase 7.54962195672e-06 1.07917038281e-05 1308868236.29 +UniRef50_L8GN65 6.94448575617e-07 4.2846689115e-05 17017376771.9 +UniRef50_W4U756 Helicase 1.43441913114e-06 6.4589008652e-05 25496282783.6 +UniRef50_R7PWJ9 Glycosyl transferase group 1 family 2.79894568767e-05 1.50713321948e-05 -5215205457.3 +UniRef50_U6ACI3 6.82203594306e-06 2.07239793119e-05 5612385134.01 +UniRef50_P15505 Glycine dehydrogenase , mitochondrial 6.55682981838e-08 8.59353400528e-08 8222424.73422 +UniRef50_X1P9R1 Marine sediment metagenome DNA, contig 1.02556610051e-07 1.96793142582e-06 753074703.849 +UniRef50_UPI0004655CAA hypothetical protein 1.05516926407e-06 1.57294126552e-07 -362483211.183 +UniRef50_F4LAH5 7.21638694007e-07 9.30099593277e-07 84158223.1382 +UniRef50_Q9HYL3 Regulatory protein NosR 6.11603201991e-06 2.69419404064e-06 -1381437982.91 +UniRef50_UPI0003621B43 hypothetical protein, partial 2.14774681963e-07 1.32079766016e-07 -33384952.3485 +UniRef50_F4C7A6 1.32501228975e-06 4.23127123377e-07 -364102109.04 +UniRef50_A0A058SUW3 Aminopeptidase N 1.35730539713e-05 6.03066188573e-06 -3044956240.5 +UniRef50_C1KYE1 UPF0145 protein Lm4b_00206 2.52976754703e-06 2.62455437968e-05 9574349897.35 +UniRef50_X1HW00 Marine sediment metagenome DNA, contig 2.24918768759e-07 3.10753539228e-07 34652550.1494 +UniRef50_UPI0004240D5A deoxyguanosinetriphosphate triphosphohydrolase 7.67713099362e-07 2.25363850358e-07 -218953047.197 +UniRef50_Q7VSF4 3,4 dihydroxy 2 butanone 4 phosphate synthase 1.21381161181e-05 7.03135012379e-06 -2061664098.97 +UniRef50_P0AFM7 Phage shock protein A 4.30849669855e-05 1.31110077178e-05 -12100855178.2 +UniRef50_D9RI97 KAP family P loop domain 2.86097518987e-07 1.84998222023e-07 -40815026.8123 +UniRef50_P95676 Alpha acetolactate decarboxylase 5.02561603977e-05 4.60209865024e-05 -1709791672.96 +UniRef50_Q5HLB9 4.04449273767e-06 1.3402279265e-07 -1578704703.67 +UniRef50_P0ACN9 HTH type transcriptional repressor CytR 3.4596958985e-05 7.87133462401e-06 -10789462514.8 +UniRef50_UPI0002899BE2 LysR family transcriptional regulator 3.38659087046e-07 3.55382544664e-06 1298002113.89 +UniRef50_I0C253 Arginine permease 0.000215364927056 4.8707194372e-05 -67281771804.9 +UniRef50_I6TND0 0.000149196745975 4.1399538111e-06 -58561207043.6 +UniRef50_D2VJL9 Predicted protein 4.16212611656e-08 2.47944454847e-07 83295205.1593 +UniRef50_B5FI46 Ribulokinase 3.14829642289e-05 8.28862732927e-06 -9363838432.89 +UniRef50_F6AE19 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 4.32504887664e-06 3.42291567166e-06 -364202245.27 +UniRef50_UPI00046A2ACC hypothetical protein 6.03336173221e-07 4.09835822265e-07 -78118466.1973 +UniRef50_R7E993 ABC transporter ATP binding protein 3.80417985794e-06 8.43277692777e-05 32508361184.3 +UniRef50_UPI0002625F3E inner membrane translocator 2.80488921251e-07 8.81686262712e-08 -77642063.1188 +UniRef50_UPI00034F3E03 PREDICTED 5.78674528727e-08 1.35868164547e-07 31489844.4793 +UniRef50_K2ET09 5.13683777198e-07 8.71913120182e-08 -172180241.844 +UniRef50_G8VFU9 2.45754526308e-06 8.18443852214e-05 32049441477.2 +UniRef50_A5UMD6 Imidazole glycerol phosphate synthase subunit HisH 4.32207144325e-05 5.10634072383e-06 -15387240382.2 +UniRef50_E8JET5 6.99816215255e-06 2.10998085778e-06 -1973418773.43 +UniRef50_UPI0004767186 tyrosine protein kinase 5.14798070652e-08 1.24490306067e-07 29475234.3866 +UniRef50_F0YJ58 1.59894413794e-06 4.30282827554e-06 1091591206.74 +UniRef50_UPI00046523D9 LuxR family transcriptional regulator 1.33395908673e-07 1.07855666581e-06 381572996.083 +UniRef50_UPI000479578E dTDP 4 dehydrorhamnose 3,5 epimerase 3.05745072204e-07 2.16364904375e-07 -36083870.5706 +UniRef50_A6LTH3 Phosphotransferase system PTS, lactose cellobiose specific IIA subunit 3.01988791085e-06 5.3693946399e-06 948524698.207 +UniRef50_UPI0000F2F50C glutamyl Q tRNA ligase 1.48616531043e-06 4.68366758614e-05 18308557622.8 +UniRef50_UPI0001D2EE73 RNA polymerase, sigma 24 subunit, ECF subfamily 2.78660683749e-06 1.83035316085e-07 -1051093772.6 +UniRef50_N0C910 IS3 Spn1, transposase 0.000293567644896 0.000167948224045 -50714101721.2 +UniRef50_Q8DWS9 Membrane protein, putative 4.7176087326e-06 2.63539647265e-08 -1893917117.96 +UniRef50_A9BQJ1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.000164518363516 9.15393675399e-05 -29462516228.5 +UniRef50_O66937 4 alpha glucanotransferase 3.23286954483e-08 3.26711990062e-06 1305924904.88 +UniRef50_A6FVX6 Transcriptional regulator, MarR family protein 2.04133963314e-07 9.16620503164e-07 287639559.33 +UniRef50_UPI00047CC502 hypothetical protein 5.42685064378e-08 7.56700283146e-08 8640057.00787 +UniRef50_Q3IVA9 Transcriptional regulator, LacI family 1.30167582368e-06 1.97977679469e-06 273757683.231 +UniRef50_B8EMC6 40 residue YVTN family beta propeller repeat protein 9.08940874882e-08 1.56118981588e-07 26332090.1475 +UniRef50_D8GUE2 Predicted transcriptional regulator, marR family 8.14717961549e-06 7.59664973668e-06 -222255667.837 +UniRef50_O22514 Proline rich protein 8.03917357581e-07 1.76450228547e-07 -253316179.879 +UniRef50_U7G864 1.87288527963e-07 2.71089722478e-07 33831570.582 +UniRef50_E0SFZ4 Cobalamin synthesis protein 3.49261746501e-08 4.34942840909e-08 3459050.92378 +UniRef50_Q9JVX8 DNA polymerase III subunit alpha 3.30162672461e-07 3.36147975305e-05 13437415540.6 +UniRef50_P54388 NADP specific glutamate dehydrogenase 3.37907212892e-06 0.000104425555563 40793705342.1 +UniRef50_W1U3S2 2.56878736369e-06 2.49157891501e-05 9021758849.72 +UniRef50_M7XCW4 Sodium 1.78618307919e-07 2.77278640058e-07 39830386.7829 +UniRef50_UPI0003B534E7 50S ribosomal protein L33 1.376077638e-05 2.73300282519e-05 5478073494.13 +UniRef50_UPI00046CEEB8 hypothetical protein 4.5502863458e-07 1.62557467417e-07 -118074199.209 +UniRef50_UPI00016C3E34 30S ribosomal protein S4 5.32299285346e-07 2.37052723203e-06 742115179.668 +UniRef50_Q5HRX0 8.86325496954e-05 4.78165043983e-05 -16477938355.6 +UniRef50_UPI0003608953 hypothetical protein 3.55755776883e-08 9.03389444709e-08 22108643.1922 +UniRef50_M1F771 6.84979970328e-07 5.93571061799e-07 -36902898.0866 +UniRef50_O87198 Homocitrate synthase 4.97507446483e-08 0.000462358003109 1.8663951464e+11 +UniRef50_Q55863 Pyruvate kinase 1 1.809883044e-07 1.49656893162e-07 -12648875.1964 +UniRef50_UPI00046D1C25 NADH 1.15721758712e-06 3.90686069697e-07 -309458179.983 +UniRef50_A7NJ00 7.76789925156e-07 1.21540426983e-06 177073993.348 +UniRef50_A4EH59 4.61785872597e-06 5.12015368673e-06 202782639.511 +UniRef50_I1EUA2 1.49779302758e-07 3.04821339869e-08 -48161730.9737 +UniRef50_B5YZZ5 Ethanolamine utilization cobalamin adenosyltransferase 3.22178653362e-06 2.44063392719e-06 -315360893.036 +UniRef50_UPI000373E5C0 hypothetical protein 3.41967650421e-08 4.21488006869e-08 3210334.37226 +UniRef50_P0ADK2 1.11854703114e-05 8.48379043652e-06 -1090701318.83 +UniRef50_G0DTN7 1.58607558343e-06 4.84630578995e-05 18924813006.3 +UniRef50_H6VX72 1.13245796655e-05 2.18255043805e-05 4239352168.28 +UniRef50_F5Y9N5 CoxE family protein 5.2451288528e-06 1.21952776517e-05 2805860358.03 +UniRef50_Q28K41 Amino acid amide ABC transporter substrate binding protein, HAAT family 6.36023133631e-05 7.62844857664e-06 -22597336090.9 +UniRef50_Q0C0L1 ATP dependent protease ATPase subunit HslU 7.99186931531e-05 1.42960710333e-05 -26492657829.9 +UniRef50_Q9RZB3 dTDP glucose 4,6 dehydratase 1.06134767253e-06 0.000641356942014 2.58495188746e+11 +UniRef50_Q8E418 DNA translocase FtsK 5.11595474315e-05 4.05708926061e-05 -4274769890.42 +UniRef50_B0VB35 Aldehyde dehydrogenase, phenylacetic acid degradation 1.26233983302e-06 6.35835113196e-05 25159821695.9 +UniRef50_UPI0004799256 hypothetical protein 9.38623079481e-08 1.67740282149e-07 29825444.7696 +UniRef50_O66490 Adenylate kinase 9.94787082059e-08 5.64104386291e-07 187575087.841 +UniRef50_UPI00046ED1E9 ABC transporter permease 1.77766167725e-07 2.052359528e-06 756796343.392 +UniRef50_O32978 O acetylserine sulfhydrylase 5.09942216265e-06 1.54193267087e-05 4166272104.69 +UniRef50_UPI0004091FE8 helicase 6.17598646915e-09 1.23310297591e-07 47288558.7996 +UniRef50_A4SFY3 Serine hydroxymethyltransferase 1.25927143782e-06 1.76834838788e-06 205520611.816 +UniRef50_D7BLM0 Extracellular solute binding protein family 5 3.0202361837e-06 0.000101818178918 39885941868.9 +UniRef50_S1SCM4 LigA 1.97274840002e-06 8.4575975439e-06 2618013177.43 +UniRef50_P42914 Probable fimbrial chaperone YraI 3.01925230417e-05 5.17721307994e-06 -10098987604.0 +UniRef50_P44992 9.59939369103e-06 9.24123353799e-06 -144593648.902 +UniRef50_C6BH49 Coproporphyrinogen III oxidase 1.79186387112e-06 3.67707002983e-05 14121385504.3 +UniRef50_UPI0003B759B0 urease subunit alpha 7.53532873147e-08 2.93930562942e-07 88242328.4154 +UniRef50_A3PL00 TspO and MBR like proteins 0.00013832853738 8.23006501382e-05 -22619145619.0 +UniRef50_B7LKC2 Cytoskeleton protein RodZ 2.9254646315e-05 2.70144923128e-05 -904377660.469 +UniRef50_Q3J225 Bacteriophage head tail adaptor 2.79930612105e-05 1.70375022228e-05 -4422893603.16 +UniRef50_J7PFG8 9.06782017489e-07 7.08295725507e-06 2493397733.6 +UniRef50_T0TD56 Carbonic anhydrase 5.42660840758e-05 4.83065376332e-06 -19957689858.1 +UniRef50_Q59087 Catabolic 3 dehydroquinate dehydratase 2.94910928794e-06 6.19208702156e-05 23807623551.4 +UniRef50_D7WB79 Succinate dehydrogenase flavoprotein subunit 2.43215437692e-06 5.69247306942e-05 21999321758.4 +UniRef50_Q3IZA2 Trehalose 6 phosphate phosphatase 6.00768982605e-06 2.70519119271e-06 -1333259224.49 +UniRef50_I3BX28 3.90161153479e-07 7.10788845762e-07 129441333.919 +UniRef50_G7M5J0 SEC C motif domain protein 1.01748244975e-06 9.62600041849e-06 3475364342.38 +UniRef50_UPI0002003503 ABC transporter, ATP binding protein, partial 1.68027076777e-07 3.41597938571e-07 70072686.8602 +UniRef50_A6LYT6 Baseplate J family protein 6.50381606123e-06 1.33483873173e-05 2763237408.41 +UniRef50_T1YD73 Gluconate operon transcriptional repressor 0.000121377771378 8.67676883901e-05 -13972515215.7 +UniRef50_B8CZ12 ATP synthase subunit alpha 4.59639012406e-08 2.23952231133e-07 71856072.9398 +UniRef50_M1N6Y0 6.13024942053e-06 1.53220657516e-05 3710849049.12 +UniRef50_Q9I4L1 Probable deoxyguanosinetriphosphate triphosphohydrolase 7.75851158395e-06 2.70893432557e-06 -2038576304.49 +UniRef50_UPI00036419A0 hypothetical protein 6.20276273565e-08 9.530619177e-08 13434964.8276 +UniRef50_Q04J73 Holo [acyl carrier protein] synthase 4.45916815382e-07 2.51176677793e-05 9960288620.56 +UniRef50_S5RIC3 4.90241543964e-06 7.60472202226e-06 1090954328.43 +UniRef50_UPI000364B6F1 hypothetical protein 5.80894541569e-08 2.51114759401e-06 990329673.466 +UniRef50_B0CE03 Acyl carrier protein 1.7154385674e-05 2.76833520407e-05 4250672927.18 +UniRef50_I3TL38 UDP 2,3 diacylglucosamine hydrolase 1.65322330884e-06 4.73770115279e-06 1245241556.4 +UniRef50_Q9RWB2 Citrate synthase 8.2782650063e-08 0.000385771009313 1.55707070031e+11 +UniRef50_D4LGP4 Tryptophanyl tRNA synthetase 6.18812028312e-06 4.16823570762e-05 14329458956.6 +UniRef50_A6LY82 Alpha beta superfamily like hydrolase 1.3730328516e-05 1.45778439525e-05 342152381.899 +UniRef50_V5XSJ4 Lipoprotein 2.36818614762e-07 4.3447100638e-07 79794695.9638 +UniRef50_P20356 Regulatory protein RepA 2.49990721098e-06 0.00016155365836 64211951147.9 +UniRef50_UPI0003B686D0 PREDICTED 2.54906601227e-07 4.96192012366e-07 97409881.3818 +UniRef50_A0A033G8H1 3.24643977845e-07 5.21538458851e-07 79488718.1491 +UniRef50_H1XZH3 Aldo keto reductase 1.28867913382e-05 0.000102641093346 36234913129.7 +UniRef50_L8NEI8 Lipopolysaccharide kinase family 1.08529104183e-05 3.22750497486e-06 -3078469751.76 +UniRef50_G8V9R1 Permease 5.74851759676e-06 4.1469115867e-05 14420843862.7 +UniRef50_W1YFP0 Nitrate reductase, beta subunit 5.79082618336e-07 1.70082095485e-07 -165118530.076 +UniRef50_UPI000312D337 hypothetical protein 2.48120615481e-07 5.37398358811e-07 116784974.819 +UniRef50_E8U983 GAF domain protein 1.77074143499e-07 1.2936265149e-05 5151041981.8 +UniRef50_I6TS63 ABC transporter permease 5.32495166308e-05 1.71476255206e-05 -14574776461.2 +UniRef50_K4KH04 Protein yffB 7.2248439142e-07 4.55911756842e-07 -107618643.793 +UniRef50_G7M8Y3 Flagellar biosynthetic protein FlhF 8.60530369777e-07 4.09394080697e-06 1305367471.9 +UniRef50_P52311 Modification methylase XorII 0.000146474993026 1.70584286275e-05 -52247055167.3 +UniRef50_F0XXV7 4.13160251245e-06 6.0959984102e-06 793050729.77 +UniRef50_E5QY81 2.05589412918e-05 1.62694473932e-07 -8234215130.48 +UniRef50_UPI00047BEFD4 HAD family hydrolase 1.5244037559e-07 4.04382963381e-07 101712314.374 +UniRef50_G8PNB5 Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase 8.697833844e-07 4.65159563536e-06 1526764013.77 +UniRef50_A0R079 Glutamine synthetase 1 6.18672950365e-05 0.000238869541307 71457978881.4 +UniRef50_E2NST4 1.49861358975e-06 1.00896906212e-05 3468323221.97 +UniRef50_V5DMC9 Selenocysteine specific translation elongation factor 4.13498163856e-05 3.28129672448e-06 -15368728540.5 +UniRef50_W8UPZ5 Oxygenase subunit of ring hydroxylating dioxygenase 4.46643936995e-06 8.5848265494e-05 32854841873.6 +UniRef50_Q3J1A8 1 deoxy D xylulose 5 phosphate synthase 1 5.04664504189e-05 1.19862230715e-05 -15534939985.6 +UniRef50_C1DPC3 Cyclic pyranopterin monophosphate synthase accessory protein 2.42227587904e-07 3.86187660998e-07 58118448.0968 +UniRef50_P0AEJ3 Isochorismate synthase EntC 3.37275905119e-05 9.39285038917e-06 -9824233208.38 +UniRef50_B7G0W9 Predicted protein 1.01605224956e-06 3.24695860583e-07 -279109058.127 +UniRef50_G9YRQ6 1.45412439407e-07 2.9235060717e-07 59320741.46 +UniRef50_Q5HKS8 Cell wall surface anchor family protein 8.45933571301e-05 3.88288149502e-05 -18475707272.1 +UniRef50_J7MBF6 3.20466675773e-06 2.56679647439e-06 -257516060.933 +UniRef50_P18156 Glycerol uptake facilitator protein 0.000125053930879 4.98983932975e-05 -30341212783.8 +UniRef50_A5EPJ2 DNA ligase 2.2825243182e-08 3.47441570205e-08 4811811.77812 +UniRef50_T2QWI5 4.29567620508e-08 3.02467766786e-07 104767777.17 +UniRef50_Q2FZ98 UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141 0.000205090440704 5.14926989288e-05 -62009293210.8 +UniRef50_Q2IM08 2.78216273688e-07 2.09805728043e-07 -27618176.7687 +UniRef50_UPI00036488F7 hypothetical protein 6.92167640613e-08 2.09258195278e-07 56536444.2839 +UniRef50_Q99Y73 Endonuclease MutS2 7.06263776976e-05 6.23248559896e-05 -3351426184.65 +UniRef50_A5UP17 O linked GlcNAc transferase 3.3237759242e-05 2.05795613371e-06 -12587669134.0 +UniRef50_UPI00047C28A2 3,4 dihydroxy 2 butanone 4 phosphate synthase 5.59605003346e-08 1.03052724277e-06 393444553.2 +UniRef50_UPI00042B2DF2 Mitochondrial ribosomal L11 like protein 1.71016689707e-07 8.13424551744e-07 259347937.135 +UniRef50_UPI00037FB3DE hypothetical protein 6.63790731981e-08 4.00451823048e-08 -10631314.9068 +UniRef50_E9T6B7 Periplasmic binding protein 2.40085008347e-08 1.44946054887e-07 48823974.6415 +UniRef50_S5CVC3 Permeases of the major facilitator superfamily 9.73706705447e-06 6.88556650192e-05 23866903465.1 +UniRef50_UPI0003778082 hypothetical protein 3.63013420273e-08 6.15724720193e-08 10202265.2894 +UniRef50_Q3HKI7 TraG 0.00037812308622 0.000105863415612 -1.09914570026e+11 +UniRef50_P0AF68 tRNA threonylcarbamoyladenosine biosynthesis protein TsaE 1.77211458413e-05 1.15810472625e-05 -2478833143.74 +UniRef50_UPI0002657B93 PREDICTED 1.13205118991e-07 1.00591106229e-07 -5092431.74336 +UniRef50_Q1CS39 Uroporphyrinogen III cosynthase 7.35241296867e-06 2.58144079485e-05 7453333927.5 +UniRef50_P28722 7.10199154162e-06 3.75208555703e-05 12280468689.8 +UniRef50_Q6GIH0 UPF0051 protein SAR0880 0.000382831699031 0.000832777096523 1.81648478418e+11 +UniRef50_UPI0003657D51 hypothetical protein 3.78243745544e-08 5.86980088185e-08 8426942.30071 +UniRef50_D3E3M2 2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase 3.05550564105e-05 1.36802267205e-05 -6812575823.3 +UniRef50_Q88MV0 Tyrosine recombinase XerD 6.92567283908e-06 5.47392385327e-05 19302923208.9 +UniRef50_A6LWP7 2.24249102288e-06 3.43391517665e-06 480992551.295 +UniRef50_R7IGE7 Cyclodextrin ABC transporter permease protein 1.35623708568e-06 1.66343344137e-05 6167955374.65 +UniRef50_U5MS83 6.91844497729e-06 8.98955221447e-06 836131406.993 +UniRef50_R4X107 Anti sigma factor antagonist 2.95772072742e-07 6.37752975321e-05 25627463409.3 +UniRef50_S6AEE6 Sulfate ABC transporter substrate binding protein CysP 5.91948497369e-06 1.76220616743e-05 4724473820.8 +UniRef50_UPI000473E8E4 hypothetical protein, partial 9.33657234311e-08 1.34248000638e-07 16504676.9904 +UniRef50_X1SHF8 Marine sediment metagenome DNA, contig 1.95327356487e-07 9.25159393856e-07 294642149.532 +UniRef50_F8G4J9 Major facilitator transporter 5.47425438424e-06 1.9492851828e-06 -1423073322.86 +UniRef50_UPI000469A483 hypothetical protein 1.51890095805e-08 8.7464839371e-08 29178639.4106 +UniRef50_UPI00033433D0 PREDICTED 4.05926809863e-07 4.3033913243e-07 9855554.19318 +UniRef50_G7U7D4 Sugar binding periplasmic protein 2.43082038334e-06 4.97042504008e-05 19084863808.3 +UniRef50_A4WZR2 2.74646083169e-06 1.08427347369e-06 -671045433.757 +UniRef50_F8HEX8 NADPH dependent fmn reductase 4.41043002963e-05 4.43407671267e-05 95464561.2068 +UniRef50_R0EB23 8.6836115524e-08 5.18817703389e-07 174396268.031 +UniRef50_O66821 Hypoxanthine guanine phosphoribosyltransferase 3.30983163738e-07 2.64649898864e-07 -26779553.0303 +UniRef50_V5UIB0 CoA transferase 9.26301094676e-06 8.24547351209e-06 -410792348.965 +UniRef50_UPI0004713504 hypothetical protein 2.37581834582e-08 3.16257156852e-07 118085424.925 +UniRef50_UPI0004627EF4 hypothetical protein 3.18574123072e-08 6.6924765642e-08 14157120.8661 +UniRef50_UPI0003291A81 PREDICTED 1.40923910209e-06 1.27514630105e-06 -54134909.2836 +UniRef50_B9DT59 Sensor histidine kinase 4.6540926974e-05 2.02108316608e-05 -10629782584.5 +UniRef50_Q3J2Y0 ABC oligo dipeptide transporter, fused ATPase subunits 1.21586395184e-06 3.22003593166e-06 809108822.209 +UniRef50_UPI0001746395 Gluconate transporter 2.06752779835e-07 2.91398513791e-07 34172521.518 +UniRef50_UPI0003730BCE hypothetical protein 1.3859305725e-07 1.15377818312e-07 -9372276.84229 +UniRef50_Q131M0 Peptidyl tRNA hydrolase 7.09153483425e-07 3.36154058082e-07 -150584445.229 +UniRef50_P10725 Alanine racemase 1 7.70874581362e-08 1.87601451452e-05 7542579655.18 +UniRef50_J9P8Y9 2.71129857262e-07 2.62081901225e-07 -3652770.88304 +UniRef50_A9BXI8 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 1.57348506985e-05 5.25835247257e-06 -4229490894.89 +UniRef50_A0A010IRI1 Copper resistance , CopA family protein 6.34785855703e-07 1.50847159516e-05 5833614100.3 +UniRef50_F6FVA2 NADH quinone oxidoreductase, F subunit 8.63153937979e-07 0.000358285430734 1.44295759207e+11 +UniRef50_Q2SBV0 Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation 9.68740775547e-07 6.13247427171e-06 2084662578.54 +UniRef50_Q4L8V4 Sensory transduction protein LytR 7.6652359971e-05 3.81291693776e-05 -15552284775.3 +UniRef50_UPI00037BA9AE hypothetical protein 2.9552656197e-07 1.16965239277e-07 -72087397.165 +UniRef50_Q87HJ2 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 4.40081771352e-08 6.82662716615e-08 9793290.44056 +UniRef50_B9KKK1 Transcriptional regulator, DeoR family 0.000100023148431 5.16534795837e-05 -19527428876.2 +UniRef50_UPI0002628822 inosine uridine preferring nucleoside hydrolase 4.51647171601e-08 9.42215297768e-08 19804837.2481 +UniRef50_UPI00047EB05D hypothetical protein 8.3523522637e-08 2.18774661579e-07 54602544.509 +UniRef50_Q4JMN7 Predicted flagellar hook capping protein 7.98460703656e-08 1.09763008102e-07 12077834.8863 +UniRef50_UPI000475B51F hypothetical protein 1.91374008792e-06 1.49954655469e-05 5281253098.62 +UniRef50_UPI00028835CE glutamate dehydrogenase 2.91370767041e-07 2.62062440621e-08 -107050171.861 +UniRef50_UPI00047A79FF LysR family transcriptional regulator 3.37756427904e-07 5.9431210237e-07 103574674.074 +UniRef50_Q3A248 Phosphopentomutase 1.49042528663e-07 1.75922515904e-07 10851780.7037 +UniRef50_S2R0I0 Capsular polysaccharide synthesis protein 8.41593076416e-08 1.2508220615e-07 16521076.3083 +UniRef50_P06149 D lactate dehydrogenase 1.45169944198e-05 0.000116939203239 41349102562.1 +UniRef50_UPI00037C3443 hypothetical protein 2.01509662751e-07 3.76295302541e-07 70563107.6442 +UniRef50_D2TN56 Translocation and assembly module TamA 2.48494516097e-05 9.72029695316e-06 -6107825390.43 +UniRef50_R5IZV2 Rod shape determining protein MreB 6.81000017594e-06 2.91018265994e-05 8999483878.64 +UniRef50_P96662 2.24249102288e-06 4.31829731805e-06 838028474.368 +UniRef50_P71311 4.99343963263e-05 7.05936347077e-06 -17309176899.6 +UniRef50_Q18BQ3 UPF0271 protein CD630_13840 1.04337951329e-05 2.70106742557e-06 -3121797066.69 +UniRef50_UPI00047614B3 glutamate dehydrogenase 8.85420021886e-08 4.01351760438e-06 1584560815.47 +UniRef50_Q3IVA8 1.2561916514e-05 4.04543431768e-06 -3438208371.64 +UniRef50_R4Q3U4 5.07079684378e-05 1.20537430691e-05 -15605185122.0 +UniRef50_P56793 50S ribosomal protein L16, chloroplastic 2.60335164724e-06 2.63412892114e-05 9583296691.92 +UniRef50_Q8SQT7 Elongation factor 2 1.48196021316e-08 1.83406852024e-08 1421504.44423 +UniRef50_Q3IVA2 4.02760804569e-05 1.09672781525e-05 -11832323149.7 +UniRef50_G7WCF3 5.72526777832e-07 1.1012361577e-05 4214689419.62 +UniRef50_Q9HW91 Methyl accepting chemotaxis protein PctB 1.28484215468e-05 5.68132442427e-06 -2893445058.54 +UniRef50_N0CH82 Periplasmic binding protein 3.74979745749e-08 8.21694446542e-08 18034420.6516 +UniRef50_Q6GCY8 Purine nucleoside phosphorylase DeoD type 0.000147502511198 7.92402011862e-05 -27558332224.5 +UniRef50_M4R901 1.29128616484e-06 3.09372930715e-05 11968456785.6 +UniRef50_Q03727 Transport processing ATP binding protein ComA 0.000193933915309 0.000104226043337 -36216168754.5 +UniRef50_P19926 Glucose 1 phosphatase 3.16095952383e-05 1.23806024309e-05 -7762980362.62 +UniRef50_V5VFB4 Transcriptional regulator 1.28688405295e-06 5.3388440446e-05 21034037673.8 +UniRef50_Q3IWX7 Putative phage tail tube protein FII 0.000388398445081 5.93171217248e-05 -1.32854168521e+11 +UniRef50_UPI000309F49D hypothetical protein 1.08743757233e-07 1.02066381502e-07 -2695738.52322 +UniRef50_UPI0002B9193E hypothetical protein 3.82107221024e-08 3.69339488053e-05 14895262225.8 +UniRef50_UPI0004739302 urea ABC transporter ATP binding protein, partial 3.26150705729e-06 2.11296038916e-06 -463682384.177 +UniRef50_M5U8U8 UPF0246 protein RSSM_04267 8.6930495024e-08 8.38172890116e-08 -1256839.47054 +UniRef50_W0ACK7 3.47572723268e-07 6.47003350976e-07 120883818.833 +UniRef50_Q5HL17 Pyruvate phosphate dikinase 0.000103404362982 4.72827464497e-05 -22656985283.8 +UniRef50_P0C348 Peptide chain release factor 2 8.59378625711e-06 2.02734580221e-06 -2650952590.93 +UniRef50_UPI00036F8282 hypothetical protein 5.27083749727e-07 8.60476422921e-07 134594713.357 +UniRef50_Q8XW28 Urocanate hydratase 3.71421864845e-07 1.39629577818e-06 413754175.429 +UniRef50_Q4L811 Type II pantothenate kinase 0.000101039800657 2.94481699924e-05 -28902419827.4 +UniRef50_Q8G4X3 Glutamyl Q tRNA synthetase 4.29572152604e-08 5.27560670209e-08 3955916.70115 +UniRef50_UPI0001850812 shikimate 5 dehydrogenase 4.69357380054e-07 4.69444404941e-07 35133.0147974 +UniRef50_Q51391 Glycerol 3 phosphate regulon repressor 7.7097421028e-06 4.25937555561e-06 -1392955315.86 +UniRef50_F0YC37 1.83633372986e-06 1.96404531762e-06 51558735.1761 +UniRef50_A3TSY0 Hemolysin type calcium binding protein 1.44255462819e-08 2.22952713197e-08 3177104.57015 +UniRef50_T0SW85 Transcription repair coupling factor 6.20322160439e-05 3.31695598001e-05 -11652208510.2 +UniRef50_UPI00036A708B hypothetical protein 1.14746387603e-07 6.11765316988e-08 -21626808.2046 +UniRef50_Q8CS12 7.70624124112e-05 4.6984691421e-05 -12142745058.9 +UniRef50_UPI0003EB5DA3 50S ribosomal protein L36 9.59421150765e-07 8.60145743281e-06 3085183825.39 +UniRef50_R4WT31 Ribonucleoside diphosphate reductase 9.56358134288e-07 7.9963623657e-05 31896202619.7 +UniRef50_UPI00016AD465 hypothetical protein 2.80806776835e-07 2.37999962373e-06 847469912.287 +UniRef50_UPI000262572E acetoin dehydrogenase E2 subunit dihydrolipoyllysine residue acetyltransferase 4.30090147939e-08 1.09067259605e-07 26668524.0561 +UniRef50_UPI000367C756 hypothetical protein 1.46291438332e-06 3.91575811449e-06 990243114.051 +UniRef50_B5XYB9 Hydroxylamine reductase 2.36008466842e-05 8.77741260164e-06 -5984402243.14 +UniRef50_A5UNH1 Lipopolysaccharide cholinephosphotransferase 3.48214839823e-05 5.26121124967e-06 -11933844847.5 +UniRef50_UPI000408C071 hypothetical protein 1.94642124517e-07 3.4385740373e-07 60240039.2957 +UniRef50_UPI0001BF66E3 hypothetical protein SMAC_10240 1.42623931941e-06 5.37925129529e-06 1595879443.57 +UniRef50_Q55480 2.74486089077e-07 7.70182588018e-07 200118759.503 +UniRef50_L7WZA3 0.000175953067907 1.0197621946e-05 -66917507582.5 +UniRef50_P16263 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.0338216081e-07 1.46751354286e-06 550716578.708 +UniRef50_B9KS54 5.86237270687e-05 1.36259929603e-05 -18166137443.9 +UniRef50_B9KS55 9.59710141129e-07 1.50161036537e-06 218771770.39 +UniRef50_Q041L5 ABC type cobalt transport system, permease component CbiQ related transporter 0.000183782597345 0.000121791887134 -25026410423.7 +UniRef50_UPI0003768F93 hypothetical protein 2.35481000484e-08 3.26200521049e-08 3662458.37058 +UniRef50_I3UM51 6.44764907314e-06 2.92830894442e-06 -1420800797.12 +UniRef50_F6D1X2 Dihydroorotase 1.57733689139e-05 6.02662883296e-06 -3934878576.63 +UniRef50_F9YWS1 2.25094201639e-06 3.4173265364e-05 12887433666.4 +UniRef50_A6LRH2 Histidine kinase internal region 4.74382357875e-06 6.50807799911e-06 712251159.336 +UniRef50_UPI000382BC4C hypothetical protein 1.82551647073e-05 5.68346028769e-06 -5075351346.35 +UniRef50_W0YNP0 AMP binding protein 2.88314307811e-06 1.11510398435e-06 -713779078.43 +UniRef50_A4XNT2 1.17565402438e-05 8.75416956622e-06 -1212093885.77 +UniRef50_A8LLT3 Phosphate acyltransferase 7.02147520337e-05 1.40734449033e-05 -22664934619.9 +UniRef50_UPI0004675B23 queuine tRNA ribosyltransferase 4.39710445179e-08 6.33537500147e-07 238015212.931 +UniRef50_F3YPM3 Prephenate dehydratase 3.29528259278e-05 6.58125512197e-05 13265874334.5 +UniRef50_Q9X5M1 Diaminopimelate decarboxylase 1.12090516671e-06 3.30277620106e-05 12881189649.0 +UniRef50_H8FVT2 CRISPR associated helicase Cas3 1.72652722503e-06 2.01437157537e-07 -615697575.205 +UniRef50_UPI00035C4745 hypothetical protein 5.05968255118e-08 4.55761272721e-07 163569859.265 +UniRef50_Q2NI23 DNA primase small subunit PriS 2.9373144459e-05 7.28989697082e-06 -8915278002.91 +UniRef50_UPI000310953A quinone oxidoreductase 5.4375340031e-08 5.95408010082e-07 218421528.117 +UniRef50_R0QWV3 7.24736421567e-07 7.18815179355e-06 2609360100.69 +UniRef50_Q5HLY5 5.17833153236e-05 3.46075285877e-05 -6934075875.89 +UniRef50_UPI00037F4158 hypothetical protein 9.91524753771e-08 3.16205065818e-07 87626794.2958 +UniRef50_UPI0003725D3A hypothetical protein 3.12817244687e-08 4.16706338478e-07 155600646.367 +UniRef50_Q8EWD1 Serine hydroxymethyltransferase 6.19148684601e-07 1.0554432247e-06 176137459.774 +UniRef50_A5IQ08 2.01046198469e-05 4.24916122588e-06 -6401043213.65 +UniRef50_B2TJK8 Spore coat protein, CotS family 2.25151650042e-06 2.02254361545e-05 7256291929.16 +UniRef50_UPI000367BD21 hypothetical protein, partial 4.12055616661e-08 3.56846262027e-08 -2228869.39607 +UniRef50_UPI000255A109 FrpC, partial 3.08036837243e-08 2.59877457288e-08 -1944253.26699 +UniRef50_UPI000372D109 hypothetical protein 1.22020072374e-07 2.10262272843e-07 35624459.1829 +UniRef50_U7FV20 6.39548651838e-07 1.60285012635e-07 -193484612.372 +UniRef50_X5K4I4 ABC transporter, ATP binding permease protein 4.65586292638e-05 1.24285992577e-05 -13778711936.0 +UniRef50_D5STS9 0.000132522273193 2.15545832029e-05 -44799018175.6 +UniRef50_Q5XAE6 Biotin carboxyl carrier protein of acetyl CoA carboxylase 4.3836658129e-05 3.79421891038e-06 -16165624088.5 +UniRef50_J2YH36 4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein 1.72368031437e-06 1.40500936133e-05 4976324310.87 +UniRef50_UPI00036BF70E hypothetical protein 7.70368651236e-08 1.15534270734e-05 4633159558.24 +UniRef50_C5BLW1 Type IV pilus biogenesis stability protein PilW 8.63231413958e-08 2.04455636538e-07 47691537.9376 +UniRef50_A7FZ47 30S ribosomal protein S13 0.000154109451276 2.66251245188e-05 -51466987120.4 +UniRef50_W9WZ32 2.11218766553e-07 2.38252674965e-07 10913920.5693 +UniRef50_UPI00028929E9 iron ABC transporter permease 1.67519009136e-07 2.00352549588e-07 13255303.1933 +UniRef50_O66680 Leucine tRNA ligase subunit alpha 2.48571772918e-08 9.46962923702e-08 28194907.7795 +UniRef50_A0A021WYJ6 5.64858555577e-07 3.63438559073e-07 -81315724.29 +UniRef50_Q0ADJ4 Nucleotidyl transferase 1.29186278556e-05 4.60170035933e-05 13362220448.1 +UniRef50_UPI00037CB764 hypothetical protein 1.01562500624e-07 1.8431241672e-07 33407156.5836 +UniRef50_UPI00018512AA 3 hydroxybutyryl CoA dehydrogenase 7.84977158673e-07 1.53801146882e-05 5892236123.14 +UniRef50_Q9RUS8 Spermidine putrescine ABC transporter, permease protein 1.8294959072e-06 0.000238697283824 95626432676.7 +UniRef50_UPI00032A2821 PREDICTED 2.42545884748e-05 4.27679407501e-06 -8065280754.3 +UniRef50_V6EZP6 1.75155715992e-07 1.68437649277e-07 -2712165.97279 +UniRef50_R4XX04 Phage related protein 7.43082655217e-07 5.65355020273e-05 22524084350.5 +UniRef50_UPI0004758F1B hypothetical protein 6.59494023382e-07 1.27971992744e-07 -214581966.277 +UniRef50_P26395 Protein RfbI 1.11922254866e-07 1.6310161089e-07 20661734.0682 +UniRef50_A4VMA8 Trk system potassium uptake protein 1.88204989891e-05 9.38080986251e-06 -3810918338.42 +UniRef50_Q28TW0 Molybdenum cofactor sulfurylase 9.57124006777e-08 1.06440384377e-07 4331018.66657 +UniRef50_UPI000287C21F phosphoenolpyruvate protein phosphotransferase 3.91619910976e-08 3.22519280133e-06 1286239735.08 +UniRef50_Q8A0B5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 5.76859855432e-08 5.16171581395e-05 20815191614.4 +UniRef50_Q2J545 Cysteine tRNA ligase 3.13529146269e-08 1.00214658228e-07 27800330.9204 +UniRef50_Q8CMP3 Transporter 9.23917330682e-05 3.13485147203e-05 -24643896331.6 +UniRef50_A4G266 Phosphate starvation inducible protein 2.78991505659e-06 1.69310147226e-05 5708935465.97 +UniRef50_A7X442 NH dependent NAD(+) synthetase 0.000249703906252 0.000107362000497 -57465174084.9 +UniRef50_UPI000471E89E pseudoazurin 2.69817270939e-06 1.54455829908e-06 -465728293.883 +UniRef50_F0RN28 Carboxyl terminal protease 2.22649047128e-06 0.000471826445006 1.89583264285e+11 +UniRef50_A6L7M5 Tryptophan synthase beta chain 2.86118987558e-08 1.0859989366e-05 4372759999.46 +UniRef50_A4WU00 O antigen polymerase 5.94215826773e-05 2.39549665815e-05 -14318308142.2 +UniRef50_E0MTZ8 Replication protein C 2.46580535838e-07 5.60785617514e-08 -76907984.661 +UniRef50_Q72KJ4 Pili assembly protein pilC 2.32914420024e-06 0.000442081867655 1.77533570832e+11 +UniRef50_X5DQJ7 ABC type glycine betaine L proline transporter, substrate binding lipoprotein 1.81483648491e-06 4.59624578059e-05 17822936479.5 +UniRef50_P0CZ58 Fructose bisphosphate aldolase 0.000114601414292 4.64358806397e-05 -27519262420.6 +UniRef50_M4ZP55 7 carboxy 7 deazaguanine synthase 1.55344028336e-06 2.15656158993e-05 8079160873.15 +UniRef50_R5IQ58 Collagenase and related proteases 5.80853182019e-06 1.17439606395e-05 2396205450.26 +UniRef50_V5X0C1 Nitrate reductase 0.000120705325822 4.00976230393e-05 -32542318781.1 +UniRef50_UPI00046807CF tRNA delta isopentenylpyrophosphate transferase 2.12031682705e-07 1.1385556075e-07 -39634905.1897 +UniRef50_W6RZJ6 Amidase 3.64134394391e-06 6.68144940642e-06 1227327881.5 +UniRef50_C7R130 D lactate dehydrogenase 3.96102821484e-07 3.50871892545e-05 14005217300.5 +UniRef50_D8JJL0 OmpW family protein 2.00790419604e-06 4.82100762317e-05 18652383815.2 +UniRef50_UPI0003716EE9 amino acid ABC transporter 6.11544587779e-08 1.57542638822e-05 6335500850.33 +UniRef50_I3THN7 Binding protein dependent transport systems inner membrane component 5.89932216329e-05 3.47370654768e-05 -9792507896.73 +UniRef50_UPI000441338E hypothetical protein AURDEDRAFT_112432 3.82578597592e-08 1.83276821125e-08 -8046057.28676 +UniRef50_G7M1N3 7.2439395647e-06 7.16471502476e-06 -31983918.9682 +UniRef50_UPI00046ADCCD hypothetical protein 2.80397079295e-06 6.82258494432e-07 -856561291.25 +UniRef50_Q9CIV7 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 2.25561750896e-05 1.08558558255e-05 -4723562465.98 +UniRef50_W7D2I2 6.23198570249e-07 1.552207238e-06 375052199.389 +UniRef50_UPI00047862A8 molecular chaperone DnaJ 4.59511379862e-08 1.26932244701e-07 32693066.5307 +UniRef50_D4ZAF4 Iron ABC transporter, permease protein 1.63088669817e-05 7.77544647996e-06 -3445046573.4 +UniRef50_B0R332 Tryptophan synthase beta chain 3.70425743152e-07 1.84429427873e-07 -75088994.9096 +UniRef50_M9RQH1 GTPase HflX 3.25100596897e-05 5.50866565026e-06 -10900794118.1 +UniRef50_Q9ZBH5 Diaminopimelate decarboxylase 2.88743181558e-05 5.19032246359e-05 9297052142.48 +UniRef50_A1HSV6 3.60400990814e-07 9.73536189965e-07 247530203.912 +UniRef50_Q5F6T9 4.80136652557e-07 5.36945932242e-06 1973879560.56 +UniRef50_UPI00047BB8D4 lysyl tRNA synthetase 3.47551737236e-08 1.26051048771e-07 36857265.083 +UniRef50_Q9K0S5 1.98328890814e-06 1.46335225451e-05 5107054555.08 +UniRef50_A5VFM2 tRNA specific 2 thiouridylase MnmA 3.16692690828e-05 1.10555685172e-05 -8322003876.88 +UniRef50_UPI00045D6A2D PREDICTED 1.00241794407e-06 7.46819813078e-08 -374538392.768 +UniRef50_C4XPA8 2 isopropylmalate synthase 7.96967558959e-08 8.42148555821e-08 1824012.28664 +UniRef50_UPI0003316925 PREDICTED 7.65691660987e-07 5.99019686016e-07 -67287521.5909 +UniRef50_I4DZ12 Response regulator homolog 5.13658891457e-05 1.90985672017e-05 -13026713833.4 +UniRef50_C0ENU4 1.39646004992e-06 5.4765808357e-07 -342671769.787 +UniRef50_Q167Z8 ExbD TolR family biopolymer transport protein, putative 0.000295957277679 7.58875099014e-06 -1.16417912904e+11 +UniRef50_UPI0002488642 deoxyguanosinetriphosphate triphosphohydrolase 5.5381885817e-07 3.90276877867e-07 -66023904.3341 +UniRef50_R9SLZ8 4.57359287735e-05 2.99307471484e-06 -17255814697.3 +UniRef50_UPI0002000344 hypothetical protein 3.13700267745e-06 9.52263440841e-06 2577957890.3 +UniRef50_D9USA0 YjeF family protein 1.13887077819e-07 7.26357641651e-07 247261882.478 +UniRef50_B6IS55 Oxidoreductase, short chain dehydrogenase 2.6397621598e-06 6.46564723045e-06 1544556751.91 +UniRef50_P45104 Ribosomal large subunit pseudouridine synthase B 2.42504510072e-05 2.56826798284e-05 578208350.542 +UniRef50_A5UP79 Integrase recombinase protein 2.12371951123e-05 2.67658645188e-06 -7493145480.48 +UniRef50_UPI000467ACA1 hypothetical protein 2.17928376163e-07 2.53818858009e-07 14489427.947 +UniRef50_P0A9S6 Glycerol dehydrogenase 4.05720776021e-05 1.55954928252e-05 -10083353771.6 +UniRef50_Q8X6C7 Xanthine dehydrogenase molybdenum binding subunit 2.21401709463e-05 4.09536987534e-06 -7284907626.97 +UniRef50_E4ZBB9 3.64134394391e-06 2.02507087052e-05 6705404373.96 +UniRef50_D2S3Z6 SSS sodium solute transporter superfamily 2.78327865847e-06 0.000351865339579 1.40928711712e+11 +UniRef50_Q4FS37 Ribosomal RNA small subunit methyltransferase G 1.006468976e-07 0.000118076778847 47628412197.8 +UniRef50_C1FUR3 HTH domain protein 6.20108639606e-06 1.20866584384e-05 2376077657.58 +UniRef50_C1CEF7 Mobile genetic element 2.00515107928e-07 7.39458745753e-07 217578160.172 +UniRef50_UPI00047EF6CC bis tetraphosphatase 2.36683132814e-07 3.31859667447e-06 1244206316.1 +UniRef50_I0EKX1 Antibiotic transport system permease protein 1.02950724233e-06 1.86667679025e-05 7120378562.05 +UniRef50_A8LJS3 1.91389439336e-07 6.31886418883e-08 -51756235.1305 +UniRef50_M1MUH2 Flagellar hook associated protein 2 8.59876967804e-07 6.42207565288e-06 2245527865.02 +UniRef50_A8LJS1 3.32096172905e-06 4.12804261207e-07 -1174058856.87 +UniRef50_X3EKE6 1.77567888227e-05 5.54814616145e-06 -4928778859.22 +UniRef50_Q01S06 8.93348343297e-05 4.3007287164e-06 -34329311921.9 +UniRef50_A3WQ21 1.42416686256e-06 1.40844720854e-05 5111120577.86 +UniRef50_K0EZI3 6.50429601061e-08 1.9013440353e-06 741337278.002 +UniRef50_P0CE57 Transposase InsH for insertion sequence element IS5R 0.000245133048012 0.000107978567289 -55370946942.6 +UniRef50_B3PCQ0 ACT domain protein phosphoserine phosphatase SerB 9.27484002093e-07 5.95274781151e-05 23657536726.2 +UniRef50_Q5HR97 Teichoic acids export ATP binding protein TagH 0.0001901823912 3.49176346949e-05 -62682287513.9 +UniRef50_P37386 Probable cadmium transporting ATPase 0.000101330420044 5.23637317601e-05 -19768452949.0 +UniRef50_Q71YA8 4 hydroxy tetrahydrodipicolinate reductase 7.20325615299e-05 3.00631777061e-05 -16943555271.9 +UniRef50_D2NR34 ATPase with chaperone activity, ATP binding subunit 1.34968337407e-06 5.05207978537e-05 19850982312.8 +UniRef50_P17618 Riboflavin biosynthesis protein RibD 6.79130371155e-08 2.07239793125e-06 809235149.556 +UniRef50_F6P2R4 5.77697229933e-05 1.28903920536e-05 -18118336631.7 +UniRef50_Q58N56 Gp12 7.85021435854e-07 1.7730402895e-07 -245342974.698 +UniRef50_P0AD15 Sensor histidine kinase YehU 3.40611863324e-05 9.95295032133e-06 -9732790719.0 +UniRef50_R7PSE2 2.37831582337e-05 1.08330787793e-05 -5228105991.09 +UniRef50_P37061 NADH oxidase 6.19214725088e-06 2.4204010713e-05 7271610310.07 +UniRef50_R9SMN4 2 phosphosulfolactate phosphatase ComB 2.24543151923e-05 2.57169844878e-06 -8026856366.5 +UniRef50_Q1JFV4 7.98364175219e-05 4.68133815433e-05 -13331804862.8 +UniRef50_UPI00030AE818 hypothetical protein 1.1287613882e-07 1.60554340407e-07 19248275.058 +UniRef50_UPI000255CD3D glutamate synthase small subunit 1.60430997632e-06 1.64568465119e-06 16703463.9694 +UniRef50_UPI0003B468FE ammonium transporter 5.17097716805e-08 3.61473288889e-08 -6282749.12762 +UniRef50_UPI000361E930 MULTISPECIES 4.79572855866e-07 6.39028720671e-07 64374289.3653 +UniRef50_A5UM85 Protein GrpE 4.67375248065e-05 5.80950895467e-06 -16523142242.6 +UniRef50_B5XYZ0 Guanosine 5 triphosphate,3 diphosphate pyrophosphatase 2.93061247432e-05 8.30125289309e-06 -8479924524.65 +UniRef50_D5HC80 3.19229496315e-07 1.62993966374e-06 529149778.814 +UniRef50_P17430 Acetate operon repressor 6.62662201789e-05 1.08969820902e-05 -22353240873.4 +UniRef50_Q6G329 Ribonuclease D 6.44720436075e-07 1.21496339182e-07 -211231988.597 +UniRef50_UPI00046E9EE1 hypothetical protein 1.25351294772e-06 1.16895983387e-06 -34135129.6446 +UniRef50_B8FTK7 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 3.58475205499e-07 2.94804683143e-07 -25704571.2003 +UniRef50_A8MI43 Alpha beta hydrolase fold 1.51227644607e-05 4.6864051606e-05 12814347130.0 +UniRef50_G7U7C7 Phospholipase, patatin family protein 9.5084631958e-07 6.43196539946e-05 25582765281.1 +UniRef50_UPI0002D7CF6D hypothetical protein 1.86585883207e-07 8.98615699033e-06 3552494838.82 +UniRef50_P16440 Riboflavin synthase 2.12394962311e-07 2.98030393316e-07 34572074.3616 +UniRef50_F0N020 ResB family protein 3.8837637448e-06 2.47266011012e-05 8414509211.16 +UniRef50_D8HET5 Sirohydrochlorin ferrochelatase 0.000268815338203 4.31352420361e-05 -91109824228.8 +UniRef50_B1TGN6 3.67314688714e-07 1.26949879946e-06 364222796.552 +UniRef50_Q0HNC2 L threonine ammonia lyase 1.84910981555e-06 2.08533524369e-05 7672245954.5 +UniRef50_G8B0F2 2.05915397608e-07 1.44732443384e-06 501172061.728 +UniRef50_Z5KKF6 Type IV conjugative transfer system protein TraV 1.1529095946e-07 1.93496745284e-07 31572635.4301 +UniRef50_P67088 Ribosomal RNA small subunit methyltransferase I 2.22294531815e-05 7.12096169186e-06 -6099483416.39 +UniRef50_Q8NTE1 Dihydrolipoyl dehydrogenase 2.14379871331e-07 6.01697923928e-05 24204735770.6 +UniRef50_F7ZAP7 Histidine kinase 4.04390064912e-05 6.81650874371e-06 -13573814935.1 +UniRef50_J3PDD9 5.04013003814e-07 4.0364107531e-07 -40521379.2391 +UniRef50_O68984 Polyphosphate kinase 2 2.88358420922e-08 2.28367914683e-06 910307912.162 +UniRef50_Q8R9G2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 5.18832276502e-06 1.181105503e-05 2673678285.44 +UniRef50_B1M2H9 4.52983186623e-06 1.58089666788e-06 -1190521327.08 +UniRef50_UPI0003809C52 flagellar biosynthesis protein FlhA, partial 6.12619799497e-06 7.26752009906e-06 460765739.018 +UniRef50_UPI00037BA0F7 hypothetical protein 1.5503080275e-07 3.68367859339e-06 1424558414.46 +UniRef50_B9K0E0 ABC transporter substrate binding protein 0.000133476190153 7.05411989776e-06 -51038141135.2 +UniRef50_Q5HRC8 1.5001213854e-06 3.37827110025e-07 -469232461.922 +UniRef50_UPI00047CE8A1 hypothetical protein 3.64163508232e-07 1.08285677602e-07 -103301020.199 +UniRef50_UPI0002899EA1 N acyl L amino acid amidohydrolase 1.5246785389e-07 1.73486136023e-06 638831676.661 +UniRef50_C0PI11 7.27528599851e-07 3.68219465193e-07 -145057506.88 +UniRef50_U3SWE7 1.28193433382e-05 4.6506567747e-06 -3297799006.74 +UniRef50_B9KWN5 ABC amino acid transporter, periplasmic ligand binding protein 0.00012590059842 3.62224690942e-05 -36204161283.2 +UniRef50_A5UKR1 Cobalt ABC transporter, permease component 4.56636276836e-06 8.40059399941e-05 32070732159.2 +UniRef50_V5SUT2 Multidrug ABC transporter substrate binding protein 2.98725858971e-05 3.71638766063e-06 -10559578200.7 +UniRef50_X6APU4 1.83446371854e-06 5.69875583353e-07 -510529748.418 +UniRef50_UPI0003B50A60 cell division protein FtsE 1.93723978332e-07 6.07970720172e-07 167236493.06 +UniRef50_J9NT05 1.83689616748e-07 2.45386451787e-06 916497465.761 +UniRef50_A4TJM2 Probable phosphatase YPDSF_1086 1.66652123486e-05 7.20284646817e-06 -3820073222.22 +UniRef50_E3D657 Glutathione regulated potassium efflux system protein 1.49038173604e-06 2.21787431051e-05 8352145359.45 +UniRef50_Q8FHG5 Glutamate decarboxylase beta 7.77200005519e-05 8.88163560668e-06 -27790892670.1 +UniRef50_Q28PK8 2.10170540357e-07 5.90229484766e-07 153434459.706 +UniRef50_V4PD29 8.10484830239e-07 2.77765332678e-07 -215065398.369 +UniRef50_Q8FDA1 Penicillin binding protein activator LpoA 2.40108409235e-05 3.57552165568e-06 -8249989157.98 +UniRef50_B6IZD5 Ribosomal RNA large subunit methyltransferase E 3.1537918464e-07 3.77344114741e-07 25016002.677 +UniRef50_Q8D2I8 Cardiolipin synthase A 1.59588753899e-05 2.87139976776e-06 -5283574510.03 +UniRef50_F4BS97 PTS system, lactose cellobiose family IIC subunit 3.45273803223e-06 4.01459208105e-05 14813488163.6 +UniRef50_UPI00046D0519 hypothetical protein 3.53834272033e-08 5.23634539746e-08 6855045.17593 +UniRef50_W6RXA4 NAD dependent epimerase dehydratase 0.000175910678696 6.09232716277e-05 -46421827287.5 +UniRef50_UPI0000123685 C. briggsae CBR GEI 7 protein, partial 1.44873627684e-07 7.91993092772e-07 261250069.105 +UniRef50_R5UKS9 2.61462852246e-06 2.47472099328e-06 -56482386.3884 +UniRef50_UPI00042A7A25 hypothetical protein 2.13529362556e-07 4.5600192973e-07 97889150.8411 +UniRef50_A3PHB4 0.000170356816418 4.40771201791e-06 -66995689870.8 +UniRef50_UPI000255D523 putative ATPase 1.32298833221e-05 3.87765277012e-06 -3775610238.61 +UniRef50_A3PHB0 1.92956750601e-05 1.5477767506e-05 -1541336130.58 +UniRef50_D0ZTB2 Magnesium transporting ATPase, P type 1 2.53046255189e-05 5.58114507719e-06 -7962611088.64 +UniRef50_A7WXS7 Antiholin like protein LrgB 0.000168967605048 5.0553501603e-06 -66173388727.8 +UniRef50_Q5JIZ8 4 phosphopantoate beta alanine ligase 2.23574282296e-05 1.2120315264e-05 -4132848127.72 +UniRef50_Q9YGB0 Tryptophan synthase beta chain 1 5.06730196507e-07 2.06286555221e-07 -121292784.845 +UniRef50_A4WTH7 1.0676022073e-06 3.30618628011e-06 903743860.709 +UniRef50_Q8X9A9 Succinate dehydrogenase hydrophobic membrane anchor subunit 1.0605819952e-05 6.15243135819e-06 -1797887624.54 +UniRef50_M9VIE6 1.76946557275e-06 8.35877819336e-05 33031058338.5 +UniRef50_L2YGD4 6.14634049415e-07 2.13483940957e-07 -161949221.45 +UniRef50_UPI00034BB763 hypothetical protein 3.68583616359e-08 6.83096554407e-06 2742864442.62 +UniRef50_Q87VK8 UPF0313 protein PSPTO_4928 8.09111819368e-06 2.62938038002e-06 -2204970578.43 +UniRef50_UPI000328C73F 7.58889498985e-08 6.96623967712e-07 250598343.967 +UniRef50_UPI000181653B putative cation efflux protein 1.49953289863e-07 9.00611447477e-07 303049909.84 +UniRef50_UPI00045EB333 hypothetical protein 4.79318839769e-08 2.74902124056e-08 -8252553.66085 +UniRef50_A6UC68 Glutamine synthetase catalytic region 2.2185745605e-05 9.22704749051e-06 -5231585449.93 +UniRef50_Q5M6A1 Undecaprenyl diphosphatase 5.59820986305e-05 4.9545608602e-05 -2598490009.12 +UniRef50_UPI00046976AA hypothetical protein 7.14034026878e-07 8.43878224582e-08 -254195899.352 +UniRef50_UPI00045EBC8D hypothetical protein 1.87976562087e-07 7.35570881426e-08 -46192545.716 +UniRef50_I1AS06 1.67247939965e-06 8.54746547458e-07 -330128787.14 +UniRef50_Q10Y48 Uridylate kinase 2.30896859897e-07 2.91910144666e-07 24631811.7784 +UniRef50_UPI0003FA4543 membrane protein 3.60168932171e-07 7.3495143042e-08 -115733726.554 +UniRef50_E8SII5 Single stranded DNA specific exonuclease RecJ 9.54681698391e-05 3.45634475734e-05 -24587983763.7 +UniRef50_Q5HKU8 CapA related protein 0.000117321999354 3.25636740181e-05 -34217976039.7 +UniRef50_Q7MPS3 Formamidopyrimidine DNA glycosylase 2.32890153192e-05 2.97333300328e-05 2601648930.51 +UniRef50_UPI00041EB905 thymidylate synthase 5.88810128769e-07 4.30628652688e-06 1500790840.48 +UniRef50_R0EY14 CRISPR associated helicase Cas3 9.41653728385e-08 1.08079213661e-07 5617188.28207 +UniRef50_A5ZLG0 3.76854056432e-07 3.50807935395e-06 1264114077.06 +UniRef50_B8DT48 Methionine tRNA ligase 1.47222350615e-06 9.43185977574e-05 37483220638.4 +UniRef50_A5IVU5 Phospholipase Carboxylesterase 0.000139317848247 1.79844916104e-05 -48983765002.1 +UniRef50_P77437 Hydrogenase 4 component F 1.66538505333e-05 9.8222011707e-06 -2758020681.45 +UniRef50_K5ELG7 1.03172044321e-06 2.81317040156e-06 719193209.035 +UniRef50_A3X6J0 4.12976770655e-07 6.89750752718e-07 111737052.958 +UniRef50_D4GDN3 Catalase 2.84243592468e-06 9.13350634579e-07 -778795404.152 +UniRef50_A8ML82 Probable endonuclease 4 5.30906383178e-06 1.25927348865e-05 2940507385.49 +UniRef50_UPI0003B59385 molybdopterin biosynthesis protein MoeB 1.95531421562e-07 1.98582654261e-07 1231820.08342 +UniRef50_A3JVB5 SN glycerol 3 phophate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 1.70039287998e-06 5.61688633509e-07 -459708877.772 +UniRef50_G8AEH3 4.28119324318e-07 1.21107636684e-06 316089366.029 +UniRef50_UPI00047B7AB7 alpha ketoglutarate decarboxylase 1.07175579609e-08 4.57109484673e-08 14127261.1646 +UniRef50_A5UKJ0 Tyrosine tRNA ligase 3.99065880485e-05 2.57543638253e-06 -15071044032.3 +UniRef50_B7G9B5 L threonine ammonia lyase 2.49837012794e-06 1.14505925528e-05 3614122049.04 +UniRef50_UPI000374D549 hypothetical protein 2.05710879097e-07 1.72803343713e-07 -13285175.8554 +UniRef50_UPI0003610FAC hypothetical protein, partial 2.07791778855e-06 4.73430859924e-07 -647751062.357 +UniRef50_B5WT75 Transketolase domain protein 1.42553870142e-06 1.78191886693e-07 -503569215.773 +UniRef50_P58319 Low specificity L threonine aldolase 4.56662185685e-06 3.98157978736e-06 -236188662.727 +UniRef50_A7MI34 Ribonuclease H 6.25382790229e-05 2.45186780071e-07 -25148485760.6 +UniRef50_Q5KP44 Inosine 5 monophosphate dehydrogenase 2.37252918055e-07 3.64058337172e-08 -81084432.6181 +UniRef50_A3X8V2 DNA helicase II, putative 6.31794572949e-05 2.65443006903e-05 -14790062285.2 +UniRef50_B0VAC9 Porin 3.84062672354e-06 4.58226100245e-05 16948641835.5 +UniRef50_P08656 Mercuric transport protein 2.72541931512e-05 4.36428628368e-06 -9240936293.15 +UniRef50_Q75FU1 Acetylglutamate kinase 2.92139968277e-07 9.3709752719e-08 -80108713.0333 +UniRef50_O66119 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 4.58693201879e-05 2.7304195949e-05 -7494968474.94 +UniRef50_Q88BC2 Phospholipase D family protein 1.09691995495e-05 4.46743283418e-06 -2624843008.62 +UniRef50_B4TKU5 RNA 3 terminal phosphate cyclase 2.89644883717e-05 2.1582726858e-05 -2980107707.48 +UniRef50_A5W974 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.52352837042e-06 1.06058267639e-05 3666635313.78 +UniRef50_UPI00045DB0AA PREDICTED 1.10844172911e-06 2.15966381688e-08 -438772700.302 +UniRef50_UPI00040A4A10 betaine aldehyde dehydrogenase 1.61087158058e-07 4.93683722979e-07 134273314.677 +UniRef50_J9EAY7 0.000131906634757 1.20537430691e-05 -48386083134.8 +UniRef50_I0DZ31 Major facilitator transporter 2.31550071799e-06 6.2078612858e-05 24127101746.8 +UniRef50_D0LZ79 Phosphoribosylformylglycinamidine synthase, purS 0.000188996648051 6.41985266265e-07 -76041088737.9 +UniRef50_T0PX63 1.20284048624e-07 2.03517210887e-07 33602248.9913 +UniRef50_UPI0004715F2C ATP dependent DNA helicase RecQ 1.57326000835e-07 8.98946220602e-08 -27222875.0875 +UniRef50_Q6GDN6 4,4 diaponeurosporenoate glycosyltransferase 0.000146150721323 2.34009086268e-05 -49555605695.0 +UniRef50_Q3Z7P5 Isoleucine tRNA ligase 3.0595540668e-08 9.36130840441e-08 25440955.5731 +UniRef50_C8PYM1 1.11776384201e-07 1.01881291816e-07 -3994770.22226 +UniRef50_Q2T312 Glutamate 1 semialdehyde aminotransferase 4.61553398489e-06 1.3312548694e-06 -1325903781.56 +UniRef50_UPI0003EE7EAE acetyl CoA acetyltransferase 1.70245649132e-07 9.92470055448e-07 331942082.658 +UniRef50_W5XCV9 Hsp90 ATPase activator family protein, putative 1.60698332692e-07 1.3905981389e-06 496525644.335 +UniRef50_UPI000373AC76 hypothetical protein 3.01945320928e-07 1.50657949832e-06 486325599.936 +UniRef50_UPI00036BF734 hypothetical protein 3.00234985515e-08 6.3401979096e-06 2547494844.29 +UniRef50_P60966 Prolipoprotein diacylglyceryl transferase 1.30583770364e-07 7.85366171909e-08 -21012074.4264 +UniRef50_UPI00031187B6 hypothetical protein 2.81722564903e-07 1.18779699666e-07 -65782034.23 +UniRef50_X2MXQ1 1.33773324648e-06 1.54771697738e-06 84773008.9545 +UniRef50_N0BFG1 Polyhydroxyalkonate synthesis repressor PhaR 2.7596534463e-07 9.24033106559e-08 -74106245.6748 +UniRef50_M1MRG1 Amino acid polyamine organocation transporter, APC superfamily 1.37931626444e-06 1.97410152269e-05 7412843194.55 +UniRef50_Q2NH89 Replication factor C small subunit 4.50335128371e-05 1.68752402968e-05 -11367840165.4 +UniRef50_K4AS36 4.32379557918e-07 1.66806348089e-07 -107215163.758 +UniRef50_F5LZU0 6.58062089568e-06 1.02090374539e-05 1464836290.23 +UniRef50_C6WQE7 Periplasmic binding protein 1.05550482835e-07 5.41613637344e-07 176044046.572 +UniRef50_UPI0003B45185 DNA directed RNA polymerase subunit alpha 2.08130113379e-07 6.822731422e-07 191417359.124 +UniRef50_Q8DUE8 8.13766927271e-05 2.00097968855e-05 -24774568907.7 +UniRef50_Q8FBT7 1.33399305193e-05 5.37179542243e-06 -3216833918.62 +UniRef50_UPI0004014281 16S rRNA methyltransferase 2.27294644962e-07 2.24641701788e-07 -1071025.71462 +UniRef50_P45515 Cobyrinic acid a,c diamide adenosyltransferase 2.18983818154e-07 5.83046725533e-07 146976663.263 +UniRef50_V5CX68 Dipeptide ABC superfamily ATP binding cassette transporter, binding protein 3.20487211153e-06 9.62989256073e-06 2593859599.21 +UniRef50_Q9I733 3.06559544876e-06 7.65108454026e-06 1851218216.52 +UniRef50_UPI000463C6BF hypothetical protein 1.65127410566e-07 4.50369054678e-06 1751531178.24 +UniRef50_R6HVU1 1.04159773061e-06 4.94754604704e-05 19553344738.4 +UniRef50_G7LXC7 Glycoside hydrolase family 25 7.34813932868e-06 1.94727044432e-05 4894835721.87 +UniRef50_U5MY29 DnaD like protein 3.17011917057e-06 7.82534735779e-06 1879372745.25 +UniRef50_UPI0003B69658 branched chain amino acid ABC transporter permease 1.48859567984e-06 1.51996450797e-06 12663980.8549 +UniRef50_R6VS65 4.48213796037e-06 8.80905534551e-06 1746829645.63 +UniRef50_UPI0004624AAB calcium binding protein 3.52093718112e-09 5.63777191094e-09 854592.156912 +UniRef50_R5QLU7 1.79256010567e-05 7.25145259866e-06 -4309284719.03 +UniRef50_UPI0004750550 glutamyl tRNA amidotransferase 1.17672581416e-07 2.19638264666e-07 41164797.5877 +UniRef50_A6LYZ5 Transposase 5.47081143264e-06 3.3432079833e-06 -858939621.129 +UniRef50_F9YWL9 2.07790452577e-06 8.1432615891e-05 32036470769.9 +UniRef50_P77434 Glutamate pyruvate aminotransferase AlaC 3.10473449022e-05 1.8167050449e-05 -5199932929.74 +UniRef50_F0FD43 3.21420152608e-06 1.19644998639e-07 -1249310444.61 +UniRef50_G0XA87 1.10248507535e-05 0.000484075526505 1.90976362786e+11 +UniRef50_S8AX05 NLPA family lipoprotein 1.22318184459e-07 3.16707821069e-07 78477481.7285 +UniRef50_J9YR28 Rhodanese like domain containing protein 2.30337538454e-07 2.33176490197e-05 9320630958.13 +UniRef50_Q218J2 Molybdopterin dehydrogenase, FAD binding 2.43214515849e-05 3.77000049191e-06 -8296873000.91 +UniRef50_UPI00042C9909 PREDICTED 9.94150134473e-08 3.22633025144e-07 90115850.5151 +UniRef50_Q21M27 Glucose 1 phosphate adenylyltransferase 1.1211431215e-07 2.72743404715e-07 64847935.8091 +UniRef50_UPI00042517AA coproporphyrinogen III oxidase 1.98377044727e-07 5.00371329475e-07 121918798.639 +UniRef50_Q3JUF7 2.45762240962e-08 2.54766388374e-06 1018601449.96 +UniRef50_D8HGC2 1.44892464651e-07 1.08682249339e-06 380268711.383 +UniRef50_UPI00047BCF38 AsnC family transcriptional regulator 1.99001247767e-06 8.81865229419e-07 -447372642.614 +UniRef50_UPI00036EA5F9 hypothetical protein, partial 1.63693087209e-07 4.68909536302e-07 123219625.926 +UniRef50_P39347 Putative prophage P4 integrase 3.99325683709e-05 6.10037123369e-06 -13658473152.0 +UniRef50_A0A052HCP6 PF07120 family protein 4.79369692794e-08 7.64789275259e-08 11522738.7933 +UniRef50_Q7MVV7 Thymidine kinase 1.71654633517e-07 1.30619408193e-07 -16566424.0221 +UniRef50_F0QIN2 Transcriptional regulator, TetR family 3.54187347592e-06 0.000176230422034 69716486179.7 +UniRef50_P0AFJ9 Low affinity inorganic phosphate transporter 1 5.10671070878e-05 1.84468659008e-05 -13169191662.6 +UniRef50_D0LA73 2.31221498111e-07 3.27205448773e-07 38749898.7378 +UniRef50_A0A008HNV8 4.27378834968e-07 6.13269155292e-08 -147779651.84 +UniRef50_UPI00047161BF thioredoxin 4.00958809738e-07 2.63955290762e-07 -55310001.8328 +UniRef50_Q3HKI8 DSBA oxidoreductase 0.00021748037005 8.50313994098e-05 -53471274779.0 +UniRef50_B6AH12 NAD dependent epimerase dehydratase family protein 5.20640619842e-05 1.47268942774e-05 -15073472781.8 +UniRef50_UPI000463295C hypothetical protein 2.09106735988e-05 7.16520273746e-06 -5549215262.6 +UniRef50_UPI000414D457 hypothetical protein 4.08242233195e-08 5.91638470593e-08 7403931.15625 +UniRef50_Q1J1L0 Mannose 6 phosphate isomerase, type 1 4.95196673545e-06 0.000623578518859 2.49747130494e+11 +UniRef50_O32165 FeS cluster assembly protein SufD 0.00023296466832 7.31892942908e-05 -64503279159.8 +UniRef50_Q08329 Ribosomal RNA small subunit methyltransferase I 2.89875710755e-07 3.48986738968e-07 23863847.4635 +UniRef50_W4UF17 Beta mannosidase 1.58456006781e-06 6.57073933288e-05 25887174663.1 +UniRef50_J0S0K6 2.28291514076e-08 3.29374673001e-08 4080851.16879 +UniRef50_A9VTC9 Aspartate carbamoyltransferase 1.07466160736e-07 8.62201047967e-08 -8577293.50112 +UniRef50_UPI00046A3857 hypothetical protein 4.27190065776e-08 8.75090383769e-07 336038539.317 +UniRef50_UPI00036BBCF4 MULTISPECIES 3.20471423671e-07 1.38436268324e-07 -73489826.0361 +UniRef50_Q2GJV5 Polyribonucleotide nucleotidyltransferase 2.25395772625e-08 5.98672827688e-08 15069652.7754 +UniRef50_D3ERJ1 Energy coupling factor transporter transmembrane protein EcfT 0.000215703604285 7.7733947985e-05 -55700043326.4 +UniRef50_H6PBJ5 ThiW protein 3.0606972069e-06 6.28333415313e-06 1301018081.4 +UniRef50_A6LIS9 7 cyano 7 deazaguanine synthase 5.55684245877e-07 4.28303075717e-06 1504775526.29 +UniRef50_UPI00022CAA8B PREDICTED 3.17400955732e-07 7.37294351724e-07 169516116.633 +UniRef50_A3N352 N acetylneuraminate lyase 9.3611444294e-05 1.85271146756e-05 -30312465255.3 +UniRef50_T2K100 CadX 0.000325752976437 0.000132769353524 -77909856745.3 +UniRef50_Q9I2Y8 1.67453110285e-06 6.28333415313e-06 1860630347.77 +UniRef50_UPI0003633A56 hypothetical protein 1.08517612851e-07 4.22495753332e-07 126756828.257 +UniRef50_Q8CMW6 IS605 IS200 like transposase 0.00011607661574 5.54931599443e-05 -24458284547.3 +UniRef50_P75810 Inner membrane protein YbjJ 2.2419732403e-05 4.18147692723e-06 -7363007544.14 +UniRef50_G7MCQ3 3.97171325099e-06 6.93005924187e-06 1194320579.51 +UniRef50_P43386 Glutamine synthetase 1.03143143439e-07 1.37660788728e-06 514113344.258 +UniRef50_J7QU36 Hydrogenase 4 membrane subunit 1.11454562337e-05 4.73537988818e-06 -2587826481.17 +UniRef50_UPI0003686401 hypothetical protein 5.84992495528e-07 5.7242572272e-08 -213059120.238 +UniRef50_F9XXP5 Transporter, Sodium bile acid symporter family, macrolide resistance protein 3.52674685015e-05 4.83812307827e-05 5294186756.88 +UniRef50_A0A022M296 Short chain dehydrogenase 2.04625376914e-07 2.4578154e-07 16615248.0807 +UniRef50_A4XKN9 Cytidylate kinase 8.83789682173e-08 1.15421292239e-07 10917318.0542 +UniRef50_Q6ZAM9 1.1190509507e-07 1.34122597411e-07 8969478.33447 +UniRef50_D7BLX5 Extracellular solute binding protein family 1 3.71325680773e-07 3.25921255043e-07 -18330323.8422 +UniRef50_UPI0003661C1B hypothetical protein 1.32286476861e-07 3.43279817057e-07 85180600.6166 +UniRef50_Q8XU90 Uroporphyrinogen decarboxylase 1.61703679992e-05 0.000108927179906 37447063220.9 +UniRef50_R6HIJ1 7.56409471529e-08 3.23027824714e-07 99873118.2497 +UniRef50_C3MCT2 1.40640512611e-05 4.64861285554e-06 -3801128024.75 +UniRef50_Q5HR58 Decarboxylase family protein 0.000323868111101 4.71456183448e-05 -1.11716266092e+11 +UniRef50_UPI000351149F PREDICTED 3.191753689e-07 8.02559792158e-07 195148223.463 +UniRef50_G8V3B6 Heme ABC exporter, ATP binding protein CcmA 0.000201041664954 4.66023403099e-05 -62349050542.4 +UniRef50_P94417 Aspartokinase 3 5.33882783848e-05 8.27825489773e-05 11866827746.5 +UniRef50_D4HA31 D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase 5.23885359156e-06 4.40807866749e-05 15680965029.8 +UniRef50_A0A023KQS7 Formate dehydrogenase 1.37016793906e-05 1.03403590418e-05 -1357006272.85 +UniRef50_P31436 Sugar efflux transporter C 5.43436062603e-05 1.26228159476e-05 -16843195020.9 +UniRef50_B9KJG1 Flagellar proximal rod protein FlgC 1.81135554305e-05 1.80236871959e-05 -36280909.1153 +UniRef50_Q9PNB4 Elongation factor Ts 6.03527370052e-06 5.77119102051e-05 20862492300.5 +UniRef50_A4WSY4 Transcriptional regulator, RpiR family 0.000126498110329 1.05897323501e-05 -46793634545.9 +UniRef50_G0VNQ5 Lipoprotein 3.30192671499e-07 8.79902403925e-08 -97780093.5955 +UniRef50_UPI00047EE782 DNA gyrase subunit A 7.01461981345e-08 4.98789633342e-08 -8182131.39582 +UniRef50_Q5SKN9 Long chain fatty acid CoA ligase 1.15341051473e-07 2.7172358915e-06 1050416875.76 +UniRef50_Q84630 1.6003773123e-07 2.44614945341e-07 34144859.2157 +UniRef50_P09053 Valine pyruvate aminotransferase 2.5430093308e-05 1.73963361563e-05 -3243326347.43 +UniRef50_I6S241 7.76607423632e-06 1.56252224977e-06 -2504450063.11 +UniRef50_UPI0003758FEB hypothetical protein 5.75663027762e-07 9.16352463386e-07 137540505.891 +UniRef50_P45039 Protein CysZ homolog 3.22890587385e-05 4.7037179594e-06 -11136540582.7 +UniRef50_UPI00036B404B hypothetical protein 2.37339727073e-07 8.72854941856e-08 -60578735.189 +UniRef50_A7V4H6 3.64213943153e-07 1.95252938045e-06 641222432.86 +UniRef50_P77546 4.76079440274e-05 1.76755562166e-05 -12084072270.9 +UniRef50_Q5HPS3 30S ribosomal protein L7Ae, putative 1.45080607697e-05 0.000112759004338 39665111593.2 +UniRef50_D7CXV9 Electron transfer flavoprotein alpha beta subunit 2.43016731023e-06 0.000418156891054 1.67833979916e+11 +UniRef50_Q5HQF3 Transposase, IS200 family, truncation 2.73160664935e-05 0.000272816384799 99111491127.4 +UniRef50_E3F2N0 Transcriptional regulator, LysR family protein 0.000165632690805 1.91817118576e-05 -59124057356.5 +UniRef50_R5J6S8 Thioredoxin disulfide reductase 6.59210045459e-06 4.74978262967e-06 -743766313.702 +UniRef50_UPI000476E0F1 hypothetical protein 4.2840872078e-08 1.10935390851e-07 27490592.8424 +UniRef50_Q1QDN1 Aminotransferase 2.51492511024e-06 7.22499953124e-05 28152903586.2 +UniRef50_G7M5P4 2.39244889874e-08 6.91565702328e-06 2782276995.16 +UniRef50_P76633 3.71732589835e-05 2.81000044596e-05 -3662984192.65 +UniRef50_P76639 9.45892396134e-06 1.96659293133e-06 -3024745978.06 +UniRef50_G2FJU8 CRISPR associated helicase Cas3 1.20082733565e-06 3.1697486628e-07 -356822087.974 +UniRef50_O05240 Probable NADH dependent butanol dehydrogenase 2 1.06020066497e-07 2.20721872077e-05 8868011230.09 +UniRef50_E0TGB8 1.30455852193e-06 2.93630918666e-07 -408123878.913 +UniRef50_UPI00047C43B7 deoxyguanosinetriphosphate triphosphohydrolase 1.34274932965e-07 1.61224520561e-07 10879879.2211 +UniRef50_C5D4L1 Transcriptional regulator, RpiR family 2.85532641026e-06 6.79933622094e-06 1592245159.01 +UniRef50_A1BHE5 Chorismate synthase 1.8598161881e-07 1.83750805589e-06 666741489.158 +UniRef50_A8LS46 2.10626445025e-06 4.15137445388e-07 -682728724.324 +UniRef50_D6K042 Nucleotide binding protein 7.39852429849e-08 6.66728920087e-07 239297896.229 +UniRef50_UPI000345D912 hypothetical protein 3.18438248205e-06 4.10697844162e-06 372463310.404 +UniRef50_UPI00047E8FE9 hypothetical protein 1.26438236184e-07 5.50718964674e-07 171287336.601 +UniRef50_Q820Q4 Siroheme synthase 4.55681875857e-08 2.25730917386e-07 72733904.8656 +UniRef50_UPI0003B3A117 adenosylcobinamide amidohydrolase 5.92293959266e-07 1.09286458476e-06 202086504.204 +UniRef50_UPI00036900A5 hypothetical protein 4.44260505689e-07 2.62393386933e-07 -73421987.6023 +UniRef50_UPI00040265B6 transcriptional regulator 9.86792717005e-08 1.0949827694e-06 402219948.04 +UniRef50_Q21AL1 6.14058473984e-06 6.74747988232e-07 -2206625369.98 +UniRef50_B0V8K7 Pilin like competence factor 1.68270128756e-06 6.67540417739e-05 26270098669.5 +UniRef50_A3TXU1 1.78616652232e-06 3.23826946049e-07 -590364431.865 +UniRef50_UPI000237DC3E hypothetical protein 1.9193595653e-07 2.36206036376e-06 876105853.62 +UniRef50_A1SVN9 D erythrose 4 phosphate dehydrogenase 3.37369010844e-05 1.55891550011e-05 -7326467791.72 +UniRef50_S9S862 4.94291732102e-06 7.43775769457e-07 -1695244973.63 +UniRef50_UPI0002559A2B hypothetical protein 5.88601910223e-06 5.26857660642e-07 -2163559238.28 +UniRef50_Q8YAE3 Ribonuclease M5 8.87135506321e-05 1.01520055157e-05 -31716259822.1 +UniRef50_UPI00035C7818 hypothetical protein 2.72757265495e-08 4.094420993e-08 5518134.47186 +UniRef50_E8SJM3 Siderophore staphylobactin biosynthesis protein SbnC 0.000153706349845 2.44665240198e-05 -52175703636.6 +UniRef50_UPI0004720A04 diguanylate cyclase, partial 1.32894115641e-08 2.74895188129e-07 105613462.263 +UniRef50_Q73F30 Tn7 like transposition protein D 1.0161589647e-07 9.58301909705e-07 345854656.263 +UniRef50_Q7N5M7 Flagellar L ring protein 5.26343826007e-05 3.86877779725e-06 -19687273080.4 +UniRef50_G7M4H8 Secretion protein HlyD family protein 5.06221307211e-06 3.56337888767e-05 12342120307.7 +UniRef50_O87320 Putative aminotransferase AatC 2.82224494622e-07 5.68651484471e-06 2181778332.43 +UniRef50_F7XGW6 Oxidoreductase protein 1.94234594035e-05 9.74578793798e-06 -3906994729.01 +UniRef50_V3W6L3 Glucarate permease 1.76731348197e-05 1.97096799911e-06 -6339157432.73 +UniRef50_J2WQI8 8.58735358218e-07 4.4700368914e-07 -166221127.323 +UniRef50_Q1C138 Autoinducer 2 import ATP binding protein LsrA 2.42739173227e-05 7.87959436458e-06 -6618589359.15 +UniRef50_D4HCC5 Transcriptional regulator, LacI family 4.90012037439e-06 3.6916409401e-05 12925368764.1 +UniRef50_UPI00046CFD96 hypothetical protein 2.87829172354e-07 2.95753969477e-07 3199337.84675 +UniRef50_Q9HT89 9.93127259492e-06 4.52676555232e-05 14265731414.3 +UniRef50_UPI00035FFDBB hypothetical protein 5.42138270638e-08 9.18312519576e-08 15186616.0473 +UniRef50_Q134N9 Methionine import ATP binding protein MetN 1.30016123657e-07 2.25800360992e-07 38669272.0169 +UniRef50_A0A059LBR4 2.33234134006e-07 1.14084599834e-06 366414047.282 +UniRef50_B8C7V4 6.05251272776e-07 2.82692177639e-07 -130221064.952 +UniRef50_D9T5Q5 1.90016670052e-07 6.23886266305e-08 -51525007.3017 +UniRef50_UPI0002F33E46 hypothetical protein 2.06212227828e-05 1.28347259578e-06 -7806887051.37 +UniRef50_UPI00035D42F6 hypothetical protein 3.00140852212e-08 1.46966132426e-07 47214976.6197 +UniRef50_D5AL10 Transcriptional regulator, LuxR family 4.64283362434e-05 1.55736771919e-05 -12456404488.3 +UniRef50_Q9RY69 3.81181046844e-06 0.000445152345643 1.78174589908e+11 +UniRef50_J0URR6 2.69301378738e-07 1.81252542535e-06 623018485.105 +UniRef50_E3A6Z3 9.11506760953e-06 2.46478800461e-05 6270786989.7 +UniRef50_K7SLE8 Acyl CoA thioester hydrolase, YbgC YbaW family 7.47463757461e-06 5.49933868084e-05 19183902186.3 +UniRef50_M4QZ02 Ribosomal RNA small subunit methyltransferase D 2.28318138423e-06 1.43079294428e-05 4854538351.51 +UniRef50_C9RQ15 Nitrogenase 5.77557994818e-06 1.18200168979e-05 2440213370.18 +UniRef50_UPI0002624B69 thioredoxin disulfide reductase, partial 1.21964231924e-06 7.95612360415e-07 -171186097.81 +UniRef50_R4NK63 Valyl tRNA synthetase 3.8947694678e-06 7.08193537646e-07 -1286459806.69 +UniRef50_UPI0004448C06 PREDICTED 6.62065745959e-08 1.97963666431e-07 53191954.8151 +UniRef50_O03042 Ribulose bisphosphate carboxylase large chain 8.83595195123e-05 2.89369863074e-05 -23989605851.3 +UniRef50_UPI0003B45D4A transcription termination factor Rho 5.62358300836e-08 2.3469583562e-07 72046494.1854 +UniRef50_I0EV03 Cytosine specific methyltransferase 2.72494044384e-06 2.2562352771e-05 8008606788.91 +UniRef50_B2V0J5 Phosphopentomutase 1.25721391775e-06 1.43315151999e-05 5278255867.3 +UniRef50_A1R8R6 30S ribosomal protein S11 0.000104863386241 0.000243954171843 56152656983.4 +UniRef50_P09546 Bifunctional protein PutA 8.19864147582e-06 4.30975006151e-06 -1569993186.02 +UniRef50_UPI0003B6A42C DNA helicase 1.68108671166e-07 1.62041420434e-07 -2449423.57405 +UniRef50_M1MDU9 Permease 7.59632004564e-06 3.13821808373e-05 9602643886.94 +UniRef50_A5UNQ0 Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family 3.62756580132e-05 8.10265473116e-06 -11373787146.6 +UniRef50_E1VK27 Phenylacetic acid degradation like protein 9.33584118295e-08 1.68771140037e-07 30445043.7956 +UniRef50_UPI0002F8E904 hypothetical protein 9.33988473737e-08 1.75964802835e-07 33332889.4179 +UniRef50_F5ZJY8 Membrane protein 2.09762388463e-07 7.39168549958e-07 213727763.94 +UniRef50_A5UJT5 1.77999107223e-05 1.15610806808e-05 -2518692246.81 +UniRef50_Q37626 NADH ubiquinone oxidoreductase chain 6 1.28546517711e-06 3.13090150795e-07 -392559730.507 +UniRef50_UPI00046648B3 ABC transporter 4.66996317759e-08 1.81009027681e-07 54222351.2885 +UniRef50_UPI0004772455 metallophosphoesterase, partial 2.89830313913e-08 4.78316268362e-06 1919320665.95 +UniRef50_K0P9U6 6.38616154308e-06 3.13886506919e-06 -1310973435.32 +UniRef50_M4X2Y6 2.05607233078e-06 4.65172830834e-07 -642265650.662 +UniRef50_Q9S208 Putative 3 methyladenine DNA glycosylase 1.63043284412e-07 3.28352497779e-07 66737358.0084 +UniRef50_UPI0003ADF309 PREDICTED 4.72933697713e-07 5.40816707141e-07 27405203.9243 +UniRef50_X7EE68 2.42663372315e-06 4.40568436321e-07 -801798928.055 +UniRef50_B4DT69 Dihydrolipoyl dehydrogenase, mitochondrial 2.07318309187e-07 6.38627267084e-07 174124719.059 +UniRef50_UPI0004773262 aldehyde oxidoreductase 1.49860918777e-07 1.00303792961e-07 -20006819.8262 +UniRef50_P31474 Probable transport protein HsrA 4.97813034149e-05 1.47858088371e-05 -14128110604.1 +UniRef50_R4LLL8 4.78887826154e-07 2.95179088852e-07 -74165471.6085 +UniRef50_T1XS28 0.00016261808291 2.38095961426e-05 -56038689479.5 +UniRef50_Q6FDP2 1.05968807219e-05 4.99342296233e-05 15880970475.0 +UniRef50_T6QCZ1 Acetoacetate metabolism regulatory protein AtoC 3.42132316185e-06 4.25937555561e-06 338332035.42 +UniRef50_I0C564 Adenine specific methyltransferase 0.000217620487287 4.60832987574e-05 -69251668007.6 +UniRef50_P0ABM3 Heme exporter protein C 3.44094999836e-05 1.41656733714e-05 -8172681223.03 +UniRef50_P31442 Multidrug resistance protein D 4.87573471624e-05 7.73234268918e-06 -16562297739.2 +UniRef50_K8M5I2 2.31977266233e-05 3.3801582594e-06 -8000595537.42 +UniRef50_UPI000369D268 hypothetical protein 2.99996980448e-07 7.75520269841e-08 -89803757.42 +UniRef50_Q7DDR9 Adenosine monophosphate protein transferase NmFic 6.03085916238e-05 2.20261976682e-05 -15455072217.7 +UniRef50_UPI00042A93F8 hypothetical protein 6.47829333748e-08 1.14662401013e-07 20136953.1754 +UniRef50_UPI0004292FB7 hypothetical protein 6.03884220366e-07 2.95629887556e-07 -124446056.861 +UniRef50_H3Y6A9 PF04507 domain protein 2.57615613722e-07 3.58417882427e-07 40695112.8591 +UniRef50_S5XQS3 Acetylornithine N succinyldiaminopimelate aminotransferase 1.77221584407e-05 4.01531649578e-06 -5533620295.02 +UniRef50_E3HI99 4.93111813151e-08 7.18741089525e-08 9108930.76548 +UniRef50_Q9SLK0 Peroxisomal isocitrate dehydrogenase [NADP] 0.000239172331837 6.00846073708e-05 -72299912020.4 +UniRef50_P0A6X2 Glutamyl tRNA reductase 2.72562583369e-05 1.04961466366e-05 -6766262763.11 +UniRef50_UPI00035D06F8 hypothetical protein 1.40619696326e-08 2.25888734162e-08 3442415.69432 +UniRef50_M4JQT7 Transcriptional regulator 6.51962580884e-06 7.60914455182e-06 439852086.439 +UniRef50_F8CFH1 Acetyl CoA carboxylase carboxyltransferase 1.19887829301e-05 5.2249233222e-05 16253637834.1 +UniRef50_UPI00047EBCE0 carboxymuconolactone decarboxylase 4.42922105938e-07 2.60310785538e-05 10330252760.0 +UniRef50_A0A022H066 Transcriptional regulator 4.3752968435e-07 1.43775750931e-07 -118592067.687 +UniRef50_P64636 GMP IMP nucleotidase YrfG 3.23368311678e-05 2.6525452562e-06 -11983910489.7 +UniRef50_UPI0004686F41 hypothetical protein 1.81719037965e-07 1.49795475782e-07 -12887933.7994 +UniRef50_G7U923 Copper exporting ATPase 2.07545247591e-06 4.48955197689e-05 17286986627.5 +UniRef50_R9SM10 Energy converting hydrogenase B subunit E EhbE 5.88289852755e-06 5.50279574895e-06 -153452156.106 +UniRef50_UPI0003752C76 hypothetical protein 1.36493327416e-05 7.98153257284e-06 -2288160479.86 +UniRef50_Q60DH5 1.19674885215e-06 2.51582449349e-07 -381575275.307 +UniRef50_A3VZ88 ISxac3 transposase 7.67543042476e-06 7.75862119949e-06 33585136.6241 +UniRef50_E6AYN5 4.46983815931e-05 2.76268273754e-05 -6891995929.21 +UniRef50_UPI00047C2D15 transporter 6.01126752032e-07 6.08266059086e-07 2882225.86685 +UniRef50_D3PRK0 Phenylacetate CoA ligase 9.05242179512e-07 0.000380884503778 1.53402290777e+11 +UniRef50_F4C648 2.90377517524e-05 4.72506728318e-06 -9815329070.4 +UniRef50_K0SPN4 4.77219314567e-07 1.18649754563e-06 286344325.703 +UniRef50_P69680 Ammonia channel 2.94997341488e-05 1.5987803799e-05 -5454932092.25 +UniRef50_P77499 Probable ATP dependent transporter SufC 0.000244759298122 6.43388456404e-05 -72837950674.9 +UniRef50_UPI00030D778A hypothetical protein 1.57770227494e-06 2.75922243165e-07 -525544573.467 +UniRef50_D1BCT4 ABC type hemin transport system, periplasmic component 8.05777751261e-08 2.77450941053e-07 79480112.9901 +UniRef50_B7IAM2 1.51558571295e-06 7.04558159001e-05 27832016918.3 +UniRef50_UPI00047272A3 glycerol 3 phosphate ABC transporter permease 8.41012091505e-08 5.47429574e-07 187051346.568 +UniRef50_UPI00026277B1 transketolase 3.19789987133e-07 1.21030752019e-07 -80241542.2656 +UniRef50_Q2S0W2 Chorismate synthase 1.53830283946e-07 1.96792685804e-06 732373048.428 +UniRef50_P56935 3 isopropylmalate dehydratase small subunit 1.23925986335e-07 4.2051831604e-07 119737963.099 +UniRef50_D4HFH3 Exo alpha sialidase 7.88619753888e-07 5.53648653826e-05 22033100086.2 +UniRef50_H6PCX4 Competence protein 2.47052537863e-07 3.50718613214e-07 41851266.745 +UniRef50_UPI00047A82E9 hemolysin 9.85330131688e-08 1.16352512456e-07 7193950.53209 +UniRef50_A8GIW3 Probable L aspartate dehydrogenase 6.07500965711e-06 4.91522942652e-05 17390828414.0 +UniRef50_Q9HWI0 D alanine D alanine ligase A 1.09099996778e-06 1.76898936641e-06 273712640.092 +UniRef50_P49915 GMP synthase [glutamine hydrolyzing] 5.92527127152e-08 4.08194273999e-08 -7441743.48363 +UniRef50_UPI0002375EBD glucose methanol choline oxidoreductase, partial 1.00286987634e-06 2.82752259409e-07 -290720318.792 +UniRef50_C0B1I9 Formate transporter FocA 5.26823655275e-07 2.07001811578e-06 623006540.829 +UniRef50_D2NT48 Predicted thioesterase involved in non ribosomal peptide biosynthesis 1.99460651741e-08 2.98628609691e-07 112507563.041 +UniRef50_A6LSK6 Thiamine pyrophosphokinase 2.01147063333e-06 3.34952784714e-06 540190117.024 +UniRef50_UPI000399CFD2 type 12 methyltransferase 5.59844086286e-07 2.46000345246e-06 767117653.7 +UniRef50_R9ZNA1 1.34177484187e-06 2.19838738361e-06 345824994.918 +UniRef50_UPI0004213A08 chemotaxis protein CheD 1.07165920875e-06 2.56906378746e-07 -328925715.614 +UniRef50_D3HDQ8 3.77767319777e-05 4.9178525602e-06 -13265532844.6 +UniRef50_A7X154 Probable heme iron transport system permease protein IsdF 0.000116631921483 2.69081729806e-05 -36222578304.6 +UniRef50_UPI0002651C73 PREDICTED 3.38730729961e-08 7.24867735798e-08 15588824.769 +UniRef50_E8SK39 DNA polymerase III polC type 0.000202521881527 4.76534590846e-05 -62522282589.1 +UniRef50_UPI00047262F8 hypothetical protein 1.23939100537e-07 8.59676683724e-08 -15329533.1267 +UniRef50_P07874 Alginate biosynthesis protein AlgA 3.70299763942e-06 3.01461818483e-06 -277907233.184 +UniRef50_P50648 Ribonucleoside diphosphate reductase large subunit 2.67519971284e-08 3.1384744164e-06 1256240525.79 +UniRef50_B1XZJ7 Pseudouridine synthase 1.36935667056e-06 2.71019692285e-05 10388571464.3 +UniRef50_UPI0003B7021A amino acid transporter 1.47664806801e-07 1.64015197748e-05 6561880707.81 +UniRef50_UPI0003C0FDA1 PREDICTED 2.36845131039e-08 6.9681995618e-07 271753038.671 +UniRef50_UPI0003B40AC9 hypothetical protein 1.77440827614e-08 7.91465092019e-07 312360666.062 +UniRef50_UPI00047E50BD hypothetical protein 4.46544416793e-08 7.9872210025e-08 14217845.2518 +UniRef50_Q13V14 tRNA ) methyltransferase 7.57043994216e-06 4.25614902498e-05 14126316397.7 +UniRef50_L0KY29 5.23764892083e-06 2.71763839138e-06 -1017359174.75 +UniRef50_Q9RWG0 1.94946102928e-06 0.000431041686099 1.73229796814e+11 +UniRef50_Q9RWG3 2.01864165162e-06 0.000314751495341 1.26254090698e+11 +UniRef50_E6MYP0 7.12431646305e-07 4.2622339057e-07 -115545785.01 +UniRef50_Q83GH8 Peptide deformylase 9.29552743465e-08 6.6213311198e-07 229784077.65 +UniRef50_W5XCC5 Putative ferric uptake regulator 1.49178504816e-06 1.98364848386e-07 -522169606.698 +UniRef50_E5U1W5 4.29596378146e-07 1.12855963559e-06 282180044.274 +UniRef50_G7ZUI4 1.39886427018e-06 5.4990409522e-07 -342735640.544 +UniRef50_D1WQ15 KxYKxGKxW signal domain protein 3.91853967615e-07 6.23908532181e-07 93683275.345 +UniRef50_C7CKD2 1.44772032955e-07 2.45047385743e-07 40482390.4375 +UniRef50_UPI00046E9E57 hypothetical protein 3.59942994122e-07 5.41165506057e-07 73161751.9185 +UniRef50_UPI0003D0659C 50S ribosomal protein L6 2.68032457028e-06 2.13389517458e-06 -220600252.487 +UniRef50_O27801 Ribosomal RNA large subunit methyltransferase E 2.43723585527e-05 8.04397744613e-06 -6591967824.5 +UniRef50_A0A013I2H1 1.67251483267e-07 2.28521841338e-07 24735595.4251 +UniRef50_E6MXU9 Bacterial regulatory helix turn helix , lysR family protein 1.43530794236e-06 2.18035481854e-05 8222908532.51 +UniRef50_Q1MK98 3.84901086217e-07 4.85734682634e-07 40707760.2409 +UniRef50_A4CFF4 Excinuclease ABC subunit C 3.8447429531e-07 5.07870386009e-07 49816516.0555 +UniRef50_F7ZCB4 1.93614138063e-07 9.09200088522e-08 -41458880.1612 +UniRef50_A5UJ70 Peptide methionine sulfoxide reductase, PMSR 8.73566966136e-06 4.67838431596e-06 -1637975882.43 +UniRef50_G4QEC1 Na+ H+ antiporter, NhaC family protein 6.03024692687e-05 2.2571317283e-05 -15232529069.9 +UniRef50_UPI0003B48120 aldehyde activating protein 2.73946716222e-07 3.08713727503e-07 14035869.0933 +UniRef50_H8FT83 4.78836744996e-06 3.01847681352e-06 -714526568.931 +UniRef50_UPI00046A638F hypothetical protein 1.08231213167e-06 6.74619754926e-07 -164590415.44 +UniRef50_F0P106 Thioesterase superfamily protein 1.59595002903e-07 6.16597096296e-06 2424847681.6 +UniRef50_W9C3F0 1.28447102352e-07 1.97437241251e-07 27852165.6777 +UniRef50_E1YHR1 5.50747510539e-08 5.57491348976e-07 202831745.926 +UniRef50_UPI0002B46230 PREDICTED 3.75539143746e-08 1.48570686071e-07 44818833.0627 +UniRef50_UPI0001BF6B99 90S preribosome component RRP12 1.84742307319e-09 4.34052266133e-08 16777395.2607 +UniRef50_UPI0003B36FDF histidinol dehydrogenase 3.84907475883e-08 5.89162415438e-08 8246022.55883 +UniRef50_A6LU03 2.50884475769e-06 1.52826718443e-05 5156950747.35 +UniRef50_UPI00026282A2 ATP dependent RNA helicase 5.95834247549e-08 5.79358421468e-07 209839544.53 +UniRef50_H9UXV0 Glycerol 3 phosphate regulon repressor 1.86874251907e-06 2.97298696507e-06 445797033.453 +UniRef50_T5BIS1 1.44105136951e-08 1.05731101751e-07 36867242.0278 +UniRef50_A6LZX4 2.54204442373e-06 1.16004954054e-05 3657007820.99 +UniRef50_D7GEA9 Regulatory protein 3.36201322807e-08 3.06219016011e-07 110051514.526 +UniRef50_Q1GEZ2 Phosphoribosyl ATP pyrophosphatase 3.04933388166e-06 3.20112924269e-07 -1101819991.81 +UniRef50_A7HK75 Phospho N acetylmuramoyl pentapeptide transferase 6.86348620862e-08 1.66973283771e-07 39700427.5823 +UniRef50_Z9UWI7 7.45259444518e-07 3.04342777435e-06 927798756.449 +UniRef50_UPI0003823FAA hypothetical protein 1.0848406435e-07 3.6822934336e-07 104862356.569 +UniRef50_A6LV76 ABC transporter related 3.58530744195e-06 1.86169977712e-05 6068477845.48 +UniRef50_F3H836 ABC transport protein, inner membrane component 1.26373116261e-06 4.97905254017e-07 -309173317.04 +UniRef50_Q99UN8 Malonyl CoA acyl carrier protein transacylase 0.000234592647232 7.90678632742e-05 -62787263787.6 +UniRef50_J3ML95 8.93941551785e-08 8.01036548357e-07 287298766.96 +UniRef50_Q8PZP6 NH dependent NAD(+) synthetase 3.24588708574e-07 8.86118586089e-08 -95266750.0925 +UniRef50_G7M7P0 Pseudouridine synthase 5.16252560877e-06 1.62564782028e-05 4478764800.31 +UniRef50_UPI00006CF5D0 Ribonucleotide reductase, barrel domain containing protein 7.35054378711e-09 4.03192371522e-07 159806203.382 +UniRef50_B2V1J4 Oligoendopeptidase F 6.14246483524e-06 1.74180126492e-05 4552077019.04 +UniRef50_X0SDU2 Marine sediment metagenome DNA, contig 1.37992001787e-07 1.0637778906e-06 373751123.984 +UniRef50_A6LWR2 Pentapeptide repeat protein 1.44630647073e-06 3.55424104548e-06 850999055.093 +UniRef50_I9K9U7 7.42013673445e-07 6.86071883845e-07 -22584386.9445 +UniRef50_B8GPV2 Shikimate kinase 2.82490787016e-07 4.94369666925e-05 19844265116.3 +UniRef50_B1MWT5 Predicted permease 3.89650307883e-05 2.73138139925e-05 -4703739196.97 +UniRef50_K7S768 GHMP kinase, N terminal domain containing protein 1.59726088367e-06 7.86419720344e-05 31103895336.5 +UniRef50_UPI00037B6D4D hypothetical protein 5.93569188326e-06 4.05854631615e-06 -757826700.609 +UniRef50_A0A058Z9B5 1.26521802953e-06 4.77452129912e-07 -318030760.65 +UniRef50_A3WB27 3.8153739661e-06 3.14341301456e-06 -271278882.025 +UniRef50_UPI0003B50A22 amino acid lyase 2.33178989758e-07 6.70398064063e-07 176510705.578 +UniRef50_Q9JVF4 Bis tetraphosphatase, symmetrical 2.30308989982e-07 8.84967415111e-06 3479743487.05 +UniRef50_S3ZBV7 5.5134272954e-07 3.46436966563e-08 -208597740.185 +UniRef50_K1ZWF0 Dihydroorotate dehydrogenase 2.91090554801e-06 9.51539999565e-06 2666315454.77 +UniRef50_A6M087 AraC type transcriptional regulator domain protein 3.77275693748e-06 1.7729545956e-05 5634526995.83 +UniRef50_UPI0003631244 hypothetical protein 9.73237400121e-08 7.69874949636e-08 -8209991.67987 +UniRef50_A7X1H5 0.000184345281928 4.28859054347e-05 -57108886192.0 +UniRef50_D6UEI8 2.46500185851e-05 2.12280476168e-05 -1381491672.21 +UniRef50_M0VCY1 8.97129956613e-08 2.61158118716e-06 1018109135.71 +UniRef50_C1MV00 Predicted protein 7.18610528696e-07 1.21608864946e-07 -241016897.69 +UniRef50_Q0TRG3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000123549807169 5.68962191159e-05 -26908871428.5 +UniRef50_UPI000369953F resolvase 6.01536219842e-07 1.3987258286e-06 321835227.672 +UniRef50_F0RM02 Metallophosphoesterase 8.50538671587e-06 0.000601819888457 2.39528345141e+11 +UniRef50_UPI0004633E17 dTDP 4 dehydrorhamnose 3,5 epimerase 1.51788923369e-07 2.6278356964e-07 44809900.7571 +UniRef50_UPI00037B304C hypothetical protein 7.13265152469e-08 2.84238792452e-07 85955299.0351 +UniRef50_UPI000463C82A aldehyde reductase 1.56427319225e-07 1.83284496111e-07 10842571.8835 +UniRef50_Q4L9Z0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000169082617177 2.19941983288e-05 -59381399666.8 +UniRef50_Q56110 Outer membrane protein S1 5.07547013477e-05 1.19738713923e-05 -15656296947.3 +UniRef50_B7H4N1 2.22442599406e-06 7.6544063069e-05 30003749491.6 +UniRef50_UPI00031566CC hypothetical protein 6.99237468115e-08 6.63175388527e-07 239502967.777 +UniRef50_UPI0003647B3B 50S ribosomal protein L5 2.02434552792e-06 2.58215085618e-06 225192856.06 +UniRef50_S9R870 4.7284257471e-07 7.25058753731e-08 -161620838.206 +UniRef50_D6SE47 0.000211952411663 4.24967115831e-05 -68411345577.6 +UniRef50_Q9FS88 2 methylacyl CoA dehydrogenase, mitochondrial 1.9904460203e-06 5.95523740522e-05 23238456710.8 +UniRef50_UPI0004691E44 hypothetical protein 2.85920087172e-08 5.47493878032e-08 10560054.9242 +UniRef50_A9M410 1.06835657223e-05 0.000104669733969 37943369461.2 +UniRef50_Q1QE72 Diacylglycerol O acyltransferase 9.58086266163e-07 6.06794619042e-05 24110252208.8 +UniRef50_F0KF01 2.02949456367e-06 5.25753843661e-05 20405995981.0 +UniRef50_UPI000469EC64 peptidase S11 5.36367191231e-08 2.41231727767e-07 75734407.0392 +UniRef50_UPI0004638197 pseudouridine synthase 3.31864683741e-08 8.68862368679e-08 21679255.5112 +UniRef50_UPI00047D4A1B 3,4 dihydroxy 2 butanone 4 phosphate synthase 4.24200620789e-07 6.48154980876e-08 -145088184.186 +UniRef50_H8YVR6 Mating pair stabilization protein TraN 2.01678828869e-08 3.52323178377e-08 6081697.25104 +UniRef50_Q92E26 Lin0635 protein 4.29742528301e-07 2.6146944976e-05 10382350213.7 +UniRef50_UPI0004787C34 D ala D ala transporter subunit 3.27818645732e-07 7.88507486297e-07 185985738.224 +UniRef50_UPI0003B75E15 ABC transporter 3.13321171835e-07 3.07347915621e-07 -2411476.83369 +UniRef50_W4NLY9 Mobile element protein 4.6002034962e-07 1.85300634716e-07 -110907720.097 +UniRef50_E9AHU2 Proteophosphoglycan 5 4.16420175687e-07 1.23403840882e-06 330082514.02 +UniRef50_Q9RR77 Cytochrome c oxidase, subunit I 3.59404236973e-06 0.000633286180456 2.54214443337e+11 +UniRef50_A6M3F7 Sigma 54 factor, interaction domain containing protein 2.81661293276e-06 1.68688576792e-05 5673063644.56 +UniRef50_P0AA77 D galactonate transporter 8.36481684023e-06 2.1848338239e-06 -2494934980.61 +UniRef50_X0SPN8 Marine sediment metagenome DNA, contig 3.23592367072e-08 2.09756754314e-07 71617554.7703 +UniRef50_M2TDC8 2.37689562817e-07 4.2721621462e-07 76514235.0864 +UniRef50_K6MT38 1.42910137732e-05 0.000201678928387 75650800638.0 +UniRef50_F2SGG3 Glutathione S transferase 1.10936825073e-06 2.03899444673e-07 -365548868.357 +UniRef50_H7CWV1 Phage shock protein A 3.49524063753e-06 2.89098368658e-05 10260184369.5 +UniRef50_M9RNM4 3.38826409766e-05 4.30363478161e-07 -13505094931.7 +UniRef50_A5ULI2 tRNA pseudouridine synthase A 3.001306077e-05 2.10689682662e-06 -11266060831.1 +UniRef50_UPI00025578F4 dihydroxy acid dehydratase, partial 7.31610814116e-08 4.75614187949e-07 162475257.764 +UniRef50_B3GZA0 Siroheme synthase 5.83420616867e-05 5.01592659389e-05 -3303495057.58 +UniRef50_K7ZDL1 DeoC LacD aldolase family protein 0.000126209664772 2.568575884e-05 -40582734391.8 +UniRef50_UPI00034553FE hypothetical protein 7.48360125642e-08 1.17326347229e-07 17153869.5192 +UniRef50_C1MKI4 Predicted protein 1.65434941078e-07 8.34313422084e-08 -33105859.161 +UniRef50_C0Z7W5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.000218614577609 4.9415734419e-05 -68307649299.1 +UniRef50_UPI000303E0FF hypothetical protein 4.02165015633e-07 5.55832865067e-07 62037596.5331 +UniRef50_Q5NYZ3 Nitrate nitrite antiporter 1.07389023022e-07 5.55199154517e-08 -20940195.2317 +UniRef50_Q3JWL2 7.7364373451e-07 1.39328915975e-06 250158462.074 +UniRef50_N7V1R0 2.185632817e-07 2.95294652892e-07 30977396.15 +UniRef50_A4VMQ2 4.85315906147e-07 2.11124935956e-06 656409287.589 +UniRef50_W6KAJ6 BRO family, N terminal domain protein. Phage related DNA binding protein 2.00278823065e-07 1.84618745136e-07 -6322165.6307 +UniRef50_G8AH05 3.35979929766e-07 6.85332758875e-07 141038024.153 +UniRef50_Q6GG70 GTP pyrophosphokinase 0.000214074686727 3.97557495064e-05 -70374694090.0 +UniRef50_UPI0003B47D61 tRNA delta isopentenylpyrophosphate transferase 6.22345282197e-08 1.62077662881e-07 40307898.6758 +UniRef50_B7Z712 60 kDa heat shock protein, mitochondrial 2.47096348245e-07 4.74255752308e-07 91707038.9796 +UniRef50_T5X346 Sensor protein evgS 3.14502537503e-05 1.14906057447e-05 -8057954832.28 +UniRef50_G4LPB8 ATP binding permease fusion ABC transporter 2.96815460704e-06 3.45326751535e-06 195846034.09 +UniRef50_Q6C5E4 YALI0E18766p 8.30797413508e-08 1.30546578664e-07 19162944.7069 +UniRef50_A6V6R4 2.0920330863e-06 2.44400031881e-06 142093490.888 +UniRef50_Q89AK1 Glyceraldehyde 3 phosphate dehydrogenase 4.37068682341e-07 2.47709415116e-07 -76446659.8782 +UniRef50_Q5HIB4 Serine aspartate repeat containing protein C 0.000202018905514 4.46505189352e-05 -63531548789.2 +UniRef50_UPI0003F08AB5 PREDICTED 1.48923402963e-06 8.62405358341e-07 -253058426.652 +UniRef50_B1TFY4 LigA 7.07227881682e-06 1.84492453673e-06 -2110347069.72 +UniRef50_Q9RS49 Amino acid ABC transporter, periplasmic amino acid binding protein 9.20723343509e-06 0.000557400564622 2.21312374889e+11 +UniRef50_V8BEZ6 6.7173661447e-07 6.9090248326e-07 7737496.42218 +UniRef50_P0ACL6 Glc operon transcriptional activator 4.32523640196e-05 2.47363367397e-05 -7475147430.1 +UniRef50_U2SGB1 Imelysin 1.73381625347e-07 1.11237918984e-06 379084839.582 +UniRef50_M1N514 2.69359016931e-06 6.23549449316e-06 1429910239.59 +UniRef50_B4RCM7 NADH quinone oxidoreductase subunit C 0.000160166668845 4.64350995767e-05 -45914830156.8 +UniRef50_UPI00040C5C40 multidrug ABC transporter ATPase 1.08102005534e-07 2.70939078355e-07 65739324.5334 +UniRef50_A0A020WTM6 6 phospho beta galactosidase 3.28654549774e-05 6.53259279449e-06 -10630899603.8 +UniRef50_UPI00016C5625 Putative bacteriophage holin protein 8.714161401e-07 4.53558919806e-07 -168694087.517 +UniRef50_Q31I51 Zinc import ATP binding protein ZnuC 1.82043894177e-07 3.38090238449e-07 62997824.0866 +UniRef50_V4R6H1 ATPase AAA 2.48111105099e-07 3.75217986315e-07 51314607.7237 +UniRef50_Q1CUH1 Ketol acid reductoisomerase 4.36521825183e-08 3.40818401642e-05 13741634183.7 +UniRef50_D3E138 3.19872884559e-05 1.94763281429e-05 -5050828205.11 +UniRef50_Q7UNN9 Bifunctional protein FolD 2.65767436071e-07 3.57762756323e-05 14336027921.7 +UniRef50_U6MKZ6 8.06943107132e-08 5.32514598488e-09 -30427456.6845 +UniRef50_I0C1R4 1.59420992346e-05 7.44495895456e-06 -3430399802.69 +UniRef50_Q04E86 DNA directed RNA polymerase subunit beta 0.000185767700226 0.000145840021491 -16119293873.0 +UniRef50_P14407 Fumarate hydratase class I, anaerobic 2.92233837971e-05 4.14689287694e-05 4943676775.05 +UniRef50_Q74CZ6 5 nucleotidase SurE 2.98801574284e-06 7.87581653699e-05 30589339208.8 +UniRef50_UPI00035047B5 PREDICTED 3.70510237563e-06 2.37502126784e-06 -536970065.145 +UniRef50_H8MLE9 Pirin family protein 2.81571081211e-07 6.43233306495e-08 -87705582.8316 +UniRef50_B0VC75 8.49822006764e-06 0.000103289882688 38268557424.4 +UniRef50_X5DWG5 ABC 2 transporter family protein 0.000118263476215 2.47621423248e-05 -37747635881.9 +UniRef50_Q6A8C6 ATP synthase gamma chain 2.55058100582e-06 2.49056800984e-05 9025027831.6 +UniRef50_R7YLT4 2.31981179873e-06 3.05484111531e-07 -813208805.903 +UniRef50_UPI00037397F4 hypothetical protein 1.15962366269e-07 6.30757280599e-07 207829024.159 +UniRef50_P0AA72 2.35114999634e-05 3.94141203652e-06 -7900684648.07 +UniRef50_A4EAZ9 4.58239276806e-07 1.07580792655e-07 -141565133.115 +UniRef50_UPI0004653BA0 hypothetical protein 3.35633263467e-06 1.9521068067e-06 -566903198.54 +UniRef50_UPI00045E6087 hypothetical protein 8.75444887175e-07 1.60937271259e-06 296295669.427 +UniRef50_UPI000378C160 hypothetical protein 1.15329886117e-07 2.24450584983e-07 44053365.1938 +UniRef50_K0LJV9 3.01866158195e-05 2.72409348682e-05 -1189207547.61 +UniRef50_Q67N09 Shikimate kinase 3.46577290451e-07 3.95558399668e-07 19774274.8567 +UniRef50_UPI00036A8298 hypothetical protein 2.00463914486e-07 4.9845087809e-07 120300993.918 +UniRef50_E3GX37 H+transporting two sector ATPase C subunit 1.90124259117e-05 1.04229425363e-05 -3467679843.46 +UniRef50_UPI000382EE91 hypothetical protein 2.68395701029e-08 9.61879113497e-07 377486937.894 +UniRef50_H9K6K8 3.20250738869e-07 6.21586566608e-07 121652971.465 +UniRef50_J0LGW4 2.75413787398e-06 7.40842907259e-07 -812791883.972 +UniRef50_A6LWE8 Ribonucleoside triphosphate reductase, adenosylcobalamin dependent 2.4613554059e-06 9.87560894937e-06 2993225138.62 +UniRef50_Q1N9J0 Plasmid partitioning protein RepAa1 3.16161271096e-07 2.35774287104e-07 -32453211.8968 +UniRef50_UPI0003AE07B3 PREDICTED 1.07721447032e-06 7.00213515803e-07 -152199911.66 +UniRef50_A9WM93 Uracil DNA glycosylase 7.09340724343e-06 6.65775573545e-05 24014481352.5 +UniRef50_A5IW30 0.000181019545967 6.76680427745e-05 -45761392818.0 +UniRef50_UPI0003D0C408 PREDICTED 3.21738413227e-07 8.16265423969e-07 199646622.765 +UniRef50_X4ZB59 EAL domain protein 6.29813973851e-08 5.83736416967e-07 210235191.788 +UniRef50_UPI0001B46820 GTPase ObgE, partial 3.68909666183e-07 4.50304867202e-06 1669002648.25 +UniRef50_UPI000463A064 L asparagine permease 5.8560281144e-08 1.36520119822e-07 31473343.5491 +UniRef50_UPI00035FE410 peptide ABC transporter permease 6.84922962506e-07 1.67176785893e-06 398401394.635 +UniRef50_Q5YS08 Ribonuclease 3 2.52205637789e-07 6.93142376719e-07 178011572.408 +UniRef50_A9AC17 L carnitine dehydratase bile acid inducible protein F 3.09243013243e-05 7.95824514871e-05 19643892323.4 +UniRef50_P33919 3.82317897368e-05 9.77286184154e-06 -11489218421.6 +UniRef50_H1UL22 Dehydrogenase 1.9561109237e-06 2.84875484223e-07 -674698255.283 +UniRef50_UPI0004782043 AsnC family transcriptional regulator 1.8988034278e-06 1.1683360775e-06 -294898633.159 +UniRef50_M9SF47 2.51657325899e-06 3.93755606923e-06 573668197.914 +UniRef50_UPI000470709D hypothetical protein 5.82702939008e-07 7.18725314652e-07 54913902.2297 +UniRef50_G8NUY5 Beta lactamase domain protein 3.57755165396e-08 1.8748512452e-06 742457439.657 +UniRef50_A6LXY2 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 3.43626321018e-06 9.09865031755e-06 2285975160.55 +UniRef50_P24734 HTH type transcriptional activator AmpR 8.96469061121e-05 1.36719685808e-05 -30672014598.7 +UniRef50_V6PIL4 2 isopropylmalate synthase 3.06085241467e-05 4.52015365101e-06 -10532195309.4 +UniRef50_O07599 3.06692225712e-06 1.61501013008e-05 5281839928.6 +UniRef50_C7ZT42 DNA binding protein 0.000167421611663 3.04410231283e-05 -55300744532.4 +UniRef50_C9CRT7 5.25551496523e-06 2.52931023886e-06 -1100602302.33 +UniRef50_P31063 2.75537218136e-06 4.3007287164e-06 623879396.853 +UniRef50_B1Z5H1 Secretion protein HlyD family protein 1.30745224531e-05 9.98317946022e-06 -1248013101.27 +UniRef50_P0ABH3 Cell division protein FtsA 3.37080064067e-05 7.66383440838e-06 -10514351833.6 +UniRef50_B9JPQ6 1.95134207401e-07 4.62184441305e-06 1787117231.86 +UniRef50_UPI0003B69DC4 flagellar P ring protein FlgI 1.20122179613e-07 1.23485711816e-07 1357899.22553 +UniRef50_F3X2S2 4.59759012182e-08 9.20508903668e-07 353059704.816 +UniRef50_R1D4S7 7.81124102474e-06 5.04879154655e-06 -1115234753.41 +UniRef50_A6M1M3 1.78521218719e-06 1.09088185213e-05 3683311836.32 +UniRef50_Q6AA07 8.65830399895e-07 3.74771682532e-05 14780446363.0 +UniRef50_UPI0002895CF3 amino acid carrier protein, partial 3.07527779269e-08 6.57245516558e-07 252922806.516 +UniRef50_Q4L5Y3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00014158780232 6.99647351658e-05 -28915111124.0 +UniRef50_H5VFC5 GTP binding protein TypA BipA 3.09734987058e-06 9.2465194711e-06 2482495226.53 +UniRef50_S8FC16 9.02169197517e-08 8.93450055413e-09 -32814710.0775 +UniRef50_Q8X8V7 2.16837480698e-05 6.89827503621e-06 -5969076901.82 +UniRef50_E8SG33 Chromosome partition protein Smc 0.0001119904703 4.08161349581e-05 -28733952584.8 +UniRef50_Q4L928 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000284514376016 2.83334220864e-05 -1.03423394795e+11 +UniRef50_Q9RUV2 Superoxide dismutase [Mn] 8.98827358224e-08 0.000432369876598 1.74516738194e+11 +UniRef50_Q59092 3 carboxy cis,cis muconate cycloisomerase 1.16388280223e-06 7.55411772186e-05 30027026467.9 +UniRef50_M9RIH4 TAXI family TRAP transporter periplasmatic solute binding protein 3.83686424031e-07 6.58205425613e-07 110826689.666 +UniRef50_C4LED9 Transcriptional regulator, LuxR family 1.26490570685e-05 4.53171414615e-06 -3277070948.75 +UniRef50_C5MZG2 Molybdopterin guanine dinucleotide biosynthesis protein B 0.000205282096216 3.26447077521e-05 -69695832221.9 +UniRef50_UPI00036FB829 hypothetical protein 3.83276617277e-07 3.4514050012e-07 -15396018.4791 +UniRef50_N1K138 FtsK SpoIIIE family protein 1.92896796686e-06 2.4574042677e-05 9142094546.78 +UniRef50_A5UMP2 9.78079377288e-06 3.81875049823e-06 -2406950032.47 +UniRef50_S1IPQ9 3.2416877403e-05 1.39545809872e-05 -7453455620.91 +UniRef50_P58054 Hydrolase YbeM 2.68118851425e-05 8.67621868769e-06 -7321591097.46 +UniRef50_F5RN18 Prophage terminase large subunit 1.13869694362e-07 8.96154016274e-07 315817780.464 +UniRef50_P09127 Putative uroporphyrinogen III C methyltransferase 3.34090812159e-05 1.68626546733e-05 -6679995442.73 +UniRef50_B9KSC1 1.42630939619e-05 5.69742758434e-06 -3458064629.17 +UniRef50_A3PNN6 Polysaccharide biosynthesis protein CapD 0.000105844402743 3.44667600007e-05 -28816030277.2 +UniRef50_B3PD00 Capsular polysaccharide synthesis 3.56062356243e-07 2.18696537434e-07 -55456266.7213 +UniRef50_UPI00028A40F7 thymidylate synthase 1.11203512763e-06 8.6195914914e-06 3030892632.13 +UniRef50_A6H086 Potassium transporting ATPase A chain 1.50854074449e-07 4.00522737693e-05 16108692776.3 +UniRef50_P66878 Cobalamin biosynthesis protein CobIJ 2.18934684314e-07 1.0563013675e-07 -45742436.2547 +UniRef50_Q1GMI4 HTH type transcriptional regulator BetI 2.24099555763e-05 6.24343953484e-06 -6526620911.41 +UniRef50_R6XE72 1.82360381085e-06 2.39078308213e-05 8915673448.08 +UniRef50_UPI000369508B hypothetical protein 3.14306742076e-07 2.09627932915e-07 -42260119.8117 +UniRef50_UPI0004648EC6 beta ketoadipyl CoA thiolase, partial 5.67598216689e-08 2.63468450984e-06 1040739831.31 +UniRef50_A4VWG8 Transcriptional antiterminator 8.70876505477e-06 3.8648993834e-05 12087237766.1 +UniRef50_J9NVM5 3.17615403647e-06 8.56114941001e-07 -936628252.922 +UniRef50_Q96255 Phosphoserine aminotransferase, chloroplastic 1.28321897074e-05 2.28206884437e-05 4032479512.51 +UniRef50_Q8Z9J5 Ribosomal large subunit pseudouridine synthase A 4.07451511282e-05 2.94614182339e-06 -15259923902.4 +UniRef50_H6NE34 1.26083817428e-06 1.72353724561e-07 -439434529.558 +UniRef50_I7ENJ2 1.27049820569e-05 9.37513349825e-06 -1344300724.96 +UniRef50_UPI00047AC07F hypothetical protein 1.79504123901e-07 3.76411731093e-07 79494017.3515 +UniRef50_UPI00037F808C hypothetical protein 5.66961179638e-08 3.95169639974e-07 136645914.373 +UniRef50_UPI0003B4238D acyl CoA dehydrogenase 4.23360286583e-08 3.97437736944e-07 143358917.223 +UniRef50_A0A024DFE0 Membrane protein 6.49501524262e-05 1.24521318026e-05 -21194095148.9 +UniRef50_E6MXN3 Bacteriophage Mu I protein GP32 1.1069970347e-06 3.77147114122e-05 14778983521.4 +UniRef50_D7GDI2 Glycogen debranching enzyme GlgX Isoamylase 2.09928833228e-06 6.04758440643e-05 23567331909.9 +UniRef50_Q018U5 COG0031 2.19675561832e-05 9.27724786466e-06 -5123233195.77 +UniRef50_A3M5U8 Glu tRNA amidotransferase 5.82600360026e-06 6.86477668204e-05 25361916721.7 +UniRef50_B9DNN7 Aminomethyltransferase 9.14115016219e-05 5.22048673461e-05 -15828199376.6 +UniRef50_P76470 Inner membrane transport protein RhmT 4.37819412686e-05 9.30064678071e-06 -13920521717.8 +UniRef50_UPI0002000D3D DeoR family transcriptional regulator 1.98150867052e-06 3.72785016686e-06 705019492.092 +UniRef50_S7VF17 2.2587823641e-07 2.75024297817e-07 19840868.08 +UniRef50_Q81K13 UDP N acetylglucosamine 1 carboxyvinyltransferase 1 1.69984866032e-07 8.37543625088e-07 269501662.898 +UniRef50_Q9RXY2 1.52622367462e-06 0.00067113292039 2.70328440462e+11 +UniRef50_Q0TUR6 Beta galactosidase Pbg 4.77938266819e-06 2.12120636312e-05 6634074956.43 +UniRef50_A7ZUJ0 Pantothenate kinase 3.98103938752e-05 4.52305822341e-06 -14245930426.9 +UniRef50_Q6LSD6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 9.33443576863e-08 2.74349808578e-08 -26608424.2247 +UniRef50_P27840 3.12804233966e-05 5.04814880674e-06 -10590291158.2 +UniRef50_Q4L783 UPF0478 protein SH1183 0.000129183532718 0.000102050111044 -10954095294.3 +UniRef50_F1PYJ5 9.01117188233e-09 1.02201738892e-06 408963040.803 +UniRef50_UPI00021A59F3 PREDICTED 6.59175382665e-07 3.05040399008e-07 -142968638.627 +UniRef50_Q2FVY9 HTH type transcriptional regulator SarV 0.000168220999643 3.77878829936e-05 -52657449785.5 +UniRef50_Q2S4I8 Biotin synthase 4.7621694114e-08 5.7193065787e-07 211669962.663 +UniRef50_W8TJK1 5.88725873443e-08 2.03083448293e-07 58219694.2314 +UniRef50_B5E267 Ribosome binding factor A 2.96405241928e-05 5.35317290393e-06 -9805101754.64 +UniRef50_E0WIF5 CagZ protein 8.34795787505e-06 3.44756603461e-05 10548074110.5 +UniRef50_B5Y8S3 Transcription termination factor Rho 1.97982161991e-06 4.26045117553e-05 16400685928.7 +UniRef50_D5V5Y4 Hemolysin type calcium binding region 2.55320873603e-08 8.45993003455e-09 -6892239.41135 +UniRef50_Q5FNA2 Transcriptional repressor NrdR 5.76095190673e-05 3.97287047353e-06 -21653773233.0 +UniRef50_D7FSA3 1.06198297138e-05 3.29962799096e-06 -2955255264.49 +UniRef50_UPI00035ED229 hypothetical protein 2.75187199693e-07 3.23876030697e-08 -98021176.6428 +UniRef50_B5YDT2 D tyrosyl tRNA deacylase 3.30452693409e-05 7.47744939336e-05 16846600043.2 +UniRef50_V9X558 2.7262416657e-05 3.58955293068e-06 -9557025585.01 +UniRef50_E6K0A1 GroES like protein 3.25834409436e-05 1.18599040039e-05 -8366346168.95 +UniRef50_B5XY59 Dihydroorotate dehydrogenase 2.43255812297e-05 1.77869503976e-07 -9748727549.41 +UniRef50_UPI00037BE1B4 hypothetical protein 2.29578583471e-07 6.93144360538e-08 -64700602.9745 +UniRef50_A6LXY0 D galactose binding periplasmic protein 2.37062033318e-06 1.68591839309e-06 -276422575.452 +UniRef50_UPI0003800F45 hypothetical protein, partial 1.66972765658e-07 5.90526863844e-07 170993987.031 +UniRef50_E3A0J6 2.11674386272e-05 3.83806722049e-06 -6996079892.19 +UniRef50_UPI000476452D 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.03588972662e-07 4.31104507748e-07 132222040.582 +UniRef50_A0A023S0J1 Sodium 6.77184245367e-06 9.52386807991e-05 35715148250.2 +UniRef50_Q0FNM1 5.41260145744e-08 1.08677490104e-07 22023100.0932 +UniRef50_G8AZY0 6.58176502531e-07 2.37447774224e-07 -169853350.54 +UniRef50_UPI0003787256 hypothetical protein 8.37676771772e-08 1.47905367657e-07 25893172.7047 +UniRef50_Q094V3 4.1498880895e-07 5.25822912724e-07 44745087.781 +UniRef50_UPI00036D8B59 hypothetical protein 1.11349102001e-06 3.31189048694e-07 -315824905.745 +UniRef50_Q83SQ3 Glutathione regulated potassium efflux system protein KefC 1.39778165811e-05 2.10094264896e-06 -4794839752.02 +UniRef50_Q3J5H6 Bifunctional uridylyltransferase uridylyl removing enzyme 5.95333929402e-05 2.83608266032e-05 -12584747560.7 +UniRef50_Q48335 Glyceraldehyde 3 phosphate dehydrogenase 0.000137980454389 4.53567906558e-05 -37393309669.3 +UniRef50_UPI0003B4462C hypothetical protein, partial 3.03877483906e-07 3.40130587235e-07 14635822.6895 +UniRef50_A8Z4R9 Bacteriophage integrase 0.000145715884757 4.3042838889e-05 -41450368556.9 +UniRef50_Q8X9Z2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 5.71900380746e-05 1.12612177666e-05 -18542028368.3 +UniRef50_W5W9B3 9.02907257519e-07 1.92865753007e-07 -286652468.561 +UniRef50_P0ADV3 Lipopolysaccharide export system protein LptA 3.60963106788e-05 9.69245214967e-06 -10659561700.0 +UniRef50_A5UN28 Biopolymer transport protein 3.05111682171e-05 2.16182931077e-05 -3590162809.51 +UniRef50_A3PHB1 0.000282865972439 1.01711841837e-05 -1.1009023236e+11 +UniRef50_Q8T137 Glutathione reductase 2.47083372516e-05 2.74129199397e-06 -8868365736.45 +UniRef50_P94357 UPF0750 membrane protein YxkD 0.000123248103717 5.35017271149e-05 -28157468118.6 +UniRef50_J2X5J3 8.656701238e-07 5.96094739784e-07 -108830890.589 +UniRef50_Q9RSY5 Thymidine kinase 1.78085265277e-07 0.000200502663909 80873490657.6 +UniRef50_F9YYP8 Pyridoxal kinase 7.51232532717e-06 7.56003279175e-05 27487962179.5 +UniRef50_Q0HDL5 LexA repressor 2.71502841277e-05 1.75759417293e-05 -3865279516.63 +UniRef50_G1FTZ5 Gp57 7.35095055468e-08 1.1241430419e-07 15706344.6278 +UniRef50_Q5QVL6 D erythrose 4 phosphate dehydrogenase 2.87020616154e-06 1.56148935472e-06 -528345034.674 +UniRef50_UPI0003C11E65 PREDICTED 1.19800171384e-06 5.33905138125e-07 -268103936.998 +UniRef50_A0A024F1P3 Membrane protein 9.24807478684e-07 6.4267487052e-07 -113900396.072 +UniRef50_UPI00036780D5 peptide ABC transporter permease 3.63602092308e-07 2.80630446978e-07 -33496671.3963 +UniRef50_UPI0003789F55 hypothetical protein 1.52277889728e-07 1.16564904591e-06 409110371.212 +UniRef50_F8I5D2 3.73706477959e-08 1.44868590244e-07 43398238.5144 +UniRef50_F0P5S5 Accessory Sec system protein translocase subunit SecY2 0.000117429628346 2.56164763503e-05 -37066096134.7 +UniRef50_A9M194 AraC family transcriptional regulator 1.91942028225e-06 3.34782423651e-05 12740683745.1 +UniRef50_A9C190 Potassium transporting ATPase A chain 3.20190825613e-07 5.13072833528e-05 20584114935.2 +UniRef50_S8VH52 3.23269025974e-07 4.55918139403e-07 53552074.879 +UniRef50_A4WU01 Polysaccharide export protein 3.64722274638e-05 1.29377448768e-05 -9501159420.95 +UniRef50_A6X187 Leucyl phenylalanyl tRNA protein transferase 3.0318842638e-07 8.91259578659e-07 237411540.62 +UniRef50_Q8RG83 Orotidine 5 phosphate decarboxylase 2.55651245226e-07 7.54271368688e-07 201299062.599 +UniRef50_D1ZR99 Catabolic 3 dehydroquinase 3.32767199175e-07 1.6669198008e-07 -67046603.9208 +UniRef50_A4WTH1 9.57905348971e-06 1.89011797994e-06 -3104117619.14 +UniRef50_U4Q3Y6 Carboxylesterase 1.16196847354e-07 2.29638682635e-07 45797860.9908 +UniRef50_UPI000299F85F ribokinase 6.31491108994e-08 1.30142341952e-07 27045989.4753 +UniRef50_O27507 2.22258976562e-05 6.60924140129e-06 -6304635768.03 +UniRef50_UPI00047263C5 hypothetical protein 9.9479596506e-08 1.23031849122e-06 456533538.748 +UniRef50_A6LGA4 Non canonical purine NTP pyrophosphatase 8.91839599951e-08 1.00074099436e-05 4004109539.9 +UniRef50_P22759 Bacterioferritin 7.19257972469e-07 1.53741909245e-06 330301684.102 +UniRef50_UPI0003B5D657 NAD dependent malic enzyme 1 1.29550330898e-07 5.85551840915e-08 -28661611.9742 +UniRef50_W4U517 PTS system 1.07766827986e-07 2.12859764118e-07 42427307.9518 +UniRef50_X0UC79 Marine sediment metagenome DNA, contig 1.36075545208e-07 1.74334548928e-06 648874599.841 +UniRef50_P56062 Citrate synthase 1.3483385012e-07 1.58325514648e-05 6337361233.71 +UniRef50_P37050 1.70892126497e-05 1.58666192294e-05 -493575966.683 +UniRef50_UPI0003840695 PREDICTED 1.38105092199e-06 1.50169683924e-07 -496921860.42 +UniRef50_A9EUD2 2.12977261213e-08 8.47491045166e-07 333544381.431 +UniRef50_Q9B0F8 DnaC 8.59070677453e-05 1.38972300884e-05 -29071255122.2 +UniRef50_B9KNG3 5.10600788578e-07 3.67875078469e-06 1279021031.0 +UniRef50_UPI000361064B hypothetical protein 1.07763301738e-07 3.1731219976e-07 84597461.5856 +UniRef50_P76298 Flagellar biosynthesis protein FlhA 3.80631142845e-05 7.80012191102e-06 -12217541389.9 +UniRef50_UPI00028A1A5C HAD superfamily hydrolase, partial 3.81488485513e-07 1.19305653981e-06 327639982.58 +UniRef50_UPI000470C144 tRNA dihydrouridine synthase 7.87905553304e-08 7.70875686992e-08 -687516.601011 +UniRef50_O59428 1.13108158144e-06 3.99142896727e-06 1154757340.07 +UniRef50_R5LUL0 Spore coat polysaccharide biosynthesis protein spsC 1.11352799069e-06 8.28471383495e-06 2895095725.67 +UniRef50_Q07X28 Hydroxylamine reductase 8.74975687224e-06 3.82974708205e-05 11928774712.2 +UniRef50_UPI0004702B05 integrase, partial 2.25897872189e-06 1.37998460376e-06 -354860711.96 +UniRef50_A6LTH9 2.83824051773e-06 1.32451746136e-05 4201407001.96 +UniRef50_O28994 Carbamoyl phosphate synthase large chain 3.95879071948e-05 0.000461174565857 1.70199707552e+11 +UniRef50_A6M0L2 Beta ketoacyl acyl carrier protein synthase I 6.64025621124e-06 1.59830751656e-05 3771810661.16 +UniRef50_J0SEV2 G5 domain protein 3.52931665289e-06 1.78226775303e-06 -705305079.574 +UniRef50_X8A0M6 1.33776936483e-05 6.52809788015e-06 -2765265865.59 +UniRef50_A6TVZ6 Metal dependent phosphohydrolase 2.83824051773e-06 6.73652252854e-06 1573784285.06 +UniRef50_Q169C1 2.94241340882e-06 2.25449069014e-07 -1096871844.88 +UniRef50_H9KBT1 7.45842352229e-08 2.14826545911e-07 56617541.7914 +UniRef50_D7I3U8 Dipeptide transport system permease protein 3.49468616108e-07 4.16251014161e-07 26960873.6062 +UniRef50_UPI00035FCD14 hypothetical protein 1.07663972604e-07 1.17417356986e-07 3937560.9625 +UniRef50_D9UU07 Radical SAM domain containing protein 1.63241227578e-06 8.62081090623e-06 2821302284.41 +UniRef50_A5G2W1 Carbohydrate ABC transporter substrate binding protein, CUT1 family 1.45430315596e-07 7.61275457121e-08 -27978378.6428 +UniRef50_UPI0002EE07FC hypothetical protein 4.73987436036e-08 1.0936994393e-07 25018534.0439 +UniRef50_P75995 1.20637898388e-05 3.37957755454e-06 -3505923066.42 +UniRef50_N4S0B6 Type 1V conjugative transfer system mating pair stabilization family protein 2.4185626762e-07 2.08577560381e-07 -13435022.488 +UniRef50_D8GPT5 Predicted aminoacid permease 2.5135343659e-06 5.62779026146e-06 1257263321.25 +UniRef50_UPI00047A1147 nucleoside triphosphate diphosphatase, partial 9.72665400358e-07 8.96010207788e-07 -30946641.9055 +UniRef50_B8GIV7 CRISPR associated helicase Cas3 8.82302985918e-07 2.53871312813e-07 -253705578.156 +UniRef50_C5BIJ8 Leucyl phenylalanyl tRNA protein transferase 9.05398084321e-08 1.72972504902e-07 33279091.1278 +UniRef50_UPI00046616FD 4 alpha glucanotransferase, partial 7.8970119451e-08 3.46638971304e-06 1367542858.25 +UniRef50_D9RCZ8 0.000184525643998 7.29177049855e-06 -71551489635.7 +UniRef50_Q51519 Anthranilate synthase, phenazine specific 6.35317413918e-06 2.08236527794e-06 -1724177946.0 +UniRef50_UPI0002559CB6 nucleoside triphosphate diphosphatase 9.14582280039e-07 1.7521070832e-07 -298493376.612 +UniRef50_Z5XN41 Diguanylate cyclase 4.77440390972e-08 5.27919795919e-06 2112002144.7 +UniRef50_D3A856 DNA gyrase, B subunit, C terminal domain protein 1.01171386051e-06 2.43788110412e-05 9433583878.38 +UniRef50_UPI00016C4069 transporter 3.07101452896e-07 2.55993414771e-08 -113645856.799 +UniRef50_X2H969 D 2 hydroxyglutarate dehydrogenase 1.75044792492e-06 1.05306477336e-05 3544674407.93 +UniRef50_A9M0U6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.49529057972e-07 0.000105349705462 42470602165.6 +UniRef50_Q6NCF3 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 2.15365618767e-06 0.000444317258033 1.78506872022e+11 +UniRef50_Q8CN93 Membrane protein 0.000117688374796 6.09235660517e-05 -22916649872.6 +UniRef50_Q6AAZ9 DNA integrity scanning protein DisA 2.06276496643e-06 5.44561143834e-05 21151838098.3 +UniRef50_Q55842 UPF0062 protein slr0519 2.06978826827e-07 7.10017158759e-07 203082747.575 +UniRef50_UPI00047D4A4F hypothetical protein 1.83433260313e-07 2.39649053723e-07 22695005.645 +UniRef50_B1ZS98 Polyribonucleotide nucleotidyltransferase 2.50058124e-08 8.98044110755e-08 26159989.4535 +UniRef50_D2N4J0 Sau1hsdS1 0.000104085122778 2.16805395542e-05 -33267741465.4 +UniRef50_UPI00026286DA sugar ABC transporter ATP binding protein 1.19729800084e-06 7.53174262817e-07 -179298203.051 +UniRef50_Q8CSR0 ABC transporter 0.000105629027881 5.63935023729e-05 -19876985835.5 +UniRef50_A3PNK2 OstA family protein 2.05676612335e-05 1.56805330192e-05 -1972993631.92 +UniRef50_V8G4T0 Sugar ABC transporter substrate binding protein 2.88910775359e-06 1.18187358362e-05 3605000435.81 +UniRef50_P62417 Phosphoglycerate kinase 1.42804882688e-07 2.04166383748e-07 24772390.9682 +UniRef50_C5BF52 Adenine deaminase 9.15415584082e-06 5.1227034625e-06 -1627546796.61 +UniRef50_A6LXY1 PAS PAC sensor hybrid histidine kinase 3.84272226826e-06 6.68424457461e-06 1147157424.47 +UniRef50_P77744 HTH type transcriptional regulator AbgR 2.91693286932e-05 1.21961066811e-05 -6852298011.14 +UniRef50_P21864 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 1.71818849762e-06 1.12316296738e-06 -240219108.342 +UniRef50_UPI00046EEC85 hypothetical protein 5.18488924431e-08 1.94089311602e-07 57424202.7007 +UniRef50_P37197 Probable cytochrome c peroxidase 1.75058074837e-05 2.15170087626e-05 1619371179.27 +UniRef50_UPI0004757670 3 phosphoshikimate 1 carboxyvinyltransferase 4.25705310328e-08 6.03287562878e-08 7169213.45337 +UniRef50_UPI0001BF6FB5 hypothetical protein SMAC_10438, partial 7.63915731118e-07 1.6806865008e-06 370111609.763 +UniRef50_UPI000375EC1F hypothetical protein, partial 4.27225766513e-08 1.35847077517e-07 37595503.7656 +UniRef50_UPI000476341B major facilitator transporter 1.49980391734e-07 1.6562263317e-06 608089969.682 +UniRef50_UPI000463A3EE hypothetical protein 5.6772810305e-07 1.08837759561e-06 210192589.234 +UniRef50_P34842 Cytochrome c oxidase subunit 3 7.53617671939e-07 2.73335263335e-07 -193895902.081 +UniRef50_UPI00026533A3 5.63782328225e-08 7.2977677582e-07 271859255.338 +UniRef50_Q9RTL7 Fosmidomycin resistance protein, putative 1.07341987354e-06 0.000170317927987 68326084788.9 +UniRef50_UPI0003514416 PREDICTED 8.72771219099e-06 2.90850682017e-06 -2349284617.88 +UniRef50_N9IA23 1.08906838666e-06 2.72427087213e-07 -329688113.902 +UniRef50_Q9RXT0 Phosphoribosylaminoimidazole succinocarboxamide synthase 2.97399608376e-07 0.000448614174803 1.80990983612e+11 +UniRef50_Q3IUV6 Thioredoxin domain protein 1.34711416884e-05 9.00993179516e-06 -1801045179.1 +UniRef50_Q05627 1.469154725e-06 1.14095314303e-06 -132499006.128 +UniRef50_A7X2Q3 N utilization substance protein B homolog 6.06330486314e-05 7.67751000156e-05 6516744229.05 +UniRef50_F8DIJ3 Acetyltransferase, GNAT family 5.02559585656e-05 3.78879746326e-05 -4993106885.98 +UniRef50_UPI00047D4833 hypothetical protein 2.61790042001e-08 4.00269138362e-08 5590571.05305 +UniRef50_UPI00037A95AF hypothetical protein 1.06226531703e-07 3.19483786463e-07 86094570.7074 +UniRef50_Q3J3X7 0.000132387453601 2.15941909487e-05 -44728599718.8 +UniRef50_UPI0004758995 hypothetical protein 3.483005933e-07 3.2354975104e-07 -9992218.74735 +UniRef50_Q5HME0 Probable DEAD box ATP dependent RNA helicase SERP1688 0.000206454340274 5.28303690403e-05 -62019882365.3 +UniRef50_M9RWN2 Chromosome partitioning protein ParA 9.31047042135e-08 6.28541806761e-07 216162528.85 +UniRef50_A0A024HNH0 4.89563015601e-06 9.84936204108e-07 -1578795137.99 +UniRef50_Q3J3X0 9.33182625375e-05 4.28272733204e-05 -20383831941.1 +UniRef50_UPI0002001DF1 superfamily II RNA helicase, partial 1.16764018316e-07 3.45178371476e-07 92213677.33 +UniRef50_UPI0003B3ECAB large mechanosensitive ion channel protein MscL 3.23393402553e-06 7.778216695e-07 -991562698.017 +UniRef50_A0A010AWY9 CSLREA domain protein 2.06276496643e-06 1.49619473811e-05 5207558231.58 +UniRef50_UPI000475CD3E hypothetical protein, partial 3.07619221852e-08 2.74847523127e-07 98540352.3674 +UniRef50_H9KRI1 1.82687712035e-06 8.67872991152e-07 -387161735.261 +UniRef50_Q2CG67 3.35159057983e-07 2.56548605175e-06 900410376.575 +UniRef50_A8IL90 Predicted protein 1.90694146156e-07 2.13878347521e-07 9359746.59319 +UniRef50_H9KH51 2.98835578895e-08 3.93310390022e-08 3814064.05883 +UniRef50_J9NXN3 2.30664202071e-07 1.90347954718e-07 -16276163.7924 +UniRef50_UPI00035E2C47 hypothetical protein 3.20974134219e-07 1.66219279978e-07 -62476433.7127 +UniRef50_B7MBY5 Putative N acetylmannosamine 6 phosphate 2 epimerase 2.90228934463e-05 2.50829376334e-05 -1590608510.36 +UniRef50_UPI0003B58132 hypothetical protein 1.66134263882e-07 2.13337791438e-07 19056643.3268 +UniRef50_B8J7M5 FHA domain containing protein 5.56574297819e-08 9.55729557795e-08 16114387.6638 +UniRef50_UPI000307F825 hypothetical protein 1.58648297374e-07 2.19619675484e-07 24614893.546 +UniRef50_A6UZY8 1.44151145681e-05 3.26798772262e-06 -4500231898.16 +UniRef50_UPI0003F490D8 hypothetical protein TREMEDRAFT_66895 4.96909919759e-08 1.51076461132e-07 40930558.0379 +UniRef50_R9SLB7 RNA methylase 2.60833065135e-05 2.51333366122e-06 -9515487276.57 +UniRef50_M4RYW8 Putative thioesterase 3.33677059278e-08 1.49850091015e-05 6036161108.68 +UniRef50_B2TRN5 Bifunctional protein FolD 4.28055966941e-06 1.00938176843e-05 2346883597.31 +UniRef50_F9YW81 Sugar ABC transporter permease 7.25730064477e-06 8.12963508282e-05 29890473120.4 +UniRef50_Q6FCZ3 Pseudouridine synthase 4.37242458129e-06 8.40542176787e-05 32168517679.0 +UniRef50_A4FBF7 Elongation factor P 2.89581685257e-07 2.87901060692e-06 1045384231.54 +UniRef50_F5M415 Periplasmic binding protein 7.17843357164e-06 3.13056577946e-06 -1634173900.63 +UniRef50_U9TNM9 2.36067059259e-07 2.14362424995e-07 -8762427.19819 +UniRef50_UPI0003797F94 membrane protein, partial 5.87800439099e-07 1.04875332767e-07 -194962791.584 +UniRef50_O83349 Serine hydroxymethyltransferase 3.3171414778e-06 6.67324212929e-05 25601526654.3 +UniRef50_Q65SJ3 1.11682253253e-06 6.19176282051e-06 2048815670.78 +UniRef50_Q5X9H5 DNA mismatch repair protein MutL 5.55962962344e-06 3.26716524713e-05 10945456325.6 +UniRef50_UPI00046BF5D1 PREDICTED 4.4607981119e-08 5.98573422312e-08 6156354.2117 +UniRef50_A9WVW5 1.40613824156e-05 1.94889095648e-05 2191159313.38 +UniRef50_UPI000378BFDC hypothetical protein 5.75501309685e-06 1.50161036537e-06 -1717150877.82 +UniRef50_G0FKS6 8.1262235892e-08 2.44768294624e-07 66009402.3551 +UniRef50_M9RJC1 4.7717567677e-07 6.14400162045e-07 55399208.6393 +UniRef50_V5VA04 Hemolysin type calcium binding domain containing protein 2.05789199777e-07 2.92492781909e-05 11725212909.4 +UniRef50_Q28TQ1 Type II secretion system protein E 9.63185998795e-05 1.62684823669e-05 -32317214765.2 +UniRef50_Q08WT9 1.51744877719e-06 2.20431791988e-06 277297501.736 +UniRef50_G0DVY4 Cell division protein FtsW 2.67305821545e-06 5.2214869336e-05 20000637095.8 +UniRef50_B3W763 Cellobiose PTS, EIIC 6.44738947052e-06 9.07731266315e-06 1061732265.65 +UniRef50_E3D8W4 Anaerobic ribonucleoside triphosphate reductase activating protein 9.28591065863e-05 4.64918861517e-05 -18719015879.2 +UniRef50_D9WSF3 Vegetative cell wall protein gp1 (Fragment) 2.47364894345e-08 3.62058689288e-07 136181111.49 +UniRef50_Q6AA77 Ornithine carbamoyltransferase 8.6561162204e-08 7.44304135163e-05 30013525497.0 +UniRef50_B2VDR3 High frequency lysogenization protein HflD homolog 6.17065823227e-05 1.39169534204e-05 -19293259632.6 +UniRef50_P77293 Bactoprenol glucosyl transferase homolog from prophage CPS 53 3.53725912068e-05 6.61891287945e-06 -11608212788.1 +UniRef50_P33073 L serine dehydratase, alpha chain 9.33956236055e-08 1.04518748299e-07 4490541.93486 +UniRef50_A1URA3 ATP dependent zinc metalloprotease FtsH 8.0795771326e-05 0.000100568055855 7982313897.57 +UniRef50_G7MD19 Polysaccharide biosynthesis protein 6.54647512657e-06 8.68495252532e-06 863329567.944 +UniRef50_P42505 Trans acting regulatory protein HvrA 7.22701121772e-05 0.000167819102434 38574299884.6 +UniRef50_C8WV62 Transcriptional regulator, MarR family 2.26491593311e-06 3.42578409497e-05 12915936426.5 +UniRef50_UPI0003C83EE0 PREDICTED 4.90868203282e-08 1.10259584914e-07 24696195.7375 +UniRef50_S6ARI5 8.19516347409e-07 1.02773856293e-06 84061863.5797 +UniRef50_C7RR12 AzlC family protein 2.72294495041e-07 1.4111148542e-07 -52960190.7806 +UniRef50_U5MRF4 Nitrite and sulphite reductase 4Fe 4S region 1.61779709512e-06 9.07432183606e-06 3010290539.77 +UniRef50_UPI00036A7350 hypothetical protein 2.71212034528e-07 2.21854883151e-07 -19926087.6913 +UniRef50_A1RLC1 AzlC family protein 6.67630234129e-06 2.76427493162e-06 -1579333471.26 +UniRef50_E8QBY5 Ribosomal RNA small subunit methyltransferase E 6.82014150316e-05 1.03295581091e-05 -23363578807.2 +UniRef50_F8H6V7 Cytochrome C oxidase assembly protein 2.07807943358e-05 5.38571498834e-06 -6215182451.45 +UniRef50_UPI0003798B2F hypothetical protein 3.92257755468e-09 2.496506516e-08 8495110.46662 +UniRef50_B2IQP4 Peptidase, U32 family 5.49716419596e-05 6.0388973229e-05 2187043111.59 +UniRef50_UPI00036CA0EA hypothetical protein 3.54707788955e-08 3.89766900173e-07 143033691.862 +UniRef50_C5N2R4 4.10907359878e-05 9.13121177628e-06 -12902452111.6 +UniRef50_F5SR33 1.23829062881e-07 1.94234902796e-07 28423701.5505 +UniRef50_UPI00047D1C2C sugar ABC transporter permease 2.88766832613e-06 1.36965985398e-06 -612838648.266 +UniRef50_Q8CVW1 Outer membrane protein C 2.13432753308e-05 5.35036542953e-06 -6456533982.23 +UniRef50_A5UMQ0 Cobalt precorrin 3B C17 methyltransferase, CbiH 3.69709723668e-05 3.56493659109e-06 -13486426580.8 +UniRef50_G8VAL6 Methyltransferase 3.49249961464e-05 0.000112046091711 31134732661.7 +UniRef50_A9G928 6.25382609059e-06 1.87502669965e-06 -1767775048.03 +UniRef50_UPI00037376DC hypothetical protein 2.18665915799e-08 3.42526042547e-08 5000385.31028 +UniRef50_UPI000375C11B hypothetical protein 1.0166978036e-06 9.16890832591e-07 -40293298.9656 +UniRef50_Z7FZL7 MFS transporter, ACS family, glucarate transporter 0.000130885473894 6.03645180008e-06 -50403082289.1 +UniRef50_A8TZF0 Putative translation initiation inhibitor 2.14037508404e-06 8.28933163977e-07 -529445196.33 +UniRef50_L7WZD3 Dihydrolipoyl dehydrogenase 0.000180312549162 6.93378911649e-05 -44801831245.6 +UniRef50_B3E602 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 8.29287035067e-08 2.93748774306e-08 -21620336.7663 +UniRef50_P65591 Transcription termination antitermination protein NusG 0.000289436228778 4.11556156615e-05 -1.00233930261e+11 +UniRef50_I2BLI3 Malonate utilization transcriptional regulator 1.69673362846e-05 3.22848089983e-05 6183851701.05 +UniRef50_P37147 UPF0716 protein FxsA 7.19653847967e-05 1.61093745608e-05 -22549756762.6 +UniRef50_Q7MW52 Fructose 1,6 bisphosphatase class 3 3.57753816084e-06 5.46183616362e-05 20605806778.4 +UniRef50_R9YQ76 Thioesterase superfamily protein 0.000108543941282 2.03828817876e-05 -35591701575.7 +UniRef50_D4HEH1 Sugar binding domain protein 3.49732796402e-06 7.30122357995e-05 28064021337.0 +UniRef50_I6U0M8 8.90903694864e-05 2.18955822568e-05 -27127360177.4 +UniRef50_G7SE40 DegV family protein 9.15967040298e-05 2.56054946702e-06 -35944988193.5 +UniRef50_Q5FS85 Guanylate kinase 1.17243272149e-07 3.02704731155e-07 74873066.8688 +UniRef50_Q5L287 ABC transporter 2.51657325899e-06 1.57719268409e-05 5351348902.49 +UniRef50_Q1LT82 D alanine D alanine ligase 3.38508301089e-05 6.79565132264e-06 -10922507680.4 +UniRef50_G7LZT8 Beta lactamase domain containing protein 9.40696554154e-06 4.8237775423e-06 -1850289237.33 +UniRef50_UPI00036D9B8C hypothetical protein, partial 1.69491675945e-08 2.80383614367e-08 4476843.63381 +UniRef50_Q3JQ05 4.48006483898e-07 1.45585310244e-06 406880047.573 +UniRef50_A6LXY4 Transcriptional regulator, TetR family 2.31586496233e-06 2.31655910057e-05 8417290258.63 +UniRef50_N8Z5H6 1.22757174995e-07 3.77264799525e-07 102747851.183 +UniRef50_B7MIH3 Glyoxylate hydroxypyruvate reductase A 2.27180375265e-05 8.68798181929e-06 -5664105657.14 +UniRef50_UPI0003595012 PREDICTED 4.05491718267e-07 2.33543254742e-07 -69417704.77 +UniRef50_Q8ZLB5 Cellulose biosynthesis protein BcsE 2.31359707405e-05 8.64330049016e-06 -5850868825.11 +UniRef50_A9BVK1 Trans aconitate 2 methyltransferase 2.4532162627e-05 4.94947080615e-06 -7905772994.75 +UniRef50_U6MWK3 7.95171241676e-08 2.79205033155e-08 -20830188.9997 +UniRef50_C6WDZ3 PE PGRS family protein 4.68292241956e-07 6.40241431337e-06 2395677900.09 +UniRef50_UPI0003C129CB PREDICTED 2.14510477708e-07 6.66898343518e-08 -59677007.6861 +UniRef50_UPI000471E8AE hypothetical protein, partial 2.909890064e-08 1.55049768261e-07 50847910.8495 +UniRef50_Q1IYH9 Sulfate adenylyltransferase 2.70032955147e-06 0.000244597251167 97656755665.4 +UniRef50_G7M254 2.48346045292e-06 7.49558866192e-06 2023457663.7 +UniRef50_P76403 3.32722759033e-05 0.000114099229532 32630833038.2 +UniRef50_UPI0001C396B6 Zn ribbon protein, possibly nucleic acid binding 1.00928886693e-05 4.81652197517e-06 -2130133982.72 +UniRef50_P94513 Sensor protein LytS 2.61091357223e-07 5.47138498953e-06 2103459476.86 +UniRef50_Q8TYY5 Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis 2.24129830003e-05 7.11591220217e-06 -6175615197.36 +UniRef50_UPI00035F8915 MULTISPECIES 1.00251488508e-06 3.35670304868e-07 -269213340.135 +UniRef50_R9ZEN0 Methyl accepting chemotaxis protein 6.03393784801e-06 6.8604219268e-06 333661764.708 +UniRef50_UPI0002000F87 oxidoreductase 6.63808890152e-07 2.61112630334e-07 -162573421.727 +UniRef50_P54919 Delta aminolevulinic acid dehydratase 5.99475255851e-07 3.28648900577e-06 1084780424.21 +UniRef50_P49078 Asparagine synthetase [glutamine hydrolyzing] 1 4.06593625662e-05 5.66697638354e-05 6463595462.09 +UniRef50_UPI000402C450 hypothetical protein 6.81684696913e-08 2.88410631788e-07 88914463.5138 +UniRef50_R7MP32 5.2992926421e-05 1.04955032726e-05 -17156731227.0 +UniRef50_D5APZ2 Transcriptional regulator, LysR family 1.48882236235e-05 1.97977679469e-06 -5211298389.24 +UniRef50_I0I0C0 6.83431409367e-07 1.41611087042e-07 -218739513.006 +UniRef50_UPI0003B76791 chemotaxis protein CheY 2.35824646383e-06 2.37528640029e-07 -856159809.602 +UniRef50_K0HKA6 Periplasmic binding protein 4.32473351485e-07 5.44668381229e-05 21814336134.4 +UniRef50_F4DNZ1 LysR family transcriptional regulator 5.43157802059e-06 2.1503643582e-06 -1324666220.53 +UniRef50_A3PRC4 Methyl accepting chemotaxis sensory transducer 1.98717080356e-05 1.16256553647e-05 -3329032653.69 +UniRef50_UPI000454B9A5 PREDICTED 6.73327479871e-08 3.20184356833e-07 102079297.329 +UniRef50_UPI000372C723 hypothetical protein 6.43797675803e-08 5.80139102105e-08 -2569974.73804 +UniRef50_Q1CSQ2 Glycine tRNA ligase beta subunit 5.42884931205e-07 4.23107346824e-05 16862193493.7 +UniRef50_A3DFY9 4.68915684868e-07 4.76521239978e-07 3070455.92856 +UniRef50_D7GHW6 Cytochrome d ubiquinol oxidase, subunit II 1.88115941288e-06 6.47790909825e-05 25392666819.1 +UniRef50_A5ULR2 UPF0272 protein Msm_0935 1.98845290565e-05 9.45948161065e-06 -4208719583.59 +UniRef50_D8JEL1 3.20809622254e-06 6.54125490092e-05 25112700924.5 +UniRef50_L9MZ90 1.17399844202e-07 2.47040549478e-05 9925934377.51 +UniRef50_UPI0003B53446 branched chain amino acid transporter AzlC 4.55751863798e-07 1.68663281458e-07 -115901183.664 +UniRef50_A5UNA6 Exodeoxyribonuclease, XthA 1.86722848983e-05 4.97724784029e-06 -5528854517.32 +UniRef50_Q6GHK8 ATP dependent DNA helicase RecG 0.000177893753039 8.24845543423e-05 -38517864316.4 +UniRef50_UPI0003B4E531 sodium 1.55081094869e-07 1.44598549527e-05 5775012745.71 +UniRef50_D7BD64 1.31480332354e-07 1.96629958119e-06 740739046.521 +UniRef50_A7HS58 Undecaprenyl diphosphatase 1.70747660365e-06 1.40348964988e-07 -632668658.546 +UniRef50_UPI000476E422 hypothetical protein 4.65736009819e-08 5.72379137337e-07 212274147.386 +UniRef50_UPI0003EC50DD PREDICTED 4.29498285769e-08 6.24797753045e-08 7884479.15333 +UniRef50_U3SR69 Pyrroline 5 carboxylate reductase 2.97683665452e-05 9.86888791207e-06 -8033663718.25 +UniRef50_Q8Y3Y6 Thymidylate kinase 1.12254992647e-07 2.96304386488e-06 1150898450.83 +UniRef50_R0VLG7 5.54203369098e-07 6.50017363458e-06 2400461161.43 +UniRef50_B0TVV8 Adenylosuccinate synthetase 1.70088420707e-07 1.18704482501e-07 -20744326.4056 +UniRef50_UPI0003810A5E hypothetical protein 8.11988226624e-08 5.84673906877e-08 -9176958.03422 +UniRef50_F2BFB8 BolA family protein 5.5562245059e-07 3.9186842261e-06 1357709308.18 +UniRef50_D8ICU4 Pyridine nucleotide disulfide oxidoreductase family protein 1.58424287166e-06 6.94371627541e-06 2163685181.23 +UniRef50_Q168U2 Polyhydroxyalkanoate synthesis repressor 0.00018682567673 7.99377569805e-06 -72196632960.8 +UniRef50_UPI00036FDE6E MULTISPECIES 4.56690367049e-08 1.63660701759e-07 47634683.1029 +UniRef50_F8IRK1 Replication initiator A protein 7.64952767111e-06 1.63200789285e-07 -3022322029.75 +UniRef50_B0UIS6 Glutathione S transferase domain 9.96193478007e-06 6.32526309644e-05 21514108000.0 +UniRef50_Q1YVL9 1.165931718e-06 2.80583644681e-06 662049662.915 +UniRef50_P0AG14 Probable protease SohB 4.43645858254e-05 1.12096301852e-05 -13385062449.0 +UniRef50_D3E3R8 Carbohydrate kinase PfkB family 1.04606618296e-05 3.16976785549e-06 -2943423366.68 +UniRef50_D5HIW6 Phosphate ABC transporter membrane protein 2, PhoT family 2.2469404098e-06 1.8553994404e-05 6583357807.51 +UniRef50_UPI00046EB4A8 hypothetical protein 2.46106769669e-07 1.82002129388e-07 -25879829.9338 +UniRef50_A5IU36 9.5518978364e-05 1.20674592009e-05 -33690402351.4 +UniRef50_M4XIN2 2.22856296256e-06 1.14686099098e-06 -436696359.903 +UniRef50_E3H779 Transcriptional regulator, XRE family 4.10310857448e-06 2.64080366452e-05 9004773174.39 +UniRef50_M1MDC6 Transcription termination factor Rho 4.30526166203e-06 9.09743452732e-06 1934658992.29 +UniRef50_F6D6V6 Cobalamin biosynthesis CbiM protein 1.17110853981e-05 6.15008310206e-06 -2245044868.08 +UniRef50_P0A1H0 DNA polymerase III subunit epsilon 4.78076789886e-05 7.44495895456e-06 -16294925384.0 +UniRef50_UPI0003B2F0C5 ABC transporter ATP binding protein 4.9762028199e-07 1.92760907899e-07 -123075470.366 +UniRef50_Q6FFD2 Sensor protein 1.73767186165e-06 8.85291032232e-05 35038765891.3 +UniRef50_UPI0003684932 amino acid ABC transporter substrate binding protein 7.50796697288e-08 2.31112611087e-07 62992413.1657 +UniRef50_UPI0002F69D2E hypothetical protein 3.566649805e-07 1.45880220871e-06 444946323.773 +UniRef50_UPI000350C2AA PREDICTED 2.58873824238e-07 2.24555399791e-07 -13854769.0837 +UniRef50_UPI00036F359E hypothetical protein 4.72610270888e-07 1.1122557761e-07 -145895435.365 +UniRef50_UPI00021977C8 Appr 1 p processing domain protein 1.44985907041e-07 1.56184631342e-06 572003932.888 +UniRef50_P25539 Riboflavin biosynthesis protein RibD 2.88500159525e-05 7.33306655177e-05 17957384068.4 +UniRef50_Q492E3 Probable malate 4.4623910839e-08 1.44561288878e-07 40345945.8839 +UniRef50_Q56998 UvrABC system protein B 2.44790219358e-06 2.25325914776e-05 8108435530.8 +UniRef50_Q8FSD6 Uroporphyrinogen decarboxylase 1.06648569457e-07 1.16106873041e-07 3818433.2233 +UniRef50_W7SQL2 LigA protein 3.23364339073e-07 1.60498209337e-06 517404814.629 +UniRef50_Q9K706 Gluconeogenesis factor 0.000243832938128 6.70065831023e-05 -71386969427.4 +UniRef50_Q6N0X7 Short chain dehydrogenase 4.13869016037e-05 2.5417544708e-05 -6447025344.84 +UniRef50_I1B7Q6 1.73956676891e-06 3.44727671428e-06 689423460.903 +UniRef50_UPI00040FD25C 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.65330679976e-07 1.04640673109e-07 -24501300.5223 +UniRef50_Q9RZB7 Glycosyltransferase 4.33696543761e-06 0.00057416123176 2.30045048844e+11 +UniRef50_K2EHC8 3.01868660091e-07 3.63345258958e-07 24818857.3653 +UniRef50_W4LZ78 1.01496688509e-07 2.11114493421e-07 44254053.0047 +UniRef50_D7CU09 ABC transporter related protein 2.2195756869e-06 0.00040165132865 1.6125550025e+11 +UniRef50_K2EHC4 7.69025043084e-08 8.88506035955e-07 327654305.221 +UniRef50_UPI0003802618 hypothetical protein 2.12301214723e-07 9.08337339669e-08 -49037912.5548 +UniRef50_UPI00031E0792 hypothetical protein 2.48374813677e-07 3.04509564278e-06 1129070518.33 +UniRef50_UPI000374F92F hypothetical protein 4.58973050115e-08 1.07735213938e-07 24964722.6701 +UniRef50_Q9RY24 Protein GrpE 3.97353672473e-06 0.000305262098793 1.21633889733e+11 +UniRef50_F9V983 16S rRNA methyltransferase 2.44039875685e-05 3.40519355921e-05 3894995010.76 +UniRef50_A9VN98 2 C methyl D erythritol 4 phosphate cytidylyltransferase 6.17239616292e-07 2.75567687578e-06 863313363.232 +UniRef50_M1VMH5 4.89259683473e-06 8.01883374738e-07 -1651471222.5 +UniRef50_B3QSU1 Cytidylate kinase 8.42850121746e-08 2.15139230308e-07 52827453.6221 +UniRef50_UPI00037A45FC MULTISPECIES 9.74593275058e-08 2.04817326203e-07 43341741.5048 +UniRef50_Q9RWU7 Purine pyrimidine phosphoribosyltransferase related protein 2.11279471374e-06 8.13180252886e-05 31976123540.6 +UniRef50_Q56114 Aspartate aminotransferase 2.89341526546e-05 1.87943622966e-05 -4093557796.74 +UniRef50_UPI000360A2CC MULTISPECIES 1.01744338675e-06 1.272543476e-06 102987036.46 +UniRef50_UPI0001FFF9AA integral membrane protein 1.53930089018e-06 1.53618445328e-07 -559417007.222 +UniRef50_Q8EQK8 Choline ABC transporter ATP binding protein 0.000213341364021 2.75005555182e-05 -75026214915.8 +UniRef50_Q6LI26 Glutathione peroxidase 1.41960518512e-05 3.66095089089e-06 -4253149537.9 +UniRef50_U1S9N3 3.00158589901e-08 1.53125929357e-08 -5935888.93553 +UniRef50_U3SQV1 6.06889404617e-05 3.1556847819e-05 -11760983290.8 +UniRef50_Q3JFY3 200 kDa antigen p200, putative 1.41553736446e-07 2.2165109453e-06 837685687.801 +UniRef50_UPI000471C806 molybdenum cofactor biosynthesis protein MoaE 6.05118962841e-07 4.0901645573e-07 -79168988.5691 +UniRef50_UPI0003680F4C hypothetical protein 9.95381293513e-07 1.56813430219e-07 -338540136.797 +UniRef50_A6LWT3 3.18754396167e-06 2.45837998826e-05 8637931076.85 +UniRef50_UPI0004785ED6 hypothetical protein 6.94512828564e-08 3.7654245073e-07 123976472.903 +UniRef50_B7UZU0 Na translocating NADH quinone reductase subunit D 1.48171884257e-05 5.88590673462e-05 17780246974.8 +UniRef50_X8AWD6 UvrABC system A domain protein 1.27207238108e-07 2.57766253756e-07 52708276.7564 +UniRef50_W0CYP1 Peptide deformylase 2.81145635437e-07 5.29452252023e-07 100244428.181 +UniRef50_G2KWZ9 ATP dependent RNA helicase RhlB 7.13702114467e-06 5.52514329134e-06 -650734869.355 +UniRef50_UPI00037A3CF4 hypothetical protein 2.03365995551e-07 3.67876132059e-07 66414760.8747 +UniRef50_UPI000255CC88 transcriptional regulator 7.24530425311e-08 3.69707503287e-07 120005273.53 +UniRef50_A1VM60 NADH quinone oxidoreductase subunit A 1.59831267382e-07 3.11244648788e-06 1192006997.18 +UniRef50_K0VGX6 Phenol hydroxylase 3.83414225869e-08 5.28105382462e-08 5841359.54768 +UniRef50_Q46WJ3 Shikimate kinase 1.76304802857e-07 1.83659885933e-07 2969337.2948 +UniRef50_B7H076 Glycosyl transferases group 1 family protein 5.62083580112e-06 7.24390770007e-05 26975343924.3 +UniRef50_G0LRQ0 Serine aspartate repeat containing protein D 3.52680774356e-07 5.45200071144e-07 77722402.5908 +UniRef50_UPI0004774AD6 adenosylcobinamide kinase 1.0407317639e-06 1.74729834443e-07 -349615605.961 +UniRef50_B6TG94 Seed specific protein Bn15D17A 1.58848859395e-06 4.88952867194e-07 -443896065.714 +UniRef50_G8WCZ8 Crispr associated helicase Cas3 7.92589212031e-07 9.95889215841e-08 -279772721.323 +UniRef50_UPI00037A187F DNA invertase 3.20980636282e-06 7.14589750543e-07 -1007349566.13 +UniRef50_B1K1J6 Inner membrane translocator 9.92116305348e-05 2.7564065215e-05 -28925001334.1 +UniRef50_D2ZUL4 1.30167582364e-05 3.91747097732e-07 -5096871923.0 +UniRef50_P69435 Poly beta 1,6 N acetyl D glucosamine export protein 2.63291918326e-05 8.00734767099e-06 -7396753322.35 +UniRef50_UPI000395E0BE TetR family transcriptional regulator 9.88500515826e-07 1.98643625526e-07 -318874919.248 +UniRef50_B1TBD8 1.74503795997e-06 3.06124625344e-06 531369439.766 +UniRef50_T0PPT5 3.51810903721e-07 2.81447424638e-07 -28406599.9628 +UniRef50_B9NWB2 Proline dehydrogenase transcriptional activator 9.03066076255e-07 1.83235899391e-06 375166954.564 +UniRef50_UPI0002D562AA peptidase 3.72898109644e-07 3.67795944005e-07 -2059806.87908 +UniRef50_Q9I7C4 DNA polymerase III subunit beta 4.27236383984e-05 2.3846751409e-05 -7620830923.07 +UniRef50_A9I3J3 TonB dependent outer membrane receptor 4.57003959482e-06 3.71786323606e-06 -344034053.411 +UniRef50_UPI00046FA567 phytoene dehydrogenase 1.60859005829e-07 5.18358239027e-08 -44013996.4084 +UniRef50_Q65I56 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.79656887758e-07 2.09742172815e-07 -108967882.649 +UniRef50_A6LQ20 Efflux transporter, RND family, MFP subunit 4.31193963246e-06 6.29086901818e-06 798918077.21 +UniRef50_L7VT83 Chemotaxis protein 2.4209135047e-06 1.59479453032e-05 5461028732.4 +UniRef50_P20582 PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III 8.52857991627e-06 1.86515813799e-06 -2690105141.27 +UniRef50_A6KZR2 Phosphopantetheine adenylyltransferase 1.22817373064e-07 6.17215247028e-05 24868154050.1 +UniRef50_UPI00047AB6F5 imidazoleglycerol phosphate dehydratase 8.12856384076e-07 1.45222711593e-07 -269531906.368 +UniRef50_B0CC69 Biotin synthase 6.98703207287e-08 4.12834686329e-07 138458923.039 +UniRef50_A0A011QDW9 Hemolysin, chromosomal 6.41481851694e-07 4.40572578669e-07 -81109538.9542 +UniRef50_Q4JV87 LexA repressor 1.0659224213e-07 1.41994007971e-07 14292127.2985 +UniRef50_B0VLK5 Lipoprotein 4.43669852339e-06 0.000155852694677 61128495730.6 +UniRef50_P77360 1.77059313482e-05 2.1271311299e-06 -6289352821.5 +UniRef50_P40876 9.47127930449e-06 1.36184168126e-05 1674250303.12 +UniRef50_Q73NX5 Ribonuclease 3 1.14558512826e-07 1.71662051965e-07 23053399.4896 +UniRef50_X3WN19 5.45928050509e-07 1.07697579787e-06 214390492.298 +UniRef50_D4HD90 3.40488450495e-06 6.93359654316e-05 26617186435.5 +UniRef50_F4H6S8 Binding protein dependent transport systems inner membrane component 1.94580406623e-06 1.38110232183e-05 4790134574.32 +UniRef50_H4FT59 Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein 7.67552210164e-05 2.73920237106e-05 -19928528506.9 +UniRef50_H8H0A6 6.76631962682e-06 0.000196893642939 76756733545.7 +UniRef50_Q5XDJ2 Bifunctional protein GlmU 3.7234297705e-08 2.500673955e-05 10080495680.6 +UniRef50_P75990 Blue light and temperature regulated antirepressor YcgF 3.7424596613e-05 3.08930663933e-05 -2636858900.58 +UniRef50_B9DX64 ATP synthase subunit delta 2.89631193489e-06 5.12109893401e-06 898173812.751 +UniRef50_UPI000365E273 hypothetical protein 7.79160947531e-07 3.31486338912e-06 1023694192.24 +UniRef50_Q97S57 Translation initiation factor IF 2 5.71825699288e-05 6.05391914705e-05 1355109306.76 +UniRef50_UPI00016ABA18 sugar ABC transporter ATP binding protein 6.49995302299e-08 6.77401712709e-08 1106430.4197 +UniRef50_A8IC84 Lipoprotein 1.48673673513e-07 9.21639581202e-08 -22813665.5563 +UniRef50_B7I2S0 Exodeoxyribonuclease X, putative 8.21111998078e-06 0.000101340932737 37597648241.0 +UniRef50_Q49WD6 NAD kinase 0.000173415412865 2.23478124547e-05 -60987844093.4 +UniRef50_UPI00034A3652 hypothetical protein 2.58892129062e-07 8.72288904784e-08 -69302555.9612 +UniRef50_Q58036 3.77181672284e-05 8.85256171839e-06 -11653399165.2 +UniRef50_UPI0003B7A911 ABC transporter permease 2.72551153843e-07 4.45676821321e-07 69892956.4517 +UniRef50_A6M1F1 Single stranded DNA specific exonuclease RecJ 1.61989611535e-06 5.53490513765e-06 1580537184.87 +UniRef50_Q5WY31 NAD transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II) 3.58941938425e-07 1.81115347188e-07 -71790777.06 +UniRef50_U6HSW1 Glutamate synthase 9.31146375686e-08 1.89906645069e-07 39076121.1994 +UniRef50_Q8F498 Biotin synthase 4.61994385683e-08 1.6807784633e-07 49203808.8298 +UniRef50_Q8DRX4 6.28163897327e-05 6.97598516207e-06 -22543456564.0 +UniRef50_P0AEB1 Sulfate transport system permease protein CysW 7.7116730414e-05 2.34861917266e-05 -21651306588.8 +UniRef50_R9SLZ9 Energy converting hydrogenase B subunit O EhbO 2.87185229938e-05 1.77545113341e-06 -10877248738.7 +UniRef50_Q0AYL3 Chemotaxis response regulator protein glutamate methylesterase 1 1.99182136841e-07 5.84780725883e-08 -56803957.372 +UniRef50_A4VU31 Predicted membrane metal binding protein 5.68038595817e-05 2.63890597453e-05 -12278827925.5 +UniRef50_M1MHF4 YibE F family protein 5.20071649111e-06 1.1408993239e-05 2506357507.25 +UniRef50_P29976 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 8.18827605803e-06 3.18891603242e-05 9568337820.82 +UniRef50_A4WT17 3.71316568208e-05 5.82861918147e-06 -12637420426.5 +UniRef50_Q3IYW4 0.000220436616711 4.55501344774e-06 -87154052402.4 +UniRef50_UPI00016C4263 multi sensor signal transduction histidine kinase 2.67368124978e-07 6.47279029593e-08 -81808344.3042 +UniRef50_UPI0004669627 hypothetical protein 7.55489930495e-07 6.27031292647e-07 -51860328.464 +UniRef50_UPI000376E080 hypothetical protein, partial 2.58621246147e-06 5.43635423171e-07 -824613415.601 +UniRef50_UPI0003B639BB hypothetical protein 2.42900982856e-08 7.11194051172e-07 277311555.039 +UniRef50_Q5LUP8 Endoribonuclease L PSP family protein 1.55557431819e-06 4.87968574133e-07 -431005539.873 +UniRef50_N2DBA0 2,3 cyclic nucleotide 2 phosphodiesterase 8.27670381379e-06 3.65152031161e-06 -1867243337.21 +UniRef50_S5KKJ7 Cell wall surface anchor protein 1.45876429746e-07 1.94959914292e-05 7811878877.91 +UniRef50_T0M6P4 Blastn match against entry EMBL 6.21242815114e-06 7.65292751672e-07 -2199075404.63 +UniRef50_B2TQI3 Undecaprenyl phosphate glucose phosphotransferase 4.43789338149e-06 1.05239442004e-05 2457013399.84 +UniRef50_D3E1Y0 Fumarate hydratase FumA2 4.51951073802e-05 2.03666693245e-06 -17423592022.4 +UniRef50_A4VRL6 Predicted Zn dependent peptidase 5.79718390169e-06 3.20158786789e-06 -1047873970.39 +UniRef50_D5VDZ2 1.85435434152e-06 4.0239806887e-07 -586172564.776 +UniRef50_UPI000328A627 PREDICTED 1.96456828615e-07 5.69158103916e-07 150464078.398 +UniRef50_F3U2B2 Transcriptional regulator, LysR family protein 1.4572115411e-05 6.46248318541e-06 -3273958045.85 +UniRef50_D3QEV8 ABC transporter, ATP binding protein 9.63458880402e-05 1.64208908989e-05 -32266702135.9 +UniRef50_UPI00035ED201 hypothetical protein 1.25042849789e-07 7.11893739312e-07 236918905.571 +UniRef50_G8B0Y4 5.05571370728e-07 6.91814235256e-07 75188529.8669 +UniRef50_A5UK70 Fumarate reductase, iron sulfur protein 4.44421792101e-05 2.70624926699e-06 -16849307075.5 +UniRef50_M1MGY4 Drug resistance transporter, EmrB QacA subfamily 4.13014083503e-06 1.24370545861e-05 3353603018.6 +UniRef50_Q58691 3.1943546441e-05 9.40443079037e-06 -9099317574.2 +UniRef50_K7RP68 Molybdopterin biosynthesis protein 1.00508630937e-07 4.50518907081e-07 141303443.588 +UniRef50_X1ABV5 Marine sediment metagenome DNA, contig 4.42704831194e-07 6.08497253615e-07 66932435.4332 +UniRef50_UPI0004408C74 beta subunit of citrate lyase 7.85031511446e-07 3.4396727377e-07 -178063045.217 +UniRef50_P37369 Superoxide dismutase [Fe] 1.33445575788e-07 1.16760229357e-07 -6736079.10642 +UniRef50_A6LQR1 S layer domain protein domain 3.03884949952e-06 1.54676403163e-05 5017655371.16 +UniRef50_UPI00037FF171 hypothetical protein 2.87975798482e-08 5.73946785666e-08 11544999.6785 +UniRef50_Q03CA4 Ribose import ATP binding protein RbsA 1.76052902248e-06 1.28975996315e-06 -190055246.238 +UniRef50_A0A035W1W9 Replication initiation protein 1.13691607499e-06 5.27716672912e-07 -245941274.336 +UniRef50_A4WXQ6 1.81922005014e-05 1.29824186002e-05 -2103252884.73 +UniRef50_D9X0C7 Phosphatase 3.81470391213e-08 4.09788202091e-07 150036098.041 +UniRef50_F8KS43 GTP pyrophosphokinase 9.90568220772e-07 3.92702091567e-05 15453960789.8 +UniRef50_B9KQA0 9.18516658134e-06 1.0620906196e-05 579625700.945 +UniRef50_UPI0003823562 hypothetical protein 2.57000819506e-08 4.52571513517e-08 7895428.90945 +UniRef50_UPI000455DD45 ribosomal protein L17 3.29565939363e-07 4.70889100584e-07 57053894.4151 +UniRef50_A5UJI1 Homoserine dehydrogenase, ThrA 2.93036914689e-05 4.85116526038e-06 -9871784896.61 +UniRef50_R4Q226 APC family amino acid polyamine organocation transporter 0.00020368330451 8.9781248391e-05 -45983657790.6 +UniRef50_Q1WVB2 Aspartate carbamoyltransferase 5.35523054843e-06 3.41406595601e-06 -783671966.728 +UniRef50_C0DVB0 4.65965291675e-07 7.10555888546e-07 98744225.421 +UniRef50_O87388 Sarcosine oxidase subunit beta 5.0210180816e-06 3.46892517522e-06 -626598952.627 +UniRef50_UPI000470EA5E 2 oxoglutarate dehydrogenase, partial 2.99496806379e-08 5.60109423176e-08 10521251.1477 +UniRef50_H0YYM6 1.46873196033e-07 6.69845746637e-07 211130436.274 +UniRef50_UPI0003613AC8 MFS transporter 9.31354014233e-07 2.87164772411e-07 -260067102.014 +UniRef50_D8JND0 Universal stress family protein 1.54075913818e-06 4.94791442327e-05 19353314332.8 +UniRef50_U1MD60 Nucleotide binding protein 1.6126604712e-07 6.10085428524e-07 181193891.906 +UniRef50_Q2NGD5 Polyphosphate kinase 3.1843625763e-05 5.4412936095e-06 -10658945483.4 +UniRef50_A4CBI0 1.956776468e-07 8.68374286781e-06 3426736090.0 +UniRef50_T8XWN9 1.84246632608e-06 5.74295629588e-07 -511976072.377 +UniRef50_D8HJF1 1.08076739377e-07 2.00993222465e-07 37511524.4361 +UniRef50_M9VHP6 Membrane associated protein 2.29242503354e-06 5.02977134367e-05 19380324019.5 +UniRef50_UPI00035D007C hypothetical protein 2.37289501883e-08 2.44924446344e-07 89299336.1722 +UniRef50_A4WWG0 FAD dependent oxidoreductase 5.4385377167e-05 1.51227158009e-05 -15850818200.5 +UniRef50_P0AFR9 Inner membrane ABC transporter permease protein YdcV 2.89922850061e-05 1.17154720605e-05 -6974861396.47 +UniRef50_F2V5D2 PE PGRS family protein 1.07815504132e-06 3.25484974845e-06 878758364.316 +UniRef50_A0QWW2 Glyceraldehyde 3 phosphate dehydrogenase 1.01269785731e-06 0.000383281786669 1.54326722123e+11 +UniRef50_Q6A7C7 Conserved phage related protein 2.70922958506e-06 4.15755844177e-05 15690824389.7 +UniRef50_D8JF19 Subtilisin like serine protease 5.34430375889e-07 6.9512553291e-05 27847314677.6 +UniRef50_UPI000363C5FE hypothetical protein 1.8407117615e-07 1.56163566141e-07 -11266644.6255 +UniRef50_X5Q8M2 3.18240365921e-06 2.55228738558e-06 -254385672.061 +UniRef50_C6S6G3 Putative phage associated protein 4.49224047893e-08 1.32897681949e-06 518388524.334 +UniRef50_B7LF20 4 deoxy L threo 5 hexosulose uronate ketol isomerase 1.98119180787e-05 2.22390824303e-06 -7100495399.82 +UniRef50_O52177 GTP pyrophosphokinase 4.65401729743e-08 2.41453589521e-08 -9041061.23603 +UniRef50_UPI0002B4176A 6.8035608024e-08 7.35344421944e-08 2219946.83287 +UniRef50_A8FCN2 N acetyldiaminopimelate deacetylase 2.98377990454e-07 1.4477365658e-05 5724231317.11 +UniRef50_E6MVH5 Periplasmic binding family protein 7.15280731734e-08 2.6424037078e-05 10638831266.9 +UniRef50_UPI000287C383 tRNA 2 selenouridine synthase 4.08570103445e-07 2.1126082775e-07 -79656175.8552 +UniRef50_A5IVH0 Zn dependent protease like protein 8.4437073772e-05 2.60816981716e-05 -23558781230.9 +UniRef50_B1B3N7 Truncated replication protein RepA 6.86598711068e-07 9.10568255969e-08 -240427567.285 +UniRef50_UPI000287D657 exodeoxyribonuclease III 3.74884915643e-07 5.12804488676e-07 55679824.0969 +UniRef50_D0IXB3 Pirin like protein 5.65915572138e-08 1.04493625766e-07 19338652.899 +UniRef50_UPI0003055179 hypothetical protein 8.9102924825e-07 2.51725755501e-07 -258094665.159 +UniRef50_R9DJ31 8.54387606928e-05 2.68469731995e-05 -23654223613.1 +UniRef50_M1MFG9 Spermidine putrescine transport system permease protein PotC 2.88580987542e-06 1.71190246186e-05 5746123453.02 +UniRef50_A4WWW0 2.00550013867e-05 7.4138084986e-06 -5103404693.81 +UniRef50_F0SXK4 Cyclopropane fatty acyl phospholipid synthase 5.87468382401e-06 7.61654774908e-06 703211841.625 +UniRef50_UPI0002B483E1 PREDICTED 8.89997418119e-07 2.05555491511e-07 -276317604.819 +UniRef50_Q3HKK2 Mandelate racemase muconate lactonizing enzyme 5.71999984406e-05 7.51526710911e-06 -20058335738.7 +UniRef50_Q2FWE1 Release factor glutamine methyltransferase 0.000199268340236 6.55541115868e-05 -53982074963.7 +UniRef50_Q7WCS7 Integral membrane component of multidrug efflux system 2.36018661833e-06 1.28868005765e-06 -432580347.411 +UniRef50_F0VCY6 1.89798803485e-08 5.23998013185e-09 -5546966.32502 +UniRef50_B1I3R5 Adenylate kinase 9.34499473876e-08 2.53027713417e-07 64423502.3853 +UniRef50_G0LRB5 Exotoxin 8.11678016393e-05 1.67374041006e-05 -26011342136.3 +UniRef50_P64613 Cell division protein ZapE 2.36308489721e-05 6.01100459804e-06 -7113347393.63 +UniRef50_UPI0003457696 UDP pyrophosphate phosphatase 1.47573942925e-06 1.19351425601e-07 -547590481.826 +UniRef50_A0LNI2 tRNA N6 adenosine threonylcarbamoyltransferase 1.23578854448e-07 9.26006615371e-08 -12506276.6233 +UniRef50_UPI00037A37E6 hypothetical protein 9.35765046615e-08 1.68825044609e-07 30378758.9802 +UniRef50_A8AQN0 0.000105958135006 9.93207149997e-07 -42375629440.0 +UniRef50_UPI00036DA784 hypothetical protein 2.02300200628e-08 3.31397476964e-07 125622120.805 +UniRef50_A1RBI9 Oxidoreductase, short chain dehydrogenase reductase family 6.7476328262e-05 1.04039147066e-05 -23040833709.6 +UniRef50_UPI0003B44831 signal peptidase 1.86874251907e-06 5.10504489882e-07 -548337359.839 +UniRef50_P63388 Probable phospholipid import ATP binding protein MlaF 1.73325454046e-05 0.000106321929777 35926106493.7 +UniRef50_S7NJS1 1.57861355759e-05 1.60499569961e-06 -5725100190.22 +UniRef50_F8IS38 Xaa His dipeptidase 2.05678140304e-06 1.53810783964e-06 -209394882.385 +UniRef50_F3NI62 2.58409482373e-06 2.6586885112e-06 30114386.9991 +UniRef50_Q3J2S3 2.93512741231e-05 8.21039200228e-06 -8534833539.96 +UniRef50_UPI00047E9C04 hypothetical protein 1.39329352406e-06 1.1263096912e-06 -107784649.586 +UniRef50_P78016 DNA topoisomerase 4 subunit B 2.5640192364e-08 9.69480056424e-08 28787839.2658 +UniRef50_Q82IE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.3545585259e-07 6.36038617945e-07 40606496.6631 +UniRef50_E4U760 Carbohydrate ABC transporter membrane protein 2, CUT1 family 8.27215461305e-07 0.000377707885084 1.52151351173e+11 +UniRef50_Q15TJ8 PKHD type hydroxylase Patl_2273 2.03677049479e-07 2.78529658499e-07 30218916.8062 +UniRef50_A0A013SUS4 NMT1 like family protein 1.81462814707e-07 2.41427839912e-07 24208616.5289 +UniRef50_R7FRD0 1.88471294548e-06 2.3963247919e-07 -664139171.649 +UniRef50_L0EBI3 Transcriptional accessory protein 3.16277061713e-05 4.7146388675e-06 -10865135531.0 +UniRef50_E6Q8B0 5.5587413815e-06 3.81612029945e-06 -703517515.189 +UniRef50_UPI00036A5069 hypothetical protein 8.10755840567e-08 2.85293459895e-07 82445262.5109 +UniRef50_P0A0Y5 Phosphoheptose isomerase 1.28138399555e-05 9.43826696134e-05 32930337495.0 +UniRef50_UPI0003673DF5 hypothetical protein 7.43855509084e-08 2.88043994445e-07 86256535.5398 +UniRef50_Q99ZE5 Stress response regulator gls24 homolog 4.52866143683e-06 2.62263027854e-05 8759604072.43 +UniRef50_UPI0003B50954 aspartyl glutamyl tRNA amidotransferase subunit B 3.5840060619e-07 3.65763753756e-07 2972593.02838 +UniRef50_Q881Q1 Macrolide export ATP binding permease protein MacB 2 2.23773806305e-08 3.87805896652e-05 15647165916.0 +UniRef50_A9W856 Integrase, catalytic region 4.43187411452e-06 1.82058133662e-07 -1715702862.58 +UniRef50_Q5F5Y6 Lipid A disaccharide synthase 1.72368031437e-06 1.48096691416e-05 5282974272.68 +UniRef50_UPI00035E69D2 hypothetical protein 2.25877661461e-07 4.96295620688e-07 109171048.541 +UniRef50_W5BGQ3 2.3608436718e-07 3.47127582927e-07 44829508.8506 +UniRef50_UPI000373B42C hypothetical protein 9.92699529428e-08 1.97222787812e-07 39544761.4531 +UniRef50_K2FSL8 1.01529305495e-06 3.14728377367e-06 860710815.615 +UniRef50_UPI000477E8B8 hypothetical protein 3.72390132826e-07 4.86868472866e-07 46216310.6814 +UniRef50_Q9AGS1 Xanthine phosphoribosyltransferase 4.10169945387e-07 9.0243148315e-07 198732023.523 +UniRef50_F9FGU0 1.9933277572e-08 2.91892474162e-06 1170358428.66 +UniRef50_F8IRL8 Phosphate starvation inducible protein PhoH 0.000107746323808 1.5781052303e-05 -37127508647.4 +UniRef50_P37169 Protein MurJ homolog 2.35462686186e-05 4.94146045148e-05 10443364641.5 +UniRef50_J3P2Z6 1.32142119782e-06 8.02509909447e-07 -209490854.874 +UniRef50_B7NMR0 Endonuclease 8 4.1643522863e-05 2.00772766633e-05 -8706558238.42 +UniRef50_M3AAL9 Secretory lipase 1.61012105199e-07 2.88100780162e-06 1098095640.75 +UniRef50_R7FPS5 DEAD DEAH box helicase 2.36750500858e-06 1.11245969258e-05 3535345468.58 +UniRef50_Q8R9G3 Phospho N acetylmuramoyl pentapeptide transferase 6.08573365739e-08 2.2089740975e-07 64610141.4537 +UniRef50_O86489 Serine aspartate repeat containing protein E 0.000163301316185 2.28892132239e-05 -56686089015.6 +UniRef50_UPI00047946DB hypothetical protein 1.5691474296e-06 7.98009612077e-08 -601267445.625 +UniRef50_I7EZZ6 1.40713945468e-05 1.67966529658e-06 -5002693161.92 +UniRef50_Q2G5Y5 NADH quinone oxidoreductase subunit C 1.37856831377e-07 1.16466096931e-07 -8635701.98968 +UniRef50_A3PRZ2 Transcriptional regulator, LysR family 8.55940720262e-05 7.71081712194e-06 -31442425739.9 +UniRef50_O94524 Glutathione S transferase omega like 2 3.45131676658e-06 2.05756329669e-07 -1310272575.89 +UniRef50_P21399 Cytoplasmic aconitate hydratase 1.11568490399e-07 1.02376443204e-06 368264695.543 +UniRef50_P15493 Lipase 1.76395321898e-06 8.95250808683e-06 2902107813.64 +UniRef50_S0F090 Acetolactate synthase, small subunit 3.11606650786e-05 1.49345449214e-05 -6550683824.35 +UniRef50_A6LRW0 Phage Terminase 5.84111960843e-06 2.86120442282e-05 9192901699.68 +UniRef50_UPI00026CC897 NADPH 9.82086139028e-08 8.24440330384e-07 293188655.809 +UniRef50_D3QFY8 0.000100786007853 4.99126825692e-06 -38673511908.6 +UniRef50_R9SLI7 DEAD DEAH box helicase domain containing protein 3.06234382992e-05 2.84283218367e-06 -11215371595.2 +UniRef50_UPI00016AB4FD type III secretion inner membrane protein SctV, partial 7.37494727105e-08 1.46959988716e-07 29555983.7055 +UniRef50_UPI0003806CCD hypothetical protein 3.57136003062e-08 1.23789294672e-07 35557238.6258 +UniRef50_F2AE31 4.0070120529e-06 9.96651490864e-08 -1577443893.61 +UniRef50_T0UHV5 Transcriptional regulator, AraC family 3.96242382186e-05 2.00687394925e-05 -7894794808.68 +UniRef50_P75809 Flavin mononucleotide phosphatase YbjI 1.28388286163e-05 4.31119277652e-06 -3442711234.38 +UniRef50_B2IMU5 HIT family protein 3.71832888944e-05 4.36660278698e-05 2617161276.52 +UniRef50_G6Y3Q8 Transposase IS66 1.63773566194e-06 6.26007188886e-07 -408447199.875 +UniRef50_A4AR30 Dihydrolipoyl dehydrogenase 9.61007068128e-05 2.86033685317e-05 -27249503749.6 +UniRef50_UPI000467AD6A hypothetical protein, partial 4.32144918176e-08 7.12264422081e-08 11308768.1179 +UniRef50_B4SJH6 NADH quinone oxidoreductase subunit D 1 2.43878560175e-06 3.22026065615e-05 12016019764.6 +UniRef50_I1Y681 Type F conjugative transfer system protein TraW 2.7994327254e-07 2.7660501781e-07 -1347694.39949 +UniRef50_UPI0003B68FBD pseudouridine synthase 1.64488243362e-07 6.56537153548e-07 198646183.161 +UniRef50_P26408 Hydrogenase transcriptional regulatory protein hupR1 2.01759858255e-05 5.13504491966e-06 -6072212416.77 +UniRef50_F5X1L0 PTS system, fructose specific IIABC component 4.77827631999e-05 3.47690520491e-05 -5253794887.77 +UniRef50_P06136 Cell division protein FtsQ 2.28586479949e-05 1.31588582471e-05 -3915924150.99 +UniRef50_E8QRB2 Outer membrane protein HopZ 1.99826061273e-06 3.78916387798e-05 14490597227.3 +UniRef50_Q5HQR1 Toprim domain protein 0.000190646700317 2.04192349508e-05 -68722916694.2 +UniRef50_Q5P409 Peptide chain release factor 3 5.11472723211e-05 8.38669308537e-05 13209327665.0 +UniRef50_B0JJ94 Potassium transporting ATPase A chain 2.62195208282e-08 1.19321641215e-05 4806575937.67 +UniRef50_W8EUK6 Iron ABC transporter 1.7584751034e-06 9.66314847053e-05 38301398199.0 +UniRef50_UPI000288243F phospho 2 dehydro 3 deoxyheptonate aldolase, partial 8.37330316189e-07 8.63655411629e-07 10627764.0744 +UniRef50_UPI00041C714B mechanosensitive ion channel protein MscL 2.48146638006e-07 2.04123022336e-07 -17772873.8765 +UniRef50_D1DHF6 Oxidoreductase 1.99055565955e-06 2.75370961895e-05 10313451903.3 +UniRef50_UPI00038110F4 hypothetical protein 4.99321832134e-08 4.97846218907e-07 180828392.733 +UniRef50_A6M363 Amidohydrolase 3 6.59457594916e-06 7.75379174986e-06 467989643.92 +UniRef50_A5UJ78 Adhesin like protein 2.91363873103e-05 6.86348845086e-06 -8991842588.74 +UniRef50_UPI00047DA4D0 iron transporter FeoB 1.61605448737e-07 1.3106663404e-07 -12328894.2466 +UniRef50_K5W0W9 1.13388359286e-06 2.21810139657e-07 -368215245.458 +UniRef50_F0K6G2 Integral membrane protein 2.09218669562e-06 1.66674430571e-05 5884209851.65 +UniRef50_UPI00046C4A93 hypothetical protein 4.14199883807e-07 2.34906620536e-06 781129277.49 +UniRef50_Q3BJT1 Nitrite oxidoreductase beta subunit 4.15461609812e-07 2.33813759765e-07 -73333466.1338 +UniRef50_I7CFF2 Methionine aminopeptidase 1.05608567524e-05 2.2252582284e-05 4720093070.71 +UniRef50_M1Q6R0 9.18337801584e-08 2.38826384188e-08 -27432709.7746 +UniRef50_J3JP50 1.03855666506e-05 6.97401347832e-06 -1377285880.11 +UniRef50_D2PTZ5 1.97904602289e-07 9.34335712368e-08 -42176237.2394 +UniRef50_A6M151 Putative cell wall binding repeat containing protein 1.57285828688e-05 7.87511213846e-06 -3170542506.76 +UniRef50_UPI0003606801 hypothetical protein 1.11114806108e-07 8.36998747515e-08 -11067744.2077 +UniRef50_Q4RIY1 Chromosome undetermined SCAF15041, whole genome shotgun sequence. 9.87930173869e-07 3.3401251448e-07 -263994583.567 +UniRef50_A4WSI1 Mammalian cell entry related domain protein 0.000123802568087 3.33679510214e-05 -36509564666.9 +UniRef50_UPI00038114B4 hypothetical protein 1.47129989823e-07 4.10526056076e-07 106336224.18 +UniRef50_L1G4X2 Permease family protein 2.42569727243e-05 6.21986729279e-06 -7281800802.87 +UniRef50_R9SJI3 CCA adding enzyme 2.94314804048e-05 1.38106019575e-06 -11324298855.8 +UniRef50_Q31DZ2 Hydrogenase expression formation protein hypD 1.19457591412e-06 3.21045415015e-05 12478732415.6 +UniRef50_J9YR02 BioY family protein 0.000159961464001 5.4973650689e-05 -42384868579.4 +UniRef50_A4IJA6 Thymidylate kinase 1.25615031425e-07 3.76235354431e-05 15138370621.4 +UniRef50_Q5LPC1 Adenosine deaminase 3.29656744838e-05 9.94349652413e-06 -9294335756.22 +UniRef50_P60070 Anti sigma B factor antagonist 3.26174586468e-05 4.74568967811e-05 5990863275.2 +UniRef50_Q87J85 Tyrosine tRNA ligase 1 1.05805441149e-06 2.53322420646e-07 -324880179.876 +UniRef50_B3QV79 Serine tRNA ligase 3.5713814454e-08 6.21207647515e-08 10660809.8848 +UniRef50_Q3JCN0 1,4 alpha glucan branching enzyme GlgB 8.78594112446e-05 1.71266175316e-05 -28555696810.9 +UniRef50_Q7NFY1 Chorismate synthase 1.6068196992e-07 2.00068193126e-06 742830563.732 +UniRef50_F5M2D5 Choline ethanolamine kinase 4.36158911311e-05 4.48581620499e-06 -15797291427.7 +UniRef50_X5ZST2 4.4175057183e-07 3.39784599388e-06 1193411997.25 +UniRef50_B8DDV4 Peptidoglycan bound protein 1.27508975305e-07 2.11431843286e-06 802099358.907 +UniRef50_UPI00047EA9AC hypothetical protein 4.09229034531e-07 2.4523937893e-07 -66204636.3455 +UniRef50_Q8TX14 6.68251729082e-05 3.40342830921e-06 -25604136566.9 +UniRef50_A3CL70 Cobalt transport protein CbiM 5.91999053386e-05 4.21192976745e-06 -22199320516.4 +UniRef50_Q5HRI1 GTP cyclohydrolase FolE2 8.01347349531e-05 3.12648749146e-05 -19729362198.2 +UniRef50_A1SSZ0 2.25195836605e-07 4.15900731281e-07 76989906.1929 +UniRef50_UPI0002658599 PREDICTED 2.31251119588e-07 9.24594603085e-06 3639342958.42 +UniRef50_A6LYD5 Transposase, IS111A IS1328 IS1533 3.63450351672e-06 1.41562051353e-05 4247740059.23 +UniRef50_B6AM37 1.23516923153e-08 1.80822624131e-08 2313501.47048 +UniRef50_A6LQ17 Malonyl CoA acyl carrier protein transacylase 1.29128616484e-06 1.07259462602e-05 3808888056.8 +UniRef50_B9AH82 1.61897137691e-05 8.38646786657e-06 -3150266127.45 +UniRef50_B9AH81 8.60587187197e-06 8.75462581866e-08 -3438952581.89 +UniRef50_UPI0004656F44 FAD binding molybdopterin dehydrogenase 2.25566598847e-06 3.97910340246e-06 695772832.983 +UniRef50_UPI00036CFDE4 hypothetical protein 4.11188340714e-08 2.79268293538e-08 -5325774.1886 +UniRef50_UPI0002624A61 succinylarginine dihydrolase 1.22562388261e-07 4.4916233353e-07 131852405.737 +UniRef50_C4RAQ9 8.07906485273e-07 1.4890537728e-05 5685331046.0 +UniRef50_Q47QV2 2.01444574503e-06 7.90033647941e-06 2376206317.47 +UniRef50_E1ZQF3 8.09761181218e-08 1.8448565895e-07 41788071.8372 +UniRef50_H6RSF4 8.60077953952e-07 2.31136025685e-07 -253911574.427 +UniRef50_Q1Q8I7 Arginine tRNA ligase 8.95929081425e-07 6.95042086118e-05 27698004364.7 +UniRef50_Q81FQ4 Nucleoside diphosphate kinase 0.000149732698738 1.46824940952e-05 -54521424866.8 +UniRef50_UPI00037813C2 hypothetical protein 1.95682366092e-07 7.32628651722e-08 -49422254.7776 +UniRef50_J9P031 1.93942195576e-06 7.91059043362e-07 -463608199.733 +UniRef50_P76241 2.32168573377e-05 6.86483173392e-06 -6601513398.17 +UniRef50_UPI0003728B23 hypothetical protein 2.18136180688e-05 1.43130836355e-06 -8228588547.1 +UniRef50_P00905 Bifunctional protein TrpGD 6.69114355967e-06 1.23172955868e-06 -2204032426.74 +UniRef50_K1ST89 Heat shock protein 70 2.24484549948e-06 4.38393863434e-07 -729286693.128 +UniRef50_Q92M91 Holliday junction ATP dependent DNA helicase RuvA 2.6716072051e-07 1.10569430906e-07 -63217825.2043 +UniRef50_D3P3A5 Transposase 1.32961906049e-05 9.78697682891e-07 -4972723045.25 +UniRef50_A7H8W4 Phosphopentomutase 1.02725229985e-07 2.03785262537e-07 40799175.2873 +UniRef50_B3PJZ1 5.09049186673e-06 8.53016030968e-06 1388636359.9 +UniRef50_G1ZE91 Outer membrane protein assembly complex, YaeT protein 1.24593678802e-05 3.00341454349e-06 -3817484399.63 +UniRef50_A6M2H1 5.34436541738e-06 3.01417088865e-05 10010991856.1 +UniRef50_A6M2H8 7.54971977705e-05 6.68641596675e-06 -27779757017.4 +UniRef50_X6L2P2 3.09943931679e-06 1.71446167593e-06 -559132469.202 +UniRef50_Q04KA6 4.41979912214e-05 7.74727423463e-06 -14715601748.2 +UniRef50_UPI00037EF484 hypothetical protein, partial 2.16387975468e-07 4.04567357241e-08 -71025600.4037 +UniRef50_R4LGH4 9.93137683078e-08 2.84797711446e-07 74882143.9888 +UniRef50_A4WR12 ABC transporter related 1.08551391904e-05 8.92678575865e-06 -778499943.955 +UniRef50_UPI000466F502 nitrate reductase 9.15200794493e-08 6.1169656903e-08 -12252838.0235 +UniRef50_UPI000360428B hypothetical protein 8.71547338186e-08 2.19357967414e-07 53372067.7184 +UniRef50_UPI0002DA4A3A hypothetical protein 8.82274084231e-09 3.76501175199e-09 -2041867.29908 +UniRef50_O59229 30S ribosomal protein S12 1.74677559691e-05 5.51993841485e-06 -4823480562.88 +UniRef50_F8YC51 Pyridine nucleotide disulfide oxidoreductase 4.83683128658e-06 2.51333366122e-06 -938024503.88 +UniRef50_UPI000472E3C4 hypothetical protein 4.8837811337e-07 9.76803971961e-07 197183512.772 +UniRef50_F9NUL2 ABC transporter, permease protein 2.47396680356e-06 4.3789438506e-05 16679562924.1 +UniRef50_F3GFB2 ABC transporter, substrate binding protein, aliphatic sulfonate 2.94489270222e-07 4.09717762502e-07 46519156.346 +UniRef50_B5F5V3 Nitrate reductase, alpha subunit 3.45831062314e-05 1.56790405427e-05 -7631803297.5 +UniRef50_Q9HZQ3 Aerobic cobaltochelatase subunit CobN 2.2331838668e-06 4.73263950644e-07 -710501266.8 +UniRef50_P76236 Inner membrane protein YeaI 3.71131098361e-05 2.63352550596e-05 -4351152232.42 +UniRef50_A5ULS0 3.25908261111e-05 1.65607918084e-05 -6471521558.64 +UniRef50_A4F866 Transcription elongation factor GreA 4.72804571187e-06 4.44399385044e-05 16032178440.1 +UniRef50_P32136 Putative sulfoquinovose importer 4.53391657987e-05 1.38951746038e-05 -12694325106.5 +UniRef50_P08417 Fumarate hydratase, mitochondrial 0.000410183192903 0.000695359995187 1.15129374595e+11 +UniRef50_Q9X581 NatC 3.12013049321e-06 4.14904351622e-05 15490562851.5 +UniRef50_A6LS24 Peptidase M56, BlaR1 1.71020333855e-06 1.41249566387e-05 5011988253.41 +UniRef50_K2LBK5 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 2.82067635151e-07 1.90088237201e-07 -37133211.6666 +UniRef50_UPI00037E01EF hypothetical protein 1.92677154912e-08 8.87944061494e-08 28068778.2072 +UniRef50_UPI0004702907 ABC transporter ATP binding protein 2.13854263286e-06 4.53025280333e-07 -680464038.84 +UniRef50_E2ZV83 4.70294884022e-07 8.37586948934e-07 148280313.785 +UniRef50_Q7V3Y9 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 4.52511763736e-07 4.84480614221e-07 12906217.2427 +UniRef50_G2RNK8 Lipoprotein 1.34860263728e-06 3.39613182269e-07 -407341424.68 +UniRef50_Q8DWH8 UPF0237 protein SMU_72 4.73831785168e-06 7.14475899663e-06 971509820.57 +UniRef50_D7GFE3 Regulatory protein, TetR 5.01087595826e-06 3.24268868148e-05 11068180015.1 +UniRef50_P29686 Glucose 6 phosphate 1 dehydrogenase 4.56920928695e-08 0.000148166093729 59798023782.2 +UniRef50_T0TBX4 Excinuclease ABC subunit A 9.44997724897e-07 1.69066719468e-06 301035915.345 +UniRef50_UPI00025578A6 dihydroxyacetone kinase 7.67053331843e-08 1.12566279693e-05 4513471961.27 +UniRef50_Q8KDE3 N acetyl gamma glutamyl phosphate reductase 6.01565855135e-08 1.93245995178e-07 53729827.8725 +UniRef50_Q1J1R8 Tfp pilus assembly pathway, ATPase PilB 2.4203711588e-06 0.000296952352018 1.18906174987e+11 +UniRef50_A7NQM8 Formamidopyrimidine DNA glycosylase 1.13091774332e-07 2.30650908815e-07 47460065.2036 +UniRef50_Q8CW45 Outer membrane lipoprotein LolB 1.40175073626e-05 1.95094987545e-05 2217184319.22 +UniRef50_Q9X909 DNA topoisomerase 1 1.33354605847e-06 5.51356984067e-05 21720589129.6 +UniRef50_UPI000371ABD8 hypothetical protein 3.84091768676e-08 3.04016786597e-07 107229051.419 +UniRef50_UPI000467A9B2 hypothetical protein 2.82941817392e-07 2.50995874357e-07 -12896969.224 +UniRef50_P24211 Putative protein RhsE 3.29138397159e-05 1.01245717621e-05 -9200307128.71 +UniRef50_P04179 Superoxide dismutase [Mn], mitochondrial 9.94275113666e-08 1.1224211477e-06 412995084.53 +UniRef50_UPI000478DF96 AraC family transcriptional regulator 9.35895407023e-07 2.0627476498e-06 454924078.442 +UniRef50_Q9HTT0 1.35594283752e-05 4.61432351874e-06 -3611248599.33 +UniRef50_J9YQC3 4.39296040465e-06 1.12216607416e-06 -1320459808.38 +UniRef50_A0A045ECZ1 5.52356674421e-07 1.4068428116e-07 -166197196.948 +UniRef50_B9E3J2 2.76590966753e-06 1.02352169998e-05 3015451028.75 +UniRef50_K1DV80 Cupin superfamily protein 2.16600795122e-07 4.66666001768e-07 100954392.568 +UniRef50_UPI00040C1A9F hypothetical protein 3.85714566219e-07 9.8705218238e-08 -115869195.781 +UniRef50_Q5HF61 Probable thiol peroxidase 0.000108355483715 2.13480575774e-05 -35125965632.9 +UniRef50_F8JFK7 1.89878008234e-05 9.82733864575e-05 32008563864.0 +UniRef50_G7M7E3 Membrane bound O acyl transferase MBOAT family protein 7.39202328085e-07 8.50778285585e-06 3136271290.26 +UniRef50_G7M6M8 Peptidase M56 BlaR1 5.19714532615e-07 1.06571659894e-05 4092613553.63 +UniRef50_Q9I5Z5 3.21721013225e-06 3.86877779725e-06 263045861.995 +UniRef50_UPI00047B409A hypothetical protein 6.05653551629e-08 1.76958406166e-07 46989302.9933 +UniRef50_P44797 Adenylosuccinate lyase 3.0644247723e-05 8.68500021796e-06 -8865217688.04 +UniRef50_K1V508 3.14079579682e-06 5.13212257297e-06 803923055.859 +UniRef50_X6P3I6 3.93175781386e-08 9.85128623436e-08 23897862.6414 +UniRef50_B8DI47 Cell wall surface anchor family protein 6.50092094613e-08 1.8729655695e-05 7535146827.16 +UniRef50_F3ZH26 Putative dehydrogenase 1.40069012559e-06 1.09309082736e-06 -124181611.363 +UniRef50_P0ABP1 Anaerobic C4 dicarboxylate transporter DcuB 4.08742209439e-05 7.16782922252e-06 -13607683961.9 +UniRef50_UPI0004688581 replication initiation protein RepC 5.76615686509e-07 3.17533745407e-07 -104594558.916 +UniRef50_D9REY1 0.00045000304697 4.91130489144e-05 -1.61844211689e+11 +UniRef50_Q2CKE9 2.76801292372e-07 2.29455026417e-07 -19114268.5701 +UniRef50_Q9JUV1 Proline iminopeptidase 1.30998423461e-06 3.01352004719e-05 11637093520.2 +UniRef50_F9HJK1 2.73662275961e-07 2.52243960835e-07 -8646836.64865 +UniRef50_A7MXL0 Prolipoprotein diacylglyceryl transferase 1.96362483315e-07 3.16662745345e-07 48566692.0317 +UniRef50_C9XQG5 Trehalose 6 phosphate hydrolase 0.000135372014062 2.49773631348e-05 -44567675273.9 +UniRef50_X1YC61 2.6321106951e-08 8.62626920644e-08 24199153.4762 +UniRef50_Q57658 Aspartate semialdehyde dehydrogenase 2.66662094418e-05 5.3760170224e-06 -8595111939.75 +UniRef50_Q5NNB4 N succinylarginine dihydrolase 1.39463737705e-07 4.44828576711e-07 123279532.755 +UniRef50_A9WR14 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.24044804198e-08 1.88583378856e-05 7596223213.15 +UniRef50_P54374 Shikimate dehydrogenase 5.41130798207e-07 1.79841875759e-07 -145856771.506 +UniRef50_A0A024HXE1 3.25996490061e-07 1.46496623339e-07 -72466298.9067 +UniRef50_T1Y972 Transposase 8.56066326392e-05 9.27696456103e-06 -30815223673.5 +UniRef50_W7VQ87 Phytoene dehydrogenase 2.5442867101e-07 5.36025806937e-06 2061285983.69 +UniRef50_M9RUX7 TonB domain containing protein 2.60669263266e-06 7.03839941747e-06 1789134412.19 +UniRef50_UPI000470A397 30S ribosomal protein S2, partial 1.81717833935e-07 1.84541417283e-07 1139915.24685 +UniRef50_UPI000441C901 PREDICTED 2.82105770673e-07 2.60881424641e-07 -8568528.94513 +UniRef50_B3EPQ3 Protease HtpX homolog 5.0205306552e-05 1.01731550466e-05 -16161470812.5 +UniRef50_I0KKW1 DoxX family protein 5.86445008878e-07 2.84505658345e-07 -121896621.023 +UniRef50_G4E2Y7 ATP dependent chaperone ClpB 3.40572692208e-06 0.000110094406366 43071529108.9 +UniRef50_P57408 UPF0053 protein BU323 2.03987074879e-05 7.42333055207e-06 -5238318894.76 +UniRef50_M1Z917 1.25367967486e-07 7.52455487413e-07 253162927.024 +UniRef50_UPI0003B3F37B polyphosphate kinase, partial 2.66527187285e-08 5.34365714532e-07 204969966.745 +UniRef50_UPI0002880AE8 bacteriocin ABC transporter ATPase 7.06539959106e-08 8.32063544678e-08 5067541.1843 +UniRef50_Q46911 3.55076701897e-05 6.87430956767e-06 -11559639053.9 +UniRef50_X0SYL6 Marine sediment metagenome DNA, contig 1.05868542035e-07 6.91404664592e-08 -14827574.8141 +UniRef50_G2T0A1 4.12671179513e-05 7.71160477641e-06 -13546772441.2 +UniRef50_I0C2G3 Deoxyribodipyrimidine photolyase 0.000187891547181 3.82756929225e-05 -60401756356.9 +UniRef50_O67315 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.21212594522e-07 1.12262390678e-07 -43984534.2612 +UniRef50_W0Z2H6 ISSod1 transposase 1.58036515303e-06 1.79254757326e-07 -565645460.302 +UniRef50_UPI0004726C09 hypothetical protein 9.35757189622e-08 1.16911950086e-07 9421122.87244 +UniRef50_C4RCM2 Polyketide synthase 3.27559620365e-06 5.07883902509e-06 727991255.293 +UniRef50_P19529 Replication initiation protein 0.00961640316151 0.00326879196825 -2.56260853267e+12 +UniRef50_P9WHM0 N5 carboxyaminoimidazole ribonucleotide mutase 7.46857686182e-07 8.86204313279e-07 56255943.3345 +UniRef50_B9DYP5 2.91819534415e-06 1.52270260843e-05 4969226016.16 +UniRef50_Q2G9D9 Arginine tRNA ligase 9.2711124598e-05 1.64073648942e-05 -30804764144.9 +UniRef50_X1L2W8 Marine sediment metagenome DNA, contig 1.56334471216e-06 5.32238616877e-07 -416270183.759 +UniRef50_O27434 CoB CoM heterodisulfide reductase iron sulfur subunit A 2.99828804169e-05 6.74670492881e-06 -9380729184.48 +UniRef50_UPI00035FE7E0 hypothetical protein 2.23973636734e-06 1.0563046806e-06 -477765894.277 +UniRef50_F0RPB8 Lon protease 1.55068084511e-06 0.000285957922034 1.14818693337e+11 +UniRef50_Q6AAY2 3.42734707915e-06 7.64689023824e-05 29487772196.6 +UniRef50_Q6AAY0 3.59125433534e-06 0.000112153445524 43827888790.9 +UniRef50_A3U7W4 2.2183390728e-07 2.468786419e-05 9877236657.08 +UniRef50_C1KVS7 Indole 3 glycerol phosphate synthase 3.89445300091e-05 0.000121390033582 33284261512.5 +UniRef50_P08390 USG 1 protein 2.33512029835e-05 1.28254442089e-05 -4249377982.89 +UniRef50_UPI00019116B2 trehalose 6 phosphate phosphatase, partial 1.07071555372e-06 2.26024154437e-06 480226239.551 +UniRef50_A5ULH0 2 deoxyribose 5 phosphate aldolase , DeoC 5.0966092525e-05 2.00885303049e-05 -12465650778.6 +UniRef50_D2ZQG6 3.17600418799e-05 4.11978194691e-06 -11158712119.1 +UniRef50_G7M5P7 Cell wall binding repeat containing protein 3.47273687573e-06 1.49190717103e-05 4621025835.05 +UniRef50_UPI0002C33B71 6.1891197869e-07 7.03108583015e-08 -221477004.393 +UniRef50_I6T197 Chitin binding protein CbpD 2.44787443557e-06 2.48862392015e-06 16451066.9774 +UniRef50_B9KM20 PTSINtr with GAF domain, PtsP 6.22828357139e-05 1.03566352799e-05 -20963244321.3 +UniRef50_A9EDR0 2.37417313196e-06 9.5173615342e-07 -574255263.501 +UniRef50_Q4RQQ9 Chromosome 2 SCAF15004, whole genome shotgun sequence 1.13014725629e-07 7.73417822508e-07 266612834.267 +UniRef50_J3HVJ5 2.28565962343e-06 2.12245274184e-06 -65888620.8715 +UniRef50_D8HCA2 2.0226388606e-05 5.33704888912e-06 -6011009156.46 +UniRef50_U0EAS4 Adenine deaminase 1.09217809168e-05 9.98155248336e-06 -379581756.48 +UniRef50_UPI0003C1ADBB 6.23769906392e-08 6.21915146015e-08 -74878.9524664 +UniRef50_F8C6I4 7.83165951945e-07 5.24663792293e-08 -294992384.198 +UniRef50_UPI000474BE5B hypothetical protein 5.63742923218e-08 1.04725883986e-06 400032251.362 +UniRef50_UPI00047B93C9 hypothetical protein 1.26891751512e-07 1.29060405319e-07 875512.154261 +UniRef50_R1CD42 9.16801717706e-07 2.58089128529e-07 -265930355.563 +UniRef50_A5EUT6 Phosphoglucosamine mutase 4.82415262964e-08 2.54316925875e-07 83195167.6396 +UniRef50_Q53058 2.18475783613e-05 7.40425575159e-06 -5830946577.04 +UniRef50_UPI000287CEB1 4 hydroxythreonine 4 phosphate dehydrogenase 3.69501355878e-07 7.97085367124e-07 172620912.386 +UniRef50_G6RIH0 Prepilin type N terminal cleavage methylation domain protein 2.46997661441e-07 4.0920689097e-05 16420468354.9 +UniRef50_A3UGH3 5.50932157358e-07 7.05373329677e-07 62349796.4715 +UniRef50_J9P8Q4 2.12490180849e-07 5.39629330572e-07 132070089.192 +UniRef50_F0KF14 Acyl CoA dehydrogenase 1.35051668988e-06 5.83146236004e-05 22997108988.0 +UniRef50_U3T9B5 1.80327701681e-06 4.74701565199e-05 18436279651.0 +UniRef50_P44482 2 dehydro 3 deoxygluconokinase 1.50595174965e-07 1.70382920555e-07 7988555.71763 +UniRef50_Q8CMX1 Transcriptional regulator 2.58205047089e-05 0.000126844066385 40784451547.1 +UniRef50_V4R7Y3 Hydrogenase expression protein HypA 7.19797112264e-09 6.89010781312e-08 24910301.4816 +UniRef50_S8ENL7 5.477274286e-09 1.00968664856e-07 38551046.1842 +UniRef50_W0YWD4 Sensor response regulator hybrid 7.48229339576e-06 5.10598424851e-06 -959345163.337 +UniRef50_Q7MWN4 Elongation factor P 1 1.05261677856e-07 1.75107588688e-07 28197651.3086 +UniRef50_UPI000372A8A8 hypothetical protein 0.000308348091306 5.46000547488e-05 -1.02441196197e+11 +UniRef50_Q0VN20 Aliphatic amidase 1.13670186582e-05 3.91987248444e-05 11236001320.8 +UniRef50_O54461 Beta lactamase 8.8219028137e-05 4.51639022296e-05 -17381882674.6 +UniRef50_V9WM02 MoxR like ATPase 2.36124573194e-05 6.61056310422e-06 -6863873331.38 +UniRef50_F0KI93 3.23132273634e-06 4.92883039506e-05 18593768498.9 +UniRef50_F4PTN3 1.57854807292e-07 2.89295551579e-06 1104193719.48 +UniRef50_A6M0Z8 Integral membrane sensor signal transduction histidine kinase 2.62606461243e-06 4.04082150784e-06 571154719.696 +UniRef50_Q06065 Acetoacetate metabolism regulatory protein AtoC 2.71277639972e-05 5.86953393125e-06 -8582208345.42 +UniRef50_L1K929 1.07302980842e-05 3.15262930128e-06 -3059197876.12 +UniRef50_H3TTB7 FtsK SpoIIIE family protein 1.81369400756e-05 6.04744106207e-06 -4880679106.59 +UniRef50_Q9I2K3 4.6989957119e-06 2.98802737126e-06 -690738915.059 +UniRef50_UPI0004571B3D PREDICTED 2.13299073152e-07 1.306219132e-06 441225239.395 +UniRef50_UPI0002897681 3 oxoadipate enol lactonase 1.05862573869e-07 4.30268138235e-07 130966507.238 +UniRef50_V9C7N3 1.9525137354e-06 3.14166707656e-06 480075796.379 +UniRef50_P76080 Putative 1,2 phenylacetyl CoA epoxidase, subunit D 2.14064927638e-05 1.7926794122e-06 -7918337138.6 +UniRef50_A6LS79 4.22487375095e-06 1.24146187299e-05 3306300547.47 +UniRef50_UPI000376E372 hypothetical protein 3.89589639201e-08 1.58550971533e-07 48280761.0323 +UniRef50_UPI00040D66F2 serine threonine protein phosphatase 1.12389394683e-07 1.43369561231e-07 12507073.4048 +UniRef50_O27653 30S ribosomal protein S19e 8.46694658247e-06 2.22829965378e-05 5577708908.95 +UniRef50_W4TX83 1.89789700572e-06 4.83271273757e-05 18744050051.1 +UniRef50_A6LS70 2.89036004135e-06 2.85330149942e-06 -14960988.1366 +UniRef50_UPI0003C14FAA 1.66660609633e-06 4.22070817812e-07 -502434164.104 +UniRef50_A6LUP1 Peptidoglycan glycosyltransferase 7.72142176353e-06 9.35993889296e-06 661489472.017 +UniRef50_UPI000255BA6E general secretion pathway protein I 3.24124263893e-07 2.2354823841e-07 -40603775.6941 +UniRef50_UPI0003B5E2AD ABC transporter 8.03359617502e-07 3.12782999686e-07 -198051800.664 +UniRef50_D4HCQ8 Methylenetetrahydrofolate reductase 4.56636276836e-06 5.67916740756e-06 449252888.494 +UniRef50_UPI00040E317A hypoxanthine phosphoribosyltransferase 3.19796163673e-07 4.95839871114e-07 71071004.9932 +UniRef50_P77658 1.86668006789e-05 1.16830758242e-05 -2819415423.78 +UniRef50_I0C113 Isovaleryl CoA dehydrogenase 6.05817725938e-05 1.27652614849e-05 -19304112309.2 +UniRef50_D8JKL5 DNA polymerase III subunit beta 8.58992221721e-06 5.48410960008e-05 18672166422.2 +UniRef50_UPI0002C34F8A 4.68122146317e-08 5.54093701401e-08 3470777.1777 +UniRef50_E0MMN1 1.58558704661e-07 4.36481772228e-07 112200952.876 +UniRef50_D1RMY5 Thioesterase family protein 1.08970032187e-07 7.98824874874e-06 3180961507.49 +UniRef50_P77657 1.80367857012e-05 1.91060592047e-05 431678834.824 +UniRef50_UPI000464369A hypothetical protein 3.74004536252e-07 2.86787997281e-06 1006808117.03 +UniRef50_F5M2M3 CheBRA 6.61375269939e-05 1.17690669288e-05 -21949214504.3 +UniRef50_O31219 Aspartate semialdehyde dehydrogenase 8.4113206791e-05 0.000116524852308 13084979030.8 +UniRef50_Q28UY2 50S ribosomal protein L11 0.000450617343031 0.000707945800118 1.03886655901e+11 +UniRef50_P0AEJ4 Osmolarity sensor protein EnvZ 1.70004430835e-05 2.93999580636e-06 -5676375106.86 +UniRef50_K1E414 1.71723718775e-06 1.42643098225e-06 -117402033.754 +UniRef50_R9SK13 Phage integrase family protein 1.49785617481e-05 1.78799216058e-06 -5325194808.96 +UniRef50_UPI0003716E27 hypothetical protein 4.45818568992e-08 1.64660077216e-06 646754695.073 +UniRef50_UPI00046FA912 ABC transporter substrate binding protein, partial 1.56505359167e-07 1.15566324153e-05 4602371187.84 +UniRef50_UPI00040758D9 hypothetical protein 6.06323873884e-08 5.3587939592e-07 191863049.281 +UniRef50_UPI00047851F7 peptide ABC transporter permease 5.74563174052e-07 6.00066050513e-07 10295824.1828 +UniRef50_UPI0003B46F2A ArsR family transcriptional regulator 1.38190902389e-06 6.46256949344e-07 -296991769.96 +UniRef50_H1KC86 2.41653561268e-07 6.80122606734e-07 177015334.275 +UniRef50_A6W0Y0 8 amino 7 oxononanoate synthase 4.68134875144e-08 5.17591720301e-08 1996633.52936 +UniRef50_A6LQ18 Transcriptional regulator, TetR family 5.47081143264e-06 7.43615203507e-06 793432118.642 +UniRef50_P44917 3.95794193003e-05 3.44391700485e-05 -2075181700.9 +UniRef50_Q8CNS8 Sortase 0.000116566051104 4.11902800539e-05 -30430123737.7 +UniRef50_UPI0004418A78 PREDICTED 1.10999035609e-07 4.0012885702e-08 -28657979.8155 +UniRef50_Q9ZM40 Flagellar biosynthesis protein FlhA 5.1475362111e-07 3.39264232595e-05 13488701040.3 +UniRef50_Q1GDE2 ATP synthase subunit b 2 3.92912696703e-05 7.75579225764e-06 -12731259215.3 +UniRef50_H2KZ84 Protein C37C3.1, isoform a 3.78557081942e-07 1.64405504429e-07 -86455619.7774 +UniRef50_Q5HLQ2 8.18263448597e-05 3.47377885968e-05 -19010228004.9 +UniRef50_Q5HLQ1 5.59983324563e-05 3.83036008974e-05 -7143580269.1 +UniRef50_Q31ID1 Lipoprotein signal peptidase 1.08524794447e-07 1.5683090399e-07 19501769.2051 +UniRef50_UPI0004018A38 succinate semialdehyde dehydrogenase 5.14022398097e-08 1.54042339146e-07 41437067.6376 +UniRef50_D3S8C7 Hypoxanthine guanine phosphoribosyltransferase 1.08344230656e-05 3.22163678398e-06 -3073375241.28 +UniRef50_I7DNF2 4.59021597851e-06 4.02889530915e-07 -1690475071.17 +UniRef50_D3E4Q3 3.11966974646e-05 2.02966807698e-06 -11775087683.5 +UniRef50_Q5HLQ8 0.000198419340317 7.77697228541e-05 -48707731107.1 +UniRef50_A3PR56 HpcH HpaI aldolase 1.55846992109e-05 2.00651167921e-05 1808799558.44 +UniRef50_Q2S6N0 Ribosomal RNA small subunit methyltransferase G 3.77421846055e-07 4.05724032981e-07 11425940.1689 +UniRef50_I0TMR6 Gram positive signal peptide protein, YSIRK family 1.6286634156e-05 7.35967704826e-06 -3603922130.48 +UniRef50_UPI00046F57AB 2 oxoglutarate dehydrogenase 1.47487292429e-07 2.2736521734e-07 32247698.4989 +UniRef50_J0XPW7 LPXTG motif cell wall anchor domain protein 7.1833988234e-08 6.87501489099e-09 -26224734.6748 +UniRef50_Q68W26 Queuine tRNA ribosyltransferase 5.56987846554e-08 1.68587115441e-07 45574404.4339 +UniRef50_UPI0002B45411 2.67098942211e-07 1.49044138345e-07 -47660173.0161 +UniRef50_I4EB97 Transposase and inactivated derivative 4.91278094178e-08 8.61183769922e-08 14933546.0551 +UniRef50_P25396 Tellurite resistance protein TehA 2.50751055345e-05 9.38326644269e-06 -6334988001.88 +UniRef50_Q87VS1 tRNA dihydrouridine synthase B 2.82740476991e-05 3.9059383359e-06 -9837704780.25 +UniRef50_Q057P9 Serine hydroxymethyltransferase 8.49069856539e-07 1.03470254174e-06 74942192.9849 +UniRef50_X6K4S1 Head tail adaptor protein 1.50171720178e-06 4.65028384463e-07 -418523997.154 +UniRef50_P26850 NADH ubiquinone oxidoreductase chain 6 1.55364531907e-06 3.60642158355e-07 -481630015.778 +UniRef50_Q03007 Hydrogenase expression formation protein HupH 1.53017686735e-05 5.46259530231e-06 -3972195030.18 +UniRef50_B7J5S6 Ribose 5 phosphate isomerase A 1.34717657979e-05 3.30263630215e-05 7894430861.06 +UniRef50_P77656 0.000106961871223 5.77166199074e-06 -40851729210.5 +UniRef50_A6LU84 Small GTP binding protein 4.99726509487e-06 9.67435178252e-06 1888197290.11 +UniRef50_A6LWF4 6.63125447862e-06 2.1953259667e-05 6185681516.7 +UniRef50_P18868 Superoxide dismutase [Fe] 7.88723856106e-08 2.69943713577e-07 77137839.8087 +UniRef50_A5UKH0 Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS 2.7161799779e-05 2.3815863322e-06 -10004076255.9 +UniRef50_P39352 Putative metabolite transport protein YjhB 1.78942885126e-05 6.42924522031e-06 -4628578669.0 +UniRef50_UPI0004703186 chemotaxis protein CheY, partial 6.93353841637e-07 4.22012111924e-07 -109543986.023 +UniRef50_C1DWC2 Membrane protein 1.55248536932e-06 6.17243958791e-07 -377568434.133 +UniRef50_UPI0003827112 hypothetical protein 7.12000377547e-07 3.7009515076e-07 -138031335.703 +UniRef50_B0V8D4 1.88218433003e-06 7.31610218401e-05 28776141392.5 +UniRef50_UPI000380411C hypothetical protein 1.67275918245e-06 2.18649093407e-05 8151818804.41 +UniRef50_UPI0002555E12 dihydrofolate reductase 1.97677306537e-07 2.80831587778e-07 33570403.7548 +UniRef50_A5FVL8 Prolipoprotein diacylglyceryl transferase 8.51530587704e-07 2.41339726503e-07 -246341538.551 +UniRef50_UPI0003B597DA short chain dehydrogenase 7.63499378642e-08 7.40313523005e-08 -936041.44431 +UniRef50_M4WY98 SAM dependent methyltransferase 8.51928757705e-06 2.22600531548e-06 -2540675276.25 +UniRef50_F2CWZ0 Predicted protein 5.95271062046e-07 4.03667209988e-06 1389335829.71 +UniRef50_V9TIQ4 Glycosyltransferase 1.72476105513e-06 1.28305592405e-06 -178321781.748 +UniRef50_N1ZDW1 2.94295977313e-07 9.82373572136e-07 277785368.692 +UniRef50_A5WEW9 Cysteine tRNA ligase 2.43012708894e-08 9.59894352248e-05 38742302201.8 +UniRef50_H0E5U4 Glyoxalase family protein 1.22471063114e-07 3.17367907771e-07 78682247.8413 +UniRef50_F7X1V6 MFS type transport protein 1.55281629653e-05 3.67253076177e-06 -4786264205.52 +UniRef50_UPI000255639C ABC transporter permease 3.62809266414e-08 1.25298111857e-06 491196798.072 +UniRef50_U5MRX8 Sensor histidine kinase ResE 3.75191146479e-06 1.19865990613e-05 3324444433.69 +UniRef50_A9FBU8 Methionine tRNA ligase 1 5.17295699902e-08 4.50976316037e-08 -2677394.90967 +UniRef50_UPI0002F98998 hypothetical protein 1.09927903186e-08 1.23436757579e-08 545369.029074 +UniRef50_Q8XK37 DNA polymerase IV 4.04427517959e-08 8.09976606299e-08 16372514.361 +UniRef50_UPI00029A19D9 3 oxoacyl reductase 1.86003336749e-07 2.97394913879e-07 44970146.6157 +UniRef50_P33015 UPF0394 inner membrane protein YeeE 0.000242149386692 5.87925926735e-05 -74023387786.0 +UniRef50_UPI0004692C4A alpha glucosidase 4.04128471256e-07 3.25544899182e-07 -31725152.3751 +UniRef50_Q8P682 Ribosomal large subunit pseudouridine synthase D 3.34943668386e-05 1.97224666554e-05 -5559885104.18 +UniRef50_F9V6Y3 ATP dependent Clp protease proteolytic subunit 5.70263811579e-05 3.07621567909e-06 -21780343846.8 +UniRef50_UPI000262A74C ribose ABC transporter permease 5.32665864594e-07 1.76499572247e-07 -143788702.872 +UniRef50_UPI00047136FC dTDP glucose 4,6 dehydratase 5.24921540484e-08 6.25153215724e-08 4046475.72754 +UniRef50_K1YIN2 4.01096451738e-08 4.88148357155e-08 3514392.24638 +UniRef50_U5MMQ6 Stage II sporulation P 2.44471834225e-06 8.54592165034e-06 2463130645.66 +UniRef50_Q9FCD1 Urease subunit gamma 2.58429434312e-06 5.089350382e-06 1011321863.39 +UniRef50_UPI0004416D75 RF 1 domain containing protein 2.81668205788e-08 4.13218574183e-07 155450118.046 +UniRef50_UPI0003A49BEA 3 phosphoglycerate dehydrogenase 3.9868507309e-07 3.40575009581e-07 -23459745.7293 +UniRef50_UPI00020D91AD XRE family transcriptional regulator 7.43483556209e-07 2.79128326833e-06 826721873.111 +UniRef50_O33579 Phosphoadenosine phosphosulfate reductase 1.46639714908e-07 1.57390399562e-07 4340183.32056 +UniRef50_Q6FAE6 3.1632904094e-06 5.80366843269e-05 22153062496.8 +UniRef50_UPI0003AE93A7 PREDICTED 1.32296491424e-06 1.33885093534e-06 6413381.66147 +UniRef50_UPI000237B0FC DEAD DEAH box helicase domain protein 5.5924520333e-08 6.18933658081e-05 24964533878.6 +UniRef50_UPI00037131BB hypothetical protein 9.97341897719e-07 3.25743202213e-05 12748013642.3 +UniRef50_UPI000361CF9B hypothetical protein 1.81591334825e-06 8.58654398998e-07 -386457184.701 +UniRef50_R5AUS4 1.52037780442e-07 2.36810228574e-07 34223677.5858 +UniRef50_T2EQ25 Helix turn helix domain protein 1.66608454527e-05 2.88113858735e-06 -5563036757.54 +UniRef50_UPI0003B62920 amino acid ABC transporter ATPase 1.33556188472e-06 1.34429290129e-07 -484911967.99 +UniRef50_I9SM88 Flavoprotein oxidoreductase 2.35928743033e-05 0.000442975057792 1.69309733873e+11 +UniRef50_P52037 1.27528965054e-05 1.00175766806e-05 -1104282179.42 +UniRef50_D6XAF0 Transcriptional regulator 6.66315502637e-06 1.7392912584e-06 -1987824225.73 +UniRef50_I3THN3 8.41148897818e-06 4.9271195543e-06 -1406682694.44 +UniRef50_A5ULL2 Adhesin like protein 2.45763342503e-05 3.51537442491e-06 -8502567928.55 +UniRef50_U6M3I8 3.20510913725e-07 2.89005372935e-07 -12719173.4334 +UniRef50_Q21TC3 Putative prolin rich exported protein 1.83612194674e-07 5.68022951094e-08 -51194712.5868 +UniRef50_UPI00032A0CE2 PREDICTED 8.25826985281e-08 9.76587279193e-07 360920619.884 +UniRef50_Q9CF79 Aspartate carbamoyltransferase 0.000131676780485 8.45498474287e-05 -19025721187.3 +UniRef50_A9GWZ1 7.30789728445e-06 2.55262450271e-06 -1919761975.75 +UniRef50_UPI000477BC16 ABC transporter ATP binding protein 8.67292517622e-07 7.24422148959e-08 -320890821.121 +UniRef50_Q184N3 N acetylmuramic acid 6 phosphate etherase 7.33268114256e-08 9.20934145196e-08 7576307.96116 +UniRef50_UPI0003EF6AD2 hypothetical protein 5.90349688807e-06 3.64999101269e-06 -909767975.518 +UniRef50_P19934 Protein TolA 4.0214688705e-05 7.61507007501e-06 -13160866083.2 +UniRef50_C2WHY8 Antisigma factor antagonist, STAS 9.47341164526e-06 3.65360349307e-06 -2349527968.12 +UniRef50_L0A3G2 ABC type metal ion transport system, periplasmic component surface adhesin 1.67523367831e-06 0.000148776035682 59386398898.8 +UniRef50_A5UTU3 Peptidoglycan binding domain 1 protein 8.65116055036e-08 5.0644900521e-08 -14479828.9354 +UniRef50_Q17WK7 8.14693042933e-06 2.12338613798e-05 5283354619.42 +UniRef50_J9GTY9 1.22004432289e-05 8.28536304926e-07 -4590978374.21 +UniRef50_B9JRL5 Transposase 3.63730340908e-07 2.94162461802e-07 -28085406.489 +UniRef50_A0A037ZJL2 1.70721820302e-06 1.32819199225e-06 -153017532.462 +UniRef50_A5UJV0 Probable 3 phosphoshikimate 1 carboxyvinyltransferase 2.78167706262e-05 8.63764099901e-06 -7742849984.89 +UniRef50_G7U4Y3 1.9226790604e-06 2.99738298451e-05 11324593798.1 +UniRef50_W0N4N9 2.02604783069e-06 1.86795258236e-06 -63824991.7977 +UniRef50_P33228 Protein RecT 2.39386714412e-05 1.83133793264e-05 -2270999456.84 +UniRef50_K2KBM0 Sulfite oxidase subunit YedZ 7.09512539188e-07 2.59479089111e-07 -181684026.328 +UniRef50_Q5HGR8 2.43521485344e-05 7.02314631218e-06 -6995930847.87 +UniRef50_UPI00034742BC hypothetical protein 5.63730120781e-08 3.34189854387e-06 1326406975.12 +UniRef50_UPI00047A7CB2 DNA mismatch repair protein MutT 9.88724964352e-08 6.61209898448e-07 227022509.849 +UniRef50_D1GUM7 Probable siderophore biosynthesis protein SbnA 0.000148637308871 1.69477649664e-05 -53164684886.9 +UniRef50_A0A022P693 5.69240968097e-06 4.43699278139e-06 -506827208.058 +UniRef50_F0L7M8 Transcriptional regulator, GntR family 1.69853613007e-05 1.97041611899e-05 1097612878.7 +UniRef50_U5WK69 9.76474198911e-06 1.94500574217e-06 -3156923481.84 +UniRef50_X5EXM8 Glycosyl transferase 2.80239524405e-06 3.87519549816e-06 433102627.324 +UniRef50_UPI000363A82D hypothetical protein 3.22718469417e-07 4.5148619415e-07 51985110.6324 +UniRef50_Q8CS03 9.47913578412e-05 2.88158408082e-05 -26635125836.9 +UniRef50_Q8CS02 1.88348440519e-05 5.46882787401e-06 -5396024750.48 +UniRef50_P29018 ATP binding permease protein CydD 2.29030241694e-05 1.10439726391e-05 -4787644629.71 +UniRef50_Q8CS00 0.000103572605038 2.99171270556e-05 -29735620315.9 +UniRef50_UPI00047DEE62 hypothetical protein 1.08211581057e-05 1.90342861798e-06 -3600196827.04 +UniRef50_B2GKX1 O acetylhomoserine lyase 0.000177439382789 0.000118076687546 -23965448531.8 +UniRef50_Q8CS04 3.15742328581e-05 5.90142034844e-06 -10364429451.0 +UniRef50_M4BT40 1.46858441804e-06 4.14930542032e-06 1082239964.77 +UniRef50_A4WS78 Signal transduction histidine kinase 5.38570611265e-05 1.71979358173e-05 -14799738745.4 +UniRef50_Q9RTF4 1.03895226289e-05 7.05999066355e-05 24307670888.0 +UniRef50_E3FY93 Fibronectin type III domain protein 1.17128833081e-08 2.1915480541e-07 83746849.5512 +UniRef50_UPI0003666F64 hypothetical protein 1.0507380625e-07 1.59119537993e-07 21818925.1204 +UniRef50_UPI00047D0052 hypothetical protein, partial 1.67163930338e-07 2.08642588941e-07 16745443.4784 +UniRef50_Q65MD5 UPF0753 protein BLi00845 BL00917 8.64083282815e-08 4.91866063033e-06 1950839552.74 +UniRef50_Q9RTF9 1.75574878536e-06 0.000130618619574 52023522262.8 +UniRef50_Q9RUC1 SsrA binding protein 2.38915182824e-06 0.000331756388493 1.32969595232e+11 +UniRef50_A1WR56 Oxidoreductase FAD binding domain protein 0.000140584201309 6.69403384336e-05 -29730931154.6 +UniRef50_G8U508 DNA directed RNA polymerase 1.31954380742e-06 2.00828367244e-05 7574971602.09 +UniRef50_P37478 Transcriptional regulatory protein YycF 0.000110149563229 5.62359779721e-05 -21765575962.3 +UniRef50_B7GY06 3 oxoadipate enol lactonase 2 6.20041420128e-06 4.81444432024e-05 16933319218.9 +UniRef50_O26858 Endonuclease III 4.98845489152e-05 4.16917701458e-06 -18455856627.0 +UniRef50_Q6GAV6 Coenzyme A disulfide reductase 7.89921248907e-05 7.63789910027e-06 -28806576566.4 +UniRef50_B0K8B2 Chorismate synthase 2.07610984002e-07 2.1091136051e-06 767659942.199 +UniRef50_Q8DTC7 Chaperone protein ClpB 5.33918440011e-05 2.2109248304e-05 -12629167763.5 +UniRef50_Q3SFC9 Dihydroxy acid dehydratase 3.76069344137e-05 6.35884848475e-06 -12615235746.6 +UniRef50_B7H186 FhuE receptor 6.53844091497e-07 4.9880673943e-05 19873475292.2 +UniRef50_X1BNR5 Marine sediment metagenome DNA, contig 2.06504580609e-07 5.59046047906e-07 142325316.518 +UniRef50_A3PWR0 Nitric oxide reductase, NorZ apoprotein 3.4044194681e-06 5.4231420636e-05 20519484088.9 +UniRef50_B7H4G2 Opine oxidase subunit A 1.3198810799e-06 0.000120781402686 48228082230.1 +UniRef50_Q8TYD7 GMP synthase [glutamine hydrolyzing] subunit B 2.86690139835e-05 1.89303208621e-05 -3931629920.31 +UniRef50_A0AYH9 Transcriptional regulator, LysR family 1.23901309249e-06 3.11019322598e-05 12056026927.1 +UniRef50_P77804 Protein YdgA 2.34066627055e-05 6.96885418981e-06 -6636145012.38 +UniRef50_E3GWU1 Radical SAM domain protein 3.14492234277e-05 9.69791778839e-06 -8781269005.12 +UniRef50_X1I3C3 Marine sediment metagenome DNA, contig 2.29214721782e-07 2.99570050762e-07 28403309.6662 +UniRef50_UPI0003814C5C hypothetical protein 1.19891435221e-06 1.32805091763e-06 52134016.1439 +UniRef50_R5SU23 8.02697736249e-08 6.30031567142e-08 -6970745.13207 +UniRef50_UPI00045E9580 macrolide ABC transporter ATP binding protein 1.49711890819e-07 6.44543156809e-07 199769454.343 +UniRef50_B2ULR4 Bifunctional protein PyrR 1.34848221917e-07 8.86866134317e-07 303598859.533 +UniRef50_A9KCM9 BolA 3.01647321862e-07 1.01075491463e-06 286275436.929 +UniRef50_C1CVP1 Ribosome recycling factor 2.18199993555e-06 0.000354299737415 1.42154251591e+11 +UniRef50_G7MCQ9 ABC type transporter, integral membrane subunit 6.13986828896e-06 1.39444730836e-05 3150814728.87 +UniRef50_B3DRY6 Bifunctional purine biosynthesis protein PurH 2.6486789968e-08 1.77147347963e-07 60823516.0755 +UniRef50_H1G027 1.56116992561e-07 2.43115455811e-07 35122347.2052 +UniRef50_D3MIV3 Peptidase, M16 family 2.26718311622e-06 6.68854626663e-05 26087192409.8 +UniRef50_R4ZWW3 PTS system, galactitol specific IIC component 8.69192638007e-06 9.99538161359e-06 526220872.966 +UniRef50_U8B0J7 5.18183557978e-06 3.43945912219e-06 -703418757.293 +UniRef50_UPI000374EC18 hypothetical protein 4.99872153593e-07 5.86898500224e-06 2167576743.42 +UniRef50_UPI00036B9450 hypothetical protein 1.75695431869e-07 1.98088847462e-08 -62933312.0166 +UniRef50_UPI000370E751 hypothetical protein 5.44963059974e-07 7.33102245217e-08 -190412037.503 +UniRef50_C6SNZ9 4.92207714096e-05 7.17081644945e-06 -16976082828.4 +UniRef50_B8G2Q5 Cytidylate kinase 1.36281666374e-07 2.42597041569e-07 42920821.6026 +UniRef50_UPI0003809B2B hypothetical protein 1.23160486197e-07 1.26591717211e-06 461344897.303 +UniRef50_C7ZTG5 Glycosyl transferase 0.00014954770324 1.5921349195e-05 -53946598907.7 +UniRef50_Q8YD09 Bifunctional imidazolonepropionase histidine ammonia lyase 1.56719494513e-08 4.26088746529e-07 165690297.361 +UniRef50_H4U829 Hydrogenase accessory protein HypB 1.48974325882e-05 6.88711730073e-06 -3233862579.17 +UniRef50_Q5FUG4 3 isopropylmalate dehydratase small subunit 0.000175692221427 2.15737735038e-05 -62219508672.5 +UniRef50_D6ZU16 Glycerate kinase 1.55180822735e-05 2.42593427238e-05 3528954111.11 +UniRef50_UPI00026288A1 hypothetical protein 2.31766341306e-08 4.16969038085e-06 1673998483.0 +UniRef50_Q2S158 Aspartate tRNA ligase 3.12312628212e-08 8.25784797146e-05 33325337168.6 +UniRef50_A7X770 ATP phosphoribosyltransferase 0.000101935989528 6.66135996184e-05 -14260082261.0 +UniRef50_UPI00036DFED1 MULTISPECIES 3.2976425846e-07 5.85964362855e-07 103431126.073 +UniRef50_P07822 Iron hydroxamate binding protein FhuD 2.08461444654e-05 7.93292768142e-06 -5213224078.69 +UniRef50_U6I825 Zinc finger protein 341 7.82951039281e-07 7.9040042468e-07 3007408.29981 +UniRef50_B2VIL6 Ubiquinone biosynthesis O methyltransferase 1.47263714763e-06 2.81042008797e-06 540079389.458 +UniRef50_Q6D3A9 Glutathione import ATP binding protein GsiA 2.7166830581e-05 9.15446067899e-06 -7271814766.07 +UniRef50_F8H1K8 Chemotaxis transducer 1.04644365957e-05 3.92743874731e-06 -2639066249.38 +UniRef50_Q0AXL3 Peptide deformylase 6.44861604208e-08 1.44844697055e-07 32441727.3494 +UniRef50_J3N076 2.91696897156e-07 2.73746690366e-06 987387364.597 +UniRef50_V4V1N3 3.29202897256e-06 2.69285749417e-06 -241892878.487 +UniRef50_UPI0002191AAA replication initiation protein 2.12250100338e-06 9.45082511593e-07 -475338293.685 +UniRef50_X1NJX5 Marine sediment metagenome DNA, contig 8.97212298765e-08 6.49761880694e-07 226095283.207 +UniRef50_B0U1N1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 9.13814578866e-05 2.904872743e-05 -25164488193.9 +UniRef50_I4AP74 O acetylhomoserine sulfhydrylase 3.76162982168e-06 8.99768045418e-06 2113857893.91 +UniRef50_R7PTJ2 Predicted ATPase involved in DNA repair 2.44458684891e-05 5.17001043326e-06 -7781900438.5 +UniRef50_Q81G06 Histidinol dehydrogenase 3.93926476448e-08 6.03117589805e-08 8445301.95259 +UniRef50_S1GW72 Autoinducer 2 kinase LsrK 2.16597231677e-05 5.46882787401e-06 -6536463114.69 +UniRef50_UPI00037675A5 hypothetical protein 2.55536300176e-07 1.66172493484e-07 -36077265.3788 +UniRef50_P06999 ATP dependent 6 phosphofructokinase isozyme 2 2.93851928884e-05 3.98179827223e-06 -10255662141.3 +UniRef50_X1DD44 Marine sediment metagenome DNA, contig 1.35118283823e-06 3.2429155335e-07 -414568613.079 +UniRef50_K0ZUL0 Replication initiator protein A protein 6.47859419759e-08 5.11901190062e-08 -5488800.57238 +UniRef50_S2WX32 Polyphosphate kinase 1.13947921988e-06 5.65192022217e-05 22357473761.4 +UniRef50_G0DRX2 3.74986081636e-06 8.68578544689e-06 1992693343.95 +UniRef50_R6ESV1 2.04989088667e-07 2.46507692003e-07 16761569.6573 +UniRef50_UPI0004719DB7 ABC transporter 2.45422070974e-08 3.90619031269e-08 5861779.46382 +UniRef50_UPI00036E309D hypothetical protein 3.62529285432e-08 1.98283870066e-07 65413879.4361 +UniRef50_UPI000362C308 hypothetical protein 5.70725105787e-05 8.65534902244e-06 -19546602265.7 +UniRef50_UPI00036A7F13 hypothetical protein 2.55784353542e-07 4.21281825015e-08 -86255618.1053 +UniRef50_A7X4P8 Holo [acyl carrier protein] synthase 3.59001701015e-05 5.16588988672e-06 -12407806074.7 +UniRef50_J7N1F5 Teichoic acid biosynthesis protein B family protein 0.000237707360528 4.74298684634e-05 -76817358514.0 +UniRef50_A0A034GY86 Azaleucine resistance protein AzlC 4.69094440527e-07 3.15413185886e-07 -62043008.3796 +UniRef50_V6U6B5 3.22390049211e-06 3.6970888349e-06 191031940.658 +UniRef50_B0SW92 1.71799375959e-06 7.39978776146e-07 -394836650.41 +UniRef50_J0CH97 3.1646394846e-07 2.5116673533e-07 -26361286.2275 +UniRef50_B2VHU9 Adenine phosphoribosyltransferase 3.24908098978e-07 1.63089275807e-07 -65328244.6544 +UniRef50_M7DRE6 Transposon protein 6.41392057456e-05 7.07138259181e-06 -23038980508.1 +UniRef50_Q8G7Y6 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 2.11878320628e-06 6.48924587117e-05 25342503121.2 +UniRef50_D1B2W6 4.20646833606e-07 6.30860352391e-07 84865777.1435 +UniRef50_UPI000471F8A5 hypothetical protein 9.96621724212e-07 5.45286899571e-07 -182209407.209 +UniRef50_W0L7A3 AAT family amino acid transporter 6.01047681903e-06 2.54054674718e-06 -1400853350.84 +UniRef50_P23669 Threonine synthase 2.90022701184e-06 0.000383347011995 1.53591035705e+11 +UniRef50_K4S1D1 1.52212092278e-06 2.84036977267e-07 -499829681.801 +UniRef50_UPI00035D2EF1 hypothetical protein 2.54283141328e-07 2.59626016317e-07 2156984.19751 +UniRef50_P54517 3 dehydroquinate dehydratase 5.49297682778e-06 0.000816695787821 3.27492529376e+11 +UniRef50_UPI0003C13F0C PREDICTED 1.03615913215e-06 3.06378321006e-07 -294621468.876 +UniRef50_UPI0004711337 hypothetical protein 1.11024693234e-06 7.50538228566e-06 2581794619.27 +UniRef50_Q6BF16 2 dehydro 3 deoxy 6 phosphogalactonate aldolase 1.70742647499e-05 1.26876993397e-05 -1770910285.31 +UniRef50_V6MLI1 4.24078677035e-07 1.83161495439e-06 568239667.579 +UniRef50_UPI0003AA777F hypothetical protein 7.8523302985e-07 2.12208784433e-06 539704693.659 +UniRef50_Q2RWR9 Light independent protochlorophyllide reductase subunit B 2.54560331955e-06 1.59474598804e-07 -963309445.659 +UniRef50_D2ZR32 3.17551299089e-05 2.92163659538e-05 -1024930162.81 +UniRef50_E4UD93 7.31611406844e-07 4.63072628498e-07 -108412400.16 +UniRef50_P55995 Lon protease 1.44271651601e-06 2.43176166838e-05 9234877904.33 +UniRef50_Q09580 Probable GMP synthase [glutamine hydrolyzing] 2.77076506611e-08 3.80762783076e-08 4185942.21826 +UniRef50_Q18FG3 CTP synthase 6.23446819532e-08 2.0174364918e-06 789294555.311 +UniRef50_B1XZN1 Protease Do 1.24996424237e-05 5.59370466766e-06 -2788011817.5 +UniRef50_UPI0004705E36 ABC transporter substrate binding protein 1.00796048995e-07 1.35195029217e-07 13887290.4386 +UniRef50_UPI0003B69A56 signal recognition particle, partial 7.12264366523e-08 2.40897757354e-07 68498394.2686 +UniRef50_A0L3M0 Biotin synthase 4.61669780197e-08 1.80576090261e-07 54262607.997 +UniRef50_UPI0003B4EA07 transposase ISSod13 1.477178825e-07 6.3086796412e-07 195053616.868 +UniRef50_W8QW60 Lipoprotein 6.10653276963e-06 4.1337386219e-06 -796441206.345 +UniRef50_UPI0001FE2A0F phospho 2 dehydro 3 deoxyheptonate aldolase 2.39917669223e-07 4.36138947983e-08 -79250242.6536 +UniRef50_I0C5E5 0.000108766569786 7.98177414467e-06 -40688058768.8 +UniRef50_P07658 Formate dehydrogenase H 3.70533294739e-05 9.65600641632e-06 -11060635521.3 +UniRef50_J1E3J1 1.48712953523e-05 9.73571555587e-06 -2073296584.47 +UniRef50_J7QJA6 SPFH domain band 7 family protein 6.04884381308e-06 8.9552099581e-06 1173335677.87 +UniRef50_UPI0004776671 heat shock protein Hsp33 2.70577728831e-06 2.18441107368e-06 -210481938.729 +UniRef50_P32051 2.79346522841e-06 1.15487565524e-06 -661518718.444 +UniRef50_C3GUE0 Alcohol dehydrogenase GroES domain protein 1.75032143208e-06 1.90735761525e-05 6993610510.87 +UniRef50_UPI000472812C hypothetical protein 8.51989178709e-07 4.88846429145e-08 -324223156.301 +UniRef50_R1ALN2 2.41462252992e-06 3.1983758685e-06 316410840.52 +UniRef50_UPI000478EC80 hypothetical protein 6.98586484844e-08 1.25555570006e-07 22485530.6964 +UniRef50_UPI000479C4BA MFS transporter 5.30949588193e-08 1.56224775903e-07 41634772.702 +UniRef50_U3T7W9 9.36607797792e-06 5.74592944676e-05 19415821667.0 +UniRef50_A4IJB8 Ribosomal RNA small subunit methyltransferase A 5.24567330848e-07 2.20134410198e-07 -122903305.878 +UniRef50_X1R1D8 Marine sediment metagenome DNA, contig 2.7838324363e-07 3.38350365452e-07 24209462.9589 +UniRef50_UPI000372FCE9 hypothetical protein 4.38166925355e-08 6.64063069258e-07 250401073.562 +UniRef50_UPI000428F92B chemotaxis protein CheR 2.28015843763e-06 1.0140946232e-06 -511125498.235 +UniRef50_K2F9K7 1.77972950428e-06 2.75730957517e-06 394661070.875 +UniRef50_M8DGK3 3.23559419016e-05 0.000148311731469 46812775185.7 +UniRef50_C6WMT0 8.01439071958e-07 3.92897523446e-07 -164933236.503 +UniRef50_B8ZR59 Ribonuclease PH 1.47781175576e-07 2.20404192462e-07 29318803.1015 +UniRef50_UPI000474B21F porin 1.9725458607e-06 4.71499843053e-07 -605990697.231 +UniRef50_H9KFK6 1.02576622508e-08 2.4755441389e-08 5852931.34585 +UniRef50_P23160 34.2 kDa protein in rubredoxin operon 3.80167100671e-06 2.34258368332e-05 7922516559.75 +UniRef50_UPI00016C0EFE tagatose bisphosphate aldolase, partial 7.13004778866e-08 2.02503536621e-06 788746749.438 +UniRef50_K7S7L1 Drug resistance MFS transporter, drug 1.87176344854e-06 2.98870740571e-05 11310124679.2 +UniRef50_H1R8C9 2.55930873442e-05 2.43563045475e-05 -499304392.059 +UniRef50_Q6A7W9 NAD kinase 1.84740288181e-06 9.79345085327e-05 38791543672.6 +UniRef50_UPI000334035B PREDICTED 9.51943504312e-07 3.63412218712e-07 -237597302.088 +UniRef50_UPI00036D6A4E hypothetical protein 1.37196393215e-06 1.01062626954e-07 -513078452.622 +UniRef50_F0KFU5 5.3629395291e-08 5.65326475231e-05 22801272693.7 +UniRef50_P59210 Regulatory protein RecX 4.26187714962e-05 4.37926485832e-05 473908585.114 +UniRef50_Q9RX92 Single stranded DNA binding protein DdrA 1.81193274649e-06 0.000104170248907 41323308312.0 +UniRef50_UPI00046E5527 DNA polymerase IV 3.05611113412e-08 6.18071952887e-08 12614427.5222 +UniRef50_UPI0004133718 phosphopantetheine adenylyltransferase 1.4494256663e-07 1.77881648403e-07 13297911.5197 +UniRef50_B3WF00 tRNA dimethylallyltransferase 5.36728692198e-08 7.34228059238e-08 7973291.80638 +UniRef50_Q8CT65 0.00014620603275 7.01764692989e-05 -30694067752.9 +UniRef50_A6M077 Transcriptional regulator, MarR family 2.91870609934e-06 2.2219020663e-05 7791773830.86 +UniRef50_Q5HL47 0.000105786317969 3.61078024366e-05 -28130071772.0 +UniRef50_G2XMI1 Hypothetical_protein 1.76008782196e-07 3.94499770079e-07 88207492.9943 +UniRef50_U3QV92 N acetyl anhydromuranmyl L alanine amidase 3.25920959562e-05 2.28375937235e-05 -3938012252.54 +UniRef50_Q46D36 2 cys peroxiredoxin, subunit A 4.89184988913e-06 4.46322476372e-06 -173041222.95 +UniRef50_Q49WA8 8.46796228654e-05 7.92220826285e-06 -30987910194.5 +UniRef50_P48924 NADH ubiquinone oxidoreductase chain 6 1.56395330266e-06 3.89457286124e-07 -474158454.564 +UniRef50_P19765 Insertion element IS1 protein InsB 3.85189784541e-06 2.44605755818e-05 8319976099.1 +UniRef50_P37329 Molybdate binding periplasmic protein 5.13967355875e-05 7.07475113025e-06 -17893329017.3 +UniRef50_F3ZLD3 1.82289081746e-06 2.06109014451e-06 96163991.3645 +UniRef50_A5ULS6 Transcriptional activator 4.89828015995e-05 8.73176457548e-06 -16249837582.4 +UniRef50_UPI000255E297 cobinamide adenolsyltransferase 5.78782405088e-07 3.40786668262e-05 13524314430.6 +UniRef50_P11551 L fucose proton symporter 1.49024098429e-05 5.16338772935e-06 -3931762738.48 +UniRef50_Q5XCB9 Putative NADH nitroreductase Spy0809 5.80300403822e-05 6.48984392626e-05 2772856912.75 +UniRef50_A4SZM1 Glutamine tRNA ligase 2.26669038139e-06 5.85261468638e-06 1447681646.16 +UniRef50_W6K439 5.12763621579e-07 1.12797752791e-07 -161471129.363 +UniRef50_UPI000255A647 hypothetical protein 2.37212705831e-07 1.27675722166e-07 -44221424.4755 +UniRef50_M4ZGM6 PTS system, 3 keto L gulonate specific IIB component 8.10348186513e-06 7.60472202226e-06 -201355469.038 +UniRef50_K0LCS5 Sulfite reductase alpha subunit 0.000248514044015 4.49535662932e-05 -82179862824.3 +UniRef50_D9SQP8 YhhN family protein 4.93600794051e-06 5.70031624348e-06 308560641.027 +UniRef50_UPI000255AA05 3 hydroxybutyrate dehydrogenase, partial 2.20896778268e-06 3.2203874492e-06 408322530.889 +UniRef50_E2QLB6 C4 dicarboxylate binding periplasmicprote in 0.00011406222281 2.66474772113e-05 -35290405497.8 +UniRef50_Q2NGX7 5.9291399331e-06 6.44327356797e-06 207562057.526 +UniRef50_D5RU63 7.8431940772e-08 6.52581587215e-07 231791257.877 +UniRef50_D6M4D2 Nogalamycin resistance protein SnorO 3.51337358496e-08 3.89185400082e-07 142935001.553 +UniRef50_A0A028PVV2 Lactate dehydrogenase 2.46811448246e-05 3.79711036505e-06 -8431140987.22 +UniRef50_A6W2Y6 PfkB domain protein 4.1177469548e-06 6.55510165066e-06 983990000.424 +UniRef50_UPI00037B582D hypothetical protein 1.1168952412e-06 8.69198172477e-07 -99998346.2283 +UniRef50_X5HEL8 Alkyl hydroperoxide reductase 1.16398560529e-06 1.90635416028e-06 299703295.536 +UniRef50_Q03K00 ABC type multidrug transport system, permease component 7.37999127257e-05 2.41074861385e-06 -28820681595.5 +UniRef50_O34512 7.58252431427e-06 5.94254443063e-05 20929622984.9 +UniRef50_A6LQS2 Metal dependent phosphohydrolase 1.98571452162e-05 2.60441625686e-05 2497774828.4 +UniRef50_UPI00036F122F hypothetical protein 5.31141996539e-07 7.61631486805e-08 -183680544.099 +UniRef50_Q8GNZ1 Rep1 4.92007061126e-05 8.43642587898e-06 -16457040164.3 +UniRef50_L1K8E5 1.92960502688e-05 1.07672354005e-07 -7746583632.08 +UniRef50_Q3IVQ7 1.09117967776e-06 2.49220233964e-06 565610041.082 +UniRef50_A0A009CML4 Surface protein G 1.76237235561e-05 2.25190517071e-05 1976304046.99 +UniRef50_UPI0004560170 hypothetical protein PFL1_00672 9.84704557944e-07 3.53474105363e-07 -254835479.776 +UniRef50_UPI0004736936 hypothetical protein, partial 1.37102730109e-07 5.42533653659e-07 163677439.034 +UniRef50_X5HTN1 Biofilm synthesis protein 1.0614802384e-06 4.23095276818e-05 16652342923.4 +UniRef50_Q1RGX4 Lipoyl synthase 7.47414202997e-05 8.47949748779e-06 -26750751364.4 +UniRef50_I3YAK9 Proline iminopeptidase 2.46144750781e-06 3.83793876199e-06 555706410.76 +UniRef50_Q2YV92 0.000129379010153 2.64618521775e-05 -41548919610.5 +UniRef50_UPI00046D6590 hypothetical protein 1.10403675481e-06 1.59313951595e-07 -381396188.71 +UniRef50_UPI000362AF2C hypothetical protein 3.64046394639e-07 2.6270241094e-07 -40913809.8498 +UniRef50_Q8DT23 S adenosylmethionine synthase 6.19315117993e-05 9.41558918183e-06 -21201322403.5 +UniRef50_UPI0003ADBFFE PREDICTED 2.08720010393e-07 2.87353820168e-07 31745433.9515 +UniRef50_A4JKW7 Major facilitator superfamily MFS_1 1.12910833939e-05 8.26114833423e-06 -1223221965.07 +UniRef50_W5VF97 ATPase 5.53455376421e-07 4.18394387606e-07 -54525778.5693 +UniRef50_B9AGK2 6.42758079257e-05 4.53476387174e-06 -24118192589.6 +UniRef50_UPI0002488527 hypothetical protein 7.04413658293e-07 2.89464911362e-07 -167519901.13 +UniRef50_Q5LLN2 Dephospho CoA kinase 6.2158264181e-06 3.91147953907e-06 -930293112.58 +UniRef50_Q93Z70 Probable N acetyl gamma glutamyl phosphate reductase, chloroplastic 6.03080642009e-07 4.23970424209e-07 -72308992.8554 +UniRef50_Q1CV54 5.16482740875e-06 2.05630799377e-05 6216463503.76 +UniRef50_S9U7T2 Solute carrier family 39 , member 1 2 3 2.6426198099e-07 1.80793668234e-06 623200419.954 +UniRef50_UPI00039DF06E hypothetical protein 3.41279982195e-07 5.36642369426e-08 -116114005.8 +UniRef50_UPI0002378355 cystathionine beta lyase 9.73673120119e-08 1.41385853007e-07 17770825.168 +UniRef50_I6TQY3 Alpha beta hydrolase 4.00829099202e-05 1.5111363497e-05 -10081319726.4 +UniRef50_F6CZ33 AsmA family protein 1.53678330736e-08 1.75217784758e-08 869574.190751 +UniRef50_UPI0003A40D95 dehydrogenase 1.71183054011e-08 1.16303984539e-07 40042475.8131 +UniRef50_A6LT40 Phage integrase family protein 1.76120990128e-06 9.23717368627e-06 3018138320.39 +UniRef50_A8F1C5 NADH quinone oxidoreductase subunit D 2.72989312928e-07 5.69265240448e-07 119610227.654 +UniRef50_A3QJ60 3.65883834415e-07 1.73998254933e-07 -77466563.1377 +UniRef50_X2H5U3 7.13033898912e-06 3.64424347889e-05 11833652774.2 +UniRef50_UPI000328E03F PREDICTED 3.0773851109e-06 5.25595856749e-06 879516838.528 +UniRef50_A0A037ZQW3 Chromosome partitioning protein ParA 2.85452048409e-07 7.92152142789e-07 204561046.011 +UniRef50_A9B2Q5 Aminomethyltransferase 2.09469785559e-07 2.16496345351e-07 2836708.41362 +UniRef50_Q6GDH0 Carbamate kinase 2 0.000138025709526 3.86581497156e-05 -40115903272.5 +UniRef50_A9CLS9 1.52410409167e-07 7.29942624529e-06 2885337996.79 +UniRef50_Q59266 4 alpha glucanotransferase 3.86332411414e-06 2.76906262183e-05 9619374253.34 +UniRef50_Q9CJS1 ATP dependent RNA helicase RhlB 1.78983202047e-05 5.76320433583e-06 -4899095190.89 +UniRef50_A6M113 CheA signal transduction histidine kinase 2.96146035164e-06 1.17233099005e-05 3537266182.86 +UniRef50_UPI000310CC9F C4 dicarboxylate ABC transporter 6.10350673584e-08 1.37205802685e-07 30751060.5714 +UniRef50_P77930 Bacterioferritin 1.5322765884e-06 0.000105728180323 42065164965.3 +UniRef50_B9MJH4 Biotin synthase 2.2712549375e-05 8.2576251672e-05 24167711227.5 +UniRef50_I0EIM7 Fucosyltransferase 2.10757552288e-06 7.1965523592e-05 28202510888.9 +UniRef50_UPI0003B315F6 deoxyguanosinetriphosphate triphosphohydrolase 1.17367724376e-06 2.39213697482e-07 -377254400.79 +UniRef50_Q0AM89 5.23807335475e-08 5.17718723785e-06 2068947274.23 +UniRef50_Q9RWF7 UDP glucose 4 epimerase, putative 2.16531159953e-06 0.000320619284332 1.28563776662e+11 +UniRef50_UPI00036BC390 hypothetical protein 8.78125982316e-07 1.04066611986e-07 -312497266.579 +UniRef50_B1KTG4 Glutamate racemase 5.69646163234e-06 4.1545197336e-06 -622500866.276 +UniRef50_UPI00047ECB6C hypothetical protein 1.30435070366e-08 2.31000919179e-07 87992081.9199 +UniRef50_UPI0002377A5A flagellar basal body P ring protein, partial 7.53903847578e-07 4.63279600798e-07 -117328574.786 +UniRef50_B3WF19 Phenylalanine tRNA ligase alpha subunit 0.00025359766962 0.000147225722693 -42943660305.0 +UniRef50_UPI000360FD43 hypothetical protein 4.63865287782e-08 6.76460391419e-07 254368550.224 +UniRef50_B1J595 Hydrolase, alpha beta fold family 1.36935667056e-06 8.60222715458e-06 2919998571.7 +UniRef50_UPI00046E9EAA peptide ABC transporter permease 4.36104846346e-07 5.07013831364e-07 28626827.4029 +UniRef50_A5UJB4 Putative transposase 0.000211444271328 2.96404468402e-05 -73396434929.6 +UniRef50_Q57N58 6.53488926519e-07 5.42894065856e-06 1927908465.61 +UniRef50_UPI0002B4C28A PREDICTED 9.24170305512e-08 4.36142557167e-07 138766213.081 +UniRef50_UPI0003A5EC9D hypothetical protein 2.4649387294e-06 2.97798358178e-06 207122502.674 +UniRef50_UPI000418F39C glycosyl transferase 1.58039777767e-07 1.40363762127e-07 -7136024.42297 +UniRef50_S3ANI4 1.04810425869e-06 3.93087257461e-07 -264438401.359 +UniRef50_B9KTI2 3.60328859787e-06 3.5873433672e-06 -6437285.29146 +UniRef50_UPI00045D9861 PREDICTED 5.27446951194e-08 1.59304303971e-06 621837343.297 +UniRef50_UPI00022CAA7D PREDICTED 2.8929446423e-05 7.86007976872e-06 -8505961868.54 +UniRef50_UPI000288AA6A riboflavin synthase subunit alpha 1.80391184681e-07 1.52491920597e-07 -11263275.2732 +UniRef50_A6LTI2 Signal transduction histidine kinase regulating citrate malate metabolism 8.909823002e-06 1.40950392552e-05 2093335431.18 +UniRef50_C5N6M7 0.000102905817507 2.3815863322e-06 -40582865696.4 +UniRef50_W6VNR8 6.00241511792e-07 1.35229329591e-06 303612533.962 +UniRef50_Q6YTQ3 3.27240139295e-06 4.22529031195e-06 384692949.862 +UniRef50_UPI0003B3015D DNA directed RNA polymerase subunit alpha, partial 5.18412173225e-08 1.10923936579e-07 23852418.7903 +UniRef50_D3QGV6 0.000121287276709 5.23999172167e-05 -27810672370.0 +UniRef50_U3QX72 GntR family transcriptional regulator 1.28197014836e-05 3.32626120494e-05 8253053858.14 +UniRef50_A5UKM5 6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB 2.77479063826e-05 5.01161660873e-06 -9178919187.37 +UniRef50_UPI00034DE84F ABC transporter permease 2.12250811283e-07 1.22659462902e-06 409503046.62 +UniRef50_UPI00046C9569 hypothetical protein 1.10739205926e-07 6.43258338839e-07 214984508.702 +UniRef50_W9GJ85 Transcriptional regulator 3.65539529709e-08 1.20840586725e-07 34027548.3598 +UniRef50_X8FK87 binding domain protein 0.000165654163339 3.39189547824e-05 -53183120267.3 +UniRef50_I6TYV1 Phage associated cell wall hydrolase 1.00662930361e-05 2.17936040507e-05 4734459366.88 +UniRef50_UPI000471FDE5 membrane protein 1.9463527258e-07 5.19044610804e-07 130968030.791 +UniRef50_A8B5Y9 1.13809673637e-06 6.19356268256e-06 2040953640.02 +UniRef50_J8PEK3 2.19262028083e-07 3.37538434873e-07 47749636.8358 +UniRef50_Q72PJ7 2 oxoglutarate dehydrogenase E1 component 2.02471641175e-08 8.40877917307e-08 25773244.78 +UniRef50_A3JLI9 1.50135827591e-07 9.89688039901e-08 -20656755.3177 +UniRef50_UPI00031F6CF4 hypothetical protein 4.08761562644e-06 4.14494370311e-06 23144048.0463 +UniRef50_D0K9Z2 Glycosyltransferase stabilizing protein Gtf2 0.000129972223263 1.45299990964e-05 -46605442531.6 +UniRef50_UPI00046D6398 hypothetical protein 4.10090065992e-08 3.03905032514e-06 1210346070.4 +UniRef50_K8CED6 9.08829735005e-07 1.29558264083e-06 156136894.073 +UniRef50_B9XI35 2.9033758e-07 8.91693641059e-07 242774821.318 +UniRef50_P21824 Chemotaxis protein methyltransferase 1.89724813346e-05 4.49606032923e-06 -5844308805.54 +UniRef50_A7FAU8 2.90190797016e-06 0.000150241883261 59482956089.8 +UniRef50_N3H3N3 ThiC associated domain protein 1.52762855114e-07 4.42498746558e-07 116969934.835 +UniRef50_UPI0003B6CE6C gas vesicle protein GvpS 3.23921906157e-06 1.69837366082e-06 -622058196.582 +UniRef50_G7M8E0 Cell wall binding repeat containing protein 1.20090982672e-06 2.57760363653e-05 9921280154.35 +UniRef50_O83041 Probable proline iminopeptidase 6.82716177001e-08 9.7607547662e-08 11843274.918 +UniRef50_Q1WV02 UPF0374 protein LSL_0370 0.000279453443087 0.000136773593566 -57601606130.3 +UniRef50_F6ZMA7 3.88236068703e-07 2.85875158438e-08 -145194534.173 +UniRef50_P57245 Carbamoyl phosphate synthase small chain 1.58984129822e-07 7.45422905407e-08 -34090206.7358 +UniRef50_A6LX23 3.99223967155e-06 9.46555515946e-06 2209644627.6 +UniRef50_A1SUY3 6.77320649985e-07 2.75808413104e-07 -162095417.138 +UniRef50_U3SUB6 4.07202725424e-05 2.91456954692e-05 -4672798800.48 +UniRef50_P42200 L cystine transport system permease protein TcyB 3.77719071698e-06 4.83140027771e-05 17980057556.8 +UniRef50_Q9RZU0 1.09185943826e-06 0.000216774639779 87073785149.0 +UniRef50_D6KCK7 Lanthionine synthetase C family protein 9.62390193955e-07 2.24371751724e-07 -297947101.633 +UniRef50_D3E1H3 Divalent cation transporter mgtE family 1.80286151255e-05 2.85790545738e-06 -6124601658.55 +UniRef50_B8EJS2 Anthranilate phosphoribosyltransferase 3.69532075839e-07 4.00965810729e-07 12690184.5104 +UniRef50_UPI0002EDD593 membrane protein 5.81372995094e-07 6.18185279727e-07 14861571.0439 +UniRef50_P43753 Formate acetyltransferase 0.00030702288119 0.000154114090334 -61731155270.4 +UniRef50_UPI0003814F39 hypothetical protein 4.77319666649e-07 3.50155416498e-07 -51337768.2668 +UniRef50_UPI00035C39A9 hypothetical protein 8.64418114397e-08 7.13446540004e-08 -6094907.7212 +UniRef50_UPI000475BF33 hypothetical protein 4.36700753542e-08 4.42598774154e-06 1769195418.93 +UniRef50_R9ITT5 1.21775341979e-07 1.42136629461e-07 8220101.61758 +UniRef50_A0A024HN09 Penicillin binding protein 1B 9.62363216191e-06 4.9772736482e-06 -1875791949.22 +UniRef50_U9T899 1.7167914455e-07 8.79821426313e-08 -33789506.7523 +UniRef50_UPI000380512A hypothetical protein 2.79341834759e-07 2.55194101028e-06 917476175.085 +UniRef50_Q836J8 ATP dependent helicase nuclease subunit A 3.13649038461e-08 4.81556224736e-06 1931439176.28 +UniRef50_Q5QCP2 Carboxynorspermidine carboxyspermidine decarboxylase 7.05619208358e-05 1.18773769061e-05 -23691670524.8 +UniRef50_Q16DV7 1 deoxy D xylulose 5 phosphate synthase 1 1.95896258298e-07 1.19595938992e-06 403737758.39 +UniRef50_UPI000473F09C cysteine protease 1.37611633391e-07 5.57633312206e-07 169567905.983 +UniRef50_D3P107 2.28877284981e-07 9.02665948431e-07 272016751.751 +UniRef50_G0AJ01 ABC sugar transporter, periplasmic ligand binding protein 0.000126935665188 1.14034642715e-05 -46641767249.3 +UniRef50_UPI00036BD086 hypothetical protein 8.66196423334e-08 1.71672713135e-07 34336968.4012 +UniRef50_F0Y3C6 Expressed protein 1.60449628038e-06 7.57320676271e-07 -342015187.393 +UniRef50_D3P109 7.74936426106e-08 4.64695372295e-08 -12524812.0509 +UniRef50_C1CJ99 Peptidase, M42 1.79186387112e-06 1.88632002173e-05 6891907971.82 +UniRef50_Q8TLL3 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.54956647602e-07 2.89867875495e-07 14094091.1093 +UniRef50_UPI00047E3B33 2 oxoglutarate dehydrogenase 1.05842871818e-07 6.85388304935e-07 233969603.172 +UniRef50_P14491 Protein rlx 0.00193994034719 0.000453697194461 -6.00014599012e+11 +UniRef50_E5ZTR3 1.01519317952e-06 2.36772196986e-06 546032470.055 +UniRef50_G8B0S1 1.2368060353e-07 9.39003832077e-07 329155992.506 +UniRef50_UPI0003B334FD LuxR family transcriptional regulator 1.43104383281e-07 2.41046885439e-07 39540590.0108 +UniRef50_K7UNI1 8.21831450481e-08 1.25240809525e-06 472434172.671 +UniRef50_P57037 Capsule polysaccharide modification protein LipA 2.23964603593e-06 3.56728363485e-05 13497389200.6 +UniRef50_V4QFM6 1.31330517835e-06 9.69176033959e-07 -138929158.53 +UniRef50_G2SD77 Type F conjugative transfer system protein TraW 5.81565079104e-07 2.84427826033e-07 -119957955.349 +UniRef50_P52130 Antitoxin RnlB 4.38979878167e-05 4.8018976455e-06 -15783571365.1 +UniRef50_E3Z582 Integral membrane protein 2.32179649734e-07 1.31187240275e-05 5202456101.0 +UniRef50_E4HNQ2 4.63086551023e-07 2.83805413828e-06 958803559.106 +UniRef50_F7XC63 4.38862815601e-06 1.33054478835e-06 -1234585782.43 +UniRef50_A1TWP1 Anhydrase, family 3 protein 4.85100856535e-06 2.49717943892e-05 8123008146.92 +UniRef50_I6D3Q6 Oxoglutarate dehydrogenase , E1 component 3.45066856066e-05 1.16842567521e-05 -9213694591.26 +UniRef50_Q94BZ7-2 Isoform 2 of DNA gyrase subunit B, mitochondrial 9.79376845456e-08 3.38140307567e-07 96972746.5312 +UniRef50_P37610 Alpha ketoglutarate dependent taurine dioxygenase 1.7380835065e-05 9.42071004454e-06 -3213600152.48 +UniRef50_F0XVZ5 Expressed protein 4.1307838305e-07 1.38424177799e-06 392070580.052 +UniRef50_P0A9K5 PhoH like protein 3.61015603306e-05 1.89845962736e-05 -6910328438.58 +UniRef50_U5MRD5 D galactose binding periplasmic protein MglB 1.16388280223e-06 9.69855922107e-06 3445553602.54 +UniRef50_UPI0004639C8D multidrug ABC transporter permease 2.94148386332e-08 3.88700483259e-08 3817184.18141 +UniRef50_Q88WU9 Threonine tRNA ligase 3.10274753793e-07 1.79602659548e-05 7125518037.59 +UniRef50_Q9ZLX3 DNA gyrase subunit B 1.25133342931e-06 3.52216962688e-05 13714252341.5 +UniRef50_M4XCL5 2.57325968572e-08 1.63019691513e-07 55424484.8147 +UniRef50_P39265 D allose binding periplasmic protein 1.26748101067e-05 1.93650298495e-06 -4335186358.88 +UniRef50_A5UJ66 1.18905159156e-05 4.31119277652e-06 -3059865760.0 +UniRef50_UPI0003104B05 hypothetical protein 3.59121761313e-08 1.33047730482e-07 39214815.2787 +UniRef50_UPI0004737FFB isopropylmalate isomerase 1.12639821229e-07 1.44764736336e-07 12969222.4457 +UniRef50_UPI0002887E27 anthranilate synthase, component I, partial 1.66405034582e-07 2.29963521739e-07 25659341.2156 +UniRef50_A5WAN0 NLPA lipoprotein 1.05648400768e-06 7.1671295179e-07 -137169744.723 +UniRef50_B5FMP4 Leucine tRNA ligase 2.41208025941e-05 1.58790738918e-05 -3327287014.5 +UniRef50_F2M7N9 ABC superfamily ATP binding cassette transporter, ABC protein 5.01262118706e-05 9.17654983631e-06 -16531881072.1 +UniRef50_G2LWG0 4.08883706435e-06 1.56706112424e-06 -1018071892.69 +UniRef50_O31775 0.000191488436664 3.82816013928e-05 -61851479458.2 +UniRef50_A2SNG4 1.29227855339e-07 1.13480370444e-07 -6357452.89548 +UniRef50_Q8XDS6 Leucine efflux protein 1.02621383002e-05 1.28398567476e-05 1040656569.38 +UniRef50_Q3J1F1 Phage terminase like protein large subunit 7.80230296138e-05 1.14454123784e-05 -26878201077.2 +UniRef50_W5XGS0 UDP N acetylmuramoylalanine D glutamate ligase 2.17399221928e-08 1.43984399271e-07 49351595.5048 +UniRef50_Q1LRP7 Formamidopyrimidine DNA glycosylase 7.12375770943e-08 4.10657510696e-07 137027992.346 +UniRef50_F0PKX1 Membrane associated protein 1.32998842636e-07 5.09982610938e-06 2005169117.41 +UniRef50_UPI0004244D92 xanthine phosphoribosyltransferase 3.78715192325e-07 3.06887839422e-07 -28997583.7877 +UniRef50_A5HZF5 Sensor histidine kinase 1.59144090862e-05 1.03560365961e-05 -2243983183.15 +UniRef50_Q01FQ9 WGS project CAID00000000 data, contig chromosome 01 7.48960553722e-08 6.2435764138e-08 -5030372.47621 +UniRef50_G9W9E3 Diaminopimelate decarboxylase 3.33303811472e-06 1.22972472728e-06 -849133425.067 +UniRef50_Q8DT21 4.90241543964e-06 1.50949085114e-05 4114834529.04 +UniRef50_Q8DT20 4.42723723792e-05 1.8039286078e-05 -10590618856.0 +UniRef50_A1WSR7 CreA family protein 2.60310776707e-05 3.11183114643e-07 -10383437050.9 +UniRef50_D8LC87 3.3244050419e-07 3.20462940479e-07 -4835489.45137 +UniRef50_Q72IE1 Ribonuclease H 4.07404402175e-07 3.02410999533e-07 -42387125.0605 +UniRef50_Q5KQI9 5.94931688289e-07 3.86034908756e-06 1318289075.26 +UniRef50_A6LSZ1 Lipase 5.27614665002e-06 2.21871312068e-05 6827171986.7 +UniRef50_I6RV19 Adenylosuccinate lyase 2.26832352982e-06 4.4219475427e-06 869444441.938 +UniRef50_Q8VL04 Arginine repressor 2.14006765161e-07 3.96398262003e-06 1513911269.99 +UniRef50_UPI00036D83C9 hypothetical protein 5.47412039057e-08 8.49992065332e-08 12215526.9682 +UniRef50_B2SA42 NAD NADP dependent betaine aldehyde dehydrogenase 4.0263901237e-07 6.5644247897e-08 -136048921.809 +UniRef50_UPI00047CA754 hypothetical protein 4.23346816562e-07 1.83504730729e-06 569920811.621 +UniRef50_UPI0002003A7E exodeoxyribonuclease III, partial 7.03515961127e-07 6.65964878657e-07 -15159832.7967 +UniRef50_UPI0001D560FB PREDICTED 7.34371493647e-07 3.96335350986e-07 -136469338.962 +UniRef50_D3QFS6 0.000104148996637 2.43224638237e-05 -32226950878.4 +UniRef50_UPI00037E9BF3 hypothetical protein 3.71102096765e-07 3.68407738452e-07 -1087745.51445 +UniRef50_O26329 Cobalt precorrin 8X methylmutase 5.06235893435e-05 3.01343576728e-06 -19220803241.0 +UniRef50_P76213 Excinuclease cho 1.96527045627e-05 1.62953304588e-05 -1355413125.36 +UniRef50_Q03174 Fructan beta fructosidase 6.1342964015e-05 1.94866052745e-05 -16897925658.8 +UniRef50_R7PXR3 3.58171861704e-05 1.36139602135e-05 -8963714783.02 +UniRef50_Q8YGU6 3 dehydroquinate dehydratase 6.19112518197e-07 1.17787826595e-06 225580589.195 +UniRef50_K4Q9M3 Ferrous iron transport protein B 5.96298712912e-05 1.31439973706e-05 -18766917747.6 +UniRef50_D4HCC8 ABC transporter, permease protein 3.24392471557e-06 8.90145303037e-05 34626645999.6 +UniRef50_X1J4V9 Marine sediment metagenome DNA, contig 5.81175182093e-07 3.26691313139e-07 -102738260.765 +UniRef50_U5MVM4 Chaperone protein HtpG 5.15259560648e-06 1.30488949875e-05 3187832958.61 +UniRef50_B1I4W9 Ribonuclease PH 3.10161000316e-07 1.01958630973e-05 3990979247.76 +UniRef50_UPI000304D965 hypothetical protein 2.48133905781e-08 3.33315491985e-07 124546084.085 +UniRef50_J3ABJ4 Conjugative relaxase domain protein, TrwC TraI family 1.13589389611e-07 7.88486252553e-08 -14025272.8875 +UniRef50_M5ABW2 1.65839576067e-06 6.29588728662e-06 1872212237.45 +UniRef50_D0IXW2 Transposase, IS4 3.64918164744e-08 1.12001391191e-07 30484141.9198 +UniRef50_K2BFW3 9.6510748687e-07 2.2892470022e-07 -297206024.949 +UniRef50_G2LBA7 2.0713362391e-06 1.5099223637e-06 -226649670.822 +UniRef50_A7GEL0 3 dehydroquinate dehydratase 1.1802211785e-07 2.0238471131e-07 34058214.2252 +UniRef50_Q8CU45 0.000104735315487 3.96233141951e-05 -26286513935.6 +UniRef50_Q8CU48 8.0355450717e-05 6.80648958456e-05 -4961847823.65 +UniRef50_UPI00035CC3C8 50S ribosomal protein L18 3.2725783488e-07 5.32975325771e-06 2019568789.72 +UniRef50_K2HP40 Protein translocase subunit SecA 0.000108639833735 1.93586160445e-05 -36043923185.4 +UniRef50_X6L0R0 8.16920778663e-08 5.35598792837e-08 -11357313.7887 +UniRef50_A4IKU2 Foldase protein PrsA 8.2965843938e-08 2.14245869219e-07 52999357.193 +UniRef50_R5KA87 MATE efflux family protein 2.74929033615e-05 4.46691940694e-06 -9295872283.07 +UniRef50_UPI0003B582E0 membrane protein 3.93810956675e-08 1.12759346499e-07 29623700.3131 +UniRef50_C7ZUY2 Tagatose 6 phosphate kinase 0.000260498346865 7.50557279323e-05 -74865460900.1 +UniRef50_K2J2X7 Cation transport protein ChaC 6.45946342661e-08 5.69499032583e-08 -3086271.71925 +UniRef50_P9WNP4 1,4 Dihydroxy 2 naphthoyl CoA synthase 2.73734026912e-07 8.1086042199e-05 32624920487.6 +UniRef50_V0ULY3 3.9953100943e-06 1.62493155004e-06 -956950906.133 +UniRef50_A3PR66 NADH dehydrogenase (Quinone) 0.000127156575828 3.36642233364e-05 -37744009981.0 +UniRef50_R1DJN2 2.70997668162e-07 6.93501211852e-07 170569865.289 +UniRef50_B9KJM8 3.82023528416e-07 2.76579304526e-07 -42569127.1305 +UniRef50_A1KWK7 Possible lipoprotein 1.29571849717e-06 3.1414493173e-05 12159318935.5 +UniRef50_A6W6A1 Hydroxyethylthiazole kinase 7.81795534889e-08 1.07767911699e-07 11945183.2994 +UniRef50_A6UXC5 Membrane protein, putative 7.15123188949e-06 7.3149716971e-06 66103769.6455 +UniRef50_V7HHQ1 4.83358068422e-06 2.20296783714e-06 -1062010687.62 +UniRef50_Q3JSI8 Ribose import ATP binding protein RbsA 1 1.72176607797e-06 5.26878863908e-07 -482390631.231 +UniRef50_UPI00035C22D6 hypothetical protein 1.29778803965e-06 4.90030295935e-08 -504149832.877 +UniRef50_W0HY15 8.09072793881e-07 2.94860052545e-07 -207593993.777 +UniRef50_UPI000475A254 4 amino 4 deoxychorismate lyase 1.2278209941e-06 2.82481540343e-07 -381645138.101 +UniRef50_K0X9S8 Type VI secretion associated protein 6.21917636126e-06 2.49584740632e-07 -2409997392.38 +UniRef50_P40398 0.000236617015915 7.8336192163e-05 -63899910872.8 +UniRef50_B6WBV7 Glyoxalase family protein 2.81565270229e-07 7.78883931307e-07 200773646.263 +UniRef50_UPI00047137A9 coproporphyrinogen III oxidase 7.5367803025e-07 3.42960206831e-07 -165811825.389 +UniRef50_G7M0V7 ASCH domain protein 1.01226729668e-07 1.69421997442e-07 27531266.4504 +UniRef50_UPI00047D052E iron ABC transporter substrate binding protein 4.45482243358e-07 2.17091927089e-07 -92203973.3421 +UniRef50_P9WPZ4 Probable N succinyldiaminopimelate aminotransferase DapC 7.0698901606e-08 1.51766774095e-06 584159076.746 +UniRef50_P0A067 Signal peptidase IB 0.000181248449529 7.07748024904e-05 -44599566973.7 +UniRef50_UPI000302F3DC hypothetical protein 2.61200308852e-08 9.93558413979e-09 -6533859.75661 +UniRef50_UPI0004690173 type II and III secretion system protein, partial 8.91416981359e-08 7.57161526496e-08 -5420057.46279 +UniRef50_H2JSU9 5.83209830705e-07 5.04082775762e-06 1799595058.22 +UniRef50_UPI000383150A hypothetical protein 3.72025928229e-07 1.24063564805e-07 -100105448.955 +UniRef50_R5XYV5 Aspartate tRNA ligase 3.84309536152e-06 1.38972567152e-06 -990455450.085 +UniRef50_A5FY40 Nucleoside diphosphate kinase 1.82671429973e-06 1.93760958431e-06 44769787.2231 +UniRef50_P26993 Exoenzyme S synthesis regulatory protein ExsA 1.45560149942e-06 3.55090226682e-06 845898632.031 +UniRef50_A3PHN8 Signal transduction histidine kinase 0.000143952576317 1.4540326391e-05 -52245313362.0 +UniRef50_Q7PY41 Adenylyltransferase and sulfurtransferase MOCS3 9.53041672471e-08 8.0033163949e-08 -6165091.42773 +UniRef50_A4WTQ7 NnrU family protein 0.000254524113493 2.66548158841e-05 -91993631715.5 +UniRef50_D3E0A9 DNA polymerase 3.76015445116e-05 5.80872951704e-06 -12835149555.0 +UniRef50_Q05619 Butyrate kinase 8.45335380761e-06 2.30818149184e-05 5905689261.83 +UniRef50_W5X3P1 Holliday junction ATP dependent DNA helicase RuvA 7.34662771348e-08 1.68125883006e-06 649085583.451 +UniRef50_UPI0004038030 sugar ABC transporter ATP binding protein 3.73091814994e-07 2.61353494832e-07 -45110131.0328 +UniRef50_Q8CPX4 Phosphoglycerate mutase 0.000152768451828 1.6669708524e-05 -54944732791.2 +UniRef50_UPI0003B52C1D tRNA uridine 5 carboxymethylaminomethyl modification protein 1.68455706115e-07 1.20961306819e-07 -19174071.8176 +UniRef50_K0CF00 Ferric mycobactin receptor, FemA 6.06311937618e-06 8.75012459849e-07 -2094502427.35 +UniRef50_UPI0003654A4C hypothetical protein 3.74145246884e-06 1.28278786e-06 -992593073.796 +UniRef50_Q5LYY8 Galactose 1 phosphate uridylyltransferase 5.17479552004e-05 8.81808031446e-05 14708387796.4 +UniRef50_C6A075 DNA helicase, UvrD REP family 2.36831830568e-05 7.60621310767e-06 -6490470055.06 +UniRef50_Q81M98 Acetylornithine aminotransferase 4.06626404797e-08 9.1283878551e-06 3668826188.07 +UniRef50_Q8XQ83 Chemotaxis response regulator protein glutamate methylesterase 8.03333364862e-07 8.23309473356e-08 -291077523.65 +UniRef50_B7GSK0 5.9150412716e-06 1.72018267431e-05 4556613799.28 +UniRef50_UPI0004671C29 calcium ABC transporter ATPase 1.34250215937e-07 1.57002208293e-07 9185258.51246 +UniRef50_A5A3S4 BcepGomrgp35 1.08094921896e-07 2.38600744388e-07 52686802.0266 +UniRef50_Y8DMX3 1.61730008049e-06 4.21103378182e-07 -482919287.707 +UniRef50_UPI0002895DAD glycerophosphoryl diester phosphodiesterase 1.63317333239e-07 1.02923598306e-07 -24381691.9069 +UniRef50_A4W7D6 D galactonate dehydratase family member Ent638_0932 3.45020568046e-06 2.25333512853e-05 7704100057.19 +UniRef50_T1YBI3 Extracellular matrix binding protein 1.62839315222e-05 1.9105478436e-06 -5802711372.3 +UniRef50_Q2NHG2 DNA polymerase II large subunit 3.88700893854e-05 1.06173021251e-05 -11405996917.7 +UniRef50_UPI0004791B8E 2 oxoisovalerate dehydrogenase 3.15312443683e-08 4.6811220069e-07 176253089.518 +UniRef50_UPI00047249EC 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 3.17988941838e-07 8.59485268887e-08 -93677562.971 +UniRef50_UPI00047E8CB8 hypothetical protein 1.33179409435e-07 7.85826998294e-06 3118713862.04 +UniRef50_K7SIX4 PTS system, mannitol specific IIC component 6.02371258787e-07 5.20490517464e-05 20769656234.6 +UniRef50_UPI000369E93F hypothetical protein 7.29149146068e-08 1.01214992477e-07 11425088.7172 +UniRef50_Q47537 Taurine binding periplasmic protein 2.80711000335e-05 1.08023711531e-05 -6971597760.15 +UniRef50_A6LYI5 Metal dependent phosphohydrolase 3.50774526433e-06 7.67300735797e-06 1681567420.72 +UniRef50_J0NDK0 Toxin antitoxin system, antitoxin component, HicB family 6.39025503368e-07 2.14205712327e-06 606792309.226 +UniRef50_UPI000381C2B6 hypothetical protein 8.56101381368e-07 1.32455661573e-06 189121126.704 +UniRef50_K0R8M8 3.01695949833e-07 8.72962515337e-07 230627322.723 +UniRef50_M4XJN9 Acyl CoA dehydrogenase 3.07107386331e-06 3.11679899937e-06 18459798.5379 +UniRef50_A6M3C8 Phage integrase family protein 4.52983186623e-06 2.90655584421e-05 9905373905.91 +UniRef50_UPI000468A0F6 zinc ABC transporter ATPase 5.07311131702e-08 3.58924417493e-08 -5990553.74359 +UniRef50_M9VF55 3.30162672461e-06 6.12323445631e-05 23387341681.3 +UniRef50_UPI0003F904B8 hypothetical protein 3.26907560195e-07 1.00927875483e-06 275481624.91 +UniRef50_Q57CX9 Uridylate kinase 1.70263504483e-07 1.61839524629e-07 -3400864.04092 +UniRef50_Q52742 2.36523384216e-06 3.77930830775e-07 -802298612.648 +UniRef50_UPI0004411EC4 hypothetical protein AURDEDRAFT_182094 5.16598407029e-07 3.72318586984e-07 -58247533.8647 +UniRef50_F3SY37 Transcriptional regulator, AraC family 0.000102771998338 4.33906243324e-05 -23972989377.5 +UniRef50_Q6GGT1 Elastin binding protein EbpS 7.46992168598e-05 1.7701374524e-05 -23010728393.1 +UniRef50_F0P4S1 Transcriptional regulator, GntR family 0.000168111571508 5.90157569716e-05 -44043319084.4 +UniRef50_D8HFV1 0.000202642239977 6.85450978975e-05 -54136661814.7 +UniRef50_UPI000471A03D hypothetical protein 1.0073116357e-07 1.15510014827e-07 5966403.60935 +UniRef50_B8A150 9.60040598365e-07 4.76372572497e-06 1535594362.07 +UniRef50_UPI0004576376 PREDICTED 5.01957489891e-07 1.13855953581e-07 -156681352.75 +UniRef50_R4K5C7 Arabinose efflux permease family protein 6.30353699287e-06 2.44473203256e-05 7324867980.67 +UniRef50_O41971 1.57006288586e-07 1.64291530845e-07 2941141.69993 +UniRef50_UPI000475E8C5 hypothetical protein 4.23475347031e-07 4.61799092111e-06 1693377409.75 +UniRef50_F0YD72 1.70471384753e-06 3.76106522305e-06 830174284.566 +UniRef50_W1JYG5 Transcriptional regulator 8.00101425473e-06 1.36510320554e-05 2280981519.65 +UniRef50_Q5HRK4 Elongation factor Tu 0.000140244499828 3.70254022403e-05 -41670816337.0 +UniRef50_U6EDF1 Probable cyclic pyranopterin monophosphate synthase accessory protein 3.22063940795e-05 1.06740977781e-05 -8692852247.86 +UniRef50_UPI00016C47EA nuclease PIN 6.094417447e-08 2.82738813168e-07 89541217.3687 +UniRef50_U5NMR3 6.15862530681e-05 8.68578544689e-06 -21356567940.4 +UniRef50_I0C1G6 0.00018000991922 2.40554514446e-05 -62960732417.3 +UniRef50_B2THX3 3D G5 domain protein 2.89273011926e-06 9.12951073309e-06 2517864867.71 +UniRef50_Q6MIP7 Phosphonates import ATP binding protein PhnC 4.04715213242e-07 1.39436345294e-07 -107096334.328 +UniRef50_UPI0003B485D5 AsnC family transcriptional regulator 1.22279548856e-06 4.06057027078e-07 -329727339.408 +UniRef50_K9W5R6 HI0933 family protein 1.16448682564e-06 3.03099174468e-06 753530940.407 +UniRef50_Q2FF06 Putative aldehyde dehydrogenase SAUSA300_2076 0.000119496933678 2.09525434317e-05 -39783579618.1 +UniRef50_W5W167 Putative membrane protein 4.67776325828e-06 6.26101212682e-06 639176996.878 +UniRef50_I0IAE1 1.04698002146e-06 1.72497540489e-07 -353039308.675 +UniRef50_A6M1H4 Sodium 1.1796437152e-06 2.06449640376e-05 7858388680.49 +UniRef50_Q6ABT4 1.12124551144e-05 2.33144767259e-05 4885734633.07 +UniRef50_H2JLK0 Putative zinc binding oxidoreductase 1.03901761154e-06 1.12524502528e-06 34811065.0562 +UniRef50_V9AUV8 1.67824685474e-07 1.08336337115e-07 -24016176.2367 +UniRef50_F8XNS8 ppGpp synthetase I SpoT RelA (Fragment) 9.7525589773e-08 2.63067531004e-07 66831313.103 +UniRef50_Q9I3X3 8.31618249846e-06 3.07621567909e-06 -2115438906.6 +UniRef50_G7U7F2 Pyridine nucleotide disulfide oxidoreductase 1.97228714886e-06 6.12385898276e-05 23926533670.7 +UniRef50_UPI000472306F adenylate kinase 8.45010770009e-08 6.22807847248e-07 217321048.916 +UniRef50_UPI000477F500 alanine glycine permease, partial 4.1514734763e-07 3.77300648726e-05 15064490110.4 +UniRef50_A5E8I8 Non canonical purine NTP pyrophosphatase 2.04605908547e-06 3.19302892282e-07 -697112664.872 +UniRef50_Q9I6V7 Chemotaxis protein methyltransferase 2 6.11076867238e-07 4.62758162454e-07 -59878081.1965 +UniRef50_Q04789 Acetolactate synthase 0.000280988059447 0.000147439016901 -53915387306.9 +UniRef50_Q1LCM1 0.000188709243964 4.25903358193e-05 -58989996298.8 +UniRef50_UPI00035F8C60 hypothetical protein 5.63043533032e-08 5.74798300673e-07 209322369.189 +UniRef50_B9KSL8 Efflux transporter, RND family, MFP subunit 2.61474490436e-05 8.79803240378e-06 -7004172398.77 +UniRef50_W9B9V7 Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome 2.35826686109e-06 8.94250962646e-07 -591041183.696 +UniRef50_UPI0004234081 excinuclease ABC subunit A 6.86939916803e-08 1.68460854083e-07 40277106.629 +UniRef50_UPI00035EC56E hypothetical protein 1.96120532652e-07 1.90709946493e-07 -2184320.02775 +UniRef50_A6V0D0 5.16362877968e-07 9.16138720528e-05 36777182346.0 +UniRef50_Y6JBS8 2.17746730244e-06 6.43944201019e-07 -619102094.488 +UniRef50_M8I708 Signal transduction histidine kinase 2.02586398316e-06 4.43433465256e-05 17084086996.3 +UniRef50_R5WAI2 Exodeoxyribonuclease V gamma subunit 3.14601428688e-05 8.42847380391e-06 -9298167431.86 +UniRef50_C5Y406 1.25327380181e-06 9.1361242894e-07 -137125464.341 +UniRef50_C7ZW47 Membrane protein 0.000159088723835 4.63342187787e-05 -45520377344.5 +UniRef50_Q4L4Y7 Coenzyme A disulfide reductase 9.61601020177e-05 2.45570663477e-05 -28907024168.0 +UniRef50_B1MYD1 3 phosphoshikimate 1 carboxyvinyltransferase 4.47834828864e-08 7.6036089436e-08 12617060.7767 +UniRef50_Q9RTK2 Diaminopimelate decarboxylase 6.33840722591e-08 6.62673698177e-05 26727361459.7 +UniRef50_B9L5V9 3 dehydroquinate dehydratase 1.1717218142e-07 5.47666818152e-07 173795967.612 +UniRef50_P40740 Aryl phospho beta D glucosidase BglH 2.31027788867e-06 2.24497348862e-05 8130545928.82 +UniRef50_P0A543 Aspartate semialdehyde dehydrogenase 2.87552817617e-07 5.66387025243e-05 22749650643.0 +UniRef50_Q6AB89 Isoleucine tRNA ligase 6.12395642737e-07 4.00819803301e-05 15934355684.6 +UniRef50_X1H4N6 Marine sediment metagenome DNA, contig 1.58096863954e-07 5.85433118815e-07 172520890.093 +UniRef50_Q28K40 Amino acid amide ABC transporter membrane protein 2, HAAT family 0.000101244549727 3.13125511961e-05 -28232405969.0 +UniRef50_P37466 Protein Veg 1.94680700336e-05 6.78888977457e-06 -5118740661.6 +UniRef50_A6LXW3 ApbE family lipoprotein 1.57067679132e-06 3.26002812986e-05 12527032115.7 +UniRef50_Q6GGI4 UPF0403 protein SAR1592 0.000331693382658 0.000187582942078 -58179153296.1 +UniRef50_Q6FB03 3.59016199141e-06 5.55074961453e-05 20959664895.3 +UniRef50_E0SM47 D alanine aminotransferase 0.000171884753556 2.68454218103e-05 -58554158058.6 +UniRef50_V8R541 Restriction endonuclease 3.11114825983e-06 3.565191612e-06 183302873.01 +UniRef50_Q6FB06 8.04349092798e-07 9.58204459656e-06 3543663389.3 +UniRef50_P75712 Putative allantoin permease 3.21904121788e-05 1.51444464203e-06 -12384264531.1 +UniRef50_UPI000478D97F sugar ABC transporter substrate binding protein 5.31797843376e-08 3.02491837165e-07 100650335.129 +UniRef50_R8ZKN1 2.30861243448e-06 3.32770741212e-06 411421148.175 +UniRef50_Q9RZ80 1.69276228183e-06 0.000491503072973 1.97742433074e+11 +UniRef50_UPI00046D31AE hypothetical protein 4.72660882089e-06 5.48209363548e-07 -1686871135.66 +UniRef50_UPI0003B5BDB9 hypothetical protein 3.93927340513e-08 9.05484707872e-08 20652198.6718 +UniRef50_C3AH20 Dehydrogenase 0.000209451855636 5.12323231779e-05 -63875166825.3 +UniRef50_UPI000465EB7D hypothetical protein 4.95502173151e-07 1.8994276118e-07 -123358084.248 +UniRef50_Q3SPM7 Peptidyl tRNA hydrolase 8.14021061265e-07 3.92248215214e-07 -170274873.686 +UniRef50_UPI0001FE2E53 molybdenum cofactor synthesis 1 isoform 1 9.31127820362e-08 3.00811025009e-07 83850329.4323 +UniRef50_L9NDB6 Nonribosomal peptide synthase 1.20485005023e-06 2.27557716739e-05 8700371519.04 +UniRef50_UPI00036FD9CA hypothetical protein 1.68439047885e-07 1.00290216129e-07 -27512519.6601 +UniRef50_UPI0004110BE6 FAD binding molybdopterin dehydrogenase 1.27801713254e-06 4.2509297696e-06 1200201313.32 +UniRef50_P05707 Sorbitol 6 phosphate 2 dehydrogenase 6.23005233159e-05 4.97724784029e-06 -23142109745.2 +UniRef50_UPI00041879E9 LamB YcsF family protein 1.6310195304e-06 5.6045230536e-07 -432201126.086 +UniRef50_F0L271 1.71052351058e-06 5.39993962479e-07 -472557142.581 +UniRef50_UPI0003791D67 1 phosphofructokinase, partial 4.43759000302e-07 3.29590505955e-06 1151446363.89 +UniRef50_Q8FAI6 L ribulose 5 phosphate 4 epimerase UlaF 9.79612057419e-05 5.48822883165e-05 -17391487602.4 +UniRef50_Q132P2 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 9.3221480392e-05 2.97444463549e-05 -25626457591.6 +UniRef50_B9E6Y4 Shikimate dehydrogenase 2.39488807618e-07 2.08658749382e-07 -12446472.8372 +UniRef50_C5N6P2 3.87790003355e-05 2.43110115954e-05 -5840904596.57 +UniRef50_B6FWG5 5.87078810021e-06 2.74665187349e-05 8718461466.64 +UniRef50_UPI000365F4CD hypothetical protein 2.49372168594e-06 1.53659472455e-06 -386403899.582 +UniRef50_Q98LU4 Glutathione dependent formaldehyde activating enzyme 1.3348254079e-06 3.46342443128e-07 -399062702.928 +UniRef50_A6LUC8 40 residue YVTN family beta propeller repeat protein 3.32423594962e-06 1.06518367585e-05 2958242366.32 +UniRef50_B5GFD4 Nogalamycin resistance protein SnorO 3.40874237228e-07 2.19294524526e-07 -49083221.9686 +UniRef50_Q8CP35 N acetyl gamma glutamyl phosphate reductase 8.23372728749e-05 2.00731456205e-05 -25136792239.4 +UniRef50_P37146 Ribonucleoside diphosphate reductase 2 subunit beta 2.51457372069e-05 3.58368991699e-05 4316153279.77 +UniRef50_UPI000418FD7E delta aminolevulinic acid dehydratase 1.02364857851e-07 1.92982102178e-07 36583293.5334 +UniRef50_M7ADI3 1.74376136457e-07 2.28931813338e-07 22024796.2303 +UniRef50_S5YCH9 Hydrolase, HAD superfamily 2.62544447645e-05 7.812157027e-06 -7445377871.95 +UniRef50_K0R081 3.44698377345e-07 3.42888264474e-06 1245123035.94 +UniRef50_J0F9K3 0.000108277379529 7.18360530916e-05 -14711810668.1 +UniRef50_A7WYM2 Thymidylate kinase 6.02459553981e-05 2.73014984433e-05 -13300081546.6 +UniRef50_A6LZ87 Aminoglycoside phosphotransferase 4.30260279658e-06 8.53241004089e-06 1707625090.1 +UniRef50_G2JIT2 ABC type spermidine putrescine transport system, ATPase component 2.31526254158e-06 9.98168623361e-05 39362592316.2 +UniRef50_UPI000429A03C hypothetical protein 4.68282530677e-08 8.7349521446e-08 16358933.2962 +UniRef50_A8GID3 Lipid A disaccharide synthase 2.8237150095e-06 2.40420655515e-06 -169360710.969 +UniRef50_Q55621 Amidophosphoribosyltransferase 8.18685089287e-08 1.11003151258e-06 415082021.552 +UniRef50_J9P1J0 2.28481669509e-07 2.0156335493e-07 -10867253.9204 +UniRef50_C5BT54 Cysteine synthase 8.65043167471e-06 4.95131436238e-06 -1493379052.26 +UniRef50_A0A023RU88 RND transporter 3.48980833836e-06 8.19444253723e-05 31673091643.0 +UniRef50_UPI00046C9C35 microcin ABC transporter permease 5.02272161003e-07 1.65808919402e-07 -135834339.503 +UniRef50_E0SGK4 ABC transporter, permease component 4.06739659753e-05 5.36830407535e-06 -14253328958.2 +UniRef50_R9SHD6 Glycine betaine L proline ABC transporter permease substrate binding protein 2.34712029076e-05 1.17577984809e-06 -9000935884.73 +UniRef50_Q487D7 Na translocating NADH quinone reductase subunit E 1.18955923212e-06 9.03392377203e-07 -115529070.992 +UniRef50_UPI00047D9DB1 iron transporter FeoB 1.39188499233e-07 3.95430769872e-08 -40228079.7475 +UniRef50_A6M1E2 1.29642592261e-06 1.18809907898e-05 4273118724.11 +UniRef50_B1ZUJ0 NADH quinone oxidoreductase subunit B 2 2.37940454123e-07 1.70198328684e-06 591052057.395 +UniRef50_P0A908 MltA interacting protein 4.04825734619e-05 6.66127906449e-06 -13654071582.2 +UniRef50_Q8T154 Uridine cytidine kinase B 7.74242220313e-08 8.5760030512e-07 314966658.58 +UniRef50_Q1QEF7 Putative 3 methyladenine DNA glycosylase 8.08898547544e-06 8.76884567528e-05 32135283350.0 +UniRef50_B1ZDM1 4.00735779729e-07 1.0995215225e-07 -117392918.73 +UniRef50_UPI0003B3485A AP endonuclease 9.12448762411e-07 7.52097898278e-07 -64735611.5769 +UniRef50_Q8G7G5 Cysteine tRNA ligase 4.57892781473e-08 1.15490214905e-07 28139123.4958 +UniRef50_N3MBX3 6.5820052722e-06 2.49194165413e-06 -1651208873.34 +UniRef50_B6EJ69 Putative type VI secretion protein VasE 6.24297267153e-08 9.19107308968e-08 11901843.1607 +UniRef50_A7FB19 9.46080172615e-07 2.04599715281e-05 7877997402.59 +UniRef50_W6W5E1 Methionine synthase 6.24045920239e-05 2.99185018381e-05 -13115033257.2 +UniRef50_M4R2Z9 2.48326147089e-07 4.90619845149e-06 1880440207.81 +UniRef50_Q7N4Q1 Complete genome; segment 8 17 1.84740288181e-06 6.39427841546e-05 25068667415.8 +UniRef50_V4JEN2 5.3726434014e-06 1.22288038061e-06 -1675310254.81 +UniRef50_R5FLK7 Sporulation initiation inhibitor protein Soj 3.35385596348e-08 3.06994855462e-07 110397662.311 +UniRef50_E4B644 8.54121748243e-07 7.52850682436e-06 2694531159.14 +UniRef50_UPI0003A4C566 methyltransferase 3.43430710126e-07 7.13412508587e-06 2741486650.68 +UniRef50_Q9RZ06 Histidine ammonia lyase 1.74105725641e-06 0.000187171776142 74860656705.1 +UniRef50_Q8CNZ3 Type IV prepilin peptidase 5.4998721138e-05 2.43928236518e-05 -12355976391.8 +UniRef50_A7ZJM7 DNA protection during starvation protein 4.58637236771e-06 3.41815956565e-05 11947954815.9 +UniRef50_R4ZTN2 Glycerophosphoryl diester phosphodiesterase 9.65437311629e-07 7.07549823905e-06 2466706575.28 +UniRef50_E6CZE7 4 phosphoerythronate dehydrogenase 1.18846646536e-05 2.93315580668e-05 7043524968.37 +UniRef50_W7U7T7 2.43138088752e-06 2.727253566e-06 119447431.068 +UniRef50_M3YRF2 1.72730621127e-07 8.59119144685e-08 -35049777.2634 +UniRef50_P37678 3 keto L gulonate 6 phosphate decarboxylase SgbH 2.33704508406e-05 1.0588588756e-05 -5160194574.64 +UniRef50_P63333 Putative zinc metalloprotease SA1105 0.000131556230552 4.52635684121e-05 -34837406635.9 +UniRef50_B0V5R2 Ribonuclease P protein component 3.1457165738e-06 5.6429943668e-06 1008181690.08 +UniRef50_D3HGD1 9.43092595701e-05 8.54088800515e-06 -34625744097.1 +UniRef50_P0ADA2 Acyl CoA thioesterase I 1.96164767471e-05 1.09700679661e-05 -3490661328.26 +UniRef50_E3ENU9 Chromosome partitioning protein 3.96661646684e-08 4.13873120965e-05 16692552055.3 +UniRef50_Q3J6K3 TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor 0.00012056170466 2.90160846893e-05 -36958090173.3 +UniRef50_UPI000473CDCF hypothetical protein 1.35973070673e-07 7.05970769252e-07 230115065.575 +UniRef50_F4M5Y2 1.0519977716e-06 1.48172671653e-06 173486848.435 +UniRef50_K0T360 1.05486568153e-07 1.70874901235e-07 26398072.4703 +UniRef50_Q0J8P0 Os08g0101500 protein 3.68593330243e-06 2.80322328022e-06 -356360868.036 +UniRef50_UPI00034D7F07 hypothetical protein 1.07437472019e-06 2.45236287e-06 556310725.894 +UniRef50_UPI00036FC1AC hypothetical protein 1.87759474198e-07 1.65028307834e-06 590438726.174 +UniRef50_U6MJL8 1.76633819618e-06 6.13183512621e-07 -465542696.552 +UniRef50_A5HXZ1 Anaerobic ribonucleoside triphosphate reductase 3.56472131832e-06 1.93301027966e-05 6364677965.78 +UniRef50_UPI000346628F hypothetical protein 2.25310603745e-07 3.83680173395e-07 63935738.6809 +UniRef50_B0TZ13 Ribosomal RNA small subunit methyltransferase H 1.12916254897e-07 8.18146880791e-08 -12556084.1835 +UniRef50_P46068 HTH type transcriptional regulator DsdC 2.46218531057e-05 1.93650298495e-06 -9158354224.28 +UniRef50_UPI00036C038C hypothetical protein 1.00827684322e-07 1.92883645301e-07 37164121.1009 +UniRef50_UPI00046E972F hypothetical protein 3.62855717574e-08 4.69954452165e-06 1882614862.69 +UniRef50_UPI0003728245 hypothetical protein 2.88478474604e-07 7.02243844317e-08 -88111854.4813 +UniRef50_T0IDY3 5.97718648886e-07 1.05974029096e-06 186523806.548 +UniRef50_Q9CFZ5 Metal ABC transporter substrate binding lipoprotein 4.25538075008e-05 8.70062177881e-05 17945983525.4 +UniRef50_UPI0004651F41 hypothetical protein 4.93789722874e-08 2.53306117569e-07 82327891.0178 +UniRef50_UPI00035D4E82 hypothetical protein 5.63682245554e-07 2.81691432903e-05 11144663380.8 +UniRef50_V1HUM9 Methyl accepting chemotaxis protein 1.24581256864e-07 2.00201460009e-07 30528803.9739 +UniRef50_A0LBD9 Transposase, IS4 family 5.09836717603e-07 1.35133233843e-07 -151272394.523 +UniRef50_G9A7N2 1.89744403375e-07 3.68543962498e-07 72183576.1353 +UniRef50_G3XD65 1.81249817962e-05 3.41406595601e-06 -5938977247.93 +UniRef50_D5AU05 3.11880101292e-07 3.73062252448e-07 24699985.2111 +UniRef50_O54068 UDP glucose 6 dehydrogenase 2.52999175774e-07 2.11779815379e-07 -16640761.6099 +UniRef50_D5AU02 0.000149867015503 2.27954493088e-05 -51300350616.0 +UniRef50_I0C5N7 Nitrogen regulation protein NIFR3 3.52815790751e-07 7.90885549699e-07 176854137.408 +UniRef50_C1CCZ1 UvrABC system protein C 0.000140953220009 9.03437287589e-05 -20431672666.0 +UniRef50_UPI0003735CBD hypothetical protein 1.48072830386e-07 3.10918645689e-06 1195437907.97 +UniRef50_O27082 Cation transporting P ATPase PacL 2.33764224672e-05 8.64212354176e-06 -5948417286.36 +UniRef50_Q07ML1 1.3839064221e-05 1.94500574217e-06 -4801777364.4 +UniRef50_R5JK63 Hypoxanthine phosphoribosyltransferase 2.43539347646e-06 2.39689879925e-05 8693376353.03 +UniRef50_B9KSE1 MIP family channel proteins 7.00400781053e-05 6.00142354897e-06 -25853190687.0 +UniRef50_I2DGR3 Phage colicin tellurite resistance cluster TerY protein 2.84171677941e-05 1.37187338525e-05 -5933938152.29 +UniRef50_D0CPI3 Peptidase U35, phage prohead HK97 2.66220077029e-07 3.53179413548e-07 35106551.2638 +UniRef50_Q9EVM1 Replication protein 1.22764808724e-06 6.86638358046e-07 -218412266.612 +UniRef50_UPI00021A5775 PREDICTED 1.63483871941e-07 8.52664567521e-08 -31577330.3474 +UniRef50_B0TBU3 Glutamate tRNA ligase 4.31777366486e-08 5.9818612036e-08 6718125.6004 +UniRef50_A3PIY0 Carboxymuconolactone decarboxylase 6.23178297502e-05 2.61492803837e-05 -14601687217.3 +UniRef50_A6QIG4 1.86086860811e-05 1.79342128661e-05 -272293113.613 +UniRef50_P31062 DNA packaging protein NU1 homolog 2.02294030927e-05 2.9336096543e-06 -6982524054.33 +UniRef50_B4EV71 Glutamine tRNA ligase 2.46330427238e-05 8.09794892792e-06 -6675420273.82 +UniRef50_Q67NS3 Homoserine O acetyltransferase 1.15961394167e-07 2.69256732797e-07 61887209.3503 +UniRef50_Q5HIW9 0.000169924915629 3.15332454756e-05 -55870415497.5 +UniRef50_Q04809 Dipicolinate synthase subunit A 6.13376142851e-07 8.7118544229e-06 3269455061.16 +UniRef50_G2JDG3 RNA splicing ligase RtcB 9.63794014105e-07 0.000115888513754 46396519643.9 +UniRef50_A6LYE0 1.1267085075e-05 2.30651363309e-05 4763018070.38 +UniRef50_Q98CW9 Mll4969 protein 1.51861703725e-07 1.4207847162e-08 -55572551.0973 +UniRef50_Q836D3 S ribosylhomocysteine lyase 1.52878458235e-07 3.77527703327e-05 15179537752.3 +UniRef50_Q58033 N5 carboxyaminoimidazole ribonucleotide mutase 3.85096007712e-07 6.03788955891e-07 88289026.8441 +UniRef50_M9VMX1 1.73956676891e-06 8.51237809427e-05 33663230501.3 +UniRef50_P9WK18 Methionine aminopeptidase 2 1.66783205682e-06 7.51080269353e-05 29648707885.0 +UniRef50_A3PGE5 0.00017493556092 2.98239942379e-05 -58583320188.7 +UniRef50_A1BAM2 ABC polyamine transporter, periplasmic substrate binding protein 0.000105615981658 1.57956802615e-05 -36261557892.8 +UniRef50_M1MCE4 Diguanylate cyclase 1.46691446449e-06 1.09879277316e-05 3843749891.9 +UniRef50_P92549 ATP synthase subunit alpha, mitochondrial 0.000105726489235 0.000149622264326 17721263066.0 +UniRef50_O33013 Signal recognition particle protein 1.01565736906e-06 4.98792489921e-05 19726831561.9 +UniRef50_Q7KS14 CG6695, isoform B 3.06839478451e-07 1.33258897047e-07 -70076610.7861 +UniRef50_P0ABF0 Carbonic anhydrase 1 3.78547023802e-05 2.14600650225e-05 -6618716286.13 +UniRef50_Q4FUD2 30S ribosomal protein S4 3.06145288697e-05 1.52425458184e-05 -6205858193.25 +UniRef50_Q8CC86 Nicotinate phosphoribosyltransferase 2.99861490685e-08 6.48156359414e-08 14061091.2565 +UniRef50_Q3IVT5 Agmatinase 6.4496070633e-06 2.54949673557e-06 -1574522399.04 +UniRef50_UPI0003B4603D multidrug ABC transporter ATP binding protein 6.07738318414e-08 2.62101733218e-07 81278544.3571 +UniRef50_C1DQ18 TonB dependent siderophore receptor 7.24904608867e-06 7.90927970444e-06 266544412.664 +UniRef50_G7SF07 Small conductance mechanosensitive channel 6.55679898713e-05 2.75384573213e-05 -15352988965.3 +UniRef50_P60845 Aquaporin Z 4.68411742489e-05 2.70078097834e-05 -8006972617.47 +UniRef50_UPI000329DC11 1.66940850613e-08 1.18437971519e-07 41075255.501 +UniRef50_UPI0003733B95 hypothetical protein 2.06609219046e-08 5.24846824271e-08 12847642.6444 +UniRef50_K0UFN2 1.07544419209e-06 6.92019474371e-06 2359597520.84 +UniRef50_UPI0002492BA5 hypothetical protein 1.70622048932e-06 1.10028532791e-06 -244623460.322 +UniRef50_B0JTA0 Proline rich extensin like family protein 5.42980627867e-07 2.12187187823e-08 -210641685.436 +UniRef50_UPI000476476F thioredoxin 5.81586060719e-07 4.26859000773e-07 -62465212.8147 +UniRef50_Q9RXQ6 1.77223468942e-06 0.000641726679441 2.58357462471e+11 +UniRef50_O85128 Chemotaxis response regulator protein glutamate methylesterase of group 1 operon 7.18206908673e-07 9.47724892188e-08 -251688125.534 +UniRef50_Q53174 Motility protein A 0.000135357985254 1.72712778915e-05 -47673052848.9 +UniRef50_UPI00047893F1 chemotaxis protein 4.69249996992e-07 1.21559801383e-07 -140366798.606 +UniRef50_F9EDC6 SagD family bacteriocin biosynthesis protein 4.51777001112e-08 2.0765330001e-07 65593393.479 +UniRef50_I1F0D0 2.92224560283e-07 8.33626672536e-07 218570676.468 +UniRef50_Q99VJ2 Extracellular matrix protein binding protein emp 0.000113021103726 1.37669692898e-05 -40070112057.1 +UniRef50_UPI00037AEF72 hypothetical protein 1.48891359001e-07 9.57549422304e-07 326465183.506 +UniRef50_A0A011RWZ7 1.11572213456e-06 1.76484086778e-06 262057198.184 +UniRef50_Q8TTR1 Outer membrane protein expression inhibitor 1.15556935367e-06 5.03027604922e-06 1564266640.99 +UniRef50_P0AE86 Periplasmic protein CpxP 8.22271990849e-05 2.06906385235e-05 -24843064637.2 +UniRef50_M9RTA8 Phosphoesterase 4.61526642719e-07 4.35356322155e-06 1571262927.53 +UniRef50_A6LZM9 1.22959605492e-06 1.71056470651e-05 6409356613.87 +UniRef50_P24240 6 phospho beta glucosidase AscB 8.00071298498e-05 0.000113138077501 13375370129.2 +UniRef50_P43984 0.000123820098273 1.09034401664e-05 -45585840521.0 +UniRef50_Q44653 30S ribosomal protein S1 1.35542545373e-06 6.32017824854e-05 24968133273.8 +UniRef50_P68801 Staphylokinase 7.50150896264e-05 1.45089523974e-05 -24427070093.1 +UniRef50_M5ANL0 Beta lactamase co inducer 1.29236167479e-05 3.05745279313e-06 -3983091459.99 +UniRef50_UPI00035E68E1 hypothetical protein 8.67533285433e-08 5.7583603885e-08 -11776175.7973 +UniRef50_A5UJ57 Putative manganese efflux pump MntP 2.82904504452e-05 1.16572383629e-05 -6715031830.09 +UniRef50_H5SY94 ABC transporter ATP binding protein 3.4987298727e-05 1.15189666322e-05 -9474453655.49 +UniRef50_A4WVG7 2.76521188486e-06 2.49246984589e-06 -110109308.053 +UniRef50_P71298 Putative prophage CP4 6 integrase 1.69689897739e-05 6.09180403973e-06 -4391253358.98 +UniRef50_F3SV15 8.25971774981e-06 7.26188619325e-06 -402836844.153 +UniRef50_A4WVG4 7.65935967302e-05 4.41870381833e-06 -29137889954.1 +UniRef50_Q6F7B6 3.58183456254e-06 9.63675217819e-05 37458720538.9 +UniRef50_R5K1D1 1.13341645163e-05 5.89833049632e-05 19236542719.1 +UniRef50_V5VEN2 Excinuclease ABC, A subunit 1.89984905172e-07 1.28488901225e-07 -24826691.4342 +UniRef50_Q5HN96 Foldase protein PrsA 0.000144810900662 3.60431188203e-05 -43910888260.4 +UniRef50_I2DNZ8 Peptidase M14, carboxypeptidase A 1.9897321282e-05 2.84930598048e-05 3470205123.23 +UniRef50_UPI000478D2A2 cytochrome bd I ubiquinol oxidase subunit 2 apoprotein 4.59283306226e-08 1.3630925448e-07 36487888.0599 +UniRef50_Q1GIE6 Binding protein dependent transport systems inner membrane component 0.00010832028089 1.94423719361e-05 -35881102499.3 +UniRef50_K1ZWG6 9.90413966068e-07 2.29261185475e-06 525713267.425 +UniRef50_UPI00034D08B0 hypothetical protein 9.95978765312e-08 1.79411352499e-05 7202847577.93 +UniRef50_P72151 B type flagellin 8.04472978569e-06 6.85027760166e-06 -482215004.269 +UniRef50_UPI00041834C2 hypothetical protein 5.30973785084e-07 1.32064583488e-07 -161044539.851 +UniRef50_P46702 N5 carboxyaminoimidazole ribonucleotide mutase 7.2374366939e-07 8.57458783271e-07 53982432.3427 +UniRef50_Q1IZI7 Elongation factor Ts 2.2248683036e-06 0.000474335234405 1.90596748241e+11 +UniRef50_UPI00016C08D0 phosphoenolpyruvate synthase 2.37207378296e-08 1.01597197949e-06 400584002.55 +UniRef50_F7ZIC0 5.12540508788e-07 1.52564729218e-07 -145326639.612 +UniRef50_Q3IZN1 NAD kinase 2.07990207277e-05 2.54218110649e-06 -7370510191.69 +UniRef50_A6LTP4 5.83741219879e-06 3.07088428274e-06 -1116881268.82 +UniRef50_P77737 Oligopeptide transport ATP binding protein OppF 0.000164376442975 4.44531582318e-05 -48414501674.9 +UniRef50_Q9SMC2 Acetolactate synthase small subunit 1, chloroplastic 1.19203281476e-07 2.71647852197e-06 1048551886.74 +UniRef50_A9T869 Predicted protein 7.39577487117e-06 3.56941432277e-06 -1544748708.11 +UniRef50_Q7VFF5 Histidinol dehydrogenase 4.41809077779e-08 6.46261005579e-08 8253975.21601 +UniRef50_Q4L7L1 Diacylglycerol kinase 0.000228217794699 4.80271064249e-05 -72745192044.6 +UniRef50_P0CL46 Formate hydrogenlyase transcriptional activator 2.14635690591e-05 2.97442616675e-06 -7464293872.96 +UniRef50_Q9RT45 Exonuclease SbcD, putative 2.75206078797e-06 0.000218415862459 87066123227.0 +UniRef50_R7MPC8 ComG operon protein 4 3.83315044909e-05 3.95136020646e-07 -15315377483.1 +UniRef50_Q030J8 3 oxoacyl [acyl carrier protein] synthase 3 2.76434856029e-06 4.03222781146e-05 15162597048.7 +UniRef50_V5T2N8 Transcriptional regulator 2.10016045958e-05 2.83504036987e-06 -7334064906.81 +UniRef50_F0YAA2 2.24540307818e-06 2.69324433419e-06 180799010.681 +UniRef50_P75910 2.14659634746e-05 3.613914015e-05 5923741483.98 +UniRef50_Q50566 DNA ligase 3.38985687825e-05 3.57084604739e-06 -12243673831.2 +UniRef50_F3U2V1 Gas vesicle synthesis GvpLGvpF 0.000165252776161 3.76685704829e-05 -51507309466.5 +UniRef50_A5UJ79 Adhesin like protein 2.70571158404e-05 6.61118596452e-06 -8254272790.67 +UniRef50_Q9RZV9 Chromosome partitioning ATPase, putative, ParA family 9.89181409236e-07 0.000142210844073 57012918202.1 +UniRef50_D6DM05 Predicted oxidoreductases of the aldo keto reductase family 3.89218339831e-05 1.16905658432e-05 -10993597113.3 +UniRef50_S5D7U1 Nucleotidyltransferase DNA polymerase involved in DNA repair 8.73810159412e-07 4.64321908157e-06 1521756637.73 +UniRef50_Q7UTH1 Uridylate kinase 8.6405095114e-08 1.05269874172e-07 7615942.80259 +UniRef50_J8YHU3 Aida related Type V secretory pathway adhesin 5.87984406329e-07 1.64431511601e-05 6400925383.28 +UniRef50_Q1QAW5 Lysine tRNA ligase 3.69569698471e-08 1.13451976806e-07 30881973.0086 +UniRef50_Q94C74 Serine hydroxymethyltransferase 2, mitochondrial 4.13432558939e-07 1.87684479651e-07 -91137269.849 +UniRef50_E2QQ87 Phage baseplate assembly protein 1.25710720405e-05 3.58684257326e-06 -3627043684.82 +UniRef50_UPI000366BB43 hypothetical protein 1.87911308953e-07 2.7367738364e-06 1029007080.39 +UniRef50_X1YA55 5.29733717903e-08 1.57684392185e-07 42273123.8822 +UniRef50_UPI00047BFE08 hypothetical protein 1.85880667997e-07 3.05547407351e-07 48310931.1532 +UniRef50_N8D5Y6 1.96405921091e-05 1.43088933094e-06 -7351480469.74 +UniRef50_A9EDB3 Putative transposase 2.32439056637e-06 9.81465269321e-07 -542155421.966 +UniRef50_UPI0004640326 hypothetical protein 1.02195053718e-06 9.19592481122e-07 -41323203.3052 +UniRef50_UPI0003A56F69 hypothetical protein 3.21736141935e-06 1.95213844699e-06 -510786039.974 +UniRef50_P50060 Superoxide dismutase [Mn] 3 6.64154734548e-08 2.86319739546e-07 88778050.7497 +UniRef50_A0A028WHC5 DNA polymerase III, alpha subunit 9.33961191453e-05 4.16697508595e-05 -20882569630.9 +UniRef50_P0A5R7 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 7.07678181702e-06 2.89830446541e-05 8843827127.41 +UniRef50_E6JZ36 Citrate transporter 2.72473679391e-06 2.29828828851e-05 8178462172.43 +UniRef50_Q831N0 tRNA N6 adenosine threonylcarbamoyltransferase 1.51751904315e-06 1.0218205796e-05 3512574011.56 +UniRef50_U7NE48 6.05033643005e-08 8.85950282145e-08 11340949.4456 +UniRef50_UPI000474C12F glutathione ABC transporter permease, partial 4.91900973046e-06 1.32263657277e-06 -1451899976.22 +UniRef50_D4HAW3 2.28779387182e-06 1.52516705953e-05 5233676117.93 +UniRef50_T1YCD5 Fructokinase 0.000123544747591 1.90009449478e-05 -42205616023.7 +UniRef50_UPI000376AD8E hypothetical protein 1.88156850188e-07 3.04752653574e-07 47071156.6183 +UniRef50_UPI000406F970 hypothetical protein 6.03156931171e-07 3.02157377708e-07 -121517213.413 +UniRef50_UPI000454108C PREDICTED 2.47621179548e-07 3.53480930015e-07 42736880.3087 +UniRef50_A1B402 1.91317748971e-07 6.60727285983e-07 189506390.395 +UniRef50_UPI00046A6AED ABC transporter ATP binding protein 2.34595826039e-07 8.88101838579e-08 -58855452.7395 +UniRef50_UPI00047B7506 membrane protein 6.89647817452e-08 2.69079904418e-08 -16978842.744 +UniRef50_Q7WYU3 Putative AgrB like protein 2.03313818048e-06 9.13828104671e-06 2868433365.0 +UniRef50_H0G932 4.57093875161e-06 2.40005457227e-06 -876412582.944 +UniRef50_X5EAP1 1.45907502578e-05 4.6637676108e-06 -4007644712.37 +UniRef50_Q8CNS4 Replication initiator protein A 4.1095741658e-05 0.000143059922859 41164191192.1 +UniRef50_V4JMR5 2.29930040147e-06 1.00414362636e-06 -522870683.473 +UniRef50_Q2G8P8 7.32329307848e-07 3.94427720717e-07 -136415017.244 +UniRef50_N0BAQ7 dTDP 4 dehydrorhamnose 3,5 epimerase 9.3824587694e-05 2.66896656043e-05 -27103191885.7 +UniRef50_Q8CU52 Alkylmercury lyase 0.000137635330485 5.21695670851e-05 -34503577467.4 +UniRef50_A6V8R6 Ribonuclease D 1.96650832005e-06 1.89914279868e-06 -27196287.645 +UniRef50_O66608 N5 carboxyaminoimidazole ribonucleotide synthase 6.33367038072e-08 8.92962116616e-08 10480171.8798 +UniRef50_D3QEW5 CAAX amino terminal protease family protein 6.88349437723e-05 3.9463256819e-06 -26196331396.0 +UniRef50_A0A017IAI8 AraC type transcriptional regulator family protein 1.24114953028e-07 8.1384982853e-07 278454433.239 +UniRef50_UPI0003714DE7 hypothetical protein 4.35666848183e-07 1.13403427679e-06 281939500.861 +UniRef50_UPI00039CF99B ketol acid reductoisomerase 1.19336623305e-07 1.19683000937e-07 139836.90057 +UniRef50_G8REC3 4.06143954149e-07 7.52187729899e-07 139702118.705 +UniRef50_R6CMC1 YhgE Pip domain protein 3.61310782178e-08 4.90728998721e-08 5224772.21585 +UniRef50_UPI0002E4DB1A threonyl tRNA synthetase 5.99085467897e-07 5.16337351392e-06 1842659094.29 +UniRef50_Q9PD20 3.90203897991e-08 1.25108547573e-07 34754845.7138 +UniRef50_Q5M430 tRNA dimethylallyltransferase 5.14687055144e-05 4.11006536166e-05 -4185709781.45 +UniRef50_Q2RSC8 Phosphoribosylformylglycinamidine cyclo ligase 5.45172803872e-08 9.2305700216e-08 15255648.8009 +UniRef50_F0RN90 Alpha beta hydrolase fold protein 5.01322597353e-06 0.000340076319762 1.35269082649e+11 +UniRef50_C9X0H3 DNA repair protein RecN 8.02024055691e-07 3.44911278078e-05 13600704596.5 +UniRef50_UPI0003488344 hypothetical protein 1.82234674955e-07 1.11083601552e-06 374887756.406 +UniRef50_Q6A8H6 Guanylate kinase 1.07853139672e-05 1.21931646621e-05 568366601.802 +UniRef50_UPI00046F8C65 hypothetical protein 5.68590918017e-08 1.02431313037e-07 18398064.9467 +UniRef50_UPI0003B73489 glycosyltransferase 5.68649671636e-07 2.21804795251e-07 -140025532.862 +UniRef50_UPI0003B360FE MerR family transcriptional regulator 1.76930842518e-06 3.51558596517e-07 -572363003.577 +UniRef50_O27088 Type 2 DNA topoisomerase 6 subunit B 2.10491129458e-05 1.34540640185e-06 -7954628123.44 +UniRef50_R9RCS6 MATE efflux family protein 5.87621273293e-05 2.57485953005e-05 -13327968001.6 +UniRef50_C8W561 SpoVR family protein 1.48208946172e-07 2.69821914715e-06 1029470410.28 +UniRef50_Q5HLN9 Transcriptional regulator, TetR family 0.000256634848327 3.19965850955e-05 -90689223487.8 +UniRef50_A7ZJW5 1.75334244593e-05 1.0030996119e-05 -3028822386.13 +UniRef50_Q9JTK4 Lactoferrin binding protein A 8.91838071812e-07 3.95826584533e-05 15619958977.8 +UniRef50_O27585 Lysine tRNA ligase 1.93627870736e-05 6.04093784075e-06 -5378194012.8 +UniRef50_B7J8G6 Ribosomal RNA large subunit methyltransferase E 2.92904203346e-07 3.28262426774e-07 14274548.6921 +UniRef50_A6LUF8 1.91293575433e-06 5.64853822888e-06 1508108559.97 +UniRef50_UPI0003B3F0AB hypothetical protein 6.33339922838e-07 2.77087402587e-07 -143823514.135 +UniRef50_UPI0003506CEC PREDICTED 3.44371371501e-07 7.78513325262e-07 175268434.254 +UniRef50_G7M8A4 1.28981545165e-06 1.07582513206e-05 3822523751.07 +UniRef50_B5YKI3 NADH quinone oxidoreductase subunit B 1 3.28135767483e-07 1.1625212419e-06 336851655.083 +UniRef50_P31135 Putrescine transport system permease protein PotH 1.94973235726e-05 1.13161037917e-05 -3302858820.41 +UniRef50_I4Z1X0 Hydrogenase urease accessory protein 4.11245642975e-07 1.29426351267e-07 -113773906.374 +UniRef50_Q3JXY3 4.93426189711e-07 3.61160138623e-06 1258845591.15 +UniRef50_UPI0003B638D4 phosphopentomutase, partial 3.02762974831e-07 2.97749804764e-07 -2023878.27456 +UniRef50_B2U2C8 Electron transport complex subunit RsxC 1.91630193174e-05 1.02383712537e-05 -3602989941.06 +UniRef50_UPI000359674D PREDICTED 6.16416802457e-08 5.67171708962e-09 -22595760.9548 +UniRef50_W9T5C9 8.09162370286e-08 1.35054906656e-06 512566353.428 +UniRef50_UPI00047CBCCD 4 alpha glucanotransferase 1.25801724821e-07 6.87866036113e-06 2726211898.37 +UniRef50_D3E1B3 Transposase 2.81288824377e-05 1.20128829233e-06 -10871000195.2 +UniRef50_Q3A253 Valine tRNA ligase 7.12792951471e-08 3.69481012797e-08 -13859924.2554 +UniRef50_Q6D7E5 Zinc transporter ZitB 4.94883712271e-05 6.83700605828e-06 -17218879509.8 +UniRef50_A6M0L7 UPF0249 protein Cbei_4037 5.35591888877e-06 8.53409226561e-06 1283067592.8 +UniRef50_Q6HLQ9 Spermidine putrescine import ATP binding protein PotA 4.78006394018e-06 1.49339455194e-05 4099246595.66 +UniRef50_F2MPN2 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 2.6583520342e-06 1.65499178402e-05 5608195584.56 +UniRef50_UPI0002DFA60B hypothetical protein 3.80349441285e-08 6.49859531178e-08 10880453.0551 +UniRef50_F8XHG2 1.57501679073e-06 1.03117378312e-06 -219556095.876 +UniRef50_I0C7U2 4 aminobutyrate aminotransferase 0.000184473118621 6.90204873872e-05 -46609643992.3 +UniRef50_P10932 Aliphatic amidase regulator 2.45483589124e-05 2.04093245518e-05 -1670978963.04 +UniRef50_M7PBX7 Transferase 2.08172420321e-06 6.76983444191e-05 26490234787.6 +UniRef50_J3HPZ9 Putative transcriptional regulator 5.11069574423e-07 1.21275278149e-07 -157364740.72 +UniRef50_UPI000479F530 ABC transporter 1.28120191747e-07 1.82440411391e-07 21929739.2543 +UniRef50_E2XT98 Alcohol dehydrogenase 2.86294842109e-06 0.000219982123901 87653675493.2 +UniRef50_K0HWR7 LysR family transcriptional regulator 1.64841043168e-06 6.01952036587e-05 23636058875.7 +UniRef50_A0A012DIE8 6.73024258588e-07 2.00021163844e-07 -190957153.749 +UniRef50_P42905 Putative N acetylgalactosamine permease IIC component 2 5.9337694823e-06 1.33225581291e-05 2982944647.35 +UniRef50_B9JHG8 5.01511811089e-05 3.07047149712e-05 -7850777014.76 +UniRef50_Q6MCU1 Chorismate synthase 4.51111768124e-08 1.4013270864e-07 38361358.4441 +UniRef50_A3PS82 ABC transporter related 2.70362290846e-05 2.16878853269e-06 -10039290908.6 +UniRef50_UPI00016C5336 ATP dependent RNA helicase 2.52470730571e-08 5.67163636893e-07 218778366.885 +UniRef50_E5QR85 9.02968775528e-05 7.54947013561e-06 -33406143799.2 +UniRef50_D9XU17 Anti sigma B factor RsbT 6.97149978448e-07 2.56352982984e-05 10067836502.3 +UniRef50_D7YAA8 Poly beta 1,6 N acetyl D glucosamine export porin PgaA 1.41255925513e-05 2.69602475149e-06 -4614256777.35 +UniRef50_Q67P19 NADH quinone oxidoreductase subunit D 1 1.54514425812e-07 7.93300980706e-07 257885971.003 +UniRef50_UPI000468EA31 chemotaxis protein 6.32633467701e-07 1.00565829895e-07 -214802234.586 +UniRef50_D3P499 8.33816592992e-07 2.29487385568e-07 -243975116.99 +UniRef50_A4XY80 Aminopeptidase Y 8.11105023959e-06 2.53271881941e-06 -2252040848.15 +UniRef50_A0A024H1Y9 NrdI protein 1.17934103105e-07 5.35419430642e-07 168543949.848 +UniRef50_D7BFI6 4.20988091661e-06 0.000531974945702 2.13065233059e+11 +UniRef50_P66951 Beta barrel assembly enhancing protease 2.82278994908e-05 9.32645999834e-06 -7630743069.87 +UniRef50_G7ZNX7 Competence protein ComEC, putative 8.52210096471e-05 1.86276751313e-05 -26884546336.1 +UniRef50_S5YYC5 D 3 phosphoglycerate dehydrogenase 0.00017058627612 3.2196499719e-05 -55869650966.6 +UniRef50_UPI000364F717 hypothetical protein 2.99994827148e-06 2.28432242104e-06 -288906937.539 +UniRef50_J8SAI7 Integral membrane protein MviN 6.60825688746e-07 4.71843092021e-07 -76294593.3751 +UniRef50_F3ZC85 3.09625389259e-08 5.70018343938e-07 217623443.442 +UniRef50_B2TJ37 DNA uptake protein 2.28353856397e-06 5.94301749581e-06 1477376551.64 +UniRef50_P15644 Type II secretion system protein D 1.84145083519e-05 8.63776243494e-06 -3946992300.84 +UniRef50_A6LSN4 Ribonuclease HII 3.19452176746e-06 2.172169607e-05 7479647619.91 +UniRef50_A3DJ91 Chemotaxis response regulator protein glutamate methylesterase 8.28657659638e-06 2.65057915224e-05 7355320640.53 +UniRef50_A3VZA4 3.12348413126e-05 8.09190486442e-06 -9343087439.9 +UniRef50_UPI00036D2281 hypothetical protein 1.10158609674e-07 1.20376636834e-06 441502872.251 +UniRef50_T3G9C0 Modulator of DNA gyrase family protein 4.80960977159e-06 1.11278630821e-05 2550756395.14 +UniRef50_W1YWP9 6.8229564802e-07 2.60590019156e-05 10244887727.4 +UniRef50_M4S4L0 ParB family protein 1.64402341726e-06 3.30095016892e-07 -530449018.944 +UniRef50_M9WZ57 5.35688982539e-08 1.75259005891e-07 49127789.7586 +UniRef50_Q8XC28 Tyrosine protein kinase etk 2.87693786193e-05 7.30554893067e-06 -8665211436.1 +UniRef50_F2CYK8 Predicted protein 3.59150497354e-06 4.10353144307e-07 -1284270030.58 +UniRef50_Q181T5 Enolase 1.11747127829e-07 2.9049222586e-05 11682413945.2 +UniRef50_F8B5V8 Methylmalonyl CoA epimerase 5.13723684337e-07 2.6596749752e-07 -100022212.928 +UniRef50_D8AI56 4.03912302854e-06 3.75013205696e-06 -116669201.545 +UniRef50_A3PRU0 Protease Do 6.68774361918e-05 1.31215698786e-05 -21701902889.3 +UniRef50_A7M2I7 1.13333960784e-06 6.0604165806e-07 -212876653.0 +UniRef50_P9WN34 Anthranilate synthase component 2 1.02990941202e-07 9.70593936786e-06 3876828121.27 +UniRef50_UPI0001BF66E0 hypothetical protein SMAC_10559 7.34551944029e-07 2.60859946198e-07 -191235272.379 +UniRef50_A5UMG7 Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family 2.65172060313e-05 6.87965988473e-06 -7927918359.17 +UniRef50_B2TKT2 D alanine poly ligase subunit 1 9.72066924068e-07 9.53951928533e-06 3458785652.7 +UniRef50_P77608 2 keto 4 pentenoate hydratase 2.29198367168e-05 8.84925370398e-07 -8895764109.31 +UniRef50_UPI00035F6D04 hypothetical protein 4.81829758415e-08 7.78005949958e-08 11956996.3016 +UniRef50_UPI0003688491 hypothetical protein 1.48393233729e-06 1.74888431651e-06 106964365.338 +UniRef50_UPI0003AF89CE PREDICTED 7.05582642558e-08 9.86024436303e-07 369584927.689 +UniRef50_C7ZUX9 Exported protein 0.000107910022788 1.67683375285e-05 -36795016773.5 +UniRef50_UPI000395A56D hypothetical protein, partial 1.12869047595e-07 3.05002773062e-07 77566742.717 +UniRef50_P95784 ATP synthase subunit a 7.06529539011e-05 1.7726855061e-05 -21366915578.0 +UniRef50_W6EGR2 0.000321252960984 4.15807993141e-05 -1.1290708363e+11 +UniRef50_R5GIU2 ABC transporter permease protein 1.76670509603e-06 1.55195290105e-05 5552183780.41 +UniRef50_B9AFH0 Polymorphic outer membrane protein repeat (Fragment) 3.50436013622e-05 1.37174198417e-05 -8609641181.5 +UniRef50_Q1H276 UPF0125 protein Mfla_1143 2.00018733029e-07 3.07484600537e-07 43385289.4675 +UniRef50_Q8X9B6 Biotin carboxylase 3.43132376192e-05 2.67149555587e-05 -3067519709.23 +UniRef50_Q6A7Q4 Phosphopantetheine adenylyltransferase 3.90502747089e-05 2.22179388572e-05 -6795420539.32 +UniRef50_A0A022KFC8 FCD domain protein 1.7584751034e-06 4.52399232121e-05 17553994178.9 +UniRef50_A8I308 D hydantoinase 1.41085008063e-05 3.93386043517e-06 -4107627174.69 +UniRef50_A8L8P5 UPF0225 protein Franean1_5815 1.47442169188e-07 8.54757163091e-07 285551742.77 +UniRef50_Q8XDS0 Aspartate ammonia lyase 3.71662976952e-05 2.23329296489e-05 -5988412706.19 +UniRef50_B9TEB7 2.30693169858e-06 1.55375221327e-07 -868609752.433 +UniRef50_UPI0002378CC4 serine threonine protein kinase 5.10662009143e-08 1.11183747181e-05 4468008259.54 +UniRef50_P0AEI0 Inner membrane protein YjiG 4.29740806271e-05 3.9649657845e-05 -1342110272.39 +UniRef50_Q6YWN8 BKRF1 encodes EBNA 1 protein like 2.2129784845e-07 2.13225057899e-06 771475067.346 +UniRef50_P47227 Cis 2,3 dihydrobiphenyl 2,3 diol dehydrogenase 1.20830995812e-07 1.29751677288e-07 3601388.58093 +UniRef50_P77288 1.42159318365e-05 2.56797134953e-05 4628069332.08 +UniRef50_Q5HRN0 UvrB UvrC domain protein 0.000164415474507 5.55139918332e-05 -43964864927.0 +UniRef50_Q2S0M8 3 isopropylmalate dehydrogenase 6.14853873775e-07 9.61525308831e-05 38569732587.8 +UniRef50_UPI0002E4EFAA hypothetical protein 1.33468751449e-06 8.15373332446e-07 -209653507.993 +UniRef50_C5N2L9 Sua5 YciO YrdC YwlC family protein 0.000217879065272 6.90338607265e-05 -60090635611.3 +UniRef50_Q28W83 1.04839170676e-06 1.98402702908e-07 -343150991.393 +UniRef50_UPI0003B4DCFB ketol acid reductoisomerase 7.37937188625e-08 2.20856894897e-07 59371208.8334 +UniRef50_B7JTI5 SAF domain family 1.36605303564e-06 2.19838738361e-06 336023590.167 +UniRef50_G4LM62 Outer membrane OprD family porin 9.65852908246e-06 2.40066438947e-05 5792510020.85 +UniRef50_R8AF48 DNA single strand annealing protein 3.09122402051e-07 7.98239877779e-07 197462727.098 +UniRef50_P07648 RecBCD enzyme subunit RecC 7.09842051955e-07 1.10513205694e-06 159583425.766 +UniRef50_Q97FT9 Lon protease 6.2658326208e-06 8.71016769331e-06 986808064.137 +UniRef50_A8LK44 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 6.30121142543e-07 3.45410562344e-07 -114941155.018 +UniRef50_Q7CTM5 Replication protein C 2.61476560876e-07 5.3053551528e-08 -84142926.5117 +UniRef50_Q6F9Y0 Type II secretion system protein K 1.18334165783e-06 6.92475896506e-05 27478372156.9 +UniRef50_R0DQ91 2.41315403657e-07 6.08747515742e-07 148336852.548 +UniRef50_UPI0002ECAD7A hypothetical protein 3.91594156617e-08 4.13821036438e-06 1654837169.01 +UniRef50_UPI00035E723E hypothetical protein 2.61762813861e-07 1.32801570306e-07 -52063236.5556 +UniRef50_UPI000479B32F hypothetical protein 4.60099476383e-07 1.11411166263e-07 -140769749.682 +UniRef50_Q483C5 Holliday junction ATP dependent DNA helicase RuvA 3.79776065942e-05 1.93431844603e-05 -7522944885.53 +UniRef50_H3TL67 Phenol hydroxylase 9.85670080054e-06 6.62129088634e-06 -1306174685.31 +UniRef50_UPI0003B4F6D8 hypothetical protein 2.64174346183e-08 5.43829316898e-07 208885526.234 +UniRef50_A5UNK2 3.5845793656e-05 4.8412574623e-06 -12516911729.8 +UniRef50_O25657 4 hydroxy tetrahydrodipicolinate synthase 1.59501122048e-06 4.97804360017e-05 19453047285.8 +UniRef50_B2GD08 Dihydroorotase 4.1560455647e-08 1.95482858848e-05 7875104430.21 +UniRef50_Q1IY18 RNA ligase of LigT family 3.76231882575e-06 0.000195667760961 77474581934.5 +UniRef50_P07607 Thymidylate synthase 2.66552955573e-07 9.42510242078e-07 272892251.491 +UniRef50_O32044 Single stranded DNA specific exonuclease RecJ 5.1475362111e-07 2.76808252674e-06 909696530.658 +UniRef50_UPI0003B455BB histidine kinase 3.26439894125e-08 1.65119946651e-07 53482169.6002 +UniRef50_UPI0004633AFB relaxase 1.41730229001e-07 5.2653357938e-08 -35961425.9443 +UniRef50_A0A033ZCU2 1.75774479779e-06 8.40279231199e-08 -675700041.12 +UniRef50_P76481 3.69475847658e-05 7.11800433208e-06 -12042567671.2 +UniRef50_Q466I1 DNA 3 methyladenine glycosylase III 2.28798246567e-05 3.20996418691e-06 -7940964047.99 +UniRef50_Q02H50 1.11109932407e-05 5.9602647001e-06 -2079412318.39 +UniRef50_P76486 1.26122746107e-05 2.84871419803e-06 -3941669150.95 +UniRef50_P76485 1.6700764064e-06 4.20878914765e-06 1024909487.15 +UniRef50_P76484 4.75692025709e-05 3.50871332905e-06 -17787760190.0 +UniRef50_G9UAR6 Nitrite extrusion protein 5.48394375904e-07 3.17769379433e-07 -93106141.1623 +UniRef50_Q3J6L0 Dimethlysulfonioproprionate lyase DddL 0.000199228529549 1.38047354394e-05 -74857861088.0 +UniRef50_F4D682 Sel1 repeat protein 3.47379744345e-06 6.86335542532e-05 26305793424.2 +UniRef50_UPI000289216F DNA mismatch repair protein MutS 2.31850332316e-08 2.08201817064e-07 74693546.0442 +UniRef50_A3JNX6 2.36296152086e-06 2.53817331871e-07 -851487391.205 +UniRef50_R5AYM2 1.75382491039e-07 1.93591288849e-06 710747725.588 +UniRef50_A3JNX5 3.12141726568e-06 2.99302073354e-07 -1139322534.39 +UniRef50_UPI0004744F96 amidohydrolase 6.0412349673e-08 3.82915000607e-07 130198277.735 +UniRef50_UPI0003B74A4B RNA polymerase subunit sigma 24 1.19325596245e-06 3.255348984e-07 -350309641.692 +UniRef50_G8VJE3 BadF BadG BcrA BcrD ATPase family protein 3.76108485017e-06 5.51566915926e-05 20749037136.9 +UniRef50_Q823P5 Na translocating NADH quinone reductase subunit E 1.4745186382e-07 4.29424316819e-07 113835739.467 +UniRef50_S4XM14 7.23885105463e-08 5.18343814163e-07 180037628.557 +UniRef50_Q7ZAK9 Segregation and condensation protein B 5.53826383443e-05 1.58619682925e-05 -15954979473.1 +UniRef50_UPI000306724C thioredoxin 3.23952116692e-07 8.00773813649e-08 -98455223.331 +UniRef50_B1VAN9 Proline tRNA ligase 5.41407800143e-08 1.53956858958e-07 40296975.9506 +UniRef50_R6KZL2 L serine dehydratase iron sulfur dependent alpha subunit 8.82090596597e-08 1.22046742601e-07 13660687.8385 +UniRef50_S5YFS5 2.29585157287e-06 6.0003333397e-07 -684622633.074 +UniRef50_Q1GN45 5.14583464975e-06 1.9287795798e-06 -1298764609.44 +UniRef50_A0A059LCY3 1.34018694272e-06 1.11306225312e-06 -91693024.3249 +UniRef50_D9SMI0 9.25678139208e-07 9.70849450822e-06 3545730745.45 +UniRef50_B7H3X7 RNA methyltransferase, TrmH family, group 1 family protein 1.89058091245e-06 6.9974121164e-05 27486160678.5 +UniRef50_A0A023RS70 7.54971977708e-06 6.49521698905e-05 23174073518.1 +UniRef50_Q9RYG9 Aldehyde dehydrogenase 8.88899502839e-07 0.000474508543153 1.91206062108e+11 +UniRef50_Q4EF29 5.32708507638e-06 2.25172491813e-06 -1241560634.8 +UniRef50_R9SK97 Energy converting hydrogenase A subunit L EhaL 9.8441731494e-06 1.19319880887e-05 842876511.366 +UniRef50_K7RWV6 Type I phosphodiesterase nucleotide pyrophosphatase 1.00395209802e-06 5.16792670462e-05 20458246500.6 +UniRef50_Q5Z380 Glutamyl Q tRNA synthetase 7.71306720528e-08 1.14489673521e-07 15082287.3392 +UniRef50_Q2J6V8 3 isopropylmalate dehydrogenase 4.99309380192e-07 1.47466571303e-05 5751829121.33 +UniRef50_Q4L351 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00146690779987 0.000313604727515 -4.65602602932e+11 +UniRef50_UPI000474339B hypothetical protein, partial 2.68543045134e-07 4.25282675978e-07 63277712.3833 +UniRef50_C5C6N2 Cobyrinic acid ac diamide synthase 4.08622150193e-08 2.75030285068e-07 94536523.4441 +UniRef50_U7GP52 4.98031644221e-06 1.3478540219e-06 -1466469654.41 +UniRef50_O26880 Probable cobyric acid synthase 1.84492692467e-05 1.26786892769e-05 -2329653946.79 +UniRef50_UPI0003783691 hypothetical protein, partial 4.90056105217e-08 7.37651023192e-08 9995710.67178 +UniRef50_A3PFT3 0.000121008246677 1.95334490879e-05 -40966621022.5 +UniRef50_L0A0P5 3.5489640402e-07 4.19737100999e-07 26176985.0553 +UniRef50_P15028 Fe dicitrate binding periplasmic protein 2.52953224648e-05 1.06137438557e-05 -5927133447.72 +UniRef50_V6YIB9 1.15897161265e-07 9.25509449579e-07 326850415.852 +UniRef50_UPI0002627F77 hypothetical protein 7.25049225708e-07 2.14149768971e-07 -206256380.126 +UniRef50_C0QHR6 UgpB 1.33020447329e-07 6.95275708449e-08 -25632853.3818 +UniRef50_UPI0003505377 PREDICTED 5.18284010692e-08 1.04173402818e-07 21132319.5514 +UniRef50_F0P831 Nitroreductase family protein 0.000375989831202 5.26833858042e-05 -1.30522779423e+11 +UniRef50_A6QEY2 0.000178351850004 3.69144252742e-05 -57100023995.9 +UniRef50_V4QDF6 1.10005147011e-07 1.47186948936e-07 15010749.7091 +UniRef50_D7GAG5 Heat shock protein DnaJ 2.48988985043e-07 3.12457458379e-07 25623001.5315 +UniRef50_Q49ZB7 UPF0457 protein SSP0714 9.49247154328e-05 1.75435666453e-05 -31239719339.0 +UniRef50_C7CIU9 2.04788180408e-06 4.57339379516e-07 -642121494.945 +UniRef50_Q72I44 Maltose maltodextrin binding protein 5.25796472968e-06 0.000550429009884 2.2009224093e+11 +UniRef50_Q8FQP8 Fumarate hydratase class II 7.63395438253e-08 1.07974433758e-07 12771393.2696 +UniRef50_Q8GDY3 Isoprenyl transferase 7.22078346917e-08 1.29117543963e-07 22975147.9935 +UniRef50_UPI000363611D hypothetical protein, partial 3.79090304304e-09 2.97566443213e-08 10482688.3895 +UniRef50_E2XCC3 Porin thermoregulatory envY domain protein 3.95957943646e-07 6.31347907217e-07 95029816.8533 +UniRef50_UPI00037CBE46 hypothetical protein 1.58818851999e-07 5.09814010307e-08 -43535302.2701 +UniRef50_A0A017HI16 Putative inner membrane protein 1.04505148597e-07 1.8284873694e-07 31628267.998 +UniRef50_A5UJ74 Chloramphenicol O acetyltransferase 1.68940887183e-05 3.50871332905e-06 -5403840301.65 +UniRef50_Q2S4B9 Leucyl phenylalanyl tRNA protein transferase 1.63919476428e-07 4.0630313711e-07 97853258.1993 +UniRef50_Q9KPL8 Thymidine phosphorylase 2.75091960508e-05 8.9763764448e-06 -7481926698.21 +UniRef50_A5UJ64 1.71708182643e-05 6.1738684013e-06 -4439603607.44 +UniRef50_Q38XI1 Phosphopentomutase 1.39465648841e-07 1.51672510828e-07 4928059.97919 +UniRef50_T2A3N6 Replication initiation factor 1.37936414928e-06 8.78178138178e-05 34896262850.2 +UniRef50_A0A034MYR1 8.13166827365e-05 8.99594919637e-06 -29196767605.3 +UniRef50_A4X046 4.14177856367e-07 1.8310656756e-07 -93286314.855 +UniRef50_P10173 Fumarate hydratase, mitochondrial 7.68565490509e-08 2.87440250094e-07 85015224.2637 +UniRef50_E3GZR7 C4 dicarboxylate transporter malic acid transport protein 2.59768094505e-06 1.34842505848e-05 4395041756.78 +UniRef50_UPI00036C6CE0 methionyl tRNA synthetase 9.53304226055e-08 1.65977317256e-07 28521018.3053 +UniRef50_A3M9C4 1.16030529356e-06 5.40148742801e-05 21338038098.3 +UniRef50_C7M0E4 2 isopropylmalate synthase 8.68456851448e-05 3.18708548283e-05 -22194013615.8 +UniRef50_UPI00034512D5 hypothetical protein 1.52644904249e-06 4.99342069486e-07 -414655689.02 +UniRef50_Q3J3B7 ABC transporter, fused ATPase and inner membrane subunits 3.47920830776e-05 1.10754262457e-05 -9574705399.15 +UniRef50_B1YMH0 tRNA dimethylallyltransferase 7.34687766961e-08 8.8742903743e-08 6166352.52345 +UniRef50_F8LKP2 5.12369866803e-05 2.6842517056e-05 -9848346741.14 +UniRef50_Q1QNK0 0.00020792651585 9.53177936199e-05 -45461523028.7 +UniRef50_B9KKX9 Na+ solute symporter 8.68768981435e-05 1.7356498707e-05 -28066238363.8 +UniRef50_UPI0004689C7D succinylglutamate desuccinylase 1.39811249249e-06 1.34969873678e-07 -509946175.717 +UniRef50_A0A024RXB9 6.17107139422e-06 6.32769582685e-07 -2235880403.92 +UniRef50_P54304 Oxygen independent coproporphyrinogen III oxidase like protein YqeR 2.09034716046e-07 1.56390135144e-06 546976286.79 +UniRef50_UPI000472E48E hypothetical protein 3.30198369461e-07 1.41672052991e-07 -76110387.437 +UniRef50_B5Z6E9 Acetyl coenzyme A synthetase 1.26903165919e-06 3.89659082509e-05 15218691672.8 +UniRef50_UPI00036C5675 hypothetical protein, partial 1.65298260422e-07 2.11167240586e-07 18517870.1679 +UniRef50_C7RVA0 Transposase IS4 family protein 5.63871600227e-07 1.67445832553e-07 -160041947.101 +UniRef50_Q9HZ55 Ribosomal large subunit pseudouridine synthase B 6.79746682604e-06 1.20817857143e-07 -2695445120.44 +UniRef50_D2Z027 O ureido L serine synthase 5.78628026039e-07 9.74749310295e-08 -194247408.868 +UniRef50_M3DVL4 9.06873424513e-08 4.15391734511e-08 -19841718.9412 +UniRef50_I6STE7 Transcriptional regulator 4.13494153596e-05 9.86952797098e-06 -12708816840.4 +UniRef50_S3FNF7 Nitrite extrusion 1 domain protein 4.11420351115e-07 3.78116226998e-07 -13445283.5936 +UniRef50_Q9XDH5 DNA polymerase III subunit alpha 1.77744155347e-08 1.11834011294e-07 37973013.0491 +UniRef50_A6LRS6 Methyl accepting chemotaxis sensory transducer 3.62914169993e-06 5.76700963191e-06 863083518.73 +UniRef50_UPI00036C22DF hypothetical protein, partial 3.13781564694e-07 4.69435660614e-07 62839468.6135 +UniRef50_A4FVV8 Tetrahydromethanopterin S methyltransferase subunit H 4.60681242472e-05 4.20878914765e-06 -16899127251.5 +UniRef50_UPI000469A37F hypothetical protein 3.76370854623e-07 2.62625779443e-07 -45920282.6592 +UniRef50_Q8CJR5 Phosphate acetyltransferase 3.63169941818e-08 1.29372822869e-07 37567779.9645 +UniRef50_Q8CQB7 OpuCB protein 9.33715815705e-05 5.75446329409e-05 -14463778807.9 +UniRef50_D5H607 GTP binding protein TypA 4.02610177941e-06 5.54073267646e-05 20743231045.1 +UniRef50_UPI00040B08A2 hypothetical protein 7.9878624342e-08 2.45554915025e-07 66885551.6254 +UniRef50_R7PVW1 5.26133122526e-05 7.99776047734e-06 -18011845746.1 +UniRef50_Q9RU45 6.50090681193e-07 1.93362323375e-05 7543824691.39 +UniRef50_UPI0003B4FB17 succinyl CoA synthetase subsunit alpha 8.03005203118e-08 6.26067677485e-08 -7143185.03656 +UniRef50_B4U3L2 Glycine D amino acid oxidases family 5.20826489182e-05 4.27899087141e-05 -3751593255.14 +UniRef50_Q0BPU7 Protoheme IX farnesyltransferase 3.54625724806e-05 9.38789246667e-06 -10526668293.9 +UniRef50_UPI00035C8085 MULTISPECIES 3.38538896111e-08 2.45922718809e-07 85614788.7244 +UniRef50_D6K0E4 Tellurium resistance protein 8.55281585193e-07 2.82812834405e-06 796462446.104 +UniRef50_A4WRY9 5.93547535954e-05 0.000297460523065 96126221021.4 +UniRef50_Q74HC8 N acetylmuramic acid 6 phosphate etherase 7.07622268436e-08 1.10689666031e-07 16119197.1647 +UniRef50_S4MRC0 4.25462990936e-07 7.980793015e-06 3050179445.04 +UniRef50_B9E7V9 Two component response regulator 0.000185652325943 6.29951231988e-05 -49518217920.9 +UniRef50_Q7WEH6 Hemin import ATP binding protein HmuV 2.346945672e-07 2.79017478474e-06 1031678723.09 +UniRef50_C5C1A7 Ribulokinase 1.58806901612e-06 4.15406081521e-05 16129330322.0 +UniRef50_UPI00035EC645 hypothetical protein 3.64714282561e-07 1.40116837553e-06 418429236.054 +UniRef50_Q8CND6 FDHD protein 1.21392972285e-05 1.05564091509e-05 -639031341.148 +UniRef50_A1VV51 4.40227065256e-07 7.72371549974e-08 -146543481.159 +UniRef50_G4LN90 Acyl CoA synthetase 6.56381761222e-06 2.31562543847e-06 -1715047311.72 +UniRef50_D8THS6 Pathogenesis related protein 1 like protein 4.75931520965e-08 4.28543409532e-07 153794293.712 +UniRef50_U3SRT7 1.85279851598e-05 1.9055539861e-05 212980306.699 +UniRef50_X7Z2N8 2.14830408532e-05 1.87085625902e-05 -1120090921.45 +UniRef50_E4REV8 BirA 1.18503109539e-05 5.27475429582e-06 -2654632914.02 +UniRef50_A6LXY3 Diguanylate cyclase 2.03496489951e-06 1.44348123307e-05 5005970571.21 +UniRef50_Q8RKJ0 Putative ribitol 5 phosphate dehydrogenase 9.35580263371e-05 2.04932539342e-05 -29497145224.6 +UniRef50_A3JXP6 9.00490404456e-08 5.6721191515e-08 -13454861.592 +UniRef50_B4U3L6 DNA replication protein DnaD 8.59148713415e-05 6.29849185467e-05 -9257103325.42 +UniRef50_UPI0003D0F47B PREDICTED 5.01228085039e-08 8.17100699863e-07 309638386.619 +UniRef50_M1MTG9 Tetratricopeptide TPR_2 repeat containing protein 2.99563807054e-06 3.13615848291e-06 56729814.8531 +UniRef50_UPI000421FD3A acetyl CoA acetyltransferase 5.43840349299e-08 1.55847162666e-06 607218618.012 +UniRef50_A7WYS8 Lysine tRNA ligase 0.000282354385134 0.000108128239338 -70337233053.1 +UniRef50_UPI00035D12EA hypothetical protein 3.58642225905e-06 1.03607080292e-06 -1029608179.17 +UniRef50_B7KKV6 Transposase, IS605 OrfB family 1.38104630066e-06 0.000408555658011 1.64381387342e+11 +UniRef50_UPI000467FC65 hypothetical protein 3.65300548237e-08 9.01597706282e-08 21650974.3809 +UniRef50_G8VDJ6 Kinase, PfkB family protein 4.86144684264e-06 4.95801056252e-05 18053471310.2 +UniRef50_K4LCD0 Transposase 7.01437052639e-06 4.61688595543e-06 -967893941.741 +UniRef50_I3THN5 ABC transporter, periplasmic solute binding protein 7.05048334824e-05 3.60658156203e-06 -27007645234.1 +UniRef50_R9YM38 3.41502750521e-05 1.0361989656e-05 -9603622729.49 +UniRef50_H3USA6 4.78524494577e-05 1.14184482882e-05 -14708853367.6 +UniRef50_UPI0003820DEC DNA binding protein 5.76808633565e-07 3.30145169625e-06 1099971839.53 +UniRef50_D0WAX6 1.73821309264e-06 1.76994996211e-05 6443767238.57 +UniRef50_C6NU33 DNA repair protein RadA 7.29874260036e-08 6.10225328375e-07 216889533.838 +UniRef50_D3EY08 8.68313021052e-05 7.26188619325e-06 -32123149630.2 +UniRef50_J7TVX7 Integral membrane protein 1.84790683319e-06 4.15688804925e-07 -578203993.3 +UniRef50_A5IUD7 Phage transcriptional regulator, RinA family 0.000240077126472 2.92464598326e-05 -85114927305.4 +UniRef50_A6Q5I8 Glutamate tRNA ligase 2 4.55477150107e-08 1.30156777978e-07 34157716.9899 +UniRef50_Q1QJ73 1.17090754681e-06 3.20068933125e-07 -343493989.309 +UniRef50_Q3IVG4 Hemolysin type calcium binding protein 3.63163566087e-05 1.00026594597e-05 -10623162444.4 +UniRef50_Q9AAL4 N succinylarginine dihydrolase 1 1.39343843814e-07 4.69487016485e-07 133282850.12 +UniRef50_Q223D6 ATP synthase subunit beta 1 2.38968077398e-07 5.63111242768e-07 130860573.544 +UniRef50_M1LNT9 ABC type metal ion transport system, periplasmic component surface adhesin 3.87272504918e-06 4.06691331196e-06 78396184.6422 +UniRef50_B2TL84 Cyclic nucleotide binding domain protein 1.89374241902e-06 3.83650078313e-05 14723897399.7 +UniRef50_UPI000361F512 hypothetical protein 1.66122576576e-07 1.31223973287e-07 -14088994.4018 +UniRef50_B9C0V9 5.43776236324e-07 5.78447554131e-06 2115734620.04 +UniRef50_J0EHT6 0.000284727798813 6.25492954049e-05 -89696188262.6 +UniRef50_UPI00036BFB9E hypothetical protein 6.77397920763e-07 1.47148639922e-07 -214068141.566 +UniRef50_B9KQI2 4.56910066061e-05 1.8191574448e-05 -11101858218.2 +UniRef50_P0A2U6 Zinc transport system ATP binding protein AdcC 7.43395409295e-05 0.000110868924 14747360211.5 +UniRef50_D9SLD8 Fibronectin binding A domain protein 2.75808980077e-06 2.08680996202e-05 7311233198.9 +UniRef50_UPI000248DBE4 multidrug transporter 3.53340808004e-08 1.220956294e-06 478650236.689 +UniRef50_UPI0003B77FDC peptidyl tRNA hydrolase 1.78154991167e-07 4.4239483223e-07 106676866.425 +UniRef50_Q93YZ7 Acetolactate synthase small subunit 2, chloroplastic 1.87022389469e-07 3.26351724296e-06 1242018725.19 +UniRef50_V7C557 2.43715819432e-07 8.28080739986e-09 -95048003.4698 +UniRef50_A6LYZ3 2.36872393028e-06 8.06912347246e-06 2301321246.95 +UniRef50_B0V8I1 1.14044105391e-06 5.07037285646e-05 20009307378.0 +UniRef50_Q9FA52 Glucans biosynthesis glucosyltransferase H 6.72991507532e-05 1.63025750352e-05 -20587943415.7 +UniRef50_Q6A910 Orotate phosphoribosyltransferase 2.86615951336e-07 3.85141541149e-05 15432926261.3 +UniRef50_B5F1C0 Cysteine desulfurase IscS 3.73632505104e-05 1.06969172297e-05 -10765525978.1 +UniRef50_A3M8T8 Phage integrase 4.67559904254e-06 5.43028547724e-05 20035132133.1 +UniRef50_B4IVR0 GE15000 8.01456451903e-07 1.2566668307e-06 183774015.98 +UniRef50_D3QH80 Hydroxymethylglutaryl CoA reductase 0.000261247515505 5.42510070036e-05 -83567030614.7 +UniRef50_D5BRV4 Binding protein dependent transport systems inner membrane component 0.000186131191613 3.1797774973e-05 -62306294181.6 +UniRef50_Q9K678 PTS system mannitol specific EIICB component 7.25565611933e-08 1.55665267991e-05 6255105917.44 +UniRef50_Q1MHS1 Ribose import ATP binding protein RbsA 1 5.72047374741e-07 6.58279811933e-08 -204366981.186 +UniRef50_C1KWM3 3 phosphoshikimate 1 carboxyvinyltransferase 6.72018972832e-05 6.78986082623e-05 281270771.868 +UniRef50_A3PN67 5.05107074785e-05 2.1895732016e-05 -11552216739.4 +UniRef50_A4SIM5 Argininosuccinate synthase 3.53388418802e-08 6.84757887109e-07 262178437.827 +UniRef50_B7HEC5 SsrA binding protein 0.000366579350599 5.6128352379e-05 -1.25332877644e+11 +UniRef50_Q7NCQ9 Valine tRNA ligase 3.2344464246e-08 2.61089678025e-08 -2517346.43239 +UniRef50_Q2T8Y7 Probable chemoreceptor glutamine deamidase CheD 2 3.90630920259e-07 1.74103418452e-07 -87414809.5707 +UniRef50_P95646 Anthranilate synthase component 1 1.05112652862e-05 1.3832045875e-06 -3685110117.97 +UniRef50_UPI00047BA852 hypothetical protein 1.62657406834e-07 7.84398002079e-08 -33999681.2612 +UniRef50_UPI00035E8084 hypothetical protein 2.30164997838e-07 4.28964192602e-08 -75602623.2158 +UniRef50_Q0AQH3 Ribosomal RNA large subunit methyltransferase E 3.30982315753e-06 1.02764576072e-06 -921343020.558 +UniRef50_UPI0003C1AC12 PREDICTED 1.03607069794e-07 1.6649208032e-07 25387450.4352 +UniRef50_B9KMC5 Transcriptional regulator, LysR family 3.81060621614e-05 9.75993471022e-06 -11443679498.1 +UniRef50_UPI0002DED034 hypothetical protein 1.82224950357e-06 2.10983997576e-06 116103802.755 +UniRef50_UPI00047129D7 transposase 1.02159962651e-06 0.000172533378248 69241409715.5 +UniRef50_UPI00036A3DAC hypothetical protein 8.8639502822e-07 4.14199314228e-07 -190631204.232 +UniRef50_Q6F9R1 Protoheme IX farnesyltransferase 7.70137112277e-08 3.0296902406e-05 12200139905.8 +UniRef50_Q9UJM8 Hydroxyacid oxidase 1 5.03996479327e-08 1.00104296414e-06 383786372.458 +UniRef50_A6M2U7 Response regulator receiver sensor signal transduction histidine kinase 7.0534543686e-06 1.20553686606e-05 2019334180.07 +UniRef50_A4WXL5 4.57967202102e-05 1.01645984431e-05 -14385124812.7 +UniRef50_UPI0004790384 hypothetical protein 2.18716966552e-07 5.76142044956e-07 144296890.251 +UniRef50_UPI00037C9F17 hypothetical protein 1.22371667986e-05 2.57609826611e-06 -3900291921.21 +UniRef50_G0HE81 Alcohol dehydrogenase 1.7184491147e-06 6.16768952251e-05 24205960467.6 +UniRef50_C4Y1J5 Isocitrate dehydrogenase, mitochondrial 3.57524976554e-06 1.36514626931e-06 -892245902.448 +UniRef50_A0A038FV36 3.81163807889e-07 2.56416453118e-07 -50362037.9432 +UniRef50_UPI0002F90E7D hypothetical protein 2.02275777247e-07 1.09304893085e-05 4331111452.57 +UniRef50_C8WIL3 2 nitropropane dioxygenase NPD 3.53447267603e-06 6.30030521259e-05 24008195285.5 +UniRef50_O29329 Putative branched chain amino acid aminotransferase 1.29646082167e-06 3.09431216509e-07 -398475963.819 +UniRef50_UPI00036F30A5 hypothetical protein 1.6177650991e-07 3.76971102985e-07 86876697.959 +UniRef50_M1MI89 Sensor histidine kinase YesM 3.64378607423e-06 1.74270182161e-05 5564459954.96 +UniRef50_A3M8H3 Chemotactic signal transduction system component 1.87178460387e-06 7.35889845319e-05 28953113679.9 +UniRef50_UPI0001FFE87D ABC type Fe3+ transport system, periplasmic component 1.10952463117e-06 8.22955941343e-07 -115691296.676 +UniRef50_UPI0003807E5F hypothetical protein, partial 9.5642428546e-06 0.00107632591229 4.30664776591e+11 +UniRef50_UPI0003B5D592 adenylosuccinate synthetase 2.63329123836e-07 2.41355870463e-07 -8870872.02882 +UniRef50_Q6MCV4 Spermidine putrescine import ATP binding protein PotA 1.50905353334e-06 6.06413392275e-07 -364406901.588 +UniRef50_UPI000475EAAA epimerase 6.45370730131e-08 4.21705017338e-07 144193082.068 +UniRef50_M9SCU9 3.29202897256e-06 2.28927678448e-06 -404823363.481 +UniRef50_F7P1G2 4.94770542113e-07 3.0174299474e-07 -77927589.5889 +UniRef50_UPI0001BC2D8F putative enterobactin synthetase component A 5.25925959356e-08 1.19258930283e-07 26914017.264 +UniRef50_R0P3C6 Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain 0.00012543489925 0.00042977778887 1.22866959247e+11 +UniRef50_Q02KY6 3.21364903152e-05 8.19906267417e-05 20126726654.4 +UniRef50_Q2GL45 30S ribosomal protein S8 4.41245341561e-05 1.38709361531e-05 -12213748767.2 +UniRef50_A7ZLN4 ABC transporter, ATP binding protein 1.73059899336e-05 3.55150487929e-06 -5552854402.93 +UniRef50_G8LHY7 4.11827725455e-05 1.1937024265e-05 -11806867466.5 +UniRef50_W4KP08 1.04639966869e-06 3.86495865146e-07 -266411263.421 +UniRef50_C5C7X4 Chromosomal replication initiator protein DnaA 1.52941569257e-06 5.83511166666e-05 22939617963.9 +UniRef50_UPI00047B2DE4 hypothetical protein 1.51936233275e-08 2.30705803702e-07 87004911.8492 +UniRef50_UPI00036A72D9 hypothetical protein 8.16615648056e-07 5.83553331655e-07 -94090117.1273 +UniRef50_P39308 3.09831995768e-05 2.46097254331e-06 -11514773060.5 +UniRef50_Q7MT94 Tryptophan tRNA ligase 7.75801686278e-08 6.37280228483e-08 -5592281.23613 +UniRef50_A0A023RUT4 NADH 9.29768445451e-07 7.88419021807e-05 31454084478.3 +UniRef50_S6P0Z4 ABC transporter permease 1.00355053352e-06 7.23019300995e-07 -113253901.076 +UniRef50_A5UKM7 Protein disulfide isomerase, thioredoxin related 0.000116263031349 2.26415187466e-05 -37796153502.7 +UniRef50_V2DIK3 3.35413986389e-07 3.09888708567e-07 -10304867.8871 +UniRef50_P83221 Peptidyl prolyl cis trans isomerase cyp18 2.60335164724e-06 1.22422355603e-05 3891335718.11 +UniRef50_UPI0003B343E5 imidazoleglycerol phosphate dehydratase 1.13767503552e-06 2.32338350358e-07 -365495529.53 +UniRef50_Q2YTP0 2 succinylbenzoate CoA ligase 8.8624456869e-05 1.24339747476e-05 -30759032594.8 +UniRef50_A0A017HIG9 4.7770840459e-07 1.16712820749e-07 -145738347.111 +UniRef50_Q6CX23 Glyceraldehyde 3 phosphate dehydrogenase 2 5.00631177316e-07 1.72323339307e-07 -132541902.994 +UniRef50_G2TA75 TRAP transporter solute receptor TAXI family protein 1.07399778315e-06 9.74206972388e-08 -394256153.531 +UniRef50_UPI000477C7AD DNA gyrase subunit A 2.45962173019e-08 4.24370695408e-08 7202570.98072 +UniRef50_UPI0003B4541A coproporphyrinogen III oxidase 8.51794744736e-08 9.47936903594e-08 3881376.93279 +UniRef50_Q8DVU8 Putative hydrolase SMU_367 2.80682047299e-05 1.55719042023e-05 -5044909869.84 +UniRef50_UPI00035C6E64 hypothetical protein, partial 1.90868809566e-07 2.02376363391e-06 739962132.735 +UniRef50_UPI00016AE124 glycosyltransferase family 4 1.02923970582e-07 2.7818279007e-07 70754136.0949 +UniRef50_Q6A7G2 Conserved membrane protein 2.64592982837e-06 5.45241360452e-05 20943868466.9 +UniRef50_M0CR54 PKD domain containing protein 3.95926742616e-08 3.61637838177e-08 -1384285.14942 +UniRef50_Q46891 Putative hydroxypyruvate isomerase YgbM 3.44280515231e-05 1.18621754893e-05 -9110121069.28 +UniRef50_O34718 Major myo inositol transporter IolT 3.95104281576e-06 1.89983605869e-05 6074786835.55 +UniRef50_D8GNL4 Dihydrodipicolinate synthase 8.81676249207e-06 1.75470218562e-05 3524512837.63 +UniRef50_UPI000304D536 hypothetical protein 1.44428921972e-07 1.29567811985e-07 -5999612.46808 +UniRef50_UPI000471E9C0 hypothetical protein 4.08836139677e-07 1.94630009402e-06 620693065.171 +UniRef50_A6M1I0 Extracellular solute binding protein, family 3 2.56357290153e-06 2.61415192231e-05 9518706263.97 +UniRef50_A0QUX7 Acetolactate synthase small subunit 3.74335187026e-07 6.40449166123e-06 2434448166.98 +UniRef50_Q1M3I8 4.17888188414e-05 1.99763272963e-06 -16064190126.1 +UniRef50_J9G6J0 Membrane protein 8.5861223467e-07 2.15981620182e-05 8372810750.49 +UniRef50_UPI000365FCDF hypothetical protein 4.04327578996e-07 1.95363742338e-07 -84361265.1335 +UniRef50_UPI000308E21F tail fiber protein 2.74944922881e-08 8.94109517698e-08 24996434.4932 +UniRef50_B9KVR5 Cobyrinate a,c diamide synthase hydrogenobyrinic acid a,c diamide synthase 5.87760757658e-08 8.69077452561e-07 327128609.328 +UniRef50_UPI00047054EB hypothetical protein 7.43970942223e-07 5.43977524304e-07 -80739797.0091 +UniRef50_UPI0003792A51 hypothetical protein 2.07699054691e-08 1.41522606495e-07 48749347.2065 +UniRef50_I4YZ70 Integral membrane protein MviN 3.69631303844e-07 2.90818763095e-07 -31817589.839 +UniRef50_A8FIC1 Serine hydroxymethyltransferase 1.27489980519e-06 1.66760288553e-06 158539052.542 +UniRef50_D8JKE9 Outer membrane porin protein 2.32297985442e-06 8.62024098171e-05 33863155192.3 +UniRef50_UPI000369E2AC hypothetical protein 1.22888122016e-07 1.68311188226e-07 18337849.2327 +UniRef50_F0RQZ2 ABC type transporter, periplasmic subunit 3.22008348285e-08 3.87402221705e-07 143399158.693 +UniRef50_Q8CRR5 0.000119267904035 3.47297129013e-05 -34129105160.9 +UniRef50_UPI000473A232 amino acid ABC transporter permease 5.55050411192e-07 7.47240347728e-07 77589435.8153 +UniRef50_U5NMU5 0.000143920291139 2.54724299656e-05 -47818855074.2 +UniRef50_U5NMU8 5.9355935752e-05 2.88375786677e-05 -12320635257.3 +UniRef50_R6GNA7 Peptidoglycan binding LysM 3.46112355382e-06 2.32851979323e-05 8003222095.35 +UniRef50_A5WCM3 Peptidoglycan binding LysM 2.41462252992e-06 5.34092944532e-05 20587174830.4 +UniRef50_D0DDK5 2.10084356972e-05 3.37474609877e-06 -7118936880.58 +UniRef50_Q26HR0 2.99429818387e-06 3.82737424664e-06 336323029.533 +UniRef50_V4KQA6 Oxidoreductase 5.49837193262e-07 3.04078364772e-06 1005625651.02 +UniRef50_M9S8V5 Oxidoreductase 8.85424524313e-07 1.43823070714e-06 223174639.702 +UniRef50_UPI00037B160E hypothetical protein 6.21887955241e-07 1.15010309726e-07 -204632725.583 +UniRef50_C6SJ34 Prephenate dehydrogenase 4.13772243308e-06 2.61093735615e-05 8870225183.01 +UniRef50_UPI0003A88B86 ATPase 4.87784573465e-08 2.87074446075e-08 -8102914.14176 +UniRef50_B5F4R2 NADPH dependent 7 cyano 7 deazaguanine reductase 4.57981763693e-05 7.02762717764e-06 -15652146476.8 +UniRef50_P50252 Adenosylhomocysteinase 3.18206327514e-05 5.19979206723e-06 -10747160058.7 +UniRef50_C5N5T0 Bacteriocin biosynthesis cyclodehydratase, SagC family 7.89438749373e-05 3.85380281108e-05 -16312336199.4 +UniRef50_Q7VG78 Probable GMP synthase [glutamine hydrolyzing] 1.45641272358e-07 1.5552333429e-07 3989509.66849 +UniRef50_Q6FCS8 ATP phosphoribosyltransferase regulatory subunit 1.17596881266e-06 0.000106861048564 42666363597.2 +UniRef50_Q3ZXA9 Peptide deformylase 2.27385940213e-07 6.05781521844e-07 152762939.74 +UniRef50_UPI0003958315 PREDICTED 5.19507593474e-07 3.70690726827e-07 -60079195.2537 +UniRef50_UPI00030811AD hypothetical protein 1.01575844376e-07 3.70410502223e-07 108531850.345 +UniRef50_F6G330 NADPH 1.80615305666e-06 3.68410671781e-06 758152938.089 +UniRef50_A0A024JQL9 Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit 2.0824653991e-07 6.17305624286e-07 165142172.082 +UniRef50_P29922 NADH quinone oxidoreductase chain 10 3.16720518374e-06 7.63170756914e-07 -970538198.931 +UniRef50_X2HFC0 Electron transport complex protein RnfB 5.87783848974e-06 1.24088424906e-05 2636646459.58 +UniRef50_UPI000477E177 hypothetical protein 7.85384613765e-07 2.59707217722e-07 -212222415.57 +UniRef50_O67012 Guanosine 3,5 bis 3 pyrophosphohydrolase 4.64553250333e-08 2.87446146447e-08 -7150031.11873 +UniRef50_UPI00047897DA xanthine permease 1.26424488597e-08 8.00957878646e-07 318252612.723 +UniRef50_A6M0Q8 Periplasmic binding protein LacI transcriptional regulator 3.7065852589e-06 1.24342965031e-05 3523484130.34 +UniRef50_D2JDC8 0.000569698015977 0.000107849684656 -1.86453838871e+11 +UniRef50_B8HGC5 Acetylglutamate kinase 4.78547149843e-07 1.67475798044e-07 -125583321.996 +UniRef50_UPI000360FD52 acetyl CoA carboxylase carboxyl transferase subunit alpha 7.42548437424e-08 3.23382240376e-07 100575787.158 +UniRef50_UPI0003C369DA 4.4264125206e-09 1.3328195886e-07 52020565.2924 +UniRef50_D9SL48 Extracellular solute binding protein family 1 2.03935256531e-06 1.35425872638e-05 4643997008.35 +UniRef50_Q8CPL9 Lipoprotein VsaC 7.84270126571e-05 2.82553854699e-05 -20254901570.6 +UniRef50_P25084 Transcriptional activator protein LasR 5.11082280691e-06 2.49212409446e-06 -1057200805.26 +UniRef50_C0ZBE7 Deoxyadenosine deoxycytidine kinase 8.58121638011e-05 5.61653906887e-06 -32375957815.4 +UniRef50_UPI0003B3EDEC ketol acid reductoisomerase 3.44636184566e-08 6.60663715874e-08 12758419.2483 +UniRef50_UPI0003655A5A hypothetical protein 3.2591751867e-07 1.41151778963e-07 -74592196.4503 +UniRef50_A0A023VR15 3.82509961169e-05 1.54359420418e-05 -9210717302.31 +UniRef50_A6UB50 CreA family protein 3.55370959716e-06 1.8831296088e-06 -674433641.623 +UniRef50_UPI0003FA4F40 hypothetical protein 4.98863595587e-07 2.33599765602e-07 -107090263.318 +UniRef50_E6N0G1 Cell division protein ZipA 3.52054485057e-06 2.59589369247e-05 9058654230.35 +UniRef50_Q6N8F8 Formyl coenzyme A transferase 2.89590993037e-05 5.77098329252e-06 -9361326983.9 +UniRef50_Q65Q81 5 nucleotidase SurE 1.23296781655e-05 2.6565220857e-06 -3905171812.39 +UniRef50_G2DGI6 Proton translocating NADH quinone oxidoreductase, chain M 1.59955918616e-07 3.58023446094e-07 79962291.4048 +UniRef50_UPI00046F0142 MULTISPECIES 4.9556509195e-08 8.01157740131e-08 12337150.2114 +UniRef50_Q5HRH4 Putative long chain fatty acid CoA ligase VraA 0.00010046404653 3.066499627e-05 -28178733120.6 +UniRef50_UPI0003C1970F PREDICTED 4.3565678018e-08 1.01824494263e-07 23519799.0342 +UniRef50_D2JC88 2.74260153085e-05 3.86581595083e-06 -9511541596.86 +UniRef50_P30131 Carbamoyltransferase HypF 1.88933468516e-05 2.53397898209e-06 -6604477560.94 +UniRef50_UPI00037CE6E8 hypothetical protein 3.1712093455e-07 8.33912385247e-07 208635050.391 +UniRef50_H8H0T6 ABC type Fe3+ siderophore transport system, periplasmic component 5.00401948346e-07 0.000121619189773 48897140939.6 +UniRef50_G5QK83 Transcription repair coupling factor 1.98278394162e-07 4.95979438203e-07 120185564.682 +UniRef50_W1YIT0 5.22816770188e-07 2.19216543551e-07 -122567137.087 +UniRef50_P56908 NADH quinone oxidoreductase subunit D 2 1.53916116559e-07 4.06178214954e-07 101841304.726 +UniRef50_Q5F6M1 Cell division protein FtsQ 1.55985945804e-06 1.64425241496e-05 6008314366.83 +UniRef50_X8N4L8 Putative lipoprotein 1.09583671999e-06 1.02929777806e-05 3712998707.78 +UniRef50_C6CTD5 Glycosyl transferase family 2 1.66783205682e-06 1.26515309275e-05 4434254019.24 +UniRef50_Q1IKB4 Imidazoleglycerol phosphate dehydratase 1.74690371268e-06 5.58775551211e-07 -479661918.758 +UniRef50_UPI000349BE1A hypothetical protein 1.75130162644e-09 1.32946712678e-08 4660199.97731 +UniRef50_A6LZ95 8.62049552083e-06 1.79738736202e-05 3776073517.57 +UniRef50_X6GZW0 6.42653548763e-07 5.08109691414e-07 -54317006.2506 +UniRef50_P0AC77 3 deoxy D manno octulosonic acid transferase 2.05425422367e-05 4.41164308773e-06 -6512241934.84 +UniRef50_UPI0002E36CA8 hypothetical protein 4.39002915566e-07 1.32802502467e-06 358909134.973 +UniRef50_UPI00037A380E hypothetical protein 1.0536512412e-06 1.77688041526e-05 6748112348.32 +UniRef50_A0A023VMY7 Peptidase M16 7.55958782603e-05 3.41911950191e-05 -16715578717.1 +UniRef50_O83806 Tyrosine tRNA ligase 2.51273111992e-07 1.21985504666e-07 -52194993.6149 +UniRef50_Q5F5C4 Thiazole synthase 1.43895548483e-06 2.19247396442e-05 8270362453.99 +UniRef50_UPI0004679209 hypothetical protein 6.49497301643e-08 1.89181844318e-07 50154028.9834 +UniRef50_T1D567 Thiamine biosynthesis protein ThiC 1.19925264764e-07 5.14889209919e-07 159451791.412 +UniRef50_UPI0003345F86 2.41069267881e-07 3.14305163161e-07 29566229.63 +UniRef50_A5W3L7 Short chain fatty acid transporter 6.24552368801e-06 7.34387794309e-05 27126741897.4 +UniRef50_Q59966 Cysteine synthase, plasmid 0.000346076975164 0.000119846152909 -91332159108.7 +UniRef50_UPI0003C1981F 1.65900017103e-07 1.62767901832e-07 -1264473.37028 +UniRef50_E4U6C3 Extracellular solute binding protein family 1 1.47422429993e-07 5.44840033952e-08 -37520383.3003 +UniRef50_UPI0002BCBF5F PREDICTED 7.04766363345e-07 7.28332780576e-06 2655845982.33 +UniRef50_U5MSM7 Metallophosphoesterase 3.36454474477e-06 1.19069431316e-05 3448671055.78 +UniRef50_M4HRQ0 Radical SAM protein, TIGR01212 family 2.572993583e-07 2.27005879318e-05 9060631007.24 +UniRef50_E0SZG6 Transcriptional regulator 4.69262597334e-05 5.45795093686e-05 3089710793.66 +UniRef50_Q0ARN8 Peptidyl tRNA hydrolase 4.33627225589e-07 5.95856346201e-07 65493886.7662 +UniRef50_A4WR48 2.10886027289e-06 2.87179940213e-06 308007888.79 +UniRef50_UPI000371F47B hypothetical protein 3.82422628007e-07 2.23627205449e-07 -64107660.7256 +UniRef50_I4CC90 CRISPR associated helicase, Cas3 family 5.69566866217e-07 3.46025070634e-07 -90246566.0432 +UniRef50_T6MH84 Flagellar P ring protein 9.50293626516e-06 5.28546110857e-06 -1702646474.96 +UniRef50_M4MLW3 9.54252696068e-07 1.43818702005e-06 195370225.133 +UniRef50_A7ZJK9 1.25700249557e-05 2.96360674957e-06 -3878228913.82 +UniRef50_UPI0003B57AFE amino acid permease 7.48046472609e-07 9.94530932053e-08 -261845106.401 +UniRef50_K2IJJ6 1.60631681879e-07 4.46391767117e-07 115364853.081 +UniRef50_A0A020BC98 6.02910244569e-07 9.82432910949e-07 153217957.684 +UniRef50_G7MBK8 Membrane protein insertase, YidC Oxa1 family 1.33087049941e-05 2.48165298485e-06 -4371013758.98 +UniRef50_P75892 Putative pyrimidine permease RutG 3.30732105326e-05 2.06254641343e-05 -5025307972.02 +UniRef50_V9C5G3 Siderophore interacting protein 2.08384642706e-07 1.24427150844e-05 4939149331.43 +UniRef50_Q9X049 Glycerol kinase 1 4.99426087346e-08 3.57545530227e-07 124183074.119 +UniRef50_UPI00037DACA5 hypothetical protein 6.02285774518e-08 5.27697508748e-08 -3011219.81923 +UniRef50_O27185 tRNA 2 O) methyltransferase 1.0861917943e-05 1.29335783297e-05 836354720.243 +UniRef50_UPI00016B0688 hypothetical protein 1.07378329079e-05 4.29466412809e-06 -2601186302.98 +UniRef50_Q01813 ATP dependent 6 phosphofructokinase, platelet type 2.47064795248e-08 6.15879097001e-08 14889485.9478 +UniRef50_O27290 Inosine 5 monophosphate dehydrogenase related protein I 4.14267154563e-05 1.13335169169e-05 -12148993535.4 +UniRef50_P42257 Protein PilJ 1.27270379668e-05 5.03654477282e-06 -3104746475.37 +UniRef50_D3S395 Transcription initiation factor IIB 3.6064183301e-05 3.93755606923e-06 -12969913651.5 +UniRef50_UPI00047856BF hypothetical protein 4.35366086939e-07 1.26007859943e-07 -124891712.491 +UniRef50_W6VG46 Rhamnan synthesis F 3.3449132147e-08 4.83064835637e-08 5998095.08713 +UniRef50_G9ZUA1 7.23508264674e-07 2.11909206089e-07 -206538817.977 +UniRef50_UPI0003B470E0 50S ribosomal protein L17 3.47972979099e-07 8.31891848431e-07 195363985.902 +UniRef50_L7WUL7 Lipoprotein 0.000123025207035 2.27843138154e-05 -40468478687.0 +UniRef50_D2ZVP2 5.06612912954e-06 3.97616746141e-05 14007017474.4 +UniRef50_Q6A997 Chaperone protein DnaJ 1 1.26815001857e-06 6.78716247069e-05 26888640048.2 +UniRef50_UPI0003F7FC45 hypothetical protein 5.72471591344e-07 1.90041962255e-07 -154391534.203 +UniRef50_UPI0003B6D4D5 xylose ABC transporter permease 5.58806145186e-07 1.02786558302e-07 -184100703.215 +UniRef50_M2CG06 5.87558626368e-08 3.87171584793e-07 132585457.148 +UniRef50_Q6F9L9 2.70276364337e-06 6.78174997168e-05 26287618000.5 +UniRef50_A3DLR9 Succinyl CoA ligase [ADP forming] subunit beta 3.27775039419e-08 1.19765096264e-07 35117958.4782 +UniRef50_W8YZG7 1.60533307226e-06 2.67010082269e-06 429859807.018 +UniRef50_J7IXF3 Response regulator with CheY like receiver domain and winged helix DNA binding domain 2.39927535287e-06 7.83394479633e-06 2194042745.22 +UniRef50_V7WI05 4.50696683096e-06 2.03993841276e-06 -995969646.27 +UniRef50_J3MZQ8 1.61293785772e-07 9.61214321516e-07 322937736.409 +UniRef50_G7U7Y1 1.07240337745e-06 5.83301223217e-05 23115643769.0 +UniRef50_A6LU93 Anthranilate phosphoribosyltransferase 6.0201007552e-06 4.01678089584e-06 -808764810.723 +UniRef50_W0YKM5 3.09230134126e-06 3.0100653912e-06 -33199662.1878 +UniRef50_U6AG49 7.80819072667e-07 2.49037811538e-06 690169964.191 +UniRef50_UPI0003756A18 hypothetical protein 9.71051588642e-08 4.51275285751e-07 142982826.38 +UniRef50_UPI0003B48EBA N acetyltransferase, partial 2.9700108917e-07 2.13314846569e-07 -33785163.0837 +UniRef50_T0IVY5 7.24075375954e-07 1.14094355758e-06 168294800.47 +UniRef50_R4ZTG2 7.89863938504e-06 6.82699793449e-06 -432634804.106 +UniRef50_Q42588 Serine acetyltransferase 1, chloroplastic 6.21393176088e-08 8.26801670768e-08 8292592.9948 +UniRef50_G9EEV4 5.99445062936e-07 7.37161033597e-07 55597627.3208 +UniRef50_F3U4V4 ATPase, ParA type 2.78443466986e-06 9.61737589345e-07 -735845178.414 +UniRef50_P30958 Transcription repair coupling factor 3.63054992439e-05 1.48371706116e-05 -8667027714.88 +UniRef50_A1BAH6 MOSC domain containing protein 4.0525585453e-05 2.63283838205e-06 -15297766988.9 +UniRef50_UPI00046767C0 HupU protein 7.45372396894e-07 7.50634147267e-08 -270611961.717 +UniRef50_C5N074 Cof like hydrolase 0.000222525068775 4.1379937165e-05 -73130512531.7 +UniRef50_N6UD17 6.21030517749e-06 2.55906513856e-06 -1474050409.47 +UniRef50_A0A011NGP1 2.01571717711e-07 7.42181222794e-08 -51414209.2803 +UniRef50_E8X2E5 ParB like partition protein 9.85648772518e-07 2.02548358698e-07 -316147246.782 +UniRef50_Q9HZ68 Histidinol phosphate aminotransferase 2 9.95787577032e-06 2.3688505764e-06 -3063782598.6 +UniRef50_A6M204 Glycoside hydrolase, family 1 5.11980745415e-06 9.17963895707e-06 1639003797.46 +UniRef50_Q835V5 Ribonuclease HIII 2.45482166667e-07 3.89857036561e-06 1474796534.35 +UniRef50_H1S0G1 7.33238463562e-07 9.77300272533e-08 -256562554.303 +UniRef50_D4H9Y2 Biotin biosynthesis bifunctional protein BioWF 1.97856627519e-06 6.15518034056e-05 24050446875.4 +UniRef50_UPI000474CF85 hypothetical protein, partial 8.90064393496e-07 2.16455541661e-06 514527665.793 +UniRef50_P37339 L 2 hydroxyglutarate oxidase LhgO 4.62627746075e-05 1.95593258028e-05 -10780509970.6 +UniRef50_B9KQG5 Flagellar hook associated protein 5.89234238184e-05 9.58933518391e-06 -19916776979.1 +UniRef50_D2NAF2 Regulatory protein 0.000123386445561 2.09033726046e-05 -41373674161.1 +UniRef50_D8TNG9 3.06225931636e-08 2.61971986532e-07 93398589.079 +UniRef50_J9P0I4 6.43187242682e-07 5.79016073866e-07 -25906688.3198 +UniRef50_P39071 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 1.77479751666e-07 1.26118663396e-05 5019914452.62 +UniRef50_Q4L933 Poly gamma glutamate synthesis protein PgsA 6.26519481821e-05 2.47545954349e-05 -15299626356.9 +UniRef50_H5YRD9 1.45442409681e-07 2.67889152911e-06 1022784498.43 +UniRef50_UPI00036B457B hypothetical protein 1.83962024756e-06 1.23057383108e-07 -692997492.974 +UniRef50_UPI000456173C hypothetical protein PFL1_01203 1.23178275527e-07 4.09633398965e-08 -33191178.4047 +UniRef50_B5F769 Bis tetraphosphatase, symmetrical 1.62915062011e-05 2.89053871314e-06 -5410135023.27 +UniRef50_M5R4A6 4.98739118753e-07 8.3145433685e-07 134321216.421 +UniRef50_U3SRI3 3.79923911363e-05 6.1064582018e-06 -12872742410.1 +UniRef50_A0A038G9V0 Protein ImpB 2.81467911798e-07 6.08900423076e-06 2344573678.45 +UniRef50_Q6GE71 4.97869070783e-05 4.32170788082e-06 -18354858836.8 +UniRef50_E7TI03 1.23246923771e-05 9.16047830981e-06 -1277432048.24 +UniRef50_B8HSV8 Anti sigma factor antagonist 2.54664438906e-07 1.47831862885e-05 5865342555.7 +UniRef50_B0V9D5 3 deoxy D manno 2 octulosonate transferase 2.90605900796e-06 5.77623961588e-05 22146176470.7 +UniRef50_E7TI06 1.4122141653e-06 1.82236632765e-07 -496557023.408 +UniRef50_C5BD16 Adenylate kinase 1.86127176124e-07 2.86360223214e-07 40465311.108 +UniRef50_Q8EUX2 Tyrosine tRNA ligase 1.65770545675e-07 1.61193772954e-07 -1847699.31078 +UniRef50_Q3YS21 Acetylglutamate kinase 3.27748217265e-07 1.60187911439e-07 -67646151.6581 +UniRef50_I7AAC7 6.31479564446e-06 2.6725493682e-06 -1470419517.11 +UniRef50_Q8DTN6 Probable bifunctional oligoribonuclease and PAP phosphatase NrnA 4.72091204095e-05 6.20055847535e-05 5973514228.71 +UniRef50_UPI0003B4C1BA ATPase AAA 1.11797175224e-07 5.88394939887e-08 -21379665.7785 +UniRef50_Q8XU11 Potassium transporting ATPase B chain 0.000121782519392 0.000202568300757 32614211290.1 +UniRef50_A3PPK7 Amidohydrolase 2 9.96544692966e-05 6.99412800539e-06 -37408116849.5 +UniRef50_U3AFY8 7.88720795864e-06 1.74317901624e-06 -2480419879.76 +UniRef50_B2A8E3 Argininosuccinate lyase 1.68696946162e-07 2.04669242123e-07 14522457.3092 +UniRef50_D8JIY9 AraC type DNA binding domain containing protein 3.73201600826e-06 4.87052294765e-05 18156238160.5 +UniRef50_UPI0003783041 hypothetical protein 2.40226199582e-07 1.4919005704e-06 505316303.272 +UniRef50_UPI000471FB1B sodium 5.0251821728e-07 1.31269630018e-07 -149877610.41 +UniRef50_UPI00040DE95E sodium 4.20559605918e-08 8.05548078333e-08 15542457.0654 +UniRef50_A4IM35 Dihydroorotate dehydrogenase B ), catalytic subunit 4.19409410863e-06 0.000103997236431 40291753277.8 +UniRef50_P77269 ABC transporter periplasmic binding protein YphF 1.67241206415e-05 1.3807022778e-05 -1177668204.31 +UniRef50_UPI00036C797A hypothetical protein 5.58052568019e-07 2.94819464866e-07 -106270433.976 +UniRef50_A6LWR6 MgtC SapB transporter 2.95680931211e-06 1.78193241284e-05 6000179614.91 +UniRef50_D3DZA0 Amidohydrolase 2.70099520593e-05 3.58450948281e-06 -9457138630.64 +UniRef50_B4RE78 1.8014106638e-06 1.03196878372e-06 -310633129.102 +UniRef50_A4WQR7 2.69947603827e-06 1.07964082565e-06 -653947352.948 +UniRef50_A6LSY8 Glutamate 1 semialdehyde 2,1 aminomutase 3.29481214735e-06 7.08222307583e-06 1529024268.59 +UniRef50_S5CRD4 Integrase 1.34977111625e-06 8.69283693492e-05 34549130274.1 +UniRef50_Q8HXP0 Superoxide dismutase [Mn], mitochondrial 1.11964780701e-07 1.05648254501e-06 381313411.988 +UniRef50_W1S795 6.5972310955e-07 3.84146952516e-07 -111253476.294 +UniRef50_Q080M3 7.39870414414e-08 1.13236507714e-07 15845491.1794 +UniRef50_UPI0003D0B013 PREDICTED 4.09420833841e-07 1.86812191241e-07 -89869840.7329 +UniRef50_Q7DDB6 Probable TonB dependent receptor NMB1497 1.70213385665e-06 3.05950151367e-05 11664410728.3 +UniRef50_P64618 4.42366393186e-06 1.96393479223e-05 6142758344.36 +UniRef50_R5CFG0 1.31404045591e-05 1.60837294848e-05 1188256391.16 +UniRef50_UPI0003778CA4 hypothetical protein 2.69609134496e-07 1.53744904784e-07 -46775811.3487 +UniRef50_UPI000368AAAC peptidase, partial 2.92983181078e-07 4.36259648942e-07 57842468.2767 +UniRef50_Q5Z642 HGWP repeat containing protein like 9.97465753967e-08 1.19915294134e-06 443843841.163 +UniRef50_Q7MF00 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 1.64317244814e-07 2.4527920221e-07 32685335.7157 +UniRef50_UPI0002E5A819 hypothetical protein 4.36599250203e-08 1.52185887203e-07 43813262.6966 +UniRef50_A0QVM6 8.97787910502e-07 6.13073859284e-07 -114942556.311 +UniRef50_O80952 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1, chloroplastic 7.40308505778e-08 3.20665505708e-07 99569436.8235 +UniRef50_I7G695 2.09311020502e-07 4.45865165986e-07 95499811.3777 +UniRef50_Q9RYR4 3.19243274761e-06 2.58484739038e-05 9146521835.65 +UniRef50_UPI0003751DCE hypothetical protein 3.46878467194e-08 1.34068021112e-07 40120995.9342 +UniRef50_Q3MEA8 GMP synthase [glutamine hydrolyzing] 2.39775515625e-07 3.09801741047e-07 28270446.5213 +UniRef50_D9UIH8 Predicted protein 2.41594708843e-06 1.6939274376e-05 5863245447.27 +UniRef50_P76204 Putative anti FlhCFlhD(4) factor YdiV 2.68031481586e-05 9.1214826715e-06 -7138305335.58 +UniRef50_UPI00036659B6 hypothetical protein 3.33943524372e-08 5.320815443e-08 7999075.00719 +UniRef50_R5BWI2 8.49945705849e-06 4.88191564993e-05 16277557442.6 +UniRef50_UPI000468EFA0 hypothetical protein 5.63097827598e-08 3.99339378013e-08 -6611129.56396 +UniRef50_UPI00035D659D hypothetical protein 5.97632234076e-08 1.21343746146e-07 24860812.7075 +UniRef50_UPI000455EDC7 ribosomal protein L2 2.34099769927e-07 1.20717070306e-06 392840676.629 +UniRef50_UPI0003045834 hypothetical protein 6.99396876295e-08 7.44594416422e-07 272366392.958 +UniRef50_Q88TV5 Tyrosine tRNA ligase 0.000292305852207 0.000188629680503 -41855342766.6 +UniRef50_P75764 2.56561660799e-05 2.72214844857e-06 -9258744349.8 +UniRef50_P75769 1.7645533705e-05 3.09772767695e-06 -5873127815.16 +UniRef50_Q6G6F1 D lactate dehydrogenase 0.000148475575884 4.08244967367e-05 -43460061678.9 +UniRef50_E6S2D5 1.69298209736e-06 3.0970951449e-05 11819875508.3 +UniRef50_A5UCW1 UPF0042 nucleotide binding protein CGSHiEE_06315 2.35296626673e-05 1.12980999072e-05 -4938031984.41 +UniRef50_F2I802 Response regulator receiver domain protein 0.000187303305754 6.99612634655e-05 -47372422420.5 +UniRef50_Q2NIC5 ORC1 type DNA replication protein 3.68145545877e-05 6.39649954385e-06 -12280142092.7 +UniRef50_UPI00026291DF excinuclease ABC subunit A 9.25903811014e-08 2.30567272821e-07 55702964.3542 +UniRef50_Q16CW9 Lipopolysaccharide 1,3 galactosyltransferase, putative 0.000148691640696 2.4949880301e-05 -49956067153.6 +UniRef50_U3T279 Amidohydrolase 5.97094277823e-06 9.85021506034e-05 37355984084.6 +UniRef50_F2E8D4 Predicted protein 1.82470265724e-06 1.86869668477e-06 17760928.7813 +UniRef50_B0TC61 50S ribosomal protein L22 0.000416162198954 2.68584865685e-05 -1.57166685984e+11 +UniRef50_Q9K0U7 Putative phospholipase A1 1.05051759422e-06 2.77292916969e-05 10770548490.6 +UniRef50_Q13DH5 Transcriptional regulator, LysR family 2.85819681324e-05 7.1466704907e-06 -8653692698.64 +UniRef50_C5BQ83 30S ribosomal protein S13 4.60396557604e-05 3.45950110368e-05 -4620343516.5 +UniRef50_S9THQ0 1.44396909606e-06 1.93438889871e-06 197988492.458 +UniRef50_A6QF95 0.000110584938544 6.71174329992e-06 -41934883587.4 +UniRef50_P64246 Probable glutamine synthetase 2 4.29784776661e-06 8.33590896681e-05 31917993546.2 +UniRef50_A5VI99 Cysteine tRNA ligase 0.000352152559888 0.000182607398788 -68447462089.2 +UniRef50_G8PIV9 Universal stress protein 0.000191942146693 8.62881371594e-05 -42653820169.4 +UniRef50_G7MBZ4 PTS system transcriptional activator 6.96719322904e-06 1.51277335215e-05 3294510257.16 +UniRef50_B5F752 Crotonobetainyl CoA dehydrogenase 3.50275358721e-05 7.3198058343e-06 -11185950628.3 +UniRef50_X5EJB2 DNA polymerase III, delta subunit 0.000172985790258 2.23254125179e-05 -60823443304.4 +UniRef50_UPI000467516D hypothetical protein 8.35869649707e-08 1.47560048276e-06 561972939.059 +UniRef50_Q8E2G3 Phosphoribosylformylglycinamidine synthase, putative 7.21167366097e-05 3.00817506583e-05 -16970039655.9 +UniRef50_I4DYY6 3 ketoacyl reductase 1.62709477954e-06 5.73196984085e-05 22483787510.1 +UniRef50_J9P2V2 1.80202225123e-07 8.91453557969e-08 -36760775.5404 +UniRef50_I1AVP4 9.70395219062e-07 2.727879331e-07 -281632621.947 +UniRef50_P27747 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 1.33422613503e-07 7.27484456797e-08 -24494906.106 +UniRef50_UPI0003B5A625 TetR family transcriptional regulator 7.53628758136e-07 1.19282511795e-07 -256093363.952 +UniRef50_Q9I4U2 Acyl homoserine lactone acylase QuiP 6.8661204422e-06 8.52284863478e-07 -2427859221.19 +UniRef50_UPI000466F3A3 hypothetical protein 1.29039663384e-06 3.08133016795e-07 -396551875.931 +UniRef50_UPI0002FD307E hypothetical protein 2.34598089256e-07 1.75413443652e-07 -23893567.7076 +UniRef50_M1YUE3 1.58104493821e-06 2.37452682353e-06 320338374.221 +UniRef50_W4TKZ4 3.60545003908e-07 3.27566501565e-06 1176869721.28 +UniRef50_Q9I602 2.75749970218e-06 1.61081839199e-06 -462929316.286 +UniRef50_UPI00035F31F7 hypothetical protein 1.12868440598e-07 1.27624089702e-07 5957036.61546 +UniRef50_V8MVT4 Transposase 9.27671674024e-06 1.07501043914e-05 594824675.273 +UniRef50_UPI000361F9D7 hypothetical protein 5.40438044678e-08 2.28090218137e-07 70264672.9878 +UniRef50_A9VTL7 Nucleoid occlusion protein 0.000123820043037 3.28498850866e-05 -36725769093.9 +UniRef50_I6U3X8 5.67268880766e-05 2.42935925963e-05 -13093719386.7 +UniRef50_B9KTM2 Membrane fusion protein, HlyD family 9.75530574878e-06 3.54165483842e-06 -2508527122.58 +UniRef50_A8ARB7 5.99184109289e-06 2.13366718257e-05 6194896469.08 +UniRef50_B4U4S6 Primosomal protein DnaI 5.94527448144e-05 6.21620353887e-05 1093773851.58 +UniRef50_D8JGQ3 Acetyltransferase family protein 2.5679318969e-06 5.85820848286e-05 22613600909.5 +UniRef50_UPI000374923B hypothetical protein, partial 2.95627044399e-07 0.000133682787821 53850033650.2 +UniRef50_R7B3T9 Molybdate ABC transporter permease protein 2.18804159564e-05 1.93047900641e-05 -1039811779.21 +UniRef50_UPI0003608764 hypothetical protein 1.59192750663e-07 4.65840152205e-07 123797318.989 +UniRef50_Q5HMA3 Thymidine kinase 0.000132645316066 6.25059622022e-06 -51027099439.5 +UniRef50_UPI00036390EE hypothetical protein 1.21716361445e-05 2.21946700328e-06 -4017812809.16 +UniRef50_Q0ARE0 2.91056178259e-07 1.71322494467e-06 574146982.973 +UniRef50_A6LV67 1.56201098833e-06 7.94059417456e-06 2575112306.3 +UniRef50_Q4T2R9 Chromosome undetermined SCAF10201, whole genome shotgun sequence. 1.73267143926e-07 5.91128524793e-08 -46085488.2878 +UniRef50_UPI00036EEDB2 30S ribosomal protein S4, partial 6.93305953387e-08 2.10213192495e-05 8458574929.51 +UniRef50_UPI0003A27699 glutaminyl tRNA synthetase 4.47210670126e-08 3.27372875803e-08 -4837998.81433 +UniRef50_UPI0003C15EA6 4.75411600565e-07 1.32299988408e-07 -138518368.281 +UniRef50_Q2NSV5 tRNA 2 thiocytidine biosynthesis protein TtcA 1.94989892984e-05 0.000674905609956 2.64595695503e+11 +UniRef50_UPI00036FCB79 hypothetical protein 4.33495916748e-08 6.50788876904e-08 8772383.44995 +UniRef50_UPI00036DB284 hypothetical protein, partial 2.35029299217e-06 0.000231070284154 92337067142.0 +UniRef50_UPI0003658156 hypothetical protein, partial 6.77635701263e-07 1.01700727669e-06 137008469.557 +UniRef50_A6WFN3 Diguanylate cyclase 6.15837425637e-08 2.96198272362e-06 1170926660.55 +UniRef50_UPI00037A43CA hypothetical protein 5.38341610631e-07 2.2507748853e-06 691330326.904 +UniRef50_UPI0004443E9D PREDICTED 5.8035071034e-08 5.8935745204e-08 363613.214944 +UniRef50_A6LR97 Acyl ACP thioesterase 1.61548925324e-06 6.95116469478e-06 2154077651.85 +UniRef50_UPI00047B48B0 GNAT family acetyltransferase 1.13912221375e-06 2.73767042464e-07 -349354501.75 +UniRef50_Q02198 Morphine 6 dehydrogenase 6.33981966145e-08 2.31147908758e-07 67722617.313 +UniRef50_P00811 Beta lactamase 2.31437103161e-05 8.48417179586e-06 -5918235593.37 +UniRef50_C0H3V2 Mannitol specific phosphotransferase enzyme IIA component 0.000106647230104 2.70956201096e-06 -41960912067.8 +UniRef50_Q0A892 RNA polymerase binding transcription factor DksA 1.31681158902e-05 7.91026888919e-06 -2122657355.35 +UniRef50_H8FSH1 9.4198488676e-06 1.77604236956e-06 -3085898483.31 +UniRef50_UPI000174692C spermidine putrescine ABC transporter ATP binding protein 1.42818803994e-07 1.4794901204e-07 2071127.9429 +UniRef50_UPI0002557C62 hypothetical protein 4.27778845508e-07 4.58692947036e-07 12480402.1455 +UniRef50_UPI00029A3335 helicase 2.53646827806e-08 6.95170726906e-08 17824861.6174 +UniRef50_A6Q747 Alanine tRNA ligase 4.58670703315e-07 3.36358411295e-05 13394030830.7 +UniRef50_Q75W16 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 5.7377861159e-07 7.12570872227e-08 -202874106.02 +UniRef50_A9CR53 3.94726935459e-05 2.18753114959e-05 -7104279077.75 +UniRef50_Q9ZJE9 DNA polymerase I 9.46844177454e-07 4.32093604965e-05 17061896457.4 +UniRef50_F5LZL6 CBS domain containing protein 0.000198053219569 3.36038692814e-05 -66390220731.7 +UniRef50_P65168 Inosine 5 monophosphate dehydrogenase 0.000246477281768 0.000518027414494 1.09628120876e+11 +UniRef50_P0ABK4 Cytochrome bd I ubiquinol oxidase subunit 2 6.60126201259e-06 4.54057166589e-05 15665834524.9 +UniRef50_P0C1L0 Transposase for insertion sequence like element IS431mec 0.000256288850193 9.401152508e-05 -65513347514.8 +UniRef50_D5AUS5 7.06334911283e-07 1.64098024101e-07 -218907685.35 +UniRef50_A5EY33 Recombination protein RecR 3.60655403362e-06 7.03347528962e-05 26938992727.9 +UniRef50_I0EKM3 DNA transfer protein ComE 2.69915988217e-06 2.96896065226e-05 10896374518.8 +UniRef50_E3YSL3 Pts system fructose specific eiibc component 3.28898923433e-07 3.40829686273e-06 1243190736.56 +UniRef50_D4H949 YD repeat protein 3.75467785191e-06 2.99110058819e-05 10559630600.0 +UniRef50_K9HQP8 Phosphate binding protein 3.49509925797e-08 6.46207396736e-08 11978040.9905 +UniRef50_UPI0003094A6C hypothetical protein 1.81454384124e-07 1.34668115525e-07 -18888190.7655 +UniRef50_A7GKB6 Nitrite reductase H), small subunit 3.07850814899e-05 5.88671173145e-06 -10051777408.8 +UniRef50_P54122 Ribonuclease J 1.00996062589e-07 4.34040422574e-07 134454095.04 +UniRef50_P47269 Fructose bisphosphate aldolase 2.45229810867e-07 4.71522977869e-07 91357328.4481 +UniRef50_P0ADL0 3.13700267745e-06 8.9040212621e-06 2328216171.9 +UniRef50_UPI000344BE75 hypothetical protein 2.36052018066e-07 6.00892559755e-08 -71038326.362 +UniRef50_UPI0003C18F39 PREDICTED 3.07797452843e-07 2.67297990116e-07 -16350130.0872 +UniRef50_C1A7X4 Acyl CoA dehydrogenase 2.63342038884e-06 0.000243153190531 97100782715.8 +UniRef50_P0A2T6 cAMP activated global transcriptional regulator CRP 2.29006728674e-05 6.03558775012e-06 -6808641819.72 +UniRef50_S9TKQ0 6.21887955241e-07 2.15584242449e-06 619276242.974 +UniRef50_UPI0003B40961 glutathione ABC transporter permease 9.97942209044e-07 6.5815392994e-07 -137176697.945 +UniRef50_UPI0004770C99 hypothetical protein 9.71512597558e-08 2.54742637539e-06 989206132.437 +UniRef50_H6RLH1 ComEC Rec2 related protein 8.53560149315e-08 1.20012960584e-06 450047778.461 +UniRef50_UPI00047780B8 acyl CoA synthetase 1.68533595895e-07 1.37205186773e-07 -12647663.2054 +UniRef50_I1AQX6 3.86576307731e-07 9.2312893688e-07 216612880.629 +UniRef50_A3PFZ4 Peptidase S16, lon domain protein 9.73136440559e-05 1.53128603206e-05 -33104722656.7 +UniRef50_J8RSG4 2.67505992788e-07 1.01995764509e-06 303773965.654 +UniRef50_Q0B6I4 Lipoprotein 1.54858238741e-05 5.22804727682e-06 -4141190289.4 +UniRef50_B8ZUG9 Threonine tRNA ligase 5.96030508744e-07 4.05343855563e-05 16123604031.4 +UniRef50_L1K7L5 3.69957090474e-06 9.48567695346e-06 2335922015.37 +UniRef50_Y4SN89 0.00033058554491 0.000118674026068 -85551280603.3 +UniRef50_Q8YR06 Phosphoribosylformylglycinamidine synthase 2 2.52385415944e-07 5.73766349522e-08 -78727437.9133 +UniRef50_M1MJ06 Diguanylate cyclase domain containing protein 3.26090758671e-06 9.07355934752e-06 2346638845.1 +UniRef50_Q6CGG3 FK506 binding protein 2 1.72873770042e-07 2.20011063438e-07 19029903.7836 +UniRef50_C5VT76 LicC protein 2.77563227102e-06 3.29857056985e-05 12196177362.0 +UniRef50_A6M234 Sigma 54 factor, interaction domain containing protein 3.5531591543e-06 7.59440853061e-06 1631501964.92 +UniRef50_E1V429 Formyltetrahydrofolate deformylase 1.98303692832e-05 4.6506567747e-06 -6128236215.7 +UniRef50_Q9I452 Probable 3 mercaptopyruvate sulfurtransferase 1.3291760171e-06 3.31196304892e-06 800475456.279 +UniRef50_UPI000362E0E9 Fis family transcriptional regulator 2.00282434269e-06 9.38337095257e-07 -429746564.515 +UniRef50_Q8DXP9 Transcriptional antiterminator, BglG family 7.11803092308e-05 1.40310025585e-05 -23071876404.5 +UniRef50_U5VYZ3 Diguanylate cyclase 6.14840581776e-08 1.93300736068e-06 755556923.393 +UniRef50_Q8YC76 DNA polymerase IV 3.96393866472e-05 3.98061796678e-06 -14395882498.6 +UniRef50_Q03025 Alkaline protease secretion protein AprE 5.7547605159e-06 5.03453071886e-06 -290765607.279 +UniRef50_V8AQW0 7.94109240991e-05 9.74938654562e-06 -28123217553.5 +UniRef50_UPI0003A20063 DNA 3 methyladenine glycosylase 2.43570778518e-07 1.07087014985e-06 333990908.312 +UniRef50_F5M1J2 Phage related integrase 3.06927417536e-05 1.52420788163e-05 -6237622228.74 +UniRef50_UPI0003B727F3 membrane protein 6.27888360558e-07 1.77484282766e-07 -181833653.284 +UniRef50_C1D040 2.78954640925e-07 0.00034235403569 1.38099907953e+11 +UniRef50_P28631 DNA polymerase III subunit delta 2.96492025393e-05 1.38432956065e-05 -6381038589.06 +UniRef50_Q8FFR0 1.86662330029e-05 5.79090294712e-05 15842798497.5 +UniRef50_O34788 butanediol dehydrogenase 4.39462577242e-06 1.63732982485e-05 4835937073.44 +UniRef50_C0PLL4 4.94976574155e-07 7.952710313e-07 121232557.377 +UniRef50_UPI0004077D5F prephenate dehydratase 7.55095824817e-08 2.43410004811e-06 952191914.135 +UniRef50_A7X6I0 Phytoene desaturase 9.32693205232e-07 2.06365269178e-06 456582223.154 +UniRef50_Q58065 Putative NADH oxidase 4.00013086888e-05 9.85017402641e-06 -12172383059.2 +UniRef50_Q8DMA8 Polyphosphate kinase 3.16319631414e-08 1.49169395301e-06 589444942.286 +UniRef50_Q932Q4 Orf513 1.89997020661e-06 0.000118276393253 46982590083.0 +UniRef50_B0V6C9 Extracellular serine proteinase 3.29610591411e-06 5.60570819595e-05 21300253479.5 +UniRef50_UPI000401E192 hypothetical protein 1.56877311137e-07 3.51617130709e-07 78618854.8875 +UniRef50_E8MRI6 Two component response regulator 5.18123056752e-05 5.28848296374e-05 432991084.889 +UniRef50_Q5HE75 Fructose bisphosphate aldolase 0.000244410385622 5.94337298281e-05 -74677345862.9 +UniRef50_A5UP16 Conserved hypothetical membrane protein Msm_1739 3.48476016988e-05 3.06557133415e-06 -12830795667.6 +UniRef50_F0VS21 Rhamnosyltransferase 4.08047940937e-05 2.0319956779e-06 -15653054516.2 +UniRef50_UPI00046543C3 hypothetical protein 2.82998094325e-07 4.8124583688e-07 80035046.4428 +UniRef50_D5SQR1 Glycogen debranching enzyme GlgX 8.99446089993e-05 2.11573708431e-05 -27770252158.0 +UniRef50_A7ZML4 N succinylglutamate 5 semialdehyde dehydrogenase 2.65289576811e-05 1.05686756918e-05 -6443361693.76 +UniRef50_B9KN09 3.49931892217e-06 1.04776886433e-06 -989720842.252 +UniRef50_Q3AEQ2 3 isopropylmalate dehydrogenase 1.01831944697e-05 3.19062641136e-05 8769869787.28 +UniRef50_E2XRP0 DNA binding response regulator, LuxR family 9.75420178776e-06 2.79921047585e-06 -2807815339.96 +UniRef50_B9KN06 3.37157608571e-05 7.56835527187e-06 -10556028499.5 +UniRef50_B9KN07 0.000215769468369 4.65537939525e-05 -68314444271.6 +UniRef50_V0AP01 3.37981609622e-05 1.212455279e-05 -8749901584.2 +UniRef50_UPI00035C9482 hypothetical protein 1.25926108794e-07 2.36167557065e-06 902599493.484 +UniRef50_E8U6V1 Aldose 1 epimerase 1.26673150626e-06 0.000399815641162 1.60899085573e+11 +UniRef50_UPI00031CD3FF hypothetical protein 1.77068377251e-07 1.68469099496e-06 608645751.379 +UniRef50_Q5HKI6 0.000306202768582 3.63094309672e-06 -1.22151958922e+11 +UniRef50_Q09751 Lactoylglutathione lyase 1.53042951152e-07 1.70512589277e-07 7052707.28763 +UniRef50_UPI0003761A55 hypothetical protein 2.18656173264e-08 4.93750144307e-06 1984502504.49 +UniRef50_UPI0004762DA5 hypothetical protein 1.10424742732e-07 2.99250812811e-07 76231401.6473 +UniRef50_UPI000467CD77 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 8.11412666188e-08 1.34838495604e-07 21678230.2804 +UniRef50_UPI0003775761 hypothetical protein 2.36726771288e-07 2.66604066852e-07 12061830.8548 +UniRef50_UPI0003821846 hypothetical protein 1.61524258635e-07 1.60018020405e-07 -608086.857073 +UniRef50_I0EQ26 GDP L fucose synthase 3.75006824528e-06 2.63950294765e-05 9142048733.96 +UniRef50_B7V4A2 Heme d1 biosynthesis protein NirF 1.43167884525e-06 1.20950684986e-07 -529157042.74 +UniRef50_G8I0W8 Integrase 1.88583388181e-05 1.61522354718e-06 -6961257231.68 +UniRef50_Q7DDS7 Septum site determining protein MinD 3.70310683505e-05 6.52255160584e-05 11382444524.5 +UniRef50_M9VKM1 RecF RecN SMC N terminal domain protein 9.35258428407e-07 3.2379888687e-05 12694583104.4 +UniRef50_Q16DR4 PucC family protein, putative 1.50877010232e-08 8.68313552703e-08 28963793.6132 +UniRef50_Q57865 4 hydroxy tetrahydrodipicolinate reductase 6.16237216954e-05 7.58665583133e-06 -21815426598.7 +UniRef50_D3CU37 9.98156564651e-08 2.1029466761e-07 44601732.5292 +UniRef50_K2FAW5 3.31087656313e-07 8.89141141167e-07 225293039.922 +UniRef50_Q5HPT2 Ribosome recycling factor 0.000151856724147 3.68710362448e-05 -46421133239.1 +UniRef50_C5N0X8 Na Pi cotransporter II like protein 0.000110825875635 4.06434795339e-05 -28333494540.9 +UniRef50_Q97TN5 Divalent metal cation transporter MntH 2.74953836277e-06 7.19805747829e-06 1795921756.4 +UniRef50_UPI00047D3BA3 hypothetical protein 3.33736856185e-06 2.54782515944e-06 -318748360.34 +UniRef50_U5MKF5 UPF0750 membrane protein YpjC 1.31681158905e-06 8.78203483356e-06 3013802232.4 +UniRef50_Q1QGJ1 Transposase IS66 2.2344969004e-07 6.0363566331e-08 -65839869.4331 +UniRef50_A0A010ZU52 4.11503642719e-07 5.14348806217e-07 41519854.5562 +UniRef50_UPI00036DBF3D hypothetical protein, partial 1.9879421076e-07 1.10292734155e-07 -35729132.1407 +UniRef50_P0AGM3 UPF0126 inner membrane protein YicG 2.63099388966e-05 7.62722629695e-05 20170403334.9 +UniRef50_P04040 Catalase 1.79023730023e-07 5.05776937449e-07 131914279.551 +UniRef50_E8WXY4 6.59180885164e-08 6.73591694869e-08 581782.071843 +UniRef50_P0AA94 Sensor histidine kinase YpdA 2.1557415598e-05 3.44552275314e-06 -7311993399.4 +UniRef50_B8FWK7 Nucleotide sugar dehydrogenase 8.77194397025e-07 2.78383357729e-06 769733634.169 +UniRef50_A4W0U2 Transcriptional regulator of sugar metabolism 2.73886600256e-07 1.26920974175e-06 401824166.21 +UniRef50_Q3IV07 Asparagine synthetase 0.000187847628379 4.55680443678e-05 -57440014032.1 +UniRef50_D8JH55 Transcriptional regulatory protein, C terminal family protein 1.1796437152e-06 4.04744760097e-05 15863805999.1 +UniRef50_Q8E0Z8 Prophage LambdaSa1, reverse transcriptase maturase family protein 1.4803372112e-06 1.50543774942e-06 10133395.2977 +UniRef50_F0XFM1 Endoribonuclease l psp 2.06243426844e-06 1.14000104947e-06 -372397610.027 +UniRef50_Q9FD71 Hydroxymethylglutaryl CoA synthase 0.000121424840541 5.24317175092e-05 -27853370408.8 +UniRef50_P75826 1.92964892965e-05 8.44513687861e-06 -4380824132.17 +UniRef50_E6YJH1 1.93177675909e-06 7.52960076227e-07 -475902760.578 +UniRef50_UPI0002193D96 glutamate racemase Nucleoside triphosphatase 5.98295621159e-08 5.52675532701e-08 -1841738.95319 +UniRef50_R6I4T0 Short chain dehydrogenase reductase SDR 7.70018872341e-08 4.80612557611e-08 -11683688.0671 +UniRef50_G5IIY2 1.97998768321e-07 7.37845444237e-07 217942727.731 +UniRef50_UPI0004154A70 hydroperoxidase 2.29104163195e-07 3.54877905724e-07 50776403.2763 +UniRef50_UPI0003EF5A08 hypothetical protein 4.6610040365e-07 6.00205804537e-07 54139995.9964 +UniRef50_Q46896 CRISPR associated endonuclease Cas1 2.07603961797e-05 6.25135419908e-06 -5857478293.54 +UniRef50_X8FKW3 1.10738548998e-06 1.63027412745e-07 -381248944.357 +UniRef50_M4WYD7 5.97733030037e-06 5.64452334518e-07 -2185245258.3 +UniRef50_Q8CPQ8 Nucleotidase 0.000186789289193 9.27115484438e-05 -37980338404.2 +UniRef50_UPI00047311ED glutaredoxin, partial 4.76227391326e-06 1.87654240136e-06 -1165005223.26 +UniRef50_F4AQK9 4.22576955442e-07 1.80443810999e-07 -97752121.7195 +UniRef50_A0NSX2 Immunogenic protein 1.11529522135e-06 2.04787074904e-07 -367583311.912 +UniRef50_M6ZD49 Winged helix turn helix 4.10268164145e-07 2.88475323019e-05 11480472496.9 +UniRef50_UPI000429EA82 hypothetical protein 4.17366390408e-08 2.10953240223e-07 68314818.4184 +UniRef50_G5FKQ3 8.66374101029e-06 4.68357367202e-06 -1606842396.61 +UniRef50_T0T8E0 Alanine tRNA ligase 5.81565627091e-05 1.53975709969e-05 -17262329666.0 +UniRef50_S4XCV1 Surface protein G2 4.73304400909e-06 1.44291549777e-06 -1328265254.44 +UniRef50_Q5HKF2 Aminotransferase, class II 7.91345434064e-05 2.36667382994e-05 -22393033588.2 +UniRef50_E0S0H5 Phosphoglucomutase phosphomannomutase family protein 5.18488440746e-06 1.57026666418e-05 4246157755.69 +UniRef50_M4QZL8 2.16626022775e-07 2.06332387246e-05 8242437087.73 +UniRef50_B7N6B0 Peptidase B 3.15425371136e-05 3.4749745064e-06 -11331219452.3 +UniRef50_M4QZL0 2.66497178474e-06 4.96856186239e-05 18982812137.2 +UniRef50_C1CU33 Transketolase, C subunit 1.87611648258e-05 5.29792329156e-05 13814253990.8 +UniRef50_U5MMW0 Sporulation protein YunB 1.81445024617e-05 3.68378426439e-06 -5837969389.22 +UniRef50_Q74AX0 Thymidylate kinase 9.18192879807e-08 3.07049292137e-07 86890993.8469 +UniRef50_Q166C2 Acyl carrier protein 1.49042142596e-06 2.08458850726e-05 7814038192.38 +UniRef50_UPI00035FDAE3 hypothetical protein 1.55540054093e-06 7.99930003751e-07 -304992726.525 +UniRef50_UPI000370852C hypothetical protein, partial 1.71943340652e-07 4.89459035123e-07 128184982.214 +UniRef50_L8E5H5 Phosphoribosylformylglycinamidine synthase 1 2.72514914055e-07 2.77722223231e-07 2102254.61522 +UniRef50_E4NK07 6.90589737553e-07 5.22345932432e-05 20808946731.3 +UniRef50_UPI0002485CB9 membrane protein 1.18248469585e-07 3.41748866197e-07 90229852.7705 +UniRef50_T2AJH5 1.60484281829e-07 1.58793104712e-07 -682748.95521 +UniRef50_Q0FVE7 Flagellar protein FlgJ, putative 1.31977576868e-06 6.46920406909e-07 -271639966.411 +UniRef50_M9VIA8 DNA topoisomerase IV subunit B 3.34535132373e-06 4.95333407036e-05 18646658103.0 +UniRef50_P0A2T8 Fumarate and nitrate reduction regulatory protein 5.80831152854e-05 2.28155989671e-05 -14237929118.8 +UniRef50_UPI0003AA4737 LuxR family transcriptional regulator 1.96350577785e-07 2.94414852334e-07 39589751.0194 +UniRef50_UPI000346AB98 hypothetical protein 1.40555524225e-06 8.59062772212e-07 -220625716.371 +UniRef50_F4A3Y5 Peptidase, M24 family protein 2.18455885457e-06 1.14858934478e-05 3755062915.5 +UniRef50_Q9K4V0 Nitric oxide reductase transcription regulator NorR1 2.89817222699e-08 1.42272796273e-07 45736996.8128 +UniRef50_M4R0H3 ABC transporter, ATP binding domain protein 1.11688576412e-06 6.78937562518e-05 26958642060.2 +UniRef50_Y1B2H8 7.48080752802e-06 4.77175154709e-06 -1093679143.36 +UniRef50_Q6A9Q2 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 1.04086210166e-06 5.61321876948e-05 22241044188.5 +UniRef50_UPI000473DF01 hypothetical protein 2.26996678398e-07 2.32421263772e-07 2189971.68263 +UniRef50_UPI00037F561A hypothetical protein, partial 1.12490508231e-07 1.42737696293e-07 12211160.9954 +UniRef50_Q4UY06 Sulfate adenylyltransferase subunit 2 4.42624543048e-05 0.000172910189041 51936669198.2 +UniRef50_W1YEB9 6.87940767631e-05 3.06109010037e-05 -15415016614.3 +UniRef50_E8SNW0 Macrophage infectivity potentiator related protein 4.24965103299e-07 3.36223952777e-06 1185813729.57 +UniRef50_UPI0002E6D910 hypothetical protein 1.15850385429e-08 1.99423595276e-07 75832730.3914 +UniRef50_P33570 Transketolase 2 7.2954510457e-05 2.87671984998e-05 -17838960076.4 +UniRef50_B5H7E3 ABC transporter ATP binding protein 0.000115276043552 3.752163989e-05 -31390406912.2 +UniRef50_F5X6Q7 ABC transport system permease protein 4.73752992177e-05 1.25142753188e-05 -14073823140.9 +UniRef50_Q7NMQ5 Nucleoside diphosphate kinase 5.32455244512e-07 1.06270438378e-06 214068084.411 +UniRef50_J8VUX1 1.58907166529e-06 2.88496999697e-07 -525057952.345 +UniRef50_R7I3D6 8.32661900232e-07 1.66051503707e-07 -269118797.307 +UniRef50_D2J7E4 Replication initiator protein 4.23880012087e-07 5.87596215104e-08 -147403582.207 +UniRef50_U3QYE8 Membrane protein 4.13512788083e-06 1.10207866814e-06 -1224479186.86 +UniRef50_D3FRH5 8.1793290844e-08 1.2315613979e-07 16698689.6987 +UniRef50_UPI00041C9E3C hypothetical protein 1.96589645437e-08 1.93752778666e-07 70283809.1324 +UniRef50_Q6A8N5 Prolipoprotein diacylglyceryl transferase 3.96952775185e-06 5.59804704e-05 20997455793.1 +UniRef50_W8UXR7 2.14646160899e-05 1.09406083607e-06 -8223843130.78 +UniRef50_P58664 5.94424752907e-05 7.98280213812e-06 -20774901532.9 +UniRef50_S5YW82 1.16846275306e-07 1.61290894881e-07 17942838.3192 +UniRef50_Q6AAL4 S ribosylhomocysteine lyase 1.84587448664e-06 1.40012541053e-05 4907275915.35 +UniRef50_UPI0004665EA7 fusaric acid resistance protein 2.84460366972e-08 6.25977207803e-08 13787453.9526 +UniRef50_P0AC90 GDP mannose 4,6 dehydratase 0.000185791832537 0.000148244287622 -15158404642.4 +UniRef50_E3JA76 2.44090876712e-07 1.76692322921e-08 -91409196.3584 +UniRef50_R0S9J4 3.08232641491e-07 1.547456555e-05 6122834706.99 +UniRef50_A1B2V6 1.39232886318e-06 8.93269488857e-07 -201476393.561 +UniRef50_A5UKK8 Adenine cytosine DNA methyltransferase 3.6461992992e-05 3.1031527691e-06 -13467373157.0 +UniRef50_S8F0C2 4.88829852552e-09 1.58284210713e-07 61927812.1294 +UniRef50_W4RSX5 NAD synthetase 3.59143930309e-07 1.71458933106e-06 547209941.468 +UniRef50_UPI000473309C hypothetical protein, partial 3.62010277115e-07 6.20953223906e-08 -121079347.592 +UniRef50_UPI000382DF5B hypothetical protein 5.51611284246e-07 8.73718062633e-07 130038459.129 +UniRef50_A6LX54 Response regulator receiver protein 4.1343671809e-05 9.2447586961e-06 -12958725121.6 +UniRef50_UPI0002F1891F hypothetical protein 8.37418466037e-09 3.02178031685e-07 118612218.423 +UniRef50_UPI00036F5244 hypothetical protein 1.26424675227e-07 4.69337249452e-08 -32091472.0924 +UniRef50_F4DLN9 2.71572653853e-06 2.95316705201e-06 95857649.0146 +UniRef50_P31040 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 3.71301717056e-08 8.15442119386e-08 17930493.0636 +UniRef50_A4WZY2 7.13870995659e-06 5.04814880674e-06 -843985190.265 +UniRef50_UPI0003796C9F hypothetical protein, partial 2.26399297194e-07 1.21365349473e-06 398566634.517 +UniRef50_UPI000363A9F6 alcohol dehydrogenase 1.32451733281e-07 5.0770780263e-06 1996206311.88 +UniRef50_UPI00047212B5 spermidine putrescine ABC transporter substrate binding protein 1.91741171721e-07 1.48989102043e-06 524079024.014 +UniRef50_O32129 Lipoyl synthase 1.42446390888e-07 4.01408443809e-07 104546158.586 +UniRef50_UPI0003EC0C27 PREDICTED 3.5134585193e-07 1.06400782762e-07 -98887330.2371 +UniRef50_P0A9T2 D 3 phosphoglycerate dehydrogenase 4.13355463648e-05 1.56016112754e-05 -10389105386.5 +UniRef50_UPI00021928D0 3 keto L gulonate 6 phosphate decarboxylase, partial 1.70654975724e-07 3.29762082509e-07 64233491.4729 +UniRef50_UPI0004785282 ABC transporter ATP binding protein 3.64333142282e-07 6.83483140087e-08 -119492707.316 +UniRef50_UPI00016C377C excinuclease ABC subunit A 1.06886415753e-07 3.13265745753e-07 83317868.0802 +UniRef50_G9G2D7 ABC transporter related protein 1.58496566353e-06 2.28145881214e-06 281182831.026 +UniRef50_UPI0003794563 hypothetical protein, partial 7.71840816016e-08 2.36710379869e-07 64402724.2182 +UniRef50_P55357 Mannose 1 phosphate guanylyltransferase 2.09823618314e-07 5.11139366872e-08 -64073046.0596 +UniRef50_UPI0003B39652 ribosomal large subunit pseudouridine synthase A 1.23949735269e-06 2.79446695009e-07 -387584231.652 +UniRef50_F0KHF7 2.5334630124e-06 5.41226303447e-05 20827179922.3 +UniRef50_D3X7Y2 Glutathione peroxidase 0.000293419934203 0.000199377997535 -37965883857.2 +UniRef50_A6M2T7 Abortive infection protein 3.44799308646e-06 1.4586548139e-05 4496771360.14 +UniRef50_W9D4Z0 3.95199237577e-07 2.07834882752e-07 -75641289.262 +UniRef50_K0HMC2 2.28377380324e-06 4.98520866254e-05 19203911615.2 +UniRef50_UPI0003C10DF6 1.42286679549e-07 3.88080642259e-07 99230038.9771 +UniRef50_N3NX82 1.67492185909e-05 9.98376946437e-06 -2731294833.78 +UniRef50_U5Y027 Xanthine uracil vitamin C permease 9.43714972093e-07 2.70638617765e-05 10545023795.2 +UniRef50_Q59931 NADP dependent glyceraldehyde 3 phosphate dehydrogenase 5.66385244841e-05 7.5310977636e-05 7538298474.19 +UniRef50_Q187U6 tRNA 2 methylthio N dimethylallyladenosine synthase 1.17353157162e-06 1.5548713406e-05 5803437309.87 +UniRef50_J9S761 3.32993428377e-08 6.34150717784e-08 12158089.3349 +UniRef50_UPI000469984F hypothetical protein 1.49814960801e-07 2.22185400663e-07 29216834.6575 +UniRef50_UPI00046F91FB inner membrane translocator 2.48324095868e-07 1.4242882963e-07 -42751218.4613 +UniRef50_A0A011MQD2 DNA primase 2.52231844225e-08 6.08921424204e-08 14399996.0511 +UniRef50_K6VMV8 1.01121886256e-08 3.65874940142e-07 143625788.487 +UniRef50_P37981 Inorganic pyrophosphatase 5.16493894268e-05 5.2163594827e-07 -20640901487.4 +UniRef50_L1K7R1 Pirin domain protein 8.37001702481e-07 2.62252683879e-06 720838408.386 +UniRef50_Q57N15 Putative mannosyl 3 phosphoglycerate phosphatase 2.465001165e-05 1.72918885835e-05 -2970564576.27 +UniRef50_P47924 Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic 1.14522756712e-07 7.05380809221e-07 238536646.442 +UniRef50_Q6GGK7 Sensor protein SrrB 0.000221210085623 3.76725351664e-05 -74096361378.5 +UniRef50_UPI000289481B 50S ribosomal protein L22 2.8148682849e-07 4.22796130075e-06 1593240173.14 +UniRef50_UPI000380885A hypothetical protein, partial 8.12209150601e-07 1.04036224659e-06 92108204.6041 +UniRef50_UPI0003B51BB3 diguanylate cyclase 2.02361715745e-07 2.64521732183e-07 25094761.4252 +UniRef50_F0KFG3 Modulator of drug activity 5.77784676811e-06 6.97775493285e-05 25837465288.3 +UniRef50_Q49Z27 8.6905584063e-05 4.78648491576e-05 -15761223765.0 +UniRef50_A3PP65 Transcriptional regulator, LysR family 6.53236321355e-05 8.53438555497e-06 -22926515727.0 +UniRef50_R6FTR0 Sporulation integral membrane protein YlbJ 4.44121251354e-06 7.9481279483e-06 1415784795.7 +UniRef50_A4WYU2 2.33776319973e-05 4.61390356386e-06 -7575147425.4 +UniRef50_Q3IY96 PAS sensor Signal Tranduction Histidine Kinase 5.70928142879e-05 1.59021523704e-05 -16629175682.4 +UniRef50_A4WYU6 0.000117064402984 1.09833256403e-05 -42826232685.0 +UniRef50_Q8XE45 Malate 4.99347628972e-05 6.3254866526e-05 5377489291.0 +UniRef50_UPI00047A4FE0 hypothetical protein 2.75166775813e-07 7.31968750716e-07 184416562.859 +UniRef50_A0A028V4R5 7.02100879136e-07 4.31762775947e-07 -109138809.679 +UniRef50_UPI000472245F hypothetical protein 3.71193837864e-07 3.15532260949e-07 -22471261.6449 +UniRef50_Q6D4A8 Zinc import ATP binding protein ZnuC 5.1162344795e-07 7.35273000545e-07 90290068.8712 +UniRef50_B4SGR9 3 dehydroquinate dehydratase 8.10037107999e-08 1.72195051267e-06 662470360.597 +UniRef50_UPI00035E131B hypothetical protein 1.25257461219e-07 4.01365476645e-07 111468194.054 +UniRef50_UPI000471D845 hypothetical protein 4.43371170367e-07 1.49618588931e-07 -118591521.875 +UniRef50_UPI000190BCFA hypothetical protein, partial 7.40716520758e-07 1.27325991728e-06 214994304.218 +UniRef50_F0Y0F0 5.37476303124e-07 3.58608381777e-06 1230760264.29 +UniRef50_G7U5I2 Tricorn protease 4.07945953426e-07 6.83914754632e-05 27445785114.8 +UniRef50_B9KX51 DSBA oxidoreductase 2.60141357182e-06 5.01954739708e-06 976230299.096 +UniRef50_Q9RYP2 Adenine deaminase related protein 5.48404655451e-07 2.74615808367e-07 -110531917.335 +UniRef50_R0NKC6 ABC transporter substrate binding protein 1.75902156329e-06 1.62494663388e-06 -54127694.2872 +UniRef50_M5UK49 Glucose 1 dehydrogenase 1.07991065648e-07 1.17528365826e-07 3850325.11769 +UniRef50_E5U6M9 1.62633086508e-07 4.12741175889e-07 100971704.855 +UniRef50_UPI0003FF8F9D hypothetical protein 3.35932401412e-08 5.03785832074e-08 6776448.97515 +UniRef50_A5UN83 3.29784931191e-05 2.56054946702e-06 -12280097122.5 +UniRef50_A5UN84 7.97008843261e-05 1.98267950293e-05 -24171904586.8 +UniRef50_Q4L8H9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00016794474735 1.27474836775e-05 -62655039829.0 +UniRef50_S0GCD5 4.43955066941e-07 1.14888921244e-05 4458976626.73 +UniRef50_Q2J713 Probable dual specificity RNA methyltransferase RlmN 2.60252589163e-06 0.000102117291117 40175331905.0 +UniRef50_Q8FFV6 Multidrug resistance outer membrane protein MdtQ 1.7230021876e-05 9.52804451949e-06 -3109382772.71 +UniRef50_D3QIE1 Hydrolase 0.000224623648376 0.000105761405087 -47986146219.5 +UniRef50_B6C5I5 4.63317921584e-07 9.02509862803e-07 177307176.161 +UniRef50_UPI0004786084 hypothetical protein 2.72384581959e-07 2.63063258775e-07 -3763132.55488 +UniRef50_A0RQU5 TonB dependent receptor protein 1.55012497258e-06 9.26151086815e-06 3113181115.39 +UniRef50_A5UN65 MEMO1 family protein Msm_1438 3.40691272955e-05 6.43025619111e-06 -11158151431.9 +UniRef50_C6CW93 Major facilitator superfamily MFS_1 5.00352935972e-06 1.53830007556e-05 4190319972.96 +UniRef50_E7C3U5 6.98476723961e-07 5.18285630098e-07 -72745355.7859 +UniRef50_Q2FE11 Phosphoglucomutase 0.000211829766817 7.10477773023e-05 -56835416756.5 +UniRef50_Q68WT1 DNA helicase II 6.57047734114e-08 9.47556921361e-08 11728212.384 +UniRef50_UPI0003F6F54C hypothetical protein 6.12541117495e-07 1.12080046108e-06 205190534.049 +UniRef50_C6NW58 Putative ATP dependent RNA helicase 3.49382345348e-08 2.86103231412e-07 101398391.38 +UniRef50_P76086 Transcriptional repressor PaaX 3.45582632693e-05 3.84290105381e-06 -12400168646.3 +UniRef50_D9RB01 3.98590586768e-05 1.34980017437e-05 -10642282170.4 +UniRef50_J2X6M2 1.55557412985e-06 8.29646113906e-07 -293066048.175 +UniRef50_G8PLF5 TRAP transporter solute receptor, TAXI family 1.6093305499e-07 8.38531549301e-08 -31118101.5309 +UniRef50_S5YTP5 Iron complex transport system, substrate binding protein 5.68226263642e-06 5.80957140637e-06 51396112.6831 +UniRef50_Q8G6D6 Phosphoglycerate kinase 1.79440505051e-06 6.65159747029e-05 26128891891.6 +UniRef50_Q02ZD2 Redox sensing transcriptional repressor Rex 5.5451001399e-05 1.20031566504e-05 -17540428090.0 +UniRef50_UPI0002D2A0E3 hypothetical protein 5.76355084716e-07 2.50567047746e-07 -131524628.394 +UniRef50_UPI0002B9B247 hypothetical protein, partial 3.31485548704e-07 4.83863367105e-07 61516795.1746 +UniRef50_P44997 Phosphoserine phosphatase 6.43380728562e-08 8.31204160662e-08 7582662.43915 +UniRef50_UPI00046D3094 Fis family transcriptional regulator 1.22057959548e-07 3.21025264004e-07 80325542.4123 +UniRef50_UPI0003598719 PREDICTED 3.5665284474e-07 9.84662241577e-08 -104233107.035 +UniRef50_A4W090 Putative sporulation transcription regulator WhiA 5.34934845888e-05 6.82230266586e-05 5946496885.39 +UniRef50_UPI0003C2A5BF PREDICTED 2.83428486787e-07 7.83417944571e-08 -82796014.3903 +UniRef50_W5XDD5 DNA polymerase 1.66108531379e-08 1.43597468532e-07 51266054.9356 +UniRef50_UPI0003B74800 hypothetical protein 8.77093342479e-07 2.21079798175e-07 -264840718.027 +UniRef50_UPI000474F6A9 hypothetical protein, partial 1.8254436888e-06 9.61102755211e-05 38063943615.7 +UniRef50_E3E7X3 Oxidoreductase Fe S binding subunit 1.99026004668e-06 1.06429072327e-05 3493179848.92 +UniRef50_C2MSC7 S layer y domain protein 9.79575047117e-08 2.03041512412e-06 780156854.877 +UniRef50_O31546 Probable tRNA dihydrouridine synthase 2 0.000209995014934 7.03686350551e-05 -56368882965.5 +UniRef50_T9WCL0 Phage tail fiber assembly protein 8.35977375802e-06 1.23535008968e-06 -2876217261.42 +UniRef50_S1H2Y6 Protein YibB 4.97000804833e-06 5.33868336627e-06 148838750.007 +UniRef50_C5N1K2 ROK family protein 0.000130752436692 8.60371846485e-06 -49312936481.6 +UniRef50_P74755 Histidine biosynthesis bifunctional protein HisIE 1.08637969125e-07 4.05456368493e-07 119829230.196 +UniRef50_Y1MEW7 ATP dependent helicase 2.9348110386e-05 8.61996124924e-06 -8368208169.52 +UniRef50_A0A011P8Z8 9.5611001184e-08 3.28034913898e-07 93832385.7248 +UniRef50_UPI000308DF5E 50S ribosomal protein L20 4.74957121289e-07 2.2549432742e-06 718602252.816 +UniRef50_Q8CQW2 1.86957193293e-05 1.41228848282e-05 -1846109403.08 +UniRef50_A7Z635 Glycerol 3 phosphate dehydrogenase [NAD+] 0.000282606874843 9.33360194144e-05 -76410966951.3 +UniRef50_UPI00036159B5 30S ribosomal protein S2 1.9562629957e-07 8.72080362758e-08 -43769783.3335 +UniRef50_A6V6R8 1.89995576076e-05 2.69695621179e-06 -6581560238.9 +UniRef50_C7RQ14 8.30825775856e-05 7.0345792957e-06 -30701510123.5 +UniRef50_UPI00015D2B59 hypothetical protein 1.03005823625e-07 1.36493194203e-07 13519262.4386 +UniRef50_D3E3U4 Exosome subunit 1.79597989534e-05 3.41406595601e-06 -5872290907.27 +UniRef50_P42314 5.4977460658e-06 7.19583201442e-05 26830949318.4 +UniRef50_Q1CRH7 tRNA modification GTPase MnmE 8.41350643778e-07 3.15810400977e-05 12409989850.9 +UniRef50_Q8ZLS0 3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC 1.76578138917e-05 3.34256188166e-06 -5779242904.33 +UniRef50_U5MWL6 Pyruvate kinase 4.18697266709e-06 9.06345296054e-06 1968694935.61 +UniRef50_Q9RYX4 Probable guanine deaminase 1.7161922569e-06 6.23335425637e-05 24471968177.4 +UniRef50_W8TV76 2 hydroxyacid dehydrogenase 0.000206520760475 0.000134102557222 -29236117324.5 +UniRef50_UPI000360F94C MULTISPECIES 9.12009469056e-08 2.35415122396e-07 58221032.3523 +UniRef50_P35141 Adenylate kinase 1.23133192114e-06 1.19194181292e-06 -15902270.0594 +UniRef50_UPI00036AE0E8 hypothetical protein, partial 3.36137646621e-06 6.94066700523e-07 -1076825683.98 +UniRef50_R8BHP6 1.66030028487e-07 2.19958110554e-07 21771428.5024 +UniRef50_E6AX10 1.24470397768e-06 3.94529152331e-06 1090260332.11 +UniRef50_X5A009 Oxidoreductase 0.000191699464962 3.48732398351e-05 -63312671558.0 +UniRef50_UPI000470CE1D hypothetical protein, partial 4.41701815211e-07 1.1859035889e-06 300443388.421 +UniRef50_A0A010Q6A8 TonB dependent receptor family protein 6.28096487306e-07 6.22493568842e-05 24877259000.1 +UniRef50_A7GXA8 Argininosuccinate lyase 2.77175730313e-07 2.33574739992e-07 -17602254.8369 +UniRef50_UPI00037A50BE hypothetical protein 9.57436095205e-08 1.6682277892e-07 28695532.9261 +UniRef50_UPI00047EC686 CoA transferase 7.8104388743e-08 1.39577998334e-06 531961807.238 +UniRef50_UPI0003B49CD4 glutamine amidotransferase 2.6574305074e-08 1.9754718766e-07 69023850.7732 +UniRef50_L0NM51 6.28544702505e-09 1.6300728892e-07 63270530.7663 +UniRef50_Q6FF15 Exonuclease V, alpha subunit 3.05144312301e-06 6.95343683073e-05 26839972734.1 +UniRef50_E3YPZ5 Acetyl CoA carboxylase, biotin carboxyl carrier protein 2.37902327167e-05 3.99977478817e-06 -7989650721.96 +UniRef50_Q2SRK6 Tyrosine tRNA ligase 5.14167437652e-08 1.69782233265e-07 47785600.619 +UniRef50_Q2YV14 1.10453367413e-05 2.4035292532e-07 -4362104558.58 +UniRef50_A1AYM7 6.09005269761e-06 2.66256484703e-07 -2351137997.17 +UniRef50_L7KRU0 8.48536226037e-08 7.45591583222e-08 -4156001.55772 +UniRef50_C5WGJ7 XRE family transcriptional regulator 5.09663834726e-05 2.51383816687e-05 -10427081273.5 +UniRef50_X7YQG6 7.30966912105e-08 2.59484695403e-07 75247124.5303 +UniRef50_B2I3G0 Molybdopterin biosynthesis protein 1.19206101737e-06 6.54230304145e-05 25930830548.2 +UniRef50_G8UTB0 Flagellar basal body rod modification protein FlgD 9.42383145694e-08 1.2957966582e-07 14267737.187 +UniRef50_Q4JVG0 Chorismate synthase 1.78288933788e-06 6.13161285929e-05 24034299242.2 +UniRef50_UPI0003B6C9F3 30S ribosomal protein S5 7.89460949214e-08 1.26854668605e-07 19341279.1004 +UniRef50_M3ZEB7 5.17010988532e-07 2.34189864549e-07 -114178358.357 +UniRef50_R9SLQ2 3.38932260661e-05 2.40845609506e-05 -3959878472.98 +UniRef50_Q5X496 Dihydroorotate dehydrogenase 1.0156177721e-07 6.73936574871e-07 231074729.644 +UniRef50_B7KV96 7.52983512691e-07 1.13043462905e-07 -258351651.046 +UniRef50_UPI00039B1B0F general secretion pathway protein I 1.71988796948e-07 1.87246931924e-07 6159896.32818 +UniRef50_Q6ME91 Aspartate tRNA ligase 3.29351183091e-08 1.64893117375e-07 53273063.5297 +UniRef50_UPI00046FBF5E butanol dehydrogenase, partial 1.46457574333e-07 2.89331299453e-07 57679876.0887 +UniRef50_Q49V04 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.000290426869888 5.69948043676e-05 -94239389384.0 +UniRef50_A6LTZ1 1.01871065361e-05 1.32433597517e-05 1233846927.58 +UniRef50_S8N5S2 1.37782205568e-07 1.48410233772e-07 4290665.40653 +UniRef50_E3F4P1 Short chain dehydrogenase reductase SDR 5.37712820083e-05 5.15491518799e-06 -19627023875.3 +UniRef50_W0Z0G1 NADH quinone oxidoreductase 5.65264778962e-06 4.25937555561e-06 -562481098.243 +UniRef50_Q89ER4 Aliphatic sulfonates import ATP binding protein SsuB 5.73127687095e-07 1.48257726497e-07 -171525216.834 +UniRef50_Q0T1X7 3 phenylpropionate cinnamic acid dioxygenase ferredoxin NAD reductase component 4.38649403774e-05 8.77935462662e-06 -14164481516.2 +UniRef50_Q9CGF0 Xanthine phosphoribosyltransferase 4.36025764995e-07 5.47123979683e-07 44851712.5979 +UniRef50_D8IIA8 8.24256666788e-05 5.99974650514e-05 -9054540221.97 +UniRef50_UPI000408C6D9 ribosome binding factor A 1.28991778768e-06 1.59796465455e-06 124362300.316 +UniRef50_Q1R421 2.00118466156e-06 5.94841864338e-06 1593546796.47 +UniRef50_UPI0004682957 tRNA uridine 5 carboxymethylaminomethyl modification protein 2.16393714311e-07 1.54717843684e-07 -24899305.8202 +UniRef50_G4AEU2 1.17949001381e-07 5.79560234898e-06 2292138329.07 +UniRef50_I0C2K0 Nitrogen regulation protein NIFR3 1.70700875662e-06 7.85094744967e-07 -372187999.661 +UniRef50_UPI000455F8BC alcohol oxidase 1.19285836302e-07 8.1310154195e-08 -15331248.8806 +UniRef50_D2JBV0 Beta lactamase regulatory sensor transducer BlaR1 2.35210666732e-06 2.84976736831e-05 10555286246.5 +UniRef50_UPI000416161F hypothetical protein 6.32856856698e-08 3.60553897701e-08 -10993204.608 +UniRef50_A4WVT3 Transposase, IS4 family 1.13437509933e-06 3.37724491539e-06 905474067.851 +UniRef50_F4FMD5 Periplasmic iron binding protein 0.000134540534973 4.38698056029e-05 -36604886101.7 +UniRef50_V9BNZ4 TRAP transporter, DctM like membrane protein 2.15148340172e-06 1.16529539996e-06 -398136198.198 +UniRef50_P39377 Isoaspartyl dipeptidase 2.56128034184e-05 6.413100635e-06 -7751155620.51 +UniRef50_Q1J1P5 Phosphopantetheine adenylyltransferase 1.07723512941e-07 0.00101273271699 4.08809136174e+11 +UniRef50_E6V848 Short chain dehydrogenase reductase SDR 0.000157888346465 4.90830609638e-05 -43926028947.8 +UniRef50_Y6EQN4 Serine rich adhesin for platelets 3.36127804747e-06 4.3407648978e-07 -1181747189.64 +UniRef50_W8S2G5 Glutathione peroxidase 6.2440430294e-05 2.68469731995e-05 -14369515409.9 +UniRef50_A6LRE6 Membrane protein 9.3437125959e-07 3.51019904868e-05 13793887165.9 +UniRef50_A6VD85 Lipoprotein 1.19656498788e-05 4.77601140485e-06 -2902545278.72 +UniRef50_G9WG99 Alpha glucosidase 3.75194456211e-06 1.32401314879e-05 3830497495.09 +UniRef50_A4WSV2 Pseudouridine synthase 7.99205044925e-06 3.57126760603e-06 -1784724282.91 +UniRef50_V5T5N9 Fimbrial protein 5.13327420365e-06 1.21130650698e-05 2817827224.33 +UniRef50_Q2YUZ7 Acetylglutamate kinase 9.34449658849e-05 4.33959016749e-05 -20205421392.7 +UniRef50_K0C8G2 Alpha L glutamate ligase like protein 3.34483234429e-06 5.21844501014e-06 756400425.017 +UniRef50_F8JNJ0 2.15837662388e-07 2.53048951411e-07 15022654.0125 +UniRef50_V6XU76 0.000136222171402 6.00644146164e-06 -52569688103.5 +UniRef50_Q5WH73 Peptide methionine sulfoxide reductase MsrB 1.42564752224e-07 4.39141249356e-07 119731571.295 +UniRef50_UPI000479EE06 hypothetical protein 7.07228491284e-08 6.51958774208e-07 234652075.522 +UniRef50_Q8CQZ2 ABC transporter 0.000117175331604 3.12025685453e-05 -34708259451.2 +UniRef50_UPI0002625DD5 ABC transporter 8.00121400038e-08 7.51578057656e-07 271119401.997 +UniRef50_Q931P4 Iron regulated surface determinant protein H 9.30572974121e-05 1.93265400763e-05 -29766011514.6 +UniRef50_S9R7G4 Multisubunit Na+ H+ antiporter, MnhB subunit 6.51126605838e-07 1.24571473627e-07 -212576768.432 +UniRef50_F7Z2N3 Transcriptional activator, TenA family 8.7690840061e-06 5.86721930844e-06 -1171518388.33 +UniRef50_UPI0004641455 electron transporter RnfC 4.29362130574e-06 1.8225473207e-06 -997602891.248 +UniRef50_B2EBN8 4.90988865704e-06 1.14506279426e-05 2640576713.48 +UniRef50_C4L8G4 Type VI secretion protein, VC_A0114 family 5.03846661933e-08 8.23640196763e-08 12910457.4319 +UniRef50_X0P1E3 3.60408261874e-08 1.58611334968e-05 6388784106.85 +UniRef50_I1EQF0 3.35626174585e-08 1.86832467184e-06 740715956.415 +UniRef50_P56032 50S ribosomal protein L4 2.02949456367e-06 1.65086272058e-05 5845403526.55 +UniRef50_UPI00037FFF27 hypothetical protein, partial 3.81379949496e-07 4.11357945162e-08 -137360740.631 +UniRef50_P57389 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.52394463366e-07 3.01457891917e-07 60178735.32 +UniRef50_M1IRD2 Dehydrogenase 1.55131228296e-06 6.47712818571e-05 25522677513.3 +UniRef50_Q8ET05 Ornithine carbamoyltransferase 4.28174580697e-05 8.51735725824e-05 17099683196.8 +UniRef50_D8JTY5 Binding protein dependent transport systems inner membrane component 9.65328331553e-06 1.96659293133e-06 -3103211234.4 +UniRef50_G7M273 2.48482349383e-06 4.36866068578e-06 760528191.672 +UniRef50_W7WNN7 3.89946372973e-07 3.18464886917e-06 1128255692.57 +UniRef50_UPI000364C068 hypothetical protein 5.82960092807e-08 8.75281982707e-09 -20001193.5457 +UniRef50_UPI00046650EC hypothetical protein 1.20074142218e-07 1.02359633577e-06 364762997.001 +UniRef50_Q3SL72 Putative pilus assembly protein PilF, TPR repeat 6.35564499147e-08 1.1623412684e-07 21266624.6025 +UniRef50_UPI000473F325 hypothetical protein 4.75509770741e-07 2.799074968e-07 -78967038.2998 +UniRef50_A6LUF1 1.85953689091e-06 2.49516431661e-05 9322566675.31 +UniRef50_UPI00034F6213 PREDICTED 1.20228376991e-07 9.77191298898e-08 -9087259.27428 +UniRef50_K7RJS3 Transcriptional regulator, LacI family 1.73158710486e-06 4.99098743873e-05 19450165790.0 +UniRef50_B3E717 Elongation factor Ts 0.000125406544533 2.27945365959e-05 -41425726795.1 +UniRef50_D2P385 0.000261848323859 2.09149965921e-05 -97267740802.1 +UniRef50_X7ELL2 Transcriptional regulator 1.58471737472e-06 6.14474901861e-07 -391698792.507 +UniRef50_C2DNC2 2.54785127998e-06 1.14495103492e-06 -566368044.453 +UniRef50_H8H2P8 Transposase, IS4 4.51008619322e-08 3.34313515128e-05 13478439083.1 +UniRef50_A6M074 Alcohol dehydrogenase GroES domain protein 7.96859789197e-06 9.05768528868e-06 439677946.657 +UniRef50_UPI00036452A7 hypothetical protein 1.33872329776e-07 1.61660174712e-06 598596060.916 +UniRef50_X6KYR9 1.18752521757e-07 4.64843148773e-07 139721033.136 +UniRef50_UPI000362C621 hypothetical protein 7.66522711868e-08 2.28697194376e-05 9201840917.46 +UniRef50_Q3JP83 2.77395697363e-07 2.80761906206e-08 -100653344.366 +UniRef50_Q46VJ2 Twin arginine translocation pathway signal 2.43411926725e-06 1.87304464177e-06 -226512711.466 +UniRef50_Q6AEX4 ABC type glycine betaine transport, ATP binding protein 1.48811822151e-06 9.73452068884e-05 38698682993.6 +UniRef50_F0K5E7 Translation factor 3.74774721742e-06 4.64442295204e-06 361998997.515 +UniRef50_UPI0003B62D20 acyltransferase 3.23666582535e-06 7.80613774246e-07 -991538352.177 +UniRef50_A0A010V7A5 1.64601448628e-06 7.68276763468e-05 30351759475.8 +UniRef50_UPI0001DD0BD2 hypothetical protein, partial 1.01612368852e-06 4.30557294456e-07 -236400338.991 +UniRef50_UPI00038FA867 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 1.30548469271e-07 7.31761408798e-07 242717041.399 +UniRef50_UPI00046F700B hypothetical protein 4.55936381743e-07 3.66972647928e-07 -35915751.0489 +UniRef50_P76057 5.01781337401e-06 8.31878042813e-06 1332640907.17 +UniRef50_U5N033 2.80989491069e-06 1.47458920369e-05 4818708511.0 +UniRef50_UPI0004785487 5 keto 4 deoxyuronate isomerase, partial 9.80347993844e-08 9.21256127817e-08 -2385611.14538 +UniRef50_K9ZYV5 Diguanylate cyclase domain containing protein 5.27616103042e-08 1.13690998245e-06 437684001.834 +UniRef50_UPI00038240F5 hypothetical protein 6.07283945701e-08 1.70464760179e-06 663670357.112 +UniRef50_B2S1K4 Uridine kinase 1.02781113614e-07 9.16935230741e-07 328684007.879 +UniRef50_UPI00035D9BD3 hypothetical protein 8.72677380167e-07 9.10880445477e-07 15423046.27 +UniRef50_E4BE72 1.59270106002e-06 9.28638639564e-07 -268090148.1 +UniRef50_O75251 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 4.24588359561e-07 5.33529624212e-05 21367834112.9 +UniRef50_I6TQZ1 Thioesterase 4.03294363131e-05 1.01981229436e-05 -12164380960.1 +UniRef50_UPI0003AEA946 8.6906603445e-08 1.38697762915e-06 524854626.741 +UniRef50_G1RN76 1.71884919535e-06 2.1929458307e-06 191398629.511 +UniRef50_U6HZU1 Heat shock protein 70 3.52350351094e-07 1.10420552482e-07 -97670028.5121 +UniRef50_UPI00016C4061 DNA polymerase I 1.61113337995e-07 1.01427191971e-06 344430588.871 +UniRef50_D8U3W2 Metalloproteinase, extracellular matrix glycoprotein VMP28 1.37341502869e-07 2.0849033558e-07 28723656.8598 +UniRef50_R7PYE0 2.12293283083e-05 8.17378482542e-06 -5270683113.58 +UniRef50_A1WUU5 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.06144398752e-07 1.67944014706e-07 -96164418.0868 +UniRef50_C1DQS2 Ribonuclease 3 3.39353062611e-07 4.82134779736e-07 57642731.3321 +UniRef50_D7A1Q0 Arginine ornithine antiporter 0.000106320556227 3.11243451657e-05 -30357633166.7 +UniRef50_Q28QF9 Hemin import ATP binding protein HmuV 1.7776776585e-07 1.43865902348e-05 5736275992.55 +UniRef50_D3D4M2 8.10436449709e-07 9.60704069354e-07 60664882.0417 +UniRef50_UPI0004677544 para aminobenzoate synthase 6.69090285335e-08 1.91686560845e-07 50374220.9869 +UniRef50_Q4L6X8 D tyrosyl tRNA deacylase 8.93769413644e-08 4.66497103175e-07 152248037.108 +UniRef50_K6DPK7 YhgE Pip C terminal domain containing protein 2.2396426082e-08 3.43340585083e-08 4819368.70172 +UniRef50_Q8DS55 3.56304779995e-05 1.87174277999e-05 -6828005912.04 +UniRef50_Q9X196 Spermidine putrescine import ATP binding protein PotA 1.33268777525e-06 4.14698577948e-07 -370603503.945 +UniRef50_A5WAX5 L pipecolate dehydrogenase 1.26673150626e-06 1.60935534159e-06 138321446.79 +UniRef50_P31060 Putative molybdenum transport ATP binding protein ModF 2.96057007924e-05 5.42735327959e-06 -9761095592.61 +UniRef50_M9VFB1 ABC transporter 3.17057321181e-06 4.54052339103e-05 17050650801.6 +UniRef50_I1EII6 1.00229404513e-07 4.15422886112e-07 127247476.38 +UniRef50_W0RBV9 LigA 2.50527203152e-07 1.2992855333e-06 423396607.593 +UniRef50_UPI0003677181 hypothetical protein 1.45831335383e-07 2.12041248803e-07 26729754.5347 +UniRef50_T3QN35 Putative GTP binding protein typA bipA 1.59713456081e-07 3.29003535741e-07 68344482.5816 +UniRef50_U3TN39 Mobilization protein 1.75602193886e-07 1.81649386932e-07 2441326.04007 +UniRef50_Q03Q56 D ribose pyranase 0.000212957568583 0.000130851656942 -33147164082.3 +UniRef50_L9NPU9 Pirin family protein 1.80041012167e-06 2.82599717884e-06 414042080.348 +UniRef50_UPI00036BABDE hypothetical protein 5.55526745096e-07 4.11409191349e-05 16384820946.5 +UniRef50_V4JV50 8.45993888298e-06 3.26510424257e-06 -2097218492.12 +UniRef50_W4HIB0 Putative NAD specific glutamate dehydrogenase 5.40905120035e-06 4.05348990859e-06 -547256728.091 +UniRef50_UPI0003650DAD hypothetical protein 9.19396119793e-08 9.96138610444e-07 365036231.45 +UniRef50_Q9SC75 L1332.3a protein 1.2655927843e-05 2.48440738836e-06 -4106367626.11 +UniRef50_Q6MER0 4.97289288535e-07 8.28883893456e-07 133868811.13 +UniRef50_G8VKT7 2.04046480461e-06 5.16520870194e-05 20028820691.2 +UniRef50_E1VFK2 1.50086028104e-06 2.2350980524e-06 296420798.409 +UniRef50_F8LS47 1.05018989057e-05 2.42318168618e-05 5542936363.92 +UniRef50_Q00266 S adenosylmethionine synthase isoform type 1 4.5530303141e-07 2.53718831903e-06 840482638.218 +UniRef50_C1KWF9 Peptide methionine sulfoxide reductase MsrA 0.000111303015954 4.12192185318e-05 -28293689044.2 +UniRef50_G7R477 1.21184894193e-06 2.79610185585e-07 -376356225.792 +UniRef50_A3C947 3.93556200369e-06 7.697220813e-06 1518627822.06 +UniRef50_Q8ZBZ0 Na translocating NADH quinone reductase subunit A 3.7579237787e-06 3.51209789683e-05 12661650248.0 +UniRef50_Q5LSI0 ABC transporter, periplasmic substrate binding protein 5.88815343838e-05 1.46058720011e-05 -17874628227.4 +UniRef50_UPI00037F3C99 hypothetical protein 9.38268419239e-07 8.13171417013e-07 -50503194.9115 +UniRef50_UPI0003462712 hypothetical protein 2.91237757135e-07 3.77310421526e-08 -102343771.715 +UniRef50_A7HHJ4 LigA 5.57543945134e-07 4.68629334025e-07 -35895919.6097 +UniRef50_UPI00035EDF20 hypothetical protein 2.30232792208e-07 1.65181868161e-05 6575646915.12 +UniRef50_Q9PHZ7 Phosphoribosylformylglycinamidine synthase 1 1.15429536869e-07 1.13336482932e-07 -844991.559027 +UniRef50_O29627 3 isopropylmalate dehydrogenase 1.09282927832e-07 4.32229783998e-07 130377608.838 +UniRef50_P22142 NADH ubiquinone oxidoreductase 49 kDa subunit, mitochondrial 1.98464728569e-07 3.75049363428e-07 71289384.0297 +UniRef50_G9G2D3 Dipeptide ABC transporter, permease protein DppC 8.32520431281e-05 2.68696261889e-05 -22762273608.4 +UniRef50_Q9RWW2 8.07168899885e-07 0.00015267929336 61312640325.0 +UniRef50_Q8DUN4 FruR 4.84905812453e-05 5.99930192646e-05 4643675379.18 +UniRef50_UPI000349D5C4 hypothetical protein 9.43720580817e-08 2.68681594889e-07 70370899.0275 +UniRef50_A9M185 Histidinol phosphate aminotransferase 1.48811822151e-06 3.0849853084e-05 11853692673.0 +UniRef50_UPI00036E2FCA FAD containing monooxygenase EthA 8.5016224316e-08 1.52873748969e-05 6137378750.05 +UniRef50_B7I5R6 1.62280929733e-06 4.06827457212e-05 15768975653.6 +UniRef50_UPI00037EE754 hypothetical protein 2.56004421799e-06 7.14653329689e-07 -745006947.099 +UniRef50_U5MPF8 Multidrug resistance efflux pump 1.01565736906e-06 2.20088728461e-05 8475218703.79 +UniRef50_A6LZS4 NADPH dependent FMN reductase 1.80041012167e-06 2.97798358178e-06 475400856.298 +UniRef50_A8AKU2 50S ribosomal protein L1 3.16646177371e-05 1.4162610657e-05 -7065775032.02 +UniRef50_Q5GWU5 1.75967760106e-06 1.9755443907e-05 7265111690.58 +UniRef50_P21622 Acetolactate synthase isozyme 3 small subunit 9.84545065508e-07 4.41945105789e-06 1386713700.16 +UniRef50_UPI00037D5428 hypothetical protein 4.54254030465e-06 4.44128764005e-07 -1654579032.13 +UniRef50_F0RQZ6 ABC type transporter, periplasmic subunit 5.10234287243e-07 0.000140183075989 56387640173.6 +UniRef50_Q6A6N8 50S ribosomal protein L5 1.54515758415e-05 4.12077663233e-05 10398090161.5 +UniRef50_UPI0004788E38 PTS fructose transporter subunit IIA 2.65990362573e-08 3.41345212724e-06 1367314154.19 +UniRef50_Q7MN70 Phosphoribosylformylglycinamidine synthase 3.239118224e-06 6.83560783147e-05 26288515863.6 +UniRef50_E6UYF1 Short chain dehydrogenase reductase SDR 5.95381900397e-06 0.000134352023169 51835930644.6 +UniRef50_B2I798 Acyl carrier protein 1.27242468152e-05 3.56011348131e-07 -4993208433.38 +UniRef50_P36879 2.22450590001e-05 3.89520816507e-06 -7408059960.08 +UniRef50_I4CDV3 Thioredoxin reductase 4.67813691505e-06 1.86750379415e-05 5650720705.69 +UniRef50_A8A033 5.95968057209e-06 8.08473860903e-07 -2079605361.72 +UniRef50_P72138 Imidazole glycerol phosphate synthase subunit HisH 2 3.08396480303e-05 3.33691192315e-06 -11103192063.0 +UniRef50_UPI000404E07B fatty acid CoA ligase 3.68955238896e-07 9.95444015276e-08 -108764461.088 +UniRef50_UPI0004785A11 uroporphyrin III methyltransferase 1.26734823415e-07 1.95529499352e-07 27773254.8814 +UniRef50_Q7U8M8 Glutamyl Q tRNA synthetase 5.31889013037e-08 8.54985044521e-08 13043783.2744 +UniRef50_B9KJE5 2.95440166627e-06 2.06733138648e-06 -358121157.528 +UniRef50_C0PP08 6.44125859857e-07 1.40249072518e-07 -203421242.312 +UniRef50_N6AES7 Hyperosmolarity resistance protein Ebh 7.85290283046e-05 4.00188784362e-05 -15547020074.6 +UniRef50_UPI000371B471 hypothetical protein 3.40433739356e-06 1.34648260231e-06 -830781231.946 +UniRef50_Q8XMI8 Shikimate dehydrogenase 1.68020469813e-06 8.92768051351e-06 2925894923.2 +UniRef50_UPI000289E4F2 alcohol dehydrogenase 3.67940492347e-08 1.38918181599e-07 41228765.4394 +UniRef50_UPI0004729BC1 cation diffusion facilitator family transporter 1.85225773897e-07 2.01379313855e-07 6521382.30727 +UniRef50_Q5HT48 Holliday junction ATP dependent DNA helicase RuvB 1.40432115083e-07 1.16964516696e-07 -9474157.44865 +UniRef50_Q4LAB0 Multicopper oxidase mco 8.87286572868e-05 2.89089664303e-05 -24149943268.9 +UniRef50_G2TA66 Phosphate ABC transporter permease 1.16508021255e-06 7.71621490842e-05 30680949292.4 +UniRef50_W1VWW7 Putative copper transporting P type ATPase B 6.56060073477e-05 1.7316373141e-05 -19495117909.7 +UniRef50_B8KQR9 Transcriptional regulator 1.76346093407e-07 2.77368949737e-07 40784166.7903 +UniRef50_Q7VMD0 Nucleoside diphosphate kinase 7.65704841325e-07 2.49234107625e-07 -208505573.003 +UniRef50_Q0RRL9 60 kDa chaperonin 1 1.63990211586e-06 4.1365009386e-05 16037513286.8 +UniRef50_C5J508 DNA replication protein 1.99728036426e-06 0.00037893561556 1.52174631472e+11 +UniRef50_UPI000478279F succinate semialdehyde dehydrogenase 5.02021807841e-08 1.67644449457e-07 47412885.042 +UniRef50_B1M8C4 Polar amino acid ABC transporter, inner membrane subunit 4.74495588046e-05 3.06924390126e-05 -6765054893.01 +UniRef50_F9Z2M8 L fucose proton symporter 8.49555863898e-07 3.59011708231e-05 14150767090.7 +UniRef50_UPI00037CF736 hypothetical protein 5.39868041212e-08 5.19001181886e-08 -842420.717507 +UniRef50_H0A168 2.64909101321e-06 1.43941620691e-06 -488360563.682 +UniRef50_D9VMY8 4.57145055376e-07 3.42465599954e-05 13641201454.0 +UniRef50_A0A011P7P6 Putative carbamoyl transferase, NodU family 7.34885117805e-07 7.6722108167e-06 2800683515.21 +UniRef50_G9ZBL9 2.82967258073e-06 9.68841557828e-06 2768958714.35 +UniRef50_G7U641 1.24173022652e-06 4.06619148961e-05 15914412291.2 +UniRef50_UPI0003B5C516 iron ABC transporter permease 1.15978470049e-07 7.33025129992e-07 249109308.633 +UniRef50_B0VC22 Alpha ketoglutarate dependent taurine dioxygenase (Sulfate starvation induced protein 3) (SSI3) 2.57669616962e-06 2.59263450134e-05 9426539770.65 +UniRef50_UPI00046F1DB8 hypothetical protein 1.69084650167e-08 1.57605206318e-08 -463439.235046 +UniRef50_B4F197 3 isopropylmalate dehydratase small subunit 4.45238707479e-07 6.26890054657e-07 73334877.9685 +UniRef50_UPI0003632A72 hypothetical protein 2.00031064591e-07 1.6144201529e-08 -74237383.1637 +UniRef50_UPI00036D8769 hypothetical protein 2.07203364137e-07 8.75678557014e-08 -48298322.8484 +UniRef50_C5QMF5 2.74345686213e-06 1.23158846332e-06 -610359825.311 +UniRef50_P76180 Inner membrane protein YdgK 1.06235436086e-05 8.26424439199e-06 -952478045.603 +UniRef50_A5CXF1 Acetylglutamate kinase 2.01608148679e-06 1.75115336717e-05 6255704197.63 +UniRef50_Q5HLT6 Abortive infection family protein 0.000182775108759 5.34404045403e-05 -52214007208.5 +UniRef50_Q4FUL2 Tryptophan synthase alpha chain 1.15892789525e-07 3.28964249523e-07 86019563.082 +UniRef50_X2M4D8 7.70379569081e-06 4.67992588528e-06 -1220773347.55 +UniRef50_B0CDQ3 UPF0246 protein AM1_4276 4.65786104097e-08 8.49381739614e-08 15486226.5306 +UniRef50_G8PMP6 Endoribonuclease L PSP 3.63513067692e-06 1.54817983405e-06 -842527665.033 +UniRef50_V6URL6 Cell envelope biogenesis protein AsmA 1.10892538922e-07 1.25218155727e-07 5783427.29927 +UniRef50_X2H351 2.84756497483e-07 2.85282649532e-07 212414.038793 +UniRef50_U6KK83 4.97565011699e-07 8.49458792466e-08 -166579407.177 +UniRef50_UPI00036BEE13 hypothetical protein 4.94357235951e-07 2.2624328059e-07 -108240893.907 +UniRef50_UPI00046D6656 hypothetical protein 3.25145387086e-08 4.71171945828e-08 5895271.37115 +UniRef50_Q165E2 1,4 alpha glucan branching enzyme GlgB 3.94189825019e-08 3.27944427029e-08 -2674408.0091 +UniRef50_UPI000315BFA8 hypothetical protein 8.67844005852e-08 8.53644743749e-08 -573241.635552 +UniRef50_UPI00035CD1FF hypothetical protein 1.38963729088e-07 1.09064110583e-07 -12070842.9 +UniRef50_UPI000469790A hypothetical protein 2.39251470474e-06 7.56707628382e-07 -660395390.337 +UniRef50_Q4L4C2 Fructose specific permease 0.000250728254733 8.76659851908e-05 -65830239213.2 +UniRef50_UPI0003FDF28D AMP dependent synthetase 1.16613846236e-07 2.90173312644e-07 70068086.4031 +UniRef50_M1MC89 Cell wall hydrolase 5.55126454193e-06 6.0847863502e-06 215389301.047 +UniRef50_Q5LWG6 0.000100960318222 1.51255596664e-05 -34652545339.8 +UniRef50_A6LRW3 Phage major capsid protein, HK97 family 3.25718517098e-06 8.06020591215e-06 1939038412.9 +UniRef50_C5N1T2 4.11181451639e-05 9.42500122969e-06 -12794911124.8 +UniRef50_P0ABY0 Flagellar protein FliL 7.50682364195e-06 3.77000049185e-05 12189357793.3 +UniRef50_P50971 Thioredoxin reductase 5.32255902692e-07 1.79323577931e-07 -142483110.473 +UniRef50_W0AMQ6 Cell envelope integrity inner membrane protein TolA 1.46501677432e-06 3.49400152972e-06 819126044.198 +UniRef50_UPI00047BFB23 hypothetical protein 1.8061693576e-07 1.67852905616e-06 604725504.454 +UniRef50_B9KW07 6.77512190902e-06 9.01115685083e-06 902714745.243 +UniRef50_C0PKV4 1.10694834275e-06 3.9539759228e-06 1149379971.02 +UniRef50_I4E8E6 6.11920058974e-07 4.36550441335e-07 -70798866.6681 +UniRef50_T2BJL4 ISSoc3 transposase 2.73540571632e-06 5.14361420723e-05 19661084892.2 +UniRef50_Q2FUW3 Accessory Sec system protein Asp1 0.000142619194855 2.11009529852e-05 -49058405439.4 +UniRef50_UPI0003A6ABB5 sulfonate ABC transporter ATP binding protein 6.99006745546e-07 7.56013544229e-07 23014344.1804 +UniRef50_P37749 Beta 1,6 galactofuranosyltransferase WbbI 2.45559096698e-05 9.19581419804e-06 -6201059031.53 +UniRef50_C5N0Z4 Siderophore biosynthesis protein, IucA IucC family 0.000117060052259 2.35676076999e-05 -37744047149.8 +UniRef50_V5VD99 2.52780796101e-06 6.25500113512e-05 24231700063.9 +UniRef50_F8FZJ8 Major facilitator transporter 2.28410147281e-06 1.54346710037e-06 -299003184.76 +UniRef50_Q9LPM9 Branched chain amino acid aminotransferase 6 7.53490755902e-08 2.24529737537e-07 60226063.8806 +UniRef50_Q9RUA0 NADH quinone oxidoreductase subunit N 7.95824291342e-07 0.000226002540623 90918714980.4 +UniRef50_G6Y8D4 Transposase 1.18289126582e-06 6.61912370599e-07 -210325573.131 +UniRef50_Q1G0V6 1.83557556203e-06 2.66306269558e-05 10010066517.2 +UniRef50_Q1G0V5 1.8946883016e-06 5.25107495247e-06 1355014478.45 +UniRef50_X6AX71 9.76586125756e-06 1.27059397147e-06 -3429643652.05 +UniRef50_A1TRM3 Alkanesulfonate monooxygenase 2.46771539709e-07 3.23924530086e-07 31147608.9889 +UniRef50_Q8D032 Putrescine binding periplasmic protein 1.98591008641e-05 1.24354448994e-05 -2997021011.45 +UniRef50_UPI0003658106 hypothetical protein 3.76002895475e-07 1.15004128274e-07 -105368405.134 +UniRef50_A6L170 NADH quinone oxidoreductase subunit B 1.959131078e-07 2.80851785292e-05 11259238690.4 +UniRef50_UPI000307B6D2 hypothetical protein 5.09050114678e-07 1.00811997478e-06 201480626.799 +UniRef50_A6LQN1 1.36605303564e-06 2.19094971619e-05 8293640490.2 +UniRef50_UPI0003620B51 hypothetical protein 1.09453883234e-07 1.81660674291e-07 29150767.6267 +UniRef50_UPI000376D6A5 hypothetical protein 2.48144130823e-06 4.42045452485e-07 -823329133.168 +UniRef50_A1KU02 1.68520530738e-06 2.50977369854e-06 332888378.103 +UniRef50_UPI0001746901 leucyl phenylalanyl tRNA protein transferase 1.02958411347e-07 2.21408846248e-07 47819894.1198 +UniRef50_P77596 1.23419443709e-05 1.96163311307e-06 -4190659035.52 +UniRef50_UPI0002F262C3 hypothetical protein 1.54769699674e-06 4.70617012545e-07 -434830406.875 +UniRef50_A5VRG1 3.82469253204e-06 1.91896255988e-06 -769366575.698 +UniRef50_UPI0002BC7439 hypothetical protein 3.13429970243e-07 2.41420379894e-06 848108174.04 +UniRef50_P23189 Glutathione reductase 2.92648310971e-05 1.88678545604e-05 -4197387013.12 +UniRef50_B2S648 Protein RecA 5.55168569786e-05 3.93852958417e-05 -6512509187.48 +UniRef50_M4YYE1 Universal stress protein 0.000126884230222 8.58414500682e-06 -47759196106.6 +UniRef50_E6MZX2 1.45976705705e-06 3.57737506393e-05 13852976252.1 +UniRef50_B0VSH7 Outer membrane lipoproteins carrier protein 2.09714438257e-06 1.14041865536e-05 3757367134.7 +UniRef50_Q7AX70 FhaC protein 1.31990976721e-06 5.43933943015e-05 21426416991.4 +UniRef50_UPI0003C757EC LuxR family transcriptional regulator 1.44228219278e-07 9.3792265116e-07 320424181.877 +UniRef50_P16701 Sulfate transport system permease protein CysT 2.46343349573e-05 8.54212828943e-05 24540436821.9 +UniRef50_W9GLM8 2.33978918713e-06 1.08833678059e-06 -505226693.568 +UniRef50_D3P377 Simple sugar transport system permease protein 0.000130930815522 1.66376860096e-05 -46141538918.4 +UniRef50_UPI000409B662 hypothetical protein 2.4300908401e-07 2.23178409345e-07 -8005886.712 +UniRef50_G7M4C6 1.50283802342e-05 7.99117776273e-06 -2841004993.92 +UniRef50_F0Y5D8 Expressed protein 2.65308422183e-06 1.19966163246e-06 -586764534.829 +UniRef50_F5Z794 FMN binding oxidoreductase 6.42047765232e-06 3.31828055204e-05 10804280171.0 +UniRef50_K0RRH8 1.30700349402e-05 9.434495105e-05 32811680988.9 +UniRef50_M4X5I0 Response regulator receiver modulated diguanylate cyclase phosphodiesterase 1.2062793865e-05 3.10009632749e-06 -3618350980.56 +UniRef50_UPI000378EFFC hypothetical protein 2.9668115103e-06 6.23719181074e-07 -945935126.286 +UniRef50_UPI00030E8238 hypothetical protein 1.62676695085e-07 4.38487211923e-08 -47972311.2438 +UniRef50_Q92506 Estradiol 17 beta dehydrogenase 8 1.75382891136e-07 4.61871393011e-07 115658923.816 +UniRef50_P39333 Cyclic di GMP binding biofilm dispersal mediator protein 3.7941477395e-05 8.77195807327e-06 -11776092900.4 +UniRef50_D9VNI8 Galactose oxidase 4.56145361199e-06 1.3150105369e-06 -1310628907.75 +UniRef50_Q8CN30 Thiazole synthase 0.000104543284896 1.02059142058e-05 -38085154197.4 +UniRef50_Q71YH9 Dihydroorotase 0.00022833128131 5.0923225525e-05 -71621809162.1 +UniRef50_A0JUU8 tRNA pseudouridine synthase B 8.44875575059e-06 7.85024750816e-05 28281546149.7 +UniRef50_P54383 Farnesyl diphosphate synthase 1.86914629752e-07 5.47863115053e-06 2136330896.1 +UniRef50_Q6GJ46 Putative antiporter subunit mnhB2 8.91400485779e-05 9.01556091592e-05 409994269.001 +UniRef50_A6LW15 ROK family protein 3.22526474055e-06 1.33353847767e-05 4081579523.7 +UniRef50_Q9ZHC7 Silver exporting P type ATPase 4.04979096332e-08 1.47177746395e-07 43067959.2096 +UniRef50_N4BUJ9 ATP dependent helicase HrpA 1.33894560082e-05 6.38484455681e-06 -2827847599.17 +UniRef50_UPI000346DC0F hypothetical protein 1.63956734181e-07 1.35516514113e-07 -11481665.8422 +UniRef50_X2HS12 Multidrug transporter 6.9178861735e-07 3.4652787341e-05 13710471933.1 +UniRef50_Q9NQW7 Xaa Pro aminopeptidase 1 3.64542599782e-08 8.06819990845e-08 17855281.0126 +UniRef50_W5XIY9 4.17712798123e-06 7.2446503745e-07 -1393882399.34 +UniRef50_UPI0003785425 hypothetical protein 8.06664251248e-07 4.24296270106e-07 -154366646.17 +UniRef50_K7T5I3 2.81963860326e-07 2.55253018819e-07 -10783494.4953 +UniRef50_G7U9V5 1.22695688869e-07 1.28398567476e-05 5134073976.51 +UniRef50_UPI00047018EB hypothetical protein 4.60398289766e-06 1.96912304698e-06 -1063725255.09 +UniRef50_I3Y6A0 CRISPR associated helicase, Cas3 family 5.15929001838e-07 1.88104348598e-07 -132346835.374 +UniRef50_C5TD27 Xanthine dehydrogenase accessory protein XdhC 6.3056035085e-08 3.67076114321e-07 122736636.733 +UniRef50_Q0IDE8 Bifunctional purine biosynthesis protein PurH 3.56121505315e-08 5.68540291034e-08 8575607.04664 +UniRef50_P96110 Glutamate dehydrogenase 8.08573526118e-08 6.69483390311e-06 2670143496.06 +UniRef50_A3PRG7 Extradiol ring cleavage dioxygenase, class III enzyme, subunit B 3.24559664414e-05 2.51461018982e-05 -2951082018.21 +UniRef50_UPI0001E8E9B9 PTS system, cellobiose specific IIC component, partial 3.50174448055e-07 4.67814083438e-07 47492564.4048 +UniRef50_Q8KY51 Protein phosphatase PhpP 8.82582267538e-05 2.98640368895e-05 -23574451025.5 +UniRef50_L9CVM1 CO dehydrogenase flavoC terminal domain protein 1.50458910931e-06 2.86866145984e-06 550692746.959 +UniRef50_UPI00047124E8 hypothetical protein 6.52502705794e-08 5.13620564083e-08 -5606842.48843 +UniRef50_Q838L1 Rhamnulose 1 phosphate aldolase 1.02966690407e-07 1.22386949404e-05 4899342416.66 +UniRef50_P45541 Protein FrlC 4.20105120066e-05 4.8412574623e-06 -15005684177.6 +UniRef50_I2FAM9 Serine protease Do 8.93810549727e-07 4.61845774432e-05 18284438375.1 +UniRef50_N6VEV1 2.54157238898e-06 5.26634170831e-06 1100022810.89 +UniRef50_B8EMC7 1.16806089355e-08 2.46030326665e-07 94609856.8416 +UniRef50_Q08194 Cysteine rich extensin like protein 1 1.20328251754e-06 4.15421666867e-07 -318069093.557 +UniRef50_B7UI87 Protein FixA 1.80068068382e-05 2.3688505764e-06 -6313234842.19 +UniRef50_T1Y9S4 Phosphoesterase family protein 8.24980101019e-05 1.86744007426e-05 -25766374302.1 +UniRef50_A9AQ58 Aldehyde Dehydrogenase 2.91894248533e-06 7.50247704093e-05 29110007570.9 +UniRef50_R7RGB1 4.10562620543e-06 4.62700554433e-07 -1470693789.03 +UniRef50_D5AR26 Histidine ammonia lyase 6.43388321354e-05 1.57195134562e-05 -19628215576.9 +UniRef50_M9VD49 Sua5 YciO YrdC YwlC family protein 3.9130817473e-06 5.81404264265e-05 21892244491.3 +UniRef50_M1MLW9 5.41182709978e-06 1.02718853981e-05 1962065174.65 +UniRef50_UPI000475FB40 hypothetical protein, partial 1.8981962984e-07 4.86133478904e-07 119625537.047 +UniRef50_D7AAI4 Peptidyl prolyl cis trans isomerase 2.23649737417e-05 6.08900423076e-06 -6570808620.16 +UniRef50_P17583 Cyanate transport protein CynX 2.65330720421e-05 4.39361592331e-05 7025839858.9 +UniRef50_A5KZA1 2.09366426369e-06 4.73633001244e-06 1066876591.93 +UniRef50_W0H3E7 2.48534016838e-06 1.58391115868e-06 -363917952.994 +UniRef50_O86507 Urease subunit gamma beta 8.56178580122e-08 1.24965916391e-06 469937759.585 +UniRef50_Q01993 Riboflavin synthase 2.74857355682e-07 0.000122935730735 49519699801.3 +UniRef50_A9QYJ6 Tellurium resistance protein 5.84487712967e-06 0.000694667828496 2.78086278275e+11 +UniRef50_Q53726 Heptaprenylglyceryl phosphate synthase 0.000151622029008 3.50863017196e-05 -47046903160.4 +UniRef50_U5MQB0 DNA polymerase III epsilon subunit like 3 5 exonuclease 2.95569823245e-06 1.41261043477e-05 4509630025.04 +UniRef50_P75820 N acetylmuramoyl L alanine amidase AmiD 3.0064394004e-05 9.49081265654e-06 -8305807256.22 +UniRef50_UPI00036D10D1 hypothetical protein 1.21646092353e-05 6.42762617483e-06 -2316090462.21 +UniRef50_A0B343 Binding protein dependent transport systems inner membrane component 8.45056234471e-05 3.93320019857e-05 -18237145326.6 +UniRef50_Q1GCC9 Flagellar biosynthetic protein flhB 7.96323140706e-05 1.94880883204e-05 -24280961988.0 +UniRef50_Q9ZH77 Malate synthase 1.39148058592e-07 2.13304655663e-07 29937928.2413 +UniRef50_UPI00046CFBE6 acyl CoA dehydrogenase 6.82888352512e-08 1.64064836215e-06 634780836.031 +UniRef50_F0KN46 Threonine dehydratase catabolic 1.03232266783e-06 5.60520249971e-05 22212128998.0 +UniRef50_L0DM84 1.73454969327e-07 7.47568788217e-08 -39845630.2988 +UniRef50_O84823 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.25746442527e-07 1.84711007095e-07 23804718.2927 +UniRef50_A4WVF0 Glucose sorbosone dehydrogenase 7.971401732e-05 7.70408156694e-06 -29071294724.8 +UniRef50_UPI0003B3270D iron ABC transporter ATP binding protein 1.06714927643e-07 4.19865912883e-06 1651968087.82 +UniRef50_Q9K9X4 Transposase related protein 2.47802618498e-06 1.86590295227e-05 6532469610.67 +UniRef50_UPI00037D8C4A hypothetical protein 4.24497101115e-08 7.67790204472e-08 13859163.8505 +UniRef50_F8JB05 1.2834847421e-07 1.82300508528e-07 21781098.3201 +UniRef50_UPI000377A6D2 cold shock protein 1.12222600386e-07 6.10776688798e-08 -20647836.4679 +UniRef50_UPI00047DCFEE MarR family transcriptional regulator 1.26560960088e-07 4.13777755241e-07 115952944.75 +UniRef50_UPI00036E9D0F hypothetical protein 1.28020255547e-06 8.69219225664e-07 -165919013.575 +UniRef50_Q2FG29 Alanine dehydrogenase 2 0.000269328599985 0.00035107418586 33001696148.9 +UniRef50_Q6A5S0 Probable potassium transport system protein kup 8.32077859384e-07 6.5296891444e-05 26025236316.3 +UniRef50_R5T303 1.80636541122e-06 4.33289887985e-07 -554327438.259 +UniRef50_A9AQT5 6.8770406176e-05 5.0338074749e-06 -25731247031.7 +UniRef50_L1NZZ4 4.69547999705e-06 5.48119772464e-06 317203888.469 +UniRef50_Z6HHY0 1.06434019418e-06 8.74985770602e-07 -76444704.4385 +UniRef50_UPI00047D45C1 cysteine desulfurase 2.21798720113e-07 1.01844412104e-06 321615524.293 +UniRef50_A2XBC4 2.28473895238e-05 2.19838738361e-06 -8336255555.75 +UniRef50_UPI0004651636 hypothetical protein 1.10827995103e-06 4.87007501649e-07 -250815311.685 +UniRef50_J7R4R4 Pleiotrophic effects on 3 hydrogenase isozymes 2.80208829306e-05 6.82379141098e-06 -8557525964.03 +UniRef50_F3WHR7 Starvation sensing protein rspA 2.63712159185e-05 5.25067199596e-06 -8526622759.73 +UniRef50_A0A023RWV4 Histidine kinase 1.9667122319e-06 5.13423053322e-05 19933532841.3 +UniRef50_C1N829 Predicted protein 6.33792468556e-08 4.41552582737e-06 1757014981.4 +UniRef50_P23921 Ribonucleoside diphosphate reductase large subunit 2.93939043549e-08 2.36614229776e-06 943374001.547 +UniRef50_P35483 Alkaline phosphatase H 9.67308257962e-06 5.57068713933e-06 -1656187381.3 +UniRef50_A0RU57 8.32635333901e-08 7.3868188941e-07 264600433.213 +UniRef50_Q9I406 Gamma glutamyltranspeptidase 3.52845315482e-06 3.04059782712e-06 -196953182.451 +UniRef50_R9SL02 Heavy metal translocating P type ATPase 3.3916913342e-05 7.61426041618e-06 -10618703756.0 +UniRef50_UPI0003B6145B ABC transporter 3.53472061581e-07 7.3161796178e-07 152662140.282 +UniRef50_H5IZ71 8.54763273451e-06 9.02444607244e-06 192495395.68 +UniRef50_F9YXP6 4.72962942534e-06 4.1037498896e-05 14657932453.0 +UniRef50_UPI00041FBFE4 transcriptional regulator 2.70723079266e-07 3.21268342669e-07 20405743.0959 +UniRef50_UPI00035E0033 hypothetical protein 2.82478914101e-07 2.20990300734e-07 -24823707.7664 +UniRef50_I6T5B9 Transcriptional regulator 6.3447190306e-05 2.84113914307e-05 -14144381943.6 +UniRef50_UPI000370C159 hypothetical protein 1.90389779155e-06 1.13571134971e-07 -722776841.04 +UniRef50_A9VIS8 UPF0758 protein BcerKBAB4_4299 0.000143862482617 6.79762790384e-05 -30636191613.1 +UniRef50_M9VBP8 1.909709893e-06 3.09564666142e-05 11726532132.1 +UniRef50_A1A2G3 LexA repressor 4.38984494777e-07 1.08219407825e-07 -133533924.547 +UniRef50_UPI00037C10BF hypothetical protein 6.17365736436e-07 5.44869762894e-08 -227241062.77 +UniRef50_D9RNU6 Ferrichrome ABC transporter subunit 9.83453771375e-05 2.57531841779e-05 -29306359104.2 +UniRef50_D5CRQ8 TRAP dicarboxylate transporter, DctP subunit 0.000110907431185 1.79070892151e-05 -37545379295.8 +UniRef50_UPI00046CD945 hypothetical protein 1.56943776114e-07 4.57678010027e-07 121410100.655 +UniRef50_Q58070 Dihydroorotate dehydrogenase B ), catalytic subunit 1.49369079139e-05 2.91430959074e-06 -4853670476.95 +UniRef50_Q9RSA9 1.84740288181e-06 0.00030155549551 1.20995834826e+11 +UniRef50_V7ZGG5 OmpW family outer membrane protein 0.000199386561703 1.0242197868e-05 -76359900742.5 +UniRef50_UPI00029B3E2F replication factor A 1.03547792301e-07 4.10329426536e-07 123851510.375 +UniRef50_D7BHE9 Transcriptional activator domain protein 5.29331185719e-08 2.13967185638e-08 -12731631.6784 +UniRef50_D4HCR0 2.6185134639e-06 5.60652877988e-05 21577118664.7 +UniRef50_Q5HNV7 ComE operon protein 1, putative 7.19814745666e-05 8.71590521789e-06 -25541086701.9 +UniRef50_P46843 Bifunctional thioredoxin reductase thioredoxin 1.15315227933e-06 1.82375796055e-06 270731742.766 +UniRef50_R4LUX8 7.18453675114e-08 1.43733730672e-07 29022214.3774 +UniRef50_S9R328 Xanthine and CO dehydrogenase maturation factor, XdhC CoxF family 1.179493136e-07 1.83485201199e-07 26457642.0395 +UniRef50_R6BD47 4.01193421282e-07 3.15023159993e-07 -34787991.9104 +UniRef50_O28142 Phosphoserine phosphatase 4.81532526702e-08 9.37944470692e-08 18425910.2593 +UniRef50_UPI00046385E1 multidrug ABC transporter 7.29140141895e-08 6.4394726375e-07 230533130.214 +UniRef50_U2SYT7 1.5690564263e-07 2.88100012715e-07 52964777.1393 +UniRef50_L0FSR8 TolC family type I secretion outer membrane protein 7.26389583344e-06 2.94842672612e-06 -1742207835.39 +UniRef50_K7R3S2 6.46406434626e-07 1.44259095546e-07 -202723042.827 +UniRef50_S3P9S1 1.51907083638e-06 6.82094276177e-05 26923715415.3 +UniRef50_I7DPT5 9.24712400842e-05 1.84952450445e-05 -29865016985.1 +UniRef50_UPI0003641916 hypothetical protein 3.17732199461e-08 4.98579441679e-08 7301025.09286 +UniRef50_Q8CR25 2.9137438575e-05 1.42490690233e-05 -6010617488.86 +UniRef50_J6LH83 PE PGRS family protein 2.08491533149e-07 2.03255288594e-07 -2113936.1828 +UniRef50_H3VJS7 7.81287229804e-05 2.29869888127e-05 -22261394748.7 +UniRef50_A6M1M4 2.38915182824e-06 8.76730167469e-06 2574937361.71 +UniRef50_G0AAP1 Sulfate adenylyltransferase subunit 1 1.3291760171e-06 5.50238213934e-05 21677187245.8 +UniRef50_UPI00026276D2 inner membrane translocator 4.37298535183e-06 6.89946108793e-07 -1486888138.39 +UniRef50_E1Z5M0 4.7248663547e-07 1.34627942383e-06 352760871.304 +UniRef50_Q04PF0 Glutamate tRNA ligase 3.79225665873e-08 4.50381795668e-08 2872660.27821 +UniRef50_UPI0003F4A008 hypothetical protein TREMEDRAFT_32941 4.28269234913e-07 1.64444627915e-06 490985596.93 +UniRef50_UPI00046874E6 hypothetical protein 4.11671780792e-07 8.29003363121e-08 -132729066.616 +UniRef50_UPI0003815981 hypothetical protein 1.04319004556e-07 1.43914612839e-06 538886090.061 +UniRef50_Q899C3 Isoleucine tRNA ligase 2.77875881126e-06 1.26095067952e-05 3968793597.96 +UniRef50_UPI0003B62A8A hypothetical protein 2.08046378055e-06 7.18304745803e-07 -549920317.9 +UniRef50_A8FNY3 Enolase 7.77379841196e-08 1.02907234683e-06 384065356.411 +UniRef50_UPI000468DB65 leucyl tRNA synthetase 7.63843647986e-05 2.66581924649e-05 -20075065979.9 +UniRef50_B2TMH9 Autolytic lysozyme 7.46606065437e-06 5.14698973474e-05 17764888860.8 +UniRef50_UPI00041375E2 cation 5.24513749207e-05 1.44328094373e-05 -15348561425.9 +UniRef50_W4LU01 6.93622058191e-07 7.46572567789e-07 21376770.5005 +UniRef50_G5P4U0 Potassium efflux system KefA 5.24777478615e-06 2.29660863177e-06 -1191421991.4 +UniRef50_UPI00042B93D3 Ribosomal protein S9 isoform 1 3.43978094443e-07 7.36707639765e-07 158549736.78 +UniRef50_Q9RRE8 3.09414744966e-06 0.000252345060504 1.00625652253e+11 +UniRef50_I1E9S6 8.60398934553e-07 1.30538713199e-07 -294653527.753 +UniRef50_UPI0002FC4FA4 hypothetical protein 3.91877773919e-08 3.00965304628e-06 1199213280.76 +UniRef50_P77389 Inner membrane transport protein YdhP 4.76608150304e-05 0.000100764273687 21438517912.4 +UniRef50_UPI000475B66E phosphoenolpyruvate synthase 1.84126723554e-08 1.96088747194e-06 784200913.437 +UniRef50_B8IW50 7.74415896331e-08 7.21415818993e-08 -2139678.16054 +UniRef50_UPI0004717EC9 hypothetical protein, partial 1.21722485183e-07 2.68377987758e-07 59206626.0549 +UniRef50_S6AW69 1.51342128602e-06 1.21598484056e-06 -120078742.988 +UniRef50_Q1J212 Peptide chain release factor 2 5.22212461196e-06 0.000475139109057 1.8971125315e+11 +UniRef50_D2V1D7 5.85442293337e-07 2.54704061801e-07 -133523082.686 +UniRef50_Q92HI8 Pyruvate, phosphate dikinase 5.24655796765e-08 1.36269826333e-07 33832802.769 +UniRef50_T2E942 Helix turn helix domain protein 4.16873661651e-06 1.99089913611e-06 -879219715.909 +UniRef50_UPI0003B650F3 hypothetical protein 3.77435423094e-08 2.99446742807e-07 105652793.5 +UniRef50_A6M324 4.25371116535e-06 1.4582154319e-05 4169719245.36 +UniRef50_T3G5Y0 Ferrous iron transport protein B 3.63640057678e-06 1.32673064976e-05 3888114904.74 +UniRef50_Q15P31 2 C methyl D erythritol 4 phosphate cytidylyltransferase 5.37532063541e-08 1.08712708747e-07 22187825.5449 +UniRef50_Q3IY12 Thiamine import ATP binding protein ThiQ 8.71396073511e-08 2.34326223789e-07 59421043.2389 +UniRef50_I0E580 1.86753458811e-06 3.2162681675e-05 12230522642.2 +UniRef50_UPI000478031E 50S ribosomal protein L3 1.17381648547e-07 3.82009431765e-06 1494830541.91 +UniRef50_C6SQB8 2.75762954035e-05 9.20720011175e-06 -7415829183.45 +UniRef50_UPI0002F01DF0 hypothetical protein 8.04120350331e-08 3.1933107347e-07 96454547.6833 +UniRef50_B5F623 Uronate isomerase 7.42852274764e-08 5.1445997467e-05 20739390632.9 +UniRef50_G3ECR2 CRISPR associated endonuclease Cas1 6.04804628175e-05 3.11258378819e-05 -11850822308.3 +UniRef50_A0Q0N0 5 methyltetrahydrofolate homocysteine methyltransferase, putative 2.09702096469e-06 3.08217956529e-05 11596544034.3 +UniRef50_W1VEW5 5.51818055216e-07 1.810137117e-06 507998846.552 +UniRef50_P0AC06 Flagellar biosynthetic protein FliP 7.88631526036e-05 2.96154101091e-05 -19881917982.8 +UniRef50_V5PI53 Glyoxalase family protein 1.72374381514e-06 7.07011469337e-07 -410467324.708 +UniRef50_D8JGK5 RDD family protein 1.52007780746e-06 0.000103696193525 41249751757.3 +UniRef50_B9ECE2 4.1048444449e-06 5.20162021235e-07 -1447180283.43 +UniRef50_Q9ZMS7 Protein RecA 7.38798464809e-06 4.00306406329e-05 13178240791.5 +UniRef50_M9VGZ5 2.72718039927e-06 2.81490906634e-05 10263137135.5 +UniRef50_A3PKV8 Drug resistance transporter, EmrB QacA subfamily 2.61727535746e-06 4.02703752633e-06 569138287.3 +UniRef50_I9V7J9 Outer membrane protein HopL 3.20537210985e-07 4.18938497901e-05 16783656450.1 +UniRef50_S4MVA0 4.56681997051e-07 1.01133044218e-07 -143539475.335 +UniRef50_E4BBY5 2.0367949039e-06 3.22750497486e-06 480704267.302 +UniRef50_W9GWC0 Rrf2 family transcriptional regulator 2.96603612052e-07 4.65347506707e-07 68123980.9927 +UniRef50_Q06129 Anthranilate synthase component 2 5.79524916815e-06 3.56317779097e-05 12045372788.3 +UniRef50_UPI00036E37BC hypothetical protein 8.32017367443e-08 8.57557590806e-07 312616960.7 +UniRef50_W5E0V3 4.24582565453e-08 3.19105500648e-07 111685887.288 +UniRef50_B1IBC6 Fibronectin fibrinogen binding protein 5.40837646435e-06 2.25774426222e-05 6931362696.08 +UniRef50_Z0CP45 1.34563954941e-05 2.45415544476e-06 -4441739320.57 +UniRef50_T2LAG0 1.23626698192e-06 2.39194189197e-06 466560142.913 +UniRef50_UPI0003C1315E 1.03633091753e-07 6.34460281159e-08 -16224010.741 +UniRef50_P10518 Delta aminolevulinic acid dehydratase 1.6225866125e-07 2.48531422668e-07 34829372.4703 +UniRef50_UPI000367CE13 hypothetical protein 5.107248515e-08 6.01323641111e-07 222143144.002 +UniRef50_P39344 Gnt II system L idonate transporter 2.73277837594e-05 8.21525301176e-06 -7715963199.93 +UniRef50_B8C850 1.6390173704e-07 3.81970678606e-08 -50748517.5173 +UniRef50_W1G461 DNA replication and repair protein RecF 1.96550738776e-05 2.6134221699e-06 -6879923918.98 +UniRef50_Q6F2Y7 Chaperone protein ClpB1 4.62270879769e-05 0.000461674086875 1.67721051563e+11 +UniRef50_Y5GWB2 1.74480820116e-05 7.44695276172e-07 -6743362198.69 +UniRef50_M9RHC7 ABC transporter permease protein 6.26284837319e-05 1.44074977298e-05 -19467403787.1 +UniRef50_UPI0003B304AC phosphate ABC transporter ATP binding protein 9.51050573549e-08 2.15429035754e-07 48576266.6209 +UniRef50_G9NBA4 3.20632121494e-07 1.52155689239e-07 -68016003.1397 +UniRef50_UPI000237A937 two component hybrid sensor and regulator 1.18802098954e-07 7.62401606031e-08 -17182776.806 +UniRef50_Q9FE64 Elongation factor G, mitochondrial 1.1134442555e-07 9.25392944305e-08 -7591862.19785 +UniRef50_Q94JQ3 Serine hydroxymethyltransferase 3, chloroplastic 8.5698984447e-07 4.77148889033e-07 -153346454.883 +UniRef50_A6LTX4 1.4173441384e-06 4.99080931792e-06 1442651744.32 +UniRef50_Q08Q97 3.19454152306e-07 1.27109055325e-06 384187292.953 +UniRef50_O31703 Molybdopterin molybdenumtransferase 0.000207463389576 6.95586478596e-05 -55673836512.2 +UniRef50_V9GHA4 Magnesium and cobalt efflux protein CorC 2.08470993418e-07 5.0578786233e-06 1957765369.11 +UniRef50_Q5HMD2 HD domain protein 3.85699326821e-05 5.36481491767e-05 6087261029.39 +UniRef50_UPI00036F8E58 hypothetical protein 1.31532710347e-06 4.68161794405e-07 -342011031.157 +UniRef50_UPI000365B7D1 30S ribosomal protein S4, partial 4.22154676248e-07 1.73079630694e-06 528314685.148 +UniRef50_G0XAE5 Type IV conjugative transfer system protein TraN 4.9063336434e-08 3.31955929418e-08 -6406002.76691 +UniRef50_Q49XZ6 Superoxide dismutase [Mn Fe] 0.000100681801021 2.32986667241e-05 -31240520913.5 +UniRef50_A1TT20 Cytochrome c oxidase 1.36656929874e-05 2.15054293331e-06 -4648807383.62 +UniRef50_D3VAJ4 Complete genome segment 14 17 4.13987943052e-07 2.18658825764e-06 715620499.252 +UniRef50_D5V1H1 Type VI secretion protein, VC_A0114 family 3.59566170659e-08 6.75683525862e-08 12762045.5492 +UniRef50_UPI00037B97B7 hypothetical protein 8.84068114742e-07 5.51423137493e-07 -134292859.328 +UniRef50_A0A014PLF9 5.92909930107e-07 1.48416884679e-05 5752406747.89 +UniRef50_B2U7R1 NADH quinone oxidoreductase subunit A 1.51498658085e-07 1.80158061911e-06 666158336.446 +UniRef50_V5VFY5 Transport protein 6.99804344762e-06 6.34389698476e-05 22785894595.7 +UniRef50_N6UGZ5 6.06175308988e-08 1.8951735345e-07 52038440.1425 +UniRef50_Q6GI14 Amidophosphoribosyltransferase 0.000219170130705 9.24369691412e-05 -51163732514.2 +UniRef50_R7PYG7 2.84590018066e-05 1.96992145052e-05 -3536433628.25 +UniRef50_Q9ZJ81 NAD kinase 2.53914342281e-06 5.44052054655e-05 20938965714.8 +UniRef50_UPI0003B77512 2,5 diketo D gluconic acid reductase 1.23242435726e-07 8.02953834419e-07 274407832.649 +UniRef50_A4VV94 3.67681157978e-06 2.05437707963e-05 6809398416.57 +UniRef50_UPI000371E16C hypothetical protein 7.86283867833e-08 1.15286877482e-07 14799482.5453 +UniRef50_Q15QK1 S adenosylmethionine synthase 4.99801043612e-07 4.51885849153e-06 1622542811.11 +UniRef50_Q8DWE6 Constitutive fructose permease 7.97593717048e-05 3.92013325476e-06 -30617231214.4 +UniRef50_B1YK83 DNA polymerase IV 4.03216657662e-08 8.9660656987e-08 19918756.2133 +UniRef50_UPI00040FF8E8 hypothetical protein 4.5261071814e-07 1.02528447987e-06 231195425.108 +UniRef50_Q4L449 Putative antiporter subunit mnhG2 7.2777920158e-05 5.77091843037e-05 -6083433578.56 +UniRef50_UPI00003799C3 hypothetical protein 7.41147326252e-05 1.37434836273e-05 -24372614059.0 +UniRef50_A1BG26 Acetylglutamate kinase 9.35067243003e-08 5.65681464676e-08 -14912557.1584 +UniRef50_UPI000049D95F hypothetical protein SPOA0411 2.41555302613e-06 2.16286213806e-06 -102014412.38 +UniRef50_Q8DUE1 Ribonuclease HII 5.74401320404e-05 2.25460120716e-05 -14087184430.4 +UniRef50_S6C0Y4 Citrate transporter protein 4.94139679158e-05 2.05409685457e-05 -11656384157.3 +UniRef50_UPI00037DA3B2 hypothetical protein 2.35912782925e-07 2.35002673458e-07 -367422.360127 +UniRef50_P73241 Probable copper transporting ATPase PacS 8.07813878977e-08 1.08982552142e-07 11385156.0726 +UniRef50_Q6G960 Ribonuclease Z 0.000173046360132 7.68407166095e-05 -38839398866.0 +UniRef50_G4B7N4 3.51644692866e-07 1.58508526903e-06 497955096.614 +UniRef50_B9KWM7 2.38499322482e-05 3.87253328522e-06 -8065121111.62 +UniRef50_R7YC06 Cytosine deaminase 1.14863571635e-07 1.24431196007e-06 455972174.304 +UniRef50_A3PJF3 Binding protein dependent transport systems inner membrane component 2.55526062517e-05 7.15640530313e-06 -7426772069.72 +UniRef50_UPI00047E1F76 hypothetical protein 1.92925408497e-07 4.16244687592e-07 90156733.4064 +UniRef50_C1FNK7 3 oxoacyl [acyl carrier protein] synthase 3 1.33992589439e-06 1.57875633554e-07 -477208195.689 +UniRef50_UPI000376CB6F hypothetical protein 9.24467205415e-08 2.18438008864e-07 50864229.1826 +UniRef50_A6QAV3 Ni Fe hydrogenase, large subunit 8.42602653634e-07 2.68443002869e-05 10497204411.3 +UniRef50_X1DLQ6 Marine sediment metagenome DNA, contig 1.97553994276e-06 4.72158618194e-07 -606933489.292 +UniRef50_P12054 Protein rlx 6.46506702556e-06 1.36232399105e-06 -2060039980.73 +UniRef50_E7C7F3 3.93983570562e-07 2.34833252863e-07 -64250936.2491 +UniRef50_B7HHF8 3 isopropylmalate dehydratase small subunit 0.000143862411204 0.000113115955951 -12412721287.1 +UniRef50_P39277 Inner membrane protein YjeH 2.85046034572e-05 9.77585425713e-06 -7561025879.68 +UniRef50_M0NFH7 4.11964339439e-06 2.68982449658e-06 -577235434.897 +UniRef50_A0A038J3C7 1.63995289222e-06 7.67322200082e-07 -352291718.799 +UniRef50_Q65JD4 5.8574639805e-07 3.09772767695e-06 1014117667.77 +UniRef50_Q5RKZ7-2 Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1 4.10905180925e-08 1.48288518579e-07 43277148.2636 +UniRef50_F5X0E4 Major facilitator superfamily protein 4.0182457739e-05 5.19479799796e-06 -14124947584.3 +UniRef50_D3FUC6 [Ni Fe] hydrogenase, small subunit 6.2334806342e-06 2.87833180933e-05 9103646099.86 +UniRef50_R6MP39 3.81623446305e-08 3.65002048045e-07 131949199.042 +UniRef50_UPI000056DCC0 L serine dehydratase 1, truncated, partial 2.33622974773e-07 5.95756239686e-07 146197642.92 +UniRef50_Q28VI8 Lytic murein transglycosylase 1.4966798453e-05 3.38570115544e-06 -4675431095.09 +UniRef50_A5F5D8 Cytosol aminopeptidase 4.4487187437e-05 9.39216501975e-06 -14168291214.2 +UniRef50_C5MZL4 0.000167077574453 3.87404614283e-05 -51811267401.7 +UniRef50_UPI00034529EA chromate transporter 2.60427375488e-07 1.40738699848e-06 463041674.578 +UniRef50_Q49X30 Ribosome biogenesis GTPase A 5.99491138894e-05 2.22816050473e-05 -15206835551.9 +UniRef50_UPI000225AC87 reverse transcriptase 4.32196796076e-08 1.02104599086e-07 23772564.5927 +UniRef50_Q28V25 Holo [acyl carrier protein] synthase 3.30069552253e-07 1.08950846025e-06 306594806.522 +UniRef50_P45423 4.26110090082e-05 2.27332936877e-05 -8024877601.88 +UniRef50_P0DM86 Clamp binding protein CrfC 3.81476418938e-05 5.73461853341e-06 -13085535283.1 +UniRef50_P45421 2.64557867288e-05 6.44598433305e-05 15342704012.3 +UniRef50_P45420 1.92550147241e-05 1.41202944665e-05 -2072949578.1 +UniRef50_UPI0003461C99 hypothetical protein 4.52495170848e-08 3.51389023307e-06 1400332822.05 +UniRef50_Q6FA27 7.60038903732e-06 3.09830184933e-05 9439854448.52 +UniRef50_UPI0004759495 membrane protein 7.31557759592e-08 1.90220907522e-07 47260630.1627 +UniRef50_UPI0002FC887C hypothetical protein 4.35669775135e-08 2.96483165427e-08 -5619134.23509 +UniRef50_C3ATQ4 Glycosyltransferase involved in cell wall biogenesis 9.06228074225e-06 5.19385625036e-06 -1561730438.28 +UniRef50_B5I3Q1 Predicted protein 1.15598881123e-07 1.15917810826e-06 421305740.154 +UniRef50_C9TPX2 Pirin family protein 4.87076279894e-08 1.32124614051e-07 33676460.9146 +UniRef50_X1YG35 5.2866770804e-08 1.38339065776e-08 -15758046.2753 +UniRef50_P21338 Ribonuclease I 1.9279223908e-05 1.65032781271e-05 -1120683376.43 +UniRef50_Q00593 Alcohol dehydrogenase [acceptor] 5.96208900771e-07 6.4106662388e-07 18109613.2853 +UniRef50_UPI0003627344 hypothetical protein 2.60080386324e-06 1.09582948681e-06 -607576623.877 +UniRef50_UPI0003B5CBDB MULTISPECIES 5.15241744015e-07 1.17133485173e-06 264872838.752 +UniRef50_U0DBB7 Flagellar transcriptional activator flhC 4.88128433862e-06 3.85195702429e-05 13580188807.8 +UniRef50_D5WDT4 1.44232101584e-05 1.10605035407e-05 -1357565926.62 +UniRef50_UPI0003B41656 hypothetical protein, partial 3.21010482948e-07 3.67301323194e-07 18688180.2598 +UniRef50_Q9KWJ8 Putative acetyltransferase 8.40620994066e-05 4.23899576834e-06 -32225566478.4 +UniRef50_UPI0003B56B90 DNA mismatch repair protein MutS 2.4647654562e-08 9.8434269709e-08 29788561.9984 +UniRef50_M4S5A3 1.17888270028e-06 4.63055807142e-07 -288988100.944 +UniRef50_G7SNL0 PfkB family carbohydrate kinase 1.62011154012e-06 2.21282796356e-05 8279399123.68 +UniRef50_UPI00037CCDB1 hypothetical protein 1.29467247214e-07 3.34314783826e-07 82699464.2922 +UniRef50_Q74RF8 Maltose transport system permease protein MalG 1.36575488815e-05 4.37593333014e-06 -3747102096.31 +UniRef50_O31660 Putative membrane bound acyltransferase YkrP 8.27898860164e-08 9.58681120098e-08 5279840.32142 +UniRef50_Q1J0Y6 DNA topoisomerase 3.99079970787e-06 0.000466147665679 1.86578398095e+11 +UniRef50_UPI00036A1EC1 hypothetical protein 4.28174133245e-08 6.3277941868e-07 238174901.21 +UniRef50_UPI000465DC9F hypothetical protein 2.10184779657e-07 3.39873337444e-07 52356862.2362 +UniRef50_D2J7W9 Replication initiation protein 1.73443353321e-05 5.07070570232e-06 -4955014895.92 +UniRef50_P21175 Leucine , isoleucine , valine , threonine , and alanine binding protein 1.66608576175e-05 7.75995166179e-06 -3593404960.72 +UniRef50_P44591 Protein translocase subunit SecD 3.24027811373e-05 7.15217541439e-06 -10193979390.1 +UniRef50_U3STI1 GntR family transcriptional regulator 2.24441723539e-05 2.07754015034e-05 -673703270.468 +UniRef50_B7VAJ2 8.45117885494e-06 1.7897982133e-05 3813790408.67 +UniRef50_UPI0002F13DE3 hypothetical protein 1.78044829461e-06 2.69720014025e-06 370103969.895 +UniRef50_D4KNP6 Arginine decarboxylase 4.56528343263e-06 3.21511711768e-05 11136761399.2 +UniRef50_I4XMD7 1.4444746131e-05 1.4798106935e-05 142656092.799 +UniRef50_M8HEB4 Bacteriophage replication gene A protein (Fragment) 6.1921216203e-06 6.44626569679e-05 23524530179.7 +UniRef50_P24193 Hydrogenase isoenzymes formation protein HypE 4.01322987455e-05 2.73864023365e-06 -15096278813.0 +UniRef50_UPI0004093BB4 AsnC family transcriptional regulator 6.20507623063e-07 5.79694823638e-07 -16476627.9572 +UniRef50_UPI00036A6233 hypothetical protein 4.79809914312e-08 1.20738801511e-07 29373220.7679 +UniRef50_G3XZQ5 3.35347678257e-08 2.6558515391e-06 1058661460.01 +UniRef50_A0RG68 5.55544956797e-06 1.55185937777e-05 4022243579.0 +UniRef50_Q5M378 6.09339214724e-05 7.5248590083e-05 5779007378.84 +UniRef50_D8LYQ1 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 5.63809521599e-07 1.13898802205e-05 4370617591.97 +UniRef50_UPI000424B474 DEAD DEAH box helicase 2.29932718252e-07 8.64459789658e-07 256166365.249 +UniRef50_Q1I665 1.16808923219e-07 2.00381453533e-07 33739256.038 +UniRef50_C1DR24 Ribonuclease E 3.12284198896e-06 5.94198602059e-07 -1020844365.24 +UniRef50_Q045P5 UPF0297 protein LGAS_0422 1.93398865863e-05 2.19736482839e-05 1063281917.21 +UniRef50_U9DMQ5 7.34408538612e-07 1.15508489646e-06 169832207.943 +UniRef50_UPI00036D4795 hypothetical protein 1.38231174191e-07 2.80312899246e-07 57360135.9435 +UniRef50_UPI0002FA6B33 hypothetical protein 6.81086224474e-07 7.97087729067e-07 46831230.9027 +UniRef50_Q04U59 1 deoxy D xylulose 5 phosphate synthase 2.02223441495e-08 5.56967297079e-07 216690524.099 +UniRef50_Q8YHG4 Glutamate tRNA ligase 1 0.000131609789122 1.60531151154e-05 -46651647336.5 +UniRef50_U8XD19 3.10707576748e-06 4.43420006233e-06 535776363.477 +UniRef50_A6W6P9 3 dehydroquinate dehydratase 6.70523283263e-07 1.95096756486e-07 -191935522.999 +UniRef50_UPI000464ACF3 hypothetical protein 4.57056753325e-07 1.36335307615e-07 -129479183.328 +UniRef50_U7DNG8 Peptidase M19 2.94047659564e-06 7.5159611247e-06 1847179251.89 +UniRef50_P30900 Acetylornithine aminotransferase 2.69185039001e-05 8.94567252223e-06 -7255852578.7 +UniRef50_R6KIL0 YihY family protein 7.09263862143e-06 2.63847754524e-05 7788472379.82 +UniRef50_A8AZM1 30S ribosomal protein S19 9.18664690004e-06 5.3579068465e-05 17921765342.1 +UniRef50_Q2NI56 tRNA N(2)) dimethyltransferase 3.42774010115e-05 4.81172245221e-06 -11895656018.9 +UniRef50_UPI00037026C5 hypothetical protein 1.62616058948e-06 1.32043549597e-06 -123424971.919 +UniRef50_Q49UJ3 1.43804186229e-05 1.03017455301e-05 -1646610378.51 +UniRef50_A7WZX4 8.69873462927e-05 2.61914243687e-05 -24544059730.6 +UniRef50_A9M0A0 Phosphoenolpyruvate protein phosphotransferase 6.80972920355e-07 2.6790628682e-05 10540788432.5 +UniRef50_B0RZ23 Trans 2 enoyl CoA reductase 3.56679674504e-06 4.90584506905e-05 18365538943.2 +UniRef50_E6MUK3 Drug resistance transporter, Bcr CflA subfamily protein 1.24857548682e-06 3.69366187067e-05 14407700989.4 +UniRef50_UPI000365D2A7 hypothetical protein 3.72400375908e-07 4.91706057467e-07 48165167.6907 +UniRef50_UPI00036DCC61 hypothetical protein 2.7307405136e-07 3.37238188507e-07 25903849.5487 +UniRef50_M1MS56 Stage II sporulation protein D 1.2070110078e-05 1.3717719382e-05 665160094.465 +UniRef50_Q03287 Urease accessory protein UreG 2.55752878591e-05 1.9372763282e-05 -2504035285.31 +UniRef50_UPI0003A320E0 MULTISPECIES 8.80359086486e-08 2.67295452577e-07 72369277.6457 +UniRef50_UPI000363A104 potassium transporter Kef 2.91810996485e-07 2.93283920533e-07 594637.512988 +UniRef50_P76559 5.30910441452e-05 8.33073713629e-06 -18070285210.2 +UniRef50_D3E189 3.54871639314e-05 7.11729403291e-06 -11453264615.5 +UniRef50_UPI000368D15E MULTISPECIES 5.1578915936e-08 8.94352852756e-08 15283080.8523 +UniRef50_M9SFA8 3.51775501312e-05 4.59068850833e-06 -12348291380.2 +UniRef50_Q5HQ84 3.64644958534e-05 3.77000049185e-05 498790170.982 +UniRef50_Q8WY44 Quaking protein 3 1.32447903772e-06 2.51176225008e-06 479320802.433 +UniRef50_W5IC94 1.19836821857e-06 3.81057778383e-06 1054581056.91 +UniRef50_Q2G222 N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979 0.000110021405262 2.86222743656e-05 -32861828022.5 +UniRef50_P43796 Glucose 1 phosphate adenylyltransferase 1.11128597521e-07 8.18582933035e-08 -11816780.9996 +UniRef50_C4W8W1 Pyruvate carboxylase 0.000111411259019 1.55920699933e-05 -38683382443.3 +UniRef50_P47295 Purine nucleoside phosphorylase DeoD type 2.66123177923e-07 7.20521711935e-07 183446264.278 +UniRef50_K1YAY7 3.29751952152e-07 7.9831568052e-06 3089773457.02 +UniRef50_D3QIQ9 8.44810669929e-05 1.7396661887e-05 -27082797559.5 +UniRef50_B2TKN9 Xanthine permease 3.87950749033e-06 1.03611096425e-05 2616702327.03 +UniRef50_Q49YF9 PTS system N acetylglucosamine specific IIBC component 0.00017311150531 5.84158490564e-05 -46304043903.7 +UniRef50_UPI000289252A selenocysteine specific translation elongation factor 1.23688538098e-08 2.5005833395e-08 5101703.73172 +UniRef50_Q8YXQ7 Carbamoyl phosphate synthase small chain 1.10502530704e-07 7.45470259441e-08 -14515678.4952 +UniRef50_P0ADC5 Lipoprotein releasing system transmembrane protein LolC 5.87194401451e-05 1.12585139528e-05 -19160558314.9 +UniRef50_E6EBC0 5.19764480239e-07 3.13007685017e-05 12426669048.9 +UniRef50_K4SCN9 tRNA lysidine synthase 4.4831072853e-05 1.25666683062e-05 -13025536044.3 +UniRef50_Q9ZL53 Cadmium, zinc and cobalt transporting ATPase 2.47158633229e-06 5.03704663323e-05 19337365641.4 +UniRef50_Q3DT06 1.54305198432e-05 9.04577469527e-06 -2577599965.85 +UniRef50_Q2JTX6 Dihydroxy acid dehydratase 2.26103009272e-07 2.70190032162e-07 17798472.1493 +UniRef50_K1JKI8 6.94480230649e-07 1.32614486612e-06 255010764.736 +UniRef50_P26982 Periplasmic serine endoprotease DegP 5.32637181899e-05 5.97672227318e-06 -19090340528.3 +UniRef50_U5MLQ0 Y_Y_Y domain containing protein 4.66536382436e-06 1.29428799319e-05 3341734829.16 +UniRef50_P30793-4 Isoform GCH 4 of GTP cyclohydrolase 1 6.63232875033e-07 4.35250816127e-07 -92039154.8348 +UniRef50_A0A059DR32 2.19908288664e-06 7.25352054249e-07 -594963221.747 +UniRef50_A0A009W0R2 Valine tRNA ligase 3.99293470222e-06 5.30311681055e-05 19797336591.7 +UniRef50_V6AHQ4 Putative serine threonine protein kinase 1.37395378527e-06 3.89469764891e-06 1017655230.76 +UniRef50_F2I2C3 4.33638252333e-07 2.07878740472e-07 -91141885.319 +UniRef50_Q6A5H2 Alanine racemase 1.69783803081e-06 4.82403603688e-05 18789787408.8 +UniRef50_UPI00047855C0 excinuclease ABC subunit A 1.59570089508e-07 4.22236653499e-07 106041715.164 +UniRef50_Q2IMD4 Chorismate synthase 1.42673675655e-07 2.28467983723e-06 864754172.797 +UniRef50_N6VDK8 5.66944071958e-06 3.9838624311e-07 -2127989375.26 +UniRef50_N9IGS7 2.11924383038e-06 1.55653651078e-05 5428364162.15 +UniRef50_P42909 N acetylgalactosamine specific phosphotransferase enzyme IIB component 1 0.000123730277007 5.57831314121e-05 -27431096481.9 +UniRef50_Q1AWD7 Glyoxalase bleomycin resistance protein dioxygenase 5.13125152715e-06 3.72247947718e-06 -568738564.15 +UniRef50_X1B0B7 Marine sediment metagenome DNA, contig 1.07263418938e-07 4.1984474819e-07 126192918.423 +UniRef50_I4D272 Chemotaxis response regulator protein glutamate methylesterase 5.01375338616e-06 4.19719905432e-06 -329653004.012 +UniRef50_D3NTM9 Transcriptional regulator 2.04046480461e-06 7.12341827277e-06 2052050689.95 +UniRef50_Q8Y270 Aspartate tRNA ligase 7.05410432456e-05 9.68559336873e-05 10623644191.3 +UniRef50_Q2YZ70 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.000252442334925 4.98605850974e-05 -81784738363.2 +UniRef50_B1SBK3 Oligopeptide ABC transporter, permease protein 6.74433088391e-08 1.00990295505e-07 13543330.1848 +UniRef50_C1MZS3 Predicted protein 4.53640802699e-08 8.59075146632e-08 16367881.9885 +UniRef50_H3CH15 5.52819833876e-08 7.82557029634e-08 9274772.51199 +UniRef50_D3QHC2 Membrane protein, putative 0.000207415150827 4.54391019595e-05 -65391718597.6 +UniRef50_K4R856 2.94297197537e-07 1.23477368026e-06 379681897.02 +UniRef50_U5MZX2 Alpha beta fold family hydrolase 3.71083740584e-06 1.35652406658e-05 3978343523.17 +UniRef50_C1ABB1 2.49613650782e-07 1.92738328928e-07 -22961265.3711 +UniRef50_Q3JC02 Threonine tRNA ligase 9.59226062798e-08 2.48348562583e-06 963888489.685 +UniRef50_UPI00045E74AA hypothetical protein 8.1091788964e-08 2.71032949909e-07 76681577.5136 +UniRef50_B4EC93 9.52663504457e-05 1.13805149632e-05 -33865741179.2 +UniRef50_H1D9R7 2.98187300953e-07 6.83852419866e-07 155697741.148 +UniRef50_B7I2L4 Colicin V producing membrane protein 1.03815856369e-05 0.00015817159874 59664641877.1 +UniRef50_B9KS14 Chemotaxis histidine protein kinase 6.0690048435e-05 1.15404037504e-05 -19842314693.1 +UniRef50_UPI00037A03B5 hypothetical protein 9.8871362505e-08 1.16849658402e-07 7258058.67212 +UniRef50_A7ZKB3 Probable malonic semialdehyde reductase RutE 7.90727699528e-06 1.33455152757e-05 2195483528.49 +UniRef50_UPI0003656A74 hypothetical protein 6.96183999616e-07 4.92516421154e-07 -82223100.7073 +UniRef50_E0XZI6 7.17118028029e-07 7.55313255947e-07 15419882.2187 +UniRef50_I1QQ98 7.88460009933e-07 5.0338074749e-06 1713898867.88 +UniRef50_D1A708 2.72122660965e-08 7.02785452201e-08 17386385.3649 +UniRef50_O69787 Choline sulfatase 5.55770156902e-05 4.10673646541e-06 -20779183334.4 +UniRef50_U3T620 Long chain acyl CoA synthetase 3.70681660183e-06 6.09167310279e-05 23096344498.4 +UniRef50_K1VAT6 1.18285596994e-07 7.55107892356e-08 -17268714.798 +UniRef50_UPI000465DCA9 hypothetical protein 8.83373348496e-07 1.20656737369e-07 -307918055.497 +UniRef50_UPI00036A9D7D hypothetical protein 2.63653153162e-06 5.51676206309e-07 -841681678.879 +UniRef50_O07137 Probable enoyl CoA hydratase echA8 4.71163298905e-06 4.61620669722e-05 16734048853.0 +UniRef50_Q2W5V5 Chemotaxis response regulator protein glutamate methylesterase 2 6.5460189545e-07 9.91765284611e-08 -224232036.489 +UniRef50_UPI00029AB2EF hypothetical protein 1.16398977183e-06 1.84261250266e-07 -395528426.776 +UniRef50_F0G430 3.53112488374e-06 1.27943017037e-06 -909036787.189 +UniRef50_Q1DCX8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.66804979553e-07 1.12775963202e-07 -21812176.9115 +UniRef50_P0DA52 DegV domain containing protein SpyM3_0586 1.34977111625e-06 4.6186328906e-05 18101068586.2 +UniRef50_E2PWJ8 Aldo keto reductase 5.14549620698e-08 3.70125180038e-07 128651077.517 +UniRef50_F5TKP9 Nitrate reductase, alpha subunit 9.56775220481e-07 4.73308589655e-05 18721786681.9 +UniRef50_A4WR54 NnrS family protein 2.37297096137e-05 4.65017135201e-06 -7702643728.51 +UniRef50_P30143 6.12157431953e-05 5.52812701731e-05 -2395819583.24 +UniRef50_P69857 Probable N acetylneuraminic acid outer membrane channel protein NanC 4.54660310222e-05 7.33960937588e-06 -15392104282.4 +UniRef50_M9VJS8 Cof family hydrolase 5.32648225497e-06 7.46873457742e-05 28001831756.2 +UniRef50_B1B3K1 Truncated Pre protein 5.45145342635e-05 1.48254952002e-05 -16022952109.1 +UniRef50_F2FAF1 2.02345101454e-08 2.3859709144e-08 1463537.32193 +UniRef50_UPI0004664D96 XRE family transcriptional regulator 2.46290359315e-06 3.52250112475e-07 -852096710.777 +UniRef50_UPI0004711A28 hypothetical protein 1.14672290765e-07 1.25737174151e-06 461321790.763 +UniRef50_E1WQ62 0.000171012884395 2.22396320524e-05 -60061587624.0 +UniRef50_F7WET4 4.77342769245e-07 3.66536805477e-07 -44733727.3152 +UniRef50_X5K411 Iron compound ABC transporter,iron compound binding protein 5.78736389175e-05 1.63866177154e-05 -16748819562.3 +UniRef50_Q0TPX5 Ribose import ATP binding protein RbsA 3.80199254595e-07 1.03111528348e-07 -111863715.335 +UniRef50_R7ESR9 6.95894858202e-05 0.000109566129863 16139061768.7 +UniRef50_M1LNN1 Tex like protein 5.81701658506e-06 1.64968101942e-06 -1682404506.81 +UniRef50_Q8E5K2 Phosphate binding protein PstS 1 4.9805220487e-05 6.57098481318e-06 -17454191485.2 +UniRef50_D3QES6 0.000207165657957 5.18687304853e-05 -62695275328.0 +UniRef50_UPI0002EE51BE hypothetical protein 5.33798360271e-07 3.08815209014e-07 -90828459.0162 +UniRef50_S5CWD7 AraC type DNA binding domain containing protein 1.35949335724e-06 9.92055672599e-05 39501660740.9 +UniRef50_UPI0003B77367 2Fe 2S ferredoxin 1.60640513466e-07 2.71336140289e-07 44689182.9365 +UniRef50_D3QES1 8.35135547352e-05 6.44126433336e-05 -7711272327.37 +UniRef50_D3E1P1 HEAT repeat containing protein 1.59135696724e-05 5.08650190886e-06 -4371020119.19 +UniRef50_P95695 Capsular polysaccharide type 5 biosynthesis protein cap5A 9.05800005216e-05 1.97698996541e-05 -28586906657.9 +UniRef50_P45855 Acetyl CoA acetyltransferase 1.07338570887e-07 8.44051913685e-07 297420216.977 +UniRef50_D7A4H7 ABC transporter related protein 0.000172538992683 7.34881175199e-05 -39988053794.3 +UniRef50_Q7NC65 Glycerol kinase 2.83427246406e-07 9.60250531467e-07 273241865.735 +UniRef50_UPI0003499E7A hypothetical protein 8.51126571887e-08 7.39442646445e-08 -4508817.12168 +UniRef50_A0A024YRW3 4.92310265064e-07 3.299353095e-07 -65552762.126 +UniRef50_UPI0002E76F72 hypothetical protein 5.19828160163e-08 6.07579989415e-08 3542649.03051 +UniRef50_UPI00035075E1 PREDICTED 3.62874767781e-08 2.14123214387e-07 71794469.5627 +UniRef50_A6UBX6 Binding protein dependent transport systems inner membrane component 9.33859196944e-06 3.66853049924e-06 -2289073395.0 +UniRef50_A0A011UHJ8 5.87586275919e-06 1.79161012056e-06 -1648862909.63 +UniRef50_Q45480 9.95960533072e-05 9.52466622444e-05 -1755902545.08 +UniRef50_A4X0G8 1.51257975366e-05 2.91372662474e-06 -4930162886.1 +UniRef50_Q5SKG5 Phosphomethylpyrimidine synthase 2.95026320403e-05 6.73701378576e-06 -9190759454.89 +UniRef50_UPI0004701620 50S ribosomal protein L10 4.04553261041e-06 1.57544053966e-06 -997206480.4 +UniRef50_F5ZH68 3.87807960127e-05 1.29367198408e-05 -10433570693.1 +UniRef50_M1V0X7 7.11342943796e-07 7.48361636682e-05 29925099740.3 +UniRef50_Q0KDG3 Methionine import ATP binding protein MetN 3.44187151019e-06 1.3100052143e-07 -1336639247.12 +UniRef50_P16686 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH 3.88580003638e-05 2.45950156536e-05 -5758141954.01 +UniRef50_Q9RXL0 6.36212340763e-06 0.000133917641875 51495728087.4 +UniRef50_A5UNK7 5.89512978523e-06 2.71347661734e-06 -1284472427.15 +UniRef50_Q15W23 1.27987922128e-07 3.66075397165e-07 96118835.3343 +UniRef50_UPI000388FF1B PREDICTED 2.31538454072e-07 2.62604676112e-07 12541815.063 +UniRef50_C5N3N0 5.72857423693e-05 3.12792273519e-05 -10499149248.4 +UniRef50_Q03GN4 Pyridine nucleotide disulfide oxidoreductase 1.6529382669e-06 1.92048978724e-05 7085941479.51 +UniRef50_UPI00047DF1C1 cell division protein FtsX 4.11287164659e-08 4.72700949014e-07 174231006.266 +UniRef50_G2TDB8 4.13175564478e-07 1.49999208339e-07 -106247524.51 +UniRef50_UPI0002D2E18F hypothetical protein 8.74082148297e-08 4.63029881582e-07 151643076.264 +UniRef50_O64363 Protein gp55 3.21099709094e-05 1.11440266111e-05 -8464208994.29 +UniRef50_UPI00036196C8 hypothetical protein 1.01666981603e-06 4.97676009994e-08 -390350289.432 +UniRef50_Q8FW95 Bacterioferritin 0.000247829149277 1.68100562141e-05 -93265242792.6 +UniRef50_A7FHG9 Vitamin B12 import system permease protein BtuC 1.70978911264e-05 1.70186117483e-05 -32006057.8063 +UniRef50_Q39586 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.05749683449e-08 3.42353427571e-08 5514860.78185 +UniRef50_Q2RGX1 Xylose binding protein 1.88020839024e-05 1.8228808535e-05 -231438300.699 +UniRef50_Q49115 Protein MeaA 7.8315160999e-05 1.58702216567e-05 -25209788298.1 +UniRef50_UPI000475C41D siderophore ABC transporter permease 1.4107067744e-07 3.08506752192e-07 67595998.0491 +UniRef50_X1GH09 Marine sediment metagenome DNA, contig 3.45097630158e-07 2.04766895538e-05 8127370701.97 +UniRef50_N6JKR1 8.41893544581e-07 3.11524261714e-06 917778917.723 +UniRef50_Q1J1Q7 Cobalamin biosynthesis CbiX protein 1.88825826221e-06 7.02591279155e-05 27602159084.0 +UniRef50_I1DXB2 9.99184141722e-07 2.92997914219e-07 -285096045.922 +UniRef50_Q7DDL5 Cysteine synthase 3.58904571049e-07 2.64378980423e-05 10528409689.6 +UniRef50_M9VH79 Transcriptional regulator 1.79755232787e-06 5.56785735975e-05 21752429481.0 +UniRef50_UPI00037331DA hypothetical protein 1.15380829852e-08 2.5004181098e-08 5436429.05574 +UniRef50_A5UMZ2 3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase 4.02454548836e-05 9.08621513235e-06 -12579367454.4 +UniRef50_A5N458 DNA polymerase III subunit beta 5.37150175013e-06 2.20935190916e-06 -1276598694.74 +UniRef50_Q5HL55 Copper chaperone CopZ 4.46845542905e-05 5.0022406156e-05 2154956300.91 +UniRef50_P39408 2.17222767686e-05 1.88028211541e-05 -1178620057.32 +UniRef50_UPI00029CCE10 50S ribosomal protein L21, partial 1.35942131808e-07 5.6058032253e-06 2208250046.19 +UniRef50_C4AM88 Cytosolic 5 nucleotidase 1B 6.8116097021e-07 8.16826696933e-07 54769918.6838 +UniRef50_UPI00047DBA67 hypothetical protein 6.17916438402e-07 3.1062978316e-07 -124055393.552 +UniRef50_G5NWB0 NADH quinone oxidoreductase subunit N 2.7900712293e-05 5.80117808205e-06 -8921853152.72 +UniRef50_UPI000347E3AB sodium 1.556958875e-07 2.07716709969e-05 8322922138.13 +UniRef50_Q28LX4 4.92046420817e-07 9.38285369238e-07 180152139.445 +UniRef50_A4WTF8 Malto oligosyltrehalose synthase 4.52726398165e-05 1.25455810495e-05 -13212315230.4 +UniRef50_P44311 Glucose 6 phosphate 1 dehydrogenase 6.07266510379e-08 6.63387367506e-08 2265667.87025 +UniRef50_C6D021 Uronate isomerase 3.37459924055e-06 1.56282554038e-05 4946951362.35 +UniRef50_P45539 Putative fructoselysine transporter FrlA 3.78655820717e-05 9.44937936194e-06 -11471969740.0 +UniRef50_C2UPC1 DNA gyrase subunit B 2.15737687866e-07 1.17491524122e-06 387231748.721 +UniRef50_A3PPA1 2.03039516774e-05 1.85020774163e-05 -727438750.69 +UniRef50_A3PPA7 3.09670287911e-06 2.10918210748e-06 -398674253.75 +UniRef50_P0ACD2 Putative colanic acid biosynthesis acetyltransferase WcaF 3.6054559712e-05 6.68147992546e-06 -11858272758.0 +UniRef50_D7GHA6 Iron ABC transporter, permease protein 4.33682876624e-06 5.77877302966e-05 21578784864.1 +UniRef50_Q7VI92 Methionine import ATP binding protein MetN 9.18695071689e-08 2.65565856241e-05 10684130655.0 +UniRef50_A1KVH9 DNA repair protein RecO 1.71584540393e-06 7.34020425798e-05 28940597488.5 +UniRef50_Q3IX14 7.77550238002e-05 3.29417064268e-05 -18091686144.9 +UniRef50_K7UZK8 3.4063205305e-07 2.85198857237e-06 1013865444.66 +UniRef50_S5Z0P9 Transposase 5.65918750495e-07 2.94004476166e-07 -109775129.31 +UniRef50_D8TPB8 3.49749378825e-07 4.06098790234e-07 22748948.8709 +UniRef50_UPI00031039A1 DNA invertase 1.6233687908e-06 4.17393587879e-07 -486866988.399 +UniRef50_S9S3Z7 1.11404374658e-06 6.4709221319e-07 -188514064.169 +UniRef50_Q8DV78 5.0156333377e-05 3.87411300695e-05 -4608457655.53 +UniRef50_B9DK54 Predicted membrane protein with CBS domains 0.000239320010253 4.22550716251e-05 -79557533982.9 +UniRef50_UPI00029AC90B hypothetical protein 1.64690183833e-07 3.28491854897e-07 66128744.6811 +UniRef50_D0K826 Ribose operon repressor, putative 0.000178943232175 5.56425152529e-05 -49778012491.4 +UniRef50_UPI0003B6DD73 amno acid ABC transporter ATPase 3.51032536031e-07 2.86882690501e-07 -25898079.8476 +UniRef50_Q8DV75 8.29851047201e-05 2.49235352567e-05 -23440168088.0 +UniRef50_E8Q7C4 6.68398697518e-05 8.30972426397e-05 6563300935.24 +UniRef50_Q8CQ71 Arsenical pump membrane protein 3.86007487421e-05 2.2506150417e-05 -6497586846.77 +UniRef50_UPI00047661F3 Putrescine importer PuuP 3.99629675192e-08 4.27432865037e-07 156426352.418 +UniRef50_P26162 Magnesium chelatase subunit H 4.75679967391e-05 1.43539390114e-05 -13408922687.0 +UniRef50_Q930T2 4 deoxy L threo 5 hexosulose uronate ketol isomerase 1 1.04637076893e-07 1.40142091738e-07 14333810.1885 +UniRef50_A3PNN7 Sugar transferase 3.99939854399e-05 2.10060556968e-05 -7665660245.39 +UniRef50_Q6ZN04-3 Isoform 2 of RNA binding protein MEX3B 2.86698219379e-06 5.73959037861e-06 1159707175.08 +UniRef50_UPI000225F341 ParB family protein 1.17160470934e-06 1.82058578763e-07 -399491916.01 +UniRef50_M9R8I3 Flagellar biosynthesis protein FlhA 4.33600736216e-05 7.4863357376e-06 -14482668204.0 +UniRef50_UPI0003758B1C hypothetical protein 1.25365863945e-07 7.18218987959e-07 239342081.29 +UniRef50_A3PQH3 6.66653248337e-05 9.72106413351e-06 -22989096829.3 +UniRef50_P22787 4.71206990072e-05 1.10548619815e-05 -14560220984.9 +UniRef50_UPI00047460D1 ABC transporter permease 6.31621497939e-08 1.72100590185e-07 43979785.2108 +UniRef50_Q1IXG7 Thioesterase superfamily 1.41745435306e-07 6.37774280707e-05 25690505977.6 +UniRef50_A0A024RXJ7 1.7790976437e-06 3.87450017475e-07 -561825224.142 +UniRef50_P0CI61 Catabolic 3 dehydroquinase 1.02793459241e-06 9.03450939924e-07 -50255578.0948 +UniRef50_P26459 Cytochrome bd II ubiquinol oxidase subunit 1 1.75421188624e-05 2.27931341553e-06 -6161781854.6 +UniRef50_D8U5B8 1.27163568037e-08 4.98955651535e-08 15009702.651 +UniRef50_Q1J0Q8 Glycolate oxidase subunit, GlcD 8.02024055691e-07 0.000138427048682 55560911290.5 +UniRef50_UPI0003B67F78 large conductance mechanosensitive channel protein MscL 2.54837408769e-06 3.52154098304e-06 392879417.754 +UniRef50_O25963 UDP N acetylenolpyruvoylglucosamine reductase 1.45373294809e-06 2.49288924385e-05 9477209958.88 +UniRef50_UPI00041D354E MarR family transcriptional regulator 1.62709523456e-07 9.52822450168e-07 318978284.29 +UniRef50_UPI00034D3A31 hypothetical protein 3.342866195e-08 1.56092428777e-07 49520867.9217 +UniRef50_D3QEW6 Two component sensor histidine kinase 8.33955288363e-05 2.37004001112e-05 -24099656007.9 +UniRef50_UPI000476FAE3 hypothetical protein 1.81214532063e-06 1.53568147813e-07 -669587957.698 +UniRef50_P77377 Lipopolysaccharide biosynthesis protein WzxC 2.11292650664e-05 2.50917024922e-06 -7517160771.96 +UniRef50_P72749 GTP binding protein TypA BipA homolog 8.8611734477e-07 0.000470425373849 1.89558759745e+11 +UniRef50_UPI0003801FCB hypothetical protein 1.3512475479e-06 2.8814842351e-07 -429186162.21 +UniRef50_O27830 3.00182406976e-05 4.88342951651e-06 -10147231712.6 +UniRef50_L7F3W2 1.97912972987e-06 2.38800570243e-06 165068247.595 +UniRef50_UPI0002559497 response regulator 3.73041524007e-07 2.6893798974e-07 -42027874.2776 +UniRef50_Q9I1P8 1.87834258225e-05 7.63343436634e-06 -4501388376.65 +UniRef50_UPI0004701F6D hypothetical protein, partial 1.392865505e-07 1.82977294149e-07 17638489.3568 +UniRef50_UPI0003B7BBF9 elongation factor G 1.16595074273e-07 1.0639792536e-06 382470618.906 +UniRef50_UPI00035D925C hypothetical protein 3.66837052483e-08 1.06625494086e-07 28236358.436 +UniRef50_R6H780 5.82634666514e-07 1.18283617374e-06 242308713.768 +UniRef50_X1KMN7 Marine sediment metagenome DNA, contig 1.24864993981e-07 2.72766596585e-07 59709691.928 +UniRef50_C6SLG1 6.99048127507e-06 4.98030832662e-07 -2621081914.93 +UniRef50_B2IWH8 Bifunctional protein PyrR 2.3701541931e-07 6.82954208732e-07 180030961.574 +UniRef50_P66667 Ribonuclease 3 2.30415383842e-07 7.16804448288e-07 196361233.982 +UniRef50_L0A6M1 ABC type dipeptide oligopeptide nickel transport system, permease component 1.08472985299e-06 0.000461678805436 1.85947480438e+11 +UniRef50_P37773 UDP N acetylmuramate 2.87507621356e-05 3.7098649128e-06 -10109317495.2 +UniRef50_W7WWN9 2.69407414187e-06 7.41731847278e-07 -788184542.26 +UniRef50_A6M2X6 RNA methyltransferase, TrmA family 6.1082237416e-06 4.23495354638e-05 14631062273.2 +UniRef50_G4L5V8 Polysaccharide deacetylase 1.99071950385e-05 2.41403301256e-06 -7062204175.09 +UniRef50_UPI000478D1B9 hypothetical protein 2.9711163247e-08 4.66222030903e-08 6827194.30654 +UniRef50_Q32GE1 Quinate shikimate dehydrogenase 3.82570493768e-05 8.73536142769e-06 -11918267696.9 +UniRef50_Q4TIC7 Chromosome undetermined SCAF2249, whole genome shotgun sequence. 1.40363396481e-05 1.10777474637e-06 -5219420302.15 +UniRef50_O67869 Carbamoyl phosphate synthase large chain, N terminal section 3.00494072985e-07 2.01256795636e-07 -40063306.6441 +UniRef50_C7D5Q5 4.57397310049e-07 2.17375592014e-07 -96899712.9684 +UniRef50_Q48KZ0 ATP dependent Clp protease proteolytic subunit 9.93266991657e-08 1.42525415876e-06 535293186.396 +UniRef50_UPI0004778203 ABC transporter 1.73678189589e-06 3.16773230944e-07 -573274923.506 +UniRef50_UPI0004710F14 monovalent cation H+ antiporter subunit A 2.03292484182e-06 7.31516959214e-07 -525394332.28 +UniRef50_F2UDL8 3.17116082307e-07 9.13836280538e-07 240903266.606 +UniRef50_A6LR74 Methyl accepting chemotaxis sensory transducer 2.75885226717e-06 2.29547421674e-05 8153328584.15 +UniRef50_UPI0002BA87F0 hypothetical protein 2.26039514279e-06 9.17888200131e-05 36143723757.5 +UniRef50_A4VRC5 1.39065284748e-07 1.82507762559e-07 17538261.3915 +UniRef50_A4VRC6 6.66355403197e-07 4.28516462473e-07 -96018498.9823 +UniRef50_Q0G053 1.05033994033e-06 3.82929276099e-07 -269441875.2 +UniRef50_T1ZL16 2.04555577641e-07 3.39026351593e-07 54287501.5864 +UniRef50_Q92RN6 Probable galactose dehydrogenase GalD 4.79731987223e-05 8.9047829244e-06 -15772398881.0 +UniRef50_E8SR78 ApbE 7.45796802505e-08 3.1845739638e-05 12826407150.9 +UniRef50_Q8GLK9 Isoprenyl transferase 8.15980912161e-08 1.23358673834e-07 16859259.6628 +UniRef50_B8NR51 4.53778080385e-08 3.8960253286e-08 -2590845.60584 +UniRef50_UPI000476E214 urea ABC transporter permease 7.53793219571e-08 1.69195107975e-06 652629856.186 +UniRef50_A5VXC5 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 8.09451773838e-06 9.3138386683e-06 492254822.159 +UniRef50_C0B0T0 4.93112317887e-07 6.37633347113e-07 58344912.971 +UniRef50_UPI000368C3B5 hypothetical protein 4.09123583442e-07 1.0548776749e-06 260698851.015 +UniRef50_Q9RTG8 Ribosome maturation factor RimP 4.32235865095e-06 0.000589539237319 2.36259235337e+11 +UniRef50_A0A023RXG6 Poly polymerase 8.98776163989e-07 0.000108303603448 43360646780.0 +UniRef50_Q9HUV8 Phosphoribosylamine glycine ligase 1.41525314037e-05 9.60004251316e-05 33042999084.6 +UniRef50_A5UNL7 Adhesin like protein 3.0986483221e-05 3.97009262231e-07 -12349346012.2 +UniRef50_A5ULS7 Molybdopterin biosynthesis protein, MoeA 3.19419991837e-05 4.77180701234e-06 -10968939995.3 +UniRef50_UPI0002FD2950 hypothetical protein 1.79958007731e-07 6.29322231006e-07 181413851.255 +UniRef50_F4EE48 Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein 1.1039617203e-06 3.29553400308e-06 884764624.174 +UniRef50_UPI00036AA1CD hypothetical protein 1.40061606771e-07 1.15065419154e-06 407988627.837 +UniRef50_UPI0003B4B49C bifunctional ppGpp synthetase II guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase 2.3457664673e-08 4.36097404011e-08 8135640.26521 +UniRef50_UPI000225B750 4 phosphopantetheinyl transferase 1.61210039147e-07 3.476928129e-07 75285384.1651 +UniRef50_UPI00047061CB magnesium transporter MgtC 8.02710317858e-08 4.16533474372e-07 135753274.476 +UniRef50_U5L631 Membrane protein 2.2536260916e-07 2.67391644469e-06 988511230.538 +UniRef50_A6M235 Sugar isomerase 2.15706279348e-06 2.13896813491e-05 7764444121.67 +UniRef50_UPI00037B9AA6 hypothetical protein 8.35440271475e-08 1.52340812945e-07 27774106.6579 +UniRef50_UPI0002375EA0 binding protein dependent transport systems inner membrane component, partial 2.62718574411e-07 7.98669315519e-07 216369891.04 +UniRef50_A8YWE6 Formamidopyrimidine DNA glycosylase 6.8184526473e-08 1.05425743983e-07 15034736.5099 +UniRef50_R9YT60 HlyD secretion family protein 0.000297637496412 4.38120474754e-05 -1.02472448524e+11 +UniRef50_G8PI82 Dipeptide transport ATP binding protein DppF 2.55612123395e-05 2.42062873115e-06 -9342137569.6 +UniRef50_A4WPE9 Cytochrome B561 2.62130970332e-05 3.49487225087e-06 -9171626128.58 +UniRef50_UPI0003602B13 hypothetical protein 3.08040676276e-07 7.16386499904e-08 -95438398.9907 +UniRef50_Q9RT80 2.34949785595e-06 8.8198223883e-05 34658184179.4 +UniRef50_UPI0002488638 2 dehydro 3 deoxygluconokinase 9.05884814754e-08 1.29360305103e-07 15652660.9822 +UniRef50_R6KR64 Major facilitator superfamily MFS_1 1.94270043698e-06 3.34729755613e-06 567053093.346 +UniRef50_B7GVN4 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 5.00342408474e-06 9.08629270855e-05 34662534976.0 +UniRef50_P05695 Porin P 5.87967776852e-06 3.62867073389e-06 -908759162.843 +UniRef50_B2GC97 Dehydrogenase 0.000144739526937 3.2063550218e-05 -45488674491.2 +UniRef50_UPI0004434514 PREDICTED 7.9886282589e-08 1.18943472914e-06 447938323.563 +UniRef50_P43329 ATP dependent RNA helicase HrpA 1.30227679806e-06 2.49043434787e-06 479673783.191 +UniRef50_D2NAI9 Antibiotic biosynthesis monooxygenase 0.000302796738544 4.17524869169e-05 -1.05386767755e+11 +UniRef50_A5WGU9 ABC transporter related protein 6.03655632479e-07 6.4486789442e-05 25790405053.1 +UniRef50_UPI000372E826 hypothetical protein 9.60808095252e-08 8.3101226564e-08 -5240016.91883 +UniRef50_UPI00036C8D4E hypothetical protein 6.57059768744e-08 7.91279245731e-08 5418604.99179 +UniRef50_L7WXE6 7.43820309049e-05 4.16190118874e-05 -13226832824.8 +UniRef50_A0A017T7C4 2.36774933253e-07 6.30705400069e-07 159034563.524 +UniRef50_R5PQE2 ATPase 5.50559176891e-05 1.35328866921e-05 -16763357158.4 +UniRef50_P73443 Lysine tRNA ligase 4.48194437494e-08 8.84020518006e-08 17594833.689 +UniRef50_UPI00035D38ED MULTISPECIES 1.76869473805e-07 2.08955827038e-05 8364398778.15 +UniRef50_J6JBM8 6.35072551366e-07 3.20036324846e-07 -127183990.575 +UniRef50_Q035Y9 60 kDa chaperonin 2.52337893591e-06 7.47642347009e-05 29164519967.3 +UniRef50_Q59091 3 oxoadipate CoA transferase subunit B 3.07599775737e-07 2.51778452877e-07 -22535753.0432 +UniRef50_Q4A0W1 Transcriptional regulator 0.000101983964031 1.62686723112e-05 -34604315112.2 +UniRef50_I6SW93 ABC transporter membrane protein subunit and ATP binding protein 5.84019362576e-05 1.81075111156e-05 -16267353898.0 +UniRef50_A4E7V0 9.46072399763e-07 1.73057181586e-06 316712041.169 +UniRef50_UPI00046F4A68 xanthine dehydrogenase, partial 2.28308157584e-07 1.3152107152e-07 -39074134.3551 +UniRef50_Q3J2Q4 0.00013320335193 1.95190592935e-05 -45895744000.7 +UniRef50_Q8UBL6 Uroporphyrinogen decarboxylase 6.82521793987e-08 1.44599744783e-07 30822449.0356 +UniRef50_R6Z301 Threonine dehydratase medium form 6.35694974159e-08 1.25080679304e-07 24832818.9553 +UniRef50_C5AVJ7 1.822239005e-06 7.03135012379e-06 2102982081.64 +UniRef50_M9VIM2 Phosphotransferase system, EIIC 8.17069239939e-07 5.94888313599e-05 23686510351.3 +UniRef50_UPI00035123E6 7.63113698339e-07 3.38277799404e-07 -171511465.723 +UniRef50_B8H0C0 RNA polymerase binding transcription factor DksA 2.42770223395e-05 2.33144767259e-05 -388591475.973 +UniRef50_A5UM65 4.77830365635e-06 3.7381861418e-06 -419908204.301 +UniRef50_Q8CQJ9 Teichoic acid biosynthesis protein F 8.91179502599e-05 5.81970201286e-05 -12483158936.5 +UniRef50_B2I1K5 Thiol 7.48980136639e-07 4.27868376711e-05 16971198949.2 +UniRef50_B7H204 Potassium uptake protein, TrkH family protein 7.25539371829e-06 6.64990647607e-05 23917397001.4 +UniRef50_O27292 Inosine 5 monophosphate dehydrogenase related protein III 2.72415483359e-05 2.90475447734e-06 -9825062326.76 +UniRef50_A4BCM8 Acylphosphatase, putative 2.12641712445e-07 5.32557510014e-07 129153933.287 +UniRef50_J0Q686 TatA E family twin arginine targeting protein translocase 1.20083825141e-06 1.11188773754e-06 -35910413.9949 +UniRef50_UPI0003138E18 hypothetical protein 6.57383063637e-07 1.56567195623e-07 -202185511.619 +UniRef50_D3UHV1 Type I restriction modification system, restriction enzyme 9.09572103896e-07 4.17173017239e-05 16474581214.7 +UniRef50_Q5GWT1 ISxac3 transposase 1.24566393376e-06 4.47817629267e-06 1305004906.68 +UniRef50_UPI00031C00D7 hypothetical protein 1.27488720048e-07 2.20010148782e-07 37352036.1455 +UniRef50_UPI0000E0E146 ribonuclease III 5.92898113588e-08 2.97500389783e-07 96168533.6823 +UniRef50_W6S7D3 HAD superfamily hydrolase 5.12821989924e-06 1.86235616371e-05 5448235066.06 +UniRef50_D6H9U3 Acyl CoA dehydrogenase 1.33478143897e-06 5.51648748642e-06 1688206046.66 +UniRef50_UPI0003790597 hypothetical protein 3.94653504723e-07 7.01673512158e-08 -130999042.064 +UniRef50_UPI00046499F1 hypothetical protein, partial 6.33582887958e-08 1.79739048667e-08 -18322232.7212 +UniRef50_P40786 Nucleoside specific channel forming protein tsx 1.79898178376e-05 1.48039587258e-05 -1286170418.32 +UniRef50_Q1IWY0 Thioredoxin 5.15019643709e-06 0.000109367858621 42073949118.2 +UniRef50_P09832 Glutamate synthase [NADPH] small chain 2.1467923266e-05 1.55297070746e-05 -2397330746.58 +UniRef50_Q6A9H6 Gamma glutamyl phosphate reductase 5.60692713583e-06 6.35117729691e-05 23376896835.3 +UniRef50_A1ALT4 DNA directed RNA polymerase subunit beta 8.48594119554e-08 1.77194172907e-08 -27105239.7465 +UniRef50_A5IS43 2.30663610187e-05 3.56710181026e-05 5088654741.31 +UniRef50_D7ZP07 TRAP transporter, DctM subunit 6.1179359241e-07 2.95168752471e-07 -127825333.307 +UniRef50_UPI000368CDC8 hypothetical protein, partial 2.67899074815e-06 1.00777988298e-06 -674688334.333 +UniRef50_A3MV69 Elongation factor 1 alpha 2.59522372202e-05 9.88991374907e-06 -6484557092.16 +UniRef50_P30138 Sulfur carrier protein ThiS adenylyltransferase 1.26793060533e-05 5.50956498034e-06 -2894512453.77 +UniRef50_K7RUC4 3 carboxymuconate cyclase 1.01548506727e-07 7.69641585947e-07 269717374.505 +UniRef50_A0Q087 Elongation factor P 1.74443411028e-07 2.7228479705e-06 1028822193.1 +UniRef50_Q9RVA5 SLH family protein 1.23630782379e-06 0.000298404904788 1.19970609263e+11 +UniRef50_P76198 Inner membrane transport protein YdiN 2.44139719792e-05 1.30560032228e-05 -4585351364.91 +UniRef50_T1Y784 CDP glycerol glycerophosphotransferase 0.000106798127414 7.20476448956e-06 -40207062760.6 +UniRef50_Q1RQN9 AfsA like protein 1.27672825993e-06 6.92131074034e-06 2278787214.16 +UniRef50_Q9RVC9 UPF0176 protein DR_1100 2.54484936301e-06 0.000198194203591 78986045189.4 +UniRef50_F0KG78 HTH type transcriptional regulator BetI 1.82360381085e-06 8.64167857375e-05 34151305618.9 +UniRef50_P42308 Citrate transporter 8.07704992712e-06 8.60488363336e-05 31478166993.7 +UniRef50_B2KBB9 Aspartate tRNA ligase 2.82646779704e-08 3.45003788094e-08 2517428.94936 +UniRef50_C1N0Q8 Predicted protein 4.55627425807e-07 7.24528822668e-08 -154692265.308 +UniRef50_P76224 Inner membrane ABC transporter permease protein YnjC 3.69922226016e-05 2.20532678946e-05 -6031039336.81 +UniRef50_Q6A7A7 Lysyl tRNA synthetase 1.98089810149e-06 6.76256046573e-05 26501573587.7 +UniRef50_UPI0004169BE3 ribonuclease 1.32371307248e-07 1.42487506815e-07 4084033.90493 +UniRef50_UPI0004725351 hypothetical protein 9.07582402088e-09 2.92326955491e-08 8137576.38856 +UniRef50_A8AAF8 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 5.7356579454e-08 1.13361838629e-06 434500098.639 +UniRef50_UPI000288DACB nitrogen regulatory protein P II 7.74030641073e-06 3.2502971795e-07 -2993638196.55 +UniRef50_UPI000441EF2C 3.09891178515e-06 1.14933850122e-06 -787066658.677 +UniRef50_A3PLF5 8.24172926495e-06 2.12259414197e-06 -2470369939.38 +UniRef50_Q8X7R2 Acyl coenzyme A dehydrogenase 3.15835334277e-05 8.06305894014e-06 -9495504179.32 +UniRef50_C3L0X3 Proton sodium glutamate symporter 1.57943928393e-06 5.9553833896e-06 1766622334.33 +UniRef50_UPI0003FA835C alkaline phosphatase 3.1046021802e-08 2.20382623475e-07 76437509.5168 +UniRef50_UPI00046A02CC hypothetical protein 3.26167834574e-07 1.160895676e-07 -84811174.3276 +UniRef50_A6LY49 Transcriptional regulator, TetR family 1.10041267802e-05 9.38702553188e-06 -652843618.011 +UniRef50_I7EDS2 7.5487688964e-06 1.88316566041e-06 -2287273551.14 +UniRef50_P12994 UPF0098 protein YbhB 9.57694051974e-06 0.000535375985694 2.12271526817e+11 +UniRef50_UPI000473D6A4 16S rRNA methyltransferase, partial 1.21820110647e-07 1.72827553008e-07 20592330.4128 +UniRef50_Q3DN63 3.81056031298e-07 1.20009835908e-07 -105387552.476 +UniRef50_UPI00037391D6 hypothetical protein 7.26135290382e-08 5.11307731061e-08 -8672852.19285 +UniRef50_V9VP30 5.32821619013e-07 7.37818096906e-07 82759593.7151 +UniRef50_R0QJ92 Dicarboxylate symporter family protein 4.80465832268e-07 3.20804945664e-06 1101158980.37 +UniRef50_T1ZL59 DeoR family transcriptional regulator 5.85458619516e-05 3.18563041543e-05 -10774902000.5 +UniRef50_Q5P260 Glycerol 3 phosphate acyltransferase 7.64626467626e-08 4.92469151816e-07 167946931.064 +UniRef50_A5UND9 Lipopolysaccharide cholinephosphotransferase, LicD family 3.34940845849e-05 5.36541385429e-06 -11355889551.5 +UniRef50_B2UNA9 Polyribonucleotide nucleotidyltransferase 2.31250043527e-08 4.15063357101e-08 7420769.03328 +UniRef50_V5U2H7 5.41209164004e-06 4.82896306911e-06 -235416159.877 +UniRef50_Q1IYQ4 Prephenate dehydratase 1.61548925324e-06 0.000320652079642 1.28798986559e+11 +UniRef50_UPI00036C7E56 hypothetical protein 2.47067120637e-07 1.46952064247e-06 493519487.954 +UniRef50_A7HEZ4 Phospho 2 dehydro 3 deoxyheptonate aldolase 1.36276530269e-06 7.09858768996e-05 28107704523.3 +UniRef50_UPI0004783FA2 hypothetical protein 7.70194275358e-08 1.20762276177e-07 17659524.7816 +UniRef50_A6M2I5 Glycosyl transferase, family 2 5.6053334548e-06 1.18242496157e-05 2510652768.84 +UniRef50_UPI000255A9DA hypothetical protein 1.98719384631e-06 3.02757422328e-07 -680027654.72 +UniRef50_B7V115 Heme acquisition protein HasAp 1.84139506761e-06 3.60875810829e-06 713506147.506 +UniRef50_UPI0003612C6D hypothetical protein, partial 2.82789012801e-07 2.73525923168e-07 -3739622.95573 +UniRef50_M9VDC9 Trk system potassium uptake protein TrkA 1.86566386584e-06 5.24373562063e-05 20416412782.3 +UniRef50_B9J7V3 Oligopeptide ABC transporter 4.5667731217e-05 1.39239061505e-05 -12815371719.9 +UniRef50_C5C0W1 Ribosome binding ATPase YchF 1.70808139747e-06 4.41969777172e-05 17153288841.7 +UniRef50_Q9AL94 Rubredoxin 8.90657907197e-06 2.00173042234e-05 4485536087.55 +UniRef50_Q8PIM5 Chemotaxis response regulator protein glutamate methylesterase of group 2 operon 6.81078064022e-05 1.85848204966e-05 -19993037125.5 +UniRef50_G7M3H0 Coagulation factor 5 8 type domain protein 6.21887955241e-07 7.85203124025e-06 2918897567.99 +UniRef50_A9GZR7 Aspartate carbamoyltransferase 4.66807292419e-05 1.72727238266e-05 -11872372663.0 +UniRef50_D2VQJ9 Pyruvate dehydrogenase E1 component subunit alpha 8.85169233073e-05 1.97991456965e-05 -27742210083.4 +UniRef50_D8M8V8 Singapore isolate B whole genome shotgun sequence assembly, scaffold_6 2.1174800887e-06 2.67859963495e-06 226530846.532 +UniRef50_W1DQS7 DNA gyrase subunit B 3.55445998968e-05 5.34914489664e-06 -12190275723.5 +UniRef50_P0AAP6 2.69962780571e-05 1.08705535655e-05 -6510152862.15 +UniRef50_P31433 3.64084499893e-05 7.83172907726e-06 -11536772908.0 +UniRef50_UPI00035CCC77 hypothetical protein 1.17483802484e-07 2.34402002823e-07 47201312.2245 +UniRef50_U6EXA7 Primosome assembly protein PriA 4.07137860956e-06 6.83299614086e-06 1114898886.24 +UniRef50_UPI00041FF968 hypothetical protein 1.16511919583e-07 5.70234020342e-08 -24016244.5407 +UniRef50_S9UZE8 1.14044105391e-06 2.25632224138e-06 450494928.784 +UniRef50_Q8DR59 Penicillin binding protein 1A 5.48223567394e-05 1.40320818075e-05 -16467534543.0 +UniRef50_G4PHY8 ATP 1.80489472436e-05 3.7381861418e-06 -5777429869.58 +UniRef50_I4F260 5.20133866624e-07 8.49101492329e-08 -175705155.506 +UniRef50_T1YAD1 Transposase 3.95970413512e-05 5.44292229661e-06 -13788436980.5 +UniRef50_K7S0W1 Short chain dehydrogenase 3.29202897256e-06 4.06417890308e-05 15078556468.6 +UniRef50_UPI0003B56E19 ribosome binding factor A 1.08313409684e-06 2.00548031983e-06 372362488.682 +UniRef50_A0A023RTE9 AsnC family transcriptional regulator 3.1457165738e-06 4.48582337002e-06 541017558.594 +UniRef50_B8GMP7 DoxX family protein 6.03586090954e-07 3.04659680197e-07 -120680260.262 +UniRef50_UPI00036B9DAF hypothetical protein 2.77272094558e-08 1.29050510142e-07 40905459.8637 +UniRef50_A6BA71 Immunogenic protein 1.10736886652e-06 7.08877619245e-07 -160875806.562 +UniRef50_D4FB84 Outer membrane specific lipoprotein transporter subunit LolC family protein 5.79636133779e-07 9.66693437478e-07 156259783.231 +UniRef50_L1IEH2 8.5464689335e-08 1.65413283494e-07 32276228.5416 +UniRef50_T1FJ63 3.32257872014e-08 8.39799538825e-09 -10023284.2263 +UniRef50_UPI000360C3D4 cytochrome C transmembrane protein 1.49144799129e-06 7.50968811202e-07 -298940531.703 +UniRef50_C8XIL9 Rhamnan synthesis F 3.86963104524e-08 6.07962916546e-08 8922033.60859 +UniRef50_R6JHL0 9.85327172575e-08 1.14783238585e-07 6560534.87623 +UniRef50_UPI0003643D3B hypothetical protein 3.82743928528e-08 6.11504073334e-08 9235327.76608 +UniRef50_F0VXG5 Adenylate cyclase 5.91771389633e-05 8.90380181523e-05 12055203362.8 +UniRef50_F0RLL2 7.67247944857e-07 0.00021617996308 86964756511.3 +UniRef50_UPI00047873F0 hypothetical protein 1.90386658113e-07 2.55844518416e-06 956014286.312 +UniRef50_UPI0003B6C708 argininosuccinate lyase 2.32482826171e-07 1.25399881283e-07 -43230698.9068 +UniRef50_Q5ZB52 Zinc knuckle containing protein like 7.18326204965e-07 1.58556972552e-06 350116851.523 +UniRef50_Q9ZM46 Translation initiation factor IF 2 1.84085311796e-06 3.98350639843e-05 15338729168.1 +UniRef50_UPI0003F739B0 hypothetical protein 1.36732900876e-06 2.98047350933e-07 -431682126.827 +UniRef50_UPI00035E495A hypothetical protein 4.10435608361e-08 6.38603527873e-08 9211418.90422 +UniRef50_F8F0F6 Appr 1 p processing domain protein 1.28852953544e-07 2.9571565412e-06 1141820865.53 +UniRef50_V6JJY2 3.89364837914e-07 9.20122753983e-06 3557457106.48 +UniRef50_O31676 6 carboxy 5,6,7,8 tetrahydropterin synthase 0.000144690549395 1.29060344695e-05 -53203025853.5 +UniRef50_UPI00032A023A PREDICTED 4.70279332887e-05 2.24455790699e-05 -9924198057.54 +UniRef50_A6LX21 Molybdate metabolism regulator 4.21598238542e-06 1.09169523898e-05 2705263820.92 +UniRef50_UPI000374B6B2 hypothetical protein 1.57333441271e-05 1.50086208694e-06 -5745827651.82 +UniRef50_UPI0003B781A0 DNA repair protein RecO 2.23566207055e-07 8.1212934778e-07 237610162.393 +UniRef50_UPI000467B9AD peptide ABC transporter ATP binding protein 3.13881593914e-07 8.47194966661e-08 -92515550.7942 +UniRef50_Q9SAK4 Succinate semialdehyde dehydrogenase, mitochondrial 3.58094249344e-05 3.45758586675e-05 -498005839.508 +UniRef50_Q8CS01 5.15401166009e-05 0.000110586709997 23837834337.2 +UniRef50_P50097 Inosine 5 monophosphate dehydrogenase 2.73286255569e-06 4.81608241931e-05 18339825576.8 +UniRef50_A3M8U4 Heavy metal RND efflux membrane fusion protein CzcB family protein 1.92547271485e-06 8.73637030013e-05 34492462011.6 +UniRef50_D5RU62 Putative epstein Barr nuclear antigen 1 1.00622848688e-06 2.00068275057e-06 401473389.578 +UniRef50_F7V1W3 3.36298541832e-06 6.92934376009e-07 -1077932370.99 +UniRef50_Q04KQ9 2.76371054329e-05 2.5210101165e-05 -979811405.643 +UniRef50_Q9RWR5 DNA primase 1.71300783763e-06 0.000259830054927 1.04205019362e+11 +UniRef50_UPI00040DB2E3 heme ABC transporter ATP binding protein 1.35608819191e-07 4.19767915406e-07 114718514.166 +UniRef50_UPI000262D0CC phosphoenolpyruvate protein phosphotransferase PtsP 1.19957909337e-07 5.37543335686e-07 168584360.967 +UniRef50_UPI00042B76EF Heavy metal atpase 5 isoform 1 1.65400293299e-08 1.5632186505e-08 -366507.288896 +UniRef50_F5M5U6 1.36587909971e-05 8.65347614835e-06 -2020707026.56 +UniRef50_Q6ARN9 Bifunctional enzyme IspD IspF 1.17078556704e-07 1.60261529287e-07 17433495.9464 +UniRef50_G4LIC7 1.10937615678e-05 2.02271715884e-06 -3662091942.13 +UniRef50_UPI000252B7A9 3.63926216387e-07 4.2321276286e-07 23934706.3389 +UniRef50_A8TU87 Putative transposase 4.01834004625e-07 2.33844370759e-07 -67819476.6563 +UniRef50_A3PRK6 Transcriptional regulator, LysR family 1.74659386845e-05 2.16186384862e-05 1676495869.3 +UniRef50_M9VAV5 2.66744043507e-06 4.11777613678e-05 15547089135.3 +UniRef50_UPI0003B7B5C8 nitrogen regulatory protein P II 1 2.40911319439e-07 5.36099085147e-07 119170923.378 +UniRef50_UPI00037696BA hypothetical protein 5.43508096325e-08 1.02151139109e-07 19297579.5857 +UniRef50_B0VPR2 1.41204235229e-06 0.000108455255059 43214658537.7 +UniRef50_H0DJE4 Putative lipoprotein 1.60051396714e-07 1.12568848442e-07 -19169287.4138 +UniRef50_M4HVK3 Degenerate transposase 2.84617629462e-06 1.71833629301e-05 5788098181.82 +UniRef50_R6UMN9 L serine dehydratase alpha chain 1.58051273234e-07 3.53624363035e-07 78955256.3044 +UniRef50_E3PRA3 Rubrerythrin 1.95638533259e-05 3.26316801329e-06 -6580786692.6 +UniRef50_UPI000474129C hypothetical protein 8.00690582471e-08 1.19439341444e-07 15894266.4543 +UniRef50_Q3J096 2.84809959354e-05 1.00781739652e-05 -7429445057.39 +UniRef50_Q3J090 8.38475891435e-05 6.97598516207e-06 -31034009848.0 +UniRef50_UPI000469755B secretion system protein E 1.17124125567e-07 9.99146085413e-08 -6947693.2078 +UniRef50_Q6F957 4.76195945936e-06 6.51832958571e-05 24392834956.9 +UniRef50_F8L7S5 UDP glucose 6 dehydrogenase 2.19825905091e-05 1.44056929367e-06 -8293066043.6 +UniRef50_K4KNP7 3.90502747092e-06 1.05605740712e-05 2686925835.27 +UniRef50_A3PJZ1 PpiC type peptidyl prolyl cis trans isomerase 8.39615858485e-06 1.44526935666e-06 -2806159278.42 +UniRef50_Q20EX8 Light independent protochlorophyllide reductase subunit N 4.91313101059e-07 2.06354153215e-07 -115041424.084 +UniRef50_Q48C77 Imidazoleglycerol phosphate dehydratase 5.18290023376e-06 7.64781901812e-05 28782783443.4 +UniRef50_Q9K3V7 Pyridoxine pyridoxamine 5 phosphate oxidase 3.92793480937e-06 7.09807860841e-07 -1299197339.98 +UniRef50_Q90512 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 4.57827311813e-08 1.64659396292e-07 47991968.486 +UniRef50_UPI00016A4BBE hypothetical protein 2.00037194773e-05 7.29177049855e-06 -5131969795.86 +UniRef50_Q3J3B2 Glycosyltransferase, Succinoglycan biosynthesis protein exoL 9.68993381439e-06 2.30116913138e-06 -2982934972.87 +UniRef50_UPI0004676BF2 hypothetical protein 5.28246864124e-07 1.03617652512e-07 -171428023.514 +UniRef50_UPI0003643AE6 hypothetical protein 9.30708721563e-06 5.74750370064e-07 -3525351542.38 +UniRef50_T1A3B5 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 2.19957241923e-06 3.41035644992e-07 -750314102.572 +UniRef50_R5VTD5 ABC transporter permease protein 2.88892338411e-06 1.36938202842e-05 4362069469.57 +UniRef50_C7NWU6 Cupin 2 conserved barrel domain protein 1.31750549372e-06 9.06074721059e-07 -166099651.747 +UniRef50_D6DES4 Amino acid transporters 4.02249499104e-06 2.4249686578e-05 8165965459.23 +UniRef50_UPI000428A00C spermidine putrescine ABC transporter ATP binding protein 6.53195629079e-07 3.24751363587e-07 -132596980.443 +UniRef50_Q9RVX3 1.93584821048e-06 0.000299487419084 1.2012522053e+11 +UniRef50_X1YHV7 Catalase 1.25068503359e-07 4.43177126713e-07 128424354.88 +UniRef50_Q1GX76 Transcriptional regulator, TetR family 3.91483464943e-06 3.29962799096e-06 -248366477.459 +UniRef50_UPI0004716697 peptidase S11 3.88876080834e-08 1.90453672133e-07 61189079.9817 +UniRef50_U5P5Q4 Competence protein CglA 7.44671133743e-05 6.81102489411e-05 -2566344179.18 +UniRef50_V2Y8C8 1.47206788535e-06 4.50656312982e-07 -412356385.895 +UniRef50_A4WXA6 5.63195017634e-05 4.92194508659e-05 -2866377674.74 +UniRef50_B9KL58 5 oxoprolinase 7.20518620451e-05 1.37031571011e-05 -23556088205.0 +UniRef50_P95649 Protein CbbY 1.63649995166e-06 8.18878681345e-06 2645238611.71 +UniRef50_UPI0003C44AB2 PREDICTED 2.94492295696e-08 4.68311311067e-07 177174007.744 +UniRef50_F9H9Z5 Putative phage terminase, large subunit 9.6108933779e-08 9.3195617953e-07 337441790.109 +UniRef50_A1Z1V6 RepA 1.61305417124e-06 3.61472717274e-07 -505278791.599 +UniRef50_UPI0004006A19 hypothetical protein 9.59057940353e-08 2.69922513322e-06 1050991963.55 +UniRef50_S5JZI7 Purine catabolism regulatory protein 2.40359633594e-07 1.58197034285e-05 6289572270.05 +UniRef50_Q4MM88 4.42366393186e-06 2.00709695323e-06 -975597743.884 +UniRef50_H0DZL7 Relaxase mobilization nuclease domain protein 1.37623688836e-06 5.30631467751e-07 -341381285.045 +UniRef50_UPI00037ECD4A hypothetical protein 1.19076507789e-07 1.46062121686e-07 10894423.4809 +UniRef50_U5YR77 Transcriptional regulator 1.17565922368e-06 9.00635532562e-08 -438268293.905 +UniRef50_UPI000372834D hypothetical protein 3.69669045612e-08 1.64271178267e-07 51394297.4942 +UniRef50_Q45068 Amino acid carrier protein AlsT 0.000224102101688 4.03886714413e-05 -74167366208.0 +UniRef50_Q28VF6 1.30981999969e-05 7.52195661279e-06 -2251197882.37 +UniRef50_UPI00046AC1C8 hypothetical protein 6.40654032508e-08 1.8322472088e-07 48106078.7761 +UniRef50_Q46939 Probable acetyl CoA acetyltransferase 2.7754171781e-05 1.10090319651e-05 -6760218429.65 +UniRef50_R5UAF2 5.79943167142e-07 7.17894684678e-08 -205147883.902 +UniRef50_A0A017LCS6 Radical SAM superfamily protein 1.02984065804e-05 8.51056787246e-07 -3814011043.51 +UniRef50_Q55786 Methionine synthase 7.3133534145e-09 1.82581563621e-07 70757927.243 +UniRef50_Q038L3 Elongation factor Ts 0.000254438962548 5.15435395807e-05 -81911372058.6 +UniRef50_UPI00036D89F3 hypothetical protein 1.14329435152e-07 9.21290961603e-08 -8962549.27974 +UniRef50_Q3IWX5 Putative tape measure protein 1.21613739864e-05 4.66554629156e-06 -3026157624.56 +UniRef50_B5ZBT1 Urease subunit gamma 3.72387245512e-07 2.23864586392e-06 753431505.821 +UniRef50_P26172 Geranylgeranyl diphosphate reductase 5.6093984257e-05 2.31795694693e-05 -13287953155.1 +UniRef50_B0V8T9 2.59143699447e-06 6.6128463682e-05 25650677360.7 +UniRef50_W0F7K7 Permease of the major facilitator superfamily 8.40139879572e-05 5.17339360517e-05 -13031853075.0 +UniRef50_P75818 3.45785643418e-05 5.98614942967e-06 -11543108768.4 +UniRef50_UPI00039A620E potassium transporter KefB 2.14526179917e-07 6.9948455534e-07 195783647.267 +UniRef50_D2NU75 3 deoxy D arabino heptulosonate 7 phosphate synthase 1.19963767644e-06 3.2352127704e-05 12576642508.2 +UniRef50_A5V3C2 2.16341742202e-06 5.97952398923e-07 -631997440.242 +UniRef50_G8V756 Glycosyltransferase 8.33302403623e-07 6.76860783205e-05 26989286013.5 +UniRef50_A4WQD3 Glutathione dependent formaldehyde activating, GFA 0.000112000207044 5.73889148155e-05 -22047248828.6 +UniRef50_C5AV20 9.24594108654e-08 1.8384063588e-07 36891721.9121 +UniRef50_UPI0003594D3C PREDICTED 1.31787062104e-08 1.08815351915e-07 38609687.4646 +UniRef50_G0DTF9 Ferrochelatase, HemH 6.48230089558e-07 6.29588139122e-05 25155547326.0 +UniRef50_Q03023 Serralysin 4.74183727002e-06 1.48774158797e-06 -1313718359.09 +UniRef50_UPI0003679B46 hypothetical protein 1.80164948797e-07 4.2054940651e-07 97046155.4278 +UniRef50_F7CYV8 9.1431219323e-08 7.44086098823e-07 263484783.83 +UniRef50_A3M893 Putative hemagglutinin hemolysin related protein 3.09020806155e-06 3.95451715083e-05 14717316096.1 +UniRef50_Q6A889 2.05155428724e-06 4.19749930826e-05 16117582157.4 +UniRef50_UPI00041B92EF hypothetical protein 4.02040357605e-07 1.11837871662e-06 289194585.995 +UniRef50_UPI000477E9DF thioredoxin 1.12971515246e-06 1.56139943043e-06 174276240.378 +UniRef50_UPI000366DA44 hypothetical protein 2.86162365455e-07 2.63131140096e-07 -9297988.30235 +UniRef50_P15006 Protein McrC 3.28152386479e-05 6.42244193887e-06 -10655095907.5 +UniRef50_UPI000366C9FA hypothetical protein, partial 4.83888056598e-07 4.8319027058e-07 -281704.778264 +UniRef50_UPI000471640D adenosylcobinamide kinase 9.85599993477e-07 9.83565394934e-07 -821392.399141 +UniRef50_UPI000409FACA 5 carboxymethyl 2 hydroxymuconate isomerase 1.02741765003e-07 3.63838879886e-07 105408109.3 +UniRef50_F5M3U6 Two component sensor histidine kinase 3.35956299888e-05 1.27474836769e-06 -13048336532.3 +UniRef50_S4PI94 Putative SLIT ROBO Rho GTPase activating protein 1 like protein 8.12293550708e-05 4.18817147005e-05 -15885125267.3 +UniRef50_E2NSL6 1.52088253345e-06 1.1193677449e-05 3905026005.95 +UniRef50_UPI000471AB25 hypothetical protein 1.09625039329e-06 3.60959431443e-07 -296845984.332 +UniRef50_UPI0003B46C11 chemotaxis protein CheY 8.83516156203e-08 3.71517359216e-07 114317485.524 +UniRef50_Q8DSA7 3.64336665499e-05 1.17324737943e-05 -9972174633.16 +UniRef50_Q8S0V8 Splicing coactivator subunit like protein 1.46354355206e-07 1.16562622047e-06 411492559.878 +UniRef50_UPI000225BECB nucleoside triphosphate diphosphatase 7.77649251474e-07 1.53166397255e-07 -252111391.515 +UniRef50_R9SJ55 F420 0 2.94001871576e-05 1.43159071807e-05 -6089708931.61 +UniRef50_G8VD48 ABC transporter, ATP binding protein 3.92330776222e-06 4.60702253865e-05 17015227845.8 +UniRef50_A6LR80 NAD dependent aldehyde dehydrogenase like protein 1.59806786223e-06 1.32322591848e-05 4696865804.52 +UniRef50_F5XNW0 3.37690951902e-07 5.80415421761e-06 2206878301.41 +UniRef50_UPI00046EC7BE hypothetical protein 6.20393200983e-08 1.92320979269e-07 52596304.5431 +UniRef50_P0AEG0 Dipeptide transport system permease protein DppB 0.000144269076051 2.53636140052e-05 -48003594162.1 +UniRef50_T1Y8L2 Oligopeptide binding protein oppA 9.8203090517e-05 2.05807417859e-05 -31337094716.1 +UniRef50_UPI000300BC1D hypothetical protein 8.92963909883e-08 1.88463947954e-07 40035159.6698 +UniRef50_UPI00047DB8CE hypothetical protein 1.45857962641e-07 6.46343241239e-08 -32790979.5955 +UniRef50_UPI0004785B37 hypothetical protein 1.06907343712e-06 2.25215931418e-07 -340675630.348 +UniRef50_A6WXJ2 Porphobilinogen deaminase 4.25857538568e-05 1.24914355129e-05 -12149445614.2 +UniRef50_D3SLJ8 UDP glucose 4 epimerase 4.02307133855e-05 2.95879027717e-05 -4296633246.76 +UniRef50_A7WYP0 Ribosomal RNA small subunit methyltransferase A 0.000106037055159 2.84542528515e-05 -31321129339.6 +UniRef50_P65560 4.48733169675e-05 1.2576488927e-05 -13038625806.6 +UniRef50_Q6A6Z5 Malate dehydrogenase 4.39192650404e-06 4.98219896361e-05 18340673976.0 +UniRef50_Q62KH7 2.00941716961e-07 6.56673239208e-07 183984407.986 +UniRef50_E6E0D9 8.68750840708e-07 3.44016854746e-06 1038112883.06 +UniRef50_F2NQ48 TRAP transporter solute receptor, TAXI family 7.62451284265e-08 3.34385250189e-06 1319173194.72 +UniRef50_P0A5M3 Transcription termination antitermination protein NusA 4.15429846087e-06 6.71679253972e-05 25439374458.3 +UniRef50_E6E9X3 1.81774954504e-06 2.80808277526e-06 399809677.795 +UniRef50_G7S7S5 Phosphate specific transport system accessory protein PhoU 0.000116380010238 1.73828250878e-05 -39966378477.2 +UniRef50_A7INS2 Acyl CoA dehydrogenase domain protein 8.30897017994e-05 2.88094584643e-05 -21913600327.9 +UniRef50_UPI00037BAB2A hypothetical protein 6.3367877442e-07 2.41840668922e-07 -158189851.584 +UniRef50_R4XNN0 3.06976374302e-05 3.18431799674e-06 -11107464681.7 +UniRef50_N2N059 CRISPR associated endonuclease Cas3 HD 4.40302475292e-07 1.43677024017e-06 402286264.716 +UniRef50_M5EKG8 1.54164193696e-06 5.94996680631e-07 -382172306.624 +UniRef50_UPI00036A1325 hypothetical protein 3.67890191056e-07 7.65551078956e-08 -117615548.155 +UniRef50_UPI00036A73F1 hypothetical protein 5.18691948551e-07 2.68443993523e-07 -101028170.333 +UniRef50_B7H2D5 3.11971891609e-06 0.000325587011889 1.30184003292e+11 +UniRef50_D6EKY2 Integral membrane protein 1.9866549672e-07 2.72373921133e-06 1019403244.73 +UniRef50_Q8CLS1 8.14013651366e-07 6.59187614593e-06 2332593991.4 +UniRef50_Q122S9 Transcriptional regulator, LysR family 3.70982421302e-06 2.04135971329e-06 -673579592.903 +UniRef50_R7DG92 9.3132824787e-07 7.79365599528e-07 -61349185.9271 +UniRef50_S4XSR0 4.17120954832e-07 1.36273331666e-06 381755314.439 +UniRef50_D7FGF4 Type I restriction enzyme, R subunit 3.27735785322e-06 5.91900239792e-05 22572629440.6 +UniRef50_UPI00040DE7DB hypothetical protein 1.40725952706e-07 9.536548345e-08 -18312578.0742 +UniRef50_S4X6I5 Bifunctional autolysin 1.05103130166e-05 1.0251538522e-06 -3829275150.66 +UniRef50_Q9Z3Q8 Rhizobactin siderophore biosynthesis protein RhbE 1.3291760171e-06 8.74061251798e-05 34750320659.9 +UniRef50_T1Y630 Long chain fatty acid CoA ligase 0.000152780119102 3.30256676266e-05 -48346341612.8 +UniRef50_UPI00037871A9 hypothetical protein 2.55065791409e-07 4.45206386239e-07 76762091.4204 +UniRef50_UPI000474835A threonine dehydratase 4.39339542546e-08 7.31221979111e-08 11783652.1442 +UniRef50_UPI0003655EFD multidrug transporter 9.99447241244e-05 2.7333873132e-05 -29313891581.0 +UniRef50_UPI0003AF1932 PREDICTED 6.36947069515e-08 5.58618597705e-08 -3162216.52681 +UniRef50_A6M0E2 Peptidase S8 and S53, subtilisin, kexin, sedolisin 1.81765318237e-06 1.17904417775e-05 4026137135.73 +UniRef50_UPI0003B4AB4D ABC transporter 5.25996982589e-08 8.73515143023e-08 14029734.5895 +UniRef50_Q5P6J7 Magnesium transporter 2.75773741971e-06 3.88001979982e-05 14550783626.3 +UniRef50_C9A5A3 6.66418848701e-08 1.91162717657e-05 7690569348.13 +UniRef50_A6M351 PAS PAC sensor signal transduction histidine kinase 6.82900028641e-06 1.2600405467e-05 2329987094.51 +UniRef50_P38422 D alanyl D alanine carboxypeptidase DacF 2.22085768197e-07 3.55089526976e-06 1343881244.87 +UniRef50_UPI00046F18D5 monovalent cation proton antiporter subunit MnhG PhaG 4.15553944545e-07 5.34481779401e-06 1990004304.9 +UniRef50_Q8CP12 ComEC late competence protein 3 8.42605010053e-05 3.82703544565e-05 -18566786524.3 +UniRef50_Q4EJM8 3.79583348555e-06 3.36214819927e-06 -175084071.988 +UniRef50_Q5HL27 Conserved domain protein 2.40538713088e-05 1.1032140074e-05 -5257032694.1 +UniRef50_UPI000364A00D acetoin dehydrogenase, partial 3.02560924852e-07 1.77109419376e-07 -50646312.2237 +UniRef50_A0A008LUF2 5.87266875639e-07 7.82580304074e-07 78850427.8245 +UniRef50_W1IWA4 2.56020455174e-08 1.07412057254e-07 33027705.6598 +UniRef50_L0GPC1 Site specific recombinase XerD 7.74344748581e-05 7.41139537019e-05 -1340535138.13 +UniRef50_F8JBM1 Glycine betaine proline transporter, membrane component of ABC transporter 1.22637402212e-05 6.68264575394e-06 -2253156324.16 +UniRef50_K4PPW1 Formate nitrite transporter 3.86937207439e-05 2.18286845697e-05 -6808622060.79 +UniRef50_D4HFJ4 1.79124860886e-06 3.57852517889e-05 13723796237.1 +UniRef50_A6LYU1 Phage related protein 1.01289970793e-05 7.95396687411e-06 -878086384.457 +UniRef50_R6ZG02 Precorrin 4 C methyltransferase 5.0758868007e-05 3.42277065883e-05 -6673832724.89 +UniRef50_UPI00000D3C44 single stranded DNA binding protein 2.79619251005e-06 0.000440318241278 1.76633020087e+11 +UniRef50_E6JQR4 ISSep1 like transposase 7.00273732157e-06 1.19899402032e-06 -2343042390.65 +UniRef50_A1WG09 Binding protein dependent transport systems inner membrane component 0.000110899632319 5.61882324087e-06 -42503154565.6 +UniRef50_UPI000273DF52 2.59820222871e-07 5.18216108177e-07 104317589.772 +UniRef50_A0A059IL14 2.37077565681e-06 3.63789595544e-07 -810244901.423 +UniRef50_UPI0003657F9C hypothetical protein 1.66164352826e-06 2.44748389805e-07 -572017954.651 +UniRef50_P23841 HTH type transcriptional regulator XapR 5.9419791992e-05 5.68020608962e-06 -21695330287.7 +UniRef50_A6M2W8 Oxidoreductase domain protein 1.50973247523e-05 1.85485564406e-05 1393304583.94 +UniRef50_F3U531 2.19127896012e-05 1.21757585887e-05 -3930958906.55 +UniRef50_UPI0003292D12 PREDICTED 8.64185440716e-08 2.89382840309e-07 81939177.0429 +UniRef50_Q8XIQ9 Cobalt dependent inorganic pyrophosphatase 7.38719651419e-06 4.43446494706e-06 -1192053967.74 +UniRef50_F3U537 1.37058430532e-05 4.40771201791e-06 -3753769599.85 +UniRef50_B6IP81 6.83353319476e-05 2.72498324234e-05 -16586720333.7 +UniRef50_UPI000361D30F hypothetical protein 5.65751805467e-07 2.41531869769e-07 -130891566.667 +UniRef50_UPI0002554CCB nitrogen regulatory protein P II 1.10803248009e-07 5.56392399798e-07 179889808.571 +UniRef50_UPI0003B4715F hypothetical protein 1.30010729307e-08 6.84459402009e-07 271075967.169 +UniRef50_P52048 5.78030533758e-05 7.9139746066e-06 -20140833307.0 +UniRef50_UPI000471D6BF ferredoxin, partial 1.08254393019e-06 4.36645221838e-06 1325754074.03 +UniRef50_B6ICF9 TraW protein 1.12549808408e-06 6.93210732377e-08 -426391620.025 +UniRef50_H4VIE3 3.07534204649e-05 9.47540230575e-06 -8590197041.47 +UniRef50_Q9RS28 GGDEF family protein 1.56871028509e-06 0.000129446348495 51625771780.5 +UniRef50_X0X8Y7 Marine sediment metagenome DNA, contig 1.74256964983e-06 1.34467568136e-06 -160634677.779 +UniRef50_UPI0003B5F7BE hypothetical protein 8.07279931217e-06 2.17109530759e-06 -2382590328.7 +UniRef50_Q03J15 5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase 8.02784947647e-05 1.49137242268e-05 -26388559982.1 +UniRef50_Q1GUX8 Phosphate binding protein, putative 4.8754686261e-08 6.32830838162e-08 5865292.37652 +UniRef50_G7M2L7 Electron transport complex subunit D 1.12013646546e-06 2.86252056733e-06 703421843.382 +UniRef50_P37551 Pur operon repressor 3.1528726533e-05 4.11082223931e-05 3867360032.36 +UniRef50_M4FTZ0 4.03466683996e-08 6.23776761275e-07 235537887.986 +UniRef50_I9KL58 1.2381343247e-07 6.26592041236e-08 -24688712.4302 +UniRef50_UPI00036E9BD8 hypothetical protein 2.60515976712e-06 1.54508194645e-06 -427966424.822 +UniRef50_S6AYL1 4.38712708456e-06 2.16613720186e-06 -896640870.257 +UniRef50_UPI000395630A PREDICTED 6.56454481286e-08 1.08512691688e-07 17306032.2652 +UniRef50_J7QI73 Peptidase U35 phage prohead HK97 9.53643875115e-08 1.33822311884e-07 15525936.001 +UniRef50_Q2BPZ8 AsmA family superfamily protein 1.76571601574e-08 2.06033922293e-08 1189430.04176 +UniRef50_P75804 Soluble aldose sugar dehydrogenase YliI 5.93828352981e-05 8.67792901457e-06 -20470192885.8 +UniRef50_U5R0R0 2.89731476073e-06 3.53597532904e-06 257835108.673 +UniRef50_Q7MB61 Glucosamine 6 phosphate deaminase 2.79321763567e-05 3.90527424619e-05 4489509001.36 +UniRef50_UPI000346E108 diguanylate cyclase 1.45356387494e-08 4.12356410942e-07 160605127.544 +UniRef50_W7DA81 L xylulose 5 phosphate 3 epimerase 3.76029153665e-07 3.40642701664e-07 -14285944.9134 +UniRef50_UPI00041EE847 cytochrome C 3.78022244693e-08 4.33580143847e-07 159780402.794 +UniRef50_UPI000478FA68 hypothetical protein 1.62170036448e-07 4.89065866586e-08 -45725844.5786 +UniRef50_Q8YJ91 Chaperone protein ClpB 7.1494818727e-05 3.58759565243e-05 -14379771763.8 +UniRef50_A6LTD8 Extracellular solute binding protein, family 1 2.13302302979e-06 1.0490130859e-05 3373866983.9 +UniRef50_UPI00036F72CE hypothetical protein, partial 8.10089493013e-07 1.36300701695e-07 -272016803.373 +UniRef50_F0YFM2 Expressed protein 2.67567842603e-06 5.00321378899e-07 -878218334.559 +UniRef50_E6U512 Binding protein dependent transport systems inner membrane component 1.69276228183e-06 1.13392012605e-05 3894385790.81 +UniRef50_M9VB01 8.38857753003e-06 2.09795379225e-05 5083125218.91 +UniRef50_Q633V5 Non canonical purine NTP pyrophosphatase 8.91491789126e-05 3.40156580732e-05 -22258078927.2 +UniRef50_C3MD65 Phosphoribosylaminoimidazole succinocarboxamide synthase 5.86093077419e-05 6.38775558795e-06 -21082481435.0 +UniRef50_W7SSM3 Peptidase C14, caspase catalytic subunit p20 4.4161380692e-08 3.29541872715e-06 1312572488.18 +UniRef50_G2JG48 ABC transporter 1.11248029523e-05 6.19060580876e-05 20501015854.2 +UniRef50_UPI0004693EA9 chemotaxis protein 9.53786137428e-07 1.65183376958e-07 -318368611.646 +UniRef50_A6LS61 5 nucleotidase SurE 9.6147500703e-06 1.32295013277e-05 1459319440.6 +UniRef50_UPI000255BE74 amino acid ABC transporter substrate binding protein permease, partial 1.4158573212e-07 2.42877355122e-07 40892671.1939 +UniRef50_UPI000465DFA0 hypothetical protein 4.98826149699e-06 7.32492861085e-07 -1718106022.47 +UniRef50_UPI0003EBF881 PREDICTED 1.71500024466e-07 2.89288621641e-07 47552702.1082 +UniRef50_Q5HLG3 Sensor protein LytS 0.000229525615304 6.87505325477e-05 -64906873840.7 +UniRef50_Q8W390 Putative chitinase 2.69690674823e-06 4.43101193807e-06 700079545.002 +UniRef50_M9RU26 4.33461546298e-06 1.76133223777e-06 -1038866015.75 +UniRef50_Q2P1L2 tRNA pseudouridine synthase D 5.82296026251e-08 1.27470840355e-07 27953537.3571 +UniRef50_Q5HRU1 Glycosyl transferase, group 1 family protein 0.000166555622872 6.96453908107e-05 -39123849905.4 +UniRef50_Q834B4 Phosphate import ATP binding protein PstB 1 3.39112428316e-07 1.73217668588e-05 6856105994.2 +UniRef50_F0ML51 7.21310806769e-07 2.21421653742e-05 8647861852.3 +UniRef50_P45352 Thymidylate synthase 2.1540499595e-07 7.80290461637e-07 228051194.422 +UniRef50_UPI00039C4089 thioredoxin 2.19013299297e-06 4.61266047324e-06 978004071.54 +UniRef50_A6X351 Iron containing alcohol dehydrogenase 2.26040639422e-06 6.6094265128e-05 25770512100.4 +UniRef50_E8U4V1 GAF domain protein 4.4473406745e-07 1.68261487091e-05 6613378113.38 +UniRef50_UPI0002627C34 malonyl CoA ACP transacylase 4.82660125291e-08 4.76970551174e-07 173073283.047 +UniRef50_UPI00037877B4 hypothetical protein 3.63131481281e-08 1.05063725629e-07 27755451.8016 +UniRef50_UPI00036AE186 hypothetical protein 4.72416505519e-07 8.66689483349e-07 159172839.423 +UniRef50_P45766 Putative amino acid ABC transporter binding protein YhdW 2.17225688588e-05 7.78537747539e-06 -5626615190.05 +UniRef50_M5AC54 4.99470301883e-05 4.17031015692e-05 -3328175147.91 +UniRef50_M9S0P6 LysR family transcriptional regulator 1.28981545165e-06 7.27867790809e-06 2417777265.27 +UniRef50_R7CZZ3 1.17767043811e-07 2.05383606557e-07 35371881.5567 +UniRef50_D3QFY5 Integral membrane protein 6.25466893921e-05 2.68249396989e-05 -14421308706.3 +UniRef50_M5EV42 4.81281158324e-06 7.29686003674e-07 -1648407902.06 +UniRef50_T0TDZ2 Elongation factor G 8.39062952036e-05 6.27455524733e-05 -8542851511.74 +UniRef50_U0D6A1 Outer membrane protein 8.22688658808e-06 9.425301419e-06 483814773.446 +UniRef50_C6SP66 2.24451936999e-05 1.10055914979e-05 -4618307788.65 +UniRef50_U3TTP8 TonB dependent siderophore receptor 6.36212340763e-06 3.30578401339e-06 -1233881718.96 +UniRef50_UPI000466FDE3 hypothetical protein 2.28001391934e-08 2.929155648e-08 2620664.81725 +UniRef50_Q6FEZ0 1.20474251758e-06 7.54838947653e-05 29987405270.1 +UniRef50_W0H6X8 4.2067815377e-07 4.71869707203e-07 20666658.3119 +UniRef50_R6YEM1 7.66712993118e-08 6.92568328814e-06 2765030186.72 +UniRef50_C6SPR1 Dihydrolipoyl dehydrogenase 5.0840724431e-05 1.45766599447e-05 -14640247843.2 +UniRef50_A4WEY1 tRNA pseudouridine synthase B 3.69400837329e-05 2.18209101746e-05 -6103795898.61 +UniRef50_W8U3V5 Group II intron encoded protein LtrA 6.8930049e-06 4.29232313831e-05 14545844571.8 +UniRef50_F3U2K9 Peptidase C14, caspase catalytic subunit p20 3.13254840488e-06 2.59387475277e-06 -217469163.626 +UniRef50_V6HXV9 Winged helix turn helix domain protein 6.47909697948e-07 6.3571295824e-06 2304882127.36 +UniRef50_U6JQ37 1.36424595253e-08 5.77167388869e-07 227501929.205 +UniRef50_Q6GFX2 Catabolite control protein A 0.000230107542346 3.80101288873e-05 -77552083113.7 +UniRef50_H6SJD1 Cysteine desulfuration protein SufE 1.69849825901e-06 2.2906559659e-07 -593227997.785 +UniRef50_G1D325 Gp79 7.85300437938e-08 1.20091954979e-07 16779053.5675 +UniRef50_Q8KTE1 Fumarate hydratase class II 3.01882448378e-05 1.20720554137e-05 -7313727981.15 +UniRef50_I1AZW8 Chromosomal replication initiator, DnaA 4.01655559826e-07 1.30139056318e-07 -109614544.348 +UniRef50_F2JI77 DEAD DEAH box helicase domain protein 1.22163750441e-06 9.83344132791e-06 3476690882.26 +UniRef50_UPI0004663859 MULTISPECIES 5.78527014752e-08 1.62857094683e-07 42391562.0869 +UniRef50_F9YYA3 Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC 8.27820150938e-07 4.0808011574e-05 16140493889.6 +UniRef50_G8VHB7 2.52398093381e-06 2.71860731682e-05 9956389272.93 +UniRef50_UPI00035D3834 hypothetical protein, partial 1.3954278882e-07 3.2522093522e-07 74960546.2288 +UniRef50_A6KYV3 3.69946429073e-07 4.96712498247e-05 19903541175.8 +UniRef50_Q8CQY5 0.000116216326283 2.66791882637e-05 -36147241362.6 +UniRef50_G0DXI1 5.41662418539e-06 0.00015393574171 59958990279.4 +UniRef50_UPI0002C3D833 ATP dependent RNA helicase DDX50, putative 1.10614438841e-08 6.15903223194e-08 20399128.2834 +UniRef50_UPI00036344A4 hypothetical protein 1.15265032854e-07 1.86595725631e-07 28797076.0001 +UniRef50_C6SS95 0.000138552848724 6.30776599467e-06 -53388962727.4 +UniRef50_Q8CQY8 8.58126613482e-05 2.36399361298e-05 -25099892115.8 +UniRef50_UPI0004695099 pseudouridine synthase 2.44701952277e-08 6.99215512668e-08 18349270.1838 +UniRef50_C5WGK5 9.37746168967e-06 2.1616799477e-05 4941170858.3 +UniRef50_P0A0V8 Capsule polysaccharide export outer membrane protein CtrA 9.97760322932e-07 3.34584923105e-05 13104795841.4 +UniRef50_UPI00037565DC hypothetical protein 5.82333933469e-07 4.52806632275e-07 -52291760.9707 +UniRef50_F0YFY7 Expressed protein 2.93941552849e-07 4.94116071243e-07 80812909.4932 +UniRef50_W0YT50 Filamentous hemagglutinin, intein containing 1.21102884939e-06 8.89954912749e-07 -129621488.242 +UniRef50_A0A013K1T0 Putative cell surface adhesin domain protein 1.7478515412e-05 6.27780321918e-06 -4521864960.43 +UniRef50_K5HQD7 4.58485006708e-06 6.28333415313e-06 685698868.282 +UniRef50_UPI0001D2F1B0 Rrf2 family transcriptional regulator 2.62569170025e-07 2.42468817832e-07 -8114758.83937 +UniRef50_E3YLY4 Pts system fructose specific eiibc component 3.17013262371e-07 5.39268317471e-06 2049110229.09 +UniRef50_UPI00042CC86F 2.92179612234e-07 1.3084965807e-06 410299631.783 +UniRef50_M6FTS0 AAA domain protein 1.50127725082e-07 2.32457579222e-07 33237572.4172 +UniRef50_P54542 0.000211770667311 6.97162482514e-05 -57349112178.3 +UniRef50_UPI0004756AEC Surfeit locus 1 family protein 3.9831698654e-08 1.63998717244e-07 50127749.1054 +UniRef50_UPI000360228D hypothetical protein 3.99472170673e-08 3.35481480193e-07 119310808.637 +UniRef50_U2T0K4 7.93384590487e-07 2.85244103738e-06 831266355.073 +UniRef50_A0A017BYI2 DEAD DEAH box helicase family protein 1.85800626706e-06 7.8730021703e-05 31034175957.2 +UniRef50_P31801 Sodium proton antiporter ChaA 2.42000503345e-05 1.64827928474e-06 -9104426714.16 +UniRef50_B9KWM6 LysR family transcriptional regulatory protein 6.51276476138e-05 1.36563969496e-05 -20779575516.4 +UniRef50_Q73VG0 LigA 1.18349096969e-07 2.80373745768e-07 65411338.9862 +UniRef50_UPI0003AA941F hypothetical protein 9.91099012995e-08 4.76666131271e-07 152424083.176 +UniRef50_Q47684 Antitoxin YafW 1.49945012841e-07 5.94597393014e-06 2339927999.19 +UniRef50_D5APK9 DMSO TMAO sensor hybrid histidine kinase 7.26599131777e-05 1.45761404173e-05 -23449131831.4 +UniRef50_UPI00041F08CB MULTISPECIES 1.84859743551e-07 1.37226462387e-06 479369921.282 +UniRef50_UPI00047676D6 glyoxal reductase 3.11950340186e-07 3.89013018287e-07 31111148.8148 +UniRef50_I1ZNC1 1.2724246815e-06 9.53241738216e-06 3334660414.77 +UniRef50_UPI00016C0F2C oligopeptide ABC transporter ATP binding protein 7.93869603548e-08 6.71646554179e-08 -4934294.48757 +UniRef50_UPI00024911A4 gluconate transporter 5.90401049433e-08 1.14650595551e-07 22450637.4758 +UniRef50_A6UZP9 2.00435038326e-06 9.17990744267e-08 -772120433.018 +UniRef50_UPI000365871E Clp protease 9.14613458758e-08 2.86656770032e-07 78802788.049 +UniRef50_W0HC37 Substrate binding region of ABC type glycine betaine transport system 4.80219356483e-06 4.03817200349e-06 -308444879.912 +UniRef50_A1D4H8 1.22379187286e-06 5.52552664478e-06 1736663115.65 +UniRef50_R5XFF7 ABC transporter substrate binding protein QAT family 4.30067063677e-06 1.2385229453e-05 3263835602.8 +UniRef50_UPI00036D9D83 hypothetical protein 1.58777235822e-06 2.80269474931e-07 -527854958.849 +UniRef50_Q9JX66 Dihydroorotate dehydrogenase 1.2494084554e-06 3.25516366687e-05 12637093651.2 +UniRef50_UPI000371D657 hypothetical protein 1.26036726496e-07 4.80590427109e-07 143137679.801 +UniRef50_O29581 Adenylate kinase 3.40910940303e-07 6.63361043626e-07 130177063.619 +UniRef50_Q45582 N acetylmuramic acid 6 phosphate etherase 7.58781612204e-05 3.17374799699e-05 -17820134687.9 +UniRef50_P47719 DNA gyrase subunit A 8.05408709256e-08 8.87320878868e-08 3306894.80477 +UniRef50_Q6FAU5 2.16945970609e-06 4.83094348523e-05 18627274167.7 +UniRef50_UPI0003AA7974 signal recognition particle 7.75182707403e-08 9.64017308387e-07 357890540.065 +UniRef50_Q52675 Dimethyl sulfoxide trimethylamine N oxide reductase 8.12643621994e-05 2.12293964967e-05 -24236852366.1 +UniRef50_Q2LUC8 Chorismate synthase 6.55328459078e-08 1.84290991789e-07 47944120.8185 +UniRef50_B1X8Q2 Ribosomal RNA large subunit methyltransferase K L 3.99910582681e-05 5.57058959427e-06 -13895965590.3 +UniRef50_F9YZR8 Iron transport system substrate binding protein 2.31113870722e-06 5.47211647534e-05 21158570658.2 +UniRef50_UPI0003B48391 LytTR family transcriptional regulator 2.00136546821e-08 4.27448158308e-08 9176848.69845 +UniRef50_UPI0004411AE2 hypothetical protein AURDEDRAFT_166722 6.82667144968e-09 1.63220407764e-08 3833397.11848 +UniRef50_UPI0003941221 PREDICTED 2.37421369263e-06 3.44831840947e-07 -819286356.839 +UniRef50_Q87DN0 Tyrosine recombinase XerD 1.92384921908e-05 5.49766637191e-06 -5547340001.98 +UniRef50_Q67WC5 1.527252576e-06 1.38740300889e-06 -56458986.3895 +UniRef50_Q4FQA2 1.72858157524e-07 7.90999981851e-07 249551439.934 +UniRef50_H2G6W3 Protein NrdI 1.3901852386e-07 5.92540963524e-07 183092574.239 +UniRef50_M4K0R6 LacI family transcriptional regulator 6.06915299343e-06 7.22649038466e-06 467231306.966 +UniRef50_UPI0003FCCCFB hypothetical protein 5.23336474174e-08 9.27646657875e-08 16322498.2604 +UniRef50_T0T3K2 Metallo beta lactamase domain protein 4.36125390153e-08 1.38244366515e-06 540502554.924 +UniRef50_Q9L0Q6 Cysteine tRNA ligase 3.63105669167e-08 1.43219687708e-07 43160523.9858 +UniRef50_U0AT69 Metabolite transporter YdjK 1.42401941223e-05 5.94155404957e-06 -3350262833.13 +UniRef50_A7KA93 5.30746186852e-07 1.42750590251e-06 362032901.69 +UniRef50_Q5LXH7 Universal stress family protein 0.000168377153901 3.88574612093e-06 -66407199857.3 +UniRef50_UPI0004700444 hypothetical protein 2.95072308392e-07 2.99255490629e-07 1688802.0025 +UniRef50_Q9HVP8 Dephospho CoA kinase 4.6989957119e-06 3.48799258104e-06 -488896824.608 +UniRef50_Q8TQW9 Putative ABC transporter ATP binding protein MA_1418 4.7568740153e-07 1.08818093754e-07 -148109641.542 +UniRef50_Q5LWX2 Flagellar basal body rod protein FlgC 8.50166906782e-05 6.11000079721e-06 -31855598998.9 +UniRef50_UPI00047CD293 DNA recombination protein RecO 2.20545042034e-07 7.71868359545e-07 222575988.777 +UniRef50_P97030 Epoxyqueuosine reductase 0.000179117983362 4.3860975459e-05 -54604913880.6 +UniRef50_A4XW57 Hpt protein 3.65309021469e-05 1.01833346619e-05 -10636836314.7 +UniRef50_Q3IVV6 Polysaccharide export transporter, PST Family 2.03333992779e-05 6.32574389624e-06 -5655062370.85 +UniRef50_Q3JX83 4.30031245957e-06 4.24356917644e-07 -1564770815.6 +UniRef50_D8JJQ0 Iron ABC transporter membrane protein 3.44545834963e-06 0.000103796050427 40512765461.7 +UniRef50_W7W788 3.68075807395e-06 2.28756011952e-07 -1393615593.26 +UniRef50_I7EPE2 S adenosylmethionine uptake transporter like protein 4.21890456793e-05 5.35444547611e-06 -14870580113.4 +UniRef50_Q8NKC2 Enolase 1 2 8.04695343407e-08 1.82023579126e-07 40998614.088 +UniRef50_A5N5L0 2.4745135657e-06 3.13126237801e-05 11642298977.0 +UniRef50_UPI0003B31866 amino acid transporter 1.62498168409e-07 2.66803650859e-07 42109403.2373 +UniRef50_B2V575 O antigen polymerase family 7.77208020325e-06 2.47762386036e-05 6864787410.69 +UniRef50_UPI00037E8A3A hypothetical protein, partial 2.57003085984e-06 1.06632957577e-06 -607062660.869 +UniRef50_K4PVR2 CBS domain protein 5.4940797655e-05 1.22279660278e-05 -17243694273.3 +UniRef50_A5CWX9 Glutamate tRNA ligase 3.86575344122e-08 1.25651572801e-07 35120560.8345 +UniRef50_UPI00035ED9D3 hypothetical protein 4.8993748251e-08 7.54785941628e-08 10692257.3002 +UniRef50_G7MC17 Universal protein YeaZ 3.40077467434e-06 2.75138063398e-05 9734726783.54 +UniRef50_UPI0003613988 hypothetical protein 3.0493919609e-07 1.16814632187e-07 -75948194.9956 +UniRef50_R1FS00 1.23635185851e-07 1.0474000316e-06 372935204.098 +UniRef50_UPI000464095F hypothetical protein 1.01952176092e-06 1.03291487048e-05 3758410639.21 +UniRef50_P39576 Branched chain amino acid aminotransferase 2 0.000268107376028 6.48218218842e-05 -82068872802.2 +UniRef50_UPI000464121D hypothetical protein 2.4612526735e-08 4.72561856263e-08 9141522.96336 +UniRef50_K1RE18 6.2816312872e-08 6.10208507727e-08 -724850.082285 +UniRef50_P15327 Bisphosphoglycerate mutase 6.23795600731e-08 1.08268953876e-07 18526111.4044 +UniRef50_F0XXU5 8.74650125795e-08 1.13113787233e-06 421343540.787 +UniRef50_F0YHA3 2.36426599738e-06 1.24088389482e-07 -904387190.38 +UniRef50_UPI000462977B histidine kinase 1.12583443757e-06 6.48716970574e-07 -192618176.316 +UniRef50_A0A059MSQ1 Nitrate reductase 0.000150568675188 0.000123481090345 -10935590403.2 +UniRef50_F9Z138 2.19894750786e-06 4.33502596118e-05 16613289679.7 +UniRef50_UPI00046D9133 phosphoenolpyruvate carboxykinase 8.02112816047e-08 4.28474870624e-06 1697423353.8 +UniRef50_Q8KGA4 tRNA N6 adenosine threonylcarbamoyltransferase 5.38758578937e-08 8.83245350637e-08 13907353.7063 +UniRef50_E2NSW7 4.54287105067e-07 6.73012857944e-07 88302270.5033 +UniRef50_Q3IUZ2 Heme oxygenase 0.000435390875864 3.73236877723e-05 -1.60704608666e+11 +UniRef50_B2TJJ8 tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA 6.66924419929e-06 1.54178983577e-05 3531939041.81 +UniRef50_Q16BP5 7.66175360171e-07 6.06961755882e-07 -64276485.8221 +UniRef50_D7BLM1 Binding protein dependent transport systems inner membrane component 2.32061058724e-06 4.40577014963e-05 16849775771.7 +UniRef50_R5GV02 Secreted protein containing YkuD domain 1.07616879793e-07 1.72612542519e-06 653411761.111 +UniRef50_B7GH97 ABC type phosphate transport system, permease component 7.48560292923e-05 2.40597102306e-05 -20507097346.1 +UniRef50_D2NRP6 Coenzyme F420 reducing hydrogenase, beta subunit 2.34504103953e-06 7.6882732741e-06 2157128421.93 +UniRef50_UPI000366D18B hypothetical protein 1.96797320789e-07 9.24132575723e-07 293634167.824 +UniRef50_B5ZBT9 Proline tRNA ligase 4.65135926004e-08 1.99945943491e-07 61942522.8814 +UniRef50_Q8UIG9 Non canonical purine NTP pyrophosphatase 6.88642360407e-05 1.01184815712e-05 -23716381970.8 +UniRef50_UPI0004643C42 hypothetical protein, partial 1.39933459821e-06 1.61856424623e-06 88505699.156 +UniRef50_UPI00046FAF78 hypothetical protein 1.03507330461e-06 5.90485042604e-06 1965988782.81 +UniRef50_B2UXE1 3.43169080774e-06 6.61788553117e-06 1286305908.85 +UniRef50_K0DDY9 Microcin C7 resistance MccF related protein 4.05030845321e-05 8.21269919409e-06 -13036024808.5 +UniRef50_Q6GH34 N anthranilate isomerase 6.5051868209e-05 3.50095556353e-05 -12128450246.6 +UniRef50_A8L6K4 LexA repressor 3.16645847368e-07 1.1081991629e-07 -83094454.1444 +UniRef50_Q9Z3Z9 Toluene tolerance protein ttg2D 4.91783184043e-06 1.27247701284e-05 3151756788.76 +UniRef50_I0I649 Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK 6.12139680036e-06 7.80441547387e-06 679455291.458 +UniRef50_F6D1L5 Xylose isomerase domain containing protein TIM barrel 2.24925413178e-05 1.02320336228e-05 -4949717409.82 +UniRef50_Q9RZ79 Transposase, putative 1.23478133149e-06 0.000429027097673 1.72705007709e+11 +UniRef50_P0AB12 Inner membrane protein YccF 1.72346402246e-05 5.16588988672e-06 -4872302611.63 +UniRef50_A6LXM0 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 1.8874299443e-06 1.42051889635e-05 4972830471.95 +UniRef50_L5KNJ4 WD repeat containing protein 87 8.09052772138e-09 3.23534098249e-09 -1960098.46633 +UniRef50_UPI000377831E hypothetical protein 1.01831861527e-07 2.85735257348e-07 74244057.6414 +UniRef50_UPI0003B6F3ED nucleoside triphosphate diphosphatase 1.17363265233e-06 5.04742258989e-07 -270039260.0 +UniRef50_A1B0E7 Acetylglutamate kinase 1.54155108597e-06 8.48405521458e-07 -279831370.246 +UniRef50_Q5P1C8 8.32591470293e-07 1.63380493103e-06 323459706.094 +UniRef50_X1KF22 Marine sediment metagenome DNA, contig 6.85793501564e-06 1.12301788684e-06 -2315256420.24 +UniRef50_Q07GR3 0.00016581224447 2.48152299019e-05 -56922225009.0 +UniRef50_E6MWK1 SbmA BacA like family protein 1.61548925324e-06 1.76243468271e-05 6462972253.36 +UniRef50_W6KN67 Putative NADH ubiquinone oxidoreductase 40 kDa subunit 7.36214076142e-07 8.61396934836e-08 -262443005.589 +UniRef50_UPI0003B48A00 GMP synthase 6.15960390187e-08 8.85403732431e-08 10877758.3706 +UniRef50_UPI00032AF5D9 PREDICTED 1.1285820038e-06 9.47630406671e-07 -73052380.2868 +UniRef50_Q9ZKP0 Glycerol 3 phosphate dehydrogenase [NAD+] 3.85798571872e-06 3.90734971314e-05 14216934100.2 +UniRef50_Q8CPV9 Poly D alanine transfer protein 0.000219088762896 3.61427352327e-05 -73857556367.8 +UniRef50_G8VMV3 Sialidase 9.83036429352e-07 4.87860616049e-05 19298667872.4 +UniRef50_Q1MPX7 4 hydroxy tetrahydrodipicolinate synthase 5.08967976595e-08 2.05997135341e-07 62615909.6174 +UniRef50_UPI00037FAB1B hypothetical protein, partial 1.29396873694e-06 0.000114959373946 45888118914.2 +UniRef50_B0TQM3 3 isopropylmalate dehydratase small subunit 3.07330698401e-07 5.52039687365e-07 98792021.7617 +UniRef50_Q1JGW5 NAD kinase 6.45814430224e-05 1.41989020267e-05 -20340050063.3 +UniRef50_A7I616 Imidazole glycerol phosphate synthase subunit HisF 7.56609975408e-06 4.68632765413e-05 15864752499.6 +UniRef50_F6CVN5 GAF domain protein 0.000135596815316 5.64192330961e-05 -31964961560.4 +UniRef50_Q8ZRF8 2.97211154937e-05 1.52008493276e-05 -5862009634.96 +UniRef50_D3DYP4 Glycosyl transferase GT2 family 8.21424456438e-05 1.07840977881e-05 -28808240694.7 +UniRef50_I6T9G0 Transmembrane protein 6.87963158644e-05 1.9368285029e-05 -19954702598.4 +UniRef50_UPI000288BCD3 nitrate ABC transporter ATPase 4.53552548777e-07 1.27279426934e-07 -131720463.109 +UniRef50_C1N5D9 Predicted protein 4.96470169118e-07 1.12684440923e-06 254489816.295 +UniRef50_UPI0004636F1F hypothetical protein 2.30679144739e-06 6.71846796626e-07 -660047218.539 +UniRef50_C0QHY2 UvrB2 3.78237584406e-07 8.91367576156e-07 207156874.483 +UniRef50_R4ZU58 Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen 2.7825399592e-06 2.29198903288e-06 -198041428.692 +UniRef50_E3D229 Chromosome partition protein Smc 3.56904496265e-07 3.04679435341e-05 12156195963.6 +UniRef50_Q250M1 50S ribosomal protein L24 1.68048246176e-05 0.000214926424239 79984120992.4 +UniRef50_UPI000473E9CF hypothetical protein, partial 3.69502597392e-07 2.87360092872e-07 -33161937.0766 +UniRef50_Q818M5 Probable glycine dehydrogenase subunit 2 0.000238938454721 5.97346017526e-05 -72346794521.7 +UniRef50_M7TFP2 Putative tho complex subunit 2 protein 6.81067763257e-08 7.03367453174e-06 2812085179.99 +UniRef50_U5MPT8 Bacteriohemerythrin 9.76256867724e-06 4.33232381113e-05 13548854086.3 +UniRef50_R5HX70 Ethanolamine utilization protein EutP 7.51721073371e-05 1.39439891413e-05 -24718542669.1 +UniRef50_Q6ZG43 5.48403386872e-07 9.80887042638e-07 174598959.004 +UniRef50_I6T6D9 Glycerophosphoryl diester phosphodiesterase 4.22852342985e-05 3.26617517008e-05 -3885118018.1 +UniRef50_P07604 Transcriptional regulatory protein TyrR 6.20117634629e-05 1.35549898565e-05 -19562594136.4 +UniRef50_Q8CN32 Thiamine phosphate synthase 6.29361685471e-05 0.000158059280677 38402367658.7 +UniRef50_Q04939 Sucrose operon repressor 2.40199252677e-06 1.93219036903e-05 6830775767.36 +UniRef50_Q47RU5 Polyribonucleotide nucleotidyltransferase 1.82767993463e-06 7.14262766938e-05 28097807582.5 +UniRef50_A0A024HFG1 1.0752233141e-05 2.47467201068e-06 -3341753005.41 +UniRef50_H3WBP5 2.06681316991e-05 4.86688668404e-06 -6379156515.68 +UniRef50_J0MXI6 Adenosylmethionine 8 amino 7 oxononanoate transaminase 3.48502938672e-05 1.83774195303e-05 -6650301514.71 +UniRef50_R5BEJ3 6.93908067699e-07 1.62769708649e-05 6291073676.91 +UniRef50_A6LVT5 1.68124925177e-06 9.46665331784e-06 3143063159.12 +UniRef50_I2DH65 1.1257037441e-06 1.17121703789e-05 4273886491.02 +UniRef50_UPI000345C5CB hypothetical protein 6.81971497556e-08 5.01983139938e-07 175124727.389 +UniRef50_UPI00037DE01D hypothetical protein 7.56789544466e-07 1.73486913054e-07 -235486430.229 +UniRef50_G0J3G6 Zinc iron permease 9.12466851349e-05 4.31154335565e-05 -19431176899.1 +UniRef50_U4Q8Z1 Endonuclease III 1.02386165005e-05 2.10090339737e-05 4348149701.82 +UniRef50_UPI00036716D2 hypothetical protein 6.80195942643e-07 3.88384507556e-07 -117807857.274 +UniRef50_B7IR21 Membrane protein PfoR 0.000209336169686 6.49784041562e-05 -58279001413.4 +UniRef50_Q7M922 Na H(+) antiporter NhaA 2.16114010239e-06 2.82869470504e-05 10547308864.6 +UniRef50_UPI0003761FCC hypothetical protein 2.1447436385e-08 7.07869533641e-08 19918968.4684 +UniRef50_Q4K5N7 TonB dependent outermembrane heme receptor HasR 2.86597476869e-06 7.42312623017e-07 -857348468.472 +UniRef50_T7JW17 7.85939587724e-06 2.51333366122e-06 -2158270920.17 +UniRef50_A0A024HEK4 Porin 2.61011295582e-05 1.75132742346e-05 -3467022578.97 +UniRef50_P44700 7.38311246761e-06 1.30286781696e-06 -2454669378.46 +UniRef50_UPI000374F1B4 hypothetical protein 1.45067788055e-07 7.85186536664e-08 -26866702.2024 +UniRef50_UPI00041B0045 hypothetical protein 2.20748775524e-08 5.03677510498e-08 11422180.2235 +UniRef50_A1ATB7 Chitinase like protein 6.30622375573e-08 1.52552859258e-07 36128462.154 +UniRef50_H1SFP6 1.41722455005e-06 8.53028432373e-07 -227772896.171 +UniRef50_B4EUV9 Glutamate cysteine ligase 2.06377764425e-05 1.34438560782e-06 -7788978636.5 +UniRef50_F7XAZ8 1.98229730383e-06 4.21579601885e-07 -630080888.437 +UniRef50_W5X8Y0 Peptidase M48 1.38654061062e-07 1.41144001206e-07 1005219.39113 +UniRef50_O67137 DNA gyrase subunit B 4.39997863012e-08 1.22551844734e-07 31712429.9315 +UniRef50_K9ZYZ2 Arabinose efflux permease family protein 1.19206101737e-06 0.000205589752463 82517856278.5 +UniRef50_A5ULL7 2.97225907426e-05 7.08760092468e-06 -9138023152.05 +UniRef50_UPI00046F1E3C hypothetical protein 1.26873860828e-07 5.0168209657e-07 151314684.183 +UniRef50_T0TL61 Lactose transport regulator 1.53536775642e-07 6.48244188079e-07 199719453.143 +UniRef50_Q48UU5 Dephospho CoA kinase 9.53093777523e-05 4.72545999697e-05 -19400303489.3 +UniRef50_UPI000463EC33 hypothetical protein 1.98911799001e-06 1.11640289318e-06 -352325794.009 +UniRef50_UPI00022347EB PREDICTED 2.46429742265e-08 8.42214638841e-08 24052567.3851 +UniRef50_I0EKZ4 2.19894750786e-06 5.57459306959e-05 21617574208.4 +UniRef50_G7M9E2 Methyl accepting chemotaxis sensory transducer with Cache sensor 4.50620950411e-06 1.18738813975e-05 2974419554.86 +UniRef50_P65761 Ribulose phosphate 3 epimerase 4.37242458129e-06 8.54835968379e-05 32745575586.0 +UniRef50_UPI00046FBBBF NADH dehydrogenase 6.86121984767e-07 1.27211279563e-06 236571681.261 +UniRef50_F0N3E0 Cytoplasmic membrane protein fxsA 2.34463347108e-06 4.06139111418e-05 15449777012.5 +UniRef50_C4J1H3 4.09578550276e-06 9.99172290877e-06 2380262282.09 +UniRef50_Q89L00 Serine tRNA ligase 0.000107566958561 2.9234109763e-06 -42245884280.8 +UniRef50_R0F7X0 Integral membrane protein MviN 3.06630550148e-06 1.98897245898e-06 -434932569.62 +UniRef50_R0UHS1 Putative phage associated protein 4.65897663776e-07 4.5540670446e-05 18197238901.8 +UniRef50_Q8CUF7 0.00110224020908 0.000454665444219 -2.6143387921e+11 +UniRef50_G2TGT9 Cobalt transport protein 1.90009725932e-06 6.01016880922e-05 23496696433.1 +UniRef50_A5N7Z4 Predicted kinase 2.38662361821e-06 6.51585918362e-06 1667023069.17 +UniRef50_UPI0003819C59 hypothetical protein 8.72516090294e-08 9.38912677734e-08 2680511.71273 +UniRef50_L0LQZ5 7.43009680486e-06 4.39680468259e-06 -1224577252.44 +UniRef50_B5SF72 2.49092813432e-07 3.16786564492e-07 27328797.9987 +UniRef50_A0A013VHK1 Transposase 4.14775602109e-07 2.69701180834e-07 -58568324.1321 +UniRef50_UPI00037C70BA hypothetical protein 5.50994953737e-08 2.62054163011e-07 83550138.9444 +UniRef50_V9R2C2 Membrane protein 4.07177420556e-06 3.30578401339e-06 -309239640.336 +UniRef50_H8FXB7 1.49233923074e-06 7.504670227e-07 -299502914.181 +UniRef50_H8FXB4 2.34347300812e-06 1.41234199185e-06 -375909017.531 +UniRef50_P54462 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 0.000203580712091 4.26646247612e-05 -64963799117.6 +UniRef50_UPI00037DBCEA hypothetical protein, partial 1.37025148585e-07 1.18574092261e-07 -7448917.85792 +UniRef50_S5SFD1 2.58007632619e-07 2.80988874222e-08 -92816981.7336 +UniRef50_UPI000375BFC5 hypothetical protein 7.77121079081e-08 2.02524797919e-08 -23197156.9794 +UniRef50_H3WII0 7.71185244842e-06 7.59452860521e-07 -2806769029.17 +UniRef50_Q2RG70 Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region 3.10262456591e-06 3.19261302914e-06 36329446.8886 +UniRef50_B7V7H6 5.5786106727e-06 9.84389017326e-06 1721945675.24 +UniRef50_O68045 DNA polymerase III subunit epsilon like protein 7.43431578925e-06 5.39981291656e-06 -821353775.863 +UniRef50_B7V5S0 7.86274064212e-06 3.08062720852e-06 -1930597876.28 +UniRef50_A9B1M6 3.51137641153e-07 4.22774751959e-07 28920780.7186 +UniRef50_K8ETB2 1.09355192806e-06 1.32726560005e-05 4916853768.44 +UniRef50_P78937 Sulfate adenylyltransferase 9.02138832696e-07 5.10465803275e-07 -158123208.346 +UniRef50_Q47EP3 Error prone DNA polymerase 4.2124783504e-06 1.26018676189e-06 -1191876342.97 +UniRef50_A0A026RF42 Diguanylate cyclase 3.2116849012e-06 1.34791477824e-06 -752426869.67 +UniRef50_P74861 Aromatic amino acid aminotransferase 5.89011596326e-06 7.92362563739e-06 820952809.416 +UniRef50_A4J657 NADH quinone oxidoreductase subunit D 1.13021451636e-07 2.37238741028e-07 50148044.0451 +UniRef50_UPI0003A2B6FD uroporphyrinogen decarboxylase 6.32850264661e-08 1.88432202058e-06 735174981.159 +UniRef50_UPI0003660926 Cro Cl family transcriptional regulator 2.4266775905e-06 2.79405363841e-07 -866880147.896 +UniRef50_W9B2U5 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 1.39427502255e-06 4.176857519e-07 -394261072.659 +UniRef50_A1ASQ4 1.07874508205e-07 3.62863149535e-07 102942043.567 +UniRef50_UPI0003B4C286 oxidoreductase 4.11012281665e-07 6.01522952245e-08 -141646482.062 +UniRef50_UPI0003B45BD8 peptide ABC transporter ATP binding protein 9.54442566009e-08 9.56323493439e-08 75935.3485066 +UniRef50_Q05626 7.75656141478e-06 1.00676149498e-05 933000671.904 +UniRef50_UPI00036ED21D hypothetical protein 8.13119955571e-06 1.03684797422e-05 903217465.801 +UniRef50_Q9G021 Phi ETA orf 24 like protein 1.37250020466e-05 8.16543885337e-06 -2244463884.62 +UniRef50_O26935 1.6819739176e-05 3.80236101113e-06 -5255275306.36 +UniRef50_Q4QLU9 23S rRNA C(5)) methyltransferase RlmC 2.87306788598e-05 7.83199043592e-06 -8437056972.47 +UniRef50_P19262 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 3.77209184039e-08 5.8055057455e-08 8209141.46288 +UniRef50_UPI000466CF44 hypothetical protein, partial 1.32662964437e-07 1.69715116519e-07 14958408.4765 +UniRef50_UPI00042AB16A PREDICTED 7.54777288966e-07 3.18698680276e-06 981912827.284 +UniRef50_G2KYU1 6.25344752869e-06 2.28247940239e-06 -1603128561.85 +UniRef50_UPI0004645274 hypothetical protein, partial 1.30782794563e-06 3.17876366238e-07 -399655600.673 +UniRef50_UPI00016C59CC ABC type multidrug transport system, ATPase component, partial 3.52119131375e-07 1.31574952526e-07 -89036391.3828 +UniRef50_UPI0002FCA31A hypothetical protein 2.30274725677e-06 1.29274123384e-06 -407751825.624 +UniRef50_UPI000465045A glutathione synthetase 5.18552849191e-07 8.02523520297e-07 114642444.637 +UniRef50_Q3J1E9 Plasmid and phage replicative helicase 9.13075280516e-05 2.34776033579e-05 -27383772965.6 +UniRef50_Q9HML8 Phosphate import ATP binding protein PstB 2 1.16942725619e-07 1.47833286614e-06 549609905.864 +UniRef50_Q1IZ14 Major facilitator superfamily MFS_1 7.91375238722e-07 3.03156226216e-05 11919300971.7 +UniRef50_UPI0004219822 hypothetical protein 2.32860421517e-07 3.6916690131e-07 55028598.561 +UniRef50_O83327 CTP synthase 7.01329252741e-08 8.5070302577e-07 315125728.243 +UniRef50_Q51559 Rhamnosyltransferase 1 subunit A 1.13236721943e-05 7.08567437779e-06 -1710931724.61 +UniRef50_P05719 Type 1 restriction enzyme EcoKI specificity protein 2.90364002369e-05 1.26686926462e-05 -6607844408.72 +UniRef50_A1U0X4 N anthranilate isomerase 1.10592815915e-07 6.50626549224e-07 218018245.096 +UniRef50_UPI00047A0DA3 cation 1.99049384127e-06 7.09943691843e-06 2062543014.03 +UniRef50_UPI000379D46E hypothetical protein 2.63592460515e-07 5.54479059578e-07 117434489.622 +UniRef50_D6GSS9 CRISPR associated endonuclease Cas1 4.22455519902e-05 4.31611893752e-06 -15312577569.9 +UniRef50_G7MA72 Cys Met metabolism pyridoxal phosphate dependent protein 9.31396860111e-06 2.21944649005e-05 5200014417.53 +UniRef50_UPI00036713D4 hypothetical protein 1.15168961292e-06 6.38332080909e-07 -207248735.278 +UniRef50_UPI00005C7F68 hypothetical protein 7.56672371091e-05 1.38698075168e-05 -24948380666.1 +UniRef50_W4V5S1 Electron transfer flavoprotein 1.00416539455e-07 1.37795435268e-07 15090318.9303 +UniRef50_C6SH91 Copper transporting ATPase copA 5.34682703719e-07 2.51794614812e-05 9949399617.92 +UniRef50_B5F2H2 Porin thermoregulatory protein EnvY 7.0917025558e-07 1.20391508817e-06 199734560.118 +UniRef50_Q1GFF4 Transcriptional regulator, XRE family 6.80907387788e-06 3.26739513398e-06 -1429819170.2 +UniRef50_UPI0003828BA0 hypothetical protein 1.01514421555e-07 1.72177951526e-07 28527734.1883 +UniRef50_UPI00037D9868 hypothetical protein 3.61577737852e-07 2.16349234575e-06 727455039.188 +UniRef50_J3M965 4.42768252838e-06 2.22755444406e-05 7205400871.85 +UniRef50_W4UAJ0 Integral membrane protein 4.3693027582e-07 7.55738376825e-06 2874614452.68 +UniRef50_Q8CUF1 4.29994075062e-05 2.16276634162e-05 -8628035349.92 +UniRef50_B7V1W7 Vanillate O demethylase oxygenase subunit 1.14853749147e-06 5.75832139712e-05 22783371426.2 +UniRef50_P32721 D allose import ATP binding protein AlsA 6.27220960356e-05 4.87989412088e-05 -5620948459.9 +UniRef50_A4XIS1 Bifunctional protein GlmU 4.18654747068e-08 5.07337271199e-08 3580222.32486 +UniRef50_Q2SM53 SufE protein probably involved in Fe S center assembly 1.90824251422e-07 1.68165196228e-07 -9147738.63969 +UniRef50_Q9KRL4 Carboxynorspermidine carboxyspermidine decarboxylase 1.02980743078e-06 8.30739051027e-08 -382207942.043 +UniRef50_UPI00035E542D hypothetical protein 3.69557565204e-07 2.44055033728e-07 -50666912.0461 +UniRef50_F0Y457 1.93432161966e-06 8.22219723141e-06 2538492545.37 +UniRef50_Q3J3X6 5.28152513841e-05 5.30633076176e-06 -19179934255.2 +UniRef50_B9KS17 Chemotaxis protein methyltransferase 0.000160956173897 4.5274182983e-05 -46702239309.6 +UniRef50_A6LX14 GCN5 related N acetyltransferase 2.35438246685e-06 2.17646779182e-05 7836174464.8 +UniRef50_I4DAA0 UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase 2.42318351035e-05 5.75006335563e-06 -7461318051.47 +UniRef50_F9Z004 Menaquinone specific isochorismate synthase 1.65564030199e-06 6.44130951652e-05 25335954648.8 +UniRef50_UPI0003C1484E 3.42418972292e-08 1.53411790021e-08 -7630451.88617 +UniRef50_A8LC93 NADH quinone oxidoreductase subunit I 2.21565439207e-07 8.11312366933e-07 238088071.732 +UniRef50_UPI0003141905 hypothetical protein 8.57101305966e-07 6.2356200803e-07 -94282680.4262 +UniRef50_U2Z6J9 1.88403600774e-07 5.13764815013e-07 131352314.819 +UniRef50_B9E8Y3 Xanthine phosphoribosyltransferase 0.000153540988411 3.67421704271e-05 -47153116102.8 +UniRef50_UPI00036CDCFE hypothetical protein 9.64780395073e-07 2.04216397562e-06 434952972.451 +UniRef50_Q8CP83 2 oxoglutarate dehydrogenase E1 component 0.00018636790867 3.98732613491e-05 -59141686815.0 +UniRef50_UPI00030EEC63 hypothetical protein 1.9084247147e-06 3.61474083056e-07 -624522953.212 +UniRef50_Q04JH4 Triosephosphate isomerase 1.92248946055e-07 4.88347589596e-05 19637578203.2 +UniRef50_Q4L9P9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000237682542607 7.53192880043e-05 -65548038304.4 +UniRef50_P0AEH3 Protein ElaA 0.000346817930719 1.13782586522e-05 -1.35421111921e+11 +UniRef50_V5WXJ4 Lytic transglycosylase 1.30789180878e-05 1.5769621105e-05 1086269826.68 +UniRef50_Q8CTV2 ATP phosphoribosyltransferase regulatory subunit 6.74622572899e-05 3.95368219863e-05 -11273840915.7 +UniRef50_V9U722 5.53940761972e-05 1.45237723867e-05 -16499843183.3 +UniRef50_K7RTT6 O antigen polymerase 2.62968339136e-06 9.59417425795e-05 37671223362.0 +UniRef50_A3PH69 Alpha beta hydrolase 1.98264573618e-05 8.65237791873e-06 -4511112992.55 +UniRef50_UPI0003B51C59 ABC transporter permease 2.58103776828e-07 3.34060704141e-07 30664743.6526 +UniRef50_Q57S48 HTH type transcriptional repressor AllR 2.64163304755e-05 3.62041843285e-05 3951476710.93 +UniRef50_UPI00029A79A0 HAD family hydrolase 5.2702814321e-07 1.73432249524e-06 487399545.082 +UniRef50_G8VAK1 ABC transporter 4.10310857448e-06 3.02698360664e-05 10563828990.3 +UniRef50_G9WFA5 Maltose maltodextrin ABC permease 3.98024301197e-05 1.69107322023e-05 -9241659361.98 +UniRef50_UPI0003A1DBBC sodium 6.3695631343e-07 3.7646767367e-06 1262699116.32 +UniRef50_D8LB80 1.64524832966e-07 2.86522974023e-08 -54853409.9507 +UniRef50_UPI00037A8200 hypothetical protein 5.96278313763e-08 4.58069254279e-07 160855691.852 +UniRef50_X3EKF3 4.96137885679e-07 5.92589235048e-07 38938593.3314 +UniRef50_W4HLY6 2.06295347483e-06 3.05856013721e-07 -709361807.061 +UniRef50_Q3J3X8 0.000178708096648 3.88452009428e-05 -56464367306.8 +UniRef50_K4PQW7 9.68282567052e-06 7.00355822605e-06 -1081653145.64 +UniRef50_UPI0002F01115 hypothetical protein 1.42975669354e-07 1.67173770384e-07 9769070.3299 +UniRef50_G7U413 Pyridine nucleotide disulfide oxidoreductase 3.56347795263e-06 5.66886637644e-05 21447289431.6 +UniRef50_D3QHT0 9.25235716019e-05 1.92619424699e-05 -29576618701.9 +UniRef50_F9EIZ7 3.98249745694e-06 1.33652031744e-05 3787913436.89 +UniRef50_R7CST7 ABC type proline glycine betaine transport system periplasmic component 1.31496402917e-06 8.96535594104e-07 -168924693.93 +UniRef50_M4RA06 1.47072463189e-06 7.68430891371e-05 30428748473.7 +UniRef50_Q2FHR7 Carbamate kinase 1 0.000109880921477 1.91592924308e-05 -36625434925.5 +UniRef50_UPI000255E3EB 1 deoxy D xylulose 5 phosphate reductoisomerase 8.99507681555e-07 1.53021916864e-07 -301365463.616 +UniRef50_P54475 DEAD box ATP dependent RNA helicase CshB 5.91822693621e-05 8.11585907005e-05 8872110604.1 +UniRef50_Q989G9 Mlr6427 protein 0.000130231991246 3.61434483257e-05 -37984699373.2 +UniRef50_Q9RZE0 1.22163750441e-06 0.000145374961013 58196465660.8 +UniRef50_F0VYG1 Cysteine desulfurase 1.14621251678e-06 2.44405402366e-05 9404205954.03 +UniRef50_B7ICE8 TonB dependent receptor protein 1.8951621741e-06 3.8260054362e-05 14680953223.7 +UniRef50_UPI00046ED547 major facilitator transporter, partial 6.55243909766e-08 2.07922153975e-07 57487724.3393 +UniRef50_Q0SWZ1 1,4 alpha glucan branching enzyme GlgB 1 2.04988237964e-08 2.70011869011e-08 2625083.77834 +UniRef50_D1CAE1 Pyridoxal 5 phosphate dependent protein beta subunit 9.43012751554e-08 1.0575995378e-07 4626009.17455 +UniRef50_Q31MP6 Diguanylate cyclase with GAF sensor 2.78084750586e-07 4.12417913775e-07 54231946.4327 +UniRef50_I6X0E0 Lipoprotein 1.58504723108e-07 2.61098488444e-07 41418362.0332 +UniRef50_M2CCG1 3.5686646938e-05 1.26376029742e-05 -9305181891.76 +UniRef50_W0Z4J7 Histidine kinase 5.84177167014e-07 1.48282782229e-06 362796297.219 +UniRef50_B1J7Z5 3 demethylubiquinone 9 3 methyltransferase 2.19017386806e-05 3.79421891038e-06 -7310227935.48 +UniRef50_I1Y621 Lytic murein transglycosylase 1.22608437683e-06 9.10707841257e-05 36271407807.1 +UniRef50_X5EFR9 Two component sensor 5.57037858615e-07 2.94364044167e-05 11658954669.2 +UniRef50_X1THZ3 Marine sediment metagenome DNA, contig 1.11381533479e-07 3.5288493879e-07 97497888.3041 +UniRef50_UPI0002195D59 Zn dependent hydrolase 3.52896184622e-08 1.93075033029e-07 63699908.1055 +UniRef50_UPI0003902576 ATP synthase gamma chain 1.33860279732e-06 2.90029227032e-07 -423322017.771 +UniRef50_R9SM98 Radical SAM domain containing protein 2.12963227343e-05 5.04985578368e-06 -6558898074.53 +UniRef50_UPI00030D5D10 hypothetical protein 2.19104628124e-06 4.98771594867e-07 -683192057.433 +UniRef50_G7M580 4.9713719824e-06 6.80297921892e-06 739442317.731 +UniRef50_E6MYM9 8.08898547544e-06 4.69487536722e-05 15688165284.0 +UniRef50_UPI000376AE97 hypothetical protein 2.6243952233e-06 2.74939442967e-06 50463713.5243 +UniRef50_Q28PV9 N acetyl gamma glutamyl phosphate reductase 0.000103608088111 5.6236187507e-05 -19124617592.4 +UniRef50_UPI0001BC2E61 thioredoxin reductase 7.01997203629e-08 2.8759509681e-07 87765181.2129 +UniRef50_R5RVQ5 2.22972884241e-07 8.13456768788e-07 238385590.244 +UniRef50_L0HHM1 1.65052744804e-06 3.62491890366e-07 -519995760.605 +UniRef50_A4X335 ABC transporter related 5.46215554625e-05 0.000132996681079 31640999982.3 +UniRef50_A0A023S0B1 Glutathione S transferase 1.50193364259e-06 4.30752266902e-05 16783648565.0 +UniRef50_UPI00035E14F7 hypothetical protein 3.27889384243e-06 6.12176642895e-07 -1076586457.75 +UniRef50_I2BCP0 6.55773221752e-07 2.94603113935e-06 924605225.96 +UniRef50_D2NNT4 2.76090624944e-08 9.32403267345e-08 26496146.7599 +UniRef50_UPI00034A702A hypothetical protein 1.18076873778e-07 1.15194952007e-07 -1163467.18411 +UniRef50_Q0TQK1 Trigger factor 8.91182046329e-06 1.03261877795e-05 570997441.793 +UniRef50_Q4ZQB6 Transcriptional regulator, LysR family 5.69092874814e-06 4.20671954498e-06 -599193468.611 +UniRef50_P53580 Methionine aminopeptidase B 2.45733545271e-07 0.00027988090924 1.12892151938e+11 +UniRef50_E3EL28 Nicotinate phosphoribosyltransferase and like protein 7.86429143391e-07 5.58043776739e-06 1935400110.61 +UniRef50_Q9HUY1 Dihydrolipoyl dehydrogenase 3 3.32814596165e-07 6.38502847262e-07 123410098.185 +UniRef50_UPI00047E1DD8 hypothetical protein 4.17006319736e-08 1.03959403871e-07 25134630.216 +UniRef50_Q2Y7L8 Chorismate synthase 3.44847541689e-05 0.000126181357442 37019043985.2 +UniRef50_A5V6F9 Anhydro N acetylmuramic acid kinase 5.40083299955e-08 2.48688167267e-07 78594639.2966 +UniRef50_UPI0003B6910D hypothetical protein 1.18967260701e-07 1.27702661251e-07 3526588.39745 +UniRef50_A3PRF9 0.000119904191803 2.11010264719e-05 -39888050295.3 +UniRef50_G7WBX4 Arabinose efflux permease family protein 2.02304594079e-06 1.49866450885e-05 5233564057.18 +UniRef50_A2SDV6 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 5.98818429438e-08 8.86705299464e-08 11622346.2199 +UniRef50_I0C160 Glycerophosphodiester phosphodiesterase 0.000113213837572 2.85707655749e-05 -34171446852.5 +UniRef50_UPI0003640286 hypothetical protein 3.95865378117e-08 4.92687969092e-07 182922607.988 +UniRef50_P40871 2,3 dihydroxybenzoate AMP ligase 8.78111553783e-08 2.69006019936e-06 1050559872.24 +UniRef50_F8F763 0.000181289481533 8.03977944792e-05 -40731212143.9 +UniRef50_G7ZLK0 0.000183150675424 2.48238435055e-05 -63918484934.4 +UniRef50_UPI0003629F80 membrane protein, partial 2.48612408341e-07 5.24623882368e-07 111429219.106 +UniRef50_Q98FA5 Thiamine import ATP binding protein ThiQ 7.72788544042e-08 1.45778381632e-07 27654099.7256 +UniRef50_UPI0003600109 hypothetical protein 1.8900326105e-07 1.11444571544e-07 -31311394.7057 +UniRef50_Q5X9H7 Holliday junction ATP dependent DNA helicase RuvA 7.29177193588e-05 4.39581487419e-05 -11691334031.9 +UniRef50_Q4L5A2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000198277412269 1.58205377784e-05 -73660079229.6 +UniRef50_Q4L7Q5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 6.45740686697e-05 2.94155131318e-05 -14193940314.6 +UniRef50_P65328 Riboflavin synthase 5.09637756629e-07 5.56829607498e-07 19051929.3049 +UniRef50_Q8CZ55 1.42772776373e-07 2.76229829954e-05 11094098085.5 +UniRef50_Q831A8 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.000331872188932 0.00020459449129 -51383568411.1 +UniRef50_UPI00036518A8 hypothetical protein 1.1674824398e-06 9.13350634579e-07 -102596128.316 +UniRef50_P0A264 Outer membrane protein C 7.72079053831e-05 1.10480594676e-05 -26709541668.7 +UniRef50_P44068 2.66760447144e-05 9.40787617346e-05 27211303985.4 +UniRef50_J9YRQ9 Large conductance mechanosensitive channel protein 1.58417757226e-05 4.71250061484e-06 -4493024932.58 +UniRef50_A1B1F2 UDP 3 O acylglucosamine N acyltransferase 4.42888757957e-05 1.25230199507e-05 -12824265815.5 +UniRef50_Q1CUR3 Glutamyl tRNA reductase 8.65132136393e-07 3.19103585154e-05 12533338857.0 +UniRef50_UPI00035E28E1 hypothetical protein 6.53430107331e-08 6.28467855974e-07 227340410.343 +UniRef50_Q0TRY8 Lysine N methylase, homolog 1.09205204105e-06 2.06512423193e-05 7896285133.61 +UniRef50_C4LGM2 Catalase 8.44487670801e-07 4.89269975426e-05 19411499274.0 +UniRef50_UPI0002F0DA53 hypothetical protein 3.19484217821e-07 3.19531240963e-07 18983.8194642 +UniRef50_F0MZQ2 2.23479749099e-07 8.35576250771e-07 247110868.994 +UniRef50_UPI000382677B hypothetical protein 2.26925829482e-06 7.17079860765e-07 -626633481.197 +UniRef50_Q10MG8 Retrotransposon protein, putative, Ty3 gypsy subclass, expressed 7.78486052185e-08 1.27814362604e-06 484573829.181 +UniRef50_H3UXX3 2.7655723769e-05 5.14789824035e-06 -9086685368.01 +UniRef50_A8LNJ9 Flagellar biosynthesis regulatory protein FlaF 9.027201014e-07 9.42644421527e-07 16117937.9618 +UniRef50_UPI0003F80943 hypothetical protein 2.12727593867e-08 4.9545565599e-08 11414078.8143 +UniRef50_K0HHI0 1.69783803081e-06 4.9246611229e-05 19196023229.2 +UniRef50_UPI00005DE9C0 MULTISPECIES 8.34576471041e-08 1.8169669153e-07 39660307.7634 +UniRef50_UPI00040056AC hypothetical protein 8.93248404841e-08 1.44298065302e-07 22193365.4563 +UniRef50_UPI000368B929 cold shock protein 5.30313289166e-07 6.97309310371e-07 67418343.0321 +UniRef50_A6LVD8 3.80019451866e-06 1.34680188875e-05 3903019335.25 +UniRef50_UPI00037150E3 hypothetical protein 1.24096716083e-06 1.70323099998e-06 186621584.48 +UniRef50_P64558 4.16361673609e-05 3.81053813154e-06 -15270670692.6 +UniRef50_P52559 N5 carboxyaminoimidazole ribonucleotide synthase 4.76450579676e-08 8.95915780389e-08 16934324.8945 +UniRef50_R6KNU0 Glycosyl transferase 3.47107417614e-06 1.26998362134e-05 3725764484.09 +UniRef50_T9UBD7 2.68010530422e-06 3.72849510488e-07 -931467477.141 +UniRef50_A6LXN0 Polyprenyl synthetase 5.03953857256e-06 3.10835773641e-05 10514298056.4 +UniRef50_Q65ID2 Peptide methionine sulfoxide reductase MsrB 1.4935587378e-07 8.24139642406e-06 3266856070.65 +UniRef50_UPI0003B62BEC hypothetical protein, partial 1.0810008296e-07 1.57009548949e-05 6295026833.41 +UniRef50_S4WAF1 Synthase [glutamine hydrolyzing] 1.20647088602e-06 1.0952938109e-06 -44883549.5221 +UniRef50_U3AMR8 9.34795194891e-08 7.2063233964e-08 -8646017.27386 +UniRef50_G7M622 Transcriptional regulator, LuxR family 1.96949211577e-06 1.41124840683e-05 4902274862.49 +UniRef50_I6SFZ0 TPR domain containing protein 6.29126657933e-08 4.99407976911e-06 1990772671.84 +UniRef50_UPI00047C4D4C hypothetical protein 1.46885477652e-07 3.07224686161e-07 64730906.0584 +UniRef50_Q9Z9U1 Sorbitol dehydrogenase 0.000193516641736 5.0590100551e-05 -57701198582.3 +UniRef50_Q5HPF3 Phosphate ABC transporter, permease protein 8.78099935867e-05 1.54303750142e-05 -29220540215.5 +UniRef50_UPI0004652E03 hypothetical protein 2.06124920403e-05 1.12428188694e-06 -7867629586.16 +UniRef50_C1L2X6 UDP N acetylenolpyruvoylglucosamine reductase 1.81031602232e-07 8.43292360779e-06 3331390064.75 +UniRef50_D0DAU8 Phage integrase 1.67275918245e-06 4.34360707186e-07 -499956661.321 +UniRef50_Q2J514 Endoribonuclease L PSP 8.51472155308e-06 3.23663754501e-05 9629205370.93 +UniRef50_A6E7D3 1.98776573373e-06 2.36873282938e-06 153801091.506 +UniRef50_UPI000225B5DA magnesium chelatase; methanol dehydrogenase regulator, partial 5.40364387347e-07 1.88279228719e-06 541954616.608 +UniRef50_A5IPN7 2.29131606966e-06 1.22169320374e-06 -431819876.72 +UniRef50_B8KSJ4 Phosphate starvation inducible E 5.63365188014e-07 3.29591929588e-07 -94377133.1471 +UniRef50_K0JY23 2.3091407609e-07 7.1054417983e-08 -64537305.6764 +UniRef50_D3T5X9 Mannitol dehydrogenase domain protein 5.65179451584e-06 1.28525462466e-05 2907031836.87 +UniRef50_P24554 DNA repair protein RadA 3.09342043247e-05 9.76899845666e-05 26950127669.2 +UniRef50_UPI0004711C23 6 phospho beta glucosidase 5.50938034135e-08 1.9806022383e-07 57717298.3176 +UniRef50_A3PQ11 6.42286083439e-05 4.58636157457e-06 -24078306913.4 +UniRef50_P25550 Anaerobic sulfatase maturating enzyme homolog AslB 1.91564907731e-05 1.49367648179e-05 -1703555149.97 +UniRef50_Q320T0 Diguanylate cyclase DosC 2.65782254141e-05 3.57261126401e-06 -9287648743.03 +UniRef50_P24752 Acetyl CoA acetyltransferase, mitochondrial 4.80404621216e-08 8.69455576069e-08 15706464.4666 +UniRef50_UPI0003828B5A hypothetical protein, partial 4.16364986934e-07 2.3046962464e-07 -75048238.9507 +UniRef50_Q070J3 Virion core protein 5.90192665843e-09 9.36802695393e-09 1399307.22313 +UniRef50_A9B2U4 3 methyl 2 oxobutanoate hydroxymethyltransferase 6.34069412285e-08 9.96248383562e-08 14621609.514 +UniRef50_Q2YZ25 Putative hemin transport system permease protein HrtB 0.00022698712603 8.40512171193e-05 -57704980448.2 +UniRef50_UPI000479F72A hypothetical protein 1.27911073191e-07 1.24607745134e-07 -1333594.073 +UniRef50_B9FT55 1.04229824533e-06 4.05369708573e-07 -257135866.281 +UniRef50_C6STC0 4.7151520229e-05 2.92392777421e-06 -17855221807.6 +UniRef50_K0ELZ4 Transcriptional regulator 1.18062210939e-07 1.27090826937e-07 3644963.07197 +UniRef50_F0RLU8 Alpha beta hydrolase fold protein 6.62156832023e-06 1.17715421482e-05 2079107631.64 +UniRef50_X5QUZ2 1.07210071844e-06 5.34885241154e-06 1726577140.15 +UniRef50_A4WPB0 5.95658441196e-06 3.87724339418e-06 -839455485.261 +UniRef50_Q2JXG9 tRNA N6 adenosine threonylcarbamoyltransferase 5.80922141835e-08 1.17109049712e-07 23825820.7209 +UniRef50_I0EL02 1.85648846977e-06 5.70709903582e-05 22290771970.5 +UniRef50_A3JC42 3.28843471043e-07 1.91933406003e-06 642100568.29 +UniRef50_P53434 Putative GTP cyclohydrolase 1 type 2 9.18738992938e-08 1.52904522701e-05 6135852595.82 +UniRef50_Q1D054 8.88446300182e-07 2.76614349167e-07 -247004066.647 +UniRef50_A0QJB3 Polyphosphate kinase 1.25884466729e-07 5.55380391152e-06 2191317687.92 +UniRef50_UPI00035D6A77 hypothetical protein 3.89183596963e-07 5.63148003496e-08 -134383217.952 +UniRef50_M1N0K2 FeS cluster assembly protein SufD 3.46299045347e-06 4.17167838273e-06 286106013.621 +UniRef50_V6UQJ7 Membrane protein 4.45673408356e-06 1.49244910393e-06 -1196718222.14 +UniRef50_UPI0003B63A1B acetyltransferase 1.18176132609e-06 1.16851094155e-06 -5349342.8393 +UniRef50_G8NAB2 Replicative DNA helicase DnaB 4.26209298448e-06 0.000512180383658 2.05052846803e+11 +UniRef50_A0LV48 Probable dual specificity RNA methyltransferase RlmN 1.53597847628e-07 2.23656383507e-07 28283490.6493 +UniRef50_D4HEJ4 Phospholipase, patatin family 1.46312398781e-06 6.33069496057e-05 24967111311.0 +UniRef50_UPI00037DE98D hypothetical protein 2.1357038177e-07 1.8065180657e-07 -13289632.7646 +UniRef50_F5XRV0 Polyprenyl diphosphate synthase 1.05541282996e-06 3.61036326254e-05 14149396421.4 +UniRef50_O27679 Protein pelota homolog 3.29525344478e-05 8.05033787533e-06 -10053322340.6 +UniRef50_A9ADZ8 BolA family protein 5.5783774969e-07 1.72846545988e-05 6752821223.11 +UniRef50_E7PV88 Transposase IS861 orfB 6.73289766303e-07 2.94934636254e-07 -152746608.94 +UniRef50_UPI0004770260 glucose 1 phosphate adenylyltransferase 4.08635719305e-08 5.8956132068e-07 221516014.449 +UniRef50_P0A933 Putative polysaccharide export protein GfcE 6.66031743796e-05 9.26881587662e-06 -23146584099.4 +UniRef50_G2I4D0 7.99256087773e-08 2.16785627555e-07 55252069.042 +UniRef50_UPI0004789CC8 hypothetical protein 1.15173522346e-06 2.99082739924e-07 -344226270.826 +UniRef50_Q9RRU8 S ribosylhomocysteine lyase 6.72266251472e-07 0.000583279369581 2.35205637007e+11 +UniRef50_X2LN33 5.16602569039e-07 1.38509723157e-07 -152640721.604 +UniRef50_B2HU41 NADH quinone oxidoreductase subunit A 6.74261606283e-07 5.58496713183e-05 22274989979.2 +UniRef50_U3TT52 Cytoplasmic protein 0.000138377582737 2.95232341088e-05 -43945836334.2 +UniRef50_P75916 Inner membrane protein YcdZ 9.12218933045e-06 3.97287047353e-06 -2078843211.79 +UniRef50_P9WQB2 2 isopropylmalate synthase 4.08179916298e-08 3.50369511836e-07 124969747.331 +UniRef50_O27636 ORC1 type DNA replication protein 2 2.03981818382e-05 1.20634950341e-05 -3364815340.92 +UniRef50_A4J6I7 Xanthine phosphoribosyltransferase 3.60802186924e-07 3.77066008089e-07 6565904.18384 +UniRef50_UPI000374951A hypothetical protein 3.77008142513e-07 1.70371498e-07 -83421749.1067 +UniRef50_UPI0002DBEA5E ImpA family type VI secretion associated protein 5.01298295168e-08 9.02939316489e-08 16214740.8997 +UniRef50_UPI0003B4D6D9 NADH dehydrogenase 4.50201320614e-08 7.52577831454e-08 12207310.8003 +UniRef50_F7W6Q2 WGS project CABT00000000 data, contig 2.35 1.96741033551e-08 9.95662297439e-09 -3923066.07659 +UniRef50_UPI0003618C13 2,3 dihydroxybenzoate 2,3 dehydrogenase, partial 4.15946601356e-07 3.71216688124e-07 -18058014.8695 +UniRef50_B9KTW7 4.24241318697e-05 4.98115346756e-06 -15116189857.9 +UniRef50_UPI0001D2F064 adenosylcobinamide phosphate synthase 2.23569813254e-07 9.53480383303e-07 294673854.139 +UniRef50_UPI000344E65D phosphomethylpyrimidine synthase 4.43345227567e-08 1.41967490244e-07 39415627.0659 +UniRef50_C0H3V8 7.86133872416e-07 6.80123934597e-07 -42797512.7858 +UniRef50_F8IRV1 Anthranilate synthase component II 6.81316265366e-05 1.61732017706e-05 -20976253679.6 +UniRef50_D4HEY5 6.54599980668e-06 1.10055914979e-05 1800391891.09 +UniRef50_Q5FLZ3 tRNA N6 adenosine threonylcarbamoyltransferase 0.000262870365471 0.000153160634563 -44291164657.4 +UniRef50_Q5CQR3 1.53387161071e-07 6.56104887678e-07 202953315.271 +UniRef50_B0VM39 Potassium transporting ATPase C chain 3.74987109523e-06 0.00010565064503 41138592900.7 +UniRef50_Q8CTZ4 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.000114338220404 2.16121282061e-05 -37434661297.4 +UniRef50_C5N0F9 X Pro dipeptidyl peptidase C terminal non catalytic domain protein 0.000156896822387 3.48452064901e-05 -49273735079.4 +UniRef50_G7R7B9 1.15847312024e-05 5.09873033243e-06 -2618478143.39 +UniRef50_UPI0003FE850D hypothetical protein 5.33932403205e-07 6.4062192689e-07 43071869.9393 +UniRef50_P02925 D ribose binding periplasmic protein 5.07319146911e-05 8.37530144169e-06 -17099884542.9 +UniRef50_UPI00030221F2 metallophosphoesterase 3.60871255989e-08 6.29701916285e-06 2527615093.71 +UniRef50_A5UN81 Predicted ATPase, AAA+ family 2.94928313237e-05 7.070872076e-06 -9052020096.68 +UniRef50_UPI0003724574 CRISPR associated protein Csn1, partial 1.8392035029e-05 4.11106723978e-06 -5765401943.68 +UniRef50_A1WZJ2 60 kDa chaperonin 0.000268005975217 0.000139229155658 -51988782325.2 +UniRef50_P08957 Type I restriction enzyme EcoKI M protein 1.75921514787e-05 1.10938204227e-05 -2623455990.8 +UniRef50_Q98QK7 2.78911964858e-06 5.07457703944e-06 922667194.406 +UniRef50_A7X4T7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 5.28677204065e-05 5.48070710579e-05 782939656.479 +UniRef50_Q57GJ7 Ascorbate specific phosphotransferase enzyme IIA component 2.9104856148e-05 1.12715346447e-05 -7199530730.35 +UniRef50_P58967 Putative homocitrate synthase AksA 3.80550937265e-08 8.35254455261e-08 18356939.0055 +UniRef50_P78067 Thiosulfate sulfurtransferase YnjE 1.918552526e-05 1.0243275422e-05 -3610095993.35 +UniRef50_B7H3X0 Bacterial regulatory helix turn helix protein, AraC family protein 2.36915892584e-06 9.78933405055e-05 38564284317.3 +UniRef50_Q8YAM6 ATP synthase subunit beta 1 1.32029202228e-07 2.90636368227e-05 11680045027.1 +UniRef50_Q6GEN7 Tagatose 1,6 diphosphate aldolase 0.000117392290246 1.85607913453e-05 -39899488905.1 +UniRef50_A0A024JA58 Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit 9.4694636242e-08 1.7690166138e-06 675944328.582 +UniRef50_UPI000478EDC7 hypothetical protein 2.12687957533e-06 2.77582337378e-07 -746583988.389 +UniRef50_S4C0T0 2.87972154232e-08 9.31292669092e-06 3748116998.34 +UniRef50_UPI00047AEF8E phosphohydrolase 4.27781934739e-08 1.30159444156e-07 35276883.1889 +UniRef50_V5C9A8 Anthranilate 1,2 dioxygenase electron transfer component AntC 2.15240194098e-07 1.28948007131e-07 -34837214.8028 +UniRef50_X1LWS5 Marine sediment metagenome DNA, contig 1.13230912885e-06 1.56979303293e-07 -393752619.22 +UniRef50_UPI00016B263F molecular chaperone GroEL 1.32397823298e-07 8.70740838077e-08 -18297749.8171 +UniRef50_UPI0003787BF0 hypothetical protein 3.26514748465e-07 2.41834077632e-07 -34186625.964 +UniRef50_Q2SEB7 3.57370694784e-08 5.34485844583e-08 7150355.94212 +UniRef50_Q5HMD7 Cell division protein, FtsW RodA SpoVE family 0.000204393239274 6.17972085519e-05 -57567767452.5 +UniRef50_C9Y1J4 Penicillin binding protein activator LpoB 6.27264501339e-05 2.77727308957e-06 -24202218431.9 +UniRef50_K3XR47 6.65677806712e-08 9.95312311704e-08 13307749.4736 +UniRef50_A0AI76 Ribonuclease HII 1.30802379018e-05 4.73590015569e-05 13838757535.3 +UniRef50_Q6AG81 Arginine tRNA ligase 2.73630674835e-08 1.33500869557e-05 5378547121.87 +UniRef50_L3UJQ1 4.09040933354e-06 5.48163191922e-06 561653630.06 +UniRef50_Q9ZL83 Ribonuclease Y 9.39019872821e-07 4.70335940686e-05 18608945246.9 +UniRef50_Q890T6 Conserved protein 6.28802491806e-06 1.96375536325e-05 5389368559.14 +UniRef50_B8I2Q1 LexA repressor 9.45772278924e-05 4.86126432313e-05 -18556466876.6 +UniRef50_W0N7A1 Urea ABC transporter ATP binding protein 4.30729455398e-05 2.23610168042e-05 -8361659794.51 +UniRef50_P95231 Serine acetyltransferase 9.14936860443e-08 3.1969071978e-07 92125942.8117 +UniRef50_UPI00036454DD hypothetical protein 1.00964683628e-06 3.74786925159e-07 -256300736.727 +UniRef50_V4NEJ0 Cupin 1.2956521331e-06 4.0945897789e-07 -357767051.571 +UniRef50_G7ZTM6 Capsular polysaccharide synthesis enzyme 0.000112707305353 2.18048295862e-05 -36698444965.9 +UniRef50_A3MA53 2.53914342281e-06 6.22617523217e-05 24110750091.3 +UniRef50_M9RK06 Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein 3.31579272076e-05 9.2470031499e-06 -9653133462.13 +UniRef50_A4WX60 4.60064182079e-05 2.590497414e-06 -17527539997.8 +UniRef50_A6M1Q8 Periplasmic binding protein LacI transcriptional regulator 2.3519376252e-06 6.15506306557e-06 1535368409.87 +UniRef50_UPI000464A0A1 hypothetical protein 2.99494683304e-06 4.59488546187e-07 -1023595623.97 +UniRef50_Q5HHQ6 Putative acetyltransferase SACOL0827 0.000196026484559 1.95959237771e-05 -71227182434.1 +UniRef50_Q0AP83 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 9.29347169502e-08 8.54862967682e-08 -3007018.62987 +UniRef50_D3E0S2 5.39200134072e-05 2.50268394227e-06 -20757806866.6 +UniRef50_W4TUN4 Sugar binding protein 3.39699433373e-06 2.08871098032e-06 -528170044.214 +UniRef50_B9EAX4 Capsular polysaccharide synthesis protein CapM homolog 0.000165831730562 1.60779051382e-05 -60457457009.8 +UniRef50_Q8TKX9 Cysteine desulphurase 1.95544607495e-05 1.51595541576e-05 -1774277722.72 +UniRef50_UPI00037AD2A9 hypothetical protein 2.42925184615e-08 1.63680525141e-06 650991178.048 +UniRef50_G7M1Z6 Methyl accepting chemotaxis sensory transducer with Cache sensor 5.4840579493e-07 8.19594717126e-06 3087406299.51 +UniRef50_Q8CTH3 3.50048521322e-06 6.03386230433e-07 -1169594410.75 +UniRef50_B5HEJ3 1.59671545941e-06 1.24915033282e-06 -140316306.708 +UniRef50_UPI00036A911D hypothetical protein 2.15819166836e-06 3.95997246021e-07 -711419512.856 +UniRef50_T1ZGA3 Phosphomethylpyrimidine kinase 7.9226880745e-05 2.3469221874e-05 -22510051109.6 +UniRef50_P14503 3.14416699214e-07 1.64480680309e-07 -60531010.7538 +UniRef50_UPI00037E35E9 hypothetical protein 5.53392102257e-08 4.72152392411e-06 1883796029.52 +UniRef50_A3MZB9 Bifunctional protein PyrR 1.93222579283e-07 4.55037444567e-07 105697873.945 +UniRef50_UPI0003B6F64B ABC transporter 2.65609478455e-08 5.61329681251e-08 11938587.4764 +UniRef50_R2NFJ2 Pyruvate flavodoxin oxidoreductase 4.81651038881e-06 3.11806484705e-05 10643526067.9 +UniRef50_A0A028CJT1 LysR family transcriptional regulator 1.93681284374e-05 1.17892041956e-05 -3059704720.27 +UniRef50_B8I741 ABC transporter transmembrane region 2.20760911454e-06 3.06058031153e-05 11464699403.2 +UniRef50_A0RBD6 Dehydratase 9.80439086498e-07 3.59411811592e-06 1055174297.63 +UniRef50_UPI000409C1DE hypothetical protein 9.8957499695e-06 6.69842992572e-07 -3724611861.2 +UniRef50_G4RBE3 Mannonate dehydratase 3.26374039885e-05 6.63936577622e-06 -10495727058.1 +UniRef50_D3QHV2 Sec independent protein translocase protein TatC 0.000158708493303 2.80481299394e-05 -52749192073.0 +UniRef50_E0XRZ7 5.08708555389e-07 2.99119982787e-07 -84613478.7004 +UniRef50_UPI0003EDA90F porin 2.9839456409e-07 1.22544724618e-06 374262543.975 +UniRef50_V5VAB4 Bacterial SH3 domain containing protein 1.66537936259e-06 0.000127863040218 50947544306.6 +UniRef50_Q9RZJ6 1.40372518616e-05 4.48582337002e-06 -3856028891.26 +UniRef50_Q0BST5 DNA gyrase subunit A 9.00702142388e-08 1.95441422267e-07 42539649.731 +UniRef50_P44499 Peptidyl prolyl cis trans isomerase B 4.70174852084e-07 3.73870841931e-07 -38879110.6819 +UniRef50_C3M8S2 Holo [acyl carrier protein] synthase 2.34706567405e-07 6.53740128412e-07 169168990.699 +UniRef50_B6IVS2 Inner membrane protein, putative 3.40071432112e-07 4.25495740781e-07 34486841.6838 +UniRef50_UPI00047BD367 hypothetical protein 8.20210789772e-07 7.2976127754e-07 -36515578.0284 +UniRef50_A6WKC8 UPF0246 protein Shew185_1115 1.78739628481e-07 2.92211102985e-07 45809826.7088 +UniRef50_D0JN49 Phosphoribosylformylglycinamidine synthase 3.22013581259e-05 2.63366553752e-05 -2367652468.45 +UniRef50_UPI0004716A86 ArsR family transcriptional regulator 7.26729627766e-07 4.54385767127e-07 -109948558.575 +UniRef50_H9KKZ5 1.63865616273e-07 4.69552308527e-08 -47198157.2458 +UniRef50_G7T9S3 Hemolysin 1.03813785047e-07 0.000185651933379 74908052811.6 +UniRef50_A3PJ91 RDD domain containing protein 1.34457504704e-05 1.14316143946e-05 -813131450.03 +UniRef50_K4NAS3 ATP binding protein 9.62829334316e-07 4.50725498205e-05 17807635447.4 +UniRef50_UPI000465E2F8 hypothetical protein 2.04680601567e-07 8.06963275557e-08 -50053972.8764 +UniRef50_UPI0004720CE8 hypothetical protein 1.65157244039e-08 2.21435530712e-08 2272023.49421 +UniRef50_P0AAZ6 Replication associated recombination protein A 3.33903177393e-05 1.86319687815e-06 -12727885572.9 +UniRef50_UPI00016A522C branched chain amino acid ABC transporter, ATP binding protein, putative, partial 1.2046407464e-06 4.18048887437e-07 -317556786.031 +UniRef50_M5AH54 Nod factor export ATP binding protein I 8.451752392e-05 1.959947716e-05 -26208212111.0 +UniRef50_UPI0003EF2FDA hypothetical protein 2.28545633113e-07 9.52634532885e-06 3753635834.0 +UniRef50_A9B932 Transposase Tn3 family protein 8.877058781e-08 2.69295828127e-06 1051342528.83 +UniRef50_A3VKI4 8.68386358093e-08 1.81167427234e-07 38081690.6426 +UniRef50_P24228 D alanyl D alanine carboxypeptidase DacB 2.1479328406e-05 6.1178896677e-06 -6201601324.7 +UniRef50_B9KM28 9.03462595371e-06 1.96974497368e-06 -2852179147.48 +UniRef50_S6D8D3 Low affinity zinc transport protein 4.04143507692e-08 5.10572362342e-08 4296663.46511 +UniRef50_P76395 4.08367658429e-05 1.20632635497e-05 -11616215966.3 +UniRef50_P76393 1.61884864734e-05 6.03845694919e-06 -4097691473.79 +UniRef50_Q4FV40 Protein translocase subunit SecA 9.14554623038e-07 2.6393849541e-05 10286304024.5 +UniRef50_D8JKX1 1.91805412359e-06 6.61926593243e-05 25948446857.6 +UniRef50_UPI000380F87B hypothetical protein 9.4605649507e-08 3.50506512857e-07 103310318.791 +UniRef50_UPI000369EA6C hypothetical protein 7.54927689689e-07 1.29042710414e-07 -252677446.606 +UniRef50_UPI0003FAEB30 hypothetical protein 1.22397552346e-06 1.92188156742e-07 -416545221.4 +UniRef50_L8GXF4 3.89880431757e-08 1.57115098714e-08 -9397022.13013 +UniRef50_N2E2F5 4Fe 4S binding domain protein 7.67599519366e-06 3.61612292071e-06 -1639020256.83 +UniRef50_UPI0003B6D996 histidine kinase 7.82075901019e-07 1.49547228307e-07 -255359587.174 +UniRef50_UPI00047EF35E UDP glucose 6 dehydrogenase 4.94273422851e-08 6.77405876674e-08 7393281.88963 +UniRef50_M3A5Y8 5.09450165986e-07 2.85063862555e-07 -90587504.2247 +UniRef50_Q3JZG9 DNA polymerase IV 3.17450039145e-06 3.86881677843e-05 14337303328.2 +UniRef50_UPI000225C205 uroporphyrinogen decarboxylase 4.41287561633e-08 1.94944434551e-07 60886140.0817 +UniRef50_UPI0003D25C42 2.05832915712e-08 3.72932413979e-08 6746011.79918 +UniRef50_P54570 ADP ribose pyrophosphatase 2.9378034508e-07 1.59275626219e-05 6311549753.23 +UniRef50_A5UKV4 Tetrahydromethanopterin S methyltransferase, subunit H, MtrH 4.6837178207e-05 1.20810300869e-05 -14031483502.0 +UniRef50_U9QRW9 3.12418786305e-06 4.20739908483e-06 437305662.729 +UniRef50_G7MD43 Major facilitator superfamily MFS_1 2.98887627138e-06 3.06467582996e-06 30601211.9639 +UniRef50_B7N8L4 NAD NADP dependent betaine aldehyde dehydrogenase 7.41335995176e-05 7.34301281587e-05 -284000020.152 +UniRef50_P0AA45 Ribosomal small subunit pseudouridine synthase A 6.56397842415e-05 1.09868773183e-05 -22064049191.5 +UniRef50_UPI000255C349 acetolactate synthase large subunit, biosynthetic type 4.30534744141e-08 1.50541746648e-07 43394334.5303 +UniRef50_V9VYZ6 3.40849217295e-05 1.68722795394e-05 -6948954875.02 +UniRef50_UPI0003626A85 hypothetical protein 2.68570898279e-07 1.94718317402e-07 -29815193.1731 +UniRef50_UPI0003B4A90A ABC transporter permease 7.90656112397e-07 6.90202662406e-07 -40554290.4638 +UniRef50_W6RWI6 Accessory gene regulator A 3.10688641281e-06 1.39499873323e-05 4377492901.01 +UniRef50_Q6GCF0 0.000143803548941 1.35450576654e-05 -52586951379.6 +UniRef50_Q3IWP7 Transcriptionalregulator, CopG family 7.95254564388e-06 1.67160399168e-05 3537930178.15 +UniRef50_UPI00046423A0 cytochrome C peroxidase 6.14593576839e-08 5.79683765031e-07 209213552.575 +UniRef50_UPI00035E30BB hypothetical protein, partial 1.62725133144e-08 1.51848534125e-06 606461752.864 +UniRef50_D8JHX6 HAD superfamily hydrolase 8.49202608176e-06 4.92110311384e-05 16438762019.7 +UniRef50_R9YPY8 5 formyltetrahydrofolate cyclo ligase 8.88531742269e-05 2.72502592665e-05 -24869852722.3 +UniRef50_UPI00047AFA4E phosphoadenosine phosphosulfate reductase 9.51370248088e-07 4.50406777512e-07 -202245100.585 +UniRef50_UPI0003783983 hypothetical protein, partial 1.49800726181e-05 5.96716908635e-06 -3638619756.53 +UniRef50_Q8D7Y9 Putative phosphoenolpyruvate synthase regulatory protein 2.40515221541e-07 3.36287931878e-07 38664618.4264 +UniRef50_Q3J212 Putative site specific recombinase 0.000124805215646 2.27530356911e-05 -41199717368.9 +UniRef50_E0XYI3 8.28471921266e-07 8.76973032016e-07 19580493.5853 +UniRef50_W8RQU9 NAD dependent epimerase dehydratase 2.40651310919e-05 4.14480153221e-06 -8042081493.18 +UniRef50_E9AHU1 Putative proteophosphoglycan ppg3 5.38380646231e-07 2.53598347206e-06 806456774.131 +UniRef50_UPI0003B65B0E hypothetical protein 2.73272186874e-06 9.16829402051e-07 -733098072.309 +UniRef50_UPI000379B86A DNA glycosylase 1.35124853812e-06 5.5579394333e-07 -321134781.242 +UniRef50_UPI00047102D6 hypothetical protein, partial 1.09581281357e-07 7.55361424701e-08 -13744440.3495 +UniRef50_UPI0003FB549E hypothetical protein 2.07900101879e-07 6.81847792411e-07 191338498.66 +UniRef50_D2NAU9 3.30362446384e-05 1.0361989656e-05 -9153874980.79 +UniRef50_Q8CSJ5 8.98705882384e-05 8.44944481866e-06 -32870714748.3 +UniRef50_B2A1L0 2.19092300153e-07 2.60860289061e-07 16862249.673 +UniRef50_M2E1P6 5.78117043215e-05 1.90368564859e-05 -15653881892.1 +UniRef50_C1DHE5 Glutamine tRNA ligase 4.65932100577e-08 2.1836635499e-07 69346926.5026 +UniRef50_UPI000349FB4B hypothetical protein 5.12862679603e-08 7.76288285823e-08 10634814.9827 +UniRef50_W8YH03 1.48503291249e-06 1.70549703163e-06 89004070.2958 +UniRef50_Q4WFT3 GMP synthase [glutamine hydrolyzing] 2.74020234713e-07 3.44541475935e-07 28470290.4743 +UniRef50_U6GVJ1 2.53489742296e-09 2.11887520512e-08 7530790.02194 +UniRef50_Q9RRB6 S layer protein, putative 3.09035540679e-06 0.000430984142786 1.72745972812e+11 +UniRef50_F8DJB0 4.73770014378e-05 4.25966617895e-05 -1929881777.38 +UniRef50_O67929 Cyclic pyranopterin monophosphate synthase 4.87570064408e-08 1.64232784999e-06 643344104.854 +UniRef50_B8E1C0 Aspartate tRNA ligase 3.92084850654e-08 3.79200537625e-08 -520155.527811 +UniRef50_UPI0001BF5F9C hypothetical protein SMAC_10519, partial 7.69795205211e-07 2.80075915917e-07 -197705686.619 +UniRef50_UPI0004689482 ATPase 5.38689782115e-08 5.25482724182e-07 190396256.6 +UniRef50_P0AEF6 Transcriptional regulatory protein DpiA 7.95460004886e-05 1.04938647764e-05 -27877194552.0 +UniRef50_UPI00047CE7FB hypothetical protein 5.55983754963e-08 2.85299547789e-08 -10927853.6105 +UniRef50_UPI0003B7292B NADPH 7.5125552962e-08 3.61498331687e-07 115612204.96 +UniRef50_UPI00036B1DE9 hypothetical protein 1.62014959467e-07 2.07508154981e-07 18366161.2933 +UniRef50_Q8EEW2 Beta hexosaminidase 4.93984915594e-08 2.68147756788e-07 88311762.7283 +UniRef50_A0A023RVE4 Pseudouridine synthase 1.81774954504e-06 5.82748975575e-05 22792443459.8 +UniRef50_R5AKD9 3.73609548616e-08 6.18462798639e-08 9885026.17215 +UniRef50_UPI000301EB97 hypothetical protein 3.73669893678e-07 4.92656746437e-07 48036452.5917 +UniRef50_O27389 Diaminopimelate epimerase 3.27128112704e-05 1.09949399603e-07 -13162175419.3 +UniRef50_Q3J219 9.17279890428e-05 0.000117821220607 10534157782.4 +UniRef50_Q2NTI7 Zinc import ATP binding protein ZnuC 3.94086584827e-07 9.96151373797e-08 -118881736.905 +UniRef50_UPI00036763CC hypothetical protein 3.89532424231e-06 1.41565132136e-06 -1001074387.2 +UniRef50_UPI0003825772 30S ribosomal protein S3, partial 6.61850742575e-06 2.31739106474e-05 6683619438.24 +UniRef50_Q5HQ24 Glutamate racemase 0.000120358582851 2.6952915443e-05 -37709014149.0 +UniRef50_I6TZB4 Bifunctional biotin [acetyl CoA carboxylase] synthetase biotin operon repressor 6.95937004861e-05 3.72892728292e-05 -13041693865.0 +UniRef50_Q6FDU5 1.47840465605e-06 8.75799678865e-05 34760257661.1 +UniRef50_UPI00035CC932 hypothetical protein 5.56201652412e-06 9.03625637947e-07 -1880649565.63 +UniRef50_D5ALJ9 3.89286109336e-05 4.51924523232e-06 -13891483184.0 +UniRef50_D5ALJ7 8.97977843215e-06 1.17522195184e-06 -3150795223.78 +UniRef50_Q04945 NADH dependent butanol dehydrogenase B 3.00657964137e-06 5.60228426439e-06 1047917809.19 +UniRef50_P15259 Phosphoglycerate mutase 2 6.79648735669e-08 1.0549584957e-07 15151715.5693 +UniRef50_UPI00047BB10D branched chain amino acid ABC transporter ATP binding protein 7.29621829493e-08 6.30157142243e-07 224946442.618 +UniRef50_Q9RSI5 5.40049443584e-06 0.000726578826685 2.91148542582e+11 +UniRef50_P17410 HTH type transcriptional regulator ChbR 1.31271512007e-05 4.56465532064e-06 -3456784660.42 +UniRef50_C5NTZ6 Reaction center 1.45637926656e-05 5.1794170825e-06 -3788587582.14 +UniRef50_Q8CPT4 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 0.000109053691337 2.65226926027e-05 -33318776958.3 +UniRef50_UPI000370920E hypothetical protein 5.13427303554e-07 4.83911296476e-07 -11915974.2595 +UniRef50_Q8EM59 Thymidine kinase 0.000181811676006 4.22128983982e-07 -73229186032.8 +UniRef50_C5FB81 APC family amino acid polyamine organocation transporter 0.000206801559155 4.09173673634e-05 -66969483854.4 +UniRef50_Q9RUP8 Isoleucine tRNA ligase 3.50064286395e-07 0.000244647270947 98625780192.9 +UniRef50_UPI0003F80A61 thioredoxin 6.65319215028e-07 2.23040135141e-06 631842864.174 +UniRef50_Q5HPR5 DNA translocase FtsK 0.000165738678715 4.5214202804e-05 -48657209926.9 +UniRef50_N6VGJ5 Thiamin phosphate synthase 4.01053256054e-07 3.85528087616e-07 -6267701.01366 +UniRef50_G7U546 TENA THI 4 family protein 1.60632335681e-06 8.07202310559e-05 31939255374.9 +UniRef50_A1SGH4 Cell envelope related transcriptional attenuator 5.16184758638e-08 4.11324039319e-07 145217550.05 +UniRef50_Q3A5S0 Malate dehydrogenase 5.60644806432e-07 1.64495190045e-07 -159930461.438 +UniRef50_M9KL10 Outer membrane autotransporter barrel domain protein 8.16261896091e-06 3.23762748526e-06 -1988279495.16 +UniRef50_E2CRM4 1.04665849264e-06 5.60318320821e-07 -196341495.428 +UniRef50_Q8CN54 Antiholin like protein LrgA 0.000206835770519 4.9334672803e-05 -63585125903.8 +UniRef50_T0TSZ1 5.76308851901e-05 2.86756274229e-05 -11689592881.6 +UniRef50_Q95YF6 Molluscan shell protein 1 9.99022283468e-08 7.85149612036e-08 -8634302.19699 +UniRef50_B9XKZ0 Putative GAF sensor protein 8.80463329241e-08 7.90367397433e-06 3155264787.37 +UniRef50_UPI00036B80A8 hypothetical protein 7.98156911501e-07 5.4424926186e-07 -102505633.957 +UniRef50_M9RTF7 Methionine biosynthesis protein 4.14819767969e-06 2.24543806803e-05 7390430719.47 +UniRef50_K2BFX5 1.0844384873e-07 1.83190639973e-07 30176196.8711 +UniRef50_Q98K42 Mll1647 protein 3.22950934952e-08 2.79133489141e-08 -1768964.05744 +UniRef50_Q2SMN3 Protein RnfH 1.97981141273e-07 3.10034306319e-07 45237237.776 +UniRef50_UPI0004652B27 NAD synthetase 3.80855132462e-08 1.29381877545e-06 506954927.53 +UniRef50_Q9ZJI6 Ribonuclease J 1.85416023437e-07 3.02422167414e-05 12134299288.3 +UniRef50_UPI00046A5D50 hypothetical protein 6.75618749799e-07 2.45372467597e-08 -262849592.445 +UniRef50_Q1QWQ5 6 phosphogluconate dehydrogenase, NAD binding protein 2.43539347646e-06 7.72318046895e-05 30196229061.9 +UniRef50_UPI0003C48D73 PREDICTED 2.12362489e-06 1.12722052039e-06 -402260671.268 +UniRef50_F0KC60 5.21870030673e-06 3.78854069662e-05 13187950344.0 +UniRef50_D5WZP9 Cytochrome c oxidase, cbb3 type, subunit II 2.34857297039e-05 1.58632839779e-05 -3077274877.51 +UniRef50_UPI00026C64ED S ribosylhomocysteinase 2.49425519051e-07 6.5140565094e-06 2529108406.47 +UniRef50_D8JKE4 PHA synthase PhaC 1.0673496386e-06 6.05334677859e-05 24007201627.4 +UniRef50_C6KU66 Plasmid partitioning protein ParA 1.63664872663e-06 4.52589525592e-07 -478019229.5 +UniRef50_U3SUV7 2.23750198164e-05 2.42186727053e-05 744305295.414 +UniRef50_UPI000287B527 sugar ABC transporter permease 4.8991578337e-07 3.56728838022e-07 -53769204.2246 +UniRef50_UPI00036C10C9 hypothetical protein 1.05726964858e-07 2.9541374656e-07 76578881.4917 +UniRef50_U5UN27 0.000175479213927 2.6163435327e-05 -60280612131.5 +UniRef50_UPI00035FF879 hypothetical protein 2.73148004037e-07 5.61424637207e-07 116380814.363 +UniRef50_UPI000467CF8F hypothetical protein, partial 3.52790643786e-06 2.5108100091e-06 -410614309.467 +UniRef50_P18789 Citrate synthase 2.22091341502e-05 3.99707980111e-06 -7352429827.77 +UniRef50_UPI00047BD49C riboflavin biosynthesis protein RibF 1.01807692948e-07 4.99445097867e-07 160531099.925 +UniRef50_UPI0003A806BB molybdopterin biosynthesis protein MoeA 5.15139652815e-08 8.35858037128e-08 12947794.7404 +UniRef50_B9L170 NADH quinone oxidoreductase subunit B 1.26591718892e-07 7.59961378345e-07 255699103.841 +UniRef50_Q2NFJ8 Diphthine synthase 2.40542829535e-05 2.18753114953e-06 -8827876038.49 +UniRef50_N8Y2G0 2.98737999521e-07 4.12469972382e-07 45914993.0922 +UniRef50_UPI00016A848B hypothetical protein 1.00398111918e-06 1.55395618397e-06 222031682.609 +UniRef50_B7V093 Type 4 fimbrial biogenesis protein FimU 2.72759203791e-05 3.4072967789e-05 2744051448.53 +UniRef50_G7M1Q4 Tetratricopeptide TPR_1 repeat containing protein 3.77589602626e-06 2.18278521433e-05 7287796206.85 +UniRef50_G2JI43 3.47280920311e-06 9.80972608657e-05 38201052308.8 +UniRef50_UPI000371FB82 hypothetical protein 6.95343756007e-08 3.0959939695e-07 96917195.0477 +UniRef50_P19932 Hydrogenase 1 operon protein HyaF 4.623551002e-05 6.34169705113e-06 -16105621847.7 +UniRef50_UPI0001B465BD 30S ribosomal protein S4 6.59605504469e-07 1.02565381989e-06 147778196.853 +UniRef50_Q9EYV5 HTH type transcriptional regulator GadX 2.65356823976e-05 1.85253480907e-05 -3233870257.55 +UniRef50_UPI0003B44F9E riboflavin synthase subunit alpha 2.01601960566e-07 5.03666374636e-07 121947110.707 +UniRef50_UPI000372D2DC glycerophosphoryl diester phosphodiesterase, partial 6.39187074317e-07 3.06837343516e-05 12129352423.9 +UniRef50_Q03UB1 Ribosomal RNA large subunit methyltransferase H 0.000246210129221 3.87724339418e-06 -97832759767.3 +UniRef50_H2K9T8 Putative endoribonuclease 9.90411277046e-07 4.94005511401e-07 -200405099.175 +UniRef50_W9CAE9 7.07329367242e-08 9.09822041451e-09 -24882691.3172 +UniRef50_UPI0003B586D4 30S ribosomal protein S4 5.04087569036e-07 2.00285376673e-07 -122648673.129 +UniRef50_Q92YJ8 Transposase 1.28919947333e-06 6.17821340988e-07 -271043590.763 +UniRef50_A5UKC6 2 methylcitrate dehydratase, MmgE PrpD family 3.26214061127e-05 9.53964306426e-06 -9318390987.72 +UniRef50_D8LYP9 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 8.59055515975e-08 1.6055249267e-07 30135886.1319 +UniRef50_Q8VQK4 Putative peptide transport system permease protein BruAb2_1031 0.000130890705342 6.03962689067e-05 -28459469052.9 +UniRef50_A3PYA8 Thymidylate synthase 4.58130590285e-07 4.04868843515e-06 1449552263.07 +UniRef50_UPI000465565E hypothetical protein 3.07993047359e-08 5.3482677945e-08 9157556.1208 +UniRef50_P77601 Putative HTH type transcriptional regulator YkgA 1.75264465717e-05 2.09197193767e-06 -6231086812.05 +UniRef50_F0XZT5 1.56719891042e-06 2.3980947923e-06 335442863.754 +UniRef50_B9KPM1 4.43609552488e-05 8.63668923696e-06 -14422324575.0 +UniRef50_B7KZF3 Chromosomal replication initiator DnaA 4.20780829996e-07 8.65395068237e-08 -134937323.767 +UniRef50_UPI0003654BED hypothetical protein 8.61184765437e-06 2.33144767259e-05 5935631777.71 +UniRef50_UPI0003C168CC 7.55942575005e-05 2.599301453e-05 -20024630462.9 +UniRef50_B7MHP0 Nicotinate phosphoribosyltransferase 4.21906395373e-05 1.13241162811e-05 -12461194213.4 +UniRef50_Q8CTY4 Thiamine biosynthesis lipoprotein 0.000123798995103 4.05799403767e-05 -33596553605.6 +UniRef50_P31052 Dihydrolipoyl dehydrogenase 5.87879406525e-07 2.93743798267e-05 11621463469.7 +UniRef50_G2L441 1.25442431332e-05 1.08431802925e-05 -686739943.179 +UniRef50_UPI000364F2DB hypothetical protein 3.60606889338e-08 5.69391706815e-08 8428899.28933 +UniRef50_UPI000440C4B4 PREDICTED 5.3815168067e-07 4.89023447294e-07 -19833670.6851 +UniRef50_Q9T1A3 Gp20 2.20380898819e-08 1.04433173336e-05 4207198314.16 +UniRef50_P0ADH8 Type 1 fimbriae regulatory protein FimE 3.14116185779e-05 1.17065561492e-05 -7955175510.77 +UniRef50_UPI00036912E2 MULTISPECIES 9.09609556206e-08 1.49206393552e-07 23514398.0448 +UniRef50_Q3JPQ2 7.06093077602e-07 2.84298778006e-07 -170283534.745 +UniRef50_B8J4Q3 Chorismate synthase 6.52897233765e-08 2.61943578364e-07 79391574.4724 +UniRef50_E2ZXQ0 5.70549823148e-05 1.51776906689e-05 -16906376529.6 +UniRef50_D6AIG0 1.85363632772e-06 3.13869359638e-06 518793388.784 +UniRef50_B9KLD6 0.00010065908473 0.000104467498091 1537503208.32 +UniRef50_UPI0002490D5A PTS system mannitol specific transporter subunit IIBC 2.91818711922e-08 3.73812777292e-08 3310201.03702 +UniRef50_M4QYT8 Nitrite reductase small subunit 2.61747691018e-06 8.17715734618e-05 31955480107.9 +UniRef50_UPI000375EB87 hypothetical protein 8.6938602064e-08 1.02542905134e-06 378880110.946 +UniRef50_K0R863 1.86483217285e-07 1.69369794267e-06 608481080.24 +UniRef50_UPI00030AEBF5 hypothetical protein 6.8084257852e-08 8.29258906573e-08 5991749.29081 +UniRef50_Q9K0X8 Cell division protein FtsA 4.53431406057e-06 3.62450602716e-05 12802017380.0 +UniRef50_A5UJ54 Archaeal glutamate synthase [NADPH] 4.81670550646e-05 1.13719614584e-05 -14854630815.4 +UniRef50_UPI00034AC849 chemotaxis protein CheY 2.0624046293e-06 7.34912653978e-07 -535924800.595 +UniRef50_G8VL08 ATP dependent helicase HrpA 3.16771459154e-07 4.63567319272e-05 18586897014.8 +UniRef50_I3VWE8 Aspartokinase 9.72066924068e-07 9.94575508137e-06 3622788028.64 +UniRef50_P39788 Endonuclease III 0.000158282436485 3.46553232377e-05 -49909782693.1 +UniRef50_A0A024BWT3 RloF 5.5731199147e-07 2.39367583499e-05 9438569392.96 +UniRef50_C6E8N4 NADH quinone oxidoreductase subunit B 2.63337847047e-07 2.09246575244e-06 738441381.329 +UniRef50_P10539 Aspartate semialdehyde dehydrogenase 4.02089602317e-05 6.93533391708e-05 11765943419.5 +UniRef50_UPI0003B603D1 hypothetical protein 2.85450383061e-06 1.80932027065e-05 6152049736.06 +UniRef50_G8S8P0 9.31972409779e-08 1.36466663647e-06 513307797.643 +UniRef50_Q0FH14 1.61384635152e-06 3.74756265278e-06 861407454.462 +UniRef50_P00807 Beta lactamase 0.00102501676762 0.00028327574333 -2.99449953692e+11 +UniRef50_Q8DV98 Folate transporter FolT 4.93461448616e-05 3.15846743525e-06 -18646532163.5 +UniRef50_UPI0003B62A81 shikimate kinase 2.57752604557e-07 1.1320779726e-07 -58354512.47 +UniRef50_Q8R5Z9 Ribosome recycling factor 0.000145292077251 3.4608971308e-05 -44684128103.6 +UniRef50_F4A5J4 Conserved protein 3.87828070733e-06 1.44360590284e-05 4262304666.74 +UniRef50_UPI000237B476 gluconate transporter 1.12444160691e-07 5.08674197191e-06 2008185067.89 +UniRef50_Q8NE62 Choline dehydrogenase, mitochondrial 3.28646532299e-07 3.28228848557e-07 -168624.052201 +UniRef50_I9RNM3 Putative sialic acid transporter 8.08898547544e-06 7.32190178178e-06 -309681100.306 +UniRef50_Q3J5X4 Integrase recombinase 9.91021496235e-06 3.45338695843e-06 -2606700699.37 +UniRef50_Q9I0N3 Sulfurtransferase TusD homolog 5.844809031e-06 2.41752096681e-06 -1383638249.07 +UniRef50_A0A023S183 Alkaline phosphatase 3.47891660406e-06 9.3843325715e-05 36481220854.1 +UniRef50_U3THX2 1.24177506608e-07 1.83643120213e-07 24006997.9375 +UniRef50_Q9RXZ8 6,7 dimethyl 8 ribityllumazine synthase 4.96692090597e-06 0.000607495078745 2.43248011172e+11 +UniRef50_Q8ZLS1 Arabinose 5 phosphate isomerase KdsD 3.95503130548e-05 4.12438915069e-05 683718403.657 +UniRef50_Q2FDM1 Immunodominant staphylococcal antigen B 8.89561788196e-05 2.15882478258e-05 -27197260439.7 +UniRef50_F2MNQ3 Serine protease HtrA 9.67086222522e-07 1.50161036537e-06 215793955.817 +UniRef50_P43899 Oxygen independent coproporphyrinogen III oxidase like protein HI_0463 1.63104731946e-05 2.9276616629e-06 -5402805240.91 +UniRef50_X7YGE5 Putative groESL operon 3.43701058306e-07 3.97104870601e-07 21559774.362 +UniRef50_A6M1G9 Nucleotidyl transferase 6.81890905573e-06 1.30931458991e-05 2532986407.21 +UniRef50_D6Z602 Glutamine synthetase catalytic region 2.81409298616e-06 1.84535219805e-05 6313829402.37 +UniRef50_P94951 F420 dependent methylenetetrahydromethanopterin dehydrogenase 1.93001132254e-05 2.10194792202e-05 694129151.094 +UniRef50_P60239 F420 non reducing hydrogenase subunit G 4.87452667429e-05 1.18733484636e-05 -14885645878.7 +UniRef50_L0I338 3.46912113766e-07 4.02368333017e-07 22388356.236 +UniRef50_F7XZJ7 Protein tyrosine phosphatase, low molecular weight 1.39073871712e-06 7.38801940789e-07 -263194876.769 +UniRef50_T1YAK1 Phage protein 0.000175431042568 5.71816327957e-05 -47738737808.4 +UniRef50_UPI0003C147A2 PREDICTED 1.96086183616e-07 3.63004797542e-07 67387092.7637 +UniRef50_G0J3B6 7.34052346268e-07 2.11951856436e-07 -210778374.639 +UniRef50_UPI0003709308 hypothetical protein 1.50430636184e-07 3.13749691026e-06 1205915310.27 +UniRef50_Q130Q6 ABC 1 2.6150508056e-05 3.99000555285e-06 -8946466800.49 +UniRef50_UPI000469E31A hypothetical protein 1.70418110476e-07 7.01293884305e-08 -40487787.7706 +UniRef50_UPI000465AB9E hypothetical protein 3.27439279221e-08 1.17938344292e-06 462912443.055 +UniRef50_K7SNW6 Glycosyl hydrolase family 38 N terminal domain containing protein 1.18295104499e-06 6.55748346042e-05 25995793570.1 +UniRef50_J7TWG6 2.22677810314e-07 3.074530538e-07 34224806.1045 +UniRef50_P42616 Protein YqjC 6.18829489919e-06 4.82806602495e-06 -549141088.416 +UniRef50_Q2GAZ8 RepB plasmid partition 1.65891802706e-08 1.156457578e-07 39990355.9095 +UniRef50_UPI0004732E2B hypothetical protein, partial 2.73338773828e-07 5.15180398155e-07 97634431.4713 +UniRef50_P0C7L3 Beta ketoadipyl CoA thiolase 3.69358535636e-05 9.3166848571e-05 22701142716.4 +UniRef50_UPI00047DA36E ABC transporter 5.74714230356e-08 2.71835069651e-07 86541234.6762 +UniRef50_M4TFL9 Protein lysine acetyltransferase 1.00885838738e-05 2.16853567385e-06 -3197420648.24 +UniRef50_P0AAJ2 Probable anaerobic dimethyl sulfoxide reductase chain YnfG 1.97301405907e-05 5.16579151241e-05 12889634377.0 +UniRef50_Q8DVZ6 6.40108500624e-05 9.57994940746e-06 -21974422536.6 +UniRef50_Q8DVZ9 4.95608210887e-05 1.53672003803e-05 -13804384282.9 +UniRef50_UPI00037681FA hypothetical protein 6.22630863182e-08 3.16249790353e-07 102537549.186 +UniRef50_A0RAK2 Response regulator 1.0828949267e-07 9.13236117288e-06 3643128475.11 +UniRef50_G7ZT64 5.41079493579e-05 1.26564302227e-05 -16734486942.2 +UniRef50_S5YZN5 ABC type dipeptide oligopeptide nickel transport system, permease component 0.000148806638082 5.40066661484e-05 -38271911996.1 +UniRef50_P37908 UPF0053 inner membrane protein YfjD 3.84590173769e-05 1.08780982391e-05 -11134755511.9 +UniRef50_I6GY98 Glutamate cysteine ligase 2.41896565632e-05 4.89475201976e-06 -7789589739.28 +UniRef50_UPI00016C54E0 DNA gyrase subunit B 3.49114885955e-08 2.56152267399e-08 -3753014.98907 +UniRef50_A4EM47 5.6867281047e-07 1.6202046984e-07 -164170540.098 +UniRef50_UPI0002B93C15 Phosphopentomutase 1.32757501235e-07 5.35068583835e-05 21547779500.1 +UniRef50_P42850 Phosphoenolpyruvate synthase 4.29598708066e-05 9.24817078377e-06 -13609826988.3 +UniRef50_UPI0004708FDA hypothetical protein 1.28283872465e-07 7.8547950318e-07 265317940.817 +UniRef50_A5F2P1 3 ketoacyl CoA thiolase 3.3442960674e-05 1.35424063583e-05 -8034097984.51 +UniRef50_O32799 Formate acetyltransferase 7.94172162724e-05 8.45293759278e-05 2063841586.14 +UniRef50_Q3B6F6 30S ribosomal protein S3 0.000140764052354 2.80998095854e-05 -45483937351.6 +UniRef50_UPI00037BC05D hypothetical protein 1.81110605545e-06 2.23659999387e-06 171777124.338 +UniRef50_O62585 Serine hydroxymethyltransferase, cytosolic 1.53419467809e-06 1.84164934022e-07 -545023574.409 +UniRef50_UPI000470E9D6 hypothetical protein 6.61476892278e-07 8.90790035906e-07 92576530.0713 +UniRef50_UPI00036E5905 citrate lyase 5.37119379778e-07 3.1643787579e-07 -89091831.2265 +UniRef50_I3BSR5 PEGA domain protein 2.2098982414e-06 1.04477905751e-06 -470372912.157 +UniRef50_UPI0003052E4A NADH dehydrogenase 8.09477023054e-07 2.23365309027e-08 -317778275.981 +UniRef50_UPI00026C85FF hydrolase 1.01290901078e-07 1.54208861798e-07 21363630.1191 +UniRef50_C6E3K3 Type VI secretion protein, VC_A0107 family 2.65286644472e-07 2.82384368926e-05 11293104024.3 +UniRef50_R7PUK9 2.09595990194e-05 1.30832742417e-05 -3179768966.13 +UniRef50_W5GWD8 2.01710908006e-08 8.72038892496e-07 343909485.138 +UniRef50_P0A0Q0 Lactose phosphotransferase system repressor 0.000296725879276 6.37571913196e-05 -94052318175.1 +UniRef50_E0XR78 1.52758251627e-06 3.9153826786e-06 963984227.136 +UniRef50_C5BEL3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 3.64649394362e-06 8.01595650912e-05 30889265743.3 +UniRef50_UPI000472566B thioredoxin 2.25318294392e-06 1.62144044217e-06 -255042200.309 +UniRef50_G6EQ26 SSU ribosomal protein S1P 2.55751466193e-06 3.36223952777e-06 324877303.424 +UniRef50_UPI00037152ED hypothetical protein 1.4842175184e-06 1.85824670311e-07 -524177125.846 +UniRef50_O94582 Probable anthranilate synthase component 1 4.69296551659e-08 9.84202665585e-08 20787391.68 +UniRef50_B5F446 Aspartate carbamoyltransferase 3.11883481071e-05 5.79767092999e-06 -10250527955.0 +UniRef50_UPI00029B4277 thioredoxin 2.17578914368e-06 4.0980129227e-06 776025327.929 +UniRef50_K5ZH15 UPF0301 protein MXAZACID_13641 2.04465105461e-07 2.10445618093e-07 2414406.33868 +UniRef50_M1XK11 SCCmec staphylococcal cassette region, isolate CMFT201 0.000127964315765 3.13176015763e-05 -39017464506.5 +UniRef50_I6TNE5 Bacteriophage replication gene A protein 2.81969764367e-05 6.88893931136e-06 -8602316066.5 +UniRef50_D6SDW7 Acetate CoA transferase YdiF 9.58690106789e-05 2.30253497896e-05 -29407879793.2 +UniRef50_Q099I3 4.83867473179e-06 2.19339014355e-06 -1067933849.56 +UniRef50_UPI00047246F8 iron ABC transporter permease, partial 7.08734726629e-07 1.44668964775e-06 297921457.382 +UniRef50_I6AH85 7.15558111459e-07 7.38000693882e-07 9060345.92562 +UniRef50_F4SFU3 Biofilm PGA synthesis lipoprotein PgaB 2.71030397137e-05 9.38098251204e-06 -7154611966.42 +UniRef50_UPI000472C820 hypothetical protein 1.99129335207e-06 7.94403775618e-08 -771838506.884 +UniRef50_A9KK69 S adenosylmethionine 0.000278706521612 0.00013923514546 -56306306058.8 +UniRef50_UPI00037911F9 hypothetical protein 2.11982500283e-07 3.99978643647e-07 75896350.0482 +UniRef50_UPI00046CDCC8 hypothetical protein 1.86702578131e-07 1.21293174926e-06 414301309.633 +UniRef50_A5UP74 3.20821828892e-05 9.84389017326e-06 -8977871663.95 +UniRef50_A5UP75 1.60033319966e-05 7.4138084986e-06 -3467696041.45 +UniRef50_Q65GF0 UvrABC system protein C 0.000120859076437 3.14018593494e-05 -36114976301.8 +UniRef50_P22302 Superoxide dismutase [Fe], chloroplastic 1.4607146211e-07 2.98060467247e-07 61359826.4886 +UniRef50_Q3IVJ7 Acyltransferase 3 family 0.000216808898201 5.06373739392e-05 -67085483498.5 +UniRef50_U2YI39 6.23998451132e-08 1.99847488032e-07 55489300.1186 +UniRef50_UPI000463E2C6 3 hydroxyacyl CoA dehydrogenase 2.43437591949e-07 1.09754059209e-06 344811862.179 +UniRef50_B4SQ46 Drug resistance transporter, EmrB QacA subfamily 2.90444278819e-06 4.03920040058e-06 458115573.164 +UniRef50_A4SM42 ATP dependent Clp protease proteolytic subunit 9.65497294531e-08 0.000348118349094 1.40500671111e+11 +UniRef50_P0AEB4 D alanyl D alanine carboxypeptidase DacA 4.10086368159e-05 7.90536240849e-06 -13364198101.1 +UniRef50_UPI0002654FEE PREDICTED 2.6122395231e-08 1.19247297935e-08 -5731771.76207 +UniRef50_UPI0002492D9C regulator 1.15166188072e-07 1.83684002026e-07 27661482.3014 +UniRef50_S6STB0 1.8398263857e-06 1.92788632095e-06 35550876.4773 +UniRef50_Q9RS20 Multidrug efflux transporter, putative 1.05344927117e-06 0.000297599625943 1.19719330553e+11 +UniRef50_Q03SL6 Triosephosphate isomerase 6.76417904436e-08 8.74143593508e-08 7982428.70454 +UniRef50_UPI0001AF23F3 oxidoreductase 4.51576684926e-07 6.06935958434e-07 62720445.1879 +UniRef50_E3J6Y9 FAD dependent oxidoreductase 2.31160718526e-07 2.01848396478e-05 8055545042.93 +UniRef50_UPI00036FA050 hypothetical protein 3.08527973052e-07 3.09447094861e-07 371060.753186 +UniRef50_Q819W8 Ribosome biogenesis GTPase A 0.000105531393838 2.64960406034e-05 -31907541973.7 +UniRef50_UPI0004627B5D PREDICTED 1.23761333514e-07 1.59944031344e-08 -43506832.2434 +UniRef50_UPI00027F40A7 2.01153616948e-07 2.82520917813e-07 32848977.8483 +UniRef50_W6IDM0 1.33796161898e-07 2.50783935776e-07 47229399.916 +UniRef50_UPI00037E7F9C hypothetical protein 1.21981320794e-07 1.6230741457e-06 606009593.897 +UniRef50_R7QKG6 Stackhouse genomic scaffold, scaffold_401 9.3118644522e-07 1.34900196536e-07 -321470530.125 +UniRef50_E2X9Y8 PTS system, glucitol sorbitol specific, IIBC component 1.84714325271e-05 4.3858916614e-06 -5686505696.51 +UniRef50_UPI0001B43C25 hypothetical protein, partial 4.18541271383e-08 5.07846639359e-07 188126895.555 +UniRef50_Q11MY4 Aminotransferase 0.000142507184221 2.90683038137e-05 -45796668071.9 +UniRef50_U3AS30 ABC transporter, binding protein 2.49261929303e-06 1.12642222547e-06 -551550521.297 +UniRef50_UPI0003728AAF MULTISPECIES 2.96369305819e-07 2.35975692393e-06 833014902.044 +UniRef50_UPI00026C7EA0 2 isopropylmalate synthase 7.46223861463e-08 8.6531817131e-08 4807983.43368 +UniRef50_Q42684 Superoxide dismutase [Mn], mitochondrial 2.1580622728e-07 4.13000335078e-07 79609681.1619 +UniRef50_A8IJ48 3.54266653204e-07 4.98588474293e-07 58264490.2015 +UniRef50_Q46L27 Phosphate import ATP binding protein PstB 6.5104145904e-08 1.75818415791e-06 683517177.277 +UniRef50_UPI00046E069E 4.3413374199e-08 1.41878445524e-07 39751557.5962 +UniRef50_UPI000407DFAC peptide ABC transporter substrate binding protein 5.51072527108e-08 6.26674117959e-07 230748557.415 +UniRef50_R4ZTZ8 Erythrocyte binding protein 2 2.73472269865e-06 3.19718833157e-06 186703051.101 +UniRef50_T1Y7X3 Transporter, Na+ H+ antiporter family 0.000185084340919 4.53325395178e-05 -56419517173.0 +UniRef50_UPI0003A7157D ABC transporter permease 1.02311079687e-07 3.07230528648e-07 82728496.19 +UniRef50_E3A6F2 Transcriptional activator GpuR 8.20798087286e-06 1.93227942332e-06 -2533577686.7 +UniRef50_A0LFA0 6.73540704719e-08 2.24708484529e-07 63525907.9106 +UniRef50_C7LI26 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.000162586243932 2.38096050565e-05 -56025832095.1 +UniRef50_UPI0003723D7C hypothetical protein, partial 4.19745693656e-08 7.3848658401e-08 12867960.8826 +UniRef50_F6W1A6 9.93113908368e-07 1.55954769671e-07 -337971417.39 +UniRef50_A8LAA1 4 hydroxy 2 oxovalerate aldolase 1 2.41490059438e-05 9.35364612715e-06 -5973068317.44 +UniRef50_Q8XAZ3 UPF0187 protein YneE 4.73273665689e-05 3.70690424931e-06 -17610115921.7 +UniRef50_H3Y3Z6 PHP domain protein 5.31545422838e-05 2.55532970109e-05 -11142961422.0 +UniRef50_C1DF31 Transcriptional regulator, AraC family 2.25140748821e-06 1.35715149946e-05 4570066313.67 +UniRef50_Q8RA66 Tyrosine recombinase XerC 3.12780025754e-06 1.21800405472e-05 3654500488.42 +UniRef50_A3ML41 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.35603912432e-06 1.01775067106e-07 -506361791.446 +UniRef50_Q1R1I5 Putative Holliday junction resolvase 3.24376286752e-07 2.12626985509e-07 -45114564.2299 +UniRef50_Q8CMP4 Serine aspartate repeat containing protein F 5.29191827539e-05 1.69399836678e-05 -14525244185.5 +UniRef50_R4NU59 Histone acetyltransferase HPA2 related acetyltransferase 6.48936429777e-05 8.73935777529e-05 9083499774.0 +UniRef50_R5NQY2 Beta eliminating lyase 0.000102350310094 4.48251524079e-06 -39510429755.1 +UniRef50_Q1C5I4 Nucleoside diphosphate kinase 9.6558670322e-07 5.31675453118e-07 -175175296.356 +UniRef50_O67222 S adenosylmethionine synthase 7.82146020438e-08 1.59770529035e-06 613437037.118 +UniRef50_M2E237 Putative reductase 2.25849975745e-05 5.40031689511e-05 12683901329.1 +UniRef50_UPI0004696E1B molecular chaperone Hsp33 1.7519763698e-07 7.27686688908e-07 223046610.066 +UniRef50_UPI00046741A1 hypothetical protein 3.23789107296e-07 1.43795020523e-07 -72665821.6061 +UniRef50_D4HBM2 Transcriptional regulator, LacI family 5.05051928669e-06 6.70151418206e-05 25015878508.4 +UniRef50_F5I475 Acyl CoA dehydrogenase, middle domain protein 4.5597503883e-06 9.60110846725e-06 2035258120.89 +UniRef50_D0D906 Tripartite ATP independent periplasmic transporter, DctQ component 2.64565644237e-06 1.1170115891e-06 -617132685.847 +UniRef50_E2ZSF7 SadB 1.13206573251e-05 1.65135156678e-06 -3903617390.36 +UniRef50_UPI000473FA93 30S ribosomal protein S3, partial 6.37633558287e-07 5.21107161324e-07 -47043136.3937 +UniRef50_C2PG39 GCN5 related N acetyltransferase 2.32472707909e-05 2.26593109452e-05 -237366604.788 +UniRef50_G8VGQ5 5.49901264563e-07 4.53603013437e-06 1609249140.04 +UniRef50_F8I070 Peptidyl prolyl cis trans isomerase 4.6313676088e-05 2.88491606854e-05 -7050639181.73 +UniRef50_W7QF52 2.91038128384e-06 2.96954258239e-07 -1055072560.59 +UniRef50_E4BJ69 FeoA domain protein 5.34899174486e-06 4.13030356916e-06 -491999371.516 +UniRef50_P52878 Phosphoserine aminotransferase 0.000107994251334 2.60714616743e-05 -33073235491.3 +UniRef50_A6M011 ABC transporter permease protein 4.19155801941e-06 7.32525124145e-06 1265110408.48 +UniRef50_A5I3R8 ABC transporter, permease protein 6.77300004087e-06 2.21132219082e-05 6193035813.52 +UniRef50_P76245 Probable diguanylate cyclase YeaP 2.58552020401e-05 7.28495356993e-06 -7497037189.99 +UniRef50_UPI0003A75D7C lipase 2.50838010997e-07 4.14274290521e-06 1571209764.84 +UniRef50_A5CLH3 DivIVA protein 6.40097658514e-07 5.86854533105e-07 -21494903.0942 +UniRef50_UPI00016C35F3 probable MoxR related protein, partial 1.63667990468e-07 3.5861640914e-07 78703068.904 +UniRef50_H2ZBA2 3.64402397862e-07 1.7097062531e-07 -78090780.254 +UniRef50_Q67LZ8 Oligopeptide ABC transporter permease protein 0.000200220730776 3.22574377258e-05 -67808842545.7 +UniRef50_C6M3G0 5.45130177362e-07 2.28184152327e-06 701131682.189 +UniRef50_UPI000379FDE6 hypothetical protein 1.31838917467e-07 2.17168844091e-06 823512284.381 +UniRef50_R6GQC1 Peptidase U32 3.03315416172e-06 1.03077529447e-05 2936844798.05 +UniRef50_Q9RSR0 7.25635415725e-06 0.000478264610751 1.90151813108e+11 +UniRef50_UPI0003690F47 hypothetical protein 3.50281872565e-08 5.94642660102e-08 9865144.85728 +UniRef50_A0A024HX85 2.27171683016e-08 9.56540845528e-07 376996077.801 +UniRef50_A1USI9 3 oxoacyl [acyl carrier protein] synthase 3 9.60672789174e-08 1.21458345034e-07 10250684.9747 +UniRef50_A5UMS9 3.90043108272e-05 6.30775996969e-06 -13199998813.0 +UniRef50_UPI0004743442 acetolactate synthase catalytic subunit, partial 6.17095995254e-08 1.76978334197e-07 46535402.6935 +UniRef50_O83296 Protein Soj homolog 1.01270063422e-05 2.00255947631e-05 3996181614.86 +UniRef50_UPI000364FA10 hypothetical protein 2.09354459098e-07 2.9676504215e-07 35288725.0266 +UniRef50_E1QW23 Uracil DNA glycosylase superfamily 5.92873536577e-06 5.01556782803e-05 17854959580.2 +UniRef50_A0A037L527 SPP1 family phage portal protein 0.000153233286468 2.18915881979e-05 -53024255335.5 +UniRef50_UPI0003717BEB diguanylate cyclase 1.51701410981e-07 7.51846763722e-06 2974053925.92 +UniRef50_B2KEN0 DNA directed RNA polymerase subunit beta 2.19074428495e-08 1.60325037735e-08 -2371784.99859 +UniRef50_O87406 UPF0070 protein NGO0425 3.80631864954e-06 2.07708746081e-05 6848799419.0 +UniRef50_UPI0003AB479F methionyl tRNA synthetase 5.95680277432e-08 1.65431351384e-07 42738322.8429 +UniRef50_UPI000477EBC3 hypothetical protein 1.28069517424e-08 7.10978894466e-07 281860580.811 +UniRef50_A5UKA0 Glycosyltransferase 3.36869882431e-05 9.84389017397e-07 -13202440613.4 +UniRef50_A5UML7 Predicted AAA ATPase 5.92941334698e-05 1.76401169475e-05 -16816237622.3 +UniRef50_A6LY87 7.96585139432e-06 8.02318214595e-06 23145127.9605 +UniRef50_Q8ZCX2 Polyphosphate kinase 1.85695074461e-05 9.09153532339e-06 -3826373653.74 +UniRef50_UPI0003A3B951 hypothetical protein 1.34677341485e-07 1.31991404009e-07 -1084345.91922 +UniRef50_UPI00037C182A hypothetical protein 4.43986543746e-06 1.48681050755e-06 -1192184513.26 +UniRef50_K7U2F6 1.2312617878e-06 1.10673975553e-06 -50271072.4846 +UniRef50_T0SXL1 ABC transporter multidrug efflux pump 3.01252562416e-06 6.676560066e-05 25737898730.2 +UniRef50_Q1CTZ0 Cag pathogenicity island protein I 2.01776209644e-06 3.85567261755e-05 14751228182.2 +UniRef50_Q2RBC8 Expressed protein 2.03410151446e-07 2.72081702395e-07 27723547.8128 +UniRef50_M4UIL6 3.56366811101e-06 3.87089306784e-08 -1423069277.21 +UniRef50_E4TFB2 TRAP transporter solute receptor, TAXI family 4.18975193491e-07 6.68267792048e-08 -142166636.194 +UniRef50_F2IFK9 8.97718626384e-08 1.11670843146e-05 4472046970.78 +UniRef50_UPI0003B66E26 UTP glucose 1 phosphate uridylyltransferase 3.21675054061e-06 1.82428739423e-06 -562154459.638 +UniRef50_UPI0003B6588F branched chain amino acid transporter AzlC 7.90817867144e-07 8.43243422897e-07 21164840.1914 +UniRef50_Q4L4U2 Protein NagD homolog 0.000245072680738 8.13408333933e-05 -66100555988.9 +UniRef50_P0A5S1 PhoH like protein 2.25282171962e-06 5.89994595937e-05 22909314069.3 +UniRef50_W0DM86 Diguanylate cyclase 5.87262608651e-08 4.69587752202e-07 165869825.89 +UniRef50_UPI0004119C01 hypothetical protein 4.49190976723e-08 8.89548889252e-08 17777789.3087 +UniRef50_UPI000373DCE8 hypothetical protein 4.57531092745e-07 1.21266999831e-07 -135753940.734 +UniRef50_Q9RRP2 5.49824696826e-06 0.000490250288986 1.95700347939e+11 +UniRef50_Q9RRP3 6.88035679961e-07 0.000188976746339 76014463055.3 +UniRef50_Q6G7L8 Hydroxyethylthiazole kinase 0.000216696053158 4.79405850925e-05 -68128653320.3 +UniRef50_UPI0000164CDA molybdenum cofactor biosynthesis protein A 6.64183622418e-08 7.28499790573e-05 29383616607.3 +UniRef50_Q53158 Phosphoribosyl AMP cyclohydrolase 6.02157660669e-05 7.38695059412e-07 -24011623431.5 +UniRef50_B0JMB5 4.64025679615e-07 1.15190478844e-07 -140829051.241 +UniRef50_UPI00035E553A hypothetical protein 3.55225785863e-06 9.02705211259e-07 -1069656917.41 +UniRef50_G7M109 Stage III sporulation protein AA 6.16786062403e-06 2.3136470665e-05 6850436101.81 +UniRef50_R4M6A1 4.78940306974e-07 3.79727597145e-07 -40053388.4348 +UniRef50_UPI0003062627 hypothetical protein 1.56013015479e-07 1.25503327335e-06 443687964.597 +UniRef50_Q54443 Dextranase 6.36502958676e-05 1.47410609132e-05 -19745258334.9 +UniRef50_UPI000370DB0C hypothetical protein 1.27131964001e-06 1.51381410495e-06 97897991.238 +UniRef50_W1VLC3 4.13812205054e-08 6.39569089466e-08 9114082.45856 +UniRef50_S2WM30 5.25471219726e-08 7.36022955013e-07 275927580.99 +UniRef50_UPI0003752BA6 hypothetical protein 1.65836881666e-07 8.96644626744e-08 -30751740.2876 +UniRef50_Q82GB8 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.6619669629e-07 2.5001580799e-07 33838803.9695 +UniRef50_V5ST11 Cytochrome P450 3.55209670205e-06 4.10186170209e-06 221946876.891 +UniRef50_E6VVV5 AzlC family protein 3.92355001446e-07 1.48151023551e-07 -98588142.596 +UniRef50_R7FQK3 Arabinose binding protein 1.10916549126e-06 1.09959456792e-05 3991414486.31 +UniRef50_P0AG77 Nuclease SbcCD subunit D 4.75697561798e-05 8.95991166097e-06 -15587268028.3 +UniRef50_UPI0003773D73 50S ribosomal protein L18 6.41597750388e-07 4.19050838263e-06 1432738772.27 +UniRef50_M9VFV0 HAD hydrolase, family IIB 1.38487519104e-05 4.59825239627e-05 12972798103.2 +UniRef50_E2ZT41 1.02353394618e-05 3.59411811592e-06 -2681142554.28 +UniRef50_UPI0004447F97 PREDICTED 4.19717299651e-07 1.26514195336e-06 341308307.229 +UniRef50_I2ZU82 8.05327681322e-06 1.87869768109e-06 -2492753366.25 +UniRef50_P81177 Zinc metalloproteinase aureolysin 0.000118991657824 2.91320102572e-05 -36277442424.6 +UniRef50_P0AF00 Molybdenum cofactor biosynthesis protein B 5.70383430073e-06 4.9073586868e-06 -321546979.198 +UniRef50_Q4YEI4 1.1023412729e-05 7.0055402375e-06 -1622064429.66 +UniRef50_C3KNV3 MFS permease 1.93342617778e-06 5.9989497177e-05 23437948290.5 +UniRef50_M1LUI1 D galactose binding periplasmic protein MglB 7.57341745591e-06 2.63511656833e-05 7580807388.28 +UniRef50_P52558 N5 carboxyaminoimidazole ribonucleotide mutase 8.70285250475e-07 1.44379927242e-05 5477450001.63 +UniRef50_T2E9A2 Glycosyl transferases group 1 family protein 7.0545005054e-06 1.6786414996e-05 3928893303.88 +UniRef50_UPI0003B71379 N acetyltransferase 3.38587003831e-07 4.38406772258e-07 40298465.4403 +UniRef50_UPI00036E1F30 hypothetical protein 1.00525607274e-07 1.06381602119e-07 2364136.98006 +UniRef50_U5N662 1.3456992275e-07 4.51965079954e-07 128136319.84 +UniRef50_D9TM82 Pyruvate flavodoxin ferredoxin oxidoreductase domain protein 8.11216308394e-07 3.81521275695e-06 1212750229.47 +UniRef50_Q4L4Y4 0.00011352481691 2.96562740989e-05 -33858759915.6 +UniRef50_UPI00026CC3BE recombinase 5.70301565196e-07 1.20143851102e-07 -181734193.236 +UniRef50_UPI00047918D8 isoleucine tRNA ligase 2.3540344863e-08 3.00742491096e-08 2637817.32437 +UniRef50_W1E8W6 Serine transporter 1.03917892474e-07 1.17524803775e-07 5493277.06779 +UniRef50_M9VGG3 4.48744156641e-05 4.07282855699e-05 -1673843597.77 +UniRef50_A3V2A1 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 4.63894536679e-07 1.1305402343e-07 -141638620.496 +UniRef50_Q9AA76 2.31957895439e-07 2.39776625577e-07 3156517.30332 +UniRef50_I1EHK4 1.26108904961e-06 1.62291037933e-05 6042771230.23 +UniRef50_P9WIZ4 Divalent metal cation transporter MntH 9.67912791928e-07 4.01236210336e-05 15807639911.7 +UniRef50_E3E667 6.80131500236e-08 7.08191134862e-06 2831596772.98 +UniRef50_Q1GMS0 Dihydroorotase 1.35544040885e-05 6.54552096998e-06 -2829572123.61 +UniRef50_D9ULU8 CvhA 7.15775792529e-08 1.27788787527e-06 487002269.595 +UniRef50_UPI000367667A hypothetical protein 5.04478154356e-07 4.36477028852e-07 -27452888.8336 +UniRef50_I0C1A6 Nitrogen regulation protein NIFR3 1.35474491105e-05 6.77546109288e-07 -5195737773.05 +UniRef50_Q49XM4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 8.87418014522e-05 3.69201768409e-05 -20921025778.4 +UniRef50_W5XWP7 Aldehyde dehydrogenase 1.6689275233e-05 7.23869905191e-06 -3815313575.92 +UniRef50_C8X7N2 2.54175793101e-06 1.21073399709e-06 -537350695.624 +UniRef50_UPI00037FE0F3 hypothetical protein 5.9434084805e-08 8.15061550832e-07 305056080.627 +UniRef50_A1IQ80 Riboflavin biosynthesis protein RibD 1.49400787142e-06 3.77809685714e-05 14649491325.7 +UniRef50_UPI00036C9CB5 hypothetical protein 1.37887874428e-07 1.64553660804e-07 10765305.186 +UniRef50_A7X6I5 Fibronectin binding protein A 0.000123766972848 3.41688949036e-05 -36171843558.2 +UniRef50_A0A059MMV6 MFS transporter 1.17841619826e-06 6.09312448881e-05 24122950191.7 +UniRef50_S2R9A4 Excinuclease ATPase subunit 3.96133479613e-07 2.61762691732e-06 896844161.594 +UniRef50_Q29RN5 LOC767890 protein 3.33182814306e-07 6.61993367704e-07 132744855.366 +UniRef50_A0A022H1X1 Mannosyltransferase 1.94256153273e-06 1.89566303611e-07 -707705685.666 +UniRef50_Q2JXL1 Serine tRNA ligase 4.60370840718e-08 1.27830709039e-07 33021090.1199 +UniRef50_I0Z518 2.80925903372e-08 3.59689456681e-08 3179781.30083 +UniRef50_B1YLE0 Triosephosphate isomerase 3.30870157682e-07 7.52388808504e-07 170172251.952 +UniRef50_Q1LHJ9 Ribosomal RNA small subunit methyltransferase G 1.99719041731e-07 2.68720683187e-07 27856809.4011 +UniRef50_A6V312 6.35676657784e-08 5.56920176405e-08 -3179495.79834 +UniRef50_Q51366 GDP mannose 4,6 dehydratase 1.2459712858e-05 1.8248200115e-06 -4293436746.94 +UniRef50_UPI0003AA2BE4 adenylate kinase 1.12465697889e-07 4.03470997163e-07 117482410.354 +UniRef50_UPI00037042BD hypothetical protein 1.17212045414e-07 2.97632493556e-06 1154258959.01 +UniRef50_C4Z2L9 3.48579404123e-06 3.28129672448e-06 -82558076.2362 +UniRef50_E4B7L0 6.08848369114e-06 1.62727435658e-05 4111510686.34 +UniRef50_F5ZKQ5 PTS multi domain regulator 7.09115821271e-07 4.1428804266e-05 16439037911.9 +UniRef50_D2Q557 Cobyrinic acid ac diamide synthase 3.79428097264e-08 1.14191130481e-07 30782382.7607 +UniRef50_UPI0001CBAB2C PREDICTED 2.88288744181e-08 1.29634980647e-07 40696662.1147 +UniRef50_A7ZR24 Chromosome initiation inhibitor 2.06915725329e-05 3.57959642661e-06 -6908314741.67 +UniRef50_F0RL27 Cell envelope related transcriptional attenuator 1.02670713198e-06 0.000156712896391 62852425088.2 +UniRef50_C0F8H0 Transketolase 7.11459043501e-07 1.25321646041e-07 -236630860.069 +UniRef50_M7CS69 Arsenate reductase 1.39098077978e-06 1.9864275912e-06 240389184.724 +UniRef50_G7M7C1 Cell wall binding repeat containing protein 4.96674730899e-06 5.61758002748e-06 262749155.07 +UniRef50_K2RRG6 1.09522542348e-07 2.1054716729e-07 40784880.8006 +UniRef50_Q3IWQ1 Caspase family protein 5.37548951736e-05 1.35302095866e-05 -16239199183.9 +UniRef50_Q8CRY0 UPF0342 protein SE_1526 6.62216195631e-05 5.18099482802e-06 -24642849258.3 +UniRef50_P41187 DNA directed RNA polymerase subunit beta 5.01282096262e-07 4.29338198038e-07 -29044634.5639 +UniRef50_A7N872 1.84844496023e-07 5.50975417287e-07 147811545.846 +UniRef50_X0SWR3 Marine sediment metagenome DNA, contig 3.17664255041e-07 4.50511103632e-08 -110057271.846 +UniRef50_Q5HN54 UPF0435 protein SERP1418 2.30449033989e-05 8.68578544689e-06 -5796952123.41 +UniRef50_B9JY98 ABC transporter 0.000120387224355 8.36926381729e-06 -45223025284.1 +UniRef50_UPI0003FAD0C0 hypothetical protein 4.861449408e-08 2.06669923201e-07 63808916.2944 +UniRef50_G0IAR6 Transposase 4.41345998391e-07 1.76139526107e-06 532920086.17 +UniRef50_W0NHP5 Transposase 3.3941550879e-06 5.74378662781e-07 -1138378345.37 +UniRef50_UPI0003474DAF hypothetical protein 1.19230995553e-08 6.10192007791e-08 19820698.541 +UniRef50_UPI00037B2E7D hypothetical protein 4.17161045203e-08 1.19098359621e-07 31240165.9712 +UniRef50_A3M7C9 1.24720040369e-06 8.37483213716e-05 33306714937.3 +UniRef50_UPI0002DCEE9A hypothetical protein 1.30585057402e-07 1.93497722487e-07 25398614.92 +UniRef50_Q9I1X8 8.10756432548e-06 4.57855356899e-06 -1424704948.23 +UniRef50_D2YK48 Phosphoribosylformylglycinamidine synthase 1.65123977905e-06 1.00986665661e-06 -258930200.062 +UniRef50_UPI000471F9AA hypothetical protein 1.06631908282e-07 4.41940029206e-07 135368003.11 +UniRef50_P76205 Putative ankyrin repeat protein B 5.40580488197e-06 6.35081111252e-06 381510611.804 +UniRef50_G7M911 Major facilitator superfamily MFS_1 2.43643116173e-06 1.54501637948e-05 5253803560.44 +UniRef50_UPI00046F5D51 leucyl phenylalanyl tRNA protein transferase 8.1068854312e-08 3.48364879064e-07 107910685.283 +UniRef50_G7ZQT1 0.000163953556353 3.26389349117e-05 -53013324087.3 +UniRef50_UPI0002489B72 polysaccharide biosynthesis protein 1.08641812914e-07 3.28861503763e-07 88905391.5952 +UniRef50_A6W4G4 1.32982065622e-06 6.85921441896e-07 -259950014.355 +UniRef50_Q8D385 Zinc import ATP binding protein ZnuC 1.97806637993e-06 2.46396771049e-07 -699096271.081 +UniRef50_A0A011P1A0 1.76357800995e-06 5.35830808112e-07 -495656611.535 +UniRef50_K1UQX5 Thiazole biosynthesis protein ThiH 1.47372349326e-06 1.09781519587e-06 -151758792.57 +UniRef50_B1J356 Bifunctional protein PyrR 4.42802621941e-06 2.6001793949e-05 8709594772.34 +UniRef50_P19685 Superoxide dismutase [Fe] 1.37718390203e-07 2.16560767746e-07 31829635.3189 +UniRef50_UPI0003B7AF8F septation ring formation regulator EzrA 1.86047225611e-07 2.02875323195e-07 6793709.49864 +UniRef50_A3KVE3 8.73664340319e-06 3.95072515317e-06 -1932133927.35 +UniRef50_Q9RTB7 1,4 alpha glucan branching enzyme GlgB 4.22510326123e-06 0.000333975816673 1.33124409501e+11 +UniRef50_Q891D3 Tyrosine tRNA ligase 2.66020158991e-06 1.32351958365e-05 4269254947.12 +UniRef50_P67664 HTH type transcriptional activator AaeR 3.82365407201e-05 1.27291561465e-05 -10297644163.2 +UniRef50_W8T7R1 2.59164652166e-05 3.22750497486e-06 -9159811674.43 +UniRef50_Q1XG21 2.80390014931e-06 8.48635927669e-07 -789364160.066 +UniRef50_UPI0003B52ABE flagellar biosynthesis protein FlhA 1.43652691683e-08 3.66104151916e-08 8980638.42824 +UniRef50_F7ZDL0 7.69309138284e-08 2.40505047915e-07 66036885.2113 +UniRef50_Q0PAR0 Macrolide export ATP binding permease protein MacB 2.88604915121e-08 1.30737793455e-07 41129116.9695 +UniRef50_P23034 Aspartate aminotransferase 8.25822026474e-06 8.47846432217e-05 30894656032.6 +UniRef50_A6LPV8 Isoaspartyl dipeptidase 5.00199798562e-06 5.74787447927e-06 301119493.42 +UniRef50_I4Z5S2 Type II secretory pathway, component PulF 6.14950942071e-08 2.25866485091e-05 9093680848.31 +UniRef50_F5M175 2.69120054789e-06 6.66467404092e-07 -817409616.422 +UniRef50_X4ZX80 0.000112052573005 2.43139445282e-05 -35421160990.1 +UniRef50_D3QFI9 Phosphomevalonate kinase 0.000215430717441 7.42901684416e-05 -56980171620.2 +UniRef50_R8A3B5 3.32512993594e-06 6.71544086962e-08 -1315284700.2 +UniRef50_F3ZKD4 Putative amino acid decarboxylase 6.1968961051e-08 2.95432770566e-07 94252204.8243 +UniRef50_A0JUZ2 LexA repressor 8.52919040285e-07 1.19675162051e-07 -296019551.557 +UniRef50_UPI0002376C0A cysteinyl tRNA synthetase 9.2316193776e-08 3.49026172962e-07 103636968.783 +UniRef50_UPI00040458A8 glyoxalase 1.19910692407e-07 3.00487280408e-07 72900984.4999 +UniRef50_O35435 Dihydroorotate dehydrogenase , mitochondrial 3.88577241031e-08 1.12455891751e-07 29712483.4305 +UniRef50_N9J1H3 1.22032108466e-06 2.42491163778e-05 9297007254.92 +UniRef50_Q59928 Acetylornithine aminotransferase 0.000159852500756 4.84810348502e-05 -44962027467.8 +UniRef50_Q5HEG2 Accessory gene regulator A 0.000215644058991 2.18423362769e-05 -78240133674.2 +UniRef50_Q0K6L6 Ribosomal RNA small subunit methyltransferase H 2.31142292189e-07 1.27483708071e-07 -41848242.4423 +UniRef50_H2JCD9 3.27616296138e-06 1.21786228017e-05 3594032283.0 +UniRef50_UPI00040C37BB peptide chain release factor 3 1.78520051562e-07 5.78437488549e-07 161451576.85 +UniRef50_Q39F94 Polysaccharide deacetylase 2.36915892584e-06 4.6493327219e-05 17813468204.4 +UniRef50_Q0VQP5 Lipid A export ATP binding permease protein MsbA 3.05016714536e-08 4.50427092526e-08 5870395.39806 +UniRef50_Q8XGY4 tRNA specific adenosine deaminase 1.09335700826e-07 4.19686453001e-07 125292407.085 +UniRef50_W1CRU3 6.86010788154e-07 9.47227310176e-07 105456315.427 +UniRef50_P43703 DNA topoisomerase 4 subunit B 4.37014894835e-06 4.74048889865e-08 -1745144822.8 +UniRef50_Q8FB22 Replicative DNA helicase 1.95900048037e-05 4.58343631954e-05 10595169537.2 +UniRef50_A7ZM93 2.47821551277e-05 5.36743353068e-06 -7837961354.13 +UniRef50_A8GP69 Phospho N acetylmuramoyl pentapeptide transferase 7.77148216546e-05 2.28095455262e-05 -22165933736.5 +UniRef50_UPI00035E3AF9 hypothetical protein 6.42731468893e-08 1.55966387808e-06 603707588.689 +UniRef50_UPI0003B5603D 3 oxoacyl ACP synthase 9.13923511008e-08 4.36447086396e-07 139302830.936 +UniRef50_UPI00046818D4 aldehyde dehydrogenase 3.22417670688e-08 1.99939095982e-07 67701469.5598 +UniRef50_X3K6P1 6.54042744555e-07 1.01407900318e-06 145351055.749 +UniRef50_Q3J3U2 1.84127214374e-05 2.39122838212e-06 -6468073352.25 +UniRef50_Q0K963 Histidine tRNA ligase 2.59319674761e-05 4.78093583506e-05 8832171161.81 +UniRef50_UPI000466CCF2 hypothetical protein 2.44359639678e-08 5.55262682456e-08 12551537.3579 +UniRef50_Q5LYN3 UDP N acetylenolpyruvoylglucosamine reductase 0.000294558856997 0.000109561700847 -74685622108.1 +UniRef50_A0A023RTB7 TonB dependent receptor 1.17385290996e-06 7.50964758678e-05 29843470020.7 +UniRef50_P07017 Methyl accepting chemotaxis protein II 5.87380266786e-05 1.57358171672e-05 -17360519676.2 +UniRef50_K0HVG4 Magnesium chelatase subunit ChlI 2.00790419604e-06 5.67669919155e-05 22106915681.9 +UniRef50_UPI00035F8B10 hypothetical protein 5.65392826143e-08 1.3840821117e-07 33051491.1027 +UniRef50_UPI000440FDB6 PREDICTED 5.90183925532e-08 1.75820762938e-07 47154550.2507 +UniRef50_N4N922 Aminotransferase class I and II family protein 1.57285828688e-05 8.31878042813e-06 -2991428173.8 +UniRef50_E2YZE2 0.000107108807675 7.82463065047e-05 -11652145905.2 +UniRef50_F0KG57 1.25133476969e-06 6.11722693169e-05 24190816589.3 +UniRef50_UPI0003640B98 hypothetical protein, partial 1.64705366131e-08 3.19602446545e-09 -5359083.45061 +UniRef50_B7H1Y2 LysR substrate binding domain protein 1.56850133866e-06 6.55258955399e-05 25820384884.5 +UniRef50_Q7MME5 4.37985877149e-07 6.65439152668e-07 91825678.4926 +UniRef50_C6SHL5 2.67362015027e-07 2.74119362039e-06 998716176.411 +UniRef50_A0A010WN13 Phospholipase C, phosphocholine specific 1.69580374119e-06 7.56598715365e-05 29860201810.1 +UniRef50_Q2YY30 Truncated cell surface fibronectin binding protein 4.96698599059e-06 5.29600001783e-06 132827000.253 +UniRef50_UPI00034C42C5 hypothetical protein 2.60437086541e-08 6.82373120784e-08 17034075.4761 +UniRef50_Q5WLV8 4 diphosphocytidyl 2 C methyl D erythritol kinase 2.07595030953e-07 2.68027845368e-05 10736804363.2 +UniRef50_UPI00036A7304 hypothetical protein 7.87460375357e-07 3.24248144453e-07 -187004461.869 +UniRef50_Q67SK0 ATP dependent Clp protease proteolytic subunit 1 0.000203238830158 0.000144977263678 -23520909337.8 +UniRef50_P32152 Putative frv operon regulatory protein 2.87222758709e-05 3.28752539038e-06 -10268320888.5 +UniRef50_UPI000372D8ED hypothetical protein 3.9038546996e-07 4.39972727362e-07 20018984.3173 +UniRef50_X4QTW2 Excinuclease ABC subunit A 3.65347884855e-06 5.97163464502e-05 22633267619.5 +UniRef50_D6SBZ3 Amidohydrolase family protein 0.000103836879905 3.11295932253e-05 -29352823851.3 +UniRef50_Q6ABR7 Cobalamin biosynthesis protein CobN 3.20265262076e-07 4.78301816329e-05 19180336251.1 +UniRef50_P77493 2.48569796678e-05 1.51725400242e-05 -3909727125.56 +UniRef50_UPI0003025696 hypothetical protein 2.35118911205e-07 8.12176438155e-08 -62131830.2263 +UniRef50_UPI0004767909 binding protein 5.62094915235e-07 9.87110164272e-08 -187073766.309 +UniRef50_UPI00047B08A4 hypothetical protein 1.03335168301e-06 1.00387499282e-06 -11900101.5494 +UniRef50_UPI00047D5805 hypothetical protein 3.61275948224e-07 4.22472045129e-07 24705615.2811 +UniRef50_Q5FKU9 Cell division protein FtsZ 7.37566751452e-05 6.00587060389e-05 -5530038221.2 +UniRef50_UPI0003B55D8E pyruvate kinase 1.79551179342e-07 1.25349157627e-07 -21882021.2999 +UniRef50_Q89L46 UvrABC system protein A 8.95787970116e-05 1.1499359591e-05 -31521627029.1 +UniRef50_UPI00045603F6 hypothetical protein PFL1_03459 2.6603607741e-07 9.69587105776e-08 -68258607.8027 +UniRef50_Q5HL03 1.27358890476e-05 0.000265373190214 1.01992778689e+11 +UniRef50_A5UK97 Predicted permease 1.60875134474e-05 1.20133723912e-05 -1644780739.72 +UniRef50_M9VI15 4.33477130563e-06 3.6255695855e-05 12886868954.4 +UniRef50_B9DW22 6.12139441381e-06 1.00107357693e-05 1570174832.8 +UniRef50_I6T6W0 Dehydrogenase 5.53181113933e-05 2.16783971121e-05 -13580765461.0 +UniRef50_Q2IIH7 PE PGRS family protein 9.49025022007e-06 1.52768574689e-05 2336124356.01 +UniRef50_A6LWM4 Amine oxidase 3.57775265256e-06 2.48638781778e-05 8593470084.66 +UniRef50_G8XHV9 1.26268929618e-06 2.44098165855e-07 -411217738.833 +UniRef50_C7TGJ0 PTS system, IIC component 4.101438313e-05 5.09327363259e-05 4004160897.07 +UniRef50_X0TXG2 Marine sediment metagenome DNA, contig 2.38679573879e-07 4.51923479511e-06 1728112671.13 +UniRef50_P77721 1.38206705698e-05 1.20139272301e-05 -729404457.471 +UniRef50_UPI0003639180 hypothetical protein 3.19037379464e-07 1.85327275236e-07 -53980409.8843 +UniRef50_UPI0003FDB00F hypothetical protein 1.76988655493e-07 1.76263836868e-07 -292618.173437 +UniRef50_G8V8I0 Regulator of sorbitol operon 2.19365157044e-06 4.50619998833e-05 17306478267.7 +UniRef50_UPI00047AE27E DNA topoisomerase I 5.718035332e-06 1.29001965664e-05 2899526625.36 +UniRef50_R9ZG20 Chemotaxis protein 5.91355969722e-06 2.95354775877e-06 -1194993142.98 +UniRef50_H8Z498 1.10589311456e-06 1.02886153978e-07 -404926218.266 +UniRef50_A3TUV5 6.18558930468e-06 1.7236247027e-06 -1801349864.28 +UniRef50_Q8ELA5 Methionine import ATP binding protein MetN 4 1.64527642481e-07 2.28023526799e-05 9139167764.95 +UniRef50_S3ZS47 Putative Oleandomycin polyketide synthase, modules 5 and 6 7.22339582887e-07 2.68926612013e-07 -183048380.345 +UniRef50_B1I1Y5 Phosphoglucosamine mutase 5.15086698447e-06 1.33219499756e-05 3298766473.98 +UniRef50_Q57772 Putative permease MJ0326 1.3187319194e-05 2.44200997823e-05 4534811365.22 +UniRef50_UPI00037341DE hypothetical protein 2.13272799561e-07 8.7408229462e-08 -50813071.4809 +UniRef50_I2F9Q0 Cobalt zinc cadmium resistance protein CzcA 4.12853797497e-07 2.87363248875e-05 11434532847.1 +UniRef50_Q00749 Multiple sugar binding protein 5.24352553798e-05 2.22345984712e-05 -12192375797.7 +UniRef50_G7M9H8 1.41380520171e-06 1.77143068101e-05 6580712528.96 +UniRef50_C5MZ71 PIN domain protein 0.000118885604994 1.01842626507e-05 -43884065819.3 +UniRef50_UPI0002896123 flagellar motor switch protein FliN 1.20120383648e-06 3.95226116104e-07 -325383096.175 +UniRef50_P41031 Thiosulfate binding protein 1.96184454033e-05 1.20691578759e-05 -3047740014.99 +UniRef50_W9G6K5 5.09385762422e-07 4.74795688226e-07 -13964437.4209 +UniRef50_A8AVK0 Protein LemA 0.000102171360425 5.51993841485e-06 -39019365111.8 +UniRef50_B8FYL8 Two component transcriptional regulator, winged helix family 4.18063741423e-06 5.58553311669e-05 20861707987.8 +UniRef50_C6SRE4 5.00359901084e-05 2.22779357882e-05 -11206267158.7 +UniRef50_M9VG81 Glycosyl hydrolase family 20, catalytic domain protein 5.30464020794e-06 5.92270199318e-05 21769126396.5 +UniRef50_UPI00031DE77D hypothetical protein 2.01468337333e-06 8.85684855743e-07 -455790555.921 +UniRef50_UPI000478621D hypothetical protein 1.56287571307e-07 6.79824419492e-08 -35649864.3475 +UniRef50_A6V3K7 Membrane protein, putative 1.48616531043e-06 2.46782762008e-06 396309120.757 +UniRef50_I0C7T4 X Pro dipeptidyl peptidase family protein 4.82910178341e-06 4.68959995716e-06 -56318599.137 +UniRef50_UPI0003753634 hypothetical protein 1.04943836201e-07 6.36068817682e-07 214421672.66 +UniRef50_A7X6X6 Pantothenate synthetase 0.000241384567907 4.43872286926e-05 -79530243269.9 +UniRef50_A6LQ26 Two component transcriptional regulator, LytTR family 1.66783205682e-06 2.07625725214e-05 7708781044.37 +UniRef50_D5ARQ0 Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI 8.01972115586e-06 3.61895395144e-06 -1776643723.91 +UniRef50_UPI000375A365 hypothetical protein 5.38674729484e-08 9.58068222996e-07 365036938.585 +UniRef50_UPI0004785697 polyphosphate kinase 8.37073056165e-08 2.03620707278e-06 788248115.869 +UniRef50_UPI000365B78F transposase IS200 7.95257942545e-07 1.07135392876e-06 111463337.714 +UniRef50_B7V041 Glycine glutamate dipeptide porin OpdP 1.06728457456e-05 1.29619621887e-06 -3785468478.37 +UniRef50_Q3K8E9 23S rRNA C(5)) methyltransferase RlmD 3.16659027346e-06 9.81282770331e-07 -882235455.752 +UniRef50_Q3IV20 0.000348268888184 1.28920135807e-05 -1.35395759814e+11 +UniRef50_Q3IV23 1.64620488659e-05 1.50450224945e-05 -572070935.003 +UniRef50_Q3IV22 8.42884503193e-06 8.67958776462e-06 101227918.146 +UniRef50_UPI0003B70939 FAD containing monooxygenase EthA, partial 2.2028632816e-07 4.91223075027e-07 109380489.478 +UniRef50_Q3IV27 6.03265008739e-05 4.54814595262e-06 -22518406359.1 +UniRef50_A1B4G8 Orn DAP Arg decarboxylase 2 2.71807956807e-05 7.24455459513e-06 -8048505171.45 +UniRef50_UPI000378AE4A O acetylhomoserine aminocarboxypropyltransferase 1.63325269391e-07 9.47672619358e-08 -27677708.911 +UniRef50_Q9RUU0 D 3 phosphoglycerate dehydrogenase 1.3942341107e-06 0.000301426073813 1.21126535492e+11 +UniRef50_C6ST04 4.65763918008e-05 5.73099953673e-05 4333287475.92 +UniRef50_M7YV85 Formin like protein 6 3.51688528049e-08 4.10876142454e-08 2389476.6249 +UniRef50_P33222 Putative acid amine ligase YjfC 3.39190132305e-05 2.51690373754e-06 -12677416949.5 +UniRef50_W5X567 7.20986472507e-07 1.67984490755e-07 -223253686.131 +UniRef50_I4EYS5 NAD dependent epimerase dehydratase 1.15658512532e-06 1.98565968206e-06 334707572.445 +UniRef50_UPI00036FB7EB hypothetical protein 3.74467463666e-08 1.37797798451e-07 40512951.1722 +UniRef50_H9UZT1 Ribonucleoside diphosphate reductase 1, beta subunit, B2 2.35381795536e-05 1.35217125076e-05 -4043770662.34 +UniRef50_A6M1W3 Multi sensor signal transduction histidine kinase 2.92824635796e-06 1.77655531356e-05 5990002820.35 +UniRef50_Q9RTX3 C di GMP phosphodiesterase A 1.17328758456e-06 0.000179809115678 72117475909.3 +UniRef50_D0JET7 Sodium serine transporter 1.00950363723e-05 9.44668955554e-06 -261745566.036 +UniRef50_UPI00040C441F PTS glucose transporter subunit IIB 1.74393789552e-07 9.18430841581e-07 300376888.265 +UniRef50_A5UL56 Molybdopterin biosynthesis protein, MoeB 2.80400473023e-05 6.35548456494e-06 -8754324076.6 +UniRef50_R4ZW64 NAD dependent oxidoreductase 1.53034860351e-06 5.33965196472e-06 1537862512.33 +UniRef50_UPI00047AEC83 chemotaxis protein CheY 1.40568039596e-07 8.61835729628e-07 291184617.416 +UniRef50_H2A8F3 Methionine ABC transporter substrate binding protein 6.57181913759e-05 3.04293616662e-05 -14246533596.4 +UniRef50_F0RLS2 Metal dependent phosphohydrolase with GAF sensor 1.10591598297e-06 0.000264537530311 1.06350575374e+11 +UniRef50_F2MVP5 L sorbosone dehydrogenase 0.000130086667608 2.54635926438e-05 -42237619232.5 +UniRef50_K9ZX43 1.47072463189e-06 0.000231502038411 92866464174.2 +UniRef50_L1K6L8 Methyl accepting chemotaxis protein 1.20266545315e-05 7.54000098364e-06 -1811317094.7 +UniRef50_UPI00047DE5DB ribonuclease 3 9.77648101939e-08 9.48742710663e-08 -1166946.11672 +UniRef50_P45955 1.92732948129e-05 6.81168522267e-06 -5030904712.71 +UniRef50_X5E195 5.40048602413e-05 5.09166733097e-06 -19746856210.3 +UniRef50_D0LY72 Putative transcriptional regulator, Crp Fnr family 4.64417408264e-07 3.63325322954e-07 -40812115.379 +UniRef50_UPI00029AEFE9 DNA topoisomerase I subunit omega 1.76424025654e-07 1.96612937139e-06 722526010.23 +UniRef50_Q5HJZ0 DNA gyrase subunit A 0.00016534477752 5.38676135046e-05 -45004699091.5 +UniRef50_D5RPK9 1.77182186898e-07 5.58010763987e-07 153745169.863 +UniRef50_B5F1C1 HTH type transcriptional regulator IscR 0.000180981679997 3.64588524928e-06 -71592636494.7 +UniRef50_Q0G4L4 1.12987754093e-06 1.94632716902e-07 -377569812.205 +UniRef50_E3ZBY8 DHH subfamily 1 protein 2.68638733529e-07 1.83409578723e-05 7296017008.63 +UniRef50_F9NYB1 RHS repeat associated core domain protein 2.42029913741e-07 8.63411435195e-06 3387987470.16 +UniRef50_UPI0003B34E67 ABC transporter 7.50713988334e-07 3.38584735936e-07 -166381636.588 +UniRef50_F8LI03 Sal9 lantibiotic transport ATP binding protein 9.30512358008e-05 2.00214715383e-06 -36757634384.8 +UniRef50_K4KVK1 Drug resistance ABC transporter,ATP binding protein 1.54989443301e-06 1.02507238017e-05 3512631587.32 +UniRef50_UPI000476294D formyltetrahydrofolate deformylase 3.73878403764e-07 2.06091931295e-07 -67737457.9073 +UniRef50_P61502 Superoxide dismutase [Mn] 1.02081202158e-07 3.02577543801e-07 80942833.4881 +UniRef50_A5UNM6 SAM dependent methyltransferase 8.49111482105e-05 1.08705535655e-05 -29891096638.5 +UniRef50_UPI0002627AF2 RpoD subfamily RNA polymerase sigma 70 subunit 3.28284654563e-08 4.79367475213e-08 6099398.86911 +UniRef50_Q97IG3 Alanine tRNA ligase 4.22637123772e-06 7.66859134778e-06 1389666499.22 +UniRef50_P75692 4.66032084997e-06 1.28840288488e-05 3320011835.37 +UniRef50_UPI0002BAB8F5 hypothetical protein, partial 2.41813692432e-06 1.0883762805e-06 -536840689.908 +UniRef50_Q37374 Cytochrome c oxidase subunit 3 6.60691389082e-07 2.86498337168e-07 -151066326.923 +UniRef50_UPI00035D52F0 hypothetical protein 2.15107237645e-07 8.7572277124e-08 -51487428.5923 +UniRef50_Q2S432 ATP synthase subunit alpha 3.64876127905e-08 6.05087288603e-05 24413385869.5 +UniRef50_I6T7J2 2.60954016454e-05 6.05503010314e-06 -8090543914.64 +UniRef50_K0D4L6 5.75166767241e-07 2.42156703453e-07 -134440249.244 +UniRef50_Q12YB2 CRISPR associated helicase Cas3 5.82642274481e-07 6.48549705319e-08 -209037088.569 +UniRef50_F5XP90 7.32982502581e-07 7.96859591419e-05 31874285531.3 +UniRef50_P38055 Inner membrane metabolite transport protein YdjE 1.56850133866e-06 2.0627476498e-06 199533300.891 +UniRef50_UPI000328C9B2 PREDICTED 1.65453310905e-07 2.08742792204e-06 775924735.794 +UniRef50_B2II05 ABC transporter related 4.08188699475e-05 8.50254209396e-06 -13046498120.4 +UniRef50_I2AAI6 Cellobiose phosphorylase 3.26849497377e-08 1.88748129388e-07 63004620.7353 +UniRef50_A3CQL5 Amino acid ABC transporter, periplasmic amino acid binding protein, putative 3.95986634679e-05 2.66051085761e-06 -14912385490.9 +UniRef50_UPI0003B46C76 hypothetical protein 2.84228403115e-07 9.01217532685e-08 -78363236.4993 +UniRef50_D3JTG3 3 hydroxylisobutyryl CoA hydrolase 8.18500172003e-06 0.000136690881686 51879400686.8 +UniRef50_A4HM87 Proteophosphoglycan ppg4 1.98154837901e-07 1.35633711865e-06 467572399.234 +UniRef50_J0W6L9 2.18871326518e-06 2.47046029491e-06 113744733.327 +UniRef50_A6LXJ5 Na H(+) antiporter NhaA 2 4.87349830313e-06 2.52042057701e-05 8207756090.26 +UniRef50_V5REB2 WafV 9.77942976327e-07 9.37020184807e-05 37433847133.5 +UniRef50_UPI0004073FCC dihydroxyacetone kinase 2.5629469346e-07 1.2488440291e-05 4938267283.02 +UniRef50_K9ZYD2 Exodeoxyribonuclease III 2.4406421693e-06 0.00021503338744 85826300072.3 +UniRef50_Q9RRR7 Sensory box sensor histidine kinase 1.072257636e-06 0.000166757102461 66889005037.5 +UniRef50_B9KT23 Glycine reductase complex protein C large subunit 2.19540631815e-05 3.52369130465e-06 -7440567292.76 +UniRef50_UPI000471CC40 hypothetical protein 3.77716535626e-07 1.22087308662e-07 -103200655.849 +UniRef50_Q59A32 Trifunctional purine biosynthetic protein adenosine 3 3.13872872176e-08 2.62852624844e-08 -2059749.99368 +UniRef50_P0A1B6 Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive 3.71340181284e-05 2.17287445752e-05 -6219297977.39 +UniRef50_A7NR36 DNA directed RNA polymerase subunit alpha 1.99824640152e-07 4.14939622295e-07 86844558.0488 +UniRef50_UPI00037D0C80 hypothetical protein 6.65735235466e-07 7.99153873709e-07 53862741.4895 +UniRef50_V8G2Y5 Crp Fnr family transcription regulator 1.75574878536e-06 1.74250639593e-05 6325894819.82 +UniRef50_A0A059LCN6 1.05240994677e-06 2.06877765398e-06 410320115.635 +UniRef50_A0A011RXV5 Type IV secretion system ATPase VirB11 1.1884863753e-06 6.81565995955e-07 -204649977.754 +UniRef50_UPI00046D7021 hypothetical protein 7.98329083728e-08 5.21047134837e-08 -11194212.5399 +UniRef50_B2THL1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.99066473348e-06 1.76021924043e-05 6302565295.69 +UniRef50_UPI00025593F3 chemotaxis protein 4.8668336341e-07 2.55522743141e-07 -93322379.0624 +UniRef50_Q6FBV7 3 hydroxyisobutyrate dehydrogenase 2.6472340519e-06 9.71622186908e-05 38156859128.0 +UniRef50_UPI00040CFD31 hypothetical protein 3.76541027836e-07 2.2064326043e-07 -62937841.7825 +UniRef50_Q9RSJ6 DNA directed RNA polymerase subunit alpha 1.58231809344e-07 0.000361980261084 1.46071993274e+11 +UniRef50_UPI0003728B08 hypothetical protein 6.88932848041e-07 1.79279344568e-07 -205753373.504 +UniRef50_UPI00024868FB hypothetical protein 3.17328486701e-06 1.86864623895e-07 -1205654499.64 +UniRef50_E3F1F2 RelA SpoT family protein 8.03446906144e-05 2.10126652969e-05 -23953066706.5 +UniRef50_UPI00036CA645 hypothetical protein 2.56169861598e-07 2.90602745547e-06 1069780028.05 +UniRef50_F8G483 Integral membrane protein TerC 9.21389890703e-06 1.70048006835e-06 -3033259385.19 +UniRef50_E2QLT7 9.33869547394e-06 1.09848325529e-05 664565739.15 +UniRef50_Q05599 Bifunctional adenosylcobalamin biosynthesis protein CobU 1.38580882327e-05 7.15898030953e-07 -5305663457.24 +UniRef50_Q8FW08 sn glycerol 3 phosphate transport system permease protein UgpE 9.32572348268e-05 1.08501178009e-05 -33268764392.4 +UniRef50_A3PAU4 Chorismate synthase 4.51423476046e-08 1.5324111368e-07 43640798.3855 +UniRef50_S5KJ87 1.06926318816e-08 1.42848106742e-05 5762636616.8 +UniRef50_R9ZM17 Chemotaxis protein 1.14794441715e-05 3.61717629572e-06 -3174094022.33 +UniRef50_UPI00037D86B2 hypothetical protein 1.13032497291e-07 1.23660747563e-07 4290755.0581 +UniRef50_Q500N2 Bifunctional spore maturation protein, fused SpmA SpmB 9.22197041218e-07 4.67325133115e-06 1514346647.46 +UniRef50_V5WU09 Transcriptional regulator 2.45665484807e-06 2.11630071658e-05 7551983983.41 +UniRef50_UPI0002D3498A hypothetical protein 4.59971761171e-07 4.97810335979e-08 -165599030.327 +UniRef50_UPI00047D2769 phosphoenolpyruvate protein phosphotransferase 3.07650312353e-08 8.45211884096e-07 328802188.887 +UniRef50_G8VAH8 Kinase domain protein 7.42108759259e-07 6.91952282844e-05 27635364366.5 +UniRef50_T1CR22 Site specific recombinase 1.3776913791e-07 2.65343330868e-06 1015604496.41 +UniRef50_D0K172 2.15706279348e-06 1.8292834454e-05 6514209027.53 +UniRef50_UPI0003EF77A3 hypothetical protein 1.17359778757e-06 1.30687297718e-06 53804829.516 +UniRef50_F8W467 6.67949269383e-08 1.55753892354e-07 35913825.9876 +UniRef50_F9UHG1 Putative solute symporter protein 2.10123206672e-07 7.42582506103e-07 214960353.191 +UniRef50_A6M205 Transcriptional regulator, GntR family 1.909709893e-06 2.85628282473e-05 10760190950.2 +UniRef50_Q1J2B0 Peptidase M29, aminopeptidase II 1.13586556327e-06 0.000213342040473 85670236873.8 +UniRef50_A5UNV4 Putative major capsid protein gp5 6.33086257814e-05 6.11724963857e-06 -23088860366.0 +UniRef50_R7PVH8 9.52410113641e-06 5.26289099055e-06 -1720302826.81 +UniRef50_UPI00047926DE transposase 3.12413356951e-08 6.21300267044e-07 238214031.423 +UniRef50_Q1QX79 4.9678037189e-07 3.59786495507e-07 -55306108.9997 +UniRef50_D8JMF6 1.34816424593e-06 6.11437300908e-05 24140203705.7 +UniRef50_A0A009QE54 TonB dependent siderophore receptor family protein 2.50460260786e-06 7.66343700894e-05 29927096806.8 +UniRef50_UPI00037EFDE6 hypothetical protein 3.40866075036e-07 3.13459793105e-07 -11064252.3284 +UniRef50_UPI00038177C4 hypothetical protein 2.22251673062e-07 1.74682644133e-07 -19204200.7163 +UniRef50_Q5HP19 Proline dipeptidase 0.000216011327094 5.26702172571e-05 -65942810462.0 +UniRef50_A1B4V0 3.25664961853e-05 1.23321256016e-05 -8168863708.29 +UniRef50_F9GT79 UPF0125 protein GGA_0527 1.00315708908e-07 2.01100610781e-07 40688101.656 +UniRef50_UPI00047EFD30 hypothetical protein 1.76699215318e-07 9.02591901783e-07 293051785.231 +UniRef50_UPI00036F0908 hypothetical protein 4.51049605241e-08 1.69795972756e-07 50339291.7688 +UniRef50_X2LYU6 1.56181175861e-07 1.80696904975e-07 9897300.68515 +UniRef50_G8V4E9 ATP dependent DNA helicase RecQ 9.46865105445e-05 2.21715766914e-05 -29275168654.8 +UniRef50_B2U6Z0 N anthranilate isomerase 2.19529407841e-05 3.05715303102e-06 -7628461393.32 +UniRef50_Q92SH6 Peptide deformylase 3.6846322747e-07 8.86607233645e-07 209181093.635 +UniRef50_Q8RGC8 Fe ions import ATP binding protein FbpC 4.22742506301e-07 2.00668202859e-06 639455822.272 +UniRef50_J0YJQ5 Serine aspartate repeat containing protein G 6.6755644067e-05 2.69678632111e-05 -16062815382.5 +UniRef50_X1K5L6 Marine sediment metagenome DNA, contig 6.42746352788e-08 1.30369969647e-07 26683497.5654 +UniRef50_T0VCE6 ABC transporter ATP binding protein 0.000103148694981 2.21494492861e-05 -32700389459.6 +UniRef50_UPI00040CE7D5 hypothetical protein 5.92851567073e-07 3.50983835316e-07 -97644971.3611 +UniRef50_F8H6P0 6.61344072478e-06 8.89333462438e-06 920421144.713 +UniRef50_Q9RTE3 Protein export membrane protein, putative 4.96692090564e-07 0.000258598062743 1.04198690592e+11 +UniRef50_D2NXJ8 6.34364420643e-07 9.27324757521e-06 3487623140.52 +UniRef50_A8AJI8 Citrate lyase acyl carrier protein 5.29185965684e-06 6.26113155893e-06 391306961.178 +UniRef50_H8H0D3 4.54958593323e-06 0.000427128696261 1.70600372468e+11 +UniRef50_Q5ZEI2 1.22364750339e-07 1.04247700434e-05 4159207441.55 +UniRef50_I6T664 4.51343786544e-05 1.48395786982e-05 -12230382501.3 +UniRef50_K2D6T3 1.25310601514e-06 1.48250485467e-06 92611126.5586 +UniRef50_Q11K61 Binding protein dependent transport systems inner membrane component 5.75751563428e-06 2.78163301593e-06 -1201400331.21 +UniRef50_P39062 Acetyl coenzyme A synthetase 0.000103015327761 2.76047570116e-05 -30444172803.3 +UniRef50_UPI0004643E21 hypothetical protein 1.34440395945e-07 2.45065246852e-07 44660609.8307 +UniRef50_C1CX98 3 methyl 2 oxobutanoate hydroxymethyltransferase 8.10250341907e-08 1.28475882897e-07 19156489.9101 +UniRef50_Q59641 Peptidyl prolyl cis trans isomerase A 2.73230577485e-05 1.00766018828e-05 -6962605870.8 +UniRef50_UPI000463A8B3 preprotein translocase subunit SecD SecF, partial 2.86177976162e-08 1.00838329191e-07 29156314.8423 +UniRef50_B5F808 UPF0231 protein YacL 4.83729960722e-06 5.19618836113e-06 144887794.014 +UniRef50_A0A058ZAW9 2.11358430669e-08 3.76645629365e-07 143523663.324 +UniRef50_T9NAV5 Inner membrane protein 3.91367596396e-07 3.86034908756e-06 1400470397.17 +UniRef50_G7LZJ4 4.67826976731e-06 6.84256318889e-06 873751813.159 +UniRef50_UPI0002B9550C regulator for metE and MetH 1.50659321835e-06 2.00974028319e-06 203126644.385 +UniRef50_UPI00046A72DD hypothetical protein 6.87464995661e-08 1.04717194038e-07 14521810.7684 +UniRef50_A3PS85 3.70743857263e-05 3.66095089089e-06 -13489413672.0 +UniRef50_B7NUS6 1.1487182418e-05 2.72181295113e-06 -3538687216.95 +UniRef50_UPI0003B61198 cobalt ABC transporter ATP binding protein 1.60211162977e-07 9.71172660575e-08 -25471780.4356 +UniRef50_G7M0X3 Transcriptional regulator, AraC family 8.03347984395e-06 1.36978109218e-05 2286759965.29 +UniRef50_T0P454 4.19969481506e-07 2.40075299561e-07 -72625488.8011 +UniRef50_UPI000478626E 3 oxoacyl ACP reductase 9.70888553198e-08 1.29433264158e-07 13057834.7585 +UniRef50_UPI00026CD1C9 MFS transporter 1.42819052456e-07 1.14892715795e-07 -11274204.8047 +UniRef50_A0A026WQ11 4.54540923018e-06 9.64386994461e-07 -1445702620.64 +UniRef50_W5X9Y2 ABC transporter related protein 2.67837117836e-07 1.00254780074e-07 -67655046.2211 +UniRef50_Q6F803 2.98015254361e-06 2.18150852335e-05 7603893457.53 +UniRef50_P08956 Type I restriction enzyme EcoKI R protein 1.64205592549e-05 1.26971046851e-05 -1503204301.75 +UniRef50_I4DYP2 RNA binding protein 7.57269134152e-05 6.75743066569e-05 -3291307392.06 +UniRef50_I0C528 9.78524105939e-05 2.74225256523e-05 -28433408822.8 +UniRef50_I0Z1H0 1.09303054781e-08 3.40051121409e-08 9315582.60949 +UniRef50_D8JHE9 Nitrate transport ATP binding protein nrtC 2.45891592022e-06 7.56808357449e-05 29560587567.2 +UniRef50_A9M366 3.01988791085e-06 1.01106650997e-05 2862633764.76 +UniRef50_UPI00046F9B67 PTS system, glucose subfamily, IIA component 2.87403172244e-08 4.13053256777e-08 5072648.10259 +UniRef50_E3EYF0 C4 dicarboxylate transport transcriptional regulatory protein DctD 0.000103017977633 2.80889485706e-05 -30249768515.1 +UniRef50_UPI00047AADF7 serine threonine protein phosphatase 6.68769567577e-08 9.14179872369e-08 9907515.15676 +UniRef50_Q5HLA3 Putative aldehyde dehydrogenase AldA 0.000266845429308 7.72333054173e-05 -76548741217.2 +UniRef50_A7ZIM8 Adenine phosphoribosyltransferase 1.77385007496e-05 3.42610826539e-06 -5778088478.68 +UniRef50_V5NHS3 6.39806760752e-07 5.14459373032e-05 20511058361.3 +UniRef50_K0HKR9 9.2445548289e-07 7.16176150989e-05 28539696039.6 +UniRef50_N4DH58 Pyridine nucleotide disulfide oxidoreductase family protein 5.70613484775e-06 3.31816522686e-06 -964052639.636 +UniRef50_G7U4C3 Hypoxanthine phosphoribosyltransferase 8.32689681294e-06 0.000100591540507 37248368873.8 +UniRef50_Q8E310 Phosphate binding protein PstS 2 7.21322924183e-06 5.68922136243e-06 -615260682.594 +UniRef50_C5BFM6 Beta hexosaminidase 3.44532895441e-06 6.63167559093e-05 25381966580.9 +UniRef50_Q3HKK4 3.55778376238e-05 1.53264887415e-05 -8175718055.78 +UniRef50_UPI00037B5AE4 30S ribosomal protein S1 2.9951910108e-08 1.0634087058e-06 417219190.361 +UniRef50_Q9ZKE4 Primosomal protein N 2.12349102803e-06 3.74766343554e-05 14272497793.1 +UniRef50_M9RBV2 2.99804163973e-05 6.0830661409e-06 -9647653551.97 +UniRef50_UPI000467A396 hypothetical protein 5.41422258121e-07 2.26459769234e-07 -127154221.788 +UniRef50_R7PWJ2 1.82059947183e-05 5.71553111221e-06 -5042553433.01 +UniRef50_L0KHH1 Cation multidrug efflux pump 8.96337742238e-05 2.06341386895e-05 -27855999585.9 +UniRef50_Q0BTL1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 6.99683230975e-07 3.78708776306e-07 -129581326.149 +UniRef50_B0T0X6 Protoheme IX farnesyltransferase 9.11097112223e-08 7.22310644913e-07 254823562.638 +UniRef50_Q6Q272 p hydroxyphenylacetate 3 hydroxylase, oxygenase component 0.000124054917765 2.38516434941e-05 -40453291455.7 +UniRef50_C5BQ62 50S ribosomal protein L4 3.31467103294e-05 2.619018341e-05 -2808435283.55 +UniRef50_Q9JTG4 Alanine tRNA ligase 8.92026081351e-07 4.68771506549e-05 18564759091.3 +UniRef50_A1KTV6 2 isopropylmalate synthase 2.17079094157e-06 2.51395156737e-05 9272756032.3 +UniRef50_D4HCV5 Periplasmic binding protein 3.90538025751e-07 1.79283163332e-06 566123137.454 +UniRef50_A4IMH7 tRNA 2 methylthio N dimethylallyladenosine synthase 0.000190985753996 3.778971474e-05 -61847120974.5 +UniRef50_UPI00036C607F hypothetical protein 2.97631445172e-07 6.36199300237e-08 -94473320.3095 +UniRef50_A1UG51 Spermidine putrescine import ATP binding protein PotA 3.27032302683e-06 1.42904879509e-07 -1262577083.81 +UniRef50_UPI0004657C1A serine threonine protein kinase 4.56160646924e-07 1.42699460812e-07 -126548127.435 +UniRef50_Q5HPV5 UPF0122 protein SERP0802 0.000182996643452 5.3693946399e-06 -71710300076.9 +UniRef50_D2NAH1 Dihydroorotate oxidase 0.000268827123502 3.88792697206e-05 -92832770348.9 +UniRef50_UPI0004671BDB hypothetical protein 9.15606069038e-07 5.73898363178e-08 -346472424.647 +UniRef50_M2IT76 Glucosyltransferase S 9.37047786034e-06 8.73203180054e-06 -257748508.955 +UniRef50_UPI000370D86A hypothetical protein 6.83280858819e-07 8.68499813085e-08 -240786464.281 +UniRef50_P24180 Multidrug export protein AcrE 2.60771528958e-05 3.87083916662e-06 -8964961354.59 +UniRef50_A0A037YKV0 N acetylglucosamine 6 phosphate deacetylase 4.74219386336e-06 4.05667722205e-06 -276751480.332 +UniRef50_UPI000418069B ABC transporter 1.95992890936e-07 4.98147629591e-08 -59013904.0717 +UniRef50_E2XTQ0 Ribose ABC transporter, permease protein 2.13671314441e-06 3.6527615265e-05 13884029209.9 +UniRef50_A5WHZ8 OmpW family protein 8.57468611517e-06 8.43520293452e-05 30592243354.5 +UniRef50_P0AF22 N acetylglucosamine repressor 2.35418366327e-05 5.23856736939e-06 -7389254407.97 +UniRef50_Q15PI0 MazG family protein 1.22602290078e-07 8.49435456541e-08 -15203297.2487 +UniRef50_UPI00041E2B4A hypothetical protein 2.2810594589e-07 3.80948933246e-07 61704589.59 +UniRef50_UPI0001E89F57 glycerophosphoryl diester phosphodiesterase 9.96263991838e-08 2.10718045982e-07 44849061.0602 +UniRef50_P45546 2.61253758321e-05 9.098316791e-06 -6874032680.4 +UniRef50_Q832G5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 9.28536342056e-08 1.97435103989e-05 7933211276.58 +UniRef50_B0V7L4 2.066529136e-06 5.1836566183e-05 20092774702.9 +UniRef50_Q1IWJ1 6.68070111131e-06 0.00035999796459 1.42638514957e+11 +UniRef50_P45549 2.27321017942e-05 9.09267388022e-06 -5506404423.48 +UniRef50_Q28JW2 HemY like protein 3.10493005675e-05 4.528962072e-06 -10706586091.8 +UniRef50_B7UXY2 UPF0761 membrane protein PLES_43641 7.97907889305e-06 1.1945737331e-05 1601388687.77 +UniRef50_P46890 2.31685786862e-05 1.45456598405e-05 -3481178153.12 +UniRef50_A1R6L8 Glucose 1 phosphate adenylyltransferase 7.73155384039e-06 7.46334363358e-05 27009110941.8 +UniRef50_UPI00041EAEC4 outer membrane specific lipoprotein transporter subunit LolE 8.60698492788e-08 4.1236605699e-07 131729783.158 +UniRef50_T0TW25 5.77666889919e-05 1.63942201409e-05 -16702573372.4 +UniRef50_Q6G9K4 DNA topoisomerase 4 subunit A 0.000206658509464 3.78469583768e-05 -68151294724.5 +UniRef50_UPI000375B645 hypothetical protein 8.47703205811e-08 7.30354908239e-07 260630420.251 +UniRef50_F0HAX6 3.32907753402e-08 1.4051341434e-06 553830002.097 +UniRef50_V4R9U3 Type II restriction endonuclease 4.59102750525e-08 1.15731367038e-05 4653682764.24 +UniRef50_Q2SQB9 tRNA 2 selenouridine synthase 1.0211523594e-06 4.85556117741e-06 1547997893.32 +UniRef50_I1CKJ8 1.0297150717e-06 2.7000369187e-07 -306704806.744 +UniRef50_P44016 Putative oligopeptide transporter HI_0561 5.82754361592e-06 1.09107157092e-06 -1912171887.61 +UniRef50_P37538 3.46317420961e-06 1.73267647843e-06 -698623169.673 +UniRef50_UPI00047574D4 tyrosyl tRNA synthetase 3.11942392257e-07 8.24673671748e-08 -92641883.6008 +UniRef50_UPI00037DCE93 hypothetical protein 1.44269899394e-08 1.29359660663e-07 46399729.5537 +UniRef50_UPI0003B3686E XRE family transcriptional regulator 2.14478426361e-06 2.2761331119e-07 -773985439.825 +UniRef50_Q3AC80 NADH quinone oxidoreductase subunit D 6.2187110506e-08 3.79523740024e-07 128112691.495 +UniRef50_P32138 Alpha glucosidase YihQ 6.82100305499e-06 1.65443532329e-06 -2085806794.2 +UniRef50_X2I9U8 Histidine kinase 1.76899087287e-06 1.97147714997e-05 7244931858.53 +UniRef50_UPI0004741BEC CTP synthetase, partial 9.96389899647e-08 4.73790941946e-07 151049734.375 +UniRef50_A6V2J2 7.54313319023e-06 6.98082389237e-06 -227011163.857 +UniRef50_V9B4W3 von Willebrand factor type A domain protein 5.23651653421e-07 2.19459711697e-07 -122806019.729 +UniRef50_A0A024L686 Ankyrin repeat protein A 3.08702081468e-05 2.23018376258e-06 -11562329296.5 +UniRef50_UPI000470C007 hypothetical protein 5.55506119298e-08 1.51696414471e-07 38815240.3276 +UniRef50_F0RKW9 Biopolymer transport protein ExbD TolR 2.68354968373e-06 0.000112462403929 44319070596.7 +UniRef50_T1YAE9 O succinylbenzoate synthase 0.00012923522758 1.47747931157e-05 -46209081980.6 +UniRef50_UPI00045EAF3A hypothetical protein 3.7971683441e-08 3.75460790335e-07 136248493.91 +UniRef50_B9JG24 Shikimate dehydrogenase 1.76506764391e-06 3.90808415511e-07 -554805314.562 +UniRef50_UPI0004182A5D MarR family transcriptional regulator 1.21098665729e-07 7.77129668926e-07 264847766.396 +UniRef50_C7J486 Os06g0602200 protein 2.58092401854e-07 6.54503711914e-06 2538116731.86 +UniRef50_Q58239 Peptide chain release factor subunit 1 3.79371054317e-05 3.07154969647e-06 -14075652698.8 +UniRef50_Q8CPA3 Oligoendopeptidase 0.000102887424518 5.29154058556e-05 -20174317159.6 +UniRef50_UPI0003B5016A hypothetical protein 2.94469583119e-08 6.63310325567e-06 2665977083.22 +UniRef50_B2U887 Cytidylate kinase 9.08687944926e-08 1.22158904418e-07 12632201.3497 +UniRef50_Q9L3H0 9.08593394311e-07 3.65502307929e-07 -219252536.049 +UniRef50_UPI00036EFE7D hypothetical protein 1.646921491e-07 1.15523763001e-07 -19849880.8321 +UniRef50_A2RH97 Mannitol 1 phosphate 5 dehydrogenase 6.4844736951e-05 5.80445494923e-05 -2745319124.76 +UniRef50_F0KMR7 3 oxoacyl synthase I 2.38477371924e-06 5.27109111335e-05 20317279245.3 +UniRef50_K7S761 Nuclease, RecB family 1.24377628566e-06 4.95262999798e-05 19492247308.5 +UniRef50_Q9RTC1 5.9290993013e-06 0.00023861253653 93937158956.2 +UniRef50_Q4FTT8 2 octaprenylphenol hydroxylase 2.80304150315e-06 6.5601565586e-05 25352534796.8 +UniRef50_UPI00040A0384 DNA polymerase I 6.39265702459e-08 3.01663145474e-07 95977172.7754 +UniRef50_UPI000474D03A hypothetical protein, partial 3.96761866383e-07 4.54873986415e-07 23460575.9728 +UniRef50_UPI00034A62B9 hypothetical protein 4.26007767202e-08 2.78376568091e-07 95185580.2708 +UniRef50_K0TKK5 4.74669558729e-07 1.3312015779e-07 -137887684.442 +UniRef50_P50975 NADH quinone oxidoreductase subunit J 8.52786908027e-05 4.18245768677e-06 -32739544471.6 +UniRef50_Q9RVP1 Extracellular solute binding protein, family 5 4.06114783491e-06 0.000988772382931 3.97540009374e+11 +UniRef50_I6H2Z2 Ferritin like protein 2.42468655024e-06 4.28168395247e-06 749692639.201 +UniRef50_L7UG94 4.21908573212e-06 4.5290418566e-07 -1520453706.55 +UniRef50_D8UER7 3.50893539839e-07 4.60384817445e-07 44202972.3786 +UniRef50_P39816 Putative PTS system glucosamine specific EIICBA component 2.19506014454e-07 4.11558585045e-07 77533979.4976 +UniRef50_UPI00047DBAA4 hypothetical protein 8.64277384978e-08 1.38058405993e-07 20843934.0473 +UniRef50_UPI000471AD13 hypothetical protein 8.37478541801e-08 1.18554968516e-05 4752399525.85 +UniRef50_Q899I0 Stage V sporulation protein B 2.50202582467e-06 1.14814678419e-05 3625110932.5 +UniRef50_S9RXN5 Putative inner membrane protein 8.31015396945e-08 8.74973840396e-08 1774656.30519 +UniRef50_Q5GTV1 Sugar diacide regulator 1.38104630066e-06 1.29059744896e-06 -36515311.3635 +UniRef50_L1KDU4 8.72830045569e-06 1.94714311118e-05 4337133678.91 +UniRef50_P36661 2.75020225313e-05 2.89002768065e-06 -9936164344.33 +UniRef50_F9YAC9 2.8617133074e-06 4.28017330581e-07 -982512930.65 +UniRef50_UPI0004255E20 hypothetical protein 5.19611251428e-08 5.49368222447e-08 1201325.43595 +UniRef50_F2UB74 9.95321893261e-08 1.39094513667e-08 -34566950.0234 +UniRef50_M9RFD9 4.64413498701e-06 4.42826666465e-07 -1696119724.85 +UniRef50_R7PX69 6.2393700412e-05 2.14054320726e-05 -16547466911.2 +UniRef50_J2KWN5 Arabinose efflux permease family protein 3.78065366427e-08 5.43861592415e-08 6693397.09798 +UniRef50_R9ZK82 1.68652148514e-06 8.06142052424e-07 -355419980.458 +UniRef50_C5ZWF4 Peptidylarginine deiminase related protein 1.14389693592e-06 3.23037412972e-05 12579611542.9 +UniRef50_L1KH26 ORFV protein 9.70581892187e-07 4.78781319808e-07 -198545926.141 +UniRef50_Q0BUB7 Succinyl diaminopimelate desuccinylase 2.99576711641e-05 1.85694830246e-07 -12019312189.2 +UniRef50_A4X058 1.223430435e-05 1.52435901257e-05 1214885595.74 +UniRef50_A5ULA6 UPF0173 metal dependent hydrolase Msm_0779 1.23846809465e-05 2.51333366122e-06 -3985184034.12 +UniRef50_B2HYZ7 tRNA tmRNA ) methyltransferase 3.03723241341e-06 8.54744059979e-05 33280898593.9 +UniRef50_A8LWQ1 Oxidoreductase domain protein 2.19044094112e-06 4.39297213552e-05 16850659701.7 +UniRef50_P0AGH1 Inner membrane transport permease YhhJ 3.36667201484e-05 2.17678161078e-06 -12712874612.6 +UniRef50_A9UNP0 SH3, pleckstrin like and PDZ DHR GLGF domain containing protein 1.79923019198e-08 1.55751951591e-07 55615261.0732 +UniRef50_A4X051 0.000142285764795 4.84057044639e-05 -37900532393.6 +UniRef50_M5JU21 1.85239918976e-07 2.03080580472e-07 7202493.97547 +UniRef50_E8SHR5 Chromosome partitioning protein ParB Stage 0 sporulation protein J 0.000126937910239 3.12260636281e-05 -38640046993.3 +UniRef50_Q04DA2 3 isopropylmalate dehydratase small subunit 3.2430716548e-07 2.41717883857e-07 -33342306.4757 +UniRef50_Q1IS40 NADH quinone oxidoreductase subunit H 2 5.32410893835e-08 1.33911958519e-07 32567819.8129 +UniRef50_Q5HS11 0.00012737869146 3.53769179621e-05 -37142244949.8 +UniRef50_UPI0003605BA6 hypothetical protein, partial 2.16197433865e-07 3.09496221717e-05 12407460708.2 +UniRef50_UPI000404D8EB regulator 1.01205889497e-07 1.51833233873e-07 20438880.192 +UniRef50_UPI0003C14420 PREDICTED 2.92037291031e-08 4.37375289598e-08 5867473.35193 +UniRef50_S5CTU5 1.92356592516e-06 9.11951085046e-05 36040017224.3 +UniRef50_D9UKD4 Predicted protein 1.28042074683e-07 4.97794121851e-07 149273438.81 +UniRef50_R1FAU5 7.01471162544e-06 1.94927031816e-06 -2044980815.7 +UniRef50_A5UKK1 DNA binding protein MutS2 2.80697334256e-05 3.87659879655e-06 -9767065332.87 +UniRef50_UPI00036F10D0 hypothetical protein 8.59067594772e-07 3.47982761692e-07 -206331218.831 +UniRef50_F0RLA6 2.44562913323e-06 0.000123542003664 48888092417.8 +UniRef50_E3F346 Methionine binding lipoprotein 1.89426437603e-07 7.30998946131e-07 218639467.535 +UniRef50_UPI00037C3791 hypothetical protein 3.2259218699e-08 2.86077814211e-08 -1474130.03726 +UniRef50_K1EXL1 Phospholipase C, phosphocholine specific 1.73389595439e-06 5.51097153418e-05 21548473281.7 +UniRef50_UPI0001E8977F nucleoside hydrolase 1.47125064197e-07 8.82908127901e-08 -23752109.2704 +UniRef50_D4H5B5 1.32649138925e-06 1.30774623128e-06 -7567650.30144 +UniRef50_P35885 DNA gyrase subunit A 1.42710893207e-06 9.48804956513e-05 37728279020.6 +UniRef50_A7NLC3 D tyrosyl tRNA deacylase 1.77762395761e-05 1.07597491683e-05 -2832643279.65 +UniRef50_R6DP97 1.98027470581e-07 1.78909917545e-07 -7717990.75939 +UniRef50_UPI0003B773D1 DNA topoisomerase I 2.93007381704e-08 1.12154653651e-07 33449142.4114 +UniRef50_U3TY01 5.90379475656e-07 1.58303536793e-06 400747364.969 +UniRef50_Q5HPE4 0.000194993979947 6.23344417616e-05 -53556283480.9 +UniRef50_R9ZKM0 Magnesium transporter 1.46320442795e-05 2.21764734821e-06 -5011844382.95 +UniRef50_L0GLS2 TIGR01244 family protein 1.41136036096e-06 8.02698201999e-05 31836127939.1 +UniRef50_P54420 Asparagine synthetase [glutamine hydrolyzing] 1 1.80698378966e-07 6.01339924236e-06 2354732913.84 +UniRef50_G2AIF5 Ulp1 protease family, C terminal catalytic domain protein 3.35474671301e-06 6.90847353598e-06 1434683127.57 +UniRef50_UPI00034AAAAB hypothetical protein 2.23359339826e-07 9.48525628078e-08 -51879762.8377 +UniRef50_UPI00036B1199 hypothetical protein 2.19272213071e-07 1.39654345244e-06 475278846.076 +UniRef50_C8P5G2 Raf like protein 1.63570707685e-07 1.88200710026e-07 9943434.18918 +UniRef50_UPI000372D48D hypothetical protein 1.83711958332e-07 2.0195102402e-07 7363334.63675 +UniRef50_V5VG85 HAD superfamily hydrolase 3.70141768865e-06 9.571665532e-05 37147680585.7 +UniRef50_P06959 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 2.20739410017e-05 6.89036797609e-06 -6129794753.83 +UniRef50_F9YYE2 Cobalt transport protein CbiQ 2.43539347646e-06 5.56825986583e-05 21496550148.6 +UniRef50_H0K4B0 Cation transport ATPase 2.19063016375e-07 2.93240807719e-08 -76599936.6615 +UniRef50_A4VGJ3 Two component sensor PhoQ 2.31502638684e-06 1.35259559627e-06 -388545120.507 +UniRef50_UPI00037895ED hypothetical protein 0.00012405145672 8.45211038136e-05 -15958888560.3 +UniRef50_A7ZAV2 7.24590291795e-07 6.80123934597e-07 -17951614.0644 +UniRef50_P77129 3.24151028965e-05 7.33907831629e-06 -10123498840.5 +UniRef50_Q6A6T4 30S ribosomal protein S9 1.74224302547e-05 4.25983721408e-05 10163836683.0 +UniRef50_UPI000255C8A1 Bcr CflA subfamily drug resistance transporter protein, partial 1.16441210606e-07 1.75631995319e-07 23896046.1412 +UniRef50_UPI0003721AC4 hypothetical protein 7.24131879379e-08 3.65824035752e-08 -14465327.3404 +UniRef50_C0PWP3 NADH dehydrogenase subunit N 2.01828446479e-05 4.30765470762e-06 -6409008989.39 +UniRef50_A7X5E2 30S ribosomal protein S8 7.27419465536e-05 4.98091515693e-05 -9258250752.2 +UniRef50_C3ZKC0 5.78966240613e-07 5.80985453262e-07 815180.924927 +UniRef50_U3TJ62 Elongation factor 4 0.000145681572819 2.97783928924e-05 -46791536028.5 +UniRef50_D4HA42 7.50814174727e-06 6.10603369223e-05 21619678351.5 +UniRef50_UPI000248A7D5 putative RTX family exoprotein 3.01187350956e-08 1.60938113443e-08 -5662033.82357 +UniRef50_Q5HH83 UPF0413 protein SACOL1006 0.000187421687644 3.66466688092e-05 -60869725321.2 +UniRef50_A5UKS1 Multidrug ABC transporter, permease component 2.52121005343e-05 2.30420874715e-05 -876060902.507 +UniRef50_Q04L81 Phosphopentomutase 0.000376275609514 8.66651938064e-05 -1.16919278741e+11 +UniRef50_UPI00042B1BC9 Translation initiation factor 3 protein isoform 3 1.57490246695e-06 5.57506658017e-07 -410735172.916 +UniRef50_E4N7F4 1.40872216061e-06 2.55552462497e-06 462978227.711 +UniRef50_B1HX23 UPF0173 metal dependent hydrolase Bsph_4138 0.000313180251794 5.15266490804e-05 -1.05632770266e+11 +UniRef50_UPI0003C10FDE PREDICTED 1.12886686987e-07 6.63001724052e-08 -18807547.6175 +UniRef50_J9NUZ7 1.0808790641e-06 8.18768832125e-07 -105817117.103 +UniRef50_W0A1B9 Amino acid ABC transporter permease 1.99507460035e-05 3.78051382928e-06 -6528121159.79 +UniRef50_A0RKC3 4.4939285287e-07 2.22600531548e-06 717240252.642 +UniRef50_UPI000442200E PREDICTED 5.02336279301e-07 1.19141543204e-06 278189709.913 +UniRef50_Q5E0X7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 3.01717531878e-07 3.06882800138e-07 2085282.18153 +UniRef50_I2BTA7 Response regulator GGDEF domain protein 3.54379305876e-06 1.28398567483e-06 -912311971.848 +UniRef50_Q1IXD5 Deoxyguanosinetriphosphate triphosphohydrolase like protein 1.22295676732e-06 1.5328222473e-05 5694468856.47 +UniRef50_D3QJ45 Lysophospholipase Monoglyceride lipase 0.000248243368365 6.35851235367e-05 -74548799448.5 +UniRef50_UPI0003B66D29 MULTISPECIES 1.92869535965e-07 1.44259914324e-06 504531178.362 +UniRef50_R1EJL9 4.21615028546e-07 2.214567742e-07 -80806343.4975 +UniRef50_Q8CQQ7 8.69078289227e-05 3.44679541051e-05 -21170620973.5 +UniRef50_Q8CQQ2 3.04473224981e-06 4.0283158393e-07 -1066567718.58 +UniRef50_Q8CQQ1 8.69487111184e-05 2.88534810204e-05 -23453757299.2 +UniRef50_X5K129 6.93797736497e-06 3.04705348728e-06 -1570813716.43 +UniRef50_N6V788 5.01336522872e-07 7.5648933293e-07 103008320.497 +UniRef50_S6JXH3 4.71238341549e-07 7.32602199024e-08 -160668651.45 +UniRef50_UPI00046638AB DNA primase 4.29461313281e-08 2.59923898793e-08 -6844433.46868 +UniRef50_Q898U9 Conserved protein 6.71677662287e-06 7.09427056483e-06 152398936.741 +UniRef50_A8LPA6 Double strand break repair helicase AddA 3.6548752554e-06 1.17072718617e-06 -1002881059.47 +UniRef50_K6WPK4 MazG family protein 4.33564162064e-08 1.16872658022e-07 29679408.9667 +UniRef50_M9VGE0 Anchored repeat ABC transporter, substrate binding protein 1.62999971089e-06 5.62957330798e-05 22069227385.0 +UniRef50_Q72TV3 Transketolase alpha subunit protein 1.38611746215e-06 1.75313461575e-05 6518026948.53 +UniRef50_UPI00047D8BBE 50S ribosomal protein L4 9.36409651882e-08 1.61475828197e-06 614093726.993 +UniRef50_Q5WFY6 tRNA dimethylallyltransferase 2.61863652902e-07 1.92371124242e-05 7660540781.46 +UniRef50_U5NRL0 0.000106422038483 2.11640084984e-05 -34419712938.5 +UniRef50_UPI0002F8AC80 hypothetical protein 1.43819228574e-07 4.07226407873e-07 106340710.653 +UniRef50_B3RBC2 1.52388957537e-06 7.04788642645e-07 -330681098.04 +UniRef50_Q2W726 Predicted membrane protein 7.73769814453e-07 1.9927411228e-07 -231930964.822 +UniRef50_G7U7H1 Glutamate synthase small subunit 1.99027952915e-06 4.11047620526e-05 15790996583.4 +UniRef50_R1CZY9 7.2780074977e-07 1.06437366211e-06 135878614.926 +UniRef50_V4QWZ4 1.85567168355e-06 8.80681248164e-07 -393615603.243 +UniRef50_E5U2C0 Short chain dehydrogenase reductase SDR 4.60013635729e-07 3.20843455169e-07 -56184709.7022 +UniRef50_Q4EDT9 Mucin 1.22426260359e-06 4.09214833994e-06 1157800664.68 +UniRef50_F4EI16 Acetolactate synthase (Large subunit) 0.000113472918837 9.19934387249e-05 -8671529704.12 +UniRef50_D3E0M6 6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase 3.62337218605e-05 1.36341120637e-05 -9123739803.37 +UniRef50_F0KI03 X Pro dipeptidyl peptidase 7.8588339106e-07 6.39777164504e-05 25511318457.0 +UniRef50_P15288 Cytosol non specific dipeptidase 3.97456084403e-05 1.47535406424e-06 -15450171320.5 +UniRef50_UPI0004121413 hypothetical protein 6.75787726683e-08 1.35943166426e-07 27599544.6854 +UniRef50_A3X4G6 Antirepressor protein ant 1.58113417432e-07 3.05678803322e-07 59573957.1147 +UniRef50_P76296 2.22020271388e-05 4.06414632199e-05 7444226623.27 +UniRef50_G2SXT9 NUDIX hydrolase 2.0367949039e-06 1.35782190507e-05 4659414557.26 +UniRef50_A1T9L9 Malate dehydrogenase 1.3122340285e-06 0.000291133181272 1.17004272905e+11 +UniRef50_F9YXK7 Two component sensor histidine kinase 1.95930649279e-06 7.31743747293e-05 28750396954.2 +UniRef50_U5MLC6 AAA domain protein 1.27572077391e-06 9.84391294057e-06 3459084321.22 +UniRef50_Q46I72 Argininosuccinate synthase 4.74430004006e-08 5.71883859328e-07 211723210.362 +UniRef50_UPI000369A472 hypothetical protein 5.51724409549e-07 5.00589006765e-05 19986654580.4 +UniRef50_R9CVV5 6.4079234952e-06 5.15008164137e-07 -2379042233.35 +UniRef50_I3UHD1 Aminotransferase 3.63256511217e-05 4.59559538132e-06 -12809812874.0 +UniRef50_UPI0004081419 beta lactamase 4.14319233665e-08 3.50773428719e-07 124884961.758 +UniRef50_UPI00047E2D14 secretion system apparatus protein SsaV 8.51625024393e-08 3.10466729178e-08 -21847224.4537 +UniRef50_M0LPL4 Phenol hydroxylase 9.89320014843e-07 1.75071708949e-07 -328722033.04 +UniRef50_UPI000381F5B7 hypothetical protein 3.91677547821e-06 9.23271341845e-07 -1208514354.28 +UniRef50_P43700 DNA gyrase subunit A 6.14583145769e-08 1.82840969638e-07 49003667.3808 +UniRef50_H8GZI4 Secretion protein HlyD 1.07138880474e-06 4.43212176053e-05 17460486621.9 +UniRef50_Q8CNU1 Riboflavin synthase alpha chain 0.000177784123856 2.3786146734e-05 -62170873131.8 +UniRef50_B2N6Z5 1.10003265327e-05 8.16543885337e-06 -1144478944.13 +UniRef50_E2QK28 DNA helicase 1.17286718577e-05 7.25569438844e-05 24557119864.0 +UniRef50_UPI000255651A ammonium transporter, partial 1.40723811568e-07 2.61755125257e-07 48861826.5575 +UniRef50_M4WTW3 4.29697748649e-06 1.11721326058e-06 -1283709838.09 +UniRef50_E7I2X0 6.30894472372e-05 1.72029148658e-05 -18524956209.4 +UniRef50_B9DS55 Sortase A 2.80552835756e-05 1.90495507232e-05 -3635724865.28 +UniRef50_I3V233 Peptidase 1.14062144001e-05 1.49024409689e-06 -4003198894.04 +UniRef50_B0RIE3 L arabinose isomerase 1.07308042934e-06 1.15761148699e-05 4240203890.4 +UniRef50_UPI00035DB610 hypothetical protein 1.13825207902e-06 1.13728501328e-07 -413612740.632 +UniRef50_UPI00042B847E Methylmalonate semialdehyde dehydrogenase 2.79209613497e-08 6.78095826275e-08 16103525.8983 +UniRef50_UPI00036E7EE5 molybdopterin biosynthesis protein B, partial 3.48392700376e-06 7.67472205259e-07 -1096666136.8 +UniRef50_Q9HWR3 Bacteriophytochrome 6.57680918168e-06 5.10799279081e-06 -592979201.398 +UniRef50_Q59200 Aspartate ammonia lyase 5.19200833939e-08 4.59514289948e-07 164550782.929 +UniRef50_UPI0002DA19B1 hypothetical protein 1.788688519e-07 1.22001079492e-07 -22958217.5672 +UniRef50_P75794 Putative pyruvate formate lyase 3 activating enzyme 4.49203344657e-05 1.85761234296e-05 -10635481275.1 +UniRef50_UPI0002000CF0 iron enterobactin transporter ATP binding protein 4.55995981646e-07 8.19784090842e-06 3125477800.06 +UniRef50_UPI00046F3EBA hypothetical protein, partial 1.43590942136e-06 2.58149759058e-07 -475476028.407 +UniRef50_P19498 Coenzyme F420 hydrogenase subunit gamma 5.82867284372e-05 1.19157761483e-05 -18720522474.6 +UniRef50_UPI0004777CC6 hypothetical protein 1.89260584717e-08 2.15776883638e-06 863477075.995 +UniRef50_U2W9U5 UPF0301 protein RS24_01332 3.47052601631e-07 6.74064225045e-07 132018605.256 +UniRef50_Q06553 HTH type transcriptional regulator PrtR 1.57889858106e-05 2.3688505764e-06 -5417873277.62 +UniRef50_UPI00037487E6 ABC transporter 6.59853791689e-08 2.95781752307e-06 1167468123.26 +UniRef50_C6ADP9 NADH quinone oxidoreductase subunit K 3.6858137681e-07 3.50093034092e-07 -7463970.83273 +UniRef50_UPI00016C4BF8 Cadherin 4.34541638288e-07 2.58639304792e-08 -164988205.682 +UniRef50_M9RBW7 GTP cyclohydrolase II 1.18132822539e-05 2.28337658653e-06 -3847339863.01 +UniRef50_Q9K8V3 Arginine biosynthesis bifunctional protein ArgJ 0.000224962992942 8.49409202045e-05 -56528629028.0 +UniRef50_B3E414 Bifunctional protein GlmU 8.37510004881e-08 6.22939159052e-08 -8662488.35415 +UniRef50_Q5LZ25 Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase 5.09873013446e-05 1.93451854745e-05 -12774310469.2 +UniRef50_Q16AB8 DNA directed RNA polymerase subunit alpha 4.7418360618e-07 3.853388935e-07 -35867700.7561 +UniRef50_UPI00046F0F35 aspartate ammonia lyase, partial 4.11831403573e-08 1.06253039417e-07 26269516.7479 +UniRef50_UPI00046B80D6 PREDICTED 4.69301450672e-08 2.80417576926e-06 1113133893.69 +UniRef50_G2NTW9 Short chain dehydrogenase reductase SDR 7.61218720649e-06 8.65325479903e-06 420291762.444 +UniRef50_O83079 Probable metal transport system membrane protein TP_0036 2.83468827669e-06 5.1884334422e-06 950235807.018 +UniRef50_L9PLX0 3.15761616374e-07 5.17809338002e-07 81569144.6256 +UniRef50_A0KMZ9 Glutamyl tRNA reductase 3.76272841621e-06 4.45451703238e-06 279283553.549 +UniRef50_E4G8P9 1,3 beta galactosyl N acetylhexosamine phosphorylase 5.40037180038e-07 1.88072235428e-05 7374687298.25 +UniRef50_A1S781 Response regulator receiver modulated CheW protein 9.49712360507e-06 8.21045777733e-06 -519442783.824 +UniRef50_W8TSS8 2.39566675246e-06 3.29666218454e-07 -834069768.257 +UniRef50_A8AB61 Probable 2 isopropylmalate synthase 8.23363681964e-08 2.69082339009e-07 75391640.048 +UniRef50_Q9RYG6 3.11114825983e-06 2.00192613915e-05 6826012757.15 +UniRef50_UPI00022CA85B PREDICTED 1.67206365576e-07 1.42221842394e-06 506663768.69 +UniRef50_A9GZY1 Imidazoleglycerol phosphate dehydratase 2.00025918566e-06 6.12483774869e-07 -560261963.255 +UniRef50_L9U970 Diguanylate cyclase, predicted 4.44901541901e-08 3.0821241504e-06 1226330120.23 +UniRef50_B2KC44 Phosphoglycerate kinase 1.64771333166e-07 2.14821956866e-07 20206050.9779 +UniRef50_A0A022H326 Ferredoxin 7.80753761892e-08 1.03377285387e-07 10214691.2325 +UniRef50_P55140 UPF0603 protein YgcG 2.32405375509e-05 8.33533499289e-06 -6017413180.07 +UniRef50_Q43973 3 oxoadipate CoA transferase subunit A 6.99681031629e-07 8.29749485856e-07 52510231.0909 +UniRef50_A8AWN6 Conserved domain protein 2.51017809446e-05 2.93268566382e-05 1705714905.02 +UniRef50_UPI000366463F hypothetical protein 6.45484660499e-07 6.99603741324e-08 -232346216.884 +UniRef50_L8MIC1 3.00815987978e-06 1.22191245849e-07 -1165100952.34 +UniRef50_UPI00037EFF82 50S ribosomal protein L15 6.44391478779e-07 9.38662676786e-08 -222253783.425 +UniRef50_Q8CRB0 Putative hemin import ATP binding protein HrtA 0.000138741025062 3.66103831171e-05 -41231393437.1 +UniRef50_UPI0001BF5A9F hypothetical protein SMAC_11746, partial 2.91611870626e-06 1.91151426333e-06 -405571141.494 +UniRef50_G2HDN4 BRO family, N terminal domain protein 8.23436996613e-07 3.62175311863e-07 -186217002.451 +UniRef50_Q9RWY0 2.53341511792e-06 0.000389684411848 1.56297608257e+11 +UniRef50_UPI0003D3911F ribosomal RNA small subunit methyltransferase h 7.62470044563e-08 1.05312420279e-06 394377312.599 +UniRef50_Q5HQR8 Organic hydroperoxide resistance protein like 1 0.000214197108173 3.93010417811e-05 -70607688218.5 +UniRef50_X0ZSL3 Marine sediment metagenome DNA, contig 4.45398502847e-07 9.59410621346e-07 207512999.876 +UniRef50_UPI0003724FBD hypothetical protein 1.70391743684e-07 2.93576252779e-06 1116414120.46 +UniRef50_A8LHS2 Response regulator receiver protein 5.23985896798e-05 8.72296127457e-06 -17632387147.4 +UniRef50_W8H2B8 Regucalcin 1.44630647073e-06 5.80405488735e-05 22847790147.5 +UniRef50_P52027 DNA polymerase I 4.5441235698e-06 0.000899671733998 3.61374000781e+11 +UniRef50_UPI00037D8096 hypothetical protein, partial 9.30577707388e-08 1.34185595907e-07 16603807.7156 +UniRef50_E3GWV9 PP loop domain protein 1.57722042691e-05 3.92013325476e-06 -4784826509.74 +UniRef50_Q1IZL3 LmbE like protein protein 3.35634745854e-06 0.000212185274381 84306800417.5 +UniRef50_Q97SH4 PTS system mannitol specific EIICB component 3.98424730508e-05 5.79947850599e-05 7328311111.99 +UniRef50_F3RIQ8 Membrane protein 3.16825604574e-08 3.42474658001e-05 13813331568.7 +UniRef50_P11018 Major intracellular serine protease 1.31478655976e-07 5.07387862034e-06 1995307515.68 +UniRef50_R8ZJ12 9.10978934231e-07 4.47562574115e-07 -187086871.337 +UniRef50_I0C7W6 Two component sensor histidine kinase 0.000153353632801 6.43957312949e-05 -35913396474.2 +UniRef50_C4S8U7 2.14075229968e-06 2.8214971834e-06 274825063.237 +UniRef50_R6GJ60 Capsular polysaccharide biosynthesis protein 8.39950042856e-06 2.02271033702e-05 4774948448.53 +UniRef50_D9RDA2 9.11467842562e-05 7.73505472778e-06 -33674338787.6 +UniRef50_UPI0003B53675 sugar ABC transporter permease 7.98745148785e-08 1.9144667355e-07 45043049.5998 +UniRef50_A5EP16 Glutathione dependent formaldehyde activating enzyme 1.64093545092e-06 4.69119845976e-07 -473076339.509 +UniRef50_UPI0003769E9C hypothetical protein 6.39090561039e-08 1.70280386359e-07 42943411.347 +UniRef50_Q1C0Q8 Hemin import ATP binding protein HmuV 9.12580062532e-08 1.05865463681e-05 4237076703.33 +UniRef50_M9R9I4 Magnesium chelatase 2.23250714965e-05 5.34477413705e-06 -6855154415.71 +UniRef50_I0C723 Sodium glutamate symport carrier protein 0.000205458579098 7.97658452614e-05 -50743699073.3 +UniRef50_Q46942 1.70256987206e-05 8.32525848402e-06 -3512474489.92 +UniRef50_J2X9Z3 2.67261143485e-08 6.23106273873e-07 240765988.807 +UniRef50_Q46941 1.94580406623e-06 3.32439067766e-06 556552332.194 +UniRef50_P13792 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.000384031448111 0.000123347160175 -1.05241445996e+11 +UniRef50_E8P9H9 5.25056461606e-06 6.49211513738e-05 24089748114.5 +UniRef50_P0C7J3 Xanthan biosynthesis protein XanB 2.91046553415e-05 1.37305064405e-05 -6206732573.36 +UniRef50_M0UK13 1.22272515804e-06 1.25824168676e-06 14338458.4811 +UniRef50_X2IBS7 Membrane protein 2.75200193901e-06 3.30652620623e-05 12237835097.3 +UniRef50_UPI00037A8F71 hypothetical protein 5.06163482945e-08 4.53595106846e-06 1810784667.78 +UniRef50_K2DQ77 GTP binding protein lepA 6.0538315917e-08 1.88146827957e-07 51517122.2431 +UniRef50_UPI000400635E DNA mismatch repair protein MutT 1.62247560728e-06 5.75802905911e-07 -422554613.661 +UniRef50_UPI00038209BB transcriptional regulator 1.83300122598e-06 2.81049944004e-07 -626541777.119 +UniRef50_Q2FH55 Putative oligopeptide transport system permease protein oppB2 0.000134602893365 0.000108790275804 -10420870465.8 +UniRef50_UPI00029DCC9C 1.84294510213e-06 5.13601339319e-06 1329452079.59 +UniRef50_D4N0A6 Molybdenum ABC transporter, periplasmic molybdate binding protein 2.22214593284e-05 2.03254794171e-05 -765430356.482 +UniRef50_UPI0003B45259 alkaline phosphatase 3.50209799089e-07 5.81034261443e-06 2204322620.92 +UniRef50_D5CAF9 3.36169916204e-06 4.18955646732e-06 334216153.093 +UniRef50_B2SEB4 Potassium transporting ATPase A chain 4.85881193605e-08 1.19868000706e-05 4819602663.03 +UniRef50_W8T550 5.80747675156e-06 6.21719379354e-06 165407797.641 +UniRef50_UPI000478594F hypothetical protein 1.4766966765e-07 2.09997442632e-06 788169388.549 +UniRef50_I0L9E3 4.38360129026e-07 4.24567466967e-06 1537059601.06 +UniRef50_A4WXR5 KDPG and KHG aldolase 8.03880982384e-05 1.07310369415e-05 -28121410433.8 +UniRef50_A5UNE2 Lipopolysaccharide cholinephosphotransferase, LicD family 1.07332626788e-05 6.34695737091e-06 -1770805278.81 +UniRef50_A6M165 Cellulose synthase subunit domain 3.52031405009e-06 6.89366935207e-06 1361864931.13 +UniRef50_UPI0004790220 3 oxoacyl ACP synthase 2.98933680558e-07 9.55774408665e-07 265174662.279 +UniRef50_Q167X1 8.65145600978e-07 5.02572088566e-07 -146375376.238 +UniRef50_Q89T28 D amino acid dehydrogenase small subunit 3.13097404822e-07 2.44842131656e-07 -27555491.3635 +UniRef50_U5MUN0 Methyl accepting chemotaxis protein 8.27264212578e-06 1.50603995566e-05 2740300969.97 +UniRef50_UPI00040BC712 hypothetical protein 8.31013628726e-07 9.98554563629e-07 67638331.3788 +UniRef50_F5ZGJ9 DNA binding protein 5.44253637728e-06 2.05897774935e-05 6115127116.16 +UniRef50_W7WFV4 Methylmalonyl CoA mutase 8.70044121497e-05 0.000354080337189 1.07821828328e+11 +UniRef50_UPI0003B3E18A branched chain amino acid transporter permease subunit LivH, partial 3.19446333364e-07 2.21280798993e-06 764373334.918 +UniRef50_J0HWL6 Ornithine cyclodeaminase family protein 9.09159244793e-06 1.4412000921e-05 2147914189.33 +UniRef50_X1DRG2 Marine sediment metagenome DNA, contig 6.11351577872e-07 8.82998539463e-07 109667211.877 +UniRef50_W8U5L3 Membrane protein 0.000155492116707 6.4466919726e-05 -36747989026.0 +UniRef50_O87455 Regulatory protein LuxO 2.41881672162e-08 1.31800301911e-07 43444339.3258 +UniRef50_F9YBY3 1.55893585443e-07 5.76044015639e-08 -39680549.6759 +UniRef50_G2P974 1.72563666846e-06 5.00513721912e-06 1323974616.3 +UniRef50_UPI000380AAE2 hypothetical protein 6.85204392128e-08 1.25181607095e-07 22874808.7848 +UniRef50_K4QA11 4.99251001873e-05 3.4618561543e-05 -6179437483.06 +UniRef50_S3CIA8 2.45652487326e-06 7.53183355323e-08 -961322299.972 +UniRef50_A7B8C4 1.73126949524e-06 2.65325371329e-07 -591819631.98 +UniRef50_F3ZB63 2.77464365198e-07 1.77194666293e-06 603340842.954 +UniRef50_Q8FE91 2.01712142729e-05 3.38913356757e-05 5538981375.13 +UniRef50_F0QJX2 1.72368031437e-06 7.562430502e-05 29834589056.3 +UniRef50_W1J5V3 4.35785298304e-08 4.85912924281e-08 2023713.77421 +UniRef50_J0EVE3 1.24235623274e-05 2.09537103627e-06 -4169617565.38 +UniRef50_Q3IVF5 3.36010076035e-06 5.8292584037e-06 996829240.592 +UniRef50_Q6F7V8 UPF0761 membrane protein ACIAD3168 8.16287476459e-06 5.28826578293e-05 18053925196.7 +UniRef50_Q3IUV2 TraG 0.000486802890938 9.04476092797e-05 -1.60013491032e+11 +UniRef50_U3PCK7 Transposase, undefined 1.69276228183e-06 3.59227547095e-05 13819067992.3 +UniRef50_A6LZB4 ApbE family lipoprotein 1.25507977032e-05 2.65329601631e-05 5644770565.49 +UniRef50_UPI000464EBB9 peptide ABC transporter permease 1.72134221425e-07 1.92683129629e-07 8295846.40541 +UniRef50_K0R9N5 2.5073416049e-06 4.25014931009e-06 703592857.241 +UniRef50_A6LQI1 Peptidase M23B 2.08940584237e-06 8.57841600189e-06 2619693030.51 +UniRef50_F2U4B6 1.06743070311e-06 5.73293565432e-07 -199489226.225 +UniRef50_Q21CV9 1.83412135498e-06 3.70334792115e-07 -590948598.112 +UniRef50_U3TUS4 3.60293819091e-06 5.65338671989e-06 827791232.982 +UniRef50_G8V566 Type I restriction modification system, M subunit 0.000218564909431 4.37172847513e-05 -70588131705.0 +UniRef50_D4HCJ3 3.92857701553e-06 8.78786675052e-05 33891681714.1 +UniRef50_P45604 PTS system N acetylglucosamine specific EIICBA component 1.09046467628e-05 3.20648989845e-06 -3107840393.15 +UniRef50_J2P2T7 2.22323077368e-07 3.03513455479e-07 32777551.9614 +UniRef50_P39314 Inner membrane protein YtfF 2.6858644445e-05 1.69363053799e-05 -4005770041.37 +UniRef50_UPI00047D7CE0 hypothetical protein 5.80003017432e-08 9.61174970447e-08 15388379.4938 +UniRef50_B8FMK3 1.74162867556e-07 1.34307026745e-06 471902261.442 +UniRef50_UPI00046354D6 short chain dehydrogenase 1.59145833043e-07 5.8692915881e-07 172701378.104 +UniRef50_S9R2Y6 Putative permease 3.93452167832e-07 8.83730768021e-08 -123164172.79 +UniRef50_D1YZX5 3.08892278564e-05 5.03243107096e-06 -10438706160.8 +UniRef50_J0QYX6 4.35236190987e-06 1.07387892798e-05 2578279099.52 +UniRef50_M9REI0 2.66447825424e-07 7.77149224201e-06 3029878528.23 +UniRef50_C7ZY45 Exported protein 8.01838242036e-05 4.57785718507e-06 -30523056674.9 +UniRef50_Q5LXB5 Cell division ATP binding protein FtsE 1.45458271057e-05 5.39145993045e-06 -3695730365.37 +UniRef50_U1YI17 1.45561227567e-06 1.221998351e-05 4345708760.98 +UniRef50_UPI0003C1261B 9.79014043294e-08 3.76022466229e-08 -24343509.92 +UniRef50_F9Y3X8 1.55155384122e-06 8.09086863555e-06 2640001628.89 +UniRef50_V1L1Y8 3.64841465405e-07 1.36587356879e-07 -92148984.6048 +UniRef50_Q8CNK0 Single stranded DNA binding protein 9.4199465049e-05 5.21147126817e-06 -35925545094.8 +UniRef50_UPI000469F81E hypothetical protein 7.45498326877e-06 5.66940494409e-07 -2780787393.8 +UniRef50_L2EAP1 Exodeoxyribonuclease III 3.8199370321e-07 5.11107790903e-07 52124941.6097 +UniRef50_Q8TRP1 Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein 7.26095449386e-05 6.32821511134e-05 -3765583347.23 +UniRef50_UPI0003C80514 PREDICTED 6.57768244641e-08 3.66381838626e-07 121357933.056 +UniRef50_Q9PLA5 Phosphoglucosamine mutase 3.82441062837e-08 1.02789372434e-07 26057716.0044 +UniRef50_Q8DUC9 Probable 2 3 dephosphocoenzyme A synthase 5.02967481164e-05 2.22042635489e-06 -19409001057.9 +UniRef50_UPI0004666A9C AraC family transcriptional regulator 1.3124441939e-07 3.41178328498e-07 84752895.2857 +UniRef50_A6THJ4 Inosose dehydratase 3.84721935408e-06 3.58732190147e-05 12929289066.2 +UniRef50_W6IPV9 Oligopeptide transport system permease protein oppC 1.13678785725e-05 5.4378583526e-05 17363949390.4 +UniRef50_F2AKS8 Ferripyochelin binding protein 2.92223381621e-07 1.90221380088e-07 -41179459.7242 +UniRef50_C0R046 DNA gyrase subunit A 8.49582573032e-08 1.30920927672e-07 18555694.0533 +UniRef50_E8SFS5 Membrane protein 0.000102612909261 1.58151688859e-05 -35041312917.5 +UniRef50_E8SMB7 2.21245509073e-07 3.01594699307e-06 1128255283.93 +UniRef50_A4IQK7 NADPH dehydrogenase 2.8473584077e-06 7.37483462682e-05 28623598852.2 +UniRef50_X5DZP9 Binding dependent transport system inner membrane component family protein 0.000137735061245 6.70808739261e-05 -28523962445.0 +UniRef50_UPI0002557D62 preprotein translocase subunit SecD, partial 1.43516641128e-07 1.93930226855e-07 20352583.2023 +UniRef50_Q88AR2 Amino acid acetyltransferase 5.40439021321e-06 4.75576199572e-05 17017776126.0 +UniRef50_Q9RW26 1.33387275209e-06 0.000406672013277 1.63639981388e+11 +UniRef50_UPI00035DB8C9 hypothetical protein 5.33717784867e-07 7.98147080173e-07 106753351.427 +UniRef50_R5TC44 Nicotinate nucleotide diphosphorylase 1.68020469813e-06 1.94253901995e-05 7163949144.83 +UniRef50_A5IQ60 Septum formation initiator 6.16874873303e-05 4.75040276462e-06 -22986199735.8 +UniRef50_X4Z0U6 Ferredoxin NADP reductase 9.28504219647e-06 6.94649297846e-06 -944101016.537 +UniRef50_UPI0001FE5E48 heat shock protein 60 3.1780377307e-08 3.71904127117e-08 2184097.68148 +UniRef50_UPI0003B74A81 hypothetical protein 2.74583980216e-07 4.26608729433e-08 -93630204.4227 +UniRef50_Q9P2R7 Succinyl CoA ligase [ADP forming] subunit beta, mitochondrial 1.78612133872e-07 1.56592769282e-07 -8889487.69297 +UniRef50_Q97Q34 Phosphate import ATP binding protein PstB 2 3.3893941053e-05 8.98583867128e-05 22593533473.8 +UniRef50_D9SQU6 Two component transcriptional regulator, AraC family 7.06276031499e-06 2.6525452562e-06 -1780457938.66 +UniRef50_Q4K8A6 4.00438693685e-06 1.78799216058e-06 -894785769.403 +UniRef50_UPI00036AA061 hypothetical protein 7.45189355561e-07 1.2865573396e-07 -248902188.759 +UniRef50_UPI0003EC0186 PREDICTED 1.37311112e-07 1.51186518993e-07 5601672.07347 +UniRef50_UPI00037642BA hypothetical protein 3.66397505118e-07 1.49557016639e-07 -87541166.131 +UniRef50_UPI00045EADA1 hypothetical protein 8.28959199131e-07 1.40559587951e-06 232795303.997 +UniRef50_UPI00034763C5 MerR family transcriptional regulator 4.74654928799e-06 5.78590492844e-07 -1682656112.21 +UniRef50_G4LFL9 LysR family transcriptional regulator 1.08472985299e-06 2.8214971834e-06 701154283.818 +UniRef50_G7DFY8 Ribonuclease E 1.1799255524e-06 7.47982964581e-08 -446153434.659 +UniRef50_X1BCT6 Marine sediment metagenome DNA, contig 1.15196539565e-06 3.51263109119e-07 -323253338.795 +UniRef50_B2TK60 Probable septum site determining protein MinC 5.02843418349e-06 3.99077268268e-05 14081198457.2 +UniRef50_L5SXQ3 Pre toxin domain with VENN motif family protein 1.02231219307e-06 1.42109155358e-05 5324401011.81 +UniRef50_E0RLL7 1.8933721167e-06 9.48500981991e-06 3064837300.66 +UniRef50_D5AUC1 Entericidin B 1.43375129927e-06 3.34982807773e-06 773543708.37 +UniRef50_A8LMQ8 Flagellar biosynthetic protein FliQ 4.40645123179e-06 2.53711225891e-05 8463695092.39 +UniRef50_Q1RAX2 1.49203948168e-06 2.11537908182e-05 7937690291.37 +UniRef50_I6SUA4 4.58485006708e-06 2.42726059064e-05 7948188628.26 +UniRef50_Q8L4A1 Os01g0594900 protein 6.94743151263e-08 3.12876736575e-07 98264544.4226 +UniRef50_K1YIM5 4.63979558566e-07 2.88807242417e-07 -70719213.6354 +UniRef50_A0A037XEA8 2.16621982584e-06 3.99111620792e-07 -713403267.235 +UniRef50_A0A024BU97 Restriction endonuclease 1.40329363887e-06 4.17876325955e-05 16303653208.3 +UniRef50_UPI000393D62B PREDICTED 2.83298204633e-07 1.02693012991e-06 300213333.624 +UniRef50_A3VHI7 1.74798908723e-07 2.32430156762e-07 23266442.0483 +UniRef50_Q8TL41 Histidinol dehydrogenase 3.65126689167e-05 3.35743979983e-06 -13385172854.9 +UniRef50_R9SKI2 2.93288380079e-05 5.93673877247e-06 -9443677514.67 +UniRef50_A6M1Y0 Helix turn helix domain containing protein, AraC type 2.68354968373e-06 1.07998063921e-05 3276632430.84 +UniRef50_B2UPP6 Serine tRNA ligase 4.31440833953e-08 6.56981880839e-08 9105368.83278 +UniRef50_A0A017HRP7 1.49301516771e-05 3.82699833941e-06 -4482479253.44 +UniRef50_Q3AC06 Orotidine 5 phosphate decarboxylase 8.31233803921e-08 1.23476307987e-07 16290972.0562 +UniRef50_UPI000379A499 hypothetical protein 2.26629214133e-07 9.42306533443e-07 288927716.154 +UniRef50_V9VQ76 1.64209898081e-06 1.02302314553e-06 -249928511.617 +UniRef50_UPI000369122A MULTISPECIES 2.16098754762e-08 2.38331544246e-06 953449518.776 +UniRef50_UPI00037FB80C hypothetical protein 1.05717783489e-06 4.94455970948e-06 1569383766.31 +UniRef50_G7VQW0 Transcriptional regulator 6.80605380771e-06 3.21578989328e-06 -1449433599.75 +UniRef50_M9J5S9 Molybdopterin binding domain of aldehyde dehydrogenase family protein 1.2460194578e-05 1.2513975607e-05 21712061.3747 +UniRef50_S5CX29 Tfp pilus assembly protein PilN 1.87623644098e-06 9.12633259005e-05 36086664917.7 +UniRef50_Q4FUV6 Ribonuclease 3 6.49555865574e-08 9.10848474903e-08 10548703.2807 +UniRef50_D4HD89 ABC transporter, ATP binding protein 2.69028562208e-06 2.95446087741e-05 10841419796.1 +UniRef50_P0ABW6 3.07234031678e-05 6.00681288588e-05 11846825861.7 +UniRef50_Q4FQY1 Kef type potassium proton antiporter, CPA2 family 3.60080554404e-06 6.53011483829e-05 24909185552.4 +UniRef50_S5YCT9 Phage terminase, large subunit 6.30700988258e-05 2.01019547971e-05 -17346767022.8 +UniRef50_I0ESR9 Outer membrane protein 1.78339837253e-06 1.57467049693e-05 5637158222.17 +UniRef50_UPI000409D90E anthranilate synthase 6.57649524542e-08 4.46571148272e-07 153736134.269 +UniRef50_D8TK47 9.0201762821e-09 3.43064572641e-08 10208381.93 +UniRef50_A5UP23 Predicted type II restriction enzyme, methylase subunit 2.50715628528e-05 5.89895765484e-06 -7740215992.76 +UniRef50_Q1GRL4 3.16021986139e-06 3.6288234313e-06 189181011.585 +UniRef50_L1KBI7 3.36425283838e-05 1.86515813808e-05 -6052029264.72 +UniRef50_Q5HXV5 7.44019142805e-07 1.49458102594e-06 303011042.652 +UniRef50_C5N3V2 3.78038822699e-05 5.13594269898e-06 -13188448085.5 +UniRef50_A4WRE5 5.906929177e-06 1.99126531826e-06 -1580801550.37 +UniRef50_UPI00020002D3 putative PucR family transcriptional regulator 1.47510901346e-06 3.69083844231e-06 894517160.484 +UniRef50_Q2SSX9 Thymidine kinase 1.66097988762e-07 2.1055012477e-07 17945872.7955 +UniRef50_I7ZF55 1.3644086975e-06 1.23103691313e-06 -53843826.006 +UniRef50_P44988 Probable 3 keto L gulonate 6 phosphate decarboxylase 3.29877872758e-07 1.01936148713e-06 278352996.037 +UniRef50_Q2FKF1 HTH type transcriptional regulator NorG 0.000140365423594 1.85704148664e-05 -49170139616.3 +UniRef50_A5MZU0 Carbamoyl phosphate synthase large chain 0.000206365472876 7.2008959981e-05 -54241372995.5 +UniRef50_X1FQR4 Marine sediment metagenome DNA, contig 2.42676766694e-05 6.22600699033e-06 -7283643445.64 +UniRef50_UPI0003C7D137 GntR family transcriptional regulator, partial 1.74753803149e-07 4.29016648114e-07 102649030.668 +UniRef50_UPI00038107A2 hypothetical protein 2.94353631654e-07 3.21249766244e-07 10858299.5867 +UniRef50_UPI00036F8AFA hypothetical protein 4.08608974045e-08 5.77075298785e-08 6801192.26118 +UniRef50_P48992 Glucose 6 phosphate 1 dehydrogenase 4.34300583625e-08 6.9809375984e-08 10649654.2344 +UniRef50_UPI00037C824E hypothetical protein 3.17098043384e-08 5.55708393328e-08 9632992.63507 +UniRef50_UPI00035C9A62 hypothetical protein 1.09973915859e-07 5.99502023838e-08 -20195186.9899 +UniRef50_A0A023KTG8 9.14858537385e-06 6.24354449424e-06 -1172800651.96 +UniRef50_P56467 Bifunctional protein FolD 2.14238819437e-05 2.93889780919e-05 3215607057.75 +UniRef50_A6LWE6 MATE efflux family protein 2.72638384566e-06 1.75375667244e-05 5979456281.78 +UniRef50_Q5E4Y6 Multidrug resistance protein NorM 3.8373497558e-05 1.01723733223e-05 -11385139920.7 +UniRef50_U7Q105 2.48195205855e-06 1.24914957604e-06 -497697490.377 +UniRef50_X6C2W9 3.10115802854e-06 1.14983011246e-06 -787775025.208 +UniRef50_G2BBB9 Putative nucleoside transporter yegT 1.71577862372e-05 4.39834156204e-06 -5151144391.37 +UniRef50_X6GIM5 1.30112802013e-06 6.44902103573e-07 -264926455.312 +UniRef50_O88167 2.21287060048e-05 5.54384822661e-06 -6695510604.15 +UniRef50_U5MKZ1 2.29061253196e-06 3.48014976398e-06 480230777.83 +UniRef50_J7RAK2 3.17215116685e-06 4.46322476372e-06 521222254.311 +UniRef50_Q8CMQ9 Integrase like protein 0.000113498716223 2.80029459856e-05 -34515691595.9 +UniRef50_F8FIU0 Fibronectin type III domain protein 8.53996801325e-09 6.67878014752e-08 23515365.1499 +UniRef50_P60620 Cytochrome c oxidase subunit 1 8.93576510755e-08 1.54255874919e-07 26200209.3564 +UniRef50_Q51281 SiaD protein 2.79766792204e-06 3.06552384774e-05 11246443084.0 +UniRef50_UPI000361F695 hypothetical protein 7.44892389863e-08 9.42670065707e-07 350495253.524 +UniRef50_UPI0003650B5E membrane protein 4.31011317786e-07 2.96292610492e-07 -54387595.319 +UniRef50_V6PWB3 Putative hydroxylase 2.72691389861e-06 1.17875560339e-06 -625010501.819 +UniRef50_Q5HQD3 1.82654510736e-05 5.63515862993e-05 15375840160.1 +UniRef50_Q7VF14 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 8.76515453935e-07 3.23515807234e-05 12706870091.8 +UniRef50_B0VKD0 7.58511699003e-07 7.77058920826e-05 31064601711.4 +UniRef50_Q6G7H4 Pyrimidine nucleoside phosphorylase 0.000122171458195 5.86089131741e-05 -25660979425.1 +UniRef50_Q8FJZ8 Anaerobic C4 dicarboxylate transporter DcuC 3.52193410469e-05 1.16831931997e-05 -9501831706.93 +UniRef50_UPI0003B4CAB0 aldolase 9.76479805642e-07 1.28743834611e-07 -342241414.395 +UniRef50_UPI000373CDB9 hypothetical protein 4.85989041993e-07 1.43305684582e-06 382342894.234 +UniRef50_H5TWV5 6.02360653771e-08 6.97741563537e-06 2792550275.74 +UniRef50_C3AIA3 Tetracycline resistance protein 0.000103959215818 1.55327560326e-05 -35698846930.1 +UniRef50_P07959 Methyl coenzyme M reductase operon protein C 4.16449740632e-05 7.27032411488e-06 -13877468008.5 +UniRef50_UPI0003C12BE2 1.29003850737e-08 2.13090961836e-07 80819392.4534 +UniRef50_F2LJU7 Glycogen debranching enzyme GlgX 0.000182449848315 3.92154396091e-05 -57825488478.5 +UniRef50_Q65LN0 Allantoinase 3.46025831777e-07 1.54656460807e-07 -77258163.4269 +UniRef50_Q5LX31 SN glycerol 3 phosphate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 3.17856151176e-07 1.10146083009e-07 -83855103.4082 +UniRef50_F2A477 2.2322410781e-07 1.2745494446e-07 -38663186.4642 +UniRef50_L3HWN4 Inner membrane protein ybhI 1.22010641195e-05 4.55474260252e-06 -3086913827.32 +UniRef50_G0DSV1 6.8741921812e-06 4.54627958737e-05 15578692846.1 +UniRef50_B8EJI8 3.04944529445e-05 1.81366132848e-05 -4989011518.37 +UniRef50_Q9CNG8 Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase 3.17611417474e-05 9.03741174027e-06 -9173848655.39 +UniRef50_E3I7F3 Cobyrinic acid ac diamide synthase 6.51188190487e-08 2.9604269619e-07 93226802.9565 +UniRef50_S3AZM5 5.73249026795e-08 1.43411487562e-06 555827007.189 +UniRef50_Q7VK29 Cysteine synthase 1.24037017145e-06 8.09235523947e-06 2766230455.27 +UniRef50_X1PWX6 Marine sediment metagenome DNA, contig 2.03948557329e-06 2.91759596936e-07 -705578423.662 +UniRef50_A5UP33 Smf protein 2.37045253521e-05 6.28329949776e-06 -7033162659.86 +UniRef50_A5UMV5 Glycosyltransferase, GT2 family 3.11328702917e-05 3.93755606923e-06 -10979082075.7 +UniRef50_Q9M2W3 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 2 8.90651653809e-08 4.08553745248e-07 128981460.258 +UniRef50_M9VF88 NADH 2.48346045292e-06 5.17352204749e-05 19883539907.9 +UniRef50_I0C542 Glucosyltransferase 7.02717732491e-05 1.86684014285e-05 -20832914448.6 +UniRef50_C6XR84 NAD NADP transhydrogenase alpha subunit like protein 3.375892779e-07 2.75114240181e-07 -25221939.3821 +UniRef50_A6T5N6 Chaperone protein HtpG 2.95740182287e-05 2.03979767318e-05 -3704480554.99 +UniRef50_UPI0003502022 PREDICTED 6.59694442395e-08 5.10526363105e-07 179473083.473 +UniRef50_UPI00036716A7 hypothetical protein 3.4260898122e-06 2.06929462571e-06 -547754866.535 +UniRef50_UPI000273E85C 1.66710369258e-07 1.32735879763e-07 -13715918.323 +UniRef50_D4HEW0 2.2641612484e-07 7.59766278309e-07 215320001.898 +UniRef50_A3PP38 D12 class N6 adenine specific DNA methyltransferase 0.000295629643443 8.19118328052e-05 -86280502767.0 +UniRef50_Q9C667 Chaperonin 60 subunit beta 4, chloroplastic 6.54434900095e-06 2.42194181819e-06 -1664266367.31 +UniRef50_A3PIP1 Response regulator receiver protein 0.000105161430133 5.28925442146e-06 -40319622904.1 +UniRef50_G8TK26 RNA splicing ligase RtcB 8.2002749205e-07 0.000149749020992 60124462240.2 +UniRef50_O67606 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 6.98981697952e-08 3.67666856289e-08 -13375586.727 +UniRef50_UPI0003478999 hypothetical protein 1.08983575444e-06 5.82778421565e-07 -204705267.575 +UniRef50_D6SIH2 7.73108576611e-05 4.31119277652e-06 -29470860520.5 +UniRef50_F2ILR6 3.67618153701e-07 1.81335033527e-06 583659822.829 +UniRef50_Q98M95 Glutamyl tRNA amidotransferase subunit A 2.37147733297e-06 3.21669961322e-05 12028816571.4 +UniRef50_UPI000006751A nitrogen regulatory protein PII like protein 2.90375352569e-07 3.16559149621e-06 1160760040.06 +UniRef50_U7GB94 2.09100794515e-06 7.97531594149e-07 -522192275.638 +UniRef50_Q9RZM6 3.35389401508e-06 0.000308125016165 1.23039841974e+11 +UniRef50_Q9RZM4 2.93440201024e-07 0.000182123707272 73407110124.9 +UniRef50_D9UC90 Primosome assembly protein 5.36994430255e-07 1.92120849322e-06 558824203.434 +UniRef50_F9VK25 Stage IV sporulation protein B 2.37593333424e-06 1.5680533019e-06 -326151082.858 +UniRef50_A6M0K3 Cell wall hydrolase autolysin 1.59951690188e-06 1.44597104386e-05 5191817943.09 +UniRef50_P10802 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 6.3301171976e-07 5.15507726424e-08 -234742919.68 +UniRef50_Q9LFG2 Diaminopimelate epimerase, chloroplastic 3.85265588537e-08 5.321586737e-07 199285342.311 +UniRef50_UPI00037D35D7 hypothetical protein 5.04826590268e-08 5.81211378162e-08 3083747.62196 +UniRef50_P37252 Acetolactate synthase small subunit 9.33676689548e-05 5.95234761442e-05 -13663315952.6 +UniRef50_M4K5M0 ParB family protein 1.30417110365e-06 2.66638975414e-07 -418864452.121 +UniRef50_L7WU10 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.000229378562368 1.85423249822e-05 -85117176284.3 +UniRef50_Q58210 3.33113857765e-05 9.94409133935e-06 -9433663513.21 +UniRef50_Q57240 2.85942248103e-05 7.05470199178e-06 -8695769681.5 +UniRef50_UPI000380CA19 hypothetical protein 6.70725298533e-06 6.6742054874e-07 -2438354471.73 +UniRef50_D1BKQ4 H+ gluconate symporter family protein 1.0519512834e-05 1.00359164114e-05 -195233810.199 +UniRef50_A0A011PNK5 3.44156712882e-06 3.99706182979e-07 -1228036591.67 +UniRef50_Q1QEV4 FAD linked oxidase like protein 1.51593959689e-06 1.1586618294e-05 4065656571.14 +UniRef50_W7W9I9 1.12080480659e-06 3.27773555248e-07 -320156447.755 +UniRef50_K2EIE6 1.15988662284e-06 1.71528319744e-07 -399012375.48 +UniRef50_UPI000369EE8C hypothetical protein, partial 3.85010404535e-07 8.63873367583e-07 193322854.492 +UniRef50_Q2JXY9 Argininosuccinate lyase 9.15670852882e-08 9.60227028292e-06 3839587590.34 +UniRef50_UPI00047276FD hypothetical protein 2.240771927e-07 3.04648974198e-07 32527816.9177 +UniRef50_B6J8V2 Ribosomal RNA small subunit methyltransferase G 3.73457988256e-07 3.75329934262e-07 755727.573983 +UniRef50_G6EGC5 Transposase orfA IS5 family element 1.31747955477e-06 3.54893419419e-07 -388607835.101 +UniRef50_A6M244 ROK family protein 3.95140146384e-06 1.26035496861e-05 3492978411.12 +UniRef50_UPI0003B46258 MerR family transcriptional regulator 1.02186792765e-07 3.10362588046e-07 84043123.1592 +UniRef50_T1Y643 Homoserine O acetyltransferase 0.000220777961045 5.67906340118e-05 -66203696274.0 +UniRef50_Q67TJ2 Glutamate tRNA ligase 9.0908765729e-08 5.39233110824e-08 -14931481.9034 +UniRef50_Q28NX6 Peptidase C26 3.76031513301e-05 2.21764734821e-06 -14285562186.5 +UniRef50_B5I692 FemAB family protein 1.04277897476e-06 5.24993033346e-05 20773630326.6 +UniRef50_UPI0003FF96A6 acetoin dehydrogenase 5.91213572171e-08 6.65310139728e-08 2991369.35899 +UniRef50_G7U900 Iron chelate uptake ABC transporter, FeCT family, permease protein 3.24076642087e-06 5.01435530289e-05 18935230515.6 +UniRef50_UPI0002BB164C hypothetical protein, partial 7.52760874512e-06 3.10622231675e-07 -2913586017.86 +UniRef50_R9ZKB9 6.32778810663e-06 1.57923371754e-06 -1917049678.19 +UniRef50_UPI00036951EF hypothetical protein 1.14224825458e-06 1.87470825162e-07 -385455364.693 +UniRef50_UPI00029AC63E lipoprotein 2.2402741466e-06 2.9801493067e-06 298696681.422 +UniRef50_O28869 3.45681576594e-05 2.70106742557e-06 -12865135380.6 +UniRef50_Q5KVS7 Glucose 6 phosphate isomerase 0.000196472311772 4.31797941711e-05 -61886070466.2 +UniRef50_A5N4G1 Predicted exonuclease, sbcD related 1.84589725595e-06 2.02557158473e-05 7432269679.19 +UniRef50_A6LQF1 Cyanophycin synthetase 3.83209800242e-06 1.49553764633e-05 4490604012.64 +UniRef50_UPI000237D1A0 glycosyl transferase family 2 2.34578425823e-08 1.45546533979e-07 49288702.9137 +UniRef50_B9EA45 0.000222995927599 5.98240256256e-05 -65874499170.9 +UniRef50_UPI000367BC1F hypothetical protein 1.3456992275e-07 4.51487370868e-07 127943462.82 +UniRef50_A6QFG9 1.20786987179e-05 7.80723290971e-07 -4561131321.59 +UniRef50_UPI0001B411A5 hypothetical protein 9.64347673031e-08 8.33195899491e-07 297439510.14 +UniRef50_F0P7Q5 0.000160609135859 4.91912013685e-05 -44980787405.8 +UniRef50_UPI000441F369 PREDICTED 6.33286972501e-07 1.31135639454e-07 -202724655.241 +UniRef50_A0A008L098 2.22858040339e-05 9.73231091071e-07 -8604147231.69 +UniRef50_A0A023RT67 Recombinase RecJ 4.28290547263e-06 7.4692410761e-05 28425181306.7 +UniRef50_UPI0003AD2C67 hypothetical protein 1.7277101794e-07 1.61649365713e-07 -4489947.48206 +UniRef50_V6AFL3 Adenylate cyclase ExoY 1.38593579664e-06 1.9716638215e-06 236465591.327 +UniRef50_D4C552 1.90566528155e-06 3.92674169929e-07 -610813078.25 +UniRef50_UPI00045E7BD4 hypothetical protein 1.81398285667e-07 1.96590260626e-06 720426292.553 +UniRef50_N8QX29 Xanthine dehydrogenase, molybdopterin binding subunit 1.04910389847e-06 4.67287113743e-05 18441418089.8 +UniRef50_Q8DJI6 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.58099323551e-07 5.2057926529e-07 105966373.471 +UniRef50_UPI00039EE060 ABC transporter 3.88789797729e-07 9.2715503884e-08 -119528825.665 +UniRef50_UPI000367431C hypothetical protein 4.24488767584e-07 7.02169458706e-07 112103102.531 +UniRef50_UPI00046A42D3 chorismate synthase 3.36033416549e-07 2.36886933603e-06 820680806.396 +UniRef50_A8ZRA0 5.31940108974e-07 4.35891815777e-06 1544998000.6 +UniRef50_UPI00035FEBAF hypothetical protein 8.07162110912e-08 1.62704253049e-07 33099578.6448 +UniRef50_G2KPL2 Peptidase family protein 6.67241015808e-05 3.9771085885e-06 -25331731063.2 +UniRef50_T2NPH9 Replication initiator protein A 1.06512431815e-07 3.93353567687e-08 -27120209.5516 +UniRef50_UPI00037D884A hypothetical protein 7.32418851186e-08 8.82000246976e-08 6038784.50506 +UniRef50_I0JNK1 1.6322291331e-07 3.37185199121e-06 1295362933.05 +UniRef50_D9XJC0 Membrane protein 2.31089126233e-07 1.78491167535e-06 627297230.627 +UniRef50_I8T5U4 6.88107187659e-08 9.41439292289e-08 10227327.9374 +UniRef50_V9U5D1 Glucose dehydrogenase, PQQ dependent 1.07996423873e-06 1.75601094017e-06 272928349.397 +UniRef50_Q4EGL3 8.23817679494e-06 6.68157208554e-06 -628420422.873 +UniRef50_B2SN64 Transposase 4.3793530486e-07 4.66550276483e-07 11552215.1894 +UniRef50_E7C3H5 3.16452068409e-07 7.80869650284e-07 187491076.848 +UniRef50_O26742 Amidophosphoribosyltransferase 5.0534274218e-05 4.62455283042e-06 -18534317899.8 +UniRef50_Q8G4N5 Glucosamine 6 phosphate deaminase 1.47072463189e-06 9.2741485904e-05 36847126343.7 +UniRef50_Q7NIN3 Glr2150 protein 1.02304241555e-06 2.40424478018e-07 -315952465.184 +UniRef50_W1WKJ1 3.97970577398e-06 2.16837997998e-06 -731254450.505 +UniRef50_A0A031MHL6 Cell envelope biogenesis protein AsmA 2.99540603059e-08 3.65767464293e-08 2673659.65751 +UniRef50_D5BS30 Sigma 54 factor, interaction domain containing protein 7.00330193782e-06 3.79545576868e-06 -1295046863.18 +UniRef50_Q3J0T0 6.46997659652e-06 1.42895179933e-06 -2035123570.96 +UniRef50_A6LQ65 Methyl accepting chemotaxis sensory transducer 3.65981802222e-06 1.40646844007e-05 4200572239.07 +UniRef50_A4X0R7 6.44322093392e-05 1.60181958655e-05 -19545331346.1 +UniRef50_O24840 Vanillate O demethylase oxidoreductase 3.14880505132e-06 5.27513316205e-05 20025148667.4 +UniRef50_UPI00046C42D9 hypothetical protein 7.14613610598e-07 2.88729842449e-07 -171934503.383 +UniRef50_B0VB22 9.88183216845e-07 4.1347927619e-05 16293724084.9 +UniRef50_B0VB20 3.18538859112e-06 6.26094244143e-05 23990212476.7 +UniRef50_A9BPH5 Short chain dehydrogenase reductase SDR 7.05800219024e-06 1.70343325922e-05 4027567006.61 +UniRef50_P0A9W9 Protein YrdA 6.55498018095e-05 7.14475899663e-06 -23578832494.0 +UniRef50_A5W6Z8 Secretion protein HlyD family protein 2.8106402456e-06 6.90722597151e-06 1653841928.31 +UniRef50_A0A010CI18 NADH Ubiquinone plastoquinone , various chains family protein 4.12402755456e-07 8.21939322886e-05 33016207044.7 +UniRef50_UPI0003751049 hypothetical protein 1.0104579499e-06 7.51811001052e-07 -104418947.205 +UniRef50_Q9HT80 DNA polymerase I 1.03406233443e-05 4.3250494265e-06 -2428561010.01 +UniRef50_T1Y610 1.46545134284e-06 6.13152149577e-05 24162084010.5 +UniRef50_C5N439 2.35292073609e-06 1.71647324285e-06 -256941663.11 +UniRef50_Q5HL38 0.000110486985956 4.28705518929e-05 -27297584178.2 +UniRef50_A8A3U8 7.19696361998e-06 8.60666818562e-07 -2558040773.84 +UniRef50_UPI000472CA5C hypothetical protein 6.43896811173e-08 8.62242754956e-08 8814893.69112 +UniRef50_UPI00029B279A Multidrug resistance protein B 6.0510122889e-07 6.15763859342e-07 4304634.75866 +UniRef50_A1ITE9 1.26319946328e-06 2.75991484761e-05 10632145794.9 +UniRef50_D3QEC0 0.000163901254999 9.60004716909e-05 -27412379457.8 +UniRef50_D9PI46 Anaerobic ribonucleoside triphosphate reductase 7.5949307983e-08 4.60032424054e-07 155059067.188 +UniRef50_A5N7H7 Elongation factor P 1.55968502521e-07 0.000426891304434 1.72278291747e+11 +UniRef50_UPI00047B3307 2 oxoglutarate dehydrogenase 7.76820426213e-08 1.85318109727e-07 43454001.1338 +UniRef50_UPI0002E03285 DNA invertase 2.54251917311e-07 3.57471469051e-07 41670999.6838 +UniRef50_A0JUR7 1.29515090857e-05 1.38863654487e-06 -4668073537.12 +UniRef50_Q5PD59 1 deoxy D xylulose 5 phosphate reductoisomerase 3.7103666585e-05 3.41117440018e-06 -13602072548.4 +UniRef50_A5UN26 Adhesin like protein 2.9855196713e-05 6.14581668948e-06 -9571767662.3 +UniRef50_A9M0Z2 Transcriptional regulator, GntR family 3.68279987221e-06 4.87170587606e-05 18180882945.7 +UniRef50_Q97FJ7 Histidine tRNA ligase 2.9003408909e-06 2.39699428721e-05 8506056872.9 +UniRef50_UPI00035948EC PREDICTED 1.95795314811e-06 3.77195549588e-07 -638171240.6 +UniRef50_A9VXT4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.31172798897e-07 1.05140873988e-07 -10509407.5334 +UniRef50_P75683 4.68534609453e-05 3.17066161402e-06 -17635282138.3 +UniRef50_I6XWT7 Putative membrane protein 4.08456250764e-08 4.00216596027e-07 145082470.951 +UniRef50_Q9K9Y6 Methionyl tRNA formyltransferase 7.07292589424e-07 2.90777729888e-05 11453511082.2 +UniRef50_UPI00034BF683 hypothetical protein 1.49939838868e-07 4.49191572737e-06 1752908948.22 +UniRef50_Q72IZ2 3 dehydroquinate dehydratase 9.07561168501e-08 2.61791661786e-06 1020245706.0 +UniRef50_A3U3D3 Plasma membrane H+ transporting two sector ATPase, C subunit 1.14228248787e-06 7.14485615967e-08 -432308796.645 +UniRef50_Q9RYR1 Drug transport protein, putative 1.67974581064e-06 0.000463035166276 1.86254844709e+11 +UniRef50_A7WZL5 NADPH dependent 7 cyano 7 deazaguanine reductase 7.75421760795e-05 3.87249937466e-05 -15670972848.2 +UniRef50_UPI0003705A0C hypothetical protein 1.75433454206e-06 2.96093308216e-07 -588709880.733 +UniRef50_UPI0003B754B6 ribonucleotide reductase 1.44850145886e-06 4.33279484981e-07 -409857569.03 +UniRef50_Q6MRB4 Peptidyl prolyl cis trans isomerase 3.86504425449e-06 1.15397339753e-05 3098366419.32 +UniRef50_P76115 Probable TonB dependent receptor YncD 2.95143498858e-05 5.05566997642e-06 -9874269221.18 +UniRef50_S7SQK8 7.49983968557e-07 4.08041683551e-06 1344536617.39 +UniRef50_UPI000368D785 50S ribosomal protein L18 2.91848880704e-06 3.74913687894e-06 335342819.824 +UniRef50_F0L6J1 Phage head tail adaptor, putative 1.47494199766e-06 3.63863583542e-07 -448555990.246 +UniRef50_C3MPM7 Putative homocitrate synthase 5.63669371205e-08 6.23696139638e-08 2423354.30277 +UniRef50_W7IM88 Basic proline rich protein 4.09832247236e-06 1.21088808614e-05 3233960722.26 +UniRef50_M7E5A1 Transcriptional regulator 2.20494730898e-05 2.37547100366e-05 688425081.034 +UniRef50_Q8EU05 Chaperone protein ClpB 0.000247646079631 9.52868829424e-05 -61509277360.9 +UniRef50_W8YJN0 1.38016112723e-07 3.88517871222e-08 -40033855.1282 +UniRef50_B8HD15 DNA directed RNA polymerase subunit beta 1.12081497368e-08 2.1767736576e-08 4263034.78769 +UniRef50_Q2SLW2 0.000128722193078 3.48560611979e-05 -37894909307.0 +UniRef50_N6V4C3 1.5897912198e-07 3.14331906628e-07 62717825.5554 +UniRef50_F9Z195 General stress protein 18 1.53185020708e-05 2.12919752469e-05 2411564423.95 +UniRef50_D7C5U0 Putative transposase 1.4173441384e-06 2.56217850212e-07 -468760931.164 +UniRef50_Q112U2 2 isopropylmalate synthase 8.42501691609e-08 7.14928699111e-08 -5150278.25681 +UniRef50_W8ELK9 2.83824051773e-06 0.000327675493836 1.31140785366e+11 +UniRef50_Q8REI2 Phosphoenolpyruvate carboxykinase [ATP] 6.7519069994e-07 2.32572673693e-06 666341652.488 +UniRef50_P66796 Transcriptional regulatory protein QseB 5.39811051595e-05 1.00044731139e-05 -17753906010.8 +UniRef50_A4WSD0 Peptidase M10, serralysin like protein 5.21191045347e-05 9.93631563196e-06 -17029709521.0 +UniRef50_UPI000289FD65 4 aminobutyrate aminotransferase 1.81435147512e-07 4.14596367657e-07 94130045.7825 +UniRef50_G7TM97 Transposase 8.06649017537e-07 8.07928527599e-07 516553.913384 +UniRef50_UPI000477CB4F competence protein 1.67072136466e-07 5.16583603867e-07 141102068.378 +UniRef50_UPI00047E2083 DNA methyltransferase 2.60768841586e-06 3.669612539e-07 -904609052.098 +UniRef50_B9TL13 2.63490443481e-06 2.07580048946e-07 -979940641.191 +UniRef50_B2TY69 L ribulose 5 phosphate 3 epimerase UlaE 7.16465716996e-05 1.90688735354e-05 -21226261949.8 +UniRef50_G6WW76 6.44473277577e-08 2.45662451119e-07 73158769.0605 +UniRef50_UPI0004748BDD gamma aminobutyrate transporter 4.3059068077e-07 3.62352811614e-07 -27548465.1511 +UniRef50_Q984R8 Mll7872 protein 5.05073996962e-05 2.93988175331e-05 -8521793650.68 +UniRef50_UPI00046AA572 hypothetical protein 8.24278590113e-07 1.42468867842e-07 -275254951.627 +UniRef50_T2ERS5 ThiS family protein 7.3597620894e-06 6.29609229193e-06 -429416549.935 +UniRef50_A0A023B8B3 Mannitol 1 phosphate 5 dehydrogenase 2.98279819145e-06 1.65305769918e-05 5469404551.62 +UniRef50_Q28WH8 DNA replication and repair protein RecF 2.52315474186e-06 2.16085394041e-06 -146265279.476 +UniRef50_Q5WIY8 UPF0061 protein ABC1129 1.62702334017e-05 2.55280239051e-06 -5537895231.03 +UniRef50_T1UB30 2Fe 2S iron sulfur cluster binding domain protein 4.51718375123e-07 4.88516038783e-05 19539627711.0 +UniRef50_P37348 UPF0759 protein YecE 4.62548368307e-05 1.4278003475e-06 -18097224717.9 +UniRef50_A6LQ22 1.14191745239e-06 5.93659434454e-06 1935669898.66 +UniRef50_Q1QJ51 Plasmid pRiA4b ORF 3 like protein 7.37483724494e-06 1.81415859819e-06 -2244914206.89 +UniRef50_Q2G9L9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.88487480464e-07 4.38577380205e-07 100964361.474 +UniRef50_UPI0003B59A94 multifunctional thiamine phosphate pyrophosphorylase synthase phosphomethylpyrimidine kinase 1.77653957336e-08 5.40618774014e-08 14653335.0572 +UniRef50_R9ZI95 Permease 3.45083417731e-06 2.5270440596e-06 -372945406.699 +UniRef50_K7E1C1 4.11234176044e-07 1.31489990034e-06 364820942.124 +UniRef50_UPI00037069EF hypothetical protein 9.97448646457e-06 1.86076506911e-06 -3275608893.91 +UniRef50_UPI0003A0F8A6 multidrug ABC transporter 6.52231020067e-08 9.83621338787e-08 13378633.8284 +UniRef50_UPI000366C76B hypothetical protein 1.72109776187e-07 2.42444752061e-07 28395092.8675 +UniRef50_UPI00047A127F hypothetical protein, partial 1.03045952952e-07 5.41826658911e-08 -19726708.6064 +UniRef50_N0C7C0 1.0351544844e-06 1.84628383033e-07 -343367824.251 +UniRef50_R5TZB6 Serine type site specific recombinase 4.66910961006e-08 6.37368521561e-07 238463725.085 +UniRef50_A6M1X4 Integral membrane sensor signal transduction histidine kinase 4.97535274587e-06 1.68789813419e-05 4805640938.15 +UniRef50_Q3IWH8 Monosaccharide ABC transporter membrane protein, CUT2 family 4.80805459153e-06 5.37102098988e-06 227276443.388 +UniRef50_Q2JEW7 Peptide chain release factor 2 3.24542305157e-06 7.15934401933e-05 27592933244.6 +UniRef50_UPI000378DC18 hypothetical protein 2.42674456496e-07 6.69922351288e-06 2606588084.83 +UniRef50_A6LV85 Acyl CoA reductase 7.18953346337e-06 2.77641058241e-06 -1781631862.15 +UniRef50_B9KQH0 Surface presentation of antigens protein 7.38609622789e-06 2.5641974288e-06 -1946659716.54 +UniRef50_O34524 6.17140576002e-06 9.96073330303e-05 37721230426.8 +UniRef50_O34528 0.000223612953812 0.000128162254107 -38534618782.7 +UniRef50_A3K289 2.53970181563e-06 1.99518510071e-06 -219828079.785 +UniRef50_A0A024HL97 Tfp pilus assembly protein FimV like protein 3.67197889944e-06 3.47124463957e-06 -81038883.9959 +UniRef50_O34399 Glutamate synthase [NADPH] small chain 2.62874899951e-06 1.88549734911e-06 -300059811.99 +UniRef50_UPI000466D49C MerR family transcriptional regulator, partial 1.48723013654e-06 5.64077664973e-07 -372687981.126 +UniRef50_X2LHR6 Membrane protein 8.87340474343e-07 4.00246771841e-07 -196645705.012 +UniRef50_D8HHG7 Oligopeptide transport system permease protein 0.000208734744225 7.99086548262e-05 -52008673164.3 +UniRef50_UPI0003678A6C hypothetical protein 1.16784882914e-06 1.00274328979e-05 3576722807.88 +UniRef50_K4RMU3 1.49591651585e-06 1.77318598734e-05 6554649570.85 +UniRef50_UPI0003B36F4D deoxyguanosinetriphosphate triphosphohydrolase 8.93330321074e-07 4.87592448265e-08 -340963707.533 +UniRef50_A5UKV8 Transcription factor E 1.98145076882e-05 2.41596460533e-05 1754185678.83 +UniRef50_Q58776 Carbamoyl phosphate synthase large chain, C terminal section 3.69623660093e-08 4.61748399215e-08 3719188.76812 +UniRef50_D3FXA1 Maltose 6 phosphate glucosidase 3.5836395335e-06 9.6934289196e-06 2466596950.72 +UniRef50_Q3B5D7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.400849882e-05 4.35074489391e-05 7871965442.11 +UniRef50_UPI00035E5E43 phosphoadenosine phosphosulfate reductase 1.23817433671e-07 1.48557340296e-07 9987803.89731 +UniRef50_T6G328 Cellulose synthase operon protein C 1.29396281663e-05 9.57783908741e-06 -1357195504.94 +UniRef50_A3VEJ1 4.44393589432e-06 9.03400220697e-07 -1429357698.7 +UniRef50_D8JH08 Glycosyltransferase 1.03138248322e-06 5.41688800923e-05 21452259855.2 +UniRef50_U5C5S7 Diguanylate cyclase 1.09275803765e-07 2.67453879418e-07 63858430.2044 +UniRef50_U6LUD4 8.92256604042e-07 2.86174308354e-08 -348661732.268 +UniRef50_UPI0003B5E99A ABC transporter ATP binding protein 4.59557131052e-07 3.73826270668e-07 -34610600.373 +UniRef50_UPI00046CEEA5 molecular chaperone DnaJ 5.95410379858e-08 1.2688863168e-07 27189050.0223 +UniRef50_F0YA66 8.83478903997e-07 1.70321170381e-06 330936190.537 +UniRef50_UPI000334479B 1.39007215315e-06 1.88669000931e-07 -485021195.426 +UniRef50_E2X9M1 Aminotransferase ybdL 1.84529252433e-05 2.86621198888e-05 4121577159.29 +UniRef50_K1UU32 2.50061002935e-07 2.93455818119e-06 1083764453.34 +UniRef50_UPI00016A9AD4 hypothetical protein 4.0847542826e-07 5.89767964132e-06 2216059100.92 +UniRef50_UPI00040938D6 hypothetical protein 2.20482418773e-06 1.25058312731e-06 -385238825.946 +UniRef50_N2SSM7 1.9280697607e-05 8.2244256931e-06 -4463552647.35 +UniRef50_I7EXB5 Transcriptional regulator, crp family 0.000104585766102 1.30243789297e-05 -36964455586.0 +UniRef50_A0A024J5P9 PT4 plasmid pSEN complete sequence 1.38337080483e-06 3.097870364e-07 -433418941.67 +UniRef50_UPI0003628CAF hypothetical protein 2.2975470911e-07 7.02839971091e-07 190990325.671 +UniRef50_UPI00046F7609 hypothetical protein 1.46937681586e-07 7.05245367116e-08 -30848924.2805 +UniRef50_UPI0003B489CA osmotically inducible protein C 2.68857376963e-07 4.1902617396e-06 1583119062.24 +UniRef50_A4SX51 4 hydroxy tetrahydrodipicolinate synthase 1.93366192167e-08 3.32901239602e-05 13431825128.0 +UniRef50_Q7VQH3 Enolase 6.72655475916e-08 8.37025034364e-07 310761350.821 +UniRef50_UPI0003B4EABD glutathione ABC transporter ATP binding protein 3.42985529122e-07 8.74882351872e-08 -103147392.866 +UniRef50_Q6HIL6 Aminoacyl histidine dipeptidase 4.41692564831e-06 1.47816165059e-05 4184352888.27 +UniRef50_A0A010RX66 FeS assembly SUF system protein SufT 3.47460799616e-07 1.82654595147e-07 -66534287.1437 +UniRef50_Q0BZZ7 Leucyl phenylalanyl tRNA protein transferase 1.56375383004e-07 8.70577484469e-07 288332152.607 +UniRef50_E5QX84 FemAB family protein 1.77613647485e-05 8.18874771081e-06 -3864582967.34 +UniRef50_D3RSC1 Channel protein, hemolysin III family 1.03914905486e-05 4.60063178917e-05 14378142841.5 +UniRef50_B8DU54 N acetyl gamma glutamyl phosphate reductase 4.90738185783e-08 4.17962484976e-07 148924881.398 +UniRef50_Q32DZ9 Macrolide export ATP binding permease protein MacB 2.45916948009e-05 7.51820202898e-05 20423935213.0 +UniRef50_Q39DM7 Lipoprotein signal peptidase 1.00534669996e-07 1.41608542239e-07 16582026.2576 +UniRef50_UPI0004649C8D hypothetical protein 2.63068782168e-07 4.48050045238e-06 1702628918.97 +UniRef50_UPI00047D766C hypothetical protein, partial 3.27853940596e-07 1.21718239298e-06 359032809.515 +UniRef50_M4R6E9 1.20090982672e-06 8.87181905202e-05 35331800173.8 +UniRef50_Q4FLF9 1.5664136019e-06 1.1206727551e-06 -179951049.708 +UniRef50_UPI000479CDCE 2 dehydro 3 deoxyglucarate aldolase 5.40681904213e-07 2.66721665744e-06 858508175.395 +UniRef50_UPI0002487D7B acetyl coenzyme A carboxylase carboxyl transferase subunit alpha, partial 4.88790991124e-07 6.98960571484e-07 84848038.6621 +UniRef50_UPI000373F182 hypothetical protein 5.6295157099e-07 3.30448465982e-07 -93864356.6257 +UniRef50_Q0APY8 NADH quinone oxidoreductase subunit C 2.75652124762e-07 8.26231325499e-07 222275579.704 +UniRef50_UPI0004684D4E hypothetical protein 7.90466004188e-07 6.14511739312e-08 -294312232.993 +UniRef50_UPI0003483C97 enterobactin synthase subunit E 9.13260739982e-08 9.06480870182e-08 -273711.663662 +UniRef50_P98056 Cytochrome c oxidase subunit 1 homolog 0.000159992512386 4.07442433173e-05 -48141989564.0 +UniRef50_C4J5K8 7.33644543172e-07 1.10093291758e-06 148278823.884 +UniRef50_A0A038FVW1 1.94378103861e-05 8.69060161542e-06 -4338780063.81 +UniRef50_A5D673 Ribosomal RNA small subunit methyltransferase A 2.57680851907e-07 3.95226139847e-07 55528720.6119 +UniRef50_R0VZS5 2.72881437722e-06 8.40817278291e-06 2292826681.94 +UniRef50_A4XVG5 tRNA hydroxylase 1.74303463571e-07 2.2774140044e-07 21573550.8712 +UniRef50_C1C6G4 Phosphopentomutase 9.31182504493e-08 1.72357261924e-05 6920681189.64 +UniRef50_P46142 3.26827337522e-05 3.26637525416e-05 -7662947.64487 +UniRef50_L2FJJ5 2.21790923321e-06 3.47025143457e-06 505585914.656 +UniRef50_UPI0002481AA7 HNH endonuclease 6.25581804485e-07 2.91068496274e-06 922524186.355 +UniRef50_Q3ERE1 Glyoxalase family protein 2.75957091276e-07 6.53811834026e-07 152544596.447 +UniRef50_A4VFG0 DNA replication and repair protein RecF 1.08757033358e-05 1.68752402972e-06 -3709380737.5 +UniRef50_Q7MPS9 Coenzyme A biosynthesis bifunctional protein CoaBC 4.90296427519e-08 9.83473126448e-05 39684223103.5 +UniRef50_F0YFY9 Expressed protein 3.21829127345e-06 8.14483474937e-07 -970446706.297 +UniRef50_UPI000477A5E2 esterase 2.31573265716e-07 2.50088657895e-07 7474891.03207 +UniRef50_R4K9X6 Histone acetyltransferase 4.8863819959e-06 5.7457299213e-06 346929302.869 +UniRef50_UPI000373FF71 hypothetical protein, partial 1.89351075232e-06 1.21353888747e-05 4134771879.99 +UniRef50_P56344 Probable sulfate thiosulfate import ATP binding protein CysA 3.26014037735e-06 6.3019506874e-06 1228016149.38 +UniRef50_U2YS21 8.29061710019e-07 2.69220006621e-07 -226014965.692 +UniRef50_UPI0003B47B9D phosphoserine phosphatase 7.27479541771e-08 6.2176451837e-07 221644724.156 +UniRef50_D9PXN6 Predicted FMN binding protein 3.33368724754e-05 3.15977803809e-05 -702092819.61 +UniRef50_X7YJ52 1.02272572425e-06 2.68205598858e-06 669891989.982 +UniRef50_A6LZ14 Histidine kinase 3.63552531713e-06 1.06260980889e-05 2822180011.94 +UniRef50_UPI00029B24CC ABC transporter ATP binding protein 5.23770564565e-08 1.04307660585e-07 20965022.1468 +UniRef50_UPI0003B4577C glycerophosphoryl diester phosphodiesterase 1.78689747671e-07 3.6949382523e-07 77029947.5399 +UniRef50_A5FIF9 Potassium transporting ATPase A chain 1.6601689039e-07 6.36217310842e-06 2501464300.61 +UniRef50_R1ECI7 1.05171558425e-06 3.12205684646e-07 -298549221.277 +UniRef50_A5UMH5 Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein 4.72363961608e-05 3.69882571866e-06 -17576651453.5 +UniRef50_B2V2P3 Potassium transporting ATPase B chain 1.63452256546e-07 2.423084106e-05 9716300200.05 +UniRef50_C5AFT1 3.19673248271e-08 4.93265961176e-08 7008150.84219 +UniRef50_I6SKB7 8.54685257742e-07 2.5998863244e-06 704559086.636 +UniRef50_UPI00047C2684 heme ABC transporter ATP binding protein, partial 2.22389484138e-07 5.89882157414e-07 148361301.844 +UniRef50_Q02D08 1.12706255176e-08 4.04873467183e-08 11795148.8782 +UniRef50_T4AYR7 1.12007093861e-07 5.8452326449e-06 2314573509.54 +UniRef50_P78061 Gamma glutamylputrescine synthetase PuuA 2.77756912532e-05 1.0832730307e-05 -6840081247.49 +UniRef50_UPI000255867E 2 oxoglutarate dehydrogenase E1 component, partial 1.04919019045e-05 2.50916264812e-06 -3222729797.03 +UniRef50_A6V9I8 Transcriptional regulator, IclR family 1.41912025886e-06 2.24007614567e-06 331429965.767 +UniRef50_UPI00047CE41F cobyrinic acid ac diamide synthase 1.03982454129e-07 3.51779307616e-06 1378197240.28 +UniRef50_UPI0003B63533 hypothetical protein 2.42599647117e-08 1.81878987992e-07 63632733.9011 +UniRef50_R5K0I5 Succinylglutamate desuccinylase aspartoacylase family protein 7.1303448488e-06 1.1968151233e-05 1953081803.86 +UniRef50_F6A168 Ribose phosphate diphosphokinase 1.21769673823e-06 5.06318515864e-05 19949100692.1 +UniRef50_E8XM67 Sugar isomerase 1.17110441217e-06 8.47689409131e-06 2949436945.59 +UniRef50_F8I099 6.11610658559e-06 5.12109893401e-06 -401696799.06 +UniRef50_G8VD13 2.36722445266e-06 6.26147268981e-05 24322656057.2 +UniRef50_UPI0004799DC8 hypothetical protein 3.80379168068e-06 3.00859920205e-06 -321028961.732 +UniRef50_U7XP25 2.69414159434e-06 8.82064208499e-07 -731557877.354 +UniRef50_UPI0002192501 orotidine 5 phosphate decarboxylase 2.37904616812e-07 1.87089760298e-07 -20514581.1431 +UniRef50_E6MY39 Integral membrane protein, TerC family 4.25114300719e-06 3.31958120825e-05 11685318096.7 +UniRef50_A0A011MY44 4.19811279834e-06 2.13369683161e-06 -833430059.002 +UniRef50_UPI00045EC444 MULTISPECIES 4.56243753824e-07 1.78845533318e-06 537830162.662 +UniRef50_P18655 Superoxide dismutase [Fe] 2.09182091079e-06 9.89638475921e-05 39108425924.7 +UniRef50_H1XFI5 8.09693929749e-07 1.48522370356e-06 272719659.37 +UniRef50_G8YAV0 Piso0_003726 protein 7.5801331218e-07 6.26869973003e-07 -52944175.3355 +UniRef50_N1PMQ8 3.0640197148e-06 4.07225282362e-07 -1072580514.91 +UniRef50_UPI000475D591 dihydroxyacetone kinase 2.19143319423e-07 1.40134008676e-05 5568911046.78 +UniRef50_C1DHH8 ATPase 6.49131792001e-06 2.30416154893e-06 -1690406409.19 +UniRef50_A0A023LEW3 Alpha glucosidase 6.12801929925e-07 5.2148332585e-05 20805526137.5 +UniRef50_Q8VKN7 6.29670387241e-08 1.07078299469e-07 17808257.2688 +UniRef50_Q1RH88 Superoxide dismutase [Mn Fe] 0.000142665702873 2.06412280495e-05 -49262777895.1 +UniRef50_F7XC58 9.66468652764e-07 1.53974498951e-06 231438692.036 +UniRef50_O29305 Putative citramalate synthase CimA 9.85587393296e-08 8.43191625646e-08 -5748691.87929 +UniRef50_A0A021VTG9 5.22850429058e-06 5.88000292878e-07 -1873428409.26 +UniRef50_UPI00047321C0 hypothetical protein 1.10077850133e-07 3.59148908571e-07 100553042.737 +UniRef50_UPI00016B24E2 ParBc, ParB like nuclease domain 6.13311405551e-07 1.47060557432e-06 346100176.115 +UniRef50_V9WPS8 Amino acid amide ABC transporter membrane protein 1, HAAT family 2.22733025922e-05 1.98379278247e-06 -8191124090.46 +UniRef50_R0FMF6 GroEL 6.53273618061e-07 9.35560152661e-07 113962538.063 +UniRef50_X7ZV72 Phosphate transport system regulatory protein PhoU 8.32713880959e-07 8.31884353647e-07 -334890.355299 +UniRef50_Q0T014 Ribosomal RNA small subunit methyltransferase B 1.20467493848e-05 1.06664618137e-05 -557239030.486 +UniRef50_UPI0004706840 peptide ABC transporter permease 3.23218171704e-07 4.80640587833e-07 63553361.1816 +UniRef50_UPI0003B45E5B DNA binding protein 7.44333343155e-07 5.2317880045e-07 -89282802.7614 +UniRef50_A5UJQ1 1.05887354879e-05 5.21147126815e-05 16764546574.1 +UniRef50_A3MIQ3 Ribosomal RNA large subunit methyltransferase E 2.21831080099e-07 1.86277336423e-07 -14353482.6155 +UniRef50_UPI0000589E14 lipase precursor 3.55362576152e-07 7.2788740764e-07 150392845.865 +UniRef50_K7RQY3 1.50274598074e-06 5.14991660644e-05 20184168312.9 +UniRef50_F5ZJA3 Sugar phosphotransferase system , fructose specific family, IIA component 0.00015177861392 9.44818631634e-06 -57460540214.5 +UniRef50_Q6F6T5 5.01388787585e-06 8.68347257601e-05 33032076308.4 +UniRef50_A6LW88 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 1.26138646943e-06 6.51658453119e-06 2121587946.06 +UniRef50_W0YNW4 7.01612079588e-08 2.95233096548e-07 90864283.366 +UniRef50_W4L1M8 Transposase 1.74014206572e-06 3.41946304079e-07 -564468786.765 +UniRef50_Q51553 3 hydroxydecanoyl ACP 1.40668223391e-05 7.52361305051e-06 -2641573884.01 +UniRef50_A0A011ADX1 6.99444431263e-07 2.12170503735e-06 574184059.779 +UniRef50_UPI00037AB267 hypothetical protein, partial 5.66621318132e-07 2.49311605579e-07 -128101824.786 +UniRef50_P25737 Lysine specific permease 2.49548155058e-05 4.88824239397e-05 9659869149.54 +UniRef50_C0RHG6 Acyl carrier protein 3.38002579601e-06 1.91085208011e-06 -593123457.898 +UniRef50_A4SPY8 Protoheme IX farnesyltransferase 3.9825013826e-06 4.45581439861e-06 191082272.767 +UniRef50_Q7NCB3 Histidine ammonia lyase 4.04661499628e-08 1.34032436819e-06 524768713.754 +UniRef50_D3QF58 0.000203457905748 6.43766207458e-05 -56148821474.6 +UniRef50_A7GH10 Hydroxylamine reductase 1.58530852508e-05 5.94621253458e-05 17605504629.5 +UniRef50_V4LC05 7.98113668843e-06 7.10971190178e-05 25480696586.6 +UniRef50_I1ETG1 3.52754462037e-07 1.69458697536e-06 541714251.764 +UniRef50_Q8DT71 5.4133210093e-05 1.95081796078e-05 -13978549703.8 +UniRef50_C8WK91 Ribonucleoside diphosphate reductase 4.77928081877e-06 4.98457766182e-05 18193897382.3 +UniRef50_R6MV50 YhgE Pip domain containing protein 1.93807897204e-08 2.66910386231e-08 2951237.18886 +UniRef50_Q1QD84 Oxidoreductase FAD NAD binding protein 1.99376402564e-06 4.40452132928e-05 16976686098.5 +UniRef50_M1N4C4 4.58260744925e-06 1.01186102153e-05 2234952251.05 +UniRef50_G9W9B6 Lytic murein transglycosylase A 2.03952295823e-06 1.05386109817e-06 -397923788.337 +UniRef50_UPI0003829C73 hypothetical protein 3.2324916855e-07 1.55566559619e-07 -67695526.9224 +UniRef50_N1TQ93 1.22376959817e-05 6.87404981134e-07 -4662994214.95 +UniRef50_P43776 Dihydropteroate synthase 1.37244210234e-07 3.83064970167e-07 99240857.3449 +UniRef50_U5MM75 Penicillin binding protein 2 3.33906849212e-06 8.67423522824e-06 2153872281.23 +UniRef50_A3JXA6 7.51889537345e-08 6.16230519746e-08 -5476721.01281 +UniRef50_E7PVL4 ATP dependent RNA helicase 7.06131630633e-05 2.17890348774e-05 -19710899688.1 +UniRef50_W5YDQ8 WGR domain protein 4.02986314239e-07 2.83023336403e-07 -48430526.2637 +UniRef50_UPI00047B87BE hypothetical protein 1.03875925507e-07 1.22380565238e-07 7470550.13687 +UniRef50_F5Y7Q0 4.66097504455e-06 2.76147879794e-06 -766849944.197 +UniRef50_P77239 Cation efflux system protein CusB 1.40393574094e-05 1.25949925404e-05 -583107821.965 +UniRef50_UPI0004770378 osmolarity response regulator 6.2225459383e-07 1.35064869502e-07 -196684470.201 +UniRef50_UPI0004423ADB 9.06321061685e-07 7.32655782173e-07 -70110804.4516 +UniRef50_UPI0003610585 hypothetical protein 5.60287531799e-07 9.92854331527e-07 174632525.242 +UniRef50_P0AG95 Protein translocase subunit SecF 3.05960301017e-05 1.16199895728e-05 -7660860423.72 +UniRef50_A5I292 5.5336550322e-06 6.67194260053e-06 459540659.694 +UniRef50_Q2YPH2 Ornithine carbamoyltransferase 7.61994435818e-05 2.43608949716e-05 -20927858204.5 +UniRef50_UPI00037DDC0E DNA methyltransferase, partial 3.69546221871e-05 1.16877074279e-05 -10200563548.2 +UniRef50_Q8CU98 9.09106441186e-05 2.09884474821e-05 -28228448824.0 +UniRef50_Q8CU99 0.00194123181874 0.000585038462355 -5.47511900335e+11 +UniRef50_UPI00042902E2 stomatin 2 3.94750126377e-07 1.0054857513e-07 -118772776.497 +UniRef50_Q7VNN7 Phosphopantetheine adenylyltransferase 2.78514845551e-07 1.77881648403e-07 -40626856.5968 +UniRef50_Q8CU97 7.13801646976e-05 3.25368309714e-05 -15681530486.6 +UniRef50_U5UIZ0 2 oxoisovalerate dehydrogenase E1 component alpha subunit 0.000108042335398 4.06414572568e-05 -27210561607.4 +UniRef50_E8SFA3 V5 Tpx 1 related allergen 6.16447444e-05 1.76700793247e-05 -17753111920.7 +UniRef50_I7A5B6 3.25418955908e-06 4.97724784029e-06 695619772.427 +UniRef50_E7BDJ1 ISNme1 transposase 1.91617253221e-06 0.000235013190941 94104126753.8 +UniRef50_Q65RB3 Histidine biosynthesis bifunctional protein HisB 5.36120946286e-07 9.21649672174e-08 -179230476.703 +UniRef50_UPI00016B21F0 TDP GLUCOSE PYROPHOSPHORYLASE, partial 5.42746293708e-06 6.14018303726e-07 -1943246666.09 +UniRef50_R1FAR2 2.65458058746e-07 2.0294678588e-07 -25236567.9556 +UniRef50_D9QZA2 ABC transporter related protein 2.28715294286e-06 1.09114910595e-05 3481751130.22 +UniRef50_Q8CNH5 General stress protein 20U 0.000245898635031 5.43483638156e-05 -77331195075.7 +UniRef50_UPI0004782D2D sulfite oxidase 1.40008618837e-07 1.00779650783e-06 350336619.741 +UniRef50_G8V268 Short chain dehydrogenase family protein 0.000107889634925 4.5515294141e-05 -25181286793.7 +UniRef50_UPI00003978BA COG0488 5.08873975676e-07 4.16544520751e-07 -37274533.963 +UniRef50_Q887Q0 Alginate biosynthesis protein Alg44 1.54496311943e-06 2.26585707308e-06 291033735.452 +UniRef50_G8VAR6 Sugar transport protein 2.34463347108e-06 1.63040628298e-05 5635592933.57 +UniRef50_Q81IT9 DEAD box ATP dependent RNA helicase CshA 5.19852835211e-05 7.7568202533e-05 10328138342.8 +UniRef50_UPI000288104D ATP dependent DNA helicase 2.28556739016e-07 7.12821434866e-08 -63493684.1914 +UniRef50_G7M9J1 Amidohydrolase 3.05134109218e-06 1.89731884886e-05 6427845176.97 +UniRef50_V4R6B4 Inosine 5 monophosphate dehydrogenase 1.3019737822e-06 6.2261012161e-07 -274267446.51 +UniRef50_UPI00036700E1 hypothetical protein 5.39321625713e-08 7.64937247179e-07 287041477.67 +UniRef50_R5X6Z2 2.10103518845e-06 8.70983813901e-06 2668054850.27 +UniRef50_A3CK29 Acetylxylan esterase, putative 4.87193403363e-06 4.21733220622e-05 15059028086.7 +UniRef50_W4UBQ1 Vitamin B12 ABC transporter 1.93858238698e-07 1.27925179778e-06 438186699.077 +UniRef50_C1KYK6 1.50713337894e-07 2.16175840173e-05 8666439121.4 +UniRef50_A6TFY7 Putative transport protein KPN78578_40470 3.06216067479e-05 1.21780037178e-05 -7445908871.71 +UniRef50_P29914 NADH quinone oxidoreductase chain 2 1.13355967505e-05 6.98912890394e-06 -1754722406.81 +UniRef50_D6T008 1.41876130355e-07 3.3013080963e-07 76000724.168 +UniRef50_UPI0002F8DE8C hypothetical protein 3.62073074741e-08 5.18592863425e-08 6318895.94055 +UniRef50_T1XSF4 Glycine betaine transporter 0.000163029505604 4.39381121466e-05 -48078656954.3 +UniRef50_V4YQV8 ABC transporter, substrate binding protein, PQQ dependent alcohol dehydrogenase system 9.35219359287e-09 6.59690003539e-08 22856899.6558 +UniRef50_UPI00035E0900 hypothetical protein 1.36255076262e-07 1.26011150893e-07 -4135598.37857 +UniRef50_Q2P6N2 Ribonuclease PH 5.28346737517e-07 3.34582197184e-05 13294193817.4 +UniRef50_Q7CRQ0 Uronate dehydrogenase 1.03453218924e-07 2.91473906905e-07 75906259.0112 +UniRef50_Q5DQH5 2.98999396391e-06 1.69155317598e-06 -524196479.748 +UniRef50_K0S2B3 1.24288299161e-07 7.97898855557e-07 271944847.748 +UniRef50_B9GCH9 Urease 2.56081055264e-08 3.09287380736e-07 114524804.538 +UniRef50_UPI00036688D0 hypothetical protein, partial 1.23665511716e-07 2.19155943323e-07 38550659.0391 +UniRef50_UPI0002893A41 S adenosylmethionine synthetase 3.7327361855e-08 7.19002489107e-08 13957498.7614 +UniRef50_W9DWH3 2.97212795959e-07 1.859095438e-07 -44934488.7411 +UniRef50_M9RBV9 Putative lipoprotein 4.41649584664e-08 3.79441769438e-08 -2511405.83825 +UniRef50_B2IKB4 Xylose isomerase domain protein TIM barrel 6.86591442299e-05 2.04013888444e-05 -19482248038.4 +UniRef50_Q9HXI2 Protein translocase subunit SecF 1.20589144382e-05 6.51117021025e-06 -2239692423.3 +UniRef50_A6LX99 Carbohydrate binding family V XII 2.6029438181e-06 1.1352068553e-05 3532129019.31 +UniRef50_UPI00036AC2B6 MULTISPECIES 6.49018045431e-08 6.45214290459e-06 2578607612.35 +UniRef50_C6SPQ0 4.10792715755e-05 2.00570946546e-05 -8486910794.09 +UniRef50_P20901 Citrate synthase 4.37635748097e-07 7.57779212334e-07 129245845.115 +UniRef50_B6IS79 Tetratricopeptide TPR_2 1.78033394172e-08 5.23031418574e-08 13927993.6053 +UniRef50_B2A466 Chromosome segregation ATPase 6.42766003199e-08 2.0853837516e-07 58240248.794 +UniRef50_Q9RX51 Malto oligosyltrehalose trehalohydrolase 7.37277322014e-07 0.0002066421845 83126337765.1 +UniRef50_B7HXK9 ThiJ pfpI family protein 2.00102803538e-07 6.21795408439e-07 170242479.349 +UniRef50_UPI000465E8C1 hypothetical protein 6.82262721579e-08 5.98594092946e-07 214115997.597 +UniRef50_UPI00041A9154 hypothetical protein 1.53355447492e-07 6.00401530763e-08 -37672529.4631 +UniRef50_H5WKM1 TRAP type mannitol chloroaromatic compound transport system, large permease component 4.58660207468e-08 1.02370750727e-07 22811652.884 +UniRef50_T1ZCJ6 Transcriptional regulator 6.83872281672e-05 8.91076048015e-06 -24011379863.6 +UniRef50_UPI0002658616 PREDICTED 5.44914868452e-08 8.53886407905e-08 12473560.1984 +UniRef50_UPI000381514D hypothetical protein 1.79318855137e-08 1.75808876855e-07 63736878.7729 +UniRef50_G4R209 Bacterial regulatory s, gntR family protein 8.00116488285e-06 2.4712694996e-06 -2232486625.67 +UniRef50_Q2YVV9 Initiation control protein YabA 4.56937495309e-05 5.3693946399e-06 -16279436905.0 +UniRef50_A3P3G4 Monooxygenase, luciferase family 1.57239309707e-05 6.07328208982e-05 18170641184.9 +UniRef50_I3THN6 Binding protein dependent transport systems inner membrane component 3.10029789961e-05 1.13621486657e-05 -7929244224.47 +UniRef50_F0VFF5 NLI interacting factor like phosphatase domain containing protein 1.99255694968e-08 2.69818826151e-07 100884974.246 +UniRef50_Q5XDZ5 3.53699521576e-05 2.67174495306e-05 -3493121488.67 +UniRef50_UPI0000379B07 hypothetical protein 1.28116530333e-05 2.0450329774e-05 3083827537.33 +UniRef50_UPI00038112F6 hypothetical protein 9.58621667602e-07 2.17047230001e-06 489238971.383 +UniRef50_Q38XG4 3 oxoacyl [acyl carrier protein] synthase 3 5.60405357246e-05 3.0832132846e-05 -10176941584.0 +UniRef50_UPI00035F1073 hypothetical protein 1.54420326935e-07 3.77507874115e-07 90063180.3886 +UniRef50_R6HUH5 9.15580637882e-08 1.67993042654e-07 30857738.9308 +UniRef50_P20162 Lipopolysaccharide export system ATP binding protein LptB 3.42231861132e-07 9.16384496506e-07 231792464.546 +UniRef50_D5V8H6 Phosphomethylpyrimidine kinase 5.52289739372e-06 1.64836223329e-05 4424979161.18 +UniRef50_U4TCC4 Putative ABC transport system, membrane domain protein 1.00970296962e-06 4.24728640517e-07 -236161315.101 +UniRef50_UPI00028A344D group 1 glycosyl transferase 3.03323436206e-08 7.40285640383e-08 17640700.3955 +UniRef50_F4DQ72 TRAP T family transporter periplasmic binding protein 0.000163914430527 2.84093990794e-05 -54705044029.3 +UniRef50_B2FK26 UvrABC system protein C 9.28620324289e-06 7.53066132552e-06 -708733814.964 +UniRef50_UPI0004672B58 glycolate oxidase iron sulfur subunit 1.33759029507e-07 5.52194623384e-07 168927584.03 +UniRef50_Q2NFX3 50S ribosomal protein L6 9.46676341057e-06 3.44727671428e-06 -2430140646.7 +UniRef50_Q890U0 Butyrate kinase 5.35450359444e-06 4.12890776021e-05 14507228493.7 +UniRef50_K0MYD7 PTS system maltose and glucose specific EIICB component 4.94660353784e-06 6.25593814965e-06 528594450.13 +UniRef50_P0AEL2 Formate dehydrogenase, cytochrome b556 subunit 1.01552134653e-05 2.748898554e-05 6997856495.86 +UniRef50_P26418 Flagellar motor switch protein FliM 2.6643008724e-05 1.01290041313e-05 -6666906303.7 +UniRef50_E4Q4K1 Transketolase domain containing protein 1.15309062367e-07 3.06461837327e-05 12325688760.4 +UniRef50_UPI00047AC8D4 hypothetical protein, partial 2.35167555767e-06 6.36440660992e-06 1619988767.54 +UniRef50_P55980 Cytotoxicity associated immunodominant antigen 1.72201382048e-06 3.76872836146e-05 14519620759.4 +UniRef50_D8JGS8 Acyl coenzyme A synthetases AMP acid ligase 1.7541388266e-06 4.47578750747e-05 17361136038.5 +UniRef50_B9JUC8 50S ribosomal protein L19 6.21798491844e-06 0.00021987453924 86255772840.5 +UniRef50_F9LQU4 GA module 1.47859366739e-05 1.99877396822e-06 -5162334500.42 +UniRef50_H2JJ51 ABC type sugar transport system, periplasmic component 6.24422001147e-06 1.55695303344e-05 3764742211.79 +UniRef50_UPI0004699EDF membrane protein 9.19093577645e-07 4.10418656952e-07 -205358307.627 +UniRef50_P11864 6.82708992948e-06 1.34488127499e-05 2673270760.28 +UniRef50_P11865 8.65714569853e-06 9.95158002212e-06 522579020.929 +UniRef50_UPI0004769652 hypothetical protein 1.4336755179e-07 2.73751604251e-07 52637641.9708 +UniRef50_V7D525 Plasmid stablization protein ParB 1.36514167662e-06 2.34463233671e-07 -456468762.404 +UniRef50_UPI00047B1BFE hypothetical protein 4.46264057572e-08 2.60129110054e-06 1032156911.09 +UniRef50_E4D4Y2 2.62751268337e-06 8.42051686444e-06 2338706876.05 +UniRef50_Q3JNS9 1.33884330964e-06 1.11844075917e-06 -88979214.2682 +UniRef50_G7SP01 RNA methyltransferase, TrmH family, group 3 5.16954919903e-05 4.50714301426e-05 -2674215054.3 +UniRef50_UPI00037014EA hypothetical protein 2.59028155949e-07 1.51935038755e-07 -43234805.5915 +UniRef50_F3BU02 1.16295926645e-06 1.76519422491e-06 243129642.984 +UniRef50_UPI0003782B50 hypothetical protein 6.57519698428e-08 1.56175431512e-06 603954504.803 +UniRef50_T0UR47 Immunoreactive protein Se23.5 4.83396161627e-05 9.00430925696e-06 -15880146096.3 +UniRef50_UPI00036E1232 hypothetical protein 3.44345458938e-07 2.60600948924e-06 913061522.771 +UniRef50_P37956 Spore photoproduct lyase 5.97618986696e-07 1.40119876558e-05 5415545244.53 +UniRef50_UPI0003D02549 hypothetical protein P148_SR1C00001G0193 9.14355949142e-07 3.49863700411e-07 -227892447.912 +UniRef50_D6SE37 0.000127936422994 2.0973798205e-05 -43182124206.3 +UniRef50_W4TLK1 Molybdopterin guanine dinucleotide biosynthesis protein 5.38180685637e-08 2.17521439071e-07 66089059.5399 +UniRef50_UPI0003B75BA6 ribonuclease E 5.35540482193e-08 5.7626349029e-08 1644037.80963 +UniRef50_Q8DWM8 Hypoxanthine guanine phosphoribosyltransferase 7.39156066817e-05 2.77030711492e-05 -18656567686.1 +UniRef50_D3E0E5 Carbohydrate kinase 4.57362725567e-05 5.50797070461e-06 -16240659114.5 +UniRef50_UPI000382ECE5 hypothetical protein 4.12056595105e-08 8.00567064787e-08 15684644.417 +UniRef50_Q5NLB9 Type III pantothenate kinase 5.98425572461e-05 3.92081467099e-05 -8330364746.16 +UniRef50_H9UPU8 Ornithine decarboxylase 1.38797794509e-05 6.37324316283e-06 -3030480815.05 +UniRef50_UPI000262887B hypothetical protein 1.52698143544e-06 1.43156185816e-06 -38522054.2778 +UniRef50_UPI0003B5049A glutamyl Q tRNA ligase 5.0859989265e-08 6.14164604566e-08 4261776.96252 +UniRef50_UPI00035F2B7D MULTISPECIES 1.69239504734e-07 2.60180949601e-07 36714177.2698 +UniRef50_O67611 Acyl carrier protein 3.39744658308e-07 5.73118266027e-06 2176589681.78 +UniRef50_P65399 Molybdopterin synthase catalytic subunit 8.69418835581e-06 4.13030356916e-06 -1842496293.53 +UniRef50_UPI000349EE05 hypothetical protein 2.84232460033e-07 4.42233820718e-07 63787088.2033 +UniRef50_Q5NGP7 Arabinose 5 phosphate isomerase KdsD 6.87776103743e-06 0.000106283097957 40131154355.1 +UniRef50_W7VXE4 8.66601162e-07 2.21303622308e-07 -260514535.465 +UniRef50_W1DPU9 Sulfate permease 1.86595647056e-06 4.31591628636e-07 -579070688.319 +UniRef50_R7GVB9 4.17707168415e-07 1.7761729254e-05 7001994551.04 +UniRef50_A6M390 Extracellular solute binding protein, family 1 1.14373435193e-05 1.48794699609e-05 1389628684.12 +UniRef50_UPI0003674FBC hypothetical protein 3.80295464487e-07 1.43563472677e-07 -95571610.1219 +UniRef50_UPI00034FC6C5 PREDICTED 1.57073495755e-05 6.51213335285e-06 -3712221627.08 +UniRef50_UPI00047034AE hypothetical protein 8.30920752904e-08 3.05575409045e-07 89819252.0144 +UniRef50_A0A023DK19 8.2039768735e-08 3.99670790511e-07 128231541.262 +UniRef50_A4VYZ8 7.04485664454e-06 1.10055914979e-05 1598997263.98 +UniRef50_UPI00041B2B5D hypothetical protein 1.33800869186e-07 1.85796767312e-07 20991382.1349 +UniRef50_Q9RZ78 2.91870609934e-06 0.000325838212241 1.30366567297e+11 +UniRef50_D3E3Y1 Carbohydrate kinase PfkB family 2.69331415551e-05 1.54760963909e-05 -4625349726.54 +UniRef50_J0J1A9 2.82476263787e-06 3.6707156532e-07 -992200045.249 +UniRef50_C3MH15 FAD dependent oxidoreductase 1.05671716497e-05 6.5979223862e-06 -1602434635.84 +UniRef50_UPI00031B7DA5 hypothetical protein 4.74580212098e-07 2.58133475648e-07 -87382203.605 +UniRef50_Q3IUW1 Signal peptidase I 0.00031370637953 8.04321164022e-05 -94175682621.9 +UniRef50_UPI00046FFC4F hypothetical protein 1.66977899995e-07 1.28837971418e-07 -15397557.1961 +UniRef50_A7X169 Endonuclease MutS2 0.000196066244824 5.75893687812e-05 -55904814160.9 +UniRef50_UPI000418D073 hypothetical protein 9.73170839904e-08 1.75758794626e-07 31667881.1716 +UniRef50_B9K203 1.34336650837e-06 7.8502862146e-05 31150235242.4 +UniRef50_UPI00046E6835 ATPase AAA, partial 8.39966328859e-08 5.13050095133e-07 173214147.787 +UniRef50_UPI000360D065 hypothetical protein 5.24731810741e-08 8.48491396957e-08 13070571.7932 +UniRef50_P08065 Succinate dehydrogenase flavoprotein subunit 0.000212475081267 6.58360059387e-05 -59199994173.7 +UniRef50_UPI00045EC07A C4 dicarboxylate ABC transporter permease 4.26455167823e-07 1.65847410214e-07 -105210549.764 +UniRef50_UPI0002D91D3B hypothetical protein 8.49493495021e-08 8.07074546283e-07 291530803.413 +UniRef50_Q47329 UDP glucose 6 dehydrogenase 8.58294800496e-06 2.74200354057e-06 -2358060956.72 +UniRef50_G7M577 Polysaccharide biosynthesis protein 5.7063454556e-06 1.13909318059e-05 2294937267.34 +UniRef50_UPI0003695A84 hypothetical protein 3.40745919661e-08 4.12610186037e-08 2901248.62097 +UniRef50_D7G171 2.34829077274e-07 6.52633602589e-07 168672813.908 +UniRef50_UPI0003796517 hypothetical protein 2.18775193464e-08 2.33164308894e-08 580906.247339 +UniRef50_UPI000462BF9A acetyltransferase 3.01382116174e-07 6.70758170359e-07 149121645.828 +UniRef50_B7UZJ9 Transcriptional regulator MraZ 5.40364558677e-06 5.38571498834e-06 -7238802.61938 +UniRef50_A3DIH0 Intracellular exo alpha L arabinofuranosidase 7.91375238722e-07 7.39866164338e-06 2667442602.08 +UniRef50_Q28T47 Type III pantothenate kinase 9.61497765098e-07 4.60693623508e-07 -202180777.518 +UniRef50_UPI0004005113 antibiotic ABC transporter ATP binding protein 2.88645664355e-08 8.75823510855e-08 23705090.2114 +UniRef50_Q2L2H8 30S ribosomal protein S12 4.20872488711e-05 5.26432343014e-05 4261580854.72 +UniRef50_A0A3H4 Glycine betaine transport system permease protein glycine betaine binding protein 4.73168716278e-05 4.38722236346e-05 -1390646665.44 +UniRef50_D4GNJ8 Cell division protein ZapC 2.68252843931e-05 1.62642602345e-05 -4263615051.17 +UniRef50_I0JEM4 Tn554 related transposase A 8.1867226448e-05 1.98071624306e-05 -25054409406.4 +UniRef50_UPI000471CC86 C4 dicarboxylate ABC transporter substrate binding protein 3.08721668324e-07 6.72910838661e-08 -97468489.6321 +UniRef50_F2JJH8 MATE efflux family protein 2.51260932248e-06 1.02184150622e-05 3110928337.99 +UniRef50_P33696 UTP glucose 1 phosphate uridylyltransferase 3.12181500994e-06 2.52427381303e-06 -241234713.848 +UniRef50_W0IWY4 Diguanylate cyclase 1.41496339625e-07 3.49943750612e-07 84152777.7528 +UniRef50_Q7MHK1 Glutathione synthetase 1.84097102953e-05 6.83058871325e-05 20143698884.1 +UniRef50_A7ZVR4 1.08991257475e-05 2.73470160615e-06 -3296078214.61 +UniRef50_Q04GC3 Peptide chain release factor 2 6.31072729797e-05 2.45048716305e-05 -15584263129.4 +UniRef50_A5UMV9 SsDNA binding protein 4.40632802296e-05 7.98612381636e-06 -14564790760.5 +UniRef50_UPI00016A34A8 hypothetical protein 8.41916360891e-07 9.98477244106e-07 63205549.772 +UniRef50_Q0FMM6 Peptide ABC transporter, permease protein 1.07220316976e-06 6.84786750653e-07 -156404762.528 +UniRef50_UPI0002DD3A3E hypothetical protein 2.564827868e-08 1.05077288817e-07 32066466.0959 +UniRef50_Q05755 Glutamate synthase [NADPH] large chain 1.17362357239e-08 1.68481138797e-08 2063727.9413 +UniRef50_V7ZFF9 S methylmethionine permease 8.57273252495e-07 4.41810187015e-06 1437550209.23 +UniRef50_UPI0003A4ECE6 2,5 diketo D gluconic acid reductase 5.1704642099e-08 8.24992128289e-08 12432146.0955 +UniRef50_UPI0003632431 hypothetical protein, partial 4.30396635004e-07 2.34486597947e-07 -79091286.0464 +UniRef50_X1G8H6 Marine sediment metagenome DNA, contig 1.09328797589e-07 4.64078377622e-06 1829403982.08 +UniRef50_P45861 5.16545488309e-05 4.14958312059e-05 -4101198966.7 +UniRef50_W5X2S2 GCN5 related N acetyltransferase 8.77308036352e-08 1.96587916951e-06 758231542.774 +UniRef50_UPI0004730E83 hypothetical protein, partial 2.01807574618e-07 4.76956682864e-07 111081071.458 +UniRef50_I7DFR8 1.86359610009e-05 3.67614155849e-06 -6039462686.53 +UniRef50_M5PEW3 Peptide deformylase 1.44939763796e-07 2.38265177494e-07 37676614.7415 +UniRef50_A6LXH7 D galactose binding periplasmic protein 6.66796086508e-06 3.74530080559e-05 12428301325.9 +UniRef50_I6U0D0 Recombination factor protein RarA 7.06462439946e-05 6.43156292659e-06 -25924254749.9 +UniRef50_F2ZJ87 Xanthine dehydrogenase, molybdopterin binding subunit 4.88593589669e-06 2.43865345587e-06 -987997952.892 +UniRef50_O68827 Chloramphenicol sensitive protein RarD 4.24727588089e-06 3.1983758685e-06 -423453806.452 +UniRef50_R4MXP6 PPE family protein 1.42201664571e-07 9.80437757135e-07 338406196.882 +UniRef50_E3GXP2 Phosphate ABC transporter substrate binding protein, PhoT family 5.42133094708e-05 1.384335336e-05 -16297846677.0 +UniRef50_A3PPD1 Tripartite ATP independent periplasmic transporter, DctQ component 3.0059536438e-05 1.69285565124e-05 -5301137731.21 +UniRef50_UPI000370C8AB 30S ribosomal protein S17 1.88580225148e-07 2.43593165412e-06 907283349.978 +UniRef50_Q180E4 Lon protease 1.49248026071e-08 5.90750029185e-08 17823977.6496 +UniRef50_Q1QSI1 Guanylate kinase 1.59402798536e-05 1.45254142268e-07 -6376645706.41 +UniRef50_D3HPI8 8.78659653246e-07 3.9665958339e-07 -194589343.007 +UniRef50_A5UM84 Predicted transcriptional regulator 6.33105629086e-05 4.32170788082e-06 -23814524649.4 +UniRef50_W0RMS6 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 2.66877234584e-06 6.83373766498e-05 26511221401.9 +UniRef50_D3E4F1 Metallo beta lactamase superfamily protein 2.96417880273e-05 2.10940503716e-06 -11115160873.4 +UniRef50_P0AFE9 NADH quinone oxidoreductase subunit M 3.71848569902e-05 1.62902581483e-05 -8435405958.04 +UniRef50_UPI0003790B90 hypothetical protein 5.27752699103e-07 3.05896969956e-07 -89565880.3326 +UniRef50_Q8CYM9 1.47005293631e-07 2.8538616029e-05 11462041658.1 +UniRef50_L1J8E6 4.30281224173e-08 7.08470174153e-08 11230829.2869 +UniRef50_UPI0004650E5C hypothetical protein 4.63774736443e-08 3.38377515925e-07 117884000.312 +UniRef50_E6QIH1 1.37906278467e-06 2.76026173784e-05 10586770788.7 +UniRef50_UPI00036AFD53 hypothetical protein 8.0520891536e-08 1.26569445116e-07 18590366.1595 +UniRef50_O25294 Cytosol aminopeptidase 8.95931935559e-07 2.38819114931e-05 9279722017.05 +UniRef50_UPI0003797CF3 hypothetical protein 9.87742893972e-07 1.85687052136e-07 -323799785.681 +UniRef50_D6ZZR1 1.1286554024e-05 1.36963694671e-05 972872066.14 +UniRef50_P52999 Aspartate 1 decarboxylase 0.000277220728572 1.12517414884e-05 -1.07374943892e+11 +UniRef50_A3PGF4 4.36213647065e-05 2.74287961482e-06 -16503146066.9 +UniRef50_Q2G4L5 20S proteasome, A and B subunits 0.000108578848856 1.53620295261e-05 -37632773862.5 +UniRef50_UPI000347491F hypothetical protein 2.84239783412e-08 4.10718026938e-08 5106081.8974 +UniRef50_UPI000234F3A3 PREDICTED 1.16056675444e-07 5.9267410198e-08 -22926523.2625 +UniRef50_V5E5C8 Cold shock like protein CspD 1.16485488852e-06 5.57045652811e-07 -245380047.114 +UniRef50_UPI000399E7E2 succinyl CoA 7.60498476012e-08 1.13858140991e-07 15263672.0014 +UniRef50_A6LSY3 Glutamyl tRNA reductase 1.91296986929e-06 1.58710086841e-05 5635031553.93 +UniRef50_B9KS20 Sulfate transporter 2.99997776736e-05 6.03376378384e-06 -9675373903.37 +UniRef50_UPI00047C589B hypothetical protein 3.76985388941e-07 5.9896055629e-07 89614099.0004 +UniRef50_Q1IVX0 4 hydroxybenzoate polyprenyltransferase, putative 1.62011154012e-06 2.97154361787e-05 11342427325.0 +UniRef50_Q8N9Z2 Coiled coil domain containing protein 71L 5.49526369223e-07 1.38718082801e-06 338171384.188 +UniRef50_P0AF49 UPF0047 protein YjbQ 2.98817471956e-06 7.46628364228e-05 28935940476.6 +UniRef50_UPI00041F306E hypothetical protein 6.76128964581e-08 6.04410446177e-08 -2895364.59649 +UniRef50_Q1MPW7 Glutamate 1 semialdehyde 2,1 aminomutase 8.09790346541e-08 1.19060145757e-07 15373811.86 +UniRef50_F4DR22 5.1562212206e-06 3.51652701464e-06 -661964672.257 +UniRef50_UPI0003002FCB hypothetical protein 1.85367447446e-07 1.52648487296e-08 -68672506.4953 +UniRef50_V9VS67 Peptidase 1.38258308563e-08 2.66594762073e-07 102045919.356 +UniRef50_A0RC17 Xanthine phosphoribosyltransferase 2.1214938077e-05 0.000240460077578 88511953257.0 +UniRef50_A6USH1 UPF0285 protein Mevan_1551 3.22341183292e-05 1.99538314317e-06 -12207748465.6 +UniRef50_S1PBL6 Inner membrane protein yiaV 1.44751323792e-05 9.47729049242e-06 -2017690100.11 +UniRef50_F9NYN9 6.28810414515e-08 1.67465848469e-07 42222169.9927 +UniRef50_A6M320 Putative competence damage inducible protein 2.07733092326e-05 1.74666633017e-05 -1334933539.41 +UniRef50_UPI000474352D glyoxalase I, partial 5.25028812531e-06 1.32045260154e-06 -1586522825.45 +UniRef50_A4WQQ4 Aminotransferase, class V 1.5254632215e-05 8.57079650752e-06 -2698346495.0 +UniRef50_Q24X66 tRNA dimethylallyltransferase 1.80794811273e-07 1.17680862471e-07 -25479875.6266 +UniRef50_R6FXN6 Pseudouridine synthase 2.53839093847e-06 5.9588979608e-06 1380900659.26 +UniRef50_V5LNW1 Putative membrane protein 7.54395132305e-08 9.19685235493e-08 6672964.29947 +UniRef50_Q604U3 Ribonuclease HII 9.25800184316e-08 6.1581455198e-05 24823813463.4 +UniRef50_UPI00030E8D28 multidrug ABC transporter ATP binding protein 4.50154188846e-08 2.15012811429e-07 68630033.4726 +UniRef50_V9VWJ0 0.000258758330111 1.24246051479e-05 -99447947622.3 +UniRef50_W2UZV9 1.37144025415e-07 5.87456300015e-07 181796591.209 +UniRef50_UPI000476BCFC hypothetical protein 1.8897735194e-06 2.8142720318e-06 373231394.328 +UniRef50_Q9ZD73 2.8243917751e-07 3.59975966571e-07 31302553.2273 +UniRef50_Q2NE10 Dihydroxy acid dehydratase 3.43408382468e-05 1.9513606166e-05 -5985935541.62 +UniRef50_Q9HH09 Glutamine synthetase 8.38472134374e-08 1.40493582169e-07 22868834.1861 +UniRef50_UPI00037460EB hypothetical protein 2.48969642999e-07 9.25388514554e-08 -63153030.168 +UniRef50_L0A7I7 8.83744785083e-07 9.53727354744e-06 3493535752.1 +UniRef50_K7EH66 2.94620714165e-08 3.69817170268e-07 137405530.033 +UniRef50_X2MI40 Thiamine ABC transporter permease 3.61283303375e-05 7.88476424302e-06 -11402274219.9 +UniRef50_G0DVY7 Cell division protein FtsQ 1.59276788545e-06 5.98791908997e-05 23530944225.7 +UniRef50_UPI0003A33C9F peptidase S8 2.42465458775e-08 3.25103487845e-06 1302694047.0 +UniRef50_UPI0003804693 hypothetical protein 4.72408571858e-07 4.14346738629e-08 -173989451.265 +UniRef50_UPI0002EF496B hypothetical protein 3.53441768897e-08 1.20647517818e-07 34438005.5225 +UniRef50_A3M585 6.91366279948e-07 6.50563977741e-05 25984953062.0 +UniRef50_Q9HZ67 P protein 3.17508176853e-06 2.04429055021e-07 -1199288954.45 +UniRef50_A6LWB2 Integral membrane sensor signal transduction histidine kinase 5.22470425098e-06 6.25280971892e-06 415058793.68 +UniRef50_UPI0004658FE1 hypothetical protein 2.90466168338e-07 3.6101535063e-06 1340198515.48 +UniRef50_V9VUH1 Cation 0.000151170152447 6.67974363675e-05 -34062300851.0 +UniRef50_E4C1B3 9.50766624436e-08 1.46144954442e-05 5861667535.52 +UniRef50_UPI000377B5C3 hypothetical protein 2.80629261898e-07 1.67271418867e-06 562001767.74 +UniRef50_Q65RK2 Na H(+) antiporter NhaA 2.45592189452e-05 9.67265544711e-06 -6009888362.86 +UniRef50_X6EE61 1.89335144391e-07 5.34824720326e-07 139478381.439 +UniRef50_F6R4Y2 3.11145864016e-07 1.7040219121e-07 -56819947.8309 +UniRef50_O05118 Pyruvate kinase 2.48564861444e-05 5.05603387725e-06 -7993685559.14 +UniRef50_K0B2D2 4.61828611062e-06 9.41383200643e-06 1936020726.1 +UniRef50_UPI000468F174 hypothetical protein 1.02636260309e-05 6.59476512507e-06 -1481164169.67 +UniRef50_A6GDL9 4.49094894686e-07 6.94979517607e-08 -153247944.037 +UniRef50_Q1M589 sn glycerol 3 phosphate import ATP binding protein UgpC 3 5.93328196096e-07 3.1250896433e-07 -113370169.903 +UniRef50_S5YIS8 ABC Fe+3 siderophore transporter, periplasmic substrate binding protein 3.29868838122e-07 2.08339869887e-07 -49062735.8046 +UniRef50_UPI00026263A5 phytoene dehydrogenase 8.40154663413e-08 3.90736109577e-08 -18143578.5169 +UniRef50_Q13RB8 Xylose isomerase 0.000112737833822 1.64399149752e-05 -38876651546.8 +UniRef50_A9AB27 Diaminopimelate epimerase 5.25479722221e-08 1.51553622878e-07 39969796.1057 +UniRef50_UPI0003709E94 hypothetical protein, partial 2.40582935563e-06 4.9523378201e-07 -771330878.715 +UniRef50_A5F642 Uracil phosphoribosyltransferase 3.44092368625e-07 8.48563658414e-07 203661250.247 +UniRef50_D8JGS2 Exporter 5.834404774e-07 8.59732168187e-05 34472900559.4 +UniRef50_E0TPJ9 Histidine kinase 2.20752040266e-06 6.34832297032e-05 24737755782.1 +UniRef50_A0A038GFN9 FKBP type peptidylprolyl isomerase 1.94878767955e-05 2.56455650404e-05 2485934307.8 +UniRef50_M1GD04 1.21939042968e-07 1.70990295174e-07 19802592.4421 +UniRef50_G8AIH3 6.68478508552e-07 2.1335419498e-06 591464089.583 +UniRef50_C9LS22 4.32684121844e-07 4.96266947444e-07 25669166.9437 +UniRef50_UPI0002626B19 4 alpha glucanotransferase 1.13133810379e-07 4.81609638899e-06 1898643704.83 +UniRef50_Q216Y2 MaoC like dehydratase 1.23779016053e-07 1.5124731484e-07 11089289.2942 +UniRef50_A3PHP1 Abortive infection protein 0.000146437054279 3.44210097937e-05 -45222251750.0 +UniRef50_UPI0003D0BA23 PREDICTED 3.0425490927e-07 4.14691333181e-07 44584539.5402 +UniRef50_F4FLP5 O antigen polymerase 6.18519540379e-05 2.54278516302e-05 -14704857116.0 +UniRef50_A6LZN7 1.08994991968e-06 9.75009066972e-06 3496205092.67 +UniRef50_C0ZPK5 ATP dependent zinc metalloprotease FtsH 2.48890006064e-08 9.65424258301e-08 28927367.0492 +UniRef50_B1W3Y6 Adenylate kinase 7.70891120911e-08 3.73230302478e-07 119555832.62 +UniRef50_Q8RE31 Adenylate kinase 9.19787210755e-08 2.74381572548e-07 73638269.4739 +UniRef50_V8LZ20 Ammonia permease 8.17555658577e-05 2.87763355251e-06 -31843989212.7 +UniRef50_F7ZMV0 ABC transporter ATP binding protein 7.1539349499e-06 1.73951458493e-05 4134502513.88 +UniRef50_Q9LHH7 Bifunctional protein FolD 2 7.3347406578e-06 4.76349751929e-08 -2941893986.91 +UniRef50_N8YXS0 6.5686189211e-06 6.27042719338e-05 22662651983.2 +UniRef50_M1MEC2 Extracellular solute binding protein, family 1 1.09612953218e-05 1.79712117905e-05 2829989299.76 +UniRef50_U2PH02 3.53950228934e-08 1.32182989304e-07 39074489.7619 +UniRef50_X2HH54 A G specific adenine glycosylase 1.19710144452e-06 1.87682238555e-05 7093677739.24 +UniRef50_Q8DXK8 Prophage LambdaSa2, PblB, putative 2.03889996048e-06 2.58296137206e-06 219644268.239 +UniRef50_Q3AWX1 Probable malate 3.16181632351e-08 5.01978972251e-08 7500866.61074 +UniRef50_D5VFT5 Acetolactate synthase, large subunit, biosynthetic type 0.000158139351144 3.17230493237e-05 -51035812347.2 +UniRef50_P37003 1.22306837145e-05 9.98176201586e-06 -907917287.114 +UniRef50_UPI00036B4081 hypothetical protein 1.15762863075e-07 2.47088444175e-07 53017748.6362 +UniRef50_C1DHH3 4.04751759926e-07 2.38308761295e-06 798678460.775 +UniRef50_Q2Y752 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.20777703019e-07 3.27353424095e-06 1272806503.04 +UniRef50_P37007 2.96582860074e-05 1.35331032166e-05 -6509934170.89 +UniRef50_L7WW34 Multidrug resistance protein 0.000104306902786 4.75922135138e-05 -22896416026.7 +UniRef50_Q02UC6 Anaerobically induced outer membrane porin OprE 1.17563791498e-05 1.4096262778e-06 -4177111103.36 +UniRef50_A1ADX2 GDP mannose pyrophosphatase NudK 1.18490769114e-05 6.64302270065e-06 -2101747970.35 +UniRef50_N5A969 2.45289240675e-07 3.03233209257e-07 23392691.169 +UniRef50_D6ENY0 AMP binding domain containing protein 1.20290144827e-06 1.01960624042e-06 -73998524.6942 +UniRef50_UPI0004673990 histidinol dehydrogenase 2.43557186622e-06 2.35832728678e-06 -31184584.6175 +UniRef50_K1ZZL6 5.30752693842e-07 5.94183811299e-07 25607920.5047 +UniRef50_C6SPL1 0.000121840179327 2.54851034797e-05 -38899726529.3 +UniRef50_C6SPL2 3.42692034797e-05 6.2766371825e-06 -11300942521.6 +UniRef50_UPI00038FE8C9 Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp 2.17503033443e-07 4.59487378327e-08 -69258574.3457 +UniRef50_X5Y9C9 ABC transporter substrate binding protein 6.27135269102e-08 2.83491299152e-07 89130695.902 +UniRef50_B5SHZ2 Segregation and condensation protein a 5.73453511231e-06 4.35962938463e-05 15285256616.9 +UniRef50_UPI0004029835 hypothetical protein 1.16996238335e-07 1.80216353406e-07 25522736.2522 +UniRef50_C5BKL9 Chromosomal replication initiator protein DnaA 4.02144621575e-05 1.44073785693e-05 -10418636333.1 +UniRef50_U5MW71 Cardiolipin synthase Cls 5.18041488782e-06 7.22942080891e-06 827208834.474 +UniRef50_J8G6B9 TQXA domain containing protein 8.05006397902e-09 1.00960803821e-08 826001.929368 +UniRef50_UPI00036DF70A hypothetical protein 2.04044188162e-08 4.0375014268e-08 8062374.45066 +UniRef50_D3QCJ5 ATP dependent RNA helicase YqfR 0.000124607274181 4.55180998333e-05 -31929270217.5 +UniRef50_B2SXV7 Lysine tRNA ligase 3.47557862702e-08 5.83142458113e-07 221390428.884 +UniRef50_G8PVZ6 D,D dipeptide transport system permease protein DdpC 9.7865678183e-05 9.60357166001e-06 -35632495501.2 +UniRef50_X1UWS6 Marine sediment metagenome DNA, contig 3.02649245815e-07 3.90694456633e-07 35544932.0435 +UniRef50_A6LVP9 Phage replisome organizer, putative 9.93154060413e-06 3.98848061577e-05 12092500871.9 +UniRef50_UPI00041E91C7 threonine dehydratase 8.7564914624e-08 1.39110560528e-07 20809609.7877 +UniRef50_Q0BUK0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000114687238813 0.000130503529593 6385230675.6 +UniRef50_P95786 ATP synthase subunit delta 5.62822789907e-05 1.36700229036e-05 -17203090693.5 +UniRef50_H5NJS4 FabA like domain protein 1.41104766916e-07 4.90674763159e-07 141125697.19 +UniRef50_UPI0003ADCC45 PREDICTED 1.09514416056e-07 3.35712269313e-08 -30659197.3774 +UniRef50_Q2FD99 Multidrug efflux transport protein 1.87028565907e-06 6.39225490265e-05 25051260188.3 +UniRef50_M9VIC2 L xylulose 5 phosphate 3 epimerase 3.03714999663e-06 5.32543757074e-05 20273310254.1 +UniRef50_P39374 2.88683012507e-05 2.13739472998e-06 -10791594987.5 +UniRef50_A8LAX8 1.28648754386e-07 3.34107640361e-07 82946273.5322 +UniRef50_V6DLJ7 Putative phage protein 2.67729666102e-06 1.01160958787e-06 -672458311.71 +UniRef50_UPI000440D7F2 PREDICTED 3.41646690317e-08 2.4436089507e-08 -3927546.93722 +UniRef50_B7VHY7 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.1354159197e-07 6.11812722406e-08 -61509730.746 +UniRef50_D1GN04 Phage protein 2.91450455315e-05 4.18888943548e-06 -10075106462.4 +UniRef50_A4WV88 2 keto 3 deoxygluconate kinase 8.26995344701e-06 4.20142421617e-06 -1642515176.96 +UniRef50_F0JTZ1 DNA binding transcriptional activator, co regulator with RcsB 2.56212209626e-06 3.98179827223e-06 573140693.625 +UniRef50_UPI000395D3CA PREDICTED 1.79652920158e-07 4.63828208591e-06 1800003307.75 +UniRef50_A3NI78 4.18015609419e-05 4.35120559719e-06 -15119168020.2 +UniRef50_K7SGE5 Glycosyltransferase, group 1 family protein 8.15820802931e-06 4.71336550744e-05 15734866254.6 +UniRef50_C5BM46 TRAP transporter, DctQ family protein 0.000133367132723 7.29328352558e-06 -50897560020.9 +UniRef50_Q9RYQ8 Acyl CoA dehydrogenase, putative 5.39568342021e-06 0.000419661549045 1.67244213567e+11 +UniRef50_P0AF25 Ribonucleotide monophosphatase NagD 1.68537888368e-05 7.08131759052e-06 -3945266563.83 +UniRef50_Q5LTY4 ArsC family protein 7.18560968825e-07 5.5754036328e-07 -65005994.4035 +UniRef50_UPI0004649E38 hypothetical protein 2.57878831719e-07 4.40966683833e-07 73914812.639 +UniRef50_M9R9I6 RNA polymerase sigma 32 factor 2 7.39113598218e-05 4.71598434767e-05 -10799915426.5 +UniRef50_UPI00029AA773 3 deoxy D manno octulosonic acid 8 phosphate synthase 1.14712130716e-06 7.6348011262e-07 -154880658.043 +UniRef50_C2ZFP3 Acetyl CoA acetyltransferase 1.53657797359e-06 0.000244902886139 98249965046.6 +UniRef50_D6SDB9 Toxin, beta grasp domain protein 8.90084944403e-05 1.0791208446e-05 -31577278189.9 +UniRef50_W8EU13 Dihydrolipoyl dehydrogenase 0.000136725955808 4.7489099421e-05 -36026013982.8 +UniRef50_A3N6S5 Transcriptional regulator, LysR family 1.25689008493e-06 2.01352299003e-06 305461988.719 +UniRef50_UPI0003B6C781 amidohydrolase 1.79316354216e-07 8.16734733007e-08 -39419629.2384 +UniRef50_UPI0003AF0828 PREDICTED 1.78158442219e-07 4.2094859072e-06 1627496367.56 +UniRef50_UPI0004756B1C 6 phospho beta glucosidase 3.83930066134e-08 8.45001184073e-08 18614006.8291 +UniRef50_A0A018Y1M8 Glycogen branching enzyme 4.02553145186e-05 4.67228864198e-06 -14365304199.2 +UniRef50_W7VQX9 Spermidine putrescine binding periplasmic protein 2.70715842294e-07 1.07248643401e-07 -65993714.1612 +UniRef50_I6TQG8 Signal peptidase I 4.96612071465e-05 7.68355905256e-06 -16946891659.2 +UniRef50_G7TCM8 ParB family protein 2.88510949591e-06 6.45906084216e-07 -903993895.415 +UniRef50_Q48768 Chemotaxis protein CheA 6.29143314804e-07 2.89186411327e-05 11420817420.3 +UniRef50_UPI0003B44FBC N acetyl anhydromuranmyl L alanine amidase, partial 5.395022779e-07 1.31868292806e-06 314564790.091 +UniRef50_UPI000262A813 sulfate ABC transporter permease 6.04724718665e-07 1.10189467331e-06 200713611.652 +UniRef50_A6VCD4 6.65643639175e-06 6.64732343474e-06 -3679012.57349 +UniRef50_G8V3H8 FecCD transport family protein 0.000102188448613 5.25309581752e-05 -20047338255.7 +UniRef50_UPI0003A147C5 glutamate dehydrogenase 8.03227697133e-08 2.30453977698e-07 60609810.9806 +UniRef50_H8H2N8 DNA polymerase III, beta subunit 9.63707177918e-06 0.000711126262926 2.83199794706e+11 +UniRef50_K5YNY1 7.242848099e-07 1.23590478075e-07 -242507673.106 +UniRef50_UPI000255C1EB DNA 3 methyladenine glycosylase I 1.99033744418e-07 5.63166823913e-07 147004992.608 +UniRef50_A7EM78 ATP dependent RNA helicase dbp9 5.55363343528e-08 6.55863359958e-08 4057308.99067 +UniRef50_F3CRF8 1.16748243974e-05 2.48592628306e-05 5322719586.74 +UniRef50_A6LUT7 Zn dependent hydrolase of the beta lactamase fold like protein 1.47840465605e-06 1.34658211377e-05 4839467135.76 +UniRef50_D3QFY2 5.13854190345e-06 1.9921189645e-06 -1270249551.41 +UniRef50_B2RIE4 Ribosomal RNA small subunit methyltransferase H 5.81187305735e-08 4.86725458718e-05 19626240803.0 +UniRef50_Q5HN64 6.42874867544e-05 1.71850864942e-05 -19015816996.5 +UniRef50_F7Y3N0 Secretion protein HlyD family protein 1.09296805086e-05 1.60352962103e-06 -3765081558.05 +UniRef50_Q2FDM8 HTH type transcriptional regulator ArcR 0.000246026376756 0.000142134125283 -41942576820.9 +UniRef50_D8JH13 2.98500709782e-06 6.84154782696e-05 26415084134.2 +UniRef50_F8UHZ1 Sulfide 1.1742369025e-05 2.08771585387e-06 -3897701961.1 +UniRef50_UPI0002D3C80C hypothetical protein 3.58820460678e-08 2.4892462434e-07 86007903.1748 +UniRef50_UPI0003B545B7 UDP N acetylglucosamine 2 epimerase 6.08270801282e-08 2.89770844998e-07 92427407.3339 +UniRef50_A4VWB1 Predicted membrane protein 4.53443194446e-07 3.05938418067e-07 -59549488.3114 +UniRef50_UPI0002B4270F PREDICTED 1.68179136268e-06 4.89175130106e-07 -481473808.135 +UniRef50_Q97G69 Glycerol 3 phosphate acyltransferase 5.99570586174e-06 2.1881812892e-05 6413416352.59 +UniRef50_UPI00037918AC hypothetical protein 1.56336080484e-07 2.38983700578e-07 33365858.4323 +UniRef50_A0A024KDL9 2.87355372835e-06 1.53415901025e-06 -540730083.918 +UniRef50_UPI000470E44E hypothetical protein 2.60899634921e-07 8.63793585826e-08 -70455977.1623 +UniRef50_M1P9T3 2.07352964281e-06 6.91424110136e-07 -557972963.881 +UniRef50_UPI000418EAD6 hypothetical protein 3.93302952453e-07 2.49799746551e-07 -57934005.205 +UniRef50_I6SU88 Penicillin binding protein 2B 4.90502608904e-05 2.15356450517e-05 -11107988056.4 +UniRef50_I6T801 Endoglucanase 4.83942552682e-05 7.11791939924e-06 -16663763307.9 +UniRef50_F9YWL2 Transport system permease protein 1.02857217666e-06 6.32221446914e-05 25108308425.1 +UniRef50_U6LU16 2.99125628559e-08 3.02849965665e-07 110188178.833 +UniRef50_UPI00047E902E Fe3+ siderophore ABC transporter permease 5.50677080713e-08 2.75816222756e-07 89118884.2672 +UniRef50_F6ZM80 6.0773025101e-07 7.31089157469e-08 -215833193.587 +UniRef50_W2CJ91 2.00039967522e-07 1.21616401369e-06 410221746.683 +UniRef50_I3TNK1 GNAT family acetyltransferase TIGR03103 1.46411681904e-06 4.88042327123e-06 1379204837.54 +UniRef50_F2AE33 1.40877551229e-05 6.46605775422e-06 -3076972756.48 +UniRef50_Q9CIV8 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 5.03884180492e-06 2.02974458268e-05 6160085687.77 +UniRef50_UPI0004138F31 Fur family transcriptional regulator 4.43514531505e-07 1.05423149655e-06 246553933.129 +UniRef50_O31714 1 phosphofructokinase 1.05632353205e-07 1.48515284581e-05 5953099210.04 +UniRef50_C1F5G2 GAF domain GGDEF domain protein 4.99639616826e-08 4.2471606233e-07 151292021.757 +UniRef50_UPI000440DE53 PREDICTED 3.13519165916e-08 2.21298897714e-08 -3723045.39431 +UniRef50_M4UDQ5 Quinone oxidoreductase 8.96166719044e-06 4.84549952788e-06 -1661747396.43 +UniRef50_R1F8B2 1.17100883226e-07 7.90601864219e-08 -15357496.1117 +UniRef50_U4JVB3 8.1297663707e-08 9.83469674759e-08 6883013.14999 +UniRef50_P77463 Probable D,D dipeptide transport system permease protein DdpC 3.86060121401e-05 6.71362135453e-06 -12875349523.8 +UniRef50_UPI00023773E6 hemolysin type calcium binding domain containing protein, partial 3.44521611529e-08 9.45483523447e-08 24261569.8473 +UniRef50_UPI000309FDCA hypothetical protein 3.89830686277e-08 4.05441485061e-07 147943759.664 +UniRef50_U5NMM5 7.47313619048e-06 1.63586108529e-05 3587175158.25 +UniRef50_P45600 HTH type transcriptional regulator CysB 2.2880246696e-05 8.02932501237e-06 -5995499324.97 +UniRef50_P36566 Protein SmtA 1.06639888164e-05 3.89042134346e-05 11400925224.9 +UniRef50_UPI0001FFE514 pyruvate phosphate dikinase PEP pyruvate binding protein, partial 5.47035358623e-08 1.88407278137e-06 738538813.297 +UniRef50_UPI0004634978 hypothetical protein, partial 3.56527897935e-07 1.51498993015e-06 467685338.335 +UniRef50_UPI00036938AE hypothetical protein 3.71562409899e-07 1.06390900165e-07 -107052992.5 +UniRef50_E2NTP5 3.91956612381e-05 9.27322011325e-06 -12080056671.7 +UniRef50_UPI000380D55B hypothetical protein 9.19907442685e-08 3.89488133843e-07 120103346.875 +UniRef50_U5FQ27 8.64665415698e-07 5.66477011024e-07 -120382318.15 +UniRef50_K0K215 Luciferase like monooxygenase 2.02586398316e-06 0.000300954925315 1.20681330332e+11 +UniRef50_UPI000421309B siroheme synthase 7.33527455851e-07 6.880971045e-08 -268354710.822 +UniRef50_E9AEM7 Putative proteophosphoglycan ppg3 4.85421032899e-08 4.18494245524e-07 149354219.643 +UniRef50_M2PFD7 3.41317859517e-07 1.91614609346e-06 635777483.357 +UniRef50_Q9RTU0 Potassium uptake protein KtrA 4.0735898078e-06 0.000450148331134 1.80085847026e+11 +UniRef50_Q9RUF3 Methionine tRNA ligase 2.91040293157e-08 0.000316402133283 1.27723674243e+11 +UniRef50_V4MMB9 6.47914434567e-08 5.78734858769e-08 -2792864.36785 +UniRef50_Q73RR6 Formate tetrahydrofolate ligase 3.2407179485e-07 3.88401578268e-05 15549416576.6 +UniRef50_P12995 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 3.46897489807e-05 5.31547340258e-05 7454541053.55 +UniRef50_UPI00026CCAA9 ferripyochelin binding protein 3.06402875023e-07 3.05485899378e-07 -370194.320443 +UniRef50_A6LST0 Regulatory protein, LacI 2.92820640156e-06 5.45469749026e-06 1019975456.04 +UniRef50_A1U1T6 Peptidase S49 6.2886197331e-06 7.59556131951e-06 527628356.41 +UniRef50_UPI0003B4CA49 ribonuclease J 5.83655004914e-07 6.51235526882e-07 27283086.0247 +UniRef50_D9WJL5 2.0772204788e-06 1.47865544518e-06 -241648049.291 +UniRef50_P37675 2,3 diketo L gulonate TRAP transporter large permease protein YiaN 6.49286444955e-05 9.66828982054e-06 -22309283303.1 +UniRef50_UPI000262CC40 23S rRNA pseudouridine synthase D 1.83443521967e-07 1.02230618048e-07 -32786645.9065 +UniRef50_C1PH90 Pyridoxal dependent decarboxylase 0.000101461776785 4.21452362488e-05 -23946815310.3 +UniRef50_UPI000399117C PREDICTED 5.00019400421e-07 1.44692362186e-06 382276854.016 +UniRef50_G8VJM5 7.97505610247e-06 8.15197883274e-05 29690910894.5 +UniRef50_UPI0003B5627F RNA polymerase subunit sigma 24 2.9384821392e-06 1.09469548254e-06 -744359299.1 +UniRef50_D6ZGK4 5.50085365764e-08 2.44433744621e-07 76473280.9965 +UniRef50_E2Q4D8 IolC protein 1.14737382625e-06 5.9806052673e-05 23681228473.4 +UniRef50_Q5HRK7 30S ribosomal protein S12 0.000166149349375 5.94017351161e-05 -43095321816.9 +UniRef50_B2JLW6 ABC transporter related 1.5428582651e-06 2.70519119271e-06 469248066.305 +UniRef50_D2J9T7 4.17406764977e-05 2.95044381471e-05 -4939919577.67 +UniRef50_V9C4R9 PF12266 family protein 1.74099792422e-06 5.63037539161e-07 -475557062.648 +UniRef50_Q8Y1I2 3 octaprenyl 4 hydroxybenzoate carboxy lyase 8.46843372435e-06 2.2095077733e-06 -2526805212.1 +UniRef50_M6A924 Winged helix turn helix 4.29335394827e-07 3.71030422315e-05 14805625487.0 +UniRef50_A4WZ94 1.75850026736e-05 1.03651950466e-05 -2914724936.02 +UniRef50_X0ZU83 Marine sediment metagenome DNA, contig 3.22509832835e-07 3.80702539354e-07 23493109.7265 +UniRef50_M2QQT8 1.53159082791e-06 1.46933824448e-06 -25132131.8558 +UniRef50_UPI00037EEFBB hypothetical protein 5.82229385628e-08 2.48150709882e-07 76676171.9573 +UniRef50_Q49Z00 Redox sensing transcriptional repressor Rex 9.36861016053e-05 1.07122336261e-05 -33497568707.1 +UniRef50_T1YC99 8 amino 7 oxononanoate synthase 9.83946986161e-05 3.68036399972e-05 -24865066171.7 +UniRef50_UPI0004633377 hypothetical protein 3.87266539502e-07 5.24846485307e-07 55542712.4173 +UniRef50_L7WXU0 0.000199212156817 4.661562451e-05 -61605092662.4 +UniRef50_UPI000348E813 beta lactamase 1.57045989844e-07 2.96570404935e-07 56327718.5293 +UniRef50_Q1IY10 DNA internalization related competence protein ComEC Rec2 5.01531428967e-07 9.62508756203e-05 38655185226.6 +UniRef50_UPI0003683EEF acetolactate synthase 9.06639723919e-07 5.28301432148e-06 1766796129.19 +UniRef50_X5FIX0 Two component response regulator and GGDEF family protein YeaJ 4.8764613614e-08 7.77283057189e-08 11692997.9272 +UniRef50_P21829 Pyridoxal phosphate phosphatase YbhA 3.8882362494e-05 3.06401598738e-05 -3327478340.97 +UniRef50_Q8NZK5 Immunogenic secreted protein homologue 4.10322606756e-06 2.38800570243e-06 -692455509.524 +UniRef50_H3WHC1 Cadmium resistance transporter family protein 5.55232927744e-06 1.04724042999e-05 1986294662.68 +UniRef50_H8GRT7 2.4405940899e-07 2.92885012368e-06 1083882957.61 +UniRef50_UPI00047B354D hypothetical protein 1.85929180571e-07 2.42899561817e-07 22999642.0142 +UniRef50_B0F658 Major ampullate spidroin 1 locus 3 1.02169521309e-07 1.76896047362e-06 672903961.273 +UniRef50_P95781 8 oxo dGTP diphosphatase 7.03153309441e-05 4.71983124184e-05 -9332624056.54 +UniRef50_T1Z4R2 5.65461334667e-05 9.67458493678e-06 -18922619320.1 +UniRef50_UPI00046A4AB7 catalase 6.2029491269e-08 1.03181473401e-07 16613560.1783 +UniRef50_W7WTG1 CHAT domain protein 6.86807246068e-07 6.93917169686e-07 2870363.41316 +UniRef50_X5F552 4.58485006708e-06 1.22434825964e-05 3091883934.08 +UniRef50_UPI0002BC4B55 transposase 6.13196038774e-08 2.00393594593e-07 56145876.6818 +UniRef50_D4HCU3 Pyruvate kinase 8.34681720869e-06 8.09724062397e-05 29319841508.0 +UniRef50_UPI000363409C hypothetical protein 9.04970848426e-06 9.27312365861e-07 -3279110986.01 +UniRef50_Q7CWA6 2.65304992896e-07 1.17676869848e-07 -59599284.8753 +UniRef50_Q0VQR4 Na translocating NADH quinone reductase subunit E 6.35375966967e-06 1.25912413773e-06 -2056766882.45 +UniRef50_UPI00037A1823 CobW 2.17677336617e-07 1.07192669073e-07 -44604016.0868 +UniRef50_UPI0003900E45 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.68734817934e-07 1.23456312802e-07 -18279488.1515 +UniRef50_P0DC16 Tagatose 1,6 diphosphate aldolase 2 3.47165292298e-07 4.43263544769e-07 38796043.7807 +UniRef50_C1CUZ2 8.8611734477e-07 0.000458238312724 1.84638693617e+11 +UniRef50_E3EIE7 Phospholipase carboxylesterase family protein 4.87887521605e-06 1.01043123665e-05 2109573100.96 +UniRef50_E4FBI4 3.59159417012e-06 1.6981787626e-06 -764395034.836 +UniRef50_A8LTL4 Resolvase domain protein 5.35240764636e-05 4.8373108708e-06 -19655444723.6 +UniRef50_Q9KT93 Probable lactoylglutathione lyase 9.13608899915e-07 2.64915315698e-07 -261885560.314 +UniRef50_UPI000169A652 dihydroxy acid dehydratase, partial 4.42929144991e-06 1.72922948935e-05 5192952336.98 +UniRef50_N9ZY49 1.50444566663e-07 9.96889077879e-08 -20490682.3299 +UniRef50_U5UT50 1.05837193136e-05 8.43762014843e-06 -866406568.577 +UniRef50_B9EAQ4 Oligopeptide ABC transporter ATP binding protein OppF 7.20379293876e-05 1.97765268857e-05 -21098569509.5 +UniRef50_UPI000467AEF3 diaminopimelate decarboxylase 1.37614237477e-07 1.74953986733e-06 650754157.322 +UniRef50_UPI00046E57F5 uroporphyrinogen decarboxylase 6.51719598652e-08 1.18963058382e-07 21716126.5622 +UniRef50_UPI00046D5352 hypothetical protein 4.95257820997e-08 1.17575167913e-07 27472372.1127 +UniRef50_UPI000300EAB7 hypothetical protein 3.27361888448e-06 6.37275625972e-07 -1064324125.03 +UniRef50_UPI0004677218 acyl CoA transferase 2.05285833195e-08 8.77671994386e-08 27145054.4379 +UniRef50_B9KLX6 Chromosomal replication initiator, DnaA 2.47828301455e-06 4.12843581621e-07 -833843244.866 +UniRef50_UPI00036F41B6 hypothetical protein 2.87976229609e-07 4.12333827896e-07 50204688.4678 +UniRef50_Q5RBK6 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 4.61740753603e-08 7.0573538081e-08 9850362.51542 +UniRef50_UPI00047DDDC5 hypothetical protein 7.90378024887e-07 1.07602555134e-06 115319411.718 +UniRef50_UPI00036A8D72 hypothetical protein 1.81861939098e-07 5.06241728674e-07 130956101.639 +UniRef50_UPI0001BF7AAC hypothetical protein SMAC_09920 1.12938857627e-07 6.01560786213e-07 197262668.636 +UniRef50_UPI0002739F39 8.52509287435e-07 6.58024349989e-08 -317603210.307 +UniRef50_UPI0003618544 MULTISPECIES 1.79644883624e-06 2.0487737172e-06 101866650.818 +UniRef50_E2Q1H6 1.4040785353e-07 4.28534677962e-07 116320334.737 +UniRef50_UPI000369F333 hypothetical protein 3.21199765596e-07 1.84280627767e-07 -55275936.1283 +UniRef50_I6RSR0 5.60341603212e-06 4.49199982175e-06 -448692362.737 +UniRef50_W0H1T2 3.31128060398e-06 1.92883848574e-06 -558108847.606 +UniRef50_Q869Y7 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 8.21849630961e-08 1.88234985841e-07 42813695.5623 +UniRef50_Q0G2X9 6.04997526656e-08 7.275522497e-08 4947684.56084 +UniRef50_R5R9L6 7.10590473154e-07 1.65942663495e-07 -219881004.34 +UniRef50_T1AQZ2 Phosphoribosylformylglycinamidine synthase 3.12347934853e-07 4.84337678751e-07 69434370.1631 +UniRef50_Q12F86 Peptide chain release factor 1 3.30161302826e-05 5.42196684499e-06 -11140102398.2 +UniRef50_Q2LTR7 Proline tRNA ligase 0.000239417802839 0.000108215771111 -52967870238.6 +UniRef50_UPI00036F3D8D hypothetical protein 2.82739461197e-08 7.53501857934e-08 19005255.6467 +UniRef50_A4WRU9 PRC barrel domain protein 2.70583958044e-05 4.97428955027e-06 -8915624697.24 +UniRef50_X6J7G6 1.02472676941e-05 2.71758204443e-07 -4027235594.24 +UniRef50_V4QYY0 Transcriptional regulator 4.08398101821e-06 9.00573395035e-07 -1285180722.28 +UniRef50_UPI00046B4F5A PREDICTED 1.54130498666e-07 1.90438647961e-06 706599817.562 +UniRef50_B6JKF2 Cysteine desulfurase IscS 5.04705740017e-08 4.41604646465e-05 17807745897.6 +UniRef50_K9SJV6 Amino acid amide ABC transporter substrate binding protein, HAAT family 2.80828752635e-06 0.00028897393199 1.15528582317e+11 +UniRef50_UPI0002E4DF67 hypothetical protein 2.79711988837e-08 9.49489167224e-07 372028112.116 +UniRef50_P07264 3 isopropylmalate dehydratase 6.7043774056e-07 5.9323521317e-08 -246714309.523 +UniRef50_K8BVY4 1.6806398057e-06 2.15225567847e-06 190397115.215 +UniRef50_UPI0003749F74 hypothetical protein 4.93518354236e-08 2.09818865441e-07 64782509.1698 +UniRef50_Q9CIW0 DhaKLM operon coactivator DhaQ 1.7638786419e-05 5.42027200435e-06 -4932764207.21 +UniRef50_X1DTV9 Marine sediment metagenome DNA, contig 1.10107758914e-07 2.0302659581e-07 37512474.6973 +UniRef50_E3GXL3 Prephenate dehydratase 2.20915152141e-05 3.73031627616e-06 -7412641328.48 +UniRef50_Q21VJ3 Short chain dehydrogenase reductase SDR 9.64238397711e-06 0.000484046609603 1.9152280748e+11 +UniRef50_UPI0003638CE1 hypothetical protein 9.99664838986e-08 2.48489649411e-07 59960624.5014 +UniRef50_Q5HF24 D alanine aminotransferase 8.44236124403e-05 2.86103050974e-05 -22532517080.6 +UniRef50_Q60EN0 1.15674971054e-06 1.04493108336e-06 -45142551.9614 +UniRef50_B7IV23 6.21217520534e-08 1.00489334155e-05 4031798420.5 +UniRef50_A8LT36 Na+ Ca+ antiporter 0.000136008812393 2.49235155476e-05 -44846497506.2 +UniRef50_G8VDH4 5.76398861147e-06 1.54140029708e-05 3895829215.85 +UniRef50_H0TRF6 PilL 3.47974430411e-06 2.75843568457e-06 -291201141.16 +UniRef50_UPI0004688D7A 6,7 dimethyl 8 ribityllumazine synthase 8.38279489684e-08 2.24014478874e-07 56595022.4052 +UniRef50_K0HEK8 Mur ligase middle domain protein 1.04760218922e-06 7.43516900166e-05 29593759798.2 +UniRef50_UPI0003B5D77D LytR family transcriptional regulator 2.78434186685e-08 9.48822210509e-08 27064387.1804 +UniRef50_M1PJW1 2.04128260595e-07 5.45682062205e-07 137889461.046 +UniRef50_A3CRC4 2.68457837421e-05 1.44712211327e-05 -4995762778.37 +UniRef50_P46907 Nitrite extrusion protein 0.000204197570958 6.58528582653e-05 -55851458194.7 +UniRef50_A3PPT8 2.56033345927e-05 4.75040276462e-06 -8418584473.25 +UniRef50_D6BB72 Predicted protein 3.31944188292e-07 1.26190553488e-07 -83065267.2514 +UniRef50_D3QG17 Transporter, LysE family 0.000107169494469 4.01468224698e-05 -27057875146.8 +UniRef50_A1SET2 Cyclic pyranopterin monophosphate synthase accessory protein 1.30015025285e-07 1.29226791343e-05 5164555484.45 +UniRef50_UPI0003726D73 hypothetical protein, partial 2.98010759476e-07 2.54999048371e-06 909151849.57 +UniRef50_W1YK15 2.86447542028e-06 2.22214344351e-06 -259317301.322 +UniRef50_Q89LQ8 Bifunctional enzyme IspD IspF 5.79381626422e-08 1.63471349413e-07 42605042.5373 +UniRef50_H1LUK9 1.89960006839e-07 8.30010932925e-07 258396413.169 +UniRef50_U8YLF7 9.93384181239e-07 2.53853901306e-06 623797966.788 +UniRef50_A0A052HNM0 Cyclic diguanylate phosphodiesterase domain protein 4.49485977494e-08 1.53831381489e-07 43957315.9378 +UniRef50_A3CQQ7 Tributyrin esterase, putative 6.95700850786e-05 2.87730565469e-05 -16470261054.1 +UniRef50_A7H9V5 NADH quinone oxidoreductase subunit D 2 6.49769982799e-08 3.18208571483e-07 102232693.603 +UniRef50_A8YY53 1.23093257234e-05 1.99089913615e-05 3068078276.49 +UniRef50_Q5LY94 Phospho N acetylmuramoyl pentapeptide transferase 6.58539112122e-05 6.28192333242e-05 -1225136703.07 +UniRef50_C6M7I4 3.76632582194e-07 2.79509181195e-06 976361668.886 +UniRef50_B1ZVE5 Cobyrinic acid ac diamide synthase 4.92042119402e-08 2.4839201009e-07 80414558.4223 +UniRef50_S5RYV7 Lysine decarboxylase family protein 5.17667681318e-05 6.72122762856e-06 -18185437472.1 +UniRef50_A0A019IPH8 1.57556058517e-06 3.16243514281e-07 -508401755.077 +UniRef50_P0AGJ0 Trk system potassium uptake protein TrkA 4.36470407595e-05 2.20964393439e-05 -8700242247.1 +UniRef50_Q59447 Cysteine synthase 1.63102432579e-07 2.24181906967e-07 24658533.3399 +UniRef50_Q9RZE8 Chromosome partitioning ATPase, putative, ParA family 1.83550725104e-06 0.000631718198955 2.54291372171e+11 +UniRef50_UPI00046E5735 phenylacetic acid degradation protein 1.01040722428e-07 4.69050012552e-07 148569866.405 +UniRef50_B9KR74 Binding protein dependent transport systems inner membrane component 0.000101589268194 1.08500670753e-05 -36632528986.8 +UniRef50_E8U679 S layer like protein array related protein 2.56399618386e-06 0.000271237282419 1.08466702645e+11 +UniRef50_N9JGK4 1.75032143208e-06 4.59592341857e-05 17847680583.0 +UniRef50_Q79VD7 Cytochrome c oxidase subunit 1 2.01335970844e-06 6.04431520099e-05 23588824166.3 +UniRef50_A4W453 30S ribosomal protein S2 0.000208711833263 0.000457315773859 1.00364461532e+11 +UniRef50_T7IR01 Diguanylate cyclase 5.40761787582e-06 1.63459430921e-06 -1523215914.05 +UniRef50_K9H0D1 5.72618184856e-07 3.44942989945e-07 -91915270.0744 +UniRef50_Q3IVU8 FMN dependent NADH azoreductase 4.62622823168e-05 3.72681389023e-05 -3631046066.98 +UniRef50_R9YLC4 Cell cycle family protein 0.000146185308701 5.67240163273e-05 -36116621544.8 +UniRef50_Q67R59 Formamidopyrimidine DNA glycosylase 5.52342057787e-08 3.22323778763e-07 107827338.171 +UniRef50_UPI000469D26A hypothetical protein 3.84367548011e-07 3.13832357276e-07 -28475922.0638 +UniRef50_E2BEN1 Methionine R sulfoxide reductase B1 6.47941052889e-06 1.80785534303e-05 4682716326.78 +UniRef50_F8IF10 ABC transporter related protein 3.56839351666e-06 1.38427246682e-05 4147873566.08 +UniRef50_A3M7V6 4.71857486069e-06 2.59803020231e-05 8583620166.19 +UniRef50_UPI00036F34F3 hypothetical protein 7.836665491e-08 2.50648425099e-07 69552264.7604 +UniRef50_Q5HM36 Galactose 6 phosphate isomerase subunit LacB 0.000247932609432 0.000157614703978 -36462446757.1 +UniRef50_UPI00046CF7C8 MerR family transcriptional regulator 1.69279179165e-06 1.29503758411e-06 -160578254.577 +UniRef50_UPI000364CB09 hypothetical protein 7.03467172573e-08 8.93141637218e-07 332172406.017 +UniRef50_A5UMW1 Predicted permease 1.87226760336e-05 6.17283716122e-06 -5066523956.63 +UniRef50_R0FCU4 5.89458445553e-07 2.2192447719e-07 -148377973.177 +UniRef50_UPI0003B46CBA O acetylhomoserine aminocarboxypropyltransferase 7.07090521665e-08 8.61485267607e-08 6233105.35734 +UniRef50_Q9XAD5 Probable cysteine desulfurase 2.80774702454e-06 4.94948241885e-05 18848145966.0 +UniRef50_X1HX76 Marine sediment metagenome DNA, contig 3.16251402973e-07 1.2039937306e-06 358392471.486 +UniRef50_R4K347 Nitroreductase 2.27401198102e-06 1.9797767946e-05 7074555323.74 +UniRef50_F7ZKI4 HTH type transcriptional regulator, AsnC family 3.13650680224e-05 2.58924448495e-05 -2209365131.54 +UniRef50_A3PJ29 Cytochrome c, class I 4.17257228081e-05 1.00107357693e-05 -12803729454.2 +UniRef50_G8VLH6 Alanine racemase 3.4955373473e-06 4.11358049931e-05 15195837946.6 +UniRef50_D1BS48 5.41576337914e-05 1.46565006584e-05 -15947092179.2 +UniRef50_Q6A850 Exodeoxyribonuclease V beta chain 7.69017002632e-07 5.81037195267e-05 23146722984.9 +UniRef50_U3SQQ0 5.35827419971e-05 4.43542775419e-05 -3725644346.56 +UniRef50_U3T1Y1 Potassium uptake protein, TrkA 4.55343521063e-06 4.93759136368e-05 18095384574.3 +UniRef50_D9VIN2 Predicted protein 8.95251850385e-07 4.71525839398e-06 1542183518.4 +UniRef50_UPI000471886D hypothetical protein, partial 1.0711464251e-06 6.73241349084e-07 -160639162.032 +UniRef50_UPI0003A01DE6 hypothetical protein 1.6687224631e-08 1.0910690162e-07 37310957.7174 +UniRef50_Q2KXD7 Amino acid ABC transporter, permease protein 2.56161189526e-05 6.17925572098e-06 -7846900203.73 +UniRef50_P52111 Glycerol 3 phosphate dehydrogenase 2.99525590178e-05 8.9559080152e-06 -8476605667.63 +UniRef50_E4PYB8 Replication initiator protein 5.68566005222e-05 1.0630391973e-05 -18662087650.7 +UniRef50_A6QDH4 0.000119989573726 2.29230545785e-05 -39186944920.0 +UniRef50_Q2FI15 Bifunctional protein FolD 7.40703527429e-05 2.60274596056e-05 -19395505512.1 +UniRef50_UPI00036940F2 hypothetical protein 4.71602820202e-07 8.62688985525e-07 157886284.108 +UniRef50_UPI00036C7AFF hypothetical protein 4.2577385597e-07 4.99869264025e-07 29913225.4847 +UniRef50_Q46845 Disulfide bond oxidoreductase YghU 0.000191800255289 0.000125848220903 -26625645604.1 +UniRef50_N6S0H8 1.32643215834e-05 3.36268019972e-07 -5219213868.6 +UniRef50_Q6VY64 3.15353240142e-07 5.55562043299e-06 2115560171.06 +UniRef50_A9VQ13 1.85296589664e-07 1.03278535997e-05 4094674728.11 +UniRef50_S0ACB3 1.30048623275e-07 2.60433467356e-07 52637961.5575 +UniRef50_Q9HLK8 Inosine 5 monophosphate dehydrogenase 2.59118798677e-07 8.85537522237e-07 252892925.723 +UniRef50_B1IL95 7 cyano 7 deazaguanine synthase 4.58189510827e-07 5.79743238331e-07 49072731.4253 +UniRef50_Q92G97 NADH quinone oxidoreductase subunit L 1.45706621807e-06 4.51624093879e-07 -405909323.698 +UniRef50_R7PVP7 2.87350232707e-05 8.27767666796e-06 -8258881863.38 +UniRef50_Q9RU90 9.09232413571e-06 0.00026684507891 1.04057950084e+11 +UniRef50_A8AL09 CDP diacylglycerol pyrophosphatase 6.85496438769e-07 1.8840172144e-05 7329265365.11 +UniRef50_A2S4H0 ATPase, AAA family protein 0.000136571642592 5.66294823183e-05 -32273631103.1 +UniRef50_W7A2A5 1.56660464008e-09 3.52580982773e-09 790955.176406 +UniRef50_Q1GXG2 PKHD type hydroxylase Mfla_0096 3.50842910247e-07 9.06576302249e-07 224356389.967 +UniRef50_A3PJJ8 7.2995460202e-05 1.96553083877e-05 -21534073844.7 +UniRef50_A3PJJ6 8.62191380061e-05 3.82951615904e-05 -19347497372.3 +UniRef50_C0QB47 1.21309885662e-06 2.21058476842e-05 8434659084.56 +UniRef50_X1R832 Marine sediment metagenome DNA, contig 3.72365067342e-07 3.92337003736e-06 1433584282.13 +UniRef50_D4HA15 2.33437270013e-07 4.4816627305e-06 1715060749.99 +UniRef50_UPI0003B367DD 50S ribosomal protein L22 2.04786861344e-07 1.24412287918e-06 419592704.489 +UniRef50_Q8D350 Protoheme IX farnesyltransferase 7.8445348395e-08 1.42415023161e-07 25825342.6992 +UniRef50_O31705 Molybdopterin synthase catalytic subunit 0.000567752400801 7.69401641463e-05 -1.98146922881e+11 +UniRef50_P43791 Dihydrofolate reductase 3.78046585291e-07 4.17893251127e-06 1534464290.43 +UniRef50_UPI00035F8340 hypothetical protein 2.30528203608e-07 1.67424923067e-07 -25475568.7187 +UniRef50_K2IW44 1.65288268519e-07 1.74176167892e-07 3588154.04367 +UniRef50_UPI0002A47C2E PREDICTED 4.41508683112e-08 3.30064649179e-08 -4499132.40708 +UniRef50_X2MSF3 2.68782643797e-08 3.04658379977e-08 1448347.49407 +UniRef50_Q2T517 Phenylacetaldehyde dehydrogenase 3.18951762935e-06 2.76342063474e-06 -172020585.522 +UniRef50_Q7NS59 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.59644430458e-07 6.17301935544e-07 -57465411.9356 +UniRef50_UPI0003B67F64 RNA polymerase sigma factor RpoD 2.55814517692e-08 2.26710190122e-07 81198139.8003 +UniRef50_G8V7H8 CobN magnesium chelatase domain protein 1.25773797886e-06 5.39675659168e-05 21279604360.9 +UniRef50_F5M3T2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 9.60271375145e-06 4.63848228053e-06 -2004121162.78 +UniRef50_UPI000473818F hypothetical protein, partial 1.66340535664e-07 2.20474925125e-07 21854717.3291 +UniRef50_N6UY44 1.9466920759e-07 2.29233416149e-06 846853083.133 +UniRef50_Q1GMP5 Inner membrane translocator 2.06528930816e-05 4.51896256958e-06 -6513465733.29 +UniRef50_UPI00030D61DF hypothetical protein 1.12801970909e-06 4.78741501312e-07 -262121580.02 +UniRef50_W8F058 1.92934716169e-07 1.07141626013e-06 354653779.478 +UniRef50_M4TQ85 Short chain dehydrogenase reductase SDR 1.85387037836e-07 6.84509222705e-08 -47208544.8211 +UniRef50_UPI00047EB00A hypothetical protein 1.21025878465e-07 2.18789553338e-07 39468395.2414 +UniRef50_B1J8H6 Asparagine synthetase 1.17555102026e-05 2.56059759217e-06 -3712099055.1 +UniRef50_UPI0004670623 hypothetical protein 3.57010644258e-06 3.14375080253e-06 -172125003.86 +UniRef50_UPI0002000789 two component system sensor kinase 7.88387312701e-07 3.04710185272e-06 911870777.35 +UniRef50_UPI00039C791B chemotaxis protein CheY 4.87770420764e-06 2.93092830129e-07 -1850863872.61 +UniRef50_X7A487 5.86677508954e-07 2.30160823006e-07 -143930161.069 +UniRef50_Q8CUD3 Resolvase 0.000174385965128 8.12812184754e-05 -37587528747.4 +UniRef50_UPI0003B32E66 hypothetical protein 1.76135786529e-06 7.51941222431e-07 -407513885.658 +UniRef50_C6XLP5 Acyl CoA dehydrogenase domain protein 6.06076329005e-05 1.46257231811e-05 -18563461215.2 +UniRef50_T0TWG5 ABC type multidrug transport system, ATPase component 4.4184479745e-05 7.11266788563e-06 -14966345369.9 +UniRef50_B7IKZ0 Cyclic pyranopterin monophosphate synthase accessory protein 2.94452114306e-05 8.21902560694e-05 21293821775.2 +UniRef50_G7M6W8 NADH dehydrogenase 3.39552003766e-06 1.81361333789e-06 -638635146.875 +UniRef50_Q3J123 Diguanylate cyclase phosphodiesterase 2.19243249559e-05 3.97516895486e-06 -7246294538.52 +UniRef50_P59676 Penicillin binding protein 2X 5.57115077748e-05 6.87194309935e-05 5251458228.56 +UniRef50_UPI0003612BE4 hypothetical protein 1.14043592796e-07 7.6767014122e-07 263877058.498 +UniRef50_A2RLU2 Geranyltranstransferase 5.72979672843e-05 3.02023425449e-05 -10938836208.0 +UniRef50_H3UJR5 3.27598783512e-05 4.42975057792e-06 -11437220231.8 +UniRef50_UPI00046D07E2 hypothetical protein, partial 3.79664459361e-08 1.25320155518e-07 35265764.5088 +UniRef50_S4XRJ9 1.25744957268e-05 5.04640439755e-07 -4872748693.14 +UniRef50_W5X633 GTPase EngC 3.8393901595e-08 5.3844228356e-06 2158257483.81 +UniRef50_UPI0003C15F36 2.13551905378e-07 3.58392957106e-07 58474109.9822 +UniRef50_Q9RUE8 Probable ABC transporter binding protein DR_1438 5.19074501278e-06 0.000211253326432 83189992791.1 +UniRef50_Q9RV70 Uricase 7.10959162569e-06 0.000292427667278 1.15186408387e+11 +UniRef50_UPI00036D8F07 hypothetical protein 2.49714569773e-07 1.66429795547e-07 -33623085.3741 +UniRef50_K2R7H4 5.35615880497e-06 1.60024816883e-06 -1516307214.02 +UniRef50_G7U7S7 ABC transporter associated permease 1.06310739375e-06 6.11372516394e-05 24252669224.6 +UniRef50_UPI00037B01D8 hypothetical protein 6.8888656086e-07 6.71356100928e-07 -7077261.79748 +UniRef50_A9D7U2 BRO, N terminal 5.07657136341e-07 1.3921585499e-07 -148744266.564 +UniRef50_N0AWG4 Replicative DNA helicase 0.000131838411428 0.000147155176962 6183566203.93 +UniRef50_T0TKM9 Transcriptional regulator, MerR family 4.79855070575e-06 5.18099482802e-06 154397385.278 +UniRef50_Q2RI90 3 dehydroquinate dehydratase 5.58051319485e-07 6.1355413231e-07 22407166.6336 +UniRef50_P22036 Magnesium transporting ATPase, P type 1 2.56386956667e-06 8.13539986862e-06 2249295153.26 +UniRef50_B9KQJ5 4.43912111338e-06 5.45315331482e-07 -1571977176.52 +UniRef50_A0A037YUC7 Peptidase, M56 family 1.77070173894e-07 1.43503453809e-07 -13551296.8083 +UniRef50_T0CJ91 3.50247298737e-07 2.21881846155e-07 -51822708.4286 +UniRef50_Q9PET0 Transcriptional repressor NrdR 4.8064282064e-05 0.000113339592108 26352443682.9 +UniRef50_C6W7J8 Arsenate reductase and related 6.11652263354e-07 6.08704799125e-07 -1189927.4787 +UniRef50_UPI00046A7F54 NADPH dehydrogenase 5.23444363445e-08 8.22019845388e-08 12053858.5994 +UniRef50_UPI0003B5EE1D peroxiredoxin 1.13608256701e-07 3.606950233e-06 1410305023.96 +UniRef50_F7EFJ4 6.75821266239e-07 4.99167468386e-07 -71317305.9791 +UniRef50_X1MX97 Marine sediment metagenome DNA, contig 5.2763259163e-08 1.27835176637e-06 494785120.023 +UniRef50_A2RLY6 Leucine tRNA ligase 0.000154113087639 7.22407534885e-05 -33052865983.1 +UniRef50_UPI0002659767 PREDICTED 4.74899233435e-08 4.76101250009e-08 48526.8841326 +UniRef50_A7I8N1 Adenine deaminase 1.9816092577e-07 7.54042188278e-08 -49558388.9867 +UniRef50_A3PL70 Diacylglycerol kinase, catalytic region 1.82687428467e-05 3.34952784714e-06 -6023070174.69 +UniRef50_U1GSZ3 MFS transporter, FSR family, fosmidomycin resistance protein 2.856225069e-06 3.24355765774e-07 -1022146707.24 +UniRef50_UPI00047C8DD6 PTS lactose transporter subunit IIA 4.284371226e-07 3.4128513262e-07 -35184327.8301 +UniRef50_Q5LWX7 Flagellar L ring protein 2.6247425881e-05 1.4294483974e-05 -4825549326.95 +UniRef50_A6LZC0 Membrane protein CF 9 family 2.2248683036e-06 1.39794890034e-05 4745484621.93 +UniRef50_P39180 Antigen 43 3.65359213055e-05 1.11057765597e-05 -10266461496.8 +UniRef50_UPI000381BCDA hypothetical protein, partial 1.23564108599e-07 6.77524033006e-07 223640419.336 +UniRef50_Q02PS5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 7.82765838147e-06 2.03666693245e-06 -2337894311.43 +UniRef50_M7XG55 7.23804420098e-08 3.35000552769e-06 1323217468.07 +UniRef50_F2DFJ9 Predicted protein 5.64309976291e-07 2.49769641664e-06 780531831.289 +UniRef50_UPI0003752867 hypothetical protein 4.61472560378e-08 3.39765627527e-07 118537339.673 +UniRef50_Q820S3 Holliday junction ATP dependent DNA helicase RuvA 1.37459334894e-07 6.2161335455e-07 195458918.973 +UniRef50_Q98F08 D amino acid dehydrogenase 1 small subunit 3.44058321955e-07 2.56677390764e-07 -35276754.2064 +UniRef50_P96335 Glycerol 3 phosphate transporter 1.97600746418e-05 7.05230043653e-06 -5130284388.61 +UniRef50_Q7VQI2 Protein translocase subunit SecA 2.20624996852e-05 1.78746393825e-05 -1690690595.02 +UniRef50_Q1QN09 Adenylate kinase 9.87731854205e-08 4.6094082131e-07 146211518.905 +UniRef50_UPI000395C8AE PREDICTED 6.44276855008e-08 6.88986456666e-08 1804981.48378 +UniRef50_D5QFV4 9.6651545578e-08 2.61067076906e-07 66376567.6026 +UniRef50_B7UNN8 CDP diacylglycerol pyrophosphatase 2.37418770353e-05 8.36016358381e-06 -6209786475.22 +UniRef50_UPI000329B634 4.72653238836e-07 3.63113313674e-07 -44222611.9939 +UniRef50_P08201 Nitrite reductase large subunit 3.76779281453e-05 1.46586437392e-05 -9293167593.13 +UniRef50_L6RYU4 Outer membrane phosphoporin protein E 3.70948508026e-06 2.4781821415e-06 -497092106.164 +UniRef50_UPI000050FC02 helicase superfamily protein 1.79573789545e-08 3.43201924323e-07 131305214.164 +UniRef50_UPI00047D3DBB hypothetical protein 2.00042667416e-07 2.03264399351e-07 1300652.71726 +UniRef50_Q10X06 D alanine D alanine ligase 6.44542734621e-08 1.88089016877e-07 49912863.0855 +UniRef50_UPI00047094A0 hypothetical protein 3.91101966603e-08 2.55763643963e-07 87465655.313 +UniRef50_UPI00046A8EC3 hypothetical protein 5.01178870681e-08 1.44987632349e-08 -14379877.3873 +UniRef50_UPI00047C9A63 hypothetical protein 1.92270572265e-07 1.16161393702e-07 -30726209.3505 +UniRef50_UPI00046B1B81 PREDICTED 2.13101921846e-07 2.14184895652e-07 437209.815065 +UniRef50_V7Z9W4 Secreted protein 6.25196849724e-06 3.7941891655e-06 -992235676.567 +UniRef50_A0A058T0F9 FKBP type peptidyl prolyl cis trans isomerase 3.01523366419e-05 4.77601140485e-06 -10244733900.7 +UniRef50_R6PR03 Glycosyl transferase family 2 2.60783941645e-06 1.54124181574e-05 5169365567.55 +UniRef50_Q8FK51 Carbamate kinase 2.22459303967e-05 9.13350808562e-06 -5293645794.51 +UniRef50_O04983 Biotin carboxylase, chloroplastic 1.5864761654e-06 0.000529660603013 2.13190005207e+11 +UniRef50_Q88JX6 Porin like protein GalP 1.9490464012e-06 2.9531691028e-06 405376656.607 +UniRef50_UPI0003815BE1 hypothetical protein 4.66889945054e-06 2.68633823042e-07 -1776441231.15 +UniRef50_UPI0002D2EA81 hypothetical protein 2.93005912793e-07 5.21409717718e-07 92209418.8781 +UniRef50_A6M2X4 Transcriptional regulator, RpiR family 2.69632849186e-06 1.67987068868e-05 5693303213.66 +UniRef50_Q67L49 5.53188095617e-09 9.68026997234e-09 1674755.55229 +UniRef50_D1WL88 Oligopeptide ABC transporter, permease protein 2.38572622068e-06 1.10209120915e-05 3486130501.7 +UniRef50_T2E4B1 Glycosyl transferases group 1 family protein 1.47840465605e-06 7.23998550887e-06 2326020892.83 +UniRef50_E0XT86 1.90863702229e-05 9.95449568075e-06 -3686649813.37 +UniRef50_D7G5T9 ABC transporter ATP binding protein 0.000109174821928 0.000128379344312 7753101352.41 +UniRef50_B0A2M2 Oxidoreductase domain protein 1.34451085533e-06 1.09525992224e-06 -100625660.341 +UniRef50_P37877 Acetate kinase 0.000133378835645 1.20129945131e-05 -48996879391.3 +UniRef50_UPI0002BC838E PREDICTED 1.2941670754e-08 8.54587791577e-08 29276046.5476 +UniRef50_UPI0003763223 hypothetical protein 4.63439499441e-08 2.96854956165e-08 -6725222.43427 +UniRef50_Q9RYX7 Xanthine permease, putative 8.3085690866e-07 0.00039338919292 1.5848061748e+11 +UniRef50_D3QHC5 Alkaline phosphatase like protein 0.000239592675888 1.32680500451e-05 -91370028768.3 +UniRef50_B6IRJ0 ATP dependent RNA helicase, DEAD 1.27485420303e-05 3.92353180564e-06 -3562764922.75 +UniRef50_Q5HP60 2.48474015665e-05 3.31687761268e-05 3359441024.74 +UniRef50_A8AZI4 Penicillin binding protein 1B 7.46008293883e-05 6.8815914166e-05 -2335441264.14 +UniRef50_C4NUT7 5.19476131447e-06 7.98153257284e-06 1125053754.53 +UniRef50_UPI000262D06B coproporphyrinogen III oxidase 2.63725154465e-07 4.77772060321e-07 86413362.545 +UniRef50_E7AAE2 Peptidase M16 domain protein 4.07358389015e-06 2.97159564592e-05 10352140473.4 +UniRef50_A9N1I0 Peptidase E 3.54582089788e-05 2.73625735023e-05 -3268307386.48 +UniRef50_Q8Z2X7 Autoinducer 2 import system permease protein LsrD 7.61012669518e-05 1.89322791132e-05 -23079821932.8 +UniRef50_H2I4X5 1.18581986021e-06 6.31788757631e-05 25027357408.3 +UniRef50_P33915 Inner membrane ABC transporter permease protein YejE 4.11321046148e-05 5.27272014461e-06 -14476873554.8 +UniRef50_A4B9S6 7.70291417942e-07 1.49568411552e-07 -250593494.807 +UniRef50_D1K952 SusD family protein 3.67287478014e-07 4.78157696352e-05 19155534505.2 +UniRef50_A5UJ63 2.56187323572e-05 5.22684433979e-06 -8232455429.23 +UniRef50_Q88NC9 Poly C5 epimerase 5.00397829064e-06 4.58437682607e-06 -169398260.336 +UniRef50_W7VQI0 Integral membrane protein 4.24154947547e-06 1.82920243923e-07 -1638518425.76 +UniRef50_A0A022KYK2 2.89575504688e-06 1.52223125476e-06 -554508409.911 +UniRef50_I3UWF3 Rieske domain containing protein 1.05382378151e-05 1.97536257659e-06 -3456937812.08 +UniRef50_UPI00016A8727 1 phosphofructokinase, partial 2.86859380197e-07 2.53534649997e-06 907741842.291 +UniRef50_A6LYB5 Nitroreductase 4.90241543964e-06 1.06923010145e-05 2337447856.46 +UniRef50_R7PU75 3.9047475406e-05 4.40771201791e-06 -13984497557.5 +UniRef50_P0ADY2 Peptidyl prolyl cis trans isomerase D 2.77178881197e-05 3.30897506821e-06 -9854177729.94 +UniRef50_A4WJG1 Acetyl coenzyme A synthetase 3.38961512438e-08 3.72699726623e-07 136779160.968 +UniRef50_W1V655 9.91621466588e-07 1.58773468762e-06 240658222.462 +UniRef50_UPI000381A848 hypothetical protein 4.04238889418e-07 4.88743068359e-07 34115374.0214 +UniRef50_P26423 Galactose 6 phosphate isomerase subunit LacA 0.000498237447466 0.000228357010629 -1.08954044156e+11 +UniRef50_T0TEW3 Cysteine and methionine metabolism regulator CmbR, LysR family 4.51181539371e-05 3.82332976104e-05 -2779500985.78 +UniRef50_W1N460 3.26362068442e-07 8.35382072833e-08 -98030972.5337 +UniRef50_P59191 UPF0225 protein CE1570 3.28277052032e-07 1.74992688223e-07 -61882778.6804 +UniRef50_V5T139 5.03314651798e-06 1.65985970133e-05 4669114288.99 +UniRef50_M5AMX6 Probable transposase 4.11020114208e-06 1.76306235783e-06 -947568729.834 +UniRef50_UPI0004195476 hypothetical protein 2.25318977592e-07 5.1010000599e-07 114969595.82 +UniRef50_Q02R79 Spermidine putrescine import ATP binding protein PotA 1.52391906106e-06 2.0840375901e-06 226126723.601 +UniRef50_Q2NE41 5.3071582999e-05 4.11113742723e-06 -19765932689.6 +UniRef50_S1HD40 Inner membrane protein ybhI 7.48583941995e-06 2.29520755339e-06 -2095521780.75 +UniRef50_P80644 FMN reductase 1.29115027145e-05 1.31013204252e-05 76631739.1348 +UniRef50_A3CL81 Glutamate 1 semialdehyde 2,1 aminomutase 8.60783199511e-08 2.73547069379e-07 75683434.6443 +UniRef50_E8W9I4 2.73447387532e-07 4.44022316567e-06 1682178513.72 +UniRef50_I7EMH2 5.17561799258e-06 1.23643765954e-06 -1590295439.63 +UniRef50_UPI00047106B1 hypothetical protein 8.44426343559e-08 1.31525726656e-07 19008022.1361 +UniRef50_Q3IGA3 UPF0176 protein PSHAa1433 1.1924358975e-05 2.01933161601e-06 -3998781093.18 +UniRef50_Q8K911 PTS system mannitol specific EIICBA component 7.57869104054e-06 2.58264493123e-06 -2016965122.71 +UniRef50_I4MXJ0 Plasmid pRiA4b ORF 3 family protein 1.0439103014e-06 3.92908144393e-07 -262817559.479 +UniRef50_Q8CRY9 0.000108501689485 2.26937683915e-05 -34641710727.0 +UniRef50_Q8CRY8 7.5190307128e-05 2.10472769869e-05 -21858205677.7 +UniRef50_UPI0003F066F6 PREDICTED 5.538690743e-08 1.26244818464e-07 28606208.2088 +UniRef50_Q9RWT8 Sensor histidine kinase 1.58205002264e-06 4.71957132774e-05 18414795598.6 +UniRef50_G4L3R1 Phosphoglycerate mutase family protein 6.54493821589e-07 1.93597715673e-05 7551550165.51 +UniRef50_Q2FHD9 Glycerol kinase 0.000108561037072 0.000123184076074 5903500289.97 +UniRef50_UPI00035FD70A DNA invertase 4.66917667082e-07 1.40611694328e-06 379166273.072 +UniRef50_Q2W731 Phosphoribosylformylglycinamidine synthase 4.2977210833e-07 2.92159759517e-07 -55555793.9092 +UniRef50_D4E309 Mannitol dehydrogenase domain protein 3.67072745853e-06 5.17351277587e-06 606692873.86 +UniRef50_UPI0003680DBD hypothetical protein 3.53560793626e-08 5.1687833555e-08 6593329.58063 +UniRef50_P9WPZ0 Probable GTPase MT1543 2.16945970609e-06 6.63731516817e-05 25919818318.4 +UniRef50_Q5GWB1 1.94600982206e-07 1.59421917552e-07 -14202220.0965 +UniRef50_N2I8V8 Autotransporter family porin 7.02688304845e-06 4.49023210072e-06 -1024077115.81 +UniRef50_UPI00047753FE hypothetical protein 1.68701958522e-06 1.5140111578e-07 -619948020.271 +UniRef50_UPI00031A53C3 hypothetical protein 1.77897105913e-07 3.15820832976e-07 55681501.1298 +UniRef50_X1K4A9 Marine sediment metagenome DNA, contig 2.18594173228e-07 1.81161233202e-07 -15112137.2423 +UniRef50_C6SHK2 Nitric oxide reductase 2.06483443246e-06 3.27339350539e-05 12381492273.0 +UniRef50_UPI0002034B4E PREDICTED 9.73845241725e-07 2.02697841871e-07 -311321668.364 +UniRef50_A3PQI0 RepB plasmid partition 0.000118137689406 4.24355933225e-05 -30561865158.1 +UniRef50_UPI000237E2DC hypothetical protein 8.77349447644e-06 4.73770115279e-06 -1629299289.51 +UniRef50_UPI00047CCD58 hypothetical protein 1.07302080373e-07 3.40078520655e-07 93974705.43 +UniRef50_W1QBV5 Monomeric glyoxalase I 1.50751672956e-07 6.54343101453e-08 -34443666.3285 +UniRef50_E4FFC4 3.53893114548e-06 3.84694147968e-05 14101864895.3 +UniRef50_G5Q502 Cytochrome c heme lyase subunit CcmF 1.02020655181e-05 1.51703786922e-06 -3506252239.13 +UniRef50_T1YBR1 3.60065064295e-05 1.35259559632e-05 -9075674090.62 +UniRef50_A0A011QP89 Elongation factor Tu 7.71693450054e-07 2.96251882444e-06 884463088.092 +UniRef50_P0AAA2 Inner membrane protein YagU 3.02707033321e-05 3.09772767695e-06 -10970063721.9 +UniRef50_UPI00047958EB ABC transporter permease 1.47852790497e-06 2.52075712334e-06 420760725.047 +UniRef50_A0A024HBA2 Lost Adherence Sensor, LadS 9.09213297725e-07 3.52393147119e-06 1055593812.83 +UniRef50_A8LQH3 1.10107054658e-05 2.0319956779e-06 -3624815322.53 +UniRef50_A1BI09 UvrABC system protein B 0.000214788887947 8.58170857198e-05 -52067499221.0 +UniRef50_P54123 Ribonuclease J 1.65807903765e-07 5.75024653662e-07 165205823.588 +UniRef50_UPI000367649B hypothetical protein 2.18097723134e-08 1.10611808734e-07 35850471.8265 +UniRef50_U5PBM4 Branched chain amino acid ABC transporter substrate binding protein 8.46381140973e-07 2.19620012472e-05 8524634954.67 +UniRef50_UPI000225B945 hypothetical protein 2.91149302768e-07 2.69976869552e-07 -8547571.10427 +UniRef50_UPI0004669786 hypothetical protein, partial 8.52282534018e-08 2.7739430049e-07 77579791.352 +UniRef50_Q6Z2L5-2 Isoform 2 of Ribose phosphate pyrophosphokinase 1, chloroplastic 7.07816871145e-07 6.13657494693e-07 -38013295.7392 +UniRef50_A6EE81 1.31295155998e-07 4.23055625112e-06 1654922007.69 +UniRef50_M5EZ09 Heme molybdoenzyme heme containing subunit YedZ cytochrome b subunit 4.60070236658e-07 2.45040695048e-07 -86810064.6572 +UniRef50_D7GDA9 1.05837193136e-05 2.72909929485e-05 6744931387.71 +UniRef50_A8HTC4 Predicted protein 7.45268036362e-08 1.24034643956e-06 470655693.237 +UniRef50_X1VC56 Marine sediment metagenome DNA, contig 7.04797168241e-07 3.32694315043e-06 1058592510.36 +UniRef50_G9MKE1 3.54958581964e-08 4.44017584637e-06 1778223362.73 +UniRef50_R8AJR3 Oligopeptide ABC transporter permease 9.00274045531e-07 6.12095819545e-06 2107654256.32 +UniRef50_O67108 DNA gyrase subunit A 7.42983207289e-08 1.84395454698e-07 44447564.027 +UniRef50_B3QUX5 NADH quinone oxidoreductase subunit A 1 1.65893040596e-07 2.52650143748e-06 953006577.743 +UniRef50_U5RYU5 Major facilitator superfamily MFS_1 3.13499563827e-06 7.20041777059e-06 1641260803.16 +UniRef50_UPI0003596786 PREDICTED 4.30710519737e-08 4.53916626771e-08 936859.018058 +UniRef50_UPI0003B73CB0 biotin biosynthesis protein BioY 4.21523358904e-07 5.66118906267e-07 58374996.8573 +UniRef50_UPI000382DFA2 hypothetical protein 1.18304158092e-07 2.41709431361e-07 49820223.1717 +UniRef50_W8WVR8 Dihydrolipoyl dehydrogenase 2.15001922882e-06 6.34329070424e-05 24740653836.0 +UniRef50_Q7WKH5 3 isopropylmalate dehydratase small subunit 1 4.76861763725e-07 4.16015382615e-07 -24564430.7232 +UniRef50_UPI0003ADD90A PREDICTED 2.4549713244e-07 9.28279938916e-07 275647797.662 +UniRef50_M1FC64 2.23283112608e-07 3.47780168645e-07 50260989.2728 +UniRef50_T1ZZG8 2.73297604286e-05 5.25724409421e-05 10190779885.8 +UniRef50_P76210 8.2664870976e-06 2.42822239569e-05 6465749505.29 +UniRef50_Q46890 Putative aldolase class 2 protein YgbL 1.01858748945e-05 8.77113212431e-06 -571149017.172 +UniRef50_UPI00047D4CB0 uridine kinase 9.59407335344e-08 6.42402629178e-06 2554725794.21 +UniRef50_S0UQQ2 Inner membrane protein ypdA 2.48800652706e-05 1.66220595387e-05 -3333858251.09 +UniRef50_B9KWL8 Periplasmic glucan biosynthesis protein, MdoG 7.24710065108e-05 1.85813985776e-05 -21755896022.5 +UniRef50_B5GJB9 PE PGRS family protein 4.03409736082e-08 8.29891558234e-08 17217594.5123 +UniRef50_Q5NMC2 Phenylalanine tRNA ligase alpha subunit 3.73828277342e-05 7.15826718034e-05 13806896730.0 +UniRef50_C6SH38 Transposase, IS30 family 8.644717302e-06 7.42423928974e-05 26482586611.9 +UniRef50_R5QF49 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.5332640187e-07 3.32572784588e-07 72363964.3037 +UniRef50_D8JHI1 Response regulator 7.59020084865e-07 7.32808975718e-05 29277971885.0 +UniRef50_UPI0003C13108 PREDICTED 5.42068679964e-08 2.16308607561e-07 65442461.4744 +UniRef50_B0S039 Aspartate ammonia lyase 5.46140291671e-06 1.41064412856e-05 3490108076.07 +UniRef50_Q47WP5 Ribonuclease 3 5.65929702487e-05 3.72783554033e-05 -7797547030.07 +UniRef50_Q98PQ3 CTP synthase 3.67275115537e-08 1.51763180557e-06 597859236.235 +UniRef50_O34125 ATP dependent Clp protease proteolytic subunit 2 1.21957405125e-05 1.71327410537e-05 1993127702.29 +UniRef50_I5E3H6 Ion channel family protein 2.09424104014e-05 2.89526181564e-06 -7285855347.5 +UniRef50_A0A059LD30 3.19515220329e-07 7.49509596433e-07 173594006.258 +UniRef50_UPI0002DD61A2 hypothetical protein 3.64389602446e-08 1.23074057044e-07 34975651.7101 +UniRef50_X0V5G6 Marine sediment metagenome DNA, contig 1.69158444638e-06 3.49986343903e-07 -541619617.231 +UniRef50_UPI00037AEC76 ABC transporter 9.14180785073e-08 2.64284520455e-07 69788303.9242 +UniRef50_UPI0002F9B62A hypothetical protein 2.30253715161e-07 3.95537654613e-07 66727154.6188 +UniRef50_Q031X8 D alanine D alanine ligase 5.62189505563e-05 3.98994543593e-05 -6588380877.47 +UniRef50_UPI00046FAEC1 UDP N acetylglucosamine 2 epimerase 4.18131322732e-08 5.88664770703e-07 220770717.058 +UniRef50_F9YY53 3.2815356893e-07 7.98542430045e-06 3091334159.59 +UniRef50_X5KE03 4.38726211118e-05 1.10743764448e-05 -13241053851.8 +UniRef50_Q9RVW3 9.26725013589e-07 8.41978950043e-05 33617593177.4 +UniRef50_Q67PJ3 Tryptophan synthase alpha chain 6.09357515874e-08 1.41829253144e-07 32657699.2533 +UniRef50_A7IHD1 Rubredoxin type Fe4 protein 5.14421114687e-05 2.4372767966e-06 -19783853114.1 +UniRef50_UPI0003FC0088 hypothetical protein 1.0208838013e-07 1.67160070583e-07 26270239.9553 +UniRef50_UPI00037EF707 3 methyladenine DNA glycosylase 2.94746298092e-07 3.1962121097e-07 10042307.5784 +UniRef50_Q17VZ5 Threonine tRNA ligase 1.306069476e-06 3.4646921404e-05 13460111061.6 +UniRef50_P56910 NADH quinone oxidoreductase subunit E 2 2.35211553333e-06 2.27710018025e-05 8243354954.79 +UniRef50_D8LMU1 7.87696203726e-08 2.47584371055e-07 68152586.4403 +UniRef50_Q8XZ83 Carbamoyl phosphate synthase large chain 1.59793871997e-05 3.18048288349e-05 6388924988.14 +UniRef50_B5ZA76 Peptidoglycan deacetylase 0.000113633783778 5.73151712243e-05 -22736514995.0 +UniRef50_Q038N5 Chaperone protein DnaJ 0.000245773486118 0.000115942549595 -52414342279.1 +UniRef50_Q82WI7 3 isopropylmalate dehydratase small subunit 5.61743266199e-07 4.54537840995e-07 -43280145.7134 +UniRef50_Q45539 Putative glycosyltransferase CsbB 7.32768119136e-05 2.62679416836e-05 -18978057775.6 +UniRef50_UPI0003774C37 hypothetical protein 8.45561058175e-07 4.06472860344e-07 -177265293.682 +UniRef50_Q6AB05 Porphobilinogen deaminase 2.88164807201e-06 7.55117265086e-05 29321653936.1 +UniRef50_J9P043 9.73707841732e-07 5.19367325046e-07 -183422841.971 +UniRef50_P13086 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 4.37933182634e-07 1.18988420335e-06 303571854.54 +UniRef50_Q4KIU4 Type II and III secretion system protein 8.5659922656e-06 4.39660239094e-06 -1683233856.57 +UniRef50_D6M4Q5 Urease accessory protein UreF 3.83109642488e-06 4.54482719677e-06 288141871.073 +UniRef50_F2DBH7 Predicted protein 4.50656684228e-08 3.23734966531e-07 112502215.303 +UniRef50_U7IPA8 3.31100519292e-06 2.72974097321e-05 9683605858.76 +UniRef50_A6TVQ2 N acetylmuramic acid 6 phosphate etherase 8.58069209637e-08 9.03017730163e-08 1814626.93167 +UniRef50_W5XIQ1 Transcriptional repressor NrdR 1.12577548633e-06 8.81145993673e-07 -98759928.1271 +UniRef50_Q2IMJ3 LigA 1.42520202653e-05 1.2919273032e-05 -538046412.731 +UniRef50_Q7G2Z3 Expressed protein 1.16986554754e-06 1.37708632747e-05 5087177414.1 +UniRef50_F0YT02 1.4602283493e-07 5.44035046458e-06 2137385032.8 +UniRef50_A0A024L372 Protein involved in detoxification of methylglyoxal 5.57212523168e-06 3.35060843375e-06 -896853592.401 +UniRef50_Q9RXL7 Hydrolase, haloacid dehalogenase like family 1.93252212719e-06 0.000431161435292 1.73284979476e+11 +UniRef50_P13082 Streptomycin 3 kinase 3.69329891776e-07 4.95884957347e-06 1852845415.24 +UniRef50_UPI0004541F98 PREDICTED 1.03400886275e-06 2.33759924953e-06 526275435.996 +UniRef50_UPI000255849F TetR family transcriptional regulator 4.35553676563e-07 4.72476592779e-07 14906234.3715 +UniRef50_D6WC74 1.9718324423e-07 8.51056787246e-07 263976773.246 +UniRef50_D2N9Z4 Aminoacyltransferase FemA 0.00024352029829 5.05743938785e-05 -77894629323.6 +UniRef50_B2I0T9 Dehydrogenase with different specificities 4.32235865095e-06 5.57328458329e-05 20755044553.0 +UniRef50_V9VP62 Esterase 6.1453657647e-06 4.00882405239e-06 -862548107.575 +UniRef50_S0FRJ9 TRAP transporter solute receptor, TAXI family 7.61008745718e-08 6.01991981323e-08 -6419701.91414 +UniRef50_B7V7J4 Recombination associated protein RdgC 1.29539899702e-05 3.1983758685e-06 -3938461127.7 +UniRef50_B1JVW3 tRNA specific 2 thiouridylase MnmA 0.000228382639823 0.000104299159791 -50094023564.4 +UniRef50_UPI00035D67F3 hypothetical protein 1.64596378387e-06 6.53536001253e-07 -400655274.301 +UniRef50_UPI000410FFCF protoheme IX farnesyltransferase 6.5653742364e-08 9.56411856331e-08 12106298.835 +UniRef50_A0A023RW25 Membrane protein 1.1889278885e-06 6.06973760323e-05 24024290766.4 +UniRef50_W8ZWW3 7.85320140554e-07 4.63016920132e-07 -130117765.19 +UniRef50_D3E135 Voltage gated chloride channel protein 1.55872629327e-05 2.28941436121e-06 -5368504651.27 +UniRef50_UPI0003F95CA7 50S ribosomal protein L25 1.74159937944e-06 6.01811735834e-07 -460146258.493 +UniRef50_Q8DRV2 Glucan binding protein A, GbpA 8.46564374656e-05 5.97460937094e-05 -10056611458.7 +UniRef50_F6AFI4 Patatin 2.07030706866e-06 1.88299705755e-06 -75619350.0374 +UniRef50_UPI00036B8421 hypothetical protein 4.59398113682e-08 3.4982279326e-08 -4423690.14948 +UniRef50_Q46SI8 1.26532614721e-06 2.35624066642e-07 -415703365.792 +UniRef50_J9YT94 Amidase 4.71899050695e-05 1.34540640185e-06 -18507986687.4 +UniRef50_UPI00037F4511 hypothetical protein, partial 2.29027588482e-06 5.21583898878e-07 -714042659.015 +UniRef50_Q93615 Probable electron transfer flavoprotein subunit alpha, mitochondrial 4.20966516321e-06 8.21986891212e-05 31485126004.8 +UniRef50_UPI00039BDE65 DNA helicase 6.46846464419e-08 3.01804149928e-08 -13929781.6505 +UniRef50_UPI00046638E1 ADP ribose pyrophosphatase 1.98102753443e-07 2.46869147318e-06 916664529.416 +UniRef50_UPI000476B251 hypothetical protein 1.6163827764e-06 3.48786790942e-06 755541513.905 +UniRef50_UPI000464F730 ABC transporter ATP binding protein 6.9530872795e-08 4.88460911673e-07 169127197.545 +UniRef50_F0K963 8.00154173473e-06 5.79987196886e-06 -888841102.008 +UniRef50_UPI00038256A0 hypothetical protein, partial 1.61565977933e-07 4.54421517871e-07 118229375.215 +UniRef50_UPI000470FDE7 hypothetical protein 1.33313071298e-07 3.26730103224e-07 78084829.2824 +UniRef50_Q0C0N0 Bifunctional enzyme IspD IspF 6.35343287073e-08 1.78230974104e-07 46304443.2329 +UniRef50_A6LXC3 1.86874251907e-06 2.18713458916e-05 8075296441.02 +UniRef50_A5UKY3 Probable phosphoglucosamine mutase 3.57757887225e-05 2.37082211603e-05 -4871825110.57 +UniRef50_UPI00036277E7 hypothetical protein 8.80879839581e-07 6.60395486147e-07 -89012239.1286 +UniRef50_UPI000375D958 hypothetical protein 5.73875336071e-08 6.57438811382e-08 3373560.04222 +UniRef50_Q5HNY1 DNA repair protein RecO 0.000135816168534 3.04570456225e-05 -42534770821.0 +UniRef50_A0A028XXS7 1.45864215417e-06 1.29806808191e-07 -536467135.816 +UniRef50_R8ZK04 3.55485577134e-06 1.52750019926e-06 -818468322.899 +UniRef50_P36967 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.000234656572759 0.000546094025174 1.25731121307e+11 +UniRef50_Q9RV98 Ferrochelatase 1.67275918245e-06 0.000342853313838 1.37738776671e+11 +UniRef50_I6GMY7 Inner membrane transport protein YhaO 3.09596039346e-08 2.93297519159e-08 -657991.260483 +UniRef50_A6M384 CheC domain protein 9.7206692408e-06 1.56135662744e-05 2379034846.44 +UniRef50_R6JVY2 4 hydroxy tetrahydrodipicolinate synthase 4.48881117165e-06 1.68102333956e-05 4974309352.64 +UniRef50_X5ESC8 4.75162744966e-07 4.52751881976e-07 -9047540.40128 +UniRef50_B0T2A6 Lysine tRNA ligase 8.86522533251e-05 1.88542360539e-05 -28178316090.4 +UniRef50_P0A1X7 Methionine aminopeptidase 0.000138160220957 2.65068643494e-05 -45075830203.4 +UniRef50_K4VCY9 Outer membrane specific lipoprotein transporter subunit LolE 3.37459736092e-05 3.50871332905e-06 -12207153028.0 +UniRef50_O86013 4 hydroxy 2 oxovalerate aldolase 4.79076400224e-07 2.93591128078e-06 991854390.036 +UniRef50_UPI0002E2CBA6 hypothetical protein 1.11885602524e-07 2.96909396736e-07 74696376.2207 +UniRef50_Q16AA8 2.08325624319e-06 1.85221840439e-07 -766259779.891 +UniRef50_A6LZI3 Transcriptional regulator, TetR family 2.24249102288e-06 6.8009700049e-06 1840313903.87 +UniRef50_UPI000474BBE2 ATP synthase F0F1 subunit gamma 4.85243068262e-08 1.10075940921e-07 24849150.0076 +UniRef50_E3ZDN2 PadR family transcriptional regulator 1.65009354495e-06 3.12974167876e-07 -539811500.823 +UniRef50_B7KCX9 Adenylosuccinate synthetase 1.66174883677e-07 2.04449566892e-07 15451959.2971 +UniRef50_Q98EA0 Mlr4340 protein 1.20556519087e-06 2.54538883843e-07 -383940990.552 +UniRef50_UPI0002D46E5D hypothetical protein 2.87552387397e-07 1.22716134845e-06 379331667.876 +UniRef50_UPI0004226290 MarR family transcriptional regulator 1.63696073613e-07 1.14293509246e-06 395330808.523 +UniRef50_J8V1E5 5.4587857025e-07 2.09144974858e-06 623966050.983 +UniRef50_B6IRE2 Deoxyribodipyrimidine photolyase like protein 2.92146556202e-05 3.20632300245e-06 -10499883035.9 +UniRef50_A0Q0M8 tRNA dimethylallyltransferase 3.42212690917e-06 9.55902744388e-06 2477542054.1 +UniRef50_V8RAG2 Sodium 6.30587676438e-06 3.46083992111e-06 -1148576286.16 +UniRef50_Q8CNS0 Uroporphyrinogen decarboxylase 0.000211119444678 5.17056477889e-05 -64357306031.4 +UniRef50_UPI00037EED1B hypothetical protein 4.94402178791e-07 4.55418767028e-05 18186218260.0 +UniRef50_UPI0002493305 amino acid ABC transporter ATP binding protein 2.31282611081e-06 6.02698502088e-07 -690399501.266 +UniRef50_UPI00046F93AF hypothetical protein, partial 2.62973069312e-07 4.88266535813e-07 90953737.0882 +UniRef50_I0ZLL7 Amino acid permease associated region 1.82941755998e-05 7.64670357488e-06 -4298515115.63 +UniRef50_I2HA76 Mobilization protein A 1.31173147082e-05 2.41415767301e-06 -4320995837.62 +UniRef50_Q9RWB6 4.99653438543e-06 0.000673089917792 2.69717497309e+11 +UniRef50_Q9HZU3 Precorrin 2 C methyltransferase 3.59538898309e-06 8.33625433925e-06 1913945521.24 +UniRef50_U8ZF23 UPF0125 protein Q012_00884 9.26408729856e-07 3.06990131754e-07 -250066889.175 +UniRef50_U5UJ70 MutS domain V family protein 6.38572238472e-05 7.17658894036e-06 -22882667861.5 +UniRef50_U5T6S5 2.29394100746e-07 3.22679378939e-07 37660411.5456 +UniRef50_J9WRR1 Transketolase, thiamine diphosphate binding domain protein 2.61967143253e-07 2.58173030131e-07 -1531730.02636 +UniRef50_R9YLA1 Ktr system potassium uptake protein A 0.00020059252678 2.5883422863e-05 -70532209173.1 +UniRef50_Q5HLV4 Staphylococcal accessory regulator Y 8.00239635322e-05 1.44596601299e-05 -26469113848.0 +UniRef50_T1JU40 9.49003496099e-08 2.11190409245e-07 46947724.1142 +UniRef50_Q7R725 9.79690522724e-08 1.58552021898e-06 600542660.306 +UniRef50_UPI000237E869 phage integrase 1.2829356318e-06 8.32447001783e-07 -181867788.055 +UniRef50_Q57466 Flagellar basal body rod protein FlgC 9.95037286734e-06 4.89475201976e-06 -2041016175.61 +UniRef50_I4DXS5 Acyltransferase homolog 6.53980756869e-05 6.75317836006e-05 861404068.301 +UniRef50_Q28LT2 6,7 dimethyl 8 ribityllumazine synthase 1.75618132571e-05 9.8068449862e-06 -3130775855.12 +UniRef50_A4WWA2 5.0996133752e-05 1.92431147166e-05 -12819083438.0 +UniRef50_B4T381 Protein NrdI 7.8525437345e-05 9.68589068264e-06 -27791369743.8 +UniRef50_Q9JYY8 Ribosomal RNA large subunit methyltransferase K 2.58872596211e-06 3.3994934442e-05 12679071760.9 +UniRef50_P71297 2.88892338411e-06 2.26727046924e-05 7986955288.46 +UniRef50_P71296 1.01720977147e-05 4.19640181617e-06 -2412461764.27 +UniRef50_Q71WL8 Arginine tRNA ligase 0.000251829445771 9.25905418513e-05 -64286699593.6 +UniRef50_A4EQX8 Immunogenic protein 2.58988767374e-06 5.45402834293e-07 -825383618.336 +UniRef50_Q54QE4 Bifunctional purine synthesis protein purC E 1.33063686161e-07 1.57158277088e-07 9727282.03111 +UniRef50_UPI00014AD6BB MULTISPECIES 1.97121344645e-07 8.86587792357e-08 -43787668.641 +UniRef50_I0C4X0 KipI 0.000185708698225 5.23464516114e-05 -53839975496.9 +UniRef50_UPI000373927B hypothetical protein 3.19362540761e-07 3.5488129094e-07 14339355.3113 +UniRef50_C5N1M3 Glyoxalase family protein 0.000114876831609 1.05476950836e-05 -42118952677.6 +UniRef50_C6SQK1 5.52387450498e-05 3.96398262003e-06 -20700250805.0 +UniRef50_Q9CHM9 Glycogen synthase 4.46958888226e-05 8.5985381811e-06 -14572943418.3 +UniRef50_C9TNI8 NAD specific glutamate dehydrogenase 2.34136827915e-07 1.36793422497e-07 -39298727.3052 +UniRef50_R6XC37 Oxidoreductase NAD binding domain protein 1.63599808729e-06 9.04420912307e-07 -295346683.002 +UniRef50_S4RTP3 1.06124392602e-07 2.27598503597e-07 49040589.2637 +UniRef50_F3F217 Isoleucyl tRNA synthetase 8.19044825047e-06 7.9202288793e-06 -109090876.106 +UniRef50_UPI0003772113 hypothetical protein 9.50463037596e-07 5.27679253746e-07 -170683001.681 +UniRef50_Q8FCG2 8.15428841801e-06 8.60604221933e-07 -2944549813.53 +UniRef50_R7QYT4 Methyltransferase type 12 8.09707329048e-06 8.03336262903e-06 -25720775.8451 +UniRef50_B9DIQ2 Sodium 8.99095079396e-05 1.33596293888e-05 -30904125343.6 +UniRef50_E3DTJ4 3.553818755e-08 1.57700240415e-07 49318319.8386 +UniRef50_B9KTV0 Tripartite ATP independent periplasmic transporter, DctQ component 1.75323689711e-06 1.3251573117e-06 -172820981.757 +UniRef50_UPI0003B7AA4B iron transporter 1.69570516196e-07 1.52469175422e-07 -6904021.12751 +UniRef50_Q3IVN6 7.23412102313e-05 2.21840105825e-05 -20249076996.3 +UniRef50_Q3IVN1 4.20609001181e-05 5.74137484501e-05 6198133272.26 +UniRef50_Q3IVN0 4.95123908695e-05 1.95415701071e-05 -12099588125.1 +UniRef50_I4Y1U6 3.02249945156e-06 1.23048627157e-06 -723457711.237 +UniRef50_Q3IVN2 9.4943445681e-05 0.000104229425363 3748863949.41 +UniRef50_F0RJ04 Potassium uptake protein, TrkH family 8.36379591226e-07 0.000296378247298 1.193138787e+11 +UniRef50_Q4L562 Probable quinol oxidase subunit 4 6.1664681791e-05 2.12603088962e-05 -16311741155.0 +UniRef50_C2QRL4 3.32462117829e-07 2.46924109412e-06 862643893.955 +UniRef50_P0AFQ0 Inner membrane transport permease YbhR 3.3644371676e-05 1.5608896218e-05 -7281142762.57 +UniRef50_Z5XBU2 Potassium transporting ATPase subunit B 9.24049228769e-08 1.87557720017e-05 7534630314.98 +UniRef50_Q6FCU8 O methyl transferase 5.5786106727e-06 4.35939715957e-05 15347267705.6 +UniRef50_Q9HGZ0 ATP dependent 6 phosphofructokinase 2 4.00557177518e-08 3.03595716479e-08 -3914453.16724 +UniRef50_UPI000379175B hypothetical protein 1.12429998035e-06 2.79151643321e-07 -341196754.795 +UniRef50_F0YF70 3.19439300233e-07 9.43294211361e-08 -90879620.6003 +UniRef50_Q18AR0 Acetyl CoA acetyltransferase 1.23052135111e-07 7.82849852625e-07 266368435.189 +UniRef50_V4QJE1 0.000178260887726 3.90596078639e-05 -56197264872.1 +UniRef50_F0KFI6 Succinate semialdehyde dehydrogenase (+)) 1.89098804829e-06 6.44100307705e-05 25239704741.9 +UniRef50_M4SAI5 6.91104147978e-07 1.59020789125e-06 362979214.403 +UniRef50_K0HLP5 Cell envelope related transcriptional attenuator 1.58205162156e-07 2.17070389521e-05 8699528634.91 +UniRef50_UPI00029A71CE ATP cobalamin adenosyltransferase 9.08235093104e-08 1.4802311149e-07 23092181.318 +UniRef50_D6C476 2.16870479001e-07 4.92157108136e-06 1899345366.34 +UniRef50_UPI0003B69FA4 ABC transporter ATP binding protein 8.70479517523e-08 8.78194692552e-08 311471.083505 +UniRef50_UPI00037DC4C2 hypothetical protein 2.2320347284e-07 3.24254882458e-08 -77019413.4897 +UniRef50_A5UNW1 Phage related minor tail protein 3.48094779087e-05 7.40138400825e-06 -11064983842.8 +UniRef50_Q9KPI5 UPF0126 membrane protein VC_2382 4.82413725085e-05 3.25119308468e-06 -18163087525.0 +UniRef50_D9RDD3 Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1 0.000149207677758 5.77269139603e-06 -57906464139.6 +UniRef50_UPI0003EB35B9 L lactate permease, partial 1.85360730159e-08 9.87332190105e-07 391114880.934 +UniRef50_Q9CGM7 Dihydroorotase 5.78669861729e-05 4.82657131642e-05 -3876151734.48 +UniRef50_UPI0003C11B56 3.74020350008e-08 3.85911315616e-08 480052.873451 +UniRef50_Q04HZ7 D alanine poly ligase subunit 1 6.76455883082e-05 3.75753679259e-05 -12139716971.4 +UniRef50_P22099 Anthranilate synthase component 1 3.01534554797e-05 4.90651084777e-06 -10192501362.7 +UniRef50_UPI00046F34F7 glycosyl transferase family 39 1.50170416029e-07 1.59452686954e-07 3747366.6787 +UniRef50_G1ZTT8 Sodium dependent inorganic phosphate transporter family protein 6.90666170161e-05 1.06492388621e-05 -23583812422.6 +UniRef50_UPI000350B2EA PREDICTED 7.41862016486e-07 1.21449330137e-07 -250468214.799 +UniRef50_K5YQU9 4.18145547763e-07 2.89431342535e-07 -51963504.1515 +UniRef50_UPI00046BF16E PREDICTED 1.35463219976e-08 9.13132658069e-08 31395469.5235 +UniRef50_UPI0003FCF933 DNA polymerase III subunit alpha 3.60651770913e-08 2.21446169201e-08 -5619900.9656 +UniRef50_C3LNG5 Amino acid ABC transporter, permease protein 8.70281264154e-06 7.73755559468e-06 -389686114.853 +UniRef50_Q9RWV7 Tryptophan tRNA ligase 1.2796135215e-06 0.000420833646116 1.69379111465e+11 +UniRef50_UPI0004560947 hypothetical protein PFL1_00311 1.44431709291e-07 1.86887923497e-07 17140094.6713 +UniRef50_F0LUE5 Predicted hydrolase of the HAD superfamily 5.82543050858e-06 1.38105132473e-05 3223675889.61 +UniRef50_K0LKT0 1.39277597654e-05 4.3551082019e-05 11959298712.8 +UniRef50_UPI0003823C05 hypothetical protein 1.72416776267e-06 9.60730834794e-08 -657281800.957 +UniRef50_UPI0003A4E18C hemolysin expression modulating protein 4.30787682591e-07 2.60816950684e-08 -163384773.464 +UniRef50_UPI000472C7D5 diaminopimelate decarboxylase 8.90399066986e-08 8.46130280363e-07 305646674.392 +UniRef50_UPI0003715A93 phosphoribosylglycinamide synthetase 1.39468336504e-07 2.44537946885e-08 -46432781.9183 +UniRef50_B0CKZ1 8.21683249897e-06 2.87343111972e-06 -2157196707.71 +UniRef50_F7ZE55 4.62164394839e-05 5.50682640576e-06 -16434970362.8 +UniRef50_R5FLI5 Glutathione peroxidase 5.49736876965e-06 3.68616016509e-05 12662125696.6 +UniRef50_M9VH17 2.62076560141e-06 3.05527728858e-06 175417700.169 +UniRef50_UPI00036E90C5 hypothetical protein 8.21219037483e-07 1.28492027548e-06 187201880.033 +UniRef50_Q8DSG3 Aspartate tRNA ligase 7.16310742295e-05 2.08883927694e-05 -20485443188.2 +UniRef50_U5V5C3 Putative nRPS PKS 1.72818411647e-07 9.86019527077e-07 328299269.399 +UniRef50_UPI0004705979 hypothetical protein 8.39461366984e-08 8.9122932045e-08 2089935.80785 +UniRef50_UPI00035D3D1B hypothetical protein 2.02515499788e-06 3.19764633004e-07 -688487017.795 +UniRef50_UPI0003B3A97F UTP glucose 1 phosphate uridylyltransferase 2.5123847649e-06 1.35111774288e-06 -468817747.138 +UniRef50_P77607 3.70881898274e-06 5.51289092249e-06 728325980.529 +UniRef50_X1DZD1 Marine sediment metagenome DNA, contig 2.47205412101e-07 5.81197372885e-07 134836653.111 +UniRef50_Q5NWG5 Isopentenyl diphosphate Delta isomerase 2 7.43213996447e-07 1.90806838428e-07 -223013548.49 +UniRef50_UPI000225ADDB large conductance mechanosensitive channel protein MscL 5.40995468574e-07 6.10462269887e-07 28044600.1436 +UniRef50_C7TN90 ABC transporter, amino acid binding protein 7.02969874428e-05 6.23223467489e-05 -3219460307.97 +UniRef50_A5UKX8 O linked GlcNAc transferase 2.45823093574e-05 8.82767705338e-06 -6360338392.2 +UniRef50_UPI000375E38D hypothetical protein 6.97414799666e-08 6.26460530979e-07 224754312.605 +UniRef50_Q7U8I1 Fumarate hydratase class II 6.78675023395e-08 1.25911332666e-07 23433006.5807 +UniRef50_I6U4E4 7.29093234313e-05 1.33814022035e-05 -24032152289.4 +UniRef50_P0ADI8 3.29202897256e-06 6.26671157593e-06 1200915870.44 +UniRef50_E8SDZ5 0.00025412918601 2.43198529974e-05 -92776847815.0 +UniRef50_P18642 Protein ImpB 1.59003262334e-05 2.0250288357e-06 -5601627828.5 +UniRef50_A4VP76 Lipoprotein, putative 7.00301055808e-06 1.77367390508e-06 -2111147377.99 +UniRef50_UPI00035D47CC hypothetical protein, partial 2.34417190976e-06 3.95394460445e-07 -786745370.475 +UniRef50_UPI00029A6A13 binding protein dependent transport system inner membrane protein 1.1004921197e-07 3.18472320783e-07 84142966.667 +UniRef50_I0ZSX5 Transporter, major facilitator family protein 1.11558990951e-05 7.36370815849e-06 -1530954016.53 +UniRef50_F3Y8Y9 Altronate oxidoreductase 1.55985945804e-06 2.23161238178e-06 271194898.649 +UniRef50_P0A963 L asparaginase 1 1.66646714253e-05 5.66806690887e-06 -4439464186.78 +UniRef50_Q46MN5 Hydrophobe amphiphile efflux 1 HAE1 8.08129526279e-06 6.15243135783e-07 -3014136862.44 +UniRef50_Q6FFX5 Ribonuclease PH 4.25592345041e-07 1.50644653298e-07 -110999757.144 +UniRef50_A6LWL3 Collagen triple helix repeat 4.34391241527e-07 2.67648352131e-06 905160166.913 +UniRef50_O69754 Trans 2,3 dihydro 3 hydroxyanthranilate isomerase 2.89451916503e-06 4.70367337981e-07 -978659840.268 +UniRef50_UPI00037CA56D hypothetical protein 8.90002479414e-07 1.50535445417e-07 -298531915.906 +UniRef50_UPI0003A01C14 iron ABC transporter permease 1.0691662724e-07 6.91033536546e-08 -15265682.5675 +UniRef50_R5D7P7 ABC transporter permease protein 1.66933348714e-06 7.35342772658e-07 -377063512.791 +UniRef50_UPI00047ED6FC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.30597506173e-07 6.01389356282e-08 -28444989.5528 +UniRef50_R7R1P9 Cobalamin biosynthesis protein CbiM 2.76719895371e-06 5.6523464125e-05 21702063913.2 +UniRef50_B1YU48 Uracil phosphoribosyltransferase 6.43682564735e-07 1.18842361961e-06 219918648.577 +UniRef50_Q1J275 Transcriptional regulator, Crp Fnr family 3.43169080774e-06 0.000323418371894 1.29182549833e+11 +UniRef50_T9JR44 8.17766565087e-08 1.39143415988e-07 23159664.7711 +UniRef50_P27431 50S ribosomal protein L16 arginine hydroxylase 4.86200865535e-05 1.24857238685e-05 -14587885634.4 +UniRef50_Q6ZDB2 5.84146777618e-07 1.06788539384e-06 195291215.509 +UniRef50_Q5HLY0 Probable molybdenum cofactor guanylyltransferase 0.000179032963372 4.49540983695e-05 -54129283134.0 +UniRef50_A1BAJ3 Peptidase M23B 1.07386961053e-06 3.4427617587e-07 -294545822.69 +UniRef50_Q3IW06 1.10454695865e-05 5.91561929607e-06 -2070983512.59 +UniRef50_UPI00046F60DA hypothetical protein 2.79593827946e-07 1.25907867892e-07 -62044908.0126 +UniRef50_UPI00035CF7ED hypothetical protein 7.03139388276e-08 2.6943276063e-07 80386711.8242 +UniRef50_UPI00047B007B 2 oxoglutarate dehydrogenase 1.41968731216e-08 1.86870176321e-08 1812726.43916 +UniRef50_E6Q0D3 4.67514356353e-07 9.02721019445e-07 175698270.477 +UniRef50_D7GEE3 rRNA methylase 2.78245200628e-06 5.05317374271e-05 19276972474.0 +UniRef50_UPI0002DEB9E1 hypothetical protein 5.43702773776e-08 1.00701695306e-06 384595153.262 +UniRef50_Q48JY0 Dihydroorotate dehydrogenase 1.73529348147e-07 3.14176785445e-07 56781096.3753 +UniRef50_C6SS67 6.09909338577e-05 1.11314570002e-05 -20128882652.0 +UniRef50_B8H5V4 Uronate isomerase 6.17867240817e-05 1.88964220599e-05 -17315341249.4 +UniRef50_Q7UWS1 Na translocating NADH quinone reductase subunit E 8.88263240391e-07 1.14629503914e-06 104170603.561 +UniRef50_UPI000412F4F5 hypothetical protein 9.35268203105e-07 1.35502772672e-07 -322875118.491 +UniRef50_A3PQF5 Peptidase M24 4.73323388577e-05 8.73830695649e-06 -15580884280.5 +UniRef50_A5W310 Major facilitator superfamily MFS_1 1.16368382066e-05 8.96813951921e-06 -1077386408.71 +UniRef50_P76550 3.57456103561e-05 2.13997612461e-06 -13567006926.8 +UniRef50_UPI00035E8F3F hypothetical protein 1.78684763972e-06 5.92784985726e-07 -482057746.212 +UniRef50_A5UAG1 Ribonuclease T 3.1953885718e-05 2.97450547729e-05 -891732157.941 +UniRef50_UPI0003739549 hypothetical protein 1.99902795493e-07 5.75638776795e-06 2243221169.12 +UniRef50_A7X3B0 Transcriptional repressor NrdR 0.00030715149197 3.13065537791e-05 -1.11361986546e+11 +UniRef50_F9VBF9 OPT family oligopeptide transporter 7.88619753888e-07 9.5919906521e-06 3554028861.12 +UniRef50_D4HBS7 Oxidoreductase, NAD binding domain protein 1.43895548483e-06 6.54586537552e-05 25845537801.8 +UniRef50_R9SJM3 Amidohydrolase 2.70630887141e-05 2.76610145639e-05 241390002.94 +UniRef50_A5UKM3 3.71352824693e-05 7.72767802043e-06 -11872210787.9 +UniRef50_A5UKM2 2.33569523991e-05 1.43010510987e-06 -8852137323.32 +UniRef50_A3PIB0 OmpA MotB domain protein 5.03715856153e-06 1.15810472618e-06 -1566021634.67 +UniRef50_A6FVX3 Transcriptional regulator, MarR family protein 2.33838690787e-05 4.95508120008e-06 -7439927813.25 +UniRef50_UPI00016C448A hypothetical protein 3.66129074076e-07 7.35517335542e-05 29545926617.0 +UniRef50_Q49890 Tyrosine recombinase XerD 2.46186514471e-06 4.33203616319e-05 16495076422.0 +UniRef50_Q5LND3 Orotidine 5 phosphate decarboxylase 1.20024755922e-05 2.54218110649e-06 -3819236974.75 +UniRef50_Q14JF9 Protoheme IX farnesyltransferase 4.36984379905e-08 1.73241208433e-07 52298006.0964 +UniRef50_Q5HRV4 3.62410935657e-05 7.20284646817e-06 -11723096692.6 +UniRef50_A3CTR9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 3.2162174718e-07 8.77409774415e-08 -94420536.783 +UniRef50_Q5HKN5 2.91100899235e-05 9.35288741878e-06 -7976225099.29 +UniRef50_UPI0002EC4132 hypothetical protein 5.59550563826e-08 4.58596831372e-07 162551425.533 +UniRef50_Q9RUU2 DNA helicase RecQ 9.47131982586e-07 0.000127566692968 51117870566.4 +UniRef50_A1SRV2 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.84537674543e-07 4.9457664995e-08 -54533457.4726 +UniRef50_UPI0004574B02 PREDICTED 3.60290733687e-07 1.55955269346e-07 -82492734.4326 +UniRef50_UPI00047B0F79 ATP dependent DNA helicase PcrA 1.7192994877e-07 8.00220796498e-08 -37104334.6002 +UniRef50_J4Y9F0 5.80457606104e-07 1.52001875169e-06 379312364.185 +UniRef50_Q2SSQ6 ATP dependent 6 phosphofructokinase 1.43257646858e-07 1.01783254702e-07 -16743721.0614 +UniRef50_UPI0003B58BDB glutathione synthetase 3.40271525092e-08 5.55957823724e-08 8707520.55263 +UniRef50_D0D8F2 Tripartite ATP independent periplasmic transporter, DctQ component 1.55450032925e-06 6.28655053514e-07 -373775099.214 +UniRef50_P76168 Putative lambdoid prophage Qin defective integrase 2.83808496387e-05 5.56406631506e-06 -9211415421.15 +UniRef50_B9KWD2 Quinol oxidase subunit II 1.03228869028e-05 5.74410320154e-06 -1848511168.19 +UniRef50_UPI00035F8901 hypothetical protein 1.5134020674e-06 3.38427871912e-07 -474351501.274 +UniRef50_Q9RYN5 Cytochrome C6, putative 1.46881707723e-06 0.000616682951815 2.4836949572e+11 +UniRef50_B7H202 Peptidase M16C associated family protein 2.0860888321e-06 7.68012469634e-05 30163426195.7 +UniRef50_Q5HPK4 7.81214809412e-05 2.87671465947e-05 -19924950421.5 +UniRef50_Q2YSU1 Teichoic acid biosynthesis protein 0.000124137274904 1.64799048651e-05 -43462601389.2 +UniRef50_UPI000479479D family 2 glycosyl transferase 1.49072790182e-06 3.4977564636e-07 -460616426.588 +UniRef50_A4WRV1 Transport associated 9.84044406011e-06 7.13594233594e-06 -1091840534.02 +UniRef50_T2GRR2 1.50440879345e-06 2.38304604967e-06 354716642.428 +UniRef50_Q7NPI6 Glutamate 5 kinase 5.33224891031e-08 1.2479552297e-07 28854540.8448 +UniRef50_A4WRB0 Spheroidene monooxygenase 4.70119357408e-05 1.31760096559e-05 -13659978574.0 +UniRef50_Q6GJ94 Putative long chain fatty acid CoA ligase VraA 0.000117071822348 1.74581500354e-05 -40215261909.8 +UniRef50_Q6CS32 KLLA0D04378p 9.27563484787e-08 2.40769396293e-07 59754683.7269 +UniRef50_A5IV89 0.000132558476748 3.86877779725e-06 -51953610666.7 +UniRef50_UPI00047ED515 cobyrinic acid a c diamide adenosyltransferase 2.44569457527e-07 3.80546518311e-06 1437577301.52 +UniRef50_UPI000407EA99 hypothetical protein 3.53569480711e-08 3.13398385952e-08 -1621756.3909 +UniRef50_Q67MF5 Lipoyl synthase 6.2856807304e-08 4.0796091846e-07 139322764.577 +UniRef50_A7X0W1 Phosphoribosylformylglycinamidine synthase 2 0.00023261372983 5.04826030323e-05 -73528570888.6 +UniRef50_N2V265 Glycosyltransferase like 2 family protein 1.59680589346e-05 1.29792721244e-05 -1206609911.82 +UniRef50_Q5SHZ8 8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase 2.62397933841e-06 0.000309982963532 1.24084593638e+11 +UniRef50_D3HNL5 Cytochrome c oxidase subunit 2 1.40665428789e-05 4.05503761083e-06 -4041767531.72 +UniRef50_B4D9A7 Cobyrinic acid ac diamide synthase 6.12068901095e-08 8.88202067888e-08 11147834.7969 +UniRef50_G7M7X4 Replisome organizer region containing protein 3.74393301598e-06 5.33016997375e-06 640383325.168 +UniRef50_Q67PR4 Methionyl tRNA formyltransferase 5.01340415809e-08 2.07405040309e-07 63492232.1187 +UniRef50_G0D6I9 2.71317277564e-05 7.58316968283e-07 -10647269573.3 +UniRef50_Q9ZMH8 Putative zinc metalloprotease jhp_0242 2.2948630826e-06 6.29732825043e-05 24496622528.5 +UniRef50_P33345 Putative molybdate metabolism regulator 6.99724652584e-06 1.37360842467e-06 -2270331711.24 +UniRef50_V5SX49 Chemotaxis protein CheY 5.05619055759e-06 1.54777703004e-05 4207319629.33 +UniRef50_F3CHT8 Histidine lysine arginine ornithine ABC transporter permease HisM 4.54090265867e-07 1.94165312638e-06 600547381.237 +UniRef50_UPI0004010090 NUDIX hydrolase 1.74397233424e-06 1.77809743983e-07 -632279056.664 +UniRef50_UPI0003A6958B DNA polymerase IV 4.33869155643e-08 8.6224874575e-08 17294209.7335 +UniRef50_UPI0003695FA0 hypothetical protein 2.38273197906e-08 3.23231165328e-08 3429857.39998 +UniRef50_B5XPC8 Uridine kinase 1.06704553196e-07 3.11567292098e-06 1214757454.27 +UniRef50_S2IZA5 2.64852275158e-07 7.92441963827e-07 212994431.569 +UniRef50_V5T4Y9 AraC family transcriptional regulator 1.32250410445e-05 2.73441393692e-06 -4235194897.81 +UniRef50_Q1LLQ3 Cbb3 type cytochrome oxidase, subunit I 1.18955668759e-06 1.91743787e-05 7260693344.99 +UniRef50_X1XSD9 0.000217858521546 4.34002203139e-05 -70430957051.5 +UniRef50_Z2CD30 0.000121435573411 1.36286899342e-05 -43522961798.9 +UniRef50_Q9RUE5 2.89631193489e-06 0.000224746360002 89563586810.9 +UniRef50_Q9RUE6 1.66917856689e-06 0.000330413213749 1.32718001146e+11 +UniRef50_UPI0003728022 hypothetical protein 8.13009554226e-08 2.12148291955e-07 52824675.4353 +UniRef50_C1CRM5 9.10513168199e-08 1.20642519994e-05 4833728043.26 +UniRef50_L0KKT8 7.1396699805e-07 7.66431637179e-07 21180618.6299 +UniRef50_R4QK25 GTPase 9.29005714967e-07 2.6534848763e-05 10337393057.5 +UniRef50_Q98QH1 Lysine tRNA ligase 1 3.68821755283e-08 7.25193306518e-08 14387156.8404 +UniRef50_UPI00040189EA C4 dicarboxylate ABC transporter permease 9.99921429727e-07 1.50867724728e-07 -342773399.769 +UniRef50_P77187 2.64488239814e-05 1.87348850034e-05 -3114211826.09 +UniRef50_W8T289 1.67972234275e-05 1.22200015942e-05 -1847880622.93 +UniRef50_X5QID8 Transposase 5.87713518861e-05 1.11244149756e-05 -19235653124.4 +UniRef50_UPI0002EB2D0F hypothetical protein 2.16783665046e-06 1.14815751979e-06 -411656977.922 +UniRef50_Q1QBW0 Lipid A export ATP binding permease protein MsbA 1.41840916575e-06 7.5247841623e-05 29805847872.0 +UniRef50_E5VNE0 DNA replication and repair protein RecF 3.38858059911e-07 8.72094224864e-07 215273983.335 +UniRef50_UPI00047C7FF5 hypothetical protein 5.89023881796e-07 7.34542743403e-08 -208141777.281 +UniRef50_UPI000474B713 phosphoglucomutase 1.47721541472e-07 1.0699542929e-07 -16441631.2535 +UniRef50_UPI0003653228 hypothetical protein 1.15631276669e-07 2.17336897434e-07 41059807.1711 +UniRef50_E3A662 Signal recognition particle receptor FtsY 1.30359593674e-06 2.12834350657e-06 332960714.731 +UniRef50_B0V727 2.05901448467e-06 9.27153267233e-05 36599065728.8 +UniRef50_UPI0003772B6E hypothetical protein 7.69724654099e-08 7.92368275104e-08 914150.76682 +UniRef50_E8YFF3 Ribonucleoside diphosphate reductase 7.11528810748e-06 5.38104462594e-06 -700135375.058 +UniRef50_J7QHS4 2.22050581675e-06 3.43391517665e-06 489868248.799 +UniRef50_D3DZ50 Nicotinate phosphoribosyltransferase 2.80915717911e-05 4.372719365e-06 -9575591787.47 +UniRef50_W1T644 Fructoselysine transporter 3.34058397217e-06 5.22684433979e-06 761506457.426 +UniRef50_X7F912 Malto oligosyltrehalose trehalohydrolase 4.46198354867e-05 1.00868154914e-05 -13941403939.9 +UniRef50_Q28R66 Anthranilate phosphoribosyltransferase 5.50630815389e-07 3.08177469518e-07 -97881390.9652 +UniRef50_UPI00037E8315 hypothetical protein 3.27026475869e-07 2.49838842643e-07 -31161594.7321 +UniRef50_U6IKF5 Adenylyltransferase and sulfurtransferase 1.35303218501e-07 3.07413896933e-07 69483192.9185 +UniRef50_P05846 Transposon Tn7 transposition protein TnsC 9.58086266163e-07 4.95861217892e-05 19631734673.7 +UniRef50_S5Y8G8 Penicillin binding protein, 1A family 3.64778274832e-05 6.52086324375e-06 -12093994076.8 +UniRef50_P0AFM0 Paraquat inducible protein A 3.890751589e-05 4.94203946313e-06 -13712279636.8 +UniRef50_Q6GHW0 UPF0348 protein SAR1099 0.000155989583656 4.52547063447e-05 -44705028840.2 +UniRef50_UPI00042C781F PREDICTED 8.84366946958e-08 2.28038111158e-07 56358804.9277 +UniRef50_G7U8E3 Adenosylmethionine 8 amino 7 oxononanoate transaminase 9.50048629665e-07 5.3461277422e-05 21199427448.7 +UniRef50_P52044 2.40821408399e-05 1.19792480302e-05 -4886086346.47 +UniRef50_O50274 Bifunctional enzyme CysN CysC 7.57699037971e-06 3.76910497654e-06 -1537290065.27 +UniRef50_F4N7B8 Pirin like protein PA2418 1.06497585971e-07 1.50994387245e-07 17963904.7115 +UniRef50_W5X7C0 NADH dependent flavin oxidoreductase 8.80457839425e-07 1.98944786583e-06 447712882.5 +UniRef50_V9TYA5 Beta ketoadipate enol lactone hydrolase 8.31552333171e-06 2.38800570243e-06 -2393011605.76 +UniRef50_X8AP60 Recombination O family protein 1.37815117514e-07 5.48316910805e-07 165724611.375 +UniRef50_Q9RTA5 4.94934185971e-06 0.000144362969055 56282992096.2 +UniRef50_UPI000225F589 hypothetical protein 4.1642392299e-07 6.98506028045e-07 113880007.347 +UniRef50_Q9A545 5 hydroxyisourate hydrolase 2.4640340016e-07 1.95005762676e-06 687786117.467 +UniRef50_Q9RTA6 1.70189237437e-07 6.01737320786e-05 24224166571.3 +UniRef50_C1CUQ9 Translation initiation factor IF 2 1.33565049162e-06 0.00022789168761 91463452339.7 +UniRef50_UPI000478DE35 cytochrome Cbb3 3.94054754604e-07 2.74418645663e-07 -48298565.2796 +UniRef50_UPI000361F45B hypothetical protein 7.38374652608e-08 1.11796968922e-06 421528991.756 +UniRef50_C7BXE2 9.64614963009e-07 5.07528460708e-05 20100119868.5 +UniRef50_F3S6G5 6.10692268204e-08 1.14615721896e-07 21617377.1514 +UniRef50_P34843 Cytochrome c oxidase subunit 3 8.56104260302e-08 1.71982546014e-07 34869484.7426 +UniRef50_UPI00047810F9 hypothetical protein 4.98532368506e-08 1.11034267668e-07 24699532.9167 +UniRef50_H6LDW2 UDP galactopyranose mutase Glf 1.65416474913e-05 9.09745951537e-06 -3005310036.34 +UniRef50_W6V4Z4 3.08103365752e-07 9.69042861533e-06 3787759837.33 +UniRef50_D5AQK7 Membrane protein, putative 4.3544807847e-06 3.67940302843e-07 -1609415312.88 +UniRef50_B7LM74 Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase 2.22466865299e-05 9.94650212072e-06 -4965735386.23 +UniRef50_P74061 Ribulose phosphate 3 epimerase 1.48774802123e-07 3.34852181197e-06 1291777133.19 +UniRef50_UPI000478D8DB hypothetical protein 3.62003055997e-08 8.52261334415e-08 19792328.3143 +UniRef50_A2VSU2 NAD NADP transhydrogenase beta subunit 4.43173169831e-08 6.73332841153e-07 253941285.996 +UniRef50_Q01A90 WGS project CAID00000000 data, contig chromosome 04 3.1368738326e-07 1.29116903421e-07 -74513367.6455 +UniRef50_UPI0004631E88 hypothetical protein 1.43666297746e-06 2.08832716849e-07 -495690143.38 +UniRef50_P59522 Ribosomal RNA small subunit methyltransferase H 1.29433433717e-07 7.58522854409e-08 -21631367.0737 +UniRef50_I0HWW2 6.16540863228e-08 5.59402885045e-08 -2306730.29543 +UniRef50_UPI000370D7A6 hypothetical protein 5.48524101817e-06 1.92467755156e-07 -2136757515.91 +UniRef50_Q54DD3 Aminomethyltransferase, mitochondrial 1.74088406746e-07 7.72413407574e-08 -39098348.9867 +UniRef50_Q8DPZ3 Release factor glutamine methyltransferase 4.43595805177e-05 2.47728959328e-05 -7907384922.57 +UniRef50_UPI000362B874 hypothetical protein 1.27571184279e-07 5.92038400701e-07 187511114.923 +UniRef50_W8TSF6 9.05348833236e-06 2.67461482819e-07 -3547026855.83 +UniRef50_Q57NU9 GTP cyclohydrolase 2 7.0607440529e-05 2.97298696507e-06 -27304858871.8 +UniRef50_B7V9G1 4.52816463171e-06 1.34031787524e-06 -1286972854.87 +UniRef50_UPI00016C4BB1 hypothetical protein 5.45450439872e-07 9.33914464854e-05 37483067952.1 +UniRef50_D5ALH8 Lipoprotein, putative 4.26778464075e-06 3.83368587575e-07 -1568186427.81 +UniRef50_J3D958 2.18258229799e-08 7.51101544426e-09 -5779063.46456 +UniRef50_H9KM75 2.05104008462e-07 8.52604236091e-08 -48382325.8513 +UniRef50_F8GU79 3.65378352266e-06 9.74994530444e-06 2461095319.62 +UniRef50_Q9KZV6 Polyphosphate kinase 1.12991347959e-07 4.35525486461e-06 1712653840.1 +UniRef50_C1CQE1 UPF0340 protein SPT_0687 6.83596222978e-05 6.87122181446e-05 142347270.191 +UniRef50_UPI0004660C96 amino acid lyase 2.35739754899e-07 4.37561243085e-07 81477811.4089 +UniRef50_F0P462 0.000199940566202 7.24468779945e-05 -51470766452.7 +UniRef50_UPI00036A8875 hypothetical protein 1.89414550079e-07 7.42446019108e-08 -46495521.3696 +UniRef50_G8RED1 Virulence associated cell wall anchored protein SasG 7.90249088534e-06 7.33886681627e-06 -227541953.129 +UniRef50_UPI0004786393 sugar ABC transporter permease 4.50298971242e-06 2.42576391471e-06 -838601544.963 +UniRef50_U6KDN7 6.79627126107e-08 1.3320931857e-07 26340855.4917 +UniRef50_H9KJ92 8.07850647621e-08 4.02533782494e-05 16218168841.8 +UniRef50_UPI000470B6F6 DEAD DEAH box helicase 3.40017981456e-07 3.38543303062e-07 -595345.763997 +UniRef50_B2UUU1 Purine nucleoside phosphorylase DeoD type 3.11788512056e-07 7.48561484895e-05 30094472885.0 +UniRef50_P42693 Peptidyl prolyl cis trans isomerase 3.30346762676e-07 3.72922758717e-06 1372169897.8 +UniRef50_UPI000472ECAA UDP N acetylmuramate alanine ligase 1.43197527948e-07 4.48430531292e-08 -39706908.4295 +UniRef50_I7DYY9 Cell division protein ftsW 0.00011309069864 5.8243377205e-05 -22142536715.6 +UniRef50_A6LVT1 5.88595616769e-07 1.54461696835e-05 5998184973.66 +UniRef50_P44951 Diaminobutyrate 2 oxoglutarate aminotransferase 6.46073060019e-06 6.01066894547e-05 21657531899.5 +UniRef50_A6LVT2 2.23309298637e-06 1.73206278698e-06 -202272039.826 +UniRef50_Q3IVS3 RES domain containing protein 0.000168927602896 4.27198393611e-05 -50951622882.5 +UniRef50_Q31I68 Ribosomal RNA small subunit methyltransferase H 3.24585674492e-07 9.17547092342e-08 -93996717.8319 +UniRef50_M1MGS7 Polysaccharide deacetylase 7.35039622704e-06 6.7283486121e-06 -251128255.534 +UniRef50_G0GLQ7 ATP dependent RNA helicase HrpB 3.6807713272e-05 5.4237715904e-06 -12670082381.1 +UniRef50_UPI00021982B8 hypothetical protein, partial 1.0419552553e-08 7.88390049002e-08 27621772.5137 +UniRef50_M4R0W4 Metalloendopeptidase 7.19024946491e-06 8.70234727323e-05 32229651896.9 +UniRef50_UPI00034A5B30 CoA transferase 5.39502526814e-08 1.30757449534e-06 506103490.461 +UniRef50_F9P4K2 Putative IS1167, transposase 7.60131633467e-07 2.87330510962e-06 853114063.876 +UniRef50_Q89SJ2 Blr2408 protein 3.28570837337e-07 2.81066409565e-07 -19178120.4364 +UniRef50_Q7TTY7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.19434505497e-07 1.7436368827e-07 22175585.1423 +UniRef50_A3LIZ0 1.12723936828e-05 1.18957248332e-05 251646434.55 +UniRef50_Q9I700 Beta alanine pyruvate aminotransferase 1.38355348105e-05 5.49564207452e-05 16601006261.9 +UniRef50_U9I2I4 1.15738844174e-06 4.8826129276e-07 -270134841.157 +UniRef50_B6V383 Tra8 6.89361364181e-05 2.44381461703e-05 -17964384714.8 +UniRef50_P34030 DNA gyrase subunit A 2.4072185288e-07 5.17667399579e-07 111806315.706 +UniRef50_Q9HXI4 Inositol 1 monophosphatase 2.22246776555e-05 1.53974873813e-05 -2756220492.74 +UniRef50_UPI00046A5EF5 hypothetical protein 9.09709626986e-08 5.59322704789e-08 -14145550.0222 +UniRef50_Q9RS69 1.398096255e-05 0.000953508854204 3.79298939164e+11 +UniRef50_Q7A7F8 0.000132944994987 1.13479507977e-05 -49090218902.6 +UniRef50_Q16DP8 Chemotactic signal response protein, putative 1.55483077426e-06 7.58800115333e-07 -321367345.403 +UniRef50_P12782 Phosphoglycerate kinase, chloroplastic 5.52648229123e-08 5.55378641455e-07 201902085.632 +UniRef50_UPI0001BF6917 hypothetical protein SMAC_10596, partial 5.57706239498e-07 9.24753853381e-07 148181625.905 +UniRef50_Q3IVS7 5.84008849251e-05 1.73947343312e-05 -16554686196.8 +UniRef50_Q3IVS4 0.000108890128815 3.47740901605e-05 -29921554310.9 +UniRef50_Q3IVS5 6.85401774908e-05 3.51592618433e-05 -13476285276.8 +UniRef50_Q0AVV3 3 oxoacyl [acyl carrier protein] synthase 3 8.5723474247e-07 1.69441993868e-07 -277670372.777 +UniRef50_Q3IVS1 0.000116515056726 3.08732552268e-05 -34574646208.3 +UniRef50_P72161 D alanyl D alanine endopeptidase 1.17281342928e-05 2.65068561785e-06 -3664677422.9 +UniRef50_K2AFL1 Type I secretion system ATPase 1.43487679681e-06 7.49721877522e-07 -276605448.713 +UniRef50_G2T6A4 2.96037608201e-07 3.95346542416e-07 40092235.4003 +UniRef50_Q390S8 Drug resistance transporter EmrB QacA subfamily 5.53677575648e-06 2.45894354798e-06 -1242558631.82 +UniRef50_UPI00036D110C hypothetical protein 1.35020815986e-07 1.07712195005e-07 -11024825.4045 +UniRef50_A5UM36 Predicted RecB family exonuclease 2.17010783799e-05 7.08941581512e-06 -5898907482.67 +UniRef50_UPI0004202255 hypothetical protein 1.73896353086e-08 2.50848362246e-08 3106647.04052 +UniRef50_E8SNW4 4.99012729997e-08 2.59122942089e-06 1025965358.91 +UniRef50_UPI000417C86E heme biosynthesis protein HemY 4.08524562383e-06 2.98985546146e-06 -442222450.498 +UniRef50_UPI0003B5B9BE leucyl phenylalanyl tRNA protein transferase 7.62334786049e-08 4.55687237237e-07 153190138.781 +UniRef50_UPI00047B9601 hypothetical protein 4.94408191124e-07 5.56414887692e-07 25032864.3122 +UniRef50_UPI0004642A7D hypothetical protein 3.52989399503e-08 9.10232190284e-08 22496575.2776 +UniRef50_U3T4I1 Phosphate ABC transporter periplasmic substrate binding protein 7.96928575227e-08 3.16811152918e-05 12757882029.8 +UniRef50_UPI00035E6AC5 hypothetical protein 9.67530528816e-08 1.07748550853e-06 395933727.286 +UniRef50_Q67P77 Polyribonucleotide nucleotidyltransferase 5.06178554828e-08 9.38403352861e-06 3768014441.13 +UniRef50_UPI0003B791AF hypothetical protein, partial 2.59370525103e-06 2.3537418319e-06 -96876176.9851 +UniRef50_Q55141 Acetolactate synthase small subunit 5.38322496553e-07 8.69621497587e-06 3293441302.5 +UniRef50_B9NXE5 Calcium binding hemolysin protein, putative 2.69894470644e-08 2.08375318347e-08 -2483603.67072 +UniRef50_I6SUE0 ABC transporter permease 3.86082320774e-05 4.11440696925e-06 -13925580483.0 +UniRef50_A6DDD4 7.01441746586e-08 6.78530106972e-07 245612866.61 +UniRef50_D6B6F5 AsnC family transcriptional regulator 4.30285250628e-07 9.07059798007e-07 192479735.459 +UniRef50_F4DU59 Protein disulfide isomerase like protein 7.54391977334e-06 2.6057356341e-06 -1993605535.34 +UniRef50_Q4FS24 Putative phosphoenolpyruvate synthase regulatory protein 1.2567595625e-05 5.35348288774e-05 16538974788.5 +UniRef50_A1B8P9 5.4071639162e-05 4.72451118009e-06 -19922041123.6 +UniRef50_R5TVL0 4.21775899907e-06 5.79293995353e-07 -1468892970.99 +UniRef50_C5YKS4 2.21024832029e-06 2.95695012863e-07 -772928664.421 +UniRef50_UPI000365F03D hypothetical protein 2.18749084645e-08 4.2795898297e-08 8446060.3248 +UniRef50_UPI0004724D34 hypothetical protein 7.11604608968e-07 2.23713600204e-06 615875743.758 +UniRef50_B7MTN6 Thiamine kinase 4.64953880898e-05 6.13477546689e-06 -16294074596.3 +UniRef50_G7VSI0 5.36709936758e-06 6.00644146164e-06 258110248.982 +UniRef50_K6UQ90 2.29508420679e-07 3.37360097368e-07 43541045.3683 +UniRef50_S4Y5B1 7.35964064076e-08 2.30738673337e-07 63440261.5117 +UniRef50_A7ZR32 2.47640459339e-06 8.30505590917e-05 32528774927.0 +UniRef50_C0BG39 1.91857779672e-07 3.6326643828e-07 69199778.9008 +UniRef50_G1D4J4 Gp80 3.58055127465e-07 1.27466439132e-07 -93091483.1214 +UniRef50_M2QS37 6.85153147839e-07 2.18931917582e-06 607250283.688 +UniRef50_A6M2E5 Sulfatase 6.28793984816e-07 1.17363187898e-05 4484244068.44 +UniRef50_Q3IXU6 8.98678526108e-05 1.66649951856e-05 -29552891842.6 +UniRef50_UPI000382350E hypothetical protein 1.11296172875e-08 2.2717173487e-07 87218854.0028 +UniRef50_M9VQS2 2.54840494703e-05 2.2355551626e-05 -1263012970.73 +UniRef50_A7ADI2 6.82949170034e-08 1.22076190981e-06 465265067.358 +UniRef50_E5AMF6 Ammonium transporter Methylammonium transporter 5.54739073956e-06 0.000138293256123 53591134830.1 +UniRef50_A7ADI0 5.7137422749e-06 2.47354713082e-06 -1308106541.33 +UniRef50_A6LZB2 FMN binding domain protein 1.17841619826e-06 8.65210794316e-06 3017221069.93 +UniRef50_C6STS8 2.31710819034e-05 7.08760092468e-06 -6493098637.61 +UniRef50_UPI00016AF87E drug resistance transporter, EmrB QacA family protein 1.32986964092e-06 8.18336656089e-07 -206512143.192 +UniRef50_P75839 UPF0702 transmembrane protein YcaP 1.2974823184e-05 5.12482593992e-06 -3169140217.73 +UniRef50_R1DSU7 5.62845953204e-07 8.57289507439e-07 118870476.073 +UniRef50_A2BIZ8 S adenosylmethionine synthase 4.20662378716e-05 7.43635546835e-06 -13980508482.7 +UniRef50_B0V5M9 1.45747486043e-06 4.50473292444e-05 17597759122.5 +UniRef50_P00909 Tryptophan biosynthesis protein TrpCF 3.54166348736e-05 9.87725147341e-06 -10310562482.1 +UniRef50_O52733 D xylose proton symporter 2.17730478771e-06 2.79486271425e-05 10404199084.3 +UniRef50_UPI00036FFA67 hypothetical protein, partial 1.84270076877e-08 4.87359662922e-07 189313867.369 +UniRef50_B0VLP6 1.50324204205e-06 5.11818691729e-05 20055871398.1 +UniRef50_Q89IB6 Phosphoribosylformylglycinamidine synthase 1 1.57736152424e-07 1.17957107564e-07 -16059288.5538 +UniRef50_Q9RX17 Virulence factor related protein 1.88664678812e-06 0.000290940028905 1.16694397445e+11 +UniRef50_E0XV99 1.61186082828e-05 1.15878914456e-05 -1829105985.33 +UniRef50_F8KHS4 RNA pseudouridylate synthase 0.000152563007978 4.89953990726e-05 -41811514632.4 +UniRef50_B0RBL3 Glutamate 1 semialdehyde 2,1 aminomutase 7.20381821829e-08 3.68603920056e-07 119727227.65 +UniRef50_N9IVN2 1.8718313497e-06 2.41221308046e-05 8982718931.82 +UniRef50_E3HHT4 TRAP transporter solute receptor, TAXI family protein 3 1.38087347704e-06 7.31628330408e-07 -262108232.829 +UniRef50_B3W6W6 Tryptophan synthase beta chain 6.12467410789e-08 7.18505671316e-08 4280894.70105 +UniRef50_UPI00046EC1CC hypothetical protein, partial 2.99796386583e-07 3.93532742432e-06 1467708492.92 +UniRef50_D8JFA0 6.86338161594e-07 7.70419082372e-05 30825680627.7 +UniRef50_Q2YTA2 Dephospho CoA kinase 0.000252264116564 1.5810517227e-05 -95459219664.3 +UniRef50_H3UL21 7.66122588082e-07 1.12351369412e-06 144283175.19 +UniRef50_A6H1Q5 NADH quinone oxidoreductase subunit I 5.28618717908e-08 1.3946703939e-07 34963568.9247 +UniRef50_Q9JZ44 30S ribosomal protein S1 4.73930770146e-05 4.15312174538e-05 -2366504637.8 +UniRef50_H0PUC5 Two component heavy metal response transcriptional regulator, winged helix family 1.07727720931e-05 0.000104515065548 37844914215.0 +UniRef50_A9KHN3 Acetylglutamate kinase 6.15181952171e-08 1.10685052818e-06 422013490.486 +UniRef50_A5WF94 3 ketoacyl CoA thiolase 3.7247850688e-06 4.832452634e-06 447178988.681 +UniRef50_Q87G35 Putative ABC transporter ATP binding protein VPA1482 1.0731138227e-07 1.36252248552e-07 11683782.8624 +UniRef50_UPI0003B5B988 transcription elongation factor NusA 8.66603011983e-08 9.72499789042e-08 4275182.83983 +UniRef50_R5Q2U1 9.87033248813e-08 4.02764410236e-06 1586161605.39 +UniRef50_D9VU00 Dihydrodipicolinate reductase 1.89515550924e-06 2.95434752189e-06 427608813.254 +UniRef50_G4NFF6 4.69505221762e-08 5.23073522468e-08 2162618.0352 +UniRef50_UPI00037B10ED hypothetical protein 1.03664558683e-07 1.23664829489e-07 8074354.7553 +UniRef50_P45135 Protein mrp homolog 2.61472174151e-05 1.40380855743e-05 -4888605119.89 +UniRef50_H8WB63 7.79566205882e-07 6.78238836697e-07 -40907102.3666 +UniRef50_A6SU21 SugE like protein 3.6296729697e-06 1.06740977781e-05 2843920739.96 +UniRef50_UPI000472171C hypothetical protein 5.75802643635e-08 1.75095303679e-06 683635368.251 +UniRef50_UPI00035A1B1C PREDICTED 4.17995665365e-07 6.65212298939e-07 99804388.6631 +UniRef50_W8FIF9 5.95244240245e-06 1.07753587976e-06 -1968059585.04 +UniRef50_W8WQR1 1.77883345285e-05 6.18927228839e-06 -4682683762.83 +UniRef50_F7ZBE6 Protein MazG 2.82656792687e-05 2.13739472998e-06 -10548309098.4 +UniRef50_P58213 2.63703632446e-05 1.03544313746e-05 -6465828233.5 +UniRef50_F2HMQ5 N acetylglucosamine 6 phosphate deacetylase 6.43968479551e-05 7.50686997599e-05 4308357531.95 +UniRef50_D4MT97 Predicted Zn dependent protease 7.78607141951e-06 3.77588455171e-05 12100376710.5 +UniRef50_UPI000475EEE1 glycine cleavage system protein H 1.05456470977e-06 3.40922136885e-07 -288106264.053 +UniRef50_E6SHW8 AMP dependent synthetase and ligase 6.18491516412e-07 0.000218503912219 87963018092.6 +UniRef50_A3SWD6 8.63312469525e-07 4.86486535341e-07 -152129253.804 +UniRef50_B1MZ61 Glycine tRNA ligase alpha subunit 7.50344888311e-05 3.68714847912e-05 -15406873043.6 +UniRef50_UPI00037B0949 hypothetical protein 2.9874387981e-07 1.1700641512e-06 351762685.862 +UniRef50_A7ZV33 Oligoribonuclease 4.63591576101e-05 4.12095890084e-05 -2078944036.82 +UniRef50_UPI0002889CD1 DNA mismatch repair protein MutS 2.09016360374e-08 1.92770969634e-07 69385759.047 +UniRef50_P0ABD2 3.46254033123e-05 8.71030184367e-05 21185857198.5 +UniRef50_A6LZ65 Citrate transporter 6.76984875882e-06 1.97202372133e-05 5228230738.22 +UniRef50_UPI000369A32E MULTISPECIES 2.59107594025e-07 3.05659659181e-07 18793639.9616 +UniRef50_I0IBX7 7.11389828123e-08 8.75323551486e-08 6618205.58146 +UniRef50_F8F839 Acetolactate synthase large subunit 1.59757637457e-06 7.27844668732e-06 2293437057.38 +UniRef50_C2QP87 4.33090153662e-08 1.97756722234e-06 780883774.171 +UniRef50_I3UCI5 Amino acid ABC transporter ATPase 4.59576637191e-05 6.71174329992e-06 -15844059674.8 +UniRef50_W7CBE0 2.12403068332e-07 1.88669683467e-07 -9581458.71138 +UniRef50_C1AA13 Twitching mobility protein 3.78032691844e-06 4.59899377796e-05 17040537874.8 +UniRef50_G7M9D3 Cell envelope related transcriptional attenuator 6.14103279842e-06 1.29906446137e-05 2765272344.02 +UniRef50_UPI0003B60D83 MFS transporter, partial 5.30939037082e-08 1.08479449422e-07 22359824.4617 +UniRef50_UPI000465FF4A chemotaxis protein CheW 4.72687631698e-07 6.80226776573e-07 83786099.5777 +UniRef50_D3QH68 TetR family regulatory protein 0.000124031594772 1.00485096299e-05 -46016370201.6 +UniRef50_Q9RR78 Protoheme IX farnesyltransferase 1.27385598041e-06 0.000715217508472 2.88227813585e+11 +UniRef50_A8AYI7 N acetyl gamma glutamyl phosphate reductase 5.97085659553e-05 1.17359702781e-05 -19367125564.8 +UniRef50_UPI00037EBF1E hypothetical protein 4.74514829637e-08 8.00084283989e-08 13143638.3908 +UniRef50_A1TJ50 LemA family protein 7.56090328883e-06 5.99918797664e-05 21167028604.4 +UniRef50_UPI000469FCDE hypothetical protein 2.84008111162e-07 1.94116823011e-08 -106820825.294 +UniRef50_UPI00046F4540 hypothetical protein 1.19589525856e-07 3.81219079458e-07 105623061.345 +UniRef50_UPI0003C13F1D PREDICTED 3.95178452896e-08 5.98970003707e-08 8227314.9866 +UniRef50_I4D4X7 1.71431691839e-07 2.68668665335e-07 39255759.4322 +UniRef50_UPI00037D4FA3 hypothetical protein 3.49578117886e-08 4.84222903558e-08 5435775.22531 +UniRef50_Q7VQS0 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.44037377352e-05 9.29769516578e-06 -2061372043.46 +UniRef50_H8GZE1 3.25088451527e-06 1.48013018605e-06 -714875252.305 +UniRef50_UPI00037860D6 hypothetical protein 3.78368230985e-08 7.34732696424e-08 14386870.7781 +UniRef50_M5AS85 1.22922046606e-06 4.16781310766e-07 -327991656.742 +UniRef50_A5IQJ5 Serine type D Ala D Ala carboxypeptidase 9.39782053142e-05 1.05495328523e-05 -33681178857.8 +UniRef50_K5C8L6 Protein containing YCII related domain protein 2.42150035936e-07 1.52145090263e-07 -36336101.0531 +UniRef50_C5YUZ9 5.9843284562e-08 3.09655671296e-06 1225958475.71 +UniRef50_F2AB45 1.32479613354e-06 1.75479112631e-06 173594255.213 +UniRef50_UPI00035D3DCC hypothetical protein 8.09009192981e-05 8.33790777094e-06 -29294578201.8 +UniRef50_Q8R7K0 L threonine 3 dehydrogenase 3.15836942269e-07 5.37379312655e-07 89439373.5554 +UniRef50_P77258 N ethylmaleimide reductase 3.22545585348e-05 2.26963593882e-05 -3858762287.78 +UniRef50_UPI000373C080 hypothetical protein 6.17915318855e-07 6.22455953001e-08 -224330686.233 +UniRef50_Q899P3 3 oxoacyl [acyl carrier protein] synthase 3 1.67086727971e-06 1.13043782201e-07 -628912462.589 +UniRef50_UPI00026577FF PREDICTED 4.94030608008e-07 3.53276542031e-07 -56824143.6815 +UniRef50_A7ZR14 Aminomethyltransferase 3.41692137989e-05 8.17011054895e-06 -10496157026.9 +UniRef50_UPI00037DABB6 hypothetical protein 7.94970773966e-08 1.26845829304e-07 19115272.1795 +UniRef50_UPI00047B26D6 30S ribosomal protein S2 2.47912191462e-07 2.04337265274e-07 -17591732.4266 +UniRef50_UPI00045613AA hypothetical protein PFL1_01689 1.96701031738e-08 3.24760820219e-08 5169930.80801 +UniRef50_Q48UW8 Endoribonuclease YbeY 6.84940186393e-05 8.6061869733e-06 -24177452549.9 +UniRef50_UPI000429C143 hypothetical protein 2.31497690001e-07 3.39248674395e-07 43500394.6531 +UniRef50_P25129 Attachment protein G3P 1.71007626551e-05 2.82599717884e-06 -5762897993.85 +UniRef50_UPI0003B5C03B phospholipase 2.88810149346e-08 3.16169349094e-08 1104524.46734 +UniRef50_UPI000333464B 6.30860381999e-08 5.22704324019e-08 -4366392.78306 +UniRef50_Q2NI01 MrtD 4.04771513943e-05 8.01764810481e-06 -13104299800.9 +UniRef50_UPI00023B2A49 9.43784307624e-08 1.05998975502e-06 389829140.986 +UniRef50_M1MHF7 1.20474251758e-06 7.72049052066e-06 2630487426.06 +UniRef50_D3E0C7 Energy converting hydrogenase B subunit N EhbN 3.12451198043e-05 1.39386204036e-05 -6986846182.69 +UniRef50_UPI000364325F hypothetical protein 2.25171448329e-07 6.85591439476e-07 185877200.415 +UniRef50_A3MLM0 Deoxycytidine triphosphate deaminase 3.45872609701e-05 5.24939372253e-05 7229144943.85 +UniRef50_D2BB98 Fibrocystin L like protein 8.96630585457e-07 1.8267476311e-06 375499665.146 +UniRef50_F9Z2N2 4 hydroxybutyrate coenzyme A transferase 9.5084631958e-07 6.47231565511e-05 25745664214.7 +UniRef50_UPI00047E641A DNA mismatch repair protein MutL 2.89349967145e-08 7.04112293621e-08 16744464.0904 +UniRef50_A3PH43 Cell wall hydrolase, SleB 0.000115765365149 7.63292166524e-05 -15920857084.0 +UniRef50_C1N9N9 Predicted protein 2.5538558276e-06 2.34832769311e-06 -82974230.0074 +UniRef50_A9AQ95 Major facilitator superfamily MFS_1 4.87653976724e-06 4.71276931076e-06 -66116142.9705 +UniRef50_D3DZP5 Peptidase U62 family 4.12830386917e-05 1.68235604338e-05 -9874591524.27 +UniRef50_A4KVC4 1.26663061785e-06 4.54971182763e-07 -327676874.126 +UniRef50_Q8CTX4 0.000147413890681 4.68714336682e-05 -40590223690.8 +UniRef50_A4WT83 Cytochrome c, monohaem 6.81282393176e-05 2.28123632505e-05 -18294575256.6 +UniRef50_UPI00031E94BD hypothetical protein 2.93510762668e-08 3.32784438071e-08 1585526.47024 +UniRef50_P37923 Chaperone protein FimC 1.43599847274e-05 3.33289279099e-05 7657995137.88 +UniRef50_UPI00046D0AE5 30S ribosomal protein S2 2.05857262086e-07 1.88000622267e-07 -7208944.62054 +UniRef50_UPI0003EF5726 hypothetical protein 5.3118200715e-06 1.3981721516e-06 -1579987691.12 +UniRef50_UPI0004651F70 hypothetical protein, partial 2.67548122037e-07 1.95065787923e-07 -29262007.7401 +UniRef50_Q8CTX9 0.00022858387238 8.40449975597e-05 -58352117456.3 +UniRef50_U5MPW8 Lysophospholipase L2 2.39672711771e-06 7.6881644043e-06 2136218165.83 +UniRef50_D8JMF9 9.24580091871e-06 7.55114520272e-05 26752256523.5 +UniRef50_B3ZX35 Protein rlx 1.67708729831e-06 2.39912432695e-07 -580205129.366 +UniRef50_UPI0003F4A454 hypothetical protein TREMEDRAFT_73314 1.35854000757e-07 8.55599413717e-08 -20304328.9514 +UniRef50_A6M075 Aminotransferase class III 2.71311619178e-06 1.1845673694e-05 3686925532.73 +UniRef50_I3TH40 Aromatic compounds catabolic protein 1.19083831394e-07 2.74005739699e-06 1058119191.4 +UniRef50_UPI0003B5A455 DNA directed RNA polymerase subunit alpha 3.79965656263e-07 4.4485943329e-07 26198414.122 +UniRef50_A4IQZ4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 7.66244979111e-06 1.41810195599e-05 2631626607.51 +UniRef50_G8AR80 9.67391462525e-07 4.56503863882e-07 -206251592.868 +UniRef50_M4FRG3 2.71146734737e-08 3.01211863924e-08 1213766.15934 +UniRef50_P55468 dTDP 4 dehydrorhamnose 3,5 epimerase 1.52914090798e-07 1.74027863386e-07 8523889.0889 +UniRef50_P44740 Probable tRNA N6) methyltransferase 4.33784612183e-05 3.02888928405e-06 -16289617334.8 +UniRef50_Q2GCD8 DNA directed RNA polymerase subunit beta 7.83272066428e-08 1.32289192928e-07 21785116.0514 +UniRef50_A0A017HAS6 4.09079559706e-07 4.9576697071e-07 34996771.5965 +UniRef50_X8LV27 4.57245603387e-06 2.6248392111e-07 -1739988631.23 +UniRef50_R5PFJ6 Polar amino acid transport system substrate binding protein 1.15418676073e-05 1.45222052887e-05 1203198894.84 +UniRef50_P77376 2.99894675964e-05 1.96255174004e-07 -12027885458.8 +UniRef50_P44916 Octaprenyl diphosphate synthase 4.69452374331e-05 3.8524040279e-05 -3399740630.82 +UniRef50_P77375 2.69817211897e-05 5.92608772976e-06 -8500417609.44 +UniRef50_B0V636 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 2.11605975358e-06 8.07581517631e-05 31748777591.2 +UniRef50_Q9RAA9 DNA polymerase I 4.0017259366e-08 4.39816386934e-07 161403813.886 +UniRef50_V9VRV3 4.70684686053e-06 4.40166393752e-07 -1722511262.5 +UniRef50_U3TV34 PoxB protein 5.47081143264e-06 6.21719379354e-06 301323718.237 +UniRef50_Q83IY4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.91151502156e-05 0.000114241908351 34366716882.1 +UniRef50_Q9HXY3 Putative zinc metalloprotease PA3649 2.34120398045e-06 1.33728319328e-06 -405295141.274 +UniRef50_UPI000463EF04 hypothetical protein 6.39683220799e-07 1.32062776682e-07 -204932602.493 +UniRef50_Y2C2K5 DNA gyrase subunit A 0.000131386696845 4.09070558631e-05 -36527741374.4 +UniRef50_Q93JQ8 Argininosuccinate synthase 3.41590490957e-08 1.66304231786e-07 53348631.8557 +UniRef50_G2JD71 0.000116667876823 0.00011367094493 -1209898181.69 +UniRef50_D3QGS2 0.000173237787265 5.3662040065e-05 -48274196504.1 +UniRef50_UPI0003FE9842 hypothetical protein 1.13086164475e-07 3.71690550768e-07 104401764.179 +UniRef50_UPI0003B556E0 long chain fatty acid CoA ligase 6.95770188717e-08 5.96310452335e-08 -4015311.60856 +UniRef50_A7TDI2 Lipoyl synthase, mitochondrial 5.41320472912e-08 3.53734973197e-07 120953377.73 +UniRef50_U0D4D4 Membrane associated protein uidC 7.69312227561e-06 4.16917701458e-06 -1422659945.55 +UniRef50_C5D363 Ribosomal RNA small subunit methyltransferase A 5.38298523211e-07 2.21706798892e-07 -127811964.125 +UniRef50_Q5P9L5 GMP synthase [glutamine hydrolyzing] 3.01703763114e-08 1.5244162893e-07 49362405.1193 +UniRef50_J3N4D6 1.35203539437e-06 1.04306696671e-07 -503723386.614 +UniRef50_Q9RZ46 Minor tail protein gp26 related protein 1.31382037935e-06 0.000570964054858 2.29974790054e+11 +UniRef50_A5EJD2 Leucyl phenylalanyl tRNA protein transferase 2.10614009764e-07 7.51038630628e-07 218176051.199 +UniRef50_C6SU64 4.51230808402e-05 3.5189023513e-05 -4010500847.58 +UniRef50_Q1GWT5 Adenosylhomocysteinase 6.44578786367e-05 3.67440048073e-05 -11188430952.4 +UniRef50_P27254 Probable GTPase ArgK 4.33737672237e-05 9.70529983431e-06 -13592373443.7 +UniRef50_C3KLK5 Peroxiredoxin 6 1.8294959072e-06 3.12542071707e-05 11879117018.9 +UniRef50_Q0C1A6 Glutamate tRNA ligase 1 3.0839922753e-07 1.49948512856e-07 -63968497.9228 +UniRef50_G2JIJ8 2.6583520342e-06 9.59431371148e-05 37660212470.1 +UniRef50_A6LX78 2.49637318825e-06 9.58522200455e-06 2861855257.1 +UniRef50_F0MTD0 1.01541655481e-06 5.22198196824e-06 1698242077.76 +UniRef50_U5MQI3 Thiamine biosynthesis lipoprotein ApbE 2.41720225489e-06 4.02706678093e-06 649922064.422 +UniRef50_A6LX73 5.42087437476e-06 1.42943561335e-05 3582333475.87 +UniRef50_UPI00036C9D5C hypothetical protein 3.42807379328e-08 1.23868235131e-07 36167571.9811 +UniRef50_A6LX76 9.6957017689e-07 1.55021892496e-06 234415024.957 +UniRef50_A0A023S2E8 Peptidase M23 1.63413847988e-06 0.000107208243058 42621561558.1 +UniRef50_F5M423 Methyltransferase type 12 2.44802248696e-05 1.43316655903e-05 -4097097917.88 +UniRef50_K7RRT6 Kinase domain containing protein 3.32144534658e-06 6.81451108194e-05 26170109227.2 +UniRef50_G8N5W7 Inner membrane translocator 3.31566971752e-06 0.000517546036916 2.07601109554e+11 +UniRef50_R0YL20 Filamentous hemagglutinin family N terminal domain protein 2.0441479545e-07 4.16598926028e-06 1599336225.44 +UniRef50_A5G215 4.27756332583e-07 5.27364866198e-07 40213187.3545 +UniRef50_P42811 Putative 26S protease regulatory subunit homolog MTBMA_c13930 3.90983299523e-05 5.23414707951e-06 -13671386186.0 +UniRef50_I7ITF3 NADH ubiquinone oxidoreductase subunit 2.89300910424e-07 1.00193976644e-06 287701051.236 +UniRef50_M1MT68 Peptidase U61 LD carboxypeptidase A 1.32296491424e-06 2.37108130814e-05 9038249034.89 +UniRef50_Q21M93 DNA directed RNA polymerase subunit beta 2.42872230869e-06 7.85635682442e-05 30736571583.8 +UniRef50_Q6MMA3 Methionine tRNA ligase 5.18714007246e-08 5.07760260994e-08 -442216.177951 +UniRef50_A7WZS8 Triosephosphate isomerase 8.74139307289e-05 2.3482651768e-05 -25809841841.5 +UniRef50_R4ZRY7 3.51529514249e-05 2.20619896211e-05 -5284981924.36 +UniRef50_UPI000475A496 hypothetical protein 2.17027666319e-07 7.08140739626e-07 198268374.329 +UniRef50_UPI00046686EA amidohydrolase 5.20595082215e-08 2.72132776178e-07 88846278.8769 +UniRef50_D8TSH0 1.49871458903e-08 6.29367143537e-09 -3509662.31838 +UniRef50_B9DIX2 Probable cytosol aminopeptidase 0.000232752442312 5.37076375886e-05 -72282584793.5 +UniRef50_E7PW89 Sensor histidine kinase 5.38686648081e-05 1.87053297238e-05 -14195869876.2 +UniRef50_B9DZ45 7.47753003601e-08 1.97358986519e-07 49488538.3734 +UniRef50_UPI0003B2E548 cation 1.18403186161e-05 3.84445443551e-06 -3228028489.99 +UniRef50_A3PHP3 0.000141199920803 2.79353398373e-05 -45726301248.7 +UniRef50_UPI000414700A hypothetical protein 3.47647275921e-08 5.19125243252e-08 6922775.96828 +UniRef50_UPI0003B3DD40 PhoP family transcriptional regulator 1.72375840845e-07 3.92648476137e-07 88926765.9166 +UniRef50_UPI000371B1FC hypothetical protein, partial 7.59373699621e-07 8.99978568127e-07 56763910.8316 +UniRef50_D8IJC7 Glycerol dehydrogenase 5.4114262241e-05 2.48742591079e-05 -11804548080.0 +UniRef50_D3F4J3 Transcriptional regulator, PadR like family 5.2823845517e-07 1.41065002718e-06 356240380.028 +UniRef50_Q03JI6 CRISPR associated endonuclease Cas9 2 1.15235765919e-05 2.34159099664e-06 -3706880260.44 +UniRef50_UPI000426A521 dihydrolipoamide succinyltransferase 1.47003462106e-07 1.5313215911e-06 558866216.167 +UniRef50_UPI0004698685 hypothetical protein 3.69071644759e-06 2.46267942491e-06 -495773615.765 +UniRef50_A0A038FK84 Hydrogenase maturation protein 5.25935371225e-06 1.06127815949e-06 -1694814616.83 +UniRef50_UPI00035FEE6E hypothetical protein 3.06339169279e-07 2.06624090628e-06 710493927.65 +UniRef50_UPI0002F0DDC3 hypothetical protein 3.15398246399e-07 4.84395546885e-08 -107774499.795 +UniRef50_UPI00029B3C33 transcriptional regulator 4.88913368382e-07 9.12806244635e-07 171130755.894 +UniRef50_UPI000475F4D6 macrolide ABC transporter ATP binding protein 7.44858932525e-08 3.11569392971e-07 95713518.1779 +UniRef50_Q98HW8 Prolipoprotein diacylglyceryl transferase 4.5585750548e-07 1.92599020538e-07 -106280680.916 +UniRef50_P32694 2.19717304e-05 4.81698357678e-06 -6925581804.94 +UniRef50_J3LNJ2 4.03299839417e-07 6.20542239619e-07 87703422.8256 +UniRef50_P32690 3.55862427706e-05 4.06183868498e-05 2031538316.12 +UniRef50_UPI0001D2E55C hypothetical protein 2.97440178548e-06 4.4053389224e-07 -1022953562.56 +UniRef50_P20368 Alcohol dehydrogenase 1 0.000210891411543 0.000118515724647 -37293198377.1 +UniRef50_A6LVI5 1.45560149942e-06 1.27140806476e-05 4545186189.2 +UniRef50_UPI0002FA2E2D hypothetical protein 1.48571235329e-07 6.42035545351e-06 2531996252.33 +UniRef50_K6YA48 4.50189948246e-07 1.7822213622e-07 -109796743.135 +UniRef50_R4X5W4 1.92803158301e-07 3.28635601367e-07 54837224.1173 +UniRef50_P15202 Peroxisomal catalase A 2.92721090668e-08 4.58969008916e-08 6711632.46881 +UniRef50_UPI0003F5184A hypothetical protein 1.84841271349e-07 8.66608380463e-08 -39636645.7337 +UniRef50_A4WW59 0.000134029806027 2.35960557507e-05 -44583460160.9 +UniRef50_UPI000475B0A4 hypothetical protein 1.60792793231e-06 1.64922777744e-07 -582558888.564 +UniRef50_A9U8B3 Predicted protein 6.33052988578e-06 2.77740817252e-06 -1434438837.35 +UniRef50_P35170 Phospho 2 dehydro 3 deoxyheptonate aldolase 1.37418085905e-07 4.08223627824e-05 16425011434.4 +UniRef50_D5ALC4 Translation initiation factor IF 2 7.91537229456e-05 2.12634230814e-05 -23371024449.0 +UniRef50_Q9KF52 Phosphoribosylamine glycine ligase 8.73395999244e-05 9.83266683442e-05 4435614347.56 +UniRef50_F0N1G5 Transcription repair coupling factor 2.90448311514e-07 1.24593796769e-05 4912746921.79 +UniRef50_A4XNW6 1.1636759666e-06 1.20882384097e-06 18226750.9099 +UniRef50_S1SDR1 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 9.93585703834e-08 1.65346783192e-07 26640251.2773 +UniRef50_F6BHL2 PTS system transcriptional activator 2.73815806719e-06 8.67767748339e-06 2397856874.42 +UniRef50_D8GIQ6 3.34552566439e-06 1.24092368059e-05 3659131412.07 +UniRef50_I3XD08 Lipid A export ATP binding permease protein MsbA 5.01219948662e-05 1.47898121014e-05 -14264035756.8 +UniRef50_UPI00016C3F49 ABC transporter, ATP binding protein 7.02707742863e-08 5.41720103033e-07 190329879.349 +UniRef50_L7WY79 Alpha beta hydrolase 0.000252169666268 7.2301603583e-05 -72614944135.3 +UniRef50_Q9A759 0.000132160888016 2.28452121088e-05 -44132079817.8 +UniRef50_Q1GFV5 Dihydrofolate reductase 2.1714295625e-05 2.04370586388e-05 -515636244.789 +UniRef50_C5WCX1 4 hydroxythreonine 4 phosphate dehydrogenase 2.3813093082e-05 1.81547154827e-06 -8880709754.33 +UniRef50_N5EDX1 PTS system EIIBC component 3.90995404233e-07 8.90537071456e-07 201671101.124 +UniRef50_A6UZL3 DNA directed RNA polymerase subunit alpha 1.64332231972e-05 8.47793763689e-06 -3211646403.03 +UniRef50_K0C9F8 1.5743008541e-05 9.37513349825e-06 -2570789297.37 +UniRef50_O49213 GDP L fucose synthase 1 0.000127073595553 3.71311231703e-05 -36310879819.1 +UniRef50_M4RRJ2 4.96604964797e-07 1.04831326714e-05 4031683783.63 +UniRef50_V9WGF1 ABC type multidrug transport system, ATPase and permease component 6.30132908893e-05 1.98410102441e-05 -17429179479.9 +UniRef50_H9UWR6 Modulator of drug activity 2.00672198272e-05 4.77601140485e-06 -6173248484.31 +UniRef50_P45548 Phosphotriesterase homology protein 5.60536953716e-05 9.58512884603e-06 -18759930539.8 +UniRef50_G4NPZ1 Fructokinase 6.22498596144e-05 1.38432027251e-05 -19542361402.7 +UniRef50_Q8XNN2 Cell division protein FtsX 1.28542334456e-06 1.17514966866e-05 4225282241.33 +UniRef50_G7R423 1.80953601005e-05 6.63633045389e-06 -4626150886.44 +UniRef50_F3U4W9 Transcriptional regulator, DeoR family protein 1.871222442e-05 9.11275791129e-06 -3875422428.27 +UniRef50_S9Q9Z7 Mobile element protein 1.65922696409e-06 3.01487556894e-07 -548136060.023 +UniRef50_F0JDG6 TRAP transporter solute receptor, TAXI family 6.96490374455e-07 2.08220301174e-07 -197120620.331 +UniRef50_Q9GV41 Prostaglandin F synthase 0.00018250567278 2.42125855184e-06 -72702287908.1 +UniRef50_C6SP93 1.1709474591e-05 6.94182930834e-06 -1924756906.2 +UniRef50_B9L064 Glutamine synthetase 6.73646242146e-06 5.60393555103e-06 -457214995.26 +UniRef50_C5N176 0.000147627752317 1.22016400141e-05 -54673183402.0 +UniRef50_UPI0003694E1D hypothetical protein 1.00899805813e-07 1.27616863184e-07 10786003.9158 +UniRef50_Q9RWP2 1.95588595265e-06 0.000145760928126 58055860211.6 +UniRef50_B9E1D0 2.26239975069e-06 1.63665822815e-05 5694031565.47 +UniRef50_UPI0004785B9E hypothetical protein 3.97371741995e-08 4.19851795213e-08 907547.334538 +UniRef50_UPI00036CFE81 hypothetical protein 8.7324294485e-07 3.28856828603e-07 -219775355.498 +UniRef50_B2HZJ1 AraC type DNA binding domain containing protein 1.20602552348e-06 6.8632598413e-05 27220934892.6 +UniRef50_UPI00035F4FB6 hypothetical protein 2.64816217697e-07 4.01965301552e-07 55368768.1608 +UniRef50_D5T0L1 Amino acid permease 6.47173537807e-05 9.00170684477e-06 -22493090375.9 +UniRef50_A4WYK2 2.64011848506e-05 3.66138483067e-06 -9180336316.76 +UniRef50_UPI0003618C0D peptide ABC transporter substrate binding protein 7.31673146867e-08 2.79543939198e-07 83316775.8411 +UniRef50_H0Q5L4 Cation transport protein 3.29791787381e-08 3.09737631216e-08 -809610.893598 +UniRef50_A3M2E6 4.06144557364e-06 0.000109397020628 42525264262.2 +UniRef50_UPI0003622857 hypothetical protein, partial 1.95311573081e-07 1.19644442439e-07 -30547749.1803 +UniRef50_A3M2E8 6.88388659374e-06 8.42670190322e-05 31240520163.2 +UniRef50_A3M2E9 4.01532881888e-06 0.000139397382747 54655396495.4 +UniRef50_U3T6D9 AsnC family transcriptional regulator 2.14185130832e-05 2.86076911619e-05 2902359411.51 +UniRef50_B7V4F8 7.97894149226e-06 2.74608754132e-06 -2112567354.33 +UniRef50_E6UQ90 Radical SAM domain protein 5.03367236464e-06 2.82397569352e-06 -892081662.159 +UniRef50_Q8X9H6 2.7499416301e-05 9.83393405668e-06 -7131771961.87 +UniRef50_Q0TD44 L tartrate dehydratase subunit beta 2.98680793723e-05 5.55454617915e-06 -9815671710.7 +UniRef50_L8A618 PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component 5.59302893522e-05 4.80510153814e-05 -3180959591.58 +UniRef50_V5VGA0 Signal peptide protein 4.82375317798e-06 7.44053354232e-05 28090938614.4 +UniRef50_UPI0002FD25A8 hypothetical protein 1.03213676319e-07 5.80055886582e-08 -18251059.7543 +UniRef50_UPI000345C556 hypothetical protein 1.90228729827e-08 3.95467401604e-07 151975275.698 +UniRef50_A5UKY8 30S ribosomal protein S3Ae 2.14846309697e-05 3.11954266055e-06 -7414211515.36 +UniRef50_UPI00036B4C40 hypothetical protein 2.36314494077e-08 3.52251802691e-08 4680531.41982 +UniRef50_UPI0003C13594 7.83916616203e-08 2.02570109128e-07 50132363.0999 +UniRef50_R4LIM7 CaiB BaiF family protein 7.79716256765e-06 3.02978971342e-06 -1924646923.5 +UniRef50_A0A047EGF5 PE PGRS family protein PE_PGRS16 2.75805450284e-07 1.02153843029e-07 -70105284.7937 +UniRef50_UPI0003B5C426 histidinol dehydrogenase 3.70578946143e-08 1.24753297879e-07 35403710.4416 +UniRef50_Q5HR00 Protein NrdI 0.000400234532401 7.61684633096e-05 -1.3082944883e+11 +UniRef50_F2U7G5 1.24538683352e-07 2.4525802818e-07 48735880.9 +UniRef50_UPI0003677280 hypothetical protein 5.88755624474e-07 1.53735176875e-07 -175623092.997 +UniRef50_A7GU01 Cyclic pyranopterin monophosphate synthase 4.63457530436e-08 2.33547243964e-06 924148534.124 +UniRef50_UPI00046E8F79 hypothetical protein 3.61649492995e-07 6.82403336467e-07 129492262.702 +UniRef50_X2JGW4 TraU 9.30859965289e-07 7.13691384723e-08 -346986993.925 +UniRef50_G2TBP0 Nitrogenase 7.89924351728e-06 1.58846123968e-05 3223791408.16 +UniRef50_Q9AHT6 Pneumococcal vaccine antigen A 7.06728428228e-05 3.02953898844e-05 -16300873238.3 +UniRef50_UPI0003696E91 hypothetical protein 2.74125845592e-06 3.72634466828e-07 -956242570.681 +UniRef50_Q88W26 ATP dependent protease ATPase subunit HslU 0.000210215097947 6.90060970102e-05 -57007806507.6 +UniRef50_Q04796 4 hydroxy tetrahydrodipicolinate synthase 6.38135487892e-08 2.65543206509e-05 10694542792.2 +UniRef50_B0TPS5 Tryptophan halogenase 1.06035390125e-06 0.000101073707526 40376618160.3 +UniRef50_UPI000467BC4F hypothetical protein 2.29075201941e-07 2.27960693294e-07 -449940.817353 +UniRef50_X0UMF5 Marine sediment metagenome DNA, contig 3.53271395578e-07 6.24333595275e-07 109431136.325 +UniRef50_B7UWL8 Dihydroorotate dehydrogenase 2.71635660848e-06 8.89916893864e-06 2496077209.32 +UniRef50_E8NJT6 3.23994161222e-06 1.25673687512e-05 3765596796.41 +UniRef50_UPI0003775EDE hypothetical protein 1.7347508144e-07 5.59435333146e-07 155816889.879 +UniRef50_P57872 Ribosome binding factor A 2.13671314445e-05 4.73770115279e-06 -6713505074.82 +UniRef50_P0AC31 Cell division protein FtsX 4.11021748974e-05 5.84656618942e-06 -14233121870.4 +UniRef50_G7LXG1 4.85693888023e-06 2.46629693841e-05 7995937561.75 +UniRef50_J0XSC7 1.5099439554e-05 1.24890603647e-05 -1053842111.68 +UniRef50_R4K915 1.13541765153e-05 3.21578989328e-06 -3285566548.54 +UniRef50_Q5P303 2.37272025452e-07 3.34429445262e-07 39223642.6329 +UniRef50_UPI000367F4BF hypothetical protein 2.92375073799e-08 2.62438311301e-06 1047692127.01 +UniRef50_UPI000363BEF2 hypothetical protein 2.19077214907e-07 2.33127021734e-07 5672079.42658 +UniRef50_A4V9J4 1.56904273663e-05 2.25100814816e-06 -5425658458.57 +UniRef50_UPI00025579C9 chemotaxis specific methylesterase 5.22905125578e-07 8.45946131378e-08 -176951332.547 +UniRef50_UPI00036CE600 hypothetical protein 4.00324902463e-08 7.38106950841e-08 13636675.7982 +UniRef50_E1V509 APC family transporter 8.11216308394e-07 3.08011314695e-06 915981496.222 +UniRef50_UPI000476EDB0 hemolysin 2.00848242997e-06 2.41291351039e-06 163273790.093 +UniRef50_Q9I351 GTP cyclohydrolase 1 2 1.7292847707e-06 9.58650885809e-07 -311114356.072 +UniRef50_UPI0003836B4E PREDICTED 1.8892736349e-08 1.2705037091e-08 -2498050.12206 +UniRef50_G7U615 1.77708788598e-05 3.93897233991e-05 8727792833.57 +UniRef50_Q8XD75 2.91742715009e-05 5.59638810673e-06 -9518680859.4 +UniRef50_G2JM22 Phosphoserine phosphatase 1.76670509603e-06 6.7144240808e-05 26393713439.5 +UniRef50_Q8CU16 8.89676507234e-05 2.42772330841e-05 -26116315441.7 +UniRef50_D3QDN7 Ribosomal RNA small subunit methyltransferase D 0.000227171741392 9.2560174895e-05 -54344341264.5 +UniRef50_Q8CU14 8.6117363047e-05 2.67260679592e-05 -23976994640.1 +UniRef50_A1JPN5 Bifunctional polymyxin resistance protein ArnA 3.04913333159e-05 1.01477494726e-05 -8212954441.39 +UniRef50_W4K6C3 2.18705924928e-06 1.33457800591e-06 -344157139.07 +UniRef50_A6LT03 4.54880619572e-06 3.63205344347e-05 12826636573.0 +UniRef50_W1MFW3 30S ribosomal protein S3 2.20752040266e-06 3.79016092237e-06 638931398.99 +UniRef50_UPI0004765EE6 hypothetical protein 3.74475322924e-08 7.25023700227e-08 14152068.163 +UniRef50_A6LT04 1.60632335681e-06 2.41357626916e-05 9095411126.77 +UniRef50_UPI000377D609 hypothetical protein 3.72871906153e-07 7.44468186073e-08 -120477869.93 +UniRef50_J7I7M7 ATPase P 5.46403774584e-07 2.4764419815e-06 779180108.366 +UniRef50_UPI0004737F94 penicillin binding protein 2.35078221763e-07 8.5829013104e-08 -60253737.0294 +UniRef50_B2UY66 Hydroxyethylthiazole kinase 4.37292736761e-06 7.73354708095e-06 1356723417.72 +UniRef50_UPI0003B5F72E hypothetical protein 2.31943133735e-07 2.16866228638e-07 -6086731.60209 +UniRef50_X5ETF8 6.21593215276e-07 4.65592646253e-06 1628709838.75 +UniRef50_D4HB94 Precorrin 4 C methyltransferase 4.94178443363e-06 3.35819149171e-05 11562372130.1 +UniRef50_A0EVL6 Conjugal transfer entry exclusion protein 1.72630787585e-06 0.000140873932711 56175603679.3 +UniRef50_T8R2K9 5.81989159472e-07 1.65630675506e-06 433715196.699 +UniRef50_UPI00035C3E51 hypothetical protein 4.6876413051e-07 1.18670201193e-07 -141337215.401 +UniRef50_K4IEB3 1.84841797943e-07 2.66556421873e-07 32989196.4317 +UniRef50_A3U1Q1 3.0934269791e-06 2.67209744524e-07 -1140978579.19 +UniRef50_Q6A9J7 UPF0042 nucleotide binding protein PPA0813 1.29571849717e-06 6.39956210508e-05 25312720075.2 +UniRef50_E2ZUC7 5.48096082648e-06 1.36356430583e-05 3292145286.19 +UniRef50_B2UUB5 3.39497954356e-06 3.45125684779e-05 12562552508.5 +UniRef50_UPI00047DB1F7 hypothetical protein 1.90874833008e-06 5.79052363126e-06 1567120323.83 +UniRef50_W7QIQ7 8.24313707996e-06 8.02313945608e-07 -3003951608.5 +UniRef50_UPI00034F4369 PREDICTED 3.61234068909e-07 6.66468107359e-07 123226726.965 +UniRef50_R9E884 7.80367687379e-07 3.82989422721e-07 -160426481.822 +UniRef50_C3G5A7 N acyl L amino acid amidohydrolase 0.00023767918192 7.48991295746e-05 -65716304667.5 +UniRef50_Q3IW43 8.52816128941e-05 2.85121577913e-05 -22918525664.6 +UniRef50_O32047 Protein translocase subunit SecDF 4.91284626127e-05 2.00275155189e-05 -11748409450.5 +UniRef50_A9M2X4 1.49796027328e-06 3.37903974459e-05 13036853159.3 +UniRef50_M1XDM0 Transcriptional regulator, PadR family 1.37665750975e-06 3.88810176642e-07 -398806090.626 +UniRef50_UPI0003709A53 hypothetical protein 2.72097038311e-07 2.06987466682e-07 -26285533.0509 +UniRef50_M9VF07 2.69203179129e-06 5.37062162821e-05 20595052293.4 +UniRef50_E8SEY3 Salicylate hydroxylase 0.000195753234114 5.05767729586e-05 -58609518883.8 +UniRef50_Q7NF32 Cobyrinic acid A,C diamide synthase 1.15150508965e-07 2.31998288631e-06 890117887.068 +UniRef50_D9VBV2 3.0226667626e-07 7.29568360309e-08 -92575196.4486 +UniRef50_C4Z354 3 hydroxybutyryl CoA dehydrogenase 5.25289662392e-05 2.1461628737e-05 -12542265388.7 +UniRef50_UPI0004720BAF hypothetical protein 9.86559358188e-08 2.20013592118e-07 48993575.0738 +UniRef50_Q6FF05 Primosomal protein N directs replication fork assembly at D loops, ATP dependent 6.66151745013e-07 5.47911417802e-05 21850922665.5 +UniRef50_U4PWH4 2.61913615361e-07 9.67662576361e-07 284919516.069 +UniRef50_UPI000476026B molybdate ABC transporter permease 1.08740502436e-07 2.03846595269e-07 38395496.7597 +UniRef50_Q5Z022 9.19778025388e-08 3.08586985076e-07 87447785.0838 +UniRef50_UPI00035E2839 hypothetical protein 6.20286605998e-07 1.42023384128e-07 -193080731.619 +UniRef50_Q8NV29 1.67854202316e-05 3.78611160516e-06 -5247980411.93 +UniRef50_UPI0003B76DAF hypothetical protein, partial 5.86624226013e-07 1.85537711529e-06 512211110.751 +UniRef50_I0K765 2.99919173565e-08 9.97400191537e-07 390554591.721 +UniRef50_UPI00037AA1C6 hypothetical protein 1.03627822539e-07 1.43725003496e-06 538399652.539 +UniRef50_UPI000378C483 hypothetical protein 3.63403721345e-07 1.55630744224e-07 -83880500.5249 +UniRef50_UPI0002036836 PREDICTED 2.10659427784e-08 2.09633401176e-08 -41421.9532412 +UniRef50_UPI0003757D0F MULTISPECIES 9.02825398134e-07 1.25944082343e-07 -313636520.591 +UniRef50_UPI00047C43EF aldolase 9.38607570695e-07 3.54022881647e-07 -236004012.63 +UniRef50_Q9ZFA2 Citrate synthase 1.89165414357e-05 2.44781162499e-06 -6648628318.62 +UniRef50_UPI00036F9430 hypothetical protein 1.72330868108e-08 8.89045572132e-09 -3368022.54642 +UniRef50_A0PXX7 Energy coupling factor transporter ATP binding protein EcfA1 1.90840454177e-07 1.07806509533e-07 -33521822.3939 +UniRef50_UPI000463F674 LysR family transcriptional regulator 4.07849323506e-07 1.82997335935e-07 -90775506.6266 +UniRef50_A9GHR6 ATP synthase subunit alpha 3.46090557299e-08 1.67729048833e-07 53742174.7817 +UniRef50_G8V6N7 Biotin requiring enzyme family protein 0.000177941312052 1.82205806779e-05 -64481219249.5 +UniRef50_Q3IV12 Generic methyltransferase 0.000168872947449 7.6908158703e-05 -37127313751.6 +UniRef50_Q2NUA4 Tetraacyldisaccharide 4 kinase 4.4230752588e-06 2.05318682645e-06 -956753041.941 +UniRef50_A0A020BXU1 1.83375044762e-05 5.14750464887e-06 -5324964789.78 +UniRef50_A8FUS8 Ribonuclease H 3.0670614704e-07 2.14413082736e-07 -37259842.6228 +UniRef50_P0AFQ4 Inner membrane transport permease YbhS 2.01641393612e-05 1.71032840855e-06 -7450029935.29 +UniRef50_A0A011Q1R0 Penicillin binding protein 2 6.61016970975e-08 1.08703352759e-07 17198811.1717 +UniRef50_M4YYZ9 N acetylmannosamine kinase 3.1332632128e-06 2.8438433873e-05 10216007924.9 +UniRef50_P76242 Inner membrane transport protein YeaN 1.93503657893e-05 3.61800467574e-06 -6351347239.34 +UniRef50_O34697 Bacitracin export ATP binding protein BceA 0.000238720119757 7.01968867353e-05 -68034897183.6 +UniRef50_UPI00046CAEE5 hypothetical protein 9.49954501457e-08 4.4821030518e-07 142597171.411 +UniRef50_I0C6Y6 Transcriptional regulator, DeoR family 6.69752210289e-05 2.92593595104e-05 -15226356120.7 +UniRef50_P07821 Iron hydroxamate import ATP binding protein FhuC 2.52707112737e-05 4.11384065468e-05 6405983300.27 +UniRef50_H2A564 Rhodanese like domain protein 2.23314349762e-07 6.90758787823e-07 188713055.834 +UniRef50_UPI0002379BF3 putative ABC transporter ATP binding protein 1.06766380645e-08 1.19829617885e-07 44066397.411 +UniRef50_A6UAR8 1.06491864536e-05 5.21100819942e-06 -2195459295.16 +UniRef50_UPI0004630536 hypothetical protein 3.69160562131e-07 4.3336120697e-07 25918588.152 +UniRef50_UPI000472F551 glutathione ABC transporter permease 8.33015615551e-08 4.32652529801e-07 141037272.899 +UniRef50_UPI000474A020 hypothetical protein 2.29424931439e-06 1.64636102715e-07 -859750986.844 +UniRef50_A6LU95 N anthranilate isomerase 8.61953350356e-06 1.57845820507e-05 2892618023.51 +UniRef50_A5UL11 6.26932597754e-06 3.26316801329e-06 -1213622859.87 +UniRef50_B0VDS9 3.56695022163e-06 4.60131300926e-05 17136043687.1 +UniRef50_I0C2H0 Fructose repressor 0.000190266677709 3.42176491526e-05 -62998907765.0 +UniRef50_UPI00037044F7 hypothetical protein 2.04945012722e-07 3.95562186573e-07 76954492.2194 +UniRef50_Q9RX08 DNA polymerase III subunit alpha 9.50575706519e-07 0.000466162262768 1.87811666856e+11 +UniRef50_I5CJV7 Transposase domain containing protein 1.546207381e-06 1.45714138554e-07 -565396307.962 +UniRef50_Q890Z7 Anaerobic sulfite reductase subunit B 1.70184379314e-05 5.84149937975e-06 -4512267249.74 +UniRef50_G7M6C4 Cof like hydrolase 4.17881168475e-06 1.33074844544e-05 3685357218.52 +UniRef50_P52230 Thioredoxin 1 7.33842840842e-05 1.16572383629e-05 -24919965833.7 +UniRef50_D2JGC9 3.20748250189e-07 6.09621683251e-07 116621749.803 +UniRef50_Q6AAD6 4 diphosphocytidyl 2 C methyl D erythritol kinase 4.40647678038e-06 6.6796443758e-05 25187595279.8 +UniRef50_Q2FK09 Sensory transduction protein LytR 0.000101882651183 3.07315277977e-05 -28724581633.1 +UniRef50_V4RNU3 1.38278525101e-06 3.58271834081e-07 -413608638.608 +UniRef50_Q3J3X3 Phage head tail adaptor, putative, SPP1 family 8.29279947929e-06 1.14145741562e-05 1260298745.55 +UniRef50_UPI00047EEAC2 hypothetical protein 2.89191585537e-07 4.23854558058e-07 54365094.5072 +UniRef50_E0S3Q3 Transposase ISNCY family 2.44767348249e-05 8.44206815596e-05 24200106891.7 +UniRef50_P76339 Probable sensor like histidine kinase YedV 2.73382373586e-05 9.26959934109e-06 -7294530894.79 +UniRef50_E8KBP6 HD domain protein 1.93752345385e-07 6.8460525385e-07 198163342.59 +UniRef50_W8RAH0 Chromosome partitioning protein ParA 8.04825322096e-06 1.44439925708e-06 -2666056883.62 +UniRef50_A9BWW9 1.38120329047e-06 3.4948807227e-07 -416516094.157 +UniRef50_V5SYK3 9.78136046142e-06 9.83296465662e-07 -3551886399.47 +UniRef50_UPI00037371BE hypothetical protein 3.55152543249e-07 3.13352797972e-07 -16875070.1089 +UniRef50_UPI00035DE041 hypothetical protein, partial 7.8577041694e-07 4.3827569275e-07 -140287884.395 +UniRef50_UPI000363ADAC hypothetical protein 1.20842181212e-07 1.39860044735e-07 7677744.87966 +UniRef50_A3T2U3 ATPase, ParA type 7.16992915669e-06 2.04190183557e-06 -2070247557.51 +UniRef50_K7VU62 Cystathionine beta lyase 3.54406439227e-05 5.77151541614e-06 -11977791259.3 +UniRef50_A0R8M3 2.48671920367e-07 8.14727585167e-06 3188763333.84 +UniRef50_Q15U36 Glucose 1 phosphate adenylyltransferase 1 8.43638884382e-08 1.16837701088e-07 13110076.6652 +UniRef50_UPI0003711421 hypothetical protein, partial 2.89252710521e-07 5.68038685446e-06 2176467010.56 +UniRef50_E0SHR7 FMN oxidoreductase 1.49796027328e-06 7.91985845902e-05 31368695530.6 +UniRef50_Q14IN1 Ribonuclease H 5.20510364846e-07 2.1239030553e-07 -124391849.004 +UniRef50_O27880 Indolepyruvate oxidoreductase subunit IorA 3.51684692208e-05 1.17737541649e-05 -9444733553.5 +UniRef50_Q3J4T8 0.000117290348146 3.06153973976e-05 -34991741238.4 +UniRef50_UPI0003B38ED8 hypothetical protein 1.48594296024e-07 1.9669223942e-07 19417729.9771 +UniRef50_A9BIU9 Adenine deaminase 1.56474287692e-07 5.210868697e-08 -42133673.7214 +UniRef50_P75958 Lipoprotein releasing system transmembrane protein LolE 2.04653761508e-05 1.55293622362e-06 -7635184080.35 +UniRef50_Q3J4T7 0.000120217623574 4.60647465408e-05 -29936426416.4 +UniRef50_D3E2W0 3.10428531721e-05 1.0222135713e-05 -8405579137.17 +UniRef50_UPI0002557D47 DctM 9.07048296985e-06 2.76001105979e-06 -2547614948.29 +UniRef50_O27112 2 oxoglutarate synthase subunit KorA 3.16795934309e-05 8.23005031183e-06 -9466868315.43 +UniRef50_G7TFM6 Amine oxidase 1.06835657221e-06 0.000599940262991 2.41771937606e+11 +UniRef50_D2ZP63 2.00768700183e-05 2.87757963199e-06 -6943564587.98 +UniRef50_UPI000401523E diguanylate cyclase 3.40525466333e-08 1.29603755335e-08 -8515168.30303 +UniRef50_H6LBB1 Electron transfer flavoprotein alpha subunit EtfA 2.78032970735e-06 1.80254347023e-06 -394744302.712 +UniRef50_E3ZMP6 Cell surface protein 1.18200917222e-07 1.0359870371e-05 4134687637.92 +UniRef50_J4X1R2 Putative membrane protein 1.20413591511e-07 1.64745249288e-07 17897234.2552 +UniRef50_UPI000440E981 PREDICTED 1.93799723915e-07 1.69142195791e-07 -9954546.68555 +UniRef50_UPI000318D5FE hypothetical protein 2.13687398943e-05 3.78377486972e-06 -7099266172.22 +UniRef50_B7M3G3 1.33139026437e-07 6.60180362594e-06 2611479278.26 +UniRef50_P0AE35 Arginine ABC transporter permease protein ArtQ 2.35971576538e-05 1.08327315113e-05 -5153155470.85 +UniRef50_UPI0001FFE7BF acyl CoA dehydrogenase 4.38257993095e-08 1.24749010128e-06 485934049.327 +UniRef50_A6TUJ7 1.05149300518e-06 9.59316160476e-06 3448376431.71 +UniRef50_B9KSZ0 2.92341767493e-05 3.85195702429e-05 3748627297.96 +UniRef50_C5N523 ACT domain protein 0.000146640856738 5.75587703724e-05 -35963531425.9 +UniRef50_UPI000225C163 chromosome partitioning protein ParB 3.12097597433e-07 1.73086506712e-06 572773837.749 +UniRef50_W1GGS3 4.63278450397e-06 2.42062873115e-06 -893074431.691 +UniRef50_Q3MGL3 Aspartate tRNA ligase 3.34598481438e-08 4.2961483543e-07 159932629.736 +UniRef50_A3V850 1.12996146319e-06 2.13294147053e-07 -370069844.297 +UniRef50_Q9JTA4 UPF0210 protein NMA1908 6.14767040159e-05 0.000126126001678 26099714802.3 +UniRef50_UPI0003B6C834 threonine transporter RhtB 4.93465431983e-07 4.28579450692e-07 -26195266.8877 +UniRef50_C5Y7E8 1.87384259278e-07 2.67157465989e-06 1002898149.17 +UniRef50_UPI000362A601 hypothetical protein, partial 1.22170979702e-06 5.01954739708e-06 1533233643.85 +UniRef50_UPI0002F03396 diguanylate cyclase 2.54246341767e-07 1.28626861802e-06 416640057.26 +UniRef50_UPI00037317AF hypothetical protein 1.66355634444e-06 6.05166811913e-08 -647166783.563 +UniRef50_UPI00047845D5 hypothetical protein 1.40033665522e-07 7.6470230508e-08 -25661338.7262 +UniRef50_UPI00016C3F6F 3,4 dihydroxy 2 butanone 4 phosphate synthase 9.96639223858e-08 7.17689807651e-07 249504633.912 +UniRef50_UPI000467903E hypothetical protein 2.10560120857e-06 6.45534527369e-07 -589446836.233 +UniRef50_UPI0004097C5D dihydroxyacetone kinase 1.44571803628e-07 3.28584640648e-06 1268171104.94 +UniRef50_P43089 5 aminolevulinate synthase 0.00029981804835 8.0266322494e-05 -88635725930.7 +UniRef50_X1NAG8 Marine sediment metagenome DNA, contig 6.18516036731e-07 6.43431417699e-07 10058645.0429 +UniRef50_Q8Q0R3 Ribose 5 phosphate isomerase A 4.49712607076e-05 8.60145743281e-06 -14682935889.7 +UniRef50_UPI00047E1233 hypothetical protein 9.89136849959e-07 1.76431345211e-06 312948306.775 +UniRef50_R5HZ00 FeS assembly ATPase SufC 4.32996613314e-07 1.56804322936e-06 458232247.488 +UniRef50_UPI0003A3F0F8 amino acid transporter 7.66288213797e-08 1.05497944913e-05 4228145501.13 +UniRef50_P39288 Epoxyqueuosine reductase 3.88006912436e-05 1.3528605921e-05 -10202650968.1 +UniRef50_O27481 Putative branched chain amino acid aminotransferase 4.01571415734e-05 6.89645913971e-06 -13427745653.0 +UniRef50_F3Z639 1.14578448277e-08 1.68231043761e-07 63291264.2327 +UniRef50_A5VSQ0 2 oxoglutarate dehydrogenase E1 component 1.97192859365e-08 8.50994875812e-08 26394789.7093 +UniRef50_P00414 Cytochrome c oxidase subunit 3 8.06272780121e-07 3.05286715821e-07 -202254221.948 +UniRef50_Q4Q523 2.97172479437e-08 3.92121974942e-07 146307235.495 +UniRef50_X0PDD7 Peptide deformylase 9.71339564776e-08 1.7940665365e-07 33214497.448 +UniRef50_UPI000378FEFA hypothetical protein 1.13220560962e-08 1.88859797553e-07 71674164.8593 +UniRef50_A4WTH0 Probable chemoreceptor glutamine deamidase CheD 1.97953362132e-05 7.50273933735e-06 -4962672205.93 +UniRef50_Q3BXK0 Glutamate cysteine ligase 6.82856069596e-05 7.13423282344e-06 -24687560150.5 +UniRef50_F6G433 3.257925277e-07 7.69225404854e-07 179019294.04 +UniRef50_F4A483 Diacylglycerol kinase 8.49385732915e-06 1.16153329845e-05 1260178026.88 +UniRef50_Q985W1 Ribonuclease H 6.31285508871e-07 1.97568981501e-07 -175096684.4 +UniRef50_O27611 Conserved protein 3.14821317319e-05 1.11650928232e-06 -12258974411.0 +UniRef50_UPI00036239CD hypothetical protein 1.36653782323e-07 6.88930198833e-08 -27355851.315 +UniRef50_B2TQA9 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 9.06275243296e-06 1.32656550976e-05 1696763381.13 +UniRef50_UPI00036BC4EC hypothetical protein 1.15347164934e-07 3.96672393342e-07 113574446.957 +UniRef50_H3WPI1 PF05656 family protein 5.63577704316e-05 4.13030356916e-06 -21084869275.4 +UniRef50_UPI00046CCA8E 2 oxoglutarate dehydrogenase 2.06569841217e-08 5.49445307193e-08 13842303.317 +UniRef50_E8RVY2 TraU family protein 1.28982009405e-06 2.70537941938e-07 -411496712.805 +UniRef50_UPI00047CFDC7 hypothetical protein 6.69169116119e-06 3.07108941899e-06 -1461681353.11 +UniRef50_Q0AHR1 Transcriptional regulator, BolA protein family 3.42875322389e-07 1.00170681224e-06 265978357.224 +UniRef50_U1XA26 Transcriptional regulator, GntR family 3.40497262286e-06 6.23279077877e-06 1141624890.77 +UniRef50_D6DJI1 PTS system N acetylglucosamine specific IIB component, Glc family PTS system N acetylglucosamine specific IIC component, Glc family (TC 4.A.1.1.2) 3.89623864651e-06 1.11345693467e-05 2922202927.97 +UniRef50_A5W0Y9 Peptidase M19, renal dipeptidase 9.10900227576e-06 4.41720928674e-06 -1894134404.44 +UniRef50_UPI000262D0AF flagellin domain containing protein 8.89558631426e-09 1.44968304461e-08 2261290.99102 +UniRef50_UPI00045612E6 hypothetical protein PFL1_02986 8.32100956431e-08 4.75055804066e-08 -14414350.9446 +UniRef50_B7GN27 Non canonical purine NTP pyrophosphatase 7.11228475285e-07 4.72602452093e-07 -96336253.8332 +UniRef50_A0A020D642 4.80645200655e-06 1.35418379173e-06 -1393723042.42 +UniRef50_A0Q1U2 Fe S oxidoreductase, putative 2.17179360525e-06 1.13204028315e-05 3693405810.7 +UniRef50_R6K577 Tagatose 6 phosphate kinase 7.56387696718e-06 4.65857776198e-06 -1172904941.17 +UniRef50_UPI0003C1230B PREDICTED 4.29456931009e-07 3.29882314976e-07 -40199494.4105 +UniRef50_Q8H389 1.11611159966e-06 7.10802059353e-07 -163628435.129 +UniRef50_D8IDT0 GCN5 related N acetyltransferase 2.86218033601e-06 1.2913760692e-05 4057946336.48 +UniRef50_Q5FKM6 Enolase 8.08360214071e-08 7.9821167834e-07 289613355.893 +UniRef50_I9J361 6.43013775942e-08 7.72572455111e-08 5230442.86443 +UniRef50_M1MMR7 1.13586556327e-06 2.31629506579e-05 8892604555.42 +UniRef50_Q9FFR3 6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic 9.57532512218e-05 2.49574819102e-05 -28581120832.9 +UniRef50_A0QVT2 Ribonuclease J 8.34858475724e-07 6.71450867644e-07 -65969656.6187 +UniRef50_UPI0002631A0F hypothetical protein 3.15136279201e-07 6.62057655609e-08 -100496303.077 +UniRef50_UPI000329A978 1.76345374863e-07 1.85718624917e-07 3784096.06951 +UniRef50_D5ECW5 DNA gyrase subunit A 7.50767945313e-08 1.52780582458e-07 31369972.7187 +UniRef50_V7EPQ5 6.35423978179e-06 7.25448766512e-07 -2272412005.9 +UniRef50_V5VD87 CsuC 4.9091202226e-06 6.37057955153e-05 23736939332.0 +UniRef50_Q83RN5 Respiratory nitrate reductase 1 beta chain 0.000130631665218 7.69058512479e-05 -21689770389.6 +UniRef50_A0Q3H7 Riboflavin biosynthesis protein RibBA 7.03444196473e-06 5.94479967104e-05 21159995237.5 +UniRef50_A5CW02 Aspartate 1 decarboxylase 1.95251373544e-05 2.58331700717e-05 2546630216.24 +UniRef50_J0HLU4 3.96350842689e-07 5.30765240372e-08 -138584054.889 +UniRef50_UPI00037A3165 hypothetical protein 8.51964567906e-07 2.06530757731e-06 489841462.288 +UniRef50_P98005 Cytochrome c oxidase polypeptide I+III 1.20147082364e-07 2.33315847471e-06 893419855.795 +UniRef50_A3PJY9 Permease YjgP YjgQ family protein 2.90655966406e-05 5.44816646995e-06 -9534646378.33 +UniRef50_UPI0003724245 hypothetical protein 2.61761189804e-07 5.68407584567e-08 -82728892.7913 +UniRef50_F0NRM0 L serine ammonia lyase alpha subunit 0.00027628888944 5.75126855223e-05 -88322638207.6 +UniRef50_UPI00035C1D9A hypothetical protein 1.15619133208e-07 1.31923547672e-07 6582292.19678 +UniRef50_Q5HLA7 Aldehyde dehydrogenase family protein 0.000120725487064 2.61686892626e-05 -38173739614.8 +UniRef50_B7UXY9 Phosphoribosylformylglycinamidine cyclo ligase 4.02223697511e-05 3.53197093744e-05 -1979264156.48 +UniRef50_UPI0002559CF6 3 hydroxyacyl CoA dehydrogenase, NAD binding, partial 3.32290101768e-08 6.01455813173e-08 10866550.0729 +UniRef50_K8WXC5 4.72208075826e-05 6.97598516207e-06 -16247328670.7 +UniRef50_Q329T6 Low affinity potassium transport system protein kup 2.69636664894e-05 9.78881537668e-06 -6933698153.32 +UniRef50_UPI000316D8EB hypothetical protein 1.21712265769e-07 1.3040543299e-07 3509538.28428 +UniRef50_UPI00047B6E0E hypothetical protein 6.90033211016e-07 1.8592424065e-07 -203514977.449 +UniRef50_UPI000467AAAB hypothetical protein, partial 2.61350446619e-07 2.5936688778e-07 -800787.044308 +UniRef50_C5B3S3 3.46932172054e-06 1.55494757438e-07 -1337832610.23 +UniRef50_A6QIH4 0.000108062073194 7.23224584158e-06 -40706238623.1 +UniRef50_UPI00036099F9 hypothetical protein 5.18719236938e-08 7.33354441549e-08 8665086.59716 +UniRef50_Q82A73 5.18579275325e-08 1.71812841632e-06 672693843.763 +UniRef50_W6RBC1 Phage head tail adaptor 8.56390434695e-07 2.83898724044e-07 -231121928.853 +UniRef50_UPI000374F5C0 hypothetical protein 1.04929150267e-05 1.57499247499e-06 -3600274769.34 +UniRef50_A5UKP1 Phosphate specific transport system accessory protein PhoU 2.56938102455e-05 3.30578401339e-06 -9038320921.87 +UniRef50_Q6FA90 C4 dicarboxylate transport protein 1.30768818311e-06 7.69777025911e-05 30548913392.0 +UniRef50_UPI0000557712 hypothetical protein 8.06042233127e-06 4.96545819752e-06 -1249475000.28 +UniRef50_H8LWD1 5.46557388125e-06 8.99508968218e-05 34107761622.6 +UniRef50_R4Z0C6 3.19874306103e-07 2.92172094424e-07 -11183722.7992 +UniRef50_UPI00035EB969 hypothetical protein 1.30926497138e-06 1.63102001417e-07 -462720055.974 +UniRef50_F2I582 ABC transporter, ATP binding protein 4.00947208509e-05 4.49927617088e-05 1977399200.05 +UniRef50_Q9RWC7 Arginine repressor 2.05030760174e-07 0.000490244909542 1.9783511253e+11 +UniRef50_R7GNX0 HD domain protein 4.18116326724e-08 1.27309878811e-07 34516691.1476 +UniRef50_A4WTR4 Phosphate starvation inducible E 4.40719366681e-06 2.0691321173e-06 -943904138.779 +UniRef50_UPI0002377C07 hypothetical protein 5.5961263498e-08 6.46246036565e-08 3497496.73313 +UniRef50_I6Z4Y8 Respiratory nitrate reductase gamma chain 2.32991819099e-05 2.64858031563e-06 -8336901275.0 +UniRef50_W0YWT0 ClpB protein 8.5439184778e-06 3.70933662252e-06 -1951780021.97 +UniRef50_UPI0002FBC9AA hypothetical protein 1.39439386122e-07 1.28504374505e-05 5131585900.09 +UniRef50_B7GVA1 Isochorismatase family protein 2.22924796565e-06 4.49429127886e-05 17244030644.7 +UniRef50_B0BVB8 ATP synthase subunit alpha 3.76144854743e-08 1.09413747784e-07 28986243.2705 +UniRef50_B9KPP5 6.64983016083e-06 6.42278913615e-06 -91659247.77 +UniRef50_A9M0F2 Phopholipase D family protein 2.00820709593e-06 3.75602960254e-05 14352814574.0 +UniRef50_Q9I3N7 Cytochrome c biogenesis ATP binding export protein CcmA 1.18708463366e-07 3.565191612e-06 1391387540.21 +UniRef50_Q1C0H2 LPS assembly protein LptD 3.11222543277e-05 6.68272851976e-06 -9866536475.36 +UniRef50_A8Z171 Iron ABC superfamily ATP binding cassette transporter, membrane protein 0.000122701626388 3.19249001276e-05 -36647678347.0 +UniRef50_J7L817 8.58291885866e-07 3.10747414477e-07 -221050422.226 +UniRef50_B5F050 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2.44704840753e-05 1.12973423778e-05 -5318158955.91 +UniRef50_P00562 Bifunctional aspartokinase homoserine dehydrogenase 2 3.56742452155e-05 9.28145252598e-06 -10655094284.7 +UniRef50_D1BPV2 NADH dehydrogenase (Quinone) 5.57201668545e-05 8.08824841434e-06 -19229589983.7 +UniRef50_T1Y7R5 Exotoxin 0.000107203719702 2.59429023591e-06 -42232110377.5 +UniRef50_D4HF81 5.13450790143e-06 4.17035759763e-05 14763381534.8 +UniRef50_A0A019G9E1 1.37493789792e-06 3.59338853264e-07 -410009797.131 +UniRef50_Q88M14 Sensory box protein GGDEF family protein 1.30555479402e-05 3.97775225145e-06 -3664817516.63 +UniRef50_UPI0003C11D1D PREDICTED 4.33494446818e-08 8.10228691002e-08 15209223.7426 +UniRef50_A6LSU0 1.47186649583e-05 3.01856938874e-06 -4723472157.77 +UniRef50_Q9RXT7 1.34816424593e-06 0.000487960403192 1.96451332266e+11 +UniRef50_O05405 1.69276228183e-06 5.40378587781e-06 1498185765.08 +UniRef50_A1R3Q2 Oxidoreductase, short chain dehydrogenase reductase family 7.46990077563e-06 2.48862392015e-06 -2011002593.7 +UniRef50_Q2FEK1 Urease accessory protein UreF 0.00010174376124 2.2122604365e-05 -32144038091.9 +UniRef50_UPI000369649D hypothetical protein 3.86524171518e-07 5.99467452293e-08 -131843314.549 +UniRef50_F9ZKH5 1.38560393776e-05 5.73147846512e-05 17544828765.7 +UniRef50_UPI0004560A6D hypothetical protein PFL1_03815 8.58460959689e-08 4.73221201602e-07 156388083.771 +UniRef50_UPI0003717F60 hypothetical protein 1.39342773528e-07 1.56849409362e-07 7067643.71677 +UniRef50_UPI000262CA60 putative metallo beta lactamase superfamily hydrolase 9.05756029937e-07 1.78696737748e-07 -293522758.278 +UniRef50_UPI00031698A8 hypothetical protein 3.84641626733e-07 5.35980756056e-07 61097463.6477 +UniRef50_G3XD23 UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase 1.40492932784e-05 8.05729262555e-05 26856406969.6 +UniRef50_UPI0003EBD820 PREDICTED 1.01356469488e-07 3.50046208615e-08 -26787055.5193 +UniRef50_UPI0003B543B8 DNA repair protein RecO 1.88932769844e-07 7.07775829709e-07 209463310.188 +UniRef50_A5F9G1 D erythrose 4 phosphate dehydrogenase 9.80357273885e-07 7.88609471736e-07 -77410940.7377 +UniRef50_R7PYB9 2.36616801194e-05 9.6355155339e-06 -5662534763.56 +UniRef50_P42603 Inner membrane protein YgjV 9.09282410253e-06 3.41406595601e-06 -2292584349.95 +UniRef50_K7S0H1 ABC transporter, ATP binding protein 3.35783379478e-06 2.2399126024e-05 7687203335.86 +UniRef50_F7WZ70 Pyruvate dehydrogenase E1 component 3.06425572455e-05 8.31695608479e-06 -9013119154.51 +UniRef50_W4YDX4 1.7601158752e-08 1.00429786053e-07 33438933.263 +UniRef50_Q8DPY7 1.0673496386e-06 4.09440213052e-05 16098701693.6 +UniRef50_UPI0003B64F06 ferredoxin 1.37440511857e-07 7.85623693334e-07 261679504.464 +UniRef50_UPI00046F9C26 hypothetical protein 3.0566364927e-08 4.27552439953e-08 4920800.05424 +UniRef50_B9KX10 ABC branched chain amino acid transporter, periplasmic ligand binding protein 7.37266898855e-05 1.29502666476e-05 -24536187871.7 +UniRef50_F4FEB2 5.04279518057e-07 2.1626015424e-07 -116276951.568 +UniRef50_A4VM39 Ribosomal RNA large subunit methyltransferase K L 6.67081276874e-06 6.01621686068e-08 -2668800769.08 +UniRef50_A5UMN6 5 methylthioadenosine S adenosylhomocysteine deaminase 5.39999653416e-05 1.13830807499e-05 -17204959277.7 +UniRef50_D2N3E8 7.27990303111e-05 1.31547843319e-05 -24079114019.0 +UniRef50_X5IEK4 Putative endolysin 2.02668763943e-07 1.31232973832e-07 -28839505.0835 +UniRef50_Q0SU50 Amino acid permease family protein 3.97119635086e-06 5.48397254166e-06 610726312.077 +UniRef50_P76190 Murein DD endopeptidase MepH 4.4566552171e-05 1.69463581939e-05 -11150611246.4 +UniRef50_D3E0L0 Signal recognition particle receptor FtsY 2.63159152802e-05 1.75435637597e-05 -3541505957.68 +UniRef50_Q92I89 Holliday junction ATP dependent DNA helicase RuvA 1.31395885076e-07 1.0231567865e-07 -11740036.1884 +UniRef50_O58097 Glutamine synthetase 1.1422456592e-07 3.80688895014e-07 107574919.54 +UniRef50_UPI000376B86D hypothetical protein, partial 2.02506642053e-08 8.03169847841e-07 316074081.933 +UniRef50_UPI00046E5399 hypothetical protein 3.41774287753e-08 3.07907293182e-07 110508105.304 +UniRef50_B2I0Y3 Pirin related protein 1.66951234573e-07 0.00010076730023 40613595394.4 +UniRef50_Q9ZMR3 6.91415627371e-08 3.16286868e-05 12740975691.5 +UniRef50_P41655 3.35253391129e-05 6.37288368734e-06 -10961779453.4 +UniRef50_C6SPD8 2.80884788994e-05 2.27967742469e-05 -2136326104.73 +UniRef50_O83814 Methionine aminopeptidase 6.41370610009e-07 4.44907856664e-07 -79314424.3945 +UniRef50_Q11D29 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 5.58621510939e-06 6.73337516189e-06 463122590.431 +UniRef50_UPI00036E30BF hypothetical protein 6.51880157751e-07 1.00871184456e-06 144057330.782 +UniRef50_Q5FGN1 Nucleoside diphosphate kinase 6.66409132438e-07 4.10090700368e-07 -103478896.408 +UniRef50_A3JG79 1.85666981672e-07 8.76374894491e-07 278847260.344 +UniRef50_UPI00028934E4 ATP 2.45014181697e-07 5.97978106378e-06 2315195763.8 +UniRef50_Q31H63 Argininosuccinate synthase 1.49523082772e-06 0.000417382965823 1.67898982134e+11 +UniRef50_UPI00001AD637 argininosuccinate lyase 2.21550511147e-07 1.036985068e-07 -47578300.3616 +UniRef50_Q5HLL0 0.000103387982479 2.16742869009e-05 -32988821644.7 +UniRef50_X0XAV8 Marine sediment metagenome DNA, contig 7.13304183765e-08 1.32045135111e-07 24511276.1991 +UniRef50_J7M7S6 Myo inositol 1 monophosphatase 8.04700835095e-05 5.98040847185e-06 -30072395903.8 +UniRef50_D3E3I9 PIN domain containing protein 5.02850448435e-05 1.13589816871e-05 -15714929372.7 +UniRef50_Q2P0Z5 Threonine tRNA ligase 6.76327370072e-06 7.32687038877e-05 26849058279.9 +UniRef50_E7DN70 QueT 1.2504245977e-06 6.67539899331e-07 -235317705.531 +UniRef50_D3NWU2 3.63143974444e-07 1.84380877328e-06 597762549.092 +UniRef50_Q11CE6 Carbohydrate ABC transporter substrate binding protein, CUT1 family 0.000132830818129 3.17025403489e-05 -40826726723.3 +UniRef50_UPI00035EA204 hypothetical protein 4.16443398662e-08 1.25382889291e-07 33806279.9903 +UniRef50_UPI0001913039 uracil permease 2.9188008718e-07 5.61869564545e-07 108998065.156 +UniRef50_UPI0004642331 hypothetical protein 3.39186437955e-07 9.5308680581e-08 -98456443.3685 +UniRef50_P31153 S adenosylmethionine synthase isoform type 2 1.93177148966e-06 0.000408117810812 1.63982288538e+11 +UniRef50_A0A059DU66 1.26640320636e-06 2.27813549029e-07 -419291389.592 +UniRef50_O27593 Probable cyclic pyranopterin monophosphate synthase 2.2033810447e-05 1.81163821134e-05 -1581513890.53 +UniRef50_D8ULY9 1.64409741602e-07 1.40213674558e-07 -9768249.18479 +UniRef50_P21801 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.000111938238184 1.40531154552e-05 -39517425231.1 +UniRef50_UPI00021A5A53 PREDICTED 2.17659913751e-08 1.60076595174e-07 55837688.0156 +UniRef50_J9FKP1 Carboxynorspermidine decarboxylase 1.82430208749e-06 4.76569967588e-07 -544095995.337 +UniRef50_W8EP13 Lysyl tRNA synthetase 1.93252212719e-06 7.62652728641e-05 30009043637.9 +UniRef50_P64305 Non canonical purine NTP pyrophosphatase 1.35402968864e-06 2.24834329492e-07 -455870023.274 +UniRef50_A0A025ZG79 2.14409904947e-05 4.27574874335e-06 -6929818736.24 +UniRef50_I4YMG6 Putative integral membrane protein 1.09453542477e-07 3.88808569883e-07 112779052.635 +UniRef50_Q3K2Q5 Biotin synthase 1.96949211577e-06 2.20804133112e-06 96305245.5649 +UniRef50_R4ZQK4 D alanyl transfer protein DltB 5.22016037898e-05 3.3477670034e-05 -7559081825.72 +UniRef50_A0A023KPW6 Glycosyl transferase 1.71665141021e-05 2.89053871314e-06 -5763386450.46 +UniRef50_B9KWR4 3.22637597309e-06 4.03794786929e-06 327641533.603 +UniRef50_F0VBH0 1.74170711526e-07 3.07747069636e-09 -69072440.8732 +UniRef50_K0N7F3 PTS system beta glucoside specific EIIBCA component 4.9822895389e-06 1.88657675705e-05 5604930450.79 +UniRef50_Q86AV6 Citrate synthase 1.42607312939e-07 4.14398055873e-07 109725258.17 +UniRef50_D7CVN0 3 isopropylmalate dehydrogenase 1.49813201041e-05 0.000371061978325 1.43754131325e+11 +UniRef50_UPI000472AC29 hypothetical protein 1.3666428954e-06 5.86009946937e-07 -315151100.738 +UniRef50_P0ABP7 Protein DedA 5.76454358894e-05 6.60322188901e-05 3385847214.78 +UniRef50_F5LXH0 9.04874786253e-07 1.82627804264e-06 371981801.493 +UniRef50_L6Z8K5 Protease3 2.13118616159e-05 1.28890362074e-05 -3400397977.1 +UniRef50_B8GW56 Chromosome replication regulator protein HdaA 3.15549431916e-07 1.03228587873e-07 -85716530.2099 +UniRef50_UPI00037B2D8F hypothetical protein 4.62367343728e-08 2.46205245112e-07 80729741.6749 +UniRef50_U3U2D6 2.03499320393e-07 1.6214525928e-07 -16695141.9427 +UniRef50_Q1JDL9 Transcriptional regulator, RpiR family 3.58954940073e-06 3.40750044459e-06 -73495397.5856 +UniRef50_W6RVE8 3.24486523369e-06 3.49487225087e-06 100930900.767 +UniRef50_E6SIX1 1.53094863252e-07 5.54346221637e-07 161990097.288 +UniRef50_C6SS20 4.79605736104e-05 1.86250625388e-05 -11843105806.8 +UniRef50_P75967 3.38005953882e-05 1.93017807743e-05 -5853349380.09 +UniRef50_Q8Y6R2 ADP dependent NAD(P)H hydrate dehydratase 6.42351111368e-08 2.99564812779e-05 12067866596.6 +UniRef50_P32106 5.88001167273e-07 3.41640894245e-05 13555078854.4 +UniRef50_P75968 1.01934772063e-05 2.56425503788e-06 -3080010610.48 +UniRef50_UPI00035E4836 peptidase 1.05197627732e-07 1.24900849326e-07 7954432.34322 +UniRef50_B4L348 GI15483 5.51782985938e-08 1.76005615544e-07 48779470.5706 +UniRef50_W5X806 50S ribosomal protein L17 6.22852846008e-07 3.92058001902e-07 -93174710.7368 +UniRef50_H8GWD9 2.066529136e-06 0.000440874896079 1.77152322519e+11 +UniRef50_Q9JRW7 Biotin synthase 2.36308858513e-07 4.6013747539e-05 18480913747.7 +UniRef50_Q3IVK2 Zinc containing alcohol dehydrogenase 2.4183178032e-05 1.79888348343e-06 -9036814395.45 +UniRef50_A0A034SZW0 Periplasmic nitrate reductase 2.19633009431e-05 9.41956684181e-06 -5064059385.62 +UniRef50_UPI00016A43A2 UvrD REP helicase, partial 1.90573123998e-07 6.07811427936e-08 -52398615.5388 +UniRef50_A3PNU0 Transcriptional regulator, LacI family 7.41885186622e-06 1.85733776861e-06 -2245251488.66 +UniRef50_P37629 2.89293591284e-05 2.05699626279e-05 -3374790948.58 +UniRef50_Q7VMF9 Macrolide export ATP binding permease protein MacB 4.7595927298e-08 4.01318801426e-08 -3013327.43079 +UniRef50_UPI000471FEB2 XRE family transcriptional regulator 2.00158434538e-06 2.1075159957e-07 -722981155.473 +UniRef50_P37626 3.38511652885e-05 4.89949704206e-06 -11688143748.0 +UniRef50_Q2K7T8 NADP dependent isocitrate dehydrogenase protein 2.91456144111e-06 1.42945309896e-06 -599556462.055 +UniRef50_UPI00029B17E0 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase 5.06608118671e-06 5.86715218531e-06 323402192.381 +UniRef50_V9WQ71 NTP pyrophosphohydrolase 3.13738584051e-05 7.87511213846e-06 -9486732229.87 +UniRef50_UPI000367676A hypothetical protein 4.5831906472e-06 2.48952463497e-06 -845238661.308 +UniRef50_J7QB63 Phosphatidylserine decarboxylase 4.34771783878e-05 1.67207892025e-05 -10801882651.9 +UniRef50_U5NRM8 1.44632495964e-05 3.50248339198e-07 -5697591793.53 +UniRef50_C3XBE9 2.65564693367e-07 9.38416933714e-08 -69326682.3766 +UniRef50_U5NRM4 6.11372706377e-06 1.36942694941e-05 3060358002.84 +UniRef50_I0C7C2 0.000242463613767 5.56411395311e-05 -75422525418.6 +UniRef50_Q6F916 1.72688573019e-06 6.64396455174e-05 26125335241.0 +UniRef50_K5YPQ7 Antirepressor 1.11030153255e-06 5.13591881625e-07 -240899008.529 +UniRef50_UPI0003675C2C hypothetical protein 6.88365544355e-08 4.01607167027e-07 134343579.858 +UniRef50_P31666 1.94635886307e-05 8.50143664969e-06 -4425555275.46 +UniRef50_P31667 4.68031726846e-05 2.15327818878e-05 -10201966867.2 +UniRef50_P31665 5.99109353116e-05 5.52277806127e-06 -21957166499.7 +UniRef50_A0A029L0Z7 1.4769321213e-07 2.44195210172e-07 38959040.8222 +UniRef50_P31122 Sugar efflux transporter 3.55331312164e-05 1.83082134546e-05 -6953910673.95 +UniRef50_W6RZK7 1.91499707281e-05 3.28636636805e-05 5536386130.82 +UniRef50_U6IHI4 Iron sulfur cluster assembly 2 2.2540843364e-06 3.24957928703e-07 -778812003.832 +UniRef50_UPI00016A2A91 molybdate ABC transporter, inner membrane subunit, partial 5.14838327607e-07 3.00919595891e-07 -86361617.0718 +UniRef50_UPI000237A7F7 ribose transport ATP binding protein rbsA 1.12291695496e-07 4.81652021619e-08 -25888652.2795 +UniRef50_A6LS74 4.55155043195e-06 1.95423961778e-05 6051988385.94 +UniRef50_A1WV96 50S ribosomal protein L17 1.0270630181e-05 4.71250061484e-06 -2243885111.78 +UniRef50_UPI0002F511F9 cytochrome C oxidase subunit I 2.34837024184e-07 5.81608022103e-07 139995707.219 +UniRef50_UPI0002EF1560 hypothetical protein 1.46579550984e-06 5.34077317215e-07 -376146067.831 +UniRef50_Q9HAC7-2 Isoform 2 of Succinate hydroxymethylglutarate CoA transferase 4.34065004056e-08 6.64553308336e-07 250764588.69 +UniRef50_B9DMC7 Probable DNA directed RNA polymerase subunit delta 0.000234248692929 6.78419508854e-05 -67180443803.5 +UniRef50_A7NIN1 ABC type Fe3+ transport system periplasmic component like protein 8.87795138041e-05 2.13392869809e-05 -27226447153.2 +UniRef50_Q67QM6 DNA polymerase IV 4.58332637207e-08 7.75986979504e-08 12824095.6042 +UniRef50_H9K7I8 6.29486853175e-08 1.00511977771e-07 15164762.1169 +UniRef50_M1Q601 LrgA associated membrane protein LrgB 5.1887991244e-06 1.78289803844e-05 5102996287.13 +UniRef50_A6M2R8 Methyl accepting chemotaxis sensory transducer 1.23901309249e-06 1.12842700767e-05 4055393513.69 +UniRef50_A6LRR4 Transglutaminase domain protein 1.47647714023e-06 1.21598044327e-05 4312990327.15 +UniRef50_UPI000469DD13 sodium 7.67961067116e-08 6.44994865916e-08 -4964296.43894 +UniRef50_P33359 Putative osmoprotectant uptake system permease protein YehW 6.4251743672e-05 4.90544273213e-06 -23958829950.4 +UniRef50_Q7VSN2 Glutamyl tRNA amidotransferase subunit A 3.90828144006e-05 0.00011695989121 31439931567.2 +UniRef50_P94365 Cytochrome bd ubiquinol oxidase subunit 2 4.74583978653e-08 1.70592006081e-05 6867849087.81 +UniRef50_A1SSP3 Enoyl CoA hydratase isomerase 4.40645123179e-06 0.000173390147563 68220791872.0 +UniRef50_Q31ZL5 2.44402267224e-05 1.338706696e-05 -4462296233.6 +UniRef50_S5UWP0 3.57043957672e-07 7.73783798756e-08 -112904425.639 +UniRef50_UPI0003F0706F PREDICTED 4.08481407525e-07 3.88109934604e-07 -8224213.60429 +UniRef50_UPI000378D1C1 hypothetical protein 4.46801038563e-08 1.02676531094e-07 23413869.3721 +UniRef50_E8XQD0 Membrane dipeptidase 1.80707326623e-05 1.05808716017e-05 -3023748821.1 +UniRef50_Q6AHF5 Uroporphyrinogen decarboxylase 3.80016201938e-08 5.52938929852e-06 2216940592.65 +UniRef50_Q8TLM8 Phosphoglycerate mutase family protein 1.9259489227e-06 4.84339743989e-05 18775860602.4 +UniRef50_UPI000348926B hypothetical protein 2.11288581341e-06 4.05701150131e-07 -689211398.078 +UniRef50_P0AAN2 Hydrogenase 2 operon protein HybE 3.24828063679e-05 6.06287930931e-07 -12868941661.9 +UniRef50_UPI00037952D8 hypothetical protein 2.23817272306e-08 9.568088302e-07 377239688.179 +UniRef50_Q2FH23 Response regulator ArlR 0.000306033020347 0.000127436778101 -72101494617.1 +UniRef50_UPI00040D89D5 sulfate adenylyltransferase 1.07728854519e-07 2.570842933e-07 60296623.4332 +UniRef50_A5ULA7 4.02175811097e-05 1.00593505449e-05 -12175247762.1 +UniRef50_Q8ZRS2 Blue copper oxidase CueO 5.07004495628e-05 8.95272110715e-06 -16854070279.8 +UniRef50_UPI0004719AE4 hypothetical protein, partial 1.83916153186e-07 5.47543355475e-06 2136250509.23 +UniRef50_A3PMC5 Phospholipid glycerol acyltransferase 5.03451109147e-05 2.15997440201e-05 -11604857360.7 +UniRef50_UPI00046CAC84 hypothetical protein 4.66243464573e-07 3.39602379294e-06 1182788271.01 +UniRef50_D2NRM3 Protein containing TPR repeat 3.84792232431e-06 3.51346751597e-06 -135023510.349 +UniRef50_Q46798 3.08711497791e-05 1.16320769473e-05 -7767049792.17 +UniRef50_A3PMP3 Transcriptional regulator, TetR family 8.82731890626e-05 3.41831295303e-05 -21836820792.9 +UniRef50_U6KR03 3.53885893544e-07 2.03666693245e-06 679359355.453 +UniRef50_UPI0003B4D513 PAS sensor protein 2.3163689332e-07 3.5139786727e-08 -79328293.2222 +UniRef50_Q9ZMF0 Putative methylthiotransferase jhp_0270 1.85193577052e-06 5.56239335953e-05 21708415378.5 +UniRef50_B2A326 PSP1 domain protein 7.99849696465e-06 1.7809911636e-05 3960988502.42 +UniRef50_D2J6L2 Universal stress protein family 0.000154269218415 1.86751771791e-05 -54740978373.0 +UniRef50_UPI00035E6D97 citrate lyase subunit beta 3.0812789128e-07 1.67595734249e-07 -56734556.3169 +UniRef50_F0YB09 1.98816036622e-07 1.66793935042e-07 -12927715.3632 +UniRef50_P08192 Bifunctional protein FolC 2.22773795582e-05 4.52931611072e-05 9291753446.73 +UniRef50_Q8CQG0 Response regulator 0.000127152339112 8.50089457421e-06 -47901044176.9 +UniRef50_E6KSM2 2.46244025364e-06 3.74029463719e-05 14105911088.2 +UniRef50_O27322 Argininosuccinate synthase 1.67024512015e-05 3.14018761464e-06 -5475252237.72 +UniRef50_A3U241 2.18825829679e-06 4.40922905493e-07 -705420739.684 +UniRef50_Q9RVU4 Endonuclease III, putative 1.11682245224e-06 0.000204626640725 82159410983.1 +UniRef50_P74533 Recombination protein RecR 0.000300919291481 5.50100083536e-05 -99276595244.6 +UniRef50_UPI000476740D hypothetical protein 3.22889750513e-08 3.58221359554e-07 131582903.264 +UniRef50_Q9XAR0 NADH quinone oxidoreductase subunit G 1.5054940576e-06 6.79151985845e-05 26810412656.2 +UniRef50_Q9RXE1 Lysine tRNA ligase 8.10624873615e-07 0.000607525837334 2.44938376503e+11 +UniRef50_UPI000185D783 hypothetical protein, conserved 2.2987361885e-06 2.38617088733e-06 35298460.8621 +UniRef50_R5XBW3 Carbonic anhydrase family 3 2.34338639738e-07 4.40267099703e-07 83135846.3142 +UniRef50_H5XUP2 Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain 1.10093494118e-05 2.00038082425e-05 3631173404.38 +UniRef50_U5RWM1 Succinate dehydrogenase 2.93441008987e-06 8.91177471602e-06 2413135450.09 +UniRef50_P27603 P protein 2.66437534439e-07 1.90063309577e-07 -30833211.7939 +UniRef50_UPI00036D44BD hypothetical protein, partial 2.75496573928e-05 1.35290806956e-05 -5660278864.48 +UniRef50_Q2IW23 Bifunctional enzyme IspD IspF 5.35897464653e-08 1.75239421609e-07 49111466.665 +UniRef50_A6W8Y0 Putative cell wall binding repeat 2 containing protein 1.01614352137e-07 9.0513107982e-07 324389563.225 +UniRef50_I1ASL8 4.80557919503e-06 4.70759590445e-07 -1750019868.59 +UniRef50_Q6FFB1 Alginate biosynthesis protein 1.20731126496e-06 6.34952083929e-05 25146388429.0 +UniRef50_C3T0C2 Transcriptional regulation of gcv operon 2.35505151327e-05 9.76435716642e-06 -5565641146.18 +UniRef50_T2L9X7 7.55508530924e-06 3.39210145434e-06 -1680647667.78 +UniRef50_F7QKU3 TRAP transporter solute receptor, TAXI family 4.70891157795e-07 1.89919618391e-07 -113431658.366 +UniRef50_J9P7N6 4.33139702095e-08 1.455554679e-07 41276147.2621 +UniRef50_A3PNZ4 Transcriptional regulator, SARP family 2.85512404878e-05 4.19931019088e-06 -9831173092.65 +UniRef50_A5EUU4 Na translocating NADH quinone reductase subunit E 7.37103896835e-06 4.9323273874e-05 16936632043.2 +UniRef50_J8TQ37 1.06549507583e-07 3.34390215461e-05 13456727997.4 +UniRef50_Q2YSD7 Putative ATP 0.000257911620294 4.64197685942e-05 -85381855828.2 +UniRef50_A0A023RSQ1 GNAT family acetyltraansferase 3.03575749602e-05 1.39397958299e-05 -6628058903.71 +UniRef50_W1WJ38 4.22558942747e-06 2.64992444171e-05 8992147847.78 +UniRef50_UPI000366DF34 hypothetical protein 5.59272914577e-08 4.95247729876e-07 177359052.057 +UniRef50_W6RLX0 Spermidine putrescine binding periplasmic protein SPBP 8.63245416127e-05 1.18203435997e-05 -30078259007.2 +UniRef50_A6U9I7 Anhydro N acetylmuramic acid kinase 5.91417326273e-08 3.38868737877e-07 112929224.656 +UniRef50_UPI00047D420D hypothetical protein 1.8344309571e-07 5.05619009931e-08 -53645768.9429 +UniRef50_A3VVU2 Putative outer membrane protein 4.05745631084e-08 5.97635280876e-08 7746820.63718 +UniRef50_A0KVP8 Na H(+) antiporter NhaB 3.08175158006e-05 1.01099734226e-05 -8359888968.12 +UniRef50_Q8EW01 Serine tRNA ligase 5.34735967067e-08 8.33869871158e-08 12076402.7867 +UniRef50_P77234 5.84455778739e-05 1.05051804166e-05 -19354126748.3 +UniRef50_Q46HN8 3 oxoacyl [acyl carrier protein] synthase 3 2.59556588265e-06 1.1851990415e-06 -569382400.92 +UniRef50_UPI0003C7E828 MFS transporter 4.20968276025e-08 5.93545845e-08 6967168.23601 +UniRef50_S5CXB4 Choline dehydrogenase related flavoprotein 3.74353925435e-06 7.9506871604e-05 30586586990.2 +UniRef50_G2JDK1 4.15625903643e-07 9.45472958526e-05 38002110283.9 +UniRef50_UPI0003A64EF7 hypothetical protein 2.06217966753e-05 1.74119261246e-05 -1295864130.86 +UniRef50_J2DGW2 1.6349593144e-06 1.04311699986e-07 -617941225.096 +UniRef50_W7Z6N4 Ribonuclease PH 1.1490278673e-07 2.59084253748e-07 58207827.5407 +UniRef50_A1WW41 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.90664346884e-07 4.28631468721e-08 -59669158.1695 +UniRef50_R4RS00 1.44253334124e-05 1.41560013632e-05 -108732653.338 +UniRef50_UPI00036A57A1 hypothetical protein 3.83182189535e-07 9.9025651511e-08 -114717481.393 +UniRef50_B2HW18 1.67029198609e-06 4.85705316522e-05 18934202283.9 +UniRef50_Q2IFN9 4.88918753401e-06 4.18986111916e-06 -282326655.375 +UniRef50_A0A017HFR7 Chemotactic signal response protein, putative 8.67180750928e-07 4.19437807736e-07 -180759320.59 +UniRef50_O25916 Replicative DNA helicase 2.4514668425e-06 3.66035364683e-05 13787609601.0 +UniRef50_Q3IWU3 TRAP T family transporter, fused small and large inner membrane subunits 2.52878358915e-05 1.10447059083e-05 -5750126357.08 +UniRef50_UPI0004724A10 hypothetical protein, partial 7.01290360737e-07 1.08682848153e-07 -239242924.942 +UniRef50_X0X6Z1 Marine sediment metagenome DNA, contig 5.52158405379e-07 1.11186007871e-06 225958433.836 +UniRef50_UPI000415535D alpha beta hydrolase 7.39087410213e-07 1.14266655425e-07 -252247806.121 +UniRef50_UPI00034739EE hypothetical protein 1.56391198345e-08 1.06594502576e-06 424021382.927 +UniRef50_Q89IC6 Blr5713 protein 1.71120695213e-07 1.72547628564e-07 576070.50424 +UniRef50_K3WBA6 Amidophosphoribosyltransferase 3.60501156392e-06 2.48801010112e-05 8589014684.58 +UniRef50_P21562 1.24400186824e-06 1.55007645497e-06 123566066.62 +UniRef50_P17058 Acyclic carotenoid 1,2 hydratase 5.64995824986e-06 5.17255230352e-06 -192734638.967 +UniRef50_UPI00038293BE hypothetical protein 4.48020431817e-07 5.12901175246e-07 26193152.2985 +UniRef50_Q5WCN5 Sorbitol dehydrogenase 0.000174112373836 2.94180495147e-05 -58414874327.4 +UniRef50_Q03U06 Mannonate dehydratase 4.07337738757e-06 3.10012775404e-05 10871123734.2 +UniRef50_N6UA20 1.35012209407e-06 1.74032108009e-06 157528118.936 +UniRef50_Q5HPW3 Transcription factor FapR 0.00023261723995 4.51104739168e-05 -75698782414.3 +UniRef50_Q8KCW2 Dihydrolipoyl dehydrogenase 3.29453625239e-08 1.15677650764e-07 33400040.0019 +UniRef50_Q9F1M9 UDP N acetylmuramate L alanine ligase 4.21797449118e-05 2.72582266688e-05 -6024000022.32 +UniRef50_Q0KDL1 ABC type transporter, ATPase component 3.99478289819e-06 4.12843372555e-06 53956479.0853 +UniRef50_A8L8S5 3.30145965308e-07 2.85202125879e-07 -18144379.5004 +UniRef50_UPI0003B6FD69 NADPH 1.5032190697e-07 7.71991880128e-07 250975796.912 +UniRef50_C4ZI69 Anthranilate phosphoribosyltransferase 4.47407984815e-05 6.00665846803e-06 -15637447644.8 +UniRef50_A6M0U5 4.45160521619e-06 1.86774890226e-05 5743163863.87 +UniRef50_UPI0003B423C3 tRNA delta isopentenylpyrophosphate transferase 1.20571281187e-07 1.00395811815e-07 -8145084.56633 +UniRef50_R4PMP8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 4.5294961027e-05 9.15952128364e-06 -14588320456.1 +UniRef50_Q5SIN6 3.53518668364e-06 2.2245934854e-06 -529102556.917 +UniRef50_V9W081 4.17690080529e-07 1.17465703992e-07 -121204264.975 +UniRef50_UPI0001746B66 chromosomal replication initiation protein 3.51499617073e-08 6.30727918617e-08 11272789.185 +UniRef50_UPI00045758DE PREDICTED 4.61787159465e-08 2.46506742442e-08 -8691134.614 +UniRef50_G7MCB5 PTS system, lactose cellobiose family IIC subunit 3.40061609998e-06 1.95545817109e-05 6521554148.57 +UniRef50_Q60178 Delta aminolevulinic acid dehydratase 4.39978423137e-05 9.03249403543e-05 18702817976.4 +UniRef50_A6LZJ5 Iron sulfur flavoprotein 2.21701785948e-05 5.79014715385e-06 -6612819698.32 +UniRef50_P38946 Succinyl CoA 9.21180655686e-06 9.31101721393e-05 33870799734.3 +UniRef50_P77624 Carbamate kinase like protein YahI 2.76581725012e-05 1.17098560802e-05 -6438531047.01 +UniRef50_T1KRH7 5.21008684175e-08 2.51308496245e-06 993529478.431 +UniRef50_B1I6S1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 1.25515656323e-06 4.18532510166e-05 16389948925.5 +UniRef50_X8F0P6 9.63837997413e-07 4.47798773731e-07 -208331367.114 +UniRef50_P26289 NADH quinone oxidoreductase subunit 4L, chloroplastic 7.72842992127e-05 1.75243302783e-05 -24125832796.1 +UniRef50_I0C6V7 Acyl CoA dehydrogenase, short chain specific 0.000259490128937 6.90236932118e-05 -76893637388.2 +UniRef50_UPI000372829F MULTISPECIES 2.26773438317e-08 1.02569632353e-07 32253497.2647 +UniRef50_D8JEY6 9.80483087926e-07 7.46871126349e-05 29756270830.2 +UniRef50_P80886 Succinyl CoA ligase [ADP forming] subunit beta 0.000144301764995 3.63260735125e-05 -43591111662.0 +UniRef50_P42619 Inner membrane protein YqjF 4.85493583502e-06 1.11440266111e-05 2538983122.13 +UniRef50_UPI00035DD30D hypothetical protein, partial 5.41210017492e-08 1.37762284503e-06 534313935.326 +UniRef50_A8AM44 4.335950381e-05 5.46640826788e-07 -17284078159.2 +UniRef50_P40118 Protein CbxX, chromosomal 7.9011170764e-05 2.24812035541e-05 -22821841463.3 +UniRef50_UPI0004420F41 PREDICTED 5.20826775073e-07 4.5864820248e-07 -25102252.7727 +UniRef50_UPI000380047C hypothetical protein, partial 1.20788579712e-07 2.92758877436e-07 69426519.504 +UniRef50_P0A9D3 Glutathione S transferase GstA 2.66711333675e-05 3.55090226682e-06 -9333921012.49 +UniRef50_V4LD81 4.98546089933e-07 1.01531272948e-07 -160279753.537 +UniRef50_G3BCN3 1.56369867027e-07 2.32972947213e-07 30925603.4966 +UniRef50_Q89N53 GMP synthase [glutamine hydrolyzing] 5.01594423186e-05 8.17957712061e-05 12771974193.3 +UniRef50_A9M3R6 PilS cassette 3.38274986861e-07 6.35213552979e-07 119877742.988 +UniRef50_G8VFT5 ABC transporter associated permease 5.32170097031e-07 4.83714033127e-05 19313285502.6 +UniRef50_UPI00046F1979 hypothetical protein 1.63128576005e-06 1.97765683159e-07 -578729646.31 +UniRef50_Q28W02 Protein export protein SecB 2.54303266779e-05 3.79421891038e-06 -8734762210.64 +UniRef50_UPI000381A76A hypothetical protein 5.63796539441e-08 9.31269779224e-08 14835345.6304 +UniRef50_K7RNM6 Protein translocase subunit SecD 7.04264904616e-07 5.63539044096e-05 22466442366.0 +UniRef50_V9H6U9 1.83756158505e-07 3.58206509258e-07 70427747.3455 +UniRef50_A7IGH8 Heat shock protein DnaJ domain protein 1.2186950416e-07 1.83411918241e-07 24845427.7748 +UniRef50_A5UK66 6.58405794513e-06 6.94862835762e-06 147181549.304 +UniRef50_Q88YL5 Peptide chain release factor 2 0.000271726134563 0.000143230519296 -51875256701.8 +UniRef50_B9KPA3 Lipid A biosynthesis acyltransferase 1.58830009337e-06 4.98498952915e-06 1371285207.29 +UniRef50_U3HEJ8 2.96016027856e-06 6.94862835673e-07 -914528376.02 +UniRef50_P37627 2.57016601091e-05 1.13793195481e-05 -5782104639.36 +UniRef50_UPI0004691CF3 hypothetical protein 7.15240572476e-06 2.24412918547e-06 -1981531470.24 +UniRef50_G7H917 1.01168832131e-06 1.30038297211e-07 -355932933.791 +UniRef50_Q99TA4 HTH type transcriptional regulator rot 8.84455228534e-05 1.75317070562e-05 -28628777647.7 +UniRef50_UPI00047C5CBE hypothetical protein 1.07086306e-06 9.67330387062e-08 -393268243.516 +UniRef50_UPI0004786076 acetolactate synthase catalytic subunit 1.59988615622e-07 1.71167014226e-07 4512856.69081 +UniRef50_UPI0003707FEC hypothetical protein 1.68306830586e-07 1.88360173137e-05 7536383800.6 +UniRef50_UPI0003AADB2D formyl CoA transferase 2.13787688449e-07 2.33836614287e-05 9353962355.28 +UniRef50_S1HMP3 Pyrimidine utilization protein D 7.60038903732e-06 1.04812759294e-05 1163049390.79 +UniRef50_B9DPH3 Ribonuclease HII 6.54988876022e-05 1.38367075555e-05 -20856656051.1 +UniRef50_P64484 0.000116062915004 3.84974143192e-05 -31314144462.2 +UniRef50_Q6F8V9 4.28859893699e-06 3.48737729682e-05 12347610078.7 +UniRef50_UPI0003607777 hypothetical protein, partial 1.76971169323e-07 7.0076352285e-07 211461400.774 +UniRef50_UPI000376E7E9 hypothetical protein 8.51547517838e-07 2.82164388805e-07 -229866956.307 +UniRef50_Q58626 Pyruvate carboxylase subunit A 1.23518973694e-07 0.000109109542538 43998995121.7 +UniRef50_UPI0004731C2E hypothetical protein 4.03100671317e-08 1.32536311703e-07 37232866.6767 +UniRef50_UPI0004719EAD ATPase 1.69958730374e-07 2.41118039812e-07 28727886.443 +UniRef50_V7YXX8 5.00111023971e-07 7.22932938045e-07 89955941.044 +UniRef50_K7SCS8 2.99156616006e-08 8.88053699593e-08 23774497.9224 +UniRef50_A5UKI4 Predicted phosphoesterase, YfcE 1.20269743945e-05 3.29349485352e-06 -3525812862.54 +UniRef50_UPI0003D2681B PREDICTED 3.98163650599e-08 9.3455830574e-07 361218301.171 +UniRef50_P80239 Alkyl hydroperoxide reductase subunit C 2.16083281016e-05 9.30079134215e-05 28824888765.1 +UniRef50_P0ABK0 Cytochrome bd I ubiquinol oxidase subunit 1 1.71593316015e-05 7.62391078699e-05 23851230669.9 +UniRef50_UPI0003B383CF SAM dependent methyltransferase 7.02753027592e-08 1.07738333014e-07 15124285.0369 +UniRef50_UPI0002F5F55F hypothetical protein 5.8307266128e-07 1.52060018675e-07 -174005092.94 +UniRef50_UPI00047BBB2A protein phosphatase 1.29269973036e-07 2.25242637497e-07 38745342.3599 +UniRef50_UPI0004707FDC MFS transporter 8.14243633308e-08 1.22735081721e-07 16677643.9536 +UniRef50_Q3J3F1 NADH quinone oxidoreductase subunit H 1 0.000126455398949 4.54787227807e-05 -32691277864.7 +UniRef50_A4IAV0 Proteophosphoglycan 5 3.06591844207e-07 2.19429074657e-07 -35188679.6748 +UniRef50_F7QM88 Diguanylate phosphodiesterase 3.52506925977e-08 2.62381642246e-07 91695551.5831 +UniRef50_A5ULA2 Transcriptional regulator, AraC family 1.30797090593e-05 5.30214064208e-06 -3139899811.53 +UniRef50_D5ZZ67 SecA 4.21756527356e-07 4.94584210296e-07 29401429.299 +UniRef50_B7LY72 2.50168686688e-05 1.90767272071e-05 -2398108001.82 +UniRef50_Q02254 Nucleoside diphosphate kinase 1 1.29747779022e-07 3.70651919199e-07 97255957.6157 +UniRef50_UPI0003B52538 MerR family transcriptional regulator, partial 2.8803968304e-07 2.63535536039e-05 10522967829.7 +UniRef50_S3Y4R2 4.73113938364e-08 7.56509520899e-07 286311986.735 +UniRef50_D6SET8 Sucrose 6 phosphate hydrolase 8.87921409223e-05 1.67694961598e-05 -29076425507.9 +UniRef50_D9SU34 RNA polymerase, sigma 24 subunit, ECF subfamily 9.44435907608e-06 3.88296660861e-05 11863209038.2 +UniRef50_UPI00047E196E hypothetical protein 3.20148519362e-08 1.33687848046e-07 41046636.1976 +UniRef50_Q5HQN2 D isomer specific 2 hydroxyacid dehydrogenase family protein 0.000103775557082 2.17148869663e-05 -33128899523.4 +UniRef50_Q6LLZ7 0.000226656621937 3.15410501811e-07 -91376724575.3 +UniRef50_Q3JQS6 DNA mismatch repair protein MutS 3.83385341192e-06 3.30489096961e-05 11794476731.0 +UniRef50_UPI000466A22C hypothetical protein, partial 3.29699035676e-07 1.21948594744e-07 -83871402.3888 +UniRef50_Q8CQC3 Membrane spanning protein 0.000268225603237 4.929767386e-05 -88383891637.3 +UniRef50_UPI00047D3526 hypothetical protein 2.46377144235e-07 3.56805285062e-07 44581195.5575 +UniRef50_P24202 Mrr restriction system protein 2.85467559706e-05 1.62874838098e-05 -4949218609.5 +UniRef50_UPI0003B4AFAB flagellin 2.09820472346e-08 1.60882989627e-07 56479727.2213 +UniRef50_UPI0003B6A2EF aspartyl glutamyl tRNA amidotransferase subunit B 9.06478100423e-08 5.33142676875e-08 -15072009.1827 +UniRef50_Q41348 Probable pyridoxal biosynthesis protein PDX1 3.35079441546e-07 2.41428329843e-07 -37808103.0229 +UniRef50_Q1CBK6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.0601747378e-07 5.17590795194e-07 4672291.87546 +UniRef50_P66774 L serine dehydratase 1.21384304696e-07 2.96866323437e-07 70844244.3723 +UniRef50_P0ADR0 Inner membrane protein YqaA 1.95715013162e-05 7.23224584158e-06 -4981508854.79 +UniRef50_Q8REV6 Bifunctional purine biosynthesis protein PurH 2.76401389529e-08 2.95489694989e-07 108134152.655 +UniRef50_B4TCQ6 Argininosuccinate lyase 1.93356789531e-05 1.00977528475e-05 -3729464130.93 +UniRef50_V6YPB4 3.52601579306e-07 1.96900006824e-06 652559905.421 +UniRef50_Q7CB38 UPF0324 inner membrane protein YeiH 4.04169562885e-05 9.29997449659e-06 -12562307397.7 +UniRef50_F0YKI4 Expressed protein 5.23290378266e-07 4.67122598609e-06 1674572505.77 +UniRef50_J7J208 Peptidylarginine deiminase like enzyme 1.45747486043e-06 6.17608298778e-06 1904960004.84 +UniRef50_B6C3C1 Ribulose bisphosphate carboxylase, small subunit 7.64719805604e-06 8.40196966657e-07 -2748069871.08 +UniRef50_G7M7S7 Ketopantoate reductase ApbA PanE domain protein 2.59848787425e-06 2.62494227244e-05 9548172628.59 +UniRef50_UPI00046742AA hypothetical protein 6.14385329484e-07 1.89582262053e-07 -171498211.242 +UniRef50_P17812 CTP synthase 1 2.11704915244e-08 1.24659916929e-06 494720594.917 +UniRef50_Q8CPK1 Secretory antigen SsaA 9.06663702078e-05 4.46322476372e-06 -34801267647.3 +UniRef50_S5NA52 Hydrolase 5.68068368014e-05 4.71998068175e-06 -21028102993.1 +UniRef50_X7ECS1 Transposase 1.39756935307e-05 3.55910291841e-06 -4205305456.13 +UniRef50_I6U2S4 Phosphopantetheinyl transferase 5.80588037575e-05 8.14562618456e-06 -20150562289.7 +UniRef50_UPI0003728962 spermidine putrescine ABC transporter ATP binding protein 4.95195598095e-08 1.08141056345e-07 23666217.518 +UniRef50_UPI00029AE339 oxygen independent coproporphyrinogen III oxidase 3.09683203843e-07 9.54729002591e-07 260412904.557 +UniRef50_S5XV86 Membrane protein 3.24376280468e-05 1.12069387735e-05 -8571089789.49 +UniRef50_W0E657 Transposase IS116 4.0226920411e-06 5.65505027426e-06 659003050.015 +UniRef50_UPI0002192B8A rod shape determining protein MreB 3.49468303323e-07 6.42902487938e-07 118462981.171 +UniRef50_UPI0004773247 hypothetical protein 2.41338084638e-07 7.4918443768e-07 205023804.699 +UniRef50_H8H0T4 4.60382764265e-06 0.00037215520238 1.48385000344e+11 +UniRef50_W5VD93 5.1955150512e-06 3.58236954047e-07 -1952868527.9 +UniRef50_UPI0003EDCF69 PREDICTED 1.43228257444e-06 2.35737535589e-07 -483059915.443 +UniRef50_P73534 Pyruvate kinase 2 1.59553381223e-07 1.18924616653e-07 -16402330.8279 +UniRef50_D5P6E3 4.45707922605e-06 7.64246202278e-06 1285978124.08 +UniRef50_I0E315 3.94584657338e-06 5.08503210999e-06 459903180.508 +UniRef50_A6M2J9 Cell wall surface repeat protein 1.55131228296e-06 2.31505356352e-05 8719871519.56 +UniRef50_P52045 Methylmalonyl CoA decarboxylase 1.73676873471e-05 6.20096977765e-06 -4508140913.8 +UniRef50_L0WJ64 3 phosphoshikimate 1 carboxyvinyltransferase 5.0737364089e-07 7.35475081072e-05 29487198587.3 +UniRef50_UPI0004743DFB long chain fatty acid CoA ligase, partial 3.72616248557e-07 1.03963773377e-07 -108458300.967 +UniRef50_UPI00035FBEC8 hypothetical protein 8.90195699052e-08 2.85391264713e-07 79277662.9457 +UniRef50_M1MXV9 Methyl accepting chemotaxis protein 5.80191832772e-06 1.49376050661e-05 3688188843.77 +UniRef50_D8JNY1 Membrane fusion protein 1.16470044199e-05 6.24457513129e-05 20508077491.4 +UniRef50_Q8FJ67 2.80349415458e-05 2.69695621179e-06 -10229255611.4 +UniRef50_C1DHR0 Fimbrial assembly protein 4.39322535926e-06 3.46751512944e-06 -373720579.52 +UniRef50_UPI000382A44D hypothetical protein 5.94614511614e-07 1.92422564861e-05 7528281897.41 +UniRef50_UPI0004156576 MULTISPECIES 1.56899363264e-07 1.70244973161e-07 5387786.48447 +UniRef50_A3S860 1.32361066913e-05 5.92265672953e-06 -2952529495.69 +UniRef50_D8HER7 3.83559950036e-05 2.19394601122e-05 -6627556589.2 +UniRef50_Q31YD8 Erythronate 4 phosphate dehydrogenase 4.43432924241e-05 9.18771760323e-06 -14192736962.6 +UniRef50_UPI00029CB712 ketol acid reductoisomerase IlvC, partial 8.392187527e-07 1.55948861836e-06 290781783.472 +UniRef50_UPI00041F053E hypothetical protein 5.11406261877e-07 1.70937481739e-07 -137451424.563 +UniRef50_Q7U0N5 Fructose 1,6 bisphosphatase class 2 1.564802716e-07 2.53194107251e-06 959002675.509 +UniRef50_Q5QV04 50S ribosomal protein L25 3.89088631857e-06 2.11883605813e-05 6983202623.73 +UniRef50_A5N555 3.94639346825e-06 1.00913776517e-05 2480805522.29 +UniRef50_UPI0001DCFB76 hypothetical protein 2.77903795467e-07 3.48221080148e-07 28387950.7158 +UniRef50_UPI0003734789 hypothetical protein 1.14304343394e-07 1.46812123819e-07 13123789.8729 +UniRef50_UPI000237AE8F citrate synthase 1.39743864319e-07 1.1598181126e-07 -9593032.4131 +UniRef50_A6M0W0 Methyltransferase type 11 1.95279817986e-06 8.09566709961e-06 2479951564.38 +UniRef50_Q63VA4 3.1321175805e-07 1.10951735036e-07 -81654853.3003 +UniRef50_C6SRX5 6.24138376317e-05 3.29653312038e-05 -11888723418.8 +UniRef50_P95780 dTDP glucose 4,6 dehydratase 7.35820869164e-05 1.1628787262e-05 -25011307323.0 +UniRef50_K0YWY6 1.36750892745e-07 2.05695511674e-07 27833788.7073 +UniRef50_A6LT81 Histidine kinase internal region 7.77661574339e-06 2.13603351704e-05 5483914223.66 +UniRef50_UPI00041035B8 hypothetical protein 8.4920021219e-08 1.42679628287e-07 23318262.1634 +UniRef50_UPI0002E14D16 hypothetical protein 5.2418010757e-07 4.02703354717e-06 1414144918.41 +UniRef50_J9PAX2 3.40860303668e-06 1.33078252013e-06 -838841640.256 +UniRef50_B2RI74 Aminomethyltransferase 8.44544627661e-08 2.21217366217e-05 8896721235.41 +UniRef50_T2WDF3 Excinuclease ABC subunit A domain protein 2.07523781952e-06 1.64549027019e-06 -173494359.26 +UniRef50_P37016 6.11656977908e-05 3.49412219928e-05 -10587142690.2 +UniRef50_M1M1B1 PTS system maltose and glucose specific EIICB component MalX 9.02356945458e-07 6.28891087881e-06 2174617923.34 +UniRef50_E6RJY5 1.62098331928e-07 5.6614951159e-07 163120419.495 +UniRef50_UPI0002B4135E PREDICTED 1.98015096326e-08 2.46029249527e-07 91330914.7218 +UniRef50_UPI00036A4FA0 hypothetical protein 5.03815299981e-07 3.57658107377e-07 -59005452.2047 +UniRef50_B9TLS4 1.02349087321e-06 7.96415573012e-05 31739078169.1 +UniRef50_P76254 Putative dioxygenase subunit beta YeaX 1.60549522464e-05 7.83771849003e-06 -3317398104.24 +UniRef50_UPI00036DD6AB hypothetical protein 1.53856008499e-06 1.06395176646e-06 -191605202.29 +UniRef50_D3E4S6 Methionine synthase MetE 3.24766276766e-05 5.13816766488e-06 -11036871787.4 +UniRef50_Q5HP49 Oxidoreductase, short chain dehydrogenase reductase family 9.13147325148e-05 1.60662538261e-05 -30378734249.3 +UniRef50_UPI00016C0A47 Sodium proline symporter 1.36084763529e-07 3.28286972022e-07 77594390.155 +UniRef50_P37018 3.84519095255e-05 1.3270643983e-05 -10165985908.4 +UniRef50_R0X3A7 FAD binding domain protein 5.21810253779e-08 6.80183994572e-07 253532505.127 +UniRef50_A3JD10 Choline glycine betaine transporter 3.2125776339e-06 1.18189872565e-06 -819809994.493 +UniRef50_P74211 Pyridoxine pyridoxamine 5 phosphate oxidase 9.9668262531e-08 0.000207006405365 83530788799.3 +UniRef50_Q2FH82 Glycerol 3 phosphate acyltransferase 0.00010113432579 1.26957338042e-05 -35703744848.2 +UniRef50_P55138 4.35263075045e-05 6.19635964338e-06 -15070558041.5 +UniRef50_UPI000366203C hypothetical protein 1.37426509128e-07 2.10159288761e-07 29363115.6694 +UniRef50_UPI00036AC02E hypothetical protein 2.69476413933e-07 2.80808277526e-06 1024866540.27 +UniRef50_P03023 Lactose operon repressor 4.18910859356e-05 1.91950369155e-05 -9162673501.26 +UniRef50_F0P751 0.000201411484677 4.09381539967e-05 -64785052824.7 +UniRef50_A6LQP5 NLP P60 protein 7.56742269975e-06 6.08965144638e-06 -596594389.278 +UniRef50_G7ZP32 0.000211104133909 9.47540230575e-06 -81399993210.9 +UniRef50_UPI0003B6696B Holliday junction resolvase 3.0942607677e-07 1.92204626377e-07 -47323737.9926 +UniRef50_W0ZB71 9.22025983216e-07 2.42504790472e-06 606788393.863 +UniRef50_A9VN54 Ribosomal RNA small subunit methyltransferase A 8.4854557176e-07 8.38300878119e-06 3041755255.91 +UniRef50_A9DDG2 Sulfate transporter 4.18305772219e-06 1.57617166025e-06 -1052431893.29 +UniRef50_UPI00047D446A HAD family hydrolase 7.35414871791e-08 2.96700278666e-07 90091942.5896 +UniRef50_I4EVD0 3.16334818129e-07 8.55368646745e-08 -93175966.0192 +UniRef50_A0A023RXY1 Helicase 1.57330850518e-06 7.10943801757e-05 28066509752.9 +UniRef50_E6JZW3 Amino acid permease 9.47600385784e-05 3.94330637891e-05 -22336178660.8 +UniRef50_UPI0003659021 MULTISPECIES 1.95679459525e-07 5.105715579e-08 -58385798.7331 +UniRef50_D2ZS89 2.58429831671e-05 3.26316801329e-06 -9115748463.08 +UniRef50_UPI0002880506 dihydroxyacetone kinase 7.38101545647e-08 5.42290708295e-06 2159496070.79 +UniRef50_E8U932 UvrD REP helicase 2.56265796054e-06 0.000355526292709 1.42495750699e+11 +UniRef50_C5N0Y7 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.000114471466903 2.9631190156e-05 -34251060830.0 +UniRef50_G2L894 3.64179742017e-07 7.26394713702e-07 146230628.947 +UniRef50_D4FNL7 Ribonuclease R 0.000121718213442 2.01715764088e-05 -40995623487.6 +UniRef50_UPI0003B4AB96 resolvase, partial 2.30911466212e-05 7.81031305279e-06 -6169060028.48 +UniRef50_P77218 Ethanolamine utilization protein EutD 1.65653060396e-05 6.29379340094e-06 -4146735697.88 +UniRef50_Q3JHV2 0.000145604800363 1.85387088664e-05 -51298140413.6 +UniRef50_UPI00026597D0 PREDICTED 2.18669289505e-07 3.35812674039e-08 -74722305.8076 +UniRef50_Q3JHV1 1.51971655303e-06 7.58977171045e-07 -307119823.829 +UniRef50_W4S288 6.78118542849e-06 1.10055914979e-05 1705444569.51 +UniRef50_L8GKM7 3.11430501438e-07 1.16773923949e-06 345702345.641 +UniRef50_U2ZDH4 UPF0301 protein MBE BAB_1780 8.81423690968e-08 1.67119240686e-07 31883932.2158 +UniRef50_U1LZ26 Transcriptional regulator 7.03183777232e-08 1.4006971174e-07 28159469.4877 +UniRef50_E8TAB0 Glutamine synthetase catalytic region 1.63789181259e-05 4.83962021408e-06 -4658556170.1 +UniRef50_A3PHY8 Transcriptional regulator, LysR family 0.000140243852739 2.03529611815e-05 -48401424148.6 +UniRef50_A0A023RZA2 Quaternary ammonium transporter 3.91853967671e-06 3.70259350429e-05 13365861782.8 +UniRef50_UPI0004789298 hypothetical protein 6.24089839583e-07 1.24948265377e-07 -201509578.663 +UniRef50_G1THI8 3.83282013666e-08 4.89953054657e-06 1962527040.42 +UniRef50_D8UE68 Formin 4.23336279607e-08 1.77005433639e-08 -9944678.53367 +UniRef50_I1ZKQ0 Fe2+ Zn2+ uptake regulation protein 7.3457567032e-05 2.47109667141e-05 -19679600736.4 +UniRef50_P0AE84 Sensor protein CpxA 2.93745860676e-05 3.13458554851e-05 795825654.041 +UniRef50_K0M3M3 3.4249597966e-06 1.78913971369e-06 -660400641.241 +UniRef50_UPI0003C7C8AC hypothetical protein 1.02920269629e-05 8.24139642406e-06 -827864712.596 +UniRef50_Q4L332 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000211220482648 6.28089962163e-05 -59915538286.3 +UniRef50_E6NJA8 1.17110441217e-06 4.50153945952e-05 17700477976.8 +UniRef50_Q5H1D4 Methionine aminopeptidase 1.42928238152e-05 1.11991058224e-05 -1248971917.88 +UniRef50_Q48EZ4 Sensor histidine kinase 1.99310354377e-06 1.89518668572e-06 -39530237.1698 +UniRef50_Q0FD62 3.08008435696e-06 9.54284620468e-07 -858211440.117 +UniRef50_Q8F6I3 Phosphoribosylformylglycinamidine synthase 2 3.07231794052e-07 7.69384430951e-08 -92972251.7985 +UniRef50_Q3SSW6 50S ribosomal protein L3 8.70033727607e-06 3.04450211538e-06 -2283330059.27 +UniRef50_Q9CEB7 Putative ribosome biogenesis GTPase RsgA 5.69266319164e-05 3.78446259325e-05 -7703639978.25 +UniRef50_A6LVT4 Cell wall hydrolase autolysin 2.68992391105e-06 4.29794668771e-05 16265382903.7 +UniRef50_B2UN91 Glutamate tRNA ligase 4.25408139769e-08 1.06925772879e-07 25992998.0011 +UniRef50_F0RNV8 NurA domain containing protein 2.20431079448e-06 0.000160284205599 63818793391.2 +UniRef50_Q2NFL4 Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein 5.30943380379e-05 2.00658605367e-05 -13334001672.2 +UniRef50_E9T8A5 Transcriptional regulator, PadR family 3.65361338014e-07 9.55979490171e-07 238439795.726 +UniRef50_UPI000470F100 hypothetical protein 5.74267163922e-07 1.24602333148e-06 271196208.218 +UniRef50_D3DYX9 Glycosyl transferase GT4 family 1.87399374543e-05 1.49910672389e-05 -1513464909.77 +UniRef50_F5Y5K7 Candidate UDP glucose 6 dehydrogenase 5.8710895527e-06 4.04913990912e-06 -735543428.95 +UniRef50_A2PUV3 6.85118406973e-07 2.3293307928e-06 663788716.914 +UniRef50_UPI00047022DB luciferase 2.92626742537e-07 1.88652539978e-07 -41975661.48 +UniRef50_U5NMZ2 7.35362315945e-06 5.94597393014e-06 -568285267.671 +UniRef50_P0AC14 Dihydropteroate synthase 5.71951682224e-05 2.38842884248e-06 -22126153242.0 +UniRef50_U5NMZ6 4.69031780091e-05 6.0929705839e-06 -16475581535.1 +UniRef50_UPI000255C69D hypothetical protein 3.6412050903e-07 1.50512737629e-07 -86236078.5767 +UniRef50_UPI000374608B hypothetical protein 1.37994368057e-07 2.7729555219e-06 1063766152.41 +UniRef50_I6SWC9 dTDP 4 dehydrorhamnose 3,5 epimerase 2.64855491607e-05 1.77571792775e-05 -3523750030.99 +UniRef50_Q8GWW7 Agmatine deiminase 3.39280958185e-06 2.12622127483e-05 7214097340.55 +UniRef50_X6CNL3 8.15162735288e-06 1.72029148658e-05 3654115840.75 +UniRef50_E6X1D4 Pyruvate ketoisovalerate oxidoreductase, gamma subunit 4.05898912746e-06 5.47495439141e-05 20464399010.4 +UniRef50_R5TGD1 Cobalt import ATP binding protein CbiO 2 6.85966880346e-06 5.47527816442e-06 -558895489.364 +UniRef50_D6ZIJ6 2.47165305196e-07 2.80534670634e-07 13471622.3155 +UniRef50_UPI0003B576AB hypothetical protein 5.44092154726e-08 1.11508102495e-07 23051521.3731 +UniRef50_UPI00036BB2A6 hypothetical protein 2.76995473695e-07 2.97517028103e-07 8284803.3423 +UniRef50_P12049 UPF0062 protein YexA 2.79260175706e-07 7.08331262668e-07 173221263.101 +UniRef50_G7LWI4 DNA polymerase 1.97162545333e-06 6.67131111141e-07 -526640373.888 +UniRef50_M9RKF6 D alanyl D alanine carboxypeptidase DacC 4.73150972361e-05 4.06024253076e-05 -2709988031.28 +UniRef50_K4QLG2 5.92508543178e-07 3.50097264858e-07 -97864407.7787 +UniRef50_W1U7Z2 Peptidase, M56 family 2.7567101065e-07 2.34122099287e-07 -16773805.3797 +UniRef50_E0SX52 Predicted Fe S oxidoreductase 2.72184445154e-07 1.17093730731e-06 362837559.39 +UniRef50_P52993 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 4.49089466026e-05 0.000275654778858 93154924051.1 +UniRef50_UPI0003B51A23 signal recognition particle protein Srp54 1.23536133716e-07 2.47003871254e-06 947311885.894 +UniRef50_UPI00047B2FC0 iron reductase 8.87418479519e-08 1.22480665198e-06 458643302.47 +UniRef50_UPI000470320D hypothetical protein 2.3833759762e-07 1.10598082532e-07 -51570009.7811 +UniRef50_L0MNT8 ATPase component of ABC transporters with duplicated ATPase domain 3.9245509299e-05 8.62925374398e-06 -12360158071.3 +UniRef50_D5AV27 Secretion ATP binding protein, HlyB family 4.59830275667e-06 9.84936204108e-07 -1458760418.26 +UniRef50_UPI0003605157 hypothetical protein 9.20175165826e-07 2.3036053264e-07 -278486632.395 +UniRef50_W5X880 Aminomethyltransferase 1.87587613849e-07 2.91909208041e-07 42115907.7452 +UniRef50_R1ERY2 1.05004041788e-06 9.34768362209e-07 -46536743.4216 +UniRef50_Q189B8 Threonine tRNA ligase 8.6835981142e-06 1.87014241432e-06 -2750675676.55 +UniRef50_Q3JS16 8.68209230342e-08 1.60820333817e-07 29874470.2079 +UniRef50_Q2FWP1 Phospholipase C 0.000125504210675 1.57181178812e-05 -44321992887.8 +UniRef50_B3DRA9 Deoxyuridine 5 triphosphate nucleotidohydrolase 2.48346045292e-06 3.58350861986e-05 13464460584.0 +UniRef50_UPI000369A6CD hypothetical protein 5.48605491096e-07 1.29697592159e-07 -169118259.379 +UniRef50_A4EPM0 1.90082243898e-07 1.38740431123e-07 -20727319.8522 +UniRef50_UPI00046F0FC9 hypothetical protein 5.13585763074e-08 7.42031034759e-08 9222615.9518 +UniRef50_Q8GCY1 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.7328607783e-07 1.94085025375e-07 8396790.3557 +UniRef50_K0L524 Polysaccharide biosynthesis family protein 0.000158295947085 2.43578174171e-05 -54072466552.6 +UniRef50_Q3ZZJ7 Malate dehydrogenase 3.88663222449e-07 2.65261064109e-07 -49818965.6366 +UniRef50_Q3JS13 2.94244353764e-07 1.42421859985e-06 456184469.49 +UniRef50_L7WZJ1 9.80448317277e-06 1.50979134947e-05 2137022778.66 +UniRef50_Q92ID7 NADH quinone oxidoreductase subunit C 1.445727806e-07 1.11769480991e-07 -13243094.5939 +UniRef50_V8N3A8 1.40845618418e-05 9.84389017326e-06 -1712011191.48 +UniRef50_UPI000382F770 hypothetical protein M271_03505 9.89721543217e-08 9.41684294706e-08 -1939322.67072 +UniRef50_Q5GX46 1.42913056773e-07 4.83795968982e-07 137618614.763 +UniRef50_B9FN35 5.9303086031e-07 1.3395176486e-06 301365876.856 +UniRef50_Q8CMV5 Phage infection protein 0.000100512320776 4.53755703634e-05 -22259382745.6 +UniRef50_UPI0004788FBC cytochrome oxidase 3.68342006225e-07 5.17507288902e-07 60219855.0806 +UniRef50_P16858 Glyceraldehyde 3 phosphate dehydrogenase 9.94581501303e-08 1.94762918434e-07 38475704.4852 +UniRef50_Q9K105 Quinolinate synthase A 4.54607893216e-05 0.000115681059869 28348784919.6 +UniRef50_U5MKN8 FAD dependent oxidoreductase 2.81382129806e-06 1.15768630374e-05 3537747484.79 +UniRef50_A0A010YS39 1.76552032803e-06 4.83208576436e-07 -517684989.852 +UniRef50_X1KP36 Marine sediment metagenome DNA, contig 1.5240654761e-06 1.28188680922e-06 -97770499.6859 +UniRef50_D9RNH9 Phage transcriptional regulator 0.000146249569535 5.40219679646e-05 -37233414513.9 +UniRef50_R7DZG1 tRNA specific adenosine deaminase 0.000113757941654 7.02438839085e-06 -43089645220.3 +UniRef50_UPI00047D8DA0 methionine aminopeptidase 1.84794880775e-07 1.15119403319e-07 -28128845.2632 +UniRef50_Q9PHC7 Oxygen dependent coproporphyrinogen III oxidase 2.82907412536e-05 7.47902593523e-05 18772426069.7 +UniRef50_E6PZA5 1.50935111838e-06 5.85036575305e-06 1752520878.26 +UniRef50_Q1LGM8 Metal dependent phosphohydrolase, HD subdomain protein 5.67145664597e-05 1.37518481016e-05 -17344576613.0 +UniRef50_D8LRY0 2.83147233151e-07 2.45259925884e-07 -15295570.8732 +UniRef50_Q46907 Putative electron transfer flavoprotein subunit YgcQ 3.80552662807e-05 3.01409908984e-05 -3195090090.91 +UniRef50_B5R7J9 HTH type transcriptional regulator MalT 1.20192046374e-05 3.61605958218e-06 -3392452776.98 +UniRef50_A5IRR8 Bacteriocin associated integral membrane protein 9.39900433724e-05 1.97587355792e-05 -29968089876.7 +UniRef50_V5XRA6 ABC superfamily ATP binding cassette transporter, substrate binding protein 1.97472293029e-07 1.38363358705e-07 -23863002.1348 +UniRef50_UPI00036AF6AD hypothetical protein 4.82770223987e-08 4.96316820766e-08 546892.735512 +UniRef50_Q6F797 1.30617989224e-06 0.00011371715601 45381690496.6 +UniRef50_Q5WJ15 Lipoprotein 1.01236584555e-06 2.40701718564e-07 -311530277.448 +UniRef50_Q8P151 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 1.85627874013e-05 3.06741647844e-05 4889511672.87 +UniRef50_S5YEW5 Chaperone Hsp33 9.04942233346e-05 1.29819060438e-05 -31292673673.4 +UniRef50_UPI00047E6CAE macrolide ABC transporter ATP binding protein 3.12193267595e-07 9.84274156444e-08 -86299897.6346 +UniRef50_Q7TVV6 2 isopropylmalate synthase 3.72458950938e-08 3.66251895615e-07 132823759.768 +UniRef50_UPI00047CA452 metal dependent hydrolase 1.22391363972e-06 3.51236130679e-06 923874405.607 +UniRef50_UPI0004728867 hypothetical protein 1.7830531794e-07 3.31557599866e-07 61869826.8305 +UniRef50_R4SLJ1 3.10032399295e-07 3.3987514177e-07 12047881.3488 +UniRef50_UPI00047EC453 hypothetical protein 1.6431706362e-07 2.4434974716e-07 32310176.4566 +UniRef50_W4HQ39 Fe3+ siderophore ABC transporter substrate binding protein 2.83947852055e-07 1.69525651657e-07 -46193646.419 +UniRef50_P58497 Transcriptional regulator ModE 2.05367374435e-05 7.7844823564e-06 -5148241866.43 +UniRef50_A5UJC2 Predicted phosphotransacetylase 9.99181867712e-06 1.77456501948e-05 3130316933.9 +UniRef50_D8LEL7 1.09214037583e-07 1.82280582269e-07 29497860.7171 +UniRef50_F0Y2Z5 Expressed protein 1.08323062375e-05 1.26328188023e-05 726889017.184 +UniRef50_UPI00047CBC3F cytochrome C 1.58472636123e-06 6.85953915688e-07 -362845465.443 +UniRef50_A7HZN6 Chorismate synthase 5.13707075368e-08 5.72225450633e-05 23080704656.6 +UniRef50_M4ZJ25 Integrase recombinase 1.51398123869e-06 1.66219533874e-06 59835850.9817 +UniRef50_B2HTD1 Transcriptional regulator 2.01504976255e-06 0.000134891538242 53643868976.8 +UniRef50_Q98I01 UvrABC system protein B 0.000134467584416 3.59611101608e-05 -39768272467.2 +UniRef50_S1SUV9 7.77703776834e-07 1.35577964233e-06 233376320.689 +UniRef50_C9WZ56 Transcription repair coupling factor 2.79274467665e-07 2.07656768196e-05 8270612025.89 +UniRef50_UPI0002FACF3D hypothetical protein 7.19241442319e-08 5.96148080713e-08 -4969430.06058 +UniRef50_UPI00035CB657 hypothetical protein 4.14815990089e-07 1.63829130445e-07 -101326475.193 +UniRef50_Q3J1W8 Chemotaxis histidine protein kinase, CheA3 3.4031960082e-06 1.14103685255e-06 -913261410.95 +UniRef50_S5CIT2 Non ribosomal peptide synthetase modules related protein 1.85715585998e-06 3.11355855516e-05 11820061353.2 +UniRef50_G4LFN6 4.34064582521e-06 3.42066954679e-06 -371405712.977 +UniRef50_A0A022LJU5 2.22568339476e-06 2.36326180691e-06 55542093.2619 +UniRef50_D5ALC6 CTP pyrophosphohydrolase 0.000224016388816 1.07356270921e-05 -86104060757.2 +UniRef50_K0L0Y0 Pyruvate oxidase 0.000242503836548 6.8552419843e-05 -70226321547.7 +UniRef50_Q8CQL5 Poly alpha glucosyltransferase 0.000214837317088 5.42878890006e-05 -64815774281.8 +UniRef50_P11954 L threonine dehydratase catabolic TdcB 1.88099249666e-05 1.26193520902e-05 -2499210237.07 +UniRef50_X5P5H6 4.54986764438e-07 2.06118115195e-07 -100471327.661 +UniRef50_B1IS55 UPF0442 protein YjjB 6.12920046237e-05 2.72600035565e-05 -13739136450.4 +UniRef50_Q0C3I3 Translocator protein, LysE family 0.000182492552214 5.32509509416e-05 -52176420406.3 +UniRef50_Q5HQY2 Glycosyl transferase, group 4 family protein 0.000196665062802 6.8601348889e-05 -51700892825.2 +UniRef50_E6QHZ2 1.43175330504e-06 1.12160150652e-06 -125212087.053 +UniRef50_A1VWN7 Transposase, IS4 family 0.000131852347128 0.000103757201209 -11342355173.7 +UniRef50_B8DVE0 Ketol acid reductoisomerase 1.64523046513e-07 4.44007876821e-07 112831455.66 +UniRef50_UPI00037C3339 hypothetical protein 1.65020479581e-07 2.21762074914e-07 22907278.3336 +UniRef50_A4WPY8 Short chain dehydrogenase reductase SDR 6.19847451844e-05 2.79041621034e-05 -13758749605.6 +UniRef50_F7XAS6 Transcriptional regulator, LysR family 9.18555485599e-07 2.09308915746e-07 -286331543.684 +UniRef50_A5USR6 DNA directed RNA polymerase subunit beta 4.59382771142e-08 1.67177307274e-08 -11796693.1528 +UniRef50_Q3HKI3 Possible virC1 gene, ATPase 0.000566327789512 6.54130843002e-05 -2.02225413409e+11 +UniRef50_C3K4R1 Glycerol 3 phosphate acyltransferase 5.63739582841e-06 7.74448197163e-06 850656532.873 +UniRef50_D4J507 Predicted membrane protein 5.95558600485e-08 2.86308570196e-07 91542851.655 +UniRef50_Q3J220 Phage terminase like protein, large subunit 0.000113337844865 3.14495357313e-05 -33059315279.8 +UniRef50_Q168P3 Trk system potassium uptake protein 6.81696365256e-05 1.51583404908e-05 -21401310731.0 +UniRef50_Q5ZUT5 N succinylglutamate 5 semialdehyde dehydrogenase 2.65038690196e-08 1.8718529159e-07 64869062.0743 +UniRef50_Q04539 Ribulose phosphate 3 epimerase, plasmid 3.16506393136e-05 7.87401019878e-05 19010593934.3 +UniRef50_K8Z653 5.06874047772e-07 2.54037964104e-07 -102073029.624 +UniRef50_B2A6Z3 Triosephosphate isomerase 1.27692272233e-07 1.91731593158e-07 25853459.7083 +UniRef50_Q8TX36 50S ribosomal protein L22P 5.65523086522e-05 6.26113155893e-06 -20303165334.7 +UniRef50_A0A024JQQ2 Plasmid pSG, complete sequence 2.2469404098e-06 2.34068722742e-06 37846740.676 +UniRef50_Q58369 2.54339690377e-05 4.0514123313e-06 -8632400535.85 +UniRef50_C7PE04 Short chain dehydrogenase reductase SDR 4.83956359216e-06 1.42074741331e-05 3781940442.57 +UniRef50_Q3IVA6 Mannose 1 phosphate guanylyltransferase mannose 6 phosphate isomerase, type 2 7.12781743214e-05 1.02677966303e-05 -24630638155.4 +UniRef50_V4CH91 Chaperone fimC 1.86700387678e-05 1.19737504261e-05 -2703373776.24 +UniRef50_A0A038GJ20 Lipoprotein 9.03414068199e-06 5.917841013e-07 -3408282950.99 +UniRef50_J3CKR0 Pyruvate dehydrogenase complex, dehydrogenase component (Fragment) 5.21068644993e-07 6.42130621087e-07 48874205.3467 +UniRef50_A7HGV2 tRNA pseudouridine synthase D 1.37272865951e-07 4.95553554186e-07 144642310.439 +UniRef50_V9GEA9 Flagellar hook length control protein FliK 4.90047625372e-08 9.8878361117e-07 379400253.576 +UniRef50_UPI0002FF51AC hypothetical protein 3.66624381408e-08 3.12330304995e-06 1246114692.33 +UniRef50_W4TUZ9 Mg Co Ni transporter MgtE 3.10262456591e-06 6.86824645589e-06 1520227766.36 +UniRef50_UPI00035D28CB hypothetical protein 3.96874959184e-07 1.20749812276e-07 -111475110.243 +UniRef50_UPI0003EC5005 PREDICTED 3.56294972962e-08 2.47518995909e-07 85542390.7666 +UniRef50_P58113 Pirin like protein CC_1473 7.0424172541e-06 2.54583366547e-06 -1815325974.02 +UniRef50_E1VCL4 ABC type transport system permease protein 0.000172607301134 4.6976799527e-05 -50718575158.4 +UniRef50_UPI0003D08670 PREDICTED 1.97428186396e-08 4.99305892421e-09 -5954658.99701 +UniRef50_K2Q5M0 2.42734168175e-07 4.26319635052e-08 -80783715.5555 +UniRef50_U5BVI3 2.64603338135e-07 1.28029809849e-07 -55136409.3147 +UniRef50_UPI000248D343 extracellular ligand binding receptor 9.00717658194e-08 6.89026322649e-08 -8546238.99043 +UniRef50_V2CGD9 D mannonate oxidoreductase 1.45121432832e-05 1.78904638546e-05 1363869471.33 +UniRef50_C9XPK8 Padr family transcriptional regulator 9.69419217865e-07 2.64186208875e-07 -284711219.911 +UniRef50_U4QEL4 2.13661743948e-07 3.65999645239e-08 -71482013.1458 +UniRef50_B3EFN5 Serine hydroxymethyltransferase 1.23573740901e-06 1.63986582917e-06 163151602.432 +UniRef50_J6CMF8 Sugar ABC transporter permease 1.00493325342e-05 1.61549120865e-06 -3404845238.0 +UniRef50_I0Z434 3.84935452125e-08 4.74964340348e-08 3634576.69543 +UniRef50_F0YNG2 2.32977092886e-08 4.73855360441e-07 181895652.734 +UniRef50_UPI0003B55F2C LacI family transcriptional regulator 3.15155244928e-08 4.25142597342e-07 158912079.657 +UniRef50_UPI00026263DB ABC transporter 6.18708900779e-08 1.32167763365e-07 28379710.3856 +UniRef50_Q55154 Chaperone protein dnaK1 8.57518118047e-05 7.55687646451e-06 -31568254956.6 +UniRef50_Y7D100 3.20255452974e-06 5.85959876758e-07 -1056351370.64 +UniRef50_F4H2Z9 1.57526665365e-07 3.66514024333e-07 84370761.3787 +UniRef50_B4RA78 Regulatory protein, TetR 1.63042761443e-07 6.23142673187e-06 2449881076.31 +UniRef50_W8Z0S3 2.1647552602e-07 1.05369084e-06 337994096.041 +UniRef50_K0VXX1 1.74577980442e-07 1.77802341338e-07 1301714.06107 +UniRef50_E4N9L3 3.22006713017e-07 2.29668080055e-06 797200161.112 +UniRef50_B9EAC4 0.000187428724393 5.35751852654e-05 -54038316313.6 +UniRef50_UPI000473EAD9 hypothetical protein, partial 1.99496188385e-07 2.75192953128e-07 30559712.8305 +UniRef50_M9VI34 ATP dependent dethiobiotin synthetase BioD 2.92624797564e-06 3.88654151163e-05 14509082797.9 +UniRef50_Q5LY30 Glycoprotein endopeptidase 1.74224302552e-06 2.88583099537e-06 461680496.831 +UniRef50_A3PS51 1.58365114701e-05 3.78809105071e-06 -4864095174.06 +UniRef50_B8DNL4 ATP dependent Clp protease proteolytic subunit 7.52023524109e-08 1.85035963125e-06 716652777.097 +UniRef50_R9ZDX0 GntR family transcriptional regulator 8.92893053777e-06 1.53411275426e-06 -2985378683.82 +UniRef50_B9KHI6 2.46807189712e-07 8.54770687296e-07 245442324.526 +UniRef50_C1D0Z6 Thymidine kinase 1.85027076558e-07 6.01672778813e-07 168204982.818 +UniRef50_Q8DCG0 Ribosomal large subunit pseudouridine synthase A 1.72241561359e-05 2.32006393355e-07 -6859939368.17 +UniRef50_Q97EX0 Ribosomal RNA small subunit methyltransferase A 4.27391612785e-06 1.972947889e-05 6239600348.18 +UniRef50_P65691 ATP dependent 6 phosphofructokinase 4.14261482839e-08 8.82903000021e-08 18919633.1364 +UniRef50_Q9LXS7 Citrate synthase 1, peroxisomal 1.03834085489e-07 5.07715884461e-07 163052038.432 +UniRef50_C4ZHB9 Glutamyl tRNA amidotransferase subunit A 0.000189270463726 0.000112317759779 -31066750899.3 +UniRef50_Q3JWI9 PilL 1.05698976443e-06 6.4300275995e-07 -167131633.9 +UniRef50_B0V8W4 2.61118127623e-06 6.07928283919e-05 23488644909.7 +UniRef50_UPI000365191C hypothetical protein 2.97169638099e-08 2.46599658763e-07 87558205.4025 +UniRef50_Q3J7E7 Malate dehydrogenase 2.95486080335e-07 2.14582199627e-07 -32661889.4441 +UniRef50_C3AWX8 2.59143699447e-06 1.58410802146e-05 5349043559.36 +UniRef50_UPI00046718DB oxidoreductase, partial 5.60600943504e-08 2.11351409771e-07 62693009.6742 +UniRef50_UPI000463A2AA 3 hydroxybutyrate dehydrogenase 6.0509690324e-08 1.49127235823e-06 577616446.468 +UniRef50_C6WBN9 PE PGRS family protein 4.70509143144e-07 4.83523906529e-06 1762095030.83 +UniRef50_Q11RE2 ATP dependent 6 phosphofructokinase 1.69726748625e-07 1.73786020976e-07 1638778.06097 +UniRef50_UPI0003B54089 hypothetical protein 9.62280295139e-08 2.2257236241e-08 -29862916.968 +UniRef50_V3ARY1 Ornithine decarboxylase, inducible 1.01748244975e-06 2.66729212392e-06 666048410.904 +UniRef50_Q2IEZ0 Aspartyl Asparaginyl beta hydroxylase 5.3992486904e-06 5.35041063585e-06 -19716521.9322 +UniRef50_Q97BF6 Potassium transporting ATPase B chain 6.82535467285e-08 1.0182375395e-05 4083195104.39 +UniRef50_UPI0003D06760 50S ribosomal protein L11 4.89106020093e-07 8.33813626971e-07 139162690.935 +UniRef50_A8A6Z4 Protein FdhE 3.65570637185e-05 1.6458555151e-05 -8114014545.13 +UniRef50_B9KKX7 2.55289836761e-05 1.88606052658e-05 -2692106194.44 +UniRef50_C0MHE9 2.15802408858e-07 3.30846091203e-07 46444546.3074 +UniRef50_Q3HKD5 4.5984833639e-05 3.61668545562e-06 -17104541337.3 +UniRef50_Q3HKD7 0.000260454347429 0.00010919979027 -61063320827.2 +UniRef50_Q3HKD6 2.38771152851e-05 5.97779984952e-06 -7226173290.65 +UniRef50_UPI00036D0132 hypothetical protein 5.03954692761e-06 3.99122617737e-07 -1873396238.3 +UniRef50_P0AEQ8 Glutamine transport system permease protein GlnP 1.9764830774e-05 9.13350634632e-06 -4291996132.48 +UniRef50_Q9I1L9 Dihydrolipoyl dehydrogenase 2.40573625513e-06 2.81975431133e-06 167144169.861 +UniRef50_UPI00047BC897 acyl CoA dehydrogenase 5.12581400826e-08 1.76657633898e-07 50625314.4779 +UniRef50_G8V322 0.000121288157683 2.79890077832e-05 -37666011723.9 +UniRef50_UPI000465AF35 aldehyde oxidoreductase 1.77978829675e-06 1.13217893838e-05 3852222932.36 +UniRef50_D0LSQ0 3 demethylubiquinone 9 3 methyltransferase 4.68811436765e-05 3.89428622235e-06 -17354321862.3 +UniRef50_Q8DSD9 7.82316904708e-05 5.62973693485e-06 -29310299568.6 +UniRef50_S1STI3 Carbonic anhydrase, family 3 8.81965471089e-07 4.05999959486e-07 -192153117.788 +UniRef50_U5MMX2 Type IV pilus assembly protein PilO 3.24297545183e-06 3.98976834538e-06 301489455.305 +UniRef50_Q3JB01 3.3137551243e-06 7.72464371747e-06 1780729852.75 +UniRef50_Q1GMD1 Probable chemoreceptor glutamine deamidase CheD 1 2.56468209586e-06 4.12357494991e-07 -868919853.364 +UniRef50_I3X6Z9 4.72290077459e-08 7.03340448565e-08 9327787.01224 +UniRef50_UPI00037E93F7 hypothetical protein 1.9053341368e-07 5.74502777836e-08 -53727295.0749 +UniRef50_P20751 Probable adenosine monophosphate protein transferase fic 6.4925117853e-05 2.97927199182e-05 -14183380169.3 +UniRef50_UPI000378B4BF hypothetical protein 1.61093204591e-07 4.11783730662e-07 101206841.694 +UniRef50_UPI0004671E08 hypothetical protein 3.98256484973e-08 8.02099902009e-08 16303654.3173 +UniRef50_C6SQC4 4.71912246437e-05 2.10114892954e-05 -10569080421.6 +UniRef50_UPI0003761AFD hypothetical protein, partial 1.79518267396e-08 3.08211789454e-08 5195515.41019 +UniRef50_S5XPF3 ATP dependent RNA helicase RhlE 2.38188739925e-05 1.02663283228e-05 -5471328995.3 +UniRef50_P31802 Nitrate nitrite response regulator protein NarP 2.58951160052e-05 1.64623828863e-05 -3808110112.75 +UniRef50_O07344 Signal peptidase I 1.93252212719e-06 2.18529483154e-05 8042120503.29 +UniRef50_UPI0000DB7F4F PREDICTED 1.51112903266e-07 4.55145781205e-07 122741803.727 +UniRef50_B4FRS7 2.95934263712e-07 7.25722517833e-07 173510792.284 +UniRef50_Q8PCH1 tRNA dihydrouridine synthase B 8.43526520771e-08 8.76719371208e-08 1340036.10435 +UniRef50_G6CTE1 1.05189603701e-07 2.7064179549e-08 -31540192.4369 +UniRef50_UPI00026C71CA TetR family transcriptional regulator 3.26855270059e-06 1.08866214099e-06 -880048569.176 +UniRef50_UPI00024870DD phosphoglyceromutase, partial 7.39028968022e-07 6.16826950046e-07 -49334454.2443 +UniRef50_R7EC63 3.35132358362e-08 7.95469205052e-08 18584363.3977 +UniRef50_B7MQ51 2.98885143182e-08 1.65944467644e-07 54927457.952 +UniRef50_F0T772 MotA TolQ ExbB proton channel family protein 6.14469488097e-07 2.19867770398e-07 -159305555.743 +UniRef50_A6LWJ1 DNA mismatch repair protein MutL 5.95716973486e-07 2.10631034731e-05 8262935092.96 +UniRef50_R6EG03 Serine type site specific recombinase 1.14888290588e-07 1.37141288755e-06 507274399.083 +UniRef50_B5BFR1 Possible oxygen independent coproporphyrinogen III oxidase 1.91458571656e-05 4.44358389305e-06 -5935488137.29 +UniRef50_Q9I7C2 DNA gyrase subunit B 2.17107276943e-05 5.0014615494e-06 -6745735788.45 +UniRef50_Q9I656 1.04503379861e-05 4.2825427429e-06 -2490014627.04 +UniRef50_U6JZT0 9.44846807773e-07 4.56199500503e-08 -363028917.217 +UniRef50_UPI0003B550BB spermidine putrescine ABC transporter permease 8.2677794421e-08 1.52461902994e-06 582129371.388 +UniRef50_D6SHJ8 Bacterial membrane protein YfhO 7.21488859767e-05 3.45322859598e-05 -15186283034.4 +UniRef50_UPI00036502F5 hypothetical protein 2.89558163087e-07 1.54485148e-07 -54530633.7229 +UniRef50_Q0AAU9 Elongation factor P 1.13675924802e-07 3.66573437742e-07 102097829.375 +UniRef50_Q82HL5 Imidazolonepropionase 4.79637111068e-06 6.50173094073e-05 24311931784.4 +UniRef50_B7V5F2 Alginate biosynthesis protein AlgZ FimS 6.92504636356e-06 2.44400031881e-06 -1809053276.88 +UniRef50_Q9RTK1 tRNA specific 2 thiouridylase MnmA 3.71026706344e-06 0.000396619940964 1.58622456898e+11 +UniRef50_UPI0003AA521B molybdenum ABC transporter permease 3.15030355198e-07 2.56311376953e-07 -23705572.0804 +UniRef50_UPI0003B5A522 dihydrofolate reductase 1.2781563439e-07 2.49790663612e-07 49242816.0988 +UniRef50_R9ZHA8 Histidine kinase 3.03084034128e-06 7.06143032099e-06 1627198635.71 +UniRef50_A5G1D5 Uroporphyrinogen decarboxylase 7.4579052529e-08 2.18666267354e-07 58169776.7738 +UniRef50_A0A037F2E9 2.24662212355e-06 1.37740417588e-07 -851381423.585 +UniRef50_UPI0003B3B50B succinate dehydrogenase 7.50228095805e-08 1.36553136525e-07 24840548.0495 +UniRef50_Q84WV0 Serine hydroxymethyltransferase 7 2.39297642032e-08 3.30131725703e-07 123617489.378 +UniRef50_C0QJ54 Dihydroorotase 4.29070663979e-08 6.85704994891e-08 10360642.8647 +UniRef50_Q634K9 7.82375384975e-06 6.08900423076e-06 -700339708.958 +UniRef50_UPI0003747F78 hypothetical protein 8.72549394864e-07 2.09678116673e-07 -267609269.351 +UniRef50_UPI0003B369AA ribonuclease III 2.15714979479e-07 6.92094439128e-07 192320233.694 +UniRef50_UPI0003AEA2A6 PREDICTED 1.27862461754e-07 3.56438429067e-08 -37229788.0784 +UniRef50_P33647 mRNA interferase ChpB 1.69029656208e-05 5.13594269898e-06 -4750491551.14 +UniRef50_UPI0001BC2B50 GntR family transcriptional regulator 7.41122591194e-07 5.16994508947e-07 -90483257.164 +UniRef50_L1K4A8 4.68524822607e-06 4.11408736575e-06 -230584648.243 +UniRef50_B4RJX0 DNA polymerase III subunit delta 5.33227846271e-06 4.14367333195e-05 14575811477.2 +UniRef50_Q04444 Protoheme IX farnesyltransferase 3.05973843096e-08 3.94630662121e-07 146964701.443 +UniRef50_K2GS32 7.00306280245e-07 1.12918282229e-07 -237135742.86 +UniRef50_D5AUR2 6.45113215985e-08 4.34250295474e-08 -8512794.85893 +UniRef50_W8RUE5 Cytochrome B561 5.69474524575e-07 1.72135854189e-07 -160410497.129 +UniRef50_Q9HXX3 Probable cysteine desulfurase 1.91055302585e-06 5.55437177595e-06 1471054344.1 +UniRef50_U3SRQ3 Cell shape determining protein MreC 5.90628413574e-05 1.43480373981e-05 -18051915070.7 +UniRef50_T2E6Y0 Lysine arginine ornithine binding periplasmic family protein 9.96128663077e-06 3.47257153372e-05 9997703762.49 +UniRef50_U6IEY8 Collagen alpha chain 4.12209537743e-07 1.53375081918e-07 -104494646.073 +UniRef50_A5WGA7 Penicillin binding protein 6, Serine peptidase, MEROPS family S11 2.53444265998e-05 5.89009274925e-05 13547171195.0 +UniRef50_UPI00046F5711 alpha glucosidase, partial 3.20938547294e-07 7.47518147308e-08 -99388604.9866 +UniRef50_A9GFW6 Histidine ammonia lyase 3.70651595586e-08 7.31527232869e-07 280362861.003 +UniRef50_A6QDZ2 Phage tape measure protein 7.13707037488e-06 1.22855096404e-06 -2385341791.84 +UniRef50_UPI0004672C36 hypothetical protein, partial 1.09815672558e-06 8.85790244115e-08 -407578906.874 +UniRef50_UPI00046DEE74 hypothetical protein 1.30223881677e-08 7.59352792985e-07 301302742.929 +UniRef50_K7YHX4 Receptor ligand binding region family protein 4.82522689976e-05 6.1899871782e-06 -16981059332.7 +UniRef50_A3PQ86 Extracellular solute binding protein, family 1 8.94556284692e-05 1.86170050224e-05 -28598421573.1 +UniRef50_UPI0003B79FBA O sialoglycoprotein endopeptidase 6.09540327431e-08 9.00097620862e-08 11730154.4897 +UniRef50_A8LK13 5.72660915327e-07 2.06182187285e-07 -147951959.71 +UniRef50_A5N391 1.45403247892e-06 4.63665195719e-06 1284862538.51 +UniRef50_E5QS55 2.84210257288e-07 1.60734101085e-06 534164121.852 +UniRef50_B4UIZ5 Putative 3 methyladenine DNA glycosylase 2.4110259963e-07 1.05862225026e-07 -54598198.8137 +UniRef50_Q73CS7 Tn554 related, transposase B 8.77647351416e-05 3.97484052538e-05 -19384781602.3 +UniRef50_I1ZP64 3.68407755186e-05 7.17385535531e-05 14088661236.4 +UniRef50_UPI0003B53A62 metallophosphoesterase 4.06642450595e-08 6.78720535925e-07 257591154.453 +UniRef50_UPI00040A50B2 hypothetical protein 2.04076026085e-08 1.08563291311e-07 35589533.3211 +UniRef50_D9QKP9 Flagellar FlaF family protein 1.1941354019e-07 2.42499876586e-07 49691464.4423 +UniRef50_E4R8G4 2.37351956827e-07 5.98915899265e-07 145967800.451 +UniRef50_UPI000288FEC4 cystathionine beta lyase 1.68778597966e-07 3.18481820648e-07 60437028.0618 +UniRef50_Q9ZMV7 DNA topoisomerase 1 3.07622559545e-06 3.72366864282e-05 13790997234.2 +UniRef50_B7GIC0 N acetyldiaminopimelate deacetylase 3.02968451742e-07 2.28337658653e-06 799515066.355 +UniRef50_A9BPD7 3.08856244385e-06 7.25440392157e-07 -954021371.036 +UniRef50_A4WY56 2.27377594921e-05 2.31620220955e-06 -8244433275.67 +UniRef50_S5V0B7 5.48360592339e-06 1.12599471038e-05 2331979818.21 +UniRef50_Q7MV04 Chorismate synthase 4.62495944522e-08 2.0274188357e-05 8166267103.14 +UniRef50_Q887Z4 Probable malate 9.019120526e-05 5.04077039872e-05 -16061087662.3 +UniRef50_S9VRA1 7.65580163365e-07 2.65704847331e-07 -201805799.243 +UniRef50_UPI00047C4FEB RNA methyltransferase 1.28917000836e-07 2.16946603983e-07 35538631.0352 +UniRef50_D3QEM5 8.26519881161e-07 3.78906828682e-07 -180706882.116 +UniRef50_A0A024KA74 4.60954557117e-08 1.12549493657e-06 435766816.144 +UniRef50_A6LZ43 Binding protein dependent transport systems inner membrane component 1.88428946181e-06 8.52644008553e-06 2681517715.15 +UniRef50_UPI0002376815 prolyl aminopeptidase, partial 1.34549942907e-07 3.48458661669e-07 86357574.7194 +UniRef50_C0BAK5 Excinuclease ABC, C subunit 7.87582618192e-08 3.13096469214e-07 94605209.9785 +UniRef50_Q21LN7 tRNA 2 O) methyltransferase 2.0374873848e-05 5.83726069246e-07 -7989929223.0 +UniRef50_A4WQR0 MscS Mechanosensitive ion channel 2.57080646298e-05 9.13900562882e-06 -6689132443.92 +UniRef50_UPI00035E0303 hypothetical protein 5.52469403818e-08 1.15684635595e-07 24399439.2115 +UniRef50_U5MRV9 Serine threonine protein kinase 4.42783635796e-06 1.57387420987e-05 4566351447.94 +UniRef50_P13982 Carbamate kinase 6.89538988987e-06 1.91764094291e-06 -2009578333.74 +UniRef50_UPI0003815DEC hypothetical protein 7.30026997077e-06 6.99929067698e-06 -121509034.334 +UniRef50_Q2IPX3 3.09563707558e-07 5.06392216764e-06 1919392852.87 +UniRef50_S5D154 RNA 3 terminal phosphate cyclase 1.83245625651e-06 5.20953956005e-05 20291765408.8 +UniRef50_E6NJU4 Single stranded DNA specific exonuclease 7.31089713695e-07 2.53146614321e-05 9924689577.07 +UniRef50_UPI00042B0FB5 Enoyl CoA hydratase isomerase D isoform 1 4.2227885151e-07 5.28025992827e-07 42691418.613 +UniRef50_X2HZR9 Glycosyltransferase 9 family protein 4.950643619e-06 3.55227571611e-05 12342337399.0 +UniRef50_P72794 Phosphoadenosine phosphosulfate reductase 9.42903920079e-08 1.4621505404e-07 20962623.2496 +UniRef50_P21826 Malate synthase 2, glyoxysomal 1.16051111112e-07 1.01791287612e-07 -5756865.73466 +UniRef50_Q8CRL3 9.22242905109e-05 1.70711251666e-05 -30340255082.5 +UniRef50_C5WHP5 6.44342984872e-05 6.63592958822e-06 -23333910790.3 +UniRef50_O87016 tRNA pseudouridine synthase A 7.1564353676e-06 1.33223785409e-05 2489266923.69 +UniRef50_J3MER7 4.75027475239e-08 8.29409629013e-07 315665403.134 +UniRef50_P0AGG3 Acyl CoA thioesterase 2 4.06027738126e-05 6.23364651693e-06 -13875238445.9 +UniRef50_UPI0003AF73D9 PREDICTED 9.00582863081e-07 5.97726284432e-07 -122266917.269 +UniRef50_R0P9K1 D alanyl D alanine carboxypeptidase family protein 1.40852980911e-06 2.20517238216e-05 8333910743.32 +UniRef50_B9DPV8 Heme A synthase 8.63557309472e-05 3.29089091725e-05 -21577137816.7 +UniRef50_UPI0004705E30 hypothetical protein 4.97767935597e-07 1.33443503908e-06 337772776.736 +UniRef50_Q8FFW9 3.17462678592e-05 4.46666953163e-06 -11013108603.2 +UniRef50_P39282 Inner membrane transporter YjeM 1.91756109349e-05 2.41504385503e-05 2008398956.34 +UniRef50_G2L2S5 Usher CupC3 5.0693542739e-06 2.28441714788e-06 -1124313292.8 +UniRef50_U5MXP3 5.5238540274e-06 1.20948821241e-05 2652804678.22 +UniRef50_W7VSI1 4.41215866739e-07 1.16185939305e-07 -131218570.271 +UniRef50_UPI00036404C4 hypothetical protein, partial 6.38729393015e-07 8.33743423042e-07 78729557.0132 +UniRef50_B7GX48 Dihydroorotase 2.21416544302e-06 7.04194953859e-05 27535328671.5 +UniRef50_UPI00034DB867 hypothetical protein 3.66432003638e-07 2.86614895778e-07 -32223145.9091 +UniRef50_Q3IV31 Two component transcriptional regulator, LuxR family 8.24173001267e-05 2.71683408625e-05 -22304682835.9 +UniRef50_W5VEC3 2.87040968371e-06 4.25847963751e-06 560380873.883 +UniRef50_X5QPT7 Phosphatase 5.69643832137e-08 1.13191411435e-07 22699541.2762 +UniRef50_B7N5L4 CinA like protein 3.03256945269e-05 2.33202738417e-05 -2828174296.79 +UniRef50_F2N5L7 Membrane protein 4.32448175698e-07 5.57853915734e-07 50627836.154 +UniRef50_UPI000380F219 hypothetical protein 1.69047544956e-07 2.25927924875e-07 22963307.3741 +UniRef50_B9E6T3 Phosphate specific transport system accessory protein PhoU 0.000159093777712 2.63858811801e-05 -53575806339.0 +UniRef50_UPI00029A1B88 putative beta carotene desaturase methylase 8.84732786372e-07 4.29248449696e-08 -339848196.089 +UniRef50_UPI0003B30D3A ABC transporter permease 7.018336314e-08 9.53851644773e-08 10174276.4607 +UniRef50_K2XX98 Tryptophanase 3.08571653009e-06 1.07200723931e-05 3082083145.98 +UniRef50_UPI000366A6AA hypothetical protein 6.63451302619e-08 2.78979366778e-07 85843050.597 +UniRef50_A1K1U7 Lipoyl synthase 4.81334664778e-08 9.79687824816e-08 20119128.6188 +UniRef50_UPI0002627F17 acetolactate synthase 4.02764102318e-07 9.86499994125e-07 235661342.767 +UniRef50_R0ZN74 Putative identified by MetaGeneAnnotator 9.25287279381e-08 1.0669999783e-06 393406001.878 +UniRef50_P22609 Type 4 fimbrial assembly protein PilC 4.11202888168e-06 1.83236838799e-06 -920326915.883 +UniRef50_Q1CUW0 Phosphate acyltransferase 1.22693170804e-06 4.92645331283e-05 19393369181.0 +UniRef50_Q9K907 Bis tetraphosphatase PrpE [asymmetrical] 3.46232294946e-07 3.99221006554e-06 1471925967.17 +UniRef50_UPI00047C7069 hypothetical protein 6.73192233813e-08 1.02947824257e-07 14383703.3856 +UniRef50_UPI000463DC0E exodeoxyribonuclease III 7.48213360561e-07 1.62394806621e-07 -236502139.028 +UniRef50_D4GSF3 SAMP activating enzyme E1 2.85189236737e-07 7.03512615249e-07 168882281.31 +UniRef50_K0DUB4 Guanine deaminase 1.7799278945e-06 3.47750396965e-06 685332293.139 +UniRef50_A5P853 3.17531240605e-07 4.11507379255e-07 37939320.3899 +UniRef50_A8LKM9 Transcriptional regulator 4.70221180881e-05 8.61283188269e-06 -15506300176.1 +UniRef50_Q469F5 Lon protease 5.11577850277e-06 1.35075045631e-05 3387842788.61 +UniRef50_J7M386 Mevalonate kinase 3.94175755734e-06 1.1527672651e-05 3062527012.96 +UniRef50_Q9KPZ7 Copper exporting P type ATPase A 5.23351227837e-08 5.80594491628e-07 213264789.674 +UniRef50_P25907 2.59447348708e-05 1.95984435e-05 -2562075704.14 +UniRef50_A0A024EDR3 Malonate decarboxylase, alpha subunit 1.07089900933e-05 1.04260521206e-05 -114225531.618 +UniRef50_P24171 Peptidyl dipeptidase dcp 2.53856556398e-05 8.11116592989e-06 -6973923477.71 +UniRef50_I3X5Y9 Transposase IS4 family protein 3.40991223193e-07 1.3985250459e-07 -81202168.9497 +UniRef50_N4R2H6 Type F conjugative transfer system protein TraW 1.101126364e-06 4.46651370877e-07 -264219586.035 +UniRef50_Q1J163 Elongation factor P 1.39397354038e-07 1.20579436193e-05 4811663384.31 +UniRef50_Q27I85 PSQ10.3c 4.55029082807e-07 5.63500747548e-07 43791342.153 +UniRef50_UPI00037303EC hypothetical protein 2.03606793825e-07 1.64631278185e-07 -15734893.9472 +UniRef50_H6N2J3 4.02053109194e-09 3.62338438668e-08 13004909.669 +UniRef50_UPI000465CD92 membrane protein 8.78865920273e-08 1.40831536346e-07 21374523.729 +UniRef50_D6A1D4 5.99844134442e-07 1.12535108184e-05 4301015975.52 +UniRef50_D2Q8M6 Sugar binding lipoprotein of ABC transporter system 8.6109359777e-06 4.42880096515e-05 14403272449.0 +UniRef50_Q6E7F4 dTDP glucose 4,6 dehydratase 3.33201274394e-05 6.94910024425e-06 -10646307287.6 +UniRef50_UPI00037948E9 hypothetical protein 1.22752950701e-07 1.73756854612e-07 20590901.8972 +UniRef50_UPI0003708B64 hypothetical protein 1.34487425792e-07 6.38773750785e-08 -28506143.9558 +UniRef50_P0AAS1 Inner membrane protein YlaC 6.80536327058e-05 1.49022322971e-05 -21457872586.0 +UniRef50_UPI0003032198 hypothetical protein 1.03384040464e-07 1.27821040311e-07 9865516.71394 +UniRef50_UPI00046685FF hypothetical protein, partial 1.99370708951e-06 5.34431258114e-06 1352680553.52 +UniRef50_UPI000377B254 hypothetical protein 4.00077514755e-08 1.06797024305e-07 26963649.0378 +UniRef50_A0A011MUR4 Inner membrane protein YjcH 1.59064985804e-06 5.89671630859e-07 -404107193.697 +UniRef50_A5UN55 DNA directed RNA polymerase subunit D 3.87161209938e-05 1.20422719843e-05 -10768560170.1 +UniRef50_F0KJH6 cAMP phosphodiesterase, heme regulated 1.03515353427e-06 3.3646703999e-05 13165683111.3 +UniRef50_P39795 Trehalose 6 phosphate hydrolase 2.51843938048e-05 2.37736078611e-05 -569551597.762 +UniRef50_Q7NIG8 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.02649468004e-07 5.84977298898e-07 113979209.884 +UniRef50_UPI0002E68AF4 hypothetical protein 3.46148054217e-06 1.44392531399e-06 -814511803.803 +UniRef50_Q7UGJ1 Ribosome binding ATPase YchF 1.52535588943e-05 7.605092871e-05 24544644262.2 +UniRef50_V5SST6 Transcriptional regulator 3.71297693954e-06 3.68378426439e-06 -11785441.1925 +UniRef50_Q52671 Sarcosine oxidase subunit beta 9.81127435283e-05 1.1702325299e-05 -34884946214.2 +UniRef50_V6JTT6 Membrane protein 4.82578932584e-07 2.72768795513e-07 -84702926.9955 +UniRef50_UPI00016C3AF7 aspartyl glutamyl tRNA amidotransferase subunit B 1.14223826312e-07 6.11991631173e-08 -21406707.2175 +UniRef50_T1A5Q2 Protein containing DUF28 6.74169060459e-07 5.27993040976e-07 -59013052.8468 +UniRef50_P0C652 Insertion element IS1 protein InsA 9.62480048154e-06 3.9818918867e-05 12189736115.7 +UniRef50_UPI000362D518 hypothetical protein 2.60551511227e-08 2.92861738016e-08 1304403.50458 +UniRef50_UPI0003C1AD28 5.9129125796e-06 8.39528444824e-07 -2048187432.64 +UniRef50_Q7VJN5 3,4 dihydroxy 2 butanone 4 phosphate synthase 5.83297969285e-06 2.14077287321e-05 6287717310.83 +UniRef50_UPI00047D0FD3 isopentenyl diphosphate delta isomerase 6.96049288192e-07 1.67735712418e-07 -213286673.677 +UniRef50_Y7FMH1 3.24643977845e-07 5.21538458851e-07 79488718.1491 +UniRef50_A0A053ZV58 PE PGRS family protein PE_PGRS6 4.96421480445e-08 4.44829697082e-07 159542063.043 +UniRef50_Q5M2U6 Ribosomal RNA small subunit methyltransferase H 0.000261936059268 0.000148163068336 -45931552590.8 +UniRef50_T0DA68 1.33509628063e-07 1.19634322249e-06 429078964.506 +UniRef50_UPI00031299A3 putrescine spermidine ABC transporter substrate binding protein 2.56698841095e-07 1.19916594443e-06 380485534.988 +UniRef50_T1XR51 SAM dependent methyltransferase, putative 0.000215953101397 5.81570547797e-05 -63704200394.5 +UniRef50_UPI00040C571B hypothetical protein 3.87006090364e-08 4.21535806713e-07 154555267.218 +UniRef50_Q51576 3.06755112133e-06 6.35895150675e-06 1328778725.62 +UniRef50_J0GJ57 LPXTG motif cell wall anchor domain protein 1.89267875781e-05 2.51690373754e-06 -6624871478.37 +UniRef50_A0A024JCU6 Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family 3.39513678557e-08 1.2358305741e-06 485213384.275 +UniRef50_M4TWT1 2.61934727096e-08 4.8525075276e-08 9015541.99564 +UniRef50_UPI00036D292E hypothetical protein 5.79997633727e-08 5.64233435913e-08 -636420.010597 +UniRef50_U5MPM6 Anti sigma factor N terminus 2.10801323136e-06 1.20054699694e-05 3995724740.6 +UniRef50_UPI000360F857 hypothetical protein 5.67990682454e-08 1.61684579395e-07 42343567.9412 +UniRef50_Q8FIR3 N methyl L tryptophan oxidase 2.95445320372e-05 1.2591604561e-05 -6844104857.96 +UniRef50_M9SB66 4.02966650976e-06 2.56425503788e-06 -591604593.819 +UniRef50_L0Q2L3 9.03414029288e-07 9.78135264835e-06 3584132765.07 +UniRef50_P77610 L asparagine permease 3.53882579063e-05 5.03036631673e-06 -12255853367.9 +UniRef50_V5SZ20 Glycosyl transferase 7.30048215693e-06 5.95999793308e-06 -541169930.759 +UniRef50_Q9CEG1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 6.57987225709e-05 7.08030271549e-05 2020299170.28 +UniRef50_UPI00041A37DE hypothetical protein 3.58829873669e-07 1.99106867756e-07 -64482137.5088 +UniRef50_C7MGE6 0.000171046538492 3.4918991815e-05 -54956361066.4 +UniRef50_P0CK95 Putative lipoprotein AcfD homolog 2.41277144926e-05 6.27983835345e-06 -7205406615.42 +UniRef50_Q6A8C8 ATP synthase epsilon chain 5.16515137485e-06 0.000163357137973 63864046223.6 +UniRef50_UPI0003B78686 polyamine ABC transporter permease, partial 1.24421524914e-07 7.13375843667e-07 237768085.763 +UniRef50_T2E3D9 Cytochrome c oxidase accessory protein CcoG 4.94445875905e-06 1.10566285469e-05 2467557948.11 +UniRef50_Q5LNK3 Holo [acyl carrier protein] synthase 5.06694829474e-05 5.42445840392e-06 -18265971627.1 +UniRef50_Q8K9K4 Flagellar basal body rod protein FlgG 0.000164506244147 2.82874350327e-05 -54993204832.1 +UniRef50_T0ND38 1.13494375483e-07 9.92837658123e-08 -5736997.50785 +UniRef50_Q46812 Protein SsnA 8.63524225922e-05 2.49311360445e-05 -24796527103.3 +UniRef50_F3KHX6 ABC type transport system involved in Fe S cluster assembly, ATPase component 1.8217743079e-07 3.91352128767e-07 84446392.4355 +UniRef50_D8IGI0 Phosphoribosylaminoimidazole carboxylase ATPase subunit 0.000102286176828 6.37511876492e-05 -15557048009.0 +UniRef50_UPI0002192F4A ABC transporter ATP binding protein 2.66426804626e-07 5.88687211286e-08 -83793745.3318 +UniRef50_N6A660 3.00771955137e-06 1.53328824921e-06 -595246009.989 +UniRef50_UPI000300B5EF pyrroline 5 carboxylate dehydrogenase 2.16460799875e-07 6.55090618321e-08 -60941069.0341 +UniRef50_K6TZB8 5.24286095625e-06 4.81154565986e-05 17308192966.7 +UniRef50_UPI0004765628 NADH quinone oxidoreductase subunit K 8.91613713091e-07 8.79816556777e-07 -4762656.77135 +UniRef50_UPI000289CB7D alkyl hydroperoxide reductase thiol specific antioxidant Mal allergen 1.59752251034e-07 4.23934124494e-06 1646980139.03 +UniRef50_Q9RFD3 Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.000105755466464 2.455438698e-05 -32781872237.0 +UniRef50_F0XYR5 1.65381464035e-07 1.86891721937e-06 687738289.161 +UniRef50_UPI0003775FD0 hypothetical protein 5.23622831573e-07 4.30903426307e-07 -37431961.7009 +UniRef50_E6RPQ3 6.58664692817e-07 2.76820334873e-07 -154155253.059 +UniRef50_B6IPE0 Probable transaldolase 0.000139966823341 0.000141365417627 564629675.94 +UniRef50_D9STR3 3.43710519528e-06 5.58198075654e-06 865912584.664 +UniRef50_A6V5X2 Cyclic diguanylate phosphodiesterase domain protein 9.67226900584e-06 3.00093864815e-06 -2693297931.83 +UniRef50_UPI000465C5E8 peptide ABC transporter permease 1.80974435753e-07 2.11736782479e-07 12419136.8697 +UniRef50_UPI000380077B hypothetical protein 1.26083364399e-07 1.69512366835e-07 17532821.2172 +UniRef50_UPI00029CD1FE molybdopterin biosynthesis protein, partial 4.87456387146e-08 1.61889865377e-07 45677712.7392 +UniRef50_C1CVF4 DNA gyrase subunit A 1.59190540286e-06 0.000508022764706 2.04452352506e+11 +UniRef50_UPI00024851F4 hemolysin type calcium binding protein, partial 5.20484161919e-07 2.98778123165e-07 -89505448.484 +UniRef50_A0A017XC98 0.000116446538598 2.55918406452e-05 -36679156476.1 +UniRef50_UPI0004704CFF cation 1.42576596603e-07 4.24030823681e-07 113626525.303 +UniRef50_M5FJL9 3.44896130893e-07 9.87583848416e-06 3847758385.83 +UniRef50_C7NLK0 8.66547613271e-08 2.79836794614e-07 77989957.4481 +UniRef50_A0A025GLL8 Lipoprotein NlpD 2.17391173558e-05 1.10027233794e-05 -4334413998.64 +UniRef50_UPI0002557A7E high affinity branched chain amino acid ABC transporterATP binding protein, partial 2.95467390067e-06 4.24570594636e-07 -1021433752.5 +UniRef50_Q9PC10 Bifunctional purine biosynthesis protein PurH 2.85047267843e-08 3.79891888394e-05 15325194006.2 +UniRef50_UPI00047B4540 flavin monooxygenase 1.145798318e-07 2.01469997051e-07 35078625.9741 +UniRef50_T1B7E9 FeS assembly protein SufB 4.44263809522e-08 8.70979755788e-07 333689740.372 +UniRef50_G8PBW8 Phosphatidylethanolamine binding family protein 3.68729530284e-07 2.00933103306e-07 -67741476.6647 +UniRef50_UPI0003A506AE MULTISPECIES 5.68214612427e-08 1.84569825451e-07 51573582.2795 +UniRef50_E7KW76 Muc1p 5.96654777896e-08 3.23411104275e-07 106477345.935 +UniRef50_UPI0003A8EC6C hypothetical protein 1.00276123806e-06 1.73345862354e-07 -334845165.244 +UniRef50_F0RPV8 Diguanylate cyclase 8.76327023121e-08 1.64619329046e-05 6610505926.93 +UniRef50_UPI00047DB175 beta lactamase 1.6713340482e-07 2.86648507308e-07 48249713.4896 +UniRef50_Q42581 Ribose phosphate pyrophosphokinase 1, chloroplastic 1.09623840068e-06 6.9722285617e-07 -161087471.79 +UniRef50_UPI00037D526A hypothetical protein, partial 6.47350617605e-07 5.49688823519e-07 -39427264.7175 +UniRef50_F8WK85 PAP2 family protein 0.000100019317188 4.38169397155e-05 -22689589466.4 +UniRef50_UPI00036C9515 hypothetical protein 1.08175376047e-06 1.97463878759e-06 360468642.38 +UniRef50_P45792 Type IV pilus assembly protein TapB 6.78704040354e-06 0.000117613737708 44742097698.1 +UniRef50_Q3DDY2 2.94190088179e-06 1.9950000688e-07 -1107140886.24 +UniRef50_Q2SSQ8 Glycerol kinase 1.29747286403e-07 9.97456681135e-07 350304930.645 +UniRef50_Q9M8L4 Glycerol kinase 9.45689604232e-05 0.000394545842843 1.21104348563e+11 +UniRef50_V4XRX6 1.06134767253e-06 3.59767365452e-06 1023945923.15 +UniRef50_UPI000364B546 hypothetical protein 1.43204293309e-06 1.99780816919e-07 -497479337.854 +UniRef50_UPI00036C1952 hypothetical protein, partial 1.16995494801e-05 1.49937041184e-06 -4117937460.15 +UniRef50_Q9UZ08 2 isopropylmalate synthase 8.94198979865e-08 5.30116519347e-08 -14698455.7105 +UniRef50_Q28VP7 Ubiquinone biosynthesis O methyltransferase 4.5433762599e-05 3.99815931309e-05 -2201107719.92 +UniRef50_UPI0003771895 hypothetical protein, partial 3.40228003486e-07 5.76584700187e-07 95420098.881 +UniRef50_A7X0A3 0.000112126305457 1.77221400291e-05 -38112120052.6 +UniRef50_A7X0A2 0.000106613089259 2.26204113873e-05 -33908874762.9 +UniRef50_M9VDE6 3.19268942872e-06 9.12339814015e-05 35543349957.6 +UniRef50_B1AIX1 Uridine kinase 1.03157370509e-07 5.32158137701e-07 173192874.147 +UniRef50_UPI00047145DA cobyrinic acid a c diamide adenosyltransferase 1.00780972922e-07 1.53633036926e-07 21337026.8062 +UniRef50_Q0AG56 S adenosylmethionine 1.57613272581e-07 8.6603139358e-07 285997088.715 +UniRef50_A1B903 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 9.82466571676e-05 6.33274965451e-06 -37106772373.5 +UniRef50_Q46807 Carbamate kinase like protein YqeA 2.96833340408e-05 7.18882699722e-06 -9081308532.14 +UniRef50_Q5HGR7 3.35582503495e-07 1.38991787255e-06 425648126.639 +UniRef50_P0C0L2 Peroxiredoxin OsmC 0.000163595080319 4.93565523996e-06 -64052756874.5 +UniRef50_A1A968 Glutathione binding protein GsiB 2.65326495623e-05 1.0890675305e-05 -6314856956.28 +UniRef50_A1SHI2 Glycosyl transferase, family 4 3.4877880988e-06 5.91578440292e-05 22474684727.5 +UniRef50_H9UVF3 PilL 1.28421763707e-06 1.28802081986e-06 1535391.56262 +UniRef50_UPI00037FAEB8 ABC transporter 1.22028656972e-07 6.31945704893e-07 205859769.632 +UniRef50_E6SFQ0 Cell envelope related transcriptional attenuator 3.40248496559e-08 6.23353018246e-08 11429276.9488 +UniRef50_D3F7I1 Cupin 2 conserved barrel domain protein 2.06362504528e-06 1.06547213837e-07 -790096336.598 +UniRef50_Q9ZLW5 Glutamine synthetase 9.27424139346e-07 5.3042947722e-05 21039676399.7 +UniRef50_Q9FI53 Fumarate hydratase 2, chloroplastic 5.16015862066e-06 2.31881950565e-05 7278139538.02 +UniRef50_Q97DP6 Phospho alpha glucosidase PagL 2.80981685127e-06 1.5050175279e-05 4941582903.35 +UniRef50_A7GYI2 Lipoprotein, nlpa family 2.32576905162e-06 3.87190972858e-05 14692433204.5 +UniRef50_UPI00037CD319 hypothetical protein 8.78057865083e-08 5.82760173119e-08 -11921530.1956 +UniRef50_UPI000376EC18 hypothetical protein 9.75728116849e-08 1.59048113404e-07 24818333.6908 +UniRef50_Q67J65 UDP N acetylglucosamine 1 carboxyvinyltransferase 3 1.29158514144e-07 5.50724049496e-07 170191179.812 +UniRef50_A0A050FM21 Integral membrane protein 5.5465010055e-07 3.90061173112e-07 -66446569.74 +UniRef50_Q6GDB6 Lactonase drp35 0.000231115856261 6.12953936135e-05 -68558604702.4 +UniRef50_Q0RDV0 Ribosomal protein S12 methylthiotransferase RimO 6.60041152952e-06 6.54604815353e-05 23762532555.6 +UniRef50_B9DZW5 1.94915312664e-06 3.90286394531e-06 788737032.225 +UniRef50_UPI0002196F63 membrane protein 1.94427564728e-07 4.84937704412e-07 117282508.351 +UniRef50_Q9Z3S3 Probable oxidoreductase OrdL 2.57169517125e-07 4.88101906791e-08 -84117216.9427 +UniRef50_D3DZ74 UPF0288 protein mru_1774 3.02280562731e-05 1.10698206159e-05 -7734414832.8 +UniRef50_D5APE1 Polyhydroxyalkanoate synthesis repressor PhaR 4.10454663008e-06 3.98598105854e-07 -1496136896.33 +UniRef50_A6M0B9 D galactose binding periplasmic protein 2.21439696001e-06 4.24079628005e-05 16226635760.3 +UniRef50_Q7MAI3 CTP synthase 2.02262266695e-05 6.51223330206e-05 18125109071.1 +UniRef50_G8PD79 Fibronectin binding A family protein 2.54304494842e-08 1.19811717816e-05 4826679489.21 +UniRef50_U1DNW1 2.86052886474e-06 4.87420552149e-07 -958052947.106 +UniRef50_B9DNV1 3 dehydroquinate synthase 0.000179533942372 7.17765647824e-05 -43502975664.8 +UniRef50_A5ULI3 Antimicrobial peptide ABC transporter, permease component 2.53862358739e-05 7.70523029198e-06 -7138038923.75 +UniRef50_T0U0F8 Sakacin A production response regulator 4.54262292846e-05 5.38896950332e-05 3416804981.11 +UniRef50_Z5YCH8 Cupin 9.07174769539e-07 3.38366227327e-07 -229634988.557 +UniRef50_Q98IL7 Mlr2347 protein 2.46329197527e-06 2.76045123666e-06 119966840.377 +UniRef50_Q609F9 Glutamate racemase 1.1153340084e-05 2.65238748426e-06 -3431938882.93 +UniRef50_Q8RHI6 DNA directed RNA polymerase subunit beta 1.70049930159e-08 1.9183235634e-08 879383.27497 +UniRef50_UPI000378688C hypothetical protein 3.37962831957e-07 1.05754675289e-07 -93745282.3614 +UniRef50_N9R0J7 4.16420946777e-07 4.86720465508e-07 28380778.3838 +UniRef50_UPI0000510061 putative ABC transport protein, ATP binding component 8.14554298237e-08 1.3198140645e-05 5295366781.2 +UniRef50_I8R6Q9 Excinuclease ABC, subunit A 1.35616693059e-07 1.04535603554e-06 367272936.317 +UniRef50_P76361 Inner membrane protein YeeR 8.68945758751e-06 4.4959160728e-06 -1692984170.03 +UniRef50_UPI0003A07059 virulence factor MviN 1.9901331499e-07 1.53871681942e-07 -18224231.2116 +UniRef50_UPI0001C395E6 cystathionine gamma lyase 6.65959105759e-07 2.32380977849e-07 -175040810.839 +UniRef50_C6VIP9 8.2090718019e-08 1.01023680586e-07 7643469.32188 +UniRef50_B6GEL4 DnaJ domain protein 2.00887044949e-07 2.05168469874e-07 1728463.78121 +UniRef50_W4TF65 Glycosyltransferase 2.83143144955e-06 7.36899448451e-05 28606451389.5 +UniRef50_A5CRZ1 Chorismate synthase 1.10429462478e-07 1.63721134632e-06 616380582.227 +UniRef50_UPI0003810CDE hypothetical protein, partial 1.76861777055e-07 2.15007181358e-06 796609105.757 +UniRef50_Q2YUL0 Putative thiaminase 2 0.000181390146495 4.76026067964e-05 -54011671534.2 +UniRef50_F6A0T7 Response regulator receiver domain protein 3.89837218059e-05 3.58684257326e-06 -14290154514.8 +UniRef50_A5UJE8 DNA repair exonuclease , Rad32 1.43457942626e-05 1.46075864066e-06 -5201846997.73 +UniRef50_B2UYL5 1.96266545327e-06 2.16118105943e-05 7932601015.55 +UniRef50_UPI00046FD3F6 ATPase 2.43476602181e-08 4.3911940413e-06 1762949471.27 +UniRef50_Q6F7X4 1.87803974553e-06 4.83482457449e-05 18760592415.5 +UniRef50_W8S0E0 3.11585763701e-06 6.05379410349e-07 -1013510867.13 +UniRef50_UPI0003B42AB6 damage inducible protein 1.77271020637e-07 9.09023612574e-08 -34868087.6542 +UniRef50_G3ZGB0 7.03252922103e-06 9.52634532885e-06 1006784165.29 +UniRef50_P21437 Fructose 1,6 bisphosphatase 2 class 2 3.66546656703e-05 2.84414162307e-06 -13649723459.6 +UniRef50_UPI000373168E hypothetical protein 1.4989358147e-07 1.66835849874e-07 6839801.65971 +UniRef50_S3ZPA8 Putative Linear gramicidin synthase subunit C 8.32892092811e-07 4.73227745177e-06 1574229720.25 +UniRef50_C9D9L2 Universal stress protein 4.11776253368e-06 0.000282083244482 1.12218076082e+11 +UniRef50_P45762 Putative type II secretion system protein K 3.2267312026e-05 9.8540140987e-06 -9048523415.35 +UniRef50_E6S5F6 Flagellar biosynthesis sigma factor 1.51600798739e-06 2.98468645591e-05 11437514456.7 +UniRef50_B1Y7P3 Glycine tRNA ligase alpha subunit 1.49841988814e-06 9.46356982569e-06 3215628773.17 +UniRef50_UPI0002899294 branched chain amino acid aminotransferase, partial 3.47803276422e-07 3.72560817618e-07 9994923.19002 +UniRef50_P77172 Cyclic di GMP phosphodiesterase YfgF 2.44217259085e-05 5.85964227889e-06 -7493740943.65 +UniRef50_H4GEP0 Replication initiator protein A, N terminal domain protein 1.16787480987e-06 2.35038486219e-07 -376597471.047 +UniRef50_K0IHJ1 Ammonium transporter NrgA 2.7712719646e-06 1.29121770044e-05 4094007807.47 +UniRef50_UPI00036013C9 hypothetical protein, partial 1.21894824799e-06 1.11074405426e-06 -43683360.8236 +UniRef50_UPI00046F81B4 hypothetical protein 2.36901228817e-07 6.81216927357e-07 179375699.867 +UniRef50_Q6FAM5 Bifunctional uridylyltransferase uridylyl removing enzyme 3.37142789937e-06 5.25131810669e-05 19839128790.8 +UniRef50_Q0BWA4 Uroporphyrinogen decarboxylase 7.46180815603e-08 1.44741871027e-07 28309834.3234 +UniRef50_Q47LW5 1.97223159411e-08 1.09647291535e-06 434697430.198 +UniRef50_P75685 Inner membrane protein RclC 2.74211712134e-05 2.16625030876e-05 -2324844989.19 +UniRef50_D2R1Q0 1.6552174817e-07 2.28119005864e-06 854121259.106 +UniRef50_O34607 Probable L serine dehydratase, alpha chain 9.11055321036e-06 7.68865007592e-05 27361981729.9 +UniRef50_Q2YUI8 Serine protein kinase RsbW 0.000129624453293 2.54853302326e-05 -42042241910.1 +UniRef50_Q57549 Probable thiol peroxidase 1.55131228296e-05 2.7308363985e-05 4761883598.32 +UniRef50_A3PLU4 Holliday junction ATP dependent DNA helicase RuvA 8.91249002058e-07 4.50679477566e-07 -177863323.433 +UniRef50_O67703 Acetolactate synthase small subunit 4.46070866811e-07 3.68494056094e-06 1307571440.92 +UniRef50_M5HHC7 7.79037649562e-06 3.7850948112e-07 -2992261667.59 +UniRef50_K2DEX2 3.19794464207e-05 9.15851534752e-06 -9213089918.57 +UniRef50_UPI00037E7ACC hypothetical protein 2.22191351783e-06 4.06771019415e-07 -732795300.911 +UniRef50_P08142 Acetolactate synthase isozyme 1 large subunit 2.62959397591e-05 1.21118492679e-05 -5726291389.66 +UniRef50_P37903 Universal stress protein F 1.04736415878e-05 5.61658638029e-05 18446510814.9 +UniRef50_F3U4X7 ABC sugar transporter, inner membrane subunit 0.000190906779594 3.80598692384e-05 -61706173353.2 +UniRef50_V5SGS7 Multidrug ABC transporter permease 9.25169559036e-05 1.4569402123e-05 -31468383985.3 +UniRef50_M4S6Z7 6.92675275089e-07 9.34346725083e-07 97565730.0048 +UniRef50_Q8XJ36 Two component response regulator 4.39918039809e-06 1.28645179122e-05 3417560635.82 +UniRef50_G7ZP62 Chromosome replication initiation membrane attachment protein 0.000168095416203 3.52217783447e-05 -53642718146.2 +UniRef50_K4KGL9 Beta ketoacyl synthase 6.2519620505e-06 1.27017937712e-06 -2011206798.59 +UniRef50_P07770 Benzoate 1,2 dioxygenase subunit beta 3.43169080774e-05 0.000109633670813 30406301357.0 +UniRef50_A5WFZ6 Anthranilate phosphoribosyltransferase 1.39198043701e-06 0.000100361146912 39955066994.2 +UniRef50_E0SBA7 4.54100488904e-08 6.70404712587e-08 8732466.94521 +UniRef50_M9RBA6 5.29716127021e-05 1.13454417794e-06 -20927260675.6 +UniRef50_UPI0004259771 peptidylprolyl isomerase 1.14014822927e-07 5.86462512229e-07 190732929.756 +UniRef50_Q47679 Hydrolase YafV 1.7861045139e-05 5.73430495526e-06 -4895713824.0 +UniRef50_UPI0004661C80 hypothetical protein, partial 2.40379548207e-07 1.36475775768e-06 453925280.835 +UniRef50_C5AI60 Diguanylate cyclase 3.13522164665e-08 1.67188296511e-06 662302394.802 +UniRef50_UPI0002197895 phosphoribosylaminoimidazole carboxylase 6.36261923385e-08 1.21657230203e-07 23427842.1068 +UniRef50_B7GHM5 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.000138887108959 1.56797721074e-05 -49740313811.2 +UniRef50_D8GMQ7 Predicted acyl CoA thioesterase 1 2.41799087552e-06 2.67148981811e-05 9808959635.85 +UniRef50_K7RVQ7 Transporter, major facilitator family protein 9.11801905478e-07 2.96972741164e-05 11621048369.0 +UniRef50_UPI000367D1F7 hypothetical protein 2.50789421641e-07 1.28042496832e-07 -49554439.8195 +UniRef50_A3PJB9 ABC transporter related 0.000113046243824 9.90774276087e-06 -41638278530.9 +UniRef50_H8GYE3 6.17479807229e-07 0.00030380257698 1.22399544228e+11 +UniRef50_Q8DJL3 Tlr1209 protein 2.05047980263e-06 7.3143871086e-07 -532513075.202 +UniRef50_D2ZPN4 Putative toxin antitoxin system toxin component, PIN family 2.06196697336e-07 6.69489077827e-09 -80541327.4699 +UniRef50_A3PHS3 Transport associated 5.96367730434e-06 2.12569066333e-05 6174064349.14 +UniRef50_P31961 Phosphogluconate dehydratase 3.53345788129e-05 0.00012371743748 35681244623.5 +UniRef50_H8GYE9 2.6583520342e-06 2.38490599175e-05 8554948811.72 +UniRef50_M5DRD3 8.32517960408e-07 3.64392113916e-07 -188988148.779 +UniRef50_A0A058ZFX3 3.94167521259e-08 8.38018027807e-08 17918789.6152 +UniRef50_Q3J2Y8 Acyltransferase domain 2.30309228761e-05 1.82905842502e-06 -8559452855.04 +UniRef50_Q1GGL7 1.68191978568e-06 4.48170657139e-07 -498079662.996 +UniRef50_Q1GGL2 4.83451897582e-05 2.67622818531e-05 -8713284773.35 +UniRef50_K0N9J9 Cellobiose permease IIC component 5.71915490317e-05 3.36836098432e-05 -9490443525.25 +UniRef50_H2FLG9 Protein GRSP 2, isoform f 4.68471937896e-07 1.29369065555e-07 -136899990.824 +UniRef50_G2WZD3 6.49469523581e-08 1.05769056209e-06 400782777.583 +UniRef50_A9M9V6 NAD specific glutamate dehydrogenase 1.77429701554e-07 1.03784084975e-07 -29731639.1463 +UniRef50_K0LFR7 0.000190458566493 9.32978883974e-05 -39224958042.8 +UniRef50_Q48NP4 OsmC Ohr family protein 8.71121512735e-05 3.36703131814e-05 -21575125842.9 +UniRef50_Q8CS08 0.000126868471177 1.73392995839e-05 -44218270646.2 +UniRef50_Q2NHD8 Predicted minichromosome maintenance protein 1.99163217154e-05 7.60741710875e-06 -4969255836.97 +UniRef50_L8MLB7 Putative membrane protein, clustering with ActP 1.27559256993e-06 7.51961455758e-07 -211396306.468 +UniRef50_Q6FF72 1.01336892875e-05 3.15382702001e-05 8641291978.16 +UniRef50_Q72CF3 50S ribosomal protein L17 2.73252794983e-05 2.87832928354e-05 588617876.023 +UniRef50_Q6FF71 4.63875691152e-06 3.78438986594e-05 13405323196.5 +UniRef50_T2F8G8 Type IV prepilin peptidase 1.52930342816e-07 1.4754678803e-07 -2173407.13075 +UniRef50_UPI00046B85CA PREDICTED 5.68362089032e-08 1.99659429296e-06 783104142.043 +UniRef50_UPI0004788AD3 hypothetical protein 6.55128639135e-08 8.38438523829e-07 312039573.772 +UniRef50_W8YT37 1.23616245605e-07 2.16478850176e-06 824046287.808 +UniRef50_E3NV91 Aldehyde dehydrogenase 1.57505803757e-06 8.96770998095e-05 35567875396.9 +UniRef50_UPI00035FA1C3 hypothetical protein 1.19597225325e-07 1.77060938768e-07 23198806.276 +UniRef50_I0IED2 8.5083243167e-07 8.60944278648e-07 4082276.71133 +UniRef50_P54689 Branched chain amino acid aminotransferase 5.35433688493e-05 0.000458830204376 1.63619268931e+11 +UniRef50_K5YUY4 Polyhydroxyalkanoate synthesis repressor PhaR 3.20981600514e-07 9.73983034321e-08 -90263320.7076 +UniRef50_UPI000376564B hypothetical protein 6.41023151521e-08 1.2220771513e-07 23457863.0045 +UniRef50_UPI00034CAA3F peptidase M23 1.1820383081e-07 2.87351255164e-07 68286890.884 +UniRef50_Q3JSC1 1.17015538703e-07 5.07865707662e-07 157791009.48 +UniRef50_B4UHS9 Succinate dehydrogenase fumarate reductase iron sulfur subunit 3.01988791085e-06 0.000171850888176 68159146596.3 +UniRef50_Q1GZH1 UPF0301 protein Mfla_2099 7.45630790961e-08 1.15900884501e-07 16688579.3139 +UniRef50_A5UK83 1.38531939449e-05 3.9551344445e-06 -3995968083.16 +UniRef50_D3R5Q5 O acetyl L homoserine sulfhydrolase 5.68184756274e-05 7.24652400136e-05 6316790790.1 +UniRef50_Q89WL0 Glutathione synthetase 3.61114925836e-08 1.21708229355e-06 476772404.493 +UniRef50_I7EIU7 9.57349084765e-05 3.07533793018e-05 -26233840740.9 +UniRef50_G8VQH1 ATP dependent helicase 2.53169120298e-06 5.33813871191e-05 20528646237.3 +UniRef50_D4KG00 Transcriptional regulator, LacI family 6.10241838077e-06 1.57235757593e-05 3884179298.59 +UniRef50_UPI0003B47824 nitrogen regulatory protein 1.81941969903e-07 3.07644531365e-07 50747666.6061 +UniRef50_H6LJ16 UV damage endonuclease UvdE 7.94107587337e-06 9.46485686244e-06 615169084.183 +UniRef50_B7KNT0 ATP dependent Clp protease proteolytic subunit 1.54340919095e-07 8.27687301943e-07 271838197.645 +UniRef50_UPI000225B916 hypothetical protein 3.92251966909e-07 5.37668332618e-07 58706371.2962 +UniRef50_M4X3P8 L threonine synthase 9.08514498909e-07 6.82167759319e-08 -339238502.378 +UniRef50_A9H7P2 Putative secretion protein, HlyD family 8.59592353144e-08 5.78835835111e-06 2302128499.35 +UniRef50_UPI0002E0E4D6 hypothetical protein 5.1568045925e-08 1.73595185726e-07 49263853.7791 +UniRef50_UPI000289152D tonb dependent receptor plug 4.44966537061e-08 5.48413889386e-08 4176296.55754 +UniRef50_Q28PK5 Guanylate kinase 1.56606934306e-07 2.98671869927e-07 57353357.843 +UniRef50_UPI00037BDD3D hypothetical protein, partial 2.09954188226e-07 8.402116185e-07 254442658.73 +UniRef50_Q2RFN9 DNA directed RNA polymerase subunit beta 5.81335102824e-08 2.80829125013e-08 -12131795.0865 +UniRef50_UPI00029A706B MerR family transcriptional regulator 8.64021632482e-07 4.62384486945e-07 -162145844.295 +UniRef50_C5BYT3 Cysteine tRNA ligase 5.07236474411e-08 2.1201961767e-05 8539014383.76 +UniRef50_UPI000380AA73 hypothetical protein 1.63049933645e-05 2.4193958543e-06 -5605786110.31 +UniRef50_J0Y468 5.91462339007e-06 4.91201352948e-07 -2189502029.26 +UniRef50_UPI00037F71A6 hypothetical protein 3.85629738323e-08 5.11063316915e-08 5063907.49207 +UniRef50_D3Q457 Regulatory protein, FmdB family 5.10116201151e-06 9.27696456103e-06 1685822732.1 +UniRef50_R4LEH4 Yd repeat containing protein 1.97864528112e-09 3.11608997065e-09 459200.379179 +UniRef50_V9WQL8 Plasmid partitioning protein ParA 2.39073216019e-06 6.79957537218e-07 -690660708.858 +UniRef50_Q7U5L7 Probable malate 2.96003022935e-08 4.81016327605e-08 7469214.14638 +UniRef50_P10121 Signal recognition particle receptor FtsY 2.77732461913e-05 6.85696316302e-06 -8444160130.18 +UniRef50_U6F3A2 Elongation factor G 2.97036775028e-06 1.56753251783e-05 5129147221.04 +UniRef50_Q9RZA4 Bacteriophytochrome 1.63495058621e-06 7.39448107072e-05 29192377872.6 +UniRef50_UPI00042B6A44 Aldolase type TIM barrel family protein 1.65227101973e-08 1.44191506766e-07 51541459.8472 +UniRef50_UPI000382498F hypothetical protein, partial 3.52053062531e-07 1.84239383192e-06 601668857.141 +UniRef50_E0Y2I8 5.61896007633e-06 1.33712698645e-06 -1728628562.39 +UniRef50_B9KN81 Alpha amylase, catalytic region 0.000117395508067 2.75007942358e-05 -36291599105.8 +UniRef50_V9B5C8 Transketolase, thiamine pyrophosphate binding domain protein 1.69480073347e-07 1.13611043834e-07 -22555012.8045 +UniRef50_D5CDT8 Ferritin Dps family protein 2.7620926013e-06 4.7889195437e-06 818254908.61 +UniRef50_P72146 WbpN 7.64690905198e-06 3.9266751586e-06 -1501904075.16 +UniRef50_P0ACR6 1.73604266467e-05 6.37584664119e-06 -4434609744.18 +UniRef50_P0ACR7 5.47704240382e-05 1.107216744e-05 -17641522426.6 +UniRef50_P0ACR3 3.66119331693e-05 2.37202172853e-06 -13823072419.6 +UniRef50_D2JL91 Beta lactamase regulatory sensor transducer BlaR1 3.17281359462e-06 1.21151070477e-06 -791802044.525 +UniRef50_A7MI52 Glutamate 5 kinase 2.66783499276e-05 5.10217893609e-05 9827745226.82 +UniRef50_D4UF66 1.7025144426e-06 7.50145822548e-07 -384482898.792 +UniRef50_UPI00034FBAC3 PREDICTED 4.2036619229e-08 1.03363510457e-07 24758418.5543 +UniRef50_C9A5T3 3.39376416159e-07 2.67948050343e-07 -28836507.8045 +UniRef50_F5M1J1 Prophage CP4 57 regulatory 2.86744164608e-05 5.73246933236e-06 -9261945585.08 +UniRef50_UPI0003D70A5F PREDICTED 5.11972307402e-07 2.00668202859e-06 603432656.595 +UniRef50_C5XLB4 2.26163076213e-06 9.07112011654e-07 -546835841.383 +UniRef50_UPI000255A6FD metal dependent phosphohydrolase 3.60835276666e-07 2.98123918605e-06 1057889214.19 +UniRef50_K2AEI9 8.2370389023e-07 9.00584501128e-07 31037646.0507 +UniRef50_U5MWI4 Flagellar basal body rod protein FlgG 1.67771550603e-06 8.1901147926e-06 2629135508.11 +UniRef50_UPI00034B293D hypothetical protein 1.64605125481e-08 2.17102724517e-07 81001723.1287 +UniRef50_V8A9V2 7.82024517958e-06 1.47275850256e-06 -2562558263.93 +UniRef50_V7YY07 Transketolase 2.71713150349e-07 3.5030228541e-07 31727398.2213 +UniRef50_Q9RUZ9 2.5764589754e-06 0.000434095650688 1.7420959303e+11 +UniRef50_UPI0003602513 hypothetical protein 1.22992988326e-06 2.26143829853e-07 -405240747.602 +UniRef50_C2ZY26 2.63405728174e-06 5.96599404435e-06 1345143758.53 +UniRef50_Q9RUZ6 1.4900762718e-06 0.000413020219233 1.66139768756e+11 +UniRef50_F2ABV1 6.96672261587e-07 5.14696909573e-06 1796639443.23 +UniRef50_W0I9Q2 Prevent host death protein 5.16687871208e-07 6.52046014071e-07 54645743.305 +UniRef50_A0KJE0 Leucyl phenylalanyl tRNA protein transferase 7.66318253377e-08 2.0796682429e-07 53021550.7386 +UniRef50_Z2D8Y2 Amino acid ABC transporter substrate binding protein 5.51056971677e-06 9.90441716778e-07 -1824831141.8 +UniRef50_P63235 Probable glutamate gamma aminobutyrate antiporter 2.33134414053e-05 1.30020555761e-05 -4162832994.18 +UniRef50_UPI00034BB6BF hypothetical protein 3.64044929442e-06 2.97811671193e-07 -1349463827.27 +UniRef50_X3WS87 Lipoprotein 2.90761362201e-05 1.04562098175e-05 -7517092780.92 +UniRef50_UPI00022CAAC7 PREDICTED 1.20020807977e-08 8.25689557079e-08 28488713.3542 +UniRef50_Q9JYM0 Thiol 8.63812331487e-07 2.43807456992e-05 9494074585.76 +UniRef50_A6W977 1.5272274685e-08 5.60019171437e-08 16443056.4695 +UniRef50_UPI000478A779 ABC transporter permease 5.50499575854e-08 3.2480661108e-07 108904071.302 +UniRef50_T2RUR1 7.93773271691e-07 2.57643514107e-05 10080928818.2 +UniRef50_Q5HR30 Glycosyl transferase, group 2 family protein 0.000153082434257 2.70899248571e-05 -50864722146.7 +UniRef50_B0VRV3 Formamidopyrimidine DNA glycosylase 5.92403282138e-06 4.08698915763e-05 14108072013.3 +UniRef50_UPI0003755B23 hypothetical protein 3.64501413871e-07 2.22464215188e-07 -57342160.1008 +UniRef50_Q1J255 Hemin import ATP binding protein HmuV 2.57545401214e-07 6.09301455001e-05 24494273196.5 +UniRef50_P20586 p hydroxybenzoate hydroxylase 8.30103738918e-06 7.35729906406e-06 -380998742.823 +UniRef50_UPI00016A5EA5 CAIB BAIF family protein, partial 1.24651467446e-07 1.48899421654e-06 550801910.176 +UniRef50_G2M909 1.36030986974e-06 7.68966293593e-06 2555237502.72 +UniRef50_G7U5P8 Uracil xanthine permease 1.58684313331e-06 5.91245085996e-05 23228661615.3 +UniRef50_UPI00037C0AF6 hypothetical protein, partial 2.93285905212e-07 2.01492899747e-07 -37057962.7331 +UniRef50_C7ZXH6 Methyltransferase type 12 8.22899490369e-05 7.24365382928e-06 -30297110296.9 +UniRef50_UPI0004700E9C hypothetical protein 1.95751972439e-06 1.48614981153e-05 5209494426.03 +UniRef50_D9XX77 3.96091627931e-07 1.2310439233e-06 337080487.657 +UniRef50_A8LJU4 4.39132142802e-06 3.91636910875e-07 -1614721721.22 +UniRef50_V1DP08 Bacteriophage replication protein 1.19555100006e-06 2.87878613073e-07 -366438481.019 +UniRef50_Q3YYG5 Regulatory protein RecX 5.23708666477e-05 3.61612292071e-06 -19682888330.6 +UniRef50_A3PPL7 3.37054828519e-07 1.75435666453e-06 572182143.447 +UniRef50_UPI0002627F99 50S ribosomal protein L6 4.90755873418e-07 2.60324938981e-06 852839555.777 +UniRef50_Q9K0K9 Iron regulated protein FrpA 2.00459260265e-06 7.51570554919e-05 29532546950.1 +UniRef50_Q5HQI7 4.92373028943e-06 4.10806982311e-05 14597011654.0 +UniRef50_A2RN27 Methionyl tRNA formyltransferase 0.0002064365986 0.000108155638671 -39677229566.3 +UniRef50_U5MVR3 Methyl accepting chemotaxis protein McpA 5.69473341325e-06 1.30359873152e-05 2963754287.53 +UniRef50_Q8GM57 50S ribosomal protein L2 0.000157464770065 6.65527997003e-05 -36702278051.6 +UniRef50_F2LAJ8 5.01682690607e-06 5.31831393439e-05 19445331398.3 +UniRef50_A4W2L5 Predicted membrane protein 1.10413537989e-06 4.30147432317e-07 -272097205.197 +UniRef50_UPI00037CA3B1 ferredoxin 1.44514550792e-05 1.28283537021e-05 -655265943.629 +UniRef50_P39899 Neutral protease B 5.95233971217e-08 3.77746264455e-06 1500977698.43 +UniRef50_E8SKB9 Integral membrane protein 0.000327981429814 7.67236221579e-05 -1.01435860231e+11 +UniRef50_UPI0003B55E69 membrane protein 3.12486799227e-07 1.40547615027e-07 -69413958.5926 +UniRef50_UPI0003B397F3 tyrosine recombinase XerC 5.46388478248e-08 1.07935475165e-07 21516502.4804 +UniRef50_A5CF65 Peptide deformylase 2.07802484456e-07 5.52702581998e-07 139240401.778 +UniRef50_A0A011R0F0 Aerobic C4 dicarboxylate transport protein 8.39960596469e-07 4.30710136267e-07 -165219432.851 +UniRef50_G2J2T3 Ribosomal RNA small subunit methyltransferase E 1.79755232787e-06 8.01979534099e-06 2511995859.9 +UniRef50_UPI0003C18A10 6.70776573229e-07 3.07327273709e-06 969917183.294 +UniRef50_Q9I3N5 Heme exporter protein C 6.8022101396e-06 1.2862545973e-05 2446631944.63 +UniRef50_P42359 Putative zinc metalloproteinase in scaA 5region 6.13984769046e-05 7.371153301e-05 4970931847.94 +UniRef50_P17054 Phytoene desaturase 9.79651097662e-05 1.96435593009e-05 -31619371036.3 +UniRef50_UPI00037BF3C3 hypothetical protein 4.29984189509e-08 1.44953824067e-06 567837386.213 +UniRef50_UPI00036A00B7 hypothetical protein 4.70796657348e-07 3.94562113148e-07 -30776820.9966 +UniRef50_C5VZF1 DNA protection during starvation protein 4.65026338108e-05 2.5404247152e-05 -8517677600.48 +UniRef50_G7M6V3 Transcriptional regulator, RpiR family 4.63967366218e-06 4.3171978722e-06 -130187433.638 +UniRef50_Q98LB3 Dihydroxy acid dehydratase 2 2.25382327857e-07 1.84868668474e-07 -16355861.4514 +UniRef50_E8Y3F7 9.54027441696e-06 5.11005517175e-07 -3645226656.43 +UniRef50_UPI0003B4F713 flavine monooxygenase 3.35365908905e-07 6.85006127318e-08 -107736794.87 +UniRef50_P05050 Alpha ketoglutarate dependent dioxygenase AlkB 3.24273370263e-05 5.52572116664e-06 -10860512442.5 +UniRef50_A7X0C7 Lipoyl synthase 0.000187682561161 4.75348691673e-05 -56579343063.6 +UniRef50_UPI00020035C1 DEAD DEAH box helicase domain protein, partial 9.37768277558e-08 5.38265556906e-07 179445554.448 +UniRef50_G8V2S6 Phage tail tape measure protein, TP901 family, core region 0.000186492027847 2.22951384391e-05 -66288299176.4 +UniRef50_UPI0002D9142D hypothetical protein 3.36699547803e-06 8.62057993071e-07 -1011274001.72 +UniRef50_T1XU00 0.000113457995076 9.60578699671e-06 -41926410811.4 +UniRef50_F0P598 Aspartate aminotransferase, putative 0.000167455262412 5.28996583824e-05 -46247503102.3 +UniRef50_P04818 Thymidylate synthase 2.8353846465e-07 1.68525831808e-06 565891505.867 +UniRef50_UPI00039D1855 cytochrome C 2.99102027024e-06 7.24571336049e-07 -914993247.189 +UniRef50_P56111 Phosphogluconate dehydratase 1.52411513494e-06 4.10383599449e-05 15952385524.1 +UniRef50_D9XI44 2.40430475408e-07 1.05962673696e-06 330719583.457 +UniRef50_R1DBS1 1.53748855689e-08 7.64128783501e-08 24641786.7062 +UniRef50_UPI000464EC64 glucan biosynthesis protein G 1.04854619577e-07 1.53911090598e-07 19804699.3418 +UniRef50_A0RIF4 Branched chain alpha keto acid dehydrogenase E2 component 0.000150446608564 7.54026568759e-05 -30296164189.3 +UniRef50_Q8E671 Protein SprT like 1.7775381469e-05 1.59293946897e-05 -745247515.609 +UniRef50_B9LNN2 AzlC family protein 2.58930174213e-07 1.23322799588e-07 -54746361.2257 +UniRef50_B2I7A0 Malonyl CoA acyl carrier protein transacylase 1.27099659549e-06 1.80922624346e-05 6790951439.39 +UniRef50_Q7NN36 Hemin import ATP binding protein HmuV 1.01187224891e-07 2.11307837509e-05 8489906179.72 +UniRef50_X8CB66 6.62578880557e-07 1.05993124824e-05 4011581292.5 +UniRef50_Q89ER2 Alkanesulfonate monooxygenase 5.31913566699e-05 1.50802721704e-05 -15385912488.0 +UniRef50_Q74IP8 Ribonuclease 3 1.56818298413e-07 2.38864998147e-07 33123259.5088 +UniRef50_J9P129 2.88695116451e-06 4.60586496547e-07 -979553191.298 +UniRef50_A8LKW8 Porin 1.02902567466e-07 3.08614734627e-07 83048526.2551 +UniRef50_B4TWJ1 Transcriptional regulator NanR 2.35043226693e-05 5.41362089226e-06 -7303438305.25 +UniRef50_A0A024G3T5 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192 1.80972373661e-07 1.92587043378e-07 4688984.69278 +UniRef50_R9YPK7 Urea transporter 0.000229957427288 3.23466359523e-05 -79777901419.4 +UniRef50_UPI0004732AD3 hypothetical protein, partial 7.7012992015e-07 2.83747735995e-07 -196358456.324 +UniRef50_UPI00036124D1 hypothetical protein, partial 2.76998239044e-07 1.50152319142e-06 494355749.887 +UniRef50_UPI0004634B11 hypothetical protein 7.3288443342e-07 3.14721588951e-07 -168817471.747 +UniRef50_A3PRE1 7.08919300054e-05 1.67129887266e-05 -21872703444.6 +UniRef50_A5UP00 Methenyltetrahydromethanopterin cyclohydrolase 3.49368636703e-05 4.80578676009e-06 -12164285498.5 +UniRef50_R4MF75 8.67627626656e-07 3.41373280936e-07 -212455337.234 +UniRef50_T2EEM8 Maltose operon periplasmic family protein 1.24149988968e-05 2.24860435429e-06 -4104298232.5 +UniRef50_A1WWV9 tRNA specific 2 thiouridylase MnmA 4.13947121566e-08 7.93799355641e-08 15335100.8207 +UniRef50_D5BQ57 9.91632515868e-06 2.75194883365e-06 -2892346639.2 +UniRef50_UPI00047C3270 multidrug MFS transporter 1.58655772955e-07 2.01347511612e-07 17235178.7824 +UniRef50_A1B476 Beta lactamase domain protein 5.3309609499e-05 1.14915899632e-05 -16882447651.4 +UniRef50_Q47138 7.63846060865e-06 1.1155181193e-05 1419743254.92 +UniRef50_UPI00046CD5BB hypothetical protein 1.66552569054e-07 6.72150957439e-06 2646316581.42 +UniRef50_UPI0002FDE3EE hypothetical protein 2.74235676915e-08 1.37144205232e-06 542596755.207 +UniRef50_R0UE42 Filamentous hemagglutinin family N terminal domain protein 2.73606660158e-07 2.21589866997e-06 784127118.964 +UniRef50_UPI000362807B hypothetical protein, partial 1.13730969847e-07 1.72755839245e-07 23829064.0926 +UniRef50_Q8DJB8 GTP cyclohydrolase 1 5.30065283816e-07 9.9105728059e-07 186108126.106 +UniRef50_A7FBY0 3.91853967671e-06 0.000110086154699 42861169007.5 +UniRef50_L8E4A2 Macro domain containing protein lmo2759 1.76202532844e-07 2.72803797275e-07 38999115.8816 +UniRef50_Q9RR65 Dihydrofolate reductase 1.81806026101e-05 0.000516701765456 2.01259110984e+11 +UniRef50_A5ULU4 Glutamyl tRNA reductase 3.20190349779e-05 8.36333639531e-06 -9550095805.86 +UniRef50_UPI0002DBA9D3 50S ribosomal protein L25 2.91149896074e-06 8.62404878689e-07 -827244426.136 +UniRef50_D4HV65 UPF0380 protein yafZ 2.27809195324e-06 3.05214783759e-07 -796474723.244 +UniRef50_UPI000400F72F hypothetical protein 1.12589163553e-07 1.00183752921e-07 -5008216.50365 +UniRef50_T1LB68 1.34477543303e-05 6.911833898e-06 -2638631283.28 +UniRef50_Z1HLQ0 Regulatory protein BlaR1 6.57478475533e-05 1.62534238039e-05 -19981506232.5 +UniRef50_UPI0001FFE3E3 nitrogen regulatory protein P II, partial 2.28868480007e-07 1.14060441959e-06 368078987.068 +UniRef50_A5UMR6 GtrA like surface polysaccharide biosynthesis protein, GtrA 1.13807440544e-05 9.46448072647e-06 -773619020.681 +UniRef50_Q2S2A3 Methionine tRNA ligase 2.64754050284e-08 3.28916181413e-08 2590303.96947 +UniRef50_K0H8G2 Metalloendopeptidase like membrane protein 2.93382892887e-06 9.22096399885e-05 36041740462.2 +UniRef50_A5UMV3 Polysaccharide polyol phosphate ABC transporter, ATPase component 4.17216517648e-05 1.08373102823e-06 -16406027284.7 +UniRef50_UPI0003FEC27D hypothetical protein 6.50246005844e-08 4.76132901463e-08 -7029159.68467 +UniRef50_Q8VPR1 MC8 5.69333795722e-08 7.47174199856e-07 278658689.356 +UniRef50_I0C6S9 1.13690934606e-05 9.04030730184e-06 -940159549.711 +UniRef50_I0K4C6 Transcriptional regulator, BadM Rrf2 family 3.1853939806e-07 6.12667868923e-07 118743273.05 +UniRef50_A3PBD7 Probable malate 2.79248673104e-08 4.27684124035e-08 5992521.30487 +UniRef50_UPI0003641518 hypothetical protein 4.93249766915e-08 2.62262353492e-07 85965432.05 +UniRef50_Q2T4S8 Arabinose import ATP binding protein AraG 2 1.1001919436e-07 7.34611023579e-08 -14758950.3595 +UniRef50_S6GM17 4.3656487614e-07 7.77690751943e-08 -144850267.761 +UniRef50_UPI0003697D46 hypothetical protein 2.54816105604e-07 5.27795099698e-08 -81564652.9253 +UniRef50_Q1I5V8 Ribonuclease 3 2.83204116967e-07 5.13959513004e-07 93158785.0673 +UniRef50_UPI0003B4A430 CRISPR associated protein Cas3 6.4371056238e-07 8.83130790199e-08 -224220779.526 +UniRef50_T0CSQ2 Glycosyltransferase, group 1 family protein 8.25861333289e-05 1.24414236929e-05 -28318280052.4 +UniRef50_A0A011NU60 Putative esterase of the alpha beta hydrolase fold protein 5.76289870085e-08 4.04573300903e-07 140065677.005 +UniRef50_P64566 2.97794218708e-05 4.61552936804e-05 6611140404.08 +UniRef50_B2V9F3 Gamma glutamyl phosphate reductase 2.40496400804e-06 8.95005012273e-05 35161537157.9 +UniRef50_Q6LU53 Nucleoside diphosphate kinase 1.25585650652e-06 5.7447426371e-07 -275082372.923 +UniRef50_UPI000367902D hypothetical protein 9.01378616154e-09 2.53910880939e-08 6611717.7622 +UniRef50_UPI0003B4B7CD ATPase AAA 4.31940548017e-08 4.26204123281e-07 154625864.707 +UniRef50_Q8NUV3 8.33230725443e-06 3.42377378524e-06 -1981635195.99 +UniRef50_A7FAY2 1.47840465605e-06 6.28232788975e-05 24765678517.6 +UniRef50_U9HN69 9.65592182606e-06 9.04964522989e-06 -244761301.724 +UniRef50_A7FAY1 6.64203932916e-06 0.0001286690724 49263810690.8 +UniRef50_UPI000420B770 porin 1.70466851592e-06 2.55356672855e-07 -585104976.1 +UniRef50_UPI0004228484 hypothetical protein 6.77187684924e-07 5.73623940484e-07 -41809954.5005 +UniRef50_P0AC97 Low affinity gluconate transporter 2.49453648066e-05 3.16647549866e-06 -8792404870.62 +UniRef50_V9VVU4 Cyclopropane fatty acyl phospholipid synthase 5.3389579192e-05 4.75627258122e-06 -19633862676.6 +UniRef50_A7FAY9 1.70808139747e-06 9.91047535682e-05 39320231746.9 +UniRef50_UPI000394090D PREDICTED 6.40779197425e-08 2.47542556069e-06 973490633.215 +UniRef50_H4GDU5 Replication initiation family protein 2.35130251639e-07 9.46766806418e-07 287296409.927 +UniRef50_UPI00035944E9 2.95236090692e-08 6.42203511748e-08 14007500.5649 +UniRef50_A5VYC6 GTPase Obg 2.98941513357e-05 9.15837583941e-05 24904851386.1 +UniRef50_A0A035UC67 2.89915347124e-07 6.11000079703e-07 129625846.695 +UniRef50_Z4WLK7 2.5454264509e-07 4.11297314864e-06 1557695742.55 +UniRef50_P0A9S4 Galactitol 1 phosphate 5 dehydrogenase 3.78833843973e-05 1.20484607875e-05 -10429875691.4 +UniRef50_UPI000343F687 5.38822489882e-07 9.96277122366e-07 184680048.733 +UniRef50_UPI00035EEEBA hypothetical protein 1.60227349992e-07 5.89408898632e-07 173265857.836 +UniRef50_P76193 Probable L,D transpeptidase YnhG 3.01404599613e-05 2.1018982576e-06 -11319511431.6 +UniRef50_I1QUG7 2.09640861681e-07 1.02496629407e-06 329156882.224 +UniRef50_P75672 6.08611835938e-05 1.77663448449e-05 -17397915236.1 +UniRef50_Q67FX7 DeoK 3.05497130716e-05 8.17132500065e-05 20655347707.8 +UniRef50_P75676 5.74230624992e-05 2.61897493754e-06 -22125082670.4 +UniRef50_B9KUH1 1.60669236583e-05 9.42035690517e-06 -2683300560.78 +UniRef50_B9KUH0 2.88112949447e-07 3.35368414088e-06 1237608708.77 +UniRef50_W0PG73 5.11629038781e-08 1.84153964542e-07 53690123.1739 +UniRef50_H8E0P5 Isopropylmalate isomerase small subunit 3.13637122386e-05 1.11010239601e-05 -8180295909.18 +UniRef50_P09835 Sensor protein UhpB 2.74312016114e-05 7.15571949819e-06 -8185460937.24 +UniRef50_Q4L8J6 Ribose 5 phosphate isomerase A 0.000213241647537 6.08108638278e-05 -61538177919.4 +UniRef50_G4NYU6 Transcriptional regulator, PadR family 2.28804360016e-05 2.38830479426e-05 404766744.014 +UniRef50_UPI000423B599 rod shape determining protein MreB 5.3361404481e-07 1.29200093073e-07 -163266875.033 +UniRef50_Q9RWX1 6.73062125786e-06 0.000352161619999 1.39454733107e+11 +UniRef50_L9PQ51 Beta lactamase domain containing protein 4.74802592756e-07 1.31297450269e-07 -138677241.304 +UniRef50_Q9RWX5 9.35142829476e-07 0.000548065437314 2.20883213927e+11 +UniRef50_A9KV03 Two component transcriptional regulator, winged helix family 1.3952783194e-05 2.95809721398e-06 -4438689650.1 +UniRef50_Q9RWX7 2.02942061746e-06 0.000570156631625 2.29359926789e+11 +UniRef50_Q9RWX8 4.88768316632e-06 0.000323259101218 1.28530448324e+11 +UniRef50_UPI00036FA720 hypothetical protein 6.76687701674e-07 8.6591793544e-07 76394567.4874 +UniRef50_A5VYK1 Beta lactamase domain protein 3.7695150538e-06 7.54973830792e-06 1526122516.24 +UniRef50_Q9RVJ1 Branched chain amino acid ABC transporter, permease protein 1.06634460129e-06 0.000355595659276 1.43127834898e+11 +UniRef50_W8S1V4 ABC type dipeptide transport system, periplasmic component 2.83628565157e-07 1.67164188834e-07 -47018097.9002 +UniRef50_A9U7M5 Predicted protein 7.30734659245e-07 3.78220386206e-08 -279737327.94 +UniRef50_F0PDK0 1.82420327848e-07 1.94926161795e-05 7795763028.08 +UniRef50_E8SF44 Chitinase B 0.000143632080155 2.53050505703e-05 -47770073879.4 +UniRef50_UPI0003645B24 hypothetical protein 6.31854887334e-08 9.44225470738e-08 12610783.7738 +UniRef50_K2EQR3 Toluene tolerance protein Ttg2B 2.80465416973e-07 5.25182027041e-07 98795098.495 +UniRef50_W3RJU2 3.85387607485e-08 1.86827433481e-07 59865956.889 +UniRef50_UPI000287E9BE thymidylate synthase 1.05906548933e-06 4.58724539788e-06 1424369524.72 +UniRef50_UPI0004746A8A ammonia channel protein, partial 2.2892353547e-07 3.8407897002e-07 62638152.8991 +UniRef50_P0AGB1 Phosphoserine phosphatase 5.03507427588e-05 1.05963735911e-05 -16049326674.0 +UniRef50_UPI0004669E93 hypothetical protein, partial 4.15918874596e-07 1.77647149102e-07 -96193219.5048 +UniRef50_Q5HQK2 Glycerophosphoryl diester phosphodiesterase GlpQ, putative 0.000213542328792 3.46839485824e-05 -72207322929.9 +UniRef50_UPI000464A474 quinone oxidoreductase 7.48156859629e-08 1.77169620501e-06 685051488.606 +UniRef50_UPI00047AB5CC aryl phospho beta D glucosidase 4.60667672673e-08 2.45444074515e-07 80491065.5707 +UniRef50_U7PP10 3.22648245359e-07 1.01472472332e-06 279399766.886 +UniRef50_Q02QX6 Phospholipase D 8.96449766574e-06 4.80755758051e-06 -1678207723.8 +UniRef50_B0SZ50 NADH quinone oxidoreductase subunit C 2.71103453326e-07 2.31509963257e-07 -15984377.8076 +UniRef50_A1B541 2.50541924799e-06 9.34202125974e-07 -634319633.162 +UniRef50_UPI0000165EE8 hypothetical protein DR_A0025 1.62440558687e-07 7.11639824143e-05 28664193734.0 +UniRef50_K0P5L7 Transposase IS4 family protein 4.60260214296e-08 1.93061576865e-07 59360058.0583 +UniRef50_W7LA83 1.14287904974e-07 5.37733514625e-06 2124756756.16 +UniRef50_UPI0003FF921B hypothetical protein 3.91813438564e-06 8.18433717949e-07 -1251387197.15 +UniRef50_UPI0003453247 hypothetical protein 2.81375731532e-08 8.26238039937e-08 21996760.0116 +UniRef50_P0C5W5 Transposase InsD for insertion element IS2A D F H I K 0.000100252672586 5.15354734406e-05 -19667731122.3 +UniRef50_C9A9S2 3.99389132747e-05 8.91741024771e-06 -12523761448.7 +UniRef50_Q05207 Protein translocase subunit SecY 0.000242414119776 8.29152675134e-05 -64391643929.6 +UniRef50_A6LRQ1 Ubiquitin associated domain containing protein 8.22113754382e-06 1.16381581644e-05 1379493156.09 +UniRef50_F2QW98 Tricalbin 2 3.18822625684e-07 4.98565062176e-07 72564227.2996 +UniRef50_Q9K1G3 Ribosomal RNA small subunit methyltransferase G 3.10948538312e-07 4.98913123432e-05 20016201287.5 +UniRef50_D4HEV9 4.18248123427e-07 4.61549857635e-06 1694481513.9 +UniRef50_D4HEV8 1.08042146364e-05 6.21725039158e-05 20738008741.9 +UniRef50_D4HEV4 1.03895226289e-05 5.86788837237e-05 19495007651.1 +UniRef50_UPI00037EE4CD hypothetical protein 1.11138329524e-07 2.38988985803e-07 51614878.8438 +UniRef50_A6W3N1 Phosphate ABC transporter, inner membrane subunit PstA 1.10938983346e-05 1.17356478892e-05 259082170.345 +UniRef50_U5MQ20 9.41085986506e-06 2.0779011986e-05 4589462514.12 +UniRef50_P50059 Superoxide dismutase [Mn] 2 1.63182683193e-07 8.72467796718e-07 286347104.237 +UniRef50_G0AAC6 3.91851037267e-07 1.73831955363e-07 -88016978.7596 +UniRef50_UPI000440A67E hypothetical protein STEHIDRAFT_153002 3.87051956045e-08 2.09804570106e-07 69074917.1115 +UniRef50_R1F8H0 4.36213320985e-08 3.01588108581e-06 1199937736.3 +UniRef50_Q9RVD6 Tryptophan tRNA ligase 2 4.00036576191e-05 0.000116588399444 30918200075.2 +UniRef50_Q97R65 Dihydroorotate dehydrogenase B ), catalytic subunit 2.04376210229e-07 3.58563354907e-05 14393133460.3 +UniRef50_UPI0003B4E783 hypothetical protein 7.57807493154e-08 1.05967720245e-07 12186850.6001 +UniRef50_UPI000360793F hypothetical protein 1.0532583913e-06 6.76790493422e-07 -151984710.154 +UniRef50_O06941 Protein GrpE 4.53143152139e-05 4.69697341333e-05 668312932.036 +UniRef50_Q9K0V4 Ribosomal RNA large subunit methyltransferase L 1.65322330884e-06 3.4986877324e-05 13457205175.9 +UniRef50_UPI000476FB1B hypothetical protein 1.0021726128e-07 5.05003659103e-08 -20071320.7557 +UniRef50_A0A014LMK6 Acetate CoA ligase 2.66436372174e-06 5.3316610368e-05 20448933544.1 +UniRef50_UPI00042C3977 PREDICTED 1.49968632743e-07 2.68540203807e-07 47868798.2753 +UniRef50_Q896L1 Magnesium protoporphyrin IX monomethyl ester oxidative cyclase 1.5926064829e-06 1.51336391037e-05 5466681036.17 +UniRef50_Q3IRZ6 Urease subunit beta 5.02471571902e-07 3.98211447457e-07 -42091091.654 +UniRef50_B7UZP4 1.07221755979e-05 4.18888943548e-06 -2637567796.21 +UniRef50_Q8RQL9 Isocitrate dehydrogenase [NADP] 1.05270741589e-05 2.9716837491e-06 -3050203823.5 +UniRef50_I0C190 Nitrogen regulation protein NIFR3 4.53730653816e-06 6.43247811272e-07 -1572079293.52 +UniRef50_UPI0004764B37 phosphoglyceromutase 1.28438085382e-07 1.7939471246e-07 20571815.6595 +UniRef50_C6BBB4 Ammonium transporter 6.0321665637e-05 1.95203154396e-05 -16472005763.6 +UniRef50_U5MV95 1.38611746215e-06 8.33205058303e-06 2804158437.08 +UniRef50_A1SWH9 sn glycerol 3 phosphate import ATP binding protein UgpC 3.61754302438e-05 0.000409124140928 1.50563971098e+11 +UniRef50_I2FG31 Transposase 1.50511837172e-05 3.08080880347e-06 -4832587245.68 +UniRef50_UPI000329A113 8.43948936652e-08 1.11445132704e-07 10920513.4437 +UniRef50_K2AFG9 7.34497456935e-06 1.25045887866e-06 -2460430772.45 +UniRef50_Q3IV13 Radical SAM superfamily protein 0.000265147700768 4.34815836549e-05 -89489331627.7 +UniRef50_P44875 Acetate CoA transferase subunit alpha 4.16810820686e-07 5.71189945296e-06 2137692258.89 +UniRef50_R7PYU4 Predicted glycosyltransferase GT1 family 3.98973734276e-05 2.96148602827e-06 -14911470997.4 +UniRef50_B0RZT0 Adenylate kinase 1.78529212468e-07 2.36669527292e-07 23471958.5563 +UniRef50_P77529 2.84268627407e-05 1.75910898203e-05 -4374534497.85 +UniRef50_A3PS98 Transcriptional regulator, GntR family 0.00021485289554 5.84210017551e-05 -63153475156.2 +UniRef50_A5UN97 5.55713282722e-06 4.46322476372e-06 -441624108.996 +UniRef50_Q6KHP5 Glucose 1 phosphate adenylyltransferase 8.00787185666e-08 1.64415213911e-07 34047678.0957 +UniRef50_D4HDX4 8.73136442954e-07 3.26111232968e-05 12813014761.8 +UniRef50_A5IVQ1 Diaminopimelate epimerase like protein 0.000288083917514 7.9777948963e-05 -84095675705.7 +UniRef50_B4RI59 Putative ChaX protein 2.64512645487e-06 2.50127498162e-06 -58074605.0071 +UniRef50_UPI00035F5713 hypothetical protein 6.57024285552e-07 6.23980905267e-08 -240057891.816 +UniRef50_A0A038FN38 Sulfonate binding protein 1.01722374018e-07 3.04958658948e-07 82048982.2159 +UniRef50_J3NQ90 2.88792639077e-06 1.32635225021e-06 -630426643.214 +UniRef50_I3YR32 Nitroreductase like oxidoreductase 8.03809735129e-06 4.98049260173e-05 16861781269.1 +UniRef50_H1ZV37 Geranial dehydrogenase 6.66486311487e-08 9.59446394946e-08 11827158.0717 +UniRef50_UPI000455F234 alcohol oxidase 2.33753218424e-08 3.18887142826e-08 3436960.99918 +UniRef50_Q9RYZ6 Phosphate binding protein 3.41906559364e-06 0.000434365082806 1.73978195451e+11 +UniRef50_Q1IZI8 Uridylate kinase 0.000212069719897 0.000336388067118 50188842330.8 +UniRef50_A3MA07 1.96949211577e-06 0.000110825722583 43946596055.7 +UniRef50_Q5DY13 Lateral flagellar rod protein 3.18106170376e-06 4.52882033134e-06 544106696.812 +UniRef50_P20186 1.92141542836e-07 3.91013507521e-06 1500999613.93 +UniRef50_UPI00037D4D8D hypothetical protein 1.52354705411e-05 1.05470251856e-05 -1892782923.71 +UniRef50_Q7NK24 Phosphoadenosine phosphosulfate reductase 9.83703970743e-08 1.28356271481e-07 12105665.466 +UniRef50_Q8TXN1 Chorismate synthase 3.61611470529e-05 5.55855327978e-07 -14374293195.4 +UniRef50_W0E8G5 1.15907869334e-07 6.33063077582e-08 -21235895.9019 +UniRef50_UPI00035D319D hypothetical protein, partial 2.97875525196e-08 5.33043359689e-06 2139935854.35 +UniRef50_A6LUF3 Histidinol phosphate aminotransferase 1.58164520469e-06 8.446352694e-06 2771366652.87 +UniRef50_Q89UV8 Immunogenic protein 0.000119122050099 2.80872315848e-05 -36751873357.0 +UniRef50_B7UVV3 Dihydroorotase 7.15594344417e-06 6.86264645788e-06 -118407592.524 +UniRef50_UPI000395D90C PREDICTED 3.98670697329e-08 5.11942900593e-08 4572937.84639 +UniRef50_UPI00046CED3A O sialoglycoprotein endopeptidase 6.70430111077e-08 5.26773928788e-08 -5799576.36497 +UniRef50_Q1IAK7 Histidine decarboxylase 9.83036429352e-07 5.0774463313e-05 20101410042.4 +UniRef50_Q1IYS1 Carboxynorspermidine decarboxylase 2.15003643526e-06 1.03240487771e-05 3299949088.81 +UniRef50_C1AU54 UDP N acetylmuramate L alanine ligase 3.84957144358e-08 5.29682588068e-08 5842743.76066 +UniRef50_Q03470 DNA gyrase subunit A 2.10193850532e-08 3.25601759165e-05 13136456792.1 +UniRef50_C4RE96 Diguanylate cyclase with GAF sensor 2.89533757893e-06 6.41492953141e-06 1420902461.47 +UniRef50_Q9F4G3 HTH type transcriptional regulator TcaR 0.000332584265113 0.000446061101296 45811991284.4 +UniRef50_P0AFR5 2.3505384986e-05 4.15211676779e-05 7273192551.23 +UniRef50_UPI0004630051 hypothetical protein 4.32344342892e-08 1.38495823663e-07 38458191.8789 +UniRef50_UPI0004641B3A hypothetical protein 4.49684601221e-07 5.21753981277e-08 -160479343.275 +UniRef50_UPI000377D7B1 ABC transporter 1.30473276215e-07 7.28176777198e-08 -23276272.6263 +UniRef50_Q9EXI7 P 14 protein 5.71617838757e-07 2.68309952106e-07 -122449115.847 +UniRef50_O68926 Bacterioferritin 0.000134601290577 9.523991235e-06 -50495240615.4 +UniRef50_F1AXC6 PP241 8.19946263558e-07 5.79978368818e-06 2010421477.8 +UniRef50_D4HF95 Transcriptional regulator, DeoR family 3.71297693954e-06 2.20958555079e-05 7421393661.35 +UniRef50_C1A2V7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.29238171748e-07 7.1129800856e-07 33128563.1084 +UniRef50_UPI000174615B methionine synthase 1.13597441728e-07 2.68206115918e-07 62417419.0323 +UniRef50_P75851 Putative aliphatic sulfonates transport permease protein SsuC 4.46900760337e-05 8.47033956834e-06 -14622352077.2 +UniRef50_UPI000466704B hypothetical protein, partial 1.51990168172e-07 1.69075317189e-08 -54534517.9864 +UniRef50_B2EBP0 3.15695532017e-07 2.01954627818e-06 687865454.825 +UniRef50_UPI0003605AF8 hypothetical protein 4.16191983255e-07 9.982953022e-08 -127719404.494 +UniRef50_Q6AAR3 L threonine 3 dehydrogenase 2.23268649228e-06 6.38901786827e-05 24891886219.8 +UniRef50_C5AJH9 Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein 7.7905095874e-06 1.91971856025e-06 -2370110380.37 +UniRef50_F9MSP3 HD domain protein 1.43042944038e-07 9.53256226052e-08 -19264068.2198 +UniRef50_P76103 Inner membrane protein YdcO 2.22300306536e-05 1.64369223673e-06 -8310957441.68 +UniRef50_UPI0002BA1B2C glutathione regulated potassium efflux system protein KefB 1.96410503723e-07 2.29978808985e-07 13551936.7637 +UniRef50_A6M1S5 Transcriptional regulator, AraC family 1.06055914379e-05 4.92149440026e-06 -2294739725.81 +UniRef50_UPI0003A01203 hypothetical protein 6.39140889736e-08 7.02683163944e-08 2565279.58492 +UniRef50_P39836 2.41643168422e-05 9.08820968389e-06 -6086409464.44 +UniRef50_R5TC97 6.66860564316e-06 2.12461914781e-05 5885150288.64 +UniRef50_P39834 5.69748775618e-05 6.00644146164e-06 -20576583106.7 +UniRef50_P0AE14 Protein AmpE 1.76474650751e-05 9.58544077683e-06 -3254738141.37 +UniRef50_E1M0K3 N acetyl glucosamine matabolism 3.23025793368e-07 2.23742369042e-07 -40081936.745 +UniRef50_UPI0004746698 hypothetical protein, partial 2.24435077049e-07 2.76341406543e-07 20955222.179 +UniRef50_Q49Y24 Heat inducible transcription repressor HrcA 0.00018058498343 3.25392560026e-05 -59767876887.7 +UniRef50_A5N6G6 Phosphate propanoyltransferase 2.02224636884e-06 1.47720231117e-05 5147241328.46 +UniRef50_W1XPB9 4.752911469e-07 1.77621610261e-06 525199368.765 +UniRef50_UPI00028A201E LuxR family transcriptional regulator 1.84408345397e-06 2.25314233431e-07 -653516998.864 +UniRef50_UPI0003F914BA DEAD DEAH box helicase 2.01607818093e-08 6.34533320658e-07 248029733.132 +UniRef50_P76349 1.88971289084e-05 7.2797167638e-06 -4690091844.45 +UniRef50_S7UZQ5 1.21916196727e-06 1.21736170272e-06 -726788.890565 +UniRef50_A1TZQ0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 7.9543075008e-08 1.5384926262e-07 29998319.7784 +UniRef50_UPI000368871C hypothetical protein 4.70376730384e-07 5.10940112794e-07 16375935.2476 +UniRef50_UPI0004703E16 hypothetical protein 4.69845160276e-07 2.95590428756e-07 -70348773.4606 +UniRef50_B9JR02 2.28868655391e-06 2.32065406847e-07 -830283194.648 +UniRef50_UPI00035CD59F DNA binding protein 2.79504409643e-06 1.58130661684e-06 -490000714.744 +UniRef50_A0A024C1C5 1.4489186566e-06 7.71341085464e-05 30555039920.2 +UniRef50_G9RS55 2.17274677144e-07 1.37131457473e-07 -32354801.2491 +UniRef50_A7IDP6 Glutamine amidotransferase class I 4.9340312349e-05 2.89526181564e-06 -18750436845.2 +UniRef50_Q5LHZ1 N acetyl gamma glutamyl phosphate reductase 7.49516335782e-07 3.03356881693e-07 -180120046.608 +UniRef50_F2DS64 Predicted protein 5.05056330883e-08 1.69710781388e-07 48124581.1804 +UniRef50_C4ZF78 Orotate phosphoribosyltransferase 9.06211568661e-06 5.59980016127e-06 -1397779264.97 +UniRef50_Q9FNJ8 Arogenate dehydratase 5, chloroplastic 8.79340802478e-07 2.33438558651e-07 -260758661.945 +UniRef50_E4PLJ2 Protein containing DUF1857 4.2063438778e-07 3.97794524292e-07 -9220733.16675 +UniRef50_Q8DWA1 3.98754168064e-05 8.11279645925e-06 -12822959605.3 +UniRef50_Q9RY02 1.54075913818e-06 0.000191806280784 76812525909.0 +UniRef50_UPI000377338C hypothetical protein 1.85038340325e-07 4.24007289656e-07 96474697.3237 +UniRef50_UPI00034A10DE MULTISPECIES 1.04132661485e-06 1.58383046207e-05 5973721600.28 +UniRef50_Q9RY09 7.78321626536e-07 0.000525926811499 2.12008889658e+11 +UniRef50_Q6FE61 NADH dehydrogenase I chain L 4.39743968009e-05 8.84215587778e-05 17943864718.1 +UniRef50_G7U705 Efflux ABC transporter, permease protein 1.51600798739e-06 4.5771046753e-05 17866302220.1 +UniRef50_Q2NXY9 2 keto 3 deoxygluconate permease 1.75413494699e-05 1.17456501152e-05 -2339794950.72 +UniRef50_UPI000308C80D ATP cobalamin adenosyltransferase 3.0376833421e-07 5.10426183232e-07 83430309.6272 +UniRef50_UPI00036CA62E hypothetical protein 5.26054576797e-07 1.28115760654e-07 -160652783.335 +UniRef50_Q8DWA4 5.60554977894e-05 1.49506144483e-05 -16594545818.4 +UniRef50_Q2NI43 Predicted transcriptional regulator 2.15130016522e-05 1.12145584252e-05 -4157607906.85 +UniRef50_A6TXC8 Nucleoid associated protein Amet_4780 8.80800640655e-05 1.17824667255e-05 -30802276323.0 +UniRef50_D3PYT6 LigA 1.89115506523e-06 1.42995933387e-06 -186190376.258 +UniRef50_P11988 6 phospho beta glucosidase BglB 2.81451173166e-05 6.66271943544e-06 -8672707643.31 +UniRef50_Q21YW0 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.06841523874e-07 1.20132784876e-07 5365845.16862 +UniRef50_D1YVK2 1.28114492418e-05 7.39491307557e-06 -2186722118.68 +UniRef50_UPI00037CAA58 hypothetical protein 1.25319562495e-07 1.01954218055e-06 361008644.254 +UniRef50_E4SZ07 Alcohol dehydrogenase Acetaldehyde dehydrogenase 6.41047743206e-05 3.47308136009e-05 -11858628401.6 +UniRef50_UPI0003B5954D TetR family transcriptional regulator 2.39664904957e-06 9.89047892217e-07 -568265860.431 +UniRef50_F8LW56 1.94089972088e-06 1.28767139724e-06 -263716290.266 +UniRef50_A5IT13 0.00019420337191 3.21040158581e-05 -65441499221.0 +UniRef50_P24555 Protease 2 2.2179582456e-05 5.13517493638e-06 -6881036474.06 +UniRef50_A0A010JG94 MATE efflux family protein 3.04517114465e-06 8.20184523429e-05 31882482730.9 +UniRef50_UPI0003C1B314 PREDICTED 1.28348896424e-06 2.29397670715e-07 -425549590.353 +UniRef50_Q1QH83 Carbohydrate ABC transporter substrate binding protein, CUT1 family 6.97135946614e-08 3.56034083206e-08 -13770700.8048 +UniRef50_R4VNN3 8.19112524916e-05 6.26855566828e-05 -7761649323.83 +UniRef50_UPI000443497D PREDICTED 4.98317027094e-08 7.07237035247e-07 265402600.016 +UniRef50_B3X836 D xylose ABC transporter, ATP binding protein 8.33177276995e-06 1.22368800494e-06 -2869621045.64 +UniRef50_A0A029HJU3 CRISPR associated helicase Cas3 9.40092713443e-07 1.11407471319e-07 -334550401.357 +UniRef50_Q9HVD1 Lipid A deacylase PagL 1.72814394896e-05 1.48064335453e-05 -999190271.452 +UniRef50_UPI000462CF76 hypothetical protein, partial 7.6947215425e-07 6.37731153259e-06 2263953572.96 +UniRef50_Q9RXH9 Lipase, putative 2.10784383954e-06 0.000391661489164 1.57267586978e+11 +UniRef50_Q9S358 Anthranilate synthase component 1 2.60782549038e-06 8.45200646296e-05 33068976116.7 +UniRef50_C6CE95 UPF0115 protein Dd1591_1343 2.43668666401e-05 4.57855356899e-06 -7988784816.71 +UniRef50_Q1YIY5 2.01688669669e-06 4.44737349611e-06 981217346.353 +UniRef50_U6EC46 NusA family KH domain containing protein 4.64404513881e-05 1.26564302227e-05 -13639023921.0 +UniRef50_UPI0004659C6E hypothetical protein 1.41837521352e-07 2.3127775024e-06 876435110.779 +UniRef50_A7FHL7 Anhydro N acetylmuramic acid kinase 4.07636138294e-06 1.89710945528e-06 -879790745.625 +UniRef50_Q5LZ68 Ribonuclease 3 9.47898870324e-05 7.19354303079e-05 -9226624635.4 +UniRef50_A4G0N3 Probable tRNA pseudouridine synthase B 3.61546828679e-05 1.66437938319e-05 -7876785329.37 +UniRef50_A6LS09 PTS system fructose subfamily IIA component 5.40580441109e-06 4.2188100743e-06 -479204179.821 +UniRef50_Q7WDY0 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 7.30588105822e-06 3.8973246981e-05 12784504225.3 +UniRef50_U1S1M7 2.38856801173e-07 2.31986498839e-05 9269150215.83 +UniRef50_UPI0003F0C550 PREDICTED 2.40027445056e-07 2.58088030129e-07 7291279.82227 +UniRef50_UPI00041A8363 LamB YcsF family protein 1.347591247e-06 1.15191225169e-07 -497535012.062 +UniRef50_UPI000368F174 hypothetical protein 5.00583334817e-08 2.97331397103e-08 -8205530.14369 +UniRef50_Q216H0 Phosphomethylpyrimidine synthase 1.57071132903e-08 5.32402206858e-08 15152576.0386 +UniRef50_W6MC79 2.01726625277e-07 6.6443527726e-06 2600967235.59 +UniRef50_UPI000444A627 hypothetical protein STEHIDRAFT_83294 2.09798390548e-08 3.79908732481e-08 6867563.2527 +UniRef50_UPI00046F6DE4 hypothetical protein, partial 1.26087363561e-07 2.24559661389e-07 39754475.0241 +UniRef50_Q8ZQ16 Ribosomal large subunit pseudouridine synthase C 2.12377850328e-05 4.73074341638e-06 -6664095264.72 +UniRef50_W7TU75 1.11682245224e-06 1.12221248572e-07 -405569833.765 +UniRef50_P52123 1.84986806261e-05 1.71558197687e-05 -542129406.888 +UniRef50_P52126 3.07844920532e-05 6.7130866365e-06 -9717921756.08 +UniRef50_P52127 2.33782530982e-05 1.15205440456e-05 -4787102654.99 +UniRef50_P52124 1.88081002821e-05 8.03738338836e-06 -4348270581.55 +UniRef50_P52125 1.03847791253e-05 3.87724339418e-06 -2627172031.1 +UniRef50_P0C0Q4 Extracellular elastase 0.000135288171468 4.12272935007e-05 -37973530692.2 +UniRef50_Q4L565 Probable quinol oxidase subunit 2 0.000104696449092 1.47636614347e-05 -36306969976.7 +UniRef50_A4WP12 Ribosomal RNA small subunit methyltransferase E 1.46312398781e-06 2.38800570243e-06 373386097.767 +UniRef50_Q7NL20 1,4 alpha glucan branching enzyme GlgB 2.36567967614e-08 6.4365006629e-08 16434403.8695 +UniRef50_B9KP74 Branched chain amino acid aminotransferase 7.49168225114e-05 1.56206519884e-05 -23938591686.0 +UniRef50_Q53212 Putative peroxiredoxin y4vD 7.69220698926e-05 1.33170570717e-05 -25678124197.1 +UniRef50_A1KV38 Ribonuclease H 5.89582173041e-07 2.94020550489e-07 -119321853.973 +UniRef50_A6LPL8 1.15087191723e-06 3.55156703418e-05 13873490827.5 +UniRef50_UPI0004725A0F hypothetical protein 8.66209218976e-08 1.33126115805e-07 18774717.4633 +UniRef50_UPI0003B7A3D3 ABC transporter 9.53521075902e-08 5.48367998409e-07 182888074.254 +UniRef50_Q4FNE4 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.3067174706e-07 2.97081088729e-07 67181493.304 +UniRef50_A4XZN0 Acetate CoA transferase YdiF 2.19656202779e-05 7.45699555574e-05 21237015680.1 +UniRef50_UPI000368346E hypothetical protein 2.02834506414e-07 9.85638081962e-08 -42095360.416 +UniRef50_UPI00036B1EA9 hypothetical protein 5.43219826884e-09 3.81721058615e-08 13217502.459 +UniRef50_Q8YC19 Transposase 6.12064556986e-08 1.00408026586e-07 15826155.2246 +UniRef50_J7L8P7 TRAP transporter solute receptor, TAXI family protein 4.15149693857e-07 4.35447544895e-07 8194491.54668 +UniRef50_UPI00036DFF4F hypothetical protein 4.35285957724e-07 2.85777315348e-07 -60358473.6045 +UniRef50_O32220 Copper exporting P type ATPase A 0.000138673190416 3.94434658861e-05 -40060257478.4 +UniRef50_G8W9Y6 0.000158101054377 0.000130445403494 -11164925634.5 +UniRef50_K3KRS9 Sulfurtransferase 6.96952720578e-06 8.5117448384e-06 622612183.427 +UniRef50_M1MQ23 Pseudaminic acid biosynthesis associated protein PseG 2.2632300922e-06 1.19052380454e-05 3892596931.45 +UniRef50_B7VB85 Glutamine tRNA ligase 6.79001221707e-06 4.26118141042e-06 -1020920028.89 +UniRef50_UPI000474892A acetyl CoA acetyltransferase 1.02478829327e-07 3.43890035044e-07 97460666.1966 +UniRef50_J4GJ09 1.31511231356e-07 4.98347773874e-07 148096413.805 +UniRef50_T8KWL4 4.06339602003e-07 4.81876177275e-07 30495042.3753 +UniRef50_Q9HXN1 Membrane bound lytic murein transglycosylase F 5.35989871558e-06 8.53258940805e-06 1280854165.84 +UniRef50_M2C918 4.66712767272e-08 9.35854216691e-08 18939816.0143 +UniRef50_A0A059ILG7 6.58281913531e-07 2.72007539688e-07 -155943704.84 +UniRef50_W8X8B8 LemA family protein 2.65091445864e-07 1.23587750057e-07 -57126778.4429 +UniRef50_UPI0001D62167 PREDICTED 4.34417904005e-08 3.20704755071e-07 111934461.236 +UniRef50_Q5L1U1 3 oxoacyl [acyl carrier protein] synthase 3 1.50385700739e-06 1.04393103267e-05 3607352155.35 +UniRef50_R3JX77 Tandem lipoprotein 1.21061314661e-07 1.68871198003e-07 19301436.5984 +UniRef50_UPI0003A1637C pseudouridine synthase 1.43354572123e-08 1.15519099891e-07 40849078.2124 +UniRef50_A0A011QIR3 4.29364657881e-07 4.57213543237e-07 11242936.7625 +UniRef50_B1YMC1 Metallophosphoesterase 1.21163879567e-07 1.63648029484e-07 17151372.6606 +UniRef50_X7ECM7 1.10590613049e-05 1.51524237915e-06 -3852956816.15 +UniRef50_C4ZZ24 ATPase RavA 2.05214987763e-05 8.34735845633e-06 -4914849840.69 +UniRef50_A3V382 6.42701522073e-06 6.52581993071e-06 39888673.8891 +UniRef50_P76389 UPF0053 protein YegH 2.90643877615e-05 9.94984225967e-06 -7716776580.93 +UniRef50_C3K789 2.98801574284e-06 3.67243067673e-05 13619754677.4 +UniRef50_Q6A6X6 Methionine import ATP binding protein MetN 5.72618184291e-08 4.58672835819e-05 18494067938.1 +UniRef50_K0B4J3 Uroporphyrin III C methyltransferase HemD 9.30532429341e-07 1.95898026351e-05 7532976357.08 +UniRef50_UPI0003674EE1 hypothetical protein 7.59432646663e-07 5.05325287345e-07 -102586259.205 +UniRef50_UPI00036AFCF0 hypothetical protein 4.38988486352e-07 9.11309385136e-08 -140434360.754 +UniRef50_UPI00047853C3 hypothetical protein 1.05822911272e-06 2.72009771573e-08 -416238710.464 +UniRef50_UPI00047B85B2 hypothetical protein, partial 2.08023084776e-06 6.75096272765e-07 -567270070.864 +UniRef50_A4WVR4 1.89171191715e-05 1.80224466069e-06 -6909484863.14 +UniRef50_Q213K6 Leucyl phenylalanyl tRNA protein transferase 9.12001060344e-05 3.08205667871e-05 -24375960934.4 +UniRef50_UPI0003474DF5 carbon monoxide dehydrogenase 2.27128433087e-06 9.00934219658e-07 -553227155.982 +UniRef50_C8RZX1 1.2971740702e-06 1.08801381811e-06 -84440560.4537 +UniRef50_UPI00032B0880 PREDICTED 2.2366106264e-07 4.54395803347e-07 93150446.2571 +UniRef50_A5UJV9 Adhesin like protein 3.37133170245e-05 1.66472460246e-05 -6889782286.9 +UniRef50_S9TE19 Proteophosphoglycan ppg4 4.87814958444e-07 1.87138204936e-07 -121386895.11 +UniRef50_I0C4G8 Glycosyltransferase 0.000196653148793 7.16375521555e-05 -50470330476.6 +UniRef50_V5WWK4 Glycine betaine ABC transporter permease 1.85953689091e-06 6.94862835762e-06 2054528675.29 +UniRef50_E6LGM1 4.46686250019e-07 5.19486737123e-07 29390450.0063 +UniRef50_Q9RXB0 Alpha dextran endo 1,6 alpha glucosidase 9.79299869344e-07 0.000146463801117 58733878449.4 +UniRef50_Q3IVA1 Translation initiation factor 2, gamma subunit, GTPase 0.000459450590166 1.80180959921e-05 -1.78211714884e+11 +UniRef50_A8FQE6 Radical SAM domain protein 5.9713831156e-06 1.04647869069e-05 1814042250.81 +UniRef50_UPI0001913051 prolipoprotein diacylglyceryl transferase, partial 3.46279205204e-07 2.34858727296e-07 -44981814.2145 +UniRef50_UPI000479F065 hypothetical protein 2.71286435317e-07 7.18522686875e-08 -80514020.401 +UniRef50_I7EDR9 TonB dependent receptor 8.64125333459e-06 0.00056217445116 2.23468144578e+11 +UniRef50_UPI00036EC80A hypothetical protein 2.197157485e-07 6.62261183158e-08 -61965647.2349 +UniRef50_UPI00022CAA5E PREDICTED 2.61490868123e-07 2.43188255041e-08 -95749264.0335 +UniRef50_V8X5Y2 3.46589413413e-06 4.95708355188e-07 -1199100447.24 +UniRef50_UPI0003B3D29A ATP dependent protease 2.49418215376e-07 3.17901481684e-07 27647534.9927 +UniRef50_C6SJR7 6.52045964546e-07 4.65493011965e-07 -75313716.2191 +UniRef50_U5UKU3 Membrane associated protein 6.88229031902e-05 2.93655344252e-05 -15929423966.8 +UniRef50_M7A685 2.30542508749e-06 6.67698568746e-07 -661170292.78 +UniRef50_R1DWZ6 3.45662932904e-07 1.69174852267e-07 -71250403.9055 +UniRef50_E2ZTH3 Putative membrane protein 2.12529303263e-06 8.13058503556e-07 -529765182.314 +UniRef50_A9BEV2 Protein RecA 7.70971699111e-06 0.000351486972826 1.38787096802e+11 +UniRef50_P78283 Protein translocase subunit SecY 2.80542654437e-05 0.000125578971215 39371920482.6 +UniRef50_E7MXD2 Rhodanese like protein 6.83686950706e-05 8.06919238892e-06 -24343649190.7 +UniRef50_UPI00046B96B5 PREDICTED 6.46359682911e-07 1.53280881501e-07 -199061962.887 +UniRef50_A0A014LBA0 Transposase 1.35834382169e-07 2.8530810697e-06 1096985832.12 +UniRef50_D7BLK7 Sugar transporter 4.42432708837e-06 0.000138724854378 54218770919.8 +UniRef50_Q5HJZ6 Plasmid recombination enzyme type 3 0.00740800531361 0.00244512495215 -2.00357570331e+12 +UniRef50_Q2RKZ7 Glutamate 5 kinase 1.02240166529e-07 1.46015516989e-07 17672646.1647 +UniRef50_UPI0003B48512 ABC transporter substrate binding protein 1.71648073527e-07 5.64742465462e-07 158697029.835 +UniRef50_UPI000255BACE patatin 4.78174000641e-08 1.60885698862e-07 45647059.7288 +UniRef50_UPI0004446091 PREDICTED 1.55078193737e-09 2.42316800842e-09 352192.962264 +UniRef50_R4Z5X8 1.18814500275e-07 1.57018823401e-07 15423554.0657 +UniRef50_Q9ZJG8 Membrane protein insertase YidC 7.54882768083e-06 3.30047365863e-05 10276862804.3 +UniRef50_A0A059IR82 Chromosome partitioning protein ParA 3.24323690749e-06 8.70489747589e-07 -957907145.334 +UniRef50_Q8YFR1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.36525194072e-05 5.36307950221e-05 -4045893114.65 +UniRef50_UPI00040C16D0 hypothetical protein 1.00228001284e-07 8.2291056723e-08 -7241364.63034 +UniRef50_F7Z665 D 3 phosphoglycerate dehydrogenase 0.000108252629411 4.06279369009e-05 -27300918214.6 +UniRef50_D1FI19 TRAP dicarboxylate transporter 2.11043206804e-07 4.1951982067e-07 84164567.3134 +UniRef50_Q9MUM1 Light independent protochlorophyllide reductase subunit N 9.56739628346e-07 2.79851262003e-07 -273268139.847 +UniRef50_F5LXA3 Glycosyl transferase family protein 1.07807403606e-05 1.85733776861e-06 -3602487128.85 +UniRef50_L0A408 Diguanylate cyclase domain containing protein 2.8779050152e-07 7.68257856395e-06 2985366685.06 +UniRef50_UPI000308ED7E hypothetical protein 0.000118811079983 4.01282544639e-05 -31765222208.9 +UniRef50_Q5JEF8 Nicotinamide nucleotide adenylyltransferase 4.4456525845e-05 6.91575091185e-06 -15155671517.6 +UniRef50_A4WWA3 Glutathione dependent formaldehyde activating, GFA 7.92815436951e-05 1.67056414792e-05 -25262659617.2 +UniRef50_S3FKB7 Major facilitator superfamily MFS_1 domain protein 6.54873618774e-06 3.1430608951e-06 -1374912907.97 +UniRef50_F2US62 1.55443363869e-08 1.65940211716e-07 60716660.4352 +UniRef50_E8U2Z7 Putative GAF sensor protein 1.35005050472e-07 1.94591817792e-05 7801407279.69 +UniRef50_L7DFJ3 TetR family transcriptional regulator 1.98328890814e-06 2.64562378528e-06 267392717.664 +UniRef50_Q16CP9 5.97534898873e-05 8.84542429376e-06 -20552210792.3 +UniRef50_Q3IW63 0.000245473497273 9.23026710419e-05 -61836942166.9 +UniRef50_T1JH82 4.57702632721e-08 3.44502845853e-07 120602009.449 +UniRef50_B7GZC9 5.86765785751e-07 4.62524651319e-05 18435803207.2 +UniRef50_D3QI51 Transporter 0.000207543590772 5.25560843457e-05 -62570358254.8 +UniRef50_UPI0003744E94 hypothetical protein 8.8812845026e-08 9.3339725819e-07 340969091.811 +UniRef50_D8MLX7 Photosystem I assembly famlily protein BtpA 3.72298184577e-05 6.78590938576e-06 -12290579681.1 +UniRef50_UPI000262C9D0 hypothetical protein 2.62702516383e-07 3.76820929481e-07 46071003.7581 +UniRef50_B4U8E3 Potassium transporting ATPase A chain 5.27847786956e-07 1.38304391499e-05 5370419374.36 +UniRef50_UPI00047293B6 hypothetical protein 3.53796864681e-08 7.58050961938e-08 16320233.9818 +UniRef50_Q1QUD2 Probable malate 4.54918376094e-08 1.27029507494e-07 32917757.9121 +UniRef50_UPI0003A0AD2C 30S ribosomal protein S7 2.47481993963e-06 2.12901636073e-05 7595985128.88 +UniRef50_UPI0001CE1538 PREDICTED 9.7709919458e-07 1.52881814591e-06 222735711.005 +UniRef50_G3N4L7 3.73434634369e-07 1.06085400113e-07 -107932166.613 +UniRef50_Q3JNN4 1.93990556899e-07 2.77882674998e-07 33868277.5486 +UniRef50_A6LZ55 2,5 didehydrogluconate reductase 1.80041012167e-06 2.37740457833e-05 8871026363.42 +UniRef50_Q3JNN0 1.65362928528e-07 1.76321506551e-07 4424112.42476 +UniRef50_A3PIA7 9.0962508806e-06 8.10301625125e-06 -400981008.228 +UniRef50_A7FRF2 SPFH domain Band 7 family protein 1.55344028336e-06 5.80039531667e-05 22789764776.7 +UniRef50_X1FV54 Marine sediment metagenome DNA, contig 1.82137340759e-07 4.29233005106e-07 99755551.9017 +UniRef50_UPI00037DF23F hypothetical protein 2.50826146801e-08 9.63756893095e-08 28781889.0923 +UniRef50_UPI00046A73E3 nitrate ABC transporter ATP binding protein 1.29616477541e-07 6.61509582947e-07 214731773.715 +UniRef50_UPI0002559CE7 IS5 family transposase OrfA 1.24789467833e-06 5.39867752684e-07 -285839158.351 +UniRef50_UPI0003B38F36 ABC transporter permease 8.53575906335e-08 2.01194099959e-07 46764620.2887 +UniRef50_UPI0003603238 hypothetical protein, partial 9.32840390114e-08 7.75205599853e-08 -6363909.92248 +UniRef50_L7WVU0 Ribosomal silencing factor RsfS 2.88143169243e-05 5.51993841485e-06 -9404226458.41 +UniRef50_F0KKV9 1.79470359203e-06 8.84496237467e-05 34983654641.9 +UniRef50_UPI0003C16777 1.73877775771e-06 3.89234679994e-07 -544827101.231 +UniRef50_C4ZGW0 Aspartate aminotransferase, putative 5.01380403145e-05 7.96823789625e-06 -17024466717.9 +UniRef50_UPI00037BAEE0 hypothetical protein 1.09731580681e-06 2.59505640912e-06 604656260.497 +UniRef50_A7HUJ4 AzlC family protein 1.19695348391e-07 9.22791927658e-08 -11068238.46 +UniRef50_P0AEL7 Ferrienterobactin binding periplasmic protein 2.90998321374e-05 5.62028814663e-06 -9478980035.49 +UniRef50_Q1RKE8 NADH quinone oxidoreductase subunit J 1.2758253863e-06 1.40906844409e-07 -458180542.378 +UniRef50_B2V326 Mate efflux family protein 2.48709922281e-06 1.2785923014e-05 4157761545.29 +UniRef50_B6IWF0 Phosphate ABC transporter, periplasmic phosphate binding protein PstS, putative 4.24949181733e-08 5.40061126888e-08 4647210.48415 +UniRef50_B7GXW5 Poly depolymerase 1.34700829229e-07 5.5332988704e-05 22284226174.2 +UniRef50_F0P9K4 DNA polymerase III delta prime subunit 0.000244511728763 8.0729803258e-05 -66120773156.6 +UniRef50_Q8DL38 Biotin synthase 6.59096828472e-08 1.04110235408e-06 393697248.337 +UniRef50_M2F7K0 Putative transposase 3.02059146735e-06 5.02857760576e-06 810648644.837 +UniRef50_Q6C1W8 YALI0F12793p 6.39101564002e-08 4.28500387812e-06 1704107334.1 +UniRef50_UPI00046D9296 3 kinase 4.22889384401e-07 1.27241629804e-06 342964439.904 +UniRef50_R7PVC4 O linked GlcNAc transferase 3.3913882302e-05 2.37202172853e-06 -12733836175.7 +UniRef50_UPI00029AB782 cytochrome d ubiquinol oxidase subunit II 9.79140951064e-08 2.08076636388e-07 44473969.7619 +UniRef50_U5NRE3 6.97017061606e-05 1.46767932083e-05 -22214232590.5 +UniRef50_F8HC83 Regulatory protein spx 1.26414950608e-05 1.14667829896e-05 -474245678.482 +UniRef50_Q3Y3U3 Relaxase mobilization nuclease domain 1.27485842409e-05 1.8833367085e-06 -4386433760.41 +UniRef50_C5ABI0 Major facilitator superfamily MFS_1 1.98198688056e-06 6.48469005634e-05 25379337093.0 +UniRef50_M2XMH8 DNA polymerase II large subunit 2.02530780281e-07 1.04394581345e-06 339689574.214 +UniRef50_K7YBZ8 2.28155110748e-06 1.97606779169e-05 7056537985.96 +UniRef50_P44304 Glyceraldehyde 3 phosphate dehydrogenase 3.63824611945e-05 4.30280020438e-06 -12950952803.4 +UniRef50_B2TI69 6.30593005367e-06 2.17094372115e-05 6218584861.89 +UniRef50_UPI000255F17A hypothetical protein 5.82559931989e-07 1.64821230301e-06 430216939.206 +UniRef50_P45524 Putative esterase YheT 2.22919467823e-05 1.44345948598e-05 -3172109391.66 +UniRef50_UPI000462C6A7 PREDICTED 1.52949701278e-07 3.76817551654e-06 1459511025.43 +UniRef50_B2WGR9 Catabolic 3 dehydroquinase 3.29341505445e-07 8.59615212763e-05 34570761798.5 +UniRef50_I4AI93 2.08172420321e-06 2.81671794743e-05 10531018397.5 +UniRef50_UPI00045E39BE PREDICTED 4.60558533168e-08 4.04538315796e-08 -2261604.91984 +UniRef50_UPI00037892F1 hypothetical protein 3.64057505749e-08 2.08871737459e-08 -6265039.90022 +UniRef50_U1X2L2 1.23751680986e-06 1.79173896482e-07 -427266021.46 +UniRef50_UPI0003601561 hypothetical protein 1.49523558644e-07 1.39103894639e-07 -4206546.22247 +UniRef50_S5FCD6 Portal protein 9.11801905478e-07 2.15988284241e-05 8351606463.92 +UniRef50_C9ABJ9 Fructose 6 phosphate aldolase 7.32085094163e-05 2.31659558482e-05 -20202792966.6 +UniRef50_A4FIQ1 Inositol 2 dehydrogenase 3 2.90214489783e-05 1.03195735108e-05 -7550176624.05 +UniRef50_A3CQ84 Stomatin prohibitin like membrane protease subunits, putative 6.64379698948e-05 6.98751373888e-05 1387626696.12 +UniRef50_W3AF53 4.4674076915e-08 9.73624789762e-08 21270954.4715 +UniRef50_A5UJ85 DNA helicase II 3.05910634578e-05 4.04010667634e-06 -10718947069.6 +UniRef50_Q4L790 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.52011716229e-05 5.67916740756e-06 -3844149949.86 +UniRef50_F2N691 Methyltransferase PilK 4.42042735691e-06 2.11191922662e-06 -931973060.778 +UniRef50_L1KFY1 1.2076752759e-06 1.33225581291e-05 4890926874.17 +UniRef50_M9VBK7 Protein translocase subunit SecE 1.74762031871e-06 6.23746276338e-05 24475866830.1 +UniRef50_K0RFL8 2.23816179144e-07 7.71164771806e-07 220971343.58 +UniRef50_Q7UKQ9 Pyridoxine pyridoxamine 5 phosphate oxidase 6.51686951022e-08 4.22562704227e-07 144284347.201 +UniRef50_UPI0003B677A0 trehalose phosphatase 3.24179055267e-07 3.8594512666e-07 24935720.9763 +UniRef50_D5AMV2 5.85479990965e-05 1.04801845391e-05 -19405566595.2 +UniRef50_C5WIK5 9.40325337864e-07 4.80463894119e-07 -185651707.974 +UniRef50_A3TY58 2.71217812282e-06 5.86031302057e-07 -858351562.296 +UniRef50_I6AD38 Rhodanese domain protein 1.35942699055e-07 1.56650643619e-07 8360051.33554 +UniRef50_Q3BTY0 Leucyl phenylalanyl tRNA protein transferase 7.15154571387e-08 5.20737318081e-08 -7848863.09276 +UniRef50_J1EAV0 Localization of periplasmic protein complex 1.42407759349e-07 1.85357788066e-07 17339453.6492 +UniRef50_Q08WY4 6.0550603539e-08 8.85087944195e-07 332875842.634 +UniRef50_A5UK74 Xanthine uracil permease, UraA 2.57311722102e-05 4.41311184489e-05 7428284089.29 +UniRef50_R8TPL3 3.4247910761e-06 3.83202453147e-07 -1227926651.57 +UniRef50_UPI0002F0AFD4 glycerol 3 phosphate dehydrogenase 1.46873079729e-07 5.47277805429e-08 -37200188.0314 +UniRef50_O69763 Vanillin dehydrogenase 3.547788711e-06 9.1653848342e-05 35569497456.0 +UniRef50_A0A021V5W0 LctP family lactate transporter 3.86871830562e-05 2.14125642029e-05 -6973975614.49 +UniRef50_UPI000328D943 PREDICTED 2.47609148869e-06 3.43427211886e-06 386829278.598 +UniRef50_Q8P322 tRNA lysidine synthase 5.59811980106e-05 2.5382496282e-05 -12353071376.1 +UniRef50_P50178 Modification methylase LlaDCHIB 2.95776896385e-05 2.25146153897e-06 -11031933614.3 +UniRef50_UPI0002DF814C hypothetical protein 7.09205888256e-07 5.94525032505e-08 -262313414.898 +UniRef50_U3T3H2 Outer membrane cobalamin receptor protein 1.2716768271e-06 6.43375108484e-05 25460451099.2 +UniRef50_Q8A0U0 GTP cyclohydrolase 1 4.09312928036e-07 9.33468649062e-06 3603282833.86 +UniRef50_E4U994 7.28460535183e-07 4.20326020798e-06 1402819268.5 +UniRef50_P56148 DNA repair protein RadA homolog 1.19331714078e-06 5.01095270892e-05 19748074225.6 +UniRef50_S1T0A0 Molybdopterin guanine dinucleotide biosynthesis protein MobA 3.60545915537e-08 3.62248736218e-08 68744.9604879 +UniRef50_Q9ZLF9 Ribonucleoside diphosphate reductase subunit alpha 2.51528325992e-06 3.65176545422e-05 13727174542.7 +UniRef50_Q5L0L0 Chemotaxis response regulator protein glutamate methylesterase 5.47385240571e-08 5.86052574605e-08 1561047.72511 +UniRef50_Q7UIA6 3 isopropylmalate dehydratase small subunit 3.22272789678e-07 5.30062500842e-07 83887256.2634 +UniRef50_Q8E0C9 Group B oligopeptidase PepB 4.45720595275e-05 1.50548358306e-05 -11916465423.5 +UniRef50_K1WM50 1.55668959688e-07 1.87786539651e-06 695271835.271 +UniRef50_UPI00016C089F competence damage inducible protein A 1.67431573981e-07 5.75415102687e-08 -44363967.2233 +UniRef50_K2N567 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 5.33395438294e-07 3.33540933688e-07 -80683716.0 +UniRef50_V6UH50 9.00790839893e-08 2.45429383193e-06 954462505.921 +UniRef50_A1UTH5 Peptidyl tRNA hydrolase 6.81921278934e-07 3.51198236662e-07 -133516950.593 +UniRef50_J7LD22 2.23072413933e-07 9.72494841897e-08 -50796260.7582 +UniRef50_W1N6M3 1.07858990348e-06 4.91572138841e-07 -236986275.103 +UniRef50_J7MT36 Phage infection family protein 3.79907093011e-08 1.65251376045e-05 6656063521.64 +UniRef50_UPI000262CD24 dihydroorotate dehydrogenase 2 5.64432813214e-08 6.69613784165e-08 4246284.86886 +UniRef50_UPI000474A0FC cation transporting ATPase PacS, partial 3.62633600666e-08 5.97220036057e-08 9470542.26666 +UniRef50_P0A9S8 High affinity branched chain amino acid transport ATP binding protein LivG 5.12397489533e-05 9.94326341755e-06 -16671897975.6 +UniRef50_UPI0003B61CAA DNA polymerase III subunit alpha 2.57949696976e-08 1.00975679278e-07 30351375.0287 +UniRef50_UPI000441931B PREDICTED 2.062660605e-07 7.29575306157e-08 -53818289.3938 +UniRef50_UPI0003EB11F8 hypothetical protein 3.17946783882e-06 1.50828145793e-06 -674678449.728 +UniRef50_B9JLP2 Dipeptide ABC transporter 0.000144319630433 7.55232268359e-06 -55214640461.9 +UniRef50_S5NIJ4 6 pyruvoyl tetrahydropterin synthase family protein 1.96949211577e-06 0.000134595635748 53542801690.0 +UniRef50_UPI00046D9084 hypothetical protein 1.1574838913e-07 5.64089116712e-06 2230567940.6 +UniRef50_A0A024HLC2 Peptidoglycan synthase FtsI 1.26718909768e-05 6.01422526307e-06 -2687781347.38 +UniRef50_UPI0003EABD05 PREDICTED 3.53765437387e-07 7.09944790988e-07 143793975.861 +UniRef50_UPI0003F6C60F hypothetical protein 6.23776261745e-08 7.10100760025e-08 3485025.92764 +UniRef50_Q02127 Dihydroorotate dehydrogenase , mitochondrial 3.88577241031e-08 5.45527593257e-08 6336278.3191 +UniRef50_Q63JM0 Tryptophan synthase alpha chain 7.30735717188e-06 9.33192821108e-05 34724069582.8 +UniRef50_UPI00037DE56E hypothetical protein 1.0181075704e-08 6.55994989111e-08 22373097.5092 +UniRef50_P55798 Serine threonine protein phosphatase 1 3.67472350853e-05 1.9272742775e-05 -7054666981.8 +UniRef50_A1AJA0 3.67681157978e-06 7.57222321012e-06 1572625477.24 +UniRef50_V2WBL1 1.01790673079e-06 5.4597983691e-05 21630934570.3 +UniRef50_D5BNR0 1.54963159223e-07 3.95853145172e-07 97250243.3802 +UniRef50_UPI000464D525 hypothetical protein 3.67045210941e-07 1.49796554692e-07 -87705948.4685 +UniRef50_F7ZCI7 YcjX like protein 5.59933228429e-06 1.76726048331e-06 -1547054410.86 +UniRef50_P77551 Putative Rz endopeptidase from lambdoid prophage Rac 2.00978496923e-05 4.53994425311e-06 -6280917342.77 +UniRef50_P0AFR7 Inner membrane ABC transporter permease protein YcjO 3.71800615952e-05 9.74390098632e-06 -11076314717.4 +UniRef50_A0A011MK47 Sulfate starvation induced protein 7 1.23555401582e-07 5.65188692134e-08 -27063470.748 +UniRef50_Q8C3X4 Translation factor Guf1, mitochondrial 1.62689593318e-06 6.07355481825e-05 23862888257.8 +UniRef50_P15034 Xaa Pro aminopeptidase 2.72522256053e-05 6.61161887643e-06 -8332866225.18 +UniRef50_E8SF18 Aldose 1 epimerase 0.000262337392811 4.99367281283e-05 -85748754781.8 +UniRef50_A0A017HMF0 1.09951483069e-05 7.68717325399e-07 -4128535679.65 +UniRef50_C4ZAJ9 ABC transporter, substrate binding protein 4.33870517968e-06 1.65172626081e-05 4916633081.55 +UniRef50_Q3KKE6 Methionyl tRNA formyltransferase 1.15994981852e-07 1.01760715423e-07 -5746548.03148 +UniRef50_J9NYM1 5.62734213803e-07 7.96812327947e-06 2989646440.15 +UniRef50_C3QRE5 2.04045915274e-07 5.28306306203e-07 130907898.94 +UniRef50_UPI000454A2DB PREDICTED 4.10028204569e-07 5.83730781846e-06 2191059380.34 +UniRef50_A4WNL3 Alkane 1 monooxygenase 4.61211358478e-05 7.97567668071e-06 -15399789963.2 +UniRef50_Q2KUS4 Glutamate 1 semialdehyde 2,1 aminomutase 1.30300919849e-07 5.17109824215e-07 156159501.372 +UniRef50_Q49XA7 Response regulator 0.000262766745275 9.69861921099e-05 -66927643668.9 +UniRef50_W0NGN9 2.45436890964e-06 1.03899038154e-06 -571405680.442 +UniRef50_UPI0001DD0A5B glucose methanol choline oxidoreductase 3.25551130128e-07 1.51054561154e-07 -70446406.2085 +UniRef50_UPI0002DA0766 hypothetical protein 9.97826103677e-07 1.70678993212e-07 -333929438.731 +UniRef50_UPI000465EE27 transcriptional regulator 5.1907931128e-06 1.78688564362e-06 -1374199215.95 +UniRef50_S9S9T8 8.71142785697e-08 8.93553676139e-09 -31561717.4291 +UniRef50_Q4FQM5 Possible acyl CoA dehydrogenase 2.56184774824e-06 8.05647737903e-05 31490738446.7 +UniRef50_F0LEQ2 1.76125021984e-07 3.73462807507e-08 -56026680.8424 +UniRef50_UPI0004011469 glutamine synthetase 3.88022418163e-08 3.84890521942e-07 139720085.668 +UniRef50_Q2NVF9 Ribonuclease H 4.92115386828e-07 2.27583395313e-07 -106794811.147 +UniRef50_UPI000360E579 hypothetical protein 3.48693396424e-08 3.66772317774e-08 729868.240231 +UniRef50_UPI00034CA4EE hypothetical protein 1.18349023133e-07 7.84339940452e-08 -16114187.0552 +UniRef50_T1Y907 Glycerol uptake operon antiterminator regulatory protein 0.00010060208328 5.17895372108e-05 -19706223845.4 +UniRef50_X0W5G8 Marine sediment metagenome DNA, contig 1.37658217162e-07 5.57978103331e-06 2197051763.24 +UniRef50_P39634 1 pyrroline 5 carboxylate dehydrogenase 0.000312434604054 0.0005662210642 1.02456708271e+11 +UniRef50_UPI0003D2D096 helicase subunit of the DNA excision repair complex 2.13068221822e-06 3.5283242594e-06 564245243.021 +UniRef50_UPI0004195273 metallophosphoesterase 3.00129406799e-07 1.03183996409e-06 295400531.077 +UniRef50_Q3SKN6 Ribosome recycling factor 3.59509751005e-05 3.37254524287e-05 -898470812.84 +UniRef50_M2SV33 3.08187578723e-08 2.11594207944e-07 72981267.5583 +UniRef50_Q98HV6 Peptidyl tRNA hydrolase 6.18019648583e-07 3.148071852e-07 -122410592.303 +UniRef50_J7L680 4.04418090133e-07 1.8599765526e-07 -88179009.8784 +UniRef50_UPI000475208B hypothetical protein 8.66354316966e-07 1.60894354595e-07 -284802843.776 +UniRef50_P0A9P2 Dihydrolipoyl dehydrogenase 2.93539989047e-05 1.16350489329e-05 -7153357539.58 +UniRef50_K1V9D8 2.72130078112e-07 8.60981672297e-08 -75103365.2913 +UniRef50_P56262 Putative carboxymethylenebutenolidase 2.65468570168e-05 7.16965950952e-06 -7822812418.65 +UniRef50_P27242 Lipopolysaccharide 1,2 N acetylglucosaminetransferase 2.23156188007e-05 2.23724776658e-06 -8105884775.79 +UniRef50_UPI00036005C8 Cro Cl family transcriptional regulator 3.02352917294e-06 3.32271176516e-07 -1086493878.6 +UniRef50_D6ZGV8 Hydrolase, alpha beta domain protein 9.96005247615e-07 3.46275126597e-05 13577452247.3 +UniRef50_UPI0003B63445 3 oxoacyl ACP synthase 1.15942492086e-07 3.92712444924e-07 111735426.31 +UniRef50_UPI0004701497 hypothetical protein 1.15266624298e-07 1.32079993173e-07 6787763.33808 +UniRef50_UPI00037075A9 hypothetical protein 1.28464256146e-07 1.42634073441e-07 5720529.1252 +UniRef50_UPI00036443D8 hypothetical protein 1.83519997307e-07 1.36747211517e-07 -18882747.59 +UniRef50_X0XIH0 Marine sediment metagenome DNA, contig 1.17136984514e-06 2.43647132904e-07 -374533043.368 +UniRef50_Q2RJX2 Ribonuclease 3 1.36690282123e-07 5.21028633718e-07 155162108.901 +UniRef50_Q82ZC9 Mannonate dehydratase 3.8261443205e-06 9.0494550284e-05 34989099028.4 +UniRef50_UPI0003AEBAC4 PREDICTED 1.31413635789e-07 9.60149128807e-09 -49177057.5382 +UniRef50_Q4L8C1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 8.79889537516e-05 4.66730089782e-05 -16679753908.7 +UniRef50_UPI000380E91C hypothetical protein 7.21708016402e-07 5.59215609367e-07 -65600178.7261 +UniRef50_B9KSB3 1.39052871764e-05 1.35259559632e-05 -153140665.686 +UniRef50_Q83KI3 UPF0339 protein YegP 8.01986811085e-06 3.08740437904e-05 9226511174.09 +UniRef50_A6LQL4 Methylated DNA protein cysteine methyltransferase 3.56118857413e-06 3.81053813154e-06 100665476.19 +UniRef50_Q5FKB1 Trehalose 6 P hydrolase 6.3583902874e-05 2.13256877819e-05 -17060159999.3 +UniRef50_R1CXE8 4.17206431966e-07 2.38378604517e-06 793932322.494 +UniRef50_E6MXC7 Chorismate mutase 1.46691446449e-06 6.38783807577e-05 25196274817.4 +UniRef50_UPI0001911376 DNA binding transcriptional activator of porin biosynthesis, partial 2.80483475261e-07 6.05030742556e-07 131023714.45 +UniRef50_D5QD63 Phosphoribosylaminoimidazole carboxylase ATPase subunit 1.74981661799e-05 3.5605686715e-06 -5626779147.7 +UniRef50_D7CSG3 ABC transporter related protein 4.79138807593e-06 0.000379434082039 1.51247852936e+11 +UniRef50_X7EKT4 3.70977852084e-07 2.35936272629e-07 -54517942.7725 +UniRef50_UPI0000166DA8 COG0583 2.22015380385e-07 1.48156109259e-07 -29817894.1087 +UniRef50_Q834F4 UPF0122 protein EF_1701 1.02950724232e-05 0.000180393758711 68670927000.1 +UniRef50_Q8ZKQ1 Autoinducer 2 binding protein LsrB 0.000100166848175 4.58056345516e-05 -21946289026.9 +UniRef50_B7VKH0 4 diphosphocytidyl 2 C methyl D erythritol kinase 3.09970164874e-05 1.27375106598e-05 -7371586571.94 +UniRef50_P69925 Ribonucleoside diphosphate reductase 1 subunit beta 3.89285407546e-05 4.29294621717e-05 1615221072.91 +UniRef50_Q28NI7 ATP dependent Clp protease proteolytic subunit 1.62277173087e-07 4.22969274885e-07 105244600.548 +UniRef50_Q9A8A3 5.93504540491e-06 2.12804769119e-06 -1536931694.14 +UniRef50_R1CGH2 1.1438560723e-06 2.62036804059e-06 596086000.438 +UniRef50_Q2T0L2 UDP N acetylenolpyruvoylglucosamine reductase 4.69722778002e-06 3.80209008191e-06 -361378073.302 +UniRef50_A0A017HNY4 Paraquat inducible protein B 1.82422019514e-07 5.58002212442e-07 151626332.772 +UniRef50_P0A8Y6 Sugar phosphatase YidA 6.78688135142e-05 4.89113011696e-05 -7653380368.35 +UniRef50_A5N3K4 CTP synthase 3.46635087934e-07 1.77336186937e-06 575987109.574 +UniRef50_C5WIG1 16S rRNA mC 967 methyltransferase 5.1321430333e-05 5.57047488845e-05 1769599488.61 +UniRef50_P50434 Serine hydroxymethyltransferase 1.00133587018e-07 1.29526459023e-07 11866263.1195 +UniRef50_UPI00037E292F Na translocating NADH quinone reductase subunit E, partial 7.14908434026e-07 8.28832726115e-07 45992634.7246 +UniRef50_P76104 3.35553458941e-05 5.40901625088e-06 -11363018671.3 +UniRef50_A6LQE3 Spore coat protein CotS 6.07469626782e-06 1.25765239711e-05 2624867630.21 +UniRef50_UPI0000222BCC Hypothetical protein CBG04553 8.92196171329e-09 1.30647723141e-06 523838985.172 +UniRef50_P76100 1.87818780999e-05 1.16713888886e-05 -2870591750.12 +UniRef50_Q9HXY5 Skp like protein 4.57710083491e-06 1.05893827165e-05 2427231974.59 +UniRef50_U4Q2X2 1.3470591303e-05 5.48575922964e-06 -3223574692.92 +UniRef50_UPI000455F125 MFS general substrate transporter 3.16447653523e-08 2.42489172182e-07 85120474.3891 +UniRef50_UPI000255A9B5 polyhydroxyalkanoate depolymerase, intracellular 3.80018624549e-06 6.24483168639e-07 -1282070302.38 +UniRef50_P43801 Anaerobic glycerol 3 phosphate dehydrogenase subunit C 1.92424024098e-05 2.88388401881e-06 -6604134616.04 +UniRef50_B3EFT2 Phosphoribosyl AMP cyclohydrolase 1.43082521179e-07 6.86055428384e-07 219204825.666 +UniRef50_B9E2W7 1.1005422415e-06 1.06261531073e-05 3845605998.91 +UniRef50_UPI0004635F62 hypothetical protein, partial 1.89931350216e-07 1.02720497608e-07 -35208091.3954 +UniRef50_D5RMQ9 1.00317457958e-05 6.92148527801e-06 -1255650338.22 +UniRef50_A6UYW1 8 amino 7 oxononanoate synthase 9.41884458769e-08 4.38616684671e-08 -20317537.6193 +UniRef50_D9XAX0 Predicted protein 5.56279417224e-06 2.23179165768e-07 -2155668102.56 +UniRef50_Q67PR9 Guanylate kinase 9.38150948695e-08 2.55495586822e-07 65272398.6438 +UniRef50_B8I4B5 50S ribosomal protein L9 5.10116201151e-06 1.11272176274e-05 2432792600.15 +UniRef50_B9KUZ9 1.61887715412e-05 2.20767355851e-05 2377043337.97 +UniRef50_C5QYC3 0.000374811977381 0.000267616167579 -43276263857.6 +UniRef50_UPI0003705808 hypothetical protein 7.87129648936e-07 1.08678971022e-06 120976443.983 +UniRef50_O17953 Dihydrolipoyl dehydrogenase, mitochondrial 6.21545687068e-06 0.000575784965126 2.29942199886e+11 +UniRef50_W9UQ60 Putative assembly protein 1.94758834616e-08 1.91731645075e-08 -122211.356549 +UniRef50_A0A024HXW4 2.16692232949e-07 3.9768085016e-07 73067325.7482 +UniRef50_G4LCZ8 ABC transporter 1.36274538262e-05 1.39222348632e-05 119006722.007 +UniRef50_A0A023XD37 2.85644599929e-05 6.30569477283e-06 -8986136665.12 +UniRef50_Q67LS2 tRNA specific 2 thiouridylase MnmA 1.05837193141e-06 1.82803218533e-05 6952712520.56 +UniRef50_A5IUF8 5.25435426901e-05 2.49457223503e-05 -11141578734.5 +UniRef50_B9J8J7 Phosphate ABC transporter, permease protein PstC 2.11341990744e-05 1.85928670631e-06 -7781518652.78 +UniRef50_UPI0003A61BAB glutaredoxin 2.63593282703e-06 1.19443857929e-06 -581948916.936 +UniRef50_Q5M3M6 NADH nitroreductase, putative 0.000104806366719 3.23940629224e-05 -29233735641.6 +UniRef50_D6T1N1 3.52258524946e-07 1.96684230892e-06 651827286.76 +UniRef50_P30864 2.1694972146e-05 4.49120544414e-05 9373021028.29 +UniRef50_UPI0003B3E508 ATP dependent DNA helicase RecQ 3.1950876362e-07 8.76427945006e-08 -93607137.0487 +UniRef50_I0C7F9 Transposase 6.29222881243e-05 4.2188100743e-06 -23699314461.5 +UniRef50_UPI00040BBC52 hypothetical protein 6.07225557301e-08 7.44802587944e-08 5554153.55306 +UniRef50_E8SP74 TnaB 1.70244177435e-06 3.06879754673e-05 11701815644.4 +UniRef50_UPI00031AADB4 hypothetical protein 7.98129398548e-08 4.80507417835e-07 161765277.835 +UniRef50_A6M044 Pyruvate phosphate dikinase, PEP pyruvate binding 2.93205594883e-06 9.12992822274e-06 2502157093.42 +UniRef50_B1I8K9 50S ribosomal protein L24 5.71948467958e-06 1.58205377784e-05 4077919089.85 +UniRef50_A4WU42 HAD superfamily hydrolase, subfamily IA, variant 3 6.2012539686e-05 2.10555283762e-05 -16534848064.8 +UniRef50_A4X0H4 7.22673297635e-05 4.66147221554e-05 -10356272484.3 +UniRef50_UPI0003B31D39 glucose 1 phosphate adenylyltransferase 8.27791414818e-08 1.74862295857e-07 37175099.4086 +UniRef50_G0NKG2 1.77670334942e-08 1.69565034975e-08 -327220.905989 +UniRef50_F2RAR1 2.28512392982e-07 1.77935372772e-07 -20418563.7086 +UniRef50_UPI0003F0A9A6 PREDICTED 1.60354202724e-07 1.89036774594e-07 11579506.2387 +UniRef50_A6LTB9 2.19915479931e-06 3.47847745481e-06 516478255.08 +UniRef50_W1CWF6 Dipeptide transport system permease protein DppC 3.99159947935e-07 4.50292672275e-07 20642908.2851 +UniRef50_P76027 Oligopeptide transport ATP binding protein OppD 3.57888287322e-05 3.07108294839e-05 -2050050610.6 +UniRef50_B9E466 1.57158450554e-06 8.99803575401e-06 2998149501.81 +UniRef50_Q9KA77 Translation initiation factor IF 2 9.83590535411e-05 3.21618573988e-05 -26724620413.6 +UniRef50_D2ZRY0 1.23811800729e-05 9.01692565299e-06 -1358190793.36 +UniRef50_UPI0003AE05F2 PREDICTED 7.3782790292e-07 3.0981870398e-07 -172792565.876 +UniRef50_UPI0003B3B0BA preprotein translocase subunit TatA 1.15263405025e-06 8.09674765753e-07 -138456871.735 +UniRef50_W8WPD9 Phage protein 6.89815600913e-05 6.41992837382e-06 -25256898441.9 +UniRef50_A0A037XG38 Glyoxalase 1.61161911155e-07 3.31141839601e-07 68622983.0019 +UniRef50_D4M1S2 RNA splicing ligase RtcB 3.16058040362e-06 9.4952870824e-06 2557398821.82 +UniRef50_UPI0003B5B654 membrane protein 1.74038751499e-06 6.76193933771e-07 -429628007.862 +UniRef50_UPI00037C520F hypothetical protein 3.32171331842e-08 6.10559592037e-08 11238875.6849 +UniRef50_S3LIB4 4.18662965203e-07 3.22706734066e-07 -38738708.0254 +UniRef50_Q28NL2 2.85002946155e-07 1.51245360965e-07 -53999578.5314 +UniRef50_UPI00046673FB hypothetical protein 1.90820262984e-06 1.50793327316e-06 -161593651.149 +UniRef50_UPI0004704A21 hypothetical protein 3.05012851836e-07 5.00442944208e-06 1897212145.81 +UniRef50_Q3K425 Chromosomal replication initiator protein DnaA 7.30992193626e-05 4.85592854234e-05 -9907072470.11 +UniRef50_UPI0003B72310 excinuclease ABC subunit C 8.01168615629e-08 1.68864653312e-07 35828572.587 +UniRef50_UPI0004703B9E branched chain amino acid ABC transporter permease 5.90543812748e-08 1.45323341918e-06 562847186.105 +UniRef50_UPI000471ED7E ABC transporter ATP binding protein 4.0981112959e-07 2.04501997775e-07 -82885815.9401 +UniRef50_UPI000372F99D hypothetical protein, partial 2.99295866321e-07 3.41608761337e-07 17082234.9556 +UniRef50_A6M1G6 2 aminoethylphosphonate pyruvate transaminase 1.99494455397e-06 2.216107629e-05 8141314848.09 +UniRef50_UPI00042812AB hypothetical protein 1.05766180632e-07 4.39196381855e-07 134609863.882 +UniRef50_X5P2F9 Replication initiation protein 5.0336391492e-07 2.85988750002e-07 -87757021.5706 +UniRef50_X5K1E3 1.05837193136e-05 8.81542403566e-06 -713882503.128 +UniRef50_Q4L8N9 Multidrug export protein MepA 0.000109358220442 1.3392441898e-05 -38742562430.7 +UniRef50_P18200 Phosphatidylglycerophosphatase A 1.75102496705e-05 4.70986401241e-06 -5167672768.57 +UniRef50_W7WR71 5.97175079141e-07 9.90339160079e-07 158725164.14 +UniRef50_E8PGH1 2.64873318412e-06 6.17833074134e-05 23873353279.2 +UniRef50_A0A023S033 Peptidase C13 family protein 9.7123324747e-07 5.43603920085e-05 21553858550.5 +UniRef50_Q95748 NADH dehydrogenase [ubiquinone] iron sulfur protein 3 2.31596783811e-07 1.63320142889e-07 -27564117.7888 +UniRef50_C1E3Y9 Carbamoyl phosphate synthase 1.22376929233e-06 8.53044695092e-05 33944410463.8 +UniRef50_Q04E66 30S ribosomal protein S4 3.02240830011e-05 2.85194301032e-05 -688189293.326 +UniRef50_A6QII8 Phage portal protein 0.000195619375102 3.35419751104e-05 -65432635290.1 +UniRef50_UPI00020D9EF8 potassium transporting ATPase subunit B, partial 1.58739084151e-07 1.39569780923e-05 5570518411.0 +UniRef50_M1MIF0 Ankyrin repeat containing protein 9.50716554642e-06 2.79921047585e-06 -2708083777.85 +UniRef50_A1B6P1 HupH hydrogenase expression protein 2.34830164501e-06 9.51567595386e-07 -563878675.686 +UniRef50_C7ZU12 Membrane protein 0.000115553727064 7.76425598109e-05 -15305203442.4 +UniRef50_R4Q1E8 Fumarate reductase, flavoprotein subunit 6.08928826387e-05 8.38731833528e-06 -21197140625.0 +UniRef50_UPI00036817A2 hypothetical protein 1.14936885719e-07 3.92703272152e-07 112137698.78 +UniRef50_UPI00037FABCF hypothetical protein 3.83675115771e-06 1.27374069866e-06 -1034718773.99 +UniRef50_S1HAB5 Peptidoglycan hydrolase flgJ 4.17425402772e-05 7.36340090513e-06 -13879280444.0 +UniRef50_A0LUK5 Holliday junction ATP dependent DNA helicase RuvB 1.34678639395e-07 7.47569741644e-05 30125936422.0 +UniRef50_J0GC54 8.11320802385e-05 4.134109254e-05 -16064110024.2 +UniRef50_P22525 Probable L,D transpeptidase YcbB 2.97589868023e-05 1.8079251832e-05 -4715252333.98 +UniRef50_I1AUI6 Ferrichrome ABC transporter periplasmic ferrichrome binding protein FhuD 1 3.13701111483e-07 1.58419951028e-07 -62688909.9898 +UniRef50_P0AF07 Motility protein B 2.70239899437e-05 1.45486187002e-05 -5036460461.02 +UniRef50_R3TZ40 1.05367221013e-07 7.62953861265e-08 -11736656.4952 +UniRef50_UPI0004736CD6 hypothetical protein 5.23469688489e-07 2.08775311889e-07 -127045981.568 +UniRef50_UPI0000352E5F nucleoside diphosphate kinase 5.76301413004e-07 3.21534571033e-07 -102852500.444 +UniRef50_F2ABU0 1.07356687878e-05 3.18143429591e-06 -3049737165.26 +UniRef50_B9KX90 ABC polysaccharide export transporter, inner membrane subunit 0.000203645951903 2.83948197266e-05 -70751032632.7 +UniRef50_T1HGL7 6.92048074568e-08 6.20125331163e-07 222413375.975 +UniRef50_UPI0002491D69 glycine betaine carnitine ABC transporter, ATP binding subunit 2.54215752016e-06 2.89163098988e-07 -909561495.177 +UniRef50_UPI0004732920 long chain fatty acid CoA ligase, partial 2.83798680388e-07 8.06922941792e-08 -81996540.5082 +UniRef50_UPI0002EB7410 hypothetical protein 1.25596036843e-06 7.94447966809e-08 -474973773.785 +UniRef50_C5N039 3.09414277407e-05 1.44174716362e-05 -6670923851.13 +UniRef50_UPI0002896C02 L glutamine synthetase 3.41657627596e-08 1.35287623231e-07 40824135.9769 +UniRef50_UPI0003740E86 hypothetical protein 9.96012827383e-08 1.24335738072e-07 9985603.14411 +UniRef50_D7GDS8 Protein export membrane protein SecF 9.83890500953e-07 4.185214865e-05 16499017324.7 +UniRef50_UPI00035114FD PREDICTED 2.78956326815e-08 6.08758455454e-09 -8804176.64371 +UniRef50_Q18CD7 Proline tRNA ligase 2 7.56279560481e-08 2.99017479952e-07 90185092.0978 +UniRef50_Q9L6N7 Threonine efflux protein 2.20539636516e-05 4.65375110875e-05 9884308546.79 +UniRef50_UPI00047C100E hypothetical protein 1.04251224206e-06 9.66886825505e-08 -381840577.534 +UniRef50_UPI000463C607 hypothetical protein 2.38353935364e-08 1.76945660356e-08 -2479127.4185 +UniRef50_F7ZSI9 Serine protein kinase , prkA protein 3.23529144141e-06 6.98845092264e-06 1515196539.02 +UniRef50_J2PRG5 6.77514964598e-07 5.02104489412e-07 -70815361.3612 +UniRef50_S7Z9P2 1.87736526976e-07 6.85317979988e-08 -48124411.8945 +UniRef50_S9QRL9 Ribulose 5 phosphate 4 epimerase 2.06732314622e-07 5.06537018293e-06 1961491729.63 +UniRef50_J1E8C3 2.03862942794e-07 1.74362834037e-07 -11909555.9122 +UniRef50_Q46831 4.18288054075e-05 1.90629184652e-05 -9190867927.45 +UniRef50_Q1R0P6 7.05214081848e-08 2.34137554333e-07 66053845.9958 +UniRef50_UPI000429382E hypothetical protein 1.07771965608e-07 8.21361914025e-08 -10349476.6331 +UniRef50_UPI00036DD217 hypothetical protein 4.1676988856e-08 7.75111497774e-08 14466690.4986 +UniRef50_W4U314 Transglutaminase like enzymes 4.97530185333e-07 2.24101367546e-07 -110386569.09 +UniRef50_Q03282 Urease subunit gamma 6.81824738409e-06 3.74294570504e-06 -1241537026.03 +UniRef50_P16524 Putative N acetyl LL diaminopimelate aminotransferase 3.04673917925e-07 2.67933318982e-05 10693796279.0 +UniRef50_UPI00037D91E8 hypothetical protein 2.69975941821e-07 1.56478033249e-07 -45820498.4665 +UniRef50_A6YIY0 Major ampullate spidroin 2 6.93625593045e-08 2.38516723892e-07 68289611.9988 +UniRef50_Q97KZ3 Putative ABC transporter ATP binding protein CA_C0773 5.02922100373e-06 1.28041695837e-05 3138842151.08 +UniRef50_W6QWZ0 Putative acyl CoA thioester hydrolase 2.81705961835e-06 5.01954739708e-06 889171343.838 +UniRef50_Q6AQS4 Aspartate tRNA ligase 0.000268282422176 5.90881860223e-05 -84454280237.3 +UniRef50_UPI00046EC96E hypothetical protein, partial 1.33399139677e-06 1.42098485818e-06 35120327.901 +UniRef50_R9SMV0 Siroheme synthase CysG 5.12865345631e-05 2.83958370386e-06 -19558628572.8 +UniRef50_E6MYI6 Esterase family protein 5.83584479882e-06 1.5352030021e-05 3841800750.92 +UniRef50_UPI0003A50B9C hypothetical protein 2.06281087424e-07 2.66192631087e-07 24187025.3741 +UniRef50_A0YEX4 1.41178686592e-06 3.67185114235e-06 912415682.502 +UniRef50_F5X5K7 TetR family transcriptional regulator 3.36299485171e-05 1.92021489492e-05 -5824679734.57 +UniRef50_UPI000382E61F hypothetical protein, partial 2.08207063785e-07 5.48572424133e-07 137409672.725 +UniRef50_E0TW67 Quinol oxidase subunit 2 0.000100030010767 3.04823568594e-05 -28077241328.2 +UniRef50_T2BF48 Ubiquinol cytochrome c reductase iron sulfur subunit 5.05561592214e-06 1.69244544919e-05 4791595777.66 +UniRef50_X5E1J9 0.000192169882303 1.92153394635e-05 -69823871335.0 +UniRef50_Q8DNI6 Phosphotransferase system, trehalose specific IIBC component 5.94636626756e-05 8.72432519423e-06 -20484093182.9 +UniRef50_D4HBJ9 Adenosine deaminase 1.84439408233e-06 3.57182429902e-05 13675288483.0 +UniRef50_X0VEK8 Marine sediment metagenome DNA, contig 1.16646909592e-07 1.49548888223e-07 13282932.526 +UniRef50_Q8DWB5 1.43028371616e-05 1.31251868976e-05 -475431862.971 +UniRef50_Q034T8 Holo [acyl carrier protein] synthase 1.62028611099e-05 1.31908384106e-05 -1215990525.38 +UniRef50_P18357 Regulatory protein BlaR1 0.00120613343904 0.000336519397722 -3.51073859844e+11 +UniRef50_UPI00036C8B47 hypothetical protein 3.5369758798e-06 5.27292956816e-07 -1215045928.97 +UniRef50_K4R1X2 2.39055457073e-06 3.5610077652e-06 472526317.683 +UniRef50_A4EPP0 1.0486141029e-05 3.34125226082e-06 -2884479273.36 +UniRef50_UPI000379B93E quinone oxidoreductase 7.4048007735e-07 1.62958241127e-07 -233152652.273 +UniRef50_A0A059FRG3 MFS permease 4.69824456e-08 7.69767855986e-08 12109083.1294 +UniRef50_B6IW38 1.96954482659e-06 9.07483171773e-07 -428767323.013 +UniRef50_U5MV68 SCP like extracellular 1.19710144452e-06 1.51120330616e-05 5617628649.24 +UniRef50_UPI00046EA5E6 hypothetical protein, partial 2.5254474021e-07 1.91844416248e-07 -24505465.6602 +UniRef50_S0EYL5 Sugar phosphate isomerases epimerases 2.57077607856e-06 9.34112148509e-06 2733271522.1 +UniRef50_D6U9R9 Export membrane protein SecF 0.000185926367663 4.98651446252e-05 -54929585399.4 +UniRef50_UPI0003F09E85 PREDICTED 3.94443038656e-07 3.01677049929e-07 -37450768.0158 +UniRef50_M4X5B0 3.96783876871e-06 2.81701149624e-06 -464603092.135 +UniRef50_U5MX08 Phosphoglycerate mutase 1.85953689091e-06 2.88193643771e-05 10884013190.5 +UniRef50_UPI000255BA65 potassium transporter 1.49911007733e-07 1.67742378661e-07 7198743.25916 +UniRef50_UPI000225F75F hypothetical protein 2.3613386411e-06 7.87565811337e-07 -635351403.738 +UniRef50_A7A485 1.47258840698e-06 5.18798445402e-06 1499950977.23 +UniRef50_UPI00046F4E68 ribonucleoside diphosphate reductase, partial 3.55374393803e-07 1.49177660064e-07 -83244151.7289 +UniRef50_K0T2W7 8.05763126359e-07 9.97263701178e-07 77311132.0307 +UniRef50_B0VRG1 1.51804016961e-06 1.4830098215e-05 5374241190.25 +UniRef50_A6M0V4 Methyl accepting chemotaxis sensory transducer 4.50896885334e-06 1.43051930482e-05 3954855920.65 +UniRef50_UPI0003B6BA2C chemotaxis protein CheY 9.74131359043e-08 1.27829526296e-07 12279470.0522 +UniRef50_R7GI74 Formate C acetyltransferase 6.54164373098e-05 8.14634046772e-05 6478357644.65 +UniRef50_E7C3S2 Dehydrogenases 3.57572490414e-07 1.08810610168e-06 294925383.524 +UniRef50_Q3AEU3 Uroporphyrinogen decarboxylase 1.57553417194e-07 3.35784016388e-07 71953880.03 +UniRef50_A4WPB6 Orotate phosphoribosyltransferase 0.000107579918925 1.91864824567e-05 -35685515011.7 +UniRef50_Q5XCE8 Dihydrolipoamide dehydrogenase 8.45873487721e-05 4.56029336268e-05 -15738486786.7 +UniRef50_A9UUK0 Predicted protein 7.56485825242e-08 8.83300214869e-07 326058874.978 +UniRef50_A3MIQ6 Phosphoglucosamine mutase 9.42583166592e-06 0.000117895012217 43790339255.0 +UniRef50_Q3J3N9 Chemotaxis protein methyltransferase 0.000129078550555 3.01574950863e-05 -39935643990.6 +UniRef50_J9Z0P1 X Pro dipeptidyl peptidase 8.36724282894e-08 2.68206541528e-07 74498686.0028 +UniRef50_Q7NK15 Glr1665 protein 2.98971767865e-05 0.000461228076745 1.74133577338e+11 +UniRef50_D3E1W6 tRNA guanylyltransferase ThgL 4.73932000539e-05 4.94253899902e-06 -17137852796.1 +UniRef50_UPI000366C0D7 hypothetical protein 1.35030912641e-07 5.71257007449e-08 -31451290.0469 +UniRef50_UPI000314B2B3 hypothetical protein 2.32571311341e-07 2.59970100207e-07 11061227.2862 +UniRef50_B9TDV5 8.14132254934e-07 1.27109055325e-06 184479672.539 +UniRef50_A0A009F5X4 Pirin family protein 8.52632154369e-08 3.126515518e-07 91799461.7584 +UniRef50_C4WAX5 1.76950919503e-08 1.95270862694e-07 71689517.7491 +UniRef50_A6LTQ4 HAD superfamily hydrolase, subfamily IA, variant 3 1.7132495712e-06 6.9687498683e-06 2121709962.18 +UniRef50_UPI0002DD18E5 hypothetical protein 2.23472838387e-07 3.17348135845e-07 37898609.5632 +UniRef50_U1MU63 8.07254431151e-08 4.6296282207e-07 154313920.464 +UniRef50_UPI000237F107 hypothetical protein 1.42797670471e-06 1.10028936377e-06 -132291400.713 +UniRef50_F4DTR0 3.12957715226e-07 6.24227005909e-07 125663232.352 +UniRef50_E8SJR1 0.00035392014305 1.37727785043e-05 -1.37321665145e+11 +UniRef50_B2IJH9 UDP N acetylglucosamine 1 carboxyvinyltransferase 1.10527348067e-07 7.10249786579e-07 242115307.849 +UniRef50_A1WJX6 TRAP dicarboxylate transporter, DctM subunit 8.40680729705e-05 1.76307805325e-05 -26821550234.5 +UniRef50_UPI0004174C64 hypothetical protein 2.81446306652e-07 8.99288536133e-07 249430489.818 +UniRef50_M8YJZ4 Protein rarD 7.1790856919e-06 5.31162024347e-06 -753918717.909 +UniRef50_B1YGD3 Thymidylate kinase 9.0325744206e-08 1.42661934269e-07 21128762.1657 +UniRef50_A6SYG4 ABC type multidrug transport system, ATPase component 2.20162131832e-05 7.90192288099e-06 -5698112196.82 +UniRef50_UPI00036B3D28 hypothetical protein 1.98503350708e-07 3.51843861112e-07 61905445.7498 +UniRef50_UPI000477DA5B hypothetical protein 1.00729387197e-07 3.05747837619e-07 82768464.2947 +UniRef50_UPI0004635914 hypothetical protein, partial 2.07317536624e-07 3.23748677672e-07 47004680.4118 +UniRef50_UPI000360F81F hypothetical protein 1.5185123517e-07 8.59359247798e-08 -26610819.6763 +UniRef50_I1AFI7 2.34543991513e-07 2.24882600838e-07 -3900421.97409 +UniRef50_B7MFJ5 Phosphopantetheine adenylyltransferase 1.31176139184e-05 6.44754944767e-05 20733806613.5 +UniRef50_UPI00037AFD46 hypothetical protein 6.54189755266e-07 1.29661441851e-07 -211758516.812 +UniRef50_Q9C0V7 6.22351616997e-06 1.11021317735e-06 -2064303165.4 +UniRef50_D4DV01 6.08061200072e-07 9.42060557543e-07 134839639.244 +UniRef50_K0NAU6 Aspartate aminotransferase 4.8565053391e-05 3.7227589574e-05 -4577073269.25 +UniRef50_K4NFJ8 2.31586496233e-06 2.68657523081e-05 9911090782.49 +UniRef50_V6QFW8 0.000739194987939 0.000258283992391 -1.94149670344e+11 +UniRef50_UPI0004642118 tRNA 2 thiouridylase 4.3859031515e-08 1.00117372046e-07 22712182.4398 +UniRef50_D6M1S6 Peptide ABC transporter, permease 4.57700434745e-06 5.74972321476e-07 -1615669439.34 +UniRef50_W8ZM57 7.13607219438e-07 4.67764911256e-08 -269207747.953 +UniRef50_UPI00037A84FF XRE family transcriptional regulator 1.88763688208e-07 5.16613577508e-07 132357023.481 +UniRef50_A3PI40 Flagellar motor switch protein FliG 1.66908965294e-05 1.74399629052e-06 -6034247045.54 +UniRef50_UPI000027FA94 50S ribosomal protein L18 7.65640117502e-07 2.35728166702e-06 642565225.179 +UniRef50_P77357 p aminobenzoyl glutamate hydrolase subunit A 1.97792310116e-05 5.0248755358e-06 -5956514361.88 +UniRef50_A0A011PVU6 1.77231219462e-06 4.38058181897e-07 -538654718.073 +UniRef50_X4ZFB4 7.05121689328e-05 5.92714909642e-05 -4537999634.55 +UniRef50_B7V5T6 Cardiolipin synthase A 1.20427769058e-06 7.22241353194e-06 2429595289.99 +UniRef50_R1FZF8 2.39815923878e-08 9.23439108903e-08 27598706.8794 +UniRef50_A3ATB7 4.66104320255e-09 7.65585110073e-09 1209040.69892 +UniRef50_R4Y9R8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 7.7294752871e-05 4.85066919433e-05 -11622093465.7 +UniRef50_P0C0R2 HTH type transcriptional regulator SarS 0.000113330259086 1.47585562656e-05 -39794606039.4 +UniRef50_A3M5V1 Porin for benzoate transport 2.12070780251e-06 8.32904083046e-05 32769204156.9 +UniRef50_UPI000376439F hypothetical protein 3.27130201036e-06 2.03710650475e-07 -1238424275.57 +UniRef50_A8AHA1 Vitamin B12 import ATP binding protein BtuD 2.99849454437e-05 2.37202172853e-06 -11147676152.5 +UniRef50_A7X2A9 Peptide methionine sulfoxide reductase MsrB 5.52539110143e-05 6.93626983989e-07 -22026656193.0 +UniRef50_G0DUV4 3.22637597309e-06 2.61280952324e-05 9245705100.68 +UniRef50_X5PRY3 1.95708085028e-06 9.82495680869e-07 -393451992.396 +UniRef50_G5RW92 Putative two component response regulator and GGDEF family protein YeaJ 1.22410701972e-08 4.50862218066e-08 13259990.76 +UniRef50_P21880 Dihydrolipoyl dehydrogenase 0.000211868576991 3.81327038302e-05 -70139303974.0 +UniRef50_E1IJ03 2.90821435395e-06 7.10389997931e-07 -887288662.863 +UniRef50_UPI0003A0EB32 3 ketoacyl CoA thiolase 3.71770127718e-08 9.43197350437e-08 23069218.2012 +UniRef50_F5N2M6 5.58916685314e-07 6.62816605663e-07 41945672.8403 +UniRef50_UPI00034B4804 DNA methyltransferase 1.03074374295e-06 2.98264133943e-06 788005012.176 +UniRef50_W8SRR9 MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr 2.16016722841e-05 1.00489860424e-05 -4663961203.18 +UniRef50_Z2DE82 Biofilm formation protein PelB 7.38238569663e-08 9.1667092666e-08 7203533.21309 +UniRef50_UPI0004658778 phosphoserine phosphatase 4.69875833353e-08 1.10074501252e-07 25468962.9265 +UniRef50_Q8Y3B0 Peptide deformylase 1 9.0855523862e-06 0.000189631901863 72888776836.7 +UniRef50_UPI0002E0BEDB hypothetical protein 1.7760808452e-07 1.5597211847e-06 557976018.978 +UniRef50_M5Q4Y7 2.89246005691e-07 1.09609907984e-06 325736487.235 +UniRef50_P77425 Allantoate amidohydrolase 3.76138962292e-05 1.13493120803e-05 -10603334923.6 +UniRef50_P54161 5 3 exonuclease 1.14458439327e-07 2.30753040488e-05 9269575133.82 +UniRef50_B1HWM5 7.98241554919e-08 3.98464379417e-05 16054269976.7 +UniRef50_Q9PII5 Diaminopimelate decarboxylase 1.14027009308e-07 1.22933098996e-06 450261903.307 +UniRef50_H8GZA7 2.26447684417e-06 0.000130842386823 51908480086.9 +UniRef50_Q4QLY5 Glycine tRNA ligase beta subunit 3.82498002463e-05 7.56874595285e-06 -12386318117.1 +UniRef50_P52007 Protein YecM 5.07305819682e-05 9.40831981157e-06 -16682304313.8 +UniRef50_UPI0003ADBF76 PREDICTED 1.26588215871e-06 3.17782038419e-07 -382759653.058 +UniRef50_C1D104 1.8874299443e-06 0.000384699961574 1.54546116657e+11 +UniRef50_A0PTP8 Aminomethyltransferase 7.11464589601e-08 1.13745332077e-07 17197687.8242 +UniRef50_UPI00037044B2 hypothetical protein 8.48581228785e-08 7.96061611544e-08 -2120281.39684 +UniRef50_A3QF48 Adenylate kinase 9.04088315146e-08 3.00943215498e-07 84995314.3614 +UniRef50_UPI000465597A phosphate starvation inducible E 4.14509753184e-07 3.31811406148e-07 -33386337.5213 +UniRef50_A4WT80 NADH quinone oxidoreductase subunit N 5.91907291573e-07 8.2773071598e-07 95204810.3119 +UniRef50_I0ELD1 9.45290456222e-07 6.7449100513e-06 2341377599.87 +UniRef50_UPI000395686C 30S ribosomal protein S15 3.42145810872e-06 8.81804465431e-06 2178668212.02 +UniRef50_Q2KU87 Phosphoheptose isomerase 1.05189883984e-07 1.62116606768e-07 22982016.5573 +UniRef50_B0VBV4 1.8718313497e-06 5.58632761365e-05 21797008810.0 +UniRef50_Q9RTX1 9.58086266163e-07 0.000236445439968 95069134444.3 +UniRef50_UPI0004648F0C mechanosensitive ion channel protein MscL 4.08186592693e-06 9.56309713016e-07 -1261825398.44 +UniRef50_A5W5N5 Fatty acid cistrans isomerase 5.9177584712e-06 2.7358788728e-06 -1284563839.93 +UniRef50_P48591 Ribonucleoside diphosphate reductase large subunit 2.46591553521e-08 8.3125960094e-07 325634497.984 +UniRef50_D2ASS3 7.91214937858e-06 0.000257388377059 1.00716614532e+11 +UniRef50_Q8CR16 0.00010511605922 4.41836764752e-05 -24599150638.5 +UniRef50_L0RET5 3.25170106831e-07 8.35133745445e-07 205878578.866 +UniRef50_A1U1J0 6.99467051318e-08 9.23839939314e-08 9058208.82489 +UniRef50_U3H8E5 7.29893643187e-09 6.00374000749e-09 -522886.69037 +UniRef50_K7S6P7 DEAD DEAH box helicase 7.85338395664e-07 0.000288323371967 1.16082632641e+11 +UniRef50_Q8D1U5 Protein NrdI 2.07799648781e-07 6.39510001023e-07 174286766.882 +UniRef50_M9VHZ8 2.28779387182e-06 8.47562781822e-06 2498104497.42 +UniRef50_UPI0002000914 non ribosomal peptide synthetase like protein 7.7798209129e-07 1.38315656511e-06 244316361.407 +UniRef50_UPI0003B35CAD hypothetical protein 3.70378817718e-07 6.51042342623e-07 113307309.133 +UniRef50_B4SCX8 Phosphoribosyl AMP cyclohydrolase 1.38213868875e-07 6.16540771858e-07 193106440.465 +UniRef50_P37685 Aldehyde dehydrogenase B 4.71161083383e-05 8.544838004e-05 15475208475.8 +UniRef50_A0R979 DNA topoisomerase 3 0.000134837050977 6.02666265254e-05 -30104995433.1 +UniRef50_Q8RH06 3.48280132548e-06 3.11430097992e-06 -148768111.51 +UniRef50_O34514 o succinylbenzoate synthase 4.61700594718e-07 2.27650642377e-05 9004141595.73 +UniRef50_UPI000382F305 hypothetical protein, partial 8.12819209331e-07 5.14264392006e-07 -120530243.434 +UniRef50_P64176 Macrolide export protein MacA 2.51264096071e-05 6.36039558701e-06 -7576070144.8 +UniRef50_Q5ZZU2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.58356009293e-07 1.39532238939e-07 -7599387.08555 +UniRef50_UPI00036CA565 50S ribosomal protein L4 1.35508233708e-07 1.5597597618e-06 574987819.422 +UniRef50_B9ADD3 4.88128433862e-06 6.13114266848e-06 504583145.251 +UniRef50_UPI00037ABBDF hypothetical protein 2.3662529626e-07 9.34364467829e-07 281685865.785 +UniRef50_A0QSU4 2.64870866007e-06 5.51275732244e-05 21186361612.7 +UniRef50_UPI000369A760 hypothetical protein, partial 6.32086040011e-07 1.94475906743e-07 -176668580.881 +UniRef50_W4HGC6 5.45518734675e-08 1.21290005298e-07 26943002.7889 +UniRef50_R5HWX2 Cys Met metabolism PLP dependent enzyme 4.02431200716e-06 2.57612717393e-05 8775477386.34 +UniRef50_F2JHX4 ABC type transporter, periplasmic subunit 1.11134245983e-06 6.50174786569e-06 2176172810.06 +UniRef50_Q1J2D3 Permease YjgP YjgQ 1.07750520127e-06 0.00012544677399 50209399992.7 +UniRef50_S9QS42 6.44134353292e-08 4.13556428956e-07 140953310.994 +UniRef50_B2V2J6 Sporulation protein YqfD 1.00662930362e-06 2.02779999997e-05 7780088836.33 +UniRef50_Q9RW17 5.62017339689e-06 0.00064927124305 2.59849835306e+11 +UniRef50_UPI0002489F97 hemolysin type calcium binding region, partial 5.471271286e-07 1.2017202591e-07 -172367014.284 +UniRef50_UPI00045EBAA8 surfeit 1 2.17623619606e-07 4.06264267287e-07 76156544.3499 +UniRef50_U2Z2J1 1.41032048053e-08 1.17072917654e-08 -967259.495367 +UniRef50_A0RAR3 1.93211698514e-07 1.31641919103e-06 453452648.036 +UniRef50_UPI000367CE0F hypothetical protein, partial 5.12754443347e-07 5.69996666334e-07 23109387.8609 +UniRef50_G2L3N1 2.12915152782e-05 3.73031627616e-06 -7089671537.25 +UniRef50_Q9ZJL8 ATP dependent Clp protease ATP binding subunit ClpX 8.49555863898e-07 3.75746149196e-05 14826357007.9 +UniRef50_S9Z4U8 5.3143967059e-07 1.879604501e-07 -138666776.276 +UniRef50_A6LUE7 8.83734169502e-06 9.90110784359e-06 429455448.056 +UniRef50_W8SMD0 Flagellar protein FlaF 1.01999844656e-06 6.88660170806e-07 -133765327.9 +UniRef50_B9UQU3 PI 2a backbone protein 2.49279997828e-06 8.4255836002e-07 -666222792.033 +UniRef50_UPI000476AC5C hypothetical protein 3.79524603294e-07 4.5218090573e-07 29332240.8865 +UniRef50_Q5HQH1 Adapter protein MecA 0.000228932416539 7.22435550387e-05 -63257216176.1 +UniRef50_Q8XHL9 Glycine tRNA ligase 3.52098439873e-06 1.43030494717e-05 4352851980.79 +UniRef50_F6FZF8 4.1918899485e-06 2.10439457392e-06 -842747499.167 +UniRef50_Q30RX5 Chemotaxis response regulator protein glutamate methylesterase 9.73473575703e-07 1.09862442536e-07 -348650412.16 +UniRef50_Q9HUK1 DNA topoisomerase 4 subunit A 5.77647555086e-06 5.21748489668e-05 18731592720.1 +UniRef50_Q6F9W4 LPS assembly protein LptD 2.48487335777e-06 8.90409248528e-05 34943740150.7 +UniRef50_UPI000378F2FD hypothetical protein 6.5307921523e-08 1.32152173655e-07 26985844.8569 +UniRef50_A4WSI7 4.16400641365e-05 1.33436256722e-05 -11423619444.4 +UniRef50_P9WNM4 Bifunctional enzyme CysN CysC 3.14446534612e-08 4.95579117036e-07 187376778.516 +UniRef50_P73450 Nitrate transport ATP binding protein NrtC 2.10282309429e-07 3.6045148364e-08 -70341680.0523 +UniRef50_V9VLZ2 Cell wall shape determining protein 9.18935409407e-05 2.68558176636e-05 -26256526989.6 +UniRef50_A0A024J9B5 Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit 3.35192986085e-07 4.99821955176e-07 66462735.0467 +UniRef50_N6YLX8 Putative metal dependent RNase 8.45071246435e-07 3.75979763788e-07 -189377987.944 +UniRef50_G9WG62 ABC transporterpermease protein 0.000153078668516 3.26741779454e-05 -48608770372.8 +UniRef50_R5LJ16 Putative phage terminase large subunit 1.65055381936e-07 1.1859735235e-07 -18755676.648 +UniRef50_B7IFM5 Ribose phosphate pyrophosphokinase 1.12079917295e-06 6.46640619433e-07 -191423626.635 +UniRef50_B9E484 1.36315365789e-05 5.47579692773e-06 -3292572179.36 +UniRef50_UPI00034A1580 hypothetical protein 1.18303120535e-07 2.43131705021e-07 50394831.376 +UniRef50_H9KE53 1.43744657801e-07 1.01731281856e-07 -16961315.4311 +UniRef50_P0A9K2 Protein PhoH 2.17204459347e-05 4.7889195437e-06 -6835464977.24 +UniRef50_A4VGY1 Uroporphyrin III C methyltransferase, putative 2.71809248739e-06 1.62858477137e-06 -439847634.72 +UniRef50_C1C967 N anthranilate isomerase 7.27905669673e-05 5.92385942309e-05 -5471097695.09 +UniRef50_UPI0003B66D36 hypothetical protein, partial 4.03255982831e-07 5.70835912348e-07 67654073.983 +UniRef50_N8TNI2 1.62379728052e-05 8.35066260107e-05 27157180778.3 +UniRef50_Q6A9Q4 UDP N acetylmuramoylalanine D glutamate ligase 1.85201372824e-06 4.86060792734e-05 18875189997.5 +UniRef50_UPI00037E4DB6 hypothetical protein 2.18520034376e-07 2.09396069493e-07 -3683456.58691 +UniRef50_UPI0003607BC8 hypothetical protein 4.05066145205e-07 1.523891922e-07 -102008786.623 +UniRef50_B9KSY4 8.05241181623e-05 1.14932886837e-05 -27868592964.0 +UniRef50_UPI0003B3F32A molecular chaperone DnaK 1.40668500281e-07 2.79341150532e-08 -45512254.723 +UniRef50_E8SJW5 Membrane protein, putative 0.000113906752525 1.94342040142e-05 -38139727142.3 +UniRef50_A9D6B9 1.51666587333e-07 1.93203151693e-07 16768820.7431 +UniRef50_UPI00035DC5BA MULTISPECIES 5.27872907138e-08 9.04177534547e-08 15191879.5862 +UniRef50_UPI0002630664 dTDP 4 dehydrorhamnose reductase 1.27817555832e-07 1.46852950704e-07 7684822.50039 +UniRef50_E3EZ66 2.20428722519e-08 1.58423616913e-08 -2503222.20214 +UniRef50_UPI000471B278 MFS transporter 9.27278795047e-08 7.750209519e-08 -6146835.96923 +UniRef50_A8I9B9 Enoyl [acyl carrier protein] reductase [NADH] 3.43762479255e-05 4.68756674913e-06 -11985684912.0 +UniRef50_B0SHV0 4.44469687498e-05 4.22817535233e-06 -16236820434.7 +UniRef50_A1B214 Cupin 2, conserved barrel domain protein 0.000145335169199 2.15723238787e-05 -49964579396.6 +UniRef50_Q83MD7 Vitamin B12 binding protein 1.8578542311e-05 5.68565053978e-06 -5205018621.61 +UniRef50_UPI0003C7EBB2 aminodeoxychorismate synthase 4.48722221794e-08 5.9761584313e-08 6011018.20635 +UniRef50_A1TT41 Non canonical purine NTP pyrophosphatase 9.65486505716e-07 1.52117039665e-07 -328367234.611 +UniRef50_R4ZCR7 MFS transporter 1.10483704055e-06 1.42321303707e-06 128532296.708 +UniRef50_F8FR25 0.000229717920433 5.7390990122e-05 -69570496455.8 +UniRef50_UPI00037A465E hypothetical protein 3.29121339423e-08 5.61358938868e-08 9375716.87718 +UniRef50_I0C665 RsbU 0.000224370329922 5.916366424e-05 -66695958249.6 +UniRef50_D6B3Y8 FscRII 2.79982231076e-06 5.78992362705e-06 1207140594.06 +UniRef50_UPI000237CE2F malto oligosyltrehalose synthase 2.68636393645e-08 1.25425331759e-06 495512274.867 +UniRef50_D9SLZ7 Methyltransferase type 11 1.93914035367e-06 7.98082328577e-06 2439101539.48 +UniRef50_A5IP44 Acyl CoA dehydrogenase like protein 6.44614401885e-05 2.27368634027e-05 -16844723666.6 +UniRef50_G8VEA6 1.09039659282e-06 4.52995645857e-05 17847783626.2 +UniRef50_B2S968 Shikimate dehydrogenase 4.83467752864e-07 3.29684136972e-07 -62084332.8728 +UniRef50_Q985A5 GTPase Era 3.54482028004e-05 5.98830737824e-06 -11893321295.5 +UniRef50_P0AEP8 Glyoxylate carboligase 2.26201967424e-05 1.83034898026e-05 -1742707563.55 +UniRef50_UPI000362A221 50S ribosomal protein L20 1.22305691523e-07 3.53719256442e-07 93424495.9216 +UniRef50_Q9KDS9 Biotin carboxylase 6.38164224375e-06 6.48661460837e-08 -2550160026.19 +UniRef50_V5XTD8 Periplasmic ribose binding protein 9.91023531941e-06 2.73121725073e-05 7025375588.54 +UniRef50_Y2QRV2 0.000397186898838 6.56567195954e-05 -1.33842801693e+11 +UniRef50_Q8CT45 3.05297248179e-05 8.5042492089e-07 -11981897574.4 +UniRef50_A5GF42 Dihydroorotase 4.18782441897e-08 1.58033532722e-07 46893315.366 +UniRef50_B0REY1 3 isopropylmalate dehydratase small subunit 1.16054085059e-07 2.27488793147e-05 9137149281.19 +UniRef50_F3H6D0 Acriflavin resistance protein 7.67357747733e-06 2.01226434568e-06 -2285541583.37 +UniRef50_M1N4V8 Signal transduction histidine kinase 1.00484291618e-06 3.30894831765e-06 930195625.126 +UniRef50_Q2YVN2 2.92164706521e-05 4.36428628368e-06 -10033131800.1 +UniRef50_Q46836 Leader peptidase PppA 3.65865134071e-05 1.08797187089e-05 -10378148477.5 +UniRef50_S9RYR7 Putative signal transduction protein 2.44991505619e-06 1.91662965974e-06 -215293858.695 +UniRef50_UPI0003706081 hypothetical protein 3.56502111641e-07 4.1149957771e-05 16468818641.7 +UniRef50_UPI000289FF7D transporter 1.7741493035e-06 6.47335387361e-07 -454908605.507 +UniRef50_UPI000371D807 hypothetical protein 2.78606246914e-07 1.41544340624e-06 458955111.782 +UniRef50_Q73CC7 3.35429500157e-07 5.2032740856e-06 1965208594.31 +UniRef50_M4MLZ6 2.08734789344e-06 8.78336770246e-07 -488092626.667 +UniRef50_Q8CM57 Degenerate transposase 2.91087113737e-06 3.08122633281e-07 -1050761510.42 +UniRef50_UPI000363DABC hypothetical protein 3.67877302268e-06 6.2726447897e-07 -1231931445.32 +UniRef50_UPI0003793433 hypothetical protein 1.80434264629e-07 3.09630487953e-08 -60343364.0503 +UniRef50_X6KX92 2.73404061406e-05 5.2376873415e-06 -8923138810.06 +UniRef50_A8LNJ7 1.8814459526e-06 7.12891990516e-07 -471759574.261 +UniRef50_UPI0003663A62 30S ribosomal protein S17 8.88165428637e-07 2.88268292986e-06 805211190.725 +UniRef50_Q5HKF0 ATP dependent dethiobiotin synthetase BioD 9.59930863855e-05 5.65770607504e-05 -15912733237.9 +UniRef50_C4RLU4 Feruloyl esterase 5.47216181878e-06 1.42968129508e-06 -1631998994.23 +UniRef50_A6M1U5 Methyl accepting chemotaxis sensory transducer 4.78830310969e-06 1.37857108573e-05 3632363918.32 +UniRef50_Q72KS4 Lon protease 1 6.25254696945e-08 1.06588458217e-06 405068386.309 +UniRef50_P37093 Type II secretion system protein E 3.67903452528e-05 0.000116904005164 32342867611.3 +UniRef50_Q897T7 Transcriptional regulatory protein 1.34656119687e-06 2.25146153897e-06 365319372.482 +UniRef50_Q8Y5E4 Diadenylate cyclase 0.000218916624843 0.000120185736106 -39858871347.4 +UniRef50_V5SSA5 1.00901552059e-05 1.53677383443e-06 -3453105021.46 +UniRef50_Q9KNV7 Tryptophan tRNA ligase 7.37278118224e-05 5.16879867676e-05 -8897747833.69 +UniRef50_A7G9R9 4.2589427e-07 2.26525643877e-07 -80487560.894 +UniRef50_P76445 Inner membrane protein YeiU 4.93739621862e-05 1.43003707713e-05 -14159639255.6 +UniRef50_Q03RR1 Bifunctional protein FolD 5.50890689464e-08 3.16153426798e-08 -9476631.34884 +UniRef50_Q8CQA9 Integral membrane protein LmrP 0.000205803565841 5.22429252534e-05 -61994315006.3 +UniRef50_A0A022FNV0 LysR family transcriptional regulator 5.75000007597e-07 1.42048841905e-07 -174787698.498 +UniRef50_F8LV80 IS861, transposase OrfB 2.56344357143e-06 3.8387094787e-07 -879920214.495 +UniRef50_B9E9D4 Respiratory nitrate reductase delta chain 9.45605383046e-05 4.0477736899e-05 -21833890598.0 +UniRef50_M9VLK0 Endonuclease III 6.40301204992e-06 5.43209645913e-05 19345065460.4 +UniRef50_Q5WAN2 GntR family transcriptional regulator 6.0586971003e-06 3.76152569634e-05 12739770459.3 +UniRef50_I0C1S4 Carboxylesterase 0.000257218159013 7.71209194544e-05 -72707465651.6 +UniRef50_Q161I1 1.66116858309e-06 5.78718497574e-07 -436998382.681 +UniRef50_H8GVV6 Glutathione regulated potassium efflux system protein KefB, putative 6.56878170843e-07 9.04746496659e-05 36260536540.6 +UniRef50_C7ZXI9 Mn2 and Fe2 transporter 0.000191542607107 3.58632559457e-05 -62849664464.2 +UniRef50_Q9RUS5 Major facilitator family protein 9.10335985978e-07 0.000141888842712 56914753166.1 +UniRef50_B7JGF8 Enterotoxin 1.67205367541e-07 7.45041891486e-06 2940322684.13 +UniRef50_D5T2X9 1.48228383511e-06 5.20222868998e-07 -388395817.835 +UniRef50_UPI0004413622 P loop containing nucleoside triphosphate hydrolase protein 1.37844864014e-08 4.78025689588e-09 -3635117.9457 +UniRef50_Q7CQY4 Chitoporin 1.40175613114e-05 2.03901062277e-06 -4835887906.33 +UniRef50_O31645 PTS system mannose specific EIIBCA component 0.000103999745738 4.32243540091e-05 -24535771438.9 +UniRef50_M2PRH7 DNA topology modulation protein 1.56254310224e-07 3.56356982486e-06 1375575085.72 +UniRef50_UPI0004680367 hemolysin 7.31133660879e-08 1.27029921056e-07 21766774.8712 +UniRef50_M2JNM4 Cellobiose phosphotransferase system IIC component 9.98640182185e-07 1.16678526318e-05 4307291991.86 +UniRef50_A6LW23 L asparaginase, type II 8.16905567068e-06 5.75803175682e-06 -973359940.616 +UniRef50_Q2YUT2 0.000104591965444 1.56914325686e-05 -35890236054.0 +UniRef50_UPI0003697307 ATP dependent Clp protease adaptor protein ClpS 6.18276708037e-06 4.58068884413e-06 -646778643.681 +UniRef50_D3FAE3 Plectin 1.82502582427e-06 1.75958702661e-06 -26418445.6397 +UniRef50_UPI000466A47B peptide ABC transporter ATP binding protein 1.04013050199e-07 3.92156841864e-07 116327184.617 +UniRef50_UPI00047933C3 peptide permease BMEII0860 1.51697761182e-07 5.41008384753e-07 157169476.114 +UniRef50_A1WIM3 Urease subunit alpha 0.000287686207112 0.000472948285247 74792574364.4 +UniRef50_UPI000476A297 nitrogen regulatory protein 1.61537033214e-07 2.30484413805e-07 27834903.6241 +UniRef50_D8JEK3 1.44815596745e-06 7.60531777493e-05 30118962799.9 +UniRef50_P31133 Putrescine binding periplasmic protein 1.99631077004e-05 3.42219856026e-06 -6677767999.64 +UniRef50_V8G5F1 Cell wall binding protein 8.10775824679e-06 1.45335553833e-05 2594173157.41 +UniRef50_UPI0003B2E824 4 alpha glucanotransferase 8.4055187984e-08 4.63652596055e-06 1837888315.99 +UniRef50_B2TBH4 Major facilitator superfamily MFS_1 8.35113341018e-06 1.04840558383e-05 861086958.134 +UniRef50_M1E1G1 LOV protein 5.68373790029e-06 3.96398262003e-06 -694286310.411 +UniRef50_UPI00047D2208 hypothetical protein 1.13242911979e-05 2.81160496261e-06 -3436675895.59 +UniRef50_U4PPL6 0.000150330978336 2.27362625767e-05 -51511552515.1 +UniRef50_B0V7I3 1.28516843625e-05 6.28685166454e-05 20192408968.2 +UniRef50_UPI0003616A07 MULTISPECIES 1.40459180816e-06 4.60301497026e-07 -381221586.35 +UniRef50_P52612 Flagellum specific ATP synthase 3.60782999344e-05 4.84137381696e-06 -12610730393.8 +UniRef50_Q7WQL9 Glutamate 5 kinase 2.65089036265e-06 8.31752583732e-05 32508675511.0 +UniRef50_I7BYL0 8.19357388814e-08 9.08091754472e-06 3632999384.94 +UniRef50_A7HIP1 LigA 4.91029858384e-06 5.77620184029e-06 349575770.457 +UniRef50_E2XUR6 Amino acid ABC transporter, permease protein 8.38445631845e-06 5.39986048301e-05 18414991502.7 +UniRef50_Q9RRW1 Ribonucleoside diphosphate reductase 1.90794174278e-06 0.000301075807813 1.20777738735e+11 +UniRef50_UPI0003671810 hypothetical protein 2.43934375552e-07 2.78321809817e-07 13882629.1941 +UniRef50_M1LPJ1 Transcriptional regulator, RpiR family 3.4933983881e-06 4.54333392607e-06 423871860.836 +UniRef50_Q2RV04 GTPase Obg 4.09545719957e-05 6.0408242017e-06 -14095108424.3 +UniRef50_UPI0002887BFA HAD superfamily hydrolase 6.63866576088e-07 1.82443965008e-06 468537591.803 +UniRef50_Q8FCW0 Phosphoglycolate phosphatase 2.12946742435e-05 1.74204522803e-05 -1564070948.59 +UniRef50_B9KNX2 Transcriptional regulator, ArsR family 1.25481069959e-05 4.92194508663e-06 -3078775146.3 +UniRef50_UPI00047A420C hypothetical protein 1.38019373523e-07 9.63401699748e-08 -16826405.9338 +UniRef50_B1KX53 Putative ribosome biogenesis GTPase RsgA 1.89058091245e-06 1.67472460783e-05 5997818039.22 +UniRef50_UPI00035FFD13 hypothetical protein 1.63237315015e-06 4.13073941763e-07 -492246052.911 +UniRef50_D6SI32 3.90849669984e-06 1.62694473932e-07 -1512226324.76 +UniRef50_R7PWI6 3.76933097395e-05 2.53829154983e-06 -14192512243.8 +UniRef50_UPI00040A8670 beta hexosaminidase 6.14562275701e-08 2.63722155292e-07 81657237.1034 +UniRef50_A3ZZL8 8.50043046296e-08 3.64219781734e-07 112722714.466 +UniRef50_UPI0004764961 molecular chaperone GroEL 2.92488264445e-07 9.06408376429e-08 -81488283.1464 +UniRef50_Q88ND5 Alginate biosynthesis protein AlgA 2.5468799188e-07 2.93741622563e-07 15766429.9487 +UniRef50_UPI000472B134 3 oxoacyl ACP reductase 1.11663287663e-07 1.34790609291e-07 9336783.54537 +UniRef50_D7FE80 Sialic acid binding adhesin SabA 7.64657641136e-07 2.8184570463e-05 11069755286.4 +UniRef50_P07102 Periplasmic AppA protein 5.14775097718e-05 5.8609691446e-06 -18415957229.1 +UniRef50_K9BV07 2.1679158317e-06 0.000119538457782 47383928083.7 +UniRef50_A6TE36 Undecaprenyl diphosphatase 5.18134590673e-05 1.63013729954e-07 -20851918604.9 +UniRef50_UPI000288E151 ABC transporter 7.5515023376e-08 2.33972408802e-07 63971190.9873 +UniRef50_R8AGJ1 4.06232114679e-05 8.64420507871e-07 -16051111805.8 +UniRef50_Q9HQU4 Inosine 5 monophosphate dehydrogenase 2.56934046596e-05 8.33345775886e-06 -7008423594.32 +UniRef50_UPI0001758483 PREDICTED 1.5605983435e-08 1.6052811522e-08 180389.981919 +UniRef50_P75843 2.50472618045e-05 4.99894598512e-06 -8093751116.79 +UniRef50_UPI00047BEFD1 nucleotidyl transferase 3.16491338201e-07 5.29431667504e-08 -106397630.915 +UniRef50_H2HGS8 Phage associated protein 4.11908735051e-07 5.38977115361e-07 51299064.4355 +UniRef50_M9SEQ2 2.56690416185e-06 2.87646141427e-06 124972061.497 +UniRef50_P75849 2.2881093597e-05 0.000160981301435 55752748584.3 +UniRef50_M4X4D0 ATP dependent RNA helicase RhlE 7.53966688803e-07 1.9589980848e-06 486485961.963 +UniRef50_K9SGS9 ATPase associated with various cellular activities AAA_5 3.06826554659e-06 1.29169752968e-05 3976044983.42 +UniRef50_Q83BB6 RNA polymerase sigma factor RpoD 3.17366191555e-05 5.23293986209e-06 -10699860567.5 +UniRef50_H7CRL6 8.32851368604e-06 3.942881016e-05 12555571330.1 +UniRef50_H7E757 RHS repeat associated core domain protein 8.91874136272e-06 2.29393947457e-06 -2674513817.71 +UniRef50_B5ZPH5 2.11331379804e-06 2.7464720449e-07 -742292266.792 +UniRef50_W5XAZ0 OmpR family two component response regulator 1.46083727988e-07 2.9775817522e-07 61232835.6023 +UniRef50_J0WVH5 2.37034264883e-07 1.48433152947e-07 -35769356.1465 +UniRef50_C0DVM5 4.44723547594e-07 2.70130320718e-07 -70485428.1897 +UniRef50_P37545 0.00026878234352 6.4674087178e-05 -82401007775.2 +UniRef50_UPI00040973E2 hypothetical protein 1.26498779992e-07 1.18028896456e-07 -3419395.92064 +UniRef50_Q161C9 1.08362703757e-05 1.18117786705e-05 393824669.444 +UniRef50_S7VZD9 Excinuclease ABC 4.52867357689e-08 7.64508874705e-07 290358803.337 +UniRef50_G8SMI0 2.43986431371e-06 6.37939377317e-07 -727459208.926 +UniRef50_A0QP90 Glucose 6 phosphate 1 dehydrogenase 0.000100977095399 3.04653127692e-05 -28466471924.5 +UniRef50_Q5HJ36 2.70637297849e-05 9.04030730184e-06 -7276276828.69 +UniRef50_T0V0U2 Cell division initiation protein DivIVA 7.18417671992e-05 2.24228769949e-05 -19951012413.5 +UniRef50_UPI000289A6DA transposase 6.0957187001e-07 1.5156308984e-06 365787148.356 +UniRef50_C5CWI4 ABC transporter related 1.42868891815e-05 6.06903668809e-05 18733653382.0 +UniRef50_A7GTX6 Pseudouridine synthase 7.29480451685e-05 1.75269365183e-05 -22374181655.6 +UniRef50_Q89AP7 Acetolactate synthase large subunit 1.08658124755e-05 0.000118663381865 43519201587.7 +UniRef50_UPI0003EE9416 peptide ABC transporter permease, partial 2.8923432937e-07 2.59579795167e-06 931188039.041 +UniRef50_L7WXH7 4.4028690051e-05 1.67160399168e-05 -11026452023.1 +UniRef50_Q2T6U3 Acetyltransferase, GNAT family 2.37930456555e-05 3.19361492506e-05 3287470848.46 +UniRef50_F9YYI3 Myo inositol 2 dehydrogenase 1.16388280223e-06 3.89773480368e-05 15265759938.6 +UniRef50_UPI0001FFEA7A ferredoxin 2.41194998913e-07 1.91653349854e-06 676354711.016 +UniRef50_A5UJI4 Predicted type I restriction modification enzyme, subunit S 4.67957837425e-06 1.40130584148e-05 3768040427.05 +UniRef50_Q2RN88 Shikimate dehydrogenase 5.56668886371e-07 4.67665148312e-07 -35931901.2531 +UniRef50_UPI00017449C1 permease YjgP YjgQ family protein 1.34816424593e-06 2.10940503716e-06 307322248.895 +UniRef50_UPI0003B4DD27 hypothetical protein 1.68808845918e-07 2.26102359946e-07 23130094.6836 +UniRef50_V7Z055 1.25704848161e-06 1.44820213097e-06 77171073.9657 +UniRef50_E6S2L0 Transporter, major facilitator family protein 1.57285828689e-06 4.42479496948e-05 17228458083.6 +UniRef50_UPI00046F82BE thioredoxin reductase, partial 9.36163414185e-07 1.31847423028e-06 154343567.939 +UniRef50_R5BF46 ATPase 4.671178724e-08 2.96508276916e-05 11951544874.0 +UniRef50_P0A9L8 Pyrroline 5 carboxylate reductase 2.27466506142e-05 3.16821157666e-05 3607356932.51 +UniRef50_A4XQZ9 3.89196050501e-06 9.55701308745e-07 -1185403869.49 +UniRef50_M0HKI8 1.69038771396e-06 1.05433118773e-06 -256783824.93 +UniRef50_A9VYY8 0.000132358777563 1.67601267052e-05 -46668593906.3 +UniRef50_UPI0003490FD2 hypothetical protein 3.3353456421e-06 1.85056727014e-06 -599423249.04 +UniRef50_F3LQG5 6.72271536642e-06 4.90831088969e-06 -732497352.503 +UniRef50_A5CX20 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.99971583594e-07 1.09236639091e-07 -36630810.5388 +UniRef50_UPI0002194206 amino acid transporter, partial 5.30347412955e-07 9.49391575034e-07 169173270.481 +UniRef50_M9REM3 1.8294959072e-06 0.000140868512624 56131757249.3 +UniRef50_UPI00037A4658 hypothetical protein 9.0978894321e-08 1.74109207959e-07 33560727.7393 +UniRef50_Q5HM80 0.0001259695944 8.76320340766e-06 -47317658327.6 +UniRef50_UPI000464EDC8 hypothetical protein 4.15322467193e-07 6.74947754923e-08 -140422307.465 +UniRef50_UPI000479E693 ribonuclease 1.25103696981e-07 7.10842663511e-08 -21808307.0382 +UniRef50_UPI00037CFC12 hypothetical protein 9.28493446813e-08 6.4782728919e-08 -11330837.1993 +UniRef50_UPI00037AC159 hypothetical protein 1.7501462148e-06 1.03454507633e-06 -288896961.014 +UniRef50_D3QFC7 4.03537440522e-05 0.000110977386727 28511631197.4 +UniRef50_Q49YE7 7.20175833756e-05 6.97046555765e-06 -26260319681.0 +UniRef50_UPI000441CD41 PREDICTED 3.35893330819e-07 3.59038039356e-07 9343802.8539 +UniRef50_W7VM91 Transcriptional regulator, LuxR family 1.01119463521e-06 1.60607955043e-06 240162340.333 +UniRef50_UPI0003B30FE2 DNA mismatch repair protein MutS 2.02197411948e-08 5.39539539351e-07 209655775.286 +UniRef50_Q3J221 Putative head portal protein 0.000120036240914 3.34527746578e-05 -34954807826.2 +UniRef50_K9ZYD1 NADH dehydrogenase, FAD containing subunit 1.05639735687e-06 0.000411445664379 1.65679183139e+11 +UniRef50_I0DPX6 3.64367227341e-08 1.14576477496e-07 31545977.88 +UniRef50_E2PCU1 FimV domain protein 5.3977977438e-07 1.43978941099e-05 5594690815.43 +UniRef50_X1C061 Marine sediment metagenome DNA, contig 1.83890501541e-07 3.81191636444e-07 79652889.3175 +UniRef50_S4XSY7 1.32534925002e-07 1.94230758481e-06 730627431.173 +UniRef50_UPI00035E4DB7 hypothetical protein 4.62902798619e-07 1.22885114361e-07 -137269311.621 +UniRef50_P0C0G1 Dihydropteroate synthase 2.70517267294e-05 4.38399903562e-05 6777628041.3 +UniRef50_T8S6T3 1.35019294347e-05 4.57855356899e-06 -3602476339.12 +UniRef50_Q8G3N6 Inosine 5 monophosphate dehydrogenase 2.06529276029e-06 7.91797129841e-05 31132037744.7 +UniRef50_E4R955 Peptidase C26 1.29535878096e-05 1.48122032997e-05 750345881.13 +UniRef50_C5BCZ7 Adenine phosphoribosyltransferase 3.80965449382e-07 5.42123738361e-07 65061578.8954 +UniRef50_Q9HTU7 UPF0178 protein PA5247 4.71366989714e-06 1.03017455301e-05 2255974706.43 +UniRef50_P50466 Aerotaxis receptor 2.60915513211e-05 4.00950713092e-06 -8914792216.74 +UniRef50_Q55F83 Enolase B 4.33153144371e-08 3.99357440055e-07 143738575.24 +UniRef50_P42064 Oligopeptide transport ATP binding protein AppD 1.90622272107e-07 0.000256275899957 1.03384769121e+11 +UniRef50_P44681 Ribosome binding ATPase YchF 0.000232535153528 0.00011621729977 -46958944942.7 +UniRef50_UPI000468F00D PEP synthetase regulatory protein 1.78353928699e-07 1.29245063724e-07 -19825851.4239 +UniRef50_UPI00046E1553 PREDICTED 9.36920863679e-07 1.22160061309e-06 114928708.251 +UniRef50_B3W746 PTS system, IID component 8.09427137532e-05 4.13135976654e-05 -15998760468.6 +UniRef50_Q92HL2 Transcription termination factor Rho 2.7179094229e-05 1.38619795747e-05 -5376282605.31 +UniRef50_UPI0002DB231A peptide ABC transporter ATP binding protein 5.45746799592e-07 1.06018118421e-06 207683473.89 +UniRef50_E8Q9V7 ABC transporter permease 2.91957199651e-06 6.60935098783e-06 1489609057.48 +UniRef50_O88958 Glucosamine 6 phosphate isomerase 1 1.05649075872e-07 9.73035413219e-08 -3369194.7091 +UniRef50_F2JYD9 Phenylalanine racemase 2.21941723168e-06 4.42104988728e-05 16952314947.0 +UniRef50_P77324 Putative xanthine dehydrogenase YagS FAD binding subunit 2.40827880373e-05 0.000165337041163 57026075371.6 +UniRef50_UPI0001744E5F methionine aminopeptidase 3.31219439428e-07 2.31237536079e-07 -40363921.2979 +UniRef50_Q4ZNV9 Histidinol dehydrogenase 1.162133287e-05 0.00012368122376 45239953081.8 +UniRef50_S4XFR3 2.6925980265e-06 5.38242793412e-05 20642487203.0 +UniRef50_A1V623 3.23554565342e-06 1.44618331822e-06 -722387532.665 +UniRef50_D4HFA9 2.41462252992e-06 6.14235102362e-05 23822612087.5 +UniRef50_U5L575 Oxidoreductase 7.43618489624e-05 2.96904898176e-05 -18034375866.0 +UniRef50_D6AVU9 Ribosome associated heat shock protein 2.87636788424e-06 5.52453054395e-06 1069095762.34 +UniRef50_O80448 Pyridoxal biosynthesis protein PDX1.1 0.000333515319106 8.04014973239e-05 -1.02185155909e+11 +UniRef50_Q58952 tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase 2.52705657621e-05 2.92392777421e-06 -9021611979.8 +UniRef50_G0HAL8 Glycerol dehydrogenase 5.11591409501e-05 1.39682788584e-05 -15014407409.6 +UniRef50_A5CSL0 LexA repressor 8.28552593836e-07 1.80794282587e-07 -261507979.14 +UniRef50_T8JJU2 ATP dependent helicase 2.10323039841e-05 2.76068164607e-06 -7376478155.87 +UniRef50_A5UM96 0.000128754910926 1.09330429036e-05 -47566133957.4 +UniRef50_P0A533 Cobyric acid synthase 7.76720141624e-07 4.30301992896e-05 17058248040.5 +UniRef50_I1F524 8.65901428226e-08 3.09363273491e-06 1213979994.99 +UniRef50_UPI000363B4C5 hypothetical protein 8.03517566738e-08 2.90491680591e-07 84836065.9921 +UniRef50_Q3IVV1 Periplasmic sensor signal transduction histidine kinase 5.49910638905e-05 1.65135156678e-06 -21533896417.0 +UniRef50_S5YP26 Adenylate cyclase 2.36015896168e-06 4.40942779127e-06 827314973.862 +UniRef50_Q6FF55 Putative Holliday junction resolvase 2.33482089301e-07 7.5905284963e-05 30549635417.6 +UniRef50_Q9RQQ0 Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR 0.000126941061623 2.86176555315e-05 -39694365603.0 +UniRef50_H4NAZ8 8.99621515052e-06 1.92853845235e-06 -2853307813.2 +UniRef50_P27375 Heat shock protein C 4.08378587983e-05 3.3331835299e-05 -3030273795.93 +UniRef50_K5NMC7 Chaperone usher secretion system usher protein 2.07536441043e-06 2.34638341635e-05 8634787705.37 +UniRef50_UPI00037905B5 hypothetical protein 7.97833275511e-08 1.47458699481e-06 563099356.639 +UniRef50_G8VR36 Anchored repeat type ABC transporter, permease subunit 3.46709752644e-06 4.92619480047e-05 18487943104.1 +UniRef50_D2N5X4 Transcription factor 7.94938010802e-05 2.98454288961e-05 -20043657104.8 +UniRef50_P77174 1.51442148193e-05 1.42496794622e-05 -361134900.845 +UniRef50_A9B437 DNA directed RNA polymerase subunit alpha 1.52074500618e-07 7.37153268068e-08 -31634560.0428 +UniRef50_P77171 2.49486460735e-05 3.09772767695e-06 -8821483897.63 +UniRef50_U8XP57 Chemotactic transducer PctC 2.59402037921e-06 3.06543118269e-06 190314326.226 +UniRef50_P57874 Ferrochelatase 7.59836359763e-05 3.36068047145e-05 -17108046802.6 +UniRef50_E1I5H5 4.88128433862e-06 6.49047703726e-06 649650839.456 +UniRef50_UPI000376F990 hypothetical protein 5.18707273652e-08 2.85377668922e-07 94269617.759 +UniRef50_R7GG89 Single strand binding protein Primosomal replication protein n 6.30043773094e-06 1.84187969737e-05 4892330335.31 +UniRef50_Q5HLD6 6.78118542849e-06 1.07387892798e-05 1597733240.03 +UniRef50_P61544 UPF0316 protein SA1727 0.00019160748111 2.25458274305e-05 -68252264210.0 +UniRef50_A6Q235 3 dehydroquinate dehydratase 0.000249522250532 6.56317858161e-05 -74238837195.6 +UniRef50_UPI00047D7B73 hypothetical protein 1.76175231887e-07 1.53180141885e-07 -9283400.01529 +UniRef50_Q03KQ7 tRNA and rRNA cytosine C5 methylase 2.42895725793e-05 2.42268091399e-05 -25338370.6798 +UniRef50_UPI00020D99AC biotin biosynthesis protein BioC 1.73362401872e-07 1.27198630162e-06 443527949.96 +UniRef50_D3SFX6 1.0446017013e-06 2.69899371775e-07 -312756837.096 +UniRef50_S6CA35 Truncated bacteriocin ABC transporter ATP binding and permease components 2.90223195251e-05 6.12163716228e-06 -9245286492.84 +UniRef50_A0A009WPV3 TonB dependent receptor family protein 3.73304000053e-06 7.23296101974e-05 27693277163.1 +UniRef50_P77433 1.85775633497e-05 1.16926576042e-05 -2779520936.75 +UniRef50_Q8CQR2 5.36645704519e-05 1.04229425363e-05 -17457175824.0 +UniRef50_G9YY14 9.20947074204e-08 1.52314126621e-06 577731056.7 +UniRef50_UPI00035DA196 hypothetical protein 3.24693159248e-08 1.0167924221e-07 27940896.5426 +UniRef50_B7V896 4.34889341953e-07 2.7685941112e-06 942145253.124 +UniRef50_P09622 Dihydrolipoyl dehydrogenase, mitochondrial 1.87073654482e-07 5.85826053817e-07 160981236.854 +UniRef50_S5XWD9 5.22748633442e-06 7.98638276788e-07 -1787980308.94 +UniRef50_P0AA83 Cytosine permease 3.60105503114e-05 5.04075776685e-06 -12502885292.3 +UniRef50_UPI000474B8BB hypothetical protein 4.32116017962e-07 2.43669720732e-07 -76078082.6879 +UniRef50_UPI000237A428 CBS domain containing protein 1.10591598297e-06 3.01825634286e-05 11738599384.4 +UniRef50_UPI0003B401D2 phosphoglycerate kinase 1.86446654747e-07 1.85246539133e-07 -484501.400446 +UniRef50_D4H9I9 RHS repeat associated core domain protein 1.15060639321e-06 7.21047355517e-05 28645052646.4 +UniRef50_Q893R0 Thiamine phosphate synthase 2.66956052078e-05 2.9000003783e-06 -9606577674.58 +UniRef50_Q9I484 Amino acid ABC transporter periplasmic binding protein 1.26404873217e-05 4.44667668252e-06 -3307941904.4 +UniRef50_P33634 2.70406881076e-05 7.72664195847e-06 -7797317440.39 +UniRef50_A1UT83 50S ribosomal protein L13 0.000149576815013 2.40122229045e-05 -50691966684.8 +UniRef50_J9YSG0 Phage infection protein 4.15711678886e-06 7.22929510835e-07 -1386423546.36 +UniRef50_UPI000465431D hypothetical protein 8.60111666093e-07 2.0880125924e-07 -262942003.724 +UniRef50_F6G2W0 Threonine synthase protein 3.63690982897e-07 4.01390958874e-07 15219942.9326 +UniRef50_B7N5W6 D serine dehydratase 4.2151599935e-05 5.89012295654e-05 6762031022.86 +UniRef50_I6XTA1 UPF0225 protein HMPREF9154_3085 2.18595178398e-07 4.14520600316e-07 79097497.1036 +UniRef50_UPI00046AD586 hypothetical protein 2.80778704674e-07 2.15250202293e-07 -26454660.5364 +UniRef50_F8KSY3 ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 5.17813427749e-07 4.32168989448e-05 17238144800.0 +UniRef50_I6RX31 5.29185965684e-06 6.71174329992e-06 573224450.643 +UniRef50_V4R4A7 ThiF domain containing protein 6.16764425151e-08 8.76543612882e-08 10487604.5936 +UniRef50_B7H056 Outer membrane protein oprM 4.15892670639e-06 6.5208038143e-05 24646275443.8 +UniRef50_A8AL69 3.2493052647e-06 2.2560683963e-06 -400981912.16 +UniRef50_G4QBM5 4.07985784691e-08 7.96242196527e-08 15674387.79 +UniRef50_Q3IV70 Polysaccharide export protein 2.09053076279e-05 5.59525779014e-06 -6180854994.96 +UniRef50_E8ZN21 Histone acetyltransferase HPA2 1.30317372447e-06 1.1365513536e-05 4062290060.7 +UniRef50_L5IBW3 Tat pathway signal sequence 2.36420737772e-06 2.84067837922e-07 -839777858.4 +UniRef50_U3SVL6 3.82102951589e-05 2.79612671275e-05 -4137658385.99 +UniRef50_UPI00042907AA hypothetical protein 1.65408186985e-07 2.83116435584e-07 47520264.4021 +UniRef50_A9E033 2.66113763799e-07 4.99995559935e-07 94420951.1525 +UniRef50_Q47N93 Tyrosine tRNA ligase 4.59070881346e-07 1.1954144084e-05 4640702112.34 +UniRef50_K0CJC2 4.05378140546e-08 1.09983850836e-07 28036217.2474 +UniRef50_V5AJL1 Competence protein ComM 8.43388398269e-08 4.57830610149e-07 150783210.938 +UniRef50_B8DJK7 Elongation factor P 1.21872224325e-07 1.28158356373e-06 468189698.974 +UniRef50_A1V9U1 Adenylosuccinate synthetase 1.50809083773e-06 8.73929786154e-05 34672783121.9 +UniRef50_A6M360 Aminotransferase class III 3.88150403275e-06 1.054727722e-05 2691054433.93 +UniRef50_Q55848 Ribose phosphate pyrophosphokinase 0.000240527528546 7.29803973056e-05 -67640832916.1 +UniRef50_UPI00046EC013 recombinase, partial 7.41869879029e-07 1.98443876556e-07 -219387745.785 +UniRef50_UPI000402DE31 hypothetical protein 2.04985903401e-07 2.62796293832e-07 23338764.0303 +UniRef50_Q97GM6 Endonuclease MutS2 4.48887423268e-06 8.09090988964e-06 1454185996.66 +UniRef50_A6LT80 Response regulator receiver protein 7.25005100276e-07 1.86322677009e-05 7229381658.69 +UniRef50_P0ABI6 Magnesium transport protein CorA 3.85483980292e-05 3.20266886493e-05 -2632894107.04 +UniRef50_P22033 Methylmalonyl CoA mutase, mitochondrial 3.12623195002e-06 6.54261376453e-05 25151236435.0 +UniRef50_A5WFD7 Crossover junction endodeoxyribonuclease RuvC 6.19797053389e-05 7.46793640847e-05 5127008078.02 +UniRef50_H5JT53 Gram negative pili assembly chaperone, N terminal domain protein 2.16117932552e-06 3.01343576728e-06 344066383.901 +UniRef50_N8X4K5 1.11878636851e-05 4.67992290136e-05 14376745183.7 +UniRef50_A0LCH8 Zinc import ATP binding protein ZnuC 1.10963540866e-07 7.03861160429e-08 -16381604.3421 +UniRef50_G7W6N5 NADH 2.64379894087e-06 1.91764094291e-06 -293158894.737 +UniRef50_P57388 2 oxoglutarate dehydrogenase E1 component 1.7055372447e-08 3.76014343838e-08 8294697.33242 +UniRef50_UPI0003755588 hypothetical protein 1.59418311262e-07 4.76436692517e-07 127984210.766 +UniRef50_A9IIR2 1.04886342216e-07 2.74979196223e-07 68668572.4367 +UniRef50_A3PG41 7.04041212852e-05 2.93321179288e-05 -16581271765.1 +UniRef50_P22675 Argininosuccinate lyase 2.46882077459e-07 1.94930948796e-07 -20973308.1533 +UniRef50_E6MV22 Factor H binding protein 5.05884119369e-06 1.76830190746e-05 5096535526.6 +UniRef50_UPI00038330C2 PREDICTED 2.90923340259e-07 1.17461829378e-07 -70028540.5548 +UniRef50_I0C482 Hydrolase 5.42477211719e-05 4.82954311376e-06 -19950724911.3 +UniRef50_UPI0003820085 hypothetical protein 4.6482006196e-08 8.04347128653e-08 13707124.329 +UniRef50_A4VR27 6.74760589924e-06 2.46636584598e-06 -1728389146.22 +UniRef50_UPI000367811C hypothetical protein, partial 8.90397007046e-08 7.42593749518e-08 -5966998.8814 +UniRef50_A8I0S8 1.14790956547e-05 6.23452623492e-07 -4382556305.42 +UniRef50_A1B9C6 Phospholipid glycerol acyltransferase 0.000131056947335 3.60849545665e-05 -38341358918.1 +UniRef50_P17725 Citrate lyase subunit beta 4.31907964295e-05 2.361291406e-05 -7903831360.2 +UniRef50_P15030 Fe dicitrate transport system permease protein FecC 3.13752312499e-05 6.61020193938e-06 -9997946233.73 +UniRef50_UPI0003B749DD NADH ubiquinone oxidoreductase subunit 6 7.73478858482e-07 1.2806688757e-07 -260560732.753 +UniRef50_UPI00046ADE6A hypothetical protein 1.76364757447e-07 2.28132530052e-07 20899285.0626 +UniRef50_UPI000366A0BF aminotransferase 3.10563681645e-08 6.07715864042e-08 11996398.2501 +UniRef50_UPI0004781051 peptide ABC transporter permease 1.64171882057e-07 6.25602066756e-07 186285027.948 +UniRef50_UPI0003B6312D NADH ubiquinone oxidoreductase subunit 6 2.45321334873e-07 3.02105531374e-07 22924476.9479 +UniRef50_P97056 Protein RnfH 1.07053601078e-05 2.10276964128e-06 -3472971336.99 +UniRef50_Q3K022 GTPase Era 3.24471379247e-06 8.35039960306e-06 2061228015.55 +UniRef50_D8TNI9 5.64543324124e-08 2.96499642505e-07 96909237.3717 +UniRef50_A4T3P6 1.97823096231e-07 2.72268959114e-07 30054708.3993 +UniRef50_E3A4U6 4.69469152046e-06 2.11770056443e-06 -1040362872.18 +UniRef50_A6SYV8 Glucosyl transferase 1.86874251907e-06 2.86252056733e-06 401200393.111 +UniRef50_T1BIJ5 Appr 1 p processing domain containing protein 1.29690891921e-07 8.67862416983e-07 298008903.051 +UniRef50_UPI000360BB74 hypothetical protein 2.01195915158e-07 1.71443052184e-07 -12011595.8913 +UniRef50_UPI0004785618 peptidase M20 3.95206948936e-08 6.69597071426e-07 254369565.113 +UniRef50_V5ST79 1.05169907464e-05 2.72007512169e-06 -3147710516.61 +UniRef50_P39263 2.91645478525e-05 1.16313155802e-05 -7078381025.28 +UniRef50_UPI0002492B0A uroporphyrinogen III C methyltransferase 2.82200684014e-07 1.47531548802e-07 -54367582.4612 +UniRef50_A7X534 Multidrug resistance efflux pump SepA 0.000100052463943 2.07756516888e-05 -32005021942.9 +UniRef50_P39267 1.78568059285e-05 5.77193359559e-06 -4878811258.85 +UniRef50_W8S776 6.58429782418e-07 1.02587991932e-06 148344129.388 +UniRef50_Q895P7 Phosphoprotein phosphatase 2C 4.90073031534e-06 2.2380741043e-05 7056894834.63 +UniRef50_UPI00036925F6 hypothetical protein 4.56643225518e-06 1.17398228933e-06 -1369573681.26 +UniRef50_UPI0004700B89 hypothetical protein 1.69810054724e-07 7.76914819468e-07 245095643.54 +UniRef50_UPI0003662012 hypothetical protein 3.21977529575e-08 1.19555419159e-07 35267361.8447 +UniRef50_F2TBG9 1.52732449296e-07 1.02509067208e-08 -57521547.1827 +UniRef50_UPI0003111719 FAD containing monooxygenase EthA 1.5247649647e-07 1.82930178055e-05 7323559135.92 +UniRef50_Q3JRY4 1.78786478154e-07 5.52933917216e-07 151047912.455 +UniRef50_Q8DW61 2.6004696474e-05 6.02687153456e-06 -8065293083.52 +UniRef50_Q8DW63 8.11014313031e-05 1.46225473079e-06 -32151312864.8 +UniRef50_Q8DW64 3.72374506195e-05 3.26875920868e-06 -13713577565.3 +UniRef50_Q8DW66 2.02575755741e-05 5.84785554841e-06 -5817380801.52 +UniRef50_Q8DW69 3.83356099134e-05 0.000131938518914 37788643000.4 +UniRef50_UPI00040DB40F hypothetical protein 1.16833610463e-07 6.90030695945e-08 -19309776.2954 +UniRef50_A0A011NIG9 Stalked cell differentiation controlling protein 6.34358451796e-08 9.89123971411e-08 14322319.3731 +UniRef50_W1FDX5 Phenylacetate CoA oxygenase, PaaJ subunit 9.55855876496e-07 1.32158695807e-06 147650125.656 +UniRef50_UPI000468F800 3 methylcrotonyl CoA carboxylase 4.29607608731e-08 2.238370927e-07 73021994.7608 +UniRef50_UPI00046E9B56 MULTISPECIES 7.76313591253e-08 1.58582466883e-07 32680955.5836 +UniRef50_Q5HQU2 Lipoprotein, putative 6.20680414643e-05 3.81570315534e-05 -9653168122.12 +UniRef50_F0MM24 Site specific recombinase 2.0589502452e-06 1.70703821698e-05 6060299278.95 +UniRef50_Q9A7X1 Sulfate thiosulfate import ATP binding protein CysA 1.25496956702e-06 6.4226237002e-07 -247357414.192 +UniRef50_P00363 Fumarate reductase flavoprotein subunit 2.32728596957e-05 2.2240653276e-05 -416714398.23 +UniRef50_B8FCL2 Arginine tRNA ligase 4.25298726209e-08 8.48506486459e-08 17085416.6156 +UniRef50_W1JJ37 1.6494182913e-07 2.78937381601e-07 46021403.4153 +UniRef50_Q63SZ9 50S ribosomal protein L3 glutamine methyltransferase 1.45565271172e-05 3.68596799836e-05 9004056502.63 +UniRef50_Q9RT16 4.68435979094e-06 0.000301588426703 1.19863815235e+11 +UniRef50_K7S7U2 Helicase secretion neighborhood ATPase 1.94413384814e-06 4.12196849724e-05 15856021954.1 +UniRef50_A0A024E451 4.01662914913e-07 8.01158835875e-07 161281405.659 +UniRef50_D9RN76 Conserved bacteriophage protein 6.25725388241e-05 4.50279560424e-05 -7082963365.21 +UniRef50_Q09AM4 1.55884507615e-06 4.55269168186e-07 -445527136.443 +UniRef50_K1Z5M7 1.0860271367e-07 6.71928828519e-08 -16717656.857 +UniRef50_E4PKC3 Extracellular solute binding protein, family 1 9.6444577482e-05 6.70735046264e-06 -36228019747.3 +UniRef50_UPI00036DECB5 hypothetical protein 2.45542828364e-08 2.66673612821e-06 1066681234.19 +UniRef50_Q09049 Cytochrome bd ubiquinol oxidase subunit 1 1.40858505778e-07 4.51651124395e-07 125470793.99 +UniRef50_Q3B4E2 Bifunctional protein FolD 6.97570623407e-05 6.45479279563e-05 -2102991474.25 +UniRef50_N1MUD6 0.00013474597831 1.78303456773e-05 -47200275610.1 +UniRef50_D3DA43 1.1171091624e-07 2.23442652099e-06 856966338.287 +UniRef50_G9ZJL6 6.70937797759e-07 1.30127240933e-07 -218331858.282 +UniRef50_UPI0003B42F1C hypothetical protein 2.80688806763e-07 7.40906116255e-07 185795375.343 +UniRef50_O25830 Bifunctional dihydropteroate synthase dihydropteroate reductase 5.7051026703e-06 3.6305465132e-05 12353741834.5 +UniRef50_UPI00047B1D21 DNA gyrase subunit A 8.61520108029e-08 1.86148128217e-07 40369659.6904 +UniRef50_UPI0004640DF8 ABC transporter permease 1.37623194993e-07 8.65151876701e-08 -20632929.722 +UniRef50_UPI00046E6161 hypothetical protein 3.56478057781e-07 1.75949076688e-07 -72881765.007 +UniRef50_B2INS9 Hydrolase, haloacid dehalogenase like family 6.91060148007e-05 8.236867765e-05 5354299743.44 +UniRef50_F9YXR7 2.07885856826e-06 5.41121682112e-05 21006485623.4 +UniRef50_Q9I6F3 2.70922958506e-06 1.30816611149e-05 4187477892.63 +UniRef50_UPI00046835E4 hypothetical protein 2.32254731516e-06 3.90662628166e-07 -779925555.029 +UniRef50_Q9I5W0 DNA primase 4.91170800127e-06 1.09376557477e-06 -1541350209.0 +UniRef50_UPI0003B68C85 chromosomal replication initiator protein DnaA 4.67357968212e-08 7.43135185529e-08 11133464.6798 +UniRef50_UPI000377D8E1 hypothetical protein 1.31738954724e-07 3.22053806195e-07 76832440.9647 +UniRef50_A5ENX4 Cysteine desulfuration protein SufE 1.8598240212e-06 2.62515973723e-07 -644852859.942 +UniRef50_P55809 Succinyl CoA 5.02222770547e-07 4.42066439934e-07 -24285848.8697 +UniRef50_R6LKT9 PTS system 6.22229651954e-06 7.63750099644e-06 571335413.836 +UniRef50_UPI00037E8795 hypothetical protein 9.7519292095e-07 1.01693816904e-06 16853068.9257 +UniRef50_B9KL59 5 oxoprolinase 1.94422663222e-05 7.56435077488e-06 -4795260264.86 +UniRef50_G4LIE7 2.92230662804e-06 1.82294262473e-06 -443826738.85 +UniRef50_Q9SAJ6 Glyceraldehyde 3 phosphate dehydrogenase GAPCP1, chloroplastic 2.23458403964e-07 3.60839327617e-07 55462364.7322 +UniRef50_W5BG06 2.23039291066e-06 3.07621567909e-06 341469031.028 +UniRef50_Q9S6S1 Xaa Pro dipeptidase 4.06600321439e-05 4.92330732713e-05 3461041906.18 +UniRef50_UPI00047AF1F1 hypothetical protein 3.65663635778e-08 2.49102368774e-06 990894541.342 +UniRef50_W5XC72 Excinuclease ABC subunit C 1.64817473128e-07 2.86139163422e-07 48979055.1562 +UniRef50_B1W0Z3 Phosphoglycerate kinase 0.000237606903373 0.000216835293705 -8385753719.29 +UniRef50_K0VIJ3 Replication initiation protein RepC 2.6392744294e-07 2.20939892299e-07 -17354601.7103 +UniRef50_UPI00036C59B9 hypothetical protein 2.11188717687e-07 8.93415574944e-07 275423354.14 +UniRef50_A1WWJ6 ISXoo15 transposase 6.32979750019e-07 2.85605808873e-07 -140239122.798 +UniRef50_M4R3E4 MFS superfamily bicyclomycin multidrug transportprotein 6.23229649913e-06 9.28328142758e-05 34961691734.3 +UniRef50_Q2G764 2,4 dihydroxyacetophenone dioxygenase 8.1974089678e-06 6.66755145539e-06 -617622251.223 +UniRef50_F4QZ58 8.33373403415e-07 1.11897579632e-07 -291268643.565 +UniRef50_R6PZ09 Chorismate synthase 1.16388280223e-06 1.78940027096e-05 6754154708.28 +UniRef50_UPI000479CAE5 ABC transporter 3.05604607441e-08 1.69920190759e-07 56261233.1433 +UniRef50_Q3JVM0 8.07515534964e-07 1.13365337884e-06 131665849.734 +UniRef50_G5JVK4 Acyl ACP thioesterase 5.20714323114e-05 1.58862969528e-05 -14608383185.8 +UniRef50_Q9S469 L ribulose 5 phosphate 4 epimerase 0.000105501279448 7.36697626122e-05 -12850773963.2 +UniRef50_C5CPN2 Transaldolase 3.06333358167e-05 3.80666037909e-06 -10830258074.5 +UniRef50_UPI000305C0E8 hypothetical protein 3.93533351593e-07 2.64476898853e-06 908851452.401 +UniRef50_P45753 Putative DNA utilization protein HofM 1.73602314793e-05 7.75213515781e-06 -3878906389.59 +UniRef50_G2M640 3.40716909722e-06 4.75342916939e-05 17814660893.0 +UniRef50_F5M2B7 CRP FNR family transcriptional regulator 2.47991749141e-05 2.42726059064e-06 -9031816346.66 +UniRef50_UPI00023768FE monosaccharide transporting ATPase, partial 2.39829882996e-06 6.30682184614e-06 1577918704.6 +UniRef50_A9HE84 Tryptophan synthase alpha chain 1.29551189686e-05 2.66575517111e-05 5531840245.91 +UniRef50_C3FBN6 Transposase A from transposon Tn554 1.00932082575e-06 3.8841464795e-06 1160602394.5 +UniRef50_UPI0003B6F059 aldehyde activating protein 8.74000899081e-07 2.762399649e-07 -241323424.48 +UniRef50_UPI000219427C phosphoribosylcarboxyaminoimidazole mutase, partial 7.20641022659e-07 2.3530658128e-07 -195935469.708 +UniRef50_C2BE46 6.49436453475e-06 1.84168559401e-06 -1878343583.17 +UniRef50_K7EXQ4 2.94932409971e-07 9.87026946978e-08 -79220344.0651 +UniRef50_UPI0003D78289 PREDICTED 4.62554463156e-08 1.87178594339e-06 736989063.445 +UniRef50_D4HCD1 L fucose isomerase, first N terminal domain protein 5.69074355048e-06 6.52292183753e-05 24036412906.0 +UniRef50_P65894 Phosphoribosylamine glycine ligase 1.28251185346e-06 5.97884348432e-05 23619559059.4 +UniRef50_B9KUW5 Beta lactamase 0.000165141226521 3.42850546849e-05 -52828242356.0 +UniRef50_V9Y4Q6 2.97061306978e-06 6.25716317643e-07 -946663593.958 +UniRef50_P58403 Protein YfdX 2.2583545144e-05 1.40483904323e-05 -3445746695.24 +UniRef50_E2ZXX1 NalD 9.43900692526e-06 1.33602740699e-05 1583063665.65 +UniRef50_B9JV31 0.000114179980041 3.37611755162e-05 -32466058236.4 +UniRef50_I6SXW0 Acetyltransferase 6.42502342194e-05 1.48828722409e-05 -19930209836.4 +UniRef50_Q8WEW3 Cytochrome c oxidase subunit 1 9.0089499092e-08 2.03289337254e-07 45700163.7842 +UniRef50_O84561 Dihydrolipoyl dehydrogenase 2.46651352964e-07 1.33113551615e-07 -45836603.6701 +UniRef50_T1B7K3 Protein containing DUF28 9.88127430833e-08 1.1703615161e-07 7357013.6486 +UniRef50_UPI0003F0D458 2.32302196068e-07 2.17953637077e-07 -5792689.34129 +UniRef50_M1MXD6 Xylose transport system permease protein XylH 1.98764931501e-06 1.65598152454e-06 -133898357.034 +UniRef50_R2ZFJ6 Regulatory protein BlaR1 1.83415488809e-06 3.18205399168e-05 12105871610.4 +UniRef50_UPI000377E8CB hypothetical protein 5.12644132202e-08 8.08661296407e-08 11950576.1729 +UniRef50_Q9RSS3 ABC transporter, ATP binding protein, MDR family 5.69360465787e-07 0.00036495560056 1.47107196648e+11 +UniRef50_F5LYA4 P4 family integrase 5.57174053809e-06 3.22754666944e-06 -946379831.268 +UniRef50_Q8EWY8 ATP synthase subunit beta 9.23453928457e-08 4.88645398204e-08 -17553753.9364 +UniRef50_UPI00037C4890 hypothetical protein 1.83430280024e-08 5.77470815267e-08 15907899.9499 +UniRef50_UPI000379EBC0 hypothetical protein 6.38190008155e-07 5.28197862897e-07 -44405178.7961 +UniRef50_UPI000364EE3F hypothetical protein 3.41913531614e-07 1.80659561345e-06 591310130.109 +UniRef50_UPI0003717A9D molybdopterin biosynthesis protein MoeZ, partial 2.46783343545e-07 5.80351264477e-07 134665463.019 +UniRef50_M3YWL2 1.34667590342e-07 6.46939436053e-08 -28249219.8608 +UniRef50_O27333 Trk system potassium uptake protein TrkA homolog 1.72180094971e-05 4.13030356916e-06 -5283667487.31 +UniRef50_M1MV61 ATP dependent transcriptional regulator, MalT like, LuxR family 3.54082543669e-06 8.46958447112e-06 1989800504.87 +UniRef50_Q6AGI1 6.22010207345e-05 2.01634305018e-05 -16971091036.2 +UniRef50_Q0K1E0 Ribulose bisphosphate carboxylase large chain, chromosomal 1.06032576398e-06 9.45658701477e-07 -46292500.2556 +UniRef50_UPI0003A611B9 hypothetical protein 1.08700867992e-08 4.55304651729e-07 179423687.688 +UniRef50_D8JE10 Thioesterase superfamily protein 6.81292166666e-06 0.00014016071807 53834141769.4 +UniRef50_F4FM20 RstA 9.21442395543e-05 3.49468961315e-06 -35788911163.5 +UniRef50_Q6Y3D2 NifD 5.13930963861e-06 2.28828256293e-06 -1150994616.49 +UniRef50_R0S4I1 AMIN domain protein 1.11029736431e-07 1.22639592157e-06 450287016.023 +UniRef50_Q0BWU4 Phosphoribosyl AMP cyclohydrolase 1.81685278487e-07 8.90710578229e-07 286242214.225 +UniRef50_UPI0002B4BC1C 1.25781660157e-07 6.5000510997e-07 211635439.635 +UniRef50_UPI0004785FB9 alkylhydroperoxidase 2.46705255845e-06 2.19260546319e-06 -110797660.201 +UniRef50_F7QTX4 1.64437196687e-07 1.97033106601e-07 13159368.8291 +UniRef50_T2E7D0 Inner membrane transport protein RhmT 5.29215619369e-06 1.34336636173e-06 -1594174912.26 +UniRef50_UPI0003955E77 PREDICTED 4.93261552293e-07 1.07268402587e-06 233919962.896 +UniRef50_Q01609 8.05444225856e-06 3.43587109541e-05 10619356062.0 +UniRef50_B3E163 DNA directed RNA polymerase subunit beta 4.04082835124e-08 2.16939305526e-08 -7555213.94081 +UniRef50_Q7WZY5 Oxygen sensor histidine kinase NreB 0.000193621449013 6.45411723966e-05 -52111291663.0 +UniRef50_UPI0004740AD1 histidine kinase 4.41956427434e-07 7.62785187525e-07 129522507.46 +UniRef50_P50186 NaeI very short patch repair endonuclease 1.78212880379e-07 4.0131060692e-07 90067289.9216 +UniRef50_UPI000367ED7B hypothetical protein 1.93080198514e-07 5.04225965004e-08 -57592624.5387 +UniRef50_UPI000470E957 major facilitator transporter, partial 6.8519039608e-08 4.19437687246e-07 141670164.308 +UniRef50_B5R646 Allantoinase 4.38809441507e-05 8.68583109247e-06 -14208699034.2 +UniRef50_P23256 Protein MalY 2.59120309458e-05 7.98956483774e-06 -7235519501.23 +UniRef50_B4RQQ4 Adhesin component 8.32689681294e-06 0.000441243405044 1.74773706856e+11 +UniRef50_K1RTS5 Carboxynorspermidine decarboxylase 1.90052784136e-06 1.27862950305e-06 -251067990.727 +UniRef50_I6TSK5 Osmoprotectant amino acid ABC transporter ATP binding protein 5.00627868795e-05 2.37531774025e-05 -10621512201.1 +UniRef50_A5UJ55 SAM dependent methyltransferase 9.55437961966e-06 7.15203418526e-06 -969856331.961 +UniRef50_M1MCY2 Glycosyl transferase family 2 8.54685257742e-07 5.31380222148e-06 1800200237.78 +UniRef50_UPI00036853DF hypothetical protein 1.53389194184e-06 1.26347761438e-07 -568242858.137 +UniRef50_P22714 Galactose 1 phosphate uridylyltransferase 3.59057400819e-05 1.11825150508e-05 -9981069333.14 +UniRef50_UPI000225A931 proline iminopeptidase 7.37233824644e-08 9.95611564391e-08 10431026.4187 +UniRef50_A0A023RRW7 Lipid A biosynthesis acyltransferase 1.21378131464e-06 6.74661643638e-05 26746900045.1 +UniRef50_I0C613 DNA polymerase III alpha subunit 0.000136435487592 3.09124747135e-05 -42600935212.2 +UniRef50_A1KRG6 DNA directed RNA polymerase subunit beta 6.64547439828e-07 4.52214597108e-05 17988172258.6 +UniRef50_P05824 DNA repair protein RecN 2.72571673226e-05 3.33414573864e-06 -9658017381.95 +UniRef50_Q9K0V3 N acetylmuramoyl L alanine amidase AmiC 3.85337367799e-07 1.4456799173e-05 5680821807.01 +UniRef50_A0A023RUS2 Chemotaxis protein CheY 9.48312219635e-06 6.66264754683e-05 23069472943.7 +UniRef50_P0ABT9 1.59622885827e-05 4.96184042659e-06 -4441015911.3 +UniRef50_A4WWG5 Extracellular solute binding protein, family 5 0.000202623619417 3.7954235676e-05 -66479050936.8 +UniRef50_Q5HR29 Histidine protein kinase SaeS 0.000168854394268 2.27464862547e-05 -58985555410.5 +UniRef50_UPI00046D5F2F hypothetical protein 6.21438639611e-06 2.25762175591e-05 6605472022.75 +UniRef50_UPI0002D4FA5D hypothetical protein 1.36815473426e-07 6.27574981451e-07 198125635.686 +UniRef50_P31550 Thiamine binding periplasmic protein 2.69719156216e-05 2.16638426356e-05 -2142934201.83 +UniRef50_P21514 Cyclic di GMP phosphodiesterase YahA 2.82256893515e-05 2.66390425937e-05 -640548766.469 +UniRef50_A6VC18 Haemagglutination activity domain protein 1.95231897789e-06 2.74628058223e-07 -677304411.853 +UniRef50_UPI000377E83F hypothetical protein 3.27282406274e-07 2.91712056764e-06 1045549446.63 +UniRef50_A3MND6 Bifunctional protein GlmU 3.01999244345e-05 0.00012207617105 37091568207.0 +UniRef50_UPI00037CB5D1 hypothetical protein, partial 7.85057669752e-07 2.82318328663e-07 -202962041.303 +UniRef50_UPI00028877C9 hypothetical protein 3.15766502025e-07 4.67013577186e-07 61060300.2528 +UniRef50_UPI0004416F73 Pkinase domain containing protein 5.1620980521e-08 1.74298933999e-08 -13803361.4426 +UniRef50_UPI00035DDF67 hypothetical protein 2.56298684014e-07 1.53011469741e-07 -41698315.8787 +UniRef50_UPI00046CFF91 NUDIX hydrolase 9.22082808371e-08 4.89641304528e-06 1939516417.63 +UniRef50_UPI0003654BCD hypothetical protein 2.21162687326e-07 5.2855991645e-05 21249326352.2 +UniRef50_S5SXF8 GntR family transcriptional regulator protein 5.37319300924e-05 2.73441393692e-06 -20588323081.9 +UniRef50_UPI000344DDDB hypothetical protein 2.6365761354e-08 1.0980688106e-08 -6211142.8663 +UniRef50_UPI00041AB026 hypothetical protein 2.01940725436e-06 3.13974924014e-07 -688503959.77 +UniRef50_UPI000310D2B7 hypothetical protein 1.19185281396e-07 2.33243301623e-07 46046622.4149 +UniRef50_I5XEX7 7.02856428705e-07 7.46743793596e-07 17717867.765 +UniRef50_UPI00028A0BB5 iron ABC transporter permease 6.08998464866e-07 9.43012975712e-07 134845756.847 +UniRef50_Q00267 N hydroxyarylamine O acetyltransferase 1.87420471859e-05 8.09393808929e-06 -4298772309.29 +UniRef50_UPI0002D46590 hypothetical protein 3.13205007015e-07 4.30162259401e-08 -109078526.509 +UniRef50_UPI000310AFFC hypothetical protein 1.69088541724e-06 1.61850334637e-07 -617290226.216 +UniRef50_K7RZQ6 Phosphate ABC transporter, permease protein PstC 1.21118499099e-06 6.04819593877e-05 23928338958.1 +UniRef50_Q9RUF1 Putative gluconeogenesis factor 1.21118499099e-06 5.80637756948e-05 22952088526.9 +UniRef50_A3M2J5 FilF 3.55455608344e-06 7.60711455061e-05 29275837028.6 +UniRef50_Q9RYW8 Excinuclease ABC, subunit A 4.72251028609e-07 0.000286855626743 1.15616483095e+11 +UniRef50_L7WWN9 N acetylmuramoyl L alanine amidase 8.58348568774e-05 2.64387494539e-05 -23978937439.1 +UniRef50_U5MQ76 Cell wall hydrolase autolysin 7.96181223905e-06 3.00282106843e-05 8908475837.53 +UniRef50_Q8K3J1 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 5.87869616426e-07 1.04409718317e-07 -195178693.587 +UniRef50_B2TQZ4 Ribosomal RNA small subunit methyltransferase I 3.71749222442e-06 2.26600982422e-05 7647362501.3 +UniRef50_UPI00045E70DE phosphoglucosamine mutase 4.17142232811e-08 6.86870837911e-08 10889274.7821 +UniRef50_P0A2L2 UPF0047 protein YjbQ 1.67456954402e-07 0.000171151747311 69028456230.3 +UniRef50_Q720A2 DNA polymerase III PolC type 0.000105344517625 5.47248941566e-05 -20435763166.8 +UniRef50_W8UDC1 Oligopeptidase A 8.13987272751e-06 1.75920374899e-06 -2575954366.24 +UniRef50_UPI000404E1BA hypothetical protein 7.00800868692e-07 1.11808793433e-07 -237783328.528 +UniRef50_Q3J4T9 ATPase 0.000145238603634 1.69696210157e-05 -51783762320.3 +UniRef50_G7U8C9 N formimino L glutamate deiminase 1.06434019418e-06 5.73644775609e-05 22729056335.3 +UniRef50_P0A0E5 Mercuric reductase 0.000119854730565 2.74855919635e-05 -37290554750.2 +UniRef50_R5D9D5 2.78371795454e-06 1.03792686452e-05 3066417021.71 +UniRef50_UPI0002F9EB26 hypothetical protein 2.98328993867e-07 2.03083431814e-07 -38451802.1953 +UniRef50_W8G521 Electron transfer flavoprotein subunit beta 6.8450205936e-05 5.80726466339e-05 -4189548037.23 +UniRef50_UPI0003672E42 hypothetical protein 5.14629958399e-08 7.27514297368e-08 8594402.00264 +UniRef50_A3JU62 Replication protein C 6.37271107187e-07 4.63052820603e-07 -70334060.1927 +UniRef50_UPI000376A3B0 hypothetical protein 3.36155985985e-08 1.10408950079e-07 31002418.3531 +UniRef50_D4HC17 TOBE domain protein 3.380471542e-06 4.4738549913e-05 16696763759.1 +UniRef50_I1F1X0 2.1585868997e-06 2.90982103433e-06 303282438.83 +UniRef50_Q87AR8 Laccase domain protein PD_1754 1.75032143208e-06 8.08772324455e-06 2558486880.36 +UniRef50_I4XWS9 MFS transporter, aromatic acid 3.23724864676e-06 1.32726609074e-06 -771083395.987 +UniRef50_UPI000252B72D 1.56873143238e-07 1.51024581311e-07 -2361136.21986 +UniRef50_R4PRA1 Cytochrome D ubiquinol oxidase, subunit II 3.37638755487e-06 3.80807142821e-05 14010562569.7 +UniRef50_UPI00034C051A hypothetical protein 1.09716518469e-07 5.80057761253e-08 -20876261.2463 +UniRef50_A6W2T3 3 dehydroquinate synthase 1.36475804957e-06 4.12378546885e-05 16097258411.0 +UniRef50_Q24QJ3 Imidazole glycerol phosphate synthase subunit HisH 9.48605138528e-06 4.62711755907e-05 14850606046.0 +UniRef50_A3PQB9 Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase 4.8927774723e-05 1.35680179899e-05 -14275167706.2 +UniRef50_B9KR17 CrpK, Fnr type transcriptional regulator 0.000108827899111 1.2095799515e-05 -39051935643.3 +UniRef50_P58423 Fructose 6 phosphate aldolase 1 0.000101171183728 2.47981777964e-05 -30832719696.8 +UniRef50_E9UU02 Putative TolA domain protein 1.01734801148e-06 5.80239445701e-07 -176466091.93 +UniRef50_J3NBT7 1.17131462762e-07 2.26287519003e-06 866263073.935 +UniRef50_UPI00023B1DD2 PREDICTED 2.40155774287e-07 1.38392786601e-07 -41082966.9011 +UniRef50_Q729A6 3 methyl 2 oxobutanoate hydroxymethyltransferase 3.96638312082e-06 0.000111625192468 43463182455.5 +UniRef50_J1ZV65 1.47794619325e-08 3.31261557154e-08 7406785.41941 +UniRef50_UPI0002630EBE nicotinate phosphoribosyltransferase 4.05317546118e-08 6.12368248567e-08 8358890.93765 +UniRef50_G0DTU8 3.6792030283e-06 4.82932001029e-05 18011218094.3 +UniRef50_UPI00036FBE9A hypothetical protein 7.6872927043e-07 1.44749983105e-06 274028004.774 +UniRef50_UPI00029B2F80 GCN5 family acetyltransferase 8.41439541389e-07 5.02563945552e-06 1689212851.24 +UniRef50_G7MAN7 Carboxyl terminal protease 6.14157832573e-06 9.21349452598e-06 1240170266.69 +UniRef50_B9KR73 ABC sugar transporter, inner membrane subunit 0.000123546128529 2.529459646e-05 -39665349178.1 +UniRef50_UPI00037DF359 hypothetical protein 7.22882882314e-07 1.27544964257e-07 -240345223.137 +UniRef50_O32113 3.75068255908e-05 3.12825375479e-05 -2512821463.52 +UniRef50_Q47BM0 Argininosuccinate synthase 0.000119077110384 2.75987148788e-05 -36930950831.6 +UniRef50_P0AGM8 Uracil permease 4.62698448054e-05 1.79843509325e-05 -11419200978.5 +UniRef50_UPI0002628793 organic solvent ABC transporter ATP binding protein 1.28200535506e-06 3.36863349922e-07 -381565425.671 +UniRef50_D3DEH5 DnaJ like molecular chaperone domain protein 5.65631092695e-07 2.31332727519e-07 -134960352.324 +UniRef50_P0ACZ1 3.91853967671e-06 6.13114266848e-06 893254979.47 +UniRef50_C7C6X9 1.43892007009e-05 5.92608772976e-06 -3416662560.52 +UniRef50_B0TY89 Threonine tRNA ligase 1.69441989805e-07 6.07784330265e-08 -43868811.3231 +UniRef50_Q2FGC8 Shikimate dehydrogenase 0.000223138041455 5.07900364977e-05 -69579004549.0 +UniRef50_UPI0004057B1E hypothetical protein 1.65864004034e-07 6.77126316888e-08 -39624913.4685 +UniRef50_C5N0J9 6.12411480282e-05 1.16402329094e-05 -20024498105.1 +UniRef50_UPI0001BC2CC2 glyoxalase bleomycin resistance protein dioxygenase 1.87789706636e-07 3.83704291085e-07 79093121.8844 +UniRef50_Q9ZE56 Aspartate aminotransferase 0.000136697209001 4.04807991724e-05 -38843745355.9 +UniRef50_K1YDE1 2.66522718685e-06 4.02424925402e-06 548653885.593 +UniRef50_Q4A2U1 Putative membrane protein 2.93786101704e-08 4.80583517939e-08 7541240.91961 +UniRef50_D9UFW6 Replication initiation protein 2.14589833001e-07 1.48464009172e-07 -26695806.5349 +UniRef50_W5X411 DoxX family protein 9.27113138416e-07 2.39597858564e-07 -277558355.237 +UniRef50_UPI00038FA33F Aliphatic sulfonates import ATP binding protein SsuB, partial 8.558454282e-07 1.50795109245e-07 -284637465.702 +UniRef50_UPI00035D0942 hypothetical protein 6.25787649218e-07 5.61775703977e-07 -25842407.8087 +UniRef50_B9KT30 Transporter, DME family, DMT superfamily 3.07197551739e-06 1.87701295675e-06 -482421049.57 +UniRef50_Q49YA3 HemA concentration negative effector 0.000196753415344 5.89344931534e-05 -55639190116.9 +UniRef50_UPI0003B4E2D0 preprotein translocase subunit SecD 2.93413130069e-08 9.88854336036e-08 28075814.8872 +UniRef50_A0R033 Phospho 2 dehydro 3 deoxyheptonate aldolase AroG 3.54295369733e-07 1.06854463286e-07 -99894930.374 +UniRef50_Q8CMX2 Dihydrolipoamide dehydrogenase 0.000120638636002 1.88143081241e-05 -41107730689.4 +UniRef50_G1TF83 2.0224373231e-07 2.71276105651e-08 -70696527.2649 +UniRef50_Q3SFH1 Acetylglutamate kinase 5.25676752241e-07 3.63417827872e-05 14459401519.4 +UniRef50_UPI0002626E83 hypothetical protein 5.73132964576e-07 2.593685298e-07 -126670552.642 +UniRef50_E7T8U3 SdiA regulated domain protein 5.29269066775e-07 5.78537161482e-07 19890134.4207 +UniRef50_A5V195 Beta lactamase domain protein 2.12667180632e-07 1.0910083823e-06 354597121.572 +UniRef50_A6LQ08 Oleoyl hydrolase 4.71103564113e-06 5.3387377675e-06 253411051.187 +UniRef50_UPI00036116CD hypothetical protein 8.31040134358e-08 6.09700859869e-06 2427887079.97 +UniRef50_UPI0004222757 acyl CoA dehydrogenase 4.8695403502e-07 4.41731641336e-07 -18256835.2714 +UniRef50_UPI0001744DDB putative transporter 5.72295395266e-08 4.03240146381e-07 139688728.015 +UniRef50_Q9RUR8 2.50013402159e-06 0.000626882755764 2.52070926434e+11 +UniRef50_Q4UYY0 Tyrosine recombinase XerC 3.11439724736e-05 1.07409014807e-05 -8236970133.67 +UniRef50_P53401 Succinyl CoA ligase [GDP forming] subunit alpha 3, mitochondrial 1.5984984343e-07 3.10533355285e-07 60832782.8305 +UniRef50_A6M0K8 Amino acid permease associated region 8.03891465594e-06 2.4132085664e-05 6497010621.39 +UniRef50_Q9CGD8 Homoserine dehydrogenase 4.46419781525e-05 5.5543882634e-05 4401232620.59 +UniRef50_W0YNY5 Putrescine binding periplasmic protein 4.94910711646e-06 2.10940503716e-06 -1146422576.48 +UniRef50_UPI0001CB98DC PREDICTED 3.71719048201e-08 6.16049086021e-08 9863903.45347 +UniRef50_UPI00036CD3A9 hypothetical protein 6.51318103801e-09 4.15848406819e-06 1676201597.55 +UniRef50_UPI0002FA5AD3 hypothetical protein 7.91287236964e-06 2.62313724087e-06 -2135530983.83 +UniRef50_G7U4S9 1.70808139747e-06 9.85672200945e-05 39103222887.3 +UniRef50_B8P4L0 Predicted protein 2.84950950481e-07 3.70961523149e-07 34723523.6545 +UniRef50_R9SPB0 7 carboxy 7 deazaguanine synthase 3.36279839069e-05 6.49686826491e-06 -10953164320.9 +UniRef50_W4UGA1 6.27042886125e-07 5.90591321642e-06 2131144731.37 +UniRef50_UPI000237A558 molecular chaperone DnaK 2.55175879573e-07 6.89886268356e-08 -75166078.7044 +UniRef50_A6LRX4 2.48891860782e-06 4.56268026566e-06 837203029.187 +UniRef50_A0A023RW48 1.65806437266e-06 3.81096394926e-05 14715948187.0 +UniRef50_Q9FYA6 Branched chain amino acid aminotransferase 5, chloroplastic 7.74650309469e-08 2.344442995e-07 63374457.0671 +UniRef50_Q3J497 1.9716347238e-05 2.47370573148e-05 2026922269.05 +UniRef50_UPI000464D2A1 peptidase M32 1.95225583282e-07 8.64591242153e-08 -43910354.2399 +UniRef50_Q3JNY2 Phosphonates import ATP binding protein PhnC 1.74089322351e-05 2.369993062e-05 2539753247.22 +UniRef50_P30296 High affinity branched chain amino acid transport system permease protein LivM 2.45697305146e-05 3.78818820648e-06 -8389763647.98 +UniRef50_UPI00036616D0 hypothetical protein 3.66593481159e-08 3.48142701735e-07 125749652.187 +UniRef50_Q7UT69 Cyclic pyranopterin monophosphate synthase 4.77682281729e-08 1.27521274482e-06 495534413.81 +UniRef50_UPI00037F4F10 hypothetical protein 7.98786483501e-08 2.44960812647e-08 -22358621.9529 +UniRef50_E2S811 7.17146488905e-06 3.5321685738e-06 -1469228581.65 +UniRef50_Q04I02 Transcriptional regulator AdcR 7.02928057572e-05 7.6691700201e-06 -25281930225.5 +UniRef50_Q72IW9 Homoisocitrate dehydrogenase 1.17158068163e-07 5.75797227148e-07 185158256.618 +UniRef50_Q84NM0 1.77223468942e-06 2.6565220857e-06 356997673.305 +UniRef50_UPI0003EC0560 PREDICTED 2.80867551212e-07 1.76846092498e-07 -41994739.3697 +UniRef50_U1FXL3 Primosome assembly protein PriA 0.000184260949013 4.30600963914e-05 -57004516932.8 +UniRef50_UPI000372345A hypothetical protein 2.98587242413e-07 2.4576076766e-07 -21326696.1115 +UniRef50_G8VIZ2 Dicarboxylate transport protein alpha ketoglutarate permease 1.52828335565e-06 5.50374233675e-05 21602296453.8 +UniRef50_UPI0002625F65 thioredoxin 2.01125524198e-06 3.81395031613e-06 727770122.991 +UniRef50_J9UTL0 8.38857753003e-06 1.02998066914e-06 -2970755852.88 +UniRef50_P37417 UDP N acetylenolpyruvoylglucosamine reductase 2.82714778037e-05 4.70704015539e-06 -9513252646.79 +UniRef50_D6SIG9 4.11352462628e-05 1.43631899592e-05 -10808207659.8 +UniRef50_W0A6T6 Peroxidase 3.03014800698e-06 0.00061407007555 2.46684317052e+11 +UniRef50_UPI0001B4A052 hypothetical protein, partial 4.87486151538e-08 1.45911559744e-06 569382457.9 +UniRef50_P76081 1,2 phenylacetyl CoA epoxidase, subunit E 2.20617548171e-05 4.66144569113e-06 -7024718319.97 +UniRef50_W0YPV2 1.59245572919e-07 5.09797026076e-06 1993823761.45 +UniRef50_Q9RTL4 1.7584751034e-06 0.000259281341848 1.03965141466e+11 +UniRef50_B0VB68 Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain 8.91699186261e-06 3.6072780935e-05 10963125287.5 +UniRef50_UPI0003767C94 MULTISPECIES 1.1393260093e-07 2.83565679908e-06 1098793458.1 +UniRef50_P29915 NADH quinone oxidoreductase chain 3 2.02506193117e-05 6.8993132172e-06 -5390086109.3 +UniRef50_P51981 L Ala D L Glu epimerase 3.68647123907e-05 9.03629740692e-06 -11234672622.0 +UniRef50_Q7UK64 Argininosuccinate lyase 2.70250515881e-07 1.30021793732e-07 -56612055.9315 +UniRef50_Q5NPZ7 Tryptophan synthase alpha chain 7.25554999669e-08 1.34671814012e-07 25077118.2329 +UniRef50_Q9RZH5 5.48888741709e-07 8.50186315981e-05 34101471751.4 +UniRef50_Q5HH71 UPF0477 protein SACOL1020 0.000241821953962 0.000141448367194 -40522048700.7 +UniRef50_Q9RZH7 7.5409843749e-07 7.79275929849e-05 31155886774.1 +UniRef50_Q9RZH0 2.01453654052e-06 0.000165961985789 66187597122.9 +UniRef50_Q9RZH1 2.80311377865e-06 0.000254161321516 1.01476392975e+11 +UniRef50_UPI0003737D75 hypothetical protein 7.694776435e-08 3.68677845861e-08 -16180779.6673 +UniRef50_W1VJK5 5.82622505785e-06 4.08380435617e-05 14134700773.3 +UniRef50_P14949 Thioredoxin 7.9192864794e-06 8.9040212621e-06 397549515.831 +UniRef50_UPI000472A2A5 hypothetical protein 3.68034083203e-08 3.48079433025e-08 -805593.714795 +UniRef50_B9KF16 3.54666553443e-06 3.15711286306e-08 -1419086746.68 +UniRef50_R6IHH7 9.29742070845e-07 5.83889189001e-06 1981884024.04 +UniRef50_Q6FFB5 Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes 8.65132136393e-07 6.15470611246e-05 24498039383.5 +UniRef50_F5Q2F1 Putrescine ornithine antiporter 5.47851562923e-06 1.59181843557e-05 4214622374.03 +UniRef50_A0A014NVK4 1.00942910561e-07 5.33476925123e-07 174619289.468 +UniRef50_P34956 Quinol oxidase subunit 1 0.000214904345916 4.15652627085e-05 -69979115000.8 +UniRef50_I6TBP2 Oligo beta mannoside permease IIC component 5.94254542829e-06 5.78379382165e-05 20950806896.7 +UniRef50_Q6D107 Bifunctional protein Aas 3.12568631822e-05 8.97504725649e-06 -8995442517.83 +UniRef50_I4K2W0 0.00017898833977 3.5156750618e-06 -70840468034.4 +UniRef50_UPI00036C4785 hypothetical protein, partial 2.11263109756e-07 1.3332466527e-06 452958524.571 +UniRef50_Q3J232 6.33080828617e-05 3.33505612436e-05 -12094219097.4 +UniRef50_Q3J231 0.000110379923868 5.7373490832e-05 -21399347478.7 +UniRef50_Q3J230 0.000186794836082 6.42777575693e-05 -49461648049.3 +UniRef50_UPI00041335DC hypothetical protein 1.95823394932e-08 2.925220169e-08 3903842.0314 +UniRef50_UPI00035E09FF hypothetical protein 5.30692510043e-08 1.3545702841e-07 33260956.7504 +UniRef50_A4SN85 Putative transport protein ASA_2308 2.44992063731e-05 5.92570269494e-06 -7498351357.41 +UniRef50_A4SV52 Indole 3 glycerol phosphate synthase 8.34767104486e-08 4.84018938354e-05 19506737927.0 +UniRef50_B0JHY9 50S ribosomal protein L6 0.000274918951823 5.25017705819e-05 -89792545432.7 +UniRef50_Q4T085 Chromosome undetermined SCAF11289, whole genome shotgun sequence. 2.91348832916e-07 5.44712044637e-07 102285837.688 +UniRef50_J9YTG3 3.13700267745e-06 4.12069821193e-06 397129958.571 +UniRef50_UPI00044144A1 50s ribosomal protein 4.89810874842e-08 4.89991904881e-07 178041478.794 +UniRef50_A4WTJ9 3.34830368967e-07 6.60690467491e-07 131553720.527 +UniRef50_I3TNP2 Amino acid carrier protein 5.56025739778e-06 3.80583802193e-06 -708280631.177 +UniRef50_Q5HQ95 Cobalt transport family protein 0.000164474368722 2.50379740831e-05 -56292183592.7 +UniRef50_F5XZ61 Candidate cytosine deaminase 3.10558512113e-05 1.45396723899e-05 -6667784066.5 +UniRef50_A4WUN6 ChaC family protein 3.08348946962e-07 5.42117169395e-07 94375100.0549 +UniRef50_Q5HRI6 SdrG protein 4.3053372442e-05 1.09141688704e-05 -12974990874.2 +UniRef50_D6AJJ2 Predicted protein 6.71807294909e-07 3.25554987993e-06 1043088587.66 +UniRef50_UPI000470ED8E hypothetical protein, partial 1.28670613428e-07 1.80366741489e-07 20870361.2811 +UniRef50_Q9RWT4 2.35438246685e-06 0.000519460892705 2.08762243794e+11 +UniRef50_S6E1Z6 Red like rubisco 1,5 bisphosphate carboxylase oxygenease form I 4.14123057326e-06 9.18488364726e-08 -1634785098.64 +UniRef50_UPI00047E6722 hypothetical protein 6.75149776873e-08 5.25080286479e-07 184724730.117 +UniRef50_UPI0003AE08B4 PREDICTED 1.63388598705e-07 2.33039177123e-07 28118793.2161 +UniRef50_M4XCW5 1.49029591146e-06 8.31878042813e-06 2756742994.31 +UniRef50_UPI0004638808 hypothetical protein, partial 1.27447309763e-06 1.0205860977e-07 -473318115.893 +UniRef50_G1Y260 5.42823830873e-06 2.55257418853e-06 -1160940893.69 +UniRef50_Q2RFW5 Ribose 5 phosphate isomerase 6.71319668019e-05 2.01300603926e-05 -18975246395.7 +UniRef50_UPI0004657CE9 peptidoglycan glycosyltransferase 2.40224347108e-08 4.65786628945e-08 9106226.11381 +UniRef50_B7RSE7 Plasmid partitioning protein RepA 2.06001000446e-07 1.24742548114e-07 -32805034.3598 +UniRef50_U2Z6B8 GfdT protein 9.78123590463e-08 4.80811777671e-08 -20077088.1526 +UniRef50_F2N3U1 4.08135857568e-07 5.36517930467e-07 51829418.2545 +UniRef50_Q3IUV5 TraF 0.000293013767069 5.57410179858e-05 -95789920468.9 +UniRef50_F0KNJ6 7.13440944769e-06 5.08117920664e-05 17633095344.9 +UniRef50_UPI00047C69BC multidrug transporter 4.20072353421e-08 1.4317095425e-07 40841034.7416 +UniRef50_C7NCF6 2 nitropropane dioxygenase NPD 2.55601423552e-06 6.31014605008e-05 24442939633.5 +UniRef50_Q9HTK9 Rubredoxin NAD reductase 1.39122600314e-06 5.10660578947e-06 1499944412.58 +UniRef50_Q3JQL8 Bifunctional protein FolD 3.32814568192e-07 1.50976281981e-05 5960736447.03 +UniRef50_UPI000382E191 hypothetical protein 8.49920121381e-07 9.60277145054e-08 -304355615.956 +UniRef50_UPI00047171F6 molybdopterin biosynthesis protein B 1.20484599966e-06 4.23403278635e-07 -315478015.858 +UniRef50_B0TI32 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 8.46520598424e-05 4.81700514044e-05 -14728234491.0 +UniRef50_Q9Z9A0 DNA directed RNA polymerase subunit beta 2.725571681e-08 3.42934449604e-08 2841217.21695 +UniRef50_Q8ZN74 tRNA cytidine acetyltransferase TmcA 2.49240658847e-05 5.92713532661e-06 -7669293984.86 +UniRef50_Q2Y8M6 N succinylarginine dihydrolase 1.50837536598e-07 5.0615915139e-07 143447696.178 +UniRef50_P63229 D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase 2.23805922247e-06 1.45494721667e-07 -844793967.627 +UniRef50_UPI00016C41D3 preprotein translocase subunit SecA 5.83329550424e-08 3.72411265694e-07 126797268.184 +UniRef50_A1BAM5 2.62952768077e-07 3.78064849263e-06 1420136930.98 +UniRef50_UPI0003B3E9C2 cobalamin biosynthesis protein 7.65521839629e-07 3.77546591003e-06 1215151357.39 +UniRef50_UPI0003651143 cold shock protein, partial 2.74741363109e-07 1.7161600205e-07 -41632973.75 +UniRef50_P33348 2.55970780493e-05 4.8537799212e-06 -8374324003.21 +UniRef50_Y5MV84 1.53477060641e-05 1.65255634518e-07 -6129341548.05 +UniRef50_UPI0003B3392D pyridine nucleotide disulfide oxidoreductase 3.83871540707e-08 2.12505022957e-07 70293520.3358 +UniRef50_A0A023B4C6 4.63819422101e-08 1.34859807488e-07 35719599.9582 +UniRef50_Q5DXZ5 Lateral flagellar motor protein B 4.07980071436e-05 1.13377030243e-05 -11893486291.5 +UniRef50_P45769 2.07592490052e-05 2.53853901306e-06 -7355924217.07 +UniRef50_B9KUP5 2.04597794229e-05 5.43940685578e-06 -6063908726.04 +UniRef50_A7H6H5 Glucose 1 phosphate adenylyltransferase 7.89921593479e-08 1.20789433206e-07 16874072.3667 +UniRef50_Q8G3W4 Permease of ABC transporter for sugars 5.73414754476e-06 6.21470856633e-05 22774595383.0 +UniRef50_UPI00046C05A0 PREDICTED 2.29073575845e-07 9.82149473889e-07 304025981.321 +UniRef50_Q9ZMZ4 Urease subunit alpha 7.0094077846e-06 2.9079147787e-05 8909824865.13 +UniRef50_Q2NA61 NADH quinone oxidoreductase subunit B 3.24379373945e-07 5.56783487769e-07 93824392.6699 +UniRef50_P43262 Probable phospholipid binding lipoprotein MlaA 8.22418765628e-06 2.87856974796e-05 8300933833.77 +UniRef50_G4LR38 1.2168056243e-05 2.39122838212e-06 -3947025382.61 +UniRef50_A6QE03 Amidase 7.79929729079e-07 4.05555985165e-06 1322412076.98 +UniRef50_A7C6L8 Excinuclease ABC subunit A 1.2143137735e-07 6.41820174776e-07 210087343.41 +UniRef50_UPI0001C373E9 helicase 7.25215787739e-09 1.36584905101e-07 52213217.1456 +UniRef50_S6UH58 1.24012885587e-06 2.95276839803e-07 -381448353.524 +UniRef50_UPI000416F2B1 alpha amylase 1.50703172612e-07 1.1011041767e-07 -16387793.2992 +UniRef50_UPI00026CA7A4 anhydro N acetylmuramic acid kinase 8.24970514116e-08 5.41626553079e-07 185356213.976 +UniRef50_UPI000441A65C PREDICTED 2.258502536e-07 1.43469943454e-07 -33257942.126 +UniRef50_Q4ZZY5 8.98670736003e-07 1.83659762573e-06 378652595.04 +UniRef50_A0A024HXK5 1.19486966624e-06 1.45341478699e-07 -423707408.469 +UniRef50_UPI0000164D05 cytochrome c oxidase, subunit II 1.19387159242e-08 0.000501669819222 2.02525442395e+11 +UniRef50_Q6A5B0 4.27342628894e-06 2.64726264841e-06 -656502216.954 +UniRef50_X1NF36 Marine sediment metagenome DNA, contig 2.55427031798e-07 1.57001412497e-06 530714941.31 +UniRef50_Q5HLC6 Transcriptional regulator, MerR family 8.17182046483e-05 3.8622417981e-05 -17398297922.4 +UniRef50_P44528 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.03955620248e-05 6.78806695283e-07 -3922773364.52 +UniRef50_F4GZX9 Amidophosphoribosyltransferase 7.94150046685e-07 4.97816626972e-05 19776860001.4 +UniRef50_C6KU11 ABC transporter, permease protein 8.49810087235e-07 2.90787374061e-07 -225684329.288 +UniRef50_R9SK19 Histone acetyltransferase ELP3 family 3.03567994113e-05 1.1951999861e-05 -7430243430.74 +UniRef50_B7IB09 Endonuclease exonuclease phosphatase 2.02284689816e-06 6.07921344193e-05 23725882552.5 +UniRef50_R4NJP1 Signal peptidase I 3.8641561021e-05 3.52264843809e-05 -1378708347.31 +UniRef50_Q8FBR8 5.83358310779e-07 3.20496053928e-07 -106120718.773 +UniRef50_Q46TV5 Amidase 3.72638057105e-06 1.24082649234e-06 -1003448682.75 +UniRef50_Q99W47 Serine aspartate repeat containing protein D 0.000113450053575 1.72772280502e-05 -38826149837.6 +UniRef50_UPI000477EDDF 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.34242136993e-07 1.31743773864e-07 -41379846.9915 +UniRef50_B0RYF7 2 methylcitrate hydratase 3.97261925474e-06 6.09777103479e-05 23013654805.5 +UniRef50_B9D5D5 1.98046155458e-07 3.46934103295e-07 60107891.6024 +UniRef50_S6AZR4 2.72225472725e-06 2.17945907889e-06 -219133264.095 +UniRef50_A1B9D8 ABC transporter related protein 2.23009761593e-05 1.41733744242e-05 -3281212557.35 +UniRef50_J3DVI4 8.85346085631e-07 1.09614272475e-06 85101189.978 +UniRef50_UPI00047C6BBB uracil transporter 6.70087451266e-07 1.68588431059e-06 410089657.337 +UniRef50_K0JC90 Mobilization protein A 4.53282190779e-06 5.87443714917e-07 -1592797591.7 +UniRef50_UPI0004668D5E peptidase S11 5.16836570866e-08 2.01302633986e-07 60403017.0054 +UniRef50_A6LZM4 1.07955954865e-06 1.62652192923e-05 6130637187.49 +UniRef50_Q4KGS9 GAF domain cyclic diguanylate phosphodiesterase domain protein 2.88373856325e-08 6.64639128198e-07 256680965.638 +UniRef50_B0B7Q0 Pyruvate kinase 3.91561678854e-08 4.63457345603e-08 2902516.29256 +UniRef50_K8NVT8 Diguanylate cyclase domain containing protein 3.07302012788e-07 1.4247680879e-07 -66541957.4867 +UniRef50_Q3JSP4 1.42664773573e-06 3.72743160096e-06 928854680.186 +UniRef50_UPI000474188B dTDP 4 dehydrorhamnose 3,5 epimerase 8.56071548121e-08 1.77246660845e-07 36995993.1287 +UniRef50_S6AGE8 2.1137545491e-07 1.55605069186e-05 6196632726.92 +UniRef50_Q96S55 ATPase WRNIP1 2.89653416051e-08 2.51701837151e-07 89921456.5361 +UniRef50_UPI0003B5BF85 ABC transporter 5.03561422951e-08 5.76073234275e-08 2927390.80515 +UniRef50_F8DIK9 Phosphotransferase enzyme family 6.88999346857e-05 5.71964218281e-05 -4724851758.87 +UniRef50_P0AFM3 Glycine betaine binding periplasmic protein 0.000162263459932 5.63576538334e-05 -42755473532.6 +UniRef50_UPI00037F68CC hypothetical protein 2.20300516273e-07 2.81664358737e-07 24773336.2217 +UniRef50_Q4L5D3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 4.70589917981e-05 1.00427916654e-05 -14943894233.4 +UniRef50_A6LWI6 GAF domain containing protein 8.79897661091e-05 5.62201924473e-05 -12825766743.8 +UniRef50_Q9PBC7 Histidine biosynthesis bifunctional protein HisB 3.10240144229e-05 4.06581295447e-05 3889410498.56 +UniRef50_C0RG90 3 phosphoshikimate 1 carboxyvinyltransferase 5.09206598127e-06 2.97339965658e-06 -855331594.237 +UniRef50_E3ZQM3 YqeL 5.18276229346e-07 6.67388171693e-06 2485093473.11 +UniRef50_P72139 Putative imidazole glycerol phosphate synthase subunit hisF2 6.73684748627e-06 6.85753825043e-06 48724342.5336 +UniRef50_B2G6L2 Isoleucine tRNA ligase 0.000169144496618 0.000144477881506 -9958215214.12 +UniRef50_D5E389 Relaxase mobilization nuclease domain protein 3.01922124451e-06 3.64831600988e-07 -1071609672.11 +UniRef50_F7F1K1 2.82110713739e-08 4.18458795825e-07 157547795.239 +UniRef50_B2S6U9 Carbamoyl phosphate synthase small chain 2.19617592887e-05 1.77367390508e-06 -8150177805.03 +UniRef50_A0A058ZGI8 1.81254548438e-07 1.37027183802e-07 -17855129.8343 +UniRef50_UPI00047EBD86 hypothetical protein, partial 2.6286981689e-08 1.33686134264e-07 43358355.8303 +UniRef50_X1RQI5 Marine sediment metagenome DNA, contig 1.89212973806e-07 1.49858692221e-07 -15887806.4072 +UniRef50_O66605 Lon protease 1.68699879454e-08 3.52058654758e-07 135319778.02 +UniRef50_Q653B9 7.814703027e-07 8.63424200089e-07 33085794.0634 +UniRef50_UPI00047DCF6D dTDP 4 dehydrorhamnose 3,5 epimerase 3.23015347689e-07 1.77713318235e-07 -58660212.347 +UniRef50_UPI0004418B4E PREDICTED 1.45127312878e-07 1.45063699849e-07 -25681.3604269 +UniRef50_P37024 ATP dependent RNA helicase HrpB 4.19171202939e-06 2.66051085761e-06 -618164702.999 +UniRef50_P45404 Cytochrome c type biogenesis protein CycK 5.82054680958e-05 4.92232903064e-06 -21511057098.3 +UniRef50_E6SIK1 Xanthine uracil vitamin C permease 3.0581571671e-06 0.000233851465464 93174090711.9 +UniRef50_Q8FT67 Triosephosphate isomerase 6.72502513686e-08 9.64470854778e-07 362218967.731 +UniRef50_L0A7V5 ABC type Fe3+ hydroxamate transport system, periplasmic component 3.67252879385e-07 6.45472485436e-05 25910251826.7 +UniRef50_UPI000378926F Gnt II system L idonate transporter IdnT, partial 5.22725372676e-08 7.95226320055e-08 11001197.642 +UniRef50_UPI0004628F03 hypothetical protein 2.47269880895e-07 1.23936640101e-06 400521539.564 +UniRef50_E3D2E3 1.7584751034e-06 4.16816044096e-05 16117457212.8 +UniRef50_Q9RYE7 Chromosomal replication initiator protein DnaA 3.68994553624e-06 0.000365186791701 1.45940712862e+11 +UniRef50_B9KTR9 3.82809495942e-06 7.43423810463e-06 1455844240.07 +UniRef50_UPI00037D79FE hypothetical protein 1.71290884847e-07 1.69137024146e-07 -869539.995837 +UniRef50_Q5X183 2.37911337508e-06 7.42330784886e-05 29008327463.6 +UniRef50_Q5HEM7 DNA polymerase IV 0.000210533921232 4.46629078494e-05 -66964163568.9 +UniRef50_B9KTR7 1.63829099272e-06 1.54276823989e-06 -38563707.5135 +UniRef50_E9C843 1.2052593655e-07 1.83121313845e-08 -41264967.45 +UniRef50_F3U3B9 6.31326331853e-06 2.51256024573e-07 -2447306733.77 +UniRef50_Q5M4V7 Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein 3.59327886167e-05 4.17542386488e-05 2350190815.18 +UniRef50_UPI0003B3970A arylesterase 6.3378293779e-08 1.01839023136e-07 15527068.4076 +UniRef50_UPI0003C73AEA oxidoreductase 1.65808094573e-06 4.26347620372e-06 1051830037.45 +UniRef50_W5Y8E7 6.00723780228e-07 2.06848599848e-07 -159012243.711 +UniRef50_UPI000360A00D phage tail protein 2.03991863168e-07 2.99255321412e-07 38459027.1072 +UniRef50_L7WUC8 HesA MoeB ThiF family protein 0.000128625759007 1.09975190756e-05 -47487963921.0 +UniRef50_A6TKL7 2.06972554821e-07 3.71459436328e-07 66405372.5454 +UniRef50_M4UHU9 6.7323607527e-06 7.32546582621e-08 -2688362846.75 +UniRef50_I6TYT4 Transposase IS204 IS1001 IS1096 IS1165 family protein 1.66847820395e-05 1.91516656741e-05 995911195.354 +UniRef50_S2ZWU0 2.18537965716e-07 7.43670485448e-07 212002442.316 +UniRef50_Q06115 Choloylglycine hydrolase 2.84910920615e-05 1.73336964275e-05 -4504377534.09 +UniRef50_P25553 Lactaldehyde dehydrogenase 6.43372947443e-08 5.7758096017e-05 23291678378.2 +UniRef50_M9R5B4 Aminotransferase 1.10287735399e-05 2.23161238178e-06 -3551521912.84 +UniRef50_Q9DWG9 Pr23.1 6.88629852005e-07 4.97131945548e-07 -77310054.7803 +UniRef50_P17334 N,N diacetylchitobiose permease IIC component 2.42783908131e-05 1.02949482912e-05 -5645287342.23 +UniRef50_UPI00021962A1 ABC type polar amino acid transport system, ATPase component, partial 1.66703311327e-07 1.73800840618e-07 2865359.67126 +UniRef50_UPI0003A69976 hypothetical protein 3.43109044047e-07 2.75755099816e-07 -27191613.8119 +UniRef50_Q834B3 Phosphate import ATP binding protein PstB 2 1.2629692219e-07 3.50098827533e-06 1362404311.38 +UniRef50_R9ZFP1 MFS transporter 1.04086210166e-06 3.58296517874e-06 1026278207.33 +UniRef50_Q49ZN6 N acetylmuramic acid 6 phosphate etherase 7.80930351724e-08 1.11704058536e-07 13569182.5855 +UniRef50_K8E2U7 ABC transporter, CydDC cysteine exporter family, permease ATP binding protein CydD 4.67111196855e-06 1.6261327558e-05 4679112261.38 +UniRef50_A3M2G5 Transposition Helper 3.6296729697e-06 8.89775268894e-05 34455975963.3 +UniRef50_C5Y3F1 6.93744129686e-08 2.52463690816e-07 73915388.2249 +UniRef50_K0SHL6 5.13563461443e-06 1.01260910386e-06 -1664515993.83 +UniRef50_D3RCC5 Ethanolamine utilisation protein EutH 1.28451279398e-05 1.63383718916e-05 1410265450.27 +UniRef50_J7R0T4 Rhsg core protein with extension 4.04797171324e-05 1.21444599548e-05 -11439291035.3 +UniRef50_P20384 Putative transposon Tn552 DNA invertase bin3 0.0010471001284 0.000142939386056 -3.65020786984e+11 +UniRef50_P19672 Putative rRNA methyltransferase YqxC 1.76627683497e-07 5.08048506365e-05 20439234884.3 +UniRef50_W9BCF0 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 2.54749945824e-07 3.35288037946e-07 32514216.1032 +UniRef50_M3Z7R3 3.86294330453e-07 1.74725518625e-07 -85412925.5762 +UniRef50_F0KK38 2.70922958506e-06 8.2986334321e-05 32408852292.7 +UniRef50_N6VAB0 1.70409687593e-06 5.54253071778e-07 -464206053.906 +UniRef50_Q2P582 Aspartate tRNA ligase 4.60973211363e-05 4.70714839121e-05 393281466.912 +UniRef50_A1JSC3 UvrABC system protein B 7.98449460941e-06 4.00692295175e-06 -1605794488.49 +UniRef50_O26273 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.30308016908e-05 7.82461541859e-06 -6138923998.98 +UniRef50_P37772 Inner membrane ABC transporter permease protein YjfF 3.33839211359e-05 1.05283869912e-05 -9227059603.16 +UniRef50_A0A026SW65 1.42853735793e-08 7.26648678921e-07 287589808.047 +UniRef50_G8WJX8 2.2542552207e-07 8.32388635744e-07 245038457.265 +UniRef50_F0YA18 9.70821255751e-07 3.33668144057e-06 955126788.981 +UniRef50_UPI000368DC29 hypothetical protein 8.5600510081e-07 1.30891511488e-06 182845330.511 +UniRef50_UPI00029A2592 dihydrolipoamide dehydrogenase, partial 3.39935488234e-07 8.1094744461e-07 190153306.756 +UniRef50_P39858 Protein CapI 1.10882925713e-07 5.92472033592e-06 2347117506.31 +UniRef50_R4KAB8 High affinity sulfate transporter 1 5.11003436081e-06 9.91920492529e-06 1941521172.04 +UniRef50_P67185 Probable transcriptional regulatory protein SAG1645 0.000136585197178 0.000127185628028 -3794721411.54 +UniRef50_D4HEB6 Ribosomal subunit interface protein 1.80327701681e-06 6.38996201181e-06 1851701017.44 +UniRef50_S3NMU2 1.87571481725e-06 6.66265810004e-05 26140719260.6 +UniRef50_B7H1L0 EpsC 4.81980756962e-06 5.23259545152e-05 19178814487.9 +UniRef50_B6TJX5 Grx_I1 glutaredoxin subgroup III 2.68992391105e-06 1.85430109167e-06 -337351186.429 +UniRef50_V5VA90 1.26815001857e-06 0.000131509575083 52580061540.3 +UniRef50_UPI0003DE9A9C PREDICTED 1.53395802631e-07 8.36015603976e-06 3313169816.0 +UniRef50_M4QX62 General secretion pathway protein D 5.24528933048e-07 7.29011123658e-05 29219314892.4 +UniRef50_P56123 Ribonuclease R 6.27400535489e-07 4.05287445556e-05 16108662225.5 +UniRef50_A6TXF8 Histidine ammonia lyase 0.000117471459976 1.9242029618e-05 -39656426446.2 +UniRef50_Q9RU93 NADH dehydrogenase I, G subunit 1.18427669881e-06 0.000165339916394 66271646161.1 +UniRef50_H9JIZ2 2.24465617097e-06 4.70482656792e-07 -716255619.232 +UniRef50_UPI00016C363F CheA signal transduction histidine kinase, partial 6.33645259553e-07 7.34956366756e-07 40900537.2049 +UniRef50_C6XJS7 Membrane protein 1.88509248458e-07 5.86854247297e-07 160816764.274 +UniRef50_D4HDP4 Transcriptional regulator, MerR family 5.65831322848e-06 7.14119684451e-05 26545557499.0 +UniRef50_S6VQV4 GlcG protein 3.15610562223e-07 8.55312365878e-07 217884241.021 +UniRef50_Q3HKF7 Transcriptional regulator, LysR family 6.93773465229e-05 1.71023942075e-05 -21104039735.5 +UniRef50_Q48KH7 Response regulator 4.27602384119e-06 1.99675362471e-05 6334856114.77 +UniRef50_Q4THH6 Chromosome undetermined SCAF2934, whole genome shotgun sequence. 2.2033188776e-06 5.73858704506e-08 -866339488.546 +UniRef50_B5YJD3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.92081699906e-07 3.43694947412e-08 -63670352.5715 +UniRef50_Q02441 Denitrification regulatory protein NirQ 8.43808006112e-05 2.09534084601e-05 -25606416553.0 +UniRef50_A6D100 3.1928899509e-08 9.29418958025e-07 362327750.064 +UniRef50_E4ZAN9 NADH dehydrogenase I chain J 1.7055089858e-06 2.53261362313e-05 9535937076.7 +UniRef50_Q92IH1 DNA topoisomerase 1 5.41173041607e-08 5.14764548942e-08 -1066143.25575 +UniRef50_R6GIU2 Anaerobic sulfite reductase subunit C 4.4298054813e-06 1.91250546997e-05 5932652440.45 +UniRef50_UPI000478777B adenosine deaminase 2.00422032906e-07 4.54724725793e-07 102665117.763 +UniRef50_Q56220 NADH quinone oxidoreductase subunit 4 9.49286506404e-08 9.17414583619e-07 332047664.181 +UniRef50_A1SS95 Prolipoprotein diacylglyceryl transferase 6.00584428659e-06 7.2837907848e-05 26980924181.4 +UniRef50_UPI00035E9ADC hypothetical protein 7.54738020193e-08 1.03062445205e-06 385606038.434 +UniRef50_Q30TV4 50S ribosomal protein L14 0.00032661496305 3.5538767047e-05 -1.17511032233e+11 +UniRef50_UPI0003788832 hypothetical protein 1.32678123066e-08 1.51707448802e-07 55889780.0984 +UniRef50_V1GSR8 Siderophore interacting protein 4.48667557334e-06 3.55803259269e-06 -374904567.019 +UniRef50_U4KCQ5 Isoleucine tRNA ligase 1.01101415417e-05 4.80109193642e-06 -2143328475.02 +UniRef50_K7RTE7 UvrD REP helicase 2.25522113463e-06 4.821075346e-05 18552812337.6 +UniRef50_I6U2U0 Permease 0.000122627903853 2.90593248843e-05 -37774783545.2 +UniRef50_Q5FJI8 Acyl carrier protein 2.43750335277e-07 4.67615004598e-07 90376914.1333 +UniRef50_UPI000476D930 phosphopantetheine adenylyltransferase 2.50451620642e-07 1.68717720966e-07 -32996978.2869 +UniRef50_W8VWJ7 9.87053417958e-06 2.18753114959e-05 4846475917.77 +UniRef50_A5D1G8 Methylthioribose 1 phosphate isomerase 4.66501223218e-06 1.38239636781e-05 3697581091.69 +UniRef50_UPI00047CDE52 hypothetical protein 7.34416778829e-08 1.71365397594e-07 39533007.3065 +UniRef50_Q2FH48 Phosphate binding protein PstS 0.000157006897857 4.02567587681e-05 -47133463835.5 +UniRef50_Q5F4W9 Maf like protein NGO2175 2.25140748821e-06 3.46288419572e-05 13071167610.9 +UniRef50_Q732I6 Orotidine 5 phosphate decarboxylase 0.000185636621689 0.000192418254175 2737828254.59 +UniRef50_P76612 1.96197953795e-05 4.16626258262e-06 -6238780826.28 +UniRef50_L1K5J8 0.000102508962883 1.8072218278e-06 -40654528613.2 +UniRef50_B2EBX5 1.120428719e-06 2.37634676795e-06 507029528.209 +UniRef50_S6VZ76 Inner membrane translocator 6.2355697263e-06 7.79797316464e-07 -2202562271.71 +UniRef50_UPI0003B71E48 RNA polymerase subunit sigma 54 1.68506773741e-07 4.07131824725e-07 96335861.3409 +UniRef50_P02930 Outer membrane protein TolC 3.07235143049e-05 1.66997742763e-05 -5661555940.19 +UniRef50_A7ZK67 Methylglyoxal synthase 3.59829496077e-05 3.80741303336e-05 844235320.719 +UniRef50_G2UGP7 Putative membrane protein 2.54772868019e-07 6.24358542957e-06 2417757122.09 +UniRef50_F2B298 Archaeal DNA polymerase II, large subunit 1.74794003368e-07 2.0581046512e-07 12521726.2241 +UniRef50_Q9DWH3 Pr5 6.18491516412e-07 9.50590252783e-07 134072335.183 +UniRef50_UPI00046774C4 phosphoserine phosphatase 5.66450792158e-08 1.24723524107e-07 27484103.619 +UniRef50_X6JA50 4.09787025675e-07 1.88551024801e-07 -89315688.4239 +UniRef50_UPI0003752D0D hypothetical protein 1.53903569265e-07 2.55692576411e-07 41093471.2764 +UniRef50_Q8CTJ5 0.000178323973825 5.53655765373e-05 -49639813854.4 +UniRef50_Q4UKI8 2 oxoglutarate dehydrogenase E1 component 1.5799977335e-08 1.22910629901e-07 43241884.8364 +UniRef50_Q5F5X5 1.60177930206e-06 1.70193674714e-05 6224269539.03 +UniRef50_O25441 1.18087379206e-06 6.03712051017e-05 23895863096.7 +UniRef50_A1U1S9 Acyl carrier protein 3.62717600622e-07 4.6896223492e-07 42892262.6344 +UniRef50_D9SSR9 ABC transporter related 1.40290881731e-06 2.74989629911e-05 10535297304.6 +UniRef50_C5FF74 Splicing factor 3B subunit 4 2.61245071292e-07 2.31331994839e-07 -12076276.0388 +UniRef50_UPI00037E81F2 MULTISPECIES 7.21226107067e-07 4.56287243231e-07 -106959070.496 +UniRef50_D0K3P4 Sua5 YciO YrdC YwlC family protein 0.000141575354225 3.41406595601e-06 -55777407503.9 +UniRef50_Q5HDX9 Adenylate kinase 0.000212267216232 5.81124298033e-05 -62234178973.3 +UniRef50_B2IR65 4.21530084046e-05 8.66819375854e-05 17976875141.7 +UniRef50_P0A5W9 Ribonucleoside diphosphate reductase subunit alpha 2.52396363211e-05 0.000108357020548 33555507977.4 +UniRef50_Q5HK23 Ribosomal RNA large subunit methyltransferase H 8.72235820874e-05 1.14224991911e-05 -30601827349.1 +UniRef50_D5H605 3.1570149973e-07 1.13889882103e-07 -81473826.5431 +UniRef50_V8NVA5 Vegetative cell wall protein gp1 2.04469755447e-07 2.8214971834e-06 1056526087.2 +UniRef50_T0GPL5 3.23103934666e-06 1.6067538887e-06 -655743971.602 +UniRef50_B7GX14 Probable 5 dehydro 4 deoxyglucarate dehydratase 1.31518480593e-06 5.04257433128e-05 19826535123.6 +UniRef50_A4X329 Transcriptional regulator, LacI family 1.06334081372e-06 4.07252271976e-05 16011990239.3 +UniRef50_Q837B3 Methionine tRNA ligase 2.03105378809e-07 5.35848122554e-06 2081288492.9 +UniRef50_K2DQ88 2.03127504433e-07 1.78837402907e-05 7137880347.35 +UniRef50_P52002 Multidrug resistance protein MexB 2.08737017076e-05 1.35063013479e-05 -2974309933.38 +UniRef50_UPI00039FB6D9 hypothetical protein 4.58203851822e-09 6.29603294781e-07 252328751.027 +UniRef50_UPI0004153B49 hypothetical protein 3.67592727076e-07 7.83179687777e-08 -116783769.725 +UniRef50_Q5HJ26 Single stranded DNA binding protein 2 3.27825028214e-05 5.16588988672e-06 -11149165535.7 +UniRef50_UPI000378D9CD hypothetical protein, partial 7.86718978569e-08 3.99144615115e-06 1579634981.19 +UniRef50_E3I295 Peptidase M20 3.5318852967e-05 8.77903916283e-06 -10714448512.9 +UniRef50_V7EQE6 5.28182944685e-08 2.88254303055e-08 -9686213.68816 +UniRef50_P96963 DNA repair protein RadA homolog 3.17069060138e-06 1.31349164648e-06 -749774008.487 +UniRef50_UPI000197AB3D hypothetical protein 2.82386295234e-07 9.17121010581e-08 -76977512.0243 +UniRef50_Q3ACZ7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.43610053598e-06 8.2116093624e-08 -546620134.638 +UniRef50_R9SL16 Energy converting hydrogenase A subunit P EhaP 3.72036916144e-05 1.40836644364e-05 -9333838686.4 +UniRef50_H2JC94 Drug resistance transporter, EmrB QacA subfamily 2.09375239973e-06 1.91360452669e-05 6880182762.94 +UniRef50_D7FCY4 7.50966821352e-07 2.09196557611e-05 8142347222.6 +UniRef50_O30807 NAD dependent malic enzyme 6.25405170713e-05 2.58693534741e-05 -14804598750.0 +UniRef50_T1YCF9 0.000109443514391 4.73747828956e-05 -25057908573.7 +UniRef50_UPI000367099C 30S ribosomal protein S2 1.16223701895e-07 1.04244194839e-07 -4836274.00359 +UniRef50_UPI00036ED496 hypothetical protein 3.78987397056e-07 1.05410237375e-07 -110446456.532 +UniRef50_D3QF63 0.000217426656039 4.67904781824e-05 -68887918942.2 +UniRef50_G8RGA7 ATP dependent DNA helicase, RecQ family 8.89067289667e-05 1.50816518683e-05 -29804089560.2 +UniRef50_UPI00046621BD hypothetical protein 2.97933471938e-08 9.86055100277e-07 386054604.371 +UniRef50_UPI00034B9DA0 hypothetical protein 3.24534355801e-08 6.25111964113e-08 12134686.8978 +UniRef50_Q39FG9 1.98903966321e-07 4.66364665681e-07 107977166.443 +UniRef50_Q8X6C5 Xanthine dehydrogenase FAD binding subunit 2.56421807551e-05 6.60389106651e-06 -7685991173.37 +UniRef50_J0PUR2 3.89696812655e-06 1.05997482871e-06 -1145329008.16 +UniRef50_Q8NNF6 Pyruvate dehydrogenase E1 component 2.1396276354e-06 4.15500087294e-05 15910454467.4 +UniRef50_UPI00035DD0A3 hypothetical protein 1.82280404061e-07 1.87305795321e-05 7488175971.2 +UniRef50_B9L9V6 Inner membrane protein YjcH 1.82049892004e-06 6.39934054844e-07 -476608523.241 +UniRef50_P0AFN4 Phage shock protein C 4.29672991919e-05 1.75435666453e-05 -10263872813.3 +UniRef50_Q3ZTZ2 1.00342729469e-07 1.42076590748e-07 16848471.9304 +UniRef50_E1RPL7 2.35487204541e-07 3.68455028343e-07 53680742.1676 +UniRef50_UPI00040408E0 hypothetical protein 1.31454943213e-07 3.75553480562e-07 98545574.9537 +UniRef50_V4QZ67 ATPase 9.49117849326e-07 7.77178239014e-07 -69414130.6192 +UniRef50_Q5HNT4 Putative Holliday junction resolvase 2.27268171505e-05 8.7734816672e-06 -5633132761.29 +UniRef50_X6KWG2 1.6203796048e-07 4.51811738646e-08 -47176518.7505 +UniRef50_Q6F6Q1 4.76630428599e-06 8.99468350563e-05 34388425554.6 +UniRef50_A0L3B2 Diguanylate cyclase with GAF sensor 1.07582720557e-07 4.66675098863e-06 1840592177.11 +UniRef50_P67702 Antitoxin HigA 1.09153208873e-05 8.51875111142e-06 -967524627.741 +UniRef50_N8J4Y3 sn glycerol 3 phosphate binding periplasmic protein ugpB 3.83386868628e-07 1.57989452983e-07 -90995702.6332 +UniRef50_K7ARY8 3.76892291542e-06 4.38170753534e-06 247388670.775 +UniRef50_Q57SA8 7 cyano 7 deazaguanine synthase 0.000107139216711 2.9542547064e-05 -31326727754.7 +UniRef50_B2VDK4 Acyl carrier protein 4.02282145421e-07 5.3495590544e-07 53562025.0098 +UniRef50_B1Y7H6 50S ribosomal protein L1 1.64124342977e-06 4.21378696364e-05 16348984949.1 +UniRef50_M4YP28 Chemotaxis protein 2.9325353962e-06 1.01167241705e-05 2900345168.09 +UniRef50_A3M533 Lysozyme 1.79755232787e-05 8.77846249942e-05 28182791016.6 +UniRef50_K6EM30 Peptidase S8 and S53 subtilisin kexin sedolisin 5.3287527204e-07 3.7444360177e-07 -63960809.4632 +UniRef50_Q5HQ05 Laccase domain protein SERP0752 0.000223210350798 5.17606181332e-05 -69216361001.7 +UniRef50_C5AB28 4.84998188473e-06 6.04744106207e-06 483428964.369 +UniRef50_UPI0004694578 30S ribosomal protein S15 2.81416437767e-06 5.16918904623e-07 -927426187.842 +UniRef50_Q04EV5 Arginine deiminase 0.000313816321175 0.000104047249468 -84686348404.1 +UniRef50_Q1J141 Xanthine phosphoribosyltransferase 8.4823076815e-08 0.000503713880633 2.03321230759e+11 +UniRef50_Q5ZS58 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.92100490441e-07 9.58639406022e-08 -38851876.1252 +UniRef50_I2FAM4 SpfH domain band 7 family protein 1.07138880474e-06 4.18056465647e-05 16444919723.3 +UniRef50_F7ZBN3 0.000130693648902 1.54561859991e-05 -46522777896.6 +UniRef50_A1B198 4 hydroxyproline betaine 2 epimerase 1.93978508911e-05 3.29397567353e-06 -6501332042.12 +UniRef50_G8QM91 3.59350329834e-08 1.14599582012e-07 31757843.7654 +UniRef50_B9KJK7 7.26568747469e-06 5.53513782872e-06 -698644128.31 +UniRef50_UPI00036F49F7 hypothetical protein 1.30121197297e-07 2.43758610021e-06 931551897.083 +UniRef50_P75938 Flagellar basal body rod protein FlgF 3.25817232253e-05 2.34378337464e-06 -12207427379.0 +UniRef50_A0A011Q6F6 Ribosomal RNA small subunit methyltransferase I 3.23141813121e-07 9.35460427811e-08 -92690629.9432 +UniRef50_L7HXW0 2.22389871098e-07 1.23032846542e-07 -40111650.0611 +UniRef50_K1V2Z1 1.21274062033e-05 1.10043028406e-05 -453410609.55 +UniRef50_J3M0X2 9.10612646704e-08 1.75408750172e-06 671384099.524 +UniRef50_T1YBW3 ABC transporter ATP binding and permease protein 0.000106305153567 3.74470288152e-05 -27798869946.5 +UniRef50_Q216W2 Transcriptional regulator, GntR family 1.19037347493e-05 8.03250551747e-06 -1562862746.21 +UniRef50_B9KU54 2.21799677066e-05 7.64921321693e-07 -8645517017.75 +UniRef50_D8JAP3 ABC transporter 2.59151999593e-06 7.24189534428e-07 -753864222.029 +UniRef50_C4K764 Phosphopantetheine adenylyltransferase 5.56486666863e-07 2.59224291451e-07 -120008468.773 +UniRef50_Q9RWE3 1.31528219109e-06 0.000155940543345 62424115393.2 +UniRef50_A4BRR9 9.24206887868e-07 2.91450418242e-07 -255451551.583 +UniRef50_F0RR64 8.46315859607e-06 0.00301362181458 1.21321942686e+12 +UniRef50_A5IUW4 Transport system permease protein 0.000195898797271 7.93448507321e-05 -47054258495.6 +UniRef50_L2Z1P6 Evolved beta galactosidase subunit alpha 1.210547833e-05 1.7361951133e-06 -4186206880.0 +UniRef50_F6BWB1 Transcriptional regulator, MerR family 0.000145319279065 0.000131902381243 -5416566294.59 +UniRef50_I4SHI8 Rhs core protein with extension 3.68619629915e-06 1.91556781752e-06 -714824446.089 +UniRef50_UPI00018513F7 Acyl CoA dehydrogenase 5.90916572611e-08 1.17655589858e-07 23642978.2496 +UniRef50_K0SMT2 7.76238838834e-08 3.10956498172e-07 94199239.7016 +UniRef50_UPI00037E2E9B hypothetical protein 9.3905472127e-07 1.95315636629e-06 409405278.521 +UniRef50_A8KZZ6 ABC transporter related 7.82624717782e-07 5.11213272173e-05 20322351924.4 +UniRef50_UPI0003735C5A hypothetical protein 3.34342149463e-07 2.04919650784e-07 -52249450.9094 +UniRef50_A5FWE5 3.93091219731e-07 1.01004519045e-06 249071888.856 +UniRef50_A6T7G7 UPF0227 protein KPN78578_10770 1.18682373879e-05 3.27523148093e-06 -3469101932.68 +UniRef50_F8IMA6 Transposase 1.57407456725e-07 3.16118340694e-07 64073531.4598 +UniRef50_A3DJF6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.29341413128e-07 1.91631978345e-07 25147465.5693 +UniRef50_F6GAA5 1.24331211052e-07 8.95759440317e-08 -14031127.7912 +UniRef50_Q8DIA7 Phosphoribosylformylglycinamidine synthase 2 2.75870718254e-07 6.19807600038e-08 -86350000.8705 +UniRef50_R6QY26 FAD dependent oxidoreductase 4.28742249967e-06 5.47339060729e-06 478789878.511 +UniRef50_UPI000475B264 glyoxal reductase 2.31886027958e-07 3.52995108814e-07 48893222.1171 +UniRef50_A8YZY5 Anthranilate synthase 0.00019819210937 8.23369651212e-05 -46772143435.8 +UniRef50_Q9ZIJ1 Gluconate permease 7.15049044288e-06 4.76801060226e-05 16362303163.8 +UniRef50_K0LVM3 Fructose phosphotransferase system enzyme fruA homolog 0.000130498656042 4.34863162488e-05 -35127949336.0 +UniRef50_UPI00047E7610 peroxiredoxin 1.11570069838e-07 1.40028250214e-06 520269023.199 +UniRef50_UPI0001912667 hypothetical protein 8.45963288604e-06 2.14395244822e-06 -2549717694.86 +UniRef50_A4J4I2 Glucose 1 phosphate adenylyltransferase 5.67924791033e-06 2.11200048872e-05 6233623070.97 +UniRef50_P42425 Lon protease 2 6.80563681868e-07 1.05715087767e-05 3993095910.33 +UniRef50_W7Z889 7.86599446498e-08 1.34590878925e-07 22580004.5166 +UniRef50_I2NPW1 1.1316828138e-07 3.16415700282e-06 1231721586.69 +UniRef50_A0L4I8 Transcriptional regulator, BolA protein family 3.16754093137e-07 5.10961821583e-07 78404043.1705 +UniRef50_A6M0C5 Metallophosphoesterase 1.04671728094e-05 1.89499835587e-05 3424614795.29 +UniRef50_UPI000399D7FF dihydrolipoyl dehydrogenase 3.87224790647e-08 5.84226790888e-08 7953212.49837 +UniRef50_Q6A9R0 Ribosomal RNA small subunit methyltransferase H 2.78292766648e-06 2.18833950979e-05 7711093091.15 +UniRef50_UPI0004414ABB LamB YcsF family protein 5.77368724286e-07 4.43604798223e-07 -54002138.4196 +UniRef50_Q9I3J5 5 hydroxyisourate hydrolase 3.88162789272e-05 1.92137387409e-05 -7913786023.43 +UniRef50_Q7DKE3 Nitrile hydratase activator 5.3152777933e-08 6.45843554743e-08 4615068.13465 +UniRef50_C5MZU9 Formate nitrite transporter 0.000238758918873 6.47110925669e-05 -70265243286.7 +UniRef50_UPI000364C078 hypothetical protein 5.59382215456e-07 1.86382696268e-07 -150584483.115 +UniRef50_Q88Z97 Methionine tRNA ligase 0.00011407950296 2.91596640528e-05 -34283181050.4 +UniRef50_X2HX12 Membrane protein 2.20752040266e-06 3.6277104479e-05 13754309172.4 +UniRef50_E3HGU2 Oxidoreductase FAD binding domain protein 3 2.14023427242e-06 1.8248200115e-06 -127336607.702 +UniRef50_UPI0001816FFE transposase 1.34295121259e-06 4.60934723138e-08 -523557383.985 +UniRef50_K8C391 2.30136252884e-07 2.12797189621e-06 766179538.275 +UniRef50_P28998 NADP specific glutamate dehydrogenase 1.01533899186e-06 0.000151768348663 60860839951.6 +UniRef50_UPI00029B44FF UDP N acetylglucosamine 1 carboxyvinyltransferase 1.18488096219e-07 1.56444469029e-07 15323453.4805 +UniRef50_A0RUI8 Proline tRNA ligase 3.8419952658e-08 1.7110977547e-07 53568509.7564 +UniRef50_B2TJ76 Tetratricopeptide repeat domain protein 2.68100697518e-06 2.72903020465e-05 9935074410.29 +UniRef50_A0A023S0D0 LysR family transcriptional regulator 1.47072463189e-06 5.97869561808e-05 23542978296.9 +UniRef50_K0S2A3 4.76220560023e-07 5.03166655891e-07 10878469.5677 +UniRef50_UPI0002DDE7B4 nitrate nitrite transport protein NarU 3.3866149284e-07 1.34151609726e-06 404864710.214 +UniRef50_G2AG81 Protein ydeP domain protein 1.80327701681e-06 6.8694956856e-06 2045294646.08 +UniRef50_Q92ID5 NADH quinone oxidoreductase subunit A 6.222343482e-06 1.09848940743e-05 1922700117.18 +UniRef50_UPI00046263A7 PREDICTED 1.15637014494e-07 9.45190054243e-08 -8525599.40855 +UniRef50_F3ZH54 Putative xanthine dehydrogenase YagT iron sulfur binding subunit 3.96804776801e-07 3.23768949486e-06 1146900022.26 +UniRef50_P55611 Probable trehalose phosphate phosphatase 1.92109556561e-07 2.16597624687e-07 9886133.60485 +UniRef50_UPI000378EE70 hypothetical protein 5.37898734179e-08 2.21950341619e-07 67888444.5737 +UniRef50_A4Y1A0 Membrane protein insertase YidC 4.93008721335e-06 9.52102583469e-06 1853418258.59 +UniRef50_X2MVD0 3.4321860727e-05 3.62525870448e-05 779457907.172 +UniRef50_B9KWB3 1.05662842704e-05 1.58205377784e-05 2121206618.12 +UniRef50_F3ZFZ6 2.30789690417e-07 1.83342994618e-05 7308609049.76 +UniRef50_A8IHG6 Predicted protein 8.62825117371e-07 2.02654592268e-07 -266518942.187 +UniRef50_Q1QCK7 Glutamate synthase 8.79237551642e-07 5.39877254308e-05 21440548271.3 +UniRef50_J0KVM1 2.0367949039e-06 1.30959946019e-05 4464734629.72 +UniRef50_C6SPT4 1.30773292188e-07 1.20666945286e-07 -4080056.26316 +UniRef50_UPI000309C6DF N acetyl gamma glutamyl phosphate reductase 4.80840008271e-08 7.78347927058e-07 294816508.366 +UniRef50_UPI000375AEDF hypothetical protein 4.25450726983e-08 4.64529906934e-08 1577674.45017 +UniRef50_B4JDR2 GH10507 7.87503365387e-09 1.3128287887e-08 2120803.19859 +UniRef50_U6UKQ1 Hydroxylamine reductase 2.49977955003e-05 1.95837527372e-05 -2185715501.24 +UniRef50_P26512 Aspartokinase 3.05211855141e-06 2.92512211429e-05 10576899215.3 +UniRef50_W4TKQ6 6.02203169636e-08 1.75926130882e-06 685923697.991 +UniRef50_UPI000463F4EC LamB YcsF family protein 1.25163450537e-06 5.06938369323e-07 -300642968.571 +UniRef50_G2JZ43 Carnitine transport permease protein OpuCB 0.000240809615487 6.22899294388e-05 -72070587940.5 +UniRef50_UPI00047A693B chemotaxis protein CheY 1.47456717649e-06 9.5615594769e-07 -209288974.688 +UniRef50_J8VGX4 2.58128433292e-06 6.75225369695e-07 -769499393.426 +UniRef50_UPI00045746A5 PREDICTED 6.06270802374e-08 5.53479271961e-08 -2131258.86527 +UniRef50_UPI00046E1FAA PREDICTED 2.3672919339e-08 1.45269163907e-07 49089896.0858 +UniRef50_P32154 Fructose like PTS system EIIBC component 2.97470779452e-05 1.26667182506e-05 -6895550808.29 +UniRef50_M9VG84 Class I glutamine amidotransferase 7.70339635806e-06 3.83588308913e-05 12375975105.5 +UniRef50_UPI0003B3C78A acyl CoA synthetase 4.28009801137e-08 4.72697271789e-07 173554408.37 +UniRef50_B7IPS6 Prolipoprotein diacylglyceryl transferase 7.39549303693e-08 9.50354969344e-06 3806843119.99 +UniRef50_D3DYK7 ATPase 2.81018126737e-05 1.41441206235e-05 -5634891560.81 +UniRef50_UPI000225AB9D 3 oxoacyl ACP synthase 3.78193190808e-07 2.18405556334e-07 -64508228.8519 +UniRef50_Q57GZ6 Maltoporin 2.86651406003e-05 1.50177096013e-05 -5509635367.11 +UniRef50_R6ZP96 7.70019119217e-07 3.30663482176e-07 -177373262.173 +UniRef50_Q59660 Succinate dehydrogenase hydrophobic membrane anchor subunit 5.83710041677e-05 6.49348392465e-06 -20943591530.9 +UniRef50_B6IRS5 50S ribosomal protein L15 2.58552047156e-06 3.84645017588e-05 14484785030.3 +UniRef50_C6D8U7 2.68992391105e-06 9.80671864723e-06 2873137367.89 +UniRef50_S4XBL3 1.00287016387e-07 2.66895408891e-07 67261852.5688 +UniRef50_I0EUL3 N5 glutamine S adenosyl L methionine dependent methyltransferase 2.98364448205e-06 7.42744916738e-05 28780989848.4 +UniRef50_UPI00032980B7 PREDICTED 6.87903659029e-07 8.81008018107e-07 77958599.4167 +UniRef50_D1DJZ6 TspB like protein 3.53836626628e-06 6.87276751936e-05 26317723976.7 +UniRef50_UPI0003765EEE hypothetical protein 4.53391372037e-08 2.51753788557e-07 83332127.7438 +UniRef50_D1AIW2 PTS system Galactitol specific IIC component 5.41991587796e-06 1.49671143839e-05 3854321194.15 +UniRef50_Q18KF1 ABC type transport system ATP binding protein 2.8349868296e-05 5.67020387033e-06 -9156058839.43 +UniRef50_UPI0004293C91 UDP glucose 6 dehydrogenase 3.45078338057e-08 6.69270497986e-08 13088035.3249 +UniRef50_Q9CDF7 Putative sugar uptake protein YxfA 1.80671658487e-05 2.06756152991e-06 -6459236600.72 +UniRef50_B2I785 NADH quinone oxidoreductase subunit B 3.93303267502e-07 9.15051335606e-07 210636097.662 +UniRef50_Q3J1U1 RNA polymerase sigma 54 factor 7.91355807249e-06 1.85539291214e-06 -2445755617.28 +UniRef50_P52073 Glycolate oxidase subunit GlcE 4.21134513651e-05 5.85752142543e-06 -14636963826.9 +UniRef50_K0STI8 1.72587294925e-06 3.47052890423e-07 -556646577.774 +UniRef50_D2B0E6 1.62213312073e-06 3.14638937302e-06 615360953.777 +UniRef50_W9FWD7 3.90772245237e-07 1.99227612302e-08 -149716487.529 +UniRef50_B5QX27 Quinolinate synthase A 1.23956515034e-05 1.76133223777e-06 -4293205185.29 +UniRef50_F4FX21 Transcriptional regulator, MerR family 1.12021376954e-05 5.52619422699e-05 17787483781.3 +UniRef50_C6AZU8 ABC transporter related 6.44907725824e-07 0.000516041677848 2.08072000728e+11 +UniRef50_A5ISU0 von Willebrand factor, type A 0.000208494237473 5.49579432466e-05 -61984486081.2 +UniRef50_B4W755 1.71456900976e-06 7.62156523879e-07 -384500607.966 +UniRef50_UPI0003B6DDE5 quaternary ammonium transporter 9.65518338205e-07 2.66445340561e-07 -282224347.739 +UniRef50_P03835 Transposase InsG for insertion sequence element IS4 3.18025455041e-05 6.49310311281e-06 -10217732475.2 +UniRef50_L8UD09 1.22741933534e-05 6.56042064705e-05 21529980728.2 +UniRef50_A6M0D9 Transcriptional regulator, XRE family 3.04824396969e-05 5.04814880674e-06 -10268135346.2 +UniRef50_C7MAG4 Phosphate sulfate permease 1.54090502289e-06 1.93855785986e-05 7204113701.28 +UniRef50_B9KUA0 CBS domain containing protein 9.9325726005e-05 7.31306832862e-06 -37146639026.2 +UniRef50_UPI00045E7085 hypothetical protein 1.40956570296e-07 6.65012865189e-07 211567957.142 +UniRef50_Q4UKX5 DNA gyrase subunit B 8.44032146265e-08 1.0894103652e-07 9906219.81134 +UniRef50_A3M4L9 4.28703959695e-06 4.96136045192e-05 18298890478.6 +UniRef50_Q8EUR3 Spermidine putrescine import ATP binding protein PotA 4.88501174746e-08 7.8638896588e-08 12026095.6775 +UniRef50_A8GIP4 Lysine tRNA ligase 2.08551766306e-05 2.5269026749e-05 1781925456.83 +UniRef50_UPI0004654768 hypothetical protein 4.42983997484e-07 4.03003041678e-07 -16140802.4804 +UniRef50_G1C7I1 Nucleoid occlusion protein 7.03770042794e-08 2.38279475843e-07 67784288.1654 +UniRef50_Q28NF0 Probable chemoreceptor glutamine deamidase CheD 2.23919160864e-06 3.79650635368e-07 -750719510.043 +UniRef50_M1YTR4 2.61008601306e-06 2.85549528564e-05 10474261124.0 +UniRef50_D7BML1 Putative molybdopterin guanine dinucleotide biosynthesis protein A 6.61523275945e-08 2.96960182763e-07 93179963.4626 +UniRef50_UPI0003B32011 cytidylate kinase 6.79425891723e-08 7.53321318664e-07 276695803.639 +UniRef50_F4A9G3 Glycerol dehydratase activator 1.23227199839e-06 9.06916907809e-06 3163851520.62 +UniRef50_B4U247 Shikimate kinase 2.00521934516e-05 3.6202695891e-05 6520156023.74 +UniRef50_P06200 Hemolytic phospholipase C 1.52950057983e-05 1.63090085884e-06 -5516366841.5 +UniRef50_X5PED3 2.95715982472e-06 1.34223663358e-06 -651964309.599 +UniRef50_Q6N9W0 Methionine import ATP binding protein MetN 1 1.81426294761e-05 3.59535445064e-06 -5872913442.93 +UniRef50_UPI000464B4E9 hypothetical protein 7.58806900332e-07 9.00385464282e-08 -269989991.182 +UniRef50_B3EQT3 Recombination protein RecR 0.000102357935342 4.40771201791e-06 -39543707140.3 +UniRef50_Q6ARX8 NADPH dependent 7 cyano 7 deazaguanine reductase 1.55281880435e-06 3.35558157129e-05 12920002572.9 +UniRef50_X1YMT4 1.68558368661e-06 4.75422653861e-07 -488556859.267 +UniRef50_B9KK74 Cellulose synthase 5.68613378045e-06 4.62773282699e-06 -427289452.952 +UniRef50_Q1GHF8 TRAP transporter solute receptor TAXI family 5.85931458442e-07 8.68942857247e-08 -201467430.501 +UniRef50_UPI000472F33D hypothetical protein 1.281434778e-06 1.15206629538e-07 -470820614.762 +UniRef50_I6TQ16 Pyridoxamine kinase 3.6608271265e-05 1.42333116197e-05 -9033045780.44 +UniRef50_P57024 Outer membrane lipoprotein LolB 1.95588595265e-06 2.82318876454e-05 10607944326.1 +UniRef50_Q17X82 1.80327701681e-06 3.7807739618e-05 14535443376.5 +UniRef50_B9KKX8 Cyclic nucleotide binding protein 3.15808915412e-05 5.43476712473e-06 -10555511276.0 +UniRef50_UPI000255F810 TetR family transcriptional regulator 1.06956758606e-07 1.10213740362e-07 1314883.50256 +UniRef50_Q1QE80 Spermidine putrescine import ATP binding protein PotA 1.16629398711e-06 7.33743777997e-07 -174625827.407 +UniRef50_UPI00029CBAAC methylmalonate semialdehyde dehydrogenase , partial 6.10764144519e-07 8.12146028803e-08 -213785648.263 +UniRef50_UPI00036486F4 hypothetical protein 2.36189890633e-07 4.84266297218e-07 100151489.578 +UniRef50_S9UQG0 1.82284194511e-07 6.08147325114e-07 171926171.753 +UniRef50_M0SWW4 8.29850184897e-08 9.43414374549e-08 4584725.69518 +UniRef50_UPI00045D969B PREDICTED 1.78804159785e-07 2.9718083555e-07 47790116.6515 +UniRef50_Q03736 Cytochrome c oxidase subunit 2 9.47661857264e-05 4.18342453937e-05 -21369273860.3 +UniRef50_UPI00046AFEA5 membrane protein 1.05305110155e-06 6.52494059597e-07 -161709793.224 +UniRef50_UPI0004706261 hypothetical protein 1.61726120627e-08 9.12588080482e-08 30313218.7306 +UniRef50_Q5LRL4 Outer membrane transporter, OMPP1 FadL TodX family 1.33689776985e-07 8.15837109614e-08 -21035858.2671 +UniRef50_UPI0002F47A97 hypothetical protein 1.54775223974e-07 6.58541654844e-07 203376690.051 +UniRef50_J9P1L3 3.93462079217e-08 1.68120808816e-06 662839788.964 +UniRef50_A6LXP7 Proton translocating NADH quinone oxidoreductase, chain L 3.22892117453e-06 1.07386201179e-05 3031757617.81 +UniRef50_A5EWC1 Conserved hypothetical lipoprotein 6.64965350226e-08 1.05076426078e-07 15575175.4476 +UniRef50_A0A024HWT5 5.60648193047e-08 3.78900625792e-07 130332776.72 +UniRef50_P42887 Urease subunit gamma 1.10528676429e-06 4.00364551786e-06 1170102995.68 +UniRef50_A3PPK4 Amidase 2.96405115262e-05 1.26790394002e-05 -6847554437.94 +UniRef50_X9TRB8 1.97124959361e-05 9.66739235253e-06 -4055331583.98 +UniRef50_UPI00047046AB Fis family transcriptional regulator 4.40511671648e-08 1.10659360512e-07 26890545.0287 +UniRef50_UPI00037B45E9 GTPase Era 1.90493176995e-07 1.38637928006e-06 482793894.982 +UniRef50_UPI000262D14F electron transport complex RsxE subunit 7.14473404273e-06 2.04477727402e-06 -2058915131.04 +UniRef50_N9HZ93 2.02949456367e-06 0.000143846749627 57253366162.4 +UniRef50_J9H507 Membrane protein 1.36743942971e-05 3.38902452903e-06 -4152329991.06 +UniRef50_UPI0004646E3C ABC transporter ATP binding protein, partial 7.30321781378e-08 3.1784767616e-07 98835020.7755 +UniRef50_UPI00034566D0 hypothetical protein 5.56743285462e-08 3.1318701243e-08 -9832665.61946 +UniRef50_R5FYT2 Riboflavin synthase alpha subunit 3.48986334422e-06 3.41722989211e-05 12386875758.2 +UniRef50_Q0FTZ1 ISSpo9, transposase 1.42616061335e-06 2.79400464184e-07 -462961144.549 +UniRef50_UPI00045E74EB hypothetical protein 2.79890119832e-07 9.60503450558e-07 274771953.679 +UniRef50_A0A058T3B4 Transcriptional regulator 8.27556870044e-06 6.76297798153e-06 -610651434.799 +UniRef50_Q9RXT9 Thiosulfate sulfurtransferase 2.26039514279e-06 0.000521767910053 2.09731558843e+11 +UniRef50_L7WYV1 Lipase esterase 0.00019694907946 5.28986166887e-05 -58154939518.6 +UniRef50_W0HAM9 4.55428215126e-07 3.99638582148e-07 -22522959.449 +UniRef50_B9E397 7.03276372884e-06 5.72087756635e-06 -529624542.451 +UniRef50_N2IAD7 Response regulator 2.61156910459e-07 3.09704722598e-07 19599347.5092 +UniRef50_UPI000467FD4C isopentenyl diphosphate delta isomerase 3.64980715755e-06 3.75132160252e-07 -1322026481.19 +UniRef50_UPI00046ABA5E hypothetical protein 1.2674527e-07 7.82197920545e-06 3106660370.88 +UniRef50_A0A033UF50 2.51624247006e-07 2.65546141239e-07 5620439.54272 +UniRef50_E0MPD3 UPF0301 protein R2A130_1378 9.69915892978e-08 1.46334637461e-07 19920394.0508 +UniRef50_UPI00036D5BBB hypothetical protein 1.17619239949e-06 8.66547325566e-07 -125007516.115 +UniRef50_F3WHU8 Peptidase M16 inactive domain protein 1.93364966398e-05 6.76297798153e-06 -5076083776.78 +UniRef50_C0DSE0 BolA like protein 7.13933080481e-07 5.1741578668e-06 1800647479.35 +UniRef50_O23346 Imidazoleglycerol phosphate dehydratase 2, chloroplastic 9.45523153798e-08 1.3736523189e-07 17284099.7687 +UniRef50_UPI00035E3A63 hypothetical protein, partial 5.75684487727e-07 5.66306545362e-07 -3785990.41304 +UniRef50_B6JMQ6 tRNA methyltransferase 1.73158710486e-06 1.91040875e-05 7013491594.05 +UniRef50_UPI00006CF872 ribosomal protein L33 containing protein 2.9780203437e-06 7.84699501181e-07 -885470539.199 +UniRef50_UPI00045E7D30 hypothetical protein 2.98017684117e-07 4.24904437295e-07 51225739.3335 +UniRef50_F3ZJM5 Putative alpha ribazole phosphatase 2.24228029182e-06 1.17500015334e-06 -430874088.904 +UniRef50_Q8FFY2 1.10848701004e-05 2.67658645188e-06 -3394527290.15 +UniRef50_Q7UM14 Tyrosine tRNA ligase 1.46242244585e-07 2.32790028281e-07 34940402.3388 +UniRef50_F9YXK4 Membrane spanning protein 5.99184109289e-06 6.32048969372e-05 23097612727.5 +UniRef50_A7IAF5 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.34326100281e-07 1.59322224952e-07 -111022439.147 +UniRef50_M1QZS4 7.99124617331e-08 1.33316332484e-07 21559797.9613 +UniRef50_UPI00016C5421 molybdenum cofactor biosynthesis protein 3.04791243288e-08 9.20591243519e-08 24860601.6809 +UniRef50_Q9JXP4 Probable aromatic acid decarboxylase 1.61537609138e-05 3.07149463296e-05 5878529238.2 +UniRef50_R5EVW4 9.55119188127e-08 2.36466685947e-05 9507890955.25 +UniRef50_UPI0002F70260 hypothetical protein 2.24909558592e-08 1.14987187863e-06 455137513.042 +UniRef50_Q2RZJ2 Proline tRNA ligase 4.36487920525e-08 2.90206790404e-05 11698382699.4 +UniRef50_C6ECF3 3 keto L gulonate 6 phosphate decarboxylase UlaD 3.95606356166e-05 2.29280855424e-05 -6714764569.3 +UniRef50_UPI000349CFD5 hypothetical protein 6.03736167793e-08 9.82547471564e-08 15293077.187 +UniRef50_R1CIV3 1.53033759375e-06 8.30318758772e-07 -282606193.878 +UniRef50_P17888 Primosomal protein N 2.34873820062e-05 6.31457387298e-06 -6932873377.43 +UniRef50_Q9AGA7 PTS system alpha glucoside specific EIICB component 2.61712959025e-05 1.65348066374e-05 -3890368969.34 +UniRef50_P15032 Exodeoxyribonuclease 8 1.20423127558e-05 1.60820303146e-06 -4212378136.62 +UniRef50_A8TPL9 1.0510202443e-06 3.84816287297e-07 -268954712.684 +UniRef50_UPI00046AC3A5 hypothetical protein 1.42968099677e-06 1.44169743756e-07 -518976667.837 +UniRef50_P0AG04 3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein 3.3522341444e-05 8.69470419278e-07 -13182364728.5 +UniRef50_G2L7T9 5.4975088094e-07 9.4307761357e-07 158790828.625 +UniRef50_UPI000479AE2C hypothetical protein 1.2428523054e-06 2.09906096445e-07 -417013060.233 +UniRef50_A3PKK4 Acyl homoserine lactone synthase 0.000160376995635 6.15627170489e-05 -39892536852.8 +UniRef50_A3PS02 WGR domain protein 1.91472046163e-05 2.23935335125e-06 -6825907038.39 +UniRef50_UPI0002B9C508 hypothetical protein 3.76422119524e-07 1.58700198968e-06 488725949.069 +UniRef50_Q9RUQ6 Carboxymethylenebutenolidase related protein 1.29276023577e-06 4.11418648702e-05 16087572544.4 +UniRef50_UPI0001584880 hypothetical protein BC1G_07259 8.35859609336e-08 1.90444822732e-07 43140233.8135 +UniRef50_H2G856 Putative terminase large subunit 1.58846476951e-07 5.92579022168e-07 175103151.001 +UniRef50_Q87UY0 Glucans biosynthesis protein G 9.53652441026e-08 1.54742804265e-07 23971449.6822 +UniRef50_UPI0003B5126A addiction module toxin YoeB 3.93094160611e-08 4.35044208839e-07 159762992.056 +UniRef50_D9Y290 2.89381018236e-07 9.45662331215e-08 -78649119.3968 +UniRef50_UPI0003F9F930 hypothetical protein, partial 5.18589344009e-08 4.70595857386e-06 1878917136.67 +UniRef50_UPI00046644CC peptide ABC transporter permease 3.61125654178e-07 7.12372529436e-07 141802673.826 +UniRef50_Q65I39 3 phosphoshikimate 1 carboxyvinyltransferase 4.36987252951e-08 8.58249345441e-08 17006867.6205 +UniRef50_P0AEB6 Low conductance mechanosensitive channel YnaI 2.9589201153e-05 1.78799216058e-06 -11223689229.4 +UniRef50_X0V3Z0 Marine sediment metagenome DNA, contig 1.6247663189e-07 6.64267247269e-07 202579029.092 +UniRef50_D3SDU3 1.19484603416e-05 1.99108500208e-07 -4743357519.13 +UniRef50_C3SN52 1.56585348358e-05 5.13993913508e-06 -4246486162.06 +UniRef50_UPI0003745614 hypothetical protein 8.90722396307e-07 4.01457460594e-07 -197522258.503 +UniRef50_H0P3C7 1.82203646966e-07 1.67591812148e-07 -5898977.0234 +UniRef50_A0A024HAE7 Glucose 6 phosphate 1 dehydrogenase 9.10472744036e-06 1.26714598645e-05 1439933648.35 +UniRef50_UPI0001911F20 hypothetical protein, partial 2.99893934122e-06 8.14136283224e-06 2076059467.96 +UniRef50_A0A009L0Q9 Diguanylate cyclase domain protein 9.65437311629e-07 1.22323636676e-05 4548596430.65 +UniRef50_A0A008QSP4 5.7189680724e-06 2.47300607664e-06 -1310434690.12 +UniRef50_Q3J2Z8 RNA polymerase sigma factor 3.45616767785e-05 1.51915189378e-05 -7819970418.86 +UniRef50_UPI0003753584 hypothetical protein 2.1955652932e-05 5.30410580916e-06 -6722433910.94 +UniRef50_Q02Y94 Na+ driven multidrug efflux pump 5.02636168881e-06 5.87458034935e-06 342436282.073 +UniRef50_UPI0003B604B4 hypothetical protein 4.24988612334e-07 7.31425835346e-07 123712467.338 +UniRef50_D0NVH9 Adenylosuccinate synthetase 2.87895369053e-08 8.45281830035e-08 22502375.4199 +UniRef50_W5XEU5 Putative N acyl D glucosamine 2 epimerase 4.70181795977e-07 3.12072522623e-08 -177219410.121 +UniRef50_V4N2T0 2.96996414055e-06 1.71618448761e-06 -506166231.498 +UniRef50_A4THV9 1.87935115765e-05 5.00637535903e-06 -5566036078.19 +UniRef50_UPI0003802F25 hypothetical protein 8.19038684565e-08 2.93827398834e-07 85556129.8078 +UniRef50_Q8FUU5 Zinc import ATP binding protein ZnuC 1.60382392661e-07 1.1082702923e-07 -20006108.3298 +UniRef50_W5XB82 Putative family S53 non peptidase like protein 1.11684397132e-07 7.25431825905e-07 247777368.524 +UniRef50_H3X653 Osmosensitive K+ channel His kinase sensor domain protein 8.89788733323e-05 2.40459979292e-05 -26214198616.2 +UniRef50_Q2W7P1 6.09294336383e-07 2.17145619031e-07 -158315249.401 +UniRef50_R5BHR4 Phage terminase 7.60376075425e-08 1.58288402108e-06 608332388.231 +UniRef50_A5N0V8 LivM 7.83602613819e-06 1.29252319866e-05 2054574852.58 +UniRef50_A5N2L5 Orotidine 5 phosphate decarboxylase 4.49451779777e-06 1.47293199773e-05 4131915235.01 +UniRef50_A6LXZ9 MATE efflux family protein 8.28425725361e-07 1.36836684351e-05 5189819233.47 +UniRef50_N9WGA2 7.79714799994e-07 1.13109514366e-06 141856556.66 +UniRef50_UPI00016C57A2 elongation factor G, partial 2.97547815642e-08 6.7423041706e-08 15207138.8608 +UniRef50_C1D5R6 Membrane protein 2.03217668471e-07 1.36717420774e-05 5437408581.25 +UniRef50_UPI00036AFE80 cell wall hydrolase 2.35813996351e-07 1.7178873415e-07 -25847784.0289 +UniRef50_A3M865 1.89659682949e-07 9.21776882898e-06 3644758449.61 +UniRef50_Q7WLL0 Cysteine tRNA ligase 2.84442733468e-08 9.84117151909e-08 28246714.8695 +UniRef50_P18249 RNA polymerase principal sigma factor HrdD 3.76532677997e-06 4.82601357197e-05 17963100381.7 +UniRef50_UPI0003B42D49 5 hydroxymethyluracil DNA glycosylase 7.71423207418e-08 1.22700015603e-06 464211718.449 +UniRef50_D6UF03 4.67327631456e-05 9.35368114805e-06 -15090394095.3 +UniRef50_R1CXM7 7.57005622317e-08 2.49733016433e-07 70259037.3793 +UniRef50_UPI000399BF1B S adenosylmethionine synthetase 9.02957723469e-08 4.59897817931e-07 149212881.329 +UniRef50_X5ZAH5 3.39314809803e-05 2.24166924829e-05 -4648661418.75 +UniRef50_UPI0003698C0E hypothetical protein, partial 4.63196175671e-07 1.71251926698e-07 -117861475.869 +UniRef50_W6EUE7 8.40559837509e-07 2.49047435453e-07 -238800815.383 +UniRef50_V5SUH2 LysR family transcriptional regulator 3.81683495918e-06 7.80790571617e-06 1611244240.54 +UniRef50_M7CYD5 Thioesterase 4.37378318337e-05 2.45555310332e-05 -7744130226.46 +UniRef50_Q64GH1 Putative enoyl reductase 4.73488335197e-07 2.48862114694e-06 813533844.56 +UniRef50_D6GTM4 Rubredoxin 2.73319257479e-06 2.21126545738e-05 7823726621.74 +UniRef50_E1VWJ8 Protein NrdI 9.53571641282e-08 2.40274162299e-05 9661665924.25 +UniRef50_A8F516 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.16858307672e-07 9.96840368342e-08 -6933463.88922 +UniRef50_UPI000225A8AA NUDIX hydrolase 1.0080025987e-06 1.89306916022e-07 -330517493.623 +UniRef50_UPI000225AEF7 D amino acid aminotransferase 3.42553362664e-07 4.13021330855e-07 28448783.4979 +UniRef50_UPI00047468F0 sulfurase 5.95730804309e-07 3.4291244526e-07 -102065873.978 +UniRef50_UPI00041C6338 hydrolase 1.52788192275e-07 5.95997093552e-08 -37621334.106 +UniRef50_W4HIK8 3.16772381427e-07 6.13760513858e-08 -103106632.503 +UniRef50_B6XGE2 Putative dGTPase 1.51631070393e-07 4.54106599638e-07 122113082.948 +UniRef50_A6KZD0 1.05526087992e-07 3.96289570355e-05 15956094080.5 +UniRef50_S5CIR4 EAL domain protein 1.88258272251e-06 2.58798986746e-05 9688010930.04 +UniRef50_I6X6K9 2,5 diketo D gluconic acid reductase A 5.29763296825e-05 2.4963329112e-05 -11309192088.5 +UniRef50_Q5HL78 Esterase, putative 0.000203190583706 5.86911518488e-05 -58336193848.1 +UniRef50_K3YW20 7.13676375634e-06 2.43071201698e-06 -1899890836.93 +UniRef50_D7I005 7.76718220114e-06 8.22170111935e-06 183494864.856 +UniRef50_UPI000380E85A hypothetical protein 4.35166584423e-08 5.45701110132e-08 4462414.44399 +UniRef50_UPI0003AFAFF5 PREDICTED 1.69708702794e-07 6.88725507147e-08 -40708791.993 +UniRef50_UPI0003723B10 hypothetical protein 4.1106629957e-07 1.65486609155e-07 -99143534.6222 +UniRef50_C5N5L5 1.55131228296e-05 2.24291168503e-05 2792071654.95 +UniRef50_UPI000474FC78 hypothetical protein, partial 9.32607433999e-07 2.16636953756e-05 8369394601.08 +UniRef50_G7M098 7.20003613245e-06 1.33219027256e-05 2471472667.41 +UniRef50_F0RKF5 Riboflavin synthase, alpha subunit 1.79186387112e-06 0.000348376547182 1.39920489725e+11 +UniRef50_Q6A5X8 Arginine tRNA ligase 2.16671069631e-06 5.80807181751e-05 22573170961.2 +UniRef50_H0YP80 4.87434185307e-07 3.34184396598e-07 -61868820.2882 +UniRef50_UPI00022CA5D3 PREDICTED 1.3794472212e-07 8.18378333487e-08 -22651039.5059 +UniRef50_Q8REW5 Precorrin 8X methylmutase 3.70084302795e-06 6.68399608368e-06 1204335496.0 +UniRef50_Q56002 Serine acetyltransferase 1.14849751684e-07 3.37623211618e-07 89936379.5131 +UniRef50_UPI00036189B5 DNA glycosylase 1.16856442842e-06 2.15878707709e-07 -384610916.219 +UniRef50_A5ULV9 Phosphatidylserine synthase, PssA 5.51972457237e-05 5.51516807139e-06 -20057264415.9 +UniRef50_UPI0001FFE88F glycosyl transferase group 1 8.1318039808e-07 2.85973428186e-06 826218916.922 +UniRef50_UPI00047588F4 hypothetical protein 4.04482602979e-08 3.91968101177e-08 -505225.794767 +UniRef50_O27179 Pyruvate carboxylase subunit B 1.3127135154e-05 5.5822710661e-06 -3045954218.18 +UniRef50_D1BH34 9.35915674838e-06 8.35753083995e-05 29961971156.1 +UniRef50_UPI000441E63E PREDICTED 2.40188733004e-07 3.88841685102e-07 60013020.9388 +UniRef50_UPI00037429B4 hypothetical protein, partial 4.64760218352e-08 3.27809735148e-07 113577872.417 +UniRef50_C4Z1D7 Proline tRNA ligase 8.58474907041e-08 2.72220581631e-07 75241103.8622 +UniRef50_W8YSM1 6.11776620942e-07 1.51075562601e-06 362928856.059 +UniRef50_UPI0004785C2A hypothetical protein 8.04123270375e-07 4.35465616824e-06 1433393700.8 +UniRef50_Q168G3 MFS protein, putative 9.62455925541e-05 3.36029065433e-05 -25289621054.8 +UniRef50_UPI0003652F52 hypothetical protein 1.88415666548e-07 7.95694200055e-07 245165796.122 +UniRef50_UPI000368594E hypothetical protein 1.73921016323e-07 1.45589174227e-07 -11437912.325 +UniRef50_V9U5K5 9.16183520793e-07 2.88539313933e-06 794994087.924 +UniRef50_F8KHX1 ArsR family transcriptional regulator 2.77035123844e-05 1.6681105664e-05 -4449880853.17 +UniRef50_A6LZC7 2.73540571632e-06 4.18888943548e-06 586789213.676 +UniRef50_R7NTH8 1.84957009686e-07 3.15625747611e-06 1199550460.25 +UniRef50_Q8SDT5 Phi ETA orf 55 like protein 7.12670913339e-06 2.14359948499e-06 -2011742514.69 +UniRef50_Q493G3 Protoheme IX farnesyltransferase 6.40240395441e-08 1.3938849371e-07 30425554.9726 +UniRef50_G7M7B0 Cell wall binding repeat containing protein 3.99301590658e-06 1.94076597371e-05 6223080873.32 +UniRef50_I1D602 8.34229022179e-07 1.65705851899e-06 332186365.116 +UniRef50_W6CDL1 Bat2 domain protein 1.05880565126e-06 8.12893941335e-07 -99277574.9727 +UniRef50_F8KRB8 Cell division protein FtsI [Peptidoglycan synthetase] 2.94159524814e-06 2.46915371529e-05 8780718448.77 +UniRef50_A0A011RLE4 Rhodanese like domain protein 2.03355377852e-07 5.88352129361e-07 155427913.026 +UniRef50_A5UM88 Adhesin like protein 3.39643365866e-05 5.10472542113e-06 -11650979174.8 +UniRef50_UPI000200387F AGCS family alanine or glycine 5.45962532495e-08 1.28396000124e-06 496309231.053 +UniRef50_U5MPP2 5 nucleotidase 1.82654510734e-06 2.81701149624e-06 399863435.588 +UniRef50_R9YN62 TM2 domain protein 0.000104552731741 1.01833346619e-05 -38098083643.6 +UniRef50_UPI00037681F6 50S ribosomal protein L20 5.71057538871e-07 7.79527343542e-07 84161818.3579 +UniRef50_P0AA55 Protein QmcA 3.27691588784e-05 4.04339981157e-06 -11596941440.0 +UniRef50_F5NZP6 YhaO 1.23843488018e-07 3.36653233563e-07 85913905.7458 +UniRef50_P37754 6 phosphogluconate dehydrogenase, decarboxylating 0.000134082062896 4.72666050494e-05 -35048465678.1 +UniRef50_UPI00035F8157 hypothetical protein 1.48594170887e-08 3.14700786665e-07 121049640.365 +UniRef50_B8H8I4 Glucose 1 phosphate adenylyltransferase 2.99611913936e-08 1.12887262103e-07 33478272.3627 +UniRef50_M9R3S4 Protease do 6.45258169356e-05 4.88741654276e-06 -24076754084.0 +UniRef50_A5LX88 HAD superfamily protein phosphatase 1.54243345532e-06 6.42341194012e-06 1970510910.66 +UniRef50_B7MG32 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 3.65534242866e-05 1.72119206463e-05 -7808402366.53 +UniRef50_P00935 Cystathionine gamma synthase 4.3035964479e-05 1.4199085249e-05 -11641802013.5 +UniRef50_H3RCL8 Oxidoreductase domain protein 1.89704956309e-06 1.58438894981e-06 -126224926.358 +UniRef50_V4LBB0 5.23507673507e-07 6.06977076974e-07 33697622.4644 +UniRef50_Q1GB50 Ribonuclease Y 0.000216023346284 0.000126846968966 -36001597840.5 +UniRef50_I3XFP9 Inosose dehydratase IolE 4.25460441846e-05 1.07856624933e-05 -12822055832.5 +UniRef50_P31833 Cytochrome c oxidase subunit 1 2.75598526319e-07 3.06154732534e-07 12335915.4158 +UniRef50_Q49VS2 Putative lipid kinase SSP1993 0.000253841956467 6.99861670102e-05 -74224838368.0 +UniRef50_A5D5L4 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.67077586759e-07 8.12046541921e-08 -34667956.6566 +UniRef50_Q81CT8 Putative ABC transporter ATP binding protein BC_2655 3.80044243183e-07 6.49554120413e-06 2468901168.72 +UniRef50_B9TG20 4.47852907989e-07 1.45809378546e-07 -121938679.327 +UniRef50_P39389 2.65953340392e-05 1.23755480017e-05 -5740702119.74 +UniRef50_A4ETQ1 Flagellar protein, putative 7.5121862055e-08 1.91093208336e-07 46819055.6221 +UniRef50_P39385 2.98891776367e-05 1.38646340475e-06 -11506895503.1 +UniRef50_P39384 3.26215942734e-05 4.6482802743e-06 -11293170132.6 +UniRef50_V5VAL8 Flavodoxin reductase 1 1.70294431062e-06 0.000109338742637 43453892624.0 +UniRef50_A9APP3 Rieske domain protein 2.21439764118e-06 5.32710411876e-05 20612193535.2 +UniRef50_P39383 6.08255397389e-05 4.84788024949e-06 -22598868059.0 +UniRef50_P39382 1.11684839469e-05 1.34351688699e-05 915088518.767 +UniRef50_Q09545 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.12620533329e-07 4.51250730403e-07 96337938.8806 +UniRef50_B7H275 Aminoglycoside 2 N acetyltransferase Ib) 4.30592382719e-06 4.17556280892e-05 15118905170.1 +UniRef50_B7M6Q9 Putative ion transport protein YfeO 3.38789742103e-05 5.71536380408e-06 -11369995127.3 +UniRef50_UPI00046FF34F peptide synthetase 3.32539611702e-09 1.23676160791e-08 3650455.15921 +UniRef50_A3MAB3 1.70808930622e-06 3.01136680007e-05 11467680694.6 +UniRef50_J5IRF9 7.81005494173e-06 0.000223826869487 87208638856.2 +UniRef50_D5AMB2 ArsC family protein 3.32332458697e-06 9.09403099916e-07 -974529726.47 +UniRef50_N6U9Z2 8.55505127333e-06 3.30485805926e-06 -2119567427.64 +UniRef50_B9KMM9 2.42279478061e-05 1.65598152446e-05 -3095719213.65 +UniRef50_UPI0003B360B2 riboflavin synthase subunit alpha 9.85739183432e-08 1.50523578948e-06 567886659.061 +UniRef50_UPI0003768F48 hypothetical protein 2.37876145686e-08 7.87513824848e-08 22189547.589 +UniRef50_Q9JYA6 PqiA family protein 9.16970013417e-07 2.61284265213e-05 10178174371.6 +UniRef50_O61573 GTP cyclohydrolase 1 3.74020596091e-07 6.34806557419e-07 105282492.792 +UniRef50_A4XX36 Integral membrane sensor signal transduction histidine kinase 4.44395778926e-06 4.18284317323e-06 -105415174.728 +UniRef50_V7N9Q7 5.052261241e-06 1.6316588308e-06 -1380939168.51 +UniRef50_UPI00046AE0C6 hypothetical protein 4.25755102014e-07 3.53486801914e-07 -29175599.5821 +UniRef50_UPI0003C11AE9 PREDICTED 1.86474335871e-07 4.24821218761e-08 -58131423.7729 +UniRef50_P77858 Hydrogenase 4 component C 6.47744161017e-05 2.32639236921e-05 -16758295176.8 +UniRef50_A9RYC3 Predicted protein 3.74437692478e-08 7.59165668272e-07 291367987.16 +UniRef50_UPI00046D2B95 hypothetical protein 3.15250729026e-07 2.31453151529e-07 -33830110.3475 +UniRef50_E1S7W8 Molybdenum transport ATP binding protein 1.42268588759e-06 2.7474470492e-05 10517425136.1 +UniRef50_A6LVV3 GCN5 related N acetyltransferase 2.5679318969e-06 7.38291762994e-06 1943868826.95 +UniRef50_Q48253 Vacuolating cytotoxin autotransporter 4.03009952487e-07 6.81077100843e-05 27333218273.3 +UniRef50_G8PQM8 FAD dependent oxidoreductase 9.93939757428e-06 3.01065891062e-06 -2797216823.7 +UniRef50_K6YYX6 Phosphate starvation inducible E 9.51995207813e-07 5.78972584523e-07 -150593810.525 +UniRef50_Q9RU10 Glutamate racemase 1.1322739247e-06 8.06458283065e-05 32100597645.0 +UniRef50_Q8DN97 Hexulose 6 phosphate synthase 4.73059196531e-05 3.53583760831e-05 -4823369952.06 +UniRef50_UPI0003055198 hypothetical protein 8.25261449362e-08 5.66777719857e-08 -10435305.3553 +UniRef50_UPI0004771957 pyruvate kinase 3.8127668994e-08 1.53737303509e-07 46673028.1435 +UniRef50_F8HG32 3 oxoacyl [acyl carrier protein] synthase 2 3.16390699934e-06 3.2739558e-05 11940053243.0 +UniRef50_UPI0003C7DEB4 ferredoxin 7.07217185956e-08 1.31795699223e-07 24656315.4413 +UniRef50_W5XG56 Transcriptional regulator 5.14968780039e-06 2.48600377264e-06 -1075361929.08 +UniRef50_P45480 Glutathione synthetase 3.94289886739e-08 7.03827566972e-08 12496415.9965 +UniRef50_Q03UE1 DNA replication and repair protein RecF 9.01916302723e-05 6.89999329706e-05 -8555348252.07 +UniRef50_J2ZRL7 Rhamnan synthesis protein F domain protein 6.86606251652e-08 8.62137502309e-08 7086411.99009 +UniRef50_UPI000346214E hypothetical protein 6.86319888592e-07 6.52780604392e-08 -250722207.066 +UniRef50_G2IM51 Major facilitator superfamily protein 1.59990540605e-05 6.53786120244e-06 -3819599658.69 +UniRef50_UPI00047E3C0E hypothetical protein 2.54626356383e-07 7.56866929282e-06 2952768886.84 +UniRef50_G0DY22 1.67275918245e-06 3.18009535003e-05 12163121760.7 +UniRef50_A6V690 7.11790048168e-07 2.50412567372e-06 723587886.466 +UniRef50_A5UL99 Predicted permease, major facilitator superfamily 1.72161403634e-05 8.91062860416e-06 -3353037017.3 +UniRef50_Q8AA27 Methionine aminopeptidase 1.08587411061e-05 5.74543715262e-05 18811227793.3 +UniRef50_Q8DWJ3 7.4366852284e-05 1.17834905089e-05 -25265671132.8 +UniRef50_Q9F664 UTP glucose 1 phosphate uridylyltransferase 4.34404118052e-05 3.30856081034e-06 -16201720719.8 +UniRef50_Q1AX36 Leucyl phenylalanyl tRNA protein transferase 1.10771151093e-07 8.58988482637e-07 302064518.403 +UniRef50_UPI000371C01D hypothetical protein 2.4105219721e-07 1.2007658658e-07 -48839338.549 +UniRef50_B1H0H4 NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component 1.95845444659e-06 8.70185123404e-06 2722392033.88 +UniRef50_A7X240 Tryptophan synthase alpha chain 0.000150778749374 1.95512749292e-05 -52978141775.6 +UniRef50_Q4L300 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00015031829113 2.34429426364e-05 -51221135122.6 +UniRef50_Q8RCZ3 2.58505679378e-06 2.59748272579e-05 9442737361.12 +UniRef50_A7MXI6 RNA polymerase subunit sigma 32 1.64353651413e-07 3.11223763631e-07 59293266.6014 +UniRef50_M2YV20 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 4.35887020209e-08 1.96790586793e-07 61849480.881 +UniRef50_W0HQE6 Outer membrane lipoprotein 2.20087826852e-07 1.90417122261e-07 -11978427.5439 +UniRef50_Q1QLB8 3 dehydroquinate dehydratase 7.610261388e-07 1.22847738429e-07 -257640451.559 +UniRef50_F1WQG0 L aspartate oxidase 8.85606819696e-08 2.25552401273e-07 55305238.1601 +UniRef50_G7W3F5 Phosphonate ABC transporter, permease protein 0.000166706224587 5.22218361993e-05 -46218752473.7 +UniRef50_A0A029I8C3 TPR repeat family protein 2.58016132498e-05 9.13898837441e-06 -6726906135.6 +UniRef50_K0TNT9 1.30314259191e-05 1.41609653309e-06 -4689251009.25 +UniRef50_UPI0003807495 hypothetical protein, partial 1.4393389753e-07 2.49067969119e-07 42443914.8406 +UniRef50_UPI00046EA948 peptide deformylase 2.66984218782e-07 2.48542554987e-07 -7445125.9787 +UniRef50_C4Y1Q4 5.31532804839e-07 1.97316284094e-06 582003736.363 +UniRef50_UPI0003A5C3E8 methylmalonyl CoA mutase 9.25448128955e-07 6.87231659879e-07 -96170911.8108 +UniRef50_M9RMW1 DNA integration recombination inversion protein 0.000132142795906 2.04120009448e-05 -45107093016.8 +UniRef50_UPI00032A20C5 PREDICTED 1.31263687936e-07 3.75235413307e-07 98494379.402 +UniRef50_A6M334 Glycogen synthase 7.35064383387e-06 2.01236332434e-05 5156612566.82 +UniRef50_UPI0003688E90 hypothetical protein 1.43451505995e-07 3.19191286489e-07 70948305.955 +UniRef50_A3V1D2 ABC phosphate transporter, periplasmic phosphate binding protein 8.86397564133e-08 7.30330337652e-08 -6300625.44906 +UniRef50_Q9RAJ5 Bifunctional purine biosynthesis protein PurH 3.03819660896e-06 5.69354219241e-05 21758971253.0 +UniRef50_A8GK38 Peptidase U62 modulator of DNA gyrase 9.64772716781e-07 7.7273600531e-06 2730139493.95 +UniRef50_C7ZCJ9 6.93372400359e-08 7.11419268889e-06 2844094594.8 +UniRef50_UPI0002628E3A amino acid ABC transporter, permease protein, 3 TM region, His Glu Gln Arg opine family 4.94518149961e-07 6.91008367589e-07 79325512.0625 +UniRef50_UPI000470BC2E transposase, partial 7.85270562337e-07 0.000482257927107 1.94376419781e+11 +UniRef50_Q47142 Probable 3 phenylpropionic acid transporter 1.6072588339e-05 4.34475966229e-06 -4734668353.43 +UniRef50_UPI000375E9A2 MULTISPECIES 6.04064948426e-07 3.07151505618e-08 -231468349.191 +UniRef50_UPI0004650867 hypothetical protein 3.57319885925e-07 1.40991947147e-06 424947369.536 +UniRef50_UPI0003B458E8 quinone oxidoreductase 1.097946951e-07 1.76531314599e-07 26942392.2422 +UniRef50_C1KYN8 NADPH dehydrogenase 6.91510248763e-08 1.80648364124e-05 7265079022.83 +UniRef50_UPI0003C8F987 PREDICTED 3.64996385995e-07 8.94076435771e-06 3462142766.69 +UniRef50_UPI000364B2C5 hypothetical protein 4.74170603184e-08 1.57653778356e-07 44503915.8286 +UniRef50_I3UG87 ABC transporter 3.04584460427e-07 7.31826094088e-06 2831507262.65 +UniRef50_UPI00036731E7 hypothetical protein 1.95742160496e-06 1.76857901753e-06 -76238069.9046 +UniRef50_C5N6N4 Type I restriction modification DNA specificity domain protein 7.0121182992e-05 5.3587725922e-06 -26145379802.5 +UniRef50_Q12HP7 ATP synthase subunit b 3.67342729998e-05 9.14846657284e-05 22103405407.4 +UniRef50_C8VXQ7 Prophage antirepressor 2.72831691879e-07 7.44536035676e-08 -80087668.624 +UniRef50_Q72VI6 Aminomethyltransferase 1.75109081146e-07 1.04062970022e-07 -28682186.8946 +UniRef50_D8A1C0 1.50665429276e-05 3.94988772017e-07 -5923086452.83 +UniRef50_Q49UD2 1.59735184326e-07 2.77897033592e-07 47703388.5576 +UniRef50_B0TI89 Arginine tRNA ligase 8.2830548392e-08 4.84154827153e-08 -13893784.334 +UniRef50_B2IDG3 Signal recognition particle receptor FtsY 2.0359484181e-05 3.47126544276e-06 -6817981146.36 +UniRef50_A0A058ZE84 4.14401875917e-08 1.09412114978e-07 27441101.1952 +UniRef50_B9MKF3 DNA directed RNA polymerase subunit alpha 0.000246965706257 0.000149230535302 -39456887860.0 +UniRef50_UPI000174537F tRNA isopentenyltransferase 4.82508418957e-08 7.8320085667e-08 12139322.7016 +UniRef50_E1VL16 1.69424708043e-08 4.50360862439e-08 11341737.3004 +UniRef50_X6GT76 2.08539628775e-06 3.91208210245e-07 -683964516.912 +UniRef50_J9NXH4 9.64970227076e-08 3.1429828716e-06 1229903721.78 +UniRef50_A0RH75 LexA repressor 0.000167399148921 2.43080914498e-05 -57767615825.8 +UniRef50_P37595 Isoaspartyl peptidase 1.79815822486e-05 3.94656548944e-06 -5666108494.71 +UniRef50_UPI0003688AF0 hypothetical protein, partial 1.65388079967e-07 7.94081644156e-08 -34711147.0003 +UniRef50_P20753 Peptidyl prolyl cis trans isomerase A 4.34048017005e-05 1.00401511596e-05 -13469718853.7 +UniRef50_B1AJ89 Holliday junction ATP dependent DNA helicase RuvB 3.27046046782e-08 9.87303042699e-08 26655385.1516 +UniRef50_E1SQ49 5.65769047706e-07 2.42981429986e-07 -130313322.323 +UniRef50_G7MAV9 2.92626751416e-06 2.92392777421e-06 -944581.729653 +UniRef50_UPI0003622A28 hypothetical protein 1.094170138e-07 1.02655197592e-07 -2729828.17999 +UniRef50_Q08ZN5 Catalase 2.50420174571e-06 0.000667403440224 2.68427981805e+11 +UniRef50_I0EMB4 1.30648092436e-06 3.35176627141e-05 13004049364.2 +UniRef50_Q2W939 FAD synthase 6.03955346801e-06 2.01123749283e-06 -1626280592.18 +UniRef50_A0A038G0X4 8.56737998615e-07 7.4843897976e-07 -43721642.8902 +UniRef50_S4P4Q3 Titin 1.20962559505e-05 8.84753175718e-08 -4847688393.54 +UniRef50_P0ACR1 HTH type transcriptional activator AllS 1.70351502938e-05 3.61612292071e-06 -5417426020.5 +UniRef50_Q8X645 NAD dependent dihydropyrimidine dehydrogenase subunit PreT 3.05504851227e-05 5.39917104517e-06 -10153894134.4 +UniRef50_D3QIC4 8.04072806077e-05 2.74006089893e-05 -21399443797.4 +UniRef50_Q76HT9 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 1.13897395726e-05 5.74730069579e-07 -4366152051.45 +UniRef50_E4RAI6 Choline carnitine betaine transporter 1.05942903149e-05 6.32157472652e-05 21243927908.7 +UniRef50_U4VB44 5.7924794533e-06 1.50192850456e-07 -2277860340.21 +UniRef50_UPI00036A732B hypothetical protein 8.79995899515e-07 2.91052703894e-07 -237763595.218 +UniRef50_P0AE75 Citrate carrier 2.64892763434e-05 5.44958111151e-06 -8493983151.21 +UniRef50_T1UA89 Neuraminyllactose binding hemagglutinin family protein 2.43539347646e-06 3.37996469072e-05 12662133992.6 +UniRef50_M1M1B9 Beta fructofuranosidase 3.63238667216e-06 9.37765346163e-06 2319434705.26 +UniRef50_A0A011MYY6 Trans aconitate 2 methyltransferase 2.42499581544e-07 3.28482757252e-07 34712463.1655 +UniRef50_A5GWT2 Aspartate tRNA ligase 3.11755278831e-08 1.95032330726e-07 66151002.0568 +UniRef50_C4B488 Short chain dehydrogenase reductase SDR 3.01817465392e-06 3.1209981141e-06 41511092.6604 +UniRef50_A5ULF5 Possible glycosyltransferase 3.47070022419e-05 6.78209532568e-06 -11273627599.2 +UniRef50_F4DRP3 5.20121271721e-06 1.48481750506e-05 3894597075.53 +UniRef50_B8JBA1 Transcriptional regulator, Fis family 1.15532002572e-07 3.18791364532e-07 82058298.6961 +UniRef50_W5WS06 Amino acid permease 6.41237182429e-06 3.6733189682e-06 -1105789249.96 +UniRef50_UPI000470356D glycine cleavage system protein H 1.20751525993e-06 4.26893459626e-07 -315146600.089 +UniRef50_Q89A21 ATP dependent DNA helicase Rep 7.29037179949e-08 3.72458535209e-08 -14395517.4594 +UniRef50_Q5F8Z9 Formamidopyrimidine DNA glycosylase 1.63670806562e-06 1.49598106347e-05 5378700000.0 +UniRef50_B6U1Z9 1.26117239387e-07 2.89644291453e-07 66017877.6216 +UniRef50_B7VBB0 Putative phosphoenolpyruvate synthase regulatory protein 1.93867530629e-07 3.26457910787e-06 1239683945.6 +UniRef50_F8JQM1 1.5086005394e-07 1.16975101514e-06 411338784.235 +UniRef50_Q3IV73 3.35655411994e-05 2.64894724795e-05 -2856695775.35 +UniRef50_Q3IV76 8.74652027172e-05 5.19618836113e-06 -33213010649.9 +UniRef50_S6SUU4 Peptide ABC transporter permease 2.91058934253e-06 1.56748357662e-06 -542228279.459 +UniRef50_H0W1N8 2.30738712142e-07 3.90310774318e-07 64421199.6699 +UniRef50_UPI0004770081 molybdenum cofactor biosynthesis protein A 8.1850993994e-08 9.8474331505e-07 364508709.745 +UniRef50_Q4FT48 Ornithine carbamoyltransferase 3.87760974388e-08 6.37798957415e-07 241832879.409 +UniRef50_N9CHK2 3.3348980416e-06 7.34012258693e-06 1616958298.58 +UniRef50_Q7ULU1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.43115795898e-07 3.80821487725e-07 -65520203.7846 +UniRef50_U5S306 4.99909938178e-06 2.70828574347e-05 8915484124.14 +UniRef50_Q7NFY0 Glr3394 protein 1.50831006835e-06 5.16894161632e-07 -400246767.583 +UniRef50_B9KJJ0 Proton translocating NADH quinone oxidoreductase, chain L 2.73570228255e-05 1.00050831806e-06 -10640448337.4 +UniRef50_Q4WHZ9 Inosine 5 monophosphate dehydrogenase 2.31752323061e-07 4.03791498831e-08 -77259698.4249 +UniRef50_X0PKD3 1.84403811556e-07 2.76339752296e-07 37115667.4576 +UniRef50_UPI00046F8172 hypothetical protein, partial 6.00736054487e-08 4.02219123425e-08 -8014372.11464 +UniRef50_D3QHK8 0.000166533036362 5.69002909746e-05 -44260084657.8 +UniRef50_Q4FRI0 Site 2 protease, Metallo peptidase, MEROPS family M50B 1.14044105391e-06 8.67650393252e-05 34567701054.1 +UniRef50_P13228 Tryptophan synthase 5.44816905175e-08 5.77735287324e-08 1328955.48275 +UniRef50_I6T6M3 4.76256718342e-05 1.45182065906e-05 -13365889993.1 +UniRef50_A0A013WI76 Pirin 2.25200123977e-07 3.51263812386e-08 -76735102.4104 +UniRef50_Q724H7 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 2.11134291077e-07 3.92882534625e-06 1500877500.17 +UniRef50_Q93SS1 Hemin import ATP binding protein HmuV 8.27087970432e-08 1.87086142295e-05 7519506588.66 +UniRef50_A3PKX0 NAD transhydrogenase subunit beta 0.000102087851364 1.82447818829e-05 -33848476019.7 +UniRef50_UPI0003160516 beta lactamase 5.23813342598e-07 2.24491139172e-07 -120840046.62 +UniRef50_F0Y015 2.70352693396e-06 2.2095147397e-06 -199438785.034 +UniRef50_A7H6S8 Chorismate synthase 1.56995271355e-07 2.00708943699e-06 746905717.877 +UniRef50_P12635 Uptake hydrogenase small subunit 2.3461250138e-06 5.90867761679e-07 -708618892.109 +UniRef50_H3V8P2 8.84732786372e-06 1.40627002474e-05 2105509831.11 +UniRef50_A2BKX6 V type ATP synthase alpha chain 8.30247776054e-07 0.000442622439807 1.78356929323e+11 +UniRef50_Q9ZL20 Homoserine dehydrogenase 2.04662241411e-06 5.97761539434e-05 23306120299.4 +UniRef50_UPI0003B6A98E siderophore ABC transporter permease 1.08437395644e-07 7.64013967908e-08 -12933325.863 +UniRef50_A5UNY8 1.31989171183e-05 1.44506449675e-05 505337893.15 +UniRef50_UPI00028983C1 iron ABC transporter ATP binding protein 6.31583313382e-07 3.22486928603e-07 -124786003.574 +UniRef50_UPI00035C388E hypothetical protein 1.20482189133e-07 9.46556279687e-08 -10426499.6696 +UniRef50_Q2NHW2 4 hydroxy tetrahydrodipicolinate synthase 5.68300732251e-05 2.75126075039e-06 -21832280217.7 +UniRef50_A5UNY0 7.09651468135e-06 3.33063953224e-06 -1520330010.18 +UniRef50_P76278 Inner membrane protein YebZ 2.78701617737e-05 2.21508751969e-05 -2308946174.59 +UniRef50_UPI0003F8B96B hypothetical protein 6.24657330125e-07 4.78745706916e-07 -58906312.8264 +UniRef50_UPI00034A188B hypothetical protein 2.47966114014e-08 8.29736545314e-08 23486786.2242 +UniRef50_S9QCK8 Flagellar protein FlaF, putative 4.37928841016e-07 8.33178859481e-07 159567282.717 +UniRef50_I6WD10 3.53438711259e-08 5.93202349737e-08 9679552.30843 +UniRef50_Q3IWS0 TRAP T family transporter, periplasmic binding protein 2.25292724812e-05 7.03917253616e-06 -6253543432.7 +UniRef50_P0A0C8 Replication and maintenance protein 0.000623861574834 0.000165274521208 -1.85137221045e+11 +UniRef50_B3HTF1 Protein YgiQ 2.34574987165e-05 2.46439531448e-06 -8475173457.74 +UniRef50_UPI0003B3CF72 histidine kinase 5.5405118147e-08 4.09448520666e-08 -5837786.86408 +UniRef50_C6ST75 5.00934565725e-05 2.58050643209e-05 -9805522004.06 +UniRef50_UPI00028905C7 recombinase RecQ 2.94112880377e-08 8.74222767327e-08 23419748.0111 +UniRef50_P34749 Putative DNA transport protein HofQ 3.62665813404e-05 3.74880651097e-06 -13127824736.6 +UniRef50_UPI00047D7442 multidrug ABC transporter ATPase 3.24989226794e-08 8.68934566524e-08 21959740.8609 +UniRef50_Q88VG4 GTPase Obg 0.000285301072684 0.000113195805645 -69481008272.8 +UniRef50_C1CMA0 Ribosomal protein L11 methyltransferase 6.16934447601e-05 9.98821399e-05 15417244856.0 +UniRef50_Q9RW97 1.72368031437e-06 9.00182108161e-05 35645585459.3 +UniRef50_L0GSA8 Glycine D amino acid oxidase, deaminating 1.19535025924e-05 3.50889874761e-06 -3409190199.08 +UniRef50_UPI00037C253B alcohol dehydrogenase 1.63325704481e-07 1.8367759324e-07 8216307.23777 +UniRef50_U5UBZ0 Integral membrane protein TerC 2.09948226997e-05 9.77424880443e-06 -4529883373.46 +UniRef50_G2TNB0 Beta lactamase 1.12808813062e-07 4.7362608045e-07 145666358.57 +UniRef50_A7ZEL6 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.42626947925e-06 1.18543384389e-05 4209939405.79 +UniRef50_Q9CE02 Glycerol facilitator aquaporin gla 5.78647960401e-05 3.41511071572e-05 -9573507201.71 +UniRef50_A6X7L5 Cobyrinic acid ac diamide synthase 2.90305665228e-06 8.59117144387e-07 -825163461.293 +UniRef50_E5ALT8 UvrABC system protein A 8.97231649528e-07 7.58436538607e-05 30256790342.7 +UniRef50_A9M1I6 Periplasmic thioredoxin 3.70084302795e-06 3.60875810829e-06 -37175812.0758 +UniRef50_D5HI95 Beta fructosidases 3.66095001508e-06 8.27829860193e-06 1864080285.75 +UniRef50_A8M621 NADH quinone oxidoreductase subunit B 2 1.69801436267e-07 0.000339201317892 1.36871183578e+11 +UniRef50_UPI00041CBDDB phosphoenolpyruvate synthase 3.709774162e-08 1.51019291302e-07 45991527.5812 +UniRef50_UPI0003B60C80 MFS transporter 8.19112865092e-08 8.28034282533e-08 360168.569903 +UniRef50_O21049 Cytochrome c oxidase subunit 3 3.56245326004e-08 3.93192294643e-08 1491594.46299 +UniRef50_M1GCT3 Peptidyl prolyl cis trans isomerase 3.19002244105e-06 9.78950403971e-06 2664291706.13 +UniRef50_P49331 Glucosyltransferase S 4.92029209645e-05 1.49449056862e-05 -13830381161.0 +UniRef50_Q1CU36 Phospho N acetylmuramoyl pentapeptide transferase 5.63620675513e-08 2.64509988277e-05 10655838758.7 +UniRef50_P0AAJ9 Hydrogenase 2 operon protein HybA 2.75494901213e-05 1.04855459288e-05 -6888923668.65 +UniRef50_P61154 Tungsten containing formylmethanofuran dehydrogenase 2 subunit B 3.91566042739e-05 1.29881856166e-05 -10564511734.6 +UniRef50_W5X7F1 Band 7 protein 1.47790394464e-07 2.87292161424e-06 1100168914.55 +UniRef50_J7R3C7 3.0956984692e-05 2.36500599779e-05 -2949895173.13 +UniRef50_UPI000381CDD7 hypothetical protein 4.26265169235e-08 4.23548989079e-08 -109655.526026 +UniRef50_X1Y977 4.2706502543e-08 2.30519724232e-07 75822502.3233 +UniRef50_P26396 Glucose 1 phosphate cytidylyltransferase 0.000108249418803 9.93978492785e-05 -3573487238.01 +UniRef50_Q9HZN2 Maf like protein PA2972 2.150624633e-05 6.31080985278e-06 -6134584174.82 +UniRef50_Q2NED1 EhbF 3.32712411382e-05 7.1688373595e-06 -10537860718.0 +UniRef50_Q9JY93 Peptide chain release factor 1 0.000111221498463 0.000162664260123 20768074155.8 +UniRef50_F2EI39 Predicted protein 3.61935744281e-07 1.10841771634e-06 301363932.484 +UniRef50_D8UC86 1.40745759169e-07 3.56792957775e-07 87220905.2745 +UniRef50_R4ZPZ7 Glycosyl transferase, family 8 6.71401926993e-06 1.67634837394e-06 -2033769559.88 +UniRef50_Q1GD19 Binding protein dependent transport systems inner membrane component 0.000102211275338 2.90144483705e-05 -29550457272.9 +UniRef50_D8JKK4 Glutathione import ATP binding protein gsiA 1.52512137299e-06 4.47226210032e-05 17439360693.6 +UniRef50_UPI0003642310 hypothetical protein 5.99168985199e-08 3.53014676972e-07 118327169.875 +UniRef50_F5YLA3 Ferric enterobactin transport ATP binding protein FepC 3.18613284521e-06 1.58379757956e-05 5107704254.65 +UniRef50_M5JPC6 1.39692598695e-06 4.43376198464e-07 -384959750.984 +UniRef50_P70584 Short branched chain specific acyl CoA dehydrogenase, mitochondrial 7.5499766789e-08 1.14847291715e-07 15885078.6611 +UniRef50_X3WXP6 3.36728049732e-07 4.1355854496e-07 31017413.7397 +UniRef50_UPI00020008D2 putative magnesium translocating P type ATPase 3.36636109773e-07 1.33885689123e-06 404608828.107 +UniRef50_UPI00037C785B hypothetical protein 9.34246190593e-07 1.5999231582e-06 268741960.598 +UniRef50_Q8FF30 Flavohemoprotein 3.44647789439e-05 1.11780293284e-05 -9401146580.33 +UniRef50_Q3IV85 6.52407619201e-05 2.07741217372e-05 -17951728308.9 +UniRef50_B9KPB5 Response regulator receiver and SARP domain protein 3.22637597309e-06 2.5436795637e-05 8966618970.81 +UniRef50_UPI00046F03A6 histidine kinase 6.98653018335e-07 2.08195212307e-07 -198003834.888 +UniRef50_P16552 Raffinose permease 9.99665533874e-06 1.1762405932e-05 712855182.695 +UniRef50_B4U0I9 Putative competence damage inducible protein 7.89661600337e-05 5.46064795866e-05 -9834301923.39 +UniRef50_F4EDS5 Alkylhydroperoxidase like protein, AhpD family 6.72305860622e-05 2.5759244621e-05 -16742489450.4 +UniRef50_UPI00036E614B hypothetical protein 3.21258892587e-07 9.05317519518e-07 235791634.897 +UniRef50_F3S3U6 4.96406924058e-07 4.22136233535e-07 -29983989.168 +UniRef50_UPI00036215C0 hypothetical protein 4.86197140317e-08 1.50427265964e-06 587664957.013 +UniRef50_Q28QW5 Ppx GppA phosphatase 4.8484748751e-05 1.82670126934e-06 -18836426327.0 +UniRef50_UPI000180B091 PREDICTED 6.46409265431e-08 7.40834619373e-08 3812067.41158 +UniRef50_I4CF79 ATPase involved in chromosome partitioning 5.28494933203e-05 9.73686901799e-05 17972946084.2 +UniRef50_UPI000364064B hypothetical protein, partial 2.01276570253e-06 2.15972961107e-07 -725387278.838 +UniRef50_UPI000476D156 30S ribosomal protein S8 5.00552255868e-07 3.15246829899e-06 1070611049.28 +UniRef50_M1N762 PAS domain S box diguanylate cyclase domain containing protein 6.34909182436e-06 2.75886422822e-05 8574667158.41 +UniRef50_G8VEI8 9.11023266451e-07 7.4733554289e-06 2649294022.85 +UniRef50_Q3J6K9 Acrylyl CoA reductase AcuI 6.65110333348e-05 1.26035348037e-05 -21763118676.4 +UniRef50_Q8YM92 Spermidine putrescine import ATP binding protein PotA 7.54502453195e-07 4.77805003844e-07 -111706155.763 +UniRef50_V1DIU7 5.23276749134e-07 4.99210932214e-07 -9715665.61139 +UniRef50_C0R3V6 3 5 exonuclease 0.000168492430658 3.83292585521e-05 -52548469860.9 +UniRef50_R1D2B5 8.13954027567e-08 2.41383768856e-07 64589266.6722 +UniRef50_UPI00041042FA hypothetical protein 6.96805498777e-08 5.07450321446e-07 176733028.821 +UniRef50_P28303 DNA damage inducible protein F 2.12529899665e-05 8.61927526551e-06 -5100385657.91 +UniRef50_R6NSD0 1.74791299749e-06 6.44875588256e-06 1897787958.53 +UniRef50_P0A1J0 Basal body rod modification protein FlgD 2.53311001131e-05 2.56054946702e-06 -9192750721.91 +UniRef50_Q1LSW5 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 3.96408312137e-05 1.76133223777e-06 -15292418570.3 +UniRef50_Q164Y5 sn glycerol 3 phosphate import ATP binding protein UgpC 8.1108091523e-07 7.58093586595e-07 -21391634.7976 +UniRef50_B7L4M7 Glutathione regulated potassium efflux system protein KefB 2.76607631409e-05 1.28549140257e-05 -5977302976.01 +UniRef50_UPI000329E73C PREDICTED 3.28563903976e-08 5.20139117476e-08 7734126.45822 +UniRef50_P0AFJ0 Putative permease PerM 3.58838338785e-05 2.98299702217e-06 -13282471577.6 +UniRef50_UPI00036E49BC hypothetical protein 3.79371991491e-06 4.96446364568e-07 -1331149794.37 +UniRef50_Q9XC21 Protein NrdI 1.14808599181e-07 4.57990076387e-07 138546573.658 +UniRef50_Q6G5Y3 0.000234714436108 5.60768339471e-05 -72118192122.3 +UniRef50_V5XV11 7.05160697779e-08 2.13011866337e-07 57527301.6909 +UniRef50_UPI00037AAF5D hypothetical protein 1.95550286055e-05 1.3908472994e-05 -2279583791.39 +UniRef50_Q8ZPD6 1.90071834935e-05 1.07100541519e-05 -3349652932.43 +UniRef50_A1YN33 Outer membrane protein N 5.77086829441e-06 7.41557572174e-06 663988571.243 +UniRef50_E3HF39 Acyltransferase family protein 5 4.25936072397e-06 2.59429023591e-06 -672209388.742 +UniRef50_UPI0003B39CC6 ABC transporter substrate binding protein 9.10164696954e-07 1.11626739969e-06 83206190.2591 +UniRef50_Q896J4 HPr kinase phosphorylase 2.49990721098e-06 1.86973468552e-05 6539105149.3 +UniRef50_W0YKE6 Protein PqqC 3.05660536572e-06 1.15856050729e-05 3443261844.38 +UniRef50_UPI00038F9E6F DNA polymerase III subunit alpha, partial 1.46101884347e-07 2.87608248385e-07 57127855.6405 +UniRef50_A6LXS8 FAD dependent pyridine nucleotide disulphide oxidoreductase 9.37465204062e-07 1.71989404948e-05 6564957125.6 +UniRef50_Q487E5 Protein L isoaspartate O methyltransferase 2.44600475456e-05 1.06026637819e-05 -5594395874.63 +UniRef50_P9WKI2 1.1674824398e-06 5.96144832841e-05 23595771466.2 +UniRef50_G2JG74 3.65309021469e-05 1.77147782215e-05 -7596300128.49 +UniRef50_Q12680 Glutamate synthase [NADH] 9.1054271516e-09 1.37630012434e-07 51886952.2524 +UniRef50_Q142P6 Lipid A export ATP binding permease protein MsbA 2.56378925683e-08 6.14249179135e-08 14447661.288 +UniRef50_UPI0003FD8434 hypothetical protein 2.83550840038e-07 1.15207367889e-07 -67962325.5133 +UniRef50_P77196 Putative outer membrane usher protein YfcU 3.02832132771e-05 1.29565448897e-05 -6994988650.12 +UniRef50_D8GR57 D alanyl D alanine carboxypeptidase 1.9608677785e-06 8.97181543735e-06 2830405603.88 +UniRef50_E7T039 PTS system protein, cellobiose specific IIC component 1.66790515675e-05 5.64553633327e-06 -4454365496.5 +UniRef50_U2FR71 Putative conserved inner membrane protein 1.82834875865e-07 3.11019571619e-07 51749734.679 +UniRef50_X1Y4J3 S adenosylmethionine synthase 2.86486238582e-07 1.6347347176e-06 544304455.85 +UniRef50_UPI0003B599F8 membrane protein 5.43812219043e-08 3.66967490636e-07 126194912.552 +UniRef50_UPI0003699B2C hypothetical protein 8.33033570671e-08 9.30782079632e-08 3946227.25766 +UniRef50_B8DTW3 Carbamoyl phosphate synthase large chain 1.55008388122e-07 8.77927116125e-08 -27135793.436 +UniRef50_P0AE17 Protein AmpG 2.67721610191e-05 1.99526830868e-05 -2753106925.67 +UniRef50_D2QC61 NAD dependent epimerase dehydratase 6.54869594153e-06 1.38454245475e-05 2945778879.16 +UniRef50_UPI00037FC855 hypothetical protein 1.73644784283e-05 5.59592915001e-06 -4751107759.99 +UniRef50_A5UNZ2 Magnesium chelatase subunit 2.85246063776e-05 8.52879969053e-06 -8072552535.72 +UniRef50_A0A023S1G3 Transcriptional regulator 6.53738717857e-06 5.68664305895e-05 20318452431.8 +UniRef50_V5VIA0 7.97505610247e-06 9.37918408415e-05 34645289089.5 +UniRef50_UPI00016A5A21 ABC transporter permease 2.43642254169e-07 1.36314406812e-07 -43329569.0388 +UniRef50_UPI0002DB5328 ABC transporter permease 9.80483538871e-08 1.16840538432e-07 7586635.50681 +UniRef50_W1AP48 Penicillin binding protein 2 2.69337184431e-05 5.31085087412e-06 -8729416980.03 +UniRef50_UPI0002F2CBB8 hypothetical protein 1.58112879685e-06 5.36905187769e-07 -421565885.05 +UniRef50_A4WQG9 2.72476060112e-05 1.43549361474e-05 -5204929034.87 +UniRef50_P43725 Superoxide dismutase [Mn] 8.78067731056e-08 1.04739421233e-06 387397224.677 +UniRef50_W5FKJ5 1.02297989595e-06 2.04857365868e-06 414044787.465 +UniRef50_Q9KA74 Transcription termination antitermination protein NusA 6.37974375497e-05 8.46209134264e-06 -22339558304.9 +UniRef50_P0A9F8 Glycine cleavage system transcriptional activator 1.90523329316e-05 1.25032605101e-05 -2643940902.72 +UniRef50_A9LZF9 3 isopropylmalate dehydratase small subunit 5.6791288078e-07 9.04198060709e-05 36274311887.6 +UniRef50_M9VJJ5 AP endonuclease, family 2 5.59066611697e-06 5.60035805641e-05 20352312198.3 +UniRef50_P44255 Elongation factor P hydroxylase 1.01870634305e-06 3.84687765347e-07 -255961080.102 +UniRef50_F3G6H6 AsmA family protein 2.58727658681e-07 7.68339313342e-07 205736478.625 +UniRef50_UPI000474A6D9 hypothetical protein, partial 1.18702606973e-07 1.06823419169e-06 383337552.813 +UniRef50_UPI000380FF19 chemotaxis protein CheY, partial 1.85967938469e-06 1.03181564122e-06 -334218752.269 +UniRef50_Q21YC7 NADH quinone oxidoreductase subunit A 1.51014715536e-07 1.45947211422e-06 528240308.425 +UniRef50_P38674 Ketol acid reductoisomerase, mitochondrial 2.52051717726e-08 2.71912679335e-05 10967272902.0 +UniRef50_C1ELB5 Bis tetraphosphatase PrpE [asymmetrical] 8.63366107376e-07 1.86631709541e-06 404903621.46 +UniRef50_UPI00046FCD40 rubredoxin 4.15782126582e-06 1.02819783026e-06 -1263467385.73 +UniRef50_UPI000381FE78 hypothetical protein 5.38214392116e-08 1.29349761233e-07 30491710.4368 +UniRef50_UPI0003BCF281 PREDICTED 1.04842106709e-07 1.93126669675e-06 737350019.749 +UniRef50_V8G1A8 Membrane protein 4.26669239637e-06 1.49678010725e-05 4320168889.91 +UniRef50_UPI0003600AD1 hypothetical protein 5.51569213999e-07 2.83418244237e-07 -108255837.075 +UniRef50_UPI000328F489 PREDICTED 1.02470352109e-06 1.31547756869e-07 -360577942.27 +UniRef50_I4EZI0 4.99583431396e-07 1.09203060076e-06 239178192.417 +UniRef50_P9WN18 Glutamate synthase [NADPH] small chain 9.72227072197e-07 1.34872420104e-06 151996511.053 +UniRef50_I3UWQ8 Spermidine putrescine ABC transporter ATPase 9.19429940831e-05 2.42014802246e-05 -27348080426.5 +UniRef50_P45061 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 2.03166581647e-05 1.07640954189e-05 -3856486803.61 +UniRef50_A3LGX4 1.00608525054e-07 9.59106276218e-07 346586077.097 +UniRef50_UPI0002EE4E70 D amino acid dehydrogenase small subunit 3.14691063883e-07 2.61865031974e-07 -21326517.33 +UniRef50_A3LGX1 2.21103934161e-06 4.23657556294e-06 817733828.675 +UniRef50_UPI00046F4247 MarR family transcriptional regulator 1.21757414489e-07 9.49865002677e-07 334317195.374 +UniRef50_Q28TP6 1.50656275976e-06 2.81277828093e-07 -494662562.852 +UniRef50_Q4QP16 tRNA specific 2 thiouridylase MnmA 9.80428268128e-08 2.39685007704e-07 57182686.5707 +UniRef50_P46861 Lysine tRNA ligase 3.95466056609e-06 4.49871574785e-05 16565322528.9 +UniRef50_R4YER9 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 3.9443356509e-06 5.39283397707e-07 -1374661379.3 +UniRef50_UPI00036FD96D hypothetical protein 7.21145060561e-07 4.91446714796e-06 1692895584.53 +UniRef50_Q6AB12 4 hydroxythreonine 4 phosphate dehydrogenase 1.15204269236e-06 3.36068083445e-05 13102387158.5 +UniRef50_J2XB15 8.94331207736e-05 1.72029148658e-05 -29160220489.3 +UniRef50_C7DAC2 ISSpo9, transposase 1.35855728571e-06 2.3347029746e-07 -454211423.526 +UniRef50_Q8TT39 30S ribosomal protein S2 4.9062006556e-05 9.00527402918e-06 -16171394472.5 +UniRef50_A2RNT2 Proline tRNA ligase 4.76933443278e-05 4.93372030925e-05 663645955.725 +UniRef50_A6M0B1 PAS PAC sensor signal transduction histidine kinase 3.42244732592e-06 2.12083222683e-05 7180375971.48 +UniRef50_D3QE85 0.000188483377382 5.22984033394e-05 -54979545198.7 +UniRef50_G4LM52 2.56212209626e-06 3.94694243171e-05 14899930810.1 +UniRef50_UPI00047BC3F9 peptidase S41 2.68003025985e-07 1.5204133707e-06 505613424.967 +UniRef50_P27129 Lipopolysaccharide 1,2 glucosyltransferase 2.83045323684e-05 2.80363960626e-06 -10295023339.2 +UniRef50_B2I9J2 Tryptophan synthase beta chain 7.29121724957e-07 0.000228873566944 92104712182.1 +UniRef50_S9RYT9 5.03140366143e-06 7.59643236156e-06 1035533562.68 +UniRef50_UPI0001850E7F signal recognition particle protein 4.19947873189e-07 1.91928329826e-05 7578844087.87 +UniRef50_Q9HUL4 Epoxyqueuosine reductase 7.59079037954e-06 1.88099812232e-06 -2305113201.27 +UniRef50_UPI0002D4C97B hypothetical protein 2.4975230316e-07 9.31526773862e-08 -63221190.6185 +UniRef50_Q98PK9 Thioredoxin reductase 2.8050069553e-07 2.65460963868e-07 -6071724.23021 +UniRef50_A8AK39 6,7 dimethyl 8 ribityllumazine synthase 4.58485006708e-06 4.03248283798e-06 -222997428.696 +UniRef50_UPI000369CA42 hypothetical protein 3.61060801141e-08 2.04435977302e-05 8238754807.23 +UniRef50_Q58944 2.07529025695e-05 4.06632657497e-05 8038057943.48 +UniRef50_UPI00042A1E91 hypothetical protein 1.25922027982e-07 1.01615376546e-07 -9812893.46087 +UniRef50_F3F298 AsmA family protein 4.55602266102e-07 1.35299462802e-06 362288308.749 +UniRef50_UPI0002DB6B05 hypothetical protein 2.13083057587e-07 6.29001136813e-07 167911232.472 +UniRef50_UPI00036C5239 hypothetical protein 6.35681253298e-08 8.24753719114e-08 7633087.463 +UniRef50_C6SRS1 3.43071403632e-05 9.65131161782e-06 -9953860625.56 +UniRef50_A3V2W0 2.84899951708e-07 4.36951237902e-07 61384970.1156 +UniRef50_Q883S2 Universal stress protein family 1.94676558383e-05 3.57959642661e-06 -6414204552.92 +UniRef50_UPI0003B63590 LuxR family transcriptional regulator 3.89713931898e-07 4.03670263344e-06 1472334092.4 +UniRef50_UPI000365B6C8 hypothetical protein 9.38863149246e-08 2.13131346101e-07 48140682.3868 +UniRef50_L0A7F9 1.48227482538e-06 0.000452478303918 1.82072631288e+11 +UniRef50_D9RHP8 Enterotoxin family protein 0.000110469308107 1.05470251856e-05 -40339851799.7 +UniRef50_A9KSY6 Sulfate ABC transporter, inner membrane subunit 1.54919010474e-06 7.0353226378e-06 2214819026.01 +UniRef50_UPI00047845D7 hypothetical protein 1.69904274774e-07 2.16859141924e-07 18956256.0695 +UniRef50_A6LQA8 Methyl accepting chemotaxis sensory transducer 2.89905838214e-06 1.0235460952e-05 2961795745.24 +UniRef50_Q5HPI3 Protein GlcT 0.000146013238694 3.57745234146e-05 -44504722139.3 +UniRef50_UPI0003193330 hypothetical protein 1.36466157208e-06 3.54435595662e-07 -407840623.548 +UniRef50_B5EXJ5 7 cyano 7 deazaguanine synthase 5.43656356362e-07 4.73292727899e-07 -28406660.2693 +UniRef50_B0U641 Lipoyl synthase 8.95741312443e-06 2.80479079022e-05 7707067008.51 +UniRef50_B0NLN7 1.2687842486e-07 3.42671785859e-06 1332185672.98 +UniRef50_S5CLP0 Zn dependent hydrolase, including glyoxylase 7.5603967482e-06 5.34872958561e-05 18541252756.3 +UniRef50_Q6N6L4 Phosphopantetheine adenylyltransferase 2.64110495372e-07 1.62726623113e-07 -40929913.351 +UniRef50_T5BQJ5 1.74811347414e-07 6.39739018242e-08 -44746436.9131 +UniRef50_UPI000465E97D excinuclease ABC subunit A 3.81118476502e-08 2.09951386392e-08 -6910225.47338 +UniRef50_UPI0003715EFB hypothetical protein 6.91425932738e-08 5.51706059815e-07 194816793.162 +UniRef50_E8SKI8 Ribosomal protein S18p alanine acetyltransferase 0.000244381846984 4.52518068606e-05 -80391240798.0 +UniRef50_U2LTW3 6.62444019762e-08 5.5554877205e-07 197538178.639 +UniRef50_I3U9I7 Phosphomethylpyrimidine synthase ThiC 2.05742138901e-07 6.06746821728e-07 161890511.338 +UniRef50_O75306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2, mitochondrial 2.33029437924e-07 3.40040471578e-07 43201667.4592 +UniRef50_B4RJZ9 2.95680931211e-06 5.32934272303e-05 20321510353.3 +UniRef50_UPI00037AAD6E hypothetical protein 1.21976407489e-06 3.32858824924e-07 -358054532.963 +UniRef50_M4UTW5 5.16966622e-07 1.95126574201e-07 -129930776.718 +UniRef50_B9KR53 Transcriptional regulator, Fis family 2.57794229738e-05 4.94987553634e-06 -8409143907.81 +UniRef50_A0A029LHT4 2.68632192166e-05 1.6958113222e-05 -3998812839.34 +UniRef50_A0A024HXI8 8.56689916941e-07 1.78499755829e-06 374769186.428 +UniRef50_C6SQS1 5.27909842341e-05 1.26053388161e-05 -16223438188.6 +UniRef50_Q5HJ89 Protein EssA 0.000105080381829 3.15007540302e-05 -29704998665.9 +UniRef50_Q887V6 Protein CysZ homolog 1.03558584352e-05 3.50871332905e-06 -2764276503.27 +UniRef50_G7U6T9 Bacterial extracellular solute binding protein, family 5 3.00218762002e-06 5.9868394597e-05 22957585583.4 +UniRef50_UPI0002E39CBB hypothetical protein 5.9967823003e-08 4.07640353713e-07 140359667.069 +UniRef50_UPI00035CE977 hypothetical protein 1.91717573781e-05 5.60670480056e-06 -5476378187.45 +UniRef50_Q6FD73 1.2582866295e-05 0.000108565872938 38749517625.7 +UniRef50_A3M3H0 Adhesin Ata autotransporter 1.05657545649e-06 5.82996982867e-05 23109751138.7 +UniRef50_Q46I98 Aspartate tRNA ligase 2.71340909377e-08 1.35654558785e-07 43811044.5657 +UniRef50_UPI000467166E hypothetical protein 5.02842727754e-08 7.73174702735e-08 10913633.5646 +UniRef50_UPI00037BC758 dihydropyrimidine dehydrogenase subunit B, partial 2.72485495107e-06 1.28852465863e-06 -579864164.813 +UniRef50_Q5I3J7 Aec68 7.59788003887e-06 4.35174594507e-06 -1310504168.21 +UniRef50_UPI00036C8B3C AraC family transcriptional regulator 8.4999030458e-06 1.50217388882e-06 -2825069132.47 +UniRef50_Q62MT4 Methionyl tRNA formyltransferase 2.2469404098e-06 5.06535232946e-05 19542331526.2 +UniRef50_W4KZP5 Peptidase family S11 1.09931023379e-06 2.17266206765e-07 -356091997.607 +UniRef50_Q3JHM0 2.66549363836e-06 7.3421340745e-05 28565003748.8 +UniRef50_P80705 Aldehyde dehydrogenase gamma chain 0.000732701412317 5.4821190768e-05 -2.73668563965e+11 +UniRef50_V6UAA6 6.84133645646e-07 1.01454332734e-06 133390443.083 +UniRef50_UPI00047E4EA4 hypothetical protein 3.23101369536e-08 8.3257393168e-08 20568032.5269 +UniRef50_M1P548 Dipeptide binding ABC transporter, periplasmic substrate binding component 3.32086994703e-05 6.06932896307e-06 -10956496911.3 +UniRef50_UPI000289E1E5 sodium 2.48727342067e-07 5.75689030312e-07 131998445.816 +UniRef50_P37474 Transcription repair coupling factor 0.000135951546948 2.51558327466e-05 -44729589439.2 +UniRef50_P46320 Probable 6 phospho beta glucosidase 1.17342753866e-05 5.80918367303e-05 18715116385.7 +UniRef50_G4YC47 4.28442915246e-06 3.93144049521e-07 -1570959547.49 +UniRef50_Q5HP54 0.000143919739566 3.19683949508e-05 -45196131618.6 +UniRef50_R6FZP0 Flagellar M ring protein 6.50712489061e-06 8.00449093565e-06 604505047.13 +UniRef50_D6SFZ2 7.2968387879e-07 1.6406483622e-05 6328916432.3 +UniRef50_A5ISK2 ABC 2 type transporter 6.50822148537e-05 1.60100917807e-05 -19811018267.2 +UniRef50_UPI00035F0BE8 hypothetical protein 2.16008261563e-06 5.87483206376e-05 22845366105.3 +UniRef50_L8DT93 Chaperone protein DnaJ 7.43797070742e-07 7.10453049938e-07 -13461390.3757 +UniRef50_F8HGC4 Permease of the major facilitator family protein 2.14928393881e-07 5.11386655042e-07 119683837.983 +UniRef50_F0TCJ5 Methyltransferase MtaA CmuA family 4.49854756675e-05 3.78028476564e-06 -16635041211.7 +UniRef50_E4PPH7 DNA repair protein RecN 7.05128588587e-06 5.3448590692e-06 -688905446.101 +UniRef50_D7BZV1 6.1100953038e-07 4.03203452809e-07 -83893863.5827 +UniRef50_Q46948 Chaperone protein YajL 5.92854323394e-05 2.98687022154e-05 -11875894934.9 +UniRef50_P0A7B0 Inorganic pyrophosphatase 4.68975584017e-05 5.07306630968e-07 -18728313912.2 +UniRef50_UPI00037BC2EC hypothetical protein 5.36548186326e-08 1.04113297482e-07 20370707.1067 +UniRef50_UPI00036A31F9 hypothetical protein 6.45871748108e-07 2.52322934429e-07 -158880485.469 +UniRef50_UPI00047ED552 hypothetical protein 1.49257996457e-07 1.81686768888e-07 13091893.3762 +UniRef50_Q1GCB3 1.48225195358e-07 1.3980822569e-07 -3398033.9428 +UniRef50_A0Q1L0 Putative fluoride ion transporter CrcB 2.02224636885e-05 4.56675317307e-06 -6320402452.24 +UniRef50_A3V7A8 2.23271229081e-06 8.23731490911e-07 -568822839.058 +UniRef50_M9S3N5 Glycosyl transferase family protein 2.00291339078e-05 2.44063392719e-06 -7100693277.33 +UniRef50_U5MSV8 DNA binding protein, excisionase family 4.52686552077e-06 1.8496368431e-05 5639659749.93 +UniRef50_Q6UB95 RepA 1.66896197207e-06 7.96238755497e-08 -641635292.937 +UniRef50_UPI000369C939 hypothetical protein 1.97935694715e-07 3.60063142644e-07 65452840.2565 +UniRef50_P27298 Oligopeptidase A 1.23253352837e-05 1.14611916634e-06 -4513186731.0 +UniRef50_A0A058Z2Y8 1.30791648539e-08 6.61907223052e-09 -2608018.66631 +UniRef50_UPI0002486501 methylcitrate synthase 3.72161690008e-07 5.50823761587e-07 72128070.7266 +UniRef50_R5RD02 1.30195583421e-05 5.3693946399e-06 -3088464964.64 +UniRef50_UPI000405521B acyl CoA dehydrogenase 4.16643713376e-07 1.39261643727e-07 -111982545.378 +UniRef50_UPI0003B6EF1B dihydroxyacetone kinase 1.81633295496e-07 1.32191334626e-05 5263398805.58 +UniRef50_B8I2T4 UDP N acetylmuramoylalanine D glutamate ligase 5.77180061908e-06 1.26692657461e-05 2784591313.19 +UniRef50_Q5M1E5 4.52175034941e-05 3.51972985869e-05 -4045279682.78 +UniRef50_G7M8Y1 Type IV pilus assembly PilZ 2.23364490448e-06 3.40096013652e-06 471259483.743 +UniRef50_V9WDB1 7.07268037056e-07 1.2052550087e-07 -236875161.999 +UniRef50_UPI000473B5E4 translation initiation factor IF 3, partial 2.18261941611e-06 3.11851248785e-06 377831517.761 +UniRef50_S8ZG58 Amidase 1.91813840575e-06 2.90685751701e-06 399158038.164 +UniRef50_UPI000262E88D reductase 1.18951484509e-06 2.10977835457e-06 371521671.68 +UniRef50_P72785 4 alpha glucanotransferase 1.38621375834e-07 7.68150898684e-06 3045156290.2 +UniRef50_UPI00047CBF8E hypothetical protein 6.80074935093e-08 1.17248636291e-07 19879253.5977 +UniRef50_F2LSI9 Metal dependent phosphohydrolase, HD region 2.6397621598e-06 3.31327340308e-05 12310386935.2 +UniRef50_UPI00026286B7 ABC transporter permease 1.93025738056e-06 1.46774618893e-07 -720013876.681 +UniRef50_UPI00037C530D hypothetical protein 2.55150246161e-08 3.96254489078e-08 5696551.44094 +UniRef50_X3WHN6 Short chain dehydrogenase 2.32259994116e-07 5.06289508849e-07 110629077.818 +UniRef50_UPI000366373C hypothetical protein 3.48154852414e-06 1.34243135142e-06 -863587852.547 +UniRef50_O27123 DNA directed RNA polymerase subunit B 2.7263150849e-05 9.15817077032e-06 -7309202630.86 +UniRef50_UPI000464BDF6 amino acid permease 2.38554011583e-07 7.63671270001e-08 -65476835.563 +UniRef50_UPI0002D53655 hypothetical protein 4.23800650564e-07 2.57721182107e-07 -67048319.4403 +UniRef50_D9UDJ1 Predicted protein 1.03346272487e-05 9.21492938561e-07 -3800197833.15 +UniRef50_UPI0003B6AAD5 hypothetical protein 3.28656895422e-07 1.33915526063e-07 -78619480.5556 +UniRef50_UPI00036396B4 hypothetical protein 1.38791313155e-07 7.88674304946e-06 3127943194.01 +UniRef50_Q5HP23 Acetylglutamate kinase 5.9154411298e-05 2.75544682379e-05 -12757284788.3 +UniRef50_R7PUS4 Adhesin like protein 4.099221115e-05 7.70132169605e-06 -13439940597.7 +UniRef50_B0RVC3 Two component system response regulator 7.64211441894e-06 3.70989493815e-05 11892085750.4 +UniRef50_U6HM79 Mitochondrial ribosomal protein S12 8.03480802961e-07 1.03886971248e-06 95029391.3196 +UniRef50_C5Y1C5 3.49696237215e-07 7.7775025377e-07 172810659.297 +UniRef50_UPI00029AFBF4 excinuclease ABC subunit A 8.11635146615e-08 2.36392085813e-07 62667679.0424 +UniRef50_X7F301 4.95161601479e-07 3.16890752935e-07 -71970129.1865 +UniRef50_UPI0003B6DCF9 cysteine synthase 3.50528952244e-08 1.70442751601e-07 54658546.4398 +UniRef50_UPI0002490F12 alcohol dehydrogenase 1.0361242598e-07 9.68459580098e-08 -2731706.15347 +UniRef50_Q3J074 TRAP T family transporter, DctP subunit 0.000127254856915 3.97289273861e-05 -35335291814.8 +UniRef50_C4J2K7 1.56502016027e-06 7.5391217446e-06 2411818120.06 +UniRef50_A0A028WY26 PF04507 domain protein 1.57956794645e-07 2.93457791256e-07 54703415.1161 +UniRef50_C5Y4M7 2.41275560139e-06 7.30141036513e-07 -679292147.845 +UniRef50_Q2Y5B5 Ribosomal RNA small subunit methyltransferase G 2.17335841766e-07 4.59826369244e-07 97896401.6363 +UniRef50_X2I3A5 Biotin protein ligase 1.07988336529e-05 2.36825759424e-05 5201324863.57 +UniRef50_L1K7Q7 2.45044686356e-05 8.13188663273e-06 -6609812268.75 +UniRef50_P55177 Hydrolase in agr operon 0.000189370777488 1.83490899356e-05 -69043553936.8 +UniRef50_P77966 DNA gyrase subunit B 1.15717469857e-07 1.5680260196e-07 16586572.0012 +UniRef50_U3QXL3 NADH dehydrogenase 1.62476035378e-06 7.19594470653e-05 28394976129.1 +UniRef50_L0DVV1 5.67799233753e-07 5.25381471564e-06 1891801953.92 +UniRef50_V9XXU6 4.92880611665e-08 3.12355936417e-06 1241121050.57 +UniRef50_P76082 2,3 dehydroadipyl CoA hydratase 2.28813312123e-05 1.0361989656e-05 -5054211815.88 +UniRef50_UPI000462B96F PREDICTED 8.44316011577e-08 4.81819953464e-08 -14634410.6987 +UniRef50_F8KNY9 3.21151144903e-05 1.61223912243e-05 -6456458635.27 +UniRef50_N0CST0 1.01839745189e-06 1.17895732041e-06 64819989.2127 +UniRef50_A6M3H8 1.51804016961e-06 8.87268018229e-06 2969158424.7 +UniRef50_F3KGL6 8.02630746945e-07 1.2501574942e-06 180672039.638 +UniRef50_J7QZC7 Citrate dependent iron transport, membrane bound protein 3.24403690212e-05 9.75817036696e-06 -9157081938.58 +UniRef50_W8RUY9 Carbonic anhydrase, family 3 2.08566720793e-06 6.40403867119e-06 1743379552.1 +UniRef50_UPI000376C688 MULTISPECIES 3.0104252435e-06 7.4105265967e-07 -916173560.425 +UniRef50_G7LY34 ATP dependent DNA helicase RecQ 3.72145752678e-06 1.72377955165e-05 5456711510.56 +UniRef50_UPI0003B3BF74 diguanylate cyclase 6.25603067063e-08 6.0645157761e-07 219575580.36 +UniRef50_UPI00016AC33B malto oligosyltrehalose synthase, partial 1.60060594764e-07 2.25998052077e-07 26619760.6608 +UniRef50_P0ACB9 Protein HemY 2.50102242456e-05 1.98237388763e-05 -2093847788.92 +UniRef50_B9KPD3 Small GTP binding protein 2.6150676038e-05 8.52480117634e-06 -7115781975.48 +UniRef50_C1KXH5 3 5 exoribonuclease YhaM 0.000254843543049 7.43461518344e-05 -72869011785.6 +UniRef50_UPI00035C4E67 hypothetical protein, partial 4.17887867711e-07 5.48632219814e-06 2046189135.88 +UniRef50_Q5LZU3 Phosphate import ATP binding protein PstB 1 6.19608750746e-08 8.65769685155e-07 324507480.473 +UniRef50_UPI000362695F hypothetical protein 3.10218232137e-08 2.36375038554e-06 941751146.411 +UniRef50_Q81ZF5 Methionine import ATP binding protein MetN 2 2.08542584581e-07 1.68591839309e-06 596434743.335 +UniRef50_Q3J527 0.000121910723862 2.76895955352e-05 -38038225728.8 +UniRef50_Q3J525 3.61244030935e-05 1.93867795882e-06 -13801196742.9 +UniRef50_Q3J523 1.05059262312e-05 4.41870381833e-06 -2457486386.69 +UniRef50_UPI0004098CF0 hypothetical protein 4.66871030311e-07 2.30291735532e-06 741234432.229 +UniRef50_UPI0004261724 hypothetical protein 2.96403389293e-07 4.5459373169e-07 63863382.4395 +UniRef50_P37178 Phosphoenolpyruvate protein phosphotransferase PtsP 2.39966373598e-05 1.03633685435e-05 -5503917920.16 +UniRef50_K6NB87 NADP oxidoreductase coenzyme F420 dependent 6.15466286172e-06 1.04974776197e-05 1753247610.13 +UniRef50_Q00753 Msm operon regulatory protein 2.75549624179e-05 4.29336914563e-06 -9390990655.88 +UniRef50_UPI000360AD7B hypothetical protein 4.47930729935e-08 3.41186920229e-06 1359329952.07 +UniRef50_UPI000345C404 peptide ABC transporter ATP binding protein 4.86775225569e-07 3.61240999147e-07 -50679707.6847 +UniRef50_UPI00046F1741 DNA mismatch repair protein MutL 3.49785532092e-08 5.40716037161e-08 7708098.78771 +UniRef50_K2M973 3.81264435227e-06 3.17625567404e-07 -1410981972.16 +UniRef50_Q8Z389 UDP N acetyl D mannosamine dehydrogenase 2.4089561752e-05 6.5462505164e-06 -7082450026.45 +UniRef50_I1PAG3 2.59136595254e-07 2.79710828579e-06 1024610315.89 +UniRef50_UPI00046359F3 hypothetical protein 2.58868812771e-07 3.86167435997e-07 51392016.3261 +UniRef50_R9SHS2 Xaa Pro aminopeptidase 3.86270886266e-05 6.70593214563e-06 -12886962588.0 +UniRef50_Q05026 UDP glucose 4 epimerase 9.04220494495e-06 7.12825588158e-05 25127194632.7 +UniRef50_UPI000383C331 PREDICTED 3.02132796513e-07 5.05654325675e-08 -101560831.904 +UniRef50_F2GA52 Starvation protein B 3.58372774223e-06 0.000133533360461 52462261390.0 +UniRef50_UPI00046CD6A6 hypothetical protein 5.12177947953e-08 3.69509054181e-07 128498087.287 +UniRef50_UPI0003B37C7C Ssp gyrB intein 6.15983921532e-08 1.08104393249e-07 18775043.3352 +UniRef50_UPI00038053ED hypothetical protein 1.79764749136e-07 2.95857707503e-07 46868151.9136 +UniRef50_A6TLS6 Phosphoribosylglycinamide formyltransferase 7.40024939322e-06 1.58927747328e-05 3428536694.59 +UniRef50_UPI000379A6AD 30S ribosomal protein S4 1.25482226493e-07 5.14116048871e-07 156896243.167 +UniRef50_X0SMG4 Marine sediment metagenome DNA, contig 2.56332440775e-07 1.99653510848e-07 -22881979.5402 +UniRef50_Q6FBI7 1.32451224162e-06 0.000100308842154 39961188660.0 +UniRef50_A5IUD2 ATP dependent Clp protease proteolytic subunit 0.00034890681551 4.43146008775e-05 -1.22967614814e+11 +UniRef50_UPI0003817364 hypothetical protein 2.59817991815e-07 2.42163405843e-07 -7127373.00303 +UniRef50_Q2S1J1 Adenylosuccinate synthetase 4.33379782052e-08 1.00683879558e-07 23151244.0895 +UniRef50_Q5LAB4 3 isopropylmalate dehydrogenase 2.94032841193e-07 4.38276547754e-05 17575057392.5 +UniRef50_UPI0003661FA3 methionyl tRNA synthetase 1.49776098015e-07 4.33400766059e-07 114502758.955 +UniRef50_R5RTQ1 MIP family channel protein 3.1855357709e-06 5.49488731932e-06 932313559.027 +UniRef50_Q4L8Y1 0.000169737491982 4.73252760718e-05 -49419313729.7 +UniRef50_UPI0003620285 hypothetical protein 1.72211416555e-07 2.23520030114e-07 20713916.9213 +UniRef50_A4X3N1 8.71054251266e-08 6.93609249395e-07 244853036.496 +UniRef50_M7AGI7 3.67785066002e-07 4.48062821029e-06 1660405247.61 +UniRef50_A3UJ86 5.0458596107e-08 9.44328168304e-08 17752932.5304 +UniRef50_G0EV06 Malonate decarboxylase gamma subunit 5.93300163503e-06 8.87721914726e-05 33443197488.6 +UniRef50_Q46908 Putative electron transfer flavoprotein subunit YgcR 4.10816030675e-05 9.10817538908e-06 -12908065111.8 +UniRef50_J9YRC9 Dihydrofolate reductase 3.60663075539e-05 1.33304042597e-05 -9178763160.78 +UniRef50_P19669 Transaldolase 5.0599703289e-06 0.000347280891969 1.38158785589e+11 +UniRef50_UPI00035C8A55 hypothetical protein, partial 5.34985256172e-08 3.37463840886e-07 114640282.42 +UniRef50_Q3JRV3 200 kDa antigen p200, putative 4.75917892965e-07 1.92530779876e-06 585136490.982 +UniRef50_UPI00016B0021 alkaline phosphatase family protein 1.59255198506e-06 6.87980406621e-07 -365186646.557 +UniRef50_UPI00016BFB47 excinuclease ABC subunit C 2.39863277606e-08 3.35155000666e-07 125622611.721 +UniRef50_P75957 Lipoprotein releasing system ATP binding protein LolD 3.27849683527e-05 0.000132777029417 40368022092.2 +UniRef50_Q8Y6E5 Adenine deaminase 1.68644069208e-07 1.21260965577e-05 4827370304.05 +UniRef50_V6QD47 7.55570608499e-07 6.3505902113e-07 -48652006.6643 +UniRef50_R6XHZ3 Iron compound ABC transporter ATP binding protein 7.82617263819e-06 1.49295544533e-05 2867722407.06 +UniRef50_UPI0004697408 DNA processing protein 2.32208004216e-07 4.83185187353e-07 101322568.669 +UniRef50_Q1C7K2 Electron transport complex subunit B 1.59646010473e-05 1.34960604522e-05 -996580130.641 +UniRef50_O86062 NADH pyrophosphatase 1.52416953778e-06 1.45365298885e-07 -556640191.071 +UniRef50_X6L5V7 4.78063390865e-07 1.65147512635e-07 -126327979.951 +UniRef50_UPI00046F4BB9 transcriptional regulator 2.20981940467e-06 2.2909487724e-07 -799642797.947 +UniRef50_B2V236 Flagellar hook protein FlgE 6.31652931167e-06 1.90074900496e-05 5123496585.49 +UniRef50_G0AHQ2 TonB dependent receptor 4.28961350982e-07 1.86985511116e-05 7375657579.43 +UniRef50_UPI000472C224 hypothetical protein 1.9869562248e-07 4.84201533734e-07 115262239.925 +UniRef50_UPI00035FBCBA hypothetical protein 3.68836549714e-07 1.88282219208e-07 -72891998.8761 +UniRef50_V8PQC8 1.71368740561e-06 1.79414666201e-06 32482389.1548 +UniRef50_UPI00023781E2 acyl homoserine lactone synthase 8.48793668839e-08 1.3598673887e-07 20632673.2288 +UniRef50_R7QQF1 Stackhouse genomic scaffold, scaffold_590 1.53734525033e-06 2.65387388015e-07 -513504997.693 +UniRef50_UPI0003A1834B MULTISPECIES 1.94194385449e-06 1.02805543027e-05 3366399364.2 +UniRef50_Q9C641 Elongation factor G 1, mitochondrial 8.7461524609e-08 1.87250108941e-07 40285876.0385 +UniRef50_UPI00047AAA07 beta lactamase 4.14014628745e-07 9.35891470893e-08 -129359699.007 +UniRef50_Q1CTN3 7 cyano 7 deazaguanine synthase 7.3552316648e-08 1.52049852899e-05 6108745174.88 +UniRef50_T3PCK3 Transcriptional regulator family protein 1.26054585924e-07 6.1449939537e-07 197191163.465 +UniRef50_UPI0000E11B6C Hemolysin type calcium binding region 2.62992550307e-07 6.12257821973e-08 -81455720.2427 +UniRef50_P18392 Sensor protein RstB 3.31947000221e-05 3.11759312802e-06 -12142497140.8 +UniRef50_UPI0003686798 hypothetical protein 1.18589681096e-07 1.11366429858e-07 -2916115.16404 +UniRef50_A7IEB4 1.27468925487e-06 4.6006267925e-07 -328874745.17 +UniRef50_F0MK77 HAD hydrolase, IIB family 3.45261575169e-06 2.63450906111e-05 9241973023.0 +UniRef50_UPI00035D0C83 hypothetical protein, partial 3.87200208382e-08 5.38553686665e-07 201788984.543 +UniRef50_UPI0003B7726E ABC transporter permease 1.85891441069e-07 8.50843552875e-07 268449327.416 +UniRef50_UPI0003B5ECB0 putrescine spermidine ABC transporter substrate binding protein 4.63327389952e-07 2.10230446326e-07 -102178341.991 +UniRef50_D1AJ49 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 1.44262161343e-06 5.36876708778e-06 1585033107.22 +UniRef50_A6LUW0 Dihydropyrimidinase 5.22153143512e-06 1.79849325122e-05 5152741639.37 +UniRef50_P23849 Trk system potassium uptake protein TrkG 2.97537204217e-05 4.24093004108e-06 -10299826553.8 +UniRef50_UPI000413C1F5 hypothetical protein 2.43524730173e-07 1.36739234032e-06 453719145.624 +UniRef50_UPI00036EC63D hypothetical protein 1.58246278646e-07 3.40650364033e-06 1311361357.51 +UniRef50_O27465 Protein L isoaspartate methyltransferase homolog 4.13475052348e-05 2.43059016624e-06 -15711236177.4 +UniRef50_G7M4H0 GntR domain protein 5.35790836533e-06 1.37438457389e-05 3385505824.73 +UniRef50_UPI0003646C18 hypothetical protein 9.9569923154e-07 1.29189679279e-06 119578590.229 +UniRef50_UPI00035E99F6 hypothetical protein, partial 9.54089252679e-06 1.94526437422e-06 -3066448294.03 +UniRef50_W0Z0M6 ABC transporter permease 4.61187096749e-06 0.000136664240062 53311161868.4 +UniRef50_R7PVK0 Bacterial transferase hexapeptide 2.55833705923e-05 3.14724730229e-06 -9057738294.37 +UniRef50_F0TB29 Mur ligase middle domain protein 2.34083951527e-05 7.37076263321e-06 -6474589052.0 +UniRef50_O07051 L allo threonine aldolase 8.21738197097e-08 1.09009903017e-07 10834056.1469 +UniRef50_T1XRH9 Ribulose phosphate 3 epimerase 0.00014711479945 2.36184775907e-05 -49856980604.8 +UniRef50_A0A023S2Y3 6.18829489919e-06 9.1773258282e-05 34551699963.2 +UniRef50_B3PM96 Uracil phosphoribosyltransferase 9.35247077329e-08 6.05640621401e-07 206747478.717 +UniRef50_UPI0003B6FCF3 sulfate permease, partial 1.59845459402e-06 5.54979110733e-07 -421263857.488 +UniRef50_Q3KK43 1.12102810476e-06 6.60403464128e-07 -185959819.923 +UniRef50_E6U995 Binding protein dependent transport systems inner membrane component 0.000117456894986 7.68692955467e-05 -16385711959.5 +UniRef50_S9FAF7 1.81384188751e-06 2.44542040453e-06 254975997.661 +UniRef50_J9PA20 2.88428780309e-07 5.44504995258e-07 103381110.383 +UniRef50_F0L4J7 Terminase large subunit 1.52816886268e-07 7.32641926799e-08 -32116398.6228 +UniRef50_UPI00047624EF DNA recombination protein RecAprecursor 1.1287043079e-06 1.88898470941e-06 306934527.779 +UniRef50_A0LGY7 Holliday junction ATP dependent DNA helicase RuvA 1.40159337328e-07 1.14111709306e-07 -10515747.0728 +UniRef50_Q1GJB3 Protein NrdI 1.57258387319e-07 7.44143467281e-07 236932708.67 +UniRef50_A6FR36 8.35014631599e-07 8.71288980447e-06 3180394879.69 +UniRef50_UPI0003683730 choline dehydrogenase, partial 2.42865320735e-07 8.87448009164e-08 -62220345.1224 +UniRef50_A3PNW7 4.93661758386e-05 2.83286608633e-06 -18786068174.9 +UniRef50_G8AX62 0.000132619931527 3.78459148619e-05 -38261433535.7 +UniRef50_G8AX61 1.435134661e-06 7.5603260534e-06 2472814929.66 +UniRef50_UPI000288951C hypothetical protein 2.2285043728e-06 4.02435811958e-06 725008195.179 +UniRef50_Q2FJ20 Transcriptional regulator SarA 4.67982129243e-05 3.62371240964e-05 -4263641158.96 +UniRef50_P30952 Malate synthase 1, glyoxysomal 1.07876045969e-07 7.84865810319e-08 -11864887.6444 +UniRef50_U5BVT6 4.21841601109e-07 1.66278651571e-07 -103173898.839 +UniRef50_UPI00046A51CF hypothetical protein 1.04665757863e-07 3.15489913774e-07 85112298.8446 +UniRef50_W4HL11 1.84284309224e-06 4.31173411985e-08 -726571370.813 +UniRef50_UPI00041A2261 hypothetical protein 6.54074356327e-07 1.64110405488e-05 6361280611.63 +UniRef50_UPI000465CB11 choline dehydrogenase 2.89691893462e-07 1.35853457598e-07 -62106464.3682 +UniRef50_K3Y3R8 4.34133883887e-07 9.6304558664e-06 3712668035.9 +UniRef50_UPI0003D774B2 PREDICTED 6.1158071885e-08 1.1456963424e-07 21562903.1563 +UniRef50_G7DEN0 1.26933045868e-06 7.97633307071e-07 -190429928.48 +UniRef50_UPI000303FFC3 hypothetical protein 2.05795428692e-06 2.90597859939e-07 -713503477.474 +UniRef50_T2EBD3 ATP dependent helicase HrpA 4.33300520741e-06 1.38548700922e-06 -1189949266.73 +UniRef50_UPI0003751AA9 hypothetical protein 9.8473647344e-08 3.65590816294e-07 107838479.001 +UniRef50_UPI000174441D ATPase AAA 2 domain protein 5.61940744332e-08 1.53768649842e-07 39392053.4672 +UniRef50_UPI0003B682D7 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.91845796489e-08 9.01760878804e-08 16548774.8954 +UniRef50_UPI0003EFB271 hypothetical protein 6.12139441381e-06 8.16543885337e-06 825205823.496 +UniRef50_Q04G65 Adenylate kinase 2.18027589446e-07 1.7278852478e-07 -18263565.5514 +UniRef50_UPI00047D9C2A 3 hydroxybutyryl CoA dehydrogenase 3.04837157664e-08 6.35690198217e-07 244329283.684 +UniRef50_E1W4N2 1.85081076005e-07 1.09047705241e-05 4327670175.58 +UniRef50_P0A0U8 Penicillin binding protein 2 6.76979898706e-07 2.42281598542e-05 9507900353.51 +UniRef50_B2S7C0 Thromboxane receptor 1.28857402545e-05 3.16174464854e-06 -3925696352.97 +UniRef50_D5WJ02 PE PGRS family protein 2.8690382283e-08 4.11278588838e-08 5021161.92874 +UniRef50_C3FB78 Transposon Tn1546 resolvase 7.04417342713e-05 1.09577299846e-05 -24014422481.4 +UniRef50_P90597 Dihydrolipoyl dehydrogenase 9.09333356538e-05 1.28845863784e-05 -31509237848.3 +UniRef50_G7D8J6 3.6351821613e-07 4.00939179421e-07 15107302.0874 +UniRef50_M9VK36 Cobaltochelatase subunit 2.80888951858e-06 4.06509453624e-05 15277302318.4 +UniRef50_K2G5P2 1.57946743163e-06 2.97142045145e-06 561948515.286 +UniRef50_UPI0003B33E99 phosphopentomutase 1.00769884913e-07 1.89219212099e-07 35708078.7803 +UniRef50_UPI0003B58728 peptidase 1.29514688596e-07 8.66277331382e-07 297440119.987 +UniRef50_P65368 5.06692602481e-06 4.2903153298e-06 -313527267.66 +UniRef50_P54981 Phytoene dehydrogenase 4.01864129138e-08 5.85424014261e-08 7410537.81572 +UniRef50_Q8RM03 Acetone carboxylase alpha subunit 6.09175882979e-07 3.87753876337e-05 15408168035.8 +UniRef50_G7M7T5 Metallophosphoesterase 1.41028389365e-06 2.16878853269e-06 306217630.679 +UniRef50_M0DR98 Transcriptional regulator 5.23536345079e-07 4.65598535357e-07 -23390204.7616 +UniRef50_U2PUQ4 5.68266512977e-08 7.87481202392e-08 8849966.01836 +UniRef50_F7Y7J0 NAD dependent epimerase dehydratase 6.73835425204e-05 1.50403681545e-05 -21131581814.5 +UniRef50_B7I4D0 Transcriptional regulator, DeoR family 3.86504425449e-06 8.30031375279e-05 31949019388.1 +UniRef50_R9TYY8 Spore envelope assembly protein SeaA 7.23220937551e-07 2.44400031881e-06 694699752.552 +UniRef50_Q8X693 2 methylcitrate dehydratase 3.40320085295e-05 1.08713551185e-05 -9350239995.2 +UniRef50_F2ADJ4 1.38313035997e-05 2.54949673557e-06 -4554603874.38 +UniRef50_R5QQN1 2.54995435079e-07 3.75624999062e-07 48699635.2711 +UniRef50_D4DML3 2.03329935824e-07 1.9802893202e-06 717380309.218 +UniRef50_E4CT22 9.63042046387e-07 1.36332082892e-05 5115101592.64 +UniRef50_G7RE88 Outer membrane specific lipoprotein transporter subunit LolC 5.9290993013e-06 2.43374318948e-05 7431669763.64 +UniRef50_UPI0003B33E14 threonine dehydratase, partial 2.34716605286e-07 1.42558671113e-07 -37205288.9307 +UniRef50_E4WMF0 8.60873045102e-07 1.02460966035e-06 66102480.8498 +UniRef50_UPI00036DEA69 hypothetical protein 3.42528906782e-08 4.85654044341e-08 5778137.43755 +UniRef50_G0A8R2 Amino acid adenylation 1.77007877711e-06 7.74729090068e-05 30562161541.9 +UniRef50_UPI00046677C0 dihydrolipoamide dehydrogenase 2.85647164802e-08 7.00147137054e-08 16733872.5285 +UniRef50_UPI0004669176 ABC transporter permease 1.50565574156e-06 1.4390675152e-06 -26882484.111 +UniRef50_UPI0004651997 hypothetical protein, partial 5.94867436361e-07 1.23760830211e-06 259482374.82 +UniRef50_P51649 Succinate semialdehyde dehydrogenase, mitochondrial 1.2014348092e-07 5.37934655245e-08 -26786315.4214 +UniRef50_Q4L9G5 Alkaline phosphatase III 0.000222084613425 3.97633193326e-05 -73605343758.8 +UniRef50_S6AK43 7.70370699852e-08 2.31953396884e-07 62541622.2062 +UniRef50_W0BBW6 Acetyl coenzyme A synthetase 6.11706170381e-06 2.98108859029e-06 -1266030828.65 +UniRef50_P24197 7.48076639058e-05 1.73759247627e-05 -23185897858.8 +UniRef50_D3QJ12 ABC transporter ecsA 0.00011552820468 4.65031277247e-05 -27866270599.8 +UniRef50_A0JTB2 Homodimeric dihydroxyacetone kinase 1.57557738449e-06 7.12616033919e-05 28133103842.9 +UniRef50_UPI000377AAAD hypothetical protein 3.82898087767e-08 1.25381998203e-07 35160185.6127 +UniRef50_T1C4J3 Protein containing DUF28 4.80040828154e-07 7.17163224773e-07 95729221.3341 +UniRef50_UPI00039592E8 PREDICTED 5.05038838937e-07 2.32783355571e-06 735884595.367 +UniRef50_A7HM29 Translation initiation factor IF 1 6.18829489919e-06 8.1279827118e-06 783075772.597 +UniRef50_P59351 UPF0229 protein PP_0396 3.77148109125e-05 3.61138469877e-06 -13767971658.6 +UniRef50_F9P554 Conserved domain protein 4.5620194744e-07 1.70842923096e-06 505539520.914 +UniRef50_Q3IUY8 Response regulator receiver protein 0.000337235622163 5.51672438586e-05 -1.1387446569e+11 +UniRef50_UPI0002F4F600 translation elongation factor 9.3939874071e-09 1.01147992854e-07 37042217.9472 +UniRef50_D0WHH7 4.8358880979e-07 1.41733403282e-06 376964404.88 +UniRef50_UPI0002D2633F 3 isopropylmalate dehydrogenase 1.95900133682e-07 3.27629058024e-07 53180583.2525 +UniRef50_UPI0003F54605 aldehyde dehydrogenase 1.89488844077e-07 5.00370110407e-07 125506582.16 +UniRef50_B2S584 Ribulose phosphate 3 epimerase 2.66400867833e-05 2.56054946702e-06 -9721204703.74 +UniRef50_Q8PUM8 Sodium proline symporter 3.64758312227e-05 2.2576016586e-06 -13814319179.9 +UniRef50_Q60BY8 Type 4 fimbrial biogenesis protein PilM 1.35499020047e-05 7.42300104528e-05 24497304409.2 +UniRef50_Q8CMK8 Membrane protein insertase YidC 1 0.000306172626198 8.0452501302e-05 -91125984317.9 +UniRef50_UPI0001695299 ABC transporter like protein 2.40921666254e-07 8.68429531725e-07 253332625.678 +UniRef50_Q7UKJ8 Bifunctional purine biosynthesis protein PurH 2.64844047851e-08 1.0666131234e-07 32368401.4612 +UniRef50_P0AG01 Lipopolysaccharide biosynthesis protein WzzE 3.05385263064e-05 2.53490734069e-06 -11305404619.5 +UniRef50_UPI00026C71F4 ABC transporter ATP binding protein 4.25670285668e-08 3.95585196293e-08 -1214571.97662 +UniRef50_P58083 Histidine ammonia lyase 3.26337042028e-08 1.4373723425e-07 44853858.4736 +UniRef50_U7DF00 GntR family transcriptional regulator 1.74498858837e-05 4.12069821193e-06 -5381156630.63 +UniRef50_Q8CAY6 Acetyl CoA acetyltransferase, cytosolic 0.000133477838507 0.000207103695432 29723661931.5 +UniRef50_A3PKD3 Flagellar motor switch protein FliG 7.45663665815e-05 2.60170437561e-05 -19599957391.8 +UniRef50_F2A6H7 2.57851065039e-06 8.95114064817e-07 -679607859.194 +UniRef50_UPI0004117F04 hypothetical protein 8.6012962144e-07 4.33820558637e-07 -172106200.054 +UniRef50_D8JDE9 Major Facilitator Superfamily protein 1.20218467792e-06 4.6780585004e-05 18400559521.5 +UniRef50_V7ZFZ6 2.25982271813e-06 3.69866404465e-07 -762998556.201 +UniRef50_Q64737 Trifunctional purine biosynthetic protein adenosine 3 1.54385654923e-08 2.46798581498e-08 3730823.24925 +UniRef50_UPI0003787A56 hypothetical protein 4.6770519013e-07 1.72593247022e-07 -119140312.863 +UniRef50_I6T745 Cell wall protein, WapE 5.40082228613e-05 1.72852646243e-05 -14825508881.7 +UniRef50_P23388 Multiphosphoryl transfer protein 3.15628176361e-08 4.41932789098e-06 1771394604.04 +UniRef50_M7D383 Transposon protein 6.28971861234e-05 2.840482113e-05 -13924991016.8 +UniRef50_Q7UTP4 Glycerol kinase 6.97697375901e-07 1.55400055359e-06 345700100.855 +UniRef50_P37753 Mannose 1 phosphate guanylyltransferase 1.05861549334e-07 1.52590596126e-07 18865089.6198 +UniRef50_V3L139 1.82486730767e-08 1.0281683104e-07 34141203.1378 +UniRef50_M7EU96 GroEL 4.46980156721e-07 3.53736568794e-07 -37643580.6736 +UniRef50_F9EHV6 Integral membrane transport protein 2.09428952523e-06 1.03741231337e-06 -426674299.77 +UniRef50_Q8A8M0 Glycine dehydrogenase 2.11820220981e-08 3.02724220445e-05 12212796821.5 +UniRef50_X6L4K9 3.92923234993e-07 6.90149012455e-07 119993693.732 +UniRef50_Q3K9C8 Ribosomal RNA large subunit methyltransferase M 5.26943973226e-06 7.19049117033e-06 775552039.501 +UniRef50_D8JDM8 Dihydropteroate synthase 1.33387275209e-06 9.92356387055e-05 39524144305.2 +UniRef50_Q88FQ7 Enoyl CoA hydratase isomerase family protein 1.3086448302e-05 8.75825663483e-06 -1747344088.92 +UniRef50_K2JPR7 1.96068547055e-07 1.42011653263e-07 -21823431.3765 +UniRef50_UPI0002557988 dihydroorotate dehydrogenase 2, partial 1.17524137511e-06 2.02499387948e-06 343055513.65 +UniRef50_A9BLG4 binding domain protein 1.80615305666e-06 0.000628774108913 2.53114657541e+11 +UniRef50_UPI00031A92CD hypothetical protein 1.02447300678e-07 2.61620079704e-07 64260004.1624 +UniRef50_P11664 3.66492134521e-05 5.69232459282e-06 -12497675916.2 +UniRef50_M4WU27 Amidohydrolase 1.30655935614e-06 1.14463839216e-06 -65369480.1524 +UniRef50_B4RPU8 Lipoprotein 1.16149535026e-06 2.330846218e-05 8941002282.99 +UniRef50_UPI00047BD119 hypothetical protein 6.12368721607e-08 3.13396619546e-07 101799984.367 +UniRef50_UPI000382255A MULTISPECIES 1.40641698285e-07 3.06206978412e-06 1179416368.21 +UniRef50_A6U1W4 Segregation and condensation protein A 0.000202317503647 2.98740575775e-05 -69617535297.1 +UniRef50_A7X311 0.000153648446047 1.07635315478e-05 -57684393378.3 +UniRef50_UPI0003A8C9CC ArsR family transcriptional regulator 1.1215081546e-07 1.36422987263e-07 9798973.60991 +UniRef50_P44975 Lipoprotein signal peptidase 1.20916049747e-07 1.71586144645e-07 20456139.1023 +UniRef50_Q8D2J1 Orotidine 5 phosphate decarboxylase 2.30160379788e-07 1.2330430024e-07 -43139110.5851 +UniRef50_B7UZF1 2.88206018206e-06 1.49193509642e-05 4859602002.9 +UniRef50_Q602P0 Non canonical purine NTP pyrophosphatase 8.24947697749e-06 1.1914714636e-05 1479701420.26 +UniRef50_UPI00047986C5 methionine aminopeptidase 6.12798423496e-07 2.34851427067e-07 -152581840.39 +UniRef50_UPI000345A820 hypothetical protein 7.75556263385e-08 5.95181092741e-08 -7281966.98412 +UniRef50_P94328 Cyclic pyranopterin monophosphate synthase accessory protein 0.000122205926933 1.16897896602e-05 -44616720802.6 +UniRef50_Q4A054 0.000137536410681 4.19861891142e-05 -38574796979.6 +UniRef50_UPI00016C38B9 S adenosylmethionine synthetase 3.94979311068e-07 2.14204176797e-06 705310552.718 +UniRef50_A1B0J8 Extracellular solute binding protein, family 5 6.35951168668e-05 2.7240595395e-05 -14676766438.3 +UniRef50_UPI00036C4EF7 30S ribosomal protein S2 7.60295381e-08 1.49603012688e-07 29702514.5392 +UniRef50_P94427 Probable 4 aminobutyrate aminotransferase 4.88267542428e-06 1.45329175297e-05 3895921159.75 +UniRef50_G0VNS1 PTS family mannitol porter 4.58007796146e-06 1.68080938869e-05 4936600083.71 +UniRef50_M7A0H8 3.93391623346e-07 5.28075610996e-07 54373578.5727 +UniRef50_F9P6H2 TIGR01906 like family protein 8.66905156637e-07 8.64446586345e-07 -992554.996931 +UniRef50_UPI00047CB6EE serine threonine protein phosphatase 5.41039071829e-08 1.25923573661e-07 28994480.6836 +UniRef50_F5X0H0 Haloacid dehalogenase like hydrolase 6.49099431235e-05 2.67884446345e-05 -15390116743.4 +UniRef50_P77634 3.17410621531e-05 3.79417421202e-05 2503290593.62 +UniRef50_K7S5J0 Transcriptional regulator, DeoR family 8.65908321316e-06 3.19454859035e-05 9401006522.37 +UniRef50_C9RW76 YhgE Pip C terminal domain protein 1.90641780282e-08 3.19710204659e-08 5210650.67687 +UniRef50_E8SIF5 Biotin carboxylase 0.000182747972674 4.46490393811e-05 -55752234034.9 +UniRef50_UPI000255CC5F cation 1.79013989706e-06 8.8573417531e-06 2853116113.6 +UniRef50_A0A059MIV5 Aldehyde dehydrogenase 1.10808020209e-06 5.5748727915e-05 22059099997.8 +UniRef50_P0C0I9 UTP glucose 1 phosphate uridylyltransferase 1 1.83361457227e-05 6.50551852491e-05 18861049563.9 +UniRef50_R4ZZZ3 Transcriptional regulator pfoR 8.48815786649e-07 4.33262936178e-06 1406458291.48 +UniRef50_UPI0004755DAC hypothetical protein 6.83077195087e-07 1.49572216293e-05 5762647271.54 +UniRef50_P0ADJ1 2.97160447267e-05 9.353922789e-06 -8220438497.58 +UniRef50_B7I3B2 2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component 1.52622367462e-06 9.42516105833e-05 37434376563.5 +UniRef50_I4X0N6 Lysophospholipase 8.86303866825e-08 2.47853340724e-07 64280260.4321 +UniRef50_H6LRG1 0.00011931248862 9.88863834058e-06 -44175751139.3 +UniRef50_UPI00036A88A6 hypothetical protein 3.21468966936e-07 1.4648778581e-07 -70642050.0811 +UniRef50_A5UKK0 Collagenase, peptidase family U32 1.98421124059e-05 8.86955923322e-06 -4429754364.19 +UniRef50_UPI0001FFE9A7 binding protein dependent transport systems inner membrane component 2.2167264273e-06 3.05591852278e-07 -771548480.194 +UniRef50_UPI000360AEA9 hypothetical protein 4.05601629201e-07 1.52914929706e-07 -102012721.401 +UniRef50_UPI00036C7365 hypothetical protein 2.47839742973e-06 4.07369078285e-06 644039503.105 +UniRef50_C6UY37 6.56731169532e-07 2.73604426853e-07 -154672967.513 +UniRef50_D9RMN6 Phage protein 7.57295099353e-05 1.20785398312e-05 -25696677716.3 +UniRef50_Q8FMD0 Peptide deformylase 2 1.11834005135e-07 5.74261421105e-07 186687622.45 +UniRef50_Q931R7 Conserved virulence factor C 8.18590250348e-05 1.17306374711e-05 -28311690631.6 +UniRef50_UPI0003FC08D1 serine dehydratase 9.31748550018e-08 1.94665981511e-06 748274623.215 +UniRef50_B8DLQ2 ABC transporter related 1.61318798655e-06 2.27133528618e-05 8518395488.3 +UniRef50_F0TB22 H4MPT linked C1 transfer pathway protein 6.12974389826e-05 3.98352432596e-06 -23138330667.7 +UniRef50_UPI0004770BE9 hypothetical protein 1.05116539098e-06 1.67921480033e-07 -356576405.471 +UniRef50_UPI0003B3248F methionyl tRNA synthetase 8.00179509853e-08 1.67372911062e-07 35266269.3489 +UniRef50_UPI0003959E9D CDP 6 deoxy delta 3,4 glucoseen reductase 1.19939047684e-07 1.46360036764e-07 10666477.5136 +UniRef50_Q5HLS8 1.5338619942e-05 0.000141198898236 50811338826.6 +UniRef50_Q49XT6 0.000100344504598 1.60368542209e-05 -34036033028.4 +UniRef50_S1E292 PTS system, mannose fructose sorbose family, IID component 2.15449233377e-05 9.14029360892e-06 -5007901243.44 +UniRef50_A0A030WUA6 3 hydroxyisobutyrate dehydrogenase 2.92566960494e-05 5.66154320492e-06 -9525652748.41 +UniRef50_Q399M3 Macrolide export ATP binding permease protein MacB 2.28288406612e-08 6.35418085373e-08 16436324.7359 +UniRef50_UPI0003C3A6B9 PREDICTED 7.13046547312e-08 6.88613858649e-07 249215300.857 +UniRef50_Q3IW34 0.000202136797663 2.66052098718e-05 -70864256006.0 +UniRef50_X7EB18 WGR domain containing protein 4.99699233263e-07 3.15722446265e-07 -74273686.5601 +UniRef50_Q3IW32 5.65728960708e-05 0.000163244779591 43064748388.2 +UniRef50_UPI00047D4CFB trehalose phosphatase 3.02267771686e-07 2.33227303313e-07 -27872484.304 +UniRef50_UPI0003642130 hypothetical protein 3.57683520896e-07 1.12531063733e-07 -98971055.3156 +UniRef50_UPI0003692D13 hypothetical protein 2.90143361647e-07 1.15315225582e-07 -70580263.9119 +UniRef50_W4LSH7 2.5014264115e-07 7.63173765068e-07 207116960.326 +UniRef50_E4NIV5 4.80253972258e-07 1.78573782578e-07 -121791994.606 +UniRef50_UPI00035CB116 hypothetical protein 1.16159131294e-07 4.19661180619e-06 1647328817.64 +UniRef50_A0A011PWL1 Elongation factor G 5.79320070536e-08 2.90774461161e-07 94001356.0212 +UniRef50_V4X579 2.16588274327e-07 3.57626091479e-06 1356341072.77 +UniRef50_UPI00045EC544 hypothetical protein 6.24658227937e-08 2.97256453341e-07 94787858.7569 +UniRef50_UPI0003463109 AraC family transcriptional regulator 9.90341988625e-08 3.64841911498e-07 107309835.419 +UniRef50_I3TU69 Lincomycin resistance protein 1.14853749147e-06 4.60873039925e-06 1396922338.21 +UniRef50_E6Q6J2 Thioesterase superfamily 1.70514488765e-07 1.16597676805e-05 4638352502.48 +UniRef50_Q4ZXL0 Alginate lyase 2.0665566622e-06 5.48159853892e-06 1378694312.91 +UniRef50_S0AG26 1.44187089322e-06 2.70534883781e-05 10339724268.5 +UniRef50_V4QY51 Transcriptional regulator 7.81674024414e-08 1.51687093567e-07 29680801.4955 +UniRef50_L7EAU8 2.14717616161e-07 9.59208722882e-08 -47959703.3015 +UniRef50_Q9X806 Ubiquinol cytochrome c reductase cytochrome b subunit 2.3418630138e-06 6.65526963512e-05 25922701373.8 +UniRef50_Q5NLZ4 Anhydro N acetylmuramic acid kinase 4.84956762504e-08 2.49588508401e-07 81183644.0259 +UniRef50_H0TL85 5.06400982369e-07 7.78075326054e-07 109678266.365 +UniRef50_U5MPM1 Methyl accepting chemotaxis protein 3.48985323919e-06 9.7624178303e-06 2532311298.45 +UniRef50_Q4L667 Phosphatidylglycerol lysyltransferase 0.000129613755783 4.03590980428e-05 -36033200607.5 +UniRef50_UPI0001FFE90B alcohol dehydrogenase 5.41216380774e-08 1.51557469514e-06 590006533.181 +UniRef50_P77439 Multiphosphoryl transfer protein 1 3.80937836703e-05 5.90373526274e-06 -12995517558.5 +UniRef50_A9AF70 Urease subunit gamma 3.00426887958e-05 3.65970109937e-05 2646060301.87 +UniRef50_A5UKH6 7.87919223545e-05 2.9000003783e-06 -30638500200.4 +UniRef50_UPI00036A7FB4 hypothetical protein 1.73216097816e-07 2.14702300087e-07 16748488.9498 +UniRef50_K2AEY0 1.12053527253e-06 7.88618524907e-08 -420536342.44 +UniRef50_UPI0003DF5EC3 PREDICTED 5.95232048304e-08 1.3069608062e-07 28733363.3457 +UniRef50_F2TZS1 8.39066176864e-07 3.8484569641e-07 -183374381.871 +UniRef50_Q1CW26 1.43827290066e-06 1.92286525626e-06 195635880.573 +UniRef50_I1B3F9 5.06185379064e-06 3.22163678398e-06 -742918187.591 +UniRef50_A8AVP5 ABC transporter, permease protein 5.865556063e-05 3.23857698173e-05 -10605436917.7 +UniRef50_A8LL26 tRNA pseudouridine synthase B 8.75338637374e-06 2.08950498955e-06 -2690290689.82 +UniRef50_Q5HKS5 1.31681158902e-05 1.2478170642e-05 -278539363.279 +UniRef50_Q48FV2 Membrane protein, putative 1.86822329162e-05 4.05458803526e-06 -5905359739.81 +UniRef50_I3UWL7 LysR family transcriptional regulator 1.82515382211e-05 8.19290939821e-06 -4060791889.06 +UniRef50_B0VV20 p aminobenzoate synthetase 2.53562107799e-06 7.27990780416e-05 28366219805.8 +UniRef50_C7CBT9 RepC like protein 1.27408359687e-06 4.17797043536e-07 -345693389.399 +UniRef50_P0AG19 N5 carboxyaminoimidazole ribonucleotide mutase 1.23839534974e-05 0.000152300344254 56485963915.8 +UniRef50_UPI0003B429F7 transposase 9.21350989232e-07 9.55114349783e-07 13630682.9775 +UniRef50_UPI0003B6F95F tRNA delta isopentenylpyrophosphate transferase 2.42338823814e-07 1.18214813797e-07 -50110386.0168 +UniRef50_P65234 Ribose phosphate pyrophosphokinase 3.1140583286e-05 6.52343819446e-05 13764084896.4 +UniRef50_D6CUH0 7.04385345711e-08 1.08897769728e-07 15526465.1807 +UniRef50_A4WSC8 OmpA MotB domain protein 1.10298361822e-05 1.62559654243e-06 -3796606945.57 +UniRef50_G9ADV3 1.36230754687e-07 7.53426073761e-08 -24581292.251 +UniRef50_G9ADV1 6.3409627532e-07 5.24159310503e-07 -44382901.7749 +UniRef50_Q51952 OrfD 0.000803621808219 1.29590016625e-05 -3.1920027753e+11 +UniRef50_S4HRH5 8.58402116946e-07 7.602784505e-07 -39613728.257 +UniRef50_O06994 Oligo 1,6 glucosidase 1 0.000186128280921 0.000120117225731 -26649473026.9 +UniRef50_M5J6F3 1.99669152767e-07 5.04478664556e-07 123055340.343 +UniRef50_A9H974 7.94324385985e-07 7.09255150584e-07 -34343494.2483 +UniRef50_A6LZS6 Metallophosphoesterase 2.49574818357e-06 1.78454099476e-05 6196846815.66 +UniRef50_Q1NCH4 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 3.65952934849e-07 2.18751897445e-07 -59426865.1599 +UniRef50_UPI0004676B57 GntR family transcriptional regulator 1.41688470632e-07 2.28531436356e-07 35059570.9458 +UniRef50_L5RMF7 3.55910175748e-07 6.80251716581e-06 2602574350.65 +UniRef50_P55253 Glucose 1 phosphate thymidylyltransferase 0.000433322218893 0.00090252667211 1.8942359555e+11 +UniRef50_F3SW08 Conserved domain protein 7.24802656383e-06 1.33225581291e-05 2452362935.78 +UniRef50_Q6GJ34 Putative N acetylmannosaminyltransferase 8.8499282254e-05 1.98945301636e-05 -27696580293.9 +UniRef50_Q67SJ2 Valine tRNA ligase 6.72273002959e-08 3.00581620275e-08 -15005637.2356 +UniRef50_A0A038FZN0 3.11239007439e-07 5.70859183848e-06 2178977570.86 +UniRef50_A6LQR2 2.26463054397e-06 7.07069528623e-06 1940267313.5 +UniRef50_Q9RV19 1.2969221676e-05 0.00030597960872 1.18291888891e+11 +UniRef50_J0F0U1 1.92766179157e-05 1.07387892798e-05 -3446826191.25 +UniRef50_B9J9V0 ABC transporter 5.48141280069e-05 1.48845210052e-05 -16120072338.0 +UniRef50_UPI000379B10E hypothetical protein 1.82252779673e-07 1.53731357225e-06 547054670.43 +UniRef50_Q8VYV7 3 dehydroquinate synthase, chloroplastic 5.46293002982e-08 4.70395537596e-07 167849932.023 +UniRef50_U3QUQ4 Chemotaxis protein CheA 6.44404625597e-06 1.73951997405e-06 -1899274991.04 +UniRef50_I4TNI4 1.91810352224e-05 2.39122838212e-06 -6778251055.53 +UniRef50_A6LQ19 Drug resistance transporter, EmrB QacA subfamily 7.73222285657e-06 8.49485418439e-06 307883625.58 +UniRef50_Q5HQY3 0.000212349903896 4.71183545339e-05 -66706004096.6 +UniRef50_P16219 Short chain specific acyl CoA dehydrogenase, mitochondrial 1.16599677488e-07 4.50472841041e-07 134788693.211 +UniRef50_B9KX63 2.51657325901e-05 3.89475654678e-05 5563895054.84 +UniRef50_B9KX60 2.10896850078e-05 4.3652670916e-06 -6751852744.46 +UniRef50_A8Z124 0.00014902786921 4.21378114946e-05 -43152827988.1 +UniRef50_B9KX64 6.63373984434e-05 1.15538823963e-05 -22116777697.6 +UniRef50_UPI00037397A9 hypothetical protein 8.81097825056e-08 1.79189300496e-07 36769919.0841 +UniRef50_UPI0004787AB2 transcriptional regulator 9.86840847602e-08 1.07017164835e-07 3364166.68459 +UniRef50_C1CYZ3 2.45120771981e-06 0.000752036690738 3.02616857943e+11 +UniRef50_Q0SPR1 Cysteine desulfurase family protein 1.02950724233e-06 1.7531927813e-05 6662229691.86 +UniRef50_Q16A99 tRNA 2 thiocytidine biosynthesis protein TtcA 9.90342737699e-05 1.65055914397e-05 -33317841797.5 +UniRef50_F7ZKB0 1.26222010548e-07 1.50871173378e-07 9951169.51371 +UniRef50_W5X4N7 4.24013550963e-07 1.00102394049e-06 232946174.966 +UniRef50_Q7VTF7 Nicotinate phosphoribosyltransferase 5.34859418552e-06 7.99130141458e-05 30102571346.3 +UniRef50_P56074 Delta aminolevulinic acid dehydratase 1.83086630851e-06 3.48835491908e-05 13343773681.6 +UniRef50_H1S081 9.75586325411e-07 1.11973097843e-07 -348651257.695 +UniRef50_A7ZTW7 HTH type transcriptional regulator HdfR 2.29853168731e-05 9.10583016323e-06 -5603319105.24 +UniRef50_UPI000248D3FD Fosmidomycin resistance protein 5.4399942601e-07 2.34977302149e-07 -124756023.531 +UniRef50_UPI00047C911F hyalin 2.98190065396e-08 5.85276420287e-08 11590028.4415 +UniRef50_M9RZD9 ABC transporter permease 8.7313797132e-06 4.90715691874e-06 -1543885670.61 +UniRef50_UPI000237DA3D hypothetical protein 6.22347876658e-08 1.64733338894e-06 639923756.68 +UniRef50_P25666 Protein HtrL 1.64795945908e-05 2.53128604458e-06 -5631103325.09 +UniRef50_P42506 0.000116393218358 2.35409634312e-05 -37485594739.2 +UniRef50_E6C5P3 Glycosyl hydrolase family 20, catalytic domain protein 1.11034566433e-06 4.30662919825e-05 16938130386.0 +UniRef50_V1BIM5 1.69023577097e-05 5.07143020717e-06 -4776290614.57 +UniRef50_UPI00032A718B PREDICTED 6.31740236157e-08 1.40419101583e-07 31184785.8791 +UniRef50_UPI000464A259 hypothetical protein 1.58919734548e-06 6.41944385336e-07 -382417644.111 +UniRef50_A7ZTA0 Glyoxylate hydroxypyruvate reductase B 2.87908213818e-05 1.91971856025e-06 -10848193954.6 +UniRef50_A3PIF6 9.74229981897e-06 4.81360100081e-06 -1989776194.83 +UniRef50_UPI0003B59BB8 isopentenyl diphosphate delta isomerase 5.30712569158e-07 9.18284209925e-08 -177182916.329 +UniRef50_B3E0I7 50S ribosomal protein L2 3.07779278476e-05 2.1271311299e-06 -11566678219.7 +UniRef50_UPI0003F9D1F7 anthranilate synthase component I 4.00621627966e-08 5.21914561507e-08 4896744.57022 +UniRef50_A6M0E6 Signal transduction histidine kinase regulating citrate malate metabolism 4.25056161391e-06 2.12187108621e-05 6850250074.1 +UniRef50_A5UMV1 Glycosyltransferase, GT2 family 2.073329031e-05 3.67054108473e-06 -6888441245.73 +UniRef50_Q3HKG1 Mechanosensitive ion channel protein 2.15463175044e-05 7.33136232408e-06 -5738751843.4 +UniRef50_B8JAD8 Nucleoside diphosphate kinase 0.0001623942303 4.97065662658e-07 -65359872065.6 +UniRef50_V5VIG2 Tellurite resistance protein 2.0008091282e-06 5.86161167725e-05 22856294444.0 +UniRef50_O26800 Ketoisovalerate oxidoreductase subunit VorB 3.12976959527e-05 7.23436511222e-06 -9714661950.59 +UniRef50_Q2G718 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.0035720013e-07 8.29626809761e-08 -7022380.83718 +UniRef50_A6LPK7 Sporulation stage II, protein E 9.39799142401e-07 9.36331511773e-06 3400676767.41 +UniRef50_UPI00037D5D4D hypothetical protein 1.93458151422e-06 5.719846723e-07 -550097066.027 +UniRef50_UPI0003A28CDF competence protein 1.82552004738e-07 4.0218672547e-07 88669231.9806 +UniRef50_UPI0003959061 sensor histidine kinase 6.07290774423e-08 8.58761235014e-08 10152171.083 +UniRef50_U5VXD2 4.65387010281e-07 3.67866106293e-07 -39370385.656 +UniRef50_B9E115 Phosphopentomutase 5.84714586153e-08 6.79744815103e-08 3836486.95792 +UniRef50_C0QXM0 Pyrrolidone carboxylate peptidase 9.53215749912e-05 1.92519671089e-05 -30710234181.1 +UniRef50_A3L8X2 1.07644150169e-05 2.38800570243e-06 -3381659230.35 +UniRef50_P39343 HTH type transcriptional regulator IdnR 3.51151043142e-05 1.81733357036e-06 -13442718658.9 +UniRef50_A6LUQ9 9.12714625129e-06 5.64082410423e-06 -1407471032.75 +UniRef50_A3L8X4 2.19130625543e-06 3.02791912172e-06 337750880.516 +UniRef50_B9E9D0 7.38174946216e-05 3.24523851863e-06 -28490885807.7 +UniRef50_B6ISP7 Phosphopantetheine adenylyltransferase 7.5020790703e-05 1.33225581291e-05 -24908333612.5 +UniRef50_A6LUQ6 1.84695087293e-05 1.88479104794e-05 152765430.027 +UniRef50_E8PCN1 FilB 2.05901448467e-06 0.000137702511351 54760944217.7 +UniRef50_UPI000348A8A8 hypothetical protein 3.66627232824e-07 4.29288134592e-07 25296974.9795 +UniRef50_M5SVU5 Beta Ig H3 fasciclin 6.84296448596e-07 1.23422603285e-07 -226431654.048 +UniRef50_L4FI59 Sensor protein torS 1.81768029127e-06 7.87861374395e-07 -415750534.044 +UniRef50_UPI0002E655C1 hypothetical protein 4.11056816367e-07 1.21018836167e-07 -117091891.773 +UniRef50_Q1C665 Penicillin insensitive murein endopeptidase 3.1826594036e-05 1.31541633836e-05 -7538289390.86 +UniRef50_Q8K928 Oxygen independent coproporphyrinogen III oxidase like protein BUsg_532 7.47242541377e-08 5.39038867678e-07 187449507.267 +UniRef50_A9M4C4 UPF0276 protein NMCC_2101 9.86446572407e-06 1.84624887924e-05 3471127422.29 +UniRef50_UPI00036BDC09 hypothetical protein 1.60127931734e-07 2.54383906716e-07 38052293.7511 +UniRef50_D6Z4R6 Phosphoenolpyruvate phosphomutase 5.05075352485e-06 4.85253571518e-06 -80022962.1698 +UniRef50_Q1JFX3 5.92348501943e-05 1.12425599012e-05 -19375076523.0 +UniRef50_UPI0004637872 hypothetical protein, partial 1.32088708705e-07 8.78691872519e-07 301412859.083 +UniRef50_G8V105 Penicillinase repressor family protein 0.00026710534346 3.18860756714e-05 -94960904871.4 +UniRef50_UPI00037E6C33 hypothetical protein 1.4976884435e-05 2.16136244069e-06 -5173783493.24 +UniRef50_UPI000411C3F9 hypothetical protein 1.41758072518e-08 2.00765848507e-08 2382216.32736 +UniRef50_Q9JY91 L asparaginase I 2.47802618498e-06 2.73094464981e-05 10024749096.2 +UniRef50_UPI0004739998 hypothetical protein 5.12211420014e-08 1.53292263124e-07 41207364.1509 +UniRef50_B1Y2J2 1.55233360863e-07 7.29637349953e-07 231893939.125 +UniRef50_P0ACY2 Putative NADH nitroreductase YdjA 1.20703393552e-05 9.71798201212e-06 -949675526.072 +UniRef50_UPI00037F4C0B hypothetical protein 3.06046178509e-07 5.73065508672e-06 2189981183.68 +UniRef50_Q2NEQ0 Histidinol phosphate aminotransferase 3.84302736763e-05 3.62576826262e-06 -14051005934.8 +UniRef50_Q9RRA6 Iron ABC transporter, periplasmic substrate binding protein, putative 2.67277883954e-06 0.000504986942049 2.02790391775e+11 +UniRef50_I3BQN9 6.18886778216e-08 1.98904042376e-06 778014808.647 +UniRef50_UPI00039CCA94 3 hydroxybutyryl CoA dehydratase 5.37954624491e-07 2.23840893073e-07 -126811567.982 +UniRef50_Q7NIR9 Phosphoribosylformylglycinamidine synthase 2 2.93018704473e-07 6.95259759575e-08 -90226757.0661 +UniRef50_UPI0001FFE446 choline dehydrogenase 3.96035318496e-07 1.0923185124e-07 -115786079.206 +UniRef50_UPI00036ECF80 30S ribosomal protein S17 3.68128293514e-07 3.20098707994e-06 1143659855.17 +UniRef50_A5IUE2 DUTPase 0.000190849074093 1.35308466745e-05 -71585544348.0 +UniRef50_A6LV78 NMT1 THI5 like protein 1.84740288181e-06 9.13421176036e-06 2941774163.47 +UniRef50_UPI0004636D79 hypothetical protein 4.2034312514e-07 2.88838686382e-08 -158036905.595 +UniRef50_L6YPP4 Autoinducer 2 aldolase 7.12348600423e-06 8.23713950446e-06 449595584.108 +UniRef50_A0A034W5P4 9.77963011321e-08 3.11520318775e-08 -26905109.3152 +UniRef50_W8TZV3 2.00409303853e-07 1.43204238244e-06 497225387.664 +UniRef50_UPI0003607ABA heavy metal transporter CzcA 1.44982787346e-08 6.64896939681e-08 20989572.3362 +UniRef50_UPI0003FD356F hypothetical protein 4.20892958171e-07 1.05859572722e-06 257448433.358 +UniRef50_B9TAE6 Glycine betaine L proline transport system permease protein proW, putative 9.12140868539e-06 7.23824306453e-06 -760257070.182 +UniRef50_T1E861 8.30410184796e-07 9.40941171797e-07 44622715.82 +UniRef50_Q8CS24 0.000254173995408 4.27685599661e-05 -85346968524.4 +UniRef50_Q8FU18 Glutamyl Q tRNA synthetase 6.2466078163e-08 8.63558533816e-06 3461073449.27 +UniRef50_Q0VT33 1.48551359392e-05 3.05141858582e-06 -4765305543.47 +UniRef50_I6UMD2 Acetyltransferase 1.97636643381e-06 1.55076714728e-05 5462753892.03 +UniRef50_UPI00036CF3D9 formate dehydrogenase subunit alpha 1.47062386559e-05 3.10771287926e-06 -4682467185.93 +UniRef50_Q87DM8 Acetylornithine aminotransferase 2.50158322521e-07 4.91354403134e-07 97373817.5522 +UniRef50_UPI00017455B0 PAS PAC sensor hybrid histidine kinase 2.09053003317e-08 3.21310866679e-07 121277413.525 +UniRef50_H9UU02 Ribonucleoside diphosphage reductase 1, beta subunit, B2 6.72408161445e-06 5.43060465467e-07 -2495354087.5 +UniRef50_P63884 N acetylmuramoyl L alanine amidase AmiC 2.50295220253e-05 7.2849487112e-06 -7163701997.3 +UniRef50_Q3J1R2 Alpha keto acid binding periplasmic protein TakP 0.000109176667589 1.25798373576e-05 -38997325740.8 +UniRef50_UPI0004785A72 dihydroxy acid dehydratase 3.84069397647e-07 3.22457080058e-07 -24873648.6788 +UniRef50_UPI0003D742A7 PREDICTED 1.37093695711e-06 5.59842095153e-06 1706687165.61 +UniRef50_B4RR58 Pilin glycosyl transferase A 7.0659716582e-06 3.48412216106e-05 11213209246.4 +UniRef50_P9WG25 Transketolase 1.33854593954e-06 5.34232299884e-05 21027226101.5 +UniRef50_F2D6B6 Predicted protein 1.24756666298e-05 1.26758816316e-06 -4524838815.56 +UniRef50_C7U7G3 Predicted protein 4.98192571096e-08 1.7804639756e-07 51766870.1236 +UniRef50_B9KS15 CheW protein 0.000166947594762 4.02704597989e-06 -65773024803.2 +UniRef50_UPI00036E0B46 hypothetical protein 1.26163480025e-07 2.7006836481e-07 58096167.8992 +UniRef50_Q87VF3 Lipid A export ATP binding permease protein MsbA 3.14977212943e-06 7.31768993062e-08 -1242059248.47 +UniRef50_S4X152 5.33571922682e-05 7.6705637713e-06 -18444252562.2 +UniRef50_S5YPY4 Branched chain amino acid transporter AzlC 3.75480660672e-07 3.74237190632e-07 -502004.114241 +UniRef50_UPI00047E9A5D hypothetical protein 4.26052047327e-07 1.02351786717e-06 241204283.201 +UniRef50_A5WDF2 Major facilitator superfamily MFS_1 8.84732786372e-07 6.55633725068e-05 26111560551.3 +UniRef50_UPI00047CAA5D cobyrinic acid a c diamide adenosyltransferase 1.85082170638e-07 1.60425043412e-06 572935643.12 +UniRef50_H5HII5 Protein traU 2.96961518224e-06 5.4275353248e-07 -979753828.949 +UniRef50_R1BAS7 7.90054052557e-08 2.15804317844e-07 55227399.7232 +UniRef50_Q8DTW5 4.3384912806e-05 1.42505874909e-05 -11761884648.1 +UniRef50_E4N7W5 6.20462688603e-07 1.74932016995e-06 455733617.86 +UniRef50_Q8DTW1 7.03521644149e-05 1.72811565431e-05 -21425417132.3 +UniRef50_Q8DTW2 4.30973285659e-05 4.17333399317e-05 -550658949.649 +UniRef50_UPI00040D5ECC lysophospholipase 1.27992446865e-08 1.10697934957e-07 39522902.6142 +UniRef50_E4BFH6 3.33357178633e-07 1.34550394124e-06 408616068.503 +UniRef50_R6S4R3 NADH 3.75723627864e-06 2.00011121956e-05 6557852042.47 +UniRef50_Z5SAF9 1.66957544063e-07 2.75940587472e-07 43997791.9965 +UniRef50_Q3IVP4 1.31866465944e-05 2.99813913899e-06 -4113225486.79 +UniRef50_Q3IVP3 9.54042738135e-07 1.08913158329e-05 4011799092.41 +UniRef50_R1DLE7 1.3648680015e-07 4.91223743389e-08 -35270090.782 +UniRef50_P44093 3.84054017032e-05 1.54608898905e-05 -9262980979.61 +UniRef50_UPI0003457BAD hypothetical protein 2.89657668431e-08 1.53421510666e-08 -5500020.86954 +UniRef50_Q73LF4 1 deoxy D xylulose 5 phosphate synthase 1.96213096368e-08 2.82392323747e-07 106083882.959 +UniRef50_Q5HNB3 O succinylbenzoic acid synthetase, putative 8.46707961907e-05 2.68614893446e-05 -23338326573.7 +UniRef50_UPI0003C1B3E9 7.21839965648e-07 1.0870798479e-06 147451822.462 +UniRef50_Q8PYJ4 Methionine tRNA ligase 3.55761589789e-08 3.14218525922e-08 -1677144.46738 +UniRef50_A8PM40 Transcriptional repressor NrdR 4.45241452331e-07 1.42221993944e-06 394418204.12 +UniRef50_A6LZR8 4.54804230061e-06 1.86399702382e-05 5689084235.81 +UniRef50_P20372 Protocatechuate 3,4 dioxygenase beta chain 1.60404811127e-06 3.20678635244e-05 12298616115.3 +UniRef50_K0S5L3 1.5388682191e-08 1.43508189513e-06 573147571.659 +UniRef50_UPI000248D061 iron hydroxamate transporter permease subunit, partial 1.11848160293e-07 6.42916853266e-07 214398948.299 +UniRef50_K2HGX5 2.57671894845e-07 8.66819103699e-08 -69030755.0156 +UniRef50_A3PL72 7.9256813433e-05 7.98709178294e-06 -28772461208.0 +UniRef50_Q8CPK5 Cell division protein FtsA 0.000214895024156 4.12589127887e-05 -70099028913.6 +UniRef50_A0A011NNA2 1.55787077998e-06 3.04872081262e-06 601874452.964 +UniRef50_C4K9K2 6.13665671584e-07 5.55764024261e-07 -23375605.5574 +UniRef50_A4WYS1 6.07286895414e-07 7.42635727607e-07 54641984.4733 +UniRef50_C6S8M1 1.00306285793e-06 2.44061111133e-05 9448097768.4 +UniRef50_P54457 Ribosomal silencing factor RsfS 1.50892885602e-05 1.59882903855e-05 362938068.867 +UniRef50_UPI0003B3EB5D pyruvate phosphate dikinase 3.36529323403e-08 1.13646148899e-07 32294243.1519 +UniRef50_V4JG08 1.67186635101e-07 1.71693054904e-07 1819296.97446 +UniRef50_UPI00021917AB DNA processing protein DprA 4.7265739473e-07 6.51598927318e-07 72240892.5653 +UniRef50_UPI0002E59390 hypothetical protein 1.59651351157e-06 5.66465648891e-07 -415842962.273 +UniRef50_UPI000255B733 peroxiredoxin, ohr subfamily protein 2.11517888678e-07 2.44477454495e-06 901593117.277 +UniRef50_Q49V41 Putative TrmH family tRNA rRNA methyltransferase 0.000117412369192 2.0276976335e-05 -39214750081.7 +UniRef50_D0K0C5 1.554777905e-06 5.77364418242e-05 22681227150.7 +UniRef50_V6KIY8 5.37901934053e-07 2.75498146057e-06 895062211.481 +UniRef50_UPI0003C1B40C PREDICTED 5.52857669296e-07 1.18814909326e-06 256474943.757 +UniRef50_P37624 2.19563449468e-05 7.2817149442e-06 -5924328210.01 +UniRef50_F8JKY1 7.21791203027e-07 8.65269631344e-07 57924002.1899 +UniRef50_C6SPT2 Predicted periplasmic or secreted lipoprotein 6.86338161548e-06 1.14316143946e-05 1844251631.45 +UniRef50_Q034G9 6 phospho alpha glucosidase 2 6.88478735805e-06 2.91371430768e-05 8983549070.75 +UniRef50_G4LBR0 MFS family transporter 1.92104828933e-06 3.03678489364e-06 450436558.788 +UniRef50_Q81L15 Translation initiation factor IF 3 0.000376830528669 0.000105168985609 -1.09673098595e+11 +UniRef50_D8UHW0 5.09360354029e-08 6.341641821e-07 235456359.836 +UniRef50_D5G934 Whole genome shotgun sequence assembly, scaffold_16, strain Mel28 1.14703670609e-07 3.31466799726e-07 87509935.2072 +UniRef50_W5XAK2 Citrate synthase 1.30046330728e-07 1.33029115607e-07 1204186.85854 +UniRef50_A8YTF9 Thymidylate kinase 0.000141705942381 3.28817902601e-05 -43933645633.8 +UniRef50_UPI00034584B5 hypothetical protein 8.53576953858e-08 7.58682890665e-08 -3830989.77921 +UniRef50_Q8XA47 Sensor histidine kinase QseE 1.84437615146e-05 9.3786920799e-06 -3659679771.7 +UniRef50_S6AZJ1 5.67876953349e-05 9.48372930447e-06 -19097191571.4 +UniRef50_UPI0003B76F12 glycerol kinase 7.33276056184e-08 5.02568536615e-08 -9313945.67496 +UniRef50_N9ILP1 7.58003993635e-07 3.71388028466e-06 1193323531.37 +UniRef50_Q6D178 23S rRNA C(5)) methyltransferase RlmD 1.07746059401e-05 5.30248027869e-06 -2209164280.04 +UniRef50_B2UW91 Dihydroorotase 4.38351382792e-06 1.38615120498e-05 3826384190.29 +UniRef50_B9MRD1 4 hydroxy tetrahydrodipicolinate synthase 7.25765759157e-08 2.01076385792e-05 8088400388.59 +UniRef50_UPI00016A52E2 oxidoreductase, FAD binding protein, partial 5.87553929272e-07 2.53124701742e-07 -135013183.062 +UniRef50_K8D6Q9 Cell division protein FtsK 8.19515787499e-06 1.37791942374e-06 -2752202819.69 +UniRef50_W1JGR6 1.82984188069e-07 5.17296432598e-07 134965955.589 +UniRef50_UPI00023785BE ABC transporter like protein 2.73685323972e-06 4.84809481384e-07 -909177700.926 +UniRef50_UPI00040687FC hypothetical protein 1.56891048985e-07 4.14746100136e-08 -46595032.7316 +UniRef50_D3E3V9 Transporter MIP family 2.17910284444e-05 7.49274055236e-06 -5772394281.72 +UniRef50_A5UK88 Adhesin like protein 3.33720249728e-05 7.84041984177e-06 -10307422299.4 +UniRef50_A6M085 GCN5 related N acetyltransferase 2.6321151084e-06 2.94825329643e-06 127628865.96 +UniRef50_UPI00036FB667 hypothetical protein 2.43874978245e-07 1.44167649547e-07 -40253072.1419 +UniRef50_Q6FCW7 Phosphate import ATP binding protein PstB 2.67046584839e-06 5.55978468587e-05 21367433205.9 +UniRef50_O34364 Probable oligo 1,6 glucosidase 2 0.000133995903357 9.47011059783e-06 -50272590640.1 +UniRef50_Q3JSX2 7.45267145118e-07 1.73602243418e-06 399980068.129 +UniRef50_Q3JSX0 6.76498187892e-07 1.09977232258e-07 -228711461.783 +UniRef50_UPI00020D97AB excinuclease ABC subunit B 3.24017679384e-06 1.57794236416e-05 5062247826.32 +UniRef50_A1B092 0.000117466833514 2.35156937156e-05 -37929228046.7 +UniRef50_F0QGI7 2.76784193798e-06 4.92815662395e-05 18778161288.1 +UniRef50_UPI0003B3B830 2 oxoglutarate dehydrogenase E1, partial 3.65918519225e-08 8.22382597662e-08 18428014.9909 +UniRef50_Q81V80 Putative pyridoxal phosphate dependent acyltransferase 0.000111030010846 1.99959273995e-05 -36751576601.2 +UniRef50_Q7VK98 Methionyl tRNA formyltransferase 7.05126010592e-08 8.95076429479e-08 7668531.50584 +UniRef50_UPI00034B192C ATP binding protein 1.59392186204e-06 3.38241088112e-07 -506933737.371 +UniRef50_Q9K0G6 Non canonical purine NTP pyrophosphatase 5.86249927365e-08 4.24137357815e-05 17099277981.1 +UniRef50_M9VK41 KHG KDPG aldolase 4.30592382719e-06 2.66872869636e-05 9035630948.38 +UniRef50_Q3D1H7 5.18009571257e-05 1.12802489495e-05 -16358707135.7 +UniRef50_B1AJ73 Urease subunit alpha 3.44480342495e-08 1.90109252824e-07 62842344.1163 +UniRef50_Q5P7J7 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.41446079896e-07 2.70908324371e-05 10879797978.6 +UniRef50_U1VIQ4 1.32905497161e-06 4.11896902597e-05 16092227610.8 +UniRef50_W5XFT3 General secretion pathway protein G 1.07393457727e-08 2.6248664966e-07 101633475.866 +UniRef50_Q9M5K2 Dihydrolipoyl dehydrogenase 2, mitochondrial 2.64856068779e-07 6.9621563667e-07 174145150.935 +UniRef50_UPI00035E4A51 hypothetical protein 8.85167641172e-08 2.21962711537e-06 860355400.464 +UniRef50_Q4FNA6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.20724210519e-08 8.85000584375e-08 10669161.5161 +UniRef50_UPI00036C5D7B hypothetical protein 7.15576298168e-07 6.58416094096e-07 -23076275.8184 +UniRef50_V9VU16 Regulator 1.13325071635e-06 8.88071999779e-07 -98981656.5609 +UniRef50_Q2NSZ1 Macrolide export ATP binding permease protein MacB 2.29055833739e-08 1.43007728218e-07 48486709.6926 +UniRef50_M9R8E0 Putative IS30 family transposase 3.37337355377e-07 2.52341314705e-07 -34313944.638 +UniRef50_F0RNU6 7.23835947954e-07 0.00044316864467 1.78620398689e+11 +UniRef50_A0A011PXZ1 Copper exporting P type ATPase A 2.66833760644e-08 1.71722585747e-07 58554108.7803 +UniRef50_B2K308 UPF0502 protein YPTS_2082 1.38741700079e-05 2.8730956732e-05 5997867113.79 +UniRef50_UPI0003B66071 sodium 1.00742321339e-07 1.50839291223e-07 20224761.5011 +UniRef50_K0LM02 Formate nitrite transporter family protein 8.63839617475e-05 3.53700830558e-05 -20594928838.5 +UniRef50_O53182 2 oxoglutarate oxidoreductase subunit KorA 7.54468998348e-07 4.40050512335e-05 17460790792.7 +UniRef50_R7PY79 2.60576228779e-05 1.01148432434e-05 -6436295778.35 +UniRef50_B2A170 Carbamoyl phosphate synthase large chain 1.37816354611e-07 7.28277578477e-07 238376441.849 +UniRef50_Q3KGL4 Uracil DNA glycosylase 9.97559146374e-05 3.71042944759e-05 -25293227881.0 +UniRef50_A6LYS3 PAS PAC sensor signal transduction histidine kinase 5.41919103036e-06 1.75806457771e-05 4909728519.07 +UniRef50_G7MBX9 Xylose isomerase domain containing protein TIM barrel 4.17264995876e-06 1.71974148114e-05 5258257402.83 +UniRef50_UPI000370772D hypothetical protein 4.53617555602e-07 4.50418281397e-07 -1291586.25607 +UniRef50_Q6GBK7 Putative antiporter subunit mnhA2 0.000176504979211 5.13787995375e-05 -50514974204.9 +UniRef50_UPI000376D794 hypothetical protein, partial 8.88563483988e-07 1.15544746056e-06 107744336.377 +UniRef50_UPI0003B415C3 phospholipase C 5.30711547794e-08 1.27077311059e-07 29877193.4477 +UniRef50_UPI0003A4E33B peptidase 4.72763461196e-07 1.06241992505e-07 -147969214.635 +UniRef50_A7HF60 Tetratricopeptide TPR_4 2.84678893988e-07 2.44699472956e-07 -16140182.8733 +UniRef50_Q9WXB2 Phytoene disaturase 4.88382939001e-07 2.86706554049e-07 -81419231.4527 +UniRef50_Q3SL19 Serine type D ala D ala carboxypeptidase 1.48069775263e-05 3.89440270477e-06 -4405540367.79 +UniRef50_UPI0001FFE6FF oxidoreductase 6.03073649307e-07 7.75401365077e-06 2886922230.49 +UniRef50_Q5HQE8 Probable glycolipid permease LtaA 0.000209051928977 4.11150844843e-05 -67798164938.6 +UniRef50_Q31WQ9 1.55344028336e-06 2.4781821415e-06 373329635.99 +UniRef50_UPI00036A674F hypothetical protein 1.82795745138e-07 1.51553016888e-06 538041241.354 +UniRef50_L0IJZ9 Beta glucosidase like glycosyl hydrolase 3.18770198599e-06 9.28554330425e-06 2461773369.11 +UniRef50_L1KBS6 5.30061789549e-06 1.56593037902e-06 -1507739180.17 +UniRef50_Q9HUG9 Bifunctional protein HldE 2.44615157147e-05 1.28061230575e-05 -4705425043.46 +UniRef50_Q5HR43 3.5839385221e-07 5.59712970245e-07 81274998.4141 +UniRef50_W5XGK2 DNA mismatch repair protein MutL 3.1446012524e-08 7.19366444502e-08 16346564.9845 +UniRef50_UPI000262634A dihydropyrimidine dehydrogenase subunit A 1.86357325897e-07 8.50014561023e-07 267926569.81 +UniRef50_A6M2S3 Threonyl alanyl tRNA synthetase, SAD 1.07037614984e-06 5.86236635633e-06 1934585250.69 +UniRef50_B1YKT1 Ribosomal protein L11 methyltransferase 1.37411599978e-07 3.77804316637e-06 1469767638.92 +UniRef50_W0AKF5 Exo poly alpha D galacturonosidase 6.82355935326e-08 8.08476620106e-08 5091646.81205 +UniRef50_UPI000463C46F Surfeit locus 1 family protein 8.06419725828e-08 1.27807974673e-07 19041493.8357 +UniRef50_A3M3W1 Phage integrase 5.63838795038e-06 6.04813948981e-05 22140794904.2 +UniRef50_U4WEY2 4.21204475535e-06 9.83242721802e-07 -1303507002.8 +UniRef50_Q08YP9 1.9121352797e-06 8.67934655405e-07 -421556605.808 +UniRef50_U5MNN3 Glycerate dehydrogenase HprA 2.3741491936e-06 9.49524094922e-06 2874872127.37 +UniRef50_UPI0002BB9F78 hypothetical protein, partial 5.47497138335e-06 5.04381327342e-07 -2006688201.61 +UniRef50_A8M9N8 GTPase like protein 2.95219034839e-05 1.07986969598e-05 -7558788233.36 +UniRef50_P52041 3 hydroxybutyryl CoA dehydrogenase 0.000116037782299 2.18463839218e-05 -38026223383.3 +UniRef50_V9BHA3 Elongation factor Tu 0.000257222062628 5.29540092294e-05 -82465519808.1 +UniRef50_Q2FWQ0 Anti repressor 0.000179935335476 2.65045759129e-05 -61941880442.7 +UniRef50_J2YEX7 Transport protein, AzlD family 1.23251566383e-06 9.05654197447e-06 3158655433.2 +UniRef50_D3VGH0 Putative mating pair stabilization protein 1.72362134026e-07 1.17518895197e-07 -22140888.5175 +UniRef50_X5JZY6 ABC transporter, ATP binding protein 4.43075803232e-05 5.77541454886e-06 -15555908165.9 +UniRef50_Q8E5X0 Hydroxyethylthiazole kinase 1.85953689091e-06 2.30716175927e-06 180711652.332 +UniRef50_B8FP12 Lipoprotein 3.04642453724e-06 5.57649842618e-07 -1004748884.92 +UniRef50_Q2FXR3 Delta aminolevulinic acid dehydratase 0.000127099871412 2.47900742769e-05 -41303720585.8 +UniRef50_A0A023RZK1 Transglutaminase 1.47647714023e-06 5.78241363184e-05 22748241473.8 +UniRef50_UPI0002E002F0 ABC transporter ATP binding protein 1.05517309721e-06 1.77853413704e-07 -354184722.155 +UniRef50_Q1CRS3 tRNA specific 2 thiouridylase MnmA 1.74762031871e-06 3.05486172816e-05 11627315901.9 +UniRef50_Q6W1T0 Transporter 9.71432354625e-05 4.82338947226e-05 -19745301041.8 +UniRef50_V6QBN8 2.98015254361e-06 6.56259344878e-06 1446275354.91 +UniRef50_J7QD35 3.8914941591e-05 6.0182009628e-06 -13280817880.0 +UniRef50_A6LQ54 1.55557412985e-06 5.79175208544e-06 1710197024.42 +UniRef50_Q4FQF7 ATP phosphoribosyltransferase 7.23050410977e-06 7.52993909274e-05 27480244907.4 +UniRef50_A6LQ58 9.8634711073e-06 7.11699092776e-06 -1108787751.58 +UniRef50_B4R825 Succinoglycan biosynthesis protein 2.94045115857e-05 5.19786285858e-06 -9772521140.11 +UniRef50_P31828 Probable zinc protease PqqL 2.10058154213e-05 1.34629406208e-05 -3045151118.44 +UniRef50_A7I252 Glutamate 1 semialdehyde 2,1 aminomutase 8.55298941131e-08 9.23302870549e-05 37240340436.3 +UniRef50_G1ZXK5 Sodium proline symporter 2.14690238992e-05 6.16164736886e-06 -6179775747.92 +UniRef50_F3SDM6 1.36996778916e-06 6.70662793754e-07 -282318008.083 +UniRef50_UPI00035C8B7E hypothetical protein 7.67910636879e-05 1.73715708938e-05 -23988378400.2 +UniRef50_H4A9R7 PRD domain protein 0.000113189691781 2.06101291883e-05 -37375505497.7 +UniRef50_A6LRK0 UspA domain protein 3.02796247737e-06 4.3858916614e-06 548212675.258 +UniRef50_A5UNV2 Putative structural protein 6.52713525392e-06 1.88500024592e-05 4974892709.37 +UniRef50_Q83LD5 3.27599402696e-06 3.48826529242e-07 -1181733439.21 +UniRef50_A1TXZ0 Gluconolactonase 9.81559362898e-06 6.93498507066e-06 -1162937024.04 +UniRef50_UPI0003169EC4 hypothetical protein 3.71517277146e-07 1.73964607788e-07 -79754436.8637 +UniRef50_B9KTB3 Extracellular solute binding protein, family 5 0.000145750872264 4.25975214059e-05 -41644273575.3 +UniRef50_A6LZH5 Cation diffusion facilitator family transporter 3.72589200682e-06 1.53013836893e-06 -886452688.543 +UniRef50_A4WR60 von Willebrand factor, type A 2.28204618775e-06 1.3609103593e-07 -866348428.621 +UniRef50_Q9KQM0 5 deoxynucleotidase VC_1978 6.25920117967e-06 3.10859689677e-06 -1271937611.27 +UniRef50_UPI0003B76BAF malto oligosyltrehalose synthase, partial 7.38438612701e-08 5.39370716595e-08 -8036615.24958 +UniRef50_F8G1E1 3.86590431929e-05 3.07621567909e-06 -14365224117.7 +UniRef50_UPI0003B6C0E2 ATPase 6.79478754861e-08 9.62605522957e-08 11430175.0636 +UniRef50_R7F196 1.43532593383e-07 5.33879257946e-06 2097390209.39 +UniRef50_UPI000379E4F4 hypothetical protein 4.70351643382e-07 8.21869271254e-07 141911979.978 +UniRef50_R5BXF1 Aspartokinase 1.28396594851e-06 2.53421191727e-05 9712571683.35 +UniRef50_UPI0003B32155 hypothetical protein 1.46807741626e-05 1.01961622738e-06 -5515177099.7 +UniRef50_UPI000472BA56 hypothetical protein, partial 1.35702152413e-07 1.8823965657e-07 21210035.1359 +UniRef50_E6AKY5 4Fe 4S binding domain protein 8.18627382019e-05 4.46522960158e-05 -15022312134.0 +UniRef50_UPI000428EAFE hypothetical protein 1.82568715062e-08 3.07766812149e-08 5054400.81474 +UniRef50_Q75ZQ4 Urease subunit gamma 5.92988908745e-07 2.10317232829e-06 609679578.503 +UniRef50_D2PVS1 2.02078485743e-08 4.17862385369e-08 8711460.82452 +UniRef50_Q5HFU7 30S ribosomal protein S1 0.000108051662775 3.75655427462e-05 -28456111617.6 +UniRef50_UPI00040934E7 hypothetical protein 5.88218387433e-07 1.37005114253e-06 315635477.399 +UniRef50_Q2FG95 Probable cell wall amidase LytH 0.000142902044621 3.95639628541e-05 -41718851710.2 +UniRef50_T7NH17 L fucose proton symporter 4.63119201756e-06 2.13225057899e-06 -1008853324.21 +UniRef50_Q5HN77 Amino acid ABC transporter, permease amino acid binding protein, putative 0.000104192918203 1.98565752047e-05 -34047616591.7 +UniRef50_UPI0003665A08 hypothetical protein 1.25288701011e-06 2.60167215425e-07 -400773163.156 +UniRef50_B4RL88 2.91494972086e-06 4.71382573257e-05 17853491961.1 +UniRef50_N0DYS1 1.38668152009e-07 3.14724730229e-06 1214600322.39 +UniRef50_UPI0003B45643 glycosyl transferase family 1 2.58331429078e-07 6.40670073849e-08 -78426930.93 +UniRef50_UPI0001912596 SsrA binding protein, partial 3.90018812346e-07 8.60126090073e-07 189788076.883 +UniRef50_A7FPN7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.26345550728e-07 2.25000674244e-07 39828283.9979 +UniRef50_U5MTV6 6.59279987501e-06 1.5170537449e-05 3462937919.3 +UniRef50_V2EJX2 Proline specific permease 4.42795259935e-05 2.02768905555e-05 -9690158471.78 +UniRef50_P62177 RNA polymerase sigma 35 factor 5.52518132057e-06 2.44026119266e-05 7621050387.77 +UniRef50_P42601 Inner membrane protein alx 2.26687723775e-05 7.07235761733e-05 19400313991.1 +UniRef50_UPI00036D10A8 hypothetical protein, partial 9.69739736537e-07 1.0433986558e-07 -349372547.556 +UniRef50_UPI00035D2E6B hypothetical protein 2.57083396302e-07 2.72707914439e-07 6307809.70631 +UniRef50_P39207 Nucleoside diphosphate kinase 1 1.42948927151e-07 3.20745813366e-07 71778784.7781 +UniRef50_UPI000376C41C hypothetical protein 2.75837218675e-07 1.44532215068e-05 5723584013.18 +UniRef50_P80357 Arginine N succinyltransferase subunit alpha 6.22847168474e-06 3.04974222238e-06 -1283292091.35 +UniRef50_F0YH85 7.93046054748e-07 1.6432609633e-06 343242191.893 +UniRef50_I2JHH7 1.09847811455e-07 1.31754993536e-07 8844198.23745 +UniRef50_O25770 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 1.17719123342e-06 1.937223325e-05 7345561740.38 +UniRef50_R5T8M0 Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC 4.16337090519e-06 1.67975164149e-05 5100559580.67 +UniRef50_Q38YR5 1.17011382921e-07 4.19456472715e-05 16886733603.3 +UniRef50_A0A014QHI0 6.22537408221e-07 8.37015325202e-06 3127807590.08 +UniRef50_UPI0001FFF018 AMP dependent synthetase 1.21794665448e-07 1.16549174777e-07 -2117668.95329 +UniRef50_A7AI53 4.19247545554e-07 3.31960225017e-06 1170908785.61 +UniRef50_UPI0002B44D7F PREDICTED 5.71349797054e-07 1.59519373128e-06 413338360.227 +UniRef50_A0QI67 4.65531469677e-07 3.18109111801e-06 1096304753.7 +UniRef50_UPI0003638900 hypothetical protein 1.64600496672e-07 1.77172605586e-06 648816309.893 +UniRef50_UPI00046489F4 ABC transporter ATPase, partial 1.48277809582e-07 4.3218372345e-07 114616301.346 +UniRef50_B6ZUP8 Formate C acetyltransferase 3 3.18017986611e-05 4.10950587957e-06 -11179718418.5 +UniRef50_UPI00039CFDC1 hypothetical protein 9.69724154481e-07 1.85596358941e-05 7101263221.77 +UniRef50_B1ZKW6 40 residue YVTN family beta propeller repeat protein 9.77375898238e-05 3.62167320567e-05 -24836725226.4 +UniRef50_C5Z6N8 8.3521372088e-07 8.70891786541e-06 3178710984.36 +UniRef50_A6UVH0 FO synthase subunit 1 2.3753599348e-05 4.31077420709e-06 -7849307099.68 +UniRef50_Q2NGM6 Probable translation initiation factor IF 2 2.38231420926e-05 3.41959782782e-06 -8237161199.34 +UniRef50_A0A031HYF4 Cell envelope like function transcriptional attenuator common domain protein 9.11133801595e-09 7.47006842818e-07 297897470.285 +UniRef50_A1R863 tRNA specific 2 thiouridylase MnmA 1.13359155811e-06 8.50548406276e-05 33880038078.9 +UniRef50_F0Y2L6 Expressed protein 7.29656622112e-07 3.17283450164e-06 986340891.13 +UniRef50_U5RSG0 NAD dependent epimerase dehydratase 0.000131653208591 1.74118974982e-05 -46120619186.8 +UniRef50_N0ATL3 Amidase 2.79447710146e-06 1.1569135415e-05 3542437238.34 +UniRef50_W0YMI4 GTP binding protein LepA 2.91323089881e-07 6.41684838809e-07 141445337.464 +UniRef50_Q5HKG7 ABC transporter, ATP binding protein 0.000193444259598 3.35772504816e-05 -64540273368.9 +UniRef50_A7FBL3 2.95533451142e-06 3.0936133788e-05 11296192031.0 +UniRef50_P0AD62 Pyruvate kinase I 2.58954854462e-05 1.79106862636e-05 -3223561414.52 +UniRef50_P17597 Acetolactate synthase, chloroplastic 9.59318751084e-08 1.31303984151e-07 14280154.4851 +UniRef50_P80576 Phospho 2 dehydro 3 deoxyheptonate aldolase 4.14616224957e-07 5.30160930255e-08 -145982410.594 +UniRef50_R7PTS8 1.06121578966e-05 1.94714311118e-06 -3498172800.56 +UniRef50_A0A032AQX4 6.65821004776e-07 6.83853287389e-07 7279853.77186 +UniRef50_Q2NBB9 1.39054376913e-07 1.91448931837e-07 21152324.7763 +UniRef50_Q829X3 UvrABC system protein A 0.000130642091732 9.61050662784e-05 -13943020992.6 +UniRef50_UPI0003739172 hypothetical protein 7.53842800846e-08 2.64499872071e-07 76348285.194 +UniRef50_E3A6L5 2.95061345597e-05 5.91606312127e-06 -9523601322.41 +UniRef50_J1NS24 Arabinose transport protein 4.41157495326e-07 1.11170494778e-06 270708235.098 +UniRef50_A4WT93 9.64838742565e-05 1.42389607949e-05 -33203280823.0 +UniRef50_A9UZQ9 Predicted protein 6.57719188826e-08 3.18588793808e-08 -13691110.2067 +UniRef50_C6SP54 5.35080301527e-05 3.04450211538e-06 -20372745525.8 +UniRef50_UPI000255E535 malonyl CoA acyl carrier protein transacylase, partial 1.10342367853e-06 6.45203842502e-06 2159301408.04 +UniRef50_K4H363 Ribose ABC transporter, periplasmic ribose binding protein RbsB 0.000123648614173 7.04457579105e-06 -47074481187.3 +UniRef50_Q2P7B9 3 oxoacyl [acyl carrier protein] synthase 3 0.000122273940776 6.19693545492e-05 -24345701480.2 +UniRef50_Q8XIK5 8.38857752959e-07 1.54558515942e-05 5901059784.38 +UniRef50_UPI00034B5D93 DNA polymerase III subunit gamma tau 3.05016993121e-08 1.1320062071e-07 33386569.3982 +UniRef50_R4R715 Putrescine importer PuuP 2.00700612221e-06 5.07533739408e-06 1238722987.11 +UniRef50_Q6NGH3 Ribonuclease 3 1.3295878069e-07 4.25827910564e-05 17137518207.7 +UniRef50_Q5HLI2 Amino acid ABC transporter, amino acid binding protein 9.10198897578e-05 4.57118580355e-05 -18291408398.4 +UniRef50_UPI0003B3520D mannose 1 phosphate guanylyltransferase 2.31980193309e-07 1.03990702894e-07 -51670927.8882 +UniRef50_M9VI11 Phosphoenolpyruvate sugar phosphotransferase 1.70266531623e-06 4.3580213698e-05 16906480177.0 +UniRef50_UPI00036C530C hypothetical protein, partial 5.85139132754e-07 1.04865347259e-06 187126426.952 +UniRef50_A4VS44 4.71198166788e-06 5.86638970279e-06 466048689.873 +UniRef50_UPI000477575F spermidine putrescine ABC transporter substrate binding protein 2.66212024233e-07 1.99872719077e-06 699437633.084 +UniRef50_C3ZSQ3 1.88117314178e-06 9.50323128369e-07 -375795573.228 +UniRef50_A3PJG3 Outer membrane protein assembly factor BamA 0.000114694523744 3.29031658524e-05 -33020174873.7 +UniRef50_B9E6Y5 0.000165050428413 5.05682682174e-05 -46217852925.2 +UniRef50_UPI00047C4591 hypothetical protein 3.05535024127e-07 2.75438989379e-06 988632761.71 +UniRef50_W5XCX4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.04057649474e-08 2.86443886497e-07 103365731.611 +UniRef50_A4WW20 1.97374617713e-06 3.25506892955e-05 12344287158.2 +UniRef50_A4WW27 8.70691410275e-05 2.4919303547e-05 -25090652055.1 +UniRef50_U6AME7 Glycerol 3 phosphate transporter 1.51726313252e-05 1.32231360532e-06 -5591543226.03 +UniRef50_X5EIQ4 Dihydroxyacetone kinase, L subunit 0.000253712409572 4.38931217804e-05 -84706621253.8 +UniRef50_UPI0002E4364A hypothetical protein 4.02465272254e-07 4.30505468148e-07 11320171.1743 +UniRef50_K7S070 ABC transporter, ATP binding protein 2.84895085921e-06 6.84168899645e-05 26470581625.9 +UniRef50_Q99UB6 Prephenate dehydrogenase 8.93935849316e-05 3.13743566727e-05 -23423074424.1 +UniRef50_A5IRF7 PEBP family protein 0.000291659008016 3.16333356749e-05 -1.04975554798e+11 +UniRef50_K9WCH6 3.22777795266e-07 4.03358637159e-06 1498098959.0 +UniRef50_UPI000465069F mannose 1 phosphate guanyltransferase 2.29838899432e-07 7.28961213377e-08 -63359725.421 +UniRef50_B4S5Y8 Riboflavin biosynthesis protein RibBA 1.01375240772e-07 2.56901597057e-05 10330506298.2 +UniRef50_UPI000328EECC PREDICTED 7.74955934733e-07 2.02502883564e-05 7862430687.84 +UniRef50_Q2C9Y7 3.78644076208e-06 4.55312947057e-07 -1344817176.46 +UniRef50_UPI000376B5FB hypothetical protein 1.4496826201e-06 2.01930245832e-07 -503732945.136 +UniRef50_UPI0002375AFF plasmid pRiA4b ORF 3 family protein 8.3241215135e-08 1.14900387414e-07 12781196.3508 +UniRef50_UPI00046AEB45 hypothetical protein 1.81074386381e-07 2.66561100045e-07 34512035.3461 +UniRef50_UPI0003FEA9DB xanthine dehydrogenase 4.97599425625e-07 3.3411869064e-07 -65999178.8477 +UniRef50_A5UL20 ATPase involved in DNA repair, SbcC 3.26217426329e-05 1.17084239866e-05 -8442963372.79 +UniRef50_O59829 Probable nitrilase C965.09 3.03619452667e-06 2.39122838212e-06 -260380747.179 +UniRef50_E8PEL6 2.12468661645e-06 1.75338516407e-05 6220869012.03 +UniRef50_E8UAZ5 Phosphoesterase RecJ domain protein 1.33702239266e-06 5.19090931062e-05 20416565536.1 +UniRef50_Q162C3 Sodium hydrogen exchanger family, putative 5.33545263552e-05 5.099378771e-06 -19481195237.0 +UniRef50_H1UZM0 Peroxiredoxin HYR1 4.58693353607e-07 7.0336116509e-07 98775397.9074 +UniRef50_C0BFU0 4.78674464958e-07 8.83129780216e-08 -157593722.55 +UniRef50_UPI000466DC48 glycine dehydrogenase 1.31412964468e-07 2.94381697068e-08 -41168476.0165 +UniRef50_UPI00047B371C hypothetical protein, partial 3.11101608465e-07 7.04792873234e-07 158937994.722 +UniRef50_P0AFB9 Nitrogen regulation protein NR 2.92893310244e-05 9.19552899458e-06 -8112114458.11 +UniRef50_B4RFJ6 Type II secretion system protein N 1.0902520255e-06 6.76398474671e-07 -167077757.024 +UniRef50_C6AZB2 Inner membrane translocator 0.000119503801337 3.53145082022e-05 -33988250757.3 +UniRef50_R7PXT2 3.30084033994e-05 4.99668865723e-06 -11308672983.8 +UniRef50_UPI000444A373 hypothetical protein STEHIDRAFT_62958 3.15604784196e-07 4.02661527878e-06 1498180475.88 +UniRef50_A6LUB1 Diguanylate cyclase 5.46840661818e-06 1.7885589242e-05 5012969001.19 +UniRef50_UPI0003B75BCC polar amino acid ABC transporter permease 3.74940370186e-08 3.92921408307e-08 725916.57416 +UniRef50_UPI00029D9246 3.94607091047e-07 3.96742438685e-07 862066.045123 +UniRef50_H8MF76 8.83605987298e-08 9.2605040078e-06 3702906849.1 +UniRef50_A0A023RZ47 DNA binding protein 4.08829590809e-06 4.75204682507e-05 17534100947.4 +UniRef50_Q01YD9 Bifunctional protein GlmU 4.13402401358e-08 5.03870273751e-08 3652299.02507 +UniRef50_F2AC19 2.34139820378e-06 1.0618081182e-06 -516586219.885 +UniRef50_P59680 ATP dependent 6 phosphofructokinase 1.82988613489e-08 2.89796318721e-08 4311958.12801 +UniRef50_P0AD05 7.01358541667e-05 3.4938809681e-05 -14209478775.2 +UniRef50_A1B1Z9 0.000113733105752 4.31011682069e-05 -28514979938.3 +UniRef50_Q2NG02 Enolase 2.49353723587e-05 8.24841131346e-06 -6736730945.99 +UniRef50_F9NSM8 5.5526038532e-06 3.71584727636e-05 12759677126.8 +UniRef50_Q8DW15 Glutathione biosynthesis bifunctional protein GshAB 5.50186920965e-05 1.80864537669e-05 -14909997823.2 +UniRef50_A8ISU7 Predicted protein 5.30577215517e-06 1.73387568509e-06 -1442018437.07 +UniRef50_A6M262 ABC transporter related 4.79285527454e-06 8.51717962019e-06 1503555440.94 +UniRef50_F5YI36 Glutamine ABC transporter, permease substrate binding protein 6.72618412148e-05 1.59114918499e-05 -20730766178.3 +UniRef50_UPI00047AA542 argininosuccinate lyase 5.22799159108e-08 1.0504914289e-07 21303584.4827 +UniRef50_M4RCI7 Fatty acid desaturase 3.45388135772e-06 7.42927624491e-05 28598525587.4 +UniRef50_Q5GWS2 4.49538230973e-06 2.47286737867e-06 -816514096.718 +UniRef50_T8CXA8 Phosphatase yihX 6.96446982968e-07 1.78133079522e-06 437980908.027 +UniRef50_O31711 3.21012258277e-05 3.33063953224e-06 -11615038742.3 +UniRef50_O31716 1.36807277639e-05 5.13923235862e-05 15224634006.8 +UniRef50_Q9ZPX5 Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial 5.58323683303e-06 2.98833832919e-05 9810267321.79 +UniRef50_U5MKU3 ABC type transport system, involved in lipoprotein release, permease component 2.95530503988e-06 1.40414775693e-05 4475623892.75 +UniRef50_A6LQ14 AMP dependent synthetase and ligase 7.06144164955e-06 1.24869642797e-06 -2346676576.36 +UniRef50_B9DP24 4 hydroxy tetrahydrodipicolinate reductase 0.00017488820534 5.10239160521e-05 -50005533571.3 +UniRef50_F0N4Z5 Exodeoxyribonuclease V, gamma subunit 1.9319368823e-06 3.43487096322e-05 13087048957.7 +UniRef50_P14756 Pseudolysin 2.91692961966e-06 1.28678302919e-06 -658110182.721 +UniRef50_UPI0004720360 30S ribosomal protein S3 3.13330757321e-06 1.04893389463e-05 2969720133.97 +UniRef50_Q7UJ69 Dihydroxy acid dehydratase 2.21129427489e-08 8.38967181605e-08 24942868.3058 +UniRef50_H8L8P6 PTS system, mannose fructose sorbose specific IID component 1.05003925893e-05 3.2070000259e-05 8707915305.11 +UniRef50_A3PNL6 PpiC type peptidyl prolyl cis trans isomerase 0.000100107750419 1.94690787508e-05 -32554821300.2 +UniRef50_K6Q1W9 Biotin dependent carboxylase like protein 4.70544947275e-08 6.72026763217e-07 252308974.062 +UniRef50_UPI0004761EBF cold shock protein 2.1831300464e-07 3.40359300573e-07 49271587.3446 +UniRef50_Q2FFJ3 Sodium proline symporter 0.000236722969053 7.33144905057e-05 -65970008037.0 +UniRef50_UPI0002F6340C hypothetical protein 4.20828014311e-08 1.42779565232e-07 40652519.2347 +UniRef50_UPI0004779366 serine protease 1.81061900691e-07 2.33133975202e-07 21022135.4763 +UniRef50_B7LN63 4.69635344377e-05 7.81675575147e-06 -15804034940.6 +UniRef50_UPI0003B3C2F9 alpha amylase 2.00381127959e-07 3.47823662417e-07 59524360.4841 +UniRef50_Q3AZ12 1.70956013843e-06 2.06794009552e-07 -606685127.243 +UniRef50_Q896N2 Phosphoserine phosphatase 2.49440080738e-06 1.09351991179e-05 3407653858.2 +UniRef50_G8LZQ1 Molybdate ABC transporter, permease protein 6.00122018428e-06 2.90475447734e-06 -1250081203.8 +UniRef50_D3SBH6 TRAP transporter solute receptor, TAXI family 7.3038614021e-07 7.79727014196e-07 19919516.3088 +UniRef50_UPI0004432C18 PREDICTED 7.66028050831e-08 5.18223566459e-07 178287720.664 +UniRef50_Q92DG5 D alanine D alanine ligase 6.3270452185e-08 4.7889195437e-06 1907802528.48 +UniRef50_A7ZTE9 Mannitol 1 phosphate 5 dehydrogenase 4.11918731568e-05 6.60392514901e-06 -13963579052.6 +UniRef50_A6LTV5 Ion transport 2 domain protein 4.19610819248e-06 1.34328873201e-05 3729001081.85 +UniRef50_UPI0004677ABB hypothetical protein 1.9718922576e-07 2.77839576715e-07 32559536.3716 +UniRef50_UPI000471685A membrane protein 3.50173917045e-07 8.99055382538e-06 3488227398.38 +UniRef50_UPI0003C15BF1 PREDICTED 5.69007202092e-07 3.31063191152e-08 -216349762.701 +UniRef50_UPI000027C743 hypothetical protein 7.48869126994e-08 1.52564527575e-07 31359406.3368 +UniRef50_UPI0003656A67 hypothetical protein 3.59506284696e-07 3.69419166923e-07 4001952.19978 +UniRef50_A0A023S0W1 Acyltransferase 1.4155724582e-06 1.88348695926e-05 7032384011.97 +UniRef50_UPI000372E136 hypothetical protein 3.7315344732e-07 1.20172944516e-06 334506298.099 +UniRef50_P75867 Putative Lon protease homolog 3.66534037404e-05 1.02838086542e-06 -14382258902.8 +UniRef50_A1T5E9 3.83149698522e-07 1.50219961238e-07 -94036593.3109 +UniRef50_UPI00047D7AE5 resolvase 7.29628466942e-07 2.19817765938e-06 592871330.113 +UniRef50_R7NTI0 6.4371998579e-08 1.19096215976e-07 22092838.1048 +UniRef50_E6S0A0 2.06779661217e-07 3.85443347728e-07 72128722.6945 +UniRef50_V6UAJ9 4.15175957368e-06 4.96768506484e-08 -1656061133.5 +UniRef50_Q8CU26 3.28533513994e-05 1.3943187415e-05 -7634265254.31 +UniRef50_UPI000367BBBE hypothetical protein 4.05564832278e-06 4.5458887484e-06 197916075.749 +UniRef50_W4XFJ9 6.76030182537e-09 2.06555424425e-09 -1895327.20953 +UniRef50_UPI000379071D hypothetical protein 9.43628097165e-07 6.67104452015e-07 -111635988.874 +UniRef50_A6LT54 1.86566386584e-06 1.09194426667e-05 3655121604.27 +UniRef50_A6LT50 2.3728827183e-06 3.91685034238e-05 14854843611.9 +UniRef50_B9KX92 ABC polysaccharide export transporter, ATPase subunit 0.000185351010945 2.11628906084e-05 -66284758994.9 +UniRef50_A6LT52 2.7914657665e-06 5.0470376079e-06 910602031.352 +UniRef50_A6LT53 4.94159569863e-06 9.54036239284e-06 1856578547.67 +UniRef50_Q6ZD36 1.07522669369e-07 1.38970134759e-06 517631266.499 +UniRef50_P0A9R9 Cell division ATP binding protein FtsE 2.61341985107e-05 2.68469732005e-06 -9466851388.42 +UniRef50_R6FNM8 DEAD DEAH box helicase domain protein 6.85760623058e-06 9.84518922578e-06 1206123916.93 +UniRef50_A4G3E6 Isoleucine tRNA ligase 7.39371378363e-06 3.34887628344e-06 -1632950534.56 +UniRef50_A3PLZ5 ParB family protein 5.9611970572e-06 3.34730976329e-06 -1055258376.56 +UniRef50_UPI00025581FA cyclohexadienyl dehydrogenase, partial 4.5187314283e-07 1.46517682055e-06 409083129.33 +UniRef50_UPI00046F08B0 hypothetical protein 1.08654210894e-06 1.83879562934e-07 -364415946.738 +UniRef50_UPI0003B4920F preprotein translocase subunit SecB 3.45067734853e-07 5.98448434774e-07 102292897.889 +UniRef50_P0A2X3 Exodeoxyribonuclease 4.88410503424e-05 5.97416025615e-05 4400686695.67 +UniRef50_UPI0003B559D7 4 alpha glucanotransferase 1.08044327185e-07 5.94511498005e-06 2356497051.47 +UniRef50_A5N248 1.26515337634e-05 2.17450115948e-05 3671148590.06 +UniRef50_W1GUL6 3.60839875691e-07 2.28783404467e-07 -53312817.9483 +UniRef50_G7UQ41 Terminase 4.27530818981e-08 3.23509773958e-07 113344921.857 +UniRef50_Q9RQW2 Holo [acyl carrier protein] synthase 8.94334562036e-07 6.78888977457e-06 2379704273.62 +UniRef50_L8UK30 7.03390041336e-06 6.89966788659e-06 -54191318.2754 +UniRef50_Q8X643 NAD dependent dihydropyrimidine dehydrogenase subunit PreA 1.65478987246e-05 2.97688916432e-05 5337477081.07 +UniRef50_U5PD31 Asparaginase 4.9951520362e-05 8.19383782422e-05 12913487049.1 +UniRef50_UPI00037472A7 hypothetical protein 5.08574675189e-07 2.23479879209e-07 -115096267.644 +UniRef50_F9ZUX9 Succinate dehydrogenase subunit A like protein 1.72239973521e-06 2.30968410904e-06 237093908.505 +UniRef50_G0DS55 Radical SAM superfamily protein 1.17110441217e-06 3.6813899534e-05 14389433777.0 +UniRef50_A8ZUC6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.52693719121e-07 7.6681328677e-08 -30687134.7992 +UniRef50_W7VMR8 7.64165776251e-07 2.87831791158e-06 853509160.597 +UniRef50_W4Q5P9 Phage terminase large subunit 5.33696791928e-08 1.64284155842e-07 44777535.2969 +UniRef50_A6LZB3 FMN binding domain protein 1.49994432661e-06 1.4952984196e-05 5431157282.64 +UniRef50_U9XFZ5 1.29830094458e-06 1.32424648145e-06 10474531.622 +UniRef50_N2GFP3 2.35438246685e-06 5.25429829699e-06 1170731606.6 +UniRef50_I0C1E1 5.22708544695e-05 1.92123651959e-05 -13346117793.0 +UniRef50_Q8Z9L3 L carnitine CoA transferase 2.41797023074e-05 9.93651609394e-06 -5750149057.94 +UniRef50_Q2W0J7 Flagellar P ring protein 9.43515421167e-05 1.45529811926e-05 -32215658283.5 +UniRef50_Q92U29 1.03176552206e-06 3.91866267024e-06 1165475804.93 +UniRef50_Q7UID0 Thymidylate synthase 1.42927573747e-05 0.00016106152773 59252353647.7 +UniRef50_UPI0003691ABF hypothetical protein 3.55684061717e-08 1.04131555319e-07 27679784.6752 +UniRef50_F0MG01 2.01147063333e-06 2.61319095365e-05 9737717176.29 +UniRef50_W7TC28 1.47289251804e-07 2.17640867982e-07 28401810.7625 +UniRef50_A6UPR3 Glutamyl tRNA amidotransferase subunit E 2.7501928806e-05 2.11909231622e-06 -10247362573.4 +UniRef50_UPI00030168D3 hypothetical protein 2.99184050592e-07 1.8820279495e-06 639013505.669 +UniRef50_K0HTP9 Sulfate ABC transporter periplasmic sulfate binding protein 3.17014417105e-06 2.72600035571e-06 -179306308.51 +UniRef50_Q1RFI5 5.9290993013e-06 1.18126682079e-05 2375268967.1 +UniRef50_A0L5M9 UDP N acetylenolpyruvoylglucosamine reductase 4.94908325217e-08 5.96385948221e-07 220788269.365 +UniRef50_B9AGR4 1.29980860143e-05 2.57741985155e-06 -4206950805.84 +UniRef50_G7ELT9 2.51123298335e-07 1.17630425862e-07 -53892710.7591 +UniRef50_U3AFI9 Urea ABC transporter, urea binding protein 6.98261911932e-05 1.55133945209e-05 -21926742509.6 +UniRef50_D4HC81 3.11198219146e-06 5.91441252345e-05 22620863738.2 +UniRef50_C0XT97 1.36960606861e-07 1.86856943653e-05 7488351436.83 +UniRef50_Q55587 4.02299074535e-08 1.84877594776e-07 58396046.3986 +UniRef50_F0VN90 8.21637708439e-08 1.26798168731e-07 18019454.1527 +UniRef50_B7QVH2 Major facilitator superfamily protein 3.03517627947e-07 6.30827769979e-07 132139120.885 +UniRef50_P42620 Glutathionyl hydroquinone reductase YqjG 0.000288905955137 8.28376693824e-05 -83192295701.5 +UniRef50_UPI0003758451 AsnC family transcriptional regulator 1.35788438972e-06 8.50665236632e-07 -204770596.381 +UniRef50_I0LIW9 1.9506904962e-07 4.26687775675e-08 -61525859.989 +UniRef50_UPI00046EAF7B hypothetical protein, partial 1.51904680505e-07 1.60009392137e-07 3271971.54183 +UniRef50_A7X1E9 Aspartate carbamoyltransferase 0.000123155084818 1.21912547131e-05 -44797459892.7 +UniRef50_V8FVT8 9.86461643372e-07 1.5816481678e-05 5987061072.78 +UniRef50_I1YHV8 Carbonic anhydrase, family 3 5.99858754362e-07 1.33863051733e-06 298251226.459 +UniRef50_A3PI07 2.51802107269e-05 1.7897982133e-05 -2939925046.35 +UniRef50_A7MMQ6 8.41884243704e-07 8.04770489307e-07 -14983278.0871 +UniRef50_Q9AD79 Putative membrane protein 1.2622647155e-06 2.18758904957e-07 -421276100.971 +UniRef50_UPI00036DE46F hypothetical protein 2.06797028933e-07 3.88434859113e-07 73329420.9905 +UniRef50_UPI0003780756 SAM dependent methyltransferase 1.29040514176e-07 2.97713943451e-07 68095533.2541 +UniRef50_Q3J1W3 Chemotaxis response regulator protein glutamate methylesterase 2 1.00239200105e-06 3.4818774817e-06 1000998715.25 +UniRef50_T0UG31 Cell division protein FtsW 4.7956712244e-05 4.46446987613e-05 -1337100485.94 +UniRef50_UPI0004040B20 PTS sugar transporter subunit IIA 2.16196659831e-07 6.80309602808e-07 187368090.386 +UniRef50_Q58556 Cell division cycle protein 48 homolog MJ1156 2.00620122814e-05 3.60788032948e-06 -6642734983.89 +UniRef50_C6ABJ5 sn glycerol 3 phosphate binding periplasmic protein UgpB 1.55391390956e-07 5.93003733895e-08 -38793122.961 +UniRef50_UPI00047E8722 hypothetical protein 8.66638075146e-08 5.74659771742e-08 -11787522.4061 +UniRef50_O27041 V type ATP synthase subunit I 2.84443831233e-05 5.07790757045e-06 -9433332919.61 +UniRef50_P66938 DNA topoisomerase 4 subunit B 0.000281823127507 0.000138964129147 -57673930715.0 +UniRef50_Q49150 Bifunctional coenzyme PQQ synthesis protein C D 1.24609438148e-06 2.17856495128e-07 -415112252.617 +UniRef50_U3R1J4 3 hydroxyacyl CoA dehydrogenase 5.49470143931e-07 8.60785630103e-05 34529144350.2 +UniRef50_P93033 Fumarate hydratase 1, mitochondrial 1.31605626031e-07 3.41217119469e-07 84622732.1232 +UniRef50_V5VCJ0 Protease 1.46455909076e-06 8.63991926869e-05 34289153847.9 +UniRef50_F3ZAY0 Putative transcriptional regulator 1.73038732986e-06 3.31966136148e-06 641609429.15 +UniRef50_Q9Z3R7 Alpha glucoside transport system permease protein AglG 7.00470581409e-05 4.95442916683e-06 -26278693093.2 +UniRef50_UPI0004743C7F hypothetical protein, partial 1.05011167531e-06 1.02141084124e-06 -11586878.9129 +UniRef50_N6V2G4 2.01495321983e-08 1.5956669633e-07 56284420.0011 +UniRef50_B4U501 50S ribosomal protein L4 3.6472076218e-06 3.46751512944e-06 -72544064.2406 +UniRef50_V4Z4F4 2.54427060768e-08 1.83220540258e-08 -2874694.61322 +UniRef50_R5NSU1 4.79744624373e-06 2.5438540934e-06 -909802805.774 +UniRef50_R7MVM8 Terminase small subunit family protein 1.35463262263e-06 2.84851542838e-07 -431883749.601 +UniRef50_P67109 UPF0042 nucleotide binding protein SA0720 0.000106434781768 1.97536257659e-06 -42171549388.6 +UniRef50_D8HCA4 ABC transporter, ATP binding protein 4.16519825803e-05 2.07931435521e-05 -8420969282.42 +UniRef50_UPI00036EA77A hypothetical protein 1.80610902477e-07 1.24319397702e-05 4946011804.6 +UniRef50_C7PA11 7.07139816428e-08 7.62303522494e-06 3048964763.32 +UniRef50_A9B518 Ribosomal RNA small subunit methyltransferase H 1.05423060364e-07 3.39494327809e-07 94497443.045 +UniRef50_F3U3C4 8.25979688065e-07 1.53905932419e-07 -271324422.427 +UniRef50_Q02252 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 9.98974818758e-08 7.699638719e-05 31044056521.2 +UniRef50_G8VRC7 Electron transfer flavoprotein FAD binding domain protein 2.79619251005e-06 5.97674508864e-05 22999996122.5 +UniRef50_Q9SI75 Elongation factor G, chloroplastic 2.06612263319e-07 1.01538544808e-06 326511659.451 +UniRef50_A5IPV1 8.16014635855e-05 6.26863708312e-05 -7636255059.2 +UniRef50_C1F9K5 Threonine tRNA ligase 3.16519694042e-07 3.22539463318e-08 -114761570.684 +UniRef50_Q9LEJ0 Enolase 1 3.63650876333e-08 8.3708725659e-07 323261365.574 +UniRef50_UPI000366215B hypothetical protein 3.40280874994e-05 4.63938940873e-06 -11864578059.1 +UniRef50_T0FGA8 1.47725411873e-07 2.32908492216e-07 34389454.8484 +UniRef50_D0T5H1 ATP dependent helicase HrpA 2.84842938769e-06 3.22869154081e-05 11884678057.3 +UniRef50_W4UAP9 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.25096594217e-08 2.65595906829e-07 98136901.0819 +UniRef50_K4NG74 VirB4 like protein 4.95388436774e-07 3.46494090654e-05 13788397244.7 +UniRef50_Q12PV1 SsrA binding protein 5.23354622866e-06 1.18046992953e-05 2652855130.12 +UniRef50_UPI000369C4CE hypothetical protein 1.26584908652e-06 2.83177192448e-07 -396716702.377 +UniRef50_G7M5A0 5.30100818569e-06 1.0389180224e-05 2054157490.76 +UniRef50_G7M6S3 Arginine decarboxylase 7.97441026498e-06 1.398689146e-05 2427312439.87 +UniRef50_P09184 Very short patch repair protein 6.19375859826e-06 4.74277510021e-06 -585779843.733 +UniRef50_Q02394 5,10 methenyltetrahydromethanopterin hydrogenase 2.86503460298e-05 9.09185526621e-06 -7896002730.94 +UniRef50_Q88M74 Acyltransferase 4.65143493236e-06 6.00194762941e-06 545218548.454 +UniRef50_Q0FUI9 ISSpo9, transposase 7.99384094593e-07 7.73993796221e-07 -10250375.0268 +UniRef50_UPI0003AFDE9C PREDICTED 2.36301303206e-08 1.38885423416e-07 46529976.1639 +UniRef50_P18120 3 isopropylmalate dehydrogenase 1.97420323853e-07 2.45273628521e-07 19318966.3206 +UniRef50_K7UE53 Putative acetylornithine succinylornithine aminotransferase family protein 2.63526470378e-08 3.76535615625e-08 4562317.87144 +UniRef50_R5BW02 5.95502666077e-06 2.33741110794e-05 7032298135.99 +UniRef50_A8MM69 TRAP transporter solute receptor, TAXI family 1.82964357938e-07 1.29344233082e-07 -21647102.3973 +UniRef50_Q3IRX5 Serine hydroxymethyltransferase 8.52700158469e-07 9.55385133525e-07 41455184.5165 +UniRef50_Q9RUB7 Phage shock protein A homolog 1.76120990128e-06 0.0002049858318 82044273707.2 +UniRef50_Q89VR4 Acyl CoA dehydrogenase 5.11193084627e-06 3.84656942268e-05 13465323573.4 +UniRef50_C3MFT1 6.07018859646e-06 5.92966881915e-07 -2211221619.23 +UniRef50_P26608 Flagellar protein FliS 3.36237762095e-05 7.17368514652e-06 -10678226341.3 +UniRef50_UPI0002F0F5DA branched chain amino acid ABC transporter permease 4.40009523818e-07 5.23817586644e-06 1937078632.64 +UniRef50_UPI00046778C2 hypothetical protein 5.14172477089e-08 1.71702099568e-07 48560470.7566 +UniRef50_Q21ET8 1.94122373987e-07 1.81624712867e-07 -5045459.15769 +UniRef50_Q720Z5 Teichoic acids export ATP binding protein TagH 5.6667064868e-08 8.20447142127e-06 3289368603.48 +UniRef50_P0AFZ1 Protein SseB 5.23233974107e-05 1.1791742126e-05 -16363126617.8 +UniRef50_G2DDB6 3.83482075276e-07 1.23664861738e-07 -104891397.421 +UniRef50_Q1C0V9 Rhamnulokinase 4.95804348411e-05 9.22905679454e-06 -16290346484.5 +UniRef50_C4ZJG8 Nitrite reductase H), large subunit 5.98588698913e-06 3.94933150137e-06 -822182441.755 +UniRef50_UPI00039C17A8 hypothetical protein 4.16500883248e-07 2.73702605186e-07 -57649417.1856 +UniRef50_D1BIN8 Monosaccharide binding protein 1.03136230916e-07 5.16190275641e-05 20797597502.3 +UniRef50_E6VPG8 Transcriptional regulator, AraC family 0.000284390045463 9.1596707949e-05 -77833036194.7 +UniRef50_UPI00021A57D1 PREDICTED 9.84312416401e-07 5.13380031993e-07 -190121182.576 +UniRef50_E0N7V9 6.25667384843e-06 8.50253712458e-05 31799889739.9 +UniRef50_UPI00037031A7 hypothetical protein, partial 6.92488374226e-08 2.40880117023e-07 69289653.7272 +UniRef50_UPI00030650F9 hypothetical protein 7.81507079725e-09 1.23352886453e-08 1824867.41457 +UniRef50_M4SA42 TraU family protein 1.15303091969e-06 1.64602307439e-07 -399040760.149 +UniRef50_UPI0001509F0D Electron transfer flavoprotein ubiquinone oxidoreductase containing protein 2.65544836622e-08 8.60832721048e-08 24032502.3947 +UniRef50_UPI0002BC4120 phosphoenolpyruvate protein phosphotransferase, partial 2.15937525589e-08 1.73363204951e-06 691170869.551 +UniRef50_G8LLV9 Coproporphyrinogen III oxidase 2.55219309591e-05 1.61412635007e-05 -3787090566.69 +UniRef50_Q02136 Histidinol dehydrogenase 5.88272813331e-05 3.06893601157e-05 -11359624086.6 +UniRef50_F6G400 9.92513555255e-07 4.02270795757e-07 -238288245.103 +UniRef50_U5ACW9 2.88920644946e-06 1.27910409555e-06 -650018078.451 +UniRef50_UPI0002BFF2B3 unnamed protein product 5.61444684709e-08 2.31897287713e-07 70953569.8576 +UniRef50_K1R9M4 Phage terminase, large subunit 1.52470814135e-07 1.80883242663e-06 668693508.809 +UniRef50_A6LR81 Coenzyme F390 synthetase like protein 1.07955954865e-06 1.71630553255e-05 6493104611.78 +UniRef50_P54019 30S ribosomal protein S13 8.42038939477e-06 4.01791435631e-06 -1777333197.47 +UniRef50_UPI00037EC4C5 hypothetical protein 6.73867909197e-08 3.14001632931e-07 99561438.0243 +UniRef50_UPI00034B83FC hypothetical protein 7.98698874288e-08 8.12247123261e-06 3246896856.87 +UniRef50_UPI000427207E hypothetical protein 6.97947065103e-08 3.33088710552e-08 -14729779.5048 +UniRef50_K1V4W8 1.36357920873e-06 1.88029716869e-07 -474583755.478 +UniRef50_Q8YF84 Glutamate synthase small chain 2.04884880084e-05 3.03373833107e-06 -7046696638.59 +UniRef50_Q0BAQ4 tRNA modification GTPase MnmE 5.04714228498e-05 0.000131205017663 32593142938.7 +UniRef50_UPI00036B6D82 hypothetical protein 1.1753106094e-06 2.79443657264e-07 -361672482.101 +UniRef50_U6EFC2 Helicase 3.09670934647e-05 7.74987775745e-06 -9373074888.27 +UniRef50_A4HI31 6.49074672859e-08 1.46425122558e-07 32909677.7675 +UniRef50_B9KS21 Two component, sigma54 specific, transcriptional regulator, Fis family 3.06956189778e-05 1.39689868593e-05 -6752746645.1 +UniRef50_UPI00046960A8 nickel ABC transporter permease 8.99154584445e-07 4.54239999272e-07 -179617477.75 +UniRef50_UPI0004647121 hypothetical protein 3.26872267709e-08 9.2677761151e-07 360955260.042 +UniRef50_UPI00044159A7 cwf21 domain containing protein, partial 5.09910326125e-07 2.52683094059e-07 -103845790.118 +UniRef50_Q5M4T5 7.61793149845e-05 5.76697869196e-05 -7472523617.25 +UniRef50_O87656 Iron hydroxamate import system permease protein FhuB 2.61733815291e-05 1.38462431863e-05 -4976617019.99 +UniRef50_M1MMU8 1.99043610132e-06 3.00362227614e-05 11322428235.2 +UniRef50_J7RCA7 5.45297193947e-05 3.62351785524e-06 -20551458250.8 +UniRef50_I0AL38 3 oxoacyl [acyl carrier protein] reductase 0.000160072257179 2.14648353327e-05 -55957517103.6 +UniRef50_P45468 UPF0718 protein YraQ 2.23580355969e-05 8.47832275355e-06 -5603410398.07 +UniRef50_R9SN00 Transcriptional regulator ArsR family 4.05368916017e-05 2.56797134949e-06 -15328519036.9 +UniRef50_Q07211 Fructokinase 4.85075668772e-05 3.60470493283e-05 -5030463842.24 +UniRef50_Q99UM3 Probable cell wall hydrolase LytN 6.31799487022e-05 9.51283493776e-06 -21666072396.2 +UniRef50_Q4L691 Phosphate import ATP binding protein PstB 2.88489690468e-07 1.78390342974e-06 603716877.333 +UniRef50_I0C432 Homoserine dehydrogenase 0.00025512920913 9.62826165726e-05 -64128318682.2 +UniRef50_F0MX64 Nickel dependent hydrogenase, b type cytochrome subunit 3.52345097598e-06 5.6724264365e-05 21477821212.5 +UniRef50_P9WNP6 3 hydroxybutyryl CoA dehydrogenase 9.28238080939e-08 2.83226390587e-06 1105945584.18 +UniRef50_UPI00036B09C8 hypothetical protein 4.59748784954e-09 2.80608149564e-08 9472433.08046 +UniRef50_B1R255 Cell wall binding repeat domain protein 2.5334630124e-06 8.88965254305e-06 2566071712.74 +UniRef50_S9QXB6 1.07134058989e-06 3.44910750752e-07 -293268640.357 +UniRef50_M9VCS0 9.41361568159e-07 2.85582849635e-05 11149290872.4 +UniRef50_UPI00035E4AA0 hypothetical protein 9.0176990756e-08 1.26421157621e-07 14632214.9293 +UniRef50_I6T6X2 Protein BglB 3.42913241115e-05 2.84425452579e-05 -2361223795.79 +UniRef50_A0A024HX75 2.05694976103e-07 9.91378879242e-08 -43018404.1004 +UniRef50_P73662 Phosphate acetyltransferase 3.99675354017e-08 7.52091115266e-08 14227456.7444 +UniRef50_W8RVD2 ATPase of the AAA+ class 1.30006693838e-06 4.5610595622e-07 -340717405.064 +UniRef50_I0C816 Nitrogen regulation protein NIFR3 3.53894363537e-07 6.2401200814e-07 109049807.842 +UniRef50_UPI00047AA101 hypothetical protein 3.10917100259e-08 6.81949597648e-08 14979037.2277 +UniRef50_UPI00046A4480 hypothetical protein 2.42626794625e-07 2.14704971228e-07 -11272382.7447 +UniRef50_UPI00028825F3 multidrug ABC transporter permease 2.27497471899e-06 5.02936142125e-08 -898131061.907 +UniRef50_D3NVZ1 5.37917953464e-07 1.74564403813e-07 -146690286.844 +UniRef50_UPI000190AB93 branched chain amino acid aminotransferase 7.40178192707e-07 6.16403354792e-07 -49969420.9543 +UniRef50_A0A022S140 4.40648613448e-07 3.26307066793e-06 1139446418.41 +UniRef50_B0V541 2.20322561583e-06 7.42363668812e-05 29080663074.9 +UniRef50_J2PC13 Arabinose efflux permease family protein 2.96451517059e-08 6.01876194731e-08 12330369.0358 +UniRef50_B2A2G4 Ribosomal RNA small subunit methyltransferase H 6.47341342888e-08 6.8406330452e-08 1482510.654 +UniRef50_A0Q2Z5 ATP synthase gamma chain 2.74202897477e-06 1.47606336038e-05 4852058173.59 +UniRef50_M1LPW4 6.5057739139e-06 1.82198318117e-05 4729108921.0 +UniRef50_UPI00034DD1B3 hypothetical protein 1.10289465181e-06 3.70037767062e-07 -295863317.538 +UniRef50_A6LYK1 1.57285828689e-06 5.8359593005e-06 1721066193.33 +UniRef50_UPI000363AA5C MULTISPECIES 2.67370096927e-07 1.45142046012e-07 -49344964.0612 +UniRef50_B9ISU4 1.93769381063e-07 3.56276330317e-07 65606049.5984 +UniRef50_D4HF88 Amino acid peptide transporter 1.69768830967e-06 6.69466693541e-05 26341814342.7 +UniRef50_Q39FJ3 Hydroxypyruvate isomerase 1.49598146176e-06 4.61432351874e-06 1258912954.76 +UniRef50_V9XDD0 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 1.09099996778e-06 1.13476520694e-05 4140736316.69 +UniRef50_W1HEW1 DNA topology modulation protein 1.85592008538e-07 1.68355298619e-07 -6958671.31252 +UniRef50_L0SAB5 Fusion of IS1381 orf A and B 1.78509671792e-07 2.23625007784e-05 8955949437.92 +UniRef50_Q2NYD7 Indole 3 glycerol phosphate synthase 1.00468022574e-05 2.28316820623e-05 5161412865.36 +UniRef50_E5U188 2.54346600275e-06 8.91690437462e-07 -666842065.273 +UniRef50_E4LMM6 HD domain protein 1.84577554616e-07 2.34957561941e-07 20339027.1893 +UniRef50_Q49W87 Na H(+) antiporter subunit E1 0.000167931114181 2.70143782698e-05 -56889815530.1 +UniRef50_UPI0003A7FBFE side tail fiber protein 8.21673355952e-08 1.79259035012e-06 690518760.212 +UniRef50_UPI0003626812 hypothetical protein 1.03126891252e-06 1.631480042e-07 -350471063.73 +UniRef50_UPI000381F4EB hypothetical protein 4.03856679871e-08 1.28047416867e-07 35390123.7534 +UniRef50_P08368 Transcriptional regulatory protein CreB 1.97804155607e-05 5.35317290393e-06 -5824454902.73 +UniRef50_W4N2B7 UPF0176 protein X964_08780 3.90200610964e-06 7.10693968419e-05 27116299875.2 +UniRef50_UPI0004747C9B hypothetical protein 7.13383940696e-06 1.22730661875e-06 -2384539767.91 +UniRef50_F2J6W6 Transcriptional regulator 1.20321853091e-05 5.88322380236e-06 -2482411216.51 +UniRef50_UPI0003754665 hypothetical protein, partial 6.21599282306e-07 8.77136706163e-07 103163593.808 +UniRef50_M3HZS8 3.06709789931e-07 8.04105305025e-08 -91359788.0357 +UniRef50_UPI0004745709 iron hydroxamate transporter permease subunit, partial 1.83188231742e-07 3.4792692823e-07 66507033.3433 +UniRef50_F2JM58 Transcriptional regulator, PucR family 2.10317289469e-06 1.36478127803e-05 4660712790.48 +UniRef50_UPI0004785665 hypothetical protein 8.43217723264e-08 2.49816181669e-06 974496847.056 +UniRef50_UPI000361AD47 flagellar P ring protein FlgI 2.25926506978e-07 2.31726511259e-07 2341532.9023 +UniRef50_Q6A615 9.25967266145e-07 4.56809170202e-05 18068122420.7 +UniRef50_D4SL88 L ribulose 5 phosphate 3 epimerase UlaE 7.13473408885e-07 2.63127201163e-07 -181810290.427 +UniRef50_B9KN41 7.47354552495e-05 1.28508363134e-05 -24983580074.2 +UniRef50_UPI00046AB541 MULTISPECIES 7.1351855149e-07 2.90060047643e-07 -170955394.423 +UniRef50_UPI0002195D2E peptide ABC transporter ATP binding protein 5.57782563993e-07 1.7026168218e-07 -156446935.404 +UniRef50_C5N2Z6 LPXTG motif cell wall anchor domain protein 0.000343176072486 9.62989256073e-06 -1.34656685908e+11 +UniRef50_R6A8H0 1.78746751519e-05 6.76916656792e-06 -4483430095.28 +UniRef50_UPI000463E95A hypothetical protein 2.53026541394e-07 4.45881564215e-08 -84149133.8398 +UniRef50_UPI0002D6C4DC hypothetical protein 1.29116750375e-06 1.44800447745e-07 -462802448.017 +UniRef50_UPI00047EFE08 macrolide transporter 7.78025221064e-08 4.87888741877e-08 -11713165.7023 +UniRef50_UPI00035CFCF8 hypothetical protein 3.31563090706e-07 4.48996758491e-07 47409412.758 +UniRef50_UPI0003AEE1CA PREDICTED 1.28383213376e-07 3.36849617873e-07 84160445.6659 +UniRef50_C6DJF9 Protein ViaA 2.33235618564e-05 4.31799027627e-06 -7672782471.48 +UniRef50_R5J6V4 3.24926066261e-06 8.13307218547e-06 1971654642.89 +UniRef50_P0ACI1 Right origin binding protein 4.59072391409e-05 2.04371422282e-06 -17708243275.4 +UniRef50_U3T5M8 Acetyltransferase 2.24249102288e-06 3.09169605713e-05 11576235232.0 +UniRef50_UPI0004634FA1 hypothetical protein 2.18078389698e-07 3.40634296299e-07 49477323.4249 +UniRef50_A3PJF7 Ribosome recycling factor 0.00017299628818 1.68752402968e-05 -63027982851.1 +UniRef50_O28437 Putative ABC transporter ATP binding protein AF_1841 5.51470206823e-07 2.75118235993e-07 -111566681.844 +UniRef50_D4HE05 8.38172009978e-06 7.86400359709e-05 28364144283.7 +UniRef50_A6LZK4 1.46584990493e-05 1.79420528583e-05 1325610966.43 +UniRef50_UPI00029B0F13 NADH dehydrogenase subunit D 2.44720981649e-07 3.18146602639e-07 29642824.2274 +UniRef50_UPI00038304E6 hypothetical protein M271_24355 2.91594715021e-07 2.07671794396e-07 -33880712.9064 +UniRef50_G3ZK67 Putative Mg chelatase like protein 7.96225869204e-08 1.28176587508e-07 19601845.8618 +UniRef50_M4YVT1 7.85338395664e-07 1.93017454369e-06 462184401.679 +UniRef50_I0EPZ1 L lactate permease 4.45879151223e-06 8.94735818745e-05 34321514118.1 +UniRef50_O34943 Putative tRNA binding protein YtpR 9.31248616675e-05 3.39734594586e-05 -23880146941.1 +UniRef50_R9SJS2 Helicase 2.53928950182e-05 5.80886733011e-06 -7906312300.73 +UniRef50_A4VHU4 Exonuclease SbcD 6.47880867584e-06 2.10940503716e-06 -1763981867.55 +UniRef50_A5UM89 Adhesin like protein 2.84270224698e-05 5.16472711475e-06 -9391274095.32 +UniRef50_Q9HWB8 Nuclease SbcCD subunit C 5.5271194294e-06 1.58548466208e-06 -1591286324.86 +UniRef50_A3PFK8 1.11792077592e-05 3.35352827567e-06 -3159322839.39 +UniRef50_UPI00047ACA41 hypothetical protein 4.5889840075e-08 6.59848345859e-08 8112595.87736 +UniRef50_E9B5X1 7.95313633543e-09 5.73397255617e-08 19937972.1123 +UniRef50_S6PZF6 Sulfur transfer complex subunit TusD 1.24611848461e-06 1.98890983614e-06 299873983.688 +UniRef50_UPI00046865DF hypothetical protein 2.07261629439e-07 1.36076070638e-07 -28738483.633 +UniRef50_W0YVS4 Respiratory nitrate reductase subunit beta 2.83433996195e-07 1.06351641518e-06 314928845.232 +UniRef50_Q9HI37 Probable family 20 transposase 2.67400994058e-05 8.85634619393e-06 -7219890629.97 +UniRef50_UPI0003F0B2FB PREDICTED 1.86557023648e-08 1.37006703648e-07 47779751.5481 +UniRef50_Q88J89 Ribose transport permease protein, putative 6.76950966375e-06 8.56233185307e-06 723784318.231 +UniRef50_P43531 Inner membrane transport protein YnfM 3.62628754461e-05 6.19785889069e-06 -12137616122.7 +UniRef50_UPI00027FC17F 1.05325272845e-07 2.33585255724e-06 900491236.356 +UniRef50_G1XXP0 Transposase 4.17486879282e-06 2.2276676701e-06 -786108988.087 +UniRef50_UPI000471C1F1 hypothetical protein, partial 1.20853927633e-07 7.84337968328e-08 -17125527.3576 +UniRef50_M9VD06 UvrD REP helicase 1.14025437615e-06 5.27992133776e-05 20855355675.6 +UniRef50_A5UJE9 Predicted ATPase 2.30159850064e-05 1.61060692165e-05 -2789617798.58 +UniRef50_Q2N696 1.05360291355e-06 6.43522441542e-06 2172626640.23 +UniRef50_F0KNV9 Acyl CoA dehydrogenase 2.29834539741e-06 6.81535197805e-05 26586542032.3 +UniRef50_UPI0004736CBD membrane protein, partial 1.3592247715e-06 2.26640074328e-06 366238072.109 +UniRef50_U3SV04 3.22349338654e-05 2.21209138337e-05 -4083153999.78 +UniRef50_C2ESX2 3.99100578701e-06 2.36470547981e-06 -656557390.966 +UniRef50_C3BKL0 ABC transporter 7.87893729103e-05 7.27865306427e-06 -28869755137.0 +UniRef50_O27283 Fibrillarin like rRNA tRNA 2 O methyltransferase 1.36328801208e-05 2.89526181564e-06 -4334908275.2 +UniRef50_W0EAD6 HAD family hydrolase 4.34842847951e-06 4.04543431768e-06 -122322461.287 +UniRef50_UPI0004710EDE hypothetical protein 1.90475012029e-07 7.38127436134e-07 221094004.062 +UniRef50_N5R5Q8 3.73748503814e-06 6.15243135819e-06 974943464.128 +UniRef50_Q3BRW8 1 deoxy D xylulose 5 phosphate synthase 8.76105585201e-06 4.40606900191e-05 14250895488.5 +UniRef50_UPI000369DDA4 hypothetical protein 1.30381858997e-07 4.86985554716e-08 -32976552.0001 +UniRef50_F7YLR6 1.3010858115e-07 9.61388285439e-07 335597817.571 +UniRef50_U3SVV6 2 3 dephospho CoA 0.000111368347657 1.17940697512e-05 -40199357904.4 +UniRef50_E3EMN0 Oxidoreductase, aldo keto reductase family 2.85717979776e-06 4.47078397209e-05 16895624976.3 +UniRef50_UPI0003B63C22 magnesium chelatase 9.85956391135e-08 2.73759937854e-07 70715976.909 +UniRef50_X5EKC8 Ferric alcaligin siderophore receptor 7.75656141421e-07 3.833703957e-05 15163991420.1 +UniRef50_P0AGA8 Transcriptional regulatory protein UhpA 1.79373257937e-05 3.39772099241e-05 6475498054.95 +UniRef50_E4D778 6.46679036737e-07 1.32490597001e-05 5087735722.42 +UniRef50_R7IGH5 2.45494199713e-07 8.36761924367e-07 238702036.114 +UniRef50_Q9RSP4 5.4874375358e-06 0.000484260994899 1.9328676032e+11 +UniRef50_UPI0001BF71FE hypothetical protein SMAC_09973 5.48887263285e-07 5.034278494e-07 -18352523.2351 +UniRef50_A7X4U4 ATP synthase gamma chain 0.000193777626299 3.07049177465e-05 -65834453570.0 +UniRef50_Q6A674 4.62227741456e-06 0.000103961208688 40104345580.8 +UniRef50_P77619 UPF0214 protein YfeW 2.7173400256e-05 6.5056967571e-06 -8343805523.75 +UniRef50_P32134 4.08290859028e-05 6.04921056402e-06 -14041062471.3 +UniRef50_C1KWD9 Bifunctional protein PyrR 1.48652291857e-05 5.11312006677e-05 14641017720.8 +UniRef50_F0KEU9 8.81739632676e-06 6.21446563328e-05 21528869263.5 +UniRef50_P18185 Carbamoyl phosphate synthase arginine specific large chain 1.73131198462e-07 1.20900412456e-07 -21086209.2544 +UniRef50_Q4UYN4 NAD NADP dependent betaine aldehyde dehydrogenase 1.63439717145e-05 4.72835792305e-06 -4689365827.2 +UniRef50_P32139 1.94063410902e-05 9.4917395303e-06 -4002646315.57 +UniRef50_UPI0004713D39 phenylacetic acid degradation protein 1.68709211814e-07 3.23779767256e-07 62603886.1616 +UniRef50_J0BXE7 Plasmid pRiA4b ORF 3 like protein 6.45506213359e-06 1.29501792169e-06 -2083173169.21 +UniRef50_Q3JLT3 DGPF domain protein 4.15271819029e-07 2.75652923013e-07 -56365861.6382 +UniRef50_G7MBY5 ABC transporter related protein 5.25683569173e-06 1.04941685076e-05 2114375527.07 +UniRef50_N4Y922 Phosphatidylglycerol lysyltransferase 2.83523710223e-05 7.77707978657e-06 -8306497559.07 +UniRef50_G7SA54 Phosphodiesterase, MJ0936 family 1.6571318731e-05 7.26608207777e-05 22644020271.8 +UniRef50_H8GT24 Transpeptidase transglycosylase component 3.95549412039e-07 0.00026598505383 1.07221742083e+11 +UniRef50_UPI0004761F50 iron ABC transporter ATP binding protein 2.55081907644e-07 2.48588890709e-07 -2621310.61494 +UniRef50_Q0BVN0 Chorismate synthase 9.12599145581e-08 5.35548258598e-07 179364656.52 +UniRef50_Q9K411 4.62370076349e-08 5.67264472049e-06 2271449837.47 +UniRef50_F2TZ40 3.26364463138e-07 1.04767823075e-07 -89461282.89 +UniRef50_B7I864 TonB dependent receptor 1.64949447163e-06 7.64567868927e-05 30200621939.1 +UniRef50_C5N344 0.000103244218326 1.94914795886e-05 -33812008390.0 +UniRef50_UPI00046610C2 sugar ABC transporter ATP binding protein 1.75617902777e-07 5.44454279931e-07 148903771.588 +UniRef50_C5N340 0.000118924899102 5.06579563768e-05 -27560202507.8 +UniRef50_UPI00037883B0 hypothetical protein, partial 1.34787958167e-07 2.54784673162e-07 48444146.3688 +UniRef50_P0AF43 2.91307960366e-05 5.45657673805e-06 -9557572846.18 +UniRef50_Q35826 Cytochrome c oxidase subunit 3 1.8949671013e-07 5.54568853989e-07 147384104.415 +UniRef50_T9JSA5 DNA binding transcriptional activator 2.07845350801e-05 5.106351326e-06 -6329475174.48 +UniRef50_K2KB78 Chemotactic signal response protein 1.37868744676e-06 7.64906984008e-07 -247790704.746 +UniRef50_Q47KH4 Phosphoribosylaminoimidazole succinocarboxamide synthase 2.07017677382e-07 6.80401561879e-06 2663289023.22 +UniRef50_G8PRB6 TRAP dicarboxylate transporter, DctM subunit 6.00443695741e-08 5.04354526996e-08 -3879237.65691 +UniRef50_Q3IUZ1 Phytochrome sensor diguanylate cyclase phosphodiesterase 0.000260999277124 5.16613635614e-05 -84512284570.5 +UniRef50_I0JA88 9.53694581898e-05 2.00871636663e-05 -30392386116.8 +UniRef50_Q5XL59 Hypothetical 18.9 kDa protein 1.79476162812e-06 3.34402783705e-05 12775683443.1 +UniRef50_A7GHG0 CBS domain protein 1.07227235935e-05 2.98802737126e-06 -3122591780.31 +UniRef50_A4WNP3 2.97398942163e-06 5.65773370924e-06 1083460502.15 +UniRef50_R8ZFM2 Two component sensor 1.20859975083e-06 6.58107476811e-06 2168934092.16 +UniRef50_Q9RU62 Transcription repair coupling factor 7.86217276021e-07 0.000348094669499 1.40212684116e+11 +UniRef50_I3WYQ6 5.91048949949e-06 6.16323989078e-07 -2137319583.27 +UniRef50_H1GBP2 LPXTG motif protein cell wall anchor domain protein 3.05704068959e-08 8.1796823781e-08 20680733.1153 +UniRef50_UPI000262662B hypothetical protein 2.33110112305e-07 2.25728317477e-07 -2980121.15687 +UniRef50_B7Z2X9 Gamma enolase 4.38507394313e-08 5.3594191671e-07 198663246.905 +UniRef50_UPI00029A8E8E type I restriction enzyme EcoKI subunit R 2.43580403619e-07 7.32568557903e-07 197410518.444 +UniRef50_UPI0003C15755 5.77138047469e-07 9.5558275409e-08 -194419663.629 +UniRef50_H9K7J8 5.23055377949e-07 8.22754570197e-07 120992241.633 +UniRef50_P52228 Thioredoxin C 3 7.21310806725e-06 4.78031232762e-05 16386687235.3 +UniRef50_Q3J3B6 0.000112881011445 3.30605728405e-05 -32224490571.6 +UniRef50_D4HE60 Release factor glutamine methyltransferase 2.72225472725e-06 5.61082195645e-05 21552569124.3 +UniRef50_Q2YZ40 0.000299067150563 3.53138383334e-05 -1.06480448764e+11 +UniRef50_UPI0003B3D851 single stranded DNA binding protein 2.3110364842e-07 1.22673890481e-05 4859196117.69 +UniRef50_Q8Z8E5 Putative potassium transporting ATPase B chain 3.91929844405e-06 2.00251254745e-05 6502120012.9 +UniRef50_Q9ZKX5 Catalase 2.06534462778e-07 4.25760537813e-05 17105094881.3 +UniRef50_Q9PIN2 Zinc transporter ZupT 5.7333945718e-05 4.96330596971e-06 -21142669926.4 +UniRef50_D3DZ70 Methanogenesis marker protein 17 3.51478486697e-05 1.08846967428e-05 -9795332175.25 +UniRef50_UPI000299EEED hypothetical protein, partial 3.61599541858e-07 6.70594975514e-07 124745248.367 +UniRef50_Q2SDW0 Nucleoside diphosphate kinase 0.000233934192389 0.000334221804605 40487339719.0 +UniRef50_Q6F945 1.33387275209e-06 7.07230063586e-05 28013244737.4 +UniRef50_E8U988 Acetylornithine acetyl lysine aminotransferase 3.58586488294e-06 0.000438784058726 1.75694851337e+11 +UniRef50_F9YXA3 Succinate dehydrogenase cytochrome b subunit, b558 family 2.06276496643e-06 3.58859618098e-05 13654839623.0 +UniRef50_E3L9A9 1.52261947778e-07 9.34832347121e-06 3712562885.37 +UniRef50_V4STF9 Ribosomal RNA small subunit methyltransferase E 8.52342509105e-07 4.16300354319e-07 -176035568.726 +UniRef50_S6AEF9 2.06407606422e-08 1.16355605131e-07 38641257.2734 +UniRef50_F4A619 GTPase HflX 6.85961470786e-06 2.52369536673e-05 7419157253.22 +UniRef50_T1Y9P7 UDP N acetylmuramoylalanyl D glutamate 2, 6 diaminopimelate ligase 0.000233279798183 4.90515711121e-05 -74375196003.1 +UniRef50_B2HZE1 Enoyl CoA hydratase carnithine racemase 1.81483648491e-06 5.57309594397e-05 21766600462.1 +UniRef50_I3US46 Major facilitator superfamily metabolite H symporter 8.08792312943e-06 1.69209626092e-05 3566006431.57 +UniRef50_UPI00037E89DC hypothetical protein 7.14083568516e-08 4.15666081368e-07 138981067.904 +UniRef50_A7FQL2 UPF0313 protein CLB_0243 6.53346308239e-06 9.64183671603e-06 1254888579.93 +UniRef50_P75915 Chaperone protein YcdY 9.42729514805e-05 2.14719755147e-05 -29390647365.8 +UniRef50_B6IPB9 2.36411963307e-06 2.96207677396e-06 241402635.537 +UniRef50_UPI00036011C5 hypothetical protein 3.16710447754e-07 2.66460758575e-07 -20286416.1546 +UniRef50_S5CU75 Transposase like protein 7.7852784729e-06 0.000314762031902 1.23930282388e+11 +UniRef50_I6XPP6 Methylmalonyl CoA carboxyltransferase 5S subunit 2.18373341773e-06 7.42929790072e-05 29111387324.4 +UniRef50_UPI0003B33B7C DNA binding protein 8.99997087647e-07 4.42620591987e-07 -184648503.939 +UniRef50_UPI0003625CBC hypothetical protein 4.23940390441e-08 5.516798263e-07 205604921.955 +UniRef50_A3PJ50 Binding protein dependent transport systems inner membrane component 6.74855654504e-05 2.41732637264e-06 -26268846592.8 +UniRef50_C9SAM1 Ribosomal RNA processing protein 1.69805020269e-08 3.03420016623e-07 115639147.051 +UniRef50_UPI000368DEE4 hypothetical protein 1.12694511577e-06 7.41567422137e-05 29483025264.8 +UniRef50_UPI00029B09D5 CRISPR associated protein Csn1 1.33650924617e-07 1.33988849048e-06 486972907.537 +UniRef50_Q7MWR7 CTP synthase 7.48871386247e-08 1.45450787295e-06 556969820.299 +UniRef50_T1XRQ5 Teichoic acid translocation ATP binding protein, putative 0.000101175444633 1.66715129561e-05 -34115274197.8 +UniRef50_I7ENI8 Thioesterase like protein 5.77768651925e-05 1.2423760577e-05 -18309604878.5 +UniRef50_A0A021DBD0 D isomer specific 2 hydroxyacid dehydrogenase 1.13023091057e-05 2.20943414517e-05 4356875891.21 +UniRef50_UPI00046F8C7A membrane protein 1.11345038176e-06 1.67883185584e-06 228251439.097 +UniRef50_A5UNS3 Putative ATPase 2.20288974861e-05 5.15403077341e-06 -6812590769.82 +UniRef50_M9RKI3 1.45922941448e-06 1.09442436054e-06 -147276276.937 +UniRef50_T0C715 Thioesterase family protein 2.1844247618e-07 7.78460223752e-06 3054551542.87 +UniRef50_D8JFV1 2.96454965064e-06 3.52742596194e-05 13043826399.1 +UniRef50_Q5HQT4 0.000284274996944 2.13090672396e-05 -1.06162572776e+11 +UniRef50_UPI0004412F07 mitochondrial ribosomal protein subunit L2 2.3885510543e-07 1.03551053693e-06 321619573.758 +UniRef50_P37344 Psp operon transcriptional activator 2.94006308441e-05 7.71038796131e-06 -8756617221.0 +UniRef50_C6CXV0 D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein 1.5222163604e-05 7.56144430105e-06 -3092726390.2 +UniRef50_Q8CQM7 0.000228228880897 2.43614402236e-05 -82303787534.5 +UniRef50_A1SM80 Biotin synthase 5.03400278712e-08 1.35953500361e-06 528538077.335 +UniRef50_A5UKE2 6.5112586955e-05 4.45201063114e-06 -24489419050.9 +UniRef50_A6LZ61 Aldose 1 epimerase 1.16989459351e-06 2.01414771985e-05 7659060705.14 +UniRef50_UPI0003B60CB5 hypothetical protein 2.83494797071e-08 1.29827551119e-07 40967942.705 +UniRef50_C7Q9W5 4.4257978224e-08 9.07632254461e-06 3646355301.35 +UniRef50_UPI00046D8C08 hypothetical protein 7.53665221244e-08 3.08935621506e-07 94294711.6357 +UniRef50_UPI000382B4D1 hypothetical protein 8.84253717243e-07 2.19581178471e-07 -268336460.352 +UniRef50_Q7NZP2 Sigma B regulator protein 2.01521892731e-07 3.51410074234e-05 14105499064.4 +UniRef50_Q6AAT0 Cysteine tRNA ligase 1.70699117237e-07 9.131389373e-05 36795626118.0 +UniRef50_G7LXC6 Lytic transglycosylase catalytic 1.99378826523e-06 1.19699234837e-05 4027488208.64 +UniRef50_E9KNQ0 Truncated transposase 6.58405794513e-06 2.01718554824e-05 5485560606.83 +UniRef50_UPI000467240F hypothetical protein 6.34126140502e-08 6.96436251715e-08 2515535.65277 +UniRef50_Q48677 Glutamyl aminopeptidase 4.68701067804e-05 7.06323293218e-05 9593100835.22 +UniRef50_UPI000474A2DB MarR family transcriptional regulator 7.52274713467e-06 3.87300634803e-06 -1473445142.92 +UniRef50_A6M168 Diguanylate cyclase 1.34177484187e-06 2.07813613061e-05 7847999606.15 +UniRef50_O27596 Tungsten formylmethanofuran dehydrogenase, subunit H 7.04285182393e-05 5.09166733097e-06 -26377288485.0 +UniRef50_F0YIK7 Expressed protein 4.00260814062e-07 2.95200521756e-07 -42414129.2387 +UniRef50_UPI00032995A5 1.26546153199e-07 6.82935670758e-08 -23517283.8576 +UniRef50_Q9RXU7 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1.71404197684e-06 0.000221185688458 88603396904.3 +UniRef50_E8U9D7 Nicotinate phosphoribosyltransferase 1.63710997586e-06 6.67309409105e-05 26279178339.4 +UniRef50_UPI00046D1D34 hypothetical protein 1.40616078349e-07 7.59358288535e-07 249793823.073 +UniRef50_A5W7R4 Regulatory inactivation of DnaA Hda protein 1.02080861635e-05 2.55685459043e-06 -3088896077.22 +UniRef50_UPI00047D437C cobalamin adenosyltransferase 1.04713333894e-07 2.27572033356e-07 49599564.6186 +UniRef50_A3PR78 Peptidase S15 5.80205829008e-05 2.07092641532e-05 -15063037239.8 +UniRef50_A9MUH4 1.22576233285e-06 2.61458220516e-06 560683625.188 +UniRef50_B7V7M2 Cysteine synthase 1.23382869724e-05 3.03407573826e-06 -3756224250.73 +UniRef50_P76113 NADPH dependent curcumin reductase 9.35060730476e-05 3.23517155805e-05 -24688764557.8 +UniRef50_L8ND35 Sigma 54 dependent transcriptional regulator 7.8768567052e-06 7.40862020711e-06 -189032820.187 +UniRef50_UPI00041D3C43 chromosomal replication initiation protein 4.45101593999e-08 5.31462451219e-08 3486493.78266 +UniRef50_B9TKF4 4.63161329974e-06 9.61149009716e-06 2010437373.08 +UniRef50_K5DHJ7 1.89680917929e-06 5.71981571475e-07 -534849162.736 +UniRef50_UPI00037794A5 hypothetical protein 3.31128060398e-06 3.86775464603e-05 14277795519.1 +UniRef50_G7UA09 Glycosyl hydrolase family 38 N terminal domain protein 3.62850998621e-07 6.89659070384e-05 27695895577.4 +UniRef50_D7HX96 Acetate permease ActP 2.14291167934e-05 9.43600812013e-06 -4841765143.4 +UniRef50_G8LP59 YdiK 3.24415046484e-06 1.71695758841e-06 -616546504.979 +UniRef50_UPI000255BF67 heptaprenyl diphosphate synthase subunit II 2.90601839633e-07 4.37765018523e-07 59411581.2132 +UniRef50_UPI0002DAB67A hypothetical protein 4.51598789486e-07 1.79975945704e-07 -109657475.222 +UniRef50_V5NNB3 Iron regulated outer membrane protein FrbP_1 1.09144223542e-06 2.39652893878e-05 9234452789.09 +UniRef50_Q0SPS1 DHH family protein 3.07896119172e-06 7.61014072865e-06 1829292782.88 +UniRef50_UPI00047BD1F1 methionine gamma lyase 2.59735525887e-07 7.23317633179e-08 -75657198.6519 +UniRef50_F9FAZ9 ATP dependent Clp protease proteolytic subunit 2.54484936301e-06 8.89409481707e-06 2563268303.81 +UniRef50_A8LSJ7 Fe S metabolism associated SufE 7.94794355656e-06 7.1323222442e-07 -2920741744.68 +UniRef50_A5UMA7 1.7447023499e-05 2.02861426839e-05 1146187254.85 +UniRef50_UPI0003628360 hypothetical protein 4.91017747414e-07 1.33407276149e-07 -144371735.624 +UniRef50_A5UL43 Oligosaccharyl transferase, STT3 subunit 3.73692515796e-05 1.12732882079e-05 -10535260646.6 +UniRef50_UPI000470DB6F hypothetical protein, partial 7.87580963672e-08 1.63779145671e-07 34324040.9295 +UniRef50_E3D3R3 LPS biosynthesis protein related protein 1.03044400964e-06 2.14631090103e-05 8248917597.78 +UniRef50_A6M109 Auxin Efflux Carrier 1.2653161638e-06 1.05118232833e-05 3732928391.54 +UniRef50_Q03JU0 Transposase 0.000279697671823 0.000140827310523 -56063668987.8 +UniRef50_K6X7D8 2.73979409355e-06 1.04865045787e-06 -682735438.39 +UniRef50_D2NRJ6 Molybdopterin guanine dinucleotide biosynthesis protein A 4.18064878025e-08 1.82094986351e-07 56636188.3977 +UniRef50_D4GB36 FeS assembly ATPase SufC 7.58052080383e-06 8.67666143222e-06 442525422.839 +UniRef50_E6NPZ4 Methyl accepting chemotaxis protein 1.38388326188e-06 5.60959451001e-05 22087930756.6 +UniRef50_Q56954 Chelated iron transport system membrane protein YfeC 4.66394107148e-05 1.16953026281e-05 -14107365247.0 +UniRef50_P24216 Flagellar hook associated protein 2 2.17127191781e-05 2.02180037365e-05 -603434965.995 +UniRef50_X5EK07 6.17564031299e-07 2.01999711568e-06 566179445.953 +UniRef50_A0A011NP07 4 alpha glucanotransferase 1.81349195652e-07 7.76063703528e-06 3059851509.18 +UniRef50_P45682 Lipoprotein NlpD LppB homolog 6.0916906941e-06 4.1601110431e-06 -779802408.256 +UniRef50_I6T6E7 4.76411949327e-05 1.75296451659e-05 -12156402151.1 +UniRef50_G7I860 NADH ubiquinone oxidoreductase chain 3.92025421638e-07 1.15111400054e-06 306453374.367 +UniRef50_O00217 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 7.6099688775e-07 1.0561909728e-07 -264584056.403 +UniRef50_U3T764 4.42366393186e-06 1.66037704991e-05 4917258487.89 +UniRef50_Q6VRN6 Cag17 2.58257232969e-06 1.53093308729e-05 5137948598.78 +UniRef50_A6TBU8 L rhamnonate dehydratase 2.22307400377e-05 1.6528920067e-06 -8307529768.71 +UniRef50_UPI0003B65FB6 MULTISPECIES 1.45228010701e-07 3.04929786187e-07 64473566.5249 +UniRef50_UPI00042B11A5 Urease isoform 4 1.13374397336e-07 2.37308179848e-07 50033588.8386 +UniRef50_A6M2F4 Response regulator receiver protein 1.74430559477e-06 1.61400728783e-05 5811747908.28 +UniRef50_Q3IV75 RES domain containing protein 0.000178043113312 2.44403832052e-05 -62011307061.7 +UniRef50_A3PRF6 D amino acid dehydrogenase small subunit 6.04843248227e-06 1.31841646354e-05 2880782635.5 +UniRef50_C6ST78 Serine protease 5.92238070429e-05 5.19222251743e-05 -2947738200.84 +UniRef50_A3LGR5 Hypothetical 1.55380294453e-06 6.85413025425e-07 -350579666.685 +UniRef50_F9V7S5 Metallo beta lactamase superfamily protein 5.69590026432e-05 1.52106934186e-05 -16854304743.3 +UniRef50_A6M2T3 Phosphotransferase system, EIIC 3.34460340093e-06 2.62156722985e-05 9233331173.54 +UniRef50_UPI0002B42FAD PREDICTED 4.22558942747e-06 3.57040782652e-07 -1561780560.34 +UniRef50_A3PXZ4 Uridylate kinase 3.41640384292e-06 2.58387222873e-05 9052165108.79 +UniRef50_UPI0004654176 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.47244038159e-06 4.14910713246e-06 676890942.341 +UniRef50_Q9RXQ2 Pyruvate dehydrogenase E1 component 4.43579305384e-07 0.000448182921925 1.80757866995e+11 +UniRef50_E6SJV1 TRAP transporter solute receptor, TAXI family 1.22505073205e-07 1.00790741798e-07 -8766342.05382 +UniRef50_UPI0003D0B25A PREDICTED 2.88208036847e-07 5.24802227491e-07 95515978.1002 +UniRef50_A7HWY8 3.02691333502e-07 3.8924509416e-07 34942815.3117 +UniRef50_D3V7P4 Multidrug resistance protein MdtC 1.93114069126e-05 4.09765965806e-06 -6141976460.31 +UniRef50_Q57251 Putative L lactate permease 3.05670500108e-06 2.82951903646e-05 10189086252.3 +UniRef50_UPI0003B7A308 MarR family transcriptional regulator 1.33705663331e-07 2.29161791458e-07 38536810.3033 +UniRef50_A9WNC8 ATP synthase subunit beta 1.54715557594e-07 0.00011927164214 48088964990.2 +UniRef50_UPI0003B39EAE riboflavin synthase subunit alpha 7.36331468547e-08 2.41756831109e-07 67873594.4429 +UniRef50_UPI000414CEF0 ATP dependent DNA helicase PcrA 1.94945348971e-07 9.74496669216e-08 -39360203.2499 +UniRef50_A1AZE4 Nucleoside ABC transporter membrane protein 3.35986080682e-05 8.01525340307e-06 -10328314221.4 +UniRef50_Q8TV83 Imidazole glycerol phosphate synthase subunit HisH 2.31354705405e-07 9.2068392276e-08 -56231593.8454 +UniRef50_UPI0003B6B799 diguanylate cyclase 8.50124020438e-08 7.37682655156e-08 -4539395.89751 +UniRef50_Q8DYL9 Glycosyl transferase, family 8 4.31772176499e-06 1.47290127271e-06 -1148488942.61 +UniRef50_E9CIL8 5.6379384589e-07 7.59494312532e-07 79006679.8982 +UniRef50_P10367 Histidine biosynthesis bifunctional protein HisIE 1.56204051043e-05 2.43912204065e-05 3540885767.51 +UniRef50_UPI0003714C23 hypothetical protein 3.9018741801e-07 7.49156200146e-07 144920102.391 +UniRef50_UPI0003C73FC0 phosphonate ABC transporter 1.49258751354e-06 4.33446972257e-07 -427588033.631 +UniRef50_C1DGV0 Glycosyl transferase, group 1 9.98640182185e-07 1.56252224977e-06 227646110.295 +UniRef50_UPI000375CFC4 hypothetical protein 1.45747741208e-06 3.65044550793e-07 -441028551.761 +UniRef50_B7V1T0 Urease subunit beta 7.74442616791e-07 3.83477205946e-07 -157837534.043 +UniRef50_O34742 Glycine betaine carnitine choline transport system permease protein OpuCD 0.000321664789188 0.000138296580657 -74027995964.9 +UniRef50_UPI000369F7C5 hypothetical protein 4.51016515952e-08 1.31523064377e-07 34889384.85 +UniRef50_Q39BJ9 1.48169841899e-06 2.29293596738e-07 -505611195.478 +UniRef50_D0DDW6 Replication protein C 2.25084197754e-06 6.41021940809e-07 -649904103.541 +UniRef50_D6SCB4 ABC transporter, ATP binding protein 0.000202443875171 5.80152135911e-05 -58307623018.8 +UniRef50_X6K2H2 2.45083691684e-06 5.51731384167e-07 -766692208.184 +UniRef50_X0W523 Marine sediment metagenome DNA, contig 8.18740114287e-08 9.79476848199e-08 6489139.19418 +UniRef50_P31679 Putative metabolite transport protein YaaU 2.41754832124e-05 9.5388903908e-06 -5908972133.27 +UniRef50_V9GEY6 Selenophosphate dependent tRNA 2 selenouridine synthase 3.06716317192e-07 2.45371921675e-07 -24765485.2506 +UniRef50_A0A023SIR8 rRNA methyltransferase 7.45848439018e-05 4.67557966167e-05 -11234927889.8 +UniRef50_UPI00028947D1 hypothetical protein 3.85401552572e-07 1.59736840924e-07 -91103613.3097 +UniRef50_UPI0002F02B73 5 oxopent 3 ene 1,2,5 tricarboxylate decarboxylase 9.82375172877e-08 2.41477877312e-07 57827891.0986 +UniRef50_A9BDW2 Na+ melibiose symporter 2.90166973169e-07 4.29910146347e-08 -99787967.6503 +UniRef50_Q9PDT5 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 9.69962373736e-05 3.48631515657e-05 -25083889199.4 +UniRef50_Q9UQ39 RNA binding protein 2.24666261322e-08 6.21310444839e-07 241760598.252 +UniRef50_Q8SDK3 Phi PVL orfs 18 19 like protein 0.000211207095346 3.99663406174e-05 -69131994044.5 +UniRef50_A6LR61 Diguanylate cyclase 4.20747673314e-06 8.42556314044e-06 1702893244.37 +UniRef50_A5CD22 UDP N acetylmuramate L alanine ligase 1.12271216127e-07 5.2136403565e-08 -24277161.7684 +UniRef50_UPI000374D78C hypothetical protein 1.4659643565e-07 1.02641043653e-07 -17745331.1425 +UniRef50_L5S2T2 2.9257635869e-07 5.3693946399e-06 2049573839.69 +UniRef50_A5UN24 Adhesin like protein 2.70584962373e-05 8.54616689923e-06 -7473654525.62 +UniRef50_UPI0003EB198B lactoylglutathione lyase, partial 3.83168756012e-06 1.83207817571e-06 -807266846.453 +UniRef50_D4YPZ1 4.62201281565e-07 1.51833781585e-06 426375279.142 +UniRef50_UPI000381F0C9 resolvase 5.45648423422e-07 2.78080083112e-07 -108020622.416 +UniRef50_A9GRS6 5.34334130212e-08 3.21385808935e-06 1275902224.61 +UniRef50_Q4QKB5 Dihydroorotate dehydrogenase 9.9026317861e-08 1.66783081622e-07 27354236.9993 +UniRef50_UPI00042C50B5 PREDICTED 2.55460648813e-07 1.21628143044e-06 387895140.14 +UniRef50_UPI00041CB2A5 MerR family transcriptional regulator 2.37609763645e-06 3.23594432694e-07 -828620730.405 +UniRef50_B6YRL9 Dihydroorotate dehydrogenase B ), catalytic subunit 4.49005832347e-06 1.18517636385e-05 2972010773.96 +UniRef50_Q0VMD0 Biotin synthase 2.17654548435e-05 1.9128712217e-05 -1064485354.79 +UniRef50_UPI000479EB6C phosphohydrolase 4.3341075591e-08 1.32591091416e-07 36031326.6094 +UniRef50_W4UE45 Hypothetical membrane protein 4.50633543808e-07 2.58453622052e-06 861482696.518 +UniRef50_Q1C165 Phosphopentomutase 2.97725561472e-05 4.11712695375e-06 -10357411592.9 +UniRef50_I6XSN2 Peptidase, M50 family 2.5927090726e-06 5.09547304371e-05 19524341493.6 +UniRef50_W0EW28 Fe S metabolism protein SufE 3.56118085066e-07 9.91079264076e-06 3857339367.17 +UniRef50_UPI00047DC7BF hypothetical protein 5.22788846945e-08 1.11036602501e-07 23721211.7168 +UniRef50_UPI00037BA2E6 hypothetical protein 5.75506280517e-08 1.24632472179e-07 27081763.661 +UniRef50_B0LU82 Putative plasmid transfer protein 1.19565724987e-07 2.80863970495e-07 65118081.0636 +UniRef50_R8X1X2 1.40563411964e-05 2.35322099157e-06 -4724693240.11 +UniRef50_UPI000299FFB6 50S ribosomal protein L6 1.04711803038e-07 3.58799137379e-06 1406242707.36 +UniRef50_UPI00036AB26C hypothetical protein 3.68578667178e-07 1.76241611038e-07 -77648829.8048 +UniRef50_A4STH4 Anaerobic nitric oxide reductase flavorubredoxin 9.61559888062e-06 3.0097559384e-06 -2666859858.58 +UniRef50_F2MTI0 3 dehydroquinate synthase 5.65285676654e-05 3.81054422471e-05 -7437641808.54 +UniRef50_Q6L8K7 Acetyl CoA acetyltransferase 1.14451936074e-07 9.38261325791e-07 332581959.907 +UniRef50_UPI00047E7907 membrane protein 7.78875803448e-08 1.22268826552e-07 17917253.713 +UniRef50_F6BN92 Tetracycline transcriptional regulator YcdC domain containing protein 0.000148694259993 3.21942413994e-05 -47032487122.4 +UniRef50_P50096 Inosine 5 monophosphate dehydrogenase 1 2.22252970972e-07 9.593921748e-08 -50994412.3288 +UniRef50_UPI0003B755F7 integrase, partial 3.02300534386e-06 1.54252667425e-07 -1158150659.03 +UniRef50_M1N659 Diguanylate phosphodiesterase 1.62011154012e-06 2.97050328755e-06 545169719.608 +UniRef50_P0AEA4 Curli production assembly transport component CsgG 2.99335305764e-05 8.51875111142e-06 -8645409258.92 +UniRef50_Q9RXZ7 9.01622545675e-07 0.000149264844492 59896053321.1 +UniRef50_A0A024E690 8.80749289374e-07 1.1709621389e-07 -308296117.65 +UniRef50_Q16740 ATP dependent Clp protease proteolytic subunit, mitochondrial 5.74951822303e-08 6.30203818348e-07 231209504.326 +UniRef50_UPI00046321A5 hypothetical protein 4.55273926335e-07 1.1131607706e-07 -138860004.59 +UniRef50_E8NEK5 1.10318091125e-07 2.11398089243e-07 40807235.6313 +UniRef50_A8NPH0 8.89217692499e-08 7.66275507963e-08 -4963326.85674 +UniRef50_UPI00041CFDCE hypothetical protein 7.79283912875e-07 6.69724403366e-07 -44230518.4352 +UniRef50_Q2GK85 Malate dehydrogenase 1.90186025744e-07 1.67353528245e-07 -9217759.4266 +UniRef50_Q4TCA6 Chromosome 1 SCAF7036, whole genome shotgun sequence. 9.36006871689e-08 3.40699686329e-07 99756898.2066 +UniRef50_Q9ZL74 Molybdenum cofactor guanylyltransferase 2.03313818048e-06 3.05284140119e-05 11503892529.5 +UniRef50_Q6G5Z1 Putative ABC transporter ATP binding protein SAS2569 0.000120344093833 6.43679198147e-05 -22598268356.1 +UniRef50_Q9RV79 tRNA 2 methylthio N dimethylallyladenosine synthase 1.00484291618e-06 0.000370931619179 1.49343979089e+11 +UniRef50_O82392 Phosphomethylpyrimidine synthase, chloroplastic 8.57273252495e-07 0.000350158556472 1.41017214445e+11 +UniRef50_UPI0003C10FC0 1.78071968861e-07 6.56615753094e-08 -45381455.3076 +UniRef50_M9S4J7 3.31236656831e-06 5.61921379301e-06 931302532.81 +UniRef50_Q5ZW64 Flagellar P ring protein 3.58054901382e-05 9.38689870759e-06 -10665509553.1 +UniRef50_UPI000378C9B2 hypothetical protein 8.79989050976e-07 1.11661033964e-07 -310183448.913 +UniRef50_Q1CEX0 UPF0301 protein YPN_3133 6.02198628879e-05 1.50680740527e-07 -24250665964.7 +UniRef50_J9YRU2 8.53669101669e-06 2.6565220857e-06 -2373896355.23 +UniRef50_U5DDJ2 TRAP transporter solute receptor, TAXI family 6.7085528789e-08 4.46587138785e-07 153209456.964 +UniRef50_K2FX44 1.04065324232e-07 1.92631149696e-07 35755110.5647 +UniRef50_J2LA76 6.24867057649e-06 1.61976962407e-06 -1868744117.49 +UniRef50_UPI00046889D2 hypothetical protein 1.1641202422e-07 3.20591483159e-07 82429753.1374 +UniRef50_UPI00022CA944 PREDICTED 3.4286044744e-08 5.38475288585e-08 7897211.18343 +UniRef50_X7UD14 Protein dipZ 2.88991320424e-07 2.18035387061e-07 -28645781.0259 +UniRef50_UPI00032895ED PREDICTED 1.74716485148e-07 1.20190595637e-06 414688994.564 +UniRef50_UPI00037FC52E hypothetical protein 3.86661336639e-07 1.47342387998e-07 -96615996.3401 +UniRef50_A3CP60 Glycosyl transferase, putative 4.28442162741e-05 1.42725195492e-05 -11534744582.0 +UniRef50_B7I7I0 3.12833692416e-06 0.00019301652821 76660193012.3 +UniRef50_A6LZA6 Histidine kinase 1.29423767612e-06 6.14169981592e-06 1956979950.89 +UniRef50_UPI00046EE93F hypothetical protein 7.11566646712e-07 1.55098193054e-07 -224653143.378 +UniRef50_P9WJQ4 Molybdopterin molybdenumtransferase 2 8.88466524069e-08 9.43675917654e-08 2228870.96857 +UniRef50_F5M4L1 5.67822872047e-06 3.91147953907e-06 -713258324.982 +UniRef50_Q1GGT9 Phosphoribosyl AMP cyclohydrolase 1.52229105705e-07 6.03250440327e-07 182082847.441 +UniRef50_C3P5A0 Demethylmenaquinone methyltransferase 0.000203666966326 2.95066781167e-05 -70310645537.0 +UniRef50_Q5ZI49 Ribose phosphate pyrophosphokinase 2 3.19824680549e-07 6.28074264308e-07 124444139.611 +UniRef50_A5UKS7 Transcriptional regulator, MarR family 5.01779224744e-05 1.18830996847e-05 -15460089890.5 +UniRef50_UPI00046A6374 hypothetical protein 5.3870991382e-07 1.55306631778e-07 -154784609.848 +UniRef50_H7KDR0 Anaphase promoting complex, cyclosome, subunit 3 family protein 1.39140239876e-07 2.49563412836e-06 951345500.211 +UniRef50_F2E8Q7 Predicted protein 1.53109943174e-07 2.36616231369e-07 33712513.2817 +UniRef50_UPI00047AC4C6 hypothetical protein 2.85618335366e-07 7.11462876788e-07 171918667.072 +UniRef50_G2Z8U2 2.01781779603e-07 6.73676653338e-06 2638253538.38 +UniRef50_Q12MN3 Putative phosphoenolpyruvate synthase regulatory protein 4.05184212668e-07 3.72121888164e-07 -13347666.1226 +UniRef50_UPI0002FA2625 hypothetical protein 2.13524444971e-07 7.37194517195e-07 211412034.311 +UniRef50_F0I702 5.79265807114e-07 1.04018592072e-07 -191863132.652 +UniRef50_X1JCC9 Marine sediment metagenome DNA, contig 1.43157408247e-07 6.88027091407e-08 -30017904.464 +UniRef50_UPI0003609B11 hypothetical protein 3.00375648912e-07 1.76018516112e-06 589343013.956 +UniRef50_K2JK23 2.31465442468e-07 4.02520604098e-07 69057067.8329 +UniRef50_Q6G930 Probable glycine dehydrogenase subunit 1 0.000225153263841 5.03067699706e-05 -70587675183.1 +UniRef50_L0IML0 ABC type nitrate sulfonate bicarbonate transport system, periplasmic component 4.52562708785e-06 2.75110471604e-05 9279496146.13 +UniRef50_A1IRX0 4.89225818179e-07 1.05554653855e-05 4063864439.97 +UniRef50_UPI00036605EC hypothetical protein 6.30043928863e-06 4.69643104098e-06 -647557812.971 +UniRef50_UPI00047AF6CE restriction endonuclease 1.81302153688e-08 1.20768417974e-05 4868249842.68 +UniRef50_Q6N535 ATP dependent Clp protease adapter protein ClpS 2 3.53893114548e-06 0.000151174027659 59602100149.1 +UniRef50_Q9LPW0 Glyceraldehyde 3 phosphate dehydrogenase GAPA2, chloroplastic 6.45801536053e-07 2.47912334726e-07 -160632753.225 +UniRef50_Q6AFK7 3 isopropylmalate dehydratase large subunit 0.000316638872649 0.000108507885029 -84025033756.6 +UniRef50_Q6AJF8 3 oxoacyl [acyl carrier protein] synthase 3 2.10522133563e-07 7.25092985071e-08 -55717475.12 +UniRef50_C7JHV1 Transposase 2.66064644591e-06 1.13716654793e-06 -615047530.015 +UniRef50_G7ZR43 0.00015951367075 5.81044614024e-05 -40940142244.7 +UniRef50_B1AJD3 Glycine tRNA ligase 0.000179432179669 7.51718549069e-05 -42091172524.5 +UniRef50_UPI0003C104A0 1.45480708843e-07 1.76372454175e-08 -51611975.0004 +UniRef50_B2TPY0 Vancomycin B type resistance protein VanW 2.75328181515e-06 9.48459646978e-06 2717514328.59 +UniRef50_Q9K0I2 Phosphoenolpyruvate synthase 3.0990344491e-05 0.000149928482711 48016785934.5 +UniRef50_G7U8X0 Drug resistance MFS transporter, drug 1.69349946022e-06 5.30116903656e-05 20717783413.5 +UniRef50_E6PX09 1.78820670491e-06 1.23541442614e-06 -223169026.464 +UniRef50_UPI000359A0D1 PREDICTED 2.33737811333e-08 4.1325560867e-07 157400078.165 +UniRef50_UPI0003698208 hypothetical protein 1.66806906883e-08 5.5997762392e-08 15872784.3215 +UniRef50_UPI0003B69E18 membrane protein 4.70523733846e-07 5.60016793901e-07 36129446.5475 +UniRef50_UPI0003B51B40 protein export membrane protein SecD, partial 3.65251948803e-08 1.09341001003e-07 29396634.4822 +UniRef50_Q893Q5 4 methyl 5 thiazole monophosphate biosynthesis enzyme 7.23380590955e-06 5.28925442146e-06 -785039298.072 +UniRef50_B7I6U8 2.13268920259e-06 0.000102762913914 40625656587.6 +UniRef50_Q097C2 1.41210881602e-06 4.85284312551e-07 -374170425.466 +UniRef50_P0A3Q0 4 alpha glucanotransferase 5.45378413218e-05 6.02578427191e-05 2309234756.4 +UniRef50_C6SP30 3.82213845986e-05 2.62027920066e-05 -4852053314.11 +UniRef50_Q09AF1 Ribose transport system permease protein RbsC 7.39949871433e-05 1.22845112877e-05 -24913276375.6 +UniRef50_K7SFB2 1.18234072579e-06 2.29928120412e-06 450922577.503 +UniRef50_UPI00028877F3 peptide ABC transporter permease 2.46183002323e-08 4.02927422823e-07 152728035.165 +UniRef50_B1J061 UPF0178 protein YaiI 2.82646384514e-05 2.52516943684e-07 -11308837200.0 +UniRef50_UPI00046A4EAB membrane protein 2.62448552719e-08 3.97437744562e-08 5449679.32507 +UniRef50_P0ACD8 Hydrogenase 1 large chain 1.80271543214e-05 4.89111128395e-06 -5303181771.57 +UniRef50_V7ZPF8 2.61213588882e-06 9.16344514465e-07 -684611787.529 +UniRef50_W7QBW2 Immunogenic protein 5.79365472022e-07 6.87716454438e-07 43742621.2174 +UniRef50_C1D094 GTPase Der 4.0460996081e-06 0.000538097911183 2.15603269886e+11 +UniRef50_X6DLZ2 1.3878102636e-06 5.40204635215e-07 -342188793.47 +UniRef50_UPI0004716F0E ribonuclease J 1.20744494936e-07 4.68382089622e-07 140345562.968 +UniRef50_UPI0002B8D004 hypothetical protein 9.11892253654e-07 4.54904712919e-06 1468364056.16 +UniRef50_UPI0004681C8E hypothetical protein, partial 1.29166969302e-07 5.04507901653e-06 1984614018.49 +UniRef50_R9YN68 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase 0.000191630867459 5.95301160108e-05 -53330694418.1 +UniRef50_Q6FEV8 3 isopropylmalate dehydratase small subunit 8.34014443975e-06 9.7657505395e-06 575534676.623 +UniRef50_A6M0Q7 Methyl accepting chemotaxis sensory transducer 3.9982652249e-06 1.83214571578e-05 5782448348.64 +UniRef50_P40711 Peptidyl tRNA hydrolase ArfB 8.36595279523e-05 1.27474836775e-05 -28628062462.4 +UniRef50_B0V969 Homoserine kinase 3.54742120506e-06 6.53437842298e-05 24947950079.7 +UniRef50_UPI000287CE50 ABC transporter periplasmic protein, partial 1.10351733145e-06 2.18654012219e-06 437229590.806 +UniRef50_D3DZ73 Methanogenesis marker protein 6 1.91227824473e-05 1.91433466534e-05 8302022.35376 +UniRef50_Q5V5M1 Nucleoside diphosphate kinase 1.3797390658e-07 9.63126384725e-07 333124181.187 +UniRef50_UPI0004026C93 ABC transporter permease 1.85351307089e-07 2.26638372701e-07 16668095.0368 +UniRef50_A7ZK57 3 hydroxydecanoyl [acyl carrier protein] dehydratase 8.57343777211e-05 4.48946348716e-05 -16487505348.3 +UniRef50_W4M3I0 7.95754998163e-07 3.45627829562e-07 -181721861.646 +UniRef50_A4VQM5 Alanine racemase 4.26107902714e-06 1.46662887648e-07 -1661040285.08 +UniRef50_B9EBJ3 GTPase HflX 0.000214869546136 5.04292918386e-05 -66386548568.5 +UniRef50_Q4W573 Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion 1.66395904536e-06 3.51535053073e-05 13520140788.9 +UniRef50_R6FSH7 Oxidoreductase 3.05692302144e-06 1.39886339576e-05 4413265852.12 +UniRef50_F9M5F2 2.53103632371e-05 6.71174329992e-06 -7508491099.38 +UniRef50_A1BD29 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.000101549503353 7.58757588134e-05 -10364805722.9 +UniRef50_M5RG91 Glutamate binding periplasmic protein 3.00308843189e-06 8.69907841199e-07 -861191181.531 +UniRef50_R9SIF8 NADPH dependent FMN reductase 4.41212340654e-05 2.69695621179e-06 -16723489302.6 +UniRef50_K7RVB3 DNA recombination RmuC like protein 1.28251185346e-06 4.04327604741e-05 15805435795.7 +UniRef50_D3E1G5 Cobalamin biosynthesis protein CbiX 2.49269505297e-05 2.06756152991e-06 -9228615855.47 +UniRef50_A0KJ40 Nucleoside diphosphate kinase 1.05895074201e-06 5.03817715469e-07 -224114015.063 +UniRef50_UPI000466CC16 hydantoinase 2.12039564499e-08 3.8205932323e-08 6863906.29768 +UniRef50_UPI0003B508F0 GntR family transcriptional regulator 1.82113862877e-06 1.97874144715e-07 -655331791.906 +UniRef50_P27868 Acetolactate synthase 1.59158413179e-07 1.74274645322e-07 6102608.41316 +UniRef50_UPI00035F1C59 50S ribosomal protein L3 4.8815993232e-08 4.12397291338e-07 146782231.69 +UniRef50_F9YZE2 1.21769673823e-05 2.65747758288e-05 5812571950.83 +UniRef50_M5S2J2 Phytoene desaturase 7.56203519325e-08 2.62545425185e-07 75463945.9004 +UniRef50_H6LML3 7.32700741234e-05 7.10734470096e-06 -26710705775.8 +UniRef50_A6LT68 Phage tail tape measure protein, TP901 family 3.76588911931e-06 1.61627477518e-05 5004763956.5 +UniRef50_UPI00036C1C23 hypothetical protein 2.62379544808e-07 2.02268081362e-06 710655223.544 +UniRef50_A5UNK4 Ribose phosphate pyrophosphokinase 2.37514630933e-05 6.13379542215e-06 -7112468631.92 +UniRef50_UPI00035CAC38 hypothetical protein 1.09907747246e-07 3.82473031103e-07 110037949.845 +UniRef50_UPI0003EDD3EB hypothetical protein, partial 1.42209152858e-06 3.38698464644e-07 -437379074.64 +UniRef50_P33235 Flagellar hook associated protein 1 6.45460594033e-05 1.45125389464e-05 -20199146188.8 +UniRef50_UPI000379C48D hypothetical protein 1.6946093568e-06 2.97295822483e-07 -564112620.77 +UniRef50_F6GB14 Multidrug efflux system transmembrane protein 1.22869387626e-05 1.86123973868e-06 -4208982633.66 +UniRef50_Q4L5F4 Succinate dehydrogenase iron sulfur protein subunit 8.61888355762e-05 6.52693343613e-05 -8445459351.6 +UniRef50_Q2G1T7 HTH type transcriptional regulator SarU 5.85404427429e-05 3.1031527691e-06 -22380714254.5 +UniRef50_UPI0002EB7833 hypothetical protein 7.53958815615e-07 1.29877625108e-06 219949484.359 +UniRef50_E8NHH4 WGS CADB00000000 data, contig 29 1.83710134169e-08 3.02034824759e-08 4776912.95984 +UniRef50_F0LGR4 Sugar ABC transporter, substrate binding protein 0.000164645471064 4.37631137942e-05 -48801691023.2 +UniRef50_P56867 Hexagonally packed intermediate layer surface protein 8.6532816985e-07 0.000586772850657 2.36538056722e+11 +UniRef50_K0S670 1.81623358584e-06 1.1140691636e-06 -283472393.785 +UniRef50_I4CPJ8 C type cytochrome 4.52232072348e-06 4.81873327421e-06 119665384.121 +UniRef50_G7MDF6 2.46186514469e-05 2.46461897019e-05 11117531.4759 +UniRef50_UPI0003B56D5B 50S ribosomal protein L25 2.4736567556e-06 5.52852819292e-07 -775452120.003 +UniRef50_A0A024HXA7 7.2666456613e-08 2.5565016226e-08 -19015429.4839 +UniRef50_F5M453 McpA 0.000134221912944 4.37343828673e-05 -36530926298.8 +UniRef50_B0C6R3 Phosphoribosylformylglycinamidine synthase 2 2.28681721834e-07 5.91964645531e-08 -68423278.1823 +UniRef50_A0A023RWA6 Sugar kinase 5.92791302586e-06 9.31103658267e-05 35196626044.7 +UniRef50_UPI00036BDA1B hypothetical protein 4.34393184712e-08 6.24777549309e-07 234693377.612 +UniRef50_Z1Y9N5 Replication initiator protein 4.99800439334e-07 6.66917058327e-08 -174851310.556 +UniRef50_UPI00047572A2 tRNA delta isopentenylpyrophosphate transferase 1.27262992751e-07 1.10964415817e-07 -6579935.51429 +UniRef50_V5LMT9 3.29810918888e-06 1.05549456817e-07 -1288875540.95 +UniRef50_UPI0001FFF28B gas vesicle protein, partial 2.97823836508e-06 1.4347771065e-06 -623114250.488 +UniRef50_Q7VID0 3.11293795653e-06 2.07864427227e-05 7135010752.41 +UniRef50_Q74LG0 Xanthine uracil permease 0.000131384593797 9.81282502988e-05 -13425993971.4 +UniRef50_Q6F8J4 DNA primase 1.37813181635e-06 5.13690355464e-05 20181941293.2 +UniRef50_K2ADM0 2.23966747393e-06 7.69496656024e-07 -593526000.215 +UniRef50_A0A031M1H9 Membrane protein 1.09756430919e-06 2.44832277232e-07 -344258385.5 +UniRef50_R9SKE6 Iron dependent repressor 1.2000667335e-05 1.23981832645e-05 160482058.808 +UniRef50_B8JFW2 Lysine tRNA ligase 3.34808825313e-08 1.38960118047e-07 42583261.7536 +UniRef50_Q8FEA4 2.98015254361e-06 3.40211676833e-07 -1065776523.64 +UniRef50_A1U241 Uracil phosphoribosyltransferase 0.000228969774573 0.000103019115255 -50847826755.1 +UniRef50_V8G0X5 Cell wall binding protein 2.4406421693e-06 1.54979927826e-05 5271412674.3 +UniRef50_UPI0001711954 GTPase CgtA 1.02665299403e-07 3.22260203442e-06 1259556745.86 +UniRef50_X1HTP5 Marine sediment metagenome DNA, contig 3.30005017778e-07 1.60199051908e-07 -68552752.1752 +UniRef50_R5HYZ8 6.41569765233e-06 1.14989539398e-05 2052172941.82 +UniRef50_R5NRV6 Pseudouridine synthase 1.85345002706e-06 1.24600013658e-05 4281994932.45 +UniRef50_D3VHY7 1.44806323419e-06 1.54791136297e-05 5664507225.01 +UniRef50_UPI0003A646A2 GTP pyrophosphokinase 3.07170517092e-08 2.2115603808e-07 76882555.7471 +UniRef50_B4THT3 UPF0257 lipoprotein YnfC 6.03801021806e-05 2.01829258749e-05 -16228093349.4 +UniRef50_UPI00037C47E4 hypothetical protein 1.00591167078e-07 1.13885406142e-06 419159471.364 +UniRef50_E1ZV58 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 7.56740954738e-06 9.50729585502e-05 35327063946.3 +UniRef50_W6QS47 Methyl accepting chemotaxis transducer 1.17685283211e-06 5.05401404423e-06 1565257559.45 +UniRef50_L0A178 Putative branched chain amino acid permease 2.88801632582e-07 1.51749840629e-07 -55329490.226 +UniRef50_E2ZSI9 1.65564030199e-06 1.74512500284e-06 36126071.8339 +UniRef50_B2V1Q0 3.65903001277e-06 2.87646141427e-06 -315932546.411 +UniRef50_UPI0003B54C8A ATP dependent DNA helicase Rep 5.41995110964e-08 5.21076761009e-08 -844499.457385 +UniRef50_F8KJ61 DNA 3 methyladenine glycosylase I 0.000149788462382 2.68543931711e-05 -49629992311.2 +UniRef50_UPI0003777478 hypothetical protein 8.72222562852e-08 1.96122410127e-07 43964328.4612 +UniRef50_F2JLA6 Transposase 7.05511244232e-06 1.60480536173e-05 3630560708.14 +UniRef50_UPI00035F7004 hypothetical protein 8.08619725874e-08 2.10842688373e-06 818552835.647 +UniRef50_UPI00046A5F56 hypothetical protein 5.36217331936e-08 1.55566306503e-06 606392517.784 +UniRef50_W5T9B1 1.28938584919e-07 1.77795542929e-06 665728335.784 +UniRef50_C6NYG1 Flagellar biosynthesis protein FlhA 2.18276252868e-08 2.76787835919e-07 102930565.746 +UniRef50_UPI000262C262 transposase 1.35860460184e-07 1.4678155287e-07 4408979.13422 +UniRef50_L1K4Y6 7.86429143437e-06 5.21147126815e-05 17864438071.2 +UniRef50_D4HAB8 Aminodeoxychorismate synthase, component I 2.00949521046e-06 5.68182059207e-05 22126949092.2 +UniRef50_UPI0003C75D29 pirin 7.40047974763e-08 6.54218643181e-08 -3465035.4404 +UniRef50_UPI0003648088 hypothetical protein, partial 1.57370615557e-06 1.21341576631e-06 -145453651.405 +UniRef50_P26171 Bacteriochlorophyll synthase 44.5 kDa chain 3.80638314925e-06 1.25398873072e-07 -1486058523.05 +UniRef50_UPI0003B578F4 peptidase M22 8.87192701375e-08 1.89972957195e-07 40877355.9874 +UniRef50_G8PES7 Glycosyl transferase 2 family protein 9.18457393789e-07 4.40512544523e-05 17413239471.5 +UniRef50_B9E294 9.06691726615e-07 2.2097498788e-05 8554988851.13 +UniRef50_UPI00036DA897 hypothetical protein 5.69108943928e-08 1.34081463952e-06 518327697.18 +UniRef50_Q28PP3 Binding protein dependent transport systems inner membrane component 0.000125216683248 4.67375152732e-05 -31683003159.1 +UniRef50_UPI0002EEB552 hypothetical protein 2.52264351431e-07 4.73736553645e-07 89411045.8033 +UniRef50_A1K3T2 Phosphoheptose isomerase 1.96691480587e-07 2.5732758158e-07 24479538.0595 +UniRef50_Q9RVZ7 O acetylhomoserine lyase 6.72081879274e-07 0.000362525247629 1.46084563451e+11 +UniRef50_UPI0004268C03 hypothetical protein 1.91033687858e-07 1.35290014587e-07 -22504404.9513 +UniRef50_UPI00034D0CB3 hypothetical protein 6.73260512196e-07 9.57238054426e-08 -233158655.689 +UniRef50_A2ZQQ8 1.31243816208e-06 1.7103598022e-06 160645849.164 +UniRef50_UPI00035A2A22 PREDICTED 6.76324128988e-08 1.01173852143e-07 13541090.6226 +UniRef50_W2CS51 2.26614179847e-07 3.40327153341e-07 45907322.8146 +UniRef50_C6S4V7 Transcriptional regulator, AraC family 1.35299637578e-06 4.79043814848e-05 18793365418.2 +UniRef50_Q5HPM6 1.09947375394e-05 1.96877803463e-05 3509488056.78 +UniRef50_C1D0F7 Aminomethyltransferase 4.44125679321e-07 3.30736656182e-06 1155925480.18 +UniRef50_Q5Z5L8 6.08768049985e-07 4.09681954045e-06 1408169189.91 +UniRef50_Q5HPM0 9.43714972126e-06 9.52634532885e-06 36009361.3373 +UniRef50_UPI0003C7E085 acetylornithine aminotransferase 4.6303788115e-08 9.9769887881e-08 21584920.5784 +UniRef50_R6JRA3 7.45431579148e-08 1.23779204586e-07 19877196.2354 +UniRef50_UPI00016AA163 hypothetical protein 1.05267699221e-05 5.92971857003e-06 -1855886042.99 +UniRef50_J9YT54 2.73028196551e-07 3.81168692463e-07 43657645.2328 +UniRef50_Q66ED4 Sulfite reductase [NADPH] flavoprotein alpha component 5.04020981913e-06 1.17356737802e-05 2703040963.67 +UniRef50_UPI000378803E hypothetical protein 6.16707822637e-08 1.54068762077e-07 37302198.3013 +UniRef50_V9WCN5 Serine pyruvate aminotransferase archaeal aspartate aminotransferase 4.65397093427e-06 1.87106677001e-06 -1123492561.19 +UniRef50_UPI0004636D1A hypothetical protein 3.25404348593e-06 7.47695748767e-07 -1011843337.84 +UniRef50_UPI00036F7C7E hypothetical protein 4.77789235249e-07 7.86297342514e-07 124548508.723 +UniRef50_UPI00037CF289 hypothetical protein 6.87794211497e-07 2.11431082024e-07 -192313641.001 +UniRef50_W7LMB8 3.31710007762e-07 5.19010026679e-07 75615316.0665 +UniRef50_UPI00036C6A8F hypothetical protein 6.2128955392e-08 1.4038902234e-05 5642594886.87 +UniRef50_D7GUI6 TRAP transporter solute receptor, TAXI family 2.45350367133e-07 1.40208289931e-07 -42447146.8048 +UniRef50_A6M071 5.04145084198e-06 5.05224962549e-06 4359601.41896 +UniRef50_UPI0003B45945 glycosyl transferase 3.26367563129e-07 1.7093285637e-07 -62750898.517 +UniRef50_Q9P2T1 GMP reductase 2 3.019874909e-05 1.85619234072e-06 -11442237962.0 +UniRef50_H8XBT6 Recombinase A 1.35341645461e-06 4.46246743994e-07 -366235544.4 +UniRef50_Q8P558 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 6.98185396544e-08 2.57358912199e-05 10361708499.1 +UniRef50_V5XU16 Replication initiator protein A 1.05771951185e-07 3.85457136832e-08 -27140057.0382 +UniRef50_Q8CUE8 0.000512549549357 7.10261696862e-05 -1.78248406474e+11 +UniRef50_Q8CUE9 0.000171736941222 9.59617511552e-06 -65458216967.9 +UniRef50_Q8CUE6 8.07024305529e-05 2.16629456746e-05 -23834964541.3 +UniRef50_Q8CUE4 0.000124821806548 3.85142546669e-05 -34843417807.2 +UniRef50_Q8CUE5 1.01253614459e-05 1.76884746785e-06 -3373627238.9 +UniRef50_Q8CUE2 2.13368868259e-05 4.68761225963e-05 10310502882.2 +UniRef50_Q8CUE3 0.000220676404114 7.86202891308e-05 -57349796843.2 +UniRef50_A4YPV8 2.39608965621e-06 1.04018055452e-06 -547397143.228 +UniRef50_M0SZR5 2.58287065004e-06 2.85113951854e-06 108303434.243 +UniRef50_UPI0004784CAD hypothetical protein 4.80409777298e-08 2.71764899036e-07 90320092.4325 +UniRef50_UPI0004738AE6 glyceraldehyde 3 phosphate dehydrogenase, partial 1.00560209346e-06 1.62442227101e-07 -340393984.784 +UniRef50_I7AL68 Phosphoglycerate mutase family protein 5.03721412535e-07 1.12095563913e-05 4322076956.31 +UniRef50_P0ABL3 Periplasmic nitrate reductase, electron transfer subunit 1.42657392781e-05 1.84572940748e-05 1692182107.59 +UniRef50_R6U4B5 Transposase 1.52244641929e-06 2.20349434455e-06 274947404.825 +UniRef50_Q8CNT1 Integrase 0.000175664100198 3.78933031711e-05 -55619761397.6 +UniRef50_Q6MDQ6 NADH quinone oxidoreductase subunit K 1.26395194062e-07 2.37440837943e-07 44830489.118 +UniRef50_UPI00016C4514 50S ribosomal protein L18 4.91986356719e-07 2.95837452769e-06 995711170.607 +UniRef50_Q9JYT7 4.37242458129e-06 2.94915342218e-05 10140892808.0 +UniRef50_G7UAA9 Transporter, major facilitator family protein 2.46285914396e-06 4.5997293388e-05 17575385331.9 +UniRef50_B8CRT5 Homoserine O succinyltransferase 5.4913811242e-05 2.30289634906e-05 -12872304308.3 +UniRef50_W0CEL3 6.3975109127e-07 4.83282889277e-06 1692796963.32 +UniRef50_P77390 [Citrate [pro 3S] lyase] ligase 4.62441753496e-05 3.55468702517e-06 -17234270295.5 +UniRef50_W0PAW0 Integral membrane protein 1.12156799708e-07 1.73394086213e-07 24722244.0281 +UniRef50_C1KVA6 Glycine tRNA ligase alpha subunit 2.69774432705e-07 1.44060409347e-05 5706984258.35 +UniRef50_UPI0003F0AAA6 PREDICTED 3.20306420241e-08 2.3589291299e-08 -3407876.87474 +UniRef50_M1N022 Histidinol phosphatase HisK 1.45186918795e-06 6.47425084459e-06 2027597106.34 +UniRef50_Q5HNY9 Putative GTP cyclohydrolase 1 type 2 0.000173072481957 6.31127026367e-05 -44392112269.7 +UniRef50_F8FMK7 Response regulator 1.95623604944e-05 1.156140961e-05 -3230082054.74 +UniRef50_P85098 Respiratory nitrate reductase beta chain 3.67840965939e-07 3.40887612651e-07 -10881399.4772 +UniRef50_C6BUI7 Phosphoglycerate kinase 1.3208990039e-07 1.6535166779e-07 13428183.6672 +UniRef50_UPI000287D575 putative short chain dehydrogenase 3.15110908858e-07 2.62028109379e-06 930625491.275 +UniRef50_O67161 Glyceraldehyde 3 phosphate dehydrogenase 7.0473688668e-05 3.07509351284e-05 -16036563056.9 +UniRef50_U7DV00 5.39424189374e-07 1.32479481228e-06 317063758.048 +UniRef50_X1T7L9 Marine sediment metagenome DNA, contig 1.28556427828e-06 1.35969877078e-06 29929004.3548 +UniRef50_P46130 Putative acyl CoA thioester hydrolase YbhC 2.77354561524e-05 8.77733848288e-06 -7653624745.44 +UniRef50_T0GKT6 ABC transporter permease 6.06225279828e-08 7.65239614333e-08 6419603.8165 +UniRef50_D5VAW9 Transporter 7.83165951945e-07 8.79202114316e-05 35178294551.9 +UniRef50_M4R0I6 9.58897516131e-07 7.00602380022e-05 27897059123.0 +UniRef50_D5ANC8 1.08947331048e-07 1.27350230827e-07 7429476.46976 +UniRef50_T0BL71 2.80244398175e-06 5.34407199323e-07 -915634281.008 +UniRef50_J7PRA1 Internalin E 2.19778961851e-07 1.37013320297e-05 5442668410.73 +UniRef50_A9H8V7 0.000250567431707 7.08052747062e-06 -98298651160.4 +UniRef50_A6WGM7 Cobyrinic acid ac diamide synthase 3.53655939347e-08 1.21082368182e-07 34604913.6267 +UniRef50_B2ULY3 NADH quinone oxidoreductase subunit K 5.36065968397e-07 6.39288051381e-07 41672021.578 +UniRef50_C7C0M5 1.58164520469e-06 1.98137557757e-05 7360526770.67 +UniRef50_P0ABC8 Protein HflK 4.35588927897e-05 6.52150553898e-06 -14952447733.0 +UniRef50_Q4FU03 Pseudouridine synthase 2.22050581675e-06 6.81598955466e-05 26620540801.2 +UniRef50_Q8FDG7 L tartrate succinate antiporter 2.67953223578e-05 6.78329251449e-06 -8079102022.96 +UniRef50_Q6L8L1 Circadian clock protein kinase KaiC 4.61526391767e-07 1.3297255354e-07 -132641216.301 +UniRef50_UPI000375D5D1 hypothetical protein 2.2028730887e-07 1.09746632909e-07 -44626627.3721 +UniRef50_A8AVA4 ABC transporter ATP binding protein 4.93843513284e-05 1.28764774909e-05 -14738676670.2 +UniRef50_UPI0003805572 Fis family transcriptional regulator 3.5623302366e-07 2.00715540006e-07 -62784316.5652 +UniRef50_O68560 Ribosome association toxin RatA 5.14753621162e-05 1.39519703241e-05 -15148653730.3 +UniRef50_A1JJ54 Autoinducer 2 import system permease protein LsrC 4.27234772409e-05 9.46953356292e-06 -13425025134.6 +UniRef50_U6K454 7.71419899057e-07 1.31914161208e-07 -258176313.988 +UniRef50_P09852 Exotoxin A regulatory protein 2.97160948681e-06 1.44051255889e-05 4615850755.44 +UniRef50_A6LS16 Sigma 54 factor, interaction domain containing protein 4.2836519913e-06 1.07766223372e-05 2621291806.35 +UniRef50_D5AT86 1.34224984377e-05 1.46196388719e-06 -4828614570.3 +UniRef50_A3CNP4 Transcriptional regulator GntR family 4.14922247107e-05 2.44720877664e-05 -6871238144.98 +UniRef50_A7MH24 NADH quinone oxidoreductase subunit C D 4.82244427802e-05 1.89530888264e-05 -11817204791.1 +UniRef50_Q89AR9 NAD kinase 1.82859939085e-07 1.95001171328e-07 4901564.44617 +UniRef50_Q0FLV7 6.46540453326e-07 3.13215183871e-07 -134567501.64 +UniRef50_UPI00038316EF hypothetical protein 6.1309888747e-08 9.06750797388e-07 341314869.545 +UniRef50_F2N563 5.94119372543e-06 2.30491086981e-05 6906675212.2 +UniRef50_H8I380 8.70951731997e-07 3.73294577628e-07 -200910300.159 +UniRef50_K8FGY8 DUF2188 family protein 0.000106521976682 7.21230557044e-05 -13887266520.9 +UniRef50_A0A011PD71 1.2309325723e-06 4.38973151202e-06 1275245894.79 +UniRef50_UPI000382A08A hypothetical protein 7.37894012985e-07 1.64582262746e-06 366541923.201 +UniRef50_U6AC49 Phenazine specific methyltransferase PhzM 3.38833908003e-06 4.88963615877e-06 606092053.674 +UniRef50_P80503 Dihydrolipoyl dehydrogenase 4.90602620711e-07 1.5509848641e-06 428089324.01 +UniRef50_D7FVW5 8.66482012812e-07 5.74734608727e-06 1970464721.8 +UniRef50_U5MVZ4 Sensor histidine kinase YclK 2.19468598168e-06 7.7103118637e-06 2226725852.91 +UniRef50_P37925 Protein FimH 5.10037145597e-06 1.93862169709e-06 -1276437176.69 +UniRef50_UPI0003735D88 hypothetical protein 2.80564414183e-07 1.77594576919e-05 7056443706.35 +UniRef50_A0A011UTJ0 6.45023408896e-07 1.43013113732e-07 -202667716.517 +UniRef50_U5MNI8 Type IV pilus assembly protein TapC 1.00306285793e-06 9.10359604404e-06 3270284651.95 +UniRef50_UPI00046D22D7 hypothetical protein 5.75099046028e-07 1.36379604412e-07 -177116422.273 +UniRef50_X1ILZ0 Marine sediment metagenome DNA, contig 6.77973617548e-07 3.98223322359e-06 1333970150.78 +UniRef50_D5QFZ9 Cyclase dehydrase 3.17140138968e-05 1.61081839197e-05 -6300265066.82 +UniRef50_Q51463 Flagellar M ring protein 4.60245108042e-06 8.97837151232e-06 1766612776.94 +UniRef50_A7FZA6 Transcription elongation factor GreA 3.74484003689e-05 3.69145881487e-06 -13628091549.6 +UniRef50_UPI0003B58BAE hemolysin expression modulating protein 4.65000421746e-08 3.42493600826e-08 -4945750.69331 +UniRef50_UPI0003776FB7 hypothetical protein 5.79053945972e-07 8.31764780681e-07 102022465.083 +UniRef50_D4ZAK4 1.55138706938e-05 9.76467356493e-05 33158045466.1 +UniRef50_UPI000360EB76 hypothetical protein, partial 3.04492122522e-07 1.20606903892e-05 4746121505.04 +UniRef50_A4WXK1 2.39180645987e-07 1.28593571989e-05 5094920141.39 +UniRef50_G0LPP3 1.75130282118e-07 8.8912564962e-08 -34807150.4262 +UniRef50_UPI0003613F90 hypothetical protein 3.49462451913e-07 5.85666173664e-07 95358341.0165 +UniRef50_UPI000368B7D0 hypothetical protein 1.9877668552e-07 1.41850021303e-06 492417355.747 +UniRef50_UPI00034BE6B7 hypothetical protein 1.53780469284e-06 2.30882467543e-06 311270228.451 +UniRef50_UPI00036CB57D hypothetical protein 1.24254840656e-06 1.9390020112e-07 -423352148.897 +UniRef50_U5MKL2 DEAD DEAH box helicase 9.25872157184e-06 1.62363880566e-06 -3082376605.71 +UniRef50_O27720 Probable tRNA sulfurtransferase 3.19728022735e-05 2.18214314184e-06 -12026854664.0 +UniRef50_A0A052I467 PF07120 family protein 3.82074606233e-08 1.08797465468e-07 28498051.1926 +UniRef50_Q8YBL2 GMP synthase [glutamine hydrolyzing] 4.78292482583e-07 1.75929254972e-07 -122067745.401 +UniRef50_P48932 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 1.94990830182e-07 3.79951029156e-07 74670702.0427 +UniRef50_A1B5W0 RNA polymerase sigma factor 0.000154412513056 4.03772112068e-05 -46037450727.0 +UniRef50_R5NV67 tRNA dihydrouridine synthase 2.57148580005e-06 1.59071473176e-05 5383770201.62 +UniRef50_G8UZW2 Glycerophosphoryl diester phosphodiesterase family protein 0.000113915833637 1.72333989802e-05 -39031885297.8 +UniRef50_UPI000225BB06 NADH ubiquinone oxidoreductase subunit 3.1911204997e-06 2.42797693111e-06 -308090423.464 +UniRef50_Q7BHL7 Regulatory protein MsrR 0.000179261507902 5.93844281616e-05 -48395848148.2 +UniRef50_U3SRT1 Ribonuclease R 5.95643053054e-05 1.33662877418e-05 -18650706603.9 +UniRef50_UPI0004091E67 enterobactin ABC transporter permease 7.60271157724e-08 1.92352257915e-07 46961887.3531 +UniRef50_UPI00040FC3C0 resolvase 1.82892801543e-07 1.86362639846e-06 678532777.997 +UniRef50_Q92G90 Aconitate hydratase 9.02371754612e-08 7.14064123959e-07 251846594.326 +UniRef50_Q6A9W5 Probable cytosol aminopeptidase 7.59784981674e-06 4.71514632646e-05 15968279126.3 +UniRef50_S1SCM6 Short chain dehydrogenase reductase SDR 1.03537456077e-05 7.50095910112e-05 26102358205.8 +UniRef50_UPI0004560FCC hypothetical protein PFL1_00477 7.56488472929e-08 5.18794405911e-07 178903300.022 +UniRef50_UPI0003781D54 hypothetical protein 1.01177084002e-06 7.19540518108e-07 -117976967.025 +UniRef50_M9V9M5 2.46626901361e-06 4.4088258943e-05 16803308093.8 +UniRef50_F5XYC9 1.88070647974e-06 4.75911001366e-06 1162046828.63 +UniRef50_UPI00047A219A hypothetical protein 9.8210833611e-07 1.31646324826e-06 134983181.031 +UniRef50_P0A9V7 6.50837911816e-06 7.23224584158e-06 292233879.088 +UniRef50_K0R926 1.27776582313e-06 1.20169213444e-06 -30711881.6533 +UniRef50_B9KRR9 1.14389693592e-05 5.76132825919e-06 -2292133384.57 +UniRef50_UPI00036ACC32 hypothetical protein 1.95676435318e-06 2.47698959293e-06 210021313.169 +UniRef50_B7LBZ3 1.69963288404e-07 9.95641831884e-06 3950911989.1 +UniRef50_UPI000366BCAE hypothetical protein 5.31381431788e-08 2.14809482511e-07 65268703.6188 +UniRef50_UPI00034FAA06 PREDICTED 2.78247205418e-08 5.06808908268e-08 9227316.4208 +UniRef50_A6M1J6 PolyA polymerase related protein and P loop ATP ase domain 8.44720945455e-06 1.04090717712e-05 792027891.989 +UniRef50_UPI0001E2C790 helix turn helix domain containing protein 3.50284998896e-06 2.23715494736e-06 -510976620.119 +UniRef50_Q9HCC0 Methylcrotonoyl CoA carboxylase beta chain, mitochondrial 3.22770954777e-05 7.78168753535e-05 18384967971.8 +UniRef50_Q9JWM8 Peptide methionine sulfoxide reductase MsrA MsrB 9.85120688569e-07 3.21430480961e-05 12578837645.2 +UniRef50_UPI000383BA43 PREDICTED 2.21634236596e-07 5.51939798563e-06 2138772236.36 +UniRef50_G0HC44 Adenylosuccinate lyase 5.23871611604e-06 3.75189887646e-05 13031942191.7 +UniRef50_A6ZVT8 Cell surface flocculin 2.59740092636e-08 8.47067604244e-08 23711132.3755 +UniRef50_B4SEB2 Short chain dehydrogenase reductase SDR 2.46980747615e-08 2.84914751304e-08 1531442.27918 +UniRef50_UPI00037E5D09 LuxR family transcriptional regulator 1.91563005167e-07 1.95227389654e-07 1479356.98446 +UniRef50_A1TWN0 Methionyl tRNA formyltransferase 7.17077298158e-08 2.59810487078e-07 75939391.3871 +UniRef50_B5GNF3 ABC transport system ATP binding protein 4.67957837425e-06 4.82992768248e-05 17609807538.4 +UniRef50_O75489 NADH dehydrogenase [ubiquinone] iron sulfur protein 3, mitochondrial 1.52929146827e-07 1.09366167125e-07 -17586909.4836 +UniRef50_UPI00046F9A01 hypothetical protein 1.16831740175e-06 7.91968438374e-07 -151936694.836 +UniRef50_D5AU36 Peptidase, U32 family 5.6250052245e-06 3.96398262003e-06 -670575208.464 +UniRef50_Q7VFF8 Argininosuccinate lyase 1.38147437985e-07 1.59392243539e-07 8576788.70523 +UniRef50_Q6A823 1.83492112341e-07 3.48433754644e-05 13992620233.8 +UniRef50_P13604 NADPH dependent butanol dehydrogenase 1.85630581017e-05 4.22056016765e-05 9544784967.78 +UniRef50_Q6A824 2.0761030336e-06 2.41516335112e-06 136882810.921 +UniRef50_UPI00037EF460 hypothetical protein 1.55271270006e-07 1.17054961377e-06 409880326.242 +UniRef50_A2RKV6 Homoserine kinase 5.88426858955e-05 1.75580523721e-05 -16667113172.8 +UniRef50_P56176 Bifunctional NADH hydrate repair enzyme Nnr 2.1035703837e-06 4.78603416197e-05 18472570046.7 +UniRef50_P64804 Cobyrinic acid a,c diamide adenosyltransferase 1.12937351911e-07 2.24934383205e-07 45214575.8915 +UniRef50_D1YLF7 DNA repair protein RadA 4.40712250337e-07 1.18849658827e-05 4620185628.18 +UniRef50_W7IVE6 0.000101155209612 2.807293386e-05 -29504211541.5 +UniRef50_P0ADT7 Putative acid amine ligase YgiC 2.90992072721e-05 3.50110636804e-06 -10334267459.0 +UniRef50_UPI0003682914 hypothetical protein 3.42843416405e-08 4.89682200819e-08 5928061.91824 +UniRef50_UPI000362C7A0 hypothetical protein 1.0223285923e-07 5.44325125059e-08 -19297586.5487 +UniRef50_X1V7S4 Marine sediment metagenome DNA, contig 2.65436920173e-07 5.19350545681e-07 102508046.488 +UniRef50_Q73MY1 Phosphopantetheine adenylyltransferase 1.18084939145e-07 1.57584662553e-07 15946523.0559 +UniRef50_UPI000191165B hypothetical protein 3.29533607801e-07 1.98544495681e-07 -52881911.98 +UniRef50_F0S2L5 7.90572709247e-08 1.33982421675e-07 22173957.3653 +UniRef50_K0HAG9 3.32099824425e-06 9.40379920514e-05 36623563622.7 +UniRef50_G7LZX4 2.70323271289e-06 2.0994078568e-06 -243771504.168 +UniRef50_A3PJL4 Invasion associated locus B family protein 4.36730325782e-05 5.96599404435e-06 -15222794173.5 +UniRef50_C5WG19 Phosphomevalonate kinase 4.48899070704e-05 1.94500574217e-06 -17337383659.4 +UniRef50_A3PS67 4.88643287615e-05 2.09071030186e-05 -11286675106.1 +UniRef50_A4WQP0 1.29500809316e-06 2.03995941812e-06 300745991.467 +UniRef50_A3PKI7 NADH quinone oxidoreductase subunit I 2 1.9684416847e-05 9.30476511362e-07 -7571195850.21 +UniRef50_F2MV72 C4 dicarboxylate binding protein 8.49695271659e-06 2.83504036987e-06 -2285783493.85 +UniRef50_K0J3D5 Transposase 1.66678984431e-07 4.86437385485e-08 -47652277.2179 +UniRef50_Q979P0 7 cyano 7 deazaguanine synthase 6.30843018168e-06 6.71365209986e-05 24557046707.4 +UniRef50_Q5E212 Soluble pyridine nucleotide transhydrogenase 3.45454460361e-05 6.66040397547e-05 12942447687.4 +UniRef50_A5UNU9 Bacteriophage capsid portal protein 2.57009916019e-05 1.741543541e-05 -3344980709.88 +UniRef50_R0MT59 DNA polymerase III PolC 6.63029151926e-05 5.09453878833e-05 -6200022232.82 +UniRef50_I6CAK2 Inner membrane transport YhjV domain protein 6.44385600304e-07 1.91820636815e-07 -182706029.357 +UniRef50_T1XSP1 0.000130758557034 3.9072901074e-05 -37014624420.6 +UniRef50_A7GJS9 Glutamine amidotransferase subunit PdxT 2.75535277749e-08 3.29718849176e-05 13300030854.5 +UniRef50_UPI0004641AEF hypothetical protein, partial 8.87569226775e-07 5.50705844638e-07 -135995881.147 +UniRef50_W5X7V9 Aspartyl glutamyl tRNA amidotransferase subunit B 6.26772385403e-08 7.69284995455e-08 5753408.95044 +UniRef50_A9MKV9 Hydroxyethylthiazole kinase 3.83734256595e-05 5.6905803135e-06 -13194465729.8 +UniRef50_A0A023Y3W6 Radical SAM protein 9.01141364364e-06 2.78600665274e-06 -2513273196.56 +UniRef50_M9VBI4 Amidohydrolase family protein 7.95824291342e-07 8.05421392018e-05 32194565926.7 +UniRef50_UPI00036008AF hypothetical protein 1.76842569876e-06 2.67409760697e-07 -605978553.732 +UniRef50_UPI0003717A52 hypothetical protein 1.51699831384e-06 9.94462844837e-07 -210953981.068 +UniRef50_A5ULW7 Nitrate sulfonate bicarbonate ABC transporter, ATPase component 2.57434508306e-05 8.26168343394e-06 -7057604023.46 +UniRef50_S9RBB4 Plasmid replication protein RepA 2.47789052648e-06 3.673526516e-07 -852050039.301 +UniRef50_UPI0003B7AD31 glycosyl transferase 2.41127994207e-08 1.03228078807e-07 31939809.1419 +UniRef50_V5VEP7 Rhs element Vgr family protein 4.9109191956e-07 2.06526033472e-05 8139449572.89 +UniRef50_F2D1I1 Predicted protein 2.28447557271e-07 1.71213955407e-07 -23105907.4078 +UniRef50_V6QB21 5.55780017326e-06 9.32065184759e-06 1519109396.31 +UniRef50_V2VF38 1.62698395165e-06 6.66991405594e-05 26270428147.7 +UniRef50_G9EIS6 2.70902341021e-07 3.24078132928e-07 21467719.7332 +UniRef50_D5WG02 Type VI secretion ATPase, ClpV1 family 7.43570562389e-07 1.90931935806e-06 470627094.158 +UniRef50_L2SNR0 1.25006923455e-06 7.02611397733e-07 -221015446.786 +UniRef50_UPI0004007565 16S rRNA methyltransferase 6.94141024494e-08 1.51255068321e-07 33040202.224 +UniRef50_UPI00037B5A68 hypothetical protein 7.71220157479e-07 2.75873776024e-07 -199977412.777 +UniRef50_B7KNU7 Peptidyl tRNA hydrolase 8.73887470506e-07 4.3373944264e-07 -177693160.073 +UniRef50_P25397 Tellurite methyltransferase 2.00129741016e-05 4.61432351874e-06 -6216624203.01 +UniRef50_D5ZH35 Predicted protein 2.19750302058e-08 9.84912190554e-06 3967339786.22 +UniRef50_P75749 2.68932275891e-05 7.68596962359e-06 -7754205740.23 +UniRef50_A0QV20 Ribonuclease 3 2.36552435387e-07 6.99690556106e-07 186974542.678 +UniRef50_U8RNG4 1.58198483824e-06 1.30362882471e-06 -112375738.474 +UniRef50_P75745 2.185959709e-05 6.23930005751e-06 -6306105594.62 +UniRef50_A8IJ61 Sodium sulphate symporter 8.24205215782e-07 3.35337404437e-05 13205240762.6 +UniRef50_P05378 Anthranilate synthase component 1 2.17573180947e-07 0.000183615747049 74040093339.2 +UniRef50_UPI0003777559 hypothetical protein 3.66618324796e-07 5.22737741702e-07 63027324.4056 +UniRef50_A3SLT9 5.24177656364e-07 1.47601576248e-07 -152028384.651 +UniRef50_W4PGX2 1.39474060739e-07 2.29570348736e-06 870496279.437 +UniRef50_L0DV31 Pirin 5.92800374537e-08 7.78023192321e-08 7477672.4479 +UniRef50_UPI0003A0D931 chemotaxis protein CheY 1.28922923535e-06 4.25865579769e-07 -348550502.421 +UniRef50_A5UL23 Fe S oxidoreductase 1.90375005269e-05 1.25845186868e-06 -7177620116.78 +UniRef50_UPI00016A2EB9 ABC transporter related protein, partial 4.44931068274e-06 1.47451099039e-06 -1200963140.7 +UniRef50_W0L514 1.38306156408e-06 5.54950253034e-07 -334318698.338 +UniRef50_A2RIB7 NADH oxidase 6.28370474082e-05 7.84969647756e-05 6322100810.02 +UniRef50_B7UYN1 1.18009165e-05 1.5475111189e-06 -4139425575.78 +UniRef50_Q6A6F2 Ubiquinone menaquinone biosynthesis methyltransferase UbiE 3.28248685954e-06 8.6701239716e-05 33677174191.4 +UniRef50_UPI000360EAB2 MULTISPECIES 5.5033600136e-08 4.45190730437e-08 -4244843.61492 +UniRef50_W9FFV8 3.61914789278e-07 4.6316238499e-07 40874896.8366 +UniRef50_A5UMM1 Predicted metal dependent phosphoesterase, PHP family 5.25369001504e-05 9.76325418564e-06 -17268245767.7 +UniRef50_UPI00047B30F5 hypothetical protein 2.4255939956e-08 6.46748846921e-08 16317623.9862 +UniRef50_V7ENR3 Branched chain amino acid transporter AzlC 2.494610436e-06 8.91969707368e-07 -647005728.761 +UniRef50_G7LXS1 Prophage antirepressor 3.7177601129e-06 1.17077526062e-05 3225658017.78 +UniRef50_D6UB35 7.92381441214e-07 1.09759050545e-06 123216644.568 +UniRef50_U5NEG6 Type I restriction enzyme subunit M 8.12968507199e-06 4.34547607505e-06 -1527731609.53 +UniRef50_UPI00042B88CF Phosphoenolpyruvate carboxylase family protein isoform 3 1.38394907115e-07 2.04988777927e-07 26884762.8455 +UniRef50_I0EYG5 Adenine specific DNA methylase 5.17813427749e-07 4.9712895887e-05 19860658480.4 +UniRef50_Q6MSN9 30S ribosomal protein S8 5.06196709155e-05 0.000149012625803 39722443305.4 +UniRef50_Q5HM58 0.000128027835619 5.72237341886e-05 -28584484611.5 +UniRef50_W1AUZ6 Exonuclease SbcC 9.27245822186e-06 8.89139660443e-06 -153839251.108 +UniRef50_G0DUX4 Phosphoesterase family protein 1.75632466232e-06 4.02748797428e-05 15550413361.8 +UniRef50_Q8XK20 Putative ABC transporter ATP binding protein CPE1583 1.1866340796e-07 5.86115644224e-06 2318314906.25 +UniRef50_R9SKG8 2.41646311644e-05 3.72247947718e-06 -8252747489.53 +UniRef50_E6REC8 3.51591097028e-07 1.20889456265e-07 -93137083.4035 +UniRef50_UPI00046CC73E PREDICTED 1.75833330936e-07 8.09000218395e-08 -38325741.845 +UniRef50_C4J675 2.63969755987e-07 1.95343614101e-06 682058311.716 +UniRef50_Q163E0 AzlC family protein 0.000112989440012 2.92526171434e-05 -33805582958.4 +UniRef50_Q1GGE3 NADH dehydrogenase 3.35945718396e-05 2.38640735716e-06 -12599118968.8 +UniRef50_C5BMG6 Probable cytosol aminopeptidase 1.60666023111e-06 4.19868409331e-05 16301974469.9 +UniRef50_Q83EH9 ATP dependent 6 phosphofructokinase 1.64697171892e-07 7.67440222282e-08 -35507765.8258 +UniRef50_UPI0002EF2687 hypothetical protein 1.4717230536e-07 6.9084116187e-07 219485788.94 +UniRef50_A5VLG3 Glutamyl tRNA amidotransferase subunit A 6.34645374378e-05 1.12662563354e-05 -21073086626.0 +UniRef50_Q8XHR6 50S ribosomal protein L10 9.28244234885e-06 3.67139723203e-05 11074445272.2 +UniRef50_Q3J376 Phosphate import ATP binding protein PstB 2.224891882e-05 1.08801059277e-05 -4589729275.64 +UniRef50_A0A058ZJ58 6.4908853222e-07 4.21005135175e-07 -92080066.2851 +UniRef50_UPI00046FA64C RNA helicase, partial 5.54017438752e-08 2.14884843732e-07 64385284.49 +UniRef50_UPI0003B55A40 PREDICTED 4.70605843956e-07 2.13169780389e-07 -103930097.958 +UniRef50_Q7ME63 Molybdenum import ATP binding protein ModC 2.43594324623e-05 9.93869026778e-06 -5821830586.33 +UniRef50_UPI0002556A08 signaling repeat GGDEF domain EAL domain containing protein 1.27123381022e-06 1.44762443852e-07 -454770313.962 +UniRef50_A3M261 6.38831835141e-06 5.92977954019e-05 21360205157.6 +UniRef50_P30845 Phosphoethanolamine transferase EptA 2.88340517117e-05 8.24104998495e-06 -8313647501.66 +UniRef50_P0A324 Catalase 0.000218999020614 8.089445116e-05 -55754509422.2 +UniRef50_A0A022GVC0 Transcriptional regulator 1.45978913409e-06 3.27402258693e-07 -457158477.549 +UniRef50_R7PY13 Trk type potassium transport system membrane component TrkH 2.47660433669e-05 7.21796760355e-06 -7084373524.75 +UniRef50_O11346 H1 41 protein 1.67264313709e-05 3.21716470927e-06 -5453856728.63 +UniRef50_UPI00047B8E24 ABC transporter ATP binding protein 5.2701453435e-07 1.37499523676e-07 -157251989.696 +UniRef50_UPI0003B50756 ABC transporter permease 1.64675506124e-06 9.53049077448e-07 -280057618.387 +UniRef50_UPI0003B32B2D glutathione ABC transporter ATP binding protein 2.9497008764e-07 2.77130461357e-07 -7202076.04728 +UniRef50_UPI00037FBEE1 hypothetical protein 9.71822133426e-08 1.67728283726e-07 28480314.3114 +UniRef50_A8EV23 Chaperone protein HtpG 7.12237714804e-07 2.66567040831e-05 10474099447.3 +UniRef50_UPI00042B67B1 Serine hydroxymethyltransferase 6 isoform 2 2.28148999903e-08 7.13480070737e-07 278830004.845 +UniRef50_W5XBV9 Cyclic nucleotide binding protein 5.3451024781e-08 8.89776142545e-08 14342520.1307 +UniRef50_W5XBZ4 PAS domain protein 4.16287863488e-08 8.61851173863e-08 17987937.6075 +UniRef50_UPI00039CC563 hypothetical protein 1.74757768699e-06 3.16412559058e-07 -577778924.516 +UniRef50_T0N5V1 1.72593549094e-07 2.93909704309e-07 48976820.5769 +UniRef50_UPI0003728055 hypothetical protein 6.17977239504e-07 5.4356166552e-07 -30042480.3991 +UniRef50_Q4L967 Putative acetyltransferase SH0499 3.80640803241e-07 1.79385513463e-07 -81249230.1635 +UniRef50_UPI0003783400 hypothetical protein 1.21556667856e-07 2.46369815485e-07 50388599.3274 +UniRef50_UPI00034B61C2 hypothetical protein 1.79852050321e-08 7.35726041413e-08 22441315.1545 +UniRef50_Q9RYC2 Aminotransferase, putative 1.01293199152e-06 0.000466745955103 1.88022136617e+11 +UniRef50_A5UJP7 Chaperonin , alpha subunit 3.06177689365e-05 1.82276116997e-05 -5002058520.82 +UniRef50_UPI00021A5DF1 PREDICTED 1.99316214089e-07 1.18040457219e-07 -32812020.4141 +UniRef50_I0GMV1 Electron transport complex subunit C 6.69707825774e-06 2.01552245038e-05 5433218789.58 +UniRef50_UPI0003B4DBF3 acyl CoA dehydrogenase 4.53854004898e-08 6.88560770215e-07 259657789.407 +UniRef50_P58579 Glutathione synthetase 3.65788317407e-06 9.99002374291e-06 2556362851.74 +UniRef50_UPI00036DBC6E hypothetical protein 2.09432960461e-06 6.32498893031e-06 1707969085.81 +UniRef50_P40709 Inner membrane protein YejM 4.14448475494e-05 1.34336636173e-06 -16189460056.0 +UniRef50_UPI00037AA69B hypothetical protein 5.49069416205e-08 8.88053878556e-08 13685218.7258 +UniRef50_A8I6E1 Lysyl tRNA synthetase protein 9.10448998771e-06 4.93690561734e-06 -1682504952.33 +UniRef50_A3CN89 Orotidine 5 phosphate decarboxylase 1.79933449996e-06 1.94397124692e-07 -647932913.193 +UniRef50_UPI00036637FB MULTISPECIES 1.05076053952e-07 1.99784442227e-07 38234938.5492 +UniRef50_G8QQL0 Succinate dehydrogenase fumarate reductase flavoprotein subunit 8.59097923129e-08 1.64054164964e-07 31547842.1785 +UniRef50_Q89AR7 Superoxide dismutase [Mn] 7.77257759962e-08 2.05573013833e-07 51613498.7768 +UniRef50_UPI00037AA28C hypothetical protein 1.20728724893e-07 8.78644900506e-08 -13267694.8954 +UniRef50_G4LD57 AraC family transcriptional regulator 6.12041974393e-06 5.57859183363e-06 -218742576.364 +UniRef50_UPI000375BAEA hypothetical protein 1.03583104016e-06 2.71536917671e-07 -308554916.192 +UniRef50_UPI0003711312 hypothetical protein 5.74177078363e-08 1.47497532783e-06 572285406.578 +UniRef50_Q8ZDL2 NADH quinone oxidoreductase subunit G 6.69110959485e-05 8.61704689542e-06 -23534022951.2 +UniRef50_UPI00034B27B9 FAD binding molybdopterin dehydrogenase 2.70555605268e-06 1.21201118887e-05 3800771720.59 +UniRef50_Q5HPQ8 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.000154699317853 7.09908535998e-05 -33794134237.4 +UniRef50_UPI00035C36B2 hypothetical protein 1.27807136539e-07 4.28277777944e-08 -34307209.9392 +UniRef50_B3G2P1 5.6815402459e-06 4.43530872561e-06 -503118957.722 +UniRef50_D8JKW7 TetR family regulatory protein 1.69276228183e-06 7.73559247469e-05 30546147178.6 +UniRef50_UPI00034922BA hypothetical protein 4.24991535661e-08 2.72224734965e-07 92743036.2607 +UniRef50_M9VD27 Hydrolase, alpha beta domain protein 1.57467149615e-06 8.3401059594e-05 33034316997.8 +UniRef50_U6AJ35 Pyocin protein 1.39582984111e-05 8.23342405398e-06 -2311202030.08 +UniRef50_B7MI93 Acetylornithine deacetylase 3.63821018713e-05 4.91083417945e-06 -12705336963.1 +UniRef50_M3Z5Z5 5.79328322757e-08 3.76754491371e-08 -8178154.1591 +UniRef50_A3DGK6 Acetylglutamate kinase 5.14604855212e-05 2.30131283107e-06 -19846161265.9 +UniRef50_K8DMU1 Maltose phosphorylase Trehalose phosphorylase 3.36040939626e-06 3.63839883189e-06 112227746.478 +UniRef50_C4ZLQ1 BolA family protein 2.79587068531e-07 4.45664445129e-07 67047474.9312 +UniRef50_U5ACU4 ABC transporter 3.61191151775e-06 1.15225413098e-07 -1411655089.61 +UniRef50_A5UMN0 Glutamyl tRNA amidotransferase subunit A 3.77733774606e-05 4.29817202491e-06 -13514351221.4 +UniRef50_A3UFL0 GAF sensor diguanylate cyclase 4.10822025328e-07 8.77124014748e-07 188251835.298 +UniRef50_F5TJT7 5.10265798452e-07 4.95062725525e-06 1792628409.47 +UniRef50_B5Y8G1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 8.4493862904e-08 5.82291546263e-08 -10603385.0359 +UniRef50_UPI0003737153 hypothetical protein 1.01041045631e-07 3.39036523184e-07 96081694.8211 +UniRef50_B7MVN0 1.74110440424e-05 2.53060832403e-05 3187324207.22 +UniRef50_Q7VI99 Arginine tRNA ligase 1.66448543911e-06 4.69595857807e-05 18286187841.3 +UniRef50_D3QAH6 4.14061702304e-07 4.52143907568e-07 15374253.5863 +UniRef50_P0AE89 Transcriptional regulatory protein CpxR 2.07552148755e-05 1.41583433699e-05 -2663237979.53 +UniRef50_E6RH94 3.36740489104e-07 3.62051481198e-07 10218358.1091 +UniRef50_B5HHN6 Regulatory protein 1.67771550603e-06 1.93550772548e-05 7136567863.61 +UniRef50_UPI0002657849 PREDICTED 2.08751231354e-07 2.14451829943e-07 2301401.60459 +UniRef50_A7MKJ4 3.46545047247e-05 1.43531435073e-05 -8195908649.18 +UniRef50_D3QET5 0.000154798366877 1.5716112933e-05 -56149212648.4 +UniRef50_UPI000317D125 hypothetical protein 1.27571085867e-07 7.83521536945e-08 -19870286.9023 +UniRef50_X1FS40 Marine sediment metagenome DNA, contig 3.43879872287e-07 3.41219143654e-06 1238715030.9 +UniRef50_A1B573 Allergen V5 Tpx 1 family protein 7.96148546697e-05 2.09110259581e-05 -23699456027.9 +UniRef50_Q3IYX7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.000137277419157 2.42642967881e-05 -45624784327.3 +UniRef50_UPI00036A7D45 MULTISPECIES 1.13471231213e-07 1.56048651678e-07 17189027.1254 +UniRef50_T9LFH4 Toxin YeeV 5.97451720276e-08 1.61393123602e-07 41036525.4111 +UniRef50_P0ADW3 Inner membrane protein YhcB 0.000164671959612 4.44085270977e-06 -64687264113.1 +UniRef50_R5VVL9 4.9773965812e-05 5.77616151891e-06 -17762453506.9 +UniRef50_Q9JUC8 Lipoyl synthase 3.61955290894e-05 3.72128630819e-05 410710216.864 +UniRef50_UPI00017450C8 tetratricopeptide repeat protein kinase domain protein 3.55865412403e-08 1.19050114463e-06 466253197.784 +UniRef50_P76508 4.59062602564e-05 3.29269292417e-05 -5239915204.94 +UniRef50_E3DRH8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 9.09194369937e-08 1.61480649803e-07 28486427.4946 +UniRef50_C0QI21 N acetyl gamma glutamyl phosphate reductase 1.59244804546e-07 2.20097980461e-07 24567173.8693 +UniRef50_K1JLF6 1.72562351112e-05 5.23147878187e-06 -4854541690.49 +UniRef50_P76507 3.03260726918e-05 1.0133336131e-05 -8152055542.34 +UniRef50_Q115Z7 Holliday junction ATP dependent DNA helicase RuvB 0.000133096701415 0.000129468651524 -1464688262.18 +UniRef50_K1E5L6 Coagulation factor 5 8 type domain containing protein 1.53402792841e-07 5.0932755955e-07 143691196.008 +UniRef50_A6M156 9.90543801162e-06 2.46384196221e-05 5947885470.17 +UniRef50_I3TGS2 1.27400039857e-06 2.58772846002e-07 -409859821.216 +UniRef50_B6AXL4 1.9995246827e-07 6.94885137342e-08 -52669899.4189 +UniRef50_Q07LR9 NLPA lipoprotein 3.20293728898e-07 1.12776645384e-07 -83777193.1356 +UniRef50_M4TWI8 Response regulator 8.5083243167e-07 1.33627468419e-06 195978994.389 +UniRef50_S5S5I1 Alcohol dehydrogenase iron type protein 0.00011034620392 2.03531443053e-05 -36331302505.5 +UniRef50_UPI00030FA7EB hypothetical protein 4.45654893596e-07 5.54734200101e-07 44036654.5897 +UniRef50_R4NJ09 Alpha L Rha alpha 1,3 L rhamnosyltransferase 6.29167432534e-05 1.41291879752e-05 -19696134756.4 +UniRef50_L9FSE1 Transposase IS66 family protein 5.96077156386e-07 6.8625434598e-07 36405638.0377 +UniRef50_A8LR58 2.5558112201e-05 3.08872581373e-07 -10193427877.4 +UniRef50_UPI000380D395 hypothetical protein, partial 3.39514094407e-06 9.26591834327e-07 -996583568.106 +UniRef50_R4X9Z7 Glutamate dehydrogenase 9.42144730903e-07 4.94488207672e-05 19582740359.7 +UniRef50_UPI000478F011 hypothetical protein 7.23552906846e-08 2.47633462258e-07 70761948.7691 +UniRef50_I4XXI7 Malonate transporter, MadM subunit 4.82892448182e-06 7.61494326874e-05 28792964363.7 +UniRef50_Q667I7 Bifunctional uridylyltransferase uridylyl removing enzyme 3.38999186219e-05 8.03711080825e-06 -10441132886.7 +UniRef50_UPI00041C4BFA manganese ABC transporter substrate binding protein 9.67563100572e-08 9.68387051791e-07 351888026.55 +UniRef50_Q0TMJ7 Amidohydrolase homolog 1.06634460129e-06 1.49632263408e-05 5610341692.15 +UniRef50_Q2YLX5 Peptidyl tRNA hydrolase 2.53848084632e-05 8.36529997742e-06 -6870984428.57 +UniRef50_W1BF78 Dipeptide transport system permease protein DppB 2.78279003479e-07 4.46881145938e-07 68066753.8916 +UniRef50_L6WUR9 Lipoprotein 3.66457993322e-07 1.28344243184e-06 370197870.494 +UniRef50_UPI00031F8523 V type sodium ATP synthase subunit J 3.19525797373e-07 4.84508693346e-08 -109436274.912 +UniRef50_Q8XA44 tRNA specific adenosine deaminase 1.08406157811e-07 4.92810277164e-07 155188660.152 +UniRef50_A6W2Y7 Monosaccharide transporting ATPase 3.24969993507e-05 6.8754044312e-06 -10343752281.3 +UniRef50_UPI00035DAB5C transposase ISM1, partial 7.02341719641e-06 5.46882787401e-06 -627606786.409 +UniRef50_B3PH29 Anhydrase, family 3 protein 5.78541366732e-07 1.27346516268e-06 280549264.098 +UniRef50_UPI00046594C3 hypothetical protein 2.36279446315e-07 1.28197397059e-07 -43634049.6005 +UniRef50_UPI00036E4560 hypothetical protein, partial 4.10241029093e-07 3.74551783544e-07 -14408186.3844 +UniRef50_Q8EB10 Sulfate adenylyltransferase subunit 1 4.56290064999e-05 0.000110216948102 26074944607.9 +UniRef50_A7MQT1 5.61058933288e-07 1.94172051635e-06 557390023.704 +UniRef50_W0FVK3 NAD dependent dehydrogenase 9.519142912e-07 9.81958860128e-07 12129361.1646 +UniRef50_Q9Z3R8 Probable alpha glucosidase 4.19021671831e-07 2.24441766589e-07 -78554295.5101 +UniRef50_A6VB08 Lipoprotein, putative 1.33040113952e-05 1.45368780689e-05 497723405.148 +UniRef50_A6M2Z6 Transketolase, central region 1.98676836237e-06 2.56601005451e-05 9557214706.61 +UniRef50_Q72VJ3 3.71947635408e-07 2.25696809017e-07 -59043253.3135 +UniRef50_UPI00036DBF3B hypothetical protein 8.15454287158e-07 4.40496564858e-07 -151375033.741 +UniRef50_E2Q4F7 TT_ORF1 domain containing protein 6.3928850031e-07 1.61673432903e-06 394606875.663 +UniRef50_U2ENE3 Periplasmic binding protein 2.85700007555e-08 2.89747831027e-07 105440695.093 +UniRef50_P28630 DNA polymerase III subunit delta 2.0401622951e-05 1.22573156354e-05 -3287956805.2 +UniRef50_R4RC10 Isopenicillin N epimerase CefD 6.5600996731e-06 5.06446714017e-06 -603805207.019 +UniRef50_UPI0003B76D70 adenylylsulfate kinase 3.1760298261e-08 7.3139189832e-07 282449862.389 +UniRef50_D6ZZA5 Peptidoglycan binding domain 1 protein 1.12810292391e-07 2.02989113742e-08 -37347979.7588 +UniRef50_A7X6Z3 Oxygen dependent choline dehydrogenase 0.000266450825195 8.65869628658e-05 -72613248400.0 +UniRef50_F5YQ07 4Fe 4S ferredoxin, iron sulfur binding domain protein 1.23420192642e-05 1.30561893988e-05 288319247.191 +UniRef50_D3HD08 3.28721950187e-05 7.49590940209e-06 -10244717905.5 +UniRef50_UPI00028A32C2 helix turn helix domain containing protein 7.49824836922e-07 4.50891182432e-07 -120683184.646 +UniRef50_Q8QNC0 EsV 1 162 1.65057960656e-07 2.7326564325e-07 43684769.3208 +UniRef50_T0QKP7 1.17471851089e-07 6.84124153347e-08 -19805896.241 +UniRef50_O52618 Nod factor export ATP binding protein I 1.15440126823e-07 5.20458689605e-07 163510963.932 +UniRef50_T2ELK1 Sulfotransferase family protein 6.86740677595e-06 3.815815323e-06 -1231964916.79 +UniRef50_I2E190 IS5 family transposase 6.31971948042e-07 4.82977642552e-07 -60150829.492 +UniRef50_Q9RV93 3.31128060398e-06 0.000226977964962 90296985174.2 +UniRef50_UPI000467A336 glutamate synthase, partial 4.19202229909e-06 4.64600680883e-07 -1504805847.88 +UniRef50_UPI0003B755FD sugar ABC transporter permease 3.31841117064e-07 2.59186644596e-07 -29331502.106 +UniRef50_UPI00047BD144 hypothetical protein 1.69282454335e-08 2.68844048551e-08 4019423.73431 +UniRef50_A8IEI6 Adenine phosphoribosyltransferase 6.2134786803e-07 6.53256005402e-07 12881706.614 +UniRef50_Q7UZP0 Lysine tRNA ligase 6.88212749729e-08 9.59183476848e-08 10939420.7723 +UniRef50_W7X3Q1 Fasciclin domain protein 2.77577154807e-06 6.60890074709e-07 -853803603.31 +UniRef50_Q84F59 0.000163657478115 3.97942307757e-05 -50005112923.7 +UniRef50_Q0WLU6 NADH dehydrogenase subunit 4 6.02061209236e-07 5.99202175085e-07 -1154227.17105 +UniRef50_UPI00044341F7 PREDICTED 1.69861130957e-07 8.58331240898e-08 -33923137.5119 +UniRef50_A6LZ49 Transcriptional regulator, LysR family 2.46131874043e-06 3.92283248233e-06 590031032.395 +UniRef50_UPI000371865D hypothetical protein 7.60807085529e-08 1.17545556005e-06 443831118.397 +UniRef50_UPI000479EF00 hypothetical protein 3.73149519956e-07 3.60997969034e-07 -4905730.22351 +UniRef50_L7WU99 CapB protein 0.000149037257289 5.23064263405e-05 -39051423474.7 +UniRef50_B2V6Y7 Argininosuccinate lyase 3.01244571453e-07 1.96113181007e-07 -42442832.4303 +UniRef50_Q4L350 Transposase for IS1272 3.33705899427e-05 1.99652314501e-05 -5411907725.71 +UniRef50_P22350 Pyrroline 5 carboxylate reductase 1.86415467351e-05 4.78086225284e-06 -5595728415.23 +UniRef50_F2DQI0 Predicted protein 1.08427779151e-07 1.81990559766e-07 29698197.2511 +UniRef50_Q9RUB4 4.28318283571e-06 0.000376344763145 1.5020582568e+11 +UniRef50_S5YGA2 2.41878721462e-05 8.85802446625e-06 -6188847626.8 +UniRef50_G4R4C9 2.4903750192e-07 1.79583286765e-07 -28039518.9571 +UniRef50_UPI00040657AE hypothetical protein 1.11079261536e-07 9.41255083237e-07 335152166.624 +UniRef50_R5HYR6 6.28359688057e-06 9.58286579861e-06 1331955348.8 +UniRef50_P0AET9 7 alpha hydroxysteroid dehydrogenase 2.87892899419e-05 1.65411092814e-05 -4944740834.72 +UniRef50_I6T5H3 6.01757293409e-05 1.75847886082e-05 -17194485423.4 +UniRef50_F8LGT0 Transcriptional regulator, DeoR family 5.23111158419e-05 8.7464327345e-06 -17587597169.2 +UniRef50_D0FNY6 2.56885584659e-07 2.83732477631e-07 10838420.1412 +UniRef50_UPI0004637F8D hypothetical protein 6.50179921258e-07 8.88771630704e-06 3325594524.88 +UniRef50_G5KUR8 Mg chelatase like protein 1.6126832959e-07 2.81428170992e-07 48510002.5011 +UniRef50_W8ERS2 Histidine kinase 1.83554770233e-06 8.9417606668e-05 35357951957.2 +UniRef50_D4HF76 Transglycosylase 1.01002251891e-06 6.54308001118e-05 26007458446.1 +UniRef50_N0B0S7 PspA IM30 3.34235738504e-07 2.68469732005e-06 948910183.879 +UniRef50_O29399 tRNA splicing ligase RtcB 3.84933982197e-05 7.03525357641e-06 -12700039027.3 +UniRef50_UPI000225AE96 prolipoprotein diacylglyceryl transferase 8.81528502218e-08 7.09577916565e-08 -6941856.14991 +UniRef50_Q1GDV2 DNA topoisomerase 4 subunit A 6.73900955291e-05 1.33738013414e-05 -21807040818.0 +UniRef50_Q58595 2 isopropylmalate synthase 1.4604619618e-07 5.26669404393e-08 -37698351.4348 +UniRef50_J7R5F6 3.96102861061e-05 1.18571883141e-05 -11204266147.4 +UniRef50_UPI0004665B0F hypothetical protein 6.58385326648e-08 8.75487939531e-08 8764698.89695 +UniRef50_Q5F6F8 4.15714199126e-07 1.47211644654e-06 426482550.793 +UniRef50_UPI0004246E9D hypothetical protein 3.65810496324e-08 4.85865558552e-07 181381669.592 +UniRef50_UPI00042410AD 50S ribosomal protein L18 7.12670454534e-06 1.85039029824e-06 -2130112809.21 +UniRef50_B9KWX6 1.17645297998e-05 5.21212169004e-06 -2645287561.0 +UniRef50_Q91ZA3 Propionyl CoA carboxylase alpha chain, mitochondrial 9.15177534939e-08 3.35519539725e-08 -23401504.5871 +UniRef50_P14853 Cytochrome c oxidase subunit 3 9.98256194566e-07 4.17520025541e-07 -234450317.87 +UniRef50_A0A028VK75 ATPase 3.24650420851e-07 1.8337368967e-07 -57035150.0382 +UniRef50_Q8REG7 Phosphonates import ATP binding protein PhnC 2.58666535734e-07 1.76345514913e-07 -33234006.298 +UniRef50_A3PM78 Haloacid dehalogenase domain protein hydrolase 0.000161952996633 4.02869674376e-05 -49118068996.1 +UniRef50_B1KTX4 1.03645601336e-07 7.35096575627e-08 -12166250.3109 +UniRef50_UPI00026306BC gluconate transporter 1.23955417445e-07 2.60118307435e-07 54970629.5955 +UniRef50_D8TM72 2.63667171485e-08 2.45553114242e-07 88488238.2264 +UniRef50_D6XXB5 TRAP transporter solute receptor, TAXI family 3.32338462253e-07 4.83950273141e-07 61207548.5416 +UniRef50_S5SY81 WGR domain containing protein 3.46791339162e-07 4.07557989943e-07 24532242.6109 +UniRef50_K9H593 Chromosomal replication initiator protein DnaA 8.41092831116e-07 1.32487430291e-07 -286072695.879 +UniRef50_B5FN15 Multidrug resistance protein MdtL 2.81771296233e-05 1.54972262673e-05 -5119032584.73 +UniRef50_B1I3M7 Sulfate adenylyltransferase 5.92811319744e-07 1.77912107368e-07 -167499903.422 +UniRef50_UPI0002891CEE hypothetical protein 4.90987109103e-08 1.22850232201e-07 29774394.178 +UniRef50_A1JJF7 LPS assembly protein LptD 5.52942116325e-06 7.48268678708e-07 -1930209929.35 +UniRef50_UPI0003B5E20B ABC transporter permease 2.38179331863e-08 6.32744767222e-07 245831235.273 +UniRef50_UPI0003506E3F 8.64111873981e-08 5.56432354766e-06 2211500441.38 +UniRef50_B0RWV1 4.12396776079e-07 2.20054004199e-07 -77651137.3192 +UniRef50_Q8DQD2 ADP dependent NAD(P)H hydrate dehydratase 8.66254544854e-05 7.40832900304e-05 -5063425700.15 +UniRef50_J7QYC7 2.37824233763e-05 7.72069817495e-06 -6484315563.34 +UniRef50_G5QFD3 Potassium transporting ATPase B chain 1.07988772987e-07 2.39433550442e-05 9622629856.52 +UniRef50_B2TQK8 Amino acid ABC transporter, amino acid binding permease protein 3.27299990334e-06 1.207208971e-05 3552300531.92 +UniRef50_P39315 Quinone oxidoreductase 2 3.69091838146e-05 0.000332097076678 1.19170974712e+11 +UniRef50_J1HLJ2 PF06224 family protein 1.51305418063e-07 1.72762325925e-05 6913543246.79 +UniRef50_UPI000443234B PREDICTED 8.25692135584e-08 1.08058399255e-06 402910813.298 +UniRef50_Q4FR51 Lon protease 1.4241945601e-06 7.99614723719e-05 31706462813.4 +UniRef50_UPI00035C8CB7 hypothetical protein 1.8530286099e-07 9.65544700208e-07 314993205.136 +UniRef50_P42593 2,4 dienoyl CoA reductase [NADPH] 2.154338277e-05 5.66652772132e-06 -6409681214.08 +UniRef50_UPI00035C6B06 hypothetical protein, partial 1.69834903978e-06 2.06035220209e-07 -602465401.71 +UniRef50_P77569 Mhp operon transcriptional activator 2.76614843707e-05 2.24683881851e-05 -2096516656.58 +UniRef50_Q3IUW5 Type IV conjugative transfer system lipoprotein 9.05210492279e-05 2.10366365798e-05 -28051710055.7 +UniRef50_E4CEH2 1.20325682876e-07 3.00415150249e-07 72704327.9248 +UniRef50_UPI000472C3D3 hypothetical protein 1.98913436727e-07 1.08255592154e-07 -36599684.351 +UniRef50_G8V705 Poly glycerophosphotransferase family protein 0.000124867629645 4.41201281778e-05 -32598757225.6 +UniRef50_P96672 UPF0750 membrane protein YdeO 0.00030161554109 0.000118023373196 -74118411108.1 +UniRef50_W9A418 2.80097172331e-07 5.38109978749e-07 104162936.124 +UniRef50_Q0C269 Transcriptional regulator, LysR family 1.68572651712e-05 2.29520755339e-06 -5878881356.85 +UniRef50_W5X6C6 NADP oxidoreductase coenzyme F420 dependent 1.38034065239e-07 2.6045564056e-07 49423092.2388 +UniRef50_P0AGI3 Ribose transport system permease protein RbsC 3.98588254333e-05 1.66581919939e-05 -9366380423.27 +UniRef50_B3M6C2 GF24314 2.86300390338e-08 3.51630115725e-07 130399094.617 +UniRef50_T2ESK7 Integrase core domain protein 8.04781091232e-06 8.93709383485e-06 359014428.554 +UniRef50_Q59939 Citrate synthase 0.000237748489526 0.000137539406738 -40455636425.2 +UniRef50_UPI00036F2872 hypothetical protein 5.69977372716e-08 1.95042719908e-07 55730453.4926 +UniRef50_A8LU90 WGR domain protein 1.60707770732e-06 3.47175951729e-07 -508637799.465 +UniRef50_W4KZV0 Glycosyltransferase Gtf1 0.000268611872437 8.36474990691e-05 -74672387296.8 +UniRef50_UPI0003074063 hypothetical protein 2.10445834887e-08 1.38793589991e-06 551830798.081 +UniRef50_P71082 Putative multidrug export ATP binding permease protein YgaD 0.000220007146912 6.80196635461e-05 -61359212131.0 +UniRef50_A5WHZ1 Flavoprotein involved in K+ transport like protein 3.81984443328e-08 8.75207158214e-06 3517897516.98 +UniRef50_UPI0003C116D2 2.67446462033e-06 1.28363987929e-07 -1027892069.47 +UniRef50_Q8CN53 Antiholin like protein LrgB 0.000122743204635 5.31253146621e-06 -47408203794.7 +UniRef50_Q02432 Chlorophyllide reductase 52.5 kDa chain 2.63846058768e-05 5.7853276274e-06 -8316181410.85 +UniRef50_A7ZII5 Protoheme IX farnesyltransferase 4.09059364019e-05 4.41892508331e-06 -14730254215.3 +UniRef50_UPI0004688FC2 cytochrome C biogenesis protein 4.29874587395e-07 1.20615993409e-06 313395920.553 +UniRef50_Q2P0E2 ISXoo4 transposase 5.42580909954e-08 1.98191545558e-07 58107701.8692 +UniRef50_G7U8S7 Siderophore interacting protein 1.53034860351e-06 5.07444785627e-05 19868348189.8 +UniRef50_D7BMW7 Portal protein 8.08370020024e-08 6.40715828389e-07 226029952.698 +UniRef50_UPI0004754826 hypothetical protein 1.12647225466e-07 1.47943447565e-07 14249517.9947 +UniRef50_D3QH70 5.27247314546e-05 3.3343880484e-05 -7824287366.62 +UniRef50_UPI0004707087 amino acid ABC transporter permease 1.67111281574e-07 1.64407915099e-07 -1091382.21999 +UniRef50_A5WH07 UPF0313 protein PsycPRwf_2008 6.03977582125e-07 8.73841225987e-05 35034209455.3 +UniRef50_H7CWQ5 ABC transporter, permease ATP binding protein 7.58511699003e-07 9.12489214596e-06 3377610453.47 +UniRef50_N0B4L4 40 residue YVTN family beta propeller repeat protein 2.24455100741e-06 2.31086379521e-07 -812860378.269 +UniRef50_Q5V468 Succinyl CoA 4.95165037583e-08 4.82212731119e-07 174684776.765 +UniRef50_Q12545 3 isopropylmalate dehydrogenase 3.15730771617e-07 2.6267715002e-07 -21418398.0799 +UniRef50_F8DJT3 Phosphorylase family 0.000114088337284 7.22241942049e-06 -43143082434.0 +UniRef50_Q044B7 Translation initiation factor IF 2 9.38742386886e-05 1.53867335731e-05 -31686368965.1 +UniRef50_F0P650 Ribonuclease BN like family protein 0.000197977634555 7.61372803618e-05 -49188446137.0 +UniRef50_K0B0P3 1.64516223593e-05 1.25893229574e-05 -1559257664.29 +UniRef50_E6CDL3 1.19582628827e-05 3.21641053183e-05 8157346544.82 +UniRef50_K7S3L7 Putative glucoamylase S1 S2 3.86064887448e-07 5.64289884223e-07 71951618.2647 +UniRef50_UPI000410322D hypothetical protein 1.18331236068e-07 5.45620597643e-07 172501958.698 +UniRef50_C4LJY7 Glutamate racemase 4.80674874383e-08 3.04920371019e-07 103694661.041 +UniRef50_UPI00026292D1 oligopeptide dipeptide ABC transporter ATPase, partial 2.71110955519e-07 8.32355046718e-07 226581126.857 +UniRef50_H4BLQ2 Pyrimidine specific ribonucleoside hydrolase rihA 1.60529200563e-05 2.85330149942e-06 -5328847988.95 +UniRef50_P0AEJ1 Multidrug export protein EmrB 4.54750177625e-05 5.67373455482e-05 4546739931.39 +UniRef50_UPI0000056230 50S ribosomal protein L22 2.30049205596e-07 6.47734098579e-07 168624516.867 +UniRef50_P0AFK8 Spermidine putrescine transport system permease protein PotC 4.9891954939e-05 6.71866591673e-06 -17429586574.1 +UniRef50_U1F6C3 Adhesion protein associated protein 6.78222023223e-08 7.75800965063e-07 285819714.395 +UniRef50_UPI00026291F3 3 5 exonuclease 1.03992161944e-06 4.84271330301e-07 -224322840.321 +UniRef50_UPI0002D58150 hypothetical protein 5.52757664424e-07 2.16218054421e-07 -135865170.364 +UniRef50_F0MXQ2 Type IV pilus assembly protein PilC 2.00322740068e-06 2.96918977238e-05 11178255987.6 +UniRef50_Q9ZKM0 Putative 1.58830009337e-06 4.76126313204e-05 18580587298.4 +UniRef50_K8E4E7 Metallo beta lactamase superfamily protein 1.02920186949e-06 1.39722942537e-07 -359093557.945 +UniRef50_F0KHD0 1.41017584923e-06 9.59976139252e-07 -181751147.49 +UniRef50_V4ZPA3 1.17947395895e-07 1.67846203333e-07 20144760.8899 +UniRef50_C2VC63 Fructose bisphosphate aldolase, class II 2.52217809923e-06 4.58815576904e-06 834060537.699 +UniRef50_UPI00041FD2D5 hypothetical protein 4.31957227538e-07 1.44203889018e-06 407782362.304 +UniRef50_UPI00034AB6AD ABC transporter 6.7995594094e-08 8.03926991618e-07 297104536.074 +UniRef50_UPI0004706166 fusaric acid resistance protein, partial 4.57437543562e-08 4.88931289523e-07 178920246.47 +UniRef50_P44940 Putative acid amine ligase HI_0929 9.83036429352e-07 7.9963170838e-05 31885249456.0 +UniRef50_Q54E41 Hydroxyacid oxidase 4.06618197875e-08 4.08986489175e-07 148697188.884 +UniRef50_UPI0002D41DEC protoheme IX farnesyltransferase 5.6675087087e-08 1.0039448289e-07 17650056.583 +UniRef50_UPI0004757165 phosphate acetyltransferase 3.87306574496e-08 1.42193108073e-07 41769060.9435 +UniRef50_K2EIZ6 5.89657995632e-07 1.45873730064e-07 -179161153.855 +UniRef50_A3PJ18 UDP glucose pyrophosphorylase 5.16621473399e-05 7.25866773884e-06 -17926229606.9 +UniRef50_A0A024DE18 Pyruvate dehydrogenase 4.53337581121e-05 4.55614115135e-05 91906471.7666 +UniRef50_G7U623 Major facilitator superfamily permease 3.20059257349e-06 4.47557946953e-05 16776345036.2 +UniRef50_UPI000373646F hypothetical protein 8.36053778427e-07 1.1413501316e-07 -291447464.478 +UniRef50_UPI000350E784 3.01512317583e-07 4.43599348034e-07 57362277.797 +UniRef50_P0A9U1 4.47154575327e-05 1.39357662439e-05 -12426139082.6 +UniRef50_UPI000476EE69 ArsR family transcriptional regulator 4.22195450058e-07 1.56270152851e-07 -107357305.753 +UniRef50_P0A9U5 4.17942677078e-05 4.98131284816e-05 3237312496.87 +UniRef50_Q5KWI5 Ribonuclease PH 2.76644773432e-07 1.31821815388e-05 5210123560.94 +UniRef50_T0JW92 0.000104594235933 9.9894971916e-05 -1897150550.12 +UniRef50_UPI000378D30F hypothetical protein 1.77119950835e-06 5.26650876341e-07 -502439555.072 +UniRef50_Q58989 Phosphoserine phosphatase 8.11655341737e-08 1.5058154654e-07 28024096.0225 +UniRef50_B8KMG5 Transposase, IS4 family protein 5.07143328158e-07 2.84763334279e-07 -89777532.4383 +UniRef50_S1EIE9 2.1425023898e-07 5.67956537263e-07 142795573.081 +UniRef50_UPI00031BB00E hypothetical protein 3.43580704297e-08 5.31265247583e-08 7577055.32729 +UniRef50_C0PC97 1.51899916197e-06 2.6793677521e-07 -505069237.797 +UniRef50_P42799 Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic 0.000206749201848 5.60104593801e-05 -60855080106.7 +UniRef50_Q5HPM8 Surface lipoprotein related protein 6.71119758549e-05 7.86006285432e-06 -23920724381.1 +UniRef50_A6M2Q9 Helicase, putative 4.06663890798e-06 1.66458872794e-05 5078396932.27 +UniRef50_P77427 6.36375824535e-05 3.44453904327e-05 -11785246147.3 +UniRef50_X5WUC6 1.45914964006e-07 4.28321461132e-07 114010968.407 +UniRef50_C5QZ07 0.000168506349734 1.23909107075e-05 -63025718486.7 +UniRef50_Q4LC37 TraU protein 1.46618981347e-06 3.43954391347e-07 -453060211.287 +UniRef50_M0SF49 8.42492305231e-07 7.6251765894e-06 2738252878.42 +UniRef50_UPI00046CC98D hypothetical protein 4.47163154342e-07 3.1167390124e-07 -54698674.1174 +UniRef50_A3PIL0 TonB dependent receptor 2.59910691639e-05 1.32761718439e-05 -5133160077.42 +UniRef50_R8A8K0 1.82911510156e-06 2.86068806048e-07 -622946724.805 +UniRef50_UPI0003C1AE3D PREDICTED 2.90913755577e-06 2.60486180146e-06 -122839855.898 +UniRef50_A9MJT7 Membrane protein insertase YidC 3.73025938568e-05 1.47585294482e-05 -9101315448.53 +UniRef50_M9VCF0 Dolichyl phosphate mannose protein mannosyltransferase 1.11025290843e-06 5.42324650924e-05 21446088941.5 +UniRef50_W8YLC5 2.28822111516e-06 1.52838058925e-05 5246477048.35 +UniRef50_UPI0002375397 NAD dependent dehydratase 1.05495154676e-07 4.29256429273e-07 130706399.552 +UniRef50_F0YP70 5.8403121334e-07 6.19487132037e-07 14313989.471 +UniRef50_A6LVH3 Methyl accepting chemotaxis sensory transducer 2.84506683835e-06 1.36683592307e-05 4369495955.55 +UniRef50_P23482 Hydrogenase 4 component B 4.30052573431e-05 1.32803842956e-05 -12000296014.5 +UniRef50_F0Y482 Expressed protein 4.99429150894e-06 8.77005167979e-06 1524320714.76 +UniRef50_C4Z7U3 Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase 6.92708706018e-06 1.61887257858e-05 3739037206.62 +UniRef50_O74942 Peptidyl prolyl cis trans isomerase 9 3.42213777703e-08 3.54338181548e-08 489477.061539 +UniRef50_W6RRV7 Magnesium transporter, CorA family 3.18246165192e-06 1.99313861778e-06 -480144303.517 +UniRef50_O33952 UDP glucose 6 dehydrogenase 2.74513517939e-05 4.425699855e-05 6784645823.91 +UniRef50_UPI000392EF25 PREDICTED 3.35425704612e-08 2.0364169556e-07 68671104.1535 +UniRef50_H8GU00 Peptidyl prolyl cis trans isomerase 3.9596432397e-06 0.000475116707915 1.90211888757e+11 +UniRef50_UPI0004700EA0 urocanate hydratase, partial 1.51311252485e-07 2.14046922389e-07 25327159.7935 +UniRef50_G7MD42 PHP domain protein 1.71584540393e-06 1.31270991032e-05 4606863150.24 +UniRef50_R4ZPM4 Cell wall surface anchor family protein 9.17223072168e-06 1.35881919561e-06 -3154370114.42 +UniRef50_Q17VD8 Complete genome, strain Sheeba 7.88070957963e-07 3.79601802801e-05 15006836686.4 +UniRef50_U0FZ44 8.38539003978e-07 3.42518586568e-07 -200249529.363 +UniRef50_C6SMN5 3.99938220839e-07 5.6936897477e-06 2137152453.03 +UniRef50_I4EB03 9.74197939926e-06 7.6705637713e-06 -836255908.136 +UniRef50_UPI0003000992 hypothetical protein 5.79721264155e-07 4.64308209259e-07 -46593666.539 +UniRef50_P37630 Inner membrane protein YhiM 1.68355501581e-05 7.7337651489e-06 -3674502299.68 +UniRef50_P62457 Histidinol dehydrogenase 4.04931564807e-08 5.94466657252e-08 7651764.26772 +UniRef50_A3DIZ5 DNA directed RNA polymerase subunit beta 4.42242688008e-08 5.35491146355e-08 3764554.69219 +UniRef50_UPI000479E680 FIST domain containing protein 3.99281326592e-08 5.90085750876e-08 7703008.7517 +UniRef50_E9CGB4 Acyl CoA dehydrogenase 2.61179896422e-06 4.53793483554e-05 17265784506.1 +UniRef50_P18949 Cystathionine beta lyase 3.15150051396e-05 1.74372783898e-05 -5683351042.03 +UniRef50_R9DK57 1.77107447034e-05 1.77190023117e-05 3333697.80296 +UniRef50_Q67MT5 Peptide chain release factor 3 0.000269745585661 0.000156042547514 -45903311793.1 +UniRef50_P77526 Disulfide bond oxidoreductase YfcG 3.20530481829e-05 4.81494628027e-06 -10996355987.2 +UniRef50_H8FYF0 1.26889792417e-06 1.511926604e-06 98113660.3446 +UniRef50_C1F2I6 Metallo beta lactamase family protein 4.72678641906e-08 1.44945952648e-06 566081980.893 +UniRef50_N3SI82 6.96715965178e-07 3.26121270881e-06 1035318805.32 +UniRef50_UPI0003B41E49 lactose phosphotransferase system repressor 8.76831007685e-08 2.59562911509e-07 69389988.7982 +UniRef50_M0YT93 4.83187260919e-07 5.80663959685e-07 39352539.4654 +UniRef50_Q2FF88 Accessory gene regulator protein B 5.17729525747e-05 1.00538030667e-05 -16842532607.9 +UniRef50_O52376 Thiol 1.78903312256e-06 3.25119308468e-06 590291919.428 +UniRef50_A7FJ95 3.15869328292e-05 3.12720690777e-05 -127114360.293 +UniRef50_UPI0003826EC3 hypothetical protein 1.42553205343e-07 1.60760342414e-07 7350444.66226 +UniRef50_O06456 N5 carboxyaminoimidazole ribonucleotide mutase 4.09452414595e-06 2.22783185919e-05 7341020958.06 +UniRef50_Q8CQE0 Galactosamine containing minor teichoic acid biosynthesis protein 9.45522039515e-05 2.38012943504e-05 -28563010417.3 +UniRef50_UPI0003C1158B 1.16455332131e-07 1.06438965085e-07 -4043730.29112 +UniRef50_UPI00037E8C2C hypothetical protein 3.06378498639e-08 1.21123342843e-07 36530103.8975 +UniRef50_F0RKJ6 Transposase IS4 family protein 4.27372358825e-05 0.00871496431206 3.50108449085e+12 +UniRef50_J8VEE3 Plasmid pRiA4b ORF 3 like protein 3.70357774747e-06 7.43621022499e-07 -1194970852.62 +UniRef50_B7MNC1 Ribosomal RNA small subunit methyltransferase C 3.12178913159e-05 1.31068876385e-05 -7311634431.57 +UniRef50_Q49WJ7 Bifunctional purine biosynthesis protein PurH 8.86602575264e-08 1.02267683366e-07 5493484.79334 +UniRef50_UPI00005C7E8C hypothetical protein 0.000124749400872 2.72922113577e-05 -39344663341.1 +UniRef50_Q4FMW8 GMP synthase [glutamine hydrolyzing] 6.48587772557e-08 4.57245723309e-05 18433386669.3 +UniRef50_E0NC31 9.59710141151e-06 3.29570359183e-06 -2543951626.65 +UniRef50_A7WZ80 Putative antiporter subunit mnhE2 0.000230557001751 1.92880236101e-05 -85291879037.4 +UniRef50_UPI00036BF214 hypothetical protein 3.98175603579e-07 9.36164526744e-07 217192730.148 +UniRef50_P63651 Probable succinyl CoA 6.75436559509e-07 9.40602551564e-07 107050764.945 +UniRef50_UPI0003AB3DEF hypothetical protein 4.66826366622e-07 2.345354503e-07 -93778693.4493 +UniRef50_R4R8Z7 Rhs family protein 1.97923249357e-05 5.08051146677e-06 -5939339631.65 +UniRef50_UPI000471A1D9 branched chain amino acid transporter II carrier protein 2.16251055637e-07 8.2264918714e-08 -54091847.6706 +UniRef50_UPI00046FA3C6 hypothetical protein 1.13205205058e-07 6.48459643173e-08 -19523218.9216 +UniRef50_UPI00047136FE hypothetical protein 3.50774152836e-07 1.57386658726e-07 -78072904.5036 +UniRef50_B2V995 Protease HtpX homolog 2.65368097293e-06 1.2064799108e-05 3799383878.53 +UniRef50_K7YQ94 1.49615584159e-06 3.13043664521e-05 12033940411.3 +UniRef50_Q6LU24 Phosphoribosylformylglycinamidine synthase 1.18064922724e-07 8.29883450018e-08 -14160844.8645 +UniRef50_Q3IWC2 2.81554618479e-05 1.69401577093e-05 -4527755908.01 +UniRef50_D0Z2D3 4.11723962756e-08 1.36034314392e-08 -11129929.4137 +UniRef50_R8ZFX9 9.20697533784e-06 7.23224584158e-06 -797222530.296 +UniRef50_A3PQQ0 GCN5 related N acetyltransferase 5.41910816138e-06 7.51668921763e-06 846819212.622 +UniRef50_A0A058Z6L2 5.75771898761e-07 1.16266419368e-06 236935621.437 +UniRef50_Q8CNV6 Smooth muscle caldesmon 4.86611404903e-05 1.95886224467e-05 -11736932294.1 +UniRef50_UPI00037E8BDB hypothetical protein 4.39000968191e-08 1.50908533185e-07 43200618.9021 +UniRef50_UPI00036ED2AC hypothetical protein 3.21455397372e-08 6.21796107984e-08 12125123.0469 +UniRef50_S5XSF5 Nitrilotriacetate monooxygenase family FMN dependent 3.79713282874e-06 1.80254347023e-06 -805240200.394 +UniRef50_J5PQD7 5.30414795111e-07 4.5425061136e-07 -30748415.6199 +UniRef50_A0A022S8H0 Export membrane family protein 2.7375729983e-07 5.47673915852e-07 110583499.223 +UniRef50_O07002 Aspartate proton symporter 8.86811250236e-07 9.474006699e-05 37889711051.1 +UniRef50_UPI0002FCB073 hypothetical protein 7.51329904929e-08 4.97449641589e-07 170494414.456 +UniRef50_A5UK56 Arginine biosynthesis bifunctional protein ArgJ 1.91873740922e-05 1.90796007487e-05 -43509421.2986 +UniRef50_U5MQZ5 6.70253571197e-06 1.75372810923e-05 4374119667.3 +UniRef50_Q3JUT4 1.95875822572e-06 2.82900307522e-07 -676564406.667 +UniRef50_U6FWJ6 SdrH protein 7.37232847333e-08 1.20544441243e-07 18902275.4432 +UniRef50_UPI00037A959D hypothetical protein 8.98398331053e-08 2.06452220273e-07 47077851.6946 +UniRef50_V6QG63 Integrase 0.00340495265028 0.00114492453346 -9.12401084424e+11 +UniRef50_A2RFC7 ATP synthase subunit a 1.81774954504e-06 1.18928529676e-05 4067442887.13 +UniRef50_D3QCQ2 Ferric uptake regulation protein FUR 0.000227315782888 4.94963994773e-05 -71787867172.2 +UniRef50_UPI000311159F hypothetical protein 2.42489382401e-07 8.50752791715e-08 -63550005.1622 +UniRef50_Q5HKX7 Glycosyl transferase, group 1 family protein 9.11407783292e-05 3.57043674433e-05 -22380359355.9 +UniRef50_Q67N36 Aminomethyltransferase 4.53434975293e-07 2.8568963967e-06 970306869.612 +UniRef50_P42096 Protein LacX, chromosomal 3.74587985865e-05 1.65523416637e-05 -8440193210.81 +UniRef50_C2LZG9 Transcriptional regulator, PadR family 9.82532889278e-07 5.40069447397e-06 1783666048.68 +UniRef50_A0A022FMT2 1.13855603187e-06 2.34909539014e-07 -364813178.155 +UniRef50_Q6NDQ0 sn glycerol 3 phosphate import ATP binding protein UgpC 1.1924982064e-06 5.38699017568e-07 -263946755.55 +UniRef50_G4LIM7 3 hydroxyacyl CoA dehydrogenase NAD binding subunit 1.18706285809e-06 1.50671788373e-06 129048656.459 +UniRef50_X1PRM6 Marine sediment metagenome DNA, contig 1.98981235626e-07 3.39402990781e-07 56689985.7248 +UniRef50_I6G892 HTH type transcriptional regulator AdiY domain protein 4.07802318573e-08 1.20924809573e-07 32355349.5084 +UniRef50_Q7M8H4 7 cyano 7 deazaguanine synthase 1.71209854195e-07 2.88239751146e-07 47246405.5174 +UniRef50_P51763 Reaction center protein M chain 0.000118997366126 2.8989646317e-05 -36337221005.8 +UniRef50_I0C0V7 Multidrug resistance efflux pump 0.000143810148794 2.86481722427e-05 -46492303130.0 +UniRef50_UPI0003B40FE5 membrane protein 1.01575227073e-07 2.86329163576e-07 74587431.352 +UniRef50_Q39ZB4 NADH quinone oxidoreductase subunit I 1 6.16906823588e-07 9.05301873108e-07 116428620.496 +UniRef50_P0ACM7 1.81380880315e-05 2.59337466179e-05 3147203034.82 +UniRef50_Q8ZT92 GMP synthase [glutamine hydrolyzing] 1.16401488397e-07 1.75574987619e-07 23889067.7764 +UniRef50_E4GGL7 HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein 1.73689872173e-06 5.13727960718e-05 20038620861.2 +UniRef50_C3EUD3 8.26858130036e-06 8.1618149141e-06 -43102900.3041 +UniRef50_P42360 5.42758992229e-05 5.62067849748e-05 779522272.675 +UniRef50_UPI0003725E3A hypothetical protein 4.81687860299e-07 1.20899684931e-05 4686405341.08 +UniRef50_T0Z4X5 1.95129377807e-07 2.02479324225e-07 2967263.56293 +UniRef50_UPI0003A412EC hypothetical protein 2.38001694506e-08 3.87066651267e-08 6017935.22771 +UniRef50_U6ANF3 7.18193585248e-06 3.09772767695e-06 -1648844959.33 +UniRef50_UPI0004704A43 hydroxyethylthiazole kinase 4.37833872865e-08 6.71846892307e-08 9447392.76114 +UniRef50_D8ACP8 4.98197140088e-06 5.38571498834e-06 162996240.749 +UniRef50_Q7A7G4 0.000467306695097 8.11540816471e-05 -1.55894548675e+11 +UniRef50_P37351 Ribose 5 phosphate isomerase B 6.15641821572e-05 7.21498487204e-05 4273563492.3 +UniRef50_F2ENL3 1.23294685411e-07 1.85918619296e-07 25282050.5915 +UniRef50_UPI0002D4EE34 hypothetical protein 3.02069634802e-07 2.45073141908e-07 -23010183.6069 +UniRef50_UPI00037CDEEA hypothetical protein 3.56144046778e-07 5.57240743102e-07 81185204.04 +UniRef50_P39176 Probable L,D transpeptidase ErfK SrfK 3.48394284473e-05 2.84713635616e-05 -2570865939.3 +UniRef50_V4QXI1 AMP binding protein 1.16985549064e-07 7.15839379637e-08 -18329187.5416 +UniRef50_E1NTN7 4.88442278438e-07 1.77971188191e-07 -125340989.041 +UniRef50_L7U7P5 PT repeat DnaJ domain containing protein 6.00408038037e-08 8.06888900044e-08 8335885.77973 +UniRef50_J5KRR9 1.01632535199e-06 1.85567090397e-06 338854099.262 +UniRef50_A6LTF1 YodP 6.669567196e-06 9.17857565392e-06 1012917503.46 +UniRef50_UPI0003F9ADEE hypothetical protein 2.83977218502e-07 7.6415692039e-07 193854438.12 +UniRef50_Q9KTK8 tRNA sulfurtransferase 7.127516305e-05 6.32190111243e-06 -26222428910.4 +UniRef50_D2S427 LigA 5.71206999427e-07 4.80643688481e-06 1709814276.84 +UniRef50_UPI0002D844FC hypothetical protein 3.36650147472e-06 7.16804902958e-07 -1069715021.45 +UniRef50_UPI00037FB4E4 hypothetical protein 4.93765590195e-08 1.50746208874e-08 -13848113.356 +UniRef50_UPI0004270BC7 hypothetical protein 1.01205177747e-07 1.12415530168e-07 4525756.83885 +UniRef50_Q0K7P2 ABC type transporter, ATPase component 1.14980559286e-05 9.87185526324e-06 -656517164.332 +UniRef50_D0MEX8 FAD dependent oxidoreductase 7.84794155617e-07 0.000225019104155 90526142611.0 +UniRef50_B7LTE9 Transporter 1.90214857557e-07 6.9348195183e-08 -48795354.8011 +UniRef50_UPI00030DD9C9 hypothetical protein 2.71494169217e-07 3.1086703741e-07 15895310.0489 +UniRef50_G2TPA3 PfkB domain protein 2.45120771981e-06 2.2918118216e-05 8262742924.55 +UniRef50_Q9VM33 Elongation factor G, mitochondrial 7.81991071876e-08 3.92191805353e-08 -15736674.727 +UniRef50_O31248 Peptidyl prolyl cis trans isomerase (Rotamase) 1.87506171368e-06 7.68826125224e-05 30281468707.6 +UniRef50_P13656 Probable bifunctional chitinase lysozyme 3.09418910305e-06 7.6705637713e-07 -939492038.584 +UniRef50_G9AU18 3.4796642424e-06 7.12848869907e-07 -1116997318.52 +UniRef50_D3E347 5.66232522232e-06 6.1738684013e-06 206516258.695 +UniRef50_D3E1C8 Hydrolase HAD superfamily 4.58072974067e-05 4.63735485513e-06 -16620811020.1 +UniRef50_P33941 ABC transporter ATP binding protein YojI 1.53226538779e-05 4.44785353012e-06 -4390290349.21 +UniRef50_X6DV46 5.68701744273e-06 1.2064113701e-06 -1808875654.74 +UniRef50_UPI0003B521C3 cytochrome C biogenesis protein 4.07808394097e-07 1.92002172122e-06 610499077.103 +UniRef50_E6MXZ6 Exonuclease, DNA polymerase III, epsilon subunit 3.33057942696e-06 3.21163670353e-05 11621175698.8 +UniRef50_E7DWP7 WdaG 1.85000346112e-06 2.61925899583e-07 -641126399.497 +UniRef50_M4YXM1 Cell division protein FtsX 4.02878123008e-05 1.74187812226e-05 -9232508480.84 +UniRef50_D8JH95 ABC transporter family protein 9.87321679628e-07 6.2230426131e-05 24724592804.4 +UniRef50_A3PIS2 0.000126556561302 3.34320798334e-05 -37595495934.8 +UniRef50_P76085 Phenylacetate coenzyme A ligase 3.48159402361e-05 6.45734179598e-05 12013458922.4 +UniRef50_P0AEG3 Dipeptide transport system permease protein DppC 3.82370326485e-05 8.46996592862e-06 -12017330117.8 +UniRef50_A6NPX7 2.94773550239e-07 1.24306693792e-07 -68819561.8112 +UniRef50_B7IJP9 Probable manganese dependent inorganic pyrophosphatase 0.000220385364733 4.14181365992e-05 -72251266172.5 +UniRef50_A9KFA0 Ribonuclease 3 7.19583834191e-08 1.91850239598e-07 48401813.578 +UniRef50_I0JK39 1.40155688933e-06 4.58139504879e-06 1283739685.98 +UniRef50_U5MPS5 Acetyltransferase 2.41462252992e-06 3.73031627616e-06 531161710.735 +UniRef50_U5UQU4 TetR family transcriptional regulator 7.84496537669e-05 3.29349485352e-06 -30341463623.1 +UniRef50_N1N5F7 Clumping factor ClfB, fibrinogen binding protein 4.65457446223e-07 8.75444778166e-07 165516917.016 +UniRef50_P71237 Putative colanic acid biosynthesis glycosyl transferase WcaC 1.8559679204e-05 9.10964758709e-06 -3815093728.68 +UniRef50_UPI00036F4FFA hypothetical protein 5.50707252338e-07 1.72251895581e-07 -152787071.692 +UniRef50_P39830 Inner membrane protein YbaL 3.80738246987e-05 5.08316790971e-06 -13318732986.6 +UniRef50_F8DI48 Cytoplasmic alpha amylase 6.60532032062e-05 3.43393571422e-05 -12803268828.7 +UniRef50_UPI0003B686EF hypothetical protein 3.9335523464e-07 1.30407717908e-06 367669624.785 +UniRef50_Q5HRM6 PIN domain protein 0.000145722666425 3.17355799789e-05 -46017985577.1 +UniRef50_A0RH88 tRNA dimethylallyltransferase 1.22169338261e-07 7.28461723526e-06 2891568109.14 +UniRef50_Q83FR2 Hexulose 6 phosphate synthase 1.73956676891e-06 4.61536800775e-05 17930522565.1 +UniRef50_C5W449 3.67160193727e-05 7.93589111246e-06 -11618890950.5 +UniRef50_B6VLA0 3.11625000867e-08 5.61482663574e-08 10087060.4533 +UniRef50_B7MGB3 D galactonate dehydratase 2.2368293636e-06 1.52750019926e-06 -286364888.092 +UniRef50_G8RA51 Exotoxin 15 0.0001095422475 4.33777186573e-05 -26711432223.9 +UniRef50_UPI000248470C hemolysin type calcium binding region 4.32758235328e-07 1.10390279212e-07 -130143899.784 +UniRef50_A7IPS8 ParB domain protein nuclease 1.04832309532e-06 1.92018643122e-07 -345700615.39 +UniRef50_A3PSB0 3.71338731486e-05 8.80668731604e-06 -11436032534.3 +UniRef50_C4ZYY9 HTH type transcriptional regulator YidZ 2.4083939575e-05 5.72870158602e-06 -7410234820.26 +UniRef50_A3PR77 Major facilitator superfamily MFS_1 5.33483320643e-05 1.30158375924e-05 -16282722953.7 +UniRef50_D4HCV0 FAD linked oxidase, C terminal domain protein 3.37950167046e-06 5.72166321347e-05 21734710224.3 +UniRef50_E8SIU9 Phosphate regulon sensor protein PhoR SphS 0.000186450848692 6.62723171096e-05 -48517547956.1 +UniRef50_G7U4H3 8.70376173622e-06 9.13563313681e-05 33367856621.5 +UniRef50_B3H2W6 RNA pyrophosphohydrolase 0.0002035591341 4.39677476724e-06 -80404288459.7 +UniRef50_Q47SB4 3 isopropylmalate dehydrogenase 9.37601209206e-07 2.70034028822e-06 711639397.437 +UniRef50_S5CRE9 4.70740409928e-06 9.81397533082e-05 37719785919.5 +UniRef50_K4KJS3 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 1.78339837253e-06 5.05187568862e-05 19675062282.1 +UniRef50_Q1B492 LigA 3.62434192937e-08 1.99620239258e-06 791259488.918 +UniRef50_U3STE7 3.68500366505e-05 2.96800708731e-06 -13678591113.9 +UniRef50_M9VIL3 1.0544301365e-06 7.21478848789e-05 28701300094.3 +UniRef50_I0C1G5 SIR2 family protein 0.000149109102003 4.55407993982e-05 -41811794687.6 +UniRef50_H8H8S2 ABC transport system permease 3.43716196778e-06 3.01894934907e-05 10800244523.8 +UniRef50_Q2T751 Taurine import ATP binding protein TauB 2.18686184419e-07 1.18088977163e-07 -40612327.0358 +UniRef50_D6TV92 ATPase 9.92791472557e-09 2.33964619527e-08 5437417.79324 +UniRef50_UPI0002557200 2 nitropropane dioxygenase 8.3740781244e-07 8.11484121652e-07 -10465712.0906 +UniRef50_X1J3J4 Marine sediment metagenome DNA, contig 6.18713133906e-08 4.57098792142e-07 159558183.158 +UniRef50_R1DBP2 4.76785465843e-07 2.71453924715e-05 10766443908.8 +UniRef50_C5Z1P3 1.82510547351e-05 6.34218855091e-06 -4807755416.78 +UniRef50_Q972W3 Urease accessory protein UreG 3.73471097578e-06 3.09051314972e-05 10969032183.0 +UniRef50_B8LZL2 7.53780234808e-08 1.53612126377e-07 31584067.3796 +UniRef50_Q9UVC0 Glyceraldehyde 3 phosphate dehydrogenase 1.74288279122e-07 2.82863309712e-07 43833072.2146 +UniRef50_G0EU06 2.90189864788e-07 5.60601499892e-07 109168495.415 +UniRef50_V4RI55 Pirin domain protein 3.64266539258e-07 1.00310700359e-07 -106562211.266 +UniRef50_Q2LQN4 Glutamate tRNA ligase 1 3.7248495557e-08 1.23336278964e-07 34754694.5773 +UniRef50_E8XZE4 7.74228935449e-08 1.19695568317e-07 17065997.5496 +UniRef50_P0AAV9 Putative isomerase YbhH 4.06045425313e-05 9.41470031499e-06 -12591722045.1 +UniRef50_Q04MW7 Argininosuccinate synthase 3.85897195451e-08 5.04172335607e-07 187961415.445 +UniRef50_K0AYA8 Bifunctional chorismate mutase prephenate dehydratase 3.07959690379e-06 2.26585707308e-06 -328516755.368 +UniRef50_A6LVB7 1.24369773306e-06 8.4004571323e-06 2889271592.79 +UniRef50_Q08NW1 3.01908282191e-07 2.20416803253e-08 -112985581.523 +UniRef50_U5MUC9 Cyclic di GMP phosphodiesterase response regulator RpfG 1.69276228183e-06 2.93056635321e-05 11147667083.1 +UniRef50_P13518 RNase E specificity factor CsrD 2.70523577673e-05 9.66616504477e-06 -7019019354.65 +UniRef50_UPI0004762DA1 acetate permease, partial 1.17064957277e-06 2.22839171496e-06 427023482.758 +UniRef50_A3JZH8 2.40350261531e-06 3.44913502691e-07 -831077686.494 +UniRef50_A5UJJ6 Predicted CRISPR associated protein 2.89384722685e-05 1.42895179933e-06 -11105930993.2 +UniRef50_B0V8Z8 ATP dependent dsDNA exonuclease 3.23651890987e-07 2.66649832585e-05 10634318717.5 +UniRef50_Q5HP88 Probable ATP dependent helicase DinG homolog 0.000192091188015 5.26460941745e-05 -56295695566.9 +UniRef50_E8PIL7 Rossmann fold nucleotide binding protein 1.01202677982e-06 8.0634397514e-05 32144528141.8 +UniRef50_UPI0004422EE7 PREDICTED 2.37848299677e-08 3.80944178882e-07 144189611.995 +UniRef50_E3YUW5 2.34250633169e-06 1.3374323091e-05 4453679801.34 +UniRef50_P75691 Aldehyde reductase YahK 2.76580565744e-05 8.30423302692e-05 22359310932.1 +UniRef50_V1QTW1 3.31640875209e-05 1.25451616966e-05 -8324113377.94 +UniRef50_UPI0004646ABC MULTISPECIES 2.78058394687e-06 5.64464571438e-07 -894674586.704 +UniRef50_UPI0004769729 thioesterase 1.83598123204e-07 3.33894051787e-07 60676310.7074 +UniRef50_R6Q2D0 Iron only hydrogenase maturation protein HydF 2.10846599972e-06 1.38081998809e-05 4723326139.72 +UniRef50_Q6FDN2 1.64274324883e-07 1.0361989656e-05 4116942819.2 +UniRef50_UPI000273D0E2 3.1410525742e-07 8.1391306694e-08 -93949477.6294 +UniRef50_R7PTK0 3.51102554309e-05 7.19999982592e-06 -11267712685.1 +UniRef50_F0Y6N7 Expressed protein 1.60983535335e-06 4.55512719133e-06 1189050457.79 +UniRef50_B2A9N0 Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1 4.00086407947e-08 5.91443128976e-06 2371576510.66 +UniRef50_Q9RZN7 Potassium transporting ATPase A chain 8.98733040216e-07 0.000158759128115 63730178656.7 +UniRef50_K2DR39 1.0667325353e-07 3.24972316179e-07 88130010.4221 +UniRef50_R5J2P0 HTH type transcriptional regulator GmuR 1.0260506466e-05 4.70647846601e-05 14858338746.2 +UniRef50_H3VA73 PF03904 domain protein 0.00032992205684 7.77645372905e-05 -1.01799084963e+11 +UniRef50_UPI000273C7FC PREDICTED 1.74243648387e-07 1.16347223511e-07 -23373497.1915 +UniRef50_Q68X45 DNA topoisomerase 1 5.2131528358e-08 1.75226801959e-08 -13972016.7014 +UniRef50_B2HZ46 2.30220986119e-06 9.95534458788e-05 39261517387.2 +UniRef50_UPI000469439E hypothetical protein, partial 1.23646480421e-07 3.18149124638e-06 1234489455.99 +UniRef50_A3CPL4 Cystathionine gamma synthase, putative 4.69070086003e-05 1.67444463834e-05 -12176996503.2 +UniRef50_Q0TN75 Sulfatase 8.36831555326e-06 1.88953929026e-06 -2615561480.9 +UniRef50_Q833W8 Tagatose 1,6 diphosphate aldolase 2 1.96878754934e-07 1.57779437103e-05 6290267123.66 +UniRef50_L5P9E1 Rhodanese like domain protein 2.0367949039e-06 2.98996164153e-06 384805108.652 +UniRef50_T6ITD7 DNA mismatch repair protein mutS 3.50854302435e-06 1.46453967375e-06 -825189235.379 +UniRef50_P96995 UDP glucose 4 epimerase 6.59704004829e-05 9.8737395285e-05 13228437897.9 +UniRef50_UPI0003B31677 sugar ABC transporter ATP binding protein 7.59381692397e-08 6.30603990144e-08 -5198913.86796 +UniRef50_G2C2A9 2.82042470236e-07 3.91374275872e-06 1466161972.43 +UniRef50_Q1IJ73 7.03677280897e-08 7.28270575926e-07 265603453.047 +UniRef50_Q2FEK4 Urease subunit beta 0.000120110715355 1.96404039226e-05 -40561097634.5 +UniRef50_A1R4R1 Glutamyl tRNA amidotransferase subunit A 1.01043282575e-06 7.6287402783e-05 30390236524.1 +UniRef50_UPI0003685835 hypothetical protein 6.92141938234e-07 9.27440452985e-08 -241984284.818 +UniRef50_K0S5Y4 1.86772022854e-06 1.14225875159e-06 -292877700.658 +UniRef50_A0A023X9G2 ABC transporter permease protein 0.000125265939867 5.24608298953e-05 -29392316314.7 +UniRef50_B9E1A4 1.82360381085e-06 1.34167359752e-05 4680289718.5 +UniRef50_UPI0003FA3257 protein HflC 8.46458372455e-07 1.58682334723e-07 -277663626.393 +UniRef50_M9S6A9 Two component response regulator, PprB 6.55509560464e-06 9.2474989088e-06 1086956253.39 +UniRef50_W4TN66 Integral membrane protein 6.63018518973e-07 5.86914312731e-06 2101776390.72 +UniRef50_Q6AAW0 Phosphoenolpyruvate protein phosphotransferase 9.56467877165e-07 5.36074619651e-05 21255852413.6 +UniRef50_A8L3Z7 2.6539170441e-07 8.1324634341e-08 -74310134.9438 +UniRef50_M9Z693 Nitrite oxidordeuctase B subunit 2.31930484293e-07 2.70267873688e-07 15477274.5514 +UniRef50_W6ICP5 Methyl accepting chemotaxis protein 2.49426301013e-07 9.84770667696e-08 -60940058.2193 +UniRef50_W8YNW6 6 pyruvoyl tetrahydropterin synthase 4.28283374897e-07 1.21434553499e-06 317342940.097 +UniRef50_X5DUC9 Thioesterase like superfamily protein 0.000309976534356 5.54374880551e-05 -1.02760536537e+11 +UniRef50_V8G0E6 Cell wall binding protein 1.21668485799e-05 5.76806634254e-05 18374485570.4 +UniRef50_Q5ZZI2 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 1.18386410449e-05 4.37506229925e-06 -3013138328.03 +UniRef50_O74197 Phosphoribosylaminoimidazole carboxylase 2.05450491225e-07 2.35679343728e-07 12203758.7052 +UniRef50_R1BXE4 2.45285910898e-06 2.63346271411e-06 72911891.6464 +UniRef50_UPI0004695C98 amino acid ABC transporter permease 3.94346356983e-07 6.42011089939e-07 99985291.8824 +UniRef50_UPI000426690E hypothetical protein 3.152159372e-07 3.33629431599e-07 7433753.64786 +UniRef50_O34947 3.25418955908e-06 1.03062362617e-05 2846997792.19 +UniRef50_V9WEG0 Permease of the drug metabolite transporter superfamily 3.5492444399e-05 6.23312452362e-06 -11812346485.9 +UniRef50_S9SJZ0 1.00391711547e-05 1.23669967403e-05 939771754.539 +UniRef50_UPI000473A780 threonine dehydratase 2.91705153567e-08 1.326628594e-07 41781129.284 +UniRef50_UPI0001E89D91 Transcriptional regulator of sugar metabolism 1.76451323327e-07 5.13127890767e-07 135920461.762 +UniRef50_A7FAZ1 2.55633852495e-06 0.000132088966659 52293911521.8 +UniRef50_UPI0003B54A85 alpha beta hydrolase, partial 6.82256066011e-07 2.12202446364e-07 -189766414.458 +UniRef50_UPI0002883AB7 acyl CoA dehydrogenase 6.71816367596e-08 2.18771260062e-07 61198591.1409 +UniRef50_K5CST2 Branched chain amino acid ABC transporter nucleotide binding protein ATPase 3.48034276897e-07 6.82958710244e-07 135213103.727 +UniRef50_M9R3P2 PHB depolymerase 5.34868159634e-05 1.56691845204e-05 -15267441888.1 +UniRef50_Q6A9Z4 Glutamate ammonia ligase adenylyltransferase 3.0647782972e-06 6.21268788677e-05 23844094773.8 +UniRef50_Q8Y0U6 Thymidylate synthase 1.16419168241e-06 5.92112726583e-06 1920433269.19 +UniRef50_A4WPC2 OmpA MotB domain protein 4.57116043312e-05 2.92403313158e-06 -17273867555.8 +UniRef50_F7Y7I2 2.35925219919e-06 9.8771950446e-07 -553704579.461 +UniRef50_A6LVU2 Cobalt precorrin 5B C methyltransferase 4.00162934655e-06 1.19678460493e-05 3216059439.37 +UniRef50_R7G9U3 Phosphosugar isomerase transcriptional regulator 1.82654510734e-06 1.53272544283e-05 5450402025.22 +UniRef50_L0NA87 1.4493950259e-05 4.06514791478e-06 -4210235482.15 +UniRef50_X5EJ50 PAP2 superfamily protein 0.0001758576534 6.65892548799e-05 -44112993356.6 +UniRef50_UPI0003B68328 mandelate racemase, partial 3.00881820171e-05 1.47301580115e-05 -6200222755.21 +UniRef50_UPI00046BB227 PREDICTED 1.7670102895e-07 5.42736769949e-07 147773120.405 +UniRef50_G5PRD3 Putative outer membrane lipoprotein 4.32018040191e-07 6.2168073141e-07 76569155.8681 +UniRef50_Q17WK3 2.26626619354e-06 3.64887769871e-06 558177231.188 +UniRef50_UPI0003EAE12A PREDICTED 4.10932777566e-07 9.23586255471e-07 206964499.996 +UniRef50_J0XW17 9.40642595952e-06 5.96728995901e-07 -3556582771.35 +UniRef50_A6M391 Methyl accepting chemotaxis sensory transducer 8.51472155251e-07 4.7202046696e-06 1561854790.73 +UniRef50_E8SJA6 SAM dependent methyltransferase, MraW methylase family 8.44644924925e-05 3.01843669099e-05 -21913552789.7 +UniRef50_A4WQ24 Lytic transglycosylase, catalytic 1.88546467221e-06 8.09214193954e-07 -434495525.152 +UniRef50_A7X2X9 Ribosomal protein L11 methyltransferase 0.000251022106608 9.41444649834e-05 -63333429029.2 +UniRef50_UPI0003B390C8 cell division protein FtsW 5.27111737973e-08 6.88426817924e-08 6512487.73349 +UniRef50_I0C5T1 9.92961581786e-05 3.58578591712e-05 -25610819784.8 +UniRef50_L2F8J3 1.5221857645e-07 2.0103074511e-07 19706071.4807 +UniRef50_UPI00035F908D hypothetical protein 1.07952056299e-06 1.73164591113e-07 -365907028.085 +UniRef50_C0PP21 7.76547371345e-08 1.30104692687e-06 493898439.708 +UniRef50_I0C5T9 0.000153779240783 4.44446379825e-05 -44139720836.8 +UniRef50_UPI00046F3223 hypothetical protein 3.94147101909e-08 1.87848131648e-07 59924393.7251 +UniRef50_P19769 Putative transposase InsK for insertion sequence element IS150 2.17549997282e-05 8.18447020154e-06 -5478589299.05 +UniRef50_P20371 Protocatechuate 3,4 dioxygenase alpha chain 1.80327701681e-06 4.91392696038e-05 19110121085.3 +UniRef50_O32091 0.000249523986244 8.73419215956e-05 -65474889696.1 +UniRef50_UPI0003D730BE PREDICTED 8.52505562555e-08 1.2896724412e-07 17648963.355 +UniRef50_UPI00039597D2 PREDICTED 4.54951296648e-08 9.35059940619e-07 359128230.37 +UniRef50_Q9RWU2 3.89428461667e-07 7.39051920356e-05 29679215894.7 +UniRef50_UPI0002F9456A hypothetical protein 5.47838889643e-08 8.59315772455e-08 12574703.9842 +UniRef50_W1A536 1.02887379937e-06 1.03360219152e-07 -373641189.663 +UniRef50_Q313W4 Bifunctional protein GlmU 3.69003116161e-08 4.82712523398e-08 4590588.30729 +UniRef50_F0Y3L5 1.81725211559e-06 6.8655495424e-06 2038059620.78 +UniRef50_C0LZW7 Cross beta structure silk protein 2 2.05621529976e-08 6.19971148202e-08 16727802.5519 +UniRef50_UPI00035C4CDB hypothetical protein 1.6295955568e-07 1.97135661528e-07 13797313.3188 +UniRef50_R0NY94 7.42541994644e-07 4.26317845042e-06 1421324140.27 +UniRef50_M4IMI2 Transposase like protein 0.000223684188054 2.59087657702e-05 -79844364953.4 +UniRef50_G8UVE6 TraU 1.15115752359e-06 9.88747952918e-08 -424819450.376 +UniRef50_A6W320 Transposase, IS4 6.88737749315e-08 1.35881082586e-07 27051672.3723 +UniRef50_F4S3R3 1.6511649144e-06 2.51796976323e-07 -564942008.779 +UniRef50_Q1IYK3 UDP N acetylglucosamine 1 carboxyvinyltransferase 5.08919248061e-08 0.000277089566415 1.11843912538e+11 +UniRef50_UPI0003B63C0F hypothetical protein 1.33164688161e-06 4.05271343799e-06 1098527960.05 +UniRef50_H2JMH7 1.45815104486e-06 6.89038615915e-07 -310500125.636 +UniRef50_B9KTJ2 ABC spermidine putrescine transporter, ATPase subunit 1.16149535026e-06 2.75139787458e-06 641863159.366 +UniRef50_H4PPD3 NADP dependent dehydrogenase domain protein 1.12941896091e-06 2.55453146905e-06 575335407.633 +UniRef50_Q5DZU8 3 methyl 2 oxobutanoate hydroxymethyltransferase 2 3.21401240101e-05 7.06249254594e-06 -10124147559.2 +UniRef50_P37216 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 0.000152427514228 1.86527772818e-05 -54006502905.7 +UniRef50_X1KHN3 Marine sediment metagenome DNA, contig 2.40039219062e-06 7.28941881769e-07 -674785000.685 +UniRef50_O67762 DNA directed RNA polymerase subunit beta 3.62788629631e-08 1.80988567904e-08 -7339491.58568 +UniRef50_Q161C7 DNA damage inducible protein, putative 5.08364935933e-06 1.47045662343e-06 -1458690246.34 +UniRef50_UPI000443E2D6 PREDICTED 1.90475579618e-09 3.42990413301e-09 615721.099253 +UniRef50_Q49WP2 0.000178506743972 5.6429943668e-06 -69787216992.3 +UniRef50_H6SJN5 2.21368221653e-07 3.01378270517e-07 32301038.5601 +UniRef50_M9VCC8 2.57963090329e-06 3.9355432355e-05 14846842335.9 +UniRef50_X2M4F7 4.1179666769e-07 2.6609308024e-06 908003050.162 +UniRef50_A5IU85 Parallel beta helix repeat 0.000198223398133 7.04339995686e-05 -51590148352.5 +UniRef50_UPI00029A6665 citrate synthase I 1.42082111628e-06 3.12074401971e-06 686279736.515 +UniRef50_A4WZ48 4.18123846518e-05 1.26989570376e-05 -11753447989.8 +UniRef50_B9HS46 2.08866336533e-07 1.44618590572e-06 499521093.701 +UniRef50_A3UKH7 2.17470530655e-07 4.39510230037e-07 89640151.374 +UniRef50_B9KTI0 6.07274542549e-05 1.99463570617e-05 -16463829377.2 +UniRef50_B0VS88 Putative acetyltransferase 6.85900834344e-06 1.13328011316e-05 1806125048.19 +UniRef50_UPI000376ED10 hypothetical protein 8.79797964888e-08 1.1433797813e-06 426077925.082 +UniRef50_Q2NHY7 L tyrosine decarboxylase 2.79557795958e-05 4.9237674387e-06 -9298305942.39 +UniRef50_B7LMR0 2.74594098728e-07 2.79539883017e-06 1017679803.83 +UniRef50_A8GCA1 Ecotin 2.595228835e-05 4.23899576834e-06 -8765922667.3 +UniRef50_O26607 UPF0145 protein MTH_507 6.71685653511e-06 3.58488623641e-05 11760948243.1 +UniRef50_W8XBA5 Inner membrane transport protein YhjV 5.20480697164e-08 5.94114343242e-08 2972680.65081 +UniRef50_B0K0N0 Adenine phosphoribosyltransferase 1.19993768166e-07 2.20063123107e-07 40399226.5788 +UniRef50_UPI000248DA1A hypothetical protein 2.11245748043e-07 6.29764871351e-08 -59858120.097 +UniRef50_Q8CQ91 Histidine biosynthesis bifunctional protein HisIE 0.000187881375942 5.28486439151e-05 -54514370957.3 +UniRef50_N1X5N0 8.33821909882e-07 8.46126057925e-07 4967335.55383 +UniRef50_UPI0002E805CD hypothetical protein 1.12041394767e-07 9.91443755596e-08 -5206684.91825 +UniRef50_UPI00047183C3 nuclease PIN 6.50615162227e-08 1.22689647541e-07 23265183.7899 +UniRef50_UPI0003829CBF hypothetical protein 9.1810244964e-08 5.75839824161e-07 195408680.833 +UniRef50_U5MRK8 Secretion protein HlyD family protein 2.51754444034e-06 2.19989460152e-05 7864880879.47 +UniRef50_K4JRS2 4.12236960552e-08 6.02417669013e-07 226560893.508 +UniRef50_P39131 UDP N acetylglucosamine 2 epimerase 0.000233225716582 0.000160905437937 -29196583958.6 +UniRef50_UPI00037118F4 hypothetical protein 6.24211182907e-07 1.9651341287e-07 -172666838.206 +UniRef50_A0A023AZR5 Malic enzyme 5.77775103057e-06 2.72109331488e-05 8652838635.84 +UniRef50_M9R8K1 FlgD like flagellar basal body rod modification protein 6.98583655964e-08 9.55808885768e-08 10384498.178 +UniRef50_C5E391 KLTH0H11330p 2.23768594054e-07 5.87312083815e-08 -66627617.8327 +UniRef50_A6M0V7 Dihydroxy acid dehydratase 5.26390587233e-06 1.49373630218e-05 3905293357.91 +UniRef50_Q1ATH8 Pyridoxine pyridoxamine 5 phosphate oxidase 9.85136234499e-08 8.42867902735e-06 3362989996.18 +UniRef50_A7X1Z3 7.70158232403e-05 1.74335395872e-05 -24054099067.6 +UniRef50_Q72CS6 3 oxoacyl [acyl carrier protein] synthase 3 9.54152844758e-08 5.38223001887e-07 178766909.381 +UniRef50_B4RL22 Arginine tRNA ligase 2.36596649626e-06 4.096024886e-05 15580985395.3 +UniRef50_O27398 Imidazole glycerol phosphate synthase subunit HisF 6.06857690043e-05 2.3446945466e-05 -15033770034.2 +UniRef50_UPI000478B1E4 hypothetical protein 3.41506129317e-06 1.267940435e-06 -866819038.579 +UniRef50_E9SHD5 7.63508688274e-06 3.2725157279e-06 -1761223509.98 +UniRef50_UPI000382B9BD hypothetical protein 9.5503782023e-07 4.29717406836e-07 -212078297.294 +UniRef50_M4YVY6 Cytoplasmic protein 1.97171985107e-07 3.01725163753e-07 42209401.2312 +UniRef50_A0A022NW71 LigA 3.90511167018e-07 2.16032471014e-06 714495445.412 +UniRef50_A3UE81 1.08925180623e-07 2.70446681811e-07 65208212.1213 +UniRef50_Q8GPJ0 MobB like protein 3.27342837087e-05 1.15443035494e-05 -8554655020.61 +UniRef50_UPI0004657E4B hypothetical protein 3.46965296144e-07 1.23058847584e-07 -90393780.9248 +UniRef50_I6RK04 Tryptophan repressor binding protein 2.26039514279e-06 9.08267716836e-06 2754238972.54 +UniRef50_A0A013LHN9 Putative membrane protein 1.06425553219e-06 6.63002205389e-05 26336559608.5 +UniRef50_E1V4H9 ATP dependent RNA helicase RhlB 1.36112736362e-06 9.13936661665e-05 36347240738.2 +UniRef50_R6LJ53 Cell cycle protein FtsW 8.60300972659e-06 3.00936919299e-06 -2258221325.1 +UniRef50_UPI0003673C2F hypothetical protein 1.04751216878e-06 2.60006400417e-07 -317925742.471 +UniRef50_A6M1A4 Flagellin domain protein 2.85974233984e-06 6.21667794785e-06 1355236099.19 +UniRef50_F6B016 Bile acid 9.28959554168e-06 0.000110455204903 40841797940.7 +UniRef50_Q02N70 Tryptophan 2,3 dioxygenase 5.15339900907e-06 8.674958868e-05 32941383068.0 +UniRef50_A6VDM0 7.38285820078e-06 3.49499462025e-06 -1569578236.91 +UniRef50_UPI000415BF03 hypothetical protein 5.708289041e-08 1.12575768776e-06 431437129.805 +UniRef50_G8V752 2.70276364337e-06 3.77142335926e-05 14134560057.5 +UniRef50_UPI0003637379 hypothetical protein 1.4239309719e-07 7.62252303945e-08 -26712779.7964 +UniRef50_V8G5A1 Cell wall binding protein 1.36476669845e-05 1.99526506377e-05 2545399271.65 +UniRef50_Q97MB4 NAD dependent protein deacetylase 1.51854711387e-05 2.87113721157e-05 5460572205.88 +UniRef50_UPI00021A56DC PREDICTED 4.49065897872e-07 2.3776331528e-07 -85305445.5667 +UniRef50_UPI00034D5672 ABC transporter permease 2.58330817777e-07 6.56317551676e-07 160672128.321 +UniRef50_B9KM82 5.63657267121e-06 1.69413235378e-06 -1591611535.33 +UniRef50_Q9ZMV8 Flagellin B 8.72463764734e-07 0.000103836479531 41567836675.3 +UniRef50_UPI00036E1801 hypothetical protein, partial 1.23239060004e-06 2.49553087584e-07 -396783564.551 +UniRef50_L7VNU0 2.39927535287e-06 1.88703207725e-05 6649563158.35 +UniRef50_A0A024JC88 Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit 5.77732860484e-08 9.16358811928e-07 346621512.827 +UniRef50_T0ZIX4 5.22578289285e-06 1.30234602707e-06 -1583939608.7 +UniRef50_P76482 4.0963467608e-05 3.46074263901e-06 -15140310280.2 +UniRef50_P44502 Cystathionine gamma synthase 8.78512064938e-05 6.40410821106e-05 -9612439396.58 +UniRef50_C0QC86 Probable cytosol aminopeptidase 3.26589686605e-08 1.2685345698e-07 38027470.8309 +UniRef50_H9UNY1 2.77161544013e-05 2.01745860869e-05 -3044623673.97 +UniRef50_Q2J5A7 Biotin synthase 2 4.76668358137e-08 1.60072557049e-06 626988869.364 +UniRef50_D4LLK4 Recombinational DNA repair ATPase 1.12080004449e-07 6.22726301918e-07 206154176.623 +UniRef50_UPI0002897140 O acetylhomoserine aminocarboxypropyltransferase 3.53218211389e-07 4.30604935715e-07 31241970.2523 +UniRef50_UPI000380E239 hypothetical protein 2.41036223664e-07 2.14445108593e-07 -10735159.4638 +UniRef50_UPI0003775D90 hypothetical protein 1.50492243732e-06 6.04661664596e-07 -363446321.391 +UniRef50_F8JSQ7 2.06305722802e-07 1.71218707466e-06 607942780.988 +UniRef50_G7M8J1 Methyl accepting chemotaxis sensory transducer 3.14937771968e-06 4.95506544538e-06 728978293.145 +UniRef50_A1SG46 Alpha amylase, catalytic region 4.44348118141e-06 5.84589697302e-05 21806715571.7 +UniRef50_J9NZQ0 1.53035106275e-07 7.81166539077e-07 253584367.462 +UniRef50_UPI00046C792F hypothetical protein 1.83672389571e-06 2.18971271982e-07 -653106586.257 +UniRef50_A8G9Z1 Cell division protein FtsB 4.8838469263e-05 6.30569477283e-06 -17171002997.5 +UniRef50_A0A033TLC6 1.71444663125e-07 7.41134868753e-07 229990926.897 +UniRef50_A6M2Q2 Phage replisome organizer, putative 5.25904163991e-06 2.77416077794e-05 9076487842.63 +UniRef50_UPI0002FAA418 hypothetical protein 7.73262622655e-08 2.29383081243e-07 61387203.7684 +UniRef50_UPI0002C5976A 5.96567173213e-08 6.09788866822e-08 533775.995838 +UniRef50_S5XYL7 Aldo keto reductase 2.29811133678e-05 1.04165228257e-05 -5072479386.71 +UniRef50_UPI0003B570ED plasmid stablization protein ParB 2.9588984486e-07 1.03146354448e-05 4044690542.51 +UniRef50_Q9RT21 Trigger factor 3.30363426013e-06 0.000337305945028 1.34840831526e+11 +UniRef50_D2AEN1 2.62563161996e-08 8.50464443302e-08 23734296.1623 +UniRef50_K2LKK6 Phosphate ABC transporter, periplasmic binding protein 4.51349724722e-08 6.4636836324e-08 7873141.75175 +UniRef50_Q88X60 Adenylyl sulfate kinase 2.4292441303e-05 1.51248477249e-05 -3701070026.5 +UniRef50_Q4XSF0 GTP binding protein, putative 4.18943202232e-08 8.14083548549e-08 15952300.6725 +UniRef50_O67216 4 hydroxy tetrahydrodipicolinate synthase 5.80485769541e-08 2.58854994841e-07 81068015.0728 +UniRef50_UPI0004064E58 transcription termination factor Rho 5.35295054771e-08 3.08276636042e-07 102844542.708 +UniRef50_Q9R5L5 HSP62=62 kDa urease associated heat shock protein 2.6861316512e-07 2.22100815177e-06 788205814.691 +UniRef50_X0NX98 1.16823150831e-06 7.34835007715e-08 -441963204.713 +UniRef50_UPI00035F4BA7 hypothetical protein 3.39790978671e-07 2.72527165732e-07 -27155226.7033 +UniRef50_Q8FL68 Ribosomal RNA small subunit methyltransferase H 5.43903914276e-05 1.48927930947e-05 -15945665137.0 +UniRef50_W5Y8P3 2.05807583193e-07 5.50256669524e-07 139058323.017 +UniRef50_A0A024HQB8 Carbamoyl transferase 1.46064270313e-05 4.51114012991e-06 -4075591205.2 +UniRef50_UPI0004761289 hypothetical protein 2.61026842679e-07 2.09503676374e-06 740412310.964 +UniRef50_UPI0003B465F4 hypothetical protein 8.68486359453e-07 1.70073329717e-07 -281957910.596 +UniRef50_UPI00046A5F3F hypothetical protein 1.72773869583e-07 2.85792285601e-07 45626921.4384 +UniRef50_UPI000382BE44 hypothetical protein 7.29196509462e-05 3.72588348113e-05 -14396709081.1 +UniRef50_Q8CSL5 0.000124931392739 1.25621761105e-05 -45364831678.5 +UniRef50_Q8CSL4 0.000101824391723 4.12948725159e-05 -24436509684.6 +UniRef50_R6GNH1 4.76685345143e-06 3.96398262003e-06 -324128806.969 +UniRef50_B1AIC1 ATP synthase subunit alpha 2.43325345432e-08 1.0090054486e-07 30911445.36 +UniRef50_UPI000413242B hypothetical protein 9.73092522962e-07 3.39748544459e-07 -255688736.126 +UniRef50_UPI00036CCC09 hypothetical protein 2.15785364573e-07 5.07217102697e-08 -66638222.8009 +UniRef50_B2TIC3 DNA mismatch repair protein MutS 2.56009480455e-06 4.59741978473e-06 822493095.288 +UniRef50_Q6LUX5 Isopentenyl diphosphate Delta isomerase 7.33371850124e-07 1.92643355253e-07 -218298728.864 +UniRef50_UPI00046D5342 hypothetical protein 1.86456225036e-06 7.74066725508e-07 -440246425.267 +UniRef50_UPI00047A154A phosphoribosylaminoimidazolecarboxamide formyltransferase 4.07756012367e-08 1.48324981628e-07 43419004.6432 +UniRef50_O68823 DNA polymerase III subunit chi 1.72047697332e-07 4.61432351874e-06 1793401261.96 +UniRef50_I2DEN6 9.5244572462e-07 2.97213776782e-05 11614370864.2 +UniRef50_UPI000376424C hypothetical protein 6.55809772965e-08 5.14108864348e-08 -5720639.56744 +UniRef50_M1MMR2 O antigen polymerase 5.46940534044e-06 5.76928209253e-06 121063924.72 +UniRef50_Q08021 2.40825899851e-05 1.73715708938e-05 -2709320760.62 +UniRef50_UPI000472C3EA acetyl CoA carboxylase subunit beta 7.3055853757e-08 2.86476255569e-07 86160435.1743 +UniRef50_G2ZT62 3.94041155936e-08 1.2922390883e-07 36261352.7423 +UniRef50_B1VDD6 Protein RecA 3.33731304989e-05 5.60137954926e-05 9140314290.16 +UniRef50_A9L6A7 TraU family protein 1.00087686809e-06 1.21362841915e-07 -355070605.218 +UniRef50_A7X3N2 S adenosylmethionine synthase 0.000144977636378 0.000299510085769 62386646145.5 +UniRef50_A7X1N2 GTP sensing transcriptional pleiotropic repressor CodY 0.000174538645695 6.68805024443e-05 -43462913544.4 +UniRef50_J2YJ27 TonB dependent outermembrane ferric citrate receptor 8.93668571185e-06 1.86841609055e-06 -2853547183.54 +UniRef50_G8AGG5 4.23997252515e-07 7.82620243768e-07 144780502.368 +UniRef50_UPI0004682C49 hypothetical protein 5.06132220083e-07 2.24810251316e-07 -113573131.0 +UniRef50_F6G1Z6 Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons 1.51845707213e-06 4.42802506102e-05 17263460797.5 +UniRef50_M4K135 Phospholipid binding domain lipoprotein 2.97286683172e-05 1.10743764448e-05 -7530966542.79 +UniRef50_UPI000361F619 hypothetical protein 1.19843344702e-06 1.85671587221e-06 265756693.083 +UniRef50_UPI000319FA33 hypothetical protein 8.93336198644e-08 5.46646711269e-08 -13996280.0412 +UniRef50_UPI000376B2F3 hypothetical protein 5.46382753106e-07 4.07642915703e-07 -56010974.8888 +UniRef50_Q8DR50 Diphosphomevalonate decarboxylase 4.13633887785e-05 3.75201178648e-05 -1551575630.1 +UniRef50_UPI0003C1AF0C 1.30949726307e-07 1.57479621295e-07 10710444.1651 +UniRef50_Q9K621 Sensory transduction protein BceR 0.000206297389337 3.15669771627e-05 -70540811577.9 +UniRef50_Q852F2 1.59873449516e-07 2.49809617098e-07 36308334.4937 +UniRef50_Q3J5W8 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 1.08817409996e-05 3.31196304892e-06 -3056012250.31 +UniRef50_UPI00045EA5EB hypothetical protein 2.06070361911e-07 7.82702132316e-08 -51594488.3059 +UniRef50_Q8DSX2 Bifunctional protein GlmU 0.000328777645638 0.000132768631814 -79131244181.8 +UniRef50_Q8ZIL5 Carbamoyl phosphate synthase small chain 2.01184364086e-07 7.73405978241e-08 -49997248.1739 +UniRef50_Q28M29 Lipoprotein releasing system transmembrane protein LolC E family 3.99804927816e-05 7.62735456185e-06 -13061358917.0 +UniRef50_D2NAM2 Transcriptional regulator 0.000113218052105 2.25351116361e-05 -36609815872.1 +UniRef50_P65765 FKBP type peptidyl prolyl cis trans isomerase FkpA 1.63072079315e-05 2.4712694996e-06 -5585738131.02 +UniRef50_D3E2L0 Mevalonate kinase 2.5388584601e-05 3.8481895406e-06 -8696121816.26 +UniRef50_I0JI98 DUF21 CBS domain protein 0.000194989067414 4.11736181688e-05 -62097184388.0 +UniRef50_UPI0003766160 hypothetical protein 1.45400719562e-05 2.69400635831e-06 -4782402049.44 +UniRef50_F0L4M9 Cytochrome c oxidase fixO chain 0.00016375269256 3.03107391853e-05 -53872154094.4 +UniRef50_B7V416 1.16431639298e-05 1.30714924403e-05 576633747.251 +UniRef50_A0A024HQA8 Amino acid ABC transporter substrate binding protein 6.50175201672e-06 6.9387749016e-06 176431501.5 +UniRef50_A8FAK7 2 isopropylmalate synthase 2 1.95732159589e-08 6.28859173408e-08 17485869.0545 +UniRef50_Q1ITT1 50S ribosomal protein L35 5.2427317198e-05 1.96877803463e-05 -13217352786.3 +UniRef50_Q4FME5 9.75961111015e-08 2.590002352e-07 65160825.5501 +UniRef50_R1E3V2 7.8588339106e-07 5.24630997291e-06 1800728946.68 +UniRef50_UPI00036F4F1C peptidase S8 2.67341351859e-07 0.000117551088368 47348887903.8 +UniRef50_A6LVW2 3D domain protein 2.30643170378e-06 3.40750044459e-06 444514962.298 +UniRef50_K6VBL3 Type IV secretion system family protein 1.5088801761e-07 1.46202403204e-07 -1891640.03466 +UniRef50_U3T564 Acyl coenzyme A dehydrogenase 6.42769589172e-06 0.000196419098187 76701860563.2 +UniRef50_UPI0001BF5D6F hypothetical protein SMAC_10343 7.54981539425e-08 1.72347675116e-07 39099340.175 +UniRef50_UPI0003638F6E hypothetical protein 1.77061599184e-06 6.59648093136e-07 -448511373.814 +UniRef50_UPI000348D250 hypothetical protein 9.35840352805e-08 2.71998365698e-05 10943126779.3 +UniRef50_UPI000367510D hypothetical protein 2.10493739897e-07 1.10247382545e-07 -40470684.6241 +UniRef50_Q9ZJT0 Methionine aminopeptidase 2.62257615776e-07 2.47429277342e-05 9883146938.4 +UniRef50_A3QBC5 S malonyltransferase 3.31497548229e-06 1.84765404716e-06 -592375669.421 +UniRef50_UPI0003B4C933 peptide ABC transporter permease 1.0358182119e-07 8.35811540694e-08 -8074514.75237 +UniRef50_A2RHJ5 Protein translocase subunit SecA 1.08576986252e-06 2.26940823142e-05 8723540900.56 +UniRef50_L5VNR4 Ybl54 5.89821857578e-06 2.20133152856e-06 -1492478666.87 +UniRef50_UPI000364F3E3 hypothetical protein 2.04908596272e-07 4.35789242388e-07 93209350.0612 +UniRef50_Q0ARE4 UspA domain protein 1.88739639982e-05 2.55685459043e-06 -6587417301.38 +UniRef50_B7IH88 CTP synthase 6.80181005635e-08 4.93693339968e-08 -7528735.90908 +UniRef50_A6LQR9 GTPase Obg 4.71312984821e-06 3.53675744525e-05 12375575459.1 +UniRef50_UPI000360EF04 hypothetical protein 2.11495001476e-07 2.64565329433e-07 21425142.6424 +UniRef50_UPI000225C0BC Holliday junction ATP dependent DNA helicase ruvA 2.09897138278e-07 1.28583914059e-07 -32827146.4427 +UniRef50_UPI0003B42254 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.28967063179e-07 2.06422080959e-07 31269541.1577 +UniRef50_F0XVT1 1.22585381348e-07 4.89111039943e-07 147970906.15 +UniRef50_UPI000376F4CA hypothetical protein 2.9524877422e-08 6.01458357621e-08 12362056.6433 +UniRef50_A6LST7 Response regulator receiver protein 2.19044094112e-06 1.07691621115e-05 3463335009.23 +UniRef50_Q53175 MotB 4.41182617886e-07 1.48577832251e-06 421716104.586 +UniRef50_UPI00014C4177 MULTISPECIES 4.42083521267e-07 2.9219488549e-07 -60511881.6036 +UniRef50_R4YW23 Chromosome partitioning protein transcriptional regulator 1.44487000872e-07 2.90170254168e-07 58814117.0901 +UniRef50_UPI0003769C11 hypothetical protein 2.838140338e-07 5.03961067691e-07 88876059.0897 +UniRef50_X1QL65 Marine sediment metagenome DNA, contig 5.54631798105e-07 3.28024924245e-06 1100365209.37 +UniRef50_P52599 Probable multidrug resistance protein EmrK 3.12974664089e-05 1.16232029316e-05 -7942741596.15 +UniRef50_H0Q3N8 Thioesterase superfamily protein 9.80414369471e-08 6.10130100964e-07 206736477.698 +UniRef50_UPI00041EC5EE DNA polymerase III subunit alpha 1.76054779241e-07 3.36536824856e-08 -57489070.218 +UniRef50_A0A023YHP1 1.40823327104e-07 1.16263358233e-07 -9915160.81793 +UniRef50_A1T8K1 Riboflavin biosynthesis protein RibBA 1.20032128141e-07 9.21068752911e-08 -11273767.2569 +UniRef50_UPI0003B3F8B2 ABC transporter 6.68832178913e-08 1.10430792647e-07 17580690.3177 +UniRef50_I2F1Y3 L serine deaminase 6.85361146959e-08 8.64448717586e-08 7229984.99137 +UniRef50_UPI0003A7C9ED hypothetical protein 8.89437277231e-09 9.61497780369e-07 384577685.405 +UniRef50_R6Z842 [citrate lyase] ligase 3.77497816404e-05 1.53210687733e-05 -9054746615.71 +UniRef50_F4E2U8 Glycerol dehydrogenase 3.71928764129e-06 1.84820190651e-05 5959895834.87 +UniRef50_UPI0002E02ECB cold shock protein 4.69098449881e-07 5.01173411478e-07 12949055.6007 +UniRef50_P71405 Serine acetyltransferase 1.03358513842e-07 0.000134222940227 54145720969.9 +UniRef50_P52137 Putative arsenical pump membrane protein 4.90320830018e-06 3.13056577946e-06 -715637538.385 +UniRef50_UPI000372B1CF hypothetical protein 8.72784112518e-08 3.09073577937e-08 -22757686.0316 +UniRef50_P23481 Hydrogenase 4 component A 1.41542985494e-05 2.73542286067e-05 5328973745.49 +UniRef50_Q5HE46 Mannitol specific phosphotransferase enzyme IIA component 0.000103421027892 1.4041804641e-05 -36083489232.8 +UniRef50_Q836B1 UPF0473 protein EF_1204 2.11550647335e-05 6.94862835762e-06 -5735312697.53 +UniRef50_A6LQW6 UPF0272 protein Cbei_0559 2.98884839366e-06 5.30524226449e-06 935156631.003 +UniRef50_UPI00046EF03F hypothetical protein 8.88023820204e-08 6.26985560787e-08 -10538434.8626 +UniRef50_A3PLE1 0.000113166176695 1.13189833496e-05 -41116961759.0 +UniRef50_M1MRV5 Neutral endopeptidase PepO 2.42611209003e-06 1.95584195819e-05 6916522771.53 +UniRef50_Q897S6 S1 RNA binding domain 3.35914792664e-06 2.41074861385e-06 -382880440.742 +UniRef50_C0ZES6 LexA repressor 2.06230662615e-06 3.5678678546e-05 13571341863.3 +UniRef50_W1FU82 Cell division protein FtsK 2.21744272145e-06 5.07271752353e-07 -690417006.383 +UniRef50_B5BP16 Truncated transposase of IS3 family 0.000193935035512 6.6155824657e-05 -51586035449.4 +UniRef50_M9V8F1 2.6397621598e-06 3.75162316872e-05 14080058730.6 +UniRef50_UPI0002E99FC0 hypothetical protein 1.91105116965e-07 7.70596536515e-08 -46041553.0351 +UniRef50_Q97L15 Permease 1.0577591384e-05 1.60207977501e-06 -3623524178.46 +UniRef50_UPI00037D00A3 hypothetical protein 3.64965246119e-07 1.13379803589e-07 -101568130.45 +UniRef50_A4WVZ8 FxsA cytoplasmic membrane protein 4.81916641496e-06 5.43527678278e-06 248731316.013 +UniRef50_Q2W2I2 DNA directed RNA polymerase subunit beta 6.6431934524e-08 1.22754694176e-07 22738189.2295 +UniRef50_UPI000466CD21 hypothetical protein, partial 5.92340799314e-08 1.12488391237e-07 21499418.978 +UniRef50_P0A9S2 Lactaldehyde reductase 4.26831983883e-05 8.5677523087e-05 17357336480.6 +UniRef50_Q2S8W1 Glucose 6 phosphate isomerase 7.27623401213e-06 3.78390983644e-06 -1409894125.36 +UniRef50_A8LL11 HTH type transcriptional regulator 6.037973454e-05 2.97789462745e-05 -12353913736.7 +UniRef50_Q9RRG5 2.34949785595e-06 0.000870772692128 3.50593100279e+11 +UniRef50_Q9RRG4 1.54972173725e-06 0.000165091959811 66024008399.4 +UniRef50_F5MXW8 Baseplate J like family protein 1.2694355784e-07 6.15003670202e-08 -26420219.2122 +UniRef50_A8LSD5 3 oxoadipate enol lactonase 2.73259970254e-05 2.25432599378e-06 -10121741259.5 +UniRef50_J9YYN1 1.62373661847e-06 5.2545325181e-07 -443390472.573 +UniRef50_Q833W9 Tagatose 6 phosphate kinase 2.15781432963e-06 4.87715894696e-05 18818553039.4 +UniRef50_A3M8U5 Heavy metal RND efflux outer membrane protein CzcC family 9.19202894945e-07 6.06440998336e-05 24111673801.1 +UniRef50_R4Q8N7 Oxidoreductase 1.37267632307e-06 2.94210782748e-05 11323484060.5 +UniRef50_W7S9M8 Pyruvate dehydrogenase E1 component 4.4969498337e-07 3.44323924682e-07 -42539589.4406 +UniRef50_A6LSX8 2.40999160205e-06 2.60918625837e-05 9560661924.55 +UniRef50_U3U1D9 2.1983670475e-07 2.47420462487e-07 11135901.4892 +UniRef50_UPI000363B64B hypothetical protein 1.71544928236e-07 2.48909483523e-06 935623336.987 +UniRef50_C5N6E7 Hydrolase, haloacid dehalogenase like family protein 0.000177621043601 6.27112219694e-05 -46390505094.9 +UniRef50_C7ZTC0 FecCD transporter 0.000128123104741 3.3236168844e-05 -38307020415.3 +UniRef50_L1KZ69 7.8981788932e-07 1.42425725899e-06 256130958.982 +UniRef50_UPI000174446D ABC transporter permease 6.37787228755e-08 3.06930037227e-07 98163169.4057 +UniRef50_Q1AVI9 NADH quinone oxidoreductase subunit K 1.01199095881e-07 4.16409347091e-07 127254246.478 +UniRef50_M1MG71 Methyl accepting chemotaxis sensory transducer 4.23377497034e-06 7.96090942569e-06 1504689916.71 +UniRef50_UPI00028A050D translation factor Sua5 9.12939659951e-07 2.20134323994e-06 520144335.732 +UniRef50_F6EUQ1 4.06285268822e-08 6.93003343858e-08 11575160.5318 +UniRef50_UPI000379F19F hypothetical protein 1.44277008172e-07 1.67778906207e-07 9488004.63745 +UniRef50_O33948 Catechol 1,2 dioxygenase 1 7.51167016841e-06 3.67103122382e-05 11787850111.2 +UniRef50_Q4L7V3 mRNA interferase MazF 2.82097991807e-05 4.62715892414e-05 7291766290.59 +UniRef50_A6LZS0 1.43712939918e-06 5.70141748584e-06 1721545429.28 +UniRef50_E4SGC1 ABC transporter related protein 2.40436935571e-06 1.06674234722e-05 3335896345.9 +UniRef50_A6LZS9 1.08378220493e-05 1.83792253709e-05 3044557064.36 +UniRef50_UPI00037BA2BE hypothetical protein 4.78138007728e-08 8.19412800736e-08 13777682.185 +UniRef50_UPI00036A311B hypothetical protein 1.15765830002e-07 2.82422434126e-06 1093437937.52 +UniRef50_A4WVM4 0.000201965704813 7.95222918528e-05 -49431908361.6 +UniRef50_I3TI18 Cysteine desulfuration protein SufE 1.68348456038e-06 3.06108642751e-07 -556063560.25 +UniRef50_UPI000262CF2F amino acid ABC transporter 1.27416411248e-07 4.83747643416e-07 143855291.102 +UniRef50_F0YPX2 3.33240887747e-06 7.46958566597e-06 1670229038.39 +UniRef50_O27818 dTDP 4 dehydrorhamnose 3,5 epimerase 8.27545755014e-06 6.48464173753e-05 22838390685.2 +UniRef50_M1Z2C4 1.05473220211e-07 8.90333474272e-08 -6636978.38275 +UniRef50_UPI0003682E40 hypothetical protein 2.32208044079e-08 6.75528563406e-06 2717817183.46 +UniRef50_UPI0003B7B255 hypothetical protein 1.89027419028e-06 1.03801116887e-06 -344069040.187 +UniRef50_E6TTW0 Cyclic nucleotide binding protein 3.02934855009e-06 1.20646291406e-05 3647653649.75 +UniRef50_P57134 DNA replication protein DnaC 1.26079232907e-05 2.24602758449e-05 3977515628.09 +UniRef50_UPI0004706BF7 hypothetical protein 1.78104630444e-06 7.87506913905e-07 -401104044.058 +UniRef50_G4LJE6 TonB dependent receptor 8.64656494443e-06 2.59481057142e-06 -2443167503.76 +UniRef50_G7M1W4 Two component transcriptional regulator, winged helix family 5.69102953191e-06 2.52385069592e-05 7891556511.92 +UniRef50_B1JZW0 Glutamate putrescine ligase 9.42648811488e-05 2.49460941909e-05 -27984844932.1 +UniRef50_Q9X4Q9 Flagellar motor switch protein FliG 9.211028829e-06 4.7382629598e-06 -1805710468.41 +UniRef50_H2HFL3 Metal nicotianamine transporter YSL2 5.87374464015e-07 8.67126481957e-05 34769829881.4 +UniRef50_A5ULB0 Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF 5.45187566083e-05 7.2313042547e-06 -19090524797.4 +UniRef50_X5E2B2 Nucleoside triphosphatase YtkD 0.000213950811135 4.56794902128e-05 -67933197177.5 +UniRef50_A6LTZ5 2.57963090329e-06 8.97261753016e-06 2580927152.04 +UniRef50_Q3IV04 Transposase, IS3 IS911family 2.89787223765e-05 3.70120566977e-05 3243155645.57 +UniRef50_UPI0003957091 1.29797881341e-07 3.45854819551e-07 87224837.2722 +UniRef50_V8FTX6 Hemerythrin 4.06627636108e-06 7.9457409469e-06 1566187459.68 +UniRef50_Q92WJ0 Fe ions import ATP binding protein FbpC 1 8.26290704735e-07 2.72263338115e-07 -223667646.585 +UniRef50_C9D087 7.59504616145e-06 2.07309765447e-06 -2229278374.2 +UniRef50_UPI0004717DF9 hypothetical protein 3.99775878913e-08 1.76562291225e-06 696664193.494 +UniRef50_R4XYL7 Glutamate dehydrogenase 1.38951897734e-06 0.000234558784526 94133293810.8 +UniRef50_C6AN40 Tellurite resistance protein TehB 3.30304864109e-07 2.87522496565e-07 -17271766.7762 +UniRef50_A6LTZ8 7.18751433046e-06 5.13594269898e-06 -828244643.243 +UniRef50_UPI0003B4BD8A Ktr system potassium transporter B 3.04919139807e-07 5.64864932295e-08 -100295308.035 +UniRef50_B5EXJ7 HMP PP phosphatase 3.04790282174e-05 1.3422546532e-05 -6885910962.96 +UniRef50_B3DTE2 DNA directed RNA polymerase subunit beta 1.48871412452e-08 3.85044474073e-05 15538707799.4 +UniRef50_G9PNM2 2.58353423654e-06 1.90970498982e-06 -272033135.716 +UniRef50_UPI00037627C6 hypothetical protein 4.28919418554e-07 6.98706438644e-08 -144952396.366 +UniRef50_UPI0004561990 hypothetical protein PFL1_04301 2.17716637439e-08 4.16438530641e-09 -7108274.37082 +UniRef50_Q8PLY8 Sulfoxide reductase catalytic subunit YedY 0.000133045836728 5.61192911587e-06 -51446632292.9 +UniRef50_U3T5A3 AraC family transcriptional regulator 1.23361434261e-06 7.03138033169e-05 27888519998.2 +UniRef50_V8FJ54 3.83157000272e-07 2.4237662799e-07 -56834763.8597 +UniRef50_Q71YZ5 2 succinylbenzoate CoA ligase 4.90055444994e-08 8.73825703817e-06 3507957457.1 +UniRef50_R6QTT5 2.34641165126e-07 1.23850825502e-07 -44727419.6566 +UniRef50_UPI0002626035 N acylamino acid racemase 3.52179748339e-07 2.76789484125e-05 11032151846.9 +UniRef50_G7ZBU5 8.79195836987e-09 3.31687698982e-07 130356972.861 +UniRef50_B1I4C7 Phospho N acetylmuramoyl pentapeptide transferase 5.48397506244e-08 1.64567015084e-07 44298243.1675 +UniRef50_Q0BXH7 Elongation factor P 0.000125352836038 2.01011751363e-05 -42491387089.3 +UniRef50_A0A024K7R9 6.68034991922e-08 2.70644910385e-06 1065657322.7 +UniRef50_B2V461 Molecular chaperone, DnaJ family 4.37242458129e-06 1.30123826738e-05 3488057106.15 +UniRef50_Q46892 Inner membrane permease YgbN 2.47658805084e-05 2.05933583358e-05 -1684498403.68 +UniRef50_Q57962 Probable phosphoenolpyruvate synthase 1.57251730505e-08 4.20223841815e-07 163301076.337 +UniRef50_Q9RSQ3 Phosphoglucosamine mutase 1.34018694272e-06 0.000367130268057 1.47673944495e+11 +UniRef50_Q9KV02 Sulfurtransferase TusD homolog 5.89821857578e-06 1.0054338974e-05 1677876806.09 +UniRef50_A4WUU1 6.97061115739e-06 7.23499297692e-06 106734184.874 +UniRef50_B9L5K2 3 isopropylmalate dehydratase small subunit 2.33998126793e-05 4.96087612676e-06 -7444024957.44 +UniRef50_P9WQ18 Trehalose synthase amylase TreS 2.66596022611e-08 5.73543476545e-07 220783731.068 +UniRef50_Q7WK82 ATP dependent Clp protease ATP binding subunit ClpX 0.000429285828639 0.000376689359364 -21233840077.6 +UniRef50_M1HJ56 Arginine serine rich splicing factor SR45 transcript VII 1.06997490651e-06 1.89531391223e-06 333199484.658 +UniRef50_B9JX70 ABC transporter membrane spanning protein 8.40451577838e-05 1.11187498437e-05 -29441285793.1 +UniRef50_E4PYK4 9.00846710666e-05 1.54078280971e-05 -30147957894.7 +UniRef50_UPI00034DD06F hypothetical protein 2.76008213713e-08 1.0810459117e-07 32500359.7601 +UniRef50_Q49YI2 Putative dipeptidase SSP1012 0.000217334617115 5.39371980972e-05 -65965543169.4 +UniRef50_Q6NAT0 Holliday junction ATP dependent DNA helicase RuvA 2.538957945e-07 6.44195602122e-07 157568821.854 +UniRef50_UPI000370A604 hypothetical protein 2.18501642579e-07 1.45329207227e-07 -29540610.0784 +UniRef50_Q7ML43 1.4842175184e-06 2.28043787796e-06 321443929.877 +UniRef50_UPI000367EFAE hypothetical protein 2.98632019236e-07 9.22717732702e-07 251951060.919 +UniRef50_R6UK77 1.39077664779e-07 3.32930191572e-07 78260643.9043 +UniRef50_J7M6X3 MarR family transcriptional regulator 0.000101004177232 2.99801127546e-05 -28673286392.8 +UniRef50_H6RV56 ABC transporter substrate binding protein 5.45057158398e-07 1.06610341326e-07 -177006360.399 +UniRef50_P17055 Spheroidene monooxygenase 1.16089620059e-05 7.06460974096e-06 -1834610774.83 +UniRef50_B7UZN8 1.21866500854e-05 1.21363029532e-05 -20325755.0979 +UniRef50_W6LVN7 5.96561725863e-07 7.89554215805e-08 -208964016.783 +UniRef50_A4YNQ7 Fructose 1,6 bisphosphatase class 1 2.17259422031e-07 9.14272245072e-08 -50800002.2751 +UniRef50_UPI00039CC0CD hypothetical protein 1.00735112938e-06 6.06815147654e-06 2043107203.15 +UniRef50_UPI00047A1A5F hypothetical protein 1.91603932424e-08 1.37760435985e-07 47880292.6415 +UniRef50_Q4L6F4 Penicillin binding protein 2 0.000197790564135 5.29411681174e-05 -58477478674.4 +UniRef50_G0K3J8 Aspartate transaminase 8.66220535402e-06 1.52750019926e-06 -2880368023.65 +UniRef50_N6A8S2 0.00128624641912 0.000408651374255 -3.54295888914e+11 +UniRef50_UPI000381D193 hypothetical protein 4.95329075139e-07 1.34710916129e-07 -145585976.075 +UniRef50_V9AXK3 4.292866749e-07 1.0361989656e-05 4009954081.44 +UniRef50_Q9SZX3 Argininosuccinate synthase, chloroplastic 6.78255081935e-08 1.06036094597e-06 400698736.01 +UniRef50_UPI00046EE386 hypothetical protein 2.85873698862e-07 4.70552027218e-07 74556907.4153 +UniRef50_Q2RJ31 Glutamate 1 semialdehyde 2,1 aminomutase 0.000211707455126 8.4053287015e-05 -51535554159.2 +UniRef50_T1IAF8 4.42162544977e-07 1.38321641777e-06 379914996.476 +UniRef50_Q652A8 UDP glucose 4 epimerase 3 3.3148135432e-05 3.50173337234e-05 754618287.881 +UniRef50_C7NJ54 2.67793570637e-07 5.98741611968e-07 133607785.474 +UniRef50_A0A009P2J7 SnoaL like polyketide cyclase family protein 1.06376226475e-06 7.74113834311e-07 -116934625.754 +UniRef50_P31884 Quinone reactive Ni Fe hydrogenase small chain 1.99661560248e-06 1.72780677606e-05 6169309760.73 +UniRef50_M7MSG6 Putative metal ABC transporter metal binding protein 1.18972563322e-07 6.63670239507e-07 219901136.068 +UniRef50_A6LQU3 Integral membrane sensor signal transduction histidine kinase 1.1268238473e-06 1.92036119138e-05 7297821169.58 +UniRef50_C1DR09 1.41330594788e-06 1.23212229257e-06 -73146065.0221 +UniRef50_K9IDN1 Lactose PTS family porter repressor 1.35709196075e-07 1.44875779552e-07 3700662.23629 +UniRef50_Q0SA63 Flavin binding monooxygenase 1.02276836437e-05 1.20783928514e-06 -3641421853.49 +UniRef50_UPI00046253F9 PTS sugar transporter subunit IIA 9.73041004731e-08 2.92513105482e-07 78808270.806 +UniRef50_UPI00026C726F cell division protein FtsZ 5.52723730095e-08 2.12603970475e-07 63516696.5724 +UniRef50_W5X4V3 1.59664538314e-07 3.666684518e-06 1415827001.78 +UniRef50_A3TWL6 8.87359015352e-06 2.2139832901e-06 -2688565013.33 +UniRef50_D9RF73 1.32463599085e-06 2.29411710101e-06 391391421.043 +UniRef50_F4NHW2 3.20417141437e-06 1.11440266111e-05 3205416975.9 +UniRef50_UPI0003B4D2F4 hypothetical protein 6.31498966191e-06 1.34739296056e-05 2890151905.34 +UniRef50_UPI0002628E38 arginine ABC transporter ATP binding protein 7.84742675097e-07 4.14489817624e-07 -149475622.075 +UniRef50_A4EQN9 2.63945509496e-07 1.67120686114e-06 568128676.696 +UniRef50_UPI0003A677C1 histidine kinase 7.87357538774e-08 5.57419051372e-08 -9282898.90267 +UniRef50_A5UNL6 Transposase, RNaseH like family 5.22851761134e-05 1.63624599604e-05 -14502441332.3 +UniRef50_U5NRH5 0.000178924692635 0.000295316705195 46988883761.1 +UniRef50_W5X9W9 Glucose 6 phosphate 1 dehydrogenase 1.01761908466e-07 1.85033285536e-06 705919548.638 +UniRef50_D5WDJ8 Ectoine hydroxyectoine ABC transporter, ATP binding protein 0.000165254093452 6.55526342436e-05 -40250702556.9 +UniRef50_UPI0003B7A139 NUDIX hydrolase 3.7520921556e-06 2.42947689639e-07 -1416684682.95 +UniRef50_Q1NAN1 4.69575343559e-08 1.57499562437e-07 44627173.2395 +UniRef50_UPI0003A86DCB sec independent translocation protein mttA Hcf106 5.64491131968e-07 4.25773162061e-07 -56002146.7124 +UniRef50_A6V2V4 3 isopropylmalate dehydratase small subunit 1.61415264876e-05 9.34882362e-06 -2742297503.49 +UniRef50_T0ZWG6 Phosphoribosylformylglycinamidine synthase I 2.51528009255e-07 3.30100747039e-07 31720778.4393 +UniRef50_UPI000369DCC7 hypothetical protein 5.44969019987e-07 1.81409750662e-06 512362744.01 +UniRef50_A0A024HJZ5 3.07627504106e-06 1.02067985674e-06 -829869000.9 +UniRef50_P61951 Flavodoxin 1 3.8303605491e-05 6.78239944027e-06 -12725497691.4 +UniRef50_Q9ZL73 Flagellar biosynthetic protein FlhB 2.17752206347e-06 2.54292551931e-05 9387009995.27 +UniRef50_U3ST65 Fructan hydrolase FruB 7.55109695962e-05 2.14277347298e-05 -21834065591.5 +UniRef50_B7VA67 1.82034059833e-05 7.06318945962e-06 -4497442116.45 +UniRef50_Q0A562 2.69180165648e-07 2.02413706683e-07 -26954438.8008 +UniRef50_Q8EGH1 Ditrans,polycis undecaprenyl diphosphate synthase farnesyl diphosphate specific) 2.04856703827e-05 2.56660035054e-06 -7234148463.72 +UniRef50_P77544 Glutathione S transferase YfcF 5.92090285717e-05 4.53046920905e-07 -23720510809.4 +UniRef50_B6JMC7 Phosphotransacetylase 2.30643170378e-06 6.55044012135e-06 1713358278.01 +UniRef50_Q6G6T1 MerR family regulatory protein 0.00011570972894 7.20639688898e-06 -43804126634.6 +UniRef50_B1JFW5 Putative sialic acid transporter 2.86525587553e-05 7.25416944637e-06 -8638792351.77 +UniRef50_O31688 Zinc transporting ATPase 1.64451683429e-07 2.20835824755e-05 8849022078.75 +UniRef50_B0T2U9 ChaC family protein 3.88340830237e-08 3.35206932227e-08 -2145080.66529 +UniRef50_Q5HG20 Diaminopimelate decarboxylase 7.28391697913e-05 1.15654227328e-05 -24736963600.9 +UniRef50_P39405 Ferric iron reductase protein FhuF 3.38635659748e-05 2.95316705201e-06 -12478907358.4 +UniRef50_UPI0004674EC8 pseudouridine synthase 1.14431618646e-07 1.78352939312e-07 25805821.5557 +UniRef50_UPI00037DA301 hypothetical protein 4.69697654229e-07 9.824339406e-08 -149960643.087 +UniRef50_UPI0002DDF67E hypothetical protein 3.86829135201e-07 4.27191730501e-07 16294875.0274 +UniRef50_G8RZN0 5.49893768598e-08 2.69898278689e-07 86761360.8972 +UniRef50_Q3J3J9 7.02504504244e-06 8.9040212621e-06 758565757.508 +UniRef50_B7UZJ0 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 1.11572213456e-06 1.85900385592e-06 300071952.005 +UniRef50_W0YUW2 Phosphoketolase 3.8164938633e-06 2.56564237252e-06 -504984096.502 +UniRef50_I0ZXX0 ATPase associated with various cellular activities AAA_5 2.91453612608e-05 1.3148308522e-05 -6458206496.57 +UniRef50_Q9WZR0 CTP synthase 6.73195784069e-08 2.94483785455e-07 91708978.0036 +UniRef50_Q8ZJF2 Tryptophan tRNA ligase 4.67345301486e-05 1.42611555949e-05 -13109899800.4 +UniRef50_P44638 Lactoylglutathione lyase 4.01441553581e-06 3.23672091182e-07 -1489998419.11 +UniRef50_UPI000360EF37 hypothetical protein, partial 1.70013249845e-07 5.69880686071e-07 161431390.93 +UniRef50_G3NMT4 5.40058208084e-08 3.8476553164e-06 1531542854.68 +UniRef50_P0ABJ0 Cytochrome bo ubiquinol oxidase subunit 1 4.53517414156e-05 0.00010635895701 24629361578.2 +UniRef50_Q04664 Galactosyl transferase CpsE 1.78207040781e-06 4.54172093428e-06 1114104782.26 +UniRef50_Q88HN0 CobW P47K family protein 1.05248090398e-07 1.28976731937e-07 9579543.77247 +UniRef50_A5UMX1 Predicted membrane associated Zn dependent protease 2.78865623254e-05 5.34025617684e-06 -9102220466.48 +UniRef50_A5UP18 2.75383464472e-05 1.01647693896e-05 -7013926255.92 +UniRef50_UPI00045E2399 PREDICTED 6.30840724341e-07 1.08234168055e-06 182276476.561 +UniRef50_A3SUN2 1.57400855818e-05 1.29125227348e-06 -5833171313.68 +UniRef50_P64452 4.59439886299e-05 1.72019043043e-05 -11603532147.3 +UniRef50_W1GE26 Aerotaxis sensor receptor protein 1.1069970347e-06 1.7303713195e-06 251663848.436 +UniRef50_Q167K9 Chemotaxis response regulator protein glutamate methylesterase 6.75217610652e-07 9.34288145708e-08 -234875276.329 +UniRef50_Q9A7N9 Guanylate kinase 9.64062507658e-08 5.33993978369e-07 176659535.439 +UniRef50_P0AGJ6 2.23556044187e-05 1.89710945528e-06 -8259345470.69 +UniRef50_K4PRE7 PTS system beta glucoside specific EIIBCA component 2.16351331064e-06 3.52738739095e-05 13367058883.6 +UniRef50_U5MWY6 4.02960371937e-06 9.42500122969e-06 2178188183.89 +UniRef50_R4GFK2 1.15173507714e-07 1.03191756571e-06 370100825.928 +UniRef50_W7WSH9 3.93286986155e-07 1.44003239666e-05 5654812714.66 +UniRef50_D0JTC4 Uroporphyrinogen decarboxylase 2.62486529261e-05 1.88317231262e-05 -2994305576.18 +UniRef50_P0CQ36 Phosphoribosylaminoimidazole carboxylase 1.86080582161e-07 2.64283030819e-07 31571288.1752 +UniRef50_A0A038FKH8 1.93966093626e-05 5.76005642589e-06 -5505243759.87 +UniRef50_B9TKN7 3.55867028307e-07 2.50262236609e-07 -42633950.325 +UniRef50_F4SG83 Glycerol 3 phosphate transporter 2.3413107756e-05 3.48799258104e-06 -8044013504.81 +UniRef50_F9EIW4 1.90580605219e-06 3.9239345132e-07 -610983238.632 +UniRef50_UPI0003A9F6F6 molybdenum cofactor biosynthesis protein MoeA 5.18705800324e-08 4.43569703789e-07 158133742.949 +UniRef50_P67634 Tyrosine recombinase XerS 6.71138930197e-05 2.02780881376e-05 -18908189170.9 +UniRef50_P54473 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 6.54900295746e-07 3.82699833941e-06 1280614906.25 +UniRef50_K8AXM7 NADH ubiquinone oxidoreductase chain G 1.8718313497e-06 5.41565658592e-06 1430685735.49 +UniRef50_O27633 Probable S methyl 5 thioinosine phosphorylase 1.65980436191e-05 2.45415544476e-06 -5710061220.99 +UniRef50_F2LRZ3 2.40111447617e-07 7.63664887617e-08 -66105849.2664 +UniRef50_X7Y8I7 2.95705784655e-07 1.71586182546e-06 573334420.949 +UniRef50_W1GDJ6 Ribonucleotide reductase transcriptional regulator NrdR 4.40364545087e-07 1.34075017318e-06 363496727.035 +UniRef50_P30871 Inorganic triphosphatase 3.55307580835e-05 1.13066236903e-05 -9779580318.09 +UniRef50_Q16DT4 Magnesium chelatase 30 kDa subunit 8.54534121249e-06 3.29349485352e-06 -2120234822.52 +UniRef50_P25747 2.2693521386e-05 4.7242612268e-06 -7254410833.89 +UniRef50_V8G0E8 2.76851539012e-06 5.06239808945e-06 926068594.826 +UniRef50_Q5M061 NADPH dependent 7 cyano 7 deazaguanine reductase 1.24040711925e-06 9.30716877779e-06 3256650671.85 +UniRef50_Q1GFL6 2.00139507124e-05 1.00287358992e-05 -4031153752.45 +UniRef50_A9UPG1 2.09257023546e-08 9.65457440677e-09 -4550292.66482 +UniRef50_UPI00035F8DA2 hypothetical protein 6.89922137727e-07 1.52387752177e-07 -217009227.735 +UniRef50_UPI00036C24C5 hypothetical protein 4.55452176102e-06 1.5574698134e-06 -1209946649.22 +UniRef50_R7HEN4 Pseudouridine synthase 8.92488928241e-05 1.82687061985e-05 -28655572365.6 +UniRef50_Q9JLJ2 4 trimethylaminobutyraldehyde dehydrogenase 8.71099199654e-08 2.15301774336e-07 51752624.7005 +UniRef50_R9WF85 Oxidoreductase 3.28492065214e-06 7.77148264131e-05 30048266313.4 +UniRef50_L0KAS8 Sulfite reductase, subunit C 1.1723167356e-06 8.95515963488e-06 3142029184.66 +UniRef50_A6UYG3 6.82940365616e-06 1.83807077915e-06 -2015062332.99 +UniRef50_U6F043 Transposase YhgA family protein 5.3809445313e-06 1.28288667888e-05 3006817611.64 +UniRef50_A6DUS0 CarR 2.05241936746e-07 5.89466105706e-06 2296888315.89 +UniRef50_UPI000470D4BA amino acid permease, partial 2.1060328233e-07 1.52635786492e-07 -23402189.411 +UniRef50_E6UW30 5 nucleotidase domain containing protein 2.12511366872e-08 5.95572937899e-06 2395821690.65 +UniRef50_P75736 Esterase YbfF 2.83156575095e-05 1.43997590485e-05 -5618018975.98 +UniRef50_UPI00036D73AB hypothetical protein 8.07279930707e-08 6.08081637672e-06 2422309309.84 +UniRef50_A6LRB4 Histidine kinase 1.65699211876e-06 1.30872574362e-05 4614538373.76 +UniRef50_P37747 UDP galactopyranose mutase 2.63856609784e-05 4.50356420655e-05 7529226225.87 +UniRef50_Q1IEH7 GTPase Der 4.93452122986e-06 7.13725598739e-05 26821851487.0 +UniRef50_UPI0003B66950 tetracycline transporter 8.49049924826e-08 2.70153062244e-06 1056363876.42 +UniRef50_D3QIS4 6.74082122953e-06 1.58205377784e-05 3665592991.43 +UniRef50_P0AC26 Nitrite transporter NirC 3.72812402679e-05 6.10326077257e-06 -12586932919.1 +UniRef50_P71103 Phosphate acetyltransferase 3.28267440274e-06 6.37220414335e-05 24400114144.8 +UniRef50_A1JNH2 UPF0283 membrane protein YE2117 3.52579726221e-05 2.1271311299e-06 -13375327271.5 +UniRef50_W7Z054 2.23931863463e-07 1.24868292432e-07 -39993179.2719 +UniRef50_Q9K1N7 7.70379569081e-06 8.2242215653e-05 30092074828.0 +UniRef50_W1YTD2 9.77363753634e-07 7.72603175785e-07 -82664357.9725 +UniRef50_E1VH08 Exodeoxyribonuclease III 1.06866094732e-05 6.64296341073e-05 22504143088.6 +UniRef50_A6R2L6 ATP dependent RNA helicase DBP9 5.51433992969e-08 1.202547554e-07 26286253.465 +UniRef50_B8CX69 Predicted ATPase of the ABC class 0.000110890097835 4.90845656294e-05 -24951651790.6 +UniRef50_D4JAE0 1.31375634168e-06 1.50236799977e-05 5534864419.61 +UniRef50_A4XKE2 Phosphopantetheine adenylyltransferase 6.38122885107e-07 8.23995582221e-06 3068953241.69 +UniRef50_G7MBQ3 PTS system transcriptional activator 5.83018612708e-06 1.60141105018e-05 4111375240.87 +UniRef50_M1JGK6 Ammonium transporter 1.85042151398e-06 2.81701149624e-06 390224237.231 +UniRef50_UPI000255A1E5 multi anti extrusion protein MatE 2.11833229753e-07 2.46248850868e-07 13894008.5713 +UniRef50_UPI00037C177B hypothetical protein 1.31624482939e-06 1.66551436497e-07 -464145331.034 +UniRef50_Q8CS21 2 succinylbenzoate CoA ligase 0.00014886252707 2.09148257495e-05 -51654057117.7 +UniRef50_D3E0E9 3.10933180482e-05 8.90088631769e-06 -8959357021.36 +UniRef50_P44869 Ribosomal RNA small subunit methyltransferase D 3.00482509118e-07 1.91981395121e-07 -43803231.179 +UniRef50_Q4A602 ATP synthase subunit alpha 3.30896185304e-08 1.82022052457e-07 60125851.1828 +UniRef50_B9KML1 Response regulator receiver protein 6.20160854692e-05 5.3693946399e-05 -3359749666.77 +UniRef50_UPI0002C45261 PREDICTED 4.56796072939e-08 1.69065940293e-08 -11616018.5395 +UniRef50_UPI0004702537 methionine ABC transporter ATP binding protein 1.0287804658e-07 8.39973985947e-08 -7622349.28327 +UniRef50_W7VUU1 4.05152839959e-07 2.4475759231e-06 824551262.013 +UniRef50_UPI0003B4C98F RpiR family transcriptional regulator 2.67166508842e-07 2.61933151795e-07 -2112770.46039 +UniRef50_D8JJP4 AraC type DNA binding domain containing protein 9.07152231135e-06 4.75156940661e-05 15520383900.4 +UniRef50_UPI0003793A77 hypothetical protein 2.22061545941e-07 2.47095054959e-07 10106334.7863 +UniRef50_A3M540 TonB dependent receptor 1.00829278981e-06 7.73435178394e-05 30817467091.1 +UniRef50_UPI00047C9351 hypothetical protein, partial 2.10941005529e-07 5.99423469122e-07 156835137.768 +UniRef50_U3SV52 Acyl CoA thioesterase 4.68943279864e-05 1.52550702457e-05 -12773156607.3 +UniRef50_K1UTW6 1.88913398596e-06 7.09109927963e-06 2100097224.35 +UniRef50_D2ZP15 2.06972402462e-05 3.25418131361e-06 -7041976941.49 +UniRef50_Q79UU3 Bll2159 protein 5.6315505217e-07 2.31395545636e-07 -133935383.935 +UniRef50_Q5F9U0 Phenylalanine tRNA ligase alpha subunit 2.39804719611e-05 1.11561813651e-05 -5177323485.35 +UniRef50_Q3KDB9 Alanine racemase domain protein 7.90909724559e-06 5.38004977289e-06 -1021007499.63 +UniRef50_P0A9P5 Thioredoxin reductase 3.85173378469e-05 3.28319143056e-05 -2295275251.62 +UniRef50_C7NFG6 Cell envelope related function transcriptional attenuator common domain protein 4.74505730337e-08 1.40892797847e-07 37723772.8222 +UniRef50_E1ZFT3 2.8933970481e-08 1.22562919287e-07 37799155.5894 +UniRef50_A3P9L6 4.27406885532e-06 2.00895717825e-06 -914453380.079 +UniRef50_U3T490 4.2533670047e-06 4.15039625779e-05 15038522549.1 +UniRef50_A4A899 4.58992754656e-07 3.92777035471e-07 -26732098.3932 +UniRef50_A6LY62 4.23387974682e-06 7.7608441084e-06 1423878793.49 +UniRef50_UPI0001DD0936 hypothetical protein, partial 1.02953479764e-06 2.48684564639e-07 -315238821.172 +UniRef50_U6M2X4 2.40207525351e-07 3.32218023406e-07 37145767.1606 +UniRef50_I3ZJH3 GAF domain containing protein 1.16771233205e-07 3.32999393312e-07 87293961.6531 +UniRef50_Q6GF11 Protein SprT like 0.000246783458307 1.96456929443e-05 -91698303170.9 +UniRef50_UPI000471A4D9 hypothetical protein 1.366666894e-07 7.81281424482e-08 -23632729.7532 +UniRef50_UPI000362ADEC hypothetical protein 3.58753342159e-08 1.49736897647e-07 45967310.3956 +UniRef50_A6Q6L7 Transketolase 6.01411559548e-07 5.43562825294e-05 21701501057.0 +UniRef50_A9LZ37 Tail fibre protein, putative 2.04054251647e-06 9.14150998865e-06 2866747707.19 +UniRef50_P45550 4.40370040747e-05 7.540986435e-06 -14733890177.6 +UniRef50_M1XJU0 Transposase for IS1272 8.22775888012e-05 1.06747481519e-05 -28906945435.8 +UniRef50_P75167 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.59154608006e-07 1.00764874535e-07 -23572651.9248 +UniRef50_B9DM19 50S ribosomal protein L3 0.000131992639121 5.07207856933e-05 -32810444546.6 +UniRef50_I6T7R3 ATP binding protein 2.57799506289e-05 1.20065454453e-05 -5560492691.31 +UniRef50_P0ADP0 Flavin mononucleotide phosphatase YigB 2.72353993782e-05 1.07417808242e-05 -6658676209.71 +UniRef50_Q5HQS0 Acetyltransferase, GNAT family 6.87482466354e-05 1.57658366718e-05 -21389649069.6 +UniRef50_UPI000365881D UDP N acetylmuramate alanine ligase, partial 1.82290035162e-07 8.76216695518e-08 -38218780.9083 +UniRef50_UPI000464B7EB hypothetical protein, partial 1.06851270543e-06 4.88981293079e-07 -233963942.816 +UniRef50_Q06464 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.25589886554e-07 1.1271693837e-07 -5196967.15072 +UniRef50_B3GYD9 7.48849716324e-07 3.13331011751e-07 -175824245.452 +UniRef50_UPI0003745C94 hypothetical protein 9.65271707964e-06 1.82967339842e-05 3489695698.39 +UniRef50_O67444 9.03924561723e-08 2.23520817014e-07 53745552.9406 +UniRef50_UPI00029AB2BE DNA processing protein 6.2870907391e-07 4.95373006235e-07 -53829406.7379 +UniRef50_UPI000373702C hypothetical protein 1.93157409838e-07 2.90885747303e-07 39454129.0962 +UniRef50_B2VK30 Protein TsgA homolog 2.97374290412e-05 7.97447901047e-06 -8785969988.82 +UniRef50_K6LK64 Diguanylate cyclase domain protein 8.94516561282e-07 4.56037688626e-06 1479952798.36 +UniRef50_K2SED6 1.37047494064e-06 7.48867184436e-07 -250950679.165 +UniRef50_Q9RXB5 3.86504425414e-07 0.00021732239059 87579679347.5 +UniRef50_Q9RXB7 2.45120771981e-06 0.000553583475266 2.22498859562e+11 +UniRef50_G7U855 Ser Thr phosphatase family protein 1.1005422415e-06 2.18455871511e-05 8375029200.33 +UniRef50_I3YFJ2 NADH dehydrogenase subunit M 7.78856923336e-07 3.44596700088e-05 13597357552.7 +UniRef50_Q58690 Putative fumarate hydratase subunit alpha 3.29739899649e-05 2.31318568035e-06 -12378142940.0 +UniRef50_A6LR96 Radical SAM domain protein 3.32029699854e-06 1.86712353132e-06 -586663961.16 +UniRef50_L7WSQ0 0.00026303276134 6.25083781117e-05 -80954154220.0 +UniRef50_B4RIY5 Rsp 1.00932082575e-06 4.16155179136e-05 16393220058.4 +UniRef50_UPI0002889AF8 alcohol dehydrogenase 1.00515736442e-06 3.3151049514e-07 -271959507.705 +UniRef50_D6PE21 Predicted flagellar hook capping protein 8.52565299713e-08 1.17276706558e-07 12926938.2198 +UniRef50_G7UVD4 Dihydrolipoamide dehydrogenase 8.81290246311e-07 1.97869076315e-05 7632429736.42 +UniRef50_Q6FDN3 Glycerol kinase 2.71176616565e-07 1.26431651399e-06 400942763.787 +UniRef50_A5IV34 50S ribosomal protein L3 8.72987569824e-05 1.86377152345e-05 -27719305119.4 +UniRef50_J9B6L5 9.79177642702e-08 1.77784766037e-07 32243288.6916 +UniRef50_UPI00029ABC7B LysR family transcriptional regulator, partial 4.01233001367e-07 2.06466716722e-07 -78629539.1623 +UniRef50_Q0BS24 Acetolactate synthase small subunit 0.000119247875902 1.51493399138e-05 -42025856411.0 +UniRef50_P37924 Outer membrane usher protein FimD 3.01939227975e-05 1.15883470606e-05 -7511299241.08 +UniRef50_U3TX51 Malonyl CoA acyl carrier protein transacylase 1.75527998524e-05 2.25744585272e-05 2027305229.7 +UniRef50_UPI000361F37C hypothetical protein 4.30138955065e-07 1.8323822648e-07 -99676853.9424 +UniRef50_UPI0002EB7738 hypothetical protein 1.07653267706e-07 4.43384112479e-07 135538661.916 +UniRef50_V9UBP5 1.38211946844e-06 1.65443532329e-06 109937252.294 +UniRef50_I1EPG5 2.26497517312e-07 4.74130017204e-07 99972278.9989 +UniRef50_E9BYY8 2.07160620757e-08 1.65232513169e-07 58343064.7225 +UniRef50_I2QVL7 4.2822554174e-07 2.68064956953e-07 -64658793.4699 +UniRef50_E3A0E2 4.39648606825e-06 3.36450188563e-05 11807991606.4 +UniRef50_UPI0003777C1D hypothetical protein 2.04098969672e-06 2.63837077196e-07 -717458320.615 +UniRef50_A9BF34 50S ribosomal protein L7 L12 1.91628639599e-05 1.94109119692e-05 100140025.246 +UniRef50_T0TSM6 Histidine kinase, putative 4.15797235325e-05 1.45964223484e-05 -10893489810.4 +UniRef50_UPI00037689C2 hypothetical protein 9.79272942437e-08 2.37088538711e-06 917621074.424 +UniRef50_UPI00023B2B80 PREDICTED 8.66862299559e-08 3.89941196861e-07 122427751.496 +UniRef50_A4X0E6 5.44875341365e-07 3.36138450299e-07 -84269644.413 +UniRef50_G8V4L1 0.000136699162563 3.15188589135e-05 -42462579290.6 +UniRef50_W4S2X5 Alkyl hydroperoxide reductase subunit F 7.71198234451e-07 2.36343706486e-06 642806354.804 +UniRef50_E2XSQ7 Transcriptional regulator, AraC family 2.27653299757e-06 1.76133223777e-06 -207992868.956 +UniRef50_U4TYH6 1.62769612583e-05 7.0230451535e-06 -3735919489.83 +UniRef50_UPI0003B7313F GNAT family acetyltransferase 3.8705863834e-07 2.4049220093e-07 -59170669.3549 +UniRef50_UPI000262A595 membrane protein 5.02517358481e-06 3.35477697895e-07 -1893287778.59 +UniRef50_UPI0002378354 AraC family transcriptional regulator 1.13637457606e-06 1.35740812762e-07 -403968129.401 +UniRef50_F0Y7I6 2.29612588454e-06 3.29159633223e-06 401883635.529 +UniRef50_UPI00041D5BF9 transcription termination factor Rho 1.18847788764e-07 6.62469381435e-08 -21235608.8805 +UniRef50_D0IRH3 2.06276496643e-06 1.26519994175e-05 4275003892.43 +UniRef50_Q3AE81 Adenine deaminase 2 2.77284915682e-07 7.39974158041e-08 -82069658.3189 +UniRef50_W1FF26 5.32620805937e-06 2.69659595577e-07 -2041390665.66 +UniRef50_Q3IV87 Caspase 1, p20 3.81179151706e-05 1.08746078944e-05 -10998457460.4 +UniRef50_W6BZ44 Cupin domain protein 1.87966852506e-07 4.93107487202e-07 123189018.723 +UniRef50_UPI000363D9BF hypothetical protein, partial 2.91478981214e-07 1.49245080691e-07 -57421571.0474 +UniRef50_Q8FT12 Tryptophan synthase beta chain 2 1.53395825733e-07 9.96895226372e-08 -21681893.6102 +UniRef50_Q73NM0 Chorismate synthase 4.45875422911e-08 1.84711140873e-07 56569616.2575 +UniRef50_S5YXU8 ErfK YbiS YcfS YnhG family protein 4.57504033361e-05 5.39274364427e-05 3301168608.61 +UniRef50_Q0AK81 Ferric uptake regulator, Fur family 0.000107162869468 2.28920951453e-05 -34021145712.8 +UniRef50_F0K4Y1 2,3 cyclic nucleotide 2phosphodiesterase 3.78840155347e-06 1.09852474362e-05 2905454998.09 +UniRef50_D7A6Y6 1.07554198471e-07 8.03888284457e-08 -10966993.2358 +UniRef50_X8ACG0 Pyridine nucleotide disulfide oxidoreductase family protein 4.94833773131e-07 2.75404860856e-05 10918661726.0 +UniRef50_P29928 Uroporphyrinogen III C methyltransferase 5.39947344412e-07 2.55685309762e-06 814249602.788 +UniRef50_Q2LTA1 4 hydroxy tetrahydrodipicolinate synthase 5.4353334221e-08 2.92788927977e-07 96259375.1331 +UniRef50_O83571 Transketolase 3.84857391345e-07 1.77006576692e-07 -83911924.4917 +UniRef50_P37518 Ribosome binding ATPase YchF 7.77465762818e-05 5.2464797859e-05 -10206564191.6 +UniRef50_D9RHA1 7.95710956243e-05 1.54159034787e-05 -25900238341.9 +UniRef50_A5IVA9 0.000116418063965 3.08676477226e-05 -34537752858.7 +UniRef50_UPI0003763331 hypothetical protein 2.26811341459e-07 2.92831333271e-07 26653080.8509 +UniRef50_UPI00016C4318 hypothetical protein 7.72614087193e-07 4.30126679112e-07 -138266369.435 +UniRef50_UPI000255CEAC 3,4 dihydroxy 2 butanone 4 phosphate synthase 1.49147321113e-08 1.0078794131e-07 34668068.3363 +UniRef50_UPI00036D0344 hypothetical protein, partial 2.91147073638e-07 9.78105420454e-08 -78052330.3101 +UniRef50_F8GWB2 Aromatic compounds catabolic protein 1.12588349656e-07 1.58774503126e-07 18645916.9237 +UniRef50_X5DV87 Molybdate ABC transporter, periplasmic molybdate binding protein 0.000171209960761 5.46666404902e-05 -47049968540.8 +UniRef50_UPI0004541A53 PREDICTED 5.74572735962e-07 2.39555096073e-06 735151255.255 +UniRef50_UPI000360E9DE hypothetical protein 3.41240950785e-07 6.04828651842e-08 -113345484.446 +UniRef50_P55734 Inner membrane protein YgaP 1.40151864724e-05 7.14348523532e-06 -2774190114.67 +UniRef50_UPI0003B40AC8 ABC transporter 4.67874074605e-08 1.9489042721e-07 59791006.5011 +UniRef50_G7MCR1 Taurine transporting ATPase 1.37267632307e-06 8.09821909556e-06 2715184148.94 +UniRef50_Q8DVQ3 Ribosome maturation factor RimP 5.57184888849e-05 2.79103792231e-05 -11226475114.3 +UniRef50_C7NA19 Ribonucleoside diphosphate reductase subunit beta 0.000180563286137 4.82699858703e-05 -53408428739.1 +UniRef50_X1LB27 Marine sediment metagenome DNA, contig 2.58856459014e-07 1.67794102236e-06 572901852.35 +UniRef50_UPI0001E2E6F3 transport system permease 2.75687258931e-07 1.9233045929e-07 -33652162.918 +UniRef50_A3N3F8 3 dehydroquinate dehydratase 5.38926304002e-07 2.33646412647e-07 -123245238.346 +UniRef50_K0RWJ4 4.3110427424e-08 5.49345924854e-08 4773560.53411 +UniRef50_A3TPX9 7.10684697507e-07 1.38480778634e-05 5303726835.02 +UniRef50_UPI0003B75E06 preprotein translocase subunit TatA 6.39738583724e-07 4.78766491838e-07 -64986408.8441 +UniRef50_Q73FJ4 Glutamine amidotransferase subunit PdxT 0.000182328691833 6.59721995591e-05 -46974543785.7 +UniRef50_Q1JAW0 DNA repair protein RecN 5.97392746286e-05 5.5106608689e-05 -1870264089.02 +UniRef50_UPI00037D1EFC ABC transporter 5.86171435572e-08 9.13151682254e-07 344986079.59 +UniRef50_P0A0S5 Cell division protein FtsZ 3.34640182345e-06 3.48741758183e-05 12728149251.0 +UniRef50_A3PKK1 Transcriptional regulator, LuxR family 0.000131331314106 4.84255997554e-05 -33470054250.9 +UniRef50_UPI000185FC5F hypothetical protein TGME49_010350 2.75889714784e-07 2.14958174354e-07 -24598810.5857 +UniRef50_F3R0E6 Cobalt transport protein 2.01429840546e-07 4.29729208224e-07 92167256.2799 +UniRef50_A0KF56 Trap transporter solute receptor, taxi family 4.95380895057e-07 1.14927135311e-07 -153593851.502 +UniRef50_Q8TY21 GTP cyclohydrolase MptA 3.03708332945e-05 4.44693080934e-06 -10465797555.3 +UniRef50_A3PPL1 Aminotransferase 7.84683725582e-05 2.5784171095e-05 -21269258638.5 +UniRef50_R5G6A1 Cyclopropane fatty acyl phospholipid synthase 2.98329240325e-06 4.80738846681e-06 736409965.035 +UniRef50_P43799 Anaerobic glycerol 3 phosphate dehydrogenase subunit A 2.58865051196e-05 3.89996268726e-06 -8876236985.14 +UniRef50_Q99RJ0 Protein flp 9.26277548262e-05 3.13874176223e-05 -24723475632.7 +UniRef50_F0VWI5 PTT family thiamin transporter 4.09308345524e-05 2.89053871314e-06 -15357334237.2 +UniRef50_Q12PZ2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 6.37047600074e-08 8.80479674846e-08 9827651.58329 +UniRef50_Q8FGS9 Ribosomal RNA small subunit methyltransferase F 3.13701740099e-05 8.36132980282e-06 -9288952756.68 +UniRef50_U7PCU9 4.56260682599e-07 3.34322687445e-05 13312819115.7 +UniRef50_UPI0001851281 aldehyde dehydrogenase 3.82550067579e-08 6.1713825183e-08 9470612.87029 +UniRef50_G8NCG2 Short chain dehydrogenase reductase SDR 3.98671185418e-08 3.87488562505e-07 140339042.723 +UniRef50_Q99XQ7 Elongation factor Ts 5.03874227619e-05 4.00189716792e-05 -4185870937.29 +UniRef50_A4WSL4 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 2.43289321406e-05 1.79209363191e-07 -9749539435.66 +UniRef50_UPI00045EAF7F amidase 1.88830149901e-07 7.52902236264e-08 -45837461.5288 +UniRef50_P22098 Tryptophan biosynthesis protein TrpCF 3.5386865701e-05 5.9973047584e-06 -11864926403.0 +UniRef50_UPI00037775E1 hypothetical protein 4.00046294021e-08 7.73820259147e-08 15089713.6444 +UniRef50_D6GRE6 CobQ CobB MinD ParA nucleotide binding domain protein 6.97683137846e-08 6.44040381182e-07 231840680.719 +UniRef50_UPI0000510540 aspartate ammonia lyase 3.65968013866e-07 2.36622660532e-07 -52218306.3869 +UniRef50_UPI00034B0665 glucose 1 phosphate adenylyltransferase 1.08510914136e-07 2.50861817701e-07 57468806.6112 +UniRef50_Q46802 5.13301387663e-05 1.0626632033e-05 -16432505156.4 +UniRef50_O30019 Pyruvate carboxylase subunit A 7.81776381628e-08 1.54343987264e-07 30749289.7984 +UniRef50_Q49VK7 Secretory antigen SsaA like protein 8.76382083714e-05 4.38970089801e-05 -17658858959.1 +UniRef50_W4UBQ2 Glucoamylase S1 S2 1.9844214558e-06 1.87200103754e-06 -45385502.4052 +UniRef50_Q46809 3.3355749656e-05 5.09919233309e-06 -11407518938.2 +UniRef50_Q46808 3.16614729655e-05 2.10960890249e-05 -4265375148.66 +UniRef50_B0VB06 2.68354968373e-06 7.54810784963e-06 1963881826.42 +UniRef50_G7M9G8 Signal peptidase I 1.05139244997e-05 8.83465702945e-06 -677940884.669 +UniRef50_Q6F985 Protein TolB 2.49855161395e-06 0.000107880724089 42544076212.8 +UniRef50_A8MIR6 Heavy metal translocating P type ATPase 3.61482705049e-06 3.223409879e-06 -158019915.359 +UniRef50_Q6GI34 Glutamyl endopeptidase 8.39670068442e-05 1.14078481692e-05 -29293022758.1 +UniRef50_A0A011EDI0 2.18466032552e-07 6.36254469059e-07 168666318.659 +UniRef50_W5VF17 Beta aspartyl peptidase 1.52685626444e-05 3.4213617568e-06 -4782860379.83 +UniRef50_A6FSN1 3.58206187165e-08 1.93326186952e-08 -6656407.93911 +UniRef50_UPI00046B7987 PREDICTED 8.1365818119e-07 3.69616260525e-07 -179265172.38 +UniRef50_UPI00037A4252 hypothetical protein 4.63296885611e-08 3.26417426446e-08 -5525991.73648 +UniRef50_UPI00037DFE14 hypothetical protein 8.6566233011e-09 3.43503299921e-07 135181712.382 +UniRef50_UPI0004698FEC anti sigma regulatory factor 2.319668029e-07 1.04768952259e-05 4136003323.77 +UniRef50_B7H2F2 TonB dependent siderophore receptor family protein 1.2042550199e-06 6.8487807895e-05 27163195957.7 +UniRef50_UPI0003621DA0 hypothetical protein 4.54301580043e-06 3.96682270623e-07 -1673925727.22 +UniRef50_F8HDH3 N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase 4.236401228e-05 9.33405304551e-06 -13334599866.1 +UniRef50_E1VQ96 7.51268586283e-06 1.87900342655e-06 -2274386732.58 +UniRef50_V1VWE5 Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA 8.62377428233e-06 2.14988314519e-06 -2613589295.64 +UniRef50_Q57624 Aspartyl glutamyl tRNA amidotransferase subunit B 3.20227283329e-05 3.30808282006e-06 -11592454761.8 +UniRef50_P38942 4 hydroxybutyrate coenzyme A transferase 8.63015462288e-06 2.1048861233e-05 5013584253.16 +UniRef50_Q8DW17 Putative agmatine deiminase 6.07781779478e-05 4.43874315847e-05 -6617145443.86 +UniRef50_Q2RRP2 Fructose 1,6 bisphosphatase class 1 1.73683689598e-07 9.76920788205e-08 -30678745.7928 +UniRef50_G7LXK3 Methyl accepting chemotaxis sensory transducer with Cache sensor 7.54316477018e-06 1.1580912414e-05 1630088272.55 +UniRef50_A2RLU5 Bifunctional protein FolD 1.31799939057e-07 4.16954470778e-08 -36376289.1185 +UniRef50_UPI00047C45C3 hypothetical protein 2.64976359936e-07 5.3034021998e-08 -85563722.6505 +UniRef50_D4HC59 MazG family protein 5.9290993013e-06 5.28837608123e-05 18956173050.5 +UniRef50_P76909 3.34963636146e-05 9.83787813649e-06 -9551220909.77 +UniRef50_F0RK09 Peptidase U32 5.5951480556e-07 0.000198055112287 79731396246.6 +UniRef50_UPI000479CC6C pseudouridine synthase 6.18259839294e-08 5.25351429563e-08 -3750826.51228 +UniRef50_R7G2P1 tRNA 2 O) methyltransferase 0.000308319054726 0.000260197849502 -19427121062.5 +UniRef50_Q2KAV8 UPF0061 protein RHE_CH01223 7.73008850942e-07 9.73556115833e-06 3618292349.38 +UniRef50_V4HW78 3.38994761404e-08 1.98627150752e-06 788196547.367 +UniRef50_A4EDG0 2.2802672554e-06 7.21354113454e-07 -629352365.421 +UniRef50_B4RQC6 Lipid II flippase FtsW 2.99461383637e-06 2.90998726558e-05 10539013332.9 +UniRef50_D8THS2 Pathogenesis related protein 1 like protein 1.22103071691e-07 4.41507377948e-07 128947437.968 +UniRef50_UPI000376F8EF hypothetical protein, partial 2.6152056604e-07 1.95916943942e-07 -26484987.2879 +UniRef50_F4DL94 Beta lactamase domain containing protein 3.16225937685e-06 6.52887496932e-07 -1013064221.38 +UniRef50_C5QMP7 Nitrite reductase [NADH], large subunit 0.000287029985913 7.79141621946e-05 -84422624174.7 +UniRef50_Q9RYB4 GTP cyclohydrolase 1 4.14398256095e-06 0.000534840979209 2.14248889931e+11 +UniRef50_P23224 Zinc metalloproteinase 2.17273418304e-08 1.2685183819e-05 5112392777.93 +UniRef50_Q5HRK1 Ornithine cyclodeaminase mu crystallin family protein 7.99383814489e-05 3.89776504399e-05 -16536349753.0 +UniRef50_UPI000426573E hypothetical protein 2.49961566783e-07 3.23741967131e-07 29786053.0078 +UniRef50_F0L5S4 Segregation and condensation protein B 1.7456127819e-05 2.53060927577e-05 3169127175.66 +UniRef50_R5FRB0 Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase 3.49878368374e-05 1.13848388587e-05 -9528819925.36 +UniRef50_Q2W403 Electron transport complex subunit E 3.70689577757e-05 2.05786826871e-05 -6657326411.7 +UniRef50_UPI0004636746 arabinose transporter permease 8.77583822708e-08 7.78268938935e-08 -4009463.73098 +UniRef50_Q57661 6.51000329718e-05 7.77149224201e-06 -23144235392.9 +UniRef50_Q5V230 Probable aminomethyltransferase 7.87921482457e-08 5.22885264269e-07 179285840.574 +UniRef50_U1W1Q2 1.7456605566e-07 1.11286693995e-05 4422305941.86 +UniRef50_V5VE78 1.76225963693e-06 5.2998456188e-05 20684681286.5 +UniRef50_V5VBQ5 Ribonuclease Z 4.65673600297e-06 5.56461686254e-05 20585059660.4 +UniRef50_X2HF59 Membrane protein 3.46172378566e-05 2.0428034206e-05 -5728355634.86 +UniRef50_R5LLF3 Acetate CoA transferase subunit alpha 1.32775169757e-05 1.5179614607e-05 767900155.119 +UniRef50_A5UII8 Lipid A disaccharide synthase 3.09136058486e-05 1.20898086735e-05 -7599397913.56 +UniRef50_UPI0003F49601 hypothetical protein TREMEDRAFT_38243 1.90677045136e-07 1.28580122778e-06 442115071.217 +UniRef50_Q3JKL4 3.85977493742e-07 5.79086730159e-07 77960568.4584 +UniRef50_UPI0004726B74 hypothetical protein 1.06858286018e-06 9.00974785897e-08 -395026555.914 +UniRef50_F0RLT4 Homoserine dehydrogenase 1.19457591412e-06 0.000174633231119 70019313437.9 +UniRef50_R5ZCF8 3.41042121969e-08 1.45869125781e-07 45120867.1236 +UniRef50_UPI000375252A hypothetical protein 4.12266136068e-08 3.18372412896e-07 111887160.134 +UniRef50_Q8RQP4 NADP specific glutamate dehydrogenase 1.22197083254e-07 7.24035703897e-07 242969636.544 +UniRef50_UPI00036DFBB3 hypothetical protein 3.49596279114e-08 5.5560639212e-08 8316881.06489 +UniRef50_R0DWK7 7.36988509447e-07 1.01804349493e-06 113465346.572 +UniRef50_F9YX60 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 2.12868038824e-06 5.9591309578e-05 23198368549.7 +UniRef50_UPI0003769C5D hypothetical protein 6.04704569972e-08 3.47491385231e-07 115873870.871 +UniRef50_UPI000472FB88 adenosylcobinamide kinase 2.38483063204e-07 4.0627813099e-07 67740927.9422 +UniRef50_I4E1R6 0.000181235642659 2.59972979109e-05 -62671624763.5 +UniRef50_A4E9H7 3.38279665272e-07 4.56840723113e-06 1707754407.84 +UniRef50_UPI000248CE53 sugar ABC transporter substrate binding protein 4.97041496653e-08 2.08644474421e-07 64166159.5211 +UniRef50_UPI0003B44826 hypothetical protein 6.8329956159e-08 1.03860906595e-07 14344280.7048 +UniRef50_A8AXR0 Multidrug resistance protein B 6.22038485082e-05 2.06625626737e-05 -16770726860.3 +UniRef50_B9TDS9 4.42472585015e-07 2.43124019051e-07 -80479462.3617 +UniRef50_UPI000382B615 hypothetical protein 1.37545895225e-07 8.63210481455e-07 292959698.367 +UniRef50_F2E6Z5 Predicted protein 1.39345151067e-06 3.90115343114e-07 -405059123.163 +UniRef50_A8IJS1 Glutamate synthase 1.28026563425e-05 1.27017937712e-06 -4655802470.34 +UniRef50_P76108 Putative ABC transporter periplasmic binding protein YdcS 3.83756302508e-05 1.47457741304e-05 -9539662886.75 +UniRef50_Q05197 Phosphatidylethanolamine N methyltransferase 2.54228775841e-05 1.30914273516e-05 -4978357782.77 +UniRef50_F5L317 1.93781542303e-07 1.70899863588e-07 -9237614.48702 +UniRef50_UPI00040DE43B hypothetical protein 7.89711055954e-08 2.05019636101e-07 50887338.5547 +UniRef50_UPI0004786ABC hypothetical protein 1.25214168143e-07 2.09603533671e-07 34069022.4376 +UniRef50_F8JXJ3 1.24419487848e-07 6.62529227364e-08 -23482556.1196 +UniRef50_F4T079 Exodeoxyribonuclease 8 (EXOVIII) 7.54721586371e-06 3.75188756835e-06 -1532220606.75 +UniRef50_H3WGZ6 4.67034846539e-06 3.64707653094e-06 -413107436.896 +UniRef50_O27859 Ribonuclease Z 3.32272675451e-05 7.1117995287e-06 -10543134911.1 +UniRef50_Q9P9X3 2.31544251776e-05 2.11696562859e-06 -8493080578.59 +UniRef50_Q21CC1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 8.81266530114e-05 1.10600657098e-05 -31112727007.0 +UniRef50_R4SH81 PE PGRS family protein 3.20660931678e-08 8.31074428152e-07 322569469.768 +UniRef50_V8FTC7 1.60982980627e-05 8.74450751439e-06 -2968815485.51 +UniRef50_P66898 L threonine dehydratase biosynthetic IlvA 1.40675682896e-07 5.00809339492e-06 1965036260.27 +UniRef50_Q9RU40 1.37768609074e-06 0.000256262282209 1.02900039239e+11 +UniRef50_UPI000470AB53 zinc ABC transporter permease, partial 1.10755119304e-06 8.88107179085e-07 -88592241.3145 +UniRef50_F0VW84 Ferrous iron transport protein B 4.70576956129e-05 1.49056574322e-05 -12980172363.4 +UniRef50_UPI00030520A7 hypothetical protein 2.38136568778e-07 2.72781041647e-07 13986398.8327 +UniRef50_P08624 Nitrogenase iron protein 2 5.94265137104e-05 1.66299556588e-05 -17277495658.3 +UniRef50_UPI0002BAC68C hypothetical protein, partial 4.34832725849e-07 2.40442358078e-05 9531405744.16 +UniRef50_A7FMJ5 Autoinducer 2 kinase LsrK 7.44706888764e-06 1.38863654487e-06 -2445863482.1 +UniRef50_Q3JQJ9 3.70074476117e-06 5.6586143233e-07 -1265590869.2 +UniRef50_Q4L8H3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 9.33771098491e-05 2.07819541404e-05 -29307555202.3 +UniRef50_UPI000329E5F9 PREDICTED 2.6034869797e-07 2.17222966907e-07 -17410386.8424 +UniRef50_Q1IHH4 DNA directed RNA polymerase subunit beta 4.56061017122e-08 3.30273703284e-08 -5078188.21803 +UniRef50_D4GDT5 YliJ 3.63844029575e-06 4.02220485901e-05 14769251599.8 +UniRef50_N1HFC9 M48B family peptidase 1.71999664275e-05 2.72600035565e-05 4061360439.52 +UniRef50_UPI000475CBB8 SAM dependent methyltransferase 1.64028433492e-07 2.19798537827e-07 22515075.4962 +UniRef50_D3QF90 Manganese ABC transporter, inner membrane permease protein SitD 0.0001529007816 4.22250359934e-05 -44681156645.7 +UniRef50_Q8D2L6 Tyrosine tRNA ligase 3.66546513597e-08 4.64881871882e-08 3969919.08502 +UniRef50_A0A011DVL1 Bacterial regulatory s, tetR family protein 2.14075229968e-06 4.35064986238e-05 16699859405.8 +UniRef50_UPI0003EBE8AE PREDICTED 1.13609537399e-07 6.66329161322e-08 -18965038.4734 +UniRef50_UPI0004683656 aspartate aminotransferase 1.32163654772e-07 2.40974447675e-07 43928252.3535 +UniRef50_P33117 Ferric uptake regulation protein 6.11031459481e-05 0.000333446053364 1.09948173747e+11 +UniRef50_K7RVV7 FAD linked oxidase protein 4.34557930395e-07 1.19227808727e-05 4637936578.16 +UniRef50_V5WXJ2 Alpha beta hydrolase 3.38835264902e-06 1.25887495664e-05 3714313137.11 +UniRef50_P0A3M5 Penicillin binding protein 2B 4.049340737e-06 4.44297502824e-05 16302066856.8 +UniRef50_UPI0003B419E6 DNA mismatch repair protein MutS 2.11337006829e-08 6.21057326233e-07 242196529.525 +UniRef50_L7EXS1 4.58347582821e-07 2.53472539933e-07 -82710568.9134 +UniRef50_UPI00024870CC phosphoribosylaminoimidazole carboxylase ATPase subunit, partial 1.58957070306e-07 1.35198277288e-07 -9591716.29454 +UniRef50_H6VX40 GroEL 1.86179806429e-08 2.25988144675e-07 83717879.9378 +UniRef50_Q81MY9 Probable transaldolase 2 1.63297636635e-06 5.13624747486e-06 1414313536.48 +UniRef50_P22513 Glyceraldehyde 3 phosphate dehydrogenase, glycosomal 4.83410427503e-07 5.93583495336e-05 23768535393.9 +UniRef50_A5UKB5 V type ATP synthase subunit E 5.4689829169e-05 1.50800019675e-05 -15990973308.5 +UniRef50_UPI0002F6015E hypothetical protein 1.34318779699e-07 2.53515245917e-07 48121076.1173 +UniRef50_W5XGC5 Cation exchanger, putative 1.48857450797e-06 1.53256531817e-06 17759629.9057 +UniRef50_L6Y993 Electron transfer flavoprotein ubiquinone oxidoreductase 2.37677285614e-07 4.51650964392e-07 86383799.875 +UniRef50_Q60316 Formate dehydrogenase subunit beta 4.51785636311e-05 1.33179106264e-05 -12862536592.2 +UniRef50_R6G0X7 Rubrerythrin 2.31113870722e-06 6.63082457162e-06 1743910191.96 +UniRef50_V8G1N6 Transcriptional regulator 2.78245200628e-06 4.13030356916e-06 544144215.933 +UniRef50_A0A023UJB1 Type F conjugative transfer system protein TraW 7.68470659158e-07 1.94102586855e-07 -231879439.078 +UniRef50_Q9K1P6 Efem EfeO family lipoprotein NMB0035 2.08313352415e-05 5.68878830717e-05 14556470822.6 +UniRef50_A4SHC0 ADP L glycero D manno heptose 6 epimerase 2.45043138879e-05 5.57370735232e-06 -7642518163.09 +UniRef50_UPI00036EB160 hypothetical protein 2.7038648977e-07 2.60091641931e-07 -4156156.40459 +UniRef50_UPI000476D9A7 hypothetical protein 3.15301630974e-08 1.00573701916e-07 27873723.8806 +UniRef50_F8HEJ4 Pts system, trehalose specific iibc component 5.11452773432e-06 2.66625324643e-05 8699193933.25 +UniRef50_G4PGT5 Pirin 7.18521550115e-08 1.19266849614e-07 19141894.0548 +UniRef50_S4XAN4 Cobalamin biosynthesis like protein 0.000228222197272 9.75569824653e-05 -52751150660.1 +UniRef50_UPI0003B3E06E alcohol dehydrogenase 5.31632929185e-08 9.6094338663e-08 17331789.9902 +UniRef50_Q6DB87 Ribose import ATP binding protein RbsA 3.20784919178e-07 1.76700566509e-07 -58168621.2863 +UniRef50_Q4UNK0 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.65657941189e-07 2.08575002644e-07 17326144.361 +UniRef50_UPI00038035A6 hypothetical protein 1.92438974087e-08 2.05054057921e-08 509286.414827 +UniRef50_UPI00036EABAC hypothetical protein 4.85183077887e-07 1.92274578163e-07 -118250755.73 +UniRef50_G2QJ48 8.29757207833e-08 3.49134073358e-08 -19403345.7297 +UniRef50_Q5HKG5 Drug transporter, putative 0.000104188732573 4.31732254809e-05 -24632708957.6 +UniRef50_Q89EZ8 Outer membrane lipoprotein 0.00013056144916 6.51806616689e-05 -26395026222.6 +UniRef50_Q5HKF6 Extracellular cysteine protease 0.00020511466984 3.23062289731e-05 -69764888176.0 +UniRef50_A6LXP0 Multicopper oxidase, type 3 1.27816926252e-06 2.11696562859e-06 338632386.171 +UniRef50_Q3JMW6 Phenol hydroxylase, putative 6.4951472281e-07 7.20022784698e-08 -233148860.655 +UniRef50_E0RTD9 ATP dependent 6 phosphofructokinase 7.52266160023e-08 8.22220835326e-05 33163694192.5 +UniRef50_P80668 Phenylacetaldehyde dehydrogenase 2.97000694387e-05 1.09678376115e-05 -7562431858.97 +UniRef50_UPI0004673888 acyl transferase 1.3714820517e-06 1.56669803885e-07 -490434611.864 +UniRef50_Q2S6J2 Uridylate kinase 2.59960437622e-06 9.76978260282e-05 38392319067.3 +UniRef50_UPI00041D7A97 hypothetical protein 2.2624251643e-07 1.14782333498e-07 -44997843.6199 +UniRef50_P00936 Adenylate cyclase 9.51323161686e-06 7.07063140959e-07 -3555158277.56 +UniRef50_Q11ID5 Hemin import ATP binding protein HmuV 1.17827522955e-07 1.34519591855e-05 5383152580.35 +UniRef50_B7UZ76 TadG 1.20557254603e-05 1.06038314257e-06 -4438954621.68 +UniRef50_A5UNR9 3.28248685954e-06 5.33704888912e-06 829451903.653 +UniRef50_Q3HKE6 TonB dependent receptor protein 0.000127815967563 2.76460436609e-05 -40439827502.4 +UniRef50_M3AAW3 7.38719942778e-07 2.73444576467e-07 -187837374.951 +UniRef50_UPI0003B55AAB GntR family transcriptional regulator 1.93522666488e-07 1.59758707413e-07 -13630924.6089 +UniRef50_O29406 Serine hydroxymethyltransferase 2.78474687837e-05 1.04012522049e-05 -7043251722.01 +UniRef50_UPI00028943C6 transposase Tn3 6.99176911057e-08 5.28512625202e-06 2105443693.85 +UniRef50_B2V085 Pyruvate kinase 8.45953828843e-06 2.20541622381e-05 5488316513.29 +UniRef50_UPI000465D378 transposase, partial 1.23925235991e-06 4.24177955472e-06 1212157073.7 +UniRef50_J7R4E7 3.21652300828e-05 5.37204854973e-05 8702121123.56 +UniRef50_W8EY20 3.33270007001e-07 2.72608974897e-07 -24489603.055 +UniRef50_A0A037YSW4 9.4391746441e-07 6.05501271725e-07 -136622769.821 +UniRef50_UPI000371DAEA hypothetical protein, partial 8.20457134599e-08 2.82703045944e-07 81007827.4662 +UniRef50_B9JXV9 Folylpolyglutamate synthase 1.45318338233e-05 4.90749768476e-06 -3885462603.01 +UniRef50_D3E3E5 8.18351807542e-06 1.63870332492e-05 3311859744.11 +UniRef50_UPI0003749DD6 hypothetical protein, partial 2.39995742348e-07 5.89133456386e-07 140951179.559 +UniRef50_W5L6H6 9.63794014105e-07 1.61270261368e-06 261972364.652 +UniRef50_D7FUW4 4.93466257772e-07 1.99810742541e-07 -118552335.057 +UniRef50_C1KVY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.000131713318436 5.02067804079e-05 -32905189599.6 +UniRef50_F0VXH5 ABC transporter permease protein 4.35676651663e-05 1.50052326942e-05 -11531004489.4 +UniRef50_UPI000380067C hypothetical protein, partial 1.16905077393e-07 1.28448538401e-07 4660236.86313 +UniRef50_Q6G6X4 Isopentenyl diphosphate delta isomerase 0.000262882716244 5.65924812996e-05 -83281899312.7 +UniRef50_Q8PYF8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.48878526022e-05 4.07265126568e-06 -4366229496.99 +UniRef50_P73098 Chaperone protein dnaK3 0.000121213094143 3.24177494165e-05 -35847770307.5 +UniRef50_UPI000255C532 hypothetical protein 1.46143178747e-07 2.10441132174e-07 25957872.8231 +UniRef50_P46133 p aminobenzoyl glutamate transport protein 2.62515738265e-05 3.83339004761e-06 -9050495893.59 +UniRef50_K8EYP9 5.77351635868e-05 5.01398776238e-05 -3066310147.9 +UniRef50_X1D6B5 Marine sediment metagenome DNA, contig 7.3552518905e-08 1.97887404921e-05 7959263317.34 +UniRef50_M4ZDD2 Polysaccharide ABC exporter membrane spanning protein 2.71439481466e-05 7.08273885348e-06 -8098956370.35 +UniRef50_X7E7Z7 1.49421981184e-06 1.10774196888e-06 -156025847.819 +UniRef50_J9YQL3 DedA family protein 7.3083428704e-05 1.48428718383e-05 -23512427498.7 +UniRef50_A1A1X1 Acetylglutamate kinase 4.50072501766e-06 8.72876985413e-05 33422117121.9 +UniRef50_UPI0003C18C5D 9.76973528437e-08 4.72483694378e-07 151305845.223 +UniRef50_J8RTD6 8.29820635671e-08 1.55852217401e-07 29418575.3201 +UniRef50_W1BD39 9.13208205257e-08 1.58910072683e-06 604672128.0 +UniRef50_I0C802 4.83736697966e-05 1.99727011273e-05 -11465819570.9 +UniRef50_UPI00034D0909 Organic hydroperoxide resistance protein 8.36906584845e-08 4.47397394563e-07 146832872.538 +UniRef50_UPI000373CB86 hypothetical protein 1.03472334475e-07 1.33182347236e-07 11994296.7345 +UniRef50_UPI0003B6D6B9 DNA invertase 3.26401553855e-07 1.69514851748e-07 -63337086.8569 +UniRef50_A4IK10 7.81984225036e-08 1.41507299935e-07 25558570.7063 +UniRef50_P0A9F0 Regulatory protein YeiL 1.3189593164e-05 2.66852444456e-06 -4247484550.05 +UniRef50_UPI00046AC99E hypothetical protein 9.41843317363e-07 6.31348604636e-07 -125350525.726 +UniRef50_UPI000462BAFD PREDICTED 9.3426033839e-08 4.04106537376e-08 -21402959.5188 +UniRef50_G0DS62 Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase 2.26201894437e-06 5.83473427998e-05 22642333484.7 +UniRef50_F2CUB3 Predicted protein 2.34398358574e-06 2.80773100505e-06 187220523.996 +UniRef50_UPI000468D55C glucose methanol choline oxidoreductase 8.40877830686e-08 1.15299299743e-07 12600472.2898 +UniRef50_A1AZK3 Peptidoglycan glycosyltransferase 2.26108806212e-05 5.35229110448e-06 -6967504374.6 +UniRef50_A3PKF9 2.8079754916e-06 4.96198594142e-06 869600451.273 +UniRef50_Q9ZDI2 Protoheme IX farnesyltransferase 9.28385601708e-08 3.21221116034e-07 92200840.371 +UniRef50_P58313 UTP glucose 1 phosphate uridylyltransferase 7.53888765713e-05 4.88141294869e-05 -10728551506.8 +UniRef50_P66798 Response regulator UvrY 2.01572423268e-05 2.75996920751e-06 -7023492646.81 +UniRef50_C6DY30 Poly A polymerase family protein 5.08920101799e-06 1.87723084725e-05 5524038389.99 +UniRef50_M4HS21 Transposase, IS4 family 2.16911797637e-07 0.000334677002086 1.35025642736e+11 +UniRef50_P00805 L asparaginase 2 2.42332982599e-05 4.78877939887e-05 9549610199.02 +UniRef50_P40882 2.7546653934e-05 6.45695094487e-07 -10860247195.4 +UniRef50_Q7V024 Fumarate hydratase class II 6.40377630095e-08 4.35046174585e-08 -8289482.82897 +UniRef50_Q7UX42 Glutamine tRNA ligase 1.76347760566e-06 5.17505650465e-05 20180400610.4 +UniRef50_W3SJV3 3.89160813245e-06 1.33475535477e-05 3817481201.64 +UniRef50_K7SGJ6 Tat pathway signal sequence 4.70329394297e-06 4.93925375816e-05 18041596055.6 +UniRef50_UPI0003798A30 hypothetical protein 4.67957837425e-06 1.65598152446e-05 4796197411.44 +UniRef50_UPI000426481D hypothetical protein 2.08575276943e-07 2.8152299193e-07 29449887.7094 +UniRef50_G7LXY6 Signal peptidase I 2.22050581675e-06 7.38015388428e-06 2083013240.86 +UniRef50_A5UM93 Adhesin like protein 3.77013147539e-05 7.12167491182e-06 -12345375858.6 +UniRef50_H1SKR8 Site specific recombinase, phage integrase family 2.14491047391e-06 3.41411665556e-06 512394110.443 +UniRef50_Q4A4A3 2.16513838793e-06 1.13583348153e-05 3711406210.94 +UniRef50_A5W7U2 Protein SprT 6.90731139244e-06 3.55803259269e-06 -1352144951.73 +UniRef50_Q65G88 Isocitrate dehydrogenase [NADP] 0.000101495983207 2.80601678391e-05 -29646939822.8 +UniRef50_Q9K1H0 Outer membrane protein assembly factor BamA 5.89208099186e-07 3.63931853555e-05 14454504982.6 +UniRef50_Q8CT38 0.000149898852132 4.03772345519e-05 -44215220998.4 +UniRef50_P42910 N acetylgalactosamine permease IIC component 1 3.23521971087e-05 1.595649159e-05 -6619147515.83 +UniRef50_Q48E25 GAF domain GGDEF domain EAL domain protein 6.16417066886e-06 7.02022361005e-06 345599077.309 +UniRef50_UPI0003634A2A hypothetical protein 5.37824942765e-07 3.5503205821e-07 -73795730.6158 +UniRef50_UPI000328E1F2 PREDICTED 7.14830438815e-07 1.19720037426e-06 194738662.284 +UniRef50_E8SI06 Hydroxyacylglutathione hydrolase 0.000155133185695 7.80660633664e-05 -31112943004.0 +UniRef50_UPI0003B3DE75 ketol acid reductoisomerase 3.86458515229e-08 1.9578964939e-07 63440879.5702 +UniRef50_Q2FER8 Energy coupling factor transporter ATP binding protein EcfA2 9.88050516368e-05 3.72165482025e-05 -24864034612.4 +UniRef50_UPI00046AC673 hypothetical protein 3.19451029893e-07 2.5288522783e-07 -26873431.1471 +UniRef50_B7UX08 5.58601020844e-06 5.19064849397e-06 -159612375.765 +UniRef50_UPI000381E035 hypothetical protein 3.98627127821e-07 2.96778193902e-07 -41117664.4501 +UniRef50_I0EI71 ATP dependent helicase 3.56352377494e-06 2.87833307069e-05 10181545540.3 +UniRef50_Q3J6C1 Sensor histidine kinase RegB 4.10677823804e-05 1.71470316757e-05 -9657100600.11 +UniRef50_Q1RF65 2.79825468181e-06 4.72506728318e-06 777877891.823 +UniRef50_F0KIU0 Sel1 like repeat protein 4.01580839207e-06 6.2948791084e-05 23791968301.7 +UniRef50_UPI000360580F methyltransferase, partial 3.92985179878e-07 3.79056335245e-07 -5623245.50449 +UniRef50_L2YYW7 6.41885005032e-07 4.47449553334e-06 1547271901.7 +UniRef50_P21369 Pyrazinamidase nicotinamidase 6.45797089485e-05 1.10743764448e-05 -21600759316.0 +UniRef50_A5UKM8 4.33655915246e-05 6.69429755475e-06 -14804651383.0 +UniRef50_UPI00045434B5 PREDICTED 7.04386749506e-07 1.06882685776e-06 147128943.885 +UniRef50_B9KRZ3 0.00010544480628 1.67482958151e-05 -35807869703.3 +UniRef50_D0K3I1 Phage amidase 0.000135554250523 1.35285320894e-05 -49263279955.8 +UniRef50_A6LXA4 4Fe 4S ferredoxin, iron sulfur binding domain protein 5.81388210392e-06 9.10262242916e-06 1327704826.68 +UniRef50_I3XDK3 2.65798142895e-07 1.70234409092e-07 -38580252.0352 +UniRef50_X2H5V8 Glutamate cysteine ligase , divergent, of Alpha and Beta proteobacteria type 1.71050941748e-06 3.24486862164e-05 12409379173.6 +UniRef50_I0ERW5 Integral membrane protein 9.30532429341e-07 2.84140224443e-05 11095422179.4 +UniRef50_UPI0002559D47 DNA primase 3.62662900751e-08 4.50889156264e-08 3561802.20085 +UniRef50_P08075 Glucose 1 phosphate thymidylyltransferase 8.0797394285e-08 1.54741502804e-07 29852144.0054 +UniRef50_UPI0004782C1A ABC transporter permease 6.55789931169e-08 1.15804945317e-07 20276833.2449 +UniRef50_D9Q0N2 Membrane protein 9.28666313124e-08 8.25839684161e-07 295910216.026 +UniRef50_A0A059IJL8 2.23246575787e-06 1.42418962609e-06 -326310993.063 +UniRef50_U1ASZ8 Diguanylate cyclase domain protein 1.25450157067e-05 7.11892419069e-07 -4777177079.96 +UniRef50_K8R3V6 6 pyruvoyl tetrahydropterin synthase 3.1569509448e-06 1.44464724426e-06 -691278016.237 +UniRef50_O05410 Probable metal binding protein YrpE 9.86766075661e-05 5.58959063463e-06 -37580371041.4 +UniRef50_Q30ST8 Two component transcriptional regulator, winged helix family 3.82587150866e-06 2.2926005332e-05 7710958409.47 +UniRef50_UPI00036A4579 hypothetical protein 2.79302367466e-08 1.03899798919e-07 30669844.5004 +UniRef50_G8VC64 1.81560304853e-05 4.43145692385e-05 10560523096.0 +UniRef50_UPI0002556399 urea ABC transporter ATP binding protein UrtE, partial 1.18686716787e-06 4.8000356259e-07 -285369511.643 +UniRef50_UPI000456060D hypothetical protein PFL1_06357 7.08431227327e-08 1.77543534046e-07 43076265.4083 +UniRef50_UPI0003B73D80 Fis family transcriptional regulator 3.70642052476e-07 4.23267588288e-07 21245574.5952 +UniRef50_C2QZX3 6.53760003662e-08 8.83452257164e-06 3540212080.35 +UniRef50_C5N0K5 Isochorismatase family protein 6.54156399139e-05 3.22750497486e-06 -25106113209.1 +UniRef50_UPI00034B4110 hypothetical protein 5.89790302282e-07 1.77037172624e-07 -166633503.493 +UniRef50_J9JHU2 2.22050581675e-06 2.79775012387e-06 233040610.369 +UniRef50_A0A031K6Z2 3.3536644218e-07 1.96971676237e-07 -55871665.3059 +UniRef50_UPI00046C5540 hypothetical protein 2.52318230565e-06 4.11945804426e-07 -852332083.328 +UniRef50_UPI000369A903 hypothetical protein 8.78701524772e-05 3.23669294599e-05 -22407332233.2 +UniRef50_UPI00036FC1C6 hypothetical protein 1.5084749634e-07 1.61817372704e-06 592377605.451 +UniRef50_O27842 Conserved protein 2.98133603751e-05 2.56210193584e-05 -1692499514.25 +UniRef50_UPI000466B8EE UDP pyrophosphate phosphatase 9.41724120953e-07 1.45326671992e-07 -321515423.041 +UniRef50_M2ADJ2 7.38261381104e-07 2.49866823428e-07 -197170876.209 +UniRef50_UPI00016A5286 hypothetical protein 3.71978780981e-06 7.80207725342e-06 1648070343.71 +UniRef50_P33135 Flagellar biosynthetic protein FliR 3.52392990211e-05 6.45162854675e-06 -11621935834.9 +UniRef50_UPI00016C427F glutamine ABC transporter ATP binding protein 8.4316884434e-07 2.68829707144e-07 -231867757.62 +UniRef50_F3U500 ABC branched chain amino acid transporter, inner membrane subunit 4.51293510437e-05 2.28849857164e-05 -8980323251.69 +UniRef50_H1V624 1.01087174494e-07 7.30431809063e-08 -11321704.3499 +UniRef50_UPI00046F0C1E cold shock protein, partial 4.50098745969e-07 2.05530696425e-07 -98735122.7884 +UniRef50_UPI000395A7E4 membrane protein 8.57343519813e-07 3.26783351839e-07 -214193650.517 +UniRef50_A4WQX9 6.0728156165e-05 8.77435153289e-06 -20974388474.9 +UniRef50_G0DVB4 LacI family transcription regulator 3.64840264139e-06 4.07507899632e-05 14978689059.3 +UniRef50_U6HG59 Iron sulfur cluster assembly 2 6.73458884178e-07 1.35577186281e-06 275458122.396 +UniRef50_Q8E0W8 Prophage LambdaSa1, minor structural protein, putative 2.54306725739e-06 1.92046958903e-06 -251350318.849 +UniRef50_F0YEK3 9.00407302426e-08 9.48317474274e-07 346496853.805 +UniRef50_UPI000359DA59 PREDICTED 4.6136500439e-07 1.18354229565e-07 -138477659.012 +UniRef50_UPI0003683526 hypothetical protein 2.82596257356e-08 4.24280753753e-08 5719976.98598 +UniRef50_Q9Z615 Ferredoxin NADP reductase 4.20155795097e-05 3.59526697015e-07 -16817059697.7 +UniRef50_UPI00034F34D0 PREDICTED 6.60636838809e-08 3.04342928579e-08 -14384022.3778 +UniRef50_F8H2S7 Long chain fatty acid transporter, putative 6.44370723791e-06 1.00578522725e-07 -2560798901.26 +UniRef50_D8TNQ9 1.83703742462e-07 1.77726164335e-07 -2413221.643 +UniRef50_P72524 DNA gyrase subunit A 5.14208190287e-05 7.74654078998e-05 10514520130.3 +UniRef50_D9PWJ1 Phosphomethylpyrimidine kinase 2.26549864282e-05 7.0736439591e-06 -6290379159.35 +UniRef50_UPI00016AD9D7 hypothetical protein 5.16092917995e-07 1.3771067013e-06 347601830.148 +UniRef50_J3P8W6 1.90649489319e-06 2.98299702217e-06 434597119.636 +UniRef50_Q9KLP4 Glucose 1 phosphate adenylyltransferase 2 9.29747761786e-08 2.04213752841e-07 44908539.9342 +UniRef50_G4LJ72 5.66124859295e-06 5.54583416193e-06 -46594222.0971 +UniRef50_X6F3D8 7.89961489974e-08 3.24819849179e-06 1279445876.27 +UniRef50_E8TAD2 ABC transporter related protein 1.94314002282e-05 8.0832760716e-06 -4581376979.16 +UniRef50_UPI0003745162 hypothetical protein 3.06306989581e-08 3.13168062666e-07 114063800.852 +UniRef50_UPI0004171916 hypothetical protein 3.94152150406e-08 3.1698361167e-08 -3115388.60522 +UniRef50_J9FU21 Ferredoxin NADP reductase subunit alpha 1.3163457348e-06 8.4734520254e-07 -189341270.157 +UniRef50_A6VPF4 30S ribosomal protein S9 2.02985976468e-05 5.96656554769e-05 15892964334.1 +UniRef50_Q9I0Q0 2 heptyl 3 hydroxy 4 quinolone synthase 7.49681006178e-06 3.49199151072e-06 -1616794393.71 +UniRef50_Q56213 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.52501200813e-07 4.89048813642e-07 135868401.203 +UniRef50_UPI00041994DB hypothetical protein 2.76898403701e-07 4.62117644264e-07 74775280.311 +UniRef50_UPI0001B417EE 50S ribosomal protein L6 2.88366635093e-07 3.28043211159e-06 1207933549.64 +UniRef50_UPI00037C13D8 hypothetical protein 3.89206032654e-08 2.19191881322e-06 869191797.616 +UniRef50_UPI00025597AC 8 amino 7 oxononanoate synthase 5.15177184737e-08 4.79048800729e-08 -1458547.19692 +UniRef50_Q8TVF7 Transcription factor homologous to NACalpha BTF3 fused to metal binding domain 9.63171708067e-06 7.57900550379e-06 -828704853.19 +UniRef50_Q8TX94 3 isopropylmalate dehydratase small subunit 1 1.12773213166e-05 4.80844798537e-06 -2611563545.82 +UniRef50_W1DGA8 3.8794800939e-06 2.65983455961e-07 -1458812935.33 +UniRef50_Q7WTJ2 Phenol hydroxylase P5 protein 1.45745340375e-07 2.15862597415e-07 28307197.1025 +UniRef50_UPI000375778F hypothetical protein, partial 3.16913422896e-06 3.42746345561e-07 -1141047472.21 +UniRef50_G7UA75 Periplasmic solute binding family protein 3.21792500054e-06 7.00168733252e-05 26967555154.0 +UniRef50_P37171 Hypoxanthine guanine phosphoribosyltransferase 0.000120676538095 3.09881508539e-05 -36208302529.5 +UniRef50_Q6A5B2 Ribosomal RNA small subunit methyltransferase G 1.78903312256e-06 0.000104525814307 41476099286.1 +UniRef50_W5X3P5 Ammonium transporter 1.44944940828e-07 1.40346177045e-06 508078687.856 +UniRef50_Q2YSG3 1.28960183316e-06 7.50357954763e-06 2508659057.41 +UniRef50_Q59337 Catalase 2.04162577277e-06 0.00050591180255 2.03418573547e+11 +UniRef50_UPI000371F98A 50S ribosomal protein L13 9.87008417249e-06 1.43456352271e-06 -3405523201.8 +UniRef50_Q9RWN6 Cell division protein FtsA 1.69326811797e-06 0.000197204112317 78930126991.0 +UniRef50_U5MV88 Protein tyrosine phosphatase 2.56288431409e-06 9.72152997477e-06 2890033099.68 +UniRef50_B0V4J6 Methylenetetrahydrofolate reductase 1.67399551592e-06 5.82692513909e-05 22848199298.6 +UniRef50_O34720 Probable oxidoreductase YjgC 0.000140711568424 5.64239172051e-05 -34027959122.9 +UniRef50_D5ZK04 Predicted protein 6.14341677533e-07 2.17615083999e-07 -160163394.192 +UniRef50_P16691 Protein PhnO 4.90241543964e-06 6.08900423076e-06 479040456.057 +UniRef50_UPI0003665D5A hypothetical protein 1.18073293852e-07 1.81279223507e-07 25517009.4257 +UniRef50_B9KW91 Serine acetyltransferase 5.54435751003e-05 1.13251152756e-05 -17811163625.6 +UniRef50_UPI0004541D3D PREDICTED 1.88462957993e-07 2.50569861347e-07 25073319.0214 +UniRef50_X2LXG1 Phosphatase 3.62322127841e-07 3.14894002818e-07 -19147316.0803 +UniRef50_UPI0002BCA4B1 1.08777066287e-06 2.38713898062e-06 524570934.918 +UniRef50_UPI000479C59F hypothetical protein 4.26367621235e-07 1.61614257814e-07 -106884181.702 +UniRef50_O83369 FKBP type peptidyl prolyl cis trans isomerase SlyD 1.84232763407e-07 1.93391368429e-07 3697441.2361 +UniRef50_F0WVE4 AlNc14C294G10284 protein 5.4765738381e-08 1.69636527251e-07 46374747.0899 +UniRef50_X0WP46 Marine sediment metagenome DNA, contig 2.43431563422e-07 1.25775526967e-07 -47499185.7188 +UniRef50_R5WGC0 1.69602425034e-06 2.75864530679e-05 10452283825.0 +UniRef50_UPI000371C267 hypothetical protein, partial 1.0381607114e-07 8.12088215242e-08 -9126824.09205 +UniRef50_Q47944 L sorbose 1 dehydrogenase 2.50037787432e-07 2.28359993492e-07 -8751591.43002 +UniRef50_UPI0003AED982 PREDICTED 5.45279938247e-07 5.13727159297e-07 -12738244.0583 +UniRef50_UPI000474FA07 hypothetical protein 2.11696464163e-07 1.53833424135e-07 -23360019.3187 +UniRef50_X5EFM7 Glycosyl transferase 7.01107466431e-06 1.44041866408e-05 2984690028.6 +UniRef50_A0A025XI46 Membrane protein 1.41569092926e-05 3.36863161818e-06 -4355360084.21 +UniRef50_N6UVZ9 5.01738446473e-08 2.05984372875e-08 -11939954.8822 +UniRef50_A5WEH0 Sulfate adenylyltransferase 1.80404960693e-07 2.36530338858e-07 22658503.9011 +UniRef50_Q1C7J0 Arabinose import ATP binding protein AraG 4.54624986954e-05 7.68795893013e-06 -15250045249.0 +UniRef50_Q2H308 1.26271640598e-06 6.32754476704e-07 -254323361.351 +UniRef50_UPI0004643586 hypothetical protein 3.57033770159e-06 1.8103914591e-07 -1368301418.3 +UniRef50_A6LYY5 Helix turn helix domain containing protein, AraC type 8.89336037005e-06 6.07306927345e-06 -1138586124.56 +UniRef50_Q8ZH39 D methionine transport system permease protein MetI 4.10931176021e-05 0.000112691967879 28905334473.5 +UniRef50_W6L3I5 Genomic scaffold, scaffold_5 2.0578314192e-07 1.1188885639e-07 -37906275.2809 +UniRef50_Q4L6W7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000182527296794 4.16956805143e-05 -56855451690.5 +UniRef50_Q83NS5 Phosphoglucosamine mutase 5.17948945823e-08 7.77930543201e-08 10495776.1194 +UniRef50_P18358 Transposon Tn552 resolvase 0.00182991894827 0.000377164489243 -5.86494802412e+11 +UniRef50_D8JFF2 Major Facilitator Superfamily protein 2.38123637387e-06 7.89717693536e-05 30920538035.4 +UniRef50_C0QDY4 3 isopropylmalate dehydratase small subunit 1.88739547375e-07 1.46837164313e-07 -16916506.2422 +UniRef50_Q1J087 Inositol monophosphatase 1.1268238473e-06 9.10486947061e-05 36302562731.1 +UniRef50_D4GG42 1.88742994426e-05 9.42500122969e-06 -3814797644.48 +UniRef50_A5GQQ3 Permease of the major facilitator superfamily 1.97703257604e-07 4.18848337991e-08 -62905809.7972 +UniRef50_Q3ZXS0 NADH quinone oxidoreductase subunit B 1.24545126698e-07 1.60091853733e-06 596030063.01 +UniRef50_Q8XSL7 Remnant of isrso5 transposase protein 0.00018967382822 3.5621660227e-05 -62192750651.5 +UniRef50_UPI00045609D0 hypothetical protein PFL1_01311 4.33995645309e-07 1.89495219492e-06 589806087.03 +UniRef50_UPI00047256F0 ABC transporter ATP binding protein 8.16840336776e-08 4.22491927799e-07 137588329.04 +UniRef50_P71019 Malonyl CoA acyl carrier protein transacylase 4.25584042199e-08 1.78171873192e-05 7175835812.21 +UniRef50_Q8XCU1 UDP 2,3 diacylglucosamine hydrolase 3.3913216472e-05 7.80095898344e-06 -10541838781.6 +UniRef50_C0ME26 Adenylate kinase 4.7492331881e-05 8.52450735492e-05 15241245089.7 +UniRef50_UPI0004668B02 hypothetical protein 2.13568450271e-06 5.32188704928e-07 -647350930.67 +UniRef50_W5ASR4 2.14480675479e-06 8.22925987192e-07 -533659487.181 +UniRef50_UPI00040BD6B1 spermidine putrescine import ATP binding protein PotA 1.21230432105e-06 5.88027187665e-07 -252028339.489 +UniRef50_A6M079 NADPH dependent FMN reductase 1.45935304967e-06 2.25847941097e-05 8528599794.24 +UniRef50_K9EK44 ATPase involved in chromosome partitioning 9.37334282295e-08 7.74729282488e-06 3089835848.16 +UniRef50_Q5M456 4.95015616552e-05 2.14666494895e-05 -11318038068.4 +UniRef50_UPI000380AA86 hypothetical protein 7.07911062204e-08 1.58245676685e-06 610277977.42 +UniRef50_A2SM89 PKHD type hydroxylase Mpe_A3725 3.6361193586e-07 3.87634980646e-07 9698397.97602 +UniRef50_UPI00037B8173 hypothetical protein 7.97786649952e-08 8.56589329369e-07 313607997.747 +UniRef50_U2NH71 MaoC domain containing protein dehydratase 3.40094179343e-07 2.03048025881e-07 -55327213.898 +UniRef50_J0P6S9 6.6412792172e-05 5.45200071126e-06 -24610619585.7 +UniRef50_Q3JN62 Colicin V processing peptidase 2.57882340289e-06 0.000125804267854 49747624071.1 +UniRef50_A0A024JLS1 Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 1.04926977865e-08 2.78766826282e-09 -3110614.97005 +UniRef50_V5PVU9 ABC transporter ATP binding protein 1.44474807409e-05 4.50865198773e-06 -4012427130.8 +UniRef50_D0ZY51 Serine endoprotease DegS 4.40595210465e-05 1.71130634038e-05 -10878615620.6 +UniRef50_A3PGU0 Lytic transglycosylase, catalytic 9.44313632268e-05 1.84161125264e-05 -30688289519.8 +UniRef50_UPI00034D4180 hypothetical protein 1.46630338496e-07 1.44213868324e-08 -53374376.173 +UniRef50_UPI0003A7AC6C TetR family transcriptional regulator 1.00978521947e-07 2.14542936622e-07 45847347.7964 +UniRef50_UPI00036F4D48 hypothetical protein, partial 3.59600682995e-07 1.19997942833e-05 4699288997.68 +UniRef50_V6VI70 Membrane protein 1.654097799e-08 2.77579812598e-08 4528441.86813 +UniRef50_D5WEA6 Major facilitator superfamily MFS_1 8.88202326721e-07 4.72029775061e-05 18697843086.1 +UniRef50_UPI00042A98EF 1.58191760126e-06 1.33068886191e-06 -101424124.999 +UniRef50_I0C7K3 Lantibiotic transport ATP binding protein 0.00027815223462 8.98827491848e-05 -76006701596.5 +UniRef50_Q6F8J3 Glutamyl tRNA reductase 8.84042128456e-07 0.000108766803581 43553594668.9 +UniRef50_Q00750 Multiple sugar binding transport system permease protein MsmF 3.99315911685e-05 3.05592942163e-05 -3783711290.62 +UniRef50_A9CJS1 ABC transporter, substrate binding protein 8.5308855927e-05 1.06988607869e-05 -30120970605.7 +UniRef50_F2AEH0 4.76191270254e-06 1.00123917959e-06 -1518230049.87 +UniRef50_G2QPJ3 4.56485111306e-08 7.00805355466e-08 9863508.07139 +UniRef50_UPI00037BF3DC hypothetical protein 1.02784028504e-06 6.02186436742e-07 -171841681.918 +UniRef50_Q3IWE5 Sulfotransferase domain protein 2.44391640739e-05 2.3625336415e-06 -8912606616.28 +UniRef50_D3QDZ4 Na+ H+ antiporter like protein 0.000199525397091 5.18556963026e-05 -59616070319.1 +UniRef50_E3D365 5.48138488079e-07 3.09336172134e-07 -96407425.3809 +UniRef50_V6F2D8 Transposase 1.950931464e-07 2.17959754208e-07 9231530.17692 +UniRef50_B8EL88 Regulatory protein ArsR 2.31408567858e-05 6.55301302039e-05 17113069853.8 +UniRef50_P30690 Major outer membrane protein P.IB 1.19963767644e-06 2.35910143414e-05 9039673532.75 +UniRef50_D5HFR4 Alpha galactosidase 1.00469747645e-05 1.21915752403e-05 865801529.288 +UniRef50_F7QLE1 6.13943741257e-05 8.64898339608e-06 -21293961496.3 +UniRef50_Q4FPV2 Na translocating NADH quinone reductase subunit F 6.04007731951e-06 2.7064981941e-05 8488012000.29 +UniRef50_UPI00035E03F5 DNA glycosylase 4.24754714919e-07 4.08924404982e-07 -6390890.38131 +UniRef50_A0A021XF37 Transposase 1.40970128412e-06 7.98291143459e-07 -246833776.631 +UniRef50_UPI00036477DE hypothetical protein 8.47553531107e-08 1.36182166177e-07 20761635.5128 +UniRef50_P0ABE7 Soluble cytochrome b562 3.52790643786e-06 1.86515813808e-05 6105613162.81 +UniRef50_D6XQD7 Outer membrane protein BabA 6.0591651505e-07 3.35047915388e-05 13281679561.7 +UniRef50_UPI00042B81D2 Ribosomal protein L1p L10e family, putative isoform 1 2.08226093155e-07 8.05057642927e-07 240948220.59 +UniRef50_UPI00046F39AE hypothetical protein, partial 9.81476212908e-07 2.25728386352e-06 515059204.472 +UniRef50_UPI00037C645E hypothetical protein 8.79240811422e-08 6.16533241813e-08 -10605826.9636 +UniRef50_P58120 Multi drug resistance efflux pump PmrA homolog 9.80483087926e-07 9.89601544539e-06 3599309818.59 +UniRef50_UPI0003B4A46E hypothetical protein 1.38133041726e-08 2.94196760298e-08 6300483.83047 +UniRef50_U2Z407 1.48018633632e-06 4.76696931327e-07 -405120986.994 +UniRef50_P0ACV7 Protein MpaA 2.8572638114e-05 4.88126785439e-06 -9564496899.61 +UniRef50_B6IU75 2.95996073721e-07 7.30050021087e-07 175232904.993 +UniRef50_D1B330 5.27760038451e-08 8.49621022335e-08 12993922.8872 +UniRef50_I7DDI7 Sec independent protein translocase protein TatC 0.000122316688597 2.17311360683e-05 -40607621879.5 +UniRef50_B2TLC0 Aminotransferase, class V 2.26031762367e-06 6.53282952549e-06 1724865484.38 +UniRef50_Q7MLH6 Phosphoserine aminotransferase 4.69658748439e-05 0.00010312165551 22670777763.8 +UniRef50_G0G0R8 Recombinase 5.03716733898e-08 1.51508885799e-06 591324301.524 +UniRef50_UPI0003B50543 translation initiation factor IF 3 1.40270457489e-06 2.28310012369e-06 355426486.719 +UniRef50_B1GZA3 Adenylate kinase 7.90642272743e-08 1.63533629934e-07 34101334.4099 +UniRef50_W1U046 Alanine dehydrogenase 3.13465260238e-07 6.61723753502e-06 2544910223.31 +UniRef50_J2E9X6 3.25261373385e-06 3.0317943244e-07 -1190722821.11 +UniRef50_A9LZ58 6.60102427422e-06 5.31723770366e-05 18801426604.9 +UniRef50_UPI00035F961E hypothetical protein 4.09927329857e-07 1.82341356622e-06 570641739.045 +UniRef50_UPI000473026F hypothetical protein, partial 6.55919410637e-07 4.23439308988e-07 -93855069.8874 +UniRef50_G8R9L3 Branched chain amino acid transport systemcarrier protein 9.46418679202e-05 1.97177645069e-05 -30247779970.1 +UniRef50_UPI0003EBE04C PREDICTED 2.02939351524e-07 2.09057957794e-07 2470156.43494 +UniRef50_B0VCQ6 Deoxyribodipyrimidine photolyase , FAD binding 1.623085577e-06 5.82569878535e-05 22863801325.2 +UniRef50_UPI0003C1772B PREDICTED 1.13998709749e-07 3.2764717216e-07 86252506.0368 +UniRef50_Q5HNU6 UPF0271 protein SERP1168 0.000227324314793 4.4201665478e-05 -73928860696.1 +UniRef50_B0RNQ5 Nicotinamide phosphoribosyltransferase 1.72720188924e-06 0.000479323900871 1.9281164815e+11 +UniRef50_C1KVV7 N acetylmuramic acid 6 phosphate etherase 8.21494718634e-08 1.1572859892e-07 13556305.655 +UniRef50_S9QJ95 Glycine D amino acid oxidase 2.88165055197e-06 3.79759298035e-07 -1010044200.87 +UniRef50_Q72JJ7 Ribonuclease J 3.53070335027e-07 1.37639874405e-06 413130236.373 +UniRef50_P36667 Rhamnosyltransferase WbbL 9.35596626266e-06 2.23442652099e-06 -2875052984.83 +UniRef50_I6U2T3 3.34843794837e-05 3.7540259135e-06 -12002508568.8 +UniRef50_W4UBR6 L threonine 3 O phosphate decarboxylase 6.06271562253e-08 3.85726967488e-06 1532751174.82 +UniRef50_E3ZT62 Lipoprotein 9.90432530904e-08 1.9972707632e-05 8023242187.05 +UniRef50_UPI0003812E06 hypothetical protein 5.67895875678e-07 1.62617379262e-07 -163615902.33 +UniRef50_B2JIJ5 Malate dehydrogenase (NADP(+)), Phosphate acetyltransferase 2.89391902837e-05 7.03727510855e-05 16727236942.7 +UniRef50_UPI00038F56D4 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 2.71607338912e-07 1.51632961111e-06 502509655.747 +UniRef50_UPI000465DB23 peptide ABC transporter permease 1.18103993689e-06 2.08977522207e-07 -392433525.355 +UniRef50_UPI000475E2DE hypothetical protein, partial 2.92182427977e-08 3.20951566067e-07 117776322.574 +UniRef50_UPI00047C3548 membrane protein 1.11251869534e-07 1.07147035377e-07 -1657171.92116 +UniRef50_B2TJ59 Riboflavin biosynthesis protein RibF 1.23361434261e-06 1.60656757126e-05 5987885184.93 +UniRef50_UPI0003B40EDF methylmalonyl CoA mutase 6.26717710786e-07 5.05106605443e-07 -49095895.563 +UniRef50_Q3J4Q5 Putative Transcriptional regulator 9.98807067205e-06 0.000104229425363 38046391360.2 +UniRef50_I4L4Y8 ISPa7 like transposase 2.32472048569e-06 3.50626105846e-07 -796966126.004 +UniRef50_A5UKX6 1.1064985217e-05 2.06997690564e-06 -3631395236.46 +UniRef50_L4FV79 1.53358820744e-07 3.50723518012e-07 79678550.2243 +UniRef50_A5UJS4 Ribonuclease P protein component 3 3.38966963348e-05 2.99307471484e-06 -12476171278.1 +UniRef50_D4ZLV9 Thioesterase superfamily 5.77629089963e-08 6.2291042769e-08 1828063.17049 +UniRef50_D3E066 Aminotransferase 2.4753553038e-05 8.28506976381e-06 -6648528788.81 +UniRef50_Q2FC63 Beta lactamase regulatory protein 6.36056628392e-06 2.18497650033e-06 -1685736835.88 +UniRef50_UPI000477F0AC hypothetical protein 5.63440110753e-08 8.41769386891e-08 11236494.4261 +UniRef50_G8UZP3 Dyp type peroxidase family protein 0.00013414803489 2.4215711543e-05 -44381027956.5 +UniRef50_I6T4S9 Cation efflux pump 7.02501658968e-05 6.44922367955e-05 -2324546635.93 +UniRef50_K2FDY9 UPF0301 protein ACD_16C00235G0006 3.71019406836e-07 5.79525516267e-07 84176475.035 +UniRef50_P77183 7.21455719959e-05 1.13714854899e-05 -24535244504.4 +UniRef50_Q8Z591 Multiphosphoryl transfer protein 2.24229482716e-05 8.36490671637e-06 -5675403887.4 +UniRef50_UPI0003644847 chromosome partitioning protein ParA 1.21326451948e-07 1.04578082718e-06 373213575.612 +UniRef50_P24602 Bacterioferritin 9.94732164756e-07 1.21327517702e-06 88228495.8753 +UniRef50_L1K7Z2 4.99137783886e-06 8.77178332262e-06 1526196084.59 +UniRef50_P12425 Glutamine synthetase 4.4817033512e-06 3.58146409408e-05 12649491403.3 +UniRef50_N6V491 6.63808890152e-07 1.038628506e-06 151319278.472 +UniRef50_UPI0003B3ECFC hypothetical protein, partial 2.0982846682e-07 2.71775519452e-07 25008785.3234 +UniRef50_UPI00037C5312 hypothetical protein 5.57350946552e-08 1.9490856881e-07 56186039.367 +UniRef50_UPI00029AA298 heme exporter protein CcmA 3.45454801059e-08 2.68888746682e-07 94607252.432 +UniRef50_UPI0003B71736 hypothetical protein 9.80327529196e-08 6.93150289315e-08 -11593697.5801 +UniRef50_P83851 Inosine uridine preferring nucleoside hydrolase 5.21857965365e-08 2.04956640618e-07 61675464.465 +UniRef50_W7W6N9 6.02018788493e-08 1.23933575369e-07 25729267.9609 +UniRef50_Q1AW66 Uridylate kinase 1.65437688647e-07 2.74353229763e-07 43970540.4925 +UniRef50_A7NN67 Thioesterase superfamily protein 1.19920211283e-07 1.88663725543e-05 7568172855.71 +UniRef50_F8LMW5 Branched chain amino acid ABC uptake transporter substrate binding protein 9.24786476785e-05 5.41295254251e-05 -15482011250.3 +UniRef50_UPI0003B44F91 16S rRNA methyltransferase 1.5373923727e-07 7.3861450865e-07 236121324.283 +UniRef50_UPI00037A1640 hypothetical protein 2.30349759035e-07 7.25454670661e-07 199879928.444 +UniRef50_P0ABU5 Enhancing lycopene biosynthesis protein 2 4.94671915031e-05 6.372351934e-05 5755454492.57 +UniRef50_D6GRJ0 Relaxase mobilization nuclease domain protein 1.2401022456e-07 3.36917078191e-08 -36462693.5411 +UniRef50_G7M3W5 PAS modulated sigma54 specific transcriptional regulator, Fis family 6.68906064094e-07 1.31422210259e-05 5035630314.87 +UniRef50_D3EHS5 Copper amine oxidase domain protein 7.04373921475e-08 1.41130079209e-07 28539505.2635 +UniRef50_F0YJ43 1.67549084728e-06 3.92962752234e-07 -517772330.361 +UniRef50_Q82MV1 Aliphatic sulfonates import ATP binding protein SsuB 1 7.91874768648e-08 3.51491665465e-07 109932542.486 +UniRef50_UPI00047B469E hypothetical protein 2.75204390519e-08 6.26175625193e-08 14169139.4339 +UniRef50_P26365 N acetylmuramoyl L alanine amidase AmiB 3.99805733287e-05 8.33499978781e-06 -12775706373.3 +UniRef50_W9B7R7 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 2.45652435359e-06 1.21187489983e-05 3900758657.9 +UniRef50_A0A030STE3 2.34346116747e-06 4.84410280591e-07 -750521656.153 +UniRef50_Q1LTQ4 Alanine tRNA ligase 2.92534922718e-05 2.02511396585e-05 -3634360221.28 +UniRef50_Q2KVV8 Glutaminase 3.34818572691e-05 1.26497674854e-05 -8410170284.17 +UniRef50_N6V723 3.28215521288e-07 3.41293618959e-07 5279788.51609 +UniRef50_R5EPL7 1.90066601483e-08 4.11377303504e-05 16600133337.3 +UniRef50_UPI000420BB24 hypothetical protein 3.91304214536e-07 3.93957903549e-06 1432482087.45 +UniRef50_B2TI10 Peptidyl tRNA hydrolase 1.98676836237e-06 1.4781244494e-05 5165287020.2 +UniRef50_P76586 9.2586571394e-06 1.29642388e-05 1495988788.98 +UniRef50_P76584 3.12978011251e-05 5.42877351096e-06 -10443643896.5 +UniRef50_P76585 3.55788907512e-05 9.08469170782e-06 -10696033274.2 +UniRef50_E7DRS8 Cobyrinic acid a,c diamide synthase 2.39120283713e-07 1.01972561014e-06 315139949.383 +UniRef50_B2TPC7 Homoserine kinase 3.54954565215e-06 3.91774681766e-05 14383429526.9 +UniRef50_UPI00016AE1F0 amino acid ABC transporter, permease ATP binding protein, His Glu Gln Arg opine family, partial 4.12868098063e-07 3.53260354305e-07 -24064377.6244 +UniRef50_UPI00037DC74D hypothetical protein 8.46128187802e-08 3.79508251134e-08 -18838019.4503 +UniRef50_UPI0003B5A1CC type I secretion protein 7.85933382285e-09 1.40141391306e-08 2484770.43069 +UniRef50_C3ISU2 Transcriptional regulator, PadR 1.59578864664e-06 4.54386748582e-07 -460797952.823 +UniRef50_X1FD15 Marine sediment metagenome DNA, contig 1.73471105778e-06 1.30865930918e-06 -172002319.153 +UniRef50_W5X9W4 30S ribosomal protein S4 5.52417369412e-07 7.64246466026e-07 85518005.7384 +UniRef50_Q8NY74 0.000143367645915 2.69157438495e-05 -47013061889.6 +UniRef50_B9DK14 Homolog of FecCD transport family protein SstB 0.000175640000954 5.27726088709e-05 -49603073936.4 +UniRef50_V9VUC0 2.00016855866e-07 1.70338607102e-07 -11981473.2191 +UniRef50_Q475Q2 4 hydroxythreonine 4 phosphate dehydrogenase 4.63075779513e-06 5.20022121367e-05 19124437430.8 +UniRef50_K1TVZ4 Anthranilate synthase component II 1.52295452453e-07 1.70722442509e-07 7439202.0102 +UniRef50_Q5HRY7 1.90829504482e-05 2.7197815235e-05 3276070495.02 +UniRef50_Q9RU78 2 phosphoglycerate kinase, putative 9.2445548289e-07 0.000126550890118 50716933271.9 +UniRef50_Q5HKC7 0.00019010564897 0.000124597019271 -26446637690.8 +UniRef50_A0A020CZ32 8.07587477663e-06 2.02093948186e-06 -2444451680.91 +UniRef50_B5B0J6 FAD dependent urate hydroxylase 1.08058966276e-06 0.000118502250003 47404565205.1 +UniRef50_UPI0003B6355C multidrug transporter CflA 6.14581544474e-08 8.38554509585e-08 9042063.44727 +UniRef50_B8H806 Shikimate dehydrogenase 1.42268588759e-06 2.07239793125e-06 262296724.889 +UniRef50_A6LTJ7 Glycosyl transferase 6.29226230738e-06 3.65508196157e-05 12215750899.6 +UniRef50_UPI0000164CF0 helicase related protein, partial 9.72902033113e-07 0.000268198312983 1.07882177625e+11 +UniRef50_UPI00037DA311 hypothetical protein 2.52829376611e-07 8.10499894506e-08 -69349446.5666 +UniRef50_E3F454 1.72874674004e-06 9.03720311285e-07 -333073293.501 +UniRef50_M1MT01 Oxygen independent coproporphyrinogen III oxidase 1 2.65081999205e-06 8.8027600776e-06 2483613705.33 +UniRef50_Q55G10 Nicotinate phosphoribosyltransferase 3.03665302617e-08 1.09067745708e-06 428060532.635 +UniRef50_UPI00047AB801 hypothetical protein 1.83305680202e-07 6.80403001619e-08 -46534048.3874 +UniRef50_R9YSK0 Sugar transporter family protein 0.000213252190984 4.33367772277e-05 -68596937629.9 +UniRef50_UPI0002003470 hypothetical protein 4.42851679736e-08 9.77764035525e-08 21595068.2145 +UniRef50_UPI000403F45D hypothetical protein 8.5134660394e-08 1.68966491453e-06 647768553.397 +UniRef50_S5K798 Ethanolamine utilization protein EutJ 2.21989985356e-07 2.94988300468e-05 11819419600.0 +UniRef50_V6AIC2 1.2163107099e-06 3.76217510327e-06 1027796696.87 +UniRef50_O86793 tRNA N6 adenosine threonylcarbamoyltransferase 2.56499189752e-06 9.57653322151e-05 37626121083.0 +UniRef50_I0KVQ6 1.56485924717e-07 5.42419030496e-07 155805930.735 +UniRef50_UPI00034BACF0 hypothetical protein 1.00395209802e-06 1.38998740688e-06 155847191.373 +UniRef50_P0AFY0 Sigma E factor regulatory protein RseB 3.58964978852e-05 3.99850131071e-06 -12877612649.6 +UniRef50_P93345 Putative carbamoyl phosphate synthetase, large chain 1.90631552941e-07 2.31294108423e-07 16415972.6338 +UniRef50_UPI000465AFB9 D ribose transporter ATP binding protein 1.53792627001e-07 3.52925904415e-07 80392547.7321 +UniRef50_A6X8A8 Endoribonuclease L PSP 1.48642022207e-06 3.93120157926e-07 -441378652.194 +UniRef50_Q46898 CRISPR system Cascade subunit CasD 2.88141984952e-05 2.6367562964e-06 -10568154649.0 +UniRef50_Q9Z661 Diaminopimelate decarboxylase 4.50554675364e-05 1.76108635576e-05 -11079723409.4 +UniRef50_Q6GDP8 Ferrous iron transport protein B 0.000209020726164 6.39129503441e-05 -58581789771.2 +UniRef50_Q42891 Lactoylglutathione lyase 2.3451899556e-07 2.45196745238e-07 4310738.57573 +UniRef50_R7IF37 3.05259361323e-07 8.75890958238e-07 230370978.112 +UniRef50_B5GQH0 2.83136443545e-07 2.37817446124e-07 -18295835.3855 +UniRef50_Q0APS4 Thioesterase superfamily protein 4.47766582417e-08 1.70681726014e-06 670986186.519 +UniRef50_Q9RVA0 1.85953689091e-06 0.000350571295756 1.40779216228e+11 +UniRef50_Q5HQK8 Putative peptidyl prolyl cis trans isomerase 0.00022865317284 9.24922384474e-05 -54969840097.0 +UniRef50_A5ULZ8 4.57474481691e-05 6.37026600826e-06 -15897051650.7 +UniRef50_B1HUU8 Glucosamine 6 phosphate deaminase 9.28424862893e-08 2.26717866347e-07 54047133.7651 +UniRef50_A6QDY0 Phage portal protein 0.000140110621464 4.57572913938e-05 -38091597194.9 +UniRef50_A6LQB8 4.73376866408e-06 2.09928865201e-05 6564005400.28 +UniRef50_R7U693 8.55581319638e-07 2.57614484477e-07 -241406549.233 +UniRef50_Q5HK21 YycI protein 0.000130570038066 5.74225790973e-05 -29530526805.9 +UniRef50_W8YHT8 5.57076405129e-06 2.10012952802e-06 -1401137746.52 +UniRef50_Q9JYB8 ComE operon protein 1 related protein 8.55993139133e-06 3.66942864526e-05 11358184385.6 +UniRef50_Q0JKD0 Glutamate synthase 1 [NADH], chloroplastic 1.08568678439e-08 9.25828034407e-08 32993763.0904 +UniRef50_P06720 Alpha galactosidase 2.47666901049e-05 6.02410150965e-06 -7566613013.31 +UniRef50_Q9ZLY0 UDP N acetylmuramoylalanine D glutamate ligase 1.09416228655e-06 2.22430853286e-05 8538079758.53 +UniRef50_N6VE85 1.51795370894e-06 5.60086100893e-07 -386702907.726 +UniRef50_A0A011RZR4 7.92704098307e-07 1.10618001118e-06 126554072.809 +UniRef50_UPI000381C6B2 MULTISPECIES 1.9537650557e-06 1.04944706081e-06 -365084271.767 +UniRef50_UPI000471AF5A hypothetical protein 5.82125789506e-07 6.51147693787e-08 -208723693.264 +UniRef50_UPI0003B2EAF3 DNA polymerase I 3.18457384774e-08 5.43108452778e-07 206403031.662 +UniRef50_A1VT86 Phosphate butyryltransferase 2.33738756365e-05 4.48362190553e-06 -7626227240.69 +UniRef50_D8JIA1 DMT family permease 6.57347096919e-06 8.1603201383e-05 30290422886.4 +UniRef50_UPI0003623153 hypothetical protein 2.24992414766e-07 1.46980204326e-07 -31494486.6721 +UniRef50_E7B1W7 Zinc ABC transporter, inner membrane permease protein ZnuB 7.38122076317e-06 4.33553632714e-05 14523202782.9 +UniRef50_UPI0003AD1FFA hypothetical protein 8.95711683243e-09 2.02657947538e-07 78199402.3325 +UniRef50_R7PV41 Bacterial membrane flanked domain protein 4.19024055796e-05 2.52767508006e-06 -15896061884.9 +UniRef50_C2L1L8 2.78746967941e-06 3.40948018057e-06 251113272.245 +UniRef50_K9NJK2 Putrescine transport system permease protein 5.91478240338e-05 1.72187764801e-05 -16927271024.7 +UniRef50_Q187P1 LexA repressor 1.2410876684e-06 1.34111523212e-07 -446899853.938 +UniRef50_Q8Z3W5 UPF0149 protein YgfB 6.02894181434e-06 8.99031594298e-06 1195543075.88 +UniRef50_A6LQ92 Transcriptional antiterminator, BglG 1.95056752111e-06 2.90301448196e-05 10932357659.2 +UniRef50_J4SG21 8.16219549366e-08 1.10664444803e-07 11724809.5505 +UniRef50_Q8XZ19 DNA polymerase IV 1.791883287e-06 4.08227522167e-06 924659330.296 +UniRef50_Q8GAA6 Queuine tRNA ribosyltransferase 5.50097624621e-08 8.28509605048e-07 312271378.362 +UniRef50_A6LZ80 RNA polymerase, sigma 24 subunit, ECF subfamily 7.97505610247e-06 4.63848228053e-06 -1347015796.28 +UniRef50_P55037 Ferredoxin dependent glutamate synthase 1 2.26505862282e-08 2.3035349926e-08 155333.826383 +UniRef50_UPI000362A514 hypothetical protein 1.94988805121e-08 5.68135266534e-08 15064380.5494 +UniRef50_Q5H330 Glutamine synthetase 0.000120301380891 1.18324725498e-05 -43790229360.4 +UniRef50_UPI000381B208 amino acid ABC transporter ATPase 1.73748018419e-07 9.57705157626e-07 316493117.334 +UniRef50_UPI000344FAE6 hypothetical protein 2.03646341296e-07 3.91564974383e-08 -66406568.4828 +UniRef50_Q5XA93 1.15166531804e-05 1.3723860311e-05 891076604.101 +UniRef50_Q6FDD7 2.92624797564e-06 3.74707693971e-05 13946047206.8 +UniRef50_F0Y880 6.88024426533e-06 7.78219039123e-06 364126719.149 +UniRef50_X2LK66 Penicillin binding protein 1C 2.17106335617e-05 1.85246984181e-06 -8016984380.8 +UniRef50_G7U7D2 ABC transporter, permease protein 1.43530794236e-06 6.84035888162e-05 27035916782.0 +UniRef50_Q2GDL7 Ribosomal RNA large subunit methyltransferase E 4.14432326013e-07 2.85099962365e-07 -52213062.2913 +UniRef50_V5VAN9 Major facilitator superfamily permease 1.09924050077e-06 6.94594145321e-05 27597841130.1 +UniRef50_Q9RYA2 1.753118713e-07 0.000342240586871 1.3809594913e+11 +UniRef50_Q2C7C0 5.45179186972e-07 6.34481228811e-06 2341383052.43 +UniRef50_UPI0003B42B48 hypothetical protein, partial 7.32559288431e-08 4.53704650804e-08 -11257703.9141 +UniRef50_F3NYW4 3 carboxymuconate cyclase 6.08809614591e-08 1.08744785457e-07 19323213.1031 +UniRef50_B1GZ76 DNA directed RNA polymerase subunit beta 1.10445918904e-08 1.72797468269e-08 2517208.56182 +UniRef50_UPI000365AE70 hypothetical protein 6.97429563521e-08 6.25887114119e-07 224522221.147 +UniRef50_UPI000464E1A7 hypothetical protein 3.98951082257e-07 5.87058170866e-07 75941140.005 +UniRef50_UPI0004787718 hypothetical protein 2.38888173542e-07 4.07163749228e-08 -80004386.9439 +UniRef50_K0RCG6 1.8467444704e-07 4.00912145008e-08 -58370025.2118 +UniRef50_F0XXW5 1.67278673357e-06 5.92254492795e-07 -436224125.221 +UniRef50_C5WE22 9.32585034739e-06 9.93389506473e-06 245475113.938 +UniRef50_UPI000373B5E9 hypothetical protein 5.29360107224e-07 8.49958957022e-07 129429689.854 +UniRef50_R6N0L8 Transcriptional regulator PadR family 1.60657664224e-06 3.12974167876e-07 -522243193.187 +UniRef50_A3MAB2 Resolvase 1.05592535631e-05 0.000412507766369 1.62271547083e+11 +UniRef50_UPI00026C7388 bicyclomycin resistance protein 9.08346436372e-08 3.24934822947e-07 94509115.1197 +UniRef50_A0ZZN9 Aspartate semialdehyde dehydrogenase 2.54090324097e-06 8.3357061716e-06 2339433053.32 +UniRef50_Q8RE73 Transcriptional regulator, DeoR family 5.49508542838e-05 2.08820290026e-05 -13754002837.5 +UniRef50_N0AI85 2.31676005021e-07 1.46423512291e-06 497599241.093 +UniRef50_UPI00029D989C PREDICTED 2.17679963127e-07 4.93332494081e-07 111284309.383 +UniRef50_F8KPA7 Glutathione regulated potassium efflux system protein KefB 9.14747953543e-07 3.50693449124e-05 13788629916.3 +UniRef50_Q3IV28 DNA binding HTH domain containing proteins 0.000130366038994 6.76836190193e-05 -25305662143.6 +UniRef50_M8W9J3 Glycosyl hydrolase family 65 central catalytic domain protein 2.15291091346e-06 7.92796524076e-07 -549094869.473 +UniRef50_B3WXF3 Glycolate oxidase iron sulfur subunit 2.55866356295e-07 5.56840732904e-07 121507049.208 +UniRef50_UPI00024851F3 hemolysin type calcium binding protein 2.07228005402e-08 4.11353091572e-07 157702242.062 +UniRef50_UPI0003B6F611 aldehyde activating protein 1.56920145125e-06 3.91968327626e-07 -475263458.28 +UniRef50_UPI00029AFF26 30S ribosomal protein S15 8.03830162395e-07 2.41897538769e-07 -226859095.847 +UniRef50_Q96RP9 Elongation factor G, mitochondrial 1.15220608226e-07 7.19418740366e-08 -17472156.0821 +UniRef50_D0LJQ7 Extracellular solute binding protein family 1 0.000110876281656 1.83648778218e-05 -37347988970.5 +UniRef50_Q9RWX4 4.82723819801e-06 0.000196451101969 77360905293.6 +UniRef50_P25740 Lipopolysaccharide core biosynthesis protein RfaG 3.96643837659e-05 1.52439095337e-05 -9858845120.46 +UniRef50_T2L9X3 1.80959195655e-06 5.2507838966e-07 -518573889.708 +UniRef50_Q9RRP0 Transcriptional regulator, MerR family 2.94680013299e-06 0.000309331585454 1.23691297598e+11 +UniRef50_B9KNU8 Transcriptional regulator, MerR family 6.17601716693e-05 1.05355235223e-05 -20680019054.1 +UniRef50_G7U539 5.08056512592e-07 3.21032300084e-05 12755359256.6 +UniRef50_UPI00035E9032 MULTISPECIES 8.01458044706e-08 2.34611146232e-07 62359553.9718 +UniRef50_UPI000411B532 hypothetical protein 1.34436053524e-06 7.2731883108e-07 -249107307.923 +UniRef50_UPI0004638A40 hypothetical protein 8.12777733285e-07 2.94846182109e-07 -209095322.945 +UniRef50_UPI000304092F hypothetical protein 1.1240277524e-07 2.27595106865e-07 46504557.8459 +UniRef50_UPI00047D1DA4 methyltransferase 3.02877527938e-07 2.60433689021e-07 -17135098.6153 +UniRef50_B9E5C1 2.27401198102e-06 4.42975057792e-06 870298125.456 +UniRef50_U5MS98 4.20570896694e-06 1.4263004297e-05 4060253541.65 +UniRef50_A3M1H8 7.75656232471e-07 6.92520649548e-05 27644766501.2 +UniRef50_A4WTR8 2.08684961886e-05 8.9040212621e-06 -4830205348.45 +UniRef50_F9YXU6 1.54091083615e-06 6.51518130776e-06 2008174030.55 +UniRef50_B2V7W7 ATP dependent 6 phosphofructokinase 2.21733406052e-07 7.39473080604e-08 -59663061.2987 +UniRef50_UPI00046226A0 histidine kinase, partial 1.58164520469e-06 2.28043787796e-06 282111177.349 +UniRef50_UPI000464D5F8 quercetin 2,3 dioxygenase 5.54654045468e-08 1.15753878975e-07 24339196.9494 +UniRef50_Q89GJ0 ABC transporter permease protein 1.01112772668e-05 4.8545211813e-06 -2122216939.37 +UniRef50_Q82SA8 Glucans biosynthesis glucosyltransferase H 3.22620876065e-05 9.82470916933e-06 -9058245012.69 +UniRef50_M1Z980 1.57908939236e-07 5.36752964174e-07 152943981.806 +UniRef50_UPI0004704D11 translation initiation factor IF 3 1.63534295685e-06 2.10350854973e-06 189004194.884 +UniRef50_G0DSU9 S adenosylmethionine synthase 1.9595176491e-06 3.78181688188e-05 14476577512.3 +UniRef50_Q2FFH9 Sodium dependent dicarboxylate transporter SdcS 0.000115303940844 1.44442504443e-05 -40718294702.1 +UniRef50_UPI000362FFAD hypothetical protein, partial 1.20421391428e-07 3.58845595754e-07 96254777.0804 +UniRef50_G0DRS5 Sugar binding protein 2.28474222761e-06 8.11337326417e-05 31832305016.1 +UniRef50_UPI000223620B PREDICTED 1.18768533466e-06 1.85394721555e-06 268978097.268 +UniRef50_UPI0003B6A033 ABC transporter 2.22087090568e-08 3.4907305443e-08 5126579.19041 +UniRef50_Q96533 Alcohol dehydrogenase class 3 5.86393070053e-08 3.17914242224e-05 12810914675.4 +UniRef50_W9EWM1 8.03232046339e-07 5.49111602742e-07 -102591541.489 +UniRef50_C1KYP9 Prolipoprotein diacylglyceryl transferase 1.04729237001e-07 5.21147126817e-06 2061654424.76 +UniRef50_UPI000479DF45 hypothetical protein 1.97659534534e-07 1.03216520701e-07 -38127803.6305 +UniRef50_M9M1D4 9.7309487519e-06 2.16799876999e-06 -3053255715.53 +UniRef50_D5ATM2 Transcriptional regulator, LysR family 4.65043345512e-05 1.71587947862e-05 -11847154513.4 +UniRef50_A0A024J7I0 Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA dependent ATPase and ssDNA annealing activities involved in maintenance of genome 3.25484789268e-08 1.69036836831e-07 55102024.9863 +UniRef50_Q182G9 Uracil DNA glycosylase 7.93373466344e-05 2.10595479533e-05 -23527462476.6 +UniRef50_UPI00037EDDB2 hypothetical protein 2.09756641805e-07 3.20341797078e-07 44644584.2162 +UniRef50_D9WFC1 Allergen V5 Tpx 1 related protein 5.85849700527e-07 5.10745646213e-07 -30320428.3569 +UniRef50_P0A911 Outer membrane protein A 3.62566167161e-05 1.01563638109e-05 -10536992383.9 +UniRef50_UPI0003B56FE6 hypothetical protein 1.85993862493e-08 8.14728887017e-09 -4219639.9736 +UniRef50_UPI000465FC10 oxidoreductase 8.1911951262e-08 1.22535146878e-07 16400082.5728 +UniRef50_K9NBL7 Formate dehydrogenase family accessory protein FdhD 1.96949211577e-06 2.28337658653e-06 126719012.641 +UniRef50_C8RZ45 Entericidin EcnAB 1.41183299524e-06 2.59390794772e-06 477218164.007 +UniRef50_V9ZPI5 GntR family transcriptional regulator 1.57067679132e-06 5.99275541181e-06 1785247404.1 +UniRef50_B8GVF8 Potassium transporting ATPase A chain 1.01130731999e-07 1.24857913595e-05 4999839472.2 +UniRef50_Q4FR66 Possible tRNA io(6)a) hydroxylase 8.83975236542e-08 3.56371275777e-05 14351458554.8 +UniRef50_V5XTH0 HIT family protein 3.01580741199e-05 9.51262795234e-05 26228461770.9 +UniRef50_S5XKF8 Aminodeoxychorismate lyase 1.83606468922e-05 6.0333333611e-06 -4976687745.65 +UniRef50_UPI00037864CC hypothetical protein 5.6464639105e-07 2.57262109159e-07 -124094806.629 +UniRef50_A3M8R9 9.73963701246e-07 7.48761566958e-05 29835222193.8 +UniRef50_D3CS21 Terminase 1.72422524725e-08 4.6478982698e-08 11803226.7671 +UniRef50_D7CM96 Metallophosphoesterase 7.27848586041e-08 1.50496903043e-07 31373305.974 +UniRef50_A8U0I4 1.42041880074e-08 3.62886407675e-08 8915764.58596 +UniRef50_Q28TH8 Protein L isoaspartate O methyltransferase 2.11989791279e-05 6.94862835762e-06 -5753041477.44 +UniRef50_D7A8N8 2.23793177468e-05 1.40481492064e-05 -3363394974.69 +UniRef50_UPI000361C4AD hypothetical protein 2.17337939078e-06 1.66883101846e-07 -810047174.319 +UniRef50_P57028 DNA primase 4.55340207854e-06 3.18368260169e-05 11014653049.2 +UniRef50_Q3AAI8 Adenine phosphoribosyltransferase 2.38630710129e-07 4.06513086556e-07 67776175.512 +UniRef50_G0MS24 1.89928228595e-07 2.23184584061e-07 13425998.803 +UniRef50_A5UL10 5.8959180495e-05 4.77601140485e-06 -21874410263.9 +UniRef50_A6LT75 Ig domain protein, group 2 domain protein 2.9455243046e-06 1.62078119211e-05 5354148257.35 +UniRef50_UPI0003735B5E hypothetical protein 4.91138850543e-08 1.39821651909e-08 -14183106.4235 +UniRef50_Q8FPF5 LexA repressor 6.25249684799e-07 1.56114780767e-07 -189395517.69 +UniRef50_C1AAF1 UDP glucose 6 dehydrogenase 4.90943510961e-05 3.31580644179e-05 -6433674492.22 +UniRef50_UPI0003C1975D 2.31212779318e-07 3.53568746275e-07 49396605.3371 +UniRef50_UPI00037D4B02 hypothetical protein 7.75701654001e-08 3.80178452906e-08 -15967756.9898 +UniRef50_P45335 2.04830812332e-06 2.52247365718e-05 9356608571.42 +UniRef50_Q47690 Homocysteine S methyltransferase 1.67519669018e-05 3.76199624447e-06 -5244210559.22 +UniRef50_A6QBN8 ATP dependent zinc metalloprotease FtsH 6.04622512861e-07 5.8378907646e-05 23324187878.4 +UniRef50_B2SDP9 3 dehydroquinate dehydratase 6.18834267726e-07 1.63361000428e-07 -183880147.294 +UniRef50_UPI0003BD59E0 PREDICTED 6.73408053123e-08 1.1513208162e-07 19293924.7103 +UniRef50_G7M9Q4 SSS sodium solute transporter superfamily 2.84017336483e-06 1.30927035157e-05 4139072234.61 +UniRef50_UPI00046850A9 membrane protein 3.69663463273e-07 4.75414985962e-08 -130044590.021 +UniRef50_Q1MIN0 Phosphate import ATP binding protein PstB 2 6.21180647702e-08 1.572358992e-06 609702795.063 +UniRef50_A0A031W8S5 4.81562368441e-07 4.6812926905e-07 -5423107.06681 +UniRef50_A6VAP8 2.24697354869e-06 5.78158651396e-06 1426966628.66 +UniRef50_Q9I425 Cytochrome bo ubiquinol oxidase subunit 3 4.48453814469e-05 2.60926823191e-05 -7570694759.39 +UniRef50_Q6A9N0 Hemin receptor 4.16778983442e-07 7.53389953111e-05 30247018130.5 +UniRef50_Q63Q93 Phosphoribosyl AMP cyclohydrolase 2.37393536606e-07 5.94870099621e-07 144317675.22 +UniRef50_I2DKJ5 Urea ABC transporter, urea binding protein 0.000178486838905 3.91405306036e-05 -56255814632.6 +UniRef50_F0RXH0 Ornithine decarboxylase 1.43909360312e-05 5.80920910375e-05 17642692549.5 +UniRef50_K4RK14 Cysteine desulfurase 1.15321585189e-06 2.84997237502e-05 11040120817.9 +UniRef50_UPI00045D877D PREDICTED 7.2745867193e-07 8.07695811183e-07 32392717.7369 +UniRef50_UPI000262B349 TonB like protein 1.51484918653e-06 1.72868315237e-06 86327396.0474 +UniRef50_A0A024HEM4 1.69162777717e-06 1.36404944659e-06 -132247391.893 +UniRef50_UPI00032AF593 PREDICTED 4.33393104288e-08 1.59844688163e-07 47034650.673 +UniRef50_E3I3E7 Enoyl CoA hydratase isomerase 5.31922390186e-06 1.92597851207e-06 -1369894803.66 +UniRef50_S3ZTJ7 2.25140748821e-06 2.69796864334e-07 -800000525.957 +UniRef50_C2V3W1 Flavodoxin 3.31128060398e-06 1.14001973896e-05 3265594968.53 +UniRef50_I0EKX0 1.26673150626e-06 5.71418335711e-05 22557464368.2 +UniRef50_I0EKX8 2.37973923262e-06 2.72474654236e-05 10039406224.6 +UniRef50_UPI0003B5754D 30S ribosomal protein S2 2.10117484474e-07 1.15285731913e-06 380595639.969 +UniRef50_UPI000477AE59 GMP synthase 3.12373823975e-08 1.3286428388e-07 41028027.2306 +UniRef50_UPI00036D316E hypothetical protein 2.2212781002e-07 2.46660446637e-07 9904126.45159 +UniRef50_X1RBN9 Marine sediment metagenome DNA, contig 1.23893850246e-06 1.60080283871e-05 5962462823.53 +UniRef50_S1SGR9 2.81678685418e-06 4.48482495811e-07 -956113531.837 +UniRef50_G7ZV51 3.22760195962e-07 3.04050563091e-07 -7553308.38304 +UniRef50_A6M2G9 Polysaccharide biosynthesis protein 1.63189554473e-06 3.19644103373e-05 12245608443.6 +UniRef50_N0C5G3 5.83284352253e-05 5.56745899574e-05 -1071389900.99 +UniRef50_A3VF16 2.60954772703e-06 4.05986804015e-07 -889604585.352 +UniRef50_A1WKV0 Succinate dehydrogenase 3.27041598736e-05 1.13403931895e-05 -8624814773.27 +UniRef50_Q0SRW4 Phospho N acetylmuramoyl pentapeptide transferase 7.30710392256e-08 9.7699286379e-08 9942725.59841 +UniRef50_UPI00046AE78D type III secretion protein HrpI 6.03321920333e-08 5.61542458118e-08 -1686688.15879 +UniRef50_U7DL84 TetR family transcriptional regulator 4.46336597065e-06 2.85330149942e-06 -650002784.748 +UniRef50_N6TVC0 3.53630632388e-06 2.18061715372e-07 -1339616067.9 +UniRef50_V6QG29 Type III restriction enzyme, res subunit 9.8841505013e-05 5.34783224654e-05 -18313673463.3 +UniRef50_Q8PG33 RNA polymerase sigma factor RpoD 8.04082964542e-06 2.8458886189e-05 8243019984.38 +UniRef50_D5SSK6 Beta Ig H3 fasciclin 6.91947766764e-07 1.40332555597e-07 -222693829.828 +UniRef50_A5N5W0 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.53294511175e-07 2.12374664228e-05 8511938932.6 +UniRef50_S9QZ13 4.98589119372e-07 7.57493512734e-07 104522880.714 +UniRef50_D9UUH5 Predicted protein 2.27303077583e-07 1.25404795578e-06 414509506.906 +UniRef50_P0C8K1 D tagatose 1,6 bisphosphate aldolase subunit KbaZ 4.5407407648e-05 1.93279716663e-05 -10528588336.5 +UniRef50_Q73Z69 2.59945604314e-08 2.11930838157e-08 -1938415.0305 +UniRef50_UPI0003B6885A hypothetical protein 1.06908486396e-06 3.12815155955e-07 -305315361.595 +UniRef50_UPI00047712DF cystathionine beta lyase 8.58356784087e-07 1.92484643492e-07 -268820754.328 +UniRef50_M9VBT0 RpiR family transcriptional regulator 4.8452050887e-06 5.81842192246e-05 21533614550.0 +UniRef50_A7ZUM9 0.00011615942642 2.72246400014e-05 -35904064629.7 +UniRef50_UPI0003B566EA glycine betaine ABC transporter ATP binding protein 1.72952101627e-06 1.34709640893e-07 -643844922.777 +UniRef50_UPI0003682815 transcriptional regulator 3.36887347044e-07 7.96106693115e-07 185392485.264 +UniRef50_UPI0003C1848F 1.27091099107e-07 1.36644285801e-06 500341513.624 +UniRef50_H2A7K3 COG4478, integral membrane protein 2.41472812415e-06 1.86518256558e-07 -899555666.756 +UniRef50_UPI0002485ACF sugar ABC transporter ATP binding protein 1.14597753175e-07 1.66444082555e-07 20930999.3967 +UniRef50_K8B0J3 Acetyl coenzyme A synthetase 1.42914633767e-05 8.99005750461e-06 -2140242606.13 +UniRef50_UPI00045E771A hypothetical protein 5.78139924697e-06 3.48735440883e-06 -926134052.253 +UniRef50_UPI00036DBE20 hypothetical protein 2.49659097226e-06 6.11217046404e-07 -761148590.009 +UniRef50_F0Y5J9 Expressed protein 1.34490739149e-06 2.88787895961e-06 622916556.44 +UniRef50_Q9HZ17 FMN dependent NADH azoreductase 3 2.67720559474e-06 3.16308162324e-05 11688927915.2 +UniRef50_UPI000379F901 hypothetical protein 1.50613992114e-07 1.18607171512e-07 -12921546.2449 +UniRef50_A8Z481 Competence protein ComGD 3.51526128724e-05 2.37611142112e-05 -4598887798.93 +UniRef50_Z8E4W9 4.76012824855e-06 1.71162602195e-07 -1852621744.38 +UniRef50_A7Z3A7 N acetyl gamma glutamyl phosphate reductase 4.96997921935e-08 5.16366006545e-08 781913.343018 +UniRef50_UPI00036800B9 hypothetical protein 1.74790674043e-06 1.428713354e-06 -128862287.045 +UniRef50_K0DDY7 3 oxoacyl [acyl carrier protein] synthase 2 8.20619844652e-05 1.79326603883e-05 -25889795085.1 +UniRef50_A0A023RSC6 D Ala D Ala carboxypeptidase 2.70922958506e-06 8.4795181715e-05 33139106182.7 +UniRef50_Q9ZKG9 Methionine tRNA ligase 6.44726582038e-07 2.08569193564e-05 8159910254.52 +UniRef50_M4YY04 Ribosome biogenesis GTPase A 5.68120929523e-05 2.8965674175e-05 -11241940974.4 +UniRef50_W6I1I5 2.26439125401e-08 3.6976552859e-08 5786262.77801 +UniRef50_W1X1F9 8.5636406403e-06 3.22829721041e-06 -2153943614.67 +UniRef50_B6IWY4 2.50266742009e-08 4.70144629967e-08 8876740.15737 +UniRef50_R9SI06 Chorismate lyase 3.06318153505e-05 3.15846743525e-06 -11091327689.3 +UniRef50_D0Z8H8 1.53513617329e-07 9.71037898047e-06 3858223823.03 +UniRef50_G5LKX8 Potassium transporting ATPase B chain 1.88203351291e-07 1.36688918081e-05 5442319356.66 +UniRef50_Q31N34 3 isopropylmalate dehydrogenase 5.25456489393e-07 6.20758076026e-07 38474420.0057 +UniRef50_Q9LV03 Glutamate synthase 1 [NADH], chloroplastic 1.03833201265e-08 1.09541629013e-07 40031426.1068 +UniRef50_P21599 Pyruvate kinase II 2.72713402986e-05 7.96271081831e-06 -7795130664.73 +UniRef50_I0ZLD5 Cation acetate symporter ActP 7.29757742592e-06 6.55754929427e-06 -298758437.913 +UniRef50_F0N2E1 Antioxidant, AhpC TSA family 1.74224302547e-05 0.000116455577096 39980896653.2 +UniRef50_R6LNJ5 Calcium translocating P type ATPase PMCA type 4.52391273821e-06 1.22306857789e-05 3111318849.27 +UniRef50_V6IYX1 Sugar ABC transporter substrate binding protein 1.43159730023e-06 1.83939685458e-07 -503694689.563 +UniRef50_M9RA73 0.000327263496618 3.7381861418e-06 -1.30611137941e+11 +UniRef50_H1CG66 Inosine 5 monophosphate dehydrogenase 3.60713766123e-05 5.55707614596e-06 -12318997550.8 +UniRef50_Q9FV81-2 Isoform 2 of Glutamyl tRNA amidotransferase subunit B, chloroplastic mitochondrial 2.81065472929e-07 2.01819405499e-07 -31992609.8801 +UniRef50_UPI00036930E8 hypothetical protein 2.78148761753e-07 6.41161053227e-09 -109703622.538 +UniRef50_C1DKH4 Tartrate transporter 2.529622901e-06 2.55069249602e-05 9276218804.5 +UniRef50_UPI0004798495 16S rRNA methyltransferase, partial 4.56538767165e-07 1.96307537731e-06 608207316.797 +UniRef50_UPI0004702790 hypothetical protein 6.97296660518e-07 2.15342069828e-07 -194570982.509 +UniRef50_I6RS84 Type 4 fimbrial biogenesis protein PilX 6.87548156749e-06 3.01343576728e-06 -1559155282.18 +UniRef50_P39853 Capsular polysaccharide biosynthesis protein CapD 2.26011804391e-07 1.09703689735e-05 4337628837.25 +UniRef50_D7HYR3 D alanyl D alanine carboxypeptidase 6.0983822042e-06 3.76795021552e-06 -940823991.446 +UniRef50_UPI0004678721 hypothetical protein 2.23880535938e-06 1.2644111223e-07 -852787368.199 +UniRef50_I6U2K4 Transcriptional regulator 3.81352079595e-05 1.15905607187e-05 -10716399830.6 +UniRef50_A0A024JDH6 Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD dependent butanediol dehydrogenase 5.92366936443e-08 2.76717582201e-07 87799703.5011 +UniRef50_P23876 Ferric enterobactin transport system permease protein FepD 4.472983898e-05 2.34787763293e-05 -8579314771.95 +UniRef50_L0Q6W3 9.70357819977e-09 1.22930762834e-06 492369121.266 +UniRef50_C5N3X1 3.30275162702e-05 1.70330479738e-05 -6457163125.45 +UniRef50_UPI0001F85E2B multiple sugar binding transporter like protein 1.44149256948e-07 2.57700423232e-07 45841999.2584 +UniRef50_UPI0003090106 cyclase 9.95716216258e-08 2.88604169593e-06 1124932162.83 +UniRef50_W6C5N4 Polyketide synthase domain protein 4.76123327522e-07 2.5197336371e-06 825030559.896 +UniRef50_P33770 Coproporphyrinogen III oxidase, anaerobic 1 0.000108854704053 3.27250201761e-05 -30734487597.4 +UniRef50_E4L4M2 SNF2 family protein 5.28156953586e-06 1.64396283177e-06 -1468546464.9 +UniRef50_C3I167 Collagen adhesion protein 3.59742425399e-07 1.07845418814e-06 290152758.204 +UniRef50_UPI00037939BE hypothetical protein 7.95098310251e-08 6.13312270941e-08 -7338925.4835 +UniRef50_UPI0003020997 hypothetical protein 3.15777251882e-07 8.01736272467e-07 196187619.998 +UniRef50_Q8ER36 Orotidine 5 phosphate decarboxylase 9.60224096871e-08 1.63491526927e-07 27238110.5689 +UniRef50_U1EEA4 8.39504551366e-06 9.87769640377e-07 -2990408167.54 +UniRef50_U5PCG2 ABC transporter ATP binding protein 5.52725008652e-05 4.4889882581e-05 -4191590410.39 +UniRef50_T1XT07 BioX, putative 0.000131425871141 6.06815147654e-06 -50608449740.6 +UniRef50_UPI00034AA460 hypothetical protein 1.14739585902e-06 5.59794423611e-08 -440618200.591 +UniRef50_K1E310 FAD dependent oxidoreductase 3.05825273444e-07 3.14466609142e-07 3488613.2624 +UniRef50_D2JAL6 8.22902625585e-05 2.79886365124e-05 -21922232790.7 +UniRef50_UPI0004721ABE 2 hydroxy acid oxidase 8.53819721138e-08 1.27129561562e-07 16854014.1608 +UniRef50_K0HFL9 MFS superfamily metabolite transporter 1.05639735687e-06 5.83376253161e-05 23125134646.8 +UniRef50_P48728 Aminomethyltransferase, mitochondrial 5.32506301152e-08 6.92545911867e-08 6460995.47525 +UniRef50_UPI0004779493 multidrug ABC transporter substrate binding protein 8.17822032878e-08 7.24349100422e-07 259412141.556 +UniRef50_A7FC02 0.000141068245209 2.42436319857e-05 -47163529957.3 +UniRef50_Q92ID9 NADH quinone oxidoreductase subunit E 3.00906119878e-06 9.8706789506e-07 -816303509.36 +UniRef50_Q7U8U2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 9.10692511038e-08 2.11419670339e-05 8498505758.48 +UniRef50_A4WSV4 Integral membrane sensor hybrid histidine kinase 6.66595996722e-06 5.10168072101e-06 -631518727.56 +UniRef50_Q3J222 Prohead peptidase 0.00041744510576 7.0430691237e-05 -1.40093977489e+11 +UniRef50_A6LU68 1.95551255929e-06 1.21666916275e-05 4122378295.09 +UniRef50_P0ACU0 7.62063535662e-06 5.27351259279e-06 -947562262.193 +UniRef50_J4PCY6 5.85446639824e-08 1.79255691649e-07 48732523.1601 +UniRef50_J9NX48 8.87022816825e-07 1.23942982866e-06 142271035.198 +UniRef50_Q7UKG6 Phosphopantetheine adenylyltransferase 2.48556342499e-07 1.80010471357e-07 -27672809.3325 +UniRef50_Q6AL57 Transcription elongation factor GreA 0.000424748192723 1.13664421205e-05 -1.66887285483e+11 +UniRef50_Q47VJ8 Ribosomal RNA small subunit methyltransferase A 3.77904592018e-05 1.49791803645e-05 -9209193192.49 +UniRef50_W4HH92 Flagellar protein FlgJ 4.50157599244e-07 1.97277047827e-07 -102090981.8 +UniRef50_Q9X1K5 Diaminopimelate decarboxylase 1.08975216127e-07 9.08471114237e-07 322766304.985 +UniRef50_A6L467 8.21812747825e-07 3.94472516381e-05 15593563667.5 +UniRef50_UPI00047E3BE8 antibiotic ABC transporter ATP binding protein 2.9623144854e-07 1.78654303749e-07 -47467336.1859 +UniRef50_UPI00036A881E hypothetical protein 8.0357552537e-07 6.67203906117e-07 -55054896.1604 +UniRef50_UPI000403EBB4 hypothetical protein 9.70183621895e-08 8.53820200852e-08 -4697734.10148 +UniRef50_Q9BPL7 Enolase 2 8.38809970367e-08 4.30740755944e-07 140031541.119 +UniRef50_Q9RUW7 1.70038733717e-06 0.000289186642674 1.16061729133e+11 +UniRef50_A8LSK1 Methionine synthase 0.00012184668792 1.38735665121e-05 -43590074091.6 +UniRef50_UPI0003809DD9 hypothetical protein 2.10612319231e-07 5.44494481158e-07 134792325.965 +UniRef50_S9Q9U8 8.34591893387e-06 9.25449644757e-07 -2995734511.41 +UniRef50_B0JXU3 Tryptophan synthase alpha chain 6.49564389585e-08 3.70669364265e-07 123420059.466 +UniRef50_E3D2G5 Histone deacetylase family protein 2.22917906442e-06 2.58032085162e-05 9517124975.56 +UniRef50_UPI0003B5E34E hypothetical protein 2.99272533724e-07 3.46818292249e-07 19194806.1686 +UniRef50_R4K9U0 DNA binding domain containing protein, AraC type 2.71087517886e-06 2.38800287816e-05 8546247084.14 +UniRef50_A1B0L9 DSBA oxidoreductase 1.99578442658e-05 3.01343576728e-06 -6840665642.12 +UniRef50_F4M1U9 3.01041584131e-05 3.5723794984e-06 -10711204729.4 +UniRef50_D9XYR1 3.9875280513e-06 6.35089688595e-06 954121000.345 +UniRef50_A1TVS9 DNA directed RNA polymerase subunit beta 1.26277227183e-06 2.93098533946e-05 11322950825.7 +UniRef50_UPI00036C2011 hypothetical protein 7.47838627615e-08 2.54514868394e-07 72559612.5215 +UniRef50_V4ZLE5 1.74412130954e-07 9.66926280407e-08 -31376317.0516 +UniRef50_UPI00046E5BCC hypothetical protein 6.55102502005e-07 6.36638103887e-07 -7454304.10388 +UniRef50_H8H091 Protein tyrosine kinase 4.4538609018e-06 0.000545585207055 2.1846136487e+11 +UniRef50_Q9RRQ3 Methionyl tRNA formyltransferase 2.09326796037e-06 5.70343623668e-05 22180394014.9 +UniRef50_UPI00040B88AD UDP N acetylglucosamine 2 epimerase 4.05347440743e-08 4.90554424733e-07 181678467.445 +UniRef50_UPI00047E5ED7 methionyl tRNA synthetase 2.10297402489e-08 8.66949829182e-08 26509864.2687 +UniRef50_UPI00029B3D72 methionine ABC transporter ATP binding protein 9.19939068838e-08 1.86256509507e-07 38054969.4112 +UniRef50_I3TSH3 1.88531238391e-06 4.68510926259e-07 -571980134.562 +UniRef50_UPI0003659DC3 hypothetical protein 3.50531002865e-06 5.15543361463e-07 -1207005492.11 +UniRef50_A9NFF0 3 oxoacyl [acyl carrier protein] synthase 3 1.21767321402e-06 1.92632414655e-07 -413821549.367 +UniRef50_UPI00039AD4F5 hypothetical protein 3.32441010353e-06 1.89713694348e-06 -576207689.323 +UniRef50_D8LEP5 1.22216611348e-06 7.77078933929e-07 -179687156.219 +UniRef50_UPI000371B6BB hypothetical protein 5.29112489966e-08 5.27032488013e-08 -83972.231292 +UniRef50_UPI0003730F41 hypothetical protein 1.40201020954e-08 8.85775344207e-08 30099750.3523 +UniRef50_D9W6W3 Pyruvate dehydrogenase E1 component, beta subunit 2.47599037503e-07 3.74788992773e-06 1413110385.79 +UniRef50_F2A904 1.41878477885e-05 1.53810783964e-06 -5106855247.14 +UniRef50_P66840 Putative 5 deoxyribonucleotidase 0.000177196171343 5.0474372536e-05 -51159145229.7 +UniRef50_UPI000419C490 hypothetical protein 3.46984835007e-07 4.27102615472e-06 1584183634.17 +UniRef50_T1XMS0 3.9938364311e-05 6.61569203381e-05 10584752806.0 +UniRef50_E3HMU2 NLPA lipoprotein family protein 2 5.56157572879e-07 7.69588947928e-07 86164865.2048 +UniRef50_F2MTP7 Permease protein 4.04792763964e-08 1.02796593386e-05 4133682639.98 +UniRef50_A5G7C7 Cyclic pyranopterin monophosphate synthase accessory protein 1.25844989131e-07 3.74793595656e-07 100503607.397 +UniRef50_P37660 Inner membrane transport protein YhjV 2.45190682832e-05 6.09342895392e-06 -7438656705.26 +UniRef50_M4R188 Alpha beta hydrolase 2.81006939596e-06 5.51155654442e-05 21116370615.3 +UniRef50_Q9ZDG4 Enoyl [acyl carrier protein] reductase [NADH] FabI 2.08916828417e-07 3.39680460079e-07 52790882.7522 +UniRef50_UPI000252B2C6 PREDICTED 2.09952197365e-07 6.40869817149e-07 173966731.061 +UniRef50_B4G025 1.46841261068e-06 5.45100947855e-07 -372752248.591 +UniRef50_N1MD27 4.47737094911e-07 3.99577778152e-06 1432387564.54 +UniRef50_UPI00037C0828 hypothetical protein 1.41609120888e-07 6.74575120229e-07 215164914.162 +UniRef50_A6LR24 Binding protein dependent transport systems inner membrane component 4.33451080824e-06 9.84986740368e-06 2226617138.62 +UniRef50_Q7VQF3 Chaperone protein ClpB 3.5705687169e-05 1.17565948613e-05 -9668542453.03 +UniRef50_A6LUL9 2.60935015331e-06 3.43546800525e-05 12815979239.3 +UniRef50_O34912 Histidine biosynthesis bifunctional protein HisIE 1.14887686762e-07 5.41589352388e-07 172264698.631 +UniRef50_A4WZN4 4.87722060015e-05 2.65094120383e-06 -18619720570.4 +UniRef50_UPI000455DB27 general APC amino acid permease 2.90463622911e-08 1.46374330329e-07 47366740.473 +UniRef50_UPI0002B43AC6 PREDICTED 8.60918848724e-07 4.5009761955e-07 -165853571.561 +UniRef50_B2GAM0 Enolase 0.000286501256718 0.000794844618692 2.05224453303e+11 +UniRef50_UPI00047EF87F adenine deaminase 3.35184571582e-07 6.53916915152e-08 -108918696.414 +UniRef50_P0AG16 Amidophosphoribosyltransferase 3.84859536076e-05 2.18887038083e-05 -6700513415.14 +UniRef50_UPI000329AF58 PREDICTED 1.19165666318e-07 7.93251833153e-08 -16084091.8859 +UniRef50_W5XCC8 Translation initiation factor IF 2 6.21549227664e-08 1.72147081658e-07 44405184.3003 +UniRef50_B5GE97 6.21881242257e-07 1.21763004674e-06 240511103.03 +UniRef50_P14575 Cytochrome c oxidase subunit 3 6.55914734379e-07 1.14461067609e-07 -218591489.659 +UniRef50_E8S6A2 Cobyrinic acid ac diamide synthase 4.4303808345e-08 2.06567297751e-07 65507761.8701 +UniRef50_P25798 Flagellar M ring protein 3.4134737437e-05 1.86829663424e-05 -6238069605.44 +UniRef50_A5UP72 Predicted ATPase, AAA+ superfamily 9.00112584029e-05 2.25262405115e-05 -27244529857.1 +UniRef50_Q71YD4 30S ribosomal protein S14 3.52790643786e-06 0.0001197465751 46918902702.3 +UniRef50_J9RWY1 1.93533091896e-07 1.8284568998e-07 -4314635.30266 +UniRef50_P0AFU1 Inner membrane ABC transporter permease protein YejB 0.000112458799449 2.82785097814e-05 -33984615947.1 +UniRef50_UPI00037FB943 hypothetical protein 1.62361831908e-07 6.18902403542e-08 -40561614.4354 +UniRef50_Q0VSU8 Pyridoxine pyridoxamine 5 phosphate oxidase 1.02203536949e-07 1.5077204566e-07 19607702.9693 +UniRef50_Q9ZM43 1.24582834604e-06 7.77195086413e-05 30873363172.8 +UniRef50_H6SQR1 1.9269091371e-07 1.97619685755e-06 720023235.607 +UniRef50_F3YB73 ABC transporter, substrate binding protein 3.02290428433e-07 2.33459958245e-07 -27787705.4597 +UniRef50_I0C1S7 Cystathionine beta lyase 0.000296191243874 7.21835302993e-05 -90434662854.0 +UniRef50_R4LHW2 2.87512876844e-07 3.82881563503e-06 1429667380.15 +UniRef50_B3DWK0 Potassium transporting ATPase A chain 3.60600399222e-08 1.23864952253e-05 4986022241.23 +UniRef50_O34849 Glutamate synthase large subunit like protein YerD 0.000227681889695 3.62687116443e-05 -77275848883.0 +UniRef50_UPI0002557A0F siderophore interacting protein 6.59130498712e-08 7.2864450845e-06 2915017388.27 +UniRef50_Q8E6D9 3.10262456591e-06 7.98153257284e-06 1969675033.33 +UniRef50_O68826 9.31733320452e-06 2.08950498955e-06 -2917962945.81 +UniRef50_U3TU21 6.38643809769e-07 8.63676481117e-07 90848450.8846 +UniRef50_G7L9I0 Acyl coa ligase acetate coa synthetase like protein 3.9860053148e-07 8.94260459322e-07 200103995.301 +UniRef50_A5UN41 Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC 6.41577670655e-05 2.04607416996e-06 -25075252618.1 +UniRef50_Q2RWR8 Light independent protochlorophyllide reductase subunit N 2.79925995383e-05 2.47765632391e-06 -10300695679.2 +UniRef50_A0A038C8Y6 Cytochrome C 3.7308813651e-06 1.00241184142e-06 -1101516628.8 +UniRef50_E3PS54 Chemotaxis protein cheV 2.60684454239e-06 3.94193599824e-06 538992804.141 +UniRef50_E2PUY3 3.94650836142e-06 4.93294214213e-06 398235422.176 +UniRef50_Q4UTY2 1.87975087287e-07 1.39275840481e-05 5546848741.44 +UniRef50_P59342 Signal transduction histidine protein kinase BarA 2.55674962222e-05 1.11423204895e-05 -5823620460.1 +UniRef50_F4QP68 Con 3.51724753556e-06 2.44870308802e-06 -431384505.987 +UniRef50_Q8CTA4 Probable cysteine desulfurase 0.000116012133078 3.34362107704e-05 -33336913156.1 +UniRef50_P0AEZ0 Multidrug transporter MdfA 3.38887515633e-05 2.02966807698e-06 -12861902958.3 +UniRef50_UPI000472B3B4 citrate synthase 2.52264029814e-07 2.88395252757e-07 14586618.0821 +UniRef50_H1QU98 3.32211935216e-07 4.05030751855e-07 29397849.8645 +UniRef50_A6U5R2 CDP alcohol phosphatidyltransferase 5.59283866341e-05 2.84050331352e-05 -11111515557.0 +UniRef50_UPI00037E82AA hypothetical protein 4.07924383952e-08 9.35558676313e-07 361228110.264 +UniRef50_UPI000469723A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.63540976938e-07 4.70010769993e-08 -87419814.8488 +UniRef50_S2KTE6 5.79290312825e-07 4.80815273452e-07 -39755581.8195 +UniRef50_Q89XM4 Probable malate 4.51833002291e-08 1.23823168975e-07 31747880.0324 +UniRef50_X1HXX0 Marine sediment metagenome DNA, contig 8.3250523713e-08 1.85283957945e-07 41192149.4905 +UniRef50_P31435 Inner membrane symporter YicJ 2.31572115467e-05 1.28959259902e-06 -8828226115.05 +UniRef50_UPI000262EE20 dihydrodipicolinate synthase 2.95215906576e-06 1.84269865245e-07 -1117430836.07 +UniRef50_G9ZDP3 1.38369049228e-06 9.66936400493e-06 3345028073.7 +UniRef50_P39838 Phosphotransferase RcsD 2.60629142624e-05 8.94692820875e-06 -6909933606.65 +UniRef50_A6QGC0 Serine threonine protein kinase PrkC 0.000200006900278 6.28270961267e-05 -55381170321.3 +UniRef50_Q1D6P1 Adenylyl sulfate kinase 9.70175687895e-08 2.83770433577e-06 1106448879.84 +UniRef50_I4W1C3 1.13760467093e-07 2.25652833288e-07 45172321.3067 +UniRef50_UPI0002485EB3 hypothetical protein 1.60740062749e-07 2.07056127816e-07 18698363.8296 +UniRef50_I0HUK7 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 7.62172273348e-07 6.69296159532e-07 -37495226.8656 +UniRef50_UPI0003958A44 PREDICTED 8.82774132372e-09 1.62064737223e-08 2978884.81654 +UniRef50_UPI00036FE39E hypothetical protein, partial 4.83316287144e-06 2.43759331503e-06 -967120826.867 +UniRef50_A3PQ32 2.79762514892e-05 2.59809418055e-06 -10245473530.5 +UniRef50_R9ZF14 Amino acid permease 2.83099100471e-06 2.75675246015e-06 -29971011.4483 +UniRef50_A3PQ31 2.29846696065e-05 1.72586821474e-06 -8582438996.7 +UniRef50_Q6GHV7 Iron regulated surface determinant protein B 7.35749900875e-05 1.50770996298e-05 -23616316227.6 +UniRef50_UPI0003C39CE6 PREDICTED 8.80318725684e-08 1.21115870208e-06 453420083.389 +UniRef50_UPI000332F601 PREDICTED 5.89394213897e-08 1.07491112001e-07 19600913.296 +UniRef50_Q6A8F8 Prephenate dehydrogenase 3.14285284399e-06 4.57819241861e-05 17213916341.1 +UniRef50_A7GYD5 Queuine tRNA ribosyltransferase 1.57504585052e-06 3.38067109926e-05 13012318744.9 +UniRef50_UPI00021A56D6 PREDICTED 8.01070467196e-07 5.63002897271e-08 -300672860.002 +UniRef50_K9ZXB7 CBS domain containing protein 3.28465724026e-06 0.000539731037927 2.16569986821e+11 +UniRef50_H7D9R4 2.71412411866e-07 2.76477902219e-07 2045000.61606 +UniRef50_A4G4T2 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 8.41005303552e-08 2.34400621804e-07 60677991.3075 +UniRef50_Q1ITV2 Uroporphyrinogen decarboxylase 8.42151379326e-08 3.02433779968e-07 88097543.6334 +UniRef50_R7B6C4 1.69834659412e-07 4.51752463745e-05 18169236987.9 +UniRef50_Q5GRY9 Bifunctional DNA directed RNA polymerase subunit beta beta 1.79792369786e-08 9.76987833366e-09 -3314218.82512 +UniRef50_Q73CC8 4.3774950384e-07 2.87402917485e-06 983555999.7 +UniRef50_W2BNM9 3.51477028217e-06 1.80254347023e-06 -691246975.366 +UniRef50_L7VQV4 Chemotaxis signal transduction protein 1.88742994426e-05 7.98153257284e-06 -4397543654.62 +UniRef50_Q5HR61 Lipoprotein, putative 3.52892021664e-05 5.15087276506e-06 -12167213418.2 +UniRef50_Q8CNG1 Alkaline shock protein 23 9.39906504637e-05 4.67786345862e-05 -19060070166.3 +UniRef50_A0A009JWB2 NMT1 like family protein 2.19214033654e-06 4.5170019846e-05 17350697355.9 +UniRef50_UPI0004646F16 MULTISPECIES 5.32047382301e-07 4.96484554156e-08 -194750366.484 +UniRef50_Q10663 Bifunctional glyoxylate cycle protein 1.61892842561e-07 7.23137931487e-07 226581529.651 +UniRef50_UPI000479F146 membrane protein 1.26899833684e-06 2.54220062823e-07 -409678441.952 +UniRef50_UPI00047D9998 hypothetical protein 4.28445629851e-08 1.64898361668e-07 49274616.2969 +UniRef50_UPI000463D3E1 hypothetical protein, partial 2.8511064625e-06 4.70778567852e-07 -960967580.978 +UniRef50_D7A1G5 CoA binding domain protein 0.000119510548909 3.73121547901e-05 -33184500393.5 +UniRef50_B8D8U8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 4.84864750408e-07 1.40563332668e-07 -138998707.395 +UniRef50_A6LSU4 NLP P60 protein 7.97843429186e-06 1.46881804754e-05 2708806872.14 +UniRef50_D3VF61 1.25076155752e-06 1.72894053548e-05 6474997317.26 +UniRef50_UPI000225EED0 hypothetical protein 5.24182851017e-06 5.77344291136e-07 -1883109518.88 +UniRef50_Q0VLR3 2 isopropylmalate synthase 3.30115460854e-08 1.02117725323e-07 27899012.5864 +UniRef50_D3E453 2.81006939596e-06 4.48582337002e-06 676522443.142 +UniRef50_A6LZX3 Integral membrane sensor signal transduction histidine kinase 4.86333402586e-06 3.11497818071e-06 -705832709.426 +UniRef50_P75955 Inner membrane protein YcfT 2.41182691576e-05 2.62680601437e-05 867897001.991 +UniRef50_Q47MV7 Glutamate 5 kinase 3.29849662778e-08 2.36970014462e-07 82351267.1299 +UniRef50_S6AZQ2 5.0005205796e-06 3.52266447552e-06 -596628644.551 +UniRef50_UPI000462853E hypothetical protein, partial 1.12162495156e-06 3.67120772478e-06 1029297852.45 +UniRef50_M4U374 5.57805457311e-07 3.0362871688e-07 -102614269.211 +UniRef50_A0A016RSJ2 1.19382925661e-07 4.65045140085e-08 -29421909.1028 +UniRef50_C4LD11 Lipoprotein signal peptidase 1.52633460013e-07 4.59392997355e-07 123842589.588 +UniRef50_UPI00034B23A9 short chain dehydrogenase 1.00200318349e-07 3.88574995336e-07 116420395.855 +UniRef50_Q5FKL1 ABC transporter permease protein 5.47395882956e-05 4.59091603716e-05 -3564952114.45 +UniRef50_N9UUM3 1.06368692312e-06 3.63701127046e-07 -282592855.667 +UniRef50_UPI0003B52215 DNA binding protein 4.42376714408e-08 1.68870941609e-07 50315980.589 +UniRef50_UPI00035FA7D7 hypothetical protein, partial 6.47238695935e-06 1.37016865797e-06 -2059828139.53 +UniRef50_Q62EE6 2.08058327649e-06 1.33244660059e-06 -302031956.73 +UniRef50_A3U2E2 Conserved hypothetical membrane transport protein 2.41536815043e-07 5.09473578659e-08 -76943302.658 +UniRef50_W4YD04 4.03457436118e-07 3.43988386493e-08 -148993484.657 +UniRef50_P24058 Argininosuccinate lyase 1.08917128847e-07 1.51956498948e-07 17375521.8622 +UniRef50_M1LMT5 2.00183947922e-06 6.09794605777e-06 1653648490.64 +UniRef50_A6M2W5 PTS system, glucose subfamily, IIA subunit 3.42317683734e-06 1.47436408563e-05 4570210242.19 +UniRef50_Q48KY0 ABC transporter, periplasmic substrate binding protein 7.33202216425e-06 1.07055885817e-05 1361950161.04 +UniRef50_E3NWX2 1.35906150107e-07 2.00419922195e-07 26045001.4649 +UniRef50_L7WTB5 0.000126853930021 4.09309231191e-05 -34688172280.2 +UniRef50_UPI0003F8C100 hypothetical protein 2.50796875593e-07 8.60872697421e-07 246295095.744 +UniRef50_V1V9W3 CRISPR associated helicase Cas3 4.60609109534e-07 1.8084069521e-07 -112945942.007 +UniRef50_V9T452 Metabolite transporter 4.53319643236e-06 6.91796571308e-06 962760623.037 +UniRef50_UPI000365F8BA hypothetical protein 3.65426245409e-07 2.21009095989e-07 -58302975.4186 +UniRef50_UPI0003752AFD hypothetical protein 4.11786268328e-08 3.70246650888e-08 -1677005.3309 +UniRef50_UPI00037D7BC7 hypothetical protein 8.26747672476e-08 1.01294357838e-07 7516957.20942 +UniRef50_R7PV18 2.54528818971e-05 1.53425705328e-05 -4081656765.24 +UniRef50_B2I366 AraC type DNA binding domain containing protein 1.74224302552e-06 3.5624932681e-05 13678857601.3 +UniRef50_D9UQS5 Predicted protein 1.53704938436e-06 2.88204546397e-05 11014645506.6 +UniRef50_A0A013KTF4 RND transporter, hydrophobe amphiphile efflux 1 family protein 1.90155436503e-06 4.24562984796e-05 16372447861.7 +UniRef50_Q8CNB4 Suppressor protein suhB 0.000205363734508 3.87997249331e-05 -67243934635.7 +UniRef50_W1JGD0 Chromosome partitioning protein ParA 3.67464134888e-07 5.19238706528e-07 61273257.0545 +UniRef50_A9W1N1 NADH quinone oxidoreductase subunit C 2.29895916313e-07 1.9370559757e-07 -14610475.7817 +UniRef50_G2KMP2 7.48751664942e-07 1.14823989632e-07 -255924381.69 +UniRef50_B4RBF0 2.81039508838e-07 1.18978572786e-07 -65425988.5955 +UniRef50_U7I221 1.00178593389e-07 2.3545333027e-06 910110660.192 +UniRef50_F7YAM4 40 residue YVTN family beta propeller repeat protein 8.35260083823e-08 1.37899573565e-07 21951275.5029 +UniRef50_F3U494 2.11103411265e-05 4.19881571359e-06 -6827390336.94 +UniRef50_A1WXI4 PUCC protein 6.21373522621e-07 1.37220155077e-07 -195458655.707 +UniRef50_W7Q5R4 1.07365377118e-06 5.74125272899e-07 -201665784.66 +UniRef50_Q6A6L3 4.22202443506e-06 2.68888563384e-05 9150878192.67 +UniRef50_S6D6P3 WGR domain containing protein 1.27499681222e-07 3.15993610435e-07 76097312.3039 +UniRef50_U5UEG4 1.9194202823e-05 7.35228311697e-06 -4780728302.01 +UniRef50_J9P5M7 1.36814236102e-06 3.27126918155e-07 -420270708.983 +UniRef50_Q99UZ6 UPF0637 protein SA0957 0.000127713706438 1.34852561107e-05 -46115427137.7 +UniRef50_UPI000255A9F7 hypothetical protein 8.83748543371e-08 5.41006802445e-08 -13836904.6726 +UniRef50_UPI0003643826 hypothetical protein 1.58139427465e-06 1.89548075737e-06 126800567.349 +UniRef50_J2ESL9 4.93930104175e-07 2.75731505796e-06 913756280.702 +UniRef50_A1SQR8 MATE efflux family protein 8.47014185883e-07 2.5880742242e-05 10106423214.6 +UniRef50_UPI0003B7A75E 30S ribosomal protein S3 7.78606674529e-06 1.0117449914e-05 941207994.497 +UniRef50_Q49XH5 Anthranilate phosphoribosyltransferase 0.000135250915562 2.26916526297e-05 -45441555703.1 +UniRef50_L7VTP9 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 7.691484078e-06 3.19424384842e-05 9790407886.46 +UniRef50_UPI00016AD049 hypothetical protein 5.83768591014e-07 1.17344386165e-06 238059142.885 +UniRef50_UPI0003B3A739 LysR family transcriptional regulator 5.86357539184e-08 7.64784512391e-08 7203315.86288 +UniRef50_UPI000361DB5D hypothetical protein 3.48987221364e-07 5.29513615232e-07 72880720.5125 +UniRef50_N2K746 Carbon nitrogen hydrolase family protein 2.12394063714e-05 1.73001133681e-05 -1590340925.99 +UniRef50_K9ZW90 ABC type dipeptide transport system, periplasmic component 2.74144141253e-06 0.000451789999792 1.81286413463e+11 +UniRef50_Q9K4A0 Peptide deformylase 4 9.87069931391e-08 4.760157762e-07 152324185.821 +UniRef50_S6AT93 Cell envelope biogenesis, outer membrane 6.66171340015e-05 2.77307897506e-05 -15698894363.2 +UniRef50_Q1CUW5 UDP 3 O acylglucosamine N acyltransferase 1.9259489227e-06 2.65767275438e-05 9951821828.41 +UniRef50_G0DWZ2 RNA polymerase sigma factor 4.71006785139e-06 4.30168989131e-05 15464937777.3 +UniRef50_UPI000262CE6F hypothetical protein 6.87885144361e-08 2.59154683061e-07 76853158.3295 +UniRef50_UPI0003B63E94 ABC transporter ATP binding protein, partial 5.52649090923e-08 1.49318050023e-07 37970407.1556 +UniRef50_H7CIC3 Transposase 1.98455668339e-07 8.81542403566e-06 3478775871.98 +UniRef50_G5N518 Fatty acid oxidation complex subunit alpha 3.18128658783e-06 1.63766609902e-06 -623178533.686 +UniRef50_Q81E30 Isoleucine tRNA ligase 2 1.01306427643e-07 1.0777983624e-05 4310305601.75 +UniRef50_A0M554 Bifunctional protein FolD 5.50032623799e-08 3.48817449062e-05 14059982973.8 +UniRef50_Q9HY42 6.54521766087e-06 2.46782762008e-06 -1646092394.67 +UniRef50_UPI00046FBD60 zinc ABC transporter permease 8.90258036447e-07 7.00717408614e-07 -76519877.3812 +UniRef50_UPI000454835D PREDICTED 1.15709365715e-06 1.3398452951e-06 73779078.8552 +UniRef50_D4HAD9 Transcriptional regulator, GntR family 2.01147063333e-06 8.25319342539e-05 32507099260.8 +UniRef50_K8BR71 1.52221549152e-07 1.52729341708e-06 555133387.113 +UniRef50_F0IYA9 Fis family transcriptional regulator 7.50339080106e-06 1.00107357691e-06 -2625065255.79 +UniRef50_UPI00035D0C93 hypothetical protein 3.4565128931e-08 6.98399980968e-06 2805572059.77 +UniRef50_UPI0002555FCE imidazole glycerol phosphate dehydratase histidinol phosphatase, partial 3.03751079853e-07 1.07909440812e-07 -79063672.928 +UniRef50_A8LPP5 Fasciclin domain protein 1.36141074323e-06 2.32521827794e-07 -455746308.188 +UniRef50_H0HUE0 9.3042639515e-07 1.18906037747e-06 104413712.458 +UniRef50_Q3JW66 6.12099358892e-07 1.75555559619e-06 461627314.784 +UniRef50_X9N9G2 2.41080840469e-07 2.4213514173e-07 425634.356797 +UniRef50_R4ZLZ8 CRISPR associated protein, Csd1 family 4.07796947547e-05 3.58852439641e-05 -1975949845.83 +UniRef50_T2G5V0 Alcohol dehydrogenase 1.79821987898e-05 1.1505845657e-05 -2614583233.5 +UniRef50_R4K4U3 Acetyltransferase 2.14075229968e-06 4.1299634809e-05 15808921402.5 +UniRef50_R5SMM9 Ribose 5 phosphate isomerase B 2.92624797564e-06 2.69832289913e-05 9712098448.39 +UniRef50_P07767 Staphylocoagulase 8.91101614873e-06 2.79670721547e-06 -2468421547.37 +UniRef50_I2DEZ6 3.09414744966e-06 0.00010244307799 40108382407.6 +UniRef50_Q08YM3 8.06019904975e-07 1.41484359108e-06 245789593.187 +UniRef50_P23686 S adenosylmethionine synthase 1 2.68634781478e-07 1.43100081182e-06 469261430.283 +UniRef50_Q2FUW5 Accessory Sec system protein Asp3 0.000180184349975 1.18715602158e-05 -67949938655.9 +UniRef50_R9SJT9 GTP binding protein 3.8798835156e-05 2.62503737955e-06 -14603806064.8 +UniRef50_D4HAU1 Protoporphyrinogen oxidase 1.20859975083e-06 5.81960564746e-05 23006535594.1 +UniRef50_UPI00045FEC12 BACTERIOPHYTOCHROME 9.19910082896e-07 1.36254213057e-06 178695989.352 +UniRef50_L7U2C9 Acetyltransferase 7.9031779135e-06 6.29367813348e-05 22217741039.4 +UniRef50_E2ZQ75 Transcriptional regulator MvfR 4.71070856723e-06 3.1754484429e-06 -619803351.952 +UniRef50_F6CTL5 6.8079414737e-07 4.38958042668e-07 -97632203.1309 +UniRef50_UPI00037028AC hypothetical protein 1.41825565881e-08 2.05269676918e-08 2561316.61724 +UniRef50_A3IGB3 1.06128809742e-06 1.30786162504e-06 99544758.8976 +UniRef50_W0BIN9 Type F conjugative transfer system protein TraU 7.72731483335e-07 6.17944928903e-08 -287013987.221 +UniRef50_I3U834 Class I fumarate hydratase 0.000124444202278 2.53967620413e-05 -39986667072.3 +UniRef50_B0T5G6 7.13552987952e-07 2.18760238842e-07 -199753904.606 +UniRef50_A3RI32 InlD 8.96351454047e-08 1.86182077585e-05 7480212135.06 +UniRef50_C8VZF1 1.65648127513e-06 1.10664458971e-05 3798918191.14 +UniRef50_S6GJT1 Transposase IS4 family protein 8.00135581017e-07 2.26016569499e-07 -231778890.182 +UniRef50_A1VL02 3.79569549192e-08 1.37483009212e-07 40179889.44 +UniRef50_A3PSC3 Exopolysaccharide synthesis, ExoD 0.000179426048629 3.07088428274e-06 -71196743967.7 +UniRef50_R9YTG8 2 dehydropantoate 2 reductase 0.000120323072358 2.5850160321e-05 -38139873902.3 +UniRef50_A0A017HHJ1 GTA NlpC P60 family peptidase 2.17264650816e-08 1.60954727843e-07 56208158.1995 +UniRef50_P0CN05 Sulfate adenylyltransferase 8.66673763086e-07 4.8258784417e-07 -155060198.731 +UniRef50_H3XP79 Polysaccharide lyase family 8, N terminal alpha helical domain protein 1.48021225853e-05 1.47904860699e-06 -5378688457.54 +UniRef50_UPI000364E3EA hypothetical protein 3.13583077314e-08 5.34240374384e-07 203019661.365 +UniRef50_A4WQ10 9.57533188303e-05 4.82204096459e-05 -19189618732.1 +UniRef50_J9CA10 Heat shock protein 70 9.34312941969e-07 2.73159324097e-07 -266915828.802 +UniRef50_UPI000360AA50 hypothetical protein 4.2500984386e-06 1.29809540745e-06 -1191759848.83 +UniRef50_UPI00036E022C hypothetical protein 4.40548697361e-08 1.61974918006e-07 47605770.5283 +UniRef50_F0MD69 DNA polymerase III, subunits gamma and tau 6.85507243663e-07 2.00319236008e-05 7810385690.59 +UniRef50_B1MWT1 ABC type dipeptide oligopeptide nickel transport system, permease component 4.98890056194e-05 1.76785652579e-05 -13003750040.5 +UniRef50_A3PM79 Serine type D Ala D Ala carboxypeptidase 2.43249388246e-05 1.26905425843e-05 -4696948532.31 +UniRef50_UPI00045E67CF glycine cleavage system protein T 2.88806059134e-07 7.08638166951e-07 169491373.845 +UniRef50_P77395 2.75595423458e-05 6.74553615773e-06 -8402869714.71 +UniRef50_P77396 5.18909163125e-05 2.09692335056e-06 -20102445999.7 +UniRef50_Q9AAI4 Nitrate transporter, NarK NasA family 1.87961899644e-06 1.49653735742e-06 -154654758.613 +UniRef50_P77393 3.03542744177e-05 4.54333392607e-06 -10420193412.3 +UniRef50_UPI0003B386AE riboflavin biosynthesis protein RibD 3.95619473929e-08 2.17629826385e-07 71888187.8877 +UniRef50_UPI00046F45E9 acetolactate synthase, partial 1.26145973697e-07 1.29499774205e-07 1353970.42084 +UniRef50_E0RYK6 4.77064205795e-06 3.66095089089e-06 -447995941.584 +UniRef50_Q1D2V0 2.29270690754e-06 6.96554779793e-07 -644386200.962 +UniRef50_A6LYQ9 MgtE intracellular region 7.78783445918e-06 1.82375975708e-05 4218697601.17 +UniRef50_Q9ZJ66 Protein translocase subunit SecD 7.19477742357e-07 4.30349867376e-05 17083290251.1 +UniRef50_Q9RY56 1.2868840529e-05 0.000856974139648 3.40775667591e+11 +UniRef50_F0Y593 Expressed protein 6.79746678562e-07 2.03621740952e-06 547623879.856 +UniRef50_UPI00016C4E10 L lactate transport 6.40087889592e-08 2.37563049446e-07 70065984.7089 +UniRef50_F7XJ23 Probabable oxidoreductase 1.52973631894e-05 1.63610362995e-06 -5515218126.64 +UniRef50_A5UJA6 FO synthase subunit 2 4.3849179996e-05 6.69869052369e-06 -14998108487.7 +UniRef50_G7M8E1 Methyl accepting chemotaxis sensory transducer 3.15646709896e-06 1.0186938379e-05 2838287529.34 +UniRef50_A7HAH7 1.22974048291e-05 2.67046014032e-07 -4856803482.76 +UniRef50_UPI0003C10094 PREDICTED 1.48208300138e-06 2.72552474527e-06 501992690.754 +UniRef50_X0W6C2 Marine sediment metagenome DNA, contig 1.40198881287e-07 2.29401031479e-07 36012002.666 +UniRef50_F0L9R1 2.74742857058e-05 2.46782762008e-06 -10095413992.9 +UniRef50_Q3IVS2 DNA RNA helicase, superfamily I 0.000145698263695 5.61308000246e-05 -36159484200.1 +UniRef50_L0GGN0 Sortase like acyltransferase 2.89346571643e-05 2.18304703237e-05 -2868047405.73 +UniRef50_K0F249 1.29513709669e-05 4.10730566622e-06 -3570457690.77 +UniRef50_G7M575 Glycosyl transferase family 2 2.19044094112e-06 1.25029145194e-05 4163272131.84 +UniRef50_B5GAK8 1.05658346524e-06 5.86305601958e-08 -402885834.026 +UniRef50_P42630 L serine dehydratase TdcG 2.47132578896e-05 2.07823377355e-05 -1586960704.02 +UniRef50_B8CN82 Membrane protein, putative 2.1151823521e-06 4.75515729874e-05 18343228466.7 +UniRef50_UPI00037851B2 Cro Cl family transcriptional regulator 2.23169118924e-06 2.32010012462e-07 -807295829.914 +UniRef50_A0A009R342 SIR2 like domain protein 1.74934374443e-06 4.47790858427e-05 17371634919.4 +UniRef50_B9IYZ4 Holliday junction ATP dependent DNA helicase RuvB 2.26009559294e-07 1.69288290383e-07 -22899072.3076 +UniRef50_K0DBQ7 N acetylmuramidase 9.04519142585e-07 9.87614594499e-07 33546653.6335 +UniRef50_F0YLQ9 Expressed protein 7.70467574157e-07 1.17269817374e-06 162385428.976 +UniRef50_R6W776 4.1083078976e-08 1.4152027308e-07 40547727.7628 +UniRef50_Q9Z507 UvrABC system protein A 2.40516396843e-05 3.50956576135e-05 4458605563.36 +UniRef50_Q6Q6S9 Transposase 3.28366531921e-05 1.12814533443e-05 -8702098690.6 +UniRef50_A3PMA4 3.01625501939e-05 5.75142650046e-06 -9855070193.2 +UniRef50_UPI00047EB0D1 hypothetical protein 1.53697446174e-07 2.11723949313e-07 23426011.3825 +UniRef50_UPI00046FEBC7 hypothetical protein, partial 2.11218215929e-06 3.13933268058e-07 -725975144.385 +UniRef50_A0CK68 Chromosome undetermined scaffold_2, whole genome shotgun sequence 5.06454839465e-08 4.77845779698e-08 -1154982.85006 +UniRef50_P0ABG8 Rod shape determining protein RodA 2.04996373829e-05 3.90389599975e-06 -6699904449.05 +UniRef50_P45302 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.67241204059e-07 1.05627474753e-06 358913751.168 +UniRef50_E8ZM45 Glycosyl transferase 2.1502495634e-06 6.51366546483e-06 1761564544.54 +UniRef50_A7FBG3 2.20752040266e-06 5.18396144049e-05 20037085403.0 +UniRef50_UPI00036C2B1F hypothetical protein 1.89413571635e-07 7.995280597e-08 -44190654.3336 +UniRef50_A5CER5 UDP N acetylglucosamine 1 carboxyvinyltransferase 4.26516018867e-08 2.81389213817e-07 96381303.5761 +UniRef50_A7FBG6 2.83824051773e-06 0.000165990338495 65866504054.7 +UniRef50_W5X953 7.5461739983e-08 2.20288306643e-07 58468262.1825 +UniRef50_P64591 Inner membrane protein YhaH 3.09414744966e-06 5.09166733097e-06 806423288.41 +UniRef50_UPI000362EFC5 hypothetical protein 4.5758375803e-06 1.29576420532e-06 -1324205872.51 +UniRef50_P65337 4 alpha glucanotransferase 4.64388236668e-06 3.2671639809e-05 11315149618.7 +UniRef50_P57495 2 C methyl D erythritol 4 phosphate cytidylyltransferase 4.75384970703e-08 9.78780420531e-08 20322692.0452 +UniRef50_A3QD67 Putative phosphoenolpyruvate synthase regulatory protein 4.8070327858e-07 4.1351098822e-07 -27126352.1605 +UniRef50_UPI0003825FE8 hypothetical protein 5.67729384766e-08 1.31512163646e-07 30173142.3543 +UniRef50_UPI00042AFCA9 3 deoxy d arabino heptulosonate 7 phosphate synthase isoform 2 8.93999551072e-07 7.270313004e-08 -331567443.611 +UniRef50_B9QHN7 Fop carboxy terminal duplication domain protein 1.24604536009e-07 1.39347806097e-07 5952039.05479 +UniRef50_F2K6Q0 3.4883931899e-06 3.10219687605e-06 -155912191.063 +UniRef50_A5UJV7 Predicted ATPase 1.38651162624e-05 5.55154535075e-06 -3356290596.02 +UniRef50_UPI0004638AC0 pseudouridylate synthase 3.79522823976e-08 1.59041197854e-07 48885081.0977 +UniRef50_U3SSX9 1.09920758824e-05 1.31074944342e-05 854020428.466 +UniRef50_B6JNM2 1.45373294809e-06 1.43427378236e-05 5203449434.12 +UniRef50_UPI0003B66BEF hypothetical protein 2.80925328084e-08 7.10154014485e-08 17328488.7928 +UniRef50_UPI00016A3D53 hypothetical protein 2.05957893886e-07 1.1257307694e-06 371323596.727 +UniRef50_L7ZK34 4.21954090877e-08 4.65013189178e-08 1738348.63787 +UniRef50_UPI00016C4097 N acetylglucosamine 6 phosphate deacetylase 3.90915292231e-08 4.34025037695e-07 159439503.749 +UniRef50_W7WGN1 Conjugal transfer pilus assembly protein TraU 4.34282615706e-07 2.09811551215e-07 -90621723.3047 +UniRef50_X1K791 Marine sediment metagenome DNA, contig 6.95458895387e-07 4.07912186597e-07 -116086134.933 +UniRef50_F5M3F1 0.000140979278469 1.76340253976e-05 -49795992281.2 +UniRef50_Q28TC8 Poly hydroxyalkanoic acid synthase class I 0.000128254359661 2.5555499169e-05 -41460790237.4 +UniRef50_K4RP34 2.42331580952e-07 3.99913894867e-07 63617913.8799 +UniRef50_K0CEM4 1.78619122722e-07 2.99332135945e-07 48733324.7534 +UniRef50_G3JJ51 3.6464516813e-06 1.24316695035e-06 -970235537.505 +UniRef50_B0VMS2 Glucose 6 phosphate isomerase 1.40315632812e-06 5.41471397371e-05 21293393343.7 +UniRef50_M7N0E8 1.07805409696e-07 1.75789264417e-06 666160465.403 +UniRef50_A1AHM5 Protein CbrA 2.70850118131e-05 1.03644776956e-05 -6750284807.26 +UniRef50_U5US29 Sugar binding domain containing protein 0.000238283979351 4.30065906079e-05 -78835878158.6 +UniRef50_F9Y8V6 Sugar ABC transporter, permease protein 4.99629151528e-05 5.61743921953e-06 -17902812814.5 +UniRef50_K4SRD4 Dipeptide transport system permease protein DppB 1.29624045077e-05 5.7177546971e-06 -2924754030.39 +UniRef50_Q9CGD4 Spermidine putrescine import ATP binding protein PotA 0.000220717240045 0.000117986208112 -41473778242.9 +UniRef50_R7NLL0 DNA gyrase subunit A 6.70232166133e-06 1.73053561961e-05 4280575155.56 +UniRef50_UPI00047067CD glucosamine 6 phosphate deaminase, partial 8.22353266728e-08 3.18872935021e-07 95533506.3601 +UniRef50_V7CWH6 3.02727971801e-07 1.09113158883e-05 4282817123.9 +UniRef50_UPI0003B4DB15 cytidylate kinase, partial 3.79102273253e-08 2.15961074492e-07 71881311.9309 +UniRef50_UPI0003671825 hypothetical protein 2.71097325595e-08 1.19476356439e-07 37289539.5261 +UniRef50_B2TRK3 3.27307629567e-06 1.28035550184e-05 3847571212.49 +UniRef50_Q9PJJ6 Uracil phosphoribosyltransferase 4.28211371521e-07 8.4011087215e-07 166288882.979 +UniRef50_Q9KPM0 Purine nucleoside phosphorylase DeoD type 1 4.48666169995e-07 1.99162292457e-06 622910576.033 +UniRef50_Q9T074 Phosphoenolpyruvate carboxykinase [ATP] 2.27931273648e-07 1.00344595358e-06 313084792.924 +UniRef50_D7FYR4 4.48323268177e-08 2.03353743523e-07 63997041.2003 +UniRef50_N0AZY0 O succinylhomoserine sulfhydrylase 6.75324090328e-05 1.19881111659e-05 -22423914654.1 +UniRef50_U3SUT1 1.09731845795e-05 4.75040276462e-06 -2512213380.79 +UniRef50_Q5WLC5 DNA topology modulation protein 7.81215853437e-08 5.113833143e-07 174913076.699 +UniRef50_B8H4F1 30S ribosomal protein S5 4.50396837036e-06 3.02886435331e-05 10409589776.7 +UniRef50_G7MCN9 Multi copper polyphenol oxidoreductase, laccase 6.84347708219e-06 4.17265236202e-05 14082713950.5 +UniRef50_Q4L5J1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000219691222633 4.04841343878e-05 -72348100642.8 +UniRef50_H2A5L6 Methionine aminopeptidase 7.67421224142e-05 5.63499588463e-05 -8232566672.35 +UniRef50_B2J1L7 GTP cyclohydrolase 1 4.8682242234e-07 7.07227873637e-07 88980385.3676 +UniRef50_A3XAI3 YjeF family protein 1.40951311241e-06 1.42949085815e-06 8065261.10975 +UniRef50_B7H075 PAP2 superfamily protein 2.49990721098e-06 6.95879246941e-05 27084255920.5 +UniRef50_Q2FHE2 DNA mismatch repair protein MutL 9.52032784163e-05 2.16783625253e-05 -29682910797.4 +UniRef50_UPI000464DC75 single stranded DNA binding protein 3.14535636632e-07 1.98411718515e-07 -46880650.7446 +UniRef50_Q3JR54 TGS domain protein 1.0987338872e-06 5.89633641674e-07 -205530016.481 +UniRef50_UPI0003AE8A89 PREDICTED 3.2236419172e-07 5.22552828144e-07 80818609.1152 +UniRef50_Q0E488 Os02g0130900 protein 2.47839761942e-07 1.15159096259e-06 364855449.976 +UniRef50_A6QIU2 0.000133631829497 6.60254714741e-05 -27293516357.2 +UniRef50_Q81LI6 Histidine tRNA ligase 2 6.05683659156e-08 1.57923371754e-06 613103838.569 +UniRef50_W8S4A4 Protein YicC 1.36770285816e-06 3.06027673785e-06 683312845.448 +UniRef50_V5SV57 5.14559926055e-06 2.33302174728e-06 -1135472056.31 +UniRef50_Q8LJZ2 7.40195490323e-07 4.54619261406e-08 -280472465.2 +UniRef50_S9U807 Cysteine peptidase, Clan CA, family C2 3.81383318105e-07 1.13510584958e-06 304287035.172 +UniRef50_B9KLW3 Methyltransferase type 11 1.81193274649e-06 3.3432079833e-06 618194603.96 +UniRef50_Q8CR86 0.000130258184829 4.16449475046e-05 -35774251314.6 +UniRef50_Q99TF2 Acetate kinase 0.000110429406593 2.52228914876e-05 -34398915749.6 +UniRef50_C9X377 Transferrin binding protein like lipoprotein 2.35770934863e-06 3.32350705495e-05 12465569624.6 +UniRef50_I8D2T2 3.91736585175e-07 3.48437649235e-07 -17480311.7767 +UniRef50_H4F9I1 2.0409186668e-06 2.8441761388e-06 324284898.524 +UniRef50_D3QE86 0.000149390681443 3.80037664747e-05 -44968264443.7 +UniRef50_M0P490 8.47914995835e-08 3.91037367168e-07 123635214.803 +UniRef50_Q4L8R9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000371536610459 4.63115467488e-05 -1.3129734918e+11 +UniRef50_UPI00037720B7 hypothetical protein 4.27844974146e-08 5.11636622322e-08 3382771.66078 +UniRef50_R2QE79 6.07454758073e-07 2.14500213981e-07 -158640571.544 +UniRef50_Q3J608 2.41180997245e-05 1.13249892452e-05 -5164735689.61 +UniRef50_Q2FF48 Potassium transporting ATPase A chain 0.000121757605997 3.08036059727e-05 -36719245940.9 +UniRef50_G8VKL1 Aminopeptidase 2.28443951264e-06 5.01687071736e-05 19331466460.8 +UniRef50_T3IE94 Lantibiotic protection ABC transporter, ATP binding subunit 4.91760168657e-05 4.59536472765e-05 -1300910146.08 +UniRef50_UPI0003C1083C 1.15636922085e-07 7.81096278804e-07 268654108.412 +UniRef50_UPI0004777ACC cytochrome C oxidase assembly protein 1.24873401575e-07 3.43151508444e-07 88121550.3166 +UniRef50_R5XYA5 1.88780176796e-07 4.22464464533e-06 1629328011.57 +UniRef50_D9SWT5 Peptidase S8 and S53 subtilisin kexin sedolisin 7.84146366399e-06 2.8236090099e-05 8233560962.02 +UniRef50_UPI00028A379D elongation factor Ts 1.02046940209e-07 7.60011162895e-07 265628230.827 +UniRef50_J9FJB0 Saccharopine dehydrogenase 2.31153987785e-06 3.06225818797e-05 11429515071.7 +UniRef50_U3K301 1.32199103878e-07 1.25374028727e-07 -2755366.59155 +UniRef50_I4EDU8 1.56642173136e-06 8.08576556341e-07 -305951396.961 +UniRef50_UPI0003B69687 TetR family transcriptional regulator 2.09714438257e-06 1.16432028074e-07 -799637883.586 +UniRef50_D0W128 2.25521382485e-07 2.39127205183e-06 874340121.962 +UniRef50_UPI0001A43259 putative phosphotransferase 6.89634486948e-07 1.92792871721e-06 499914576.335 +UniRef50_I6GVM8 Sulfite reductase [NADPH] flavoprotein, alpha component 2.1950314548e-05 1.42451398855e-05 -3110673564.38 +UniRef50_UPI00037830BD hypothetical protein 1.5906559715e-07 7.43200530196e-07 235822440.612 +UniRef50_R6E4P6 Serine type site specific recombinase 1.3712473388e-07 1.29618864504e-05 5177513682.47 +UniRef50_UPI00035FAB77 hypothetical protein 2.31886157963e-07 1.55446743371e-07 -30859529.6879 +UniRef50_UPI000465FD2A serine hydroxymethyltransferase, partial 6.53710428049e-08 2.2336452372e-07 63783907.0434 +UniRef50_A7HI44 LigA 4.20840921965e-06 4.94900115158e-06 298986051.005 +UniRef50_Q92BC5 Probable thiol peroxidase 3.5057383495e-05 0.000115952506138 32658353705.8 +UniRef50_B8ISV4 Trans aconitate 2 methyltransferase 1.14950461625e-07 1.58143801086e-07 17437681.1823 +UniRef50_B8CXG6 Probable transcriptional regulatory protein Hore_12350 5.20188784642e-06 2.13255541097e-05 6509321930.13 +UniRef50_A5WCE7 ppGpp synthetase I, SpoT RelA 2.82235933671e-06 8.52296119669e-05 33268819137.5 +UniRef50_P34439 Probable 3 hydroxyacyl CoA dehydrogenase F54C8.1 4.79699846193e-08 2.03934005924e-06 803940535.983 +UniRef50_Q7UA36 ATP dependent Clp protease proteolytic subunit 1 0.000151744662169 6.62953992431e-05 -34496916023.6 +UniRef50_Q49X60 Riboflavin kinase FAD synthase 0.000195883003266 6.26948808107e-05 -53769679437.1 +UniRef50_Q7N8K6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 3.9274915163e-07 3.19303263761e-06 1130508806.63 +UniRef50_Q8CUA2 Mobilization protein 0.000218652473694 8.75040557276e-05 -52946225704.9 +UniRef50_P95468 Aromatic amino acid aminotransferase 2.74196332831e-05 2.37520138222e-06 -10110744488.1 +UniRef50_C0R0E0 Polyribonucleotide nucleotidyltransferase 7.64798160711e-08 3.80371496121e-08 -15519776.1941 +UniRef50_UPI0003A14A99 MULTISPECIES 7.09286965793e-08 7.1966078548e-08 418803.830872 +UniRef50_X4ZKX4 Short chain dehydrogenase family protein 2.82573100517e-07 1.46495961606e-06 477343945.838 +UniRef50_B9K138 Aliphatic sulfonates import ATP binding protein SsuB 1.43167884525e-06 8.23110031938e-05 32651975740.4 +UniRef50_Q8E7Y8 Peptidyl tRNA hydrolase 8.70714843981e-05 1.98346027255e-05 -27144354220.5 +UniRef50_UPI000255A87B molybdopterin guanine dinucleotide biosynthesis protein A 7.28757194439e-08 8.76743166058e-08 5974375.27347 +UniRef50_W5XDK2 PTS family mannose porter, IIC component 4.91100226207e-05 8.7842133876e-05 15636628610.2 +UniRef50_A5ULS3 Phosphoglycolate phosphatase 7.2767734872e-05 2.54583366547e-06 -28349443236.7 +UniRef50_L4FKH2 4.51634131801e-07 5.22527054792e-07 28620342.9655 +UniRef50_K4RIH9 Transporter 8.55330790492e-07 2.54250391956e-05 9919092787.37 +UniRef50_UPI000289E54D type III effector Hrp dependent outer protein 5.08948921857e-08 8.36154763084e-08 13209701.3371 +UniRef50_A4WVU5 1.84443091994e-07 5.18069187171e-08 -53546850.7808 +UniRef50_Q8CPJ9 Bifunctional protein PyrR 0.000291188033147 0.000128620895508 -65630348388.0 +UniRef50_D3SY39 Phosphate ABC transporter permease 9.92980646005e-05 1.85358413255e-05 -32604700600.0 +UniRef50_M4S0Q6 Terminase 6.80381581268e-07 8.51773331828e-08 -240291258.929 +UniRef50_W7WA58 3.63623768165e-06 8.16008857599e-07 -1138560984.37 +UniRef50_UPI0002F5E3FA hypothetical protein 2.85276503042e-07 4.37596678433e-07 61493523.9841 +UniRef50_F0Y592 Expressed protein 9.64991544013e-07 1.60507949224e-07 -324779899.34 +UniRef50_P38376 Protein translocase subunit SecY 1.31681158905e-06 0.000135813830618 54298097046.0 +UniRef50_G7IR91 1.04465973016e-05 1.24818201005e-05 821644418.908 +UniRef50_Z7M6T4 Metallopeptidase M24 family protein 4.89060365118e-06 2.1415374756e-06 -1109831749.92 +UniRef50_UPI0003814739 hypothetical protein 2.49613338224e-07 1.81011256377e-07 -27695502.2838 +UniRef50_UPI00047A93E4 spermidine putrescine ABC transporter ATP binding protein 3.24504463327e-07 1.49239317408e-07 -70756690.1527 +UniRef50_P45595 Phosphoenolpyruvate protein phosphotransferase 7.12261071457e-05 7.64606899859e-05 2113265328.14 +UniRef50_Y0ZY08 1.12537936997e-05 9.32579069031e-06 -778358474.148 +UniRef50_A5ULH9 Predicted ATP utilizing enzyme 4.57451444521e-05 1.64674742667e-06 -17803064027.3 +UniRef50_UPI0003F0B3EF PREDICTED 2.72129061617e-08 4.87548917991e-08 8696763.95171 +UniRef50_O27269 5 formaminoimidazole 4 carboxamide 1 D ribofuranosyl 5 monophosphate synthetase 2.77832014223e-05 1.98739273996e-05 -3193070980.67 +UniRef50_UPI00047132A1 nitrogen regulatory protein P II 1 1.04688960934e-05 4.44827548547e-06 -2430598420.74 +UniRef50_M1ZE43 2.06427806697e-06 1.42242103311e-06 -259125561.041 +UniRef50_Q16CU0 1.24497710774e-06 2.24648628146e-07 -411919128.049 +UniRef50_S6T1V4 Dihydrolipoamide acetyltransferase 2.69977075502e-06 1.59630651457e-06 -445482054.899 +UniRef50_A3U124 Replication protein C 1.44395785653e-06 3.70473243083e-07 -433378911.587 +UniRef50_V4L8B5 2.02828865414e-07 2.39629190012e-07 14856742.631 +UniRef50_UPI00036FD615 hypothetical protein 3.16046122464e-06 3.26561663377e-07 -1144080028.74 +UniRef50_B1HU19 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.000127415276859 3.98495056213e-05 -35351376401.5 +UniRef50_K1XG94 FeS assembly protein SufB 4.55686335477e-08 2.47627585042e-07 81573678.2603 +UniRef50_UPI000255B9CD GntR family transcriptional regulator 2.47366677286e-07 3.71815409845e-07 50241480.4917 +UniRef50_UPI0004014E85 hypothetical protein 1.13418449329e-06 1.36921144716e-06 94883265.3824 +UniRef50_UPI0003780E79 hypothetical protein 1.66172407105e-07 4.69825289602e-07 122588394.904 +UniRef50_R4YWZ2 1.71751546086e-06 2.36883181481e-06 262944404.64 +UniRef50_G4LKC9 Large exoprotein 6.33462824039e-06 5.09882369332e-06 -498909460.679 +UniRef50_Q45NQ1 Putative nitrate reductase beta chain 4.33214401288e-07 5.23194922086e-07 36326240.4313 +UniRef50_UPI0003B3B541 diguanylate cyclase 1.21098794376e-07 6.74555408015e-07 223437226.602 +UniRef50_Q9K068 Tyrosine recombinase XerD 1.29276023577e-06 7.20445303334e-05 28563357810.3 +UniRef50_F8H7Y3 Group II intron encoding maturase 6.4897322048e-08 1.34226116253e-07 27988884.9805 +UniRef50_UPI00028A2BD8 hypothetical protein 1.32007371169e-06 3.55946220344e-07 -389230099.431 +UniRef50_A1WTR8 Electron transport complex subunit D 3.03474203949e-05 7.88979475443e-06 -9066419057.13 +UniRef50_Q9ZBH3 UPF0264 protein SCO6440 5.04759804874e-05 1.55008753881e-05 -14119879121.4 +UniRef50_Q9ZA63 3.36284749287e-07 1.3595067137e-05 5352733153.47 +UniRef50_F2SDC0 Phosphoenolpyruvate carboxykinase AcuF 3.797216768e-08 1.28243407336e-06 502404542.588 +UniRef50_UPI000467C040 glycine betaine ABC transporter ATP binding protein 1.46720750883e-07 8.17481255838e-08 -26230246.1371 +UniRef50_B2U2H8 Aldehyde ferredoxin oxidoreductase 1.76280371618e-05 7.08755990927e-06 -4255320013.04 +UniRef50_UPI0004232642 polynucleotide phosphorylase 6.4225493511e-08 7.04006434985e-08 2492983.82757 +UniRef50_P68893 Transcription termination antitermination protein NusG 2.53920995688e-05 4.16391836106e-05 6559147201.82 +UniRef50_W5X8W1 Short chain dehydrogenase reductase SDR 8.15588739702e-08 1.93069870244e-07 45018357.5896 +UniRef50_F9DQX8 Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein 3.59962830256e-07 2.27894610807e-07 -53317560.8509 +UniRef50_Q2IIV4 Histidine ammonia lyase 4.24788743016e-08 1.35289036428e-06 529029199.062 +UniRef50_Q03QA4 S adenosylmethionine synthase 5.37626076578e-07 5.24094490389e-06 1898787526.8 +UniRef50_P54901 Stationary phase inducible protein CsiE 3.06428870178e-05 1.29228986543e-05 -7153776751.05 +UniRef50_UPI0004785809 hypothetical protein 4.83857648517e-07 3.69019282176e-07 -46361657.7171 +UniRef50_P39912 Protein AroA 0.000144967239422 3.81752784746e-05 -43113225119.0 +UniRef50_Q8RBK3 Aspartate ammonia lyase 2.04290380606e-06 7.10844217325e-06 2045019999.98 +UniRef50_Q9I1W4 Alpha 1,4 glucan 5.47145854924e-06 1.14242439148e-06 -1747684212.71 +UniRef50_U3SW26 LysR family transcriptional regulator 6.20858638015e-05 1.4462985252e-05 -19225940468.9 +UniRef50_G7TAD9 D mannonate dehydratase 1.43693770769e-05 4.74521661606e-06 -3885391679.77 +UniRef50_Q60356 2.9049157066e-05 7.54154399494e-06 -8682887324.89 +UniRef50_UPI00016A34C2 riboflavin biosynthesis protein RibD, partial 2.32243632318e-06 2.59442957549e-06 109807013.69 +UniRef50_W1IMF3 1.074532841e-06 8.75224785573e-06 3099587767.6 +UniRef50_C5E0T6 ZYRO0G15466p 1.83245625651e-06 7.43816864834e-05 29289014521.8 +UniRef50_F8H0W5 Cbb3 type cytochrome c oxidase subunit I 3.46178947111e-05 1.87543937931e-05 -6404289987.64 +UniRef50_P46340 Probable ABC transporter permease protein YqgI 5.52910019028e-05 5.84788196858e-05 1286961157.92 +UniRef50_UPI00046FE6B9 hypothetical protein 4.04509623426e-08 2.93432378485e-08 -4484324.68538 +UniRef50_E1SCP3 MFS citrate proton symporter 1.75413040368e-05 7.81799345993e-06 -3925419798.32 +UniRef50_UPI0003B6BBA6 glyoxalase 2.84206316335e-07 2.20377643726e-07 -25768418.3981 +UniRef50_UPI00046F677B hypothetical protein 2.11381125353e-07 2.10479716719e-07 -363909.727074 +UniRef50_N5H245 3.70335015456e-06 6.65102731009e-07 -1226577768.38 +UniRef50_I4CUW0 8.8953698268e-07 3.87665396731e-07 -202611717.905 +UniRef50_Q1LT01 Hydroxyacylglutathione hydrolase 2.34897712933e-05 1.01547804472e-05 -5383499443.31 +UniRef50_UPI0002B4BA19 PREDICTED 1.10690678879e-06 8.30296091562e-07 -111671132.866 +UniRef50_W8F1J2 3 hydroxybutyryl CoA dehydratase 4.97623487979e-07 1.98369673094e-07 -120812437.326 +UniRef50_UPI00034525BD hypothetical protein 5.60482751131e-08 1.61557599886e-07 42595409.1559 +UniRef50_R7M168 GTP binding protein typA 1.14037781701e-07 1.61070925693e-07 18987857.3912 +UniRef50_Q0VTE1 Peptide deformylase 5.6791860911e-05 1.46845102931e-05 -16999254159.7 +UniRef50_UPI000466577D hypothetical protein 1.11773476842e-07 8.96983799811e-07 316999042.997 +UniRef50_A0A017HLF1 Protein YqgE 8.80489980847e-07 1.69457001208e-06 328654098.494 +UniRef50_UPI0003347753 1.80412313516e-08 8.43093480092e-08 26753251.8959 +UniRef50_Y4VDJ3 3.33446211516e-06 7.08991421239e-06 1516122096.23 +UniRef50_UPI0004754608 hypothetical protein 9.74406113729e-08 1.33808077568e-05 5362658321.84 +UniRef50_UPI0003AD1A5F hypothetical protein 2.83727876173e-08 3.7167996012e-07 138597318.392 +UniRef50_I7DR67 2.2499228057e-07 2.23680381238e-07 -529629.859144 +UniRef50_Q9WXX0 Ribose import ATP binding protein RbsA 1 1.01291479085e-06 1.37256263215e-07 -353514093.145 +UniRef50_Q7DC27 8.0889854754e-05 4.7889195437e-06 -30722881407.9 +UniRef50_Q2NFJ6 Putative methylthioribose 1 phosphate isomerase 2.77044648956e-05 1.0492868014e-05 -6948532871.15 +UniRef50_Q8CQM9 Ribosomal protein serine N acetyltransferase 0.000116905914398 2.09544252398e-05 -38736793630.3 +UniRef50_UPI0003342D90 PREDICTED 3.35661875776e-07 1.1019179839e-07 -91025037.0697 +UniRef50_A0A023XMZ3 Type VI secretion protein, ImpJ SciO VasE family 4.03206692032e-08 5.31217191876e-08 5167940.96525 +UniRef50_D4DRQ8 1.82578240891e-06 1.06107841111e-05 3546612991.27 +UniRef50_UPI0004664E29 hypothetical protein 7.73089215029e-08 8.43013971386e-08 2822948.22146 +UniRef50_P74741 Bifunctional purine biosynthesis protein PurH 7.42689055338e-05 2.41182707523e-05 -20246426678.8 +UniRef50_P50199 Gluconate 5 dehydrogenase 3.3244252075e-05 1.03736999352e-05 -9233122552.07 +UniRef50_Q5HPR6 Ribonuclease J 2 0.000216662235562 6.99340715506e-05 -59235960368.3 +UniRef50_D3EHQ7 ABC transporter related protein 0.000116195812861 5.3760478519e-05 -25205910641.6 +UniRef50_R8BTP6 1.32414545965e-07 1.84136781362e-07 20880901.133 +UniRef50_Q08YP5 1.9045133743e-07 2.42395671664e-08 -67101731.3034 +UniRef50_A6TKS3 4.7415615755e-06 1.34987031606e-05 3535365520.12 +UniRef50_P76187 Oxidoreductase YdhF 2.66784689748e-05 6.17393448592e-06 -8277932192.1 +UniRef50_UPI0003B3589F ATP synthase subunit B 7.19098695313e-07 6.11393355263e-07 -43481967.4713 +UniRef50_Q9FJP9 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 3, mitochondrial 1.75007358789e-07 6.82334783952e-08 -43105925.7779 +UniRef50_UPI0003B6819C MFS transporter 1.01837021571e-07 9.15367991719e-08 -4158326.18046 +UniRef50_UPI0003B502A9 ABC transporter ATP binding protein 8.66050955711e-07 1.34359606786e-07 -295392776.424 +UniRef50_R5GI81 1.91121306131e-07 7.822918272e-06 3081050087.8 +UniRef50_E1V871 7.00176116206e-07 3.23688548768e-07 -151992650.997 +UniRef50_Q67M06 7.21949267093e-08 4.89916358143e-07 168639267.888 +UniRef50_UPI0003C19124 1.27359719021e-06 1.38622409633e-07 -458203246.627 +UniRef50_A3V0X2 Beta Ig H3 Fasciclin 1.11007596165e-06 1.83191625327e-07 -374194580.723 +UniRef50_Q49WG6 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 0.000207265992396 5.01562261932e-05 -63427140569.8 +UniRef50_Q0TKF3 Copper transporting P type ATPase 3.02902176289e-05 7.10560228815e-06 -9359913720.3 +UniRef50_UPI000288A457 ectoine utilization protein EutE, partial 5.4584682315e-06 3.70784368688e-06 -706748611.242 +UniRef50_UPI0003A4755B histidine kinase 1.95451411935e-08 1.02831524842e-06 407252871.29 +UniRef50_G0DU47 Myo inositol catabolism IolH protein 2.35438246685e-06 5.57785662113e-05 21567998566.1 +UniRef50_Q7UQD2 UPF0365 protein RB6389 0.000244102325396 0.000106647313511 -55492275060.7 +UniRef50_B0KCX0 Phosphotransferase system, lactose cellobiose specific IIB subunit 4.64122117436e-06 1.15810472625e-05 2801692953.02 +UniRef50_G7ZS06 AraC family regulatory protein 0.000116901478072 2.41100721425e-05 -37461029252.3 +UniRef50_P21693 ATP dependent RNA helicase DbpA 2.54536012456e-05 8.87208417441e-06 -6694161919.74 +UniRef50_C0LZW6 Cross beta structure silk protein 1 1.10728395821e-08 3.61218661687e-07 141358165.156 +UniRef50_UPI0003B32CE6 multidrug transporter, partial 1.36319114721e-08 1.19251442764e-07 42639900.88 +UniRef50_E6MC83 0.000127045230683 2.42863417382e-05 -41485024460.5 +UniRef50_UPI000374A1F2 hypothetical protein 7.0842375956e-07 6.27748345763e-07 -32569654.5485 +UniRef50_F0KHS2 ABC1 family protein 9.59710141129e-07 8.23798252577e-05 32870299609.7 +UniRef50_P0DMC8 Transcriptional regulatory protein RcsB 1.77381126783e-05 3.43606866512e-05 6710737094.78 +UniRef50_Q5HQ65 2.4653728858e-05 7.4998165468e-06 -6925244902.21 +UniRef50_X3PZA5 AraC family transcriptional regulator 2.219143939e-07 7.6096116791e-07 217619797.516 +UniRef50_UPI0004434B3D PREDICTED 5.81045080113e-07 9.00361004973e-08 -198226350.429 +UniRef50_U1R336 8.98107341212e-05 3.14301472057e-05 -23568959348.2 +UniRef50_B9T9L5 1.89660178773e-06 7.92655588017e-07 -445676627.766 +UniRef50_Q9RZ19 1.00484291618e-06 6.37578905013e-05 25334175376.6 +UniRef50_D3E128 3.46310587719e-05 6.95547251841e-06 -11172973788.2 +UniRef50_J9PBA5 3.12860344905e-07 1.10880380242e-06 321332141.123 +UniRef50_G8LLE6 6.33484268762e-07 3.30393696901e-07 -122361383.2 +UniRef50_C0QJ00 Phosphomethylpyrimidine synthase 3.02753996169e-05 1.37123869806e-05 -6686691452.3 +UniRef50_Q7AX67 9.70093629878e-07 4.00058025321e-05 15759194705.8 +UniRef50_K0M6S7 0.00025064170427 1.65716908155e-05 -94496936793.9 +UniRef50_Q3HKJ7 ABC di oligopeptide transporter, periplasmic ligand binding protein 0.00016754813031 2.17750049971e-05 -58850399526.3 +UniRef50_U5MW97 HD GYP domain protein 3.5111570859e-06 1.96486258453e-05 6514894167.18 +UniRef50_B9KR36 Two component transcriptional regulator, LuxR family 4.4670858139e-05 3.42065681693e-06 -16653212470.6 +UniRef50_UPI00005103EC tetracycline resistance protein 9.64877768565e-07 9.68963457492e-07 1649442.75687 +UniRef50_K7EFD4 1.09181530603e-07 7.82500401119e-07 271827090.579 +UniRef50_Q9JVD1 N anthranilate isomerase 1.03929423388e-07 1.18273631672e-05 4732894065.08 +UniRef50_M9VF28 Cobalt precorrin 6x reductase 8.06121274595e-06 8.59560470018e-05 31447100466.2 +UniRef50_H3VSI0 GA module 9.67442385753e-05 1.82059788498e-05 -31706859224.0 +UniRef50_S4X8J4 IS1272 transposase 8.29227583357e-06 2.27166696304e-05 5823304782.98 +UniRef50_G2JKN3 4.51178472729e-06 1.76197361923e-05 5291840859.07 +UniRef50_P25534 2 octaprenyl 6 methoxyphenol hydroxylase 3.50731782037e-05 1.64490386176e-05 -7518793694.8 +UniRef50_P77585 Aminopeptidase YpdE 2.56261189357e-05 2.6804732928e-05 475820931.912 +UniRef50_Q5FA21 Imidazole glycerol phosphate synthase subunit HisH 1.91546712075e-06 1.82891408959e-05 6610253030.58 +UniRef50_UPI00029AB9CD hypothetical protein 3.89249301608e-09 4.2446591201e-08 15564762.5492 +UniRef50_U5LBL2 MFS transporter 2.32773817474e-07 1.32462531955e-05 5253701318.25 +UniRef50_B5F2L4 Elongation factor P 2.82536402785e-05 1.02737363235e-05 -7258707864.87 +UniRef50_S3BX82 4.69509936411e-07 1.10192800452e-06 255314934.738 +UniRef50_Q9KUY6 Alanine racemase 1 3.38572327071e-05 5.23716562709e-06 -11554272287.9 +UniRef50_A6M043 Transcriptional regulator, TetR family 1.96949211577e-06 2.98299702217e-06 409164367.817 +UniRef50_I6SUR3 Glucan binding protein D 4.46754818519e-05 1.29649246414e-05 -12801941078.2 +UniRef50_A0A010QNG4 DnaJ domain protein 1.14221874883e-06 8.6486749079e-07 -111970106.353 +UniRef50_D6X5L6 Predicted protein 1.79339606614e-06 1.25392137016e-07 -673393654.896 +UniRef50_A4WVP5 Ribonuclease 3 6.16646087665e-06 5.45728217174e-06 -286304145.774 +UniRef50_UPI00045416B9 PREDICTED 3.2850053729e-07 3.37213561042e-07 3517554.60951 +UniRef50_UPI000380E1DF hypothetical protein 1.88403687521e-07 2.15154016462e-07 10799436.0569 +UniRef50_P50923 Fructose bisphosphate aldolase 2 2.11428874798e-06 3.15757315898e-06 421186719.26 +UniRef50_Q4L800 Thymidine kinase 4.87080161507e-07 3.36217123202e-07 -60905259.8614 +UniRef50_UPI00037BF977 MULTISPECIES 1.40931052054e-07 1.44150948679e-07 1299911.78009 +UniRef50_E1ZPF1 1.40696414917e-07 1.24793257578e-06 447004825.455 +UniRef50_D6ZZT0 1.54802253334e-06 3.63134704231e-07 -478353756.82 +UniRef50_UPI0003671796 hypothetical protein 1.24184803828e-06 8.45522069762e-07 -160001656.957 +UniRef50_P76237 Putative diguanylate cyclase YeaJ 3.43423532584e-05 1.016608184e-05 -9760257447.82 +UniRef50_UPI00031C8415 hypothetical protein 3.2750058891e-07 1.81598822747e-08 -124884639.306 +UniRef50_UPI00036D4271 hypothetical protein 5.98224001006e-07 9.71176129956e-08 -202302798.107 +UniRef50_S5RLF1 MarR family transcriptional regulator 1.09070545513e-05 2.46767410024e-05 5558991393.36 +UniRef50_E2Q1G7 Transcriptional regulator, LysR family 5.68122725694e-06 5.92608772976e-06 98853177.6533 +UniRef50_P62421 Phosphoglycerate kinase 1.74719654898e-07 2.53114798946e-07 31649081.6688 +UniRef50_Q46817 Guanine hypoxanthine permease GhxQ 5.82714921277e-05 1.45283203827e-05 -17659655222.5 +UniRef50_P37292 Serine hydroxymethyltransferase, mitochondrial 7.70530386618e-08 2.24582444128e-07 59559431.376 +UniRef50_UPI0001BF6B4F hypothetical protein SMAC_10997 7.57362920392e-07 1.4715995772e-05 5635271373.88 +UniRef50_P0AAK2 Formate hydrogenlyase subunit 2 1.79951463985e-05 6.07743906027e-05 17270505845.6 +UniRef50_Q96343 Myrosinase binding protein related protein 5.96327785188e-08 1.53895466939e-06 597220400.665 +UniRef50_O83217 Elongation factor Tu 9.18790977924e-06 0.0011576946479 4.63666263942e+11 +UniRef50_UPI00046F7098 hypothetical protein 3.37421008915e-07 3.58360387631e-07 8453484.14272 +UniRef50_UPI0003F07DB8 PREDICTED 3.2488642679e-08 8.1231689137e-08 19678165.9995 +UniRef50_Q5HKG0 Conserved domain protein 0.000216113904356 6.32706735449e-05 -61704687875.8 +UniRef50_P77625 Sugar phosphatase YfbT 3.79654687476e-05 1.44078094161e-05 -9510516157.11 +UniRef50_A7ZRX6 Uronate isomerase 3.49205351899e-05 9.61848082086e-06 -10214749839.9 +UniRef50_B9DZC4 1.42395486747e-05 1.10980205093e-05 -1268273471.26 +UniRef50_UPI00044165DC ribosomal protein L6 4.87485824258e-08 7.84735948814e-07 297127131.391 +UniRef50_Q9RSP5 2.79619251005e-06 0.000506729719604 2.03444148848e+11 +UniRef50_A3CNT6 ATP phosphoribosyltransferase regulatory subunit 4.89396349765e-05 1.17500833881e-05 -15013878343.4 +UniRef50_Q9RSP7 7.32859080189e-06 0.000233764988878 91415152590.4 +UniRef50_Q8CMY4 Probable malate 0.00038808282829 0.000156758474657 -93388480230.7 +UniRef50_UPI0001850D56 YvrB 1.53537226474e-07 2.63618894315e-06 1002276963.59 +UniRef50_A6LGA2 Leucine tRNA ligase 3.6709968534e-08 4.79286587067e-05 19334567405.9 +UniRef50_Q0E079 Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic 9.04898211712e-08 4.16035026079e-07 131426594.11 +UniRef50_A5UMQ3 2.48221534853e-05 2.09444471765e-06 -9175454929.83 +UniRef50_W8RY01 3.07421441272e-06 1.770810905e-06 -526199990.626 +UniRef50_UPI00037FD000 hypothetical protein 1.91230581417e-08 1.24549423481e-06 495101093.288 +UniRef50_J7TAV9 1.95926983831e-06 1.77420355993e-05 6371696214.03 +UniRef50_UPI000370BEF1 hypothetical protein 6.99891006209e-08 3.08541802505e-07 96306653.1214 +UniRef50_UPI00047191F0 hypothetical protein, partial 1.02372518171e-06 7.59026178616e-07 -106862235.771 +UniRef50_A7I5Y0 4.83912457585e-05 3.28929840496e-06 -18208209609.7 +UniRef50_T2A2T5 6.36212340763e-06 1.49649568314e-05 3473069421.81 +UniRef50_UPI000372FA01 hypothetical protein, partial 3.91387592434e-07 4.47010905452e-06 1646629905.79 +UniRef50_Q7NSL8 2.00540943711e-06 4.56137019227e-07 -625460286.809 +UniRef50_I6TSJ0 8.7174462219e-05 1.25770715913e-05 -30115882009.3 +UniRef50_D6M601 Xanthine dehydrogenase, large subunit molybdenum cofactor binding domain containing protein 3.61731678481e-06 1.19208049558e-05 3352220069.89 +UniRef50_U5MPL0 Protease YdeA 4.05951299313e-05 1.00710898981e-05 -12322929533.5 +UniRef50_Q04L26 Xaa Pro dipeptidyl peptidase 2.90027629119e-06 3.02703518969e-05 11049635390.6 +UniRef50_UPI000319F04C hypothetical protein 9.66727109909e-08 1.61407180441e-07 26134099.6983 +UniRef50_Q8XA27 Protein FixB 4.00793294563e-05 3.79019994174e-06 -14650366902.7 +UniRef50_I0ES06 Methyl accepting chemotaxis protein 5.73686913185e-07 4.55815540481e-05 18170228271.0 +UniRef50_UPI0002F687DE hypothetical protein 8.88112558704e-07 2.65855498364e-07 -251212811.212 +UniRef50_G5PKT0 Formate transporter 4.79811294099e-07 1.40735544572e-06 374460956.256 +UniRef50_P22731 High affinity branched chain amino acid transport ATP binding protein LivF 3.63357001503e-05 0.000530235171263 1.99393277316e+11 +UniRef50_P0C0Q2 Glutamyl endopeptidase 6.76333496186e-05 3.06930894782e-05 -14913236326.6 +UniRef50_UPI00047910E5 hypothetical protein 4.2493622664e-07 1.14235298691e-06 289629949.815 +UniRef50_A0PPL6 Riboflavin biosynthesis protein RibBA 1.19441321876e-07 9.16512766845e-08 -11219182.266 +UniRef50_Q3JPM4 3 octaprenyl 4 hydroxybenzoate carboxy lyase 7.63604668922e-08 6.44462028408e-07 229349571.774 +UniRef50_P09831 Glutamate synthase [NADPH] large chain 2.05185280714e-05 9.94704140617e-08 -8243424146.27 +UniRef50_L0KED0 TRAP type C4 dicarboxylate transport system, small permease component 7.25597933415e-07 3.37848236568e-07 -156539310.841 +UniRef50_W3RDE1 Topology modulation protein 1.1504390628e-07 4.3686615788e-06 1717237652.15 +UniRef50_UPI000371284B hypothetical protein 3.85155743624e-07 5.86845013447e-06 2213673233.17 +UniRef50_Q9KNX6 FKBP type peptidyl prolyl cis trans isomerase SlyD 6.28316119511e-05 1.01286330318e-05 -21276839328.0 +UniRef50_UPI00037B0FBB hypothetical protein 2.63798601725e-07 4.16603095343e-07 61689049.1956 +UniRef50_G7U8F4 3.19468064949e-06 5.78521362959e-05 22065885566.9 +UniRef50_UPI0002626037 large conductance mechanosensitive channel protein MscL 9.44066046179e-08 1.51802597009e-07 23171466.4563 +UniRef50_UPI0003EF9C6D hypothetical protein, partial 3.1685493981e-06 2.01796071116e-06 -464506772.229 +UniRef50_T1YDR0 Transcriptional regulator, MerR family protein 0.000112499855261 3.07314930111e-05 -33010891250.9 +UniRef50_P69807 Mannose permease IID component 3.9837282253e-05 4.92393232473e-05 3795719325.42 +UniRef50_P73860 KaiC like protein 1 4.01608538091e-05 2.12751884619e-05 -7624374853.84 +UniRef50_A0A022GSW2 Sulfonate ABC transporter substrate binding protein 1.35811522259e-07 9.7415179896e-08 -15501074.588 +UniRef50_UPI000468B631 patatin 2.28857798777e-07 2.37782212419e-07 3602895.30215 +UniRef50_UPI0003C1000B PREDICTED 1.63575980523e-07 6.55845274172e-08 -39560352.1092 +UniRef50_F8FV37 7.3239963812e-06 2.00214715383e-06 -2148495839.52 +UniRef50_U6PZV7 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94 1.90527905971e-08 9.29972050125e-08 29852267.4995 +UniRef50_V5T4P8 Fimbrial biogenesis outer membrane usher protein 9.73911569336e-07 2.61700745498e-06 663337972.087 +UniRef50_S2J745 8.21264177371e-08 6.20771604132e-08 -8094131.21371 +UniRef50_P0AFR3 C4 dicarboxylic acid transporter DauA 2.48270458825e-05 6.80639398058e-06 -7275158311.06 +UniRef50_UPI00047D2CC8 hypothetical protein 1.23579790265e-06 1.86343702007e-06 253385613.701 +UniRef50_E4U3H9 2.39984961348e-08 4.2968767187e-07 163781698.61 +UniRef50_S5ED07 Jag protein 5.45480856881e-05 1.486558597e-05 -16020312095.2 +UniRef50_A6LS15 PHP C terminal domain protein 2.8948879442e-06 1.49290968803e-05 4858357823.85 +UniRef50_A0A041VEI8 5.10838424916e-07 3.99641642221e-07 -44891505.7119 +UniRef50_P9WHP0 Phosphate acetyltransferase 3.67559223194e-08 1.01420257019e-07 26105785.4388 +UniRef50_Q98AP4 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 2.27445433735e-05 1.70073445714e-05 -2316177559.75 +UniRef50_Q5NQ45 50S ribosomal protein L15 3.33051034397e-05 3.66853049924e-06 -11964648177.7 +UniRef50_UPI00047247B2 hypothetical protein 4.95291149235e-08 6.43111143543e-07 239636349.024 +UniRef50_UPI0003B31EFA cold shock protein 1.72151775542e-07 2.67238492364e-07 38387674.4263 +UniRef50_A0A037Y9B8 Transcription repair coupling factor 8.07318361382e-06 1.61813835158e-06 -2605980984.68 +UniRef50_UPI0004707564 hypothetical protein 1.021091678e-06 9.69575717417e-07 -20797625.4593 +UniRef50_O24850 2.80658727775e-06 4.25948412301e-05 16063006377.3 +UniRef50_W5X364 Binding protein dependent transport systems inner membrane component 5.65696246739e-08 7.06052269221e-08 5666344.86381 +UniRef50_C8YZ36 WejK 1.2597236144e-05 3.19707956312e-06 -3794958564.59 +UniRef50_Q981X2 D amino acid dehydrogenase 3 small subunit 2.35687925627e-06 7.4347127147e-05 29063346493.2 +UniRef50_UPI0003A61917 hypothetical protein 1.3498145707e-07 5.33849852889e-08 -32941496.9593 +UniRef50_P63206 Transcriptional regulator GadE 3.0843316497e-05 1.35524173526e-05 -6980548167.79 +UniRef50_G7U9H2 4.24198000405e-06 4.49412028707e-05 16430775706.9 +UniRef50_UPI00016C38BC purine binding chemotaxis protein 2.13677875472e-07 6.68662127914e-07 183682725.995 +UniRef50_UPI000471A1E2 hypothetical protein 4.4915792254e-08 1.37603492935e-07 37419162.1709 +UniRef50_L1Q181 Transcriptional regulator, PadR family 1.21046833049e-06 2.022596614e-07 -407026211.823 +UniRef50_P39766 Uracil permease 0.000248188749329 4.13355643052e-05 -83509169168.2 +UniRef50_M4HU62 Degenerate transposase 1.44928409285e-06 1.23909107075e-05 4417268933.21 +UniRef50_UPI00046E9748 excinuclease ABC subunit C 3.08155630952e-08 6.52863412377e-08 13916276.1401 +UniRef50_R7VY37 1.73980758575e-08 6.27593375723e-08 18312897.9995 +UniRef50_B1YSV0 RNA pyrophosphohydrolase 8.16224121098e-08 3.46751512944e-06 1366926439.56 +UniRef50_UPI0003665980 hypothetical protein 2.96904135255e-07 1.72706766645e-07 -50140001.781 +UniRef50_Q02W25 50S ribosomal protein L4 0.00018965278998 0.000116631846706 -29479450867.5 +UniRef50_A6LTI5 Pentapeptide repeat protein 2.6123804592e-06 7.5707002913e-06 2001734561.65 +UniRef50_I3UGR0 5.23707044998e-08 3.82671195818e-08 -5693790.30185 +UniRef50_B9CVK2 3.74162679871e-05 2.41023242371e-06 -14132366129.3 +UniRef50_Q6B458 3 isopropylmalate dehydrogenase 3.42094115286e-07 3.28700295392e-07 -5407249.45186 +UniRef50_B0TCA6 N acetyl gamma glutamyl phosphate reductase 1.44975802346e-07 1.1414441061e-07 -12447011.1875 +UniRef50_A1SR02 Phosphopantetheine adenylyltransferase 1.00564096803e-07 2.74550178423e-07 70240316.1993 +UniRef50_UPI0000EBCE17 1.73223488792e-06 1.37319680817e-06 -144948078.688 +UniRef50_Q4ZQC8 Response regulator receiver 4.91097380771e-06 2.51945610402e-06 -965485044.202 +UniRef50_B7I2N1 Protein YaaA 2.03653314859e-07 7.94927696569e-07 238704723.649 +UniRef50_B0TBM7 Light independent protochlorophyllide reductase subunit N 9.8496441775e-07 3.15801904828e-07 -270149118.014 +UniRef50_B7HCU0 Chaperone protein DnaK 0.000235189057069 0.000108706538395 -51062544903.7 +UniRef50_UPI00035CF421 hypothetical protein 1.29743356286e-06 4.72193086969e-07 -333159706.957 +UniRef50_T2F9D3 Competence protein ComGB 1.2100300474e-07 2.69757315558e-05 10841583460.7 +UniRef50_Q3J223 Putative phage major capsid protein, gp36 0.000178247308348 4.01214769632e-05 -55763093124.7 +UniRef50_F0YS40 2.33684193117e-06 5.25503796043e-06 1178111547.3 +UniRef50_F0LFC9 Spermidine putrescine ABC transporter inner membrane protein 1.63687352949e-05 8.92356812781e-06 -3005705347.83 +UniRef50_A5UMP4 Cobalamin biosynthesis protein G, CbiG 2.86231074676e-05 3.91619977445e-06 -9974481823.56 +UniRef50_W5X8L8 NifC like ABC type porter molybdate ABC transporter, permease protein 4.25740703717e-07 3.10839334636e-07 -46387092.6964 +UniRef50_Q8CXJ8 Chloramphenicol resistance protein 9.77450808796e-05 3.04105728618e-05 -27183767174.1 +UniRef50_R7PU88 DNA helicase related protein 3.6871480735e-05 4.36545389188e-06 -13123081930.4 +UniRef50_F8FUQ7 ApbE family lipoprotein 7.70026640391e-06 3.27523148093e-06 -1786440899.69 +UniRef50_L0KF64 Cu responsive transcriptional regulator 2.23962796545e-05 0.000150229467589 51607826659.0 +UniRef50_UPI0003B42D39 serine threonine phosphatase 9.32279511995e-08 1.24283668126e-07 12537574.0197 +UniRef50_D7GDY6 Transporter 1.31796108519e-06 4.09750496142e-05 16010053286.4 +UniRef50_P21112 Methyl coenzyme M reductase II subunit gamma 2.25626521311e-05 4.73770115279e-06 -7196151446.69 +UniRef50_M1N2U9 1.14159069206e-06 1.27470594847e-05 4685270166.69 +UniRef50_UPI00035E5F38 hypothetical protein 5.6248685973e-08 1.08653441697e-07 21156442.9644 +UniRef50_B9DVZ2 Transcription antiterminator 6.34927773585e-05 2.45800369442e-05 -15709550818.3 +UniRef50_P0A952 Spermidine N acetyltransferase 3.45658209019e-05 3.46074263901e-06 -12557501797.0 +UniRef50_UPI000472AC52 spore coat protein 4.256339768e-08 6.30397223561e-08 8266543.5445 +UniRef50_Q2CDQ9 1.10629500544e-06 1.72220670765e-06 248651112.269 +UniRef50_UPI0001F85CA4 biotin synthase like protein 2.23867605986e-07 2.58641879789e-06 953790907.933 +UniRef50_W6IE22 CreA protein 4.26844728381e-08 1.65191027138e-07 49457399.2954 +UniRef50_B7V9N9 Paraquat inducible protein A 1.92922992602e-06 7.18420556123e-06 2121498149.74 +UniRef50_V6UC46 1.51742397239e-07 3.36289117989e-07 74503775.8097 +UniRef50_Q2FD76 DMT family permease 4.62868282251e-06 4.64583459179e-05 16887148299.3 +UniRef50_UPI000359EAD9 PREDICTED 1.15594344043e-07 4.36324405871e-06 1714828314.34 +UniRef50_UPI0003627C1A hypothetical protein 8.5870014387e-08 1.85488055868e-07 40217025.7967 +UniRef50_G7I9Q9 ATP synthase subunit alpha 1.76660779241e-08 7.85285015334e-08 24570907.277 +UniRef50_C1CQV0 HAD superfamily subfamily IIA hydrolase 4.31379423955e-05 4.73012759536e-05 1680788847.25 +UniRef50_W5XBH9 Protein kinase transcriptional regulator 4.66401047005e-07 6.81864771467e-08 -160764108.494 +UniRef50_E3A4M7 1.37408347012e-05 4.77741842759e-06 -3618641143.14 +UniRef50_F4LPV2 Oligo 1,6 glucosidase 3.0863655156e-06 1.45191779112e-05 4615566660.49 +UniRef50_Q9A1V9 50S ribosomal protein L6 7.74107392977e-05 1.38438138682e-05 -25662747849.8 +UniRef50_Q1J3M1 Diguanylate cyclase with GAF sensor 1.25110416421e-07 6.27203966506e-05 25270485183.3 +UniRef50_M1ZLS1 7.39725919232e-07 6.84908528555e-06 2466423346.45 +UniRef50_Q4L8P5 PTS system sucrose specific IIBC component 3.45156558358e-05 4.12351723323e-05 2712751267.38 +UniRef50_Q8CPS7 Transcription factor 0.000107864174889 3.16675117994e-05 -30761527927.5 +UniRef50_UPI000308EC67 hypothetical protein 1.33953975691e-07 1.33162246622e-07 -319630.740764 +UniRef50_D9RMZ4 2.10883738145e-05 9.62989256073e-06 -4625929493.54 +UniRef50_UPI0003FCC1FE hypothetical protein 7.82943915215e-08 9.76475245663e-08 7813097.29983 +UniRef50_P05425 Copper exporting P type ATPase B 5.28049996497e-05 1.63733544358e-05 -14707902239.4 +UniRef50_UPI0003F7499A hypothetical protein 6.52848384058e-08 1.04256912122e-08 -22147310.9195 +UniRef50_G4I6C2 1.02664530691e-08 3.37655566162e-07 132171002.472 +UniRef50_G8ATH1 2.65043528962e-07 1.74587905057e-07 -36518045.3858 +UniRef50_L0M824 4.58774653671e-08 2.65571667765e-08 -7799841.62775 +UniRef50_I4YHY8 DUF28 domain containing protein 5.67875563572e-08 2.54681105062e-07 79892054.0391 +UniRef50_Q2IYS5 Phosphonates import ATP binding protein PhnC 1 9.4286980365e-08 1.99289242181e-07 42390701.6178 +UniRef50_B5EPG1 PilT protein domain protein 4.14276976552e-05 5.50799602651e-05 5511585947.72 +UniRef50_Q2YAA3 NADH quinone oxidoreductase subunit C D 0.000113402043212 9.17382870069e-05 -8745924224.18 +UniRef50_Q8A1G1 TonB dependent receptor SusC 1.41220911466e-08 2.16178303966e-07 81572572.6236 +UniRef50_B7V600 9.87894514217e-06 3.71467553704e-06 -2488591283.69 +UniRef50_P75982 1.76337947782e-05 1.70027341104e-05 -254766935.576 +UniRef50_UPI00035F8CE7 hypothetical protein 1.73986584642e-06 3.49730740916e-07 -561214600.966 +UniRef50_W0ILL7 Membrane protein 9.75661458426e-05 3.19177774856e-05 -26503051901.8 +UniRef50_UPI0004650B13 hypothetical protein 2.91089309336e-08 1.3018886904e-07 40807211.4037 +UniRef50_Q9ZJ96 Chromosomal replication initiator protein DnaA 9.548549465e-07 2.22032851903e-05 8578252036.98 +UniRef50_B0VE30 Acetoacetyl CoA transferase, beta subunit 9.57083569726e-06 0.000113687619983 42033223472.9 +UniRef50_Q8CPK2 Cell divisio initiation protein 0.000201319674034 5.05664470798e-05 -60860927671.5 +UniRef50_UPI0002257056 PREDICTED 3.19801260639e-07 5.10333018914e-06 1931169328.94 +UniRef50_F0RPV6 NLPA lipoprotein 7.50138624118e-06 0.000572126970414 2.27946277066e+11 +UniRef50_P42269 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 1.72413502659e-07 1.48641259263e-07 -9597146.3772 +UniRef50_Q8KFL5 Isoleucine tRNA ligase 1.41909781117e-08 2.12184831195e-08 2837090.00883 +UniRef50_H1Y7F7 NAD dependent protein deacylase 3.36047597323e-06 7.77923751283e-05 30049071071.0 +UniRef50_M9VFI4 1.3183445478e-06 2.98585805511e-05 11522043502.6 +UniRef50_UPI00022CAAEE PREDICTED 1.79824495354e-08 2.35061390333e-08 2229981.23359 +UniRef50_UPI0003613834 hypothetical protein 1.73950425021e-06 1.81067113069e-06 28730942.9656 +UniRef50_Q5HKX5 Conserved domain protein 5.0910459403e-05 5.59862653529e-05 2049165149.12 +UniRef50_D6K6B4 Membrane protein 1.80597205172e-06 4.82200774443e-06 1217610620.07 +UniRef50_Q46888 3.88241312794e-05 2.09705797622e-05 -7207697835.21 +UniRef50_UPI00037BC975 hypothetical protein 6.3947995105e-08 1.702219459e-07 42904098.064 +UniRef50_P67097 Phosphodiesterase YfcE 2.0277725865e-05 3.36223952777e-06 -6828989410.69 +UniRef50_Q01464 Septum site determining protein MinD 4.17676669498e-06 0.000328186939356 1.30806882755e+11 +UniRef50_Q7NV70 2.04700640185e-07 3.827502394e-07 71880808.1174 +UniRef50_E3DHU2 Copper homeostasis protein CutC 1.79262147948e-05 1.4011612397e-05 -1580373025.57 +UniRef50_W9A1R1 4.8992425257e-07 6.68714084441e-06 2501892386.53 +UniRef50_V5XRZ5 Iron sulfur cluster formation protein IscU 2.22277638252e-05 3.16565061885e-05 3806498995.74 +UniRef50_Q88AZ5 33 kDa chaperonin 6.24942113372e-06 1.98421078525e-06 -1721917757.69 +UniRef50_Q038S0 Histidine tRNA ligase 7.69056039925e-05 7.81927531165e-05 519637896.455 +UniRef50_I7ECV7 Peptidoglycan binding like protein 8.63556432081e-05 1.74931666715e-05 -27800626815.4 +UniRef50_O82357 3 methyl 2 oxobutanoate hydroxymethyltransferase 1, mitochondrial 9.72161221918e-08 7.9729716289e-08 -7059476.64529 +UniRef50_A6M083 6.98474112219e-06 1.44301891136e-05 3005818720.05 +UniRef50_Q9RUA4 Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase 6.47488831609e-07 0.000299037189407 1.20463583776e+11 +UniRef50_Q1R133 Binding protein dependent transport systems inner membrane component 8.7607889705e-05 3.70258506363e-05 -20420589883.5 +UniRef50_UPI00036278A6 hypothetical protein 2.62376669271e-07 7.26632620899e-07 187425824.733 +UniRef50_Q46897 CRISPR system Cascade subunit CasE 6.17034080573e-06 6.51433908512e-06 138876326.723 +UniRef50_Q5HK76 Type 1 restriction enzyme R protein 0.000136900575712 2.66824228147e-05 -44496420853.3 +UniRef50_B8ETJ4 Exodeoxyribonuclease III Xth 4.71640929746e-05 1.12539609278e-05 -14497360974.2 +UniRef50_Q2G1E0 0.000222947432011 6.28311318205e-05 -64640915235.1 +UniRef50_UPI00037146D6 hypothetical protein 1.18453923054e-07 1.73148644897e-06 651201024.849 +UniRef50_C3BKF8 Glucose 6 phosphate 1 dehydrogenase 9.69858678207e-05 4.66866331903e-05 -20306418261.3 +UniRef50_UPI0003770934 hypothetical protein, partial 2.1729149811e-07 5.39791895155e-07 130197367.812 +UniRef50_P25894 Metalloprotease LoiP 4.93017241239e-05 4.69380838447e-06 -18008762984.7 +UniRef50_D5WIJ5 3.83572031393e-05 1.9881862466e-05 -7458721747.74 +UniRef50_Q2FG30 0.000168787941101 4.97717591496e-05 -48048293146.4 +UniRef50_UPI0003486BCB hypothetical protein 2.87771395707e-07 1.08168123539e-07 -72508044.9542 +UniRef50_A0A058ZKQ4 1.21523931441e-06 8.89771026182e-07 -131395541.903 +UniRef50_Q8ZGW9 ATP dependent dethiobiotin synthetase BioD 1 3.0759846226e-05 5.30567313021e-06 -10276162036.6 +UniRef50_Q4T799 Chromosome undetermined SCAF8206, whole genome shotgun sequence. 8.06559542486e-08 6.78036336496e-08 -5188639.54153 +UniRef50_UPI000471EE06 cobyrinic acid a c diamide adenosyltransferase, partial 1.49181877615e-07 2.27416587031e-07 31584312.2391 +UniRef50_A1B4D6 Glutathione S transferase, N terminal domain 8.00627668805e-05 4.23926028254e-05 -15207907493.9 +UniRef50_Q08XU8 Cupin domain protein 1.41852398023e-06 9.24841724393e-07 -199305584.844 +UniRef50_UPI000363B7A3 hypothetical protein 5.80431917768e-08 4.25010454162e-08 -6274555.20936 +UniRef50_UPI0003C11C7F PREDICTED 6.12215409447e-08 7.49450367301e-08 5540343.6548 +UniRef50_Q731B9 Arginine repressor 0.000218166278284 0.000126797083368 -36886865213.7 +UniRef50_G8AXA5 2.91621116805e-07 7.4922148386e-08 -87484032.7461 +UniRef50_Q83HH5 Tyrosine tRNA ligase 4.76171256653e-08 7.42471970714e-07 280521427.774 +UniRef50_Q0AVU0 tRNA N6 adenosine threonylcarbamoyltransferase 1.19305216735e-07 2.09555511277e-07 36435151.4023 +UniRef50_P0AE38 Arginine N succinyltransferase 2.87075485404e-05 0.000130608765108 41138771597.0 +UniRef50_P04395 DNA 3 methyladenine glycosylase 2 3.74228533493e-05 1.36447910301e-05 -9599495547.9 +UniRef50_F5J5S5 1.7772548577e-06 1.93256287437e-06 62699752.1734 +UniRef50_UPI00046D4F30 hypothetical protein 1.57251818611e-07 3.61426025222e-07 82427632.7081 +UniRef50_A9M0E5 Aminopeptidase 6.75287994386e-07 3.89519881441e-05 15452773558.4 +UniRef50_I0C1S3 Phosphatidylglycerophosphatase B like protein 7.97868131592e-05 5.27489367419e-05 -10915522501.7 +UniRef50_C7QKF9 YCII related protein 2.55600322554e-07 2.16222071142e-07 -15897483.3205 +UniRef50_M9VHR6 Glycerophosphodiester phosphodiesterase family protein 3.77485988848e-06 6.93370461968e-05 26468259151.2 +UniRef50_UPI00046FEF92 hypothetical protein 3.37331790253e-07 7.01902221953e-08 -107848329.221 +UniRef50_I4CSN5 1.40162593151e-05 6.32418901693e-06 -3105383171.69 +UniRef50_F9Z0L2 Iron compound ABC transporter 1.07749874196e-06 7.40240563125e-05 29449420446.1 +UniRef50_M5JV17 Phosphate ABC transporter substrate binding protein 2.31989994359e-06 2.70898563501e-07 -827207001.217 +UniRef50_Q31GL4 Leucyl phenylalanyl tRNA protein transferase 7.3705388953e-08 3.13081134835e-07 96638926.0833 +UniRef50_K7TDT2 Putative transposase 2.41750561162e-07 6.58260801216e-08 -71022871.832 +UniRef50_F8B2H9 Molybdopterin guanine dinucleotide biosynthesis protein 4.58387003117e-08 1.89335242328e-07 57931314.9124 +UniRef50_UPI0004432FDF PREDICTED 1.27225090402e-07 3.27118837227e-07 80699558.5654 +UniRef50_S5KCJ9 Membrane protein 3.46400417276e-07 1.0509487984e-05 4102963165.79 +UniRef50_D4LGK2 Phosphate starvation inducible protein PhoH, predicted ATPase 3.29981237393e-05 2.01655029881e-05 -5180686471.22 +UniRef50_UPI000377EEE9 hypothetical protein 4.05954613745e-08 3.13657959448e-05 12646367838.6 +UniRef50_Q9RRI3 Medium chain fatty acid CoA ligase 3.36805123903e-06 0.000357362648588 1.42911962952e+11 +UniRef50_B0VCS4 1.37434219241e-06 6.64408001158e-05 26268127518.9 +UniRef50_P24203 1.82285521896e-05 3.86099473648e-06 -5800359253.57 +UniRef50_UPI0003012608 hypothetical protein 4.10902224077e-08 6.27155953802e-08 8730428.44217 +UniRef50_Q899J0 PUR operon repressor 3.44449151545e-06 3.33640587569e-05 12078896449.7 +UniRef50_Q5XE79 Thioredoxin 5.9603050871e-06 5.69742839604e-06 -106126546.041 +UniRef50_P17330 Glyceraldehyde 3 phosphate dehydrogenase 3 1.12216060667e-07 9.96818648388e-08 -5060208.66772 +UniRef50_M1P7F7 Cytoplasmic membrane protein 1.91190200118e-07 3.05365020471e-05 12250774771.5 +UniRef50_Q9A0R7 Putative gluconeogenesis factor 6.77759652053e-05 2.98372904513e-05 -15316308558.1 +UniRef50_J6CKR7 Transketolase 1.58772547921e-06 6.45371934968e-07 -380439689.789 +UniRef50_UPI000478E5C6 hypothetical protein 1.03273291624e-07 1.75103096212e-06 665219991.841 +UniRef50_Q39K93 UDP N acetylglucosamine 1 carboxyvinyltransferase 3.65393807056e-07 7.47428814301e-07 154232220.522 +UniRef50_B6JM63 Polyamine aminopropyl transferase 1.69783803081e-06 3.30963782393e-05 12675975985.6 +UniRef50_UPI0004742BB7 glucose 1 phosphate thymidylyltransferase 2.1560237932e-06 1.42075918507e-06 -296835345.013 +UniRef50_Q2L0H5 sn glycerol 3 phosphate import ATP binding protein UgpC 4.80072726845e-05 1.29300445818e-05 -14161107431.1 +UniRef50_UPI00046FFCEC ABC transporter ATP binding protein, partial 6.29182304652e-08 2.63032216502e-07 80788471.8379 +UniRef50_Q5M1U2 D alanyl D alanine carboxypeptidase 7.84593992108e-05 1.84091945706e-05 -24243004512.1 +UniRef50_Q6MHV9 Bifunctional protein GlmU 4.22081263642e-08 6.82482787235e-08 10512729.0561 +UniRef50_B9KRH9 Glycosyl transferase, family 2 3.11542428208e-05 1.24814614927e-05 -7538430962.95 +UniRef50_UPI0004785B9B DNA directed RNA polymerase subunit beta 3.25383094543e-08 1.58504676033e-08 -6737086.5381 +UniRef50_Q3JM24 Potassium efflux system protein 2.27061636911e-06 9.2295274757e-05 36344059318.0 +UniRef50_UPI00036DE10D hypothetical protein 4.52827932954e-06 7.85547781407e-07 -1510986654.46 +UniRef50_A0A021WXJ4 1.54809588524e-07 2.59345571643e-07 42202459.1859 +UniRef50_UPI000369982C hypothetical protein 1.19239854999e-07 1.1585809878e-07 -1365256.48443 +UniRef50_UPI00045EC2D5 hypothetical protein 6.84942887198e-07 7.26341988685e-08 -247196531.351 +UniRef50_UPI000441EDB2 PREDICTED 7.4692537161e-08 2.22672187371e-07 59741200.7043 +UniRef50_G8VLT1 Tryptophanase L cysteine desulfhydrase, PLP dependent 3.32441248351e-06 5.58806556191e-05 21217600291.5 +UniRef50_B2VB13 TraW protein 8.43207081217e-07 2.98953532783e-07 -219721836.245 +UniRef50_UPI0002192F7F molybdopterin biosynthesis protein MoeB, partial 8.10518595153e-08 2.08271782494e-07 51360244.0706 +UniRef50_UPI0003803CF1 hypothetical protein 4.59949261723e-08 1.87177710338e-07 56997222.4754 +UniRef50_C5N2S8 0.000201677760263 9.89047471669e-05 -41490726553.5 +UniRef50_A9M1X9 3.00386728529e-06 1.5111157669e-05 4887861701.06 +UniRef50_UPI0003622625 hypothetical protein 8.03838721625e-08 5.78172758859e-08 -9110411.84014 +UniRef50_M4RDW5 Glycosyltransferase 3.1632904094e-06 5.75967175538e-05 21975442511.5 +UniRef50_Q49ZP2 3.93217206925e-07 6.27008115306e-07 94384258.6505 +UniRef50_G5P8G8 Peptide transport system permease protein sapB 1.38163080354e-06 1.61712070374e-06 95070162.4968 +UniRef50_UPI0003F6BA02 cysteinyl tRNA synthetase 2.97018692777e-08 6.57885778531e-08 14568647.0856 +UniRef50_UPI00034C3E89 hypothetical protein 8.55928739509e-08 1.16634588696e-07 12531921.1673 +UniRef50_F5YFX0 Polar amino acid ABC transporter, inner membrane subunit 5.42471217641e-06 1.11728182699e-05 2320580967.14 +UniRef50_F2AIJ3 7.06935002209e-06 5.06526527332e-06 -809073605.964 +UniRef50_R6Z8P0 1.21604351698e-07 6.27948006139e-07 204417146.833 +UniRef50_UPI00036C444A hypothetical protein 4.26933167686e-08 4.8833886478e-08 2479023.34495 +UniRef50_A2SNL7 Essential for conjugative transfer protein 8.80703315204e-08 5.96376414866e-08 -11478625.875 +UniRef50_UPI000471BC8E protease I 6.46407211153e-08 2.40343131672e-07 70933219.2529 +UniRef50_Q5LSV7 Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein 6.93969864512e-05 1.87100436971e-05 -20462940788.6 +UniRef50_U5URI8 0.000125376454674 3.51300905302e-05 -36433564652.3 +UniRef50_B9KPC4 8.7821285884e-06 6.91814432947e-06 -752513318.989 +UniRef50_D3Q1B6 3.21442600597e-08 1.62603260229e-07 52667899.2802 +UniRef50_M9VB10 LysR family transcriptional regulator 4.09926333486e-06 4.08736463252e-05 14846269685.6 +UniRef50_N6DL92 4.78986197002e-07 9.62554032953e-07 195222269.418 +UniRef50_T1ATE5 1.00685038387e-05 8.61069163238e-07 -3717154366.41 +UniRef50_Q91TH9 T121.1 4.57947330841e-08 6.45239662439e-07 242003273.997 +UniRef50_Z5XAD0 Aldehyde dehydrogenase 4.61808795981e-07 5.52692201143e-07 36690745.9287 +UniRef50_K2I608 Flp pilus assembly protein, pilin Flp 6.10388052284e-07 4.91993938983e-07 -47797156.3988 +UniRef50_UPI0003C13F57 PREDICTED 2.40038874048e-07 1.33115865362e-07 -43166130.6994 +UniRef50_I6U0J6 3.47990655782e-05 2.21683611563e-05 -5099170371.29 +UniRef50_Q8FHD1 1.83686914013e-05 2.590497414e-06 -6369850532.89 +UniRef50_Q9PMA7 NADH quinone oxidoreductase subunit L 1.34199311951e-06 4.17688888495e-05 16320833900.0 +UniRef50_A4QB30 7.11093234097e-06 3.68305228797e-05 11998163400.9 +UniRef50_UPI000376F2DA hypothetical protein 5.08046253202e-08 1.66458676634e-07 46690959.7503 +UniRef50_H6PBU2 Nitroreductase 5.42263006044e-05 1.04947157278e-05 -17654977461.6 +UniRef50_UPI00035E79DC transcriptional regulator 6.25107013103e-08 1.03226073193e-07 16437295.2628 +UniRef50_UPI00037CCCC7 hypothetical protein 1.48393381764e-06 3.37766509089e-07 -462721807.516 +UniRef50_M5E3Y3 5.0715559381e-07 3.22137325423e-07 -74694145.3773 +UniRef50_A0B5U4 Glycine tRNA ligase 2.49789424029e-05 6.95418270102e-06 -7276816680.33 +UniRef50_A4EG79 2.20651283011e-07 5.39840861795e-07 128860749.852 +UniRef50_D1BHZ8 Ribonucleoside triphosphate reductase class III catalytic subunit 0.000178772329257 9.45252018795e-05 -34011599150.8 +UniRef50_Q3IV40 0.000180353974429 3.94939770027e-05 -56866909507.4 +UniRef50_UPI0003823B5A hypothetical protein 1.62208389222e-06 5.25972924986e-07 -442513448.265 +UniRef50_UPI000466ECBC 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 6.20964248235e-07 4.50018327546e-07 -69012965.9245 +UniRef50_UPI0003F0E20A PREDICTED 2.60919668781e-07 2.88660950613e-08 -93682875.3283 +UniRef50_K0L2H6 3.48731917626e-05 1.82388052857e-05 -6715505947.6 +UniRef50_O06997 3.26367193234e-06 1.85325487027e-05 6164232922.4 +UniRef50_UPI00038F646F Response regulator MprA 6.4631430147e-07 2.59967892613e-06 788597269.455 +UniRef50_W7SSQ1 GGDEF domain protein 1.97908183121e-07 2.13362176081e-06 781471325.19 +UniRef50_Q03Q51 Phosphopentomutase 1.32177393866e-07 2.27975597455e-05 9150292990.86 +UniRef50_Q0BT08 Ribosomal RNA large subunit methyltransferase E 8.58114061088e-07 4.851893146e-07 -150554296.458 +UniRef50_A7ZVQ2 Primosomal protein 1 1.12346754031e-05 5.3693946399e-05 17141328734.9 +UniRef50_A9GTV7 2.39495960222e-06 3.54925767779e-06 466004297.938 +UniRef50_Q4UU98 Probable chemoreceptor glutamine deamidase CheD 3.03126252081e-06 1.57181386636e-06 -589197331.25 +UniRef50_UPI0003781C90 hypothetical protein 2.58853552028e-06 3.6919614546e-07 -895974539.972 +UniRef50_UPI00037EAB74 hypothetical protein 1.81590546566e-07 2.73744602056e-07 37203723.0587 +UniRef50_V6FEQ6 3.18009513062e-06 4.73178529513e-06 626436360.792 +UniRef50_I6T6N0 3.67469673017e-05 2.23414832775e-05 -5815670675.74 +UniRef50_UPI0003608CB6 MULTISPECIES 3.69775141068e-08 7.29794709932e-08 14534431.7887 +UniRef50_K7RUR3 ABC 2 type transporter 6.7957666549e-06 9.72553870458e-05 36519658816.2 +UniRef50_A3VVX3 4.47437526371e-08 2.40643469648e-08 -8348529.83475 +UniRef50_UPI0001DEA90D PREDICTED 7.61120464961e-07 3.66215655028e-06 1171183867.36 +UniRef50_UPI00047E64E1 CreA 1.41969949062e-07 1.83563993704e-07 16792026.2383 +UniRef50_UPI0003B67BBB 23S rRNA tRNA pseudouridine synthase A 1.13436626706e-06 3.72191998179e-07 -307699105.277 +UniRef50_U1T6A5 1.71240474828e-06 4.61076010919e-08 -672704606.086 +UniRef50_A6LRD1 Aldehyde dehydrogenase 2.68525912586e-06 1.68832351465e-05 5731897148.27 +UniRef50_UPI000369B8F0 hypothetical protein 4.19299672821e-08 6.20294369383e-08 8114402.54844 +UniRef50_UPI0003476644 hypothetical protein 6.06753103765e-08 6.52343398641e-08 1840536.14973 +UniRef50_R9ZF26 TonB denpendent receptor 2.60148305909e-06 6.38992454516e-06 1529440317.33 +UniRef50_Q7A363 Accessory Sec system protein translocase subunit SecY2 0.000107025730992 3.20866134013e-05 -30253841377.8 +UniRef50_UPI000380209B hypothetical protein 9.0739652157e-08 7.99926156069e-08 -4338710.53624 +UniRef50_P0DF46 Ribosomal RNA small subunit methyltransferase I 4.48546933394e-05 2.14544793178e-05 -9446953553.44 +UniRef50_A5W3B8 Peptidase S14, ClpP 6.76360138888e-06 1.35736744886e-05 2749310079.35 +UniRef50_Q5FQ01 2.74202897477e-06 8.71440366181e-06 2411120950.44 +UniRef50_Q92GB7 DNA polymerase I 4.22315376677e-08 4.59737825617e-07 168552411.823 +UniRef50_I6TNQ1 Aminotransferase 5.15219495143e-05 1.41488660305e-05 -15087972421.7 +UniRef50_Q1QU75 tRNA pseudouridine synthase D 5.35700096481e-08 7.43303865114e-08 8381218.89819 +UniRef50_A5UNR6 Heavy metal cation efflux system protein, CzcD family 2.61759245498e-05 1.21116054319e-05 -5677938216.5 +UniRef50_G7TK32 Transposase 8.81354951222e-07 5.98437280839e-07 -114217335.324 +UniRef50_Q7VR12 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.38796330284e-07 4.4122286499e-07 122093303.252 +UniRef50_S5XNV8 6.61221835203e-06 5.53493731199e-07 -2445981478.34 +UniRef50_UPI00037F4A8F hypothetical protein 1.75055290185e-08 1.37416490305e-07 48409526.5445 +UniRef50_F9Z292 3.08571653009e-06 7.66125039411e-05 29683666353.0 +UniRef50_A1AT66 Ribonuclease H 4.32874287242e-07 2.44220327035e-07 -76161918.78 +UniRef50_O64174 Ribonucleoside diphosphate reductase subunit beta 2.68415998084e-06 0.000305957264838 1.2243507401e+11 +UniRef50_UPI000470D991 hypothetical protein 8.4171636485e-08 1.29691557244e-06 489599608.989 +UniRef50_A0A037J8C0 1.67180069528e-06 6.07438984785e-07 -429695883.716 +UniRef50_UPI0003B5DFE1 ABC transporter 5.70795251979e-08 5.77510498744e-08 271102.752437 +UniRef50_A5N2H8 FprA 9.87321679628e-07 4.05566271772e-06 1238726929.86 +UniRef50_Q5HNZ9 5 formyltetrahydrofolate cyclo ligase family protein 9.53598762576e-05 1.01669026154e-05 -34393448894.7 +UniRef50_A5F9H5 Glutaminase 1.0432399595e-05 1.93212608989e-05 3588542386.98 +UniRef50_UPI00036F62C9 hypothetical protein 1.13869069403e-06 2.41150541602e-07 -362347973.591 +UniRef50_P33744 Aldehyde alcohol dehydrogenase 7.85668334076e-06 2.01154903379e-05 4949030817.21 +UniRef50_Q2JPT8 GTP cyclohydrolase 1 3.78649620518e-07 5.55934811879e-07 71572207.2864 +UniRef50_K4W2H2 Cyclic di GMP phosphodiesterase 3.60044551279e-05 8.07352330822e-06 -11276059926.7 +UniRef50_B9TCQ2 5.116307668e-07 5.65602267857e-06 2076854143.57 +UniRef50_UPI0003648E77 hypothetical protein 7.64492004097e-08 1.45186538781e-08 -25002121.6081 +UniRef50_Q2Y7Q1 6.11820043457e-08 1.75842189288e-07 46289723.6998 +UniRef50_A0A023PYQ4 9.50540892723e-08 7.97864081147e-06 3182700702.24 +UniRef50_D3E0R6 Chaperone protein DnaJ 4.34622944607e-05 1.75262139585e-06 -16838706851.5 +UniRef50_P27896 Nitrate nitrite sensor protein NarQ 3.19346006189e-05 1.20516911142e-05 -8026974557.78 +UniRef50_A7ZS72 Phosphoglucosamine mutase 3.83661085e-05 1.68063508078e-05 -8703938748.32 +UniRef50_UPI00035EC538 hypothetical protein 1.11578469607e-06 1.41815483016e-06 122070533.631 +UniRef50_P27756 Alpha galactosidase 4.11525060023e-05 2.93537268932e-05 -4763311913.65 +UniRef50_Q6D3F5 Isopentenyl diphosphate Delta isomerase 5.6549084627e-07 1.44530011473e-07 -169947054.778 +UniRef50_UPI0003706CCB hypothetical protein 8.68242173544e-08 3.58327583379e-07 109609240.585 +UniRef50_D3E1V5 CBS domain containing protein 2.82302681276e-05 8.75435417395e-06 -7862665459.45 +UniRef50_F0QEA5 Sphingosine kinase 1.26108904961e-06 4.13647106439e-05 16190324164.4 +UniRef50_Q8DTR9 4.74861512093e-05 1.79310416651e-05 -11931760405.0 +UniRef50_Q1GIV4 UDP N acetylmuramoylalanine D glutamate ligase 3.09118556446e-05 2.76671673455e-06 -11362537957.7 +UniRef50_P46534 Orotate phosphoribosyltransferase 2.18888001338e-07 7.29022429163e-07 205947528.566 +UniRef50_F0YBU9 Expressed protein 3.14838525889e-06 7.45568273148e-06 1738908846.17 +UniRef50_C0W8D6 Rhamnan synthesis protein F 3.90861041832e-08 6.73469947604e-08 11409268.3261 +UniRef50_UPI0003B75B95 50S ribosomal protein L5 2.85079679051e-06 3.0907090492e-06 96855522.8876 +UniRef50_Q3KIW5 NH dependent NAD(+) synthetase 3.72762508221e-07 8.54712936459e-07 194569302.077 +UniRef50_J7P463 3.06995049524e-08 1.47482838249e-05 5941669395.01 +UniRef50_Q9CM47 Macrolide export ATP binding permease protein MacB 4.92591917552e-08 5.45788115749e-08 2147595.80029 +UniRef50_G9AIM1 1.80366662437e-07 1.53524453604e-06 546980823.793 +UniRef50_B5JD39 9.86043697982e-08 4.4602812168e-06 1760862466.93 +UniRef50_Q9RSR2 WD repeat family protein 1.70294431062e-06 2.24370664436e-05 8370619541.38 +UniRef50_X6XZ89 3.35093665908e-06 4.76317266442e-06 570137005.44 +UniRef50_A0A059LAV6 2.54362452988e-06 1.04140303084e-05 3177379393.53 +UniRef50_B4U4I6 Holliday junction resolvase RecU 5.23255317461e-05 3.74657647497e-05 -5999070286.29 +UniRef50_K1Y1K5 2.68197404208e-06 2.43707715944e-07 -984358036.755 +UniRef50_UPI00035C76C3 hypothetical protein 3.69101124056e-07 1.15819582152e-06 318567212.647 +UniRef50_A6VC61 Peptide chain release factor 1 1.04857219123e-06 5.24727750822e-06 1695068860.38 +UniRef50_UPI0003B52326 histidinol dehydrogenase 4.25276531165e-08 6.79367154058e-08 10257950.2504 +UniRef50_F2I852 Oxidoreductase, FAD FMN binding protein 0.000123860860977 2.62569456892e-05 -39403898336.4 +UniRef50_P16145 Probable Ni Fe hydrogenase B type cytochrome subunit 0.000133509655413 3.61854205527e-05 -39290987915.8 +UniRef50_A6LWU3 1.64171288694e-06 6.95123701435e-06 2143520045.42 +UniRef50_D3A715 4.20715349579e-07 3.73344124034e-06 1337388093.82 +UniRef50_A0L482 N acetyl gamma glutamyl phosphate reductase 1.80478029372e-07 4.57015280711e-07 111641481.859 +UniRef50_UPI000422BA91 hypothetical protein 4.89180370941e-08 2.23317412968e-07 70407168.1613 +UniRef50_P76161 Antitermination protein Q homolog from lambdoid prophage Qin 4.11988336238e-05 6.71401975318e-06 -13921942535.8 +UniRef50_U2ZTD9 3.64853280566e-09 1.02019073006e-08 2645677.70256 +UniRef50_O85309 Excision nuclease UvrA 1.65397083937e-06 2.20896865529e-06 224059428.876 +UniRef50_Q8DHS3 Acyl carrier protein 3.06587621384e-07 4.10015961402e-06 1531511565.79 +UniRef50_Q8UJC5 Shikimate dehydrogenase 4.31228389481e-07 3.66856330652e-07 -25987790.0833 +UniRef50_UPI00046D3AA4 hypothetical protein 3.11426395258e-07 3.33634067777e-07 8965509.91471 +UniRef50_UPI0003B31446 peptide ABC transporter ATP binding protein 2.24321947669e-08 7.84466514374e-08 22613723.5326 +UniRef50_D5ZSF1 3.90903464139e-06 1.49262702056e-05 4447793193.95 +UniRef50_B2V197 Helix turn helix domain protein 1.12235675575e-06 6.54633767157e-06 2189727655.45 +UniRef50_UPI000373CA50 hypothetical protein 3.03701598461e-07 1.28539087464e-06 396320007.476 +UniRef50_A7HRI8 UPF0260 protein Plav_0898 0.000168196798655 2.35573535507e-05 -58392718914.1 +UniRef50_UPI0002F72AC7 hypothetical protein 1.02926004363e-07 1.94158547558e-06 742289391.42 +UniRef50_S5XR90 Aminotransferase 0.000127036950058 3.75226913531e-05 -36138004702.6 +UniRef50_A1B4T6 3.20802591739e-06 7.96650812189e-06 1921057659.1 +UniRef50_A0A058TF07 Periplasmic binding protein LacI transcriptionalregulator 1.29417307607e-06 2.58216515044e-07 -418228376.304 +UniRef50_B8J6J0 1.23483872819e-07 9.7951084547e-07 345588593.491 +UniRef50_UPI0003692945 hypothetical protein 2.10807954063e-07 2.62882541962e-07 21023150.1619 +UniRef50_A7ZSA7 Monofunctional biosynthetic peptidoglycan transglycosylase 7.12280325678e-05 4.2288788334e-06 -27048380534.6 +UniRef50_P0A6C2 Endonuclease 4 3.20459178605e-05 5.28843867512e-05 8412745607.94 +UniRef50_G8ATW7 1.24628748879e-06 3.27827436784e-07 -370793593.767 +UniRef50_UPI000471B5FA hypothetical protein, partial 4.3003955889e-07 1.07944283316e-06 262172070.897 +UniRef50_U6I1P7 Fibrillar collagen chain FAp1 alpha 8.39830604904e-08 5.24758030807e-08 -12719866.4538 +UniRef50_F0KI43 Transcriptional regulator, LysR family 1.73158710486e-06 6.72179916575e-05 26437665126.4 +UniRef50_UPI0004763F0C GTP binding protein Era, partial 1.8388975208e-07 1.53093910305e-06 543820353.141 +UniRef50_W0YTS0 Periplasmic tail specific protease 9.18601726542e-06 1.70656713888e-06 -3019545799.26 +UniRef50_P53652 Superoxide dismutase [Mn] 2.29242503354e-06 6.56831859363e-07 -660309035.402 +UniRef50_UPI000427CAFD hypothetical protein 1.2400920263e-08 1.63439733752e-07 60976222.4602 +UniRef50_B2FUP3 1.2609140758e-06 8.08936753714e-07 -182468791.312 +UniRef50_H0JKI3 DNA polymerase II large subunit 2.84570488317e-08 6.65832759929e-07 257316396.049 +UniRef50_V5S959 Dihydroorotate dehydrogenase 3.36627398679e-06 2.034295502e-07 -1276879111.52 +UniRef50_Q9RSJ1 2.02236956248e-08 1.50945756858e-05 6085700881.54 +UniRef50_Q2C7C2 3.25193248383e-07 3.15305420154e-07 -3991837.59334 +UniRef50_A8SBF8 2.68210129445e-07 1.96921715916e-07 -28780007.3489 +UniRef50_P32129 Probable acyltransferase YihG 2.85654272014e-05 2.09197193767e-06 -10687658755.8 +UniRef50_UPI00016A4C3D hypothetical protein 1.84144043637e-06 7.97452775599e-07 -421470629.822 +UniRef50_B5Z3J3 8.52570495091e-07 1.28756323673e-07 -292212663.2 +UniRef50_Q1BAN7 1.97988196541e-05 6.21022837143e-05 17078427563.0 +UniRef50_G0NRW8 2.22064278335e-08 2.62719878332e-07 97098231.3984 +UniRef50_UPI00022CA8A0 PREDICTED 5.27460627209e-07 8.08391205407e-05 32422802642.0 +UniRef50_C1F933 Aminomethyltransferase 2.21622872946e-07 1.48384872564e-07 -29567079.4855 +UniRef50_R7ACY8 Dyp type peroxidase 2.67089143052e-06 4.11570230027e-05 15537323593.6 +UniRef50_F0VQM4 6.46002187561e-08 1.01089698222e-07 14731250.6367 +UniRef50_UPI0004710988 hypothetical protein 5.2294531821e-07 6.91296175571e-07 67965307.014 +UniRef50_Q8FHF8 Protein YdeP 1.7293100796e-05 7.56766628069e-06 -3926277258.33 +UniRef50_R4ZTR9 Hydrolase, haloacid dehalogenase like family 0.000102276243361 2.96800708731e-06 -40091953632.8 +UniRef50_UPI0003B58A15 hypothetical protein 5.80443599072e-08 8.726629228e-08 11797252.6923 +UniRef50_UPI00046F911C riboflavin biosynthesis protein RibF 1.00971532303e-07 1.28967646164e-07 11302374.7166 +UniRef50_UPI0003B578C2 LuxR family transcriptional regulator 9.23911855955e-08 1.17084296089e-07 9968911.72477 +UniRef50_D9W2E7 BldA regulated nucleotide binding protein 1.85918559711e-06 3.03465333238e-06 474550749.34 +UniRef50_Q4PIL0 Catabolic 3 dehydroquinase 1.15137153741e-06 4.08506579921e-07 -299903699.316 +UniRef50_D2ZRP9 Conserved repeat protein 6.07759462445e-06 3.14926774661e-06 -1182201495.2 +UniRef50_K4Z6Z2 Lipoprotein, YaeC family 8.08844018573e-07 4.80546487882e-07 -132537741.804 +UniRef50_UPI0003730702 hypothetical protein 6.56974493527e-08 3.84611870077e-07 128749665.166 +UniRef50_UPI000237AA64 binding protein dependent transporter inner membrane component 5.12804946669e-07 1.11302818994e-07 -162091335.928 +UniRef50_P41338 Acetyl CoA acetyltransferase 4.83959499634e-08 6.12146257819e-08 5175056.73077 +UniRef50_R4RQD5 Exodeoxyribonuclease I 5.14829119411e-06 4.71844902017e-06 -173532560.376 +UniRef50_B6JP11 L seryl tRNA selenium transferase 1.25828662949e-06 2.98919840628e-05 11559775028.8 +UniRef50_B9KSR5 Acetyltransferase 5.79538265564e-05 2.03620737595e-05 -15176251906.8 +UniRef50_A5WGD9 Endonuclease exonuclease phosphatase 1.06835657221e-06 7.36630417068e-05 29307365225.8 +UniRef50_UPI0003B3F986 esterase, partial 2.71214784362e-07 2.51235417726e-07 -8065915.48535 +UniRef50_B5F9P6 Isopentenyl diphosphate Delta isomerase 6.0617201478e-07 1.58329251885e-07 -180799619.029 +UniRef50_UPI00046D1DF4 hypothetical protein 8.38863447297e-08 1.23517531901e-06 464789486.821 +UniRef50_A0A059IPL7 5.34735206893e-06 1.42895179933e-05 3610062116.38 +UniRef50_D7I1Z5 Protein involved in meta pathway of phenol degradation 1.61779709512e-06 3.745383422e-05 14467447944.9 +UniRef50_UPI0003B7A9E3 methionine aminopeptidase 5.43914057364e-07 1.16668616977e-07 -172484227.175 +UniRef50_UPI00046D808E hypothetical protein 2.91123084894e-08 1.44467485761e-05 5820576685.52 +UniRef50_UPI0002898699 glycosyl transferase family protein 3.17717022939e-07 3.0717773612e-07 -4254839.42042 +UniRef50_P33639 Sensor protein PilS 5.15975548047e-06 6.97369982521e-06 732311591.572 +UniRef50_P27250 Aldehyde reductase Ahr 3.54454248924e-05 9.28659750962e-05 23181380746.7 +UniRef50_I0J9Y4 6.50534735772e-05 1.04229425363e-05 -22055015773.2 +UniRef50_UPI00047854C4 hypothetical protein 5.98539522028e-08 7.8823458602e-08 7658222.51538 +UniRef50_B9KRB9 5.62887624012e-05 1.22483601538e-06 -22229982792.3 +UniRef50_C9TQ56 TRAP dicarboxylate transporter 2.98489511065e-07 3.89094289149e-07 36578260.7582 +UniRef50_Q4V0C6 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.82223519066e-08 1.14161343066e-07 14509011.7521 +UniRef50_Q9HTN0 1.60643458038e-05 5.0384727275e-06 -4451280263.58 +UniRef50_E8QKR2 Zinc dependent alcohol dehydrogenase 1.46123608583e-06 4.00907448043e-05 15595206707.0 +UniRef50_UPI000413BA09 sugar kinase 1.1875082649e-06 9.68496145918e-07 -88417880.014 +UniRef50_Q4LAB5 Protein ArsC 1 8.14343949632e-05 8.35801995839e-06 -29501829337.4 +UniRef50_R8ZEH6 Putative major facilitator superfamily transporter 3.44911741645e-06 6.87418122876e-06 1382740291.29 +UniRef50_UPI0002E5E41F hypothetical protein 4.35266714093e-08 2.93482529109e-07 100910247.057 +UniRef50_Q5LQC3 Putative arginyl tRNA protein transferase 9.2098333498e-05 1.85965957167e-05 -29673553510.1 +UniRef50_UPI000288DE5F cation 2.73441013945e-06 2.5927681651e-06 -57182603.1876 +UniRef50_UPI0004716842 hypothetical protein 1.12614959586e-07 1.61564020544e-07 19761336.5813 +UniRef50_Q13T51 UPF0271 protein Bxeno_A4200 5.4363477413e-05 5.91786387407e-06 -19558088680.2 +UniRef50_Q9RSD6 Aminopeptidase 2.67149184478e-06 0.000325248783089 1.30228410944e+11 +UniRef50_E6RJK7 7.76909041162e-07 2.99503847075e-07 -192734335.273 +UniRef50_Q3HKI4 0.000263919569899 8.51841232426e-05 -72157693145.6 +UniRef50_Q3HKI5 0.00052782319054 0.000105830691393 -1.70363550336e+11 +UniRef50_UPI00034472D6 3.26787048208e-07 8.96767271476e-07 230108010.577 +UniRef50_Q0SI65 Putative 3 methyladenine DNA glycosylase 7.1850293024e-08 2.37330304149e-07 66806311.1593 +UniRef50_UPI000412412A phosphohydrolase 4.15305453937e-07 3.25038833951e-06 1144557751.28 +UniRef50_UPI00028909B3 Sua5 YciO YrdC YwlC family protein, partial 2.59489038596e-07 9.4729313822e-07 277674955.324 +UniRef50_E8RT81 1.04126466159e-06 3.74703858831e-07 -269098775.695 +UniRef50_P74839 Propionate catabolism operon regulatory protein 6.39791717654e-05 2.6670868257e-05 -15061819950.7 +UniRef50_A4IR80 Alanine tRNA ligase 0.000114864035546 6.86248743583e-05 -18667316789.8 +UniRef50_B9G127 8.27822558884e-07 1.0427503067e-06 86768969.2534 +UniRef50_UPI0003C17643 5.34516296268e-08 3.26701377001e-08 -8389743.30839 +UniRef50_Q83EL0 Chaperone protein HtpG 1.01411078308e-05 1.22586469392e-05 854876523.188 +UniRef50_UPI0001FFFE99 hypothetical protein 8.16381786993e-07 9.03203561744e-08 -293119909.397 +UniRef50_Q5F551 Phosphopantetheine adenylyltransferase 6.60402272903e-07 1.26831973152e-05 4853749894.86 +UniRef50_G4LM89 1.18070589173e-05 3.50826816659e-06 -3350323663.68 +UniRef50_S0F055 2.93964992691e-08 5.5889742747e-08 10695647.5007 +UniRef50_UPI0003458B5D hypothetical protein 8.61247106387e-08 8.05708223206e-07 290504694.306 +UniRef50_UPI00038FF0AB Ribonuclease H 1.44765806814e-07 9.29622841725e-07 316856416.272 +UniRef50_Q28TL6 Phosphatidylcholine synthase 8.90816149968e-05 4.50534443628e-05 -17774712771.4 +UniRef50_P15531 Nucleoside diphosphate kinase A 1.27208491738e-07 1.81766861968e-07 22025883.5683 +UniRef50_Q4L8S8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000130298642878 3.16301830304e-05 -39833668038.6 +UniRef50_UPI00046D6A82 hypothetical protein 5.25579369349e-07 1.37847939152e-07 -156531936.37 +UniRef50_O35046 Putative carboxypeptidase YocD 9.39045459123e-08 1.56859634034e-05 6294705496.85 +UniRef50_Q3S2Y2 Glycosyltransferase Gtf1 1.10874356845e-06 3.12765459478e-05 12179112021.1 +UniRef50_F8WKF3 0.000195116928842 2.36061479183e-05 -69241006933.0 +UniRef50_J4VP36 DNA polymerase III, alpha subunit 3.33370022518e-07 6.79362194553e-05 27292099896.3 +UniRef50_M1LZD3 2.75580846929e-06 3.31919299987e-06 227445248.501 +UniRef50_D7W4Z4 2.07328842744e-07 1.62776448947e-07 -17986348.0952 +UniRef50_F9Z273 Glycerol 3 phosphate dehydrogenase 1.5428582651e-06 6.91240397387e-05 27283352275.2 +UniRef50_R7PG96 2.50543797907e-06 1.26564302227e-05 4098080135.42 +UniRef50_A0A024DEK4 Lactoylglutathione lyase 2.21796076653e-05 6.52768859602e-05 17398900110.7 +UniRef50_X1FSK7 Marine sediment metagenome DNA, contig 1.35953098304e-07 1.92455974855e-07 22810904.6319 +UniRef50_E5QVT2 Riboflavin transporter RibU 8.74963798593e-05 3.69145881487e-06 -33833075027.7 +UniRef50_W4RLM9 Transketolase 1.57708015486e-06 8.4563939649e-07 -295291609.941 +UniRef50_P45564 3.51669937676e-05 1.09130256553e-05 -9791624556.59 +UniRef50_Q8CQW0 9.39593818585e-05 4.09978365661e-05 -21381225745.8 +UniRef50_UPI0002FD0224 hypothetical protein 1.04280371092e-07 8.9150362921e-07 317811689.618 +UniRef50_U6I5L2 Propionyl coenzyme A carboxylase alpha chain 4.88410051516e-08 3.57671691119e-08 -5278068.04324 +UniRef50_G2JJI4 4.86358319742e-06 5.09848402169e-05 18619717430.2 +UniRef50_UPI0003694B5F hypothetical protein 2.66912031495e-07 2.22280554895e-07 -18018274.7932 +UniRef50_I4YT79 2.81324974766e-07 2.10773274871e-07 -28482587.0143 +UniRef50_O31038 FMN reductase 2.02586398316e-06 5.84785554841e-06 1542984896.0 +UniRef50_Q5HM43 Alcohol dehydrogenase, zinc containing 0.00010941895819 2.68490864115e-05 -33334470483.2 +UniRef50_Q8CY30 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 3.58513413841e-05 0.000218297286986 73655667103.0 +UniRef50_F0KMP6 1.56850133866e-06 6.25977282899e-05 24638247833.0 +UniRef50_UPI0003500B2C PREDICTED 2.52665832468e-07 3.50876504993e-06 1314527210.92 +UniRef50_N2QIY6 RNA pseudouridylate synthase family protein 1.54934087445e-05 7.00355822605e-06 -3427456836.48 +UniRef50_D0IT38 Sodium D alanine glycine symporter 4.92090723093e-06 1.84740328571e-05 5471563130.85 +UniRef50_F0LF03 Oligopeptide ABC transporter membrane spanning protein 2.52680484021e-05 1.41341384763e-05 -4494896065.48 +UniRef50_UPI000255B4D9 citryl CoA lyase 5.71887759999e-07 9.99928749691e-08 -190509755.888 +UniRef50_A8GL06 TRAP dicarboxylate transporter, DctM subunit 4.12448432507e-05 9.41564521568e-06 -12849837834.9 +UniRef50_UPI00035EC92D hypothetical protein 7.18523765202e-08 4.48221764235e-08 -10912423.4769 +UniRef50_G0LSM2 Phage protein 4.07882990441e-05 2.4976139356e-05 -6383562903.11 +UniRef50_Q1ISS4 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.58752471503e-07 1.2686922388e-07 -12871658.3169 +UniRef50_B9DKA9 Teichoic acid biosynthesis protein B 7.32376567237e-05 2.95544893095e-05 -17635430737.9 +UniRef50_UPI000462E9F8 hypothetical protein 6.23254076204e-07 2.84884634669e-07 -136603895.808 +UniRef50_Q8DSW4 4.315714206e-05 1.52988630413e-05 -11246729099.4 +UniRef50_UPI0003071439 hypothetical protein 8.99014894395e-08 4.35195287432e-07 139399343.481 +UniRef50_P71067 L lactate permease 7.3065777602e-05 0.000454291398461 1.53905461305e+11 +UniRef50_U5MKH7 Short chain dehydrogenase reductase SDR 1.17083215973e-05 1.58110023274e-05 1656302556.3 +UniRef50_UPI000371974E hypothetical protein 2.49536545569e-08 7.55413752459e-08 20422883.6233 +UniRef50_C9AA28 FeS assembly protein SufD 8.66677828e-05 1.59370275064e-05 -28554873876.0 +UniRef50_M9VHT5 Primosome assembly protein PriA 2.03715074394e-06 6.02311698012e-05 23493639614.4 +UniRef50_UPI00038C29BD PREDICTED 1.78877359603e-08 4.72714023511e-08 11862546.7001 +UniRef50_L7ETS7 D5 like N terminal domain protein 9.04112640343e-08 1.77434146317e-07 35132205.4684 +UniRef50_G7M7Y7 Transcriptional regulator, TetR family 7.67876918728e-06 2.44342714415e-05 6764401873.15 +UniRef50_Q3J4U2 0.000129019035377 2.88389260971e-05 -40443939464.5 +UniRef50_UPI0003786C39 hypothetical protein 2.39535022129e-06 8.81242411625e-07 -611263902.956 +UniRef50_P26218 Cryptic outer membrane porin BglH 4.71028844198e-05 1.19313119806e-05 -14199195397.4 +UniRef50_Q3IZ97 Transglutaminase like domain protein 2.98869620373e-05 6.97168144763e-06 -9251179976.18 +UniRef50_B4EU40 UPF0234 protein PMI0103 2.92071125052e-05 5.20958115688e-05 9240448687.9 +UniRef50_UPI0002627F9F 30S ribosomal protein S17 9.95257731363e-07 4.26421138727e-06 1319716705.46 +UniRef50_F5ZJK9 Methyltransferase 1.6508133623e-06 0.000120228916284 47871435266.6 +UniRef50_D9SQV1 Inner membrane translocator 1.25828662949e-06 3.7853569928e-05 14773964942.2 +UniRef50_A6QIK5 1.74974136927e-05 0.000124033016182 43009730063.7 +UniRef50_Q6F9V8 Pseudouridine synthase 1.34977111625e-06 5.90089982846e-05 23277737566.1 +UniRef50_UPI000377859E hypothetical protein 1.78626419942e-07 2.54639258093e-07 30687315.544 +UniRef50_UPI00025564DF thioredoxin 2.49463772597e-06 1.43962163713e-06 -425922941.568 +UniRef50_I6U015 3.63010004224e-05 1.74298982337e-05 -7618495528.04 +UniRef50_A6QJ17 Iron compound ABC transporter, permease protein 0.000172786390315 3.13635667709e-05 -57094129317.9 +UniRef50_UPI0002559088 major facilitator transporter 5.17782558451e-06 1.31251868968e-06 -1560471826.09 +UniRef50_W9T9W7 Lon protease 5.70727039869e-06 2.5598649862e-06 -1270646188.03 +UniRef50_V8G2W5 Integrase 1.28749190972e-06 8.85918105145e-07 -162120272.772 +UniRef50_A0A023XXU1 Alanine dehydrogenase 3.92620184869e-06 8.69380317236e-05 33512894390.2 +UniRef50_E6E9V0 1.30087027394e-06 1.31794026067e-05 4795509268.73 +UniRef50_Q88KQ9 Membrane protein, putative 3.70757938214e-06 6.14232502475e-05 23300524579.3 +UniRef50_A5UP71 Predicted tubulin like protein 1.80544108894e-05 2.45415544476e-06 -6298014559.65 +UniRef50_Q2FJ09 Putative antiporter subunit mnhG2 0.000154441559366 4.46322476372e-06 -60548094120.0 +UniRef50_A6LWW3 GCN5 related N acetyltransferase 4.32235865095e-06 8.27990762236e-06 1597711084.35 +UniRef50_D3E4D7 Transcriptional regulator MarR family 1.99474803725e-05 9.05817906907e-06 -4396144562.94 +UniRef50_F6A8J6 Flagellar hook basal body protein 1.02556865495e-05 5.65346542769e-06 -1857973142.48 +UniRef50_B7V109 Adenylate kinase 7.79202111019e-08 2.81608597213e-07 82231501.0106 +UniRef50_X0UW79 Marine sediment metagenome DNA, contig 3.02979048604e-07 3.90856953861e-05 15657058502.9 +UniRef50_P0ABS6 DNA primase 3.5856819892e-05 1.11745540535e-05 -9964533604.46 +UniRef50_Q7NM67 Ribose phosphate pyrophosphokinase 4.79180533923e-07 6.51786640479e-07 69683203.3318 +UniRef50_D8PHS6 4.74284231752e-08 4.4644563042e-06 1783208358.6 +UniRef50_UPI000299E436 putative oxidase 3.08064086561e-07 1.9343485972e-06 656551013.7 +UniRef50_L7VT93 Chemotaxis protein methyltransferase 2 9.78407110204e-06 1.19610414582e-05 878869647.212 +UniRef50_F9YAM3 8.21758338519e-06 8.23467551486e-07 -2985095298.07 +UniRef50_J0MX42 ISSep1, transposase family protein 1.16956693662e-05 2.12623548732e-06 -3863297887.06 +UniRef50_S5Y434 Sulfolipid biosynthesis protein 8.40976058686e-06 2.17945907889e-06 -2515249173.16 +UniRef50_A3PLB3 0.000109125476458 3.14947772749e-05 -31340465896.0 +UniRef50_B3JPS9 2.45764342125e-07 2.17978518278e-07 -11217478.0574 +UniRef50_UPI0003B4FC9A transcriptional regulator 1.41727885356e-06 5.38844088179e-07 -354634894.391 +UniRef50_Q7N475 UPF0259 membrane protein plu2479 2.24444518027e-05 9.9620377663e-06 -5039303722.94 +UniRef50_I0C6V2 Acetyltransferase 0.000145504805201 1.50239529729e-05 -52676721224.6 +UniRef50_Q64XQ0 Lipoyl synthase 5.32053171879e-08 3.37243015871e-07 114669504.493 +UniRef50_A0A059KIS0 1.18689501377e-07 4.00683429897e-07 113844409.398 +UniRef50_A5FPX2 Glutamate tRNA ligase 4.85804950872e-08 5.7378424164e-07 212031197.458 +UniRef50_UPI0004765137 hypothetical protein 3.6435553358e-08 4.63673154192e-08 4009574.22053 +UniRef50_UPI0004545C86 PREDICTED 1.045482162e-07 1.09778222878e-07 2111417.87531 +UniRef50_A5UMB6 Cell wall biosynthesis protein, MurD like peptide ligase family 4.03136630546e-05 9.48192125586e-06 -12447152512.2 +UniRef50_M7DM48 Permease 4.65703242077e-05 1.71617433912e-05 -11872604959.5 +UniRef50_Q01T92 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.59703192049e-07 2.06726420239e-07 18983854.2602 +UniRef50_UPI0002892E6E extracellular solute binding protein 9.91785971057e-08 5.1265670649e-06 2029618417.44 +UniRef50_Q5HS30 3.55439322914e-05 3.24151543941e-05 -1263126031.56 +UniRef50_UPI0002D8B23E acetyltransferase 1.21707723196e-06 1.29111977662e-06 29891883.8834 +UniRef50_UPI0003B5C533 PTS glucose transporter subunit IIA 1.12939753627e-07 6.93470540792e-08 -17598907.75 +UniRef50_E1RMJ4 2.6141688974e-07 4.090259074e-07 59591571.7957 +UniRef50_Q9ZAH9 Bacterial PH domain protein 4.91793474577e-05 1.50391192687e-05 -13782829067.6 +UniRef50_V9WPU7 1.60055073261e-06 1.32033228208e-06 -113127627.146 +UniRef50_D4HFD7 4.07927914051e-07 3.55749293159e-06 1271518047.09 +UniRef50_U5NML8 2.36501981175e-05 6.37374183882e-06 -6974717405.67 +UniRef50_Q9I082 3.60671742488e-07 8.76906889179e-06 3394573111.81 +UniRef50_U5NML2 9.6052396591e-05 3.04824766512e-05 -26471381313.1 +UniRef50_Q9I089 4.35560756373e-06 5.78279453069e-06 576172892.115 +UniRef50_Q9T0P4 Ferredoxin dependent glutamate synthase 2, chloroplastic 2.2043027059e-08 2.76034657124e-08 2244817.31863 +UniRef50_P0A9G2 Transcriptional activator protein NhaR 2.69825184057e-05 4.32848373346e-06 -9145711793.43 +UniRef50_Q4L7Y8 ATP synthase subunit b 0.00028689000604 6.03601213826e-05 -91452894270.3 +UniRef50_UPI00046E378F electron transporter RnfB, partial 4.69633123263e-07 2.28598502957e-07 -97308634.0449 +UniRef50_F3ZK40 Putative ABC transporter solute binding lipoprotein 5.3217053099e-07 8.32660562008e-07 121311512.949 +UniRef50_M4Z7B3 Putative membrane protein 3.94917804559e-07 1.11859106646e-06 292155776.299 +UniRef50_UPI0003804CCC hypothetical protein 9.61335363832e-07 8.18933468588e-07 -57489392.5778 +UniRef50_Q9HTF1 Low specificity L threonine aldolase 5.47735871686e-06 1.08877547075e-05 2184243254.45 +UniRef50_Q9I1P2 HTH type transcriptional regulator VqsM 5.49286809212e-06 2.16085394041e-06 -1345175001.46 +UniRef50_P25524 Cytosine deaminase 2.93986125375e-05 2.03887727803e-05 -3637382873.15 +UniRef50_UPI00047C40EA lysophospholipase 2.35864983119e-07 4.63655183047e-07 91961699.011 +UniRef50_E0IXH7 ShET2 enterotoxin domain protein 3.19604708711e-05 5.62917894681e-06 -10630265671.1 +UniRef50_UPI00036ACAB2 hypothetical protein 9.25319813766e-08 1.72405633087e-07 32245973.3554 +UniRef50_A7K3E5 Nucleoside diphosphate sugar epimerase dehydratase 7.6933285773e-07 2.91488132792e-05 11457144501.5 +UniRef50_D4M7N5 Monosaccharide ABC transporter membrane protein, CUT2 family 5.45323508899e-06 3.67653718447e-06 -717274746.59 +UniRef50_V5XTJ1 1.56568770498e-05 9.48969425598e-06 -2489767373.71 +UniRef50_UPI00046F6DC9 hypothetical protein 9.42259609704e-07 4.13499985605e-07 -213466748.859 +UniRef50_W7SUS4 Non ribosomal peptide synthetase 3.66192767703e-07 1.91233476565e-07 -70633212.8243 +UniRef50_Q8XPQ1 Probable remnant of a transposase protein 4.70934889244e-07 4.27787669631e-07 -17419062.0337 +UniRef50_W1K3W6 2.21303591483e-07 1.03519971196e-07 -47550692.8774 +UniRef50_I4DYX6 ABC transporter homolog 6.47510067623e-05 2.14256376199e-06 -25275796731.2 +UniRef50_P24200 5 methylcytosine specific restriction enzyme A 2.82313711647e-05 5.78825307607e-05 11970536989.6 +UniRef50_Q49XC4 0.000211849846689 4.56685995472e-05 -67089408744.4 +UniRef50_A0A024TW04 Secondary thiamine phosphate synthase enzyme, variant 1.5965533313e-07 2.6701071707e-07 43340685.8953 +UniRef50_G8VL07 Universal stress protein UspA 1.32761778031e-06 6.17243139378e-05 24382887389.6 +UniRef50_UPI00006D0388 conserved hypothetical protein 5.31860992743e-07 1.68007818884e-07 -146891991.267 +UniRef50_Q795M6 Putative aminotransferase YugH 2.20693214703e-06 1.3806425441e-05 4682857784.58 +UniRef50_I3TTH4 9.43560993708e-07 5.11235423888e-07 -174535137.768 +UniRef50_UPI0003B46BA7 hypothetical protein 1.68082562019e-06 1.98123795181e-07 -598584921.554 +UniRef50_I3TTH2 0.000150853829615 3.50986064304e-05 -46731804076.1 +UniRef50_I3TTH3 3.68796561965e-06 8.30781764986e-07 -1153480183.71 +UniRef50_J3XAF4 Membrane flanked domain containing protein 3.86906259438e-07 3.42260255617e-06 1225547847.17 +UniRef50_Q9FFF4 Acetolactate synthase small subunit 1, chloroplastic 2.1690630046e-07 1.65208476793e-06 579399158.938 +UniRef50_Q49XL3 8.66062858509e-05 5.23311632171e-05 -13837287610.3 +UniRef50_I1G1I4 3.64713277618e-07 6.49754156272e-08 -121007853.083 +UniRef50_UPI0003B53CAB LolC E family lipoprotein releasing system, transmembrane protein 6.94733639748e-08 1.84101566972e-07 46276812.1961 +UniRef50_UPI0003B4AD44 cytochrome C550 4.3842693117e-06 8.36313648316e-07 -1432353239.62 +UniRef50_H1Z0J9 NADPH dependent FMN reductase 1.29537751391e-05 3.3397006438e-05 8253183342.02 +UniRef50_M4QZZ1 Chloride channel protein 9.42929197787e-07 4.51480551647e-05 17846151810.7 +UniRef50_U1RIR7 1.26550057598e-06 4.24569875954e-07 -339494042.981 +UniRef50_B2S8N8 Argininosuccinate lyase 2.40599619993e-05 9.89815494563e-06 -5717295292.49 +UniRef50_P0A3S3 DNA entry nuclease 6.46575110679e-05 2.68998530994e-05 -15243229860.5 +UniRef50_B4TBG4 UDP 4 amino 4 deoxy L arabinose oxoglutarate aminotransferase 2.9749323127e-05 3.69263391484e-06 -10519405186.5 +UniRef50_Q8CPC5 Nuclease SbcCD subunit C 9.30050015102e-05 3.36481434269e-05 -23963091998.8 +UniRef50_Q8CQW1 2.41949840593e-05 3.0853947811e-06 -8522200235.4 +UniRef50_A3QJF9 Ribosomal RNA large subunit methyltransferase F 4.66750924797e-06 1.16991495242e-05 2838759467.44 +UniRef50_Q8CQW3 0.000101312948381 4.71674221971e-05 -21859213360.8 +UniRef50_Q8CQW5 4.99984721893e-05 3.57622625113e-05 -5747332544.95 +UniRef50_Q8CQW7 0.00017322910438 8.81542403566e-06 -66375820337.6 +UniRef50_H6P8E7 Pyridoxal phosphate enzyme, YggS family 5.42658740054e-05 4.6973860078e-05 -2943875505.56 +UniRef50_A6LZ09 1.28748175706e-05 2.10647097253e-05 3306359964.13 +UniRef50_G2SXD8 Aspartate aminotransferase 3.9575677738e-06 8.59754110769e-06 1873214173.77 +UniRef50_A6M2G5 Phage infection protein, putative 3.51590580038e-06 7.821927186e-06 1738393674.2 +UniRef50_U5MXH4 DNA helicase, Rad3 2.55406871656e-06 8.40464325227e-06 2361948734.69 +UniRef50_I0EP63 8.03731700836e-07 2.15002115924e-05 8355422906.61 +UniRef50_UPI0003A9ADDB hypothetical protein 1.6440309413e-06 3.57350394256e-06 778951927.905 +UniRef50_UPI0003B779BE spermidine putrescine ABC transporter permease, partial 3.04269767458e-07 2.15346823979e-06 746544115.497 +UniRef50_A6M0M4 Respiratory chain NADH dehydrogenase domain, 51 kDa subunit 8.40815573878e-06 2.72419067155e-05 7603416385.41 +UniRef50_UPI0002624FE5 Bcr CflA subfamily drug resistance transporter 9.52011697421e-08 8.52932413276e-08 -3999952.28489 +UniRef50_UPI00037F95F5 hypothetical protein 8.1669980282e-07 6.64535275814e-06 2353098723.68 +UniRef50_R5J671 Arabitol phosphate dehydrogenase 1.19710144452e-06 1.97433174467e-05 7487334987.75 +UniRef50_P41006 Uracil permease 4.73546390597e-05 3.04206396544e-05 -6836463363.46 +UniRef50_C4J3V7 1.86800307713e-06 1.87548114652e-06 3018988.37897 +UniRef50_E5ARK1 Transposase 9.4514906556e-08 1.44994245789e-07 20379128.6995 +UniRef50_M4ZCC6 Acetylornithine deacetylase 9.56568730844e-05 4.22832255539e-05 -21547596476.4 +UniRef50_A5UKP7 2.59160533764e-05 2.33759924953e-06 -9518911271.2 +UniRef50_UPI00041293AC membrane protein 2.8893540153e-06 2.38199907919e-06 -204825413.653 +UniRef50_D3DZ29 GTP binding protein 3.02130446044e-05 9.60167684075e-06 -8321062096.09 +UniRef50_C7ZTN4 Acyl CoA dehydrogenase 0.000150278471013 2.60501344824e-05 -50152503910.7 +UniRef50_E9WE17 LysR family bacterial regulatory helix turn helix protein 1.6629338716e-06 6.30167165795e-06 1872715368.06 +UniRef50_Q8RG52 Lysine tRNA ligase 1.48982537835e-07 4.33919008605e-08 -42628235.8892 +UniRef50_A0A022NN79 Putative transcriptional regulator 6.2296976176e-07 3.32100182845e-06 1089228653.9 +UniRef50_Q5F7E0 ATP phosphoribosyltransferase 3.88254468993e-07 1.991412023e-05 7882831617.03 +UniRef50_B9DNZ7 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.000174892627418 3.845889404e-05 -55079972394.9 +UniRef50_A4J5C2 Methylenetetrahydrofolate reductase 2.72012488274e-06 1.15860436454e-05 3579280201.54 +UniRef50_E4RJQ9 Cysteine desulfurase, SufS subfamily 2.78235589752e-06 6.90406627596e-06 1663985058.85 +UniRef50_UPI0001E8958F inosine uridine nucleoside hydrolase 1.12008384976e-07 7.75092426812e-08 -13927727.0965 +UniRef50_P29849 Maltodextrin phosphorylase 4.59365359943e-05 5.37675140239e-05 3161461927.46 +UniRef50_P76272 3.38203376751e-05 1.18543516999e-05 -8867938091.15 +UniRef50_D3QGG7 Tributyrin esterase 0.00039792210454 7.38705035634e-05 -1.30823607875e+11 +UniRef50_G4KXX3 1.00573531661e-06 1.4600370791e-05 5488321165.95 +UniRef50_W7DIL1 Shikimate 5 dehydrogenase 3.31789155702e-07 2.76999942654e-07 -22119077.6467 +UniRef50_A3PGM6 50S ribosomal protein L6 0.000269542735652 4.59529538046e-05 -90265938686.8 +UniRef50_A6M2I8 4.40024954543e-06 8.67287131708e-06 1724909840.18 +UniRef50_A0A024DHC4 MarR family transcriptional regulator 1.54145689254e-05 8.80443303739e-06 -2668592973.48 +UniRef50_Q8VRM3 Type II secretion system protein L 4.2201370393e-05 5.56873012072e-06 -14789046411.0 +UniRef50_Q5HRK2 Acetyltransferase, GNAT family 0.000213467308785 1.48941191592e-05 -80166433419.1 +UniRef50_A9KMQ0 L lactate dehydrogenase 2.82471710003e-06 1.02085761574e-05 2980954511.6 +UniRef50_Q73JJ6 50S ribosomal protein L7 L12 0.000306060120911 3.72633536007e-05 -1.0851655347e+11 +UniRef50_D4HCK8 6.8729941948e-06 5.19892218567e-05 18213974745.5 +UniRef50_Q8D2Y0 Polyribonucleotide nucleotidyltransferase 4.56349494935e-08 1.85124106852e-07 56313484.5503 +UniRef50_Q9RTI8 MutT nudix family protein 2.82408470458e-06 0.000437800975533 1.75605508594e+11 +UniRef50_G7U580 Pyridine nucleotide disulfide oxidoreductase 2.05155428724e-06 3.76148124089e-05 14357323714.0 +UniRef50_O08368 Glutathione peroxidase 2.66660622481e-05 1.01602243346e-05 -6663609315.09 +UniRef50_A1JIE0 sn glycerol 3 phosphate import ATP binding protein UgpC 6.3587661951e-07 5.14939589649e-07 -48823763.0191 +UniRef50_UPI0003FD6A90 sugar ABC transporter permease 6.17822081552e-07 1.93125491769e-06 530248953.583 +UniRef50_P0A9G4 HTH type transcriptional regulator CueR 4.67817562702e-05 0.000233820775185 75509947162.9 +UniRef50_Q6G970 Segregation and condensation protein B 0.000163450291323 1.68235266177e-05 -59195024224.1 +UniRef50_F6D4R4 Peptidase U32 2.74039518634e-05 1.24288501598e-05 -6045632322.91 +UniRef50_Q99VJ4 Clumping factor A 0.000251381137507 4.20200427075e-05 -84521643119.9 +UniRef50_Q9RVI9 6.86338161548e-06 0.000469049569648 1.86590235771e+11 +UniRef50_Q9RVI8 1.08265579982e-06 0.00047548525461 1.91522150714e+11 +UniRef50_P27669 Regulatory protein UhpC 2.0414298206e-05 1.02347696792e-05 -4109600583.13 +UniRef50_C7DA27 2.76995036226e-07 1.91020987809e-07 -34708778.3662 +UniRef50_UPI00036D28EF hypothetical protein 1.65717272362e-06 2.0706756809e-07 -585425246.079 +UniRef50_U1KC82 7.78695067687e-08 1.14565344292e-07 14814559.9167 +UniRef50_UPI0003B7607C 50S ribosomal protein L13 2.01445036772e-07 8.76840848259e-07 272665577.136 +UniRef50_Q46PS3 Pseudouridine 5 phosphate glycosidase 3.13379370701e-05 8.43077797164e-06 -9247901230.52 +UniRef50_I0C2G5 Permease 5.37189978128e-05 1.45665641492e-05 -15806317924.4 +UniRef50_UPI0003B4774F coproporphyrinogen III oxidase 2.95770805295e-07 1.21472574101e-07 -70366334.8128 +UniRef50_Q2YSR3 HTH type transcriptional regulator SarX 6.46980990613e-05 2.88228180553e-05 -14483291181.3 +UniRef50_Q0DU63 Os03g0204900 protein 2.86580420309e-06 6.01363125089e-06 1270816407.38 +UniRef50_I6T4Q5 Transcriptional regulator 0.000117581380805 5.15087276506e-06 -45389575773.2 +UniRef50_UPI00035E2F93 hypothetical protein 4.51260818845e-08 3.58965536761e-06 1430969968.91 +UniRef50_UPI000378F4AE hypothetical protein 3.81157553097e-08 4.36387679719e-07 160787263.23 +UniRef50_UPI000424F3F7 2 hydroxyacid dehydrogenase 1.70942989117e-07 6.22645418748e-07 182357813.854 +UniRef50_B7MG07 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 2.42674528026e-05 8.58582712558e-06 -6330864720.99 +UniRef50_N9PED4 Ferrous iron transporter B 2.26680206122e-06 7.57456492926e-05 29664312314.2 +UniRef50_F2DIT6 Predicted protein 1.10435142015e-06 1.5710855739e-06 188426305.341 +UniRef50_C5YL49 6.85905204115e-07 4.48919709712e-07 -95673952.2295 +UniRef50_UPI00046D46EC PTS sugar transporter subunit IIA 1.95535616753e-07 9.27513891516e-07 295508611.905 +UniRef50_UPI000466BC57 branched chain amino acid ABC transporter ATP binding protein 1.08751809236e-07 3.47672104276e-06 1359690509.2 +UniRef50_Q5JN18 2.49815525412e-06 3.27962805693e-06 315490160.244 +UniRef50_A0A059ILG1 3.58062078039e-07 2.11364456803e-07 -59223629.8752 +UniRef50_C4KRY7 Class II aldolase adducin family protein 7.65258239834e-06 4.86031881027e-05 16532262043.3 +UniRef50_Q17Y79 ATP synthase gamma chain 2.8574536304e-06 6.21061849578e-05 23919439900.6 +UniRef50_Q1GUM2 Valine tRNA ligase 2.08212162336e-08 4.06325590807e-08 7998082.21989 +UniRef50_E3A2F4 6.67332534303e-06 2.86616227945e-06 -1536998447.91 +UniRef50_UPI00046731A3 hypothetical protein, partial 1.6445131153e-07 2.08546365369e-07 17801714.342 +UniRef50_A8NT37 7.00879236708e-07 8.52695010185e-07 61289890.7417 +UniRef50_O95396 Adenylyltransferase and sulfurtransferase MOCS3 3.67437882588e-08 6.92430281201e-08 13120341.9425 +UniRef50_G6X002 3 oxoacyl [acyl carrier protein] reductase 7.7942881778e-08 4.86746480723e-07 165039029.478 +UniRef50_A6LZM1 Cell wall associated hydrolase like protein 4.17881168475e-06 1.88983880345e-05 5942473601.89 +UniRef50_J5HE89 Adenylosuccinate lyase 2.87051380608e-06 1.41979185193e-06 -585674255.251 +UniRef50_Q1C0H3 Chaperone SurA 3.75298963505e-05 4.58743602547e-06 -13299275482.6 +UniRef50_F0VVV7 Two component sensor protein 5.55297600271e-05 6.30179848313e-06 -19873932170.3 +UniRef50_G8VLG4 ErfK YbiS YcfS YnhG 3.81099892006e-06 5.72559985553e-05 21576402196.6 +UniRef50_Q57625 Probable acetolactate synthase small subunit 4.42239433663e-07 5.04575356638e-06 1858495146.85 +UniRef50_Q6FE82 3.03608033935e-06 2.34112223242e-05 8225694850.37 +UniRef50_B1K4I6 Putative reductase Bcenmc03_4815 4.90699864458e-06 2.590497414e-06 -935199973.452 +UniRef50_G8VKU4 Oxidoreductase 2.24086283212e-06 4.43774209115e-05 17011045570.4 +UniRef50_UPI00036AEC25 sodium 6.510111881e-07 6.09818877438e-05 24356315208.6 +UniRef50_UPI00035F3E55 hypothetical protein, partial 6.75795015523e-07 3.23184168135e-06 1031907405.22 +UniRef50_UPI000345C0EA acetyl CoA acetyltransferase 4.76058058419e-08 1.20741072892e-06 468227479.854 +UniRef50_Q9RYY7 4.80822460382e-07 0.000122430696456 49232660625.4 +UniRef50_UPI000373C694 hypothetical protein 2.04888543159e-08 1.30470098932e-06 518452197.955 +UniRef50_Q8DW90 6.14368875423e-05 1.56838304913e-05 -18471070584.6 +UniRef50_A6EWF4 1.98247538873e-07 1.27873594207e-05 5082378952.46 +UniRef50_Q8FFV5 tRNA dihydrouridine synthase C 4.77128604952e-05 1.66703114196e-05 -12532257996.7 +UniRef50_U5MMM3 D galactose binding periplasmic protein MglB 1.34977111625e-06 1.707032978e-06 144230997.685 +UniRef50_F0RLL3 DEAD DEAH box helicase domain protein 1.98556229644e-06 0.000241900656545 96856667637.6 +UniRef50_F8E027 Phage primase 6.06890657318e-07 5.03696636669e-05 20089842121.9 +UniRef50_M5ADI0 1.01223703853e-07 1.18825014242e-07 7105864.99641 +UniRef50_P20506 L Threonine dehydratase biosynthetic IlvA 3.8204926019e-05 0.000378869260907 1.37530372416e+11 +UniRef50_UPI00035D7F4D hypothetical protein 4.50577313646e-08 6.48644736758e-07 243675480.923 +UniRef50_I0JFD7 3.90014284455e-05 9.20894782945e-06 -12027590019.6 +UniRef50_UPI0003771410 hypothetical protein 1.64712626692e-06 3.89358831551e-07 -507776148.201 +UniRef50_X5FYX4 2.7314779204e-07 3.0160507853e-07 11488555.7662 +UniRef50_UPI00047310EB hypothetical protein 2.92271743464e-07 2.07697045711e-06 720504771.417 +UniRef50_A9GJ97 6.94968456379e-07 1.39921322537e-07 -224079339.126 +UniRef50_X0QIZ7 Respiratory nitrate reductase beta chain 4.51914607553e-07 5.43761202395e-07 37079597.4222 +UniRef50_A5UM16 Phosphoribosylformylglycinamidine cyclo ligase 2.8471679797e-05 1.15247388795e-05 -6841688010.75 +UniRef50_UPI00037699BE hypothetical protein 7.35060752184e-08 2.44860212302e-07 69177767.8925 +UniRef50_O64903 Nucleoside diphosphate kinase II, chloroplastic 8.16670830468e-08 3.80956862676e-07 120826956.735 +UniRef50_Q8CRX7 Two component sensor histidine kinase like protein 0.000280098433614 5.48567432829e-05 -90932834413.0 +UniRef50_Q6AB62 Thymidylate kinase 4.16344840642e-06 0.000148703929239 58352765823.4 +UniRef50_A7X0T7 0.000109938934598 5.88073305572e-05 -20642456006.6 +UniRef50_UPI00016C59FB Hemolysin type calcium binding region 2.88337921734e-07 2.2231734291e-07 -26653317.8349 +UniRef50_UPI0004654759 hypothetical protein, partial 2.10295561339e-07 1.78638541988e-07 -12780327.1873 +UniRef50_F2LTP6 ABC type transporter, periplasmic subunit family 3 2.45915481614e-05 5.27351259279e-06 -7798928018.0 +UniRef50_A0A011RSG6 NAD transhydrogenase subunit beta 6.73222358327e-08 5.61542929444e-08 -4508635.59008 +UniRef50_A4W0M7 ATP dependent helicase nuclease subunit A 3.96738966758e-06 3.80525990969e-05 13760617319.2 +UniRef50_F0J0R1 1.29254983483e-08 2.31000684049e-08 4107598.78786 +UniRef50_I4JFC2 7.17728998954e-07 9.25072874803e-07 83707267.0757 +UniRef50_UPI000466A8A4 hypothetical protein 9.92925711068e-07 1.0906985457e-06 39472093.1485 +UniRef50_W4FWB3 1.38953207421e-07 2.69713275471e-07 52789444.0783 +UniRef50_UPI000288F47D AraC family transcriptional regulator 2.73324948351e-06 7.34887984343e-07 -806763059.868 +UniRef50_P51056 2 oxoglutarate dehydrogenase E1 component 1.54512024775e-08 3.65329671866e-07 141250231.584 +UniRef50_UPI0003834F1F PREDICTED 1.8342475476e-07 4.37393413302e-07 102530263.999 +UniRef50_UPI000262CDFD recombination and repair protein 2.73608127597e-08 5.71832129056e-08 12039668.9009 +UniRef50_Q7N3E1 Multidrug resistance protein MdtC 3.69963399748e-07 1.1769820902e-06 325803348.568 +UniRef50_Q0FUB4 Replication initiator RepC 4.99614958437e-06 9.82180971187e-07 -1620488386.07 +UniRef50_J3IXG8 1.70038733717e-06 3.59613128836e-06 765335096.49 +UniRef50_D3E2B7 Transporter CDF family 2.65342289965e-05 6.95117961878e-06 -7905917344.82 +UniRef50_UPI000225A94B Hsp33 like chaperonin 7.79396375078e-06 2.55434602639e-06 -2115297972.68 +UniRef50_E3J1U8 DNA polymerase I 1.01395470254e-06 6.33086625638e-05 25149138005.6 +UniRef50_UPI0003B712C5 DNA invertase 2.23578042452e-06 2.30587298608e-06 28297227.2342 +UniRef50_G8V5D6 Bacterial extracellular solute binding family protein 0.000138644302921 2.40490301547e-05 -46263517857.8 +UniRef50_Q03UL2 Dihydroxy acid dehydratase 5.9740342955e-07 9.67298599527e-07 149331219.244 +UniRef50_UPI0004770CE7 hypothetical protein 3.76233949515e-07 5.62861832217e-07 75343966.4285 +UniRef50_Q1ZXF1 Probable enoyl CoA hydratase, mitochondrial 1.11722743404e-07 1.72701200398e-07 24617751.3783 +UniRef50_UPI000377CE34 hypothetical protein 2.37850172196e-07 5.39901299185e-07 121941746.55 +UniRef50_J9V4P4 2.33306266731e-05 8.35801995839e-06 -6044625065.27 +UniRef50_UPI0003802583 PE family protein 6.08282753244e-08 1.75040623174e-06 682103354.46 +UniRef50_G8AVW9 7.2682884003e-07 1.25366249979e-06 212689213.421 +UniRef50_K4Q9Y1 ATP dependent RNA helicase DBP2 4.12756262897e-05 3.89303732075e-05 -946807448.776 +UniRef50_P30979 5.40839498659e-05 4.59824699511e-06 -19977985506.8 +UniRef50_E1PKG3 Putative aliphatic sulfonates binding protein 1.85556602353e-07 5.61727967036e-07 151864996.064 +UniRef50_UPI000383147C hypothetical protein M271_01890 1.05612347882e-07 7.75544796485e-08 -11327305.7146 +UniRef50_Q0APX2 3.65529882866e-07 1.72398465042e-07 -77969523.3646 +UniRef50_M7XX40 6.88539407456e-07 5.33094020849e-07 -62755210.1026 +UniRef50_R9ZJZ3 TonB denpendent receptor 1.18929246388e-05 5.32329678268e-06 -2652239383.92 +UniRef50_A6LV94 6.8557575284e-06 4.72633868302e-05 16313055806.5 +UniRef50_V6VNG0 HTH like domain protein 2.28989867768e-06 8.49952681128e-07 -581323868.932 +UniRef50_C2ZZN3 8.82749090328e-08 6.19985902531e-06 2467321505.31 +UniRef50_R9SHV7 Metallophosphoesterase 2.34114998256e-05 4.21988593527e-06 -7747890035.1 +UniRef50_UPI0002DF27A4 hypothetical protein 6.97233916572e-07 1.44271334238e-07 -223237780.102 +UniRef50_UPI0003649624 hypothetical protein 4.93026556505e-07 1.16813941146e-07 -151881649.468 +UniRef50_UPI00047E508E light independent protochlorophyllide reductase subunit B 2.58127195561e-06 1.65369861839e-07 -975329321.707 +UniRef50_UPI000363054E hypothetical protein, partial 7.46707381039e-07 1.81557248829e-07 -228158043.545 +UniRef50_I5BWG8 9.39403967344e-07 1.78204294956e-07 -307305648.713 +UniRef50_UPI000308C935 hypothetical protein 1.3857867073e-07 4.51762083976e-07 126435987.12 +UniRef50_UPI0003B370F2 flagellin 1.36188348666e-08 1.32988448902e-07 48190978.0158 +UniRef50_UPI00039E8E1C hypothetical protein 1.33678609704e-06 4.91943275571e-07 -341073414.414 +UniRef50_P11160 Lipopolysaccharide export system ATP binding protein LptB 2.96361027666e-07 1.5508154327e-06 506438637.197 +UniRef50_Q5LNW7 CpaB family protein 5.7411477203e-05 8.48208924025e-06 -19753394351.7 +UniRef50_X5ERA2 8.15304511551e-07 3.55758580433e-06 1107092609.47 +UniRef50_UPI00047E842D DNA recombination protein RecO 1.81919628433e-07 6.44128974776e-07 186599585.065 +UniRef50_UPI000372993F hypothetical protein 6.11863226911e-07 4.1243467418e-07 -80511754.001 +UniRef50_E3ZRD8 6.16076619219e-07 3.62978813281e-06 1216672320.44 +UniRef50_O67291 Isoprenyl transferase 9.07479923701e-08 1.10673354271e-07 8044113.11108 +UniRef50_B2RH63 3 oxoacyl [acyl carrier protein] synthase 3 1.2330106398e-07 4.54685968132e-07 133784152.356 +UniRef50_UPI000371500A hypothetical protein 7.43504380413e-07 5.49434999341e-07 -78348190.6379 +UniRef50_UPI0003B3003D type I secretion protein 1.37053793429e-08 9.57996948663e-08 33142482.5873 +UniRef50_UPI00037EBA03 hypothetical protein 6.85830631191e-08 1.32291926616e-07 25720049.9894 +UniRef50_A8EVQ3 Uroporphyrinogen decarboxylase 5.63080529302e-08 3.46356819282e-05 13960117570.1 +UniRef50_UPI0003B5001E translation initiation factor IF 3 2.29158055057e-07 4.53818132684e-07 90698030.2272 +UniRef50_UPI0004411670 hypothetical protein DICSQDRAFT_95428 7.12647788253e-07 3.16164281707e-06 988689345.683 +UniRef50_Q6Z707 Non ribosomal peptide synthetase modules and related proteins like 6.99501460941e-07 1.98393877463e-06 518543105.355 +UniRef50_A0A031HIT4 Flagellar FlaF family protein 4.57779304089e-07 2.22678073091e-07 -94913251.9704 +UniRef50_UPI00047D2222 3 keto L gulonate 6 phosphate decarboxylase 2.85202572222e-07 6.90856471265e-07 163767456.977 +UniRef50_W7X754 1.48175227134e-06 7.07395874586e-08 -569643135.555 +UniRef50_Q5HL20 Lipoprotein, putative 7.63066974425e-05 2.28203963559e-05 -21593076099.4 +UniRef50_Q89XX5 Cobalt insertion protein 0.0001380695419 1.97047802827e-05 -47785306763.7 +UniRef50_Q3SNY6 UPF0301 protein Nwi_2752 1.77837407826e-07 3.61706666577e-07 74230276.0873 +UniRef50_P52215 Thioredoxin reductase 4.43357276977e-06 5.21152425718e-05 19249675219.0 +UniRef50_A6M1X0 ThiW protein 2.47802618498e-06 1.70529207169e-05 5884063776.6 +UniRef50_UPI00035CB3DD hypothetical protein 1.00000008845e-07 4.01016605615e-07 121524094.005 +UniRef50_UPI0003B37751 translation initiation factor IF 3 2.98270122633e-06 4.56584023284e-06 639132644.228 +UniRef50_I2FHZ3 Glycosyl transferases group 1 family protein 8.03664835769e-05 4.22010241172e-05 -15407864326.7 +UniRef50_UPI00037E157B hypothetical protein 1.38134316873e-07 1.09336995977e-07 -11625831.8286 +UniRef50_UPI00036B9069 hypothetical protein 1.82861087103e-06 6.23706072522e-06 1779745303.9 +UniRef50_S1EU50 Trimethylamine N oxide reductase 2 2.328174063e-05 3.26165762352e-05 3768587685.13 +UniRef50_UPI00036A682A hypothetical protein, partial 3.29294625389e-06 1.16877607045e-06 -857553569.554 +UniRef50_P45482 Cell division protein FtsZ 0.000218687320212 5.31121753436e-05 -66844717818.7 +UniRef50_A9AYE8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.43346911045e-07 5.47769971981e-08 -35756761.0951 +UniRef50_UPI0003B6D0DD peptidase M24 3.10160420158e-08 6.47976396898e-07 249074466.221 +UniRef50_U5MLD2 Anti sigma factor N terminus 1.18087379206e-06 1.50944749926e-05 5617091543.73 +UniRef50_P76079 1,2 phenylacetyl CoA epoxidase, subunit C 2.54045564221e-05 8.9886404172e-05 26032113217.9 +UniRef50_G4LCX9 Transcriptional regulator 2.15170033855e-06 3.48433791827e-06 538002144.235 +UniRef50_Q57747 1.95994796636e-05 9.56771484301e-06 -4049946561.67 +UniRef50_E3M3A4 7.76745941055e-08 2.31120928599e-06 901705363.665 +UniRef50_Q7VRR0 Ribonuclease 3 6.23469419994e-08 3.32882281163e-07 109218436.262 +UniRef50_A5FRK6 DNA directed RNA polymerase subunit beta 5.18634167827e-08 1.15591546513e-07 25727828.0042 +UniRef50_A6M049 Alcohol dehydrogenase GroES domain protein 3.15474160481e-06 2.01123749283e-06 -461646642.38 +UniRef50_C5X103 3.91518366528e-07 2.65411367142e-06 913437489.751 +UniRef50_Q6F9W1 tRNA dimethylallyltransferase 3.60272948004e-06 3.93948227439e-05 14449707269.0 +UniRef50_J0P427 Type III restriction modification system DNA endonuclease 8.37491901067e-07 4.49107667134e-05 17792921881.6 +UniRef50_Q492E0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.42565749954e-08 2.60074437664e-08 -7367398.21917 +UniRef50_I2ZQB3 L lactate dehydrogenase 5.00150632283e-05 5.72327537919e-06 -17881138276.0 +UniRef50_Q5HLD9 Peptidase, M20 M25 M40 family 0.000131572385744 4.38155773378e-05 -35428500450.7 +UniRef50_B5ERH7 1.89337661166e-07 2.20970767307e-07 12770673.131 +UniRef50_S5XXA0 Exodeoxyribonuclease III 2.89726586772e-05 1.85673542679e-05 -4200749077.48 +UniRef50_B6GDZ1 1.01492317696e-06 5.52094119079e-08 -387448223.964 +UniRef50_Q3Y002 8.23121811592e-08 2.13225057899e-06 827585286.777 +UniRef50_X2HWL3 TonB dependent receptor 4.42366393186e-07 4.27443641213e-05 17077835586.7 +UniRef50_A8LL44 1.81776878108e-06 2.84913067946e-06 416373454.61 +UniRef50_A6M0N1 Response regulator receiver protein 1.1626878507e-06 6.66847955777e-06 2222755675.81 +UniRef50_UPI0003C14EB6 5.89214799713e-08 2.58420501692e-08 -13354571.7414 +UniRef50_F4DM00 Glutamate dehydrogenase 7.37372743047e-06 5.61721442847e-06 -709125853.746 +UniRef50_L1K914 1.44343637847e-05 3.1208044929e-06 -4567422719.08 +UniRef50_UPI00047DD927 damage inducible protein CinA 1.78436775247e-07 4.62040231184e-08 -53383984.7128 +UniRef50_X6J8Z0 4.9705646752e-07 6.58109557836e-07 65019108.9042 +UniRef50_UPI0001BF5AE1 hypothetical protein SMAC_10035 1.82342335854e-06 1.12392023253e-07 -690764346.772 +UniRef50_Q97WN9 NH dependent NAD(+) synthetase 1.45935304967e-06 1.43769547331e-07 -531117203.92 +UniRef50_A3PKG7 Two component transcriptional regulator, LuxR family 0.000133780028405 3.78085122552e-05 -38744878772.6 +UniRef50_P11000 Wall associated protein 5.01275968581e-05 1.00929105052e-05 -16162494161.5 +UniRef50_A8YV22 ATP dependent 6 phosphofructokinase 2.61918372251e-07 1.37534725664e-07 -50215204.4862 +UniRef50_UPI0003B46133 PREDICTED 1.34491395397e-07 1.6240284839e-07 11268196.0853 +UniRef50_A0A037Z3Z8 1.98459908036e-07 4.4983075206e-07 101481494.4 +UniRef50_P16683 Putative phosphonates transport system permease protein PhnE 4.84596011886e-05 4.06399135599e-06 -17923052484.8 +UniRef50_M7A0E0 9.12422142401e-08 6.0932809448e-06 2423096688.82 +UniRef50_P32670 Multiphosphoryl transfer protein 2 3.28149266186e-05 7.2600247699e-06 -10316827470.2 +UniRef50_R9CAH0 Cobalt transporter 2.00183578594e-07 1.94187857959e-07 -2420545.99612 +UniRef50_K4RS80 Potassium efflux system KefA protein Small conductance mechanosensitive channel 1.90274961439e-06 5.33704888947e-07 -552700155.728 +UniRef50_A0A017HSP4 7.1350756846e-07 3.60468051083e-07 -142526385.447 +UniRef50_A6LTV6 SEC C motif domain protein 2.80706847759e-06 2.25456132015e-05 7968692724.22 +UniRef50_UPI0002652F6C PREDICTED 1.42095731848e-08 1.15256404696e-07 40793845.8651 +UniRef50_P50843 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.07508711214e-08 1.61342697802e-07 36573032.1177 +UniRef50_W1IC39 Chromosome I, genome 1.30105447887e-06 7.60929564831e-07 -218055055.876 +UniRef50_T2ENN0 Rhs element Vgr family protein 5.88719949895e-07 9.71117083152e-08 -198468279.837 +UniRef50_Q8Y0Z5 Ubiquinone biosynthesis O methyltransferase 6.32588714021e-05 2.52935979752e-05 -15327046768.7 +UniRef50_L7WZX4 1.02862739793e-05 1.07184172829e-06 -3719979373.53 +UniRef50_W1ELN4 Formate dehydrogenase N alpha subunit @ selenocysteine containing 1.82811565854e-05 4.69955787221e-06 -5483058065.48 +UniRef50_A0A017HCQ2 3.4983140185e-07 1.6863370614e-07 -73151733.3039 +UniRef50_C6LQB4 Deoxyribose phosphate aldolase 7.03390041336e-06 3.47454415185e-05 11187489203.0 +UniRef50_X0T0E9 Marine sediment metagenome DNA, contig 2.99540692409e-07 2.59955724479e-06 928544906.573 +UniRef50_P39376 HTH type transcriptional regulator YjiE 1.45593584431e-05 3.99622420079e-06 -4264466917.85 +UniRef50_V1A381 Diguanylate cyclase domain protein 8.01783565377e-06 4.74585543039e-06 -1320938567.89 +UniRef50_F8JJM3 2.98299933071e-08 8.37502234739e-08 21768258.594 +UniRef50_Z2DBM9 Oxoglutarate dehydrogenase , E1 component 1.79321511895e-06 1.27981838255e-06 -207264562.571 +UniRef50_P44908 3.86357924937e-05 4.08590375589e-05 897551315.106 +UniRef50_E3F0C5 3.26124338712e-05 9.0628582768e-06 -9507252653.25 +UniRef50_UPI0003620071 hypothetical protein 1.30390419599e-06 4.4109367663e-07 -348327194.541 +UniRef50_Q4KJ83 Chemotaxis protein MotB 6.47927800583e-06 1.7897982133e-06 -1893200538.63 +UniRef50_Q9KN05 Tryptophanase 2.02232319463e-05 4.27342839429e-06 -6439131420.04 +UniRef50_F3U1C5 2.92540284984e-05 1.32231360536e-05 -6471868001.14 +UniRef50_X3ELX1 Chloride channel protein 3.06700943729e-05 8.42754567673e-06 -8979589855.42 +UniRef50_B2TNE9 Biotin [acetyl CoA carboxylase] ligase 5.55498754472e-06 1.25014055836e-05 2804354204.43 +UniRef50_UPI000380DD01 hypothetical protein, partial 1.17234603637e-07 1.41508968534e-07 9799858.98887 +UniRef50_F4N161 1.46298841641e-05 2.02964855242e-06 -5086869738.72 +UniRef50_UPI0003B799F9 ribonucleoside diphosphate reductase 6.77111049682e-07 1.59109061456e-07 -209123759.246 +UniRef50_K1T508 Excinuclease ABC, A subunit 1.23183481096e-07 2.52506955659e-07 52209473.6586 +UniRef50_A6M335 1,4 alpha glucan branching enzyme 2.41258610414e-06 9.40232616997e-06 2821843838.33 +UniRef50_UPI00035EBE88 hypothetical protein 8.03610696332e-06 3.37284266417e-07 -3108109197.92 +UniRef50_W5XAJ1 Ribosomal protein L25 L23 1.55945185437e-08 5.68907861104e-08 16671809.9789 +UniRef50_Z4K4V4 3.80912420951e-06 1.7423410001e-06 -834385743.921 +UniRef50_X1YKP1 1.83840578989e-06 2.86715247755e-06 415317661.95 +UniRef50_UPI00037EB0E7 hypothetical protein 5.68451315394e-08 5.01663665263e-07 179578700.602 +UniRef50_Q2CDG7 Flagellar protein FlaF, putative 2.73616851826e-07 7.29541969626e-07 184062564.886 +UniRef50_I6TW14 Alpha glucosidase 6.73120494887e-05 1.66542436028e-05 -20451177877.3 +UniRef50_P33485 Probable nuclear antigen 3.76231801468e-07 2.89250173533e-07 -35115550.582 +UniRef50_Q4L9L8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 8.28413820323e-05 2.19932175912e-05 -24565150675.8 +UniRef50_D9QKH6 NAD dependent epimerase dehydratase 0.000102313738529 1.15401881988e-05 -36646396185.0 +UniRef50_Q8Z9U9 DNA replication and repair protein RecF 7.51049695102e-06 4.86121877901e-06 -1069546108.34 +UniRef50_Q8ZES9 Long chain fatty acid CoA ligase 3.74516453351e-05 5.13407284004e-05 5607193271.68 +UniRef50_G8NWZ5 Sigma 54 interacting domain protein 8.02024055691e-07 0.000512552923016 2.066001178e+11 +UniRef50_D3DZ67 Met 10+ like protein 6.57471857311e-06 1.49713603876e-05 3389827338.89 +UniRef50_I6TX91 Histidine kinase 2.2214135967e-05 2.65578539903e-06 -7895946132.25 +UniRef50_C8N7Z4 4.25239937372e-07 1.11979969449e-07 -126466893.183 +UniRef50_UPI00047D1D69 hypothetical protein 4.57065981839e-08 3.53270964266e-08 -4190332.23023 +UniRef50_UPI0001B4124B hypothetical protein, partial 3.59331030031e-07 1.43826239368e-06 435577831.482 +UniRef50_Q88K39 Glutaminase asparaginase 4.06069153273e-06 1.69397727654e-06 -955471588.074 +UniRef50_L8DZR6 Internalin J 1.66938321836e-07 9.94603168881e-08 -27241698.6457 +UniRef50_A3SID6 Cation transport protein ChaC, putative 1.74670463075e-07 2.16788182281e-07 17003440.086 +UniRef50_UPI0002375A77 extracellular solute binding protein 3.40710149843e-07 1.18570169965e-06 341133457.869 +UniRef50_Q49VQ7 7 cyano 7 deazaguanine synthase 8.06521111542e-05 4.8059425412e-05 -13158067191.4 +UniRef50_L6MLX7 Nitrate reductase Z subunit beta 5.31724348327e-07 9.65891227545e-07 175278496.967 +UniRef50_R4GKP1 4.9299173365e-07 5.87200702166e-08 -175320799.64 +UniRef50_E4RQB3 9.97499405749e-07 4.37307969438e-07 -226156157.161 +UniRef50_B7GYT0 Ribonuclease 3 1.72393362484e-06 7.21667229284e-05 28438618472.1 +UniRef50_F8DL52 Rhodanese like protein 1.33248896037e-07 4.92388941969e-07 144989243.687 +UniRef50_I6TRN9 6.93633553132e-05 2.22237314395e-05 -19030844626.0 +UniRef50_A7B8Z2 Cell wall binding repeat protein 1.3932031632e-08 2.70170017441e-05 10901470607.9 +UniRef50_UPI0003764F6C hypothetical protein 1.22795300099e-07 4.83845410668e-07 145760360.22 +UniRef50_D7GE62 ATP dependent helicase 2.5397269057e-06 5.68920690393e-05 21942707497.6 +UniRef50_U6KE00 6.91272852732e-08 2.06300261578e-07 55378413.836 +UniRef50_J2YGZ8 FAD dependent oxidoreductase 2.23039762679e-07 2.28928990928e-05 9152100402.02 +UniRef50_UPI000365642F hypothetical protein 1.09000725988e-06 4.04795181971e-07 -276628524.35 +UniRef50_P00148 Cytochrome c 7.65824938661e-05 9.19082695981e-06 -27206842918.8 +UniRef50_Q5HRL1 0.000114621021255 4.53243147221e-05 -27975930793.5 +UniRef50_E3A2F6 2.45090097262e-05 2.23511229618e-05 -871165367.037 +UniRef50_Q0C2D0 Peptidyl tRNA hydrolase 4.52633397422e-07 2.91375234034e-07 -65101899.4199 +UniRef50_UPI00046FE521 hypothetical protein 4.3759171598e-08 6.2115372859e-08 7410623.70499 +UniRef50_M1MYZ3 Methyl accepting chemotaxis protein TlpC 3.24649418513e-06 4.93596486554e-06 682060045.818 +UniRef50_C1CXQ2 2.66593902716e-06 0.000333236553237 1.33455413514e+11 +UniRef50_F8KQA4 Phospholipid binding protein 1.8874299443e-06 6.23784617623e-05 24420971853.4 +UniRef50_UPI00045DC843 PREDICTED 1.85653597038e-07 9.28641798507e-07 299953454.424 +UniRef50_UPI000375A3E4 hypothetical protein 1.79743523816e-07 6.30039292273e-07 181789927.477 +UniRef50_A0RBY1 8.07209506317e-07 1.8079607547e-05 6973079045.19 +UniRef50_U3T289 3.10056570229e-06 5.36462497939e-05 20405912933.1 +UniRef50_J0JAX6 6.51987325532e-07 3.00506865576e-07 -141896974.835 +UniRef50_B9TMP1 5.43559444234e-08 2.22042635489e-06 874469205.38 +UniRef50_F4ED07 Ribosomal protein L7Ae L30e S12e Gadd45 4.25736077648e-06 6.61156802679e-06 950422356.322 +UniRef50_A5UJE1 2.75099529625e-05 1.67793582503e-06 -10428702312.9 +UniRef50_G0DRR1 5.88148512511e-06 2.16699033911e-05 6373978199.66 +UniRef50_UPI0003DF491B PREDICTED 2.90374386356e-08 2.37067446649e-07 83984267.0501 +UniRef50_A3CLV1 6.28972659019e-05 3.24213009939e-05 -12303521015.5 +UniRef50_UPI00037FE503 hypothetical protein 3.90842627692e-06 3.54248857044e-07 -1434865039.07 +UniRef50_I6U158 4.94516401457e-05 3.46751512944e-06 -18564355557.7 +UniRef50_UPI000373EEF8 MULTISPECIES 1.84981967927e-07 4.07988863808e-07 90030620.4695 +UniRef50_UPI0003647A42 hypothetical protein 8.46230620889e-08 4.67913487571e-07 154739048.27 +UniRef50_J8V820 3.22905958286e-06 1.68758027001e-06 -622314114.676 +UniRef50_B7GVN1 Ribosomal RNA small subunit methyltransferase H 1.90348590571e-06 7.03397757491e-05 27628570017.5 +UniRef50_S5ZQH2 4.56437616925e-07 5.36708471361e-05 21483310137.1 +UniRef50_Q2RS21 Nickel import ATP binding protein NikD 2.35669579698e-05 2.41732637264e-06 -8538365810.95 +UniRef50_B7JYJ9 Quinolinate synthase A 1.33474814719e-07 1.73985370345e-05 6970117484.27 +UniRef50_U5RSM0 5.21069616518e-06 1.19424906527e-05 2717708043.02 +UniRef50_R5FEK9 3.63194734268e-07 8.84882185469e-06 3425751798.87 +UniRef50_A1VIU6 ATP synthase subunit a 1.31071523907e-06 2.07725701201e-06 309462320.261 +UniRef50_I8QU08 4.77851717485e-07 2.02450957361e-06 624404756.146 +UniRef50_UPI000329212D PREDICTED 1.89659863134e-06 3.16783074381e-07 -637790926.862 +UniRef50_P15047 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 3.46408025147e-05 3.97664880272e-06 -12379495145.0 +UniRef50_UPI0001D2E7B0 Hemolysin type calcium binding region 1.11803027427e-07 5.60295394736e-08 -22516441.5044 +UniRef50_P37439 PTS system glucose specific EIICB component 4.142464285e-05 1.72404924137e-05 -9763438304.03 +UniRef50_A5UM83 Hydrogenase maturation factor, HypF 2.34968631646e-05 1.52548570694e-05 -3327399001.42 +UniRef50_R6UTM8 1.35949819499e-07 2.59932886935e-07 50053485.7672 +UniRef50_UPI0002ADB961 1.23235463975e-07 2.42462693968e-07 48133495.8308 +UniRef50_Q5HQZ0 0.000131103479716 3.10488144008e-05 -40393296196.5 +UniRef50_P32722 Porin D 9.16558785393e-06 1.00090428843e-05 340513146.118 +UniRef50_UPI0004661A11 3 5 exonuclease 7.10425737099e-07 1.44890115476e-05 5562584173.96 +UniRef50_N0B552 HupH hydrogenase expression protein 1.50600057615e-06 3.2782478053e-07 -475644026.535 +UniRef50_UPI00035DB243 hypothetical protein 2.28332697156e-07 1.96762052644e-07 -12745456.6049 +UniRef50_A0A030TPT1 5.27371275902e-06 3.28091711381e-06 -804516056.324 +UniRef50_A5UKE8 Type II secretion system protein F, GspF 2.061537307e-05 3.25119308468e-06 -7010132542.52 +UniRef50_UPI000479F301 hypothetical protein 3.50860868992e-07 8.44838057622e-08 -107539689.24 +UniRef50_A6LUH2 Alanine racemase 1.71066158086e-06 6.06425617678e-06 1757599562.99 +UniRef50_A5IVF9 Mg2+ transporter protein, CorA family protein 0.000220142577497 4.18403523091e-05 -71982796322.7 +UniRef50_Q89XA0 3 isopropylmalate dehydrogenase 1 5.27731411045e-08 7.14496164088e-08 7539922.26647 +UniRef50_B0VUU2 1.72632652776e-06 8.48203621595e-05 33546081863.0 +UniRef50_Q8VVU3 Replication associated protein 0.000156344361669 6.20062292766e-05 -38085461705.9 +UniRef50_E3A4C5 2.75693867163e-08 7.81516991353e-07 304377899.969 +UniRef50_A1SPT8 Phosphoribosylformylglycinamidine synthase 2 1.89351416906e-07 2.17968614132e-05 8723216939.47 +UniRef50_S5RIW0 2.29085035006e-06 2.33706388735e-05 8510169304.99 +UniRef50_UPI00036A417A hypothetical protein 3.17915608956e-06 2.48023991515e-06 -282161036.275 +UniRef50_O33259 Methionine synthase 2.56379121598e-08 7.17471628083e-07 279301760.873 +UniRef50_UPI00047BB1A3 hypothetical protein 1.39638587177e-07 8.65137120671e-07 292892660.84 +UniRef50_A6LRU6 1.36112736362e-06 2.34870030592e-05 8932487533.34 +UniRef50_A6LRU7 4.73412696177e-06 2.03037814871e-05 6285660593.01 +UniRef50_A1SVB2 3.6137383823e-07 3.70206705049e-05 14799807924.5 +UniRef50_B0V786 2.16945970609e-06 0.000182036185133 72614404267.8 +UniRef50_UPI0003B5372C TetR family transcriptional regulator 3.56697056625e-06 4.08908760697e-07 -1274948304.68 +UniRef50_UPI0003B59C0B dihydroorotase 2.00723904639e-07 5.22738711286e-08 -59931100.2148 +UniRef50_UPI00037651B9 hypothetical protein 1.22315692599e-07 1.19615242555e-05 4779633780.27 +UniRef50_A6FKW5 3.00780998878e-07 2.38624979909e-07 -25093147.5979 +UniRef50_UPI0002899E1F DNA mismatch repair protein MutS 3.97252134049e-08 5.50024096988e-07 206013921.374 +UniRef50_UPI00030D0981 hypothetical protein 5.31250666865e-08 6.63296952683e-06 2656363952.33 +UniRef50_UPI00046F9613 hypothetical protein 5.36744908996e-08 5.00021355613e-08 -1482574.91494 +UniRef50_Q73D76 4.30636082256e-07 1.64216888892e-06 489110661.228 +UniRef50_UPI00046CFC68 hypothetical protein 2.83228030063e-07 2.07084000656e-06 721680891.379 +UniRef50_Q0VN76 PhoH family protein 9.97252693451e-06 2.95201448707e-06 -2834267026.41 +UniRef50_Q8H580 9.2087217049e-07 3.24395649477e-07 -240804891.123 +UniRef50_D7B233 1.68705425893e-07 1.65801358349e-07 -1172407.70443 +UniRef50_UPI000289E08F glutathione ABC transporter substrate binding protein GsiB 2.27080401129e-07 2.41766017171e-07 5928763.40893 +UniRef50_A6M367 Extracellular solute binding protein, family 1 4.90017689378e-06 4.21720443767e-06 -275724361.546 +UniRef50_M3DCH5 3 deoxy D manno octulosonic acid 8 phosphate synthase 2.94283067293e-07 5.30833351331e-07 95498252.4646 +UniRef50_UPI0003B45A6F MULTISPECIES 1.55705562304e-06 8.44071788382e-07 -287840323.347 +UniRef50_A6Q773 50S ribosomal protein L19 0.000236262437361 7.35228311697e-06 -92413838311.8 +UniRef50_Q28MI3 2.35525447874e-06 2.40717833819e-07 -853664391.837 +UniRef50_Q28MI2 8.87149931269e-07 3.61383847973e-07 -212258219.702 +UniRef50_UPI0004696A5C glyceraldehyde 3 phosphate dehydrogenase 9.18406024137e-07 4.96701491977e-07 -170247294.53 +UniRef50_Q03UP2 Aryl alcohol dehydrogenase family enzyme 5.56827580353e-05 2.87911864757e-05 -10856457435.3 +UniRef50_D5ZLN9 Predicted protein 4.53374215072e-07 2.58598590777e-07 -78633309.6936 +UniRef50_A5ULA0 Multidrug ABC transporter, ATPase component 3.80683345404e-05 1.02260498507e-05 -11240271992.5 +UniRef50_F0YBG4 2.60529422634e-08 9.39380051857e-08 27406032.9451 +UniRef50_P59495 Glutathione synthetase 6.14820115543e-07 1.09680640788e-07 -203931004.717 +UniRef50_UPI0003D30C55 sulfoxide reductase heme binding subunit yedz 5.63469727133e-07 1.63265863384e-07 -161567210.849 +UniRef50_N6Z631 Cytosine deaminase 5.43536161781e-06 3.32660204175e-06 -851332118.245 +UniRef50_Q9HZK8 Na translocating NADH quinone reductase subunit C 9.48779344854e-06 3.22552694912e-06 -2528153832.47 +UniRef50_UPI0002B49D99 PREDICTED 1.02818443732e-07 2.63854480093e-07 65012224.0133 +UniRef50_P0A8Z9 Esterase YqiA 1.22407307144e-05 7.26425818614e-06 -2009063027.84 +UniRef50_UPI0003458FD8 hypothetical protein 1.8023635718e-07 4.63878449032e-07 114509793.161 +UniRef50_K0HFH6 2.93382892887e-06 5.32954987164e-05 20331624100.4 +UniRef50_Q3J266 4.01887937646e-05 1.47899144678e-05 -10253839251.4 +UniRef50_Q3J267 2.33338886165e-05 3.42648156063e-06 -8036864519.82 +UniRef50_M9VDE3 ABC transporter 1.42809746505e-06 5.67602304324e-05 22338261080.5 +UniRef50_Q8CU42 Carbamate kinase 2 0.000122333741852 5.75793985231e-05 -26142123027.0 +UniRef50_F7YL25 Thiamine binding protein 1.94503454444e-05 2.77727308957e-06 -6731123911.24 +UniRef50_E8QNM4 1.11753251029e-06 3.48421551617e-05 13615044012.0 +UniRef50_H8L2K5 Phage tail sheath protein FI 1.11117451391e-05 1.14957701733e-05 155035618.824 +UniRef50_A2RCF8 Ribonuclease P protein component 1.86152913728e-05 1.04321338437e-05 -3303641113.13 +UniRef50_G7U4V3 Oxidoreductase, Gfo Idh MocA family protein 1.38781613551e-06 6.37509469001e-05 25176761171.3 +UniRef50_P39365 Putative permease IIC component 3.01314573935e-05 1.39629647843e-06 -11600737081.5 +UniRef50_UPI00034B692F hypothetical protein 1.09266394512e-07 5.06024177953e-08 -23683367.2885 +UniRef50_UPI00047130C0 hypothetical protein 6.32803965929e-07 5.64194487772e-07 -27698488.265 +UniRef50_X6KZ77 5.62266550961e-06 2.60860702499e-06 -1216812396.9 +UniRef50_UPI0004651C83 hypothetical protein 2.60498876052e-07 2.59308762719e-07 -480463.356865 +UniRef50_UPI0003B2E3F6 DNA polymerase III subunit alpha 7.28137946038e-08 2.8354446112e-08 -17948784.5637 +UniRef50_C1DRR2 3 phosphoshikimate 1 carboxyvinyltransferase 6.85481902221e-06 7.95735973312e-06 445109214.69 +UniRef50_F0XXB3 1.06792685367e-06 1.98210538999e-06 369065093.345 +UniRef50_W0YJM1 Putative TonB dependent receptor 3.28008067129e-06 4.05190701873e-06 311595767.836 +UniRef50_E2XUN1 Iron containing alcohol dehydrogenase 1.12123478886e-05 8.16680140779e-06 -1229524487.36 +UniRef50_D8MEB7 Serine rich repeat protein 2.59948188583e-08 6.53885502903e-08 15903732.7945 +UniRef50_Q8H3H1 2.94329214524e-06 2.73132470593e-07 -1077976227.2 +UniRef50_A1B945 Glutamate racemase 1.13865216658e-06 1.00996588728e-06 -51952230.1116 +UniRef50_Q1IXY0 DNA polymerase of the X family containing C terminal PHP hydrolase domain 6.80563681868e-07 5.55368635114e-05 22146161403.7 +UniRef50_UPI000363D712 hypothetical protein 5.64554493897e-07 2.76817518846e-06 889628715.861 +UniRef50_A0A037W4W5 3.41352956428e-07 1.42529408535e-07 -80267506.1237 +UniRef50_A6LQ35 Cyclase family protein 7.75656141478e-06 9.21800269252e-06 590001777.725 +UniRef50_W1HHP3 Ribose ABC transporter, periplasmic ribose binding protein RbsB 4.6375043112e-06 7.0702896632e-07 -1586781129.08 +UniRef50_B0UBE5 NAD dependent epimerase dehydratase 2.99578219869e-06 1.88700770092e-06 -447625870.943 +UniRef50_W0YRT6 Putative phosphatase 3.3516374106e-06 1.90875411799e-06 -582509691.396 +UniRef50_C9RRF6 von Willebrand factor type A 7.90326671147e-05 7.03346168896e-06 -29066962760.0 +UniRef50_UPI00036F1B6D hypothetical protein 5.2016679182e-07 2.12509484603e-07 -124205030.303 +UniRef50_Q4FRK9 N acetyl gamma glutamyl phosphate reductase 5.50735507107e-06 0.000100520141822 38357827949.3 +UniRef50_B5F4E2 Fatty acid metabolism regulator protein 2.25678985915e-05 2.74263208003e-05 1961404665.24 +UniRef50_A6QFE8 0.000199393980434 8.40442294886e-05 -46568109957.1 +UniRef50_O29388 Probable amidophosphoribosyltransferase 5.16832228728e-06 9.03138373516e-06 1559565311.6 +UniRef50_UPI0002192A6F hypothetical protein, partial 4.63514613452e-07 6.41552819661e-07 71876208.621 +UniRef50_U5MW64 Diguanylate cyclase and metal dependent phosphohydrolase 3.5747651459e-06 8.40571999087e-06 1950315753.4 +UniRef50_M7DL42 Type I restriction modification system, specificity determinant 5.41487252299e-05 2.23062602793e-05 -12855193851.5 +UniRef50_B9KJA0 Acetyl CoA hydrolase 9.46553154836e-05 1.4150338646e-05 -32500847056.5 +UniRef50_UPI0002003A9E L serine ammonia lyase, partial 1.96088494963e-07 2.02295259513e-06 737527455.382 +UniRef50_UPI000469BD09 hypothetical protein 2.73897386692e-07 1.46430802207e-07 -51459824.3475 +UniRef50_B5YJ32 Elongation factor P 9.87868361822e-08 3.56460190837e-07 104025895.282 +UniRef50_Q8P1D8 5.88093440391e-05 1.16547973889e-05 -19036869134.0 +UniRef50_UPI0003B5C7ED histidine kinase, partial 5.54160302854e-07 5.16405219345e-05 20624191090.8 +UniRef50_Q8E7L9 Adapter protein MecA 1.84439408233e-06 2.35312115686e-06 205379362.771 +UniRef50_J0EKQ4 5.44450945461e-06 4.43205038943e-06 -408742148.883 +UniRef50_Q49YT7 Ferritin 0.000109082595338 2.48498315549e-05 -34005800391.5 +UniRef50_R0ESP5 Replication initiation protein RepC 3.2405888911e-06 4.00430322278e-07 -1146606866.9 +UniRef50_Q2LUE0 Tryptophan synthase alpha chain 1.45735328541e-07 5.42814606691e-08 -36921048.725 +UniRef50_E8SIH2 Cysteine desulfurase 0.000289048267827 6.39126715288e-05 -90890002949.9 +UniRef50_U6LM07 Transportin, putative 1.05499274558e-08 3.58658140367e-06 1443687789.79 +UniRef50_Q4L4T7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000213467713986 4.82954677885e-05 -66682062681.5 +UniRef50_A8Z4C3 9.24953798595e-07 5.45910648302e-06 1830493079.01 +UniRef50_Q8CNM7 Ser Asp rich fibrinogen binding protein 0.000128466320814 3.27703494994e-05 -38633637941.3 +UniRef50_UPI000410849B hypothetical protein 4.71534871703e-07 1.58472817266e-07 -126386993.08 +UniRef50_K8EKX2 DNA 3 methylpurine glycosylase 1.34177484187e-06 1.55608945971e-05 5740433133.4 +UniRef50_UPI00031BCDF1 hypothetical protein 8.14589267407e-08 4.94525980692e-06 1963576100.88 +UniRef50_B0V5G5 7.25701070767e-06 7.02175553421e-05 25417944481.7 +UniRef50_Q98C73 Mll5269 protein 2.33615701709e-05 1.12865405765e-05 -4874837624.54 +UniRef50_UPI0003AD207F hypothetical protein 2.9460439771e-08 5.93182510478e-07 227581517.592 +UniRef50_M1N642 Transcriptional regulator, TetR family 1.90009725932e-06 1.96949366017e-05 7183995009.76 +UniRef50_UPI00037F1905 hypothetical protein 1.72336501293e-07 6.85726130118e-08 -41890755.0251 +UniRef50_G7M799 Signal transduction histidine kinase, LytS 1.15930237388e-05 1.7832294396e-05 2518870128.77 +UniRef50_Q5FRT7 Peptidyl tRNA hydrolase 7.24277916288e-07 3.53587290098e-07 -149652354.678 +UniRef50_Q6ABX1 Replicative DNA helicase 9.08874772519e-07 8.18994932366e-05 32696906540.6 +UniRef50_A0KZD8 Glucose 1 phosphate adenylyltransferase 1.0929205567e-07 2.37085077764e-07 51591611.2161 +UniRef50_B9KTQ6 TRAP T family transporter, large inner membrane subunit 3.81999849935e-05 3.07463663354e-06 -14180534169.4 +UniRef50_A1KKI2 Dihydroorotate dehydrogenase 5.820659425e-08 6.96606713835e-08 4624151.49613 +UniRef50_UPI00030DA7F9 thioredoxin 3.39479509458e-06 2.07784924361e-06 -531667200.779 +UniRef50_K9ERP2 6.51849752047e-08 2.14195184547e-07 60157250.0723 +UniRef50_A0A023RSC8 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 2.11725075906e-06 3.44782874165e-05 13064547613.2 +UniRef50_J7N582 3.08504985742e-07 3.09070888943e-05 12353023810.8 +UniRef50_Q6N6C1 Ribonuclease 3 1.58274438912e-07 1.30235498012e-07 -11319664.5178 +UniRef50_Q8CR64 0.000112002390839 3.60771804439e-05 -30651939143.6 +UniRef50_D5BRY1 Trimethylamine methyltransferase MttB like protein 4.65065265852e-05 1.65498210449e-05 -12093889636.7 +UniRef50_B9KX93 ParB like nuclease 3.86496640219e-07 2.26875829852e-06 759892129.404 +UniRef50_B6J667 Arginine tRNA ligase 3.17083194595e-08 7.91840525252e-08 19166536.0314 +UniRef50_A0RJK0 Malate dehydrogenase 0.000113140302627 3.09514517328e-05 -33180647676.6 +UniRef50_P9WHH0 Thioredoxin reductase 7.24085468987e-07 1.11937120171e-06 159581701.002 +UniRef50_G8S3A0 Zonadhesin 6.51586862235e-07 1.55159507712e-07 -200413814.87 +UniRef50_UPI0003B45B4C porphyrin biosynthesis protein HemD 3.7267613486e-08 1.05788362479e-07 27662667.2126 +UniRef50_UPI0002D482D7 hypothetical protein 4.90027264004e-07 3.32736312694e-06 1145467305.9 +UniRef50_F4MZ90 1.06130995183e-06 1.17132006168e-06 44412431.3223 +UniRef50_Q3IWQ9 5.91599765443e-06 6.43532891962e-06 209660404.668 +UniRef50_B2TK25 Ribosomal protein alanine acetyltransferase 5.22528263136e-06 2.20179936463e-05 6779423506.45 +UniRef50_UPI0002F7E60E hypothetical protein 8.03853303153e-07 7.88351408466e-07 -6258305.11478 +UniRef50_P37498 9.4766357036e-07 2.1519156283e-05 8304964048.68 +UniRef50_P37497 4.49726431648e-06 8.64936928866e-06 1676255729.33 +UniRef50_M8Y264 Inner membrane transporter ygjI 9.13272553671e-07 1.50671788373e-06 239581162.138 +UniRef50_A3M617 2.67720559474e-06 2.23904450587e-05 7958476680.27 +UniRef50_Q3IXS5 2.83033569829e-05 3.15322674608e-05 1303550783.12 +UniRef50_Q98DN4 Non canonical purine NTP pyrophosphatase 1.26005386141e-06 3.68436427288e-07 -359956899.531 +UniRef50_Q8RFX8 tRNA N6 adenosine threonylcarbamoyltransferase 1.11875605072e-07 3.24009683361e-08 -32084886.1137 +UniRef50_UPI0003642424 hypothetical protein 2.8420229073e-06 5.67957048102e-07 -918068293.285 +UniRef50_P26208 Beta glucosidase A 3.21071776104e-08 8.54588592476e-08 21538728.5757 +UniRef50_N0BCG1 Thioesterase superfamily protein 1.37161196875e-07 5.40150306769e-06 2125279413.99 +UniRef50_UPI0003B6024A amidohydrolase 1.16630095649e-07 1.99861919805e-07 33601708.7811 +UniRef50_I0C5D3 2.94346456335e-05 5.84785554841e-06 -9522276599.82 +UniRef50_P32444 MreB like protein 3.88095115748e-06 9.39529103395e-05 36363155229.0 +UniRef50_UPI0003B44D54 hypothetical protein, partial 3.231654542e-08 1.55313984278e-07 49655575.4153 +UniRef50_UPI00047E3099 antitermination protein NusG 3.19485371456e-07 7.18119465745e-06 2770156241.4 +UniRef50_O54479 DNA topoisomerase 4 subunit B 4.06104526265e-08 7.73769783026e-08 14843097.5914 +UniRef50_A0A033LNC5 Plasmid recombination enzyme type 3 1.0767727695e-05 3.03304278421e-06 -3122587213.74 +UniRef50_F9YWG0 7.03390041336e-06 3.44074685892e-05 11051045384.0 +UniRef50_Q836B6 Membrane protein 1.94542757785e-07 1.88197701013e-05 7519232835.81 +UniRef50_F6E617 1.93742648487e-07 8.8250253285e-08 -42588574.4803 +UniRef50_Q9JXS4 Membrane protein insertase YidC 8.89597774156e-07 2.39224766876e-05 9298655862.55 +UniRef50_S0ZBX9 FhuE receptor 3.43515259148e-05 1.59065668768e-05 -7446456308.74 +UniRef50_V8FSB8 Chitinase 1.43052151964e-06 1.86008668324e-05 6931879106.61 +UniRef50_F6BYP3 Soluble epoxide hydrolase 3.32022841676e-06 2.98299702217e-06 -136144452.291 +UniRef50_N6YQC2 NAD specific glutamate dehydrogenase 5.18265812319e-07 4.17822705968e-07 -40550114.6094 +UniRef50_M5EIH7 2.69597361079e-06 2.11517762764e-06 -234474465.566 +UniRef50_Q9F1K0 DNA polymerase III subunit alpha 0.000118030692909 2.34609896372e-05 -38178949711.6 +UniRef50_Q3Z7J2 DNA methylase 4.02913677185e-06 8.72582720359e-06 1896111562.17 +UniRef50_UPI000463CA0D hypothetical protein 1.83518623069e-06 2.58781360691e-07 -636413990.682 +UniRef50_A6LXM6 1,4 dihydroxy 2 naphthoate octaprenyltransferase 1.25968628095e-06 2.36280055991e-05 9030364998.9 +UniRef50_E6KS29 8.91168977822e-07 6.45756586073e-05 25710209960.0 +UniRef50_D6UC71 6.6629616825e-06 3.24591100703e-07 -2558877984.43 +UniRef50_B8JAU2 Peptide chain release factor 1 3.19120933889e-06 5.21291326167e-05 19756840163.1 +UniRef50_UPI0003B32316 flagellar P ring protein FlgI 7.36970633485e-08 1.49242733809e-07 30498714.2145 +UniRef50_P76594 1.77605367585e-05 7.20319967982e-06 -4262126531.77 +UniRef50_B7GV54 Probable allantoicase 1.67771550603e-06 5.04667208343e-05 19696720159.5 +UniRef50_K8E4H2 Transcription termination factor NusA 1.57035508195e-05 3.54535485164e-05 7973316429.96 +UniRef50_Q8X958 2.2824864527e-05 1.23949875793e-05 -4210669312.77 +UniRef50_M4D1J6 3.83473347309e-07 4.15188416117e-06 1521353689.16 +UniRef50_W1W4W6 Fibrinogen binding protein 7.08146216309e-07 4.6848854273e-07 -96752743.7542 +UniRef50_UPI0003B49B6A aminoglycoside resistance protein 6.57446914222e-08 9.91654400867e-08 13492366.3546 +UniRef50_M4IFW7 2.36270519647e-06 7.59540531662e-07 -647217248.227 +UniRef50_W1IYA0 2.66037451308e-08 7.86653808263e-08 21017921.1984 +UniRef50_A0A011NJ23 3.80912136999e-08 1.41565822079e-07 41773969.1788 +UniRef50_D7GGE9 Glyoxalase bleomycin resistance protein dioxygenase 7.86429143437e-06 0.000350020384246 1.38132613396e+11 +UniRef50_P94558 Non canonical purine NTP pyrophosphatase 8.57356079452e-07 2.12877795506e-07 -260183791.867 +UniRef50_C1DMW2 Apolipoprotein N acyltransferase 6.58577891726e-06 4.28888196953e-06 -927285483.894 +UniRef50_Q7U836 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 2.75589461605e-06 4.29094424593e-06 619718372.76 +UniRef50_UPI0002893D0F integrase catalytic subunit 6.30060806927e-06 2.65757676359e-07 -2436343159.56 +UniRef50_Q47HX8 BRO, N terminal 8.53595661837e-07 2.43852100651e-07 -246160958.046 +UniRef50_Q9I122 8.14717961515e-07 7.55648366401e-07 -23847120.413 +UniRef50_UPI000467C382 hypothetical protein, partial 1.7205564345e-07 2.8946862243e-07 47401060.4335 +UniRef50_Q1QM99 Bifunctional enzyme IspD IspF 5.72157068923e-08 8.19997713861e-08 10005630.9708 +UniRef50_H8GX99 Minor tail protein gp26 related protein 1.22357445078e-07 2.37500198363e-05 9538777251.35 +UniRef50_UPI0003150799 hypothetical protein 7.16677369495e-08 1.0623551574e-05 4259924991.21 +UniRef50_A5UK29 Predicted DNA modification methylase 3.1050708363e-05 5.36718182534e-06 -10368754835.6 +UniRef50_U2FHG3 2.21121022929e-06 3.01386404106e-06 324041193.481 +UniRef50_A0A011QRD8 2.87540708244e-07 4.58123897433e-06 1733418679.62 +UniRef50_UPI00036BFACB hypothetical protein 2.12640813726e-07 1.89001960121e-08 -78215464.8359 +UniRef50_X7YZZ8 Secretory lipase family protein 1.45302078434e-07 1.26563758911e-07 -7564889.53647 +UniRef50_Q54800 UTP glucose 1 phosphate uridylyltransferase 3.11862247187e-06 1.17392733756e-06 -785097289.814 +UniRef50_R9SMD3 3.41750059888e-05 6.96166975294e-06 -10986357783.6 +UniRef50_UPI000470CD83 cell division protein FtsZ 1.20496486528e-07 1.5034923146e-07 12051919.4634 +UniRef50_Q28RD6 Ribosomal RNA small subunit methyltransferase A 2.89946658605e-05 2.68393358856e-05 -870133159.74 +UniRef50_UPI0004750A2D gas vesicle protein 4.41991053582e-07 9.4393944192e-07 202642723.971 +UniRef50_UPI0002BA7CDC hypothetical protein, partial 7.31463294014e-06 1.85035929831e-06 -2205994323.38 +UniRef50_UPI00047D5FC6 hypothetical protein 4.5162956086e-07 3.04948972678e-07 -59216753.4223 +UniRef50_UPI0003AA219E hypothetical protein 1.20631958295e-06 1.77069892924e-06 227846867.811 +UniRef50_P22939 Farnesyl diphosphate synthase 3.12635788628e-05 2.85008169582e-05 -1115360883.79 +UniRef50_D3QDI5 0.000129653403119 1.3258776586e-05 -46989939054.1 +UniRef50_Q2RSB2 NAD transhydrogenase subunit alpha part 1 2.01236462023e-06 0.000102328570823 40498883462.4 +UniRef50_R6EN42 Selenium dependent molybdenum hydroxylase 1 5.94656477845e-06 1.50534575444e-05 3676564363.76 +UniRef50_D4HEA1 Hydrolase, NUDIX family 4.03539301834e-06 6.20362742993e-05 23415667524.0 +UniRef50_UPI00025560C0 dihydropyrimidine dehydrogenase subunit A 1.15072816461e-07 3.02805556708e-07 75790010.9775 +UniRef50_Z6NTK4 4.74316208288e-07 1.80806146039e-05 7107878715.88 +UniRef50_P31672 NifS IcsS protein homolog 3.82850273939e-05 2.0865021916e-05 -7032669978.93 +UniRef50_Q8CQ61 Mercuric reductase like protein 0.000210919927057 3.58806324045e-05 -70665511224.7 +UniRef50_Q1QE74 1 deoxy D xylulose 5 phosphate synthase 2.37149062373e-08 9.97685745486e-08 30703799.1807 +UniRef50_UPI0002193BBE ribonucleotide diphosphate reductase subunit alpha, partial 4.15251596048e-07 7.81014792494e-05 31362883420.9 +UniRef50_C7MAW1 Ferritin like protein 2.19044094112e-06 3.35669577408e-05 12667084865.2 +UniRef50_Q6GCR4 FMN dependent NADH azoreductase 0.000107569970558 3.08064544506e-05 -30990373446.8 +UniRef50_UPI0002000E25 3 hydroxybutyrate dehydrogenase 9.74184696341e-07 4.87616428808e-07 -196433580.467 +UniRef50_Q5HRI8 Hydrolase, haloacid dehalogenase like family 0.000219191948775 7.17344310014e-05 -59530409432.6 +UniRef50_UPI0003099509 hypothetical protein 1.32549338813e-07 9.60880601117e-08 -14719865.6419 +UniRef50_U5MWZ3 HTH type transcriptional regulator GlvR 2.9414691084e-06 2.4372767966e-06 -203548623.409 +UniRef50_UPI00037E3C64 hypothetical protein 1.09251194106e-06 3.534458039e-06 985843605.787 +UniRef50_UPI0003634D70 glutathione synthetase 3.91675247402e-07 2.90444991552e-07 -40867896.5216 +UniRef50_A0A038FYY7 2.33091636094e-06 2.27798263378e-07 -849054584.146 +UniRef50_C9SB93 Predicted protein 9.26689968771e-07 2.09375278016e-07 -289588743.099 +UniRef50_UPI000050F857 peptide ABC transporter ATPase 1.29348605029e-07 5.34676616222e-08 -30634068.0172 +UniRef50_UPI000328D76F PREDICTED 8.08509800443e-08 2.38466608707e-07 63631363.4525 +UniRef50_S6BC90 7.13667380605e-05 1.7176893057e-05 -21877105412.1 +UniRef50_L6YLT0 Pheromone autoinducer 2 transporter 1.11981204558e-06 2.47322297618e-07 -352234817.905 +UniRef50_UPI0004077040 hypothetical protein 1.32803496355e-07 2.69428624307e-07 55157240.7331 +UniRef50_A0A028CJ48 Type IV fimbrial assembly protein PilC 1.94067913801e-05 2.11949788416e-06 -6979092523.24 +UniRef50_Q6GJR0 UPF0355 protein MRSA252 4.43737335821e-05 8.75012459831e-06 -14381688097.6 +UniRef50_G8RDK6 0.000154599776358 4.23899576834e-06 -60702492258.5 +UniRef50_Q14P38 Hypothetical glucose inhibited protein n terminal and c terminal truncated 1.41119440627e-07 2.31265807809e-07 36393194.6517 +UniRef50_Q8CPD8 Cardiolipin synthase 1 0.000100857979182 3.65707694915e-05 -25953535444.8 +UniRef50_F0PBS4 PTS system, IIC component 1.36770285816e-06 3.26316801329e-06 765222543.099 +UniRef50_D4HDK7 1.80903828528e-06 7.78319479267e-05 30691381528.2 +UniRef50_Q8CN46 Para nitrobenzyl esterase chain A 0.000172311438625 5.26992318813e-05 -48288915669.4 +UniRef50_A6LQ09 6.6991763206e-06 1.23406324237e-05 2277525057.27 +UniRef50_Q50028 Amidophosphoribosyltransferase 8.05744746907e-08 9.35200774792e-07 345023124.795 +UniRef50_R4QJK7 MFS transporter 9.83036429352e-07 3.19199577081e-05 12489614758.9 +UniRef50_Q87Q74 Imidazolonepropionase 1.02857217666e-06 7.65379509256e-05 30484062805.2 +UniRef50_P0C7I7 Succinyl CoA 2.12252091912e-06 1.18245936551e-06 -379514385.045 +UniRef50_X1Y946 Translation factor GUF1 homolog, mitochondrial 1.21292830404e-07 4.90522478435e-08 -29164409.6713 +UniRef50_Q985R7 Mlr7559 protein 2.83690946718e-08 3.98673524484e-08 4641987.7639 +UniRef50_P47691 UTP glucose 1 phosphate uridylyltransferase 2.17607645211e-06 8.03295264533e-07 -554208611.346 +UniRef50_D8K235 DNA gyrase subunit A 8.04138150306e-08 1.5984467948e-07 32067214.7045 +UniRef50_Q5ZY07 Tyrosine tRNA ligase 1.50561129129e-05 5.16109050061e-05 14757618145.8 +UniRef50_Q8CP00 Truncated transposase 4.78012896264e-07 1.82670126925e-05 7181637513.3 +UniRef50_UPI0003B60438 ABC transporter 7.11122879581e-07 3.24187566549e-07 -156210534.101 +UniRef50_UPI00047C8194 PTS fructose transporter subunit IIC, partial 3.80747750328e-06 1.00627540486e-05 2525331902.22 +UniRef50_UPI000370B249 hypothetical protein 7.3371337306e-07 2.17347598294e-07 -208463199.794 +UniRef50_P47203 Cell division protein FtsA 8.17907866714e-06 9.6279209358e-06 584915403.152 +UniRef50_E2RPM1 1.77946294791e-07 1.52618452293e-06 544300317.444 +UniRef50_I0ETC3 1.73689872173e-06 3.04514785587e-05 11592428247.7 +UniRef50_S3ASG0 2.05678611677e-06 2.04843957368e-06 -3369601.86903 +UniRef50_U7QZ50 2.97044685065e-07 1.41328971289e-07 -62864344.4981 +UniRef50_A0NWG0 4.92472452184e-06 1.33832246948e-05 3414800317.29 +UniRef50_D6SE59 Transcriptional regulator, GntR family 0.000121394162887 2.12499713052e-05 -40429439049.1 +UniRef50_F4FR09 Succinate semialdehyde dehydrogenase (+)) 8.71020571909e-05 1.91572780956e-05 -27430141097.0 +UniRef50_Q8XNK5 Tagatose 6 phosphate kinase 0.000250734245553 6.4086872466e-05 -75351834936.1 +UniRef50_UPI000407C5D8 acyl CoA dehydrogenase 1.74269428e-07 4.15848954229e-07 97528619.2528 +UniRef50_UPI0003690E4C ATPase, partial 1.1266004134e-05 7.83151932378e-07 -4232056072.85 +UniRef50_B9AFH1 7.45618551809e-07 1.30355088166e-07 -248389410.404 +UniRef50_F6D286 Glycosyl transferase family 2 2.28073329637e-05 6.99684090318e-06 -6382889661.38 +UniRef50_A6LXN5 Methyl accepting chemotaxis sensory transducer 2.27945118015e-06 1.36200969454e-05 4578357860.78 +UniRef50_P77316 0.000117604719164 6.644245834e-05 -20654832526.2 +UniRef50_P59626 Probable dihydroorotate dehydrogenase A 6.03590507505e-05 7.09525803535e-05 4276737897.96 +UniRef50_A6M2U8 Methyl accepting chemotaxis sensory transducer 3.75640604108e-06 2.73822716372e-05 9538051863.12 +UniRef50_P77318 1.48311792614e-05 3.77721279616e-06 -4462621909.42 +UniRef50_G2RMW8 Acetylxylan esterase enzyme 3.82381826815e-06 1.44537080383e-05 4291416943.65 +UniRef50_P60480 Isoprenyl transferase 1 2.73540571632e-06 7.52340909078e-05 29268608870.7 +UniRef50_UPI0003808BDF hypothetical protein 2.96754254782e-08 4.10890034081e-06 1646833156.04 +UniRef50_R4XZE6 Integral membrane protein 1.837331267e-06 4.41403866548e-07 -563553021.517 +UniRef50_D7PDW2 RmlC 0.000218160111106 5.4850596379e-05 -65930055128.4 +UniRef50_UPI00036788A9 hypothetical protein 4.25852773795e-07 2.19327890648e-07 -83376629.6718 +UniRef50_Q2KZM3 Integration host factor subunit alpha 1.02363426994e-05 6.11000079721e-06 -1665854861.82 +UniRef50_D1GN41 1.77048591137e-06 1.78116821735e-07 -642858942.05 +UniRef50_K1ZZ76 1.29471578378e-06 3.85052287397e-07 -367242316.316 +UniRef50_UPI0003B64AAF hydrogenase nickel incorporation protein HypA 8.33060908762e-06 6.71011738496e-07 -3092273443.67 +UniRef50_UPI0004693869 hypothetical protein 3.35859695798e-07 3.35039691245e-07 -331045.900634 +UniRef50_D9SVX2 Ion transport 2 domain protein 3.18654513624e-06 1.9960143724e-05 6771707585.1 +UniRef50_M5DTK5 FMN oxidoreductase 1.06234330817e-06 8.58893494279e-05 34245703314.9 +UniRef50_D3E3M3 RNA binding protein 1.05861423623e-05 2.96794882833e-05 7708218050.01 +UniRef50_A9KCU3 Aspartate aminotransferase 9.25967266145e-07 5.56275901368e-05 22083716417.3 +UniRef50_Q02JU1 Protein phosphatase CheZ 1.49114289821e-05 1.63570894843e-05 583630884.987 +UniRef50_Q8CNS6 Secretory antigen SsaA like protein 0.00011082962571 5.2096720672e-05 -23711194497.6 +UniRef50_UPI000402B9E3 methionyl tRNA formyltransferase 4.78971947736e-07 1.15107410921e-07 -146896578.632 +UniRef50_P80046 Isocitrate dehydrogenase [NADP] 0.000132358594195 4.2534766752e-05 -36262981401.1 +UniRef50_Q9HHK0 Vng6359h 2.4449883858e-07 1.02530749951e-06 315222038.017 +UniRef50_H6U1K2 1.09484242337e-06 5.62970908979e-07 -214723057.157 +UniRef50_UPI0004676D4F hypothetical protein 4.04652937113e-08 2.42242140974e-06 961624913.93 +UniRef50_A6LX18 3.99183219358e-06 7.89180981163e-06 1574468822.51 +UniRef50_Q8R9W1 Acyl carrier protein 4.82925544334e-07 2.96622347216e-06 1002537846.96 +UniRef50_Q322I7 IS911 ORF2 3.891943817e-07 7.66018237618e-07 152128414.783 +UniRef50_W7WXB1 1.82605614369e-06 8.85069547031e-06 2835933098.17 +UniRef50_G8WN72 Tetratricopeptide TPR_4 1.50219540583e-07 2.13185463301e-07 25420115.68 +UniRef50_UPI00046660B8 cobinamide adenolsyltransferase 1.61230397139e-06 2.08486648215e-05 7765954931.88 +UniRef50_B5EZV0 Probable protein kinase UbiB 3.20088833449e-05 1.49242452105e-05 -6897278066.94 +UniRef50_Q9RZR2 2.87425879838e-06 0.000187789073947 74652380035.6 +UniRef50_UPI00047ADAC8 hypothetical protein 5.77294694377e-08 1.61884680638e-06 630242225.987 +UniRef50_P0ABR8 Putative dioxygenase subunit alpha YeaW 2.88350644618e-05 6.79031030624e-05 15772246601.8 +UniRef50_G4LKP1 AraC family transcriptional regulator 1.03952444466e-05 1.72531668084e-06 -3500156231.02 +UniRef50_Q9RZR8 1.13303676326e-05 0.00158341167947 6.34668517197e+11 +UniRef50_K0CFL0 2.72527822831e-07 3.61488997494e-07 35914717.8878 +UniRef50_D4HCQ6 3.90502747092e-06 3.26432554259e-05 11601975283.1 +UniRef50_A6M372 SH3, type 3 domain protein 1.29128616484e-06 1.41398748134e-05 5187132907.35 +UniRef50_I1EBV8 2.38469521385e-07 3.01175355727e-05 12062545622.3 +UniRef50_P0CE45 Glucuronide carrier protein 2.71726228068e-05 1.63473681388e-05 -4370288150.28 +UniRef50_V7EQN7 5.61042367013e-07 1.56936735516e-07 -163142402.369 +UniRef50_A6W322 Transposase IS4 family protein 3.26690077532e-07 3.09878303438e-07 -6787119.50542 +UniRef50_I6TWA3 Integral membrane protein 6.70483481502e-05 7.40453155812e-06 -24078940670.2 +UniRef50_A0A022P2T6 2.52946066768e-06 7.94925630535e-07 -700253079.636 +UniRef50_P75728 2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 2.9925394521e-05 2.65402550568e-05 -1366622342.03 +UniRef50_UPI0002FBC2B3 hypothetical protein 9.45348808271e-07 1.35864749085e-06 166853749.902 +UniRef50_U5MLY8 Periplasmic metal binding protein 7.38162390631e-06 4.39164984525e-05 14749577187.6 +UniRef50_A4EN59 1.39767420995e-05 5.0338074749e-06 -3610372450.1 +UniRef50_O30853 Pyruvate kinase I 1.14877359079e-05 1.88384634257e-05 2967578902.51 +UniRef50_M9RKI9 Multidrug resistance protein 3.99278537596e-05 1.41512970503e-05 -10406312257.5 +UniRef50_UPI0003A400F2 diaminohydroxyphosphoribosylaminopyrimidine deaminase 4.36234148132e-07 2.5418971329e-06 850081986.342 +UniRef50_D9PYH9 tRNA pseudouridine synthase Pus10 2.13657975183e-05 1.47045662343e-06 -8031993262.56 +UniRef50_UPI000444934A hypothetical protein STEHIDRAFT_148098 1.71341464609e-07 2.18146737348e-07 18895862.97 +UniRef50_D1DJ22 2.46820239252e-07 1.15362268151e-06 366087273.657 +UniRef50_F0K4V5 Proline glycine betaine ABC type transport system, ATPase component 6.95669353697e-06 4.91215608188e-06 -825404859.916 +UniRef50_UPI00016C406D methylcitrate synthase 2.29927847324e-07 4.95925860547e-07 107386662.101 +UniRef50_UPI0003B5D4F6 hypothetical protein 1.31665866566e-07 2.06532255058e-07 30224479.7481 +UniRef50_UPI00036DB78E hypothetical protein 1.59089249315e-06 3.94591102498e-07 -482961551.674 +UniRef50_Q2NAA1 4.28897515685e-08 6.71800854796e-08 9806305.87583 +UniRef50_UPI00035ED814 hypothetical protein, partial 1.39391620064e-07 1.60799853503e-06 592894633.407 +UniRef50_UPI000373BE23 glyceraldehyde 3 phosphate dehydrogenase, partial 1.83222535819e-06 5.28532042217e-07 -526316989.773 +UniRef50_M9VD52 Efflux ABC transporter permease 5.18762238404e-07 6.9319656701e-05 27775765376.5 +UniRef50_UPI00037FDD41 hypothetical protein 8.19069551971e-08 1.37281173828e-07 22355251.5794 +UniRef50_I0GDF4 1.64033268748e-07 3.0410020518e-07 56546741.0522 +UniRef50_S0AE89 Allophanate hydrolase AtzF 3.37611916097e-06 7.29824214236e-05 28100918388.8 +UniRef50_D1NC80 1.43575956807e-06 5.44984247138e-07 -359616928.103 +UniRef50_UPI000442239B PREDICTED 1.6915460085e-07 6.80029183118e-06 2677071473.09 +UniRef50_UPI0003FC0AD6 hypothetical protein 1.51788253939e-06 3.87734223892e-07 -456254743.447 +UniRef50_A7FNV8 Pimeloyl [acyl carrier protein] methyl ester esterase 3.27254034239e-05 1.30909069981e-05 -7926687149.46 +UniRef50_A3JZS3 1.9766040074e-06 3.13688679274e-06 468420398.713 +UniRef50_E5CPU2 1.77697564769e-05 3.90758585583e-06 -5596328387.7 +UniRef50_Q6GER3 Arginase 0.000125076170316 1.41810767885e-05 -44769710093.1 +UniRef50_UPI000375E276 hypothetical protein 5.50145364519e-08 1.38115146792e-06 535377752.765 +UniRef50_D4HA59 Precorrin 6A synthase 7.07502677738e-06 5.82490901771e-05 20659597370.8 +UniRef50_Q8CMZ3 2 dehydropantoate 2 reductase 8.30883951017e-05 2.40740348744e-05 -23824821411.4 +UniRef50_UPI000361337E 30S ribosomal protein S5 1.2134212494e-07 1.81763538415e-07 24392866.074 +UniRef50_Q7NFC3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 5.17132403331e-05 6.26246737375e-05 4405079563.7 +UniRef50_O34997 0.000183054763861 5.3761287071e-05 -52197363189.5 +UniRef50_G9WGT8 dTDP 4 dehydrorhamnose reductase 9.07222853237e-05 2.92478934515e-05 -24817966374.4 +UniRef50_A7FAW9 2.86255250654e-06 7.46640847699e-05 28987159678.6 +UniRef50_Q2FUW4 Accessory Sec system protein Asp2 0.000215119186918 7.67607657642e-05 -55856992468.6 +UniRef50_A7FAW6 1.4842175184e-06 0.000137011994221 54714226567.8 +UniRef50_A7FAW0 5.82358090914e-06 0.000136350344581 52695256237.9 +UniRef50_A7FAW2 3.73313578779e-06 8.72122293026e-05 33701534455.6 +UniRef50_R9SHN0 ABC transporter ATP binding protein 2.78389426139e-05 3.37506030452e-06 -9876369493.9 +UniRef50_UPI00046352F2 hypothetical protein 1.45136677172e-07 1.84512413226e-07 15896467.8396 +UniRef50_U3SSP8 5.39114000969e-05 7.8162964425e-06 -18609158995.8 +UniRef50_UPI000366C569 hypothetical protein 1.66569049624e-06 3.54394713138e-07 -529386199.046 +UniRef50_UPI0003C16BB8 PREDICTED 1.61029536785e-07 2.73006163166e-07 45206338.1777 +UniRef50_UPI000376CC75 hypothetical protein 4.58270968608e-06 2.54982075216e-06 -820702208.976 +UniRef50_A6UV64 30S ribosomal protein S19 1.92898075128e-05 4.33227440392e-06 -6038539665.63 +UniRef50_Q9K0Q4 Beta hexosaminidase 5.00383185329e-08 8.74156825064e-05 35270582655.7 +UniRef50_P37669 Inner membrane protein YiaH 1.52577712655e-05 2.75996920751e-06 -5045516056.09 +UniRef50_U3SSP7 6.38318592068e-05 5.07242298452e-05 -5291710821.98 +UniRef50_Q08QR2 ABC D methionine uptake transporter, substrate binding protein 3.76411238867e-07 2.08963529864e-07 -67600694.939 +UniRef50_X7F6B4 Membrane protein 9.75095939175e-08 2.02717284401e-07 42473635.6919 +UniRef50_Q9RS79 Dipeptidyl peptidase IV related protein 2.40627612955e-06 0.000433269637271 1.73944826181e+11 +UniRef50_UPI000369B201 NADH 2.79896104986e-08 1.15976244304e-07 35521283.7847 +UniRef50_UPI00036BA5B6 hypothetical protein 7.77735127234e-08 2.12370083188e-07 54338287.1824 +UniRef50_A4A467 Type IV pilus biogenesis stability protein PilW 8.36324678114e-08 1.55344313008e-07 28950951.9092 +UniRef50_D6SDK6 2.44859079133e-06 1.77723192699e-06 -271035812.034 +UniRef50_UPI00045E77FA MarR family transcriptional regulator 2.83046098879e-07 1.84591410704e-06 630948993.441 +UniRef50_R7PVC1 DNA helicase UvrD REP helicase family 2.58092133347e-05 1.12856014145e-05 -5863360356.94 +UniRef50_P57527 2.50056053256e-05 2.75139787458e-06 -8984296637.8 +UniRef50_P76219 TVP38 TMEM64 family membrane protein YdjX 3.3828227249e-05 5.17120838683e-06 -11569190175.8 +UniRef50_G8V0Z4 8.77412993885e-05 5.15987979217e-05 -14591171360.5 +UniRef50_UPI000383F1E5 PREDICTED 3.15361001781e-07 3.19561047692e-07 1695610.07463 +UniRef50_UPI000328DEDF PREDICTED 9.04831890783e-07 1.60063254856e-06 280903263.979 +UniRef50_B3EH06 Polyribonucleotide nucleotidyltransferase 7.78843028982e-08 6.37613110064e-08 -5701625.13532 +UniRef50_K7RKE8 Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR 1.8832569052e-06 6.30946895641e-05 24711806513.1 +UniRef50_Q57766 Formylmethanofuran tetrahydromethanopterin formyltransferase 2.64523642331e-05 2.06034910605e-06 -9847355830.46 +UniRef50_A6M1R7 Methyl accepting chemotaxis sensory transducer 8.63901800333e-06 1.79298914907e-05 3750839638.69 +UniRef50_Q5HPB5 Glucose specific phosphotransferase enzyme IIA component 0.000254539302591 4.0920415787e-06 -1.01108632604e+11 +UniRef50_A3SND6 ArsC family protein 1.32792131607e-06 9.15015893171e-07 -166694986.144 +UniRef50_A3PMB5 Large conductance mechanosensitive channel 0.000201084386923 3.75054136981e-05 -66038838830.7 +UniRef50_B6AX96 3.13884603069e-06 9.19852653131e-07 -895834856.632 +UniRef50_A1KU06 Sulfite reductase [NADPH] flavoprotein alpha component 1.27731434113e-06 3.3734789105e-05 13103480860.2 +UniRef50_M7E309 MDR permease 4.60302035819e-05 1.50254674536e-05 -12516992445.9 +UniRef50_Q6F6V8 4.98880161478e-06 8.78332463362e-05 33445318949.7 +UniRef50_UPI000344EB03 hypothetical protein 3.00953045403e-08 1.06341754032e-07 30781627.309 +UniRef50_M4S586 Beta lactamase domain containing protein 8.24029015742e-08 2.76703350653e-07 78441475.6278 +UniRef50_H6LL43 2.90185129516e-06 7.36758633105e-07 -874074476.348 +UniRef50_F5XF11 Two component histidine kinase SenX3 1.71066158086e-06 4.38125706264e-05 16997057330.2 +UniRef50_Q8CU74 7.15247381234e-05 2.75936863705e-05 -17735504687.3 +UniRef50_F5WYS0 ICESt1 ORFD ATP GTP binding protein 6.60051449838e-06 8.84181752067e-07 -2307753676.98 +UniRef50_UPI000360AFBD hypothetical protein 2.81811938373e-07 7.60395207207e-08 -83072850.1176 +UniRef50_K7RZE6 Transcription termination antitermination protein NusG 2.81006939596e-06 7.81113212247e-05 30400039413.5 +UniRef50_H8I846 Formate nitrite transporter 4.62186480245e-05 2.21211015129e-06 -17765979360.4 +UniRef50_B9KPG8 1.79712611338e-07 2.77095231551e-08 -61365511.9871 +UniRef50_J9D1K7 3.24128190113e-06 2.52053617521e-05 8867168565.42 +UniRef50_A5VTC2 D isomer specific 2 hydroxyacid dehydrogenases family protein 1.95032563519e-05 2.51333366122e-06 -6859040280.03 +UniRef50_P52046 3 hydroxybutyryl CoA dehydratase 8.87650654886e-06 6.59054324976e-05 23023277229.1 +UniRef50_Q0VRV2 Acetyl CoA C acetyltransferase 5.62472016648e-06 0.00012347988704 47579577112.6 +UniRef50_Q9RR73 1.00078876231e-05 0.000502645881787 1.98884003592e+11 +UniRef50_A5VNQ2 5.65182321255e-06 5.65472888275e-07 -2053422042.45 +UniRef50_A9M492 Adhesin MafA 3 1.23227199839e-06 0.00011298120541 45114415732.0 +UniRef50_A6DYV3 Flagellar scaffolding protein FlgD 9.9206446965e-08 1.36952560755e-07 15238569.3339 +UniRef50_W4U0B3 1.63143287358e-06 1.41822583322e-06 -86074298.5379 +UniRef50_Z5JZC3 6.01971740866e-07 3.36153457143e-06 1114069378.34 +UniRef50_K7RUT9 1.67771550603e-06 6.3029752548e-05 24768570228.0 +UniRef50_UPI00046E091D PilS cassette 6.33796658764e-07 1.64624242536e-06 408736780.083 +UniRef50_M9R624 Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme 7.49810928391e-06 4.80447284148e-06 -1087454086.45 +UniRef50_O07020 Lactate utilization protein A 3.30081361737e-05 6.25536701782e-06 -10800421201.6 +UniRef50_UPI0003759AA3 purine nucleoside phosphorylase 4.7543742004e-07 1.94131173471e-06 591791449.133 +UniRef50_T1Y5U5 ABC transporter permease protein 0.000178999304822 3.09685030896e-05 -59761851201.4 +UniRef50_C5BUP0 Urease subunit beta 7.22728688083e-07 3.12071793663e-07 -165787227.604 +UniRef50_D4W6Z6 Membrane family protein 6.2199946917e-08 2.99726827608e-07 95892516.5176 +UniRef50_UPI0003C179AB PREDICTED 2.55770629397e-07 2.84526028641e-07 11608907.5432 +UniRef50_Q5HGK2 3 oxoacyl [acyl carrier protein] reductase FabG 0.000309970729355 0.000134952954547 -70656823399.6 +UniRef50_U6KAI1 2.54745231289e-07 3.36412184966e-07 32969951.3656 +UniRef50_UPI0003B35B8E cupin 8.08235397045e-07 2.4469623906e-07 -227507673.482 +UniRef50_Q9EUS8 Polyphosphate kinase 1.17880767505e-07 5.24350687989e-06 2069278160.07 +UniRef50_G8VFL4 Cystathionine beta synthase 2.39020447962e-06 7.36416276298e-05 28765073879.0 +UniRef50_Q99YM5 Guanylate kinase 0.000346915167994 0.000140835460324 -83196906868.8 +UniRef50_Q9CJJ1 DNA polymerase III subunit beta 8.98002172417e-05 8.6717461674e-05 -1244546252.35 +UniRef50_D8GNU7 Cell shape determining protein MreC 7.98831241898e-06 2.47413493888e-05 6763406607.59 +UniRef50_UPI0001A44424 betaine aldehyde dehydrogenase, partial 6.54044397151e-07 2.92765031581e-06 917882609.645 +UniRef50_UPI0003F82984 damage inducible protein CinA 2.43914407826e-07 7.59169964777e-08 -67822616.5213 +UniRef50_H5Y5I7 ABC type multidrug transport system, ATPase and permease component 2.69060549412e-06 8.21297541102e-06 2229448502.55 +UniRef50_B4TGE4 Succinylglutamate desuccinylase 2.09478361568e-05 5.99826634225e-06 -6035324785.96 +UniRef50_Q65RE8 7 cyano 7 deazaguanine synthase 4.03911714157e-07 3.26241652494e-05 13007711739.1 +UniRef50_Q3JJR8 9.95305699112e-08 1.95985852983e-06 751037226.211 +UniRef50_A5UMJ4 Type II restriction endonuclease 2.72281622131e-05 1.3599855927e-05 -5501914485.82 +UniRef50_Q3JU21 2.18634165189e-07 2.98486573284e-08 -76215026.1822 +UniRef50_UPI00047AABBE fucose isomerase 1.48872981473e-06 6.77948946537e-06 2135944595.89 +UniRef50_B7UNN6 ATP dependent 6 phosphofructokinase isozyme 1 0.00034993714843 8.49376788707e-05 -1.0698353777e+11 +UniRef50_P46392 Acetyl propionyl coenzyme A carboxylase alpha chain 8.87369493691e-07 6.53772305711e-05 26035348296.5 +UniRef50_T0YVF7 Pyridine nucleotide transhydrogenase subunit alpha 7.75725682494e-08 1.41895951367e-07 25968139.1012 +UniRef50_UPI00045E62A3 hypothetical protein 8.80963342274e-08 9.08741216152e-07 331304409.278 +UniRef50_I2RL58 PF09994 domain protein 4.04924392951e-08 2.51497573201e-07 85185361.882 +UniRef50_UPI000472C37E PTS fructose transporter subunit IIC, partial 6.0311729084e-08 1.53809705904e-06 596600072.17 +UniRef50_C6SPS1 1.92246950163e-05 9.05358373282e-06 -4106202438.72 +UniRef50_UPI00037FA03F hypothetical protein 8.46849092423e-08 2.8140379124e-08 -22827720.6882 +UniRef50_V4L8J8 1.40764764599e-06 2.94050790979e-07 -449572715.738 +UniRef50_A1SWY4 Leucyl phenylalanyl tRNA protein transferase 5.9329126449e-08 1.03524407857e-07 17842177.4415 +UniRef50_I4Y4D8 Thioesterase family protein 1.47072463189e-06 1.02045193119e-06 -181780614.74 +UniRef50_UPI000464BB09 glycine betaine ABC transporter ATP binding protein 8.82756527973e-07 7.70220340832e-08 -325284902.658 +UniRef50_T5X6I4 Colicin I receptor 3.64837481422e-05 2.22825857959e-05 -5733183507.06 +UniRef50_K9ZX93 Threonine tRNA ligase 1.37622107211e-06 0.000420964261582 1.69392840878e+11 +UniRef50_D4Z4T4 Aminomethyltransferase 9.67034568974e-06 6.74196757176e-06 -1182222181.47 +UniRef50_T0VCJ2 1.95432764089e-07 5.61807633148e-05 22601964960.6 +UniRef50_D7GTN9 Predicted phosphatase homologous to the C terminal domain of histone macroH2A1 1.38637711087e-07 1.56109150731e-06 574262053.005 +UniRef50_P11502 Lactose specific phosphotransferase enzyme IIA component 4.81078295433e-07 1.66687811773e-05 6535174298.88 +UniRef50_UPI0004209A5E hypothetical protein 9.4096064599e-08 1.15076435093e-06 426589953.969 +UniRef50_UPI0001FFECE5 modular polyketide synthase, partial 1.58923174253e-07 8.92442581824e-07 296130786.132 +UniRef50_UPI00017449FD LuxR family transcriptional regulator 4.20695383552e-07 5.78168787499e-07 63573945.5894 +UniRef50_UPI000378F680 hypothetical protein 1.72182927649e-07 2.04383980537e-07 12999960.2022 +UniRef50_Q8XA81 3.20240401711e-05 8.16114675605e-06 -9633742902.27 +UniRef50_A6LQJ4 Integral membrane sensor signal transduction histidine kinase 3.0068195338e-06 1.07831884218e-05 3139415546.86 +UniRef50_Q6A662 Chaperone protein DnaJ 2 5.15760254413e-06 4.96195432916e-05 17949831089.1 +UniRef50_Q88RZ3 Putative ribose uptake protein RbsU 0.000273427435426 8.67479699412e-05 -75364791030.9 +UniRef50_A0A023RQK0 2.27401198102e-06 5.52252863506e-05 21377079248.2 +UniRef50_A6V0G0 2.14847805227e-06 1.44056929367e-06 -285791452.864 +UniRef50_Q9KD29 Manganese transport system membrane protein MntC 0.000184274774468 7.38252906251e-05 -44589811995.0 +UniRef50_Q2RX27 Dihydroorotate dehydrogenase 1.12547909083e-06 7.13944362462e-08 -425546910.127 +UniRef50_M7D5Z8 Glucosyltransferase SI 1.80152405111e-05 1.60935534159e-06 -6623257165.78 +UniRef50_H6VUW6 Universal stress protein 1.2077110532e-07 2.31670922108e-06 886527164.523 +UniRef50_O07641 Nitrogenase iron protein 0.000134032232764 8.34483981311e-05 -20421314774.8 +UniRef50_X1BTL4 Marine sediment metagenome DNA, contig 1.8301282492e-06 3.56922694185e-07 -594751160.823 +UniRef50_UPI0003B672DD serine threonine protein phosphatase 6.01750873852e-08 1.65059218846e-07 42343010.9438 +UniRef50_UPI0004764F09 hypothetical protein 1.25049829354e-07 6.37591113694e-08 -24743814.9721 +UniRef50_S9SME8 1.42380156698e-05 6.24224374848e-06 -3227991243.79 +UniRef50_B7N3G5 Putative aminoacrylate hydrolase RutD 2.23532897472e-05 1.58416517713e-05 -2628828157.65 +UniRef50_C1E2L9 Serine pyruvate aminotransferase and or alanine glyoxylate transaminase 1.56416846208e-06 1.75088955651e-06 75381597.1469 +UniRef50_UPI00034AE262 hypothetical protein 1.89565847143e-07 4.19644071805e-08 -59588512.5864 +UniRef50_R0WMM8 Dehydrogenase E1 component family protein 8.91395623543e-07 3.47903591988e-05 13685427582.4 +UniRef50_A0A025BQD1 Peptide ABC transporter permease 4.44101163361e-06 5.51993841485e-06 435575981.507 +UniRef50_Q89AJ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.5119010553e-07 4.19928780027e-07 108493100.689 +UniRef50_UPI00037341E7 hypothetical protein 3.05648755069e-07 7.42368384363e-07 176309073.498 +UniRef50_UPI0003699727 hypothetical protein 2.95001406898e-08 1.03926800907e-07 30046956.0475 +UniRef50_S2VYA1 1.61203981004e-05 6.30569477283e-06 -3962316173.29 +UniRef50_Q98GP9 Phosphoadenosine phosphosulfate reductase 8.84548647801e-07 1.45326902693e-07 -298432889.771 +UniRef50_UPI0003737277 hypothetical protein 1.24347800654e-07 8.61100334685e-08 -15437055.843 +UniRef50_UPI00016C406B hypothetical protein 2.06782893365e-07 3.36119132743e-05 13486061061.8 +UniRef50_K9ZZM6 9.08594968655e-07 1.29011517711e-05 4841542346.35 +UniRef50_Q8ZNB8 UPF0226 protein YfcJ 1.51599417384e-05 4.07635758131e-06 -4474578935.09 +UniRef50_UPI0003C17609 PREDICTED 1.24720416017e-07 1.58288043865e-07 13551663.2834 +UniRef50_UPI000366A6AC molybdenum ABC transporter permease, partial 6.96715264752e-07 1.69556098307e-06 403246273.7 +UniRef50_UPI000361A0EC hypothetical protein 7.81388499599e-07 4.51565414392e-07 -133153626.882 +UniRef50_A1TJX6 Respiratory nitrate reductase alpha subunit apoprotein 3.47904978328e-05 9.98907020898e-06 -10012640679.5 +UniRef50_A6LQT2 Transcriptional antiterminator, BglG 5.85535498806e-06 8.54432450413e-06 1085569991.0 +UniRef50_Q7W5I7 Acyl carrier protein 4.43742718615e-07 1.35375276389e-06 367382222.357 +UniRef50_P42592 Glucosidase YgjK 2.67833676706e-05 1.8147854047e-05 -3486262819.52 +UniRef50_Q8DSD7 30S ribosomal protein S6 5.3352614749e-05 3.0092323109e-05 -9390465170.94 +UniRef50_F5XFZ9 1.1626878507e-06 5.02198955515e-05 19804996748.4 +UniRef50_L7VWI6 2.965222684e-06 2.15381935616e-05 7498136259.27 +UniRef50_Q3JWK6 1.11061051714e-06 6.16077896587e-07 -199648887.515 +UniRef50_Q2SVL7 Amino acid ABC transporter, permease protein 9.20828364241e-06 9.36874807574e-05 34105288551.7 +UniRef50_A8HTG7 Glycine rich protein 3.75818057951e-07 8.35102338868e-07 185418700.258 +UniRef50_V9WKD4 1.66865494709e-07 2.71903574682e-07 42405161.8473 +UniRef50_UPI0002654825 PREDICTED 2.18779327025e-06 1.25590932598e-06 -376212983.804 +UniRef50_R9ZLH4 binding protein 2.76271495287e-06 3.72247947718e-06 387468716.099 +UniRef50_A7X4S8 Thiamine phosphate synthase 0.000162512165071 5.32096088876e-05 -44126783224.3 +UniRef50_S9TII9 2.75742172611e-07 5.61566310732e-07 115390712.016 +UniRef50_UPI00037C37FD hypothetical protein 1.49964699717e-07 4.36028973401e-07 115487657.69 +UniRef50_D2PYN9 1.34243047478e-08 3.62960602276e-07 141112092.605 +UniRef50_A3PMH2 Chromosomal replication initiator, DnaA 2.5369362184e-06 3.0361581695e-06 201542027.801 +UniRef50_Q9VC54 CG6695, isoform A 2.26051916846e-07 9.81732509088e-08 -51626186.6865 +UniRef50_Q9KXR1 Bifunctional protein PyrR 3.79477537662e-07 7.92772366519e-07 166852194.107 +UniRef50_R1HQL9 Putative thioesterase 1.87746586939e-08 1.04193686432e-05 4198847421.18 +UniRef50_UPI0003B6B26D heme ABC transporter ATP binding protein 3.69274342109e-08 4.48568236291e-08 3201191.81268 +UniRef50_U5VKS0 6 pyruvoyl tetrahydropterin synthase 1.06924502244e-05 6.03519713684e-06 -1880190222.37 +UniRef50_G2PZY4 1.9551527407e-07 8.31430732305e-07 256726874.05 +UniRef50_UPI000380DC6B 50S ribosomal protein L6 2.23111110249e-06 3.82306720477e-06 642692213.989 +UniRef50_UPI00037713A6 hypothetical protein 3.0419894852e-08 1.05508197765e-07 30314069.3231 +UniRef50_UPI00016C3B98 serine threonine protein kinase 3.44119985311e-08 4.47586506109e-08 4177070.41231 +UniRef50_B9KTH1 Transcriptional regulator, TetR family 1.55322168978e-05 1.92006140307e-05 1480976938.85 +UniRef50_G2JGS2 ABC type dipeptide transport system, periplasmic component 3.18071736837e-06 4.3397590703e-05 16236045281.7 +UniRef50_P0A349 GTP sensing transcriptional pleiotropic repressor CodY 6.21486404786e-05 2.74243345645e-05 -14018628412.7 +UniRef50_Q9CPL9 Probable uracil permease 1.33975908274e-05 4.00057022574e-05 10742021102.5 +UniRef50_I0DAK7 UDP glucose GDP mannose dehydrogenase family protein 0.000108976994247 2.30629229535e-05 -34684564865.4 +UniRef50_B3WA65 Probable potassium transport system protein kup 1.29792056282e-06 9.45517732816e-07 -142269346.942 +UniRef50_D2Q0P5 1.15145700096e-07 5.85915982714e-07 190055740.094 +UniRef50_K2FFC0 1.31455139547e-06 5.57404254872e-06 1719608848.4 +UniRef50_H0B2B9 0.000109977344134 3.09004981378e-05 -31924293110.7 +UniRef50_Q117D2 Formamidopyrimidine DNA glycosylase 4.80485102739e-08 1.09680837115e-07 24881726.6595 +UniRef50_UPI00039DBFBF MULTISPECIES 1.15303042107e-07 6.014540962e-08 -22267813.0953 +UniRef50_G2T8N1 4.10414141744e-05 8.10929493278e-06 -13295100660.4 +UniRef50_UPI0002557290 2,3 dihydroxybenzoate 2,3 dehydrogenase 1.6664444401e-07 2.52742763686e-07 34758948.1984 +UniRef50_M9TV63 2.94144926378e-06 4.60233826278e-06 670521270.296 +UniRef50_A4EKM3 5.98588638428e-07 5.55798901992e-07 -17274741.6883 +UniRef50_Q3JMQ9 5.02290349863e-07 1.35798517315e-06 345454500.717 +UniRef50_U3T560 2.18412983181e-06 5.59418576684e-05 21702654409.1 +UniRef50_G6Y004 2.9103906e-06 6.44738758116e-07 -914671451.242 +UniRef50_A6LWZ4 Transcriptional regulator, XRE family 1.11134245983e-06 2.33306378487e-05 8970202209.91 +UniRef50_A8ALR8 Carnitine operon protein CaiE 8.35468738804e-05 0.000105478625622 8854117310.94 +UniRef50_UPI0001FFE0D7 large conductance mechanosensitive channel protein 1.05354747894e-07 2.46353667449e-07 56922994.0757 +UniRef50_UPI000262A240 polar amino acid ABC transporter permease 7.11716380304e-08 3.06577852564e-07 95036377.5665 +UniRef50_P57011 Signal recognition particle receptor FtsY 2.32896301478e-06 2.67137741287e-05 9844447481.96 +UniRef50_J3XF98 Response regulator aspartate phosphatase 1.57214837176e-07 1.77013010107e-06 651153684.728 +UniRef50_UPI00036D551C hypothetical protein 4.24201385311e-07 4.74332582522e-06 1743683538.01 +UniRef50_P20925 Frd operon probable iron sulfur subunit A 2.40436935571e-06 1.16572383629e-05 3735496763.67 +UniRef50_B0V8H4 Outer membrane lipoprotein 6.54599980668e-06 2.29743613671e-05 6632331160.6 +UniRef50_UPI0002F817F3 hypothetical protein 1.34716177885e-07 1.87569456925e-07 21337517.3311 +UniRef50_UPI0003D0DACE 2.66191742024e-07 8.26985916499e-08 -74078436.5201 +UniRef50_UPI0002628372 ABC transporter permease 7.01591137044e-08 9.1167597641e-07 339730684.048 +UniRef50_UPI00046E6C82 hypothetical protein 1.8876178714e-06 2.53766985984e-07 -659605652.049 +UniRef50_Q8TMA8 5.71027154808e-06 3.45213122577e-05 11631370685.7 +UniRef50_UPI00030EAE4B hypothetical protein 9.31604913579e-08 5.92884746189e-07 201744813.981 +UniRef50_Q5HNQ0 0.000230934674574 8.60544904211e-05 -58489908222.4 +UniRef50_C5N6Q3 7.56979456186e-05 8.64341576184e-06 -27070736554.8 +UniRef50_B9KQJ6 Flagellar hook capping protein 5.5570871755e-05 2.75216540885e-05 -11323813374.6 +UniRef50_C5N6Q5 7.12237714815e-06 3.22779077901e-06 -1572292309.17 +UniRef50_UPI0002FA4ABF hypothetical protein 1.63812690171e-07 9.94876450826e-08 -25968810.0593 +UniRef50_UPI0004628FA4 hypothetical protein 7.83942943586e-07 5.5462092872e-07 -92580111.499 +UniRef50_P32718 D allose kinase 4.22505255531e-05 7.62029008334e-06 -13980651019.9 +UniRef50_L7MJF8 5.05872473975e-07 4.73908548811e-07 -12904228.8302 +UniRef50_UPI0003639553 hypothetical protein, partial 3.05847426813e-08 2.39833486033e-07 84476285.462 +UniRef50_G8B073 7.74391466711e-06 1.29855481407e-05 2116111755.36 +UniRef50_P0A8Y3 Alpha D glucose 1 phosphate phosphatase YihX 6.22026159926e-05 2.95809721398e-06 -23917739242.9 +UniRef50_R9SMW4 Transporter ExbD Tol family 2.39157124303e-05 4.66289534524e-06 -7772598515.89 +UniRef50_V8G3J5 4.36309142546e-06 2.82599717884e-06 -620543809.628 +UniRef50_D4LWG1 ATPase components of various ABC type transport systems, contain duplicated ATPase 3.50717226372e-05 5.94922189873e-06 -11757110921.4 +UniRef50_Q07UN5 Leucine tRNA ligase 1.56642599484e-08 2.10485024268e-08 2173684.76062 +UniRef50_P41441 Putative type II secretion system protein F 1.68466941769e-05 1.6544779646e-05 -121886601.032 +UniRef50_Q8EPE6 Formamidopyrimidine DNA glycosylase 7.11819513252e-08 9.37007812337e-08 9091127.97118 +UniRef50_Q87MG2 Ribonuclease HI 4.7919820593e-07 2.4437233428e-07 -94802086.0226 +UniRef50_P0A2J8 Spermidine putrescine transport system permease protein PotB 2.5142441585e-05 8.28959172479e-06 -6803702296.29 +UniRef50_F3WY50 2.35959591489e-07 2.1645342408e-07 -7874879.1506 +UniRef50_X7TVE6 1.69561674168e-06 8.01204318782e-07 -361085270.799 +UniRef50_A0A023WMY2 Amino acid transporter 2.11417757871e-05 1.38376435324e-05 -2948767823.0 +UniRef50_B2SB84 Zinc containing alcohol dehydrogenase superfamily 9.1854574269e-06 4.17987402093e-06 -2020815446.41 +UniRef50_UPI000471E251 hypothetical protein 6.72164099799e-07 6.87707667232e-07 6275128.91372 +UniRef50_UPI0004742581 hypothetical protein, partial 7.34301894932e-07 1.69442846507e-07 -228040529.449 +UniRef50_UPI000371C1F0 hypothetical protein 7.08006868148e-08 2.69391720763e-07 80173637.3908 +UniRef50_L1JWK7 1.70422559791e-07 2.72199399273e-07 41088559.0412 +UniRef50_M1X9S4 1.36171667226e-05 3.02521418897e-06 -4276101215.69 +UniRef50_Q98D52 Peptide deformylase 6.06404125177e-07 7.8806581022e-07 73339051.4914 +UniRef50_B0VM85 1.1796437152e-06 4.87379042999e-05 19199853403.5 +UniRef50_Q9L0Q7 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 2.97233062088e-06 3.27866215539e-05 12036395112.1 +UniRef50_A6LWL7 Glycosyl transferase, family 2 2.10103733117e-06 6.08542521751e-06 1608546283.65 +UniRef50_Q98DM9 Ribosomal RNA small subunit methyltransferase I 4.01160229619e-07 1.5082016923e-07 -101065354.397 +UniRef50_Q3J1K3 Cellulose synthase like protein 4.46604179901e-05 3.94399866942e-06 -16437718126.4 +UniRef50_A7IBU8 LigA 1.96793621444e-06 4.46584471011e-07 -614188367.908 +UniRef50_P0AGM1 UPF0118 inner membrane protein YhhT 2.58692665867e-05 1.01684159176e-05 -6338626086.22 +UniRef50_I6WV66 Transcriptional regulator 1.22560385996e-06 3.3432079833e-06 854902770.517 +UniRef50_C1DCM4 Hydroxyethylthiazole kinase 1.12570303711e-07 9.41087477955e-08 -7453156.67185 +UniRef50_UPI00046F396F hypothetical protein 2.95356594739e-06 1.95190639787e-06 -404382251.886 +UniRef50_S3L5X6 4.34331037458e-07 1.97774059711e-06 623093378.996 +UniRef50_K8EUS8 6.02973776707e-08 1.60194392297e-05 6442901406.35 +UniRef50_Q8K7S6 Ribonuclease J 2 5.19571685317e-06 4.73855465759e-05 17032551986.5 +UniRef50_P45848 2.87596320364e-05 1.09582558109e-05 -7186634029.69 +UniRef50_Q59650 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 1.11572213456e-06 1.25134197123e-06 54751392.3062 +UniRef50_UPI000382C69D hypothetical protein 4.93171770119e-07 1.63079356461e-06 459271878.625 +UniRef50_Q9Z515 Sporulation transcription regulator WhiA 1.73689872173e-06 6.71002286067e-05 26387978372.8 +UniRef50_Q8X8Q3 2.03545767749e-05 3.53836440799e-06 -6788911290.65 +UniRef50_R6XPV2 2.09522808884e-06 2.93934127809e-06 340778852.934 +UniRef50_G7QNB5 ABC transporter permease protein 0.00014729546539 1.96490360154e-05 -51532429936.5 +UniRef50_A7Z7M0 Argininosuccinate synthase 0.000212370251456 5.84811491052e-05 -62126919050.7 +UniRef50_B2W926 Predicted protein 2.93586788875e-07 2.27166696312e-06 798575240.114 +UniRef50_W8N413 Lytic transglycosylase 6.13600488153e-06 2.48550477328e-06 -1473751690.37 +UniRef50_A4CBF5 1.32776770007e-07 1.95166864731e-07 25187646.8526 +UniRef50_UPI000237DF5D cobalamin adenosyltransferase family protein 3.14085390483e-07 1.59405553876e-07 -62446148.1733 +UniRef50_P62221 Protein RecA 0.000249784217034 7.0800593789e-05 -72257885080.1 +UniRef50_C8RX55 2.65600949801e-07 8.08480424375e-08 -74587015.876 +UniRef50_T1JH80 1.22257321865e-08 9.74880742766e-09 -999964.920429 +UniRef50_A3DJK3 Energy coupling factor transporter ATP binding protein EcfA1 2.42264085212e-07 1.00705557871e-07 -57148914.606 +UniRef50_P0A9P7 ATP dependent RNA helicase DeaD 7.84208772218e-05 1.56345348448e-05 -25347616892.7 +UniRef50_D6EHT9 Nitrate reductase subunit beta NarH2 2.1620539244e-07 1.01530060791e-07 -46295838.6113 +UniRef50_M1MQI8 Monosaccharide ABC transporter substrate binding protein, CUT2 family 1.08386420635e-05 1.2867077159e-05 818904139.751 +UniRef50_Q9CLL7 Bifunctional protein PyrR 8.96691382823e-08 8.59545839347e-07 310808671.669 +UniRef50_S5CVX5 1.08442606287e-06 4.11327509227e-05 16168000194.1 +UniRef50_D9SR17 GCN5 related N acetyltransferase 1.7813189581e-05 2.18181243891e-05 1616841328.11 +UniRef50_C5MZ73 9.75885037427e-05 2.81695741394e-05 -28025273746.9 +UniRef50_M9VQH6 MarR family transcriptional regulator 3.30162672461e-06 4.39814740684e-05 16422953570.6 +UniRef50_O25001 Beta lactamase HcpA 3.63260863075e-06 6.73722934297e-05 25732492927.2 +UniRef50_Q8FL94 DnaJ like protein DjlA 3.86936121043e-05 1.23333728707e-05 -10641952055.1 +UniRef50_UPI0003B6B2AB nickel ABC transporter permease 4.60357662078e-07 6.93050738469e-07 93941050.4042 +UniRef50_A6WVV0 AMP dependent synthetase and ligase 4.07168992871e-06 5.83266953428e-05 21903411469.5 +UniRef50_Q7VGP6 tRNA 2 methylthio N dimethylallyladenosine synthase 1.03990630532e-06 4.68624729504e-05 18499132460.8 +UniRef50_C5Y6L8 3.34753322404e-06 4.29683419841e-07 -1177971772.0 +UniRef50_D8LGM3 1.99146489782e-08 1.24146286499e-07 42079591.1333 +UniRef50_F0P516 Replication initiation protein, truncated 0.00219429720121 0.000852047566562 -5.41882648763e+11 +UniRef50_Q895N8 Phosphopantetheine adenylyltransferase 8.71225288318e-07 1.573147295e-07 -288214453.263 +UniRef50_E3EY08 Glutathionylspermidine synthase 6.96088495222e-05 7.9392691396e-06 -24896766371.3 +UniRef50_E2XT92 Long chain fatty acid transporter 8.83718489308e-06 8.02132812382e-06 -329371389.439 +UniRef50_P37338 HTH type transcriptional repressor CsiR 3.59283916966e-05 9.52634532885e-06 -10658830108.2 +UniRef50_Q52881 Chemotaxis protein CheW 0.000181141240439 5.35184842335e-05 -51522872787.7 +UniRef50_A8LLG1 1.92225614363e-07 1.53880859677e-07 -15480248.0098 +UniRef50_UPI00047C9DA6 hypothetical protein 8.32481204106e-08 1.16471279208e-07 13412596.9005 +UniRef50_P51057 Succinate dehydrogenase hydrophobic membrane anchor subunit 3.96101928542e-07 1.55482499379e-06 467790720.572 +UniRef50_D9PYS7 Predicted single stranded DNA specific exonuclease 3.91804148773e-05 1.81919941603e-06 -15083181155.4 +UniRef50_S9SJ05 7.45797889687e-06 1.30438261925e-06 -2484282330.39 +UniRef50_E8TFR7 TRAP transporter, 4TM 12TM fusion protein 6.25654657014e-05 1.69769241938e-05 -18404653640.9 +UniRef50_A6M215 ATPase, BadF BadG BcrA BcrD type 4.74958740952e-06 1.19896792092e-05 2922913905.45 +UniRef50_J9P613 2.02585331461e-07 2.94931492196e-07 37281278.3035 +UniRef50_K5P2M6 4.73633612113e-07 7.7228955095e-06 2926615986.42 +UniRef50_D8GSG1 Predicted transcriptional regulator, AraC family 3.02796247737e-06 1.62635393454e-05 5343364800.4 +UniRef50_UPI0002F0964C hypothetical protein 3.42915877634e-07 5.14111931861e-07 69113947.9033 +UniRef50_F2QGL2 Competence protein 1.19670167055e-07 7.88495367634e-06 3134940243.44 +UniRef50_F5X6K5 ABC transport system ATP binding protein 6.25577626837e-06 8.99658995962e-06 1106500120.72 +UniRef50_Q1Q9B8 Single stranded DNA binding protein 3.90502747092e-06 0.000103297203555 40125841164.3 +UniRef50_A4WVV8 Ferrochelatase 0.000142166060705 2.43006482229e-05 -47583713390.2 +UniRef50_Q9RSX3 7.25934593951e-06 0.000151140807316 58086711581.6 +UniRef50_Q9RSX2 1.61779709512e-06 0.000465547427678 1.87294084923e+11 +UniRef50_UPI000376B804 hypothetical protein 3.79449078029e-06 1.26359388452e-06 -1021754134.42 +UniRef50_A0A023X2K9 Nitroreductase family 3.97353672473e-06 0.000387526127649 1.54844887676e+11 +UniRef50_UPI00036A2930 hypothetical protein 2.16786443294e-06 9.3647601387e-07 -497126615.614 +UniRef50_Q8Y213 Glycine tRNA ligase beta subunit 1.90792034906e-06 1.6507512256e-05 5894034409.95 +UniRef50_UPI000470A4B9 5 methyltetrahydrofolate homocysteine methyltransferase 1.64355857136e-05 1.50269598844e-06 -6028590829.23 +UniRef50_E3HK42 Lysine specific permease 2 8.95196411539e-05 0.000153483084517 25822827005.4 +UniRef50_UPI0003B67722 30S ribosomal protein S15 1.09369899132e-06 5.34020438687e-07 -225949099.726 +UniRef50_A6LS13 Sugar isomerase 1.15527821766e-05 6.84977584469e-06 -1898661368.57 +UniRef50_B8JF24 Cupin 2 conserved barrel domain protein 1.06706368685e-06 3.33916215777e-07 -295980630.803 +UniRef50_A5UL58 Putative DNA helicase II, UvrD 8.84829174592e-06 8.26856766784e-06 -234041724.335 +UniRef50_I6SXV6 Transmembrane protein 6.77777313624e-05 1.97745414317e-05 -19379476840.4 +UniRef50_Q7R6Y8 1.1095544113e-06 2.16664253068e-05 8299061041.69 +UniRef50_J0I3X2 Cag pathogenicity island protein Cagb 1.06658669702e-06 3.38849253255e-05 13249166030.6 +UniRef50_A3LE40 Glycerol kinase 5.78120848726e-06 1.17034361371e-06 -1861462731.13 +UniRef50_M1CWM3 3.0930972113e-08 8.62684289458e-08 22340410.3904 +UniRef50_A5UP04 Multimeric flavodoxin 9.42140029875e-05 9.25054564337e-05 -689761209.993 +UniRef50_A6LYF1 5.58779583827e-06 2.24007614567e-06 -1351515521.04 +UniRef50_B2TS40 Protein MurJ homolog 3.4134121422e-06 8.14935255896e-06 1911957262.77 +UniRef50_A0A031I8F2 3.77092415845e-07 3.39168486341e-07 -15310355.7197 +UniRef50_UPI0003B74B63 aldolase 2.93763442465e-07 4.56357029522e-08 -100172213.311 +UniRef50_UPI00047054F2 hypothetical protein, partial 1.24095323454e-07 9.56799856411e-08 -11471620.5705 +UniRef50_B1Y0J8 Non canonical purine NTP pyrophosphatase 6.39526934465e-07 1.4219636323e-07 -200778454.54 +UniRef50_Q8K9W5 Phosphate acetyltransferase 3.33175437022e-08 6.37894867006e-08 12301897.3212 +UniRef50_UPI0002486152 MerR family transcriptional regulator 5.17453224534e-06 6.24837777437e-07 -1836767487.72 +UniRef50_B9KUZ2 Phage portal protein, lambda family 3.65716099605e-05 1.28212751885e-06 -14246797112.3 +UniRef50_UPI0004745B47 RNA directed DNA polymerase, partial 1.15141999224e-07 5.97308129621e-07 194656383.685 +UniRef50_UPI000387178C PREDICTED 1.08822213128e-07 1.41920044072e-07 13362000.5082 +UniRef50_UPI000410CB45 chemotaxis protein 1.41618129636e-06 7.77385847604e-07 -257889561.564 +UniRef50_R4U7U8 Phosphoribosylglycinamide formyltransferase 3.98598357149e-06 5.02328840371e-05 18670441231.2 +UniRef50_V4I3S7 Integral membrane protein 2.22021392152e-07 1.00088149566e-06 314435381.474 +UniRef50_L8XYT3 5.8561959107e-08 9.46652545255e-08 14575343.3977 +UniRef50_UPI000265943A PREDICTED 6.73521922903e-08 6.22339174143e-08 -2066310.37574 +UniRef50_A5VYM5 Outer membrane porin 7.12052542299e-06 1.35259559627e-06 -2328584051.51 +UniRef50_P45867 Acyl CoA dehydrogenase 3.21602418365e-06 6.39429722542e-05 24516214139.5 +UniRef50_I1E8F4 9.35297887875e-06 2.53518831711e-06 -2752425713.43 +UniRef50_P49323 Non heme chloroperoxidase 2.15748109197e-07 5.68611399293e-05 22868439794.9 +UniRef50_UPI00046F109B isoleucyl tRNA synthase 3.30833019063e-08 8.14625551568e-08 19531298.2174 +UniRef50_B1IIB8 Sensor histidine kinase 1.67029198609e-06 1.60599260059e-05 5809271834.46 +UniRef50_B9KWJ6 Transcriptional regulator, GntR family 7.80084468892e-05 5.0194971513e-06 -29466534684.3 +UniRef50_D1APR3 Deoxyribose phosphate aldolase 2.36421287378e-06 1.11057233113e-05 3529055034.02 +UniRef50_A9ANN8 AMP nucleosidase 9.24485626481e-05 2.95668899393e-05 -25386102917.4 +UniRef50_S5RJR0 9.00629909451e-06 1.74228144654e-06 -2932573064.01 +UniRef50_UPI00037E9476 hypothetical protein 2.74504301606e-08 3.2550825026e-08 2059091.99605 +UniRef50_D5ALJ5 Phage integrase 9.55352880636e-05 3.47152709262e-05 -24553787263.9 +UniRef50_A6LVF9 Response regulator receiver and SARP domain protein 1.01801246464e-05 6.63093745618e-06 -1432850422.12 +UniRef50_A5UM43 Energy converting hydrogenase B, subunit K, EhbK 4.47485495977e-05 6.45790574129e-06 -15458402803.9 +UniRef50_UPI00046FBB36 hypothetical protein, partial 8.61911705199e-07 9.58202374981e-07 38873725.0104 +UniRef50_X1UX68 Marine sediment metagenome DNA, contig 1.09323446385e-06 3.03563092429e-07 -318800023.0 +UniRef50_Q8CNT2 Phage phi PVL amidase like protein 1.27206490012e-05 7.16227120475e-05 23779485661.4 +UniRef50_O05100 Peptide deformylase 1 1.02396419002e-07 1.35541607587e-07 13381119.369 +UniRef50_UPI0004622CC9 hypothetical protein TRAVEDRAFT_74361 7.58527652731e-07 7.22163702643e-08 -277072286.718 +UniRef50_UPI00047DE100 hypothetical protein 1.65016345996e-07 3.44549679833e-07 72479809.9917 +UniRef50_UPI00037530DA hypothetical protein 3.02183990295e-07 3.05098368141e-07 1176570.09987 +UniRef50_D5AMF4 ABC transporter, periplasmic substrate binding protein 7.40140719947e-05 1.79561635316e-05 -22631265554.4 +UniRef50_A6LZL2 5.80937019762e-06 1.51826894179e-05 3784123992.79 +UniRef50_UPI000475B6F2 4 alpha glucanotransferase 1.09153834079e-07 6.05308000484e-06 2399635935.31 +UniRef50_I4B854 Pirin domain protein 3.2713973769e-06 8.61831578614e-06 2158616575.88 +UniRef50_B9KW74 DMSO membrane protein 4.96973199177e-06 2.43351804232e-06 -1023900694.24 +UniRef50_UPI00036F9198 DNA invertase, partial 2.19688036698e-06 2.17341483536e-06 -9473323.06945 +UniRef50_O66849 Anthranilate synthase component 1 2.71614728087e-07 2.26486541938e-07 -18218802.5335 +UniRef50_G2I7Y6 Transposase 1.05079604605e-06 3.70826446056e-07 -274512071.683 +UniRef50_UPI0003B53587 GntR family transcriptional regulator 6.60938519156e-07 2.30752970623e-07 -173671184.913 +UniRef50_F3SV61 4.38530721135e-07 5.29308980956e-07 36648297.4643 +UniRef50_F7YWV7 Phosphoribosylformylglycinamidine synthase, purS 2.62768944782e-07 2.76469710546e-07 5531167.26623 +UniRef50_P63459 Malonyl CoA acyl carrier protein transacylase 2.29576325689e-07 6.49321669801e-07 169456346.273 +UniRef50_UPI000359C10F PREDICTED 8.81385521473e-08 2.11432831952e-07 49775413.7482 +UniRef50_Q1IZN6 Membrane associated PIN like nuclease 1.11025290843e-06 0.000196895551073 79040927425.0 +UniRef50_A3X2R1 1.71462759804e-06 1.17956751058e-07 -644595614.28 +UniRef50_D9RH26 Site specific DNA methyltransferase 0.000186619635287 3.59423619915e-05 -60830264247.7 +UniRef50_UPI000226002C hypothetical protein 3.39514536961e-06 4.1210001379e-07 -1204292016.23 +UniRef50_Q1WSV7 Redox sensing transcriptional repressor Rex 0.00013285517983 9.18448931643e-05 -16556355979.8 +UniRef50_R5MZ93 7.78036730234e-09 1.84692765612e-06 742486329.372 +UniRef50_A4XV16 TRAP dicarboxylate transporter, DctP subunit 1.13644968715e-05 4.72027018757e-06 -2682355846.13 +UniRef50_A6LTW4 2.75537218136e-06 4.3007287164e-06 623879396.853 +UniRef50_A6LTW3 5.00744598622e-06 5.74929415443e-06 299493209.007 +UniRef50_S2TB06 Protein chain release factor B 9.94069041706e-06 1.20016208388e-06 -3528658546.45 +UniRef50_Q06801 4 alpha glucanotransferase, chloroplastic amyloplastic 7.78501768437e-08 4.79983725298e-06 1906324127.94 +UniRef50_A6LTW8 6.36445321137e-06 3.11681033554e-05 10013537938.1 +UniRef50_B9E4P1 3.0045898646e-06 3.2752979006e-06 109288156.094 +UniRef50_F4DT19 Integral membrane sensor hybrid histidine kinase 4.77945694102e-06 3.05104535311e-06 -697780968.035 +UniRef50_UPI0001B469EF DNA recombination protein RecA, partial 1.72406829549e-06 2.78371352803e-06 427791783.686 +UniRef50_P03030 Transcriptional activator protein LysR 2.34564869706e-05 1.11818786032e-05 -4955410024.3 +UniRef50_P98008 Nitric oxide reductase subunit B 0.000115524648824 1.97562615567e-05 -38662873150.1 +UniRef50_UPI000468BEB6 hypothetical protein 6.48858194459e-08 2.87618385071e-07 89919869.9788 +UniRef50_P63353 Sulfate thiosulfate import ATP binding protein CysA 1.05477001375e-06 2.93885309673e-07 -307178492.141 +UniRef50_UPI000376EAD9 resolvase 3.45469618252e-07 1.92979332521e-07 -61562199.6158 +UniRef50_Q7UE67 3.88231862867e-08 4.84508997405e-07 179928831.128 +UniRef50_UPI00016C4079 sodium hydrogen exchanger family protein 8.28076051333e-08 6.47461040956e-08 -7291649.60846 +UniRef50_P39356 2.77116509995e-05 1.47919686197e-05 -5215834319.06 +UniRef50_P39357 0.000340379965054 5.65478683134e-05 -1.14586500466e+11 +UniRef50_Q8D1Y6 Nucleoside diphosphate kinase 6.00934656132e-07 2.03257832336e-07 -160547013.81 +UniRef50_Q9USZ1 Elongation factor G, mitochondrial 9.01198402455e-08 3.88156926285e-08 -20712113.9657 +UniRef50_P39353 2.24877196048e-05 9.14534370761e-05 27842306447.7 +UniRef50_P39351 1.55212226196e-05 5.75292282856e-06 -3943582496.16 +UniRef50_D5ARH0 Biotin transport ATP binding protein BioM 2.25140748821e-06 2.47771374569e-07 -808892486.456 +UniRef50_C5WG38 8.56232715292e-06 3.05577555117e-06 -2223062454.61 +UniRef50_Q8CU46 Alginate lyase 0.000101048716863 4.98971374503e-05 -20650520309.4 +UniRef50_UPI0001912A18 adenylosuccinate lyase, partial 2.68019224664e-07 2.58574382721e-07 -3812998.59363 +UniRef50_Q8DVI5 1.73211342997e-05 3.22153078716e-05 6012960643.04 +UniRef50_P53597 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 4.3035404292e-07 8.06553301431e-07 151876257.145 +UniRef50_Q8RCX1 K insensitive pyrophosphate energized proton pump 4.31607138667e-06 1.30398187341e-05 3521883856.58 +UniRef50_A9DEP6 9.31808403366e-07 9.85185169912e-07 21548855.6612 +UniRef50_UPI0003AD3579 hypothetical protein 1.88580987405e-07 2.45772717178e-07 23089003.1308 +UniRef50_F8JJ47 1.43529559755e-07 5.88230709542e-08 -34197048.9944 +UniRef50_C3L318 Precorrin 2 C methyltransferase 4.79855070575e-06 2.0546533804e-05 6357654026.27 +UniRef50_P44421 Methionine aminopeptidase 4.3842782238e-07 7.21671165618e-05 28957751854.1 +UniRef50_E6MUY1 Amino acid carrier family protein 1.9649594095e-06 3.59311770453e-05 13712578871.9 +UniRef50_UPI0003B5FC66 ABC transporter ATP binding protein 1.94517563835e-06 3.37717805397e-07 -648950452.888 +UniRef50_UPI00047BD4E4 hypothetical protein 2.43668381673e-08 2.1902132905e-08 -995031.759725 +UniRef50_A0A059MR78 Nitrogen fixation protein NifU 8.91699186261e-06 3.24111206341e-05 9484868090.44 +UniRef50_UPI0002E2A0B8 hypothetical protein 6.69394705665e-07 4.21525309445e-07 -100067916.954 +UniRef50_S5S0J3 DnaJ family heat shock protein 8.24717421085e-08 1.28142056539e-07 18437666.3734 +UniRef50_B1IK08 Argininosuccinate synthase 3.16564767207e-06 1.73881625666e-05 5741803792.79 +UniRef50_O33407 Esterase EstA 7.17375093178e-06 2.0794297274e-06 -2056639984.56 +UniRef50_UPI00047D5868 hypothetical protein 3.75638531654e-08 7.44710947036e-08 14899906.3118 +UniRef50_UPI0004763C22 CREA protein 2.37057051715e-06 1.30104305279e-06 -431781361.94 +UniRef50_R7PWQ3 Minor teichoic acid biosynthesis protein GgaB 3.58427962013e-05 2.83616829334e-06 -13325180723.3 +UniRef50_K0WKW0 Putrescine binding periplasmic protein 2.04970957042e-05 2.6565220857e-06 -7202458498.25 +UniRef50_D4HAV0 4.90241543964e-06 1.33225581291e-05 3399314930.51 +UniRef50_I0C5C5 Peptidoglycan endo beta N acetylglucosaminidase 0.0001416976684 3.99622705984e-05 -41071828526.4 +UniRef50_X1M7F5 Marine sediment metagenome DNA, contig 1.26461843855e-07 2.16754146203e-07 36452110.469 +UniRef50_F9L838 Phenol soluble modulin beta 1 family protein 1.49007627177e-05 3.70760454945e-05 8952433778.31 +UniRef50_E3ZCM1 Internalin A 5.98127674244e-08 3.43789790143e-08 -10267932.4888 +UniRef50_R7AAF8 9.74116746711e-07 6.81435219618e-07 -118159124.094 +UniRef50_F7QQI7 N acetylneuraminate synthase 3.52067091798e-05 1.62313600065e-05 -7660581314.98 +UniRef50_Q1YUP9 5.66670185165e-07 1.07169596983e-07 -185506026.155 +UniRef50_UPI000471DB3E hypothetical protein 1.3612593653e-07 1.47388679423e-07 4546907.5153 +UniRef50_V4JMQ3 7.59982990658e-07 6.87441037177e-07 -29286076.8102 +UniRef50_G7MAU3 Cobalt ABC transporter, inner membrane subunit CbiQ 1.27816926252e-06 4.14873607316e-06 1158883047.27 +UniRef50_UPI000306B7B0 hypothetical protein 1.36462009784e-06 8.90809707896e-08 -514950798.215 +UniRef50_F2ABZ8 3.55498851954e-06 8.283445715e-07 -1100779621.51 +UniRef50_R5XW73 Glycerol 3 phosphate cytidyltransferase 8.55074222465e-05 6.46678916486e-06 -31909673512.7 +UniRef50_Q039P7 tRNA specific 2 thiouridylase MnmA 7.32019289523e-05 0.000124862816118 20856134099.2 +UniRef50_UPI0003AD23FF hypothetical protein 4.06983453619e-07 7.87746183197e-06 3015923794.42 +UniRef50_Q0VM47 Type II secretion system protein, putative 2.33718436937e-06 8.8389869067e-05 34740524797.6 +UniRef50_Q47BQ9 Tripartite ATP independent periplasmic transporter, DctQ component 7.64418838133e-05 2.91980844924e-05 -19072901532.5 +UniRef50_P76630 Inner membrane protein YgaZ 3.55843919074e-05 1.808541622e-05 -7064551221.58 +UniRef50_Z5X8T7 Pyridine nucleotide transhydrogenase 8.1405552264e-07 6.31343540901e-07 -73763069.1562 +UniRef50_G8RA57 Tandem lipo protein within Pathogenicity island 1.41899657622e-07 2.80650802923e-07 56015540.026 +UniRef50_E6JNN1 1.66646925468e-05 5.63644714229e-06 -4452238001.59 +UniRef50_B7GZW3 Glycerol 3 phosphate dehydrogenase [NAD+] 1.16208749974e-06 8.33815779723e-05 33193017250.4 +UniRef50_UPI0003B3F639 thioredoxin 1.76473952329e-07 6.50077638984e-07 191199620.073 +UniRef50_B6ZQQ2 Inner membrane protein YicO 1.14044105391e-06 2.44063392719e-06 524903818.104 +UniRef50_T1U7S9 TrbL VirB6 plasmid conjugal transfer family protein 1.9525137354e-06 2.9708647117e-05 11205491652.2 +UniRef50_P74309 Fructose bisphosphate aldolase class 1 0.000251530955936 0.000131061484868 -48635003796.8 +UniRef50_Q5P706 Arginine biosynthesis bifunctional protein ArgJ 5.65379877053e-07 4.53907614432e-05 18096556607.5 +UniRef50_G8VD08 Amino acid carrier protein 1.79029881523e-06 6.72715510309e-05 26435585064.8 +UniRef50_Q88PJ9 Type IV pili biogenesis protein PilF 1.3149674167e-07 6.49540969014e-06 2569189751.29 +UniRef50_B9KMF9 1.7508937293e-05 2.1564357708e-07 -6981514885.69 +UniRef50_UPI0004572EA5 PREDICTED 3.5391665733e-07 9.42746626859e-08 -104820659.403 +UniRef50_F5XQJ4 7.75656141478e-06 2.23027598747e-05 5872478820.19 +UniRef50_C1D2J4 Putative Diguanylate cyclase with GAF sensor 4.82616860866e-08 2.82720723132e-05 11394298695.3 +UniRef50_B9KMF2 3.33930059447e-08 5.01954739708e-06 2012971714.7 +UniRef50_Q73WQ0 2.44901483682e-06 3.39874548272e-06 383417916.255 +UniRef50_O31605 Oligoendopeptidase F homolog 0.000238633223081 5.45540402824e-05 -74315025001.5 +UniRef50_Q04F01 Adenine phosphoribosyltransferase 0.000352800527814 6.13083508048e-05 -1.1767896887e+11 +UniRef50_UPI0003346C39 PREDICTED 9.34383507123e-07 3.29543263994e-08 -363918022.038 +UniRef50_UPI00034AF933 glycogen debranching protein 9.29581018675e-08 1.66210552484e-07 29572913.2225 +UniRef50_Q9LAM9 Peptide methionine sulfoxide reductase MsrA MsrB 4.20241421468e-08 2.16399217451e-05 8719336298.34 +UniRef50_Q3Z6G6 Anthranilate phosphoribosyltransferase 6.31159246716e-08 7.89124547717e-08 6377253.04663 +UniRef50_P40510 D 3 phosphoglycerate dehydrogenase 2 2.38637578147e-07 2.45644127012e-07 2828629.75682 +UniRef50_X1MDH4 Marine sediment metagenome DNA, contig 1.17311309431e-07 3.73967078264e-07 103615083.398 +UniRef50_K7SNQ8 RfbX family protein involved in the export of O antigen and teichoic acid 9.59710141129e-07 6.47120080121e-05 25737584979.2 +UniRef50_A4EKV5 1.30886118624e-06 4.63296112428e-07 -341364996.548 +UniRef50_UPI0002E79C21 hypothetical protein 1.15895761955e-06 2.11795479862e-06 387158929.409 +UniRef50_R8XI05 Taurine binding periplasmic protein 6.72489310732e-06 7.54000098364e-06 329069052.169 +UniRef50_Q9RYQ5 Resolvase, putative 6.74082122953e-06 0.00361753596131 1.45772230749e+12 +UniRef50_Q3JXV9 1.96687193883e-06 1.89265081635e-07 -717641701.941 +UniRef50_X1MF22 Marine sediment metagenome DNA, contig 5.44671356808e-07 7.54669389664e-06 2826802423.81 +UniRef50_V6EZW5 Putative chromosomal replication initiator, DnaA homolog protein 5.91905164251e-07 1.02598448589e-07 -197539125.581 +UniRef50_UPI0004701EC5 transcriptional regulator 1.11709601932e-06 1.35579980213e-07 -396250069.544 +UniRef50_UPI000370F20A DNA polymerase I, partial 3.06884607693e-08 1.14981045429e-06 451803281.955 +UniRef50_UPI00039553CA PREDICTED 4.08219086886e-08 3.44167776329e-07 122464449.239 +UniRef50_UPI000364FAD7 hypothetical protein 4.76555787286e-08 3.60160714458e-07 126162158.163 +UniRef50_A0RGP9 DNA mismatch repair protein 5.27639869078e-06 1.17328730425e-05 2606557925.64 +UniRef50_Q9P6J4 1.65767830291e-05 4.61925744776e-06 -4827399812.51 +UniRef50_UPI000369C449 aminotransferase, partial 2.64024772165e-06 1.21541360509e-07 -1016832665.99 +UniRef50_M9R9X0 1.99934724674e-05 3.18044784504e-06 -6787624359.08 +UniRef50_Q9PB92 1.07434141846e-06 4.14186265777e-07 -266512736.153 +UniRef50_Q9RYT4 Homoprotocatechuate 2,3 dioxygenase, putative 3.12398971088e-06 0.000580886041364 2.3324963019e+11 +UniRef50_UPI00047C50D0 hypothetical protein 1.16764988606e-07 7.65849700846e-08 -16221166.5414 +UniRef50_A0KKD3 Adenine phosphoribosyltransferase 4.94830160703e-07 3.75798315712e-07 -48054616.5079 +UniRef50_P22255 3,5 bisphosphate nucleotidase CysQ 3.94678988047e-05 3.60875810829e-06 -14476775140.3 +UniRef50_UPI000288FCAE MULTISPECIES 9.33792368141e-07 3.64279342212e-07 -229919397.278 +UniRef50_UPI0003795D58 hypothetical protein 1.71996264047e-06 3.42776244782e-07 -555987047.918 +UniRef50_S1U9Z1 NrdI protein 3.82323857287e-07 3.70071570311e-07 -4946398.60468 +UniRef50_C1L2U0 UPF0176 protein Lm4b_01393 0.000160934807047 0.000186977141859 10513610139.0 +UniRef50_X1HZW5 Marine sediment metagenome DNA, contig 1.46499965405e-07 3.34288917627e-07 75812704.4416 +UniRef50_Q5E530 Permease 1.14683465747e-07 1.62295239117e-07 19221457.1716 +UniRef50_L7WWR2 Anaerobic ribonucleoside triphosphate reductase activating protein 0.000289332005253 4.99952525389e-05 -96623184062.9 +UniRef50_UPI0003662A30 hypothetical protein 5.59472645169e-07 3.41806576102e-07 -87874463.1454 +UniRef50_F0MTV5 MafB family protein 6.90944457927e-07 9.38519785064e-06 3509976785.12 +UniRef50_P0AC49 Fumarate reductase iron sulfur subunit 1.98322470253e-05 1.36893867733e-05 -2479948065.1 +UniRef50_UPI00041436A6 hypothetical protein 3.1459580401e-07 3.81786826413e-07 27125840.2707 +UniRef50_A3K301 6.26924712324e-08 4.65342608468e-08 -6523267.81621 +UniRef50_A7ZIA3 S formylglutathione hydrolase FrmB 0.000148527493421 4.19113373722e-05 -43042250524.3 +UniRef50_S9E849 Neutral zinc metallopeptidase 3.43032573815e-06 1.09237650138e-07 -1340764015.46 +UniRef50_UPI00035E2411 hypothetical protein 1.00096892549e-07 4.11394191861e-07 125674539.78 +UniRef50_H8GZZ4 Peptide ABC transporter, permease protein 2.32330927841e-05 0.00054070602717 2.08910173719e+11 +UniRef50_UPI00047D0EF5 alcohol dehydrogenase, partial 1.34056451246e-07 1.06093545024e-06 374192425.978 +UniRef50_A4W0T4 GMP reductase 0.000212390512543 0.000159234121013 -21459887562.9 +UniRef50_F2LNV1 2.03235849065e-07 2.00423680751e-07 -1135306.85755 +UniRef50_B5Z6V3 1.28981545165e-06 3.68880240914e-05 14371433667.0 +UniRef50_D3QCT2 0.000129106470757 7.72308498336e-05 -20942824752.2 +UniRef50_P16679 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL 8.03274304733e-05 1.01251441781e-05 -28341524456.3 +UniRef50_M5RF79 Magnesium protoporphyrin chelatase 8.81582568252e-07 1.11955898243e-05 4163891296.35 +UniRef50_UPI0004069A6C hypothetical protein 3.21403157652e-07 4.38143704256e-07 47129591.2316 +UniRef50_D7CRR2 Cytochrome c assembly protein 1.28971280521e-06 0.000194379270854 77952624059.7 +UniRef50_P76502 Phosphohistidine phosphatase SixA 1.96427812318e-05 3.66095089089e-06 -6452061027.73 +UniRef50_Q3IUV8 TrbC, sex pilus assembly and mating pair formation protein 1.09267956391e-05 4.09214833994e-06 -2759230985.22 +UniRef50_A0A023LBQ7 2.28571859482e-07 7.93910154335e-08 -60226137.397 +UniRef50_A5MYM8 3.32092538599e-06 1.54678452539e-05 4903860610.14 +UniRef50_L1L1V6 6.65317925159e-07 9.74409957735e-08 -229258885.026 +UniRef50_UPI0003A7F275 xanthine dehydrogenase 4.61465257156e-08 1.43135179761e-06 559224366.642 +UniRef50_UPI000470BD2F hypothetical protein 1.06356088972e-07 1.39429508718e-06 519956778.366 +UniRef50_I0I1B3 1.26664865258e-07 9.23978562686e-07 321885323.791 +UniRef50_Q5HP11 Shikimate kinase 0.000169750629144 1.46750453051e-05 -62605916187.2 +UniRef50_K0LNC6 Na+transporting ATP synthase 0.000159233560347 4.68866960147e-05 -45355807781.9 +UniRef50_F0YGA0 Expressed protein 4.18446480179e-06 2.66414579294e-06 -613771440.285 +UniRef50_UPI0004262E77 hypothetical protein 1.71552724417e-07 6.1546409844e-06 2415446151.3 +UniRef50_K3ZIS6 2.7226186519e-07 2.14301174639e-06 755244683.723 +UniRef50_UPI0003B62EF2 hypothetical protein 6.6164229807e-07 8.5782127543e-07 79199860.547 +UniRef50_G2JE35 Lipid A core O antigen ligase 1.73705695169e-06 4.18384410855e-05 16189420874.1 +UniRef50_Q98LT6 Glycine dehydrogenase 3.30524962184e-08 6.83476247395e-08 14249076.5039 +UniRef50_B7KTM9 Phage cell wall peptidase, NlpC P60 family 2.2693786963e-05 5.16588988672e-06 -7076227141.19 +UniRef50_A5UMD8 3.01238810486e-05 8.94927932988e-06 -8548446555.42 +UniRef50_K0LRB0 Ferrous iron transport protein B 2.27401198102e-06 6.12055347554e-06 1552896003.71 +UniRef50_UPI0004421582 PREDICTED 7.87289520971e-07 4.88455515706e-07 -120642955.031 +UniRef50_C4J1N8 1.37592833116e-06 3.40814210265e-07 -417888272.886 +UniRef50_Q8XWR3 Prolipoprotein diacylglyceryl transferase 1.42173060169e-05 3.86976263432e-05 9883005723.04 +UniRef50_C6SPD3 Putative potassium uptake system protein 6.19511255583e-05 2.25667419769e-05 -15899958952.5 +UniRef50_UPI0003A9FA54 amino acid transporter 7.46754994442e-08 6.08960482025e-06 2428300778.29 +UniRef50_UPI000469E754 DNA repair protein RadA 1.02825922711e-07 7.77657507373e-07 272437791.843 +UniRef50_P36938 Phosphoglucomutase 1.80423843021e-05 6.87662661879e-05 20477853569.3 +UniRef50_UPI00046E8175 hypothetical protein 1.65285557188e-08 2.42990330773e-07 91425397.5878 +UniRef50_P32382 NADH oxidase 7.60559641199e-08 8.20577479618e-08 2422993.78714 +UniRef50_B9KJE4 Flagellar biosynthetic protein FlhB 2.60108961525e-05 9.5933242503e-06 -6627975243.18 +UniRef50_J9P7D1 1.9775680871e-08 1.93370355109e-08 -177086.514656 +UniRef50_D7GE04 8.74916503464e-07 3.99775173314e-06 1260726903.72 +UniRef50_Q9I6M4 5 aminovalerate aminotransferase DavT 1.05157280429e-05 0.000115695824996 42462495844.9 +UniRef50_UPI000262CACD citrate lyase subunit beta 8.62709919896e-07 3.43895831461e-07 -209451614.066 +UniRef50_Q48KB0 Acyl homoserine lactone acylase PvdQ 3.54011428865e-06 7.83260111316e-07 -1112975861.79 +UniRef50_UPI0002657863 PREDICTED 6.21849165951e-08 1.74328109222e-07 45273583.0152 +UniRef50_UPI0003B7969B LysR family transcriptional regulator 5.97281562804e-08 1.76413365332e-06 688089414.562 +UniRef50_C5X3K1 2.81949398159e-07 2.94702936378e-06 1075925486.33 +UniRef50_UPI0003EDCB7F PREDICTED 5.31620110893e-08 7.66185301585e-07 287856252.153 +UniRef50_P76053 Probable DNA endonuclease SmrA 2.69784452705e-05 1.48899179089e-05 -4880286838.79 +UniRef50_V4IVP0 1.77829349423e-05 1.70803701125e-05 -283634043.23 +UniRef50_A2RNI8 Arginine tRNA ligase 6.38924935664e-08 5.82469574036e-05 23489217290.7 +UniRef50_A6LY18 Small acid soluble spore protein, alpha beta type 9.84746057875e-05 8.60145743281e-06 -36282892858.3 +UniRef50_F8G289 Cro CI family transcriptional regulator 6.81162479595e-06 6.77390310903e-06 -15228707.9068 +UniRef50_K6M6J3 Transporter, major facilitator family protein 9.64614963009e-07 1.91596772533e-05 7345569925.12 +UniRef50_F6CLL2 PSP1 domain protein 0.000133542522397 1.40780158883e-05 -48229287272.0 +UniRef50_J2DHS3 1.91775867741e-07 5.77166199039e-07 155586806.016 +UniRef50_P77297 4.50739102959e-05 2.38103988529e-05 -8584340502.17 +UniRef50_P77296 7.03524920178e-05 5.06257208899e-06 -26358341872.7 +UniRef50_L1K9E2 0.000131018993676 6.15426256831e-05 -28048462329.6 +UniRef50_R9SJS7 Adenylate cyclase CyaA 2.52224647012e-05 7.10691241489e-06 -7313470760.8 +UniRef50_E3J3H5 8.16196415514e-08 3.00656690371e-08 -20812971.3424 +UniRef50_UPI0003B2F361 ribose phosphate pyrophosphokinase 9.03460841929e-07 3.52785804517e-07 -222314270.146 +UniRef50_D4HCR1 Hydrolase, alpha beta domain protein 1.76120990128e-06 5.44634586267e-05 21276544539.8 +UniRef50_UPI000410CB72 hypothetical protein 9.19159344349e-08 3.14569551052e-07 89887997.2954 +UniRef50_UPI0003B62778 2 deoxy D gluconate 3 dehydrogenase 7.550303427e-08 1.12947808465e-07 15116914.8416 +UniRef50_D8JEW7 4.13524934136e-06 7.01216898307e-05 26639535770.2 +UniRef50_A1B817 Transposase IS66 1.05705553249e-07 6.62005042576e-08 -15948673.0593 +UniRef50_A5UNB4 1.88646291916e-05 1.15112143082e-05 -2968663824.98 +UniRef50_A0A024C317 5.14753621162e-05 7.03135012379e-06 -17942593030.7 +UniRef50_UPI000370F732 hypothetical protein 6.35417219591e-08 5.06502337633e-08 -5204451.98099 +UniRef50_L8M031 NAD dependent epimerase dehydratase family protein 3.23683029269e-05 2.77634711436e-06 -11946635695.6 +UniRef50_A7Q0V4 S adenosylmethionine synthase 5 4.32143854799e-07 1.07647867442e-06 260125873.558 +UniRef50_Q1IZH8 tRNA N6 adenosine threonylcarbamoyltransferase 4.1504516033e-06 0.000165747970024 65238901211.1 +UniRef50_E3G1M3 Ribose 1,5 bisphosphate phosphokinase PhnN 3.7971304474e-05 3.18114942752e-06 -14045212515.5 +UniRef50_UPI00046961B9 hypothetical protein 3.86524198017e-07 2.58504101894e-07 -51683283.7881 +UniRef50_D3E3F0 4Fe 4S binding domain containing protein 3.63322800798e-05 1.3357832772e-05 -9275066306.33 +UniRef50_Q6FYD4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2.68170694242e-05 0.000116761971744 36311860814.6 +UniRef50_UPI000477D162 iron ABC transporter permease 9.79089316643e-08 8.75591517729e-07 313960003.233 +UniRef50_D7AQD0 NADH 2.79458722235e-06 1.23120035496e-05 3842297763.14 +UniRef50_I7EMW2 6.39179441936e-05 2.38800570243e-06 -24840391226.2 +UniRef50_P28246 Bicyclomycin resistance protein 2.83663273053e-05 1.4592590558e-05 -5560626547.64 +UniRef50_UPI00047BE7E7 hypothetical protein 4.3539261556e-07 1.44264680044e-07 -117531920.109 +UniRef50_Q02H49 1.0801395194e-05 6.5379243675e-06 -1721215491.33 +UniRef50_K2F5A0 5.06914449864e-06 2.18019681134e-05 6755246228.13 +UniRef50_S4B4H2 Accessory colonization factor AcfD 3.5689939649e-06 2.29215558903e-06 -515475320.908 +UniRef50_A6LYR9 Peptidoglycan binding domain 1 protein 2.18199993555e-06 1.09020191915e-05 3520378780.3 +UniRef50_B9KM18 Pyruvate kinase 5.3675768345e-06 2.63506281125e-06 -1103149442.9 +UniRef50_UPI000366947C hypothetical protein 4.66531931967e-06 2.74680952811e-07 -1772554587.89 +UniRef50_F9SJR5 Putative sulfate permease 9.54491242982e-06 4.10703117443e-06 -2195339393.11 +UniRef50_Q4L4H7 0.000380724844609 0.000133869550201 -99658511607.6 +UniRef50_D1FMX0 InlA 1.41077967412e-07 4.50083205673e-08 -38784495.3383 +UniRef50_Q1C1V0 Regulator of sigma D 7.1784323343e-05 0.00014097614816 27933588757.8 +UniRef50_A9B5I3 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.96654231779e-07 5.56442114355e-07 145250783.29 +UniRef50_P30363 L asparaginase 5.31448501724e-07 2.95247749418e-05 11704961672.0 +UniRef50_Q92Q90 Bifunctional enzyme IspD IspF 5.59309950482e-08 7.35606071364e-08 7117290.73967 +UniRef50_D0K261 Cbb3 type cytochrome c oxidase subunit CcoP 4.40202340584e-06 3.679862354e-05 13078905025.2 +UniRef50_A0A011TPN1 1.10318566055e-06 2.91757436635e-07 -327583531.339 +UniRef50_UPI0004663F53 hypothetical protein 1.57197096882e-07 1.11189821549e-07 -18573701.6247 +UniRef50_P46118 HTH type transcriptional regulator HexR 4.81614900316e-05 2.95865574251e-05 -7498928233.3 +UniRef50_X7ED55 8.57880058693e-07 7.71018679163e-07 -35067004.8253 +UniRef50_UPI0004674A11 hypothetical protein, partial 1.02318610646e-07 3.91001985156e-07 116545020.833 +UniRef50_A0A022FVN3 Calcium transporter ChaC 2.46138505784e-08 2.10305054135e-08 -1446640.41566 +UniRef50_G3XDA3 Methyl accepting chemotaxis protein CtpH 7.01646819436e-07 1.0661252895e-06 147144431.019 +UniRef50_F1YSU2 Folylpolyglutamate Synthase 1.05345260388e-07 8.16512993868e-08 -9565542.81378 +UniRef50_S5SLF3 sn glycerol 3 phosphate ABC transporter substrate binding protein UgpB 1 1.49400390137e-07 5.57662040911e-08 -37801269.9274 +UniRef50_D8UC33 6.57701548528e-08 2.07342768294e-08 -18181536.6104 +UniRef50_UPI0002628085 PTS system sucrose specific transporter subunit IIABC 8.84991987881e-08 1.22508995579e-07 13730172.3116 +UniRef50_R6G0R0 Glutamine ABC transporter permease substrate binding protein 4.85225236123e-05 1.12778825551e-05 -15036118637.9 +UniRef50_Q6F6W5 Two component sensor 2.06916889359e-06 6.92757814205e-05 27132134195.0 +UniRef50_UPI0001AF2CE2 aldehyde dehydrogenase 3.01992502523e-08 3.55132392361e-06 1421521239.69 +UniRef50_B8DVI9 Uracil phosphoribosyltransferase 1.77830714206e-07 9.70130110951e-05 39093550621.1 +UniRef50_Q0SAY4 Proline tRNA ligase 2 4.83060766271e-08 0.000424797862746 1.7147660829e+11 +UniRef50_Q3IX83 2.00164334153e-05 4.97397827948e-06 -6072823730.0 +UniRef50_Q8Z7H3 Virulence sensor histidine kinase PhoQ 3.20474905523e-05 3.38845567286e-06 -11570004066.7 +UniRef50_Q6MS86 Uracil phosphoribosyltransferase 3.67235518238e-07 3.38156044231e-05 13503516984.6 +UniRef50_UPI000362A0E4 hypothetical protein 5.73965021646e-07 1.78473294218e-07 -159664863.592 +UniRef50_R1CV54 2.08432337532e-07 9.78987662691e-07 311082640.544 +UniRef50_UPI000273CDF3 5.618634754e-06 1.42026709046e-06 -1694932545.54 +UniRef50_UPI0002F1A5E0 hypothetical protein 4.92002978257e-08 1.26248816403e-08 -14765944.3449 +UniRef50_I6CNQ8 Tail protein 1.02284336647e-06 1.11425695703e-06 36904788.28 +UniRef50_F9Z2A5 2.47810571456e-06 1.83884168898e-05 6423187862.9 +UniRef50_D2NS08 6 pyruvoyl tetrahydropterin synthase 1.24105167333e-06 1.37175954301e-05 5036933819.03 +UniRef50_UPI00022CA8F3 PREDICTED 7.33091784889e-08 5.80434141213e-08 -6162976.40719 +UniRef50_UPI0003B40293 hypothetical protein 1.76939269228e-07 1.28395651609e-07 -19597654.13 +UniRef50_D2ZQZ2 1.24195771905e-05 6.19545535373e-06 -2512754364.07 +UniRef50_F5ZJC0 PpGpp synthetase 4.42178227922e-05 2.96005296257e-05 -5901180625.67 +UniRef50_Q8DUK3 Probable thiol peroxidase 0.000132764082642 3.96168975493e-05 -37604661666.4 +UniRef50_UPI0003EAABA8 PREDICTED 3.04499093141e-07 2.30839478692e-07 -29737290.2582 +UniRef50_C4L7S9 30S ribosomal protein S10 1.83051427246e-05 0.000301069628024 1.14155492626e+11 +UniRef50_B5YGX0 Phosphoglucosamine mutase 4.01942056969e-08 4.88869548899e-08 3509369.52124 +UniRef50_UPI00047DE500 ABC transporter ATP binding protein 4.19774035681e-08 7.97986228311e-08 15268890.335 +UniRef50_UPI000466389B hypothetical protein 6.51287080114e-08 1.7961927778e-07 46221247.973 +UniRef50_Q92PK6 Anhydro N acetylmuramic acid kinase 5.95729418181e-08 3.02656637883e-07 98135871.0738 +UniRef50_UPI00035E7A12 hypothetical protein, partial 6.50548491029e-08 9.91944172116e-08 13782562.5851 +UniRef50_Q5LKT8 Branched chain amino acid aminotransferase, putative 0.000100355162323 2.01462623339e-05 -32381317199.5 +UniRef50_P0AF42 Inner membrane protein YijD 1.06122453314e-05 7.77149224201e-06 -1146846882.15 +UniRef50_V4QDE8 6.61748464419e-07 2.93759826162e-06 918788490.947 +UniRef50_U8EUK5 2.36554099546e-05 9.21188697658e-06 -5831027468.18 +UniRef50_F6BNG0 Mov34 MPN PAD 1 family protein 4.80777368385e-06 3.26931133971e-06 -621096127.385 +UniRef50_UPI0003820CC8 hypothetical protein 1.31987820968e-07 1.88003025141e-07 22614025.3085 +UniRef50_UPI0003C7BE7D MerR family transcriptional regulator 5.15843506585e-07 9.00199368689e-08 -171910200.537 +UniRef50_J3L9G7 1.44053926662e-05 3.72639375648e-06 -4311242905.9 +UniRef50_K7RLI9 Myo inositol catabolism protein 7.49056148611e-06 4.79571949045e-05 16336876492.4 +UniRef50_A7I8B8 Proteasome activating nucleotidase 2.08487388978e-05 1.45000018924e-06 -7831508865.95 +UniRef50_U7JTW3 1.0092564522e-07 6.32702863908e-07 214684988.825 +UniRef50_UPI00036B2583 MULTISPECIES 1.39920720054e-07 3.100750804e-07 68693403.3005 +UniRef50_A0A022SAV9 Glucose Sorbosone dehydrogenase family protein 3.9276103946e-06 3.89324109081e-05 14131867524.5 +UniRef50_UPI00034D4ECA hypothetical protein 9.29005714967e-07 5.21233971085e-08 -354008152.275 +UniRef50_D3HHR2 2.33307915385e-05 1.51761138162e-05 -3292143465.64 +UniRef50_UPI00036B57D3 hypothetical protein, partial 4.48650145262e-07 1.71174512554e-07 -112020317.933 +UniRef50_W8YGK7 9.16362016213e-07 8.21340861547e-07 -38361206.1794 +UniRef50_J0D235 4.06239303486e-08 7.95638042336e-08 15720504.9334 +UniRef50_UPI000464FCC9 resolvase, partial 1.42984079293e-06 5.12961252941e-07 -370155521.671 +UniRef50_A9WEB9 Thioesterase superfamily protein 8.25199620555e-08 6.29068314867e-06 2506311661.16 +UniRef50_B7LPQ4 N acetyl D glucosamine kinase 6.16413128626e-05 2.23442652099e-06 -23983289020.6 +UniRef50_Q8KWX4 DNA directed RNA polymerase subunit beta 3.93210529726e-08 2.11245015313e-08 -7346171.11365 +UniRef50_D4JIJ4 Saccharopine dehydrogenase and related proteins 2.98749486303e-06 5.97277926776e-05 22906754509.5 +UniRef50_F2CTX8 Predicted protein 1.49932759589e-06 2.40747314022e-06 366629500.445 +UniRef50_A7A5J4 3.90513767709e-07 4.33379377629e-07 17305372.7449 +UniRef50_UPI0003609C50 MULTISPECIES 1.95878741325e-07 1.9527613959e-07 -243277.715174 +UniRef50_UPI00042A54EF 2,5 diketo D gluconic acid reductase 2.40433167827e-07 8.6415045362e-08 -62179006.054 +UniRef50_Q5KX02 Deoxyribose phosphate aldolase 0.000508528279081 0.000400455472515 -43630318213.2 +UniRef50_UPI0003657039 flagellar P ring protein FlgI 3.01610381989e-07 3.24171446688e-07 9108178.67438 +UniRef50_S5YTM5 Acetamidase formamidase 1.42646230667e-05 7.9870498931e-06 -2534333324.67 +UniRef50_UPI0004704B80 hypothetical protein, partial 1.18179146397e-07 7.39476584358e-07 250825399.882 +UniRef50_Q9FFE6 Probable acyl activating enzyme 5, peroxisomal 0.000128671048739 1.83563832995e-05 -44535384150.9 +UniRef50_I0B601 4.62891497923e-06 0.000319668995254 1.27185546384e+11 +UniRef50_P36843 Arginine biosynthesis bifunctional protein ArgJ 9.98622489401e-05 2.89275356942e-05 -28637214204.2 +UniRef50_P00644 Thermonuclease 8.54510824123e-05 6.63214998362e-06 -31820170238.5 +UniRef50_M1LU25 Ferredoxin NADP+ reductase 1.77501248674e-06 6.3475597419e-05 24909283288.5 +UniRef50_UPI00039B2C8B hypothetical protein, partial 5.4923098772e-07 6.44922595971e-06 2381900371.27 +UniRef50_Q21E72 Phosphate import ATP binding protein PstB 0.000120518066965 4.36244992538e-05 -31042876875.2 +UniRef50_A4WXS2 1.59506452928e-05 3.55803259269e-06 -5003049821.49 +UniRef50_A6QDJ4 0.000114607069271 1.8364580597e-05 -38854273705.8 +UniRef50_Q6LLL9 3 octaprenyl 4 hydroxybenzoate carboxy lyase 1.02789871251e-07 2.90687069189e-05 11693896163.9 +UniRef50_F6F2F7 Sodium hydrogen exchanger 1.21380345087e-05 4.26177426962e-06 -3179742911.1 +UniRef50_W9TLX8 Cytochrome C type biogenesis protein CcmF 1.26255393394e-06 1.04056579505e-06 -89619335.7707 +UniRef50_U7J4M5 8.50193668641e-07 6.47734652608e-05 25806609168.5 +UniRef50_B8ENG6 Peptide deformylase 8.19476024657e-07 4.98654364176e-07 -129519641.261 +UniRef50_UPI00046F07FD chromosome partitioning protein ParB 6.56309060546e-07 8.69496830371e-06 3245305381.91 +UniRef50_E0VHF0 1.12645075267e-08 3.3141491512e-08 8832006.89565 +UniRef50_L4XF07 D galactonate transporter 4.57707913475e-06 5.3693946399e-06 319867492.234 +UniRef50_B2TRD7 Peptidase, M23 M37 family 4.44450038838e-08 9.28820811107e-08 19554642.4663 +UniRef50_UPI00040D222C hypothetical protein 1.39715267809e-06 3.88486708281e-07 -407210829.736 +UniRef50_M2LUA1 Myosin cross reactive antigen 2.49459351656e-05 3.09772767695e-06 -8820389470.84 +UniRef50_A8GM77 NADH quinone oxidoreductase subunit F 9.41043928249e-05 1.15221776751e-05 -33339453653.7 +UniRef50_A3JRD5 1.19319330955e-06 2.40736907866e-06 490177657.602 +UniRef50_UPI0003684E03 hypothetical protein 6.76028254867e-07 3.67686959915e-07 -124481164.545 +UniRef50_Q2YVA6 7.37788945268e-06 3.96595223403e-06 -1377440924.35 +UniRef50_A4WT37 Flagellin domain protein 0.000102634184283 3.29895712411e-05 -28116384920.5 +UniRef50_A3CMD6 Cobalamin independent methionine synthase II, putative 4.19311024892e-05 1.91845933426e-05 -9183044873.54 +UniRef50_UPI00037F264A hypothetical protein 5.67475642836e-08 1.16666072528e-07 24189837.061 +UniRef50_A3M7T3 3.72858440026e-06 9.0595612816e-05 35069285349.7 +UniRef50_Q3IVA4 DNA binding protein, H NS family 2.4991030916e-05 6.08900423076e-06 -7630980126.77 +UniRef50_A7C736 Cell shape determining protein 2.07621189872e-06 5.26987626334e-07 -625440849.884 +UniRef50_P21639 Precorrin 2 C methyltransferase 7.50677087757e-07 3.24921963736e-07 -171882568.17 +UniRef50_UPI000370964C hypothetical protein 2.2785701659e-06 1.62375754193e-06 -264355891.751 +UniRef50_Q3IYL4 8.06789015315e-05 2.32017692675e-06 -31634378692.6 +UniRef50_I4D0J0 DNA repair protein radA 8.84305702589e-06 7.44845875768e-06 -563016434.522 +UniRef50_W7WR28 Lactate utilization protein A 1.07442457145e-07 7.18754806513e-07 246794297.086 +UniRef50_C5CNW9 Alkanesulfonate monooxygenase 3.41977887354e-06 3.75965410765e-05 13797578297.4 +UniRef50_Q182W3 Stage IV sporulation protein A 1.7560537547e-06 8.4958646112e-06 2720944349.55 +UniRef50_V5BSI8 7.39796990369e-08 8.11245863088e-07 297643397.701 +UniRef50_L7WY01 0.000235516526839 4.58101272811e-05 -76586801460.9 +UniRef50_UPI00035E8B7E hypothetical protein 1.79704080645e-07 1.34367887939e-07 -18302777.3331 +UniRef50_UPI00035057EC PREDICTED 1.46683648299e-06 2.29508553963e-06 334374307.924 +UniRef50_F5M5C7 XRE family transcriptional regulator 5.66962244404e-05 5.72528021041e-06 -20577595669.5 +UniRef50_UPI000381892F hypothetical protein 1.3085769077e-07 1.32518457505e-07 670471.910819 +UniRef50_Q5LN51 RmuC domain protein 5.57481358019e-05 1.06066614965e-05 -18224167125.3 +UniRef50_Q7MT83 Ribose phosphate pyrophosphokinase 5.31376958578e-08 3.90926662888e-05 15760736761.8 +UniRef50_UPI00046FE313 hypothetical protein, partial 6.30764648533e-08 5.13486245894e-07 181835955.756 +UniRef50_UPI0003610E12 hypothetical protein 4.44040307618e-08 1.25774356981e-07 32850199.2209 +UniRef50_R9SMA2 Radical SAM domain containing protein 4.6907940812e-05 3.56820562545e-06 -17496782933.1 +UniRef50_F5XLU5 NADH quinone oxidoreductase subunit M 8.37616839153e-07 4.69347864328e-05 18609993040.8 +UniRef50_Q8X582 Laminin binding fimbrial subunit ElfA 3.91702566762e-05 3.53407048578e-05 -1546037062.97 +UniRef50_UPI0003943B89 PREDICTED 3.13016932926e-07 7.11250804251e-07 160771900.733 +UniRef50_R9YQF0 Alpha acetolactate decarboxylase 0.000158262965387 3.82500466219e-05 -48450688029.6 +UniRef50_P77416 Hydrogenase 4 component D 3.30967145201e-05 1.09671905878e-05 -8933960371.27 +UniRef50_UPI000477B336 ABC transporter 2.47088178354e-07 7.16676652111e-08 -70819413.8076 +UniRef50_Q02F98 NH dependent NAD(+) synthetase 7.97629574974e-07 7.88879228307e-07 -3532622.3283 +UniRef50_G2IZ95 FIST domain protein 3.31182700567e-08 4.83924754767e-08 6166384.16363 +UniRef50_P77333 HTH type transcriptional regulator PgrR 2.5749633512e-05 2.68400702123e-05 440222677.074 +UniRef50_I4CYH2 Epoxide hydrolase 2.52780796101e-06 1.46700395093e-05 4901967877.99 +UniRef50_A3PI48 Glucose 1 phosphate adenylyltransferase 8.87401536012e-06 1.40404138754e-06 -3015720159.62 +UniRef50_Q0ALN8 MotA TolQ ExbB proton channel 8.86136565012e-05 7.1162089237e-05 -7045411859.37 +UniRef50_C3AI25 1.639984699e-07 4.36744134342e-06 1696981470.08 +UniRef50_UPI00036C9A3E hypothetical protein 1.4810252468e-07 1.61597839032e-07 5448224.01003 +UniRef50_UPI000474F64C hypothetical protein 8.49267190284e-08 1.11269107706e-07 10634745.5666 +UniRef50_UPI0004778BE4 hypothetical protein 2.44373119892e-07 1.1803962921e-07 -51002380.4746 +UniRef50_A0A023RZD3 7.90822602291e-07 7.66419433836e-05 30622028257.3 +UniRef50_D9SU99 Glycosyl transferase group 1 1.81774954504e-06 3.26178306595e-06 582974052.675 +UniRef50_UPI00037EBCF0 hypothetical protein 1.46522514342e-07 5.33448000093e-08 -37616986.6952 +UniRef50_UPI00030C6615 ATPase AAA 1.71232694626e-07 3.72552006136e-07 81275076.5223 +UniRef50_A3S801 4.08457936484e-06 1.15595843902e-07 -1602327352.31 +UniRef50_P49938 Iron hydroxamate import ATP binding protein FhuC 7.42215529435e-07 9.84724077882e-06 3675810424.4 +UniRef50_A4WQH4 7.29226865601e-05 8.98718987384e-06 -25811544589.0 +UniRef50_UPI0003B6A5DD serine threonine phosphatase 5.46071425124e-08 1.07893241568e-07 21512252.0827 +UniRef50_C9D174 Recombinase 9.98298423132e-08 1.72516716525e-07 29344583.0876 +UniRef50_UPI000464FB82 hypothetical protein 8.58951548407e-08 8.46273051401e-07 306973887.727 +UniRef50_Q887Q9 Alginate biosynthesis protein AlgA 2.5141855572e-07 2.9724820054e-07 18501990.0068 +UniRef50_W8S5E9 ATP synthase protein I2 3.07669181821e-07 5.63896783551e-07 103442227.085 +UniRef50_Q8DSN0 Trans 2 decenoyl [acyl carrier protein] isomerase 8.30792710601e-05 8.73288127745e-05 1715592137.84 +UniRef50_X1B5W7 Marine sediment metagenome DNA, contig 3.17998647229e-07 1.97600604251e-07 -48606167.4003 +UniRef50_P0ACV2 Protein Ddg 5.43324024235e-05 1.68206461126e-05 -15143956343.7 +UniRef50_X2I2X2 Type I restriction enzyme, S subunit 4.87620538287e-06 1.63614093352e-05 4636717774.84 +UniRef50_UPI0003743283 hypothetical protein 7.97343472719e-08 3.35799047064e-07 103376461.573 +UniRef50_UPI000376D2EE hypothetical protein 1.269026374e-06 1.34860043275e-06 32125024.0009 +UniRef50_H8H3X9 8.15177148986e-08 3.01835713761e-06 1185638114.02 +UniRef50_UPI00016C4EB2 CoA transferase 1.01505351359e-07 3.48845601499e-06 1367353545.47 +UniRef50_R4KIZ1 6.11390627853e-08 1.60063254856e-06 621512411.915 +UniRef50_UPI00046550E0 ABC transporter permease 1.17369052217e-07 1.14269056527e-07 -1251506.30128 +UniRef50_P41443 Putative type II secretion system protein H 3.22546607497e-05 3.90286394531e-06 -11445968285.6 +UniRef50_Q6LUZ6 Glutamate ammonia ligase adenylyltransferase 3.60306724402e-06 1.42715668596e-06 -878441793.714 +UniRef50_A5UN96 Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA 2.39991180861e-05 3.07088428274e-06 -8448984804.74 +UniRef50_R1GH14 6 pyruvoyl tetrahydropterin synthase 1.00925695388e-06 6.10351192916e-06 2056613247.06 +UniRef50_Q2FME4 Transport system permease protein 4.37976746225e-05 7.06722931278e-06 -14828531504.8 +UniRef50_UPI000255A6BC hypothetical protein 1.00694496065e-06 3.04524302059e-07 -283575839.544 +UniRef50_D6SDT2 PTS system, glucose subfamily, IIA component 0.000113602376407 2.23398084898e-05 -36843818585.8 +UniRef50_G0LQ60 0.000166362182491 2.4564233749e-05 -57245571963.6 +UniRef50_X2MMA8 6.74396850982e-06 2.30687264842e-07 -2629491565.55 +UniRef50_V5IK03 Putative thyroid hormone receptor associated protein complex subunit 5.08071213708e-08 9.97158431522e-07 382053636.944 +UniRef50_B8FK17 Putative flagellar rod assembly protein muramidase FlgJ 5.37513920886e-07 8.69758197847e-07 134131091.705 +UniRef50_R0J3J3 1.14163449089e-07 5.4219283804e-08 -24200195.1232 +UniRef50_I1ZKX0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 4.41891616026e-05 4.34231544878e-05 -309246472.209 +UniRef50_UPI0004059FEB methionine aminopeptidase 5.29558507064e-07 1.88071700096e-07 -137862414.487 +UniRef50_UPI0003C3A0E4 PREDICTED 1.06134224488e-08 2.68380106598e-09 -3201285.45964 +UniRef50_UPI000366D9A0 hypothetical protein, partial 1.53450681884e-07 2.283977417e-06 860119787.471 +UniRef50_UPI0003B4B64F hypothetical protein 1.24976474321e-06 4.48242286738e-07 -323584451.464 +UniRef50_L1N290 TRAP transporter, DctM subunit 8.57371853798e-07 3.38266379331e-07 -209569250.183 +UniRef50_A5ULG2 Shikimate kinase 2.35423511663e-05 1.19908770842e-05 -4663471839.47 +UniRef50_UPI0004202308 hypothetical protein 3.84937293502e-08 1.04701711882e-07 26728975.0114 +UniRef50_UPI00040D932D DNA processing protein DprA 5.37955974041e-07 6.09627153994e-07 28934534.8513 +UniRef50_Q1CWT2 ATP synthase subunit alpha 4.85062844372e-08 1.9238707664e-07 58086441.4282 +UniRef50_T0U356 ABC transporter, ATP binding permease protein 7.04849539221e-05 1.58954306946e-05 -22038460415.7 +UniRef50_U2YP81 L proline glycine betaine binding ABC transporter protein ProX 3.02279062866e-05 8.73463451147e-06 -8677097567.71 +UniRef50_Q4L675 Anthranilate synthase component II 0.000159380057571 5.6253479845e-05 -41633464933.4 +UniRef50_P06770 FeMo cofactor biosynthesis protein NifB 6.73450979859e-06 1.35259559627e-06 -2172744806.99 +UniRef50_G7LYR7 Oligopeptide dipeptide ABC transporter, ATPase subunit 3.11067123082e-06 1.58535467558e-05 5144455222.11 +UniRef50_A0A059ECE9 3.25825728876e-07 3.46915907829e-07 8514364.04893 +UniRef50_UPI0002625F09 monosaccharide transporting ATPase 1.80946036086e-06 3.47152703867e-07 -590351545.66 +UniRef50_A5UKX5 Phosphomannomutase, ManB 2.66061919226e-05 9.36704149232e-06 -6959656576.88 +UniRef50_UPI00036BA739 hypothetical protein 5.95164408854e-08 6.368226193e-08 1681793.07608 +UniRef50_Q8XXJ7 5 hydroxyisourate hydrolase 4.77681442691e-07 5.71751069759e-07 37977062.8115 +UniRef50_Q5HKE5 Serine protease 9.74384965142e-05 3.2848677284e-05 -26075702629.4 +UniRef50_Q99335 Transposase for insertion sequence element IS232 4.61368338436e-06 1.00010437559e-05 2174943492.34 +UniRef50_UPI0003EC0F26 PREDICTED 6.90617549135e-08 4.65020657738e-08 -9107623.34421 +UniRef50_X8EYS2 8.47011057242e-07 4.37602860485e-06 1424707689.89 +UniRef50_F6D6R1 Polymorphic outer membrane protein 1.00857377483e-07 4.42481601298e-09 -38931008.426 +UniRef50_UPI0003B67906 glycine cleavage system protein H 8.82755565383e-07 2.96688322415e-07 -236602537.84 +UniRef50_Q02000 Anthranilate phosphoribosyltransferase 6.29780606486e-05 4.48887046593e-05 -7302894994.24 +UniRef50_Q2T960 Transposase 4.77975386085e-07 1.44435619335e-07 -134654096.83 +UniRef50_O05393 O acetylserine dependent cystathionine beta synthase 1.17113361781e-07 5.17569080136e-05 20847618792.5 +UniRef50_Q3JHP8 3.68666959603e-08 1.09853862995e-07 29465814.9852 +UniRef50_Q3I510 EaeH 1.08494650488e-06 8.96414333579e-07 -76112751.1041 +UniRef50_Q5HRF6 Octanoyl [GcvH] 0.000214411729638 6.52189713856e-05 -60230947307.4 +UniRef50_E6MUI1 Transposase for insertion sequence element IS4351 5.24674184769e-06 0.000286007485361 1.13346557478e+11 +UniRef50_F0P3X1 Membrane protein, putative 6.32371041829e-05 1.44815043485e-05 -19683233951.6 +UniRef50_A0A011PV93 NADH quinone oxidoreductase subunit M 2.22330913299e-07 9.31644300459e-08 -52146094.3402 +UniRef50_M9VNY9 Trehalose 6 phosphate phosphatase 3.24855730792e-06 1.97213275456e-05 6650259488.58 +UniRef50_Q7VRS0 Probable malate 4.63596837488e-08 1.2737354106e-07 32706288.3484 +UniRef50_S0AB89 FAD dependent pyridine nucleotide disulfide oxidoreductase 2.56634365371e-06 2.20111829952e-06 -147445957.306 +UniRef50_Q725Q3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.38544440489e-07 3.24318867546e-08 -42838940.0899 +UniRef50_K5Z1T4 8.26457386128e-08 1.28724154824e-07 18602422.0702 +UniRef50_E6UA31 IstB domain protein ATP binding protein 5.37835630213e-06 8.51840697171e-06 1267676988.06 +UniRef50_Q5HP08 6.64782325246e-05 3.24875898239e-05 -13722439570.4 +UniRef50_UPI000262C9F7 malonyl CoA ACP transacylase 1.04632654191e-07 2.639056469e-07 64300461.656 +UniRef50_D3E006 3.19549904747e-05 1.51444464203e-05 -6786622923.33 +UniRef50_Z6ILY0 0.00226654902022 0.000411737778722 -7.48810059287e+11 +UniRef50_UPI000365DBB0 hypothetical protein 2.56461183579e-07 1.94489192451e-07 -25018853.3002 +UniRef50_B1ZNE5 50S ribosomal protein L2 2.02072289189e-05 0.000498711478545 1.93178037481e+11 +UniRef50_H0J5U8 Beta lactamase like protein 6.96761715234e-07 1.75200021458e-07 -210560856.059 +UniRef50_Q9CD72 ATP dependent DNA helicase UvrD1 1.93192650571e-07 1.24664089258e-07 -27665821.1421 +UniRef50_Q2IQ01 Polyribonucleotide nucleotidyltransferase 7.40046492376e-08 1.58790309362e-07 34229011.4293 +UniRef50_P13458 Nuclease SbcCD subunit C 2.68512304215e-05 1.9846916723e-05 -2827727392.68 +UniRef50_A6LTD7 Regulatory protein, LacI 5.15861012312e-06 8.48543808525e-06 1343081273.08 +UniRef50_UPI000471A07E hypothetical protein 5.02070021107e-08 7.35647215596e-07 276720625.481 +UniRef50_Q9ZFV2 Ethanolamine utilization protein EutA 3.20409139833e-05 5.6465813467e-06 -10655715980.3 +UniRef50_Q5HHC7 NAD specific glutamate dehydrogenase 0.000248217825334 7.14889696559e-05 -71347607744.1 +UniRef50_Q8ZQZ8 Nicotinate nucleotide adenylyltransferase 1.10496810652e-05 2.33932127486e-05 4983235212.76 +UniRef50_UPI00016C532F competence protein 1.74057420092e-07 7.02930914578e-08 -41890932.801 +UniRef50_W8ESZ0 MFS transporter 1.68771679067e-06 6.8281039657e-05 26884541633.1 +UniRef50_Q18GT4 Ketol acid reductoisomerase 0.000159798551999 0.000170780799244 4433667980.14 +UniRef50_B2UX29 Probable tRNA sulfurtransferase 1.76946557275e-06 1.49699501733e-05 5329197621.42 +UniRef50_L8P9Y5 4.53929195576e-07 3.13175768306e-07 -56823885.8277 +UniRef50_UPI0003782695 hypothetical protein 2.50134773737e-07 1.63637526545e-06 559642297.587 +UniRef50_UPI0004687CD1 hypothetical protein 6.89609248198e-08 2.88948601074e-07 88811724.4561 +UniRef50_D4FA45 4.46110900423e-06 5.79864769071e-07 -1566905925.96 +UniRef50_P77161 2 hydroxy 3 oxopropionate reductase 3.89204218141e-05 6.74366264168e-06 -12990152531.1 +UniRef50_P0AG22 GTP pyrophosphokinase 4.55354363415e-05 1.05659819438e-05 -14117597863.8 +UniRef50_UPI000376960F hypothetical protein 1.32689773114e-07 1.78053790282e-07 18314010.4098 +UniRef50_R6GAB3 1.30609916553e-07 3.85889205454e-06 1505153250.27 +UniRef50_V5TWY7 PTS system glucose specific transporter subunit IICBA 0.000117664701107 4.12166415741e-05 -30863019756.6 +UniRef50_P0AAY8 3.3763923461e-05 3.7381861418e-06 -12121758613.0 +UniRef50_B9DPU7 SpoU rRNA Methylase family protein 0.00017012111595 2.79649005363e-05 -57390208615.6 +UniRef50_Q9KT08 Phosphate acetyltransferase 4.00843983823e-08 4.23201108894e-07 154668917.404 +UniRef50_E8RV78 Thioesterase superfamily protein 1.08181752544e-07 2.64311388665e-07 63031450.0281 +UniRef50_R5QLK2 UPF0301 protein BN820_01713 1.89509260256e-07 2.82676538848e-07 37612773.6587 +UniRef50_A6LR77 6.04442779257e-06 3.95869853358e-06 -842034496.63 +UniRef50_I0C756 Phage infection protein 9.64486780758e-05 2.22376163346e-05 -29959916297.1 +UniRef50_UPI0003B7187B hypothetical protein 3.12724277815e-08 5.39258776798e-08 9145475.71303 +UniRef50_Q8X5K0 2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase 2.07556511661e-05 9.29020796484e-06 -4628740117.17 +UniRef50_A3M2F6 TraB protein 3.21587976525e-06 0.000139663629227 55085630860.0 +UniRef50_W9R3M0 F box LRR repeat protein 20 2.67066679275e-07 3.74101057663e-07 43211092.0148 +UniRef50_P0A042 Penicillinase repressor 0.00102743611817 9.46449512329e-05 -3.76579240727e+11 +UniRef50_UPI000477F667 oligo 1,6 glucosidase 4.85469934699e-08 2.55836396239e-07 83685275.6249 +UniRef50_D0Z4T1 Sex pilus assembly and synthesis protein TraW 1.10133046984e-06 2.11818667481e-07 -359106830.15 +UniRef50_UPI0003B35337 metallophosphatase 2.20994136925e-07 1.57609166976e-06 547069502.92 +UniRef50_E5AMJ1 5 methyltetrahydrofolate homocysteine methyltransferase homocysteine binding subunit 1.23840239869e-05 1.64521841338e-06 -4335387589.99 +UniRef50_A7N2P9 Oxygen dependent choline dehydrogenase 2.88520093223e-05 6.30939344942e-06 -9100730656.89 +UniRef50_Q02443 Protein PucC 2.82622137911e-05 5.87102980539e-06 -9039595745.75 +UniRef50_UPI0003654508 hypothetical protein 1.9634204879e-07 1.00444086032e-06 326239406.702 +UniRef50_A5ULF0 Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA 2.37091503971e-05 2.05473280904e-06 -8742154109.9 +UniRef50_A3M7N4 Chaperone protein 1.79541746759e-06 7.4079265746e-05 29181876572.6 +UniRef50_UPI00034630B7 hypothetical protein 4.96103621917e-07 7.67689218563e-08 -169290564.23 +UniRef50_UPI0004666EB5 peptide ABC transporter permease 1.26140567229e-07 2.08310111708e-07 33172853.4399 +UniRef50_E4RBH8 FolC 2.11718678311e-06 1.40627002483e-06 -287005819.247 +UniRef50_Q2YSR2 Probable transcriptional regulatory protein SAB0618 0.00024892059746 4.51488566039e-05 -82265152344.0 +UniRef50_G7M175 Regulatory protein MerR 4.11862138822e-06 6.33557074342e-05 23914738557.6 +UniRef50_C6A2X9 Protein TSIB_0916 1.39391642619e-05 7.75553708256e-06 -2496406173.94 +UniRef50_A6LR78 2.48346045292e-06 4.2903153298e-06 729449486.399 +UniRef50_H6P8H2 4.7483481857e-05 5.82404369511e-05 4342714774.17 +UniRef50_F7S8I9 Integral membrane protein MviN 3.39951426538e-06 2.96463095397e-06 -175567729.435 +UniRef50_S9S8H7 Enoyl [acyl carrier protein] reductase 7.50879790259e-07 1.33694097981e-06 236600094.001 +UniRef50_K8BPK1 TRAP type C4 dicarboxylate transport system,large permease component 5.38096767783e-07 3.42863122114e-07 -78818218.5428 +UniRef50_A1AYY0 Phage portal protein, HK97 family 0.000118287700269 3.73650347458e-05 -32669473104.5 +UniRef50_UPI00035D2BA5 hypothetical protein 3.32808398622e-05 6.30558278289e-06 -10890242306.5 +UniRef50_UPI0003B75FCC SpeB arginase agmatinase formimionoglutamate hydrolase SpeB 5.31753949305e-08 1.99802208185e-07 59195043.824 +UniRef50_Q72ZS2 4.56636276892e-07 2.1883532944e-06 699115410.526 +UniRef50_Q5HKE8 Accumulation associated protein 4.69941004339e-05 1.99446713919e-05 -10920186438.1 +UniRef50_UPI0004726693 hypothetical protein 2.72384181748e-08 2.34744223097e-06 936694751.33 +UniRef50_Q9HWU3 Chaperone CupB2 1.19165504671e-05 5.31199922635e-06 -2666338382.85 +UniRef50_B2FQX2 tRNA specific 2 thiouridylase MnmA 8.48508938512e-06 1.0976850808e-07 -3381219814.81 +UniRef50_I0E539 Integral membrane protein 1.59247779219e-06 2.83844938843e-05 10816265671.4 +UniRef50_D9WMQ1 Linear gramicidin synthetase LgrC 2.61840860033e-07 4.51626827214e-07 76618923.8867 +UniRef50_Q8CUF5 0.000134756277929 3.64147086919e-05 -39701698287.8 +UniRef50_B2IUI4 S adenosylmethionine synthase 2.80797324293e-05 5.32278314709e-05 10152596185.0 +UniRef50_C1CSL1 Transposase 4.98864703879e-06 6.32538489508e-07 -1758614476.81 +UniRef50_UPI000288C7BA 30S ribosomal protein S4 4.15653772414e-07 2.84579714207e-07 -52916205.7577 +UniRef50_S2E7R7 GMP synthase , N terminal domain protein (Fragment) 1.1558767407e-06 1.0599065434e-06 -38744346.3368 +UniRef50_UPI0003787C04 hypothetical protein 1.29711857342e-07 4.45244240939e-07 127384295.276 +UniRef50_Q8CUF8 0.000407873277028 0.000133660968503 -1.10702873915e+11 +UniRef50_P39434 Soluble lytic murein transglycosylase 3.51587897532e-05 3.24226819846e-06 -12885091411.4 +UniRef50_T1YBP6 4.12326218797e-05 2.2963030733e-05 -7375658139.02 +UniRef50_D8LEF1 9.07709684701e-08 3.31295799127e-07 97102825.7078 +UniRef50_UPI0001912679 hypothetical protein, partial 1.05609823837e-06 3.65477262384e-06 1049116738.73 +UniRef50_C7RGN8 NusA antitermination factor 2.18158599058e-06 6.46189081135e-06 1728011581.39 +UniRef50_UPI0004715BAF hypothetical protein 1.99921429523e-07 6.63640337699e-06 2598486746.71 +UniRef50_F0KKH9 6.94887207843e-07 3.51622771526e-05 13914908283.2 +UniRef50_A1KR53 Truncated pilin 4.16344840642e-06 5.13594269898e-06 392607879.753 +UniRef50_C1FK14 Transcriptional regulator, PadR family 3.42132316185e-06 5.73430495526e-06 933779133.478 +UniRef50_C6DIM2 p hydroxybenzoic acid efflux pump subunit AaeA 2.66710302094e-05 1.77452980835e-05 -3603427590.28 +UniRef50_UPI0003B3D425 hypothetical protein 1.35848518416e-07 5.61264042979e-08 -32184795.7698 +UniRef50_W9UYG1 1.13929372892e-06 4.63803771412e-07 -272703585.04 +UniRef50_UPI00046605A2 ABC transporter permease, partial 9.86204550387e-07 1.5208704671e-07 -336743472.007 +UniRef50_UPI0003634E25 hypothetical protein 1.01104543546e-06 3.66176712293e-07 -260341416.972 +UniRef50_UPI0004779514 ABC transporter ATP binding protein 4.34915219524e-08 1.22987128859e-07 32093352.029 +UniRef50_UPI0002881118 ribosome biogenesis GTPase ObgE 1.59775341625e-07 1.03421837341e-05 4110763220.25 +UniRef50_UPI0003FA120A hypothetical protein 1.58689415224e-07 2.76042739469e-07 47376977.0849 +UniRef50_A5UL98 Cobalt ABC transporter, permease component, CbiQ 2.53568526927e-05 4.95290313477e-06 -8237324821.14 +UniRef50_A4IK74 Phosphomethylpyrimidine synthase 2.60596728008e-08 9.66913450079e-08 28514872.8181 +UniRef50_A9XTE3 Jhp0563 like glycosyltransferase 3.87356403882e-06 5.75298332566e-06 758744629.165 +UniRef50_W7X9E0 4.34368587273e-07 2.49305229591e-06 831115876.068 +UniRef50_UPI00016A4104 Succinate semialdehyde dehydrogenase (+)) 1.24268124649e-07 1.84423515042e-07 24285469.2913 +UniRef50_A6LY03 ABC transporter related 2.32625774347e-06 1.32706855048e-05 4418399790.47 +UniRef50_X1JM57 Marine sediment metagenome DNA, contig 2.99629469866e-07 1.64638928718e-07 -54497337.9817 +UniRef50_UPI00046E044E 7.48804682208e-08 4.62227673421e-08 -11569465.5143 +UniRef50_C5YVS6 1.9807607126e-08 1.27037929336e-07 43290196.9402 +UniRef50_UPI00047E12F0 hypothetical protein 3.74879285403e-08 4.82506144331e-07 179659314.702 +UniRef50_A7FM33 Polyamine aminopropyl transferase 3.76831176294e-05 7.53665078294e-06 -12170498604.7 +UniRef50_D3D5C3 2.45874977153e-07 2.66737712782e-08 -88494216.713 +UniRef50_F7Q1E0 Carbonic anhydrase Gamma family Zn dependent enzyme protein 1.6452639757e-07 1.48339560468e-07 -6534824.77291 +UniRef50_D5BS21 Surface presentation of antigens protein 0.000110688456128 2.07929368858e-05 -36291924260.1 +UniRef50_UPI000363FFD6 hypothetical protein 9.27389603794e-08 2.44196351808e-07 61145207.5111 +UniRef50_A0A017HJR6 Uracil DNA glycosylase, family 4 6.67122256848e-08 1.49401368563e-06 576219114.34 +UniRef50_UPI000363A8BB hypothetical protein 1.63555119175e-07 2.33811113467e-06 877894948.26 +UniRef50_W0F5U5 Spermidine putrescine ABC transporter permease protein 0.000189661852469 0.000133830857683 -22539657718.5 +UniRef50_D9RGW2 SWIM zinc finger domain protein 0.000146069619984 1.59961517614e-05 -52512255302.6 +UniRef50_N8ZPV3 7.68164587931e-08 1.42624545122e-05 5726916159.51 +UniRef50_P28306 UPF0755 protein YceG 3.73805359765e-05 5.57007659957e-06 -12842272808.7 +UniRef50_UPI0003B40484 ABC transporter substrate binding protein 4.16479467449e-08 1.02418607803e-07 24533861.609 +UniRef50_A0A023LG84 7.29966895211e-06 6.41992837382e-06 -355162067.087 +UniRef50_T2A0U3 6.44175557497e-05 2.91901259026e-05 -14221745718.5 +UniRef50_M7DV55 ATP binding protein 5.28052208862e-05 1.50175179625e-05 -15255359377.6 +UniRef50_O67260 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.7183587158e-07 2.13268607061e-07 -185129231.939 +UniRef50_T2SKF0 5.41069262592e-07 9.45032115242e-06 3596774316.74 +UniRef50_R4MC14 Poly polymerase 1.80486374365e-06 3.57467742193e-05 13702765773.1 +UniRef50_N0C862 Histidine kinase 4.57806341145e-05 7.0485833319e-05 9973792085.74 +UniRef50_Q4SDM4 Chromosome 10 SCAF14634, whole genome shotgun sequence 8.88202326721e-07 1.38321641777e-06 199843263.062 +UniRef50_UPI00047BEAD1 carnitine dehydratase 9.43135891636e-08 1.80250783341e-06 689618978.304 +UniRef50_A4VS16 Predicted esterase of the alpha beta hydrolase superfamily 1.05051759422e-06 1.61081839199e-06 226200307.724 +UniRef50_R5N6D2 DNA repair protein radA 7.1041348413e-07 5.02203814538e-06 1740655785.33 +UniRef50_A0LT91 S malonyltransferase like protein 2.87425879838e-06 7.25903193647e-05 28145229162.9 +UniRef50_UPI00047DAB1B 3 ketoacyl ACP reductase 9.36161069431e-08 7.88780938876e-07 280646573.283 +UniRef50_UPI000350AD27 PREDICTED 2.42238996511e-07 9.72645983213e-08 -58527943.5852 +UniRef50_UPI0003689445 hypothetical protein 1.06552373166e-06 2.56273932271e-07 -326704074.625 +UniRef50_A3XF72 8.200264802e-07 2.9407621757e-07 -212332575.159 +UniRef50_UPI0003767FF8 MULTISPECIES 3.94504180628e-08 4.85169128244e-06 1942760689.79 +UniRef50_A6M2A6 6.46321432094e-06 2.15613081364e-05 6095285747.76 +UniRef50_UPI0001AF2BB8 hypothetical protein 3.13933506579e-07 2.98851871602e-07 -6088641.11269 +UniRef50_UPI00046AF737 iron transporter FeoB 2.02745698268e-08 1.75810874318e-07 62791914.7681 +UniRef50_UPI0003B74184 pyridine nucleotide disulfide oxidoreductase 6.93318721851e-08 5.84914695182e-07 208147112.557 +UniRef50_Q1C306 Serine threonine transporter SstT 1.51173674236e-05 0.000174023159613 64152218300.1 +UniRef50_UPI0004728704 dihydrofolate reductase 9.39461044018e-08 1.67579754899e-07 29726808.2922 +UniRef50_O06745 Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase 2.04579640357e-06 3.430472397e-06 559010690.433 +UniRef50_Q1BQE2 Oxygen dependent choline dehydrogenase 1.99009862921e-05 8.83979572834e-05 27653067741.5 +UniRef50_Q17WJ2 Lipid A disaccharide synthase 1.13814871007e-06 4.80051968337e-05 18920802450.9 +UniRef50_Q8R9S4 Diaminopimelate epimerase 6.99981141936e-08 1.2596920151e-07 22596214.7921 +UniRef50_Q67Q92 Queuine tRNA ribosyltransferase 7.15441280628e-05 7.49925503936e-05 1392170411.84 +UniRef50_UPI0001A64225 ubiquitin activating enzyme E1C 7.26104725343e-08 5.80967837562e-08 -5859354.26271 +UniRef50_UPI0001B43C5C hypothetical protein 3.59370354861e-06 4.48340793706e-06 359184579.518 +UniRef50_I6DSS5 Inner membrane transport YhaO domain protein 6.64039115119e-08 5.33471461469e-07 188560901.481 +UniRef50_UPI000328C4DC PREDICTED 5.27424085961e-07 6.42183268496e-07 46329690.2429 +UniRef50_B2SSQ5 MazG family protein 1.23772007498e-07 8.22109049933e-08 -16778727.0932 +UniRef50_P56468 Adenylosuccinate lyase 2.19245649797e-07 3.89146945085e-05 15621827550.8 +UniRef50_A4W496 Glutamate tRNA ligase 0.000306025236873 0.000143672193783 -65543915791.3 +UniRef50_A3M472 Putative VGR related protein 2.18687245022e-06 6.13097234509e-05 23868620468.0 +UniRef50_L1ENB1 4Fe 4S binding domain protein 2.39690393573e-06 4.98665076251e-06 1045512573.74 +UniRef50_UPI00035C121E hypothetical protein 5.05027168959e-08 3.85313244358e-08 -4832998.04165 +UniRef50_A7ZV28 Elongation factor P beta lysine ligase 2.60751095839e-05 8.13093308337e-06 -7244284253.06 +UniRef50_D9WVR9 Putative PE PGRS family protein 1.67315728401e-07 1.59818499389e-06 577659481.219 +UniRef50_P62410 Phosphoglycerate kinase 3.89912285422e-07 3.51353345263e-07 -15566717.3136 +UniRef50_F2QFE8 ABC transporter, membrane spanning permease amino acid transport 3.92621463373e-05 1.66205695057e-05 -9140682410.31 +UniRef50_UPI00038138EB hypothetical protein 9.74520957538e-07 6.70327217113e-07 -122806745.887 +UniRef50_A0A009ENE3 8.43973069637e-06 1.68582303174e-05 3398651603.62 +UniRef50_R4YI13 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 2.18983818154e-07 8.19958858392e-07 242620998.537 +UniRef50_B2JNG5 Response regulator receiver modulated diguanylate cyclase 3.08517570146e-06 6.72437675137e-06 1469190121.87 +UniRef50_N6UYM2 9.22155916471e-06 1.86240189643e-05 3795888402.25 +UniRef50_Q5HKC3 Membrane protein, putative 7.26108399416e-05 3.09896527255e-05 -16802984028.5 +UniRef50_Q6F9M2 1.51804016961e-06 2.8152436106e-05 10752632480.3 +UniRef50_UPI0002F008CE hypothetical protein 3.05510220014e-07 2.92928165668e-07 -5079529.73865 +UniRef50_D6SFU4 0.000104844913194 7.60127631047e-06 -39258449523.5 +UniRef50_UPI00036F8D63 acriflavine resistance protein B, partial 1.06048843486e-05 4.99540787336e-06 -2264614489.07 +UniRef50_E1SCF3 Protein CreA 2.11541297717e-07 1.45553518633e-07 -26640076.1773 +UniRef50_Q09CY9 Glycerophosphoryl diester phosphodiesterase family protein 2.04599451951e-06 4.22326132078e-05 16223831109.7 +UniRef50_UPI0003B43E42 ferredoxin 4.46274154567e-08 3.92315621134e-07 140365995.246 +UniRef50_Q5F9U6 Ferrochelatase 1.22353727569e-06 3.66894321078e-05 14318016959.2 +UniRef50_B2UCS2 MJ0042 family finger like protein 4.36415527039e-06 2.88660891432e-07 -1645327092.73 +UniRef50_Q2SQX2 Methionyl tRNA formyltransferase 7.03321240642e-08 8.12177811378e-08 4394673.34265 +UniRef50_M2P9Q5 7.17253100933e-08 1.38216466581e-07 26843295.8123 +UniRef50_Q0DG35 Glutamate synthase 2 [NADH], chloroplastic 1.1608916872e-08 7.63134752787e-08 26122024.243 +UniRef50_S5N4L1 Phosphodiesterase 1.11725266408e-07 1.40569125541e-07 11644619.8859 +UniRef50_E2CN00 RNA binding region RNP 1 3.96145670546e-06 7.73765875453e-07 -1286909905.44 +UniRef50_M1LU43 ABC type multidrug transport system, permease component 2.40268655239e-06 1.35462214449e-05 4498781782.65 +UniRef50_Q73UD7 Uracil phosphoribosyltransferase 6.27443715546e-08 3.12001698176e-07 100628241.488 +UniRef50_G3VFK2 2.30091468406e-06 1.09538040348e-06 -486688982.639 +UniRef50_UPI00046F72B6 hypothetical protein 6.2197453924e-08 8.59113495867e-08 9573590.68126 +UniRef50_M1MME7 Diguanylate cyclase with GAF sensor 3.81712520228e-06 6.71718341601e-06 1170789088.6 +UniRef50_Q9RXG2 3.87828070733e-06 5.30660967886e-05 19857724954.4 +UniRef50_Q492H7 NADH quinone oxidoreductase subunit B 4.04767099453e-05 5.02923563427e-05 3962696902.16 +UniRef50_Q9RU97 NADH quinone oxidoreductase subunit K 1.34522316482e-07 4.18202630395e-05 16829045071.4 +UniRef50_M4JWD8 Peptidase, M48 family protein 1.62141165429e-06 1.27842729522e-06 -138466994.648 +UniRef50_A7ZV66 3 keto L gulonate 6 phosphate decarboxylase UlaD 1.03341699514e-06 7.2991824593e-07 -122526169.405 +UniRef50_E0S0B7 HD domain containing protein 4.68041431179e-06 2.95883924982e-06 -695020978.619 +UniRef50_UPI00037812FE hypothetical protein 3.35813047136e-08 2.87064064529e-06 1145355670.43 +UniRef50_A0A016QQ81 Ferripyochelin binding protein 6.54836586944e-07 2.78214091041e-07 -152047123.274 +UniRef50_UPI0002481AAE ATP dependent DNA helicase 2.42694999284e-07 7.7027657563e-08 -66881938.8197 +UniRef50_Q9HVI1 Cyclic diguanosine monophosphate binding protein PA4608 1.05837193136e-05 4.66289534518e-05 14551903346.4 +UniRef50_C7NJL3 1.09848409144e-06 9.06500687807e-06 3216183009.19 +UniRef50_Q6GCB8 Probable acetyl CoA acyltransferase 0.000203482312237 4.54040359876e-05 -63818139960.3 +UniRef50_UPI0001744E0A heme oxygenase BphO 7.89527497315e-07 2.3252591904e-06 619993730.048 +UniRef50_U3T6D3 2.72456884078e-07 5.84785554841e-06 2250856858.63 +UniRef50_Q9I5S3 5.01945955988e-06 8.06210423977e-06 1228352994.72 +UniRef50_Q9I5S0 1.74343484166e-05 1.80806146044e-06 -6308523800.32 +UniRef50_G7ZR16 6 phospho beta glucosidase 4.67654438836e-05 5.67947675405e-06 -16586909111.7 +UniRef50_D9W5N7 Modular polyketide synthase 4.10239963179e-06 5.93776310854e-06 740958758.007 +UniRef50_A6LR15 Heavy metal transport detoxification protein 3.16180921983e-06 5.12459086671e-06 792399036.885 +UniRef50_F8TV67 3.46312723582e-07 1.03103551076e-07 -98186527.4528 +UniRef50_UPI00039592BB PREDICTED 7.9666718241e-07 2.68347866217e-06 761728948.16 +UniRef50_C5C3V4 Dihydrodipicolinate synthetase 2.46186514471e-06 7.53736372692e-05 29435377134.7 +UniRef50_Q8VPM9 Putative minor silk ampullate protein 4.7304008625e-07 3.87749774621e-07 -34432745.4344 +UniRef50_Q6A9K7 UvrABC system protein B 2.70230565789e-05 8.31561808501e-05 22661631099.2 +UniRef50_M9VGK7 AsnC family transcriptional regulator 1.43530794236e-06 5.51264336394e-05 21675766308.1 +UniRef50_F0BGS2 8.07267186025e-08 4.23917160179e-07 138550192.685 +UniRef50_A7X1H8 Probable dual specificity RNA methyltransferase RlmN 0.000173155908513 4.38866654436e-05 -52187579739.0 +UniRef50_I0C1J1 ABC transporter ATP binding protein 0.000261910592652 0.000105394015222 -63187662982.9 +UniRef50_Q6A6A0 Putative N acetylmannosamine 6 phosphate 2 epimerase 2.81006939596e-06 1.3911193257e-05 4481659928.79 +UniRef50_B9KJF4 Flagellar protein FlgJ 7.15610509157e-06 1.12698588731e-05 1660772883.04 +UniRef50_Q9KZ75 Urocanate hydratase 0.000182166153492 0.000681099405334 2.01425476368e+11 +UniRef50_A6LXE4 1.49203948168e-06 7.38619916081e-06 2379544591.94 +UniRef50_Q4L666 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000145257566457 4.76950824406e-05 -39387172023.7 +UniRef50_C4Z005 Sex pilus assembly 8.8555487215e-07 6.91722850034e-08 -329583668.572 +UniRef50_R6X9T8 HAD hydrolase family IIA 2.78930533636e-06 1.1980488161e-05 3710593294.8 +UniRef50_UPI0002B45CA4 PREDICTED 2.98187693916e-07 1.34323196185e-07 -66154108.5775 +UniRef50_X5A6R4 NMT1 THI5 like domain containing protein 2.21225350812e-06 1.52028612435e-05 5244467755.46 +UniRef50_UPI00036E0775 hypothetical protein 6.32796426477e-08 4.37819395129e-08 -7871462.01924 +UniRef50_A6LY63 Restriction modification system DNA specificity domain 6.31529146184e-06 9.62204258572e-06 1334976007.11 +UniRef50_A0A016QUC8 UvrABC system protein B 1.62050388312e-06 0.000521461707026 2.09866272878e+11 +UniRef50_P64625 3.46788922668e-05 3.72247947718e-06 -12497483721.1 +UniRef50_A6M107 AzlC family protein 4.78643582965e-06 8.29265443732e-06 1415503478.06 +UniRef50_UPI0003C16A5C PREDICTED 2.51337971586e-06 9.19579373135e-07 -643436756.486 +UniRef50_UPI0002E46BCB hypothetical protein 5.50110513577e-07 4.50612827147e-06 1597092914.66 +UniRef50_A9FT06 Succinate dehydrogenase 7.79650447133e-05 3.0815218532e-05 -19034963422.8 +UniRef50_B4EW02 Exoribonuclease 2 3.26555404829e-05 8.78606472084e-06 -9636400276.57 +UniRef50_D3QD55 Hydrolase 0.000231365541319 7.6293262034e-05 -62604582098.2 +UniRef50_T0U7I8 7.23954326956e-08 1.65422229641e-07 37556059.494 +UniRef50_UPI0003B4922D aliphatic sulfonate ABC transporter ATP binding protein 2.23952646445e-07 1.33864378036e-07 -36369739.4641 +UniRef50_UPI0002C44C85 9.46637939872e-07 9.77869884769e-07 12608719.414 +UniRef50_UPI000479BB48 MerR family transcriptional regulator 2.15980572717e-06 1.55763447928e-06 -243103922.245 +UniRef50_L7X2B6 9.44755731629e-05 1.823243788e-05 -30780289322.2 +UniRef50_E1HW74 2.44259788288e-06 1.38828911316e-06 -425637388.159 +UniRef50_Q6GGX3 Extracellular matrix binding protein ebh 3.334960755e-05 4.60832309785e-07 -13277602155.1 +UniRef50_M1VHC0 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide a dehydrogenase 2.93814387718e-06 1.59090209926e-06 -543898038.262 +UniRef50_A0A011PNT7 N acetylmuramoyl L alanine amidase AmiC 1.31242779817e-07 8.68316240677e-08 -17929328.5622 +UniRef50_UPI00042B1EB5 Urease isoform 3 1.12520559249e-07 1.84403915345e-07 29020192.9639 +UniRef50_B9JSW9 Altronate oxidoreductase 3.34571641719e-06 1.31641919103e-06 -819252192.478 +UniRef50_D4TSX0 8.82751808228e-08 1.7486384547e-05 7023830249.95 +UniRef50_UPI00022CADD1 PREDICTED 1.6286251196e-07 4.72618973113e-07 125052484.507 +UniRef50_U6HVE2 NADH dehydrogenase iron sulfur 1.49300869617e-07 2.99851778646e-07 60779249.4424 +UniRef50_H4AYY9 2.71572653853e-06 4.24916122588e-06 619066400.643 +UniRef50_UPI000467CE02 hypothetical protein 1.16220723644e-07 8.99413266923e-08 -10609315.0339 +UniRef50_F4QVG8 ABC transporter ATP binding protein 4.76204554315e-07 1.46436949921e-06 398934314.402 +UniRef50_C4LBT6 CreA family protein 3.36022263197e-07 1.89467968641e-07 -59165767.1357 +UniRef50_P75713 3.23162144966e-05 2.68839973059e-05 -2193052740.69 +UniRef50_Q9A5B6 Histidinol phosphate aminotransferase 2 2.27177554584e-07 3.28487897182e-07 40900228.5245 +UniRef50_UPI00046D93F6 30S ribosomal protein S2 1.41273048132e-07 7.10809810176e-07 229928979.839 +UniRef50_UPI00046FBC18 ribonucleoside diphosphate reductase, partial 2.52582639161e-07 6.91638117411e-07 177252084.386 +UniRef50_E5QQY5 Magnesium transporter 0.00017965537466 2.40778700589e-05 -62808547758.1 +UniRef50_E8SE09 4.72048239387e-05 1.87938577467e-05 -11469855693.5 +UniRef50_B4V430 Secreted protein 3.40701929331e-07 1.29466452027e-07 -85278354.3384 +UniRef50_UPI0001BF7CE0 hypothetical protein SMAC_11079 1.28207828784e-06 4.14173488835e-06 1154478461.56 +UniRef50_Q04677 Acetyl CoA acetyltransferase IB 1.21298909665e-07 4.07787402473e-07 115658920.156 +UniRef50_G8VNQ8 L lactate dehydrogenase 4.46262692631e-06 5.71270550924e-05 21261275915.9 +UniRef50_UPI00037C43AF hypothetical protein 2.00906876099e-07 3.70002381506e-07 68265930.568 +UniRef50_UPI00037D4375 hypothetical protein 2.13910017578e-07 5.40325035305e-07 131777748.219 +UniRef50_Q88J90 Ribose import ATP binding protein RbsA 4.40773607674e-05 3.07383772219e-06 -16553625423.2 +UniRef50_U2ZG68 7.98678786862e-07 1.57130771881e-07 -259000806.327 +UniRef50_Q896G3 Glutamate 5 kinase 7.47678913671e-08 2.4131528176e-05 9712009336.54 +UniRef50_G7VUW1 2.1019726512e-07 2.11359497786e-07 469207.589463 +UniRef50_D6XC51 Transcriptional regulator 1.36787110789e-07 9.94961436477e-08 -15054821.0466 +UniRef50_P33655 DNA primase 8.35762336971e-07 5.30095324728e-06 1802652364.55 +UniRef50_A1SJN3 Putative spermidine synthase 7.89399475999e-08 4.33104682062e-07 142980649.392 +UniRef50_A5ULC4 Archaeosine tRNA ribosyltransferase 1.92138966956e-05 2.40659929951e-05 1958850818.03 +UniRef50_UPI00037F7E70 hypothetical protein 7.29407301526e-07 2.88014754741e-06 868280229.812 +UniRef50_UPI000155436C hypothetical protein ORF028 6.20073369599e-07 1.49679770166e-07 -189903668.47 +UniRef50_D6TC11 2.05278831548e-07 4.74473247922e-07 108677089.277 +UniRef50_H6MGY8 8.644717302e-06 1.44056929363e-05 2325776558.69 +UniRef50_UPI00029A30E6 DEAD DEAH box helicase 1.17690045276e-07 4.14982408194e-07 120020575.098 +UniRef50_D2AI68 6.79051253281e-06 7.64917025722e-08 -2710532599.47 +UniRef50_Q5HM66 0.000188302815262 5.64301100836e-05 -53238629340.4 +UniRef50_C1L1N4 Protease HtpX homolog 3.19280056892e-05 5.28929293076e-05 8463796933.29 +UniRef50_R7IC53 4.71667980926e-08 1.14380848547e-07 27135136.9776 +UniRef50_Q2LSL3 Chemotaxis response regulator protein glutamate methylesterase 2 8.44274447877e-07 9.1517727501e-08 -303897125.38 +UniRef50_UPI0004659E7D hypothetical protein 6.88292749957e-08 7.5503558979e-07 277029909.981 +UniRef50_P48372 DNA gyrase subunit A 9.30594521004e-06 3.64226957599e-05 10947364956.9 +UniRef50_Q89AT7 NADH quinone oxidoreductase subunit K 4.0262775166e-07 5.81517340679e-07 72219922.3091 +UniRef50_UPI00041970DE hypothetical protein 6.13008733624e-08 4.52171149826e-07 157799127.126 +UniRef50_UPI00016C51C4 hypothetical protein 1.54749066346e-06 6.04312757241e-07 -380772494.835 +UniRef50_M5Q8W3 Opacity protein 3.66758055408e-05 6.00644146164e-06 -12381598634.2 +UniRef50_UPI00046AB508 ABC transporter permease 5.60732507828e-07 4.31860228865e-07 -52027320.4581 +UniRef50_C6S5R7 6.0237125881e-06 4.48312547227e-05 15667080981.8 +UniRef50_Q28TI8 Chromosomal replication initiator DnaA 8.29777069447e-07 1.35544832623e-07 -280270073.193 +UniRef50_Q9I633 1.10122422018e-05 1.12976333564e-05 115215911.255 +UniRef50_S5UJA4 5.63272726229e-06 2.15762773233e-06 -1402940324.51 +UniRef50_UPI0003612EB0 hypothetical protein 1.236221516e-07 1.34671040401e-07 4460571.99408 +UniRef50_A6QI12 0.000179601373816 7.28077508766e-05 -43113896085.6 +UniRef50_UPI0003C17432 PREDICTED 5.79010549164e-07 5.03991597532e-08 -213406904.696 +UniRef50_F3ZDJ3 2.35894280487e-07 6.04648472623e-08 -70823014.9542 +UniRef50_U5NMQ2 Phage major tail protein 2 0.000102943503063 9.87839050157e-06 -37571527978.4 +UniRef50_C6D5Z2 Inosine uridine preferring nucleoside hydrolase 0.0001789529746 5.73741625865e-05 -49082858349.8 +UniRef50_A0A032VXU1 1.3212252015e-06 2.93015154984e-07 -415101013.336 +UniRef50_J4TL27 5.00051400286e-07 2.65842247385e-07 -94553109.0956 +UniRef50_P33517 Cytochrome c oxidase subunit 1 0.000136412285444 3.13674057469e-05 -42407906979.3 +UniRef50_UPI000363849B hypothetical protein 1.01937742949e-07 1.12750633357e-07 4365296.5468 +UniRef50_R7B083 6.99377019834e-06 2.01040717165e-05 5292789604.39 +UniRef50_P05101 Modification methylase EcoRII 2.77558740306e-05 1.80407385009e-05 -3922119431.46 +UniRef50_Q83EC8 Lipoprotein signal peptidase 1.53027344975e-07 2.2156846363e-07 27670890.6951 +UniRef50_Q5PK75 N acetyl gamma glutamyl phosphate reductase 1.87205310246e-05 5.45553657893e-06 -5355241037.52 +UniRef50_E7HD27 EAL domain protein 2.88123176201e-05 1.50581795258e-05 -5552714330.92 +UniRef50_F3U4M2 TRAP dicarboxylate family transporter DctQ subunit 0.000208209957479 3.1754484429e-06 -82774947354.2 +UniRef50_B3Q9Q6 Polyphosphate kinase 2.36701005378e-08 3.07542962394e-06 1232032768.9 +UniRef50_W5YF86 4.9834501953e-07 3.10333472713e-07 -75902568.6111 +UniRef50_P30866 5.16235348174e-05 3.50871332905e-06 -19424543870.1 +UniRef50_M1FJM0 1.21777348094e-06 4.70100154563e-07 -301844896.842 +UniRef50_Q6F7D3 Septum formation, penicillin binding protein 3, peptidoglycan synthetase 6.90523150384e-07 7.40593690898e-05 29619903442.7 +UniRef50_UPI000382D7E4 hypothetical protein 5.45345376878e-08 9.18193274234e-08 15052327.1521 +UniRef50_P37755 Phosphomannomutase 3.03176942356e-05 6.13549440538e-05 12530118621.5 +UniRef50_F2J6H9 Bacteriophage related protein 5.01063747204e-05 2.52407440337e-06 -19209558538.5 +UniRef50_F4DMU6 1.90827878082e-05 5.97588102367e-06 -5291419108.74 +UniRef50_UPI00036D9AC5 hypothetical protein 4.26343589344e-07 5.13812084703e-07 35312104.9356 +UniRef50_Q2RYZ8 Glyoxalase family protein 1.18913295002e-07 2.83455037213e-07 66427520.4848 +UniRef50_P39400 Putative L galactonate oxidoreductase 2.42366681941e-05 1.24901404606e-05 -4742217392.12 +UniRef50_K6KS82 Thiamine biosynthesis protein ThiH 5.37631260744e-06 2.2323218345e-06 -1269267656.14 +UniRef50_B8GCI5 SAF domain protein 4.81591578526e-05 1.75863145623e-05 -12342632007.3 +UniRef50_F9YY04 N acetylgalactosaminoglycan deacetylase 8.92585745973e-06 4.89596295345e-05 16162125056.2 +UniRef50_P23842 2.78058507856e-05 9.65219277847e-06 -7328854507.9 +UniRef50_UPI0003781C48 hypothetical protein 4.13030439537e-07 2.47627958913e-07 -66775011.1446 +UniRef50_Q7WJ90 Isoprenyl transferase 1.59053085188e-06 2.36730761292e-05 8914994511.75 +UniRef50_P21883 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.00011853523903 2.01255846901e-05 -39729185079.3 +UniRef50_P11512 DNA directed RNA polymerase subunit A 3.62178105971e-05 4.15063051819e-06 -12945914106.4 +UniRef50_U5MVJ3 Isochorismatase hydrolase 2.36421287378e-06 3.26316801329e-06 362919221.24 +UniRef50_UPI000462F18D hypothetical protein 7.98109725941e-07 2.04315075058e-07 -239722187.241 +UniRef50_Q8KLH5 Cbb3 type cytochrome c oxidase subunit FixP 5.85796773065e-07 3.70552172911e-07 -86896886.4304 +UniRef50_Q49YW6 0.000240410890848 3.69208288584e-05 -82151435129.2 +UniRef50_UPI0002880B99 putative tartrate dehydrogenase 5.16879667234e-07 7.2030985309e-07 82127262.3992 +UniRef50_M1MKH3 Xylose transport system permease protein XylH 4.58041194981e-06 8.39849003335e-06 1541404975.41 +UniRef50_W6IFL4 ABC transporter ATP binding protein uup 2.3587129122e-05 6.59668875454e-06 -6859249272.51 +UniRef50_Q2RPU1 UPF0301 protein Rru_A3059 3.09504684075e-07 4.27170627701e-07 47503185.3653 +UniRef50_R5BPH7 1.58830009337e-06 3.13271613378e-05 12005943221.2 +UniRef50_V2PEB0 Virulence factor MviN 2.1484164896e-07 2.20039700713e-07 2098517.27995 +UniRef50_M1XJR0 6.63581375609e-08 1.20984357469e-07 22053275.316 +UniRef50_UPI0003B68FE0 MerR family transcriptional regulator 5.31846975178e-07 8.94839451467e-07 146544517.096 +UniRef50_Q9RVH4 Aspartate tRNA ligase 2.01469908573e-06 0.000414308882991 1.66448221461e+11 +UniRef50_UPI000468F8E2 cystathionine beta lyase 1.23996303595e-07 4.8227116963e-07 144639959.945 +UniRef50_R9U1S9 RNA polymerase sigma factor 1.29483588609e-05 2.3625336415e-06 -4273627543.76 +UniRef50_UPI0004687562 MerR family transcriptional regulator 2.90881013318e-06 1.29877749424e-06 -649989933.662 +UniRef50_O25534 Plasminogen binding protein PgbB 8.72463764734e-07 3.20398865443e-05 12582671043.4 +UniRef50_G7M904 Protein FdhD homolog 1.03937441773e-05 1.57398702709e-05 2158296708.33 +UniRef50_K2EJ34 NADH dehydrogenase 1 alpha subcomplex subunit 9 7.29156488472e-07 7.48647990631e-08 -264145584.076 +UniRef50_UPI00036C5DD6 hypothetical protein 1.98068723647e-07 8.00193321237e-07 243085088.947 +UniRef50_M2IF34 3.10512668249e-05 1.96877803463e-05 -4587578937.07 +UniRef50_Q163W1 Ferredoxin flavodoxin oxidoreductase family protein, putative 6.5292919727e-05 2.29630977559e-05 -17089068575.1 +UniRef50_C5XYX3 3.06057379469e-06 5.84501891865e-07 -999620611.988 +UniRef50_A3MMR3 6,7 dimethyl 8 ribityllumazine synthase 1.93804017857e-07 7.90566518263e-05 31837899416.2 +UniRef50_C6A0C0 5.86072951818e-06 1.93065899772e-05 5428258866.56 +UniRef50_G8VCJ9 Thioredoxin 4.19629596194e-06 3.85010181324e-05 13849237306.5 +UniRef50_T3IDK7 Pyridoxal phosphate dependent enzyme family protein 7.46352796944e-06 5.18364784753e-05 17913904636.6 +UniRef50_UPI0003AA60F6 hypothetical protein 1.40200449436e-06 5.66717307982e-07 -337215687.267 +UniRef50_Q8XHI3 Probable cytosol aminopeptidase 5.83662719966e-06 2.59482982871e-05 8119328415.94 +UniRef50_UPI000382BCA5 hypothetical protein 1.39573917259e-07 1.41648661781e-07 837599.82351 +UniRef50_D4HCP3 1.0342081886e-06 2.09105665189e-05 8024329768.29 +UniRef50_W5XBB1 Histidine ammonia lyase 3.61367647422e-08 9.26555519941e-07 359472978.141 +UniRef50_C9ADA6 1.98676836238e-05 5.60727921252e-06 -5757100255.68 +UniRef50_C9ADA5 3.08347474601e-05 2.22782084296e-05 -3454379807.15 +UniRef50_Q46858 2.701613847e-05 9.38775529307e-06 -7116794613.1 +UniRef50_P77622 Probable D,D dipeptide transport ATP binding protein DdpF 2.44855463794e-05 2.1873905373e-05 -1054351522.72 +UniRef50_UPI00036F0C0F MULTISPECIES 4.84202910377e-07 9.34398274799e-07 181749393.136 +UniRef50_Q5HF07 Riboflavin biosynthesis protein RibBA 0.000190624057742 5.55824631039e-05 -54517948902.1 +UniRef50_C4ZZR6 Phosphoadenosine phosphosulfate reductase 3.28279120666e-05 8.18494850332e-06 -9948666793.67 +UniRef50_B2VEQ1 Electron transport complex subunit A 0.000170314075983 1.26680153349e-05 -63643649218.3 +UniRef50_A8J087 Vasa intronic gene 1.52141560531e-06 2.28901958219e-06 309891145.027 +UniRef50_Q2RXH9 S methyl 5 thioadenosine phosphorylase 7.30391775106e-06 2.38479169743e-06 -1985911552.32 +UniRef50_UPI0002626AF6 binding protein dependent transport systems inner membrane component 6.71206543511e-08 2.71629193096e-07 82562606.6933 +UniRef50_P05165 Propionyl CoA carboxylase alpha chain, mitochondrial 1.61935911975e-07 3.24110961633e-08 -52290757.5915 +UniRef50_UPI0001CBB1BB PREDICTED 8.53039829045e-08 5.21788023025e-08 -13373041.9007 +UniRef50_W4TUT3 Transglutaminase like enzymes 2.5862456118e-07 1.07251474331e-06 328577454.082 +UniRef50_K2BIT5 1.29059078639e-06 2.87330651315e-06 638961760.999 +UniRef50_A8IAB0 Amino acid ABC transporter permease protein 2.81637280679e-05 8.41597151491e-06 -7972411652.67 +UniRef50_UPI0004708F04 hypothetical protein 6.2257393452e-08 2.43093788484e-07 73005871.7865 +UniRef50_E2XPH3 2.90564872999e-06 3.45399655201e-06 221374744.734 +UniRef50_Q39XE0 8 amino 7 oxononanoate synthase 1.25556389014e-07 5.04897623632e-07 153144711.456 +UniRef50_C6S4Z8 1.45198687173e-07 1.19479420507e-05 4764912331.79 +UniRef50_U7DLP3 Glutathione S transferase 3.90104399963e-06 3.31816522686e-06 -235315313.294 +UniRef50_B7MUC3 Orotidine 5 phosphate decarboxylase 3.88374367237e-05 1.19287884832e-05 -10863351500.9 +UniRef50_Q837G9 Probable potassium transport system protein kup 4.43530771157e-06 1.80347286273e-05 5490253107.33 +UniRef50_Q3IW67 2.29514943092e-05 2.30880025573e-05 55110054.9025 +UniRef50_C4ZAX1 Chorismate synthase 5.7795286649e-08 1.45660469822e-07 35472252.674 +UniRef50_UPI00046B80C4 PREDICTED 4.18902954676e-08 2.9089235791e-07 100525188.207 +UniRef50_H4FA07 Pirin domain protein 2.01974655201e-07 1.76610919166e-07 -10239651.4854 +UniRef50_F3MX46 8.75973587294e-06 1.27482698404e-05 1610220107.48 +UniRef50_UPI0003B5EAE0 oxidoreductase 1.39866628539e-07 1.10941363218e-07 -11677484.563 +UniRef50_C6SS05 5.98815968907e-05 1.94287306055e-06 -23390573798.3 +UniRef50_C6SS04 5.87935260479e-05 2.25630437445e-05 -14626690303.9 +UniRef50_S9QXJ6 CRISPR associated helicase Cas3 3.77661764705e-06 2.18823682261e-07 -1436325082.63 +UniRef50_I6FFI0 1.91584057255e-06 3.06088970939e-07 -649876475.443 +UniRef50_F3ZKC2 Putative ADP ribosylation Crystallin J1 8.55179844037e-07 2.70957744136e-06 748643066.056 +UniRef50_Q9RX93 Trans aconitate 2 methyltransferase 1.52007780746e-06 0.000243229490084 97581055844.3 +UniRef50_A5UKU5 pH regulator (Monovalent cation 2.52867423531e-05 2.52135717113e-05 -29539885.9994 +UniRef50_S6GN96 Transporting ATPase 6.22803714885e-07 2.56353706763e-07 -147940365.126 +UniRef50_X8L2K3 Putative aldehyde alcohol dehydrogenase 2.82206543533e-05 6.72122116716e-06 -8679585004.94 +UniRef50_P55604 6.58665929235e-06 4.46762366605e-07 -2478751733.93 +UniRef50_D4H9L5 Cyclic nucleotide binding domain protein 5.07828684551e-06 6.02888510839e-05 22289182292.9 +UniRef50_A5EBW8 ATP synthase subunit a 2 4.49838640915e-05 1.50499976281e-05 -12084669221.1 +UniRef50_Z9WHX3 2.209039276e-06 7.44130526917e-07 -591401638.455 +UniRef50_UPI000466F07F phosphogluconate dehydratase 1.05947354315e-07 4.83108469034e-07 152264570.299 +UniRef50_UPI0004768B65 3 oxoacyl ACP synthase 1.1281742801e-07 7.64733761624e-08 -14672539.7225 +UniRef50_A6LU78 RNA polymerase, sigma 24 subunit, ECF subfamily 7.03390041336e-06 1.15209973879e-05 1811496111.49 +UniRef50_D7GFP5 Iron sulfur protein 1.72660699175e-06 4.14534096087e-05 16038197719.2 +UniRef50_UPI00047E8C5B hypothetical protein 1.79336051512e-07 1.26032279032e-07 -21519387.061 +UniRef50_UPI00036C9333 hypothetical protein 3.97152344639e-06 4.86348309227e-06 360095054.617 +UniRef50_F0YDM5 1.5176269066e-07 2.84353565144e-06 1086701776.04 +UniRef50_B4S8V9 3 methyl 2 oxobutanoate hydroxymethyltransferase 7.20326931592e-08 1.10056351147e-07 15350617.3324 +UniRef50_UPI0002631405 anaerobic dehydrogenase iron sulfur binding subunit 1, partial 1.19232248618e-07 1.87243630519e-07 27457029.4669 +UniRef50_F8KPC2 Arginase 2.30583183354e-06 3.97294523244e-05 15108374831.6 +UniRef50_UPI00040E124F sodium 1.33710768226e-07 3.03005492361e-05 12178722878.2 +UniRef50_H3VVP7 Gram positive signal peptide protein, YSIRK family 0.000103226323892 2.61871323479e-05 -31101667003.5 +UniRef50_UPI00037B942A hypothetical protein 9.43495658811e-08 9.06567190075e-07 327902221.918 +UniRef50_X1YQR0 6.13492178685e-07 1.7436954316e-07 -177279196.602 +UniRef50_A6UIR4 Tripartite ATP independent periplasmic transporter DctQ component 7.83111358524e-07 2.30901302771e-07 -222933975.887 +UniRef50_X1TSL9 Marine sediment metagenome DNA, contig 8.16098982228e-08 1.53847382988e-07 29163159.0533 +UniRef50_G4LLH9 1.07510097027e-05 9.38402286798e-06 -551869359.991 +UniRef50_UPI0002376205 rtx family calcium binding cytotoxins and bacteriocins protein, partial 1.10250642722e-07 2.78836809785e-07 68060304.4282 +UniRef50_UPI000263050C tryptophan synthase subunit alpha, partial 1.29998909956e-07 1.22609418911e-07 -2983228.21412 +UniRef50_E0TAZ2 Plasma membrane H+ transporting two sector ATPase, C subunit 1.46007179933e-06 6.08014709546e-07 -343985903.062 +UniRef50_U5MY05 SH3, type 3 domain protein 2.2469404098e-06 5.35790788628e-06 1255935746.12 +UniRef50_H7CVA1 Iron chelate ABC transporter permease protein 2.34441534824e-06 9.61314176563e-06 2934474052.0 +UniRef50_E3I0H1 L carnitine dehydratase bile acid inducible protein F 8.79268488435e-06 3.31278904589e-06 -2212301195.87 +UniRef50_A0A037XJM6 3.23587209859e-08 1.73340412166e-08 -6065647.59642 +UniRef50_V8HAI2 2.1256264004e-07 1.59266287479e-07 -21516391.5487 +UniRef50_K2HT96 2.73963012405e-06 1.8895318272e-07 -1029739581.54 +UniRef50_U4TIA1 Phage portal protein, HK97 family 3.7623194529e-08 6.75123771946e-08 12066629.8236 +UniRef50_H5TPA6 Putative uracil permease 6.24446444935e-07 3.06187918985e-07 -128484872.397 +UniRef50_Q6FER0 Sec independent protein translocase protein TatB 5.29185965684e-06 2.06979674078e-05 6219634753.28 +UniRef50_B7RPE0 3.86673330433e-06 3.68378426439e-06 -73858772.461 +UniRef50_Q65I16 Glycerol 3 phosphate dehydrogenase [NAD+] 6.01175682778e-06 3.90136299412e-05 13323261154.4 +UniRef50_V4IFH3 8.36475922404e-08 2.58604758054e-07 70632354.805 +UniRef50_UPI000367658B hypothetical protein 2.17704235779e-07 3.81355705191e-08 -72494073.7208 +UniRef50_UPI00044077DF carboxymuconolactone decarboxylase 2.55063761025e-07 6.22334868425e-07 148271852.981 +UniRef50_UPI0003B3D63E DEAD DEAH box helicase 2.61441615261e-08 9.81634331638e-08 29075063.736 +UniRef50_C5N0Y3 0.000116853212466 2.32857505071e-05 -37774332594.7 +UniRef50_UPI0003B528A9 ribonuclease D 5.87504737223e-07 1.08728215709e-07 -193287956.984 +UniRef50_C5N0Y1 9.49016883411e-05 3.8952447552e-05 -22587395081.0 +UniRef50_B4U5D1 Pyruvate formate lyase activating enzyme 5.76430219594e-05 4.22583836511e-05 -6210967275.8 +UniRef50_UPI0003B42040 phosphoenolpyruvate synthase 2.07058458325e-08 9.04947398264e-07 356979165.581 +UniRef50_UPI00041405D4 hypothetical protein 9.54553442703e-08 1.86528030537e-07 36767161.0334 +UniRef50_K0LAR2 APC family amino acid polyamine organocation transporter 0.000128754117271 6.80745298341e-05 -24497094070.5 +UniRef50_UPI0003696CB7 hypothetical protein 1.06841111076e-05 1.88171055716e-06 -3553637119.81 +UniRef50_P51362 Anthranilate synthase component 2 1.16010562662e-07 1.71166158398e-07 22266990.8339 +UniRef50_L0KYG3 Methanol cobalamin methyltransferase B subunit 2.68090451571e-05 3.11464309399e-06 -9565720875.88 +UniRef50_UPI000476424B glycerol 3 phosphate ABC transporter ATPase 3.52149775234e-07 4.31231558842e-07 31926286.4852 +UniRef50_UPI000190A758 pyrroline 5 carboxylate reductase, partial 3.14170453931e-07 8.42404785176e-07 213254681.688 +UniRef50_P68898 HPr kinase phosphorylase 4.97873466573e-05 6.29147406749e-05 5299690056.14 +UniRef50_B9KZY0 50S ribosomal protein L16 0.000261491624965 0.000244104387282 -7019441218.03 +UniRef50_UPI000366C8A8 calcium binding protein 1.64669888487e-08 3.14233362043e-08 6038060.96248 +UniRef50_Q47QB9 1.12843414284e-05 0.000745696251234 2.96491100236e+11 +UniRef50_UPI000364349F hypothetical protein 2.15885116566e-07 7.04746708322e-08 -58703981.3296 +UniRef50_D0K393 Lipoprotein 8.21212528409e-05 1.85166752122e-05 -25677948504.6 +UniRef50_P0AE07 Multidrug efflux pump subunit AcrA 3.07260862145e-05 6.34719588446e-06 -9842057188.85 +UniRef50_K1QDX5 1.70367404275e-06 1.90086793457e-07 -611053746.343 +UniRef50_UPI0003EF0A28 hypothetical protein 1.01113144247e-06 8.30030510118e-07 -73112668.7489 +UniRef50_U5LCP0 1.29815170349e-07 8.72513739769e-06 3470037059.64 +UniRef50_M9VES2 4.43826550027e-06 1.86232437716e-05 5726649797.38 +UniRef50_UPI0003677933 hypothetical protein 1.2614892914e-06 3.93480271489e-07 -350425893.007 +UniRef50_UPI000333F6F9 PREDICTED 8.82159566685e-08 3.30305502409e-06 1297869982.03 +UniRef50_D3DZ41 Arginase agmatinase family protein 2.26449580392e-05 5.0225715194e-06 -7114373689.04 +UniRef50_E4U2W7 3.99549222094e-07 3.13019215606e-07 -34933225.4618 +UniRef50_UPI00047C1003 30S ribosomal protein S2 1.42201355636e-07 1.43951690365e-06 523742206.584 +UniRef50_Q57657 Probable amidophosphoribosyltransferase 7.83462283127e-08 6.39014213947e-07 226348545.97 +UniRef50_UPI000373F66D hypothetical protein 2.04905612754e-06 7.13502236322e-07 -539179494.975 +UniRef50_X1H0M2 Marine sediment metagenome DNA, contig 4.95879619353e-07 1.59663677551e-06 444389171.751 +UniRef50_G2JLL9 1.3291760171e-06 4.48864269382e-05 17584596704.4 +UniRef50_P71362 L 2,4 diaminobutyrate decarboxylase 1.04760218922e-06 4.82345320867e-05 19049942648.4 +UniRef50_A0A008Q9S3 7.56481722007e-07 1.37537026618e-06 249852899.899 +UniRef50_P0ACP3 Catabolite repressor activator 2.34896333666e-05 1.05020469483e-05 -5243248012.68 +UniRef50_B7V6Q1 6.42555301206e-06 7.35228311697e-06 374132315.609 +UniRef50_K0DWJ8 9.15736378938e-07 7.34684501446e-07 -73092864.6999 +UniRef50_UPI000377E049 hypothetical protein 3.90093367829e-08 1.87471346809e-07 59935935.2812 +UniRef50_UPI00037626C6 peptidase 3.71102718145e-07 3.36700446023e-07 -13888619.419 +UniRef50_H4F7M3 1.13485180716e-07 3.72372914155e-07 104516154.899 +UniRef50_P75747 Protein AbrB 2.25633196586e-05 1.58806502216e-05 -2697875657.29 +UniRef50_T1JYL1 8.0231088521e-08 1.17260441222e-07 14949204.0866 +UniRef50_F3ZCA1 Putative glutamate binding periplasmic protein 1.20705753764e-06 9.04845510458e-07 -122006703.932 +UniRef50_Q9RYQ0 Catalase 4.01590909646e-06 0.000475205488625 1.90225015402e+11 +UniRef50_Q97M68 Prolipoprotein diacylglyceryl transferase 3.34390924066e-06 4.69245024513e-05 17594020273.1 +UniRef50_P38021 Ornithine aminotransferase 0.000363448777619 3.8629155494e-05 -1.31133667437e+11 +UniRef50_A4Y017 Transcriptional regulator, TetR family 1.62511351231e-05 8.64341576184e-06 -3071329663.36 +UniRef50_W4U293 6.29143314759e-06 2.62827018416e-05 8070720492.22 +UniRef50_A3PNI0 0.000198044188252 4.35366330203e-05 -62376596068.1 +UniRef50_UPI00037C3547 hypothetical protein 8.41604956353e-07 1.53301484076e-06 279130654.888 +UniRef50_A0A023S1T5 Mutlidrug resistance protein 1.02577714356e-06 4.62696631728e-05 18265511994.9 +UniRef50_G5M3D2 Glucan biosynthesis protein MdoG 6.79525928643e-07 2.91965305604e-06 904366810.782 +UniRef50_UPI0003793B75 hypothetical protein, partial 8.66730654038e-07 7.07040147895e-08 -321365722.61 +UniRef50_G7U887 1.27044430963e-05 6.285730969e-05 20247327688.8 +UniRef50_F4A797 Transferase hexapeptide repeat containing protein 4.69819556092e-06 3.35385138297e-05 11643190395.6 +UniRef50_UPI00047EC165 hypothetical protein 1.79678737142e-07 1.02221188172e-07 -31270563.0302 +UniRef50_UPI000225ABB3 Glycine cleavage system T protein 2.01638269094e-07 7.60073896135e-08 -50718727.7103 +UniRef50_Q1AT13 Lipoyl synthase 5.5855448211e-08 3.91666730715e-07 135571135.615 +UniRef50_UPI000252BB02 PREDICTED 1.38727294061e-07 1.26269232769e-07 -5029472.22118 +UniRef50_M4MFI8 Oxidoreductase,likely required for utilization of stachydrine 6.33455674473e-05 2.02261065394e-05 -17407855503.8 +UniRef50_A5URF1 Spermidine putrescine ABC transporter ATPase subunit 1.13433524055e-05 8.28419672073e-06 -1235018690.0 +UniRef50_Q8KCS2 3 methyl 2 oxobutanoate hydroxymethyltransferase 6.65282901631e-08 1.96488159383e-05 7905609825.23 +UniRef50_A0A035ZUD7 4.08331425698e-07 7.855590716e-08 -133134423.634 +UniRef50_R6DSS9 Dihydroorotate dehydrogenase 3.57087758517e-05 1.91764094291e-06 -13641895826.5 +UniRef50_A3TG55 1.06409529527e-06 1.49731011855e-06 174894140.302 +UniRef50_UPI0003B6DC28 taurine pyruvate aminotransferase, partial 4.05768803778e-06 9.90501091207e-07 -1238261008.95 +UniRef50_I1ZMS2 Oxidoreductase, short chain dehydrogenase 8.03246549993e-05 6.46922075891e-05 -6311010851.2 +UniRef50_F3U214 Binding protein dependent transport systems inner membrane component 0.00012168571997 1.255647078e-05 -44056817064.5 +UniRef50_D5D972 Small heat shock protein 8.67783882414e-06 4.23626721934e-05 13598980590.6 +UniRef50_A6LYN9 D galactose binding periplasmic protein 9.0570956882e-06 2.64022433003e-05 7002448939.9 +UniRef50_UPI0003B622F4 transcriptional regulator 1.66659418173e-06 6.35450722712e-07 -416285267.96 +UniRef50_W4SPZ4 1.8858534114e-07 9.3676222342e-08 -38315975.9246 +UniRef50_UPI0004709FDA molybdenum ABC transporter permease, partial 1.2366956433e-07 3.623277736e-07 96349247.7479 +UniRef50_Q92L73 Argininosuccinate synthase 4.67005755664e-08 1.89802026764e-06 747400477.936 +UniRef50_UPI000425B71D hypothetical protein 5.80497949466e-07 1.35475765192e-07 -179660916.828 +UniRef50_A4WTW6 0.000137101381369 2.34596779109e-05 -45878550226.5 +UniRef50_G5SIY2 1.60474594636e-06 1.53002624741e-05 5529048085.12 +UniRef50_K7SJ66 von Willebrand factor type A domain containing protein 6.64998357309e-06 9.26626598169e-05 34724372893.9 +UniRef50_P45419 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.6277332444e-07 6.13007848381e-07 181765202.314 +UniRef50_Q8XAR3 Poly beta 1,6 N acetyl D glucosamine N deacetylase 3.30013676025e-05 9.43144675865e-06 -9515466280.14 +UniRef50_W4TPM5 Phosphoglycerate mutase family protein 2.16945970609e-06 6.67100905552e-05 26055844676.4 +UniRef50_V5VCE3 Outer membrane protein assembly factor BamA 9.78018025449e-07 2.66655611519e-05 10370376381.8 +UniRef50_W4TKT8 Molybdopterin guanine dinucleotide biosynthesis protein 9.21476590258e-07 4.46279081066e-06 1429672007.59 +UniRef50_UPI0003787FA8 hypothetical protein 2.3980166999e-06 4.76333997079e-07 -775806888.827 +UniRef50_P18080 5 aminolevulinate synthase, erythroid specific, mitochondrial 7.33743180374e-08 3.50860214266e-08 -15457455.192 +UniRef50_UPI00046369B9 MULTISPECIES 1.10939165388e-07 1.58155976344e-07 19062005.9984 +UniRef50_UPI0003B333D6 AsnC family transcriptional regulator, partial 1.98299294229e-06 9.76501286571e-07 -406333032.456 +UniRef50_F0KP66 Outer membrane usher protein 1.4365236857e-06 9.66348105333e-05 38432716614.7 +UniRef50_Q2IL11 NADH quinone oxidoreductase subunit A 1.9229155422e-07 7.20028541249e-07 213053897.725 +UniRef50_UPI0003B77D72 serine dehydratase subunit beta 1.1138583195e-07 1.68171352961e-06 633960561.633 +UniRef50_Q92375 Thioredoxin reductase 5.97150396427e-07 1.71529286139e-07 -171828465.182 +UniRef50_S3BAZ0 2.48229769934e-07 6.66157861379e-06 2589147628.91 +UniRef50_K5JB68 Bacterial extracellular solute binding s, 3 family protein 3.94388856035e-06 9.29155863266e-07 -1217084584.74 +UniRef50_UPI000474C9A9 hypothetical protein 1.11335927472e-07 9.86498908306e-08 -5121508.66731 +UniRef50_UPI0002628E30 Sua5 YciO YrdC YwlC family protein 2.45053473685e-07 2.45530355425e-07 192523.010435 +UniRef50_A6LYF6 Rubrerythrin 1.46312398781e-06 1.51286287989e-05 5516931986.84 +UniRef50_W0HD99 2.82637119679e-06 1.77723192699e-06 -423550397.605 +UniRef50_D9RK78 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter 0.000210254084466 4.24839052006e-05 -67730880140.9 +UniRef50_UPI00037C2AEE hypothetical protein 2.9989791008e-07 4.26299618248e-07 51029920.7108 +UniRef50_P26280 Reaction center protein L chain 0.000162234028551 2.4262788167e-05 -55700682840.5 +UniRef50_UPI0004686580 hypothetical protein 3.20446510048e-07 5.01386596235e-07 73047733.1782 +UniRef50_UPI00037303BE hypothetical protein, partial 6.76016295205e-08 7.77020633451e-08 4077669.08125 +UniRef50_W8XZ85 1.84261935083e-06 4.78812194975e-06 1189135544.57 +UniRef50_O22854 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 5.61031719189e-08 1.54845813153e-07 39863615.9747 +UniRef50_P08401 Sensor protein CreC 2.00194553282e-05 4.45482219259e-06 -6283633396.37 +UniRef50_T2EES2 3 beta hydroxysteroid dehydrogenase isomerase family protein 4.98029375613e-06 1.84572940753e-06 -1265462092.96 +UniRef50_A6LY79 Lysine exporter protein 1.00013271503e-05 5.81904837826e-06 -1688437262.6 +UniRef50_UPI0003946175 PREDICTED 2.06571140033e-07 2.10283417814e-07 1498692.09496 +UniRef50_Q7UIA7 3 isopropylmalate dehydratase large subunit 5.42823582668e-05 0.000195604947191 57053663371.8 +UniRef50_Q8Y8Q5 Calcium transporting ATPase lmo0841 1.38360603378e-07 1.66581633166e-05 6669247076.09 +UniRef50_K0YSF4 6.74878785343e-08 3.15992659455e-07 100324429.554 +UniRef50_G7M906 Molybdenum cofactor synthesis domain protein 3.21493711482e-06 9.74327058143e-06 2635568332.13 +UniRef50_UPI00046F0789 multidrug MFS transporter 1.68228922347e-07 7.92689848418e-08 -35914218.432 +UniRef50_Q8XBQ1 Rare lipoprotein A 2.4712615255e-05 3.1754484429e-06 -8694818532.8 +UniRef50_A6M2G0 Methyl accepting chemotaxis sensory transducer 2.74075114113e-06 8.88881501153e-06 2482048829.71 +UniRef50_A6LWZ6 Response regulator receiver sensor signal transduction histidine kinase 8.92401864878e-07 9.94924280792e-06 3656357828.64 +UniRef50_UPI0000057DE0 50S ribosomal protein L4 2.56734370151e-07 1.25390682676e-06 402570757.415 +UniRef50_A9H7F9 1.21118499099e-06 2.05693106709e-06 341438069.393 +UniRef50_UPI00037D5622 hypothetical protein 1.46995381452e-07 1.09329641528e-07 -15206121.4179 +UniRef50_R9SK92 Energy converting hydrogenase A subunit Q EhaQ 4.05870528582e-05 7.15390932757e-06 -13497370314.1 +UniRef50_UPI00036E2295 hypothetical protein, partial 5.78408004857e-07 1.05255598858e-06 191419359.479 +UniRef50_Q9RZL8 Protein NrdI 2.78245200628e-06 0.000101826758014 39985401745.6 +UniRef50_K1X086 2.9875766889e-06 2.25723155117e-06 -294849294.444 +UniRef50_G7MBG6 Glucokinase 2.66160989946e-06 2.40744600086e-05 8644630354.26 +UniRef50_UPI00037CC8E0 hypothetical protein 1.23954220777e-07 6.62348816027e-08 -23302005.5206 +UniRef50_H8LBR4 Zeta toxin 1.91510734549e-05 3.41394391089e-05 6050987142.45 +UniRef50_F2PQ83 1.91187153239e-07 1.70566806412e-07 -8324687.05417 +UniRef50_I6TQY8 Gramicidin S synthetase 5.16329398556e-05 1.30933774444e-05 -15558894279.0 +UniRef50_U1FPP9 Serine dehydratase alpha chain domain protein 2.19768768144e-07 1.99568423137e-07 -8155127.16543 +UniRef50_UPI0002FF8C25 hypothetical protein 5.18060364965e-08 2.91863915789e-07 96914311.712 +UniRef50_O34900 L cystine import ATP binding protein TcyN 9.20332650164e-05 0.000267580495836 70870571288.8 +UniRef50_A5UJG8 Dephospho CoA kinase, CoaE 9.05531718019e-06 2.15119755502e-05 5028905844.36 +UniRef50_UPI000376DDCE hypothetical protein, partial 4.37904073141e-07 1.26496198145e-06 333893426.726 +UniRef50_Q9KE44 BH1014 protein 8.26588420574e-08 8.50737326924e-07 310082709.724 +UniRef50_Q9RXS7 Endoglucanase, putative 1.1301975714e-06 0.000316685225141 1.27393436926e+11 +UniRef50_D5AV16 Cobalamin biosynthesis protein CobD 3.0888789141e-07 1.2038008543e-06 361287344.936 +UniRef50_UPI0003B61FEB amino acid transporter 7.07188653678e-08 2.03446260814e-07 53583678.2898 +UniRef50_B5XSL3 5.44891854867e-07 8.28115556762e-07 114340884.001 +UniRef50_P50511 RNA polymerase sigma factor RpoH 6.04457946096e-06 4.99983723944e-05 17744685580.9 +UniRef50_W5X4I3 Tyrosine recombinase XerC 4.61731604475e-08 9.4382950065e-08 19462883.6692 +UniRef50_A0R8M9 Gluconate kinase, FGGY family 9.88890244243e-05 3.50907738141e-05 -25756136663.9 +UniRef50_UPI000255F256 hypothetical protein 1.04914179958e-08 7.77307564342e-08 27145346.0471 +UniRef50_Q6GEF9 Molybdenum cofactor biosynthesis protein B 0.000211021224292 0.000138333145366 -29345069445.5 +UniRef50_Q828A3 Acetylornithine aminotransferase 4.79505048972e-06 6.15153820326e-05 22898693880.6 +UniRef50_UPI0004418616 P loop containing nucleoside triphosphate hydrolase protein 8.16108710042e-09 3.61456324717e-09 -1835487.47168 +UniRef50_Q47456 Transcriptional regulatory protein PcoR 1.68520530738e-06 3.33063953224e-06 664281988.325 +UniRef50_G0DX35 Beta D glucuronidase 3.13215449466e-06 4.55608773225e-05 17128996064.6 +UniRef50_Q822W9 Tryptophan synthase beta chain 1 2.05611663096e-07 1.63249310823e-07 -17102201.4571 +UniRef50_B7UNM8 L rhamnose proton symporter 3.13025659774e-05 1.2857160748e-05 -7446636441.68 +UniRef50_W7NL02 0.000322735090222 1.21814230132e-06 -1.29800337332e+11 +UniRef50_P44431 DNA adenine methylase 4.43627168968e-05 1.17020474367e-05 -13185513052.5 +UniRef50_UPI0004656CA8 ATPase AAA 9.78529869158e-07 1.23736926869e-07 -345090400.291 +UniRef50_Q2KX38 Cysteine tRNA ligase 2.75913620631e-08 1.09322295052e-07 32995780.599 +UniRef50_UPI0003304FE8 ABC transporter 1.25909622698e-07 3.8373369304e-06 1498348748.45 +UniRef50_B9DSF8 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 8.14614715665e-05 2.42390601841e-05 -23101389673.0 +UniRef50_W5VLQ9 ABC transporter ATP binding protein 1.24312127399e-05 1.96659293133e-06 -4224695432.06 +UniRef50_UPI0003B78B56 acetolactate synthase 1.7002649666e-07 1.67465970217e-06 607438888.99 +UniRef50_Q4ZMZ5 1.61866315074e-05 3.25281081862e-06 -5221542127.9 +UniRef50_UPI00046F9C6C hypothetical protein, partial 4.45136224903e-07 7.88859333588e-07 138765236.933 +UniRef50_F0KJU7 Siderophore interacting protein 5.02292002391e-06 8.03342513719e-05 30404108639.1 +UniRef50_B4U3Z1 1.27072047585e-06 8.41813353406e-07 -173155068.613 +UniRef50_B0VQL7 1.86566386584e-06 4.38317843742e-05 16942237831.5 +UniRef50_Q83LB6 Gamma glutamyl gamma aminobutyrate hydrolase 6.0048065699e-05 3.61292493342e-05 -9656319683.35 +UniRef50_J8UT53 Multidrug transport protein, mfs family 3.79377457142e-07 6.47393139862e-06 2460446214.76 +UniRef50_X5A2G4 Epoxide hydrolase domain containing protein 2.33649238274e-06 1.91517651442e-05 6788531960.42 +UniRef50_Q9I163 Putative quercetin 2,3 dioxygenase PA2418 1.47343870432e-06 4.25020189921e-06 1121013376.49 +UniRef50_D0W9Q2 Translation initiation factor IF 2 1.73507682131e-06 3.29846500267e-05 12615836178.4 +UniRef50_A3M0R3 RND type efflux pump 1.13288269163e-05 0.000119147136524 43527574668.2 +UniRef50_UPI00047675B7 iron ABC transporter 1.32370888919e-07 9.65568362127e-06 3844678214.24 +UniRef50_S9QHG5 ABC type dipeptide transport system, periplasmic component 1.36807721072e-07 2.07009942528e-07 28341498.2799 +UniRef50_P42371 Formamidopyrimidine DNA glycosylase 1.01617983137e-07 1.01465294293e-07 -61642.3600256 +UniRef50_UPI0003F5623F hypothetical protein 2.19120802761e-07 6.56053275946e-07 176395001.189 +UniRef50_Q8DTP8 7.85950500436e-05 6.06815147654e-06 -29279998956.7 +UniRef50_Q5HKT3 Transcriptional antiterminator, BglG family 8.0330598484e-05 3.38442272027e-05 -18767118538.2 +UniRef50_Q9VDT6 Putative ribosomal RNA methyltransferase CG11447 3.4203571375e-07 3.47570760337e-07 2234566.22983 +UniRef50_Q1WV73 Ribosomal RNA small subunit methyltransferase A 0.000127550352222 7.93547853733e-05 -19457141762.9 +UniRef50_Q79VG7 ATP synthase subunit alpha 6.61884294734e-06 4.26824127388e-05 14559305674.6 +UniRef50_M8LWS9 Amidohydrolase family protein 3.59510465573e-06 1.48228462067e-05 4532777044.02 +UniRef50_B2VBD6 7.33966667669e-07 7.23261155984e-07 -4321946.43864 +UniRef50_B6AY70 1.67320852626e-06 1.15783081663e-06 -208064305.773 +UniRef50_Q9ZCH1 3 oxoacyl [acyl carrier protein] synthase 3 1.16176713701e-06 1.02103949507e-07 -427799032.323 +UniRef50_UPI00042C6A1E PREDICTED 1.07785186262e-08 5.81138049842e-08 19109835.972 +UniRef50_A0LUZ1 LexA repressor 3.00909365593e-07 1.14742367934e-07 -75157901.4809 +UniRef50_C9A6P4 3.11794085032e-05 0.00023964964783 84161993833.8 +UniRef50_X8DM60 1.26927740234e-07 2.24920061928e-06 856787604.489 +UniRef50_W5X752 Aldo keto reductase 2.39150912737e-07 1.84566515081e-06 648569512.055 +UniRef50_A0A058ZFV0 2.06101103276e-08 4.88508471071e-08 11401131.9907 +UniRef50_UPI0003B55097 ABC transporter 7.8177563681e-07 5.6982733203e-08 -292607789.395 +UniRef50_UPI000466B8BE ATP dependent DNA helicase RecQ 1.87579726053e-07 5.65353682624e-08 -52904215.3353 +UniRef50_X0Z3F5 Marine sediment metagenome DNA, contig 8.21597430873e-07 2.71646853979e-07 -222021796.545 +UniRef50_UPI0003AB2F70 zinc transporter 1.98773376251e-07 5.15238626873e-07 127760905.141 +UniRef50_A8EWF0 3 oxoacyl [acyl carrier protein] synthase 2 9.17713100965e-07 2.60283090423e-05 10137455723.2 +UniRef50_P0ADP3 3.36040939626e-06 1.20178510303e-05 3495115426.42 +UniRef50_R9SKB3 3.85526461448e-05 2.48513356408e-06 -14560897427.0 +UniRef50_I6L8Z7 6.01876726467e-05 2.56756463594e-05 -13932928522.4 +UniRef50_UPI000377F0F1 50S ribosomal protein L15 6.13261178776e-07 1.45989328959e-06 341795772.48 +UniRef50_P00911 Indole 3 glycerol phosphate synthase 1.22512000564e-07 9.05962278299e-05 36525349317.6 +UniRef50_UPI00037E35A9 hypothetical protein 6.94091127264e-08 1.05712898489e-07 14656283.8099 +UniRef50_J9QWN8 3.48788335131e-07 1.21300039977e-06 348893015.569 +UniRef50_UPI0003C13804 PREDICTED 2.78452660133e-07 4.61999413689e-08 -93763272.6264 +UniRef50_A5IXT6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 7.03409129573e-08 5.12989326396e-08 -7687481.12563 +UniRef50_M9RBK8 1.13559130255e-06 2.03588949812e-07 -376260786.755 +UniRef50_P75969 Prophage lambda integrase 3.96475513483e-05 1.25177959805e-05 -10952615161.5 +UniRef50_UPI000299D232 arginyl tRNA ligase 1.8030618242e-06 5.24788616285e-07 -516054580.214 +UniRef50_Q9KD27 Polyphosphate kinase 9.34569674946e-08 4.0192648549e-06 1584896819.23 +UniRef50_Q5HLU4 Putative 2 hydroxyacid dehydrogenase SERP1888 0.000201636215518 7.42616435466e-05 -51422677766.5 +UniRef50_UPI00047D602E membrane protein 4.01897727128e-07 2.81449598051e-07 -48626387.7731 +UniRef50_UPI00040C0EAB dipeptidase PepV 6.97615980824e-08 7.93343298644e-08 3864629.29102 +UniRef50_A3SGM5 2.4354311642e-07 4.91453191356e-07 100084339.45 +UniRef50_X5RWX0 6.15435794799e-06 1.63047421043e-06 -1826347379.15 +UniRef50_B0V917 3.9875280513e-06 9.42500122969e-06 2195174647.42 +UniRef50_L8NGN8 Sulfite oxidoreductase, molibdopterin binding subunit 1.96451818634e-05 6.6212885384e-06 -5257905556.45 +UniRef50_Q5HM71 Lytic regulatory protein, putative 0.000106591044736 3.04269334014e-05 -30748386384.5 +UniRef50_Q2SS11 S adenosylmethionine synthase 4.22719497926e-07 2.31242044482e-06 762895461.498 +UniRef50_D2BQV2 NTPase, KAP P loop domain containing family 3.64612774804e-08 1.1282990835e-07 30830953.4305 +UniRef50_UPI00046D1EDA hypothetical protein 5.77388519766e-07 6.34105973761e-08 -207499194.487 +UniRef50_M4VPY4 3.40716538266e-07 3.02978667462e-07 -15235241.5393 +UniRef50_O27101 Putative biopolymer transport protein ExbB homolog 3.76786834011e-05 9.75301049817e-06 -11273936837.4 +UniRef50_UPI000470CC65 hypothetical protein, partial 8.86593165557e-07 3.57899152787e-06 1086954258.31 +UniRef50_UPI000362B8D4 hypothetical protein 1.04342017914e-07 1.95364356833e-07 36746835.1913 +UniRef50_Q6FF14 4.03089064699e-06 5.4382963575e-05 20327749730.5 +UniRef50_F9Y8H3 2.56310598718e-07 6.78628471887e-08 -76078669.8062 +UniRef50_UPI00047C7174 GTPase CgtA 8.37016453651e-08 4.06645514871e-06 1607886463.18 +UniRef50_D0Z2G0 6.13247720305e-07 3.14402685538e-07 -120647407.776 +UniRef50_UPI00047E6697 hypothetical protein 6.81435544836e-08 6.69073885102e-07 242602948.715 +UniRef50_O34374 Putative cytochrome P450 YjiB 8.59152279979e-08 8.06218856681e-07 290795414.019 +UniRef50_A6M3B7 Phage minor structural protein 3.52234460215e-06 2.53464274132e-05 8810650042.41 +UniRef50_Q94IN5 Pyruvate dehydrogenase [NADP], mitochondrial 5.96731744541e-06 1.49681627909e-05 3633751718.77 +UniRef50_B4RAW2 0.000102067713539 2.34980091651e-05 -31719553814.4 +UniRef50_B5SGS2 Phosphoribosylaminoimidazole carboxylase atpase subunit protein 1.39465266818e-06 2.14557730186e-05 8098920463.09 +UniRef50_O32219 Cadmium, zinc and cobalt transporting ATPase 5.23737610038e-08 1.57417235599e-05 6333983043.79 +UniRef50_UPI0002DD1873 multidrug transporter 1.6275042563e-06 1.0664661744e-06 -226497958.374 +UniRef50_UPI000372E87D hypothetical protein 2.62099004393e-07 5.43407215181e-07 113567576.735 +UniRef50_Q5HPN2 Glutamine synthetase 0.000102613150723 4.56067526779e-05 -23014182438.0 +UniRef50_A6M2W7 Helix turn helix domain containing protein, AraC type 4.79247809865e-06 2.4504709217e-05 7958069598.74 +UniRef50_A6LZ11 Transcriptional regulator, LysR family 1.34656119687e-06 1.31707722284e-05 4773579092.8 +UniRef50_F4A8L7 3.71297693954e-06 6.06736994061e-06 950497346.183 +UniRef50_UPI0004746BAC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 5.18097135648e-07 5.28324483951e-07 4128906.0136 +UniRef50_UPI0003B6272C 30S ribosomal protein S2, partial 1.40725504025e-07 4.22369177815e-07 113703007.266 +UniRef50_G0LQ11 ABC transport system, ATP binding protein 0.000112223281127 3.3863795942e-05 -31634685748.2 +UniRef50_Q1GE51 Cytochrome c oxidase assembly protein CtaG 3.41928785143e-05 3.37504805945e-06 -12441536331.9 +UniRef50_A6LSR5 Cell divisionFtsK SpoIIIE 1.61336404174e-06 9.1888573031e-06 3058319591.37 +UniRef50_UPI0003946AEB PREDICTED 3.54119356436e-07 8.72393522557e-07 209233640.802 +UniRef50_W1V573 2.59933944651e-06 2.12518216721e-05 7530235966.17 +UniRef50_A2WHS9 2.63864555761e-06 1.13878716332e-06 -605511239.107 +UniRef50_Q89W19 Partitioning protein 0.000111071938086 7.70964164969e-05 -13716334992.1 +UniRef50_UPI00036C0568 hypothetical protein 1.69707125734e-07 1.77359228603e-07 3089247.83008 +UniRef50_Q28JJ0 Flagellar protein FlgJ putative 1.07128364311e-06 5.93790608919e-07 -192769797.401 +UniRef50_V9TVW8 Signal transduction histidine kinase CheA 2.93100271592e-06 2.48775317081e-06 -178945280.644 +UniRef50_UPI00022CAC9E PREDICTED 5.30579222346e-08 3.97601370512e-07 139096418.093 +UniRef50_V5VGK2 Universal bacterial protein YeaZ 1.70808139747e-06 3.56547527068e-05 13704687780.1 +UniRef50_UPI000380AFF0 hypothetical protein 1.66656978508e-07 5.08469811353e-08 -46753917.088 +UniRef50_Q5M3F8 Polysaccharide biosynthesis protein 5.49775011829e-05 1.21997095475e-05 -17269919425.7 +UniRef50_L0LMR9 ABC transporter, ATP binding protein 6.58143586887e-05 2.00426881728e-05 -18478585068.8 +UniRef50_Q8DVD7 Cell division protein SepF 3.7044273976e-05 3.06231074306e-05 -2592303730.95 +UniRef50_UPI0003B704ED hypothetical protein 3.48028651978e-07 5.64344277132e-08 -117720166.599 +UniRef50_UPI00036F3039 hypothetical protein 1.49608177669e-06 3.79962076068e-07 -450591219.469 +UniRef50_C5WTK0 5.89371531896e-07 8.96203735086e-07 123871925.682 +UniRef50_T1B3T8 Virulence factor MviN 1.2264531826e-06 1.48901838437e-06 106000793.992 +UniRef50_Q11IP6 Phosphate transporter 3.42110329637e-05 5.57443864461e-06 -11560944537.1 +UniRef50_A1URR2 sn glycerol 3 phosphate import ATP binding protein UgpC 1.03514073048e-06 4.81610057707e-07 -223467125.184 +UniRef50_P0A4S1 Fructose bisphosphate aldolase 8.37627983898e-07 3.93775090089e-05 15559022907.3 +UniRef50_Q48460 UDP glucose 2.4706186238e-05 1.08779160929e-05 -5582642349.53 +UniRef50_F0QG73 SAM dependent methyltransferase 1.88812356745e-06 0.000145240795621 57873232843.3 +UniRef50_UPI0003A87FEF hypothetical protein 6.31376195086e-08 2.32078735436e-07 68203601.6404 +UniRef50_Q12R52 Hemin import ATP binding protein HmuV 7.02972441324e-08 4.31572149605e-06 1713929867.71 +UniRef50_UPI000376155F hypothetical protein 2.75090985045e-07 1.30446929653e-07 -58394580.1439 +UniRef50_Y1HNL2 PTS system maltose and glucose specific EIICB component 9.45995589328e-07 4.15230617395e-07 -214276332.388 +UniRef50_A1AC10 Phosphoribosylglycinamide formyltransferase 2 2.09067197729e-05 8.55692277837e-06 -4985764595.73 +UniRef50_A0A011NL09 3.98316651332e-08 1.63957371157e-05 6603079739.94 +UniRef50_UPI000467180A aldehyde activating protein 1.41404095602e-07 2.66801214851e-07 50624355.8365 +UniRef50_B9KWD4 Periplasmic sensor diguanylate cyclase phosphodiesterase 3.42251007916e-05 9.70801575124e-06 -9897848089.28 +UniRef50_Q8RTQ0 Putative 1 deoxy D xylulose 5 phosphate synthase 1.23703418686e-06 7.55808518896e-07 -194276707.46 +UniRef50_D9WU07 Putative vgr related protein 4.79723715915e-07 4.51060092898e-07 -11571856.3542 +UniRef50_UPI00042AFC27 D aminoacid aminotransferase like PLP dependent enzymes superfamily protein isoform 3 9.17567555769e-08 2.74262788609e-07 73679925.1359 +UniRef50_P58224 Putative outer membrane protein YiaT 1.38908439056e-05 2.74287961482e-06 -4500569985.1 +UniRef50_D4H950 YD repeat protein 1.47833050033e-06 6.02378263988e-05 23721929554.3 +UniRef50_P31078 HTH type transcriptional regulator PetP 8.40860761431e-05 3.48113994329e-06 -32541201877.7 +UniRef50_A6U9L1 1.18841560449e-06 4.76696931327e-07 -287329562.126 +UniRef50_G0DWF3 1.5141640003e-06 3.18388821914e-05 12242460859.9 +UniRef50_Q6GJE0 Serine acetyltransferase 0.000263765257778 8.13626238588e-05 -73638181645.1 +UniRef50_B1K1C0 Recombinase 0.000109288769219 2.66357594883e-05 -33368034294.8 +UniRef50_UPI0004795AC6 hypothetical protein 2.81983729982e-07 3.29087854625e-07 19016513.151 +UniRef50_D0D0I6 GumN family protein 1.15946197148e-07 9.68905498281e-08 -7692998.66213 +UniRef50_UPI000362BAED hypothetical protein, partial 7.36698666684e-07 2.88024204799e-07 -181135386.118 +UniRef50_Q6A8I8 Alanine tRNA ligase 5.14052640274e-07 4.51194116323e-05 18007730794.4 +UniRef50_UPI00035CA936 hypothetical protein 2.46027875671e-06 9.37832296474e-07 -614630318.518 +UniRef50_UPI0004759D2E magnesium transporter 4.65908818374e-07 5.04982730728e-06 1850584144.98 +UniRef50_UPI00036009B3 hypothetical protein 1.62787238837e-07 1.53580791207e-07 -3716755.88405 +UniRef50_C1MWX1 Predicted protein 1.38104630066e-06 0.000123825617926 49432376128.9 +UniRef50_B6SHE9 Insect intestinal mucin IIM22 5.06809100946e-06 1.3633849615e-06 -1495635293.42 +UniRef50_Q9R9Y4 Cell division protein FtsX 3.59212890386e-06 9.99925282614e-06 2586634551.68 +UniRef50_UPI000420B7BC O acetylhomoserine aminocarboxypropyltransferase 1.87359997725e-07 7.41706087748e-08 -45695945.3091 +UniRef50_Q47147 Putative glutamine amidotransferase YafJ 2.56523373906e-05 1.33607621753e-05 -4962259749.01 +UniRef50_P0A9M3 Hypoxanthine phosphoribosyltransferase 2.56931430375e-05 6.37384421507e-05 15359354120.3 +UniRef50_UPI00041235F6 lysine transporter LysE 7.57858179594e-07 5.91965958154e-07 -66972725.5218 +UniRef50_UPI00029AB95D phenylacetate CoA oxygenase reductase subunit PaaK 1.15980606543e-07 1.54913002901e-07 15717486.164 +UniRef50_A8JGS9 DnaJ like protein 4.59788049763e-07 7.1649827385e-07 103637067.653 +UniRef50_D5ARW9 Nif specific regulatory protein 2.20134471261e-05 1.22444967874e-05 -3943845130.23 +UniRef50_U0B3S9 2.19035091853e-06 2.08953584437e-06 -40700282.5785 +UniRef50_P72525 DNA topoisomerase 4 subunit A 5.00858121419e-05 7.18753218222e-05 8796692445.29 +UniRef50_Q9Z3R6 Alpha glucoside transport system permease protein AglF 0.000122473902765 3.24814999465e-05 -36331037348.8 +UniRef50_Q0TPM3 ATP dependent DNA helicase RecG 1.78086788681e-06 9.37600943891e-06 3066251847.45 +UniRef50_Q7N9D9 PTS system N acetylmuramic acid specific EIIBC component 1.84996480888e-05 8.46242392495e-06 -4052150565.56 +UniRef50_D8QID1 1.32209443208e-06 9.72004629573e-07 -141335549.357 +UniRef50_X7XPI4 1.47118098131e-06 2.7113589694e-06 500675072.487 +UniRef50_B9KT83 Transport system permease protein 3.9010580463e-06 2.22321233524e-06 -677366903.037 +UniRef50_Q9SRW7 Adenylyl sulfate kinase 3 1.05498967662e-07 4.73997824286e-06 1870996154.85 +UniRef50_UPI000381376E hypothetical protein 2.3976791245e-06 7.04552706155e-07 -683535912.085 +UniRef50_D3P3D0 D xylose transport system substrate binding protein 8.92024616867e-05 2.84149075135e-05 -24540681566.9 +UniRef50_D9VWR6 Septum site determining protein 8.79308911103e-07 3.05076678753e-06 876644191.499 +UniRef50_E3A1I4 1.95719318858e-05 8.21814941568e-06 -4583661309.76 +UniRef50_A9WDZ1 Imidazoleglycerol phosphate dehydratase 1.28447008822e-06 1.32021008741e-07 -465257835.527 +UniRef50_A6LUX7 Regulatory protein, LysR 1.22163750441e-06 1.43743726056e-05 5309920562.56 +UniRef50_F4A4S9 Transcriptional regulator, GntR family, putative 7.39387693764e-06 2.63156061344e-05 7638934272.48 +UniRef50_B9KKN4 Transcriptional regulator, GntR family 1.14077658589e-05 2.49926348355e-05 5484378310.94 +UniRef50_C7M5H1 8.05404203975e-05 7.04141888288e-06 -29672448845.6 +UniRef50_F9EIQ5 1.30234882555e-06 7.68316637908e-06 2576014347.8 +UniRef50_B2UFB1 Cyclohexanone monooxygenase 4.46765503447e-06 7.18890373892e-06 1098601495.46 +UniRef50_V4ITY3 Sodium 3.12662486085e-06 2.82664608751e-06 -121105111.951 +UniRef50_X4ZS10 Bacterial regulatory s, gntR family protein 8.37128535452e-06 5.06646704298e-05 17074358553.1 +UniRef50_R0MDF2 DNA mismatch repair protein MutS 8.24262772619e-05 2.60586914204e-05 -22756286112.3 +UniRef50_Q0VTE2 Methionyl tRNA formyltransferase 5.29504113183e-08 3.45748586689e-07 118206216.435 +UniRef50_S1PI08 3.56082596515e-05 2.88609757052e-05 -2723961327.61 +UniRef50_A6LZ46 Response regulator receiver protein 2.63634949602e-06 1.041490288e-05 3140297454.7 +UniRef50_R5I1Z2 1.59501122048e-06 3.90617697768e-05 15125790198.0 +UniRef50_M3NMQ8 TonB dependent receptor plug domain protein 4.75223653651e-07 4.64695047785e-05 18568455703.4 +UniRef50_F0MSR5 2.05155428724e-06 5.5229370175e-05 21468536839.1 +UniRef50_D0IYV6 1.31625844663e-06 3.38751255575e-07 -394631648.391 +UniRef50_I1XGF6 Stringent starvation protein A 7.55455320202e-08 1.0226350363e-06 382351654.973 +UniRef50_B7UY15 3.12703089435e-06 8.81320525776e-06 2295578367.71 +UniRef50_A6LX91 3.08624183919e-06 1.21686861632e-05 3666694227.73 +UniRef50_P0A0K1 8.6698967236e-05 3.63051842324e-05 -20344588599.8 +UniRef50_UPI0003B6C3E5 6 phosphofructokinase 1.67033405045e-07 6.43430380783e-08 -41457361.2971 +UniRef50_G7M347 ABC transporter related protein 3.0220313273e-06 2.34322816515e-05 8239868517.82 +UniRef50_M9VKH9 Extracellular solute binding protein 5.52035673073e-06 0.00010488586884 40115076590.5 +UniRef50_K2FKB3 4.02524532308e-07 3.76860886875e-06 1358929553.12 +UniRef50_K4JSU1 1.54929083008e-06 9.18053031875e-07 -254838445.294 +UniRef50_U6BC07 Aconitate hydratase 0.000172458521589 5.13364833695e-05 -48898453163.6 +UniRef50_P16923 N anthranilate isomerase 1.15740233055e-07 5.52730526878e-05 22267683894.3 +UniRef50_I6SU46 Cell division protein DivIB 3.67299644346e-05 1.81595875336e-05 -7497089039.08 +UniRef50_UPI00036BA80E hypothetical protein 5.60114658805e-07 7.29454143619e-07 68364428.0486 +UniRef50_A6LX65 3.94994349159e-06 1.19919758711e-05 3246667158.44 +UniRef50_D3SBH0 Riboflavin synthase, alpha subunit 6.21272484125e-05 6.1738684013e-06 -22589066135.7 +UniRef50_U2YCQ7 4.4013913601e-07 1.62321060825e-06 477620471.263 +UniRef50_R7PTH2 4.03566941078e-06 2.44063392719e-06 -643935398.012 +UniRef50_Q2SCI9 1.66852351515e-07 2.16654082745e-07 20105570.0335 +UniRef50_UPI0003691CE3 hypothetical protein 4.72107510513e-08 1.03587452776e-07 22759966.3062 +UniRef50_F4FSV5 RelA SpoT domain protein 0.000102423799544 6.2712501834e-05 -16031938197.9 +UniRef50_B9DZ64 9.78788216567e-07 2.04843957368e-06 431831378.964 +UniRef50_A7FBW9 1.88425779309e-05 0.000139652676252 48772519198.8 +UniRef50_A7FBW8 1.57000498395e-05 8.33218854948e-05 27299764867.3 +UniRef50_P76046 2.9985575029e-05 5.64877565235e-06 -9825064554.49 +UniRef50_P76044 3.26001518145e-05 1.4471150023e-05 -7318900491.1 +UniRef50_C5N0D9 Glyoxalase family protein 0.000179814613733 2.07460814254e-05 -64217918483.1 +UniRef50_P03880 Intron encoded DNA endonuclease I AniI 1.96302400859e-06 7.40190271575e-07 -493672985.488 +UniRef50_Q2K6L3 sn glycerol 3 phosphate import ATP binding protein UgpC 1 1.90749312261e-07 4.13584427284e-07 89961270.4291 +UniRef50_C6STT6 2.36050906249e-05 8.77955758006e-06 -5985249619.93 +UniRef50_D2NPJ7 Protein containing PAS PAC domain 2.89985479906e-08 2.21211015129e-06 881348944.044 +UniRef50_A5CPE6 Thymidine kinase 1.94580406623e-06 4.75722127357e-05 18419941078.9 +UniRef50_A5UK48 Glutamine amidotransferase subunit PdxT 1.51583333931e-05 2.43427355675e-05 3707855863.09 +UniRef50_UPI000361F456 hypothetical protein 2.91252555585e-06 4.9840392167e-07 -974610528.322 +UniRef50_A6LQV8 Phosphomannomutase 1.00809362922e-05 4.42312223232e-05 13786889541.8 +UniRef50_O50236 Carbamoyl phosphate synthase large chain 1.94991240811e-07 1.5481229961e-07 -16220731.6139 +UniRef50_J8V402 6.17805349938e-07 7.320990373e-07 46141764.1293 +UniRef50_UPI000382615E hypothetical protein 3.56567611084e-08 4.69986108862e-07 175344087.509 +UniRef50_D8TJQ5 1.01875783796e-07 3.5862244884e-07 103651779.314 +UniRef50_H3VMS8 2.40948503526e-06 3.97181061602e-07 -812391807.913 +UniRef50_UPI0002484D08 glycerophosphoryl diester phosphodiesterase 1.12113579903e-08 6.02957402776e-06 2429686863.4 +UniRef50_R1FE37 1.22663424213e-06 3.06796173529e-07 -371349915.977 +UniRef50_UPI00039572EC molybdopterin guanine dinucleotide biosynthesis protein A 6.84918709221e-08 8.27068875096e-08 5738776.63424 +UniRef50_P31434 Alpha xylosidase 7.10594607545e-05 1.24080422324e-05 -23678297391.2 +UniRef50_J8V5R5 1.17750627813e-06 2.12403397037e-07 -389623876.241 +UniRef50_UPI00016C54C0 histidinol dehydrogenase 1.7086051979e-07 5.65303843146e-07 159241610.003 +UniRef50_Q4DRG1 MaoC like dehydratase, putative 2.02092077729e-07 1.13155281681e-07 -35904875.9418 +UniRef50_B3QY47 NADH quinone oxidoreductase subunit B 2 6.25436198249e-08 1.62873018128e-05 6550133982.69 +UniRef50_A3M2E1 DNA polymerase V component 1.51678867335e-05 0.000132586826657 47403466939.3 +UniRef50_Q47CM9 Phenylalanine tRNA ligase beta subunit 1.18528752683e-06 3.06482708079e-05 11894567902.0 +UniRef50_P44704 CDP diacylglycerol serine O phosphatidyltransferase 3.67129718611e-05 4.53412403041e-06 -12990995748.1 +UniRef50_Q1CA93 Leucyl phenylalanyl tRNA protein transferase 1.70733670721e-05 7.99414180825e-06 -3665394653.64 +UniRef50_UPI00037210F0 hypothetical protein, partial 6.78244562533e-08 7.81107243145e-08 4152692.64301 +UniRef50_UPI0003114778 hypothetical protein 1.05833445011e-07 1.13717107124e-07 3182731.13843 +UniRef50_Q3BY50 3.66750891684e-08 2.55397815315e-07 88301048.5752 +UniRef50_N6D480 9.23996744515e-05 2.33829655505e-05 -27862892313.6 +UniRef50_P0ADQ4 4.07021694859e-05 2.07743922445e-05 -8045088213.68 +UniRef50_A3M418 3.83234506454e-06 5.12967614181e-05 19161967335.8 +UniRef50_UPI000255A3BD acetyl CoA acetyltransferase, partial 1.18948978912e-06 3.72416874894e-06 1023281000.09 +UniRef50_D3QHV4 Transcription repressor of sporulation, septation and degradation PaiA 0.000124538539675 0.000103939553095 -8316063660.34 +UniRef50_F8I0C3 3.68724254049e-08 6.79816775513e-08 12559186.845 +UniRef50_UPI0002886B91 NAD dependent malic enzyme 1 2.57107897143e-07 2.2080164244e-07 -14657280.5514 +UniRef50_Q6CEK4 YALI0B14971p 1.27921083893e-08 3.9761792892e-07 155358906.092 +UniRef50_S5XJ53 1.63309455408e-06 1.61935132449e-06 -5548310.43387 +UniRef50_G8VB45 Exonuclease V subunit alpha 7.0208181432e-07 5.03767104597e-05 20054257160.4 +UniRef50_A3L1C1 4.40128622474e-06 1.00351627844e-05 2274465102.57 +UniRef50_UPI000477E357 hypothetical protein 5.33023002087e-08 8.92884565857e-08 14528052.9292 +UniRef50_UPI0003DE7F24 PREDICTED 4.84549121802e-08 5.82588949084e-08 3957988.13577 +UniRef50_D2ZNL5 7.0553989254e-05 7.32234273367e-06 -25527391639.8 +UniRef50_R3B8E7 3.5481001118e-07 5.7087317789e-07 87227351.794 +UniRef50_UPI0003731F30 hypothetical protein 3.09230035725e-08 2.14689072251e-06 854242133.98 +UniRef50_UPI00046581AB peptide ABC transporter permease 4.68831999283e-08 9.57363031865e-08 19722597.2803 +UniRef50_UPI000470EA3B orotidine 5 phosphate decarboxylase, partial 2.31907387926e-07 1.75210819596e-07 -22889100.38 +UniRef50_UPI0003779D2C hypothetical protein 4.59421782733e-07 1.02500716242e-07 -144093414.456 +UniRef50_W1XGP9 Branched chain amino acid transport system 5.00924052576e-07 1.19876242002e-06 281725912.377 +UniRef50_H0PS77 1.79797593136e-06 3.07967615435e-06 517438108.251 +UniRef50_Q4L3C5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000192114288008 2.83572001439e-05 -66110745896.1 +UniRef50_G0A952 Inner membrane translocator 2.51754082824e-06 2.86032303523e-05 10531112968.3 +UniRef50_A4XYG1 Protein RnfH 3.67391132005e-07 4.16432394374e-07 19798559.4223 +UniRef50_Q59801 Hyaluronate lyase 0.000183602992503 3.65940401754e-05 -59349318057.5 +UniRef50_P21507 ATP dependent RNA helicase SrmB 2.33325991696e-05 3.58059855331e-06 -7974125033.1 +UniRef50_UPI00046D65C0 hypothetical protein 4.20213290307e-07 3.20806108295e-07 -40131899.2415 +UniRef50_D6U054 Short chain dehydrogenase reductase SDR 4.93134509874e-08 1.73094039184e-07 49971742.4138 +UniRef50_P50205 Acetoacetyl CoA reductase 0.000152883076888 6.83420031243e-05 -34130268914.0 +UniRef50_P28721 Protein GltF 3.64575528263e-05 1.195018539e-05 -9893924973.25 +UniRef50_F2UKD5 7.36915143044e-08 2.19470278957e-07 58852676.197 +UniRef50_D3QJ79 Multimodular transpeptidase transglycosylase 0.00020232266713 4.57664506267e-05 -63203665763.1 +UniRef50_P72158 N5 carboxyaminoimidazole ribonucleotide synthase 9.57598683487e-06 6.1988622634e-08 -3840917828.17 +UniRef50_S3DKH9 1.30580479645e-06 4.2622482067e-08 -509962201.305 +UniRef50_O85674 Anthranilate 1,2 dioxygenase small subunit 5.3477181754e-05 9.53068634601e-05 16887155812.7 +UniRef50_Q7MYS8 Oligoribonuclease 8.16328159899e-07 7.82972890187e-07 -13465931.6979 +UniRef50_UPI000369E32A single stranded DNA binding protein 1.70068572342e-07 8.67826352611e-07 281693378.345 +UniRef50_Q168P4 GTP cyclohydrolase FolE2 0.000116537868542 2.77842197801e-05 -35830937134.9 +UniRef50_E3I2H2 NADH ubiquinone oxidoreductase 20 kDa subunit 1.62846859475e-05 4.48274859085e-06 -4764586936.96 +UniRef50_A3M2G1 5.00521725877e-06 6.26723211893e-05 23280917511.7 +UniRef50_W9T9K1 Sulfate transporter 1.17179153738e-05 5.15654955492e-06 -2648903898.09 +UniRef50_UPI000468F97A adenosylcobinamide kinase 6.21623501958e-07 2.98840681696e-07 -130311385.53 +UniRef50_H6VX70 Tyrosine recombinase XerC 2.58046204092e-06 5.40768208926e-05 20789711999.8 +UniRef50_K1E1R3 Exodeoxyribonuclease V subunit gamma 1.88493849747e-07 1.02497995773e-06 337699706.632 +UniRef50_Q5GWV2 2.01416007059e-05 1.02298592394e-07 -8090112173.11 +UniRef50_Q1HTP5 X2R 4.98852190603e-07 2.54160464958e-07 -98785052.348 +UniRef50_A0A018ZXW4 Molybdopterin guanine dinucleotide biosynthesis protein MobA 1.6314008624e-07 1.9308756249e-07 12090163.659 +UniRef50_C6BD53 MscS Mechanosensitive ion channel 6.98807652753e-06 2.08213893202e-06 -1980587209.93 +UniRef50_Q9HZ76 UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase 7.82575120573e-06 9.32760165831e-05 34497320725.5 +UniRef50_UPI00036DC1D7 MULTISPECIES 1.05941589764e-07 8.30658682949e-08 -9235209.47375 +UniRef50_P43505 Membrane fusion protein MtrC 5.09278897222e-06 1.20404363229e-05 2804850492.69 +UniRef50_A1B1U3 Magnesium transporter 7.07307148112e-05 2.2687688197e-05 -19395559398.4 +UniRef50_Q8DUY3 Putative two component membrane permease complex subunit SMU_747c 3.87047323499e-05 5.9095452334e-05 8231983879.85 +UniRef50_O85786 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 6.94937636196e-08 7.70800290866e-08 3062668.46297 +UniRef50_A0A020CZ26 0.000210461784723 5.55299514891e-05 -62547882304.0 +UniRef50_Q2CIE7 2.54243507904e-07 3.95407679884e-07 56989708.5075 +UniRef50_UPI0003C88714 PREDICTED 5.82509846771e-08 1.38944004386e-07 32576762.2712 +UniRef50_UPI00041F5BCB inositol monophosphatase 1.69274544343e-07 6.35805586309e-07 188344306.621 +UniRef50_T1BV79 Potassium transporting ATPase subunit B 2.37188003866e-07 2.45986548492e-05 9835023114.26 +UniRef50_F5M3E9 2.0153994224e-05 8.9040212621e-06 -4541752137.41 +UniRef50_UPI0004725E16 hypothetical protein 1.0976794078e-07 4.08059186099e-08 -27840814.6092 +UniRef50_E3IHD0 Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein 1.09099996778e-06 7.88430457683e-06 2742540433.9 +UniRef50_A4FA42 2.15557500101e-07 1.12897904313e-07 -41444938.5945 +UniRef50_T6N9U5 8.53968258333e-06 1.77013010107e-06 -2732951408.84 +UniRef50_M4YYU6 A G specific adenine glycosylase 3.97771338546e-05 1.25144344785e-05 -11006286289.1 +UniRef50_B5R8Z8 D amino acid dehydrogenase Alanine racemase fusion protein 3.09300441818e-05 8.79730768933e-06 -8935257321.24 +UniRef50_G7ZH30 7.60806220332e-08 5.25966197436e-08 -9480779.90543 +UniRef50_A4VT18 Mevalonate kinase 4.00837697981e-05 1.53019205453e-05 -10004736650.8 +UniRef50_P0AF19 N acetylglucosamine 6 phosphate deacetylase 2.83087753654e-05 2.35312115686e-06 -10478616115.7 +UniRef50_B9KUF9 2.26617868603e-07 1.96387671742e-07 -12204301.439 +UniRef50_Q7UFS3 GMP synthase [glutamine hydrolyzing] 0.000412571411158 0.000610338261949 79840904536.5 +UniRef50_H8FW24 2.3042972393e-07 1.75590035836e-07 -22139455.0422 +UniRef50_A6LW90 1.23630782379e-06 8.76527289091e-06 3039535588.39 +UniRef50_M5ABS1 Antiholin like protein LrgB 5.49715953097e-05 2.55176966193e-05 -11890900341.3 +UniRef50_G3Z6Q7 UPF0125 protein HMPREF1028_02272 1.97795416353e-07 9.65123544505e-07 309779781.51 +UniRef50_B0VLI0 3.31128060398e-06 7.49117790417e-05 28905999856.2 +UniRef50_N6W8Z6 Putative oxidoreductase 1.51383310707e-06 1.35550477381e-05 4861186108.85 +UniRef50_A6WEM4 2.8436482489e-08 3.31287153493e-07 122264532.28 +UniRef50_A5N6U5 Transcriptional regulator 4.86033462046e-06 3.83528188565e-06 -413826367.854 +UniRef50_Q8PNB5 Adenylosuccinate synthetase 2.00103022677e-05 7.69906449362e-06 -4970197765.28 +UniRef50_UPI00035FCD7D hypothetical protein 4.85293926949e-08 2.96587232849e-07 100143994.082 +UniRef50_Q16D47 3,5 bisphosphate nucleotidase 6.61194819128e-05 1.51661303362e-05 -20570493299.4 +UniRef50_G0DW29 Penicillin binding protein 1.89057975903e-06 4.9596214952e-05 19259350341.4 +UniRef50_Q5HNL5 Formamidopyrimidine DNA glycosylase 0.000180271665343 3.58042415733e-05 -58323271790.6 +UniRef50_C6E3P1 3.13611472904e-07 6.77750222451e-08 -99247191.8835 +UniRef50_E1S7F7 Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase 6.785248452e-07 2.14070425634e-05 8368356970.35 +UniRef50_UPI000379B136 hypothetical protein 6.06515050908e-08 7.8108707715e-08 7047686.92336 +UniRef50_E5QW86 1.07782489575e-05 8.31878042813e-06 -992917626.379 +UniRef50_Q3IV65 Capsular polysaccharide biosynthesis protein, putative 6.57103657571e-05 1.30880822469e-05 -21244261601.1 +UniRef50_T0K2V4 3.90142498159e-07 3.40263642946e-07 -20136705.9319 +UniRef50_Q56734 Aspartate semialdehyde dehydrogenase 0.000138164559658 2.20703876686e-05 -46868641867.7 +UniRef50_A0RKK5 Cell wall surface anchor family protein 3.03612921906e-08 2.23276804629e-06 889138633.2 +UniRef50_T1ZLK9 DNA repair protein radA 6.86882455541e-05 3.26756133696e-05 -14538741537.6 +UniRef50_UPI0004660A11 hypothetical protein 1.12856037578e-07 4.229914993e-07 125205491.687 +UniRef50_Q2NI31 Methionine tRNA ligase 3.07220756712e-05 7.15195859351e-06 -9515545502.13 +UniRef50_UPI00036BF67A hypothetical protein 3.95323398558e-06 4.96013099524e-07 -1395722496.57 +UniRef50_UPI0004249615 fructose 1,6 bisphosphatase 1.64181957988e-07 3.10426781458e-06 1186948739.22 +UniRef50_Q2RKK1 Xanthine phosphoribosyltransferase 4.86394466476e-07 6.64478940087e-07 71894887.339 +UniRef50_B8FB52 Sulfate adenylyltransferase 6.88008286142e-07 4.3482667566e-07 -102212523.039 +UniRef50_H9U2W8 Transposase 7.02229395936e-06 0.000123859094175 47168449996.0 +UniRef50_W5XCI5 N acetyl gamma glutamyl phosphate reductase 1.01003334328e-07 1.16240872642e-07 6151581.20298 +UniRef50_U6ECP8 1.78982268597e-06 4.02756036838e-07 -559975827.476 +UniRef50_Q3JPC5 4.76455084367e-07 3.69719291179e-05 14733670717.2 +UniRef50_UPI0004752042 formyltetrahydrofolate deformylase, partial 5.20083847201e-07 1.58032021469e-07 -146164764.924 +UniRef50_Q4ZWM4 DNA polymerase IV 4.26798686037e-08 1.40088563695e-07 39325085.5475 +UniRef50_Q6A6W0 1.19457591412e-06 5.40956641899e-05 21356818506.3 +UniRef50_Q0BQG5 Nucleoside diphosphate kinase 1.87483359791e-06 1.90110559529e-06 10606327.736 +UniRef50_J9QTZ5 Prophage antirepressor 8.41461234527e-08 1.53268392262e-07 27905508.1439 +UniRef50_G8RG67 0.000146805635927 3.74089903989e-05 -44164768247.5 +UniRef50_A5UJT9 Desulfoferrodoxin 0.000133420144443 1.81733357043e-05 -46526550925.3 +UniRef50_I1F5H5 1.35354130867e-07 2.23027702495e-07 35394896.7419 +UniRef50_D2VS44 Predicted protein 1.5557643085e-07 1.12936181256e-07 -17214392.0158 +UniRef50_UPI0002002642 GAF domain GGDEF domain EAL domain containing protein 3.03044404226e-08 7.44145217387e-07 288186281.472 +UniRef50_Q6A9G3 Conjugal transfer protein 3.04424184557e-06 5.83610289954e-06 1127108567.48 +UniRef50_C4LJM5 Peptide chain release factor 1 4.41195532936e-06 7.49346034408e-05 28470858452.8 +UniRef50_P56259 3.1632904094e-06 4.53171414615e-06 552449454.974 +UniRef50_W9H1I0 1.11691703264e-06 8.05677432011e-07 -125651246.113 +UniRef50_E3A0A4 2,4 dienoyl CoA reductase FadH2 8.1354738977e-07 2.78616464193e-06 796369791.433 +UniRef50_UPI0002EF5C1B accessory secretory protein Asp2 4.1773836899e-07 1.15734828939e-06 298589600.9 +UniRef50_H4F217 7.70793398961e-07 8.49963256006e-08 -276864694.192 +UniRef50_UPI00030A8FAF membrane protein 1.42639908964e-06 6.21053009884e-07 -325128095.105 +UniRef50_A9WDI1 Dihydroorotate dehydrogenase 4.41362597166e-08 1.54882662299e-07 44709681.7335 +UniRef50_P37464 Serine tRNA ligase 0.00032221307589 0.00017607073002 -58999458396.0 +UniRef50_UPI0003622EE4 hypothetical protein 1.31106623149e-07 7.30551405241e-08 -23436095.9075 +UniRef50_UPI00047159CC hypothetical protein 1.03443648182e-06 3.07649440946e-07 -293412847.081 +UniRef50_A8WTI8 Elongation factor G, mitochondrial 5.12331633824e-08 9.13898021517e-08 16211727.8485 +UniRef50_B0C079 Pyridoxine pyridoxamine 5 phosphate oxidase 9.71765560356e-08 4.4750773437e-06 1767412270.86 +UniRef50_UPI0002DCCC59 hypothetical protein 1.41796347298e-06 2.77973911559e-07 -460227775.19 +UniRef50_UPI000477E15D hypothetical protein 4.22602557826e-07 1.35597867936e-06 376815394.076 +UniRef50_F2RAT0 UDP galactose lipid carrier transferase 2.14075229968e-06 8.69444584582e-06 2645806507.44 +UniRef50_Q2YYV8 Imidazolonepropionase 0.000151904070268 4.33615085942e-05 -43819964114.8 +UniRef50_M1MXQ5 Amylopullulanase AmyB 2.43656894405e-06 1.50982077313e-05 5111658954.17 +UniRef50_Q9RRU0 Na+ H+ antiporter, putative 2.05246765242e-06 0.000217040660457 86793371637.2 +UniRef50_B9KNM4 Urea amidolyase related protein 0.000122818941539 7.84326980384e-06 -46417089589.6 +UniRef50_Q72NX7 Polyribonucleotide nucleotidyltransferase 2.362651744e-08 5.65294447998e-07 218677990.579 +UniRef50_B6ISK5 Acyl CoA dehydrogenase, putative 4.0931767137e-06 0.00051379674755 2.05773586313e+11 +UniRef50_E3A0N8 Protease subunit HflC 3.08571653009e-06 2.20385600888e-06 -356017914.058 +UniRef50_A6LU25 6.15466286172e-06 9.02457376142e-06 1158618247.98 +UniRef50_UPI00036B07DE hypothetical protein, partial 3.03854375534e-08 3.42147649177e-07 125862230.585 +UniRef50_O25758 Probable chromosome partitioning protein ParB 1.38104630066e-06 2.94753368337e-05 11342009843.9 +UniRef50_UPI00024850D8 hemolysin type calcium binding protein, partial 3.03287245114e-08 2.7039357176e-08 -1327957.95838 +UniRef50_UPI000466B878 potassium transporter KefB 2.1823675817e-07 6.24224584607e-07 163902267.563 +UniRef50_B0K1N2 N acetylmuramic acid 6 phosphate etherase 8.47771690075e-08 1.08135324425e-07 9429973.97884 +UniRef50_UPI0003A7C1AD 30S ribosomal protein S15 2.68621455664e-06 6.81394152462e-07 -809370599.08 +UniRef50_A1B7K4 TRAP dicarboxylate transporter DctP subunit 0.000125587248754 2.43415027228e-05 -40874150097.7 +UniRef50_X2MU03 Glutamate ammonia ligase adenylyltransferase 5.69363059183e-06 6.36687111458e-07 -2041550138.7 +UniRef50_A7HA47 LigA 3.83410873907e-07 4.17899137682e-06 1532322426.04 +UniRef50_M9S6C0 7.1500184404e-06 9.73849677425e-06 1045000467.58 +UniRef50_Q3JNY9 4.17877728475e-07 6.3191877006e-07 86410995.0668 +UniRef50_UPI0003725615 hypothetical protein 7.5418105732e-07 4.14632317031e-07 -137079993.186 +UniRef50_P77588 3.21753592959e-05 1.01233745279e-05 -8902656859.13 +UniRef50_B2TL20 [Fe] hydrogenase 6.53821901209e-06 1.35570025341e-06 -2092246419.54 +UniRef50_UPI00047C43F4 hypothetical protein 4.12212797885e-05 6.32698803512e-05 8901290613.92 +UniRef50_UPI0004719EA1 aminotransferase, partial 3.53565899653e-07 4.99914290137e-07 59082641.1351 +UniRef50_UPI00038F9F8C Spermidine putrescine binding periplasmic protein 2 9.42697870372e-07 1.64791741151e-06 284705782.774 +UniRef50_B6IYF9 NAD dependent epimerase 0.000108325900845 2.54087885557e-05 -33474655738.6 +UniRef50_P57260 NADH quinone oxidoreductase subunit J 5.38774265065e-07 1.15264928635e-06 247828879.186 +UniRef50_UPI00036191C4 hypothetical protein 1.87487897527e-07 2.15882252395e-07 11463149.4981 +UniRef50_J9P5P7 1.73669516433e-07 1.32026735168e-07 -16811701.8111 +UniRef50_UPI0002D709E2 hypothetical protein 2.3756107776e-08 4.47033358192e-07 170882220.189 +UniRef50_UPI00035DB1EC 50S ribosomal protein L3, partial 2.95061011445e-07 6.16587413941e-07 129804154.26 +UniRef50_F2MUA2 Metallo beta lactamase 5.73624024849e-05 2.08747442115e-05 -14730515398.9 +UniRef50_UPI0004708144 hypothetical protein, partial 2.36668896684e-07 2.42044837703e-06 881618574.205 +UniRef50_UPI0003AF4F98 PREDICTED 1.08085086159e-07 5.84974476085e-08 -20019138.1916 +UniRef50_Q0HP98 Shikimate dehydrogenase 2.47599250204e-05 6.19849234165e-06 -7493478146.82 +UniRef50_UPI00026CDAF4 flagellar biosynthetic protein FliQ 1.69861907655e-05 9.58487216093e-07 -6470580604.93 +UniRef50_A3TWT0 7.60769161291e-06 2.25618165918e-06 -2160470238.73 +UniRef50_B5E1P6 Aspartyl glutamyl tRNA amidotransferase subunit B 7.74318969066e-05 4.67991271449e-05 -12366825059.2 +UniRef50_D5MJP7 3.67495176206e-06 6.62740410904e-06 1191941243.14 +UniRef50_UPI00047D5D86 hypothetical protein 4.53740360476e-07 1.1708792494e-06 289517769.742 +UniRef50_A5FEC6 N acetyl gamma glutamyl phosphate reductase 2.6316477576e-07 2.80311982482e-05 11210295864.9 +UniRef50_UPI0003777642 hypothetical protein 4.33339445031e-08 1.81372341649e-07 55727794.8495 +UniRef50_UPI0003B4B360 cation 8.30870661117e-07 1.60297229232e-06 311706903.269 +UniRef50_U3SQI4 Putative glutathione reductase 7.05520332116e-05 1.4877919812e-05 -22476322777.6 +UniRef50_V8N2X3 Gar1 6.3128562812e-07 2.33363571585e-06 687259620.601 +UniRef50_Q8CR31 N succinyldiaminopimelate aminotransferase 0.000250390556123 8.66522052559e-05 -66103181540.5 +UniRef50_UPI0003B58990 tRNA methyltransferase 8.91109431823e-08 6.3789094402e-08 -10222741.0866 +UniRef50_UPI00042BDC6C PREDICTED 2.72115544825e-07 3.96644874722e-06 1491447648.38 +UniRef50_Q65U21 Lipid A export ATP binding permease protein MsbA 2.91514674987e-05 4.91303313492e-06 -9785353391.7 +UniRef50_C4UBB8 sn glycerol 3 phosphate binding periplasmic protein ugpB 3.35470966465e-07 1.73339725023e-07 -65454371.7442 +UniRef50_M4X3Z5 Nitrous oxide reductase 8.14688529057e-06 4.35432614899e-06 -1531102665.39 +UniRef50_Q9RXJ6 30S ribosomal protein S3 1.51398123869e-06 0.000101164858475 40230281994.1 +UniRef50_X1GQT1 Marine sediment metagenome DNA, contig 3.59423430675e-07 2.68583301737e-07 -36673274.786 +UniRef50_Q97KH7 Phosphoribosyl AMP cyclohydrolase 2.6292623538e-07 1.81208014558e-07 -32990648.5412 +UniRef50_Q7URW6 DNA directed RNA polymerase subunit beta 4.31090170609e-08 4.23388298992e-08 -310934.008438 +UniRef50_D9VIN0 Predicted protein 1.22152884961e-06 8.5310555185e-07 -148737006.368 +UniRef50_M8UUK1 1.30018136227e-06 1.46409034395e-06 66172067.2936 +UniRef50_UPI00042BD38E PREDICTED 2.48287255425e-07 1.79204354384e-07 -27889614.8928 +UniRef50_Q9K005 Orotidine 5 phosphate decarboxylase 6.26876905465e-06 3.89737484814e-05 13203401529.8 +UniRef50_B4RNK3 TspB3 1.24995360549e-06 5.6296372884e-05 22222914958.3 +UniRef50_UPI00040ED66A riboflavin biosynthesis protein RibD 4.14196120762e-08 3.30863421451e-07 116852017.72 +UniRef50_B0TFC9 Bifunctional protein FolD 5.98370234284e-08 4.95828400011e-08 -4139739.68258 +UniRef50_A5UMF6 Shikimate dehydrogenase 3.92696061352e-05 2.33615403594e-05 -6422281367.61 +UniRef50_UPI0003457810 hypothetical protein 4.16954027244e-07 1.69769539017e-07 -99791411.192 +UniRef50_UPI00016B2503 excinuclease ABC, B subunit, partial 1.81333147499e-06 3.80083682114e-07 -578619721.914 +UniRef50_W4UC70 8.95941775374e-07 7.52451400967e-06 2676035952.72 +UniRef50_W1GWA4 GTP binding protein TypA BipA 2.24634476511e-07 2.4377617384e-07 7727738.10676 +UniRef50_UPI000372735A hypothetical protein, partial 6.96153010697e-07 1.37299685561e-06 273250165.999 +UniRef50_A0A059LBF3 2.88405505015e-06 1.66658928276e-06 -491505870.28 +UniRef50_B7V938 4.40433163965e-06 2.92392777421e-06 -597657207.076 +UniRef50_UPI00036DDC82 hypothetical protein 1.62964196266e-07 6.67797237896e-07 203807293.904 +UniRef50_P76542 Putative prophage CPZ 55 integrase 3.60295403007e-05 1.74399629052e-06 -13841494847.9 +UniRef50_A4WCP1 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 6.38327903825e-07 5.68908654031e-07 -28025403.0118 +UniRef50_A3SZC0 1.16471448102e-05 2.96774096314e-06 -3503981841.32 +UniRef50_C4LEY6 Beta hexosaminidase 2.53338068237e-07 3.43735801228e-07 36494674.1134 +UniRef50_UPI000366F960 hypothetical protein 2.8388464448e-06 4.56541799664e-06 697038122.893 +UniRef50_S2XRA0 Heme A synthase 7.79347380956e-05 2.56761225037e-05 -21097444399.8 +UniRef50_A8HVZ9 Predicted protein 6.82698715631e-08 1.82982920464e-07 46311065.5287 +UniRef50_X1CFP7 Marine sediment metagenome DNA, contig 6.61209206847e-08 1.07737059726e-07 16800946.0184 +UniRef50_UPI0004778F7D hypothetical protein 6.36857025517e-08 3.40418260908e-08 -11967596.6985 +UniRef50_Q3JR20 2.82542739658e-08 8.4325648074e-08 22636701.8006 +UniRef50_UPI00041694C7 Rrf2 family transcriptional regulator 2.44891098578e-07 4.51420239594e-07 83378348.6257 +UniRef50_A5FHP3 Malate dehydrogenase 1.71895566326e-07 2.77028828526e-07 42443588.0803 +UniRef50_Q69PS6 Thioredoxin reductase NTRA 5.36994816989e-07 2.05194235429e-07 -133951966.427 +UniRef50_UPI0002628AE7 methionyl tRNA synthetase 2.53490138657e-08 1.47520354114e-07 49322069.2691 +UniRef50_B0VUW8 Membrane bound lytic murein transglycosylase B 1.13132663991e-06 7.19134187582e-05 28575599182.1 +UniRef50_K9EE72 9.98553725587e-08 5.21859029268e-07 170368054.781 +UniRef50_G1L4H7 2.44881488766e-07 2.7374238541e-07 11651498.1382 +UniRef50_K7RS07 Iojap like protein 4.13305827211e-06 9.1109141766e-05 35113312223.1 +UniRef50_UPI000466C5B8 hypothetical protein, partial 8.19284072046e-06 1.44484648222e-06 -2724248081.18 +UniRef50_F3U4V8 1.5165396145e-05 9.74442904323e-06 -2188510941.73 +UniRef50_UPI000474972D hypothetical protein, partial 2.42452542185e-07 8.49097927619e-07 244910186.476 +UniRef50_I6ST97 Transcriptional regulator 4.13539053031e-05 2.18142416353e-05 -7888402001.33 +UniRef50_UPI00037FD271 hypothetical protein 5.32169847099e-07 7.50401192001e-08 -184548880.765 +UniRef50_UPI0002378711 hypothetical protein 1.59430938622e-07 3.17697038061e-07 63893966.487 +UniRef50_O27273 L sulfolactate dehydrogenase 1.84100770609e-05 5.36565705238e-06 -5266192430.47 +UniRef50_G2MPZ1 3.56813724097e-07 7.6070867585e-08 -113339336.276 +UniRef50_R0LYS9 Excinuclease ABC subunit C 5.41931538964e-07 2.98715491098e-07 -98189303.12 +UniRef50_A6LX48 Beta lactamase domain protein 1.51398123869e-06 4.44085270977e-06 1181613929.63 +UniRef50_Q4L686 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 9.76213551725e-05 1.11453922216e-05 -34911407422.7 +UniRef50_M1MPJ0 1.67029198609e-06 5.92774535802e-06 1718786171.08 +UniRef50_V1IJP0 Anaerobic C4 dicarboxylate transporter 4.16395654823e-06 2.06515178457e-06 -847313238.32 +UniRef50_B1I0S9 Bifunctional enzyme IspD IspF 5.08863326154e-08 1.76924978559e-07 50883348.0357 +UniRef50_UPI000376EAF4 hypothetical protein 5.76886044655e-08 1.17422421785e-07 24115275.0683 +UniRef50_Q6MQ03 Aminomethyltransferase 4.14340012683e-07 2.09009880117e-07 -82894294.201 +UniRef50_X5KCP0 DNA binding response regulator VncR 8.20621714897e-06 4.36262695167e-05 14299509793.8 +UniRef50_M4EC72 1.06049596924e-07 2.84454720289e-07 72024337.5795 +UniRef50_D0LWP0 ABC transporter related protein 6.3254472526e-06 9.15520564698e-06 1142408188.85 +UniRef50_G7M0T0 NADPH dependent FMN reductase 6.00958204098e-05 7.34483669639e-05 5390586898.06 +UniRef50_A0A024E7D7 Peptidase M42 4.36857647962e-06 4.54467678334e-06 71093853.6055 +UniRef50_UPI0003B54765 enoyl CoA hydratase 7.19413366425e-08 1.8051375552e-07 43832017.8345 +UniRef50_D5ALC3 4.98816405951e-07 1.17670762799e-06 273673004.998 +UniRef50_A0A059LAL0 2.27943356578e-06 3.36297561803e-07 -784467849.767 +UniRef50_G5JVU3 GBS Bsp like repeat protein 1.1433681447e-05 1.28448740433e-05 569715768.407 +UniRef50_A1WZ50 4 hydroxy tetrahydrodipicolinate synthase 1.81250372922e-05 2.60895492644e-07 -7211973262.17 +UniRef50_Q8R7Y4 Energy coupling factor transporter ATP binding protein EcfA1 1.54438136513e-06 1.93935043895e-05 7205909998.32 +UniRef50_B4RP36 CadB 0.000601506131513 0.000122786966974 -1.93264801269e+11 +UniRef50_UPI00031DDA32 hypothetical protein 1.44664281278e-08 3.92809243585e-06 1579978844.91 +UniRef50_R9ZL92 4.90907633022e-06 5.53918706303e-06 254383435.164 +UniRef50_D3QDJ7 Predicted ring cleavage extradiol dioxygenase 0.000227593006241 5.93385838246e-05 -67926375043.3 +UniRef50_F6CD95 Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific 0.000100075344918 3.45170927419e-05 -26466670893.7 +UniRef50_D7CSB0 ABC transporter related protein 6.65368958018e-07 9.55728395314e-05 38315310516.1 +UniRef50_P52143 2.99116675964e-05 7.59502413463e-06 -9009502821.54 +UniRef50_UPI00036FBDE9 helicase SNF2 4.01061715854e-08 3.82990457936e-06 1529988123.27 +UniRef50_A0QX20 Aconitate hydratase 1.53353377698e-07 1.04779051713e-06 361095249.167 +UniRef50_O59439 30S ribosomal protein S5 3.0588302176e-05 5.25786418738e-06 -10226208655.4 +UniRef50_UPI00036C31D6 succinylarginine dihydrolase, partial 3.34293500994e-07 1.10365601957e-06 310601089.889 +UniRef50_Q59086 Quinate shikimate dehydrogenase 1.06972992731e-06 5.91891734488e-05 23463532555.4 +UniRef50_UPI0003B4E02A HNH endonuclease 5.89296819748e-06 9.66429109124e-07 -1988904285.4 +UniRef50_V4ZHB5 1.9544232849e-08 1.9442325331e-07 70600806.567 +UniRef50_Q9RZD4 3.77343172071e-06 7.05571253511e-05 26961396646.7 +UniRef50_V2VFK5 Methionine biosynthesis protein MetW 1.93914035367e-06 6.88358372877e-05 27007017467.0 +UniRef50_F6DMK6 4.51885396252e-07 6.79195222504e-07 91767766.2632 +UniRef50_Q2G2M4 Mini ribonuclease 3 4.80663734947e-05 4.71820927473e-05 -356994989.07 +UniRef50_A3JQ23 1.29608316484e-07 1.96164124734e-07 26869396.5221 +UniRef50_C5AYY6 ABC family transporter, periplasmic protein 5.68360251346e-06 2.99188066121e-06 -1086681142.89 +UniRef50_J1K243 1.16659721542e-07 1.8035559039e-07 25714803.8901 +UniRef50_UPI000287B619 UBA THIF type NAD FAD binding protein 6.68116794457e-07 1.72557420262e-07 -200063400.56 +UniRef50_C5WHW2 Arginine repressor 4.16717736112e-05 7.67895536374e-06 -13723317865.3 +UniRef50_UPI0003F95C37 PTS system cellobiose specific transporter subunit IIA 3.88116023515e-07 2.90294954126e-07 -39491566.1118 +UniRef50_U5MQ56 Serine threonine protein phosphatase 1.28650114592e-06 1.83399075822e-05 6884669447.16 +UniRef50_B0YLW6 Cysteine desulfurase, mitosomal 1.21077993915e-05 0.000132257090831 48505743351.9 +UniRef50_UPI000476C43C cell division protein FtsZ 1.34343999424e-07 3.01403834785e-07 67444105.5899 +UniRef50_D3HAC9 Single stranded DNA specific exonuclease 3.57539021211e-05 3.63865811261e-05 255420278.163 +UniRef50_U6HVX7 Heat shock 70 kDa protein, mitochondrial, putative 8.06800389116e-08 2.53330721822e-08 -22344249.6523 +UniRef50_W5N2Q1 3.01489705002e-07 3.74161376496e-06 1388820298.08 +UniRef50_UPI00047E91BA ferredoxin 3.95305467569e-07 3.77678613216e-06 1365145239.73 +UniRef50_G7MC40 Methyl accepting chemotaxis sensory transducer with Cache sensor 4.01476229602e-06 1.32896834504e-05 3744399486.1 +UniRef50_P15038 Helicase IV 3.47264656256e-05 7.55643951553e-06 -10968872954.4 +UniRef50_UPI0003787F1C hypothetical protein 8.38464440454e-08 1.00402503308e-06 371487388.255 +UniRef50_O26663 Succinyl CoA ligase [ADP forming] subunit alpha 2.50018353435e-07 5.31228835388e-07 113528122.405 +UniRef50_G0DVB6 Alpha galactosidase 1.40046063163e-06 6.54373297158e-05 25852469870.0 +UniRef50_UPI000472DA74 membrane protein 1.44429780783e-06 1.52293026922e-06 31744889.592 +UniRef50_K0HCK8 ComE operon protein 3 3.57633900494e-06 6.91330143899e-05 26466034323.8 +UniRef50_UPI0003B6E09E ABC transporter 3.05554356883e-07 1.685337575e-07 -55316897.4028 +UniRef50_Q5P3C5 Crossover junction endodeoxyribonuclease RuvC 6.72973679377e-05 3.24440790271e-05 -14070700431.2 +UniRef50_Q27580 Adenosylhomocysteinase 1.47056985734e-05 8.78137630401e-05 29514622762.0 +UniRef50_I5C553 Bacteriophage replication gene A protein 1.4377790448e-06 2.31459564019e-06 353981619.309 +UniRef50_UPI000248C2C2 electron transfer flavoprotein, alpha subunit FixB family protein 7.92925169843e-08 6.58521061466e-08 -5426058.78757 +UniRef50_UPI0002E17ECF hypothetical protein 1.80025876165e-07 1.2444170816e-07 -22440010.7181 +UniRef50_X7YY04 1.26007477712e-07 1.78320725581e-06 669031886.547 +UniRef50_F3SAU0 3.69781082124e-06 1.60367720189e-06 -845427440.041 +UniRef50_Q44472 Putative hydroxypyruvate reductase 2.21723287586e-06 3.58481974484e-06 552111601.185 +UniRef50_Z4XCQ6 Putative cross wall targeting lipoprotein signal 1.1687222984e-05 3.99058474063e-06 -3107227307.22 +UniRef50_A3PHP4 Putative ECF RNA polymerase sigma factor protein 2.09271500155e-05 2.041949508e-05 -204946527.088 +UniRef50_Q6F2A0 Serine tRNA ligase 4.55409117694e-08 5.01428674969e-08 1857865.99954 +UniRef50_Q029K6 Queuine tRNA ribosyltransferase 5.11012980515e-08 2.66600471668e-07 86999660.861 +UniRef50_A5UM57 Predicted deacylase 2.62030114659e-05 3.1753989484e-05 2240997944.07 +UniRef50_A6QBY0 3 oxoacyl [acyl carrier protein] synthase 3 2.3313351618e-06 5.25262503571e-05 20264303225.2 +UniRef50_A6LXB6 Methyl accepting chemotaxis sensory transducer 3.88869115435e-06 1.82248306777e-05 5787675449.81 +UniRef50_R7MK20 PTS system fructose specific IIABC component 3.28898923433e-07 3.22523933261e-05 12887906435.7 +UniRef50_Q5L925 GTP cyclohydrolase 1 4.14401765163e-07 5.01032910244e-07 34974056.3529 +UniRef50_P0AAE6 Putative arginine ornithine antiporter 3.21731849906e-05 1.18887122218e-05 -8189090575.24 +UniRef50_A3PM57 OmpA domain protein 2.05159269046e-05 5.06257208899e-06 -6238708973.05 +UniRef50_N8JY23 8.14371038283e-06 1.95905694112e-06 -2496820488.65 +UniRef50_P0A201 Curli production assembly transport component CsgE 2.94910928794e-06 4.57855356899e-06 657826651.79 +UniRef50_UPI00047B3E5B hypothetical protein 2.88526552427e-08 3.8645633795e-08 3953545.61492 +UniRef50_UPI00035D0534 hypothetical protein 1.38642134921e-07 9.04969157907e-07 309375623.07 +UniRef50_A5UYT7 PUCC protein 2.52927104903e-07 7.46671855865e-08 -71965716.9235 +UniRef50_Q8XJR2 Putative zinc metalloprotease CPE1693 1.15674971054e-06 1.90739236163e-05 7233382974.22 +UniRef50_Q9SEY5 Probable acyl activating enzyme 2 2.74732972388e-07 2.49179190056e-07 -10316375.5076 +UniRef50_W4SG00 2.22444323188e-07 3.56667229583e-07 54187434.4119 +UniRef50_A5UNX6 Predicted universal stress protein, UspA 2.67720559474e-06 4.18888943548e-06 610285316.954 +UniRef50_D6EFB5 Regulatory protein 1.78666647148e-06 1.77787487498e-07 -649524188.998 +UniRef50_Q94522 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 3.58557555352e-07 3.31760241465e-07 -10818404.4562 +UniRef50_Q8DX72 Transcriptional regulator, Cro CI family 3.16034781363e-06 1.76133223777e-06 -564799755.826 +UniRef50_Q53599 Protein map 4.10859895788e-06 7.51760810916e-07 -1355196752.96 +UniRef50_P06576 ATP synthase subunit beta, mitochondrial 2.10459577151e-07 6.5573744164e-08 -58492188.726 +UniRef50_UPI00021A56D7 PREDICTED 1.60165382243e-06 5.30646424894e-07 -432378829.126 +UniRef50_P44910 GTP binding protein TypA BipA homolog 2.77243939937e-05 8.62394085157e-05 23623229422.5 +UniRef50_T0IMD9 1.22010289975e-07 1.61676746888e-07 16013835.4179 +UniRef50_A7HYI4 50S ribosomal protein L9 8.4537481466e-05 3.12428523868e-05 -21515695757.9 +UniRef50_B9L2J1 Acetaldehyde dehydrogenase 3.183070885e-05 8.5277936566e-06 -9407672822.5 +UniRef50_UPI0003B61C67 50S ribosomal protein L4 1.53808126387e-07 8.25228664921e-07 271060710.663 +UniRef50_A6LZH7 Transcriptional regulator, MarR family 5.01087595826e-06 1.99220938814e-05 6019841656.78 +UniRef50_Q2FF13 Low molecular weight protein tyrosine phosphatase PtpB 2.82003811312e-05 1.46321569137e-05 -5477658617.44 +UniRef50_Q5HHD1 Putative peptidyl prolyl cis trans isomerase 7.82183758467e-08 2.44340854826e-06 954856296.749 +UniRef50_UPI00040BC9E5 butanediol dehydrogenase 3.31628385514e-07 3.9065104171e-07 23828170.5958 +UniRef50_A1R669 Oxidoreductase family, NAD binding Rossmann fold domain protein 1.00040456404e-06 5.55578241785e-05 22025499793.2 +UniRef50_UPI00039B5846 hypothetical protein 1.99663654005e-07 2.87625972349e-07 35511467.3345 +UniRef50_F2MM74 Cytidine deaminase 2.18789767709e-05 4.12203269675e-05 7808340419.42 +UniRef50_UPI00022CE1AC 1.44801159207e-08 1.4950238736e-07 54510147.8895 +UniRef50_N9Z7F0 YhgE Pip domain containing protein 2.02627359004e-06 8.46011625188e-06 2597421234.71 +UniRef50_F5YEL5 Nitrogenase 1.72041329329e-06 2.7447804323e-06 413549584.417 +UniRef50_F0RQS6 4.07036361602e-07 1.75951169409e-06 546010888.465 +UniRef50_P45799 ADP compounds hydrolase NudE 5.05668406772e-05 3.28738447346e-06 -19087296653.6 +UniRef50_O26664 4.42429830978e-05 1.17420219928e-05 -13121036829.7 +UniRef50_UPI0000164CEE putative transposase 7.43361581767e-07 0.00124709122894 5.03165928461e+11 +UniRef50_UPI0004415ED9 GTP binding protein Obg CgtA 3.32974925147e-08 1.62329367688e-06 641900971.077 +UniRef50_UPI00038219EB hypothetical protein 2.55697695808e-06 4.73665301161e-06 879961970.443 +UniRef50_A0A023UVB3 MFS transporter 2.22866963081e-06 1.51186026547e-06 -289384737.028 +UniRef50_Q93PN3 Ferric hydroxamate receptor 1 5.87358546412e-05 1.19907596136e-05 -18871568489.5 +UniRef50_UPI000466770B BCCT transporter 7.18521343554e-07 2.38078511347e-07 -193960667.059 +UniRef50_L2ZQX2 Melibiose carrier protein 2.7949020284e-05 1.12097381491e-05 -6757853611.95 +UniRef50_P37746 Putative O antigen transporter 3.6819077642e-05 5.18282303339e-06 -12771944206.0 +UniRef50_UPI0004718772 30S ribosomal protein S2 2.26820062065e-07 1.81507737684e-07 -18293141.3974 +UniRef50_L1KZ53 1.89982943189e-07 4.41975583678e-06 1707611222.29 +UniRef50_E1M0K4 N acetyl glucosamine matabolism 2.15832256713e-07 1.64239543469e-07 -20828611.4504 +UniRef50_H8XGR9 0.000120099486241 1.63145268247e-05 -41899261700.9 +UniRef50_UPI0002064BBF PREDICTED 4.39544944375e-08 8.51102350421e-08 16615077.5198 +UniRef50_U5UMZ1 N acetylglucosamine 6 phosphate deacetylase 0.000253303677845 3.91479829046e-05 -86457282033.2 +UniRef50_Q6A9W9 Cation transporting P type ATPase A 1.31223579037e-06 6.46341304687e-05 25563825928.7 +UniRef50_F4M600 1.95046875892e-05 8.49499201307e-06 -4444749208.23 +UniRef50_UPI00046BAD61 PREDICTED 3.55781656944e-08 3.84097047477e-08 1143127.06271 +UniRef50_UPI0003A27C90 hypothetical protein 8.11993465715e-07 1.3815079482e-07 -272038555.22 +UniRef50_UPI00037AE98E hypothetical protein 2.62055422881e-07 7.08113241508e-07 180079015.125 +UniRef50_P42778 Aminopeptidase T 1.04374006137e-06 6.03549396929e-07 -177710372.982 +UniRef50_M4YX89 Stage 0 sporulation protein 5.49170061236e-05 4.16064540081e-05 -5373633227.87 +UniRef50_R9ZFL5 ABC transporter permease 8.1882291189e-06 1.17060013925e-05 1420167834.77 +UniRef50_UPI000428106D hypothetical protein 5.37267293737e-08 3.62345242764e-08 -7061817.85127 +UniRef50_A0A029PSG2 2.72482044463e-07 4.64456117212e-07 77502288.9556 +UniRef50_A0A024IS11 Plasmid partitioning protein 1.55161686285e-06 2.61026807106e-07 -521027042.823 +UniRef50_P9WQK2 2.91735582738e-05 0.000178384257432 60238190271.3 +UniRef50_Q7M8H7 Valine tRNA ligase 9.74505257933e-07 3.39688354859e-05 13320215999.0 +UniRef50_A6LZT7 9.76256867724e-06 1.50291410778e-05 2126179906.22 +UniRef50_W7G027 8.65801201392e-07 3.67742887112e-07 -201072253.338 +UniRef50_D5AM27 Pseudouridine synthase 7.36051960925e-05 2.13257429764e-05 -21105856764.0 +UniRef50_P76561 Esterase YpfH 2.25488975585e-05 1.18454319802e-05 -4321120400.25 +UniRef50_UPI00021974F8 DeoR family transcriptional regulator 1.34285385325e-07 3.15364545099e-07 73103878.8919 +UniRef50_D2QMM0 2.44558858853e-07 1.56756003057e-06 534111808.073 +UniRef50_UPI00016C4288 CheA Signal Transduction Histidine Kinases , partial 3.47015662212e-08 1.88282300538e-07 62002427.0913 +UniRef50_UPI00046451D1 polyamine ABC transporter ATPase 7.70399117753e-07 1.91074257509e-07 -233880555.196 +UniRef50_R5ELQ2 Topology modulation protein 1.84657547031e-07 3.22028087596e-07 55458172.9522 +UniRef50_P25857 Glyceraldehyde 3 phosphate dehydrogenase GAPB, chloroplastic 3.95322378677e-07 1.66939328316e-07 -92201040.0059 +UniRef50_Q67TG7 4.67716271118e-08 1.03796425551e-07 23021610.9029 +UniRef50_W4UAM7 3.51049601379e-07 3.42681357451e-06 1241723659.82 +UniRef50_UPI0003B31F76 hypothetical protein 1.83619984512e-07 3.53820842673e-07 68712175.039 +UniRef50_E3CUZ5 NLPA lipoprotein 3.80733402177e-07 7.63512111011e-07 154532461.979 +UniRef50_UPI0004758E9D hypothetical protein, partial 4.56925779047e-06 2.03392862809e-06 -1023543494.84 +UniRef50_G8V940 MutT Nudix family protein 1.24906335495e-05 9.67047615812e-05 33998276910.0 +UniRef50_UPI00045E611A cytidine deaminase 3.52740427485e-07 3.12633425969e-07 -16191688.6803 +UniRef50_UPI000349A3D9 hypothetical protein 4.99171129157e-08 2.22797850888e-07 69794075.4045 +UniRef50_UPI0003B40D78 sugar ABC transporter, partial 2.90286549519e-07 5.67016168015e-08 -94301103.7477 +UniRef50_G2SQ27 Glycosyltransferase 4.9933749049e-05 2.22203034387e-05 -11188258075.1 +UniRef50_X6L644 7.68364419879e-07 4.75555776371e-07 -118210442.55 +UniRef50_A5UHD3 Bifunctional protein GlmU 2.40471064061e-07 6.26200091589e-08 -71800653.3418 +UniRef50_UPI00046B76DF PREDICTED 5.04899414111e-08 2.49563412836e-06 987134713.565 +UniRef50_A7X6P6 Holin like protein CidA 9.37027488317e-05 3.62824018862e-05 -23181298688.8 +UniRef50_P0A1J8 Flagella synthesis protein FlgN 1.19810770375e-05 1.79099540274e-05 2393560396.32 +UniRef50_Q39NK6 Endoribonuclease L PSP 2.84660207752e-07 5.63131650807e-07 112422338.79 +UniRef50_UPI0001B44150 hypothetical protein 1.99443979412e-06 4.8018976455e-06 1133405185.98 +UniRef50_P00490 Maltodextrin phosphorylase 4.17851816225e-05 1.4514079557e-05 -11009678557.9 +UniRef50_A5UJI7 Asparagine synthetase, AsnB 2.77802607671e-05 4.44286616466e-06 -9421592583.02 +UniRef50_K2DSG6 9.47148534366e-07 7.57196065083e-07 -76686142.8285 +UniRef50_UPI00046C2950 cytochrome b 1.82421291978e-06 7.00135235024e-07 -453803955.322 +UniRef50_UPI0003B5555F MFS transporter 2.5915732082e-07 1.46975885355e-06 488734694.514 +UniRef50_A6QHT5 0.000121458381922 4.32170788082e-06 -47289512739.0 +UniRef50_Q8DV31 8.90941918006e-06 4.28434342103e-05 13699578284.9 +UniRef50_P0A3T3 31 kDa immunogenic protein 9.48415684732e-08 3.55014442685e-07 105034982.0 +UniRef50_D3NZU9 7.62712272573e-05 6.71757737056e-06 -28079661978.5 +UniRef50_Q9KPB3 GTPase Era 1.18255818439e-05 6.03129469943e-05 19574944318.1 +UniRef50_UPI00046411BA diaminopimelate decarboxylase, partial 8.60334502678e-08 1.05949688857e-07 8040429.91819 +UniRef50_UPI00037DE21F multidrug transporter 1.64501174775e-06 1.55239578183e-06 -37390201.9676 +UniRef50_Q839Y4 Adenylosuccinate synthetase 0.000347473135737 0.000140876365168 -83405651506.2 +UniRef50_M9VFY2 1.08785587569e-06 4.31494178593e-05 16980768726.2 +UniRef50_W0E3L8 Flagellar hook capping protein 7.32679813667e-08 1.00367653662e-07 10940470.256 +UniRef50_Q5HKD7 Oxidoreductase, short chain dehydrogenase reductase family 0.000132319131403 4.99700710651e-05 -33245326195.0 +UniRef50_UPI00036E9589 hypothetical protein, partial 6.63350689618e-07 2.75294293418e-07 -156663129.133 +UniRef50_M3F475 1.49444886109e-07 1.02414303003e-05 4074258354.3 +UniRef50_UPI000463B4EA carnitine dehydratase 1.05141878525e-07 1.81113420105e-06 688730035.481 +UniRef50_D6EJW5 Predicted protein 1.28993004054e-08 2.16715425948e-06 869699162.658 +UniRef50_H4XQD7 Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein 1.12624474485e-05 2.97298696507e-06 -3346556920.28 +UniRef50_UPI0003A6E25E serine dehydratase 7.84921346501e-08 1.15845442806e-07 15079988.8792 +UniRef50_UPI00039D719D DNA binding protein 1.646249897e-07 7.62296948745e-08 -35686265.2533 +UniRef50_G5RJ22 2.97856595278e-06 4.58721991281e-06 649433344.068 +UniRef50_W0YK09 1.88742994426e-05 5.22684433979e-06 -5509645098.11 +UniRef50_I6B1F5 1.43154764953e-06 7.05798232947e-07 -292993945.421 +UniRef50_B9KLE9 Transcriptional regulator, AraC family 2.20524596689e-05 7.23224584158e-06 -5983102186.56 +UniRef50_UPI0004764017 peptide ABC transporter permease 5.79321490638e-08 1.88023816264e-08 -15797167.2907 +UniRef50_UPI00037A033B hypothetical protein 5.52278806612e-08 2.41599996676e-07 75240710.2783 +UniRef50_Q0K7G7 Acyl CoA synthetase 1.46380294672e-05 7.99607146322e-06 -2681439952.2 +UniRef50_C2ZQ18 ABC transporter ATP binding protein yxdL 0.000142986704227 1.18600761412e-05 -52937428863.0 +UniRef50_Q6FDY0 Cell shape determining protein MreC 1.16538673977e-05 4.65542170944e-05 14089699448.0 +UniRef50_C6CXW7 LmbE family protein 5.88736323765e-08 1.7798412076e-07 48086365.8103 +UniRef50_I0C3E8 Myo inositol 1 monophosphatase 0.000125863151521 6.5766851731e-05 -24261613689.8 +UniRef50_Q3AHV1 Glutamyl Q tRNA synthetase 5.46980659771e-08 9.86217989472e-08 17732550.0048 +UniRef50_A3M2F5 Conjugal transfer protein 1.38781613551e-06 0.000105792594756 42149490319.6 +UniRef50_UPI00046744B6 ABC transporter permease, partial 2.55394058913e-06 1.29835462706e-06 -506895460.66 +UniRef50_UPI000362E5AE hypothetical protein 4.99055866453e-08 8.32020359926e-08 13442185.1949 +UniRef50_D3SBY0 Ribonuclease, Rne Rng family 8.7350077108e-06 5.68480292046e-06 -1231405104.08 +UniRef50_B1LM32 Fatty acid oxidation complex subunit alpha 2.19675556078e-05 8.98546085097e-05 27406836324.3 +UniRef50_UPI0003FCFBC7 GTP binding protein Era 1.4978195305e-07 7.17873565932e-07 229345555.388 +UniRef50_UPI00036244E1 MULTISPECIES 2.32920935315e-07 3.91430741955e-07 63992354.0746 +UniRef50_F4EDN7 Ribulose phosphate 3 epimerase 3.99043971041e-05 2.485363064e-05 -6076179115.23 +UniRef50_Q8CQF2 Capsular polysaccharide synthesis enzyme Cap5B 9.17460579185e-05 2.83808374536e-05 -25581317080.4 +UniRef50_P08997 Malate synthase A 3.30262831587e-05 2.39826397051e-06 -12364907194.3 +UniRef50_A0A036W4K8 1.75972960421e-06 1.05574901127e-07 -667802552.394 +UniRef50_UPI00047C7627 glutathione synthetase 6.76957271516e-08 1.3231054911e-07 26085796.5376 +UniRef50_P32167 6.31360126312e-05 3.87100126126e-05 -9861075948.24 +UniRef50_F7X4C7 Delta aminolevulinic acid dehydratase 3.2238132368e-06 5.16274360376e-06 782769982.493 +UniRef50_P65897 Phosphoribosylglycinamide formyltransferase 4.60402110486e-05 1.35545998455e-05 -13114839886.0 +UniRef50_UPI000287C995 membrane protein 2.47886402903e-07 1.3213731124e-06 433379757.788 +UniRef50_M5DTI1 1.32813830827e-07 1.86778831321e-07 21786332.9245 +UniRef50_B6ERK3 L allo threonine aldolase 3.53744798453e-05 5.02783432462e-06 -12251313191.9 +UniRef50_V8CW46 2.1583852341e-05 6.04621637068e-06 -6272734309.44 +UniRef50_H0UKG1 Urocanate hydratase 5.67079602693e-07 8.31233597702e-05 33328983383.1 +UniRef50_M7AG58 5.65768941141e-07 2.65313754221e-07 -121297445.959 +UniRef50_P37643 Inner membrane metabolite transport protein YhjE 2.90675726449e-05 7.35094201163e-05 17941719187.0 +UniRef50_UPI000466C516 flagellar biosynthesis protein FlhB 1.52961130101e-06 2.0631210496e-07 -534232124.153 +UniRef50_UPI0003648093 hypothetical protein 4.65536964476e-08 7.53183002715e-08 11612623.5451 +UniRef50_P43669 Tail specific protease 3.13247374606e-05 1.20983697504e-05 -7761920578.67 +UniRef50_E6S4X2 Outer membrane protein 5.83741219845e-07 9.27612093405e-05 37213175025.1 +UniRef50_G4R850 Molybdopterin guanine dinucleotide biosynthesis protein MobA 7.40469363506e-08 1.96668148133e-07 49503687.9279 +UniRef50_B7H1A9 DNA polymerase III, subunits gamma and tau 1.22424811164e-06 4.31159539542e-05 16912195717.7 +UniRef50_K4L2S2 Flagellar motor rotation protein MotA 1.59951690188e-06 6.45185269355e-06 1958947503.95 +UniRef50_G5M6M8 2.30069696257e-06 1.75435666453e-05 6153733541.95 +UniRef50_N6UCJ2 7.76268620214e-08 1.19857349329e-06 452539910.606 +UniRef50_C5N315 0.000152296120901 6.19545535373e-06 -58982631538.1 +UniRef50_UPI000465C017 ferredoxin 1.93723789665e-07 1.67761450846e-06 599064892.562 +UniRef50_A0A022H1C7 DNA binding protein 3.43926884354e-07 4.61142098899e-07 47321220.5042 +UniRef50_A1AZ02 1.7016476536e-07 8.81937904438e-08 -33092688.4706 +UniRef50_UPI0002484134 hemolysin type calcium binding protein 3.84764336707e-07 1.72492509887e-07 -85696741.3555 +UniRef50_A0A023S0A7 DcaP like protein 2.59409943429e-06 8.20890118734e-05 32093071663.9 +UniRef50_V4A4N8 3.99879225442e-07 7.17293110198e-07 128143880.382 +UniRef50_Q59977 Citrate synthase 1.64762271917e-07 8.97766192279e-07 295922677.62 +UniRef50_V4YV07 4.56636276836e-06 7.14475899663e-06 1040930197.83 +UniRef50_F3U350 7.43902633541e-05 2.24180998752e-05 -20981800166.6 +UniRef50_R7BMM6 Glycerol 3 phosphate cytidyltransferase TagD 3.79100297471e-05 7.65336638399e-06 -12214986290.7 +UniRef50_UPI0002B41A80 PREDICTED 1.31749187047e-08 2.08007236196e-08 3078631.02329 +UniRef50_UPI0004762A43 iron ABC transporter 8.82551747071e-08 4.00482074699e-07 126049830.982 +UniRef50_P39142 Pyrimidine nucleoside phosphorylase 0.000101609472363 8.2711488146e-05 -7629348132.75 +UniRef50_Q1R031 Uridylate kinase 5.03713269936e-06 6.7419351698e-05 25184467325.6 +UniRef50_A9NG27 Thymidylate synthase 3.66256855311e-07 3.52304721448e-06 1274435006.17 +UniRef50_A6UJH5 5.44900500844e-07 2.16878853269e-06 655583525.805 +UniRef50_H5LJB5 1.59869564113e-05 2.42394012474e-06 -5475556111.83 +UniRef50_D6K6K4 1.6643821842e-06 1.63292597318e-06 -12699258.3999 +UniRef50_B1TED8 6.22426323493e-07 1.00004406744e-06 152448917.122 +UniRef50_P0A5T7 Formyltetrahydrofolate deformylase 1.9670168743e-07 2.60927527183e-07 25928759.648 +UniRef50_X2GNK8 Arsenic transporter ATPase 1.58764481514e-06 5.79713249654e-05 22762783582.2 +UniRef50_G7M542 Two component transcriptional regulator, winged helix family 1.72368031437e-06 2.81842012135e-05 10682436994.1 +UniRef50_P55910 L lactate permease 0.000104828072799 1.25029396343e-05 -37272789215.4 +UniRef50_A6LWU2 ABC transporter related 2.44264005313e-06 1.10788236617e-05 3486533300.67 +UniRef50_B8ZUC1 Phosphoglucosamine mutase 4.12083920184e-08 4.34954885932e-07 158960291.406 +UniRef50_A0A024HWF4 7.19532428526e-08 1.29565183052e-06 494022136.313 +UniRef50_G8V8M1 Membrane spanning protein 3.32099110422e-06 6.30498737476e-05 24113282879.0 +UniRef50_A8HYX7 ABC type branched chain amino acid transport ATPase component 0.000123506018978 2.23487074113e-05 -40838448019.4 +UniRef50_A6LZK9 Methyl accepting chemotaxis sensory transducer 3.2748132922e-06 8.45520705842e-06 2091388534.0 +UniRef50_K2KCN1 2.36104821523e-07 1.75743252226e-07 -24368706.2449 +UniRef50_P54933 ATP binding transport protein SmoK 1.93713174033e-05 1.55532118149e-05 -1541416079.46 +UniRef50_UPI0004698811 DNA topoisomerase I 1.96474976141e-08 9.49962261751e-08 30419206.353 +UniRef50_P0AA51 3.34585969751e-05 2.92305487312e-05 -1706914960.05 +UniRef50_F8KLF6 0.000161395852245 1.22485690681e-05 -60212588461.5 +UniRef50_Q6B945 3 oxoacyl [acyl carrier protein] synthase 3 4.10706383138e-07 1.24820701495e-07 -115415557.891 +UniRef50_A0A024L5K6 Amino acid ABC transporter permease 3.59510465573e-06 1.1483803807e-05 3184764652.59 +UniRef50_UPI000262D62D glucose 6 phosphate 1 dehydrogenase, partial 1.05059878376e-07 1.03288499718e-07 -715127.301495 +UniRef50_Q9JZ77 3,4 dihydroxy 2 butanone 4 phosphate synthase 2.68190343332e-06 4.88176321812e-05 18625559844.6 +UniRef50_Q08WZ7 1.67211316105e-06 6.34923387838e-07 -418726239.195 +UniRef50_UPI0003B3DE24 multidrug ABC transporter ATP binding protein 1.69221278616e-07 7.77250975164e-08 -36938131.0943 +UniRef50_UPI0004737AC7 hypothetical protein 1.03062271139e-06 3.83389254612e-06 1131714432.27 +UniRef50_UPI0003B6AFA9 glycerol 3 phosphate dehydrogenase 1.86023845111e-07 5.93021304059e-08 -51159111.2767 +UniRef50_Q9AF05 1.86027704527e-07 9.35565678686e-08 -37331732.6174 +UniRef50_B6ITD9 2.43993609106e-07 6.75563235453e-07 174229954.111 +UniRef50_P69424 Sec independent protein translocase protein TatC 2.45849186491e-05 1.32319596881e-05 -4583328849.03 +UniRef50_F0KHC4 Cell division protein ftsA 3.06533843866e-06 4.73524918581e-05 17879267299.9 +UniRef50_Q9RTP9 1.083114388e-07 0.00102880427759 4.15297185054e+11 +UniRef50_R0PW25 1.68270128756e-06 2.56412201142e-05 9672348054.39 +UniRef50_Q6A6H1 NADH quinone oxidoreductase subunit N 1.03997588196e-06 6.25544529755e-05 24834149270.2 +UniRef50_UPI00029A832E aspartyl glutamyl tRNA amidotransferase subunit B 9.36553079156e-07 2.36942158064e-07 -282441514.036 +UniRef50_Q9HA92 Radical S adenosyl methionine domain containing protein 1, mitochondrial 2.53181032556e-07 9.99153284642e-08 -61875245.5236 +UniRef50_UPI00045EA718 hypothetical protein 8.91871129846e-08 4.0771068876e-08 -19546151.1383 +UniRef50_UPI00037A936B hypothetical protein 1.7297532389e-07 3.72679047838e-07 80622843.9981 +UniRef50_A5CSI8 Argininosuccinate lyase 4.7338225616e-08 6.27576491785e-05 25316922073.7 +UniRef50_Q82Z40 DNA directed RNA polymerase subunit beta 7.2572200655e-05 5.897493267e-05 -5489383942.79 +UniRef50_I4YRS4 Replication protein C 8.03090426695e-07 1.43582989626e-07 -266251245.411 +UniRef50_A5HY11 Spore coat protein 3.31365286798e-06 1.54988058338e-05 4919295780.94 +UniRef50_UPI0003680468 hypothetical protein 7.78512611721e-07 2.78911788629e-07 -201694983.074 +UniRef50_UPI000392E29D PREDICTED 2.18805900061e-07 1.37838425997e-07 -32687562.8623 +UniRef50_P37487 Manganese dependent inorganic pyrophosphatase 4.93600771547e-05 9.21295754804e-05 17266571314.8 +UniRef50_Q2NFD4 Flap endonuclease 1 1.90689529131e-05 1.85928670631e-06 -6947753434.04 +UniRef50_P43010 NAD transhydrogenase subunit beta 2.47026354042e-06 8.74579628668e-05 34310577134.4 +UniRef50_A0A037XJH2 Membrane protein 4.92629381754e-07 7.2392851173e-08 -169654644.278 +UniRef50_UPI000237ADAF branched chain amino acid ABC transporter ATP binding protein 6.88760517269e-07 8.37878857449e-08 -244234875.195 +UniRef50_R7PX51 Peptidase M50 5.58849007108e-05 1.44300766143e-05 -16735821195.7 +UniRef50_UPI0003D2B83C catalase 1.20029996956e-06 1.44385632098e-06 98326687.8408 +UniRef50_Q9AC07 NifU like domain protein 4.09168324117e-05 8.66501500009e-06 -13020454463.4 +UniRef50_UPI0004785B50 hypothetical protein 5.22529040024e-07 1.46463247118e-07 -151822375.442 +UniRef50_I7EPM1 Gamma glutamyltranspeptidase Ggt 1.36020741089e-05 8.8002878136e-06 -1938540051.96 +UniRef50_UPI0004785B1F LuxR family transcriptional regulator 4.22536934038e-07 9.95542231388e-06 3848542809.5 +UniRef50_C9JF41 Transcription cofactor HES 6 1.55468564229e-07 1.37167252976e-06 490996465.385 +UniRef50_P62423 Phosphoglycerate kinase 1.79555853644e-05 2.99905857252e-05 4858677331.72 +UniRef50_L7WTC3 Lipoprotein 9.94670720227e-05 6.75427690666e-06 -37429293102.3 +UniRef50_G7MAA3 1.89691451679e-06 3.13423375231e-05 11887478603.6 +UniRef50_UPI0003AE3085 PREDICTED 1.45969244132e-06 4.4634705658e-07 -409099966.966 +UniRef50_F7MME9 Radical SAM family protein 3.62424329115e-07 3.30274587994e-07 -12979245.0122 +UniRef50_UPI000367D5BE hypothetical protein 8.68124865621e-08 1.82511209614e-07 38634748.8514 +UniRef50_T2K0U5 Plasmid replication protein 3.77228265956e-07 6.70767184903e-08 -125211985.7 +UniRef50_D9QK96 FAD dependent oxidoreductase 1.40727113362e-07 3.7128363778e-08 -41824086.5067 +UniRef50_O67262 Diaminopimelate decarboxylase 1.54228866344e-07 9.96394916168e-07 339992768.854 +UniRef50_Q9XJJ6 Spanin, inner membrane subunit 8.38857753003e-06 6.53054548712e-05 22978041831.3 +UniRef50_C5IBJ2 RhsA 7.61381634286e-06 3.89300886958e-06 -1502135636.41 +UniRef50_A5VCY9 Polyribonucleotide nucleotidyltransferase 1.45816899375e-07 2.96065127916e-07 60657053.6151 +UniRef50_T1XSM0 Cell shape determinant MreD 0.000115770177727 8.03400690555e-05 -14303569647.0 +UniRef50_Q07T82 Protease HtpX homolog 2.52656485065e-05 1.08266774844e-05 -5829189787.72 +UniRef50_Q12A19 Histone deacetylase superfamily 2.94968877164e-05 6.00541100723e-06 -9483797420.34 +UniRef50_F2MQQ8 Tagatose 6 phosphate kinase 7.63103817039e-05 3.39285856977e-05 -17110051130.8 +UniRef50_Q9K1M6 9.04771327611e-07 2.9869506689e-05 11693419102.7 +UniRef50_G9P654 2.11992637469e-06 2.50870066872e-06 156952953.297 +UniRef50_A6LY61 AAA ATPase 3.29615525915e-06 8.26180358046e-06 2004693162.67 +UniRef50_P77216 3.24359650427e-05 1.58361671743e-05 -6701542101.9 +UniRef50_P22983 Pyruvate, phosphate dikinase 1.00711043243e-05 6.23050255463e-05 21087474979.6 +UniRef50_UPI000289D44B AMP dependent synthetase ligase 3.11363157333e-07 2.73178130336e-07 -15415763.9817 +UniRef50_P43712 Malonyl CoA acyl carrier protein transacylase 6.06724884815e-06 9.322051588e-06 1314003807.0 +UniRef50_R3W3Z9 Regulatory protein BlaR1 4.23383718283e-06 1.54347329742e-06 -1086132915.02 +UniRef50_G7M658 8.17523306876e-06 3.85684116258e-06 -1743387805.15 +UniRef50_B9NM77 9.17851048195e-06 3.93339400741e-06 -2117517885.59 +UniRef50_G9L997 GMP synthase 1.26979662922e-06 9.81998749854e-07 -116187535.577 +UniRef50_U5UNZ2 Cell division protein DivIB 8.83444999799e-05 3.43873603891e-05 -21783159381.4 +UniRef50_UPI0003BCFABD PREDICTED 1.37276829101e-07 1.20484130898e-07 -6779418.33413 +UniRef50_H8GRZ1 1.84538064811e-06 4.41625287451e-05 17083951976.6 +UniRef50_UPI000252B988 PREDICTED 7.52495179263e-08 6.129126153e-08 -5635119.39425 +UniRef50_P0A9Q3 Aerobic respiration control protein ArcA 2.09069326909e-05 3.12937584048e-05 4193289001.39 +UniRef50_Q62CS2 Conserved domain protein 1.22481085786e-06 6.6379520224e-07 -226488904.61 +UniRef50_I7BX60 6.92922191886e-06 4.39246632237e-06 -1024119363.79 +UniRef50_N8WA96 2.58967631858e-06 7.06703195947e-05 27484991134.0 +UniRef50_Q9ZIG2 Thymidine kinase 1.79794644102e-07 1.08213928046e-07 -28898013.466 +UniRef50_H8GUV3 GTPase, G3E family 1.66537936259e-06 0.000192423497852 77011393299.4 +UniRef50_K9BES8 Type I secretion C terminal target domain protein, VC_A0849 subclass family 8.91442553166e-07 2.55416038734e-05 9951572616.46 +UniRef50_U6H4I5 2.7705225072e-07 1.8278765798e-06 626086812.404 +UniRef50_Q8L7B5 Chaperonin CPN60 like 1, mitochondrial 0.000330292442193 0.000614562438329 1.14763285825e+11 +UniRef50_P37725 Uroporphyrinogen III C methyltransferase 2.24046064489e-07 2.63905492569e-07 16091740.2461 +UniRef50_UPI00037CF2DE hypothetical protein 3.21744569382e-08 4.39102108772e-06 1759719873.91 +UniRef50_P76641 Guanine deaminase 6.80806716102e-06 6.68236540545e-05 24229028903.0 +UniRef50_U3TW22 Glycine betaine ABC transporter substrate binding protein 1.81643860444e-05 5.58141041216e-06 -5079901673.19 +UniRef50_UPI000368C576 hypothetical protein 6.91926137349e-06 1.16396359191e-06 -2323484339.87 +UniRef50_Q8AAB1 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.26910642384e-07 4.11822586129e-07 115022447.953 +UniRef50_Q4L7J6 Sensor protein VraS 0.000172759452698 3.46547147105e-05 -55754577461.1 +UniRef50_P39366 Putative aminopeptidase SgcX 3.14707647034e-05 3.11622320841e-05 -124558404.532 +UniRef50_UPI00036B883D hypothetical protein 6.01140992804e-07 3.87656002647e-07 -86186510.2818 +UniRef50_Q9ZE99 Prolipoprotein diacylglyceryl transferase 1.55172015048e-07 1.33995511588e-07 -8549214.31172 +UniRef50_P48632 Ferripyoverdine receptor 1.1528000235e-05 5.65769953355e-06 -2369912429.87 +UniRef50_UPI00037AF8F5 50S ribosomal protein L10 1.97079205272e-06 1.33012450425e-06 -258645351.192 +UniRef50_UPI00035D9CD4 hypothetical protein 1.04867074349e-07 2.20535250532e-07 46696662.1332 +UniRef50_Q73DE0 Quinol oxidase subunit 2 5.8386679675e-07 3.47431417872e-06 1166909077.88 +UniRef50_G6XJ67 6.98003965453e-08 2.49942494553e-07 72725575.558 +UniRef50_UPI00016C3B3C autotransporter associated beta strand repeat protein, partial 4.05438320609e-07 4.23918719097e-08 -146566306.421 +UniRef50_P56453 Glycine tRNA ligase alpha subunit 1.1651247949e-05 3.70800724976e-05 10265928517.0 +UniRef50_A6M1U7 Transcriptional regulator, GntR family 6.42529342721e-06 1.60126541707e-05 3870535182.29 +UniRef50_X5DX47 Bacterial regulatory s, tetR family protein 9.40476762368e-05 1.42347219139e-05 -32221469075.2 +UniRef50_F8HGF9 8.22854273072e-05 0.000236089422457 62092560229.3 +UniRef50_UPI0004719644 phosphoenolpyruvate carboxykinase 2.72049244395e-07 1.159383943e-06 358227906.648 +UniRef50_UPI000255D4C6 ferredoxin NADP reductase subunit alpha 9.04421235478e-07 1.7960068757e-06 359944063.944 +UniRef50_UPI000262CC71 mannose 1 phosphate guanyltransferase 2.66215683657e-07 1.18020487549e-07 -59828219.2284 +UniRef50_A4X0F9 1.69373056156e-05 6.71174329992e-06 -4128184988.61 +UniRef50_G7U4K0 Hydrolase, NUDIX family protein 2.56212209626e-06 5.50827275118e-05 21203212906.5 +UniRef50_W0T788 7.92680359609e-08 6.59641250591e-07 234303788.726 +UniRef50_K1ER07 Major facilitator transporter 1.76768395805e-06 3.61346748635e-07 -567755589.141 +UniRef50_A7X202 Nuclease SbcCD subunit D 0.000246215119242 5.70094479188e-05 -76384651327.8 +UniRef50_U6AXU2 ABC transporter, periplasmic spermidine putrescine binding protein PotD 1.81530426283e-05 1.22363040151e-05 -2388659984.7 +UniRef50_Q1MRB9 ATP synthase subunit alpha 6.01431102195e-06 5.88077105119e-05 21313343221.9 +UniRef50_Q4L700 UPF0758 protein SH1266 0.000162152868427 2.20835798357e-05 -56547690647.6 +UniRef50_G7U594 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 9.66261063593e-07 5.76842997014e-05 22897768206.7 +UniRef50_UPI000479001A uridine kinase 9.89054462057e-08 2.56250654091e-06 994585993.715 +UniRef50_F3KRZ8 7.5192958706e-07 2.62319045263e-07 -197661783.92 +UniRef50_R5Q800 2.6269996782e-05 7.94912925284e-06 -7396359043.86 +UniRef50_K0HYU5 6.71378910635e-06 0.000114090895128 43349455366.3 +UniRef50_T9BKY3 Xanthine dehydrogenase accessory factor 1.67955557231e-06 3.0107772009e-07 -556508424.767 +UniRef50_A4WZ55 Heme A synthase 5.96508311088e-05 5.70587245925e-06 -21778241785.9 +UniRef50_F7XW34 30S ribosomal protein S1 0.000119959516228 4.64029319678e-05 -29695695706.6 +UniRef50_V5WF15 Oligopeptide transport system permease protein OppB 7.65516270981e-06 1.16422200583e-05 1609623978.28 +UniRef50_N3GRF4 Type VII secretion system , usher family protein 1.09103283534e-05 5.56554468458e-06 -2157754754.97 +UniRef50_D0WC80 2.55406071133e-07 3.49879066668e-06 1309394162.03 +UniRef50_P0ACI5 Xylose operon regulatory protein 3.93616738578e-05 3.05238942662e-06 -14658503689.9 +UniRef50_Q60151 Glutathione reductase 6.01246333006e-05 5.93158841279e-05 -326501965.487 +UniRef50_P20370 4 carboxymuconolactone decarboxylase 3.76687772533e-07 2.75436083939e-06 959895794.421 +UniRef50_A4XU74 Elongation factor P 1.27242468152e-05 9.74772781063e-07 -4743406849.83 +UniRef50_S5Y8U0 Glyoxalase bleomycin resistance protein dioxygenase 3.380471542e-06 8.31878042813e-06 1993655897.2 +UniRef50_A5FMG2 Leucine tRNA ligase 6.00887002074e-08 2.15704384974e-08 -15550294.9246 +UniRef50_D4HCU9 Cysteine rich domain protein 5.77784676811e-06 6.35551188357e-05 23325393740.5 +UniRef50_Q75AN4 ADL112Wp 2.87009044144e-06 1.4151430695e-06 -587380108.264 +UniRef50_UPI00047A0692 hypothetical protein 3.33296290105e-07 5.88666255555e-07 103095988.794 +UniRef50_Q0TLW2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.96110222257e-07 5.46533636745e-07 -100757130.22 +UniRef50_Q21Y74 Penicillin amidase 4.45437462131e-06 8.43762014861e-07 -1457648616.42 +UniRef50_A4WV32 8.27774426284e-06 9.80244008616e-06 615538413.996 +UniRef50_UPI0002489B60 hemolysin type calcium binding region 2.20736930467e-07 3.08847668455e-07 35571386.1661 +UniRef50_I6SV43 2.70985826164e-05 4.88969432594e-05 8800265687.54 +UniRef50_UPI00037DDE2A hypothetical protein 1.31876817892e-07 2.35911233374e-07 41999970.1759 +UniRef50_A6M0W1 3.6734713342e-06 1.17287919229e-05 3252031771.56 +UniRef50_Q9CHL8 Multidrug resistance ABC transporter ATP binding and permease protein 3.79380803442e-07 3.45257736482e-07 -13775900.8689 +UniRef50_A3M5M9 Aldehyde dehydrogenase 1.61779709507e-05 8.92788613137e-06 -2926948210.11 +UniRef50_B7MT79 Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor] 3.9868811774e-05 2.16231605159e-05 -7365993312.21 +UniRef50_Q8A2T6 S adenosylmethionine synthase 4.6309620919e-07 4.18181746631e-05 16695552655.7 +UniRef50_Q87ZG4 Non homologous end joining protein Ku 4.63098809869e-06 8.11031327626e-06 1404646270.31 +UniRef50_A0A023S0C8 Long chain fatty acid transporter 4.38197115076e-06 0.000180022572371 70908266065.1 +UniRef50_Q1MPL2 Porphobilinogen deaminase 9.6689147599e-08 9.77905084099e-08 444632.874577 +UniRef50_C2RB76 Glyoxalase 8.86165257367e-08 2.37838957205e-06 924409477.47 +UniRef50_A6LTD1 4.35560756373e-06 4.34289272355e-06 -5133137.0093 +UniRef50_Q5HFS5 Tyrosine recombinase XerD 8.72999922707e-05 1.52204699815e-05 -29099387663.4 +UniRef50_K8NEW5 9.11216619719e-07 1.50873625599e-06 241226009.553 +UniRef50_H6NGS7 Glutamine ABC transporter substrate binding protein 3.35140754847e-06 2.85330149942e-06 -201091524.45 +UniRef50_Q5HKU1 Arginine repressor 0.000125086002255 7.40974031135e-05 -20584723173.9 +UniRef50_E8QXQ6 Magnesium protoporphyrin chelatase, putative 2.25699950721e-07 3.13866754202e-06 1176000762.74 +UniRef50_D3D6E8 5.46359858431e-07 9.98706445071e-08 -180253174.7 +UniRef50_P12011 Gluconokinase 0.000141270022645 2.49369216922e-05 -46965100422.4 +UniRef50_UPI0004111510 hypothetical protein 3.64522810078e-08 9.41683890714e-08 23300701.0816 +UniRef50_G7M433 Transglutaminase domain containing protein 1.10825846102e-05 1.34472761166e-05 954654979.162 +UniRef50_UPI00042062D8 hypothetical protein 5.58610110711e-08 3.26864189117e-07 109407308.56 +UniRef50_B0UDK8 Light independent protochlorophyllide reductase iron sulfur ATP binding protein 0.000127444497704 1.04203776195e-05 -47244073325.4 +UniRef50_C2ZDZ0 9.33091993623e-07 1.83616604275e-06 364582075.597 +UniRef50_Q8CWX8 Signal recognition particle receptor FtsY 4.53225023052e-05 2.48380827919e-05 -8269811529.61 +UniRef50_Q6F9W0 DNA mismatch repair protein MutL 5.81045647247e-07 8.6032855284e-05 34497944162.0 +UniRef50_UPI000255B291 ribosomal large subunit pseudouridine synthase A 4.39709536948e-08 4.57035153459e-08 699456.399471 +UniRef50_E6SIA9 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 3.70977058843e-06 0.000443345427276 1.77486309541e+11 +UniRef50_UPI00037DBD2E hypothetical protein 1.94805508597e-05 4.56675317307e-06 -6020883138.96 +UniRef50_UPI0002EC1AE8 hypothetical protein 3.36831035119e-08 1.10842792958e-06 433887674.887 +UniRef50_UPI0003A0F247 30S ribosomal protein S13 4.29788998148e-07 2.57430416149e-06 865767087.601 +UniRef50_G2ZGH2 Gyrase B 4.84374055578e-07 8.62020229093e-08 -160746935.709 +UniRef50_UPI000465F37A ABC transporter 1.63858586201e-07 4.28736713038e-07 106934550.224 +UniRef50_Q8DV69 0.000159086476172 3.63839883189e-06 -62756296384.6 +UniRef50_D2N5G1 LysM domain protein 0.000103363034143 3.15116686925e-05 -29007277947.8 +UniRef50_F9NYN4 Conserved domain protein 1.42849738216e-07 2.87807051516e-07 58521046.2055 +UniRef50_Q219F8 Peptidyl tRNA hydrolase 7.23210324156e-07 3.35713450462e-07 -156437243.032 +UniRef50_A9LZL8 Type II restriction endonuclease 1.17474892792e-06 2.2743775068e-05 8707680534.47 +UniRef50_S4AF74 4.46418878164e-07 1.12982766285e-07 -134612250.087 +UniRef50_F4FDU4 3.04192586597e-07 1.97821328162e-06 675822697.124 +UniRef50_Q932N6 7.54306752964e-06 2.20760383266e-06 -2153992167.97 +UniRef50_D2NSF8 3.07909073336e-07 4.26455262018e-06 1597345553.34 +UniRef50_M0TB60 8.67765209201e-07 4.16504302426e-06 1331151516.09 +UniRef50_B4RCU4 Ribonuclease 3 1.56741382206e-07 1.17962455336e-07 -15655528.6484 +UniRef50_A0A017HMU6 Secreted hemolysin type calcium binding protein bacteriocin, putative 1.19910626612e-08 2.75352645637e-08 6275385.05685 +UniRef50_R1DNP7 5.59780954246e-07 4.25736197387e-07 -54115513.2581 +UniRef50_UPI0003B5DB85 hypothetical protein, partial 6.99021298875e-08 8.66887360839e-08 6776958.91631 +UniRef50_W6IYR1 Auxin binding protein 7.0033383238e-08 3.17342072226e-07 99841552.5633 +UniRef50_Q0TMI0 tRNA lysidine synthase 4.42540974491e-06 7.14828076404e-06 1099256443.81 +UniRef50_B8GQB0 Flagellar hook capping protein 7.84049383311e-08 1.22582275171e-07 17834932.9992 +UniRef50_UPI00039DC1E4 3 oxoadipate enol lactonase 9.83179082138e-08 3.81141198949e-07 114179233.102 +UniRef50_U5MQD6 TIGR03943 family protein 8.33451241271e-06 1.41981968315e-05 2367241355.36 +UniRef50_P0A913 Peptidoglycan associated lipoprotein 2.03267977688e-05 1.10657623782e-05 -3738793632.87 +UniRef50_B4TF25 Nitric oxide reductase FlRd NAD reductase 4.21109277935e-05 1.16223282026e-05 -12308621792.0 +UniRef50_R9BBW4 HAE1 family hydrophobic amphiphilic exporter 1 2.34597045345e-06 7.30659950531e-05 28550541763.2 +UniRef50_L7WTZ4 0.000134312978767 3.31779071393e-05 -40829469483.1 +UniRef50_B4R909 1.14209820231e-06 4.5341666563e-07 -278029187.431 +UniRef50_UPI0003B6B13E ABC transporter permease 1.22793294573e-06 1.87966287625e-07 -419847301.701 +UniRef50_V1XPG8 4.60879377242e-06 1.79924051069e-06 -1134251128.86 +UniRef50_B9DXX3 4.24355854593e-06 3.72440498799e-05 13322703313.1 +UniRef50_P0A1Q3 Lactoylglutathione lyase 1.0092957212e-06 3.19574935491e-07 -278448745.017 +UniRef50_Q3HKI1 Possible replication protein C 0.000399137244924 9.49697881737e-05 -1.22796134844e+11 +UniRef50_K9YB57 PUCC protein 2.71051295482e-07 1.07896829135e-07 -65867460.1947 +UniRef50_UPI00036A764A hypothetical protein 3.0617160072e-07 3.25853016508e-07 7945629.07175 +UniRef50_W4KF41 7.81686305015e-07 6.11403854125e-07 -68745115.0249 +UniRef50_Q13BG6 NADH quinone oxidoreductase subunit K 1.26163005581e-06 2.94459071699e-07 -390458794.808 +UniRef50_UPI00029CB7E1 hypothetical protein, partial 8.52323929784e-06 2.31825727847e-05 5918152818.91 +UniRef50_UPI00037A794A hypothetical protein 1.14358175463e-07 1.80487944072e-07 26697399.091 +UniRef50_W4KF45 6.09956871518e-08 1.06557100331e-07 18393701.6019 +UniRef50_UPI00037E1072 hypothetical protein 5.08539077618e-07 9.81698492146e-08 -165671093.303 +UniRef50_D8NYU1 3.12001958753e-07 2.79900684554e-07 -12959678.3211 +UniRef50_V6L4N0 1.05994254609e-07 1.46478400054e-07 16343946.3125 +UniRef50_O27710 Phosphosulfolactate synthase 3.33280018207e-05 1.08925824294e-05 -9057454121.82 +UniRef50_A1BCD3 2.40814851133e-05 3.52968173539e-06 -8297015222.65 +UniRef50_UPI00047DD048 glucose 6 phosphate dehydrogenase 3.38520627299e-08 5.29182485174e-08 7697253.17082 +UniRef50_G2TC10 ChaC like protein 1.10700891022e-07 1.97799130966e-07 35162628.281 +UniRef50_G8S496 Replication associated recombination protein A 8.17069239939e-07 6.43759371496e-05 25659494930.2 +UniRef50_D6YPZ0 47 kDa protein 8.60285291717e-08 1.00515693978e-07 5848646.20981 +UniRef50_UPI0004784B81 phosphoesterase 1.3258339726e-07 1.48909011993e-07 6590851.00553 +UniRef50_Q1IYN8 5.36111567746e-06 9.80643409211e-05 37425429627.3 +UniRef50_UPI00025577F3 hydrogenase nickel insertion protein HypA 2.09432980981e-06 4.6966614284e-07 -655896659.221 +UniRef50_UPI0003B54717 hydantoinase 3.88075202029e-08 6.94634257532e-08 12376165.2609 +UniRef50_UPI000463C9AE carboxypeptidase 1.13171730167e-07 5.38259837921e-08 -23958606.0657 +UniRef50_O43895 Xaa Pro aminopeptidase 2 4.72134874094e-08 2.81932979345e-07 94759139.2266 +UniRef50_UPI00036806EE hypothetical protein 4.96339050416e-07 1.99211097749e-06 603861482.144 +UniRef50_UPI000262636B DNA gyrase subunit A 2.58771086859e-08 3.40799692556e-08 3311595.47241 +UniRef50_F4FTG4 Galactonate dehydratase 1.08890189088e-06 1.51581581718e-05 5679931409.79 +UniRef50_S5GEI0 Catecholate siderophore receptor CirA 5.4048556745e-06 1.08705535652e-06 -1743148973.74 +UniRef50_A6LR14 Heavy metal translocating P type ATPase 3.99984267679e-06 1.2763435474e-05 3537969953.61 +UniRef50_C4J951 4.39847392415e-07 1.83861138937e-05 7245128012.03 +UniRef50_D2Q478 Spermidine synthase like protein 8.58804900762e-08 3.33284292898e-07 99879951.1853 +UniRef50_C6DEY0 RNA polymerase associated protein RapA 1.50987729449e-05 1.99485169109e-06 -5290213813.36 +UniRef50_UPI0004692C05 hydrogenase 1.38993631686e-06 8.93476370612e-07 -200426972.549 +UniRef50_Q3JT43 1.38310262633e-06 3.09381373665e-07 -433474445.744 +UniRef50_B9KVR7 Transcriptional regulator, MerR family 0.000226956087143 5.60804043464e-05 -68984610025.6 +UniRef50_B2KEK1 Adenylate kinase 9.98002542441e-08 2.25091531795e-07 50581626.2442 +UniRef50_Q46855 2.79434620188e-05 1.80938255289e-05 -3976419119.6 +UniRef50_UPI0003A592DF transcriptional regulator 1.91478620933e-06 3.37712280436e-07 -636684097.966 +UniRef50_P04816 Leucine specific binding protein 4.56776130769e-05 1.59741202639e-05 -11991664551.5 +UniRef50_M3G6K7 Mg transport ATPase protein C 4.9347560123e-06 4.12996962068e-05 14680972604.5 +UniRef50_S6DCW1 1.83327125707e-06 2.16796944823e-06 135121766.98 +UniRef50_B9KL47 Protein tyrosine phosphatase 0.000214966044989 2.48772224485e-05 -76741190312.0 +UniRef50_Q7VZ05 Tryptophan tRNA ligase 1.39914842629e-05 4.55783882222e-06 -3808478428.25 +UniRef50_Q5HEB2 Cardiolipin synthase 2 0.000239397309071 8.16247351671e-05 -63694724172.2 +UniRef50_X5K4N5 Membrane protein, putative 8.65793552431e-07 1.30382651297e-06 176839281.438 +UniRef50_W4TSQ7 2.51754755085e-06 3.10320057551e-06 236435312.826 +UniRef50_W4TSQ5 3.40756501337e-06 5.31958090506e-05 20100125088.3 +UniRef50_Q9I048 tRNA dihydrouridine synthase A 8.41950817805e-06 2.45950323951e-06 -2406127131.17 +UniRef50_E0Q484 2.42521057489e-06 2.86299041271e-08 -967529026.138 +UniRef50_UPI000375D23B hypothetical protein, partial 5.50613882311e-07 2.12718448872e-06 636480900.505 +UniRef50_Q83J60 HTH type transcriptional regulator DctR 1.09287248752e-05 8.55990449842e-06 -956321854.801 +UniRef50_B4EY85 DnaA regulatory inactivator Hda 4.42248171812e-05 7.72455356727e-06 -14735604329.5 +UniRef50_UPI000471D4BC hypothetical protein, partial 8.57598592947e-08 7.18395561893e-08 -5619797.18498 +UniRef50_M1MLW2 dTDP glucose 4,6 dehydratase 2 2.42514144524e-06 1.53846359622e-05 5231906967.39 +UniRef50_UPI00047D17AA hypothetical protein 1.4157799109e-07 8.12347972273e-08 -24361287.8566 +UniRef50_H8GSQ0 VanW like protein 8.55330790492e-07 0.000171574523692 68921433134.6 +UniRef50_A5EY11 Ribosomal RNA small subunit methyltransferase H 1.5825019865e-07 9.33228205619e-08 -26211979.2827 +UniRef50_UPI000470B3CF ribosome binding factor A 2.11426364671e-07 6.80882719153e-07 189525291.182 +UniRef50_A3PR72 Binding protein dependent transport systems inner membrane component 3.08811386997e-05 8.00360338922e-06 -9235941743.78 +UniRef50_Q1INX8 DGPFAETKE domain protein 2.77849700215e-07 2.41196122496e-07 -14797499.1151 +UniRef50_UPI000365E142 hypothetical protein 9.86995092907e-08 1.96945478338e-07 39663103.318 +UniRef50_UPI00037A3857 helicase 2.71397631932e-08 6.1906767045e-08 14035866.0941 +UniRef50_UPI0003B7A6B2 branched chain amino acid ABC transporter ATP binding protein 9.71799392539e-08 1.28538573967e-07 12659865.6474 +UniRef50_K0C423 MaoC like dehydratase 4.10710811275e-07 2.44621592625e-07 -67052255.7129 +UniRef50_G8LZB4 4.68915684868e-07 4.76521239978e-07 3070455.92856 +UniRef50_A0A009XXP0 RecF RecN SMC N terminal domain protein 3.28534367999e-07 4.92552110271e-06 1855859956.17 +UniRef50_P26266 Ferric enterobactin transport protein FepE 1.99100890319e-05 1.61339547218e-05 -1524471759.37 +UniRef50_E9AEN0 Proteophosphoglycan ppg1 1.80671612417e-08 2.43313345527e-07 90934648.6774 +UniRef50_B2KCN5 Dihydroorotase 1.8650369405e-07 6.00951168899e-08 -51032693.8072 +UniRef50_UPI00024929D9 putative N acylamino acid racemase 1.47927670904e-07 5.36841179644e-06 2107573504.02 +UniRef50_G4U7X4 1.33251904412e-08 1.38176042095e-08 198793.480859 +UniRef50_UPI00039427DC phosphatase 8.28397872105e-08 1.98525445273e-07 46703719.7823 +UniRef50_UPI0003B3863F carboxynorspermidine decarboxylase 3.09783952287e-07 3.88751230482e-07 31880059.2448 +UniRef50_UPI00047C82E1 hypothetical protein 1.44520122436e-07 3.44715948779e-05 13858261319.4 +UniRef50_X1KVA0 Marine sediment metagenome DNA, contig 8.86410354113e-08 3.61719251499e-07 110245026.881 +UniRef50_E3E7X0 Formate dehydrogenase, alpha subunit 3.91748896025e-06 1.93325895473e-05 6223265271.53 +UniRef50_N6V3N6 Sulfate transporter 2.33868521761e-06 7.22879104881e-07 -652320755.88 +UniRef50_R6HNH6 8.60836599321e-07 4.46689868421e-07 -167196117.416 +UniRef50_D3QF31 Phosphohydrolase, Icc family 0.000136169009713 2.20175929637e-05 -46084327737.0 +UniRef50_UPI0004163F11 quinone oxidoreductase 6.62639838732e-08 6.93976101315e-07 253415084.705 +UniRef50_B1ZSZ2 Phosphate transporter 9.02655575258e-06 0.000748742055766 2.98632224685e+11 +UniRef50_Q6A8L4 Histidinol phosphate aminotransferase 1.00662930362e-06 6.4710586767e-05 25718069363.4 +UniRef50_G9ZDV2 5.34013212348e-07 5.15260477059e-07 -7570709.35811 +UniRef50_V4I6Z5 Phenylacetate CoA oxygenase subunit PaaA 1.44815596745e-06 5.75190871803e-05 22636522998.3 +UniRef50_UPI00037394E3 hypothetical protein 2.44302591315e-07 7.14735209376e-08 -69773216.5624 +UniRef50_UPI00037AD4AC hypothetical protein 5.84966394976e-08 3.05808327101e-07 99842763.141 +UniRef50_U5MNP0 2.36279194446e-06 1.69861027446e-05 5903610018.2 +UniRef50_R9SMA4 Cell wall biosynthesis protein Mur ligase family 1.86229519288e-05 1.31251868968e-06 -6988434321.53 +UniRef50_UPI000376DBC0 hypothetical protein 1.39560472831e-06 2.93584994025e-07 -444898890.032 +UniRef50_Q47083 HTH type transcriptional regulator cbl 3.12781552367e-05 9.5501936351e-06 -8771844730.64 +UniRef50_U4TH79 4.18600848012e-05 4.76317266442e-06 -14976478659.9 +UniRef50_F4DVS4 Periplasmic binding protein 1.50994395537e-06 8.47619051331e-06 2812359220.9 +UniRef50_P0ABX0 Flagellar basal body rod protein FlgB 8.22618361401e-06 4.27995224921e-06 -1593142027.67 +UniRef50_A0A059DWP9 2.75809257042e-07 1.79851733549e-07 -38739229.7654 +UniRef50_Z8B9P7 0.000144565389511 2.8962080146e-05 -46670474602.8 +UniRef50_UPI00037E3FD0 hypothetical protein 1.70123333366e-07 2.15335157468e-07 18252568.2014 +UniRef50_A4GAA6 ABC transporter, permease component 9.53114606574e-05 1.7456209993e-05 -31431120084.6 +UniRef50_P52642 UDP N acetylglucosamine 2 epimerase 3.4076456275e-06 6.12892928251e-05 23367531261.4 +UniRef50_UPI0004703E7C hypothetical protein, partial 5.75760551305e-08 4.85529950903e-07 172770239.308 +UniRef50_UPI00029A41E2 hypothetical protein 1.1891837283e-07 1.37626696677e-07 7552779.91398 +UniRef50_UPI000375C1B4 hypothetical protein 1.40226852773e-07 3.81888269298e-07 97561679.3702 +UniRef50_B5E972 NADH quinone oxidoreductase subunit B C D 9.75325627698e-08 3.47281700506e-07 100826791.671 +UniRef50_I3R6R8 Branched chain amino acids ABC transporter permease,azaleucine resistance protein 5.2676726555e-07 8.01865116547e-07 111060378.278 +UniRef50_N6UXN6 Putative secreted adhesin 1.07169251094e-07 5.47112903536e-08 -21177922.4825 +UniRef50_Q28MM7 Phosphorylase 0.000106124843879 2.28406714962e-05 -33622842402.7 +UniRef50_A3M6U7 CsuD 1.86701138799e-06 4.11483172854e-05 15858345226.6 +UniRef50_Q0FEW4 Cation transport protein ChaC, putative 6.16379579696e-08 2.7587423158e-07 86489812.6311 +UniRef50_UPI0002C30275 PREDICTED 7.11700882617e-08 5.88617774061e-08 -4969016.13236 +UniRef50_F3G839 1.43903178701e-07 1.21358788339e-07 -9101447.03992 +UniRef50_B9J7K1 7.82720989392e-07 4.7223456485e-07 -125347179.684 +UniRef50_M4R0D2 Glycosyltransferase 1.91942028225e-06 6.74051719041e-05 26437401530.3 +UniRef50_U3TVU1 1.37248050342e-06 1.21795579043e-05 4362949764.5 +UniRef50_X3W353 Enterobactin synthase subunit F 3.20173908992e-05 1.01765042506e-05 -8817433957.86 +UniRef50_U6BEE8 Cytochrome D ubiquinol oxidase subunit I 0.000237706751042 6.45331091147e-05 -69912324325.5 +UniRef50_Q15RL2 Electron transport complex subunit D 3.48986666908e-05 1.79888348343e-06 -13362788660.8 +UniRef50_R4ZIA7 Cell surface protein 2.41904160026e-06 7.6705637713e-07 -666926706.716 +UniRef50_A5ULR0 Cobalamin synthase 3.34042009846e-05 4.95172963909e-06 -11486611833.3 +UniRef50_B9DY53 Transcription repair coupling factor 7.62288352078e-06 1.27080506178e-05 2052944359.08 +UniRef50_Q48K36 Potassium transporting ATPase B chain 2.39370461106e-06 2.01415116304e-06 -153230384.61 +UniRef50_Q2NG20 Predicted multimeric flavodoxin 4.39068691512e-05 3.70690424931e-06 -16229219139.9 +UniRef50_D2ZS60 2.98471826539e-05 3.68664155221e-06 -10561331468.7 +UniRef50_A5UM77 1.89017537927e-05 1.50589104918e-05 -1551402997.56 +UniRef50_UPI0003B68375 50S ribosomal protein L22 1.13117758353e-07 3.31207577631e-07 88045536.3056 +UniRef50_Q11H35 3.34548449671e-06 7.5148268371e-07 -1047230363.89 +UniRef50_Q1QC36 Urease subunit alpha 2 5.43904531355e-08 1.67095423867e-07 45500379.73 +UniRef50_J9NYD9 1.26550674652e-07 2.83646142146e-07 63421368.0055 +UniRef50_L0A4U7 Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED 1.78903312256e-06 0.000407501413074 1.63791066437e+11 +UniRef50_UPI00035D30E0 hypothetical protein 1.53109085598e-06 4.88253577022e-07 -421006206.569 +UniRef50_Q8YNJ3 Phosphate import ATP binding protein PstB 3 2.3217171075e-07 2.00226041529e-06 714606531.454 +UniRef50_UPI0003B49864 transporter 3.32651286779e-08 4.01553268179e-06 1607690279.11 +UniRef50_A9WS29 1.96216499744e-07 9.10210365788e-07 288248085.412 +UniRef50_UPI000363E420 hypothetical protein 1.57147688443e-06 2.182730407e-06 246770547.986 +UniRef50_A0RKD1 Possible membrane protein 2.1049404583e-06 7.31758892311e-06 2104410151.63 +UniRef50_Q9HX91 1.21256810956e-05 8.83428226811e-06 -1328778096.66 +UniRef50_D9UD16 Predicted protein 5.59763855716e-07 8.01297103416e-06 3008951199.07 +UniRef50_P45428 Putative cryptic C4 dicarboxylate transporter DcuD 2.39335129304e-05 1.10588297413e-05 -5197667593.57 +UniRef50_X6M7B3 9.85296333479e-09 1.9042138687e-08 3709782.85355 +UniRef50_A1TZP8 Type IV pilus biogenesis stability protein PilW 5.09730254437e-08 9.2477889228e-08 16756022.8317 +UniRef50_T1VWL4 Oligopeptide dipeptide ABC transporter ATPase subunit 5.64404081815e-06 4.73751438551e-05 16847358394.2 +UniRef50_Q2YW86 D specific D 2 hydroxyacid dehydrogenase 7.79483233244e-05 2.35625030732e-06 -30517447496.1 +UniRef50_T1Z3D7 6.33034572464e-05 5.46534763075e-05 -3492103452.24 +UniRef50_H2HHM8 1.09235507514e-06 5.26814967935e-05 20827169581.7 +UniRef50_UPI00040D05AB hypothetical protein 8.21528884891e-08 8.8296773994e-08 2480361.97228 +UniRef50_UPI0003A7F193 sulfate 2.95718148604e-08 5.01938378018e-08 8325363.72212 +UniRef50_UPI000465E42E hypothetical protein 1.11607215592e-07 1.15486902692e-06 421177595.496 +UniRef50_K9NK52 Putrescine binding periplasmic protein 7.61787438696e-06 3.50939072136e-06 -1658645272.57 +UniRef50_T3GIH5 AAA domain family protein 3.33344154562e-06 3.33680751748e-06 1358884.145 +UniRef50_UPI00040C7D51 hypothetical protein 4.19618720203e-07 7.79637473166e-08 -137930305.132 +UniRef50_UPI0003634400 hypothetical protein 1.23344510752e-06 1.27924486504e-07 -446312240.969 +UniRef50_Q1Q8K4 Phosphate import ATP binding protein PstB 1.86412917012e-07 2.37219767078e-06 882428127.692 +UniRef50_A6LUQ8 Phosphotransferase system, EIIC 8.3391602835e-07 1.33180116422e-05 5039982596.41 +UniRef50_Q01244 Yop proteins translocation protein C 5.46498721004e-06 1.17969389561e-06 -1730025497.5 +UniRef50_X2HA66 Macrolide specific efflux protein MacA 1.41028389365e-06 5.9816485191e-05 23579300188.4 +UniRef50_D7JTM0 Predicted protein 1.18614241335e-06 3.05157177599e-06 753096725.09 +UniRef50_V9G8C1 Transketolase 3.37823824328e-07 3.04965106184e-07 -13265467.7365 +UniRef50_D1BYT2 Succinyl diaminopimelate desuccinylase 1.53657797359e-06 4.73699729004e-05 18503503971.0 +UniRef50_UPI0003803CC2 hypothetical protein 3.25841139817e-08 6.63188510564e-06 2664218792.86 +UniRef50_U7PWZ9 1.31086609446e-07 3.81991450591e-07 101293363.319 +UniRef50_I6F1W3 7.74994548266e-07 7.58064904667e-07 -6834704.87101 +UniRef50_L1J0A5 1.80092600248e-08 1.54888823019e-08 -1017507.41525 +UniRef50_K8F0R0 Internalin J 4.96092509334e-08 3.08413378543e-07 104482402.2 +UniRef50_B9E249 7.82305421019e-06 6.85955355659e-06 -388977037.341 +UniRef50_D2UPM2 SdrD protein 5.30444391198e-06 4.05739173213e-06 -503450268.057 +UniRef50_Q9I2W4 Uroporphyrinogen III C methyltransferase 8.63346591525e-06 3.61568103094e-07 -3339466654.37 +UniRef50_E4QDT6 1.76120990128e-06 6.56002864533e-06 1937342015.1 +UniRef50_P52086 Alpha ribazole phosphatase 1.91958373824e-05 7.54223859081e-06 -4704700837.91 +UniRef50_UPI00047E8AFF hypothetical protein 5.93958941323e-08 2.37004531963e-07 71702786.5955 +UniRef50_T0NEN1 Seg 5.89943200075e-07 1.13229994581e-06 218956073.719 +UniRef50_Q8Y4A9 Release factor glutamine methyltransferase 9.20958647924e-08 2.12814190296e-05 8554389783.87 +UniRef50_UPI0004711AD3 type II secretion system protein F 3.43188022232e-08 5.94428875025e-08 10142901.5344 +UniRef50_C6XQ34 Prephenate dehydratase 1.21129334836e-05 2.3370329872e-05 4544749065.79 +UniRef50_P27128 Lipopolysaccharide 1,3 galactosyltransferase 1.3450564653e-05 4.4835808033e-06 -3620081417.39 +UniRef50_W0YR49 Acetoacetyl CoA synthetase 2.60600540258e-06 9.15237722678e-07 -682583660.428 +UniRef50_UPI0004675627 molybdopterin guanine dinucleotide biosynthesis protein A 7.22964941464e-08 2.09672965228e-07 55460567.1747 +UniRef50_UPI00046465E7 hypothetical protein 1.7279702682e-06 2.20393258775e-07 -608627338.757 +UniRef50_S6AM82 5.34272929636e-06 6.66127906449e-06 532314721.819 +UniRef50_Q54TC2 Alcohol dehydrogenase class 3 5.25474010647e-06 6.09316128661e-05 22477436765.1 +UniRef50_UPI0003B589A1 cell wall hydrolase 2.00265351458e-07 1.22273679964e-07 -31486194.8476 +UniRef50_C1DMM9 Transcriptional regulator, LysR family 5.48832102549e-06 5.78583137367e-06 120108578.423 +UniRef50_D3PTH4 1.52007780746e-06 4.7567791441e-06 1306696048.39 +UniRef50_Q98457 1.24108099618e-07 2.24871120341e-07 40679267.9672 +UniRef50_S9R6B1 Transcriptional regulator, LysR family 3.63046046953e-07 5.93796545671e-07 93156807.9595 +UniRef50_UPI00047D5268 hypothetical protein 2.33026941308e-07 1.81431292769e-07 -20829796.465 +UniRef50_A7ZXV0 8.8271932537e-07 9.68592979732e-07 34668248.0542 +UniRef50_A2C536 Bifunctional pantoate ligase cytidylate kinase 3.73425144824e-08 1.6094218651e-07 49898704.3362 +UniRef50_Q83RZ7 Anaerobic dimethyl sulfoxide reductase chain B 4.61856062089e-05 7.38291762994e-06 -15665121541.9 +UniRef50_UPI0004785D8D hypothetical protein 1.56296548754e-07 1.80036624782e-07 9584160.016 +UniRef50_UPI0003827A64 hypothetical protein 3.09298301424e-08 5.978815945e-08 11650461.673 +UniRef50_Q9L646 Anaerobic ribonucleoside triphosphate reductase 3.26720389651e-05 2.31418762758e-05 -3847443625.92 +UniRef50_V7ZGN6 Phosphatidylserine synthase 3.0606972069e-06 4.75040276462e-06 682154868.67 +UniRef50_UPI000315C43C hypothetical protein 1.21239080211e-06 4.45210210708e-07 -309720219.114 +UniRef50_S9SA83 2.20698226112e-07 1.1843926272e-06 389055255.579 +UniRef50_UPI000467D8F5 hypothetical protein, partial 7.08474948132e-08 1.75652842789e-07 42311205.0842 +UniRef50_UPI00037A985E hypothetical protein 2.51799753303e-07 1.58438342998e-07 -37691147.0135 +UniRef50_UPI00035D529A hypothetical protein 3.96247719595e-07 1.44225781518e-07 -101744349.059 +UniRef50_S9SA88 1.54011607261e-06 3.7577033466e-06 895267195.366 +UniRef50_UPI0004661BBA hypothetical protein, partial 3.15173760049e-07 1.28135299397e-07 -75509721.7852 +UniRef50_Q38854 1 deoxy D xylulose 5 phosphate synthase, chloroplastic 1.94815225927e-07 8.92550025601e-07 281684100.797 +UniRef50_Q6GI66 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 0.000253182517682 5.33237024999e-05 -80685456232.4 +UniRef50_G2IIB3 UPF0301 protein SLG_23610 1.2507684244e-07 1.8413571521e-07 23842791.6711 +UniRef50_P23905 D galactose binding periplasmic protein 3.46274129006e-05 4.05546712688e-06 -12342269668.8 +UniRef50_Q022D1 1.74468395316e-07 1.3679974322e-07 -15207297.0975 +UniRef50_Q1J9N5 Para aminobenzoate synthetase component I 4 amino 4 deoxychorismate lyase 1.34351964319e-06 5.01592486069e-05 19707508819.0 +UniRef50_E6TY02 Binding protein dependent transport systems inner membrane component 0.000118491495563 2.5400799286e-05 -37581856438.3 +UniRef50_V9UQ05 3.21896031218e-07 1.12221994542e-07 -84647981.5959 +UniRef50_C8NMF6 2.47477620977e-06 4.55318714892e-06 839080001.105 +UniRef50_A3PKK7 6.14146619484e-06 5.14757296004e-06 -401246895.33 +UniRef50_UPI00016C558B DNA gyrase subunit A 3.408732803e-07 1.02573196371e-06 276485854.654 +UniRef50_Q5YWD4 NADH quinone oxidoreductase subunits H I 2.23639858044e-08 3.20873879936e-07 120512107.389 +UniRef50_UPI00036E3130 hypothetical protein 5.64032516502e-08 1.77651688001e-07 48949481.6405 +UniRef50_UPI0002558195 ABC transporter ATP binding protein, partial 1.08526225885e-06 1.37063456903e-07 -382799492.054 +UniRef50_H9JRN0 9.82216877676e-07 3.20355447479e-06 896781246.831 +UniRef50_P52276 Asparagine tRNA ligase 2.29198608535e-05 1.26289788874e-05 -4154555333.04 +UniRef50_UPI00037E9004 hypothetical protein 4.36198360535e-07 7.08053883612e-06 2682401785.22 +UniRef50_X6F5A2 ABC transporter permease 4.58466101908e-08 7.71129394756e-08 12622600.8133 +UniRef50_A9M1A6 Ribosomal RNA small subunit methyltransferase J 4.52179490217e-06 1.6001640409e-05 4634554504.64 +UniRef50_W5HYZ3 8.29032186386e-07 1.31935981468e-06 197951280.539 +UniRef50_J9YT00 2.04046480461e-06 1.73375756472e-06 -123821476.465 +UniRef50_P77790 D alanyl D alanine dipeptidase 6.55190302961e-05 3.11406016025e-06 -25193652238.9 +UniRef50_E3GEX1 Glyoxalase 2.42496352579e-06 3.81053813154e-06 559373471.254 +UniRef50_UPI0003723E28 hypothetical protein 1.41675297315e-07 2.03189561906e-07 24834063.4803 +UniRef50_W6RE07 3.71618233475e-06 1.17267073799e-06 -1026846844.01 +UniRef50_UPI0001913E60 hypothetical protein, partial 5.34102705541e-06 5.8528226382e-06 206618157.21 +UniRef50_Q1Q8J3 Trigger factor 8.49555863898e-07 8.05462955226e-05 32174551789.2 +UniRef50_P19066 Nitrogenase molybdenum iron protein alpha chain 0.000144885354579 1.54395360669e-05 -52258865412.1 +UniRef50_UPI0002F6860E hypothetical protein 1.93890810907e-07 1.16786842418e-05 4636552042.32 +UniRef50_A6TT61 Biotin synthase 1.39809625497e-06 8.46201930427e-06 2851792419.09 +UniRef50_C1CRY7 S1 RNA binding domain protein 4.25992736669e-05 5.59193946457e-05 5377496295.41 +UniRef50_X1MW22 Marine sediment metagenome DNA, contig 2.98357384804e-06 7.68121571965e-07 -894405270.506 +UniRef50_UPI000470373F amidophosphoribosyltransferase, partial 1.8198806015e-07 1.06780516308e-06 357615234.651 +UniRef50_J8WK23 Type III restriction modification system EcoPI enzyme, subunit res 7.84118886106e-07 3.14278181702e-05 12371237441.5 +UniRef50_E3F2Y8 Arsenate reductase like protein 1.24805804095e-06 7.33712978296e-07 -207647413.517 +UniRef50_UPI0003B7001D hypothetical protein 5.73180080942e-07 3.87182781961e-07 -75089392.0422 +UniRef50_B9KXJ4 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 7.66775953251e-08 1.97727214673e-07 48869216.7767 +UniRef50_UPI000379C639 hypothetical protein 1.66630372767e-07 2.95135632112e-07 51879150.1344 +UniRef50_Q6FDX8 Maf like protein ACIAD0829 2.19044094112e-06 0.000104349213209 41242749993.7 +UniRef50_B1IMR8 Transposase C for 3.04424184557e-06 1.92741751511e-05 6552223239.11 +UniRef50_UPI0003716807 hypothetical protein 1.20722191403e-07 4.89677230817e-07 148951676.999 +UniRef50_A1B4U8 Rhs element Vgr protein 3.05110867345e-05 5.71627003944e-06 -10009971766.4 +UniRef50_F0RMF0 Aminomethyltransferase 2.11064491351e-06 0.00046324697242 1.86166394193e+11 +UniRef50_G5JYJ7 Phosphatidate cytidylyltransferase like protein 4.48395932219e-05 3.33691192315e-06 -16755141735.5 +UniRef50_Q9I4X6 Chaperone CupC2 2.066529136e-06 5.3050905124e-06 1307446969.27 +UniRef50_UPI0004781EE1 NADH dehydrogenase 3.03663793051e-08 5.73246184821e-07 219167239.371 +UniRef50_UPI00047C938B cold shock protein 3.37886871772e-07 2.09617821213e-07 -51783789.7489 +UniRef50_UPI0003B3943C xanthine CO dehydrogenase maturation protein 3.67234948385e-08 1.56522615145e-07 48364374.9681 +UniRef50_Q13LM2 ABC putrescine transporter, inner membrane subunit PotI 1.43167884525e-06 3.10453657663e-05 11955408810.8 +UniRef50_UPI000289739C amino acid carrier protein, partial 1.64955637756e-07 9.2876876301e-06 3682958853.82 +UniRef50_Q4FMW6 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.88313139591e-07 9.30230463347e-07 259149900.812 +UniRef50_I4F4V3 6.73437744018e-07 1.8383107134e-07 -197660221.91 +UniRef50_A0A059ABD6 4.27008770127e-07 3.55776615116e-07 -28757295.0948 +UniRef50_UPI00047AED65 hypothetical protein 1.44619946454e-07 9.36617646108e-07 319739190.255 +UniRef50_F3ZC19 Putative 3 oxoacyl ACP synthase II 1.75296749475e-08 2.47177834149e-06 990810303.7 +UniRef50_H3F275 1.98328890814e-06 6.30033363477e-06 1742843932.24 +UniRef50_D9SKB5 3.74986081636e-06 5.00932806491e-06 508462383.641 +UniRef50_A0A023RVI8 Magnesium transporter 3.01185629405e-06 9.18823414902e-05 35878105437.2 +UniRef50_F5M3S4 8.56842380994e-05 1.14250158396e-06 -34130536475.0 +UniRef50_B5F621 Mannonate dehydratase 2.09359949345e-05 5.0543648718e-06 -6411608945.83 +UniRef50_M9VAU8 2.46722868534e-06 5.63197060303e-05 21740905948.4 +UniRef50_UPI000408DFD9 hypothetical protein 3.44769909732e-08 3.01681764831e-06 1204007520.8 +UniRef50_P0A130 1.33204368662e-05 7.06947747623e-06 -2523589013.63 +UniRef50_Q3IZJ1 3.91797543566e-05 2.14256376199e-06 -14952368340.5 +UniRef50_B8EFC6 Lipoprotein signal peptidase 1.09586699489e-07 3.61799090311e-07 101821237.169 +UniRef50_Q8CPS1 Glucose 6 phosphate 1 dehydrogenase 7.66633030792e-05 1.00442060216e-05 -26894946990.4 +UniRef50_UPI0004659DA3 glutamyl tRNA synthetase 7.02323465901e-08 4.23636132906e-08 -11250949.6208 +UniRef50_A6QDY9 0.000114495888984 1.92582947912e-05 -38448585472.3 +UniRef50_Q5HLX2 Molybdenum ABC transporter, ATP binding protein ModC 0.000304860752542 6.23789802915e-05 -97892867043.3 +UniRef50_F4T4M6 4.05623910255e-06 1.18624748408e-07 -1589663234.73 +UniRef50_M4YZ38 Mutator protein 2.54381906842e-05 1.97047055441e-05 -2314678308.83 +UniRef50_UPI000473A889 hypothetical protein, partial 2.19733420959e-07 2.27223392726e-06 828619641.407 +UniRef50_M9VKV2 Efflux ABC transporter permease 2.64238813255e-06 6.6006347032e-05 25580807770.9 +UniRef50_UPI000288B881 ABC transporter ATP binding protein 2.73946790058e-07 4.0037731358e-07 51041553.8228 +UniRef50_M7A534 Tex like N terminal domain protein 6.50154837314e-08 3.21953948561e-06 1273520049.92 +UniRef50_UPI0002376558 ribose galactose ABC transporterpermease, partial 4.81395714206e-06 4.7353849886e-06 -31720542.5406 +UniRef50_Q02N09 2.27401198102e-06 3.565191612e-06 521265061.582 +UniRef50_Q0K9Q9 Cation multidrug efflux pump 4.80478171689e-06 4.27814023884e-06 -212611627.306 +UniRef50_F0SEF6 Transcriptional regulator, BadM Rrf2 family 3.07672933767e-07 4.82817918505e-07 70708179.6094 +UniRef50_UPI0004788904 glucose 6 phosphate dehydrogenase 4.00982226365e-08 6.27362188813e-08 9139236.88348 +UniRef50_UPI0004434C05 PREDICTED 2.89876910028e-08 7.70846661495e-08 19417339.083 +UniRef50_UPI0002DB754C hypothetical protein 1.48669932552e-07 2.31199342946e-07 33318135.7258 +UniRef50_M4MUD1 3.93715181761e-07 3.66739167718e-06 1321623373.73 +UniRef50_Q4L9F7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000113744248511 3.63708004323e-05 -31236610468.4 +UniRef50_G8V7N9 2.2356095159e-06 6.13739302249e-05 23874865779.0 +UniRef50_Q023V7 Chorismate synthase 1.31826381159e-07 1.25872165644e-06 454941451.191 +UniRef50_A7BEJ6 LPXTG motif cell wall anchor domain protein 2.44788292356e-06 2.29374617795e-05 8271894419.53 +UniRef50_UPI0003B44F1F transcriptional regulator 2.92909441915e-06 6.97460678316e-07 -900937926.399 +UniRef50_Q9HTE2 7.48118971379e-06 3.53672700827e-06 -1592427998.22 +UniRef50_Q989G8 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 0.000152931653212 1.11396529743e-05 -57243170479.6 +UniRef50_UPI0004715D8D alkane 1 monooxygenase 4.88503086336e-08 1.57246154303e-07 43760733.0632 +UniRef50_UPI000289EDA6 GAF sensor hybrid histidine kinase 5.36278806284e-08 2.47100604107e-06 975925227.936 +UniRef50_Q6FCV5 Lipoprotein 7.81278586898e-06 0.000115673418346 43544660929.8 +UniRef50_UPI0003F7499C 3 oxoacyl ACP reductase 8.65916829654e-08 4.06237063481e-07 129044762.604 +UniRef50_UPI0003B3ACCD ABC transporter permease 1.48837292117e-06 9.29802496461e-07 -225501734.885 +UniRef50_P69799 PTS system mannose specific EIIAB component 4.53439695357e-05 2.73864023365e-06 -17200294265.4 +UniRef50_I7DNJ2 Pyruvate carboxylase 6.31582210675e-05 2.11157548887e-05 -16973059515.5 +UniRef50_Q8FHG0 HTH type transcriptional regulator YdeO 2.59678317979e-05 2.3815863322e-06 -9522056730.28 +UniRef50_Q8FBT8 Phosphate specific transport system accessory protein PhoU 3.36421687162e-05 1.7583751909e-05 -6482979924.0 +UniRef50_Q8E4M4 7.4888439944e-05 1.57853883591e-05 -23860627200.8 +UniRef50_UPI0003B6CE98 gas vesicle protein 3.27849446176e-06 1.98514041641e-06 -522142899.347 +UniRef50_Q9RVY3 8.17831775596e-06 0.000437856768564 1.73466463339e+11 +UniRef50_P27238 6.67859826427e-06 7.00355822605e-06 131190324.278 +UniRef50_F0XVM8 Expressed protein 1.83035479424e-06 1.61661083112e-07 -673672128.358 +UniRef50_UPI00046666B3 maltooligosyl trehalose synthase 3.00394124171e-08 1.99795068666e-08 -4061307.31966 +UniRef50_P11959 Dihydrolipoyl dehydrogenase 0.000120707170418 3.57307212383e-05 -34306035312.1 +UniRef50_Q9ZH99 Isocitrate dehydrogenase [NADP] 0.000177947085274 0.000505071278369 1.32064051018e+11 +UniRef50_D4HEQ0 Phosphofructokinase 3.21442448304e-06 5.24117010157e-05 19861544254.7 +UniRef50_N6YIN7 2.92471219367e-07 1.40525406206e-07 -61342389.3579 +UniRef50_D6M4Q7 7.6348343069e-07 5.76013143876e-06 2017208116.62 +UniRef50_E1V3L9 2.48578436584e-06 1.74239613579e-06 -300114950.871 +UniRef50_C6STB9 6.23048199751e-05 3.93991603926e-05 -9247295857.51 +UniRef50_UPI000474260B DNA gyrase subunit B 2.10075203363e-07 2.83705726897e-07 29725545.8988 +UniRef50_UPI00036EEE9D hypothetical protein 1.2125159659e-07 1.48645824741e-07 11059386.0695 +UniRef50_G7LZP2 SMC domain protein 1.00976296509e-06 8.37118377555e-06 2971895915.97 +UniRef50_M1WSJ3 Protein CreA 1.25914867791e-07 1.44075415584e-07 7331635.99902 +UniRef50_A6LR21 Binding protein dependent transport systems inner membrane component 1.49203948168e-06 1.49618833866e-05 5437941277.98 +UniRef50_Q9WYT7 Probable transcriptional regulatory protein TM_0466 0.000126217631373 1.19873009354e-05 -46116186161.6 +UniRef50_J9P642 1.22827108352e-07 1.58829650154e-07 14534667.9263 +UniRef50_O65396 Aminomethyltransferase, mitochondrial 1.61649018132e-07 6.08946753519e-08 -40675764.5751 +UniRef50_I6U214 Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system 5.28532609915e-05 2.09060148228e-05 -12897495315.1 +UniRef50_U6A7W2 Extracellular Matrix protein PelB 6.35676657784e-08 7.88961355707e-08 6188291.35663 +UniRef50_UPI0003652A76 hypothetical protein, partial 3.47208997701e-07 2.43194607304e-07 -41991885.8034 +UniRef50_UPI0001FFEBC1 alpha dehydro beta deoxy D glucarate aldolase 5.66794851686e-07 3.87442773627e-06 1335331984.72 +UniRef50_UPI00047E6581 hypothetical protein 2.78169934413e-08 4.07028030531e-08 5202159.46695 +UniRef50_A7MK41 Ribosomal RNA large subunit methyltransferase H 2.84209371122e-05 1.56950570598e-05 -5137593941.26 +UniRef50_UPI00003793A9 hypothetical protein 0.000158119949092 2.89894976593e-05 -52131547852.3 +UniRef50_D9ST52 5.67908745949e-06 9.21853242513e-06 1428917366.5 +UniRef50_R0XB61 8.68509441421e-05 1.36832650265e-05 -29538689927.4 +UniRef50_Q4KEY4 Chitinase 2.42373475001e-06 7.90942824762e-06 2214641782.01 +UniRef50_UPI00035CFB31 hypothetical protein 3.22622799594e-08 1.14221783469e-07 33088057.323 +UniRef50_A1BBC0 Dihydrodipicolinate synthetase 1.5038378906e-05 6.18743774582e-06 -3573233559.63 +UniRef50_UPI0003606737 hypothetical protein, partial 7.84895808442e-08 7.27858325265e-07 262158130.773 +UniRef50_P77555 Ureidoglycolate dehydrogenase ) 2.02580429175e-05 1.39285310958e-05 -2555301594.26 +UniRef50_B0KQI9 Mammalian cell entry related domain protein 1.62148323626e-05 6.08574197497e-07 -6300437931.57 +UniRef50_Q5N7D3 1.0612648894e-06 2.33360722439e-07 -334235071.729 +UniRef50_Q6A5B4 2.69632849186e-06 1.88150082771e-05 6507308827.73 +UniRef50_UPI0004729581 aminotransferase 6.15799168942e-08 7.13631583799e-07 263241259.503 +UniRef50_Q1WSM8 1,4 alpha glucan branching enzyme GlgB 4.05253999462e-06 2.22668756542e-05 7353350820.81 +UniRef50_UPI0002196E5D biotin biosynthesis protein BioY 1.32949176993e-07 4.57623178041e-07 131074878.421 +UniRef50_O27236 Methyl coenzyme M reductase I subunit beta 4.86698395396e-05 2.43579822391e-05 -9814995132.25 +UniRef50_A5VZ70 Permease YjgP YjgQ family protein 1.23493442736e-05 9.60869232393e-06 -1106434823.66 +UniRef50_K2AI23 1.06211860257e-06 3.45863517985e-07 -289160967.085 +UniRef50_UPI0004758DC8 hypothetical protein 1.25772857788e-07 7.41964046299e-08 -20822047.0542 +UniRef50_C8XBK0 Transcriptional regulator, Fis family 3.86754475757e-07 2.88314795161e-06 1007824680.39 +UniRef50_X1DSN1 Marine sediment metagenome DNA, contig 2.65336766156e-07 8.48440293581e-07 235406049.506 +UniRef50_A6LQD7 2 alkenal reductase 9.35142829476e-07 1.65442969298e-05 6301607056.15 +UniRef50_P75828 4.39320652914e-05 1.58271498759e-05 -11346299239.3 +UniRef50_Q96397 LRG5 1.59805106584e-07 1.12312682522e-07 -19173274.3914 +UniRef50_Q979N7 Peroxiredoxin 8.97950839155e-08 5.74016101235e-06 2281122063.09 +UniRef50_UPI0002F0BE06 hypothetical protein 2.05065009442e-07 9.39769623437e-07 296609268.509 +UniRef50_UPI00045492E4 PREDICTED 3.81407449199e-08 2.91352151312e-07 102224552.014 +UniRef50_UPI00042548B2 hypothetical protein 4.2928636857e-07 6.06703456241e-07 71625455.4453 +UniRef50_B8CXX9 Predicted nucleotide kinase 2.34463347108e-06 3.55803259269e-06 489864115.476 +UniRef50_F0C0C2 TRAP type C4 dicarboxylate transport system, large permease component 4.8581506978e-06 1.91399145994e-06 -1188593213.22 +UniRef50_A5UMP3 Probable cobalamin biosynthesis protein CobD 2.10044954735e-05 2.09692335056e-06 -7633218888.02 +UniRef50_A0A015CJF0 DnaJ domain protein 3.43760850162e-07 1.09628869531e-06 303804725.641 +UniRef50_A6LQC6 Polysaccharide deacetylase 1.46123608583e-06 3.84767221542e-05 14943605956.9 +UniRef50_U2W2Q1 TIGR01906 family protein 3.53827307983e-07 2.582116448e-07 -38601216.5631 +UniRef50_U5MRU9 2.10886027289e-06 1.10803352691e-05 3621894548.35 +UniRef50_UPI0003B6A7C9 flagellar biosynthesis protein FlhA, partial 1.57274318512e-08 1.46080846596e-07 52625273.1488 +UniRef50_B4WWC7 9.46072664305e-08 1.12480450166e-05 4502779687.83 +UniRef50_I8QJJ6 1.58348065441e-06 1.72637998293e-06 57690212.4955 +UniRef50_UPI0001D61AB0 1.85766623704e-07 6.3396049898e-08 -49402502.3013 +UniRef50_B9KKZ2 9.71793574354e-06 7.60472202226e-06 -853130311.329 +UniRef50_P39165 3.37734796223e-05 1.63202158092e-05 -7046096776.98 +UniRef50_Q6GJA0 Glucosamine 6 phosphate deaminase 0.000202986336909 7.0823497383e-05 -53355760137.1 +UniRef50_C1EN33 CCA adding enzyme 9.76621801715e-08 3.2583937137e-06 1276026106.62 +UniRef50_P37621 UPF0226 protein YhhS 2.62132005974e-05 4.67241607633e-06 -8696279046.32 +UniRef50_D2JDV7 Replication initiator protein 1.57057708253e-05 1.30508168705e-06 -5813734921.46 +UniRef50_M8L412 Bacterial regulatory helix turn helix , lysR family protein 1.94580406623e-06 8.60145743281e-06 2686968938.14 +UniRef50_UPI00037BFAD6 hypothetical protein 1.22954391191e-07 9.90281165785e-08 -9659330.66947 +UniRef50_Q088F4 Drug resistance transporter, EmrB QacA subfamily 1.24781442938e-05 7.4042245952e-06 -2048403646.32 +UniRef50_UPI0003B6C95A isoleucyl tRNA synthase 1.42603758153e-08 2.86211815939e-08 5797633.51972 +UniRef50_P0AC99 Succinate acetate proton symporter SatP 1.49840670868e-05 5.10153832381e-05 14546284484.3 +UniRef50_UPI00036D3FBE hypothetical protein 2.6321064597e-08 2.60428755943e-06 1040756709.17 +UniRef50_P0ACP6 HTH type transcriptional regulator GntR 2.01005529766e-05 2.39122838212e-06 -7149471656.65 +UniRef50_Q2NGT2 UvrABC system protein C 2.4010658379e-05 1.18837878991e-05 -4895766426.17 +UniRef50_UPI00029AE452 hypothetical protein 2.88057995679e-08 1.89391482973e-07 64830410.9985 +UniRef50_Q9JUD9 Sulfite reductase [NADPH] hemoprotein beta component 4.51982864619e-05 3.800083113e-05 -2905701040.2 +UniRef50_B9E1W5 Arginine tRNA ligase 5.98467216048e-06 8.27577271651e-06 924945409.435 +UniRef50_UPI000426EB18 hypothetical protein 1.33733353107e-06 1.0266025052e-07 -498452754.503 +UniRef50_Q9X1B8 Isoprenyl transferase 9.95319935242e-08 1.50295297829e-07 20493768.8836 +UniRef50_G7M3S8 Dihydropyrimidinase 1.34018694272e-06 6.0098254429e-06 1885190365.43 +UniRef50_H0YAA0 3.18149953669e-06 2.16834004861e-07 -1196871855.74 +UniRef50_X5ENC8 Fructose bisphosphate aldolase 1.29128616484e-06 5.21952377765e-05 20550549927.4 +UniRef50_A0A023LEN6 3.33179824425e-06 1.14115354466e-05 3261889058.11 +UniRef50_UPI000368781F ferredoxin 2.31249364166e-07 8.78298635762e-07 261221731.131 +UniRef50_A6LQ12 Male sterility C terminal domain 3.34566672732e-06 2.13499511305e-05 7268550550.99 +UniRef50_UPI00046FDE0E hypothetical protein 2.6406486128e-08 7.12157110488e-08 18090033.9716 +UniRef50_P14294 DNA topoisomerase 3 2.56902142559e-05 1.30756232685e-05 -5092665180.05 +UniRef50_UPI000379CA00 hypothetical protein 1.21181810849e-06 9.77046815494e-07 -94780051.9502 +UniRef50_A6QIC9 Aspartyl glutamyl tRNA amidotransferase subunit C 6.43061121219e-05 6.56259344878e-06 -23311767081.0 +UniRef50_L7WTC7 0.000141131368465 2.07341700487e-05 -48605826440.3 +UniRef50_UPI00037FDD54 hypothetical protein 1.96252436814e-06 1.20833246362e-06 -304476526.83 +UniRef50_P37648 Protein YhjJ 3.70946003206e-05 6.5039344471e-06 -12349827202.8 +UniRef50_D4MIN1 Phage portal protein, HK97 family 1.13082847392e-07 2.33988867451e-07 48811243.9815 +UniRef50_A7MLE5 Glucans biosynthesis protein D 3.12058113402e-05 5.55438491655e-06 -10355795625.6 +UniRef50_N6VC63 1.83304830633e-07 8.94310258223e-07 287041616.136 +UniRef50_UPI0002D4E509 diacylglyceryl transferase 3.7695062803e-08 1.22668116473e-07 34304664.5032 +UniRef50_Q1QSC0 Ribosomal RNA small subunit methyltransferase G 4.23181801808e-07 4.27671122008e-07 1812393.65489 +UniRef50_P75791 3.1443388624e-05 1.01190376258e-05 -8608902177.19 +UniRef50_UPI0004785E92 hypothetical protein 4.84213461261e-08 7.51860702676e-08 10805247.576 +UniRef50_Q3J6L2 0.000133665133121 3.40248274179e-05 -40226014136.4 +UniRef50_Q5HQ32 Bacteriocin production protein, putative 6.64213673359e-05 2.53352190475e-05 -16586982247.8 +UniRef50_B7RN53 2.15345364451e-06 3.05768799197e-07 -745933045.694 +UniRef50_B2S1L1 Holliday junction ATP dependent DNA helicase RuvB 1.18510462944e-07 9.82946776368e-08 -8161360.6041 +UniRef50_O32090 Nicotinate phosphoribosyltransferase 0.000178360404444 7.5607708909e-05 -41482524104.8 +UniRef50_M5VMV2 1.00634205237e-07 1.90530917592e-07 36292405.9344 +UniRef50_A5W827 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.77779900556e-06 1.05942893619e-07 -674948828.372 +UniRef50_F0XWS4 Expressed protein 1.04095888582e-06 7.5512280715e-07 -115395532.562 +UniRef50_UPI0002ECD2DE hypothetical protein 4.61217208092e-08 1.01438606145e-06 390900196.256 +UniRef50_Q5FP95 Siroheme synthase 1.07557063363e-07 1.14006352649e-07 2603657.22644 +UniRef50_Q0SPB0 Triosephosphate isomerase 7.01049886686e-08 1.05086785847e-07 14122580.7958 +UniRef50_UPI0004651951 chemotaxis protein CheY 1.49129767041e-06 1.44602834871e-06 -18275780.6873 +UniRef50_P74892 Sucrose operon repressor 0.000240869588049 4.40291493836e-05 -79466900592.9 +UniRef50_G8V9H7 Amino acid permease 1.00752488128e-06 5.9431305216e-05 23586397061.5 +UniRef50_Q7VN08 Cytochrome c type biogenesis protein CcmE 1.79808786101e-05 4.41870381833e-06 -5475216390.05 +UniRef50_UPI00035F3E28 hypothetical protein 1.33631278623e-07 1.06559701747e-06 376246005.278 +UniRef50_C6SQA7 3.95246756188e-05 2.43059016624e-06 -14975337492.8 +UniRef50_Q12V31 NH dependent NAD(+) synthetase 2.9797804152e-07 7.65573468689e-08 -89390251.5681 +UniRef50_UPI0004752D4B hypothetical protein 2.58875730278e-07 5.69140067745e-07 125257520.407 +UniRef50_Q6GI89 Tryptophan tRNA ligase 0.000109333146344 1.13014502294e-05 -39576598705.7 +UniRef50_UPI000368C1C4 hypothetical protein 1.55716083415e-07 9.1018956368e-08 -26119024.1119 +UniRef50_H5YKA6 ABC type metal ion transport system, periplasmic component surface antigen 4.08522627183e-07 1.81465921016e-07 -91665578.5787 +UniRef50_F7CCI5 3.116824508e-07 6.5003732542e-08 -99587225.649 +UniRef50_O02604 Bifunctional dihydrofolate reductase thymidylate synthase 7.93608516497e-08 3.96615543874e-08 -16027093.47 +UniRef50_F0QJF6 4.71857486069e-06 2.77689329651e-05 9305712426.45 +UniRef50_UPI0003725CB2 hypothetical protein 1.04217873342e-07 1.55481626594e-07 20695806.2648 +UniRef50_B9E8W4 0.000256654013309 4.22908758093e-05 -86541029140.3 +UniRef50_UPI000374716A hypothetical protein 2.50054354727e-07 4.18729287735e-07 68096140.3295 +UniRef50_UPI000364771D hypothetical protein 6.98819719093e-08 1.06245334663e-07 14680335.7723 +UniRef50_K2JZV8 1.90693909314e-06 1.16707012549e-06 -298694181.454 +UniRef50_UPI0003F9070E hypothetical protein 3.62920662566e-07 2.48770715314e-07 -46083734.483 +UniRef50_C0Q1R0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 2.33425917312e-05 3.40914024259e-06 -8047378976.9 +UniRef50_F0RPF4 Protoporphyrinogen oxidase 6.08234299602e-06 0.000317714930706 1.2580989982e+11 +UniRef50_Q8K9C8 GTP binding protein TypA BipA homolog 2.10644617408e-06 9.00850071806e-05 35518024696.7 +UniRef50_F0GD65 Putative binding protein dependent transport system protein 7.15512481104e-07 2.69931663895e-06 800886082.539 +UniRef50_R6FYV1 1.22986344501e-05 4.07297720698e-05 11477999146.4 +UniRef50_S5YQ77 YGGT family protein 0.000137530770647 6.73726323636e-06 -52802943958.6 +UniRef50_UPI000403B702 helicase UvrD 5.20635737455e-08 2.57846564603e-07 83077118.6506 +UniRef50_UPI00036F2F3A hypothetical protein, partial 3.63651196026e-07 5.60019036418e-07 79276106.8706 +UniRef50_UPI0001BF7409 hypothetical protein SMAC_09879, partial 3.3998007537e-07 4.12073585897e-07 29105034.8866 +UniRef50_F4VSV6 Putative ribosomal protein 7.81005494173e-06 1.22200015942e-05 1780349579.73 +UniRef50_G7ZRG1 AraC family transcriptional regulator, putative 0.00011698448521 1.89312447431e-05 -39585296425.1 +UniRef50_UPI0003B76C42 hypothetical protein, partial 1.94481730646e-07 2.87641334546e-07 37609675.2913 +UniRef50_UPI000299D763 L serine dehydratase, beta subunit 1.08169863321e-07 2.58667918695e-06 1000604628.68 +UniRef50_Q031Z8 UPF0397 protein LACR_0367 0.000212358444449 9.94222922908e-05 -45593710508.6 +UniRef50_P57178 Flagellum specific ATP synthase 3.82467245661e-06 3.43079672703e-06 -159012465.43 +UniRef50_U3SZ43 Acyl CoA thioesterase 2.881572434e-06 7.3306351108e-05 28431347359.9 +UniRef50_UPI0004666EB7 sulfate ABC transporter ATP binding protein 1.22388281795e-06 1.70641703146e-06 194804983.355 +UniRef50_D4HA77 2.34463347108e-06 0.000147060945156 58423750896.1 +UniRef50_E6IF75 2.07177487215e-05 1.08042697022e-05 -4002193132.16 +UniRef50_Q74D60 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 5.96663777539e-08 1.51969689682e-07 37263979.7144 +UniRef50_UPI0000557724 COG1620 1.75235532535e-07 2.6521977848e-07 36327744.3189 +UniRef50_O25515 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 1.44630647073e-06 1.00819142047e-05 3486300813.03 +UniRef50_UPI0001DCFDB5 200 kDa antigen p200, putative 6.75759143863e-06 1.05541305319e-05 1532709420.73 +UniRef50_P69832 Galactitol permease IIC component 2.2981789217e-05 6.55256825911e-06 -6632678109.92 +UniRef50_J5ICW8 Putative lysophospholipase 2.71684416606e-07 2.11684601435e-07 -24222661.6651 +UniRef50_I6TY61 ABC transporter ATP binding protein 4.50230988964e-05 6.20774206503e-06 -15670235870.8 +UniRef50_UPI000475C521 deaminase reductase, partial 4.53696528916e-07 4.42474356264e-06 1603160417.74 +UniRef50_A5UM23 Pre mRNA splicing ribonucleoprotein PRP31 2.20931194104e-05 2.37838957205e-06 -7959078362.7 +UniRef50_J2X7R8 6.46116202093e-06 1.86223068576e-06 -1856645015.24 +UniRef50_UPI000440E4B2 PREDICTED 5.81413082748e-08 1.48482965794e-06 575971594.197 +UniRef50_G7M114 Stage III sporulation protein AF 1.89374241902e-06 1.48201825466e-05 5218562504.77 +UniRef50_UPI00034B4D85 phosphoenolpyruvate synthase 1.99062207731e-08 5.61983870749e-06 2260761463.79 +UniRef50_X7UI62 PPE family protein 1.99959931282e-07 5.40012751533e-07 137283496.453 +UniRef50_F8KL74 9.77436275283e-05 2.70292832158e-05 -28548248561.5 +UniRef50_Q8TZ14 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.49597359468e-07 3.38465102549e-07 35876998.4116 +UniRef50_Q4KFA5 Glycerophosphodiester phosphodiesterase family protein 1.09767267228e-05 6.14283862328e-06 -1951499944.25 +UniRef50_UPI00047B798B glycine cleavage system potein H 2.11491785069e-07 3.30937755676e-07 48221804.1009 +UniRef50_E1SRN0 Type IV pilus biogenesis stability protein PilW 6.48411070611e-08 1.56604531864e-07 37046020.6568 +UniRef50_J9NUS4 2.13380003615e-06 3.73359149747e-07 -710711588.879 +UniRef50_J9NUS2 3.45555450412e-07 9.67128867077e-07 250936815.871 +UniRef50_UPI00034A41B8 hypothetical protein 2.25359465795e-07 6.31021569517e-05 25384134730.1 +UniRef50_UPI0003C7E91A GntR family transcriptional regulator, partial 2.3991121863e-07 3.75377061492e-07 54689223.1162 +UniRef50_Q49174 Methyl coenzyme M reductase II subunit alpha 2.94859230613e-05 1.94905370055e-05 -4035260007.91 +UniRef50_Q1JM47 Transporter 5.7880553415e-05 1.51525078939e-05 -17249836308.9 +UniRef50_N3KST8 Trehalose 6 phosphate phosphatase 8.6909620675e-05 4.10886328969e-05 -18498495052.8 +UniRef50_UPI000287F633 D amino acid dehydrogenase 2.09000273695e-07 1.10942734315e-07 -39587031.949 +UniRef50_A0A023LC15 6.88396038288e-06 9.64807604116e-06 1115907410.76 +UniRef50_A5N1N7 Acyl protein synthetase related protein 2.1189380417e-06 1.46048479544e-05 5040715051.1 +UniRef50_W0YM34 Protein YqjC 6.86338161548e-06 4.56675317307e-06 -927177085.001 +UniRef50_Q3J8Q5 50S ribosomal protein L10 0.000140700515183 4.3007287164e-06 -55066267610.3 +UniRef50_UPI00037516DE O acetylhomoserine lyase, partial 1.76495236422e-07 1.44173451457e-07 -13048701.2233 +UniRef50_Q8CRJ8 0.000182927710192 0.000105527874228 -31247263581.5 +UniRef50_A6LQ15 BAAT Acyl CoA thioester hydrolase like protein 1.46881707723e-06 1.3322924822e-05 4785648762.84 +UniRef50_UPI00022CA5D6 4.34105410157e-08 5.81796254078e-08 5962460.60614 +UniRef50_UPI00036E56FD hypothetical protein 4.58424089983e-08 4.89660714756e-08 1261060.87374 +UniRef50_UPI0002D738C7 hypothetical protein 2.1801144637e-07 2.49374435035e-07 12661623.3912 +UniRef50_B9TD78 Circumsporozoite protein, putative 7.70119206871e-07 1.02412649186e-06 102545857.97 +UniRef50_Q9I1W8 Catalase HPII 8.76617686367e-05 2.11350414225e-05 -26857656151.1 +UniRef50_K7U318 6.75967944459e-07 3.25174686853e-06 1039873560.01 +UniRef50_Q9JWJ3 Cysteine tRNA ligase 5.72623314325e-08 3.53169547732e-06 1402671297.09 +UniRef50_UPI00047AB713 ferredoxin 4.29483646938e-07 7.0244730666e-07 110198779.071 +UniRef50_E0S112 Iron ABC transporter permease protein 6.34842803854e-06 1.99531177304e-05 5492380176.94 +UniRef50_UPI000477640E PTS mannose transporter subunit IIA 1.01073529622e-07 3.85738088801e-07 114922575.768 +UniRef50_A5UKG0 6.08848369114e-06 6.49047703726e-06 162289646.842 +UniRef50_A5IRE1 SNARE associated Golgi protein 0.000114950751302 6.56497924798e-05 -19903402067.3 +UniRef50_A8LR27 8.1983488224e-07 5.60727921252e-06 1932750024.68 +UniRef50_UPI000381B84D hypothetical protein 5.08342949261e-07 4.09768897416e-07 -39795554.3695 +UniRef50_D8GPH6 Conserved protein with a HD domain 1.57504585052e-06 8.06703602053e-06 2620896097.31 +UniRef50_Q5PJX5 Ribose import ATP binding protein RbsA 3.05614885899e-05 1.17288146481e-05 -7602981573.2 +UniRef50_Q44532 Ferredoxin NADP reductase 0.000136533612924 3.75399056117e-05 -39964974431.4 +UniRef50_C7IYC6 Os02g0235900 protein 2.45218609646e-06 4.7279892046e-06 918769642.001 +UniRef50_B9DTQ1 Replication initiation and membrane attachment protein 6.38270324875e-05 2.58071224544e-05 -15349104237.1 +UniRef50_UPI0004754009 flagellar biosynthesis protein FliQ 5.67263248362e-06 1.07060932472e-06 -1857893222.42 +UniRef50_Q42601 Carbamoyl phosphate synthase large chain, chloroplastic 1.23454295123e-06 4.31263341502e-05 16912230177.1 +UniRef50_UPI000476D67D peptide ABC transporter permease 3.11754917464e-07 9.38404971617e-08 -87974725.5866 +UniRef50_O33525 Malate dehydrogenase 8.66209450564e-07 2.53539615393e-07 -247342330.763 +UniRef50_Q0FSC8 Replication initiator RepC 4.76618007924e-08 1.50810307365e-07 41642317.878 +UniRef50_G8VEZ7 Long chain fatty acid CoA ligase synthetase 1.82054112119e-06 4.67357938346e-05 18132838692.5 +UniRef50_A4QEG9 Riboflavin biosynthesis protein RibBA 4.2503120067e-06 0.000176430629816 69511307189.6 +UniRef50_UPI00047D89FD hypothetical protein 6.02961556353e-08 1.83051267617e-07 49557745.0818 +UniRef50_Q0A4L8 Ribosomal RNA small subunit methyltransferase G 3.8442205593e-07 3.16942279971e-07 -27242413.6246 +UniRef50_UPI0003782025 hypothetical protein 4.72151979452e-06 1.62683215526e-06 -1249363376.06 +UniRef50_H0A863 1.3739936094e-07 4.70609164091e-07 134520886.476 +UniRef50_T1BAH6 Glutaredoxin family protein 6.59318775172e-07 1.76460548997e-06 446217810.158 +UniRef50_M4ZG23 Transcriptional regulator, MarR family 3.01988791085e-06 2.16550340304e-05 7523237167.4 +UniRef50_Q7N8S4 Amino acid acetyltransferase 3.38193026959e-05 9.26804756968e-06 -9911642972.23 +UniRef50_I5BUN0 NAD dependent dehydrogenase 2.76611621106e-05 7.06889539336e-06 -8313350769.26 +UniRef50_UPI00047AB05A ABC transporter substrate binding protein, partial 1.66464539699e-07 7.94879623323e-07 253698880.779 +UniRef50_Q4ZVS4 Glycosyl hydrolase, BNR repeat protein 4.6437059817e-06 2.83051155147e-06 -732008841.882 +UniRef50_Q8CQX8 5.94310377868e-05 4.51227493297e-05 -5776431632.58 +UniRef50_P44428 2Fe 2S ferredoxin 3.10217006879e-05 3.2880902994e-05 750582785.95 +UniRef50_P0ACK8 L fucose operon activator 3.07520693864e-05 1.83493591065e-05 -5007126338.37 +UniRef50_UPI000310B4FE hypothetical protein 4.33549600919e-08 5.86138257498e-07 219128277.863 +UniRef50_UPI00040DEDFB glycine cleavage system protein H 8.06376412934e-07 3.06482543468e-07 -201813289.491 +UniRef50_K0CDY8 1.97001942772e-06 1.18921699665e-05 4005693930.98 +UniRef50_D5HAF9 CobW P47K family protein 5.1219642627e-08 1.00019236592e-07 19700994.922 +UniRef50_X1PT48 Marine sediment metagenome DNA, contig 4.64186968129e-08 2.32413128802e-07 75088234.6023 +UniRef50_Q5F569 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 1.08674433531e-05 2.61092456822e-05 6153302638.21 +UniRef50_G8V1X3 Citrate transporter family protein 0.00015747758559 6.61122042263e-05 -36885325635.8 +UniRef50_R6M017 1.41478480163e-06 9.25089029219e-07 -197696192.565 +UniRef50_G5JW97 Competence specific sigma factor ComX 0.000112295571732 3.25395258503e-05 -32198494439.2 +UniRef50_T9NAD2 3.75133364687e-05 6.30040348308e-06 -12601044072.0 +UniRef50_M9RZ40 Transport protein 1.06849269852e-05 4.6506567747e-06 -2436108932.8 +UniRef50_F0KLI1 Phosphoribosyl dephospho CoA transferase 6.9475948869e-06 0.000143329141269 55058903864.2 +UniRef50_B9KSK9 Mammalian cell entry related domain protein 3.57886933336e-06 3.75005339931e-06 69109108.0887 +UniRef50_Q46WX7 AMP dependent synthetase and ligase 1.70749215151e-06 0.000153451446618 61260896525.6 +UniRef50_Q892J3 Chorismate synthase 1.30750893188e-07 8.52223895935e-07 291267504.678 +UniRef50_F0A5S1 2.29463251347e-08 1.96980995407e-05 7943100794.42 +UniRef50_G4LSM0 1.33295779697e-05 8.28259604455e-06 -2037528536.62 +UniRef50_Q06173 Periplasmic [NiFe] hydrogenase small subunit 1 6.85440469864e-07 1.74750579851e-07 -206171775.468 +UniRef50_Q1II76 Bifunctional protein FolD 2.23029168195e-07 3.16991803165e-08 -77242263.9893 +UniRef50_Q8ZM40 tRNA ) methyltransferase 1.99051628087e-05 2.08864760108e-05 396168181.755 +UniRef50_Q8CNS2 Protoporphyrinogen oxidase 0.000231678697017 3.74872006018e-05 -78397490100.4 +UniRef50_X0UVH5 Marine sediment metagenome DNA, contig 4.01001471582e-07 8.03456767446e-06 3081764350.49 +UniRef50_I3V422 LysR family transcriptional regulator 1.54075913818e-06 6.41323746361e-06 1967079292.01 +UniRef50_R9SK04 Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2 1.31020889286e-05 2.68063575066e-06 -4207268533.53 +UniRef50_UPI0003A45EE2 alkyl hydroperoxide reductase 1.28324102355e-07 9.60719036631e-06 3826734629.53 +UniRef50_UPI0003B56E34 dihydrolipoyllysine succinyltransferase 1.2347089168e-07 1.34345761335e-07 4390318.32938 +UniRef50_E8SI43 ABC transporter ATP binding protein 0.000639937988302 0.000130824058303 -2.05535541071e+11 +UniRef50_P69814 Galactitol specific phosphotransferase enzyme IIA component 3.90452283234e-05 7.87511213846e-06 -12583758404.2 +UniRef50_P19576 Maltose binding periplasmic protein 2.34061946529e-05 1.60938696811e-05 -2952075323.43 +UniRef50_UPI0002002889 hypothetical protein 1.80381855945e-07 5.29800647831e-07 141064654.135 +UniRef50_A6LUN8 Mg2+ transporter protein, CorA family protein 3.92424296107e-06 9.23911364415e-06 2145678515.56 +UniRef50_A5IRS3 DoxX family protein 3.97828644654e-05 2.36171905481e-05 -6526280935.54 +UniRef50_W5V4L7 Membrane protein 7.99323643602e-06 6.26562891387e-06 -697456356.82 +UniRef50_U3SVR2 5.9717229701e-05 2.33717582009e-05 -14673112853.7 +UniRef50_UPI0002378562 queuine tRNA ribosyltransferase, partial 5.8684450064e-08 5.37921963833e-07 193474065.214 +UniRef50_UPI000473FB58 helicase DnaB, partial 8.34678641399e-08 3.42245150645e-06 1347988670.34 +UniRef50_B7VMX2 Methionyl tRNA formyltransferase 8.21849574338e-08 1.56413115431e-07 29966818.2654 +UniRef50_F4DWI2 Regulatory protein, LuxR 3.85392888794e-06 2.79835768189e-06 -426147049.198 +UniRef50_Q2GUA3 1.31138389048e-08 2.18667363629e-08 3533652.11397 +UniRef50_UPI0002EEDC88 hypothetical protein 7.74915325016e-08 1.15922477231e-07 15515043.988 +UniRef50_Q8Y7N5 Non canonical purine NTP pyrophosphatase 5.10247432929e-07 5.75292282856e-06 2116532392.08 +UniRef50_R1D6J3 2.5894043904e-07 1.20846599668e-07 -55750177.5564 +UniRef50_A2SNI4 Sex pilus assembly protein 5.87130928703e-07 4.99822888612e-08 -216853497.459 +UniRef50_I3X709 Extracellular solute binding protein family 3 2.1259061298e-05 8.40334111646e-06 -5190011994.7 +UniRef50_UPI0001CE27CE PREDICTED 3.55027344812e-08 1.9492851828e-06 772617459.138 +UniRef50_Q9I4D3 Putative quercetin 2,3 dioxygenase PA1205 1.75394533608e-06 1.91143498515e-06 63580503.9449 +UniRef50_H6MX85 Peptide methionine sulfoxide reductase MsrA 0.000388578222829 0.00010084061677 -1.16163202504e+11 +UniRef50_G2JLT4 1.68582102353e-07 0.0001649300103 66516210413.6 +UniRef50_X6G7G7 5.50035310102e-07 2.04393714295e-07 -139539753.727 +UniRef50_P44123 6 carboxy 5,6,7,8 tetrahydropterin synthase 2.16456536964e-07 2.23023737812e-05 8916355816.17 +UniRef50_UPI000349B87B hypothetical protein 6.72640854751e-08 1.23771956628e-07 22812921.014 +UniRef50_P69829 Nitrogen regulatory protein 2.47515499001e-06 2.22773292896e-05 7994380764.75 +UniRef50_A8F8I3 Phosphoribosylformylglycinamidine synthase 2 1.52471762569e-07 3.64482455666e-08 -46840117.5824 +UniRef50_Q1NB30 1.84104728343e-06 4.75683352301e-07 -551214173.897 +UniRef50_U3T7G4 Oligopeptide transport system permease protein 3.75048866284e-06 7.67821631672e-05 29483783196.9 +UniRef50_A0Q4T9 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 5.62598784966e-07 5.25013161228e-07 -15173777.5305 +UniRef50_G8V7H1 ABC transporter ATP binding protein 1.85528854924e-06 4.3520856322e-05 16820901003.9 +UniRef50_F7TW27 Nickel transport system permease protein NikB 9.14017480104e-08 2.61672345976e-07 68740329.8541 +UniRef50_F2I8E8 Branched chain amino acid ABC transporter, permease protein 7.97411816463e-05 4.83739634805e-05 -12663330892.6 +UniRef50_UPI000328BD8B PREDICTED 7.22892610694e-07 2.14775785594e-06 575235584.57 +UniRef50_R9PHP0 Membrane protein related to purine degradation 1.66354274214e-06 3.03338644409e-07 -549131085.835 +UniRef50_UPI0000E10DEA Mg chelatase, subunit ChlI 2.51206953912e-08 6.13881015478e-08 14641596.9165 +UniRef50_D4GS06 Citrate synthase 2.32584276399e-07 5.41970175741e-07 124902884.156 +UniRef50_B2URB8 Ketol acid reductoisomerase 2.22470787145e-07 3.82707957609e-07 64689712.0475 +UniRef50_A0A017HSW8 Cation transport protein chaC 1.15982875084e-07 1.08713229509e-07 -2934845.12721 +UniRef50_UPI00021979C2 oligo 1,6 glucosidase 3.5274192233e-08 5.78638646359e-08 9119727.9555 +UniRef50_UPI0003507592 PREDICTED 2.5460167367e-07 5.67874949761e-07 126472265.853 +UniRef50_UPI0003AA57B2 sodium 1.36897052753e-07 3.60154819851e-05 14484625016.9 +UniRef50_UPI0003B38D86 chemotaxis protein CheR 9.66713981777e-07 2.44111729396e-07 -291723396.613 +UniRef50_C1C8T6 Alanine racemase 5.76830142862e-05 3.166047133e-05 -10505619923.9 +UniRef50_UPI00034AEEE6 hypothetical protein 1.73278246411e-05 1.43441051275e-05 -1204564182.0 +UniRef50_Q6X7U6 2,3 diaminopropionate biosynthesis protein SbnB 0.000139060159203 2.00661648535e-05 -48039335739.6 +UniRef50_UPI00046E80FA hypothetical protein 3.77990207457e-08 9.671988784e-08 23787077.0863 +UniRef50_R6AVV6 5.14333897648e-08 3.67568203441e-07 127627503.691 +UniRef50_I6TPH6 N acetylmuramoyl L alanine amidase 2.14288541827e-05 2.01810960268e-06 -7836355783.57 +UniRef50_A5VKT1 Peptide methionine sulfoxide reductase MsrA 0.000260769476688 1.8263270428e-05 -97902731353.0 +UniRef50_G8VNH2 Cysteine synthase ornithine cyclodeaminase 1.17353157162e-06 4.95137234234e-05 19515528651.4 +UniRef50_B9KN38 UvrB protein 0.000198485892128 0.000102377783882 -38800022678.0 +UniRef50_Q54XM6 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 8.52052509155e-08 1.66929649665e-07 32993142.6463 +UniRef50_UPI0001FFDC47 5 nucleotidase ;exopolyphosphatase ;3 nucleotidase 6.07959572842e-07 2.78040026756e-06 877040967.304 +UniRef50_UPI00036C2D64 hypothetical protein 1.04431833722e-07 3.05179150314e-08 -29839956.0012 +UniRef50_F7YPH9 ABC transporter ATP binding protein 5.6831105291e-06 0.000110292115999 42231939205.1 +UniRef50_Q2CFL1 4.39711490438e-08 6.87994534513e-08 10023491.1669 +UniRef50_H5YAU5 Spermidine putrescine binding periplasmic protein 0.000136950160159 2.57365827797e-05 -44898285932.0 +UniRef50_Q7WJI7 Argininosuccinate lyase 3.42624921585e-06 3.21252954467e-05 11586157140.3 +UniRef50_Q8E0X1 Prophage LambdaSa1, pblA protein, internal deletion 1.21737379666e-06 2.08700704506e-06 351081613.979 +UniRef50_R4WZZ5 8.14857330499e-05 2.36691857474e-05 -23341249634.8 +UniRef50_UPI0004135EFA ATP dependent DNA helicase RecQ 1.74792101858e-07 9.53229261273e-08 -32082681.4389 +UniRef50_UPI00047C6850 hypothetical protein 3.74920263848e-07 2.76249073565e-06 963891498.25 +UniRef50_A6QGQ2 1.75784765011e-06 1.16336382583e-06 -240000414.999 +UniRef50_UPI000379AA44 hypothetical protein 3.62742611183e-07 5.15634302116e-08 -125626853.956 +UniRef50_UPI00034B0709 hypothetical protein 1.5816474433e-05 2.09629725795e-06 -5539003891.05 +UniRef50_A6V155 5.52257736994e-06 2.39445977193e-06 -1262859460.64 +UniRef50_UPI000416D15E hypothetical protein 5.88035396834e-08 9.38108295273e-08 14132872.4977 +UniRef50_C1KVB2 Endoribonuclease YbeY 0.000118816058363 2.02371685621e-05 -39797507511.6 +UniRef50_P0ABV8 Protein TolR 4.05291947666e-05 4.14964925331e-06 -14686868950.9 +UniRef50_J9NZ26 1.13245796655e-06 3.36331460735e-06 900624201.58 +UniRef50_UPI0004637A95 MULTISPECIES 9.15488519108e-07 9.61392715899e-07 18532087.5524 +UniRef50_Q1R1E5 1 deoxy D xylulose 5 phosphate synthase 6.74651421758e-08 7.41970937218e-08 2717771.44946 +UniRef50_UPI00035C7334 hypothetical protein 5.99514009231e-06 1.41677645391e-06 -1848341583.66 +UniRef50_UPI000367B022 hypothetical protein 2.26822633197e-07 3.6274889918e-07 54875101.5802 +UniRef50_P32157 Protein YiiM 3.99161709896e-05 1.1303700054e-05 -11551205631.2 +UniRef50_Q5LR99 Peptidase, M23 M37 family 2.34259958688e-05 3.9631795236e-06 -7857377794.17 +UniRef50_UPI0001DD0925 bile acid 2.53977178749e-06 1.46638628562e-06 -433338899.026 +UniRef50_Q1IW67 PPC, peptidase containing PKD repeats 7.93789774321e-08 1.27980353978e-05 5134677672.38 +UniRef50_L0A6E5 Phytoene desaturase 7.06461613625e-07 0.000385141613059 1.55201188188e+11 +UniRef50_Q7VA47 Fumarate hydratase class II 5.36259246469e-08 4.05765998134e-08 -5268172.56851 +UniRef50_Q9ZKW2 Probable iron chelatin transport system permease protein jhp_0822 1.25133476969e-06 1.79791040875e-05 6753205746.41 +UniRef50_R5AM14 Transketolase 1.43201188526e-05 4.88682913879e-05 13947521206.3 +UniRef50_Q9HXC0 7.51656975743e-06 9.49571399342e-07 -2651177823.29 +UniRef50_UPI0004785DA5 hypothetical protein 1.01680207739e-07 6.56611577274e-06 2609771965.14 +UniRef50_UPI0001C4F400 sulfate ABC transporter permease 9.62878022308e-08 9.49572744923e-08 -537150.375444 +UniRef50_W3MN34 8.15399645607e-07 1.44526035913e-05 5505506580.19 +UniRef50_U2YW33 CRISPR associated protein, Cas5h family 3.21816075461e-06 6.31375525294e-07 -1044316940.5 +UniRef50_Q9RT77 2.71572653853e-06 2.41511090729e-05 8653726970.86 +UniRef50_Q9RT76 3.3887333048e-05 0.000397589987529 1.46831224747e+11 +UniRef50_W8TN29 ACT domain containing protein 2.92624797564e-06 0.000140372066139 55488563442.3 +UniRef50_P52986 Homoserine dehydrogenase 4.02740615366e-08 6.25441730872e-07 236239368.925 +UniRef50_B2S5S6 Threonine tRNA ligase 0.000124345707482 7.25875749814e-05 -20895393234.2 +UniRef50_D5AQ72 Glycine betaine L proline ABC transporter, permease protein ProW 1 0.000127347731774 1.08488013118e-05 -47032047830.1 +UniRef50_A3JTA0 Arsenate reductase 4.04919655234e-06 2.21786797212e-06 -739329820.764 +UniRef50_G4LDX4 1.41601051163e-06 2.49471483268e-06 435486171.598 +UniRef50_G2JZ44 Carnitine transport ATP binding protein OpuCA 0.000347290092841 0.000131295798624 -87199547123.5 +UniRef50_A5USV3 Queuine tRNA ribosyltransferase 5.19715643669e-08 3.19758409382e-07 108108835.447 +UniRef50_O52788 Tyrosine protein kinase ptk 3.55909480386e-06 6.5052323679e-05 24825571103.7 +UniRef50_E5QV38 0.000104953728179 1.18297732925e-05 -37595283347.1 +UniRef50_UPI000472FBDB S formylglutathione hydrolase 2.83168861965e-07 3.82243209264e-07 39997529.7836 +UniRef50_P52613 Flagellar FliJ protein 1.41130233383e-05 1.22593107804e-05 -748366507.235 +UniRef50_UPI00035FA621 hypothetical protein 5.29796777693e-08 1.96857333744e-07 58085175.2945 +UniRef50_UPI0002891631 HAD family hydrolase 7.91027594963e-07 2.45118627756e-06 670226432.604 +UniRef50_C1KVA9 GTPase Era 0.000236719701152 0.000119461568689 -47338546994.4 +UniRef50_UPI00047412C9 hypothetical protein, partial 4.21815344166e-07 5.74483338498e-07 61633942.7588 +UniRef50_T7XDH6 Cytochrome bd II oxidase subunit 2 7.68093580892e-06 3.87889518544e-06 -1534930455.98 +UniRef50_A0A010ITK8 1.86632233352e-07 4.17804104913e-07 93326921.347 +UniRef50_Q5LVP8 Xanthine dehydrogenase accessory factor 6.71868334959e-08 4.3690587779e-07 149260115.144 +UniRef50_F3U4A0 RND family efflux transporter MFP subunit 2.55485527578e-06 4.91118925637e-06 951280943.434 +UniRef50_B9DZY6 2.83342373642e-06 4.96713285668e-05 18909036945.8 +UniRef50_UPI0004701B61 hypothetical protein 6.25599781802e-08 8.14137681872e-08 7611506.38785 +UniRef50_Q839H4 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 4.9189487464e-05 0.000121219237083 29079293825.6 +UniRef50_UPI000362C020 hypothetical protein 3.11903779177e-08 3.77434580452e-06 1511157779.4 +UniRef50_UPI000455F0CE hypothetical protein CONPUDRAFT_85381 8.53092037622e-08 9.37901574761e-09 -30653948.6697 +UniRef50_UPI000417B443 hypothetical protein 1.13260124627e-07 2.37311884538e-07 50081217.7623 +UniRef50_A8FY28 Ribonuclease HII 5.95790580038e-06 6.43231907845e-06 191526462.062 +UniRef50_F9ECL7 6.73848948113e-07 3.24199064956e-05 12816272999.9 +UniRef50_A3M1W3 2.05901448467e-06 3.80607907314e-05 14534358862.3 +UniRef50_UPI0004168D45 DEAD DEAH box helicase 3.35799902697e-08 1.90921731628e-07 63520791.7865 +UniRef50_Q87DC2 Fumarate hydratase class II 9.52430105442e-06 6.8039294302e-06 -1098247407.41 +UniRef50_X1CXM9 Marine sediment metagenome DNA, contig 1.44821891795e-07 8.33833166245e-08 -24803506.7324 +UniRef50_Q5VQ95 PE PGRS FAMILY PROTEIN like 5.41901981131e-07 2.18721494118e-07 -130471928.478 +UniRef50_Q0MQH9 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.28347282207e-07 2.89022101445e-07 -15876058.0479 +UniRef50_P05448 Putative L,D transpeptidase in ATP synthase subunits region ORF 5 0.00012404094123 4.95968904425e-05 -30053976834.1 +UniRef50_UPI000364300D hypothetical protein 3.49162223831e-08 5.54494374112e-08 8289510.87773 +UniRef50_UPI00046AFE1E fimbrial protein, partial 7.80354965687e-08 7.99769463389e-08 783787.096498 +UniRef50_C1C8M1 Threonine tRNA ligase 0.000127555711153 4.33481805511e-05 -33995613446.6 +UniRef50_Q9WY54 Aminomethyltransferase 3.8555108957e-07 3.18539284437e-07 -27053488.0595 +UniRef50_UPI000478F558 hypothetical protein 1.81335620539e-07 2.0806905574e-06 766792895.716 +UniRef50_Z2DM67 4.06030234906e-06 2.03832524573e-06 -816296969.064 +UniRef50_Q59935 Mannose 6 phosphate isomerase 0.00028466988923 0.00010110724363 -74106492595.7 +UniRef50_E0MU16 Putative replication protein A 7.82900747004e-06 2.52649811376e-06 -2140688096.24 +UniRef50_A6LPF8 Transcriptional regulator, TrmB 2.20666947375e-05 4.23899576834e-06 -7197260844.33 +UniRef50_F1AX13 PP177 4.07412710497e-06 1.85733256082e-06 -894947160.601 +UniRef50_UPI0003771110 hypothetical protein 1.97215145787e-06 3.29601488918e-05 12510234829.6 +UniRef50_P52560 GTP pyrophosphokinase 1.75001246301e-06 6.61396813026e-05 25994899460.6 +UniRef50_P72871 S adenosylmethionine synthase 8.67734417895e-08 3.11232407899e-06 1221451919.92 +UniRef50_UPI000380FDEA hypothetical protein 7.4055781187e-08 4.42270073442e-07 148652628.281 +UniRef50_A7BLF8 Serine threonine protein phosphatase 4.34916835541e-08 1.16369495057e-06 452239805.336 +UniRef50_Q74NK6 1.26634813833e-06 2.01264223045e-05 7614043380.03 +UniRef50_P43319 3.001642598e-05 1.64369223673e-06 -11454420784.8 +UniRef50_M8E6M3 5.18836542369e-07 9.16856693408e-06 3492002303.26 +UniRef50_A1B1I1 Leucyl phenylalanyl tRNA protein transferase 1.63040435828e-07 1.19106719942e-06 415027019.768 +UniRef50_Q57847 2.91361999475e-05 4.73770115279e-06 -9849973366.67 +UniRef50_Q745F5 4.93242201077e-07 1.13656204698e-06 259716116.213 +UniRef50_UPI0003628FC3 hypothetical protein, partial 5.1714812704e-08 1.34319236006e-06 521385334.081 +UniRef50_UPI000158478A hypothetical protein BC1G_06634 4.44073690214e-08 3.37066668032e-07 118150150.344 +UniRef50_G9EQ58 4.11888742638e-07 1.66729575426e-06 506823216.167 +UniRef50_F3YMS0 Permease 4.84423132479e-05 5.06488682277e-05 890813322.82 +UniRef50_UPI0003651736 hypothetical protein, partial 9.88434426598e-08 1.54371702619e-07 22417439.9539 +UniRef50_Q7VR76 Ribose phosphate pyrophosphokinase 3.61466314181e-07 7.74923634178e-07 166917793.775 +UniRef50_UPI0003B40518 ABC transporter ATP binding protein 6.07183430997e-09 4.92400882273e-08 17427553.8405 +UniRef50_UPI0004708F5B ABC transporter substrate binding protein, partial 1.59398045474e-07 5.68516621707e-06 2230820419.68 +UniRef50_Q9K107 L aspartate oxidase 3.22734424493e-06 3.31094834525e-05 12063786293.2 +UniRef50_Q6A6B1 BadF BadG BcrA BcrD ATPase family protein 2.12070780251e-06 9.53832485507e-05 37651232160.1 +UniRef50_UPI0001CBF5BB macrolide ABC transporter ATP binding protein 5.7914471395e-08 2.2992336605e-07 69442101.5587 +UniRef50_D8JDP8 Protein visC 9.20697533807e-07 6.69928486401e-05 26674138198.1 +UniRef50_UPI0003B5F778 iron ABC transporter 4.85694526029e-08 2.82073012087e-07 94268252.3746 +UniRef50_UPI000382A943 hypothetical protein 1.10087946562e-07 1.71522656751e-07 24801946.392 +UniRef50_U3T3A9 3.44216046284e-07 1.04743294192e-05 4089651079.11 +UniRef50_UPI000455D09C lamb YcsF family protein 1.12239228912e-06 2.70073731009e-07 -344091461.034 +UniRef50_Q9RWW8 1.87478528205e-06 0.000481271771429 1.9353844617e+11 +UniRef50_C6ZBM7 4.09421260664e-07 5.05283847915e-07 38700902.8395 +UniRef50_A6LRH1 Response regulator receiver protein 2.61537636621e-06 4.76637802963e-06 868385767.281 +UniRef50_B3QI42 Phosphoribosylformylglycinamidine synthase, purS 3.63675254415e-07 7.64707369879e-07 161901586.23 +UniRef50_UPI0004712E3C hypothetical protein 6.18921543543e-08 4.83015211799e-08 -5486705.38833 +UniRef50_C1N8X0 Predicted protein 2.13355405122e-07 5.77388870196e-08 -62824297.9872 +UniRef50_A5UNU8 Large terminase subunit 3.98758493451e-05 1.31154717327e-06 -15568882024.0 +UniRef50_N8WPF6 2.50543797907e-06 9.5014668419e-05 37347111544.5 +UniRef50_Q8TYX3 HSP70 class molecular chaperones involved in cell morphogenesis 4.16940365777e-05 3.89379600506e-06 -15260420980.3 +UniRef50_P94544 DNA polymerase 3 5 exonuclease PolX 0.000194270517834 7.34696994585e-05 -48768772770.7 +UniRef50_UPI0001745B7C iron sulfur cluster assembly accessory protein 8.29585364471e-06 1.38146755862e-06 -2791422512.01 +UniRef50_Q13SP0 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.000172264453457 0.000123561935057 -19661804325.2 +UniRef50_K0S5W4 7.33932577173e-07 1.3484035594e-06 248069475.932 +UniRef50_UPI0002FE110D Fosmidomycin resistance protein 1.16565489397e-06 1.25985484617e-06 38029676.6665 +UniRef50_A8A6H8 Inner membrane protein CbrB 1.1177014855e-05 5.3050905124e-06 -2370567913.72 +UniRef50_B4G1R8 4.33062319907e-06 3.3879545529e-06 -380566900.304 +UniRef50_Q21TR5 Putative ribose galactose methyl galactoside import ATP binding protein 2.56469145597e-06 5.53008744338e-05 21290244213.9 +UniRef50_N0CFH5 L cystine ABC transporter substrate binding component 4.00655896638e-05 3.9472097551e-05 -239600048.905 +UniRef50_M9VK56 Membrane associated protein 2.17856681064e-06 4.80952172692e-05 18537115250.8 +UniRef50_U5UTH9 1.74705665644e-06 1.42727768354e-06 -129098695.489 +UniRef50_K0S8Y4 7.41622767867e-07 5.47047881885e-07 -78552269.1733 +UniRef50_F7Z9W9 Transposase 8.96458704271e-07 2.2205186778e-07 -272266315.794 +UniRef50_UPI00041D675E DNA primase 3.35866750559e-08 3.93695014633e-08 2334597.98393 +UniRef50_Q6Z5U8 6.80313186504e-06 5.21914648349e-06 -639474336.218 +UniRef50_I3TMV8 Phosphoribosylformylglycinamidine synthase protein 1.09734009961e-06 5.63056938811e-07 -215696668.406 +UniRef50_UPI000406D548 hypothetical protein 7.69833893033e-07 5.50344431742e-07 -88610588.9618 +UniRef50_Q8CNT0 Abortive phage resistance protein 9.8942135046e-05 4.11971861189e-05 -23312344492.1 +UniRef50_UPI0003610508 hypothetical protein 9.21608645163e-07 2.93963939164e-07 -253387869.878 +UniRef50_A0A024IFX7 5.2348506908e-07 3.79439805762e-05 15107113237.3 +UniRef50_S4X548 O acetylserine dependent cystathionine beta synthase 0.000246360035439 7.77237761742e-05 -68080527264.9 +UniRef50_P0DC76 N utilization substance protein B homolog 1.10334866358e-05 7.74683621263e-05 26820574483.1 +UniRef50_A4X990 Cobalamin synthesis protein, P47K 5.43176844442e-08 1.18232927224e-07 25803367.8384 +UniRef50_S9TDP6 Proteophosphoglycan ppg3 7.6541798406e-07 4.65274564787e-06 1569361880.75 +UniRef50_A9M1F1 Ferric enterobactin transporter binding protein 1.5285507377e-07 1.62534217049e-05 6499996325.15 +UniRef50_UPI0003B45A90 cytochrome C oxidase 2.86529933905e-08 2.6050401202e-07 93601101.3525 +UniRef50_B0VKG9 3.61731445806e-07 1.03321865681e-06 271087627.157 +UniRef50_A6M1U3 Response regulator receiver protein 5.73514395093e-06 6.5631404195e-06 334272335.021 +UniRef50_M9R1A8 1.0607212978e-06 7.10948993649e-07 -141207371.375 +UniRef50_R4K891 rRNA methylase 1.67771550603e-06 2.56425503788e-06 357906888.071 +UniRef50_S9QSU8 DNA polymerase III, beta subunit 7.04671175177e-05 3.10655056767e-05 -15906914212.4 +UniRef50_UPI0003825004 hypothetical protein 2.05302863325e-06 6.72658797193e-07 -557272241.86 +UniRef50_A5VZZ2 Cyclic pyranopterin monophosphate synthase 2.36911298339e-06 3.17266707001e-06 324404645.486 +UniRef50_H3XB68 YhgE Pip C terminal domain protein 0.000162104351988 3.37409065168e-05 -51821898133.3 +UniRef50_D8HBY6 9.90628747066e-05 8.05343386522e-06 -36741628079.1 +UniRef50_A0A032VR07 9.52389555968e-05 8.06062850735e-06 -35194960444.4 +UniRef50_Q5HR98 UDP N acetyl D mannosamine transferase 0.000101178003165 2.4694031881e-05 -30877517771.2 +UniRef50_M2I9S9 5.63411923659e-06 7.11606518538e-06 598279765.048 +UniRef50_R1D153 9.54834283356e-06 4.43976776073e-07 -3675544300.54 +UniRef50_Q07417 Short chain specific acyl CoA dehydrogenase, mitochondrial 1.18623500481e-07 4.52552076834e-07 134811064.038 +UniRef50_W4TL26 1.39205042914e-06 3.29647337439e-06 768838912.895 +UniRef50_A3NXX0 Cytidylate kinase 9.21545642789e-08 4.91395256901e-05 19801025602.4 +UniRef50_R7D247 Oxidoreductase short chain dehydrogenase reductase family protein 3.11868194033e-05 9.6247304246e-06 -8704879917.29 +UniRef50_A8MH33 Phospho N acetylmuramoyl pentapeptide transferase 7.50793313504e-08 1.52173379182e-07 31123813.16 +UniRef50_UPI000464379E DNA mismatch repair protein Vsr 1.0541421145e-07 6.5803724269e-07 223100699.159 +UniRef50_UPI00035EB80A hypothetical protein 1.42600425103e-07 1.16230705833e-07 -10645779.2621 +UniRef50_K6EM35 DEAD DEAH box helicase 1.08439223771e-08 3.27575224684e-07 127868313.471 +UniRef50_UPI00028A299B deoxyribonucleotide triphosphate pyrophosphatase 6.55068632452e-08 1.24763887995e-07 23922788.057 +UniRef50_I7HG53 Penicillin binding protein 1.41560784841e-06 4.34561570214e-05 16972285596.7 +UniRef50_E2X4D1 3.20907874997e-06 8.52014557138e-06 2144142849.92 +UniRef50_Q02IQ8 1.8571363304e-06 1.44522502443e-06 -166293648.94 +UniRef50_R4RFT5 3 oxoacyl [acyl carrier protein] synthase 3 4.05422601424e-06 6.40143485144e-05 24206637246.8 +UniRef50_M0SUV4 2.01841312353e-07 5.09695283423e-07 124284425.914 +UniRef50_O31776 L threonine 3 dehydrogenase 5.64158826333e-08 4.68237030175e-07 166257250.876 +UniRef50_A8AW17 Cell division protein ftsA 7.96597623952e-05 3.33844878707e-05 -18681896187.0 +UniRef50_UPI0003754678 hypothetical protein, partial 5.33893601912e-07 2.8768124341e-07 -99398950.4927 +UniRef50_O86018 GroESL operon, partial sequence. 4.46003321695e-07 2.6496189759e-06 889626681.01 +UniRef50_P9WGZ8 Ribonuclease J 3.26626648787e-06 5.42626754707e-05 20587876102.7 +UniRef50_X1R855 Marine sediment metagenome DNA, contig 1.63500340257e-07 3.96915548909e-07 94232584.0595 +UniRef50_P33362 Putative osmoprotectant uptake system substrate binding protein OsmF 1.23993949482e-05 6.1897148499e-06 -2506924057.03 +UniRef50_P50107 Lactoylglutathione lyase 7.2768919145e-08 1.60619398382e-07 35466316.5146 +UniRef50_D4H934 DNA binding helix turn helix protein 2.65949721148e-06 8.82892694115e-05 34569789832.6 +UniRef50_UPI0004786584 hypothetical protein 6.23613550185e-09 8.93333448607e-07 358132071.209 +UniRef50_P77319 Chaperone protein HscC 2.2052610613e-05 7.55929562201e-06 -5851129114.84 +UniRef50_A8EWD3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 2.02949456367e-06 2.40083105717e-05 8873117732.83 +UniRef50_Q87VD5 Glutamate ammonia ligase adenylyltransferase 5.56645922626e-06 1.23520421499e-06 -1748580798.53 +UniRef50_Q02ID7 7 carboxy 7 deazaguanine synthase 1.18059889226e-05 6.46815487788e-05 21346512370.0 +UniRef50_A9I0G7 Orotate phosphoribosyltransferase 3.7843849584e-05 4.19307505292e-06 -13585230619.6 +UniRef50_F8FNN8 YbaR 0.000292391920903 0.000364224380777 28999645534.5 +UniRef50_A6LZF6 Transcriptional regulator, XRE family 4.0735898078e-06 1.51164968918e-05 4458157101.52 +UniRef50_H0HX43 Transposase 1.48775538787e-07 4.90979575359e-07 138151968.88 +UniRef50_V9AHX5 PF12266 family protein 4.8701666323e-07 1.00682866465e-05 3868076267.65 +UniRef50_B9DW70 DNA mismatch repair protein MutL 5.94288439686e-05 2.62201802624e-05 -13406745054.3 +UniRef50_M8SYD2 3.92585912343e-07 8.3244671013e-07 177577201.766 +UniRef50_UPI00045E6B47 Fis family transcriptional regulator 2.40798265933e-07 3.80250706568e-07 56298661.5582 +UniRef50_A5UMR0 Thiamine monphosphate kinase, ThiL 1.57722361694e-05 5.34201632247e-06 -4210807745.38 +UniRef50_C1FHC6 Predicted protein 2.01109125958e-07 9.63300793573e-06 3807773291.92 +UniRef50_L7WU68 Precorrin 2 dehydrogenase 0.000116835812124 0.000116723705241 -45258924.3733 +UniRef50_UPI00037FCE7E hypothetical protein, partial 1.42571754891e-08 4.76052131163e-08 13463012.0165 +UniRef50_J6MTI6 8.79421180364e-05 1.64756192873e-05 -28851902537.6 +UniRef50_Q9KV18 Putative ribosome biogenesis GTPase RsgA 2.06445193545e-05 4.0782409254e-05 8129913272.13 +UniRef50_UPI0003760B8C hypothetical protein 8.22771995326e-07 4.57790021053e-07 -147347701.846 +UniRef50_UPI0003FB1D7B hypothetical protein 4.3997779812e-08 1.96860050102e-06 776985736.084 +UniRef50_UPI00047AC70D hypothetical protein 2.44721652517e-08 7.73612441828e-08 21351970.1865 +UniRef50_A4XP48 Glutamate putrescine ligase 1.33240539279e-05 7.25164600672e-06 -2451505594.61 +UniRef50_L1KHU2 1.32027117581e-05 5.30192149453e-06 -3189645983.0 +UniRef50_UPI0004280637 5 nucleotidase 2.09467522568e-08 1.86577618849e-06 744780282.009 +UniRef50_A1TL07 Phosphoribosyl AMP cyclohydrolase 2.42246028509e-07 2.16911203011e-07 -10227979.9468 +UniRef50_A0ALI9 NLP P60 family protein 3.02842799869e-07 1.06018823997e-05 4157848669.87 +UniRef50_Q6A964 Glycine tRNA ligase 3.69458045884e-06 6.20760084721e-05 23569298909.7 +UniRef50_P75030 Urease subunit gamma 2.28775385315e-06 2.78430288296e-06 200462936.676 +UniRef50_G0DXU0 6.3712318923e-06 7.17982706466e-05 26413698425.2 +UniRef50_UPI00036F5C26 hypothetical protein, partial 1.50962244195e-06 5.37267459149e-07 -392551638.694 +UniRef50_A0A017HQ29 3.3840152443e-08 1.72669400636e-08 -6690809.21375 +UniRef50_R6TVK2 Aldehyde dehydrogenase A 2.38425112088e-05 5.20546726894e-06 -7524003340.78 +UniRef50_P77522 FeS cluster assembly protein SufB 2.194884004e-05 4.89967365281e-05 10919567727.3 +UniRef50_UPI00029A24D2 acyl CoA dehydrogenase 4.309022075e-08 6.86808408551e-08 10331247.3687 +UniRef50_Q8ERS7 Bis tetraphosphatase PrpE [asymmetrical] 3.28643635132e-07 7.96766116559e-06 3083965118.33 +UniRef50_Q55738 DNA gyrase subunit A 5.6300028786e-08 1.28834540842e-07 29283072.6156 +UniRef50_UPI00046F2BB5 chromosomal replication initiation protein, partial 6.24353061092e-08 2.12836954623e-07 60718991.1409 +UniRef50_A3PFT2 Sulfoxide reductase heme binding subunit YedZ 0.000102911880121 1.60284365739e-05 -35075912339.7 +UniRef50_UPI00047E1D32 iron transporter FeoB 7.30384168488e-08 3.77573686919e-08 -14243392.0881 +UniRef50_Q5X1A0 Ribosomal RNA large subunit methyltransferase E 5.01580223808e-05 8.78000365372e-05 15196543034.4 +UniRef50_UPI0003113A1C hypothetical protein 4.93465890176e-07 8.76729481496e-07 154728214.989 +UniRef50_UPI000424F2DF hypothetical protein 1.57351742057e-07 8.87868259603e-08 -27680498.0144 +UniRef50_P45527 0.000127285823465 3.67660677636e-05 -36543936179.0 +UniRef50_UPI000344EADE thioredoxin 2.7198151641e-06 5.36984920001e-06 1069851259.87 +UniRef50_E2ZZT1 Type I ferripyoverdine receptor, FpvB 6.2425813578e-06 1.680055727e-06 -1841947585.64 +UniRef50_UPI0004630EAC hypothetical protein 5.94956593079e-07 3.52127009707e-07 -98033282.6614 +UniRef50_P46125 Inner membrane protein YedI 4.31975865781e-05 1.51175354775e-05 -11336261210.3 +UniRef50_D4DXV5 Type III restriction enzyme, res subunit 1.59672408566e-05 4.46443165814e-06 -4643825228.78 +UniRef50_UPI00037CF6F9 nitrate ABC transporter ATP binding protein 4.3460363266e-07 1.287005905e-07 -123496811.972 +UniRef50_M9VF54 5 formyltetrahydrofolate cyclo ligase 4.46728980886e-06 3.39413890867e-05 11899055566.3 +UniRef50_UPI00026CD1F6 transposase IS3 IS911 family protein 4.20943527516e-07 6.41314270505e-07 88966373.1978 +UniRef50_B7GKM4 NADH dehydrogenase, FAD containing subunit 3.95064786358e-05 8.91817979781e-06 -12348871601.5 +UniRef50_C6HWC8 Glutamate dehydrogenase 8.45171261952e-09 6.19806783192e-08 21610300.3272 +UniRef50_UPI00047D654A 8 amino 7 oxononanoate synthase 3.33820943951e-07 5.17454296682e-07 74135037.9321 +UniRef50_A5UKW4 Dihydrolipoamide dehydrogenase 2.24504898119e-05 3.32407356562e-06 -7721568946.15 +UniRef50_Q832Z5 Ribose phosphate pyrophosphokinase 2 5.94965991736e-05 1.39032658826e-05 -18406588142.7 +UniRef50_Q9RUT4 9.76256867702e-07 0.000349363729666 1.40648297964e+11 +UniRef50_UPI00038FBDD6 UPF0135 protein BH1380 1.48526971285e-07 1.09039070798e-07 -15941749.9976 +UniRef50_Q5L3C1 Heptaprenylglyceryl phosphate synthase 0.000137927109517 4.85487033369e-05 -36083159371.3 +UniRef50_I4F0A8 2.20565278525e-06 7.76581089855e-07 -576933780.115 +UniRef50_J9YQH5 PTS system transporter subunit IIBC 2.79484325444e-06 1.29524870691e-06 -605404720.932 +UniRef50_D3V6J7 1.71907562261e-06 2.34371663499e-05 8767859737.55 +UniRef50_A1SKT2 3.22159987012e-07 9.4674236784e-07 252151571.628 +UniRef50_UPI00047E9906 methionine aminopeptidase 2.30407798864e-07 1.27104351497e-07 -41704869.3779 +UniRef50_UPI00021A445D PREDICTED 8.64995647575e-08 3.88653152084e-07 121983111.045 +UniRef50_A6M169 Transmembrane protein 2.11087783962e-06 8.18432552111e-06 2451925358.6 +UniRef50_P58696 Asparagine tRNA ligase 3.02253144633e-07 5.95329403583e-05 23912155270.4 +UniRef50_F0PD68 Fructokinase 7.37291825313e-06 3.93238749438e-05 12898993298.4 +UniRef50_P24242 HTH type transcriptional regulator AscG 4.60157237382e-05 5.26254894912e-06 -16452556760.1 +UniRef50_G4E3T8 Putative solute symporter protein 1.90333193413e-07 5.37310786893e-07 140079112.382 +UniRef50_UPI00036ED55B hypothetical protein 1.35862715917e-06 1.9327338592e-07 -470467618.76 +UniRef50_I6SVK1 Putative transcriptional regulator 1.84419286763e-05 2.14256376199e-06 -6580253631.6 +UniRef50_UPI00032A2B8F 6.87453639372e-07 1.12799947878e-05 4276338846.71 +UniRef50_A5UMS2 Predicted DNA binding protein 2.55817467002e-05 1.56406705021e-05 -4013334451.9 +UniRef50_L7WZG7 BirA bifunctional protein 0.000180208431651 7.40753401297e-05 -42847231446.5 +UniRef50_Q9RZR4 5.54582745574e-07 0.000302559043963 1.21922907005e+11 +UniRef50_UPI0003780887 hypothetical protein 5.31543062983e-08 1.02129340483e-07 19771822.2916 +UniRef50_Q6F0T3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 2 1.26833734559e-07 1.01867889339e-07 -10079018.0807 +UniRef50_A2RF77 UPF0342 protein SpyM51181 6.95866054262e-06 6.14075150183e-07 -2561386979.75 +UniRef50_F1Z1C1 TIGR01906 family protein 2.25774079495e-07 1.72364044285e-07 -21562286.6291 +UniRef50_P37426 Ribonucleoside diphosphate reductase 1 subunit alpha 2.53085217977e-05 8.09567738229e-06 -6949036515.85 +UniRef50_D3QGY3 6.03252463098e-05 7.05763054916e-06 -21504790149.7 +UniRef50_UPI0003B78806 dihydrolipoamide dehydrogenase 2.81910875676e-08 6.04358031595e-08 13017587.3716 +UniRef50_UPI00047995E8 potassium transporter 1.33189599745e-07 2.42800537047e-07 44251280.4663 +UniRef50_UPI0000379B08 hypothetical protein 7.88561535673e-06 1.24311861241e-05 1835102699.21 +UniRef50_W1UDI4 1.77640465342e-05 7.11606518538e-06 -4298720735.94 +UniRef50_Q88ZS6 Glucosamine 6 phosphate deaminase 7.86569421299e-05 9.75855637412e-05 7641716824.79 +UniRef50_A7HHV0 6.3658958353e-06 3.30154796252e-06 -1237114840.02 +UniRef50_X0XC51 Marine sediment metagenome DNA, contig 1.79999834953e-08 8.43793196406e-08 26798152.5679 +UniRef50_P0AEK2 3 oxoacyl [acyl carrier protein] reductase FabG 3.31598992002e-06 3.62724289278e-05 13304918848.4 +UniRef50_V8FZY5 Histidine kinase 1.29571849717e-06 1.89074750183e-05 7110082228.12 +UniRef50_Q9XAR5 NADH quinone oxidoreductase subunit L 2.01701098746e-06 0.000101841890695 40300528926.9 +UniRef50_Q53178 Cytochrome c type protein NapC 0.000168376407817 4.81472865397e-05 -48537971636.8 +UniRef50_U6I176 Nucleoside diphosphate kinase 8.90647370853e-08 1.51968441378e-07 25394997.3382 +UniRef50_UPI0004726D5E amino acid permease 3.31078158842e-08 2.07785460556e-07 70519508.6898 +UniRef50_U3T2J2 S8 S53 family peptidase 2.36205835381e-06 1.38802323788e-05 4650028197.78 +UniRef50_B1IMN8 Exodeoxyribonuclease 7 large subunit 4.86634798018e-06 1.81646193523e-05 5368675341.06 +UniRef50_C4TE51 Non ribosomal peptide synthetase 3.22161316393e-06 1.29899549467e-06 -776184346.252 +UniRef50_A6M093 6.35705284803e-06 9.09771765783e-06 1106440015.46 +UniRef50_B9E104 1 deoxy D xylulose 5 phosphate synthase 2.82209324565e-06 1.88268109063e-05 6461300919.6 +UniRef50_UPI000425BC50 tartrate dehydrogenase 6.71102796659e-07 5.54985291652e-07 -46878061.6933 +UniRef50_D8JLT1 Cyanide insensitive terminal oxidase 1.03138248322e-06 5.20480541534e-05 20596056398.2 +UniRef50_UPI00044067F2 PREDICTED 6.91579781683e-08 2.40413670135e-08 -18214129.5663 +UniRef50_V4RP20 1.63603309111e-07 8.48396015568e-08 -31797875.279 +UniRef50_Q3A9L0 3 methyl 2 oxobutanoate hydroxymethyltransferase 2.25492943861e-07 2.23974399198e-07 -613055.115092 +UniRef50_P35450 Elongation factor G, chloroplastic 2.81349798471e-07 9.46761059615e-07 268634691.638 +UniRef50_Q75JD5 Phosphoenolpyruvate carboxykinase [ATP] 1.02740654968e-07 1.33142198032e-06 496033728.659 +UniRef50_Q2NBQ3 Acyl carrier protein 6.00574589762e-06 7.23224584158e-06 495153078.223 +UniRef50_N9WEN9 1.638328862e-07 1.22819883803e-07 -16557452.3538 +UniRef50_R1DJF2 6.02867697897e-07 4.94710712632e-07 -43664302.1869 +UniRef50_Q5QU71 1.9843216055e-07 1.33051948491e-07 -26394793.9136 +UniRef50_B6IQY7 Potassium transporting ATPase C chain 1.93222982665e-08 3.05885613509e-06 1227097109.2 +UniRef50_Q5LMZ8 Lipoprotein, putative 6.69305513444e-05 6.69106970626e-05 -8015417.2021 +UniRef50_P76938 Elongation factor P hydroxylase 3.31194357482e-05 5.7158071973e-06 -11063181126.3 +UniRef50_UPI0003801D4F hypothetical protein 5.4750036738e-08 3.94985385028e-07 137357185.262 +UniRef50_F4A6Q6 Homoserine dehydrogenase 4.64628869536e-06 3.27546700935e-06 -553417536.516 +UniRef50_A3PR64 Transcriptional regulator, TetR family 6.39075890412e-05 6.04684459685e-06 -23359092563.3 +UniRef50_I6TVX8 7.69598861689e-05 2.94558827978e-05 -19177949100.6 +UniRef50_UPI000174552F ribonuclease III 1.23602613189e-07 1.37482742541e-07 5603578.54774 +UniRef50_S1SWX2 Serine phosphatase RsbU, regulator of sigma subunit 1.66006318407e-06 1.02776497683e-06 -255266545.434 +UniRef50_A6LVE7 Multi sensor hybrid histidine kinase 3.77015750433e-06 7.55862401371e-06 1529450419.55 +UniRef50_F7WGV5 2.68025521131e-07 1.97536257659e-06 689272920.671 +UniRef50_E1VBD1 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 1.11140344635e-05 2.08950498955e-06 -3643313292.06 +UniRef50_P45148 Carbonic anhydrase 2 3.79259477021e-05 8.28325376683e-07 -14976765371.8 +UniRef50_P26410 Hydrogenase nickel incorporation protein HypB 0.000105157348383 1.87217868679e-05 -34895096867.3 +UniRef50_Q8FD60 N acetylmannosamine kinase 3.63085074547e-05 2.02966807698e-06 -13838788105.4 +UniRef50_UPI0003945864 PREDICTED 3.08064589258e-08 2.92379467526e-08 -633227.61213 +UniRef50_UPI0002D3C2A9 MULTISPECIES 1.71413965814e-07 1.90291582421e-07 7621125.47865 +UniRef50_UPI0004009643 triosephosphate isomerase 1.41242434395e-07 3.46680699944e-07 82937948.8131 +UniRef50_U6HBJ2 2 amino 3 ketobutyrate coenzyme A ligase 8.8164978824e-07 1.06969564153e-07 -312747912.859 +UniRef50_F1ZDB1 3.43451518249e-07 1.59729804885e-07 -74170710.204 +UniRef50_Q5HFW6 CCA adding enzyme 0.000202562764823 5.52434820371e-05 -59474602271.6 +UniRef50_I0C1Q8 Membrane lipoprotein 2.26105212186e-06 5.0534525294e-07 -708800407.929 +UniRef50_M9VIA3 1.4334910969e-06 9.10784166428e-05 36190756509.8 +UniRef50_P0A957 KHG KDPG aldolase 3.69856599315e-05 3.68759639664e-06 -13442836862.2 +UniRef50_I0EP41 Outer membrane protein P1 1.4152966364e-06 2.9398597359e-05 11297201895.4 +UniRef50_UPI00036E82C7 hypothetical protein 9.26864831832e-08 3.22827463534e-06 1265875415.02 +UniRef50_O07603 Putative aminopeptidase YhfE 8.57580652702e-05 5.93408679096e-05 -10664946749.9 +UniRef50_D8TJY5 1.19851500528e-07 7.49333306713e-08 -18134016.3791 +UniRef50_UPI0003AF1724 PREDICTED 5.77795349287e-07 1.86287283038e-06 518801548.79 +UniRef50_Q1QU74 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.72652167609e-07 3.58156489471e-06 1376219899.99 +UniRef50_Q6FCN6 tRNA ) methyltransferase 2.56212209626e-06 8.49171418077e-05 33247732067.2 +UniRef50_UPI00047DEB0D hypothetical protein 4.52367962977e-08 6.17534076128e-06 2474798195.5 +UniRef50_UPI0004785335 hypothetical protein 1.82122398656e-07 4.0466542554e-07 89843350.8631 +UniRef50_UPI0003690A51 hypothetical protein 1.37397559538e-07 1.59597392021e-07 8962344.79597 +UniRef50_A0A035VZY3 5.85156271758e-06 3.07131509617e-06 -1122420082.24 +UniRef50_A8FBX4 3 oxoacyl [acyl carrier protein] synthase 3 1.22094595367e-06 3.53406750296e-07 -350236222.305 +UniRef50_UPI00037C1BAA hypothetical protein 5.34376118582e-07 5.86476080023e-08 -192057437.566 +UniRef50_B1M613 GntR domain protein 2.63808013418e-05 1.06454292821e-05 -6352562795.23 +UniRef50_R7PTP8 1.99189146274e-05 2.48165298485e-06 -7039636504.34 +UniRef50_P0A0T2 Lactoylglutathione lyase 1.3613610624e-06 2.75124955612e-05 10557533907.7 +UniRef50_Q0FYC5 8.26531849996e-07 3.40338832007e-06 1040308578.55 +UniRef50_UPI00036FE1F3 hypothetical protein 5.83821530933e-08 3.42435388057e-07 114675776.68 +UniRef50_A3PL07 Isopentenyl diphosphate Delta isomerase 0.000111087583992 6.41128999484e-05 -18964256392.6 +UniRef50_A3PRG0 8.3672077002e-06 9.85325696855e-06 599936325.508 +UniRef50_A7ZM51 Voltage gated ClC type chloride channel ClcB 9.26872944512e-06 8.08875892042e-06 -476368580.688 +UniRef50_O07631 GTP binding protein TypA BipA homolog 0.000226456624636 6.92764458553e-05 -63455566991.6 +UniRef50_V0KMQ9 Pyruvate 2.57194294777e-05 9.21906527381e-06 -6661399511.35 +UniRef50_M4NGZ8 ATP dependent zinc metalloprotease FtsH 6.93778316813e-06 3.66050917015e-05 11977056513.7 +UniRef50_Q7VFS3 NADH quinone oxidoreductase subunit B 2.71711053829e-07 1.89596656067e-06 655731879.968 +UniRef50_UPI0002F2BA6C phosphoglyceromutase 1.65574222083e-07 1.65738181424e-07 66192.3979691 +UniRef50_X1FPD3 Marine sediment metagenome DNA, contig 6.87964836561e-08 7.59979584973e-08 2907323.76543 +UniRef50_O27906 CoB CoM heterodisulfide reductase iron sulfur subunit C 2.02701179436e-05 1.73206278698e-06 -7484040354.24 +UniRef50_K2AN26 1.73297512937e-07 3.21869275367e-07 59980243.6735 +UniRef50_I4GV48 2.48062101151e-08 3.33649226382e-08 3455257.27279 +UniRef50_F0RC69 2.00433523731e-08 2.46233829052e-07 91315871.1046 +UniRef50_X5EHY0 Sodium hydrogen exchanger family protein 0.000210619565628 7.33053838988e-05 -55435420198.5 +UniRef50_A6LVZ4 Glycerol 1 phosphate dehydrogenase (+)) 6.6279883438e-06 6.78200889273e-06 62179985.6477 +UniRef50_A8ZUH7 Holliday junction ATP dependent DNA helicase RuvB 1.55527721116e-07 9.46713363959e-08 -24568469.3033 +UniRef50_B9NXF6 Plasmid partitioning protein RepA 3.33308458276e-06 1.06249749494e-06 -916663870.59 +UniRef50_UPI0003F56407 hypothetical protein 5.17218252234e-08 1.075876593e-07 22553722.7676 +UniRef50_B9KYR9 Polyribonucleotide nucleotidyltransferase 5.27091752672e-06 3.26769737766e-05 11064161218.2 +UniRef50_Q7U9I1 Ribonuclease PH 7.65695853346e-08 2.11686589682e-07 54548392.727 +UniRef50_U5UJE9 0.000180600207159 3.89625051803e-05 -57180878379.0 +UniRef50_A6LVF8 Signal transduction histidine kinase, LytS 2.10856006213e-06 7.29932545394e-06 2095575686.53 +UniRef50_C0Z7Z0 Formamidopyrimidine DNA glycosylase 6.30584853844e-08 4.35971349292e-06 1734612352.43 +UniRef50_W7Z395 Cold shock DEAD box protein A 8.90717327312e-08 1.138993359e-07 10023208.0682 +UniRef50_Q3ZXC2 1 deoxy D xylulose 5 phosphate synthase 2.78982478667e-08 9.67666088446e-07 379395809.49 +UniRef50_I0KD42 8.63919048438e-07 2.80825071437e-07 -235402193.883 +UniRef50_Y3FJT1 4.216438889e-05 3.00322073074e-06 -15809844147.5 +UniRef50_V4VCN9 1.6508133623e-06 3.27259672642e-08 -653241737.543 +UniRef50_Q6AHE8 Glutamate 1 semialdehyde 2,1 aminomutase 7.1248763967e-08 3.65273912647e-07 118701560.616 +UniRef50_S1HH61 Cyclic di GMP binding protein 5.47941209687e-05 1.42553044142e-05 -16366017710.3 +UniRef50_L5QQP7 Type I restriction modification DNA specificity domain protein 3.96974130375e-06 3.55308990285e-05 12741626672.4 +UniRef50_P55222 Cyclic AMP receptor like protein 5.93084818241e-06 4.31119277652e-06 -653874762.765 +UniRef50_C6SU58 Bacteriocin operon protein ScnE homolog 5.1498495613e-05 6.96238046426e-06 -17979776205.1 +UniRef50_Q1Q2Q1 2.23583800242e-07 3.06716228936e-07 33561581.6134 +UniRef50_Q7VIT0 1 deoxy D xylulose 5 phosphate reductoisomerase 4.45958476869e-06 6.55205534562e-05 24651062361.5 +UniRef50_UPI0003AD0F18 hypothetical protein 1.51962883634e-07 3.04422987284e-07 61550014.7394 +UniRef50_H2K2L5 Anti sigma factor 2.87028174756e-07 1.40606938378e-05 5560597850.04 +UniRef50_B9E8P7 0.000117585639058 3.63372371757e-05 -32800976869.9 +UniRef50_UPI00045E98AE hypothetical protein 2.17673155582e-08 4.38527923101e-08 8916177.98402 +UniRef50_Q3IUW6 Putative conjugative transfer factor, TraB 5.86413496936e-05 1.38521226105e-05 -18081960599.1 +UniRef50_A3JQQ6 9.05133237508e-08 5.71553800739e-08 -13467011.2104 +UniRef50_B1JLB8 1.29331771088e-05 1.58343711284e-05 1171247627.37 +UniRef50_A1B1W2 3.08728681172e-06 4.12145865429e-07 -1079987227.69 +UniRef50_P64543 8.28479400653e-06 8.51875111142e-06 94451354.2206 +UniRef50_B0KJ12 KAP P loop domain protein 9.15918502187e-08 1.30775344652e-05 5242584389.11 +UniRef50_J7MB46 Quinolone resistance protein 8.09880982916e-06 1.5087873687e-05 2821570844.87 +UniRef50_A0A058ZI44 5.48959453517e-07 5.39378129694e-07 -3868098.00341 +UniRef50_UPI0004756747 6,7 dimethyl 8 ribityllumazine synthase 1.8030550393e-07 2.82858879607e-07 41402056.2322 +UniRef50_E6MX89 7.48941698309e-06 0.000412613346166 1.63553501641e+11 +UniRef50_Q38V64 Alanine racemase 1.29249195263e-07 2.19934897039e-05 8826862197.72 +UniRef50_Q8XV10 Elongation factor G 1 2.58038355446e-06 0.000135612186774 53706571443.7 +UniRef50_E7IEY2 1.38415488225e-06 2.67370526219e-07 -450859549.014 +UniRef50_K7SMY3 Phosphoglycerate mutase family protein 7.94707344946e-06 9.442226434e-05 34911095732.4 +UniRef50_A5IPM4 0.000160587725539 5.57751520879e-05 -42314122097.1 +UniRef50_UPI00039C12F7 hypothetical protein 9.40642543756e-07 2.29309603022e-07 -287173837.211 +UniRef50_UPI000373BCBB hypothetical protein 5.46306918626e-08 7.76895718027e-08 9309152.7961 +UniRef50_H5M601 Beta galactosidase small chain family protein 2.11102532133e-05 3.38502154399e-06 -7155893537.95 +UniRef50_UPI0002374DEC ABC transporter, permease ATP binding protein 6.04482510819e-08 1.16327372381e-07 22559086.9824 +UniRef50_B3CQC3 Phosphoglycerate kinase 2.60933511721e-07 2.65253410208e-07 1743996.03032 +UniRef50_Q2K5Z5 Leucine responsive transcriptional regulator protein, AsnC family 0.000186330557244 1.78918484814e-05 -68000773703.0 +UniRef50_Q2YZ71 Imidazole glycerol phosphate synthase subunit HisF 0.000288196427476 3.22805593995e-05 -1.03316376383e+11 +UniRef50_B2SII2 Glycine tRNA ligase alpha subunit 0.000123748733341 0.000147236726277 9482390978.35 +UniRef50_UPI00039E6CDE 50S ribosomal protein L17 1.11967442657e-07 7.20993760686e-07 245871398.182 +UniRef50_UPI0003F05D85 PREDICTED 1.78195132838e-07 3.45589255063e-06 1323246669.43 +UniRef50_Q28RK4 Orotate phosphoribosyltransferase 1.11220159952e-06 5.91975211019e-07 -210021776.934 +UniRef50_Q5HM44 Zinc type alcohol dehydrogenase like protein SERP1785 0.000234720409477 7.54857999409e-05 -64284965898.1 +UniRef50_A3PRI0 Forkhead associated protein 7.68581913618e-06 1.45955537989e-06 -2513619083.26 +UniRef50_UPI00047CBFD0 hypothetical protein 3.8753355487e-06 1.46293075096e-06 -973917420.383 +UniRef50_B5F731 Non specific ribonucleoside hydrolase RihC 3.13533492155e-05 4.07333386473e-06 -11013276960.6 +UniRef50_P0AFI1 Probable oxalyl CoA decarboxylase 2.1352762228e-05 7.97929980985e-06 -5399030889.03 +UniRef50_B4EX96 HTH type transcriptional regulator BetI 0.000119489730753 1.39318247705e-05 -42615021986.5 +UniRef50_B4RQ09 PglB 9.28244234828e-07 2.32654876292e-05 9017819267.12 +UniRef50_A0A023KRT9 2.33754801327e-05 3.565191612e-06 -7997656575.38 +UniRef50_A0A046SJ38 PE PGRS family protein PE_PGRS54 5.01645641543e-09 2.14054200114e-08 6616425.7189 +UniRef50_UPI000360B5E8 hypothetical protein 4.64195982495e-08 7.58066416452e-08 11863910.0384 +UniRef50_UPI0003C15BBB 8.84322945304e-08 2.70551086603e-08 -24778723.1185 +UniRef50_A6LRJ1 Amino acid permease associated region 4.32414948181e-06 1.34089189795e-05 3667632928.88 +UniRef50_UPI0004791D16 hypothetical protein 2.29303341488e-07 5.45545329802e-07 127670771.408 +UniRef50_Q49YA1 Uroporphyrinogen III synthase 7.39001850706e-05 1.13501117807e-05 -25252232162.8 +UniRef50_Q89EB1 Bll7176 protein 7.67217901022e-05 2.24520260367e-05 -21909369718.1 +UniRef50_Q6F885 2.94910928794e-06 6.47658193312e-05 24956164420.8 +UniRef50_R9YS82 tRNA threonylcarbamoyl adenosine modification protein YeaZ 0.000240280820458 8.55779619975e-05 -62455442377.9 +UniRef50_X1ABS4 Marine sediment metagenome DNA, contig 3.99884952848e-07 3.63689403977e-07 -14612587.2486 +UniRef50_Q5HL89 9.47641034654e-05 3.53413568556e-05 -23989692005.5 +UniRef50_W0NHL6 Branched chain amino acid ABC transporter ATP binding protein 9.97378282825e-05 2.74964161527e-05 -29164744578.6 +UniRef50_Q9ZKU5 Acetate kinase 9.5828622276e-06 4.56224764565e-05 14549634520.0 +UniRef50_A3PP96 TonB dependent siderophore receptor 0.000109029725924 2.01798695158e-05 -35869777342.3 +UniRef50_UPI000349F59B hypothetical protein 9.82989582285e-08 2.24207230432e-07 50830714.557 +UniRef50_B0KMS2 1.04417019246e-07 8.29103858392e-07 292564969.871 +UniRef50_UPI000369906D hypothetical protein 4.62492093701e-06 1.01742789409e-06 -1456389210.34 +UniRef50_X0ZTS5 Marine sediment metagenome DNA, contig 4.46719007521e-06 3.42676011522e-06 -420034342.359 +UniRef50_UPI00016A7F76 branched chain amino acid ABC transporter, ATP binding protein, putative, partial 1.72634369719e-06 5.79557177821e-07 -462971790.523 +UniRef50_Q28Q04 Phosphate ABC transporter membrane protein 2, PhoT family 3.59254093474e-05 4.40137395082e-06 -12726639933.0 +UniRef50_A5ULX2 Adhesin like protein 4.50304950556e-05 1.1305085534e-05 -13615361681.2 +UniRef50_M9VA38 Anchored repeat type ABC transporter, ATP binding subunit 7.94399234004e-06 2.14980360775e-05 5471933783.65 +UniRef50_UPI000350B839 PREDICTED 1.0021312947e-05 5.0641974357e-06 -2001248362.56 +UniRef50_UPI000377C272 hypothetical protein 7.02417672814e-08 2.13400455753e-08 -19742225.1444 +UniRef50_G0DVM2 ABC transporter ATP binding protein 3.71996109852e-06 5.59158482614e-05 21072120163.2 +UniRef50_UPI0003B35C64 MerR family transcriptional regulator 1.79094947032e-06 2.84034325442e-07 -608360135.916 +UniRef50_Q8FMG3 GTP cyclohydrolase 1 6.8051226662e-05 4.3980082463e-05 -9717816299.29 +UniRef50_UPI0002D62563 hypothetical protein 4.31990838211e-06 5.9146847785e-07 -1505216942.45 +UniRef50_A5ULL0 PyrE like protein 3.65881650461e-05 1.34674446517e-05 -9334118546.36 +UniRef50_F2AIM9 2.45026320497e-05 1.2905598376e-05 -4681864805.68 +UniRef50_A5UNK0 N acetyltransferase, GNAT family 2.73621213779e-05 1.04158181736e-05 -6841430558.1 +UniRef50_G2SIS1 Gamma glutamyltransferase 1.48645555952e-06 5.35202403857e-05 21006677460.7 +UniRef50_A6V4P3 Trans aconitate 2 methyltransferase 4.21259974083e-06 9.38933079941e-06 2089909853.98 +UniRef50_UPI0002736FFE GntR family transcriptional regulator 5.01361488927e-07 1.22067286509e-06 290394829.5 +UniRef50_R4K9K7 2.68217239288e-06 1.54533666847e-05 5155887855.78 +UniRef50_B7A6L8 4.41067028242e-07 6.99786618047e-06 2647060278.73 +UniRef50_A6UW73 Argininosuccinate lyase 2.95695614437e-05 1.38190100552e-05 -6358690876.54 +UniRef50_B0VLA1 1.71712260249e-06 5.9044610884e-05 23143810506.6 +UniRef50_Q46RL8 Trans feruloyl CoA synthase 7.10450418114e-07 8.09788957508e-05 32405356385.4 +UniRef50_UPI00037F929E hypothetical protein 7.52991739432e-08 2.5397030622e-07 72131728.6416 +UniRef50_K5YBM6 6.0082264109e-07 7.0117833249e-07 40514824.121 +UniRef50_R5ZXT3 7.84129352962e-08 1.27651696617e-07 19878292.1728 +UniRef50_UPI0003F68FC8 hypothetical protein 4.98293520664e-08 2.79970255203e-07 92910706.7429 +UniRef50_A5UKD8 Adhesin like protein 2.21644117185e-05 7.231065879e-06 -6028774968.17 +UniRef50_G7M5R9 4.58179202255e-06 1.27204744013e-05 3285685949.17 +UniRef50_R5VLQ7 Predicted acyltransferase 2.79619251005e-06 3.37504805937e-05 12496625951.2 +UniRef50_B0TI92 S adenosylmethionine decarboxylase proenzyme 4.0729586849e-05 5.62030481807e-05 6246826220.33 +UniRef50_P37251 Acetolactate synthase large subunit 1.42796143058e-07 3.74434981121e-07 93515441.4542 +UniRef50_M1PXL5 Sensor histidine kinase 3.47352227904e-06 1.10573844036e-05 3061698204.14 +UniRef50_C2Z7L9 6.22343944084e-07 7.39338656704e-06 2733552996.93 +UniRef50_E8SFE6 7.80593506899e-05 3.56521842326e-05 -17120293493.3 +UniRef50_M4R5V1 3.41631850066e-06 3.79064368286e-05 13924084010.3 +UniRef50_Q9Z8R3 DNA gyrase subunit B 6.09051204113e-08 1.75457671522e-07 46246270.6014 +UniRef50_Q8FCZ8 1.30033358621e-05 6.97598516207e-06 -2433315441.51 +UniRef50_Q8FIB4 3.22946452092e-05 6.61381253552e-06 -10367667289.6 +UniRef50_W8T781 Enterobactin synthase 7.64199186819e-07 1.38450791829e-06 250426246.939 +UniRef50_A9GRJ8 1.21864883278e-07 6.26409934916e-06 2479695427.57 +UniRef50_Q9KD39 Putative GTP cyclohydrolase 1 type 2 9.29101982161e-08 2.20660053703e-06 853322727.675 +UniRef50_UPI0002FB4076 hypothetical protein 3.89553160012e-07 5.86104233824e-07 79350080.4508 +UniRef50_B9KTP9 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 8.7481225201e-06 4.93470210772e-06 -1539524616.41 +UniRef50_UPI000350BA5C 5.29900924189e-08 7.26721007003e-08 7945868.2686 +UniRef50_A8IG02 Phosphate starvation inducible protein 8.12923575682e-05 3.48297700341e-05 -18757516747.6 +UniRef50_P77503 3.47480436562e-05 4.94073766593e-05 5918152623.6 +UniRef50_Q8FK36 Cation efflux system protein CusA 4.21167021005e-06 1.23514856297e-06 -1201658314.95 +UniRef50_K0C7J8 Glutathione S transferase domain protein 2.23435732697e-05 3.70690424931e-06 -7523851981.18 +UniRef50_UPI0003C7F072 DNA binding protein 1.62006688492e-06 1.11269118695e-05 3838029982.38 +UniRef50_Q9CJR2 1.19987176185e-06 1.41222290873e-05 5216914227.46 +UniRef50_P77509 5.43104811486e-06 5.755298106e-06 130903700.418 +UniRef50_B9KPE8 0.000100933085386 5.74905051763e-06 -38426962915.8 +UniRef50_J9P5H2 4.84595718711e-07 1.37250211555e-06 358458708.241 +UniRef50_Q6FD84 Urease subunit beta 1.53612540492e-05 5.79052363126e-06 -3863821315.79 +UniRef50_B9JTR3 ATP synthase gamma chain 7.76772345897e-05 7.50842177285e-06 -28328010802.3 +UniRef50_UPI00040C67E8 hypothetical protein 5.20270139255e-07 7.73221387876e-07 102119523.129 +UniRef50_UPI00047E5667 PTS fructose transporter subunit IIBC 5.09837372503e-08 3.78278982343e-06 1506575911.4 +UniRef50_A5UL83 30S ribosomal protein S3 2.36489475572e-05 1.21828693992e-05 -4628996456.99 +UniRef50_C7N8H5 Lipoyltransferase and lipoate protein ligase 5.73633539e-05 1.79093935162e-05 -15928047961.5 +UniRef50_UPI00047C1EB1 hypothetical protein 1.37364212615e-08 2.92557476167e-08 6265342.49314 +UniRef50_M1BG02 8.73615990094e-09 1.70063429579e-07 65129798.4772 +UniRef50_Q21Y67 ATP dependent Clp protease proteolytic subunit 8.63984350154e-08 1.60692457284e-06 613855060.792 +UniRef50_UPI0003C19464 PREDICTED 7.82982570874e-07 1.74076596667e-07 -245822813.904 +UniRef50_A5WGE7 1 deoxy D xylulose 5 phosphate reductoisomerase 2.71778695192e-06 5.39467744712e-05 20681770911.9 +UniRef50_UPI0004407D87 hypothetical protein FOMMEDRAFT_83654 9.26572566966e-07 3.43726909496e-06 1013598998.06 +UniRef50_G8W4V0 Aromatic amino acid transporter 1.75660869402e-05 2.12203620496e-06 -6234952801.61 +UniRef50_Q04IT2 Segregation and condensation protein A 3.21624152886e-05 2.67591608365e-05 -2181360127.7 +UniRef50_Q73YR0 FtsQ 2.31021089177e-07 2.69962151971e-07 15720984.9105 +UniRef50_UPI0003818A60 hypothetical protein 1.47632401516e-07 1.60566958286e-07 5221839.29291 +UniRef50_A0RRT8 Imidazole glycerol phosphate synthase subunit HisF 6.82627689427e-05 3.38360232196e-05 -13898499712.1 +UniRef50_UPI000255E8B6 molybdopterin molybdochelatase 7.92298501578e-08 1.5978580845e-07 32521428.8953 +UniRef50_A9W3A9 5.63597684238e-07 1.22996209139e-07 -177876222.286 +UniRef50_H4PDP4 Integrase core domain protein 3.01412334254e-05 1.80806146039e-05 -4869019818.68 +UniRef50_I6TUC0 UDP glucose 6 dehydrogenase 6.08950878337e-06 1.31685031215e-05 2857876883.33 +UniRef50_Q9JWJ7 Ribosomal RNA small subunit methyltransferase I 4.0555503329e-06 1.16852640315e-05 3080209047.24 +UniRef50_UPI00046E904F allantoinase, partial 6.46328634424e-08 1.37995389956e-07 29617352.213 +UniRef50_Q0FVS1 3.70773414769e-07 1.57193413515e-07 -86224867.4276 +UniRef50_D7GCL3 Cation transport protein 7.47907192158e-06 3.5194524375e-05 11189068262.3 +UniRef50_F4BLG0 8.07432540743e-08 3.01031027507e-07 88932877.3699 +UniRef50_D5C7M7 6 phospho alpha glucosidase 6.13401120288e-06 2.94017768569e-05 9393482522.11 +UniRef50_X1Y8J9 6.99299033059e-08 1.39728562473e-07 28178575.2316 +UniRef50_C1KVE4 Uridine kinase 0.000225478616875 0.000161253363425 -25928522950.3 +UniRef50_W8RU50 GTA host specificity protein 8.41663061186e-08 7.9391185713e-08 -1927774.70506 +UniRef50_UPI0003EFB0C6 hypothetical protein, partial 8.03299795863e-07 4.08349777735e-08 -307816403.558 +UniRef50_O34436 Probable low affinity inorganic phosphate transporter 0.000265132166772 7.27277337269e-05 -77676030688.2 +UniRef50_R0ZXH9 3.1244887706e-07 9.3936415809e-07 253093392.067 +UniRef50_Q9L7S0 3 sulfolactaldehyde reductase 4.19477277585e-05 1.46917406662e-05 -11003576457.7 +UniRef50_Q9CMC7 tRNA dimethylallyltransferase 4.42254404504e-05 9.5941948423e-06 -13981058825.2 +UniRef50_A3PLQ2 Glycoside hydrolase, family 16 1.71565394798e-05 3.73031627616e-06 -5420331065.58 +UniRef50_Q9PMT4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.50647684992e-06 4.59216815504e-05 17527250902.1 +UniRef50_UPI0002DDE806 hypothetical protein 4.88277720631e-07 1.73249803567e-07 -127180635.946 +UniRef50_A0A033NL01 1.03362779302e-06 1.7964420062e-07 -344763655.809 +UniRef50_Q5HRE0 UPF0272 protein SERP0253 0.000121644600107 3.00921628803e-05 -36960842383.2 +UniRef50_Q5HNA8 8.79492359642e-05 1.84692369288e-05 -28049928226.1 +UniRef50_R4REY2 9.35959437895e-07 2.07830890927e-06 461180499.796 +UniRef50_A6M2K2 Methyl accepting chemotaxis sensory transducer 2.15597116244e-06 1.37921739413e-05 4697677854.11 +UniRef50_Q89XS8 Branched chain amino acid transaminase 7.86612504329e-05 2.31936364357e-05 -22392956434.8 +UniRef50_P0C2L2 Glutathione transport system permease protein GsiD 1.97209305265e-05 2.33451940873e-06 -7019107523.51 +UniRef50_I4F571 3.44983293e-06 1.44062992721e-06 -811139907.92 +UniRef50_G7M5T5 5.09441935021e-06 5.60459658694e-06 205964811.047 +UniRef50_E8XP36 Outer membrane protein assembly factor BamC 2.05858621324e-05 2.75996920751e-06 -7196531722.09 +UniRef50_UPI0003B65F02 3 hydroxyacyl CoA dehydrogenase 1.26027651884e-07 2.69618085624e-07 57969220.1536 +UniRef50_UPI0003651249 hypothetical protein 1.04693635558e-06 5.58823125138e-07 -197057300.952 +UniRef50_D8JEK9 Phage related protein family protein 3.5201879381e-06 7.83711567608e-05 30218254638.4 +UniRef50_Q2W276 1.32714905255e-06 1.10493452284e-06 -89710732.5229 +UniRef50_A6LX89 Elongation factor G, domain IV 7.73205535494e-06 6.48277767855e-06 -504348728.32 +UniRef50_UPI0001FFE2B2 MarR family transcriptional regulator 1.50351838174e-07 1.17080923471e-06 411971173.404 +UniRef50_UPI0003B50DDF transposase 1.88613600258e-06 1.70101437937e-06 -74735870.9877 +UniRef50_P39396 Inner membrane protein YjiY 3.01120479254e-05 1.67419231318e-05 -5397683449.06 +UniRef50_UPI00047720D7 mannitol ABC transporter permease 3.87679761388e-06 1.78484901848e-06 -844545319.059 +UniRef50_UPI0004059D26 hypothetical protein 1.14764978599e-07 5.3870103275e-07 171148187.341 +UniRef50_I2NDA2 PF06738 domain protein 6.07945638739e-07 4.71042512946e-07 -55269471.8729 +UniRef50_H8HC20 Rhodanese like domain protein 3.00114682395e-05 1.10181953877e-05 -7667817323.94 +UniRef50_A7MGP9 2.99592054644e-06 6.86783035329e-06 1563137502.7 +UniRef50_W5X3Y6 50S ribosomal protein L1 3.42040678106e-07 3.02036460737e-06 1081272236.97 +UniRef50_Q46814 Probable hypoxanthine oxidase XdhD 2.45513973548e-05 8.04560244025e-06 -6663591955.9 +UniRef50_UPI0003AF618D PREDICTED 1.40825318871e-07 1.29639478793e-06 466517575.092 +UniRef50_B9T9T8 2.00416346621e-06 4.82091617308e-07 -614479083.323 +UniRef50_P76369 2.78244392301e-05 2.99307471484e-06 -10024726569.9 +UniRef50_A0A023B4Y6 1.44340266822e-07 1.65926709305e-07 8714711.72582 +UniRef50_Q88PG8 Dipeptide ABC transporter, periplasmic dipeptide binding protein 1.47125311932e-05 7.42504450425e-06 -2942047803.85 +UniRef50_A5F3J8 30S ribosomal protein S7 0.000551593175362 0.000557451758787 2365182021.58 +UniRef50_D4KTJ1 ABC type Fe3+ hydroxamate transport system, periplasmic component 2.43459729101e-06 1.82230372662e-05 6373986963.93 +UniRef50_UPI0002F2DA04 hypothetical protein 2.07721582677e-07 8.40478702869e-08 -49928595.339 +UniRef50_P10346 Glutamine transport ATP binding protein GlnQ 7.63480675589e-05 2.76649053952e-05 -19653989975.1 +UniRef50_A0RA50 Alcohol dehydrogenase, zinc containing protein 1.00611995971e-05 1.79160791827e-06 -3338535640.05 +UniRef50_Z4CKX6 2.38277775142e-06 6.1503483509e-07 -713659507.967 +UniRef50_A8Y0M2 Protein CBG21728 3.76653230877e-06 4.07252046241e-06 123531172.521 +UniRef50_UPI00026573D2 PREDICTED 2.42271584122e-07 1.0628956714e-07 -54897608.9426 +UniRef50_P27833 dTDP 4 amino 4,6 dideoxygalactose transaminase 2.802401752e-05 4.6452078599e-06 -9438312350.04 +UniRef50_D3E2C7 RNA binding protein 2.10425562608e-05 6.28310334557e-06 -5958572260.72 +UniRef50_UPI0003DEB96B PREDICTED 5.11596203503e-07 6.93134371095e-07 73289185.9807 +UniRef50_UPI00027F4AD8 5.61400445783e-06 7.17068506854e-06 628451065.163 +UniRef50_N1M8P2 5.81519728681e-06 2.99865272711e-06 -1137073601.64 +UniRef50_D3ZUH5 Protein RGD1566084 1.93227575235e-07 9.168420621e-08 -40994304.1527 +UniRef50_Q63NI4 Methionine import ATP binding protein MetN 2 2.19608050819e-06 8.84523200785e-08 -850875363.046 +UniRef50_UPI000367D0D4 hypothetical protein 4.00211803659e-07 6.30263613247e-07 92874738.5838 +UniRef50_C0DRQ8 7.96543573264e-07 3.43539445801e-07 -182883325.243 +UniRef50_UPI0003B3FD89 ribonuclease E 7.87893460917e-08 3.23299969984e-08 -18756209.3493 +UniRef50_Q8CMU9 Protein translocase subunit SecA 2 0.000256575032881 5.45343430768e-05 -81566305791.9 +UniRef50_D5ALK5 1.53500836213e-05 5.63990854904e-06 -3920116833.92 +UniRef50_P33234 HTH type transcriptional regulator AdiY 6.54895919509e-05 2.98291729603e-05 -14396548749.1 +UniRef50_UPI0003B59851 alpha amylase 3.27064237454e-08 4.53503308009e-08 5104500.43649 +UniRef50_UPI00037EDB2C hypothetical protein 1.07268040385e-07 6.98923856825e-07 238858713.53 +UniRef50_Q8KE45 UPF0324 membrane protein CT0845 3.00655877108e-06 1.47110814645e-05 4725259441.97 +UniRef50_G0DSM5 Phosphotransferase enzyme family protein 3.35744749695e-06 4.69595653126e-05 17602710020.3 +UniRef50_UPI00037A1055 hypothetical protein 1.17830562925e-07 7.76230358328e-07 265804076.878 +UniRef50_A0A059DM35 1.34959902318e-07 7.0976116436e-07 232054323.091 +UniRef50_O86810 DNA translocase FtsK 2.21840760214e-06 5.80795293583e-05 22551820346.0 +UniRef50_Q03PU9 DNA directed RNA polymerase subunit beta 2.15529640536e-06 1.56615034484e-06 -237845494.267 +UniRef50_UPI0003C10113 2.39757844185e-07 4.56746563182e-07 87601008.6101 +UniRef50_W7WPQ3 1.23012413117e-05 2.93242250447e-05 6872387428.51 +UniRef50_A7ZTX6 Ketol acid reductoisomerase 2.62761631757e-05 1.22262686577e-05 -5672114828.51 +UniRef50_J4SMJ9 1.01280545124e-06 6.10338767555e-07 -162480739.025 +UniRef50_Q0SIB7 Hemin import ATP binding protein HmuV 6.2887668822e-08 4.16240961109e-07 142653060.229 +UniRef50_O32176 Probable acyl CoA dehydrogenase 1.78909383646e-06 4.66944115205e-06 1162831557.14 +UniRef50_A7ZKS4 Phosphatase NudJ 5.02338986561e-05 1.19605812642e-05 -15451407897.5 +UniRef50_Q6GCC9 Efem EfeO family lipoprotein 0.000119688526748 2.73928442559e-05 -37260899617.4 +UniRef50_A0A017HGM4 Putative outer membrane lipoprotein 1.14911380274e-07 7.07627926185e-08 -17823326.6006 +UniRef50_UPI000476B824 CpxR 1.38566080968e-07 2.92956886931e-07 62329462.9555 +UniRef50_UPI00046D7612 hypothetical protein 3.63242282101e-08 2.62616567884e-06 1045550774.55 +UniRef50_L8UE55 PTS system, galactitol specific IIC component 1.7309970547e-05 3.88574612093e-06 -5419524134.57 +UniRef50_Q9RTN2 Putative phosphoenolpyruvate synthase regulatory protein 4.08502003005e-06 0.000270017661622 1.07360270771e+11 +UniRef50_UPI00036E3FCF phospholipase C, partial 4.94717838992e-08 1.49713180762e-07 40468682.0139 +UniRef50_Q6XQN6 Nicotinate phosphoribosyltransferase 3.11684037033e-08 7.58539051349e-08 18040085.2807 +UniRef50_G8T537 Transposase IS66 2.81387596293e-08 4.44976321649e-08 6604277.58856 +UniRef50_A0A022H366 Transposase 5.13472494063e-07 2.68484778297e-05 10631764820.8 +UniRef50_D7DUK5 Tryptophan tRNA ligase 2.41132256863e-05 3.33961071697e-06 -8386563284.03 +UniRef50_A5UJH1 2.66266408825e-05 7.33240097973e-06 -7789321415.71 +UniRef50_UPI000365D184 hypothetical protein 3.18876760572e-07 2.07832948651e-06 710312656.375 +UniRef50_A0A031Z188 Replication initiation protein 2.45440372718e-06 1.65475243496e-06 -322829039.494 +UniRef50_G8R9I8 Secretory antigen SsaA 0.000121556998458 5.77713106287e-06 -46741753246.1 +UniRef50_D3QGA7 Luciferase like monooxygenase 0.000213540442619 6.10190014142e-05 -61574777463.0 +UniRef50_H5IJ08 Putative phosphotransferase ydiA domain protein 1.30167582364e-05 4.37506229925e-06 -3488758695.36 +UniRef50_UPI0002B461E9 PREDICTED 1.99899698526e-06 3.41226561394e-06 570553888.154 +UniRef50_UPI0003724D90 hypothetical protein, partial 4.04813725308e-07 6.07076929753e-07 81656137.6831 +UniRef50_P07962 Methyl coenzyme M reductase subunit alpha 4.67328378824e-05 2.45986392399e-06 -17873542877.5 +UniRef50_A1SJB1 Adenine phosphoribosyltransferase 2.13268920259e-06 0.000129652779239 51481425195.0 +UniRef50_UPI00036946A1 MULTISPECIES 9.17883611198e-07 8.59461812826e-07 -23585596.9189 +UniRef50_UPI0003C7ADB6 hypothetical protein, partial 1.64130390382e-07 2.84851560469e-06 1083719252.13 +UniRef50_E6M7L3 5.21870030673e-06 1.2431477853e-06 -1604979338.42 +UniRef50_B8ID11 Dihydroorotate dehydrogenase 6.5998345586e-08 8.49687964727e-08 7658603.81657 +UniRef50_A0A058Z181 3.89781183141e-09 8.42553071784e-08 32441306.9689 +UniRef50_UPI000378D9D6 MULTISPECIES 1.21566238292e-06 1.14130524423e-06 -30018889.3539 +UniRef50_A1V5P8 Nitrite extrusion protein 2.059468112e-06 5.07635054785e-06 1217952460.66 +UniRef50_A0A059MV07 3D trihydroxycyclohexane 1,2 dione hydrolase 7.89169314675e-07 5.62200671941e-05 22378133687.5 +UniRef50_Q2RS22 Nickel import ATP binding protein NikE 1.72865639535e-05 3.43391517665e-06 -5592484302.31 +UniRef50_UPI000475FACA phage tail protein 2.17647527493e-07 3.38772112259e-07 48899481.2358 +UniRef50_I6U0Z2 Transcriptional regulator 5.34926201181e-05 2.2149155666e-05 -12653741226.9 +UniRef50_B9KX94 ATPase, ParA type 0.000196446599325 4.58150337815e-05 -60811811466.9 +UniRef50_G0HAA3 Putative membrane protein 3.27737682008e-07 3.13172873074e-06 1132005595.21 +UniRef50_B1XW26 Lipoprotein signal peptidase 1.13026914727e-07 2.87216727006e-07 70322564.7664 +UniRef50_B1KEG2 40 residue YVTN family beta propeller repeat protein 1.07976115006e-06 1.1364668986e-07 -390032263.14 +UniRef50_K7RRX2 Lipoprotein signal peptidase 4.4150408053e-06 4.7975496827e-05 17585890642.9 +UniRef50_G7M388 CoA disulfide reductase 4.59414996592e-07 1.27761251622e-05 4972407036.88 +UniRef50_E7C400 Fe S oxidoreductase 5.49645143113e-08 1.17585981643e-07 25281054.8136 +UniRef50_D9SNP1 OmpA MotB domain protein 2.7159816135e-05 1.87080877618e-05 -3412066458.63 +UniRef50_F2AJ88 4.02185676218e-06 1.56094570083e-06 -993499994.242 +UniRef50_UPI00046577D3 dihydroxy acid dehydratase 4.67397024988e-07 3.10562978799e-07 -63315829.0167 +UniRef50_E3GX46 Triphosphoribosyl dephospho CoA protein 3.6065429991e-05 1.5770722748e-05 -8193222358.06 +UniRef50_E6CES2 2.16840228218e-08 6.49775330824e-05 26223473363.3 +UniRef50_U3P882 1.14274265039e-06 5.73424167317e-05 22688498074.2 +UniRef50_L0WHQ4 Short chain dehydrogenase reductase SDR 3.08845282678e-06 6.33977153008e-05 24347589338.6 +UniRef50_Q0FGF7 Fe S metabolism associated family protein 2.07408041022e-06 2.62907580684e-07 -731192696.875 +UniRef50_UPI0003B39369 hypothetical protein 2.16455590433e-06 4.52497292161e-07 -691179071.055 +UniRef50_UPI0003840079 PREDICTED 1.3903645837e-07 6.56049110031e-07 208724351.934 +UniRef50_UPI00037D595A hypothetical protein 2.97089594838e-08 2.59681137122e-07 92842590.1884 +UniRef50_UPI0003B59F3E iron ABC transporter substrate binding protein 3.34235057783e-07 3.60612104801e-07 10648737.5639 +UniRef50_I1B3N6 1.09098768827e-05 4.71597269197e-06 -2500555129.55 +UniRef50_A3CTF1 Nucleoside diphosphate kinase 1.56121172689e-07 1.79321490278e-07 9366252.91059 +UniRef50_O27714 Transcription elongation factor Spt5 2.41462252992e-06 7.55607774488e-06 2075668563.03 +UniRef50_UPI00047C566A macrolide ABC transporter ATP binding protein 4.11000424037e-08 6.20222673958e-06 2487322453.18 +UniRef50_A3CMZ5 Dihydrolipoamide acetyl transferase, E2 component, putative 5.44956103083e-05 2.1517964312e-05 -13313480369.9 +UniRef50_R7KL80 4.84204971575e-06 4.41158866774e-05 15855329925.6 +UniRef50_D0ZSY8 Anti sigma E factor RseA 2.72039707059e-05 1.37272082355e-05 -5440734387.77 +UniRef50_UPI00026C6BF8 6 pyruvoyl tetrahydropterin synthase 9.84517308623e-07 2.20109919488e-06 491149036.622 +UniRef50_G2I067 DNA gyrase modulator 2.39704322997e-05 7.28326609419e-06 -6736813771.72 +UniRef50_O33406 Uptake hydrogenase large subunit 0.000100702773329 2.12717096976e-05 -32067295116.8 +UniRef50_S4MZL0 1.43336645087e-06 1.51696611984e-06 33750212.2465 +UniRef50_Q7A7M5 UPF0324 membrane protein SA0329 0.000217176533114 0.000101676502468 -46628779716.5 +UniRef50_UPI0004778F57 hypothetical protein 2.24821107509e-07 2.00138698081e-06 717221443.966 +UniRef50_R7PUY3 2.39415561391e-05 9.72995717799e-06 -5737396896.53 +UniRef50_P0A960 Glutamate pyruvate aminotransferase AlaA 2.90092267126e-05 1.07226908642e-05 -7382498923.03 +UniRef50_B9KJF9 Flagellar hook protein FlgE 7.88725468533e-06 3.02850801117e-06 -1961535655.88 +UniRef50_B4F105 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 8.81023632128e-06 8.17040286877e-05 29428118485.7 +UniRef50_R0XQP3 1.67798834742e-07 2.68246152003e-07 40551814.6055 +UniRef50_A8IEX2 2.31765666474e-07 9.26347065269e-07 280411034.166 +UniRef50_Q8DUY4 Putative two component membrane permease complex subunit SMU_746c 7.42575607476e-05 1.82493819015e-05 -22611189097.8 +UniRef50_Q6FB27 Nitrate reductase, large subunit 9.94325010105e-07 7.39611194907e-05 29457590335.1 +UniRef50_P74104 Riboflavin biosynthesis protein RibBA 2.87757048937e-07 8.48763930982e-07 226485362.61 +UniRef50_UPI000262CBE2 tRNA 2 selenouridine synthase 3.04451991156e-07 2.28536840298e-07 -30647877.985 +UniRef50_K0HTN3 3.19472344066e-06 6.36900174076e-05 24422692535.2 +UniRef50_Q8XJE0 Geranyltranstransferase 8.31550474524e-06 4.33977193254e-06 -1605052124.21 +UniRef50_UPI0002E69439 hypothetical protein 1.77358706065e-07 8.30491888664e-08 -38073909.401 +UniRef50_UPI0003B34D8A ribonuclease PH 2.72227797231e-07 6.69047162367e-08 -82891447.3948 +UniRef50_UPI00046F223A hypothetical protein, partial 3.52851272132e-07 1.59034388654e-06 499590954.179 +UniRef50_P30860 ABC transporter arginine binding protein 1 4.06067731075e-05 4.74638795622e-06 -14477277542.0 +UniRef50_W7VJ75 Fatty acid binding protein 1.83480753267e-06 1.57340680608e-06 -105530681.072 +UniRef50_D1B150 CreA family protein 1.01616129983e-07 1.71288733495e-07 28127685.0168 +UniRef50_B9KJQ4 3.64493649149e-05 4.09626445797e-06 -13061343671.6 +UniRef50_UPI00040C080C hypothetical protein 1.95684440754e-07 9.57558559283e-08 -40342395.9558 +UniRef50_UPI0004448111 PREDICTED 4.89139670403e-08 5.95014580189e-08 4274300.03119 +UniRef50_P32141 Sulfofructosephosphate aldolase 3.77029824083e-05 1.1508679836e-05 -10574961388.7 +UniRef50_UPI000248C1C0 acyl CoA dehydrogenase domain containing protein 5.14947900503e-08 1.1427533118e-07 25345274.8579 +UniRef50_B0V590 5.10693947458e-06 7.54407083579e-05 28394605590.6 +UniRef50_W0W629 3.3839678925e-06 4.69318901815e-06 528548634.375 +UniRef50_P96611 Thioredoxin like protein YdbP 2.97999794683e-05 1.27474836775e-05 -6884301808.4 +UniRef50_C5N3Y4 XkdX family protein 7.75656141478e-06 1.41752018494e-05 2591283909.03 +UniRef50_Q9RDF2 GTPase Era 3.42251190037e-06 6.87982472135e-05 26392986596.4 +UniRef50_B9KJN1 3.17307645012e-06 2.95688183394e-06 -87280419.5581 +UniRef50_A9BIZ6 Glutamate synthase, NADH NADPH, small subunit 0.000274640610088 8.78213327488e-05 -75421234792.1 +UniRef50_UPI000479919E phosphoribosylaminoimidazolecarboxamide formyltransferase 2.94591333676e-08 3.16372912258e-07 115830613.366 +UniRef50_UPI00037E9975 30S ribosomal protein S2 2.05255626578e-07 2.71068196902e-07 26569342.2509 +UniRef50_UPI00037F5062 hypothetical protein 1.4989529959e-06 3.71726637111e-07 -455075113.666 +UniRef50_A3M5J5 4.55529371447e-06 7.86880308308e-05 29928295684.8 +UniRef50_A0A058ZCQ6 1.04422126926e-06 8.1692034629e-07 -91764171.899 +UniRef50_A0NWH9 8.57712349539e-06 6.4117767888e-06 -874177037.243 +UniRef50_E1VQ88 Transcriptional regulator 5.21844591342e-06 1.29579706428e-05 3124541107.9 +UniRef50_H5YDF6 8.63204288759e-07 1.20547869604e-06 138180378.399 +UniRef50_UPI00037EF636 hypothetical protein 4.24156623778e-07 1.01588713435e-06 238888868.468 +UniRef50_UPI00025582F7 aldehyde dehydrogenase 4.13492953149e-07 1.94162164875e-07 -88546530.7177 +UniRef50_C5Q4V1 8.5010914948e-05 1.15810472625e-05 -29644538670.4 +UniRef50_UPI000474476C hypothetical protein 2.8642377673e-07 1.34936514644e-07 -61157266.6619 +UniRef50_F0JCL8 1.36650160722e-06 1.32994108175e-07 -497982114.202 +UniRef50_B7V9P7 RNA binding protein, putative 8.07625501377e-06 3.81995238133e-06 -1718321603.42 +UniRef50_C3TQZ2 Thiamine import ATP binding protein ThiQ 2.67146684242e-05 6.32387253784e-06 -8232014522.54 +UniRef50_K9AHZ4 6 pyruvoyl tetrahydropterin synthase 3.03659412023e-07 1.43730540932e-06 457666800.511 +UniRef50_P26239 Magnesium chelatase 38 kDa subunit 1.60119057009e-05 3.94357039049e-06 -4872135059.94 +UniRef50_L7WEC7 ATG13 multi domain protein 1.47974074888e-06 1.94054226737e-07 -519047426.136 +UniRef50_L7WZ17 7.03156611742e-05 4.46446055689e-05 -10363720167.1 +UniRef50_H6RCQ6 3.72708499602e-07 4.49166958368e-07 30867218.0546 +UniRef50_UPI0003C42A4B PREDICTED 1.21048607915e-07 1.19135674826e-05 4760784580.2 +UniRef50_UPI0002D92AB4 excinuclease ABC subunit A 1.12336526902e-08 1.17277901881e-07 42811364.7077 +UniRef50_C5N6A8 Primosomal protein DnaI 0.000125825112181 3.59176041581e-05 -36296764278.0 +UniRef50_UPI0001D2E559 AraC family transcriptional regulator 4.98413298512e-06 1.30111790902e-06 -1486878381.9 +UniRef50_I6XQ31 Major ampullate silk protein 1 7.49712955625e-07 2.91066961843e-07 -185161015.909 +UniRef50_UPI000466460D hypothetical protein 2.92983877879e-07 1.29589420485e-06 404887206.091 +UniRef50_UPI00046FD040 TetR family transcriptional regulator 2.76536573302e-07 7.93912806693e-07 208871134.34 +UniRef50_R7PSI9 Adhesin like protein 4.19591326205e-05 4.31876156779e-06 -15195879693.3 +UniRef50_Q99R75 Dehydrosqualene synthase 0.000124457164121 3.1388646772e-05 -37572902532.9 +UniRef50_Q58730 Putative UTP glucose 1 phosphate uridylyltransferase 1.97650782571e-06 1.01780333973e-06 -387040765.617 +UniRef50_U7IYF3 4.40645123179e-06 1.05160987611e-05 2466539681.39 +UniRef50_X0XJV9 Marine sediment metagenome DNA, contig 4.87124451429e-06 2.1535575781e-06 -1097163565.91 +UniRef50_UPI0003753443 hypothetical protein 5.9234878654e-08 4.09400099948e-08 -7385862.981 +UniRef50_UPI000362D291 hypothetical protein 1.98247170144e-07 1.49364125737e-06 522966489.288 +UniRef50_Q8P0D4 Superoxide dismutase [Mn] 1.0760164393e-07 3.43225837357e-07 95124378.3205 +UniRef50_Q2YX92 High affinity heme uptake system protein IsdE 9.45460577931e-05 1.28149805755e-05 -32995838825.8 +UniRef50_A0A059ITV9 3.2647470543e-07 1.78830144151e-06 590157391.987 +UniRef50_O26254 Methyl coenzyme M reductase system, component A2 homolog 2.44655021471e-05 8.30909189524e-06 -6522541080.14 +UniRef50_UPI00047B06F8 glyoxylate reductase 1.40047515937e-07 9.20334966499e-08 -19383848.7845 +UniRef50_UPI00023753A7 FAD dependent oxidoreductase, partial 4.09417910627e-07 2.0344674525e-07 -83153087.0131 +UniRef50_T1XU32 Lipoprotein, putative 3.31923274171e-07 6.64203869765e-07 134145753.983 +UniRef50_L7TP46 5.67569622804e-07 4.209882153e-07 -59176712.9655 +UniRef50_UPI00037C0C48 hypothetical protein 4.02294012448e-08 7.51431919193e-06 3017381765.9 +UniRef50_UPI000466A942 hypothetical protein 6.19738943776e-08 1.97472116324e-08 -17047430.0039 +UniRef50_X1XR73 8.19424930871e-08 3.40148926758e-08 -19348960.4238 +UniRef50_UPI000382799A hypothetical protein, partial 3.02858159622e-07 2.21170516455e-08 -113338630.371 +UniRef50_W1MW06 7.58326625022e-07 7.41787279937e-07 -6677136.5714 +UniRef50_E8SHT5 8.36408920982e-07 9.93180775617e-07 63290721.5231 +UniRef50_W0A6S5 2.4732936121e-07 1.50521049613e-07 -39082703.3633 +UniRef50_D3QYX7 Leucine tRNA ligase 4.78640917691e-06 1.00100136565e-05 2108833229.25 +UniRef50_Q9RXI9 Serine cycle enzyme, putative 1.76395321898e-06 0.00036435498939 1.46382450795e+11 +UniRef50_UPI000469863D transcriptional regulator 1.13370293364e-05 3.72560645709e-06 -3072824819.04 +UniRef50_X5DRL9 Nitroreductase family protein 7.88957150914e-05 2.30825328073e-05 -22532466592.9 +UniRef50_S5E3S7 ABC transport protein permease component 4.92901755771e-05 6.70635845474e-06 -17191609534.5 +UniRef50_O27918 Phosphopantetheine adenylyltransferase 2.27029796111e-05 0.000112875923052 36403923813.5 +UniRef50_R5TNC8 7.84342483387e-06 1.0411170146e-05 1036630292.29 +UniRef50_UPI00036F39E5 hypothetical protein 3.72269442025e-08 1.78175480315e-07 56902653.6619 +UniRef50_C8S4K0 2.91383894493e-07 3.63018564145e-07 28919795.1948 +UniRef50_Q96RQ3 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.51743658583e-08 8.27836749323e-08 23257585.0189 +UniRef50_UPI00046231D8 hypothetical protein, partial 4.47373488591e-07 3.63930832826e-07 -33686824.0889 +UniRef50_H3V6W0 Ornithine cyclodeaminase domain protein 8.02447279365e-06 3.08927216958e-06 -1992401053.66 +UniRef50_UPI000471846E hypothetical protein 8.08383915555e-06 2.78164153082e-06 -2140562246.39 +UniRef50_UPI000372055F 50S ribosomal protein L6, partial 2.29646599554e-06 4.01649805326e-07 -764960547.997 +UniRef50_D4GJK9 Protein CreA 2.11603448256e-07 1.66001093677e-07 -18410230.1474 +UniRef50_F7XFL7 3.51030479105e-05 5.06228361158e-06 -12127825189.1 +UniRef50_Q2RZH4 Thymidine kinase 1.63990413481e-07 1.27587419518e-07 -14696335.3778 +UniRef50_C6XKW1 Cytochrome c type biogenesis protein CcmB 5.24761460416e-06 1.44178507883e-05 3702136878.99 +UniRef50_UPI0003503A2D PREDICTED 1.01293199152e-06 4.26478368962e-07 -236758524.022 +UniRef50_Q99707 Methionine synthase 1.75343293271e-07 3.65250306683e-07 76667791.7355 +UniRef50_B0JUG8 Bifunctional protein PyrR 4.19995227598e-07 9.26584859952e-07 204516451.135 +UniRef50_Q81G11 3 isopropylmalate dehydrogenase 4.06080723244e-07 3.75632999248e-05 15000825362.0 +UniRef50_UPI0004730E10 50S ribosomal protein L22, partial 6.11187045318e-07 1.9772129883e-07 -166921195.652 +UniRef50_A0A050BZL5 PE PGRS family protein PE_PGRS6 9.90555305202e-08 8.87609487572e-07 318348909.107 +UniRef50_A7ZRN9 UPF0114 protein YqhA 1.14947692097e-05 7.19554135001e-06 -1735651044.42 +UniRef50_UPI000345BBD3 hypothetical protein 1.5878632622e-07 3.04966947543e-08 -51792098.5136 +UniRef50_UPI00036781FF hypothetical protein 5.40088668938e-08 5.55655161902e-08 628438.423192 +UniRef50_UPI000470525C spore coat protein 7.15587442686e-07 1.18755178693e-07 -240948508.929 +UniRef50_U5L7I3 Topology modulation protein 9.81988046651e-08 9.7325116865e-07 353269377.441 +UniRef50_UPI000475A3D2 dehydrogenase 3.3322310886e-07 2.61722457796e-07 -28865690.2462 +UniRef50_R9VB07 4.81015811204e-06 3.61871881834e-06 -480998663.471 +UniRef50_UPI0003336D92 PREDICTED 5.76799049574e-07 1.78613785405e-06 488224915.625 +UniRef50_A0A017HNY0 Dipeptide transport system permease protein DppC 1.54081792102e-07 2.46237879085e-07 37204543.1974 +UniRef50_UPI0003771DAE hypothetical protein 1.38375321028e-07 3.25235487128e-07 75437742.0867 +UniRef50_UPI00047A9CE7 luciferase 4.79947006276e-07 2.65037645741e-07 -86761546.0824 +UniRef50_G7M9S8 UvrD REP helicase 3.42980682439e-06 5.05095641597e-06 654477983.863 +UniRef50_P06864 Evolved beta galactosidase subunit alpha 5.58951884317e-06 1.35792327377e-06 -1708347058.88 +UniRef50_B7V1N9 Arylamine N acetyltransferase 6.09376081685e-06 9.93901661408e-06 1552376951.94 +UniRef50_E8U3M5 1.46371138664e-06 2.23672922498e-05 8439032110.26 +UniRef50_C9XJX6 DeoR family transcriptional regulator 3.81265006881e-06 9.26405262164e-06 2200798106.81 +UniRef50_P38105 Starvation sensing protein RspB 9.2003925548e-06 2.39445977193e-06 -2747638582.63 +UniRef50_A4XE82 2.23954181186e-06 8.16530038662e-07 -574487315.159 +UniRef50_A6DYV9 4.54725954148e-06 6.14241866327e-07 -1587807499.01 +UniRef50_W3E224 4.71875732651e-06 0.000119228382227 46228940763.2 +UniRef50_P24270 Catalase 1.84643067649e-07 4.42845313411e-07 104239415.112 +UniRef50_UPI0003B51789 ABC transporter 5.41035393606e-08 9.90539939411e-08 18147050.1183 +UniRef50_A3CNT7 Histidinol phosphate aminotransferase 4.71494331624e-05 4.70108519721e-06 -17136918973.4 +UniRef50_Q8EKI8 L seryl tRNA selenium transferase 2.36470531243e-05 8.15652915127e-06 -6253714618.01 +UniRef50_Q5KBM9 Chaperone, putative 4.78670042144e-08 5.54404161357e-08 3057479.32884 +UniRef50_A0PXA5 Glutamate 5 kinase 9.99925997383e-08 1.28847315179e-07 11649002.7106 +UniRef50_B0S912 DNA gyrase subunit A 2.10379307511e-08 2.56744734136e-08 1871829.16963 +UniRef50_UPI0003B5B207 oxidoreductase 6.56698444893e-07 1.63746378186e-06 395947001.878 +UniRef50_UPI00037350A3 hypothetical protein 4.78316257745e-08 1.21223713726e-07 29629286.5282 +UniRef50_UPI000225FBCC resolvase domain containing protein 7.58755049498e-07 4.54064440993e-07 -123007337.628 +UniRef50_Q9HZQ2 Protein CobW 1.14708357177e-05 1.60063254856e-06 -3984722140.4 +UniRef50_I9CAP4 3 oxoadipate enol lactonase 3.24882497161e-08 3.01667808584e-07 108671091.12 +UniRef50_S5CZX0 Site specific DNA methylase 9.5244572462e-07 6.1648714253e-05 24503828431.9 +UniRef50_A1U4W5 5.30977397964e-08 1.62822857141e-07 44297376.3508 +UniRef50_P76577 Penicillin binding protein 1C 1.80664128352e-05 3.17607508622e-06 -6011412074.26 +UniRef50_L7WU63 0.000116410636345 6.75195025273e-05 -19737950683.9 +UniRef50_F0MRE3 Di tripeptide transporter 1.59326034159e-06 5.186442751e-05 20295087082.5 +UniRef50_UPI000262D0B4 flagellin FliC 6.13210018968e-08 2.74781586998e-08 -13662771.097 +UniRef50_W5X9X7 Transcriptional regulator, LacI family 2.83040555723e-08 9.71265952894e-08 27784503.8313 +UniRef50_P24395 Ribulose bisphosphate carboxylase small chain 5.58864572034e-06 7.55699860657e-07 -1951119550.47 +UniRef50_UPI0003346733 PREDICTED 1.21085031761e-06 9.32579069084e-07 -112341517.802 +UniRef50_Q3IW03 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.000107570601971 2.46356419112e-05 -33481861102.5 +UniRef50_P45946 Arsenite resistance protein ArsB 2.23781255477e-06 1.16460884001e-05 3798236411.29 +UniRef50_U6N0Z9 1.8112517712e-07 1.40591220251e-07 -16364055.7956 +UniRef50_A0A059II46 1.22713958859e-06 4.04595479601e-07 -332071150.55 +UniRef50_K0K2V8 1.64040255787e-07 6.50945692359e-06 2561722575.81 +UniRef50_B9J7R7 Biphenyl 2,3 diol 1,2 dioxygenase protein 7.58523593186e-06 9.55646635363e-06 795809910.986 +UniRef50_B6IN07 DNA directed RNA polymerase subunit omega 0.000117925885861 5.04814880674e-06 -45570127614.3 +UniRef50_Q2Y5B3 Transposase 1.14814081331e-06 3.85161526286e-07 -308024100.98 +UniRef50_P37682 1.70879567553e-05 1.53979637747e-05 -682270904.814 +UniRef50_V5VC89 Phospho 2 dehydro 3 deoxyheptonate aldolase 1.1069970347e-06 6.89038510508e-05 27370421927.3 +UniRef50_UPI00047A404B hypothetical protein 7.19443627514e-07 8.73330694941e-07 62126097.527 +UniRef50_A5UP62 3.98338138838e-05 2.05081045272e-06 -15253462134.7 +UniRef50_A5UP68 4.25861482496e-05 1.10824643173e-05 -12718423797.1 +UniRef50_C0F8A8 1.04771205441e-07 3.33111398848e-07 92183738.1277 +UniRef50_Q9K0Y0 D alanine D alanine ligase 1.80041012167e-06 3.16280294963e-05 12041775967.6 +UniRef50_C6CBJ2 Oligogalacturonide transporter 6.79211324629e-06 5.17283158157e-06 -653723878.868 +UniRef50_UPI00036B05F9 3 oxoacyl ACP synthase, partial 2.46719458646e-07 2.77174566258e-07 12295100.6692 +UniRef50_A5UND0 Glycosyltransferase, GT2 family 1.22484785614e-05 2.11191922662e-06 -4092253393.03 +UniRef50_E6MVK2 2.0760016828e-06 3.49054217588e-05 13253639747.0 +UniRef50_Q9JX72 Glutamate ammonia ligase adenylyltransferase 2.50119878552e-06 5.33423663274e-05 20525203227.9 +UniRef50_K4NHA2 1.16589878896e-07 2.43052574325e-05 9765261919.72 +UniRef50_A0A011QY25 Efflux pump membrane transporter BepE 2.25934219017e-08 1.27492102803e-07 42348884.7313 +UniRef50_P09738 Superoxide dismutase [Mn Fe] 4.40846237805e-05 2.95809721398e-06 -16603283454.1 +UniRef50_UPI0003B50A76 amino acid ABC transporter substrate binding protein 1.66894735227e-07 3.35954684364e-06 1288912834.41 +UniRef50_UPI0004771768 hypothetical protein 3.09560423554e-06 8.40756064081e-07 -910309876.917 +UniRef50_UPI0004678EBB deoxyguanosinetriphosphate triphosphohydrolase 5.25484613408e-06 1.79797292587e-06 -1395582134.76 +UniRef50_Q4L427 Transcriptional regulator, MerR family 9.23102738949e-05 3.69732422525e-05 -22340238735.8 +UniRef50_X6LEJ6 TRAP transporter solute receptor TAXI family 7.26158795454e-07 8.13822762045e-08 -260304193.118 +UniRef50_E1HGR2 1.17080946541e-06 1.6150196213e-06 179333091.004 +UniRef50_UPI0004630420 hypothetical protein 3.97912864204e-06 6.92754584126e-07 -1326749535.52 +UniRef50_L7ZH95 23S rRNA C(5)) methyltransferase RlmD 1.69059228849e-05 1.39409931648e-06 -6262313526.04 +UniRef50_Q3JXF7 5.17711979141e-06 4.50912390201e-06 -269678137.782 +UniRef50_L0DDS9 4.45388448999e-07 1.97688750795e-07 -99999407.7821 +UniRef50_UPI00036A6475 hypothetical protein 3.32216469351e-08 1.1489147511e-07 32971111.8357 +UniRef50_Q6FMA3 FK506 binding protein 1 2.56242208789e-07 2.54615525616e-07 -656711.958587 +UniRef50_Q8XIA9 4 diphosphocytidyl 2 C methyl D erythritol kinase 7.00229050575e-08 1.85288478188e-05 7452054132.91 +UniRef50_S6NZ74 Glutamate synthase subunit alpha 8.32536924097e-06 1.71712920262e-06 -2667827595.71 +UniRef50_Q9A311 UPF0301 protein CC_3395 2.99959277185e-07 4.42806576127e-07 57669207.5164 +UniRef50_UPI0000E0EE96 pilus modification protein PilQ 3.72083720051e-08 5.95912215987e-08 9036231.04939 +UniRef50_U5MRW2 NADP reducing hydrogenase subunit HndC 6.23306056286e-06 1.11669668042e-05 1991878495.47 +UniRef50_R7YUC0 3.43544959394e-08 6.64092128154e-06 2667152083.04 +UniRef50_A7C4B4 Short chain dehydrogenase reductase SDR 8.70939128307e-07 2.93626980776e-06 833799339.751 +UniRef50_Q88VE3 Probable GTP binding protein EngB 0.000116139307511 6.60061792373e-05 -20239359086.8 +UniRef50_I1W617 Metallo beta lactamase superfamily domain protein 2.01748141082e-05 4.1760732602e-06 -6458888006.97 +UniRef50_UPI000414FA05 zinc iron permease 3.77930202926e-07 3.1825321008e-08 -139726788.015 +UniRef50_UPI00036EBE75 hypothetical protein 1.88452011993e-08 6.61182397139e-07 259319408.365 +UniRef50_X1Y0Y0 4.84327477355e-07 1.40307477007e-07 -138885095.741 +UniRef50_V2HBE7 Cupin 1.02347497237e-06 4.19141480811e-07 -243976846.548 +UniRef50_Q92CE4 Glutamate 5 kinase 3.39997043709e-05 3.20433582191e-05 -789800948.549 +UniRef50_UPI00039CB03A acyltransferase 4.08737690532e-06 1.90287745902e-07 -1573302716.32 +UniRef50_D6AF37 2.05663650323e-06 1.91320549107e-06 -57904859.7054 +UniRef50_A6LRK6 Dephospho CoA kinase 7.97261735345e-06 5.96599404435e-06 -810098453.921 +UniRef50_C5YML5 4.05931280309e-06 8.25486054037e-06 1693794106.7 +UniRef50_R7A629 Cell division ATP binding protein FtsE 3.3693416474e-05 7.44495895456e-06 -10596824405.4 +UniRef50_UPI00037DADC1 hypothetical protein 2.3292794874e-07 2.43865324165e-07 4415552.67576 +UniRef50_P29131 Cell division protein FtsN 3.24220939089e-05 1.91556781752e-06 -12315858940.3 +UniRef50_Q4KEZ9 N anthranilate isomerase 1.02601007952e-07 1.53595595735e-06 578662982.316 +UniRef50_D2UBU1 1.35609470921e-07 2.05937536237e-07 28392302.9905 +UniRef50_UPI000376D12A hypothetical protein 1.35131977267e-07 5.98374563722e-08 -30397322.0529 +UniRef50_D3QIX9 0.000177761571934 5.8410180758e-05 -48183621224.0 +UniRef50_UPI00039B183B helicase 4.84121768405e-08 5.95745423049e-06 2385552789.16 +UniRef50_UPI000374642A hypothetical protein 1.40557262107e-07 2.68987008473e-07 51848664.6182 +UniRef50_R7YU19 0.000193059569459 1.71026331519e-05 -71035974421.6 +UniRef50_A0A028ILN1 1.4334910969e-06 3.90258783748e-05 15176508054.6 +UniRef50_F0RMH9 Thioredoxin reductase 2.5679318969e-06 0.000541254570811 2.17474406558e+11 +UniRef50_Z1D1L3 Serine aspartate repeat containing protein D 7.11333053306e-06 4.42311590482e-07 -2693172209.73 +UniRef50_UPI0003B4CF71 30S ribosomal protein S3 1.19208161134e-05 2.40161280902e-05 4883025871.2 +UniRef50_P43850 N5 carboxyaminoimidazole ribonucleotide synthase 4.59312406955e-05 2.31689491927e-05 -9189416404.41 +UniRef50_P0AEB8 RutC family protein YoaB 1.64124342979e-05 5.04814880674e-06 -4587901508.26 +UniRef50_G8QQ16 Aminoacyl histidine dipeptidase 2.73872777893e-06 7.73616953062e-05 30126207717.6 +UniRef50_K0F919 Phosphate transporter 1.04181965648e-06 4.0015074312e-05 15733981160.0 +UniRef50_Q9RSU4 2.16117932552e-06 0.000656287083932 2.64078654717e+11 +UniRef50_R7NVL6 AICARFT IMPCHase bienzyme 4.21321216007e-06 7.15609365736e-05 27189102795.2 +UniRef50_E6N0K4 2.52062366568e-06 0.000114387395791 45161988666.5 +UniRef50_Q4L628 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 8.92515031597e-05 1.27224663586e-05 -30895711273.5 +UniRef50_K1YQK0 3.42969770403e-08 1.77146092217e-07 57669940.7527 +UniRef50_A4XID9 Type II secretion system protein E 3.33745068237e-06 1.17734964386e-05 3405735193.71 +UniRef50_B9DL96 SirB protein 9.7181349086e-05 4.76879152068e-05 -19981106609.8 +UniRef50_UPI0003B65A97 hypothetical protein 5.39663444561e-08 9.23655686496e-08 15502238.0184 +UniRef50_A6LWV9 Transcription activator, effector binding 1.44815596745e-06 6.65487067368e-06 2102014620.48 +UniRef50_UPI0003AD00EB ABC transporter permease 3.92971143175e-07 5.26471030416e-07 53895542.707 +UniRef50_UPI00029A0867 HNH endonuclease 5.87356667664e-07 4.1660811939e-07 -68933284.2585 +UniRef50_A4WUM0 HAD superfamily hydrolase, subfamily IIA 4.49822119752e-05 3.02372053093e-06 -16939157884.7 +UniRef50_Q0JN66 Os01g0323600 protein 3.17616105306e-07 4.20974276115e-07 41726961.903 +UniRef50_UPI000425885C ABC transporter 3.09085322094e-07 2.66990219196e-07 -16994309.6049 +UniRef50_A6LPJ7 PpiC type peptidyl prolyl cis trans isomerase 3.23461863408e-06 2.78205206636e-05 9925630352.25 +UniRef50_UPI000376B01F hypothetical protein 6.6838362273e-07 1.18580684616e-07 -221962192.957 +UniRef50_P62904 Transposase from transposon Tn1545 5.32791552797e-05 8.14460075612e-06 -18221373524.4 +UniRef50_UPI00036D74AB hypothetical protein 9.88637148125e-07 3.22523867407e-07 -268918105.555 +UniRef50_P03740 Tail fiber assembly protein 2.06508142092e-05 5.76033462575e-06 -6011469334.55 +UniRef50_UPI00036AE08D hypothetical protein 9.23186072931e-07 1.23849710268e-07 -322701898.567 +UniRef50_UPI000349BBCB transcription factor WhiB 2.5334135078e-07 5.19309771244e-07 107374715.141 +UniRef50_UPI0003B720CE peptide ABC transporter permease 2.2812624769e-07 5.79208003795e-07 141736013.197 +UniRef50_Q8Z8G7 Apolipoprotein N acyltransferase 2.43975478069e-05 7.02461648296e-06 -7013665565.3 +UniRef50_A6LY96 8.98789562983e-06 2.37157264769e-05 5945806043.78 +UniRef50_UPI00037F0E4A hypothetical protein 3.51002513324e-08 1.27236295714e-05 5122514992.29 +UniRef50_Q0FWM3 2.93846080516e-06 7.5679153973e-07 -880766654.547 +UniRef50_UPI000372A004 30S ribosomal protein S11 1.74453712998e-06 7.05832061959e-06 2145239602.21 +UniRef50_UPI000406AC71 hypothetical protein 9.85958385394e-08 4.69188527309e-07 149612816.14 +UniRef50_P44931 tRNA specific adenosine deaminase 1.28912553334e-07 4.2527082994e-07 119643472.991 +UniRef50_UPI00047200C5 hypothetical protein 1.55033439847e-06 3.11189660221e-07 -500257936.847 +UniRef50_C5A6Q6 tRNA binding protein, putative 2.692523666e-05 6.80971069289e-06 -8120884678.18 +UniRef50_UPI000476F5C1 hypothetical protein 9.6427293307e-08 1.22285426599e-07 10439245.725 +UniRef50_F3SBC7 9.79394828674e-06 7.06552584989e-06 -1101497619.26 +UniRef50_UPI000467C7DA hypothetical protein 3.73442604188e-06 7.80074132817e-07 -1192708119.66 +UniRef50_UPI000348A11C hypothetical protein 1.3152696482e-07 9.59639051888e-08 -14357243.5809 +UniRef50_Q8Y3E7 Acetylglutamate kinase 4.15455675846e-07 1.55582899729e-07 -104913828.716 +UniRef50_P76162 3.57079995732e-05 2.02340442568e-05 -6247025648.02 +UniRef50_UPI000316A923 hypothetical protein 7.09646976444e-08 5.05677696507e-07 175498972.169 +UniRef50_T5D7P0 1 pyrroline 5 carboxylate dehydrogenase 1.61736894571e-06 4.04711962454e-05 15685766871.0 +UniRef50_D9SWK1 MmpL domain containing protein 3.46577486773e-06 9.98418597716e-06 2631562554.78 +UniRef50_F3ZHY8 Putative lipoyl synthase 1.46141785711e-07 2.56734126088e-06 977467939.585 +UniRef50_Q2P1U6 Lysine tRNA ligase 3.88062588244e-05 0.000111181477765 29218764030.1 +UniRef50_UPI0001D2F0AE putrescine spermidine ABC transporter substrate binding protein 4.94423994687e-07 1.56918570774e-06 433894492.368 +UniRef50_S5XYD0 Type I secretion outer membrane protein, TolC 1.84104795783e-05 2.85970248103e-06 -6278039543.67 +UniRef50_P71242 Colanic acid biosynthesis protein WcaK 4.03863322402e-05 2.80416529586e-05 -4983698512.23 +UniRef50_A6LXV6 Xylan 1,4 beta xylosidase 2.81514035724e-06 4.35633401281e-06 622198791.327 +UniRef50_K2CIP8 2.87434078471e-06 2.72519277143e-06 -60212883.2131 +UniRef50_F3Z911 Putative LysR family transcriptional regulator 6.46449363503e-08 8.63963822913e-08 8781325.64664 +UniRef50_K0H1B5 1.99026004668e-06 4.77943069043e-05 18491655795.3 +UniRef50_UPI0003A37396 spermidine putrescine ABC transporter substrate binding protein 2.1858112165e-07 1.40247148855e-06 477951069.086 +UniRef50_UPI0003F726C9 5 methyltetrahydrofolate homocysteine methyltransferase 2.5703228032e-08 9.44013082095e-07 370732957.014 +UniRef50_UPI00036FE7ED hypothetical protein 3.82274812346e-08 7.5605265184e-08 15089870.0574 +UniRef50_P07738 Bisphosphoglycerate mutase 6.93865428391e-08 1.08268953876e-07 15697306.4764 +UniRef50_UPI000365C798 Cro Cl family transcriptional regulator 1.49950899505e-06 1.89136212394e-07 -529013572.442 +UniRef50_A7X393 Glutamyl tRNA reductase 0.000224842324256 7.73057805568e-05 -59562313168.3 +UniRef50_Q5JFN5 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.43601521343e-07 1.41923253337e-07 -677537.388687 +UniRef50_UPI0003B3B62E iron ABC transporter permease 2.72473713082e-07 3.73991359144e-07 40983919.4768 +UniRef50_Q55498 N5 carboxyaminoimidazole ribonucleotide mutase 6.79865379295e-07 1.28191708905e-05 4900786600.9 +UniRef50_UPI000479DC3A hypothetical protein 1.23714420198e-07 1.91842564612e-07 27504167.9263 +UniRef50_Q4K8R5 ErfK YbiS YcfS YnhG family protein 1.62709477954e-06 2.56425503788e-06 378343096.541 +UniRef50_UPI00047C9C40 hypothetical protein 2.92911779603e-07 9.24224415084e-08 -80940006.0698 +UniRef50_P13061 Periplasmic [NiFe] hydrogenase small subunit 7.69108722329e-07 1.8856320254e-07 -234373350.433 +UniRef50_B1J449 Peptidase M23B 1.62943592314e-06 5.75097842339e-06 1663917284.36 +UniRef50_B9DQ98 Processive diacylglycerol beta glucosyltransferase 0.000198464767666 6.75950586718e-05 -52833707472.8 +UniRef50_R5FWD3 Ribokinase family Sugar kinase 1.34496195558e-06 3.4156083976e-05 13246252597.4 +UniRef50_A8YNI5 Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328 0.000105982934744 1.14121458492e-05 -38179387990.9 +UniRef50_M7DS31 Surfactin synthetase 4.50390897081e-05 1.61306756e-05 -11670681521.6 +UniRef50_P0AFE2 NADH quinone oxidoreductase subunit J 1.37227545386e-05 9.21880746498e-06 -1818298703.27 +UniRef50_P21649 Protein MrkE 2.17848286038e-05 2.42062873115e-06 -7817565114.06 +UniRef50_F1B2P1 8.58316077885e-07 1.84389507422e-06 397890335.235 +UniRef50_UPI00047188E0 hypothetical protein 1.89694365947e-08 8.47390249912e-07 334443648.203 +UniRef50_Q59679 Superoxide dismutase [Mn] 8.98493947876e-08 1.01625309855e-06 374000543.461 +UniRef50_UPI000466807B hypothetical protein 3.08554171336e-07 9.31008585714e-07 251292485.459 +UniRef50_E6NJW8 Poly E rich protein 9.72902033113e-07 1.6157725006e-05 6130299372.89 +UniRef50_Q9RRU7 Lipoprotein signal peptidase 2.10886027289e-06 0.000589720930584 2.37226203596e+11 +UniRef50_I4CUQ3 1.19451267234e-07 2.52492187934e-07 53710252.2823 +UniRef50_UPI00046AEF9B ABC transporter ATP binding protein 3.94553123196e-08 1.06847874475e-07 27207204.3419 +UniRef50_E1ZBZ0 2.86716874178e-07 1.71968047086e-07 -46325509.6235 +UniRef50_Q6BX45 FK506 binding protein 1 2.33589223222e-07 3.98636179738e-07 66631481.6994 +UniRef50_A6LTL3 6.5137301791e-06 1.90684295112e-05 5068486183.85 +UniRef50_F0YG09 Expressed protein 7.80565758921e-07 1.57820203341e-06 322015552.109 +UniRef50_UPI0001744DA7 translation initiation factor IF 3 1.05004466992e-06 1.59689471882e-06 220770075.346 +UniRef50_P76010 Flagellar brake protein YcgR 2.41238935191e-05 1.05097769196e-05 -5496185935.22 +UniRef50_V4JQ05 4.20718582365e-05 1.55030985672e-05 -10726134313.8 +UniRef50_Q5LX99 TPR domain protein 4.30307842293e-05 1.09205905205e-05 -12963279236.6 +UniRef50_X5EHV6 0.000101430927956 4.57866986304e-05 -22464258210.2 +UniRef50_E8QKL2 2.27368276202e-06 2.51283127724e-05 9226694593.05 +UniRef50_UPI000329FDA5 6.54716222631e-07 7.12910084452e-07 23493576.1361 +UniRef50_B9TMP8 1.30933047694e-07 2.87360192984e-07 63151558.1305 +UniRef50_X2LS39 Ribonuclease E 2.74999332299e-05 1.38714312318e-05 -5501993497.16 +UniRef50_W4HN66 5.19164956879e-07 6.44240431552e-08 -183584487.169 +UniRef50_Q8DKV8 Tlr0743 protein 4.3262647894e-07 5.04287455258e-07 28930415.5186 +UniRef50_UPI0004795C04 hypothetical protein 6.7156382041e-08 1.66941434042e-07 40284449.9931 +UniRef50_UPI00046D9877 hemolysin, partial 4.51711379703e-08 6.18913240484e-07 231626727.392 +UniRef50_E6V9U6 3.22811072996e-09 2.8967950797e-08 10391489.2984 +UniRef50_Q6FFH7 3.21496728861e-06 9.78488556199e-05 38204862007.7 +UniRef50_A6LW46 Ppx GppA phosphatase 2.90597391961e-06 4.96017377705e-06 829305690.315 +UniRef50_C4Z2C3 9.33193774585e-06 3.20042020036e-05 9153071300.84 +UniRef50_UPI000471C2D7 hypothetical protein 8.11991646648e-08 7.91676388818e-08 -820151.888222 +UniRef50_F0RP65 Peptidase S41 8.4574904144e-07 0.000229642203728 92367936405.4 +UniRef50_S4XIK9 Iron ABC transport system substrate binding protein 1.01346881533e-07 3.39299526337e-07 96064402.7147 +UniRef50_UPI0003013893 hypothetical protein 1.40359868907e-07 2.16174082945e-07 30607128.5522 +UniRef50_A3PJZ0 LPS assembly protein LptD 3.56102265516e-05 1.72213444474e-05 -7423817362.42 +UniRef50_UPI00036BEF36 hypothetical protein 3.54152569162e-07 2.35044337973e-06 805927097.47 +UniRef50_Q8X7J5 Multidrug resistance protein MdtA 2.66231431142e-05 1.60990403123e-05 -4248709446.39 +UniRef50_I3THN2 Dehydrogenase 2.2161951311e-05 1.32104325577e-05 -3613837968.19 +UniRef50_P42463 Acetolactate synthase large subunit 1.69097736512e-07 2.30555534205e-05 9239543008.02 +UniRef50_UPI00047BA501 hypothetical protein 4.02117844229e-07 5.56810994926e-07 62451523.2348 +UniRef50_UPI000328B2BB PREDICTED 4.248480136e-08 4.92893816057e-08 2747092.54678 +UniRef50_UPI0003799127 hypothetical protein 7.32633833179e-06 5.45869184791e-07 -2737358600.36 +UniRef50_A5UMH3 Predicted ATPase, AAA+ superfamily 2.13266956327e-05 7.81683078755e-06 -5454098222.65 +UniRef50_UPI0000164CF9 ferredoxin, putative, partial 1.87493040823e-06 0.000468189019154 1.88256719944e+11 +UniRef50_UPI0003668456 hypothetical protein 4.24703662581e-08 1.22141981353e-07 32164408.6945 +UniRef50_Q818I1 Superoxide dismutase [Mn] 1 2.02637594056e-07 8.74674783861e-07 271309660.348 +UniRef50_UPI00046F3B88 hypothetical protein 4.25430876693e-07 3.23861634539e-07 -41004749.4523 +UniRef50_UPI00047E80CF hypothetical protein 1.08843291093e-06 6.88861501375e-07 -161311881.33 +UniRef50_P0AEN0 Cystine binding periplasmic protein 1.91394142e-05 4.54046998212e-06 -5893772929.96 +UniRef50_B1JXE0 6.66348875595e-07 1.73290188611e-06 430580538.42 +UniRef50_A4WSN3 Transcriptional regulator, TetR family 0.000105358659897 2.24653346222e-05 -33465052628.9 +UniRef50_D9REU8 Poly alpha glucosyltransferase 7.9873345677e-05 3.42822467136e-05 -18405686117.2 +UniRef50_R9ZGV6 ABC transporter substrate binding protein 6.76826074404e-06 3.71851407592e-06 -1231220154.52 +UniRef50_O25046 Adenosine deaminase 2.05867189564e-06 3.10145812432e-05 11689855932.6 +UniRef50_P0AFU3 3.81426467027e-05 5.77873072428e-06 -13065710030.4 +UniRef50_G7M452 Integral membrane sensor signal transduction histidine kinase 2.66786014426e-06 6.39492970865e-06 1504663719.43 +UniRef50_Q02LE1 2.066529136e-06 1.30307797212e-07 -781676314.577 +UniRef50_D4KM36 Dihydroxyacid dehydratase phosphogluconate dehydratase 1.76811119401e-06 2.18247055578e-05 8097093266.76 +UniRef50_Q17XN9 Aspartate carbamoyltransferase 2.65418137248e-06 2.84269616841e-05 10404787679.4 +UniRef50_G8NMF7 Oligopeptide ABC transporter, permease protein 8.73258730521e-05 1.63441828101e-05 -28656179394.0 +UniRef50_B2UX24 Histidinol phosphate aminotransferase 5.41329825509e-06 2.58933431853e-05 8268045456.73 +UniRef50_UPI00037E9746 hypothetical protein, partial 2.69602660008e-09 6.08557227832e-08 23479783.0488 +UniRef50_G8QIK2 Cysteine synthase 3.73664887828e-06 4.86087065181e-06 453862125.727 +UniRef50_W8S4A8 2.83022467878e-07 1.86553295655e-06 638878903.864 +UniRef50_N2L427 CSS motif domain associated with EAL family protein 3.67681157978e-06 3.79421891038e-06 47398780.1132 +UniRef50_UPI0003B5F916 ABC transporter ATP binding protein 6.22119388654e-07 2.25546934608e-07 -160101166.19 +UniRef50_A7X5Y6 Heme sensor protein HssS 0.00020711942119 6.80491665805e-05 -56144368370.0 +UniRef50_M1VXV3 Related to ECM4 protein 1.00020510852e-06 1.49171220093e-07 -343572824.118 +UniRef50_H8H0N8 Diguanylate cyclase with GAF sensor 5.15596817037e-08 1.48609462042e-05 5978731070.74 +UniRef50_D5UF49 Zn dependent hydrolase, glyoxylase 3.45789498071e-06 6.02446012333e-05 22925490165.4 +UniRef50_Q1C8A9 N succinylglutamate 5 semialdehyde dehydrogenase 2.12715512557e-06 7.25039413563e-05 28411972221.6 +UniRef50_O67078 3 isopropylmalate dehydratase large subunit 3.00386851349e-05 3.29882926347e-05 1190792743.42 +UniRef50_A5WE51 Inner membrane peptidase, Serine peptidase, MEROPS family S49 9.98820398352e-06 8.49768141504e-05 30273822138.1 +UniRef50_Q8CP91 ABC transporter protein 5.55704034401e-05 2.13595798967e-05 -13811329278.5 +UniRef50_Q2S5G4 Phosphoadenosine phosphosulfate reductase 3.9666519241e-08 6.17905155058e-08 8931728.78406 +UniRef50_UPI000471DE1F indole 3 glycerol phosphate synthase 7.13455546964e-08 1.26556823339e-07 22289466.6695 +UniRef50_Q9RUK2 Transcriptional regulator, TetR family 2.16117932552e-06 0.000368675735952 1.47966424149e+11 +UniRef50_UPI00036055AD GTP cyclohydrolase I 2.55656355782e-07 9.84271622627e-07 294150924.34 +UniRef50_Q5HKY3 ABC transporter, ATP binding protein 0.000103189522032 2.22667898673e-05 -32669500008.5 +UniRef50_G7M5B9 Type II secretion system protein E 1.68020469813e-06 1.79333160157e-05 6561580487.02 +UniRef50_W4K0D8 1.22470552319e-06 1.58772825845e-07 -430330110.385 +UniRef50_C3BHS6 Aldehyde dehydrogenase 7.88070957963e-07 3.20705924188e-06 976575254.543 +UniRef50_K2D6N5 2.51673317541e-07 1.37062155265e-07 -46269932.6479 +UniRef50_UPI00031C1838 hypothetical protein 2.57251664199e-06 2.43583553933e-07 -940218866.873 +UniRef50_UPI000475EE77 histidine kinase 2.83204896551e-07 7.27693870242e-07 179445653.172 +UniRef50_P39156 Putative sugar phosphate isomerase YwlF 2.59143699447e-06 0.000230945126387 92189186622.8 +UniRef50_G7U731 1.03746350656e-05 0.000110051348113 40240712228.1 +UniRef50_B9J3P1 3.76050029429e-06 5.34275165115e-07 -1302466674.88 +UniRef50_P32153 Putative aminopeptidase FrvX 2.63847019278e-05 1.11739504775e-05 -6140767017.4 +UniRef50_Q03WF6 Pseudouridine synthase 6.22973340576e-05 1.59720051878e-05 -18702103740.4 +UniRef50_C7CLY8 Pirin like protein 1.07691096558e-07 1.62733079208e-07 22221123.8369 +UniRef50_W9H6Y5 Anti sigma regulatory factor 2.49108787771e-07 1.96427302199e-05 7829442958.64 +UniRef50_Q744M7 8.2278572502e-07 4.1010340218e-06 1323469066.04 +UniRef50_A6FZQ4 1.17721964737e-08 1.90281984392e-08 2929337.03463 +UniRef50_B9KU19 Proline racemase 6.71027587605e-05 9.87401770517e-06 -23103945039.6 +UniRef50_UPI000376B5E0 hypothetical protein 3.45512211015e-08 2.05776696778e-07 69125825.7033 +UniRef50_X0NIS7 2.51657325899e-06 6.48520454435e-07 -754155840.787 +UniRef50_P0AEQ0 Glycolate oxidase subunit GlcD 0.00010533790776 2.68810835807e-05 -31673982694.7 +UniRef50_Q4ZLN0 9.62974461409e-07 2.13739472998e-06 474127874.179 +UniRef50_UPI0003C1B110 4.42669354004e-08 3.22239022395e-07 112220742.621 +UniRef50_Q6A8L2 Imidazole glycerol phosphate synthase subunit HisH 4.56636276836e-06 3.08746143726e-05 10620964011.2 +UniRef50_Q1Q8B0 UvrABC system protein C 9.14747953543e-07 8.70733995616e-05 34783304939.7 +UniRef50_UPI00036C8E2B hypothetical protein 2.41861192974e-06 1.09549949697e-06 -534156725.525 +UniRef50_UPI0003C12083 PREDICTED 2.53758691267e-06 7.30402197775e-07 -729582646.055 +UniRef50_J9YQK1 Cobyric acid synthase 6.50470710924e-05 2.23013663677e-05 -17256965546.1 +UniRef50_A8AVW5 Competence protein ComFC 6.75505114439e-05 8.01764810481e-06 -24034147480.4 +UniRef50_D4J129 9.50234955805e-08 1.52845018673e-07 23343258.4223 +UniRef50_A5VGR7 Type F conjugative transfer system protein TraW 3.39730411081e-06 1.31072656658e-06 -842376959.791 +UniRef50_F5ZGN4 Membrane protein 1.89691451679e-06 3.69920168561e-06 727605446.603 +UniRef50_J0VQZ8 8.44407444647e-07 1.09289535097e-06 100317617.072 +UniRef50_UPI00036E2511 hypothetical protein 1.57539346744e-07 1.47464640963e-07 -4067282.35433 +UniRef50_UPI000372ECF2 hypothetical protein 7.90877581427e-07 7.07682426647e-07 -33586904.904 +UniRef50_UPI00036BAEE5 hypothetical protein, partial 1.07418130249e-07 6.64488281368e-07 224896056.026 +UniRef50_B9DKX8 Glutamine amidotransferase subunit PdxT 0.000135433070421 2.33047565188e-05 -45267576291.4 +UniRef50_J9YPK5 SorC family transcriptional regulator 1.17719123342e-06 4.56610404785e-05 17958675818.5 +UniRef50_R6U1L8 Glycosyltransferases involved in cell wall biogenesis 2.14650030179e-05 1.99769355328e-05 -600751104.376 +UniRef50_U4VDJ5 Threonine dehydratase 7.80101255919e-07 1.18362641484e-06 162908058.467 +UniRef50_UPI0003BB97B6 PREDICTED 3.11763471032e-07 1.20789275329e-07 -77098626.3222 +UniRef50_UPI00038069E1 hypothetical protein 2.97388836664e-08 1.87239576766e-07 63584962.5553 +UniRef50_V4I3L2 DNA polymerase II large subunit 5.20884945589e-07 1.03192264344e-06 206312189.76 +UniRef50_D1AIE5 Selenate reductase YgfK 2.34992315178e-06 1.29197734883e-05 4267178287.49 +UniRef50_D3EVZ5 Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated 3.85591040675e-05 5.0770780263e-06 -13517104783.5 +UniRef50_UPI000361B549 hypothetical protein 2.40524230697e-06 6.21544949988e-08 -945933302.613 +UniRef50_G4B724 Transporting ATPase 1.4674982724e-06 6.30975081868e-07 -337714677.312 +UniRef50_K9ZWQ1 1.8977846103e-07 1.15138430546e-05 4571663838.34 +UniRef50_UPI0002000114 hypothetical protein 8.99262839273e-07 6.39903477161e-08 -337209754.788 +UniRef50_Q3JRN2 5.66217485885e-07 1.35466378533e-06 318305446.41 +UniRef50_K9ZWQ8 4.63826619528e-06 0.000590811091549 2.36645162745e+11 +UniRef50_P94462 Peptide deformylase 1 5.11030596013e-07 5.0770780263e-06 1843369379.31 +UniRef50_Q164M5 5,10 methylenetetrahydrofolate reductase, putative 8.30675860726e-05 1.46924406929e-05 -27603885247.2 +UniRef50_UPI00037A0B76 hypothetical protein, partial 1.03142713456e-06 4.15820020515e-07 -248528146.289 +UniRef50_Q57981 Adenylosuccinate synthetase 4.75470242676e-05 1.12723611237e-05 -14644526651.4 +UniRef50_UPI00041516F3 chemotaxis protein CheW 2.53626809017e-06 1.01188468796e-06 -615412285.76 +UniRef50_Q0AUL1 Energy coupling factor transporter ATP binding protein EcfA 1.12799243792e-07 3.08964276854e-07 79194231.0628 +UniRef50_Q46841 Inner membrane protein YghQ 2.54128261388e-05 2.98802737126e-06 -9053166445.67 +UniRef50_K8DRW2 Phosphoribosylformylglycinamidine synthase,synthetase subunit Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit 5.43184994289e-06 1.39541839325e-06 -1629556949.17 +UniRef50_V4JYH9 4.99075633506e-07 8.51757946241e-07 142382177.55 +UniRef50_UPI000395D985 PREDICTED 3.83182932993e-07 2.31016979293e-06 777948242.146 +UniRef50_UPI0004445EDA PREDICTED 1.24795071496e-07 1.53524892008e-07 11598581.0952 +UniRef50_A6LU01 1.42776083898e-05 1.10234670396e-05 -1313736795.88 +UniRef50_C5N580 0.000157424653439 2.8091859804e-05 -52213235882.3 +UniRef50_M9S177 Oxidoreductase 6.08848369114e-06 1.00107357693e-05 1583461295.4 +UniRef50_A4WZ24 4.07631310852e-07 1.07947036194e-06 271229669.316 +UniRef50_D0K9R4 0.000194132776122 7.25006767648e-06 -75446842708.4 +UniRef50_Q9ZHF6 DNA polymerase III PolC type 3.50595821622e-08 1.62863361008e-08 -7578989.80862 +UniRef50_P39386 Multidrug resistance protein MdtM 1.6552044875e-05 1.26853813681e-05 -1561019507.03 +UniRef50_I0C5I2 EcsB 0.000107112776757 1.86295964339e-05 -35721745707.2 +UniRef50_S5CTA0 AraC type DNA binding domain containing protein 2.82796742494e-06 2.86096025943e-05 10408362494.1 +UniRef50_UPI0003B4EBEF adenosylcobinamide kinase 6.21816298963e-07 1.36175736748e-06 298723289.458 +UniRef50_UPI0003F6C3B5 family 2 glycosyl transferase 4.70615557377e-06 1.10153115611e-06 -1455231111.13 +UniRef50_R7E4L4 Hydrolase NUDIX family 4.00540652602e-05 1.58163581531e-05 -9785059789.25 +UniRef50_B2S710 Oxygen dependent coproporphyrinogen III oxidase 2.64773689023e-05 1.60641367452e-05 -4203949606.55 +UniRef50_UPI0003178DCE hypothetical protein 9.88420958276e-08 8.74408379193e-08 -4602827.72675 +UniRef50_P24207 Phenylalanine specific permease 0.000104204752047 0.00025340974758 60235887647.9 +UniRef50_Q3J2Z9 1.8010249781e-05 8.51875111142e-06 -3831834486.7 +UniRef50_T1CKZ6 Snf2 family protein 2.59872112095e-07 1.21101552606e-05 4784104726.38 +UniRef50_Q093G7 1.26682609742e-07 7.58872719654e-08 -20506701.1893 +UniRef50_UPI0004719E67 hypothetical protein 2.59642711444e-08 4.41125574911e-08 7326685.90268 +UniRef50_UPI000379C92D hypothetical protein 1.62446777127e-07 1.53782460741e-07 -3497890.84815 +UniRef50_D0D8I9 5.51402648911e-07 4.64388417158e-08 -203860085.567 +UniRef50_D5V7X1 5.82945409357e-08 1.40427456678e-06 543388653.464 +UniRef50_A0A017HKQ1 Mobile element protein 1.90585736692e-06 9.06566037808e-07 -403426172.246 +UniRef50_UPI00037AC60C hypothetical protein 8.46456825631e-07 2.25955496882e-07 -250504000.824 +UniRef50_Q080R9 Beta hexosaminidase 1.48491524218e-07 2.46760553683e-07 39672413.0916 +UniRef50_I1F0Y4 4.68361260514e-07 9.72843530599e-08 -149808301.165 +UniRef50_X1GXU9 Marine sediment metagenome DNA, contig 2.44837517688e-07 2.67237940063e-07 9043325.39688 +UniRef50_O27502 Hydroxylamine reductase 4.52198374966e-05 3.09605316568e-06 -17005888651.3 +UniRef50_A0KQA4 DNA directed RNA polymerase subunit beta 5.64639397329e-08 3.24564807299e-08 -9692105.80416 +UniRef50_K2SHY0 8.41342734295e-06 8.18174650896e-07 -3066296716.01 +UniRef50_Q46DD8 Acetyltransferase 1.90049520132e-05 9.82516736696e-06 -3705991710.31 +UniRef50_A5VPU4 Transcriptional regulator, MarR family 0.000142413238766 7.15919285321e-06 -54603718088.9 +UniRef50_P07661 Citrate proton symporter 1.3198810799e-06 5.50458138936e-05 21689818368.2 +UniRef50_UPI00046F7539 hypothetical protein 3.7508012116e-08 3.20622109569e-08 -2198536.75542 +UniRef50_Q7UXF5 Glucose 1 phosphate adenylyltransferase 7.89082454583e-08 6.55718983757e-08 -5384046.97263 +UniRef50_UPI000476E759 hypothetical protein 2.05574624699e-08 6.17399741779e-08 16625885.3428 +UniRef50_UPI000478E93F hypothetical protein, partial 4.42318025113e-07 5.28710938048e-07 34877879.1121 +UniRef50_P77884 Dihydroorotase 4.58789429982e-08 7.18377052623e-08 10479870.8759 +UniRef50_UPI0001850CBB hydrolase 2.91870609934e-06 1.07807596416e-07 -1134794219.23 +UniRef50_Y5FPX8 3.38026184034e-07 4.04053851872e-07 26656179.7568 +UniRef50_UPI0003F0DCE2 PREDICTED 1.45973419674e-07 6.5187567758e-07 204238949.635 +UniRef50_G8AE70 1.32195944694e-06 6.03323453248e-07 -290122169.309 +UniRef50_R0VSS0 Tetrapyrrole Methylases family protein (Fragment) 3.9596432397e-06 5.37769710152e-06 572485745.494 +UniRef50_Q9JLZ1-2 Isoform 2 of Glutaredoxin 3 9.92745199079e-07 7.6030284992e-07 -93839828.7439 +UniRef50_UPI000365E816 hypothetical protein 6.03346431253e-08 1.63191835873e-07 41524710.9121 +UniRef50_Q21NT4 5.2003617978e-07 1.06351794859e-07 -167009462.671 +UniRef50_UPI0003298B2A PREDICTED 4.92823123569e-08 6.47775133308e-08 6255602.78066 +UniRef50_Q5HNZ4 Ferric uptake regulation protein 0.000149948230784 2.26035592642e-05 -51410606587.5 +UniRef50_UPI00037B54FA hypothetical protein 1.11340890809e-07 1.83762037399e-07 29237305.5858 +UniRef50_U5MNS8 Permease 2.45205163361e-06 3.78673401363e-06 538827655.209 +UniRef50_A5VZX6 2.41132732977e-07 1.02386853225e-07 -56013414.2593 +UniRef50_B2KCI5 Tryptophan synthase beta chain 1.17629774232e-06 2.04643832186e-07 -392268607.055 +UniRef50_D8JK92 LysR family transcriptional regulator 1.46501677432e-06 8.16274919585e-05 32362574936.1 +UniRef50_UPI00036EAD03 hypothetical protein 2.11771781224e-08 3.31527060457e-08 4834667.57889 +UniRef50_J3JJ09 1.41773346578e-06 4.48651825862e-07 -391230150.004 +UniRef50_UPI00036EDC4E hypothetical protein 2.22817708509e-07 3.38874267446e-07 46853457.017 +UniRef50_D9VUJ1 Rim protein 9.27165255943e-08 5.69117992702e-06 2260168376.03 +UniRef50_A3PH50 8.45558079176e-05 1.83629394278e-05 -26722873287.2 +UniRef50_Q3IV16 0.000239036241221 2.41953917364e-05 -86733887330.8 +UniRef50_A5UMF4 Replication factor C large subunit 2.0421134256e-05 5.62429418714e-06 -5973665913.46 +UniRef50_Q3IV10 9.1409655003e-05 4.57739040826e-05 -18423712660.2 +UniRef50_UPI000372C9B6 MULTISPECIES 6.93226034356e-07 5.04271825325e-08 -259505784.51 +UniRef50_UPI00038172EF hypothetical protein, partial 6.17480180261e-07 1.05800390049e-06 177844831.69 +UniRef50_UPI00046F18A1 oxidoreductase 2.06668985647e-08 7.20076490994e-08 20726891.0127 +UniRef50_Q2NEJ8 Predicted Fe S oxidoreductase 2.60911485228e-05 3.93153774187e-06 -8946106801.25 +UniRef50_A6LSG6 Penicillin binding protein, transpeptidase 3.31882878003e-06 1.82343453349e-05 6021577067.18 +UniRef50_UPI0004790007 hypothetical protein 3.28075863175e-07 6.69997818735e-08 -105399617.785 +UniRef50_UPI000365533E hypothetical protein 6.505621983e-08 2.40386649613e-06 944206408.972 +UniRef50_M8PZ54 PTS system, glucose like IIB component domain protein 1.64604523284e-05 2.35625030732e-06 -5694039433.94 +UniRef50_UPI0003775AE8 hypothetical protein 5.15857817048e-06 8.96537279181e-07 -1720638208.94 +UniRef50_UPI000477A38C molybdopterin biosynthesis protein MoeB 1.68808741053e-07 2.67215868743e-07 39728165.0397 +UniRef50_Q8ZNT5 Cellulose synthesis regulatory protein 1.41494910134e-05 2.92368137996e-06 -4531997105.18 +UniRef50_O27097 2 phospho L lactate transferase 2.28994347001e-05 1.56414781145e-05 -2930126138.75 +UniRef50_A6LR83 Drug resistance transporter, EmrB QacA subfamily 9.65437311629e-07 1.03278156127e-05 3779707009.44 +UniRef50_UPI00036A9345 hypothetical protein 5.32848429275e-07 1.86717049058e-07 -139737485.703 +UniRef50_Q8FE40 9.65283474009e-08 1.45779848251e-06 549561458.207 +UniRef50_K9VLK6 1.35511232593e-06 1.56960430429e-07 -483708623.19 +UniRef50_G8UZK4 Replication protein Rep 4.39265995996e-05 8.00016090176e-06 -14503944169.3 +UniRef50_UPI00047CA240 hypothetical protein 8.59037087487e-08 2.12552231732e-06 823419061.215 +UniRef50_Q5LY98 Probable dual specificity RNA methyltransferase RlmN 7.71002923959e-05 6.65418278146e-05 -4262581718.4 +UniRef50_X2N374 1.63099844591e-05 3.76199624447e-06 -5065776823.36 +UniRef50_G8PS78 2.85023979977e-08 4.78823315793e-08 7823917.00542 +UniRef50_F0QDW1 Adenylate guanylate cyclase 1.83133219776e-06 9.50985509696e-05 37653120735.7 +UniRef50_UPI0003C1B148 PREDICTED 4.5065170515e-07 3.72256559668e-07 -31649082.2477 +UniRef50_P77802 Probable outer membrane usher protein EcpC 7.50848481408e-06 1.31489472524e-05 2277123902.61 +UniRef50_Q1J1F1 Diguanylate cyclase 3.37831024948e-08 1.01143677659e-05 4069655731.3 +UniRef50_E6N053 O succinylhomoserine sulfhydrylase 3.53998304629e-06 3.68434343958e-05 13445011989.1 +UniRef50_M9VKY5 Mannose 6 phosphate isomerase 1.97497483254e-06 4.0960472943e-05 15738923993.1 +UniRef50_U5NZ17 1.21850256087e-05 7.40505583435e-06 -1929732454.73 +UniRef50_P46723 Delta aminolevulinic acid dehydratase 5.68046062819e-07 6.50359977466e-07 33231137.4483 +UniRef50_Z5R973 2.12106902489e-07 3.54871501192e-07 57635820.415 +UniRef50_D3E4F5 Archaea specific RecJ like exonuclease 4.63683983834e-05 2.51730228627e-06 -17703225607.9 +UniRef50_Q03CK3 Pyrrolidone carboxylate peptidase 1.29313011648e-07 3.79850278201e-07 101144968.945 +UniRef50_B7A2D4 Beta glucuronidase UidA 1.83743949821e-05 4.96090318404e-06 -5415191240.95 +UniRef50_Q88UE0 Imidazoleglycerol phosphate dehydratase 1.40955356415e-07 3.08693420057e-06 1189327810.61 +UniRef50_UPI00047854CC hypothetical protein 2.66800936349e-08 6.33683522622e-08 14811500.2234 +UniRef50_X5E185 6.20334373313e-06 2.71843494808e-06 -1406900441.16 +UniRef50_UPI00036C176D hypothetical protein 1.88419793905e-07 1.59095109903e-06 566219098.871 +UniRef50_A1V6Q7 4.46632625869e-07 4.60640697911e-07 5655230.58173 +UniRef50_P80651 Tetrahydromethanopterin S methyltransferase subunit E 1.78714235988e-05 1.10371478556e-05 -2759080983.52 +UniRef50_Q83QI5 GTPase Era 1.59063071802e-05 9.32449164947e-06 -2657159697.71 +UniRef50_A5UNW2 2.85667453409e-05 1.36811960901e-05 -6009478898.78 +UniRef50_A5UNW3 2.42155541944e-05 3.24816550467e-06 -8464792112.82 +UniRef50_A5UNW4 2.47557280243e-05 5.06243385578e-06 -7950424519.72 +UniRef50_A5UNW5 3.41217129683e-05 1.00274137072e-05 -9727164282.01 +UniRef50_A1WS37 NAD transhydrogenase, subunit alpha part 2 5.16930851842e-07 5.24131401657e-07 2906950.321 +UniRef50_Q10216 3.18232637393e-07 4.70028660337e-07 61281917.2092 +UniRef50_F2ZBV1 60 kDa chaperonin 2.34873842884e-07 8.27722815076e-07 239340405.149 +UniRef50_D6D7L5 Phage tail tape measure protein, TP901 family, core region 4.52788031274e-08 2.96170169458e-05 11938473574.2 +UniRef50_E4PGW6 L carnitine dehydratase bile acid inducible protein F 1.01474728189e-06 4.88797135005e-05 19323674231.6 +UniRef50_P76319 7.03951790252e-05 7.4293510741e-06 -25420077421.5 +UniRef50_W8T2N2 Mannitol 1 phosphate 5 dehydrogenase 6.9767491037e-06 1.05599780768e-06 -2390279953.99 +UniRef50_UPI000225A95D UDP N acetylglucosamine pyrophosphorylase 3.83319357599e-08 1.13923735143e-07 30517337.0266 +UniRef50_UPI00037DA29D hypothetical protein 2.56199191014e-08 3.89654848214e-08 5387768.64967 +UniRef50_P94909 4.82366086317e-07 2.57393219854e-07 -90824306.9186 +UniRef50_D7GCK3 Mannose 1 phosphate guanylyltransferase 2.19071332796e-06 4.19968170138e-05 16070212533.8 +UniRef50_R7VTK3 Neurofilament heavy polypeptide 5.30764219547e-08 3.86684098007e-08 -5816691.31276 +UniRef50_Q9XGI9 N carbamoylputrescine amidase 1.32858208304e-05 3.37382397018e-05 8256892477.79 +UniRef50_U5T4K4 6.46947657082e-05 9.84116545227e-06 -22145071552.7 +UniRef50_Q9RW76 8.08898547544e-06 0.000447192904455 1.77271640503e+11 +UniRef50_I6SVC2 2.80303646625e-05 1.98808735513e-05 -3290049567.09 +UniRef50_UPI00040EFCE1 hypothetical protein 2.4498473779e-07 2.07891197993e-07 -14975117.205 +UniRef50_D2N9E8 MAP domain protein 8.54667035152e-05 1.67395991889e-05 -27745975392.9 +UniRef50_UPI0003C75CB7 hypothetical protein 1.65023126249e-06 1.3016607264e-06 -140722202.861 +UniRef50_B9NSA4 7.84094741989e-07 4.15359892577e-07 -148862783.593 +UniRef50_UPI000413A679 hypothetical protein 1.10056964347e-06 4.43657873899e-07 -265203342.59 +UniRef50_E7B190 Methyl viologen resistance protein smvA 2.47054934676e-06 6.80520638547e-05 26476062182.5 +UniRef50_UPI000361644F hypothetical protein 6.24905034921e-07 5.22278513714e-07 -41431585.9803 +UniRef50_G4T2X8 2.21089323748e-05 1.42895179933e-05 -3156793540.82 +UniRef50_F9YYN2 3.0606972069e-05 5.65630314522e-05 10478779689.7 +UniRef50_Q0AZJ3 Chorismate synthase 1.68724057885e-07 1.13186278063e-06 388830921.413 +UniRef50_S5CTY8 8.27820150938e-07 5.27786407966e-05 20973183802.9 +UniRef50_P08660 Lysine sensitive aspartokinase 3 4.71721180914e-05 1.36173150206e-05 -13546485763.4 +UniRef50_A6U596 Ribonuclease P protein component 7.76329579911e-05 5.13594269898e-06 -29267934711.8 +UniRef50_P45213 Peptide methionine sulfoxide reductase MsrA MsrB 2.64406343735e-05 4.76513409224e-06 -8750665451.86 +UniRef50_S3G9A5 8.31974926995e-07 2.84939044588e-07 -220845098.613 +UniRef50_W4KUQ3 Cytochrome C biogenesis protein CcmI 2.8766646521e-07 4.70000061318e-06 1781313440.96 +UniRef50_UPI0003A1B331 MFS transporter 1.04642943705e-06 6.44653014978e-08 -396430971.577 +UniRef50_F3STZ2 Valine tRNA ligase 9.99356050885e-05 3.11975584142e-05 -27750392953.1 +UniRef50_Q8CNH3 Repressor protein 3.44877995438e-05 5.88671173145e-06 -11546610124.6 +UniRef50_UPI0003B68F93 ABC transporter ATPase 7.71706047856e-08 3.13999243079e-06 1236498756.21 +UniRef50_A4U2D7 7.77543090901e-07 4.82600080912e-07 -119072112.49 +UniRef50_UPI0003DEC987 PREDICTED 3.8218700801e-07 1.00385043428e-06 250973153.853 +UniRef50_D3DZ44 Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase 2.56211965701e-05 6.97670961853e-06 -7527008175.94 +UniRef50_H8GUK3 Peptidase M20D, amidohydrolase 4.455255288e-06 0.000882152863352 3.54337294936e+11 +UniRef50_J3N2U1 1.13386794639e-05 4.35696086151e-07 -4401668184.23 +UniRef50_UPI0003B7917E DNA binding protein 4.13946727472e-08 3.92638113001e-06 1568416706.94 +UniRef50_A0Z0Z6 3.14897189465e-08 5.01303605391e-08 7525455.75733 +UniRef50_UPI0003B5A232 ribosomal protein L36 5.0667129952e-07 4.59378159744e-06 1650016581.75 +UniRef50_Q7VKM9 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.84622647066e-07 6.4982807109e-08 -88671298.6746 +UniRef50_UPI00036E6417 hypothetical protein 1.52698667396e-08 1.72611975298e-07 63520940.0297 +UniRef50_UPI0003292B2A PREDICTED 1.73186854581e-07 6.82763102027e-07 205722184.298 +UniRef50_M1N3H4 Exopolysaccharide biosynthesis protein 2.44962190495e-06 9.23735088712e-06 2740289484.9 +UniRef50_F0JXQ7 8.75632513603e-07 3.70638226522e-06 1142808411.93 +UniRef50_UPI0002EF3F38 hypothetical protein 2.62164310186e-07 3.32727668159e-08 -92406324.8736 +UniRef50_Q8Z2V9 Superoxide dismutase [Mn] 1.72662976306e-05 2.28414191033e-05 2250744952.96 +UniRef50_Q9RYV9 3.38251556951e-06 8.91760645308e-05 34635908520.9 +UniRef50_J3F9J8 Nicotinamide mononucleotide transporter 4.18713704251e-05 1.00758225853e-05 -12836252838.2 +UniRef50_B5Y0Y6 Queuine tRNA ribosyltransferase 3.48088671559e-05 2.57498700551e-05 -3657228295.99 +UniRef50_K7S0T6 5 Nucleotidase domain containing protein 2.64021945448e-06 2.28925626309e-05 8176119464.51 +UniRef50_G7ZMN3 Iron transporting membrane protein, putative 7.60783733088e-05 6.76536190194e-06 -27982513271.3 +UniRef50_A0A031JAP0 Plasmid stabilization system 2.09615527261e-06 4.27047485242e-07 -673839296.017 +UniRef50_Q0VT82 Monooxygenase, putative 7.93037791655e-07 7.69352718979e-05 30739554279.0 +UniRef50_G7U5S7 HAD hydrolase, family IIA 4.54346682378e-06 6.1452184808e-05 22974747798.7 +UniRef50_Q5HLV3 Transcriptional regulator, AraC family 9.3275210869e-05 2.09506782327e-05 -29198301347.1 +UniRef50_F1UC42 1.37972896485e-06 5.70682823659e-06 1746903075.48 +UniRef50_H7CSE8 GntR family transcriptional regulator 2.56345594659e-06 7.44558989598e-06 1970977385.89 +UniRef50_UPI000479951F PTS glucose transporter subunit IIA 1.98508316764e-07 6.26298415928e-07 172704112.607 +UniRef50_C7ZSD0 GtrA family protein 0.000113369013403 9.95277041056e-06 -41750406355.9 +UniRef50_A3JMR3 1.7439017889e-06 3.5041424328e-07 -562568022.182 +UniRef50_UPI00046681A8 hypothetical protein 5.55779695436e-07 3.45500979934e-07 -84892097.8582 +UniRef50_A6M2M1 2.77276821291e-06 2.18159784021e-05 7687977639.85 +UniRef50_UPI0004417C25 hypothetical protein PUNSTDRAFT_59595 3.99121004518e-08 1.35721080172e-07 38679260.8214 +UniRef50_A6LPG6 Hydrolase, TatD family 1.13515263772e-05 1.12204662369e-05 -52910586.9279 +UniRef50_UPI0003FC161E hypothetical protein 4.26923956839e-07 2.94999216703e-07 -53259636.4915 +UniRef50_G7M238 Transcriptional regulator, TetR family 1.81163480643e-05 1.37454010541e-05 -1764604945.57 +UniRef50_Q8ZAX7 tRNA dihydrouridine synthase B 1.20825837784e-05 4.31531295247e-05 12543560596.3 +UniRef50_Q47SC0 Aspartyl glutamyl tRNA amidotransferase subunit B 1.75187788843e-06 6.99325139052e-05 27525359430.5 +UniRef50_L8E1V7 Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG 0.000141592244189 4.81627715774e-05 -37718624601.9 +UniRef50_UPI0003727421 hypothetical protein 1.73729237397e-07 3.58992703517e-07 74793134.711 +UniRef50_UPI0002D60E46 hypothetical protein 1.34272214726e-07 3.44113955746e-08 -40315038.1215 +UniRef50_Q3HKG9 0.00017265930779 2.65882810498e-05 -58970665988.0 +UniRef50_W0LIC7 Branched chain amino acid transport 4.29519926248e-07 4.48018707836e-07 7468185.13265 +UniRef50_UPI0004702F9D hypothetical protein, partial 2.11205101001e-06 5.18849272802e-07 -643195092.096 +UniRef50_UPI000473FCD3 hypothetical protein, partial 8.54158379408e-07 7.0817097023e-06 2514138889.7 +UniRef50_C4K578 UPF0145 protein HDEF_1024 4.47692830401e-06 2.11205948976e-05 6719252444.59 +UniRef50_UPI0003621977 hypothetical protein 8.20029271594e-08 1.26054317289e-06 475791159.516 +UniRef50_Q2NE86 Bifunctional enzyme Fae Hps 2.09764063385e-05 2.92763539482e-06 -7286510313.3 +UniRef50_Q6A9R8 Glycine dehydrogenase 3.50818823421e-06 6.80483377118e-05 26055650340.8 +UniRef50_A8A338 4.09376665691e-05 1.93650298488e-05 -8709138170.01 +UniRef50_P45763 Putative type II secretion system protein L 3.3416882143e-05 7.98691199691e-06 -10266391008.8 +UniRef50_M9VKX5 7.69967304622e-06 9.32205000829e-05 34525807333.3 +UniRef50_Q8A624 ATP dependent 6 phosphofructokinase 2 1.86254678661e-07 2.59001272116e-07 29368692.4789 +UniRef50_V6PAD8 Putative peptidase, aminobenzoyl glutamate utilization protein 2.99955417645e-05 3.43391517665e-06 -10723254601.3 +UniRef50_UPI000471F071 cobinamide kinase 8.91746531157e-08 1.23197666257e-06 461363194.973 +UniRef50_C4ZVV8 HTH type transcriptional regulator MurR 4.60447238516e-05 1.69853105957e-05 -11731641730.5 +UniRef50_K0SVQ3 1.14183282777e-06 3.1024253672e-06 791515267.344 +UniRef50_I0TP75 0.000123179737632 2.94292680883e-05 -37848215002.4 +UniRef50_F8FB46 Iron ABC transporter permease 3.46376403132e-06 1.70023368121e-05 5465687968.58 +UniRef50_Q8ZPN4 4.82190448347e-05 3.01192962947e-05 -7307090594.49 +UniRef50_V5BVX1 7.55547429813e-06 1.51880351022e-06 -2437078075.36 +UniRef50_G5ML36 Permease protein HisM 1.5093983677e-06 1.98420687431e-06 191686020.674 +UniRef50_UPI0003712D9F cold shock protein 1.39807736308e-07 1.10369855935e-07 -11884433.55 +UniRef50_P52614 Flagellar hook length control protein 3.58840843536e-05 5.11266433277e-06 -12422799870.2 +UniRef50_W9CKC5 2.15410417027e-07 1.81642870237e-07 -13632373.0135 +UniRef50_V8HF01 Transposase IS5 4.95757062521e-06 1.18484775626e-06 -1523094518.71 +UniRef50_A4WVU4 Surface antigen 1.58803482858e-05 3.27340409736e-06 -5089578073.46 +UniRef50_I6TXF6 1.30488493397e-05 9.72432875408e-06 -1342149756.87 +UniRef50_D4HD50 2.90483666308e-06 2.57375315014e-06 -133662477.025 +UniRef50_UPI00046FE274 hypothetical protein 3.37683565218e-07 1.47411157041e-07 -76815306.0861 +UniRef50_D4HD52 1.11025290843e-06 4.70598960883e-05 18550434817.3 +UniRef50_G4Q6N7 Inner membrane translocator 6.4481718642e-05 5.27372306114e-05 -4741393939.03 +UniRef50_UPI00046D7550 hypothetical protein 1.8196074651e-07 2.00989171014e-07 7682008.47729 +UniRef50_S4YYU3 GntR family transcriptional regulator 2.41462252992e-06 5.24339973559e-05 20193435424.0 +UniRef50_P50045 Urease subunit beta 9.56859371734e-08 3.71457135516e-07 111332216.864 +UniRef50_L0WLU4 Apolipoprotein N acyltransferase 1.77081527952e-06 8.39953829536e-05 33195066978.9 +UniRef50_UPI0004659182 phosphoadenosine phosphosulfate reductase 1.12127392719e-07 1.66251038809e-07 21850380.0984 +UniRef50_UPI000225A9BC bacteriophage replication gene A protein 2.2371803292e-06 2.52878997653e-06 117726393.08 +UniRef50_E4PPI0 UPF0125 protein HP15_3087 1.70732814203e-07 3.4631863056e-07 70886148.7436 +UniRef50_B7V3C6 6.20833664586e-06 1.92807424497e-06 -1727994455.97 +UniRef50_UPI00047C25CC cytochrome D ubiquinol oxidase subunit II 1.45975191631e-07 2.0504367565e-07 23846671.8503 +UniRef50_A6LSC2 3 oxoacyl [acyl carrier protein] synthase 3 6.00102861441e-06 2.08453041384e-06 -1581138384.41 +UniRef50_UPI0004771F9A hypothetical protein 4.1757239244e-08 1.11573688496e-07 28185757.3072 +UniRef50_A6LR66 Signal transduction histidine kinase regulating citrate malate metabolism 9.214466774e-07 3.88596770786e-06 1196813518.76 +UniRef50_A4XYX3 Lipoyl synthase 3.94357719838e-08 0.000563654446876 2.27538296317e+11 +UniRef50_UPI000386F412 PREDICTED 6.52068591621e-08 1.02025904921e-07 14864300.5934 +UniRef50_A0A058YZC5 1.48948292193e-07 1.08221522658e-06 376771313.885 +UniRef50_UPI0004548432 PREDICTED 2.04429158187e-07 1.11479742682e-06 367526841.522 +UniRef50_R8A9F1 2.2233228711e-05 1.31594079692e-05 -3663212781.77 +UniRef50_F6II99 YVTN beta propeller repeat containing protein 1.62106227539e-06 1.48045921339e-07 -594674778.073 +UniRef50_P0AFH0 Methylated DNA protein cysteine methyltransferase 3.75778777938e-05 3.46751512944e-06 -13770771988.8 +UniRef50_UPI000370022D hypothetical protein 7.92407470081e-08 3.02541310036e-08 -19776498.0144 +UniRef50_P24205 Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase 3.36801201352e-05 9.85982117213e-06 -9616546999.34 +UniRef50_UPI000379C912 hypothetical protein 2.70993756199e-07 5.67495541447e-08 -86493013.4412 +UniRef50_UPI00035D44F9 hypothetical protein 2.53655065304e-08 1.43741449778e-07 47789820.9254 +UniRef50_UPI0003B7A57E prolipoprotein diacylglyceryl transferase 1.37634071901e-06 1.00455974915e-07 -515090328.06 +UniRef50_Q8CP86 Putative branched chain amino acid carrier protein SE_1090 0.000155643108753 4.80222598513e-05 -43447857358.1 +UniRef50_G8AFT7 0.000118807814263 1.63379172346e-06 -47304590786.3 +UniRef50_UPI00046E7A1E TonB dependent receptor 2.13842960087e-06 1.79398412117e-06 -139056866.976 +UniRef50_U2RQ03 6.39806760763e-06 4.95573661168e-05 17423938432.3 +UniRef50_F5M4B6 2.96661755423e-06 6.94993764996e-06 1608115203.48 +UniRef50_Q9I7A3 7.52274247313e-06 1.88500024587e-06 -2276025720.02 +UniRef50_V5SRZ3 Aminoglycoside phosphotransferase 8.0641702341e-06 3.29962799096e-06 -1923504171.06 +UniRef50_Q0T1Y1 3 phenylpropionate cinnamic acid dioxygenase subunit alpha 3.6595801954e-05 2.3085886548e-05 -5454118634.71 +UniRef50_Q0TMN9 DNA directed RNA polymerase subunit beta 4.25549847631e-08 4.85212492119e-08 2408654.17228 +UniRef50_C5F4X4 Spermidine putrescine ABC transporter permease 0.000187750295822 8.64786608688e-05 -40884601773.2 +UniRef50_A6LQT7 Ribulose phosphate 3 epimerase 5.42965031826e-06 1.11168135594e-05 2295977589.79 +UniRef50_Q7UKV0 Peptidyl tRNA hydrolase 1.73284287074e-07 2.8350129515e-07 44495958.6751 +UniRef50_UPI000477C8DB alcohol dehydrogenase 1.16730695514e-07 1.73136486649e-07 22771710.0581 +UniRef50_A2FBD4 Alanine dehydrogenase 2, putative 1.30916503275e-07 1.20698673995e-07 -4125063.0672 +UniRef50_D5ALB3 3.30691039377e-06 5.32549878972e-07 -1120043385.06 +UniRef50_A4WQF1 Homocysteine S methyltransferase 3.31442869217e-06 1.92807424497e-06 -559688302.817 +UniRef50_Q9KL04 Maltose maltodextrin import ATP binding protein MalK 7.78327777594e-07 2.29644103942e-07 -221510332.159 +UniRef50_A9WP05 Dihydroxy acid dehydratase 3.77364924188e-07 3.58646342559e-07 -7556921.10645 +UniRef50_UPI0002FFECEA hypothetical protein 4.24335872169e-07 4.23905152011e-07 -173887.013315 +UniRef50_Q3J7W9 2.83638882642e-07 1.08647044534e-06 324112953.712 +UniRef50_UPI0002192F2F putative nitrate transport ATP binding protein, partial 1.06128058674e-06 1.53041771148e-06 189396414.217 +UniRef50_UPI0002E83586 hypothetical protein 9.80496521369e-08 8.35181853421e-08 -5866531.46621 +UniRef50_UPI000367925C hypothetical protein 1.05795066237e-07 2.2947070667e-08 -33446752.4708 +UniRef50_A8ZXR7 Phosphopantetheine adenylyltransferase 3.22051603876e-07 1.5069480091e-07 -69178844.1418 +UniRef50_UPI00029A061A adenylosuccinate lyase 5.94167392635e-07 6.11477142931e-07 6988158.60902 +UniRef50_UPI000363D694 hypothetical protein 1.17411954549e-06 4.9575529495e-07 -273863972.408 +UniRef50_Q3HKJ2 2.69523790358e-05 1.08495875889e-05 -6500894510.59 +UniRef50_UPI00036EA5DF hypothetical protein 7.88801390558e-05 5.51993841485e-06 -29616413229.6 +UniRef50_U6ZV82 3.24665739305e-06 2.7688397003e-06 -192900866.046 +UniRef50_Q9HZJ5 DNA topoisomerase 1 2.95712263778e-05 4.05126519879e-05 4417187785.19 +UniRef50_E8TEM3 2 oxo hepta 3 ene 1,7 dioic acid hydratase 6.57885372515e-06 8.93307354578e-06 950427431.114 +UniRef50_I0TLB8 Cupin domain protein 3.56597114027e-06 4.30914410902e-06 300028047.242 +UniRef50_B2IPX4 ATP dependent helicase deoxyribonuclease subunit B 1.15243091141e-07 3.68289538595e-05 14821775565.1 +UniRef50_Q9RW95 General secretion pathway protein D, putative 1.18768598299e-06 0.000408669558821 1.6450543243e+11 +UniRef50_A6LZ07 Abortive infection protein 3.21530260182e-06 1.82389037252e-05 6065212133.83 +UniRef50_W8RWR3 Isopropylmalate homocitrate citramalate synthase 5.39975417129e-06 2.32434771269e-06 -1241579326.82 +UniRef50_E8P8P5 1.42447542961e-06 8.55328807824e-05 33955595367.1 +UniRef50_E8SK14 Teichoic acid export ATP binding protein TagH 9.40812031823e-05 2.80428507158e-05 -26660493272.4 +UniRef50_E8P8P8 8.03161678458e-07 7.15194512967e-05 28549033905.3 +UniRef50_B9DKZ2 Protein containing tetrapyrrole methyltransferase domain and MazG like domain 0.000207868554593 5.94930985708e-05 -59900992367.7 +UniRef50_F5XQT8 LytR family regulatory protein 5.56587208972e-08 2.10428146095e-07 62482316.1869 +UniRef50_UPI00047372AD hypothetical protein, partial 5.16139642758e-07 9.66415441571e-08 -169356530.226 +UniRef50_A4VGB2 1.4026429172e-07 9.4954506201e-06 3776803521.81 +UniRef50_Q7N1I3 Antitoxin HicB 1 4.1488346692e-05 4.18888943548e-06 -15058248610.3 +UniRef50_Q9X7L2 2 isopropylmalate synthase 2.74042676633e-08 1.88238035281e-07 64930565.6397 +UniRef50_D4BTI9 Cardiolipin synthetase 5.32307127821e-06 2.53128604458e-06 -1127077957.87 +UniRef50_W9FRU9 2.1366917559e-07 3.80120859522e-06 1448333687.76 +UniRef50_K0SKL9 4.29105761455e-07 1.03586261032e-05 4008669210.88 +UniRef50_A3MKU1 Uridylate kinase 0.000157517403776 0.000133283830394 -9783390953.7 +UniRef50_Q6G726 1.2443011832e-05 4.38504426591e-05 12679565237.4 +UniRef50_Q7V4J6 Acyl carrier protein 2.20533689596e-07 1.07846393731e-06 346356968.99 +UniRef50_UPI000346B698 hypothetical protein 7.86193726444e-08 2.46085373935e-08 -21804836.9783 +UniRef50_UPI00036E5C3C hypothetical protein 1.74793804508e-08 1.42354088044e-07 50413451.8403 +UniRef50_M7Y540 Dipeptide transporter permease DppB 1.26798281886e-06 9.80153948154e-07 -116200047.161 +UniRef50_F0RJ20 6.64877596397e-07 6.80804966381e-06 2480073948.81 +UniRef50_Q4K4P3 Permease, cytosine purine, uracil, thiamine, allantoin family 4.41796181201e-06 3.16820360017e-06 -504542726.378 +UniRef50_O31611 GTP pyrophosphokinase YjbM 3.29889737152e-05 2.57424011629e-05 -2925530264.81 +UniRef50_A6W7I0 4.32204273809e-07 1.83970974469e-06 568227230.629 +UniRef50_G9A888 Multidrug resistance protein, AcrB family 3.55628985989e-05 1.86848059888e-06 -13602850023.6 +UniRef50_W0X4S5 1.34018694272e-06 6.12407914008e-06 1931315985.03 +UniRef50_Q3IXT7 ABC peptide opine transporter, ATPase subunit 3.10355949796e-06 3.37504805945e-06 109603263.813 +UniRef50_UPI00036250D8 hypothetical protein 2.69425781806e-06 1.42946448112e-07 -1029995708.16 +UniRef50_UPI000169B03B FKBP type peptidyl prolyl cis trans isomerase 3.50998626548e-06 7.69030954929e-07 -1106557294.17 +UniRef50_UPI0000E11708 beta hexosaminidase 1.23875862612e-07 2.58390102263e-07 54305049.2225 +UniRef50_A5UK53 Alcohol dehydrogenase , GroES like protein 3.99095188806e-05 1.31679807146e-05 -10795887113.2 +UniRef50_P65239 Ribose phosphate pyrophosphokinase 1 1.79723412269e-07 0.000126940964913 51175068729.3 +UniRef50_UPI0002F7DE76 hypothetical protein 6.16494005513e-08 1.16539159572e-06 445594268.63 +UniRef50_A5IUX4 Choline carnitine betaine transporter 9.95484830915e-05 2.21901340908e-05 -31230514785.3 +UniRef50_A4XP60 Acetylornithine deacetylase 2.20165381129e-06 2.19566323568e-06 -2418468.88639 +UniRef50_I0ELI9 DnaA initiator associating factor for replication initiation HobA 5.36709936758e-06 1.67018452953e-05 4575976023.99 +UniRef50_B9MQ98 Phospho N acetylmuramoyl pentapeptide transferase 6.00312187926e-08 3.09970590735e-07 100903591.554 +UniRef50_U3AIN5 9.97033956804e-08 1.3263118562e-07 13293352.868 +UniRef50_C5MYS8 Acyl coenzyme A 0.000225218291506 5.13925545284e-05 -70175583099.7 +UniRef50_A3V0X0 Membrane protein, putative 2.96234008235e-07 1.64512640605e-07 -53177532.5152 +UniRef50_A6LUJ9 DegV family protein 1.00167007762e-05 4.69515830098e-06 -2148371999.92 +UniRef50_Q1RIM1 DNA topoisomerase 1 5.33705420125e-08 1.70560998832e-08 -14660585.9159 +UniRef50_F0VRX4 Autolysin 6.29277981773e-05 1.84090115647e-05 -17972780462.5 +UniRef50_Q9FKK7 Xylose isomerase 2.25341521387e-06 6.87447082843e-05 26843350952.4 +UniRef50_UPI000468EE55 ATP dependent DNA helicase PcrA 2.02305340402e-07 4.5308788777e-08 -63381434.4553 +UniRef50_P37617 Lead, cadmium, zinc and mercury transporting ATPase 3.71605280545e-05 9.84643946884e-06 -11027032743.6 +UniRef50_UPI0004669FC1 oxidoreductase 9.08145923477e-07 5.25690664124e-05 20856147552.2 +UniRef50_UPI000471FBF4 thioredoxin 5.26428284755e-07 6.31718181032e-07 42506823.1793 +UniRef50_UPI000467E3B3 transposase 7.1175157891e-07 1.34233565215e-06 254574528.504 +UniRef50_R9SIT6 1.05447552396e-05 3.54167404262e-06 -2827229816.69 +UniRef50_UPI0004780904 cobinamide adenolsyltransferase 8.42087887165e-07 0.000267519938802 1.0766112092e+11 +UniRef50_P30526 Anthranilate synthase component 1 1.07151405708e-07 5.81191912066e-08 -19794906.6871 +UniRef50_Q2FFK2 Ferritin 0.000437379970517 2.58336485784e-05 -1.66146300408e+11 +UniRef50_UPI00047870AD GTP pyrophosphokinase 6.260201921e-08 2.68810685441e-08 -14420986.1292 +UniRef50_Q99V46 Staphopain B 7.56196738298e-05 3.2146623785e-05 -17550603777.4 +UniRef50_A5UMY4 Predicted RNA binding protein 2.15854439897e-05 2.92264550899e-05 3084769946.9 +UniRef50_Q89UE3 Malate synthase G 3.34350506728e-05 6.50725569601e-06 -10871081273.3 +UniRef50_Q9CEY4 Putrescine carbamoyltransferase 8.40628351147e-05 3.55173537106e-05 -19598406562.9 +UniRef50_J9NSA1 3.61931089539e-07 2.23689870118e-07 -55809676.6908 +UniRef50_UPI0003B73B69 glutaredoxin 6.26566082592e-07 3.70809750344e-06 1244052049.24 +UniRef50_F3SCH8 Thymocyte nuclear protein 1 2.49606771213e-07 1.76728271941e-07 -29421944.4759 +UniRef50_A5MC69 6.48813894289e-07 3.95893790491e-05 15720784007.5 +UniRef50_M4AFD6 1.83432535653e-07 2.7888944479e-07 38537125.6066 +UniRef50_UPI00034ACF0F hypothetical protein 2.19233243606e-07 1.58987969475e-06 553346792.049 +UniRef50_C8S1S6 Plasmid partitioning protein RepA 3.19265879641e-06 9.50834551224e-07 -905051958.06 +UniRef50_A6LRW1 Phage portal protein 2.8744254467e-06 2.50912031843e-05 8969185803.19 +UniRef50_Q886P5 Bifunctional uridylyltransferase uridylyl removing enzyme 8.21351494297e-06 2.0991480622e-06 -2468444941.49 +UniRef50_A1SWU5 Threonine tRNA ligase 1.48057926367e-05 1.55480886701e-05 299674017.68 +UniRef50_R4PYA3 Ribonucleoside diphosphate reductase 4.58453426269e-05 5.31181366406e-05 2936116190.55 +UniRef50_O94634 Threonine dehydratase, mitochondrial 6.7003977773e-08 1.35929351983e-07 27826019.378 +UniRef50_Q4L5E4 Phenylalanine tRNA ligase beta subunit 0.000191294504504 7.00138403892e-05 -48962492384.3 +UniRef50_V6NXW6 7.25465146038e-07 1.57644172158e-06 343549686.203 +UniRef50_Q9RU25 Peptide ABC transporter, permease protein 3.14822511971e-06 0.000592678085587 2.38000439015e+11 +UniRef50_R4K2V5 Phosphatidate cytidylyltransferase 2.14887659684e-06 1.37783290954e-05 4694952683.11 +UniRef50_UPI0002B41FFA PREDICTED 6.91155891341e-08 4.64619820241e-08 -9145539.18133 +UniRef50_Q5H5P3 Integral membrane protein 8.29663312346e-08 0.0006248737091 2.522356899e+11 +UniRef50_UPI00046F521F ribonucleoside hydrolase, partial 8.88573458678e-08 5.80196141169e-07 198359501.068 +UniRef50_UPI00036EE5B3 endonuclease 8.84565813259e-07 1.65004225743e-06 309032233.964 +UniRef50_UPI0003B7257B TetR family transcriptional regulator 7.24634714497e-07 7.20076022857e-07 -1840399.75651 +UniRef50_C4U4D5 5.8802189703e-07 6.41585800394e-07 21624405.0911 +UniRef50_A4X048 7.86422430849e-06 4.01854706556e-06 -1552547094.74 +UniRef50_A7GMD4 2 oxoglutarate dehydrogenase E1 component 5.329557137e-08 4.18319637284e-06 1667291633.14 +UniRef50_H8GVT2 Cytochrome P450 1.00573531661e-06 0.000474756170523 1.91258864264e+11 +UniRef50_UPI00016C05CE glycogen starch alpha glucan phosphorylase 6.32550941626e-06 1.53541029098e-05 3644953986.64 +UniRef50_UPI0003C13A7A PREDICTED 9.54813530928e-08 8.31517912632e-07 297146991.27 +UniRef50_UPI00047D9051 hypothetical protein 3.35690007277e-06 1.14209131322e-06 -894145474.99 +UniRef50_UPI00046657E8 hypothetical protein 1.67704013358e-07 7.31284328736e-09 -64751883.5787 +UniRef50_S4MC93 3.5774733061e-06 3.12281141212e-06 -183552585.929 +UniRef50_P52067 Fosmidomycin resistance protein 2.17636788641e-05 1.17454805599e-05 -4044469592.52 +UniRef50_A0A059DRC5 2.19847190836e-06 8.34085961124e-07 -550819349.799 +UniRef50_S5CP54 1.58156601349e-06 6.62009964046e-05 26087657018.5 +UniRef50_P12655 PTS system sucrose specific EIIBCA component 4.21321265955e-05 9.9123625233e-06 -13007514136.9 +UniRef50_A3CNS7 9.07791188288e-05 8.84019256131e-05 -959702072.619 +UniRef50_D3DZS9 ABC transporter ATP binding protein 3.66346890755e-05 1.20590444208e-05 -9921489324.18 +UniRef50_Q00277 Glutathione peroxidase 6.06583482233e-05 1.45580599575e-05 -18611252087.1 +UniRef50_UPI00046E9599 hypothetical protein 6.86331472052e-08 3.58280171403e-07 116934058.037 +UniRef50_A6UGG8 2.57726533676e-08 3.01131687212e-07 111165820.998 +UniRef50_UPI0003F4971B hypothetical protein TREMEDRAFT_28317 8.30692322542e-08 5.35310911676e-07 182575515.612 +UniRef50_UPI00029A7679 histidine kinase 5.09012454788e-07 1.04874073389e-06 217894929.484 +UniRef50_Q5YRD1 Methionine import ATP binding protein MetN 2.34829594014e-07 8.33825182062e-08 -61141042.9683 +UniRef50_UPI0004561653 hypothetical protein PFL1_00418 1.44351542592e-07 1.6930141662e-07 10072570.3145 +UniRef50_C5MYZ4 0.000157058398563 2.9073386529e-05 -51669119910.8 +UniRef50_A0A059IL85 4.3909652103e-07 3.60330953846e-07 -31798626.0344 +UniRef50_P36674 HTH type transcriptional regulator TreR 2.04397456903e-05 2.44413423677e-05 1615493683.78 +UniRef50_UPI000360C55F hypothetical protein 5.98192800769e-08 3.44116182315e-07 114774148.149 +UniRef50_E2PIJ4 1.02950724232e-05 2.18130469219e-05 4649947646.57 +UniRef50_Q99QS1 Protein map 6.0240792885e-05 7.43240575922e-06 -21319393914.5 +UniRef50_V6JB74 Thioesterase superfamily protein 2.89059043789e-07 7.88673671916e-06 3067275711.54 +UniRef50_UPI00030E967A hypothetical protein 5.10257720516e-08 1.09033715407e-07 23418518.5701 +UniRef50_B5FD80 Type VI secretion protein, family 6.24297267153e-08 9.63935303958e-08 13711604.3286 +UniRef50_Q67KF8 Phosphoribosylformylglycinamidine synthase 2 1.77683552199e-07 3.24065620478e-08 -58650103.6731 +UniRef50_Q5GVA4 Dehydrogenase 8.44599915232e-06 4.4410477957e-05 14519301427.2 +UniRef50_A4EC20 5.86619003005e-07 4.57209879124e-07 -52244051.3393 +UniRef50_C3M9I7 1.7268983657e-06 5.74324696195e-07 -465308134.047 +UniRef50_Q7X1N2 Lfe103p1 2.53626234397e-07 6.37290777491e-07 154890084.14 +UniRef50_L7WUJ3 ABC transporter permease 7.49172007414e-05 4.10359688673e-05 -13678269077.0 +UniRef50_P36672 PTS system trehalose specific EIIBC component 3.48580978333e-05 4.48846038804e-05 4047823530.28 +UniRef50_UPI0003CFF16B SsrA binding protein 1.09328068852e-07 3.76746411507e-07 107960066.522 +UniRef50_Q9VQX4 Nicotinate phosphoribosyltransferase 2.78788704917e-08 7.95108143169e-08 20844449.3174 +UniRef50_W0NF85 4.77447072474e-08 6.61782828567e-08 7441860.67888 +UniRef50_UPI0003A03E70 FAD dependent oxidoreductase 2.76775127724e-07 1.01169724679e-07 -70894056.1299 +UniRef50_O67642 Transketolase 5.82247897919e-08 1.07195573749e-07 19770106.4226 +UniRef50_L7DMI2 9.30544261681e-06 1.21953453206e-06 -3264380319.06 +UniRef50_P77263 Probable fimbrial chaperone EcpE 4.10762734431e-05 2.55685459043e-06 -15550762077.3 +UniRef50_UPI0003B721B0 ATPase P 2.66782867982e-08 2.72188900409e-07 99115647.4688 +UniRef50_Q11I48 ATP dependent Clp protease proteolytic subunit 2 7.7979696401e-08 3.06027673785e-06 1203989912.53 +UniRef50_A1B0S4 Transposase, IS5 family 3.06837909612e-06 1.28754718473e-06 -718943695.893 +UniRef50_P23840 DNA damage inducible protein D 1.57981000808e-05 1.43570803253e-05 -581757358.596 +UniRef50_I1Y3Y4 Multidrug resistance efflux pump 5.38408292668e-06 5.4899375577e-05 19989931263.9 +UniRef50_D4J6G0 Amino acid ABC transporter substrate binding protein, PAAT family 2.81348997862e-05 8.74316134225e-06 -7828682773.19 +UniRef50_UPI0003644DE3 hypothetical protein 2.89671946234e-07 5.32933931082e-08 -95428922.588 +UniRef50_A8FNH9 Carboxynorspermidine carboxyspermidine decarboxylase 6.91463769744e-07 8.41177223149e-08 -245193052.321 +UniRef50_L7UHD0 DGPF domain containing protein 4.71875756953e-07 2.49290811974e-07 -89860273.7125 +UniRef50_UPI00046ADB22 3 hydroxyisobutyrate dehydrogenase 7.74342288829e-08 8.73457519056e-08 4001403.47233 +UniRef50_A6LZ68 4Fe 4S ferredoxin, iron sulfur binding domain protein 4.24320049013e-06 4.99387474997e-06 303056410.506 +UniRef50_P77154 1.78739776729e-05 1.21963045875e-05 -2292146297.46 +UniRef50_UPI00029AD7C0 ribosomal large subunit pseudouridine synthase A, partial 3.84195037709e-06 7.25258829261e-07 -1258246623.97 +UniRef50_A5UM01 Pheromone shutdown protein, TraB family 2.47638550246e-05 1.34747560098e-05 -4557547805.1 +UniRef50_Q02RK7 7.28722208372e-06 1.94074505054e-06 -2158438386.95 +UniRef50_Q9RVA9 Probable butyrate kinase 9.57276387603e-07 1.28239424401e-05 4790718705.76 +UniRef50_Q8XMG8 Zinc transporter ZupT 1.19963767644e-06 5.36874721219e-06 1683120680.31 +UniRef50_A1W1W9 3 isopropylmalate dehydratase small subunit 1.19296027404e-07 2.26478447543e-07 43270858.2863 +UniRef50_E6MWH5 2.24337068985e-05 2.60573563408e-05 1462911747.04 +UniRef50_S5N5Q9 Ribulose phosphate 3 epimerase 8.19174802876e-06 2.05266893707e-05 4979767186.48 +UniRef50_Q8XI79 Putative pyruvate, phosphate dikinase regulatory protein 2.32061058724e-06 1.1330555826e-05 3637425457.35 +UniRef50_Q6ZKP4 8.31037641478e-07 3.74387782484e-07 -184355151.8 +UniRef50_UPI0003B52784 ATPase 5.75239184644e-08 3.61564552382e-08 -8626307.11268 +UniRef50_Q87QK9 Histidine biosynthesis bifunctional protein HisB 9.11200984642e-06 3.54844347581e-06 -2246080016.45 +UniRef50_D8LJV9 3.57580665174e-07 5.58606630291e-07 81156648.9837 +UniRef50_UPI0003625364 alkaline phosphatase 5.75414261513e-08 3.29535977939e-08 -9926408.03447 +UniRef50_H9UZ27 7.94942020893e-06 5.3693946399e-06 -1041587982.69 +UniRef50_F3U4H9 1.30997634709e-05 4.62287616326e-06 -3422223429.2 +UniRef50_A0A022NNU5 8.88518243538e-07 1.71604656927e-07 -289426812.434 +UniRef50_A5ULV6 Ribonuclease HII 3.00657107502e-05 2.84871419803e-06 -10987835498.2 +UniRef50_UPI00036D09DC hypothetical protein, partial 5.43824717982e-07 1.79665267805e-07 -147015638.775 +UniRef50_F9Z1I9 3 oxoacyl [acyl carrier protein] synthase 1 4.61460406091e-06 4.77535766012e-05 17415732589.2 +UniRef50_UPI0003B52617 transporter 2.27603734835e-06 4.02957882144e-07 -756185165.779 +UniRef50_H5Y2B5 Cytosine deaminase like metal dependent hydrolase 8.57273252495e-07 1.18128824708e-05 4422913881.87 +UniRef50_P16678 Putative phosphonates utilization ATP binding protein PhnK 2.71970167633e-05 2.72181295113e-06 -9880940123.51 +UniRef50_B4RDA5 1.71103444027e-07 4.65761627788e-07 118957124.647 +UniRef50_UPI00015FC63D hypothetical protein 1.51282223013e-06 5.32226048435e-07 -395878711.819 +UniRef50_U6LWE1 1.04748990013e-07 1.14716119181e-07 4023852.35555 +UniRef50_Q8CTH6 Urea amidolyase 0.000189818111781 4.57581813622e-05 -58158761724.3 +UniRef50_Q9RRX1 Acyl CoA dehydrogenase, putative 1.47444917754e-06 0.000531942052309 2.14156280953e+11 +UniRef50_UPI00035ED69A hypothetical protein 5.40722671001e-08 8.15881019073e-08 11108480.1689 +UniRef50_Q8A1F7 Elongation factor P 1.58786034046e-07 6.5645201445e-05 26437669510.1 +UniRef50_A3PHK3 ComEC Rec2 related protein 8.77295710645e-06 1.97497658938e-06 -2744428155.34 +UniRef50_P46920 Glycine betaine transport ATP binding protein OpuAA 4.59674635824e-05 4.47427891711e-05 -494416088.287 +UniRef50_UPI00035CE6C9 hypothetical protein 2.02867599011e-06 3.80399362617e-07 -665429501.146 +UniRef50_I7BZ98 1.64279156742e-07 6.37310285562e-06 2506578318.07 +UniRef50_U3T4G5 Pseudouridine synthase 5.41845917011e-06 8.61812180895e-05 32604916846.3 +UniRef50_D6M2H8 Fatty oxidation complex, alpha subunit 3.20612664711e-06 7.71731647059e-06 1821222690.26 +UniRef50_UPI00047E1145 sugar ABC transporter permease 3.55996176418e-05 6.85775888195e-06 -11603441083.6 +UniRef50_P44468 Rod shape determining protein RodA 4.23400043966e-06 1.61817372704e-06 -1056041343.69 +UniRef50_UPI0004255E92 adenylosuccinate synthetase 1.90407271338e-07 1.30306912679e-07 -24263252.305 +UniRef50_G8VQJ8 2.59143699447e-06 6.98571364398e-05 27155988309.0 +UniRef50_R9IVY1 1.52114184662e-07 4.097579608e-05 16481021344.0 +UniRef50_UPI000346609E hypothetical protein 4.14152799715e-08 6.08732020474e-08 7855401.9176 +UniRef50_UPI000478591D amino acid ABC transporter permease 2.17703288817e-07 4.48057822709e-07 92996952.1002 +UniRef50_UPI000479F6B7 transporter 2.69775984851e-07 1.99357786174e-06 695919971.128 +UniRef50_Q9RY77 Phosphate acetyltransferase 4.09872310179e-08 0.000215410898964 86947476252.6 +UniRef50_C9CZK5 1.31769352783e-06 9.55312495184e-07 -146297669.795 +UniRef50_Y5PA95 1.82108238854e-07 2.64770361678e-07 33371713.3624 +UniRef50_A6M280 RelA SpoT domain protein 1.22526368747e-05 4.1141556324e-05 11662811288.6 +UniRef50_O32035 0.000192825334003 2.48698571214e-05 -67805687062.7 +UniRef50_O32034 0.000222695974246 5.55000856796e-05 -67499031938.4 +UniRef50_UPI000467BFBE hypothetical protein 1.76155561431e-07 1.23700533988e-06 428278073.651 +UniRef50_UPI0002B4A544 4.9770038448e-09 4.07776717737e-07 162615187.407 +UniRef50_B8J198 Lon protease 4.85677086175e-08 4.45031583673e-08 -1640908.81365 +UniRef50_A6M0E8 TPR repeat containing protein 3.09024063976e-06 8.03119987383e-06 1994725875.18 +UniRef50_L8E534 Undefined function 3.08482605995e-05 1.16451614519e-05 -7752526774.41 +UniRef50_Q03K84 Phosphoribosyl ATP pyrophosphatase 1.31485339287e-05 1.0076174605e-05 -1240349161.07 +UniRef50_P34559 Probable enoyl CoA hydratase, mitochondrial 8.83951690476e-08 1.65801515694e-07 31249892.0238 +UniRef50_U1EG57 3.92919240134e-07 1.52594129773e-06 457414908.397 +UniRef50_A6M1X1 FMN binding domain protein 5.16279836014e-06 1.17829586626e-05 2672639952.61 +UniRef50_UPI00035DE7E6 hypothetical protein 7.08492961009e-08 2.51051795707e-07 72749960.4243 +UniRef50_A0A023S135 Ferrous iron transporter B 5.49736876965e-06 0.000115642022308 44466748260.2 +UniRef50_P33224 Putative acyl CoA dehydrogenase AidB 3.73902454694e-05 1.08251365615e-05 -10724660456.7 +UniRef50_W5X8Z0 Ribose phosphate pyrophosphokinase 1.89606206925e-07 1.65731157611e-07 -9638650.38786 +UniRef50_UPI000378494C hypothetical protein 1.43473277397e-06 6.12769494843e-07 -331836662.407 +UniRef50_UPI0003B44A26 membrane protein 5.18520910706e-08 1.03989937472e-05 4177268060.27 +UniRef50_N0AUD5 2.40516974948e-06 2.94791027639e-07 -851985787.266 +UniRef50_M4WTT8 2.49440080738e-06 2.6057356341e-06 44947235.7788 +UniRef50_X6L243 5.1456069069e-06 1.34071258569e-06 -1536082528.78 +UniRef50_UPI0003F95F23 phosphonate ABC transporter ATP binding protein 9.86836993847e-08 1.11168036762e-06 408959185.835 +UniRef50_R5G6K3 Histidinol phosphate phosphatase HisJ family 1.91293575433e-06 5.0321563993e-06 1259267651.52 +UniRef50_UPI00047094F6 ABC transporter 3.88380847905e-08 1.33642628266e-07 38273757.5836 +UniRef50_Q9RS47 Uracil permease 2.57493506759e-06 0.000227836959836 90941043674.7 +UniRef50_UPI000360D3DC hypothetical protein 5.02406901305e-08 1.73265353639e-06 679210711.562 +UniRef50_W5X572 L aspartate aminotransferase 2.3107970826e-08 3.35640392357e-07 126173173.776 +UniRef50_UPI0002ECDC1A hypothetical protein 4.63564673417e-08 6.86068578189e-08 8982755.67864 +UniRef50_W6IAM9 Putative membrane spanning protein 1.10833186687e-08 1.96018066643e-08 3439018.13743 +UniRef50_A5ULW0 3.84399294531e-05 9.17465041578e-06 -11814752272.7 +UniRef50_UPI0003B49F43 hypothetical protein 3.75532743659e-07 5.03889230957e-07 51819089.0334 +UniRef50_Q9MUN1 Sulfate thiosulfate import ATP binding protein CysA 1.17384284026e-06 5.31804455429e-07 -259198774.653 +UniRef50_H5FVP6 Amidohydrolase family protein 4.80959390166e-06 1.36090647547e-06 -1392277434.11 +UniRef50_A6LXR8 hydrogenase maturation protein HypF 8.43671853631e-06 1.53450821843e-05 2788991179.85 +UniRef50_C0VQW3 6.54339857247e-08 1.08705535652e-06 412441084.096 +UniRef50_UPI000471077D hypothetical protein, partial 7.12238041405e-08 1.55443768174e-07 34000632.9755 +UniRef50_Q5H2Q9 IS1478 transposase 3.63207482007e-07 2.83227934887e-07 -32288724.6318 +UniRef50_G8AGV1 RepB plasmid partition 1.95383615074e-08 1.129302826e-07 37703464.5928 +UniRef50_H2JWP6 Permease for cytosine purines uracil thiamine allantoin 7.94707344991e-07 5.79436111513e-05 23071713762.5 +UniRef50_W6K6P7 1.78344578038e-05 9.42500122969e-06 -3395000814.6 +UniRef50_UPI00047DE1A1 spermidine putrescine ABC transporter substrate binding protein 8.17412784086e-08 1.94481319863e-06 752144996.656 +UniRef50_E1Q026 Iron regulated outer membrane protein 1.77131573659e-06 5.76244977216e-05 22548614963.0 +UniRef50_D8GLI1 2.62143047812e-06 1.22482886349e-05 3886480772.73 +UniRef50_UPI00046EAE05 2 amino 3 ketobutyrate CoA ligase 3.4402725433e-07 8.32174359318e-08 -105292124.184 +UniRef50_C4ZA66 Xanthine phosphoribosyltransferase 2.3788113858e-07 4.16351219371e-07 72050561.6895 +UniRef50_F0Y306 Expressed protein 5.30495330086e-07 2.25863230617e-06 697670103.869 +UniRef50_D8JG86 Sensor protein gacS 9.19623735464e-07 5.36989537175e-05 21307663188.9 +UniRef50_UPI00029A8D53 alpha amylase, catalytic subdomain 5.13561924834e-08 2.93891979105e-07 97914673.3081 +UniRef50_UPI0004785413 hypothetical protein 3.26114025268e-07 3.45112972587e-07 7670108.17598 +UniRef50_D3QI48 RND multidrug efflux transporter Acriflavin resistance protein 0.000121518293451 2.85767655938e-05 -37521635316.8 +UniRef50_K0SH63 6.35288603168e-07 4.23377036971e-06 1452751247.49 +UniRef50_UPI00028A1721 3 oxoacyl ACP reductase 4.38911243546e-08 5.54597887106e-07 206178587.199 +UniRef50_A6LZZ2 1.53262881566e-05 5.18015641142e-06 -4096117892.57 +UniRef50_UPI00037FAA98 hypothetical protein, partial 7.45545589806e-07 4.68826047022e-07 -111715075.153 +UniRef50_Q5F653 7.83165951945e-07 2.15307533758e-05 8376055644.56 +UniRef50_Q0A911 Beta hexosaminidase 1.88565193693e-07 3.06259493478e-07 47514633.0947 +UniRef50_D3NSC7 sn glycerol 3 phosphate transport system substrate binding protein 7.45093599332e-08 5.83698771707e-08 -6515707.24495 +UniRef50_W6M4I0 1.12389641899e-07 3.93281939311e-06 1542354372.51 +UniRef50_UPI0002378B1B glutathione dependent formaldehyde activating protein 4.36045039317e-07 6.81049796057e-07 98911426.8424 +UniRef50_E6U6T7 LemA family protein 1.12124551144e-05 7.19635868098e-06 -1621347413.22 +UniRef50_Q1J1I0 O antigen polymerase 1.6629338716e-06 0.000254571932968 1.02102466477e+11 +UniRef50_UPI00047AE469 hypothetical protein 1.11050789278e-07 3.10313867524e-07 80444949.9209 +UniRef50_Z7T5S7 4.51907673512e-07 8.91297903088e-07 177387227.604 +UniRef50_P39160 D mannonate oxidoreductase 6.9161112056e-05 2.52223745215e-05 -17738607531.6 +UniRef50_UPI0003594B33 PREDICTED 4.15125577144e-07 2.04988802556e-07 -84834794.5694 +UniRef50_A6LZZ5 4.96829472686e-06 1.49135069072e-05 4015004198.68 +UniRef50_UPI000255C6FB ADP ribose pyrophosphatase 1.74476226376e-07 1.11812262122e-06 380961629.442 +UniRef50_P64555 7 carboxy 7 deazaguanine synthase 1.5782923388e-05 1.21121615205e-05 -1481931611.22 +UniRef50_B9E3V1 7.59819500351e-06 4.04558899058e-06 -1434230642.8 +UniRef50_UPI00036B19F3 hypothetical protein 2.3784329761e-08 1.54705233477e-06 614961986.223 +UniRef50_A0A031MEU2 ATPase 1.73526008415e-07 6.48656935404e-08 -43867502.527 +UniRef50_UPI0003ACEC40 hypothetical protein 6.72821354282e-07 2.08448366528e-07 -187473073.654 +UniRef50_B2TJ96 Nudix family hydrolase 7.66555119553e-06 1.63687387631e-05 3513583621.15 +UniRef50_W5BNZ7 7.72359308498e-08 1.3427016144e-07 23025418.778 +UniRef50_A1U0K1 1,4 alpha glucan branching enzyme GlgB 3.84798542487e-08 7.48850876751e-08 14697239.4767 +UniRef50_I6TPZ0 Permease 4.08799558549e-05 1.95790080794e-06 -15713311249.8 +UniRef50_A6LXJ6 Diguanylate cyclase 2.05155428724e-06 1.23501167588e-05 4157656047.36 +UniRef50_G8V5E5 Coagulase family protein 9.47424866577e-05 2.07634032504e-05 -29866263797.0 +UniRef50_Q5Z8R4 6.0620691136e-08 1.32289793957e-07 28933696.2876 +UniRef50_H3FSC0 1.01226352186e-06 1.69027803684e-07 -340424607.094 +UniRef50_UPI0003B6DB9D anthranilate synthase subunit I 1.36509235275e-07 4.98954784012e-07 146323715.732 +UniRef50_A8AY72 Glycosyl transferase, family 8 SP1766 5.34061447799e-06 1.58205377791e-06 -1517377077.35 +UniRef50_U4PWQ9 DNA gyrase subunit A 0.00011134047428 3.86367116224e-05 -29351401160.4 +UniRef50_A0A011QMZ0 1.90433151023e-05 3.31196304892e-06 -6350939869.36 +UniRef50_UPI0003292DB3 PREDICTED 1.96918075461e-07 3.45672160025e-07 60053849.3564 +UniRef50_Q8KDG0 Prolipoprotein diacylglyceryl transferase 5.28628688069e-08 1.10977009067e-07 23461391.5637 +UniRef50_M4XH87 3.2867367212e-05 3.71467553704e-06 -11769299373.0 +UniRef50_UPI00047B1D04 DNA repair protein RadA 5.14111376452e-08 4.93072692929e-08 -849357.471191 +UniRef50_UPI00037F4D6C hypothetical protein, partial 7.55549839673e-08 1.92686222481e-07 47287318.35 +UniRef50_UPI000463A207 glycoside hydrolase 8.04755903862e-07 4.96504410956e-07 -124444910.357 +UniRef50_UPI000462BEE8 hypothetical protein 1.74788509248e-07 2.04745880296e-05 8195278172.94 +UniRef50_UPI0003C175AF 4.09886979926e-07 2.17506402903e-07 -77666399.7193 +UniRef50_Q07637 Pyruvate kinase 5.54048499219e-05 4.63314984442e-05 -3663023334.09 +UniRef50_P60543 Phosphoribosyl AMP cyclohydrolase 3.30022842704e-05 4.25636872028e-05 3860055695.42 +UniRef50_O03063 ATP synthase subunit beta, chloroplastic 1.52151036883e-07 9.45936111063e-08 -23236639.0951 +UniRef50_Q1I6V1 1.06071283675e-06 4.51641326141e-07 -245889642.981 +UniRef50_M5Q933 Clumping factor 6.13126540622e-06 5.0870817159e-06 -421549769.357 +UniRef50_V6Q8F3 0.000213988305269 3.76499755387e-05 -71189947626.6 +UniRef50_Q1AU48 50S ribosomal protein L15 0.00027577613847 5.04782880356e-05 -90955506935.7 +UniRef50_O83675 DNA polymerase III subunit alpha 5.93265733226e-08 8.98800749364e-08 12334823.5351 +UniRef50_T2DYY9 Bacterial type II and III secretion system family protein 1.02211583538e-05 4.06555349265e-06 -2485093220.21 +UniRef50_A6U466 1.31700917714e-06 1.12859887336e-05 4024599380.08 +UniRef50_Q8GFD7 MobA 3.32087227834e-06 4.54936245674e-07 -1157013545.38 +UniRef50_F5XM79 3.36191020962e-06 5.44719796078e-05 20633762207.1 +UniRef50_B7UXA6 Flagellar L ring protein 3.84876383243e-06 5.67112411859e-06 735709210.398 +UniRef50_UPI0003789BA4 hypothetical protein 1.39486283132e-07 3.55292053207e-07 87123437.6139 +UniRef50_UPI0003B325A0 short chain dehydrogenase 1.1707467713e-07 4.44111229989e-07 132028669.579 +UniRef50_Q06ZX9 2.75863211756e-07 1.37282803604e-06 442858160.834 +UniRef50_D4KHH9 Alcohol dehydrogenase, class IV 1.01931410131e-06 1.83026528076e-05 6977495926.15 +UniRef50_UPI00046FD571 hypothetical protein, partial 3.68714596787e-07 2.1123705693e-06 703935313.167 +UniRef50_E0IXG6 4.5158265196e-06 1.05773717125e-05 2447120177.9 +UniRef50_Q2FYR1 Aminoacyltransferase FemB 0.000178541464293 3.53719740354e-05 -57799280104.4 +UniRef50_Q8PI35 6.14962753154e-07 7.47412694261e-07 53471666.5684 +UniRef50_R9SLG3 HD domain containing protein 3.62077164333e-05 4.80597673454e-06 -12677267659.1 +UniRef50_UPI000348EEAA RNA helicase 2.60788949725e-07 4.49642805009e-07 76242618.8756 +UniRef50_F9CJM1 1.02405174997e-06 7.91026888919e-06 2780050362.49 +UniRef50_T0TL30 4.84919848617e-05 6.46094250825e-06 -16968447577.0 +UniRef50_O05956 Endonuclease III 0.000142690824359 1.92240843871e-05 -49845038034.0 +UniRef50_E4DG75 Helicase C terminal domain protein 3.20196634375e-06 5.66606278949e-05 21581917679.8 +UniRef50_UPI0003721D8E hypothetical protein 9.89879382944e-08 2.44139592528e-07 58599504.0254 +UniRef50_F8ABT6 TRAP transporter solute receptor, TAXI family 1.17855168938e-06 1.12194173777e-06 -22854132.1472 +UniRef50_UPI000369C5C3 hypothetical protein 3.62131131331e-08 2.46749824828e-07 84996254.0873 +UniRef50_Q48656 Aminopeptidase N 4.3008628774e-05 6.15863999066e-05 7500074181.12 +UniRef50_UPI0004544631 PREDICTED 3.36606668357e-07 3.18938784929e-06 1151702770.3 +UniRef50_UPI0000D9989C PREDICTED 3.15830432221e-08 3.18411804011e-08 104213.146862 +UniRef50_Q8YX97 Valine tRNA ligase 2.98329819769e-08 2.17511225306e-08 -3262745.83404 +UniRef50_A3CRB9 Energy coupling factor transporter ATP binding protein EcfA1 7.90892298894e-05 0.000118898709521 16071575444.5 +UniRef50_B6IXR1 Replication protein A, putative 1.07942522011e-06 3.00447093003e-07 -314483029.05 +UniRef50_UPI00047D3AFF hypothetical protein 2.61450638686e-08 4.17492012152e-08 6299581.73112 +UniRef50_L5KY59 1.9615403736e-06 3.1685761344e-07 -663978612.804 +UniRef50_C5MZU4 Uroporphyrinogen III C methyltransferase 0.000128995940244 3.91278318903e-05 -36280858148.1 +UniRef50_UPI0003809E92 hypothetical protein 8.72259865734e-06 5.48115766357e-06 -1308609506.14 +UniRef50_UPI000411FAC5 hypothetical protein 7.20801642117e-08 5.00514283551e-07 172964111.455 +UniRef50_UPI0002B964D7 hypothetical protein 1.37786941122e-06 3.71767906084e-07 -406175523.879 +UniRef50_Q5HKN0 UPF0312 protein SERP2314 0.000106164419685 6.88119189111e-06 -40081857402.6 +UniRef50_M1MSQ2 Methyl accepting chemotaxis protein 6.24803421619e-06 8.69907891557e-06 989516822.84 +UniRef50_E0TB06 1.60633812371e-07 2.51715115062e-07 36770639.5896 +UniRef50_M9R6I4 2.16758446181e-07 1.39830484123e-07 -31056762.2951 +UniRef50_UPI000476DD64 acetolactate synthase catalytic subunit 1.90902602677e-07 1.69741306799e-07 -8543074.82425 +UniRef50_P09431 Nitrogen regulation protein NtrB 5.8937018836e-05 4.93630095444e-06 -21800752472.1 +UniRef50_E2QNK3 PTS system galactitol specific enzyme IIC component 1.23630782379e-06 9.57852684744e-05 38170575660.9 +UniRef50_E3DQN8 Lipoprotein 3.23804433189e-07 4.67343809066e-07 57948607.4678 +UniRef50_C9U0N0 Acyl CoA dehydrogenase 5.29471203513e-06 6.85128820353e-06 628408900.521 +UniRef50_Q57QC3 Virulence transcriptional regulatory protein PhoP 4.75020971055e-05 1.73845147417e-05 -12158837584.6 +UniRef50_K6UZ95 Benzoate transport porin BenP 2.28318138423e-06 3.80975251275e-05 14458690060.6 +UniRef50_UPI00036BFE12 hypothetical protein 3.06860341385e-08 1.9291238228e-06 766422631.733 +UniRef50_F5LYA7 2.51107528548e-05 5.08656143347e-05 10397553627.1 +UniRef50_B5YRT3 Transposase InsI for insertion sequence element IS30B C D 6.27876232202e-05 4.44723418224e-06 -23552730971.7 +UniRef50_UPI00039A65D3 MULTISPECIES 1.51086504085e-07 9.40432695259e-08 -23029053.7907 +UniRef50_F0KEE0 Membrane flavodoxin oxidoreductase 5.02388050647e-06 6.08678835417e-06 429108941.463 +UniRef50_L7WYV5 Dihydroxyacetone kinase subunit DhaK 0.000243269613471 3.59019264559e-05 -83716879935.6 +UniRef50_O26914 Probable threonylcarbamoyladenosine tRNA methylthiotransferase 3.02646513729e-05 1.65908261343e-06 -11548419138.0 +UniRef50_D4GIJ6 YyaJ 1.77922554112e-06 7.50791400857e-05 29592074992.8 +UniRef50_B2JED1 6,7 dimethyl 8 ribityllumazine synthase 1.77930090337e-07 7.74850806244e-07 240984218.053 +UniRef50_Q6AA35 NAD transhydrogenase subunit alpha 1.53763885274e-06 4.35916063617e-05 16977702743.6 +UniRef50_R4Q3R7 Tetratricopeptide repeat family protein 1.02331795288e-07 7.50791412271e-08 -11002230.8721 +UniRef50_P33341 Outer membrane usher protein YehB 1.92717668067e-05 2.62921601492e-05 2834218942.28 +UniRef50_P0A6B3 Acyl carrier protein 0.000133955596999 9.99842154002e-05 -13714663627.2 +UniRef50_M9VIB3 Type III restriction enzyme, res subunit 6.6303159637e-07 5.95267119433e-05 23763990094.6 +UniRef50_D3EJ05 Cytochrome bd type ubiquinol oxidase subunit II 0.000172877263814 6.26645424125e-05 -44494228092.2 +UniRef50_Z4WXY4 2.38086637257e-05 8.12815335304e-06 -6330414458.96 +UniRef50_A0A011NRP5 Tellurite resistance protein TerB 3.35163766064e-07 9.82794722521e-08 -95633096.3091 +UniRef50_Q39GU7 Transcriptional regulator, HxlR family 4.73209455078e-07 4.79872549471e-05 19182003228.0 +UniRef50_UPI0003822F5F hypothetical protein 1.02855020686e-06 7.5913802911e-07 -108765002.217 +UniRef50_B9DLQ3 TcaB protein 0.000252361838304 6.34674290883e-05 -76258990995.6 +UniRef50_Q3AC01 Dihydroorotase 4.62784421202e-08 9.66250621185e-08 20325548.3158 +UniRef50_D1CTE1 Replication protein RepA 9.25558371926e-07 6.8791184684e-07 -95940818.428 +UniRef50_A9G7W0 Probable bifunctional SAT APS kinase 2 3.32630066782e-08 1.9931264466e-06 791220920.925 +UniRef50_A6LQC9 3.09414744966e-06 1.44465008854e-05 4583084391.03 +UniRef50_D4HAA4 NlpC P60 family protein 1.50193364259e-06 3.41552370466e-05 13182539285.3 +UniRef50_Q2CCV7 5.6938969883e-06 3.32925366387e-06 -954635527.509 +UniRef50_P69743 Hydrogenase 2 small chain 3.28809742048e-05 7.67532454686e-06 -10175830075.0 +UniRef50_UPI0003B574AD hypothetical protein 6.25289368052e-07 3.08439646255e-07 -127916120.873 +UniRef50_V9VZ32 7.90458637027e-06 2.10385017086e-06 -2341828386.74 +UniRef50_Q9X429 CylG 7.8468636418e-06 3.27523148093e-06 -1845624003.58 +UniRef50_K0RNQ3 1.26229391177e-05 2.8214971834e-06 -3956962386.09 +UniRef50_UPI00047375C6 XRE family transcriptional regulator, partial 3.99668421902e-07 1.89520133916e-07 -84839442.6694 +UniRef50_P00914 Deoxyribodipyrimidine photo lyase 2.6413251553e-05 1.61740854284e-05 -4133677013.2 +UniRef50_UPI000350AF0A PREDICTED 2.83260320517e-08 1.01339497882e-08 -7344366.85173 +UniRef50_W7ST93 1.1301975714e-06 1.19820617911e-05 4381030752.84 +UniRef50_Q9RXT4 Phosphoribosylformylglycinamidine synthase 2 6.21458368296e-08 0.000138241782778 55784815087.9 +UniRef50_A0KFN8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.87549981139e-07 5.52941199019e-08 -53393314.1433 +UniRef50_B9L9J4 2.09326796037e-06 2.70606078645e-05 10079621503.0 +UniRef50_UPI0003C12600 1.84712287898e-07 3.54554300041e-07 68567304.498 +UniRef50_Q9I4U3 DNA recombination protein RmuC homolog 5.0681757557e-06 1.70997370487e-05 4857288937.84 +UniRef50_UPI0003C176FD PREDICTED 2.36110590491e-08 1.03075740127e-06 406597337.43 +UniRef50_UPI00022CAACE PREDICTED 8.2700175199e-07 5.83544262361e-07 -98286776.1226 +UniRef50_A5UZW4 Triosephosphate isomerase 1.45227456022e-07 5.74300169551e-07 173221919.766 +UniRef50_UPI0002557ECE hypothetical protein 1.58826851002e-07 1.52557206261e-07 -2531132.51913 +UniRef50_W1PEW2 1.30907068881e-07 2.23837545244e-08 -43812193.7367 +UniRef50_UPI00026276DF cell division protein FtsZ 8.73687859274e-08 9.56177853871e-08 3330222.30849 +UniRef50_R4RK88 Ferrichrysobactin receptor 1.29626831276e-06 2.80196432526e-06 607867957.214 +UniRef50_UPI00035C5909 hypothetical protein 1.40424184592e-07 1.75774062098e-06 652930492.075 +UniRef50_UPI0003819143 30S ribosomal protein S5 1.27897800331e-07 1.40721790516e-07 5177202.20574 +UniRef50_H8L2T6 Flagellar hook capping protein 6.66107666239e-08 9.06468300322e-08 9703653.7536 +UniRef50_UPI00037CA814 hypothetical protein 4.81551138649e-08 3.16864137045e-07 108481130.088 +UniRef50_Q82S57 L sorbosone dehydrogenase 1.00543522061e-05 1.9886646815e-06 -3256217030.8 +UniRef50_Q3JSM3 1.50494369559e-07 2.8789035581e-07 55468445.6879 +UniRef50_H4Q189 HdhA domain protein 3.77690715698e-07 3.30552930043e-06 1182004365.28 +UniRef50_UPI0003B6CB71 sulfonate ABC transporter ATP binding protein 5.13284618379e-07 2.70209832084e-07 -98132274.0903 +UniRef50_B0VPR5 3.06468466276e-06 5.92010089146e-05 22662922970.6 +UniRef50_B2HZL6 Cobalamin synthase 1.54075913818e-06 5.70820544599e-05 22422702489.7 +UniRef50_Q9HV71 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 7.08934065062e-06 7.84908294054e-06 306717285.527 +UniRef50_Q89VT1 Blr0964 protein 1.47151370516e-07 8.27616600412e-06 3281782961.81 +UniRef50_G0VM95 Inner membrane transport protein YhaO 2.34789040921e-07 2.85289545944e-07 20387673.5887 +UniRef50_S4X2L4 Mercury transport protein 0.000101345858563 2.44314356595e-05 -31051296372.2 +UniRef50_M7XVH9 1.12979087244e-06 3.57569806377e-06 987442747.796 +UniRef50_A5UL22 DNA repair helicase 2.61559551078e-05 9.27941796405e-06 -6813265143.35 +UniRef50_Q8TI16 Energy coupling factor transporter ATP binding protein EcfA 1.00863230139e-07 1.31644035549e-07 12426588.867 +UniRef50_A4Y9D9 Peptidyl tRNA hydrolase 1.12105413996e-05 6.11443586101e-06 -2057360342.18 +UniRef50_UPI000262C9FD ribonuclease, Rne Rng family protein 2.17494163806e-08 1.67390803533e-08 -2022734.13796 +UniRef50_UPI00047C08EE short chain dehydrogenase 7.55969237554e-08 1.13088261504e-07 15135713.1196 +UniRef50_UPI00026257AD inosine uridine preferring nucleoside hydrolase, partial 8.92970214276e-08 3.57062880019e-07 108100362.97 +UniRef50_D3QFZ0 Penicillin amidase V 0.000106202423416 5.08979217296e-05 -22327105993.4 +UniRef50_UPI0003B42BB6 GntR family transcriptional regulator 2.18369763659e-07 4.85482653925e-07 107836751.644 +UniRef50_Q49XR9 0.000186048008768 5.676133054e-05 -52194618526.6 +UniRef50_M4R497 Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II 1.07673689615e-06 6.47730187985e-05 25714970645.3 +UniRef50_Q9RSH0 Amino acid ABC transporter, periplasmic amino acid binding protein 5.29318112793e-06 0.000730961929478 2.92961378666e+11 +UniRef50_P0A0M5 Thymidylate synthase 0.000181731349413 9.54795892753e-05 -34820893995.7 +UniRef50_A4VHG9 tRNA N6 adenosine threonylcarbamoyltransferase 4.27081853895e-05 0.000148486763185 42704109905.4 +UniRef50_Q8CQ28 ABC transporter 0.000240270293557 5.47106398333e-05 -74912709281.4 +UniRef50_UPI00046FA309 hypothetical protein 1.38509477888e-06 1.36841122583e-07 -503935318.843 +UniRef50_Q1AS60 Glutamate tRNA ligase 2 4.48203596814e-08 5.15201944286e-08 2704805.50366 +UniRef50_UPI00037B162D MULTISPECIES 7.17095078314e-07 1.21268087424e-07 -240542667.842 +UniRef50_P52662 HTH type transcriptional regulator PecT 2.75816168391e-05 1.2444199892e-05 -6111160978.54 +UniRef50_S9S860 2.06007863142e-07 9.12186169211e-08 -46341827.3219 +UniRef50_UPI0003D719FF 3.71604734836e-07 1.39620773387e-06 413644804.001 +UniRef50_UPI000467E030 calcium binding protein, partial 3.40173475522e-07 5.47186407626e-07 83573661.0247 +UniRef50_A5UL93 Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA 2.68936863328e-05 3.96204540274e-06 -9257784846.36 +UniRef50_F4A673 Hydrogenase maturation factor 1.37150052624e-05 8.62596146583e-06 -2054509430.27 +UniRef50_A5F3A7 Aldehyde dehydrogenase 2.85898751085e-06 1.24303029555e-06 -652381757.842 +UniRef50_Q8U1E4 Translation initiation factor 5A 1.21839193345e-05 1.42945357351e-05 852081741.098 +UniRef50_Q5FPL0 GMP synthase [glutamine hydrolyzing] 4.63863651493e-07 2.45414202402e-07 -88190723.2742 +UniRef50_D8K701 UPF0125 protein Nwat_1827 2.40788535107e-06 3.39674089035e-07 -834962266.292 +UniRef50_P63811 Pantothenate kinase 2.28964772681e-07 9.82962184725e-05 39590953739.1 +UniRef50_F2L7R0 NAD NADP transhydrogenase alpha subunit like protein 6.90445917882e-07 7.93875962153e-07 41755978.1016 +UniRef50_D4H9R8 Triacylglycerol lipase 1.22959605492e-06 7.80978135531e-06 2656501553.72 +UniRef50_M7DU42 Transcriptional regulator 0.00020000401014 2.01690014581e-05 -72601599828.6 +UniRef50_Q2S3A7 Phosphoglycerate kinase 1.26613379189e-07 6.02078225909e-07 191950993.231 +UniRef50_UPI0003725ECA hypothetical protein 1.44439603769e-06 9.46587886666e-07 -200971259.361 +UniRef50_P0AFS7 UPF0118 inner membrane protein YdiK 1.38765668479e-05 2.21211015129e-06 -4709084307.4 +UniRef50_Q2RPW6 1.78451391895e-05 3.55090226682e-06 -5770758855.71 +UniRef50_A0A024E8U2 Mandelate racemase muconate lactonizing enzyme family protein 1.28339356896e-05 1.52618452293e-06 -4565077907.71 +UniRef50_I6U2V2 Transcriptional regulator 4.37074281514e-05 2.83379297683e-05 -6204855102.21 +UniRef50_P45858 2 methylcitrate synthase 1.37783269286e-07 2.32746613714e-07 38337867.4769 +UniRef50_Q6CBZ1 YALI0C14234p 6.34366737652e-07 3.66382605505e-07 -108188482.683 +UniRef50_W0YNG1 4.56636276836e-06 5.62508009894e-06 427417178.278 +UniRef50_O26830 Putative phospho N acetylmuramoyl pentapeptide transferase 2.51354107868e-05 1.67952628551e-06 -9469428409.25 +UniRef50_P23878 Ferric enterobactin transport ATP binding protein FepC 2.9883307859e-05 3.30578401339e-06 -10729672519.4 +UniRef50_D9RDD4 0.000118574844678 1.43913607484e-05 -42060150937.7 +UniRef50_K0HJZ6 HTH domain protein 2.61449209184e-06 5.06221296237e-05 19381272391.6 +UniRef50_UPI00045603DB hypothetical protein PFL1_00982 1.71018606143e-06 1.05955935372e-06 -262665985.99 +UniRef50_A9NFP2 50S ribosomal protein L32 0.000143104300398 1.31251868976e-05 -52474163143.0 +UniRef50_UPI00024926A7 DNA 3 methyladenine glycosylase 2.59914714258e-07 2.39860354065e-07 -8096191.30459 +UniRef50_P28916 H repeat associated protein YbfD 3.97026537791e-05 8.4252980344e-06 -12627052330.5 +UniRef50_UPI000262D669 FKBP type peptidyl prolyl cis trans isomerase 6.57563479367e-07 7.34406922112e-07 31022640.8112 +UniRef50_UPI0003B77EBB ABC transporter 4.973639969e-08 1.14254128622e-07 26046598.8914 +UniRef50_A6LQ88 Type II secretory pathway pseudopilin PulG like protein 2.78930533636e-06 2.19212680326e-05 7723808116.04 +UniRef50_O32197 Transcriptional regulatory protein LiaR 0.000269240769037 9.4963912138e-05 -70357705747.7 +UniRef50_UPI00016BFC87 ribonuclease III 1.33226155261e-07 4.19702565599e-07 115654042.314 +UniRef50_G2JLA5 2.90896410951e-05 4.42741603415e-05 6130176754.78 +UniRef50_A0A022GY86 2.6587365406e-07 1.58102333837e-07 -43508604.4768 +UniRef50_L8EHD4 Major facilitator transporter 2.577396566e-08 8.71502747379e-07 341431087.439 +UniRef50_UPI000225F112 hypothetical protein 4.32544562197e-06 2.81547347408e-07 -1632571357.65 +UniRef50_O08385 ATP phosphoribosyltransferase 9.91351460727e-06 1.35435873523e-05 1465504913.17 +UniRef50_Q3IVA5 Aldo keto reductase 0.000111008236061 3.23010674666e-05 -31775049807.1 +UniRef50_UPI00037D4803 hypothetical protein 3.95387702816e-08 3.04347110971e-07 106906376.7 +UniRef50_UPI0004015A16 MULTISPECIES 1.07708635954e-07 8.3000362986e-07 291599352.596 +UniRef50_Q9AAA2 MaoC family protein 4.65400514843e-07 2.54519743246e-07 -85135155.2918 +UniRef50_P42810 TPR repeat containing protein PA4667 1.86076124692e-06 2.31644734857e-06 183966071.133 +UniRef50_Q3XXT3 Amino acid permease associated region 0.000111250079144 4.6166597895e-05 -26275000044.3 +UniRef50_UPI000474EE1B hypothetical protein 3.15407426103e-07 6.35040851712e-07 129039936.262 +UniRef50_A8LKL8 AFG1 family ATPase 0.000105735808999 1.45115805369e-05 -36828340477.3 +UniRef50_Q87XY9 Decarboxylase family protein 1.47746944521e-05 1.2055871232e-05 -1097622297.67 +UniRef50_B1N5W5 Diaphanous protein, putative 5.76129969286e-08 5.22737074051e-08 -2155536.70109 +UniRef50_A4X0A4 HipA domain protein 0.000125561241003 2.4732534568e-05 -40705786095.2 +UniRef50_UPI000364B97F hypothetical protein 2.8631219123e-07 4.03376147698e-08 -99302954.9644 +UniRef50_UPI0003B7A32E chromosome partitioning protein ParB 5.48520703516e-07 1.4724578973e-05 5723048683.19 +UniRef50_Q17058 Alpha glucosidase 1.06694861621e-07 8.0930281643e-08 -10401477.1041 +UniRef50_G0HDD8 7.15387218342e-07 7.24632690383e-05 28965500336.3 +UniRef50_A4CMU2 1.68421787526e-07 1.39232721e-07 -11783984.3467 +UniRef50_I6RKC9 7.00587372529e-06 3.92685618868e-06 -1243037163.32 +UniRef50_UPI00025588CA phage terminase, partial 3.07310065221e-06 2.38934011889e-07 -1144187851.83 +UniRef50_H3LAA4 4.91331526942e-07 3.92439353637e-07 -39923983.9067 +UniRef50_D3E1C3 4.36285950222e-05 3.75805506968e-06 -16096226245.4 +UniRef50_B9KX02 2.17811564083e-05 3.88507227435e-06 -7224868774.54 +UniRef50_G4YDD7 2.28282756213e-07 6.03193271208e-07 151355975.573 +UniRef50_Q9HYT1 1.38255559842e-05 2.07239793125e-06 -4744894133.42 +UniRef50_UPI0003797423 hypothetical protein, partial 3.98716356562e-07 3.6635790752e-08 -146176367.646 +UniRef50_Q9HYT3 3.39139844059e-06 2.72457711549e-06 -269203951.761 +UniRef50_I6U0G5 ComB, accessory factor for ComA 4.83145832485e-05 2.13812750687e-05 -10873307021.0 +UniRef50_W8KRF0 Flagellar hook capping protein 7.38024235006e-08 1.08043072921e-07 13823370.351 +UniRef50_K4PRA4 Phosphotransferase system, EIIC 9.33600961682e-07 1.93017454369e-06 402328984.39 +UniRef50_D0RWK6 3.96792102761e-05 2.44737600989e-06 -15030948379.2 +UniRef50_Q9RUL2 1.0000042236e-05 0.000427452685108 1.68530754647e+11 +UniRef50_UPI000408C0D1 L threonine 3 dehydrogenase 5.9951888187e-08 1.00911293367e-06 383187961.577 +UniRef50_Q67PA6 Proline tRNA ligase 4.85933386328e-08 7.16625984978e-07 269692977.012 +UniRef50_C4UFH2 1.09575374683e-07 9.96495131301e-08 -4007192.11292 +UniRef50_B7I478 Transcriptional regulator, TetR family 6.3476438756e-06 0.000159508354081 61832858203.0 +UniRef50_C5BM48 Ethanolamine ammonia lyase, large subunit 1.05224780203e-05 8.26546092781e-05 29120626549.6 +UniRef50_D2P376 1.46061579715e-07 3.92882534625e-06 1527148152.28 +UniRef50_Q9ZL96 tRNA ) methyltransferase 9.7709919458e-07 4.18355403412e-05 16495054080.3 +UniRef50_V0L6T7 Glycine dehydrogenase 2.07656711224e-05 1.01588119878e-05 -4282119193.44 +UniRef50_UPI000470D224 sugar ABC transporter permease 2.16092626466e-07 1.12991154461e-07 -41623329.4458 +UniRef50_A0A024HX03 4.1721630349e-08 6.48750116095e-08 9347304.1388 +UniRef50_UPI0004691DC1 mechanosensitive ion channel protein MscL 3.87408570048e-06 7.66063542803e-07 -1254746684.78 +UniRef50_T7H4C9 Periplasmic endochitinase 1.31351461295e-05 2.1287170559e-06 -4443430481.09 +UniRef50_G2JK97 3.49656531858e-06 1.91037331937e-05 6300805192.66 +UniRef50_UPI0003616A00 hypothetical protein 1.98787154188e-07 4.57112840812e-06 1765167818.87 +UniRef50_M4MLE9 7.93743329946e-05 3.76919454664e-06 -30522722170.8 +UniRef50_I3UFE6 Saccharopine dehydrogenase 0.000107269916045 3.84223409919e-05 -27794610903.7 +UniRef50_UPI00046ED2B4 hypothetical protein 1.92849680478e-06 3.08237033184e-07 -654118752.618 +UniRef50_UPI0002E5AE52 choline dehydrogenase 5.30227941019e-07 1.63196421019e-07 -148175128.607 +UniRef50_M4QZX1 5.8854715767e-06 0.000104978088938 40004905631.9 +UniRef50_P13512 Cobalt zinc cadmium resistance protein CzcD 1.20458752684e-05 6.52892166771e-05 21494990296.0 +UniRef50_V8R0S1 Deoxyribonuclease 3.38117407713e-08 1.6304357694e-06 644576713.138 +UniRef50_UPI00036A5DE2 peptidase 6.45374007465e-08 1.94865172316e-07 52614920.684 +UniRef50_X5DX77 5.37426714876e-05 1.90688163344e-05 -13998260821.4 +UniRef50_D6ZZK2 Sulfate ABC transporter, periplasmic sulfate binding protein 0.000115071100577 2.15277780634e-05 -37764587204.4 +UniRef50_UPI000472CD56 hypothetical protein 3.9891164237e-07 3.31834844312e-07 -27079726.5009 +UniRef50_UPI000289BAA8 acetyl CoA 6.17782641891e-08 1.74262646191e-07 45411325.3528 +UniRef50_UPI000474C455 hypothetical protein, partial 3.9268102794e-06 3.16291897258e-07 -1457610576.91 +UniRef50_B1GYQ3 3 phosphoshikimate 1 carboxyvinyltransferase 4.62881862416e-08 6.12078938013e-08 6023269.02725 +UniRef50_Q7P3Y5 NagD protein 2.92518313198e-07 1.08569821968e-06 320216461.659 +UniRef50_UPI0001BF64A8 hypothetical protein SMAC_11040, partial 3.3115664033e-07 1.06056017007e-05 4147919552.5 +UniRef50_D8GQL0 2.08940584237e-06 1.93525063326e-05 6969325509.96 +UniRef50_UPI0001C36D2D hypothetical protein 1.83718360343e-08 4.10116016747e-08 9139951.2102 +UniRef50_Q5XE77 Single stranded DNA binding protein 1 3.9355426687e-05 3.04400667739e-05 -3599240200.69 +UniRef50_P75788 Inner membrane protein YbiR 3.02248965996e-05 2.06589444548e-05 -3861892268.29 +UniRef50_D4Z138 1.0693465288e-06 5.75975357341e-07 -199179996.263 +UniRef50_UPI000237EFA3 transposase IS3 family protein 2.86604444997e-06 8.68699389826e-07 -806352710.959 +UniRef50_U3SWI7 6.01158467119e-05 1.83399137865e-05 -16865456770.3 +UniRef50_X0PLV2 Excinuclease ABC 2.97484220653e-07 1.35801477647e-06 428149199.558 +UniRef50_C7ZYL4 Phage major tail protein 0.000204212647858 4.94129306886e-05 -62494545427.3 +UniRef50_UPI0004713D66 hypothetical protein 7.21640072095e-08 1.12640253541e-07 16340757.3434 +UniRef50_C5CT24 Polyribonucleotide nucleotidyltransferase 1.24506955017e-06 4.59928233292e-05 18065217317.3 +UniRef50_L7WT15 Glycosyltransferase stabilizing protein Gtf2 8.75125543601e-05 3.063620881e-05 -22961678649.8 +UniRef50_I6SK88 2.38412203486e-06 6.00644146164e-06 1462374803.45 +UniRef50_UPI0001C39745 ABC type dipeptide transport system, periplasmic component, partial 3.13337892238e-07 1.35986465501e-06 422495696.458 +UniRef50_A3W978 2.61473206309e-08 3.13593498676e-06 1255459442.2 +UniRef50_A2FR65 Basic proline rich protein, putative 2.11169831119e-08 3.18342517219e-07 119993595.486 +UniRef50_UPI000181656F hypothetical protein, partial 2.16900262647e-07 1.5155570114e-07 -26380401.3483 +UniRef50_A0A011PGA8 Hydrogenase 2 maturation protease 2.48256548396e-06 1.7256791668e-06 -305564294.277 +UniRef50_O27051 D 3 phosphoglycerate dehydrogenase 3.58423364029e-05 3.54210289475e-06 -13040000635.7 +UniRef50_UPI000262927F GTPase Der 1.12727972097e-07 2.35203809827e-07 49444998.6391 +UniRef50_K4HIZ1 DnaJ related protein 1.49019470913e-07 1.48192455894e-07 -333876.111786 +UniRef50_UPI0003637E5A hypothetical protein, partial 9.18675973125e-07 2.58422851782e-06 672404000.919 +UniRef50_P76102 Putative transposase InsQ for insertion sequence element IS609 1.75907738129e-05 3.12664261817e-06 -5839347258.15 +UniRef50_F0KM17 Lipid A biosynthesis lauroyl acyltransferase 3.73308522105e-06 0.00011063586228 43157962943.3 +UniRef50_S5YHY9 Partition protein A 0.000145321861429 2.64323265894e-05 -47997164153.6 +UniRef50_Q3J218 3.0720523076e-05 1.71474215919e-05 -5479627629.82 +UniRef50_K0TK24 2.46962555471e-06 4.81494526799e-07 -802632893.078 +UniRef50_UPI000471D82C hypothetical protein 3.84688142104e-07 8.11410424334e-06 3120460130.67 +UniRef50_UPI000363C207 hypothetical protein 4.74333979498e-08 6.84645238196e-07 257250239.376 +UniRef50_D3E2Q4 Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family 3.15403853425e-05 2.70519119271e-06 -11641121725.9 +UniRef50_UPI0003B72DF0 GntR family transcriptional regulator 1.5939806031e-07 3.10123742982e-07 60849807.7068 +UniRef50_Q3J215 1.203240963e-05 6.30565214824e-05 20599060091.1 +UniRef50_UPI0003B5B026 zinc metalloprotease 1.84205551687e-07 1.54374997467e-07 -12042960.8007 +UniRef50_O14556 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 4.33825724748e-08 7.77553162118e-08 13876698.4476 +UniRef50_P65671 Sulfate adenylyltransferase subunit 2 2.13268920259e-06 5.64501940932e-05 21928643275.1 +UniRef50_F0QP46 Flavoprotein 1.57397867263e-06 6.04211782e-05 23757336585.6 +UniRef50_D5UQ22 Cell envelope related transcriptional attenuator 3.31078256233e-08 1.1268986533e-07 32128246.011 +UniRef50_Q1IX28 Periplasmic YigE like protein 2.17226819131e-07 6.91747021624e-06 2704970480.65 +UniRef50_Q3JG98 Acyl CoA dehydrogenase, C terminal domain family 1.24720040369e-06 6.136361895e-05 24269735878.6 +UniRef50_UPI00046FA5DF hypothetical protein 1.2337205503e-06 3.93800954421e-07 -339085847.829 +UniRef50_UPI00035D1933 glycine cleavage system protein H 1.24853802669e-06 4.6589547855e-07 -315962400.788 +UniRef50_V9T6E9 Sugar ABC transporter permease 8.60792997232e-06 6.5188957927e-06 -843368733.645 +UniRef50_UPI0003B3F1EE transposase 3.84892189275e-06 3.95470821019e-07 -1394200576.27 +UniRef50_B8EJI5 Holliday junction ATP dependent DNA helicase RuvA 2.04898634152e-07 9.87572791475e-08 -42850567.516 +UniRef50_UPI00046E909F hypothetical protein 3.38564496456e-08 2.21696813083e-06 881348975.485 +UniRef50_A1BAZ5 9.74840854578e-05 1.42477357769e-05 -33603535791.1 +UniRef50_A5UML2 Predicted flavoprotein 4.64997341681e-05 7.66833645921e-06 -15676711769.9 +UniRef50_UPI000349F337 hypothetical protein 1.4036090839e-07 1.12698204955e-07 -11167772.8363 +UniRef50_UPI0004624C72 polymerase 4.17309261302e-07 2.16815619447e-07 -80941743.5505 +UniRef50_Q3J4T5 Putative metal dependent protease of the PAD1 JAB1 superfamily 0.000230458028673 0.000175647305321 -22127761620.4 +UniRef50_Q6GE10 6 carboxyhexanoate CoA ligase 0.000266472780519 5.84916836143e-05 -83964521035.6 +UniRef50_P07018 Methyl accepting chemotaxis protein IV 1.62047782135e-05 1.13776911677e-05 -1948754275.41 +UniRef50_I3Y049 3.44811547833e-07 2.53411013532e-07 -36899517.308 +UniRef50_UPI0003476A90 hypothetical protein 9.66656837494e-07 9.70359987393e-08 -351076604.053 +UniRef50_UPI0003F0CB72 PREDICTED 6.93545577416e-07 1.0174843704e-07 -238915767.737 +UniRef50_O68872 2.72126846076e-07 1.34368848486e-07 -55614594.1078 +UniRef50_Q2GDJ8 NADH quinone oxidoreductase subunit D 3.06954159752e-07 6.20545543858e-07 126600689.963 +UniRef50_A1AJH6 N acetylneuraminate epimerase 7.69666761398e-06 6.10086487235e-06 -644245149.498 +UniRef50_F2J2D8 Putative HTH type transcriptional regulator rrf2 like protein 4.90750144085e-07 2.29800756401e-07 -105348470.017 +UniRef50_Q9RXY1 50S ribosomal protein L13 2.58552047156e-06 0.000549214743431 2.20680925203e+11 +UniRef50_D3E348 3.86453019058e-05 1.76908813741e-05 -8459556708.3 +UniRef50_K0C281 Flagellar hook capping protein 7.71910395366e-08 1.05748344467e-07 11528934.4379 +UniRef50_UPI0003697B4B ABC transporter, partial 6.41654148153e-07 1.18127265163e-06 217850611.717 +UniRef50_A3WH30 1.64333357018e-06 1.82799932358e-06 74551830.7512 +UniRef50_UPI00036F7350 hypothetical protein 1.19850643372e-07 6.02588518114e-08 -24057937.5265 +UniRef50_A0A011PL33 3.74556825403e-06 1.17355788946e-07 -1464753895.33 +UniRef50_Q9LUW5 DEAD box ATP dependent RNA helicase 53 8.50081762769e-08 1.06866592368e-06 397114703.465 +UniRef50_UPI0003C14327 PREDICTED 1.62178424441e-06 5.27710566236e-07 -441690969.671 +UniRef50_Q016E9 Glyoxalase bleomycin resistance protein dioxygenas 9.62416231123e-06 1.73248252835e-06 -3185967970.15 +UniRef50_UPI0003B4F316 ABC transporter ATP binding protein 3.63357806267e-06 2.17217093411e-07 -1379226846.75 +UniRef50_C5AQC0 DNA helicase, ATP dependent resolution of Holliday junctions, branch migration 1.04658638442e-05 3.48211301669e-06 -2819425909.33 +UniRef50_Q49Y17 0.000203020479131 5.6986131494e-05 -58955858184.0 +UniRef50_A8AKZ3 0.000105053070929 7.30151811032e-06 -39463501419.4 +UniRef50_P0AE54 Putative peroxiredoxin bcp 4.95091743456e-05 3.91147953907e-06 -18408348940.0 +UniRef50_Q5HLM6 4.03612911074e-05 9.85874696806e-06 -12314251377.3 +UniRef50_W0IR18 C4 dicarboxylate ABC transporter 7.97326769653e-05 1.66761276481e-05 -25456702750.2 +UniRef50_A4WSF9 1.11665054727e-06 1.04485138187e-07 -408623596.312 +UniRef50_UPI00030293EE hypothetical protein 2.6584012096e-07 7.62252711482e-08 -76549841.705 +UniRef50_W4U1X8 4.79721629021e-08 1.21189552376e-07 29558758.609 +UniRef50_B2T0E3 1.24904224454e-06 4.23617813936e-07 -333233971.732 +UniRef50_B0VUD5 High frequency lysogenization protein HflD homolog 3.24448646184e-06 5.24252596288e-05 19854881643.5 +UniRef50_A0A029AVJ5 8.88994172475e-08 6.25809746045e-07 216757288.366 +UniRef50_S6WIX2 Fosmidomycin resistance protein 2.72636125244e-06 7.31894960285e-07 -805190516.999 +UniRef50_Q6LKZ5 ATP synthase epsilon chain 2 2.67720559474e-06 2.58153816371e-05 9341165605.67 +UniRef50_UPI00046E6D22 LysR family transcriptional regulator, partial 7.839716899e-08 7.92737002227e-08 353866.414889 +UniRef50_P33368 3.71291664563e-05 2.95360639918e-05 -3065428642.76 +UniRef50_UPI000370601D hypothetical protein 1.60624268695e-07 5.77164115815e-07 168162247.801 +UniRef50_C3FDC0 2.64134060577e-06 1.11415002597e-05 3431618760.98 +UniRef50_B9KUV4 3.81257569712e-06 1.67793582503e-06 -861780311.34 +UniRef50_C6STH9 8.99353871183e-05 8.00805684286e-06 -33075068593.6 +UniRef50_V5EUP7 3.85221178065e-08 4.5831473518e-06 1834720975.78 +UniRef50_UPI00029A0BC2 3 hydroxybutyryl CoA epimerase 2.14084001059e-08 6.97326654617e-08 19509098.9296 +UniRef50_C9CS38 Rb142 9.56265565135e-08 3.86333736629e-08 -23008847.3018 +UniRef50_UPI0003B6D51E DNA topoisomerase I 2.83705753605e-08 1.05980405102e-07 31332040.6464 +UniRef50_UPI0003597373 PREDICTED 5.07142653666e-08 6.54546077233e-07 243774312.3 +UniRef50_T1YC46 Integral membrane protein 0.000207937568195 5.78644829849e-05 -60586346103.1 +UniRef50_P37460 Proline specific permease ProY 5.92191124291e-06 6.22326276457e-05 22733327222.0 +UniRef50_A9BFZ1 30S ribosomal protein S4 3.68279013511e-06 0.000466653065696 1.86906781528e+11 +UniRef50_UPI00037C9C7B hypothetical protein 6.45164087129e-08 3.74823998982e-08 -10913961.1031 +UniRef50_Q3KHK6 GntR family transcriptional regulator 7.38824547026e-06 9.51154104944e-06 857200481.082 +UniRef50_Q5H1Q0 Beta hexosaminidase 5.06447053817e-08 1.35511392081e-07 34261722.8519 +UniRef50_UPI0002F5F4FB hypothetical protein 9.92241861262e-08 1.95528914058e-06 749316198.59 +UniRef50_P18179 Potential ATP binding protein 0.000963378801446 0.000232054379517 -2.95244643493e+11 +UniRef50_UPI00035C1F2F hypothetical protein 4.79370706344e-08 6.44979159794e-08 6685816.4902 +UniRef50_Q1AR89 Aminomethyltransferase 6.85779632759e-07 7.64576784375e-07 31811377.0572 +UniRef50_UPI0002B48709 PREDICTED 5.78312169356e-08 4.48981749963e-08 -5221227.73717 +UniRef50_UPI00037FBF9D hypothetical protein 3.38471567748e-07 1.86828954834e-08 -129102611.242 +UniRef50_G7ZS60 0.000649074988819 1.18672743544e-05 -2.57248573747e+11 +UniRef50_R5A691 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.61360957856e-07 1.48437299725e-07 -5217439.3786 +UniRef50_X4ZCF7 ABC transporter family protein 7.48640814696e-05 5.25444214884e-05 -9010720627.44 +UniRef50_I3WXC9 Dissimilatory sulfite reductase 4.78163254587e-06 1.92936276143e-06 -1151496313.26 +UniRef50_Q8DUY9 4.06087927091e-05 1.23408248075e-05 -11412125528.9 +UniRef50_P0AGL8 Ribosomal RNA small subunit methyltransferase E 1.67321558672e-05 2.42726059064e-06 -5775061763.97 +UniRef50_Q9I2V5 Aconitate hydratase 2 1.46339021553e-05 7.03722012203e-05 22502235318.4 +UniRef50_A6L1U8 Lipoyl synthase 4.99056838101e-08 1.04289989206e-05 4190167305.49 +UniRef50_UPI00046AA788 hypothetical protein 7.87343176829e-07 9.25174812046e-07 55644322.5215 +UniRef50_Q2SPQ1 Chemotaxis response regulator protein glutamate methylesterase 1 6.91105173079e-07 9.12754628472e-08 -242158614.759 +UniRef50_Q51465 Flagellar motor switch protein FliM 7.32560789549e-06 3.16410755563e-06 -1680048754.55 +UniRef50_UPI000479C05A malate 2.94586139091e-08 9.01905228428e-08 24518216.9009 +UniRef50_I2FD14 UDP glucose 4 epimerase 3.27230863435e-06 2.72999298272e-05 9700245527.6 +UniRef50_Q2IFU3 Pantothenate synthetase 1.7014366498e-05 3.66853049924e-06 -5387877764.54 +UniRef50_Q1J0G9 Aminotransferase, class V 2.64902448311e-06 9.44622575209e-05 37066128852.4 +UniRef50_H8GYV6 2.02224636884e-06 0.000250286813448 1.00227452279e+11 +UniRef50_A5X3K4 Polyphenol oxidase 1.27442879115e-05 3.27523148093e-06 -3822774279.41 +UniRef50_P76555 Ethanolamine utilization protein EutQ 1.58995578719e-05 1.39084880992e-05 -803819300.413 +UniRef50_Q83II9 Ascorbate specific permease IIC component UlaA 3.55915577359e-05 1.47891567685e-05 -8398184544.71 +UniRef50_UPI0004688BBC flagellar motor switch protein 6.37310095676e-07 4.83741372484e-07 -61997578.0528 +UniRef50_D8N1D9 4.34669031089e-09 6.62266369511e-09 918838.384544 +UniRef50_C5B779 Protein CreA 2.30157294746e-07 1.96712669253e-07 -13502005.7232 +UniRef50_K0HWI3 NADPH dependent FMN reductase 2.18621229065e-06 4.74455018938e-05 18271730606.7 +UniRef50_P75693 1.60137149409e-05 9.05635345209e-06 -2808772209.46 +UniRef50_UPI00034B5B3B hypothetical protein 7.50510702956e-08 1.07457068127e-07 13082698.9908 +UniRef50_E7B3D1 Metallo beta lactamase superfamily protein PA0057 4.90388584265e-06 1.24872037343e-07 -1929346518.3 +UniRef50_D8HDI6 Pyridoxal dependent decarboxylase 0.000147138284894 3.01774935129e-05 -47218506750.8 +UniRef50_X7FEK2 3.98682728336e-07 3.37435988918e-07 -24726060.2851 +UniRef50_UPI00047DFC44 hypothetical protein 6.11709534811e-08 3.40405525375e-07 112730423.267 +UniRef50_B0VLY8 7.96383942783e-07 7.0697329979e-05 28219869695.9 +UniRef50_Q6A7P4 Riboflavin biosynthesis protein RibF 3.46062750835e-06 7.34999540155e-05 28275735590.1 +UniRef50_Q08052 Ribulose bisphosphate carboxylase small chain 4.02794549515e-06 5.31370998841e-07 -1411610031.95 +UniRef50_D4HAX6 ROK family protein 2.24249102288e-06 7.00035354057e-05 27355965138.9 +UniRef50_E0RV96 Rhamnulose 1 phosphate aldolase 3.04424184557e-06 3.60142323408e-06 224940963.926 +UniRef50_P69854 Tat proofreading chaperone DmsD 2.25767937135e-05 1.10743764448e-05 -4643667001.91 +UniRef50_U6I0U9 Glutamyl tRNA amidotransferase subunit B, mitochondrial 6.25866030598e-08 5.55175549263e-08 -2853861.47847 +UniRef50_UPI00036CBFA7 hypothetical protein 4.85183895068e-08 7.69823187115e-08 11491237.5116 +UniRef50_A3PIF9 PRC barrel domain protein 5.83982593218e-05 5.16588988672e-06 -21490560775.6 +UniRef50_Q8RD56 AAA superfamily ATPases with N terminal receiver domain 1.25809280332e-06 4.84200692328e-06 1446870109.8 +UniRef50_P09384 Chemotaxis protein CheA 2.18454274231e-05 5.43667850736e-06 -6624413295.26 +UniRef50_A6QE42 1.96482446064e-05 1.35675809661e-05 -2454838529.72 +UniRef50_Q6F806 1.71066158086e-06 5.86978844928e-05 23006441201.4 +UniRef50_I1ZNS6 Cation efflux protein 5.22429306784e-06 4.01458253734e-05 14098251127.2 +UniRef50_Q4SPJ4 Chromosome 16 SCAF14537, whole genome shotgun sequence. 3.4342620462e-06 3.53180417329e-07 -1243870462.7 +UniRef50_Q9LDF4 2.27250809553e-07 3.85587851347e-06 1464921532.34 +UniRef50_Q37370 Cytochrome c oxidase subunit 1+2 6.78222520371e-08 2.14012945669e-07 59018976.9808 +UniRef50_B2S5Z1 Indole 3 glycerol phosphate synthase 6.33943426866e-05 9.44133167229e-06 -21781492624.4 +UniRef50_A7MEJ4 Spermidine export protein MdtJ 6.60266673678e-06 8.01764810481e-06 571245342.048 +UniRef50_R9YQ52 Sugar transporter family protein 0.000102970729819 3.24175932818e-05 -28483167004.4 +UniRef50_UPI000476FBDE hypothetical protein 9.66007984378e-08 2.81550733155e-08 -27632379.1554 +UniRef50_Q5HL84 Gamma glutamyltranspeptidase 9.74316376915e-05 4.47760741072e-05 -21257697175.4 +UniRef50_UPI00041118D3 PTS beta glucoside transporter subunit IIABC 3.12226329252e-08 1.10058678006e-07 31827078.8262 +UniRef50_Q58991 Homoisocitrate dehydrogenase 1.16354700669e-07 1.97641285663e-07 32816391.8606 +UniRef50_D7I1Z9 Dienelactone hydrolase 3.98462105027e-06 6.19258482255e-05 23391584429.4 +UniRef50_UPI0003B77390 DNA directed RNA polymerase subunit alpha 3.85468930198e-07 2.88554297813e-07 -39125626.3701 +UniRef50_F3ZLH7 1.13699202626e-05 2.24878562908e-06 -3682313980.46 +UniRef50_Q8U8I2 Serine 3 dehydrogenase 1.53880232243e-05 1.3717453524e-05 -674429488.207 +UniRef50_D6B8D3 Primosome assembly protein PriA 7.26432665917e-08 7.49686775877e-06 2997250532.97 +UniRef50_Q03IX4 Protein translocase subunit SecA 5.99226893105e-05 1.21529080841e-05 -19285246882.2 +UniRef50_H8GTG2 Putative serine protease 1.48616531043e-06 9.58398244057e-06 3269188146.83 +UniRef50_H9UPI6 Porin thermoregulatory protein envY 2.65864360815e-06 4.67067784397e-07 -884766053.707 +UniRef50_UPI00041B2F47 hypothetical protein 9.39336506483e-08 1.55887241844e-07 25011425.0218 +UniRef50_B9KJW8 Methyl accepting chemotaxis sensory transducer 1.75365505308e-05 2.58203385907e-05 3344266893.29 +UniRef50_J0MRE5 0.000528191405412 9.98150389135e-05 -1.72940795925e+11 +UniRef50_UPI000373B743 hypothetical protein 1.57819486834e-07 7.41505037315e-08 -33778195.2124 +UniRef50_A6LQ39 2.84895085921e-06 2.52767508006e-06 -129702974.54 +UniRef50_UPI00037EEBFC hypothetical protein 1.18742615807e-07 1.89315876876e-07 28491291.5249 +UniRef50_A6LXC6 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 5.083513987e-06 1.68124529959e-05 4735116608.16 +UniRef50_T1ZMP3 Competence protein 1.0931122354e-07 5.08414499362e-07 161122889.997 +UniRef50_Q3JTH0 1.33643758423e-07 1.18125161829e-06 422932148.624 +UniRef50_D2NF85 1.43679791753e-06 6.40026319106e-07 -321666471.771 +UniRef50_B1ZB21 ABC transporter related 7.84396451984e-05 2.12351892044e-05 -23094140862.4 +UniRef50_E6S7U2 Molybdopterin dehydrogenase FAD binding protein 1.18955668759e-06 6.79574812345e-05 26955030474.2 +UniRef50_UPI00046CF8F3 hypothetical protein, partial 1.7928416197e-06 8.24921492373e-07 -390761233.118 +UniRef50_G6CYT2 Arrestin domain containing 4 2.2220380984e-07 2.91265614185e-07 27881097.8977 +UniRef50_Q2S026 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.59818701289e-07 5.08153725614e-08 -44005981.4288 +UniRef50_G2SQT2 ABC transporter, ATP binding protein 0.000128933254692 3.01955959575e-05 -39861604478.4 +UniRef50_B3DTC2 Phosphoglucosamine mutase 1.7371648652e-06 9.35113035538e-05 37050345983.9 +UniRef50_I6TYE3 Transcription regulator 2.76949827888e-05 5.83373649418e-06 -8825653396.79 +UniRef50_P0AAA0 Putative L,D transpeptidase YafK 6.93298412826e-05 1.64678958507e-05 -21341016059.9 +UniRef50_Q8L847 Biotin synthase Bio B 9.23647046514e-08 2.51091183984e-07 64079827.4997 +UniRef50_F5M104 ABC transporter related protein 7.07340993622e-06 3.20415955001e-06 -1562063861.95 +UniRef50_C5MZ72 2.16946400912e-05 5.04814880674e-06 -6720392806.97 +UniRef50_UPI0003C75BDD hypothetical protein 4.14819767969e-06 3.67382518893e-06 -191509995.725 +UniRef50_Q8CMX3 Phosphoadenosine phosphosulfate reductase 7.93024604776e-05 9.60322523248e-05 6754022266.35 +UniRef50_M9S1K0 Type III secretion protein PcrV 3.05331686769e-06 3.61612292071e-06 227211710.011 +UniRef50_UPI000372BC15 hypothetical protein 6.28449967867e-08 1.09305883712e-07 18756830.1909 +UniRef50_D4MD52 ABC type proline glycine betaine transport system, permease component 3.00871855084e-05 1.59066728045e-05 -5724846993.02 +UniRef50_C6XQD6 Polygalacturonase 7.25839627125e-08 2.95404007112e-05 11896519232.1 +UniRef50_Q52666 Glutamate glutamine aspartate asparagine transport ATP binding protein BztD 0.000165164957471 5.62201927878e-05 -43982338405.1 +UniRef50_UPI000465B0D7 hypothetical protein 1.30206382325e-06 5.50820824129e-07 -303286017.533 +UniRef50_F6K0S0 Silk fibroin 2.67337493688e-07 1.07406211578e-07 -64566221.1653 +UniRef50_H2WUA1 1.00004210264e-08 9.78907534882e-08 35482405.7505 +UniRef50_Q1RFT2 3.43169080774e-06 5.53466328478e-05 20958699169.6 +UniRef50_R1H4G9 Immunogenic protein 5.26631450205e-07 1.02444919458e-07 -171249307.817 +UniRef50_UPI00036D594A hypothetical protein 1.23420876788e-07 4.67862080669e-06 1838990110.29 +UniRef50_UPI0003C19FB7 PREDICTED 1.23634289964e-07 1.99667556879e-07 30695562.8867 +UniRef50_UPI00035D526E hypothetical protein 3.6162929496e-06 1.01203590973e-06 -1051370524.82 +UniRef50_UPI00046A043A hypothetical protein 2.47501074101e-05 4.97724784029e-06 -7982546048.6 +UniRef50_R4XQ21 Phage minor tail protein 4.89535144044e-06 2.00817889419e-05 6130951177.9 +UniRef50_Q017S2 Probable membrane protein YCR013c yeast 1.07573079025e-06 1.73284562526e-06 265285322.599 +UniRef50_B5XJ20 Bifunctional purine biosynthesis protein PurH 2.57953270843e-06 1.82458371159e-06 -304782174.29 +UniRef50_P56117 1.60024982324e-06 3.53860842852e-05 13639755971.1 +UniRef50_UPI0002B49AD0 PREDICTED 2.11853219787e-07 1.94239349735e-07 -7110935.48648 +UniRef50_A6LTX3 6.53341134548e-06 3.41406595601e-06 -1259318012.4 +UniRef50_UPI00046A5CCB PA phosphatase 8.12053070035e-07 3.74352975807e-07 -176704899.224 +UniRef50_Q3IW22 L alanine exporter AlaE 9.85628140097e-06 4.36428628368e-06 -2217185823.21 +UniRef50_F9Z196 Oligopeptide binding protein OppA 6.80154934868e-07 3.8254108771e-05 15169066247.9 +UniRef50_O83940 Ribosomal RNA small subunit methyltransferase I 9.18041392036e-08 2.92724300042e-07 81113934.4979 +UniRef50_UPI0002628324 arginine ABC transporter ATP binding protein 1.57884942429e-06 5.32265602563e-07 -422518731.86 +UniRef50_D5APQ0 0.000108600032869 5.34544925084e-05 -22262931355.5 +UniRef50_Q4EQ49 8.76509573523e-06 2.4182256549e-06 -2562309336.28 +UniRef50_A8Z3H2 TetR family transcriptional regulator 0.000122563423778 3.49498374392e-05 -35370679944.6 +UniRef50_Q5M103 ATP synthase epsilon chain 3.01885716408e-05 3.64148684768e-05 2513632437.95 +UniRef50_Q88LV4 GTP cyclohydrolase 1 1 1.31743092193e-06 1.15666046802e-06 -64905005.1188 +UniRef50_UPI0003775137 hypothetical protein 6.73748840301e-08 2.49797678211e-07 73646320.5903 +UniRef50_Q8NM41 Peptide deformylase 2 1.11834005135e-07 5.74261421105e-07 186687622.45 +UniRef50_Q99SN7 8.60900896339e-05 3.90416651894e-05 -18994026297.3 +UniRef50_G0DRT9 Regulatory protein 1.09960114367e-07 4.30559168726e-05 17337809749.4 +UniRef50_Q8X7W7 Catecholate siderophore receptor Fiu 3.4462689335e-05 7.78999423286e-06 -10768094323.5 +UniRef50_S6BDB2 Methionine tRNA ligase 6.36862377881e-05 4.24605634746e-05 -8569065188.67 +UniRef50_G0FNR8 2.03176833565e-06 5.47233998387e-07 -599324729.237 +UniRef50_J5L0G3 Chaperone protein HscA 1.13981592443e-06 1.24831197151e-06 43801185.6024 +UniRef50_B9EUP4 2.08735671268e-07 6.26459478293e-08 -58978214.0748 +UniRef50_Q21WE1 Alcohol dehydrogenase, zinc binding 6.67010080329e-06 2.75139787458e-06 -1582028460.21 +UniRef50_U6IF34 Heat shock protein 71 kDa protein 1.43780746859e-07 4.99161521535e-08 -37894288.7307 +UniRef50_Q6LV34 RNA polymerase associated protein RapA 2.26172063096e-05 9.12572316718e-06 -5446677303.7 +UniRef50_H8GTZ6 9.41659307779e-07 0.000221552131783 89063154933.1 +UniRef50_UPI0003C7D07B hypothetical protein 1.62249896705e-06 9.17207710547e-07 -284734735.147 +UniRef50_B6EJ93 Imidazole glycerol phosphate synthase subunit HisF 8.21793480819e-06 7.83774071396e-05 28324239933.7 +UniRef50_Q8UBB7 sn glycerol 3 phosphate import ATP binding protein UgpC 2 1.06545254932e-06 6.15781519342e-07 -181537712.886 +UniRef50_A8F986 50S ribosomal protein L4 5.36709936758e-06 3.44058297312e-06 -777758309.458 +UniRef50_UPI0003B645FE protein pucC, partial 1.51247293605e-06 7.58006029206e-07 -304587548.643 +UniRef50_C8X890 Two component transcriptional regulator, LuxR family 6.70093471334e-06 5.66498681681e-05 20164997378.0 +UniRef50_K0ECU0 CreA protein 1.12903302432e-06 5.83457074415e-07 -220255705.946 +UniRef50_UPI00040FE389 O sialoglycoprotein endopeptidase 4.66671804002e-08 2.17386421514e-07 68921452.5984 +UniRef50_R5FR54 1.37261117605e-07 5.24577168719e-05 21122410032.2 +UniRef50_UPI00036C9093 hypothetical protein 9.7154259184e-08 9.44246944398e-08 -1101958.78276 +UniRef50_O13774 GTP cyclohydrolase 1 4.46575438327e-07 5.61799705961e-07 46517450.8046 +UniRef50_G0DV83 HAD hydrolase, family IIB 7.83264504791e-06 2.94531019607e-05 8728443768.54 +UniRef50_B0TH67 tRNA ) methyltransferase 0.000175094261163 6.0852830873e-05 -46120667308.1 +UniRef50_D2TMN6 Proofreading thioesterase EntH 6.57434899225e-05 4.2903153298e-06 -24809400698.3 +UniRef50_B2V2W5 Sensor histidine kinase 1.13950976906e-06 6.30027398056e-06 2083463841.88 +UniRef50_UPI0003671A9B hypothetical protein 2.12796006683e-06 1.19542118496e-06 -376477390.15 +UniRef50_UPI0004719C11 DNA topoisomerase III, partial 4.02274700642e-08 1.29115194069e-07 35885064.9558 +UniRef50_Q7CQ37 Flagellar regulator flk 2.14833044401e-05 1.06172128245e-05 -4386774527.16 +UniRef50_O84867 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 7.51538399953e-07 4.6207042454e-07 -116861773.846 +UniRef50_Q882G0 3,4 dihydroxy 2 butanone 4 phosphate synthase 2.68390073234e-06 9.39833132412e-05 36858693199.6 +UniRef50_Q8RDK3 2 isopropylmalate synthase 1 9.83741549096e-08 6.53262219278e-08 -13341856.0885 +UniRef50_B2RIJ1 GTP cyclohydrolase 1 5.62486140959e-07 7.56482212017e-07 78318594.4856 +UniRef50_UPI0002376FCC putative D amino acid dehydrogenase small subunit, partial 4.78591065771e-07 3.22706550321e-07 -62932491.8053 +UniRef50_Q8DWE5 Tagatose 1,6 diphosphate aldolase 2 0.000275943336869 8.89453172035e-05 -75493395262.9 +UniRef50_N0A6X1 Pirin family protein 5.64329380165e-08 1.04939788473e-07 19582810.7753 +UniRef50_D4H966 2.04104886097e-07 8.46495552049e-06 3335006773.14 +UniRef50_Q2NCT3 Peptide deformylase 2.96563645232e-07 4.49691802303e-07 61819716.1034 +UniRef50_G7M922 GAF modulated sigma54 specific transcriptional regulator, Fis family 4.28724063848e-06 2.10461111834e-05 6765761693.44 +UniRef50_D4DVN6 3.91690230953e-08 5.26783747844e-06 2110877618.4 +UniRef50_D9RE87 Superantigen like protein 0.000134769906841 1.16587542225e-05 -49701483056.0 +UniRef50_UPI0003781EF8 hypothetical protein 8.94347122921e-07 5.32774660994e-07 -145971239.873 +UniRef50_UPI000467DD39 hypothetical protein 8.31727033985e-06 2.12550177213e-06 -2499692952.33 +UniRef50_U5MQB3 BglP 3.73830511131e-06 1.07548828906e-05 2832678552.59 +UniRef50_W7YQJ5 L serine dehydratase 1.57695371932e-07 3.17883450827e-07 64669893.1787 +UniRef50_Q3J213 Histone like nucleoid structuring protein H NS 2.630737868e-05 0.000121548003248 38449808872.0 +UniRef50_UPI0002481AA6 type II secretion system protein E 5.09082006052e-08 7.09979625838e-08 8110483.43986 +UniRef50_UPI0002C431F7 PREDICTED 6.72885756713e-08 6.86282515649e-08 540843.597918 +UniRef50_Q9RZQ5 3.79499055155e-07 0.000172530032125 69499282725.0 +UniRef50_UPI00036E554C hypothetical protein 7.06318469579e-08 6.62054898533e-08 -1786974.68064 +UniRef50_Q9RZQ2 6.45391313574e-07 0.000325822703044 1.3127807112e+11 +UniRef50_D8JIG9 TetR family regulatory protein 8.00297196335e-06 0.000108055842713 40392571708.6 +UniRef50_A3PMN1 7.60536301962e-05 1.5746592138e-05 -24346691314.7 +UniRef50_UPI00041FCE8E 16S rRNA methyltransferase 2.04454325707e-07 2.3697005486e-07 13126998.8719 +UniRef50_U3AG04 2.43051842678e-06 2.9903588716e-07 -860505657.477 +UniRef50_Q4FQ57 tRNA dihydrouridine synthase 3.0916337053e-06 0.000107160553481 42013899982.8 +UniRef50_F6B6L3 Biotin and thiamin synthesis associated 1.81281340016e-06 4.38811635572e-05 16983509195.1 +UniRef50_W8T306 2.10103518845e-06 3.20415955001e-06 445344841.62 +UniRef50_UPI0000E48B78 8.04452697527e-07 6.95406902601e-07 -44023125.554 +UniRef50_G7U5D1 4.49388081972e-06 1.29916046564e-05 3430635391.67 +UniRef50_UPI0003B78451 Fur family transcriptional regulator 2.42643321264e-07 5.45372352293e-07 122215424.729 +UniRef50_B7VBB6 8.9678458948e-06 6.73163926063e-06 -902784059.556 +UniRef50_Q9XAQ2 Peptide deformylase 3 2.46144694101e-07 4.26219599765e-07 72698449.1841 +UniRef50_UPI0003F78D52 dihydrolipoamide dehydrogenase 4.4091165399e-07 5.05302669038e-08 -157601756.485 +UniRef50_UPI000470E763 50S ribosomal protein L20 4.16856163057e-07 1.11221826355e-06 280726213.022 +UniRef50_P76097 3.56301645962e-05 1.06325344239e-05 -10091850056.0 +UniRef50_P76091 2.01711653875e-05 5.09967374951e-06 -6084546122.26 +UniRef50_P76092 2.35729780894e-05 7.8029831934e-06 -6366540459.11 +UniRef50_P76093 2.5000717507e-05 1.71674625812e-05 -3162381138.39 +UniRef50_UPI0004726B91 succinylglutamate desuccinylase 1.72806796874e-06 7.40117175019e-07 -398847858.945 +UniRef50_Q65WJ9 2,3 diketo L gulonate reductase 3.35716395959e-05 8.173320351e-06 -10253613151.6 +UniRef50_P37079 Sorbitol 6 phosphate 2 dehydrogenase 7.0650700495e-05 2.97491079493e-05 -16512474829.7 +UniRef50_M4VE07 4.09534680746e-06 1.11620052693e-06 -1202717911.69 +UniRef50_Q4L9T6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000138370971311 1.56073432148e-05 -49561183141.5 +UniRef50_G0W8W8 3.2724375537e-07 2.37833821672e-07 -36095887.4171 +UniRef50_H8E1H7 Rhamnan synthesis F 3.62110766339e-08 5.42965374139e-08 7301322.45045 +UniRef50_K8BHL7 1.19502669921e-06 1.26482326098e-06 28177728.4867 +UniRef50_A0LK48 Cytidylate kinase 1.7875011221e-07 1.26760826466e-07 -20988712.6351 +UniRef50_A3PN16 malyl CoA thioesterase 7.37608676664e-05 7.1144095129e-05 -1056423184.76 +UniRef50_W5XB80 7.88820605388e-08 1.05544241583e-07 10763849.6693 +UniRef50_I7EVV9 Protease DegQ 4.38899668242e-05 1.71705793376e-05 -10786944612.1 +UniRef50_UPI0003C16653 PREDICTED 4.4709067907e-07 2.38428490702e-07 -84239486.0172 +UniRef50_UPI0003748772 hypothetical protein 3.10366119822e-08 7.90650956488e-08 19389688.232 +UniRef50_N2KX33 Permease family protein 4.1119048066e-05 5.01954739708e-06 -14573811410.7 +UniRef50_UPI000422BE1C hypothetical protein 6.96464088406e-07 1.2196799528e-07 -231931122.655 +UniRef50_A3PIC8 GumN family protein 2.23667336386e-05 4.74139974964e-06 -7115563578.16 +UniRef50_UPI000476E7CA hypothetical protein, partial 3.24332460515e-07 3.60332619486e-06 1323770008.33 +UniRef50_Q45388 Protein tex 2.10180891784e-05 6.73021747364e-05 18685453309.4 +UniRef50_A3PKD8 Flagellar basal body associated protein FliL 6.54599980668e-06 7.63380190275e-06 439159055.016 +UniRef50_UPI0004631839 hypothetical protein 2.03760254449e-07 1.08845823106e-06 357163429.623 +UniRef50_P0AEU2 Histidine binding periplasmic protein 3.28814752836e-05 3.69916540948e-06 -11781256603.4 +UniRef50_D2N8C9 Membrane protein, putative 4.13771502081e-05 4.38838993689e-06 -14932816424.6 +UniRef50_W0RB11 2.89708651689e-08 2.21091908687e-06 880879272.616 +UniRef50_A3PRR5 1.11785653596e-05 2.0319956779e-06 -3692582421.53 +UniRef50_A4WV09 Heme NO binding domain protein 4.28101146838e-05 9.50314467692e-06 -13446432514.3 +UniRef50_Q8CN58 Beta lactamase 9.74171953173e-05 1.55538470796e-05 -33049238259.8 +UniRef50_A0LG38 Non canonical purine NTP pyrophosphatase 5.85935234284e-08 3.1034087394e-07 101633494.689 +UniRef50_E4BAZ7 1.67275918245e-06 3.19024270853e-05 12204087892.1 +UniRef50_M4R8Z6 Allophanate hydrolase subunit 1 and 2 1.06035390125e-06 9.44855307062e-05 37716890332.0 +UniRef50_B2A6S5 5.48627576404e-08 5.27905288201e-06 2109069661.23 +UniRef50_A6LQH2 ATP synthase subunit b 1.76946557275e-05 7.61289914267e-06 -4070128850.35 +UniRef50_A0A059IQJ7 1.71804120686e-07 2.2215893237e-07 20328855.3999 +UniRef50_UPI00047A44A8 hypothetical protein 7.61422876536e-08 8.04535933483e-08 1740527.01462 +UniRef50_M1MIH5 Methionine tRNA ligase MetG 3.29270528303e-06 7.16797792498e-06 1564495120.5 +UniRef50_Q2J3G4 ABC transporter related 1.64841043168e-06 2.57918519823e-06 375765195.147 +UniRef50_D5AR59 Long chain fatty acid CoA ligase 7.39043140798e-05 2.69263623804e-05 -18965575585.3 +UniRef50_M1MSQ9 Glycosyltransferase 1.26673150626e-06 6.13973891223e-06 1967292888.32 +UniRef50_U5MP56 ATP dependent DNA helicase PcrA 2.64406580561e-06 7.61487357835e-06 2006776096.53 +UniRef50_UPI0000557635 COG1494 2.31845659421e-06 6.4397287639e-07 -676009625.11 +UniRef50_B4U3D2 Glycerol 3 phosphate acyltransferase 7.10924348572e-05 4.38501291583e-05 -10998053111.3 +UniRef50_Q47151 Probable endopeptidase YafL 4.01376420638e-05 1.47455324372e-05 -10251106252.5 +UniRef50_P34918 Glyceraldehyde 3 phosphate dehydrogenase 3 0.000113657976531 3.2136113748e-05 -32911376391.2 +UniRef50_A9V0F3 Predicted protein 5.67595553148e-08 3.21047883019e-08 -9953431.99112 +UniRef50_UPI00026C7458 uridylate kinase 1.18602595647e-07 3.2347256221e-06 1258017104.91 +UniRef50_UPI000466CCAB hypothetical protein 7.58130286368e-07 5.42555512351e-08 -284162868.088 +UniRef50_G4SV55 1.62787776744e-06 1.7011488705e-06 29580443.4429 +UniRef50_D0CPI8 Membrane bound lytic murein transglycosylase A 1.24726858763e-06 4.67247053037e-07 -314904265.456 +UniRef50_Q9HTX6 Glycine cleavage system H protein 2 2.65212638537e-06 0.000121478660649 47971730047.9 +UniRef50_UPI0002FE2DAD hypothetical protein 9.84303334315e-08 1.41506220113e-05 5673042220.15 +UniRef50_A5V6A9 1 deoxy D xylulose 5 phosphate synthase 3.22264409689e-05 7.28099062133e-06 -10070784420.4 +UniRef50_P37051 Formyltetrahydrofolate deformylase 2.969319614e-05 1.94674785454e-05 -4128247676.61 +UniRef50_M1MN84 Transcriptional regulator, TetR family 6.9714595573e-06 4.48209912357e-05 15280320404.6 +UniRef50_UPI0003B5D266 RNA polymerase sigma70 factor 5.2779075524e-08 6.56252586194e-08 5186161.75601 +UniRef50_B2UC97 1.49952456488e-07 3.35773187243e-07 75018109.2826 +UniRef50_Q89AM1 Enoyl [acyl carrier protein] reductase [NADH] FabI 7.7142035136e-08 3.89567304826e-07 126129915.263 +UniRef50_UPI000379D6F2 hypothetical protein 8.01371242936e-08 9.34545198818e-08 5376396.02178 +UniRef50_D6SDD7 3.14858377232e-05 8.89353538793e-06 -9120789691.49 +UniRef50_A6M2T4 Transcriptional regulator, RpiR family 9.64709876066e-06 1.89169310385e-05 3742345044.2 +UniRef50_P0C0G7 Glyceraldehyde 3 phosphate dehydrogenase 0.000312091721497 0.000262510387645 -20016592907.4 +UniRef50_U5MXQ9 Neutral endopeptidase PepO 1.84277992011e-06 1.42288521904e-05 5000409369.72 +UniRef50_Q1YYL9 8.0179446909e-07 2.38822870829e-06 640462970.102 +UniRef50_UPI0003DE8BE2 PREDICTED 9.03868372557e-08 2.64923870609e-07 70462742.1749 +UniRef50_B2TKY4 2.98015254361e-06 3.24529316528e-05 11898522598.1 +UniRef50_V4KU43 1.52960440491e-07 6.4422989229e-08 -35743655.5512 +UniRef50_Q2S8X6 1.03273619944e-05 7.91504684792e-06 -973881227.07 +UniRef50_Q9RWK1 3.31128060398e-06 0.000589119176438 2.36497836219e+11 +UniRef50_G7U9N4 Sugar kinase 2.02224636884e-06 3.71618222463e-05 14186277992.8 +UniRef50_P0AAF8 Arginine transport ATP binding protein ArtP 1.12252473688e-05 1.42918795512e-05 1238037043.84 +UniRef50_Q5HNW5 Protein GrpE 0.000217446947066 4.5715881213e-05 -69329938662.0 +UniRef50_D9RBB0 ABC 2 type transport system permease protein 0.000152254918157 3.23793116598e-05 -48395253382.0 +UniRef50_B2IX22 Nucleoside diphosphate kinase 2.96625841749e-07 1.22981531816e-06 376740043.15 +UniRef50_P51599 GTP cyclohydrolase 1 1.78342529037e-07 2.65029180842e-07 34996465.0985 +UniRef50_P39211 Xylulose kinase 0.000121707827446 4.77951394816e-05 -29839459141.9 +UniRef50_Q8TUT7 Carbamoyl phosphate synthase large chain, C terminal section 2.19675455646e-08 1.18542587344e-07 38988529.4754 +UniRef50_P42455 2 isopropylmalate synthase 2.33778443676e-06 7.55147484335e-05 29542438347.8 +UniRef50_Z5QLE0 1.95801475224e-06 7.64499399824e-07 -481836793.852 +UniRef50_Q7UUJ7 Arginine biosynthesis bifunctional protein ArgJ 7.61013046793e-08 1.56223566404e-07 32346340.269 +UniRef50_P37640 Putative HTH type transcriptional regulator YhjB 1.68348343601e-05 1.12215745199e-05 -2266141879.93 +UniRef50_Q6N6M8 Putative 3 methyladenine DNA glycosylase 3.46496940633e-07 3.03142830297e-07 -17502586.3574 +UniRef50_Q9HWF5 Protein translocase subunit SecY 0.000153597488857 2.8233898868e-05 -50610819662.8 +UniRef50_Q1H4S2 Transcriptional regulator, BolA protein family 3.47820639494e-07 1.01699846043e-06 270155298.047 +UniRef50_UPI00047D0941 ribonuclease J 4.41658138232e-07 7.60871799111e-07 128870472.089 +UniRef50_D6RK40 3.88803457436e-08 5.72259483041e-08 7406344.87953 +UniRef50_UPI00037D2EDA Fis family transcriptional regulator 2.85690616081e-07 6.85223115284e-07 161296172.743 +UniRef50_B7H290 Bacterial regulatory helix turn helix protein, AraC family protein 5.69942571355e-06 4.32311624254e-05 15152022676.8 +UniRef50_D9SLQ3 3.81211316936e-06 4.32041352107e-05 15903042692.5 +UniRef50_D1QZF9 1.99861059831e-05 9.6825149244e-06 -4159686149.68 +UniRef50_UPI0003773794 hypothetical protein, partial 7.11328550823e-08 1.0451608283e-07 13477218.7 +UniRef50_M2SBT2 2.34907269986e-07 2.41590832408e-07 2698236.1663 +UniRef50_W4SVI6 1.75669727904e-07 8.50826327346e-08 -36571121.9485 +UniRef50_T0U4L8 1.64197362179e-06 3.85445307448e-07 -507275899.835 +UniRef50_UPI00037CC475 RNaseH ribonuclease 1.21193660833e-07 2.00647528096e-07 32076501.2227 +UniRef50_J0G9L6 0.000237918001072 4.64661078999e-05 -77291478652.5 +UniRef50_R5WWI1 Sugar efflux transporter 2.49865680095e-06 6.42196130241e-06 1583886171.6 +UniRef50_Q8CSQ8 Two component sensor histidine kinase 7.90436750321e-05 2.18217187302e-05 -23101205951.4 +UniRef50_UPI00034B82F7 hypothetical protein 1.48941021585e-07 2.05197166506e-07 22711296.0451 +UniRef50_Q3STT6 Ribosomal RNA small subunit methyltransferase H 6.03893489987e-08 9.82304937404e-08 15276934.4953 +UniRef50_UPI00016C4B38 hypothetical protein 4.34435018842e-08 1.3459701863e-06 525846006.3 +UniRef50_M1XJ95 6.2011904865e-06 2.45638279711e-05 7413222087.43 +UniRef50_S1SS99 1.86469437616e-06 2.83166868808e-06 390379395.831 +UniRef50_Q9MB35 Peroxiredoxin Q, chloroplastic 1.26087283836e-07 2.89937078423e-06 1119608581.12 +UniRef50_Q9RU52 Propionyl CoA carboxylase, beta subunit, putative 2.4566050805e-06 0.000375754021169 1.50704747749e+11 +UniRef50_A6LSX6 Metal dependent phosphohydrolase 2.76095179701e-06 1.10832621713e-05 3359818824.33 +UniRef50_UPI000380524A hypothetical protein 9.07208606024e-08 8.46940201252e-07 305295027.675 +UniRef50_A5UNL2 Adhesin like protein 2.69941434356e-05 3.93507004076e-06 -9309230896.13 +UniRef50_UPI00037DF1FA hypothetical protein, partial 2.35975321104e-07 3.81466499987e-07 58736574.2926 +UniRef50_P45475 2.82392780224e-05 4.9732744901e-06 -9392771131.96 +UniRef50_A3PQA6 Transcriptional activator, TenA family 3.62950200244e-05 1.25414943877e-05 -9589589788.07 +UniRef50_Q1QVP5 Phosphoribosylformylglycinamidine cyclo ligase 1.35592317297e-06 2.0589203825e-06 283808600.233 +UniRef50_M8BCA5 4.3274159533e-07 5.21507714433e-07 35835971.5647 +UniRef50_UPI0003699F3D hypothetical protein 2.54326332754e-06 5.41322522287e-07 -808208069.656 +UniRef50_P44990 Putative L ribulose 5 phosphate 3 epimerase SgbU 5.02164878361e-05 4.8863558954e-05 -546193992.008 +UniRef50_U3NFX9 ABC transporter ATP binding protein 0.000114803453649 3.48412896761e-05 -32281706842.0 +UniRef50_UPI00035F71CA hypothetical protein, partial 1.20677405022e-06 1.02916041577e-06 -71704803.7919 +UniRef50_I5C4V6 4.76553083995e-07 3.63396328313e-07 -45682770.8584 +UniRef50_C6DH09 Dipeptide and tripeptide permease A 3.80633421698e-05 1.67401192526e-05 -8608446757.04 +UniRef50_K6WI65 2.42416031627e-07 7.89125253998e-07 220713221.948 +UniRef50_Q6FWS8 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.44177514164e-07 3.74429258416e-07 52584227.5232 +UniRef50_P39361 Putative sgc region transcriptional regulator 3.10448986857e-05 7.30729744925e-06 -9583160912.26 +UniRef50_UPI00046EB60D FAD dependent oxidoreductase 3.76532761913e-07 6.45134814142e-08 -125966012.445 +UniRef50_A2C638 Holliday junction ATP dependent DNA helicase RuvB 1.34899598818e-07 1.5472354052e-07 8003168.53222 +UniRef50_I0C1C0 0.00013969418527 3.21716328876e-05 -43408173846.7 +UniRef50_UPI00041A4D89 ABC transporter 2.14139228768e-08 7.48307264848e-08 21565019.1144 +UniRef50_C6SPV4 5.51911855697e-05 1.13055741727e-05 -17717159858.0 +UniRef50_A9M100 Inner membrane protein 9.61339530144e-07 4.04695253804e-05 15949939447.7 +UniRef50_Q8DXA0 Membrane protein, putative 1.11352799069e-06 4.23394934474e-06 1259752392.51 +UniRef50_I6TR24 Transcriptional regulator 4.02767363987e-05 1.40129314112e-05 -10603020366.6 +UniRef50_X6L6D5 4.67357646695e-06 5.79202984179e-07 -1652948818.61 +UniRef50_N6V1G3 2.71450233574e-06 8.4644289495e-07 -754158519.914 +UniRef50_P18005 UPF0380 protein YubP 5.50028846938e-07 1.35426340338e-07 -167380119.659 +UniRef50_P96704 1.07565091756e-05 1.20742214588e-05 531976618.876 +UniRef50_K7RW82 Inositol monophosphatase family protein 7.5196865095e-06 5.37599664904e-05 18667768460.3 +UniRef50_D5AQI9 RNA polymerase sigma factor RpoD 9.17695135375e-05 1.66812086099e-05 -30314070136.4 +UniRef50_UPI000476E737 16S rRNA methyltransferase 1.77588786757e-07 4.03341764505e-07 91139247.4174 +UniRef50_A4WNN4 Succinate dehydrogenase subunit D 6.12085748838e-05 4.7889195437e-06 -22777307207.8 +UniRef50_P18190 Uptake hydrogenase small subunit 2.2767267507e-06 5.20272514985e-07 -709102129.077 +UniRef50_K2DSW0 4.84310846305e-07 2.41382637143e-06 778969095.313 +UniRef50_G1XZ93 5.43026453118e-07 2.26977700987e-07 -127592759.59 +UniRef50_Q8S4Y1 Acetyl CoA acetyltransferase, cytosolic 1 6.08264120912e-08 6.04291516233e-08 -160378.925825 +UniRef50_G7LY81 Multi sensor signal transduction histidine kinase 1.47476250443e-06 9.41798867973e-06 3206777881.31 +UniRef50_Q7NF44 Glutathione synthetase 5.16051069709e-08 9.9042308259e-08 19150980.2799 +UniRef50_A0M0D8 30S ribosomal protein S18 3.54273107629e-05 1.51237753588e-05 -8196786395.03 +UniRef50_P11290 5.65927500567e-06 1.74916113641e-06 -1578560951.51 +UniRef50_I6U2C8 Transcriptional regulator 3.00806379549e-05 5.12603096127e-05 8550493352.05 +UniRef50_A6V7V9 1.3383957765e-05 9.43149365607e-08 -5365191892.08 +UniRef50_A3M2U1 Chromosome partition protein Smc 1.41191198509e-06 6.99114061376e-05 27654086372.7 +UniRef50_P39762 Aminopeptidase AmpS 1.20474251758e-06 1.52043786618e-05 5651824906.27 +UniRef50_Q6A6Z0 1.52949049345e-06 4.91401698154e-05 19221015491.0 +UniRef50_F5M502 2.34765907505e-05 1.15198789165e-05 -4827071292.74 +UniRef50_UPI000287F837 alpha beta hydrolase 7.78967760848e-07 2.64978040258e-07 -207503957.565 +UniRef50_F5M500 1.74749995948e-05 2.04622019741e-06 -6228787575.14 +UniRef50_UPI0003AD3586 hypothetical protein 9.80286148051e-08 1.02295035835e-07 1722406.52464 +UniRef50_G7U769 Translocase subunit 2.43016731023e-06 5.17288475424e-05 19902482172.6 +UniRef50_P37387 D xylose binding periplasmic protein 4.03690109778e-05 2.00895717825e-06 -15486424449.7 +UniRef50_W0YQG2 NADH dependent enoyl ACP reductase 3.2073309994e-07 1.09545252939e-06 312763740.545 +UniRef50_B8DVQ6 30S ribosomal protein S16 1.74224302547e-05 1.2478170642e-05 -1996058278.54 +UniRef50_UPI0003B54983 heme ABC transporter ATP binding protein 1.0908174305e-07 7.40248864949e-07 254809912.402 +UniRef50_G8V7W6 Myo inositol catabolism protein 2.94144926378e-06 8.14745696907e-05 31704784426.1 +UniRef50_R8ZC75 Sensor response regulator hybrid 9.53766746351e-07 4.57382609982e-07 -200396367.171 +UniRef50_UPI000237926B polar amino acid ABC transporter, inner membrane subunit 6.25109496583e-08 1.12882999088e-07 20335814.4893 +UniRef50_Q9ZMX5 Threonine synthase 8.78555443445e-07 4.8185830238e-05 19098527360.1 +UniRef50_E4ZD88 CobW related protein 4.53238579631e-06 1.84058102211e-05 5600871686.35 +UniRef50_Q8DVW8 Ribonuclease M5 6.14246376994e-05 2.80927412234e-05 -13456495635.7 +UniRef50_A0A023RUP9 4.60348766892e-06 2.45216220496e-05 8041195272.48 +UniRef50_A4YJX9 Argininosuccinate synthase 2.28043905765e-07 4.5133528938e-07 90145471.6588 +UniRef50_B8A191 1.39101390792e-07 2.54200530281e-07 46466935.037 +UniRef50_E3I166 Response regulator receiver protein 0.000128393501946 2.65977656136e-05 -41096187931.4 +UniRef50_B2S5M8 Glutamate tRNA ligase 1 5.51398269547e-05 1.80957186633e-05 -14955161099.6 +UniRef50_P68398 tRNA specific adenosine deaminase 2.26039514279e-06 3.63257854014e-05 13752616076.7 +UniRef50_D4HA24 1.10105365464e-07 3.90960683218e-05 15739111657.0 +UniRef50_P22610 Type 4 prepilin like proteins leader peptide processing enzyme 4.73106579946e-06 2.4982807633e-06 -901402718.451 +UniRef50_UPI00031B36EE hypothetical protein 4.18543658605e-08 7.72020159125e-08 14270280.0904 +UniRef50_A7IKH6 Chitin deacetylase 7.05397979079e-05 8.96868348018e-06 -24857014457.0 +UniRef50_W1YCR6 DNA polymerase II protein 1.00134637373e-07 3.37174067088e-06 1320787502.85 +UniRef50_R4UR16 Cobalamin synthesis protein P47K 5.19168052679e-08 6.77820634222e-08 6404999.4055 +UniRef50_J3UP44 8.57094071114e-05 1.67522890869e-05 -27838834745.5 +UniRef50_P48925 NADH ubiquinone oxidoreductase chain 6 1.10682708458e-06 1.44067371866e-07 -388677910.413 +UniRef50_UPI0004727F6C major facilitator transporter 1.77570623264e-07 1.15141893517e-07 -25203244.2855 +UniRef50_G7U931 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 5.17764178998e-06 4.80363774912e-05 17302597538.4 +UniRef50_Q67QM2 Oligopeptide ABC transporter permease protein 4.25251298767e-06 1.13366620795e-05 2859957920.66 +UniRef50_F9YZR2 3.98783766156e-06 1.75693348648e-05 5483017084.64 +UniRef50_E8ZNH1 Magnesium transporter 3.60286142419e-06 2.06637851517e-05 6887704269.87 +UniRef50_UPI0004707272 peptide ABC transporter substrate binding protein 6.20658054929e-07 4.88667733008e-08 -230839157.061 +UniRef50_A4VMC4 Isocitrate dehydrogenase kinase phosphatase 7.20082109218e-06 7.33333500788e-06 53497493.8967 +UniRef50_F9YZR4 3.594538252e-06 6.15243135819e-06 1032652835.85 +UniRef50_Q81G03 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.61253024194e-07 8.07831529704e-08 -32486674.4893 +UniRef50_UPI000185F617 GTP binding protein lepA, putative 2.12087921474e-07 1.27303855591e-07 -34228367.8145 +UniRef50_UPI00035F1A33 hypothetical protein 1.24949684171e-07 5.31051634378e-08 -29004514.6514 +UniRef50_UPI00038FD59B Leu Ile Val binding protein homolog 1 5.50769749069e-07 1.64773576958e-06 442858643.767 +UniRef50_Q796Y8 Putative peroxiredoxin YgaF 1.5503080275e-07 4.23870777005e-06 1648630504.05 +UniRef50_C0QKP4 Holliday junction ATP dependent DNA helicase RuvB 1.08471768462e-07 9.73932967508e-08 -4472514.97795 +UniRef50_Q1QUS4 Leucyl phenylalanyl tRNA protein transferase 1.86638178171e-05 2.3423010334e-07 -7440250716.53 +UniRef50_Q9FEA2 Glutamate tRNA ligase, chloroplastic mitochondrial 3.51923865272e-08 5.687859083e-08 8754986.79669 +UniRef50_R0D1R5 1.6114000738e-07 1.57092991778e-07 -1633829.86099 +UniRef50_UPI0003C19684 7.94027972473e-07 2.94397424455e-08 -308673651.015 +UniRef50_UPI00022B367A PREDICTED 3.97294913556e-07 3.67435541448e-07 -12054594.9357 +UniRef50_A3PJ06 5.11393577465e-06 1.01529936426e-05 2034329497.49 +UniRef50_Q89IA9 Blr5730 protein 1.47020726376e-05 3.78468844891e-07 -5782614621.5 +UniRef50_UPI000395A40D hemin ABC transporter ATP binding protein 9.04485964171e-08 1.824528903e-06 700069499.325 +UniRef50_UPI0004737F0F 50S ribosomal protein L4, partial 2.69624230048e-07 2.74116468261e-06 997791209.91 +UniRef50_P36645 Protein transport protein HofB homolog 3.87705485979e-05 8.9830085079e-06 -12025595468.6 +UniRef50_UPI00036C1E72 hypothetical protein 1.6034634256e-07 3.21817571849e-07 65187916.7388 +UniRef50_Q479B1 D amino acid dehydrogenase small subunit 3.27093417385e-07 2.13242302316e-07 -45963092.2636 +UniRef50_R5BVY8 Adenylylsulfate reductase 5.0326031403e-06 4.05983747733e-06 -392717435.318 +UniRef50_H8XBT8 Recombinase A 9.04781887215e-07 1.03567946051e-06 52844956.633 +UniRef50_A8LGN1 Thioesterase superfamily protein 2.55159319187e-07 7.28315827601e-07 191019088.73 +UniRef50_Q59643 Delta aminolevulinic acid dehydratase 0.000103385774077 2.60028995401e-05 -31240416045.2 +UniRef50_UPI000367F7CA hypothetical protein 1.03641467131e-05 8.05409195995e-06 -932597451.406 +UniRef50_Q5HNG0 D alanine aminotransferase 0.0001288906538 3.82529543471e-05 -36591551518.8 +UniRef50_Q2FZK3 Protein FmtA 0.000172714855141 5.01362938122e-05 -49486469416.6 +UniRef50_W0RCE0 CHAT domain protein 6.81742071424e-07 2.07274046011e-06 561563118.984 +UniRef50_C9XLF6 NUDIX family protein 2.2469404098e-06 8.47799153669e-06 2515551803.52 +UniRef50_K2FFD1 4.67746337876e-08 8.8691289884e-08 16922268.4413 +UniRef50_B4SL85 Phosphatidate cytidylyltransferase 1.20989098994e-06 4.36802156898e-06 1274976069.38 +UniRef50_B9DKR8 Mevalonate kinase 0.000235668667175 6.58274570528e-05 -68566980712.3 +UniRef50_F0YFQ2 Expressed protein 3.56460470221e-06 9.81636267971e-07 -1042776053.49 +UniRef50_UPI0003AD8CD3 PREDICTED 5.69224233244e-07 3.83696408609e-07 -74899859.4876 +UniRef50_C1KYW0 Peptide chain release factor 1 0.000103663097957 6.47748035097e-05 -15699681681.4 +UniRef50_A8EQZ6 Phosphate ABC transporter, periplasmic phosphate binding protein 5.17540087729e-08 8.86415627443e-08 14891958.1994 +UniRef50_UPI0004720687 hypothetical protein 7.73567847482e-07 2.32758917577e-06 627377480.217 +UniRef50_UPI000380DC03 hypothetical protein 8.88661127911e-08 2.17568984116e-07 51958928.5157 +UniRef50_Q989X4 Mlr6247 protein 0.000137836325786 2.06133706904e-05 -47324345459.7 +UniRef50_Q9RZ42 4.07163231412e-06 0.000589261063404 2.36248154413e+11 +UniRef50_UPI0003646AAD alkaline phosphatase 7.55662202152e-08 1.78873493124e-08 -23285667.9828 +UniRef50_Q9RZ45 1.12338638698e-06 0.00023027951335 92513140516.9 +UniRef50_Q9RZ47 4.22007264252e-06 0.000646013149426 2.59099740784e+11 +UniRef50_Q9RZ48 3.04850160433e-06 0.00105786969309 4.25844259116e+11 +UniRef50_Q6GIG7 Probable nitronate monooxygenase 0.00017993146217 1.50349809539e-05 -66570732974.3 +UniRef50_D5GYN2 Transcriptional regulator, repressor of sugar transport operon 5.57419310884e-05 3.3112742603e-05 -9135681082.93 +UniRef50_P63946 4 hydroxy tetrahydrodipicolinate synthase 1.41028389365e-06 6.59797121806e-05 26067470555.4 +UniRef50_D4GJL5 UPF0246 protein PANA_0658 3.26698352855e-07 4.33227891144e-07 43007281.8717 +UniRef50_A0A021ZQ34 ThiC associated domain protein 2.42191359894e-07 9.92110420654e-07 302751527.371 +UniRef50_I6T523 9.48815322503e-05 3.51216795452e-05 -24125785872.9 +UniRef50_UPI00037F2099 hypothetical protein 1.01779810248e-07 2.69185504356e-07 67583733.0103 +UniRef50_UPI0002559CF1 sulfate ABC transporter ATPase 8.22121588816e-07 5.07888145943e-07 -126859896.966 +UniRef50_UPI0004768E22 hypothetical protein 3.74800787946e-08 1.09851739266e-06 428353784.001 +UniRef50_Q9PQU6 Methionine tRNA ligase 1.12830008144e-07 1.84705436418e-07 29016992.4049 +UniRef50_B2N0Z3 Anaerobic dimethyl sulfoxide reductase chain A 4.22868366749e-05 1.45920469569e-05 -11180726462.4 +UniRef50_C6DKE8 Altronate oxidoreductase 2.61399181079e-05 3.51346461041e-06 -9134576934.75 +UniRef50_Q8CQJ8 Penicillin binding protein 4 8.97662413118e-05 3.85433456954e-05 -20679311536.0 +UniRef50_Q4A044 Histidinol dehydrogenase 0.000154982370418 2.80294191569e-05 -51252464312.0 +UniRef50_Z5YDT5 Replication initiator protein 3.54545398333e-07 5.43716860061e-08 -121183811.212 +UniRef50_V9FLN1 2.49543689114e-07 1.01306417375e-05 3989120536.84 +UniRef50_Q2VP64 1.03828821597e-07 1.49398557018e-07 18397061.393 +UniRef50_A9M916 Modification methylase BabI 6.47115852041e-05 2.4321683294e-05 -16305899040.9 +UniRef50_D2NA34 9.62311234154e-05 3.13183120487e-05 -26206098518.5 +UniRef50_P06202 Periplasmic oligopeptide binding protein 2.63512751505e-05 4.73095131148e-06 -8728390045.01 +UniRef50_UPI0002F32181 glycerophosphoryl diester phosphodiesterase 5.66175492305e-07 1.99639767635e-07 -147974969.948 +UniRef50_M9V9X8 6 phosphogluconolactonase 6.08028606607e-06 6.40365433242e-05 23397652258.3 +UniRef50_D5BS61 RNA polymerase, sigma 28 subunit, FliA WhiG 8.54063031988e-05 3.39406749657e-05 -20777305672.0 +UniRef50_UPI0003AD846F PREDICTED 8.6025359705e-07 5.17228213197e-07 -138483556.856 +UniRef50_I0C6W8 Staphylococcal accessory regulator 0.000114407131788 8.10599740996e-06 -42915072410.0 +UniRef50_A6LWF3 Diguanylate cyclase phosphodiesterase 3.40403280732e-06 7.04190322897e-06 1468652930.91 +UniRef50_UPI00041214C6 biotin attachment protein 3.34093086964e-07 2.91290404665e-07 -17279968.0921 +UniRef50_D3E6A1 Respiratory nitrate reductase, gamma subunit 0.000174236468167 7.51953314765e-05 -39984122253.4 +UniRef50_Q21JR5 3.98266638365e-07 4.05159521514e-07 2782741.51244 +UniRef50_A0JXX3 D alanine D alanine ligase 3.35165084517e-06 5.11480524772e-05 19295993866.6 +UniRef50_UPI00035DE730 hypothetical protein 6.36899821103e-08 8.50295718001e-07 317562388.317 +UniRef50_B7KZS8 3.31451076911e-07 2.13681774328e-07 -47544912.6446 +UniRef50_UPI000382DE8E MULTISPECIES 1.37744383511e-07 3.05569592427e-07 67753096.2863 +UniRef50_UPI0000E116E2 two component LuxR family transcriptional regulator 1.53708360804e-07 2.47717924667e-07 37952814.5586 +UniRef50_A4WNW4 Transposase, IS4 family 1.65184404296e-05 1.24904543779e-05 -1626147398.02 +UniRef50_A1BF67 Bifunctional protein FolD 8.14143598766e-08 2.45187334144e-08 -22969462.5906 +UniRef50_P0ABZ3 Flagellar motor switch protein FliG 1.95196439836e-05 4.60048431843e-06 -6023047835.52 +UniRef50_N5AMH8 Diacetyl reductase [ acetoin forming] 2.53194908843e-05 1.57730838189e-05 -3854001679.89 +UniRef50_F0YAY5 2.48619208242e-06 1.46692105592e-06 -411492221.26 +UniRef50_A6KXK3 3 oxoacyl [acyl carrier protein] synthase 3 3.85278219633e-07 4.48236204553e-05 17940304080.3 +UniRef50_Q5NQ43 Adenylate kinase 2.32169034401e-06 4.01798482461e-06 684814897.692 +UniRef50_UPI00036D1E75 NADPH 9.33339050994e-08 8.20403086894e-07 293526750.833 +UniRef50_I0UU63 1.85710498861e-08 8.04980375673e-08 25000684.8565 +UniRef50_Q5HQ74 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.000131044623867 4.04670757669e-05 -36567267679.5 +UniRef50_D3DYQ8 Isoleucine tRNA ligase 3.18713445573e-05 8.61884565147e-06 -9387319148.52 +UniRef50_UPI00046F3F36 hypothetical protein, partial 3.71511401727e-07 2.88384731921e-07 -33559256.6796 +UniRef50_Q96528 Catalase 1 1.57921564784e-07 4.43056457471e-07 115112455.176 +UniRef50_K8DL52 Ribonuclease E 9.40047039555e-05 1.10661535764e-05 -33483310558.5 +UniRef50_P30793 GTP cyclohydrolase 1 6.10870781631e-07 4.01977104534e-07 -84332940.8577 +UniRef50_Q8X7L9 Tyrosine protein kinase wzc 3.57717346774e-05 8.56916072981e-06 -10982012915.8 +UniRef50_UPI00036966F0 30S ribosomal protein S2 1.31022188669e-07 1.06063153197e-07 -10076268.9019 +UniRef50_W1MMZ8 4.09490814421e-07 1.52031729916e-06 448454283.263 +UniRef50_UPI000377C983 phospholipase C 3.42781538902e-08 4.70761518805e-08 5166708.83778 +UniRef50_P32151 3.90592085378e-05 9.87483548604e-06 -11782089533.5 +UniRef50_B4D0M3 6.47122377157e-07 8.55227474138e-08 -226724662.13 +UniRef50_UPI0003B38626 hypothetical protein 4.94356569047e-08 2.08644187816e-06 822364408.4 +UniRef50_UPI00037E7CCD hypothetical protein 3.57962790692e-07 1.70328989228e-07 -75750068.1767 +UniRef50_UPI0003B6D2EE diaminopimelate decarboxylase 4.77516726566e-08 1.01277774783e-06 389592868.749 +UniRef50_E3D189 Adhesin MafB2 2.33016042498e-06 2.65727457858e-05 9787029200.13 +UniRef50_UPI0003B777B8 hypothetical protein, partial 1.18780063651e-05 3.66858754132e-06 -3314243120.06 +UniRef50_V6F621 1.806542464e-07 5.71892126128e-07 157947533.075 +UniRef50_UPI0003F4A07E hypothetical protein TREMEDRAFT_69682 3.75365990922e-08 6.95035490164e-08 12905449.963 +UniRef50_UPI0004772D62 hypothetical protein 1.48847945658e-08 1.12413892046e-07 39373693.4694 +UniRef50_P51973 Competence protein ComA 2.22726908368e-06 3.96872555079e-05 15123056205.2 +UniRef50_R8HF68 5.78941968868e-08 5.3050905124e-06 2118357542.91 +UniRef50_UPI00034D0998 hypothetical protein 7.2713593817e-08 1.34450908375e-07 24924111.4891 +UniRef50_UPI000470E01F transposase 1.5289836662e-07 2.66616597531e-05 10701912270.8 +UniRef50_R1CYW6 9.61288668513e-08 6.32065426698e-07 216364165.891 +UniRef50_UPI0004753801 5 hydroxyisourate hydrolase 3.89129792753e-07 4.80584334076e-07 36921320.6055 +UniRef50_Q1QUQ7 Transcriptional regulator, LysR family 2.16117932552e-06 2.96304386488e-06 323722554.524 +UniRef50_UPI0002C376E7 6.25633958252e-07 6.15626849461e-07 -4039992.61996 +UniRef50_UPI00037266A5 MULTISPECIES 9.43123630514e-08 7.26291881117e-08 -8753763.80563 +UniRef50_A5ISN2 7.45947997873e-07 1.39850305379e-06 263444483.825 +UniRef50_I4API8 Mg chelatase subunit ChlI 1.35185705489e-07 8.69719154025e-07 296540166.913 +UniRef50_X6KUI6 8.33995770377e-08 6.16099870099e-07 215057645.276 +UniRef50_Q849Z0 3.68411555032e-05 7.73755559468e-06 -11749480424.4 +UniRef50_G6A195 4.10657088035e-07 6.18016290057e-07 83713454.4398 +UniRef50_P46331 0.000316653564599 6.71076062587e-05 -1.00744765655e+11 +UniRef50_B6JCL5 7.32697442754e-06 6.06678126014e-05 21534350936.5 +UniRef50_F0P804 0.000236306598737 1.76527747472e-05 -88273231928.9 +UniRef50_W1YTI2 1.70649850073e-06 2.55650819785e-05 9632002927.73 +UniRef50_P77279 Probable iron export ATP binding protein FetA 3.80299104152e-05 1.68416334469e-05 -8553967421.5 +UniRef50_A3CKQ0 Malate permease, putative 5.01887956223e-05 2.58908036465e-05 -9809397530.52 +UniRef50_UPI000288D813 hypothetical protein 6.17162498962e-06 7.29966006614e-07 -2196864508.11 +UniRef50_Q03LK9 ABC type amino acid transport system, permease component 6.16350332049e-05 2.10814387477e-05 -16371983730.9 +UniRef50_D5ASM5 Type I secretion membrane fusion protein, HlyD family 5.91531589236e-05 2.04698684809e-05 -15616919049.1 +UniRef50_B8ZUE2 GMP synthase [glutamine hydrolyzing] 2.45355627173e-07 4.57355168031e-07 85586816.1713 +UniRef50_A0PZM2 4 hydroxy tetrahydrodipicolinate reductase 3.54802524375e-06 1.41187269415e-05 4267521992.5 +UniRef50_UPI0004207E45 hypothetical protein 2.55505842038e-07 3.44103333913e-07 35767894.6834 +UniRef50_G5JDC1 1.84699267914e-07 6.09773218817e-07 171607570.223 +UniRef50_H8HKL3 Acyl CoA dehydrogenase FadE23 7.94684292609e-06 1.55021892496e-06 -2582395604.66 +UniRef50_UPI00022CA85D PREDICTED 6.28874870626e-09 1.61546926491e-07 62679631.6039 +UniRef50_UPI00016C57C9 lysyl tRNA synthetase 4.16065734123e-08 5.25286073023e-08 4409359.10982 +UniRef50_P30852 Protein smf 3.37566204641e-05 9.36140724188e-06 -9848646940.73 +UniRef50_UPI0003A4112D cell division protein FtsZ 8.83313311464e-08 2.68003637158e-07 72535914.7642 +UniRef50_A9WLY4 Cysteine tRNA ligase 4.58947098707e-08 1.20296299373e-07 30036834.6923 +UniRef50_UPI00037650D9 hypothetical protein 2.33189679708e-07 6.42410066233e-07 165207291.739 +UniRef50_UPI0003C1696D PREDICTED 1.13142446051e-07 7.8544689614e-08 -13967538.8358 +UniRef50_Q9RZG7 Transposase related 4.24739620612e-07 0.000427974200824 1.7260696411e+11 +UniRef50_UPI0004726E09 porin 3.84824649493e-07 1.19311906733e-07 -107190752.46 +UniRef50_J6J4P6 1.19667036976e-06 1.15029588815e-06 -18721947.3048 +UniRef50_UPI0004785436 acetolactate synthase 9.32716781195e-08 3.59678666412e-06 1414411992.81 +UniRef50_A0A058ZLV2 Tim44 family protein 3.80360437791e-06 2.75996920751e-06 -421328325.134 +UniRef50_C5QYU7 6.05275665785e-06 5.86226139851e-07 -2206905451.99 +UniRef50_M9KGL8 Alpha beta hydrolase family protein 1.04451415198e-05 3.1754484429e-06 -2934864304.31 +UniRef50_L0WM00 NAD+ synthetase 2.09717802518e-06 6.04869661018e-05 23572673969.8 +UniRef50_UPI000314C40B hypothetical protein 3.05130591452e-07 4.03205846823e-07 39594184.112 +UniRef50_Q89FG2 Coenzyme PQQ synthesis protein D 6.42670136543e-06 4.44167895145e-06 -801377907.488 +UniRef50_U6JTT0 Beta tubulin cofactor d, putative 3.2491915743e-07 5.28149452811e-07 82046564.1615 +UniRef50_UPI0003492D90 MULTISPECIES 6.50377774349e-07 4.04964141828e-05 16086333864.0 +UniRef50_Q57975 Putative aminopeptidase MJ0555 3.03179156342e-05 1.67118666206e-05 -5492928951.79 +UniRef50_E3GPG2 Phage prohead protease 3.83234506454e-06 3.77803887234e-06 -21924076.2031 +UniRef50_I6TPD4 MutE 3.21702208702e-05 2.37202172853e-06 -12029898658.5 +UniRef50_UPI00047CC989 magnesium transporter 4.87292539311e-06 1.75671358437e-07 -1896339095.59 +UniRef50_UPI0003ACFD18 hypothetical protein 1.03578613843e-07 1.98407323305e-05 7968131157.54 +UniRef50_UPI0001FFE023 cation diffusion facilitator family transporter 7.76395698985e-08 4.17724681257e-07 137296532.769 +UniRef50_V7ABJ2 Branched chain amino acid transport family protein 3.46912113766e-07 4.02368333017e-07 22388356.236 +UniRef50_W4UL00 Secreted lipoprotein 1.30802481382e-06 2.66654366494e-06 548450731.098 +UniRef50_Q9ZMN9 Fumarate reductase cytochrome b subunit 1.4803372112e-06 0.000100900560791 40137164282.5 +UniRef50_A0A023Z2T1 1.47795082047e-06 3.95512644243e-07 -436993574.754 +UniRef50_P30744 L serine dehydratase 2 7.10356582203e-05 2.75965049683e-05 -17536919226.2 +UniRef50_Q30T29 Phosphoheptose isomerase 8.86768145148e-08 1.22836990791e-07 13790882.3552 +UniRef50_UPI0002492490 L serine ammonia lyase beta subunit, partial 1.41727946985e-07 1.7206634699e-06 637435646.321 +UniRef50_P33650 Ferrous iron transport protein B 4.84834336017e-05 2.58321166408e-05 -9144614620.03 +UniRef50_Q98IW6 Mll2216 protein 5.46588430334e-05 2.00304344281e-05 -13979913492.3 +UniRef50_Q8TYM1 Putative citramalate synthase CimA 7.46579313362e-05 1.29361766876e-05 -24917829762.7 +UniRef50_G3NJA9 3.40925183228e-08 2.53102228199e-08 -3545520.46541 +UniRef50_UPI0001744894 3 phosphoglycerate dehydrogenase 6.1305383263e-08 5.656835945e-08 -1912394.64313 +UniRef50_T4EWY4 DEAD DEAH box helicase family protein 7.44974825181e-06 1.87169854179e-05 4548721908.5 +UniRef50_UPI00035CD489 hypothetical protein 5.82240599793e-07 7.05673848386e-07 49831517.1533 +UniRef50_B1ZP50 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.13182010803e-08 9.64575321409e-08 10149056.4434 +UniRef50_A7X235 N anthranilate isomerase 9.81547052031e-05 5.58078812965e-06 -37373226332.2 +UniRef50_Q6MMY0 Lipoprotein releasing system ATP binding protein LolD 3.65080841992e-07 3.74812467634e-07 3928776.69215 +UniRef50_U5MQT2 Diguanylate cyclase 2.06743710026e-06 1.64873069431e-05 5821478407.24 +UniRef50_A5D504 N acetyl gamma glutamyl phosphate reductase 1.98480593853e-07 2.86938491005e-07 35711538.5807 +UniRef50_UPI00036A45EE hypothetical protein, partial 1.06528225414e-07 1.30048508318e-07 9495426.83467 +UniRef50_A1VBW6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 7.75530083221e-08 6.1755188245e-08 -6377773.82618 +UniRef50_UPI0003A8F6AB hypothetical protein 7.57235631324e-08 1.96647594516e-06 763319938.766 +UniRef50_K0R3E3 2.41131458509e-07 5.64515405483e-07 130554067.761 +UniRef50_Q5LQ58 Translation initiation factor IF 3 0.000122617240416 3.39701217924e-05 -35787929610.8 +UniRef50_UPI00037C5039 hypothetical protein 2.9457026203e-08 2.39746868444e-06 955995365.202 +UniRef50_A6LSJ0 3.17869054209e-06 7.54609631724e-06 1763175305.52 +UniRef50_Q4MH05 6.26394460399e-08 9.75656280464e-08 14100128.2685 +UniRef50_A3M6B4 2.40948503526e-06 4.3275868743e-05 16498260589.7 +UniRef50_R0FJ43 1.23938716906e-06 6.99342745911e-07 -218022560.716 +UniRef50_P57371 DNA topoisomerase 1 1.80109174903e-08 4.83483665009e-08 12247600.4479 +UniRef50_A3M6B3 3.06558539943e-06 5.75762125619e-05 22006609106.1 +UniRef50_A3M6B2 3.40909339201e-06 9.609108098e-05 37416855725.2 +UniRef50_P37469 Replicative DNA helicase 0.000357807243797 0.000153279110926 -82570517082.5 +UniRef50_O06851 Valine tRNA ligase 8.23660122089e-08 4.17019627095e-08 -16416575.7869 +UniRef50_UPI00036C4ADF hypothetical protein 2.73986679984e-08 1.34524004575e-07 43247812.9518 +UniRef50_G7DHM9 3.06513214593e-07 8.03486007643e-07 200634015.096 +UniRef50_UPI0003B33000 ABC transporter ATP binding protein, partial 1.82507419585e-06 3.38468337329e-07 -600161027.79 +UniRef50_UPI0002198415 LysR family transcriptional regulator 1.75734877293e-06 9.31124003574e-07 -333557078.307 +UniRef50_F2DNI7 Predicted protein 2.45002123398e-07 4.0497043141e-07 64581168.9763 +UniRef50_J4Q6B5 IS1167, transposase domain protein 1.23310242767e-06 4.5254477494e-06 1329160208.0 +UniRef50_P67641 UPF0735 ACT domain containing protein SA1469 0.000115389244963 1.64478861935e-05 -39943840682.3 +UniRef50_A6LZA0 1.01532567238e-05 9.43374700462e-06 -290474903.01 +UniRef50_Q6F925 3.64136273772e-06 7.77325857487e-05 29911535931.1 +UniRef50_Q1RJH2 ATP dependent Clp protease proteolytic subunit 8.54434721756e-06 1.08135758837e-05 916115459.088 +UniRef50_G7LZU7 GerA spore germination protein 1.91503915899e-06 1.41084126532e-05 4922614509.13 +UniRef50_A5UP49 2.40771727614e-05 3.52968173539e-06 -8295274273.27 +UniRef50_A3PFM0 2.17100033568e-05 8.70005657286e-06 -5252275166.66 +UniRef50_Q1RB71 6.67297812554e-06 4.94944198654e-06 -695812689.481 +UniRef50_Q4L5M1 Antibacterial protein 3 homolog 0.000447548604793 5.5611587342e-05 -1.58229783553e+11 +UniRef50_U9FRQ4 1.77353468843e-06 5.68300433186e-06 1578300869.64 +UniRef50_P37017 4.33974174284e-05 4.6506567747e-06 -15642542752.1 +UniRef50_UPI0003B51420 ABC transporter ATP binding protein 4.11567404632e-07 9.38442180989e-07 212705812.696 +UniRef50_UPI000378DF42 hypothetical protein 2.39148461759e-07 1.52830941635e-06 520450097.152 +UniRef50_T1XUW5 8.29449092945e-05 6.46094215422e-06 -30877516098.4 +UniRef50_P13039 Enterochelin esterase 2.37586305733e-05 5.89362993517e-06 -7212319985.81 +UniRef50_K0CJ28 Quinohemoprotein alcohol dehydrogenase protein 3.93425988461e-07 2.31084507864e-07 -65539247.871 +UniRef50_UPI0003611858 hypothetical protein 1.38014475868e-07 2.1490762647e-07 31042708.4831 +UniRef50_UPI00047763D0 metal ABC transporter permease 1.22558446742e-07 5.9920730456e-07 192428993.04 +UniRef50_D1GS39 MarR family regulatory protein 0.000135348964404 1.72631129432e-05 -47672707311.2 +UniRef50_UPI0003594BA5 PREDICTED 3.764625998e-08 1.77190023117e-06 700139609.859 +UniRef50_Q8E035 1.47511760958e-05 1.25154072652e-07 -5904704572.2 +UniRef50_UPI0003F5F292 hypothetical protein 9.95347504138e-07 3.77728152675e-07 -249340511.227 +UniRef50_R9ZBZ3 2.57203727339e-05 3.92882534625e-06 -8797515092.77 +UniRef50_R5RCP3 7.80426296949e-08 2.45722545362e-05 9888613924.43 +UniRef50_UPI00037F2711 hypothetical protein, partial 1.72327325745e-06 9.69205256492e-07 -304426505.442 +UniRef50_E5ASL7 Folylpolyglutamate synthase Dihydrofolate synthase (EC 6.3.2.12) 1.40503469798e-06 2.22540170714e-05 8416990029.93 +UniRef50_B9EUD8 4.60777015226e-07 6.01668163898e-07 56879485.6477 +UniRef50_Q3J1Y6 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 4.6125438215e-05 8.5041605354e-06 -15188171464.2 +UniRef50_Q92405 Catalase B 1.7444891636e-07 3.26536838345e-07 61399760.434 +UniRef50_UPI00017448C8 DEAD DEAH box helicase like protein 2.51440941243e-08 4.45530808413e-07 169715275.284 +UniRef50_U7DNX2 TonB denpendent receptor 8.0300629774e-06 1.39593103838e-05 2393709938.01 +UniRef50_A5ULE5 Predicted transcriptional regulator 2.98974039677e-05 9.32671573616e-06 -8304639269.79 +UniRef50_UPI00036B87E5 hypothetical protein 2.48173530599e-07 5.69929680531e-08 -77181939.1491 +UniRef50_S1T170 7.07786229098e-06 1.05470251856e-05 1400543631.97 +UniRef50_Q5H1A4 Transposase 2.96078588798e-07 3.162297817e-07 8135283.85748 +UniRef50_F0Y5C9 Expressed protein 3.78430977197e-07 6.47928182961e-08 -126619573.521 +UniRef50_U3TBQ8 5.01222343795e-06 6.04316250271e-05 22373492494.1 +UniRef50_Q2FEJ8 HTH type transcriptional regulator SarR 3.79722229942e-05 5.18099482802e-06 -13238221204.3 +UniRef50_I7FYE4 Ethanolamine permease 1.46219713943e-05 7.18500312068e-05 23103670013.6 +UniRef50_UPI0002628848 short chain dehydrogenase 3.39459896091e-07 3.27535609423e-07 -4813980.85532 +UniRef50_P39369 2.14852658782e-05 1.92388733031e-06 -7897168564.9 +UniRef50_Q8AA15 Phosphomethylpyrimidine synthase 3.21008279185e-08 3.55795151387e-05 14350927373.1 +UniRef50_UPI0003B3A510 MULTISPECIES 2.84976823295e-08 4.23871893089e-08 5607364.411 +UniRef50_UPI00029B3B69 guanosine 3,5 bis 3 pyrophosphohydrolase 8.4290072563e-08 1.0529428068e-07 8479656.56745 +UniRef50_Q5HQL5 Na H(+) antiporter subunit F1 8.92475465054e-06 6.19545535373e-06 -1101851618.39 +UniRef50_P27127 Lipopolysaccharide 1,6 galactosyltransferase 2.72732606936e-05 1.35527202931e-05 -5539150529.65 +UniRef50_UPI000465DD48 hypothetical protein 5.81972756272e-07 3.25791709824e-07 -103423432.146 +UniRef50_Q880Z2 Xylose import ATP binding protein XylG 2.65430499479e-05 1.35704457577e-05 -5237199503.34 +UniRef50_I2AGX0 3.71566219601e-09 2.94793120608e-07 117511541.883 +UniRef50_R6VPX6 Lipoprotein 6.15535587085e-08 8.91776410593e-08 11152181.0306 +UniRef50_P23145 Probable serine acetyltransferase 1.05163317766e-07 2.91954482395e-07 75409885.3461 +UniRef50_V0UHK4 4.68558664494e-06 3.14243077726e-06 -622990960.434 +UniRef50_Q6W109 Tartrate dehydrogenase 1.70101345321e-05 3.54720933048e-06 -5435148112.56 +UniRef50_D6AP01 1.54888062119e-06 2.26360138587e-05 8513134456.2 +UniRef50_UPI00037CB222 hypothetical protein 1.90285388738e-07 6.20098372411e-08 -51786414.2574 +UniRef50_G8VN68 Glycosyl hydrolase, alpha L fucosidase 1.17353157162e-06 6.73428716931e-05 26713374596.2 +UniRef50_B9KTR8 Methyl accepting chemotaxis sensory transducer 2.17916152551e-05 1.14027634466e-05 -4194106960.64 +UniRef50_V5PNN3 Hydrogenase expression protein HypA 2.41094453622e-06 1.13858597291e-06 -513666765.604 +UniRef50_UPI000382E44E hypothetical protein 1.20266319339e-06 6.11381107711e-07 -238707833.836 +UniRef50_UPI0002E512FA hypothetical protein 4.3628165463e-08 2.41442461632e-07 79860058.8178 +UniRef50_R5MTV1 1.27908898271e-06 4.15301014282e-07 -348721802.725 +UniRef50_K7SJY0 CoA substrate specific enzyme activase 1.6310900447e-06 7.29524248233e-05 28793298061.3 +UniRef50_R0FCW6 Replication initiation protein RepC 1.0345292094e-06 9.16161395486e-07 -47786539.0135 +UniRef50_Q8DGX5 Phosphoribosylformylglycinamidine synthase 1 5.6316983505e-06 3.44103592028e-05 11618298540.0 +UniRef50_R9ZNN5 Potassium transporter 6.20973006857e-06 5.41392002198e-06 -321278281.496 +UniRef50_UPI0003826E10 hypothetical protein 5.07272350452e-07 3.11447431836e-07 -79056922.6873 +UniRef50_G7UAA4 Arginine ornithine antiporter ArcD 2.81143086592e-06 5.84692481287e-05 22469743827.2 +UniRef50_H6CP54 2.5234562726e-07 2.19001613913e-06 782261363.533 +UniRef50_V9WDP4 MmoB DmpM family 0.000269938026983 1.93650298488e-05 -1.01159393819e+11 +UniRef50_M1N619 3.10929842145e-06 6.77602912104e-06 1480304179.27 +UniRef50_U3T2N9 2.5679318969e-06 0.000100075998265 39365202951.3 +UniRef50_B9DTE1 Major Facilitator Superfamily protein 2.84323173286e-05 2.23738178969e-05 -2445890566.73 +UniRef50_UPI0002F7BEAC hypothetical protein 4.06232226189e-07 3.25400368825e-07 -32632812.7363 +UniRef50_W5X9K0 Cell division protein FtsZ 6.12669530755e-08 4.9238376607e-07 174047147.804 +UniRef50_UPI0003A0AA3D hypothetical protein 3.8664232652e-07 5.25722333465e-07 56148305.5073 +UniRef50_A0A059IQN5 Membrane protein 4.00915743948e-06 9.56182631268e-07 -1232523394.29 +UniRef50_UPI00046FD731 hypothetical protein 4.08283930411e-07 4.06886571585e-07 -564130.905577 +UniRef50_U6GJB3 JmjC domain containing protein, putative 7.46977592644e-08 6.31130753047e-08 -4676879.07459 +UniRef50_A1S9I7 NAD transhydrogenase subunit beta 9.37149678997e-06 2.55053168034e-06 -2753707317.41 +UniRef50_UPI00039D9A64 membrane protein 6.63058500514e-08 6.23931291176e-07 225120233.416 +UniRef50_P38035 Transcriptional regulatory protein RtcR 3.35469576323e-05 2.1477832089e-05 -4872454086.66 +UniRef50_D3E234 3.80484586612e-05 4.12143602128e-06 -13696755371.1 +UniRef50_E8SEX9 Staphylococcal secretory antigen SssA 0.000408122742115 2.30393477294e-05 -1.55462891818e+11 +UniRef50_M9Y2Q0 TonB dependent vitamin B12 receptor 6.03120245989e-06 6.15595322767e-06 50363415.8169 +UniRef50_UPI00047539FF orotate phosphoribosyltransferase 1.45468308428e-07 6.61549051494e-07 208348128.999 +UniRef50_P77315 Probable ABC transporter permease protein YphD 6.17959944311e-05 4.66412197916e-06 -23064837995.7 +UniRef50_G7M256 Sporulation protein YtaF 1.18542081731e-05 8.24171855499e-06 -1458406389.06 +UniRef50_UPI00046F04B8 hypothetical protein 2.28849750511e-07 2.86256406163e-07 23175771.3456 +UniRef50_T2ES40 2.5124520616e-05 2.44436066334e-05 -274893330.53 +UniRef50_P39587 Putative ribosomal RNA large subunit methyltransferase YwbD 6.8702086705e-06 1.59597290482e-05 3669550917.44 +UniRef50_A0K5P1 Transcriptional regulator, AsnC family 3.85189784541e-06 5.90865577611e-05 22298910013.5 +UniRef50_N1ZJ21 1.85625772682e-06 2.89417166979e-07 -632552761.303 +UniRef50_UPI00046FF2AA succinate dehydrogenase 4.89300748618e-07 2.46128671611e-06 796114934.065 +UniRef50_Q2W2A3 Holliday junction ATP dependent DNA helicase RuvA 1.37218555191e-07 9.18956109002e-07 315597043.472 +UniRef50_N6V8V2 2.44293122551e-06 5.67115135731e-08 -963346179.919 +UniRef50_A3N3J7 6.04427909286e-05 1.09306460701e-05 -19988660461.7 +UniRef50_Q887Q2 Alginate production protein AlgE 8.79124192724e-06 6.54847976765e-06 -905430605.613 +UniRef50_UPI000470382C response regulator receiver protein 6.37036480469e-08 1.03172366365e-07 15934005.9207 +UniRef50_P38102 9.23453859705e-06 5.46882787401e-06 -1520263629.36 +UniRef50_Q9V1I6 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 1.15087897063e-07 1.878060782e-06 711733787.76 +UniRef50_Q8U194 Sulfide dehydrogenase subunit beta 3.85189784541e-06 2.90510485719e-05 10173206376.6 +UniRef50_A6LU85 1.59276788545e-06 9.97249908705e-06 3383000316.95 +UniRef50_UPI00046CF004 hypothetical protein 2.39272284566e-06 4.22767932055e-06 740794446.361 +UniRef50_Q9HYB8 Electron transport complex subunit C 1.71454993011e-06 1.81037355936e-06 38685175.0164 +UniRef50_Q0BUN4 50S ribosomal protein L18 0.000247471780619 0.000334628826732 35186369053.0 +UniRef50_UPI00037ECE30 hypothetical protein 4.49136837305e-08 2.33473111236e-07 76123754.7681 +UniRef50_F3P4A4 Periplasmic binding protein 1.73250918181e-07 1.72117081508e-06 624914257.492 +UniRef50_UPI0003B4D558 prephenate dehydrogenase 6.12548668045e-08 1.60025556704e-06 621313468.349 +UniRef50_UPI0003B57E0D flagellar biosynthesis protein FlhB 1.48152817125e-05 1.49109227168e-06 -5379138783.44 +UniRef50_Q51785 Acyl homoserine lactone synthase 7.89655009476e-08 1.24788372467e-07 18499255.5422 +UniRef50_UPI00041DC25F hypothetical protein 2.32053498718e-06 1.05508851951e-07 -894233232.22 +UniRef50_U6I036 GTP cyclohydrolase I 4.48072804713e-08 2.53531234127e-07 84264421.4219 +UniRef50_A0A017HMU3 2.47598948413e-06 3.3257838468e-07 -865321363.46 +UniRef50_E8TGI4 2.21131563735e-06 8.42079373926e-07 -552777481.961 +UniRef50_P60776 Lipoate protein ligase A 1.69835670208e-05 1.35518716045e-05 -1385417551.2 +UniRef50_F5LYA2 Glycosyltransferase 3.04725544523e-05 3.74237548822e-06 -10791301264.0 +UniRef50_A0RAL4 Serine protein kinase RsbW 5.95003560074e-07 7.84026650967e-06 2925001562.13 +UniRef50_K7S7B4 Phosphoribosylformylglycinamidine synthase 2 5.0309105574e-07 5.31814190361e-05 21266887441.5 +UniRef50_UPI0004767068 PTS lactose transporter subunit IIC 1.60778100086e-07 2.96049888157e-07 54610880.8158 +UniRef50_D5VBA0 Ribosomal RNA small subunit methyltransferase E 3.64134394391e-06 7.20391378882e-05 27613028750.6 +UniRef50_E8U946 Methylenetetrahydrofolate reductase 1.63413847988e-06 0.000365775115942 1.47008181114e+11 +UniRef50_UPI00046A6655 hypothetical protein 1.38059236055e-06 1.24872035394e-07 -506949704.688 +UniRef50_F0KGP8 LysR family transcriptional regulatory protein 2.04784442414e-06 4.98413998453e-05 19294844816.4 +UniRef50_UPI0003B71411 ACP S malonyltransferase 6.92181816722e-08 5.1773911405e-07 181073404.372 +UniRef50_A5UJE7 Purine NTPase involved in DNA repair, Rad50 2.63412409884e-05 1.98128296286e-06 -9834413985.19 +UniRef50_Q9RWR2 Acetyltransferase, putative 2.00790419604e-06 0.000342045220262 1.37277237223e+11 +UniRef50_C9XDD0 Inner membrane protein 9.86698803626e-07 2.31198450901e-06 535034102.346 +UniRef50_W7D2J3 2.35661539424e-07 1.98257365628e-07 -15100523.9623 +UniRef50_I6WPK4 6.89775913169e-08 4.20201076087e-07 141793230.798 +UniRef50_U4V0C7 1.38119634243e-05 1.73630741616e-06 -4875090515.43 +UniRef50_P65931 Uridylate kinase 3.34343474711e-06 3.50478851296e-05 12799475676.8 +UniRef50_UPI00036A819E hypothetical protein 5.65976369844e-07 2.09121798119e-07 -144066569.703 +UniRef50_UPI000362D7F9 hypothetical protein 3.06172837477e-07 5.37536964289e-07 93404537.1511 +UniRef50_A8LNR0 Sulphur oxidation protein SoxZ 3.90237519106e-05 3.54380046235e-06 -14323691787.6 +UniRef50_UPI00046EDA6C transcriptional regulator, partial 1.14707433721e-06 5.87684088776e-07 -225832707.783 +UniRef50_V5SCF0 Membrane protein 8.34476107634e-07 2.6013900004e-07 -231866938.245 +UniRef50_A3M2C8 DNA mismatch repair enzyme 1.83875238476e-06 8.00986208095e-05 31594469239.6 +UniRef50_F4FMG8 Sulfite reductase flavoprotein alpha component 0.000105496624651 2.18041066354e-05 -33787696545.6 +UniRef50_UPI00046D0275 hypothetical protein 1.00020642563e-05 5.16566032464e-07 -3829412033.12 +UniRef50_A6LRC8 Transposase IS116 IS110 IS902 family protein 5.49226401503e-06 2.98314804689e-05 9826040358.21 +UniRef50_UPI000462DF28 MFS transporter 2.80833750738e-08 4.10054593824e-08 5216804.00719 +UniRef50_UPI000470E3CB hypothetical protein 1.33367713526e-07 3.87527993931e-06 1510655883.97 +UniRef50_UPI0004725AED hypothetical protein 7.57633848617e-07 1.43512803772e-07 -247928201.917 +UniRef50_O27587 3.14919061744e-05 2.11949788416e-06 -11858001666.7 +UniRef50_UPI0003482043 hypothetical protein 5.46699181681e-08 7.87409872776e-08 9717785.98474 +UniRef50_A7X3Z2 Monofunctional glycosyltransferase 0.000228572298249 2.27744200029e-05 -83083128871.9 +UniRef50_UPI0003752A98 hypothetical protein 4.67634041306e-07 8.31317115757e-08 -155228308.886 +UniRef50_A3N1B7 Beta hexosaminidase 4.38465495445e-05 1.16152897987e-05 -13012155081.4 +UniRef50_UPI000255F2C8 serine threonine protein phosphatase 6.60008505831e-08 1.03548995631e-07 15158646.9234 +UniRef50_J0JV07 7.9192864794e-06 1.28026355953e-05 1971467963.52 +UniRef50_Q6A5V6 Calcineurin like phosphoesterase 1.24857548682e-06 4.76534631565e-05 18734222604.3 +UniRef50_Q9F9J0 Hypothetical CdoFa 1.76551519923e-07 9.62905337337e-08 -32402345.0377 +UniRef50_E6WRK7 Inner membrane translocator 5.89003532625e-06 2.80448592793e-05 8944174300.13 +UniRef50_Q19842 Propionyl CoA carboxylase alpha chain, mitochondrial 8.15356107921e-08 3.56917699729e-08 -18507721.1059 +UniRef50_P77460 2.12527261898e-05 5.64580020288e-06 -6300707539.43 +UniRef50_A0A023S045 Metallophosphatase 1.46312398781e-06 5.37499734598e-05 21108842763.6 +UniRef50_D3QDA3 Peptidase, M16 family 0.00015992610221 4.37260005116e-05 -46911406991.1 +UniRef50_F9JXI9 Conserved domain protein 1.53034860351e-06 1.32619833392e-06 -82417969.039 +UniRef50_U6KFK3 Nuclease, putative 2.82437032181e-07 8.27191359472e-08 -80628565.5239 +UniRef50_G9E8D1 Protein fecR 5.44109810878e-08 9.39606500707e-08 15966686.6974 +UniRef50_UPI0002629810 hypothetical protein 1.1779168355e-05 1.1827770915e-06 -4277893185.42 +UniRef50_N0B0K5 ATP dependent RNA helicase 2.87284742054e-08 9.20987257213e-06 3706540537.64 +UniRef50_Q8CSL7 Signal transduction histidine protein kinase ArlS 0.000160604993807 2.33487249357e-05 -55412040067.0 +UniRef50_Q3IV94 0.000370096748735 1.47525559777e-05 -1.4345681118e+11 +UniRef50_Q3IV95 0.000112488780811 8.2750872119e-06 -42072346951.7 +UniRef50_Q3IV96 9.88995503002e-05 4.48860384084e-05 -21805917571.0 +UniRef50_Q3IUU5 0.000194068654384 5.51817604994e-05 -56070343395.2 +UniRef50_Q3IV90 0.000139038845912 3.10057298992e-05 -43614294649.9 +UniRef50_Q3IV91 0.000155931747404 1.47055964764e-05 -57014730169.4 +UniRef50_Q3IV92 0.000161697855904 5.56637989482e-05 -42807249977.3 +UniRef50_UPI000360ED21 hypothetical protein 1.03979873937e-07 2.35370940222e-06 908243417.852 +UniRef50_J9NYT9 2.01122576501e-07 2.98616720242e-07 39359582.2159 +UniRef50_M9RZ09 1.17094380385e-05 5.65073685071e-06 -2445972018.14 +UniRef50_A7HTG1 1.67622854285e-07 8.23756394436e-08 -34415346.7324 +UniRef50_Q3JGL0 1.59726088367e-06 1.77244726568e-06 70724892.1961 +UniRef50_UPI00046F01F9 mannose 1 phosphate guanylyltransferase, partial 1.21575643888e-07 3.80569748721e-08 -33717511.571 +UniRef50_W5YSI9 7.17075152151e-07 6.00101630625e-07 -47223646.0666 +UniRef50_Q3IUU4 0.000308839586523 5.52509204126e-05 -1.02376856391e+11 +UniRef50_I0EQF7 2.09326796037e-06 2.42766685714e-05 8955711047.6 +UniRef50_UPI00047690D0 LuxR family transcriptional regulator 4.18502968937e-07 1.20592782225e-07 -120269998.145 +UniRef50_UPI0003B652E5 surfeit locus 1 family protein 1.37548737128e-07 2.31637537949e-07 37984803.4909 +UniRef50_Q9KKL3 Chemotaxis protein methyltransferase 3 3.75800678458e-07 2.4541978566e-07 -52636366.376 +UniRef50_D3QHI5 0.000104129599782 7.38468952486e-06 -39057107464.3 +UniRef50_S1T9V9 Thiamine monophosphate kinase 1.18706285809e-06 3.77699243766e-05 14768950117.2 +UniRef50_P40320-2 Isoform 1 of S adenosylmethionine synthase 1.18467254157e-06 6.95544544856e-06 2329731837.9 +UniRef50_Q28VX1 Sigma 54 modulation protein SSU ribosomal protein S30P 0.000214224240428 2.16892028786e-05 -77728757329.1 +UniRef50_D3QHI9 8.36690289677e-06 3.01856938874e-06 -2159187868.62 +UniRef50_P0A207 Ethanolamine utilization protein EutJ 4.08048864205e-05 4.60695907647e-06 -14613547467.3 +UniRef50_Q1GW94 1.24306770898e-06 2.95427824485e-07 -382573850.22 +UniRef50_Q5ZY26 Phosphopantetheine adenylyltransferase 1.52142799879e-05 2.6391295971e-07 -6035646630.92 +UniRef50_F0Y7E7 Expressed protein 6.70507188771e-07 1.07408979818e-06 162931251.934 +UniRef50_Q0VKW4 Ribosomal RNA small subunit methyltransferase G 4.88214887221e-07 5.19645839234e-07 12689061.0288 +UniRef50_Q89B37 DNA gyrase subunit B 9.20540963452e-08 9.44319409802e-08 959965.058584 +UniRef50_P50487 Putative purine permease CPE0397 3.26315189428e-06 2.88318177648e-06 -153398599.314 +UniRef50_J4UL42 2.82391045668e-07 9.43244768258e-08 -75924781.6778 +UniRef50_M1NX79 3.15920730615e-06 5.95899378392e-07 -1034838865.76 +UniRef50_G0DX90 Phosphatidylglycerophosphate synthase 8.26611654421e-06 6.75323241645e-05 23926495294.5 +UniRef50_Q2LR47 UDP N acetylmuramate L alanine ligase 1.43271045874e-07 1.1739787512e-07 -10445316.5329 +UniRef50_A3VYM7 3.49405195303e-06 5.41937599002e-07 -1191804791.24 +UniRef50_Q02MT4 4.86033462046e-06 2.20534945056e-06 -1071850093.42 +UniRef50_Q5FIJ4 Elongation factor P 1 4.43493513201e-05 7.72919344222e-05 13299325049.3 +UniRef50_E8N7U3 Predicted Fe S cluster redox enzyme 5.35147200718e-07 4.07351189508e-05 16229221904.6 +UniRef50_D5AV34 Nonfunctional major facilitator superfamily MFS_1 2.35969418882e-05 1.71695758841e-06 -8833218159.43 +UniRef50_Q5LYI8 Tryptophan synthase alpha chain 5.82126078289e-05 3.27378881762e-05 -10284456933.8 +UniRef50_Q9RX01 2.77034584862e-05 0.000105613099768 31453078244.3 +UniRef50_UPI00047A3CEB hypothetical protein 1.21903402477e-07 8.17833940707e-07 280955698.312 +UniRef50_Q65PC9 Serine acetyltransferase 1.40131692896e-07 3.2679217514e-06 1262727228.92 +UniRef50_UPI0004794B50 hypothetical protein 1.11601934714e-07 4.28297592572e-07 127853923.37 +UniRef50_Q9K7H6 Probable adenylyl sulfate kinase 9.6030805051e-08 1.95447941974e-07 40135918.1613 +UniRef50_C0MBU0 50S ribosomal protein L11 8.57922701941e-06 5.95638778275e-05 20583129183.3 +UniRef50_UPI000410106E beta methylgalactoside transporter permease 1.16327288619e-07 8.6837129716e-08 -11905539.0341 +UniRef50_Q8R966 Triosephosphate isomerase 1.89462706947e-07 9.97992648351e-07 326413459.123 +UniRef50_Q1MYB0 5.44821279861e-08 4.98484350879e-07 179249145.902 +UniRef50_R5H1H3 Zinc finger protein 5.24286095625e-06 6.66127906449e-06 572632796.244 +UniRef50_UPI0003AD21EA hypothetical protein 1.01122332671e-07 1.64600439767e-06 623687847.475 +UniRef50_B9ADZ7 9.0223612652e-06 4.92194508663e-06 -1655388329.05 +UniRef50_P38684 TorCAD operon transcriptional regulatory protein TorR 1.20003583557e-05 1.41739270752e-05 877496364.75 +UniRef50_R1CDN5 2.22440303416e-07 1.9711579268e-07 -10223815.7508 +UniRef50_UPI00046252B9 adenine deaminase 3.34732567859e-08 1.03718286434e-06 405209885.47 +UniRef50_O27089 Type 2 DNA topoisomerase 6 subunit A 3.38062962478e-05 1.03595268279e-05 -9465748539.03 +UniRef50_UPI000158407C hypothetical protein BC1G_05447 4.54645339686e-07 3.08033504502e-06 1060023154.88 +UniRef50_P37349 PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM 6.10937255773e-05 8.23597770438e-06 -21339321453.8 +UniRef50_O59521 Elongation factor 2 3.80774845533e-05 4.41194419507e-06 -13591191765.2 +UniRef50_Q160Y9 Zinc import ATP binding protein ZnuC 2.39226109871e-07 1.82719073179e-07 -22812584.1319 +UniRef50_UPI00031F41C2 hypothetical protein 5.85024012966e-07 5.49454977517e-07 -14359656.0919 +UniRef50_U5VFI8 Transcriptional regulator 2.04784442414e-06 7.11606518538e-06 2046102915.38 +UniRef50_Q5M018 DNA topoisomerase 1 5.83597841961e-05 8.14635789979e-06 -20271776383.8 +UniRef50_Q3JX48 4.5673472067e-07 6.59598869572e-07 81898746.3348 +UniRef50_G1Y3U3 3.47448062748e-07 2.8719071257e-06 1019155102.31 +UniRef50_Q5PCT4 Thymidine kinase 3.68279013511e-06 1.17595015342e-05 3260667504.21 +UniRef50_UPI0004776C9C uracil phosphoribosyltransferase 8.36139504249e-08 4.90377573497e-07 164215466.185 +UniRef50_B9KZP8 N acetyl gamma glutamyl phosphate reductase 1.23105259846e-07 2.16698024188e-06 825137411.412 +UniRef50_G7M047 Enoyl CoA hydratase isomerase 3.36646207595e-06 1.47346465931e-05 4589475592.86 +UniRef50_UPI00047BE467 phosphoenolpyruvate protein phosphotransferase 3.25697516968e-08 2.41243356713e-06 960780226.502 +UniRef50_UPI000378D9A5 hypothetical protein 1.59020496785e-07 1.48042835398e-07 -4431816.61299 +UniRef50_UPI00047C7B9C hypothetical protein, partial 6.19533661195e-07 5.75437463715e-07 -17802176.0439 +UniRef50_UPI0003C10252 5.47867017453e-06 5.28871142104e-07 -1998294610.26 +UniRef50_UPI00004C2470 COG1166 9.13703626762e-06 1.22293767187e-05 1248415787.39 +UniRef50_P05379 Anthranilate synthase component 2 6.13607730587e-05 4.67789779397e-05 -5886849628.29 +UniRef50_UPI000466FBB9 hypothetical protein 1.0852272488e-07 1.62343196838e-07 21727984.9809 +UniRef50_E3BCS0 1.1611637274e-07 1.50482605996e-05 6028289862.41 +UniRef50_L7WT69 8.47469413296e-05 7.95241800863e-06 -31002891439.5 +UniRef50_P54425 0.000254816648885 5.33616798942e-05 -81329843112.1 +UniRef50_F8DJ95 Tat pathway signal sequence domain protein 5.80651755474e-05 4.22750901743e-05 -6374651231.26 +UniRef50_T0ZN95 1.21697516795e-06 1.63501593642e-05 6109452165.06 +UniRef50_P32677 2.12299715208e-05 1.49671743737e-05 -2528368061.45 +UniRef50_Q83JV1 IS911 ORF2 1.4971715539e-07 3.8106622808e-07 93398459.6173 +UniRef50_Q042B4 Putative RNA 2 O) methyltransferase 1.71031409699e-05 0.000108062290325 36721324788.9 +UniRef50_A6LWX2 RNA polymerase, sigma 24 subunit, ECF subfamily 7.36451688131e-05 5.57201330567e-06 -27481968229.9 +UniRef50_A6W862 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 2.37334656096e-06 6.70101555851e-05 26094672985.9 +UniRef50_P28638 DNA adenine methyltransferase YhdJ 3.460968852e-05 1.85136280437e-05 -6498177135.16 +UniRef50_D9PXD9 Predicted biotin biosynthesis protein 6.86338161548e-06 8.48054408814e-06 652868335.028 +UniRef50_A4YZY5 Pyrroloquinoline quinone synthase 6.21692927988e-05 3.4882699116e-05 -11015932713.9 +UniRef50_B2VCR3 Iron dicitrate sensor protein FecR 3.58298049777e-07 1.52049552237e-07 -83265049.4106 +UniRef50_A5N275 FolC 3.05247551134e-06 8.20306827793e-06 2079357504.75 +UniRef50_Q2NFU9 UPF0425 pyridoxal phosphate dependent protein Msp_0916 2.79530461177e-05 3.14465525801e-06 -10015451823.3 +UniRef50_F2MU09 Phospholipase carboxylesterase 3.55473314347e-07 7.09805102506e-06 2722061362.55 +UniRef50_Q5HLB6 Glycine oxidase, putative 7.54095217395e-05 1.96274755759e-05 -22519896558.9 +UniRef50_P0CS91 Heat shock protein SSC1, mitochondrial 2.18575431332e-06 5.189588184e-05 20068588494.4 +UniRef50_D6UDQ3 Tandem lipoprotein 1.06781261774e-05 3.97636165494e-07 -4150359973.6 +UniRef50_I6SXL7 Transcriptional regulator 9.15016764153e-05 7.06192025914e-05 -8430510939.48 +UniRef50_Q1J5E1 Glycine tRNA ligase beta subunit 7.26507032039e-05 2.16833002658e-05 -20576166006.5 +UniRef50_Q5FSM8 DNA polymerase IV 4.44787391271e-08 1.00259447791e-07 22519356.5939 +UniRef50_UPI0003628E06 hypothetical protein 8.90318913877e-08 1.13707424611e-06 423107559.526 +UniRef50_I6T999 Putative DNA binding protein 5.34185608288e-05 7.55106700499e-05 8918855593.22 +UniRef50_Q2G506 ATM1 type heavy metal exporter 3.32426932883e-05 1.03110508692e-05 -9257785447.49 +UniRef50_Q92M99 Phosphoglucosamine mutase 7.12538667275e-06 4.73196623433e-06 -966253201.562 +UniRef50_UPI000474F1D7 GntR family transcriptional regulator 2.86867725733e-07 3.44374369266e-07 23216137.6801 +UniRef50_V9TEA7 Membrane protein 8.80826779157e-06 4.03621920536e-06 -1926534573.87 +UniRef50_A6LWP9 1.94915312664e-06 1.18373546568e-05 3991988299.6 +UniRef50_C8XAV6 5.91903043269e-07 2.12013810219e-07 -153365945.147 +UniRef50_B7GT76 2 isopropylmalate synthase 2.89137793217e-08 1.81961061171e-07 61787065.7838 +UniRef50_A1B1J8 Multisubunit potassium proton antiporter, PhaD subunit 4.72524768805e-05 7.29142247698e-06 -16132768040.0 +UniRef50_A6LWP5 2.02949456367e-06 1.5554572052e-05 5460239753.39 +UniRef50_A0A024E8N7 LysR family transcriptional regulator 2.29707498285e-06 5.5446503265e-06 1311086018.46 +UniRef50_A1AT80 Glutamate 5 kinase 8.79259766504e-08 6.3693331168e-08 -9783016.34924 +UniRef50_A1ZV16 6.80091804187e-08 6.85311454025e-06 2739230296.37 +UniRef50_F2K1C2 Cytochrome b 1.22225995043e-05 3.05552698654e-06 -3700859668.05 +UniRef50_Q869Z4 Phosphoenolpyruvate carboxykinase [GTP], mitochondrial 2.51908367335e-06 9.80676409642e-05 38574125090.9 +UniRef50_Q8CN10 PTS enzyme II glucose specific factor IIABC component 4.42989965018e-05 2.43733647365e-05 -8044222058.65 +UniRef50_Q6GC59 Exotoxin 0.000118168768448 1.85094368724e-05 -40233695114.6 +UniRef50_Q8DWC2 Peptide deformylase 2.85621120808e-05 5.84253982118e-05 12056175074.8 +UniRef50_A3W5J9 Flagellar protein FlgJ, putative 4.87205142173e-07 2.51568973161e-07 -95129213.0111 +UniRef50_UPI00045E6DFA hypothetical protein 9.66802408398e-07 1.10816689341e-06 57070577.3367 +UniRef50_F2DJV5 Predicted protein 7.8518275517e-09 1.8652292323e-06 749846050.881 +UniRef50_D8JDR1 1.17474892792e-06 7.77465670553e-05 30912982619.9 +UniRef50_A3PJK1 2.95903026021e-05 2.58643445711e-05 -1504214979.76 +UniRef50_O05389 1.78339837253e-06 1.70920855092e-05 6180304855.8 +UniRef50_A3PJK2 4.84115957411e-05 1.61081839197e-05 -13041283759.7 +UniRef50_UPI00016C499F dimethyladenosine transferase, partial 9.64260839552e-08 3.64661975384e-07 108290120.994 +UniRef50_UPI0004749CAE ketodeoxygluconokinase 1.23084589658e-07 1.4500448755e-07 8849331.7664 +UniRef50_R6XMV8 9.00798728142e-07 1.74903880052e-07 -293052657.905 +UniRef50_Q7VEG3 Nucleoside diphosphate kinase 4.41466594858e-07 9.93947754327e-07 223043423.784 +UniRef50_E3I2G3 HupH hydrogenase expression protein 1.56956709815e-06 2.58213713316e-07 -529409453.571 +UniRef50_W5XCB4 DegT DnrJ EryC1 StrS family protein 3.81361203014e-08 1.09591344281e-07 28847350.7748 +UniRef50_Q8SDT3 Phi105 orf 44 like protein 2.86660113217e-05 7.14475899663e-06 -8688393659.11 +UniRef50_I6T631 ABC transporter substrate binding protein 3.17403621288e-05 9.68168861503e-06 -8905357187.88 +UniRef50_I4L8Z6 5.97313242863e-07 9.38806767182e-07 137865126.364 +UniRef50_UPI00047863ED hypothetical protein 3.3761668814e-07 1.18400770828e-07 -88500155.9007 +UniRef50_B9KL61 Transporter, RhaT family, DMT superfamily 1.28834808487e-06 1.97536257659e-06 277356180.923 +UniRef50_R7PSP1 2.86218390364e-05 6.8237070487e-06 -8800173376.59 +UniRef50_I3UXJ0 Homocysteine S methyltransferase 2.26039514279e-06 4.60748400648e-05 17688429078.7 +UniRef50_B3T1S1 6.94467053355e-06 2.30521136462e-05 6502772445.15 +UniRef50_UPI0003775D8A hypothetical protein 1.56952429452e-07 2.73756178236e-07 47155106.7273 +UniRef50_UPI00035142FA PREDICTED 8.98039164874e-07 1.57753013168e-06 274318841.591 +UniRef50_F9Y4R9 4.74835567621e-06 7.37650781258e-06 1061017268.51 +UniRef50_A5UJU3 Adhesin like protein 3.5910587592e-05 7.66157579497e-06 -11404472716.8 +UniRef50_U7XVU8 4.62804059383e-07 2.04770702883e-06 639844777.713 +UniRef50_Q7N964 Thiamine phosphate synthase 1.96729849616e-05 3.00092558576e-05 4172879401.02 +UniRef50_Q6UXR0 GWSI6489 8.63153937979e-07 5.70393597839e-05 22679023659.6 +UniRef50_K1ZGG7 4.38113956219e-06 2.65477180654e-07 -1661543408.28 +UniRef50_B7UWX0 1.73274777077e-06 1.04391512769e-06 -278090190.938 +UniRef50_B3PNG9 Serine tRNA ligase 4.53124456224e-08 1.38124542524e-07 37469382.4517 +UniRef50_UPI0003A2F50C hypothetical protein 5.40361122358e-07 2.19373336876e-07 -129586707.962 +UniRef50_A4WXV4 3.78599139669e-05 8.01800731847e-05 17085167603.0 +UniRef50_UPI0003666757 hypothetical protein 3.55645335052e-07 3.38245967872e-06 1221962093.73 +UniRef50_M9VE13 LacI family transcriptional regulator 1.25410627529e-06 8.92062491184e-05 35507359359.9 +UniRef50_U5WUM2 Zinc binding dehydrogenase 3.3546625972e-06 2.61009207997e-05 9182943564.33 +UniRef50_A0B8A2 2.56630616398e-05 3.4631809876e-06 -8962364242.46 +UniRef50_T8GQ95 Glyoxylate carboligase 5.87385912372e-06 1.20701650628e-06 -1884061633.26 +UniRef50_C1FAE8 Aspartate tRNA ligase 3.23384215636e-08 9.5712017522e-08 25584698.3699 +UniRef50_Q88MC6 2.79619251005e-06 4.63681665336e-07 -941663251.136 +UniRef50_G8AMM6 3.14672552125e-06 1.9851292274e-06 -468950678.217 +UniRef50_UPI0003717327 hypothetical protein 7.75182707403e-08 1.26986986495e-07 19971127.5996 +UniRef50_C6NS61 2 isopropylmalate synthase 1.68527932359e-07 1.06639040794e-07 -24985304.9869 +UniRef50_Q57060 9.69989369764e-05 6.30671349842e-05 -13698684854.3 +UniRef50_X5X5U8 1.97509012991e-05 1.25041384493e-06 -7468873811.77 +UniRef50_F3ZHT3 Putative transcriptional regulator, MerR family protein 2.33580878932e-07 3.32069428132e-06 1246305563.69 +UniRef50_UPI000372025C hypothetical protein 2.51731079127e-07 3.55126379471e-07 41741951.5519 +UniRef50_UPI0003636A8B hypothetical protein 4.29338463108e-08 1.04520123471e-07 24863135.8382 +UniRef50_UPI000380509C hypothetical protein 5.38222826097e-07 5.45919704146e-08 -195247711.257 +UniRef50_A7IB90 2.03545358546e-07 9.97340430481e-08 -41909901.9746 +UniRef50_UPI0003810DDB hypothetical protein 1.45856266558e-07 1.13250550909e-07 -13163327.5246 +UniRef50_W4RTV0 1.81238837283e-07 2.69978209462e-07 35825173.5032 +UniRef50_UPI00045DC04C PREDICTED 3.10482415329e-07 2.63505259997e-08 -114707530.412 +UniRef50_D7GCK2 Cell envelope related transcriptional attenuator 4.62587843487e-08 1.61862955883e-07 46670822.671 +UniRef50_D5ANZ4 Cytochrome c1 0.000134026609234 4.36792146564e-05 -36474351878.2 +UniRef50_A4FPJ2 DNA directed RNA polymerase subunit alpha 3.17979134865e-07 0.00012584070998 50675066779.2 +UniRef50_UPI0004730699 hypothetical protein, partial 5.90007538297e-07 7.20348592853e-07 52620283.1889 +UniRef50_UPI00047D1B9F hypothetical protein 5.87799486135e-07 4.78548480246e-07 -44105971.738 +UniRef50_E2QG11 Receptor protein 4.15290197654e-05 2.04806734375e-05 -8497475704.83 +UniRef50_T1ADV2 Pyridine nucleotide transhydrogenase subunit alpha 2.38841538244e-07 4.180411274e-07 72345073.1685 +UniRef50_N0SZ54 Ribosomal RNA large subunit methyltransferase F 6.08029457276e-06 1.90731994744e-06 -1684681064.4 +UniRef50_UPI0002379B91 glutamine ABC transporter ATP binding protein 8.88855142422e-07 7.36755713723e-07 -61404405.8357 +UniRef50_U5MMN5 Sensor protein GtcS 2.40136730035e-06 8.71504193622e-06 2548907928.0 +UniRef50_A8IMG6 1.05213898548e-07 1.62660381331e-07 23191850.0471 +UniRef50_UPI0003B34E5F NADH quinone oxidoreductase subunit F 3.53993288383e-08 8.39531118976e-08 19601758.043 +UniRef50_A3CP57 9.07002511004e-05 8.63415031478e-06 -33131091951.5 +UniRef50_R7JSE9 Appr 1 p processing domain protein 5.35329799714e-08 9.56916415376e-07 364706978.634 +UniRef50_A6U0P1 Bifunctional purine biosynthesis protein PurH 0.000218753187337 4.57302768351e-05 -69851472199.5 +UniRef50_D3DYR0 Molybdopterin biosynthesis protein MoeA1 3.24944342893e-05 4.52450660442e-06 -11291803036.0 +UniRef50_A6WXN2 Cysteine synthase A 1.30018136227e-06 5.57131604534e-05 21967187381.4 +UniRef50_F9ZDK1 3.37111282454e-07 6.67430696767e-08 -109150965.289 +UniRef50_Q2NUJ6 8 amino 7 oxononanoate synthase 3.99810123578e-05 3.37579472008e-05 -2512327769.48 +UniRef50_B0VSH8 1.43895548483e-06 0.000110025074475 43837548737.8 +UniRef50_D1WNS1 3.7892125551e-07 1.6406483622e-05 6470523607.66 +UniRef50_V9Y3L4 4.02885329893e-06 3.31623239557e-06 -287693803.528 +UniRef50_S9QX59 Asparagine synthetase A 4.63086470958e-07 3.31497843772e-07 -53123943.569 +UniRef50_I2NA66 Putative transposase 6.64192932355e-08 8.52258612792e-06 3413858320.0 +UniRef50_K7SNW3 Biotin requiring enzyme 8.04874176639e-07 1.95593859233e-05 7571426535.88 +UniRef50_Z3WPG1 Quinolone resistance protein norA 6.82914692114e-06 2.69066780044e-05 8105545677.34 +UniRef50_U3JHG3 1.38918322733e-07 5.00532640968e-08 -35875914.6683 +UniRef50_G8P8V7 Transcriptional regulator, TetR family 2.18199993555e-06 6.82813191202e-06 1875700493.35 +UniRef50_M9VE40 DNA polymerase III subunit beta 2.57388808393e-06 6.19901311715e-05 23987066453.8 +UniRef50_UPI0003B45127 adenosylcobinamide amidohydrolase 8.24948297216e-07 1.17808899184e-06 142567231.943 +UniRef50_Q7VRJ3 3 octaprenyl 4 hydroxybenzoate carboxy lyase 5.72408336432e-08 4.8384120152e-07 172223803.487 +UniRef50_E1ZM35 3.16669191744e-08 2.84236216817e-07 101965324.832 +UniRef50_Q3IUW2 Sex pilus assembly protein 0.000281196200925 3.15021751953e-05 -1.00804542277e+11 +UniRef50_A0A059LE43 3.06260763212e-07 1.21002849056e-06 364862122.008 +UniRef50_L7X117 0.000191231733148 2.23825152444e-05 -68166501280.8 +UniRef50_Q5HM49 Transporter, putative 0.000213051256247 4.9672390802e-05 -65958052864.3 +UniRef50_E8ZPJ7 Flagellar motor rotation protein MotB 9.4128649863e-06 2.18132411405e-05 5006184023.18 +UniRef50_Q8FDB4 Toxin YhaV 3.47749112547e-05 2.08458850726e-05 -5623318798.09 +UniRef50_P31448 1.07272792866e-05 1.02212553568e-05 -204288070.072 +UniRef50_A0A017IJ86 2.44789231481e-06 2.81382160804e-06 147730146.134 +UniRef50_UPI000409D88E ABC transporter ATP binding protein 3.58313550975e-08 6.41405502813e-08 11428769.4886 +UniRef50_U1GJH2 1.47030468737e-07 1.0239062436e-07 -18021652.9675 +UniRef50_R5LKI5 2.32839171695e-05 1.15725372531e-05 -4728027787.04 +UniRef50_UPI00047A834E hypothetical protein 1.11014512165e-06 1.42301692954e-07 -390730268.939 +UniRef50_I6T4P1 Peptidoglycan hydrolase 6.70845175229e-05 3.48859502504e-05 -12998956728.8 +UniRef50_F8HDN7 GTPase HflX 5.31731433307e-05 3.61993831836e-05 -6852515262.84 +UniRef50_S5CMF0 Lysine ornithine N monooxygenase 1.0202324023e-06 7.95027182549e-05 31684342627.1 +UniRef50_D9VIL0 Predicted protein 1.53573611612e-06 1.5899866043e-06 21901587.8066 +UniRef50_A5EJC6 3 dehydroquinate dehydratase 9.49616816534e-07 8.89289109897e-07 -24355035.4736 +UniRef50_R9SJV5 2.63635198837e-05 2.94335586571e-06 -9455007611.8 +UniRef50_X6L1Q7 1.16778683408e-06 2.93396353982e-07 -353002166.793 +UniRef50_A6LY84 RNA directed DNA polymerase 4.34393979868e-06 1.30425650155e-05 3511741744.17 +UniRef50_P08395 Protease 4 2.22398001135e-05 1.57480391412e-05 -2620803567.38 +UniRef50_P21881 Pyruvate dehydrogenase E1 component subunit alpha 0.000179371443628 8.6235632723e-05 -37600069767.3 +UniRef50_C1F934 Glycine cleavage system H protein 0.000288539773614 3.07449230898e-05 -1.04074944655e+11 +UniRef50_S5F6B6 Carbonic anhydrase 4.15446119826e-07 8.42574207011e-08 -133704941.979 +UniRef50_D4G4T6 5.7469821423e-07 3.49773580148e-07 -90804834.9145 +UniRef50_A0A024HMN0 3.91853967671e-06 1.38406772972e-06 -1023197426.47 +UniRef50_Q1GK69 Peptidyl tRNA hydrolase 8.85381953972e-07 4.42063883791e-07 -178972945.057 +UniRef50_A0KZ99 Ribosomal RNA large subunit methyltransferase M 2.27457323911e-05 9.67514881814e-06 -5276754982.52 +UniRef50_A4VKN0 DNA ligase 5.36467342314e-06 4.03952028561e-06 -534980583.078 +UniRef50_F0P455 Transcriptional regulator, LysR family 0.000126720514182 3.65741191777e-05 -36393205883.9 +UniRef50_Q47208 Protein FdrA 2.69823892419e-05 9.98169253062e-06 -6863389884.36 +UniRef50_UPI000470719A hypothetical protein 8.09405787415e-06 3.76273312674e-06 -1748608951.86 +UniRef50_Q98I23 Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2 0.000112907531346 1.80753727094e-05 -38284906163.0 +UniRef50_A8MGM7 Histidine tRNA ligase 3.83531696865e-08 1.27237515733e-05 5121251002.88 +UniRef50_Q5HNS1 Histidine tRNA ligase 7.09239387417e-05 2.49233214643e-05 -18571013685.9 +UniRef50_A8MHC4 tRNA ) methyltransferase 4.92502060568e-06 2.29233378357e-05 7266141529.94 +UniRef50_Q6FAF0 0.000114581508055 0.000125134159118 4260234729.72 +UniRef50_B9KN35 Tyrosine recombinase 0.000110153288993 1.6529579735e-05 -37797040319.6 +UniRef50_J8RT93 1.02560902995e-06 1.08563047887e-06 24231395.475 +UniRef50_P31447 2.61199428869e-05 1.6911398858e-05 -3717602226.01 +UniRef50_I4WA77 Cupin 9.78337770766e-07 6.17355340618e-07 -145733036.803 +UniRef50_A9NHF4 Tyrosine tRNA ligase 6.02686790342e-08 2.75516539321e-07 86898202.5861 +UniRef50_UPI0002B46B6C PREDICTED 7.27489706034e-07 1.02217714716e-07 -252429975.845 +UniRef50_U5MSB6 Actin like ATPase involved in cell division 3.12263919734e-06 3.33837366925e-06 87094653.6697 +UniRef50_D9RE66 0.000171733699952 3.30947177673e-05 -55970258399.7 +UniRef50_A8G7C4 Lysine tRNA ligase 3.16598278359e-08 9.21418366545e-08 24417329.1578 +UniRef50_W9GGB6 4.63256884592e-07 2.54756518198e-07 -84174156.5005 +UniRef50_Q8CP80 Maltose maltodextrin transport permease like protein 9.89120722369e-05 3.95888975696e-05 -23949493590.4 +UniRef50_B7H087 Acetate kinase 2.59452833451e-06 7.18777906633e-05 27970503203.4 +UniRef50_Q3IUU3 0.000188881920516 6.70040016913e-05 -49203611439.9 +UniRef50_Q3IUU2 0.000159041357202 2.46280133573e-05 -54264316347.4 +UniRef50_Q3IUU1 0.000230438108927 6.0360527903e-05 -68662406546.0 +UniRef50_Q3IUU0 6.51793720796e-05 4.38939776545e-05 -8593174930.58 +UniRef50_C7NTI4 Oxidoreductase 1.703150927e-07 1.12845321756e-07 -23201251.7635 +UniRef50_UPI0002E8C668 hypothetical protein 1.53638399363e-07 1.04544214404e-07 -19819924.9213 +UniRef50_X9ZAP3 0.000126048090474 1.16228549627e-05 -46194871731.3 +UniRef50_C4REF2 9.02213839011e-08 1.52850913431e-07 25284309.622 +UniRef50_W8X9Y2 4.92853497076e-06 3.52968173539e-06 -564734216.978 +UniRef50_UPI000372F67C hypothetical protein 4.46136915496e-07 2.44394639562e-06 806540203.004 +UniRef50_D5AN32 Na+ solute symporter histidine kinase 4.18552828243e-05 1.71525271346e-05 -9972805608.83 +UniRef50_UPI0004686CF3 DNA processing protein 8.14873273029e-07 7.77469149418e-07 -15100503.702 +UniRef50_UPI0003709489 hypothetical protein 5.93749840887e-08 1.14775116548e-07 22365713.3099 +UniRef50_A0A021W377 4.55616423831e-06 9.55954285953e-07 -1453448937.31 +UniRef50_I0C6Z8 Transcriptional regulator, RpiR family 0.000198593555728 4.03829350683e-05 -63871569023.1 +UniRef50_A4FXY0 ATP phosphoribosyltransferase 2.1917006289e-05 5.57440784418e-06 -6597707538.4 +UniRef50_UPI0004793307 arginine ABC transporter ATP binding protein 3.11739942067e-07 3.19267971495e-07 3039157.85939 +UniRef50_UPI0003346A33 PREDICTED 1.01502877674e-06 1.10491093052e-06 36286528.459 +UniRef50_UPI00037EBF8D hypothetical protein 3.31220580153e-08 3.49998163542e-08 758074.0841 +UniRef50_UPI0004749A8E hypothetical protein, partial 1.54484434021e-07 2.29404779047e-07 30246262.663 +UniRef50_D3E438 Transcriptional regulator 2.35438246685e-06 3.76199624447e-06 568270955.389 +UniRef50_UPI00037D9D80 hypothetical protein 1.31082291724e-07 6.5785020285e-07 212662669.891 +UniRef50_UPI00046F048D hypothetical protein 7.62181273444e-08 4.74164384982e-07 160655787.558 +UniRef50_H8GSQ7 2 oxoisovalerate dehydrogenase, ODBB 1.09734299089e-06 0.000414945050286 1.67075397917e+11 +UniRef50_UPI0002F0E78D hypothetical protein 4.616173654e-07 1.11029690496e-07 -141536546.553 +UniRef50_S2EW51 4.12393286296e-07 2.70843064575e-07 -57145561.5253 +UniRef50_X5EI43 2.66460698017e-06 2.46387372732e-05 8871226052.19 +UniRef50_H3K0N4 ABC transporter ATP binding protein 0.000123130925283 1.61917052688e-05 -43172675411.5 +UniRef50_P33983 RNA polymerase sigma 54 factor 2.22985006094e-06 6.28274989442e-05 24464014471.0 +UniRef50_Q3JQY5 1.24041122045e-06 2.41998405252e-07 -403071505.398 +UniRef50_UPI0004679CCC 50S ribosomal protein L6, partial 7.43227108272e-07 7.41801608231e-07 -575491.859404 +UniRef50_Q0A5K0 Succinyl CoA ligase [ADP forming] subunit beta 1.25601820849e-07 1.67423955609e-07 16884109.0179 +UniRef50_G2JIW3 Enoyl CoA hydratase carnithine racemase 3.48448605091e-06 7.30990622933e-05 28104258696.0 +UniRef50_UPI00037A4F24 hypothetical protein, partial 6.90312984757e-07 7.16722269859e-07 10661752.474 +UniRef50_P67371 DegV domain containing protein SA1258 0.000188807561605 3.72933095145e-05 -61168162858.1 +UniRef50_G8VAM5 Transferase 8.55330790492e-07 5.8082201334e-05 23103189891.1 +UniRef50_UPI00046527B9 diguanylate cyclase 8.51910015367e-08 1.09405114023e-07 9775534.35129 +UniRef50_B9EB64 Bifunctional protein PyrR 3.19139163426e-07 6.52042832446e-07 134397296.371 +UniRef50_P45053 Oligopeptide transport system permease protein OppC 1.60299492796e-05 6.77046210608e-06 -3738168598.64 +UniRef50_A5FG89 Lon protease 1.37771355036e-08 5.28039767225e-08 15755614.7133 +UniRef50_P10768 S formylglutathione hydrolase 4.27875368191e-05 1.08034769734e-05 -12912357448.3 +UniRef50_Q5LZ72 Phenylalanine tRNA ligase beta subunit 5.59061506466e-05 6.11890388621e-05 2132766800.93 +UniRef50_W1UDP7 Surface protective antigen SpaA 3.87899399708e-06 3.92408042021e-05 14275996718.0 +UniRef50_UPI00047EAA8B hypothetical protein 2.97014066686e-08 6.16556953381e-08 12900338.4591 +UniRef50_D6M4Y7 Peptidase C14, caspase catalytic subunit p20 4.58566943327e-07 3.71379696512e-06 1314176305.96 +UniRef50_UPI0001E896F1 ATPase 1.16187525186e-07 2.25994083022e-07 44330254.8764 +UniRef50_UPI00037DE191 hypothetical protein 6.4112953349e-08 5.33948350804e-06 2129731829.0 +UniRef50_UPI000467F219 type I secretion protein 1.07008823361e-07 7.11283328012e-08 -14485394.3421 +UniRef50_I1ELJ8 1.99602454323e-06 9.14968757791e-07 -436435486.628 +UniRef50_UPI0001B41487 ATP dependent protease ATP binding subunit HslU 2.56320928773e-07 1.32826104285e-06 432755378.239 +UniRef50_B9IYP4 Formate tetrahydrofolate ligase 1.88838473161e-06 2.69829818879e-06 326972001.419 +UniRef50_UPI00046EB4AA hypothetical protein, partial 1.95854501175e-07 1.50517408535e-07 -18303140.6475 +UniRef50_B0VBG2 2.78497783418e-06 6.72224117113e-05 26014182792.4 +UniRef50_Q9CMM8 Selenide, water dikinase 4.71221466806e-05 1.88696620209e-05 -11405874754.1 +UniRef50_UPI0003B5EFE3 hypothetical protein 7.18860393996e-08 1.42598597216e-06 546666759.53 +UniRef50_UPI00047CBC2F diacylglycerol kinase 1.68109342939e-07 6.46445264066e-07 193110081.201 +UniRef50_U1TXR6 3.83209154752e-06 2.62846566382e-06 -485918539.4 +UniRef50_D5AS82 SsrA binding protein 4.217737032e-05 4.54333392607e-06 -15193322313.8 +UniRef50_UPI00037E7A93 hypothetical protein 6.21520284304e-08 1.809391916e-07 47955835.4541 +UniRef50_B9NUC1 2.63684126974e-05 8.98109404517e-06 -7019473906.29 +UniRef50_P0ADH6 Type 1 fimbriae regulatory protein FimB 1.17594377016e-05 7.15919285321e-06 -1857175296.65 +UniRef50_R7PU85 1.57966338382e-05 5.44818206587e-05 15617684640.1 +UniRef50_P06134 Bifunctional transcriptional activator DNA repair enzyme Ada 3.35467093571e-05 1.38236693724e-05 -7962433270.74 +UniRef50_W1XPX0 NADH quinone oxidoreductase subunit L 1.15829105569e-06 6.49002375505e-07 -205606089.866 +UniRef50_UPI0003C1934F 3.78417411257e-07 2.5895969802e-08 -142317231.84 +UniRef50_C7MB99 Methyltransferase family protein 7.44243175817e-05 2.27391446052e-05 -20865938579.0 +UniRef50_UPI0002B4434D 2.78046370792e-08 6.21010806232e-07 239484609.945 +UniRef50_E6JE24 Integral membrane protein 4.09823469531e-09 5.50411747651e-09 567572.130892 +UniRef50_R4R862 Sensor protein RstB 1.06447486408e-05 2.87328884659e-06 -3137433685.46 +UniRef50_B9KTV5 Extracellular solute binding protein, family 3 5.0268720665e-05 6.06661121221e-06 -17844934007.0 +UniRef50_Q7N772 Protein NrdI 1.25669523943e-07 6.82413956352e-07 224764559.386 +UniRef50_P09162 4.24141560512e-06 3.27500377695e-05 11509280607.9 +UniRef50_G7M7A9 Transcriptional regulator, MarR family 3.61502176702e-06 9.11075144815e-06 2218693512.46 +UniRef50_A6LW07 Periplasmic binding protein LacI transcriptional regulator 3.52588665638e-06 1.04338790602e-05 2788841304.02 +UniRef50_G7U7C0 Transporter, major facilitator family protein 1.2653161638e-06 8.21193458673e-05 32641763981.8 +UniRef50_X7V429 HD domain protein 1.58293703042e-07 2.6534702342e-07 43218739.1286 +UniRef50_B2V5D3 UV damage endonuclease UvdE 9.41992832652e-06 2.8184960095e-05 7575673597.78 +UniRef50_P63590 3 dehydroquinate dehydratase 3.70560175667e-05 6.739333854e-05 12247548757.7 +UniRef50_Q51161 Dihydropteroate synthase 7.90613099492e-08 3.27148269588e-05 13175459078.3 +UniRef50_Q89376 2.39686355964e-08 6.45927211468e-08 16400441.8503 +UniRef50_Q8CRZ8 7.90010380089e-05 5.30120797493e-05 -10492061369.8 +UniRef50_Q8CRZ9 9.62120989327e-05 3.22620327274e-05 -25817426482.6 +UniRef50_W8U6I9 AAA domain containing protein YrvN 3.13453926406e-06 1.77363963041e-05 5894948871.98 +UniRef50_Q8CRZ1 2.07115559023e-05 1.4586493131e-05 -2472763003.75 +UniRef50_Q8CRZ2 7.50356750985e-05 2.50352311195e-05 -20185792808.8 +UniRef50_Q8CRZ3 7.7284168268e-05 3.89350518463e-05 -15482008896.0 +UniRef50_Q8CRZ4 7.31681357456e-05 2.6196801655e-05 -18962903975.5 +UniRef50_Q8CRZ7 0.000108567159428 3.87078172572e-05 -28203073704.9 +UniRef50_A7ZQU2 Bifunctional protein Aas 6.54323084117e-06 9.40000122672e-07 -2262093000.43 +UniRef50_UPI00047B3496 molybdenum cofactor biosynthesis protein MoeB 1.66385641126e-07 4.43993430872e-07 112073671.351 +UniRef50_UPI0003A35158 hypothetical protein 4.70725546009e-08 6.97508947712e-08 9155524.22128 +UniRef50_A5WHC3 4 hydroxy tetrahydrodipicolinate synthase 1.38969684288e-06 5.0351708271e-05 19766564845.0 +UniRef50_P65103 Isopentenyl diphosphate delta isomerase 4.05480175395e-05 4.00813441353e-05 -188401780.002 +UniRef50_UPI0000557F47 hypothetical protein 2.27065328509e-06 2.31952606917e-06 19730542.6696 +UniRef50_Q6GHN9 Lipoprotein signal peptidase 0.000141048611762 2.80216732161e-05 -45630362087.5 +UniRef50_S4YB05 1.24376858201e-06 7.96430386153e-07 -180595919.124 +UniRef50_I0LGH2 ABC type transporter, periplasmic component 1.14119418896e-07 4.70868645767e-07 144024040.693 +UniRef50_UPI000471C41C spermidine putrescine ABC transporter ATPase 5.47967384213e-07 2.78837464855e-07 -108651051.04 +UniRef50_UPI00037D6690 hypothetical protein 3.14905879948e-08 8.85293101891e-07 344690552.195 +UniRef50_UPI0003B79E24 inner membrane translocator 6.71891356697e-08 4.995245077e-08 -6958661.21192 +UniRef50_UPI00029ADD09 dehydrogenase E1 component 2.29540197336e-08 6.95669276728e-07 271583404.393 +UniRef50_A0A023S2F8 Type I deoxyribonuclease HsdR 1.78621130367e-06 8.83110911525e-05 34931155774.6 +UniRef50_H4UHR1 K H(+) antiporter NhaP2 1.03752419948e-05 2.13869711137e-06 -3325194243.21 +UniRef50_A6LYC9 ThiJ PfpI domain protein 4.75987449258e-06 2.08335419594e-05 6489136802.43 +UniRef50_B9KL85 Transporter, RhaT family, DMT superfamily 2.75848749377e-05 3.85414392769e-06 -9580387317.55 +UniRef50_Q9XE67 3.48750152386e-07 2.1993264817e-07 -52005207.2205 +UniRef50_F8FDJ3 1.10903701447e-08 1.16098682432e-07 42393144.2672 +UniRef50_Q5H175 Dihydrolipoyl dehydrogenase 8.42602653634e-07 6.47369290447e-05 25794923635.6 +UniRef50_C6WVP9 DoxX family protein 4.10038053669e-07 4.71766814374e-07 24920658.1937 +UniRef50_UPI0003B7B25C alanine glycine permease 4.4189377499e-07 3.92555254348e-05 15669539397.9 +UniRef50_D3DZS4 2.4448721345e-05 3.32336463118e-06 -8528565742.64 +UniRef50_C0PAL9 1.04808220079e-06 3.18844231656e-07 -294402316.896 +UniRef50_UPI00038F99E9 hypothetical protein, partial 6.52365554942e-08 5.61078940713e-07 200177655.583 +UniRef50_Q2RFS8 Energy coupling factor transporter ATP binding protein EcfA 1.37678363702e-07 6.46066778025e-07 205242641.49 +UniRef50_H1XUH5 Cysteine desulfurase 5.36623894244e-05 4.77537728117e-05 -2385381033.43 +UniRef50_X2M2B8 Multidrug transporter 3.68490472939e-05 1.17825399277e-05 -10119656624.4 +UniRef50_UPI0003642FB6 hypothetical protein 7.43860068587e-07 2.40273149764e-07 -203304218.835 +UniRef50_Q42577 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 3.39975530249e-07 2.95833410853e-07 -17820715.2849 +UniRef50_M9VCQ3 UvrD REP helicase 2.90220748966e-06 6.79535657305e-05 26262031591.7 +UniRef50_A1YRL8 Cassette chromosome recombinase A 8.17738679606e-05 1.76457998533e-05 -25889288034.8 +UniRef50_Q8L940 Pyridoxal biosynthesis protein PDX1.3 2.58182898383e-07 3.74091744826e-05 14998311196.5 +UniRef50_UPI00047114BD hypothetical protein 2.53149989052e-08 2.11421898796e-07 75133639.2745 +UniRef50_UPI00016C4C7D molecular chaperone GroEL 3.34732511688e-07 1.10966693241e-07 -90337006.8224 +UniRef50_Q44058 Acyl homoserine lactone synthase 9.26002480944e-08 1.26777051579e-07 13797594.9633 +UniRef50_B1FL99 RemN protein 6.57733614019e-06 3.73015824303e-06 -1149440655.89 +UniRef50_UPI00045E9959 sarcosine oxidase subunit alpha 1.40493937095e-07 6.81528934358e-08 -29204967.0497 +UniRef50_UPI00047E113B hypothetical protein 2.09772275841e-07 2.94914456261e-07 34372943.0476 +UniRef50_A1B2B5 Polysaccharide export protein 2.10196899702e-05 3.3816666398e-06 -7120686461.37 +UniRef50_UPI000225EB41 FAD dependent oxidoreductase 2.36573505899e-07 2.52717590457e-05 10107011618.7 +UniRef50_UPI0003B63FA5 hemolysin III 7.76568791787e-08 1.03646502946e-07 10492330.0434 +UniRef50_Q67KN6 NADH quinone oxidoreductase subunit B 2 1.24321375994e-07 1.47641445421e-07 9414598.19711 +UniRef50_Q46901 CRISPR system Cascade subunit CasA 1.28953394128e-05 1.09734315681e-05 -775897781.367 +UniRef50_UPI0003AB1459 hypothetical protein 1.65871459254e-06 6.51749256272e-06 1961548290.47 +UniRef50_UPI000473BBBF ABC transporter, partial 1.08017190095e-07 7.25055494675e-07 249105935.47 +UniRef50_P26647 1 acyl sn glycerol 3 phosphate acyltransferase 3.61027609027e-05 6.82304693505e-06 -11820579831.3 +UniRef50_A0A059E9X7 1.77802645998e-06 8.8480133685e-07 -360605943.312 +UniRef50_UPI000473AECE 4 alpha glucanotransferase 1.56260874176e-07 6.2188175466e-06 2447528524.59 +UniRef50_P24241 PTS system arbutin , cellobiose , and salicin specific EIIBC component 9.59976124565e-06 1.67955131452e-05 2905013343.65 +UniRef50_I4KLQ2 Phosphate ABC transporter, permease protein 6.4206337963e-06 6.93388382863e-06 207205336.338 +UniRef50_A7X4U8 ATP synthase subunit delta 0.000274847006939 5.29113851919e-05 -89598133955.6 +UniRef50_X2NAF9 Glycerol 3 phosphate dehydrogenase 1.25208932704e-05 6.52027110056e-06 -2422524805.88 +UniRef50_UPI000361DA3C hypothetical protein 8.33399264168e-06 1.24167937525e-06 -2863253898.13 +UniRef50_B4RQ53 4.28969156652e-06 4.66222470045e-05 17090172109.2 +UniRef50_Q9FZ42 Glucose and ribitol dehydrogenase homolog 1 1.89084954643e-07 3.78563893164e-07 76494972.649 +UniRef50_A3PPH2 6.74917133269e-06 7.07415861126e-06 131201352.401 +UniRef50_I4YVW1 TRAP type C4 dicarboxylate transport system, small permease component 5.31021978418e-07 3.43527978771e-07 -75693628.4676 +UniRef50_Q9RRJ1 Nucleoside diphosphate kinase 1.3146618852e-07 6.09016050498e-05 24533650791.8 +UniRef50_S5N397 p6.9 2.27579096253e-06 3.60965429503e-07 -773038565.236 +UniRef50_UPI000328C952 PREDICTED 2.59285633722e-06 3.67228242781e-06 435777558.819 +UniRef50_Q0BEA7 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 3.02262802495e-06 3.17166439827e-06 60167812.7912 +UniRef50_A6M2L1 2.24186990672e-06 9.86691849689e-06 3078325685.72 +UniRef50_UPI0004095AFD hypothetical protein 5.36155723618e-07 3.46015217629e-07 -76762055.5542 +UniRef50_M1MFL6 ATP dependent DNA helicase Rep 1.11519982377e-06 1.08831705254e-05 3943449638.73 +UniRef50_B7K205 Peptide chain release factor 1 5.57848924943e-05 9.29519190096e-06 -18768462622.3 +UniRef50_S6AT82 2.16982459302e-05 6.49894566187e-05 17477192997.8 +UniRef50_Q2J4N0 Phosphoribosylformylglycinamidine synthase 1 2.4657308765e-06 0.000124109828601 49109214992.5 +UniRef50_P76657 Inner membrane protein YqiJ 3.04621659419e-05 1.45955537989e-05 -6405546027.36 +UniRef50_UPI000474867C helicase 6.52713525415e-07 1.08687316974e-06 175275576.152 +UniRef50_W5X6U2 Glycoside hydrolase family 28 4.81315052871e-07 2.86777787273e-07 -78537081.3626 +UniRef50_Q83MG9 Probable crotonobetaine carnitine CoA ligase 4.24737238161e-05 7.38914603909e-06 -14164074584.8 +UniRef50_UPI000374E0DC hypothetical protein 2.71531122792e-07 1.73432073752e-06 590546117.914 +UniRef50_UPI0003182F0E amino acid ABC transporter ATP binding protein 1.51848825991e-06 7.40032027594e-07 -314272333.718 +UniRef50_A1VXS2 GTP cyclohydrolase 1 3.11475697043e-07 8.03465479294e-05 32311140801.0 +UniRef50_A3NGW6 2 aminoethylphosphonate pyruvate transaminase 6.35841260221e-06 5.27875642999e-06 -435870445.596 +UniRef50_Q5F904 Cytidylate kinase 9.03460444211e-08 5.43577638848e-07 182975156.447 +UniRef50_D2ZRU8 Transglutaminase like protein 3.59887721456e-05 8.6684012795e-06 -11029568977.3 +UniRef50_D5QFG0 Oligopeptide dipeptide ABC transporter, ATP binding protein like protein 7.44897272059e-05 1.46101880512e-05 -24174104761.3 +UniRef50_UPI0003B64D82 DNA topoisomerase III 4.59698119917e-08 6.22626347786e-08 6577612.49449 +UniRef50_UPI00016AA13E hypothetical protein 1.6667708334e-06 4.06548696204e-06 968391136.689 +UniRef50_Q9CM13 Magnesium and cobalt efflux protein CorC 1.55357691633e-05 2.03432862359e-06 -5450697227.18 +UniRef50_A5UMG3 Potassium transport system, membrane component, KefB 2.72328369291e-05 4.06295068956e-06 -9353967401.36 +UniRef50_Q9HZP9 Precorrin 4 C methyltransferase 3.12833692416e-06 2.17181010258e-07 -1175269366.34 +UniRef50_Q9RVT2 8.71121512734e-06 0.000590542470524 2.34892417676e+11 +UniRef50_UPI000375E2EF hypothetical protein 3.24993960027e-06 9.30806073818e-07 -936262663.597 +UniRef50_Q6GE66 Probable malate 0.000166860722604 2.15418778532e-05 -58667000888.7 +UniRef50_G7M706 Helix turn helix domain protein 6.60666894504e-06 8.36811138647e-06 711115928.935 +UniRef50_C5VY51 AzlC family protein 3.24217012165e-05 2.94864050536e-05 -1185015081.1 +UniRef50_G5JXL5 Rod shape determining protein MreD 4.1767438353e-05 3.50177911301e-06 -15448316207.6 +UniRef50_F3EJZ8 Nitrate reductase 2.89289472983e-06 1.49088990278e-06 -566006553.214 +UniRef50_X0YTR7 Marine sediment metagenome DNA, contig 1.7824664518e-07 5.81656972798e-07 162861699.661 +UniRef50_UPI000471CA6A hypothetical protein 1.17911908514e-07 3.01185690832e-07 73989874.944 +UniRef50_UPI0003637C6B hypothetical protein 4.09722061318e-08 6.52884024894e-08 9816746.86285 +UniRef50_X2GN29 Metal ABC transporter permease 0.000193804739881 6.09686235275e-05 -53627570254.2 +UniRef50_UPI000423E6F5 hypothetical protein 1.84440341707e-07 4.29187666253e-07 98807498.3066 +UniRef50_UPI00046990FD O acetylhomoserine aminocarboxypropyltransferase 2.68455580989e-07 3.32256545049e-07 25757232.1169 +UniRef50_F3U3H0 ABC peptide opine transporter, periplasmic substrate binding protein 6.49281197224e-05 2.56849384026e-05 -15842953866.8 +UniRef50_UPI0003B4A86D ABC transporter ATP binding protein 2.75671047908e-07 1.45948801259e-06 477921435.709 +UniRef50_B3PG87 Metallo beta lactamase superfamily domain protein 1.91698106923e-05 1.35118073172e-05 -2284205394.04 +UniRef50_A0A023X460 HGPRTase 0.000116587614098 8.74283461916e-05 -11771954278.3 +UniRef50_A0A059IPV7 3.22776355119e-07 5.47785584726e-07 90838987.1661 +UniRef50_F9NYN7 Conserved domain protein 2.10792734961e-07 1.82277505187e-07 -11511948.181 +UniRef50_UPI00046C8F06 50S ribosomal protein L1 2.87599279876e-07 2.9912818424e-06 1091509828.41 +UniRef50_H5T409 ABC transporter substrate binding protein 1.64349257588e-07 1.36336056775e-07 -11309272.9288 +UniRef50_D8N394 5.14014845735e-09 2.30198674676e-06 927265157.211 +UniRef50_E0MSL9 Thymocyte nuclear protein 1 2.14039403528e-06 7.68021641043e-07 -554043576.458 +UniRef50_A6M2L8 Protein tyrosine phosphatase 7.61355179524e-06 7.94866846363e-06 135290711.373 +UniRef50_A6LYX8 ABC transporter related 4.44407956235e-06 2.33264697442e-05 7623052629.38 +UniRef50_A8Z6F5 Chorismate synthase 4.66752535798e-08 2.32425642669e-07 74989711.4888 +UniRef50_B5L3R8 WfeY 1.21904558218e-06 1.17898064305e-07 -444546765.568 +UniRef50_UPI00047E8000 hypothetical protein 1.44412795432e-07 2.92841500612e-07 59922489.7062 +UniRef50_M9V9W9 3.20355860411e-06 3.34421710288e-05 12207698905.4 +UniRef50_W5ENS0 1.22295676732e-06 2.16403482487e-06 379924760.159 +UniRef50_Q8CNA9 Phosphoglycolate phosphatase 0.000264437636495 6.05454864904e-05 -82313762995.1 +UniRef50_B9KMF0 6.1197918371e-06 7.85355569744e-07 -2153577382.03 +UniRef50_R8ZAQ7 Sarcosine oxidase subunit alpha 4.8718082496e-06 9.70181975066e-06 1949934913.88 +UniRef50_UPI00023B2764 9.24284892252e-07 1.11694104904e-06 77777654.6522 +UniRef50_UPI0003C11580 PREDICTED 4.00856192739e-07 7.3225148054e-06 2794358520.23 +UniRef50_Q9K8U9 Oligo 1,6 glucosidase 2.96870063558e-07 5.45003182906e-07 100174385.217 +UniRef50_UPI0002557D02 hypothetical protein 9.42131105622e-07 2.63325686945e-07 -274042077.399 +UniRef50_G7M7C0 Cell wall binding repeat containing protein 5.24837713307e-06 1.74192079327e-05 4913513746.69 +UniRef50_P0AAF0 Probable cadaverine lysine antiporter 3.28549138473e-05 2.61423317635e-05 -2709951759.88 +UniRef50_X1BS27 Marine sediment metagenome DNA, contig 8.39219792183e-08 8.33278922693e-06 3330168932.88 +UniRef50_UPI000478AB20 ABC transporter ATP binding protein 7.94809058969e-08 3.53692605646e-07 110702628.145 +UniRef50_F0RJQ8 Acetolactate synthase 6.66543829593e-07 0.000181524746349 73014675736.6 +UniRef50_A8IE40 Chromate transport protein 2.27858745785e-06 0.000114583824763 45339002440.3 +UniRef50_W1YMN4 2.71576867072e-07 1.93955156783e-07 -31336836.9692 +UniRef50_UPI000403C5BD hypothetical protein 1.15042475194e-08 5.97033688853e-08 19458576.7651 +UniRef50_UPI000373B07D hypothetical protein 5.03149491931e-07 2.3452986544e-05 9265130844.1 +UniRef50_D4ZGG3 6.26483866483e-07 3.45759184601e-07 -113331998.955 +UniRef50_C7RB36 Acyl CoA dehydrogenase domain protein 4.19858406031e-06 7.15211876228e-05 27178961199.4 +UniRef50_P56904 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 2.97730951128e-06 1.55432747759e-05 5073034379.05 +UniRef50_Q04760 Lactoylglutathione lyase 9.65764210344e-08 2.45987469006e-07 60319073.546 +UniRef50_Q8CNV0 Spore cortex protein like protein 0.000202037879956 5.81123780409e-05 -58104491287.6 +UniRef50_UPI00029B28E4 hydrogenase nickel incorporation protein HypA 4.29119391833e-07 2.93511963384e-07 -54746382.9551 +UniRef50_UPI0003B738BF O acetylhomoserine aminocarboxypropyltransferase 3.37917667269e-07 1.98595781917e-07 -56245954.7884 +UniRef50_UPI00037956D5 hypothetical protein 3.55002497348e-06 5.38571498834e-06 741090585.449 +UniRef50_UPI00017458ED ATP binding transport protein; multicopy suppressor of HtrB 3.79513768276e-07 3.10307854756e-07 -27939276.5401 +UniRef50_K1H2M5 Carbamoyl phosphate synthase small chain 3.3765307492e-07 1.50871337279e-07 -75406079.5553 +UniRef50_Q59330 Phosphate acetyltransferase 9.94885703294e-08 9.17584688273e-06 3664237230.16 +UniRef50_Q5HQY7 Glycerate kinase family protein 0.000230993969468 7.53952607299e-05 -62817108128.4 +UniRef50_B0S0R4 Transcriptional regulator PadR family 1.66711485341e-06 3.28638116755e-07 -540359483.542 +UniRef50_A6LXB1 5.42483980407e-06 7.79854278838e-06 958293023.377 +UniRef50_P08194 Glycerol 3 phosphate transporter 2.84773049005e-05 1.77966095472e-05 -4311927781.0 +UniRef50_UPI000471094A choline dehydrogenase 4.33495444514e-07 9.76951704318e-08 -135566691.38 +UniRef50_M0E7L5 DRTGG domain protein 6.65300784727e-06 4.46857376782e-06 -881882843.895 +UniRef50_UPI0003EDAB70 hypothetical protein, partial 1.2175805297e-07 3.21435333812e-08 -36178481.2518 +UniRef50_A9U7B4 Predicted protein 1.19998569447e-07 5.56513266428e-07 176226339.809 +UniRef50_A3PJJ0 Rhodanese domain protein 4.62663793668e-05 7.28319353752e-06 -15737990496.8 +UniRef50_UPI00035C57AE hypothetical protein 8.81151380126e-08 3.50981612289e-07 106122421.4 +UniRef50_UPI00046311A7 alpha beta hydrolase 6.79545757869e-08 1.98103872999e-07 52542868.396 +UniRef50_UPI00046F6433 hypothetical protein 9.04574574476e-08 1.36758151937e-07 18692158.5388 +UniRef50_UPI000289D647 acetylglutamate kinase 3.03362657076e-07 1.1136113666e-07 -77513369.9155 +UniRef50_R6BWJ5 Efflux ABC transporter permease ATP binding protein 3.9281974601e-05 1.27546790154e-05 -10709394754.4 +UniRef50_H9UWH8 4.09173312276e-07 8.86865088187e-07 192850031.873 +UniRef50_Q4SXX9 Chromosome undetermined SCAF12296, whole genome shotgun sequence. 2.18209544355e-06 3.15105744735e-06 391181851.435 +UniRef50_F9YXR6 6 aminohexanoate dimer hydrolase 2.03154129289e-06 7.03700367635e-05 27589089229.1 +UniRef50_Q0A9A9 3 isopropylmalate dehydratase small subunit 4.35489648606e-05 2.66770011918e-05 -6811418775.37 +UniRef50_Q88FY7 Porin like protein NicP 7.10914110435e-06 2.33144767263e-06 -1928813467.28 +UniRef50_A4WTZ9 Glycoside hydrolase, family 16 0.000151570967007 2.33932231203e-05 -51746928125.0 +UniRef50_U4K6F1 Methylmalonate semialdehyde dehydrogenase [acylating] 4.2724051235e-06 4.0759234227e-05 14730180652.8 +UniRef50_A0A023RX61 Metal binding protein 2.07030706866e-06 7.49591711923e-05 29426128893.6 +UniRef50_Q75JL2 Mitochondrial DNA repair protein recA homolog 0.000171291469068 7.17525230782e-05 -40185093976.3 +UniRef50_Q03SY7 Dipeptide tripeptide permease 3.05245126778e-06 1.04756524836e-05 2996837423.75 +UniRef50_Q1CBV8 Phosphoenolpyruvate carboxylase 3.23069753667e-05 5.03146823898e-06 -11011456935.6 +UniRef50_E9MXH2 Clumping factor A 2.19662327627e-07 3.06516250148e-07 35063994.3392 +UniRef50_Q8GPI8 6.50048990936e-05 1.68592373696e-05 -19436994451.7 +UniRef50_P0ACL3 Exu regulon transcriptional regulator 6.43298976639e-05 1.63618490691e-05 -19365289851.9 +UniRef50_U1FCM2 7.27781730365e-07 2.27966559755e-06 626514560.941 +UniRef50_S5XWF4 Transcriptional regulator, MerR family 0.000408945019794 1.07350078112e-05 -1.60762268424e+11 +UniRef50_Q48QI5 Oxidoreductase alpha subunit, fusion 2.66838818597e-06 2.69285749417e-06 9878559.99252 +UniRef50_C5N6C7 DHHA1 domain protein 0.000144190351288 7.72569847387e-05 -27021821440.7 +UniRef50_F5YTR0 3.88411229488e-08 1.67695379008e-08 -8910569.73268 +UniRef50_G8VCG0 Acyltransferase 1.24173022652e-06 2.71566575488e-05 10462174171.9 +UniRef50_P0AAN4 Hydrogenase isoenzymes nickel incorporation protein HypB 8.97783075371e-06 8.98070266572e-06 1159426.12076 +UniRef50_G3XD29 Na H(+) antiporter NhaP 6.49990968404e-06 1.69559830726e-06 -1939559458.34 +UniRef50_G7U530 ABC transporter, ATP binding protein 1.71066158086e-06 3.62712468574e-05 13952532382.2 +UniRef50_UPI0003B392E0 hypothetical protein 1.49313321786e-07 3.74806216369e-07 91034248.6521 +UniRef50_M9V971 NADH quinone oxidoreductase subunit C 2.36915892584e-06 4.03669441218e-05 15340172168.9 +UniRef50_Q2IMR8 1.51415191822e-06 8.22296315087e-06 2708429420.99 +UniRef50_K8AK15 Putative threonine efflux protein 4.18586823927e-06 4.69632869441e-06 206079149.794 +UniRef50_Q7VFT4 Donor ubiquinone reductase I 7.9806762976e-07 2.299864913e-05 8962647183.4 +UniRef50_C1DNP3 Short chain dehydrogenase reductase SDR 3.55002497348e-06 2.07380049203e-05 6938998424.76 +UniRef50_C7ZV90 Thioredoxin 5.53694694329e-05 1.82670126925e-05 -14978717084.4 +UniRef50_K9RE57 GAF domain containing protein 3.50148333121e-08 4.01341716278e-06 1606129840.89 +UniRef50_L1AYN6 Inner membrane protein ybjJ 9.6647296573e-06 4.72721838441e-06 -1993333890.94 +UniRef50_Q0B621 Sigma54 specific transcriptional regulator, Fis family 9.43714972093e-07 1.2262285337e-06 114054191.652 +UniRef50_UPI000371346A hypothetical protein 2.06154441932e-07 1.11367090776e-07 -38266816.8333 +UniRef50_A3M4G7 Surface antigen 7.16745548459e-06 8.6049177893e-05 31845519323.9 +UniRef50_E2XNF0 Fatty acid oxidation complex subunit alpha 6.19969900142e-06 2.72526302036e-06 -1402672441.68 +UniRef50_I0G4P6 9.93697147663e-07 3.18488107351e-07 -272590175.321 +UniRef50_Q9HJL5 Malate dehydrogenase 4.05335437595e-07 2.2644805839e-07 -72219030.1801 +UniRef50_P0ACU3 HTH type transcriptional regulator RutR 5.57344305512e-06 8.24139642406e-06 1077085514.51 +UniRef50_C1FT82 D alanyl D alanine carboxypeptidase family protein 6.39806760763e-06 5.3975262049e-06 -403930842.306 +UniRef50_O32333 Glucitol sorbitol specific phosphotransferase enzyme IIB component 3.80853036399e-05 9.14603950022e-05 21548179369.0 +UniRef50_UPI00037CE211 hypothetical protein 2.30410280647e-08 5.24551457363e-08 11874840.2558 +UniRef50_G5LK96 Putative cytoplasmic protein 1.87403410728e-07 9.79140335994e-08 -36127959.705 +UniRef50_UPI0004694C70 glucosamine fructose 6 phosphate aminotransferase 2.29731541851e-07 3.95087757806e-07 66756333.53 +UniRef50_V5VA73 1.02763880809e-06 5.08829324991e-05 20127193856.3 +UniRef50_UPI0002491573 N acylamino acid racemase 1.32760121742e-07 6.21143354204e-06 2454035053.49 +UniRef50_UPI00046F1E63 spermidine putrescine ABC transporter ATP binding protein 1.44007283286e-06 4.16227035212e-07 -413339112.512 +UniRef50_M9VHY4 DeoR family transcriptional regulator 3.02796247737e-06 6.25510872728e-05 24030215910.8 +UniRef50_UPI000345870C hypothetical protein 2.41581313303e-06 1.23692308472e-06 -475932379.11 +UniRef50_L8N0M9 1.65873532762e-07 0.00013027794984 52527841859.9 +UniRef50_P16684 Probable transcriptional regulator PhnF 2.0767266039e-05 5.91429379792e-06 -5996327160.2 +UniRef50_P63978 DNA polymerase III subunit alpha 3.33008563678e-08 4.37896057995e-05 17664957255.8 +UniRef50_D8IGU8 ABC superfamily ATP binding cassette transporter, ABC protein 3.13284475072e-05 2.37521610529e-05 -3058639813.09 +UniRef50_Q604M0 tRNA pseudouridine synthase D 4.58948250417e-08 2.18074369399e-07 69510994.9375 +UniRef50_M0EDY5 8.16215159392e-07 3.98979030029e-07 -168443345.487 +UniRef50_Y1FPC0 5.78450819582e-08 9.58127039807e-08 15327994.9256 +UniRef50_UPI0000E48FF4 PREDICTED 4.09363282213e-07 5.18116360823e-07 43904952.3852 +UniRef50_Q0S277 Probable dual specificity RNA methyltransferase RlmN 2.19875717813e-07 3.2801672109e-07 43657850.0623 +UniRef50_Q3IVM7 4.78719323747e-05 1.42567740779e-05 -13570851908.8 +UniRef50_A3V1R1 Flagellar protein FlgJ, putative 1.16815451647e-06 6.1708474133e-07 -222473630.611 +UniRef50_UPI000370C492 hypothetical protein 6.90633429479e-07 2.48681221594e-07 -178421529.687 +UniRef50_UPI0004647D08 hypothetical protein 3.94375058902e-08 5.33625610055e-08 5621715.62969 +UniRef50_P58839 Glyceraldehyde 3 phosphate dehydrogenase 3.83353550346e-05 2.18700099375e-05 -6647261868.2 +UniRef50_UPI0003B6456C ATP dependent Clp protease ClpS 4.66581291291e-06 1.80998448197e-06 -1152932982.53 +UniRef50_H9V023 TRAP transporter, DctM subunit 3.8819860474e-06 7.77946338983e-07 -1253138921.14 +UniRef50_U7IWX4 4.90081696955e-07 1.02163458263e-06 214594422.834 +UniRef50_UPI0001746414 glycogen debranching protein 6.7671981773e-08 2.35994486284e-07 67953860.6205 +UniRef50_F4CX14 FAD dependent oxidoreductase 7.96889859886e-08 8.55440987e-06 3421348817.39 +UniRef50_N1MM41 3.26353404007e-07 3.30118681505e-07 1520088.73109 +UniRef50_UPI0003B5E825 ArsR family transcriptional regulator, partial 1.26418600835e-06 2.22867962678e-07 -420392873.446 +UniRef50_UPI00039D6F74 ubiquinol cytochrome C oxidoreductase 1.17058806297e-06 3.26570611313e-06 845824866.839 +UniRef50_Q0E4C7 Os02g0125700 protein 1.84294076221e-06 1.18522075738e-06 -265529637.082 +UniRef50_UPI00036A48DC hypothetical protein 6.93114996286e-07 3.0885181098e-07 -155131763.348 +UniRef50_Q5WDJ2 Putative sporulation transcription regulator WhiA 0.000232197598952 7.29635775466e-05 -64284728462.4 +UniRef50_UPI00047AAA82 hypothetical protein 5.1133017633e-08 2.08152779195e-07 63390804.5917 +UniRef50_Q0Q2J7 Putative antiporter subunit mnhD2 0.000167697175769 6.69537082244e-05 -40671374109.3 +UniRef50_P43948 UDP N acetylmuramate 2.62772192774e-06 7.49404349647e-05 29193529629.8 +UniRef50_Q28RG9 Transcriptional regulator, AsnC family 1.26323970846e-05 4.64631616173e-05 13657894792.0 +UniRef50_B7L8J6 2 3 dephosphocoenzyme A synthase 3.31605033119e-05 9.70283455674e-06 -9470148734.44 +UniRef50_UPI0003AEE558 PREDICTED 2.00790419604e-06 4.53085188458e-07 -627699513.135 +UniRef50_UPI00036ED489 hypothetical protein 1.7605382809e-07 6.9202572094e-07 208304184.831 +UniRef50_UPI0003B77D2D DNA repair protein RadA 7.92941540656e-08 5.43068307366e-08 -10087689.0569 +UniRef50_H6LCQ4 Branched chain amino acid ABC transport system permease protein LivM2 3.44817063516e-06 1.1131923804e-05 3102025444.52 +UniRef50_UPI0004663E52 hypothetical protein 5.87993363731e-07 1.26598349593e-07 -186270829.161 +UniRef50_D8HCQ5 Aminopeptidase 9.07523285814e-05 1.84063450864e-05 -29206961322.0 +UniRef50_Q2YQI5 Adenylosuccinate synthetase 1.91397932047e-05 0.000141961314676 49584555407.4 +UniRef50_UPI0003B6ABA5 sugar ABC transporter ATPase, partial 6.02864137675e-07 1.21251564985e-07 -194432905.646 +UniRef50_A1APQ8 Succinyl CoA ligase [ADP forming] subunit beta 1.94654465478e-07 1.25561975779e-07 -27893485.9517 +UniRef50_K4MG34 Beta Ig H3 fasciclin 1.42956855037e-07 3.28145401269e-08 -44465804.1274 +UniRef50_P56145 Phenylalanine tRNA ligase beta subunit 1.67694835908e-06 4.06839703335e-05 15747613441.1 +UniRef50_Q1RH95 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.6665989051e-07 1.81121988447e-07 5838526.40707 +UniRef50_D5WB27 Histidine ammonia lyase 1.7612479445e-06 7.60901936351e-05 30007507494.0 +UniRef50_J9NST0 1.73336490442e-07 5.22636825252e-07 141016831.56 +UniRef50_P00561 Bifunctional aspartokinase homoserine dehydrogenase 1 5.30309264921e-06 5.7016696198e-06 160910414.117 +UniRef50_UPI00047E7181 hypothetical protein 2.53902412244e-08 2.05978482689e-06 821310059.064 +UniRef50_UPI000421E015 hypothetical protein 2.90051009587e-08 3.02782724178e-07 110527386.123 +UniRef50_UPI0003B5F4A9 hypothetical protein 4.49433847056e-07 5.48705522192e-07 40077193.4528 +UniRef50_P77615 2.77974044814e-05 3.06723218398e-05 1160639416.79 +UniRef50_P77616 1.49638617425e-05 2.37202172853e-06 -5083480332.9 +UniRef50_D5AQK3 Cache sensor protein 8.98676496674e-05 3.22197543682e-05 -23273162751.5 +UniRef50_UPI0003B4A397 hypothetical protein, partial 3.10325434458e-07 2.71625023638e-07 -15623830.7555 +UniRef50_UPI00047E19A4 ABC transporter ATP binding protein 2.84490179267e-07 1.91452053039e-07 -37560633.2644 +UniRef50_Q9V8M5 Probable 3 hydroxyisobutyrate dehydrogenase, mitochondrial 9.54187117465e-08 3.7021116699e-07 110937086.265 +UniRef50_I0KAK8 Major facilitator superfamily MFS_1 9.07418242453e-07 5.51195591426e-05 21886106539.1 +UniRef50_UPI00046328AB hypothetical protein 1.67185495395e-07 1.31065009385e-07 -14582283.4504 +UniRef50_I6TSN2 Peptidase 5.90506649337e-05 3.07190401022e-05 -11437824612.6 +UniRef50_UPI000463E283 ABC transporter substrate binding protein 8.08805608656e-08 7.575058767e-07 273161943.129 +UniRef50_G0AA04 Sulfate binding protein sbp 4.08174572246e-05 7.64593547626e-05 14389071411.4 +UniRef50_I6TQ24 Folyl polyglutamate synthetase 6.54218379533e-05 4.4296181832e-05 -8528686617.12 +UniRef50_UPI000366242D hypothetical protein 1.01129802477e-07 2.18898030309e-07 47544478.7544 +UniRef50_S9RVB4 Gene Transfer Agent NlpC P60 family peptidase 3.7055222693e-08 3.98363849304e-07 145864726.318 +UniRef50_M1MRW4 Haloacid dehalogenase superfamily enzyme, subfamily IA 1.72368031437e-06 5.91689469991e-06 1692852103.97 +UniRef50_U6AND4 Transcriptional regulator, LysR family 3.26625231868e-06 5.20367091081e-06 782159660.443 +UniRef50_UPI0003809FBC gluconate transporter, partial 6.67594907431e-08 1.87257969817e-06 729031777.645 +UniRef50_A9ANH6 Transcriptional regulator, AraC family 1.35786326927e-06 2.16349234575e-06 325242344.355 +UniRef50_UPI0004708F76 ABC transporter ATP binding protein 2.36265625571e-07 4.57605766819e-07 89357731.1708 +UniRef50_UPI00036BF64F hypothetical protein 6.29481283748e-08 8.80365369561e-08 10128498.4137 +UniRef50_Q8G5P8 Methionine import ATP binding protein MetN 1.11933076521e-07 7.63900334175e-08 -14349162.6631 +UniRef50_D3E2P1 Bicarbonate ABC transporter ATP binding protein BtcA 4.52309951396e-05 1.29070068068e-05 -13049590749.9 +UniRef50_I6TQK5 5.78422433849e-05 3.3432079833e-06 -22001929370.0 +UniRef50_A1UAJ5 9.20037897169e-05 3.19629765922e-05 -24239213042.1 +UniRef50_I6U427 Sugar binding periplasmic protein 4.81288687163e-05 1.46180753323e-05 -13528718512.8 +UniRef50_C7D6Q8 Lipoprotein, putative 1.84903573751e-07 1.48174907703e-07 -14827813.195 +UniRef50_P36928 3.98547122777e-05 8.13460942127e-06 -12805794772.6 +UniRef50_Q5HLU9 0.000102665343482 2.04692028092e-05 -33183590649.7 +UniRef50_A6UM37 9.87740897369e-06 3.34363005098e-06 -2637766729.58 +UniRef50_W1MWT9 7.56600516044e-06 2.29223833269e-06 -2129084384.76 +UniRef50_Q5HLU0 8.4672416931e-06 9.6825149244e-06 490620716.555 +UniRef50_G7Z253 1.08788854871e-05 7.58250307607e-06 -1330790030.49 +UniRef50_UPI0003784C38 hypothetical protein 8.29434288576e-08 3.78072509614e-07 119147231.542 +UniRef50_Q168A3 Holliday junction ATP dependent DNA helicase RuvA 4.47058521567e-07 2.13994459434e-07 -94090821.9008 +UniRef50_Q9RSC3 UDP glucose 4 epimerase 4.05304692528e-06 0.000203168803191 80385474229.7 +UniRef50_A8AJ50 4.24141560512e-06 6.61156802679e-06 956859617.669 +UniRef50_UPI000465930A MULTISPECIES 1.83696336188e-07 2.38254004777e-07 22025600.3073 +UniRef50_A7ZQY1 D phenylhydantoinase 3.43279192196e-05 1.05400190068e-05 -9603467226.27 +UniRef50_Q8RGA3 Tryptophan tRNA ligase 7.81405623949e-08 1.61317779569e-07 33579663.2724 +UniRef50_UPI000475AC4B lactate permease 4.80190225406e-08 2.58909894511e-07 85139232.9363 +UniRef50_UPI0000164CFE hypothetical protein DR_2417m 6.57459458912e-06 0.000487816943293 1.9428344168e+11 +UniRef50_E4PYL2 Plasmid recombination protein, Mob family 0.00027198422793 4.49850209926e-05 -91642365434.0 +UniRef50_UPI0003614BF9 hypothetical protein 9.29398911926e-06 6.37981684785e-06 -1176487106.88 +UniRef50_K0LK11 ABC transporter, ATP binding protein 0.000182013804019 6.09182674174e-05 -48887754135.6 +UniRef50_A5UME7 Arsenite transporting ATPase 3.8032037515e-05 9.81813823058e-06 -11390297364.6 +UniRef50_Q8CQM8 0.000141874817969 5.77124006317e-05 -33977400668.1 +UniRef50_UPI0003A8604F DNA polymerase I 1.83482923464e-08 3.89210870262e-08 8305489.66882 +UniRef50_Q9KVU3 Peptide deformylase 1 8.77624864117e-07 5.50704173912e-07 -131981894.404 +UniRef50_T1Y647 Ribitol 5 phosphate 2 dehydrogenase 0.000251449596379 0.000109745763734 -57207576140.4 +UniRef50_A5ULT4 Adhesin like protein 3.00512413483e-05 1.02613917044e-05 -7989405150.01 +UniRef50_B5F295 NAD kinase 6.04582796427e-07 8.55455051512e-07 101280207.927 +UniRef50_UPI0003796137 hypothetical protein 3.01303514984e-07 2.75245003707e-06 989557929.918 +UniRef50_UPI00032895A1 PREDICTED 2.23098804281e-07 5.17511559535e-08 -69175148.3017 +UniRef50_A5KZG1 Sex pilus assembly and synthesis protein TraW 1.27498867064e-06 2.70174144772e-07 -405655954.555 +UniRef50_UPI000377C2D0 hypothetical protein 8.06877810059e-07 2.69348466021e-07 -217007192.415 +UniRef50_P0AFB0 Nickel transport system permease protein NikC 3.39311427549e-05 1.07420143177e-05 -9361735712.7 +UniRef50_D8JIG5 3.41654998594e-07 5.37531484332e-07 79077740.9672 +UniRef50_UPI0002195926 spermidine putrescine ABC transporter substrate binding protein 2.63265855334e-07 1.11378965981e-06 343366896.968 +UniRef50_M1MNN2 1.73158710486e-06 7.6512568067e-06 2389843301.15 +UniRef50_D8FZ53 1.44890968787e-07 2.85515219498e-06 1094165715.66 +UniRef50_J7LRM2 Gamma aminobutyraldehyde dehydrogenase 7.97505610236e-07 7.20929462535e-05 28782844281.1 +UniRef50_E6U6T5 Major facilitator superfamily MFS_1 1.10852314383e-05 1.6799595578e-05 2306958926.33 +UniRef50_F2JM65 Alcohol dehydrogenase 4.35691095207e-06 1.14048192533e-05 2845327068.77 +UniRef50_A5UKJ6 2.58369193486e-05 3.22750497486e-06 -9127698031.38 +UniRef50_P40924 Phosphoglycerate kinase 5.23413886284e-07 0.000203077273163 81773478605.5 +UniRef50_UPI0003804C63 hypothetical protein 1.92743421822e-07 1.88740800277e-07 -1615907.43541 +UniRef50_UPI000362831E hypothetical protein 2.54620468734e-08 6.89441014069e-06 2773078636.95 +UniRef50_W8RX73 Cytochrome C 1.12888599176e-05 1.3691531857e-05 969988146.036 +UniRef50_P32014 Capsule polysaccharide export inner membrane protein CtrB 3.34034435074e-06 3.35474366775e-05 12194973855.0 +UniRef50_I7DUX8 ABC transporter ATP binding protein 4.47182700257e-05 1.01300364074e-05 -13963694357.1 +UniRef50_G2L2K0 Penicillin binding protein 3A 1.58068812007e-06 5.45330940557e-06 1563424735.36 +UniRef50_Q2LR78 Glutamate 5 kinase 4.25806369744e-08 6.18060963561e-08 7761553.87531 +UniRef50_UPI000468E962 hypothetical protein 5.42210797777e-08 6.94435740917e-08 6145507.75557 +UniRef50_Q5HRW9 0.000105854037675 2.04636272098e-05 -34473156563.0 +UniRef50_Q5HKM6 0.000121409400019 3.26961798458e-05 -35814615617.6 +UniRef50_UPI0002B8EE79 5.58404174135e-07 1.43148306175e-07 -167643889.658 +UniRef50_Q5HRW3 3.52379205711e-05 2.51973321369e-05 -4053508762.76 +UniRef50_R6W4I9 Glycerol 3 phosphate dehydrogenase anaerobic B subunit 4.59991657778e-07 4.60013256345e-07 8719.60654212 +UniRef50_Q6DAT5 L threonine 3 dehydrogenase 8.62132554775e-07 1.03134636585e-06 68313692.0179 +UniRef50_D6DGD0 Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain 6.7836330399e-06 5.24925567144e-05 18453253399.0 +UniRef50_Q9FA54 Glucans biosynthesis protein G 5.63411520595e-05 2.65096000823e-05 -12043363607.5 +UniRef50_UPI0002629408 riboflavin biosynthesis protein RibD 7.5952552475e-08 6.37567767136e-08 -4923584.33388 +UniRef50_UPI00037ECE7A hypothetical protein 8.82781830821e-08 1.44908772334e-07 22862463.8165 +UniRef50_H3CIZ8 3.28248685954e-06 9.13330065475e-07 -956457670.589 +UniRef50_C0ZDE1 ABC transporter substrate binding protein 0.00022127574577 9.16300584971e-05 -52339554883.6 +UniRef50_P56891 Phosphoadenosine phosphosulfate reductase 1.01505447278e-07 1.04529853861e-07 1220990.0512 +UniRef50_J0WNU1 5.05197272186e-07 2.02289879385e-08 -195787647.581 +UniRef50_UPI000467B474 integrase, partial 5.49736876965e-06 2.86715247755e-06 -1061850593.5 +UniRef50_L9MX54 Phage like baseplate assembly protein 8.50596860029e-07 5.00460460188e-05 19860806521.5 +UniRef50_UPI000454729B PREDICTED 1.62484531464e-07 5.08849853831e-08 -45054106.2333 +UniRef50_E8RQD7 Peptidase M15A 4.15147683291e-08 1.10806945981e-07 27974102.4287 +UniRef50_D1GNQ1 Aldo keto reductase family protein 0.000189278288728 9.75261312967e-05 -37041471880.6 +UniRef50_P75835 Inner membrane transporter YcaM 3.42985438353e-05 1.50097962544e-05 -7787104097.96 +UniRef50_B4T6V0 Orotidine 5 phosphate decarboxylase 9.11470863667e-07 5.40022006541e-05 21433379112.9 +UniRef50_B9QX37 5.6926271745e-07 7.46556695816e-07 71575754.7081 +UniRef50_UPI00046968BE hypothetical protein 3.09168702935e-08 5.04028006537e-08 7866709.20567 +UniRef50_E6VT00 Periplasmic phosphate binding protein 5.53701504496e-08 7.83872394454e-08 9292281.27905 +UniRef50_A6X6Y3 1.96287472017e-06 8.34500045881e-07 -455538702.725 +UniRef50_Q00UL4 WGS project CAID00000000 data, contig chromosome 16 2.271911947e-06 3.21821203537e-07 -787275563.439 +UniRef50_W5XBC0 30S ribosomal protein S3 2.86980109978e-06 5.86742306421e-06 1210176772.0 +UniRef50_T1ZLX4 Transaldolase 0.000322541136059 3.65621992571e-05 -1.15453206143e+11 +UniRef50_UPI00036712C2 hypothetical protein, partial 1.64683891353e-06 2.54545804178e-07 -562085813.602 +UniRef50_A5UL05 Conserved hypothetical membrane protein Msm_0678 1.89966820991e-05 3.16410755563e-06 -6391804630.75 +UniRef50_C2THV2 1.68689352317e-06 4.8412574623e-06 1273455430.63 +UniRef50_A6LQP6 9.71819739094e-06 9.20158245145e-06 -208563790.65 +UniRef50_Q9RV37 1.31681158902e-05 0.000313659508802 1.21312062763e+11 +UniRef50_F8JYV1 1.04415643072e-06 1.13733545964e-06 37617517.4103 +UniRef50_Q9RV33 3.68878816464e-06 0.00284296397807 1.14625023599e+12 +UniRef50_A6LQP1 1.72894346045e-06 2.36709482168e-05 8858256578.8 +UniRef50_P66936 DNA gyrase subunit B 0.000265086483188 8.10541267735e-05 -74296120615.7 +UniRef50_UPI00037BCD79 hypothetical protein, partial 4.2036591597e-07 1.46838433029e-06 423097894.493 +UniRef50_W5X9F8 Polyphosphate kinase 2.42284768311e-08 1.191110645e-06 471084650.545 +UniRef50_B2VFX0 Protein Syd 4.66402111213e-05 3.25716954257e-06 -17514266255.1 +UniRef50_Q5HLU5 SugE protein 1.29914009151e-05 6.00644146164e-06 -2819913846.45 +UniRef50_Q88F38 Cation transporting P type ATPase 1.68155470433e-06 8.49832245247e-07 -335776563.114 +UniRef50_UPI0003B6672C 50S ribosomal protein L24, partial 5.60503169801e-07 2.65006347746e-06 843581137.991 +UniRef50_L5UXA6 Glycosyl transferase, group 2 family protein 5.29873048328e-06 2.4938656632e-05 7928879195.23 +UniRef50_K4A3K7 9.30730898387e-06 4.31164163464e-06 -2016812212.62 +UniRef50_UPI000475C24E phosphoribosylaminoimidazole carboxylase 6.1735596004e-08 6.12098101113e-08 -212266.217001 +UniRef50_UPI0002F5CF5E hypothetical protein 1.05122041938e-07 1.31217912326e-07 10535223.108 +UniRef50_A5FNF9 Lipoyl synthase 5.47672342448e-08 4.08591233341e-07 142843090.344 +UniRef50_Q1LTX5 Adenylate kinase 7.8679174239e-08 1.31521698773e-07 21333175.6051 +UniRef50_B2GLQ7 Biotin synthase 4.35037591562e-06 6.73261521158e-05 25424093651.7 +UniRef50_B9KX84 1.34364899842e-06 1.8248200115e-06 194254642.613 +UniRef50_D2J7P9 Replication initiator protein 8.34619944178e-05 1.33697660085e-06 -33154877480.0 +UniRef50_UPI0003F8A6FF hypothetical protein 5.24200468485e-07 8.5866025566e-07 135025520.366 +UniRef50_G2T679 CRISPR associated helicase Cas3 family protein 4.60988269145e-07 7.63116500443e-08 -155298671.644 +UniRef50_F4LK69 Regulatory protein TetR 6.16809800164e-05 3.63507015887e-05 -10226144238.7 +UniRef50_Q8TWX0 Carbamoyl phosphate synthase large chain, N terminal section 1.94036608189e-07 7.10908551621e-08 -49634709.211 +UniRef50_D9PX81 FAD synthase 1.31070661436e-05 2.12814756194e-05 3300109416.66 +UniRef50_X6N172 4.24489266771e-08 2.07307355095e-07 66555370.5928 +UniRef50_X1SQS0 Marine sediment metagenome DNA, contig 2.16217787872e-07 1.70333857364e-06 600368910.24 +UniRef50_UPI000406F11E permease 3.64315753729e-08 1.49815793631e-07 45774600.2916 +UniRef50_Q3IWF1 AMP binding enzyme 1.15958987202e-05 5.62250478975e-06 -2411532431.51 +UniRef50_UPI0003B50149 5 amino 6 uracil reductase 6.02656334017e-08 5.99559404169e-07 217719513.137 +UniRef50_UPI0004787588 NAD dependent dehydratase 4.02718204e-06 3.94025422642e-07 -1466749910.27 +UniRef50_UPI00036D4BC8 hypothetical protein, partial 6.87133260219e-07 6.20816136414e-07 -26773036.6827 +UniRef50_I6T8B1 1.17658764336e-05 2.80405393727e-05 6570281141.09 +UniRef50_UPI00034FE692 PREDICTED 5.26565911919e-07 1.4013856307e-06 353175455.717 +UniRef50_Q9RUD9 1.26390398057e-06 0.000249739433388 1.00312620359e+11 +UniRef50_M9S778 Two component sensor 3.25859434811e-06 1.05219728687e-06 -890749569.159 +UniRef50_UPI00037416F3 hypothetical protein 1.79114179214e-08 2.15382021394e-08 1464177.29445 +UniRef50_D4H976 Dihydrofolate reductase 7.95642209936e-06 1.43022103662e-05 2561872594.9 +UniRef50_I3UPT4 AMP dependent synthetase and ligase 4.16701857449e-06 0.000158768196205 62414392579.4 +UniRef50_A6LTP7 Multi sensor signal transduction histidine kinase 3.49453338786e-06 1.88722532225e-05 6208174203.07 +UniRef50_U5MZ96 Sulfate adenylyltransferase subunit 1 2.55381049746e-06 1.63710706659e-05 5578197486.83 +UniRef50_UPI00039A293C amino acid ABC transporter permease 4.96692090564e-07 3.83234720158e-07 -45804132.7114 +UniRef50_UPI000417C130 MerR family transcriptional regulator 3.90654319672e-07 4.47251553353e-07 22848997.7632 +UniRef50_B9KQ54 Phosphate starvation inducible E 6.15068307641e-05 4.03373445639e-05 -8546381357.83 +UniRef50_K7UQK0 4.0172288342e-06 3.7540259135e-06 -106258248.95 +UniRef50_UPI0003FD08E7 MULTISPECIES 7.90011968155e-08 9.5045789591e-08 6477398.99276 +UniRef50_P95907 Glycerol kinase 2 2.36208727825e-07 8.13554320578e-07 233081500.622 +UniRef50_B3PN30 DNA gyrase subunit A 7.30528499122e-08 1.18001024997e-07 18146129.8579 +UniRef50_K0HFT9 5.28198678376e-07 4.09030991727e-05 16299842785.3 +UniRef50_UPI00046EC477 hypothetical protein, partial 4.89167655137e-07 3.51008431594e-07 -55776573.9486 +UniRef50_UPI0004639765 hypothetical protein, partial 1.76355109358e-07 3.79588827765e-07 82047946.0791 +UniRef50_UPI000225FA9E hypothetical protein 3.41257426237e-07 1.98715735663e-07 -57545829.668 +UniRef50_UPI0003041FF9 hypothetical protein 1.65560394148e-06 5.35261402834e-07 -452296031.002 +UniRef50_P44450 Formate dehydrogenase iron sulfur subunit 4.97099228313e-05 1.0493614941e-05 -15832104733.5 +UniRef50_D4MEH6 Hemolysins and related proteins containing CBS domains 7.51433152063e-05 4.21041737216e-05 -13338306853.2 +UniRef50_W6KFD1 2.01765961771e-07 1.03614413656e-07 -39624984.429 +UniRef50_P0AFF4 Nucleoside permease NupG 6.95202810137e-05 8.27585499186e-06 -24725126338.6 +UniRef50_UPI0003B5C461 30S ribosomal protein S4 3.14893792771e-07 2.67101127091e-06 951193538.738 +UniRef50_UPI00036F3F50 hypothetical protein 1.37032091684e-07 2.40843544294e-07 41909957.3284 +UniRef50_P52078 0.000171996635391 5.20707337005e-05 -48415558169.0 +UniRef50_R7LL20 6.17942048372e-07 5.15338195262e-07 -41422434.5914 +UniRef50_Q6FD51 Aminopeptidase P 8.93810549727e-07 5.40022150259e-05 21440514600.5 +UniRef50_Q5GUU6 9.85568104139e-08 4.17115420451e-07 128606020.026 +UniRef50_A3K9P8 5.1674524753e-07 1.06299060078e-06 220525952.291 +UniRef50_Q2RVQ3 1.58284656614e-05 8.3536463216e-06 -3017676293.83 +UniRef50_W4HQH1 1.3106406923e-07 1.5370601937e-07 9140833.11949 +UniRef50_P67051 Thymidylate synthase 3.77263560373e-05 4.03727310054e-05 1068374049.29 +UniRef50_UPI0002492BAD sugar ABC transporter ATPase 1.42634758285e-07 2.08202325954e-07 26470431.6725 +UniRef50_Q57180 4.53037391315e-06 0.000114759069772 44500677176.5 +UniRef50_D0LYV0 2.59058104479e-07 7.32110425834e-08 -75028739.4873 +UniRef50_UPI000478D57C hypothetical protein 5.16369785282e-08 1.97626488878e-07 58937756.821 +UniRef50_F9YXY3 Phosphate binding protein PstS 3.30532551907e-06 6.31221279842e-05 24148777189.9 +UniRef50_Q9RTB2 6.6213513098e-07 0.000426761947741 1.72021723183e+11 +UniRef50_R6QEM9 Oxidoreductase short chain dehydrogenase reductase family protein 1.74762031871e-06 2.15212519749e-05 7982857749.35 +UniRef50_D8GL93 Adenine deaminase 1.36645604629e-06 1.18400466695e-05 4228317060.0 +UniRef50_V8UF34 2.32599735175e-06 1.14680532496e-06 -476054291.529 +UniRef50_P0ACL0 Glycerol 3 phosphate regulon repressor 3.07562852661e-05 7.76998345638e-06 -9279852114.22 +UniRef50_X5EPD5 Iron ascorbate oxidoreductase 5.55064216431e-06 1.2547447402e-05 2824696134.91 +UniRef50_Q74RF9 Maltose transport system permease protein MalF 2.67831639582e-05 6.29533809413e-06 -8271186715.23 +UniRef50_A5IVI8 Protein disulfide isomerase like protein 0.000100620037701 3.21578989328e-06 -39323290124.5 +UniRef50_N5SB54 6.11306513292e-07 1.26734486814e-06 264850734.348 +UniRef50_UPI000371F13D hypothetical protein, partial 1.30533238052e-07 1.66867831787e-07 14668721.3664 +UniRef50_UPI00037C627C hypothetical protein 3.94121017778e-07 3.83338501595e-07 -4353034.09943 +UniRef50_O05220 0.000112105640704 3.41406595601e-06 -43880122521.4 +UniRef50_UPI000418FC9B biotin attachment protein 3.07298493448e-07 9.69662840157e-07 267404614.891 +UniRef50_UPI00046AABC6 recombinase RecF 2.20395303685e-07 1.13561158464e-07 -43130255.4281 +UniRef50_B4V9Q0 5.88009157444e-07 6.02733221586e-07 5944285.37871 +UniRef50_O06924 Acetyl S ACP 9.08874772519e-07 5.2620970499e-05 20876807623.6 +UniRef50_C6S5H1 Protein disulfide isomerase 2.22050581675e-06 2.03896762174e-05 7335117051.52 +UniRef50_G7M244 Mannosyl glycoprotein endo beta N acetylglucosamidase 2.066529136e-06 2.15822196247e-06 37017519.2435 +UniRef50_L0FRW3 3.63087897843e-07 1.7104474177e-07 -77530178.7412 +UniRef50_G8V6G8 0.000124681276502 5.77414994704e-06 -48004266144.8 +UniRef50_U3H984 3.17066401727e-06 2.35522488852e-05 8228295921.34 +UniRef50_Q6G9J2 Anthranilate synthase component I 0.00018531529984 3.78665942533e-05 -59526851844.6 +UniRef50_C6SPU8 Glucan binding protein C 5.05614040375e-05 1.7301255981e-05 -13427529918.3 +UniRef50_Q47S88 8.85322585204e-08 1.30946994982e-07 17123349.5969 +UniRef50_UPI0001F2A777 hypothetical protein AOR_1_134104 1.40055810171e-07 1.66715157775e-07 10762705.7747 +UniRef50_W7VUT6 Alanine dehydrogenase 3.12602695192e-06 2.54016518955e-06 -236519582.801 +UniRef50_UPI0003615879 hypothetical protein 1.6202379547e-07 2.30232240154e-07 27536586.1307 +UniRef50_UPI0002E18D8D hypothetical protein 6.02237927036e-08 1.12106639584e-07 20945741.9597 +UniRef50_Q58899 UDP N acetylglucosamine 2 epimerase 4.04145023959e-05 1.79373964349e-05 -9074283501.56 +UniRef50_A3DGC7 DNA integrity scanning protein DisA 6.5907517044e-06 2.31026667376e-05 6666062722.89 +UniRef50_I1B4H1 1.99291615538e-05 1.08895556455e-05 -3649399833.62 +UniRef50_UPI00037C4D1B hypothetical protein 7.98404689114e-07 3.37282980195e-07 -186160492.49 +UniRef50_L0A6W7 2.67957437305e-07 1.3686057415e-07 -52925412.3951 +UniRef50_E5ASY5 DNA polymerase III subunit beta 1.35299637578e-06 4.31908246866e-05 16890444697.0 +UniRef50_Q9RTT6 Cysteine tRNA ligase 1.61903457372e-06 0.000459015585923 1.84656600666e+11 +UniRef50_Q2I2W2 Egg case silk protein 2 6.32895762293e-08 2.30380696157e-08 -16250027.1614 +UniRef50_Q9WZ28 Carbamoyl phosphate synthase small chain 1.44193478073e-07 7.33359147716e-08 -28606067.8249 +UniRef50_P52696 1.65666679941e-05 7.55412048227e-06 -3638476026.92 +UniRef50_P56580 Glucitol sorbitol specific phosphotransferase enzyme IIB component 2.67720559474e-06 1.27636705322e-05 4072029670.11 +UniRef50_C1MVJ6 Predicted protein 1.71625332922e-06 3.06430626791e-07 -569162725.441 +UniRef50_UPI0003EF10EB hypothetical protein 2.413527699e-06 1.23217151347e-06 -476927988.969 +UniRef50_UPI0003780D4B hypothetical protein, partial 5.7468164637e-07 1.61195475573e-07 -166929441.197 +UniRef50_R7PQW4 6.88577835491e-07 1.57333010141e-05 6073739366.72 +UniRef50_UPI00016B142B F0F1 ATP synthase subunit beta, partial 2.09604706262e-08 4.59165817419e-08 10075088.3033 +UniRef50_UPI000473C475 hypothetical protein, partial 3.31677221518e-07 2.56264924994e-07 -30444869.5197 +UniRef50_W7J736 5.5617700212e-07 8.13425793846e-07 103854494.017 +UniRef50_O27739 Energy coupling factor transporter ATP binding protein EcfA 6.49504207326e-05 3.00997260245e-06 -25006119004.9 +UniRef50_A5UNK3 6.96691088564e-06 7.01092508093e-06 17769070.7535 +UniRef50_Q92210 Phosphoribosylaminoimidazole carboxylase 1.76639495373e-07 2.51827994675e-07 30354519.8349 +UniRef50_Q1CJW8 Macrolide export ATP binding permease protein MacB 1 1.90100044099e-08 8.53340917787e-08 26775847.9589 +UniRef50_UPI00042688B1 hypothetical protein 1.17001401368e-06 1.36717160549e-06 79594939.2094 +UniRef50_Q5LNV7 0.00010257615189 2.02796789503e-05 -33224096017.0 +UniRef50_R1BQD4 1.31907310205e-06 2.8548621078e-06 620016867.872 +UniRef50_Q16762 Thiosulfate sulfurtransferase 2.92758525086e-07 1.15355356642e-07 -71619836.0825 +UniRef50_Q5FA95 5.94131169041e-07 1.86707040297e-05 7297734288.36 +UniRef50_UPI0000167758 hypothetical protein 6.23814840172e-07 1.85270405389e-07 -177045769.867 +UniRef50_UPI0003EAFD31 PREDICTED 4.8819231337e-07 4.90204567108e-07 812371.527161 +UniRef50_D0K910 0.000156974061215 4.42474955693e-05 -45509097861.8 +UniRef50_E1M6K4 Aldehyde alcohol dehydrogenase 2 2.33654863306e-06 6.76039767643e-07 -670367805.705 +UniRef50_R7PUN2 Chlamydial polymorphic outer membrane protein repeat containing domain protein 2.50210721805e-07 8.12521568883e-08 -68210646.0117 +UniRef50_UPI0003738034 hypothetical protein 1.49516142289e-08 2.34898526123e-08 3446991.61135 +UniRef50_UPI000377F542 universal stress protein A, partial 1.41320207057e-06 6.50326098557e-07 -307982391.443 +UniRef50_B1YLN1 Cyclic nucleotide binding protein 1.05967860751e-07 2.57433155472e-07 61148398.167 +UniRef50_UPI0004575D3A PREDICTED 2.88780381556e-08 4.08202001257e-08 4821197.33414 +UniRef50_E1V7V8 Aspartate semialdehyde dehydrogenase 8.3778196919e-08 2.36778144776e-07 61767956.4704 +UniRef50_W8QZ31 5.79738522702e-07 2.11834607849e-07 -148527325.115 +UniRef50_E0DRL2 Transcriptional regulator 1.1496810387e-06 2.4045312681e-07 -367066465.511 +UniRef50_G8AUU4 8.23621158739e-07 8.96540434935e-07 29438406.6205 +UniRef50_A2SME8 3.23686449414e-07 7.59187922985e-07 175817289.085 +UniRef50_UPI00029DABF0 PREDICTED 3.9427531914e-07 1.08626350954e-06 279364124.114 +UniRef50_B2S0D7 DNA gyrase subunit A 5.96746080054e-08 1.29487910802e-07 28184487.0446 +UniRef50_Q3IVR0 0.00011310750354 2.43727111011e-05 -35823324605.9 +UniRef50_Q3IVR4 3.52757188072e-05 3.77150376131e-05 984782935.75 +UniRef50_Q3IVR7 9.78083173765e-05 1.4851893365e-06 -38886828807.4 +UniRef50_Q5HKL3 RarD protein 0.000160009279628 8.45938645724e-05 -30446128509.2 +UniRef50_T5YD38 5.9290993013e-06 4.93565523996e-06 -401065558.492 +UniRef50_F1SH72 1.50907332576e-06 3.64478183102e-06 862211731.664 +UniRef50_Q47RR4 tRNA dimethylallyltransferase 6.3661461836e-08 8.15210145751e-08 7210120.60213 +UniRef50_UPI000364980E hypothetical protein 2.93587283872e-07 1.85272146281e-07 -43728150.2217 +UniRef50_I6TW93 Transposase 3.44536686639e-06 8.61510112398e-05 33389283545.9 +UniRef50_K0L2R6 Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein 0.00010125978931 3.43907320571e-05 -26995858988.6 +UniRef50_B3PGL6 Pyoverdine ABC transporter, permease ATP binding protein 9.32474316509e-06 2.384449538e-06 -2801881704.24 +UniRef50_R6TDY4 ATPase histidine kinase DNA gyrase B HSP90 domain protein 7.01212363148e-07 1.77204818259e-05 6870887932.05 +UniRef50_UPI0002F6E2AD hypothetical protein 6.57259928765e-07 2.37857204022e-07 -169318026.629 +UniRef50_A4VRC8 Membrane protein, TIGR01666 9.72376807363e-06 4.44084928647e-06 -2132779143.08 +UniRef50_E2XRI8 YcaO like fatty acid binding protein 9.04624437586e-06 1.44220611698e-06 -3069843557.15 +UniRef50_W7SJH2 Transcriptional regulator 7.25828961296e-07 7.98647575189e-07 29397768.0135 +UniRef50_UPI00047CB349 DNA gyrase subunit B 2.89052448466e-07 3.82519617194e-07 37733842.9866 +UniRef50_UPI000393D820 PREDICTED 3.45431607188e-08 1.19779256582e-07 34410857.8645 +UniRef50_P35595 PTS system glucose specific EIICBA component 8.0054416916e-05 5.94505330486e-05 -8318040755.36 +UniRef50_P11701 Levansucrase 8.12051859562e-05 1.49210009294e-05 -26759738893.7 +UniRef50_Q4KEM3 Two component sensor histidine kinase PedS1 3.98470911846e-06 1.49017247225e-06 -1007075055.48 +UniRef50_I4KPZ2 Choline ABC transporter, ATP binding protein 6.79080754717e-06 1.77869486044e-05 4439277082.62 +UniRef50_D9RD76 MFS family major facilitator transporter, bicyclomycin 0.000209513376319 3.95586317548e-05 -68612815959.7 +UniRef50_B3EQY1 ABC type phosphate transport system periplasmic component like protein 3.6972000622e-08 6.57447823267e-08 11615925.0559 +UniRef50_Q8FVT0 Putative ATP binding protein BRA0745 BS1330_II0738 6.14958929933e-05 2.85589370023e-05 -13297053315.5 +UniRef50_G9PKM7 1.53370912451e-07 2.70943838033e-07 47465632.8395 +UniRef50_B0VQI7 8.32689681294e-06 7.50388422842e-05 26932431034.4 +UniRef50_A5F3F4 Vibriobactin specific isochorismatase 1.9368865006e-07 4.06100307513e-07 85753192.6979 +UniRef50_W8S0N6 3.04325263901e-07 1.19657019564e-07 -74552836.373 +UniRef50_W8S6V4 5.21227415034e-08 3.08744378365e-08 -8578200.93634 +UniRef50_F0YCB9 1.45505589963e-07 5.99963086808e-07 183470068.297 +UniRef50_UPI0001BF5B06 hypothetical protein SMAC_11105, partial 8.4195206378e-07 4.60459504988e-07 -154013227.424 +UniRef50_M5R665 7.30955119821e-08 3.60626555355e-07 116079810.612 +UniRef50_UPI00041E8F2C hypothetical protein 2.46094983047e-07 6.81262103192e-07 175682306.504 +UniRef50_N5FY18 P loop ATPase 1.92557945717e-05 2.89526181564e-06 -6604947839.95 +UniRef50_R1FJP7 1.3435673277e-06 1.73943778871e-06 159817762.987 +UniRef50_P54291 Acyl homoserine lactone synthase 1.95418032151e-05 7.67380806037e-06 -4791255280.63 +UniRef50_D8UHU1 5.00940402212e-08 1.96611934953e-07 59151072.0801 +UniRef50_UPI00045E12F9 PREDICTED 5.38230710835e-08 1.94714311118e-06 764356533.838 +UniRef50_Q12GA5 Dyp type peroxidase 2.32537570129e-06 3.99977478817e-06 675975458.561 +UniRef50_B9KSF4 2.10033065119e-05 3.87640262326e-07 -8322797447.64 +UniRef50_Q2YA20 NADH quinone oxidoreductase subunit H 2 4.34706464487e-08 3.01519424442e-05 12155159537.3 +UniRef50_A8AYH1 Glucose 1 phosphate adenylyltransferase, GlgD subunit 8.26045846617e-05 3.469549694e-05 -19341486623.9 +UniRef50_Q49WT2 Excinuclease ATPase subunit 9.35152060119e-05 2.48964988262e-05 -27702214137.1 +UniRef50_D7A127 3.07649580786e-08 2.12238952825e-07 73263278.6153 +UniRef50_A5V6E6 1.47054139374e-07 5.2415280001e-07 152239356.82 +UniRef50_UPI0003B309A2 flagellin 1.3676023054e-07 4.48284689728e-08 -37113980.2743 +UniRef50_UPI0003754A94 hypothetical protein 6.87126877685e-08 1.7969230399e-06 697699726.681 +UniRef50_UPI0004785717 hypothetical protein 3.13948965423e-07 2.45214542912e-07 -27748929.8339 +UniRef50_D8JJ99 Fatty acid desaturase 2.00270500699e-06 9.19027800764e-05 36293763503.5 +UniRef50_B2IML2 Ascorbate specific PTS system enzyme IIC 6.59982236963e-05 5.73127687669e-05 -3506424737.52 +UniRef50_UPI00046730B7 hypothetical protein 1.01640728895e-07 2.03031126737e-07 40932547.8089 +UniRef50_Q8X524 Sensor protein QseC 2.382693266e-05 4.13024683256e-06 -7951793774.04 +UniRef50_B8GNE7 Peptidase M24 1.74912788259e-05 2.01313558902e-05 1065831508.25 +UniRef50_D8GPC7 Regulatory protein 4.11242934588e-06 9.30523458585e-06 2096399198.26 +UniRef50_UPI000379B182 hypothetical protein 1.03416525565e-06 5.13929596241e-07 -210025519.713 +UniRef50_E0XV83 1.07586050663e-06 8.72918284808e-07 -81930265.3307 +UniRef50_A0A042PYY0 3.09732808672e-07 1.51336378342e-07 -63946582.667 +UniRef50_Q9I466 Bifunctional adenosylcobalamin biosynthesis protein CobP 1.30577892319e-06 1.82553415976e-06 209831567.117 +UniRef50_Q9I489 1.25968628095e-06 3.32439067766e-06 833546501.724 +UniRef50_Q47269 5.30997660683e-06 3.91147953907e-06 -564590427.744 +UniRef50_P37774 6.95313524011e-06 4.72506728318e-06 -899498375.681 +UniRef50_Q8A9K9 Isoleucine tRNA ligase 1.19980617044e-08 6.67226883943e-08 22093003.3414 +UniRef50_UPI0003670352 chemotaxis protein CheW 1.61346786277e-07 4.93524104889e-07 134104059.798 +UniRef50_K0T1C7 2.06131182559e-06 7.33145957287e-07 -536196859.461 +UniRef50_V9T5G7 ATPase 6.76991035218e-06 5.92171034274e-06 -342428752.396 +UniRef50_A4WS75 ATPase associated with various cellular activities, AAA_3 3.70258999365e-05 1.69074449542e-06 -14265235862.7 +UniRef50_UPI00046413C1 hypothetical protein 1.55849813904e-07 1.08209353708e-07 -19233038.3953 +UniRef50_UPI0001CC0058 putative ISRSO12 transposase 6.19763590592e-08 1.93253848239e-07 52998333.3379 +UniRef50_UPI00045EAD98 D amino acid aminotransferase 1.03476034068e-06 5.3091327679e-07 -203409242.591 +UniRef50_M9REZ0 0.000130916601532 2.4233045962e-05 -43069460538.1 +UniRef50_P81140 Glutaryl CoA dehydrogenase, mitochondrial 2.58388453094e-07 2.59730054698e-06 944247513.982 +UniRef50_P44501 2 hydroxyacid dehydrogenase homolog 5.37679030812e-05 5.3566519634e-06 -19544216149.1 +UniRef50_UPI000378023E catalase 7.51403980138e-08 2.53557096606e-07 72029010.6407 +UniRef50_UPI000255D957 thioesterase 9.21478880994e-08 8.67430340529e-07 312991039.832 +UniRef50_B0VCQ8 NADH dehydrogenase 1.32761778031e-06 3.97741755827e-05 15521347177.1 +UniRef50_Q3IUV7 TraN 0.000330142938932 8.43538952719e-05 -99228053096.3 +UniRef50_G0AKF2 7.67047828324e-07 1.90495393119e-07 -232761293.186 +UniRef50_Q8D1X9 Phosphoenolpyruvate carboxykinase [ATP] 2.89501727837e-08 4.69063728929e-05 18924990802.8 +UniRef50_Q0DGM2 Os05g0524100 protein 3.50780307088e-06 5.71860085388e-07 -1185276211.31 +UniRef50_UPI000361FC4E hypothetical protein 8.47477586539e-06 7.46047030207e-06 -409487602.841 +UniRef50_UPI00046278DB long chain fatty acid CoA ligase, partial 3.38282779757e-07 6.65185490798e-07 131974635.995 +UniRef50_F4A5L9 PIS system, IIC component 1.12228756118e-05 2.20313451772e-05 4363511798.39 +UniRef50_P37180 Probable Ni Fe hydrogenase 2 b type cytochrome subunit 2.91153056421e-05 6.77594078739e-06 -9018675726.68 +UniRef50_Q9KNM2 Guanosine 3,5 bis 3 pyrophosphohydrolase 2.64748460205e-05 1.90385416374e-05 -3002127333.17 +UniRef50_UPI0003EB0EAA hypothetical protein, partial 1.03530154109e-06 4.73782935614e-07 -226691951.639 +UniRef50_W6BIT8 ParB like nuclease domain protein 2.29690032861e-06 4.83662623568e-07 -732026312.453 +UniRef50_X5DX57 1.87087248108e-05 7.87511213846e-06 -4373662379.18 +UniRef50_Q98A81 Serine hydroxymethyltransferase 2 3.07639907102e-07 9.99653378854e-07 279374330.507 +UniRef50_A6M258 Sensor histidine kinase like protein 1.73357743485e-06 6.02550751425e-06 1732704840.96 +UniRef50_G8VH52 Aminotransferase 3.48196785645e-06 5.43838853477e-05 20549728728.0 +UniRef50_UPI0003FA6D6A serine dehydratase 1.070499394e-07 1.55669653754e-06 585240120.833 +UniRef50_P55045 Formamidopyrimidine DNA glycosylase 5.81960378923e-05 3.11430364661e-05 -10921628653.4 +UniRef50_UPI000362483E hypothetical protein 2.95449488693e-07 2.94105557934e-07 -542561.339293 +UniRef50_A5UNN3 Arylsulfatase regulator, AslB 2.75554758971e-05 5.8437429166e-06 -8765293037.15 +UniRef50_A8AQ08 Threonine serine transporter TdcC 3.17696380378e-05 3.31443215042e-06 -11487715801.4 +UniRef50_Q09C64 1.29116101556e-07 3.95200261598e-07 107421440.629 +UniRef50_H8FWZ7 1.77815856776e-06 1.76687276992e-06 -4556215.08032 +UniRef50_UPI000477C548 alcohol dehydrogenase 9.15367668969e-08 1.67687426542e-07 30742955.7724 +UniRef50_Q8CNS9 LtrC like protein 8.78701398648e-05 2.87014353032e-05 -23887132113.2 +UniRef50_F6BYQ8 2.30803317782e-06 7.01546021278e-07 -648558578.909 +UniRef50_UPI00037DF186 hypothetical protein 7.28494181778e-06 2.90158400686e-07 -2823879901.12 +UniRef50_UPI0002F6EC83 hypothetical protein 2.18248232461e-08 6.80534130847e-06 2738588848.19 +UniRef50_Q99R72 Glycosyl 4,4 diaponeurosporenoate acyltransferase 6.36388360471e-05 4.07430070286e-05 -9243327138.19 +UniRef50_P76223 Protein YnjB 3.43271367511e-05 9.2934880502e-06 -10106391178.0 +UniRef50_O59536 Triosephosphate isomerase 2.49911254594e-05 2.82807281052e-05 1328052956.07 +UniRef50_F0VQ97 2.68581202174e-08 1.45897754727e-08 -4952881.32296 +UniRef50_B6IR83 3.33049782179e-05 1.84499448705e-05 -5997159254.1 +UniRef50_U9YKK0 1.72813002195e-05 2.72181295113e-06 -5877843675.25 +UniRef50_Q5HQL1 Na H(+) antiporter subunit B1 6.53895011582e-05 6.63145982577e-05 373473051.286 +UniRef50_M7E7M7 Integrase 2.51488895654e-05 1.78990121966e-05 -2926864459.78 +UniRef50_F0LCG3 Cation transport protein chaC 8.53494934457e-08 1.98739380255e-07 45776888.7552 +UniRef50_Q5HR27 0.00016836610319 2.53844147617e-05 -57723462201.0 +UniRef50_UPI00035FFCE6 hypothetical protein 3.92096369903e-07 8.87245618645e-07 199897827.882 +UniRef50_Q3JNN5 Gamma glutamyl phosphate reductase 3.24097021463e-05 3.199436242e-06 -11792542795.8 +UniRef50_E6V0C3 Nicotinamidase 7.69546202562e-06 3.03592964662e-05 9149668080.19 +UniRef50_Q9I158 9.86405635988e-06 5.16282486185e-06 -1897944846.35 +UniRef50_B8D0S4 Adenylyl sulfate kinase 1.21404346371e-07 2.26502490934e-06 865405926.453 +UniRef50_UPI000369E4B0 hypothetical protein 2.15420966212e-08 1.73581704932e-07 61380255.611 +UniRef50_I0EQA8 Paralysed flagella protein 2.00956636653e-06 3.71954140219e-05 14204958477.4 +UniRef50_G7U4F0 Transcriptional regulator, LuxR family protein 1.73158710486e-06 3.9870470697e-05 15397135322.9 +UniRef50_W4JRF8 1.15721957538e-06 5.62848543728e-06 1805104897.05 +UniRef50_T0T886 Guanine deaminase 9.03076528389e-07 4.34737406406e-06 1390505181.43 +UniRef50_F7QRG4 Glyoxalase family protein 3.06597030299e-07 4.0463741038e-07 39580104.5295 +UniRef50_UPI0003804921 hypothetical protein 1.31990149642e-07 1.1774396728e-07 -5751358.63986 +UniRef50_U9G1I6 2.25522783674e-07 7.05056539254e-08 -62582317.5538 +UniRef50_Q42523 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 2.18261448245e-08 4.07323888256e-08 7632682.70895 +UniRef50_UPI000375CE36 hypothetical protein 6.55230537703e-08 7.26200007453e-06 2905306083.98 +UniRef50_P39409 3.53316818497e-05 1.7335041206e-05 -7265464671.48 +UniRef50_UPI0002629A6E putative hydrolase 1.42861304553e-06 7.27190238609e-07 -283172994.58 +UniRef50_A0A011RU24 Putative L lactate dehydrogenase operon regulatory protein 2.24001608492e-07 3.84660956498e-07 64860150.3019 +UniRef50_A9FGU9 2.41065882284e-08 3.84885124911e-08 5806159.31091 +UniRef50_A8FH40 8.56619610214e-08 3.87254999477e-07 121756810.587 +UniRef50_A6M1K4 1.47020331343e-05 6.08900423076e-06 -3477185462.11 +UniRef50_Q5PCT5 DNA binding protein H NS 1.39298586548e-05 5.06257208899e-06 -3579832400.46 +UniRef50_F4DU26 5.06692602481e-06 2.18223734865e-05 6764379752.75 +UniRef50_B3DX55 Predicted phosphatase, Macro Appr 1 family 1.19794098047e-07 2.28911281232e-06 875780585.485 +UniRef50_T2SUX4 Cation transporter 1.17770017646e-06 5.23051381228e-05 20640774103.1 +UniRef50_K0WI88 Type VI secretion system protein 5.09548472204e-06 8.9399608029e-07 -1696192522.74 +UniRef50_UPI000473E94E MULTISPECIES 3.13060947342e-06 8.32317831851e-07 -927848538.912 +UniRef50_A1TN83 Ribonuclease HII 1.97219205547e-07 1.43765397541e-07 -21579958.244 +UniRef50_R6ED70 6.89745180299e-07 9.07930933087e-08 -241804307.486 +UniRef50_V4RKF1 2.41373948449e-07 9.02725317012e-08 -61001496.1641 +UniRef50_G7QBD3 SEC C motif domain protein 1.09036436804e-07 4.57854292127e-07 140822048.67 +UniRef50_W5V0V9 Diguanylate cyclase 9.41863439182e-06 4.6175625396e-06 -1938251622.52 +UniRef50_Q87VK2 23S rRNA methyltransferase RlmB 2.30316973423e-05 2.14507735106e-05 -638238350.974 +UniRef50_J3NBY7 1.20530694889e-06 6.50640477246e-06 2140118243.16 +UniRef50_A7HSL3 Cobyrinic acid ac diamide synthase 0.000148672134401 3.65074459378e-05 -45282261148.0 +UniRef50_Q5HRG3 UPF0382 membrane protein SERP0230 0.00016053330234 0.000290199228086 52347725403.5 +UniRef50_K0WGN5 4.77548506983e-06 2.82374538832e-06 -787941259.965 +UniRef50_F2A341 3.72942688965e-07 6.69305281982e-07 119645215.579 +UniRef50_Q3IVE7 Transcriptional regulator, LysR family 1.30018136227e-06 3.13056577946e-06 738948650.562 +UniRef50_D1ABZ6 6.74185480987e-08 3.24769725612e-07 103895828.416 +UniRef50_Q8CTY1 3.80740178412e-05 2.54195888779e-05 -5108748259.79 +UniRef50_N4DJP8 LysR substrate binding domain protein 0.000165015303699 8.68372233138e-05 -31561450404.4 +UniRef50_UPI00046D6061 hypothetical protein 1.3662100412e-07 1.78345391372e-07 16844647.1494 +UniRef50_UPI00031728D0 hypothetical protein 8.38000235742e-08 1.06201148078e-07 9043608.85489 +UniRef50_A5MZF0 Predicted signal transduction protein 2.66817972855e-06 9.55268522999e-06 2779359353.31 +UniRef50_UPI000478BE40 cell division protein FtsY 4.4937198201e-08 4.99444260112e-08 2021479.31257 +UniRef50_H3VHH5 2.16623604627e-05 1.77013010107e-06 -8030737502.09 +UniRef50_A1AZI3 2.58175290983e-06 1.99184284167e-06 -238153933.527 +UniRef50_P31777 Ribosomal RNA large subunit methyltransferase J 3.16398745274e-05 1.53695522832e-05 -6568528749.29 +UniRef50_I0ETN8 3.28018114884e-06 1.99484573836e-05 6729187658.74 +UniRef50_C8S0X4 1.23528781913e-05 8.91322057633e-07 -4627170860.28 +UniRef50_P75966 Ribosomal large subunit pseudouridine synthase E 3.3564393373e-05 8.33305232026e-06 -10186202006.3 +UniRef50_E2QQW0 2.54431218071e-05 3.47431417878e-05 3754532190.29 +UniRef50_UPI000378A4F9 hypothetical protein 8.19284926225e-08 6.66130595076e-06 2656175417.89 +UniRef50_A3PJC9 MgtC SapB transporter 7.66071982215e-05 8.66553596055e-06 -27428882792.7 +UniRef50_A8LHS0 Type II secretion system protein 0.000104727742299 1.89637569442e-05 -34623973330.2 +UniRef50_N0AZ28 Short chain acyl CoA synthetase 2.27995720259e-05 2.96880863012e-06 -8005922533.72 +UniRef50_A0A018QNM9 Glucan biosynthesis protein G 5.63269110392e-07 8.26795838205e-07 106388973.855 +UniRef50_UPI000425424A leucyl tRNA synthetase 1.74457684189e-08 2.31904836894e-08 2319212.05028 +UniRef50_UPI000361D7A6 hypothetical protein, partial 7.41257975185e-07 7.016652789e-06 2533453894.09 +UniRef50_B5F095 UPF0194 membrane protein YbhG 4.10699612823e-05 1.559162677e-05 -10285916296.9 +UniRef50_A0A038GAC7 4.62578920171e-07 2.69659717006e-06 901900581.967 +UniRef50_A7IGL7 Fructose 1,6 bisphosphatase class 1 1 2.39869896485e-07 2.39258956952e-07 -246643.786543 +UniRef50_X0UWW1 Marine sediment metagenome DNA, contig 8.14339825635e-06 2.92059306647e-06 -2108510546.18 +UniRef50_UPI00046D96F8 PREDICTED 6.0731794209e-07 6.0793935683e-07 250872.756154 +UniRef50_UPI00047DA76B UTP glucose 1 phosphate uridylyltransferase 1.90319808949e-06 1.06826509575e-06 -337072695.353 +UniRef50_T1DQ54 Putative dosage compensation complex subunit mle 3.25045340539e-07 6.27084539134e-08 -105908620.367 +UniRef50_Q60317 Probable aspartate aminotransferase 1 2.35168158573e-05 5.5882807145e-06 -7237969645.01 +UniRef50_P57061 Lipoprotein releasing system transmembrane protein LolC 1.24995360549e-06 1.49496598633e-05 5530739530.57 +UniRef50_I3U950 1.84589809737e-07 1.45515088597e-07 -15774944.425 +UniRef50_C0ZTQ3 2.34949785595e-06 3.26621253566e-05 12237579699.8 +UniRef50_S5VEZ7 Alpha galactosidase 4.17487277896e-06 9.29494223385e-06 2067034869.26 +UniRef50_UPI00036308A8 hypothetical protein 2.41299024464e-07 1.89814350507e-07 -20784994.6644 +UniRef50_B2S842 Porphobilinogen deaminase 3.06435229914e-07 8.22282976115e-08 -90515089.8992 +UniRef50_Q9RXS6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 5.60622755721e-06 0.000354419827311 1.40820330645e+11 +UniRef50_Q9RUR7 4.40645123179e-06 0.000538495595985 2.15618341748e+11 +UniRef50_D7BIR4 3.85250327578e-06 6.21687670526e-07 -1304319906.41 +UniRef50_Q5SI49 tRNA pseudouridine synthase D 1.33116038787e-07 4.97740017588e-07 147203174.681 +UniRef50_O07134 Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase 3.07733143081e-06 3.26070662046e-05 11921516298.8 +UniRef50_E3A1T0 1.01832388616e-05 6.65838472429e-06 -1423026870.06 +UniRef50_J9YRE4 Permease 3.05046228192e-06 2.97673757941e-06 -29763567.1071 +UniRef50_N1NMR4 4.19130082496e-06 4.13989260398e-06 -20754129.6594 +UniRef50_UPI000273BF3C PREDICTED 2.01047016641e-07 1.03208153753e-05 4085474669.93 +UniRef50_Q9A176 Protein NrdI 1.19568256144e-07 4.8972160221e-07 149435448.099 +UniRef50_A8LHW3 Aminotransferase class I and II 3.67212573027e-05 3.2612323016e-06 -13508222693.6 +UniRef50_Q88XV1 Energy coupling factor transporter ATP binding protein EcfA2 6.94285955778e-05 5.29908676943e-05 -6636112460.17 +UniRef50_J8W6V4 Putative phage associated protein 1.10403802565e-07 6.74218271393e-07 227618819.847 +UniRef50_A6LX69 2.60423895184e-06 6.83892032202e-06 1709592834.53 +UniRef50_UPI000479C5D4 hypothetical protein 1.89999040989e-06 2.48246695313e-07 -666829206.751 +UniRef50_UPI000426B838 sulfate permease 5.68407074452e-07 1.80334646706e-07 -156669601.265 +UniRef50_I4DYV1 Branched chain amino acid ABC transporter permease protein 3.54712598539e-06 1.35551109466e-05 4040346340.62 +UniRef50_E9C0U9 GTP binding protein TypA 7.94444714053e-05 2.52287959768e-05 -21887533471.6 +UniRef50_S5XU71 8.19930893159e-07 6.38009451897e-07 -73443918.2646 +UniRef50_UPI0004748AC6 aldolase 1.20739065241e-06 3.78468844891e-07 -334645905.71 +UniRef50_F6FQD2 Nicotinate phosphoribosyltransferase 1.35299637578e-06 1.8037064542e-05 6735563055.23 +UniRef50_Q92V09 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 1.32314507799e-07 1.65877858902e-07 13549936.7089 +UniRef50_UPI000379F656 hypothetical protein 3.29441715631e-07 6.43868306279e-07 126937873.093 +UniRef50_A5G208 6.69571599676e-07 3.88776787839e-07 -113360311.278 +UniRef50_D5Z124 Phosphoribosylformylglycinamidine synthase subunit I 2.51703186687e-07 2.46718300064e-07 -2012459.90114 +UniRef50_D8JJB8 Riboflavin biosynthesis protein RibF 2.6475727968e-06 7.25609991529e-05 28224908154.2 +UniRef50_D9QJC6 Cysteine desulfurase 6.64871113548e-05 1.65431861469e-05 -20162975487.3 +UniRef50_T0TC75 Poly D alaninet ransfer protein DltD 4.73674329413e-05 1.15899275952e-05 -14443817947.6 +UniRef50_B5F7E7 Phosphoenolpyruvate synthase regulatory protein 4.56153042611e-05 7.3957950839e-06 -15429684861.0 +UniRef50_Q52986 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI 3.342519993e-05 1.01311366358e-05 -9404099202.17 +UniRef50_Q8DUN5 Ferredoxin NADP reductase 6.0242820727e-05 1.32603322691e-05 -18967407130.4 +UniRef50_UPI00047D9459 hypothetical protein 9.82030943027e-08 7.5251691884e-08 -9265762.80181 +UniRef50_UPI000472033F hypothetical protein 7.77162903018e-09 4.72664108727e-07 187682798.926 +UniRef50_R4RQA1 MFS type transporter 7.74595052315e-07 1.40738699848e-06 255465873.897 +UniRef50_UPI000377EFC4 hypothetical protein 5.89117691443e-08 8.98611234003e-08 12494634.1044 +UniRef50_D3QJ40 Riboflavin biosynthesis protein RibD 0.000257206235796 5.37257116554e-05 -82147584582.5 +UniRef50_B0SGE9 Pyridoxine pyridoxamine 5 phosphate oxidase 1.0061762005e-07 9.32392407724e-07 335797688.808 +UniRef50_T0TDK7 Chorismate mutase I 8.34248644471e-06 6.73726323636e-06 -648048307.515 +UniRef50_Q9RZG4 1.99376402564e-06 0.000201966654755 80731509930.6 +UniRef50_T1BKR4 DNA repair protein RadA 7.94560936296e-08 3.56516053712e-07 111852505.793 +UniRef50_O32232 Carboxylesterase 0.00018312527669 9.18979181966e-05 -36829604109.4 +UniRef50_O25039 Exodeoxyribonuclease 7 large subunit 9.94256335816e-07 2.57500949559e-05 9994235839.24 +UniRef50_F5M463 4 alpha glucanotransferase 6.24703563073e-06 3.26795801954e-06 -1202690189.03 +UniRef50_A7ILS7 1.95131380502e-06 5.86705342295e-07 -550909182.029 +UniRef50_X1FUR4 Marine sediment metagenome DNA, contig 5.73541250892e-07 7.33990986429e-07 64775527.176 +UniRef50_J1C3T0 6.77065814862e-05 2.72088707168e-05 -16349422800.4 +UniRef50_Q2NYV9 ATP dependent protease ATPase subunit HslU 4.66495914154e-05 1.26406691381e-05 -13729819259.8 +UniRef50_C1DN07 Polysaccharide biosynthesis protein 4.631099309e-06 9.51100499805e-07 -1485660677.93 +UniRef50_UPI0004758B17 NUDIX hydrolase 5.7461720283e-07 9.05738826716e-08 -195414228.227 +UniRef50_H1SB32 1.72122406604e-06 7.68411982585e-06 2407294191.19 +UniRef50_A5UXK1 NADH quinone oxidoreductase subunit B 1 1.46523285773e-07 1.22680776647e-06 436124101.44 +UniRef50_UPI000467AAFA hypothetical protein 2.31629721577e-08 1.24192951441e-08 -4337354.25013 +UniRef50_Q9A0C6 Carbamoyl phosphate synthase large chain 7.81758507262e-06 2.05153872519e-05 5126258559.34 +UniRef50_UPI0004722C63 hypothetical protein 1.84074761173e-07 3.08474762305e-07 50221807.0167 +UniRef50_UPI000367B5A7 peptidase S14 6.13528049403e-08 1.06297807008e-07 18144848.8719 +UniRef50_Q8XJ76 Phenylalanine tRNA ligase beta subunit 5.31019916438e-06 8.13067194797e-06 1138659473.83 +UniRef50_P32689 6.38341394546e-05 1.41919615665e-05 -20041156391.5 +UniRef50_P32688 3.12582134213e-05 6.1813542191e-06 -10123835787.6 +UniRef50_A5UKK2 Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF 3.68550201413e-05 1.23855306996e-05 -9878633162.02 +UniRef50_UPI0003B45101 recombinase RecF 1.31776464676e-07 1.40945977535e-07 3701844.86375 +UniRef50_P39651 0.000245750725437 7.22354848411e-05 -70050231900.0 +UniRef50_UPI0004735386 hypothetical protein, partial 1.43575808658e-07 4.5761733786e-08 -39488742.3395 +UniRef50_Q1ARM2 Biotin lipoyl attachment 3.10784266904e-07 3.73818573356e-07 25447723.0326 +UniRef50_C1F2D1 NAD specific glutamate dehydrogenase domain protein 3.70416471266e-08 7.83154241518e-08 16662730.2713 +UniRef50_P32687 4.41561342627e-05 7.2743604818e-06 -14889624665.6 +UniRef50_UPI00047736AE threonine aldolase 5.80882714178e-08 8.71874967627e-08 11747714.3594 +UniRef50_Q9ZGN9 ABC transporter family protein 0.000231026341526 2.81019902571e-05 -81923050769.1 +UniRef50_UPI000011E309 transposase, pseudogene 1.30716080354e-06 0.000151274084754 60543487499.7 +UniRef50_D4JCQ5 NADPH dependent glutamate synthase beta chain and related oxidoreductases 4.06263274426e-06 1.12893847319e-05 2917528459.63 +UniRef50_Q18B68 1 deoxy D xylulose 5 phosphate synthase 2.07099384224e-08 7.90805629204e-08 23564937.398 +UniRef50_C5C7N2 4.34439023213e-08 1.75737853778e-07 53408691.6325 +UniRef50_C7ZS00 7.01141806626e-05 1.38297340731e-05 -22722721776.0 +UniRef50_M7N0H7 1.40641553897e-07 1.36500446927e-06 494290333.557 +UniRef50_A4WW43 1.74762031871e-06 8.00426769978e-07 -382393658.995 +UniRef50_R4K685 Fe S oxidoreductase 2.4214986201e-05 6.22434657062e-06 -7263041988.77 +UniRef50_UPI00036082CE hypothetical protein 3.78895586084e-08 4.10599987904e-07 150467773.978 +UniRef50_M4WXK7 1.61906284018e-05 3.61665506771e-06 -5076267334.98 +UniRef50_A3PRJ1 2.22871928188e-05 1.2289177358e-05 -4036321530.97 +UniRef50_A6M0J7 Methyl accepting chemotaxis sensory transducer 2.57035560643e-06 8.95202361581e-06 2576357687.26 +UniRef50_O59778 Biotin synthase 1.56055492876e-05 1.124401892e-05 -1760803331.4 +UniRef50_A0A011NHA3 1.62804305058e-06 2.51812244254e-07 -555601264.767 +UniRef50_I0JR51 TetR family transcription regulator 7.36492188731e-05 2.78067092202e-05 -18507183697.7 +UniRef50_T2SYZ3 9.20334809672e-08 3.36602471348e-05 13551899780.3 +UniRef50_A6M003 Two component, sigma54 specific, transcriptional regulator, Fis family 3.98514318507e-06 7.9673729552e-06 1607675025.66 +UniRef50_C9A997 Alpha acetolactate decarboxylase 0.000265054845912 8.62250635303e-05 -72195777635.8 +UniRef50_F3Y7S3 Low molecular weight protein tyrosine phosphatase 5.9758445174e-05 4.15939021406e-06 -22446020764.4 +UniRef50_W4TWJ0 GMP synthase 1.03136495798e-06 3.04825480215e-06 814243180.113 +UniRef50_UPI000304C6B6 hypothetical protein 3.03277086967e-07 6.1948372485e-07 127656500.005 +UniRef50_UPI00047969EC ferrichrome ABC transporter 1.58582755803e-07 3.38348184242e-07 72573509.4307 +UniRef50_UPI00036BADB7 hypothetical protein 1.05451137734e-07 1.40705537584e-07 14232633.8396 +UniRef50_UPI000476CE7F formyltetrahydrofolate deformylase 1.92575875458e-07 1.86895804732e-07 -2293114.25439 +UniRef50_E6X978 NADP dependent oxidoreductase domain protein 1.87803974553e-06 2.02465598241e-05 7415596962.82 +UniRef50_Q9I596 Neutral ceramidase 7.47080080554e-06 3.26476831722e-06 -1698026929.36 +UniRef50_E2QM67 2.14901423075e-05 1.30578687325e-05 -3404212317.86 +UniRef50_UPI0004756DAB chromosome partitioning protein 8.17605639413e-08 1.29659318228e-07 19337314.8894 +UniRef50_K9IFC3 Purine nucleosidase 1.53882886279e-07 1.42061755336e-07 -4772335.62328 +UniRef50_U5MVL7 Low specificity L threonine aldolase LtaE 5.2686354827e-06 9.50233193128e-06 1709195209.59 +UniRef50_UPI000467F4BE hypothetical protein 1.50542335541e-06 2.79367605533e-07 -494973751.622 +UniRef50_Q4A072 Na+ H+ exchanger 8.57290661587e-05 3.23854595074e-05 -21535468604.8 +UniRef50_A6LQ30 Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein 4.37100657518e-06 7.52530591529e-06 1273429351.21 +UniRef50_Q6FAA9 Elongation factor P 2.16117932552e-06 4.52430942389e-05 17392697725.1 +UniRef50_UPI000287DA5E heavy metal transporting P type ATPase 4.8042382204e-08 5.34025931399e-07 196197522.499 +UniRef50_F5M2C8 Inositol monophosphatase 4.64371332074e-05 4.52357064562e-06 -16921019543.4 +UniRef50_M1N6B4 Ribonuclease E 8.37681513816e-06 2.42474244203e-05 6407159721.46 +UniRef50_S9RVU8 Mobile element protein 2.42881846922e-07 1.17539025047e-07 -50602435.3203 +UniRef50_UPI0004768A02 hypothetical protein 3.80517971301e-07 7.13747840495e-05 28661256413.4 +UniRef50_UPI0003B4B8C4 rRNA methyltransferase 3.59520715948e-07 2.1174259502e-07 -59659840.8601 +UniRef50_UPI0003827792 hypothetical protein 1.32423340973e-07 9.17165658924e-08 -16433824.6283 +UniRef50_Q8UD63 2 isopropylmalate synthase 3.42790571387e-08 1.8136583151e-07 59380735.7713 +UniRef50_Q4FQ21 UDP N acetylmuramoylalanine D glutamate ligase 8.50193668641e-07 6.1263127281e-05 24389442649.4 +UniRef50_A3PS43 RepA 8.11322712027e-06 2.95809721398e-06 -2081189203.73 +UniRef50_UPI000472BDAD hypothetical protein, partial 2.19233112502e-06 1.06540698524e-06 -454953104.143 +UniRef50_P00893 Acetolactate synthase isozyme 3 large subunit 2.63134643519e-05 2.28647244295e-05 -1392298627.47 +UniRef50_Q16134 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 6.77978060068e-08 1.61953006511e-07 38011609.8578 +UniRef50_Q9RWS6 1.80149902168e-07 0.000178655269123 72052595765.5 +UniRef50_UPI000473521A glutamate synthase, partial 1.77432696565e-08 2.83195674963e-08 4269781.2237 +UniRef50_D2Q2X8 Cell envelope related transcriptional attenuator 3.83383480767e-08 1.33563431059e-07 38443534.5431 +UniRef50_Q1R8C8 2.39204786417e-05 3.73031627616e-06 -8151016308.11 +UniRef50_P31660 2 methylcitrate synthase 2.24962882798e-05 0.000128614066204 42841049159.5 +UniRef50_Q5M2Y8 Polar amino acid ABC uptake transporter membrane spanning protein 5.77906079839e-05 5.37740734636e-05 -1621524274.27 +UniRef50_Q2S1S3 Glutamate 1 semialdehyde 2,1 aminomutase 9.04314876951e-08 2.44276965825e-07 62109307.4174 +UniRef50_M9RWZ9 RNA methyltransferase 7.97513117142e-06 9.52864192453e-06 627171354.751 +UniRef50_B6JIZ7 Crossover junction endodeoxyribonuclease RuvC 4.6648044647e-05 2.8204990672e-05 -7445687211.43 +UniRef50_Q0BQU0 1.12821560914e-08 2.30266026039e-07 88406475.5323 +UniRef50_U6I6D8 Dihydropyrimidine dehydrogenase 1.11580789459e-07 9.28411541135e-08 -7565420.75016 +UniRef50_A3M2D6 7.05949687179e-06 0.000102144213192 38386866799.1 +UniRef50_A3M2D5 2.23648994873e-06 0.000157066851758 62506917044.5 +UniRef50_UPI00046DDB7F PREDICTED 1.04156638361e-06 5.42494403056e-08 -398591965.753 +UniRef50_A3M2D9 3.51945069607e-06 0.000123522579442 48446735678.7 +UniRef50_A3M2D8 9.68473818285e-07 9.86230622784e-05 39424355717.9 +UniRef50_Q5E727 Urease subunit beta 3.86473069012e-07 2.15352461845e-07 -69083488.9993 +UniRef50_UPI0003C1B3D1 3.29972921767e-08 1.42042003433e-07 44022688.0631 +UniRef50_UPI00041EF0AD hypothetical protein 1.79569004117e-07 6.02985700891e-07 170938516.395 +UniRef50_UPI000369A5D7 hypothetical protein 1.14320495302e-07 1.72387678422e-07 23442434.39 +UniRef50_UPI000467E096 hypothetical protein 6.30358355682e-07 4.84440774108e-07 -58908718.2915 +UniRef50_Q88WP5 tRNA dimethylallyltransferase 2.95371902639e-07 3.41033193067e-05 13648683237.2 +UniRef50_A8F961 Serine acetyltransferase 4.92897018218e-06 1.09320600233e-05 2423521035.06 +UniRef50_P77968 Superoxide dismutase [Fe] 5.09775378426e-05 3.66438191664e-06 -19100901645.0 +UniRef50_E6S1Z5 Menaquinone biosynthesis protein, SCO4494 family 1.07240337745e-06 2.61019214687e-05 10104723600.1 +UniRef50_UPI00016C3B63 L aspartate oxidase, partial 5.13564402652e-08 9.50703334215e-08 17647835.097 +UniRef50_Q7NPZ7 UDP N acetylmuramoylalanine D glutamate ligase 1.30467507666e-06 2.43187437997e-05 9291061957.86 +UniRef50_A0A058VD88 Phosphoribosylaminoimidazolesuccinocarboxamide synthase like protein 4.56932642727e-07 4.42091165916e-07 -5991686.314 +UniRef50_Q9I0I6 Methyl accepting chemotaxis protein PA2652 3.52490786946e-06 3.9004886388e-06 151626565.477 +UniRef50_T1K2G0 9.65610707001e-05 1.05173805588e-05 -34736893584.9 +UniRef50_D3P3A4 Transposase 7.37916836446e-05 7.61084223548e-07 -29483349172.5 +UniRef50_A3PLJ3 0.00013076074232 2.97060972472e-05 -40797000295.9 +UniRef50_UPI0003720E8F hypothetical protein 9.49329018536e-07 1.09745865198e-06 59801750.7764 +UniRef50_UPI00037E700F hypothetical protein 4.5864165894e-08 5.7364189125e-08 4642700.49951 +UniRef50_Q05624 Phosphate butyryltransferase 1.24857548682e-06 1.52569703067e-05 5655360891.13 +UniRef50_A0A023RYG5 Hydrolase 2.12673599042e-06 8.02945430199e-05 31557302924.7 +UniRef50_A5IS38 Phosphodiesterase, MJ0936 family 0.000131558039801 9.042730315e-06 -49460933871.4 +UniRef50_Q6GI75 Enoyl [acyl carrier protein] reductase [NADPH] FabI 0.000179188376293 3.80824134455e-05 -56966208766.6 +UniRef50_UPI00045E7AD4 2 polyprenylphenol hydroxylase 6.95508288561e-08 1.05811140966e-07 14638732.9628 +UniRef50_P52308 DNA primase 6.02106915919e-07 1.9527130863e-05 7640264403.6 +UniRef50_A4WQE3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 2.57883166041e-05 1.9227576281e-05 -2648651377.77 +UniRef50_G7M2Z2 Acriflavin resistance protein 3.88936743934e-06 5.48785424775e-06 645328740.194 +UniRef50_UPI0003C4AE88 PREDICTED 5.4153621612e-07 2.15401070385e-07 -131664760.462 +UniRef50_N0B1P0 Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase 8.25155147243e-06 1.34257029589e-05 2088868449.07 +UniRef50_J9Z1D2 Hypoxia induced family protein 2.13565309037e-07 2.53920855143e-07 16292029.1812 +UniRef50_UPI00037EB16F thymidylate synthase 1.08099390009e-07 5.5912709852e-07 182085420.658 +UniRef50_F5RE08 5.21561848398e-06 3.23358572359e-06 -800170947.647 +UniRef50_R0EX71 TRAP C4 dicarboxylate transport system permease DctM subunit 1.1025893288e-07 8.11070396768e-08 -11768977.0201 +UniRef50_UPI00046EE358 hypothetical protein, partial 1.54291497045e-07 1.11014171378e-06 385888462.097 +UniRef50_G7LXD6 1.07138880474e-06 1.26655150632e-05 4680691046.48 +UniRef50_B4VB07 Type I PKS 2.5325859972e-06 8.09269813902e-07 -695723890.666 +UniRef50_P55189 Putative sulfate transporter YbaR 0.000332638873465 9.79420999235e-05 -94749967532.2 +UniRef50_B9EBL7 0.000147188271841 2.24854317062e-05 -50344066838.4 +UniRef50_E4NJ63 3.07827872702e-09 4.1342699129e-09 426316.600209 +UniRef50_A1B623 6.93799523845e-06 7.17820107701e-07 -2511161030.42 +UniRef50_UPI00021954C2 thymidylate kinase 1.00235012671e-07 1.42640886043e-07 17119771.4589 +UniRef50_Q4L540 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000191855804536 5.02667276234e-05 -57161247843.1 +UniRef50_UPI00046E93BA Holliday junction resolvase 1.76975454317e-07 1.42982953332e-07 -13723189.7825 +UniRef50_P39346 L idonate 5 dehydrogenase (+)) 1.89798702301e-05 4.54320676636e-06 -5828258198.08 +UniRef50_I6DGS5 Response regulator 1.0113535271e-06 1.4959060866e-06 195619814.399 +UniRef50_UPI000376418A xanthine phosphoribosyltransferase 3.47631047232e-07 5.3162084705e-07 74278939.9953 +UniRef50_UPI00047230A9 carbamoyl phosphate synthase large subunit 1.43848954576e-08 4.62011510452e-08 12844612.8101 +UniRef50_A6LT71 1.90329070009e-06 3.16875556521e-05 12024273255.2 +UniRef50_F4A863 8.38802052221e-08 1.38886124734e-07 22206564.7055 +UniRef50_UPI00037C86FD hypothetical protein 1.28239747486e-07 2.16149143981e-07 35490102.1346 +UniRef50_A3PGH0 Acyltransferase 3 1.80608458437e-05 7.26140859349e-06 -4359865341.9 +UniRef50_A0A012LJX4 PTS system mannitol specific EIICB component 1.18758394005e-07 2.99492061989e-07 72964399.6166 +UniRef50_UPI00047AF5BF hypothetical protein 4.93267020139e-07 5.42699650765e-07 19956559.5903 +UniRef50_UPI00047D7213 antitermination protein NusG 2.6258829305e-07 5.57646079986e-07 119118449.352 +UniRef50_J9NZJ3 9.07280274307e-07 3.74123687487e-06 1144103056.2 +UniRef50_Q3JPN7 1.1424244143e-06 2.95136361072e-07 -342060584.482 +UniRef50_J9NZJ0 6.76170516728e-08 1.21835406466e-06 464566653.275 +UniRef50_UPI00006CADE3 Glutamate Leucine Phenylalanine Valine dehydrogenase family protein 5.04609241008e-08 7.09297487305e-07 265980405.399 +UniRef50_K7S7N6 AXE1 multi domain protein 1.14737382625e-06 4.16092608606e-05 16334960319.0 +UniRef50_Q86ZM3 Catabolic 3 dehydroquinase 4.36126849552e-07 2.23471679917e-07 -85851501.554 +UniRef50_Q838A4 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 6.59566765884e-05 8.35561685915e-05 7105130891.7 +UniRef50_Q46904 Probable electron transfer flavoprotein quinone oxidoreductase YgcN 4.50671294569e-05 1.39201722548e-05 -12574408838.6 +UniRef50_Q9ZLD6 UvrABC system protein A 4.52802065825e-07 3.4339979654e-05 13680669434.8 +UniRef50_Q2FRE6 Nucleoside diphosphate kinase 1.06555755807e-07 4.75735487631e-07 149042388.082 +UniRef50_P46859 Thermoresistant gluconokinase 6.19543379916e-06 2.3801048857e-05 7107602844.03 +UniRef50_P0A9C3 Aldose 1 epimerase 2.58067039322e-05 1.30548031936e-05 -5148098811.59 +UniRef50_UPI0003F77CB8 hypothetical protein 3.53088560919e-08 5.80156056179e-07 219961500.702 +UniRef50_M9VF11 1.75850184045e-05 8.89661509526e-05 28817439154.7 +UniRef50_A6LR82 Transposase 2.94910928794e-06 1.27720519856e-05 3965642508.11 +UniRef50_V5VI78 Thiol 1.62476035378e-06 4.10126531656e-05 15901375671.9 +UniRef50_Q54433 Probable phosphopantothenoylcysteine decarboxylase 1.07745967448e-05 3.96123237492e-05 11642144270.4 +UniRef50_B0VEJ2 6.86338161594e-07 5.11761076274e-05 20383339512.5 +UniRef50_Q5HP16 Octanoyltransferase LipM 6.23460419002e-05 4.51189382822e-05 -6954793130.92 +UniRef50_C7J469 Os06g0328400 protein 4.32644533038e-07 1.572496307e-06 460172148.702 +UniRef50_D3FFF2 ABC transporter related protein 1.70486514729e-05 4.81839989651e-06 -4937502643.46 +UniRef50_A6LTK9 Transcriptional regulator, GntR family 1.66783205682e-06 1.41169236652e-05 5025851049.84 +UniRef50_UPI0003B2EB2A glycerol kinase 1.30864608729e-07 5.55243145485e-08 -30415801.29 +UniRef50_E5CQ05 Replication initiation protein 2.52022280953e-06 2.85752892185e-06 136174616.755 +UniRef50_UPI000255E431 cystine transporter permease 6.66403429153e-07 1.09528254037e-06 173143760.137 +UniRef50_UPI00037539AF S adenosylmethionine synthetase 1.7943762393e-07 1.60165593925e-05 6393640401.32 +UniRef50_A6E1L3 2 hydroxyacid dehydrogenase 2.61608366741e-06 1.913708631e-06 -283557421.31 +UniRef50_UPI0004672A57 hypothetical protein 1.11682245224e-06 1.56004909309e-07 -387893832.638 +UniRef50_M9RK54 UPF0717 family protein 5.68106025131e-05 4.45715976106e-05 -4941036468.62 +UniRef50_UPI0004628C07 hypothetical protein 1.55257226169e-07 1.49894808155e-07 -2164873.95652 +UniRef50_Q49VT5 7.97990404066e-06 1.14872277836e-05 1415949634.73 +UniRef50_M1MBM4 5.61364523412e-06 2.18356047383e-05 6549004117.67 +UniRef50_B6ISU5 1 deoxy D xylulose 5 phosphate reductoisomerase 3.00656720842e-05 1.71140520722e-05 -5228727933.09 +UniRef50_A5IVI2 GCN5 related N acetyltransferase 0.000174203900916 5.35429124419e-05 -48712321723.8 +UniRef50_G3A8C8 Putative transposase 5.80401440153e-07 2.06172713112e-07 -151080729.409 +UniRef50_V9G5F4 Iojap protein 3.58681641036e-07 9.83865104399e-06 3827179980.28 +UniRef50_UPI0004774299 aldehyde dehydrogenase, partial 1.90479037125e-07 2.06548502196e-06 756962924.991 +UniRef50_P50141 GTP cyclohydrolase 1 2.93670348758e-07 3.37790018659e-07 17811652.1483 +UniRef50_A0A037UUK8 2.19783825067e-06 8.67799590184e-07 -536952928.65 +UniRef50_Q6A5P9 6.13639472531e-06 0.000104821050853 39840206675.7 +UniRef50_Q53074 UvrB protein 5.2310331042e-05 2.9694267887e-06 -19919528528.0 +UniRef50_Q97PK0 Putative GTP cyclohydrolase 1 type 2 4.34769471106e-05 4.74624853255e-05 1609010685.41 +UniRef50_UPI0003707E4A hypothetical protein 1.32912306155e-06 1.72820546738e-07 -466813514.656 +UniRef50_B4FZA3 6.81491647936e-08 1.10499416571e-07 17097316.3386 +UniRef50_UPI000366285D ATPase AAA 5.06646848846e-08 7.82940424901e-07 295628702.278 +UniRef50_V0V0Z7 3.43169080774e-06 4.8412574623e-06 569059355.774 +UniRef50_UPI000377C6CE hypothetical protein 2.05073781574e-08 1.74474566522e-07 62158443.3328 +UniRef50_E3GXW6 CobB CobQ domain protein glutamine amidotransferase 2.21183120807e-05 1.49131048148e-05 -2908830591.08 +UniRef50_A5UL08 3.40474721315e-05 7.10170474252e-06 -10878336956.7 +UniRef50_R4RG70 Cyclase family protein 0.000185230147964 5.62504453324e-05 -52070688711.5 +UniRef50_UPI00040EF0A5 hypothetical protein 2.55961049826e-08 6.92807511495e-07 269361432.414 +UniRef50_F8TVB7 1.97370042719e-07 1.78455386154e-07 -7636078.96423 +UniRef50_V5YQU8 YycH protein 0.000219938124284 4.61887532639e-05 -70144753225.3 +UniRef50_UPI00047D67EB thioredoxin reductase 1.28772586399e-07 1.31331204614e-07 1032945.57117 +UniRef50_G7M4A9 Exonuclease RNase T and DNA polymerase III 1.4803372112e-06 2.34378337464e-06 348583811.857 +UniRef50_F1VZ41 1.40049385308e-06 2.33971483692e-07 -470939395.362 +UniRef50_M1KV66 Mucin 17 like protein 4.47502244079e-08 1.42213285055e-07 39347033.5895 +UniRef50_F2JM36 ABC type transporter, periplasmic subunit family 3 7.05143430581e-06 1.16441901343e-05 1854151887.41 +UniRef50_UPI0003FD0BE2 D ribose transporter ATP binding protein 3.49936720893e-08 5.71028827454e-08 8925759.65239 +UniRef50_J7R096 5.70409440876e-07 5.38698830455e-07 -12801962.5599 +UniRef50_M7RJM0 Mg chelatase, subunit ChlI 8.8684293154e-08 2.11383979777e-07 49535369.1842 +UniRef50_A6M192 Flagellar hook capping protein 3.45123738524e-06 7.65675231504e-06 1697817984.63 +UniRef50_B2IDX6 Signal recognition particle protein 6.1461913419e-05 1.55959532189e-05 -18516650971.4 +UniRef50_A1JMA3 Formate tetrahydrofolate ligase 2.69741483613e-07 4.3496199444e-07 66701547.7045 +UniRef50_Q6ZEM6 Arsenate reductase ArsI1 6.28721445997e-05 1.64367513208e-05 -18746538093.0 +UniRef50_I4Z0I0 1.48008297087e-06 3.29094813587e-07 -464668043.307 +UniRef50_UPI0004655B4D chemotaxis protein CheY 2.00210299506e-07 2.36994274255e-07 14850141.9963 +UniRef50_Q313L3 Protein translocase subunit SecA 3.92081843457e-06 1.52683184065e-05 4581124988.14 +UniRef50_A0JSX3 Carbohydrate ABC transporter membrane protein 1, CUT1 family 2.42672580455e-06 7.01389251153e-05 27336245783.9 +UniRef50_A4SMY4 Serine threonine protein kinase, RI01 family 4.30484341631e-06 7.03533841073e-06 1102334336.19 +UniRef50_UPI0003793F1D hypothetical protein 4.57069822343e-07 3.12458430267e-07 -58381393.5624 +UniRef50_UPI0003C112FF PREDICTED 1.59055496191e-07 1.43128647474e-07 -6429864.27146 +UniRef50_P0ABM9 Cytochrome c type biogenesis protein CcmH 3.11220942337e-05 1.01510923214e-05 -8466250815.13 +UniRef50_B3PGS4 Flagellar basal body rod protein FlgF 1.60177930206e-06 3.01343576728e-06 569903037.982 +UniRef50_F6BJB1 N acetylglucosamine 6 phosphate deacetylase 3.89661516172e-06 1.14106500078e-05 3033508074.94 +UniRef50_Q9RW85 MutT nudix family protein 2.43016731023e-06 0.000372221973502 1.49289490015e+11 +UniRef50_W5YET9 NADH quinone oxidoreductase, chain I 8.37404603167e-07 6.2501547139e-07 -85744098.8061 +UniRef50_A6LVB6 Aspartyl glutamyl tRNA amidotransferase subunit B 1.97072619077e-06 1.20862278872e-05 4083752166.0 +UniRef50_W0A553 3.00386728529e-06 3.30786237509e-05 12141548243.9 +UniRef50_UPI00046278A4 hypothetical protein 8.10758331273e-06 2.76517025475e-06 -2156797710.29 +UniRef50_Q3J4U6 2.58327018712e-05 3.26089690688e-05 2735662221.82 +UniRef50_Q9ZM69 Copper transporting ATPase 1.03073608538e-06 5.39555313043e-05 21366389290.1 +UniRef50_T8TFL3 Exonuclease VIII 4.54282958651e-06 1.50077429885e-06 -1228115049.84 +UniRef50_Q0SAE7 1.20107238596e-06 8.18196257271e-07 -154571791.57 +UniRef50_P55255 Glucose 1 phosphate thymidylyltransferase 1.61138241622e-05 4.84057112833e-05 13036631096.8 +UniRef50_P40733 Deoxyguanosinetriphosphate triphosphohydrolase 1.54295699281e-05 6.70265255215e-06 -3523163635.99 +UniRef50_R9SLI5 von Willebrand factor type A domain containing protein 2.46779820902e-05 5.32583745424e-06 -7812698267.07 +UniRef50_C6NYG2 Flagellar biosynthesis protein FlhB 9.14892244882e-07 3.13016641743e-07 -242984566.831 +UniRef50_UPI0004658BA2 ABC transporter ATP binding protein 1.42569188243e-06 4.3875420929e-07 -398438849.734 +UniRef50_J1L2V8 Beta Ig H3 fasciclin 5.30556213744e-07 1.23186796677e-07 -164460032.655 +UniRef50_Y8DDU0 6.22958067642e-05 2.30716175927e-06 -24218152131.9 +UniRef50_UPI000373827F peptidase 2.7849031436e-07 2.97640846367e-07 7731304.77468 +UniRef50_G8B089 6.35136322225e-07 1.18710243746e-06 222835494.106 +UniRef50_UPI0002DC68DF hypothetical protein 7.38687925474e-07 9.47998532056e-08 -259945516.17 +UniRef50_Q9I1P5 7.05744710068e-06 1.75102031702e-05 4219905895.0 +UniRef50_B8EMG0 9.5691803505e-06 6.95845906121e-06 -1053980221.64 +UniRef50_UPI00005C8244 transposase 5.30276686792e-05 1.16572383629e-05 -16701750391.0 +UniRef50_K4FFQ5 Lysine decarboxylase 2.15604834896e-06 8.99432625473e-05 35440775642.1 +UniRef50_Q8CSF5 0.000106079243499 4.59041510662e-06 -40972285429.8 +UniRef50_UPI0003798946 hypothetical protein 1.8489448043e-06 5.45780386188e-07 -526103467.217 +UniRef50_Q9JW21 Amino acid acetyltransferase 1.41878567076e-06 2.94290087203e-05 11308070769.2 +UniRef50_UPI00046441BB hypothetical protein, partial 2.77478391595e-07 7.52691037452e-07 191849176.647 +UniRef50_A8IPV3 Acetylglutamate kinase 5.70593237411e-05 1.9096560019e-05 -15326033570.1 +UniRef50_UPI0003823B10 hypothetical protein 1.36966638286e-06 1.58733586583e-07 -488868429.675 +UniRef50_O29313 Glutamine synthetase 8.29429869726e-08 1.28309922823e-07 18315188.7177 +UniRef50_P26503 UDP glucose 4 epimerase 9.82529560611e-06 2.03473150108e-06 -3145146330.17 +UniRef50_H4EPB9 7.28156244633e-07 2.53510505022e-07 -191620309.639 +UniRef50_UPI00046D45A2 hypothetical protein 7.41324548199e-08 2.22481318952e-06 868256204.419 +UniRef50_UPI00047D5506 hypothetical protein 6.01104862865e-07 1.37015801647e-07 -187358449.027 +UniRef50_W1MTL3 1.07876667732e-05 3.85455424858e-06 -2798982605.05 +UniRef50_U5S0M7 Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein 6.69918486442e-06 7.15373051998e-06 183505659.052 +UniRef50_W7VQA0 1.40555984924e-05 7.81046212398e-06 -2521238188.37 +UniRef50_UPI000377C3F1 resolvase 1.13212928966e-06 2.60393643897e-07 -351930377.594 +UniRef50_Q9ZMY3 RNA polymerase sigma factor RpoD 3.45497038117e-06 2.91801703149e-05 10385578896.9 +UniRef50_P46450 Long chain fatty acid CoA ligase 9.39180578539e-06 7.01150887057e-05 24514734473.4 +UniRef50_A4JN97 1.60424906864e-05 7.67690581897e-06 -3377289268.25 +UniRef50_A6FSV8 1.39876655356e-06 1.30160823173e-06 -39224006.7895 +UniRef50_UPI0004279983 hypothetical protein 3.67917922461e-08 7.26875706296e-08 14491566.2242 +UniRef50_A7X0H4 Argininosuccinate lyase 0.000117212605862 2.50056503979e-05 -37225079427.4 +UniRef50_Q9I1V0 Glycogen synthase 4.07735096774e-06 2.54176614783e-06 -619934435.542 +UniRef50_Q5HMZ9 8.84548794109e-05 3.35199617572e-05 -22177900384.0 +UniRef50_W4U346 DeoR family transcriptional regulator 1.13204102724e-07 4.47881573567e-07 135113401.934 +UniRef50_R7AGH6 M42 glutamyl aminopeptidase 4.33405071934e-06 7.46332107514e-06 1263324843.1 +UniRef50_G0P7V6 5.77902730311e-08 3.8321928354e-08 -7859609.6496 +UniRef50_P14081 Selenocysteine specific elongation factor 3.07511351861e-05 1.08050685201e-05 -8052471878.83 +UniRef50_I6TYL9 5.49049537977e-05 1.77108757975e-05 -15015705711.3 +UniRef50_UPI0003D073EE PREDICTED 4.77159757469e-07 8.28974042425e-07 142031744.083 +UniRef50_P39755 Probable NADH quinone oxidoreductase subunit 5 0.000206132666973 5.1755362641e-05 -62324012181.4 +UniRef50_UPI000347DE5C hypothetical protein 1.48289786683e-07 1.98449184087e-06 741297302.01 +UniRef50_UPI0003D31A3C ABC type dipeptide oligopeptide nickel transport systems 3.06841023033e-06 6.42854944311e-07 -979226433.877 +UniRef50_U6A643 Nicotinamidase family protein YcaC 3.87165116772e-06 4.26859035205e-05 15669789979.3 +UniRef50_B2ILL9 Acetyl CoA carboxylase, biotin carboxylase 2.66728620143e-06 8.11163231694e-05 31670838901.9 +UniRef50_UPI0001E8EA99 phospho N acetylmuramoyl pentapeptide transferase 6.62080952606e-08 1.45888631213e-07 32168010.1541 +UniRef50_Q02CU2 NADH quinone oxidoreductase subunit A 6.99487687194e-07 1.01830225562e-06 128709353.568 +UniRef50_Q2SKM8 ABC type multidrug transport system, permease component 9.44425537599e-06 2.06756152991e-06 -2978061827.88 +UniRef50_A5WCU0 D alanine D alanine ligase 7.04444012695e-08 6.5885560069e-05 26570369837.3 +UniRef50_A0A024HNL0 Diguanylate cyclase 4.05143560939e-08 3.43072804711e-07 122146558.516 +UniRef50_I1ZKL5 Pseudouridine synthase 6.38055860822e-05 0.000101266352365 15123371043.7 +UniRef50_Z7MRV5 EAL domain protein 8.52802165753e-08 7.98820009254e-07 288064770.422 +UniRef50_UPI000471D234 hypothetical protein 6.49560312737e-08 2.53911563829e-07 76283667.2376 +UniRef50_UPI0003D05F43 hypothetical protein 8.29706154929e-07 5.31761810539e-06 1811825127.27 +UniRef50_Q5YYN2 Prolipoprotein diacylglyceryl transferase 5.2166377034e-08 2.09813023488e-07 63643885.7154 +UniRef50_UPI00035D1759 DNA invertase 6.23891323779e-07 5.58853861582e-07 -26256421.5883 +UniRef50_P74193 Threonine synthase 0.000171966409042 0.000148887435881 -9317264675.94 +UniRef50_UPI000409380C orotidine 5 phosphate decarboxylase 5.9463045832e-08 1.49168702931e-07 36215274.5831 +UniRef50_Q99WV0 Glycyl glycine endopeptidase LytM 0.000124148092938 1.90392494214e-05 -42433729958.4 +UniRef50_P64427 UPF0748 lipoprotein YddW 1.76247697209e-05 1.55566306503e-06 -6487295547.1 +UniRef50_Q5LLU6 50S ribosomal protein L3 8.90530689748e-05 4.0670688692e-05 -19532560638.7 +UniRef50_P54452 0.000239797302527 8.36967941145e-05 -63019690815.0 +UniRef50_UPI000262729B diguanylate cyclase 1.32497692275e-07 9.32520815207e-08 -15843934.6593 +UniRef50_UPI0003029904 hypothetical protein 1.46632997847e-07 3.12985779494e-07 67158659.3291 +UniRef50_A0A022G9Q8 3.78118168027e-06 1.81964720127e-06 -791895539.907 +UniRef50_Q9ZLB9 Probable L asparaginase 2.5679318969e-06 3.39785519996e-05 12680852787.1 +UniRef50_C3PF03 Bifunctional purine biosynthesis protein PurH 3.33090273918e-08 2.10543918866e-07 71551900.6047 +UniRef50_D9PXM6 Predicted serine threonine protein kinase 1.06585281482e-05 2.11625124959e-05 4240587379.55 +UniRef50_P77735 3.46603896349e-05 1.26457590845e-05 -8887576503.09 +UniRef50_G8VB53 Amino acid permease 3.24446809098e-06 3.72422486106e-05 13725321195.4 +UniRef50_Q2P0U3 Tryptophan synthase alpha chain 1.61264990198e-07 3.56779987997e-07 78931803.8503 +UniRef50_L1FI55 Citrate carrier 1.92866308867e-05 4.45499117303e-06 -5987714957.11 +UniRef50_Q0FMS9 1.53034860346e-05 9.30435885393e-06 -2421921260.41 +UniRef50_T1Y8E9 2 oxoacid ferredoxin oxidoreductase, alpha subunit 0.000198602005341 3.277275121e-05 -66947304846.5 +UniRef50_A5UJE2 2.48787035764e-05 2.77295820046e-05 1150934605.68 +UniRef50_UPI000474A3E0 transcriptional regulator 7.40912305188e-08 1.2568434344e-06 477491578.708 +UniRef50_W5VFG0 5.00866852388e-05 2.8685024806e-05 -8640112944.63 +UniRef50_Q04661 Tyrosine protein phosphatase CpsB 1.58607558343e-06 4.14148094738e-05 16079348625.1 +UniRef50_J8RX83 Thioesterase family protein 1.42626947925e-06 2.37146561462e-07 -480063514.091 +UniRef50_D3A297 9.48090552991e-07 2.59666475798e-06 665549636.835 +UniRef50_B9E8V3 Putative septation protein SpoVG 4.02749747522e-05 9.26232168594e-05 21133627723.8 +UniRef50_X2M604 7.36797636035e-07 1.60207977501e-06 349325017.71 +UniRef50_UPI00046A9133 hypothetical protein 1.41482857487e-07 9.01894795478e-08 -20707766.1146 +UniRef50_UPI000375D747 cold shock protein 2.07195172502e-07 1.33807533173e-07 -29627490.5647 +UniRef50_R6JIT7 0.000196303988558 5.90671668225e-05 -55404189020.0 +UniRef50_UPI00036CC3FF hypothetical protein 4.16752659457e-07 5.95286567939e-07 72076329.7116 +UniRef50_F6CST0 Peroxiredoxin 1.23078383155e-05 1.32206999562e-05 368533446.423 +UniRef50_Q7MU77 Phosphoglycerate kinase 5.22437976361e-08 4.79080225146e-05 19319965124.5 +UniRef50_A5FWQ8 Fructose 1,6 bisphosphatase class 1 3.82220601129e-07 2.64084401867e-07 -47693033.3363 +UniRef50_Q4L8W8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00021539143469 8.00008620146e-05 -54658835618.1 +UniRef50_Q8A883 Spermidine putrescine import ATP binding protein PotA 8.08585898108e-07 5.80272971393e-05 23099895880.6 +UniRef50_UPI000409F09E hypothetical protein 4.01551425785e-08 5.30661169585e-08 5212318.79268 +UniRef50_D2JLI1 Conjugal transfer protein, putative 0.000123358784789 3.12583087785e-05 -37182092365.4 +UniRef50_M9SAS9 Transcriptional regulator 5.53112996021e-06 2.71763839138e-06 -1135841071.76 +UniRef50_A0A011ME20 2.52762134088e-07 3.82253627912e-06 1441161628.4 +UniRef50_Q3J233 0.000119113447684 4.75681591974e-05 -28883710921.5 +UniRef50_B7N3F3 Chaperone protein TorD 5.22173509315e-05 2.66647443365e-05 -10315900848.1 +UniRef50_UPI00047D14F9 hypothetical protein 4.50993869057e-08 6.95645994845e-08 9876906.53998 +UniRef50_Q63QK7 Arginine biosynthesis bifunctional protein ArgJ 2.87587800444e-06 0.000135742045261 53639702172.9 +UniRef50_D6T8U6 0.000110219587789 1.26474873508e-05 -39391054291.2 +UniRef50_M4V953 4.69207520079e-08 8.32937711656e-08 14684234.1811 +UniRef50_E8ZZL4 EtfB protein 2.36915892584e-06 3.64592574369e-05 13762591101.5 +UniRef50_H1QUK8 8.55626286146e-07 6.94085024983e-07 -65216189.4657 +UniRef50_UPI00036C1506 hypothetical protein 4.08143320466e-07 3.53341976536e-07 -22123975.0327 +UniRef50_UPI0003945D12 PREDICTED 1.30451569939e-07 8.04623183622e-08 -20181274.2987 +UniRef50_G7DIA2 9.74015453895e-07 8.34897140595e-07 -56163770.2529 +UniRef50_Q2P4Y9 Coenzyme PQQ synthesis protein E 1.75926292942e-05 1.74228144654e-06 -6398979931.76 +UniRef50_UPI0004184600 GTP pyrophosphokinase 2.65559882458e-08 1.77088068155e-07 60771647.8956 +UniRef50_A6QIK9 6.43768430981e-05 2.70767554157e-05 -15058503120.9 +UniRef50_P45627 Glutamine synthetase 5.18456172615e-08 1.2002902599e-05 4824788359.47 +UniRef50_B2T5I0 Ribonuclease HII 2.18466481345e-07 9.19637160294e-08 -51070718.7216 +UniRef50_UPI00036856CA hypothetical protein 2.7386493518e-06 4.80139875405e-07 -911787990.647 +UniRef50_R7M1V7 DEAD DEAH box helicase domain protein 6.66095097609e-06 2.36650721688e-05 6864772389.52 +UniRef50_H1BUU0 Inner membrane metabolite transporter ygcS 2.62683084276e-05 1.38244233851e-05 -5023749095.3 +UniRef50_J7QJW8 1.25745658831e-06 1.84889009233e-06 238768963.278 +UniRef50_K5GQ46 1.11966198608e-05 1.0854187655e-06 -4082015960.56 +UniRef50_A6LYI1 6.0317442049e-06 4.11113742723e-06 -775372524.641 +UniRef50_UPI0003EC3EE0 PREDICTED 1.65961049793e-07 1.41962838917e-06 506120889.136 +UniRef50_A0A014I7A1 Pyridine nucleotide disulfide oxidoreductase family protein 1.35265622063e-06 3.5110911428e-06 871386665.055 +UniRef50_Q5HNI2 Aminotransferase, class V 0.000164863780619 5.87086214606e-05 -42856140422.4 +UniRef50_X2H2G3 RND efflux system, outer membrane lipoprotein CmeC 1.96035806721e-06 2.43418162646e-05 9035669325.67 +UniRef50_A0R5R7 Putative aminotransferase MSMEG_6286 MSMEI_6121 2.79278289246e-06 5.03858320069e-05 19213897959.9 +UniRef50_A6LWI0 GCN5 related N acetyltransferase 1.50592814697e-06 4.6334784557e-06 1262630438.99 +UniRef50_A6LPV1 TPR repeat containing protein 4.09207252008e-06 2.35000030651e-06 -703295930.248 +UniRef50_Q8CWR9 30S Ribosomal protein S1 4.909127607e-05 5.07423977484e-05 666578083.112 +UniRef50_UPI0003A07669 hypothetical protein 2.06629740203e-07 2.48933166937e-06 921554780.709 +UniRef50_D3E2P3 2 phospho L lactate guanylyltransferase 1.72021417878e-05 2.38968223095e-05 2702724679.58 +UniRef50_B9KPQ3 4.94509457258e-05 3.85755698885e-06 -18406610526.9 +UniRef50_T0TBW3 Late competence protein ComGD 2.28759285352e-07 2.85739526563e-07 23003622.6031 +UniRef50_A7AK72 3.44063939853e-07 1.989991499e-06 664481153.431 +UniRef50_D4FM51 Plasmid recombination enzyme 0.00240102320308 0.000660335100375 -7.02737147705e+11 +UniRef50_Q9RRA3 1.24788756646e-05 0.00013878437658 50991080662.2 +UniRef50_B7H011 3 methyl 2 oxobutanoate hydroxymethyltransferase 4.75820556097e-06 6.39284500169e-05 23887753787.4 +UniRef50_Q9Z3R5 Alpha glucosides binding periplasmic protein AglE 0.000123909599914 2.26435783225e-05 -40882335590.5 +UniRef50_UPI0002558932 hypothetical protein 9.60562720262e-07 4.55910656136e-07 -203734231.065 +UniRef50_UPI00036947AC hypothetical protein 1.54268043047e-07 1.38998641816e-07 -6164444.65358 +UniRef50_UPI000329BBE6 PREDICTED 3.46071572661e-07 4.37339130431e-08 -122057423.288 +UniRef50_A4WS76 Multi sensor signal transduction histidine kinase 4.35282231411e-05 1.44453862634e-05 -11741098134.1 +UniRef50_UPI000363EF1A hypothetical protein 2.0230960003e-08 2.05139470601e-08 114245.347593 +UniRef50_A6CJT6 1.92164955045e-07 1.62885354401e-06 580008813.519 +UniRef50_UPI00028868C0 ribonucleotide diphosphate reductase subunit beta 1.43104370948e-06 2.45520790807e-05 9334245706.36 +UniRef50_Q39RR0 Peptidyl tRNA hydrolase 2.48340452411e-07 2.54769220243e-07 2595372.46363 +UniRef50_W4U5J7 Hypothetical radical SAM family enzyme 2.54747923368e-07 2.29745583095e-06 824666249.135 +UniRef50_Q3C148 DNA repair and recombination protein 3.07369899816e-06 3.12039484729e-06 18851687.3163 +UniRef50_UPI0002885658 3 hydroxyacyl CoA dehydrogenase 7.49944571364e-08 6.16964778192e-07 218800069.334 +UniRef50_Q46078 Pyruvate kinase 4.10722507528e-08 1.46519114423e-07 42570192.8421 +UniRef50_Q2J2E9 sn glycerol 3 phosphate import ATP binding protein UgpC 7.42127560666e-07 6.93997617146e-07 -19430648.8198 +UniRef50_Q7WF76 Putative Holliday junction resolvase 2.98719514976e-07 2.05217218392e-07 -37748024.5332 +UniRef50_M4YXX5 Glycosyl hydrolase, family 3 6.12076421126e-06 1.00676149502e-06 -2064585652.42 +UniRef50_UPI00034F86F8 PREDICTED 3.6472076218e-06 1.36301410845e-06 -922156951.546 +UniRef50_Q58493 3.90209051187e-05 7.44952766978e-06 -12745752500.5 +UniRef50_A4WTJ0 1.581635e-06 7.80656323595e-07 -323364920.778 +UniRef50_P0A9T4 Protein tas 3.22141072683e-05 9.51298081662e-05 25399840515.0 +UniRef50_U6FW85 6.36001215368e-06 7.6156012448e-06 506896723.896 +UniRef50_B7UZW2 Ecotin 2.10753622359e-05 5.80562715609e-06 -6164579432.44 +UniRef50_UPI0004782022 peptide ABC transporter permease 1.57498051211e-07 1.49573783599e-07 -3199124.07666 +UniRef50_H8DHC5 ATP dependent OLD family endonuclease 3.65791904567e-05 2.42597264769e-05 -4973518785.47 +UniRef50_I0HUP6 Diguanylate cyclase 3.15710943184e-08 4.31775296905e-07 161567347.642 +UniRef50_D2BL86 Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase 3.82885290478e-05 2.26008180602e-05 -6333321435.56 +UniRef50_Q8XP36 UPF0324 membrane protein CPE0129 4.54286268022e-06 2.01433866532e-05 6298122967.86 +UniRef50_C6DHE2 UDP N acetyl D mannosaminuronic acid transferase 3.29855186385e-05 4.79217720496e-06 -11381997907.9 +UniRef50_J2FLN3 Alcohol dehydrogenase Adh4 5.77784676811e-06 2.66263900478e-05 8416812762.41 +UniRef50_UPI000225FA9C ABC transporter related protein, partial 4.04390984072e-07 1.55620113355e-07 -100431853.27 +UniRef50_UPI0003B37CEF hypothetical protein 5.36775258869e-07 1.95722761396e-07 -137687078.415 +UniRef50_Q8DUK9 7 carboxy 7 deazaguanine synthase 4.86054989841e-05 1.50801556633e-05 -13534592500.8 +UniRef50_Q0FEK0 4.80649975142e-07 1.02757762974e-07 -152559723.311 +UniRef50_Q1BY14 Methionine import ATP binding protein MetN 1 4.78332482471e-08 1.24888941271e-07 31108328.8534 +UniRef50_UPI0003016AD5 hypothetical protein 8.81693766339e-08 5.1040721061e-08 -14989293.8746 +UniRef50_K0B0R4 Para aminobenzoate synthase component 1 8.72463764734e-07 8.00660411786e-06 2880140006.31 +UniRef50_F0DCU8 7.83947972266e-07 3.19259254101e-07 -187600537.895 +UniRef50_A8LPC9 Endoribonuclease L PSP 4.70455168012e-06 2.21510019484e-06 -1005022113.61 +UniRef50_T9QA68 Adhesin invasin 1.82594781991e-06 2.30611542828e-06 193849555.818 +UniRef50_Q9ZI33 Ribulose bisphosphate carboxylase small chain 8.03583869336e-05 5.72765435544e-06 -30129342563.9 +UniRef50_Q5H5Y6 Phenol hydroxylase 1.13173389672e-07 1.73418600772e-06 654422685.969 +UniRef50_C6SPE5 3.19907264003e-05 7.77149224201e-06 -9777602033.13 +UniRef50_I6Z3X6 2.02968843911e-05 3.3002896435e-07 -8060864556.67 +UniRef50_F3ZHG8 Putative zinc binding oxidoreductase 1.0740760634e-06 1.99189901464e-06 370536388.37 +UniRef50_Q9CIR1 tRNA N6 adenosine threonylcarbamoyltransferase 1.51396572322e-07 4.18550408913e-08 -44223260.4644 +UniRef50_A1WG08 Binding protein dependent transport systems inner membrane component 2.29928496834e-05 1.09443493432e-05 -4864127439.06 +UniRef50_B7GYQ7 4 diphosphocytidyl 2 C methyl D erythritol kinase 9.93258212345e-06 7.57204158262e-05 26559355773.3 +UniRef50_C3KT41 D isomer specific 2 hydroxyacid dehydrogenase family protein 1.34656119687e-06 1.22836599102e-05 4415440963.85 +UniRef50_D5ASZ5 Flagellar basal body associated protein FliL 2 6.98407376846e-05 3.48799258104e-06 -26787417438.1 +UniRef50_UPI0004636BA5 DNA repair protein 3.82769862948e-08 3.74479619542e-08 -334687.299573 +UniRef50_N2UKS8 Electron transfer flavodomain protein 3.64892438374e-05 7.28142626337e-06 -11791554374.9 +UniRef50_G7VQ62 Dehydrogenase 4.46383790597e-06 1.61146937431e-05 4703593473.52 +UniRef50_UPI0003AF9315 PREDICTED 2.4760991295e-08 1.75642186049e-07 60912589.8427 +UniRef50_Q03027 Alkaline protease secretion protein AprF 2.43106414525e-06 3.66698694133e-06 498957199.256 +UniRef50_P50939 NADH quinone oxidoreductase subunit L 9.21382484706e-05 2.07187908037e-05 -28832911475.4 +UniRef50_F2KIT5 Glycine betaine ABC transporter, ATP binding component 0.000112604217102 5.33058238626e-05 -23939489023.9 +UniRef50_Q89P06 Blr3677 protein 0.000126741799096 4.09077981821e-05 -34652239470.6 +UniRef50_D6FNR4 5.54683132424e-07 2.41601509524e-08 -214178637.869 +UniRef50_A8AY63 Membrane protein, putative 6.65838492907e-05 1.02743141551e-05 -22732850329.9 +UniRef50_A0A023RYQ0 3.31560432068e-06 6.13921131723e-05 23446199302.3 +UniRef50_S6BF09 ATP dependent DNA helicase RecQ 9.48887703246e-06 9.07270983708e-07 -3464499670.03 +UniRef50_UPI00034547F6 hypothetical protein 6.62139703393e-08 1.1325869155e-07 18992531.2564 +UniRef50_C4K0T2 Queuine tRNA ribosyltransferase 5.56987846554e-08 1.60754334432e-07 42412214.6215 +UniRef50_P76045 Outer membrane protein G 2.86948503479e-05 7.96876361409e-06 -8367375552.12 +UniRef50_Q87WZ6 MutT nudix family protein 7.91368862338e-06 3.03927998483e-06 -1967858583.1 +UniRef50_B2S8A9 Nicotinate phosphoribosyltransferase 5.87895368077e-05 1.6896042043e-05 -16912917927.5 +UniRef50_F7X314 Phage major capsid protein, HK97 family 0.000101520557457 1.43571977989e-05 -35188917908.7 +UniRef50_F0VY37 PTS system, beta glucosides specific IIA component 5.67315879734e-05 2.70948350905e-05 -11964720822.7 +UniRef50_B8ZUM2 S adenosylmethionine synthase 3.84847036829e-07 4.74096272763e-06 1758617359.93 +UniRef50_B7LN16 Ribosomal protein S6 L glutamate ligase 2.27782588061e-05 1.83060678154e-05 -1805478382.9 +UniRef50_B0VE73 2.85459560716e-06 7.67900298141e-05 29848642079.1 +UniRef50_U1FWN3 Putative glucoamylase S1 S2 2.22724625107e-07 2.18009940572e-06 790216218.622 +UniRef50_G9AFA8 Sugar ABC transporter, ATP binding protein 6.96435768328e-06 1.16649126482e-06 -2340669820.95 +UniRef50_UPI00041E0388 hypothetical protein 2.01972134237e-07 9.63787431796e-08 -42629347.7463 +UniRef50_B8J249 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.34033495984e-07 4.5339372661e-07 128929644.094 +UniRef50_Q9RV43 8.31749761635e-06 0.000323108680729 1.27085063545e+11 +UniRef50_E4PJS6 5.19306913542e-08 1.23305304199e-07 28814807.0704 +UniRef50_M1MMU0 Amino acid ABC transporter substrate binding protein, PAAT family 1.67788350834e-05 1.43364479164e-05 -986021670.779 +UniRef50_P42407 Putative UTP glucose 1 phosphate uridylyltransferase 9.87933817892e-07 6.23100114394e-07 -147287843.115 +UniRef50_O86422 UDP glucose 6 dehydrogenase 2.77401116628e-08 2.70624343531e-06 1081344660.69 +UniRef50_H5YG53 N terminal double transmembrane domain containing protein 1.12854843854e-08 1.99982062614e-08 3517432.73846 +UniRef50_Q1CXY2 1.04962070547e-05 2.65041967582e-07 -4130446896.18 +UniRef50_X4YWC2 7.73206701881e-08 2.04282594886e-07 51256086.9986 +UniRef50_P07769 Benzoate 1,2 dioxygenase subunit alpha 4.90798519983e-06 9.12964140078e-05 34876068815.0 +UniRef50_O30826 Superoxide dismutase [Mn] 1.26235748581e-05 6.95113265559e-05 22966283451.6 +UniRef50_P58362 Trimethylamine N oxide reductase 2 8.91613326797e-06 2.97374549075e-06 -2399014866.96 +UniRef50_A4VYI2 Transcription repair coupling factor 5.21069885137e-06 5.07417019289e-07 -1898772591.37 +UniRef50_Q81QB6 Methylmalonate semialdehyde dehydrogenase [acylating] 2 1.35149002753e-07 4.28298221083e-05 17236363455.2 +UniRef50_F4GAH1 Transposase IS4 family protein 7.48197907821e-06 3.98182635472e-07 -2859815551.89 +UniRef50_K0S0E9 3.22227152755e-08 1.1041515421e-07 31567247.127 +UniRef50_J0YAZ5 9.43714972126e-06 1.12537289145e-06 -3355566303.17 +UniRef50_P46561 ATP synthase subunit beta, mitochondrial 1.88796007539e-07 1.67017945757e-07 -8792070.78826 +UniRef50_W4TMC7 9.6666693449e-08 2.60132555142e-06 1011161516.58 +UniRef50_D3QC48 Glycerophosphoryl diester phosphodiesterase 8.19854319724e-05 3.13345987695e-05 -20448362919.6 +UniRef50_UPI0003EC2A72 PREDICTED 1.943127028e-07 1.03059774686e-07 -36839926.879 +UniRef50_V7ZEH0 ABC transporter permease and ATP binding protein 4.98199210856e-05 1.6058858543e-05 -13629755243.3 +UniRef50_A0A017HVI0 Mobile element protein 2.48892011534e-07 7.10630492633e-08 -71791734.2756 +UniRef50_UPI00046E240D PREDICTED 6.26010721355e-08 6.8202529925e-07 250069161.676 +UniRef50_A6LU76 1.08994991968e-06 1.44734949684e-05 5403101370.73 +UniRef50_T5XQY7 Membrane protein 1.34223008634e-05 1.12430217714e-06 -4964852983.07 +UniRef50_P0ADS0 LOG family protein YgdH 3.35978591208e-05 4.06592361637e-06 -11922404760.7 +UniRef50_Q9HI36 Major exported protein 4.81006234789e-06 3.45399655201e-06 -547460402.595 +UniRef50_D2NU09 6.33454757134e-08 6.02303815742e-07 217584095.632 +UniRef50_D9RIX1 3.00502717536e-06 2.20408171759e-06 -323351510.008 +UniRef50_UPI000419A0DE hypothetical protein 4.7369935798e-08 9.2212428451e-08 18103464.5633 +UniRef50_A6L050 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.00475359888e-07 6.26266337721e-05 25242577433.3 +UniRef50_UPI0002E5C3C1 hypothetical protein 4.36628745523e-07 9.57003068738e-07 210081499.993 +UniRef50_Q03KT7 Dihydroorotate dehydrogenase B ), electron transfer subunit 5.6163042561e-05 2.7594789636e-05 -11533354277.7 +UniRef50_Q5HKN3 Acetyltransferase, GNAT family 0.000195241026204 5.68079280125e-05 -55887140504.9 +UniRef50_F2EDX4 Predicted protein 6.66180020111e-08 1.93469623516e-07 51211556.246 +UniRef50_UPI00036EAACB hypothetical protein 2.97908085549e-06 9.95449568075e-06 2816060562.92 +UniRef50_UPI000441BADB PREDICTED 1.6202714075e-07 2.76286544791e-07 46127923.5319 +UniRef50_P37631 2.3970278766e-05 3.06671512104e-05 2703609585.67 +UniRef50_UPI00036F2919 hypothetical protein 1.76312314451e-07 1.85725749019e-07 3800319.05093 +UniRef50_P80521 Pyruvate synthase subunit PorA 4.76276083121e-05 1.69305634929e-05 -12392773688.6 +UniRef50_G7U8S0 CoA transferase family III 9.61759036027e-06 6.1183082032e-05 20817621767.6 +UniRef50_Q6F964 1.30317372447e-06 5.57526767679e-05 21981932549.2 +UniRef50_F0P513 Replication initiation protein, truncated 1.55014365938e-06 6.5408497528e-07 -361749886.648 +UniRef50_Q2RN85 Uroporphyrinogen decarboxylase 7.34158177522e-08 2.37978976802e-07 66436166.7255 +UniRef50_F3Z4V2 8.71622374851e-07 4.35384635348e-07 -176114528.676 +UniRef50_U5NRR7 0.000178701955913 4.35807404342e-05 -54550092812.6 +UniRef50_B2UNA2 Dihydroorotate dehydrogenase 8.24979655317e-08 6.61451815751e-05 26670316053.5 +UniRef50_A5V4D5 2.1633631885e-07 2.20348044488e-07 1619582.86947 +UniRef50_UPI00040B6C97 hypothetical protein 2.81612700626e-08 5.17388827095e-08 9518571.5554 +UniRef50_Q4L7R6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000129153798986 1.88978133068e-05 -44511694411.7 +UniRef50_C8NS74 Formamidopyrimidine DNA glycosylase H2TH domain protein 1.96607285859e-06 8.12714584714e-05 32016557358.4 +UniRef50_UPI0003B44FF8 N acetylglucosamine 1 phosphate uridyltransferase, partial 1.44931641581e-07 8.72975360197e-08 -23267595.6651 +UniRef50_Q0FP15 ABC peptide transporter, inner membrane subunit 1.2957576308e-05 5.29431418181e-06 -3093752959.14 +UniRef50_W8QUX6 Transcriptional regulator PdhR 7.44714257679e-06 5.03687953156e-06 -973052768.613 +UniRef50_V5ESH7 4.93068535137e-08 3.14797489609e-06 1250970313.72 +UniRef50_F9Y7Q5 Carbonic anhydrase 0.000195187590679 1.2758348223e-05 -73648923838.0 +UniRef50_K0K6Y3 1.96883294732e-07 2.51794637945e-07 22168383.093 +UniRef50_P0AEX3 Alpha ketoglutarate permease 2.92871950988e-05 5.41792867589e-05 10049242863.5 +UniRef50_M1XFP7 1.18042719085e-06 6.06372868261e-06 1971448737.07 +UniRef50_R4GHV6 7.05271752157e-07 1.19155509215e-06 196318551.723 +UniRef50_UPI000374C07B hypothetical protein, partial 3.47340689879e-07 1.63003801997e-07 -74419063.706 +UniRef50_A5IQH4 Phage integrase family protein 7.96668772165e-05 4.64112046482e-05 -13425723108.8 +UniRef50_Q8DND7 7.45880730675e-05 9.50408473414e-06 -26275204760.5 +UniRef50_C3KNX2 2.00396216705e-06 1.24352586522e-06 -306997466.652 +UniRef50_UPI0003DEB94F PREDICTED 6.29944425082e-08 8.0295191492e-08 6984524.66882 +UniRef50_D2VIA9 Predicted protein 8.63375220039e-07 1.8081824869e-06 381430287.721 +UniRef50_O34599 Putative cysteine desulfurase IscS 1 9.74178797707e-08 8.81061934195e-06 3517626353.29 +UniRef50_UPI0002558DCB heat shock protein HSP33 2.15857936444e-07 2.0035748238e-07 -6257723.5176 +UniRef50_B1XYL1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 3.68459714855e-05 3.1474998002e-06 -13604486546.1 +UniRef50_B1MLZ3 Ribonuclease PH 1.265649655e-05 2.21303801448e-07 -5020239909.58 +UniRef50_A6LWJ3 Leucyl phenylalanyl tRNA protein transferase 1.47404339564e-05 7.70391404865e-06 -2840729434.57 +UniRef50_Q9RU74 Ketol acid reductoisomerase 0.000345635300434 0.000356633327832 4440038621.55 +UniRef50_UPI00045E0C55 PREDICTED 9.18811302645e-08 3.81662388165e-07 116988249.831 +UniRef50_UPI0003B5B300 preprotein translocase subunit TatA 8.32311736754e-07 4.69820677701e-07 -146342088.805 +UniRef50_Q5HLM4 Acetyltransferase, GNAT family 0.000122964494695 1.33223057407e-05 -44263897141.7 +UniRef50_Q7VRS2 GMP synthase [glutamine hydrolyzing] 5.85095789624e-08 1.87342324122e-07 52011360.1767 +UniRef50_A7ZIS2 2.4057403108e-06 6.34175550613e-07 -715202433.233 +UniRef50_UPI00035E4867 hypothetical protein 6.04793029774e-07 1.11856354779e-07 -199004584.709 +UniRef50_P72097 CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase 1.41380520171e-06 4.4268424835e-05 17300935831.3 +UniRef50_A6LXH9 NHL repeat containing protein 9.29768445451e-07 8.7280270583e-06 3148252697.4 +UniRef50_UPI0004721624 malate dehydrogenase, partial 6.81315371794e-07 3.56775277755e-07 -131020818.518 +UniRef50_Q7MUV7 Lysine tRNA ligase 6.43565679842e-06 5.44020543667e-05 19364623312.2 +UniRef50_Q8VNN2 Beta galactosidase 2.82343659554e-05 1.09666103591e-05 -6971204833.42 +UniRef50_Q3IV38 0.000153032259772 2.53890594903e-05 -51531126312.1 +UniRef50_P63858 Capsular polysaccharide biosynthesis protein CapA 0.000101339182863 1.11417183229e-05 -36413823282.2 +UniRef50_UPI000347E827 3 beta hydroxysteroid dehydrogenase 7.21531759285e-08 4.32703889925e-07 145558747.695 +UniRef50_C2DDU8 Putative L xylulose 5 phosphate 3 epimerase 8.76998914849e-07 2.11702670564e-07 -268588257.921 +UniRef50_UPI000365187A chromosome partitioning protein ParA, partial 5.69845787601e-06 1.54800056222e-06 -1675590549.42 +UniRef50_UPI00046F371B chorismate synthase 1.51307463395e-07 1.6949091412e-06 623170939.455 +UniRef50_B7GWT8 Ribosomal RNA small subunit methyltransferase C 3.55815146342e-06 6.38547615168e-05 24342481401.2 +UniRef50_UPI0003EE05C6 PREDICTED 1.29706877245e-07 1.87376025664e-07 23281742.8968 +UniRef50_X3EN79 6.07383470784e-06 7.11606518538e-06 420761233.389 +UniRef50_UPI00047A30AA hypothetical protein 7.33331025094e-06 1.62708928474e-06 -2303671427.26 +UniRef50_Q1C1E1 Glucose 1 phosphate adenylyltransferase 0.000146105118213 2.80394115917e-05 -47664574592.0 +UniRef50_UPI00036C8CDE hypothetical protein 2.09310138369e-05 4.90213643435e-06 -6471054503.83 +UniRef50_UPI00037C3A9D hypothetical protein, partial 7.1749049923e-09 5.25935869592e-09 -773329.546245 +UniRef50_UPI0003C11566 PREDICTED 5.07628667435e-06 6.16714956331e-06 440394734.666 +UniRef50_UPI00040E5729 ABC transporter 7.13162582353e-08 1.07823965266e-06 406507330.667 +UniRef50_X1PNE8 Marine sediment metagenome DNA, contig 3.43854112944e-07 6.74345318944e-07 133423355.445 +UniRef50_G7MAQ1 Membrane bound O acyl transferase MBOAT family protein 1.03704941998e-06 1.02623323107e-05 3724359909.94 +UniRef50_Q7W8T4 Peptide chain release factor 2 3.91579861939e-05 0.000140551801167 40933927346.6 +UniRef50_A7WYY0 Molecular chaperone Hsp31 and glyoxalase 3 0.000119154523855 0.000108137618934 -4447659709.23 +UniRef50_UPI000421D154 hypothetical protein 2.04316553362e-08 2.60813903017e-08 2280867.33562 +UniRef50_UPI000412790F hypothetical protein 4.11239513658e-07 7.31339895527e-08 -136497349.103 +UniRef50_U9X3Y3 Rhamnan synthesis protein F domain protein 3.74385527953e-07 6.92212407108e-07 128310611.289 +UniRef50_U5MVV7 HTH type transcriptional regulator YybE 3.01576958057e-06 2.11714282057e-05 7329662181.94 +UniRef50_A7IIB6 Dihydrodipicolinate synthetase 3.40613114707e-06 1.93650298495e-06 -593306923.413 +UniRef50_C5CFW2 UDP N acetylglucosamine 1 carboxyvinyltransferase 7.66293856835e-08 2.66349645368e-07 76592396.9638 +UniRef50_UPI00042449ED hypothetical protein 3.57504886523e-08 4.40591584425e-08 3354311.95315 +UniRef50_C7C7I3 7.06909805164e-05 1.33281873626e-05 -23158063516.8 +UniRef50_E8U7F9 Response regulator receiver protein 2.27401198102e-06 0.00117670917672 4.74133887946e+11 +UniRef50_V0X9G6 dGTPase 2.37612601739e-05 5.03066310752e-06 -7561771885.98 +UniRef50_B4F298 Fructose 1,6 bisphosphatase class 1 3.1179689885e-05 2.59089780759e-05 -2127851036.24 +UniRef50_Q831F7 Release factor glutamine methyltransferase 8.94480009502e-08 5.55729973354e-06 2207438842.53 +UniRef50_A3PFV7 Oligopeptide dipeptide ABC transporter, ATPase subunit 1.21434716993e-05 9.90441716778e-07 -4502615067.0 +UniRef50_UPI0004746084 hypothetical protein 2.46092734189e-06 5.55514176567e-06 1249172333.16 +UniRef50_UPI0003608471 hypothetical protein 1.41129241711e-07 2.23272824339e-07 33162372.322 +UniRef50_Q5HH10 Phosphoribosylamine glycine ligase 0.000179634239187 5.63114731999e-05 -49786913969.5 +UniRef50_A6WEY6 Carbamoyl phosphate synthase L chain ATP binding 7.44548301457e-07 4.27397955166e-05 16953996640.4 +UniRef50_UPI0003F48E6E hypothetical protein TREMEDRAFT_44294 2.21180825112e-07 4.18100491019e-07 79498885.6027 +UniRef50_UPI00047B5729 hypothetical protein 2.22683159818e-07 2.59780853997e-07 14976794.38 +UniRef50_P67129 UPF0053 inner membrane protein YgdQ 3.41827803617e-05 7.46239122265e-06 -10787348991.5 +UniRef50_L2T6M0 Phenol hydroxylase 1.12426538546e-06 8.19981063315e-08 -420776090.643 +UniRef50_Q49WG8 1,4 Dihydroxy 2 naphthoyl CoA synthase 6.90296991846e-07 2.99098170517e-07 -157931764.72 +UniRef50_P44316 Diaminopimelate decarboxylase 1.11393716802e-07 3.26164028778e-05 13122671079.6 +UniRef50_W4VJA0 PTS system 4.09727825416e-07 3.23332853973e-07 -34878710.1571 +UniRef50_UPI00046A542B hypothetical protein 6.42202537412e-08 4.06509540806e-07 138186385.55 +UniRef50_UPI00037E6930 hypothetical protein 6.05608913533e-08 6.74768392549e-08 2792053.0361 +UniRef50_C4L3Y8 Polyphosphate kinase 2.29918954698e-08 1.51549774789e-06 602542927.728 +UniRef50_UPI0002002F71 hypothetical protein 1.68159727512e-06 2.91080135921e-07 -561368832.659 +UniRef50_B9DKN5 Biotin synthase 0.000245126456752 6.36023733733e-05 -73283500011.1 +UniRef50_F4A413 Transcriptional regulator 5.17035759702e-06 2.08213893202e-06 -1246751771.77 +UniRef50_E3I461 Arsenical resistance protein 1.42626947925e-06 0.000120677017563 48142990372.7 +UniRef50_UPI0003A6D827 sulfite oxidase 1.01200806686e-07 7.82739070587e-07 275145360.552 +UniRef50_C9SSZ1 Oxidoreductase FAD NAD binding 5.01311429643e-07 1.32658248915e-07 -148829812.943 +UniRef50_Q1GW15 1.02624145099e-06 5.76288639402e-07 -181651471.58 +UniRef50_I1F5A5 1.39959896984e-07 7.55433985786e-08 -26005730.8856 +UniRef50_B8G5R5 Peptide deformylase 9.47820163591e-08 1.25462462496e-07 12386072.5969 +UniRef50_C6T9B8 1.09541432732e-06 5.2251204662e-07 -231287681.02 +UniRef50_A6QEA3 0.000132291254386 2.60674501126e-05 -42883853297.7 +UniRef50_Q05098 Ferric enterobactin receptor 1.24647008613e-05 1.18438003259e-05 -250665165.447 +UniRef50_UPI0004792802 transcription antiterminator NusG 2.63086439452e-07 5.23383824546e-07 105085248.571 +UniRef50_UPI0003F4A35E hypothetical protein TREMEDRAFT_74449 1.89351258361e-08 2.74200557878e-08 3425470.3433 +UniRef50_Q7VIA9 Ribonuclease 3 6.21444178598e-08 1.32849598711e-05 5338212860.65 +UniRef50_Q927P1 tRNA pseudouridine synthase A 7.43579762364e-08 2.74548306196e-05 11053832802.3 +UniRef50_UPI00035A1EA0 PREDICTED 1.58781606928e-07 1.52564703525e-07 -2509840.19377 +UniRef50_R2NN08 PemK family transcriptional regulator 1.73388432926e-05 2.52917940354e-05 3210703808.55 +UniRef50_UPI00047C7F40 hypothetical protein 5.62562701337e-05 2.3647063448e-05 -13164736899.0 +UniRef50_Q4JV62 4 hydroxy tetrahydrodipicolinate reductase 3.55002497348e-06 6.72055018433e-05 25698497152.9 +UniRef50_F0E145 Hydrophobe amphiphile efflux 1 family protein (Fragment) 5.89341537003e-06 2.94914266632e-06 -1188639020.78 +UniRef50_D9SR21 2.37412571605e-06 3.72247947718e-06 544346959.529 +UniRef50_H5UVK0 4.26846650389e-07 2.81674891621e-07 -58607620.4725 +UniRef50_I3GYQ4 3.07148892466e-07 4.9425389992e-07 75536587.5458 +UniRef50_O31760 Ribonuclease J2 6.49331477975e-07 4.89756907145e-07 -64422212.4443 +UniRef50_I1EYN0 3.28152899579e-06 5.06670061103e-07 -1120244603.28 +UniRef50_P00964 Glutamine synthetase 0.000131530285518 3.82147249017e-05 -37672636931.5 +UniRef50_UPI0003490F7B hypothetical protein 1.14728637909e-07 6.1924361837e-08 -21317734.2316 +UniRef50_P54745 Heat responsive suppressor HrsA 3.51697439169e-05 8.18838298675e-06 -10892706506.0 +UniRef50_Q9RVP6 Phosphoenolpyruvate carboxykinase [ATP] 1.03971711973e-07 0.00044581085496 1.79937338206e+11 +UniRef50_A3PIK5 Putrescine binding periplasmic protein 0.000134480689331 2.80411781676e-05 -42970936816.2 +UniRef50_Q8XBV3 Enterobactin synthase component E 3.68344859595e-05 0.000102789562906 26626873923.1 +UniRef50_UPI00035FD10F hypothetical protein 2.61102186081e-06 1.95226594638e-06 -265947846.5 +UniRef50_UPI0003743277 hypothetical protein 2.39073400293e-07 8.91157397248e-08 -60539747.7587 +UniRef50_U3QMM7 ABC transporter ATP binding protein 1.40409629971e-06 3.04188330053e-06 661194710.138 +UniRef50_A9IQ26 9.41456641079e-05 1.62520872735e-05 -31446592829.7 +UniRef50_Q9RZE6 Succinate semialdehyde dehydrogenase 2.56230296385e-06 0.000643787763394 2.58870587097e+11 +UniRef50_UPI00036FBC00 hypothetical protein 6.65587960894e-08 6.48869933759e-08 -674927.270766 +UniRef50_H4HIB4 5.14611612858e-05 7.15737239671e-06 -17885983243.2 +UniRef50_C8VZ79 Beta lactamase domain protein 3.73748503814e-06 2.2048209743e-05 7392264261.23 +UniRef50_E6SKM4 Electron transfer flavoprotein alpha subunit 5.89571095904e-08 8.17876380729e-08 9216964.51047 +UniRef50_P93306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2 2.91622736447e-07 2.34356359381e-07 -23119139.159 +UniRef50_Q9KTJ5 Methionine import ATP binding protein MetN 9.12062034357e-08 1.00549448677e-07 3771982.75843 +UniRef50_UPI0003769C5A hypothetical protein 8.04479105088e-08 1.60751300407e-07 32419463.9353 +UniRef50_UPI00039A55CB hypothetical protein 3.12469733653e-07 2.22286446993e-07 -36408099.498 +UniRef50_W1FXV5 Iron uptake factor PiuC 1.63962913269e-06 8.78595552198e-07 -307238595.377 +UniRef50_UPI00042A0F4E hypothetical protein 9.5583776e-07 2.15164812296e-07 -299018758.067 +UniRef50_F0MZJ7 Lipopolysaccharide N acetylglucosaminyltransferase 2.38857099643e-06 3.08676362059e-05 11497348102.5 +UniRef50_UPI0002BC466A hypothetical protein, partial 1.66856985306e-07 2.1636836013e-06 806143408.693 +UniRef50_A7Z9P0 Cyclic pyranopterin monophosphate synthase 0.000144864843454 1.62431299659e-05 -51926164101.0 +UniRef50_UPI0003626443 hypothetical protein, partial 6.41493409221e-08 7.25583475405e-08 3394819.16196 +UniRef50_F4LW30 Galactitol specific enzyme IIC component of PTS 0.000159246353103 4.68285717887e-05 -45384437837.8 +UniRef50_UPI0004724E83 hypothetical protein 1.86589141741e-07 3.68351165259e-05 14795460233.0 +UniRef50_B5ZCH4 Sporulation domain protein 7.14277561963e-08 2.78937947192e-07 83774410.5415 +UniRef50_Q4L9C4 Putative pyruvate, phosphate dikinase regulatory protein 1 0.000140220294402 4.18523288181e-05 -39712354816.9 +UniRef50_Q8DSC8 Ribonuclease HIII 7.87490637491e-05 4.24435233857e-05 -14656992163.8 +UniRef50_UPI00035C68B7 hypothetical protein 7.74895755011e-08 1.9437431378e-07 47187803.1803 +UniRef50_R4VHN6 AzlC family protein 4.6241825768e-07 1.67570746735e-07 -119033558.354 +UniRef50_Q88F11 1.84566013681e-06 3.50302005361e-06 669096536.505 +UniRef50_F2N3V4 Peptide ABC transporter, periplasmic peptide binding protein 1.38819999912e-06 9.89335695768e-07 -161026413.879 +UniRef50_M1E792 Protein tyrosine phosphatase 1.15958817487e-07 5.33451056974e-07 168546740.287 +UniRef50_G0DVB5 Beta glucanase 2.15500847e-06 6.72234447109e-05 26268926190.0 +UniRef50_N0APD1 2.19748717749e-08 3.36918387625e-08 4730283.35625 +UniRef50_W6SQC5 7.40249189385e-06 7.06090250575e-06 -137903827.749 +UniRef50_Q9RXH6 1.43030297574e-06 3.58038805558e-05 13877035080.3 +UniRef50_Q255E7 3.34481087742e-06 1.99919808566e-06 -543240396.559 +UniRef50_UPI00045E6D39 hypothetical protein 3.64408161665e-06 1.01679229027e-06 -1060668941.53 +UniRef50_M5EG32 3.81903940063e-06 2.14523445595e-06 -675735596.064 +UniRef50_P0ADW7 3.85221223143e-05 7.67572239215e-06 -12453070176.4 +UniRef50_E6SFW3 Acyl CoA dehydrogenase domain containing protein 9.84746057885e-07 0.00019374117907 77818137394.4 +UniRef50_UPI000472D6AB arginine ABC transporter ATP binding protein 3.90039433386e-07 2.6381682491e-07 -50957615.9673 +UniRef50_Q4FS54 Dihydroxy acid dehydratase 1.64685839464e-06 3.97676496707e-06 940611874.459 +UniRef50_Q5HNG2 tRNA ) methyltransferase 0.000105528050772 3.70953722634e-05 -27627112077.3 +UniRef50_I3X570 Phosphotriesterase protein Php 3.81993050899e-05 4.32558727564e-06 -13675235558.9 +UniRef50_O31404 Acetoin 0.000184022723598 6.33182727105e-05 -48729868033.3 +UniRef50_X5Z2U4 1.12001162952e-07 3.0968893674e-07 79808980.18 +UniRef50_UPI0004752454 50S ribosomal protein L18, partial 7.58225725509e-07 4.78325350467e-06 1624953107.09 +UniRef50_T1XNC8 6.74358826406e-05 3.19261302914e-06 -25935796295.7 +UniRef50_UPI00047D8D50 PTS sugar transporter 5.73279120733e-08 7.17278600284e-08 5813435.69671 +UniRef50_A3M7U1 Phosphopantetheinyl transferase component of siderophore synthetase 1.66783205682e-06 0.000101576989298 40334552801.5 +UniRef50_UPI0003694178 hypothetical protein 2.34031223265e-08 8.03963942825e-08 23008883.2747 +UniRef50_A6TDX1 Membrane bound lytic murein transglycosylase C 1.94047499521e-05 6.3806929983e-06 -5257971615.4 +UniRef50_Q1YML4 1.09613713572e-06 3.73717697836e-07 -291649592.157 +UniRef50_Q3IXU4 Transcriptional regulator, IclR family MhpR 7.26619844944e-05 8.55747270728e-06 -25879778059.3 +UniRef50_F9Z2J9 2.16945970609e-06 4.17675248357e-05 15986224815.7 +UniRef50_S9V0F9 Plectin 4.99734712492e-07 2.27038231402e-07 -110090915.778 +UniRef50_UPI000475D84B spermidine putrescine ABC transporter substrate binding protein 8.9332761801e-08 2.79369190498e-07 76720038.2742 +UniRef50_F3U2V0 Gas vesicle operon protein 0.000102161334589 3.00276689147e-05 -29121246012.3 +UniRef50_K7U3H6 1.88215337338e-08 9.9597207344e-08 32610130.6654 +UniRef50_W7WRB6 3.12385792788e-06 1.8048425152e-06 -532502708.238 +UniRef50_UPI000345BA64 hypothetical protein 4.05254368462e-06 1.16213482927e-06 -1166893524.21 +UniRef50_Q5Z7E3 2.35390357303e-07 4.94986379554e-07 104802099.784 +UniRef50_E8SMG2 PetC 1.73689872173e-06 1.86316201436e-05 6820606359.57 +UniRef50_E4EZN9 5.92886023805e-07 3.66718545812e-06 1241132407.53 +UniRef50_UPI00042B0CC2 Non intrinsic ABC protein 7 isoform 6 3.30675926418e-07 1.79033815897e-07 -61219780.8753 +UniRef50_K0EQ96 NADP dependent isocitrate dehydrogenase 3.69448863451e-06 1.47092484913e-06 -897679986.354 +UniRef50_A5UM19 Predicted permease 2.04574534145e-05 4.12218931968e-06 -6594746571.3 +UniRef50_U6K4H4 2.6510600078e-07 1.38633217339e-07 -51058614.6707 +UniRef50_W8U7U4 ABC type transport system involved in resistance to organic solvents, periplasmic component 7.09169836922e-06 8.20661926468e-06 450107247.115 +UniRef50_C3Z9G8 1.670201896e-07 7.73288820198e-08 -36209481.5062 +UniRef50_C4IYT1 2.00616378548e-07 1.76836350414e-06 632918753.021 +UniRef50_UPI000470303C hypothetical protein 3.28967757738e-08 4.6579597572e-08 5523923.06704 +UniRef50_Q8DU86 2.73643935438e-05 2.0366669324e-05 -2825067139.27 +UniRef50_X1QUX5 Marine sediment metagenome DNA, contig 9.22344759715e-07 4.15593295073e-07 -204581784.816 +UniRef50_UPI00047A6123 transcriptional regulator 4.62745804386e-07 4.03757359807e-07 -23814358.9462 +UniRef50_D5CZH2 Pyrimidine monooxygenase RutA 4.07044737873e-05 5.81731435362e-06 -14084374377.0 +UniRef50_Q4L7G4 Peroxide responsive repressor PerR 0.000126420309016 2.45292168467e-05 -41134684252.9 +UniRef50_Q31EP3 ATP binding cassette superfamily transporter, ATP binding component 1.41204235229e-06 3.83455747249e-05 14910520244.2 +UniRef50_UPI0002DB68C6 hypothetical protein 8.81981913474e-08 1.04487444493e-07 6576171.38649 +UniRef50_B2TL50 CoA transferase, A subunit 3.39059271419e-06 7.43454642449e-06 1632593737.74 +UniRef50_I7EE24 4.9760760615e-06 5.46130297325e-07 -1788423466.55 +UniRef50_UPI00046E59C8 30S ribosomal protein S5 7.55763561671e-08 1.32760435288e-07 23085914.4687 +UniRef50_W9BYI7 Permease 1.88196479694e-06 5.12424234278e-07 -552900331.298 +UniRef50_UPI0003F65C64 PTS beta glucoside transporter subunit IIA 4.30760916382e-08 9.33676817093e-08 20303332.0589 +UniRef50_S9Q8L7 XdhC protein 3.05451570015e-07 3.16080178392e-07 4290899.62949 +UniRef50_A0A014NSW5 3.1138976817e-07 8.40181812125e-08 -91792699.8177 +UniRef50_W4HZ56 1.43467971594e-07 3.31469282512e-07 75898436.2531 +UniRef50_B9KX06 Transcriptional regulator, GntR family 2.9892983123e-05 5.0009538222e-06 -10049217688.3 +UniRef50_A0A038FVF0 3.44055501749e-06 6.26747112453e-07 -1135968780.57 +UniRef50_P55792 4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase 6.05113540747e-06 2.50946707022e-05 7688108888.93 +UniRef50_UPI00040A1C88 glycerol 3 phosphate ABC transporter permease 6.05755715192e-08 9.2311083373e-07 348216069.852 +UniRef50_Q62C32 2.27024636271e-06 4.35679305636e-06 842364505.034 +UniRef50_U5MNP4 Penicillin binding protein 1A 5.41216002363e-06 1.7899970886e-05 5041482487.82 +UniRef50_UPI0003BD7FE7 1.2380791638e-07 1.86627778243e-07 25361149.1205 +UniRef50_P0A0H1 rRNA adenine N 6 methyltransferase 0.000710695482894 0.00015250564999 -2.25348085303e+11 +UniRef50_Q46821 Uric acid transporter UacT 2.08716939372e-05 9.01464150756e-06 -4786837568.22 +UniRef50_Q8DV32 6.24729803654e-05 2.73695481469e-05 -14171686354.2 +UniRef50_UPI00047156EA hypothetical protein 1.18738483808e-07 6.66745940074e-07 221237334.902 +UniRef50_Q8G7H1 Ribonuclease 3 1.8068345351e-07 5.10460533467e-07 133135053.998 +UniRef50_P75989 HTH type transcriptional repressor YcgE 6.53831875561e-05 8.64063278628e-06 -22907665670.0 +UniRef50_B9KRF9 Electron transport protein SCO1 SenC 0.000107427363269 1.35282965922e-05 -37908205488.5 +UniRef50_D5C9N5 IS911 transposase orfB 2.74675665259e-07 5.3360102565e-07 104531345.361 +UniRef50_C1AE27 Aminotransferase 1.52811983905e-05 5.57345394294e-06 -3919135560.9 +UniRef50_P77212 Probable pyridine nucleotide disulfide oxidoreductase RclA 1.54307635008e-05 5.31832458592e-06 -4082515683.53 +UniRef50_U5WJX6 9.75170777661e-09 6.99869588374e-08 24317710.0229 +UniRef50_U1G994 Putative adhesion protein like protein 1.35953912994e-07 1.53446156912e-07 7061833.52367 +UniRef50_UPI00036FB1EC hypothetical protein 3.8192973519e-07 1.20642543562e-07 -105484845.615 +UniRef50_G6YS95 1.38602962078e-06 3.24302539132e-07 -428632251.719 +UniRef50_A6LWX5 Acriflavin resistance protein 2.31691695838e-06 8.27583578552e-06 2405688654.67 +UniRef50_UPI0002D36C87 hypothetical protein 2.52873935684e-06 7.19329472493e-06 1883138242.63 +UniRef50_Q21LG2 tRNA ) methyltransferase 3.78426341098e-05 5.06320593819e-05 5163247926.24 +UniRef50_U3T3T5 Lipid A biosynthesis lauroyl acyltransferase 9.38249783738e-07 7.84515633825e-05 31293075895.2 +UniRef50_F4QAU5 WH2 domain containing protein 3.30225670531e-08 2.09645037068e-07 71304658.5465 +UniRef50_A5UKD0 Putative HTH type transcriptional regulatory protein Msm_0453 3.2452428957e-05 7.9141834743e-06 -9906390819.5 +UniRef50_UPI000376FFD8 hypothetical protein 3.8237498165e-08 6.63765184477e-08 11360067.7927 +UniRef50_Q9RU03 1.51398123869e-06 0.000202540496638 81156871139.3 +UniRef50_Q9RU05 1.2166247329e-05 0.000428166763999 1.6794451348e+11 +UniRef50_D5ARQ5 Methyltransferase small domain protein 9.83190070638e-06 1.90526906577e-06 -3200078464.02 +UniRef50_B8FJP4 Phosphoglycerate kinase 2.9113669953e-07 4.64350843305e-07 69928675.4185 +UniRef50_UPI000479F495 oxidoreductase 1.67870164307e-07 1.68778862333e-07 366852.544075 +UniRef50_A0A011F836 TonB dependent Receptor Plug domain protein 2.37962800056e-06 1.74289009336e-05 6075576158.4 +UniRef50_I6Q293 3.10495959855e-06 1.90246331987e-08 -1245829814.19 +UniRef50_O07575 8.57377147127e-05 4.14676789055e-05 -17872356709.8 +UniRef50_UPI0002F93554 hypothetical protein 3.25391568499e-07 2.0005628824e-06 676287216.085 +UniRef50_D4DM85 DNA gyrase, B subunit, C terminal domain protein 2.37370727057e-06 3.59899417335e-05 13571286370.3 +UniRef50_UPI00046EE6DC dTDP 4 dehydrorhamnose 3,5 epimerase 8.09720927999e-08 1.33780657522e-07 21319465.6123 +UniRef50_Q8FRR3 Tryptophan tRNA ligase 6.96678118772e-08 1.04168742263e-05 4177294203.99 +UniRef50_O69282 Malate 4.50397808867e-08 1.30083901139e-07 34333354.9546 +UniRef50_F2AE05 7.42844876609e-06 1.21815905214e-05 1918901654.23 +UniRef50_UPI0004717CFE hypothetical protein 1.65266953169e-08 1.1828102581e-08 -1896879.5457 +UniRef50_Q87ST5 4 hydroxythreonine 4 phosphate dehydrogenase 2.79010069193e-07 5.24443039217e-07 99084301.7999 +UniRef50_A5UMP7 Fuculose 1 phosphate aldolase, class II aldolase adducin family 2.26042650783e-05 5.86721930844e-06 -6756950763.96 +UniRef50_A6LXI3 Integral membrane sensor signal transduction histidine kinase 2.82756489039e-06 1.4810680286e-05 4837730734.57 +UniRef50_UPI000368FC1C hypothetical protein 8.43077872633e-08 3.10569945556e-07 91344809.8518 +UniRef50_Q1IVY6 FAD dependent oxidoreductase 9.35142829476e-07 0.000150304900812 60302404270.8 +UniRef50_UPI00041819DF glycine cleavage system protein T 7.66125304056e-08 5.97556055673e-08 -6805347.41495 +UniRef50_B2TQB0 Amylovoran biosynthesis AmsK 4.19479947242e-06 2.86781137482e-05 9884214417.19 +UniRef50_A1IRV5 3.76248493809e-06 8.37739838349e-05 32301623956.1 +UniRef50_Q2FD95 AdeI 2.41857910556e-06 3.9325935646e-05 14899952739.6 +UniRef50_R9SJQ0 Cell wall biosynthesis protein Mur ligase family 3.03316314678e-05 5.36311970277e-06 -10080094597.6 +UniRef50_UPI00047BD281 hypothetical protein 3.26038076861e-06 4.98465635184e-07 -1115019031.88 +UniRef50_UPI00035D739B hypothetical protein 4.77989472503e-07 2.5664848983e-08 -182609001.162 +UniRef50_UPI00047BB945 SAM dependent methyltransferase 3.27997534341e-07 1.76416281773e-07 -61195211.7728 +UniRef50_A0A023Y271 Carbon nitrogen hydrolase 1.61607676697e-05 1.29897041445e-05 -1280197258.45 +UniRef50_Z2DBY9 Glycolate oxidase 1.46951476283e-07 2.55338874649e-07 43757322.7833 +UniRef50_Q67PR5 Peptide deformylase 5.69533365392e-07 5.46136799135e-07 -9445480.9061 +UniRef50_R7NQ15 Gluconate 5 dehydrogenase 1.4900762718e-06 9.60413462624e-05 38171507969.8 +UniRef50_UPI0003B557FA hydrolase 1.02624549964e-06 4.90561887621e-07 -216262047.749 +UniRef50_B7ELK9 cDNA clone 3.48527519644e-07 7.51291275249e-07 162600670.605 +UniRef50_Q1YMK1 N acetyl gamma glutamyl phosphate reductase 2.49780161966e-07 2.17201642265e-07 -13152348.1867 +UniRef50_H5DQ87 6.21593375632e-07 7.09802853806e-07 35611248.7909 +UniRef50_UPI00035E02BE hypothetical protein 5.46594627386e-07 9.52746351128e-08 -182203419.2 +UniRef50_D6CMF6 Sulfite reductase 9.21020160606e-06 5.07659308166e-06 -1668788486.38 +UniRef50_D5UQG6 6.34738694943e-08 2.47999378792e-07 74495212.4862 +UniRef50_UPI0004690DDD pesticidal protein Cry5Ba 1.73696051446e-05 2.59404547005e-06 -5965074757.1 +UniRef50_A4WT11 Methyl accepting chemotaxis sensory transducer 2.94387287978e-05 9.5833591277e-06 -8015856388.6 +UniRef50_I0JFL4 BioY family protein 0.000112587901427 5.14966187553e-05 -24663300488.9 +UniRef50_W1FZE6 TRAP type C4 dicarboxylate transport system, large permease component 8.45353666165e-07 6.67317486163e-07 -71875390.6164 +UniRef50_D4H9D0 Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II 9.27484002093e-07 3.60248207781e-05 14169225549.2 +UniRef50_Q8EXQ7 Adenosylcobalamin biosynthesis bifunctional protein CobDQ 6.48511705355e-08 5.93945308035e-07 213601796.024 +UniRef50_D8JE40 Soluble lytic transglycosylase fused to an ABC type amino acid binding protein 5.63161913801e-06 1.92763556202e-05 5508547557.61 +UniRef50_A1HQK7 1.17167859395e-07 2.83740968929e-07 67247608.4008 +UniRef50_U7PXV4 5.03073008551e-08 6.64049255522e-09 -17628826.3627 +UniRef50_O27762 Phosphate transporter permease PstC 4.32885079117e-05 3.52266447552e-06 -16053958977.0 +UniRef50_Q1IXT2 Cysteine synthase 5.66132060278e-06 0.000389249431035 1.54859227337e+11 +UniRef50_F0KPZ6 Oligopeptidase A 2.55896112659e-06 6.01024709726e-05 23231021063.1 +UniRef50_B2UVS5 Purine nucleoside phosphorylase 1.02950724232e-05 2.96465705605e-05 7812437267.61 +UniRef50_F8X9S0 Ribonucleoside diphosphage reductase 1, beta subunit, B2 4.10245834973e-06 7.61465601684e-07 -1348799770.98 +UniRef50_Q9I0J7 NADH quinone oxidoreductase subunit F 3.42625131585e-05 6.78094031501e-05 13543291156.2 +UniRef50_P0A3B9 4 phosphopantetheinyl transferase EntD 2.14344532893e-05 2.14800826273e-05 18421123.6855 +UniRef50_A6LP26 Adenine phosphoribosyltransferase 2.68037226555e-07 1.70730222569e-07 -39284031.6004 +UniRef50_A9M1L0 Valine pyruvate aminotransferase 8.35145992986e-07 4.14379382515e-05 16391845487.0 +UniRef50_B7HEG4 HPr kinase phosphorylase 0.000259769095693 6.7024937685e-05 -77813181824.6 +UniRef50_UPI00035EE4F1 hypothetical protein, partial 1.91921330609e-07 3.73627273159e-07 73356918.7901 +UniRef50_UPI000371E3B5 hypothetical protein 5.660720733e-08 1.23711448007e-07 27090805.4229 +UniRef50_A4YBV8 DNA directed RNA polymerase subunit alpha 3.55026420161e-06 3.38735792118e-05 12241894378.5 +UniRef50_P07003 Pyruvate dehydrogenase [ubiquinone] 2.74332577794e-05 1.69456374456e-05 -4233981026.33 +UniRef50_Q5ZT84 4 hydroxyphenylpyruvate dioxygenase 1.58385729588e-06 8.24153990315e-05 32632685313.2 +UniRef50_S4N129 4.24903846836e-07 5.36436119069e-06 1994119543.67 +UniRef50_A6LV69 Adenylosuccinate synthetase 1.93785441027e-06 1.22167915969e-05 4149733078.97 +UniRef50_P37872 6.62693611282e-05 2.92392777421e-06 -25573328780.9 +UniRef50_K4KM08 Phosphatidylserine phosphatidylglycerophosphate cardiolipin synthase like protein 7.11250787108e-06 5.24323775164e-06 -754647285.742 +UniRef50_Q5FIF8 N acetylmuramic acid 6 phosphate etherase 7.28262728184e-08 1.13769710944e-07 16529368.4038 +UniRef50_G7ZP06 8.98205778025e-05 4.54895843689e-05 -17896966051.6 +UniRef50_UPI0004734490 hypothetical protein, partial 7.26582664506e-08 1.00571454438e-07 11268896.5238 +UniRef50_UPI0003804668 hypothetical protein, partial 3.27128438195e-07 3.78289598399e-08 -116793749.516 +UniRef50_A9KJX4 Two component transcriptional regulator, winged helix family 9.8006653273e-06 5.18099482802e-06 -1865017670.29 +UniRef50_P39381 1.8171307634e-05 6.28962295273e-06 -4796781910.51 +UniRef50_UPI00036F79EF hypothetical protein 2.04829005201e-07 2.08469189899e-07 1469587.23267 +UniRef50_UPI00035C1F0F PhoB family transcriptional regulator 1.19974411968e-07 3.18909407107e-07 80312498.7445 +UniRef50_Q2L1W2 Phosphonoacetaldehyde hydrolase 5.64786096375e-06 1.0537782868e-05 1974121478.84 +UniRef50_Q9RYF4 Oxidoreductase, short chain dehydrogenase reductase family 3.03369295793e-06 0.000481947194562 1.93343257527e+11 +UniRef50_S5K087 2.0051685915e-06 2.24837509715e-05 8267455007.27 +UniRef50_UPI00016B0FEC hypothetical protein 2.72225472725e-06 4.46322476372e-06 702850967.828 +UniRef50_A3PN29 5.25917967236e-05 4.66289534524e-06 -19349485640.2 +UniRef50_A3M3L2 Transcription regulator LysR family 1.46123608583e-06 6.88485413227e-05 27205082059.4 +UniRef50_UPI0003C27927 PREDICTED 1.1805216264e-07 1.21754720508e-07 1494768.04681 +UniRef50_Q0S2H3 Ketol acid reductoisomerase 2.2804197232e-07 3.91952302383e-07 66172611.6524 +UniRef50_Q98BA9 Mll5655 protein 8.89600871452e-06 3.18015763219e-05 9247258726.03 +UniRef50_B8DA95 Ggdef motif membrane protein 1.01799161961e-06 7.04875498837e-06 2434693177.76 +UniRef50_Q8VNM5 Orf513 protein 1.85780990745e-07 7.50066528596e-07 227808996.193 +UniRef50_A4W448 ATPases with chaperone activity, ATP binding subunit 7.49593764114e-05 5.62690196658e-05 -7545526374.67 +UniRef50_R9SJ71 Type II secretion system protein E GspE 2.39202141976e-05 1.77817982011e-05 -2478153864.62 +UniRef50_UPI000376BA8C hypothetical protein 9.48507284613e-07 1.65663314918e-07 -316043717.142 +UniRef50_A6M2J8 Glycerophosphoryl diester phosphodiesterase 6.49550450817e-06 9.60775223075e-06 1256452597.18 +UniRef50_A0A017HNC7 4.02499631709e-08 2.15117888125e-07 70596327.1747 +UniRef50_A3QG19 Homoserine O succinyltransferase 6.62165468051e-05 0.000163075785497 39103263256.4 +UniRef50_UPI0003B4CB27 MarR family transcriptional regulator 1.49238087733e-07 8.15505867925e-07 268980478.889 +UniRef50_H9KGM6 1.01928736284e-07 2.20836331286e-07 48004455.2626 +UniRef50_UPI00047DD55E electron transfer flavoprotein subunit alpha 1.0167012003e-07 1.36027365176e-07 13870441.4762 +UniRef50_H3YNY8 Penicillin binding protein, transpeptidase domain protein 0.000173990111027 4.67672177978e-05 -51361443197.0 +UniRef50_A5UP25 Predicted type II restriction enzyme, methylase subunit 5.59611369867e-05 4.11456557505e-06 -20931097107.9 +UniRef50_G8MLW9 Binding protein dependent transport systems inner membrane component 5.07217107692e-06 1.5949476058e-05 4391301500.41 +UniRef50_G2KXV7 1.17033712309e-06 6.54737190689e-05 25960064382.8 +UniRef50_UPI00035CE0CD hypothetical protein 1.40269029924e-07 1.29074661319e-07 -4519303.97619 +UniRef50_I0ESN6 Alanine dehydrogenase 1.0342081886e-06 4.36034903428e-05 17185741589.5 +UniRef50_P73002 Cobyrinic acid A,C diamide synthase 1.10603340866e-07 3.71790995168e-06 1456313945.41 +UniRef50_UPI0003645BA6 hypothetical protein 2.42269586579e-09 8.1319791206e-09 2304907.71075 +UniRef50_A4WRS0 SAM dependent methyltransferase 9.516453501e-07 1.49024409689e-06 217438923.429 +UniRef50_B9KQ53 9.36602790663e-06 7.03135012379e-06 -942538070.651 +UniRef50_UPI000465DFCD hypothetical protein 1.55286322412e-07 5.08126450223e-07 142445889.433 +UniRef50_UPI0003651ACE hypothetical protein 3.55366880624e-08 3.1956570336e-07 114665998.904 +UniRef50_Q1IZ90 Drug resistance transporter EmrB QacA subfamily 1.37912002714e-06 0.000330351825307 1.32810318071e+11 +UniRef50_UPI0003681123 hypothetical protein 5.66697429046e-08 1.87441322491e-07 52794091.4266 +UniRef50_UPI000419642D MULTISPECIES 2.97298079047e-06 9.93951751378e-07 -798958308.498 +UniRef50_R7PVV2 1.99467256595e-05 1.16982940041e-05 -3329993078.92 +UniRef50_J7RBB7 Fdhd protein 1.58502778779e-06 1.66069600779e-06 30548188.9675 +UniRef50_X8A316 9.9524258552e-06 2.23643230125e-06 -3115041283.62 +UniRef50_I7L4T0 Phosphate import ATP binding protein pstB 2.72881437722e-06 4.33012411265e-05 16379586558.4 +UniRef50_M4WV43 Cis,cis muconate transporter MucK 8.75160715986e-07 2.74946358252e-06 756679067.501 +UniRef50_O26307 Hydrogenase expression formation protein HypE 1.84768815042e-05 6.07463870433e-06 -5006937610.95 +UniRef50_P0AD04 Inner membrane protein YebS 2.31831291635e-05 6.72491541523e-06 -6644382855.18 +UniRef50_Q3JHW2 8.95077155721e-09 3.92315100904e-07 154768884.167 +UniRef50_K0L036 Formate dehydrogenase 0.000117134009283 1.4173807587e-05 -41566296888.4 +UniRef50_Q2GPL7 Predicted protein 4.68581199479e-08 4.22726290486e-08 -1851218.94635 +UniRef50_P02929 Protein TonB 4.16827720089e-05 1.39023834552e-05 -11215283762.8 +UniRef50_Y0BJC5 5.56445672337e-07 1.17453029342e-06 249528346.282 +UniRef50_Q3JEN4 Cytidylate kinase 3.0630079815e-05 2.6786689622e-05 -1551623784.62 +UniRef50_A6T1E5 60 kDa chaperonin 7.58693464667e-06 3.48865577547e-06 -1654525471.84 +UniRef50_UPI00047C3395 hypothetical protein 1.68109620053e-07 9.70455211084e-08 -28689448.7985 +UniRef50_UPI0003791B6C hypothetical protein 7.37081740068e-08 2.89324819614e-07 87047085.7453 +UniRef50_UPI0003EB0A2B GTPase 7.47574908731e-08 7.09715475647e-06 2835027950.63 +UniRef50_B5F7X0 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 4.14634585082e-05 9.59486386399e-06 -12865742729.5 +UniRef50_UPI0001E892A8 probable mannose 1 phosphate guanyltransferase 6.88439991802e-07 7.83492809126e-08 -246301106.641 +UniRef50_U5MUF8 1.43349109691e-05 6.94667506903e-06 -2982721496.71 +UniRef50_G8PBV9 PTS system, lactose cellobiose IIC component family protein 1.12235675575e-06 1.20817404873e-05 4424437699.21 +UniRef50_Q46863 Putative binding protein YgiS 4.96299031516e-05 3.66356472688e-06 -18557174892.5 +UniRef50_UPI0003C17ADD PREDICTED 7.47564838915e-08 5.007437225e-06 1991383745.99 +UniRef50_P21912 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 2.94011728551e-07 3.91688387943e-07 39433266.0239 +UniRef50_P77726 Inner membrane transport protein YajR 2.30917749029e-05 1.89305580258e-06 -8558183038.33 +UniRef50_A9WS85 Leucine tRNA ligase 3.15224109719e-06 6.57415066267e-05 25268054550.9 +UniRef50_D2RJ96 CRISPR associated protein Cas4 6.41169304169e-05 3.60300894259e-05 -11339002372.4 +UniRef50_A6M3G8 Extracellular ligand binding receptor 6.0846503087e-06 1.99566028927e-05 5600277486.16 +UniRef50_H8GYP5 3.42358033143e-07 3.94202561313e-06 1453229974.93 +UniRef50_G8VEM4 Glycosyl transferase 3.35545549501e-06 6.38348381479e-05 24416268942.5 +UniRef50_F0ME34 Sodium alanine symporter family protein 1.26673150626e-06 1.65094312532e-05 6153664936.78 +UniRef50_F8JQP0 2.0445906561e-07 3.52435599669e-06 1340283130.79 +UniRef50_V5NK98 7.3801364786e-06 3.18122909438e-05 9863560573.85 +UniRef50_P45856 Probable 3 hydroxybutyryl CoA dehydrogenase 7.47097841561e-08 8.49836080879e-07 312927997.856 +UniRef50_I1HGX9 6.76900919389e-07 3.78371488187e-07 -120519994.744 +UniRef50_D6M5U2 Transcriptional regulator 2.20421068803e-07 1.73055318203e-07 -19122134.7603 +UniRef50_UPI00047B87C7 resolvase 1.66082738007e-06 1.48930119471e-06 -69247225.8928 +UniRef50_P31471 1.5782699698e-05 1.39317978913e-05 -747231772.484 +UniRef50_P31470 4.08368660701e-05 2.70106742557e-06 -15395889891.7 +UniRef50_B2V075 Ser Thr protein phosphatase family protein 1.17353157162e-06 1.23286111148e-05 4503442499.81 +UniRef50_Q5L7W2 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 1.81637554896e-08 3.69317750004e-05 14902477840.5 +UniRef50_M4U7I0 8.71076362508e-08 1.53955181854e-07 26987174.4716 +UniRef50_U5NMY3 2.72276246603e-05 6.80665341122e-06 -8244196686.76 +UniRef50_UPI0002379CD5 IS5 family transposase OrfA 1.43397962364e-07 2.48454257831e-07 42412515.6657 +UniRef50_Q73F23 Tn7 like transposition protein C 3.30071623406e-08 2.36417545201e-06 941121245.192 +UniRef50_UPI000364A211 hypothetical protein 3.01238287585e-05 3.64588524928e-06 -10689470715.6 +UniRef50_Q53199 Probable glutamate dehydrogenase 1.11411276695e-07 7.32779240207e-08 -15394902.4235 +UniRef50_UPI0003641B94 hypothetical protein, partial 9.81817981587e-07 4.70173132578e-07 -206557304.133 +UniRef50_Q1LDL8 8.03468928268e-06 1.84584933892e-05 4208217632.25 +UniRef50_UPI0003B6B0F4 hypothetical protein 5.28199585023e-08 3.33549767674e-07 113334068.905 +UniRef50_N9CNB8 9.46769974165e-08 2.93669261701e-07 80335619.0011 +UniRef50_G2J0I7 4.13835263349e-06 1.32096291232e-05 3662185635.98 +UniRef50_J0FRW1 9.90128757628e-06 1.55279690407e-06 -3370388131.87 +UniRef50_UPI000411C2A5 hypothetical protein 1.52485521016e-06 7.29994343906e-07 -320895085.746 +UniRef50_UPI0003B57812 ABC transporter ATP binding protein 8.03968854634e-08 4.76007031518e-07 159712670.645 +UniRef50_W5X841 Phage associated DNA primase 1.01294888463e-07 4.12216041804e-06 1623272755.86 +UniRef50_Q74L45 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2 0.000224244593613 3.65361251891e-05 -75780212144.7 +UniRef50_F0TCP3 3.23483186316e-05 1.15134382828e-05 -8411296869.54 +UniRef50_Q5UBV9 Resuscitation promoting factor 5.78245943101e-07 7.67520567149e-07 76412488.389 +UniRef50_Q6GI36 Staphostatin B 1.46042537418e-05 5.3693946399e-06 -3728225943.9 +UniRef50_D4HBN4 Trypsin 5.09160138868e-06 3.91973859595e-05 13768923756.3 +UniRef50_P76417 Putative nucleoside transporter YegT 2.18786512907e-05 2.10689682662e-06 -7982099903.87 +UniRef50_B7S018 Oxidoreductase, short chain dehydrogenase reductase family 5.80179615192e-08 2.81965618596e-06 1114907240.32 +UniRef50_T6VVX4 Galactitol 1 phosphate 5 dehydrogenase 5.16991680384e-06 2.92392777421e-06 -906733332.646 +UniRef50_A6LXN2 NLP P60 protein 1.04857219123e-06 2.76303772658e-05 10731400904.0 +UniRef50_UPI00037E23C1 hypothetical protein 8.26092340567e-08 9.51068804585e-08 5045453.21577 +UniRef50_B3HGM5 1.45106314815e-05 4.57855356899e-06 -4009701733.58 +UniRef50_A6T6B5 tRNA 2 methylthio N dimethylallyladenosine synthase 3.61416626661e-05 0.000156928468018 48763115541.4 +UniRef50_A0A009GFK1 9.13272553671e-06 0.000170646064139 65204916785.2 +UniRef50_Q04JY7 Homoserine kinase 3.1457165738e-06 2.97997355262e-05 10760554532.7 +UniRef50_UPI00035FAAB9 hypothetical protein 4.77501492741e-08 9.28672028189e-08 18214308.1645 +UniRef50_H3XMI1 Periplasmic binding domain protein 6.32670742894e-07 1.19400285112e-06 226616660.41 +UniRef50_Q4UMZ3 Putative export ATP binding permease protein RF_0214 6.35949153104e-07 7.74314191575e-07 55859663.9607 +UniRef50_UPI000361120A hypothetical protein 8.40803186985e-08 1.19028408526e-06 446588035.207 +UniRef50_Q5WVI7 2.30312102203e-07 1.76784514883e-05 7044027982.92 +UniRef50_H3F815 1.27395869027e-07 2.10074258441e-06 796664284.686 +UniRef50_B5EN70 NADH quinone oxidoreductase subunit B 2 3.61010732909e-07 1.43093900298e-06 431943172.124 +UniRef50_UPI00037A86DD hypothetical protein 9.49220195328e-08 1.08675751515e-07 5552550.37848 +UniRef50_D8TR27 9.7123324747e-07 7.59819996298e-07 -85350123.8305 +UniRef50_UPI00042C3CC5 PREDICTED 1.60034511086e-07 1.32223924275e-07 -11227475.1699 +UniRef50_K0HTI4 YD repeat protein 9.644414632e-07 3.70034648493e-05 14549395989.5 +UniRef50_C5CI63 Adenine deaminase 1.84376755211e-07 6.20522698217e-08 -49383895.8418 +UniRef50_A6M0R7 ABC transporter, periplasmic substrate binding protein 3.09685371786e-06 3.61705747001e-05 13352267020.7 +UniRef50_B9KWE3 Methyl accepting chemotaxis sensory transducer 4.40953233595e-05 1.64325783259e-05 -11167789630.1 +UniRef50_Q48K66 Branched chain amino acid transport system II carrier protein 3.18522141699e-06 7.55936087353e-05 29232154511.2 +UniRef50_UPI0003780D5B hypothetical protein, partial 3.01958839214e-06 6.46943829869e-06 1392746741.69 +UniRef50_B6JHG4 N acetyl gamma glutamyl phosphate reductase 5.29826498259e-07 4.21125530479e-07 -43883914.6037 +UniRef50_A3PKL4 4.40071333486e-05 4.77790105511e-06 -15837322473.7 +UniRef50_UPI00047265F4 hypothetical protein 2.82982757334e-08 2.04584009291e-07 71168713.9066 +UniRef50_Q8RWV0 Transketolase 1, chloroplastic 4.08513644073e-07 1.72453155097e-07 -95300516.1876 +UniRef50_Q1IRT8 Histidine ammonia lyase 4.28038896247e-08 4.88825145435e-07 180064254.267 +UniRef50_A6M3B4 1.75303090798e-06 6.83855261656e-06 2053087520.12 +UniRef50_D0ISP2 Aminodeoxychorismate lyase 1.40503469798e-06 3.76593821096e-05 14636324940.9 +UniRef50_I4DZ43 6.67688312194e-05 1.74723469169e-05 -19901595648.8 +UniRef50_I6T9F6 Transcriptional regulator 6.07751964798e-05 3.42578926584e-05 -10705360956.6 +UniRef50_UPI00047B64CE hypothetical protein 4.56528187742e-08 1.64584238309e-07 48014073.5189 +UniRef50_Q2YQE0 Urease subunit gamma 2 5.7132099174e-07 2.80250394319e-05 11083403029.3 +UniRef50_A8IHJ3 Altronate oxidoreductase 9.43328049709e-06 7.40517866176e-06 -818769598.531 +UniRef50_UPI000225ED80 DNA damage repair protein MutT 1.890738036e-06 1.70532133868e-07 -694468231.99 +UniRef50_A5WC44 Membrane protein like protein 2.99238693049e-07 1.00614891863e-06 285388332.831 +UniRef50_W0MF84 3.33022505855e-06 9.25260462548e-05 36009447572.7 +UniRef50_UPI0001FFF273 hypothetical protein, partial 2.50573607881e-07 3.50998230871e-06 1315863289.97 +UniRef50_D3QIV7 Immunodominant antigen B 0.00011228205139 2.70456715148e-05 -34410972523.6 +UniRef50_A5UJ84 Adhesin like protein 2.68025077318e-05 2.45076103906e-06 -9831098969.38 +UniRef50_UPI00035E8644 hypothetical protein, partial 3.01743483058e-07 3.81599280698e-07 32238765.4481 +UniRef50_UPI0003B6B470 hypothetical protein 5.95194555565e-06 1.05749566174e-06 -1975949483.83 +UniRef50_UPI000362BA63 hypothetical protein 1.95592461839e-08 7.30533611889e-06 2941357530.05 +UniRef50_A9M2L0 Transcriptional regulator, Fnr family 7.96364292508e-06 2.59298060845e-05 7253160537.06 +UniRef50_Q9M439 Branched chain amino acid aminotransferase 2, chloroplastic 6.88732373537e-08 2.05608250904e-07 55201602.8974 +UniRef50_F4LTT4 DNA methylase N 4 N 6 domain protein 2.46241277342e-06 7.06890209602e-05 27543918959.6 +UniRef50_Q4L9Y1 PTS system mannitol specific EIICB component 7.67983501024e-05 3.12703496244e-05 -18380212484.4 +UniRef50_UPI00047BEA91 hypothetical protein 1.06360246451e-07 9.10414453258e-07 324606550.143 +UniRef50_A6LWG3 2.85569292609e-06 1.12970576838e-05 3407882539.88 +UniRef50_B9KWP4 ABC sugar transporter, inner membrane subunit 7.58924334585e-05 2.88027685276e-05 -19010675587.8 +UniRef50_UPI00026C8165 peptidase A8 1.19733616071e-07 1.77552085591e-07 23342025.6576 +UniRef50_C3C2K9 8.57677302841e-06 3.14670086138e-05 9241069000.6 +UniRef50_B5F445 Aspartate carbamoyltransferase regulatory chain 4.93445737057e-06 2.22743179208e-05 7000314488.13 +UniRef50_UPI00037CE05A hypothetical protein 6.14154385859e-08 2.92317876983e-07 93218147.8724 +UniRef50_P16682 Phosphonates binding periplasmic protein 4.59295954877e-05 8.92910800665e-06 -14937550843.1 +UniRef50_Q5FSJ7 Anhydro N acetylmuramic acid kinase 9.14293144155e-08 5.24623869964e-07 174885957.97 +UniRef50_Q5HRD0 Endonuclease III 0.000191347268313 3.85395803607e-05 -61690338787.4 +UniRef50_E6MWX9 5.61450906434e-07 4.35288705025e-06 1530649297.41 +UniRef50_Q4L8H1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 6.813252479e-05 1.90532872175e-05 -19813890478.0 +UniRef50_UPI00035DC37A hypothetical protein 3.92402545882e-08 4.91393459536e-08 3996384.65972 +UniRef50_B2TR74 P type ATPase metal cation transport 3.06540410571e-06 2.27759965536e-05 7957408047.39 +UniRef50_Q9CPY0 Putative ribosomal RNA methyltransferase 2 1.58624720732e-07 3.39665865469e-07 73088531.755 +UniRef50_U2YLP5 Possible lipoprotein 5.53750190449e-07 3.8870143796e-07 -66632206.7558 +UniRef50_UPI000376B5CE hypothetical protein 1.15789176755e-07 3.79914350291e-07 106630573.737 +UniRef50_E8U4R9 GAF domain protein 8.08303031738e-08 2.58434682014e-05 10400693062.6 +UniRef50_UPI00039595AE amino acid carrier protein 2.27907604823e-07 2.31573459769e-05 9256895646.67 +UniRef50_UPI00037DB88D hypothetical protein 4.4087330398e-08 2.59238280605e-07 86859078.7976 +UniRef50_UPI0003B53AEE hemolysin secretion protein D, partial 1.27509562846e-06 1.87003006468e-06 240182332.569 +UniRef50_UPI000465E12B hypothetical protein, partial 1.08803681926e-07 7.34977782121e-08 -14253426.5815 +UniRef50_S1U9M8 Respiratory nitrate reductase 2 beta chain domain protein 4.01688940269e-07 1.53124499628e-06 456015641.023 +UniRef50_Q0RF16 Potassium transporting ATPase A chain 3.99613545594e-08 1.42940576034e-05 5754553573.07 +UniRef50_X1GYM7 Marine sediment metagenome DNA, contig 3.11715608716e-07 4.76730438315e-07 66618511.6688 +UniRef50_F2U6L8 SAM domain and HD domain containing protein 1 2.76295375609e-08 2.8560456801e-08 375823.520892 +UniRef50_P23883 Aldehyde dehydrogenase PuuC 5.31195182793e-05 9.37634185837e-06 -17659657110.3 +UniRef50_UPI00037CF752 hypothetical protein 1.11349720131e-07 1.8394083737e-07 29305924.8226 +UniRef50_UPI00037C0B53 50S ribosomal protein L3 6.23917493977e-08 3.40814098583e-06 1350720023.71 +UniRef50_A5UP78 Exoribonuclease VII, large subunit, XseA 2.15857067305e-05 3.91078004213e-06 -7135584799.85 +UniRef50_P31131 Protein YdeJ 2.92769080694e-05 2.21508008896e-05 -2876896915.65 +UniRef50_D7AQ31 Transcriptional regulator, DeoR family 4.59429269956e-06 8.01836292727e-06 1382339168.99 +UniRef50_E7PVM6 Streptococcal histidine triad protein 1.14621985566e-06 1.54651280037e-06 161603173.926 +UniRef50_Q56953 Chelated iron transport system membrane protein YfeB 2.13059780018e-05 3.90286394531e-06 -7025850704.83 +UniRef50_Q53CQ0 JM170 2.09244122337e-06 2.70504075483e-06 247313948.292 +UniRef50_Q98NF5 Threonine dehydratase 3.15123497302e-05 1.02587252864e-05 -8580348999.26 +UniRef50_P76042 Putative ABC transporter periplasmic binding protein YcjN 2.29229309692e-05 2.63038294274e-05 1364910195.86 +UniRef50_Q9BYC2 Succinyl CoA 5.56656991258e-07 3.5509475619e-07 -81373147.7437 +UniRef50_UPI0002E54E33 hypothetical protein 9.82025663508e-07 1.41242329797e-07 -339434549.391 +UniRef50_X5EK24 Integral membrane transporter 7.46019740784e-07 3.28373813961e-05 12955676505.5 +UniRef50_UPI00016A5F2C deoxyribodipyrimidine photolyase, partial 1.8824471964e-07 2.14989296045e-06 791941466.946 +UniRef50_UPI000478533A ribose ABC transporter permease 1.30797652061e-06 6.4056112945e-07 -269443783.519 +UniRef50_Q8ZYR9 DNA repair and recombination protein RadA 2.99372232861e-05 1.48089947023e-05 -6107451523.52 +UniRef50_UPI000382A2F1 hypothetical protein 3.54409921254e-07 4.56870033621e-08 -124635230.409 +UniRef50_G7ZRL2 0.000171826271024 5.60910229823e-05 -46723739865.8 +UniRef50_S4YXA5 Meta pathway phenol degradation like protein 7.64823676121e-08 9.51941935003e-08 7554193.73099 +UniRef50_B2TNM6 DNA polymerase 8.97592399675e-07 1.5944452856e-05 6074602211.95 +UniRef50_Q5HNN0 Probable GTP binding protein EngB 0.000111553700708 4.77534449053e-05 -25756946184.7 +UniRef50_A5IS41 5.18126123941e-05 2.14145439617e-05 -12272073252.4 +UniRef50_T2HRY4 Transposase DDE domain protein 1.90810983781e-06 1.80254347023e-06 -42618438.0371 +UniRef50_Q5HRQ4 50S ribosomal protein L25 0.000254628850566 8.93083873549e-05 -66741899708.5 +UniRef50_C5ASM5 Enoyl CoA hydratase 6.35921096979e-06 7.48799869256e-06 455705455.465 +UniRef50_A5VBZ8 DNA directed RNA polymerase subunit beta 1.26709949315e-07 2.49085934594e-08 -41098456.6022 +UniRef50_D2GMB8 1.20721971164e-05 3.99118210134e-07 -4712565199.26 +UniRef50_A3CNT1 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 3.71627697137e-05 1.26518946121e-05 -9895341060.78 +UniRef50_UPI00031618D7 hypothetical protein 1.26569992233e-07 6.59325799901e-07 215080057.205 +UniRef50_UPI0003C8E1FD PREDICTED 7.96052706528e-07 1.94522517642e-07 -242845118.859 +UniRef50_M3X368 1.75369346644e-06 1.02962392396e-06 -292315759.632 +UniRef50_B7I751 NADH quinone oxidoreductase subunit N 1.09528870245e-05 9.91772383966e-05 35617253283.5 +UniRef50_UPI00037AC0F7 hypothetical protein 4.15012029582e-06 4.66075767625e-07 -1487293984.34 +UniRef50_W0NQ86 1.73125784067e-06 1.72221570483e-06 -3650421.19809 +UniRef50_UPI00040AFE18 DNA primase 4.34732605014e-08 1.74681419572e-07 52970343.9221 +UniRef50_R1DKY4 3.62810417783e-07 2.24555930352e-06 760088829.1 +UniRef50_P0AFI5 D alanyl D alanine endopeptidase 3.51682754093e-05 1.14984705152e-05 -9555790696.92 +UniRef50_Q54IJ8 3.9009919625e-07 6.63207975011e-09 -154810380.602 +UniRef50_A0A059LB29 9.34525275573e-07 7.33225041784e-06 2582840148.85 +UniRef50_K9XNW0 2.70520364308e-08 1.52418098013e-05 6142384415.76 +UniRef50_Q9AK82 DNA polymerase IV 8.3887696239e-07 5.36219246456e-05 21309164070.5 +UniRef50_U3SRM8 4.45585099275e-05 1.58659460002e-05 -11583540154.8 +UniRef50_F7SKK4 Pirin like protein 5.06929127244e-07 3.64614498735e-07 -57454161.926 +UniRef50_Q49VP4 UTP glucose 1 phosphate uridylyltransferase 2 0.000214025197099 7.0510296093e-05 -57938726662.0 +UniRef50_A7I262 DedA family protein 7.88118449162e-06 1.53897694497e-05 3031307888.28 +UniRef50_A8AQ14 5 keto 4 deoxy D glucarate aldolase 4.11022060924e-05 5.10998980884e-06 -14530499387.9 +UniRef50_UPI0000F2F781 two component response regulator 1.17928995719e-07 1.67265293638e-07 19917668.8944 +UniRef50_UPI00026CD75D rare lipoprotein A 1.01343426064e-07 5.5350877534e-07 182544700.196 +UniRef50_P37327 Inner membrane protein YfdC 3.12410409659e-05 4.83227980161e-06 -10661540954.0 +UniRef50_C5Z886 1.08802350393e-06 1.32409392729e-05 4906281228.99 +UniRef50_B9TC98 Xanthosine phosphorylase, putative 1.4002308986e-05 2.42062873115e-06 -4675666442.1 +UniRef50_P39851 Putative tyrosine protein kinase CapB 0.000258133970862 3.94277478097e-05 -88294386073.3 +UniRef50_UPI00035DBD49 hypothetical protein 1.18899010743e-07 1.90542928152e-06 721244193.506 +UniRef50_UPI000329916F PREDICTED 3.93095096021e-08 1.30466569572e-07 36801223.7328 +UniRef50_U3U1E2 Alkyl hydroperoxide reductase subunit F 8.38787326643e-07 5.31341062728e-06 1806460336.27 +UniRef50_UPI000369BED8 hypothetical protein 2.45204019703e-07 2.5944529224e-07 5749376.48325 +UniRef50_U8KDA3 4.81897007041e-06 2.68684851974e-05 8901659834.75 +UniRef50_S6SYK4 Alkanesulfonate transporter substrate binding subunit 1.64367512698e-07 5.61668295816e-07 160395201.574 +UniRef50_UPI000415C161 phospholipase C 2.45859708223e-08 4.05222703401e-08 6433679.67572 +UniRef50_G5KHM6 5.11210656376e-07 1.37289552241e-06 347872754.48 +UniRef50_UPI00046F982B hypothetical protein 9.16156515407e-08 8.34461994146e-08 -3298108.07376 +UniRef50_UPI00045E9E9F hypothetical protein 2.56130020935e-07 8.57604175303e-07 242822497.036 +UniRef50_R7PWF8 1.60719875038e-05 3.82094348328e-06 -4945896808.29 +UniRef50_UPI0004290598 luciferase 4.53953629829e-07 7.04463643718e-08 -154826589.228 +UniRef50_Q8FEN7 Arabinose 5 phosphate isomerase GutQ 2.37728752386e-05 4.88709141147e-06 -7624422685.63 +UniRef50_O34133 Putative regulator AldR 9.59953619953e-06 0.000269602341966 1.04966323281e+11 +UniRef50_UPI00027F9D39 PREDICTED 1.0441532621e-06 1.44087256308e-07 -363367691.59 +UniRef50_A0NLI7 4.7631933423e-06 2.11235857593e-05 6604891183.33 +UniRef50_A0A045UMF7 6.67631110754e-07 1.70044478929e-07 -200881829.342 +UniRef50_H0YQH9 2.25250653346e-07 7.03642243928e-08 -62529552.0385 +UniRef50_G7QF23 Peptide chain release factor 3 1.98235735785e-06 0.000412329953604 1.65662360136e+11 +UniRef50_D9UK32 2.57248533406e-06 4.61275472664e-07 -852321328.506 +UniRef50_UPI000456151B hypothetical protein PFL1_04047 1.8900081494e-07 1.13046338114e-06 380079991.02 +UniRef50_I6TYU2 Peptide synthetase 5.68245088731e-05 1.31991713018e-05 -17612084120.6 +UniRef50_D3QF29 ABC transporter 0.000108437550286 3.00708603153e-05 -31637594408.6 +UniRef50_Q8D820 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.78194721416e-07 5.95071185313e-08 -47915641.7453 +UniRef50_UPI0003B36CD8 metal dependent hydrolase 5.52168911759e-08 1.15389153335e-07 24292280.6303 +UniRef50_UPI000470D6FC hypothetical protein 5.58524529389e-06 9.01576586826e-07 -1890854532.12 +UniRef50_S4X9L5 2 oxoglutarate ferredoxin oxidoreductase subunit beta 0.000114404834969 7.04497677118e-06 -43342492208.1 +UniRef50_Q97L63 Spore photoproduct lyase 2.51798222424e-06 1.01598528715e-05 3085116956.6 +UniRef50_UPI000427F61C O acetylhomoserine aminocarboxypropyltransferase 4.80092053304e-07 6.75559670035e-08 -166545880.427 +UniRef50_H9UVF1 Short chain dehydrogenase reductase SDR 4.17589910305e-05 1.63271561365e-05 -10267143830.4 +UniRef50_V9R1Z5 Chemotaxis protein CheY 7.41983596461e-06 2.428287112e-06 -2015149524.99 +UniRef50_Q9RT22 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 1.27526494248e-06 0.000306512436277 1.23227991749e+11 +UniRef50_V4FVJ2 IS3 Spn1, transposase 3.81917154385e-06 4.11371599247e-07 -1375770656.04 +UniRef50_UPI0000167300 COG0174 2.95723761745e-07 5.03560344835e-07 83906179.0351 +UniRef50_U3ST30 3.21881920049e-05 3.12375900188e-05 -383769686.987 +UniRef50_A6C7R0 4.84496331142e-08 5.39135851219e-08 2205864.47574 +UniRef50_Q07GL5 Pirin protein, putative 1.63318030493e-06 7.6313959539e-08 -628526048.532 +UniRef50_A1B348 Cbb3 type cytochrome c oxidase subunit CcoP 0.000136581272347 5.06429725071e-05 -34694346226.9 +UniRef50_M7M6N5 Transposase domain protein 2.44243585442e-06 6.44118984519e-06 1614346056.3 +UniRef50_M1LYE3 Flagellar basal body protein FliL 7.06339265833e-06 5.01954739708e-06 -825125412.768 +UniRef50_Q9RXG4 Lon protease 2.84005533994e-06 0.000504697663211 2.02606074783e+11 +UniRef50_UPI000287D648 multidrug efflux associated protein 3.35002361247e-08 2.88471350202e-08 -1878514.01586 +UniRef50_UPI0003B6CDE7 serine ammonia lyase 4.24305704395e-08 3.48140028116e-07 123418659.541 +UniRef50_A4AEG2 3.72612544287e-07 9.34581160418e-07 226873626.462 +UniRef50_B9DLC6 Transcription repair coupling factor 0.000101739401259 3.58605458647e-05 -26596102347.1 +UniRef50_UPI0003C808C2 PREDICTED 4.02129300966e-09 1.01094027683e-08 2457844.61907 +UniRef50_UPI0003775EA0 30S ribosomal protein S4, partial 2.09074650817e-07 2.69567901264e-06 1003872694.93 +UniRef50_C5CV27 3.12298694041e-06 2.85482025943e-06 -108262179.887 +UniRef50_P54978 Phytoene desaturase 1.679693469e-07 3.01378114058e-07 53858756.4114 +UniRef50_Q4L5Y5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.00016400846572 0.000246547981902 33322215556.4 +UniRef50_G8RAR9 Proline dehydrogenase 9.48274430694e-05 9.15805065464e-06 -34585784999.5 +UniRef50_Q2FWK2 3 isopropylmalate dehydrogenase 0.000113165078642 9.49521928702e-06 -41852794393.8 +UniRef50_R9YQ24 8.87621566963e-05 1.63250803704e-05 -29243736615.7 +UniRef50_UPI0003626E85 PhoB family transcriptional regulator 9.96388947703e-07 2.95977809913e-07 -282764571.337 +UniRef50_UPI0003F822DA ABC transporter permease 5.73126320897e-07 1.96446744309e-06 561701484.704 +UniRef50_C5VTT8 tRNA specific adenosine deaminase 2.56212209626e-06 7.92796524005e-06 2166256723.45 +UniRef50_K6U2B0 ABC type sugar transport system, periplasmic component 1.58385729588e-06 1.84013748086e-05 6789438194.02 +UniRef50_A5ITW6 0.000121051911068 3.15284738642e-06 -47597298792.6 +UniRef50_D8JKJ3 Transcription repair coupling factor 3.80274669728e-07 6.30447377816e-05 25298412737.7 +UniRef50_U6B4B7 Lipoprotein 3.25593662758e-07 9.57026190087e-08 -92809835.4418 +UniRef50_C3T922 Membrane associated protein 3.25192515238e-05 7.58152611373e-06 -10067665768.4 +UniRef50_B2JSF8 Major facilitator superfamily MFS_1 7.70992638191e-06 3.67038528455e-06 -1630812311.75 +UniRef50_A7GWQ0 S ribosylhomocysteine lyase 8.93000762329e-08 4.69883756694e-06 1860926850.39 +UniRef50_UPI00046650D5 DNA recombination protein RecN 3.92385279295e-08 1.19037562535e-07 32215849.5145 +UniRef50_UPI0000E0F611 UTP glucose 1 phosphate uridylyltransferase 8.5692130517e-06 2.61145479274e-06 -2405220119.06 +UniRef50_D8HI13 NPQTN specific sortase B 0.000138265985307 5.33704888912e-06 -53665042853.4 +UniRef50_A5UK93 Mg dependent DNase, TatD related 2.1290659579e-05 1.18196942019e-05 -3823544944.55 +UniRef50_Q9RSH5 Membrane protein insertase YidC 2.27982246464e-06 0.000380320244727 1.52619557545e+11 +UniRef50_A0A059IP43 9.13671249766e-07 5.92477950321e-07 -129669676.471 +UniRef50_Q2FJ80 FMN dependent NADPH azoreductase 0.000185592461058 5.57423277481e-05 -52422092257.6 +UniRef50_UPI00046F326D hypothetical protein 3.37634843705e-06 3.30787682637e-06 -27642829.4727 +UniRef50_C6SQB9 4.71556158544e-05 1.31761107357e-05 -13717943191.8 +UniRef50_Q930I4 Histidinol dehydrogenase 2 5.52067536772e-06 1.3536289008e-06 -1682287794.11 +UniRef50_A0A023VI11 Beta lactamase 4.40264323697e-05 9.71503193893e-06 -13851933402.1 +UniRef50_F5X3F3 HI0933 like oxidoreductase dehydrogenase 4.61334314387e-05 4.96447499705e-05 1417562380.01 +UniRef50_UPI00036BFC25 hypothetical protein 8.17238696985e-08 4.46865155601e-07 147412017.906 +UniRef50_UPI00046A9281 glycine cleavage system protein H 7.25175726586e-07 4.2109723022e-07 -122760220.446 +UniRef50_W6JZG7 1.8996331545e-06 5.51749449576e-07 -544157192.069 +UniRef50_B9KSX5 Sporulation domain protein 1.14853749147e-06 2.92844959078e-06 718572356.469 +UniRef50_UPI00037A69CE hypothetical protein 3.71292529424e-08 1.80340969236e-06 713069088.092 +UniRef50_B9KUJ5 3.20667299987e-06 6.88145081358e-07 -1016760626.52 +UniRef50_L5N059 6.54809863542e-08 2.80456329253e-07 86788183.9724 +UniRef50_Q8VVL8 ORF 5 8.06448360266e-06 5.29094249114e-06 -1119712581.9 +UniRef50_UPI000441F366 1.29681746904e-06 2.5530086296e-07 -420473034.72 +UniRef50_UPI000363D669 hypothetical protein 1.35543753366e-07 7.95990891992e-07 266630614.461 +UniRef50_T0MER8 3.48005966761e-06 5.18180593909e-06 687015852.572 +UniRef50_F1VLT2 5.789719829e-06 6.39342072811e-06 243721461.214 +UniRef50_A3M519 EsvK1 4.08829590809e-06 2.10564495683e-05 6850251855.28 +UniRef50_A6M0I4 Transcriptional regulatory protein 4.18554545908e-06 1.2225577219e-05 3245859483.76 +UniRef50_UPI000372ED7A hypothetical protein 1.0482815913e-07 6.92945939606e-08 -14345336.3048 +UniRef50_A7X766 Imidazoleglycerol phosphate dehydratase 0.000131656631923 0.000109802267631 -8822875047.89 +UniRef50_F3T6C6 Conserved domain protein 1.82463189118e-07 1.02903168863e-06 341770091.817 +UniRef50_D3G1Y7 Cadmium resistance transporter, putative 0.000130973520699 6.78809564193e-05 -25471242432.5 +UniRef50_A9FQ61 9.35086209409e-07 2.84356395773e-07 -262707611.118 +UniRef50_I0IJ24 1.55541118659e-07 3.13118097559e-07 63615760.0689 +UniRef50_S5YT17 Transposase 1.29478547536e-05 7.61189957441e-07 -4919906125.42 +UniRef50_UPI00047ABD8A arginine tRNA ligase 3.20281599027e-08 1.10506827367e-07 31682801.0969 +UniRef50_UPI00028A110F UrtA 5.67815879186e-07 2.89335144547e-06 938847245.638 +UniRef50_Q2CDM2 6.18388949015e-06 1.49146733034e-06 -1894388408.41 +UniRef50_F8CGQ9 1.99876564936e-07 6.66717267717e-08 -53776427.774 +UniRef50_Q4L732 DNA polymerase 9.6210484349e-05 3.86334423775e-05 -23244558393.7 +UniRef50_S5CN83 Outer membrane receptor for monomeric catechols 1.03895576076e-06 7.48927075989e-05 29815665904.5 +UniRef50_Q5LMC4 Peptidase, family S49 5.37228637452e-05 2.99307471484e-06 -20480238356.1 +UniRef50_W7J7H8 Basic proline rich protein 2.6314464008e-06 3.08821568063e-06 184403363.457 +UniRef50_UPI00037AC687 hypothetical protein 5.74955104166e-08 3.1246709291e-08 -10596963.1234 +UniRef50_G7M7P5 Aspartate semialdehyde dehydrogenase 0.000151801086402 5.57957797411e-05 -38758520416.6 +UniRef50_P77280 3.22488994571e-05 1.32915114518e-05 -7653330171.05 +UniRef50_UPI000472DE9D hypothetical protein, partial 9.77964138116e-08 3.42787963245e-07 98906094.8905 +UniRef50_UPI00047A4340 hypothetical protein 1.82734146786e-08 3.74954873306e-09 -5863462.91008 +UniRef50_P35598 Putative ABC transporter ATP binding protein exp8 6.15679346361e-05 3.46641124066e-05 -10861403181.1 +UniRef50_D2N3U7 Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative 0.000185189684308 1.14316143946e-05 -70148265075.2 +UniRef50_UPI000365A456 hypothetical protein 1.46711065423e-07 4.99379291617e-08 -39068502.6486 +UniRef50_UPI0003676E73 hypothetical protein 8.49407490501e-08 8.23047469559e-08 -1064186.39281 +UniRef50_UPI0003A0CBF8 MULTISPECIES 2.1761733673e-07 2.69720846801e-07 21034826.3976 +UniRef50_P0AAG7 Multidrug resistance like ATP binding protein MdlB 3.62555793418e-05 1.38551737165e-05 -9043318634.82 +UniRef50_J8RWM9 Sulfate ABC transporter permease 3.59470576485e-07 4.88450919042e-07 52070947.057 +UniRef50_UPI0003AD9F9E PREDICTED 2.62024477787e-08 1.11650426235e-06 440168222.05 +UniRef50_UPI0004268641 50S ribosomal protein L21 1.74170271306e-06 5.33610056723e-06 1451102521.95 +UniRef50_Q7MGT4 Phosphoribosylamine glycine ligase 2.69549286978e-05 1.91132722778e-05 -3165772924.7 +UniRef50_F0YT45 9.30648393263e-07 3.04541484263e-06 853757166.713 +UniRef50_S4YSN2 NAD transhydrogenase subunit alpha 3.47675440264e-07 2.82355334621e-07 -26370528.2159 +UniRef50_C3P7X7 3 dehydroquinate dehydratase 1.40149481772e-07 7.97302724206e-05 32131509311.0 +UniRef50_UPI00016B1721 pyrophosphatase, MutT nudix family protein 8.64472431158e-07 4.85697079988e-06 1611820584.92 +UniRef50_UPI0003B5F58F anthranilate synthase subunit I 3.37609441314e-07 3.46722114391e-07 3678897.94626 +UniRef50_Q4UV65 Lipid A export ATP binding permease protein MsbA 2.82857286653e-08 4.28928363009e-08 5897068.60186 +UniRef50_I0C7F8 Aminobenzoyl glutamate transport protein 0.00011505852907 2.55722850754e-05 -36126694820.3 +UniRef50_UPI00041D865E peptide ABC transporter permease 1.42774826121e-07 6.55129913751e-08 -31191550.7962 +UniRef50_Q1LNK1 1.90446807371e-07 1.99719684057e-07 3743574.10913 +UniRef50_A6LQM0 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 1.8596256697e-05 3.36863161818e-06 -6147579108.28 +UniRef50_A3PS70 YD repeat protein 0.000178464423983 3.94190970567e-05 -56134304758.1 +UniRef50_I6U2R2 2.82659351591e-05 1.13809634826e-05 -6816670267.71 +UniRef50_UPI00038092FF hypothetical protein 8.68289799064e-08 1.18108598478e-07 12627965.8614 +UniRef50_Q828X4 Putative cytochrome c oxidase subunit 1 beta 4.2835530908e-07 1.04455297438e-06 248766559.077 +UniRef50_T3I3Z9 Homocitrate synthase 2.3436273396e-06 3.93933040863e-05 14957409153.3 +UniRef50_Q3SFK0 Chromate transporter 8.47648178546e-07 6.81067727041e-05 27153333933.3 +UniRef50_U2BSH5 Glyoxalase family protein 6.98444338041e-07 3.73485901213e-07 -131189708.636 +UniRef50_G8RET5 D specific D 2 hydroxyacid dehydrogenase ddh like protein 0.000192881411404 8.85030533241e-05 -42138824023.4 +UniRef50_UPI00046F8D3D hypothetical protein, partial 1.71870560522e-07 5.44835496114e-07 150570521.293 +UniRef50_S5Z097 1.3772739649e-05 2.72600035571e-06 -4459704211.44 +UniRef50_UPI0002557980 hemolysin type calcium binding protein 1.6239079418e-08 4.02398115472e-08 9689390.08266 +UniRef50_X1M4K5 Marine sediment metagenome DNA, contig 1.91819905193e-06 0.000105954605861 42000774099.1 +UniRef50_K0NK11 MaoC domain protein dehydratase 4.40637162124e-06 4.25937555561e-06 -59344115.5394 +UniRef50_F0KIW4 1.01383882411e-06 7.29510827071e-05 29041948124.8 +UniRef50_UPI00036F6565 hypothetical protein 6.44861232762e-08 9.5556043908e-06 3831680913.72 +UniRef50_UPI0003735CF6 hypothetical protein 7.46106680375e-08 2.82210088947e-07 83810433.7523 +UniRef50_A7GPF0 40 residue YVTN family beta propeller repeat protein 6.10500934901e-08 5.95819283947e-06 2380748892.63 +UniRef50_Q9V150 Tryptophan synthase beta chain 2 3.83061466461e-05 5.71815498712e-05 7620231909.22 +UniRef50_UPI00047A278A hypothetical protein 1.14516141402e-06 1.04477878889e-07 -420136713.755 +UniRef50_I0C7M3 Transporter, drug metabolite exporter family 0.000115676540833 1.7248427924e-05 -39736637030.1 +UniRef50_A0A024HE97 Lon protease 2 7.08907774043e-06 6.51036257387e-06 -233634414.374 +UniRef50_B2V4S9 Elongation factor P 3.53485280728e-06 1.18438200682e-05 3354432045.73 +UniRef50_B7JB82 Bifunctional protein GlmU 4.25502632061e-08 6.87990841872e-08 10596971.1393 +UniRef50_Q49XB9 2.71001707394e-05 5.05559369371e-05 9469380648.63 +UniRef50_Q9JVD3 Ribonuclease 3 5.97440078609e-08 2.01162066148e-05 8097040074.88 +UniRef50_A4G9I7 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.78136611464e-06 0.000108084973648 42916070853.0 +UniRef50_B7UT13 1.64708801895e-07 3.46527359113e-06 1332478507.9 +UniRef50_UPI00016A620A SsrA binding protein, partial 1.08351431927e-06 5.80690553869e-06 1906890997.81 +UniRef50_P02906 Sulfate binding protein 2.69219432221e-05 6.53199635336e-06 -8231671763.68 +UniRef50_C1D8I2 DUF1376 domain containing protein 3.89975733757e-08 1.16332526839e-07 31221069.7197 +UniRef50_R7AXX0 1.30129559593e-07 4.33771551145e-05 17459354917.2 +UniRef50_X1YKE3 1.82972162046e-07 2.8474602299e-07 41087356.5688 +UniRef50_Q820K4 tRNA ) methyltransferase 9.34392744243e-08 4.83039032914e-05 19463155932.6 +UniRef50_L7WWS4 9.75176111395e-05 1.98692980585e-05 -31347576842.8 +UniRef50_D9STU2 Transcriptional antiterminator, BglG 4.0438159484e-06 1.13424131447e-05 2946533252.01 +UniRef50_UPI00047C795E hypothetical protein 3.19877229204e-07 7.42457073818e-07 170600668.909 +UniRef50_M9VJN7 Isochorismate synthetase, enterochelin 2.97419644424e-06 4.88981503896e-05 18540063758.0 +UniRef50_Q0I781 Membrane protein, putative 2.06330480711e-07 3.10989259013e-08 -70743129.0098 +UniRef50_A0A029LEA3 Prepilin type N terminal cleavage methylation domain protein 6.74082122953e-06 4.96063427586e-06 -718683318.547 +UniRef50_A6LVZ7 Ribose 5 phosphate isomerase A 3.27333484896e-06 5.74098971917e-05 21855594548.1 +UniRef50_A0A031J2A8 Conjugative relaxase domain containing protein 8.73801015494e-07 8.14698142777e-08 -319873828.928 +UniRef50_P77698 3.57416084623e-05 3.00319327654e-05 -2305066144.44 +UniRef50_B1FEG9 7.58562577622e-08 1.44612251227e-06 553193302.004 +UniRef50_A3PRL8 WD 40 repeat protein 2.1571385514e-05 8.94030959313e-06 -5099320350.0 +UniRef50_A7X1Y2 Homoserine kinase 0.000177115504993 3.28287360686e-05 -58250339212.4 +UniRef50_W4HHB0 Lipoprotein 2.95059924398e-07 2.57707069277e-07 -15079805.9834 +UniRef50_U5P9W8 Haloacid dehalogenase 5.16875808853e-05 6.44806941442e-05 5164736811.77 +UniRef50_R7PUA8 2.77105543127e-05 1.16995512095e-05 -6463838429.86 +UniRef50_P42454 Rubredoxin NAD reductase 9.61339530144e-07 8.91875489119e-05 35618003384.8 +UniRef50_Q46509 Aldehyde oxidoreductase 1.95527903808e-08 1.04484689719e-07 34288049.9944 +UniRef50_F8FKS7 YyzM 3.83291087711e-07 4.31317648386e-07 19388911.8967 +UniRef50_A1AHE9 2,3 bisphosphoglycerate independent phosphoglycerate mutase 4.74038978031e-05 9.93496555168e-05 20971139835.2 +UniRef50_UPI00032A0F3F PREDICTED 1.84358759547e-07 1.06604097327e-07 -31390511.2952 +UniRef50_B7MIX6 Thiazole synthase 3.60554367745e-05 7.98748159054e-06 -11331377940.3 +UniRef50_Q6MCC8 Leucine tRNA ligase 6.80970865623e-08 2.43997740574e-08 -17641141.2846 +UniRef50_G7U922 3.44965000067e-06 9.3852481019e-05 36496732249.6 +UniRef50_Q9HUG6 Putative lipopolysaccharide biosynthesis protein PA4999 9.23671013764e-06 4.4745209392e-06 -1922554218.04 +UniRef50_UPI0003957ECC PREDICTED 2.21134360022e-07 4.86451413621e-08 -69636014.2538 +UniRef50_Q00673 Probable NADH ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial 1.40622820891e-07 1.067456555e-07 -13676627.3879 +UniRef50_T7R7U1 Cardiolipin synthase 2 6.32740158944e-06 5.14282224196e-06 -478229219.001 +UniRef50_L8A918 Glucitol operon activator protein 1.67613653178e-07 3.91147953907e-06 1511444600.53 +UniRef50_R6GV45 Relaxase Mobilisation nuclease domain 1.31773661277e-07 1.40072476613e-07 3350333.58906 +UniRef50_UPI000467E284 transposase, partial 6.18360991507e-05 2.46476735922e-05 -15013423751.3 +UniRef50_W1MJT1 1.19302751488e-06 5.26959262801e-06 1645759361.25 +UniRef50_A3PPZ3 HNH endonuclease 1.70321982326e-05 6.04112608529e-06 -4437230701.49 +UniRef50_UPI0002485FE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 9.05170018724e-07 6.00337928758e-07 -123064455.43 +UniRef50_A4WUJ0 Membrane protein involved in aromatic hydrocarbon degradation 0.000143834913405 3.21030908671e-05 -45107507862.2 +UniRef50_G4LLE1 2.40948503526e-06 2.79921047585e-06 157336942.835 +UniRef50_D3E1F7 Glycyl radical enzyme activating protein 2.42993795847e-05 2.24575441206e-06 -8903319110.59 +UniRef50_I1ZNG1 2.8453717753e-06 9.96146410384e-06 2872853797.3 +UniRef50_W1S615 Transposase 2.23952286323e-07 5.84388035934e-07 145512335.162 +UniRef50_UPI0002BB9C7E hypothetical protein, partial 4.29745563515e-07 0.000207335782421 83530506101.8 +UniRef50_UPI0003630D50 hypothetical protein 6.25724804935e-07 4.18477321272e-06 1436831516.66 +UniRef50_UPI000372EB1D hypothetical protein 5.17999672013e-08 7.73057034385e-08 10296978.7095 +UniRef50_UPI0003C7B9A1 hypothetical protein 1.04853287353e-07 9.32691887922e-07 334208601.772 +UniRef50_K0N5S7 ATP dependent DNA helicase recG 4.85367531638e-05 1.92149056604e-05 -11837589656.7 +UniRef50_UPI000361113C hypothetical protein 1.84665459854e-07 1.25629740332e-07 -23833444.4208 +UniRef50_A1B0G9 Permease YjgP YjgQ family protein 4.5826395547e-05 2.55635345531e-05 -8180365636.5 +UniRef50_UPI0003704086 hypothetical protein 2.3059155659e-07 1.26316462061e-07 -42097135.2607 +UniRef50_D8MD39 Histidine triad protein 0.000235903287683 8.47823271214e-06 -91814285511.1 +UniRef50_A6KYZ4 2.82590521797e-07 7.98051071653e-05 32104215820.0 +UniRef50_C0PBW7 1.34018694272e-06 6.29077005151e-06 1998611151.5 +UniRef50_UPI00047AE4DE hypothetical protein 3.16455890568e-07 2.09721836894e-07 -43089847.2423 +UniRef50_UPI0003B51919 LysR family transcriptional regulator 2.10407545011e-07 3.5714977826e-07 59241640.2923 +UniRef50_UPI000362B9D7 hypothetical protein 2.5924171793e-07 1.77580499252e-07 -32967636.0761 +UniRef50_Q8CQE3 0.000188346667523 5.08187303468e-05 -55521715895.5 +UniRef50_A6VWE9 Hemolysin type calcium binding region 2.25830962632e-08 5.28616807798e-09 -6982982.16554 +UniRef50_G0DXM7 2.5679318969e-06 1.78078822592e-05 6152554976.48 +UniRef50_O75600 2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial 3.82283411204e-05 9.35963212015e-06 -11654652082.3 +UniRef50_Y5VS88 0.000201595997002 1.23048627164e-05 -76419153774.7 +UniRef50_Q8ZAW9 Sulfoxide reductase catalytic subunit YedY 5.26538135016e-05 1.64094774279e-05 -14632283241.0 +UniRef50_UPI0002B44272 PREDICTED 4.17696313465e-07 7.61169957825e-07 138664525.124 +UniRef50_I2FJ48 Type II R M system DNA modification enzyme 3.62036563254e-06 4.62002353444e-05 17190015916.5 +UniRef50_UPI00021A4B49 PREDICTED 1.47353047464e-07 1.11556483699e-07 -14451512.0652 +UniRef50_Z5X4K7 Peptide chain release factor 3 2.251193855e-07 4.76300227494e-07 101404788.249 +UniRef50_X5EDT3 Transcriptional regulator 1.16989459351e-06 1.81547154827e-06 260627338.757 +UniRef50_C7C6J2 2.40645211634e-06 1.22912768053e-07 -921892857.084 +UniRef50_R7Y8S1 Phenol hydroxylase 1.09257947678e-06 7.35711851151e-07 -144071839.725 +UniRef50_A6LPT1 Protein translocase subunit SecY 9.11801905478e-07 2.07757073798e-05 8019302397.51 +UniRef50_C5YXP4 3.00116684653e-07 4.61774897982e-07 65263404.4903 +UniRef50_W8G3Q0 RNA helicase 2.86709251694e-06 3.97078411985e-06 445573843.914 +UniRef50_UPI0004743A90 hypothetical protein, partial 2.3604179684e-07 1.59302789758e-06 547831940.961 +UniRef50_A7WY72 8.17496347434e-05 3.48899025683e-05 -18917848912.7 +UniRef50_UPI0004710467 membrane protein 1.02983807623e-07 1.50779122806e-07 19295555.2538 +UniRef50_Q3J0K0 PAS PAC sensor hybrid histidine kinase 3.99315220946e-07 6.2766568591e-07 92187884.8813 +UniRef50_Q0C161 Methionine tRNA ligase 7.05542363086e-05 1.97500707064e-05 -20510265090.8 +UniRef50_S4YUV8 ABC transporter 2.35855267876e-06 9.86755039602e-05 38884335174.2 +UniRef50_Q9RYR2 Extracellular solute binding protein, family 5 1.06094764695e-05 0.00224438113631 9.01801030538e+11 +UniRef50_Q57I24 Small heat shock protein IbpA 9.99406228507e-06 4.31119277652e-06 -2294244157.25 +UniRef50_A6M276 1.74492752936e-06 1.01238837568e-05 3382687450.37 +UniRef50_D3QC45 D 3 phosphoglycerate dehydrogenase 9.54437552519e-05 7.87562453815e-05 -6736952513.45 +UniRef50_D3E414 Thioredoxin disulfide reductase TrxB 2.65195827691e-05 9.77441371624e-06 -6760230232.99 +UniRef50_G2DRR8 1.12212809947e-07 8.98508127128e-08 -9027812.69601 +UniRef50_UPI000382579F hypothetical protein 3.50006607366e-07 1.60898216948e-06 508263883.791 +UniRef50_W4ANY2 Diadenosine tetraphosphatase 3.47891440653e-08 4.2650031749e-08 3173536.82185 +UniRef50_UPI000441FCBD PREDICTED 9.18104448428e-08 1.48384140238e-07 22839495.0684 +UniRef50_I6STV8 8.8878967274e-06 3.24926679388e-05 9529535801.16 +UniRef50_UPI0003167C65 hypothetical protein 5.05361426384e-08 2.9193153044e-07 97454280.3102 +UniRef50_UPI0002D70FB9 hypothetical protein 9.99291300444e-07 1.58275039623e-06 235549596.817 +UniRef50_Q9FNM5 Translation factor GUF1 homolog, chloroplastic 2.34051297385e-06 5.45133271958e-05 21062805333.8 +UniRef50_Q17ZB6 30S ribosomal protein S11 3.05244734926e-06 9.45013456618e-06 2582824837.92 +UniRef50_W5X7S1 FHA domain containing protein 1.88499303439e-08 5.72487607239e-06 2303592774.36 +UniRef50_Q06584 Pyocin S2 4.8432801628e-06 9.40499061074e-07 -1575600623.28 +UniRef50_P59339 Transcriptional regulatory protein DcuR 3.96153735527e-05 4.61432351874e-06 -14130353409.9 +UniRef50_M1N6P4 9.61804890904e-06 1.00229692073e-05 163471293.338 +UniRef50_R1FSG8 4.9203935164e-06 3.43391517665e-06 -600109546.898 +UniRef50_UPI0002DB7074 hypothetical protein 6.17747138994e-07 2.5498953495e-07 -146449696.289 +UniRef50_Q5HF39 Acetoin utilization protein AcuC 8.82286997334e-05 1.2707270887e-05 -30488927577.4 +UniRef50_E1VHW6 2.21644887336e-05 5.45891850939e-06 -6744243699.91 +UniRef50_UPI0002555FE2 cobalamin adenolsyltransferase cobinamide ATP dependent adenolsyltransferase 3.60711697531e-07 9.45321112419e-06 3670753596.06 +UniRef50_A6M1L4 Putative cell wall binding repeat containing protein 7.62295016662e-06 8.83768062641e-06 490401593.036 +UniRef50_UPI0003304489 50S ribosomal protein L21 2.04887761299e-06 5.12385842871e-07 -620300582.472 +UniRef50_UPI000470B9A7 hypothetical protein 1.65145844943e-06 1.33854160303e-06 -126328370.813 +UniRef50_Q5HHC0 Inactive signal peptidase IA 0.000146351372408 2.32630589915e-05 -49692262589.5 +UniRef50_UPI000225E6BE two component transcriptional regulator, winged helix family protein 1.10624387564e-06 3.37255606108e-07 -310450000.957 +UniRef50_UPI0002000266 preprotein translocase subunit SecF 1.16640169769e-06 2.55182945321e-06 559314186.014 +UniRef50_UPI00037E0BE4 hypothetical protein, partial 1.25982197285e-07 1.49323860013e-06 551978187.953 +UniRef50_P69789 Phosphotransferase enzyme IIB component GlvB 0.000122033296646 2.73594243939e-05 -38221004007.2 +UniRef50_UPI0002236A65 PREDICTED 8.78010452465e-08 1.78392596034e-07 36572920.7363 +UniRef50_W5X9J0 3 methyl 2 oxobutanoate hydroxymethyltransferase 5.38081106343e-08 9.66901326737e-08 17311998.5189 +UniRef50_C4WZ51 Sugar ABC transport system permease component 3.86602781633e-05 1.20447347645e-05 -10745021479.5 +UniRef50_G7M6K7 Phosphoglycerate mutase 2.06276496643e-06 6.74934090445e-05 26415153938.6 +UniRef50_U5MSL5 NADPH dependent FMN reductase 1.27460586271e-05 1.19011211164e-05 -341111641.619 +UniRef50_E1VM94 3.64134394391e-06 5.08378985802e-06 582333116.328 +UniRef50_M9VFH2 ABC transporter associated permease 1.99556703666e-06 5.08080667036e-05 19706205112.3 +UniRef50_UPI000350CE44 PREDICTED 2.08207074995e-07 4.75823740487e-07 108040131.885 +UniRef50_UPI00037A0BCD hypothetical protein 4.98511274778e-07 2.90609822392e-07 -83932367.5659 +UniRef50_UPI000366EF31 hypothetical protein 1.17229900425e-08 3.02941265129e-07 117568391.303 +UniRef50_UPI00035CAB47 phosphoribosylglycinamide synthetase 2.7887496877e-07 7.10194828436e-08 -83913810.342 +UniRef50_Q8A9V4 ATP synthase subunit beta 1.44847987138e-07 5.84272603368e-08 -34889107.9112 +UniRef50_Q8DNY1 1 acyl sn glycerol 3 phosphate acyltransferase 5.7831945315e-05 3.02372163657e-05 -11140330702.2 +UniRef50_Q8KG38 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 2.228931421e-07 4.07051787282e-07 74347104.9407 +UniRef50_L0GWW9 2.07934498478e-07 4.58425124139e-08 -65438523.8664 +UniRef50_X1R6D7 Marine sediment metagenome DNA, contig 1.10229011529e-07 2.28582736057e-07 47780850.9555 +UniRef50_UPI000288AE11 1 phosphofructokinase 8.25260328229e-08 9.14031768089e-08 3583811.96195 +UniRef50_B9DKC4 Haloacid dehalogenase like hydrolase family protein 0.000150043086498 4.63430995065e-05 -41864957290.6 +UniRef50_E2XJ48 1 acyl sn glycerol 3 phosphate acyltransferase 1.47134102421e-05 5.38897619392e-06 -3764388448.92 +UniRef50_Q92Q22 Serine tRNA ligase 7.32513781457e-06 1.1643139597e-05 1743230307.41 +UniRef50_M4VHL0 Glyoxalase family protein 8.61958004611e-08 1.93713087747e-07 43406048.2628 +UniRef50_UPI0001744949 GNAT family acetyltransferase 1.02167828602e-06 3.16920128224e-06 866981386.645 +UniRef50_UPI000329B94F 1.62682036952e-05 9.50796708307e-06 -2729190477.75 +UniRef50_UPI00037660D4 hypothetical protein 8.96495645163e-07 1.6214916189e-07 -296464686.742 +UniRef50_Q3AT37 Adenine phosphoribosyltransferase 4.61923597209e-07 2.82451985682e-05 11216449044.9 +UniRef50_K7S318 Proline dehydrogenase aldehyde dehydrogenase family protein 2.17994359766e-06 5.80806907749e-05 22567817614.7 +UniRef50_Q6ZTJ3 cDNA FLJ44595 fis, clone BLADE2004849 1.2091643331e-07 1.02773546884e-07 -7324505.88843 +UniRef50_A0A011PEW7 NAD specific glutamate dehydrogenase 1.00246760541e-06 6.34323547162e-07 -148624273.95 +UniRef50_A4WR24 IS66 Orf2 family protein 4.75439372512e-07 7.8644938945e-07 125558560.36 +UniRef50_Q1MR60 Glutamate tRNA ligase 1.28695657397e-07 7.04329953844e-08 -23521351.6177 +UniRef50_UPI000372FBE5 hypothetical protein 4.97414268974e-08 2.73130863481e-07 90185056.8456 +UniRef50_R7PTD3 Chlamydial polymorphic outer membrane protein repeat containing domain protein 2.69258271682e-05 1.92805360378e-05 -3086497847.61 +UniRef50_A6M0N3 Iron containing alcohol dehydrogenase 2.54807680966e-06 1.07140151355e-05 3296689509.47 +UniRef50_E4BLL0 1.35513936518e-06 6.7932281385e-07 -272835434.974 +UniRef50_Q034H8 Ribose 5 phosphate isomerase A 9.09402298277e-05 2.57807785393e-05 -26305670081.5 +UniRef50_P53607 L threonine dehydratase biosynthetic IlvA 4.09806198415e-08 2.59333444582e-07 88151714.8384 +UniRef50_A6LPD2 1.91617253221e-06 3.25716954257e-06 541376948.966 +UniRef50_G8AVE8 1.06699385904e-07 7.97499189639e-08 -10879830.5109 +UniRef50_Q75V35 8.11914200962e-06 5.01978491339e-06 -1251248493.14 +UniRef50_I6XYY5 Periplasmic binding protein 1.0490026975e-07 2.90578520179e-07 74960588.2265 +UniRef50_UPI00026286B5 ABC type sugar transport system, ATPase component 1.10288939619e-07 3.06366256846e-07 79158819.1038 +UniRef50_Q9AGG3 Rubrerythrin 1.94580406623e-06 0.000118817226393 47182427367.0 +UniRef50_T1YAJ7 Conserved membrane protein 0.000256686025569 7.89280131187e-05 -71763090962.2 +UniRef50_K0L607 Indigoidine systhesis protein 0.000140152343203 5.08321729657e-05 -36059648806.5 +UniRef50_Q9RVK7 ATP dependent zinc metalloprotease FtsH 2.01755112325e-06 0.000521394967435 2.09679036443e+11 +UniRef50_A3PHB5 Secretion protein HlyD family protein 0.000146666115421 3.79464817189e-05 -43891450265.4 +UniRef50_I1F0I8 4.43264007568e-07 9.97767456984e-06 3849158544.36 +UniRef50_B1M6B8 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 3.66994623591e-07 8.48792930964e-07 194507889.017 +UniRef50_T0W257 2.57376810578e-06 4.20236376757e-05 15926396449.7 +UniRef50_P02921 Melibiose carrier protein 8.33340156917e-06 3.60065131389e-06 -1910669355.43 +UniRef50_Q2CBB5 6.59289861935e-07 4.57086518367e-07 -81631971.1125 +UniRef50_A3M2F1 IcmB protein 3.47166758604e-07 0.000111191475114 44749207495.5 +UniRef50_Q0FPA9 6.86338161548e-06 3.38320794688e-06 -1404988816.55 +UniRef50_U5UJV7 Aminopeptidase PepS 0.000126981782461 4.30566177993e-05 -33881618851.5 +UniRef50_Q4L629 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 7.23699810416e-05 6.32406461821e-06 -26663546934.7 +UniRef50_F3U1Z6 9.52365178106e-06 6.67203396607e-06 -1151233105.2 +UniRef50_R0NVZ1 2.91120299886e-06 3.03406875011e-05 11073619491.2 +UniRef50_UPI00036593BA hypothetical protein 4.12917606974e-07 1.16043539108e-06 301782102.518 +UniRef50_W7VW27 1.25360097357e-07 8.61674282229e-07 297259072.024 +UniRef50_F7ZK72 6.65294073215e-07 2.72608722224e-07 -158531894.986 +UniRef50_B3PB28 Membrane protein, PerM family 1.20905144553e-05 1.42751526495e-05 881965247.524 +UniRef50_A4WNY6 ATP synthase subunit a 0.000172635590343 4.35651928708e-05 -52107303331.3 +UniRef50_UPI000376746B hypothetical protein 5.06398633312e-08 2.76758781362e-07 91286982.0003 +UniRef50_UPI00047040E8 hypothetical protein 7.02101346729e-08 5.23850836493e-07 183140318.122 +UniRef50_UPI0001850BCC bis tetraphosphatase PrpE 8.95183704161e-08 2.9806458431e-06 1167183638.84 +UniRef50_A1U0M3 Transposase, IS4 family 3.40882927822e-08 6.03320669062e-08 10594933.6612 +UniRef50_UPI00047D0A7B DNA methyltransferase 1.33275499648e-06 1.62424970458e-06 117679990.702 +UniRef50_Q9RSK3 Branched chain amino acid ABC transporter, permease protein 1.69529635709e-06 9.34793434431e-05 37054346125.5 +UniRef50_Q1AVI4 NADH quinone oxidoreductase subunit B 8.14984762497e-08 1.3693838263e-06 519935119.946 +UniRef50_Q2YUT9 8.32557777277e-05 1.51469847612e-05 -27496355509.5 +UniRef50_A8FEL7 Glycerol 3 phosphate dehydrogenase [NAD+] 1.65743093309e-07 4.5708646179e-06 1778401616.4 +UniRef50_Q9RS18 1.73158710486e-06 7.22106594778e-05 28453266392.4 +UniRef50_J9YPZ0 4.44453170174e-06 5.59074181959e-06 462739090.156 +UniRef50_B9DZV8 5.98119123326e-06 1.43691611792e-05 3386326399.14 +UniRef50_Q9RS17 2.21579796577e-06 0.000366633591274 1.47119935068e+11 +UniRef50_H8GVZ3 PPC, peptidase containing PKD repeats 7.83158733431e-08 1.10766770009e-05 4440173352.28 +UniRef50_B1WUS6 Glutathione S transferase 2.49990721098e-06 6.49842662101e-05 25225702497.2 +UniRef50_Q9NZB8 Molybdenum cofactor biosynthesis protein 1 2.37606010295e-08 9.35006550252e-08 28154915.6048 +UniRef50_U5MS35 5.0016346648e-06 7.87736682816e-06 1160968363.55 +UniRef50_Q9KCM5 Diaminopimelate decarboxylase 8.34887874333e-08 3.22446104942e-06 1268049046.23 +UniRef50_Q9RX22 Formamidopyrimidine DNA glycosylase 6.13949201586e-06 0.000241224530083 94906714685.5 +UniRef50_Q9L7R4 Putative sulfoquinovose importer 2.12078077617e-05 7.63193871103e-06 -5480744930.41 +UniRef50_E5G5K3 Putative conjugative transfer protein 1.38682181352e-07 1.58339775555e-07 7936012.00556 +UniRef50_Q1QCP2 tRNA 2 thiocytidine biosynthesis protein TtcA 2.42032345401e-06 1.88960662919e-05 6651459563.76 +UniRef50_Q4L842 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.000113959047079 1.52231337021e-05 -39860899856.2 +UniRef50_F9HIH2 Conserved domain protein 5.58631046687e-07 6.07512673153e-08 -201000176.604 +UniRef50_A0A011QZ11 5.69049313221e-09 8.23624520585e-07 330210004.062 +UniRef50_E2SFH7 1.13029677675e-06 4.20878914765e-06 1242825147.48 +UniRef50_A6UYI4 6 aminohexanoate dimer hydrolase 1.96448785151e-06 4.08998840153e-06 858090654.868 +UniRef50_P67082 UPF0001 protein YggS 2.51694113206e-05 2.98002080405e-06 -8958129245.99 +UniRef50_P37745 dTDP 4 dehydrorhamnose 3,5 epimerase 1.35245527309e-05 4.67199205858e-05 13401377356.0 +UniRef50_B9KLT3 3.07309099608e-05 1.01022344065e-05 -8328049463.59 +UniRef50_P26973 DNA topoisomerase 4 subunit A 3.05549731936e-06 2.79588378933e-06 -104809167.889 +UniRef50_UPI0003FC94D0 cysteinyl tRNA synthetase 3.92745545883e-08 1.01932268322e-07 25295687.9309 +UniRef50_UPI000470A448 hypothetical protein 5.88686375574e-08 1.59616944887e-06 620627202.328 +UniRef50_L5S037 ACT domain protein 1.04782384182e-06 1.33525992958e-05 4967588847.35 +UniRef50_UPI0003013AD2 hypothetical protein 1.51012460813e-07 2.93121179116e-07 57371033.449 +UniRef50_A6LV61 Histidine kinase 1.87882514284e-06 1.51914524908e-05 5374471024.7 +UniRef50_UPI0002E3E4A1 hypothetical protein 8.54528630764e-07 1.56453968895e-07 -281821307.336 +UniRef50_Q28VZ9 Shikimate dehydrogenase 9.60419361502e-07 8.25331412278e-07 -54536662.8173 +UniRef50_G7M2K6 Phosphoesterase, HXTX 2.14887659684e-06 1.02372921604e-05 3265392619.03 +UniRef50_D3UYE0 9.34630741609e-08 6.88077435364e-05 27740798241.6 +UniRef50_P0AB60 Lipopolysaccharide regulatory protein 2.88266801513e-05 7.95531318942e-06 -8426026962.99 +UniRef50_Q5HLQ3 Putative 3 methyladenine DNA glycosylase 6.31521739014e-05 1.60986108954e-05 -18996100797.7 +UniRef50_B9MQ93 Ribosomal RNA small subunit methyltransferase H 2.19554492941e-07 9.43642024745e-08 -50540856.5191 +UniRef50_UPI0003667B7C hypothetical protein 1.63784045111e-06 3.35909631657e-06 694892115.071 +UniRef50_UPI00047095B2 hypothetical protein 3.96904865814e-07 8.59422575513e-08 -125539420.896 +UniRef50_UPI0003189EE0 hypothetical protein 7.52531950173e-08 8.34012494952e-08 3289469.5806 +UniRef50_UPI00036C1384 hypothetical protein 8.60744518598e-07 1.43392030538e-06 231398098.782 +UniRef50_P47734 S glutathione dehydrogenase 7.09550053898e-08 0.000511591141552 2.06506976368e+11 +UniRef50_Q1IZT5 Oligopeptidase A 2.97772575356e-06 0.000382019092963 1.53023651303e+11 +UniRef50_P44742 4.9647723182e-05 9.05030485776e-05 16493796213.4 +UniRef50_A0A023S121 Cation transporter 1.17110441217e-06 5.88601975751e-05 23289794834.6 +UniRef50_UPI000477260F sulfite oxidase 1.18050150715e-07 2.12289600643e-07 38045622.384 +UniRef50_UPI00047DFE8E phosphoribosylaminoimidazole carboxylase 5.47024916228e-08 1.15648935703e-07 24604827.3721 +UniRef50_Q99J99 3 mercaptopyruvate sulfurtransferase 3.85318637964e-07 1.23930831582e-07 -105525465.025 +UniRef50_R9SLZ6 SAM dependent methyltransferase 2.34044764352e-05 2.22321233524e-06 -8551136240.51 +UniRef50_UPI00035E4699 hypothetical protein 1.39177235013e-07 3.81583415989e-07 97862349.9184 +UniRef50_C5ZSV0 Transcriptional regulator, LuxR family 1.49796027328e-06 1.73203169082e-05 6387679535.66 +UniRef50_E9G921 1.21774833618e-08 8.60145743281e-07 342335192.27 +UniRef50_V6Q9S0 0.000395163555086 0.000131467175661 -1.06457464292e+11 +UniRef50_G6DMD6 3.08258473899e-06 3.33924797446e-07 -1109667748.25 +UniRef50_UPI00046C8B78 hypothetical protein 3.86324313751e-07 2.97095777552e-06 1043448245.54 +UniRef50_UPI000476D6FD hypothetical protein 1.39505005493e-07 1.35071264644e-07 -1789955.58886 +UniRef50_UPI00035D082A hypothetical protein 5.72897374815e-08 2.94966096167e-07 95952862.618 +UniRef50_I3X451 4.8762730393e-07 2.1677387844e-07 -109346851.616 +UniRef50_C8VYT7 dTDP 4 dehydrorhamnose reductase 3.38181581552e-05 2.14675516122e-05 -4986091420.39 +UniRef50_K2J0W9 Cupin 3.08514691359e-06 1.48052931154e-06 -647803816.82 +UniRef50_UPI00034BFA99 hypothetical protein 5.53053643752e-07 7.15518069096e-07 65588882.1741 +UniRef50_UPI000350BCA6 PREDICTED 5.52223373927e-08 2.06376998464e-05 8309398745.79 +UniRef50_UPI00046D05B1 hypothetical protein 8.19920323476e-08 9.36854709526e-08 4720784.65947 +UniRef50_F3RDV1 Amino acid ABC transporter permease 8.15436775779e-06 5.42440417343e-05 18606966968.2 +UniRef50_UPI00037F5AC8 hypothetical protein 1.56087895639e-07 1.491240312e-07 -2811397.53025 +UniRef50_P45073 Lipopolysaccharide export system ATP binding protein LptB 4.33148914032e-05 1.99718365805e-05 -9423877683.42 +UniRef50_B9KSN1 8.6120016255e-05 3.82699833941e-06 -33222701181.4 +UniRef50_UPI000023CA35 hypothetical protein FG01684.1 4.8471439838e-09 1.26775090262e-08 3161214.457 +UniRef50_UPI0003ACFD99 hypothetical protein 9.75169014309e-07 3.35815546289e-07 -258114840.789 +UniRef50_P38036 CRISPR associated endonuclease helicase Cas3 2.52200016565e-05 9.33709121083e-06 -6412125852.16 +UniRef50_V5SXK1 Histidine kinase 1.49670514747e-06 1.60698750524e-06 44522341.1485 +UniRef50_C1EGE2 Predicted protein 2.96478676684e-07 7.51153078373e-08 -89367108.4375 +UniRef50_C6STX0 2.16928373759e-05 8.81542403566e-06 -5198769789.07 +UniRef50_UPI0003615DBA hypothetical protein 4.25434712329e-07 3.92108605423e-07 -13454158.3153 +UniRef50_D3QHK9 Glycerate kinase 0.000244992486178 6.0040213785e-05 -74667501984.7 +UniRef50_UPI0003B42182 DeoR family transcriptional regulator 1.09721850873e-07 1.19975695998e-07 4139603.10579 +UniRef50_I6U493 0.000260687080754 2.3778289647e-05 -95642986167.7 +UniRef50_K2KBP7 1.36452838754e-08 2.45095057125e-08 4386019.67463 +UniRef50_UPI00047AB8B0 high frequency lysogenization protein HflD 6.41019431396e-08 7.17850332245e-08 3101757.74939 +UniRef50_S5Y296 Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB 6.35899830222e-05 1.53919198301e-05 -19458149567.4 +UniRef50_P0ADU0 1.66235689929e-05 1.61934166987e-05 -173657759.731 +UniRef50_A0K2M1 Chromosome segregation ATPase 3.47974776446e-06 8.75851366357e-05 33954377576.5 +UniRef50_B7VQP3 NH dependent NAD(+) synthetase 1.56596828703e-07 2.04306344906e-07 19260917.1528 +UniRef50_K9P9J8 LysM repeat containing protein 3.67610835645e-07 2.72627421618e-07 -38345969.8203 +UniRef50_C4Z3J5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.000217274662798 6.03758633555e-05 -63341970699.9 +UniRef50_Q8R5T0 Glucosamine 6 phosphate deaminase 6.36972999405e-08 1.6543655634e-07 41073386.2893 +UniRef50_M3E127 Cation transport ATPase 1.09698263541e-06 1.65372475746e-07 -376102453.599 +UniRef50_K0SY54 2.37159856396e-07 1.98458041834e-07 -15624397.4634 +UniRef50_X5EXI6 9.11107363322e-06 2.23779524654e-06 -2774826829.31 +UniRef50_UPI0004643DB1 hypothetical protein 3.34123146079e-06 1.14206805968e-06 -887829251.798 +UniRef50_Q6D8D5 Outer membrane protein assembly factor BamA 1.36656872567e-05 8.63440062441e-06 -2031192154.29 +UniRef50_Q4L4Z3 3 oxoacyl [acyl carrier protein] synthase 3 7.59353037144e-05 9.50607340545e-06 -26818295454.0 +UniRef50_Q6FD06 1.26108904961e-06 6.77745921864e-05 26852317428.8 +UniRef50_Q5HRT0 Acetyltransferase, GNAT family 0.000373369972196 4.04780401371e-05 -1.34392558016e+11 +UniRef50_F4EG72 ABC type polar amino acid transport system, ATPase component 4.11955312168e-05 2.24005046027e-05 -7587782885.02 +UniRef50_UPI0002559D42 non specific serine threonine protein kinase 3.51381330707e-08 4.42407617322e-06 1771868145.13 +UniRef50_Q1IZL1 Glutamyl Q tRNA synthetase 7.42782831309e-08 4.25497156138e-06 1687797179.31 +UniRef50_UPI000470F3D8 hypothetical protein 1.50262562888e-07 4.2914682856e-07 112589000.347 +UniRef50_D5ANE3 3.23673981177e-06 6.76969056312e-07 -1033410865.9 +UniRef50_P0A9J7 Ribokinase 2.10078679337e-05 3.22750497486e-06 -7178150716.06 +UniRef50_M1LZF7 Transcriptional antiterminator 4.95929021099e-06 7.71205913753e-06 1111326595.92 +UniRef50_E0XU72 1.33456988552e-06 1.11740431165e-06 -87672407.0926 +UniRef50_P37443 4.86089344957e-05 1.43711638644e-05 -13822208148.5 +UniRef50_UPI00036CABD5 hypothetical protein 1.21622232756e-07 9.33585339199e-08 -11410402.0547 +UniRef50_B0V9N7 9.45290456222e-07 4.69445572516e-05 18570468479.8 +UniRef50_Q2GAK4 6.15627096257e-07 2.03465912603e-07 -166394527.628 +UniRef50_P55891 Motility protein A 1.37322593366e-05 8.24767182313e-06 -2214195282.65 +UniRef50_G8P8U5 Transporter 7.23046083601e-05 3.51244434113e-05 -15010088841.8 +UniRef50_G8LNB8 2.31745730627e-06 1.83221813758e-06 -195897006.954 +UniRef50_K0I6Y3 Tricarballylate dehydrogenase 7.12659891238e-06 5.92589504898e-05 21046470067.7 +UniRef50_B9MFW6 5 nucleotidase SurE 1.59053085188e-06 9.89988395348e-06 3354587814.34 +UniRef50_Q97JJ9 Germination protease 1.3089170066e-05 1.85094809295e-05 2188246010.29 +UniRef50_UPI0004710C19 hypothetical protein 2.95762252406e-07 1.1047200244e-07 -74803947.6783 +UniRef50_U0EEM2 1.3058071386e-07 4.85819789306e-07 143414374.031 +UniRef50_B9KX11 ABC branched chain amino acid transporter, inner membrane subunit 0.000126700902744 2.54854146672e-05 -40861934590.4 +UniRef50_Q8DUL1 7.47067521347e-06 1.0610181025e-05 1267457022.18 +UniRef50_A5UK96 1.52883265696e-05 6.36874212322e-06 -3600945696.61 +UniRef50_D8IV87 1,4 alpha glucan branching enzyme GlgB 4.12010222809e-06 2.82260087542e-06 -523817218.205 +UniRef50_D7BEZ9 ATP dependent DNA helicase RecG 4.93445737068e-07 0.000304549403388 1.2275112129e+11 +UniRef50_UPI00047DE858 ABC transporter ATPase 1.66654644852e-07 1.36103750377e-07 -12333771.0012 +UniRef50_D4DLY8 Primosomal protein N 5.17576767137e-07 4.38107830364e-05 17477998638.3 +UniRef50_UPI00047D2C54 DNA 3 methyladenine glycosylase 3.22053326685e-07 2.17002329181e-07 -42410376.8131 +UniRef50_B2ACV0 Putative glutathione dependent formaldehyde activating enzyme 5.73646791987e-05 1.12035727572e-05 -18635805130.9 +UniRef50_UPI00040EADB4 hypothetical protein 3.80798967031e-06 9.57838597129e-07 -1150640963.53 +UniRef50_X4ZHJ1 Methionine import ATP binding protein MetN 5.23055684959e-06 4.92009958595e-05 17751405806.3 +UniRef50_J7QS02 2.20650776349e-07 1.05298207211e-07 -46569247.6962 +UniRef50_UPI0003C0FD3F 2.20550207061e-07 4.5186868752e-08 -70796331.6255 +UniRef50_UPI00037837C4 hypothetical protein, partial 4.37943223119e-07 2.69912429616e-07 -67836093.3069 +UniRef50_UPI00035A0C3F PREDICTED 4.17016094433e-07 9.57450763253e-07 218180107.682 +UniRef50_B9KLU7 GCN5 related N acetyltransferase 5.11802537321e-05 3.65340253849e-06 -19187173046.9 +UniRef50_UPI00037510F3 hypothetical protein, partial 2.45519509095e-06 4.89475201976e-06 984879068.891 +UniRef50_Q5NYZ2 Nitrate proton symporter 3.49074629554e-06 6.2682038244e-06 1121293687.64 +UniRef50_S3BZ34 1.80368166228e-07 8.25891952738e-07 260605874.082 +UniRef50_S5XXA3 2.20036285277e-05 1.75333428801e-06 -8175292283.62 +UniRef50_M1N724 6.08125428094e-06 1.12402670773e-05 2082756774.1 +UniRef50_A0A022G4G2 LysR family transcriptional regulator 1.54507264034e-07 1.12377309394e-07 -17008379.6808 +UniRef50_UPI00026C800D sodium 4.89000157243e-08 6.50795470143e-08 6531875.32695 +UniRef50_V7EQ63 Ribonuclease E 2.67758359708e-05 3.24636333967e-06 -9499136840.27 +UniRef50_UPI0003C45913 PREDICTED 5.47608902606e-07 1.07714299774e-06 213779412.32 +UniRef50_A3PS91 0.000112434888451 2.64514244081e-05 -34712579569.9 +UniRef50_P22447 DNA gyrase subunit B 6.51699890487e-08 1.57828625218e-07 37407428.4709 +UniRef50_Q97K30 Probable M18 family aminopeptidase 1 4.93679508123e-06 1.85293951898e-05 5487499463.8 +UniRef50_B9MJR9 ATP phosphoribosyltransferase 1.37703672779e-07 4.46407116557e-07 124627368.47 +UniRef50_Q9JTQ0 Tryptophan tRNA ligase 2.15538909898e-07 9.2541790524e-06 3649009942.11 +UniRef50_E3GYA2 Phosphate uptake regulator, PhoU 2.76933240745e-05 1.07286780249e-05 -6848835789.84 +UniRef50_R7PS35 4.44101163361e-06 5.21147126817e-06 311044009.075 +UniRef50_UPI0003610FEF hypothetical protein 3.87068967488e-07 6.00610930389e-08 -132017091.753 +UniRef50_I9KTK5 Oligoendopeptidase F 7.87300823183e-05 1.67735282022e-05 -25012621189.1 +UniRef50_A6LWM9 Collagen triple helix repeat 6.60325344921e-07 2.00991470693e-06 544845786.767 +UniRef50_Q37383 NADH ubiquinone oxidoreductase subunit 9 8.77889723386e-08 1.41006136028e-07 21484422.0294 +UniRef50_A5UQY7 1.42638779632e-06 6.66460680616e-07 -306791901.964 +UniRef50_A1B5M1 5 nucleotidase SurE 1.64750955752e-06 3.69916540948e-06 828278644.085 +UniRef50_Q1R6G9 6.52851043194e-06 2.51964177045e-06 -1618429472.99 +UniRef50_P48596 GTP cyclohydrolase 1 3.2438361115e-07 5.07853277604e-07 74068955.7735 +UniRef50_UPI000464508F spermidine putrescine ABC transporter ATP binding protein 4.88906220308e-07 9.58505283096e-07 189582904.276 +UniRef50_UPI00047B2829 hypothetical protein 2.68694792578e-07 1.79602351349e-07 -35967711.8113 +UniRef50_A1B894 Protein HflC 1.58167437796e-05 6.97022966759e-06 -3571446305.95 +UniRef50_P59199 DNA polymerase I 7.42786197298e-05 5.37093494678e-05 -8304066818.1 +UniRef50_Q3JTX2 6.81300817105e-07 1.40071164521e-06 290434979.47 +UniRef50_A8LJI8 Purine nucleoside phosphorylase DeoD type 3.02773346334e-07 3.29039341415e-06 1206138883.6 +UniRef50_P52028 DNA polymerase I, thermostable 1.97336231941e-08 9.14825501075e-07 361359575.113 +UniRef50_UPI000262577A single stranded DNA binding protein 1.61365321897e-07 1.3353735878e-05 5325921882.09 +UniRef50_E4GKY2 Membrane alanyl aminopeptidase 1.10108142818e-06 6.00378608755e-05 23793501098.5 +UniRef50_Q6A780 Error prone DNA polymerase 2.00238704937e-06 4.59049506526e-05 17724003671.7 +UniRef50_D7CX24 Peptidase M20 8.46381140973e-07 0.000361286655965 1.45514162046e+11 +UniRef50_UPI0003694929 hypothetical protein 3.39362049457e-07 1.69781222573e-07 -68461860.8038 +UniRef50_UPI000255571F ABC transporter 1.1370858558e-06 5.98872240883e-08 -434878306.335 +UniRef50_A0A023VS51 1.53179704397e-07 2.0453904998e-07 20734398.0619 +UniRef50_UPI000255A6AD transcriptional regulator 1.88154993113e-05 9.4746350882e-06 -3771021512.16 +UniRef50_L0LNE1 SecY stabilizing membrane protein 0.000215461158202 6.49633466086e-05 -60757813355.9 +UniRef50_W1S564 Cupin 1.51641815833e-06 5.68258266711e-07 -382783783.477 +UniRef50_C7MNW3 Acyl CoA synthetase AMP acid ligase II 3.2397771704e-05 4.90080435177e-05 6705770562.15 +UniRef50_Q9KA05 Ribonuclease 3 7.48017508687e-05 3.50115034765e-05 -16063811153.5 +UniRef50_X1WZZ9 5.51181268383e-06 5.34402971215e-07 -2009441380.67 +UniRef50_UPI00014D324F ABC transporter permease 3.00452900777e-06 1.48352777391e-06 -614046862.893 +UniRef50_E8P8N2 Major facilitator superfamily permease 1.83067675657e-06 7.26249387333e-05 28580512303.3 +UniRef50_UPI0002E55EAF hypothetical protein 6.78022435433e-08 7.41652055421e-07 272041438.122 +UniRef50_A4FQ90 Xaa Pro dipeptidase 6.26325850433e-08 1.27870180243e-07 26337217.7374 +UniRef50_U7G8B2 Toxin PIN 4.25068467947e-07 2.19499344533e-06 714540432.79 +UniRef50_B2K316 tRNA methyltransferase 2 4.71833538305e-05 7.02208615786e-06 -16213596593.6 +UniRef50_M1MIQ5 9.03608936504e-06 1.21052071101e-05 1239040495.99 +UniRef50_F0YS51 Expressed protein 4.3023513216e-06 6.67801724293e-06 959085485.14 +UniRef50_D9RDU7 Glyoxalase bleomycin resistance protein dioxygenase superfamily protein 0.000176985158771 3.74676900778e-05 -56324914183.2 +UniRef50_Q3ILQ9 Siroheme synthase 3.65184047643e-07 3.07469632762e-07 -23300017.523 +UniRef50_D3F1T9 7.71446441153e-06 2.61676851705e-06 -2058002388.36 +UniRef50_Q28KF1 Acyl CoA dehydrogenase like protein 1.76935905105e-05 1.14316143943e-06 -6681611312.61 +UniRef50_D5RUB7 1.64442762717e-07 8.60733030521e-06 3408497306.78 +UniRef50_Q9K1R6 Glutamate tRNA ligase 8.35762336971e-07 3.78289945056e-05 14934621784.5 +UniRef50_R6YL47 1.95277663098e-07 2.53739644554e-06 945542093.5 +UniRef50_Q8NYY1 0.000224784443033 8.80158059737e-05 -55215177120.6 +UniRef50_Q88PE3 RND efflux membrane fusion protein related protein 1.23345153797e-05 6.11942019472e-06 -2509110193.97 +UniRef50_B5EZ88 LPS assembly lipoprotein LptE 2.72225826673e-05 3.72204800439e-05 4036273858.93 +UniRef50_UPI0004634C4E hypothetical protein 1.89458515494e-06 7.52161363492e-07 -461210503.725 +UniRef50_UPI0003827005 50S ribosomal protein L11 6.90908858546e-07 1.01745198954e-05 3828650152.57 +UniRef50_A1ADH3 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 3.16968178677e-05 6.89968208696e-06 -10010908009.7 +UniRef50_V2D6G8 Putative cation 3.54310242984e-07 1.20581675316e-06 343763627.318 +UniRef50_UPI00047D8F91 PTS cellobiose transporter subunit IIC 6.48030120811e-08 5.09985608212e-08 -5573026.37329 +UniRef50_D6A8A0 5.66129093464e-07 1.11080003284e-06 219890342.09 +UniRef50_D5AL25 Membrane protein, putative 5.0710157364e-07 3.3718462327e-06 1156532573.23 +UniRef50_A0KMY1 Dipeptide and tripeptide permease B 3.97534031014e-05 1.23196065224e-05 -11075360329.5 +UniRef50_UPI000476AB7B membrane protein 5.50970137325e-06 2.83228407808e-06 -1080906217.67 +UniRef50_A6QE85 Staphylococcal enterotoxin like toxin 0.00029258219362 2.98369980929e-05 -1.0607345968e+11 +UniRef50_D4HAK8 Protoporphyrinogen oxidase 1.92096331671e-06 6.68360246861e-05 26207006872.2 +UniRef50_Q8F0X6 Hydroxyethylthiazole kinase 6.92589543491e-08 1.02258733143e-07 13322415.6519 +UniRef50_UPI0001B434CE glyoxalase I 6.66976975332e-06 6.05890401675e-06 -246613994.019 +UniRef50_Q9RTU9 6.5922954574e-06 0.000302011951903 1.19264540514e+11 +UniRef50_Q9RTU8 3.19387789692e-06 0.000472635026843 1.8951915252e+11 +UniRef50_M1MCZ5 1.22359420713e-05 6.96507046023e-06 -2127915550.26 +UniRef50_S1H4E1 Outer membrane autotransporter barrel domain containing protein 1.40678008262e-06 1.57782745423e-06 69053922.9062 +UniRef50_UPI00035CEBAE hypothetical protein 1.4108831989e-08 2.35101470715e-08 3795426.26591 +UniRef50_Q4L869 PTS system lactose specific EIICB component 0.000299982705729 7.39260136927e-05 -91261860602.5 +UniRef50_D9V5U8 Predicted protein 1.69832787799e-07 1.49106118352e-07 -8367610.80059 +UniRef50_UPI0002892C39 acetoacetyl CoA synthetase 5.69353430165e-07 1.62510958225e-07 -164247298.441 +UniRef50_R9I899 7.5186695953e-08 1.19220511233e-07 17776991.5842 +UniRef50_UPI00023751B8 6 pyruvoyl tetrahydropterin synthase 8.40770262649e-06 1.05630511526e-05 870140649.091 +UniRef50_S5Y0M6 Transcriptional regulator, TetR family 2.69632849186e-06 9.47689460791e-06 2737397747.95 +UniRef50_A9AST0 Isopentenyl diphosphate Delta isomerase 6.17723908317e-07 1.47155827812e-07 -189974108.62 +UniRef50_Q04D22 Cys tRNA Cys tRNA(Cys) deacylase 1.47443843198e-05 5.36222606216e-05 15695475748.2 +UniRef50_J9P557 1.19836821857e-06 2.97798788237e-07 -363570930.255 +UniRef50_C5BV15 Mandelate racemase muconate lactonizing protein 7.22135272139e-05 1.90159585312e-05 -21476511284.8 +UniRef50_J3L617 1.89161651264e-07 3.38875665475e-07 60441384.7345 +UniRef50_D6SCW3 5.64069200778e-07 5.93064095273e-07 11705594.715 +UniRef50_I7EWS3 2.37970344177e-05 4.36182837952e-06 -7846231174.42 +UniRef50_Q8FH89 Pyridoxamine kinase 6.7198160392e-05 2.726190734e-05 -16122755430.0 +UniRef50_UPI00037451EF hypothetical protein 3.05083653787e-07 2.77842628282e-07 -10997536.2813 +UniRef50_Q9RRP9 3.75607949105e-06 0.000543968560736 2.18090407831e+11 +UniRef50_UPI0003767955 hypothetical protein, partial 3.11694750878e-07 6.5323383645e-07 137883520.001 +UniRef50_P44594 Queuine tRNA ribosyltransferase 0.000236153839526 0.000189804711445 -18711711774.1 +UniRef50_A9MN50 2.73767167473e-05 1.62702832326e-05 -4483803501.15 +UniRef50_UPI00036CE8A3 hypothetical protein 1.75948052325e-07 3.12444420656e-05 12542732286.5 +UniRef50_Q0VKZ2 Rubredoxin 2 1.85375071345e-06 3.05722509722e-07 -624957982.288 +UniRef50_A6LZX0 Methyl accepting chemotaxis sensory transducer 8.12419448737e-06 7.32775381417e-06 -321532873.197 +UniRef50_R9SHV3 NH dependent NAD(+) synthetase 4.48797927173e-05 8.10016271225e-06 -14848387969.8 +UniRef50_A6WJ89 PKHD type hydroxylase Shew185_0721 1.96986792966e-05 6.87744465717e-05 19812489476.3 +UniRef50_D4HAH8 GDSL like protein 2.49990721098e-06 2.06261328125e-05 7317779709.13 +UniRef50_R5U1M5 Glycoside hydrolase family 3 domain containing protein 5.50532298556e-06 2.37358158408e-05 7359873678.95 +UniRef50_A3PG26 2.96293505533e-05 1.14983791768e-06 -11497528733.9 +UniRef50_UPI0003B75FB1 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 4.3366368247e-08 1.45679627962e-07 41305118.4718 +UniRef50_UPI0004560989 hypothetical protein PFL1_01444 4.09437749366e-07 1.43155624938e-06 412641781.258 +UniRef50_Q9S2L4 Probable proline iminopeptidase 3.29486153056e-07 9.02977403485e-08 -96563297.3817 +UniRef50_UPI00016C0749 hypothetical protein 8.54750813356e-08 1.88119691482e-07 41438888.707 +UniRef50_I6ABZ2 Isrso9 transposase protein 4.82318570193e-07 7.65362096936e-08 -163819318.443 +UniRef50_T1Y9Z4 7.0353231279e-06 5.21147126817e-06 -736311376.952 +UniRef50_R6MIG6 4.14139361527e-06 9.93864223318e-06 2340420407.29 +UniRef50_UPI000348D44D hypothetical protein 1.16040801554e-07 7.31219936109e-08 -17326849.4396 +UniRef50_UPI000370B19E hypothetical protein, partial 5.5693747856e-07 1.68292008647e-07 -156900945.42 +UniRef50_A3MML4 Ribonuclease PH 4.33534068578e-07 1.3105145169e-07 -122115944.317 +UniRef50_Q6GJN1 0.000543144771585 0.000115744881537 -1.72546580399e+11 +UniRef50_P62448 Imidazole glycerol phosphate synthase subunit HisH 4.11468152794e-05 1.72175676057e-05 -9660530930.76 +UniRef50_J9P132 1.09968755837e-06 3.47542702579e-06 959115176.599 +UniRef50_Q8DS10 5.80935695515e-05 1.84491074961e-05 -16004955824.0 +UniRef50_E4SGD8 Natural resistance associated macrophage protein 9.99521594492e-07 6.75503587462e-06 2323571742.99 +UniRef50_UPI000473AE7C hypothetical protein, partial 3.61148972506e-07 2.75959125357e-06 968280581.06 +UniRef50_UPI000471B809 hypothetical protein 1.86680080947e-07 4.85345487407e-08 -55771046.5879 +UniRef50_B4RND3 Electron transfer flavoprotein ubiquinone oxidoreductase 1.4170233467e-06 9.24397152446e-05 36746977693.2 +UniRef50_A9KDE5 Phosphoenolpyruvate carboxykinase [ATP] 1.51117489766e-05 4.0202249454e-06 -4477784359.7 +UniRef50_M9VP93 PTS system, sucrose specific IIBC component 7.2733331189e-07 6.30008879507e-05 25140598190.1 +UniRef50_B4TR32 Ethanolamine ammonia lyase light chain 1.68857802146e-05 3.17247378427e-05 5990669288.95 +UniRef50_I1XWU0 Soluble lytic murein transglycosylase like protein 5.90744896513e-07 5.51085363816e-05 22009501431.1 +UniRef50_A5UMU4 Glycosyltransferase , GT1 family 2.23033983618e-05 5.28029326888e-06 -6872436422.99 +UniRef50_Q5F919 1.10862246227e-06 1.99375778595e-05 7601480351.12 +UniRef50_Q54VU7 Methionine aminopeptidase 1D, mitochondrial 7.63945019991e-07 2.35126934341e-07 -213490350.505 +UniRef50_G2I4C8 UTP glucose 1 phosphate uridylyltransferase 0.000137419941268 1.67822680893e-05 -48702909053.1 +UniRef50_L0WME5 N acetyl anhydromuranmyl L alanine amidase 2.0349771538e-05 6.65598561088e-05 18655578202.7 +UniRef50_UPI0004689B76 ABC transporter ATP binding protein 3.35251334848e-07 9.24389563274e-08 -98026336.8519 +UniRef50_Q03I89 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.000165194865636 7.16430489965e-05 -37768016387.3 +UniRef50_G0DVW8 GntR family transcriptional regulator 4.10310857448e-06 5.22564689838e-05 19440102505.4 +UniRef50_Q2L004 Glycerol 3 phosphate acyltransferase 8.18331650288e-08 3.18808162536e-05 12837639690.3 +UniRef50_UPI00044124E5 PH domain like protein, partial 1.95431732533e-07 2.92083179584e-07 39019375.2211 +UniRef50_F4DQW9 FAD dependent oxidoreductase 3.71345213544e-06 1.68752402972e-06 -817892037.213 +UniRef50_E6SMC9 AzlC family protein 2.67853063411e-07 1.21085813642e-07 -59251739.7684 +UniRef50_Q9LC43 TagG homolog 7.87595751274e-05 9.36013722495e-06 -28017404708.1 +UniRef50_Q59695 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 2.51114921091e-07 1.36313632669e-07 -46346688.9062 +UniRef50_O83540 V type ATP synthase beta chain 2 2.41820749037e-05 0.000450704226573 1.72192226644e+11 +UniRef50_Q04614 NADH ubiquinone oxidoreductase chain 4L 2.17196048097e-07 3.58298339582e-07 56964726.5923 +UniRef50_E7ACI0 Na+ H+ Antiporter 1.1005422415e-06 3.00221106742e-05 11675992083.8 +UniRef50_P37642 Inner membrane protein YhjD 2.18345002039e-05 2.54353396624e-05 1453703076.67 +UniRef50_F2IUQ0 Integrase, catalytic region 0.000139177360053 7.28791606601e-05 -26765396665.3 +UniRef50_UPI0003718EA8 5 keto 4 deoxyuronate isomerase 9.56121932094e-08 1.25785662059e-07 12181399.6447 +UniRef50_UPI00047E791A saccharopine dehydrogenase 6.14208627651e-07 5.31942761933e-06 1899554646.47 +UniRef50_S5XU55 Arsenate reductase 1.19914941797e-06 9.1203677162e-07 -115910898.6 +UniRef50_F0P418 ABC transporter, substrate binding protein 0.000225357777741 5.98221194518e-05 -66828776602.2 +UniRef50_R4KAP5 Ribulose phosphate 3 epimerase 5.36709936758e-06 2.69285749417e-06 -1079624260.93 +UniRef50_T2EFY2 Bacterial extracellular solute binding s, 3 family protein 5.9603050871e-06 3.90433225243e-05 13356020113.7 +UniRef50_UPI0001746A5A 2 dehydro 3 deoxyglucarate aldolase 2.20901928235e-07 3.66152152692e-07 58639298.034 +UniRef50_P9WQI2 Trehalose import ATP binding protein SugC 0.000291615498054 0.000140531174001 -60994595633.3 +UniRef50_Q89XW5 Tyrosine recombinase XerD 6.62748815921e-06 5.32080092299e-06 -527525672.118 +UniRef50_UPI00044166F3 Metallo dependent phosphatase 2.59504571842e-07 4.86404858712e-08 -85128419.0998 +UniRef50_U5WTC2 Magnesium transporter 5.55443345432e-06 5.31589410318e-05 19218523882.0 +UniRef50_A0A037Y901 Gluconate 8.03731700836e-07 7.00170306844e-05 27942258142.4 +UniRef50_Q02430 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase 1.85320264948e-05 4.28060392718e-06 -5753474175.16 +UniRef50_UPI0003B555DD iron ABC transporter ATP binding protein 1.59766218884e-07 1.17246730613e-07 -17165639.1878 +UniRef50_W8RSD6 LysR family transcriptional regulator 3.22927313917e-06 1.99988739417e-06 -496318111.516 +UniRef50_A6LS03 Glycoside hydrolase, family 46 2.89631193489e-06 1.5230976353e-05 4979655388.94 +UniRef50_P30844 Sensor protein BasS 3.1343595362e-05 1.04332382149e-05 -8441767779.22 +UniRef50_A4WYB5 1.78145644131e-06 2.8437823696e-06 428874013.456 +UniRef50_A4WYB3 7.25298054809e-07 1.6024142513e-06 354102571.95 +UniRef50_V5LN28 9.26659148588e-07 5.29706391776e-07 -160254699.083 +UniRef50_M7D8T2 Glycosyltransferase 5.16387043397e-05 2.71493269726e-05 -9886662161.55 +UniRef50_A3SEI8 Xanthine dehydrogenase accessory factor 6.69667893256e-08 1.00128444828e-07 13387767.2656 +UniRef50_J3LXD1 1.91701699445e-06 6.65242966635e-07 -505356536.026 +UniRef50_K2BFC0 2.62159904976e-05 2.42122003781e-06 -9606240829.29 +UniRef50_Q7D3Z9 Dihydrodipicolinate synthase 4.86270449281e-05 1.05972596199e-05 -15353091006.9 +UniRef50_A7FAX6 1.9525137354e-06 0.000140023685856 55741026509.1 +UniRef50_A7FAX1 3.10899245916e-06 9.45459576041e-05 36914224886.7 +UniRef50_A7FAX3 2.26067454316e-06 0.000114478702269 45303794863.0 +UniRef50_A4XW77 HAD superfamily hydrolase, subfamily IB 1.45377468432e-05 1.54078280971e-05 351262479.297 +UniRef50_E3D438 2.72405814481e-06 1.40473606342e-05 4571356167.52 +UniRef50_A7FAX8 4.56400243355e-06 0.000138130063006 53922257692.8 +UniRef50_I0ENV0 Outer membrane protein HofB 2.0860147467e-06 3.53483855602e-05 13428427272.6 +UniRef50_B1W4V9 NADH quinone oxidoreductase subunit B 2 8.21349711922e-08 2.30421867322e-06 897082458.543 +UniRef50_Q8DTF8 5.35184531923e-05 1.40477849407e-05 -15934793132.7 +UniRef50_Q8DTF4 3.72171021e-05 1.34916433814e-05 -9578258828.82 +UniRef50_UPI000360F750 hypothetical protein 1.78871073942e-06 3.30951658892e-07 -588515229.526 +UniRef50_N1SEI4 EamA like transporter family protein 3.33075872518e-06 1.46438035634e-05 4567215027.85 +UniRef50_B9KSS7 1.20220789427e-05 6.04744106207e-06 -2412034629.46 +UniRef50_C0Z6P5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 8.05338730149e-08 4.3383277394e-07 142631101.768 +UniRef50_Q54UH8 D 3 phosphoglycerate dehydrogenase 2.63276724327e-07 2.87333893377e-07 9712174.36015 +UniRef50_P71349 L serine dehydratase 6.87785283856e-06 0.000132816241494 50842872937.8 +UniRef50_V6KSS1 1.91443938763e-08 9.8439891594e-08 32012565.4938 +UniRef50_D4GZ01 DNA gyrase subunit B 2.2650161579e-07 3.37753445576e-07 44913728.8981 +UniRef50_D5HC82 DNA repair protein radA 0.000222028500405 8.20791815277e-05 -56499257401.9 +UniRef50_Q9RTR7 Glucose 1 phosphate adenylyltransferase 4.09671666293e-06 0.000457672966502 1.83114298067e+11 +UniRef50_Q3IY01 Conserved hypoothetical protein 1.32516083155e-05 6.00644146164e-06 -2924962767.1 +UniRef50_P19930 Hydrogenase 1 maturation protease 4.46969307827e-05 6.46678916486e-06 -15433977307.7 +UniRef50_B5GZL5 8.37078597283e-08 1.16362539126e-06 435975959.557 +UniRef50_F0YEL0 9.51325576245e-08 1.51416281297e-09 -37794894.8123 +UniRef50_O30085 Copper exporting P type ATPase B 4.46295039356e-08 1.88440613622e-07 58058309.741 +UniRef50_UPI0003A50805 translation initiation factor IF 3 7.41723003533e-08 6.25720752178e-07 222666878.262 +UniRef50_UPI00019B35BE hypothetical protein 6.79436043077e-08 1.27510649106e-07 24047946.9549 +UniRef50_P77455 Bifunctional protein PaaZ 3.32990917147e-05 0.000338927958422 1.23386123978e+11 +UniRef50_UPI0003814B4D hypothetical protein 2.31530886873e-07 5.7301398899e-07 137860918.794 +UniRef50_A6LQ13 Peptidase U32 7.37336957692e-06 1.24993852289e-05 2069435421.99 +UniRef50_S1MU41 3.54840489248e-08 5.93640071111e-08 9640632.15985 +UniRef50_UPI00036AC04F hypothetical protein 4.56719885131e-07 2.35673394042e-08 -174868998.089 +UniRef50_P57864 3.89180523647e-05 3.64407093129e-05 -1000133790.43 +UniRef50_UPI000361AD9C hypothetical protein 1.24232143742e-07 2.31865467043e-08 -40793347.4932 +UniRef50_UPI000469CEAC ribonucleotide diphosphate reductase subunit alpha, partial 1.39828623589e-07 9.45971654909e-05 38133586015.2 +UniRef50_Q3AMY6 Ribonuclease PH 1.3723587523e-07 1.9527613959e-07 23431566.9563 +UniRef50_W7ZFA7 Serine threonine phosphatase 4.73918615432e-08 3.18380167086e-07 109401304.348 +UniRef50_UPI00046D13E9 hypothetical protein 4.02090943482e-08 9.95106597632e-08 23940769.6701 +UniRef50_Q9HTD7 Aspartate ammonia lyase 8.44567942513e-06 5.0981405566e-05 17172194615.1 +UniRef50_P9WLT0 1.23765897988e-06 5.08568826974e-05 20031889511.1 +UniRef50_M4QWY4 Acyl CoA dehydrogenase 1.27672825993e-06 7.87025258794e-05 31257744620.4 +UniRef50_Q8NXN8 MW0677 protein 0.000102793538839 1.55810868787e-05 -35208737073.5 +UniRef50_P76613 3.34073913898e-05 1.36510033226e-06 -12935866103.0 +UniRef50_Q89WR0 Exodeoxyribonuclease III 0.000127234329472 2.65585597345e-05 -40644043673.9 +UniRef50_Q8DUL3 6.13286616598e-05 5.81903031313e-05 -1266993849.95 +UniRef50_A6LPZ2 Binding protein dependent transport systems inner membrane component 8.84366006203e-06 1.90942752185e-05 4138299127.87 +UniRef50_Q9RYC4 Methyltransferase, putative 7.71546010255e-06 0.000571315857243 2.2753239648e+11 +UniRef50_A9G3I5 Malate dehydrogenase (NADP(+)) 1.44475269083e-06 0.000669948974642 2.69883357871e+11 +UniRef50_Q3JPF1 2.64991597272e-07 1.16879962485e-06 364878391.705 +UniRef50_UPI0001B4442A hypothetical protein 4.76108207396e-07 8.39508034304e-07 146708969.54 +UniRef50_A6TDP3 Isopentenyl diphosphate Delta isomerase 6.22229651954e-06 3.24523851863e-06 -1201874847.58 +UniRef50_Q04K89 Phosphopantothenate cysteine ligase 4.51833879012e-05 1.71854821777e-05 -11303098113.5 +UniRef50_UPI0004778BF4 nickel transporter permease NikB 4.62725449699e-07 8.62853903544e-07 161536766.946 +UniRef50_B0KRB8 Ribosomal RNA small subunit methyltransferase G 7.82948668254e-07 2.84965044919e-07 -201042099.687 +UniRef50_B1QWY3 5.25629594426e-06 1.55481219115e-05 4154936437.87 +UniRef50_P65631 Membrane protein insertase YidC 1 4.18470916251e-05 2.23976116242e-05 -7851993748.32 +UniRef50_UPI0003B43DEF leucyl phenylalanyl tRNA protein transferase 1.00792661474e-07 3.34040703286e-07 94165096.7548 +UniRef50_B2UZ33 Phosphodiesterase, family 5.77784676811e-06 7.42157978635e-06 663595190.336 +UniRef50_Q8XBY4 Sensor kinase CusS 2.48220948872e-05 1.2502049496e-05 -4973753508.39 +UniRef50_E9AEM8 Proteophosphoglycan ppg4 1.21174796688e-07 2.50735879183e-07 52305398.8965 +UniRef50_W8EKH5 Fatty acid CoA ligase 8.89597774156e-07 5.95848275364e-05 23695984526.5 +UniRef50_UPI00036DBE7B hypothetical protein 6.57903534864e-08 2.92342138515e-06 1153660714.56 +UniRef50_D8JKA9 Homoserine dehydrogenase 3.82233208592e-06 4.99735234705e-05 18631802300.8 +UniRef50_UPI000367DF3F hypothetical protein 2.48405683576e-07 6.87286022487e-07 177181378.486 +UniRef50_UPI0003808AE5 hypothetical protein 8.08324761341e-08 2.29618747517e-07 60066843.5702 +UniRef50_UPI0003B5E6AE peptidase M24 3.89856407794e-08 1.50807185631e-07 45143729.8614 +UniRef50_UPI0003B421A5 heme ABC transporter ATP binding protein 5.81287411282e-07 5.79419619714e-07 -754050.376382 +UniRef50_UPI0003753359 hypothetical protein 1.61072015283e-07 3.42710038439e-08 -51191124.3413 +UniRef50_P0AB04 1.94950393666e-05 1.3505102435e-05 -2418211044.08 +UniRef50_UPI0002A4C202 5.55525589308e-07 2.72340887632e-07 -114325139.134 +UniRef50_UPI00036E9616 alpha L fucosidase 1.54419626849e-07 4.72784427132e-07 128527776.65 +UniRef50_A0A017Y7E3 2.9767910727e-07 4.46189247071e-07 59955365.862 +UniRef50_Q97FA7 2.97920703939e-06 2.12965617169e-05 7394940862.53 +UniRef50_A6LTV0 Fibronectin, type III domain protein 2.32107329756e-06 9.68568529317e-06 2973184236.58 +UniRef50_UPI000463D2BB oxidoreductase 5.61898751659e-08 1.72615614073e-07 47002499.5012 +UniRef50_UPI000219711C branched chain amino acid transporter II carrier protein 1.58941721423e-07 1.26151252564e-07 -13237914.6627 +UniRef50_K0S2S0 2.86793669097e-07 4.99802341001e-06 1901981259.7 +UniRef50_Q4L709 Porphobilinogen deaminase 7.87394947315e-05 1.23977484846e-05 -26782977064.6 +UniRef50_P45174 Sodium proline symporter 1.72509854048e-05 0.000132769626526 46636292993.7 +UniRef50_UPI0004294A5C hypothetical protein 2.3854643408e-07 1.61567506456e-06 555963727.393 +UniRef50_UPI0004730D89 hypothetical protein 5.97964782623e-07 5.05455149912e-08 -220999875.933 +UniRef50_K8Z2D7 1.3812899602e-07 2.46549338392e-07 43770622.6828 +UniRef50_P67446 Xanthine permease XanQ 3.79919491288e-05 2.21854695027e-05 -6381269792.37 +UniRef50_F3L0R4 UPF0246 protein YaaA 1.34689232179e-07 1.58400623849e-07 9572579.78868 +UniRef50_Q8XKT3 DegV domain containing protein CPE1310 4.54116200659e-06 8.90132602642e-06 1760251720.03 +UniRef50_UPI0003B581A8 taurine pyruvate aminotransferase 4.74853506028e-07 1.65980319741e-07 -124695895.604 +UniRef50_UPI0004766D5E malyl CoA thiolesterase 1.0122795894e-06 4.47789761493e-07 -227891470.595 +UniRef50_E3D1E7 2.85654843523e-06 1.26361117974e-05 3948129738.05 +UniRef50_UPI0004692352 peptide ABC transporter permease 5.40927499806e-08 2.43665928334e-07 76533018.4256 +UniRef50_W3PE26 DnaK domain protein 9.47651841946e-07 6.37123709624e-07 -125364017.627 +UniRef50_UPI000371AEC6 hypothetical protein, partial 3.70251797835e-07 2.14913216992e-07 -62712091.3051 +UniRef50_UPI000441DE45 PREDICTED 1.2652266455e-07 1.60395922604e-08 -44603372.0632 +UniRef50_M1MSX4 Phage infection protein Pip 4.82315278466e-06 1.28096311338e-05 3224239314.66 +UniRef50_G7L1M9 50S ribosomal protein L22 8.40541386484e-08 3.14240493409e-07 92929056.1212 +UniRef50_A8G2K7 5.66697337317e-06 2.94743438332e-05 9611327603.99 +UniRef50_V9U122 3.7836467757e-06 2.60790930809e-06 -474659643.595 +UniRef50_Q81WF1 Carbamoyl phosphate synthase small chain 3.36544305143e-06 2.44579174399e-05 8515290744.4 +UniRef50_Q64QH6 1.77190352826e-08 3.10012895916e-08 5362209.05613 +UniRef50_UPI0003722F98 hypothetical protein 3.11076713415e-08 5.97056521558e-08 11545355.7914 +UniRef50_V5VGJ6 Membrane fusion protein 8.51472155251e-07 6.11497234421e-05 24343143987.2 +UniRef50_R4REL3 Peptidase family M48 family 6.08546229884e-06 4.12069821193e-06 -793199372.252 +UniRef50_UPI0003B6D53E MarR family transcriptional regulator, partial 1.19401063788e-07 4.26634331797e-07 124033840.471 +UniRef50_UPI000371A422 hypothetical protein 1.49729190961e-06 3.76661214999e-07 -452412363.099 +UniRef50_A6LRF3 Transcriptional regulator, RpiR family 3.16507820176e-06 1.5608070061e-05 5023388506.24 +UniRef50_A1TJ24 Potassium transporting ATPase A chain 8.14353413742e-05 0.000122663514283 16644319329.9 +UniRef50_B9DNM2 Putative pyruvate, phosphate dikinase regulatory protein 0.000224430959464 4.0564575784e-05 -74229115385.9 diff -r 000000000000 -r 72633301cc0d test-data/output_row_proportion.tabular --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/output_row_proportion.tabular Fri Apr 15 08:42:40 2016 -0400 @@ -0,0 +1,44933 @@ +UniRef50_F0RML5 Peptidoglycan glycosyltransferase 0.00386577450886 0.5 0.496134225491 +UniRef50_D9SMK5 4Fe 4S ferredoxin iron sulfur binding domain containing protein 0.464203899745 0.5 0.0357961002553 +UniRef50_UPI000289C850 glutamine synthetase 0.133363069223 0.5 0.366636930777 +UniRef50_UPI0003344A46 PREDICTED 0.118720809541 0.5 0.381279190459 +UniRef50_A5MZ45 CheA2 0.0540372973378 0.499999999999 0.445962702663 +UniRef50_Q2LVL0 Lipid A export ATP binding permease protein MsbA 0.294798158882 0.5 0.205201841118 +UniRef50_P31134 Putrescine transport ATP binding protein PotG 1.04526999611 0.5 -0.545269996108 +UniRef50_T1T0E7 0.384059197389 0.5 0.115940802611 +UniRef50_B1ES30 0.314129307667 0.5 0.185870692333 +UniRef50_U5FV07 0.20613242332 0.5 0.29386757668 +UniRef50_UPI00037AE754 hypothetical protein 0.319560307808 0.5 0.180439692192 +UniRef50_E3EZF3 0.315916041574 0.5 0.184083958426 +UniRef50_UPI00040F4463 MULTISPECIES 0.3227921021 0.5 0.1772078979 +UniRef50_A6TTD6 Xanthine phosphoribosyltransferase 0.19638959661 0.5 0.30361040339 +UniRef50_UPI00047775E1 osmotically inducible protein C 0.111464957725 0.500000000001 0.388535042275 +UniRef50_UPI00035F4F82 hypothetical protein 0.323699799475 0.5 0.176300200525 +UniRef50_V6QDM9 6.76867423107 0.5 -6.26867423107 +UniRef50_UPI000366B462 hypothetical protein 0.873533073918 0.5 -0.373533073918 +UniRef50_UPI0003A50DF1 hypothetical protein 0.430834856093 0.5 0.0691651439074 +UniRef50_A7X4V0 ATP synthase subunit c 0.265408022029 0.5 0.234591977971 +UniRef50_A6M004 Signal transduction histidine kinase, nitrogen specific, NtrB 0.250003060438 0.5 0.249996939562 +UniRef50_Q6G4Z3 Ribosomal RNA large subunit methyltransferase E 1.19286708819 0.5 -0.69286708819 +UniRef50_UPI00031D9BC6 hypothetical protein 1.16172666163 0.5 -0.661726661632 +UniRef50_K6GJU3 Pyridoxal phosphate dependent protein 0.350069198246 0.5 0.149930801754 +UniRef50_UPI0004781473 ppGpp synthetase 0.620725233205 0.5 -0.120725233205 +UniRef50_A7MGX5 tRNA methyltransferase TrmJ 3.61966719065 0.500000000004 -3.11966719065 +UniRef50_Q4JXU5 Aminomethyltransferase 0.437424011589 0.5 0.0625759884114 +UniRef50_G3A3C4 0.220230004902 0.5 0.279769995098 +UniRef50_L7WPW4 Cation efflux family protein 1.51245750345 0.5 -1.01245750345 +UniRef50_Q4JXJ2 Cysteine tRNA ligase 0.601515270559 0.5 -0.101515270559 +UniRef50_C1KWN7 GTPase Der 0.979741619583 0.5 -0.479741619583 +UniRef50_UPI0002003BFB transcriptional regulator, partial 0.383630395593 0.5 0.116369604407 +UniRef50_A6M2Q1 M18 family aminopeptidase 0.0705255816293 0.5 0.429474418371 +UniRef50_UPI00037CE245 hypothetical protein 0.289803936522 0.5 0.210196063478 +UniRef50_Q8CTD2 2.37041952083 0.500000000001 -1.87041952083 +UniRef50_N6UZ26 0.530313768647 0.5 -0.0303137686473 +UniRef50_Q8CTD8 1.32615648824 0.5 -0.82615648824 +UniRef50_Q213B4 Aspartate racemase 0.827403347138 0.5 -0.327403347138 +UniRef50_S9QQA7 pH adaptation potassium efflux system a 0.518562881581 0.5 -0.0185628815814 +UniRef50_L8PMS9 Putative secreted protein 0.0361527287515 0.5 0.463847271248 +UniRef50_P0AFQ9 2.20805355123 0.499999999999 -1.70805355123 +UniRef50_UPI000366BC2B MULTISPECIES 0.334238597607 0.5 0.165761402393 +UniRef50_Q49VL4 0.696723900237 0.5 -0.196723900237 +UniRef50_Q9ZFS6 Exotoxin 3 1.82240637064 0.5 -1.32240637064 +UniRef50_Q49VL2 0.982835530227 0.5 -0.482835530227 +UniRef50_U4W1Q6 0.164375274598 0.5 0.335624725402 +UniRef50_A0A023Y807 0.41876291477 0.5 0.08123708523 +UniRef50_P39380 RNA 2 phosphotransferase 4.23045666373 0.5 -3.73045666373 +UniRef50_F6D690 Metallophosphoesterase 1.13839882925 0.5 -0.638398829254 +UniRef50_UPI0002558482 multidrug transporter 0.135068391826 0.500000000001 0.364931608174 +UniRef50_B0VT73 0.0291063464164 0.5 0.470893653584 +UniRef50_Q28UP9 Periplasmic sensor signal transduction histidine kinase 2.61993656962 0.499999999999 -2.11993656962 +UniRef50_UPI0003667138 hypothetical protein 0.0203917301731 0.500000000001 0.479608269826 +UniRef50_C6SR58 1.26724446402 0.5 -0.767244464023 +UniRef50_UPI000369C54D hypothetical protein 0.656516490885 0.5 -0.156516490885 +UniRef50_UPI00036B1698 hypothetical protein 0.0116686336891 0.5 0.488331366311 +UniRef50_UPI00046E1459 hypothetical protein 0.0147027725853 0.499999999999 0.485297227415 +UniRef50_I1ZLT1 Thiamine biosynthesis protein ApbE, putative 1.67152802175 0.5 -1.17152802175 +UniRef50_UPI0003B2E5CE quinone oxidoreductase 0.331555489346 0.5 0.168444510654 +UniRef50_Q1IC36 0.632549455323 0.5 -0.132549455323 +UniRef50_Q8RE57 Methionine tRNA ligase 0.276523304617 0.5 0.223476695383 +UniRef50_UPI0003620A0A hypothetical protein 0.230003490178 0.5 0.269996509822 +UniRef50_J3K6Q4 0.67229895784 0.5 -0.17229895784 +UniRef50_W8RQ92 Membrane protein 3.34411658047 0.5 -2.84411658047 +UniRef50_V4SQT0 0.148325028422 0.5 0.351674971578 +UniRef50_UPI000367FC54 hypothetical protein 0.334849854482 0.5 0.165150145518 +UniRef50_Q3JR57 0.432843299519 0.5 0.0671567004806 +UniRef50_Q6A6J6 UPF0336 protein PPA1896 0.00410668741949 0.5 0.495893312581 +UniRef50_UPI0002F2D647 hypothetical protein 1.43577572636 0.5 -0.935775726355 +UniRef50_UPI000344933C ABC transporter permease 0.042837926645 0.5 0.457162073355 +UniRef50_P55573 0.0295457612246 0.5 0.470454238776 +UniRef50_P77306 Inner membrane protein YqiK 2.5934713537 0.500000000002 -2.0934713537 +UniRef50_UPI0004659A64 hypothetical protein 0.921284026579 0.5 -0.421284026579 +UniRef50_A0R6E0 Trehalose synthase amylase TreS 0.00211849369635 0.5 0.497881506304 +UniRef50_Q1IZH7 Protein translocase subunit SecA 0.000603134777645 0.5 0.499396865223 +UniRef50_P77806 Methionine aminotransferase 3.89769450998 0.500000000003 -3.39769450998 +UniRef50_Q8CSN4 1.72291393206 0.5 -1.22291393206 +UniRef50_R7PW99 3.16631966946 0.500000000002 -2.66631966946 +UniRef50_B0SVK0 0.309858314819 0.5 0.190141685181 +UniRef50_UPI00047131A0 hypothetical protein, partial 0.746021595776 0.5 -0.246021595776 +UniRef50_W5ZFT8 Oxidoreductase, putative 0.298952425726 0.5 0.201047574274 +UniRef50_P76352 3.91489230047 0.500000000002 -3.41489230048 +UniRef50_UPI0003B4CE11 glycosyl hydrolase family 20 0.346552930286 0.5 0.153447069714 +UniRef50_P94364 Cytochrome bd ubiquinol oxidase subunit 1 0.0084562121975 0.500000000001 0.491543787802 +UniRef50_U9N986 0.292741633141 0.5 0.207258366859 +UniRef50_P76359 0.493005625741 0.5 0.00699437425881 +UniRef50_B7MDB8 Cobalamin synthase 3.5117233071 0.499999999999 -3.0117233071 +UniRef50_UPI0003B4027B MULTISPECIES 0.0708812756814 0.5 0.429118724319 +UniRef50_F5ZLB8 Transglycosylase protein 0.253522521522 0.5 0.246477478478 +UniRef50_I1EV25 0.0562919900421 0.5 0.443708009958 +UniRef50_Q1RJJ1 NADH quinone oxidoreductase subunit E 1.56194737583 0.5 -1.06194737583 +UniRef50_C1DH85 Deoxyribonuclease I 0.810239431672 0.5 -0.310239431672 +UniRef50_UPI0001CBBA36 PREDICTED 0.308091919664 0.5 0.191908080336 +UniRef50_Q9RRB5 Queuine tRNA ribosyltransferase 3.93317593097e-05 0.5 0.499960668241 +UniRef50_UPI0003B6BA24 GTPase Era 0.0877433576192 0.5 0.412256642381 +UniRef50_V7F7P6 8.04071253193 0.499999999993 -7.54071253192 +UniRef50_Q2G5F9 Hemimethylated DNA binding region protein 0.0467927593574 0.5 0.453207240643 +UniRef50_Q329H4 Phosphonate metabolism 0.830824068879 0.5 -0.330824068879 +UniRef50_UPI00036463CF hypothetical protein 0.223348357469 0.5 0.276651642531 +UniRef50_UPI000455DF56 2 isopropylmalate synthase 0.159607015105 0.5 0.340392984895 +UniRef50_D9SMY3 RNA polymerase sigma factor 0.944939988615 0.5 -0.444939988615 +UniRef50_P21865 Sensor protein KdpD 1.60577988723 0.5 -1.10577988723 +UniRef50_Q1GCD6 Flagellar fliL protein 2.94928610492 0.500000000001 -2.44928610492 +UniRef50_Q6MJ09 DNA directed RNA polymerase subunit beta 0.809337249525 0.5 -0.309337249525 +UniRef50_Q2FH43 4 hydroxy tetrahydrodipicolinate synthase 2.49450282603 0.500000000001 -1.99450282603 +UniRef50_D2JBF4 DNA recombination protein RmuC 1.52943039996 0.5 -1.02943039996 +UniRef50_Q03K16 4 hydroxy tetrahydrodipicolinate synthase 0.519948663252 0.5 -0.0199486632516 +UniRef50_UPI000475E634 leucine isoleucine valine transporter ATP binding subunit 0.00987571345707 0.5 0.490124286543 +UniRef50_X4Z848 Short chain dehydrogenase family protein 1.33159911137 0.5 -0.831599111372 +UniRef50_K0NAB4 Dehydrogenase 0.090498214481 0.5 0.409501785519 +UniRef50_Q58927 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.822857241888 0.5 -0.322857241888 +UniRef50_Q9RXT3 Phosphoribosylformylglycinamidine synthase 1 0.000213521867418 0.5 0.499786478132 +UniRef50_UPI000375A953 hypothetical protein 0.849439494695 0.5 -0.349439494695 +UniRef50_P45768 Inner membrane amino acid ABC transporter permease protein YhdY 0.718068229448 0.5 -0.218068229448 +UniRef50_Q9CFC2 CCA adding enzyme 0.911071568494 0.5 -0.411071568494 +UniRef50_D7WL32 0.111345843068 0.5 0.388654156932 +UniRef50_L1KE49 0.368135341802 0.5 0.131864658198 +UniRef50_Q45604 1.52495962197 0.5 -1.02495962197 +UniRef50_M1MVG4 Transcriptional regulator, AraC family 0.178949839652 0.5 0.321050160348 +UniRef50_R1HR76 0.228443129153 0.5 0.271556870847 +UniRef50_L0LIX3 0.365243094677 0.5 0.134756905323 +UniRef50_UPI00038168DE hypothetical protein 0.864268249399 0.5 -0.364268249399 +UniRef50_W7SZX8 0.336474814302 0.5 0.163525185698 +UniRef50_UPI0003716923 hypothetical protein 0.00624502115598 0.500000000001 0.493754978843 +UniRef50_F2DTP4 Predicted protein 2.00146124952 0.499999999999 -1.50146124952 +UniRef50_Q0SQN8 Mannose 1 phosphate guanylyltransferase 1.13501887889 0.5 -0.635018878885 +UniRef50_W0II99 C4 dicarboxylate ABC transporter permease 19.3498610237 0.499999999975 -18.8498610237 +UniRef50_UPI00024843D9 LysR family transcriptional regulator 0.145287361548 0.5 0.354712638453 +UniRef50_J7Q3B6 0.361184697244 0.5 0.138815302756 +UniRef50_I0C2L0 FatD 1.67856926481 0.500000000001 -1.17856926482 +UniRef50_UPI0003C17D4A 0.17780662678 0.5 0.32219337322 +UniRef50_UPI0001CB9AD0 PREDICTED 1.72754675539 0.500000000002 -1.22754675539 +UniRef50_W8BRR9 3.63380941256 0.499999999996 -3.13380941255 +UniRef50_P19480 Alkyl hydroperoxide reductase subunit F 0.525687833803 0.5 -0.0256878338033 +UniRef50_F0RMK3 Peptidase S54, rhomboid domain protein 0.00640460984893 0.5 0.493595390151 +UniRef50_F3U2Q5 7.25752775752 0.500000000003 -6.75752775753 +UniRef50_N6U5R6 1.27417036863 0.5 -0.774170368627 +UniRef50_R7D6K7 0.022632672552 0.5 0.477367327448 +UniRef50_F9EYP6 0.0277895455264 0.5 0.472210454474 +UniRef50_X3WVZ6 0.208686302048 0.5 0.291313697952 +UniRef50_A6LXH6 Na+ H+ antiporter 0.169157823685 0.5 0.330842176315 +UniRef50_Q5HGN0 Carbamoyl phosphate synthase small chain 0.860727209541 0.5 -0.360727209541 +UniRef50_P37454 Exodeoxyribonuclease 0.0485342675577 0.5 0.451465732442 +UniRef50_A0A059LAI1 0.100239405323 0.5 0.399760594677 +UniRef50_C3K6C6 1.01381670349 0.5 -0.51381670349 +UniRef50_H2DK93 Truncated internaline 1.16736621026 0.5 -0.667366210262 +UniRef50_A8I3Y9 NADH quinone oxidoreductase subunit C 0.132622499745 0.5 0.367377500255 +UniRef50_Q7UNC2 Imidazoleglycerol phosphate dehydratase 1.7423849238 0.5 -1.2423849238 +UniRef50_Q54HJ6 3.10386522793 0.500000000002 -2.60386522793 +UniRef50_A6LUV0 2 dehydropantoate 2 reductase 0.0556277870463 0.5 0.444372212954 +UniRef50_Q9RSM5 0.00363985828794 0.5 0.496360141712 +UniRef50_E8SFA5 Glycerophosphoryl diester phosphodiesterase 1.66939357637 0.500000000002 -1.16939357637 +UniRef50_B2ICY0 N acylglucosamine 2 epimerase 7.21410693663 0.499999999999 -6.71410693663 +UniRef50_B1LZZ2 Electron transfer flavoprotein alpha subunit 0.592212303349 0.5 -0.0922123033494 +UniRef50_I4SI86 Phenylacetate CoA ligase 3.41442394351 0.5 -2.91442394351 +UniRef50_Q57JH6 1.3122849131 0.5 -0.812284913104 +UniRef50_Q9L6Q3 Uroporphyrinogen III synthase 0.482337100159 0.5 0.0176628998415 +UniRef50_C8N6S7 Periplasmic binding protein 0.28564596733 0.5 0.21435403267 +UniRef50_UPI00035FDB03 hypothetical protein 0.292637745 0.5 0.207362255 +UniRef50_UPI000262CF7A proline iminopeptidase 0.278759800793 0.5 0.221240199207 +UniRef50_Q9RXD5 Outer membrane protein 0.000702326654316 0.5 0.499297673345 +UniRef50_K1YE78 0.319560307809 0.5 0.180439692191 +UniRef50_S5YEK4 Transcriptional regulator, GntR family 6.85252398557 0.500000000003 -6.35252398558 +UniRef50_Q4L460 Teichoic acid translocation permease protein 1.2355705897 0.5 -0.735570589703 +UniRef50_I7DPX0 0.161580759812 0.5 0.338419240188 +UniRef50_P52135 0.709064002897 0.5 -0.209064002897 +UniRef50_Q3IV29 Two component transcriptional regulator, LuxR family 5.73076728794 0.500000000006 -5.23076728794 +UniRef50_P52131 3.20440954355 0.500000000001 -2.70440954355 +UniRef50_D3DZN3 Heavy metal translocating P type ATPase 0.921520767368 0.5 -0.421520767368 +UniRef50_P52133 5.46749120005 0.5 -4.96749120005 +UniRef50_A0A023S217 0.0265805572952 0.5 0.473419442705 +UniRef50_P52139 5.48441232177 0.499999999998 -4.98441232177 +UniRef50_P52138 0.826351047249 0.5 -0.326351047249 +UniRef50_J7RFM5 Tpr protein 0.602643256332 0.5 -0.102643256332 +UniRef50_B3PWI5 Imidazoleglycerol phosphate dehydratase 2.74181357666 0.500000000001 -2.24181357666 +UniRef50_W8ZDB9 0.143534359636 0.5 0.356465640364 +UniRef50_B7N578 Protein Ves 0.224725807516 0.5 0.275274192484 +UniRef50_UPI00047CFF00 hypothetical protein 0.0966870993346 0.5 0.403312900665 +UniRef50_UPI00046CDEFF transposase 1.35022640883 0.5 -0.850226408835 +UniRef50_Q8CRI9 50S ribosomal protein L13 2.38110252949 0.5 -1.88110252949 +UniRef50_A6LYQ3 0.10188836482 0.5 0.39811163518 +UniRef50_UPI0002EBAF2D hypothetical protein 0.794541015069 0.5 -0.294541015069 +UniRef50_UPI0003750B35 hypothetical protein 2.19029822572 0.5 -1.69029822572 +UniRef50_A1B1I9 2.34720777447 0.5 -1.84720777447 +UniRef50_UPI00047BF436 histidine ammonia lyase, partial 0.156213144854 0.5 0.343786855146 +UniRef50_P96589 1.38618923554 0.5 -0.886189235539 +UniRef50_P85097 Respiratory nitrate reductase alpha chain 0.109330998615 0.500000000001 0.390669001384 +UniRef50_J2K6A4 6 pyruvoyl tetrahydropterin synthase 0.0322272409688 0.5 0.467772759031 +UniRef50_A0ZZF7 L asparaginase I 0.0108308521114 0.5 0.489169147888 +UniRef50_X7Z663 PE PGRS family protein 0.0619849782743 0.5 0.438015021726 +UniRef50_V8H036 0.996253819102 0.5 -0.496253819102 +UniRef50_C1CXX6 Non canonical purine NTP pyrophosphatase 0.000890968414983 0.5 0.499109031585 +UniRef50_UPI0004776B86 hypothetical protein 0.34858496767 0.5 0.15141503233 +UniRef50_A6LU83 1 acyl sn glycerol 3 phosphate acyltransferase 0.125715912769 0.5 0.374284087231 +UniRef50_V5SGX2 C4 dicarboxylate ABC transporter 0.201266262414 0.5 0.298733737587 +UniRef50_Q8CTD3 5.44360544904 0.499999999998 -4.94360544904 +UniRef50_Q8CP66 Heptaprenyl diphosphate syntase component II 1.48242777551 0.500000000001 -0.982427775508 +UniRef50_UPI00046D37AA N succinylarginine dihydrolase 0.151508093329 0.5 0.348491906671 +UniRef50_Q2RM79 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.541320523527 0.5 -0.0413205235272 +UniRef50_UPI000367B671 hypothetical protein 0.0719049322996 0.5 0.4280950677 +UniRef50_L0A0T1 Putative phosphatase, C terminal domain of histone macro H2A1 like protein 0.0215851446461 0.5 0.478414855354 +UniRef50_Q6ABS5 Formate tetrahydrofolate ligase 0.053382164296 0.5 0.446617835704 +UniRef50_UPI0003C1A241 PREDICTED 12.2049311476 0.500000000001 -11.7049311476 +UniRef50_A9KJR8 Urease accessory protein UreE 3.7112314665 0.5 -3.2112314665 +UniRef50_P25605 Acetolactate synthase small subunit, mitochondrial 0.0772628247574 0.5 0.422737175242 +UniRef50_UPI00036577C7 hypothetical protein 3.37579817184 0.499999999999 -2.87579817184 +UniRef50_A6LSZ9 0.144070959199 0.5 0.355929040801 +UniRef50_A3W226 5.13656454895 0.500000000001 -4.63656454895 +UniRef50_A6LSZ0 0.194372001604 0.5 0.305627998396 +UniRef50_A3W220 0.652884513613 0.5 -0.152884513613 +UniRef50_E6DRN3 0.253590167738 0.5 0.246409832262 +UniRef50_P80876 General stress protein 18 0.7236038244 0.5 -0.2236038244 +UniRef50_O32135 UPF0759 protein YunF 0.130863921295 0.5 0.369136078705 +UniRef50_UPI00046D55BC nitrate transporter 0.197261951298 0.5 0.302738048702 +UniRef50_J2MVR4 0.0980548190052 0.5 0.401945180995 +UniRef50_UPI00016C4574 Catalase, partial 0.171693955288 0.5 0.328306044712 +UniRef50_UPI0003682E3B hypothetical protein 0.846362797446 0.5 -0.346362797446 +UniRef50_P06846 HTH type transcriptional regulator EbgR 6.19764156922 0.500000000006 -5.69764156923 +UniRef50_Q8G7I0 Ribonuclease PH 0.00389016248553 0.5 0.496109837515 +UniRef50_UPI0003767C06 hypothetical protein 2.61083004117 0.499999999998 -2.11083004116 +UniRef50_L1NJN4 0.139051154559 0.5 0.360948845441 +UniRef50_F0MTL8 Carbonate dehydratase 0.31704020626 0.5 0.18295979374 +UniRef50_UPI000376F581 hypothetical protein 0.334238597667 0.5 0.165761402333 +UniRef50_P36556 Transcriptional regulatory protein BasR 1.28854819325 0.5 -0.788548193245 +UniRef50_UPI0004650D3F iron ABC transporter permease 0.339371786231 0.5 0.160628213769 +UniRef50_W4U8H5 TsaD Kae1 Qri7 protein 0.0715488331476 0.5 0.428451166852 +UniRef50_UPI0003D768D4 PREDICTED 0.225802715372 0.5 0.274197284628 +UniRef50_D3QH01 Branched chain amino acid permease 1.23636412991 0.5 -0.73636412991 +UniRef50_A9M387 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.0218638734306 0.5 0.47813612657 +UniRef50_UPI00037FC5AF hypothetical protein 0.0664234489372 0.5 0.433576551063 +UniRef50_P29013 0.862305725168 0.5 -0.362305725168 +UniRef50_Q1GJ00 Aminodeoxychorismate synthase, subunit I 2.52452501367 0.5 -2.02452501367 +UniRef50_Q83Q93 Biosynthetic arginine decarboxylase 0.349078004477 0.5 0.150921995523 +UniRef50_UPI00038015E1 hypothetical protein 0.22333581923 0.5 0.27666418077 +UniRef50_Q4L4Q7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 4.44712295637 0.500000000006 -3.94712295638 +UniRef50_Q1GI12 Sarcosine oxidase alpha subunit family 1.56305875629 0.5 -1.06305875629 +UniRef50_UPI0003B6C2BF inosine uridine preferring nucleoside hydrolase 0.117543893765 0.5 0.382456106235 +UniRef50_A6VCM9 Oxidoreductase, FAD binding 0.5624225335 0.5 -0.0624225335004 +UniRef50_UPI0003B30607 transcriptional regulator 0.163845913771 0.5 0.336154086229 +UniRef50_B9KPI4 2.34303263209 0.5 -1.84303263209 +UniRef50_P52616 Phase 2 flagellin 1.47325617282 0.5 -0.973256172823 +UniRef50_J9P338 0.200341588151 0.5 0.299658411849 +UniRef50_Q2P0J5 Thiazole synthase 0.152724194118 0.5 0.347275805882 +UniRef50_F8JVM5 LigA 1.33591002232 0.5 -0.835910022318 +UniRef50_P65769 Polyphosphate kinase 0.00938557819906 0.5 0.490614421801 +UniRef50_B2TS76 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 0.113178189258 0.5 0.386821810742 +UniRef50_R6KLR0 Polysaccharide deacetylase 0.0321285961636 0.5 0.467871403837 +UniRef50_M9VL85 0.0560520659474 0.5 0.443947934053 +UniRef50_M2BGU5 0.043650931449 0.5 0.456349068551 +UniRef50_UPI0004726713 2 hydroxychromene 2 carboxylate isomerase 0.630971149409 0.5 -0.130971149409 +UniRef50_B4SQ60 DoxX family protein 1.2663359613 0.5 -0.766335961303 +UniRef50_Q0I3Q6 Glutamyl tRNA reductase 0.26524578693 0.5 0.23475421307 +UniRef50_A0A023NRD3 4.18291656059 0.5 -3.68291656059 +UniRef50_B6I2P2 Phosphoglycerol transferase I 2.48657538624 0.500000000002 -1.98657538624 +UniRef50_Q9KCT8 NADPH dehydrogenase 0.600085058541 0.5 -0.100085058541 +UniRef50_A1T1H6 0.168303007481 0.5 0.331696992519 +UniRef50_R7UXT3 0.211751531157 0.5 0.288248468843 +UniRef50_A6LZQ9 0.319560307807 0.5 0.180439692193 +UniRef50_UPI000370658C hypothetical protein 0.419549711972 0.5 0.0804502880279 +UniRef50_A6LZQ3 0.240773956436 0.5 0.259226043564 +UniRef50_UPI00037BAE23 mutator mutT protein, partial 5.14799978872 0.500000000001 -4.64799978872 +UniRef50_Q1JUQ1 L arabonate dehydratase 0.00673329838173 0.500000000001 0.493266701617 +UniRef50_E9KNS2 Crp family transcriptional regulator 0.958047147476 0.5 -0.458047147476 +UniRef50_UPI000384168E PREDICTED 1.34981536418 0.5 -0.849815364182 +UniRef50_L7WTA8 LysM domain containing protein 0.9382763126 0.5 -0.4382763126 +UniRef50_Q6LUK6 Carbamoyl phosphate synthase small chain 1.50839566268 0.5 -1.00839566268 +UniRef50_Q8CNU4 Proline dehydrohenase like protein 1.31201968159 0.5 -0.812019681589 +UniRef50_A4WXA3 1.88849303613 0.5 -1.38849303613 +UniRef50_UPI0004418811 PREDICTED 0.00662319484359 0.5 0.493376805156 +UniRef50_U2JRM5 6.68681135089 0.500000000001 -6.18681135089 +UniRef50_Q9KNM9 K H(+) antiporter NhaP2 1.71020148848 0.499999999998 -1.21020148848 +UniRef50_Q9KX08 Putative ribosome biogenesis GTPase RsgA 2.5808816872 0.500000000002 -2.0808816872 +UniRef50_Q18A91 DNA polymerase IV 0.229634373364 0.5 0.270365626636 +UniRef50_B3W6P3 Divalent metal cation transporter MntH 0.4925758875 0.5 0.00742411249996 +UniRef50_D4HBR1 Mannose 6 phosphate isomerase, class I 0.059796093985 0.5 0.440203906015 +UniRef50_M1XIG8 SCCmec staphylococcal cassette region, isolate CMFT535 4.91162686488 0.500000000002 -4.41162686489 +UniRef50_R6CBZ9 0.604042521168 0.5 -0.104042521168 +UniRef50_P17815 Malate synthase, glyoxysomal 0.000106043224526 0.5 0.499893956776 +UniRef50_P23105 2 hydroxymuconic semialdehyde dehydrogenase 0.129994054948 0.5 0.370005945052 +UniRef50_B5EXV0 Uridine kinase 0.9063720903 0.5 -0.4063720903 +UniRef50_Q4K681 Spermidine putrescine import ATP binding protein PotA 0.882422918028 0.5 -0.382422918028 +UniRef50_W0BHE5 ABC type transport system involved in Fe S cluster assembly, ATPase component 0.0420415221197 0.5 0.45795847788 +UniRef50_B7GXR8 0.0253689714786 0.5 0.474631028521 +UniRef50_E0TNV6 Gp34 1.88731555074 0.5 -1.38731555074 +UniRef50_M7RDL9 0.217998080815 0.5 0.282001919185 +UniRef50_Q1IVV5 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.000892435651545 0.5 0.499107564348 +UniRef50_O27661 DNA topoisomerase 1 0.979342843898 0.5 -0.479342843898 +UniRef50_Q37371 NADH ubiquinone oxidoreductase chain 6 4.05213027805 0.500000000001 -3.55213027805 +UniRef50_B7I2D1 Glycerophosphoryl diester phosphodiesterase 0.00745354366743 0.5 0.492546456333 +UniRef50_D8U6B8 0.160689132242 0.5 0.339310867758 +UniRef50_A0A022GZQ6 LacI family transcriptional regulator 1.62934058423 0.5 -1.12934058423 +UniRef50_UPI000471138D hypothetical protein 0.580858788576 0.5 -0.0808587885755 +UniRef50_M4ZMN9 Gas vesicle structural protein 0.0343860574846 0.5 0.465613942515 +UniRef50_Q11DH5 Holliday junction ATP dependent DNA helicase RuvA 1.11398465836 0.5 -0.613984658361 +UniRef50_F5ZH83 Phosphohydrolase 0.479225504728 0.5 0.0207744952725 +UniRef50_O66976 Histidinol dehydrogenase 0.0409854700961 0.5 0.459014529904 +UniRef50_A7GJ81 DNA directed RNA polymerase subunit beta 0.151940012012 0.5 0.348059987988 +UniRef50_R7HT16 0.320062731247 0.5 0.179937268753 +UniRef50_A0A024H9M2 HTH type transcriptional regulator HexR 1.05562870652 0.5 -0.555628706516 +UniRef50_UPI00036B500B hypothetical protein, partial 1.60827963774 0.5 -1.10827963774 +UniRef50_F6D5Z8 ABC type transporter, periplasmic subunit 2.71357512206 0.500000000002 -2.21357512206 +UniRef50_Q6FEG1 Kinase sensor component of a two component signal transduction system 0.0217172247859 0.5 0.478282775214 +UniRef50_Q7MN25 Methionine import ATP binding protein MetN 0.91610449574 0.5 -0.41610449574 +UniRef50_UPI00047C1764 hydrogenase maturation protease 0.170187720333 0.5 0.329812279666 +UniRef50_E1PW93 Transposase B 0.0028342056325 0.5 0.497165794367 +UniRef50_F0RJQ2 3 mercaptopyruvate sulfurtransferase 0.158472174686 0.5 0.341527825314 +UniRef50_P00887 Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive 0.620714997006 0.5 -0.120714997006 +UniRef50_G7ZT27 0.302981437725 0.5 0.197018562275 +UniRef50_Q9M315 3 methyl 2 oxobutanoate hydroxymethyltransferase 2, mitochondrial 0.86270004433 0.5 -0.36270004433 +UniRef50_Q46106 Ferritin 0.0277632589029 0.500000000001 0.472236741096 +UniRef50_P10996 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.131516128823 0.5 0.368483871177 +UniRef50_X5DZU0 NAD dependent epimerase dehydratase family protein 2.46818408823 0.500000000003 -1.96818408823 +UniRef50_G7V8Z9 0.68446457401 0.5 -0.18446457401 +UniRef50_B2TN34 0.140872080533 0.5 0.359127919467 +UniRef50_Q4L6M0 DNA repair protein RecN 1.21787610389 0.5 -0.717876103885 +UniRef50_I6Y1G9 Putative membrane protein 0.0626564563845 0.5 0.437343543616 +UniRef50_Q7VK73 UvrABC system protein C 0.0113357999059 0.5 0.488664200094 +UniRef50_E2QNB6 Cystine transporter subunit 2.60350095447 0.500000000001 -2.10350095447 +UniRef50_Q5WEL9 Glutamate racemase 1.57031108244 0.5 -1.07031108244 +UniRef50_C2X6L3 Alpha glucosidase 0.0322289239143 0.500000000001 0.467771076085 +UniRef50_UPI0002D7F533 succinyl CoA synthetase subunit alpha 0.257335802289 0.5 0.242664197711 +UniRef50_D2PWU8 ResB family protein 0.0178140930621 0.5 0.482185906938 +UniRef50_X2MBD9 PTS mannitol transporter subunit IIBC 0.219051440153 0.5 0.280948559847 +UniRef50_P37646 Cyclic di GMP phosphodiesterase YhjH 0.654922226541 0.5 -0.154922226541 +UniRef50_Q8ZCA7 Copper exporting P type ATPase A 0.178795508599 0.5 0.321204491401 +UniRef50_P23378 Glycine dehydrogenase , mitochondrial 0.0526411651629 0.5 0.447358834837 +UniRef50_Q3IUX7 Acyltransferase 3 family 1.73207301171 0.5 -1.23207301171 +UniRef50_A3PFZ9 DNA translocase FtsK 3.53512365243 0.500000000001 -3.03512365243 +UniRef50_Q5HNA3 Signal transduction protein TRAP 0.620025839847 0.5 -0.120025839847 +UniRef50_P25527 GABA permease 0.946888541905 0.5 -0.446888541905 +UniRef50_UPI0003C7ED51 hypothetical protein 0.0266712282743 0.5 0.473328771726 +UniRef50_UPI000289BAFB deoxyguanosinetriphosphate triphosphohydrolase 0.405031027808 0.5 0.0949689721922 +UniRef50_M1MT32 Two component transcriptional regulator, AraC family 0.154879130274 0.5 0.345120869726 +UniRef50_K6GMQ5 0.982871606754 0.5 -0.482871606754 +UniRef50_UPI00032893EC 0.0693873052893 0.5 0.430612694711 +UniRef50_W4JVY5 0.305191487232 0.5 0.194808512768 +UniRef50_F1UED2 0.00891368486663 0.5 0.491086315133 +UniRef50_UPI000299DF64 tRNA 2 selenouridine synthase 0.624369617756 0.5 -0.124369617756 +UniRef50_A5UP39 10.3078662521 0.500000000005 -9.80786625211 +UniRef50_E0UH66 Amine oxidase 1.04193579039 0.5 -0.541935790385 +UniRef50_A5UP37 0.258274769323 0.5 0.241725230677 +UniRef50_A5UP34 1.66620262576 0.499999999999 -1.16620262576 +UniRef50_A1B0E4 Membrane protein insertase YidC 1.696532451 0.5 -1.196532451 +UniRef50_A9HRV7 Trigger factor 1.43691866333 0.5 -0.936918663331 +UniRef50_P39149 Uracil phosphoribosyltransferase 0.00722081161626 0.5 0.492779188384 +UniRef50_UPI00047EB418 amino acid ABC transporter permease 0.0893741092329 0.5 0.410625890767 +UniRef50_D3E0M0 Calcineurin like phosphoesterase 1.58545777826 0.5 -1.08545777826 +UniRef50_S1FKD9 0.233495647878 0.5 0.266504352122 +UniRef50_A5UJ82 3 dehydroquinate synthase 3.66189678908 0.499999999997 -3.16189678907 +UniRef50_B7LJH6 0.408411294808 0.5 0.0915887051915 +UniRef50_F9Y4V0 0.859485125143 0.5 -0.359485125143 +UniRef50_I7JVN9 0.132975441357 0.5 0.367024558643 +UniRef50_A8I6P0 Predicted protein 0.634927846591 0.5 -0.134927846591 +UniRef50_Q890U2 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.252900298499 0.5 0.247099701501 +UniRef50_Q0D831 Os07g0187900 protein 0.215605295927 0.5 0.284394704073 +UniRef50_A1B1L1 1.53047171963 0.5 -1.03047171963 +UniRef50_C6CW74 Sulfate ABC transporter, ATPase subunit 0.0956419482497 0.5 0.40435805175 +UniRef50_F7KI55 Excinuclease ABC subunit A 0.0714139751346 0.5 0.428586024865 +UniRef50_G0ICQ4 Transposase like protein, IS1381 ISSpn7 0.292347649538 0.5 0.207652350462 +UniRef50_K0HZ43 Transporter, major facilitator family protein 0.0125768490969 0.5 0.487423150903 +UniRef50_Q7A441 Molybdopterin synthase sulfur carrier subunit 0.0059086571664 0.5 0.494091342834 +UniRef50_A1U404 Type II secretion system protein E 0.398565022491 0.5 0.101434977509 +UniRef50_B2UX09 0.0570346505058 0.5 0.442965349494 +UniRef50_A6VAG5 Haloacid dehalogenase, type II 0.200124072931 0.5 0.299875927069 +UniRef50_UPI0003735394 hypothetical protein 0.319560307807 0.5 0.180439692193 +UniRef50_Q9KSC2 Methylisocitrate lyase 0.125320618787 0.5 0.374679381213 +UniRef50_Q06172 Flagellar basal body rod protein FlgG 2.12369699243 0.5 -1.62369699243 +UniRef50_A9C1V3 0.165155929043 0.5 0.334844070957 +UniRef50_X5IXK7 IS431mec, transposase 0.408186336134 0.5 0.0918136638656 +UniRef50_UPI000225B431 dTDP glucose 4,6 dehydratase 0.361324002761 0.5 0.138675997239 +UniRef50_P0ACS8 HTH type transcriptional regulator RpiR 2.12574741858 0.500000000001 -1.62574741858 +UniRef50_W5X9M8 Type I phosphodiesterase nucleotide pyrophosphatase 0.0596650118503 0.5 0.44033498815 +UniRef50_W9H4Y7 ABC transporter permease 0.312328414381 0.5 0.187671585619 +UniRef50_Q7V3R5 Phosphoribosylformylglycinamidine synthase 2 1.34736488382 0.5 -0.847364883817 +UniRef50_P45743 Isochorismatase 0.290415570125 0.5 0.209584429875 +UniRef50_UPI00036B0594 hypothetical protein 0.428923977083 0.5 0.0710760229174 +UniRef50_UPI000478FCEB alkyl hydroperoxide reductase 0.0103492735906 0.5 0.489650726409 +UniRef50_UPI00037BF563 hypothetical protein 2.37838940639 0.499999999998 -1.87838940638 +UniRef50_UPI0002D56393 hypothetical protein 0.142370795206 0.5 0.357629204794 +UniRef50_C9M6I7 0.774721568372 0.5 -0.274721568372 +UniRef50_UPI0003822EF9 hypothetical protein 0.111421408719 0.5 0.388578591281 +UniRef50_Q9JV11 UPF0307 protein NMA1049 0.350327602213 0.5 0.149672397787 +UniRef50_Q5FPZ9 Holo [acyl carrier protein] synthase 0.238263739014 0.5 0.261736260986 +UniRef50_P27303 Multidrug export protein EmrA 2.02648660654 0.500000000001 -1.52648660654 +UniRef50_P14532 Cytochrome c551 peroxidase 0.89927040805 0.5 -0.39927040805 +UniRef50_A0A016QQV6 0.0351983051262 0.5 0.464801694874 +UniRef50_D4H9H0 0.0563706763506 0.5 0.443629323649 +UniRef50_D0K339 1.7218160702 0.500000000003 -1.2218160702 +UniRef50_UPI00037E8439 iron transporter FeoB 0.405100530509 0.5 0.0948994694907 +UniRef50_K0LZX2 3.43514861119 0.499999999995 -2.93514861119 +UniRef50_UPI0001CC3EEF hypothetical protein 0.229355338512 0.5 0.270644661488 +UniRef50_Q4L4W4 Na+ H+ antiporter, MnhD subunit 2.04691742865 0.499999999998 -1.54691742865 +UniRef50_UPI00037D2BB8 hypothetical protein 0.128951341155 0.5 0.371048658845 +UniRef50_A3PS55 4.62740502425 0.499999999996 -4.12740502424 +UniRef50_K6YKE1 1.00018610616 0.5 -0.500186106162 +UniRef50_P0A2J0 Histidine transport system permease protein HisQ 3.89615918713 0.500000000001 -3.39615918713 +UniRef50_Q8X6V3 9.91063792251 0.5 -9.41063792251 +UniRef50_J9P815 1.38042127754 0.500000000001 -0.880421277543 +UniRef50_Q9ZKV9 IS606 TRANSPOSASE 0.0258044319067 0.5 0.474195568094 +UniRef50_W4UM07 TsaD Kae1 Qri7 protein 0.0624688556431 0.5 0.437531144357 +UniRef50_W4TJV2 Transcription termination protein NusB 0.314174459925 0.5 0.185825540075 +UniRef50_G7M0Z9 Type II secretion system F domain containing protein 0.107325505241 0.5 0.392674494759 +UniRef50_Q6YWZ7 5.27533688344 0.5 -4.77533688344 +UniRef50_A5UNC4 Predicted coenzyme PQQ synthesis protein 0.687587838204 0.5 -0.187587838204 +UniRef50_UPI00036D5C8E hypothetical protein 0.449826891205 0.5 0.0501731087949 +UniRef50_M1MYX8 Methyl accepting chemotaxis protein 0.0458960192299 0.5 0.45410398077 +UniRef50_UPI000360D29B hypothetical protein 0.0593734852538 0.5 0.440626514746 +UniRef50_B9KUN2 Oxidoreductase domain protein 0.925416614842 0.5 -0.425416614842 +UniRef50_Q51700 Nitrite reductase 0.664503587471 0.5 -0.164503587471 +UniRef50_R6AHC9 0.0188126532689 0.500000000001 0.481187346731 +UniRef50_J9NWS4 0.178695289478 0.5 0.321304710522 +UniRef50_UPI000373A5D7 hypothetical protein 0.00732298945514 0.5 0.492677010545 +UniRef50_K4YWM5 0.19017244527 0.5 0.30982755473 +UniRef50_P76090 Inner membrane protein YnbA 0.616273963542 0.5 -0.116273963542 +UniRef50_Q6FEM6 Dual specificity RNA methyltransferase RlmN 0.0959408943216 0.5 0.404059105678 +UniRef50_F0HFQ0 0.454957513551 0.5 0.0450424864488 +UniRef50_I2DWY9 MotA TolQ ExbB proton channel family protein 0.288545970139 0.5 0.211454029861 +UniRef50_P0ADB2 Osmotically inducible lipoprotein E 0.117225640555 0.5 0.382774359446 +UniRef50_F3U4S4 Blue light receptor BLUF domain containing protein 5.19939581954 0.5 -4.69939581954 +UniRef50_UPI0003FEC0C1 hypothetical protein 0.192923878747 0.5 0.307076121253 +UniRef50_UPI0003656647 hypothetical protein 1.18251586506 0.5 -0.682515865064 +UniRef50_Q9RSV9 0.00328075889261 0.5 0.496719241107 +UniRef50_UPI0003B6AB5A ABC transporter permease 0.0417081545985 0.500000000001 0.458291845401 +UniRef50_UPI0004120031 glycerol 3 phosphate ABC transporter substrate binding protein 1.31380950182 0.500000000001 -0.813809501817 +UniRef50_UPI0003713513 hypothetical protein 3.63939086529 0.500000000001 -3.13939086529 +UniRef50_Q45592 Probable peptide export permease protein YydJ 2.37921533182 0.5 -1.87921533182 +UniRef50_E8SHI1 Predicted oxidoreductase 10.7301857353 0.500000000003 -10.2301857353 +UniRef50_Q1IUD5 Potassium transporting ATPase A chain 0.000948734965375 0.500000000001 0.499051265034 +UniRef50_S3DA11 FAD NAD binding protein 0.00209962970139 0.5 0.497900370299 +UniRef50_M2EZJ0 4.6049188003 0.500000000002 -4.1049188003 +UniRef50_B3PS08 Bacterioferritin 5.72193748962 0.5 -5.22193748962 +UniRef50_UPI0003598731 PREDICTED 0.588587653307 0.5 -0.088587653307 +UniRef50_UPI0002626701 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.419458060959 0.5 0.080541939041 +UniRef50_Q8CNC7 Urease accessory protein UreF 0.615264180987 0.5 -0.115264180987 +UniRef50_Q9RSI9 Phosphopentomutase 0.00026752043305 0.5 0.499732479567 +UniRef50_Q5HKJ8 Glycerol dehydrogenase 1.06817473538 0.5 -0.568174735381 +UniRef50_Q11190 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 1.49083664126 0.5 -0.990836641265 +UniRef50_B0CG85 0.485066807436 0.5 0.0149331925643 +UniRef50_G8VFK8 Biotin carboxylase 0.0284321051596 0.5 0.47156789484 +UniRef50_Q6GER8 Mannitol 1 phosphate 5 dehydrogenase 2.45827816913 0.5 -1.95827816913 +UniRef50_C5N1D9 0.272022410777 0.5 0.227977589223 +UniRef50_C6B577 Peptidase S8 and S53, subtilisin, kexin, sedolisin 2.38461895125 0.5 -1.88461895125 +UniRef50_A1B2H5 Flagellin domain protein 1.42134507284 0.5 -0.92134507284 +UniRef50_Q6FF20 Polyphosphate AMP phosphotransferase 0.00637608993668 0.5 0.493623910063 +UniRef50_Q5HPK8 Catalase 3.0277321975 0.5 -2.5277321975 +UniRef50_D3QEW8 2.07064136941 0.500000000002 -1.57064136942 +UniRef50_O34645 Alpha galactosidase 0.0996456124127 0.5 0.400354387587 +UniRef50_UPI0003B72D82 hypothetical protein 0.0187466943166 0.5 0.481253305684 +UniRef50_A4SUD8 TraN protein 0.778240057925 0.5 -0.278240057925 +UniRef50_Q9JZD0 0.0106283736159 0.5 0.489371626384 +UniRef50_Q2G6V6 Thymidylate synthase 2.27262955821 0.5 -1.77262955821 +UniRef50_Q5HFZ7 Dihydrofolate reductase 2.83899558655 0.499999999997 -2.33899558655 +UniRef50_Q6A812 N acetyl gamma glutamyl phosphate reductase 0.0840318166841 0.5 0.415968183316 +UniRef50_A6LY45 0.0483284680799 0.5 0.45167153192 +UniRef50_UPI0002F39B78 hypothetical protein 0.570932152713 0.5 -0.0709321527134 +UniRef50_UPI0001BF786C hypothetical protein SMAC_11506, partial 12.6105617168 0.499999999995 -12.1105617168 +UniRef50_A5ISU2 11.8480727023 0.499999999976 -11.3480727023 +UniRef50_F3J2W3 AsmA family protein 0.415449136079 0.5 0.0845508639206 +UniRef50_UPI00047EDDA8 ACGS family amino acid carrier protein 0.00180227072637 0.5 0.498197729274 +UniRef50_B7GJM7 2 oxoglutarate ferredoxin oxidoreductase, beta subunit 1.95979671901 0.5 -1.45979671901 +UniRef50_UPI000262500B dihydropteroate synthase 0.663336357713 0.5 -0.163336357713 +UniRef50_F7ZT52 ABC type transporter, duplicate ATPase component 0.117125102214 0.5 0.382874897787 +UniRef50_U5NN33 4.35165298645 0.500000000002 -3.85165298645 +UniRef50_Q7VFA9 ATP dependent RNA helicase DeaD 0.0179809603152 0.5 0.482019039685 +UniRef50_F2U351 0.122769964944 0.5 0.377230035056 +UniRef50_UPI000369F682 hypothetical protein 9.63244245126 0.5 -9.13244245126 +UniRef50_B9KZ43 GTPase Der 0.440985604658 0.5 0.0590143953423 +UniRef50_B8HHC7 Formyltetrahydrofolate deformylase 1.30732954371 0.5 -0.807329543707 +UniRef50_D1BX90 Transcriptional regulator, LysR family 0.877749206352 0.5 -0.377749206352 +UniRef50_B4S6J0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0686189349498 0.5 0.43138106505 +UniRef50_P76117 2.15769568893 0.499999999999 -1.65769568893 +UniRef50_I0C7E7 NikE 4.28336594412 0.500000000001 -3.78336594413 +UniRef50_G7MCM7 Aminodeoxychorismate lyase 0.0898495539792 0.5 0.410150446021 +UniRef50_A6LSA1 0.165032093226 0.5 0.334967906774 +UniRef50_I9LBA0 Alkaline phosphatase 0.00368825324241 0.500000000001 0.496311746757 +UniRef50_C5WFH4 UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase 0.590709577332 0.5 -0.0907095773318 +UniRef50_Q55S44 0.1455321614 0.5 0.3544678386 +UniRef50_U5MVS9 Cytochrome b5 0.77933081739 0.5 -0.27933081739 +UniRef50_Q6GEQ8 Probable uridylyltransferase SAR2262 2.33950609399 0.500000000001 -1.83950609399 +UniRef50_I0C5M6 Acyl CoA hydrolase 5.28842010494 0.500000000005 -4.78842010494 +UniRef50_P39197 Phosphate acetyltransferase 1.86564355205 0.5 -1.36564355205 +UniRef50_X2N154 Glutamate synthase 7.25232065342 0.500000000001 -6.75232065342 +UniRef50_P33315 Transketolase 2 0.602277235818 0.5 -0.102277235818 +UniRef50_P23354 1 phosphofructokinase 0.0218973187711 0.5 0.478102681229 +UniRef50_P0AD42 Phosphatidylglycerophosphatase C 1.08836919489 0.5 -0.588369194895 +UniRef50_P0CB40 Phosphoethanolamine transferase EptC 1.08241371839 0.5 -0.582413718386 +UniRef50_UPI0003653436 hypothetical protein 2.49831166816 0.5 -1.99831166816 +UniRef50_T1A1M3 Cobyrinic acid a,c diamide synthase 0.157618322803 0.5 0.342381677197 +UniRef50_Q9HU82 0.197363661801 0.5 0.302636338199 +UniRef50_Q0T052 Malate dehydrogenase 5.63224228533 0.499999999993 -5.13224228532 +UniRef50_UPI00047042B3 protoheme IX farnesyltransferase, partial 0.104404343989 0.5 0.395595656011 +UniRef50_I3KYK8 2.51309942116 0.5 -2.01309942116 +UniRef50_B9E056 DNA repair protein RecO 0.966569006999 0.5 -0.466569006999 +UniRef50_W8UX70 Pirin 0.48939573989 0.5 0.0106042601103 +UniRef50_A4WV68 1.07931793628 0.5 -0.579317936278 +UniRef50_UPI00047437FE 30S ribosomal protein S15, partial 0.385906482405 0.5 0.114093517595 +UniRef50_A4X0K4 3.43558036754 0.499999999998 -2.93558036754 +UniRef50_UPI0003B358DD phytoene desaturase 0.100566794722 0.5 0.399433205278 +UniRef50_G7U9F5 0.0241799304326 0.5 0.475820069567 +UniRef50_A4X0K2 2.10151363077 0.5 -1.60151363077 +UniRef50_V9W010 6.94660951125 0.500000000006 -6.44660951126 +UniRef50_Q8A8R5 ATP dependent 6 phosphofructokinase 1 0.000575520616743 0.500000000001 0.499424479382 +UniRef50_E4RMY1 CoA substrate specific enzyme activase 0.0839631359068 0.5 0.416036864094 +UniRef50_A0A031IYL1 0.492302537828 0.5 0.00769746217248 +UniRef50_P00358 Glyceraldehyde 3 phosphate dehydrogenase 2 0.657085158476 0.5 -0.157085158476 +UniRef50_W6TF97 Outer membrane protein assembly factor BamD 0.196918402562 0.500000000001 0.303081597438 +UniRef50_UPI00016C52B2 potassium transporting ATPase subunit A 0.00631849505464 0.5 0.493681504946 +UniRef50_P0AFR0 NTE family protein RssA 0.737148482961 0.5 -0.237148482961 +UniRef50_P0A9R0 Aspartate semialdehyde dehydrogenase 0.173571802971 0.5 0.326428197029 +UniRef50_Q8DU04 0.863415375157 0.5 -0.363415375157 +UniRef50_R9YS20 Phage portal family protein 3.2929024926 0.499999999999 -2.7929024926 +UniRef50_V8EVN4 0.698263260749 0.5 -0.198263260749 +UniRef50_G8LI42 1.16290128241 0.5 -0.66290128241 +UniRef50_Q8DU03 9.63186887094 0.500000000002 -9.13186887095 +UniRef50_A6LTA9 0.0521545530823 0.5 0.447845446918 +UniRef50_UPI000402B508 peptide deformylase 0.740513734095 0.5 -0.240513734095 +UniRef50_W7U2M8 1.24349374398 0.5 -0.743493743976 +UniRef50_E8QFC4 0.0580377034784 0.5 0.441962296521 +UniRef50_P45303 2 oxoglutarate dehydrogenase E1 component 0.00231905366242 0.5 0.497680946338 +UniRef50_A6LQ67 GntR domain protein 0.0704669080853 0.5 0.429533091914 +UniRef50_A0A036I5S3 0.302454155753 0.5 0.197545844247 +UniRef50_P45240 Sodium glutamate symport carrier protein 0.182587869051 0.5 0.317412130949 +UniRef50_UPI00047875CB hypothetical protein 0.0640743726411 0.5 0.435925627359 +UniRef50_A6TGA9 HTH type transcriptional activator RhaS 4.81559736712 0.500000000001 -4.31559736712 +UniRef50_B7V1B6 1.50929242678 0.5 -1.00929242678 +UniRef50_L9BSL0 Penicillin binding protein activator LpoA 2.81150605581 0.5 -2.31150605581 +UniRef50_A0A043WFQ4 0.639120615617 0.5 -0.139120615617 +UniRef50_P73426 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 4.09808454744 0.499999999998 -3.59808454744 +UniRef50_P71239 Putative colanic acid biosynthesis glycosyl transferase WcaE 0.544857823674 0.5 -0.0448578236736 +UniRef50_UPI000410C3F5 bacitracin ABC transporter ATP binding protein 0.431630399979 0.5 0.068369600021 +UniRef50_UPI0002D5F775 ATPase 0.558933159499 0.5 -0.0589331594992 +UniRef50_UPI00037CF9B5 hypothetical protein 0.764926609794 0.5 -0.264926609794 +UniRef50_UPI000405E993 acetyltransferase 0.0899385636882 0.5 0.410061436312 +UniRef50_I7B8G3 Poly 0.385350481092 0.5 0.114649518908 +UniRef50_B4RA53 0.479053284097 0.5 0.0209467159031 +UniRef50_UPI000373244E hypothetical protein 0.0778232812374 0.5 0.422176718762 +UniRef50_P35482 Alkaline phosphatase L 2.81614950812 0.500000000001 -2.31614950813 +UniRef50_B9KJR5 Binding protein dependent transport systems inner membrane component 1.40653838917 0.5 -0.906538389168 +UniRef50_UPI0003B5FEB1 sulfate transporter 2.18231550249 0.5 -1.68231550249 +UniRef50_UPI0004657597 hypothetical protein 0.157970027216 0.5 0.342029972784 +UniRef50_Q5F8F6 tRNA lysidine synthase 0.0626152585558 0.5 0.437384741444 +UniRef50_UPI00047939C9 Fis family transcriptional regulator 1.22514170847 0.5 -0.725141708466 +UniRef50_D6AYQ3 1.0049011085 0.5 -0.504901108498 +UniRef50_C7RP31 0.184474427068 0.5 0.315525572932 +UniRef50_UPI000347473B ABC transporter permease 0.29933381774 0.5 0.20066618226 +UniRef50_H6PD14 Oxidoreductase,pyridinenucleotide disulfide, class I 0.608286838662 0.5 -0.108286838662 +UniRef50_Q99WQ6 Lipase 2 2.49867356972 0.5 -1.99867356972 +UniRef50_A3PMS2 Chromosome partition protein Smc 1.2147178455 0.5 -0.7147178455 +UniRef50_UPI00046813B7 hypothetical protein 2.48161798236 0.5 -1.98161798236 +UniRef50_Q9K0Y6 Phospho N acetylmuramoyl pentapeptide transferase 0.129673716211 0.5 0.370326283789 +UniRef50_UPI000248DDD1 sugar ABC transporter permease 0.0438519407586 0.5 0.456148059241 +UniRef50_P49433 Glyceraldehyde 3 phosphate dehydrogenase 1 0.451602386447 0.5 0.0483976135527 +UniRef50_Q99Y18 6 phospho beta galactosidase 1.81132443243 0.5 -1.31132443243 +UniRef50_P14953 Anthranilate synthase component 1 0.331792939457 0.5 0.168207060543 +UniRef50_U5RY54 0.0570803256219 0.499999999999 0.442919674379 +UniRef50_Q97GY4 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.153063649933 0.5 0.346936350067 +UniRef50_P0DC56 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.646853604291 0.5 -0.146853604291 +UniRef50_UPI0003C7A2A0 hypothetical protein 0.0672430463977 0.5 0.432756953602 +UniRef50_K2JJ46 NAD specific glutamate dehydrogenase 0.607374580756 0.5 -0.107374580756 +UniRef50_M9B494 0.450975612727 0.5 0.0490243872727 +UniRef50_Q9RSU0 Glutamine synthase 0.000977366383899 0.5 0.499022633616 +UniRef50_UPI000375E388 hypothetical protein, partial 1.442921438 0.5 -0.942921437998 +UniRef50_W4TMV5 0.0816885457566 0.500000000001 0.418311454242 +UniRef50_Q46267 Pyruvate formate lyase activating enzyme 0.0113249401935 0.5 0.488675059806 +UniRef50_F8JI17 11.2257081554 0.499999999998 -10.7257081554 +UniRef50_A7INU8 Anhydro N acetylmuramic acid kinase 0.0922503162894 0.5 0.40774968371 +UniRef50_D0D2I8 ArsC family protein 0.836582721228 0.5 -0.336582721228 +UniRef50_B2Y834 Abortive phage resistance protein like protein 1.23080940203 0.5 -0.730809402032 +UniRef50_P0AA69 Threonine homoserine exporter RhtA 0.823951941946 0.5 -0.323951941946 +UniRef50_UPI00047DFAFF hypothetical protein 0.607963859823 0.5 -0.107963859823 +UniRef50_M4NGT3 Arsenical resistance protein ArsH 0.0182235637172 0.5 0.481776436283 +UniRef50_Q47539 Taurine transport system permease protein TauC 0.163644035177 0.5 0.336355964823 +UniRef50_W4UB64 Menaquinone specific isochorismate synthase 0.134385402089 0.5 0.365614597911 +UniRef50_C2W144 Cell wall surface anchor 0.00567878830676 0.5 0.494321211694 +UniRef50_UPI00035CC609 hypothetical protein 0.674803704451 0.5 -0.174803704451 +UniRef50_Q2RP22 Dual specificity RNA methyltransferase RlmN 2.50389439286 0.5 -2.00389439286 +UniRef50_UPI0003C16468 PREDICTED 0.835255318513 0.5 -0.335255318513 +UniRef50_UPI000476C674 hypothetical protein 0.309709893828 0.5 0.190290106172 +UniRef50_Z5XDL4 Glutamate synthase 0.527974874756 0.5 -0.0279748747562 +UniRef50_UPI0004774B62 hypothetical protein, partial 0.634619350797 0.5 -0.134619350797 +UniRef50_A1IRN6 0.0340737210141 0.5 0.465926278986 +UniRef50_UPI000477DB28 NrdR family transcriptional regulator 0.349362817818 0.5 0.150637182182 +UniRef50_UPI0002E108A4 hypothetical protein 0.0746825490215 0.499999999999 0.425317450979 +UniRef50_C3YD63 0.187025527026 0.5 0.312974472974 +UniRef50_UPI00037451D4 hypothetical protein 0.445807139786 0.5 0.054192860214 +UniRef50_P0A585 Glucose 6 phosphate 1 dehydrogenase 2 0.000792334915926 0.5 0.499207665084 +UniRef50_A5UNF6 Putative Zn peptidase 9.18073740255 0.499999999999 -8.68073740255 +UniRef50_Q46820 2.29121800586 0.500000000003 -1.79121800586 +UniRef50_G0LV16 CAAX amino terminal protease family protein 2.517870846 0.5 -2.017870846 +UniRef50_K0HMU2 Polysaccharide deacetylase 0.0465433931136 0.5 0.453456606887 +UniRef50_A6LYX7 0.90384940265 0.5 -0.40384940265 +UniRef50_UPI0003795D86 hypothetical protein 0.0680563909663 0.5 0.431943609033 +UniRef50_UPI00046281E4 PREDICTED 0.0989403578304 0.5 0.40105964217 +UniRef50_O25242 DNA polymerase III subunit beta 0.0125151531164 0.5 0.487484846883 +UniRef50_Q8D5U6 0.0345569895068 0.5 0.465443010493 +UniRef50_B9KJP6 NADH hydrate epimerase 0.511367133382 0.5 -0.0113671333822 +UniRef50_M9B696 Bifunctional glmU domain protein 0.972244465447 0.5 -0.472244465447 +UniRef50_Q820V5 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.00330277421782 0.5 0.496697225782 +UniRef50_Q1CG91 Methionine import ATP binding protein MetN 1 0.408867639521 0.5 0.0911323604792 +UniRef50_Q186R1 Thiazole synthase 0.140809796518 0.5 0.359190203483 +UniRef50_H6LJB5 Chemotaxis protein methyltransferase CheR2 0.092555629811 0.5 0.40744437019 +UniRef50_UPI000328B359 PREDICTED 0.463930008418 0.5 0.0360699915817 +UniRef50_Q8K9N2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.322432100004 0.5 0.177567899996 +UniRef50_D2AAC8 Biotin sulfoxide reductase 8.2845056119 0.500000000014 -7.78450561191 +UniRef50_B8CY71 Lon protease 0.221178226827 0.5 0.278821773173 +UniRef50_R9SL42 1.92634400955 0.500000000001 -1.42634400955 +UniRef50_M1FGU0 0.0906345782461 0.5 0.409365421754 +UniRef50_P19496 Coenzyme F420 hydrogenase subunit alpha 2.24851980857 0.499999999998 -1.74851980857 +UniRef50_A7ZU67 Der GTPase activating protein YihI 2.13299788452 0.499999999999 -1.63299788452 +UniRef50_Q8TX50 50S ribosomal protein L10 1.04101103909 0.5 -0.541011039091 +UniRef50_A6LX70 MukB N terminal domain M protein repeat protein 0.229889564261 0.5 0.270110435739 +UniRef50_E3DSX1 KdgR1 0.315545460327 0.5 0.184454539673 +UniRef50_UPI000464DA5F ABC transporter 0.202366442926 0.5 0.297633557074 +UniRef50_UPI0003FDD6FE FAD containing monooxygenase EthA 0.0024633403916 0.5 0.497536659609 +UniRef50_A0A022LQG6 Glyoxalase 0.387692382574 0.5 0.112307617426 +UniRef50_Q3J3Q2 1.45603181172 0.5 -0.956031811723 +UniRef50_UPI0003F48E9A hypothetical protein TREMEDRAFT_26315 0.393671851586 0.5 0.106328148414 +UniRef50_S5RL61 ATP dependent DNA helicase 1.11276772054 0.5 -0.61276772054 +UniRef50_B8FP23 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.915955331298 0.5 -0.415955331298 +UniRef50_A4EPQ9 0.944106520237 0.5 -0.444106520237 +UniRef50_UPI000329816A PREDICTED 0.133946498085 0.500000000001 0.366053501915 +UniRef50_G1XX87 0.0687230365005 0.5 0.4312769635 +UniRef50_A0A024L1D8 Antirestriction protein 0.0637728769636 0.5 0.436227123036 +UniRef50_U5MT98 0.17779749471 0.500000000001 0.322202505289 +UniRef50_Q1RK88 0.467276692334 0.5 0.0327233076664 +UniRef50_X0PNW8 DNA gyrase subunit B 0.0591471635349 0.5 0.440852836465 +UniRef50_UPI0003752FD7 hypothetical protein, partial 1.18509506041 0.5 -0.685095060411 +UniRef50_Q03KB7 ATP dependent 6 phosphofructokinase 0.624267229562 0.5 -0.124267229562 +UniRef50_Q2FH56 Putative oligopeptide transport system permease protein oppC2 4.3338743752 0.499999999999 -3.8338743752 +UniRef50_A1SW90 Beta hexosaminidase 0.0818166567953 0.5 0.418183343205 +UniRef50_UPI0001B664E4 Os08g0187500 0.0906933471623 0.5 0.409306652837 +UniRef50_B2UZH1 Cyanophycinase 0.204784267727 0.5 0.295215732273 +UniRef50_A6M0N2 Signal transduction histidine kinase, LytS 0.480492438978 0.5 0.0195075610218 +UniRef50_A6LYP0 PTS system, mannose fructose sorbose family, IIA subunit 0.0562632072429 0.5 0.443736792757 +UniRef50_A0A023KNT6 0.34843711319 0.5 0.15156288681 +UniRef50_Q2YU28 5.27011204026 0.499999999995 -4.77011204026 +UniRef50_UPI0001FFEA10 ABC transporter 1.88891858306 0.5 -1.38891858306 +UniRef50_G5J8I8 Transposase, Tn3 family 0.00994972862733 0.5 0.490050271373 +UniRef50_UPI000361DFBB hypothetical protein 0.300109013364 0.5 0.199890986636 +UniRef50_A3PNG9 Transferase hexapeptide repeat containing protein 2.81124149919 0.5 -2.31124149919 +UniRef50_B9NR02 4.40912265597 0.500000000002 -3.90912265598 +UniRef50_P39916 Thioredoxin reductase 0.49883156632 0.5 0.00116843367988 +UniRef50_B0VT23 Erythronate 4 phosphate dehydrogenase 0.0241452078106 0.5 0.475854792189 +UniRef50_Q02RB8 UDP 3 O acylglucosamine N acyltransferase 0.777173765959 0.5 -0.277173765959 +UniRef50_A0LM36 Macrolide export ATP binding permease protein MacB 0.112318844695 0.5 0.387681155305 +UniRef50_UPI0004713629 hypothetical protein 0.523674231499 0.5 -0.0236742314987 +UniRef50_Q3V7R9 4 hydroxythreonine 4 phosphate dehydrogenase 65.2637649197 0.500000000001 -64.7637649197 +UniRef50_A3M2D7 DNA primase 0.0093054140246 0.500000000001 0.490694585974 +UniRef50_G3GPU6 0.216901297312 0.5 0.283098702688 +UniRef50_Q5HRQ3 Peptidyl tRNA hydrolase 1.96538888546 0.5 -1.46538888546 +UniRef50_Q4L4Y2 ATP dependent helicase deoxyribonuclease subunit B 2.18973095234 0.5 -1.68973095234 +UniRef50_A3SHH8 0.793845498305 0.5 -0.293845498305 +UniRef50_UPI00045E8170 hypothetical protein 0.300838303215 0.5 0.199161696785 +UniRef50_UPI000371708D hypothetical protein 0.9294505257 0.5 -0.4294505257 +UniRef50_R8S9D2 0.00408262168129 0.5 0.495917378319 +UniRef50_C1DIU1 Response regulator 1.18696211262 0.5 -0.686962112615 +UniRef50_R7MTU6 1.70400712865 0.5 -1.20400712865 +UniRef50_P77768 2.3620748307 0.5 -1.8620748307 +UniRef50_UPI00046ADC84 transposase 0.220748676488 0.5 0.279251323512 +UniRef50_UPI00047D345D hypothetical protein 0.668462043141 0.5 -0.168462043141 +UniRef50_B2TQ47 Shikimate kinase 0.0901951639411 0.5 0.409804836059 +UniRef50_P50852 PTS system mannitol specific EIICB component 0.413477482428 0.5 0.0865225175721 +UniRef50_UPI000368B6A3 hypothetical protein, partial 0.492749900208 0.5 0.00725009979189 +UniRef50_A6LU00 Baseplate J family protein 0.0724764969046 0.5 0.427523503096 +UniRef50_UPI0003B708C3 DNA glycosylase, partial 0.178290484243 0.500000000001 0.321709515757 +UniRef50_A0A011PVV2 0.122298020162 0.5 0.377701979838 +UniRef50_G7M9T7 0.310947190888 0.5 0.189052809112 +UniRef50_A4VN57 Oxidoreductase, molybdopterin binding 1.25265628007 0.499999999999 -0.75265628007 +UniRef50_Q9I0H4 Flavohemoprotein 9.9358165163 0.5 -9.4358165163 +UniRef50_UPI00026306CB ubiquinol cytochrome C reductase 1.21986813528 0.5 -0.719868135281 +UniRef50_Q9RZD6 Ferredoxin nitrite reductase 0.00437753393552 0.5 0.495622466064 +UniRef50_U3T069 Nicotinamide nucleotide adenylyltransferase 0.0689439735388 0.5 0.431056026461 +UniRef50_A5UJ97 5.68068097906 0.499999999999 -5.18068097905 +UniRef50_A8L7A1 Putative transcriptional regulator 1.41602866223 0.5 -0.916028662235 +UniRef50_UPI0004729065 membrane protein 1.45714889552 0.5 -0.957148895518 +UniRef50_M4VIT1 MotA TolQ ExbB proton channel family protein 0.762188522783 0.5 -0.262188522783 +UniRef50_Q5HKI1 Probable succinyl diaminopimelate desuccinylase 1.74351804256 0.500000000002 -1.24351804256 +UniRef50_UPI0003620D57 hypothetical protein 0.0911087405076 0.5 0.408891259492 +UniRef50_G4QII0 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein 0.40977945795 0.5 0.0902205420503 +UniRef50_UPI0001FFF2A8 putative hydrolase 0.0649247255485 0.5 0.435075274452 +UniRef50_UPI0003D0D2FE PREDICTED 0.564843728062 0.5 -0.0648437280617 +UniRef50_V9U2A1 Thioesterase PvdG involved in non ribosomal peptide biosynthesis 0.527925573841 0.5 -0.0279255738405 +UniRef50_E4CZ61 0.159780153902 0.5 0.340219846097 +UniRef50_A6TRD7 0.0840935999238 0.5 0.415906400076 +UniRef50_UPI0002D6A2EC deoxyguanosinetriphosphate triphosphohydrolase 6.51998102664 0.5 -6.01998102664 +UniRef50_P9WGC6 Succinyl CoA ligase [ADP forming] subunit alpha 0.728250187815 0.5 -0.228250187815 +UniRef50_UPI00037FF954 hypothetical protein 0.0859685582641 0.5 0.414031441736 +UniRef50_UPI0003B73915 potassium transporter TrkA 0.302054988955 0.5 0.197945011045 +UniRef50_UPI000463E242 hypothetical protein 0.0749953471652 0.5 0.425004652835 +UniRef50_A3PH06 1.9354090396 0.500000000002 -1.4354090396 +UniRef50_P23630 Diaminopimelate decarboxylase 0.00306988512629 0.5 0.496930114874 +UniRef50_A8F7Z9 Ornithine carbamoyltransferase 0.361178609882 0.5 0.138821390118 +UniRef50_P0AFS5 AI 2 transport protein TqsA 1.15475360714 0.5 -0.654753607139 +UniRef50_UPI0003449BF9 acetolactate synthase 0.0167336078804 0.5 0.48326639212 +UniRef50_UPI0003B58311 citrate synthase, partial 0.203466556614 0.5 0.296533443386 +UniRef50_A0A023RXS3 Magnesium transporter 0.0262044509007 0.5 0.473795549099 +UniRef50_A9NAA5 Phosphoheptose isomerase 1.13417936314 0.5 -0.634179363137 +UniRef50_UPI000249446F cellobiose phosphorylase 0.379478314226 0.5 0.120521685774 +UniRef50_A9M3I8 dTDP 4 dehydrorhamnose reductase 0.255790705246 0.5 0.244209294754 +UniRef50_Q46851 L glyceraldehyde 3 phosphate reductase 0.370077877486 0.5 0.129922122514 +UniRef50_UPI000300C9AC heme ABC transporter ATP binding protein 0.125525138639 0.5 0.374474861361 +UniRef50_K4NDS6 0.0304787683016 0.499999999999 0.469521231699 +UniRef50_T0ZCE6 Thiamine biosynthesis protein ThiC 0.125860984467 0.5 0.374139015533 +UniRef50_A8FEQ2 Pseudouridine synthase 1.25737438517 0.5 -0.757374385166 +UniRef50_A6M2V9 Methyl accepting chemotaxis sensory transducer 0.026146856142 0.5 0.473853143858 +UniRef50_P64434 Inner membrane protein YpjD 7.05055806508 0.500000000002 -6.55055806508 +UniRef50_D3E0C1 4.90857802835 0.499999999999 -4.40857802835 +UniRef50_UPI0002196E63 amino acid ABC transporter periplasmic protein 0.365555637128 0.5 0.134444362872 +UniRef50_I6D8C7 Sensor atoS domain protein 2.93149451993 0.499999999999 -2.43149451993 +UniRef50_E6MU88 DNA binding response regulator, Fis family 0.0238085760728 0.5 0.476191423927 +UniRef50_B8DW19 30S ribosomal protein S3 0.197513392605 0.5 0.302486607395 +UniRef50_Q83BS0 Transcription termination antitermination protein NusA 0.215949707677 0.5 0.284050292323 +UniRef50_P02924 L arabinose binding periplasmic protein 3.38980226557 0.5 -2.88980226557 +UniRef50_E5WAH0 1.00387141212 0.5 -0.503871412118 +UniRef50_UPI000477EDEC hypothetical protein 0.794495403257 0.5 -0.294495403257 +UniRef50_UPI00036184DA hypothetical protein 2.31216451342 0.500000000001 -1.81216451342 +UniRef50_Q0ASX6 0.232727775166 0.5 0.267272224834 +UniRef50_A9BTA7 Non canonical purine NTP pyrophosphatase 1.22689067365 0.5 -0.726890673651 +UniRef50_C7Q8K8 0.0044539317682 0.5 0.495546068232 +UniRef50_U5AI32 DNA polymerase III subunit beta 4.00515585793 0.499999999996 -3.50515585792 +UniRef50_G5MH51 0.477195143221 0.5 0.0228048567788 +UniRef50_UPI000475DCB4 ATPase, partial 0.0287059598412 0.5 0.471294040159 +UniRef50_UPI0003B5589D hypothetical protein 0.0818822190071 0.5 0.418117780993 +UniRef50_UPI000363404F MULTISPECIES 0.497510412038 0.5 0.00248958796167 +UniRef50_S1SPS9 PTS system transporter subunit IIA 2.9876418969 0.5 -2.4876418969 +UniRef50_UPI00037ACE4F hypothetical protein 0.350199058802 0.5 0.149800941198 +UniRef50_A5UJD7 Predicted transposase 2.52803780827 0.500000000001 -2.02803780827 +UniRef50_A9B4Z7 NADH quinone oxidoreductase subunit D 1 0.0418467746366 0.5 0.458153225363 +UniRef50_F3SFL5 2.1466556201 0.499999999999 -1.6466556201 +UniRef50_UPI00036E2F89 hypothetical protein 11.5067945297 0.500000000006 -11.0067945297 +UniRef50_UPI000469CEC8 hypothetical protein 2.28212954272 0.499999999997 -1.78212954272 +UniRef50_A8GE31 PTS system, maltose and glucose specific IIAbc component 1.60848749762 0.499999999999 -1.10848749762 +UniRef50_K7TAU7 3.55055642056 0.5 -3.05055642056 +UniRef50_Q1C1E0 Glycogen debranching enzyme 6.17132131454 0.499999999995 -5.67132131454 +UniRef50_Q2RRM4 N acetyl gamma glutamyl phosphate reductase 1.30336888842 0.5 -0.803368888421 +UniRef50_T2DXA7 0.196677106019 0.5 0.303322893981 +UniRef50_UPI00035EBF42 hypothetical protein 1.3246284008 0.5 -0.8246284008 +UniRef50_P52146 Arsenical pump membrane protein 1.72697455261 0.499999999999 -1.22697455261 +UniRef50_B9DN29 6,7 dimethyl 8 ribityllumazine synthase 0.129396914483 0.5 0.370603085517 +UniRef50_UPI0002D3715C hypothetical protein 96.2783776655 0.500000000083 -95.7783776656 +UniRef50_Q55038 Amidophosphoribosyltransferase 0.0321247868593 0.5 0.467875213141 +UniRef50_M4KMH2 Cysteine desulfurase 0.354552986646 0.5 0.145447013354 +UniRef50_UPI000476ECF5 hypothetical protein 1.7486679447 0.5 -1.2486679447 +UniRef50_Q9UZU7 Phosphate import ATP binding protein PstB 0.34444992505 0.5 0.15555007495 +UniRef50_UPI0003C1AD3B PREDICTED 2.6167850196 0.499999999998 -2.1167850196 +UniRef50_S6B705 1.37857667153 0.5 -0.878576671525 +UniRef50_A6M0A3 0.347892458818 0.5 0.152107541182 +UniRef50_Q38451 C repressor 0.285085761159 0.5 0.214914238841 +UniRef50_Q88VD4 30S ribosomal protein S20 0.830090656452 0.5 -0.330090656452 +UniRef50_B0CHX9 Adenine phosphoribosyltransferase 4.74889660778 0.5 -4.24889660778 +UniRef50_A3WPC3 0.350676438291 0.5 0.149323561709 +UniRef50_UPI00028995EB 6 pyruvoyl tetrahydropterin synthase 0.0641787974348 0.5 0.435821202565 +UniRef50_A0A022NGW7 0.0385463296815 0.5 0.461453670319 +UniRef50_Q890R5 tRNA pseudouridine synthase A 2 0.085682051939 0.5 0.414317948061 +UniRef50_UPI000464C09A GntR family transcriptional regulator, partial 0.372630763441 0.5 0.127369236559 +UniRef50_H3V9W4 3.05129517999 0.499999999995 -2.55129517998 +UniRef50_A6LSW5 Cobalamin synthase 0.148171924011 0.5 0.351828075989 +UniRef50_U5MTT1 Transcriptional regulator, AraC family 0.0434537607713 0.499999999999 0.456546239229 +UniRef50_A9IYN9 Elongation factor P 2.73968002568 0.500000000003 -2.23968002568 +UniRef50_B5QX24 Protein TolB 0.865607629658 0.5 -0.365607629658 +UniRef50_P0A9D0 Fructose 1,6 bisphosphatase class 2 0.58956411421 0.5 -0.0895641142101 +UniRef50_K2EHJ4 0.00364744413214 0.5 0.496352555868 +UniRef50_O25582 Protease HtpX homolog 0.0318043175222 0.5 0.468195682478 +UniRef50_Q2IGL4 Bifunctional protein GlmU 0.452354346021 0.5 0.0476456539793 +UniRef50_D3E2G7 1.00592952124 0.5 -0.505929521236 +UniRef50_W1TXW2 Prophage LambdaSa04, terminase, large subunit 0.0497207660404 0.5 0.45027923396 +UniRef50_D5ZU02 Modular polyketide synthase 0.135643631381 0.5 0.364356368619 +UniRef50_UPI00047270A3 ribosome associated protein IOJAP 0.588382436688 0.5 -0.0883824366884 +UniRef50_UPI00042AA310 PREDICTED 1.34809842337 0.5 -0.848098423372 +UniRef50_D8GM15 Membrane associated dicarboxylate carrier protein 0.0330044582665 0.5 0.466995541733 +UniRef50_UPI0003B419EF serine threonine protein phosphatase 0.377673084506 0.5 0.122326915494 +UniRef50_A0A011PK79 Glucose inhibited division protein A 0.348237848202 0.5 0.151762151798 +UniRef50_D9CIX9 SAD1f 0.0133597753366 0.5 0.486640224663 +UniRef50_Q3IXN3 Phosphatidylethanolamine 1.30699005043 0.5 -0.806990050435 +UniRef50_G8VAR4 Bacterial extracellular solute binding protein 0.00841256165219 0.5 0.491587438348 +UniRef50_Q5HL87 Ribokinase 2.34961495732 0.499999999998 -1.84961495732 +UniRef50_V8R0S4 Peptidase M16 0.667712225751 0.5 -0.167712225751 +UniRef50_UPI0002EDB6DA hypothetical protein 0.266487989921 0.5 0.233512010079 +UniRef50_C0P8W3 0.411158543897 0.5 0.0888414561031 +UniRef50_M4WUF5 0.633846466257 0.5 -0.133846466257 +UniRef50_UPI00037D4258 hypothetical protein 0.895481274156 0.5 -0.395481274156 +UniRef50_UPI000380CC39 hypothetical protein 0.0499926683598 0.499999999999 0.450007331641 +UniRef50_B9T8B0 2.39758441941 0.500000000001 -1.89758441941 +UniRef50_Q8ZBY6 Acyl coenzyme A dehydrogenase 3.16285509279 0.499999999998 -2.66285509279 +UniRef50_UPI000476F4CB ATPase P 0.0133792383472 0.499999999999 0.486620761653 +UniRef50_UPI0002DC070B hypothetical protein 0.00934352913019 0.5 0.49065647087 +UniRef50_A6TLH7 Electron transfer flavoprotein, alpha subunit like protein 0.310006853828 0.5 0.189993146172 +UniRef50_W5X2T3 PAS PAC sensor signal transduction histidine kinase 0.774252304542 0.5 -0.274252304542 +UniRef50_Q88GV8 2.06244425714 0.500000000002 -1.56244425714 +UniRef50_F4AJ46 Peptidase M24 0.236890733846 0.5 0.263109266154 +UniRef50_UPI000367681C hypothetical protein 1.05892747304 0.5 -0.558927473041 +UniRef50_A9M0F1 Lipoprotein 0.00190431064468 0.5 0.498095689355 +UniRef50_A5UN02 Predicted RNA binding protein 5.78297751066 0.499999999997 -5.28297751066 +UniRef50_L8ME45 0.503313743655 0.5 -0.00331374365529 +UniRef50_UPI0001FFE55B large conductance mechanosensitive channel, partial 0.650675979389 0.5 -0.150675979389 +UniRef50_B9EB85 Signal peptidase I 1.49919508414 0.5 -0.99919508414 +UniRef50_R5TSV1 Phosphoglucomutase phosphomannomutase family protein 0.00695595022463 0.5 0.493044049776 +UniRef50_E3DAW5 Transposase of insertion element IS911A 0.211081247759 0.5 0.288918752241 +UniRef50_M9S895 Glycosyl transferase 2.4289255067 0.5 -1.9289255067 +UniRef50_S5DC92 0.0140396669051 0.5 0.485960333095 +UniRef50_Q53554 Citrate synthase 0.369203766605 0.5 0.130796233395 +UniRef50_A0A011R9T0 Cyclolysin 2.28333515932 0.499999999999 -1.78333515932 +UniRef50_I1ZNE0 SpoU rRNA methylase family protein 1.06860788885 0.5 -0.568607888845 +UniRef50_UPI000289013C enoyl CoA hydratase 0.304083169934 0.5 0.195916830066 +UniRef50_R7D190 6 phosphogluconate dehydrogenase 0.0874113891943 0.5 0.412588610806 +UniRef50_A0A016QRP5 0.0037121136239 0.5 0.496287886376 +UniRef50_P13510 Cobalt zinc cadmium resistance protein CzcB 0.126955899523 0.5 0.373044100477 +UniRef50_A4WRH7 1.06045545105 0.5 -0.560455451046 +UniRef50_F2E7K1 Predicted protein 0.453606112303 0.5 0.0463938876971 +UniRef50_P34107 Superoxide dismutase [Fe] 0.441982127627 0.5 0.0580178723727 +UniRef50_UPI0004423401 PREDICTED 0.215218230716 0.5 0.284781769284 +UniRef50_C9LYG0 Lipoprotein 0.260777992717 0.5 0.239222007283 +UniRef50_Q9HXK5 2 isopropylmalate synthase 0.114911958106 0.5 0.385088041894 +UniRef50_UPI00047437D2 hypothetical protein 0.0348036875367 0.5 0.465196312463 +UniRef50_A6M2U6 Response regulator receiver protein 9.80199803588 0.499999999998 -9.30199803588 +UniRef50_UPI0001FFE930 peptide ABC transporter ATP binding protein 0.266903482385 0.5 0.233096517615 +UniRef50_M0QW80 Protein Gm26571 0.218034798119 0.5 0.281965201881 +UniRef50_F8H984 Two component sensor 0.520286111245 0.5 -0.020286111245 +UniRef50_L8NI67 17.7436691004 0.500000000004 -17.2436691004 +UniRef50_P45868 Probable NAD dependent malic enzyme 2 0.00411657039994 0.5 0.4958834296 +UniRef50_A5I0L6 Cyclic nucleotide binding domain protein 0.200207940393 0.5 0.299792059607 +UniRef50_X2H6U2 Two component system histidine kinase 0.0540091296441 0.5 0.445990870356 +UniRef50_B6J695 NADH quinone oxidoreductase subunit B 0.156847189228 0.5 0.343152810772 +UniRef50_V4YKS4 DNA directed RNA polymerase 0.0117061067872 0.5 0.488293893213 +UniRef50_L9TGP7 Exonuclease V subunit beta 1.30262088437 0.5 -0.802620884366 +UniRef50_Q6GE63 7.09455460581 0.5 -6.59455460581 +UniRef50_D4HD09 0.0667227117962 0.5 0.433277288204 +UniRef50_UPI0003635A0A hypothetical protein 0.485469088983 0.5 0.0145309110172 +UniRef50_C0QFA3 PstS1 0.455278448282 0.5 0.0447215517183 +UniRef50_A6M264 Lantibiotic modifying like protein 0.0384991328395 0.5 0.461500867161 +UniRef50_UPI0001850C5F exsB protein 2.724644911 0.5 -2.224644911 +UniRef50_B4U3E4 Histidine protein kinase 1.09470285716 0.5 -0.594702857164 +UniRef50_R4QKT1 Fibronectin 0.0315185434509 0.5 0.468481456549 +UniRef50_F2UJQ2 0.359840239472 0.5 0.140159760528 +UniRef50_UPI0003B71026 MerR family transcriptional regulator 0.0465402036432 0.5 0.453459796357 +UniRef50_M4S432 LysR family transcriptional regulator 0.0202507831695 0.5 0.479749216831 +UniRef50_V4PX87 0.481131556745 0.5 0.0188684432546 +UniRef50_A6LXR1 0.383755058502 0.5 0.116244941498 +UniRef50_A6LX56 PAS PAC sensor signal transduction histidine kinase 0.174704985317 0.5 0.325295014683 +UniRef50_G8V9G8 Luciferase family oxidoreductase, group 1 0.0166869819958 0.5 0.483313018004 +UniRef50_B9DIP6 Pseudouridine synthase 0.655830519758 0.5 -0.155830519758 +UniRef50_UPI00034DB930 hypothetical protein 0.114497770305 0.5 0.385502229695 +UniRef50_Q0FVR8 0.277237131042 0.5 0.222762868958 +UniRef50_Q7V5R2 Fumarate hydratase class II 0.277905435952 0.5 0.222094564048 +UniRef50_B2IAX9 Tyrosine tRNA ligase 1.55410384829 0.5 -1.05410384829 +UniRef50_D3A3L2 0.0891505009836 0.5 0.410849499016 +UniRef50_H1KT40 1.38031426953 0.5 -0.880314269532 +UniRef50_Q2JKE8 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.491350840012 0.5 0.00864915998844 +UniRef50_A3VLI2 Replication initiator RepC 1.4928242472 0.5 -0.992824247199 +UniRef50_UPI00035F5471 hypothetical protein 0.113530871722 0.5 0.386469128278 +UniRef50_P44270 0.0449289603778 0.5 0.455071039622 +UniRef50_N6WGS6 Glycolate oxidase iron sulfur subunit 0.1650674504 0.499999999999 0.3349325496 +UniRef50_UPI0003637414 hypothetical protein 0.158789100728 0.5 0.341210899272 +UniRef50_B9ADC4 CRISPR associated endonuclease Cas1 3.58442950336 0.500000000003 -3.08442950337 +UniRef50_Q28KP2 N acetylmuramic acid 6 phosphate etherase 1.69818783412 0.499999999999 -1.19818783412 +UniRef50_O32507 Succinate semialdehyde dehydrogenase [NADP] 5.49702549699e-05 0.5 0.499945029745 +UniRef50_Q8KBK4 50S ribosomal protein L13 0.115145540516 0.5 0.384854459484 +UniRef50_UPI0002378E6D type II secretion system protein E 1.06730616278 0.5 -0.567306162781 +UniRef50_P32135 Inner membrane protein YihN 0.792638949892 0.5 -0.292638949892 +UniRef50_B7GVD0 LysR substrate binding domain protein 0.010438885593 0.499999999999 0.489561114408 +UniRef50_A6M010 GCN5 related N acetyltransferase 0.0678964891832 0.5 0.432103510817 +UniRef50_F8G3F6 TetR family transcriptional regulator 1.69672793904 0.5 -1.19672793904 +UniRef50_UPI00047242E7 3 hydroxybutyryl CoA dehydrogenase 0.242637839746 0.5 0.257362160254 +UniRef50_A8B6F6 0.701085023714 0.5 -0.201085023714 +UniRef50_C5L3X3 Cysteine synthase, putative 3.3538831424 0.5 -2.8538831424 +UniRef50_UPI0002EB3FDF hypothetical protein 0.105694197975 0.5 0.394305802025 +UniRef50_Q6F7U5 0.0219189392162 0.5 0.478081060784 +UniRef50_Q9I676 D hydantoinase dihydropyrimidinase 1.95472628647 0.5 -1.45472628647 +UniRef50_UPI00041336EE alkylhydroperoxidase 0.673496009807 0.5 -0.173496009807 +UniRef50_Q3BPQ5 42.5416491399 0.500000000057 -42.0416491399 +UniRef50_F7W5G6 WGS project CABT00000000 data, contig 2.30 1.79318705115 0.5 -1.29318705115 +UniRef50_O34808 Uronate isomerase 0.140651442951 0.5 0.359348557049 +UniRef50_UPI000362A126 hypothetical protein 0.364424071708 0.5 0.135575928292 +UniRef50_UPI000373C086 hypothetical protein 0.0250860820511 0.499999999999 0.47491391795 +UniRef50_A6M385 Response regulator receiver protein 0.0872570212765 0.5 0.412742978724 +UniRef50_UPI0004560391 hypothetical protein PFL1_05761 0.456614304376 0.5 0.0433856956239 +UniRef50_D6SI05 0.656991142117 0.5 -0.156991142117 +UniRef50_W7VQI3 Basic proline rich protein 0.694000336996 0.5 -0.194000336996 +UniRef50_C1AFW3 Cobyrinic acid a,c diamide adenosyltransferase 0.0342184829057 0.5 0.465781517094 +UniRef50_UPI000474482D hypothetical protein, partial 0.347996264596 0.5 0.152003735404 +UniRef50_Q97IA9 UPF0348 protein CA_C1741 0.194922516116 0.5 0.305077483884 +UniRef50_UPI00042BA8AC PREDICTED 0.261955403122 0.5 0.238044596878 +UniRef50_UPI0001BC2D00 helicase 0.530382668095 0.5 -0.0303826680952 +UniRef50_P21517 Maltodextrin glucosidase 1.36996251187 0.5 -0.869962511866 +UniRef50_H3VA72 PF04394 family protein 1.48388739566 0.5 -0.983887395657 +UniRef50_UPI00044163EB hypothetical protein PUNSTDRAFT_130809 0.110290623676 0.5 0.389709376325 +UniRef50_E3CRS2 0.333194761185 0.5 0.166805238815 +UniRef50_Q6FC54 DNA mismatch repair protein MutS 0.00314008887045 0.5 0.49685991113 +UniRef50_UPI00032905A5 PREDICTED 6.46308733608 0.499999999999 -5.96308733608 +UniRef50_E5API3 Transposase 9.86062946737 0.500000000004 -9.36062946738 +UniRef50_Q3IUX0 0.143501648317 0.5 0.356498351683 +UniRef50_UPI00047647D3 hypothetical protein 8.38229735222 0.5 -7.88229735222 +UniRef50_O27047 tRNA 2 agmatinylcytidine synthetase TiaS 2.11321936479 0.499999999999 -1.61321936479 +UniRef50_E3A3J4 Fimbrial subunit CupA4 0.495788334534 0.5 0.00421166546584 +UniRef50_UPI00047BE124 sulfite oxidase 1.72378594289 0.5 -1.22378594289 +UniRef50_P54954 Probable amino acid import ATP binding protein YxeO 0.0106483975062 0.5 0.489351602494 +UniRef50_Q9X3Y6 DNA gyrase subunit B 0.0210143087626 0.5 0.478985691237 +UniRef50_UPI000381C95D hypothetical protein 0.844756594924 0.5 -0.344756594924 +UniRef50_N8PPS0 0.022584914233 0.5 0.477415085767 +UniRef50_Q2S2A1 Imidazoleglycerol phosphate dehydratase 1.10780978948 0.5 -0.607809789481 +UniRef50_F2F5B1 Predicted acetamidase formamidase 0.924459395483 0.5 -0.424459395483 +UniRef50_P75859 3.05430699102 0.500000000002 -2.55430699103 +UniRef50_C6SRL3 2.17451933408 0.5 -1.67451933408 +UniRef50_P58356 Sensor protein TorS 5.04435469089 0.499999999997 -4.54435469088 +UniRef50_M2HZ79 Putative transposase, IS150 like protein 0.428861576143 0.5 0.0711384238571 +UniRef50_A0A017HPG3 1.26634668632 0.5 -0.766346686321 +UniRef50_P20712 Bifunctional dihydrofolate reductase thymidylate synthase 0.106109672115 0.5 0.393890327885 +UniRef50_Q48BK0 Glucans biosynthesis protein D 0.504910197386 0.5 -0.00491019738586 +UniRef50_K7S7X3 0.366909450131 0.5 0.133090549869 +UniRef50_C8RX73 Flagellar FlaF family protein 0.504708546907 0.5 -0.00470854690708 +UniRef50_Q5FUN5 50S ribosomal protein L32 1.07111880949 0.5 -0.571118809495 +UniRef50_Q3JHB3 0.223306556875 0.5 0.276693443125 +UniRef50_C6S564 ATPase involved in chromosome partitioning 0.0134980154349 0.5 0.486501984565 +UniRef50_B0VRQ2 0.00548736201669 0.5 0.494512637984 +UniRef50_F9WBG1 WGS project CAEQ00000000 data, annotated contig 2102 0.257276056247 0.5 0.242723943753 +UniRef50_M9VFS0 Beta galactosidase 0.00978073510256 0.5 0.490219264898 +UniRef50_UPI00038210EB hypothetical protein 2.56779585927 0.500000000003 -2.06779585927 +UniRef50_Q5XAF5 PTS system mannose specific EIIAB component 0.497683227717 0.5 0.002316772283 +UniRef50_UPI0003B66035 preprotein translocase subunit TatA 0.696293494232 0.5 -0.196293494232 +UniRef50_A8LLI4 Transcriptional regulator 18.5168682709 0.499999999995 -18.0168682709 +UniRef50_UPI00036B21D8 hypothetical protein 0.683736178948 0.5 -0.183736178948 +UniRef50_P0A9G7 Isocitrate lyase 0.0557353358467 0.5 0.444264664153 +UniRef50_Q726S7 Phosphate acetyltransferase 0.146142695941 0.5 0.353857304059 +UniRef50_Q57083 HTH type transcriptional regulator PerR 1.05766321816 0.5 -0.557663218162 +UniRef50_N4K7E1 Intergenic region domain protein 0.411303009117 0.5 0.0886969908826 +UniRef50_UPI00029A45C7 alkyl hydroperoxide reductase thiol specific antioxidant mal allergen 0.0101253761527 0.5 0.489874623847 +UniRef50_P0AEX1 1 phosphofructokinase 1.6751613901 0.500000000001 -1.1751613901 +UniRef50_J9CDN0 0.0604582190653 0.500000000001 0.439541780934 +UniRef50_Q9I399 0.274118034461 0.5 0.225881965539 +UniRef50_D8JJR4 Indoleacetamide hydrolase (Indole 3 acetamidehydrolase) 0.00596016572322 0.5 0.494039834277 +UniRef50_UPI00039D5255 cation 0.282513971989 0.5 0.217486028011 +UniRef50_UPI000369419C hypothetical protein 0.034790631747 0.5 0.465209368253 +UniRef50_UPI00040205B3 hypothetical protein 0.341042982307 0.5 0.158957017693 +UniRef50_UPI0002DD9DEF hypothetical protein 0.00249634188578 0.5 0.497503658114 +UniRef50_Q3A6U9 Flotillin band_7_stomatin like domain protein 0.0488902025304 0.5 0.45110979747 +UniRef50_H2J1V2 ABC type dipeptide oligopeptide nickel transport system, permease component 3.38943760844 0.5 -2.88943760844 +UniRef50_B0R6S2 Glycerol kinase 0.0525646204532 0.5 0.447435379547 +UniRef50_UPI000345EF10 hypothetical protein 0.247620022316 0.5 0.252379977684 +UniRef50_UPI00035FBF65 hypothetical protein 0.0154635193064 0.5 0.484536480694 +UniRef50_R9SJL7 Precorrin 6y C5,15 methyltransferase CbiE 0.628006610962 0.5 -0.128006610962 +UniRef50_UPI0004714D3A NADH dehydrogenase 0.628535869091 0.5 -0.128535869091 +UniRef50_W9A1H3 0.438129607958 0.5 0.0618703920417 +UniRef50_Q0RAT5 Spermidine putrescine import ATP binding protein PotA 0.435992695242 0.5 0.0640073047575 +UniRef50_W7HYY6 0.0407482477027 0.5 0.459251752297 +UniRef50_UPI000470BDCC ABC transporter permease 1.93550855912 0.5 -1.43550855912 +UniRef50_M9VFR5 D alanine D alanine ligase 0.0537259905429 0.5 0.446274009457 +UniRef50_I0EM51 Zinc protease 0.0123254506846 0.5 0.487674549315 +UniRef50_A6LYZ9 Peptidase C45, acyl coenzyme A 0.0501771565191 0.5 0.449822843481 +UniRef50_B0I1W2 0.421082821667 0.5 0.078917178333 +UniRef50_Q8CS09 DNA topoisomerase 1.58689401898 0.5 -1.08689401898 +UniRef50_A9CR98 2.92950195071 0.500000000001 -2.42950195071 +UniRef50_D4U0U9 Cell wall binding repeat protein 0.012455501445 0.5 0.487544498555 +UniRef50_A9CR91 0.245142153934 0.5 0.254857846066 +UniRef50_A0A023S1K2 ABC transporter substrate binding protein 0.0299780298148 0.5 0.470021970185 +UniRef50_UPI0003B30E52 organic solvent ABC transporter ATP binding protein 1.75983058614 0.5 -1.25983058614 +UniRef50_Q9I024 0.0148781890912 0.5 0.485121810908 +UniRef50_Q52282 Putative protein KleG 0.0389810521062 0.500000000001 0.461018947893 +UniRef50_UPI0004784EFD hypothetical protein, partial 3.46088713364 0.500000000006 -2.96088713364 +UniRef50_UPI000478461E zinc binding protein 0.146583283101 0.5 0.353416716899 +UniRef50_D8JNP8 Xylanase chitin deacetylase 0.023565288601 0.5 0.476434711399 +UniRef50_UPI000248C70B chemotaxis protein CheY 0.131102161215 0.5 0.368897838785 +UniRef50_P76056 Putative lambdoid prophage Rac integrase 0.345689127815 0.5 0.154310872185 +UniRef50_A6QIJ7 Endodeoxyribonuclease RusA 4.80873814919 0.5 -4.30873814919 +UniRef50_D3JD05 Spermidine N acetyltransferase 0.596197799203 0.5 -0.0961977992027 +UniRef50_UPI00047076F4 hypothetical protein, partial 0.363116480801 0.5 0.136883519199 +UniRef50_Q7XUN3 OSJNBa0064M23.10 protein 4.25309136056 0.5 -3.75309136056 +UniRef50_A0A059DVD1 2.25410363468 0.500000000002 -1.75410363468 +UniRef50_UPI000288E019 sulfate ABC transporter membrane protein 0.0354136193947 0.5 0.464586380605 +UniRef50_UPI0003B6935E hypothetical protein, partial 0.240718460393 0.499999999999 0.259281539608 +UniRef50_Q0C1E4 NADH quinone oxidoreductase subunit D 0.264172552338 0.5 0.235827447662 +UniRef50_UPI000373A2A8 hypothetical protein 0.236278898579 0.5 0.263721101421 +UniRef50_S2TS61 Hydantoin utilization protein A 0.224149411624 0.5 0.275850588376 +UniRef50_W4PJR5 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.535470037963 0.5 -0.0354700379634 +UniRef50_Q5SJB6 Membrane lipoprotein 0.00129057896467 0.5 0.498709421036 +UniRef50_UPI0004702CE7 hypothetical protein, partial 0.041174342998 0.5 0.458825657002 +UniRef50_O07084 Cadmium, cobalt and zinc H K(+) antiporter 1.50113570707 0.5 -1.00113570707 +UniRef50_UPI0003F0E976 PREDICTED 3.2292051072 0.500000000001 -2.7292051072 +UniRef50_UPI00037CFCEC hypothetical protein 0.429462060001 0.5 0.0705379399988 +UniRef50_UPI00047A74FB hypothetical protein 0.265058175757 0.5 0.234941824243 +UniRef50_F4CWU8 Cell envelope related transcriptional attenuator 0.545997366404 0.5 -0.0459973664037 +UniRef50_UPI0003724082 hypothetical protein 0.139748043582 0.5 0.360251956418 +UniRef50_A4X015 2.22916797029 0.499999999999 -1.72916797029 +UniRef50_A5IQC1 LmbE family protein 1.525489195 0.500000000001 -1.025489195 +UniRef50_A5ZX27 0.329375963135 0.5 0.170624036865 +UniRef50_Q989X5 Msl6246 protein 0.339884532289 0.5 0.160115467711 +UniRef50_P27241 Lipopolysaccharide core biosynthesis protein RfaZ 0.274250172037 0.5 0.225749827963 +UniRef50_UPI000468A625 ABC transporter ATP binding protein 1.16785892573 0.5 -0.667858925726 +UniRef50_L7WYU2 Aldo keto reductase 1.20340999688 0.5 -0.703409996883 +UniRef50_UPI0002ED3852 hypothetical protein 0.150201071255 0.5 0.349798928745 +UniRef50_B3HH44 Tail protein 0.425028887773 0.5 0.0749711122274 +UniRef50_F5M3A2 Transposase IS116 IS110 IS902 0.469632468562 0.5 0.0303675314383 +UniRef50_Q2NHQ3 Probable cobyrinic acid A,C diamide synthase 1.2972481065 0.5 -0.7972481065 +UniRef50_UPI000237D266 carboxymuconolactone decarboxylase 0.194839942442 0.5 0.305160057558 +UniRef50_D7CX06 Lysine biosynthesis enzyme LysX 0.00399105983212 0.5 0.496008940168 +UniRef50_U1QU88 Rhamnan synthesis protein F 0.00178543473436 0.5 0.498214565266 +UniRef50_W0R6T6 Glutamine tRNA ligase 0.63928783715 0.5 -0.13928783715 +UniRef50_D6SHR9 C4 dicarboxylate transporter malic acid transport protein 5.57895685063 0.5 -5.07895685063 +UniRef50_UPI00036FEF96 hypothetical protein 0.0244850821431 0.5 0.475514917857 +UniRef50_Q3JJE8 Oxidoreductase, short chain dehydrogenase reductase family 0.0512876590056 0.5 0.448712340995 +UniRef50_UPI0004663F41 calcium binding protein, partial 0.360499661475 0.5 0.139500338525 +UniRef50_M2C9Y4 3.29849153652 0.499999999998 -2.79849153652 +UniRef50_Q2CH95 ISSpo7, transposase 1.08467328328 0.5 -0.584673283279 +UniRef50_A8LQ48 0.173505662698 0.5 0.326494337302 +UniRef50_D4HAW2 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.0233202029916 0.5 0.476679797008 +UniRef50_E8SJ70 Organic hydroperoxide resistance protein 2.17391561642 0.5 -1.67391561642 +UniRef50_Q8CRU1 1.95157151701 0.500000000002 -1.45157151701 +UniRef50_R9YKU7 Na+ dependent nucleoside transporter family protein 5.02575559923 0.500000000002 -4.52575559923 +UniRef50_UPI0004681F99 hypothetical protein 0.240905285323 0.5 0.259094714677 +UniRef50_Q83JF8 0.624110588923 0.5 -0.124110588923 +UniRef50_E8RC09 0.18386950364 0.5 0.31613049636 +UniRef50_Q8CRU7 1.81101454558 0.5 -1.31101454558 +UniRef50_Q8CRU6 1.44589111486 0.499999999998 -0.945891114856 +UniRef50_UPI000468FB82 ATPase 8.12807267561 0.499999999997 -7.6280726756 +UniRef50_Q6AAE4 Thiazole synthase 0.0250058155395 0.5 0.474994184461 +UniRef50_F8DI84 ABC transporter, ATP binding protein 0.767137609431 0.5 -0.267137609431 +UniRef50_J9P994 0.218954706341 0.5 0.281045293659 +UniRef50_B0N8M0 1.0722609823 0.5 -0.572260982301 +UniRef50_P37353 2 succinylbenzoate CoA ligase 1.17078151561 0.5 -0.670781515611 +UniRef50_D3H4R6 0.330332003578 0.5 0.169667996422 +UniRef50_A3K475 5.94757235656 0.500000000001 -5.44757235656 +UniRef50_P76037 Putrescine importer PuuP 2.11815166324 0.5 -1.61815166324 +UniRef50_Q2W0K2 ATPase involved in chromosome partitioning 3.91048198692 0.500000000004 -3.41048198693 +UniRef50_A0A017HBN8 Polyhydroxyalkanoate depolymerase, intracellular 2.94022523954 0.499999999999 -2.44022523954 +UniRef50_A6LXH8 MORN repeat containing protein 0.0371865656924 0.5 0.462813434307 +UniRef50_UPI00004C2754 COG1063 0.236164737806 0.5 0.263835262194 +UniRef50_P22825 PTS system sucrose specific EIIBC component 2.04419644276 0.500000000001 -1.54419644276 +UniRef50_M9VJF8 Phosphate transport system permease protein PstA 0.0235796840598 0.5 0.47642031594 +UniRef50_V6ZI12 Pyridoxal phosphate dependent enzyme family protein 0.457009659216 0.5 0.0429903407844 +UniRef50_O58855 Orotate phosphoribosyltransferase 4.71270619742 0.499999999999 -4.21270619742 +UniRef50_A5N2B2 Phage related protein 0.173062227845 0.5 0.326937772155 +UniRef50_B5YH68 3 phosphoshikimate 1 carboxyvinyltransferase 0.283822014693 0.5 0.216177985307 +UniRef50_A6LZC1 AraC type transcriptional regulator domain protein 0.0807365003311 0.5 0.419263499669 +UniRef50_D6SEI0 Mannose 6 phosphate isomerase, class I 1.26363951599 0.500000000001 -0.763639515987 +UniRef50_P15428 15 hydroxyprostaglandin dehydrogenase [NAD] 0.00964144276267 0.5 0.490358557238 +UniRef50_Q4DJ07 Prostaglandin F synthase 1.26743861278 0.5 -0.767438612776 +UniRef50_Q53151 Flagellar M ring protein 1.03610039394 0.5 -0.536100393944 +UniRef50_J3M9R4 4.40340556996 0.500000000001 -3.90340556996 +UniRef50_M8HET6 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.182099444417 0.5 0.317900555584 +UniRef50_D5RKR4 0.158758283925 0.5 0.341241716075 +UniRef50_A1KRZ2 Phosphate acyltransferase 0.062157286275 0.5 0.437842713725 +UniRef50_A0A014H8V3 Thi4 family protein 0.0276902432706 0.5 0.472309756729 +UniRef50_O83092 Ribonucleoside diphosphate reductase subunit beta 0.00786559985671 0.5 0.492134400143 +UniRef50_B4RLX4 DNA mismatch repair protein MutL 0.0235492240561 0.5 0.476450775944 +UniRef50_X8C7Q8 Cell envelope related transcriptional attenuator domain protein 0.310349736986 0.5 0.189650263014 +UniRef50_F2E943 Predicted protein 0.0888513610863 0.5 0.411148638914 +UniRef50_Q3J0Q8 Multisensor hybrid histidine kinase 2.17665787158 0.5 -1.67665787158 +UniRef50_Q57565 Signal recognition particle 54 kDa protein 3.40538810647 0.499999999999 -2.90538810647 +UniRef50_UPI000474AE61 TetR family transcriptional regulator 0.113021776331 0.5 0.386978223669 +UniRef50_M7DFK4 2 hydroxyglutaryl CoA dehydratase activator related protein 0.84149144926 0.5 -0.34149144926 +UniRef50_A0A038G1M9 0.0731104173379 0.5 0.426889582663 +UniRef50_UPI00037E7CFC hypothetical protein 0.994225359677 0.5 -0.494225359677 +UniRef50_UPI000424F639 hypothetical protein 0.31641321356 0.5 0.18358678644 +UniRef50_UPI0003B51DAD aconitate hydratase 0.150726174085 0.5 0.349273825915 +UniRef50_UPI00047DF06C RNA polymerase subunit sigma 24 0.687108722414 0.5 -0.187108722414 +UniRef50_J1B9G8 28.0758742619 0.499999999957 -27.5758742619 +UniRef50_S4RE69 1.81984448975 0.5 -1.31984448975 +UniRef50_V9U3F4 Penicillin binding protein 0.200266020611 0.5 0.299733979389 +UniRef50_P26946 1.25880973881 0.5 -0.758809738814 +UniRef50_UPI0001B42DB2 3 methyl 2 oxobutanoate hydroxymethyltransferase, partial 1.62735117866 0.500000000001 -1.12735117866 +UniRef50_G7ZME4 Acetyltransferase family protein 1.28579180563 0.5 -0.785791805633 +UniRef50_I6SXG2 0.342842113858 0.5 0.157157886142 +UniRef50_J9P1W0 0.236404896861 0.5 0.263595103139 +UniRef50_UPI000478FE81 ATP dependent DNA helicase PcrA 0.52137002505 0.5 -0.0213700250501 +UniRef50_D4HCQ0 0.147480545857 0.499999999999 0.352519454144 +UniRef50_R1DZ31 0.882188807391 0.5 -0.382188807391 +UniRef50_W4ZID1 0.00852843381908 0.5 0.491471566181 +UniRef50_Q3IUV9 TraU 1.62888373459 0.499999999998 -1.12888373459 +UniRef50_A0A017SU62 0.540913443339 0.5 -0.0409134433386 +UniRef50_R5RCL0 Chromosomal replication initiator 2.75213566234 0.5 -2.25213566234 +UniRef50_UPI0003738950 hypothetical protein 0.422705121323 0.5 0.077294878677 +UniRef50_UPI0003B5CBF4 thioredoxin 0.815931177951 0.5 -0.315931177951 +UniRef50_A7IGI6 Appr 1 p processing domain protein 0.0338940882092 0.500000000001 0.46610591179 +UniRef50_A0A059LGP9 0.056995508183 0.5 0.443004491817 +UniRef50_P35886 DNA gyrase subunit B 0.0242431831901 0.5 0.47575681681 +UniRef50_Q6C7L4 Thioredoxin reductase 1.04320265681 0.5 -0.543202656813 +UniRef50_K0B2S0 0.0239803451011 0.5 0.476019654899 +UniRef50_UPI000360C821 MULTISPECIES 0.174814963891 0.5 0.325185036109 +UniRef50_UPI00036ED5A7 hypothetical protein 2.2063208943 0.499999999999 -1.70632089429 +UniRef50_W0IKU6 0.415757530372 0.5 0.0842424696281 +UniRef50_I4MVU8 Membrane protein 1.80455890082 0.5 -1.30455890082 +UniRef50_V4R951 0.230794590686 0.5 0.269205409314 +UniRef50_Q8FJC7 DNA translocase FtsK 0.15618347865 0.5 0.34381652135 +UniRef50_UPI00040EF117 hypothetical protein 3.0484970416 0.500000000004 -2.5484970416 +UniRef50_M4X643 SAM dependent methyltransferase 0.657498046235 0.5 -0.157498046235 +UniRef50_H6VX66 0.007181256554 0.499999999999 0.492818743447 +UniRef50_B8IA33 Fumarylacetoacetate hydrolase 6.12947513874 0.499999999998 -5.62947513874 +UniRef50_A1T726 0.273841182934 0.5 0.226158817066 +UniRef50_T1YCU2 Siderophore synthase 2.07179612369 0.499999999999 -1.57179612369 +UniRef50_Q85FX6 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.867047311735 0.5 -0.367047311735 +UniRef50_I1ZJT5 Competence protein ComYD 0.132371712474 0.5 0.367628287526 +UniRef50_P45857 Acyl CoA dehydrogenase 0.0986235682666 0.5 0.401376431733 +UniRef50_Q3JIW0 0.0969270111435 0.5 0.403072988856 +UniRef50_F8M7U6 PE PGRS family protein 0.0480785906 0.5 0.4519214094 +UniRef50_F4D588 Type I restriction modification system, M subunit 0.0234538547681 0.5 0.476546145232 +UniRef50_UPI0002484AC1 patatin family phospholipase 0.146948871919 0.5 0.353051128081 +UniRef50_Q57609 GTP cyclohydrolase III 0.51200643205 0.5 -0.01200643205 +UniRef50_S5XQ93 1.42005344666 0.5 -0.920053446663 +UniRef50_Q8DBE9 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 0.641936880264 0.5 -0.141936880264 +UniRef50_J1LSW8 0.0113345748658 0.500000000001 0.488665425133 +UniRef50_U4UXP2 1.67888905008 0.5 -1.17888905008 +UniRef50_A4VYZ2 ABC type sugar transport system, periplasmic component 0.0934252013653 0.5 0.406574798635 +UniRef50_Q73WG1 Serine hydroxymethyltransferase 0.240290555655 0.5 0.259709444345 +UniRef50_Q4A0F8 ABC type transport system involved in lipoprotein release permease component 2.65329767414 0.499999999998 -2.15329767414 +UniRef50_D9RM99 Phage N acetylglucosaminidase 7.38915279579 0.500000000002 -6.8891527958 +UniRef50_A1A081 50S ribosomal protein L5 2.77896120332 0.499999999998 -2.27896120332 +UniRef50_P44839 RutC family protein HI_0719 3.38000794238 0.500000000006 -2.88000794239 +UniRef50_V7EMQ8 1.06728151669 0.5 -0.567281516689 +UniRef50_UPI0002653244 PREDICTED 0.674312105735 0.5 -0.174312105735 +UniRef50_UPI000362C6BE hypothetical protein 0.0258766786718 0.5 0.474123321328 +UniRef50_Q6D734 Fe ions import ATP binding protein FbpC 1 1.37526504528 0.5 -0.875265045283 +UniRef50_P08064 Succinate dehydrogenase cytochrome b558 subunit 2.04236665218 0.499999999999 -1.54236665218 +UniRef50_Q59638 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 2.45684065016 0.5 -1.95684065016 +UniRef50_UPI0003C1126B PREDICTED 1.14374449085 0.5 -0.643744490854 +UniRef50_Q3ACC4 LexA repressor 2.37203892539 0.5 -1.87203892539 +UniRef50_Q48QB2 Fatty acid desaturase 0.504568828813 0.5 -0.00456882881322 +UniRef50_UPI0003B5C4DC 30S ribosomal protein S3 0.285858488837 0.5 0.214141511163 +UniRef50_O31632 Cystathionine beta lyase MetC 0.0683881807703 0.5 0.43161181923 +UniRef50_Q2G2P8 ADP dependent NAD(P)H hydrate dehydratase 1.6909511436 0.5 -1.1909511436 +UniRef50_K7SJI3 Transporter, major facilitator family protein 0.00586354853635 0.5 0.494136451464 +UniRef50_UPI00035DD1FA diaminopimelate decarboxylase, partial 0.011366605561 0.5 0.488633394439 +UniRef50_Q58094 Putative transketolase N terminal section 0.213841797772 0.5 0.286158202228 +UniRef50_A1WVC8 DNA directed RNA polymerase subunit beta 0.247028993697 0.5 0.252971006303 +UniRef50_UPI000347C25A hypothetical protein 1.23042236498 0.5 -0.730422364976 +UniRef50_Q9ZLS9 Transcription termination factor Rho 0.429566269964 0.5 0.0704337300362 +UniRef50_T1Y682 Transporter 1.89643415322 0.499999999999 -1.39643415322 +UniRef50_H1Z450 AMP dependent synthetase and ligase 1.36296118308 0.500000000001 -0.862961183083 +UniRef50_Q58575 Chorismate synthase 0.0944440640461 0.5 0.405555935954 +UniRef50_B9KRV4 Outer membrane protein 7.28995109346 0.499999999998 -6.78995109345 +UniRef50_I4D2I9 Calcium proton exchanger Cax 0.0589074424847 0.5 0.441092557515 +UniRef50_F3WH46 Pertactin family protein 3.92103340823 0.500000000003 -3.42103340824 +UniRef50_F8G2I2 ppGpp synthetase I, SpoT RelA 0.438802849375 0.5 0.0611971506251 +UniRef50_Q45223 3 hydroxybutyryl CoA dehydrogenase 0.0244966387617 0.5 0.475503361238 +UniRef50_Q9RYC5 0.00100975406085 0.5 0.498990245939 +UniRef50_F9Y8G5 4 hydroxybenzoate polyprenyl transferase 1.76169898339 0.5 -1.26169898339 +UniRef50_Q8DW77 1.49617232467 0.5 -0.996172324668 +UniRef50_Q8DW75 1.2775252055 0.500000000001 -0.777525205505 +UniRef50_Q6FF92 50S ribosomal protein L10 0.176638953226 0.5 0.323361046774 +UniRef50_Q8DW79 0.228257362723 0.5 0.271742637277 +UniRef50_P18416 Transposase for transposon Tn552 2.14114906526 0.5 -1.64114906526 +UniRef50_R7B660 Dihydrodipicolinate reductase domain protein 1.08038249097 0.5 -0.580382490969 +UniRef50_UPI00046F0297 hypothetical protein 1.07204240057 0.5 -0.572042400568 +UniRef50_UPI000475E0B3 hypothetical protein 0.199123339677 0.5 0.300876660323 +UniRef50_UPI000382CD04 hypothetical protein, partial 3.1499109105 0.5 -2.6499109105 +UniRef50_Q7VFL0 Lysine tRNA ligase 0.0208780985662 0.5 0.479121901434 +UniRef50_Q9ZKB2 Glucose 6 phosphate 1 dehydrogenase 0.004674812908 0.5 0.495325187092 +UniRef50_P21264 Phosphoribosylaminoimidazole carboxylase 0.397539568538 0.5 0.102460431462 +UniRef50_P96060 2 aminoethylphosphonate pyruvate transaminase 0.0141168796767 0.5 0.485883120323 +UniRef50_L7ZNE5 ABC transporter ATP binding protein 0.107576822652 0.5 0.392423177348 +UniRef50_A8Z2F6 0.339678371065 0.5 0.160321628935 +UniRef50_T9L0J3 4.48693155711 0.499999999996 -3.9869315571 +UniRef50_I4EST6 4.2959235106 0.500000000001 -3.7959235106 +UniRef50_R5P601 Anthranilate synthase component II 0.156248473214 0.5 0.343751526786 +UniRef50_B1ZAH8 Binding protein dependent transport systems inner membrane component 0.0234672739743 0.5 0.476532726026 +UniRef50_A3PS89 Alpha beta hydrolase fold 4.06613955725 0.500000000002 -3.56613955725 +UniRef50_A0A011M2C2 Lipopolysaccharide export system ATP binding protein LptB 0.10569810337 0.5 0.39430189663 +UniRef50_D3V7P3 Multidrug resistance protein MdtB 2.2651661824 0.5 -1.7651661824 +UniRef50_B7M9X6 Adenosine deaminase 0.193032038774 0.5 0.306967961226 +UniRef50_UPI000370A178 hypothetical protein 0.210596086148 0.5 0.289403913852 +UniRef50_J9YXD5 Amino acid amide ABC transporter membrane protein, 2, HAAT family 2.05206865023 0.5 -1.55206865023 +UniRef50_E9UN53 20.0104204844 0.500000000027 -19.5104204844 +UniRef50_O83658 Spermidine putrescine import ATP binding protein PotA 0.566217536411 0.5 -0.0662175364112 +UniRef50_E1W4Y0 0.0136718356396 0.5 0.48632816436 +UniRef50_E1W4Y6 0.39484751466 0.5 0.10515248534 +UniRef50_Q8E4F9 Probable tRNA sulfurtransferase 0.511309170035 0.5 -0.0113091700348 +UniRef50_B7GPE3 Ribosomal RNA small subunit methyltransferase A 0.0408811470649 0.5 0.459118852935 +UniRef50_UPI000359998F PREDICTED 2.51664047993 0.5 -2.01664047993 +UniRef50_R1DHJ6 0.8165428531 0.5 -0.3165428531 +UniRef50_Q97FC1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 2 0.192345169841 0.5 0.307654830159 +UniRef50_H1C309 Cellulose synthase operon protein C 0.444615171158 0.5 0.0553848288418 +UniRef50_U6KCN1 0.0545191337523 0.5 0.445480866248 +UniRef50_UPI000371DD5B hypothetical protein 0.148268646048 0.5 0.351731353952 +UniRef50_E8XUV9 Lysozyme 2.33549293242 0.500000000001 -1.83549293242 +UniRef50_U5SV18 0.220077942973 0.5 0.279922057027 +UniRef50_R7CJA9 Binding protein dependent transport system inner membrane component 0.285194591693 0.5 0.214805408307 +UniRef50_UPI00037382D8 ABC transporter permease 0.104240524963 0.5 0.395759475037 +UniRef50_M9R962 2.29623988804 0.499999999997 -1.79623988804 +UniRef50_Q9RS94 0.00364086924734 0.5 0.496359130752 +UniRef50_B0BPX9 DNA polymerase IV 5.43781174129 0.500000000004 -4.9378117413 +UniRef50_Q9RS99 0.0016591646475 0.5 0.498340835352 +UniRef50_UPI0004753E7E polyamine ABC transporter substrate binding protein 0.743069906761 0.5 -0.243069906761 +UniRef50_Q5FL50 Phosphoglycerate kinase 0.0502642469 0.5 0.4497357531 +UniRef50_B7H3D4 FhuE receptor 0.00923525688057 0.5 0.49076474312 +UniRef50_G0VME5 Citrate transporter 0.149711352325 0.5 0.350288647675 +UniRef50_A5UMK8 Arginine tRNA ligase 1.36886129914 0.5 -0.868861299137 +UniRef50_Q3JUL5 Benzoate transport protein 0.121375906111 0.5 0.378624093889 +UniRef50_Q9JZR3 23S rRNA methyltransferase RlmB 0.0260238433074 0.5 0.473976156693 +UniRef50_UPI0003810BBD hypothetical protein 1.78233069532 0.5 -1.28233069532 +UniRef50_P63342 Inner membrane transport protein YqeG 1.06425558551 0.5 -0.564255585512 +UniRef50_V6LYC7 0.272192775985 0.5 0.227807224015 +UniRef50_Q55905 Phosphoenolpyruvate synthase 0.000960723385922 0.5 0.499039276614 +UniRef50_M4X1W1 0.00534602616624 0.5 0.494653973834 +UniRef50_F2A9W7 1.73542977801 0.5 -1.23542977801 +UniRef50_F2A9W6 0.915237671525 0.5 -0.415237671525 +UniRef50_K7A9D1 Inner membrane transport permease 0.0355149145248 0.5 0.464485085475 +UniRef50_UPI00035C805A hypothetical protein 0.406422931459 0.5 0.0935770685407 +UniRef50_UPI000369165B hypothetical protein 0.368757253406 0.5 0.131242746594 +UniRef50_P76002 Inhibitor of g type lysozyme 1.37467204481 0.5 -0.874672044806 +UniRef50_R5T4K7 Basic membrane protein A immunodominant antigen P39 0.110735684081 0.5 0.389264315919 +UniRef50_K2GDX3 1.70181967126 0.5 -1.20181967126 +UniRef50_Q487E8 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.06058082557 0.500000000001 0.439419174429 +UniRef50_P46139 Probable diguanylate cyclase YfiN 159.733333711 0.499999999989 -159.233333711 +UniRef50_UPI00046CFF5C sodium 0.00660489011439 0.5 0.493395109886 +UniRef50_UPI00046EF3B8 hypothetical protein, partial 0.205893876028 0.5 0.294106123972 +UniRef50_A3PQB2 Transcriptional regulator, LacI family 3.49865690852 0.5 -2.99865690852 +UniRef50_UPI0004632850 LysR family transcriptional regulator 1.18053140934 0.5 -0.680531409337 +UniRef50_Q6DB92 Low affinity potassium transport system protein kup 0.0106089638521 0.5 0.489391036148 +UniRef50_UPI000287F836 transposon Tn917 resolvase 0.0740411516215 0.5 0.425958848379 +UniRef50_C1DCE3 Probable chemoreceptor glutamine deamidase CheD 3.84011616275 0.500000000002 -3.34011616275 +UniRef50_U5MLL1 3 methylornithine synthase PylB 0.0498910493287 0.5 0.450108950671 +UniRef50_UPI0003B7B4C4 ABC transporter 0.301171538862 0.5 0.198828461138 +UniRef50_Q1AU97 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.294791852836 0.5 0.205208147164 +UniRef50_K8B033 0.222142105314 0.5 0.277857894686 +UniRef50_C5N619 Hydrolase, HD family 5.16709942537 0.500000000002 -4.66709942538 +UniRef50_UPI00036B8F43 hypothetical protein 0.0260016953234 0.5 0.473998304677 +UniRef50_P24893 Cytochrome c oxidase subunit 1 0.279436898485 0.5 0.220563101515 +UniRef50_A1UR85 Holliday junction ATP dependent DNA helicase RuvA 1.04949022305 0.5 -0.549490223055 +UniRef50_R4QAT2 Membrane protein required for colicin V production 0.0641194349136 0.5 0.435880565087 +UniRef50_P96676 2.26807341779 0.499999999999 -1.76807341779 +UniRef50_A4WVS1 1.00576202079 0.5 -0.505762020785 +UniRef50_A6U922 1.14240436447 0.5 -0.642404364467 +UniRef50_X1YLX5 0.180200256908 0.5 0.319799743092 +UniRef50_Q5HKG8 Conserved domain protein 5.83507325017 0.499999999998 -5.33507325017 +UniRef50_Q8CP81 Maltose maltodextrin transport permease 0.644753536357 0.5 -0.144753536357 +UniRef50_M4ZKD5 ADP heptose lps heptosyltransferase II 0.0368631714779 0.5 0.463136828522 +UniRef50_B4RNI0 0.0126451087761 0.5 0.487354891224 +UniRef50_F4MUN4 DnaK suppressor protein 0.376532349439 0.5 0.123467650561 +UniRef50_E4RMK3 Molybdenum cofactor synthesis domain protein 0.135349502951 0.5 0.36465049705 +UniRef50_P52235 Thiol 0.663275496752 0.5 -0.163275496752 +UniRef50_A7Z1S6 Cadmium, cobalt and zinc H K(+) antiporter 4.9562291195 0.500000000001 -4.4562291195 +UniRef50_G2J491 Formate dehydrogenase, alpha subunit 1.04162433575 0.5 -0.541624335751 +UniRef50_O54408 GTP pyrophosphokinase 0.0102449892968 0.5 0.489755010703 +UniRef50_D2NTC3 Threonine dehydrogenase 0.0176687884918 0.5 0.482331211508 +UniRef50_G3XN37 0.196466101224 0.5 0.303533898776 +UniRef50_T2EB50 AAA domain family protein 2.41468646851 0.5 -1.91468646851 +UniRef50_B0T9Q7 Cobyrinic acid ac diamide synthase 0.0374605331853 0.5 0.462539466815 +UniRef50_F9Y9C1 20.2269015362 0.500000000024 -19.7269015362 +UniRef50_A3SVY2 1.47841323158 0.5 -0.978413231585 +UniRef50_Q6FEG4 Acyl CoA dehydrogenase 0.167059939426 0.5 0.332940060574 +UniRef50_F5X205 GNAT family acetyltransferase 4.31314915233 0.500000000003 -3.81314915233 +UniRef50_Q8TQ68 Aspartate tRNA ligase 0.730775944488 0.5 -0.230775944488 +UniRef50_W4K1D0 0.245909981165 0.5 0.254090018835 +UniRef50_B5EXE3 UPF0758 protein YicR 1.44930061086 0.499999999999 -0.94930061086 +UniRef50_D0S9A9 Excinuclease ABC, A subunit family protein 0.00912028546877 0.5 0.490879714531 +UniRef50_A2BXS2 1.38890233475 0.499999999999 -0.888902334752 +UniRef50_G8PGZ1 Rubrerythrin 1.43639729877 0.5 -0.936397298766 +UniRef50_H3WY71 0.765681809064 0.5 -0.265681809064 +UniRef50_Q8X6C4 Xanthine dehydrogenase iron sulfur binding subunit 299.578563894 0.499999999939 -299.078563894 +UniRef50_UPI0001AF2B31 LysR family transcriptional regulator 0.811432598767 0.5 -0.311432598767 +UniRef50_F8DHP6 ABC transporter, permease protein 0.542404523105 0.5 -0.0424045231051 +UniRef50_C9LYN2 Diaminopimelate decarboxylase 2.69952283322 0.5 -2.19952283322 +UniRef50_Q3JLX9 0.391271191351 0.5 0.108728808649 +UniRef50_F6AGQ7 HemY domain protein 0.411218421683 0.5 0.0887815783172 +UniRef50_Q61503 5 nucleotidase 0.509089905914 0.5 -0.0090899059144 +UniRef50_G7SHI8 Phosphatase 1.41145440858 0.5 -0.91145440858 +UniRef50_C4RLJ2 0.353261356895 0.5 0.146738643105 +UniRef50_W0H5K7 Serine threonine protein kinase 2.09567946347 0.5 -1.59567946347 +UniRef50_A0A055F483 PE PGRS family protein PE_PGRS6 0.0557990489707 0.5 0.444200951029 +UniRef50_H1LB61 3.41238774967 0.5 -2.91238774967 +UniRef50_W4UK26 0.026159550889 0.5 0.473840449111 +UniRef50_UPI000470BCA6 RNA polymerase sigma 70 factor, partial 1.6476848579 0.5 -1.1476848579 +UniRef50_A7K529 Trap transporter solute receptor, taxi family 7.36133827502 0.49999999999 -6.86133827501 +UniRef50_Q9SIB9 Aconitate hydratase 2, mitochondrial 0.00168451431822 0.5 0.498315485682 +UniRef50_UPI000375E9C9 hypothetical protein 0.241038661739 0.5 0.258961338261 +UniRef50_O29757 Exosome complex component Rrp41 1.24649775101 0.5 -0.746497751008 +UniRef50_Q9JRT1 Phosphoadenosine phosphosulfate reductase 0.000895287706792 0.5 0.499104712293 +UniRef50_UPI000467A91C alkaline phosphatase, partial 0.0862117980772 0.500000000001 0.413788201922 +UniRef50_Q3IWD8 5.22555428808 0.500000000003 -4.72555428808 +UniRef50_UPI000255A89F type IV pilus biogenesis stability protein PilW 0.131777171962 0.5 0.368222828038 +UniRef50_UPI0003B2F6BE aspartyl glutamyl tRNA amidotransferase subunit B 0.188167471607 0.5 0.311832528393 +UniRef50_UPI000376A46D hypothetical protein 0.0840374724004 0.5 0.415962527599 +UniRef50_P44914 dTDP glucose 4,6 dehydratase 0.234364211077 0.5 0.265635788923 +UniRef50_UPI000472A285 multidrug ABC transporter ATP binding protein, partial 0.148167281941 0.5 0.351832718059 +UniRef50_Q8XQG4 L aspartate oxidase 2 0.239657879398 0.5 0.260342120602 +UniRef50_UPI000379010F hypothetical protein 0.382865248011 0.5 0.117134751989 +UniRef50_G7U9P9 Transcriptional regulator 0.0447682149175 0.5 0.455231785082 +UniRef50_R4ZW20 YfaA 2.26960348802 0.499999999999 -1.76960348802 +UniRef50_F0J5L6 L sorbosone dehydrogenase 0.920448610752 0.5 -0.420448610752 +UniRef50_P0A9A0 Ferritin 1 1.21928567163 0.499999999999 -0.719285671624 +UniRef50_UPI000399D476 hemolysin expression modulating protein 0.832494429772 0.5 -0.332494429772 +UniRef50_A5UP13 Permease, xanthine uracil vitamin C permease family 1.25457319995 0.500000000001 -0.754573199953 +UniRef50_UPI000383E553 PREDICTED 0.0729223401385 0.5 0.427077659861 +UniRef50_H9K4X2 0.566948924657 0.5 -0.0669489246569 +UniRef50_Q5HN24 UPF0316 protein SERP1448 5.55056397287 0.499999999999 -5.05056397287 +UniRef50_A0A029IUD7 Major Facilitator Superfamily protein 0.855244496743 0.5 -0.355244496743 +UniRef50_Q1J3T7 5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit 0.00867311939632 0.5 0.491326880604 +UniRef50_P07129 Beta xylosidase 0.347231739835 0.5 0.152768260165 +UniRef50_D4HBL6 0.0483727726032 0.5 0.451627227397 +UniRef50_F7V2B8 Serine pyruvate aminotransferase 0.1710050691 0.5 0.3289949309 +UniRef50_A0A024HIN5 Transcriptional regulator 0.0448467481544 0.5 0.455153251846 +UniRef50_K0M4V6 8.42009328571 0.499999999998 -7.92009328571 +UniRef50_A7X232 Anthranilate phosphoribosyltransferase 10.2565570522 0.499999999998 -9.75655705225 +UniRef50_B9JGE0 0.118137798997 0.5 0.381862201003 +UniRef50_W5YGZ9 2.07962351676 0.499999999999 -1.57962351676 +UniRef50_Q3JSJ3 0.0248997641341 0.5 0.475100235866 +UniRef50_F0KG04 0.100425055052 0.5 0.399574944948 +UniRef50_UPI00029A2946 endo 1,4 D glucanase 0.138434840363 0.5 0.361565159637 +UniRef50_UPI0003714199 hypothetical protein 0.0379608024269 0.5 0.462039197573 +UniRef50_A5UK18 5.84027490299 0.500000000001 -5.34027490299 +UniRef50_UPI0002485E7A gluconate transporter 0.0134405396596 0.500000000001 0.48655946034 +UniRef50_G8SGJ4 0.0214777729873 0.500000000001 0.478522227012 +UniRef50_UPI0003C0FE99 PREDICTED 0.809346195901 0.5 -0.309346195901 +UniRef50_Q3J099 Transcriptional regulator, HxlR family 0.863112932085 0.5 -0.363112932085 +UniRef50_Q9RVW0 DNA directed RNA polymerase subunit beta 0.001835122498 0.5 0.498164877502 +UniRef50_D0CTG3 1.39457026877 0.500000000002 -0.894570268768 +UniRef50_U6EYS7 Chemotaxis protein CheW 0.315993786511 0.5 0.184006213489 +UniRef50_F0N6L8 0.146430715702 0.5 0.353569284298 +UniRef50_Q9RRC4 Arginine tRNA ligase 0.00156977615904 0.5 0.498430223841 +UniRef50_N0B321 0.976887734736 0.5 -0.476887734736 +UniRef50_U6A8Y3 Non ribosomal peptide synthetase modules related protein 0.315505240233 0.5 0.184494759767 +UniRef50_UPI00028904E4 two component response regulator 0.513156332414 0.5 -0.0131563324143 +UniRef50_F8JIF2 Recombination protein 1.47443578673 0.5 -0.974435786731 +UniRef50_UPI0002482319 hypothetical protein 0.459329539242 0.5 0.0406704607579 +UniRef50_U6EZC2 Transcriptional regulatory component of sensorytransduction system 0.162408403354 0.5 0.337591596646 +UniRef50_A9MHF6 1.34770262507 0.5 -0.847702625073 +UniRef50_Q895P9 16S rRNA MC 967 methyltransferase 0.181606514693 0.5 0.318393485307 +UniRef50_UPI00047BB63F ABC transporter ATP binding protein 0.861302787433 0.5 -0.361302787433 +UniRef50_H0DJE3 HTH domain protein 0.363504644597 0.5 0.136495355403 +UniRef50_Q5HRV3 PAP2 family protein 2.83576895321 0.500000000004 -2.33576895322 +UniRef50_A6VPG7 Hydroxyethylthiazole kinase 0.00415247463525 0.5 0.495847525365 +UniRef50_UPI0003A5B886 chaperonin 0.48631716463 0.5 0.0136828353701 +UniRef50_U5NV97 13.505850826 0.500000000002 -13.005850826 +UniRef50_E3EXD3 Flagellar protein, putative 1.22754683511 0.499999999999 -0.72754683511 +UniRef50_R5K4V5 Indole 3 glycerol phosphate synthase 6.98063222599 0.499999999997 -6.48063222599 +UniRef50_UPI00034C05DA hypothetical protein 0.578508530039 0.5 -0.0785085300391 +UniRef50_Q9I6Q3 4 hydroxybenzoate transporter PcaK 0.0461363856114 0.5 0.453863614389 +UniRef50_V8HPC0 Transposase 1.43088249437 0.5 -0.930882494368 +UniRef50_R5VPY7 Phosphorylase 0.0706622825693 0.5 0.429337717431 +UniRef50_Q57PU8 Phenylalanine tRNA ligase beta subunit 3.1818806746 0.500000000001 -2.6818806746 +UniRef50_A6M2B6 PTS system, lactose cellobiose family IIC subunit 0.0760534532685 0.5 0.423946546732 +UniRef50_F5X5Y4 Oxidoreductase dehydrogenase 0.498130935552 0.5 0.00186906444847 +UniRef50_UPI000363AE14 hypothetical protein 0.199186762658 0.5 0.300813237342 +UniRef50_A6TSP5 DEAD DEAH box helicase domain protein 3.47374542171 0.5 -2.97374542171 +UniRef50_UPI00041C3470 major facilitator transporter 0.0138158550368 0.499999999999 0.486184144964 +UniRef50_UPI00046337D4 histidine ammonia lyase, partial 0.0810381688554 0.5 0.418961831144 +UniRef50_V6F9W2 0.110472171961 0.5 0.389527828039 +UniRef50_A8LMR7 1.10143892415 0.5 -0.601438924154 +UniRef50_I6S1H3 0.00236510464872 0.5 0.497634895351 +UniRef50_UPI0003292D89 PREDICTED 0.407558287379 0.5 0.0924417126211 +UniRef50_N8PWN0 DNA ligase 0.0289870181894 0.5 0.471012981811 +UniRef50_Q72R38 Lysine tRNA ligase 0.454903719716 0.5 0.0450962802844 +UniRef50_W5Y8Y3 Polyprenyl synthetase 0.583659696468 0.5 -0.0836596964677 +UniRef50_R7IF91 Lipoprotein 0.0712330866548 0.5 0.428766913345 +UniRef50_Q5HRB4 0.325423799694 0.5 0.174576200306 +UniRef50_UPI00037CCB39 hypothetical protein 3.82057687248 0.5 -3.32057687248 +UniRef50_P35163 Transcriptional regulatory protein ResD 1.36725070456 0.5 -0.867250704564 +UniRef50_A5IRW7 2.01266402138 0.5 -1.51266402138 +UniRef50_P57355 UPF0056 membrane protein BU267 3.18011176175 0.499999999999 -2.68011176175 +UniRef50_G7M6S5 Peptidase M16 domain protein 0.431781175837 0.5 0.0682188241629 +UniRef50_A4WPQ5 Periplasmic protein thiol disulphide oxidoreductase DsbE 1.41356027157 0.499999999999 -0.913560271572 +UniRef50_X5E5J7 Lipoprotein 4.19004930431 0.500000000002 -3.69004930432 +UniRef50_P40892 Putative acetyltransferase YJL218W 0.895936205467 0.5 -0.395936205467 +UniRef50_E3A496 0.163876060213 0.5 0.336123939787 +UniRef50_I6E2A6 Inner membrane protein yghQ 2.26968558463 0.500000000002 -1.76968558463 +UniRef50_Q8U3B8 Arsenical resistance protein acr3 6.26700825147 0.499999999998 -5.76700825147 +UniRef50_I6TZW1 ATP binding protein 1.80553031033 0.5 -1.30553031033 +UniRef50_X6L6R2 MFS transporter 0.261393627776 0.5 0.238606372224 +UniRef50_K6PSM8 ATPase component of an ABC superfamily transporter 1.01518419314 0.5 -0.515184193138 +UniRef50_A6M2B1 Beta lactamase domain protein 0.0319675224371 0.5 0.468032477563 +UniRef50_UPI0003FB35D8 chemotaxis protein CheY 0.378129208248 0.5 0.121870791752 +UniRef50_F7ZEB4 TatD family deoxyribonuclease 0.79248143758 0.5 -0.29248143758 +UniRef50_UPI0003B3F7AD phosphoribosylaminoimidazole carboxylase 0.398859775887 0.5 0.101140224113 +UniRef50_A5UKF2 2.34669100547 0.499999999996 -1.84669100546 +UniRef50_S5CXQ6 0.00962434351093 0.5 0.490375656489 +UniRef50_L7WXI7 CorA like Mg2+ transporter protein 1.6300811047 0.500000000002 -1.1300811047 +UniRef50_G0DRH6 0.0034764215616 0.5 0.496523578439 +UniRef50_A5WG42 NADH quinone oxidoreductase subunit H 0.152911680712 0.5 0.347088319288 +UniRef50_G9Z7C4 Amine oxidase 2.65846434822 0.499999999999 -2.15846434822 +UniRef50_UPI0003B6CB25 GTPase Era 0.0409499047826 0.5 0.459050095217 +UniRef50_B9KRR2 ATP dependent DNA ligase 3.0452756698 0.500000000003 -2.5452756698 +UniRef50_S3X9I7 0.078274329682 0.5 0.421725670318 +UniRef50_P06744 Glucose 6 phosphate isomerase 0.327109930765 0.5 0.172890069235 +UniRef50_D8JHR5 0.0265568617093 0.5 0.473443138291 +UniRef50_B9KPJ0 Ribose phosphate pyrophosphokinase 0.433677753231 0.5 0.0663222467687 +UniRef50_P08555 DsdX permease 0.628970242667 0.5 -0.128970242667 +UniRef50_P0ABU8 Biopolymer transport protein ExbB 1.52836065025 0.5 -1.02836065025 +UniRef50_S5XVE4 Type VI secretion system ATPase 6.47408939381 0.5 -5.97408939381 +UniRef50_E0RCX2 0.284149518091 0.5 0.215850481909 +UniRef50_T0USP0 VanZF related protein 2.72165629625 0.499999999998 -2.22165629625 +UniRef50_D2N5R5 Kinase associated protein B 3.16993503183 0.5 -2.66993503183 +UniRef50_Q0C5T7 Peptide ABC transporter, ATP binding protein 1.71737691228 0.5 -1.21737691228 +UniRef50_Q4L7E3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.22548243248 0.500000000003 -2.72548243248 +UniRef50_D2ABX7 5.36489539791 0.500000000003 -4.86489539791 +UniRef50_UPI00037710EA hypothetical protein 1.0477247595 0.5 -0.547724759497 +UniRef50_B2V422 0.0148084489754 0.5 0.485191551025 +UniRef50_Q03MZ6 Bifunctional purine biosynthesis protein PurH 0.0619105817107 0.5 0.438089418289 +UniRef50_P42915 Outer membrane usher protein YraJ 0.894112476996 0.5 -0.394112476996 +UniRef50_Q49775 Methionine synthase 0.00747096863935 0.5 0.492529031361 +UniRef50_UPI0003B44CF0 streptomycin 3 kinase 0.311615192425 0.5 0.188384807575 +UniRef50_UPI0004639093 hypothetical protein 0.291682864657 0.5 0.208317135343 +UniRef50_F0RPF2 0.00508183662396 0.5 0.494918163376 +UniRef50_F0RPF3 0.00272639525703 0.5 0.497273604743 +UniRef50_UPI0002002483 hypothetical protein 1.67888904658 0.5 -1.17888904658 +UniRef50_S5FCX8 Carboxylate amine ligase 0.968347533415 0.5 -0.468347533415 +UniRef50_A5D1A4 Dihydroorotase 0.101467131533 0.5 0.398532868467 +UniRef50_W8TQE0 Pili assembly chaperone 1.92616771263 0.5 -1.42616771263 +UniRef50_UPI000364022E hypothetical protein 5.88783648931 0.5 -5.38783648931 +UniRef50_R5UAJ8 0.165421923811 0.5 0.334578076189 +UniRef50_UPI000262CCDC Mutator MutT protein 1.21932104193 0.5 -0.719321041935 +UniRef50_UPI00036EE512 hypothetical protein 0.208475908211 0.5 0.291524091789 +UniRef50_UPI0003B63CEB molybdopterin biosynthesis protein MoeA 0.360295980227 0.5 0.139704019773 +UniRef50_Q98E39 Msr4423 protein 0.664995860854 0.5 -0.164995860854 +UniRef50_UPI0003615A32 hypothetical protein 0.360418227028 0.5 0.139581772972 +UniRef50_C9CVV7 29.981123539 0.499999999974 -29.4811235389 +UniRef50_UPI00035A01D7 PREDICTED 1.16027417392 0.5 -0.660274173921 +UniRef50_UPI00047B26FB glyoxalase 1.37539642827 0.499999999998 -0.875396428264 +UniRef50_B9KU28 Transcriptional regulator 1.23623351281 0.5 -0.736233512812 +UniRef50_UPI00036F2709 LysR family transcriptional regulator 0.939130217973 0.5 -0.439130217973 +UniRef50_S2L5Z7 Alkaline phosphatase 2.32177692662 0.500000000002 -1.82177692662 +UniRef50_A3MFR5 NADH quinone oxidoreductase subunit B 2 0.213479100387 0.5 0.286520899613 +UniRef50_Q28RF2 Anhydro N acetylmuramic acid kinase 1 1.82785750743 0.5 -1.32785750743 +UniRef50_UPI00044199D7 PREDICTED 1.32327678877 0.5 -0.823276788767 +UniRef50_P61676 UDP N acetylmuramate L alanine ligase 0.279494557886 0.5 0.220505442114 +UniRef50_B9KT87 Periplasmic sensor signal transduction histidine kinase 1.41244871362 0.5 -0.912448713616 +UniRef50_A5WG85 0.0144891789276 0.5 0.485510821072 +UniRef50_H9JZZ5 2.96899246555 0.500000000001 -2.46899246555 +UniRef50_U5SUC1 Protein co occurring with transport systems 1.68741670358 0.5 -1.18741670358 +UniRef50_UPI000368DF15 hypothetical protein 0.466622450423 0.5 0.0333775495767 +UniRef50_D4GE62 Fcy21 1.79315250721 0.5 -1.29315250721 +UniRef50_P28905 DNA polymerase III subunit chi 0.566172858188 0.5 -0.0661728581882 +UniRef50_UPI0002493F0F sugar transporter 0.122477247234 0.5 0.377522752766 +UniRef50_X1IEE0 Marine sediment metagenome DNA, contig 0.00724310103147 0.5 0.492756898968 +UniRef50_I1ZKN3 0.89901432841 0.5 -0.39901432841 +UniRef50_UPI000287D4FC ribose phosphate diphosphokinase 0.320790669859 0.5 0.179209330141 +UniRef50_Q9RTM5 0.00233236314251 0.5 0.497667636858 +UniRef50_P0A9A4 Ferritin like protein 2 0.491374472984 0.5 0.00862552701637 +UniRef50_Q08Z31 0.138359069477 0.5 0.361640930523 +UniRef50_B9E9S0 1.83173269308 0.5 -1.33173269308 +UniRef50_Q9RZI4 0.00254111916743 0.5 0.497458880833 +UniRef50_UPI00030FEE7F AsnC family transcriptional regulator 3.28246287252 0.5 -2.78246287252 +UniRef50_UPI0003B3D4FC purine nucleoside phosphorylase 0.122649911346 0.5 0.377350088654 +UniRef50_C5X3F1 0.59613510119 0.5 -0.0961351011905 +UniRef50_A4YXJ9 Cobyric acid synthase 2.46742418809 0.5 -1.96742418809 +UniRef50_A6LUJ6 0.0578609736981 0.5 0.442139026302 +UniRef50_I1HS37 0.746946584244 0.5 -0.246946584244 +UniRef50_Q5LI72 Lipoprotein releasing system ATP binding protein LolD 0.0179869362407 0.5 0.482013063759 +UniRef50_UPI0004715EC0 hypothetical protein 0.681191913481 0.5 -0.181191913481 +UniRef50_P77467 1,2 epoxyphenylacetyl CoA isomerase 2.01892802437 0.499999999999 -1.51892802437 +UniRef50_Q9L6X9 DNA replication terminus site binding protein 0.782383782926 0.5 -0.282383782926 +UniRef50_UPI0002C2EB05 0.329919988742 0.5 0.170080011258 +UniRef50_F2MXH3 Hydrolase 0.111733384904 0.5 0.388266615096 +UniRef50_C7M9T6 Cation diffusion facilitator family transporter 0.0255380102841 0.5 0.474461989716 +UniRef50_Q6GJ30 Putative glycosyltransferase TagX 3.89191455099 0.499999999999 -3.39191455099 +UniRef50_J1H1W6 Putative transposase 0.00804618705718 0.5 0.491953812943 +UniRef50_W6KCI0 Putative chaC like cation transporter 0.579133155207 0.5 -0.079133155207 +UniRef50_Q4L9R4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 5.40856157218 0.500000000005 -4.90856157219 +UniRef50_UPI00037EBF23 hypothetical protein 0.536868593788 0.5 -0.0368685937879 +UniRef50_Q9V2R2 Quinolinate synthase A 13.0527695334 0.500000000003 -12.5527695334 +UniRef50_Q9RU50 Acyl CoA dehydrogenase 0.00236723833932 0.5 0.497632761661 +UniRef50_UPI0002D896B4 hypothetical protein 0.0197151044546 0.499999999999 0.480284895546 +UniRef50_UPI0003731541 hypothetical protein 0.00298157369896 0.5 0.497018426301 +UniRef50_UPI00047C50BA hypothetical protein 0.132154903639 0.5 0.367845096362 +UniRef50_A3PHA2 4.82063006042 0.500000000002 -4.32063006042 +UniRef50_A3PHA5 1.68607981215 0.5 -1.18607981215 +UniRef50_K1TC59 Branched chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein 0.179710727681 0.5 0.320289272319 +UniRef50_A3PHA6 44.5829811404 0.499999999998 -44.0829811404 +UniRef50_A3PHA9 3.90141975658 0.500000000001 -3.40141975658 +UniRef50_A3PHA8 0.678027973077 0.5 -0.178027973077 +UniRef50_H0YUU4 0.215704490346 0.5 0.284295509654 +UniRef50_A1AZJ2 UPF0173 metal dependent hydrolase Pden_0574 4.27131825643 0.5 -3.77131825643 +UniRef50_Q9RXG0 Ribonuclease R 0.000573639988254 0.5 0.499426360012 +UniRef50_Q8P0D6 1.24900938026 0.5 -0.74900938026 +UniRef50_P44023 0.908522490889 0.5 -0.408522490889 +UniRef50_R7CLA1 0.0702574256376 0.5 0.429742574362 +UniRef50_A4WSE9 IS66 Orf2 family protein 1.1198546889 0.5 -0.619854688895 +UniRef50_J2PZW7 0.143496338596 0.5 0.356503661404 +UniRef50_A0A017HSQ6 Transport protein 1.77856702383 0.499999999999 -1.27856702383 +UniRef50_P0AEC3 Aerobic respiration control sensor protein ArcB 4.60414700451 0.499999999999 -4.10414700451 +UniRef50_UPI0003698849 DNA glycosylase 0.873706646804 0.5 -0.373706646804 +UniRef50_UPI00035C8219 hypothetical protein 0.504250565291 0.5 -0.00425056529125 +UniRef50_P0ABD0 High affinity choline transport protein 0.357623789559 0.5 0.142376210441 +UniRef50_E0TF91 Prephenate dehydrogenase 6.52605138464 0.500000000002 -6.02605138464 +UniRef50_J1E0S9 10.413678981 0.500000000003 -9.91367898098 +UniRef50_UPI00037D56C5 hypothetical protein, partial 0.278549426226 0.5 0.221450573774 +UniRef50_P13794 Outer membrane porin F 0.379944754214 0.5 0.120055245786 +UniRef50_Q5HQN6 1.13553798861 0.5 -0.635537988614 +UniRef50_UPI00047A7DC3 sodium 0.448832906301 0.5 0.0511670936994 +UniRef50_UPI0003480247 membrane protein 0.0440182425111 0.5 0.455981757489 +UniRef50_X4QYD5 Ribonucleotide reductase 0.12851921592 0.5 0.37148078408 +UniRef50_T2EHJ1 Hpt domain protein 3.27211418254 0.499999999999 -2.77211418254 +UniRef50_A1B2U2 ABC polyamine opine transporter, periplasmic substrate binding protein 1.59636217824 0.499999999998 -1.09636217824 +UniRef50_Q89AP8 Acetolactate synthase small subunit 0.144512966919 0.5 0.355487033082 +UniRef50_V4JFT6 0.691572644056 0.5 -0.191572644056 +UniRef50_K2R125 Insertion sequence transposase 0.752136679079 0.5 -0.252136679079 +UniRef50_B9K5L2 0.269008586841 0.5 0.230991413159 +UniRef50_Q9RVK2 MutT nudix family protein 0.00712370723251 0.5 0.492876292768 +UniRef50_P49058 Inosine 5 monophosphate dehydrogenase 0.147535682247 0.5 0.352464317753 +UniRef50_T2EMC8 0.254276930465 0.5 0.245723069535 +UniRef50_N9ANA5 0.00930560066618 0.5 0.490694399334 +UniRef50_S9RPX9 Integral membrane protein 0.736235288917 0.5 -0.236235288917 +UniRef50_V3H5M7 0.302577702781 0.5 0.197422297219 +UniRef50_E8SI82 2.15254785436 0.5 -1.65254785436 +UniRef50_A8L741 Putative glyoxalase family protein 0.211395248278 0.5 0.288604751722 +UniRef50_UPI0002E43044 hypothetical protein 0.398627319579 0.5 0.101372680421 +UniRef50_UPI000366CBF5 hypothetical protein 1.61332274808 0.5 -1.11332274808 +UniRef50_UPI000368F6D6 hypothetical protein 0.242023105312 0.5 0.257976894688 +UniRef50_UPI0003777C13 hypothetical protein 0.274677884488 0.5 0.225322115512 +UniRef50_UPI00047CBCB4 C4 dicarboxylate ABC transporter substrate binding protein 1.6830621338 0.499999999999 -1.1830621338 +UniRef50_UPI0003446A8D PREDICTED 0.868885266496 0.5 -0.368885266496 +UniRef50_UPI0003A59A55 chorismate synthase 0.0745373213775 0.5 0.425462678623 +UniRef50_UPI0003B6EE3B diguanylate cyclase, partial 0.62842880541 0.5 -0.12842880541 +UniRef50_U3ASA7 0.277478894327 0.5 0.222521105673 +UniRef50_Q0TRI9 MTA SAH nucleosidase 0.0852066757781 0.499999999999 0.414793324223 +UniRef50_C7NKD3 0.00135134266746 0.500000000001 0.498648657332 +UniRef50_Q5HLN7 Membrane associated protein TcaA 1.69297861055 0.500000000002 -1.19297861055 +UniRef50_Q7NLT7 Leucyl phenylalanyl tRNA protein transferase 0.101002883697 0.5 0.398997116303 +UniRef50_Q2II05 LigA 0.479389572256 0.5 0.020610427744 +UniRef50_Q15UL9 Deoxycytidine triphosphate deaminase 1.1646772277 0.5 -0.6646772277 +UniRef50_G2L306 Two component sensor EnvZ 1.87053873209 0.5 -1.37053873209 +UniRef50_A1JKQ0 tRNA methyltransferase TrmJ 0.936514962162 0.5 -0.436514962162 +UniRef50_G2KD33 0.0100027398258 0.5 0.489997260174 +UniRef50_P39334 HTH type transcriptional repressor BdcR 0.13298669493 0.5 0.36701330507 +UniRef50_UPI0001744E68 hypothetical protein 0.0434331236912 0.5 0.456566876309 +UniRef50_UPI000469DAE1 hypothetical protein 3.94557467135 0.500000000002 -3.44557467135 +UniRef50_UPI000474FED4 response regulator receiver protein 0.0218565741585 0.5 0.478143425842 +UniRef50_Q0RCK1 N acetylglucosamine 6 phosphate deacetylase 0.102824194021 0.499999999999 0.39717580598 +UniRef50_P75908 Probable diguanylate cyclase YcdT 2.31194734911 0.5 -1.81194734911 +UniRef50_Q46I59 Phosphoribosylformylglycinamidine synthase 2 1.77274544955 0.5 -1.27274544955 +UniRef50_D6Y938 Binding protein dependent transport systems inner membrane component 0.0113009510713 0.5 0.488699048929 +UniRef50_Q9RVJ3 Branched chain amino acid ABC transporter, ATP binding protein 0.00201205350216 0.5 0.497987946498 +UniRef50_Q8CR74 3.13484634153 0.5 -2.63484634153 +UniRef50_X1SN69 Marine sediment metagenome DNA, contig 0.0029343549558 0.5 0.497065645044 +UniRef50_Q3J097 Acetyltransferase 2.25809594473 0.500000000003 -1.75809594473 +UniRef50_UPI00045E8316 ribose ABC transporter permease 1.20815037501 0.5 -0.708150375014 +UniRef50_X5DRJ8 Phosphate ABC transporter, permease protein PstA 2.25601482681 0.5 -1.75601482681 +UniRef50_B1B3J5 0.417583827767 0.5 0.0824161722335 +UniRef50_H6PD11 Ion transport protein 1.08420405616 0.5 -0.584204056159 +UniRef50_Q8DUD5 0.709274290937 0.5 -0.209274290937 +UniRef50_B9KWI5 3.93520321181 0.5 -3.43520321181 +UniRef50_UPI0003765EEA hypothetical protein 1.54237089342 0.5 -1.04237089342 +UniRef50_UPI00037DF3B3 MULTISPECIES 0.0146626669089 0.5 0.485337333091 +UniRef50_C2Z2I2 ATPase 0.0665312369285 0.5 0.433468763072 +UniRef50_K0CB29 0.00843935580806 0.5 0.491560644192 +UniRef50_P33590 Nickel binding periplasmic protein 11.0954097443 0.499999999993 -10.5954097443 +UniRef50_Q3IXY3 2.45225343151 0.5 -1.95225343151 +UniRef50_W4MVL4 Phosphoenolpyruvate protein phosphotransferase 0.00780576380785 0.5 0.492194236192 +UniRef50_I9L186 Transposase 1.32963365576 0.5 -0.829633655763 +UniRef50_A3MMQ8 Glutamate 1 semialdehyde 2,1 aminomutase 0.00242223834125 0.5 0.497577761659 +UniRef50_UPI000382D4BD hypothetical protein 0.612062400286 0.5 -0.112062400286 +UniRef50_Q3IUW7 TraK protein 2.2028263678 0.499999999998 -1.70282636779 +UniRef50_UPI0003F107C2 0.652977543959 0.5 -0.152977543959 +UniRef50_Q91TW1 T2 0.0171852160108 0.5 0.482814783989 +UniRef50_B5Y1K1 Elongation factor Ts 0.469837177073 0.5 0.0301628229271 +UniRef50_UPI00047479E9 hypothetical protein 0.125016341592 0.5 0.374983658408 +UniRef50_UPI000412A15D hypothetical protein 0.0825206796267 0.5 0.417479320373 +UniRef50_S5AVG1 MazG protein 0.535802688351 0.5 -0.0358026883514 +UniRef50_P27876 Triosephosphate isomerase 4.49701778757 0.499999999999 -3.99701778757 +UniRef50_UPI00031DE78E hypothetical protein 0.0443559225712 0.5 0.455644077429 +UniRef50_UPI000363D58E protein meaA, partial 1.2878043365 0.5 -0.787804336496 +UniRef50_M4N5D5 1.0266909706 0.5 -0.526690970602 +UniRef50_E2Q9I1 Prevent host death family protein 0.757693822245 0.5 -0.257693822245 +UniRef50_F2MT10 HD domain protein 0.840023710691 0.5 -0.340023710691 +UniRef50_B9KPZ0 Potassium transporting ATPase C chain 0.00647316608799 0.5 0.493526833912 +UniRef50_J8EJF8 LPXTG domain containing protein cell wall anchor domain 0.24191572377 0.5 0.25808427623 +UniRef50_E0J5J4 2 dehydro 3 deoxygluconokinase 1.22611157515 0.5 -0.726111575154 +UniRef50_A0A028QNK4 3.58135320069 0.5 -3.08135320069 +UniRef50_F0RNA5 ATPase AAA 2 domain protein 0.00581771113204 0.5 0.494182288868 +UniRef50_A6LUR0 Transcriptional regulator, RpiR family 0.033345684161 0.5 0.466654315839 +UniRef50_UPI000477413F regulator 0.253945107882 0.5 0.246054892118 +UniRef50_A8FXN6 1.36848243121 0.5 -0.868482431213 +UniRef50_A4WWH1 Glycosyl transferase, group 1 0.317527980994 0.5 0.182472019006 +UniRef50_K7S6T7 Glycosyltransferase, group 1 family protein 0.0486668904324 0.5 0.451333109568 +UniRef50_UPI0003B3B81F indole 3 glycerol phosphate synthase 0.281773089566 0.5 0.218226910434 +UniRef50_C4ZXX6 PKHD type hydroxylase YbiX 2.18337998515 0.499999999999 -1.68337998515 +UniRef50_Q6A5N5 Undecaprenyl diphosphatase 0.0178262571661 0.5 0.482173742834 +UniRef50_X5ENW5 ABC transporter family protein 3.58921499977 0.500000000003 -3.08921499977 +UniRef50_UPI00047B3063 ABC transporter ATP binding protein 1.2921208041 0.5 -0.792120804096 +UniRef50_Q9RYM8 Probable subtilase type serine protease DR_A0283 0.00442701893688 0.5 0.495572981063 +UniRef50_E0MS58 Molecular chaperone, DnaJ family 0.414815298142 0.5 0.0851847018576 +UniRef50_A1B8N7 ATP synthase subunit delta 1.3491129368 0.5 -0.849112936798 +UniRef50_P0AE26 L arabinose transport system permease protein AraH 0.601070057833 0.5 -0.101070057833 +UniRef50_C2LZ77 0.183564128952 0.5 0.316435871048 +UniRef50_UPI000382715E hypothetical protein 0.314863734061 0.5 0.185136265939 +UniRef50_W4UHC4 Helicase 0.00453301429843 0.5 0.495466985702 +UniRef50_A0A011Q8A5 0.121053653993 0.5 0.378946346007 +UniRef50_P27675 Glutamine transport ATP binding protein GlnQ 0.299600709413 0.5 0.200399290587 +UniRef50_N6UYQ4 1.74747447092 0.500000000001 -1.24747447092 +UniRef50_A6LWG5 7 carboxy 7 deazaguanine synthase 0.153581288606 0.5 0.346418711394 +UniRef50_A0A023RTQ5 GntR family transcriptional regulator 0.00984452895317 0.5 0.490155471047 +UniRef50_UPI00029DA75A PREDICTED 0.242609098643 0.5 0.257390901357 +UniRef50_D0SBY2 Oxidoreductase alpha subunit 0.00473700829032 0.5 0.49526299171 +UniRef50_X1SF25 Marine sediment metagenome DNA, contig 0.155307567537 0.5 0.344692432463 +UniRef50_Q7TUT1 Glutamyl Q tRNA synthetase 0.270763138309 0.5 0.229236861691 +UniRef50_L5R254 Replication initiation factor domain protein 0.147031798848 0.5 0.352968201152 +UniRef50_A6SXI6 Tricarboxylate transport protein TctA 0.0795367793844 0.5 0.420463220615 +UniRef50_A6KYS6 S ribosylhomocysteine lyase 0.0176514462408 0.5 0.482348553759 +UniRef50_S5UDS6 131.372746771 0.50000000025 -130.872746771 +UniRef50_C7PD55 Chitinase 0.24773649173 0.5 0.25226350827 +UniRef50_Q9ZDH5 NADH quinone oxidoreductase subunit E 1.55620207303 0.499999999999 -1.05620207303 +UniRef50_X1TNP8 Marine sediment metagenome DNA, contig 0.0155515021347 0.5 0.484448497866 +UniRef50_P16926 Cell shape determining protein MreC 0.82046757384 0.5 -0.32046757384 +UniRef50_S1T2A2 0.187801799638 0.5 0.312198200362 +UniRef50_UPI00038199B5 hypothetical protein 2.06063448506 0.5 -1.56063448506 +UniRef50_B0VLQ7 General secretion pathway protein F 0.0167800211663 0.5 0.483219978834 +UniRef50_A0KKZ8 Fumarate hydratase, class I 0.0432980291819 0.5 0.456701970818 +UniRef50_S1T2A8 0.0631462326192 0.5 0.436853767381 +UniRef50_J3NR99 3.19764034789 0.5 -2.69764034789 +UniRef50_UPI0003FEFECF hypothetical protein 0.818979217019 0.5 -0.318979217019 +UniRef50_A4WQ31 Signal transduction histidine kinase 0.880705017356 0.5 -0.380705017356 +UniRef50_A6M1A3 MotA TolQ ExbB proton channel 0.135403893195 0.5 0.364596106805 +UniRef50_Q08SF7 0.168231403016 0.5 0.331768596984 +UniRef50_A0A031D1F0 0.719799313715 0.5 -0.219799313715 +UniRef50_A6LRT2 Resolvase, N terminal domain 0.0888251884303 0.5 0.41117481157 +UniRef50_X6C1Q7 2.50219838898 0.500000000001 -2.00219838898 +UniRef50_Q43768 Glutamate tRNA ligase, chloroplastic mitochondrial 0.122962590707 0.5 0.377037409293 +UniRef50_P45015 Protein NrfC homolog 2.11586865968 0.500000000001 -1.61586865968 +UniRef50_UPI0004408DA8 ribosomal protein S5 domain 2 like protein 0.588738611053 0.5 -0.0887386110532 +UniRef50_Q57E96 4 hydroxy tetrahydrodipicolinate synthase 0.10695339042 0.5 0.39304660958 +UniRef50_L0GKZ5 Asparagine synthetase 0.545527386268 0.5 -0.0455273862677 +UniRef50_G2JGA5 Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA 0.0280796622137 0.5 0.471920337786 +UniRef50_P41504 Probable tRNA dihydrouridine synthase 1.0563776753 0.5 -0.556377675297 +UniRef50_F7Y0P1 Binding protein dependent transport systems inner membrane component 2.12393560981 0.499999999996 -1.62393560981 +UniRef50_A6LSC4 Malonyl CoA acyl carrier protein transacylase 0.935249388968 0.5 -0.435249388968 +UniRef50_X3EYH3 DNA mismatch repair protein MutL 14.0409874038 0.499999999994 -13.5409874038 +UniRef50_Q9ZMK8 Peptide methionine sulfoxide reductase MsrA MsrB 0.00136830991245 0.5 0.498631690087 +UniRef50_O27156 CRISPR associated endonuclease Cas1 2.35394637453 0.500000000002 -1.85394637453 +UniRef50_F0KK42 0.0853401540716 0.5 0.414659845929 +UniRef50_P40420 Glucose uptake protein GlcU 1.53582596678 0.499999999998 -1.03582596677 +UniRef50_F0YA24 0.625746314358 0.5 -0.125746314358 +UniRef50_P77554 2.08552828701 0.5 -1.58552828701 +UniRef50_Q887Q4 Alginate biosynthesis protein AlgX 0.436255042815 0.5 0.0637449571848 +UniRef50_A4VKL4 Cbb3 type cytochrome c oxidase subunit CcoP 1.80801080172 0.499999999999 -1.30801080172 +UniRef50_M2QHJ0 1.60402523453 0.5 -1.10402523453 +UniRef50_P77559 2.34200493314 0.500000000001 -1.84200493314 +UniRef50_B8EN54 Ribonuclease D 2.88008124418 0.5 -2.38008124418 +UniRef50_Q8NXR4 ABC transporter permease 2.78019414521 0.499999999998 -2.28019414521 +UniRef50_D3E2D0 2.41174489273 0.500000000003 -1.91174489273 +UniRef50_Q2YNG3 Phosphoribosylformylglycinamidine synthase 1 0.781878837217 0.5 -0.281878837217 +UniRef50_A6U9U3 Cyclic pyranopterin monophosphate synthase 2.53496292167 0.500000000001 -2.03496292167 +UniRef50_K4NN39 Type I restriction enzyme R protein 0.0053559748024 0.5 0.494644025197 +UniRef50_UPI0003B6F790 50S ribosomal protein L9 1.26144882307 0.5 -0.76144882307 +UniRef50_UPI00029A559A acetate CoA ligase 0.0233536567916 0.5 0.476646343208 +UniRef50_B4U7T6 Acyl carrier protein 0.039257493487 0.5 0.460742506513 +UniRef50_Q9M5K2-2 Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial 0.240348614538 0.5 0.259651385462 +UniRef50_UPI0003B5C4DF UDP N acetylglucosamine 2 epimerase 0.175761552742 0.5 0.324238447258 +UniRef50_Q4L7F0 UPF0754 membrane protein SH1116 1.15477792988 0.499999999999 -0.65477792988 +UniRef50_UPI00025578B3 3 oxoacyl ACP reductase 0.390600196729 0.5 0.109399803271 +UniRef50_G4QEZ4 2 nitropropane dioxygenase family protein 4.71221206548 0.500000000002 -4.21221206548 +UniRef50_D5ARQ6 Lipoprotein, putative 0.901175353351 0.5 -0.401175353351 +UniRef50_Q2S2L8 ATP dependent Clp protease proteolytic subunit 1 0.0918636676249 0.5 0.408136332375 +UniRef50_UPI0003A2476A hypothetical protein 1.99149272471 0.5 -1.49149272471 +UniRef50_E6J991 Metallophosphoesterase 0.0865669144724 0.5 0.413433085528 +UniRef50_UPI0003F99510 hypothetical protein 0.99828438198 0.5 -0.49828438198 +UniRef50_E3GC98 Multidrug resistance protein MdtG 2.55110390258 0.5 -2.05110390258 +UniRef50_E8JLX0 0.233548227997 0.5 0.266451772003 +UniRef50_Q6LMV3 S ribosylhomocysteine lyase 2.21370795002 0.500000000001 -1.71370795002 +UniRef50_UPI0002C376D2 PREDICTED 0.131355650793 0.5 0.368644349207 +UniRef50_UPI000319E332 hypothetical protein 0.585085776712 0.5 -0.0850857767119 +UniRef50_UPI00035F7937 hypothetical protein 0.00410235733413 0.5 0.495897642666 +UniRef50_Q8LK02 6.91166086862 0.500000000003 -6.41166086862 +UniRef50_UPI00045E23DB PREDICTED 0.494363882803 0.5 0.00563611719669 +UniRef50_P76318 Putative SOS response associated peptidase YedK 1.1825315556 0.5 -0.682531555597 +UniRef50_O31019 Carbamate kinase 0.0461771811892 0.5 0.453822818811 +UniRef50_J7Q543 1.95280857586 0.5 -1.45280857586 +UniRef50_Q7NZ19 Phosphopantetheine adenylyltransferase 0.112368737689 0.5 0.387631262311 +UniRef50_I1PC32 0.471145261568 0.5 0.0288547384318 +UniRef50_A5V3M9 N succinylarginine dihydrolase 0.151740930619 0.5 0.348259069381 +UniRef50_F3GLY7 Periplasmic binding protein LacI transcriptional regulator 2.43769076276 0.500000000002 -1.93769076276 +UniRef50_UPI00016A69C6 hypothetical protein 1.54033541098 0.5 -1.04033541098 +UniRef50_Q49016 Arabinose transport protein 0.163999086892 0.5 0.336000913108 +UniRef50_O28733 Succinyl CoA ligase [ADP forming] subunit alpha 1 0.414911621763 0.5 0.0850883782375 +UniRef50_V6FRW4 Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein 0.0860907077746 0.5 0.413909292225 +UniRef50_P95785 ATP synthase subunit b 4.09948031703 0.500000000001 -3.59948031703 +UniRef50_H2ITE9 0.423077380325 0.5 0.0769226196753 +UniRef50_A6W759 1.53005683693 0.5 -1.03005683693 +UniRef50_F9XKQ7 0.416971815549 0.5 0.0830281844512 +UniRef50_A8LS45 Glycine tRNA ligase beta subunit 7.88791853539 0.499999999993 -7.38791853538 +UniRef50_J9GQF0 Heat shock protein 70 0.505289186914 0.5 -0.0052891869143 +UniRef50_B0C3D3 2 isopropylmalate synthase homocitrate synthase family protein 0.255172919392 0.5 0.244827080608 +UniRef50_B3PE41 Rrf2 family protein 0.00116198982098 0.5 0.498838010179 +UniRef50_B7LNX4 UPF0319 protein YccT 1.49069343093 0.5 -0.990693430933 +UniRef50_A0KTT2 4 hydroxy tetrahydrodipicolinate reductase 0.169878307121 0.5 0.330121692879 +UniRef50_UPI00029A5235 molybdenum cofactor biosynthesis protein A, partial 0.0897572632496 0.5 0.410242736751 +UniRef50_F0VSK8 Complete chromosome sequence, strain ATCC BAA 2069 0.308650763206 0.5 0.191349236794 +UniRef50_UPI000475CB6C methionine synthase 0.318892353088 0.5 0.181107646912 +UniRef50_F8HCE7 1.45905005212 0.499999999999 -0.959050052123 +UniRef50_UPI00035E8FBB hypothetical protein 11.7775299898 0.5 -11.2775299898 +UniRef50_Q9RY78 0.0492287069485 0.5 0.450771293051 +UniRef50_A3JAP6 6.90166399398 0.500000000001 -6.40166399398 +UniRef50_UPI0003B4F317 ABC transporter ATP binding protein, partial 0.260331445809 0.5 0.239668554191 +UniRef50_Q5XD15 Zinc binding protein AdcA 0.386026041379 0.5 0.113973958621 +UniRef50_Q5F8G9 ADP dependent NAD(P)H hydrate dehydratase 0.03191270897 0.5 0.46808729103 +UniRef50_Q21YB9 NADH quinone oxidoreductase subunit I 0.00359248429765 0.5 0.496407515702 +UniRef50_D7GI06 Proline specific permease proY 0.0923121860091 0.5 0.407687813991 +UniRef50_A7MY01 Ribonuclease HII 1.10461118314 0.5 -0.604611183138 +UniRef50_W1GG79 CFA I fimbrial auxiliary subunit 0.0910226535148 0.5 0.408977346485 +UniRef50_R7EZG6 0.379853337665 0.5 0.120146662335 +UniRef50_F7V4L9 L lactate permease 0.0259826101803 0.5 0.47401738982 +UniRef50_UPI0003483AFA hypothetical protein 1.58335189402 0.5 -1.08335189402 +UniRef50_Q8CSV4 1.20445416433 0.499999999999 -0.704454164329 +UniRef50_UPI000362C8FC hypothetical protein 0.360724109553 0.5 0.139275890447 +UniRef50_G9EJ55 0.302864998142 0.5 0.197135001858 +UniRef50_D3QEL4 ComF operon protein A, DNA transporter ATPase 0.757238391317 0.5 -0.257238391317 +UniRef50_S9R468 Mobile element protein 1.11142088861 0.5 -0.611420888609 +UniRef50_K7RQ95 Integral membrane protein MviN 0.0128602614939 0.5 0.487139738506 +UniRef50_S5E1S4 Chromosome partitioning protein ParB 2.35529473914 0.5 -1.85529473914 +UniRef50_Q89B29 Ribosomal RNA small subunit methyltransferase D 0.593950068086 0.5 -0.0939500680857 +UniRef50_UPI000370F5E4 hypothetical protein, partial 0.29125877667 0.5 0.20874122333 +UniRef50_R8ZG28 Putative glucosyl transferase 1.3544516539 0.5 -0.854451653902 +UniRef50_G7U5G6 0.100528501351 0.5 0.399471498649 +UniRef50_UPI000366A264 hypothetical protein 0.272911693367 0.5 0.227088306633 +UniRef50_B1ES29 Inner membrane protein YeaI 1.00967260784 0.5 -0.509672607838 +UniRef50_J9UQW7 0.335809137019 0.5 0.164190862981 +UniRef50_A0A011NUN7 N5 carboxyaminoimidazole ribonucleotide synthase 0.722049558036 0.5 -0.222049558036 +UniRef50_Q6FDQ7 0.0129806144237 0.5 0.487019385576 +UniRef50_UPI00036983C7 hypothetical protein 0.436055103148 0.5 0.0639448968524 +UniRef50_B5HTP9 0.357885978849 0.5 0.142114021151 +UniRef50_UPI00046A99F4 spermidine putrescine ABC transporter permease 0.0172433522538 0.5 0.482756647746 +UniRef50_A6M301 Carbohydrate kinase, YjeF related protein 0.377834329318 0.5 0.122165670682 +UniRef50_Q2NFN1 Predicted peptidase 2.08679938301 0.499999999999 -1.58679938301 +UniRef50_U5UFJ6 0.7938001291 0.5 -0.2938001291 +UniRef50_UPI0002D512F5 hypothetical protein 0.474694452924 0.5 0.0253055470761 +UniRef50_P32016 Capsule polysaccharide export ATP binding protein CtrD 0.0970788864293 0.5 0.402921113571 +UniRef50_UPI000368193C hypothetical protein 1.62916770113 0.5 -1.12916770113 +UniRef50_A9MZ05 3.82561460539 0.5 -3.32561460539 +UniRef50_A6LSS4 0.105092545552 0.5 0.394907454448 +UniRef50_Q5F4W7 0.0407286685081 0.5 0.459271331492 +UniRef50_W1Y671 Protein AraJ 2.33172826423 0.500000000002 -1.83172826423 +UniRef50_R6V897 Extracellular solute binding protein family 1 0.051789320654 0.5 0.448210679346 +UniRef50_U5V3F5 0.15086018856 0.5 0.34913981144 +UniRef50_K7UNN0 0.465410409035 0.5 0.0345895909651 +UniRef50_K2H9R9 0.62431439143 0.5 -0.12431439143 +UniRef50_UPI00036568A9 hypothetical protein 0.158762337837 0.5 0.341237662163 +UniRef50_P77334 Cyclic di GMP phosphodiesterase Gmr 8.46748988098 0.499999999996 -7.96748988097 +UniRef50_UPI000377D288 hypothetical protein 1.57414837164 0.5 -1.07414837164 +UniRef50_K3YVC5 1.66474848897 0.500000000002 -1.16474848897 +UniRef50_Q4L8M6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.03601678322 0.5 -0.536016783222 +UniRef50_X1E4N0 Marine sediment metagenome DNA, contig 0.0189034323976 0.5 0.481096567602 +UniRef50_A3JZY7 0.339762396234 0.5 0.160237603766 +UniRef50_Q8K986 7 cyano 7 deazaguanine synthase 0.183301988669 0.5 0.316698011331 +UniRef50_Q9RXF1 D alanine D alanine ligase 0.0129708668711 0.5 0.487029133129 +UniRef50_Q06986 E3 ubiquitin protein ligase SIAH2 0.454445014655 0.5 0.0455549853448 +UniRef50_A4WPA7 1.08694172137 0.5 -0.586941721365 +UniRef50_B7RMN2 Flagellar protein, putative 0.443825653276 0.5 0.0561743467237 +UniRef50_A4WPA8 1.0122806804 0.5 -0.5122806804 +UniRef50_K6TWJ0 2.51979070012 0.499999999999 -2.01979070012 +UniRef50_UPI00037DF98D hypothetical protein 0.0762551384258 0.5 0.423744861574 +UniRef50_Q5HPV8 Ribonuclease 3 1.63325010809 0.499999999999 -1.13325010809 +UniRef50_B8DTT6 Phosphoribosylformylglycinamidine cyclo ligase 1.113886147 0.5 -0.613886147 +UniRef50_Q6CX30 FK506 binding protein 1 0.379822126486 0.5 0.120177873514 +UniRef50_UPI000466CF90 nitrate reductase, partial 0.15755470402 0.5 0.34244529598 +UniRef50_UPI0003B7B122 malonyl CoA ACP transacylase 0.336544246967 0.5 0.163455753033 +UniRef50_Q18DZ3 Probable cell surface glycoprotein 0.87571861977 0.5 -0.37571861977 +UniRef50_A6M1K6 0.333782622228 0.5 0.166217377772 +UniRef50_F0YBF5 Expressed protein 0.497309684344 0.5 0.00269031565587 +UniRef50_UPI0004210B91 thioredoxin 0.705498313279 0.5 -0.205498313279 +UniRef50_UPI00037B4F64 hypothetical protein 3.061644439 0.5 -2.561644439 +UniRef50_J7Q7A9 1.00265598093 0.5 -0.50265598093 +UniRef50_UPI000423006B antiporter 0.598743439135 0.5 -0.0987434391355 +UniRef50_E8PEU6 0.000339463778743 0.5 0.499660536221 +UniRef50_Z2D7Y6 9.25260526012 0.5 -8.75260526012 +UniRef50_UPI0003B393A2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.0154675487082 0.5 0.484532451292 +UniRef50_P77694 Fimbria adhesin EcpD 0.899835731639 0.5 -0.399835731639 +UniRef50_R9SL72 DNA primase large subunit PriL 2.59672415177 0.500000000001 -2.09672415177 +UniRef50_UPI0003D007CA hypothetical protein 0.23134914605 0.5 0.26865085395 +UniRef50_UPI0002EC7A35 hypothetical protein 0.183413431755 0.5 0.316586568246 +UniRef50_UPI00036B4C2E hypothetical protein 0.553929166626 0.5 -0.0539291666255 +UniRef50_UPI0004669DE9 malate dehydrogenase 1.37422546498 0.5 -0.874225464982 +UniRef50_A3PJ14 Lipopolysaccharide biosynthesis 2.54396304863 0.5 -2.04396304863 +UniRef50_D6SDA6 0.974089052582 0.5 -0.474089052582 +UniRef50_Q5LP30 Valine tRNA ligase 0.516927558317 0.5 -0.016927558317 +UniRef50_Q0K7S4 Undecaprenyl diphosphatase 2.640990507 0.5 -2.140990507 +UniRef50_B9KU47 0.381742926853 0.5 0.118257073147 +UniRef50_B8NDP1 Putative glutathione dependent formaldehyde activating enzyme 1.84481291778 0.5 -1.34481291778 +UniRef50_UPI0000393886 peptidase 0.987445161279 0.5 -0.487445161279 +UniRef50_D8HS39 1.86794566123 0.5 -1.36794566123 +UniRef50_N3DVV4 0.719138498927 0.5 -0.219138498927 +UniRef50_F6HHF0 0.363721739915 0.5 0.136278260085 +UniRef50_UPI0002483870 rod shape determining protein MreB 2.83060996494 0.499999999999 -2.33060996494 +UniRef50_P21108 Ribose phosphate pyrophosphokinase 3 0.0852189596763 0.5 0.414781040324 +UniRef50_UPI0003B4201A transcriptional regulator 0.464544682961 0.5 0.0354553170387 +UniRef50_D3QI08 Autolysin 1.4355122377 0.5 -0.935512237698 +UniRef50_C1DNK0 0.150541681648 0.5 0.349458318352 +UniRef50_A7K6E8 Aconitase family 0.582684078003 0.5 -0.0826840780032 +UniRef50_I0C2F4 1.65213864031 0.499999999999 -1.15213864031 +UniRef50_Q753M0 Phosphoenolpyruvate carboxykinase [ATP] 0.0424474986471 0.5 0.457552501353 +UniRef50_F3ZB33 Putative ABC transporter substrate binding protein 0.56882607803 0.5 -0.0688260780299 +UniRef50_UPI00040A2517 hypothetical protein 4.1215193663 0.500000000002 -3.62151936631 +UniRef50_A0A059IKZ4 0.854864693227 0.5 -0.354864693227 +UniRef50_UPI000289D94C aspartyl glutamyl tRNA amidotransferase subunit B 1.62451513655 0.5 -1.12451513655 +UniRef50_T1YAV1 Transposase 1.16594763046 0.499999999999 -0.665947630458 +UniRef50_B4SDX3 Leucine tRNA ligase 0.00176855085192 0.5 0.498231449148 +UniRef50_Q0C3D1 Protoheme IX farnesyltransferase 0.173893995448 0.5 0.326106004552 +UniRef50_X5QZB1 0.578703244106 0.5 -0.0787032441058 +UniRef50_H9UQR5 0.929693883625 0.5 -0.429693883625 +UniRef50_W4SVT3 0.397185303975 0.5 0.102814696025 +UniRef50_M9VDN7 DeoR family transcriptional regulator 0.0238310073848 0.5 0.476168992615 +UniRef50_UPI00037E4101 polyamine ABC transporter substrate binding protein 0.0158986301429 0.5 0.484101369857 +UniRef50_UPI00038013D7 hypothetical protein 3.4415802057 0.5 -2.9415802057 +UniRef50_K7RSS9 Pseudouridine synthase 0.0462180060911 0.5 0.453781993909 +UniRef50_Q9KRL3 Carboxynorspermidine synthase 0.277387216963 0.5 0.222612783037 +UniRef50_J3I1E6 0.603791437398 0.5 -0.103791437398 +UniRef50_UPI00037A3195 hypothetical protein, partial 0.00103343338914 0.5 0.498966566611 +UniRef50_A3PIJ7 NUDIX hydrolase 4.37746356112 0.499999999998 -3.87746356112 +UniRef50_A0A010IZE0 0.0971601368863 0.5 0.402839863114 +UniRef50_Q82K60 1.5447992241 0.5 -1.0447992241 +UniRef50_A7BWG5 0.41841081071 0.5 0.0815891892903 +UniRef50_D7REY5 Caffeine dehydrogenase subunit gamma 0.307820044908 0.5 0.192179955092 +UniRef50_Q033L0 tRNA modification GTPase MnmE 1.46019111194 0.5 -0.960191111939 +UniRef50_UPI000365C459 hypothetical protein 0.294054035789 0.5 0.205945964211 +UniRef50_F7X9S0 Phosphosugar isomerase 3.9775413439 0.499999999998 -3.4775413439 +UniRef50_E3H2R2 PTS system, mannose fructose sorbose family, IIC component 0.0739732056405 0.5 0.42602679436 +UniRef50_X8C840 Transketolase, thiamine diphosphate binding domain protein 0.584009416595 0.5 -0.0840094165951 +UniRef50_A5UJG6 0.536939363143 0.5 -0.0369393631428 +UniRef50_L1INE5 0.377800640154 0.5 0.122199359846 +UniRef50_Q8YNF7 Aminomethyltransferase 0.0501871874782 0.5 0.449812812522 +UniRef50_UPI000287F8C3 50S ribosomal protein L18 1.92689267055 0.500000000003 -1.42689267056 +UniRef50_E2XNC4 Oligopeptidase B 1.98159162064 0.499999999999 -1.48159162064 +UniRef50_A8FKX4 Elongation factor P 0.031463262956 0.5 0.468536737044 +UniRef50_A3TSE6 ISSfl4 0.777740508308 0.5 -0.277740508308 +UniRef50_K0SGI4 4.02269736332 0.500000000001 -3.52269736332 +UniRef50_K9DHZ5 Inner membrane transporter YhaO 0.252501451668 0.5 0.247498548332 +UniRef50_K2CR97 4.41281371226 0.499999999997 -3.91281371226 +UniRef50_UPI000382A7B2 hypothetical protein 1.36384162652 0.5 -0.863841626524 +UniRef50_I0C1L9 1.15587013851 0.5 -0.655870138511 +UniRef50_M9RMB0 Amino acid ABC transporter permease protein 7.56557513842 0.500000000001 -7.06557513842 +UniRef50_B9KWA6 0.164798828603 0.5 0.335201171397 +UniRef50_A0A058T6Z9 0.157131088926 0.5 0.342868911074 +UniRef50_D6K2W1 1.46365560557 0.5 -0.963655605572 +UniRef50_A0RR59 Uracil phosphoribosyltransferase 0.0529480468327 0.5 0.447051953167 +UniRef50_UPI00037904B4 amino acid ABC transporter ATP binding protein, partial 0.0509202612345 0.5 0.449079738765 +UniRef50_Q1GHA7 Ferredoxin 1.51206506406 0.5 -1.01206506406 +UniRef50_UPI00036F7268 MULTISPECIES 0.023684158044 0.5 0.476315841956 +UniRef50_UPI00047D88C2 stage V sporulation protein D 0.186919448425 0.5 0.313080551575 +UniRef50_UPI000287A5C2 organic hydroperoxide resistance protein 0.282261158825 0.5 0.217738841175 +UniRef50_A9ALK8 FAD dependent oxidoreductase 0.758413449651 0.5 -0.258413449651 +UniRef50_UPI00045EB579 hypothetical protein 0.39620000127 0.5 0.10379999873 +UniRef50_Q69XT0 0.163682921867 0.5 0.336317078133 +UniRef50_UPI00047E74A6 hypothetical protein 0.354290104136 0.5 0.145709895864 +UniRef50_B9KQD9 Phage phi C31 gp36 major capsid like protein 2.04241860548 0.5 -1.54241860548 +UniRef50_A5W9S9 GTPase HflX 1.01109947595 0.5 -0.511099475946 +UniRef50_C8S226 Endoribonuclease L PSP 1.37600196154 0.5 -0.876001961543 +UniRef50_UPI000475C0DD iron ABC transporter 0.0258055997707 0.5 0.474194400229 +UniRef50_P56861 Adenylyl sulfate kinase 0.00468398612521 0.5 0.495316013875 +UniRef50_Q6GJM1 UPF0753 protein SAR0453 2.5599174197 0.499999999999 -2.0599174197 +UniRef50_E1PY57 Riboflavin biosynthesis protein 0.0223491049854 0.5 0.477650895015 +UniRef50_E8P9Z6 DNA repair protein RecN 0.020787707201 0.5 0.479212292799 +UniRef50_UPI0003FA1CD0 leucyl tRNA synthase 1.35467629054 0.5 -0.854676290541 +UniRef50_E4PYJ4 Thiol disulfide isomerase and thioredoxin 1.26718389605 0.5 -0.767183896048 +UniRef50_F0YAU6 1.10845113795 0.5 -0.608451137951 +UniRef50_V9QPJ8 0.150945538746 0.5 0.349054461254 +UniRef50_UPI0001745568 4 alpha glucanotransferase 0.00986382374874 0.5 0.490136176251 +UniRef50_J2F940 Multidrug efflux RND transporter, membrane fusion protein MexE 0.138938370357 0.5 0.361061629643 +UniRef50_UPI0003090BBE chemotaxis protein CheY 5.83142691591 0.499999999997 -5.3314269159 +UniRef50_Q50784 Polyferredoxin protein MvhB 2.85462669916 0.5 -2.35462669916 +UniRef50_C0HHH0 0.858255515741 0.5 -0.358255515741 +UniRef50_P75853 Putative aliphatic sulfonates binding protein 2.33445591526 0.500000000001 -1.83445591526 +UniRef50_Q2KTS9 Phosphoribosyl ATP pyrophosphatase 0.163046512206 0.5 0.336953487794 +UniRef50_Q3IXK5 4.21895216532 0.5 -3.71895216532 +UniRef50_Q9KUI0 Sulfate thiosulfate import ATP binding protein CysA 1.53436472991 0.5 -1.03436472991 +UniRef50_Q3J5B1 4.61051480385 0.5 -4.11051480385 +UniRef50_F3ZY36 MATE efflux family protein 0.0494271685046 0.5 0.450572831496 +UniRef50_Q891I6 Xanthine phosphoribosyltransferase 0.916289067837 0.5 -0.416289067837 +UniRef50_R7TBI6 0.12404404628 0.5 0.37595595372 +UniRef50_UPI00037EC417 hypothetical protein, partial 0.122125754844 0.5 0.377874245156 +UniRef50_UPI000469EAA1 hypothetical protein 0.967326558764 0.5 -0.467326558764 +UniRef50_W7S895 0.143283218841 0.5 0.356716781159 +UniRef50_UPI00037EBED1 hypothetical protein 0.62183075183 0.5 -0.12183075183 +UniRef50_F0PBM9 0.00454230053084 0.5 0.495457699469 +UniRef50_X1YAY8 0.176455994206 0.5 0.323544005794 +UniRef50_UPI0003B33944 ATPase 0.0167428734181 0.5 0.483257126582 +UniRef50_H3FTW8 1.79426805794 0.499999999999 -1.29426805794 +UniRef50_S4RAN5 0.752696598422 0.5 -0.252696598422 +UniRef50_UPI0003658A58 hypothetical protein 0.0335771659717 0.499999999999 0.466422834029 +UniRef50_V5VE79 AdaA 0.0148490685726 0.5 0.485150931427 +UniRef50_Y5XPW9 Serine aspartate repeat containing protein C 0.776154734421 0.5 -0.276154734421 +UniRef50_P64588 Transcriptional regulator YqjI 0.963635776735 0.5 -0.463635776735 +UniRef50_Q5XHA8 CTP synthase 1 A 0.0120270944768 0.499999999999 0.487972905524 +UniRef50_Q3JNW3 0.223405206722 0.5 0.276594793278 +UniRef50_Q93R93 Acetylornithine acetyl lysine aminotransferase 0.016687937399 0.500000000001 0.4833120626 +UniRef50_UPI0003B5FA5F arginyl tRNA synthetase 0.285470939189 0.5 0.214529060811 +UniRef50_P37325 4.38649769449 0.499999999995 -3.88649769449 +UniRef50_B4U1Q9 CRISPR associated endoribonuclease Cas2 1.84146131936 0.500000000002 -1.34146131937 +UniRef50_UPI00047540FD ATP dependent DNA helicase RecQ 1.43635368328 0.500000000001 -0.936353683277 +UniRef50_Q9HWZ6 Inorganic pyrophosphatase 38.5562057538 0.500000000018 -38.0562057539 +UniRef50_UPI00041DD57B hypothetical protein 0.952950406799 0.5 -0.452950406799 +UniRef50_I0CNI8 0.00252360106057 0.5 0.49747639894 +UniRef50_P19072 Branched chain amino acid transport system 2 carrier protein 2.19229880408 0.5 -1.69229880408 +UniRef50_UPI00037B9617 hypothetical protein 1.07765907303 0.5 -0.577659073026 +UniRef50_C9YGV0 0.0950892874029 0.5 0.404910712597 +UniRef50_P44555 0.00767297222241 0.5 0.492327027778 +UniRef50_UPI0004408592 acyl CoA dehydrogenase NM domain like protein 0.0275104250042 0.500000000001 0.472489574995 +UniRef50_L8DV59 Pyrimidine nucleoside phosphorylase 0.193244433926 0.5 0.306755566074 +UniRef50_I7DAX1 0.116242780772 0.5 0.383757219228 +UniRef50_X2HWT2 Membrane protein 0.00665142194643 0.5 0.493348578053 +UniRef50_R6H7C0 1.25001634959 0.499999999999 -0.750016349591 +UniRef50_A5ZTX7 TRAP transporter, DctM like membrane protein 0.899194500427 0.5 -0.399194500427 +UniRef50_A8ACU9 0.0403070135981 0.5 0.459692986402 +UniRef50_O87014 USG 1 protein homolog 0.155529514357 0.5 0.344470485643 +UniRef50_B9KU14 Transcriptional regulator, AraC family with amidase like domain 6.27608686485 0.500000000003 -5.77608686485 +UniRef50_A6LR19 Nitrogenase 0.173914893952 0.5 0.326085106048 +UniRef50_UPI0003FC1CC9 DNA mismatch repair protein MutS 0.0235873102002 0.5 0.4764126898 +UniRef50_UPI0002B472DF PREDICTED 0.0739409272364 0.500000000001 0.426059072763 +UniRef50_G3XDA7 Cell division protein FtsQ 1.02607163339 0.5 -0.52607163339 +UniRef50_A8EWJ4 Dihydroxy acid dehydratase 0.355139663726 0.5 0.144860336274 +UniRef50_UPI0002FFF8E0 hypothetical protein 0.00351503277351 0.5 0.496484967227 +UniRef50_C3KCS9 Lipid II flippase FtsW 1.21705601391 0.5 -0.717056013905 +UniRef50_W1DNY7 Acyl CoA dehydrogenases 0.850026551477 0.5 -0.350026551477 +UniRef50_UPI0000164CF4 4 alpha glucanotransferase 0.00302775417106 0.5 0.496972245829 +UniRef50_S9ULD0 0.0296576242416 0.5 0.470342375758 +UniRef50_R6NN79 Asparagine synthetase 0.268988093412 0.5 0.231011906588 +UniRef50_UPI000362C4BE hypothetical protein 0.357396402695 0.5 0.142603597305 +UniRef50_A7MGN4 0.413939122568 0.5 0.0860608774319 +UniRef50_UPI00036F08F2 hypothetical protein 0.319560307809 0.5 0.180439692191 +UniRef50_Q8EQK9 GTP cyclohydrolase FolE2 3.35531035281 0.5 -2.85531035281 +UniRef50_UPI0001FFEE83 carbohydrate kinase, FGGY 1.01897440235 0.5 -0.518974402349 +UniRef50_G7M6Z6 SNF2 related protein 0.0534644934984 0.5 0.446535506502 +UniRef50_A0A016QN06 Peptidase like protein 0.00281484757076 0.500000000001 0.497185152429 +UniRef50_O87050 Z47f protein 3.79269268714 0.5 -3.29269268714 +UniRef50_Q5HQ44 1.30013046451 0.5 -0.800130464506 +UniRef50_UPI0003B47736 ABC transporter 1.82677029686 0.5 -1.32677029686 +UniRef50_Q9RYX6 Xanthine dehydrogenase, C terminal subunit 0.00614061487627 0.5 0.493859385124 +UniRef50_A5N5A2 Predicted methyl accepting chemotaxis protein 0.169652617986 0.5 0.330347382013 +UniRef50_Q896Z8 2 hydroxyacid dehydrogenase 0.498476740908 0.5 0.00152325909249 +UniRef50_A0A023L6S3 AraC family transcriptional regulator 1.65058065354 0.5 -1.15058065354 +UniRef50_S6AEX2 1.27449065541 0.5 -0.774490655412 +UniRef50_UPI000374E005 hypothetical protein 3.07053942632 0.5 -2.57053942632 +UniRef50_A4BQV7 3.28711359332 0.500000000001 -2.78711359332 +UniRef50_B2I1F3 GGDEF domain protein 0.00535070857249 0.5 0.494649291427 +UniRef50_Q9RZ34 0.00382956047918 0.5 0.496170439521 +UniRef50_P32053 Prophage CP4 57 integrase 0.462345733768 0.5 0.0376542662325 +UniRef50_P53579 Methionine aminopeptidase A 0.817229938119 0.5 -0.317229938119 +UniRef50_X1SD71 Marine sediment metagenome DNA, contig 0.0316601362329 0.5 0.468339863767 +UniRef50_UPI0002483124 anaerobic glycerol 3 phosphate dehydrogenase subunit B, partial 0.338806709326 0.5 0.161193290674 +UniRef50_UPI0002EC7919 citrate lyase 0.830481981548 0.5 -0.330481981548 +UniRef50_N6U9J3 0.334867109254 0.5 0.165132890746 +UniRef50_UPI000219384C amino acid transport protein, partial 0.118419025542 0.5 0.381580974458 +UniRef50_UPI0003488777 hypothetical protein 1.87612709592 0.500000000002 -1.37612709592 +UniRef50_UPI000477CFFE hypothetical protein, partial 0.553405171379 0.5 -0.0534051713789 +UniRef50_A7IPN7 TRAP dicarboxylate transporter, DctM subunit 0.280638223312 0.5 0.219361776688 +UniRef50_P76537 3.34523088701 0.499999999996 -2.84523088701 +UniRef50_Q02SV2 Tyrosine tRNA ligase 0.48099679507 0.5 0.0190032049299 +UniRef50_UPI000379976F hypothetical protein 1.28596696382 0.5 -0.785966963818 +UniRef50_D3E3L7 Ribonuclease III Rnc 0.737414833941 0.5 -0.237414833941 +UniRef50_Q8FAM3 1.0806167223 0.499999999999 -0.580616722299 +UniRef50_E3H102 0.979290863105 0.5 -0.479290863105 +UniRef50_B7A940 Carbamoyl phosphate synthase small chain 0.977556567929 0.5 -0.477556567929 +UniRef50_P0A0V1 LPP20 lipoprotein 0.0924147179143 0.5 0.407585282086 +UniRef50_A0A023RX60 Membrane protein insertase 0.0167250301954 0.5 0.483274969805 +UniRef50_Q1CSU8 tRNA pseudouridine synthase D 0.0166485473725 0.5 0.483351452628 +UniRef50_B3PB14 0.162269606192 0.5 0.337730393808 +UniRef50_U5QR95 ATPase 0.353600657809 0.5 0.146399342191 +UniRef50_UPI00036F0DA2 hypothetical protein 1.81811323968 0.5 -1.31811323968 +UniRef50_UPI00046FF35E hypothetical protein, partial 0.0330895615194 0.5 0.466910438481 +UniRef50_K7VAT5 0.152628837634 0.5 0.347371162366 +UniRef50_A0A024BZJ6 Peptide ABC transporter ATP binding protein 0.00679135028993 0.5 0.49320864971 +UniRef50_W0YTU6 Aminoglycoside response regulator 0.239189566431 0.5 0.260810433569 +UniRef50_Q38YN7 Putative Holliday junction resolvase 0.915541262647 0.5 -0.415541262647 +UniRef50_D3V3Z5 0.35538888179 0.5 0.14461111821 +UniRef50_S0JG44 2.20146171174 0.499999999999 -1.70146171174 +UniRef50_UPI00041DC2F9 ABC transporter 1.71238295144 0.5 -1.21238295144 +UniRef50_A7MUU9 Glutamate 1 semialdehyde 2,1 aminomutase 55.5507029852 0.499999999988 -55.0507029851 +UniRef50_C1DQZ5 Transcriptional regulator PsrA 1.315169174 0.5 -0.815169173996 +UniRef50_UPI0003A41BA8 succinate semialdehyde dehdyrogenase 0.0473562245895 0.5 0.452643775411 +UniRef50_K8E2T1 0.179942321105 0.5 0.320057678895 +UniRef50_UPI00047B06D7 acetyltransferase 0.229823239267 0.5 0.270176760733 +UniRef50_UPI0003673946 hypothetical protein 0.932448641044 0.5 -0.432448641044 +UniRef50_Q1R4J9 1.12267334227 0.5 -0.622673342265 +UniRef50_F9Z1V7 0.0420832238991 0.499999999999 0.457916776102 +UniRef50_P31058 1.11659289775 0.5 -0.616592897753 +UniRef50_L0GJH1 0.577310737071 0.5 -0.077310737071 +UniRef50_UPI00047B6853 NAD binding oxidoreductase 0.306151244694 0.5 0.193848755306 +UniRef50_M1MHE2 Glycosyl transferase, family 2 0.0338283542847 0.500000000001 0.466171645714 +UniRef50_UPI00029A566E glycoside hydrolase family protein 0.38248126437 0.5 0.11751873563 +UniRef50_UPI00030D2211 hypothetical protein 0.334348015622 0.5 0.165651984378 +UniRef50_Q67KH8 Imidazole glycerol phosphate synthase subunit HisH 0.491588448705 0.5 0.00841155129547 +UniRef50_P39794 PTS system trehalose specific EIIBC component 1.50914418002 0.5 -1.00914418002 +UniRef50_A4EHJ0 AzlC family protein 1.40995369645 0.5 -0.909953696448 +UniRef50_U6ED29 Ferrous iron transport protein B 2.5937523621 0.5 -2.0937523621 +UniRef50_Q21SX1 D alanine D alanine ligase 1.80153148972 0.5 -1.30153148972 +UniRef50_X7X2Q6 1.42960215435 0.5 -0.929602154346 +UniRef50_A6M1J5 0.194746541147 0.5 0.305253458853 +UniRef50_A6M1J9 0.127021961392 0.5 0.372978038608 +UniRef50_Q98IL5 Mlr2349 protein 0.932228422736 0.5 -0.432228422736 +UniRef50_B2IM62 Cmp binding factor 1 0.711711547076 0.5 -0.211711547076 +UniRef50_U3SS19 7.07430241476 0.500000000002 -6.57430241476 +UniRef50_UPI0003D32881 hypothetical protein 48.1735978337 0.49999999999 -47.6735978337 +UniRef50_R5ZJK5 Pyruvate dehydrogenase complex repressor 0.146307234919 0.5 0.353692765081 +UniRef50_P23173 Low affinity tryptophan permease 3.18103231263 0.5 -2.68103231263 +UniRef50_E0TBL9 1.55294510779 0.5 -1.05294510779 +UniRef50_J3KZC6 0.117114648026 0.5 0.382885351974 +UniRef50_P08987 Glucosyltransferase I 1.1887197046 0.5 -0.6887197046 +UniRef50_S5N864 Molecular chaperone GroES 1.65066323095 0.5 -1.15066323095 +UniRef50_UPI0001FFE2F2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridin epyrophosphokinase 0.484039716123 0.5 0.0159602838774 +UniRef50_E8P8Z7 Transposase 1.47956530097 0.5 -0.97956530097 +UniRef50_B7H383 Fumarate reductase flavoprotein subunit 0.00370262820684 0.5 0.496297371793 +UniRef50_UPI0003B789C4 DNA mismatch repair protein MutS 0.0136670273002 0.5 0.4863329727 +UniRef50_Q49WG0 Organic hydroperoxide resistance protein like 2 0.624243234702 0.5 -0.124243234702 +UniRef50_X5MDF7 Thioesterase family protein domain protein 0.458462487304 0.5 0.0415375126959 +UniRef50_A4WNH8 Major facilitator superfamily MFS_1 10.8333182985 0.500000000001 -10.3333182985 +UniRef50_A2SMC9 Phosphoheptose isomerase 0.524026501151 0.5 -0.0240265011509 +UniRef50_A8F5R0 Holliday junction ATP dependent DNA helicase RuvB 0.479659938999 0.5 0.020340061001 +UniRef50_Q6MAC7 Glutamate 1 semialdehyde 2,1 aminomutase 0.276232480329 0.5 0.223767519671 +UniRef50_Q9JSQ9 Dihydrofolate reductase 0.000828709539413 0.5 0.499171290461 +UniRef50_Q8UEB0 Phosphoribosylformylglycinamidine synthase 2 2.08502869023 0.5 -1.58502869023 +UniRef50_A5UKW8 Prephenate dehydrogenase 4.33948775197 0.5 -3.83948775197 +UniRef50_I1VJZ3 PhoH 0.0166284587171 0.5 0.483371541283 +UniRef50_A3M2Y1 Pseudouridine synthase 0.021029714787 0.5 0.478970285213 +UniRef50_C7MCQ3 Pseudouridine synthase 0.0108003475882 0.5 0.489199652412 +UniRef50_UPI0002F44DE1 amino acid dehydrogenase 0.923304376316 0.5 -0.423304376316 +UniRef50_D2SFI0 SAF domain protein 3.03828225275 0.499999999998 -2.53828225274 +UniRef50_Q041N3 0.295307547372 0.5 0.204692452628 +UniRef50_Q2NEB6 Phosphoribosylformylglycinamidine synthase 2 2.92728724455 0.5 -2.42728724455 +UniRef50_UPI000472CD1A anhydro N acetylmuramic acid kinase 0.0500640761069 0.5 0.449935923893 +UniRef50_F0S3X5 0.357405204367 0.5 0.142594795633 +UniRef50_UPI00035C5DE1 hypothetical protein 1.56164463656 0.500000000001 -1.06164463657 +UniRef50_K9SGR1 Transposase IS4 family protein 1.86129236738 0.5 -1.36129236738 +UniRef50_A0A022S5M2 NAD binding domain of 6 phosphogluconate dehydrogenase family protein 0.147450964813 0.5 0.352549035187 +UniRef50_P77211 Cation efflux system protein CusC 0.917867190992 0.5 -0.417867190992 +UniRef50_Q3IUV3 TraH 1.86442800669 0.499999999999 -1.36442800669 +UniRef50_UPI0003B5C889 6 phosphofructokinase 1.22002969636 0.5 -0.720029696364 +UniRef50_E4BA85 0.0700521083293 0.5 0.429947891671 +UniRef50_UPI00016A5A20 ABC type spermidine putrescine transport system, permease component II 0.172792854373 0.5 0.327207145627 +UniRef50_A3M530 Phage tail tape meausure protein lambda family 0.00575991994611 0.5 0.494240080054 +UniRef50_G1UVN7 1.63014824838 0.5 -1.13014824838 +UniRef50_D5AUR3 Tyrosine protein kinase Wzc 1.0666410322 0.499999999999 -0.566641032201 +UniRef50_UPI00040C0F6B hypothetical protein 0.212233997555 0.5 0.287766002445 +UniRef50_Q6A666 0.00787607577707 0.5 0.492123924223 +UniRef50_A8AQ52 1.06074429812 0.5 -0.56074429812 +UniRef50_Q2GCH6 Malate dehydrogenase 0.972355510706 0.5 -0.472355510706 +UniRef50_E2ZRH0 0.257385145828 0.5 0.242614854172 +UniRef50_UPI00047014CA hypothetical protein 1.25836159196 0.500000000001 -0.758361591958 +UniRef50_UPI000161E9D3 2 methyl branched chain enoyl CoA reductase isoform I 0.0610527243488 0.5 0.438947275651 +UniRef50_P0ADV7 Probable phospholipid binding protein MlaC 1.62512291603 0.5 -1.12512291603 +UniRef50_UPI00039F6CD4 glutathione ABC transporter permease 0.290115702232 0.5 0.209884297768 +UniRef50_Q47NN7 Uroporphyrinogen decarboxylase 0.515470747874 0.5 -0.0154707478738 +UniRef50_Q9RXX4 0.010783244146 0.499999999999 0.489216755855 +UniRef50_A4WS74 1.89133376372 0.5 -1.39133376372 +UniRef50_P39310 0.206642997682 0.5 0.293357002318 +UniRef50_B3DX01 Aspartate tRNA ligase 0.350928152618 0.5 0.149071847382 +UniRef50_M9RV27 UPF0301 protein OA238_c37660 0.22771286356 0.5 0.27228713644 +UniRef50_P0AE13 AMP nucleosidase 3.45559465996 0.5 -2.95559465996 +UniRef50_UPI00046665BD hypothetical protein 1.08272304322 0.5 -0.58272304322 +UniRef50_UPI000473A39B 30S ribosomal protein S15, partial 0.617242793735 0.5 -0.117242793735 +UniRef50_UPI00026CDD90 putative esterase 0.804202586942 0.5 -0.304202586942 +UniRef50_M2JJ86 Aryl alcohol dehydrogenase 0.102561698569 0.5 0.397438301431 +UniRef50_M9RIF3 0.130675196351 0.5 0.369324803649 +UniRef50_UPI000467C7F7 hypothetical protein 0.0736098883003 0.5 0.4263901117 +UniRef50_Q4L8I6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.44850086094 0.5 -1.94850086094 +UniRef50_G7M6V2 Cof like hydrolase 0.433020579588 0.5 0.0669794204118 +UniRef50_UPI0003B6B463 protein phosphatase 0.40524649327 0.5 0.09475350673 +UniRef50_Q9RS72 0.00145511898064 0.5 0.498544881019 +UniRef50_L0LHI9 0.612230099822 0.5 -0.112230099822 +UniRef50_Q3IVA7 Phosphoglucomutase phosphomannomutase 1.06527793227 0.5 -0.565277932268 +UniRef50_W5X4J6 Glycoside hydrolase family protein 0.0371027174999 0.5 0.4628972825 +UniRef50_P0A635 Cysteine tRNA ligase 0.198119438659 0.5 0.301880561341 +UniRef50_Q838S5 Glyoxalase 0.0176061960101 0.500000000001 0.482393803989 +UniRef50_K7RWW8 3 5 exonuclease 0.0691083306586 0.5 0.430891669341 +UniRef50_Q1GDK6 Uroporphyrinogen decarboxylase 2.04725758875 0.499999999997 -1.54725758875 +UniRef50_B0RVK3 Succinyl CoA 0.166636748197 0.5 0.333363251803 +UniRef50_A8ACZ6 Xaa Pro dipeptidase 2.80038378269 0.5 -2.30038378269 +UniRef50_A8LRK2 1.067125106 0.5 -0.567125106004 +UniRef50_R7S2B2 HD domain PDEase like protein 0.180158369589 0.5 0.319841630411 +UniRef50_F0XZC7 0.251518644155 0.5 0.248481355845 +UniRef50_Q6GBA6 Histidinol phosphate aminotransferase 1.39399226341 0.5 -0.893992263412 +UniRef50_UPI00037E8A1E hypothetical protein 0.0336394588348 0.5 0.466360541166 +UniRef50_UPI000255621F hypothetical protein 0.550879381445 0.5 -0.0508793814452 +UniRef50_G2RRU8 Glycerol uptake facilitator Permease 14.1034301769 0.500000000018 -13.6034301769 +UniRef50_UPI0003FB737F DNA gyrase subunit A 0.2461453043 0.5 0.2538546957 +UniRef50_J3I8M6 0.0261231787179 0.5 0.473876821282 +UniRef50_Q8XBT3 Universal stress protein G 5.80480833878 0.500000000002 -5.30480833879 +UniRef50_M9VBX6 0.0235738107465 0.5 0.476426189254 +UniRef50_M4WZP2 0.180299289457 0.5 0.319700710543 +UniRef50_UPI00016C466B Extracellular ligand binding receptor 0.159579990758 0.5 0.340420009242 +UniRef50_Q1IL91 NADH quinone oxidoreductase subunit B 2 0.108818570499 0.500000000001 0.391181429501 +UniRef50_A6VB56 1.82686346499 0.500000000003 -1.326863465 +UniRef50_T1A5J7 0.123200102425 0.5 0.376799897575 +UniRef50_UPI0003B56320 DNA repair protein RadA 0.20237023641 0.5 0.29762976359 +UniRef50_UPI000382943F hypothetical protein, partial 2.43777993955 0.500000000005 -1.93777993955 +UniRef50_S8UV07 1.63894881176 0.5 -1.13894881176 +UniRef50_UPI0001913D8E hypothetical protein, partial 0.45687301084 0.5 0.0431269891603 +UniRef50_W4TLW8 ABC type multidrug transport system 0.291363810059 0.5 0.208636189941 +UniRef50_Q93K67 Arginine deiminase 0.0283240919674 0.5 0.471675908033 +UniRef50_UPI00036FB25E GMP synthase 0.628569988595 0.5 -0.128569988595 +UniRef50_V9U0L1 Transcriptional regulator 0.45742768411 0.5 0.0425723158897 +UniRef50_F8FR22 ABC transporter permease protein 1.59856526899 0.5 -1.09856526899 +UniRef50_UPI00035D0F9F hypothetical protein, partial 0.0522363675375 0.5 0.447763632463 +UniRef50_S5S114 CarD family transcriptional regulator protein 2.84020018406 0.5 -2.34020018406 +UniRef50_UPI00037BA794 hypothetical protein 0.406585791676 0.5 0.0934142083241 +UniRef50_E8SJL6 Manganese ABC transporter, ATP binding protein SitB 1.98040264199 0.499999999999 -1.48040264199 +UniRef50_E1W2A8 Deoxyribose phosphate aldolase 0.152341734806 0.5 0.347658265194 +UniRef50_UPI0003175B32 hypothetical protein 0.369800896332 0.5 0.130199103668 +UniRef50_A6LZB7 0.0763867872789 0.5 0.423613212721 +UniRef50_A6LZB6 0.359352300163 0.5 0.140647699837 +UniRef50_Q6GB21 1.64500141514 0.499999999999 -1.14500141514 +UniRef50_UPI0003B57978 siderophore interacting protein 0.00936582964566 0.5 0.490634170354 +UniRef50_C1N717 Predicted protein 0.19650303531 0.5 0.30349696469 +UniRef50_Q5HIS8 Single stranded DNA binding protein 1 1.12016817658 0.5 -0.620168176576 +UniRef50_UPI00046AB08C hypothetical protein 0.039738328625 0.500000000001 0.460261671374 +UniRef50_U7I8Y0 1.36560267847 0.5 -0.865602678467 +UniRef50_Q8DW20 AguR protein 2.71749321983 0.5 -2.21749321983 +UniRef50_UPI00046CE535 hypothetical protein 2.88786404006 0.499999999999 -2.38786404006 +UniRef50_Q4EE14 0.323510274506 0.5 0.176489725494 +UniRef50_A6M0G1 Extracellular solute binding protein, family 5 0.21465831707 0.500000000001 0.28534168293 +UniRef50_M1Y549 1.95364116995 0.500000000003 -1.45364116995 +UniRef50_P37597 Inner membrane transport protein YdhC 4.9520578581 0.500000000003 -4.45205785811 +UniRef50_UPI00046FDF41 hypothetical protein 0.218373839955 0.5 0.281626160045 +UniRef50_M3EIH0 Alkaline phosphatase 0.0120304908867 0.5 0.487969509113 +UniRef50_Q88FX9 Nicotinate dehydrogenase subunit A 0.122710268873 0.5 0.377289731127 +UniRef50_P77923 Delta aminolevulinic acid dehydratase 0.0220295479795 0.5 0.47797045202 +UniRef50_K5YXR4 0.0808311579692 0.499999999999 0.419168842032 +UniRef50_Q6FED0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0316718837316 0.5 0.468328116268 +UniRef50_B0KA54 GTPase Era 1.17409211833 0.5 -0.674092118326 +UniRef50_UPI00037E38E9 hypothetical protein, partial 0.0728974331085 0.5 0.427102566892 +UniRef50_B9DIA5 Methylenetetrahydrofolate reductase 2.3079089057 0.499999999999 -1.8079089057 +UniRef50_W5XBY9 Sugar ABC transporter permease 0.264298840421 0.5 0.235701159579 +UniRef50_P71348 Glutamate pyruvate aminotransferase AlaA 0.154785154101 0.5 0.345214845899 +UniRef50_UPI00036FDD71 hypothetical protein 0.282849067756 0.5 0.217150932244 +UniRef50_Q8CVL1 Multidrug resistance protein MdtE 1.09141925518 0.5 -0.591419255184 +UniRef50_A6LTI4 0.0553043163741 0.500000000001 0.444695683625 +UniRef50_A6LTI6 0.020365277703 0.5 0.479634722297 +UniRef50_A6LTI7 0.0426035573553 0.5 0.457396442645 +UniRef50_Q98QY9 Glycerol kinase 0.0135281538901 0.5 0.48647184611 +UniRef50_Q03ZA4 Ribosomal RNA small subunit methyltransferase G 0.573918034412 0.5 -0.073918034412 +UniRef50_X6FLX7 C4 dicarboxylate ABC transporter 0.224620617603 0.5 0.275379382397 +UniRef50_X0T626 Marine sediment metagenome DNA, contig 1.52817784807 0.5 -1.02817784807 +UniRef50_A4WNY5 0.767866358499 0.5 -0.267866358499 +UniRef50_F2D9R2 Predicted protein 0.0211523085638 0.500000000001 0.478847691436 +UniRef50_O25042 0.013059923333 0.5 0.486940076667 +UniRef50_UPI000377F130 hypothetical protein 0.75950009188 0.5 -0.25950009188 +UniRef50_Q2LUS9 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.0337923993 0.5 -0.533792399301 +UniRef50_B7V621 0.298975939638 0.5 0.201024060362 +UniRef50_Q18CF3 DNA directed RNA polymerase subunit beta 0.706108816302 0.5 -0.206108816302 +UniRef50_X4QVT5 Antitoxin HicB 0.169705208074 0.5 0.330294791926 +UniRef50_R0U5E9 1.51145346974 0.5 -1.01145346974 +UniRef50_H7CZX2 DNA replication protein DnaC 0.078073564558 0.5 0.421926435442 +UniRef50_X5K1L0 0.268160625868 0.5 0.231839374132 +UniRef50_B1LXW0 1.07887430365 0.5 -0.578874303645 +UniRef50_UPI0003ACEF34 dihydrofolate synthase 0.049569973037 0.5 0.450430026963 +UniRef50_B2UX43 Chromosomal replication initiator protein DnaA 1.2331685072 0.5 -0.733168507204 +UniRef50_Q6G904 DNA primase 2.02120187741 0.500000000001 -1.52120187741 +UniRef50_Q0TMX8 Threonine tRNA ligase 0.122599475715 0.5 0.377400524285 +UniRef50_D0CZU1 2 oxoglutarate dehydrogenase E1 component 1.97172075244 0.5 -1.47172075244 +UniRef50_A5UN27 Putative antimicrobial peptide ABC transporter, permease component 0.918918169335 0.5 -0.418918169335 +UniRef50_UPI0003093DAF hypothetical protein 0.864430849681 0.5 -0.364430849681 +UniRef50_Q9HZS1 Histidine transport ATP binding protein HisP 1.10734973952 0.5 -0.607349739516 +UniRef50_Q02F58 Phosphoserine phosphatase 0.0345126465004 0.5 0.4654873535 +UniRef50_Q04849 Nitrogen assimilation regulatory protein NtrX 2.2839835971 0.5 -1.7839835971 +UniRef50_UPI0002378F3D ABC transporter 0.635317279329 0.5 -0.135317279329 +UniRef50_A0M4U6 Phosphopantetheine adenylyltransferase 0.376156062029 0.5 0.123843937971 +UniRef50_Q9CHW5 Phosphoserine aminotransferase 1.70296127946 0.5 -1.20296127946 +UniRef50_UPI0002E6BDE4 hypothetical protein 3.63545662501 0.5 -3.13545662501 +UniRef50_P66901 Diaminopropionate ammonia lyase 0.722941316222 0.5 -0.222941316222 +UniRef50_P0A2E0 Nitrogen regulation protein NR 4.18236159034 0.499999999999 -3.68236159034 +UniRef50_B9KU76 Gas vesicle protein 0.769317413953 0.5 -0.269317413953 +UniRef50_A6M095 Pentapeptide repeat protein 0.126308798309 0.5 0.37369120169 +UniRef50_Q8D653 Sulfate thiosulfate import ATP binding protein CysA 1.33275197132 0.5 -0.832751971323 +UniRef50_A5UM14 Proteasome subunit beta 0.367509073952 0.5 0.132490926048 +UniRef50_P68209 Succinyl CoA ligase [ADP forming] subunit alpha 1, mitochondrial 0.774613434591 0.5 -0.274613434591 +UniRef50_Q9RZP0 Potassium transporting ATPase B chain 0.000882540004345 0.5 0.499117459996 +UniRef50_V9ZQ34 0.353628712175 0.5 0.146371287825 +UniRef50_B0K4D2 N acetyl gamma glutamyl phosphate reductase 0.156281630359 0.5 0.343718369641 +UniRef50_UPI0003B7561B transposase, partial 0.58230280377 0.5 -0.08230280377 +UniRef50_UPI00029A0E68 dgpfaetke family protein 0.868976875946 0.5 -0.368976875946 +UniRef50_Q2CH80 0.042761545451 0.5 0.457238454549 +UniRef50_UPI000467FCE1 ABC transporter ATP binding protein 0.285776347927 0.5 0.214223652073 +UniRef50_L2Q9X2 2.99135407482 0.5 -2.49135407482 +UniRef50_UPI000361DBC6 hypothetical protein 0.0478756167789 0.5 0.452124383221 +UniRef50_D8J0Q1 2 isopropylmalate synthase 0.133243682855 0.5 0.366756317145 +UniRef50_A0A014L0D1 Polyketide cyclase 0.294106838772 0.5 0.205893161228 +UniRef50_UPI00031B5027 hypothetical protein 2.11594530797 0.5 -1.61594530797 +UniRef50_B0CEH5 1.27117585824 0.5 -0.771175858241 +UniRef50_P0AA79 Hexuronate transporter 2.50159348847 0.5 -2.00159348847 +UniRef50_X2GRS8 FAD dependent pyridine nucleotide disulfide oxidoreductase 4.5945722071 0.500000000004 -4.0945722071 +UniRef50_A4W853 Negative modulator of initiation of replication 4.12924465818 0.499999999999 -3.62924465818 +UniRef50_Q2NUD2 Cytidine deaminase 1.9291127589 0.499999999999 -1.4291127589 +UniRef50_F0Y8N9 0.734175774586 0.5 -0.234175774586 +UniRef50_T1YB06 Ribosomal RNA small subunit methyltransferase E 2.01444339897 0.499999999999 -1.51444339897 +UniRef50_Q8DWK3 1.48251725695 0.5 -0.982517256954 +UniRef50_M1XHY8 Membrane protein, putative 1.18512689964 0.5 -0.685126899636 +UniRef50_Q9RVM4 Transcriptional regulator 0.00518297300501 0.5 0.494817026995 +UniRef50_D7AF64 NADPH Fe oxidoreductase subunit beta 0.385948858882 0.5 0.114051141118 +UniRef50_UPI000427FE74 hypothetical protein 0.355151808833 0.5 0.144848191167 +UniRef50_A1WXT0 Zinc import ATP binding protein ZnuC 0.311312357034 0.5 0.188687642966 +UniRef50_UPI000380220D hypothetical protein, partial 0.100086378943 0.500000000001 0.399913621057 +UniRef50_P35630 NADP dependent isopropanol dehydrogenase 0.800579977943 0.5 -0.300579977943 +UniRef50_UPI0003641C87 hypothetical protein 0.0285142557173 0.499999999999 0.471485744283 +UniRef50_Q47152 0.68102448276 0.5 -0.18102448276 +UniRef50_UPI00036884C8 hypothetical protein 1.51294389382 0.500000000001 -1.01294389382 +UniRef50_Q8KA76 RNA polymerase sigma factor RpoH 2.7491383815 0.499999999999 -2.2491383815 +UniRef50_W4KQX7 0.0914927213465 0.5 0.408507278653 +UniRef50_UPI0003734279 hypothetical protein 0.528744666431 0.5 -0.0287446664312 +UniRef50_UPI000395CB52 0.296890436618 0.5 0.203109563382 +UniRef50_C5N1M7 15.4746144471 0.500000000003 -14.9746144471 +UniRef50_UPI0003F148E4 glutamate rich protein 2 isoform 3 0.00291975234095 0.5 0.497080247659 +UniRef50_UPI0003A99930 hypothetical protein 0.14933294528 0.5 0.35066705472 +UniRef50_B1M288 0.990689461265 0.5 -0.490689461265 +UniRef50_Q5Y0N1 RNA binding tegument protein 0.460889595158 0.5 0.0391104048421 +UniRef50_A9M0X9 0.140261215613 0.5 0.359738784387 +UniRef50_W5V8H5 O methyltransferase 0.137890774629 0.5 0.362109225371 +UniRef50_Q8E7H4 Sensor protein LytS 1.82409531897 0.5 -1.32409531897 +UniRef50_UPI00021977F6 DNA repair ATPase 0.296437844854 0.5 0.203562155146 +UniRef50_A0LBS6 Plasmid pRiA4b ORF 3 family protein 5.98386201968 0.499999999993 -5.48386201968 +UniRef50_Q5PJK8 sn glycerol 3 phosphate binding periplasmic protein UgpB 2.05930915561 0.5 -1.5593091556 +UniRef50_Q58400 Putative hydrogenase expression formation protein MJ0993 2.41079837248 0.500000000001 -1.91079837248 +UniRef50_Q3IF99 Twitching motility protein PilU 0.0248354933523 0.5 0.475164506648 +UniRef50_B9KX88 3.30732819215 0.5 -2.80732819215 +UniRef50_UPI0003B52C75 ATP binding protein 1.49332465552 0.5 -0.993324655521 +UniRef50_UPI00037FF3F7 hypothetical protein 0.0930054875102 0.5 0.40699451249 +UniRef50_Q3JNU0 NAD transhydrogenase subunit beta 0.0460180047592 0.5 0.453981995241 +UniRef50_Q87NA5 Probable intracellular septation protein A 1.6133824606 0.5 -1.1133824606 +UniRef50_A4WC00 Protein MtfA 1.67173097409 0.499999999999 -1.17173097409 +UniRef50_V6USS0 Leucyl tRNA synthetase 0.806923294828 0.5 -0.306923294828 +UniRef50_P25131 1.22870910006 0.5 -0.728709100063 +UniRef50_A4XZS6 GCN5 related N acetyltransferase 0.668046924031 0.5 -0.168046924031 +UniRef50_I6SSZ2 Transcriptional regulator 1.15702365063 0.5 -0.657023650632 +UniRef50_UPI0004777E62 molecular chaperone GroES 0.045893379929 0.5 0.454106620071 +UniRef50_L7WXY9 1.79379451128 0.5 -1.29379451128 +UniRef50_X1NEY9 Marine sediment metagenome DNA, contig 1.96625010081 0.500000000002 -1.46625010081 +UniRef50_Q4L9U1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.9216954179 0.5 -1.4216954179 +UniRef50_A3PS34 Methyltransferase type 11 0.336649094328 0.5 0.163350905672 +UniRef50_F2DK91 Predicted protein 0.874002665933 0.5 -0.374002665933 +UniRef50_Q9RUN0 UvrABC system protein C 0.00193059187184 0.5 0.498069408129 +UniRef50_A6Q9M2 Imidazoleglycerol phosphate dehydratase 0.240298228292 0.5 0.259701771708 +UniRef50_B0VKB6 Type II secretion system protein L 0.0157477378838 0.5 0.484252262116 +UniRef50_W8T948 0.137713346555 0.5 0.362286653445 +UniRef50_Q1CHM2 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.51528459895 0.5 -1.01528459895 +UniRef50_D2ATJ4 2 isopropylmalate synthase 0.100060712253 0.5 0.399939287747 +UniRef50_UPI000349D801 hypothetical protein 0.00343773979733 0.5 0.496562260203 +UniRef50_L7VSY8 0.0186316747469 0.5 0.481368325253 +UniRef50_UPI00035C1945 hypothetical protein, partial 1.26921457794 0.5 -0.769214577943 +UniRef50_F5XRW0 0.0873292103528 0.5 0.412670789647 +UniRef50_E9USM4 0.40014329997 0.5 0.0998567000298 +UniRef50_B8A2U2 2.69938130679 0.499999999998 -2.19938130679 +UniRef50_D8JJP8 0.00698705529489 0.5 0.493012944705 +UniRef50_L7VTK0 0.0674490912908 0.5 0.432550908709 +UniRef50_A0A017HMR2 2.86985377317 0.499999999999 -2.36985377317 +UniRef50_UPI0003F79B23 N anthranilate isomerase 0.0461584989007 0.5 0.453841501099 +UniRef50_B9KL86 0.72765422339 0.5 -0.22765422339 +UniRef50_Q2YXZ9 Probable CtpA like serine protease 1.8816596873 0.499999999999 -1.3816596873 +UniRef50_C5MZV6 0.470881707753 0.5 0.0291182922468 +UniRef50_A3PGB9 Two component, sigma54 specific, transcriptional regulator, Fis family 0.331116734041 0.5 0.168883265959 +UniRef50_UPI000308CCAF hypothetical protein 0.531392800433 0.5 -0.0313928004328 +UniRef50_I6SVD2 ABC transporter permease 1.9962260422 0.5 -1.4962260422 +UniRef50_X5NVN5 Oxidoreductase 0.689792777899 0.5 -0.189792777899 +UniRef50_E5ANB9 Transposase 0.941251619014 0.5 -0.441251619014 +UniRef50_UPI00035E5C37 hypothetical protein 0.0161345428984 0.5 0.483865457102 +UniRef50_B0VTM3 Signal peptidase I 0.0411237018722 0.5 0.458876298128 +UniRef50_Q6ASN4 GMP synthase [glutamine hydrolyzing] 0.400775641857 0.5 0.0992243581432 +UniRef50_Q8RBE5 Dephospho CoA kinase 0.587918530739 0.5 -0.0879185307387 +UniRef50_A6LWC7 Glycerol 1 phosphate dehydrogenase (+)) 0.0829238243029 0.5 0.417076175697 +UniRef50_W1GFB3 ABC peptide transporter, inner membrane subunit 1.17883988859 0.5 -0.678839888587 +UniRef50_U5UCP9 Putative transposase 1.03791683245 0.5 -0.537916832451 +UniRef50_UPI000255CD61 peptidase M24 0.117728866988 0.5 0.382271133012 +UniRef50_U3TGB3 ATPase components of ABC transporters 4.42607171369 0.500000000002 -3.92607171369 +UniRef50_F8ACN4 TraU family protein 3.35502494566 0.5 -2.85502494566 +UniRef50_UPI0003710E05 hypothetical protein 0.309386492796 0.5 0.190613507204 +UniRef50_UPI000287BD0C iron siderophore uptake system transmembrane protein 0.376156523771 0.5 0.123843476229 +UniRef50_U2SDU2 Macro domain protein 0.0545516708732 0.499999999999 0.445448329128 +UniRef50_P21362 Protein YciF 3.14036581246 0.500000000003 -2.64036581246 +UniRef50_L8FTT7 0.29636285467 0.5 0.20363714533 +UniRef50_Q1GEB3 2.99309804716 0.499999999999 -2.49309804716 +UniRef50_D8JLE3 Cell division protein FtsQ 0.0136789997472 0.5 0.486321000253 +UniRef50_Q1GEB7 0.861886404823 0.5 -0.361886404823 +UniRef50_G9F1Y9 2 enoate reductase FldZ 0.100441914361 0.5 0.399558085639 +UniRef50_J3PLS0 0.136585440587 0.5 0.363414559413 +UniRef50_Q01V55 Dihydroorotase 1.31647901289 0.499999999999 -0.816479012888 +UniRef50_R0VGG6 2.78852676505 0.5 -2.28852676505 +UniRef50_UPI00021958FB inosine 5 monophosphate dehydrogenase 0.0862176314319 0.5 0.413782368568 +UniRef50_C5N5S9 Streptolysin associated protein SagD 2.06436051407 0.5 -1.56436051407 +UniRef50_UPI000472128D hypothetical protein, partial 0.355521709994 0.5 0.144478290006 +UniRef50_P36647 Prepilin peptidase dependent protein D 0.330111827406 0.5 0.169888172594 +UniRef50_Q3KIW4 Nicotinate phosphoribosyltransferase 1.91513232961 0.499999999999 -1.41513232961 +UniRef50_UPI00040FE5F8 hypothetical protein 0.626668503987 0.5 -0.126668503987 +UniRef50_P45394 Inner membrane protein YrbG 2.83170719664 0.500000000002 -2.33170719664 +UniRef50_Q8PWQ2 UPF0107 protein MM_1524 0.0155189047209 0.5 0.484481095279 +UniRef50_P25718 Alpha amylase 1.55277442524 0.499999999999 -1.05277442524 +UniRef50_UPI00047A8026 D ribose transporter ATP binding protein 0.13571357631 0.5 0.36428642369 +UniRef50_Q3IV67 2.00182451702 0.5 -1.50182451702 +UniRef50_Q5FL71 Prolipoprotein diacylglyceryl transferase 0.00537831663178 0.5 0.494621683368 +UniRef50_K7RVZ0 TIGR01777 family protein 0.00778767475195 0.5 0.492212325248 +UniRef50_B0VR24 0.00150250475679 0.5 0.498497495243 +UniRef50_Q17ZN4 NADPH dependent 7 cyano 7 deazaguanine reductase 0.0294696284352 0.5 0.470530371565 +UniRef50_A0A017TGF9 1.17320538683 0.5 -0.67320538683 +UniRef50_R7C015 ABC transporter permease protein 0.334660898814 0.5 0.165339101186 +UniRef50_P23874 Serine threonine protein kinase HipA 0.567750843341 0.5 -0.0677508433413 +UniRef50_P54385 Glutamate dehydrogenase, mitochondrial 0.256678290552 0.5 0.243321709448 +UniRef50_V9T176 Phage tail length tape measure protein 0.416827635939 0.5 0.0831723640605 +UniRef50_UPI0004690011 hypothetical protein 0.228427045488 0.5 0.271572954512 +UniRef50_Q729V5 1,4 alpha glucan branching enzyme GlgB 0.247708048724 0.5 0.252291951276 +UniRef50_P76251 D malate dehydrogenase [decarboxylating] 0.193304834786 0.5 0.306695165214 +UniRef50_M4QX58 0.0178502593456 0.5 0.482149740655 +UniRef50_P05417 Ubiquinol cytochrome c reductase iron sulfur subunit 3.30357847231 0.499999999998 -2.80357847231 +UniRef50_B4V7N1 Integral membrane protein 0.507277238001 0.5 -0.00727723800095 +UniRef50_S5XTF2 1.96761349258 0.499999999998 -1.46761349258 +UniRef50_P76418 1.13219101592 0.5 -0.632191015916 +UniRef50_P65264 Lipoprotein signal peptidase 4.62152634197 0.500000000001 -4.12152634197 +UniRef50_Q8NXI7 MW0768 protein 13.7927862858 0.499999999985 -13.2927862858 +UniRef50_J7M936 Competence protein 0.197045248785 0.5 0.302954751216 +UniRef50_UPI000466F951 hypothetical protein 0.115135187092 0.5 0.384864812908 +UniRef50_A0A023S2A4 Anhydratase 0.0108773710536 0.500000000001 0.489122628946 +UniRef50_UPI00036D0961 hypothetical protein 0.0781658089529 0.5 0.421834191047 +UniRef50_F4AWZ4 Acetyl CoA acetyltransferase 1.43476058038 0.5 -0.934760580381 +UniRef50_UPI0004692135 cell division protein 0.0414340126341 0.5 0.458565987366 +UniRef50_I6T6L1 2.1273648987 0.5 -1.6273648987 +UniRef50_F9YRZ6 HD domain containing protein 2 0.598320323337 0.5 -0.0983203233368 +UniRef50_X1T676 Marine sediment metagenome DNA, contig 0.0378029963841 0.5 0.462197003616 +UniRef50_I0I0B9 0.816952892345 0.5 -0.316952892345 +UniRef50_Q8CPM1 Protoheme IX farnesyltransferase 1.74338030947 0.499999999999 -1.24338030947 +UniRef50_UPI0003613269 hypothetical protein 0.54391494239 0.5 -0.0439149423899 +UniRef50_A5UJC1 Predicted transcription regulator 5.09048474428 0.499999999997 -4.59048474428 +UniRef50_Q9HSC3 Archaeal Lon protease 4.49441827951 0.499999999996 -3.99441827951 +UniRef50_A3I3T9 0.543213576711 0.5 -0.0432135767111 +UniRef50_D6SE14 4 phosphopantetheinyl transferase family protein 8.64061226835 0.499999999989 -8.14061226834 +UniRef50_O26872 0.716326919959 0.5 -0.216326919959 +UniRef50_F6DA35 0.869616514068 0.5 -0.369616514068 +UniRef50_A0A016QP53 1.84737948115 0.5 -1.34737948115 +UniRef50_C6D6V1 Extradiol ring cleavage dioxygenase class III protein subunit B 0.250689303545 0.5 0.249310696455 +UniRef50_Q9RX31 0.0035474476277 0.5 0.496452552372 +UniRef50_Q5HH87 Regulatory protein Spx 0.452034992891 0.5 0.0479650071095 +UniRef50_UPI0003641212 hypothetical protein 0.912377697427 0.5 -0.412377697427 +UniRef50_UPI00034C12E9 hypothetical protein 0.0249340811436 0.5 0.475065918856 +UniRef50_Q9RX39 0.0052078028055 0.5 0.494792197194 +UniRef50_UPI00026C7577 oxidoreductase 0.370798484279 0.5 0.129201515721 +UniRef50_UPI000428654A hypothetical protein 1.06730997373 0.5 -0.56730997373 +UniRef50_A8LTG8 NADH dehydrogenase 4.5746722974 0.5 -4.0746722974 +UniRef50_E3I8L4 1.52353246313 0.5 -1.02353246313 +UniRef50_J0XSF7 11.0028141582 0.499999999999 -10.5028141582 +UniRef50_UPI000454614C 0.0504731157771 0.5 0.449526884223 +UniRef50_E7EWU3 Acetyl coenzyme A synthetase, cytoplasmic 0.0889799904846 0.5 0.411020009515 +UniRef50_D0C8Q0 0.010393344989 0.5 0.489606655011 +UniRef50_A3U071 0.226315874545 0.5 0.273684125455 +UniRef50_M1MFW2 Cobalamin biosynthesis protein CobD 1.24288249287 0.5 -0.742882492869 +UniRef50_P19318 Respiratory nitrate reductase 2 beta chain 1.00861085128 0.5 -0.508610851278 +UniRef50_UPI000376E605 hypothetical protein 0.509245045569 0.5 -0.0092450455687 +UniRef50_X5EIL9 Tandem five TM family protein 3.72502883153 0.5 -3.22502883153 +UniRef50_H0PXP7 3.32931414974 0.5 -2.82931414974 +UniRef50_Q4L3J2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.79079858493 0.500000000001 -1.29079858493 +UniRef50_B9KQG2 Chemotaxis MotB protein 2.18771344243 0.500000000004 -1.68771344244 +UniRef50_Q3J6K8 Transcriptional regulator AcuR 1.96181918958 0.5 -1.46181918958 +UniRef50_D5BS88 Aerobic glycerol 3 phosphate dehydrogenase 0.945549102574 0.5 -0.445549102574 +UniRef50_A6M2L9 Capsular exopolysaccharide family 0.058116405883 0.500000000001 0.441883594117 +UniRef50_J9DL69 1.39790811154 0.499999999999 -0.897908111536 +UniRef50_UPI0003EFB221 hypothetical protein 0.451709165998 0.5 0.0482908340016 +UniRef50_UPI00046939D9 hypothetical protein 0.862263582981 0.5 -0.362263582981 +UniRef50_UPI00038308DC hypothetical protein M271_48570 0.116304769664 0.5 0.383695230336 +UniRef50_A6M0I9 0.11650622277 0.5 0.38349377723 +UniRef50_R9YNN7 ABC 2 transporter family protein 0.378291794518 0.5 0.121708205482 +UniRef50_P0A1A6 Branched chain amino acid aminotransferase 1.02470954286 0.500000000001 -0.524709542856 +UniRef50_R7PVV7 Conserved hypothetical membrane protein Msm_1770 1.30270854443 0.5 -0.802708544427 +UniRef50_T0MQ15 2.23714638107 0.499999999999 -1.73714638107 +UniRef50_UPI000364254B hypothetical protein 1.4631795375 0.499999999998 -0.963179537495 +UniRef50_UPI0003B3327B 16S rRNA methyltransferase 0.327498021378 0.5 0.172501978622 +UniRef50_Q9ZKX6 Putative 0.106322846428 0.5 0.393677153572 +UniRef50_UPI000469FF0C hypothetical protein 0.34064296842 0.5 0.15935703158 +UniRef50_P39829 D galactarate dehydratase 0.236828135076 0.5 0.263171864924 +UniRef50_UPI00035E2496 hypothetical protein 0.843766057806 0.5 -0.343766057806 +UniRef50_A3PPP4 5.01489010905 0.500000000009 -4.51489010906 +UniRef50_Q74IL5 50S ribosomal protein L27 1.34594927347 0.5 -0.845949273468 +UniRef50_UPI000379C346 hypothetical protein 0.0382209416196 0.5 0.46177905838 +UniRef50_UPI0003FF1625 hypothetical protein 0.577102955785 0.5 -0.0771029557851 +UniRef50_B4QTQ4 GD21117 0.810592694134 0.5 -0.310592694134 +UniRef50_S4GRW5 Polyphosphate kinase 0.00625623503556 0.5 0.493743764965 +UniRef50_UPI000380F5C4 hypothetical protein 0.53176391181 0.5 -0.0317639118098 +UniRef50_Q6F8V1 2,3 dihydroxybenzoate AMP ligase 0.0146956175069 0.5 0.485304382493 +UniRef50_O34987 Guanine hypoxanthine permease PbuG 1.00447456205 0.5 -0.50447456205 +UniRef50_X4UKI9 Membrane protein 0.473702795856 0.5 0.0262972041439 +UniRef50_U5PB64 Uroporphyrinogen decarboxylase 0.769087353607 0.5 -0.269087353607 +UniRef50_N2JS66 Cyanate hydratase 3.45218575022 0.500000000001 -2.95218575022 +UniRef50_UPI00031EB597 hypothetical protein 0.240251612143 0.5 0.259748387857 +UniRef50_Q9KN37 Ribose import ATP binding protein RbsA 0.485016630791 0.5 0.0149833692086 +UniRef50_Q1XDM0 Pyruvate dehydrogenase E1 component subunit alpha 0.161815509767 0.5 0.338184490232 +UniRef50_UPI0001FFE0CA DEAD DEAH box helicase 0.00999523734003 0.5 0.49000476266 +UniRef50_UPI0003175780 hypothetical protein 0.256140245946 0.5 0.243859754054 +UniRef50_G7M2K8 YibE F family protein 0.0372910195171 0.500000000001 0.462708980482 +UniRef50_A6LWW9 0.201588754011 0.5 0.298411245989 +UniRef50_Q1QA11 Ribosomal protein S12 methylthiotransferase RimO 0.0273549969305 0.5 0.472645003069 +UniRef50_Q03224 Fructose 1,6 bisphosphatase class 2 0.920466743009 0.5 -0.420466743009 +UniRef50_B2TBY2 VRR NUC domain protein 3.76934645371 0.5 -3.26934645371 +UniRef50_Q160T4 Histidine tRNA ligase 4.88673629714 0.49999999999 -4.38673629713 +UniRef50_Q8VQS9 MntC 12.848374671 0.49999999998 -12.348374671 +UniRef50_A6LW09 Response regulator receiver protein 0.0275799453191 0.5 0.472420054681 +UniRef50_E4GYP5 Phenylalanine tRNA ligase beta subunit 0.0180902373401 0.5 0.48190976266 +UniRef50_Q05756 Glutamate synthase [NADPH] small chain 2.36589223066 0.499999999999 -1.86589223066 +UniRef50_Q58569 Protein FwdA 4.15921509536 0.499999999999 -3.65921509536 +UniRef50_W0RSQ0 0.167815768095 0.5 0.332184231905 +UniRef50_UPI00045E8969 hypothetical protein 0.366963931592 0.5 0.133036068408 +UniRef50_UPI00035A2281 PREDICTED 0.109198376526 0.5 0.390801623474 +UniRef50_X6ZDD4 1.70551702577 0.499999999997 -1.20551702577 +UniRef50_U6ED09 ATP dependent RNA helicase, DEAD DEAH box family 1.61685827683 0.5 -1.11685827683 +UniRef50_V6EN15 Oligopeptidase A 1.11416274068 0.5 -0.614162740676 +UniRef50_UPI0003761157 hypothetical protein 3.420077861 0.5 -2.920077861 +UniRef50_W9EJG3 Tandem lipoprotein 0.34032265861 0.5 0.15967734139 +UniRef50_Q8XDN0 Septum site determining protein MinC 1.00236582646 0.5 -0.502365826456 +UniRef50_A9B6J1 DNA directed RNA polymerase subunit beta 0.130846684255 0.5 0.369153315746 +UniRef50_UPI0003AB99D7 16.7620224776 0.499999999998 -16.2620224776 +UniRef50_A3DEM3 4 hydroxy tetrahydrodipicolinate reductase 0.22287546565 0.5 0.27712453435 +UniRef50_B5YHP1 Adenylate kinase 0.261540718967 0.5 0.238459281033 +UniRef50_A0A024L5Z4 Glycyl radical enzyme activating protein family 0.235639804342 0.5 0.264360195658 +UniRef50_Q1Q8C1 Sec independent protein translocase protein TatC 0.0389325017287 0.5 0.461067498272 +UniRef50_R4LTT1 0.205628208345 0.5 0.294371791655 +UniRef50_Q7BQS4 Se3 0.737681645831 0.5 -0.237681645831 +UniRef50_A0A013GNM0 Penicillin binding transpeptidase domain protein 0.0324381563512 0.5 0.467561843649 +UniRef50_W7T589 1.67638335373 0.5 -1.17638335373 +UniRef50_U3SVP2 Signal peptidase type IV 0.723884398971 0.5 -0.223884398971 +UniRef50_UPI000463AB2B proline iminopeptidase 0.375184154372 0.5 0.124815845628 +UniRef50_UPI00046A179B dihydropteroate synthase 0.0280403579079 0.5 0.471959642092 +UniRef50_UPI0003A95978 hypothetical protein 0.502410424542 0.5 -0.00241042454159 +UniRef50_F3ZGB9 Putative AraC family transcription regulator 0.00614621665629 0.5 0.493853783344 +UniRef50_A0A011NPY8 Phosphofructokinase 0.0171846159597 0.5 0.48281538404 +UniRef50_D3DJ42 2 oxoglutarate carboxylase small subunit 1.13249082327 0.5 -0.632490823271 +UniRef50_UPI00037C16F6 ABC transporter permease 0.123021392225 0.5 0.376978607775 +UniRef50_UPI0003B5FDE5 PREDICTED 0.635880820534 0.5 -0.135880820534 +UniRef50_L2Y6Z3 Inner membrane ABC transporter ATP binding protein YddA 0.452535027956 0.5 0.0474649720436 +UniRef50_UPI0003B5FA7B diacylglycerol kinase 0.0621637155738 0.5 0.437836284426 +UniRef50_UPI00035D784B hypothetical protein 0.15718612493 0.5 0.34281387507 +UniRef50_C8KCZ1 0.0875319499664 0.5 0.412468050034 +UniRef50_A4WTQ5 Cytochrome c biogenesis factor like protein 0.572594186549 0.5 -0.0725941865493 +UniRef50_UPI00026CD046 cell wall hydrolase 0.339887354948 0.5 0.160112645052 +UniRef50_M3K7Q0 Replication initiation protein RepC 1.25751134686 0.5 -0.757511346858 +UniRef50_W0ISJ9 Sulfate thiosulfate transporter subunit 1.46709540586 0.5 -0.967095405865 +UniRef50_UPI000378F5B1 hypothetical protein, partial 0.117733263667 0.5 0.382266736333 +UniRef50_N7TQJ5 0.328133492136 0.5 0.171866507864 +UniRef50_C9R5I1 Lipopolysaccharide biosynthesis protein 0.288847616334 0.5 0.211152383666 +UniRef50_A5D5F2 0.361684334118 0.5 0.138315665882 +UniRef50_A0A023L0Z2 Tail assembly protein 0.482049078575 0.5 0.0179509214253 +UniRef50_UPI0003799A1D hypothetical protein 0.0259300954036 0.5 0.474069904596 +UniRef50_UPI0003836BE8 0.111217312796 0.5 0.388782687204 +UniRef50_P23101 Toluate 1,2 dioxygenase electron transfer component 2.37490184875 0.5 -1.87490184875 +UniRef50_X7EHW6 0.642685023308 0.5 -0.142685023308 +UniRef50_UPI0003646727 hypothetical protein 0.506012245899 0.5 -0.00601224589874 +UniRef50_A5N1Z0 0.0352270981107 0.5 0.46477290189 +UniRef50_H0PW14 Transcriptional regulator, LuxR family 0.195158557364 0.5 0.304841442636 +UniRef50_B1LE56 Cysteine desulfurase 0.305778803343 0.5 0.194221196657 +UniRef50_E3G1U2 Alpha L rhamnosidase 1.6117466414 0.5 -1.1117466414 +UniRef50_UPI000265785F PREDICTED 0.310122159303 0.5 0.189877840697 +UniRef50_Q9ZS97 UPF0051 protein ABCI8, chloroplastic 1.72121633015 0.5 -1.22121633015 +UniRef50_UPI00047644EC glycogen debranching protein 0.152198875061 0.5 0.347801124939 +UniRef50_UPI0003B33C48 hypothetical protein 0.239633461614 0.5 0.260366538386 +UniRef50_Q3J226 Phage protein, HK97 gp10 family 2.16531938142 0.5 -1.66531938142 +UniRef50_Q8DRY1 3.72105811488 0.499999999999 -3.22105811487 +UniRef50_UPI0003B70F3D multidrug ABC transporter ATP binding protein 0.229711028734 0.5 0.270288971266 +UniRef50_UPI00042929E4 hypothetical protein 0.665577400694 0.5 -0.165577400694 +UniRef50_P37056 Probable endopeptidase YaeF 3.16348448597 0.499999999999 -2.66348448597 +UniRef50_A7IM59 Pyridoxine 5 phosphate synthase 0.0315329746999 0.5 0.4684670253 +UniRef50_Q8TQ79 Enolase 0.0577438449161 0.5 0.442256155084 +UniRef50_UPI0002DF017A hypothetical protein 2.77032246414 0.5 -2.27032246414 +UniRef50_UPI00038FD033 KDP operon transcriptional regulatory protein KdpE 0.303661729197 0.5 0.196338270803 +UniRef50_E8U6Y9 0.0765416326429 0.5 0.423458367357 +UniRef50_Q7CJM5 Outer membrane protein assembly factor BamB 0.631090524133 0.5 -0.131090524133 +UniRef50_UPI000370F145 hypothetical protein 0.825158309068 0.5 -0.325158309068 +UniRef50_K8C533 2 ketogluconate transporter 0.393490258592 0.5 0.106509741408 +UniRef50_UPI00046A53B5 nickel transporter permease NikC 0.448945874606 0.5 0.0510541253938 +UniRef50_Q3IWB5 Zinc import ATP binding protein ZnuC 8.49127283881 0.50000000001 -7.99127283882 +UniRef50_F4DWP9 Methyl accepting chemotaxis sensory transducer 0.81842836272 0.5 -0.31842836272 +UniRef50_D9UC41 Membrane protein 8.50390585894 0.500000000001 -8.00390585894 +UniRef50_X8APG4 FeS assembly SufB domain protein 0.0382284182589 0.5 0.461771581741 +UniRef50_E6WPS1 Appr 1 p processing domain protein 0.0302688839158 0.5 0.469731116084 +UniRef50_UPI00047CA54F chemotaxis protein CheY 4.34293882828 0.499999999999 -3.84293882828 +UniRef50_P10482 Beta glucosidase A 0.205322179466 0.5 0.294677820534 +UniRef50_Q7UF84 Biotin synthase 0.0037458901886 0.5 0.496254109812 +UniRef50_A9M323 0.0808951858282 0.5 0.419104814172 +UniRef50_A3CP26 0.208489677629 0.5 0.291510322371 +UniRef50_UPI000374A30D hypothetical protein 3.26895249992 0.500000000002 -2.76895249992 +UniRef50_S0RSE8 0.0567513396179 0.5 0.443248660382 +UniRef50_UPI000474435D Phyllosphere induced regulator PhyR 3.16146817381 0.5 -2.66146817381 +UniRef50_UPI0003A55370 tRNA synthetase RNA binding protein 0.247058076532 0.5 0.252941923468 +UniRef50_F2EPT9 Transporting ATPase YfcM 1.42166124424 0.500000000001 -0.921661244241 +UniRef50_UPI00047D26C2 branched chain amino acid ABC transporter ATP binding protein 0.299158940591 0.5 0.200841059409 +UniRef50_A3PJ45 Histidine kinase 2.19615997325 0.500000000001 -1.69615997325 +UniRef50_UPI00047C6448 ribosomal protein S3 0.336842564624 0.5 0.163157435376 +UniRef50_UPI000421C8B5 cation 0.242790225826 0.5 0.257209774174 +UniRef50_UPI0004792DA6 DSBA oxidoreductase 1.18932823527 0.5 -0.689328235268 +UniRef50_F4BY74 Acyl coenzyme A synthetase 4.02629704041 0.499999999998 -3.52629704041 +UniRef50_P34897 Serine hydroxymethyltransferase, mitochondrial 0.349483843682 0.5 0.150516156318 +UniRef50_B7MGN9 Cyclic pyranopterin monophosphate synthase 1.25517214547 0.5 -0.755172145473 +UniRef50_V9WDD5 Deacetylase 1.39813428018 0.5 -0.898134280179 +UniRef50_UPI0003819A1B hypothetical protein 0.595304291973 0.5 -0.095304291973 +UniRef50_A1A1W2 Tyrosine tRNA ligase 0.0470900852002 0.5 0.4529099148 +UniRef50_Q1GTK0 NADH quinone oxidoreductase subunit D 1.61014994652 0.5 -1.11014994652 +UniRef50_D9PVP5 F420 dependent NADP reductase 1.11722334542 0.5 -0.617223345416 +UniRef50_I4E028 Hydrolase homolog 2.44081065153 0.5 -1.94081065153 +UniRef50_UPI000379680D hypothetical protein 0.0015238555362 0.5 0.498476144464 +UniRef50_Q890M8 Tetracycline resistance protein 0.105702936961 0.5 0.394297063039 +UniRef50_F0YEB9 1.3561491741 0.5 -0.856149174102 +UniRef50_Q1QIW5 Prolipoprotein diacylglyceryl transferase 3.0348689799 0.5 -2.5348689799 +UniRef50_Q5HL74 Abortive infection family protein 2.9435831673 0.5 -2.4435831673 +UniRef50_Q3J4Z5 Valine tRNA ligase 2.53796137405 0.5 -2.03796137405 +UniRef50_UPI0004731B78 4 alpha glucanotransferase, partial 0.0183924600597 0.5 0.48160753994 +UniRef50_W2GPF9 1.45671635624 0.5 -0.956716356242 +UniRef50_UPI0004724CFB hypothetical protein 0.331881166597 0.5 0.168118833403 +UniRef50_S9S8F9 0.316404161422 0.5 0.183595838578 +UniRef50_UPI0003B55E14 ammonium transporter 0.536993166105 0.5 -0.036993166105 +UniRef50_UPI00040CCFDE Fur family transcriptional regulator 0.327123897419 0.5 0.172876102581 +UniRef50_UPI00037BF338 hypothetical protein 0.0660598411885 0.5 0.433940158812 +UniRef50_UPI0004410CB8 ClpX, ATPase regulatory subunit 0.620804833433 0.5 -0.120804833433 +UniRef50_Y0KNL3 Hemagglutinin 0.17546364485 0.5 0.32453635515 +UniRef50_V5VFP2 OsmC family protein 0.0167897456554 0.5 0.483210254345 +UniRef50_Q57NA5 Zinc import ATP binding protein ZnuC 5.52950433582 0.499999999999 -5.02950433582 +UniRef50_F6EKX3 Tartrate dehydrogenase 2.58524786659 0.499999999998 -2.08524786659 +UniRef50_B2HMS4 0.209738063052 0.5 0.290261936948 +UniRef50_G1Q986 1.1233534494 0.5 -0.623353449399 +UniRef50_Q7G491 Transposon protein, putative, CACTA, En Spm sub class 0.482258627831 0.5 0.0177413721686 +UniRef50_L8P6V5 Putative Non ribosomal peptide synthetase 0.389415190499 0.5 0.110584809501 +UniRef50_X6G717 Transposase 1.22658124354 0.499999999999 -0.726581243538 +UniRef50_P45508 1.5272037962 0.499999999999 -1.0272037962 +UniRef50_C1MS99 Predicted protein 5.83587652647 0.500000000001 -5.33587652647 +UniRef50_B6IWR2 0.312644137176 0.5 0.187355862824 +UniRef50_F3U250 McpJ 0.937523684469 0.5 -0.437523684469 +UniRef50_UPI00036970FF hypothetical protein 1.49422017875 0.5 -0.994220178747 +UniRef50_D4HBY8 Alanine racemase domain protein 0.0513961380752 0.5 0.448603861925 +UniRef50_UPI00031FC917 hypothetical protein 0.305296215752 0.5 0.194703784248 +UniRef50_Q5F8E8 Chaperone protein HscA homolog 0.128984435523 0.5 0.371015564477 +UniRef50_J9PAT3 0.437294710074 0.5 0.0627052899261 +UniRef50_UPI0003B753D6 glutamyl tRNA amidotransferase 2.42703920288 0.500000000002 -1.92703920289 +UniRef50_I6TW73 Putative transcriptional regulator 4.84119208512 0.5 -4.34119208512 +UniRef50_Q3HKF1 Transcriptional regulator, AraC family 3.47166972093 0.500000000005 -2.97166972094 +UniRef50_K7SJ58 Cof like hydrolase 0.0116715600135 0.5 0.488328439986 +UniRef50_U3U4T1 0.260260154361 0.5 0.239739845639 +UniRef50_UPI00047935B6 cytochrome C oxidase 0.158899067962 0.5 0.341100932038 +UniRef50_UPI00045E9BEE hypothetical protein 1.73871483341 0.500000000002 -1.23871483341 +UniRef50_X1UXC6 Marine sediment metagenome DNA, contig 0.0713287615654 0.5 0.428671238435 +UniRef50_UPI0001BF6223 hypothetical protein SMAC_10415, partial 1.17384626682 0.5 -0.673846266824 +UniRef50_P05704 Methyl accepting chemotaxis protein III 1.17165578519 0.5 -0.671655785194 +UniRef50_A0A013Y7Z1 His Kinase A domain protein 0.0174569816832 0.5 0.482543018317 +UniRef50_B8EMX2 Alpha,alpha trehalose phosphate synthase 4.89238385323 0.499999999999 -4.39238385323 +UniRef50_A8AQY2 Glycogen debranching enzyme 0.282768250882 0.5 0.217231749118 +UniRef50_Q88NS8 Hydrolase, putative 0.447692487586 0.5 0.0523075124142 +UniRef50_B2TH59 1.71928428831 0.5 -1.21928428831 +UniRef50_Q7N3N2 ProP effector 2.19297641209 0.499999999999 -1.69297641209 +UniRef50_UPI00036B28F1 hypothetical protein 0.235751030544 0.5 0.264248969456 +UniRef50_Q9RX36 Penicillin binding protein 1 0.000766857916494 0.5 0.499233142084 +UniRef50_F3U3S2 Serine threonine protein kinase 6.67217687142 0.500000000001 -6.17217687142 +UniRef50_Q0P9X7 Probable ABC transporter ATP binding protein PEB1C 0.339514347662 0.5 0.160485652338 +UniRef50_UPI000363DE89 hypothetical protein 0.553797187914 0.5 -0.0537971879142 +UniRef50_UPI00047A233F hypothetical protein 0.885271512446 0.5 -0.385271512446 +UniRef50_Q837R5 UPF0042 nucleotide binding protein EF_0766 0.308731269296 0.5 0.191268730704 +UniRef50_K7S1A1 Membrane associated protein 0.0181127713546 0.5 0.481887228645 +UniRef50_UPI0002F99648 MFS transporter 0.309598553926 0.5 0.190401446074 +UniRef50_Q9RVG7 FemA related protein 0.00519937454309 0.5 0.494800625457 +UniRef50_C6SQR5 0.999289656665 0.5 -0.499289656665 +UniRef50_W5X8X9 30S ribosomal protein S2 0.0631414642562 0.5 0.436858535744 +UniRef50_H4SSE2 Putative MFS family efflux protein 0.505069513372 0.5 -0.00506951337184 +UniRef50_UPI0001AF2B76 hypothetical protein 0.759054983983 0.5 -0.259054983983 +UniRef50_Q6FD60 0.00984147225002 0.5 0.49015852775 +UniRef50_UPI0003ABA7EF PREDICTED 0.400258689322 0.5 0.0997413106778 +UniRef50_UPI0003FBECCD flagellin 1.17356016344 0.5 -0.673560163436 +UniRef50_R7PVE4 Glycosyltransferase GT2 family 1.46496998699 0.5 -0.96496998699 +UniRef50_A1WI30 Endoribonuclease L PSP 0.896252841707 0.5 -0.396252841707 +UniRef50_P46855 3.42825628166 0.500000000002 -2.92825628166 +UniRef50_P46854 1.72585072985 0.500000000002 -1.22585072985 +UniRef50_P46853 0.541024104174 0.5 -0.0410241041737 +UniRef50_B8DKX1 4Fe 4S ferredoxin iron sulfur binding domain protein 0.634180230768 0.5 -0.134180230768 +UniRef50_Q0C1N8 Macrolide export ATP binding permease protein MacB 0.0434830685888 0.5 0.456516931411 +UniRef50_Q9RS60 DNA modification methyltransferase related protein 0.00143469872651 0.5 0.498565301274 +UniRef50_X2HAY5 SUN family protein 0.0125822738417 0.5 0.487417726158 +UniRef50_A8ESW7 Aspartate tRNA ligase 0.0100086219906 0.5 0.489991378009 +UniRef50_B2HZZ5 0.012284118261 0.5 0.487715881739 +UniRef50_E7B4R3 Trap type C4 dicarboxylate transport system,large permease component 8.19600499452 0.499999999997 -7.69600499451 +UniRef50_O34319 0.0174767115848 0.5 0.482523288415 +UniRef50_Q8EUY3 Orotidine 5 phosphate decarboxylase 0.344352516588 0.5 0.155647483412 +UniRef50_C0MHK2 Phosphoglycerate mutase family protein 1.53450704775 0.5 -1.03450704775 +UniRef50_UPI00035C8FD2 hypothetical protein 0.202249121904 0.5 0.297750878096 +UniRef50_UPI000328B62B PREDICTED 0.396100151833 0.5 0.103899848167 +UniRef50_P76536 Probable deferrochelatase peroxidase YfeX 0.70668093275 0.5 -0.20668093275 +UniRef50_Q97BK5 Nucleoside diphosphate kinase 0.374573878548 0.5 0.125426121452 +UniRef50_Q2UJU5 Mannose 1 phosphate guanyltransferase 0.642161812714 0.5 -0.142161812714 +UniRef50_M2HJP8 1.93154049445 0.5 -1.43154049445 +UniRef50_E8R1M1 0.320364435721 0.5 0.179635564279 +UniRef50_A0A023YKE2 LemA family protein 1.09978044851 0.5 -0.599780448514 +UniRef50_Q6HHL1 0.797587184779 0.5 -0.297587184779 +UniRef50_B2II06 0.185943285847 0.5 0.314056714153 +UniRef50_N6V6H2 0.8883614822 0.5 -0.3883614822 +UniRef50_A3PM06 RNA polymerase, sigma 24 subunit, ECF subfamily 2.54645069271 0.5 -2.04645069271 +UniRef50_UPI00023B21D9 0.0171128531025 0.499999999999 0.482887146898 +UniRef50_UPI0004769BB2 hypothetical protein 2.44827757478 0.5 -1.94827757478 +UniRef50_D3FUC5 [Ni Fe] hydrogenase, large subunit 0.257175779792 0.5 0.242824220208 +UniRef50_V9VZS0 1.48305689155 0.5 -0.983056891546 +UniRef50_G8PG31 Ferric anguibactin binding protein 0.523560021561 0.5 -0.0235600215614 +UniRef50_C5B1E9 0.944981671355 0.5 -0.444981671355 +UniRef50_UPI0003C186B8 PREDICTED 1.21156544272 0.5 -0.711565442725 +UniRef50_UPI000255891A TonB dependent siderophore receptor 5.64235872033 0.5 -5.14235872033 +UniRef50_Q9K4U8 Nitric oxide reductase transcription regulator NorR2 0.115449703181 0.5 0.384550296819 +UniRef50_Q9RYH2 Serine protease, subtilase family 0.000931185664231 0.5 0.499068814336 +UniRef50_W9QZ02 F box like WD repeat containing protein 0.13455931019 0.5 0.36544068981 +UniRef50_UPI0003C12BAB PREDICTED 0.0508607153946 0.5 0.449139284605 +UniRef50_D3E2Y7 Poly gamma glutamate biosynthesis protein 9.29979131196 0.500000000005 -8.79979131196 +UniRef50_Q4L8D2 Cyclic pyranopterin monophosphate synthase 2.54962595255 0.5 -2.04962595255 +UniRef50_A6M1L8 Putative cell wall binding repeat containing protein 0.170211110243 0.5 0.329788889757 +UniRef50_UPI0003697AAB hypothetical protein 0.459062085806 0.5 0.040937914194 +UniRef50_U5NMN3 3.92689155552 0.500000000001 -3.42689155552 +UniRef50_O26778 Exosome complex component Rrp42 7.16871487482 0.499999999998 -6.66871487481 +UniRef50_I6T2I9 Type 4 fimbrial biogenesis protein PilW 0.468190231349 0.5 0.0318097686514 +UniRef50_F2AE29 1.62407076474 0.500000000002 -1.12407076474 +UniRef50_UPI00036B7282 hypothetical protein 0.0677732739191 0.5 0.432226726081 +UniRef50_A5WCX2 30S ribosomal protein S2 0.0133061905502 0.5 0.48669380945 +UniRef50_UPI0002377ACD calcium binding hemolysin protein 1.54726018973 0.5 -1.04726018973 +UniRef50_Q8CPR8 Alcohol dehydrogenase 0.330955655741 0.5 0.169044344259 +UniRef50_UPI0003A88A02 molecular chaperone Hsp33 0.381573790846 0.5 0.118426209154 +UniRef50_Q4V2F4 0.544855101976 0.5 -0.0448551019758 +UniRef50_UPI0003B71C77 dihydrolipoamide dehydrogenase 0.0449732342842 0.5 0.455026765716 +UniRef50_S9S2N5 Transposase 1.03027890309 0.5 -0.530278903088 +UniRef50_M9VCM8 2 amino 3 ketobutyrate coenzyme A ligase 0.0104862295643 0.5 0.489513770436 +UniRef50_B2ICH3 6,7 dimethyl 8 ribityllumazine synthase 0.528849858184 0.5 -0.0288498581839 +UniRef50_E3EYN7 Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC 1.98680340141 0.5 -1.48680340141 +UniRef50_UPI00047B3379 hypothetical protein 2.62179742782 0.499999999998 -2.12179742782 +UniRef50_R6HE72 0.0411622507669 0.5 0.458837749233 +UniRef50_C5WEU2 Aminodeoxychorismate lyase family 2.47151793302 0.5 -1.97151793302 +UniRef50_A1W8H0 Ribosomal RNA large subunit methyltransferase E 0.394986611599 0.5 0.105013388401 +UniRef50_A0A009NBC4 0.0638530369318 0.5 0.436146963068 +UniRef50_T5E2V5 ThiC associated domain protein 0.177309008142 0.5 0.322690991858 +UniRef50_C7ZS16 Membrane protein 1.41114017105 0.5 -0.911140171047 +UniRef50_A5UN23 Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE 1.07856598239 0.5 -0.578565982394 +UniRef50_B0X4X0 0.22307843422 0.5 0.27692156578 +UniRef50_UPI000479C781 hypothetical protein 0.107425837943 0.5 0.392574162057 +UniRef50_Q033R5 Fructosamine 3 kinase 1.81669995542 0.499999999999 -1.31669995542 +UniRef50_K0T107 0.315452840614 0.5 0.184547159386 +UniRef50_H3VZC8 8.61483523223 0.499999999998 -8.11483523223 +UniRef50_G2DQA0 Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase 0.0127480403933 0.5 0.487251959607 +UniRef50_E3CJI9 DNA ligase 1.54480231391 0.5 -1.04480231391 +UniRef50_Q2YUD5 Membrane anchored Ser Asp rich fibrinogen binding protein 2.47695433159 0.5 -1.97695433159 +UniRef50_UPI0003B7AB15 magnesium chelatase 0.0528457221603 0.499999999999 0.447154277841 +UniRef50_J0D169 0.036140717164 0.5 0.463859282836 +UniRef50_W8RQ15 Type IV secretion protein Rhs 0.67235377945 0.5 -0.17235377945 +UniRef50_W5WGU1 0.0851397245058 0.5 0.414860275494 +UniRef50_J9YS58 0.747556273172 0.5 -0.247556273172 +UniRef50_P18775 Dimethyl sulfoxide reductase DmsA 1.31177602348 0.500000000001 -0.811776023482 +UniRef50_O27719 5.75818217865 0.499999999999 -5.25818217865 +UniRef50_Q4MQ56 0.258654287804 0.5 0.241345712196 +UniRef50_UPI000379EBC4 hypothetical protein 0.784311388804 0.5 -0.284311388804 +UniRef50_Q54Z26 Serine hydroxymethyltransferase 1 0.200584602651 0.5 0.299415397349 +UniRef50_Q9RJ16 Cobyrinic acid A,C diamide synthase 0.0111327145883 0.5 0.488867285411 +UniRef50_V9XXT7 0.0682101539761 0.5 0.431789846024 +UniRef50_T9IBZ3 Protein icc 0.321731233822 0.5 0.178268766178 +UniRef50_B9DIE1 MarR family regulatory protein 15.381285539 0.499999999974 -14.8812855389 +UniRef50_Q8DZB5 Membrane protein, putative 0.874960286037 0.5 -0.374960286037 +UniRef50_P37837 Transaldolase 0.777127774535 0.5 -0.277127774535 +UniRef50_A1TL16 0.0413395844281 0.5 0.458660415572 +UniRef50_Q9RTF6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 0.00608359328899 0.5 0.493916406711 +UniRef50_UPI00021A5788 PREDICTED 0.154999107524 0.5 0.345000892476 +UniRef50_UPI0004692177 hypothetical protein 0.480355061571 0.5 0.0196449384294 +UniRef50_B2TPF4 Cobyrinic acid a,c diamide adenosyltransferase 0.81175029043 0.5 -0.31175029043 +UniRef50_Q3J098 RhtB family transporter 3.33223262065 0.5 -2.83223262065 +UniRef50_UPI0004113202 hypothetical protein 0.00747733302943 0.5 0.49252266697 +UniRef50_N4EZP0 FAD binding domain protein 4.959486013 0.499999999998 -4.45948601299 +UniRef50_R9SH54 Oxidoreductase aldo keto reductase family 2.34276317887 0.5 -1.84276317887 +UniRef50_P58991 Polyphosphate kinase 1 0.00521693786583 0.5 0.494783062134 +UniRef50_UPI0003790149 hypothetical protein, partial 1.20333141231 0.5 -0.703331412314 +UniRef50_I1EEC9 0.0701311422678 0.5 0.429868857732 +UniRef50_N9BDB1 0.185774358698 0.5 0.314225641302 +UniRef50_E6CCB2 0.0461992755671 0.5 0.453800724433 +UniRef50_A5UKL7 Predicted transcriptional regulator 7.21430835542 0.499999999998 -6.71430835542 +UniRef50_K9ZE84 2.1391952529 0.5 -1.6391952529 +UniRef50_UPI0001BF6909 hypothetical protein SMAC_10569, partial 0.505890457354 0.5 -0.00589045735397 +UniRef50_Q2LQU2 Porphobilinogen deaminase 0.819567201606 0.5 -0.319567201606 +UniRef50_A3PR63 Glyoxalase bleomycin resistance protein dioxygenase 2.54686438411 0.5 -2.04686438411 +UniRef50_P07464 Galactoside O acetyltransferase 1.76111283575 0.5 -1.26111283575 +UniRef50_R5UMD4 0.837607969252 0.5 -0.337607969252 +UniRef50_UPI000371DE88 hypothetical protein 0.856053922378 0.5 -0.356053922378 +UniRef50_UPI00021965CD 3 keto L gulonate 6 phosphate decarboxylase 0.302709058276 0.5 0.197290941724 +UniRef50_Q1M6X3 1.32970995692 0.5 -0.829709956925 +UniRef50_UPI000225B96A conjugal transfer protein TraW 1.48336154773 0.5 -0.983361547731 +UniRef50_UPI00036AEC1C hypothetical protein 0.132749938821 0.5 0.367250061179 +UniRef50_Q53222 2 vinyl bacteriochlorophyllide hydratase 18.1469784168 0.499999999999 -17.6469784168 +UniRef50_B5SDA9 Hemagglutinin related protein 0.166082270121 0.5 0.333917729879 +UniRef50_UPI00037FDE39 histidinol phosphate aminotransferase, partial 0.458985329594 0.5 0.0410146704057 +UniRef50_UPI00047119F6 hypothetical protein, partial 2.4521069306 0.500000000001 -1.9521069306 +UniRef50_P45499 Cell division protein FtsZ 0.0164368238583 0.5 0.483563176142 +UniRef50_Q3A7A3 Cobyrinic acid A,C diamide synthase 0.0142130762891 0.5 0.485786923711 +UniRef50_A2RE15 Cell envelope related transcriptional attenuator domain protein 1.93912686814 0.5 -1.43912686814 +UniRef50_UPI00037A3F8A hypothetical protein 0.121109008855 0.5 0.378890991145 +UniRef50_R5A8C5 0.951463585053 0.5 -0.451463585053 +UniRef50_UPI0003B46C21 alcohol dehydrogenase 11.5397075177 0.500000000005 -11.0397075177 +UniRef50_O32068 1.84148584929 0.5 -1.34148584929 +UniRef50_Q02LX8 Adenylate cyclase ExoY 0.36185505443 0.5 0.13814494557 +UniRef50_H4F527 Na+ H+ antiporter MnhB subunit related protein 1.79467677395 0.5 -1.29467677395 +UniRef50_Q48662 Malolactic enzyme 1.34366795544 0.5 -0.843667955443 +UniRef50_K2LWC9 1.46830509119 0.5 -0.968305091192 +UniRef50_I4SXS6 Choline transport protein BetT 1.73268758013 0.5 -1.23268758013 +UniRef50_UPI00035D7CEB hypothetical protein 0.20389919454 0.500000000001 0.296100805459 +UniRef50_UPI0004713CDC methionine synthase, partial 0.076428982023 0.5 0.423571017977 +UniRef50_L0FJC9 Sodium 1.07466022469 0.5 -0.574660224689 +UniRef50_UPI000362C162 hypothetical protein 5.99982714224 0.500000000004 -5.49982714224 +UniRef50_O26134 Protein translocase subunit SecY 1.41629855816 0.500000000001 -0.916298558162 +UniRef50_D3DZ14 ABC transporter ATP binding protein 0.992177491594 0.5 -0.492177491594 +UniRef50_R9ZEH0 Ring hydroxylating dioxygenase subunit 0.605139171872 0.5 -0.105139171872 +UniRef50_I6S279 Flagellar hook associated protein FlgL 1.59989489802 0.5 -1.09989489802 +UniRef50_UPI0004719539 hypothetical protein 0.719468372714 0.5 -0.219468372714 +UniRef50_UPI0004779E49 quinone oxidoreductase 0.0731214904487 0.5 0.426878509551 +UniRef50_A6UJ92 2.89197151472 0.500000000001 -2.39197151472 +UniRef50_Q8X800 D methionine transport system permease protein MetI 1.70055439081 0.5 -1.20055439081 +UniRef50_F9YY95 0.0272129815984 0.5 0.472787018402 +UniRef50_UPI000252BB00 PREDICTED 0.619611955629 0.5 -0.119611955629 +UniRef50_Q2YKR3 Adenine deaminase 1.87252086241 0.5 -1.37252086241 +UniRef50_S8F394 0.21844928805 0.5 0.28155071195 +UniRef50_P26899 Aspartate ammonia lyase 0.212050736022 0.5 0.287949263978 +UniRef50_UPI000479F1A9 peptidase S1 and S6 chymotrypsin Hap 0.0673361137363 0.5 0.432663886264 +UniRef50_G7MCG2 7TM receptor with intracellular metal dependent phosphohydrolase 0.318128355214 0.5 0.181871644786 +UniRef50_UPI0003B66F39 DNA gyrase subunit A 0.291842691492 0.5 0.208157308508 +UniRef50_UPI0002EC0588 hypothetical protein 0.210987595886 0.5 0.289012404114 +UniRef50_T2ERE8 Zinc binding dehydrogenase family protein 0.732833298631 0.5 -0.232833298631 +UniRef50_E7BGF6 0.0664843122843 0.5 0.433515687716 +UniRef50_UPI00034FCB25 PREDICTED 1.82584239515 0.5 -1.32584239515 +UniRef50_UPI00036E0F49 hypothetical protein 0.226300949685 0.5 0.273699050315 +UniRef50_UPI00042B506F Translation initiation factor 3 family protein, putative isoform 1 0.200475941699 0.5 0.299524058301 +UniRef50_UPI0003EB658E hypothetical protein 0.151885105782 0.5 0.348114894218 +UniRef50_X0TKS1 Marine sediment metagenome DNA, contig 0.251043617444 0.5 0.248956382556 +UniRef50_Q9KP38 Probable aromatic acid decarboxylase 0.297730895518 0.5 0.202269104482 +UniRef50_K9DMW3 1.27513635661 0.5 -0.775136356614 +UniRef50_P67586 Tryptophan tRNA ligase 8.11209733969 0.500000000002 -7.61209733969 +UniRef50_A0AK10 CCA adding enzyme 0.00440606982845 0.5 0.495593930171 +UniRef50_O83796 1 deoxy D xylulose 5 phosphate synthase 0.00757921984404 0.5 0.492420780156 +UniRef50_B2TPF9 Precorrin 6x reductase 0.109421106089 0.499999999999 0.390578893911 +UniRef50_A0A011N6I9 0.189347571422 0.5 0.310652428578 +UniRef50_P23485 Protein FecR 3.94996463667 0.499999999999 -3.44996463667 +UniRef50_Q839D4 Energy coupling factor transporter ATP binding protein EcfA2 0.00149061132406 0.500000000001 0.498509388675 +UniRef50_A8I2E1 Ribonuclease R 1.66066197038 0.500000000001 -1.16066197038 +UniRef50_C7QFW5 Nucleic acid binding OB fold tRNA helicase type 0.00580788743117 0.5 0.494192112569 +UniRef50_Q1JBS9 Short chain dehydrogenase 0.146791357098 0.5 0.353208642903 +UniRef50_G0DT71 0.00948702225592 0.5 0.490512977744 +UniRef50_Q8U5S6 ABC transporter, membrane spanning protein 1.57427864177 0.5 -1.07427864177 +UniRef50_A0AKE9 UPF0348 protein lwe2063 0.0145468872466 0.5 0.485453112753 +UniRef50_O08437 FKBP type peptidyl prolyl cis trans isomerase FkpA 0.228418929334 0.5 0.271581070666 +UniRef50_UPI00034BD3ED hypothetical protein 0.00199521003991 0.5 0.49800478996 +UniRef50_B0SXA7 Acetyl CoA carboxylase, biotin carboxyl carrier protein 1.08632012312 0.5 -0.586320123118 +UniRef50_C9U024 Replication initiation protein RepC 1.36999512301 0.5 -0.869995123014 +UniRef50_T2GFI0 Putative anti sigma regulatory factor 0.00987203087538 0.5 0.490127969125 +UniRef50_UPI00030A24CF hypothetical protein 0.023461779812 0.5 0.476538220188 +UniRef50_A0A024PW13 0.0591729968147 0.5 0.440827003185 +UniRef50_J0USZ4 ABC transporter permease protein 0.209460264203 0.5 0.290539735797 +UniRef50_Q5WKY5 6 phospho 5 dehydro 2 deoxy D gluconate aldolase 0.330156479129 0.5 0.169843520871 +UniRef50_Q82WT5 Sulfate thiosulfate import ATP binding protein CysA 0.00927721778846 0.5 0.490722782211 +UniRef50_P77031 Inner membrane protein YqcE 1.66683623161 0.499999999998 -1.1668362316 +UniRef50_U6JNN9 0.594685489047 0.5 -0.0946854890473 +UniRef50_UPI00047CF42A aldo keto reductase 0.067305157478 0.5 0.432694842522 +UniRef50_UPI0003608BB9 hypothetical protein 0.490779403994 0.5 0.00922059600584 +UniRef50_Q9CL63 Ribose import ATP binding protein RbsA 2 0.435048364845 0.5 0.064951635155 +UniRef50_P23886 ATP binding permease protein CydC 2.59672636365 0.499999999999 -2.09672636365 +UniRef50_F0YQI4 0.0887014656665 0.5 0.411298534333 +UniRef50_Q3KFI9 Methylthioribulose 1 phosphate dehydratase 0.466948138942 0.5 0.0330518610575 +UniRef50_L8A867 Glycerol dehydrogenase 0.100855897968 0.5 0.399144102032 +UniRef50_M1IWL8 4.85219696355 0.500000000001 -4.35219696355 +UniRef50_V7ZHE5 Potassium transporting ATPase A chain 0.0176386638763 0.5 0.482361336124 +UniRef50_C1CAY3 Transposase protein B 0.685582491098 0.5 -0.185582491098 +UniRef50_UPI0002DC9866 hypothetical protein 0.296191997952 0.5 0.203808002048 +UniRef50_Q09AD1 0.985180391814 0.5 -0.485180391814 +UniRef50_UPI00031EE013 hypothetical protein 3.33869142213 0.499999999998 -2.83869142213 +UniRef50_UPI0003F0CAAC PREDICTED 0.0659730878483 0.500000000001 0.434026912151 +UniRef50_UPI0003B6428F prolipoprotein diacylglyceryl transferase 1.7993025143 0.500000000001 -1.2993025143 +UniRef50_P59952 Methionine tRNA ligase 0.151349740692 0.5 0.348650259308 +UniRef50_P16256 Sodium pantothenate symporter 0.320912830611 0.5 0.179087169389 +UniRef50_V9TIA6 FAD linked oxidoreductase 1.91077293942 0.5 -1.41077293942 +UniRef50_Q1GE40 1.36632054522 0.5 -0.866320545216 +UniRef50_Q1GE41 1.65204395846 0.5 -1.15204395846 +UniRef50_UPI00029A1476 large conductance mechanosensitive channel protein MscL 1.7404699413 0.499999999999 -1.24046994129 +UniRef50_Q28UC9 ATP synthase F0 subunit I 0.265484074861 0.5 0.234515925139 +UniRef50_Q2FK78 N acetyl gamma glutamyl phosphate reductase 1.29959878536 0.5 -0.799598785362 +UniRef50_A3UCX1 3.11574848082 0.499999999999 -2.61574848082 +UniRef50_Q57714 Pyruvate synthase subunit PorB 5.52196644019 0.5 -5.02196644019 +UniRef50_B1LDG8 4.27982555094 0.499999999996 -3.77982555094 +UniRef50_UPI00041FFD36 hypothetical protein 0.0618141905293 0.5 0.438185809471 +UniRef50_D3DZ23 GMC oxidoreductase family protein 2.79665508695 0.499999999998 -2.29665508695 +UniRef50_P31806 Bifunctional NADH hydrate repair enzyme Nnr 1.15297290713 0.5 -0.65297290713 +UniRef50_W8KGC4 Flagellar biosynthesis protein FlhB 1.0067059145 0.5 -0.506705914497 +UniRef50_F8LHA2 Acetyltransferase, including N acetylase of ribosomal protein 0.473983713018 0.5 0.0260162869819 +UniRef50_A1B2J7 0.548030800881 0.5 -0.0480308008806 +UniRef50_I7ZAU8 0.531256900118 0.5 -0.0312569001184 +UniRef50_F9YXK8 0.0726567686133 0.5 0.427343231387 +UniRef50_UPI0002377E10 FAD dependent oxidoreductase, partial 0.386310892227 0.5 0.113689107773 +UniRef50_R6BDT2 0.202954206358 0.5 0.297045793643 +UniRef50_A9N4N9 0.610427579526 0.5 -0.110427579526 +UniRef50_C3KDN7 Ferrochelatase 1.49986911472 0.5 -0.999869114719 +UniRef50_UPI00041EEA6A hypothetical protein 0.189419099995 0.5 0.310580900005 +UniRef50_UPI0002F4135C hypothetical protein 0.172505656562 0.5 0.327494343438 +UniRef50_B9KWR6 ABC sugar transporter, periplasmic lignad binding protein 2.9258383714 0.499999999999 -2.4258383714 +UniRef50_UPI000200107B putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 1.75243139469 0.500000000002 -1.25243139469 +UniRef50_F2QGL0 Competence protein 0.0821483833969 0.5 0.417851616603 +UniRef50_Q1D8I9 Triosephosphate isomerase 0.112675621285 0.5 0.387324378715 +UniRef50_E2Q677 Transcriptional regulator 3.42371145232 0.499999999995 -2.92371145232 +UniRef50_P18256 Threonine tRNA ligase 2 0.50504852414 0.5 -0.0050485241402 +UniRef50_UPI0003B50469 MULTISPECIES 0.0419324609262 0.5 0.458067539074 +UniRef50_P39187 2.00306863892 0.499999999999 -1.50306863892 +UniRef50_G4LES1 AsmA family protein 0.433250040563 0.5 0.0667499594374 +UniRef50_A4WX29 NH dependent NAD(+) synthetase 0.557990514929 0.5 -0.0579905149286 +UniRef50_Q46906 2.45104132133 0.500000000002 -1.95104132133 +UniRef50_UPI00034690F7 hypothetical protein 0.110737041204 0.5 0.389262958796 +UniRef50_Q60759 Glutaryl CoA dehydrogenase, mitochondrial 0.0274621996636 0.5 0.472537800336 +UniRef50_B6TP29 10.4006795593 0.5 -9.9006795593 +UniRef50_E8SI80 Disulfide bond regulator 0.716716517907 0.5 -0.216716517907 +UniRef50_I4E0I3 Arabinose efflux permease homolog 2.35706105945 0.500000000001 -1.85706105945 +UniRef50_UPI0004758598 hypothetical protein 0.429985751544 0.5 0.0700142484556 +UniRef50_S9QAC1 Mobile element protein 0.678141450446 0.5 -0.178141450446 +UniRef50_UPI00036AF80F hypothetical protein 0.686913692827 0.5 -0.186913692827 +UniRef50_UPI00036D58A4 hypothetical protein 0.0559781501828 0.5 0.444021849818 +UniRef50_Q3JVF3 0.147245380747 0.5 0.352754619253 +UniRef50_C8PGN6 NLPA lipoprotein 0.522455115629 0.5 -0.0224551156288 +UniRef50_Q6FFC1 Lipid II flippase FtsW 0.00638417231628 0.5 0.493615827684 +UniRef50_D9VLM5 Predicted protein 0.00583679337361 0.5 0.494163206626 +UniRef50_UPI0003B4E250 phosphohydrolase 0.0566442731513 0.5 0.443355726849 +UniRef50_P56431 Thioredoxin reductase 0.0492284261117 0.5 0.450771573888 +UniRef50_V4R4P9 Amino acid ABC transporter substrate binding protein 0.847227474954 0.5 -0.347227474954 +UniRef50_Q5L0Z2 UPF0348 protein GK1103 0.00442421429597 0.5 0.495575785704 +UniRef50_V9W180 Transposase 0.00369229900025 0.5 0.496307701 +UniRef50_UPI000476CA5A hypothetical protein 2.55215717794 0.5 -2.05215717794 +UniRef50_Q47129 Transcriptional activator FeaR 6.69590396357 0.499999999998 -6.19590396357 +UniRef50_B0VAR2 0.0188054890641 0.5 0.481194510936 +UniRef50_UPI0003C12F22 PREDICTED 0.360551129847 0.5 0.139448870153 +UniRef50_K9AD18 Putative relaxase 3.3583330082 0.500000000002 -2.8583330082 +UniRef50_F0P9I7 Conserved integral membrane protein, putative 1.93635152453 0.499999999999 -1.43635152453 +UniRef50_UPI00035F08CC hypothetical protein 0.581182302536 0.5 -0.0811823025362 +UniRef50_UPI0004692399 spermidine putrescine ABC transporter ATPase 1.0353812811 0.5 -0.535381281101 +UniRef50_A5FZW4 50S ribosomal protein L4 9.3512760557 0.5 -8.8512760557 +UniRef50_C5CJ75 Glycogen synthase 4.9962132721 0.500000000001 -4.4962132721 +UniRef50_UPI0003600771 hypothetical protein 0.703665351444 0.5 -0.203665351444 +UniRef50_V4R4P8 Phosphoribosylformylglycinamidine cyclo ligase 0.312235618379 0.5 0.187764381621 +UniRef50_U6R7W5 0.0310044840281 0.5 0.468995515972 +UniRef50_E8U4E2 0.000580435983351 0.5 0.499419564016 +UniRef50_H9KEJ9 0.479710227981 0.5 0.0202897720189 +UniRef50_L1BUX8 0.020279562769 0.5 0.479720437231 +UniRef50_Q8SDJ9 Amidase 1.91667193156 0.500000000001 -1.41667193156 +UniRef50_A8ARE5 3.75812498007 0.500000000001 -3.25812498007 +UniRef50_P0AFV6 Murein DD endopeptidase MepS Murein LD carboxypeptidase 0.422657230168 0.5 0.0773427698325 +UniRef50_M9RIA5 8.14866932475 0.500000000003 -7.64866932475 +UniRef50_F8ETX3 ParB like partition protein 1.3089873019 0.5 -0.808987301897 +UniRef50_I0P9H0 Cellobiose phosphorylase 1.59301875909 0.5 -1.09301875909 +UniRef50_UPI000380D689 hypothetical protein 0.204056472684 0.499999999999 0.295943527316 +UniRef50_UPI000362D231 hypothetical protein 0.999943585907 0.5 -0.499943585907 +UniRef50_Q50245 ORF492 1.62588579161 0.5 -1.12588579161 +UniRef50_UPI00037B94E6 hypothetical protein 0.122194824659 0.5 0.377805175341 +UniRef50_UPI0003B6AEBD ATPase AAA 0.54981595338 0.5 -0.0498159533798 +UniRef50_A3VC61 1.93095661211 0.5 -1.43095661211 +UniRef50_UPI0004785D9F hypothetical protein 0.0345041556724 0.5 0.465495844327 +UniRef50_A4WUP0 30S ribosomal protein S4 1.4556037485 0.5 -0.955603748495 +UniRef50_L9IWH1 CarD like TRCF domain protein 1.47474751172 0.499999999998 -0.974747511719 +UniRef50_A1APL2 Carbonic anhydrase 0.411491318297 0.5 0.088508681703 +UniRef50_UPI00036630BD hypothetical protein, partial 0.013640062197 0.5 0.486359937803 +UniRef50_A3K318 Flagellar protein FlaF, putative 0.255431506802 0.5 0.244568493198 +UniRef50_B9KP57 0.673906424493 0.5 -0.173906424493 +UniRef50_G9RRJ9 0.702682796948 0.5 -0.202682796948 +UniRef50_V5SXS6 Multidrug transporter 0.679256782024 0.5 -0.179256782024 +UniRef50_L1K935 0.458750787953 0.5 0.0412492120475 +UniRef50_K4TPI5 LysE family efflux protein 0.438817269894 0.5 0.0611827301064 +UniRef50_UPI0003B59697 transketolase 1.03027085997 0.5 -0.53027085997 +UniRef50_UPI000376937D hypothetical protein 0.227764985505 0.5 0.272235014495 +UniRef50_UPI0004561BB0 hypothetical protein PFL1_05640 0.125353204499 0.5 0.374646795501 +UniRef50_Q7VHW3 Dihydroxy acid dehydratase 0.358742256927 0.5 0.141257743073 +UniRef50_X5DHG9 Membrane protein 1.07842818975 0.5 -0.578428189746 +UniRef50_M9R6L8 2.5173832488 0.5 -2.0173832488 +UniRef50_O27115 Succinyl CoA ligase [ADP forming] subunit beta 39.1685155729 0.49999999998 -38.6685155728 +UniRef50_Q0FGA1 ArsC family protein 0.266081534214 0.5 0.233918465786 +UniRef50_M0LR14 0.0621514135304 0.499999999999 0.43784858647 +UniRef50_Q2G6B7 2.2995789587 0.5 -1.7995789587 +UniRef50_G7ZM83 LysR family regulatory protein 3.78783552241 0.5 -3.28783552241 +UniRef50_UPI0003737615 hypothetical protein 0.909853669445 0.5 -0.409853669445 +UniRef50_UPI000225B453 superfamily II DNA RNA helicase 0.247087815513 0.5 0.252912184487 +UniRef50_R0DQJ6 0.554884014868 0.5 -0.0548840148684 +UniRef50_Q2G6B8 1.76475618393 0.499999999999 -1.26475618392 +UniRef50_UPI000470B11D hypothetical protein, partial 0.379163245452 0.5 0.120836754548 +UniRef50_U5UEE2 Putative transposase 0.933592860739 0.5 -0.433592860739 +UniRef50_D5APM3 Response regulator receiver protein 1.87625660948 0.5 -1.37625660948 +UniRef50_Q89LH6 UPF0271 protein blr4568 0.937230764123 0.5 -0.437230764123 +UniRef50_UPI00035D3C47 MULTISPECIES 0.0456057810202 0.5 0.45439421898 +UniRef50_UPI000470BC53 4 alpha glucanotransferase, partial 0.0114610516942 0.5 0.488538948306 +UniRef50_UPI000255652B arginyl tRNA synthetase 0.238811111039 0.5 0.261188888961 +UniRef50_G7M9U0 Flagellar hook length control protein 0.136411299303 0.5 0.363588700697 +UniRef50_Q7NNG3 Phosphate import ATP binding protein PstB 2 3.8019747878 0.499999999998 -3.3019747878 +UniRef50_T0UHU4 4 carboxymuconolactone decarboxylase 1.91854498112 0.499999999999 -1.41854498112 +UniRef50_D3LR53 0.363576102117 0.5 0.136423897883 +UniRef50_F8DFL1 DHHA1 domain protein 0.0505959133865 0.5 0.449404086613 +UniRef50_A6M0Z6 0.1642958496 0.5 0.3357041504 +UniRef50_Q9RY66 GTPase Obg 0.00504039770106 0.5 0.494959602299 +UniRef50_D4HCN2 0.103000750566 0.500000000001 0.396999249433 +UniRef50_UPI000367C16B MULTISPECIES 0.399497776698 0.5 0.100502223302 +UniRef50_A0A058ZKH3 HupH hydrogenase expression protein 1.14916674164 0.500000000001 -0.649166741639 +UniRef50_E6JKQ2 1.80626938349 0.499999999998 -1.30626938349 +UniRef50_S5MQR6 0.294679937856 0.5 0.205320062144 +UniRef50_Q6A9F2 0.0260712744251 0.5 0.473928725575 +UniRef50_UPI00035E22E6 hypothetical protein 0.318018791748 0.5 0.181981208252 +UniRef50_O07319 Transcriptional regulator MraZ 2.39338529618 0.5 -1.89338529618 +UniRef50_B9KXA3 2 dehydro 3 deoxyphosphooctonate aldolase 7.7950757122 0.500000000001 -7.2950757122 +UniRef50_F0KLN9 Alkanesulfonate monooxygenase 0.0332967556395 0.5 0.46670324436 +UniRef50_Q9X6A2 2.08327923948 0.5 -1.58327923948 +UniRef50_UPI00047341A0 3 isopropylmalate dehydrogenase, partial 0.199150473547 0.5 0.300849526453 +UniRef50_A5CW53 UDP N acetylmuramate L alanine ligase 0.323403612665 0.5 0.176596387335 +UniRef50_Q9ZN31 ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT 0.0109002936311 0.5 0.489099706369 +UniRef50_Q92UW6 Probable sulfoacetaldehyde acetyltransferase 1.45596099362 0.5 -0.95596099362 +UniRef50_UPI00047B8BC4 hypothetical protein 0.578499856597 0.5 -0.0784998565967 +UniRef50_Q5HLP5 13.6500845294 0.500000000003 -13.1500845294 +UniRef50_W1MLM9 0.154996744828 0.5 0.345003255172 +UniRef50_UPI0002651735 0.0327395286442 0.5 0.467260471356 +UniRef50_P0ACM1 Pyruvate dehydrogenase complex repressor 1.38870182393 0.499999999999 -0.88870182393 +UniRef50_R6M784 0.791969178708 0.5 -0.291969178708 +UniRef50_C3DTJ7 Carbon starvation protein A 0.0106108093322 0.499999999999 0.489389190668 +UniRef50_Q3KFU0 0.584015082408 0.5 -0.0840150824084 +UniRef50_Q3J1W1 Chemotaxis histidine protein kinase, CheA4 0.464256461722 0.5 0.0357435382782 +UniRef50_UPI00036536A6 hypothetical protein 3.55388518108 0.499999999998 -3.05388518107 +UniRef50_UPI0004672B34 molecular chaperone 1.58223429152 0.5 -1.08223429152 +UniRef50_F9NYD0 Cobalt transport protein 0.0110680619466 0.5 0.488931938054 +UniRef50_Q3JP97 0.673046013013 0.5 -0.173046013013 +UniRef50_A7MKS2 3.7637039328 0.500000000003 -3.2637039328 +UniRef50_V9VW16 Short chain dehydrogenase 0.920936668601 0.5 -0.420936668601 +UniRef50_UPI0004792999 hypothetical protein 0.0187479978128 0.5 0.481252002188 +UniRef50_Q7N3Z6 D amino acid dehydrogenase small subunit 0.522139097953 0.5 -0.0221390979528 +UniRef50_P0A1I8 Flagellar basal body rod protein FlgC 6.52982683416 0.500000000001 -6.02982683417 +UniRef50_Q166G1 Oligopeptide ABC transporter, permease protein, putative 0.385875158929 0.5 0.114124841071 +UniRef50_B9KSM2 Alcohol dehydrogenase GroES domain protein 4.1143165496 0.500000000001 -3.6143165496 +UniRef50_Q8CQN2 3.91507130477 0.499999999997 -3.41507130476 +UniRef50_UPI0003FD0CB4 ribonucleotide diphosphate reductase subunit alpha 0.0898483719481 0.5 0.410151628052 +UniRef50_I1ZLL6 Glutamine amidotransferase 1.45091960353 0.5 -0.950919603527 +UniRef50_C5WGZ9 0.762559445647 0.5 -0.262559445647 +UniRef50_A0A016ULG1 0.504203126157 0.5 -0.00420312615662 +UniRef50_A0A023RVX8 Protein TniQ 0.0150314560308 0.5 0.484968543969 +UniRef50_A0NZT5 2.32453004774 0.499999999997 -1.82453004774 +UniRef50_A0A017HEA9 Transport protein 3.60769796773 0.500000000002 -3.10769796773 +UniRef50_P44595 S adenosylmethionine 0.134058284069 0.5 0.365941715931 +UniRef50_E3EXK7 Peptidase, M48 family, putative 1.02171513447 0.5 -0.521715134469 +UniRef50_P65742 Phosphate acyltransferase 0.976799827965 0.5 -0.476799827965 +UniRef50_G0DTI5 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.135614806359 0.5 0.364385193641 +UniRef50_P0ACL7 Putative L lactate dehydrogenase operon regulatory protein 0.328645833475 0.5 0.171354166525 +UniRef50_UPI00047E9930 ABC transporter permease 1.27966429398 0.5 -0.779664293978 +UniRef50_UPI0002D53BE1 hypothetical protein 0.141520635531 0.5 0.358479364469 +UniRef50_A5UKI1 1.12438077309 0.5 -0.624380773087 +UniRef50_UPI000380963E hypothetical protein 0.76967353123 0.5 -0.26967353123 +UniRef50_C1DH36 0.365992004794 0.5 0.134007995206 +UniRef50_A0A010D0D1 Ribonuclease R 0.0343139577485 0.5 0.465686042251 +UniRef50_UPI0002630D1B hypothetical protein 0.060838669622 0.5 0.439161330378 +UniRef50_UPI00035EED6C hypothetical protein 0.618063202346 0.5 -0.118063202346 +UniRef50_E6YJ75 0.00400644647214 0.500000000001 0.495993553527 +UniRef50_UPI000315AE23 hypothetical protein 1.73625141673 0.499999999999 -1.23625141673 +UniRef50_A6LR92 AMP dependent synthetase and ligase 0.0315622393568 0.5 0.468437760644 +UniRef50_Q4L3C7 Transcription activator of glutamate synthase operon 1.92849885562 0.500000000002 -1.42849885562 +UniRef50_O05267 NADH dehydrogenase like protein YumB 1.41779568116 0.5 -0.917795681158 +UniRef50_UPI0003AEB97B PREDICTED 0.0241809614598 0.5 0.47581903854 +UniRef50_P0ABU3 Ribosome binding ATPase YchF 0.0393479191108 0.5 0.460652080889 +UniRef50_Q59829 Putative cystathionine gamma lyase 0.353368890933 0.5 0.146631109067 +UniRef50_E6PJS8 0.323588125558 0.5 0.176411874442 +UniRef50_T2GDK5 1.76701910812 0.5 -1.26701910812 +UniRef50_UPI00036891D5 hypothetical protein 1.78811938212 0.500000000001 -1.28811938212 +UniRef50_Q2GKK2 Ribosomal RNA large subunit methyltransferase E 1.1022864186 0.5 -0.602286418602 +UniRef50_P72622 Peptide methionine sulfoxide reductase MsrA 1 0.488774119087 0.5 0.0112258809134 +UniRef50_UPI0003F87E98 hypothetical protein 0.0218216374178 0.5 0.478178362582 +UniRef50_UPI0003AA29AA flagellar basal body P ring protein 0.863728656756 0.5 -0.363728656756 +UniRef50_G8SD75 0.174780486578 0.5 0.325219513422 +UniRef50_UPI00046737F8 hypothetical protein 0.454994075092 0.5 0.0450059249075 +UniRef50_V4NZE7 1.38540432342 0.5 -0.885404323421 +UniRef50_UPI000469A681 hypothetical protein 0.122918991502 0.5 0.377081008498 +UniRef50_UPI00029A7A9B 30S ribosomal protein S17 0.0447449337353 0.5 0.455255066264 +UniRef50_UPI0003608DE6 hypothetical protein 5.83822169478 0.500000000001 -5.33822169478 +UniRef50_K2I8R3 0.866833003892 0.5 -0.366833003892 +UniRef50_A6UWL8 N acetyl gamma glutamyl phosphate reductase 5.43806556388 0.499999999997 -4.93806556387 +UniRef50_UPI0003EC17DE PREDICTED 0.192137321707 0.5 0.307862678293 +UniRef50_D3EJM2 Peptidyl prolyl cis trans isomerase 0.207655756589 0.5 0.292344243411 +UniRef50_M4ZCL2 DNA polymerase III subunit delta 1.10897455675 0.5 -0.608974556753 +UniRef50_Q1REU7 1.07156968851 0.5 -0.571569688506 +UniRef50_UPI000444942A GIDA domain containing protein 0.504235579467 0.5 -0.00423557946735 +UniRef50_N1MZ98 0.726417327132 0.5 -0.226417327132 +UniRef50_Q9RYF7 Cation transporter, putative 0.000996224063484 0.5 0.499003775936 +UniRef50_A5ULI1 0.29347208166 0.5 0.20652791834 +UniRef50_B8GZV6 Prolipoprotein diacylglyceryl transferase 7.10357338657 0.499999999999 -6.60357338656 +UniRef50_Q9RV78 3 hydroxybutyryl CoA dehydratase 0.00757388607364 0.5 0.492426113926 +UniRef50_A3PPE9 3.42709607804 0.5 -2.92709607804 +UniRef50_U1J219 0.293239503234 0.5 0.206760496766 +UniRef50_UPI00047A7925 nitrate reductase 0.135384265807 0.5 0.364615734193 +UniRef50_D8JNU4 Patatin like phospholipase family protein 0.00900235784094 0.5 0.490997642159 +UniRef50_B9KX78 1.21082747511 0.5 -0.710827475106 +UniRef50_D3SQB6 Urea ABC transporter, urea binding protein 0.00104034705901 0.5 0.498959652941 +UniRef50_B9KX77 1.94444971382 0.5 -1.44444971382 +UniRef50_UPI000360A512 single stranded DNA binding protein, partial 0.0218120314983 0.5 0.478187968501 +UniRef50_A8Z136 0.890258648302 0.5 -0.390258648302 +UniRef50_R7CC37 0.55768177333 0.5 -0.0576817733297 +UniRef50_Q9HYQ2 0.520589448562 0.5 -0.020589448562 +UniRef50_J5K8F9 Phosphate starvation inducible E 0.764807995985 0.5 -0.264807995985 +UniRef50_UPI0003C1568F PREDICTED 0.474418181065 0.5 0.0255818189353 +UniRef50_J8G7J1 0.561738635786 0.5 -0.061738635786 +UniRef50_H5UTL4 0.3509657043 0.5 0.1490342957 +UniRef50_A9D8H9 0.293190094307 0.5 0.206809905693 +UniRef50_Q5HNG8 FtsK SpoIIIE family protein 0.850923362608 0.5 -0.350923362608 +UniRef50_F4CQG8 Amidohydrolase 2 2.60064145695 0.499999999996 -2.10064145694 +UniRef50_M7ECE4 NADH dehydrogenase subunit B 3.49135741757 0.499999999998 -2.99135741757 +UniRef50_U5W2D0 Cellulose synthesis regulatory protein 0.0216494608858 0.5 0.478350539114 +UniRef50_UPI0003B6414D polynucleotide phosphorylase, partial 0.154957027037 0.5 0.345042972963 +UniRef50_B2TMR9 0.0562256980832 0.5 0.443774301916 +UniRef50_UPI000393CC0B 3.37837921654 0.500000000004 -2.87837921654 +UniRef50_UPI000472C56D ABC transporter permease 0.760154507512 0.5 -0.260154507512 +UniRef50_A6LYF9 HAD superfamily hydrolase, subfamily IA, variant 1 0.329099157382 0.5 0.170900842618 +UniRef50_UPI00035D9B42 hypothetical protein 0.422797389311 0.5 0.0772026106895 +UniRef50_M1MIG9 Methyl accepting chemotaxis protein 0.092706851975 0.5 0.407293148025 +UniRef50_Q5FAD3 Shikimate kinase 0.00196431889693 0.5 0.498035681103 +UniRef50_Q6A8V3 1 deoxy D xylulose 5 phosphate synthase 0.0129166490229 0.5 0.487083350977 +UniRef50_Q60AI1 Spermidine putrescine import ATP binding protein PotA 2.03837026401 0.500000000001 -1.53837026401 +UniRef50_M0WIY9 0.0436034144179 0.5 0.456396585582 +UniRef50_A6LRS1 0.237655820854 0.5 0.262344179146 +UniRef50_J7MB25 Transposase 0.6275008848 0.5 -0.1275008848 +UniRef50_UPI00037C3240 hypothetical protein 2.13701357095 0.5 -1.63701357095 +UniRef50_UPI0003A6B902 calcium binding protein 1.42865542157 0.5 -0.928655421569 +UniRef50_Q8CS10 1.06305046895 0.5 -0.563050468949 +UniRef50_Q8CS11 0.87221803271 0.5 -0.37221803271 +UniRef50_I0GNK9 0.371182374196 0.5 0.128817625804 +UniRef50_Q8CS13 1.77194997574 0.5 -1.27194997574 +UniRef50_Q8CS14 2.42839571469 0.5 -1.92839571469 +UniRef50_A1VUK8 0.337314651506 0.5 0.162685348494 +UniRef50_Q98FZ6 Mlr3554 protein 2.34285008377 0.500000000001 -1.84285008377 +UniRef50_B5EPN2 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.665420851575 0.5 -0.165420851575 +UniRef50_D3QJ51 Rhodanese like domain protein 1.79180594801 0.5 -1.29180594801 +UniRef50_Q9RTE5 0.00223634141605 0.5 0.497763658584 +UniRef50_UPI00037196F6 hypothetical protein 0.0793004859754 0.5 0.420699514024 +UniRef50_Q9CBQ2 Ribonucleoside diphosphate reductase subunit beta 0.0990168051465 0.5 0.400983194853 +UniRef50_Q8BIG7 Catechol O methyltransferase domain containing protein 1 0.403273316247 0.5 0.0967266837535 +UniRef50_Q8CPK8 Penicillin binding protein 1 2.01649788892 0.499999999999 -1.51649788892 +UniRef50_T1XRT4 Competence protein ComGF, putative 5.61008222156 0.500000000002 -5.11008222156 +UniRef50_B8DMV4 Integral membrane protein MviN 0.640558372768 0.5 -0.140558372768 +UniRef50_A6M167 0.0455244701176 0.5 0.454475529883 +UniRef50_A6M161 0.203709253491 0.5 0.296290746509 +UniRef50_A6LUR8 0.0446950057278 0.5 0.455304994272 +UniRef50_UPI000366A76F hypothetical protein, partial 0.274083282974 0.5 0.225916717026 +UniRef50_O05253 0.146427107867 0.5 0.353572892132 +UniRef50_O05255 0.301767702884 0.5 0.198232297116 +UniRef50_Q1IZU9 Serine tRNA ligase 0.00230754206669 0.5 0.497692457933 +UniRef50_M9VH54 Transporter, major facilitator family protein 0.0181059256639 0.5 0.481894074336 +UniRef50_Q9PEV8 DNA topoisomerase 1 0.00642845564896 0.5 0.493571544351 +UniRef50_D7CV09 ATP dependent zinc metalloprotease FtsH 0.00155256509062 0.5 0.49844743491 +UniRef50_F5X6L2 Thiamine transporter protein 0.465282234689 0.5 0.0347177653114 +UniRef50_Q7NMY2 Gsl0633 protein 0.0816370024883 0.499999999999 0.418362997512 +UniRef50_UPI000225C104 PhoP family transcriptional regulator 0.135408346452 0.5 0.364591653548 +UniRef50_UPI00037A9D80 hypothetical protein 0.525709359759 0.5 -0.0257093597594 +UniRef50_UPI0003626827 hypothetical protein 0.157947158283 0.5 0.342052841716 +UniRef50_Q2YYZ3 1.12962003243 0.5 -0.629620032432 +UniRef50_UPI0002490914 transcriptional regulator 0.351126664744 0.5 0.148873335256 +UniRef50_I0C454 Nitrogen regulation protein NIFR3 1.33578739344 0.5 -0.835787393441 +UniRef50_E7C5A1 MoxR like ATPases 0.28058625923 0.5 0.21941374077 +UniRef50_D2ZNN2 1.02027893383 0.5 -0.520278933831 +UniRef50_B2ITM7 30S ribosomal protein S9 30.2231491434 0.499999999992 -29.7231491434 +UniRef50_A4WTC5 1.07548779183 0.5 -0.57548779183 +UniRef50_M4YY80 Ribose ABC transporter permease 0.55992350226 0.5 -0.0599235022596 +UniRef50_P77453 Hydrogenase 4 component J 0.589558615195 0.5 -0.0895586151947 +UniRef50_P06225 DNA polymerase 1.01692922351 0.5 -0.516929223507 +UniRef50_R8T1N5 0.0168395559823 0.5 0.483160444018 +UniRef50_E8SF08 N acetyl L,L diaminopimelate deacetylase like protein 1.98922694417 0.5 -1.48922694417 +UniRef50_UPI00037C81CE hypothetical protein 0.163586189603 0.5 0.336413810397 +UniRef50_K6VNK5 Putative ABC transporter substrate binding protein 1.67715503363 0.5 -1.17715503363 +UniRef50_UPI00046779B7 secretin 0.285244819024 0.5 0.214755180976 +UniRef50_L7WTQ2 Serine threonine rich antigen 3.7830218665 0.5 -3.2830218665 +UniRef50_UPI0003B4AC14 general secretion pathway protein I 0.752039546713 0.5 -0.252039546713 +UniRef50_A6TVR2 Aspartate carbamoyltransferase 0.277802832622 0.5 0.222197167378 +UniRef50_P10151 HTH type transcriptional regulator LeuO 2.14473833881 0.5 -1.64473833881 +UniRef50_D8JPC9 NUDIX domain protein 0.0273182085838 0.5 0.472681791416 +UniRef50_Q6GGG1 Shikimate kinase 15.8176226399 0.500000000034 -15.3176226399 +UniRef50_I9PDN2 0.321589262142 0.5 0.178410737858 +UniRef50_UPI000470E9F4 uroporphyrinogen decarboxylase 0.188542760992 0.5 0.311457239008 +UniRef50_Q43923 Putative porin QuiX 0.00758733507991 0.5 0.49241266492 +UniRef50_A5UNK1 Nitroreductase, NfnB 2.54830927915 0.5 -2.04830927915 +UniRef50_F0MEP6 Acetyltransferase PglI 0.00954000222244 0.5 0.490459997777 +UniRef50_H4G9C2 0.949510371445 0.5 -0.449510371445 +UniRef50_UPI000429B909 ribonucleotide diphosphate reductase subunit alpha 0.0595382706753 0.5 0.440461729325 +UniRef50_Q0TPV7 Stage V sporulation protein B 0.0459566361985 0.5 0.454043363801 +UniRef50_UPI00024917F8 transcriptional regulator 0.373459379372 0.5 0.126540620628 +UniRef50_UPI000377B35F hypothetical protein 0.3023503694 0.5 0.1976496306 +UniRef50_UPI00037AAF89 hypothetical protein 0.158438579191 0.5 0.341561420809 +UniRef50_J4KJZ5 TonB dependent siderophore receptor 0.0120925439597 0.5 0.48790745604 +UniRef50_P75824 NADH oxidoreductase hcr 1.45250030786 0.5 -0.952500307862 +UniRef50_Q0F3C9 0.0312340251914 0.5 0.468765974808 +UniRef50_P74241 Sulfate adenylyltransferase 2.23585071221 0.5 -1.73585071221 +UniRef50_B2TX82 4.4219977398 0.499999999999 -3.9219977398 +UniRef50_A3PNK5 PTS IIA like nitrogen regulatory protein PtsN 2.14043683816 0.5 -1.64043683816 +UniRef50_Q73TT9 0.0148772122677 0.5 0.485122787732 +UniRef50_P76552 Ethanolamine utilization protein EutH 1.61451768171 0.5 -1.11451768171 +UniRef50_Q73TT2 0.348851446754 0.5 0.151148553246 +UniRef50_A6LRT3 0.674667521265 0.5 -0.174667521265 +UniRef50_A8IJV0 BioY family protein 0.37700249507 0.5 0.12299750493 +UniRef50_B2AGC3 2.25746428501 0.500000000002 -1.75746428501 +UniRef50_I4W6U8 Putative NAD specific glutamate dehydrogenase 0.880497334276 0.5 -0.380497334276 +UniRef50_R7N6I4 Amino acid transporters Alcohol dehydrogenase class IV 0.0413696363147 0.5 0.458630363685 +UniRef50_A6LR22 Binding protein dependent transport systems inner membrane component 0.957459154591 0.5 -0.457459154591 +UniRef50_UPI0002F61CB0 hypothetical protein 8.92583195487 0.499999999994 -8.42583195487 +UniRef50_UPI00034BD8C9 hypothetical protein 4.73854679402 0.500000000001 -4.23854679402 +UniRef50_UPI00047221AF bifunctional glyoxylate hydroxypyruvate reductase B 1.99664758104 0.5 -1.49664758104 +UniRef50_P13511 Cobalt zinc cadmium resistance protein CzcA 0.046322127504 0.5 0.453677872496 +UniRef50_E8SJT4 Lipid A export ATP binding permease protein MsbA 1.47079569296 0.499999999999 -0.970795692961 +UniRef50_A3PG03 Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03 0.938226560201 0.5 -0.438226560201 +UniRef50_UPI00046F85CB L threonine 3 dehydrogenase 0.0619097415285 0.5 0.438090258471 +UniRef50_S1T400 0.397352146019 0.5 0.102647853981 +UniRef50_X7DMX2 3.3531853209 0.5 -2.8531853209 +UniRef50_A6LRT8 0.0355031528251 0.5 0.464496847175 +UniRef50_P76134 Anaerobic sulfatase maturating enzyme homolog YdeM 2.77481886312 0.500000000002 -2.27481886312 +UniRef50_A6LZF4 Virginiamycin B lyase 0.701437276844 0.5 -0.201437276844 +UniRef50_P16431 Formate hydrogenlyase subunit 5 1.27354146315 0.5 -0.773541463147 +UniRef50_A8FP74 Methionyl tRNA formyltransferase 1.04476123938 0.5 -0.544761239384 +UniRef50_B0V5A3 0.0107278118148 0.5 0.489272188185 +UniRef50_F8I069 Spermidine putrescine binding periplasmic protein 1.06890804046 0.5 -0.568908040455 +UniRef50_UPI000464AFE5 hypothetical protein 0.474392302393 0.5 0.0256076976068 +UniRef50_UPI0002491C94 N 6 DNA methylase 0.759658623672 0.5 -0.259658623672 +UniRef50_A6M1E5 Transposase, IS4 family protein 0.0707409082746 0.5 0.429259091725 +UniRef50_UPI0003781939 30S ribosomal protein S2 0.613351953794 0.5 -0.113351953794 +UniRef50_Q2JFL7 NADH quinone oxidoreductase subunit D 0.00252973770717 0.5 0.497470262293 +UniRef50_C3A9F0 Beta glucosidase 0.126057765222 0.5 0.373942234778 +UniRef50_UPI00037F85FD hypothetical protein 8.34345310846 0.500000000005 -7.84345310847 +UniRef50_A3K670 NADP dependent isocitrate dehydrogenase protein 2.11579398101 0.5 -1.61579398101 +UniRef50_B7MFR7 Pyrimidine specific ribonucleoside hydrolase RihA 1.54462127405 0.5 -1.04462127405 +UniRef50_Q925Z1 Lin1243 protein 8.13551931048 0.499999999997 -7.63551931048 +UniRef50_UPI000366F76E hypothetical protein 0.659309154665 0.5 -0.159309154665 +UniRef50_Q8NUG3 3.53532498915 0.5 -3.03532498915 +UniRef50_P11961 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.0407316815804 0.5 0.45926831842 +UniRef50_D2SAY9 ATPase involved in chromosome partitioning like protein 1.43010352366 0.499999999999 -0.930103523661 +UniRef50_F3R5J1 2.75199993748 0.5 -2.25199993748 +UniRef50_Q3JPV0 3.48986954316 0.5 -2.98986954316 +UniRef50_Q036S8 Glucose 1 phosphate adenylyltransferase 0.000615817903782 0.5 0.499384182096 +UniRef50_B6JGW9 Replicative DNA helicase 3.02425311725 0.5 -2.52425311725 +UniRef50_Q8CNU7 Multidrug resistance protein like protein 1.29989532135 0.5 -0.799895321347 +UniRef50_H3UQK1 0.722574300971 0.5 -0.222574300971 +UniRef50_UPI000475A83D hypothetical protein 0.671472485719 0.5 -0.171472485719 +UniRef50_P0AA74 2.31536683497 0.499999999997 -1.81536683497 +UniRef50_Q9RYX0 Pyridoxamine kinase 0.0101821844078 0.5 0.489817815593 +UniRef50_N1N3N6 Mobile element protein 5.3328591827 0.5 -4.8328591827 +UniRef50_V9W2G7 Nitrate reductase 3.85566371969 0.500000000001 -3.35566371969 +UniRef50_P52196 Thiosulfate sulfurtransferase 1.56673388013 0.5 -1.06673388013 +UniRef50_Q9NJP9 Glycerol kinase, glycosomal 0.262153603163 0.5 0.237846396837 +UniRef50_R6CPB8 Methionine tRNA ligase 0.0373020058441 0.5 0.462697994156 +UniRef50_P24252 4.29257613612 0.499999999998 -3.79257613612 +UniRef50_Q2YX94 Iron regulated surface determinant protein C 1.17400151287 0.5 -0.674001512868 +UniRef50_B7V9D9 Glutamate 1 semialdehyde 2,1 aminomutase 1.42685828028 0.500000000002 -0.926858280278 +UniRef50_E0NC84 0.247336800482 0.5 0.252663199518 +UniRef50_P33913 0.614826704025 0.5 -0.114826704025 +UniRef50_Q3IWW9 6.88852990991 0.500000000002 -6.38852990992 +UniRef50_B9DJK9 UPF0042 nucleotide binding protein Sca_0414 1.69201265106 0.5 -1.19201265106 +UniRef50_P33916 0.616574220003 0.5 -0.116574220003 +UniRef50_D8HEB7 1.82272911175 0.500000000002 -1.32272911175 +UniRef50_UPI000375905C hypothetical protein 0.510989257487 0.5 -0.0109892574867 +UniRef50_R4XS51 ABC transporter, periplasmic spermidine putrescine binding protein PotD 1.9619697703 0.5 -1.4619697703 +UniRef50_E6VA72 ABC transporter related protein 0.0975607808395 0.5 0.402439219161 +UniRef50_E3GWS4 Oxidoreductase domain protein 2.10525285946 0.500000000002 -1.60525285946 +UniRef50_UPI00035E9C46 hypothetical protein 1.25985301933 0.5 -0.75985301933 +UniRef50_UPI00032913FE PREDICTED 0.981285475794 0.5 -0.481285475794 +UniRef50_F2A5X0 6 pyruvoyl tetrahydropterin synthase 0.134757961141 0.5 0.365242038859 +UniRef50_UPI00016A2F14 potassium transporting ATPase subunit A, partial 0.00263393785467 0.5 0.497366062145 +UniRef50_A4WNG3 Histidine kinase 4.53631471536 0.5 -4.03631471536 +UniRef50_A4WWM3 Outer membrane lipoprotein carrier protein LolA 0.400838091735 0.5 0.0991619082653 +UniRef50_P28249 Protein AsmA 3.23844351013 0.500000000002 -2.73844351013 +UniRef50_Q8DFM1 Adenylate kinase 0.450383923416 0.5 0.0496160765837 +UniRef50_B0K5G6 50S ribosomal protein L10 6.52379920616 0.499999999994 -6.02379920615 +UniRef50_R5P840 0.124541726916 0.5 0.375458273084 +UniRef50_Q1R7P6 1.40813406093 0.5 -0.90813406093 +UniRef50_B4KEQ1 GI22193 0.116977821049 0.5 0.383022178951 +UniRef50_Q3JSW3 1.06741335307 0.5 -0.567413353072 +UniRef50_A5UNT1 Putative Gp40 related protein, ERF family single strand annealing protein 4.15022289564 0.5 -3.65022289564 +UniRef50_UPI0004686FFD hypothetical protein 0.323223510156 0.5 0.176776489844 +UniRef50_Q48RL4 Xaa Pro dipeptidase 0.382685934435 0.5 0.117314065565 +UniRef50_I2FE21 Riboflavin synthase subunit alpha 0.0107540195493 0.5 0.489245980451 +UniRef50_UPI0003761549 hypothetical protein 1.02648905698 0.5 -0.526489056978 +UniRef50_M9R9R9 Methylenetetrahydrofolate reductase 4.0985037557 0.499999999999 -3.59850375569 +UniRef50_K2CW16 Short chain dehydrogenase reductase SDR 0.0474713531085 0.5 0.452528646892 +UniRef50_F6AYF9 ABC type transporter, integral membrane subunit 0.0582973744386 0.5 0.441702625562 +UniRef50_Q28TZ9 Protein MurJ homolog 1.97478397478 0.499999999998 -1.47478397478 +UniRef50_K4SH63 0.722734314058 0.5 -0.222734314058 +UniRef50_J8ST30 0.00332080374656 0.5 0.496679196253 +UniRef50_E7S6W5 0.314608753737 0.5 0.185391246263 +UniRef50_U0CZ19 0.0567635764601 0.5 0.44323642354 +UniRef50_UPI000368BB4B hypothetical protein 0.19303597844 0.5 0.30696402156 +UniRef50_Q8CQ95 Histidinol dehydrogenase 1.0353124945 0.5 -0.5353124945 +UniRef50_P15713 Non hemolytic phospholipase C 0.544556748847 0.5 -0.0445567488474 +UniRef50_D0K1D5 0.0161546622465 0.5 0.483845337754 +UniRef50_A4VLC1 Rad3 related DNA helicase 0.537706536049 0.5 -0.0377065360486 +UniRef50_S5Y961 Phage terminase 1.55575083106 0.5 -1.05575083106 +UniRef50_UPI000289E091 6 pyruvoyl tetrahydropterin synthase 0.41893442358 0.5 0.08106557642 +UniRef50_O24990 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.00492377416208 0.5 0.495076225838 +UniRef50_A6LX16 Zinc finger, SWIM domain protein 0.0689896886485 0.5 0.431010311352 +UniRef50_B2VB14 TraU protein 5.77216601054 0.5 -5.27216601054 +UniRef50_UPI0003943901 PREDICTED 0.0293396084151 0.5 0.470660391585 +UniRef50_Q58811 3.47316435795 0.499999999999 -2.97316435795 +UniRef50_X7ZA42 Integral membrane nitrite extrusion NarU domain protein 0.603786451664 0.5 -0.103786451664 +UniRef50_Q5HYK3 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 0.473768052961 0.5 0.0262319470391 +UniRef50_Q59659 Succinate dehydrogenase cytochrome b556 subunit 6.27275184125 0.500000000002 -5.77275184125 +UniRef50_M3H3A2 CRISPR associated helicase Cas3 1.54927893797 0.5 -1.04927893797 +UniRef50_UPI0003347ABB PREDICTED 0.272403454049 0.5 0.227596545951 +UniRef50_UPI0003697ED9 hypothetical protein, partial 0.22227612653 0.5 0.27772387347 +UniRef50_D3E1C7 Xylose isomerase like TIM barrel domain containing protein 4.02597205565 0.499999999996 -3.52597205565 +UniRef50_F1U7I1 0.273678895281 0.5 0.226321104719 +UniRef50_UPI0004727931 hypothetical protein 2.20154291355 0.5 -1.70154291355 +UniRef50_UPI000468C176 hypothetical protein 0.382436480381 0.5 0.117563519619 +UniRef50_P0AGH4 Peptide transport system permease protein SapB 1.57066408216 0.499999999998 -1.07066408215 +UniRef50_A6M060 PfkB domain protein 0.286125815243 0.5 0.213874184757 +UniRef50_B1GYM8 UDP N acetylmuramate L alanine ligase 0.988514477103 0.5 -0.488514477103 +UniRef50_Q9I0K4 Isocitrate lyase 0.027677911879 0.5 0.472322088121 +UniRef50_Q21KT5 Tetratricopeptide TPR_2 0.193359768912 0.5 0.306640231088 +UniRef50_D6DNI5 Cation multidrug efflux pump 2.15447975228 0.5 -1.65447975228 +UniRef50_UPI000023E6F1 hypothetical protein FG03809.1 0.172183604315 0.5 0.327816395685 +UniRef50_H7CZP9 ABC transporter, ATP binding protein 0.129202941566 0.5 0.370797058434 +UniRef50_UPI0003650601 30S ribosomal protein S4 0.162401499245 0.499999999999 0.337598500756 +UniRef50_C7NH75 Chromosome segregation ATPase 0.131857132383 0.5 0.368142867617 +UniRef50_U7G8A4 0.777325240003 0.5 -0.277325240003 +UniRef50_L7WSV6 3.53467202189 0.499999999998 -3.03467202189 +UniRef50_E0QAI5 TQXA domain protein 0.0391853547378 0.5 0.460814645262 +UniRef50_Q9L883 0.635407248683 0.5 -0.135407248683 +UniRef50_H6SQS4 Cyclic nucleotide binding 0.082089143955 0.5 0.417910856045 +UniRef50_B5XNE4 3 dehydroquinate dehydratase 36.0487912607 0.50000000007 -35.5487912608 +UniRef50_P38135 Short chain fatty acid CoA ligase 1.90160127738 0.5 -1.40160127738 +UniRef50_Q9RNH6 Glycogen synthase 1.70035686873 0.5 -1.20035686873 +UniRef50_R4R8F1 Transcriptional regulator, LysR family 0.469477489258 0.5 0.0305225107422 +UniRef50_Q5HR55 2.81060541384 0.5 -2.31060541384 +UniRef50_Q97QF9 Putative 3 isopropylmalate dehydratase small subunit 0.00389374768989 0.5 0.49610625231 +UniRef50_P76524 Aminopeptidase YpdF 2.38439877382 0.5 -1.88439877382 +UniRef50_UPI0004663E5A spermidine putrescine ABC transporter permease 0.117454673036 0.5 0.382545326964 +UniRef50_M7D3U9 1.33191910737 0.5 -0.831919107371 +UniRef50_UPI00044496EC mannitol 1 phosphate dehydrogenase M1PDH1 0.933204855613 0.5 -0.433204855613 +UniRef50_A0A058ZQ19 Putative cation transport protein 0.112266722762 0.5 0.387733277238 +UniRef50_F4FMY2 Group 2 glycosyl transferase 5.94444142759 0.499999999989 -5.44444142758 +UniRef50_Q9I4G8 Arachidonate 15 lipoxygenase 0.55699192891 0.5 -0.05699192891 +UniRef50_D4HAN6 ABC transporter, ATP binding protein 0.0230949208782 0.5 0.476905079122 +UniRef50_I3GFM4 0.42828167593 0.5 0.0717183240705 +UniRef50_UPI0002F4F624 hypothetical protein 0.620497660819 0.5 -0.120497660819 +UniRef50_D9XXK0 0.163132247569 0.5 0.336867752431 +UniRef50_UPI000382A772 hypothetical protein 0.515307402693 0.5 -0.0153074026927 +UniRef50_A7HVG2 0.929746572131 0.5 -0.429746572131 +UniRef50_UPI00042B174B Beta carbonic anhydrase 5, putative isoform 3 0.384710284738 0.5 0.115289715262 +UniRef50_Q9KAF4 BH2333 protein 9.595744404 0.500000000011 -9.09574440401 +UniRef50_M7MZC8 Cytoplasmic protein 0.166423617255 0.5 0.333576382745 +UniRef50_U5UPA0 Transcription termination factor NusA 3.4339721409 0.499999999997 -2.93397214089 +UniRef50_S6AFF6 0.390825530111 0.5 0.109174469889 +UniRef50_A6LUU0 0.0645132510643 0.5 0.435486748936 +UniRef50_Q9JZ56 Aspartate 1 decarboxylase 0.0243611748879 0.5 0.475638825112 +UniRef50_A7ZI94 3 propionate 3 hydroxycinnamic acid hydroxylase 3.77874244687 0.5 -3.27874244687 +UniRef50_Q830B9 Probable nicotinate nucleotide adenylyltransferase 0.355737551406 0.5 0.144262448594 +UniRef50_UPI0003637298 hypothetical protein 1.16741704169 0.5 -0.667417041693 +UniRef50_UPI0002F798B9 hypothetical protein 0.327974112998 0.5 0.172025887002 +UniRef50_UPI0003680D49 hypothetical protein 0.0414068070222 0.5 0.458593192978 +UniRef50_F9YXS7 Tyrosine recombinase XerC 0.0410204170026 0.5 0.458979582997 +UniRef50_I3XDQ4 TOP1E 0.116933702047 0.5 0.383066297953 +UniRef50_Q00518 Type II secretion system protein K 1.79507363784 0.5 -1.29507363784 +UniRef50_A6LUU6 0.06363744335 0.5 0.43636255665 +UniRef50_P0AFY4 Protein SanA 0.794946733024 0.5 -0.294946733024 +UniRef50_P34896 Serine hydroxymethyltransferase, cytosolic 0.332048619096 0.5 0.167951380904 +UniRef50_F4DTG1 TetR family transcriptional regulator 0.160913346481 0.5 0.339086653519 +UniRef50_M5JL13 YaeC family lipoprotein 1.55093788154 0.5 -1.05093788154 +UniRef50_UPI0003A8766A hypothetical protein 0.583032416802 0.5 -0.0830324168022 +UniRef50_A0RGM3 0.0105526302345 0.5 0.489447369766 +UniRef50_U6I6N8 Mechanosensory protein 2 0.288707428839 0.5 0.211292571161 +UniRef50_D5SMQ9 1.24930040478 0.499999999999 -0.749300404778 +UniRef50_UPI00035E630D hypothetical protein 0.0851739190111 0.5 0.414826080989 +UniRef50_D6AZ23 Integral membrane protein 0.683098282478 0.5 -0.183098282478 +UniRef50_D2NRU7 Cytosine deaminase 0.0251944278614 0.5 0.474805572139 +UniRef50_UPI00041D1FA9 hypothetical protein 0.319990582466 0.5 0.180009417534 +UniRef50_S5VIT0 Relaxase mobilization nuclease domain protein 3.87703562302 0.500000000001 -3.37703562302 +UniRef50_P77339 1.28228612007 0.5 -0.782286120072 +UniRef50_UPI00047C5809 short chain dehydrogenase 0.224223930451 0.5 0.275776069549 +UniRef50_UPI000441CA6F PREDICTED 1.25361440655 0.5 -0.753614406549 +UniRef50_P71015 HTH type transcriptional repressor GbsR 3.4513147157 0.499999999997 -2.9513147157 +UniRef50_A3JNE7 0.875230803286 0.5 -0.375230803286 +UniRef50_A0REF7 DNA binding response regulator 0.0492548079439 0.5 0.450745192056 +UniRef50_Q6NCE2 1.49401121164 0.5 -0.994011211636 +UniRef50_A7ZJJ2 Cyclic pyranopterin monophosphate synthase accessory protein 0.733226582473 0.5 -0.233226582473 +UniRef50_Q888H1 Uronate dehydrogenase 0.0693345015412 0.5 0.430665498459 +UniRef50_A6LV74 Integral membrane sensor signal transduction histidine kinase 0.137710393957 0.5 0.362289606043 +UniRef50_C8VDQ3 Putative glutathione dependent formaldehyde activating enzyme 1.78457272101 0.5 -1.28457272101 +UniRef50_K8B5X1 0.162038172836 0.5 0.337961827164 +UniRef50_F4H898 CRISPR associated HD domain protein 1.02004523456 0.5 -0.520045234558 +UniRef50_M4UMY3 Transcriptional regulator, Crp Fnr family 0.284859269508 0.5 0.215140730492 +UniRef50_I1AQG2 IS5 family transposase OrfA 0.617125745067 0.5 -0.117125745067 +UniRef50_UPI0003B76181 hypothetical protein 0.460496753392 0.5 0.0395032466078 +UniRef50_UPI000474B984 sugar ABC transporter ATP binding protein 0.147381967983 0.5 0.352618032017 +UniRef50_W4UB24 L xylulose 5 phosphate 3 epimerase 0.0222234332579 0.5 0.477776566742 +UniRef50_UPI0002BA5A10 MerR family transcriptional regulator 0.289642559806 0.5 0.210357440194 +UniRef50_Q893S7 Chemotaxis protein methyltransferase cheR 0.113808063324 0.499999999999 0.386191936677 +UniRef50_S5Y8D8 DNA topoisomerase 1 2.23479388536 0.5 -1.73479388536 +UniRef50_D4MGJ2 Cyclopropane fatty acyl phospholipid synthase 0.0601335459218 0.5 0.439866454078 +UniRef50_UPI00036A03D0 hypothetical protein, partial 0.329945909464 0.5 0.170054090536 +UniRef50_UPI000473270B hypothetical protein 0.283618970639 0.5 0.216381029361 +UniRef50_G7M9J3 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.627440401697 0.5 -0.127440401697 +UniRef50_UPI0003595AF6 0.466265280618 0.5 0.0337347193824 +UniRef50_B4SRW3 Acetyl CoA acetyltransferase 0.00932056182013 0.5 0.49067943818 +UniRef50_A6LX32 0.331490021559 0.5 0.168509978441 +UniRef50_B5GLS3 0.152707048702 0.5 0.347292951298 +UniRef50_X4QTL9 0.00774032082956 0.499999999999 0.492259679171 +UniRef50_V8R9C6 Cytochrome C assembly protein 1.15723974822 0.5 -0.657239748217 +UniRef50_UPI000470A12B hypothetical protein 0.135610576969 0.500000000001 0.364389423031 +UniRef50_C5C6A7 0.0628474147314 0.5 0.437152585268 +UniRef50_U2Z7C1 0.827841924589 0.5 -0.327841924589 +UniRef50_F8LKD4 2.86610427833 0.5 -2.36610427833 +UniRef50_I0C2E4 Hydrogen peroxide inducible genes activator 2.52413094256 0.500000000004 -2.02413094256 +UniRef50_UPI0004728112 shikimate dehydrogenase, partial 0.568990883554 0.5 -0.068990883554 +UniRef50_UPI0003B52B26 ABC transporter 1.32453107455 0.5 -0.824531074551 +UniRef50_M7DCE8 Anticodon nuclease 0.759185148265 0.5 -0.259185148265 +UniRef50_UPI0004773C4C peptidylprolyl isomerase 0.127065361186 0.5 0.372934638814 +UniRef50_L8N8P7 HflK protein 0.37151863971 0.5 0.12848136029 +UniRef50_B2TPA5 Cell division protein FtsA 0.126473157157 0.500000000001 0.373526842842 +UniRef50_N0AQS7 D 3 phosphoglycerate dehydrogenase 0.825951465075 0.5 -0.325951465075 +UniRef50_U3TMH1 Chloride channel protein 3.53278880077 0.5 -3.03278880077 +UniRef50_UPI00022337B0 PREDICTED 0.0322253909148 0.5 0.467774609085 +UniRef50_UPI000370CB23 hypothetical protein 0.84623353096 0.5 -0.34623353096 +UniRef50_F4DXM1 Short chain dehydrogenase 0.601759087107 0.5 -0.101759087107 +UniRef50_E1R075 FAD dependent oxidoreductase 0.614764423926 0.5 -0.114764423926 +UniRef50_UPI0003A40543 hypothetical protein 1.76335360624 0.499999999998 -1.26335360624 +UniRef50_B9KSE8 FAD dependent oxidoreductase 2.85299676101 0.500000000001 -2.35299676101 +UniRef50_Q11NV4 Isoleucine tRNA ligase 0.316253844892 0.5 0.183746155108 +UniRef50_X0YWS3 Marine sediment metagenome DNA, contig 0.267272913237 0.5 0.232727086763 +UniRef50_U3STL6 0.854185758446 0.5 -0.354185758446 +UniRef50_D9VBW9 Predicted protein 0.354230298961 0.5 0.145769701039 +UniRef50_B9KLG3 Membrane protein 0.236562378886 0.5 0.263437621114 +UniRef50_S5YCD9 2.82299845519 0.5 -2.32299845519 +UniRef50_K5RU55 0.0256295059129 0.5 0.474370494087 +UniRef50_L8P717 Putative UPF0225 protein 0.0764785542481 0.5 0.423521445752 +UniRef50_P97089 Electron transfer flavoprotein subunit beta 0.122718517888 0.5 0.377281482112 +UniRef50_D3P6N7 Peptide nickel transport system ATP binding protein 0.247215838962 0.5 0.252784161038 +UniRef50_J2GHT5 2.0983561432 0.5 -1.5983561432 +UniRef50_D7I331 Phenylalanine hydroxylase transcriptional activator PhhR 1.05999384436 0.5 -0.559993844363 +UniRef50_Q8DSP8 Membrane protein insertase YidC 2 0.467234675805 0.5 0.0327653241951 +UniRef50_D2JDJ5 Replication initiator protein 2.41258266099 0.500000000003 -1.91258266099 +UniRef50_UPI000273B72B PREDICTED 0.107898261208 0.5 0.392101738792 +UniRef50_F0RNI2 0.0125373462887 0.5 0.487462653711 +UniRef50_Q9I4X3 Anthranilate CoA ligase 2.88102939497 0.5 -2.38102939497 +UniRef50_UPI000477551D acetyl CoA hydrolase 0.788210668361 0.5 -0.288210668361 +UniRef50_E8SEC6 Acid phosphatase 1.5153053613 0.5 -1.0153053613 +UniRef50_Q2W0I4 1.86732230679 0.5 -1.36732230679 +UniRef50_Q0D8N0-3 Isoform 3 of DEAD box ATP dependent RNA helicase 53 0.030926969983 0.500000000001 0.469073030016 +UniRef50_UPI0003700CC6 hypothetical protein, partial 0.0366745106063 0.5 0.463325489394 +UniRef50_I6T7T0 Transposase 0.688165607706 0.5 -0.188165607706 +UniRef50_F7YG57 0.0635415932819 0.5 0.436458406718 +UniRef50_A3PRI3 0.974516096986 0.5 -0.474516096986 +UniRef50_UPI00046735F8 methionine gamma lyase, partial 0.312648065734 0.5 0.187351934266 +UniRef50_UPI0004753FFF hypothetical protein 0.0658517508037 0.5 0.434148249196 +UniRef50_UPI0002883A7C phosphoribosylaminoimidazole carboxylase 0.282398385785 0.5 0.217601614215 +UniRef50_Q8CPQ1 Bifunctional autolysin 1.99535033102 0.500000000002 -1.49535033103 +UniRef50_UPI000225B6E8 flagellar biosynthesis protein FliQ 1.56353009598 0.5 -1.06353009598 +UniRef50_F2FNL1 0.909190677432 0.5 -0.409190677432 +UniRef50_R9VQB8 Major facilitator transporter 0.0824349793035 0.5 0.417565020697 +UniRef50_Q56318 0.0353404474433 0.5 0.464659552557 +UniRef50_A7FAU5 0.0207450953254 0.5 0.479254904675 +UniRef50_U5P8L4 Membrane protein 1.09161605185 0.5 -0.591616051853 +UniRef50_Q826Q0 Peptide deformylase 2 0.147736475833 0.5 0.352263524167 +UniRef50_Q7UJL3 Inosine 5 monophosphate dehydrogenase 1.69588757702 0.5 -1.19588757702 +UniRef50_A3K7K9 0.89778493163 0.5 -0.39778493163 +UniRef50_E3JT91 1.27133537583 0.5 -0.771335375825 +UniRef50_Q89ZA3 0.000872784792488 0.5 0.499127215208 +UniRef50_Q9HXE9 Phosphatidylcholine synthase 20.494785212 0.500000000007 -19.994785212 +UniRef50_UPI0003D71460 PREDICTED 0.0777319271752 0.5 0.422268072825 +UniRef50_Q3J224 Phage related protein, putative DNA packing 0.318620424548 0.5 0.181379575452 +UniRef50_P43671 Paraquat inducible protein B 2.64214826298 0.500000000001 -2.14214826298 +UniRef50_UPI00006CBA16 Carbonic anhydrase family protein 0.0956216247822 0.5 0.404378375218 +UniRef50_W7WVT2 1.89019306534 0.5 -1.39019306534 +UniRef50_UPI000362D292 hypothetical protein 0.336765239099 0.5 0.163234760901 +UniRef50_P37906 Gamma glutamylputrescine oxidoreductase 3.07351262271 0.5 -2.57351262272 +UniRef50_UPI0001FFEB3E acyltransferase 3, partial 2.21801539979 0.5 -1.71801539979 +UniRef50_UPI00037F5E94 hypothetical protein 0.550610288329 0.5 -0.0506102883295 +UniRef50_P0ADP7 4.9559272562 0.500000000001 -4.4559272562 +UniRef50_G9E7X5 Protein fecR 1.08279080954 0.5 -0.582790809539 +UniRef50_A6LS23 Helix turn helix domain protein 0.0607973640376 0.499999999999 0.439202635963 +UniRef50_UPI0003A885D5 translation initiation factor IF 2 0.017333390552 0.5 0.482666609448 +UniRef50_E6C679 0.0547811851104 0.5 0.44521881489 +UniRef50_W4TI22 Lysophospholipase L2 0.0558388105806 0.5 0.444161189419 +UniRef50_E7T8A0 Mg chelatase subunit ChlD 1.5917568262 0.5 -1.0917568262 +UniRef50_Q1IVF1 Queuine tRNA ribosyltransferase 0.0691722933313 0.5 0.430827706669 +UniRef50_P23910 Protein AraJ 0.860802921021 0.5 -0.360802921021 +UniRef50_A6LPC4 ATP dependent helicase nuclease subunit A 0.182045112361 0.5 0.317954887639 +UniRef50_UPI000379410F hypothetical protein 8.96113633205 0.500000000005 -8.46113633205 +UniRef50_N2DXX0 Dihydrouridine synthase family protein 0.361918731522 0.5 0.138081268478 +UniRef50_M9RF98 Peptidyl prolyl cis trans isomerase 3.22331185968 0.500000000001 -2.72331185968 +UniRef50_Q9L6V4 Transposase 0.153492769436 0.5 0.346507230564 +UniRef50_Q1IQY5 Bifunctional protein GlmU 0.387335014898 0.5 0.112664985102 +UniRef50_A0A011NHH5 Periplasmic [NiFeSe] hydrogenase small subunit 4.97100575305 0.5 -4.47100575305 +UniRef50_D4HEK1 Bacterial type II secretion system domain protein F 0.0866089794481 0.5 0.413391020552 +UniRef50_V9VZ19 Membrane protein 50.0615759055 0.500000000008 -49.5615759055 +UniRef50_Q9I3X4 2.8769085441 0.499999999998 -2.3769085441 +UniRef50_A5IV60 Molybdate ABC transporter, inner membrane subunit 2.92228837056 0.499999999997 -2.42228837056 +UniRef50_UPI0004625430 PREDICTED 0.14372768957 0.5 0.35627231043 +UniRef50_UPI000376710A hypothetical protein, partial 0.450542472252 0.5 0.0494575277484 +UniRef50_Q6F6X6 0.0239099582759 0.5 0.476090041724 +UniRef50_B7V4B9 2.45196295841 0.499999999999 -1.95196295841 +UniRef50_O31766 0.0241322358406 0.5 0.475867764159 +UniRef50_W0Z2F6 Putative major facilitator superfamily transporter 0.357107959696 0.5 0.142892040304 +UniRef50_P0A6G4 Nicotinamide nucleotide amidohydrolase PncC 2.12638485448 0.500000000001 -1.62638485448 +UniRef50_A6LT79 Periplasmic binding protein LacI transcriptional regulator 0.143541421512 0.5 0.356458578488 +UniRef50_UPI00046F3756 50S ribosomal protein L3 0.162071013951 0.5 0.337928986049 +UniRef50_M2GKY0 1.62990026776 0.5 -1.12990026776 +UniRef50_UPI0003B5DDE6 ATPase 1.2433552297 0.5 -0.743355229701 +UniRef50_Q8F4Q4 Inosine 5 monophosphate dehydrogenase 2.96061004039 0.500000000001 -2.46061004039 +UniRef50_J9YME8 ABC superfamily ATP binding cassette transporter, membrane protein 0.814711012098 0.5 -0.314711012098 +UniRef50_UPI00039B3F34 aldehyde activating protein 0.304893194013 0.5 0.195106805987 +UniRef50_A0A017SYI4 1.19505406232 0.5 -0.695054062315 +UniRef50_G1WMK0 0.0777639515614 0.5 0.422236048439 +UniRef50_Q5LMW0 Ribonuclease HII 0.222072991214 0.5 0.277927008786 +UniRef50_P39814 DNA topoisomerase 1 2.22928161617 0.5 -1.72928161617 +UniRef50_A0A023KT22 DNA polymerase II 2.43383540433 0.5 -1.93383540433 +UniRef50_A0A014PEH8 0.213040205228 0.5 0.286959794772 +UniRef50_B9KJL3 3.65295588127 0.5 -3.15295588127 +UniRef50_UPI000350C992 PREDICTED 3.31609325134 0.5 -2.81609325134 +UniRef50_A8HYP6 2.16392959627 0.5 -1.66392959627 +UniRef50_UPI00042B224B Tubulin FtsZ family protein, putative isoform 4 0.120294068298 0.499999999999 0.379705931703 +UniRef50_I2C5T3 Ribonucleoside diphosphate reductase 1.17436377253 0.5 -0.674363772528 +UniRef50_G9EUU6 0.00982510573305 0.5 0.490174894267 +UniRef50_I4CQD2 0.347023906473 0.5 0.152976093527 +UniRef50_Q5HR38 Cys tRNA Cys tRNA(Cys) deacylase 3.44071880189 0.499999999998 -2.94071880189 +UniRef50_Q9HVZ2 1.97302821368 0.5 -1.47302821368 +UniRef50_UPI000363B12A NADH dehydrogenase, partial 12.110041258 0.500000000001 -11.610041258 +UniRef50_Z5X6G1 0.358156421453 0.5 0.141843578547 +UniRef50_P0AG42 Riboflavin biosynthesis protein RibF 2.32754505735 0.499999999999 -1.82754505735 +UniRef50_C6S7Y9 0.022081803992 0.5 0.477918196008 +UniRef50_P76422 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 4.56694210559 0.500000000001 -4.06694210559 +UniRef50_B8H627 Ribonuclease 3 0.705321522538 0.5 -0.205321522538 +UniRef50_P49376 ATP synthase subunit beta, mitochondrial 0.0121503712135 0.5 0.487849628786 +UniRef50_W0YWB6 Protein PelB 0.401618271439 0.5 0.0983817285611 +UniRef50_UPI00036635D2 hypothetical protein 0.539905233589 0.5 -0.0399052335888 +UniRef50_Q2T4E0 DNA binding response regulator 0.0133257797768 0.5 0.486674220223 +UniRef50_UPI0003ACD19D PREDICTED 0.753352131348 0.5 -0.253352131348 +UniRef50_UPI0003711349 hypothetical protein 1.50023087244 0.5 -1.00023087244 +UniRef50_UPI000378A2B6 hypothetical protein 0.494178154445 0.5 0.0058218455551 +UniRef50_UPI0004253BDC phosphopentomutase 0.277571923954 0.5 0.222428076046 +UniRef50_UPI00034DE29F hypothetical protein 0.145709853764 0.5 0.354290146236 +UniRef50_Q8CU58 0.505134839786 0.5 -0.00513483978575 +UniRef50_Q8CU59 1.31062700785 0.5 -0.810627007851 +UniRef50_X8BCV4 FAD binding domain protein 0.0121441345378 0.5 0.487855865462 +UniRef50_UPI0004769DD4 hypothetical protein, partial 0.630560530372 0.5 -0.130560530372 +UniRef50_P94132 Probable electron transfer flavoprotein ubiquinone oxidoreductase 0.000737866957802 0.5 0.499262133042 +UniRef50_Q8CU51 2.74339838563 0.5 -2.24339838563 +UniRef50_UPI0003074F79 hypothetical protein 1.39558857475 0.5 -0.895588574749 +UniRef50_A6LT48 0.40249962434 0.5 0.0975003756598 +UniRef50_O67610 3 oxoacyl [acyl carrier protein] reductase FabG 0.172981561439 0.5 0.327018438561 +UniRef50_A6LT46 0.327896663667 0.5 0.172103336333 +UniRef50_B4REX9 UPF0301 protein PHZ_c0553 0.265542835997 0.5 0.234457164003 +UniRef50_Q0IS03 Os11g0579700 protein 0.0144506095869 0.500000000001 0.485549390413 +UniRef50_A6LT42 0.163358136661 0.5 0.336641863339 +UniRef50_Q2NGX9 Phenylalanine tRNA ligase beta subunit 8.33836449731 0.499999999998 -7.83836449731 +UniRef50_UPI00016C0C74 DNA mismatch repair protein MutS 0.0323207843178 0.5 0.467679215682 +UniRef50_UPI0004723041 hypothetical protein 3.77636681905 0.500000000001 -3.27636681905 +UniRef50_F2JLI9 MATE efflux family protein 0.525733563641 0.5 -0.0257335636409 +UniRef50_UPI000464D0AC hypothetical protein 0.631081271208 0.5 -0.131081271208 +UniRef50_UPI0003B58353 preprotein translocase subunit SecB 0.284538427161 0.5 0.215461572839 +UniRef50_Q8FT41 Carbamoyl phosphate synthase small chain 0.305960577112 0.5 0.194039422888 +UniRef50_F5XZV5 Candidate signal transduction protein , STAS domain protein 0.0022531393441 0.5 0.497746860656 +UniRef50_A6VBI2 Membrane protein, putative 0.594009757097 0.5 -0.0940097570969 +UniRef50_UPI00030DD393 hypothetical protein 0.0823862164731 0.5 0.417613783527 +UniRef50_P0AFT0 Murein DD endopeptidase MepM 3.29808058998 0.500000000002 -2.79808058998 +UniRef50_Q2FK43 Pyruvate formate lyase activating enzyme 2.92080483984 0.499999999999 -2.42080483983 +UniRef50_I7L6K8 Rhodanese like domain protein 0.363777939077 0.5 0.136222060923 +UniRef50_O33367 DNA gyrase subunit B 0.613372010965 0.5 -0.113372010965 +UniRef50_J9ZQJ4 0.255789958131 0.5 0.244210041869 +UniRef50_B2HGA4 Isopentenyl diphosphate delta isomerase 0.012160673022 0.5 0.487839326978 +UniRef50_UPI0002626EA5 hypothetical protein 0.112550724641 0.5 0.387449275359 +UniRef50_A4EG23 1.23607223632 0.5 -0.736072236322 +UniRef50_O33818 4 hydroxybenzoyl CoA reductase subunit gamma 1.35225093972 0.5 -0.852250939723 +UniRef50_F0QNA7 0.051333937632 0.5 0.448666062368 +UniRef50_UPI000467E119 hypothetical protein 0.283428360669 0.5 0.216571639331 +UniRef50_W1K4B0 ABC transporter glycerol 3 phosphate binding protein 1.33018977616 0.5 -0.830189776156 +UniRef50_Q65GR3 Histidine tRNA ligase 4.88213121781 0.5 -4.38213121781 +UniRef50_UPI00047342DF hypothetical protein, partial 0.513690869365 0.5 -0.0136908693646 +UniRef50_F0MV13 CoA binding domain acetyltransferase, GNAT family 0.0114116854638 0.5 0.488588314536 +UniRef50_Q3JS21 EutG protein 0.0242143431029 0.5 0.475785656897 +UniRef50_A9IBR9 0.511701358856 0.5 -0.0117013588561 +UniRef50_P0ABI1 ATP dependent Clp protease ATP binding subunit ClpA 0.136814264502 0.5 0.363185735498 +UniRef50_UPI000347EC3A cell division protein FtsW 0.772232060952 0.5 -0.272232060952 +UniRef50_I0C1D1 3.12086339571 0.500000000003 -2.62086339571 +UniRef50_Q5F4X8 Lipid A export ATP binding permease protein MsbA 0.00768946440631 0.5 0.492310535593 +UniRef50_V5VD21 0.0326521526343 0.5 0.467347847366 +UniRef50_A6LW40 NUDIX hydrolase 0.0917368944464 0.5 0.408263105554 +UniRef50_A0A011R4M2 N formylmethionyl tRNA deformylase 0.00479600636924 0.500000000001 0.49520399363 +UniRef50_Q31N84 3 oxoacyl [acyl carrier protein] synthase 3 0.386709571136 0.5 0.113290428864 +UniRef50_F9YZY2 0.0105596494964 0.5 0.489440350504 +UniRef50_B6B233 PucC protein 1.93838090192 0.500000000001 -1.43838090192 +UniRef50_A6LYW0 Lysine exporter protein 0.608255449513 0.5 -0.108255449513 +UniRef50_P77733 Probable formate transporter 2 6.26164465056 0.5 -5.76164465056 +UniRef50_K0C8T6 Oxidoreductase, short chain dehydrogenase reductase family 0.0224167965586 0.5 0.477583203441 +UniRef50_UPI0003B430E0 preprotein translocase subunit SecA 0.230118101623 0.499999999999 0.269881898377 +UniRef50_Q9RR67 Thymidylate synthase 0.00245475236184 0.5 0.497545247638 +UniRef50_X0TUW0 Marine sediment metagenome DNA, contig 0.808397334633 0.5 -0.308397334633 +UniRef50_A6LRF1 Glycosyl hydrolase, BNR repeat containing protein 0.565516502303 0.5 -0.0655165023034 +UniRef50_Q8XU08 1.82046328902 0.499999999998 -1.32046328902 +UniRef50_A5UJG2 Coenzyme F420 reducing hydrogenase, beta subunit 0.607354125871 0.5 -0.107354125871 +UniRef50_A3CX71 Glycerol 1 phosphate dehydrogenase [NAD+] 2.62582499623 0.499999999998 -2.12582499622 +UniRef50_Q5HM56 Heme degrading monooxygenase 0.619272149294 0.5 -0.119272149294 +UniRef50_D9UMJ7 Secreted protein 1.76324619311 0.5 -1.26324619311 +UniRef50_UPI0001FFDC99 DEAD DEAH box helicase domain protein, partial 0.104471969753 0.500000000001 0.395528030246 +UniRef50_A6LWX4 Efflux transporter, RND family, MFP subunit 0.60347366559 0.5 -0.10347366559 +UniRef50_Z6ADI2 0.497057918696 0.5 0.00294208130437 +UniRef50_A9M186 Imidazoleglycerol phosphate dehydratase 0.0392937950755 0.5 0.460706204925 +UniRef50_Q31TM6 0.234217973807 0.5 0.265782026193 +UniRef50_UPI00035E404B ABC transporter 0.149350966494 0.5 0.350649033507 +UniRef50_G1Y0V7 1.57173896129 0.499999999998 -1.07173896128 +UniRef50_G8R9K4 2.38607608465 0.5 -1.88607608465 +UniRef50_M7MVN0 5 formyltetrahydrofolate cyclo ligase 0.229580946223 0.5 0.270419053777 +UniRef50_A1KSK9 Sec independent protein translocase protein TatB 0.0538185075179 0.5 0.446181492482 +UniRef50_L1KLU3 1.05870966621 0.499999999999 -0.558709666204 +UniRef50_UPI00042C20EE PREDICTED 0.54385508752 0.5 -0.04385508752 +UniRef50_A5UP53 TPR repeat protein 0.645397698937 0.5 -0.145397698937 +UniRef50_UPI000474AE63 MerR family transcriptional regulator 0.602805079665 0.5 -0.102805079665 +UniRef50_A6QHZ9 Lantibiotic ABC transporter protein 0.687433110946 0.5 -0.187433110946 +UniRef50_Q3IV58 Site specific recombinase and resolvase superfamily 2.69952041985 0.5 -2.19952041985 +UniRef50_S1FXN2 0.0759380947797 0.5 0.42406190522 +UniRef50_Q2CBI1 ISxac3 transposase 0.505006024854 0.5 -0.00500602485446 +UniRef50_UPI000311BF3E hypothetical protein 0.429108981345 0.5 0.0708910186547 +UniRef50_G7ZQ52 Ammonium transporter family protein 2.22553898773 0.5 -1.72553898773 +UniRef50_A5IR30 3.37316997958 0.5 -2.87316997958 +UniRef50_UPI000381D79B hypothetical protein 0.366261708349 0.5 0.133738291651 +UniRef50_F0M765 GAF domain containing protein 0.546906343867 0.5 -0.046906343867 +UniRef50_Q8XLH3 3 oxoacyl [acyl carrier protein] synthase 3 2.38508254121 0.499999999998 -1.88508254121 +UniRef50_UPI0001FFE008 error prone DNA polymerase 0.131958289958 0.5 0.368041710042 +UniRef50_Q9RYV3 Oxidoreductase, putative 0.00385483671791 0.5 0.496145163282 +UniRef50_A7INL3 Integration host factor subunit alpha 0.256582005672 0.5 0.243417994328 +UniRef50_A5IR39 0.340763361411 0.5 0.159236638589 +UniRef50_B9KKS1 Non homologous end joining protein Ku 1.08788288586 0.5 -0.587882885857 +UniRef50_D8J4V6 0.139981474465 0.5 0.360018525535 +UniRef50_Q8H8U0 Cardiolipin synthase, mitochondrial 0.123249954859 0.5 0.376750045141 +UniRef50_H0ABG8 0.935034409408 0.5 -0.435034409408 +UniRef50_W7QLC2 0.484852637645 0.5 0.015147362355 +UniRef50_B9R471 Transporter, major facilitator family 0.97572673088 0.5 -0.47572673088 +UniRef50_L3RWN4 Transcriptional regulator 0.639628475423 0.5 -0.139628475423 +UniRef50_P42912 Putative galactosamine 6 phosphate isomerase 0.631532146569 0.5 -0.131532146569 +UniRef50_Q97J66 Protein CA_C1420 0.0580104279397 0.5 0.441989572061 +UniRef50_UPI0001BF5ACC hypothetical protein SMAC_10820, partial 5.44131989739 0.5 -4.94131989739 +UniRef50_Z6NK79 ABC transporter, permease 4.27490283202 0.5 -3.77490283202 +UniRef50_R9PQX7 0.338117565557 0.5 0.161882434443 +UniRef50_Q9F7B2 Low molecular weight protein tyrosine phosphatase wzb 0.314759574728 0.5 0.185240425272 +UniRef50_I4W6D9 0.37247561387 0.5 0.12752438613 +UniRef50_Q9X0C4 Putative UDP N acetylglucosamine 2 epimerase 0.0684199127749 0.5 0.431580087225 +UniRef50_B9E6S4 Exogenous DNA binding protein comGC homolog 1.00318899859 0.5 -0.50318899859 +UniRef50_UPI00037DFA06 hypothetical protein 0.502084253083 0.5 -0.00208425308258 +UniRef50_C9QWV1 Autotransporter family porin 1.10298893268 0.5 -0.602988932685 +UniRef50_G0DVD7 CBS domain protein 0.032987157487 0.5 0.467012842513 +UniRef50_F8J6S6 Dihydrodipicolinate synthase 0.687687655972 0.5 -0.187687655972 +UniRef50_UPI0003782A09 hypothetical protein 1.06076699645 0.5 -0.560766996452 +UniRef50_E0SUZ8 0.688097069502 0.5 -0.188097069502 +UniRef50_D8TJ66 0.225114383931 0.5 0.274885616069 +UniRef50_P00892 Acetolactate synthase isozyme 2 large subunit 3.2267138845 0.500000000001 -2.7267138845 +UniRef50_UPI0003B4985D lipase 0.0387858644305 0.5 0.46121413557 +UniRef50_F4CKZ8 PE PGRS family protein 0.579675166528 0.5 -0.0796751665284 +UniRef50_A4WYR6 Alcohol dehydrogenase, zinc binding domain protein 0.396218861367 0.5 0.103781138633 +UniRef50_I3TIJ2 Ornithine cyclodeaminase mu crystallin 2.83775863467 0.500000000001 -2.33775863467 +UniRef50_UPI00047B0B98 hypothetical protein 0.290778625328 0.5 0.209221374672 +UniRef50_K9BMT1 Alkyl hydroperoxide reductase subunit F domain protein 0.0517794512121 0.5 0.448220548788 +UniRef50_R6LGJ5 Methionine synthase vitamin B12 independent 0.304059248092 0.5 0.195940751908 +UniRef50_A1B479 NADH quinone oxidoreductase subunit N 2.61102989281 0.5 -2.11102989281 +UniRef50_UPI0003B7991F hypothetical protein 0.118253997876 0.5 0.381746002123 +UniRef50_M9XAR7 2 nitropropane dioxygenase 0.00422162734032 0.499999999999 0.495778372661 +UniRef50_UPI0003B68CBF isomerase 0.178434241762 0.5 0.321565758237 +UniRef50_V9WST0 Phage terminase like protein, large subunit 1.41957468782 0.5 -0.919574687824 +UniRef50_A6M1B5 0.502533705476 0.5 -0.00253370547581 +UniRef50_A6M1B4 0.274663091165 0.5 0.225336908835 +UniRef50_UPI000371C67C hypothetical protein 0.415598092319 0.5 0.0844019076811 +UniRef50_UPI000412F481 hypothetical protein 1.23331202683 0.5 -0.733312026832 +UniRef50_B2VDT9 0.125958866138 0.5 0.374041133862 +UniRef50_UPI0001C39674 dehydrogenase 0.268027626578 0.5 0.231972373422 +UniRef50_P57041 Major outer membrane protein P.IA 0.0937593910935 0.5 0.406240608906 +UniRef50_R9SN55 Phosphopantothenate cysteine ligase CoaB 2.08549545417 0.499999999999 -1.58549545417 +UniRef50_J9UQD4 0.568168000128 0.5 -0.0681680001283 +UniRef50_UPI000467BC4C type I secretion protein 0.168831181946 0.5 0.331168818054 +UniRef50_Q5LSU1 Lipid A disaccharide synthase 0.162201065327 0.5 0.337798934673 +UniRef50_Q9RRX9 Probable L asparaginase 0.0019717600538 0.5 0.498028239946 +UniRef50_Q0ARD7 Pyridoxine pyridoxamine 5 phosphate oxidase 1.18603240143 0.500000000001 -0.686032401432 +UniRef50_W0YV34 0.0799100896884 0.5 0.420089910311 +UniRef50_Q2GCI6 Uridylate kinase 0.366057024749 0.5 0.133942975251 +UniRef50_B9KJE9 Flagellar hook associated 2 domain protein 1.82581541782 0.5 -1.32581541782 +UniRef50_S5CLC3 0.0234749995471 0.5 0.476525000453 +UniRef50_UPI000381DE4F hypothetical protein 0.100472649577 0.5 0.399527350423 +UniRef50_Q9RSN5 Ferripyochelin binding protein 0.00280419884004 0.5 0.49719580116 +UniRef50_Q1YEW0 0.171507328392 0.5 0.328492671608 +UniRef50_A8J5U5 Predicted protein 0.387387294264 0.5 0.112612705736 +UniRef50_U5MSZ1 0.124680906983 0.5 0.375319093017 +UniRef50_UPI000248490E Resolvase 2.16448974991 0.499999999998 -1.66448974991 +UniRef50_E0Y0D2 Nuclease subunit of the excinuclease complex 2.33796537339 0.500000000001 -1.83796537339 +UniRef50_Q2NF24 Predicted thioesterase 0.257424981749 0.5 0.242575018251 +UniRef50_B1JX98 Serine tRNA ligase 0.170521214083 0.5 0.329478785917 +UniRef50_UPI00047A8CC8 hypothetical protein 3.8841047378 0.500000000002 -3.3841047378 +UniRef50_A6UY58 0.137602148888 0.5 0.362397851112 +UniRef50_G0JNN6 Integral membrane protein MviN 0.588319241082 0.5 -0.088319241082 +UniRef50_Q8ZH57 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 1.34715730587 0.499999999999 -0.847157305868 +UniRef50_I0GCY5 1.39643343791 0.5 -0.896433437909 +UniRef50_W1MH71 0.005793451625 0.5 0.494206548375 +UniRef50_UPI00035C5743 hypothetical protein 0.118122426036 0.5 0.381877573964 +UniRef50_A3UG89 0.25570271238 0.5 0.24429728762 +UniRef50_B6J655 Methionyl tRNA formyltransferase 0.0577585778045 0.5 0.442241422196 +UniRef50_F5XDX0 Diaminopimelate epimerase 0.010299826379 0.5 0.489700173621 +UniRef50_UPI0003B3BC3C acetoacetate metabolism regulatory protein AtoC 0.265682976231 0.5 0.234317023769 +UniRef50_UPI0002E4BD4A hypothetical protein 0.0224898778418 0.5 0.477510122158 +UniRef50_A5UJF5 4.02848652991 0.499999999999 -3.52848652991 +UniRef50_A5UJF0 2.90109102983 0.5 -2.40109102983 +UniRef50_D2P269 0.0173702545065 0.5 0.482629745493 +UniRef50_W4UBC8 0.0373482639489 0.5 0.462651736051 +UniRef50_A5IPS9 Phage envelope protein like protein 0.932405170374 0.5 -0.432405170374 +UniRef50_UPI000234E1DF PREDICTED 0.932165505634 0.5 -0.432165505634 +UniRef50_N5MF41 1.36789266366 0.5 -0.867892663662 +UniRef50_Q6GIN8 Protein translocase subunit SecA 1 1.97158142083 0.5 -1.47158142083 +UniRef50_UPI00037BBD41 hypothetical protein 0.845615244114 0.5 -0.345615244114 +UniRef50_P56690 Isoleucine tRNA ligase 0.242782902499 0.5 0.257217097501 +UniRef50_B7I7J4 Gp12 1.91607313379 0.5 -1.41607313379 +UniRef50_A4XRT9 0.200019330736 0.5 0.299980669264 +UniRef50_Q5KYA3 Glutamate 5 kinase 0.173009668488 0.5 0.326990331512 +UniRef50_D2ZQE3 Topoisomerase DNA binding C4 zinc finger domain protein 1.48416388203 0.5 -0.984163882034 +UniRef50_UPI00047AE2E4 hypothetical protein 0.322093898194 0.5 0.177906101806 +UniRef50_Q9RSF1 0.00624287654828 0.5 0.493757123452 +UniRef50_R7E1V4 1.60037888107 0.5 -1.10037888107 +UniRef50_Q650K4 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.00864040312725 0.5 0.491359596873 +UniRef50_O23404 Pyruvate, phosphate dikinase 1, chloroplastic 0.17584249438 0.5 0.32415750562 +UniRef50_UPI000262D9D9 ABC transporter ATP binding protein, partial 4.79071723504 0.5 -4.29071723504 +UniRef50_A6LZA1 Transcriptional regulator like protein 0.0542687167548 0.499999999999 0.445731283246 +UniRef50_C6AUH7 Acriflavin resistance protein 2.46597671159 0.5 -1.96597671159 +UniRef50_S9R213 TRAP type mannitol chloroaromatic compound transport system, large permease component 0.202122051431 0.5 0.297877948569 +UniRef50_A8IC01 Aminotransferase 3.11019386064 0.5 -2.61019386064 +UniRef50_R7II06 Oligopeptide transport ATP binding protein OppD 0.0214830691359 0.5 0.478516930864 +UniRef50_C5N1T5 0.83379373422 0.5 -0.33379373422 +UniRef50_C5N1T1 3.81551022302 0.5 -3.31551022302 +UniRef50_Q6A6S6 ABC transporter associated permease 0.0122757339588 0.5 0.487724266041 +UniRef50_A0A023S256 LysR family transcriptional regulator 0.0106074654342 0.499999999999 0.489392534566 +UniRef50_Q6FFA8 Uroporphyrinogen III synthase (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing]) 0.0157388732315 0.5 0.484261126768 +UniRef50_Q9R9D5 Lipopolysaccharide core heptosyltransferase RfaQ 4.87733164971 0.500000000002 -4.37733164971 +UniRef50_R0DKH2 Binding protein dependent transport systems inner membrane component 0.186331777632 0.5 0.313668222368 +UniRef50_UPI00036FA71C hypothetical protein 0.319560307808 0.5 0.180439692192 +UniRef50_UPI00037E9002 hypothetical protein 34.8448193754 0.499999999984 -34.3448193754 +UniRef50_A0A023B3E8 1.93445934288 0.499999999998 -1.43445934288 +UniRef50_I0C5P0 CobB CobQ like glutamine amidotransferase domain protein 2.43240124847 0.499999999998 -1.93240124847 +UniRef50_A8L8V5 Cobyrinic acid ac diamide synthase 0.312262996509 0.5 0.187737003491 +UniRef50_P32712 Formate dependent nitrite reductase complex subunit NrfG 6.08972011081 0.499999999997 -5.58972011081 +UniRef50_UPI0003B66B13 hypothetical protein 1.04490215006 0.5 -0.54490215006 +UniRef50_UPI0004672483 hypothetical protein 0.334887297743 0.5 0.165112702257 +UniRef50_Q5F629 NADH quinone oxidoreductase subunit N 0.0367909676405 0.5 0.463209032359 +UniRef50_W4UKK8 DNA binding protein 0.0173822320356 0.5 0.482617767964 +UniRef50_Q87LZ7 Phosphoglucosamine mutase 0.0257549105478 0.5 0.474245089452 +UniRef50_Q8XMU3 Diaminopimelate decarboxylase 0.0690428935919 0.5 0.430957106409 +UniRef50_Q58197 2.15942814924 0.5 -1.65942814924 +UniRef50_UPI00037BD840 hypothetical protein 1.34529735945 0.5 -0.845297359454 +UniRef50_Q1IS93 DNA directed RNA polymerase subunit alpha 1.455556894 0.5 -0.955556893997 +UniRef50_UPI00026CC0A8 cell wall hydrolase 0.686723057225 0.5 -0.186723057225 +UniRef50_UPI000377CCD2 hypothetical protein 0.161849761346 0.5 0.338150238654 +UniRef50_UPI000380B7CD hypothetical protein 0.104610039135 0.5 0.395389960865 +UniRef50_UPI0003450375 hypothetical protein 0.81038755827 0.5 -0.31038755827 +UniRef50_B9KW49 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 6.34326946452 0.500000000004 -5.84326946453 +UniRef50_Q1G991 Orotidine 5 phosphate decarboxylase 0.444437743242 0.5 0.0555622567576 +UniRef50_A0LDR9 NADH quinone oxidoreductase subunit I 1.21021807566 0.5 -0.710218075658 +UniRef50_F1BCI2 0.343483712966 0.5 0.156516287034 +UniRef50_Q9RXP2 0.00134068889102 0.5 0.498659311109 +UniRef50_Q9RXP3 0.00630754485325 0.5 0.493692455147 +UniRef50_M5JML7 Inner membrane translocator 0.0690730938978 0.5 0.430926906102 +UniRef50_W9V4Y7 0.564610091269 0.5 -0.0646100912692 +UniRef50_Y9M1E8 Nitrate reductase, alpha subunit 2.86229625384 0.500000000001 -2.36229625384 +UniRef50_A3K427 Possible phenol degradation enzyme 2.19706210071 0.5 -1.69706210071 +UniRef50_UPI00017453E0 probable helicase 0.00439519179365 0.5 0.495604808206 +UniRef50_UPI00046FF946 hypothetical protein 0.883542343916 0.5 -0.383542343916 +UniRef50_B2JWI7 Major facilitator superfamily MFS_1 0.00968279245753 0.5 0.490317207542 +UniRef50_E3NTU6 0.520519315534 0.5 -0.0205193155341 +UniRef50_UPI00046C1753 PREDICTED 0.115461009132 0.5 0.384538990868 +UniRef50_G2AN26 4 alpha L fucosyltransferase family protein 1.31052863977 0.5 -0.810528639774 +UniRef50_P24169 Ornithine decarboxylase, inducible 2.54953974537 0.500000000002 -2.04953974537 +UniRef50_G4KST8 Aminopeptidase 0.88769784636 0.5 -0.38769784636 +UniRef50_Q21VQ3 Transposase, IS4 family 2.37403495807 0.5 -1.87403495807 +UniRef50_X4YVT9 Nitronate monooxygenase family protein 0.463789562676 0.5 0.0362104373244 +UniRef50_A5F974 Pantothenate synthetase 1.14835580598 0.5 -0.648355805975 +UniRef50_UPI0003C1ACBA PREDICTED 0.374577512815 0.5 0.125422487185 +UniRef50_B7UFR8 Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD 2.03543011295 0.500000000001 -1.53543011295 +UniRef50_UPI0002555659 inner membrane translocator 0.417270447179 0.5 0.0827295528207 +UniRef50_P76017 3.91139177823 0.499999999996 -3.41139177823 +UniRef50_UPI000380A70F hypothetical protein 1.45328072037 0.500000000001 -0.953280720375 +UniRef50_UPI00035FC337 general secretion pathway protein I, partial 3.67014391331 0.499999999999 -3.17014391331 +UniRef50_P0DD78 DNA repair protein RadA homolog 0.0159485740975 0.5 0.484051425902 +UniRef50_P9WPR0 0.00540169908877 0.5 0.494598300911 +UniRef50_A7WYY2 Ribulokinase 2.78955968078 0.500000000001 -2.28955968078 +UniRef50_D3ZPT0 Protein RGD1566084 0.656104903365 0.5 -0.156104903365 +UniRef50_S1S766 2.03501949355 0.5 -1.53501949355 +UniRef50_Q5HFZ9 Glucose specific phosphotransferase enzyme IIA component 15.9772564028 0.499999999992 -15.4772564028 +UniRef50_G4L4Q8 Cation transporting ATPase 1.26717020069 0.5 -0.767170200691 +UniRef50_D5V8P7 23S ribosomal RNA G745 methyltransferase 0.0184017849344 0.5 0.481598215065 +UniRef50_F3U2V4 Heat shock protein Hsp20 0.559253965566 0.5 -0.059253965566 +UniRef50_I7EN44 Acetylornithine deacetylase ArgE 1.35116587808 0.5 -0.851165878079 +UniRef50_Q0A8Z1 Ribonuclease 3 0.212621774349 0.5 0.287378225651 +UniRef50_O59469 3 hydroxy 3 methylglutaryl coenzyme A reductase 1.51358827507 0.499999999999 -1.01358827507 +UniRef50_B1Y4X6 Mg2 transporter protein CorA family protein 0.891910429812 0.5 -0.391910429812 +UniRef50_J8V3X8 0.0883743884997 0.5 0.4116256115 +UniRef50_F2QCR4 ABC transporter, ATP binding permease protein 0.525004858234 0.5 -0.0250048582336 +UniRef50_UPI0003799B60 hypothetical protein 0.220662620738 0.5 0.279337379262 +UniRef50_D7T3T0 0.42739592793 0.5 0.0726040720704 +UniRef50_UPI00037A9531 hypothetical protein, partial 0.347219639934 0.5 0.152780360066 +UniRef50_Q5VJ09 2.23101414376 0.499999999999 -1.73101414376 +UniRef50_A4WGI4 Transcriptional regulator, MarR family 1.01479674096 0.5 -0.514796740962 +UniRef50_R9SJH6 Energy converting hydrogenase A subunit J EhaJ 5.07710778322 0.500000000001 -4.57710778322 +UniRef50_UPI0001BF5D71 hypothetical protein SMAC_11478, partial 4.07568218818 0.5 -3.57568218818 +UniRef50_G7UA16 UDP glucose 4 epimerase 0.0148426752803 0.5 0.485157324719 +UniRef50_UPI00046386D9 aldehyde activating protein 1.44887719726 0.500000000001 -0.948877197258 +UniRef50_A4ACP7 Arabinose efflux permease 2.0854559204 0.5 -1.5854559204 +UniRef50_T9BKP2 0.863694242521 0.5 -0.363694242521 +UniRef50_T1ZVL8 TetR AcrR family transcriptional regulator 0.668532098084 0.5 -0.168532098084 +UniRef50_B2I6G9 Beta hexosaminidase 0.205029941721 0.5 0.294970058279 +UniRef50_P19940 RNA polymerase sigma G factor 0.0400073617364 0.5 0.459992638264 +UniRef50_M9RAR4 1.46350948772 0.5 -0.963509487724 +UniRef50_D7CI61 Two component system response regulator 0.17942295049 0.5 0.32057704951 +UniRef50_P39336 2.54987171405 0.5 -2.04987171405 +UniRef50_UPI000373730F hypothetical protein 1.17584331209 0.5 -0.675843312088 +UniRef50_M9VFS5 0.0142135135159 0.5 0.485786486484 +UniRef50_UPI000479ED1E 50S ribosomal protein L4 0.166265759065 0.5 0.333734240935 +UniRef50_E6U991 Cys Met metabolism pyridoxal phosphate dependent protein 0.0670409910379 0.500000000001 0.432959008962 +UniRef50_E3QJF9 THO complex subunit 2 0.227255954557 0.5 0.272744045442 +UniRef50_Q2JDK2 Elongation factor 4 0.201939147124 0.5 0.298060852876 +UniRef50_UPI000262AF83 anhydrase 1.56775173776 0.500000000001 -1.06775173776 +UniRef50_P42403 Aryl phospho beta D glucosidase BglC 0.0894348022036 0.5 0.410565197796 +UniRef50_B0JXE8 N acetyl gamma glutamyl phosphate reductase 0.231228914871 0.5 0.268771085129 +UniRef50_B9DV71 ABC transporter ATP binding protein 2.33491249281 0.500000000001 -1.83491249281 +UniRef50_UPI000469FAB8 MULTISPECIES 0.482256809143 0.5 0.0177431908565 +UniRef50_UPI00036048A6 hypothetical protein 0.791715591545 0.5 -0.291715591545 +UniRef50_R4Q5Z5 Phosphoribosylglycinamide formyltransferase 0.887235146829 0.5 -0.387235146829 +UniRef50_V5PK16 Response regulator receiver protein ExsF 0.2443689684 0.5 0.2556310316 +UniRef50_UPI000361FBB1 hypothetical protein 0.0669839843808 0.5 0.433016015619 +UniRef50_UPI00047CDCB7 ABC transporter permease 2.07281324372 0.499999999999 -1.57281324372 +UniRef50_UPI00041FB107 symporter 0.191883652133 0.5 0.308116347867 +UniRef50_G7LZ27 Transcriptional regulator, TetR family 0.451795807236 0.5 0.0482041927636 +UniRef50_A5F649 Glutamate tRNA ligase 2.42544949759 0.499999999999 -1.92544949759 +UniRef50_B1MB87 Urease accessory protein UreG 0.271686782975 0.5 0.228313217025 +UniRef50_A5UN12 Predicted acyltransferase 1.14909633517 0.5 -0.649096335174 +UniRef50_Q6GFH6 Low molecular weight protein tyrosine phosphatase PtpA 32.1550770158 0.50000000001 -31.6550770158 +UniRef50_P20580 Anthranilate synthase component 1 1.12009086683 0.5 -0.620090866827 +UniRef50_G3TAD7 5.36815532811 0.500000000001 -4.86815532811 +UniRef50_K0DH79 Alpha beta hydrolase fold protein 0.571510311669 0.5 -0.071510311669 +UniRef50_B9EBX9 DNA damage repair protein homolog 1.14705350127 0.5 -0.647053501267 +UniRef50_U6IMY1 Growth factor receptor bound protein 0.819201875412 0.5 -0.319201875412 +UniRef50_D4KGU1 Transcriptional regulator, LacI family 0.444741819491 0.5 0.0552581805089 +UniRef50_Q2YXL5 ATP dependent protease subunit HslV 1.24477406843 0.5 -0.744774068427 +UniRef50_Q5LFB0 0.018134768858 0.5 0.481865231142 +UniRef50_UPI000248515B hypothetical protein 0.104119284503 0.5 0.395880715497 +UniRef50_E8RRB9 Fe S metabolism associated SufE 3.39087579058 0.499999999995 -2.89087579058 +UniRef50_Q54J34 Adenylosuccinate lyase 0.000374606622286 0.5 0.499625393378 +UniRef50_Q6GC63 Exotoxin 2.26874037759 0.499999999998 -1.76874037759 +UniRef50_Q8ZJR1 UPF0761 membrane protein YPO0028 y3801 YP_0029 3.98218478247 0.499999999998 -3.48218478247 +UniRef50_UPI000372EDA6 hypothetical protein 0.0554562282073 0.5 0.444543771792 +UniRef50_A5UN19 Formate dehydrogenase accessory protein FdhD, FdhD 6.01695196062 0.499999999999 -5.51695196062 +UniRef50_Q89ZL8 Alpha N acetylglucosaminidase 0.000445926146867 0.5 0.499554073853 +UniRef50_W8RNU6 PhbF 4.18847441735 0.500000000002 -3.68847441735 +UniRef50_P57099 Glycerate kinase 0.285839711451 0.5 0.214160288549 +UniRef50_X2HW61 Iron ABC transporter substrate binding protein 0.0046373080137 0.5 0.495362691986 +UniRef50_UPI00047EF55F amidohydrolase 0.294749048279 0.5 0.205250951721 +UniRef50_Q5HM69 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.94587122892 0.5 -0.44587122892 +UniRef50_UPI0002886FB4 histidine ammonia lyase 2.66644164153 0.5 -2.16644164153 +UniRef50_B0V4X0 Type IV pilus biogenesis protein 0.00812527694007 0.5 0.49187472306 +UniRef50_D3QJ04 DNA repair exonuclease family protein YhaO 3.46416141422 0.500000000001 -2.96416141422 +UniRef50_Q1GKI8 Peptidase M16 like protein 2.79813114966 0.500000000001 -2.29813114966 +UniRef50_A6LXP5 NADH quinone oxidoreductase subunit N 0.0304092034559 0.5 0.469590796544 +UniRef50_E0NA78 0.293901022935 0.5 0.206098977065 +UniRef50_E2XU95 Transcription factor jumonji 0.641406738498 0.5 -0.141406738498 +UniRef50_V9WFJ2 5.21716444653 0.500000000001 -4.71716444653 +UniRef50_UPI0003958BDE endonuclease 0.00118824639284 0.5 0.498811753607 +UniRef50_Q5GWI0 Phenol hydroxylase 3.38652585431 0.499999999999 -2.88652585431 +UniRef50_Q49YF5 OsmC like protein 1.77324589073 0.5 -1.27324589073 +UniRef50_A4T2T4 Peptide deformylase 0.0905632964769 0.5 0.409436703523 +UniRef50_U5NRQ9 0.121801282637 0.5 0.378198717363 +UniRef50_G2JHQ9 Histone acetyltransferase HPA2 0.06303638733 0.5 0.43696361267 +UniRef50_UPI00036803C3 hypothetical protein 0.0106656556213 0.5 0.489334344379 +UniRef50_Q3IV36 14.19513048 0.499999999979 -13.69513048 +UniRef50_R9SMB0 Dihydropteroate synthase related protein 0.625772086283 0.5 -0.125772086283 +UniRef50_Q8R7B8 N acetyl gamma glutamyl phosphate reductase 0.102860404439 0.5 0.397139595561 +UniRef50_UPI0003721DDA hypothetical protein 0.253102771995 0.5 0.246897228005 +UniRef50_P0AFD8 NADH quinone oxidoreductase subunit I 1.15920235404 0.5 -0.659202354038 +UniRef50_F8DZR5 Pyruvate 0.0111241423011 0.5 0.488875857699 +UniRef50_K7RJP7 Molybdenum cofactor synthesis domain containing protein 0.14526768211 0.5 0.35473231789 +UniRef50_R9ZCH5 NADH dehydrogenase 0.0578390431473 0.499999999999 0.442160956853 +UniRef50_B1KCA5 Transcriptional regulator, LysR family 0.052371439438 0.5 0.447628560562 +UniRef50_UPI00039CA1F9 hypothetical protein 0.0266795987723 0.5 0.473320401228 +UniRef50_C1CY21 0.0293413761469 0.5 0.470658623853 +UniRef50_A1AZ65 2.267052073 0.499999999996 -1.767052073 +UniRef50_H8FQH1 1.77103417414 0.5 -1.27103417414 +UniRef50_X2HD61 Phosphopantothenoylcysteine decarboxylase Phosphopantothenoylcysteine synthetase 0.0264291017037 0.5 0.473570898296 +UniRef50_UPI0003503787 PREDICTED 0.131005471154 0.5 0.368994528846 +UniRef50_L0A294 0.0137864181075 0.5 0.486213581892 +UniRef50_M4YWX8 Acetyl transferase GNAT family 0.448749555928 0.5 0.0512504440718 +UniRef50_UPI0003B796E5 hydrolase 0.942009815849 0.5 -0.442009815849 +UniRef50_R5QRF5 0.0861133656502 0.5 0.41388663435 +UniRef50_E1ZM28 Expressed protein 0.012639617372 0.5 0.487360382628 +UniRef50_F8KP37 Phospholipase A1 0.02335773141 0.5 0.47664226859 +UniRef50_E4CH69 0.0534542881646 0.5 0.446545711835 +UniRef50_B2TQB7 LicD family protein 0.348399536791 0.5 0.151600463209 +UniRef50_F2A4B5 10.5673882837 0.499999999998 -10.0673882837 +UniRef50_B9TM50 0.105941718196 0.5 0.394058281804 +UniRef50_T1IZI3 1.53191026873 0.5 -1.03191026873 +UniRef50_Q8Y489 Lipoyl [GcvH] 0.00306330696152 0.5 0.496936693038 +UniRef50_UPI00047DCDB5 hypothetical protein 0.380033221642 0.5 0.119966778358 +UniRef50_UPI0003668AD0 hypothetical protein 0.342777083992 0.5 0.157222916008 +UniRef50_R7KQ82 ABC type antimicrobial peptide transport system ATPase component 0.225419693639 0.5 0.274580306361 +UniRef50_UPI00035D87E2 hypothetical protein, partial 0.791933610504 0.5 -0.291933610504 +UniRef50_Q08WK0 1.37070262231 0.5 -0.870702622312 +UniRef50_C6VMG4 Bifunctional protein 0.755853387541 0.5 -0.255853387541 +UniRef50_UPI0003800150 hypothetical protein 0.0975702272935 0.500000000001 0.402429772706 +UniRef50_A5UJI5 Type I restriction modification system methylase, subunit S 2.74414742173 0.500000000002 -2.24414742173 +UniRef50_UPI0003C11576 PREDICTED 0.76994242299 0.5 -0.26994242299 +UniRef50_UPI00037C0DCF MULTISPECIES 0.32061544995 0.5 0.17938455005 +UniRef50_B5YFK5 Queuine tRNA ribosyltransferase 0.03712003942 0.5 0.46287996058 +UniRef50_Q5HKG6 Diacetyl reductase [ acetoin forming] 1.80812197941 0.5 -1.30812197941 +UniRef50_D4H9E3 0.00983749833148 0.5 0.490162501669 +UniRef50_Q5HKY5 4.10200792576 0.499999999998 -3.60200792576 +UniRef50_UPI00046A628C PAS sensor protein 1.56646917711 0.499999999998 -1.06646917711 +UniRef50_A5UP86 0.168954134033 0.5 0.331045865967 +UniRef50_B9KX55 AcrB AcrD AcrF family protein 2.78173768912 0.500000000001 -2.28173768912 +UniRef50_Q8XS05 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.25807897489 0.5 -0.758078974885 +UniRef50_E8QNX4 Type II adenine specific DNA methyltransferase 0.0219958483818 0.5 0.478004151618 +UniRef50_K7E6V3 0.866386399998 0.5 -0.366386399998 +UniRef50_X0UE20 Marine sediment metagenome DNA, contig 0.267198492005 0.5 0.232801507995 +UniRef50_Q1GLI8 Inner membrane protein 20.1916088679 0.500000000019 -19.6916088679 +UniRef50_E5QR95 0.704475826529 0.5 -0.204475826529 +UniRef50_O32037 tRNA threonylcarbamoyladenosine dehydratase 2.96695307296 0.5 -2.46695307296 +UniRef50_UPI0002375EA2 ABC transporter like protein 2.4458062561 0.499999999998 -1.94580625609 +UniRef50_Q9ZK41 Putative glucose galactose transporter 0.00862050861111 0.5 0.491379491389 +UniRef50_U6MX87 0.65381373849 0.5 -0.15381373849 +UniRef50_UPI000478606A phosphodiesterase 0.91426782465 0.5 -0.41426782465 +UniRef50_Q5HRH5 Hydrolase, haloacid dehalogenase like family 1.10672934181 0.5 -0.606729341812 +UniRef50_P19581 Capsule biosynthesis protein CapC 2.46826232071 0.499999999999 -1.96826232071 +UniRef50_B3E8Z1 Glucose 1 phosphate adenylyltransferase 0.0838359113181 0.5 0.416164088682 +UniRef50_H8H606 0.00706258287837 0.5 0.492937417121 +UniRef50_Q5HKS4 IS1272 like transposase, degenerate 0.854496770187 0.5 -0.354496770187 +UniRef50_Q72PA7 Adenylosuccinate synthetase 0.266988183584 0.5 0.233011816416 +UniRef50_UPI0003B5996F coproporphyrinogen III oxidase 1.69785102243 0.5 -1.19785102243 +UniRef50_A6U4R9 PTS system glucoside specific EIICBA component 2.9246294809 0.499999999998 -2.42462948089 +UniRef50_Q2FEB2 HTH type transcriptional regulator SarZ 5.34980208794 0.500000000001 -4.84980208794 +UniRef50_T2FXM3 Sulfatase 2.239124455 0.500000000001 -1.739124455 +UniRef50_UPI000372A769 hypothetical protein 0.471142815888 0.5 0.0288571841119 +UniRef50_F5ZKR4 Oxidoreductase 0.0985659114643 0.5 0.401434088536 +UniRef50_N9B926 0.00738929973301 0.5 0.492610700267 +UniRef50_UPI00047A6086 AMP binding protein 0.140857993548 0.5 0.359142006452 +UniRef50_A7WXZ6 Putative N acetylmannosamine 6 phosphate 2 epimerase 1.15997342429 0.5 -0.659973424287 +UniRef50_UPI00046EFEDF ABC transporter substrate binding protein 0.0727981499992 0.5 0.427201850001 +UniRef50_C1N027 Predicted protein 0.226149807717 0.5 0.273850192283 +UniRef50_F0XWK7 Expressed protein 0.0643732584728 0.5 0.435626741527 +UniRef50_UPI000455FDEB hypothetical protein CONPUDRAFT_131066 0.339769409694 0.5 0.160230590306 +UniRef50_L8MS48 0.679290789413 0.5 -0.179290789413 +UniRef50_A9GPH2 Serine hydroxymethyltransferase 0.475507370481 0.5 0.0244926295187 +UniRef50_C3A4D2 Permease, probably tetracycline resistance protein 0.165143629069 0.5 0.33485637093 +UniRef50_U4QA39 Xanthine dehydrogenase, iron sulfur binding subunit 1.82787491926 0.5 -1.32787491926 +UniRef50_B1LL17 D galactonate dehydratase 2 1.26127916036 0.500000000001 -0.761279160363 +UniRef50_Q6GIA3 3 oxoacyl [acyl carrier protein] synthase 2 1.00178401048 0.5 -0.501784010481 +UniRef50_Q9Z913 Putative GMP synthase [glutamine hydrolyzing] 0.308985109809 0.5 0.191014890191 +UniRef50_UPI00035C8380 hypothetical protein 1.93245004289 0.499999999997 -1.43245004289 +UniRef50_A5UMB3 0.521832898976 0.5 -0.0218328989763 +UniRef50_UPI000370ED97 hypothetical protein, partial 0.315186536753 0.5 0.184813463247 +UniRef50_P27243 O antigen ligase 1.35685272385 0.5 -0.856852723848 +UniRef50_A0A014MKE4 0.0177674180298 0.5 0.48223258197 +UniRef50_UPI000350731C PREDICTED 0.319560307806 0.5 0.180439692194 +UniRef50_M4WZV5 Dicarboxylate transporter 0.462432508917 0.5 0.0375674910833 +UniRef50_K1X7T9 0.774218550392 0.5 -0.274218550392 +UniRef50_A5UM90 Adhesin like protein 5.87698651379 0.499999999999 -5.37698651379 +UniRef50_UPI00037FBFF6 hypothetical protein 0.00398628430608 0.5 0.496013715694 +UniRef50_L7WZN3 1.42378032525 0.5 -0.923780325245 +UniRef50_B1N6N2 Putative hemolysin activator related protein 0.0492809320014 0.5 0.450719067999 +UniRef50_Q2KWY0 Ribonuclease 3 0.0670455719102 0.5 0.43295442809 +UniRef50_A5IT97 Diacylglycerol kinase 1.18883957726 0.5 -0.688839577255 +UniRef50_K6ZP91 1.11725162182 0.5 -0.61725162182 +UniRef50_UPI00037C95EF hypothetical protein, partial 4.8612460428 0.500000000003 -4.3612460428 +UniRef50_P77228 Putative inner membrane metabolite transport protein YdfJ 1.67739937343 0.499999999999 -1.17739937343 +UniRef50_UPI00042356A9 exodeoxyribonuclease III 1.71674819158 0.5 -1.21674819158 +UniRef50_B5E2W4 Acetate kinase 0.43218243777 0.5 0.0678175622296 +UniRef50_R4YDZ3 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 1.58744884003 0.5 -1.08744884003 +UniRef50_B9DND6 Pyrrolidone carboxylate peptidase 0.283278321381 0.5 0.216721678619 +UniRef50_UPI0004754876 shikimate kinase 0.63644033477 0.5 -0.13644033477 +UniRef50_UPI000252B25E PREDICTED 0.45887377165 0.5 0.0411262283502 +UniRef50_I3UA32 Transketolase 1.97813250444 0.5 -1.47813250444 +UniRef50_A0A024J8E7 Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit 0.257416388615 0.5 0.242583611385 +UniRef50_G4KZ65 ATP dependent zinc metalloprotease FtsH 0.0766139472919 0.5 0.423386052708 +UniRef50_UPI00046FC736 hypothetical protein 0.719982808239 0.5 -0.219982808239 +UniRef50_Q7W2B7 Shikimate kinase 0.531844211756 0.5 -0.0318442117558 +UniRef50_R9SIK3 2 5 RNA ligase LigT 2.26738943443 0.500000000001 -1.76738943444 +UniRef50_P33924 4.04879537612 0.500000000002 -3.54879537612 +UniRef50_UPI00047E33F6 ABC transporter ATP binding protein 0.159262495871 0.5 0.340737504129 +UniRef50_UPI0004649A94 hypothetical protein 5.21793066404 0.499999999999 -4.71793066404 +UniRef50_UPI000471C14A tryptophan synthase subunit alpha, partial 0.249474316231 0.5 0.250525683769 +UniRef50_UPI000225DE65 nitrogen regulatory IIA 0.201698338031 0.5 0.298301661969 +UniRef50_UPI0002558CA8 membrane protein 0.209409387093 0.5 0.290590612907 +UniRef50_Q4K9S7 NADH quinone oxidoreductase subunit K 0.00607921405252 0.5 0.493920785948 +UniRef50_A4XGW8 0.656065037039 0.5 -0.156065037039 +UniRef50_B4RKU4 Drug resistance translocase family protein 0.0223300691533 0.5 0.477669930846 +UniRef50_G3GQA9 0.0799028674073 0.5 0.420097132593 +UniRef50_Q9JPD1 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 0.205042723037 0.5 0.294957276963 +UniRef50_Q9LV91 4 alpha glucanotransferase DPE1, chloroplastic amyloplastic 0.00886644608896 0.5 0.491133553911 +UniRef50_UPI0002491571 tRNA delta isopentenylpyrophosphate transferase 1.33123855481 0.499999999999 -0.83123855481 +UniRef50_Q6BSU5 Sulfate adenylyltransferase 0.819101615207 0.5 -0.319101615207 +UniRef50_I3TNE9 1.74666118447 0.5 -1.24666118447 +UniRef50_UPI00036C6220 MULTISPECIES 0.140886892361 0.5 0.359113107639 +UniRef50_UPI00046D83DE hypothetical protein 3.70652300168 0.500000000005 -3.20652300168 +UniRef50_UPI00036A4575 hypothetical protein 2.61477488449 0.5 -2.11477488449 +UniRef50_G2LQE7 0.121554718695 0.5 0.378445281306 +UniRef50_UPI0003619428 Cro Cl family transcriptional regulator 3.8623123565 0.500000000006 -3.3623123565 +UniRef50_A7HCR8 tRNA dimethylallyltransferase 1.29847644528 0.499999999999 -0.798476445281 +UniRef50_UPI00044020B0 PREDICTED 0.656543790691 0.5 -0.156543790691 +UniRef50_A6LRG0 ErfK YbiS YcfS YnhG family protein 0.0429374516359 0.5 0.457062548364 +UniRef50_UPI0004724C7E 30S ribosomal protein S15, partial 0.326357995736 0.5 0.173642004264 +UniRef50_UPI0004545041 PREDICTED 0.953891385246 0.5 -0.453891385246 +UniRef50_UPI00047AA68A protein phosphatase 0.350703105743 0.5 0.149296894257 +UniRef50_A5UX75 Dihydroorotate dehydrogenase 0.283598894529 0.5 0.216401105471 +UniRef50_UPI000365F67B hypothetical protein 1.75065018723 0.5 -1.25065018723 +UniRef50_V6U9N7 LacI family transcriptional regulator 0.223110813075 0.5 0.276889186925 +UniRef50_P76498 0.623370440401 0.5 -0.123370440401 +UniRef50_P76499 2.4524573862 0.499999999999 -1.9524573862 +UniRef50_W8EV27 0.258906049567 0.5 0.241093950433 +UniRef50_Q5HGC3 Glutamine synthetase 0.229872104267 0.5 0.270127895733 +UniRef50_Q2FEH9 Phosphosugar binding transcriptional regulator, RpiR family 1.21977546161 0.5 -0.719775461608 +UniRef50_P33361 Putative osmoprotectant uptake system permease protein YehY 8.8919756145 0.500000000002 -8.3919756145 +UniRef50_E8LCX8 Lipoprotein 0.353251222285 0.5 0.146748777715 +UniRef50_A0A059FU98 Dehydrogenase 0.0851849543776 0.5 0.414815045622 +UniRef50_Q82BB8 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 0.326582628189 0.5 0.173417371811 +UniRef50_UPI0003C18AE4 PREDICTED 0.233852417513 0.5 0.266147582487 +UniRef50_Q2FH00 Alanine dehydrogenase 1 5.22456295388 0.499999999999 -4.72456295387 +UniRef50_A5UKT6 Ferredoxin, iron sulfur binding 3.59589713384 0.5 -3.09589713384 +UniRef50_A6M115 Metal dependent phosphohydrolase 0.0237832233741 0.5 0.476216776626 +UniRef50_D8TH60 0.198647111399 0.5 0.301352888601 +UniRef50_UPI000479FA8A hypothetical protein 1.35992800879 0.5 -0.859928008793 +UniRef50_P0AET6 Protein HdeD 0.285361748556 0.5 0.214638251444 +UniRef50_Q1GSN3 DNA mismatch repair protein MutL 0.156559259633 0.5 0.343440740367 +UniRef50_UPI000378A614 hypothetical protein 0.0876011735539 0.5 0.412398826446 +UniRef50_R5A3J3 1.91284979747 0.5 -1.41284979747 +UniRef50_U5MM11 Response regulator GtcR 0.13617171544 0.5 0.36382828456 +UniRef50_Q9RT94 Chloromuconate cycloisomerase, putative 0.0235083604476 0.5 0.476491639552 +UniRef50_UPI00046B9072 PREDICTED 0.0990682531879 0.5 0.400931746812 +UniRef50_UPI00036EA45A hypothetical protein 1.69219534197 0.5 -1.19219534197 +UniRef50_UPI00046E002C hypothetical protein 0.00244085940481 0.5 0.497559140595 +UniRef50_UPI0003ABC022 PREDICTED 0.203994907301 0.5 0.296005092699 +UniRef50_B8H9Q5 Pyridoxal 5 phosphate dependent protein beta subunit 0.839690531072 0.5 -0.339690531072 +UniRef50_Q2FIE3 D alanine poly ligase subunit 1 1.24737433575 0.5 -0.747374335754 +UniRef50_Q9RXK8 0.00122412056616 0.5 0.498775879434 +UniRef50_O27113 2 oxoglutarate synthase subunit KorB 8.30062014539 0.500000000001 -7.80062014539 +UniRef50_I3USW1 Multi sensor signal transduction histidine kinase 1.12937322164 0.5 -0.629373221639 +UniRef50_B2VKE4 Cation acetate symporter ActP 0.476127257423 0.5 0.0238727425767 +UniRef50_A7HME6 Cytidylate kinase 0.447280462222 0.5 0.0527195377775 +UniRef50_UPI0003B60C69 translation factor Sua5 0.176313698038 0.5 0.323686301962 +UniRef50_B0RVB2 Ribosomal RNA small subunit methyltransferase H 1.06413263878 0.5 -0.564132638777 +UniRef50_F7U1Y8 Ribonucleoside diphosphate reductase subunit alpha 0.00341583337757 0.5 0.496584166622 +UniRef50_P19642 PTS system maltose and glucose specific EIICB component 1.04351028449 0.5 -0.543510284493 +UniRef50_K7S7B0 Peptidase dimerization domain containing protein 0.0290218160204 0.5 0.470978183979 +UniRef50_G0LRP3 Haloacid dehalogenase like hydrolase 0.961989665177 0.5 -0.461989665177 +UniRef50_W0YRX8 1.50935688074 0.5 -1.00935688074 +UniRef50_UPI0003506C1B PREDICTED 0.136379770266 0.5 0.363620229734 +UniRef50_A0A011R518 CRISPR associated endonuclease helicase Cas3 4.96905710623 0.499999999998 -4.46905710622 +UniRef50_UPI000366C818 hypothetical protein 0.419198102443 0.5 0.0808018975565 +UniRef50_P09143 Succinyl CoA ligase [ADP forming] subunit alpha 0.272334411282 0.5 0.227665588718 +UniRef50_Q24TX4 Guanylate kinase 0.40383811919 0.5 0.0961618808096 +UniRef50_A3TWR1 Phenol hydroxylase, putative 1.73633841431 0.5 -1.23633841431 +UniRef50_UPI0003513255 0.0979446550863 0.500000000001 0.402055344913 +UniRef50_P26840 Probable macrolide acetyltransferase 0.00801462749375 0.500000000001 0.491985372505 +UniRef50_P05823 Transposon Tn2501 resolvase 0.540906889298 0.5 -0.0409068892984 +UniRef50_F0YCT2 Expressed protein 0.318159759531 0.5 0.181840240469 +UniRef50_F0GIC2 Putative exported alkaline phosphatase 0.0221011247253 0.499999999999 0.477898875275 +UniRef50_D9UFT2 2.85812022036 0.499999999999 -2.35812022036 +UniRef50_Q1AS32 N acetyl gamma glutamyl phosphate reductase 0.364830611756 0.5 0.135169388244 +UniRef50_UPI00046F7B75 hypothetical protein 0.638835609801 0.5 -0.138835609801 +UniRef50_A0A022NVZ1 1.51046997985 0.5 -1.01046997985 +UniRef50_R5W852 0.915146467134 0.5 -0.415146467134 +UniRef50_A3LL65 Aflatoxin B1 aldehyde reductase member 1 0.161699904947 0.5 0.338300095053 +UniRef50_UPI000258F562 PREDICTED 0.0253721998904 0.5 0.47462780011 +UniRef50_M9UY12 0.201644284725 0.5 0.298355715275 +UniRef50_F0RLX6 0.0163798298461 0.5 0.483620170154 +UniRef50_B1ZI45 0.0566089612984 0.500000000001 0.443391038701 +UniRef50_V1UZX9 Thiamine biosynthesis protein ThiC 0.157722746269 0.5 0.342277253731 +UniRef50_G6XLM0 0.792399204054 0.5 -0.292399204054 +UniRef50_I0C0X1 AmrA 4.57735684705 0.499999999997 -4.07735684705 +UniRef50_Q2RMS9 Endoribonuclease YbeY 0.314788323264 0.5 0.185211676736 +UniRef50_P21822 Methyl accepting chemotaxis serine transducer 4.28921545367 0.500000000003 -3.78921545368 +UniRef50_A3PPX9 0.92882443126 0.5 -0.42882443126 +UniRef50_W2F2K9 0.432032359109 0.5 0.0679676408911 +UniRef50_D2ZRM1 13.3498226419 0.499999999996 -12.8498226419 +UniRef50_A3M9B5 0.0148023176823 0.5 0.485197682318 +UniRef50_D3AVG0 RNase P protein subunit, RNase MRP protein subunit 0.786777358889 0.5 -0.286777358889 +UniRef50_A3M9B3 0.00589304958468 0.5 0.494106950415 +UniRef50_Q1GY83 Outer membrane autotransporter barrel 1.9261451718 0.500000000001 -1.4261451718 +UniRef50_M5Y1W9 0.0638644925902 0.5 0.43613550741 +UniRef50_U7DKX9 Glutathione S transferase 0.0896641038868 0.5 0.410335896113 +UniRef50_Q1D0T1 UDP N acetylmuramate L alanine ligase 1.66084518412 0.500000000003 -1.16084518412 +UniRef50_G9G286 IS5 transposase 2.41990850222 0.500000000002 -1.91990850222 +UniRef50_V6ET42 0.349460494723 0.5 0.150539505277 +UniRef50_R7PSW3 6.99995290997 0.499999999998 -6.49995290996 +UniRef50_I6TY91 Phosphoglycerate mutase 2.89805609793 0.5 -2.39805609793 +UniRef50_Q3J3M8 Alpha 1,4 glucan 1.76977040627 0.5 -1.26977040627 +UniRef50_F4RCY2 0.00371811071031 0.5 0.496281889289 +UniRef50_E2ZZ10 Peptide chain release factor 3 0.695043669483 0.5 -0.195043669483 +UniRef50_UPI00036CAA44 hypothetical protein 0.302144307945 0.5 0.197855692055 +UniRef50_D3QD86 3.66243223997 0.500000000002 -3.16243223997 +UniRef50_D4J7S8 FAD FMN containing dehydrogenases 0.138528360906 0.5 0.361471639094 +UniRef50_B0D259 Predicted protein 1.22816439592 0.5 -0.728164395918 +UniRef50_M9VAJ1 0.0204482718726 0.5 0.479551728127 +UniRef50_Q6G9H0 Conserved virulence factor B 2.63926063539 0.500000000001 -2.13926063539 +UniRef50_K9Z9U6 Plasmid maintenance system killer 0.139398252523 0.5 0.360601747477 +UniRef50_M5A5P1 Geranyltranstransferase 0.0496410822211 0.5 0.450358917779 +UniRef50_Q5WAG0 Ribonuclease P protein component 2.56911994916 0.499999999999 -2.06911994916 +UniRef50_UPI00021A4D09 PREDICTED 2.00731033322 0.5 -1.50731033322 +UniRef50_C3I9I9 0.0317985934619 0.5 0.468201406538 +UniRef50_I2QLC8 0.4002443676 0.5 0.0997556324005 +UniRef50_UPI0003C1A367 PREDICTED 0.575250426924 0.5 -0.0752504269236 +UniRef50_UPI0001E2AEC5 hypothetical protein, partial 0.0489970527272 0.500000000001 0.451002947272 +UniRef50_Q3B4Y6 Imidazoleglycerol phosphate dehydratase 2.94501989019 0.499999999999 -2.44501989019 +UniRef50_V9WJV3 2 polyprenyl 6 methoxyphenol hydroxylase 3.94536325002 0.499999999999 -3.44536325002 +UniRef50_H5SYI3 0.313884364449 0.5 0.186115635551 +UniRef50_UPI00035C6608 hypothetical protein 0.424890452129 0.5 0.0751095478711 +UniRef50_J9YRR4 0.777307351999 0.5 -0.277307351999 +UniRef50_U6EZ18 Rubrerythrin 7.91931635443 0.5 -7.41931635443 +UniRef50_UPI0004670A8C hypothetical protein 0.912359574692 0.5 -0.412359574692 +UniRef50_P23382 Immune inhibitor A 0.0215937459238 0.5 0.478406254076 +UniRef50_Q897Q2 NH3 dependent NAD+ synthetase 0.026579110657 0.5 0.473420889343 +UniRef50_F6G8K0 Lipoprotein 1.69231948576 0.5 -1.19231948576 +UniRef50_A4WT68 NADH quinone oxidoreductase subunit 0.310629243514 0.5 0.189370756486 +UniRef50_Q9RU53 0.00599571503564 0.499999999999 0.494004284965 +UniRef50_D2ZUU5 0.0200148928923 0.5 0.479985107108 +UniRef50_UPI0003B370CA taurine ABC transporter substrate binding protein 0.241223501403 0.5 0.258776498597 +UniRef50_Q9RU59 0.00640686941496 0.5 0.493593130585 +UniRef50_P25888 ATP dependent RNA helicase RhlE 0.884957188731 0.5 -0.384957188731 +UniRef50_S6ETI6 0.309921729341 0.5 0.190078270659 +UniRef50_F9Y8Y0 Oxidoreductase, aldo keto reductase family protein 0.017028264666 0.5 0.482971735334 +UniRef50_F0XZ87 1.00961838816 0.5 -0.509618388161 +UniRef50_G8VGA8 Protease 0.0230597426624 0.5 0.476940257337 +UniRef50_S1SW71 0.519563948328 0.5 -0.019563948328 +UniRef50_A8LI88 Rhomboid family protein 1.82388873278 0.499999999999 -1.32388873278 +UniRef50_Q1MFZ6 Pseudouridine 5 phosphate glycosidase 1 0.00652488763474 0.5 0.493475112365 +UniRef50_UPI00047858B2 hypothetical protein 0.558206257569 0.5 -0.0582062575691 +UniRef50_UPI0003B760AC citrate synthase, partial 0.899742806337 0.5 -0.399742806337 +UniRef50_P56902 3 oxoacyl [acyl carrier protein] synthase 2 3.79806593781 0.5 -3.29806593781 +UniRef50_Q5HQM9 DltB protein 1.06999204682 0.500000000001 -0.569992046816 +UniRef50_Q57RM6 Dipeptide permease D 2.12822781534 0.5 -1.62822781534 +UniRef50_P26612 Cytoplasmic alpha amylase 1.60344569222 0.500000000001 -1.10344569222 +UniRef50_UPI0002625B7F glutaredoxin 0.374724974626 0.5 0.125275025374 +UniRef50_P10423 Alkaline phosphatase isozyme conversion protein 0.748149824725 0.5 -0.248149824725 +UniRef50_U3KIJ5 4.06550148831 0.5 -3.56550148831 +UniRef50_G8UQE5 FAD dependent oxidoreductase 0.244979624764 0.5 0.255020375236 +UniRef50_W1WTC0 0.365592546575 0.5 0.134407453425 +UniRef50_Q9I3D2 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.164238686077 0.5 0.335761313923 +UniRef50_W4STC6 0.728010873605 0.5 -0.228010873605 +UniRef50_F0YPY3 Expressed protein 0.758112364098 0.5 -0.258112364098 +UniRef50_W4MCA9 1.14782933658 0.5 -0.647829336578 +UniRef50_UPI000225AF78 chemotaxis protein CheY 0.546857702717 0.5 -0.0468577027172 +UniRef50_UPI000367F02C hypothetical protein 0.349702016289 0.5 0.150297983711 +UniRef50_C6W4P9 Aldehyde Dehydrogenase 2.29579270546 0.5 -1.79579270546 +UniRef50_R9BZ13 ABC transporter periplasmic protein 0.298663357647 0.5 0.201336642353 +UniRef50_UPI00037C0FB7 hypothetical protein, partial 0.286387794515 0.5 0.213612205485 +UniRef50_B5YEP5 Glutamate tRNA ligase 0.351268975724 0.5 0.148731024276 +UniRef50_Q9KYS1 1 deoxy D xylulose 5 phosphate reductoisomerase 0.0705156675536 0.5 0.429484332446 +UniRef50_A8AXV1 Transporter 0.922116390872 0.5 -0.422116390872 +UniRef50_L5N6N7 Transducer protein Htr38 0.034310551663 0.5 0.465689448337 +UniRef50_Q49WX1 Cell division protein SepF 1.44854478099 0.500000000001 -0.948544780989 +UniRef50_UPI0004769219 glycerophosphodiester phosphodiesterase 0.00293967639443 0.5 0.497060323606 +UniRef50_UPI0002F2BD70 hypothetical protein 0.267936351953 0.5 0.232063648047 +UniRef50_Q2YUG1 1.09521038629 0.5 -0.595210386286 +UniRef50_I6SW45 Enoyl ACP reductase 2.25432006487 0.5 -1.75432006487 +UniRef50_H8LF45 Xanthine uracil vitamin C permease 0.498053881406 0.5 0.00194611859412 +UniRef50_UPI0003B35348 amino acid ABC transporter permease 2.14349318345 0.5 -1.64349318345 +UniRef50_UPI0002487593 citrate lyase, partial 3.08562615771 0.500000000001 -2.58562615771 +UniRef50_UPI0004418637 hypothetical protein PUNSTDRAFT_120887 0.0285317112606 0.5 0.471468288739 +UniRef50_D4HBG9 Zinc binding alcohol dehydrogenase family protein 0.0154842556692 0.5 0.484515744331 +UniRef50_UPI000477DEB8 hypothetical protein 0.587450112774 0.5 -0.0874501127745 +UniRef50_Q89BK7 Phosphoenolpyruvate carboxykinase [ATP] 2.5659057234 0.5 -2.0659057234 +UniRef50_B5YHP2 Non canonical purine NTP pyrophosphatase 0.0929674043792 0.5 0.407032595621 +UniRef50_W1DH05 Shikimate transporter 1.97424330757 0.499999999999 -1.47424330757 +UniRef50_Q57242 ABC transporter ATP binding protein uup 1 4.75246670363 0.5 -4.25246670363 +UniRef50_Q1QVP8 0.0549309356974 0.5 0.445069064302 +UniRef50_C3JXG2 1.96723896103 0.500000000001 -1.46723896103 +UniRef50_Q28S78 YjeF related protein like protein 0.495832329588 0.5 0.00416767041214 +UniRef50_A0A011QSB3 Multiple resistance and pH homeostasis protein B 0.178091523573 0.5 0.321908476428 +UniRef50_M2L7K7 Putative type I restriction modification system, specificity determinant 0.305019635206 0.5 0.194980364794 +UniRef50_Q5HLR4 Formimidoylglutamase 4.26538160941 0.499999999994 -3.76538160941 +UniRef50_P45793 Type IV pilus assembly protein TapC 0.0244765049636 0.5 0.475523495036 +UniRef50_H9K906 0.48350089026 0.5 0.0164991097403 +UniRef50_P00632 3 oxoadipate enol lactonase 2 0.0112253183571 0.499999999999 0.488774681643 +UniRef50_Q0W662 Pyruvate carboxylase, subunit B 1.69866053762 0.5 -1.19866053762 +UniRef50_D0D597 0.35424880172 0.5 0.14575119828 +UniRef50_Q0JR18 Os01g0126200 protein 0.0466020819362 0.5 0.453397918064 +UniRef50_Q87CM2 Ketol acid reductoisomerase 0.266383434196 0.5 0.233616565804 +UniRef50_W5X9Y1 50S ribosomal protein L21 0.340337700791 0.5 0.159662299209 +UniRef50_UPI000383BB6B PREDICTED 0.0193147482299 0.500000000001 0.480685251769 +UniRef50_Q9JZG4 DNA translocase FtsK 2 0.0276059297182 0.5 0.472394070281 +UniRef50_I3Y8S8 Alkyl sulfatase like hydrolase 0.795711842475 0.5 -0.295711842475 +UniRef50_D3E4K2 MFS transporter 4.30777183462 0.499999999998 -3.80777183462 +UniRef50_B2TIE4 Putative ATP 0.169494960885 0.5 0.330505039115 +UniRef50_A3NQD4 Multifunctional CCA protein 0.185549665174 0.5 0.314450334826 +UniRef50_C7LD35 1.48453952494 0.5 -0.98453952494 +UniRef50_E7SW38 3.25286490457 0.499999999997 -2.75286490456 +UniRef50_A0A023XLY7 2.03664086261 0.499999999997 -1.53664086261 +UniRef50_E7GLY7 0.38125201971 0.5 0.11874798029 +UniRef50_D3B9J3 Electron transfer flavoprotein ubiquinone oxidoreductase 0.189437740639 0.5 0.310562259361 +UniRef50_I2GQ39 UvrABC system protein A Short=UvrA protein 0.0151804378638 0.5 0.484819562136 +UniRef50_UPI00047D4973 hypothetical protein 0.0305800744407 0.5 0.469419925559 +UniRef50_UPI00046D0079 hypothetical protein 0.0431351338866 0.5 0.456864866113 +UniRef50_H7CVL3 Beta lactamase 0.559347214181 0.5 -0.0593472141815 +UniRef50_Q48838 Probable L serine dehydratase, alpha chain 0.735900311604 0.5 -0.235900311604 +UniRef50_L0FK70 0.387621845368 0.5 0.112378154632 +UniRef50_Q24UB9 NADH quinone oxidoreductase subunit H 0.0248990462332 0.5 0.475100953767 +UniRef50_A3SBX3 0.932062538143 0.5 -0.432062538143 +UniRef50_UPI000255C58A amino acid permease associated protein, partial 0.098438833329 0.5 0.401561166671 +UniRef50_Q38XW7 Phosphoribosylformylglycinamidine synthase 2 2.20978243512 0.499999999999 -1.70978243511 +UniRef50_E8WDB2 Prevent host death family protein 0.459063008201 0.5 0.0409369917994 +UniRef50_UPI0003B627AC NAD dependent epimerase 0.206734813734 0.5 0.293265186266 +UniRef50_UPI00046A94A2 MFS transporter permease 0.00994493466845 0.5 0.490055065332 +UniRef50_UPI0003FD0D46 peptide ABC transporter permease 0.0512182049503 0.5 0.44878179505 +UniRef50_A3JZB9 3.31638363306 0.5 -2.81638363306 +UniRef50_P51601 GTP cyclohydrolase 1 1.25054914357 0.5 -0.750549143567 +UniRef50_A0A037YFV8 Transposase 1.14402347798 0.5 -0.644023477977 +UniRef50_B9KT97 ABC transporter related 5.99155518043 0.499999999999 -5.49155518042 +UniRef50_UPI0002DCE8E8 hypothetical protein 0.219235320215 0.5 0.280764679785 +UniRef50_B9KQ64 1.38205433748 0.500000000001 -0.882054337477 +UniRef50_B2V2R9 0.162867550457 0.5 0.337132449543 +UniRef50_A6WC54 Triosephosphate isomerase 0.000493008771915 0.5 0.499506991228 +UniRef50_UPI0003615D0A 30S ribosomal protein S15, partial 2.53710891626 0.500000000002 -2.03710891626 +UniRef50_P0C0C8 S ribosylhomocysteine lyase 0.144010573933 0.5 0.355989426067 +UniRef50_UPI00037B7B2D hypothetical protein 2.93318573548 0.5 -2.43318573548 +UniRef50_B9AFV8 Transcriptional regulator, MarR family 0.910125384323 0.5 -0.410125384323 +UniRef50_UPI000375A8C0 hypothetical protein 0.165866339261 0.5 0.334133660738 +UniRef50_Q3JHR7 0.0312566248086 0.5 0.468743375191 +UniRef50_Q9CI68 DegV domain containing protein YejH 0.281539247095 0.5 0.218460752905 +UniRef50_Q3JHR1 0.405199843311 0.5 0.0948001566889 +UniRef50_Q8EBR2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.361809969975 0.5 0.138190030025 +UniRef50_D6B6K5 Deaminase 0.363711730106 0.5 0.136288269894 +UniRef50_Q8UDF7 Carbamoyl phosphate synthase small chain 0.1235998042 0.5 0.3764001958 +UniRef50_UPI00047BA94E hypothetical protein 0.140402429096 0.5 0.359597570904 +UniRef50_B7GJX4 Predicted dithiol disulfide isomerase involved in polyketide biosynthesis 0.157552149742 0.5 0.342447850258 +UniRef50_W1CVX6 Potassium efflux system KefA protein Small conductance mechanosensitive channel 1.66126631514 0.5 -1.16126631514 +UniRef50_O69762 Hydroxycinnamoyl CoA hydratase lyase 0.020887465829 0.5 0.479112534171 +UniRef50_UPI00047E8386 hypothetical protein 0.0939101945513 0.5 0.406089805449 +UniRef50_Q6A5D0 Uronate isomerase 0.0124120899022 0.5 0.487587910098 +UniRef50_A4KKZ2 Integral membrane protein 0.634217125375 0.5 -0.134217125375 +UniRef50_L8A4F6 ATP dependent DNA helicase RecG 0.0132949739567 0.499999999999 0.486705026044 +UniRef50_B5FHH0 Protein FixA 0.84696996303 0.5 -0.34696996303 +UniRef50_K7RV74 0.104269562603 0.5 0.395730437397 +UniRef50_Q7N253 Complete genome; segment 12 17 0.0819375582211 0.5 0.418062441779 +UniRef50_F1WXM9 0.0202240563628 0.500000000001 0.479775943637 +UniRef50_B7UXK4 0.507536959458 0.5 -0.00753695945761 +UniRef50_T1Y6Z9 Transcription antiterminator, BglG family 2.16458455108 0.5 -1.66458455108 +UniRef50_A0A011NCB6 Endonuclease III 0.235165218956 0.5 0.264834781044 +UniRef50_P61653 2 dehydro 3 deoxyphosphooctonate aldolase 0.119334532926 0.499999999999 0.380665467074 +UniRef50_UPI0003760644 hypothetical protein 1.22940896109 0.5 -0.729408961088 +UniRef50_F7WSN7 PE PGRS family protein 0.193874531455 0.5 0.306125468546 +UniRef50_V6ICR3 Peptidase 0.83951402686 0.5 -0.33951402686 +UniRef50_UPI0002ED547D hypothetical protein 0.69418012535 0.5 -0.19418012535 +UniRef50_UPI00037F3F52 hypothetical protein 3.15080939184 0.5 -2.65080939184 +UniRef50_UPI000473CF45 magnesium transporter 3.63739898588 0.499999999997 -3.13739898587 +UniRef50_W2ELZ6 0.385636442983 0.5 0.114363557017 +UniRef50_A1KAD0 GTPase Obg 0.148317797259 0.5 0.351682202741 +UniRef50_R9SJH3 MATE efflux family protein 3.85292968295 0.499999999999 -3.35292968295 +UniRef50_V5SG04 NAD NADP transhydrogenase subunit alpha 0.639907556202 0.5 -0.139907556202 +UniRef50_UPI000289DD7B protein export cytoplasm protein SecA ATPase RNA helicase 0.21080968518 0.5 0.28919031482 +UniRef50_A5IQ87 RNA polymerase, sigma 24 subunit, ECF subfamily 1.76681193381 0.5 -1.26681193381 +UniRef50_Q51368 Protein TonB 0.167982953833 0.5 0.332017046167 +UniRef50_UPI0002FEF856 hypothetical protein 0.55434218291 0.5 -0.05434218291 +UniRef50_U5NMV6 0.753104197006 0.5 -0.253104197006 +UniRef50_U5UNI0 2.42337805718 0.500000000002 -1.92337805718 +UniRef50_Q4FBH4 Superfamily I DNA helicase 0.432374979975 0.5 0.0676250200247 +UniRef50_UPI000371EB10 hypothetical protein 1.29335082976 0.5 -0.793350829761 +UniRef50_Q03U25 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.291613919382 0.5 0.208386080618 +UniRef50_L7MHU7 Putative glycine rich protein 0.258078932361 0.5 0.241921067639 +UniRef50_UPI00047BE3BA hypothetical protein 0.643891662068 0.5 -0.143891662068 +UniRef50_P45207 Stringent starvation protein A homolog 0.111284348235 0.5 0.388715651765 +UniRef50_T2E6P2 Outer membrane autotransporter barrel domain protein 0.546653370989 0.5 -0.0466533709889 +UniRef50_Q87UP6 Polyphosphate kinase 0.0439270800267 0.5 0.456072919974 +UniRef50_UPI0001B412E7 histidine transporter permease 0.255760732163 0.5 0.244239267837 +UniRef50_A3M5I7 AdeS 0.122870894939 0.5 0.377129105061 +UniRef50_A8GDW2 Isopentenyl diphosphate Delta isomerase 2.10971300143 0.5 -1.60971300143 +UniRef50_P76014 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 0.394169975053 0.5 0.105830024947 +UniRef50_R7PTX8 Hydrolase TatD family 1.48129461673 0.5 -0.981294616731 +UniRef50_UPI00047C0852 glycine cleavage system protein H 1.38331745071 0.5 -0.88331745071 +UniRef50_Q839B2 Hypoxanthine guanine phosphoribosyltransferase 0.0443488300513 0.5 0.455651169948 +UniRef50_B2UYP0 WblI protein 0.0619801469489 0.5 0.438019853051 +UniRef50_Q1PY54 0.596789897577 0.5 -0.0967898975765 +UniRef50_P40727 Flagellar biosynthetic protein FlhB 0.404639283287 0.5 0.095360716713 +UniRef50_B9KW14 Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32 2.83758145095 0.499999999998 -2.33758145095 +UniRef50_UPI00036FCE04 50S ribosomal protein L13 1.08433263211 0.5 -0.584332632106 +UniRef50_O29458 Diaminopimelate decarboxylase 0.0192973967086 0.5 0.480702603291 +UniRef50_B1YMX6 Transposase, IS4 5.45131383015 0.500000000001 -4.95131383015 +UniRef50_U3SU32 2.44471386465 0.499999999999 -1.94471386465 +UniRef50_Q4ZX12 Exodeoxyribonuclease 7 large subunit 0.507176298179 0.5 -0.0071762981788 +UniRef50_UPI0002F5B1BD hypothetical protein 0.0466775670379 0.5 0.453322432962 +UniRef50_I3TX99 Sulfite reductase 0.69423083455 0.5 -0.19423083455 +UniRef50_UPI0003EBBF6F PREDICTED 0.104762758696 0.500000000001 0.395237241303 +UniRef50_Q8CUD0 2.78622563492 0.500000000001 -2.28622563493 +UniRef50_Q8CUD7 1.76725486569 0.5 -1.26725486569 +UniRef50_M0FQF4 2.71320491424 0.500000000001 -2.21320491424 +UniRef50_Q1QVC8 UPF0042 nucleotide binding protein Csal_2229 0.283057665619 0.5 0.216942334381 +UniRef50_H6CMH0 0.073774877928 0.499999999999 0.426225122073 +UniRef50_UPI00035CA530 hypothetical protein 0.339548055833 0.5 0.160451944167 +UniRef50_UPI0004777D24 phosphate starvation inducible E 0.462795160245 0.5 0.0372048397554 +UniRef50_Q7VRW1 NADH quinone oxidoreductase subunit K 0.417025630236 0.5 0.0829743697637 +UniRef50_G4LBC3 0.0548749785546 0.499999999999 0.445125021446 +UniRef50_F3U4G5 8.68225501811 0.499999999994 -8.18225501811 +UniRef50_G7M1G9 Calcium transporting ATPase 0.143994919744 0.5 0.356005080256 +UniRef50_UPI00034DCD19 hypothetical protein 0.0280993373557 0.500000000001 0.471900662644 +UniRef50_M9VKR8 0.0508049783699 0.5 0.44919502163 +UniRef50_H4WKP6 Conjugal transfer pilus assembly protein TraU 2.77302050457 0.500000000001 -2.27302050457 +UniRef50_V8GU79 Transposase 0.43948129913 0.5 0.0605187008704 +UniRef50_UPI0004697DC4 hypothetical protein 0.0213185910712 0.5 0.478681408929 +UniRef50_W0YRC1 5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase 0.400319560363 0.5 0.0996804396369 +UniRef50_G7LZV6 Xenobiotic transporting ATPase 0.436480251219 0.5 0.0635197487811 +UniRef50_Q9S7G6 Polyribonucleotide nucleotidyltransferase 2, mitochondrial 0.104822189398 0.5 0.395177810602 +UniRef50_UPI00039AB780 elongation factor P 0.292393147283 0.5 0.207606852717 +UniRef50_D3E3L9 0.779444966668 0.5 -0.279444966668 +UniRef50_M1MSP8 Lactose binding protein LacE 0.0563289877337 0.5 0.443671012266 +UniRef50_W5X7C7 Dihydrolipoyl dehydrogenase 0.524671792867 0.5 -0.0246717928667 +UniRef50_B2UX27 ATP phosphoribosyltransferase regulatory subunit 0.538023556341 0.5 -0.0380235563407 +UniRef50_E4G4A0 0.0605733781857 0.5 0.439426621814 +UniRef50_UPI0004628EFB hypothetical protein 0.873025289451 0.5 -0.373025289451 +UniRef50_F5M013 Phage integrase family protein 29.365651469 0.499999999985 -28.865651469 +UniRef50_Q8FP97 Proline tRNA ligase 0.0149221631836 0.5 0.485077836816 +UniRef50_B2TK67 Sterol regulatory element binding protein 0.403272842882 0.5 0.0967271571181 +UniRef50_UPI00029B24E7 30S ribosomal protein S10 0.0628760220647 0.5 0.437123977935 +UniRef50_Q02MJ3 Pyoverdine synthetase D 0.337813850332 0.5 0.162186149668 +UniRef50_A6LWJ6 0.174317152038 0.5 0.325682847962 +UniRef50_C1DKJ6 Type III pantothenate kinase 0.289991524316 0.5 0.210008475684 +UniRef50_Q0C348 Histidinol phosphate aminotransferase 0.391983673815 0.5 0.108016326185 +UniRef50_Q6F755 0.0160991117112 0.5 0.483900888289 +UniRef50_UPI0003B54DE9 peptide chain release factor 3 0.115794501747 0.5 0.384205498253 +UniRef50_Q1J276 Acyl CoA dehydrogenase like protein 1.64537409391 0.5 -1.14537409391 +UniRef50_K5VLJ3 1.03964624697 0.5 -0.539646246967 +UniRef50_UPI000468B1D5 hypothetical protein 1.17749916912 0.5 -0.677499169122 +UniRef50_UPI0003687009 hypothetical protein, partial 0.208485419435 0.5 0.291514580565 +UniRef50_R9VAP8 LysR family transcriptional regulator 0.0623956629785 0.5 0.437604337021 +UniRef50_Q6GHY8 UPF0223 protein SAR1071 0.575738870234 0.5 -0.0757388702338 +UniRef50_D4I0J4 Protein CreA 0.723487312808 0.5 -0.223487312808 +UniRef50_Q6NAB4 0.162648345976 0.5 0.337351654024 +UniRef50_UPI0003664B75 hypothetical protein 8.42347276704 0.500000000009 -7.92347276705 +UniRef50_I6TNU2 0.3268159468 0.5 0.1731840532 +UniRef50_A0A011NYR8 0.0188266173068 0.5 0.481173382693 +UniRef50_A0A022NSH9 1.03242724136 0.5 -0.532427241363 +UniRef50_Q4FPU1 Imidazole glycerol phosphate synthase subunit HisH 23.941762767 0.500000000002 -23.441762767 +UniRef50_A3M4F0 Transporter LysE family 0.0131023659592 0.5 0.486897634041 +UniRef50_I0C381 1,4 dihydroxy 2 naphthoate polyprenyltransferase 1.50509743276 0.499999999999 -1.00509743276 +UniRef50_UPI0003794EB4 hypothetical protein 3.13870858618 0.500000000001 -2.63870858618 +UniRef50_Q8CQA3 Dihydrolipoyl dehydrogenase 2.19895698952 0.5 -1.69895698952 +UniRef50_UPI000363BDDF hypothetical protein 0.058735396481 0.5 0.441264603519 +UniRef50_Q9WYD1 Transaldolase 0.061161036553 0.5 0.438838963447 +UniRef50_F0S5S6 0.011378832451 0.5 0.488621167549 +UniRef50_A9A450 Malate dehydrogenase 1.83358031513 0.499999999998 -1.33358031513 +UniRef50_R0DXB9 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 10.4377916985 0.499999999998 -9.9377916985 +UniRef50_Q3HKN1 Hemolysin type calcium binding protein 2.5547748412 0.5 -2.0547748412 +UniRef50_UPI00046A80FC anthranilate synthase 0.244451309004 0.5 0.255548690996 +UniRef50_I6TXL9 1.28959035549 0.5 -0.789590355489 +UniRef50_UPI0003704CF4 hypothetical protein 0.0404626424166 0.5 0.459537357583 +UniRef50_G3VGY4 4.4535113967 0.499999999997 -3.9535113967 +UniRef50_Q9KNK2 33 kDa chaperonin 1.34977000783 0.5 -0.849770007833 +UniRef50_A0A023S0I7 Rod shape determining protein MreD 0.507418908285 0.5 -0.00741890828514 +UniRef50_Q9KVL7 Diaminopimelate decarboxylase 0.0328937692194 0.5 0.467106230781 +UniRef50_B1LBM8 50S ribosomal protein L5 0.00753452070235 0.5 0.492465479298 +UniRef50_UPI0003739253 hypothetical protein, partial 3.34027209445 0.500000000001 -2.84027209445 +UniRef50_UPI0003EDF954 PREDICTED 0.516219197679 0.5 -0.0162191976794 +UniRef50_Q74LG2 CTP synthase 0.0256217868323 0.499999999999 0.474378213168 +UniRef50_Q6F9J2 Coenzyme PQQ synthesis protein B 0.0157237445105 0.5 0.484276255489 +UniRef50_UPI0003679109 hypothetical protein 0.287696711953 0.5 0.212303288047 +UniRef50_P31049 Probable fatty acid methyltransferase 0.7465235191 0.5 -0.2465235191 +UniRef50_Q1IYR1 NH dependent NAD(+) synthetase 0.0151638333883 0.5 0.484836166612 +UniRef50_P39671 Phosphoglucomutase 10.0046282028 0.500000000001 -9.50462820282 +UniRef50_UPI00036E3AFC hypothetical protein 0.00829834020346 0.5 0.491701659796 +UniRef50_Q0IAT1 Two component response regulator 0.0414899706913 0.5 0.458510029309 +UniRef50_W1WM64 2.12851786524 0.5 -1.62851786524 +UniRef50_G5LNV5 Respiratory nitrate reductase alpha chain 1.43148907295 0.5 -0.931489072949 +UniRef50_M4YXM6 0.477941210252 0.5 0.0220587897483 +UniRef50_Q2NQH3 Rhomboid protease GlpG 1.93022504129 0.5 -1.43022504129 +UniRef50_N0GIW3 0.321212156488 0.5 0.178787843512 +UniRef50_F2NB99 Nucleoside ABC transporter membrane protein 0.222438908329 0.5 0.277561091671 +UniRef50_UPI00046AD244 carbonic anhydrase 0.468011455584 0.5 0.0319885444158 +UniRef50_UPI0004626526 hypothetical protein 0.0632335885262 0.5 0.436766411474 +UniRef50_P27897 UTP glucose 1 phosphate uridylyltransferase 0.735095209989 0.5 -0.235095209989 +UniRef50_P22256 4 aminobutyrate aminotransferase GabT 1.13426170629 0.5 -0.634261706293 +UniRef50_Q9RU94 NADH quinone oxidoreductase subunit H 0.000182970964443 0.5 0.499817029035 +UniRef50_A6TI09 Probable phosphoglycerate mutase GpmB 4.21299685216 0.500000000001 -3.71299685217 +UniRef50_A6F5Z7 NAD dependent 4 hydroxybutyrate dehydrogenase 21.7231562479 0.499999999994 -21.2231562479 +UniRef50_E8SH67 Zn peptidase with DNA binding domain 2.67551372512 0.5 -2.17551372512 +UniRef50_UPI0003B5F4E2 N acetyl gamma glutamyl phosphate reductase 0.431432550728 0.5 0.0685674492723 +UniRef50_Q89WH6 Blr0711 protein 3.39802374483 0.5 -2.89802374483 +UniRef50_G9MRN8 23.920391307 0.500000000005 -23.420391307 +UniRef50_I0C7B0 ATP dependent dethiobiotin synthetase BioD 5.7553769082 0.499999999992 -5.25537690819 +UniRef50_UPI000328AD5C 0.344728857201 0.5 0.155271142799 +UniRef50_UPI0003A730C5 pyruvate kinase 1.23818353286 0.5 -0.738183532861 +UniRef50_UPI00044428D0 PREDICTED 0.0595392935233 0.5 0.440460706477 +UniRef50_F9I1V8 1.90712647408 0.500000000001 -1.40712647408 +UniRef50_UPI0003B495EE exonuclease subunit SbcD 0.224382766643 0.5 0.275617233357 +UniRef50_Q5WHY0 Glucosamine 6 phosphate deaminase 0.000749829008184 0.5 0.499250170992 +UniRef50_I3U5U5 Mobilization protein C 0.915611852845 0.5 -0.415611852845 +UniRef50_UPI0003734C10 hypothetical protein 3.10466670659 0.5 -2.60466670659 +UniRef50_UPI00047099BD hypothetical protein 0.110201390074 0.5 0.389798609926 +UniRef50_A4XUQ2 0.285302312425 0.5 0.214697687575 +UniRef50_P48812 Glyceraldehyde 3 phosphate dehydrogenase 0.583948266524 0.5 -0.0839482665245 +UniRef50_K9NNF0 LysR family transcriptional regulator 0.34599595371 0.5 0.15400404629 +UniRef50_Q8X5L9 Endoglucanase 3.16141893257 0.5 -2.66141893257 +UniRef50_O54537 Glucose 6 phosphate 1 dehydrogenase 0.00122441614455 0.5 0.498775583855 +UniRef50_Q2CB82 0.256299084084 0.5 0.243700915916 +UniRef50_H3NTE5 0.616234749309 0.5 -0.116234749309 +UniRef50_Q8DWT2 Membrane protein, putative 1.37293439792 0.499999999998 -0.872934397913 +UniRef50_Q6GFS7 RNA polymerase sigma factor SigS 2.67598360543 0.5 -2.17598360543 +UniRef50_X4ZMG7 Enoyl reductase family protein 0.204762371972 0.5 0.295237628028 +UniRef50_Q3HKI6 TraI 2.12688078095 0.500000000002 -1.62688078095 +UniRef50_A9FGM6 PhoH family protein 0.836312136395 0.5 -0.336312136395 +UniRef50_U5MSH8 Signal transduction and transcriptional control protein Stc 0.216545616579 0.5 0.283454383421 +UniRef50_P0CF89 Transposase InsI for insertion sequence element IS30C 1.31160832391 0.5 -0.811608323915 +UniRef50_Q9RSL3 50S ribosomal protein L6 0.00220467560555 0.5 0.497795324394 +UniRef50_U3AK46 Hypotheical conserved protein 0.985963815952 0.5 -0.485963815952 +UniRef50_P0ABH6 Rod shape determining protein MreD 0.335706555642 0.5 0.164293444358 +UniRef50_S5XQY4 Cytochrome b561 0.491186617304 0.5 0.00881338269552 +UniRef50_UPI0003825EF9 hypothetical protein 0.308386319116 0.5 0.191613680884 +UniRef50_Q6A834 0.0290911005421 0.5 0.470908899458 +UniRef50_UPI0004744DBC hypothetical protein 0.212219667475 0.5 0.287780332525 +UniRef50_A4VSE4 3 methyladenine DNA glycosylase 1.3547314956 0.5 -0.854731495604 +UniRef50_A6L4N0 2 aminoethylphosphonate pyruvate transaminase 0.00480497127104 0.5 0.495195028729 +UniRef50_Q9L6R5 UDP N acetylglucosamine 2 epimerase 0.0569590087929 0.5 0.443040991207 +UniRef50_G9ZVF4 0.552762637034 0.5 -0.0527626370342 +UniRef50_J9JHL4 0.524230426118 0.5 -0.0242304261181 +UniRef50_D8TYM2 0.415599187054 0.5 0.0844008129461 +UniRef50_UPI00036C70D3 hypothetical protein 1.6911669536 0.500000000001 -1.1911669536 +UniRef50_F0N5W3 Rhodanese domain protein 0.341045698746 0.5 0.158954301254 +UniRef50_B9GC78 Os12g0188566 protein 0.238598044626 0.5 0.261401955374 +UniRef50_W8ZGJ2 0.319560307807 0.5 0.180439692193 +UniRef50_A6M046 Transcriptional regulator, TetR family 0.0825145062995 0.5 0.417485493701 +UniRef50_Q8DRN9 0.279494332526 0.5 0.220505667474 +UniRef50_UPI000475D486 pseudouridine synthase 1.11554012812 0.5 -0.615540128122 +UniRef50_B2S7V7 Glyoxalase Bleomycin resistance protein 6.56207073887 0.500000000002 -6.06207073888 +UniRef50_UPI00035ECC54 hypothetical protein 0.359615142731 0.5 0.140384857269 +UniRef50_UPI00037E3E52 hypothetical protein 0.689433578171 0.5 -0.189433578171 +UniRef50_Q9HXZ1 DNA polymerase III subunit alpha 0.525530084038 0.5 -0.0255300840378 +UniRef50_A6M0Z1 Methyl accepting chemotaxis sensory transducer 0.47228051033 0.5 0.0277194896696 +UniRef50_C7IW70 Os01g0561500 protein 0.260569452846 0.5 0.239430547154 +UniRef50_B2TPI9 1.06530608445 0.5 -0.565306084451 +UniRef50_P75883 13.8592073154 0.500000000013 -13.3592073154 +UniRef50_V4REQ5 Bacteriophytochrome heme oxygenase BphO 0.517954845268 0.5 -0.0179548452679 +UniRef50_UPI0002000915 NRPS siderophore biosynthesis protein 0.150818511132 0.5 0.349181488868 +UniRef50_Q54430 Sucrose operon repressor 1.13911152758 0.5 -0.639111527579 +UniRef50_A6LTD5 Lipoprotein, putative 0.0328942741626 0.5 0.467105725838 +UniRef50_Q2FJI0 Methionine import ATP binding protein MetN 1 1.83683497778 0.500000000001 -1.33683497779 +UniRef50_UPI000470E6C8 hypothetical protein 0.163200438102 0.5 0.336799561898 +UniRef50_P39636 Amino acid permease RocC 0.377041479252 0.5 0.122958520748 +UniRef50_A7GKI0 Phosphoribosylformylglycinamidine cyclo ligase 0.128864422286 0.5 0.371135577714 +UniRef50_P22608 Type 4 fimbrial assembly protein PilB 0.879666861812 0.5 -0.379666861812 +UniRef50_UPI0003627506 Cro Cl family transcriptional regulator 3.90757068089 0.500000000002 -3.40757068089 +UniRef50_C1D205 Putative diguanylate cyclase 0.0120195297368 0.500000000001 0.487980470262 +UniRef50_Q9KU46 Lipoprotein signal peptidase 0.545439516634 0.5 -0.0454395166337 +UniRef50_I6Y4U3 NAD dependent malic enzyme 0.535364038178 0.5 -0.0353640381777 +UniRef50_E0DCF6 0.0140605302394 0.5 0.48593946976 +UniRef50_K0WMD7 Glycosyltransferase 3.62738524939 0.500000000002 -3.12738524939 +UniRef50_W7VMD9 Peptidase M23 0.321773112195 0.5 0.178226887805 +UniRef50_UPI0004724D89 hypothetical protein 0.395710434854 0.5 0.104289565146 +UniRef50_C6S911 Deoxyribodipyrimidine photolyase 0.0170823232918 0.5 0.482917676708 +UniRef50_X5MKP4 FIG003603 0.190132238927 0.5 0.309867761073 +UniRef50_UPI00047E4FB4 hypothetical protein 0.494664884658 0.5 0.00533511534161 +UniRef50_A6LX64 ABC transporter related 0.208835338727 0.5 0.291164661273 +UniRef50_U4VGY9 2.4564703751 0.5 -1.9564703751 +UniRef50_A0A024E6B6 Cytochrome B561 0.634332814696 0.5 -0.134332814696 +UniRef50_UPI00046BD92F PREDICTED 3.93402112089 0.499999999999 -3.43402112089 +UniRef50_A9M1B3 Potassium uptake protein 0.0615905854852 0.5 0.438409414515 +UniRef50_P0A9J2 Ribonuclease G 0.268780145454 0.5 0.231219854546 +UniRef50_C7ZY18 2.18074393755 0.5 -1.68074393755 +UniRef50_P69955 Low calcium response locus protein D 0.373275268811 0.5 0.126724731189 +UniRef50_T1JU83 0.208146388302 0.5 0.291853611698 +UniRef50_B0TEJ5 1 deoxy D xylulose 5 phosphate synthase 0.00277359107173 0.5 0.497226408928 +UniRef50_R6STG9 Putative glutamate binding periplasmic protein 0.0125040599621 0.5 0.487495940038 +UniRef50_O67546 Succinyl CoA ligase [ADP forming] subunit beta 0.114750709709 0.5 0.385249290291 +UniRef50_F0YAV0 Expressed protein 1.35335206661 0.5 -0.853352066607 +UniRef50_UPI00016C49DC histidinol phosphate phosphatase, putative 0.0197295255924 0.5 0.480270474408 +UniRef50_Q08653 Anthranilate synthase component 1 0.0123436339396 0.5 0.48765636606 +UniRef50_A6M2V0 Methyl accepting chemotaxis sensory transducer 0.137664019681 0.5 0.362335980319 +UniRef50_UPI0003AE1EC3 PREDICTED 0.0209298589904 0.5 0.47907014101 +UniRef50_Q2FIM4 Epimerase family protein SAUSA300_0753 2.03782074973 0.499999999999 -1.53782074973 +UniRef50_UPI0003752D61 hypothetical protein 1.16436695521 0.5 -0.664366955207 +UniRef50_Q9HWF9 Bacterioferritin 4.49442322901 0.500000000002 -3.99442322901 +UniRef50_F9Z1G0 DNA primase 0.00433597981524 0.5 0.495664020185 +UniRef50_K4RZ48 5.31887047514 0.499999999999 -4.81887047513 +UniRef50_V9U4M1 0.0877260210189 0.5 0.412273978981 +UniRef50_C7ZTX4 SSS sodium solute transporter superfamily protein 0.790381006768 0.5 -0.290381006768 +UniRef50_UPI0002F68D16 hypothetical protein 0.117685124213 0.5 0.382314875788 +UniRef50_A3DK16 Diaminopimelate epimerase 0.136448104712 0.5 0.363551895288 +UniRef50_F9YXC7 0.0172754569929 0.5 0.482724543007 +UniRef50_P69740 Hydrogenase 1 small chain 36.3952410818 0.499999999976 -35.8952410818 +UniRef50_J9NRS4 3.96369915178 0.5 -3.46369915178 +UniRef50_A1VYJ5 DNA directed RNA polymerase subunit beta 1.14453993581 0.5 -0.644539935813 +UniRef50_Q28M41 Kef type potassium proton antiporter, CPA2 family 0.865208557089 0.5 -0.365208557089 +UniRef50_P0A9H6 Cobyrinic acid a,c diamide adenosyltransferase 1.31059474714 0.5 -0.810594747141 +UniRef50_UPI000466B185 hydrolase 0.0718179674619 0.5 0.428182032538 +UniRef50_UPI0004738B15 MFS transporter 0.122182625343 0.5 0.377817374657 +UniRef50_Q9RCA1 DNA polymerase III subunit beta 1.22818208934 0.500000000001 -0.728182089341 +UniRef50_A8GHR1 Putative multidrug resistance protein MdtD 3.08103665976 0.5 -2.58103665976 +UniRef50_UPI00016A58F4 hypothetical protein, partial 0.161767547761 0.5 0.338232452239 +UniRef50_P76345 Cytochrome b561 homolog 1 6.80652605651 0.499999999999 -6.30652605651 +UniRef50_A0A023VMN5 DNA polymerase III subunit epsilon 0.047170945426 0.5 0.452829054574 +UniRef50_UPI00036CE3D7 hypothetical protein, partial 2.50640079159 0.500000000002 -2.00640079159 +UniRef50_A0A024GR22 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763 0.100937098173 0.5 0.399062901826 +UniRef50_Q7VGX8 Isoleucine tRNA ligase 0.0167378532025 0.5 0.483262146797 +UniRef50_G1P8T6 0.76377479774 0.5 -0.26377479774 +UniRef50_B1ZT49 Tryptophan synthase alpha chain 0.367554599414 0.5 0.132445400586 +UniRef50_C9X0B4 Cystathionine beta lyase 0.0350811851994 0.5 0.464918814801 +UniRef50_UPI0004680597 hypothetical protein 0.487940782461 0.5 0.0120592175385 +UniRef50_P59019 3 isopropylmalate dehydratase small subunit 0.34152147359 0.5 0.15847852641 +UniRef50_G7D6B1 1.17598225536 0.5 -0.675982255364 +UniRef50_D0K7S8 49.9063583409 0.499999999988 -49.4063583409 +UniRef50_A8WP91 Probable medium chain specific acyl CoA dehydrogenase 2, mitochondrial 0.0682833153506 0.5 0.43171668465 +UniRef50_P07654 Phosphate transport system permease protein PstA 3.9103197764 0.500000000001 -3.4103197764 +UniRef50_UPI00046BF57D PREDICTED 0.687853254275 0.5 -0.187853254275 +UniRef50_D5AUV7 0.64805105556 0.5 -0.14805105556 +UniRef50_E6WAB3 Thymidine phosphorylase 0.322892093323 0.5 0.177107906677 +UniRef50_P16919 Protein RhsD 2.43432104233 0.499999999999 -1.93432104233 +UniRef50_Q8CNS3 Integrase 2.19068990898 0.5 -1.69068990898 +UniRef50_UPI00038257CA hypothetical protein 0.144403538666 0.5 0.355596461334 +UniRef50_B3E616 Phosphoribosyl ATP pyrophosphatase 1.16074253562 0.5 -0.660742535618 +UniRef50_UPI000255D14E uracil xanthine permease 0.187047425135 0.5 0.312952574865 +UniRef50_A0A011PEE7 3.56348327548 0.500000000001 -3.06348327549 +UniRef50_Q2J8T7 NAD NADP transhydrogenase alpha subunit like 0.341955324564 0.5 0.158044675436 +UniRef50_X1LFP4 Marine sediment metagenome DNA, contig 0.108053786458 0.5 0.391946213542 +UniRef50_F5H1R7 Protein FLJ22184 0.148075475894 0.5 0.351924524106 +UniRef50_B5YJV0 GTP cyclohydrolase 1 0.0407833958989 0.5 0.459216604101 +UniRef50_I6SZZ6 Glutathione synthase 0.801127608847 0.5 -0.301127608847 +UniRef50_A4IWK9 Ribonuclease 3 0.260336245652 0.5 0.239663754348 +UniRef50_P0AAD4 Tyrosine specific transport protein 4.09945639509 0.500000000004 -3.59945639509 +UniRef50_UPI0004573F1D PREDICTED 4.72610140983 0.499999999997 -4.22610140983 +UniRef50_UPI0003805ECB hypothetical protein 0.617219989935 0.5 -0.117219989935 +UniRef50_G5LNP8 Glucans biosynthesis protein G 0.0904126066461 0.5 0.409587393354 +UniRef50_A6LZ85 O acetylhomoserine aminocarboxypropyltransferase 0.225170381299 0.5 0.274829618701 +UniRef50_Q04LT6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.000199925770393 0.5 0.49980007423 +UniRef50_I6U4A9 29.3800076466 0.500000000015 -28.8800076466 +UniRef50_A0A017HQJ0 Mobile element protein 1.7291214937 0.5 -1.2291214937 +UniRef50_Q49UU5 UPF0355 protein SSP2326 3.39066995214 0.499999999997 -2.89066995214 +UniRef50_Q1JF79 ComE operon protein 2 0.545146389995 0.5 -0.0451463899954 +UniRef50_Q93GF3 Rep 1.5587904663 0.5 -1.0587904663 +UniRef50_A1U4H5 D 3 phosphoglycerate dehydrogenase 0.0104685698564 0.5 0.489531430144 +UniRef50_B6VK40 Type iii secretion component protein sctt 0.45487266077 0.5 0.0451273392302 +UniRef50_UPI00036474E6 hypothetical protein 0.0662223104826 0.5 0.433777689518 +UniRef50_P0ADM6 4.24173308245 0.499999999999 -3.74173308244 +UniRef50_U7R6W7 0.852132477074 0.5 -0.352132477074 +UniRef50_E3I502 Oligoendopeptidase, pepF M3 family 2.25163563088 0.5 -1.75163563088 +UniRef50_R6WGW0 Macro domain protein 0.110497475494 0.5 0.389502524506 +UniRef50_UPI0003661C28 hypothetical protein, partial 0.223603234475 0.5 0.276396765525 +UniRef50_A0YRN0 Putative transposase 0.00532375829508 0.5 0.494676241705 +UniRef50_Q1GHV9 YjeF related protein like protein 0.549390360608 0.5 -0.0493903606075 +UniRef50_A0A023YXN9 Type 1 fimbriae anchoring protein FimD 2.97525357104 0.5 -2.47525357103 +UniRef50_Q4L8X8 Ppx GppA, Ppx GppA phosphatase family protein 2.8361748878 0.5 -2.3361748878 +UniRef50_B0V1R4 Novel protein 0.855760681597 0.5 -0.355760681597 +UniRef50_B9KPX1 Periplasmic binding protein LacI transcriptional regulator 3.86086936469 0.500000000003 -3.36086936469 +UniRef50_C7ZSW5 ABC transporter 4.28941148036 0.499999999995 -3.78941148035 +UniRef50_D8JP76 0.0109332342426 0.5 0.489066765757 +UniRef50_I6TX73 Acetyltransferase 1.80728267564 0.500000000002 -1.30728267565 +UniRef50_P51995 NAD transhydrogenase subunit alpha part 2 0.0127284509816 0.5 0.487271549018 +UniRef50_C5N4H6 2.33109852975 0.500000000002 -1.83109852975 +UniRef50_R6RWM5 Prophage LambdaSa04 DNA polymerase 0.0171125352136 0.5 0.482887464786 +UniRef50_Q9JY85 0.0609694446391 0.499999999999 0.439030555361 +UniRef50_A4WW73 2.23624170395 0.5 -1.73624170395 +UniRef50_UPI00016AAA4C MFS transporter 0.325714231325 0.5 0.174285768675 +UniRef50_Q46915 Glucarate dehydratase related protein 3.14885505888 0.500000000001 -2.64885505888 +UniRef50_Q5HRD9 AIR carboxylase, putative 1.4108908814 0.5 -0.910890881396 +UniRef50_Q3IW48 3.2781933973 0.499999999999 -2.7781933973 +UniRef50_J9NUI2 0.467834446636 0.5 0.0321655533644 +UniRef50_UPI0003B47644 ABC transporter 0.0885335098641 0.5 0.411466490136 +UniRef50_A8LE21 Peptide deformylase 0.0439138517205 0.5 0.456086148279 +UniRef50_UPI0003B50607 MarR family transcriptional regulator, partial 0.190134902492 0.5 0.309865097508 +UniRef50_A0A023L4E6 Multidrug transporter membrane component ATP binding component 4.04720301126 0.499999999998 -3.54720301126 +UniRef50_G8AI77 0.884325750897 0.5 -0.384325750897 +UniRef50_W7WQX4 1.20874028431 0.5 -0.708740284311 +UniRef50_UPI00036C7DC7 hypothetical protein 0.339074100361 0.5 0.160925899639 +UniRef50_UPI0003B4B204 hypothetical protein 0.312609183577 0.5 0.187390816423 +UniRef50_P76518 2.19021907032 0.5 -1.69021907032 +UniRef50_O32177 3 ketoacyl CoA thiolase 0.00177233444631 0.5 0.498227665554 +UniRef50_Q6MGU4 Nucleoside diphosphate kinase 0.815900406527 0.5 -0.315900406527 +UniRef50_P76514 1.27101792902 0.499999999999 -0.771017929015 +UniRef50_Q7P1W4 5.26730071201 0.5 -4.76730071201 +UniRef50_E0SN31 Oxidoreductase 0.815843539222 0.5 -0.315843539222 +UniRef50_B4EH82 Catalase related peroxidase 0.03523308933 0.5 0.46476691067 +UniRef50_H8FXV9 0.0905025511529 0.5 0.409497448847 +UniRef50_M9VA45 0.0134093566908 0.5 0.486590643309 +UniRef50_B7V4I1 LPS assembly protein LptD 0.522996320759 0.5 -0.0229963207588 +UniRef50_Q8CU34 ABC transporter 1.4359818019 0.5 -0.935981801905 +UniRef50_C6B907 NAD dependent epimerase dehydratase 3.02508341524 0.499999999999 -2.52508341524 +UniRef50_Q88EH6 Acetyl coenzyme A synthetase 1 2.3730279586 0.500000000002 -1.8730279586 +UniRef50_A0A059LIS0 0.0483864003243 0.5 0.451613599676 +UniRef50_Q00X46 WGS project CAID00000000 data, contig chromosome 13 0.550281951203 0.5 -0.0502819512033 +UniRef50_S6ASW9 3.00601583726 0.500000000001 -2.50601583726 +UniRef50_UPI0002D680F8 hydroxymethylglutaryl CoA lyase 0.0808699138638 0.5 0.419130086136 +UniRef50_G4MEB0 Protein containing domains DUF404, DUF407 0.168876383297 0.500000000001 0.331123616703 +UniRef50_A1AYY2 Phage major capsid protein, HK97 family 1.88024759828 0.5 -1.38024759828 +UniRef50_I0C4W3 Enterotoxin 3.12872882585 0.5 -2.62872882585 +UniRef50_B2GK44 0.0767088350884 0.5 0.423291164911 +UniRef50_A8ZUK6 Tyrosine tRNA ligase 0.727454138752 0.5 -0.227454138752 +UniRef50_UPI00047522DD hypothetical protein 0.0635975336921 0.5 0.436402466308 +UniRef50_F9PNH7 RDD family protein 0.528269697927 0.5 -0.0282696979272 +UniRef50_R6Q8V3 O 6 methylguanine DNA methyltransferase 3.35727848213 0.499999999998 -2.85727848213 +UniRef50_A7X782 Pyrrolidone carboxylate peptidase 1.71804388366 0.5 -1.21804388366 +UniRef50_A7HQ81 Thioesterase superfamily protein 0.340285267254 0.5 0.159714732746 +UniRef50_Q722V6 Homoserine O acetyltransferase 0.0248965595374 0.5 0.475103440463 +UniRef50_E5S583 Glycine cleavage system H protein 0.695023686952 0.5 -0.195023686952 +UniRef50_W8Z324 0.828522624699 0.5 -0.328522624699 +UniRef50_D3HCJ2 2 isopropylmalate synthase 1.58167320691 0.5 -1.08167320691 +UniRef50_A3DJH8 30S ribosomal protein S3 0.107386654545 0.5 0.392613345455 +UniRef50_T2E8G6 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 1.30677940945 0.5 -0.80677940945 +UniRef50_U7JH15 0.149495787245 0.5 0.350504212755 +UniRef50_S9Q8I1 1.10219718528 0.5 -0.602197185278 +UniRef50_UPI0003497FAE hypothetical protein 0.0975441900242 0.5 0.402455809976 +UniRef50_A7GB27 Transcriptional regulator, AraC family 1.30465836195 0.5 -0.804658361946 +UniRef50_UPI0004687B18 hypothetical protein 0.0429331895553 0.5 0.457066810445 +UniRef50_D2UWK2 Probable membrane protein 1.25132444618 0.5 -0.751324446176 +UniRef50_P23862 Primosomal replication protein N 0.767299861427 0.5 -0.267299861427 +UniRef50_L1KG88 25.8497653838 0.499999999949 -25.3497653838 +UniRef50_U8CNV5 0.336068725773 0.5 0.163931274227 +UniRef50_Q88U22 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.741009846364 0.5 -0.241009846364 +UniRef50_G0DXB0 0.0159915142212 0.5 0.484008485779 +UniRef50_UPI0004548C9D 0.211125630344 0.5 0.288874369656 +UniRef50_P0A232 Phospholipase A1 9.98406489536 0.500000000008 -9.48406489537 +UniRef50_F3LPE7 Outer membrane autotransporter 0.758227219332 0.5 -0.258227219332 +UniRef50_O26834 Putative nickel responsive regulator 2 0.724664265373 0.5 -0.224664265373 +UniRef50_UPI00037DF050 hypothetical protein 2.20565084497 0.499999999998 -1.70565084496 +UniRef50_Q9ZJU5 Anthranilate synthase component 1 0.000226792336068 0.5 0.499773207664 +UniRef50_U5RZU5 0.0259405224496 0.5 0.47405947755 +UniRef50_M4MKF6 1.36573518465 0.5 -0.865735184652 +UniRef50_G4STG9 Pyrophosphate fructose 6 phosphate 1 phosphotransferase 0.0349218776322 0.5 0.465078122368 +UniRef50_F3WSY6 MazG family protein 0.598104825103 0.5 -0.0981048251026 +UniRef50_UPI00047EE3D3 hypothetical protein 0.160914419705 0.5 0.339085580295 +UniRef50_UPI00047A45E7 hypothetical protein 0.351093027514 0.5 0.148906972486 +UniRef50_Q92GE0 3 oxoacyl [acyl carrier protein] reductase FabG 1.48157993979 0.5 -0.981579939791 +UniRef50_UPI000366025E MULTISPECIES 0.256611531028 0.5 0.243388468972 +UniRef50_O07329 Catabolite control protein A 2.69804145322 0.5 -2.19804145322 +UniRef50_Q03UU4 Ketol acid reductoisomerase 0.169690392688 0.5 0.330309607312 +UniRef50_C6PR80 0.00513521873717 0.5 0.494864781263 +UniRef50_G4B1K2 Transcription repair coupling factor 0.152417472507 0.5 0.347582527492 +UniRef50_A4IS03 S ribosylhomocysteine lyase 0.00459220979373 0.499999999999 0.495407790207 +UniRef50_A0A011NLS4 0.00819900662358 0.5 0.491800993376 +UniRef50_Q59094 Superoxide dismutase [Mn] 0.0729080450498 0.5 0.42709195495 +UniRef50_A4WT79 Proton translocating NADH quinone oxidoreductase, chain M 3.09934994219 0.500000000001 -2.5993499422 +UniRef50_P23621 Phosphate regulon sensor protein PhoR 0.469508090408 0.5 0.0304919095919 +UniRef50_B9E752 0.42693751664 0.5 0.0730624833598 +UniRef50_S5YGB9 0.85286434803 0.5 -0.35286434803 +UniRef50_B9E750 1.72894832532 0.5 -1.22894832532 +UniRef50_A3NT46 Oxygen dependent coproporphyrinogen III oxidase 1.84427108987 0.5 -1.34427108987 +UniRef50_UPI00034B714A hypothetical protein 1.59322259019 0.499999999999 -1.09322259019 +UniRef50_I6STQ9 1.184881905 0.5 -0.684881905005 +UniRef50_U4TS42 Phosphorylase 0.681730773407 0.5 -0.181730773407 +UniRef50_G4LBK7 Two component sensor 0.7805188074 0.5 -0.2805188074 +UniRef50_UPI0003F8C513 acetolactate synthase 0.0187919005406 0.5 0.481208099459 +UniRef50_S0L1H4 Diphosphomevalonate decarboxylase 1.35470029509 0.499999999999 -0.85470029509 +UniRef50_UPI00037B22BE hypothetical protein 0.122590380223 0.5 0.377409619777 +UniRef50_A6TQQ4 0.324628653141 0.5 0.175371346859 +UniRef50_G7SBD4 0.508917055156 0.5 -0.00891705515571 +UniRef50_J9NTF4 0.137681576993 0.5 0.362318423007 +UniRef50_P31440 Adenine permease AdeQ 1.70721655464 0.5 -1.20721655464 +UniRef50_UPI00037ECA28 hypothetical protein, partial 1.82773328024 0.500000000001 -1.32773328024 +UniRef50_UPI00035E1B99 hypothetical protein 0.33976940969 0.5 0.16023059031 +UniRef50_A4T5H7 0.0248176457794 0.5 0.475182354221 +UniRef50_P15977 4 alpha glucanotransferase 1.27305739778 0.5 -0.773057397781 +UniRef50_I4N9F9 Lipoprotein 0.376919976997 0.5 0.123080023003 +UniRef50_A0KCX4 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.319939382912 0.5 0.180060617088 +UniRef50_D3H3M8 2.77595793508 0.500000000004 -2.27595793509 +UniRef50_E8U8Y0 Oligoendopeptidase F 0.00114719578363 0.5 0.498852804216 +UniRef50_W4TXL6 Iron ABC transporter 0.137389755536 0.5 0.362610244464 +UniRef50_A1B3M6 2.99548225822 0.500000000001 -2.49548225822 +UniRef50_Q9I5L2 1.01927507787 0.5 -0.519275077869 +UniRef50_Q9I5L3 0.825011968725 0.5 -0.325011968725 +UniRef50_A6LZM7 ABC transporter related 0.173893381152 0.5 0.326106618848 +UniRef50_UPI00047CD6DA hypothetical protein 0.154299463252 0.5 0.345700536748 +UniRef50_Q9TKX3 Sulfate thiosulfate import ATP binding protein CysA 0.19588955238 0.5 0.30411044762 +UniRef50_D5AUK2 Transcriptional regulator, GntR family 0.350238097365 0.5 0.149761902635 +UniRef50_Q14VU5 ORF13 0.0497231686455 0.5 0.450276831355 +UniRef50_UPI0003B67745 exonuclease, partial 0.633919398891 0.5 -0.133919398891 +UniRef50_D5ANZ3 Cytochrome b 1.89632089659 0.5 -1.39632089659 +UniRef50_Q5HQP3 0.66504044164 0.5 -0.16504044164 +UniRef50_C8NEG6 ABC transporter, substrate binding protein, family 3 2.58388961557 0.500000000002 -2.08388961557 +UniRef50_A6LW01 0.622210911744 0.5 -0.122210911744 +UniRef50_UPI00047A328A ABC transporter substrate binding protein 0.0981751544287 0.5 0.401824845571 +UniRef50_O83668 Fructose bisphosphate aldolase 0.00120074085531 0.5 0.498799259144 +UniRef50_X6KYL5 ATPase 0.50810729343 0.5 -0.00810729342953 +UniRef50_Q2CBA4 0.495907254862 0.5 0.00409274513813 +UniRef50_I6T7T2 Permease 2.23243841168 0.5 -1.73243841168 +UniRef50_P0ACQ6 Hydrogen peroxide inducible genes activator 1.89757178669 0.5 -1.39757178669 +UniRef50_Q8D0W8 Sulfate thiosulfate import ATP binding protein CysA 0.296479529948 0.5 0.203520470052 +UniRef50_R9SKE9 Radical SAM domain containing protein 5.51254367218 0.500000000004 -5.01254367219 +UniRef50_G9ZYG4 ABC transporter, solute binding protein 0.221897719076 0.5 0.278102280924 +UniRef50_UPI0003B488FD histidinol dehydrogenase 0.313199957867 0.5 0.186800042133 +UniRef50_W5X7W3 Preprotein translocase subunit SecA 2.47020974377 0.500000000001 -1.97020974378 +UniRef50_Q8YMN9 All4894 protein 2.18767342211 0.5 -1.68767342211 +UniRef50_P76407 Lipid kinase YegS 1.69005306704 0.500000000001 -1.19005306704 +UniRef50_UPI00046E91F0 ATP dependent DNA helicase RuvB 0.303433189624 0.5 0.196566810376 +UniRef50_F2KCE9 Protein tldE, 0.305036673574 0.5 0.194963326426 +UniRef50_R7CNB5 0.121703475533 0.5 0.378296524468 +UniRef50_A4W3H4 Ribosomal RNA small subunit methyltransferase H 0.00362874275399 0.5 0.496371257246 +UniRef50_B4UFY0 Holliday junction ATP dependent DNA helicase RuvA 0.718646804253 0.5 -0.218646804253 +UniRef50_Q089C0 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.95012111984 0.500000000001 -1.45012111984 +UniRef50_UPI0003B490B8 ArsR family transcriptional regulator 0.780115143816 0.5 -0.280115143816 +UniRef50_UPI0002003580 Rhamnan synthesis F, partial 0.444817233797 0.5 0.0551827662026 +UniRef50_A2BPB2 S adenosylmethionine synthase 0.915736110584 0.5 -0.415736110584 +UniRef50_A5I6S3 0.656525410655 0.5 -0.156525410655 +UniRef50_Q1JDC3 SAM dependent methyltransferase 0.632089818371 0.5 -0.132089818371 +UniRef50_UPI0002555D97 glutamine ABC transporter ATP binding protein 0.607611168412 0.5 -0.107611168412 +UniRef50_A6TC48 Cell division protein ZipA homolog 0.347383085588 0.5 0.152616914412 +UniRef50_UPI00021940CD 3 phosphoshikimate 1 carboxyvinyltransferase 0.304574639427 0.5 0.195425360573 +UniRef50_UPI00016C05A2 alpha amylase, catalytic region 0.323808149243 0.5 0.176191850757 +UniRef50_Q5JCY6 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.03336238724 0.5 -0.533362387239 +UniRef50_M8VH72 Mechanosensitive ion channel family protein 1.03648813307 0.5 -0.536488133068 +UniRef50_F0YHZ1 0.0788847731995 0.5 0.421115226801 +UniRef50_Q251B6 Nitrate reductase gamma chain 1.33590595484 0.5 -0.835905954844 +UniRef50_UPI00047789D2 hypothetical protein, partial 4.68848449437 0.5 -4.18848449437 +UniRef50_UPI00046CC1E2 hypothetical protein 0.872500577483 0.5 -0.372500577483 +UniRef50_D1CT73 Replication protein RepA 1.61374744421 0.499999999999 -1.11374744421 +UniRef50_Q7W0R9 DNA directed RNA polymerase subunit beta 0.549125972792 0.5 -0.0491259727919 +UniRef50_B2TQ13 Thiamine phosphate synthase 0.0481232177058 0.5 0.451876782294 +UniRef50_Q6LQV5 0.051719278151 0.499999999999 0.44828072185 +UniRef50_U6LL89 1.14163365007 0.5 -0.64163365007 +UniRef50_I6TNX3 0.90740501718 0.5 -0.40740501718 +UniRef50_UPI000371A755 hypothetical protein 0.00732660758537 0.5 0.492673392415 +UniRef50_Q9RY41 Putative GTP cyclohydrolase 1 type 2 0.00442042269547 0.5 0.495579577305 +UniRef50_B7UYR5 0.572374134071 0.5 -0.0723741340709 +UniRef50_M9VDI6 0.283345549867 0.5 0.216654450133 +UniRef50_Q097V6 NTR 0.0730786012855 0.5 0.426921398715 +UniRef50_P77301 1.52816248015 0.500000000002 -1.02816248015 +UniRef50_Q3JVY5 0.151028215991 0.5 0.348971784009 +UniRef50_W7CT60 XRE family transcriptional regulator 0.358050500042 0.5 0.141949499958 +UniRef50_UPI0004707E78 hypothetical protein 1.70441600977 0.5 -1.20441600977 +UniRef50_M5U388 1.30367097141 0.5 -0.803670971408 +UniRef50_UPI0003738D5A hypothetical protein 1.25131613338 0.499999999999 -0.751316133382 +UniRef50_Q167I1 2.10222453953 0.500000000001 -1.60222453953 +UniRef50_A3M3F4 Urease accessory protein UreF 0.0321514826068 0.5 0.467848517393 +UniRef50_Q63060 Glycerol kinase 0.458634065748 0.5 0.0413659342524 +UniRef50_UPI00042B2928 Chloroplast heat shock protein 70 isoform 1 0.882398469994 0.5 -0.382398469994 +UniRef50_M9VEF8 Glucoamylase S1 S2 0.155704389567 0.5 0.344295610433 +UniRef50_A5V2F8 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.64857197988 0.5 -1.14857197988 +UniRef50_UPI00036140A6 hypothetical protein 0.553898004452 0.5 -0.0538980044518 +UniRef50_W8S0L8 Flagellar protein FlgJ, putative 0.596136072936 0.5 -0.0961360729357 +UniRef50_W0PCE9 0.185163911057 0.5 0.314836088943 +UniRef50_UPI0002EE0684 hypothetical protein 2.43345505074 0.5 -1.93345505074 +UniRef50_B9KPQ7 Ribonuclease BN 1.31629591059 0.500000000001 -0.816295910586 +UniRef50_Q9RS22 0.00606929754287 0.5 0.493930702457 +UniRef50_Q2A1U9 Lipid A export ATP binding permease protein MsbA 0.362328897558 0.5 0.137671102442 +UniRef50_Q83QP2 Fructose like permease IIC component 2.10241752101 0.499999999999 -1.60241752101 +UniRef50_Q4L8U4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.65412643488 0.5 -1.15412643488 +UniRef50_H8GX31 0.00159653272184 0.5 0.498403467278 +UniRef50_U1KQC4 Branched chain amino acid transport 0.489175905443 0.5 0.0108240945566 +UniRef50_UPI0004709E67 membrane protein 0.427885921203 0.5 0.0721140787973 +UniRef50_UPI000407D6C0 MULTISPECIES 0.35800367241 0.5 0.14199632759 +UniRef50_K9QPP2 Mannose 1 phosphate guanylyltransferase 0.00415638836487 0.5 0.495843611635 +UniRef50_UPI0003F78AFE serine protease 0.106938739302 0.5 0.393061260698 +UniRef50_UPI0004714520 hypothetical protein 0.821907890487 0.5 -0.321907890487 +UniRef50_E7Q0E7 2.86586840229 0.5 -2.36586840229 +UniRef50_T1UAW5 CobW HypB UreG, nucleotide binding domain protein 0.0116001562565 0.5 0.488399843744 +UniRef50_Q9UTM8 Putative succinate semialdehyde dehydrogenase C139.05 [NADP] 0.278478516845 0.5 0.221521483155 +UniRef50_UPI0003B349C5 2 hydroxy acid oxidase, partial 0.327332614677 0.5 0.172667385323 +UniRef50_S5SX20 Amino acid ABC transporter ATP binding protein 0.593071299148 0.5 -0.093071299148 +UniRef50_Q3IUW9 TraL 1.09994666177 0.5 -0.599946661772 +UniRef50_I2B6D3 0.31337202662 0.5 0.18662797338 +UniRef50_G2JEX5 0.00834542647676 0.5 0.491654573523 +UniRef50_R1DUC8 0.206316168091 0.5 0.293683831909 +UniRef50_C8S343 1.53942074097 0.500000000001 -1.03942074097 +UniRef50_W0ACQ7 0.285381266385 0.5 0.214618733615 +UniRef50_J4SHG0 PTS system N acetylmuramic acid transporter subunits EIIBC 0.289724617115 0.5 0.210275382885 +UniRef50_UPI00047B5F70 iron ABC transporter ATP binding protein 7.63296745116 0.500000000006 -7.13296745117 +UniRef50_A6QJP6 Zn binding lipoprotein adcA like protein 2.86109609142 0.499999999996 -2.36109609142 +UniRef50_E6SMQ6 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein 1.68408671468 0.5 -1.18408671468 +UniRef50_C0M7M5 Thymidylate kinase 0.256642700429 0.5 0.243357299571 +UniRef50_Q1J230 TatD related deoxyribonuclease 0.00347635986844 0.5 0.496523640132 +UniRef50_UPI00041E2B86 hypothetical protein 0.0395642638534 0.500000000001 0.460435736146 +UniRef50_S9SAD7 4.02384881266 0.499999999998 -3.52384881266 +UniRef50_UPI00037D7D9D hypothetical protein 0.00238437057554 0.5 0.497615629425 +UniRef50_UPI0003648262 hypothetical protein 1.85816541478 0.5 -1.35816541478 +UniRef50_B8GAP1 0.230422422632 0.5 0.269577577368 +UniRef50_C3KRZ1 0.307140128539 0.5 0.192859871461 +UniRef50_K0AWK4 Signal transduction response regulator 0.556619468661 0.5 -0.0566194686609 +UniRef50_F2MTK1 Cysteine synthase 1.2224876073 0.5 -0.722487607296 +UniRef50_A5WC68 Short chain dehydrogenase reductase SDR 0.43492654043 0.5 0.0650734595701 +UniRef50_E3EXD1 Flagellar biosynthesis regulatory protein FlaF 0.466936765542 0.5 0.0330632344577 +UniRef50_UPI0003713DCA hypothetical protein 0.00877346789798 0.5 0.491226532102 +UniRef50_T2H287 2.59859176419 0.5 -2.09859176419 +UniRef50_P0ACK4 Putative aga operon transcriptional repressor 3.42527520586 0.500000000001 -2.92527520586 +UniRef50_X5ET90 M23 peptidase domain protein 0.0331290340753 0.500000000001 0.466870965924 +UniRef50_P46333 Probable metabolite transport protein CsbC 2.9299047679 0.500000000002 -2.4299047679 +UniRef50_I0TGY1 1.27108387766 0.5 -0.771083877656 +UniRef50_P76268 Transcriptional regulator KdgR 3.32150100619 0.500000000001 -2.82150100619 +UniRef50_UPI0004410E83 hypothetical protein AURDEDRAFT_58877, partial 0.795359379338 0.5 -0.295359379338 +UniRef50_H8GVU2 ABC transporter, ATP binding protein 0.0047847202246 0.500000000001 0.495215279774 +UniRef50_B2AGK5 1.24856675739 0.5 -0.748566757393 +UniRef50_UPI000473B328 ABC transporter ATP binding protein, partial 0.69624018723 0.5 -0.19624018723 +UniRef50_Q3IXI2 1.00755502418 0.5 -0.507555024183 +UniRef50_W8S015 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 0.125214800469 0.5 0.374785199531 +UniRef50_B9KSK5 3.97658772106 0.499999999993 -3.47658772105 +UniRef50_H2PRE9 0.219174196537 0.5 0.280825803463 +UniRef50_K7E9E4 0.0148706717297 0.500000000001 0.48512932827 +UniRef50_A7X538 4.39928156053 0.499999999999 -3.89928156053 +UniRef50_B2UUZ0 RNA pyrophosphohydrolase 0.0614546280621 0.5 0.438545371938 +UniRef50_UPI00036109FB hypothetical protein 0.526630449309 0.5 -0.0266304493088 +UniRef50_UPI00037C9F7B hypothetical protein 0.20872229164 0.5 0.29127770836 +UniRef50_UPI00037F00C2 hypothetical protein 0.775625026593 0.5 -0.275625026593 +UniRef50_UPI0003A983A5 amidophosphoribosyltransferase 0.0677349376273 0.5 0.432265062373 +UniRef50_B8GWS6 DNA polymerase III subunit alpha 0.991076011074 0.5 -0.491076011074 +UniRef50_W1JGI9 1.18701423164 0.5 -0.687014231641 +UniRef50_D2T8K9 Aromatic amino acid transaminase 0.00675944513521 0.5 0.493240554865 +UniRef50_UPI00046FDA71 acyl transferase 5.15340518453 0.499999999995 -4.65340518453 +UniRef50_M9VAR4 Response regulator MprA 0.0122315092666 0.5 0.487768490733 +UniRef50_A0A016QSU1 0.00344470243935 0.5 0.496555297561 +UniRef50_UPI000379C227 dehydrogenase 0.87032369069 0.5 -0.37032369069 +UniRef50_A6QIG0 GntR family regulatory protein 1.62277931494 0.5 -1.12277931494 +UniRef50_I6SY16 1.99263378552 0.499999999998 -1.49263378552 +UniRef50_D2PY67 ABC transporter related protein 0.0221737379553 0.5 0.477826262045 +UniRef50_P22344 2.73677104648 0.499999999999 -2.23677104648 +UniRef50_H4CJE2 Bacterial regulatory s, gntR family protein 4.26358920591 0.499999999998 -3.7635892059 +UniRef50_UPI00021A48D6 PREDICTED 0.480652708129 0.5 0.0193472918715 +UniRef50_A6VAY7 Membrane protein, putative 0.36072687385 0.5 0.13927312615 +UniRef50_P17802 A G specific adenine glycosylase 1.91152370985 0.5 -1.41152370985 +UniRef50_Q8ET44 2 hydroxypenta 2,4 dienoate hydratase 0.82867540031 0.5 -0.32867540031 +UniRef50_G2JI07 Transcriptional regulator 0.108447874395 0.5 0.391552125605 +UniRef50_Q2NFZ8 50S ribosomal protein L13 0.0344275225483 0.5 0.465572477452 +UniRef50_P47385 Ribonuclease J 0.731961238643 0.5 -0.231961238643 +UniRef50_C1CA92 Mobile genetic element 0.107539160641 0.5 0.392460839359 +UniRef50_UPI00037DF719 hypothetical protein, partial 1.41296311783 0.5 -0.912963117827 +UniRef50_Q8DUT9 1.32393720931 0.5 -0.82393720931 +UniRef50_UPI00037DF44A molybdate ABC transporter permease 0.473032729685 0.5 0.0269672703154 +UniRef50_Q21RX2 1.7696392472 0.5 -1.2696392472 +UniRef50_A0A024HLH2 1.99314499543 0.5 -1.49314499543 +UniRef50_A3X988 6.57224571464 0.500000000001 -6.07224571464 +UniRef50_C4ZT30 Endoribonuclease SymE 0.32144285497 0.5 0.17855714503 +UniRef50_K1LFR3 0.103293128057 0.5 0.396706871943 +UniRef50_A0Q196 DNA gyrase, A subunit 0.322389722538 0.5 0.177610277462 +UniRef50_P25748 HTH type transcriptional regulator GalS 3.61598005935 0.5 -3.11598005935 +UniRef50_D6AT21 0.609584759005 0.5 -0.109584759005 +UniRef50_UPI000367E513 hypothetical protein 2.27070597271 0.500000000003 -1.77070597272 +UniRef50_Q5HGH1 Isoprenyl transferase 1.03623257563 0.5 -0.536232575633 +UniRef50_A0A058ZPK5 0.243145226947 0.5 0.256854773053 +UniRef50_UPI000466E6FA 3 oxoacyl ACP synthase, partial 0.520176923907 0.5 -0.0201769239075 +UniRef50_O26091 RlpA like lipoprotein 0.0479115466813 0.5 0.452088453319 +UniRef50_UPI000380CA6B hypothetical protein 0.574526786226 0.5 -0.0745267862264 +UniRef50_A8MM09 Diguanylate cyclase 1.44393836039 0.5 -0.943938360388 +UniRef50_P33772 N acetylmuramoyl L alanine amidase AmiA 1.39353569475 0.499999999998 -0.89353569475 +UniRef50_UPI00036F5D2F hypothetical protein, partial 0.114808455754 0.5 0.385191544246 +UniRef50_UPI000416A546 hypothetical protein 1.78141602879 0.499999999999 -1.28141602879 +UniRef50_B5FV81 KLLA0D19929p 0.253275786749 0.5 0.246724213251 +UniRef50_Q6MIR4 NADH quinone oxidoreductase subunit B 0.154822642255 0.5 0.345177357745 +UniRef50_I0C718 Integral membrane protein 15.4657166802 0.499999999992 -14.9657166802 +UniRef50_UPI0004640768 hypothetical protein 1.10186152569 0.5 -0.601861525687 +UniRef50_UPI0003B6DF5B hemin receptor 0.104171224807 0.5 0.395828775193 +UniRef50_D4X8Q2 ParB like protein 1.34750347801 0.5 -0.847503478007 +UniRef50_G7EHM5 0.272414917466 0.5 0.227585082534 +UniRef50_P45563 Purine nucleoside phosphorylase 2 6.60229273819 0.500000000003 -6.10229273819 +UniRef50_B6TQL9 0.0229869219156 0.5 0.477013078084 +UniRef50_Q9C550 2 isopropylmalate synthase 2, chloroplastic 1.12557177016 0.5 -0.625571770158 +UniRef50_A5EYT7 NH dependent NAD(+) synthetase 0.0674529538197 0.5 0.43254704618 +UniRef50_I8HVI3 18.1379786175 0.500000000028 -17.6379786176 +UniRef50_R7BPR1 D amino acid transaminase 0.0808524964417 0.500000000001 0.419147503558 +UniRef50_P59872 Acetyl coenzyme A synthetase 0.00292248120759 0.5 0.497077518793 +UniRef50_UPI000474B8D5 ABC transporter ATP binding protein 0.865754902234 0.5 -0.365754902234 +UniRef50_UPI0004772A28 phospholipase 0.411209322976 0.5 0.0887906770243 +UniRef50_UPI0003806FFB hypothetical protein 3.27103479599 0.500000000002 -2.77103479599 +UniRef50_X5PNE7 2.51494509688 0.499999999997 -2.01494509688 +UniRef50_C5C445 YCII related protein 0.998172090218 0.5 -0.498172090218 +UniRef50_S5XXL2 0.249586499494 0.5 0.250413500506 +UniRef50_Q9LCJ9 FmtB 2.76739645863 0.5 -2.26739645863 +UniRef50_UPI00041BC991 mechanosensitive ion channel protein MscL 0.335177722858 0.5 0.164822277142 +UniRef50_A0A017HRC2 4.80464829831 0.499999999997 -4.3046482983 +UniRef50_UPI00037F91DA hypothetical protein 0.108023538896 0.5 0.391976461104 +UniRef50_Q1GDV5 0.363480267693 0.5 0.136519732307 +UniRef50_F8UHK9 IS4 family transposase 0.243515087299 0.5 0.256484912701 +UniRef50_A2SD53 8 amino 7 oxononanoate synthase 2.56298035627 0.500000000001 -2.06298035627 +UniRef50_UPI000479CA29 ABC transporter permease 0.045957706865 0.5 0.454042293135 +UniRef50_Q5SJ45 Valine tRNA ligase 0.240037746453 0.5 0.259962253547 +UniRef50_P37127 Protein AegA 0.728267627909 0.5 -0.228267627909 +UniRef50_P45537 2.39809115004 0.500000000001 -1.89809115004 +UniRef50_UPI0003730FF4 hypothetical protein 0.0149059475656 0.5 0.485094052434 +UniRef50_UPI0003792FEF thioredoxin, partial 1.69414503553 0.5 -1.19414503553 +UniRef50_UPI00039C7ED5 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.317149062042 0.5 0.182850937958 +UniRef50_P0ACN0 1.50945424017 0.5 -1.00945424017 +UniRef50_Q83GA7 Oligoribonuclease 1.27699049165 0.5 -0.776990491653 +UniRef50_UPI00037DBB4D hypothetical protein 0.315962516997 0.5 0.184037483003 +UniRef50_E1VBT7 Na H(+) antiporter NhaD 3.02931350642 0.499999999995 -2.52931350641 +UniRef50_Q3M8C8 Lysine tRNA ligase 0.126750268421 0.500000000001 0.373249731579 +UniRef50_UPI00037733AF hypothetical protein, partial 0.176030129036 0.5 0.323969870964 +UniRef50_UPI000364EBAA hypothetical protein 0.187780469128 0.5 0.312219530872 +UniRef50_A4EBS8 17.3787058414 0.500000000001 -16.8787058414 +UniRef50_D8LTU3 4.621011137 0.499999999995 -4.12101113699 +UniRef50_Q5HEZ3 Putative fluoride ion transporter CrcB 1 1.34780775548 0.5 -0.84780775548 +UniRef50_W2EZB5 0.326957970656 0.5 0.173042029344 +UniRef50_B1YHH7 Na+ H+ antiporter MnhB subunit related protein 0.0532056732205 0.5 0.446794326779 +UniRef50_F0P908 Transcriptional regulator, GntR family 1.72667036283 0.5 -1.22667036283 +UniRef50_V9W7G7 0.0814233361338 0.500000000001 0.418576663866 +UniRef50_A0A038GMN1 0.805898440493 0.5 -0.305898440493 +UniRef50_U4QJA4 Extracellular ligand binding receptor 0.173742524471 0.5 0.326257475528 +UniRef50_UPI00045E1D0A PREDICTED 0.211969118626 0.5 0.288030881374 +UniRef50_A9KHS7 Radical SAM domain protein 0.151714872006 0.5 0.348285127994 +UniRef50_Q9KWU8 DNA directed RNA polymerase subunit alpha 0.0761155192197 0.5 0.42388448078 +UniRef50_P46707 Probable acetyl CoA acetyltransferase 0.0513698057655 0.5 0.448630194234 +UniRef50_D9X888 Integral membrane protein 0.115758018657 0.5 0.384241981343 +UniRef50_Q3IV17 Putative threonine efflux protein 2.08252157622 0.5 -1.58252157622 +UniRef50_P31126 1.92215510147 0.499999999999 -1.42215510147 +UniRef50_UPI000475237F hypothetical protein 1.35494748522 0.5 -0.854947485217 +UniRef50_Q6MBY2 Protoheme IX farnesyltransferase 0.170944303319 0.5 0.329055696681 +UniRef50_UPI0002558CFD HD superfamily hydrolase like protein, partial 0.317103283446 0.5 0.182896716554 +UniRef50_UPI00016C46AD probable chromosome partitioning protein parB 0.00638667658873 0.5 0.493613323411 +UniRef50_UPI00037F23A8 hypothetical protein 0.470613913779 0.5 0.0293860862209 +UniRef50_B2ICS4 Putative DNA topology modulation protein FlaR 0.249206623309 0.5 0.250793376691 +UniRef50_E3A1I0 Putative transcriptional accessory protein 0.368353405259 0.5 0.131646594741 +UniRef50_B1GZT3 Chorismate synthase 0.051600629657 0.5 0.448399370343 +UniRef50_UPI0002B47979 PREDICTED 0.075997062048 0.5 0.424002937952 +UniRef50_Q02C42 Allantoinase 0.125875211345 0.5 0.374124788655 +UniRef50_A0A011PY56 Putative acetyltransferase 2.49938228385 0.5 -1.99938228385 +UniRef50_UPI0003B33483 MULTISPECIES 0.915392770519 0.5 -0.415392770519 +UniRef50_A4WVT7 Lytic transglycosylase, catalytic 6.77700415503 0.5 -6.27700415503 +UniRef50_A6FVD1 0.956266230472 0.5 -0.456266230472 +UniRef50_W4YP60 0.207339258297 0.5 0.292660741703 +UniRef50_W4YP61 5.57158195317 0.499999999998 -5.07158195317 +UniRef50_A0A024HY78 0.0502733476562 0.5 0.449726652344 +UniRef50_A0A024HY79 0.332469967385 0.5 0.167530032615 +UniRef50_L6T5N5 CRISPR associated helicase Cas3 0.312786378718 0.5 0.187213621282 +UniRef50_UPI000368B121 hypothetical protein 0.0557613960655 0.5 0.444238603934 +UniRef50_Q2FDY2 Putative NADH nitroreductase SAUSA300_2462 1.8611267822 0.499999999998 -1.3611267822 +UniRef50_UPI000471156C MULTISPECIES 5.06682021026 0.499999999992 -4.56682021025 +UniRef50_UPI0003683BB9 hypothetical protein 0.00426588783301 0.5 0.495734112167 +UniRef50_Z9JK63 Transposase 0.00332161159664 0.5 0.496678388403 +UniRef50_A0A023Y025 Multidrug transporter 2.11870434004 0.5 -1.61870434004 +UniRef50_UPI000474A653 guanine permease 1.90575436304 0.5 -1.40575436304 +UniRef50_D0K5S8 Ftsk spoiiie family protein 4.68335681049 0.499999999999 -4.18335681049 +UniRef50_UPI00036ED578 hypothetical protein, partial 0.516920757524 0.5 -0.0169207575243 +UniRef50_J7N103 Cell wall surface anchor family protein 0.101522007265 0.5 0.398477992735 +UniRef50_P77828 10 kDa chaperonin 1 0.0200918570772 0.5 0.479908142923 +UniRef50_R5QB36 0.580902135397 0.5 -0.0809021353966 +UniRef50_UPI00040C1A22 succinate semialdehyde dehydrogenase 0.175351701369 0.5 0.324648298631 +UniRef50_O54151 3 oxoacyl [acyl carrier protein] synthase 3 protein 3 0.298134276647 0.5 0.201865723353 +UniRef50_E3DNN6 Binding protein dependent transport systems inner membrane component 0.00121107497386 0.5 0.498788925026 +UniRef50_Q46834 Putative type II secretion system C type protein YghF 1.07156454554 0.5 -0.571564545538 +UniRef50_UPI0003677725 hypothetical protein 0.345768721223 0.5 0.154231278777 +UniRef50_R9K990 0.919351901034 0.5 -0.419351901034 +UniRef50_Q6GJM8 2.31677372109 0.5 -1.81677372109 +UniRef50_Q9LXS6 Citrate synthase 2, peroxisomal 0.120088023021 0.5 0.379911976979 +UniRef50_R6ND25 N acetylmannosamine kinase 0.300128551486 0.5 0.199871448514 +UniRef50_G2JIZ7 Methionine import ATP binding protein MetN 0.066953896633 0.5 0.433046103367 +UniRef50_A5IQI8 1.42047479548 0.5 -0.92047479548 +UniRef50_Q9I1X7 Multifunctional non homologous end joining protein LigD 0.196474486521 0.5 0.303525513479 +UniRef50_C9WZF0 0.598427415972 0.5 -0.0984274159721 +UniRef50_L1ITB2 1.59130186898 0.499999999999 -1.09130186898 +UniRef50_UPI00036D7E16 hypothetical protein 0.396813052993 0.5 0.103186947007 +UniRef50_G2U6X6 0.916908512422 0.5 -0.416908512422 +UniRef50_Y1DKJ6 Alpha glucosidase yihQ 2.3246691414 0.500000000002 -1.8246691414 +UniRef50_UPI0003762D52 hypothetical protein 0.699523379524 0.5 -0.199523379524 +UniRef50_P78285 Lysozyme RrrD 0.180019227587 0.5 0.319980772414 +UniRef50_O26565 3.41170953245 0.499999999999 -2.91170953245 +UniRef50_Q8XAS8 Ferrous iron permease EfeU 7.11996260273 0.499999999997 -6.61996260272 +UniRef50_A5UMC5 Predicted metal dependent membrane protease 2.78101450488 0.500000000001 -2.28101450489 +UniRef50_Q05762 Bifunctional dihydrofolate reductase thymidylate synthase 1 0.236069848175 0.499999999999 0.263930151825 +UniRef50_P76065 0.789202189581 0.5 -0.289202189581 +UniRef50_UPI0003F08F9D PREDICTED 0.334556195381 0.5 0.165443804619 +UniRef50_Q2NBI6 1.7203209722 0.499999999999 -1.2203209722 +UniRef50_E3A6K9 0.665941750717 0.5 -0.165941750717 +UniRef50_UPI00031A8C2B hypothetical protein 0.795450463911 0.5 -0.295450463911 +UniRef50_Q8P013 0.501254410666 0.5 -0.00125441066576 +UniRef50_A0LH56 Bifunctional protein PyrR 0.12512899981 0.5 0.37487100019 +UniRef50_C9A4C5 Universal bacterial protein YeaZ 0.791863179839 0.5 -0.291863179839 +UniRef50_UPI00036C9E20 hypothetical protein 0.475105213829 0.5 0.0248947861705 +UniRef50_P0AEA0 Curli production assembly transport component CsgF 1.0713128352 0.5 -0.571312835201 +UniRef50_UPI00035005CE PREDICTED 0.334154948161 0.5 0.165845051839 +UniRef50_E2CI08 Membrane bound lytic murein transglycosylase A 0.380586570341 0.5 0.119413429659 +UniRef50_UPI000299DD27 signal recognition particle protein, partial 0.097712114061 0.5 0.402287885939 +UniRef50_P32701 Putative cyclic di GMP phosphodiesterase YjcC 0.56189790992 0.5 -0.0618979099203 +UniRef50_G9RRR3 0.0159540065536 0.5 0.484045993446 +UniRef50_UPI00047ACFC0 glutamyl tRNA amidotransferase 1.17959894294 0.5 -0.679598942943 +UniRef50_J1CAV3 2.544890569 0.5 -2.044890569 +UniRef50_Q5HL30 Transcriptional regulator, LysR family 1.52923461623 0.5 -1.02923461623 +UniRef50_UPI00046AB4F5 hypothetical protein 8.99526684843 0.500000000006 -8.49526684843 +UniRef50_A6LTS7 Stage V sporulation protein E 0.0500741181462 0.499999999999 0.449925881855 +UniRef50_R7EZW8 0.612157693015 0.5 -0.112157693015 +UniRef50_U8X5K1 0.00121449886145 0.5 0.498785501139 +UniRef50_D7A419 ABC transporter related protein 0.963377714689 0.5 -0.463377714689 +UniRef50_Q2NRT0 2.16433962423 0.5 -1.66433962423 +UniRef50_Q0AW39 Imidazoleglycerol phosphate dehydratase 0.329573695517 0.5 0.170426304483 +UniRef50_J4J838 Proline glycine betaine ABC transporter periplasmic protein 3.39589414161 0.5 -2.89589414161 +UniRef50_Q8CUB7 1.67658451282 0.5 -1.17658451282 +UniRef50_Q9RV62 NADH pyrophosphatase 0.00226139331998 0.5 0.49773860668 +UniRef50_Q52664 Glutamate glutamine aspartate asparagine transport system permease protein BztB 1.50602352006 0.5 -1.00602352006 +UniRef50_A3MLT7 Histidine ammonia lyase 0.052045949655 0.5 0.447954050345 +UniRef50_M4WY62 Non specific serine threonine protein kinase 0.381989873078 0.5 0.118010126922 +UniRef50_UPI0003123F96 hypothetical protein 0.49624177075 0.5 0.00375822925046 +UniRef50_UPI00036BA2FA hypothetical protein 0.0159567250306 0.5 0.48404327497 +UniRef50_UPI0004279204 ABC transporter substrate binding protein 0.102874850854 0.5 0.397125149146 +UniRef50_I0C5Y5 0.373329891907 0.5 0.126670108093 +UniRef50_V9VWJ8 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 0.78760108735 0.5 -0.28760108735 +UniRef50_W4TIC1 Lysophospholipase L2 0.0929970794837 0.5 0.407002920516 +UniRef50_UPI000475C78C hypothetical protein 0.448906306078 0.5 0.0510936939216 +UniRef50_UPI000478596D hypothetical protein, partial 0.151973059566 0.499999999999 0.348026940434 +UniRef50_UPI0004776897 50S ribosomal protein L21 0.0205598475512 0.5 0.479440152449 +UniRef50_Q57725 Probable acetolactate synthase large subunit 2.10494414215 0.500000000001 -1.60494414215 +UniRef50_I0DU68 Pirin like protein 0.32863872868 0.5 0.17136127132 +UniRef50_G4RE73 Glutaredoxin 0.822318633643 0.5 -0.322318633643 +UniRef50_B5EZL8 UPF0208 membrane protein YfbV 3.36740839791 0.499999999999 -2.86740839791 +UniRef50_UPI0003792331 hypothetical protein 2.34540472685 0.5 -1.84540472685 +UniRef50_P63482 Alanine racemase 2 1.96905903693 0.500000000002 -1.46905903693 +UniRef50_U9FP56 0.635260443603 0.5 -0.135260443603 +UniRef50_B4UAT5 MJ0042 family finger like protein 0.068766532252 0.500000000001 0.431233467747 +UniRef50_A7FBU7 0.0334939194854 0.5 0.466506080515 +UniRef50_Q8FDG8 L tartrate dehydratase subunit alpha 16.0892251834 0.499999999992 -15.5892251834 +UniRef50_G5Q5Z8 Outer membrane protein NlpB 1.25784086847 0.5 -0.75784086847 +UniRef50_A5IPG6 2.80008272348 0.500000000001 -2.30008272348 +UniRef50_UPI0002ADAB72 1.66621842776 0.5 -1.16621842776 +UniRef50_A5IPG3 23.3655965893 0.499999999966 -22.8655965893 +UniRef50_D0LXH2 0.0775601979839 0.5 0.422439802016 +UniRef50_A6M239 PTS system fructose subfamily IIA component 0.318803055889 0.5 0.181196944111 +UniRef50_Q6MBM7 Succinyl CoA ligase [ADP forming] subunit beta 0.21291112031 0.5 0.28708887969 +UniRef50_UPI000463ADD2 hypothetical protein 0.0399623874393 0.5 0.460037612561 +UniRef50_P24735 Beta lactamase 3.55340949895 0.499999999996 -3.05340949895 +UniRef50_UPI00036198F2 hypothetical protein 0.0606123270886 0.499999999999 0.439387672912 +UniRef50_UPI0003B66134 deoxyguanosinetriphosphate triphosphohydrolase 1.87135052162 0.5 -1.37135052162 +UniRef50_Q4KJK0 Arginine tRNA ligase 1.63996084133 0.5 -1.13996084133 +UniRef50_A5UMU3 Glycosyltransferase, GT2 family 4.39258988114 0.500000000002 -3.89258988114 +UniRef50_Q8XE72 2 dehydropantoate 2 reductase 2.29069896208 0.5 -1.79069896208 +UniRef50_B5YKP8 Phenylacrylic acid decarboxylase 1.30407382543 0.5 -0.804073825432 +UniRef50_Q0SR44 Cell division topological specificity factor 0.203601715102 0.5 0.296398284898 +UniRef50_S4X915 Beta hemolysin 1.91813671845 0.5 -1.41813671845 +UniRef50_W6M0A7 0.0295502527502 0.5 0.47044974725 +UniRef50_G0DV19 Efflux ABC transporter, permease protein 0.0262943097013 0.5 0.473705690299 +UniRef50_UPI000362EEF4 hypothetical protein 0.244493969141 0.5 0.255506030859 +UniRef50_Q0A4X2 DNA polymerase IV 0.202424998458 0.5 0.297575001542 +UniRef50_UPI0003736343 hypothetical protein, partial 0.143999694182 0.5 0.356000305818 +UniRef50_U5MKI7 Subtilisin like serine protease 0.103994152483 0.5 0.396005847518 +UniRef50_Q2GEH7 Adenylosuccinate synthetase 0.146093321365 0.5 0.353906678635 +UniRef50_I1Q3T9 0.292980996151 0.5 0.207019003849 +UniRef50_R5PZK9 Aldo keto reductase 0.0939579742764 0.5 0.406042025723 +UniRef50_Q4UUD9 Flagellar biosynthesis switch protein 2.00253754192 0.5 -1.50253754192 +UniRef50_Q9I3P5 0.395959044649 0.5 0.104040955351 +UniRef50_A4WCP8 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 4.65759216764 0.499999999999 -4.15759216764 +UniRef50_A9LZI0 ABC transporter ATP binding protein 0.0382147485332 0.5 0.461785251467 +UniRef50_F4FKW9 1.11023855819 0.5 -0.610238558189 +UniRef50_B5EZK0 NADH quinone oxidoreductase subunit K 0.374741410794 0.5 0.125258589206 +UniRef50_U5MVT4 Nodulation protein NolG 0.125624608192 0.499999999999 0.374375391808 +UniRef50_A5G6M1 Tryptophan synthase alpha chain 0.889660537366 0.5 -0.389660537366 +UniRef50_UPI000372C358 hypothetical protein 0.187048089967 0.5 0.312951910033 +UniRef50_K7RNR2 Succinate dehydrogenase subunit C 0.0769005437318 0.5 0.423099456268 +UniRef50_M1CWG1 0.0557990489636 0.5 0.444200951037 +UniRef50_P28304 Quinone oxidoreductase 1 2.44341204202 0.499999999999 -1.94341204202 +UniRef50_T0V3S5 2.79825880787 0.5 -2.29825880787 +UniRef50_UPI0003291247 PREDICTED 0.00683991741147 0.5 0.493160082588 +UniRef50_Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 0.312173276464 0.5 0.187826723536 +UniRef50_Q46832 Putative type II secretion system M type protein YghD 1.23640235566 0.5 -0.736402355656 +UniRef50_UPI000378EA8F hypothetical protein 0.313570538668 0.5 0.186429461332 +UniRef50_I1ZM50 Cytosine specific methyltransferase 0.0836332302017 0.5 0.416366769798 +UniRef50_D8JGN7 Surface antigen family protein 0.0104372407581 0.5 0.489562759242 +UniRef50_UPI0002BA2677 hypothetical protein, partial 0.0151322192326 0.5 0.484867780767 +UniRef50_A6M2Z1 Membrane protein containing C terminal PDZ domain 0.0532200316143 0.5 0.446779968386 +UniRef50_A0JW97 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 0.269976268204 0.5 0.230023731796 +UniRef50_UPI000255C63D FhuG, partial 1.88693423202 0.5 -1.38693423202 +UniRef50_UPI0002653F14 PREDICTED 45.6278723576 0.499999999996 -45.1278723576 +UniRef50_UPI0003B5B2C4 NADH dehydrogenase subunit L, partial 0.600623956246 0.5 -0.100623956246 +UniRef50_X7EC41 0.155351231478 0.5 0.344648768522 +UniRef50_U5W2Y7 0.737604558867 0.5 -0.237604558867 +UniRef50_B9KUD4 0.350287260481 0.5 0.149712739519 +UniRef50_F0RMA7 Polyphosphate 0.00448354438304 0.5 0.495516455617 +UniRef50_R6CQ31 0.0711078262214 0.5 0.428892173779 +UniRef50_U6LIN1 TPR domain containing protein, putative 0.370269296999 0.5 0.129730703001 +UniRef50_I0THL6 Branched chain amino acid transport protein AzlD 1.52765626273 0.5 -1.02765626273 +UniRef50_Q2FX83 5.71165676339 0.499999999998 -5.21165676339 +UniRef50_Q2FX82 10.644352435 0.499999999999 -10.144352435 +UniRef50_Q87VA4 Glutathione synthetase 84.7604360297 0.500000000022 -84.2604360297 +UniRef50_Q92W60 Ribose import ATP binding protein RbsA 2 0.994319029346 0.5 -0.494319029346 +UniRef50_G7LXK1 0.187367658568 0.5 0.312632341432 +UniRef50_Q8ZP50 Outer membrane protein W 0.404041421077 0.5 0.0959585789226 +UniRef50_A9M0L0 ATP dependent RNA helicase HrpA 0.0140714428611 0.5 0.485928557139 +UniRef50_W4TIL7 0.064283306511 0.5 0.435716693489 +UniRef50_E1HJW0 Pertactin 4.13359357431 0.499999999998 -3.63359357431 +UniRef50_U5US72 0.0707996253429 0.5 0.429200374657 +UniRef50_UPI00036A56E1 hypothetical protein 1.45988761543 0.499999999999 -0.959887615431 +UniRef50_S9SLK2 1.68333288414 0.5 -1.18333288414 +UniRef50_UPI0004203E19 hypothetical protein 0.384630401657 0.5 0.115369598343 +UniRef50_UPI0003C154AA PREDICTED 0.0330624308723 0.5 0.466937569128 +UniRef50_G7U653 0.0433026903109 0.5 0.45669730969 +UniRef50_C6W3G1 Aminotransferase class I and II 0.104363432372 0.5 0.395636567628 +UniRef50_UPI00042431D1 hypothetical protein 1.3805727015 0.5 -0.8805727015 +UniRef50_T2HSJ7 F pilus assembly protein 1.82219204824 0.5 -1.32219204824 +UniRef50_I0C7C9 dTDP glucose 4,6 dehydratase 4.81223070554 0.5 -4.31223070554 +UniRef50_R7PW61 Type IV leader peptidase 0.240729218911 0.5 0.259270781089 +UniRef50_E8SGS1 3.19709239181 0.5 -2.69709239181 +UniRef50_Q8DUK2 1.80641861562 0.5 -1.30641861562 +UniRef50_A8GY42 ATP synthase subunit alpha 0.1915488574 0.5 0.3084511426 +UniRef50_Q6FUF3 GMP synthase [glutamine hydrolyzing] 0.478761279585 0.5 0.0212387204152 +UniRef50_G4Q6V2 Carbamoyl phosphate synthase large chain 0.296464912101 0.5 0.203535087899 +UniRef50_K4PQ99 Clostridial hydrophobic W 1.02503855241 0.5 -0.525038552411 +UniRef50_UPI00035C4E3D hypothetical protein 0.0259406890529 0.499999999999 0.474059310948 +UniRef50_P13570 Bacterioferritin 1.22247588342 0.5 -0.722475883418 +UniRef50_G7M0S1 Lysine tRNA ligase 0.466022804605 0.5 0.033977195395 +UniRef50_R9YJ81 Thioester reductase domain protein 2.19334448542 0.499999999998 -1.69334448542 +UniRef50_UPI0003B42AEE C4 dicarboxylate ABC transporter 0.113400399158 0.5 0.386599600842 +UniRef50_B3QR98 DNA directed RNA polymerase subunit alpha 0.163016988518 0.5 0.336983011482 +UniRef50_C4LJ74 Polyribonucleotide nucleotidyltransferase 0.171736919453 0.5 0.328263080547 +UniRef50_UPI0003B4EE97 helicase SNF2 0.00540760326787 0.499999999999 0.494592396733 +UniRef50_UPI00036D95BA hypothetical protein 0.394995296134 0.5 0.105004703866 +UniRef50_B4RQR5 MafB5 0.00342094639783 0.5 0.496579053602 +UniRef50_S2WYG7 0.160867245985 0.5 0.339132754015 +UniRef50_Q2NFU2 Glutamate tRNA ligase 8.27123291471 0.5 -7.77123291471 +UniRef50_C5N0Q7 Transition metal uptake transporter, Ni2+ Co2+ transporter family 3.13313096699 0.500000000001 -2.63313096699 +UniRef50_P0A084 Peptide methionine sulfoxide reductase MsrA 1 1.14150308835 0.5 -0.641503088355 +UniRef50_J9P4P6 0.255606361134 0.5 0.244393638866 +UniRef50_F0Y4U2 0.30490601085 0.5 0.19509398915 +UniRef50_UPI0002652BE7 PREDICTED 0.887872969015 0.5 -0.387872969015 +UniRef50_A6LTC6 Methyl accepting chemotaxis sensory transducer 0.111166485475 0.5 0.388833514525 +UniRef50_P0AGG1 Thiamine monophosphate kinase 0.826836515189 0.5 -0.326836515189 +UniRef50_O31875 Ribonucleoside diphosphate reductase NrdEB subunit alpha 0.00107248269508 0.5 0.498927517305 +UniRef50_W4FVH2 0.614038910878 0.5 -0.114038910878 +UniRef50_A5UKG7 SAM dependent methyltransferase, UbiE CobQ family 2.87007912378 0.499999999999 -2.37007912378 +UniRef50_UPI0002629825 monosaccharide ABC transporter ATP binding protein 0.181894625855 0.5 0.318105374145 +UniRef50_J3LY38 0.764840202058 0.5 -0.264840202058 +UniRef50_O85673 Anthranilate 1,2 dioxygenase large subunit 0.036626497373 0.5 0.463373502627 +UniRef50_Q1GKJ0 0.627116639902 0.5 -0.127116639902 +UniRef50_O24457 Pyruvate dehydrogenase E1 component subunit alpha 3, chloroplastic 0.138855382663 0.499999999999 0.361144617337 +UniRef50_UPI0002FF342B hypothetical protein 1.62184149731 0.5 -1.12184149731 +UniRef50_I0JK96 Hit like protein involved in cell cycle regulation 0.800183281054 0.5 -0.300183281054 +UniRef50_A4G1V2 Valine tRNA ligase 0.900382754044 0.5 -0.400382754044 +UniRef50_W7VMY1 0.00768002395654 0.5 0.492319976044 +UniRef50_UPI000262925E hypothetical protein 0.150720387406 0.5 0.349279612594 +UniRef50_Q53143 Diheme cytochrome c type 5.71544154295 0.500000000003 -5.21544154295 +UniRef50_UPI0003760E73 hypothetical protein 5.49719152732 0.499999999993 -4.99719152731 +UniRef50_P36547 HTH type transcriptional regulator eutR 2.32646486602 0.5 -1.82646486602 +UniRef50_UPI0003C7FEAE cation 0.110928043957 0.5 0.389071956043 +UniRef50_M7DZA1 Transcriptional regulator 1.81890283194 0.5 -1.31890283194 +UniRef50_UPI00046569ED MULTISPECIES 0.0416753070782 0.5 0.458324692922 +UniRef50_S9S8N1 0.776513886629 0.5 -0.276513886629 +UniRef50_A3SJL5 0.386813452623 0.5 0.113186547377 +UniRef50_P0AAP2 Protein AdrA 0.55702528871 0.5 -0.0570252887096 +UniRef50_E8SHK7 1.31487633362 0.5 -0.814876333623 +UniRef50_Q4K5Z7 Hemin import ATP binding protein HmuV 0.00252362903243 0.5 0.497476370967 +UniRef50_A6DX59 FlgJ 0.93049851976 0.5 -0.43049851976 +UniRef50_E6DXQ9 0.0366420858361 0.5 0.463357914164 +UniRef50_A3NGC1 0.11762271126 0.5 0.382377288739 +UniRef50_C3P501 ATP phosphoribosyltransferase 0.745680128405 0.5 -0.245680128405 +UniRef50_P58939 Carbamoyl phosphate synthase large chain 0.598058131401 0.5 -0.0980581314012 +UniRef50_O52058 Biotin carboxylase 0.0720959882073 0.5 0.427904011793 +UniRef50_D3QZW7 1.42019726673 0.5 -0.920197266734 +UniRef50_B9JEG2 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2.20928875268 0.5 -1.70928875268 +UniRef50_A0A031JSK7 FAD dependent oxidoreductase 2.54378567084 0.499999999999 -2.04378567084 +UniRef50_UPI00025555DE ribose transport ATP binding protein RbsA 0.35668224145 0.5 0.14331775855 +UniRef50_UPI0003C17A60 PREDICTED 0.100921804686 0.5 0.399078195314 +UniRef50_Q6A948 Pyridoxal biosynthesis lyase PdxS 0.026566791022 0.5 0.473433208978 +UniRef50_C6D7D6 0.0276510434781 0.5 0.472348956522 +UniRef50_Q9VMC6 CG9547 0.455277098066 0.5 0.0447229019335 +UniRef50_Q04D50 Dipeptidase A, Cysteine peptidase, MEROPS family C69 2.38391053013 0.5 -1.88391053013 +UniRef50_X1BPY3 Marine sediment metagenome DNA, contig 0.688380673394 0.5 -0.188380673394 +UniRef50_UPI0003DEC72F PREDICTED 0.543353879617 0.5 -0.0433538796167 +UniRef50_A3M193 Transposition Helper 0.00781798189731 0.499999999999 0.492182018103 +UniRef50_UPI000471875A TetR family transcriptional regulator 0.264157775928 0.5 0.235842224072 +UniRef50_UPI00037E1773 DeoR family transcripitonal regulator 2.3838651384 0.5 -1.8838651384 +UniRef50_UPI00036F7656 MULTISPECIES 1.96656774893 0.5 -1.46656774893 +UniRef50_A9B436 30S ribosomal protein S4 1.02052486954 0.5 -0.520524869541 +UniRef50_J7TT99 Transport protein SgaT, putative 0.134771241559 0.5 0.365228758441 +UniRef50_A5UNM1 Glycosyltransferase CDP glycerol 6.41171981916 0.500000000001 -5.91171981916 +UniRef50_C4S247 Hydrogenase nickel incorporation protein 2.66072892146 0.5 -2.16072892146 +UniRef50_W7CHL0 0.170465739074 0.5 0.329534260926 +UniRef50_F2U144 1.45020965529 0.5 -0.95020965529 +UniRef50_J0ZPP4 0.0523360487859 0.5 0.447663951214 +UniRef50_W4U3A3 Valyl tRNA synthetase 0.0206004279322 0.5 0.479399572068 +UniRef50_P05096 DNA primase 0.601590801551 0.5 -0.101590801551 +UniRef50_P44808 0.772718166921 0.5 -0.272718166921 +UniRef50_Q9ZSS6 Threonine dehydratase biosynthetic, chloroplastic 0.0510551485717 0.5 0.448944851428 +UniRef50_Q8RLE0 Thymidine kinase 0.224578385306 0.5 0.275421614694 +UniRef50_UPI000377E217 hypothetical protein 0.0434110391089 0.499999999999 0.456588960892 +UniRef50_UPI000467D001 hypothetical protein 0.720156961465 0.5 -0.220156961465 +UniRef50_X7U6C1 PPE family protein 2.07633313685 0.499999999997 -1.57633313685 +UniRef50_A3PGB8 Histidine kinase 3.84599063305 0.500000000001 -3.34599063305 +UniRef50_G8R7R2 Methyltransferase family protein 0.157866382159 0.500000000001 0.342133617841 +UniRef50_O86564 L serine dehydratase 2.11008548333 0.5 -1.61008548333 +UniRef50_Q040L6 Pyrrolidone carboxylate peptidase 0.00188902522237 0.5 0.498110974778 +UniRef50_UPI0003F05B0E PREDICTED 0.321450953685 0.5 0.178549046315 +UniRef50_V4HTY9 0.366180260875 0.5 0.133819739125 +UniRef50_A4XXI2 AzlC family protein 1.37330804467 0.5 -0.873308044668 +UniRef50_F8JSP7 0.00105154838286 0.5 0.498948451617 +UniRef50_E8UAV0 Ferripyochelin binding protein 1.18147320297 0.5 -0.68147320297 +UniRef50_UPI00047643BC hypothetical protein 0.261552184925 0.5 0.238447815075 +UniRef50_A6LZP3 LuxR family transcriptional regulator 0.223325825681 0.5 0.276674174319 +UniRef50_UPI00045EBBEF hypothetical protein 0.589106798123 0.5 -0.089106798123 +UniRef50_UPI0003799247 hypothetical protein 0.356547734449 0.5 0.143452265551 +UniRef50_F5TD70 Type I site specific deoxyribonuclease, HsdR family 1.91157625139 0.5 -1.41157625139 +UniRef50_UPI00036F6A1E hypothetical protein 0.989727038906 0.5 -0.489727038906 +UniRef50_H3W5C9 0.0985113294008 0.5 0.401488670599 +UniRef50_UPI000479F12E hypothetical protein 0.287431386618 0.5 0.212568613382 +UniRef50_P0AEV5 Formate hydrogenlyase regulatory protein HycA 0.960637480133 0.5 -0.460637480133 +UniRef50_UPI0004766E4B hemolysin secretion protein D 0.297744562192 0.5 0.202255437808 +UniRef50_UPI000441FC52 PREDICTED 0.357188642354 0.5 0.142811357646 +UniRef50_A5VUC7 Tetracycline resistance protein 0.571985802885 0.5 -0.0719858028853 +UniRef50_UPI0002DF600A hypothetical protein 3.55334464317 0.499999999997 -3.05334464317 +UniRef50_E0RHV7 Predicted transcriptional regulator 0.182767620459 0.5 0.317232379541 +UniRef50_Q9RY38 Oxidoreductase, short chain dehydrogenase reductase family 0.0069506256565 0.5 0.493049374344 +UniRef50_E1VLU5 Short chain dehydrogenase reductase SDR 0.022891508433 0.5 0.477108491567 +UniRef50_W7X1H4 3.89246334096 0.5 -3.39246334096 +UniRef50_UPI000289460A xanthine permease 0.174673287439 0.5 0.32532671256 +UniRef50_H8H074 Phosphoglucomutase phosphomannomutase alpha beta alpha domain I 0.00261770442873 0.5 0.497382295571 +UniRef50_R9SM76 CDP glycerol 2.43795980937 0.5 -1.93795980937 +UniRef50_Q9YAS0 UPF0219 protein APE_1873.1 1.03476441943 0.5 -0.534764419425 +UniRef50_P0A9E1 Arabinose operon regulatory protein 3.81202808771 0.499999999999 -3.31202808771 +UniRef50_Q3JGP6 16.5894414899 0.500000000004 -16.0894414899 +UniRef50_Q99ZP1 Serine hydroxymethyltransferase 0.00748846613088 0.5 0.492511533869 +UniRef50_Q8XMJ3 3 dehydroquinate synthase 0.0378783931005 0.500000000001 0.462121606899 +UniRef50_UPI000362B451 PTS fructose transporter subunit IIA 0.00610308849219 0.5 0.493896911508 +UniRef50_I7DVA3 1.49596033495 0.5 -0.995960334948 +UniRef50_UPI000473C32B branched chain amino acid aminotransferase, partial 4.94745191071 0.500000000001 -4.44745191071 +UniRef50_C4RR63 Secreted protein 0.004162979106 0.5 0.495837020894 +UniRef50_Q4UTD4 Serine tRNA ligase 1.16360449889 0.5 -0.66360449889 +UniRef50_Q97DA2 3 oxoacyl [acyl carrier protein] synthase 3 1.3833117398 0.5 -0.883311739803 +UniRef50_Q5HQF6 Transposase, putative, truncation 6.24613553338 0.500000000001 -5.74613553338 +UniRef50_P11901 Transposase for insertion sequence element IS421 1.72391810336 0.5 -1.22391810336 +UniRef50_UPI000467ECCA hypothetical protein 0.225590471614 0.5 0.274409528386 +UniRef50_Q04JH1 Adenine phosphoribosyltransferase 0.0947661265847 0.5 0.405233873415 +UniRef50_A6M3C4 ATPase like protein 0.565702717104 0.5 -0.0657027171042 +UniRef50_Q4PJD9 Predicted acetyl CoA carboxylase 0.302183029162 0.5 0.197816970838 +UniRef50_W5XBC3 50S ribosomal protein L24 3.88113183029 0.5 -3.38113183029 +UniRef50_E8PH61 AdeT, RND type efflux pump 0.00850700465365 0.499999999999 0.491492995347 +UniRef50_B9M8U3 8 amino 7 oxononanoate synthase 0.213651989865 0.5 0.286348010135 +UniRef50_Q1GGF9 Endoribonuclease L PSP 2.97790068995 0.5 -2.47790068995 +UniRef50_X1CCA7 Marine sediment metagenome DNA, contig 1.49701204172 0.5 -0.997012041722 +UniRef50_A6LSR6 Ribosomal protein S12 methylthiotransferase RimO 0.174795319564 0.5 0.325204680435 +UniRef50_UPI00030C0032 hypothetical protein 1.34923493939 0.5 -0.849234939395 +UniRef50_UPI0003B76375 acetyl CoA carboxylase biotin carboxylase subunit 0.0679722386671 0.5 0.432027761333 +UniRef50_S4XY12 1.01619714667 0.5 -0.516197146666 +UniRef50_A6LY74 Resolvase helix turn helix domain protein 0.0394644547419 0.5 0.460535545258 +UniRef50_UPI00035E0C27 hypothetical protein 0.321025789868 0.5 0.178974210132 +UniRef50_A7FB80 0.00955317322498 0.5 0.490446826775 +UniRef50_A6LR67 Accessory gene regulator B 0.844623208356 0.5 -0.344623208356 +UniRef50_Q8CP92 Membrane spanning protein 0.769680841212 0.5 -0.269680841212 +UniRef50_Q47482 ORF114 0.431862574025 0.5 0.0681374259753 +UniRef50_C7ZV35 II DNA RNA helicase ComFC 1.39275601085 0.499999999999 -0.892756010851 +UniRef50_M3ID57 E1 E2 ATPase 0.158369291621 0.5 0.341630708379 +UniRef50_A0A023FF30 0.0126774996753 0.5 0.487322500325 +UniRef50_H0DLY7 Surface protein G 2.45995955201 0.500000000001 -1.95995955201 +UniRef50_UPI00046D439D hypothetical protein 0.131353231592 0.5 0.368646768408 +UniRef50_UPI0003B4EBBD nitrogen regulatory protein P II 1 0.588135360907 0.5 -0.0881353609065 +UniRef50_M1MAL1 Glycosyltransferase 0.0780987124709 0.5 0.421901287529 +UniRef50_P55294 dTDP glucose 4,6 dehydratase 0.613145549414 0.5 -0.113145549414 +UniRef50_G1Y1D6 18.303040973 0.500000000004 -17.803040973 +UniRef50_A1U6L0 Acetylglutamate kinase 1.01782917802 0.5 -0.517829178021 +UniRef50_D2J655 Replication initiation protein 1.01342898661 0.5 -0.513428986607 +UniRef50_A8LJQ4 Pyrophosphate phospho hydrolase 4.66181407257 0.499999999993 -4.16181407256 +UniRef50_R6VGJ2 Transcriptional regulator 0.381402414181 0.5 0.118597585819 +UniRef50_P34750 Fimbrial assembly protein PilQ 0.599013180305 0.5 -0.0990131803054 +UniRef50_Q4L4Y3 ATP dependent helicase nuclease subunit A 2.18746664085 0.5 -1.68746664085 +UniRef50_UPI00037D8E01 hypothetical protein 2.01425900768 0.499999999999 -1.51425900768 +UniRef50_Q46PF7 Flagellar P ring protein 3.11080084045 0.499999999998 -2.61080084045 +UniRef50_UPI0003B3AA9D alpha amylase 0.441211306839 0.5 0.058788693161 +UniRef50_Q88BP2 1.9371124296 0.499999999999 -1.4371124296 +UniRef50_F2EDD7 Predicted protein 0.43203235887 0.5 0.0679676411295 +UniRef50_Q89DX7 Arginine deiminase 0.0364607317939 0.5 0.463539268206 +UniRef50_Q9PBX0 Ribose 5 phosphate isomerase A 0.0938483334105 0.5 0.40615166659 +UniRef50_P0A925 Phosphatidylglycerophosphatase B 0.21839963798 0.5 0.28160036202 +UniRef50_UPI00037F38F9 hypothetical protein 0.155452220771 0.5 0.344547779229 +UniRef50_D8JJE0 0.0154810780667 0.500000000001 0.484518921932 +UniRef50_UPI00046934E1 hypothetical protein 5.69151619649 0.5 -5.19151619649 +UniRef50_Q8ZPK6 ATP dependent dethiobiotin synthetase BioD 2 0.529566693406 0.5 -0.0295666934058 +UniRef50_B9KRH6 CBR SDC 3 protein 0.565949996218 0.5 -0.0659499962179 +UniRef50_UPI0002EB1E79 hypothetical protein 0.0851716476218 0.5 0.414828352379 +UniRef50_Q0C397 Intracellular protease, PfpI family 2.43205859775 0.5 -1.93205859775 +UniRef50_K2EJR9 0.177591928967 0.5 0.322408071033 +UniRef50_O48917 UDP sulfoquinovose synthase, chloroplastic 4.99362695497 0.499999999998 -4.49362695497 +UniRef50_A5UJN9 0.774321075314 0.5 -0.274321075314 +UniRef50_A9U6J3 Predicted protein 0.22329534218 0.5 0.27670465782 +UniRef50_UPI00035E9CFE 50S ribosomal protein L24 0.203685479225 0.5 0.296314520775 +UniRef50_UPI000472DFA0 hypothetical protein, partial 0.78039011204 0.5 -0.28039011204 +UniRef50_UPI00040078F0 hypothetical protein 0.730613685742 0.5 -0.230613685742 +UniRef50_W5V1P4 Type II secretion system protein E 1.4243829608 0.5 -0.924382960805 +UniRef50_P65904 Phosphoribosylformylglycinamidine synthase 1 4.60473418825 0.499999999998 -4.10473418824 +UniRef50_Q7MAB8 GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE 0.033397677883 0.5 0.466602322117 +UniRef50_K1Y7A4 0.341615875216 0.5 0.158384124784 +UniRef50_T1Y669 Multidrug resistance protein B 3.92130157788 0.499999999999 -3.42130157788 +UniRef50_Q8RHI7 DNA directed RNA polymerase subunit beta 0.584088969823 0.5 -0.0840889698226 +UniRef50_C3AKR0 Cobalamin synthesis protein 0.303324380617 0.5 0.196675619383 +UniRef50_Q9VLJ8 Adenylyltransferase and sulfurtransferase MOCS3 0.296968272124 0.5 0.203031727876 +UniRef50_Q9RSN4 0.00597793614864 0.5 0.494022063851 +UniRef50_A3CP54 ABC transporter membrane spanning permease, arginine histidine transport, putative 0.457210634717 0.5 0.0427893652834 +UniRef50_UPI000345D7AA diaminopimelate decarboxylase 0.0906821937859 0.5 0.409317806214 +UniRef50_I6TNC0 Serine acetyltransferase 0.670884822068 0.5 -0.170884822068 +UniRef50_G7U472 Membrane spanning protein 0.00916038507958 0.5 0.490839614921 +UniRef50_UPI000374B781 hypothetical protein, partial 4.78544216824 0.499999999998 -4.28544216823 +UniRef50_M9VCZ7 0.0886085319384 0.5 0.411391468062 +UniRef50_Q2GW43 Predicted protein 0.122550187968 0.5 0.377449812032 +UniRef50_UPI00029AD767 Gnt II system L idonate transporter IdnT 1.10010172635 0.5 -0.600101726349 +UniRef50_A5UDU8 1.92823799415 0.5 -1.42823799415 +UniRef50_UPI0003718E98 30S ribosomal protein S1 0.150399703073 0.5 0.349600296927 +UniRef50_R9SII2 Hmd co occurring protein HcgC 1.87197658865 0.500000000002 -1.37197658866 +UniRef50_K4ADF5 0.0141900767938 0.5 0.485809923206 +UniRef50_UPI0002195D49 NADPH 0.0752367032575 0.5 0.424763296742 +UniRef50_Q0TM34 Pyridine nucleotide disulphide oxidoreductase 0.0974988211058 0.5 0.402501178894 +UniRef50_A5W887 0.13451674416 0.5 0.36548325584 +UniRef50_A1AT17 Cobyrinic acid A,C diamide synthase 0.0346116429115 0.5 0.465388357088 +UniRef50_W9AMV1 3 oxoadipate enol lactonase 0.0783450488936 0.499999999999 0.421654951107 +UniRef50_P31469 UPF0167 protein CbrC 0.631093253942 0.5 -0.131093253942 +UniRef50_A6D355 0.106034762143 0.5 0.393965237857 +UniRef50_E3B8X8 CobQ CobB MinD ParA nucleotide binding domain protein 0.175884388143 0.5 0.324115611857 +UniRef50_B2TKG7 0.12446993924 0.5 0.37553006076 +UniRef50_UPI000289DAB7 ABC transporter 2.14718619421 0.5 -1.64718619421 +UniRef50_B2TKG9 0.516670883268 0.5 -0.0166708832685 +UniRef50_A6LPH0 0.292892104806 0.5 0.207107895194 +UniRef50_Q2YTW8 0.291546315054 0.5 0.208453684946 +UniRef50_Q39242 Thioredoxin reductase 2 1.45344907683 0.5 -0.953449076835 +UniRef50_U6ZY01 1.25706016515 0.500000000002 -0.75706016515 +UniRef50_A0RWW0 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 0.0901235012706 0.5 0.409876498729 +UniRef50_Q6LLR8 UPF0761 membrane protein PBPRA3489 1.09967013585 0.5 -0.599670135846 +UniRef50_B5XXZ2 4 hydroxybenzoate octaprenyltransferase 0.920826163658 0.5 -0.420826163658 +UniRef50_UPI000406F7B4 MULTISPECIES 0.317889987978 0.5 0.182110012022 +UniRef50_I6ST36 Transcriptional regulator MutR 0.70322788757 0.5 -0.20322788757 +UniRef50_O34453 Nitric oxide synthase oxygenase 1.38560725171 0.500000000001 -0.885607251712 +UniRef50_UPI0003B677CD streptomycin 3 kinase 0.612076431384 0.5 -0.112076431384 +UniRef50_D9RG71 Colicin V production protein 1.22942857676 0.5 -0.729428576758 +UniRef50_P57067 Outer membrane lipoprotein carrier protein 0.0829243714944 0.5 0.417075628505 +UniRef50_A9LZF1 P type cation transporting ATPase 0.322599963333 0.5 0.177400036667 +UniRef50_A7HZX6 Serine tRNA ligase 0.0204771841218 0.5 0.479522815879 +UniRef50_A9TBR6 Predicted protein 1.67389356913 0.500000000001 -1.17389356913 +UniRef50_F6D6D0 Peptidyl tRNA hydrolase 0.0580154130247 0.5 0.441984586975 +UniRef50_UPI0003B5DDB2 ABC transporter ATP binding protein, partial 0.269903484034 0.5 0.230096515966 +UniRef50_E2BKF3 0.0145355678644 0.499999999999 0.485464432136 +UniRef50_K4A2U8 33.0576018262 0.499999999998 -32.5576018262 +UniRef50_F4FN41 Transcriptional regulator, AraC family 2.65074309957 0.500000000003 -2.15074309958 +UniRef50_E3A746 1.24146656878 0.5 -0.741466568779 +UniRef50_F2D3N2 Predicted protein 0.25745937682 0.5 0.24254062318 +UniRef50_Q7WFR5 Ribosomal RNA small subunit methyltransferase H 0.00178919540526 0.5 0.498210804595 +UniRef50_UPI000475712A MFS transporter 1.17771046691 0.499999999999 -0.677710466909 +UniRef50_UPI0002FE50F2 ABC transporter ATP binding protein 0.250432118763 0.5 0.249567881237 +UniRef50_I0C492 Transposase 2.82736136604 0.500000000003 -2.32736136604 +UniRef50_P37105 Signal recognition particle protein 1.68975527889 0.499999999999 -1.18975527889 +UniRef50_Q9HU72 Lactoylglutathione lyase 0.140681448341 0.500000000001 0.359318551659 +UniRef50_Q49VK4 Sensor histidine kinase GraS 5.63439042991 0.500000000001 -5.13439042991 +UniRef50_U6LXV1 0.634697408097 0.5 -0.134697408097 +UniRef50_UPI0004712B82 deoxyguanosinetriphosphate triphosphohydrolase 6.57712347051 0.499999999999 -6.07712347051 +UniRef50_X7ECQ0 0.371725872571 0.5 0.128274127429 +UniRef50_C7J660 Os08g0537001 protein 0.0194393377406 0.5 0.48056066226 +UniRef50_UPI0003B571D7 NAD synthetase 1.27073479157 0.5 -0.770734791572 +UniRef50_A6QIL3 0.837922591985 0.5 -0.337922591985 +UniRef50_Q8CR15 0.619683054677 0.5 -0.119683054677 +UniRef50_O03077 ATP synthase subunit beta, chloroplastic 0.817818278626 0.5 -0.317818278626 +UniRef50_UPI000359A7EA PREDICTED 0.197975159658 0.5 0.302024840342 +UniRef50_Q8H107 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 2, mitochondrial 0.520434467792 0.5 -0.0204344677916 +UniRef50_R4LTE6 0.286293122661 0.5 0.213706877339 +UniRef50_A6LZR2 0.338114209512 0.5 0.161885790488 +UniRef50_A6LZR6 0.0811890348327 0.499999999999 0.418810965168 +UniRef50_Q2Y639 UDP N acetylmuramate L alanine ligase 0.0124977649248 0.5 0.487502235075 +UniRef50_V8B5L5 2.76170712469 0.5 -2.26170712469 +UniRef50_F3SUZ8 Radical SAM domain protein 1.60026960877 0.5 -1.10026960877 +UniRef50_Y1QUK6 1.10030978105 0.5 -0.600309781048 +UniRef50_UPI00047377E9 hypothetical protein, partial 0.222196859838 0.5 0.277803140162 +UniRef50_A3M2I8 Histidinol phosphate aminotransferase 0.0413005470183 0.5 0.458699452982 +UniRef50_A4WVN9 4.47707540771 0.499999999998 -3.97707540771 +UniRef50_UPI000237EED8 CP4 like integrase 0.641523836356 0.5 -0.141523836356 +UniRef50_UPI000463B864 lysine transporter LysE 0.371956328891 0.5 0.128043671109 +UniRef50_Q89KP5 Uridylate kinase 0.14762437955 0.5 0.35237562045 +UniRef50_B1M0V9 0.283300638665 0.5 0.216699361335 +UniRef50_B1M0V4 0.312377177897 0.5 0.187622822103 +UniRef50_UPI0003C18CC4 1.52725494182 0.5 -1.02725494182 +UniRef50_G5RK09 Membrane bound lytic murein transglycosylase A 0.978776283527 0.5 -0.478776283527 +UniRef50_UPI0003B301C3 transcriptional regulator 0.25549579341 0.5 0.24450420659 +UniRef50_T1Y750 IolE protein like protein 1.1194833737 0.5 -0.619483373699 +UniRef50_A6M054 Glycosyl hydrolase family 32, N terminal domain protein 0.066815608665 0.5 0.433184391335 +UniRef50_U5MWS1 Cna B domain protein 0.748762118734 0.5 -0.248762118734 +UniRef50_Q8E2K7 DNA replication and repair protein RecF 0.108291498521 0.5 0.391708501479 +UniRef50_UPI00047CBDF2 hypothetical protein 0.431602607144 0.5 0.0683973928558 +UniRef50_Q92PH0 Glutaminase 5.95375639326 0.499999999998 -5.45375639325 +UniRef50_UPI0004777D5E competence protein 0.180875153826 0.5 0.319124846174 +UniRef50_A6LTY9 0.232204748611 0.5 0.267795251389 +UniRef50_Q8NZX4 Transketolase 0.561847409546 0.5 -0.0618474095462 +UniRef50_UPI0003FFF64C hypothetical protein 0.208241602451 0.5 0.291758397549 +UniRef50_A4WVF5 L malyl CoA beta methylmalyl CoA lyase 0.886718786861 0.5 -0.386718786861 +UniRef50_Q9SR52 Urease 0.0616682001776 0.499999999999 0.438331799823 +UniRef50_UPI00040A8344 potassium ABC transporter ATPase 0.328199020515 0.5 0.171800979485 +UniRef50_UPI000380F703 hypothetical protein 0.84616339521 0.5 -0.34616339521 +UniRef50_D6SH06 3.975698297 0.499999999996 -3.47569829699 +UniRef50_Q892X8 Oligoendopeptidase F 0.0717234209591 0.499999999999 0.428276579042 +UniRef50_F7Y3H5 Enoyl CoA hydratase 0.0020838119513 0.5 0.497916188049 +UniRef50_A1VBP9 Binding protein dependent transport systems inner membrane component 0.00771935093686 0.5 0.492280649063 +UniRef50_A4WQT8 Membrane protein like protein 17.5796295371 0.499999999994 -17.0796295371 +UniRef50_UPI0004686834 glycoside hydrolase family 13 0.00520477886905 0.5 0.494795221131 +UniRef50_P37182 Hydrogenase 2 maturation protease 0.0398023015563 0.5 0.460197698444 +UniRef50_Q93SE0 Vitamin B12 transporter BtuB 3.72087273415 0.500000000003 -3.22087273415 +UniRef50_R7PWN2 3.18380298376 0.5 -2.68380298376 +UniRef50_A0A009DJS4 0.174572698921 0.5 0.325427301079 +UniRef50_UPI000467756F N succinylarginine dihydrolase, partial 0.142210556787 0.5 0.357789443213 +UniRef50_A0A011P1Z9 Inner membrane protein YgaZ 0.987690236034 0.5 -0.487690236034 +UniRef50_Q126M1 Tryptophan synthase beta chain 0.558782252255 0.5 -0.058782252255 +UniRef50_Q87EJ9 Divalent metal cation transporter MntH 0.15697436411 0.5 0.34302563589 +UniRef50_UPI00045E71E0 hypothetical protein 0.0321500836881 0.5 0.467849916312 +UniRef50_Q9RYV0 Oligoendopeptidase F, putative 0.000762720572043 0.5 0.499237279428 +UniRef50_UPI000299DE22 insertion element transposase 0.214016824929 0.5 0.285983175071 +UniRef50_UPI0002C37426 PREDICTED 0.639120615528 0.5 -0.139120615528 +UniRef50_UPI00032A12CA PREDICTED 0.361736322938 0.5 0.138263677062 +UniRef50_N6V3L4 1.12226444551 0.5 -0.622264445515 +UniRef50_Q46793 1.26593278107 0.5 -0.765932781065 +UniRef50_UPI000470AE3D phage infection protein 0.716179881292 0.5 -0.216179881292 +UniRef50_UPI00037632C6 hypothetical protein 0.114025319735 0.5 0.385974680266 +UniRef50_UPI00037FBEB2 hypothetical protein 3.64711223785 0.499999999999 -3.14711223785 +UniRef50_V5VD88 0.0431325708668 0.5 0.456867429133 +UniRef50_UPI0003C0FBBA PREDICTED 0.561542497072 0.5 -0.0615424970724 +UniRef50_P0A9X5 Rod shape determining protein MreB 3.48702547562 0.499999999999 -2.98702547562 +UniRef50_Q2YWJ9 3 dehydroquinate dehydratase 3.72321427827 0.500000000004 -3.22321427827 +UniRef50_Q2LRC2 UDP N acetylglucosamine pyrophosphorylase 0.0169327613662 0.5 0.483067238634 +UniRef50_Q9KDA5 DNA binding protein HU 1 1.03551045323 0.5 -0.535510453228 +UniRef50_A0A017SZJ0 0.0166805474112 0.5 0.483319452588 +UniRef50_D3P3K9 Transposase 0.309013379475 0.5 0.190986620525 +UniRef50_Q9RWI1 0.00114412343374 0.5 0.498855876566 +UniRef50_UPI0004650D81 DNA polymerase III subunit alpha 0.801181154043 0.5 -0.301181154043 +UniRef50_A5N5C6 Redox sensing transcriptional repressor Rex 0.797221246875 0.5 -0.297221246875 +UniRef50_A6LXW2 FMN binding domain protein 0.243017694721 0.5 0.256982305279 +UniRef50_W5X9T1 Capsule biosynthesis protein, putative 0.010811152454 0.5 0.489188847546 +UniRef50_Q5HJ91 Virulence factor EsxA 0.545860800649 0.5 -0.0458608006491 +UniRef50_UPI00035D6DF9 hypothetical protein 0.912403574091 0.5 -0.412403574091 +UniRef50_A6LUC6 HIRAN 1.38861670156 0.5 -0.888616701558 +UniRef50_O34760 Probable quorum quenching lactonase YtnP 0.796710861704 0.5 -0.296710861704 +UniRef50_P32709 Protein NrfD 2.17379546161 0.499999999999 -1.67379546161 +UniRef50_A8LAR7 Pyrimidine nucleoside phosphorylase 0.0237393790684 0.5 0.476260620932 +UniRef50_W5FVF8 0.149380565669 0.5 0.350619434331 +UniRef50_UPI00040BC8B6 hypothetical protein 0.198634224959 0.5 0.301365775041 +UniRef50_UPI00036FB676 hypothetical protein 6.29445254426 0.499999999998 -5.79445254426 +UniRef50_R7PY44 3.78386317119 0.499999999997 -3.28386317119 +UniRef50_Q8NSL1 2 methylcitrate synthase 2 0.595177776488 0.5 -0.0951777764879 +UniRef50_A9FRC1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.718217817158 0.5 -0.218217817158 +UniRef50_Q74GU4 Acetylglutamate kinase 1.45037554058 0.5 -0.950375540577 +UniRef50_A1B414 General secretory system II, protein E domain protein 3.02902741051 0.5 -2.52902741051 +UniRef50_O34990 Formyltetrahydrofolate deformylase 0.000115228013184 0.5 0.499884771987 +UniRef50_UPI0003B4C8ED 3 5 exonuclease, partial 0.394582178961 0.5 0.105417821039 +UniRef50_D3E1K6 Cytidyltransferase related domain containing protein 4.78303179089 0.500000000001 -4.28303179089 +UniRef50_M9RAZ0 0.473645423117 0.5 0.0263545768833 +UniRef50_P32144 0.901240404119 0.5 -0.401240404119 +UniRef50_C2ZP74 Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein 1.70635836587 0.5 -1.20635836587 +UniRef50_UPI00047AA5CF hypothetical protein, partial 0.0961668413862 0.5 0.403833158614 +UniRef50_V4QYP1 HupE UreJ family metal transporter 3.72148371771 0.500000000001 -3.22148371772 +UniRef50_A5IUJ4 DNA mismatch repair protein MutS domain protein 2.49755747626 0.5 -1.99755747626 +UniRef50_I1ZMC2 Multidrug ABC transporter, ATPase and permease component 0.530140038823 0.5 -0.0301400388233 +UniRef50_A3JX48 0.806243478312 0.5 -0.306243478312 +UniRef50_UPI0003B4645F hypothetical protein 0.125054415291 0.5 0.374945584709 +UniRef50_UPI00047B8895 DNA primase 0.21980925753 0.5 0.28019074247 +UniRef50_P37662 3.1387563932 0.5 -2.6387563932 +UniRef50_P37663 1.36695499131 0.5 -0.866954991313 +UniRef50_P37664 0.0663926666899 0.500000000001 0.43360733331 +UniRef50_Q28WI0 Chromosomal replication initiator protein DnaA 2.11267087011 0.5 -1.61267087011 +UniRef50_Q31DK9 Ribosomal RNA small subunit methyltransferase G 0.417834339496 0.5 0.0821656605038 +UniRef50_B0SXH8 Transglutaminase domain protein 0.51284643142 0.5 -0.0128464314199 +UniRef50_U4GBY1 Putative signal peptide protein 0.351069033053 0.5 0.148930966947 +UniRef50_Q4ZUG2 Phenylalanine tRNA ligase beta subunit 0.619346754262 0.5 -0.119346754262 +UniRef50_C5WFX1 Ribosomal protein L21 0.730992280904 0.5 -0.230992280904 +UniRef50_Q51392 Probable alginate O acetylase AlgI 0.38607376161 0.5 0.11392623839 +UniRef50_C7ZXN9 Peptidase A24A 7.13988151875 0.5 -6.63988151875 +UniRef50_U5NRI8 0.117236948526 0.5 0.382763051475 +UniRef50_A4WPL6 1.20241972348 0.5 -0.702419723477 +UniRef50_A3ZQR3 2.21911883587 0.500000000004 -1.71911883588 +UniRef50_W1JLJ8 3.01088195729 0.500000000002 -2.5108819573 +UniRef50_B2V4B1 Peptide deformylase 0.280447121487 0.5 0.219552878513 +UniRef50_A9GXK1 Peptidyl tRNA hydrolase 1.02507854545 0.5 -0.525078545447 +UniRef50_P0A4K2 Cystathionine beta lyase 0.00787763849903 0.5 0.492122361501 +UniRef50_A6LWY3 Transcriptional antiterminator, BglG 0.110339482299 0.5 0.389660517701 +UniRef50_A5UN38 Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD 1.01567440862 0.5 -0.51567440862 +UniRef50_UPI0003A61C77 hypothetical protein 0.125403751978 0.5 0.374596248022 +UniRef50_Q72L31 Uroporphyrinogen decarboxylase 0.316326061249 0.5 0.183673938751 +UniRef50_E6NII4 Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase 0.0163641345696 0.5 0.483635865431 +UniRef50_A5IPW8 Uracil xanthine permease 2.25291419832 0.500000000004 -1.75291419832 +UniRef50_UPI0003B7912D D ribose transporter ATP binding protein 0.351444826423 0.5 0.148555173577 +UniRef50_Q5HRP0 Dihydropteroate synthase 2.3789662193 0.5 -1.8789662193 +UniRef50_R9ZGA8 AraC family transcriptional regulator 0.319440712092 0.5 0.180559287908 +UniRef50_C5DAG0 Extracellular solute binding protein family 1 0.0139396689533 0.5 0.486060331047 +UniRef50_K9NKD1 NAD dependent epimerase dehydratase 0.639171660736 0.5 -0.139171660736 +UniRef50_I1ZK66 Oligoendopeptidase F 0.0151538996184 0.5 0.484846100382 +UniRef50_F4EDJ1 Phosphatidate cytidylyltransferase 0.558437539502 0.5 -0.0584375395019 +UniRef50_R6UCD8 Aminotransferase class I and II 0.917339457028 0.5 -0.417339457028 +UniRef50_W8EXQ8 0.339983506367 0.5 0.160016493633 +UniRef50_UPI0001584DF8 conserved hypothetical protein 0.108338016199 0.5 0.391661983801 +UniRef50_R7PWY7 2.99726365366 0.500000000001 -2.49726365366 +UniRef50_P19317 Probable nitrate reductase molybdenum cofactor assembly chaperone NarW 7.32683374948 0.499999999997 -6.82683374947 +UniRef50_Q18JB5 Formate tetrahydrofolate ligase 0.721202600426 0.5 -0.221202600426 +UniRef50_Q7VL09 8 amino 7 oxononanoate synthase 0.00880183256294 0.5 0.491198167438 +UniRef50_E2XWM2 Amidotransferase 1.21681128155 0.5 -0.716811281545 +UniRef50_B7RLJ4 5.23136453251 0.499999999993 -4.73136453251 +UniRef50_R4R6C5 HlyD family secretion protein domain protein 0.393451304318 0.5 0.106548695682 +UniRef50_Q9XAQ9 NADH quinone oxidoreductase subunit F 0.0105637636746 0.5 0.489436236325 +UniRef50_T5JDW5 0.0157720792802 0.5 0.48422792072 +UniRef50_Q6LTY5 Na translocating NADH quinone reductase subunit E 0.538582677036 0.5 -0.0385826770358 +UniRef50_Q2NEW4 Alanine tRNA ligase 0.824925273403 0.5 -0.324925273403 +UniRef50_Q5HNU8 5 methylthioadenosine S adenosylhomocysteine nucleosidase 1.56786344878 0.5 -1.06786344878 +UniRef50_Q6GGZ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 134.13426158 0.500000000286 -133.634261581 +UniRef50_C7NZH8 Chorismate synthase 0.107884581063 0.5 0.392115418937 +UniRef50_A5UP06 1.17103089907 0.499999999999 -0.671030899065 +UniRef50_UPI000361F275 hypothetical protein 0.272095247385 0.5 0.227904752615 +UniRef50_A6LQ11 Erythronolide synthase., Aspartate racemase 0.182827759973 0.5 0.317172240027 +UniRef50_A0A023X8X0 0.463725249322 0.5 0.0362747506779 +UniRef50_Q6A7E9 ATP dependent Clp protease proteolytic subunit 2 0.0101584399492 0.500000000001 0.48984156005 +UniRef50_A1R5F0 Ribosomal RNA small subunit methyltransferase H 0.000947512455157 0.5 0.499052487545 +UniRef50_A5UP09 1.17004995713 0.499999999999 -0.670049957132 +UniRef50_X2H8Z5 0.0229919531387 0.5 0.477008046861 +UniRef50_V7FG71 0.0926005187343 0.5 0.407399481266 +UniRef50_UPI00032911E8 PREDICTED 0.0336249220933 0.5 0.466375077907 +UniRef50_R7B346 2.47179848865 0.500000000001 -1.97179848865 +UniRef50_K0TNG1 0.0687662023167 0.5 0.431233797683 +UniRef50_UPI0003604578 hypothetical protein 0.591187186259 0.5 -0.0911871862585 +UniRef50_UPI0003A753CE hypothetical protein 1.72981113654 0.499999999999 -1.22981113654 +UniRef50_UPI00037FE958 hypothetical protein 0.11945046935 0.5 0.38054953065 +UniRef50_B7UR12 Purine nucleoside phosphorylase DeoD type 0.911273400472 0.5 -0.411273400472 +UniRef50_C7ZTK0 1.35469588455 0.5 -0.85469588455 +UniRef50_UPI0004704B3B ABC transporter permease 0.255331589697 0.5 0.244668410303 +UniRef50_B9KCQ6 Polyphosphate kinase 0.0125954182046 0.500000000001 0.487404581795 +UniRef50_C5X9K2 0.0519623456705 0.5 0.44803765433 +UniRef50_G7M2R9 ABC type transporter, periplasmic subunit family 3 0.188973460148 0.5 0.311026539852 +UniRef50_I0E8W5 0.019458455232 0.500000000001 0.480541544767 +UniRef50_UPI000470B5F1 hypothetical protein, partial 0.457944674489 0.5 0.042055325511 +UniRef50_Q41805 Extensin like protein 0.957687942825 0.5 -0.457687942825 +UniRef50_Q5X5I2 Ribonuclease H 0.905562766229 0.5 -0.405562766229 +UniRef50_G8VGX4 0.0300645604357 0.5 0.469935439564 +UniRef50_A3PR71 Transcriptional regulator, GntR family 3.5550849714 0.499999999999 -3.0550849714 +UniRef50_A1W649 Membrane lipoprotein lipid attachment site 6.58620082061 0.499999999997 -6.08620082061 +UniRef50_U3B280 0.0739132023377 0.5 0.426086797662 +UniRef50_A6M1W5 Periplasmic binding protein LacI transcriptional regulator 0.150276212734 0.5 0.349723787265 +UniRef50_C4RK38 Polyketide synthase 0.295689191039 0.5 0.204310808961 +UniRef50_A7HH59 Ribosomal RNA small subunit methyltransferase H 0.0179900396124 0.5 0.482009960388 +UniRef50_UPI00038ED75B PREDICTED 0.446088087163 0.5 0.0539119128367 +UniRef50_UPI00037D470D hypothetical protein 10.8373642479 0.500000000002 -10.3373642479 +UniRef50_A9GG06 0.00797205004674 0.5 0.492027949953 +UniRef50_Q03283 Urease subunit beta 0.00310619054198 0.5 0.496893809458 +UniRef50_R7H8U8 Nitroreductase 0.812999018393 0.5 -0.312999018393 +UniRef50_P75858 2.72666476171 0.499999999999 -2.22666476171 +UniRef50_Q0ST10 Transcriptional regulator, Crp Fnr family 1.47328748244 0.5 -0.973287482439 +UniRef50_G8VPJ1 NAD specific glutamate dehydrogenase 0.00151930400055 0.5 0.498480696 +UniRef50_F0P4A3 Acetyltransferase, GNAT family 1.76380796627 0.5 -1.26380796627 +UniRef50_UPI000365B96C cytochrome C oxidase subunit I, partial 0.339155345363 0.5 0.160844654637 +UniRef50_Q5HW32 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.0226938632669 0.5 0.477306136733 +UniRef50_Q129M4 Ribosomal RNA large subunit methyltransferase E 0.562973723369 0.5 -0.0629737233688 +UniRef50_Q9SFH9 Delta aminolevulinic acid dehydratase 1, chloroplastic 0.271071154709 0.5 0.228928845291 +UniRef50_UPI00036BED26 hypothetical protein 0.185234412939 0.5 0.314765587061 +UniRef50_E8SNN7 Ribosomal protein 0.0191491256446 0.5 0.480850874355 +UniRef50_UPI000379BCC8 hypothetical protein 0.151411069384 0.5 0.348588930616 +UniRef50_Q92947 Glutaryl CoA dehydrogenase, mitochondrial 0.0527009683696 0.5 0.44729903163 +UniRef50_Q5HS21 Lipase, putative 1.19633286963 0.5 -0.696332869633 +UniRef50_I2HEM4 0.0283584283513 0.5 0.471641571649 +UniRef50_A0RIM4 L cystine uptake protein TcyP 0.415280151273 0.5 0.0847198487273 +UniRef50_UPI0003C1735E PREDICTED 0.308144987126 0.5 0.191855012874 +UniRef50_Q49ZB9 1.95784914515 0.499999999998 -1.45784914515 +UniRef50_W1WJ70 0.681291922513 0.5 -0.181291922513 +UniRef50_C5N256 Bacteriocin, lactococcin 972 family 9.0126918874 0.49999999999 -8.51269188739 +UniRef50_Q1R4E5 1.46996703193 0.5 -0.969967031935 +UniRef50_Q9X5W3 Cyclic pyranopterin monophosphate synthase 0.0667222769183 0.5 0.433277723082 +UniRef50_UPI0003B792B2 FAD dependent oxidoreductase 0.419365460475 0.5 0.0806345395248 +UniRef50_M9VD00 0.0594553976905 0.5 0.440544602309 +UniRef50_A7IJF9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding 2.07924459032 0.499999999999 -1.57924459031 +UniRef50_UPI000373BD8F hypothetical protein 2.41712033369 0.500000000002 -1.91712033369 +UniRef50_Q2G607 Phosphate import ATP binding protein PstB 0.0498555960418 0.5 0.450144403958 +UniRef50_G0A719 Type VI secretion protein, VC_A0114 family 0.281823203087 0.5 0.218176796913 +UniRef50_Q9I696 Component of chemotactic signal transduction system 0.337557214936 0.5 0.162442785064 +UniRef50_M1FEG3 Sporulation initiation inhibitor protein soj 14.0539762214 0.499999999996 -13.5539762213 +UniRef50_C0ERG4 0.426131372845 0.5 0.0738686271552 +UniRef50_UPI0003B646B9 hypothetical protein 0.406251001395 0.5 0.0937489986046 +UniRef50_B9KQI0 Type III secretion system inner membrane R protein 2.29406318779 0.500000000002 -1.7940631878 +UniRef50_P44614 Tryptophan specific transport protein 2.51774726301 0.500000000001 -2.01774726301 +UniRef50_G2JMU8 0.00908198407739 0.5 0.490918015923 +UniRef50_B1J5I1 0.291466403645 0.5 0.208533596355 +UniRef50_B4VCX3 3.59865723475 0.500000000001 -3.09865723475 +UniRef50_UPI0003B55D0D CTP synthetase 0.0844958631077 0.5 0.415504136892 +UniRef50_P56860 Phosphoadenosine phosphosulfate reductase 0.000424875640427 0.5 0.499575124359 +UniRef50_Q03T56 Ribosomal RNA small subunit methyltransferase A 0.36174027684 0.5 0.13825972316 +UniRef50_W6KBC4 2.79274929873 0.499999999998 -2.29274929873 +UniRef50_P42628 Inner membrane transport protein YhaO 0.291901461191 0.5 0.208098538809 +UniRef50_R4KE37 0.931275670987 0.5 -0.431275670987 +UniRef50_A4WUY8 Substrate binding region of ABC type glycine betaine transport system 6.63143016392 0.5 -6.13143016392 +UniRef50_UPI00026C5B6F transcriptional regulator 0.0914606805985 0.5 0.408539319401 +UniRef50_UPI00035D359F hypothetical protein, partial 0.709371660831 0.5 -0.209371660831 +UniRef50_UPI0004648BE1 chemotaxis protein CheW 0.294817883385 0.5 0.205182116615 +UniRef50_UPI0002B4606A PREDICTED 8.39933771658 0.499999999982 -7.89933771657 +UniRef50_P30177 2.09044005411 0.5 -1.59044005411 +UniRef50_UPI0004723693 PTS system lactose specific transporter subunit IIA 0.546260480411 0.5 -0.0462604804113 +UniRef50_Q04804 Sensor protein PfeS 2.28290515731 0.5 -1.78290515731 +UniRef50_O33566 ORF700 protein 22.0621228753 0.499999999981 -21.5621228753 +UniRef50_UPI0004678A2B cystathionine beta lyase, partial 0.145017347036 0.5 0.354982652964 +UniRef50_UPI00037D0482 50S ribosomal protein L6 0.0159889810752 0.5 0.484011018925 +UniRef50_F0VF06 0.317827189293 0.5 0.182172810707 +UniRef50_P37047 Carbohydrate diacid regulator 2.38727865282 0.5 -1.88727865282 +UniRef50_UPI000475D4DC hypothetical protein 0.378462700531 0.5 0.121537299469 +UniRef50_UPI0003124421 hypothetical protein 0.186940551672 0.5 0.313059448328 +UniRef50_P50735 Cryptic catabolic NAD specific glutamate dehydrogenase GudB 0.00658423715378 0.5 0.493415762846 +UniRef50_A4XNZ9 Lysine exporter protein 0.0523724944539 0.5 0.447627505546 +UniRef50_U4V580 UPF0301 protein HIMB11_01782 0.259321719002 0.5 0.240678280998 +UniRef50_UPI00036AF0AB hypothetical protein 0.148880228896 0.5 0.351119771104 +UniRef50_B8D1K3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.00222165224074 0.5 0.497778347759 +UniRef50_A5UJ58 Adhesin like protein 2.41310032067 0.500000000001 -1.91310032067 +UniRef50_UPI0003703272 hypothetical protein 0.0979357253525 0.5 0.402064274648 +UniRef50_E2ZSG3 Glycolate oxidase, iron sulfur subunit 0.29260832219 0.5 0.20739167781 +UniRef50_L6WWY8 1.10328044399 0.5 -0.603280443991 +UniRef50_UPI000225FE4D coenzyme PQQ biosynthesis protein D 0.7466381328 0.5 -0.2466381328 +UniRef50_UPI0004700C7A hypothetical protein, partial 0.167045322703 0.5 0.332954677297 +UniRef50_K1ZX87 0.231043307913 0.5 0.268956692087 +UniRef50_D3QET9 2.08537397409 0.499999999997 -1.58537397409 +UniRef50_M5X9E3 0.642184205622 0.5 -0.142184205622 +UniRef50_A0A024HK83 DNA polymerase III subunit epsilon 0.153041214061 0.5 0.346958785939 +UniRef50_Q0FDU0 0.48423639572 0.5 0.01576360428 +UniRef50_O34591 Acetoin 0.505266132332 0.5 -0.00526613233237 +UniRef50_UPI00034B0D3D hypothetical protein 1.56797899183 0.5 -1.06797899183 +UniRef50_A7ZKH0 Multidrug resistance protein MdtH 0.937801431639 0.5 -0.437801431639 +UniRef50_A6M3F8 Metal dependent phosphohydrolase 0.0632406543832 0.5 0.436759345617 +UniRef50_A7ZMQ9 UPF0756 membrane protein YeaL 6.31857881355 0.500000000002 -5.81857881355 +UniRef50_A4WXX3 Transcriptional regulator, DeoR family 2.97985383964 0.500000000003 -2.47985383964 +UniRef50_F6AYF6 TonB dependent siderophore receptor 0.0110815399015 0.5 0.488918460099 +UniRef50_UPI00037C438D hypothetical protein 0.305102258821 0.5 0.194897741179 +UniRef50_UPI00047806EC hypothetical protein 0.0734191253389 0.5 0.426580874661 +UniRef50_D6B3T3 Polyketide synthase 2.82440411481 0.499999999999 -2.32440411481 +UniRef50_L8UIS8 0.883731957211 0.5 -0.383731957211 +UniRef50_Q9RXC5 0.00268469899838 0.5 0.497315301002 +UniRef50_C1D4B9 Recombination associated protein RdgC 0.123552618966 0.5 0.376447381033 +UniRef50_Q71YN8 Peptidase T 0.859638435845 0.5 -0.359638435845 +UniRef50_Q2RMC1 Peptidyl tRNA hydrolase 1.74386968522 0.5 -1.24386968522 +UniRef50_A0A009R5V4 TetR family transcriptional regulator domain protein 1.23042044309 0.5 -0.730420443094 +UniRef50_UPI000466D206 50S ribosomal protein L17 0.363767553854 0.5 0.136232446146 +UniRef50_R7PX92 Chlamydial polymorphic outer membrane protein repeat containing domain protein 7.25555871354 0.499999999999 -6.75555871354 +UniRef50_Q5H1S4 Acyl CoA dehydrogenase 0.959610926376 0.5 -0.459610926376 +UniRef50_Q2NGB7 Transporter 2.17607318641 0.5 -1.67607318641 +UniRef50_A5UNH0 1.2552243244 0.500000000001 -0.755224324397 +UniRef50_A5UNH3 0.440486590885 0.5 0.0595134091146 +UniRef50_E6UB19 Arginine biosynthesis bifunctional protein ArgJ 0.191100366419 0.5 0.308899633581 +UniRef50_UPI00036661AC hypothetical protein 0.352984780122 0.5 0.147015219878 +UniRef50_K2EUH3 1.53615785007 0.5 -1.03615785007 +UniRef50_P06971 Ferrichrome iron receptor 4.21635603676 0.500000000001 -3.71635603677 +UniRef50_Q04CP4 Fhu operon transcription regulator 2.21892169327 0.5 -1.71892169327 +UniRef50_O19889 Uroporphyrinogen III C methyltransferase 0.349971153465 0.5 0.150028846535 +UniRef50_Q47427 Tail fiber assembly protein homolog 45.2294280386 0.499999999976 -44.7294280386 +UniRef50_Q04G79 30S ribosomal protein S3 0.461848897343 0.5 0.0381511026569 +UniRef50_A4WDR5 Anaerobic nitric oxide reductase transcription regulator NorR 8.25004196876 0.499999999996 -7.75004196875 +UniRef50_I2JKJ5 Bifunctional adenylate cyclase hybrid sensor diguanylate cyclase response regulator 0.100094848497 0.5 0.399905151503 +UniRef50_K7Y9Y7 Outer membrane protein 0.0185185578105 0.5 0.48148144219 +UniRef50_Q4L6H4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.433461192359 0.5 0.0665388076413 +UniRef50_UPI0003B53166 hypothetical protein 0.380688589502 0.5 0.119311410498 +UniRef50_UPI00046E53C7 hypothetical protein 0.0300043052334 0.500000000001 0.469995694766 +UniRef50_U3SZE2 0.0328186887018 0.5 0.467181311298 +UniRef50_A6LP67 Aminomethyltransferase 1.31505754833 0.5 -0.815057548327 +UniRef50_C3K475 Acetylglutamate kinase 0.0527837956233 0.5 0.447216204377 +UniRef50_UPI0003677E0E hypothetical protein 0.0321359757438 0.499999999999 0.467864024257 +UniRef50_UPI0002BC90CC PREDICTED 0.130127667781 0.500000000001 0.369872332218 +UniRef50_Q1M667 Blue light activated histidine kinase 0.534383293854 0.5 -0.0343832938544 +UniRef50_E3A0D4 1.51890724939 0.5 -1.01890724939 +UniRef50_Q3J430 ATP synthase epsilon chain 1 4.26697313645 0.499999999999 -3.76697313645 +UniRef50_R0TGF0 0.180256626398 0.5 0.319743373602 +UniRef50_E3HHW2 Pirin C terminal cupin domain protein 2 2.04681937953 0.499999999999 -1.54681937953 +UniRef50_UPI0003B4B661 hypothetical protein, partial 1.58495836236 0.5 -1.08495836236 +UniRef50_C6BYG5 UDP N acetylmuramate L alanine ligase 0.277616610994 0.5 0.222383389006 +UniRef50_Q2J728 Translation initiation factor IF 2 0.0156137077878 0.5 0.484386292212 +UniRef50_W8SB38 Pe pgrs family protein 0.0557990489525 0.5 0.444200951048 +UniRef50_A0A009HBV1 Ferrous iron transport protein B 0.00697563504777 0.5 0.493024364952 +UniRef50_UPI000382BA5B DNA glycosylase 0.707663315908 0.5 -0.207663315908 +UniRef50_E2PFC0 0.0945482087783 0.5 0.405451791222 +UniRef50_D6SIZ2 Luciferase family oxidoreductase, FMN dependent, PP_0088 family 1.72716666281 0.500000000001 -1.22716666281 +UniRef50_E8SJV4 Secretory antigen SsaA 23.6052924667 0.500000000021 -23.1052924668 +UniRef50_Q8FJN9 Cardiolipin synthase B 1.69201399821 0.499999999999 -1.19201399821 +UniRef50_A8TW43 Beta lactamase like protein 2.38179339814 0.500000000001 -1.88179339814 +UniRef50_UPI0004652B1C hypothetical protein 0.765564447181 0.5 -0.265564447181 +UniRef50_UPI00031CBF3C hypothetical protein 4.34981829434 0.499999999997 -3.84981829434 +UniRef50_UPI000310C5E8 hypothetical protein 0.361559596506 0.5 0.138440403494 +UniRef50_F5M2T1 Diguanylate cyclase 6.28070263325 0.499999999999 -5.78070263325 +UniRef50_UPI0003769589 hypothetical protein 0.0721465931689 0.5 0.427853406831 +UniRef50_P26276 Phosphomannomutase phosphoglucomutase 0.541093787983 0.5 -0.0410937879832 +UniRef50_C8RWL5 0.986905731092 0.5 -0.486905731092 +UniRef50_Q3Z396 Deferrochelatase peroxidase EfeB 6.80754316367 0.499999999998 -6.30754316367 +UniRef50_A9UTR3 Predicted protein 0.319560307809 0.5 0.180439692191 +UniRef50_T0I6W5 0.644961933716 0.5 -0.144961933716 +UniRef50_P0AC04 Outer membrane protein assembly factor BamD 1.54490603846 0.5 -1.04490603846 +UniRef50_A0A022S625 UvrD REP helicase N terminal domain protein 0.00413121046404 0.5 0.495868789536 +UniRef50_A1B5D2 1.08165927451 0.5 -0.581659274508 +UniRef50_A1B5D1 1.22129089234 0.5 -0.721290892337 +UniRef50_C1A399 Arginine deiminase 0.276752571879 0.5 0.223247428121 +UniRef50_W5XHV0 Glycosyltransferase 36 0.253854175195 0.5 0.246145824805 +UniRef50_C4Z0Q8 Galactose 6 phosphate isomerase 0.0628459303107 0.5 0.437154069689 +UniRef50_Q3IX62 6.79280297938 0.500000000005 -6.29280297939 +UniRef50_Q3IX61 1.69341250799 0.5 -1.19341250799 +UniRef50_A3YTK8 MazG 0.781365048004 0.5 -0.281365048004 +UniRef50_W5X9I3 UDP glucose pyrophosphorylase 1.75009695057 0.5 -1.25009695057 +UniRef50_A3CQV0 33 kDa chaperonin 0.424344021012 0.5 0.0756559789882 +UniRef50_UPI0003666D5F hypothetical protein 0.609530200325 0.5 -0.109530200325 +UniRef50_L0DXM3 ADP heptose lipooligosaccharide heptosyltransferase II 0.0202266049165 0.5 0.479773395084 +UniRef50_UPI000370C5F4 MULTISPECIES 0.0173566570969 0.5 0.482643342903 +UniRef50_Q8DV84 1.30299333916 0.5 -0.802993339164 +UniRef50_G0EVT1 D lactate dehydrogenase 3.26701124457 0.499999999996 -2.76701124456 +UniRef50_F4BQ82 NADH peroxidase 2.5621182348 0.5 -2.0621182348 +UniRef50_A4WXA2 Sulfotransferase 5.51652012469 0.500000000001 -5.01652012469 +UniRef50_W0Z1I7 0.843169107728 0.5 -0.343169107728 +UniRef50_W7JJV3 1.53450839646 0.5 -1.03450839646 +UniRef50_Q5XAQ1 Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase 0.52540751321 0.5 -0.0254075132103 +UniRef50_Q9MA93 Glucose and ribitol dehydrogenase homolog 2 0.209253873866 0.5 0.290746126134 +UniRef50_UPI000255EED3 acetolactate synthase 3 regulatory subunit 0.027835611693 0.5 0.472164388307 +UniRef50_UPI0003B75ED8 3 hydroxyacyl CoA dehydrogenase 0.238435070915 0.5 0.261564929085 +UniRef50_I6TX78 Competence protein transcription factor 1.07327936943 0.5 -0.57327936943 +UniRef50_A9FDL0 tRNA N6 adenosine threonylcarbamoyltransferase 0.229647436508 0.5 0.270352563492 +UniRef50_D3DZK4 Sortase family protein 2.59543764525 0.5 -2.09543764525 +UniRef50_Q9RWY1 Serine threonine protein kinase related protein 0.00206177306247 0.5 0.497938226938 +UniRef50_Q47153 Putative protein FhiA 6.65951520192 0.499999999999 -6.15951520192 +UniRef50_U6GAH2 1.0264715405 0.5 -0.526471540504 +UniRef50_I4YVM4 0.803076226716 0.5 -0.303076226716 +UniRef50_V9XXU2 0.386761924859 0.5 0.113238075141 +UniRef50_P77766 Protein TrpH 0.92812949819 0.5 -0.42812949819 +UniRef50_P69827 PTS system mannitol specific cryptic EIICB component 0.662771463678 0.5 -0.162771463678 +UniRef50_T2EKM2 Fic DOC family protein 0.482860635684 0.5 0.0171393643159 +UniRef50_UPI000309099A hypothetical protein 0.19926843412 0.5 0.30073156588 +UniRef50_S5Y902 0.512229805177 0.5 -0.012229805177 +UniRef50_UPI0003B7338D proline iminopeptidase 0.334348261721 0.5 0.165651738279 +UniRef50_Q3IWE2 Integrase family protein 2.21290827264 0.5 -1.71290827264 +UniRef50_P0DH75 Orotate phosphoribosyltransferase 1.66563827895 0.5 -1.16563827895 +UniRef50_A0A037X3F6 Sodium 2.47420729757 0.5 -1.97420729757 +UniRef50_X1CKD2 Marine sediment metagenome DNA, contig 1.15840198308 0.5 -0.658401983079 +UniRef50_UPI000382C157 MULTISPECIES 0.923041889931 0.5 -0.423041889931 +UniRef50_Q8PY83 CoB CoM heterodisulfide reductase 1 subunit B 4.39207112203 0.499999999999 -3.89207112203 +UniRef50_P58253 Stage 0 sporulation protein A homolog 0.059170428361 0.5 0.440829571639 +UniRef50_Q06400 UPF0394 inner membrane protein YedE 3.41717847959 0.499999999998 -2.91717847958 +UniRef50_A6L2R5 L arabinose isomerase 0.0013363661979 0.5 0.498663633802 +UniRef50_UPI000382BAEE hypothetical protein, partial 1.7307496278 0.5 -1.2307496278 +UniRef50_Q12SM7 Argininosuccinate synthase 0.0336461666952 0.5 0.466353833305 +UniRef50_UPI0003760F37 hypothetical protein 0.295895342575 0.5 0.204104657425 +UniRef50_G7U6J5 Transporter, major facilitator family protein 0.0119151517239 0.5 0.488084848276 +UniRef50_UPI00040DB596 hypothetical protein 0.871681845135 0.5 -0.371681845135 +UniRef50_P31446 Inner membrane protein YidI 0.512550557316 0.5 -0.0125505573159 +UniRef50_G2QV25 0.330565033655 0.5 0.169434966345 +UniRef50_UPI0003B518FF glycerophosphoryl diester phosphodiesterase 0.24041503819 0.5 0.25958496181 +UniRef50_D5ATD5 Flagellar protein, putative 1.30205962563 0.5 -0.802059625628 +UniRef50_UPI00046CA2CA hypothetical protein 0.00305395312728 0.5 0.496946046873 +UniRef50_UPI0003C18CFE PREDICTED 0.14699474356 0.5 0.35300525644 +UniRef50_P57487 Endonuclease 1 0.605098276669 0.5 -0.105098276669 +UniRef50_P0C0R4 Lipase 1.8384435385 0.499999999998 -1.3384435385 +UniRef50_Q5QKR8 UDP N acetylglucosamine 4,6 dehydratase 0.604570606847 0.5 -0.104570606847 +UniRef50_L7LQU6 Putative monotil peptide 0.485211753022 0.5 0.0147882469781 +UniRef50_U6MR10 1.39208411389 0.500000000001 -0.892084113889 +UniRef50_W4TVZ8 Heme ABC transporter 0.115409822456 0.5 0.384590177544 +UniRef50_E1PY25 0.0189001549211 0.5 0.481099845079 +UniRef50_W6R6D1 0.349177231258 0.5 0.150822768742 +UniRef50_M0DCT7 ABC transporter 0.386115701416 0.5 0.113884298584 +UniRef50_A1TM37 Adenylosuccinate synthetase 0.284096949824 0.5 0.215903050176 +UniRef50_C7ND01 Diphosphomevalonate decarboxylase 1.23853316755 0.5 -0.738533167549 +UniRef50_A6LU62 0.307241656485 0.5 0.192758343515 +UniRef50_A3PMY6 ABC transporter related 1.35675035226 0.500000000001 -0.856750352264 +UniRef50_R6SI27 MATE family multi antimicrobial extrusion protein 0.127777311164 0.5 0.372222688836 +UniRef50_K9GVE2 Flp pilus assembly protein TadB 2.50288754206 0.5 -2.00288754206 +UniRef50_UPI000464BD2D hypothetical protein 0.916619117507 0.5 -0.416619117507 +UniRef50_UPI0004702CEA UDP diphosphatase 0.715814561612 0.5 -0.215814561612 +UniRef50_K6DGD7 1.48839882698 0.5 -0.988398826977 +UniRef50_Q6GIU7 Quinolone resistance protein NorA 1.73527913346 0.500000000001 -1.23527913346 +UniRef50_D9SRN1 Cation diffusion facilitator family transporter 0.114883990001 0.5 0.385116009999 +UniRef50_B0BXC2 Holliday junction ATP dependent DNA helicase RuvA 0.630736783294 0.5 -0.130736783294 +UniRef50_UPI0003592A52 PREDICTED 0.31853496567 0.5 0.18146503433 +UniRef50_F8LQS7 0.720499196604 0.5 -0.220499196604 +UniRef50_UPI00047D9DA7 membrane protein 0.701325981513 0.5 -0.201325981513 +UniRef50_G7M6Q3 Lysophospholipase 0.0671444589646 0.5 0.432855541035 +UniRef50_UPI00034C319E hypothetical protein 1.36892371092 0.5 -0.868923710916 +UniRef50_B0KR46 N succinylarginine dihydrolase 0.271782412154 0.5 0.228217587846 +UniRef50_UPI000360EE81 hypothetical protein, partial 2.39524222299 0.499999999999 -1.89524222299 +UniRef50_UPI000373527A hypothetical protein, partial 0.0181760773113 0.499999999999 0.481823922689 +UniRef50_UPI000273E344 0.0425450328596 0.5 0.45745496714 +UniRef50_UPI0003B4641B tRNA delta isopentenylpyrophosphate transferase 0.452368289077 0.5 0.047631710923 +UniRef50_P65858 tRNA pseudouridine synthase B 1.03408117948 0.5 -0.534081179476 +UniRef50_A6LF29 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.116163477406 0.5 0.383836522594 +UniRef50_W0Z6N6 Rhs element Vgr protein 0.241394259541 0.5 0.258605740459 +UniRef50_Q49UP7 4.56750781054 0.5 -4.06750781054 +UniRef50_E4A2Y9 0.181035177601 0.5 0.318964822399 +UniRef50_Q3JRD1 1.71614055887 0.5 -1.21614055887 +UniRef50_Q65UG3 Zinc import ATP binding protein ZnuC 1.46190321426 0.499999999999 -0.961903214257 +UniRef50_C6SJL2 Glutaminyl tRNA synthetase 0.0542476938913 0.5 0.445752306109 +UniRef50_Q6FFB2 Argininosuccinate lyase 0.0151751896696 0.5 0.48482481033 +UniRef50_O67691 Phosphoribosylformylglycinamidine synthase 2 2.72475445678 0.500000000003 -2.22475445678 +UniRef50_Q1I3E4 0.209462212115 0.5 0.290537787885 +UniRef50_I3DVS9 Ribosylpyrimidine nucleosidase 0.105762499121 0.5 0.394237500879 +UniRef50_A5UKN8 Formate dehydrogenase, iron sulfur subunit 3.93489608196 0.499999999998 -3.43489608195 +UniRef50_A0A029LKQ2 Transposase IS66 family protein 0.236927488301 0.5 0.263072511699 +UniRef50_I0BK74 Transcriptional regulator 0.0961839884376 0.5 0.403816011562 +UniRef50_UPI0004281C6D hypothetical protein 1.65094735232 0.5 -1.15094735232 +UniRef50_UPI0004776DB1 hypothetical protein, partial 0.124178800647 0.5 0.375821199353 +UniRef50_Q3JKK7 0.139758965924 0.5 0.360241034075 +UniRef50_Q5F973 Phosphoribosylformylglycinamidine cyclo ligase 0.7171673316 0.5 -0.2171673316 +UniRef50_M9S656 Short chain dehydrogenase 0.0651683236461 0.5 0.434831676354 +UniRef50_Q48P72 Acyl CoA dehydrogenase family protein 0.312372034198 0.5 0.187627965802 +UniRef50_J1KAC8 1.41819331601 0.5 -0.91819331601 +UniRef50_D3E112 Polysaccharide biosynthesis protein 0.406984830928 0.5 0.0930151690724 +UniRef50_UPI000443C5AC PREDICTED 0.0428859647268 0.5 0.457114035273 +UniRef50_P64634 Putative DNA utilization protein HofN 0.0362631512516 0.5 0.463736848749 +UniRef50_UPI0003B6BEF2 3 dehydroquinate dehydratase 0.56998362651 0.5 -0.0699836265095 +UniRef50_X6KT46 0.441621601609 0.5 0.0583783983914 +UniRef50_A7FFL7 Protein NrdI 0.153956653654 0.5 0.346043346346 +UniRef50_UPI000381D661 hypothetical protein 0.0864006170793 0.5 0.413599382921 +UniRef50_UPI00031610FF hypothetical protein 0.0996527543018 0.5 0.400347245698 +UniRef50_W8AT56 Putative transposase, IS630 family 0.0358734516597 0.5 0.46412654834 +UniRef50_UPI0003B5E3DD GTPase Era 0.0410871199761 0.5 0.458912880024 +UniRef50_A3VZS1 1.49108190382 0.500000000001 -0.991081903817 +UniRef50_P21893 Single stranded DNA specific exonuclease RecJ 2.72610060688 0.499999999999 -2.22610060688 +UniRef50_W6RJG6 0.256559181726 0.5 0.243440818274 +UniRef50_Q5HDD6 Gamma hemolysin component A 3.15272706518 0.500000000001 -2.65272706518 +UniRef50_UPI0002F9333F hypothetical protein 0.172567901105 0.5 0.327432098895 +UniRef50_Q3IV09 O acetylhomoserine sulfhydrylase 2.79878693584 0.499999999998 -2.29878693584 +UniRef50_A4VNQ6 Long chain fatty acid CoA ligase 0.579222580675 0.5 -0.0792225806752 +UniRef50_UPI00046FBE0E purine nucleoside phosphorylase 0.111807521172 0.5 0.388192478828 +UniRef50_UPI00016C0F2D oligopeptide transport system permease protein 0.545989201589 0.5 -0.0459892015891 +UniRef50_V4RCH7 0.367803995573 0.5 0.132196004427 +UniRef50_W8RY81 ATP phosphoribosyltransferase regulatory subunit 0.725691192188 0.5 -0.225691192188 +UniRef50_F9JWB9 Tandem lipoprotein 0.406074961923 0.5 0.0939250380774 +UniRef50_W7Q3C9 0.128588843178 0.5 0.371411156822 +UniRef50_Q9RSL6 Molybdate metabolism regulator related protein 0.00174621505279 0.5 0.498253784947 +UniRef50_Q89DJ1 Ribose phosphate pyrophosphokinase 1.49520836159 0.5 -0.995208361593 +UniRef50_V5SZD4 Chemotaxis protein 0.534963288935 0.5 -0.0349632889351 +UniRef50_P31069 Voltage gated potassium channel Kch 0.766473118398 0.5 -0.266473118398 +UniRef50_UPI00037DB293 glutaredoxin, partial 0.594492567599 0.5 -0.0944925675991 +UniRef50_X3EPV1 0.358566664911 0.5 0.141433335089 +UniRef50_N6UFE0 0.0589070795414 0.5 0.441092920458 +UniRef50_A5ULK1 Adenine deaminase 2.74215828123 0.5 -2.24215828123 +UniRef50_K8EIP5 Radical SAM superfamily protein 2.06485103866 0.5 -1.56485103866 +UniRef50_UPI0001CE17CF PREDICTED 0.610765299121 0.5 -0.110765299121 +UniRef50_A8LML0 Major facilitator superfamiy transporter 1.61508287148 0.5 -1.11508287148 +UniRef50_D8UEV7 0.0388501716284 0.5 0.461149828372 +UniRef50_Q49ZY7 0.272705616805 0.5 0.227294383195 +UniRef50_Q8FP91 Probable malate 0.148345932997 0.5 0.351654067003 +UniRef50_D3E2A1 Adhesin like protein 0.197794378702 0.5 0.302205621298 +UniRef50_C6M427 0.0672093949645 0.5 0.432790605036 +UniRef50_B0VBR0 0.00113547482194 0.5 0.498864525178 +UniRef50_F2HSU2 0.355510628472 0.5 0.144489371528 +UniRef50_UPI00037460BA hypothetical protein 0.553495013432 0.5 -0.0534950134318 +UniRef50_UPI00046ED203 hypothetical protein 0.0616866274338 0.5 0.438313372567 +UniRef50_Q5HHH0 Probable cysteine desulfurase 2.07288283374 0.500000000003 -1.57288283375 +UniRef50_K0LZ01 Aminoacylase 6.0671040342 0.49999999999 -5.56710403419 +UniRef50_O05158 PAGS 5 5.98171942318 0.500000000002 -5.48171942318 +UniRef50_UPI00036B729E hypothetical protein 0.400724138921 0.5 0.0992758610786 +UniRef50_UPI0001CBAA68 PREDICTED 0.60494238973 0.5 -0.10494238973 +UniRef50_UPI000476A0F0 hypothetical protein 0.032001659788 0.499999999999 0.467998340213 +UniRef50_UPI000225A96D DNA replication and repair protein 0.361932584337 0.5 0.138067415663 +UniRef50_I3TRT4 0.158762337864 0.5 0.341237662136 +UniRef50_A3PS72 0.648554909342 0.5 -0.148554909342 +UniRef50_D0D1V0 ISSpo9, transposase 30.6091602317 0.500000000008 -30.1091602317 +UniRef50_E1RJD9 Radical SAM domain protein 1.66209933144 0.5 -1.16209933144 +UniRef50_P56480 ATP synthase subunit beta, mitochondrial 1.60475492008 0.5 -1.10475492008 +UniRef50_UPI0003663FE6 hypothetical protein 0.123045990708 0.5 0.376954009292 +UniRef50_Q1CT84 Outer membrane lipoprotein carrier protein 0.0710286198005 0.499999999999 0.4289713802 +UniRef50_UPI0003B62AA1 MULTISPECIES 0.0586210267293 0.5 0.441378973271 +UniRef50_Q74I98 tRNA ) methyltransferase 1.46647847279 0.499999999999 -0.966478472786 +UniRef50_UPI0002629E92 molybdenum cofactor biosynthesis protein 1.39754789312 0.5 -0.897547893124 +UniRef50_R4ZNC7 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 1.65178043065 0.5 -1.15178043065 +UniRef50_UPI00036F9B44 hypothetical protein, partial 0.251622942329 0.5 0.248377057671 +UniRef50_Q0BGD7 Putative ribose galactose methyl galactoside import ATP binding protein 1 0.322279991236 0.5 0.177720008764 +UniRef50_T2EKK2 Type I restriction modification DNA specificity domain protein 3.28498650813 0.5 -2.78498650813 +UniRef50_B4RVP1 Lipoprotein signal peptidase 0.127099897854 0.5 0.372900102146 +UniRef50_Q2YYZ8 UPF0060 membrane protein SAB2216c 0.763337427282 0.5 -0.263337427282 +UniRef50_B5F8H0 Glutathione regulated potassium efflux system ancillary protein KefG 3.55514706876 0.5 -3.05514706876 +UniRef50_UPI000374D55A MULTISPECIES 0.0116868370498 0.5 0.48831316295 +UniRef50_A0A024JQ60 Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Fragment) 0.227354976755 0.5 0.272645023245 +UniRef50_A6LWE1 Multi sensor hybrid histidine kinase 0.294363235608 0.5 0.205636764392 +UniRef50_G7LY47 Multi sensor signal transduction histidine kinase 0.0165554181691 0.5 0.483444581831 +UniRef50_D3P6U6 ATP dependent helicase Lhr and Lhr like helicase 1.5163022272 0.5 -1.0163022272 +UniRef50_C4ZIQ5 Transcriptional regulator, BadM Rrf2 family 0.37571308036 0.5 0.12428691964 +UniRef50_UPI0003B7698F hypothetical protein 0.266480031485 0.5 0.233519968515 +UniRef50_UPI00046423BB MULTISPECIES 1.3120347244 0.5 -0.812034724402 +UniRef50_P0AAC5 Inner membrane protein YbhL 0.392093403993 0.5 0.107906596007 +UniRef50_Q67JV0 50S ribosomal protein L16 0.757844550045 0.5 -0.257844550045 +UniRef50_S3XCS7 0.0364246028042 0.5 0.463575397196 +UniRef50_Q89AM3 Adenylosuccinate lyase 0.143357553426 0.5 0.356642446574 +UniRef50_K0RMT8 0.274365455488 0.5 0.225634544512 +UniRef50_C7ZXZ9 4.12384593563 0.5 -3.62384593563 +UniRef50_UPI0002D7A7D9 hypothetical protein 0.252258173436 0.5 0.247741826564 +UniRef50_Q6G7M7 D alanine D alanine ligase 1.73410816294 0.499999999999 -1.23410816294 +UniRef50_A5ULE1 Phosphoribosylformylglycinamidine synthase related protein 2.88216182365 0.500000000002 -2.38216182365 +UniRef50_Q46856 Alcohol dehydrogenase YqhD 0.248826462226 0.5 0.251173537774 +UniRef50_Q4JIU1 4.35688668822 0.5 -3.85688668822 +UniRef50_B6YWH0 Glyoxylate reductase 6.09538573074 0.499999999999 -5.59538573074 +UniRef50_T2HA74 Polysaccharide biosynthesis protein WbpM 2.0287890041 0.5 -1.5287890041 +UniRef50_Q9I4V0 Nitronate monooxygenase 0.703054707988 0.5 -0.203054707988 +UniRef50_UPI00021A5C77 PREDICTED 0.90555914482 0.5 -0.40555914482 +UniRef50_UPI0001AF28DC putative NRPS 0.0259729316049 0.500000000001 0.474027068394 +UniRef50_P0AC61 Glutaredoxin 2 1.83228181498 0.5 -1.33228181498 +UniRef50_B2THH4 HDIG domain HD domain protein 0.0671974201805 0.5 0.43280257982 +UniRef50_H7QP44 Thioesterase superfamily protein 1.13654028357 0.5 -0.636540283567 +UniRef50_F7ZCY2 High affinity branched chain amino acid transport system permease protein 1.23028556687 0.5 -0.730285566868 +UniRef50_A5IQI7 Iron dependent repressor 1.51322410608 0.500000000001 -1.01322410608 +UniRef50_UPI000479C12C hypothetical protein 0.0436493693611 0.5 0.456350630639 +UniRef50_U3QQX1 C4 dicarboxylate ABC transporter 0.190350372683 0.5 0.309649627317 +UniRef50_Q8XHH1 Prolipoprotein diacylglyceryl transferase 2 0.281804947813 0.5 0.218195052187 +UniRef50_UPI000371D403 hypothetical protein 0.344180608386 0.5 0.155819391614 +UniRef50_UPI00036A9BE8 hypothetical protein, partial 0.087472095583 0.499999999999 0.412527904418 +UniRef50_T5YMK1 Putrescine aminotransferase 0.878961351919 0.5 -0.378961351919 +UniRef50_A6X0F3 Glutathione S transferase domain protein 1.54745039558 0.500000000001 -1.04745039558 +UniRef50_P0AAS6 1.95739342625 0.499999999999 -1.45739342625 +UniRef50_A1B5Z0 UPF0042 nucleotide binding protein Pden_2850 4.4099312708 0.5 -3.9099312708 +UniRef50_P76221 TVP38 TMEM64 family inner membrane protein YdjZ 1.52333247405 0.500000000001 -1.02333247405 +UniRef50_UPI000464FB5D hypothetical protein 2.8950024361 0.500000000002 -2.3950024361 +UniRef50_E7I7N1 Cryptic beta glucoside bgl operon antiterminator 1.19087454559 0.5 -0.690874545586 +UniRef50_V4JK35 5.66510684057 0.500000000004 -5.16510684057 +UniRef50_UPI00040B5335 peptide ABC transporter ATP binding protein 0.126512542453 0.5 0.373487457547 +UniRef50_Q49UZ0 Orn Lys Arg decarboxylase family protein 1.72541398987 0.499999999998 -1.22541398987 +UniRef50_J7GCQ9 1.33933664235 0.499999999999 -0.839336642353 +UniRef50_V5V9H0 SAM dependent methyltransferase 0.0220279808933 0.5 0.477972019107 +UniRef50_Q8ESX1 Rhamnulokinase 0.0854415747147 0.499999999999 0.414558425286 +UniRef50_Q7MDH6 Sugar phosphate permease 2.44750781201 0.500000000001 -1.94750781201 +UniRef50_U5T5B4 0.145714764499 0.5 0.354285235502 +UniRef50_L5TAD4 0.0931586022558 0.5 0.406841397744 +UniRef50_T9KFG8 Phage protein 0.837207629564 0.5 -0.337207629564 +UniRef50_Q0TD54 Glutamate ammonia ligase adenylyltransferase 4.72925785541 0.499999999993 -4.22925785541 +UniRef50_D5AQD8 1.53338766308 0.5 -1.03338766308 +UniRef50_K1YSK2 0.275599711524 0.5 0.224400288476 +UniRef50_W0H8V7 GGDEF domain EAL domain protein 0.883393890519 0.5 -0.383393890519 +UniRef50_Q9HXI1 Protein translocase subunit SecD 0.121204637638 0.5 0.378795362361 +UniRef50_UPI0003B4F453 uridine cytidine kinase 0.15406211765 0.5 0.34593788235 +UniRef50_UPI00037F9CB9 hypothetical protein 0.0893947249255 0.5 0.410605275075 +UniRef50_UPI00047891B3 hypothetical protein 1.29823844427 0.5 -0.798238444268 +UniRef50_G2FHS7 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 0.320223309133 0.5 0.179776690867 +UniRef50_Q6GEF4 Protein FdhD homolog 2.84263907505 0.499999999998 -2.34263907505 +UniRef50_D2QKI4 AMP dependent synthetase and ligase 1.88316149597 0.5 -1.38316149597 +UniRef50_UPI000377E954 hypothetical protein 0.0918366523719 0.5 0.408163347628 +UniRef50_S9SK01 0.318645526584 0.5 0.181354473416 +UniRef50_Q8NMT1 Uronate isomerase 0.231447720932 0.5 0.268552279068 +UniRef50_Q8DSG4 Aspartyl glutamyl tRNA amidotransferase subunit C 0.842939543074 0.5 -0.342939543074 +UniRef50_B4F1G9 Argininosuccinate lyase 1.981398279 0.5 -1.481398279 +UniRef50_UPI0003592D1E PREDICTED 0.207239672334 0.5 0.292760327666 +UniRef50_UPI000317A305 hypothetical protein 1.18602063928 0.5 -0.686020639277 +UniRef50_Q6FEF0 0.0177912016913 0.5 0.482208798309 +UniRef50_P07024 Protein UshA 3.39826424838 0.500000000004 -2.89826424838 +UniRef50_UPI000381BCCD hypothetical protein 0.216267829815 0.5 0.283732170185 +UniRef50_A1WG04 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 2.37051828436 0.499999999998 -1.87051828436 +UniRef50_Q6FEF8 0.00678436457874 0.5 0.493215635421 +UniRef50_M1MKU0 0.273428608703 0.5 0.226571391297 +UniRef50_D5AT19 0.488903926753 0.5 0.0110960732474 +UniRef50_W0M3M5 RNA pseudouridine synthase family protein 0.0955822652256 0.5 0.404417734774 +UniRef50_UPI000472066C hypothetical protein 1.20548472863 0.5 -0.705484728628 +UniRef50_R7N6I1 Thiamine pyrophosphate protein domain protein TPP binding 0.0333257277997 0.5 0.4666742722 +UniRef50_W5LSB3 0.200551987476 0.5 0.299448012524 +UniRef50_UPI00047AC46D hypothetical protein 0.254853895164 0.5 0.245146104836 +UniRef50_A3W953 0.775618533926 0.5 -0.275618533926 +UniRef50_G2T956 Thioesterase superfamily protein 0.00799444063501 0.5 0.492005559365 +UniRef50_A4WT88 Autoinducer binding domain protein 1.41591400984 0.5 -0.915914009843 +UniRef50_Q883F3 Urease subunit gamma beta 0.00403366644522 0.5 0.495966333555 +UniRef50_G8VJT5 Lysophospholipase 0.0629385426049 0.500000000001 0.437061457394 +UniRef50_UPI0004638C41 D alanyl D alanine carboxypeptidase 0.319428819654 0.5 0.180571180346 +UniRef50_UPI00038F7D5E Allantoinase 0.358560984371 0.5 0.141439015629 +UniRef50_B4T534 Isopentenyl diphosphate Delta isomerase 0.385779623774 0.5 0.114220376226 +UniRef50_M1MET0 Cell wall binding repeat containing protein 0.130703726223 0.5 0.369296273777 +UniRef50_W6M800 0.260260154483 0.5 0.239739845517 +UniRef50_Q9RYT6 TDP glucose 4,6 dehydratase related protein 0.00705726924841 0.5 0.492942730752 +UniRef50_O85342 Mannose 1 phosphate guanylyltransferase 2 0.969142724547 0.5 -0.469142724547 +UniRef50_F0QHU9 Lipid A phosphoethanolamine transferase, associated with polymyxin resistance 0.027913182459 0.5 0.472086817541 +UniRef50_W8V286 Beta hydroxyacyl ACP dehydratase 0.168167626759 0.5 0.331832373241 +UniRef50_Q8XRC2 UPF0271 protein RSp0936 0.074892618471 0.5 0.425107381529 +UniRef50_UPI000470CB6A hypothetical protein, partial 0.199106866865 0.5 0.300893133135 +UniRef50_V9QR17 GntR family transcriptional regulator 1.87421859035 0.499999999999 -1.37421859035 +UniRef50_S5XZH4 Replication protein C 2.94558466722 0.499999999998 -2.44558466722 +UniRef50_S2ZMR6 0.170577122142 0.5 0.329422877858 +UniRef50_P42604 Altronate dehydratase 0.244581715116 0.5 0.255418284884 +UniRef50_UPI0004081C8A ABC transporter ATP binding protein 0.0636753911158 0.5 0.436324608884 +UniRef50_UPI00037C4CDF hypothetical protein 0.4393333037 0.5 0.0606666963004 +UniRef50_A0A035VXH8 2.43448209624 0.5 -1.93448209624 +UniRef50_UPI0002F80216 ABC transporter ATP binding protein 0.205978712227 0.5 0.294021287773 +UniRef50_UPI00036DADFE hypothetical protein 1.38701843393 0.5 -0.887018433934 +UniRef50_UPI0003FA02C9 hypothetical protein 0.125755577503 0.5 0.374244422497 +UniRef50_Q67N85 L threonine 3 dehydrogenase 0.06902271305 0.5 0.43097728695 +UniRef50_P70971 0.174755383853 0.5 0.325244616147 +UniRef50_Q6SSE6 Plus agglutinin 0.0631451073166 0.5 0.436854892683 +UniRef50_Q8YI99 Pyrazinamidase nicotinamidase 0.495053581454 0.5 0.00494641854592 +UniRef50_B7V5U6 0.303311382491 0.5 0.196688617509 +UniRef50_M3VMM8 Insoluble matrix protein 0.240540134636 0.5 0.259459865364 +UniRef50_Q8CT01 1.08108664041 0.5 -0.581086640408 +UniRef50_T5MN46 Inner membrane amino acid ABC transporter permease yhdY 0.330895325533 0.5 0.169104674467 +UniRef50_G7ZNW2 1.62141522189 0.499999999999 -1.12141522189 +UniRef50_Q28RH4 0.127968314489 0.5 0.372031685511 +UniRef50_Q2W825 Predicted transcriptional regulator 3.28745839291 0.499999999998 -2.78745839291 +UniRef50_C6S923 Thiol 0.19474961435 0.5 0.30525038565 +UniRef50_UPI0004449CBD SKN1 domain containing protein 0.0708699686993 0.5 0.429130031301 +UniRef50_B2J5F8 Malate dehydrogenase 1.88027548208 0.500000000001 -1.38027548208 +UniRef50_UPI00036B8B42 hypothetical protein 1.80759385038 0.5 -1.30759385038 +UniRef50_P30847 Signal transduction histidine protein kinase BaeS 1.28238071339 0.5 -0.782380713388 +UniRef50_N4UTL9 1.14950445117 0.5 -0.649504451169 +UniRef50_UPI0002375E1A epimerase 2.25083940759 0.500000000002 -1.75083940759 +UniRef50_H8GXK1 Coenzyme F390 synthetase FtsA 0.0289377528708 0.5 0.471062247129 +UniRef50_A5IVA2 Bile acid 1.1845004821 0.5 -0.684500482095 +UniRef50_Q83MN8 Chromosome partitioning protein ParA 0.361140021945 0.5 0.138859978055 +UniRef50_Q1IWN0 Carbamoyl phosphate synthase small chain 0.00273346167324 0.5 0.497266538327 +UniRef50_P0AFN8 Inner membrane transport permease YadH 0.993046294966 0.5 -0.493046294966 +UniRef50_P0AD69 Peptidoglycan synthase FtsI 2.30826062837 0.499999999998 -1.80826062836 +UniRef50_Q931T2 2.40415488302 0.5 -1.90415488302 +UniRef50_UPI0004769FCE hypothetical protein 0.158366554703 0.5 0.341633445296 +UniRef50_Q7UKI3 Succinyl CoA ligase [ADP forming] subunit beta 1.22420784601 0.5 -0.724207846013 +UniRef50_Q9PQK7 CTP synthase 0.359416857153 0.5 0.140583142847 +UniRef50_Y1DSI1 Nitrite extrusion protein 1 0.834920756901 0.5 -0.334920756901 +UniRef50_W0RI86 von Willebrand factor type A 0.0011779623661 0.5 0.498822037634 +UniRef50_Q6GDQ8 Holin like protein CidB 1.62841000979 0.500000000001 -1.12841000979 +UniRef50_Q9RVB8 Transcriptional regulator, MerR family 0.0260423259253 0.5 0.473957674075 +UniRef50_D0IUG7 Type III R M system restriction enzyme 0.0179568531165 0.5 0.482043146883 +UniRef50_N1M5F6 0.276576574192 0.5 0.223423425808 +UniRef50_U3SRF9 0.199255250751 0.500000000001 0.300744749249 +UniRef50_X3EWC3 1.04520467162 0.5 -0.545204671619 +UniRef50_D7A0M4 Short chain dehydrogenase reductase SDR 5.03261578211 0.5 -4.53261578211 +UniRef50_Q1NBV4 12.765292971 0.499999999982 -12.265292971 +UniRef50_C0MBF3 Energy coupling factor transporter transmembrane protein EcfT 0.623506354095 0.5 -0.123506354095 +UniRef50_D4HEP8 Sugar binding domain protein 0.0114697246361 0.5 0.488530275364 +UniRef50_UPI000363A6EC hypothetical protein 0.0404387047376 0.5 0.459561295263 +UniRef50_UPI00037796C2 hypothetical protein 1.39878886448 0.5 -0.898788864483 +UniRef50_Q58158 Type A flavoprotein FprA 2.70756953445 0.5 -2.20756953445 +UniRef50_C2R4M4 Phage infection protein 0.717098653821 0.5 -0.217098653821 +UniRef50_M9VCW9 Proteasome subunit beta 0.0730818535743 0.5 0.426918146425 +UniRef50_U5VGF8 0.122932851058 0.5 0.377067148942 +UniRef50_Q2JLL9 LL diaminopimelate aminotransferase 0.430743606867 0.5 0.0692563931328 +UniRef50_Q8FMN9 Phosphate import ATP binding protein PstB 0.0208599947548 0.5 0.479140005245 +UniRef50_Q2G260 1.80230515708 0.5 -1.30230515708 +UniRef50_W4S5W1 Translation initiation inhibitor 0.306949078318 0.5 0.193050921682 +UniRef50_M5T1U6 Permease large protein, C4 dicarboxylate transport system 1.37341290458 0.5 -0.87341290458 +UniRef50_Q0TNA9 Protein methyltransferase, release factor specific 0.12715128919 0.5 0.37284871081 +UniRef50_P0A2C8 Spermidine putrescine binding periplasmic protein 6.3741301042 0.499999999997 -5.8741301042 +UniRef50_G6CLR5 0.15304548225 0.5 0.34695451775 +UniRef50_D8U8L9 0.164092023593 0.5 0.335907976407 +UniRef50_B7H0C7 AraC like ligand binding domain protein 0.0250855849251 0.5 0.474914415075 +UniRef50_UPI0004671146 hypothetical protein 2.47084537317 0.499999999999 -1.97084537317 +UniRef50_Q47163 Type I restriction enzyme EcoprrI M protein 0.422514278312 0.5 0.077485721688 +UniRef50_Q4L635 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.09709154864 0.500000000001 -1.59709154864 +UniRef50_U3SR89 Tellurite resistance protein TehB 1.3683802273 0.5 -0.868380227305 +UniRef50_UPI00047D168D amino acid permease 0.232850362692 0.5 0.267149637308 +UniRef50_UPI00046D0817 hypothetical protein 0.696619686512 0.5 -0.196619686512 +UniRef50_Q4L3Y7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.87104677798 0.500000000001 -2.37104677799 +UniRef50_T2EA26 Methyltransferase domain protein 0.592938712295 0.5 -0.0929387122948 +UniRef50_X1QW39 Marine sediment metagenome DNA, contig 0.213282902967 0.5 0.286717097033 +UniRef50_E0NML2 Transcriptional regulator, PadR family 1.84391360178 0.5 -1.34391360178 +UniRef50_D0JDL8 Ribonucleoside diphosphate reductase 2 alpha chain 0.00316234834348 0.5 0.496837651656 +UniRef50_UPI0003B62F85 damage inducible protein CinA 1.22004970286 0.499999999999 -0.720049702855 +UniRef50_Q6N6K5 Aliphatic sulfonates import ATP binding protein SsuB 1.09781058255 0.5 -0.59781058255 +UniRef50_Q3K2F6 Fructose 1,6 bisphosphatase class 3 0.862034970865 0.5 -0.362034970865 +UniRef50_UPI0004158481 multidrug transporter 2.99725339018 0.499999999998 -2.49725339018 +UniRef50_Q6GAW6 Argininosuccinate lyase 1.14269434216 0.5 -0.642694342157 +UniRef50_Q07QW9 NADH quinone oxidoreductase subunit H 1 1.45412578044 0.499999999999 -0.954125780435 +UniRef50_F0Y0E3 Expressed protein 0.0559036989774 0.499999999999 0.444096301023 +UniRef50_W4UDN2 Maltose phosphorylase 0.0310431057331 0.5 0.468956894267 +UniRef50_M7TQJ9 1.43803576988 0.5 -0.938035769878 +UniRef50_UPI000287CF8F thioredoxin 0.369179773216 0.5 0.130820226784 +UniRef50_UPI00036E2E8C hypothetical protein, partial 5.06073118981 0.499999999999 -4.56073118981 +UniRef50_UPI0003800615 hypothetical protein, partial 0.730825622273 0.5 -0.230825622273 +UniRef50_UPI000479B301 hypothetical protein 0.172122246064 0.5 0.327877753936 +UniRef50_I5ASV0 Anthranilate synthase component I 0.876619406073 0.5 -0.376619406073 +UniRef50_F8FZ21 Acyl CoA synthetase 0.453987360237 0.5 0.0460126397625 +UniRef50_J8HFC8 3.80387536555 0.5 -3.30387536555 +UniRef50_U7JJA9 0.117819915085 0.5 0.382180084915 +UniRef50_UPI0003710DBF hypothetical protein 0.798360732953 0.5 -0.298360732953 +UniRef50_Q71YR0 DNA ligase 1.69183451222 0.499999999999 -1.19183451222 +UniRef50_F0KGW3 0.413064983974 0.5 0.086935016026 +UniRef50_Q3SMI5 Phosphoheptose isomerase 0.509790686954 0.5 -0.00979068695405 +UniRef50_Q05825 ATP synthase subunit beta, mitochondrial 0.0251055849194 0.5 0.474894415081 +UniRef50_UPI00047AF754 2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase 0.17896966916 0.5 0.32103033084 +UniRef50_B4F0Z5 Cell division protein ZapD 0.252954298674 0.5 0.247045701326 +UniRef50_R6FIZ1 0.0379438137173 0.5 0.462056186283 +UniRef50_UPI0001BF61D0 hypothetical protein SMAC_10790, partial 0.947817084777 0.5 -0.447817084777 +UniRef50_E2NSK7 0.013506273918 0.5 0.486493726082 +UniRef50_A6F174 26.0437311167 0.500000000005 -25.5437311167 +UniRef50_Q75LR2 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 0.00685437407133 0.5 0.493145625929 +UniRef50_L0BJA1 0.0990214048853 0.5 0.400978595115 +UniRef50_E0R9G5 ABC type multidrug transport system protein 0.514676153243 0.5 -0.0146761532428 +UniRef50_UPI0003B6C406 3 oxoacyl ACP synthase, partial 0.160243032881 0.5 0.339756967119 +UniRef50_H5MQG0 Putative transport domain protein 0.897700475132 0.5 -0.397700475132 +UniRef50_UPI0003665115 hypothetical protein 0.987830717661 0.5 -0.487830717661 +UniRef50_E8SES7 1.12822594137 0.500000000001 -0.628225941372 +UniRef50_F4GHR3 Glutamate synthase 0.225412074468 0.5 0.274587925532 +UniRef50_UPI0001744B3D possible HAD superfamily hydrolase 0.0431415455042 0.5 0.456858454496 +UniRef50_E3EXE9 1.13900226281 0.5 -0.63900226281 +UniRef50_UPI00037D9792 hypothetical protein 0.353972668007 0.5 0.146027331993 +UniRef50_P55785 Heptaprenyl diphosphate synthase component 2 0.455626101093 0.5 0.0443738989069 +UniRef50_U5WDI7 5.14193992924 0.499999999991 -4.64193992923 +UniRef50_A1B739 0.334932278356 0.5 0.165067721644 +UniRef50_A6LT02 RNA polymerase, sigma 24 subunit, ECF subfamily 1.25508468719 0.5 -0.755084687195 +UniRef50_I4E1N1 0.537063138046 0.5 -0.0370631380465 +UniRef50_P36646 Protein transport protein HofC homolog 1.36367602548 0.500000000001 -0.863676025486 +UniRef50_UPI00018167BC putative redox regulated molecular chaperone heat shock like protein 0.575262009697 0.5 -0.0752620096974 +UniRef50_P55393 Putative replication protein A 3.37647605537 0.500000000002 -2.87647605538 +UniRef50_UPI000363A7D4 hypothetical protein 0.482495288444 0.5 0.0175047115561 +UniRef50_B9KRZ0 AMP dependent synthetase and ligase 0.482817857328 0.5 0.0171821426723 +UniRef50_F9Z1W7 Acyl CoA thioesterase 2 0.0319369147749 0.5 0.468063085225 +UniRef50_Q9I692 0.130063256467 0.5 0.369936743534 +UniRef50_G2I8Q0 0.74548639673 0.5 -0.24548639673 +UniRef50_UPI00046CEC40 hypothetical protein 0.82386418336 0.5 -0.32386418336 +UniRef50_O05103 HTH type transcriptional regulator MalR 0.0538664610661 0.5 0.446133538934 +UniRef50_P27294 Protein InaA 0.468616903483 0.5 0.0313830965167 +UniRef50_UPI00037C8975 hypothetical protein 0.0678230737018 0.5 0.432176926299 +UniRef50_Q3J6L3 Putative Pre type recombination enzyme 1.35170693516 0.499999999999 -0.851706935161 +UniRef50_C6KV56 UDP glucose pyrophosphorylase 3.32172068357 0.500000000002 -2.82172068357 +UniRef50_UPI0002880FB3 FAD dependent oxidoreductase 0.848726623116 0.5 -0.348726623116 +UniRef50_UPI000362260F hypothetical protein 0.0102366415854 0.5 0.489763358415 +UniRef50_A5UJF1 Geranylgeranylglyceryl phosphate synthase 0.493617975606 0.5 0.00638202439448 +UniRef50_Q0A6T1 Phosphoadenosine phosphosulfate reductase 0.927953213428 0.5 -0.427953213428 +UniRef50_C3PFR3 ATP synthase subunit alpha 0.783711520989 0.5 -0.283711520989 +UniRef50_UPI0003F0E940 PREDICTED 0.510464495884 0.5 -0.0104644958838 +UniRef50_A4ELE1 Transcriptional regulator, LuxR family protein 0.351306035397 0.5 0.148693964603 +UniRef50_Q54431 Signal recognition particle protein 0.195630254055 0.5 0.304369745945 +UniRef50_Q6N143 Acetate kinase 2.19567668684 0.500000000001 -1.69567668684 +UniRef50_UPI0003B5831F 3 phosphoshikimate 1 carboxyvinyltransferase 0.618921354495 0.5 -0.118921354495 +UniRef50_UPI00046A2E06 hypothetical protein 0.0300270005763 0.5 0.469972999424 +UniRef50_B8HW51 Urease subunit beta 1.01447567036 0.5 -0.514475670357 +UniRef50_UPI0004743F92 GMP synthase, partial 0.276275149712 0.5 0.223724850288 +UniRef50_G8AZ63 0.319732859847 0.5 0.180267140153 +UniRef50_UPI00047CA294 ATP dependent DNA helicase PcrA 0.943112664264 0.5 -0.443112664264 +UniRef50_A7ZV50 0.227712935393 0.5 0.272287064607 +UniRef50_R5EU95 Serine type site specific recombinase 0.0218737297993 0.5 0.4781262702 +UniRef50_Q928B5 Thioredoxin reductase 1.0075159727 0.5 -0.507515972701 +UniRef50_G0J229 Carbohydrate binding CenC domain protein 0.0258317370124 0.499999999999 0.474168262988 +UniRef50_UPI00046D1393 transcription elongation factor GreA 0.300350337945 0.5 0.199649662055 +UniRef50_Q8XCB3 Valine tRNA ligase 0.735824568854 0.5 -0.235824568854 +UniRef50_A0A017SM38 0.156731979066 0.5 0.343268020934 +UniRef50_F9D1U7 Saccharopine dehydrogenase 0.00460189625519 0.5 0.495398103745 +UniRef50_UPI000367DEE0 hypothetical protein 0.514183993296 0.5 -0.0141839932956 +UniRef50_Q07806 Penicillin binding protein 1A 1.31392897431 0.5 -0.813928974314 +UniRef50_P11557 Protein DamX 1.43339640974 0.5 -0.93339640974 +UniRef50_A1U6F9 4 hydroxythreonine 4 phosphate dehydrogenase 0.255135558343 0.5 0.244864441657 +UniRef50_UPI00035C0B1A hypothetical protein 1.00743175507 0.5 -0.507431755073 +UniRef50_Q9FN42 ATP dependent Clp protease proteolytic subunit 2, mitochondrial 0.0482141561375 0.5 0.451785843863 +UniRef50_Q49YA8 1.51557129427 0.5 -1.01557129427 +UniRef50_F8K305 0.0177411161783 0.5 0.482258883821 +UniRef50_A0A023YXD9 Anaerobic dimethyl sulfoxide reductase chain A 0.109046391456 0.5 0.390953608544 +UniRef50_C4K9M3 NADH 0.0113349558382 0.5 0.488665044162 +UniRef50_UPI0004655D13 type VI secretion protein 0.356042423068 0.5 0.143957576932 +UniRef50_UPI000479C70C hypothetical protein 0.146116033888 0.5 0.353883966112 +UniRef50_P06131 Formate dehydrogenase subunit alpha 1.27036664838 0.5 -0.770366648378 +UniRef50_D2U3Z3 0.115592585634 0.5 0.384407414366 +UniRef50_U5NMC4 3.6077172354 0.5 -3.1077172354 +UniRef50_A0A020LY90 0.0751706810089 0.5 0.424829318992 +UniRef50_A5UL75 50S ribosomal protein L5 1.34633357848 0.5 -0.846333578483 +UniRef50_Q9RSR5 Glycine tRNA ligase 0.000907782710038 0.5 0.49909221729 +UniRef50_F0J7L0 1.07364688255 0.5 -0.573646882547 +UniRef50_P56900 Transketolase 0.366711171507 0.5 0.133288828493 +UniRef50_M5FH04 2.98369250829 0.499999999999 -2.48369250829 +UniRef50_D7AH61 1.06893439575 0.5 -0.568934395745 +UniRef50_P39270 Inner membrane protein YjdF 1.73076181653 0.499999999999 -1.23076181653 +UniRef50_F4TUJ1 NADH quinone oxidoreductase subunit I 2.68357841052 0.5 -2.18357841052 +UniRef50_I6S3Y4 2.22256880984 0.5 -1.72256880984 +UniRef50_F5LY46 10.8060222575 0.499999999998 -10.3060222575 +UniRef50_Q6A651 Putative pyruvate, phosphate dikinase regulatory protein 0.0370668900647 0.5 0.462933109936 +UniRef50_D9UMS0 Lipoprotein 0.104122442856 0.499999999999 0.395877557145 +UniRef50_UPI00029A9C68 phenylacetate CoA ligase 0.032154183943 0.5 0.467845816057 +UniRef50_A6T5Z2 Putative glutamate cysteine ligase 2 5.55374573995 0.500000000002 -5.05374573995 +UniRef50_I0C5L3 Integral membrane protein 2.32743086913 0.500000000002 -1.82743086913 +UniRef50_UPI0003B39740 50S ribosomal protein L5 0.639681239443 0.5 -0.139681239443 +UniRef50_P77510 Sensor histidine kinase DpiB 1.11011916341 0.5 -0.610119163407 +UniRef50_P37710 Autolysin 0.0042572735955 0.5 0.495742726405 +UniRef50_B1HUK4 Alanine tRNA ligase 2.91516316303 0.5 -2.41516316303 +UniRef50_Q9K6G3 UPF0340 protein BH3766 2.26077824564 0.499999999998 -1.76077824564 +UniRef50_Q1GJP7 Urease subunit beta 1.38119210306 0.5 -0.881192103064 +UniRef50_UPI0000164CD8 hypothetical protein DR_0251 0.0371131758014 0.5 0.462886824199 +UniRef50_F0F251 0.386594995086 0.5 0.113405004914 +UniRef50_H7CPK2 1.18114425944 0.500000000002 -0.681144259442 +UniRef50_V8RAR8 1.14392674063 0.5 -0.643926740626 +UniRef50_H9KEV5 0.321805233495 0.5 0.178194766505 +UniRef50_Q7UNZ2 Isoleucine tRNA ligase 0.208728913643 0.5 0.291271086357 +UniRef50_UPI00034D189F aldehyde activating protein 0.128609264927 0.5 0.371390735073 +UniRef50_Q8ZRW8 Ferredoxin like protein FixX 7.14331401341 0.499999999998 -6.64331401341 +UniRef50_Q8XCN6 Long chain fatty acid transport protein 3.09546129509 0.499999999999 -2.59546129509 +UniRef50_F0RM21 Serine threonine protein kinase 0.0055152131921 0.5 0.494484786808 +UniRef50_P0AAC2 Universal stress protein E 0.609017115169 0.5 -0.109017115169 +UniRef50_T2S877 0.749842740213 0.5 -0.249842740213 +UniRef50_Q7N4I9 Complete genome; segment 8 17 0.0255623976711 0.5 0.474437602329 +UniRef50_Q5JGR7 Nucleoside diphosphate kinase 10.1986272556 0.499999999993 -9.69862725564 +UniRef50_UPI0003C11FE8 PREDICTED 0.43507109072 0.5 0.0649289092799 +UniRef50_UPI000417E643 hypothetical protein 0.146025528521 0.5 0.353974471479 +UniRef50_M1XGX9 0.359565833402 0.5 0.140434166598 +UniRef50_Q7N3U5 Cysteine desulfurase 0.388500490923 0.5 0.111499509077 +UniRef50_UPI000379DB36 hypothetical protein, partial 0.0148119476494 0.5 0.48518805235 +UniRef50_UPI00046F039B DNA gyrase subunit B 0.147827801899 0.5 0.352172198101 +UniRef50_Q8CUA4 Mobilization protein 2.76403395792 0.5 -2.26403395792 +UniRef50_Q3J611 Putative sensor histidine protein kinase 2.28826810049 0.500000000002 -1.78826810049 +UniRef50_W9T208 AsmA family protein 0.455042536424 0.5 0.0449574635757 +UniRef50_B9MJY9 Ribosomal protein L11 methyltransferase 0.152774563428 0.5 0.347225436572 +UniRef50_A6LZQ4 Methyltransferase type 11 0.168906455042 0.5 0.331093544958 +UniRef50_UPI0003EC04D4 PREDICTED 0.10715072306 0.5 0.39284927694 +UniRef50_UPI0002EC1250 patatin 0.38670531649 0.5 0.11329468351 +UniRef50_UPI0002493F15 oxidoreductase 0.235828986007 0.5 0.264171013993 +UniRef50_G2PAE6 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.030697027695 0.5 0.469302972305 +UniRef50_UPI0003AE4F02 PREDICTED 0.0441178373402 0.5 0.45588216266 +UniRef50_V2EDG8 Porin thermoregulatory protein EnvY 0.196994110154 0.5 0.303005889846 +UniRef50_B5EWS4 Recombination associated protein RdgC 2.05721568424 0.500000000001 -1.55721568424 +UniRef50_UPI000467B16B hypothetical protein 0.388632648397 0.5 0.111367351603 +UniRef50_UPI000050FD81 peptide ABC transporter permease 0.0502798293164 0.5 0.449720170684 +UniRef50_P0A9L3 FKBP type 22 kDa peptidyl prolyl cis trans isomerase 0.983475223945 0.5 -0.483475223945 +UniRef50_UPI00036605E2 hypothetical protein 0.23109985853 0.5 0.26890014147 +UniRef50_C4JA46 0.0055996109247 0.5 0.494400389075 +UniRef50_P30149 Inner membrane protein YabI 2.48804612226 0.500000000001 -1.98804612226 +UniRef50_Q89B04 Phosphoenolpyruvate protein phosphotransferase 2.95831620755 0.5 -2.45831620755 +UniRef50_Q3J217 Putative Endonuclease 2.04069846066 0.499999999999 -1.54069846066 +UniRef50_B7GQS6 Phosphoribosyl AMP cyclohydrolase 0.10670784284 0.5 0.39329215716 +UniRef50_C0ZZE5 Riboflavin biosynthesis protein RibBA 0.642401300157 0.5 -0.142401300157 +UniRef50_C1N2I9 Predicted protein 0.338019537028 0.5 0.161980462972 +UniRef50_Q5HMG3 Dihydroxy acid dehydratase 1.39547463053 0.499999999999 -0.89547463053 +UniRef50_R6V2L6 YhgE Pip domain protein 0.352683883141 0.5 0.147316116859 +UniRef50_Q5XA33 0.611962452538 0.5 -0.111962452538 +UniRef50_F8KRE5 Chemotaxis protein Che 0.0149391154248 0.5 0.485060884575 +UniRef50_D4MWH4 Lysophospholipase 0.206218626328 0.5 0.293781373672 +UniRef50_A6M2R6 0.0342669489851 0.5 0.465733051015 +UniRef50_UPI00037C1A9F hypothetical protein 0.0102292131547 0.5 0.489770786845 +UniRef50_Q6ABL2 DNA replication and repair protein RecF 0.0323710603637 0.499999999999 0.467628939637 +UniRef50_Q983N4 Isoleucine tRNA ligase 3.34664935563 0.500000000002 -2.84664935563 +UniRef50_UPI00037926CF hypothetical protein 1.84800508379 0.5 -1.34800508379 +UniRef50_D6GPL1 RNA polymerase sigma factor, sigma 70 family 10.4508861739 0.499999999999 -9.95088617392 +UniRef50_O25751 Protein TolB 0.0209537507195 0.500000000001 0.47904624928 +UniRef50_N0B087 Transporter 0.306126103138 0.5 0.193873896862 +UniRef50_UPI000378CCBF hypothetical protein 0.177580384721 0.5 0.322419615279 +UniRef50_L9BMS0 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 0.100859156195 0.5 0.399140843805 +UniRef50_J0HGY2 2.00106026811 0.5 -1.50106026811 +UniRef50_D2SC05 0.184712597206 0.5 0.315287402794 +UniRef50_T0T191 0.32013034769 0.5 0.17986965231 +UniRef50_Q11IE7 Putative 3 methyladenine DNA glycosylase 1.67288075348 0.5 -1.17288075348 +UniRef50_Q6A923 Endo beta N acetylglucosaminidase H 0.080805061574 0.5 0.419194938426 +UniRef50_V6EZI7 0.63887034109 0.5 -0.13887034109 +UniRef50_Q4A0N2 Ornithine aminotransferase 1 0.181995569027 0.5 0.318004430973 +UniRef50_O26837 Phenylalanine tRNA ligase alpha subunit 0.773074037581 0.5 -0.273074037581 +UniRef50_Q9CGF7 Oxygen independent coproporphyrinogen III oxidase like protein LL1139 0.423679053009 0.5 0.0763209469915 +UniRef50_UPI00037C546A hypothetical protein 2.88493905056 0.5 -2.38493905056 +UniRef50_C5B1H6 Amidase, hydantoinase carbamoylase 1.2472104288 0.5 -0.747210428801 +UniRef50_G8YPB5 Piso0_001875 protein 0.0176023770856 0.5 0.482397622914 +UniRef50_I5C3W2 6 pyruvoyl tetrahydropterin synthase 0.0629029808253 0.5 0.437097019175 +UniRef50_Q58787 citramalate synthase CimA 0.833894842941 0.5 -0.333894842941 +UniRef50_Q9I0J1 NADH quinone oxidoreductase subunit L 1.65911575037 0.5 -1.15911575037 +UniRef50_Q27527-2 Isoform b of Enolase 0.09183265887 0.5 0.40816734113 +UniRef50_F3T921 DoxX family protein 0.310743341505 0.5 0.189256658495 +UniRef50_E0Y1Z2 6.20436052769 0.500000000001 -5.70436052769 +UniRef50_I1AXI9 Transposase IS4 family protein 1.3397730238 0.5 -0.8397730238 +UniRef50_C3MZM4 Nucleoside diphosphate kinase 0.0775742222436 0.5 0.422425777756 +UniRef50_L1JUV8 0.828818459281 0.5 -0.328818459281 +UniRef50_U2YT78 0.354715082137 0.5 0.145284917863 +UniRef50_A9V5N5 Predicted protein 35.2347058491 0.500000000005 -34.7347058491 +UniRef50_E6JPP5 Sodium 0.321233398418 0.5 0.178766601582 +UniRef50_Q1IZ16 Acyl CoA dehydrogenase like protein 0.0019455003772 0.5 0.498054499623 +UniRef50_Q8K9X9 NADH quinone oxidoreductase subunit J 0.199448370745 0.5 0.300551629255 +UniRef50_UPI000467B0DE arginine ABC transporter ATP binding protein 0.446360048411 0.5 0.0536399515888 +UniRef50_A3PRL7 ABC transporter related 3.24983683223 0.500000000002 -2.74983683223 +UniRef50_G5SBT2 Respiratory nitrate reductase alpha chain 0.50209005845 0.5 -0.00209005844978 +UniRef50_Q72HC1 Probable dual specificity RNA methyltransferase RlmN 0.00173055281158 0.5 0.498269447189 +UniRef50_UPI000470C939 5 nucleotidase 0.930494792323 0.5 -0.430494792323 +UniRef50_UPI00045EBAFF hypothetical protein 0.846770520504 0.5 -0.346770520504 +UniRef50_C5N3B0 1.36201870495 0.499999999999 -0.862018704953 +UniRef50_O43414 ERI1 exoribonuclease 3 0.0327608086678 0.5 0.467239191332 +UniRef50_P37049 Phosphodiesterase YaeI 0.546458595453 0.5 -0.0464585954529 +UniRef50_D8JDR3 NADH 0.0157036973919 0.499999999999 0.484296302609 +UniRef50_V9TSS5 Thymidylate synthase 2.12026919371 0.5 -1.62026919371 +UniRef50_UPI0004401CD8 PREDICTED 0.249594140522 0.5 0.250405859478 +UniRef50_B1HZV3 HTH type transcriptional regulator 8.03968866772 0.499999999999 -7.53968866772 +UniRef50_Q5ZVR0 Histidine ammonia lyase 0.219458496838 0.5 0.280541503162 +UniRef50_R5Y1H5 Cassette chromosome recombinase B 0.837275619254 0.5 -0.337275619254 +UniRef50_B2N3Y4 Transketolase 2 2.18575437929 0.5 -1.68575437929 +UniRef50_UPI0002E7F1BB hypothetical protein 1.44785130761 0.5 -0.947851307614 +UniRef50_Q6A7E7 Trigger factor 0.024024977541 0.5 0.475975022459 +UniRef50_UPI00046F5CB6 hypothetical protein 0.27199090729 0.5 0.22800909271 +UniRef50_P45059 Peptidoglycan synthase FtsI 0.277927129967 0.5 0.222072870033 +UniRef50_UPI00034B1305 MULTISPECIES 0.00439754164396 0.5 0.495602458356 +UniRef50_UPI0002193AE6 excinuclease ABC subunit A 0.31063077834 0.5 0.18936922166 +UniRef50_G8VI88 Molybdopterin guanine dinucleotide biosynthesis protein A 0.00273932095592 0.5 0.497260679044 +UniRef50_F0RNI0 DEAD DEAH box helicase domain protein 0.0116252961605 0.5 0.488374703839 +UniRef50_UPI00035D0365 hypothetical protein 2.54030522749 0.5 -2.04030522749 +UniRef50_F7WRG0 4.33327706448 0.500000000003 -3.83327706448 +UniRef50_Q8T6Z1 Thioredoxin reductase 0.908387152209 0.5 -0.408387152209 +UniRef50_Q7MU65 Lipoprotein releasing system ATP binding protein LolD 0.688547672256 0.5 -0.188547672256 +UniRef50_UPI000465AFEA GABA permease 0.330703219568 0.5 0.169296780432 +UniRef50_K0HE29 0.00614348956313 0.5 0.493856510437 +UniRef50_D3S8T8 Flagellar hook capping protein 0.362658969012 0.5 0.137341030988 +UniRef50_F0PEG3 Maltose Maltotriose maltodextrin ABC transporter, MalX subunit 0.0112625885596 0.5 0.48873741144 +UniRef50_D3QGU6 Cystathionine gamma lyase 3.29411343825 0.5 -2.79411343825 +UniRef50_Q32FA3 0.147463087677 0.5 0.352536912323 +UniRef50_Q9RVF4 0.0166347589697 0.5 0.48336524103 +UniRef50_G8V619 HMGL like family protein 1.46109027019 0.5 -0.961090270189 +UniRef50_A6LQC0 3.25099954344 0.5 -2.75099954344 +UniRef50_Q5JGT7 Thymidine kinase 0.230736042968 0.5 0.269263957032 +UniRef50_Q00853 Homocitrate synthase subunit alpha 0.32802580583 0.5 0.17197419417 +UniRef50_Q5HMY5 Accessory gene regulator protein B 11.6280578117 0.499999999997 -11.1280578117 +UniRef50_UPI00036F3EF0 hypothetical protein 0.455357025652 0.5 0.044642974348 +UniRef50_Q9I509 NADH dehydrogenase (quinone) 0.0458346158721 0.5 0.454165384128 +UniRef50_P97532 3 mercaptopyruvate sulfurtransferase 1.54256140976 0.5 -1.04256140976 +UniRef50_UPI00025564EE bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase, partial 0.160679625466 0.5 0.339320374533 +UniRef50_W0YLC7 0.953479435938 0.5 -0.453479435938 +UniRef50_A9IQX3 Single stranded DNA specific exonuclease 0.0835934935471 0.5 0.416406506453 +UniRef50_A7ZNH9 UPF0265 protein YeeX 1.67622859719 0.5 -1.17622859719 +UniRef50_J3RWH0 WbhQ 0.438706744219 0.5 0.0612932557808 +UniRef50_A9M4D7 Lipoprotein 0.036198455092 0.5 0.463801544908 +UniRef50_A5UNI6 Polysaccharide biosynthesis protein, MviN like family 2.12109446305 0.5 -1.62109446305 +UniRef50_P76016 PTS dependent dihydroxyacetone kinase operon regulatory protein 2.94506145419 0.500000000002 -2.44506145419 +UniRef50_M9TX56 6.15277429235 0.500000000002 -5.65277429235 +UniRef50_P53381 Protein mrp homolog 0.124874850387 0.499999999999 0.375125149614 +UniRef50_A6V8Q7 Signal peptidase I 5.31123014395 0.500000000001 -4.81123014395 +UniRef50_Q6MN06 Adenylosuccinate synthetase 0.468102258021 0.5 0.0318977419788 +UniRef50_Q8Y303 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.611064591316 0.5 -0.111064591316 +UniRef50_V6K8C7 0.832095677037 0.5 -0.332095677037 +UniRef50_A8LJB0 NADH 0.256707374546 0.5 0.243292625454 +UniRef50_UPI000328E67C PREDICTED 0.356738589264 0.5 0.143261410736 +UniRef50_T1DQZ2 0.846440332312 0.5 -0.346440332312 +UniRef50_P36999 23S rRNA N(1)) methyltransferase 0.933109385763 0.5 -0.433109385763 +UniRef50_A1VRZ2 LPS biosynthesis protein WbpG 5.46838457054 0.499999999994 -4.96838457053 +UniRef50_P51776 Pyruvate, phosphate dikinase 0.20484020339 0.5 0.29515979661 +UniRef50_UPI000288452E heme peroxidase 2.16475182786 0.5 -1.66475182786 +UniRef50_M4QXM9 Tetraacyldisaccharide 4 kinase 0.0715197005259 0.5 0.428480299474 +UniRef50_UPI0002625F2D dipeptide transport system permease, partial 0.30585153853 0.5 0.19414846147 +UniRef50_A0A011PAY1 ATP dependent Clp protease ATP binding subunit ClpX 0.176298918767 0.500000000001 0.323701081233 +UniRef50_A7Z4X0 L threonine 3 dehydrogenase 0.618536571212 0.5 -0.118536571212 +UniRef50_B5SL97 Choline dehydrogenase lipoprotein 1.74430493397 0.5 -1.24430493397 +UniRef50_UPI0004216EAC tRNA delta isopentenylpyrophosphate transferase 0.330552874238 0.5 0.169447125762 +UniRef50_Q8DW27 1.90940508539 0.5 -1.40940508539 +UniRef50_Q5FAC7 Penicillin binding protein 1A 0.0190882036798 0.5 0.48091179632 +UniRef50_Q24751 ATP synthase subunit beta, mitochondrial 0.52036667691 0.5 -0.0203666769096 +UniRef50_UPI00047ECC3E 4 alpha glucanotransferase 0.0091198866976 0.5 0.490880113302 +UniRef50_F4WQV6 U6 snRNA associated Sm like protein LSm6 0.468290268521 0.5 0.0317097314788 +UniRef50_A0B2R8 0.00795992301833 0.5 0.492040076982 +UniRef50_R7WKM5 1.07908489862 0.5 -0.579084898617 +UniRef50_V8G079 0.081840791142 0.5 0.418159208858 +UniRef50_T3G6D1 Bacterial regulatory s, gntR family protein 0.0509651280655 0.5 0.449034871934 +UniRef50_A3QD88 Leucyl phenylalanyl tRNA protein transferase 0.0802088987645 0.5 0.419791101235 +UniRef50_Q8CMQ4 NADPH dependent oxidoreductase 2.95723964103 0.500000000002 -2.45723964103 +UniRef50_B7V2Q5 Thymidylate synthase 0.351904727356 0.5 0.148095272644 +UniRef50_UPI000476F303 transcriptional regulator 0.150566138302 0.499999999999 0.349433861699 +UniRef50_Q9RZ67 0.0178688167447 0.5 0.482131183255 +UniRef50_UPI0002194D92 SSU ribosomal protein S1P 0.0829953277807 0.5 0.417004672219 +UniRef50_G7M597 Peptidase M56 BlaR1 0.0351398574731 0.5 0.464860142527 +UniRef50_UPI0003B6979D thioredoxin reductase 0.987141768499 0.5 -0.487141768499 +UniRef50_Q0SRR9 Polysaccharide deacetylase family protein 0.0940558036513 0.5 0.405944196349 +UniRef50_A0A024C6Z7 HrgA like protein 0.0552272785582 0.5 0.444772721442 +UniRef50_UPI0003B569E4 hypothetical protein 1.57009902733 0.499999999999 -1.07009902733 +UniRef50_J0NAX3 Glucose 6 phosphate 1 dehydrogenase 1.8301033749 0.5 -1.3301033749 +UniRef50_UPI00047D6EDF fasciclin 1.60498493763 0.5 -1.10498493763 +UniRef50_P15567 Phosphoribosylaminoimidazole carboxylase 0.553213217894 0.5 -0.0532132178944 +UniRef50_Q6AJM7 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.321067490391 0.5 0.178932509609 +UniRef50_UPI000470F989 argininosuccinate lyase 0.857567854175 0.5 -0.357567854175 +UniRef50_A0A024KA53 Auxin binding protein, putative 1.20278686835 0.499999999999 -0.702786868352 +UniRef50_G4CKE5 YjbE family integral membrane protein 0.365669485556 0.5 0.134330514444 +UniRef50_A4FE07 0.225781546196 0.5 0.274218453804 +UniRef50_C1MUY0 Predicted protein 0.360738262201 0.5 0.139261737799 +UniRef50_I1QZW6 0.365159406842 0.5 0.134840593158 +UniRef50_A3PL14 Regulatory protein, PpaA 6.20603484041 0.500000000003 -5.70603484042 +UniRef50_UPI000361C323 hypothetical protein 0.190940633079 0.5 0.309059366921 +UniRef50_O67258 Lysine tRNA ligase 0.442522724759 0.5 0.0574772752408 +UniRef50_X0U279 Marine sediment metagenome DNA, contig 0.0510363632088 0.5 0.448963636791 +UniRef50_O83833 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.826272377216 0.5 -0.326272377216 +UniRef50_D3E1H7 DNA polymerase II small subunit 4.94266377811 0.5 -4.44266377811 +UniRef50_X7FC77 Flagellar protein FlgJ 0.896937628415 0.5 -0.396937628415 +UniRef50_P07771 Benzoate 1,2 dioxygenase electron transfer component 0.0163766161108 0.5 0.483623383889 +UniRef50_E0TD47 3.36846937387 0.499999999998 -2.86846937387 +UniRef50_B2TQ92 Ser Thr protein phosphatase family protein 0.142064711296 0.5 0.357935288704 +UniRef50_E3HVR7 Aspartate aminotransferase 0.0629192654497 0.5 0.43708073455 +UniRef50_A1B2A8 7.28409730789 0.499999999999 -6.78409730789 +UniRef50_UPI0004688DE5 hypothetical protein 1.67779245374 0.5 -1.17779245374 +UniRef50_UPI00045E7101 hypothetical protein 2.58076046008 0.5 -2.08076046008 +UniRef50_UPI00046779A8 UGMP family protein 0.285931767805 0.5 0.214068232195 +UniRef50_W7W844 0.573360261615 0.5 -0.0733602616147 +UniRef50_UPI00047A6C43 hypothetical protein, partial 2.65642181305 0.5 -2.15642181305 +UniRef50_A6LPV7 Tetratricopeptide TPR_2 repeat protein 0.563773572449 0.5 -0.0637735724487 +UniRef50_R6IK84 Lipoprotein 0.445768784159 0.5 0.0542312158413 +UniRef50_UPI00046A2248 integrase 1.11873570661 0.5 -0.618735706614 +UniRef50_N1U5S5 Winged helix turn helix 0.0281550970172 0.500000000001 0.471844902982 +UniRef50_C3K6N0 Succinyl CoA ligase [ADP forming] subunit beta 0.382844555315 0.5 0.117155444685 +UniRef50_I6TXK4 Prephenate dehydrogenase 0.457684902819 0.5 0.0423150971815 +UniRef50_UPI00041D4010 hypothetical protein 0.986722450087 0.5 -0.486722450087 +UniRef50_UPI00037D201C hypothetical protein 0.0148170656437 0.5 0.485182934356 +UniRef50_M5RF68 Glutamate binding periplasmic protein 1.70162124525 0.5 -1.20162124525 +UniRef50_Q7N0A6 Isopentenyl diphosphate Delta isomerase 2 2.67275998348 0.500000000001 -2.17275998348 +UniRef50_Q8X4L9 Ribosomal large subunit pseudouridine synthase F 5.44264042735 0.500000000001 -4.94264042735 +UniRef50_D8JG12 Copper resistance protein A 0.0296613905637 0.5 0.470338609436 +UniRef50_UPI000366B651 hypothetical protein 1.31727457443 0.5 -0.817274574433 +UniRef50_Q3BZD0 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.351289602852 0.5 0.148710397148 +UniRef50_Q8DJY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.22661004585 0.5 -0.726610045851 +UniRef50_UPI00034D05EE hypothetical protein 1.08488995581 0.5 -0.584889955813 +UniRef50_L0A753 PRPP binding protein, adenine guanine phosphoribosyltransferase 0.0365432313826 0.5 0.463456768617 +UniRef50_G0D380 2.21187998176 0.5 -1.71187998176 +UniRef50_P77268 Probable D,D dipeptide transport ATP binding protein DdpD 0.579916224215 0.5 -0.0799162242147 +UniRef50_P61614 LexA repressor 0.596422607057 0.5 -0.0964226070571 +UniRef50_UPI0002653AC6 PREDICTED 0.940503636918 0.5 -0.440503636918 +UniRef50_K9ZKB4 SNARE associated Golgi family protein 0.0152901993999 0.5 0.4847098006 +UniRef50_UPI000413BC23 hypothetical protein 0.359729295833 0.5 0.140270704167 +UniRef50_F0K2U2 Phosphate starvation inducible protein family 0.0145070087872 0.5 0.485492991213 +UniRef50_UPI00040DC67E hypothetical protein 0.176814401955 0.5 0.323185598045 +UniRef50_A6TUT9 Membrane spanning protein 0.0629175901753 0.5 0.437082409825 +UniRef50_T1A735 UDP N acetylglucosamine pyrophosphorylase 0.37043179356 0.5 0.12956820644 +UniRef50_Q5HPS0 tRNA pseudouridine synthase B 2.80992216561 0.500000000003 -2.30992216561 +UniRef50_W5XJD4 Translation initiation factor IF 2 0.352259932766 0.5 0.147740067234 +UniRef50_A5UL38 Ribonuclease P protein component 4 0.103817808647 0.5 0.396182191353 +UniRef50_UPI0002491B34 amino acid 0.539659796755 0.5 -0.0396597967548 +UniRef50_UPI000368B66A hypothetical protein 0.151196522176 0.5 0.348803477824 +UniRef50_P11460 Ferric anguibactin binding protein 0.025745230877 0.5 0.474254769123 +UniRef50_P19906 Nitrogen regulation protein NtrB 0.347265496194 0.5 0.152734503806 +UniRef50_B5XYC7 Isocitrate dehydrogenase kinase phosphatase 1.50131044207 0.5 -1.00131044207 +UniRef50_A5EV79 Dihydroorotate dehydrogenase 0.288924089971 0.5 0.211075910029 +UniRef50_B9J9J5 0.725935448565 0.5 -0.225935448565 +UniRef50_G7M6P0 0.0898067765761 0.500000000001 0.410193223423 +UniRef50_A6L1E7 Thymidine kinase 0.00807706576422 0.5 0.491922934236 +UniRef50_C1D5X5 Protein export membrane protein SecF 0.0441969484761 0.5 0.455803051524 +UniRef50_S5YUZ3 Homoserine dehydrogenase 0.931121264028 0.5 -0.431121264028 +UniRef50_R9P548 Glycoside hydrolase 0.0618624948715 0.5 0.438137505128 +UniRef50_D0K2M7 23.7886836379 0.500000000022 -23.2886836379 +UniRef50_P32057 Putative colanic acid biosynthesis glycosyl transferase WcaI 3.63027170827 0.499999999997 -3.13027170827 +UniRef50_F1VXE0 Structural constituent of cell wall 1.34074668109 0.499999999999 -0.840746681092 +UniRef50_V5UK09 Formate dehydrogenase subunit beta 1.90972174221 0.499999999998 -1.40972174221 +UniRef50_X1RXD5 Marine sediment metagenome DNA, contig 0.30817544928 0.5 0.19182455072 +UniRef50_UPI000465978A hypothetical protein 3.09098705197 0.500000000001 -2.59098705197 +UniRef50_S1SMM7 0.667517600422 0.5 -0.167517600422 +UniRef50_B5YZ54 11.329668965 0.499999999999 -10.829668965 +UniRef50_Q7TUK9 Glutathione synthetase 0.276651623394 0.5 0.223348376606 +UniRef50_UPI000377FA81 hypothetical protein 1.16867068657 0.5 -0.668670686567 +UniRef50_A2D765 0.23546738332 0.5 0.26453261668 +UniRef50_G3VCD6 0.503822712081 0.5 -0.00382271208128 +UniRef50_N0C6M2 Integrase recombinase, phage associated protein 0.834664595226 0.5 -0.334664595226 +UniRef50_Q4L884 Energy coupling factor transporter ATP binding protein EcfA2 4.10123091504 0.499999999999 -3.60123091504 +UniRef50_K0YRV5 0.0814073207561 0.5 0.418592679244 +UniRef50_P26277 Chlorophyllide reductase subunit Z 1.43435143411 0.5 -0.934351434107 +UniRef50_UPI00028A2E90 glycoside hydrolase family 3 domain containing protein 0.107905829849 0.5 0.39209417015 +UniRef50_A6WZN8 Glycoside hydrolase family 25 3.79740248593 0.499999999999 -3.29740248593 +UniRef50_A6V3Q5 Major facilitator superfamily MFS_1 2.00561017365 0.5 -1.50561017365 +UniRef50_A4XKS9 Bifunctional protein PyrR 1.86877429969 0.5 -1.36877429969 +UniRef50_UPI00046FC8FA 5 hydroxymethyluracil DNA glycosylase 0.0336510797555 0.5 0.466348920245 +UniRef50_Q1RKI0 Transcription elongation factor GreA 0.5468042166 0.5 -0.0468042165999 +UniRef50_X7FDX5 1.00999145091 0.5 -0.50999145091 +UniRef50_B9DNY9 Peptide methionine sulfoxide reductase MsrB 0.138957095843 0.5 0.361042904157 +UniRef50_P0A0Q1 1.03941570888 0.5 -0.539415708881 +UniRef50_B0V512 0.0209600814599 0.5 0.47903991854 +UniRef50_R7PVB1 Formate dehydrogenase alpha subunit FdhA 1.17093648781 0.5 -0.670936487814 +UniRef50_F0YC19 0.407086968133 0.5 0.0929130318673 +UniRef50_UPI00036B39EC hypothetical protein 0.00879231418451 0.5 0.491207685816 +UniRef50_F3N0H6 TPR repeats containing protein 0.347218729317 0.5 0.152781270683 +UniRef50_A0A024HEL1 1.78568397227 0.5 -1.28568397227 +UniRef50_Q4JT56 30S ribosomal protein S17 0.54666920581 0.5 -0.04666920581 +UniRef50_UPI0004707041 flagellar motor protein MotA 0.177375823659 0.5 0.322624176341 +UniRef50_P15005 5 methylcytosine specific restriction enzyme B 3.5085560621 0.500000000001 -3.00855606211 +UniRef50_K2JGI2 1.74958218935 0.5 -1.24958218935 +UniRef50_UPI0003B70013 phytoene dehydrogenase 0.625324964031 0.5 -0.125324964031 +UniRef50_P37769 2 dehydro 3 deoxy D gluconate 5 dehydrogenase 0.920086333642 0.5 -0.420086333642 +UniRef50_M4R3K2 0.0228201352842 0.5 0.477179864716 +UniRef50_G3XD01 UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase 18.0492324232 0.500000000014 -17.5492324232 +UniRef50_K0JWH3 Putative membrane protein 0.485661026735 0.5 0.0143389732649 +UniRef50_A8IMX0 Ribonuclease VapC 0.119658747475 0.5 0.380341252525 +UniRef50_I1PF78 27.8881168787 0.49999999996 -27.3881168786 +UniRef50_UPI000466F096 hypothetical protein 2.83836230644 0.5 -2.33836230644 +UniRef50_B7LNV2 Alkanesulfonate monooxygenase 1.03800181746 0.5 -0.538001817463 +UniRef50_D0J2L9 Transcriptional regulator, LysR family 0.269353380483 0.5 0.230646619517 +UniRef50_F5M0P1 Gifsy 1 prophage protein 1.18884525687 0.5 -0.688845256866 +UniRef50_UPI00037B280F lysyl tRNA synthetase 0.384760016098 0.5 0.115239983902 +UniRef50_UPI0003754233 hypothetical protein 0.991911201653 0.5 -0.491911201653 +UniRef50_Q03G75 tRNA dimethylallyltransferase 1.35459222826 0.500000000001 -0.854592228266 +UniRef50_P59588 Lysophospholipase L2 0.690084231914 0.5 -0.190084231914 +UniRef50_T1C6H9 Acyl CoA dehydrogenase domain containing protein 0.493663573484 0.5 0.00633642651632 +UniRef50_UPI00047960F2 PTS mannose transporter subunit IID 0.128075848443 0.5 0.371924151557 +UniRef50_P26381 Fructose permease IIC component 0.693222831197 0.5 -0.193222831197 +UniRef50_B2TLW3 Flagellar biosynthetic protein FliR FlhB 0.3206842527 0.5 0.1793157473 +UniRef50_UPI0004720299 hypothetical protein 0.456513443349 0.5 0.0434865566513 +UniRef50_D5ZRU0 Predicted protein 0.460305149938 0.5 0.0396948500618 +UniRef50_UPI0003605DC7 hypothetical protein 2.42966607964 0.5 -1.92966607964 +UniRef50_W6RN06 2.2143154412 0.5 -1.7143154412 +UniRef50_UPI00047B8AE5 acetylornithine aminotransferase 0.351356093265 0.5 0.148643906735 +UniRef50_B4RRC4 0.0125487766595 0.5 0.48745122334 +UniRef50_X0ZZA4 Marine sediment metagenome DNA, contig 0.692185305794 0.5 -0.192185305794 +UniRef50_P62087 12.7340486476 0.500000000002 -12.2340486476 +UniRef50_A8AZX9 1.80837772963 0.5 -1.30837772963 +UniRef50_UPI0002E4B515 hypothetical protein 0.16601894119 0.5 0.33398105881 +UniRef50_UPI00036DD363 hypothetical protein 0.77825681833 0.5 -0.27825681833 +UniRef50_B3CLB3 Lon protease 0.983759571992 0.5 -0.483759571992 +UniRef50_P32719 D allulose 6 phosphate 3 epimerase 3.72811186146 0.499999999997 -3.22811186145 +UniRef50_Q4A0X5 Probable transglycosylase SceD 1 1.94760331097 0.499999999999 -1.44760331097 +UniRef50_U5MQS6 0.354586672551 0.5 0.145413327449 +UniRef50_D9SWT2 Peptidase S8 and S53 subtilisin kexin sedolisin 0.186938142643 0.5 0.313061857357 +UniRef50_F3U1Z7 1.6492448783 0.5 -1.1492448783 +UniRef50_T2E5I8 Aminotransferase 0.426319314103 0.5 0.0736806858971 +UniRef50_B1N6N5 0.881035626206 0.5 -0.381035626206 +UniRef50_E3NW25 0.0978014299472 0.5 0.402198570053 +UniRef50_UPI00047D9B65 diaminopimelate decarboxylase 0.106221212166 0.5 0.393778787834 +UniRef50_W8S2N5 Transamidase GatB domain protein 3.50506565311 0.5 -3.00506565312 +UniRef50_UPI0004762BB1 hypothetical protein 0.326207096208 0.5 0.173792903792 +UniRef50_UPI00035C4CBC hypothetical protein 0.471763051066 0.5 0.028236948934 +UniRef50_B8ET52 Major facilitator superfamily MFS_1 0.0237657401762 0.5 0.476234259824 +UniRef50_X2MTV9 ABC transporter ATP binding protein 0.467192660324 0.5 0.0328073396759 +UniRef50_P45543 Fructoselysine kinase 2.32259177773 0.5 -1.82259177773 +UniRef50_P36634 Peptide transport periplasmic protein SapA 1.26160939996 0.5 -0.761609399963 +UniRef50_F0PCZ7 Purine catabolism regulatory protein family protein 0.00246616745741 0.5 0.497533832543 +UniRef50_W8H188 2.53329149775 0.500000000001 -2.03329149775 +UniRef50_A0A024H2L6 0.109891514929 0.5 0.390108485071 +UniRef50_A5UNJ9 ADP ribosylglycohydrolase 2.71289029316 0.500000000002 -2.21289029316 +UniRef50_O67589 Aspartate tRNA ligase 0.250613693926 0.5 0.249386306074 +UniRef50_B7N653 Succinyl diaminopimelate desuccinylase 2.07956532015 0.499999999999 -1.57956532015 +UniRef50_H0AAM1 FeS assembly ATPase SufC 0.0894078987346 0.5 0.410592101266 +UniRef50_Q59787 Sorbitol dehydrogenase 1.4033502873 0.500000000001 -0.903350287305 +UniRef50_D0UZ77 PCQ3_28 0.385121121977 0.5 0.114878878023 +UniRef50_V1SPC6 Pheromone autoinducer 2 transporter 0.716833163147 0.5 -0.216833163147 +UniRef50_UPI000478598D hypothetical protein 5.27445045772 0.500000000001 -4.77445045772 +UniRef50_Q74JW2 Peptide deformylase 0.540848351822 0.5 -0.0408483518225 +UniRef50_F2E297 Predicted protein 0.046531711811 0.5 0.453468288189 +UniRef50_UPI0004752275 hypothetical protein 1.24202547128 0.5 -0.742025471276 +UniRef50_C6EBU6 Protein phosphatase CheZ 0.53280660449 0.5 -0.0328066044899 +UniRef50_A4WNW7 IS66 Orf2 family protein 4.51617794197 0.499999999999 -4.01617794197 +UniRef50_A7Z5S1 Peptide methionine sulfoxide reductase MsrB 0.126390668939 0.5 0.373609331061 +UniRef50_R5XIL5 Lactate dehydrogenase and related dehydrogenases 0.051440590961 0.5 0.448559409039 +UniRef50_Q1QYW1 NADH 0.471711413532 0.5 0.0282885864676 +UniRef50_UPI000463660C enolase 0.282077122481 0.5 0.217922877519 +UniRef50_UPI000376E944 hypothetical protein 3.30651242075 0.5 -2.80651242075 +UniRef50_Q98DS8 Mll4564 protein 3.00155111267 0.5 -2.50155111267 +UniRef50_R4K6M8 Glucose inhibited division protein A 0.354935652442 0.5 0.145064347558 +UniRef50_B3CL83 Adenylosuccinate synthetase 0.654178997126 0.5 -0.154178997126 +UniRef50_A4SQR5 Short chain dehydrogenase reductase 2.18483989623 0.5 -1.68483989623 +UniRef50_UPI0003695FD7 D alanyl D alanine carboxypeptidase, partial 0.112738578246 0.5 0.387261421754 +UniRef50_O34113 LctF 3.43669477915 0.499999999999 -2.93669477915 +UniRef50_S4P7C3 0.14362243165 0.5 0.35637756835 +UniRef50_UPI00036089CB hypothetical protein 0.254130234399 0.5 0.245869765601 +UniRef50_Q03075 Cbb3 type cytochrome c oxidase subunit FixP 0.776796962324 0.5 -0.276796962324 +UniRef50_UPI0003658182 hypothetical protein, partial 0.799974081635 0.5 -0.299974081635 +UniRef50_UPI0004674DF5 amino acid permease 0.10531100177 0.5 0.39468899823 +UniRef50_L1K8T7 0.837694963347 0.5 -0.337694963347 +UniRef50_Q9RUV1 0.0106806953886 0.5 0.489319304612 +UniRef50_Q3J2V7 Cysteine tRNA ligase 1.81609492706 0.5 -1.31609492706 +UniRef50_Q7UDG1 IS150 orfB 0.283718703566 0.5 0.216281296434 +UniRef50_UPI00047119E7 hypothetical protein 0.390573082781 0.5 0.109426917219 +UniRef50_U5P9Q9 PTS sorbitol transporter subunit IIB 1.65482075033 0.5 -1.15482075033 +UniRef50_UPI000377D2DD hypothetical protein 0.418396503881 0.5 0.0816034961194 +UniRef50_P76015 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 0.87768273983 0.5 -0.37768273983 +UniRef50_UPI00037EA2E6 50S ribosomal protein L22 0.025210561718 0.5 0.474789438282 +UniRef50_M4RZJ4 1.42259750896 0.5 -0.922597508957 +UniRef50_Q9K1M2 Putative outer membrane protein NMB0088 0.0212942010528 0.5 0.478705798947 +UniRef50_E3GXS5 2.25044932445 0.499999999999 -1.75044932445 +UniRef50_Q2YY67 L threonine dehydratase catabolic TdcB 1.75972219614 0.5 -1.25972219614 +UniRef50_A6LZV8 Glycoside hydrolase, family 3 domain protein 0.0441130256525 0.499999999999 0.455886974348 +UniRef50_Q4V182 L carnitine dehydrogenase 1.42167304659 0.5 -0.921673046592 +UniRef50_Q0TTK8 ATP dependent zinc metalloprotease FtsH 0.0735164703055 0.5 0.426483529695 +UniRef50_Q493R1 3 isopropylmalate dehydrogenase 4.73252259771 0.499999999998 -4.2325225977 +UniRef50_I1P669 1.50298767659 0.5 -1.00298767659 +UniRef50_Q97PA9 Serine threonine protein kinase StkP 1.28835789924 0.5 -0.788357899243 +UniRef50_Q601J1 30S ribosomal protein S13 0.424678830116 0.5 0.0753211698842 +UniRef50_P08967 Phosphoglycerate kinase, glycosomal 0.714679223266 0.5 -0.214679223266 +UniRef50_O62584 Thymidylate synthase 1 2 0.0711530753259 0.5 0.428846924674 +UniRef50_S5CQF3 0.0279378428492 0.5 0.472062157151 +UniRef50_A7MER9 Outer membrane lipoprotein carrier protein 2.75039016593 0.499999999999 -2.25039016593 +UniRef50_A6TF99 Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase 2.22776103884 0.500000000003 -1.72776103885 +UniRef50_B2GGG9 Serine tRNA ligase 0.0209136866906 0.500000000001 0.479086313308 +UniRef50_A0A023RZA8 Membrane protein 0.0110159725029 0.5 0.488984027497 +UniRef50_Q8X4V6 2.66431088779 0.500000000003 -2.16431088779 +UniRef50_P0ABG6 Lipid II flippase FtsW 3.04939011219 0.500000000001 -2.54939011219 +UniRef50_Q5HP96 UPF0398 protein SERP1017 3.35638661955 0.500000000001 -2.85638661955 +UniRef50_A3PIJ2 0.845819962917 0.5 -0.345819962917 +UniRef50_UPI00047E8C89 hypothetical protein 4.48902515133 0.5 -3.98902515133 +UniRef50_R5IVN1 0.31344973871 0.5 0.18655026129 +UniRef50_U5MNN1 ABC transporter permease protein YtlD 0.273038214862 0.5 0.226961785138 +UniRef50_Q0TLV3 Carnitinyl CoA dehydratase 1.40311684764 0.500000000001 -0.903116847642 +UniRef50_UPI0003B62712 dihydropteroate synthase 0.496184293124 0.5 0.00381570687607 +UniRef50_P36204 Bifunctional PGK TIM 0.227768635556 0.5 0.272231364444 +UniRef50_Q040Z6 PTS system IIC component, Glc family PTS system IIA component, Glc family PTS system IIB component, Glc family 0.0066589985372 0.5 0.493341001463 +UniRef50_UPI0003791F03 hypothetical protein 0.425236650967 0.5 0.0747633490331 +UniRef50_E2XKU2 Amino acid ABC transporter, permease protein 0.309925323636 0.5 0.190074676364 +UniRef50_Q9HYZ2 1.13562754017 0.5 -0.635627540168 +UniRef50_UPI00035E2D1C hypothetical protein, partial 0.76531550818 0.5 -0.26531550818 +UniRef50_J3X3P8 0.00258784437436 0.5 0.497412155625 +UniRef50_B4RBF7 Shikimate dehydrogenase 0.10182505107 0.5 0.39817494893 +UniRef50_Q1QDQ1 DNA polymerase I 0.00967856988784 0.5 0.490321430112 +UniRef50_UPI000237E1F7 glutathione S transferase domain containing protein 0.630526881953 0.5 -0.130526881953 +UniRef50_Q9RZD1 0.00232754606594 0.5 0.497672453934 +UniRef50_UPI000368F5E5 hypothetical protein 0.0500188972892 0.5 0.449981102711 +UniRef50_UPI0003B79537 ArsR family transcriptional regulator 0.229560889247 0.5 0.270439110753 +UniRef50_A5V938 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.63621572996 0.5 -0.13621572996 +UniRef50_W6I678 ThiJ PfpI family protein 0.0326732973055 0.5 0.467326702694 +UniRef50_X2HDH4 Prolyl endopeptidase 0.0323782397106 0.5 0.467621760289 +UniRef50_UPI00037D6405 hypothetical protein 0.00667560681867 0.5 0.493324393181 +UniRef50_UPI0000557872 hemolysin E 0.0732858330223 0.500000000001 0.426714166977 +UniRef50_P09432 Nitrogen regulation protein NtrC 9.19441486868 0.500000000002 -8.69441486868 +UniRef50_D5AL29 Two component response regulator receiver protein 2.74405342432 0.5 -2.24405342432 +UniRef50_UPI00036494B1 hypothetical protein 0.427611484784 0.5 0.0723885152163 +UniRef50_Q052H7 Phosphoglycerate kinase 0.255954948587 0.5 0.244045051413 +UniRef50_UPI0003EABFC2 PREDICTED 0.231986465563 0.5 0.268013534437 +UniRef50_Q9RSL1 30S ribosomal protein S5 0.0156004877813 0.5 0.484399512219 +UniRef50_K1UC05 Protein containing DUF939, bacterial 0.175043483444 0.5 0.324956516556 +UniRef50_A4A5I0 Transcriptional regulator, LysR family 0.00641187161697 0.5 0.493588128383 +UniRef50_E0SZL8 Transposase like protein, IS1381 ISSpn7 0.0128647047436 0.499999999999 0.487135295257 +UniRef50_E4ZDR8 0.0408203396076 0.5 0.459179660393 +UniRef50_N1UYX5 Phenol hydroxylase 0.0189791788971 0.5 0.481020821103 +UniRef50_S9SLF7 Autoinducer binding domain protein 2.44625044663 0.5 -1.94625044663 +UniRef50_D2NRK7 0.176842374769 0.5 0.323157625231 +UniRef50_A0A023RRK9 Threonine transporter 0.0111153423916 0.5 0.488884657608 +UniRef50_B8D184 Undecaprenyl phosphate galactose phosphotransferase 4.39971730207 0.499999999995 -3.89971730207 +UniRef50_B8GW31 Chromosome partitioning protein ParA 0.303245599106 0.5 0.196754400894 +UniRef50_Q2YX06 Serine protease HtrA like 2.12847942552 0.5 -1.62847942552 +UniRef50_R1DBW6 0.00550795941092 0.5 0.494492040589 +UniRef50_F0KH23 Leucine responsive regulatory protein 0.0113579977442 0.499999999999 0.488642002257 +UniRef50_UPI00037AFA99 hypothetical protein 0.300937779348 0.5 0.199062220652 +UniRef50_F6BRI2 ABC transporter related protein 1.68194416304 0.5 -1.18194416304 +UniRef50_UPI000475B74E thioredoxin 1.07391211205 0.5 -0.573912112054 +UniRef50_UPI0003B651BF hypothetical protein 0.118876858084 0.5 0.381123141915 +UniRef50_E8SGD2 Histidinol phosphate aminotransferase 1.97044959801 0.5 -1.47044959801 +UniRef50_UPI00035E63FD hypothetical protein 0.200418498948 0.5 0.299581501052 +UniRef50_Q6G9C7 3.9536281616 0.500000000001 -3.4536281616 +UniRef50_D7ZSZ7 PAS domain S box protein 2.66058509465 0.5 -2.16058509465 +UniRef50_UPI00036BE173 hypothetical protein 0.00640807850852 0.5 0.493591921492 +UniRef50_X0ZMI1 Marine sediment metagenome DNA, contig 0.39980985356 0.5 0.10019014644 +UniRef50_B9TQ51 0.490885056645 0.5 0.00911494335494 +UniRef50_UPI000361BC07 hypothetical protein 0.334238597636 0.5 0.165761402364 +UniRef50_D4GML0 0.0900951023419 0.5 0.409904897658 +UniRef50_UPI0003B5D96D isoleucyl tRNA synthase 0.0687201219604 0.5 0.43127987804 +UniRef50_P21979 Cell surface antigen I II 1.50731151142 0.499999999999 -1.00731151142 +UniRef50_U6JYK1 0.00622199422005 0.5 0.49377800578 +UniRef50_UPI000388F8F9 PREDICTED 0.527818097113 0.5 -0.0278180971135 +UniRef50_Q83I82 Ribonuclease 3 0.215663037808 0.5 0.284336962192 +UniRef50_A0A010CBA8 Sensory box protein 0.0154951539209 0.5 0.484504846079 +UniRef50_UPI00036F9D46 hypothetical protein 2.24177562632 0.5 -1.74177562632 +UniRef50_I3URK7 1.07332053306 0.5 -0.573320533058 +UniRef50_UPI0003840A4F 0.797524375974 0.5 -0.297524375974 +UniRef50_Q046F5 Ribose xylose arabinose galactoside ABC type transport system, permease component 3.49782575795 0.5 -2.99782575795 +UniRef50_UPI00047D7A3C hypothetical protein 0.0219137783425 0.5 0.478086221658 +UniRef50_UPI00047EF134 hypothetical protein 1.29840069288 0.5 -0.798400692877 +UniRef50_M0E9W2 ABC transporter 0.22162696389 0.5 0.27837303611 +UniRef50_Q4JX51 Glucose 6 phosphate isomerase 0.00301888758919 0.5 0.496981112411 +UniRef50_E0WQQ5 Methionine import ATP binding protein MetN 0.570126263656 0.5 -0.070126263656 +UniRef50_Q02UV9 C4 dicarboxylate transport protein 1 0.114321757126 0.5 0.385678242874 +UniRef50_M4RCM3 Transcriptional regulator, LysR family 0.0107924164615 0.5 0.489207583538 +UniRef50_F0K514 PTS cellobiose specific component IIC 0.220494164413 0.5 0.279505835587 +UniRef50_Q1QEI9 Ubiquinone biosynthesis O methyltransferase 0.0682371449758 0.5 0.431762855024 +UniRef50_Q8GFF3 Putative PHA synthase 0.236493337566 0.5 0.263506662434 +UniRef50_P37690 Murein hydrolase activator EnvC 1.96048343786 0.499999999999 -1.46048343786 +UniRef50_E4PQ84 0.606842950338 0.5 -0.106842950338 +UniRef50_J0QIU8 0.560791254833 0.5 -0.0607912548331 +UniRef50_A6TEB9 Transcriptional regulator LsrR 2.61660444946 0.499999999998 -2.11660444946 +UniRef50_UPI00047D6083 hypothetical protein 0.130350955384 0.5 0.369649044616 +UniRef50_R9SM88 Cell wall biosynthesis glycosyl transferase GT2 family 0.51834037643 0.5 -0.0183403764303 +UniRef50_A1B0F4 Trigger factor 1.69615607046 0.500000000001 -1.19615607046 +UniRef50_A5UMS8 Predicted Fe S oxidoreductase 6.69221026649 0.500000000004 -6.19221026649 +UniRef50_Q9KVQ7 DNA recombination protein RmuC homolog 1.76055510949 0.499999999999 -1.26055510949 +UniRef50_UPI0003940AB8 PREDICTED 1.18158084373 0.499999999998 -0.681580843727 +UniRef50_A6LVE6 1.83536861954 0.5 -1.33536861954 +UniRef50_UPI00045EBD23 ribonuclease 0.868387339248 0.5 -0.368387339248 +UniRef50_UPI00037A1E81 hypothetical protein 0.214565892552 0.5 0.285434107448 +UniRef50_UPI00034A9AF9 hypothetical protein 2.02879733151 0.5 -1.52879733151 +UniRef50_A0A046SME3 1.02332569333 0.5 -0.523325693326 +UniRef50_F9EX65 0.0222687831401 0.5 0.47773121686 +UniRef50_UPI0004420089 PREDICTED 0.245617947582 0.5 0.254382052418 +UniRef50_B2TRU1 0.320201995176 0.5 0.179798004824 +UniRef50_UPI0004713B45 molecular chaperone GroEL 0.891378930171 0.5 -0.391378930171 +UniRef50_A3VY81 1.10033711558 0.500000000001 -0.600337115586 +UniRef50_UPI0002192600 putative ATP dependent DNA helicase 0.160015257912 0.5 0.339984742088 +UniRef50_Q4FNX4 Argininosuccinate synthase 0.0199308291554 0.500000000001 0.480069170844 +UniRef50_D7GFL4 Permease 0.0358451243734 0.5 0.464154875626 +UniRef50_UPI00047891E2 phytoene desaturase 0.369897657448 0.5 0.130102342552 +UniRef50_A3U7R8 O acetylhomoserine sulfhydrylase 1.70749552685 0.5 -1.20749552685 +UniRef50_UPI0004412677 hypothetical protein DICSQDRAFT_154134 1.3928347412 0.5 -0.892834741201 +UniRef50_Z3FT61 Fructose 1,6 bisphosphatase class 3 0.792877828804 0.5 -0.292877828804 +UniRef50_M7TDD9 0.04050816548 0.5 0.45949183452 +UniRef50_UPI00036A8806 hypothetical protein 0.615093218341 0.5 -0.115093218341 +UniRef50_X0VQS5 Marine sediment metagenome DNA, contig 0.150925250619 0.5 0.349074749381 +UniRef50_UPI0003B398BB UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0350327248606 0.5 0.46496727514 +UniRef50_P20708 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.0384726460591 0.5 0.461527353941 +UniRef50_UPI000464E54F MULTISPECIES 0.0185143756415 0.5 0.481485624359 +UniRef50_B1JTI2 Probable chemoreceptor glutamine deamidase CheD 2.47990595706 0.5 -1.97990595706 +UniRef50_E4BFD9 5.30797378943 0.500000000001 -4.80797378943 +UniRef50_UPI000466A1C5 sugar ABC transporter 0.0706971571237 0.5 0.429302842876 +UniRef50_F0J4U6 7.21277393218 0.499999999985 -6.71277393216 +UniRef50_P22348 Probable N5 carboxyaminoimidazole ribonucleotide mutase 2.71106876546 0.499999999997 -2.21106876546 +UniRef50_UPI00034A55E9 hypothetical protein 0.377050095493 0.5 0.122949904507 +UniRef50_R4Q3N6 Membrane protein 0.0192835714657 0.5 0.480716428534 +UniRef50_UPI0004634E35 hypothetical protein, partial 0.106516112856 0.5 0.393483887144 +UniRef50_Q39189 DEAD box ATP dependent RNA helicase 7 0.00594694980183 0.5 0.494053050198 +UniRef50_T0YWI9 Molecular chaperone DnaK 1.2224283147 0.5 -0.722428314696 +UniRef50_W6K8T3 Putative TRAP_TAXI 2.5349970447 0.5 -2.0349970447 +UniRef50_A4WWQ1 Lipoprotein signal peptidase 0.681133293827 0.5 -0.181133293827 +UniRef50_Q4L4B4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.227712808226 0.5 0.272287191774 +UniRef50_A4WY58 CobB CobQ domain protein glutamine amidotransferase 0.625566856067 0.5 -0.125566856067 +UniRef50_D8GTF6 0.811716231686 0.5 -0.311716231686 +UniRef50_A6LQW7 ExsB family protein 0.270613938722 0.5 0.229386061278 +UniRef50_P28297 Isocitrate lyase 0.0902201537164 0.5 0.409779846284 +UniRef50_P42597 3.8827971316 0.5 -3.3827971316 +UniRef50_C6STB3 2.60976224259 0.5 -2.10976224259 +UniRef50_P42591 0.301009685663 0.5 0.198990314337 +UniRef50_Q8X7Z7 2,5 diketo D gluconic acid reductase B 0.205851704288 0.5 0.294148295712 +UniRef50_P28629 Biodegradative arginine decarboxylase 2.39109248795 0.5 -1.89109248795 +UniRef50_Q12S01 4 hydroxybenzoate octaprenyltransferase 1.92220466505 0.5 -1.42220466505 +UniRef50_P42599 1.35813594251 0.5 -0.858135942515 +UniRef50_O26899 Cobalt precorrin 5B C methyltransferase 1.0560842405 0.5 -0.556084240501 +UniRef50_V5VH70 Phosphatase 0.0050477572212 0.5 0.494952242779 +UniRef50_Q3AAW2 Homoserine O acetyltransferase 0.140340329869 0.5 0.359659670131 +UniRef50_UPI0003B4A61E DEAD DEAH box helicase 0.447962404648 0.5 0.0520375953518 +UniRef50_A0A023XYH0 Chromosome partitioning protein ParB 0.329110385977 0.5 0.170889614023 +UniRef50_Q28TB6 Amino acid ABC transporter membrane protein 2, PAAT family 1.79611163042 0.499999999999 -1.29611163042 +UniRef50_UPI00046853C2 riboflavin synthase subunit alpha 0.458632048444 0.5 0.041367951556 +UniRef50_G9ETY0 0.856537681921 0.5 -0.356537681921 +UniRef50_K2HGL3 1.71722404343 0.499999999999 -1.21722404343 +UniRef50_A7ZPD3 tRNA pseudouridine synthase A 3.69945478388 0.499999999997 -3.19945478388 +UniRef50_UPI000288F464 putative sugar permease 0.907575018724 0.5 -0.407575018724 +UniRef50_A6LW08 Signal transduction histidine kinase, LytS 1.50881139152 0.5 -1.00881139152 +UniRef50_UPI00017458E1 hypothetical protein 0.0120170726139 0.5 0.487982927386 +UniRef50_D0LK45 0.568298195488 0.5 -0.0682981954881 +UniRef50_UPI00037DE0EA hypothetical protein 0.00465458109056 0.5 0.49534541891 +UniRef50_D2G3Z9 FemAB family protein 1.62983802465 0.5 -1.12983802465 +UniRef50_N8EHW1 4.39151632571 0.499999999997 -3.8915163257 +UniRef50_UPI000429DAEA LamB YcsF family protein 1.31926451344 0.499999999999 -0.81926451344 +UniRef50_Q2S6G3 N acetylmuramic acid 6 phosphate etherase 0.266104224325 0.5 0.233895775675 +UniRef50_U3KRA1 0.170116195949 0.5 0.329883804051 +UniRef50_UPI0004002A98 peroxiredoxin 0.00729162274155 0.5 0.492708377259 +UniRef50_O26293 Putative glutamine amidotransferase MTH_191 1.95195638396 0.499999999999 -1.45195638396 +UniRef50_M9REL9 2.40236788784 0.5 -1.90236788784 +UniRef50_UPI000262CE83 molybdopterin biosynthesis protein MoeB 0.391800278912 0.5 0.108199721088 +UniRef50_M9R8D3 2.89818237299 0.500000000003 -2.398182373 +UniRef50_M0XFB3 0.0684168089734 0.5 0.431583191027 +UniRef50_Q8DUC6 0.0944421751785 0.5 0.405557824822 +UniRef50_N6YKC6 ISPsy6, transposase 3.8558717548 0.499999999999 -3.3558717548 +UniRef50_UPI00029CD3E9 cation transport ATPase, partial 0.912525161972 0.5 -0.412525161972 +UniRef50_UPI0003B71BA4 ABC transporter permease, partial 0.132044560449 0.5 0.367955439551 +UniRef50_O27280 Probable dihydroorotate dehydrogenase B ), electron transfer subunit 2.33677881039 0.5 -1.83677881039 +UniRef50_W0YRK3 Putative thioesterase 0.291405541485 0.5 0.208594458515 +UniRef50_P50456 Protein mlc 1.17123104626 0.5 -0.671231046264 +UniRef50_UPI0001CB956C PREDICTED 1.027656281 0.5 -0.527656280996 +UniRef50_A3UCU0 1.79424170914 0.5 -1.29424170914 +UniRef50_G3XCV3 Pseudaminidase 1.2838987199 0.5 -0.783898719897 +UniRef50_UPI00046CA980 hypothetical protein 0.0621004849437 0.5 0.437899515056 +UniRef50_UPI0000222793 Hypothetical protein CBG15144 0.0320677364225 0.5 0.467932263577 +UniRef50_UPI000475010A CoA transferase 0.858828368684 0.5 -0.358828368684 +UniRef50_B4D594 5.45752751368 0.499999999999 -4.95752751368 +UniRef50_F4LXR7 PTS system transcriptional activator 0.112114584134 0.5 0.387885415866 +UniRef50_UPI000362454E hypothetical protein, partial 1.88601129509 0.500000000001 -1.38601129509 +UniRef50_UPI00047529B6 XRE family transcriptional regulator 0.0321380326614 0.5 0.467861967338 +UniRef50_I1ZJL0 Nicotinate phosphoribosyltransferase 0.554286950834 0.5 -0.0542869508341 +UniRef50_F8HYA2 Nucleoside permease 1.68136754415 0.5 -1.18136754415 +UniRef50_J9P4X2 0.0931284659001 0.5 0.4068715341 +UniRef50_A0A058Z6X5 0.400981959537 0.5 0.0990180404632 +UniRef50_A6M027 YCII related 1.13996389021 0.5 -0.639963890212 +UniRef50_P65213 Potassium transporting ATPase C chain 1 0.894452223109 0.5 -0.394452223109 +UniRef50_Q6FE54 0.0193237422417 0.500000000001 0.480676257757 +UniRef50_J0MDM2 1.89805116611 0.5 -1.39805116611 +UniRef50_A6LW35 0.383564791142 0.5 0.116435208858 +UniRef50_A6LW34 0.246445711835 0.5 0.253554288165 +UniRef50_P23504 Cell surface antigen I II 1.39395658863 0.499999999999 -0.893956588632 +UniRef50_A5UL13 Acetolactate synthase , large subunit, IlvB 2.39117438202 0.499999999999 -1.89117438202 +UniRef50_P76655 Putative outer membrane usher protein YqiG 1.25903551377 0.5 -0.759035513768 +UniRef50_UPI00035C946D hypothetical protein 0.0363741824887 0.5 0.463625817511 +UniRef50_UPI000377D66B hypothetical protein 0.0818811299959 0.5 0.418118870004 +UniRef50_E8SK78 ABC transporter ATP binding protein 1.71672795448 0.5 -1.21672795448 +UniRef50_P43085 Phosphoenolpyruvate carboxykinase [ATP] 0.957037756893 0.5 -0.457037756893 +UniRef50_F5HTK1 Alcaligin biosynthesis enzyme family protein 0.0194631889114 0.5 0.480536811089 +UniRef50_Q48KB4 Tat pathway signal sequence domain protein 1.1477102303 0.5 -0.647710230302 +UniRef50_W4THQ3 Exodeoxyribonuclease V alpha chain 0.238631921886 0.5 0.261368078114 +UniRef50_UPI0003604119 hypothetical protein 0.367298236884 0.5 0.132701763116 +UniRef50_UPI0003B700CE molybdopterin biosynthesis MoeZ 0.34984162935 0.5 0.15015837065 +UniRef50_B6BAZ3 0.789386549785 0.5 -0.289386549785 +UniRef50_A0A058T111 Glycerol 3 phosphate acyltransferase 2.37896553438 0.499999999999 -1.87896553438 +UniRef50_Q1QVF5 Phosphoheptose isomerase 0.0140721261351 0.5 0.485927873865 +UniRef50_UPI0002BA0065 hypothetical protein, partial 0.496183695479 0.5 0.00381630452077 +UniRef50_B5Y0W4 UPF0234 protein KPK_4305 0.476705482518 0.5 0.0232945174817 +UniRef50_UPI0003B69561 IMP cyclohydrolase 0.160254792615 0.5 0.339745207385 +UniRef50_UPI0001744350 glycine hydroxymethyltransferase 0.229992232079 0.5 0.270007767921 +UniRef50_UPI000470759E ATP dependent DNA helicase PcrA 3.20919949851 0.500000000003 -2.70919949851 +UniRef50_Q2G1Q2 1 phosphatidylinositol phosphodiesterase 7.98170183603 0.500000000016 -7.48170183604 +UniRef50_B9KLG1 Membrane anchored oxidoreductase 1.7149608241 0.500000000001 -1.2149608241 +UniRef50_UPI00047BB328 phosphoenolpyruvate carboxykinase 0.0614645794716 0.5 0.438535420529 +UniRef50_P03014 DNA invertase from lambdoid prophage e14 0.901878928691 0.5 -0.401878928691 +UniRef50_Q5L3T0 Type III pantothenate kinase 0.104760601039 0.5 0.395239398961 +UniRef50_G8LV00 Transposase 0.211760427293 0.5 0.288239572707 +UniRef50_D0KD36 Lipid A palmitoyltransferase PagP 2.30069189125 0.500000000003 -1.80069189125 +UniRef50_UPI00047780D2 alanine dehydrogenase 0.471397336692 0.5 0.0286026633084 +UniRef50_D6CRU4 1.76370360699 0.499999999999 -1.26370360699 +UniRef50_B9JWD9 0.612660353483 0.5 -0.112660353483 +UniRef50_UPI0003479767 hypothetical protein 0.0109479523427 0.5 0.489052047657 +UniRef50_UPI0003605B2B hydrogenase nickel incorporation protein HypA 1.23758872347 0.5 -0.737588723473 +UniRef50_A4WW77 Ribosome maturation factor RimP 2.37934055408 0.5 -1.87934055408 +UniRef50_E3EZC8 1.92124618156 0.499999999998 -1.42124618156 +UniRef50_W7DGX3 Bleomycin resistance protein 0.683641369838 0.5 -0.183641369838 +UniRef50_B2TRM3 NAD kinase 0.115684363659 0.5 0.384315636341 +UniRef50_C1A7Q5 2.60452682325 0.5 -2.10452682325 +UniRef50_N6UYT1 3.12055773731 0.499999999999 -2.62055773731 +UniRef50_Q3ABL6 Dephospho CoA kinase 0.288057753004 0.5 0.211942246996 +UniRef50_UPI0003C0FD63 PREDICTED 0.15879200445 0.5 0.34120799555 +UniRef50_O34011 Fructose 1,6 bisphosphatase class 1 2.73392175233 0.499999999999 -2.23392175233 +UniRef50_UPI00046969A6 glutamine amidotransferase 0.0626778758865 0.5 0.437322124114 +UniRef50_UPI000191383D hypothetical protein, partial 0.192419079336 0.5 0.307580920664 +UniRef50_D2J6T4 0.397594017906 0.5 0.102405982094 +UniRef50_H8L0H5 Plasmid stabilization system protein 0.294788851032 0.5 0.205211148968 +UniRef50_D5MJN8 0.850009212638 0.5 -0.350009212638 +UniRef50_U5ULW6 5.2546684849 0.499999999997 -4.7546684849 +UniRef50_Q57QS3 Ribosomal RNA large subunit methyltransferase I 1.08082948158 0.5 -0.580829481581 +UniRef50_J3CV04 1.62722185816 0.5 -1.12722185816 +UniRef50_S5KGZ8 0.004402107259 0.5 0.495597892741 +UniRef50_Q66FE1 Thiol 1.27912665091 0.5 -0.77912665091 +UniRef50_B4U9I4 Cysteine tRNA ligase 0.120283726747 0.5 0.379716273253 +UniRef50_A0A038GF87 Plasmid pRiA4b ORF 3 family protein 2.08462024775 0.5 -1.58462024775 +UniRef50_R4QCF3 Membrane protein 0.0139177324139 0.5 0.486082267586 +UniRef50_Q8CTK1 3.13428102904 0.499999999999 -2.63428102904 +UniRef50_P77935 Amidophosphoribosyltransferase 1.1654402693 0.5 -0.665440269304 +UniRef50_UPI00030EA43E hypothetical protein 0.268270884394 0.5 0.231729115606 +UniRef50_B3R9A8 YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal 0.0380353120468 0.5 0.461964687953 +UniRef50_UPI00040764A3 amidohydrolase 0.0295190721671 0.5 0.470480927833 +UniRef50_B2K1F3 0.321728947189 0.5 0.178271052811 +UniRef50_E0TI30 1.36718840502 0.5 -0.867188405022 +UniRef50_UPI000471B390 hypothetical protein, partial 0.253217044889 0.5 0.246782955111 +UniRef50_F3IHL1 Transcriptional regulator, AsnC family protein 0.318069378297 0.5 0.181930621703 +UniRef50_UPI000288AE42 MarR family transcriptional regulator 0.203548096784 0.5 0.296451903216 +UniRef50_Q8D2C5 Oligoribonuclease 19.3567397615 0.499999999982 -18.8567397614 +UniRef50_Q6M0B4 UDP N acetylglucosamine 2 epimerase homolog 0.358851834678 0.5 0.141148165322 +UniRef50_P77562 2.13580204333 0.499999999997 -1.63580204333 +UniRef50_Q8CWZ2 0.178577819068 0.5 0.321422180932 +UniRef50_F6D1U5 Sulfate transporting ATPase 1.420611041 0.5 -0.920611040996 +UniRef50_Q70AC7 Methylmalonyl CoA carboxyltransferase 5S subunit 1.51399164854 0.5 -1.01399164854 +UniRef50_UPI000380FAC7 hypothetical protein, partial 0.835587391777 0.5 -0.335587391777 +UniRef50_O25369 Outer membrane protein assembly factor BamA 0.043783356847 0.5 0.456216643153 +UniRef50_G5P5B1 Potassium transporting ATPase B chain 0.00485699415299 0.5 0.495143005847 +UniRef50_C5N6G1 2.32674650118 0.500000000001 -1.82674650118 +UniRef50_A9M2U6 Oxygen independent coproporphyrinogen III oxidase 0.0269339790959 0.500000000001 0.473066020904 +UniRef50_B9L274 Ribosomal RNA small subunit methyltransferase H 0.000177627181349 0.5 0.499822372819 +UniRef50_P35159 Ribosomal large subunit pseudouridine synthase B 0.00115709132249 0.5 0.498842908677 +UniRef50_A7ZIN4 Adenylate kinase 0.882237139056 0.5 -0.382237139056 +UniRef50_I4CR94 0.231704069204 0.5 0.268295930796 +UniRef50_U3HDX0 0.348988152424 0.5 0.151011847576 +UniRef50_M9S9D1 0.160123027844 0.5 0.339876972156 +UniRef50_A8LU40 Replication protein C 4.0768277727 0.499999999999 -3.57682777269 +UniRef50_S5XWE5 Sarcosine oxidase 1.53656937734 0.5 -1.03656937734 +UniRef50_R7D072 0.283881040393 0.5 0.216118959607 +UniRef50_Q895M3 Ribosome maturation factor RimM 0.994471677899 0.5 -0.494471677899 +UniRef50_P78271 1.20379529176 0.5 -0.703795291765 +UniRef50_Q5M3Y0 Cell division protein 0.676010042909 0.5 -0.176010042909 +UniRef50_Q3JY00 CarR 0.0445747893453 0.5 0.455425210655 +UniRef50_R4K7H3 DNA repair protein RecN 0.201580265716 0.5 0.298419734284 +UniRef50_A3PGQ0 ErfK YbiS YcfS YnhG family protein 2.88304460421 0.5 -2.38304460421 +UniRef50_B9KM31 0.44326630668 0.5 0.0567336933203 +UniRef50_A4WW68 Flagellar M ring protein 1.55177792317 0.5 -1.05177792317 +UniRef50_UPI000467700F hypothetical protein 0.373172302442 0.5 0.126827697558 +UniRef50_I6U0E0 Stress response protein 1.84294976877 0.5 -1.34294976877 +UniRef50_UPI0003653B40 hypothetical protein 2.83421254421 0.5 -2.33421254421 +UniRef50_A4J700 Endoribonuclease L PSP 0.72353390687 0.5 -0.22353390687 +UniRef50_L5RDB7 Putative gluconolactonase domain protein 0.0691924756647 0.5 0.430807524335 +UniRef50_Q4JVZ1 Thiamine phosphate synthase 0.174904299803 0.5 0.325095700197 +UniRef50_UPI0003318BBF 0.580311367485 0.5 -0.0803113674848 +UniRef50_J0CD84 0.0895382343961 0.5 0.410461765604 +UniRef50_C5YXG0 0.345223277541 0.5 0.154776722459 +UniRef50_UPI0003B2FF21 hydantoinase 0.27206527308 0.5 0.22793472692 +UniRef50_I4KQZ4 0.291466403571 0.5 0.208533596429 +UniRef50_UPI0003595520 PREDICTED 0.151909857425 0.5 0.348090142575 +UniRef50_I6RQF7 0.319560307808 0.5 0.180439692192 +UniRef50_UPI00047616F1 hypothetical protein 0.0613926594851 0.5 0.438607340515 +UniRef50_D8JKH6 Acyl CoA dehydrogenase 0.024558058991 0.5 0.475441941009 +UniRef50_E8SH59 Chromosome replication initiation protein dnaD 2.30766875313 0.5 -1.80766875313 +UniRef50_Q4LA96 2.43100478408 0.499999999999 -1.93100478408 +UniRef50_F6EZI7 Diguanylate cyclase with GAF sensor 1.24246342673 0.5 -0.742463426727 +UniRef50_P77381 2.33954741276 0.499999999999 -1.83954741276 +UniRef50_A1WPN7 Peptidase C39, bacteriocin processing 0.0623480576308 0.5 0.437651942369 +UniRef50_Q2T3A1 Transcriptional regulator, LysR family 0.427876702198 0.5 0.0721232978021 +UniRef50_C6SR09 2.6906464928 0.499999999999 -2.1906464928 +UniRef50_E4PKD1 Adenylate guanylate cyclase 0.925599235965 0.5 -0.425599235965 +UniRef50_Q4L4W9 Putative peptidyl prolyl cis trans isomerase 0.0130699153685 0.5 0.486930084632 +UniRef50_Q9RZC3 Glucose 1 phosphate thymidylyltransferase, putative 0.0037288720612 0.5 0.496271127939 +UniRef50_UPI00046624C5 ribonuclease E 0.385196368255 0.5 0.114803631745 +UniRef50_P45092 Arginine transport ATP binding protein ArtP 0.596994746206 0.5 -0.0969947462063 +UniRef50_Q1YHY0 3.91495693436 0.500000000002 -3.41495693436 +UniRef50_X2HE44 DNA polymerase III delta prime subunit 0.140520521914 0.5 0.359479478085 +UniRef50_Q890R3 Energy coupling factor transporter ATP binding protein EcfA2 0.0461142306849 0.5 0.453885769315 +UniRef50_UPI00047DDBCA molecular chaperone DnaJ 0.244920037069 0.5 0.255079962931 +UniRef50_UPI000476F810 alkylhydroperoxidase 0.0809448923512 0.5 0.419055107649 +UniRef50_Q81L09 S adenosylmethionine decarboxylase proenzyme 1 0.0025935710294 0.5 0.49740642897 +UniRef50_UPI0003B4E07A peptide deformylase 0.141678646762 0.5 0.358321353238 +UniRef50_A5IW20 LPXTG motif cell wall anchor domain 1.14344884107 0.5 -0.643448841074 +UniRef50_A6W2Y5 Short chain dehydrogenase reductase SDR 1.15458243115 0.5 -0.654582431149 +UniRef50_P70720 3 oxoacyl [acyl carrier protein] reductase FabG 0.0431491652933 0.5 0.456850834706 +UniRef50_UPI000363345A hypothetical protein 0.493895788515 0.5 0.00610421148546 +UniRef50_R5PT01 6 pyruvoyl tetrahydropterin synthase 0.783202934194 0.5 -0.283202934194 +UniRef50_E1S9J4 Signal transduction histidine kinase 0.0210426435262 0.5 0.478957356474 +UniRef50_A3IDC9 0.774880518611 0.5 -0.274880518611 +UniRef50_M4K0X3 0.700970968314 0.5 -0.200970968314 +UniRef50_J9M4I5 2.08388518849 0.5 -1.58388518849 +UniRef50_O31440 Fatty acid peroxygenase 0.278998025632 0.5 0.221001974368 +UniRef50_UPI000371B5AE hypothetical protein 1.57849368368 0.5 -1.07849368368 +UniRef50_S5YFU3 SMP 30 Gluconolaconase LRE domain protein 0.518818113125 0.5 -0.0188181131252 +UniRef50_UPI000225EF72 magnesium transporter 0.677677512188 0.5 -0.177677512188 +UniRef50_B2V488 Metallo beta lactamase family protein 0.303356702024 0.5 0.196643297976 +UniRef50_G7RAI1 0.116045536467 0.499999999999 0.383954463534 +UniRef50_U6LJB2 0.243310722773 0.5 0.256689277227 +UniRef50_UPI0003B686A2 AraC family transcriptional regulator 3.65712977303 0.5 -3.15712977303 +UniRef50_P09394 Glycerophosphoryl diester phosphodiesterase 1.89141715932 0.5 -1.39141715932 +UniRef50_D7GCV1 Folylpolyglutamate synthase 0.0112712995285 0.5 0.488728700471 +UniRef50_X9G8K3 Surface protein G 4.73215506402 0.500000000004 -4.23215506403 +UniRef50_G8VA48 Lactate malate dehydrogenase, NAD binding domain protein 0.0181068122175 0.5 0.481893187783 +UniRef50_Q21DG3 Ribosomal RNA small subunit methyltransferase G 0.323331118577 0.5 0.176668881423 +UniRef50_UPI0002D3A901 transaldolase 0.731405531935 0.5 -0.231405531935 +UniRef50_W1BA41 Chromosome partition protein MukF 0.696118222407 0.5 -0.196118222407 +UniRef50_F3U217 GntR family transcriptional regulator 1.39720788808 0.5 -0.897207888083 +UniRef50_V9XEY4 Glutaminase 0.0158344519673 0.5 0.484165548033 +UniRef50_D9XFH8 0.148525283055 0.5 0.351474716945 +UniRef50_UPI00035F6847 cold shock protein 0.653253870201 0.5 -0.153253870201 +UniRef50_D5WIA8 Acyl CoA dehydrogenase domain protein 0.0334985064597 0.5 0.46650149354 +UniRef50_A0A013SXP0 Phosphoenolpyruvate protein phosphotransferase 0.0162671264365 0.5 0.483732873563 +UniRef50_U3T0Z6 dGTP pyrophosphohydrolase thiamine phosphate synthase 0.0873030420746 0.5 0.412696957926 +UniRef50_P50600 Protein TolA 2.14983727735 0.5 -1.64983727735 +UniRef50_Q6GK25 Protein EssB 2.34658716098 0.5 -1.84658716098 +UniRef50_C8UCL7 1.4062948121 0.5 -0.906294812105 +UniRef50_X5J954 Transposase ISCca5, IS5 ssgr IS5 family 1.69288664654 0.5 -1.19288664654 +UniRef50_A0QL30 0.107184408481 0.5 0.392815591519 +UniRef50_Q892Q8 Heat inducible transcription repressor HrcA 0.0961959234782 0.5 0.403804076522 +UniRef50_UPI000370A1E5 hypothetical protein 3.49456368212 0.499999999999 -2.99456368212 +UniRef50_Q9FDM1 Prolipoprotein diacylglyceryl transferase 4.0952103809 0.5 -3.5952103809 +UniRef50_P36638 Peptide transport system ATP binding protein SapF 1.78027334227 0.5 -1.28027334227 +UniRef50_UPI00037F8A46 hypothetical protein 0.382120133601 0.5 0.117879866399 +UniRef50_P75905 Poly beta 1,6 N acetyl D glucosamine synthase 0.202920656005 0.5 0.297079343995 +UniRef50_I1FPH4 0.185374326806 0.5 0.314625673194 +UniRef50_S1EVH2 Transcriptional regulator 1.06690531272 0.5 -0.566905312722 +UniRef50_P25519 GTPase HflX 3.65626179853 0.500000000002 -3.15626179853 +UniRef50_F3J1W5 0.0823435396183 0.5 0.417656460382 +UniRef50_UPI0004286E00 hypothetical protein 0.421248529424 0.5 0.0787514705758 +UniRef50_Q9A2A6 1.84329816729 0.5 -1.34329816729 +UniRef50_UPI0003B41A8E MerR family transcriptional regulator 1.98265693716 0.5 -1.48265693716 +UniRef50_UPI00047DA8A6 transcriptional regulator 1.16635150517 0.5 -0.66635150517 +UniRef50_UPI000380DF8A hypothetical protein 0.211015455938 0.5 0.288984544062 +UniRef50_A0A023RW94 Acyltransferase 0.0326721585642 0.5 0.467327841436 +UniRef50_UPI0004074116 hypothetical protein 0.381795391757 0.5 0.118204608243 +UniRef50_A7IK15 Chromosomal replication initiator, DnaA 1.84876995353 0.5 -1.34876995353 +UniRef50_Q0AMH8 UPF0301 protein Mmar10_2223 0.66599917902 0.5 -0.16599917902 +UniRef50_Q8DY37 UPF0348 protein SAG1656 1.242940649 0.5 -0.742940648996 +UniRef50_UPI00038154C1 hypothetical protein 0.555498701169 0.5 -0.055498701169 +UniRef50_G7D6S7 1.66940649391 0.499999999999 -1.16940649391 +UniRef50_F7U6Q0 4.16974210597 0.500000000002 -3.66974210597 +UniRef50_D7FE46 RBL01243 0.00916707411563 0.5 0.490832925884 +UniRef50_A5UNG5 CMP sialic acid synthetase, NeuA 2.870720914 0.500000000001 -2.370720914 +UniRef50_UPI0001745DFF Response regulator consisting of a CheY like receiver domain and a winged helix DNA binding domain 0.0383232822 0.5 0.4616767178 +UniRef50_C5WGS2 Amino acid ABC transporter extracellular binding protein 1.03720878931 0.5 -0.537208789311 +UniRef50_P13716 Delta aminolevulinic acid dehydratase 1.08880603584 0.5 -0.58880603584 +UniRef50_F7ZTM8 Riboflavin biosynthesis protein RibD 0.231398323502 0.5 0.268601676498 +UniRef50_Q6G7T8 1.50289822346 0.5 -1.00289822346 +UniRef50_UPI00037BBACA hypothetical protein, partial 0.341873067452 0.5 0.158126932548 +UniRef50_R9ZHE0 Type II secretion system protein 0.351630377606 0.5 0.148369622394 +UniRef50_P46354 Purine nucleoside phosphorylase 1 0.785883193492 0.5 -0.285883193492 +UniRef50_A1VVY8 LemA family protein 0.965745854341 0.5 -0.465745854341 +UniRef50_UPI0002490C4B DeoR faimly transcriptional regulator 6.606350778 0.500000000008 -6.10635077801 +UniRef50_H2A790 Amino acid ABC transporter, amino acid binding permease protein 0.516342682651 0.5 -0.0163426826512 +UniRef50_UPI0003C13A29 PREDICTED 1.70495523894 0.500000000001 -1.20495523894 +UniRef50_UPI000360760D hypothetical protein 1.38298152543 0.499999999999 -0.882981525431 +UniRef50_UPI0001FFDEF3 hypothetical protein 0.0104917092757 0.500000000001 0.489508290724 +UniRef50_UPI00036476ED hypothetical protein 0.322120948535 0.5 0.177879051465 +UniRef50_UPI0002555726 macrolide ABC transporter ATP binding protein 0.0668435159127 0.5 0.433156484087 +UniRef50_UPI000287EE3A rhizobiocin RTX toxin and hemolysin type calcium binding protein 3.33970095638 0.499999999999 -2.83970095638 +UniRef50_U3SUU9 1.34812097924 0.5 -0.84812097924 +UniRef50_P10249 Sucrose phosphorylase 0.294345358302 0.5 0.205654641698 +UniRef50_C3Z7Q3 6.31024767795 0.5 -5.81024767795 +UniRef50_Q09067 Urease accessory protein UreH 0.030506215783 0.5 0.469493784217 +UniRef50_UPI000464113C multidrug ABC transporter 0.0897786011709 0.5 0.410221398829 +UniRef50_I2BZM7 Transcriptional regulator, AraC family 0.210378040209 0.5 0.289621959791 +UniRef50_UPI00047C04E2 diguanylate cyclase 0.320297302797 0.5 0.179702697203 +UniRef50_A0KL52 Adenylate kinase 0.295900910883 0.5 0.204099089117 +UniRef50_UPI000262D071 pyrroline 5 carboxylate reductase 0.360087219556 0.5 0.139912780444 +UniRef50_L7WZS3 Lipase 1.24926821103 0.5 -0.749268211028 +UniRef50_A6LR40 Ribonuclease R 0.0749255803768 0.5 0.425074419624 +UniRef50_U6HJZ8 Succinate dehydrogenase iron sulfur protein 0.137716207653 0.5 0.362283792347 +UniRef50_Q9B6E7 Cytochrome c oxidase subunit 1 0.998479633521 0.5 -0.498479633521 +UniRef50_UPI000288E3B9 DNA polymerase I, partial 0.87865388129 0.5 -0.37865388129 +UniRef50_Q87U89 0.871311376817 0.5 -0.371311376817 +UniRef50_UPI0001BF7861 hypothetical protein SMAC_10214, partial 0.168896424823 0.5 0.331103575177 +UniRef50_Q97K95 L aspartate oxidase 0.193663218601 0.5 0.306336781399 +UniRef50_O31462 0.930398498484 0.5 -0.430398498484 +UniRef50_A6QIT1 0.526063189158 0.5 -0.0260631891583 +UniRef50_D0CS40 Outer membrane transporter, ompp1 fadl todx family 1.26480134368 0.5 -0.764801343679 +UniRef50_G9PLE0 0.0992443262823 0.5 0.400755673718 +UniRef50_B9KU12 0.119502028409 0.5 0.380497971591 +UniRef50_UPI0003B6C6DF histidine kinase 2.60990220473 0.5 -2.10990220473 +UniRef50_Q9Z4W7 Anthranilate synthase component 1 0.217621666585 0.5 0.282378333415 +UniRef50_K0I5D9 Protease 0.555614115403 0.5 -0.0556141154033 +UniRef50_Q3J615 1.83291945171 0.5 -1.33291945171 +UniRef50_Q3J617 1.1632444356 0.5 -0.663244435595 +UniRef50_Q9RWA3 0.00513544091036 0.5 0.49486455909 +UniRef50_B7GLM2 ABC type oligopeptide transport system, permease component 1.82293843925 0.500000000002 -1.32293843925 +UniRef50_A6LYT7 0.212850889245 0.5 0.287149110755 +UniRef50_Q9RWA8 0.023757533961 0.5 0.476242466039 +UniRef50_A6LYT5 0.640031043838 0.5 -0.140031043838 +UniRef50_R7LD69 0.0237403406065 0.5 0.476259659394 +UniRef50_UPI0003B71B68 molybdopterin dehydrogenase, partial 0.173820086421 0.5 0.326179913579 +UniRef50_UPI0004679659 hypothetical protein 2.60066444323 0.500000000002 -2.10066444323 +UniRef50_UPI0003604091 hypothetical protein 2.04927386513 0.499999999999 -1.54927386513 +UniRef50_UPI000367D1C3 hypothetical protein 0.340723617825 0.5 0.159276382175 +UniRef50_U5MT62 Nodulation protein NolG 0.080593890947 0.5 0.419406109053 +UniRef50_A0KEB8 Tetratricopeptide repeat family 0.0273346097514 0.5 0.472665390249 +UniRef50_H6NKR1 0.00424061438332 0.5 0.495759385617 +UniRef50_A5UMM4 Serine threonine protein kinase related protein 2.17277994799 0.500000000001 -1.67277994799 +UniRef50_C5YW74 0.828401973949 0.5 -0.328401973949 +UniRef50_Q8D954 sn glycerol 3 phosphate import ATP binding protein UgpC 82.2660446719 0.499999999837 -81.7660446717 +UniRef50_E6US82 TROVE domain containing protein 0.180493791558 0.5 0.319506208442 +UniRef50_O32168 Methionine import system permease protein MetP 0.903313831484 0.5 -0.403313831484 +UniRef50_UPI0003B3F610 peptidylprolyl isomerase 0.310954522045 0.5 0.189045477955 +UniRef50_A5INZ6 0.926191994458 0.5 -0.426191994458 +UniRef50_U3QUF7 Chemotaxis protein 0.989795727148 0.5 -0.489795727148 +UniRef50_D4HF48 0.0015537699048 0.5 0.498446230095 +UniRef50_UPI0003B6D344 MarR family transcriptional regulator 0.083935314932 0.5 0.416064685068 +UniRef50_G8VM83 Serine threonine protein kinase 0.0104965324503 0.5 0.48950346755 +UniRef50_Q9RSR9 Oligoendopeptidase F, putative 0.00733398200281 0.5 0.492666017997 +UniRef50_J3L6D3 0.309596836226 0.5 0.190403163774 +UniRef50_Q6F8Q1 Protease HtpX 0.0121596430455 0.5 0.487840356955 +UniRef50_W1EDI8 Error prone, lesion bypass DNA polymerase V 1.85640306535 0.500000000001 -1.35640306535 +UniRef50_F1XKP7 0.655073619283 0.5 -0.155073619283 +UniRef50_N2GZC1 Inner membrane transport protein YhjV 2.89067197467 0.499999999999 -2.39067197467 +UniRef50_UPI00036F024D hypothetical protein 0.478264091464 0.5 0.0217359085361 +UniRef50_A4X0E7 Transport system permease protein 0.571124798738 0.5 -0.0711247987381 +UniRef50_B9KGQ3 Transcriptional activator protein 2.07658698739 0.5 -1.57658698739 +UniRef50_Q9PB21 3 phosphoshikimate 1 carboxyvinyltransferase 1.08220114084 0.5 -0.582201140836 +UniRef50_UPI0003F0BF74 PREDICTED 0.653176820589 0.5 -0.153176820589 +UniRef50_A4WX47 Heat shock protein DnaJ domain protein 1.86099681048 0.5 -1.36099681048 +UniRef50_R9ZG29 Chemotaxis protein CheY 0.268835099084 0.5 0.231164900916 +UniRef50_A8LHQ6 Protein TolB 1.93217295173 0.500000000001 -1.43217295173 +UniRef50_D4HB86 ABC transporter, ATP binding protein 0.0105234255248 0.5 0.489476574475 +UniRef50_Q2NAE1 Bifunctional enzyme IspD IspF 0.0235295895995 0.5 0.476470410401 +UniRef50_UPI000478A42E peptide ABC transporter permease 0.167936714219 0.5 0.332063285781 +UniRef50_Q12BS8 Prolipoprotein diacylglyceryl transferase 0.405875001154 0.5 0.0941249988462 +UniRef50_L0WHY8 Ppx GppA phosphatase 0.00682372642881 0.5 0.493176273571 +UniRef50_P0A2J6 Peptide transport system permease protein SapC 0.980469572407 0.5 -0.480469572407 +UniRef50_A9WJ95 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.720946282219 0.5 -0.220946282219 +UniRef50_U4V848 0.333234719016 0.5 0.166765280984 +UniRef50_M9VBD0 2 dehydropantoate 2 reductase 0.0730667484343 0.5 0.426933251566 +UniRef50_UPI000349B178 hypothetical protein 0.477792818808 0.5 0.0222071811922 +UniRef50_UPI00046469DD competence protein 0.148131851642 0.5 0.351868148358 +UniRef50_P02915 Histidine transport ATP binding protein HisP 0.255761374611 0.5 0.244238625389 +UniRef50_M9VL55 0.0126392451443 0.5 0.487360754856 +UniRef50_UPI0002C58260 0.00421762615947 0.5 0.49578237384 +UniRef50_A1ARJ7 3 dehydroquinate dehydratase 0.0684633322268 0.5 0.431536667773 +UniRef50_P0A9N6 Pyruvate formate lyase 1 activating enzyme 12.9925279492 0.500000000003 -12.4925279492 +UniRef50_B7K5B1 Adenylyl sulfate kinase 0.0138020598912 0.5 0.486197940109 +UniRef50_A7ZSR5 Shikimate kinase 1 1.60594198678 0.5 -1.10594198678 +UniRef50_S0U1N3 0.528492694057 0.5 -0.0284926940572 +UniRef50_P42199 L cystine binding protein TcyA 0.913023598388 0.5 -0.413023598388 +UniRef50_UPI0004292B6B hypothetical protein 0.270996021971 0.5 0.229003978029 +UniRef50_G1XC43 2.04112027409 0.5 -1.54112027409 +UniRef50_P65942 Bifunctional protein PyrR 0.109220313714 0.5 0.390779686286 +UniRef50_UPI0002D9966A hypothetical protein 0.0876431891125 0.5 0.412356810888 +UniRef50_W5XD81 UDP N acetylglucosamine 2 epimerase 0.105491742452 0.5 0.394508257548 +UniRef50_R6V945 ATP dependent protease La 3.73761640702 0.5 -3.23761640702 +UniRef50_E2PXX4 Putative regulator 0.186582814512 0.5 0.313417185488 +UniRef50_Q57947 2.89497950074 0.5 -2.39497950074 +UniRef50_P0AF33 Respiratory nitrate reductase 2 gamma chain 0.811264747061 0.5 -0.311264747061 +UniRef50_Q57942 1.04637389997 0.5 -0.546373899975 +UniRef50_O27477 UPF0284 protein MTH_1426 3.15850315353 0.5 -2.65850315353 +UniRef50_V8FR31 Histidine kinase 0.364312501301 0.5 0.135687498699 +UniRef50_K2AHW0 0.756547024682 0.5 -0.256547024682 +UniRef50_A4TIY8 Alkaline phosphatase 0.360395528494 0.5 0.139604471506 +UniRef50_I3X7J2 1.08693171409 0.5 -0.586931714092 +UniRef50_C6SPX6 2.07194118957 0.5 -1.57194118957 +UniRef50_C6SPX8 0.839681150524 0.5 -0.339681150524 +UniRef50_UPI000361A3EB hypothetical protein 0.205879070041 0.5 0.294120929959 +UniRef50_Q6A9R6 Aminomethyltransferase 0.0256845706598 0.5 0.47431542934 +UniRef50_A4WVB3 CDP alcohol phosphatidyltransferase 1.45353939214 0.5 -0.953539392142 +UniRef50_UPI0003B32207 adenosylcobinamide kinase 0.36999850403 0.5 0.13000149597 +UniRef50_UPI00047017D2 hypothetical protein 0.639929665772 0.5 -0.139929665772 +UniRef50_Q6F856 UPF0042 nucleotide binding protein ACIAD3059 0.00987076374716 0.5 0.490129236253 +UniRef50_UPI00047859F1 hypothetical protein 0.0125546162893 0.5 0.487445383711 +UniRef50_A4ZNV6 Truncated internalin A 1.13266624592 0.500000000001 -0.632666245917 +UniRef50_E9C0L1 Cobalamin synthesis protein P47K 0.274262272314 0.5 0.225737727686 +UniRef50_UPI0003C13F84 PREDICTED 0.622525418882 0.5 -0.122525418882 +UniRef50_A6LXV4 Methyl accepting chemotaxis sensory transducer 0.375613684532 0.5 0.124386315468 +UniRef50_N6U8E6 2.33356464825 0.5 -1.83356464825 +UniRef50_Q0SNA5 Proline tRNA ligase 0.0737013531724 0.5 0.426298646828 +UniRef50_UPI00029A8E4B MFS transporter 0.346056033423 0.5 0.153943966577 +UniRef50_UPI00021A5132 PREDICTED 0.274598709537 0.5 0.225401290463 +UniRef50_UPI0002B43A90 PREDICTED 0.0700487690275 0.5 0.429951230972 +UniRef50_B1J909 Peptidase C39 bacteriocin processing 0.767926993979 0.5 -0.267926993979 +UniRef50_A6V4I6 Transcriptional regulator, LuxR family 0.0560775394579 0.499999999999 0.443922460543 +UniRef50_Q8ZBZ2 Na translocating NADH quinone reductase subunit C 0.0732993559746 0.5 0.426700644026 +UniRef50_F7XFJ7 1.15566083528 0.5 -0.655660835283 +UniRef50_J9ZMG3 Sulfatase 1.52132307205 0.5 -1.02132307205 +UniRef50_UPI00025561EE acetyl transferase 0.334356789728 0.5 0.165643210272 +UniRef50_H1XS41 UDP N acetylglucosamine 2 epimerase 5.38802391282 0.500000000008 -4.88802391283 +UniRef50_UPI000440B669 GTP binding protein TypA 0.209154911305 0.5 0.290845088695 +UniRef50_O34996 DNA polymerase I 1.28810664143 0.5 -0.788106641433 +UniRef50_UPI0003C8E764 PREDICTED 0.620893548616 0.5 -0.120893548616 +UniRef50_A1A1J0 Prolipoprotein diacylglyceryl transferase 1.13029823628 0.5 -0.63029823628 +UniRef50_UPI000422F3ED selenocysteine specific elongation factor 0.0548350897235 0.5 0.445164910277 +UniRef50_Q6AL48 DNA polymerase IV 0.254745983663 0.5 0.245254016337 +UniRef50_D8ULE3 0.0282385150258 0.500000000001 0.471761484973 +UniRef50_F0J3V7 Spermidine putrescine ABC transporter ATP binding protein 0.00266453716614 0.5 0.497335462834 +UniRef50_W6B709 Polyketide synthase module 1.03628960576 0.5 -0.536289605758 +UniRef50_A5UMQ8 Sirohydrochlorin cobaltochelatase 0.588221830729 0.5 -0.0882218307287 +UniRef50_I0C110 ABC transporter ATP binding protein 1.59200041519 0.5 -1.09200041519 +UniRef50_W9R7E8 1.57590515725 0.5 -1.07590515725 +UniRef50_Q0AQ30 Cupin 2, conserved barrel domain protein 1.3516203209 0.500000000001 -0.851620320898 +UniRef50_Q7R6Z1 0.493088661907 0.5 0.0069113380928 +UniRef50_W4UBI3 Methionine aminopeptidase 0.0781029880524 0.5 0.421897011948 +UniRef50_UPI00036C6884 hypothetical protein 0.563346428329 0.5 -0.0633464283289 +UniRef50_UPI0004773996 glutathione dependent formaldehyde activating protein 2.11852050798 0.5 -1.61852050798 +UniRef50_L0GI71 0.126952495497 0.5 0.373047504503 +UniRef50_L3S9H3 Ribonucleoside diphosphate reductase subunit beta 0.490704232906 0.5 0.00929576709409 +UniRef50_A5UMT8 Glycosyltransferase, GT2 family 1.41780115715 0.5 -0.91780115715 +UniRef50_UPI0002D9EB50 hypothetical protein 0.479140139272 0.5 0.0208598607276 +UniRef50_Q4QN88 Autotransported protein Lav 0.0088371381487 0.5 0.491162861851 +UniRef50_UPI0003C7D864 glutamine ABC transporter permease, partial 0.922319037312 0.5 -0.422319037312 +UniRef50_Q3JNJ8 2.76694443975 0.5 -2.26694443975 +UniRef50_Q2YUE8 L threonine dehydratase biosynthetic IlvA 1.29939775304 0.499999999999 -0.799397753038 +UniRef50_F7ZM05 Transcriptional repressor protein, GntR family 1.60913548295 0.5 -1.10913548295 +UniRef50_A7ZR72 Putative Holliday junction resolvase 15.7118505577 0.499999999994 -15.2118505577 +UniRef50_A0A023RUU7 Amino acid transporter LysE 0.0152991364488 0.5 0.484700863551 +UniRef50_P0C2U0 Ornithine carbamoyltransferase, catabolic 1.47654362535 0.499999999999 -0.976543625349 +UniRef50_UPI0003819001 hypothetical protein 0.853719503669 0.5 -0.353719503669 +UniRef50_D8JNQ8 TonB dependent receptor family protein 0.00305599879163 0.5 0.496944001208 +UniRef50_P00927 Threonine dehydratase, mitochondrial 0.319950959748 0.5 0.180049040252 +UniRef50_B1JZ61 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.411016957178 0.5 0.0889830428216 +UniRef50_UPI0004763D11 phospholipase C 0.317893906258 0.5 0.182106093742 +UniRef50_UPI0003C19153 0.441732905495 0.5 0.0582670945045 +UniRef50_UPI0004775FF2 hypothetical protein 1.06697037667 0.5 -0.56697037667 +UniRef50_A0A011QW65 Peroxiredoxin OsmC 0.00386856973017 0.5 0.49613143027 +UniRef50_A0A059IQB9 Intracellular septation protein 2.99637580759 0.5 -2.49637580759 +UniRef50_K8EXK1 0.493373414853 0.5 0.00662658514679 +UniRef50_UPI0003632065 hypothetical protein 0.115606072492 0.5 0.384393927508 +UniRef50_A6LZ50 Type I phosphodiesterase nucleotide pyrophosphatase 0.353585114128 0.5 0.146414885872 +UniRef50_L9LRB5 Phage like baseplate assembly protein 0.017893387546 0.5 0.482106612454 +UniRef50_B7K765 tRNA N6 adenosine threonylcarbamoyltransferase 0.633902239236 0.5 -0.133902239236 +UniRef50_J9GQJ1 0.350276695225 0.5 0.149723304775 +UniRef50_C1DCA4 NADH quinone oxidoreductase subunit B 0.520889297937 0.5 -0.0208892979372 +UniRef50_A0A024HWH6 0.213412724331 0.5 0.286587275669 +UniRef50_UPI0003B3FB93 phosphoglyceromutase, partial 0.78978078845 0.5 -0.28978078845 +UniRef50_K0LDS3 1.61345225739 0.5 -1.11345225739 +UniRef50_UPI00047CA582 hypothetical protein, partial 0.354645772 0.5 0.145354228 +UniRef50_G7W9E1 0.0556980956492 0.5 0.444301904351 +UniRef50_UPI0003678819 30S ribosomal protein S4 0.154498871328 0.5 0.345501128672 +UniRef50_Q74M23 50S ribosomal protein L9 0.117462019876 0.5 0.382537980124 +UniRef50_R1FCU5 0.0821859236442 0.5 0.417814076356 +UniRef50_UPI0002F40D47 hypothetical protein 4.74176561372 0.500000000002 -4.24176561372 +UniRef50_UPI0003B5C775 serine hydroxymethyltransferase 0.444460253178 0.5 0.055539746822 +UniRef50_P04424 Argininosuccinate lyase 0.160815240203 0.5 0.339184759797 +UniRef50_F0MZR9 Division cluster competence associated protein Dca 0.064089833639 0.5 0.435910166361 +UniRef50_UPI00046E5BF5 molybdopterin converting factor 0.0929632029644 0.5 0.407036797036 +UniRef50_UPI0004285813 LysR family transcriptional regulator 0.0607277751225 0.5 0.439272224877 +UniRef50_E1UN96 Acetoin utilization protein AcuA 3.83293361756 0.5 -3.33293361756 +UniRef50_UPI00047EB5DF GTP binding protein Der 0.240515379664 0.5 0.259484620336 +UniRef50_G7LY49 Transcriptional regulator, GntR family with LacI sensor 0.0247593116079 0.5 0.475240688393 +UniRef50_UPI00037C0A9E hypothetical protein 0.146116033812 0.5 0.353883966188 +UniRef50_D7A512 Phosphoesterase PA phosphatase related protein 4.35535721684 0.5 -3.85535721684 +UniRef50_Q18DL1 Imidazoleglycerol phosphate dehydratase 3.67579704297 0.499999999999 -3.17579704296 +UniRef50_D4HC08 Acetyltransferase, GNAT family 0.0633871040425 0.5 0.436612895958 +UniRef50_C7ZRN4 Ferrichrome ABC transporter lipoprotein 1.65842692066 0.500000000001 -1.15842692066 +UniRef50_B1GZJ8 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.593572834421 0.5 -0.0935728344211 +UniRef50_R7PT43 1.32133882034 0.5 -0.821338820342 +UniRef50_UPI00037A8649 hypothetical protein 3.01449197695 0.499999999999 -2.51449197694 +UniRef50_UPI00035EAC91 hypothetical protein 0.252976516918 0.5 0.247023483082 +UniRef50_P58115 Pirin like protein YhaK 2.49132751291 0.499999999999 -1.99132751291 +UniRef50_UPI000255F0AC hypothetical protein 0.295233213163 0.5 0.204766786837 +UniRef50_A0L4V9 Holliday junction ATP dependent DNA helicase RuvA 0.642476218816 0.5 -0.142476218816 +UniRef50_UPI0002195D67 branched chain amino acid transporter II carrier protein 0.721103303462 0.5 -0.221103303462 +UniRef50_UPI000466B529 hypothetical protein 0.124084064123 0.500000000001 0.375915935877 +UniRef50_W4UAD6 0.154646111154 0.5 0.345353888846 +UniRef50_T1UCZ0 0.0144430772653 0.499999999999 0.485556922735 +UniRef50_R5EMC4 High affinity branched chain amino acid ABC transporter permease protein 0.0736662176337 0.5 0.426333782366 +UniRef50_T2J2D2 0.00546599494932 0.5 0.494534005051 +UniRef50_P39399 Probable HTH type transcriptional regulator YjjM 1.27667137384 0.5 -0.776671373836 +UniRef50_M1MSH2 0.149347044748 0.5 0.350652955252 +UniRef50_UPI0002F5C7CD alpha beta hydrolase 0.0739220577066 0.5 0.426077942293 +UniRef50_Q93PU4 Toluene efflux pump membrane transporter TtgH 2.11193510567 0.5 -1.61193510567 +UniRef50_D9SQU7 Integral membrane sensor signal transduction histidine kinase 0.085556879549 0.5 0.414443120451 +UniRef50_E6MUI2 0.0746706367616 0.5 0.425329363239 +UniRef50_UPI00047B6725 hypothetical protein 0.0607456788115 0.5 0.439254321189 +UniRef50_D2N524 1.97428243825 0.499999999997 -1.47428243825 +UniRef50_A6LT70 Phage portal protein, SPP1 0.022726628513 0.5 0.477273371487 +UniRef50_Q9HZX3 Protein glutamine gamma glutamyltransferase 0.306734451749 0.5 0.193265548251 +UniRef50_UPI0003B4BDBC ammonia channel protein, partial 0.14093945461 0.5 0.35906054539 +UniRef50_UPI0003825C93 hypothetical protein 0.807057912649 0.5 -0.307057912649 +UniRef50_A6E305 1.32913038913 0.5 -0.829130389132 +UniRef50_B7VHW1 0.497020054869 0.5 0.00297994513102 +UniRef50_Q8RFZ3 UPF0324 membrane protein FN0533 0.393443224535 0.5 0.106556775465 +UniRef50_UPI00046D88F2 chemotaxis protein CheY 0.85606958878 0.5 -0.35606958878 +UniRef50_J9NWV1 5.2905848412 0.500000000005 -4.7905848412 +UniRef50_UPI0004656FEC exodeoxyribonuclease III, partial 1.73598406551 0.5 -1.23598406551 +UniRef50_J9NWV5 0.709242802637 0.5 -0.209242802637 +UniRef50_G7LHS1 50S ribosomal protein L11 0.0594445362563 0.5 0.440555463744 +UniRef50_Q1GI13 Sarcosine oxidase delta subunit heterotetrameric 1.11659310365 0.5 -0.616593103651 +UniRef50_P0AEZ1 5,10 methylenetetrahydrofolate reductase 0.328660709817 0.5 0.171339290183 +UniRef50_UPI000371CC88 hypothetical protein 0.205090597095 0.5 0.294909402905 +UniRef50_UPI00046F08F9 hypothetical protein 0.188499860343 0.5 0.311500139658 +UniRef50_O24339 Catalase 0.161305314644 0.5 0.338694685356 +UniRef50_U1WYS6 0.479593820741 0.5 0.0204061792593 +UniRef50_Q0PAB6 Methionine import ATP binding protein MetN 3.56915283209 0.5 -3.06915283209 +UniRef50_P76340 Probable transcriptional regulatory protein YedW 2.40824383981 0.499999999999 -1.90824383981 +UniRef50_Q7CYZ1 4.25591829962 0.500000000002 -3.75591829962 +UniRef50_UPI0003653AAE hypothetical protein 0.281761021894 0.5 0.218238978106 +UniRef50_UPI00036708EA hypothetical protein 0.13141153161 0.5 0.36858846839 +UniRef50_Q5HP06 ComG operon protein 2, putative 0.890534280676 0.5 -0.390534280676 +UniRef50_U3SS47 1.10876928906 0.5 -0.60876928906 +UniRef50_X5X320 11.064924058 0.500000000003 -10.564924058 +UniRef50_X1XW63 0.0115513341069 0.5 0.488448665893 +UniRef50_P31904 Hydrogenase expression formation protein hypD2 1.77279539236 0.500000000001 -1.27279539236 +UniRef50_UPI00038BE2EA PREDICTED 0.715905729885 0.5 -0.215905729885 +UniRef50_UPI00037774DA hypothetical protein, partial 0.818714818214 0.5 -0.318714818214 +UniRef50_C6X1R3 0.352081000052 0.5 0.147918999948 +UniRef50_UPI0003B3A17D diguanylate cyclase 0.291522181165 0.5 0.208477818835 +UniRef50_F3NZ35 DeaD DeaH box helicase 0.0103324215608 0.5 0.489667578439 +UniRef50_A5UMR2 3.84477003372 0.499999999999 -3.34477003371 +UniRef50_A4WV08 Diguanylate cyclase 1.76392100773 0.5 -1.26392100773 +UniRef50_A0A011T5F4 Endoribonuclease L PSP 1.27613405972 0.5 -0.776134059725 +UniRef50_B0S9J5 Phosphopantetheine adenylyltransferase 0.16821904346 0.5 0.33178095654 +UniRef50_B9JJI7 Taurine uptake ABC transporter 3.24296788934 0.5 -2.74296788934 +UniRef50_P50933 L lactate dehydrogenase 0.0047979873077 0.5 0.495202012692 +UniRef50_V9WHB8 Glycosidase 1.94688089106 0.5 -1.44688089106 +UniRef50_V4XDY8 0.0879681180076 0.5 0.412031881992 +UniRef50_R5PCX4 Exo poly alpha D galacturonosidase 0.23280688935 0.5 0.26719311065 +UniRef50_UPI0003B768A4 recombinase 0.393469543947 0.5 0.106530456053 +UniRef50_UPI00036E0818 hypothetical protein 2.04413832081 0.499999999999 -1.54413832081 +UniRef50_W5PP12 0.601810488961 0.5 -0.101810488961 +UniRef50_M5D5M6 Sel1 repeat protein 0.0100545107747 0.5 0.489945489225 +UniRef50_UPI000440198D PREDICTED 0.722561751908 0.5 -0.222561751908 +UniRef50_UPI000161C024 Centromere kinetochore Zw10 family protein 0.102913241842 0.5 0.397086758158 +UniRef50_S5Y0K2 10.5097446004 0.499999999992 -10.0097446003 +UniRef50_UPI0003760BC3 MULTISPECIES 0.105929669726 0.500000000001 0.394070330274 +UniRef50_Q9I190 Macrolide export ATP binding permease protein MacB 1.68641269634 0.5 -1.18641269634 +UniRef50_R6EZ78 0.0189290363629 0.5 0.481070963637 +UniRef50_UPI00047838E9 hypothetical protein 0.00292718611787 0.5 0.497072813882 +UniRef50_Y0F5P3 0.243839484587 0.5 0.256160515413 +UniRef50_UPI000289CB1A major facilitator superfamily protein, partial 0.362089190263 0.5 0.137910809737 +UniRef50_A3PSA8 Oligopeptide dipeptide ABC transporter, ATPase subunit 3.73676374415 0.500000000001 -3.23676374415 +UniRef50_UPI0003C1628B PREDICTED 7.04129472041 0.499999999998 -6.54129472041 +UniRef50_UPI0002B4638C PREDICTED 0.798369372044 0.5 -0.298369372044 +UniRef50_I1QQ05 0.0336413694492 0.5 0.466358630551 +UniRef50_UPI0002D42EAE hypothetical protein 0.0501430062426 0.499999999999 0.449856993758 +UniRef50_P33218 Inner membrane protein YebE 12.604754575 0.500000000003 -12.104754575 +UniRef50_Q2FEZ8 Type II pantothenate kinase 0.840733449034 0.5 -0.340733449034 +UniRef50_W0A724 1.54740389394 0.5 -1.04740389394 +UniRef50_Q2NAY0 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.3202795544 0.500000000001 -0.820279554403 +UniRef50_Q08T18 0.134023970452 0.500000000001 0.365976029547 +UniRef50_UPI000379B915 hypothetical protein 0.47559795073 0.5 0.02440204927 +UniRef50_Q83P86 Multidrug resistance protein MdtN 7.78431232454 0.499999999996 -7.28431232454 +UniRef50_J0S1W5 0.608548283506 0.5 -0.108548283506 +UniRef50_X0Y200 Marine sediment metagenome DNA, contig 0.248056987278 0.5 0.251943012722 +UniRef50_F9NYE7 0.0699385457172 0.5 0.430061454283 +UniRef50_Q929Y1 UDP N acetylmuramoylalanine D glutamate ligase 0.51129634373 0.5 -0.0112963437301 +UniRef50_UPI00035EF123 RNA helicase, partial 1.96559014408 0.5 -1.46559014408 +UniRef50_D8JM33 Transcriptional regulator 0.0140015590352 0.5 0.485998440965 +UniRef50_UPI0004642A6F hypothetical protein 0.0876320659577 0.5 0.412367934042 +UniRef50_Q2RPX0 Bifunctional protein GlmU 0.224969073076 0.5 0.275030926924 +UniRef50_P0ACS3 Redox sensitive transcriptional activator SoxR 1.1265413322 0.5 -0.626541332202 +UniRef50_O27492 Probable acetolactate synthase small subunit 0.0437189354011 0.5 0.456281064599 +UniRef50_Q5HKP7 Probable poly beta 1,6 N acetyl D glucosamine export protein 3.73548662604 0.499999999999 -3.23548662604 +UniRef50_E4PHF9 Acyl CoA dehydrogenase domain protein 0.11715772101 0.5 0.38284227899 +UniRef50_Q4FRE8 0.0196626402504 0.5 0.48033735975 +UniRef50_Q7F1Y2 B1065G12.2 protein 0.306314373963 0.5 0.193685626037 +UniRef50_Q9KG60 Urease subunit beta 0.967883507442 0.5 -0.467883507442 +UniRef50_Q8ERU3 UPF0736 protein OB1207 0.0697073836058 0.5 0.430292616394 +UniRef50_C5N1I8 9.32192797701 0.500000000002 -8.82192797701 +UniRef50_UPI000381384D hypothetical protein 0.853106909173 0.5 -0.353106909173 +UniRef50_UPI0003618EAB hypothetical protein, partial 0.279754979497 0.5 0.220245020503 +UniRef50_Q9RXH3 Folyl polyglutamate synthetase 0.0273521734237 0.5 0.472647826576 +UniRef50_Q1B677 Methionine import ATP binding protein MetN 3.07818835388 0.499999999999 -2.57818835388 +UniRef50_P45756 Putative general secretion pathway protein A 3.12559793393 0.499999999999 -2.62559793393 +UniRef50_M0X8Z7 0.0216902681417 0.5 0.478309731858 +UniRef50_S5XST5 Apolipoprotein N acyltransferase 1.58525543438 0.5 -1.08525543438 +UniRef50_P77775 Epimerase family protein YfcH 0.971438057197 0.5 -0.471438057197 +UniRef50_B3E5B6 Carbon starvation protein CstA 0.106208871191 0.5 0.393791128809 +UniRef50_U9LZ47 1.3087055791 0.5 -0.808705579098 +UniRef50_D9RBR2 0.669284516361 0.5 -0.169284516361 +UniRef50_Q0AAE8 Choline carnitine betaine transporter 1.21330966087 0.5 -0.713309660866 +UniRef50_P43924 Pyruvate kinase 0.228211089621 0.5 0.271788910379 +UniRef50_Q98NZ9 Mll9669 protein 3.88350449618 0.5 -3.38350449618 +UniRef50_P31459 2 dehydro 3 deoxygalactonokinase 5.32553164911 0.5 -4.82553164911 +UniRef50_A3M531 0.0189550757037 0.5 0.481044924296 +UniRef50_A3M532 0.0097984804685 0.500000000001 0.490201519531 +UniRef50_UPI0003B75002 NAD synthetase, partial 0.0571091162082 0.5 0.442890883792 +UniRef50_UPI000369E819 hypothetical protein 1.53122647491 0.500000000002 -1.03122647491 +UniRef50_UPI0003B3957E 50S ribosomal protein L21 0.983180699324 0.5 -0.483180699324 +UniRef50_B5XIZ5 0.0148310366668 0.5 0.485168963333 +UniRef50_Q747W9 Cyclic pyranopterin monophosphate synthase 0.031176498104 0.5 0.468823501896 +UniRef50_Q82ZQ1 Allantoinase 0.0312274372615 0.5 0.468772562739 +UniRef50_A6LYV3 Putative cell wall binding repeat containing protein 0.0416830483815 0.5 0.458316951618 +UniRef50_D8R6N5 0.102426699902 0.5 0.397573300098 +UniRef50_Q8DU77 0.859220285311 0.5 -0.359220285311 +UniRef50_B5QY15 Glucans biosynthesis protein G 4.81503124263 0.500000000003 -4.31503124263 +UniRef50_B2SD76 Leu Ile Val binding protein family 1.75833201039 0.499999999999 -1.25833201039 +UniRef50_E8QKJ5 0.137358363996 0.5 0.362641636004 +UniRef50_B4TUR5 tRNA modifying protein YgfZ 2.53305919618 0.499999999999 -2.03305919618 +UniRef50_Q8FAD6 Ornithine carbamoyltransferase 0.938181873934 0.5 -0.438181873934 +UniRef50_C7ZTG4 Polysaccharide biosynthesis protein 1.275020882 0.5 -0.775020881999 +UniRef50_X0Z8U3 Marine sediment metagenome DNA, contig 0.13855726744 0.5 0.361442732559 +UniRef50_E8TLE8 3.23485703608 0.499999999998 -2.73485703608 +UniRef50_I4YKM8 0.878095642689 0.5 -0.378095642689 +UniRef50_A5V3U6 Trigger factor 0.12342123271 0.5 0.37657876729 +UniRef50_C7J1D9 Os04g0448000 protein 0.232675164181 0.5 0.267324835819 +UniRef50_L7WY02 Aldo keto reductase 0.964796279364 0.5 -0.464796279364 +UniRef50_B1GZ10 Peptide deformylase 0.108160950287 0.5 0.391839049713 +UniRef50_C1N707 Predicted protein 0.030066783956 0.5 0.469933216044 +UniRef50_O98946 Ribulose bisphosphate carboxylase small chain 3.9126215625 0.500000000001 -3.4126215625 +UniRef50_Q83RQ0 Endo type membrane bound lytic murein transglycosylase A like protein 0.494216173703 0.5 0.00578382629658 +UniRef50_Q7VF52 Phosphoribosylformylglycinamidine synthase 2 1.90555879566 0.5 -1.40555879566 +UniRef50_A6LZG6 0.0707784292628 0.5 0.429221570737 +UniRef50_Q21CR1 0.916579010499 0.5 -0.416579010499 +UniRef50_UPI000477F471 hypothetical protein 0.139911400111 0.5 0.360088599889 +UniRef50_UPI0003B5D675 peptide chain release factor 1 0.0453062992493 0.5 0.454693700751 +UniRef50_UPI0002558465 threonine dehydratase 0.131437261078 0.5 0.368562738922 +UniRef50_I6L918 0.737087667734 0.5 -0.237087667734 +UniRef50_B9JG36 1.01567169627 0.5 -0.515671696271 +UniRef50_UPI000248E5FB phenazine biosynthesis protein PhzF 0.259056358851 0.5 0.240943641149 +UniRef50_B8A1Z2 0.259582620712 0.5 0.240417379288 +UniRef50_B6VA55 Nitrite oxidoreductase 0.625638032662 0.5 -0.125638032662 +UniRef50_P54932 Protein RdxB 2.34094532102 0.499999999998 -1.84094532102 +UniRef50_A0A023SBI8 1.05669981198 0.5 -0.556699811985 +UniRef50_UPI000328C02F PREDICTED 0.308342696882 0.5 0.191657303118 +UniRef50_W9GJ48 Sugar ABC transporter substrate binding protein 2.33134800378 0.499999999996 -1.83134800378 +UniRef50_Q5HRJ0 Deoxynucleoside kinase family protein 3.7815489886 0.499999999997 -3.2815489886 +UniRef50_UPI0003B78493 5 hydroxyisourate hydrolase 0.371166872514 0.5 0.128833127486 +UniRef50_F7ZII7 5.52218107322 0.500000000001 -5.02218107322 +UniRef50_A0A034TUN2 Excinuclease ABC subunit B 0.0130831933917 0.5 0.486916806608 +UniRef50_V4R3G1 Mucoidy inhibitor A 0.202736978052 0.5 0.297263021948 +UniRef50_UPI0003712D73 MULTISPECIES 1.45647630324 0.5 -0.956476303241 +UniRef50_P75857 Probable outer membrane usher protein ElfC 1.6248111664 0.500000000001 -1.12481116641 +UniRef50_UPI0003B39972 LuxR family transcriptional regulator 1.92832658321 0.5 -1.42832658321 +UniRef50_Q2S5J0 NADH quinone oxidoreductase subunit D 0.272700473914 0.5 0.227299526086 +UniRef50_P76173 Anaerobic dimethyl sulfoxide reductase chain YnfH 1.90056388982 0.5 -1.40056388982 +UniRef50_Q97FQ5 DNA ligase 2 0.307253330942 0.5 0.192746669058 +UniRef50_T2QCI3 0.159823628791 0.5 0.340176371209 +UniRef50_A4VMJ3 Transcriptional regulator FleQ 0.54167707894 0.5 -0.0416770789398 +UniRef50_Q7DDH4 Putative lipoprotein NMB1126 NMB1164 0.569754658362 0.5 -0.0697546583622 +UniRef50_Q5FQD6 Bifunctional enzyme IspD IspF 0.152714784845 0.5 0.347285215155 +UniRef50_L7WZU8 1.65517099008 0.5 -1.15517099008 +UniRef50_K2AF52 0.596071620451 0.5 -0.0960716204509 +UniRef50_F0KP57 Phospholipase D 0.0115492185173 0.5 0.488450781483 +UniRef50_B1ERT8 0.0438079542397 0.5 0.45619204576 +UniRef50_Q4A047 Imidazole glycerol phosphate synthase subunit HisH 3.18498182213 0.499999999998 -2.68498182213 +UniRef50_P0CZ69 Arginine regulator 0.638819931102 0.5 -0.138819931102 +UniRef50_P80480 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 0.314063624046 0.5 0.185936375954 +UniRef50_D9SZV9 PKD domain containing protein 0.0504684827925 0.5 0.449531517207 +UniRef50_A5FW26 MaoC domain protein dehydratase 0.338780521553 0.5 0.161219478447 +UniRef50_Q42565 Anthranilate synthase beta subunit 1, chloroplastic 0.360563812452 0.5 0.139436187548 +UniRef50_A5UMG8 Cell wall biosynthesis protein, MurD like peptide ligase family 1.80700147891 0.5 -1.30700147891 +UniRef50_F5LZS4 Hemolysin type calcium binding region RTX toxin 1.76627308849 0.500000000001 -1.26627308849 +UniRef50_A7FX06 Aminotransferase, class IV 0.0637356213519 0.499999999999 0.436264378649 +UniRef50_R8A4W3 0.515852139306 0.5 -0.0158521393064 +UniRef50_UPI0003785F11 hypothetical protein 0.28451087905 0.5 0.21548912095 +UniRef50_UPI00047E325C AsnC family transcriptional regulator 1.47717359571 0.5 -0.977173595708 +UniRef50_UPI0003C1951F PREDICTED 0.0965724204441 0.5 0.403427579556 +UniRef50_C3F9W4 UTP glucose 1 phosphate uridylyltransferase 2.56476919208 0.499999999999 -2.06476919208 +UniRef50_A0A023S292 Lysozyme 0.0171436838873 0.5 0.482856316113 +UniRef50_UPI00047B031E hypothetical protein 0.200648856256 0.5 0.299351143744 +UniRef50_Q9PE70 30S ribosomal protein S3 0.360067543704 0.5 0.139932456296 +UniRef50_Q3SSY2 50S ribosomal protein L10 1.2165337056 0.500000000001 -0.716533705601 +UniRef50_A6LYQ4 Integral membrane sensor signal transduction histidine kinase 0.148744957194 0.5 0.351255042806 +UniRef50_Q9UYX0 Probable L threonine 3 dehydrogenase 0.18533701248 0.5 0.31466298752 +UniRef50_P04993 RecBCD enzyme subunit RecD 1.90959636031 0.500000000001 -1.40959636031 +UniRef50_A9MFX7 Anaerobic nitric oxide reductase transcription regulator NorR 1.15890841272 0.5 -0.65890841272 +UniRef50_B9E7Y2 2.88225200946 0.499999999999 -2.38225200946 +UniRef50_E8QJ87 0.021744980104 0.5 0.478255019896 +UniRef50_UPI000475BC46 hypothetical protein 0.11135753727 0.499999999999 0.38864246273 +UniRef50_F2AHK1 3.32519222914 0.500000000001 -2.82519222914 +UniRef50_UPI0004757A91 hypothetical protein, partial 0.298416476458 0.5 0.201583523542 +UniRef50_Q8X613 Transcriptional regulatory protein ZraR 0.983602736392 0.5 -0.483602736392 +UniRef50_UPI0003B659FC ribose ABC transporter permease 3.93367253414 0.5 -3.43367253414 +UniRef50_E1VQY8 Transcriptional regulator, ArsR family 0.545466173738 0.5 -0.0454661737377 +UniRef50_E0TTE0 Alpha,alpha phosphotrehalase 0.0269098878378 0.5 0.473090112162 +UniRef50_UPI00046F1189 acriflavine resistance protein B 0.239407764331 0.5 0.260592235669 +UniRef50_UPI00018172F7 putative 3 oxoadipate coa transferase subunit b protein 0.299065894389 0.5 0.200934105611 +UniRef50_V5SS13 0.791481787217 0.5 -0.291481787217 +UniRef50_A0A023RZV0 0.0282850703108 0.5 0.471714929689 +UniRef50_T5ME54 Cysteine and O acetyl L serine efflux system protein 0.26421477257 0.5 0.23578522743 +UniRef50_M1XIF6 0.228899526882 0.5 0.271100473118 +UniRef50_Q2T6R3 1,4 alpha glucan branching enzyme GlgB 0.465666615587 0.5 0.034333384413 +UniRef50_L0A7U4 ATPase involved in chromosome partitioning 0.00466852380731 0.5 0.495331476193 +UniRef50_I0BSQ6 Diguanylate cyclase 0.364862706914 0.5 0.135137293086 +UniRef50_B9KLX0 Class I monoheme cytochrome c 2.16236927195 0.500000000001 -1.66236927195 +UniRef50_Q9X7Q6 Isopentenyl diphosphate Delta isomerase 2.27438654494 0.5 -1.77438654494 +UniRef50_UPI0001744EBE organic solvent ABC transporter ATP binding protein 2.49068245096 0.5 -1.99068245096 +UniRef50_U3SSQ2 Two component sensor histidine kinase 1.72573658717 0.5 -1.22573658717 +UniRef50_P71229 Hydrogenase 4 transcriptional activator 5.85732593962 0.500000000003 -5.35732593962 +UniRef50_UPI000368F50B hypothetical protein 0.339663911296 0.5 0.160336088704 +UniRef50_J8V9R1 Monovalent cation H+ antiporter subunit C 7.86795164693 0.499999999994 -7.36795164693 +UniRef50_H9USG2 0.649187739065 0.5 -0.149187739065 +UniRef50_Q09BZ8 0.0436051989099 0.5 0.456394801091 +UniRef50_G7MBG2 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 0.359616630426 0.5 0.140383369574 +UniRef50_O26010 Phosphopantetheine adenylyltransferase 0.123598932432 0.5 0.376401067568 +UniRef50_K9NP10 L glutamine synthetase 2.95417576695 0.5 -2.45417576695 +UniRef50_R5CIR9 2.02717198998 0.500000000001 -1.52717198998 +UniRef50_Q4BUD1 0.143612394931 0.5 0.356387605069 +UniRef50_F0MM85 Hemagglutinin hemolysin family protein 0.00532840253866 0.5 0.494671597462 +UniRef50_UPI0004127258 patatin 0.138274777048 0.5 0.361725222952 +UniRef50_A0A056S3J4 Integral membrane protein 0.649882349824 0.5 -0.149882349824 +UniRef50_Q6A8D2 0.0200609944538 0.5 0.479939005547 +UniRef50_B9KV10 1.80131771279 0.500000000001 -1.30131771279 +UniRef50_A6LRB3 Uroporphyrinogen decarboxylase 0.318822293271 0.5 0.181177706729 +UniRef50_Q6FEM0 Outer membrane protein assembly factor BamB 0.0686876433465 0.5 0.431312356654 +UniRef50_W4KYJ2 Transposase IS861 4.01121587417 0.500000000001 -3.51121587417 +UniRef50_UPI0002558C10 AsmA family protein 0.321745078927 0.5 0.178254921073 +UniRef50_UPI000288B7A4 ATP binding protein 0.740051385734 0.5 -0.240051385734 +UniRef50_Q8NXM4 DegV domain containing protein MW0711 1.52682370412 0.499999999998 -1.02682370412 +UniRef50_F2GB41 EVE domain containing protein 0.147801158339 0.5 0.352198841661 +UniRef50_B9DRS8 Glycogen synthase 0.0684204963903 0.5 0.43157950361 +UniRef50_B9KRQ9 Response regulator receiver protein 6.23930872175 0.499999999999 -5.73930872175 +UniRef50_K3Z8U3 0.327726194955 0.5 0.172273805045 +UniRef50_B0VCR0 0.023686634293 0.5 0.476313365707 +UniRef50_UPI00037D7B24 hypothetical protein 0.928213100681 0.5 -0.428213100681 +UniRef50_U6JY85 0.0284116802472 0.5 0.471588319753 +UniRef50_B9KU70 Periplasmic solute binding protein 0.853819527108 0.5 -0.353819527108 +UniRef50_D7AAV7 0.0819068778749 0.5 0.418093122125 +UniRef50_Q3J682 2 dehydropantoate 2 reductase 0.799341663931 0.5 -0.299341663931 +UniRef50_U5MW40 SpoIIIAH like protein 1.45116718241 0.5 -0.95116718241 +UniRef50_UPI0002D3A5FE hypothetical protein 0.196778469553 0.5 0.303221530447 +UniRef50_A5UKH3 Homoserine O acetyltransferase 0.925557326843 0.5 -0.425557326843 +UniRef50_G9A115 1.07431351165 0.5 -0.574313511645 +UniRef50_UPI0003C1A4EF PREDICTED 0.229419678082 0.5 0.270580321918 +UniRef50_A4IT51 Anthranilate 3 monooxygenase oxygenase component 6.97991369932 0.500000000001 -6.47991369932 +UniRef50_UPI000343F89B PREDICTED 0.0639262137886 0.5 0.436073786211 +UniRef50_UPI00037F4E3B hypothetical protein, partial 0.0882771522006 0.5 0.4117228478 +UniRef50_P22996 Resolvase 0.02361840675 0.500000000001 0.476381593249 +UniRef50_P57286 Superoxide dismutase [Mn] 0.110855039061 0.5 0.389144960939 +UniRef50_D3UZU9 0.470167155762 0.5 0.0298328442377 +UniRef50_C5LZC5 0.335725335794 0.5 0.164274664206 +UniRef50_M1MI36 0.720514288149 0.5 -0.220514288149 +UniRef50_P15931 Peptidoglycan hydrolase FlgJ 0.241905917591 0.5 0.258094082409 +UniRef50_UPI00029A0F96 PfkB domain containing protein 0.588127838937 0.5 -0.0881278389374 +UniRef50_E5QV40 0.980244428019 0.5 -0.480244428019 +UniRef50_A4WQH8 Plasmid pRiA4b ORF 3 family protein 1.08941162077 0.5 -0.589411620775 +UniRef50_UPI00036A1A43 hypothetical protein 0.0754350944812 0.5 0.424564905519 +UniRef50_Q795R8 1.55644893073 0.499999999998 -1.05644893073 +UniRef50_UPI0002D2C86E hypothetical protein 1.57360025419 0.5 -1.07360025419 +UniRef50_UPI000346B9B9 hypothetical protein 0.00320444795571 0.499999999999 0.496795552045 +UniRef50_P77739 0.607487495497 0.5 -0.107487495497 +UniRef50_X8FNE2 HD domain protein 0.0801129269582 0.5 0.419887073042 +UniRef50_UPI00024935CA phosphoenolpyruvate dependent sugar phosphotransferase system EIIABC, glucose specific 0.0472239372079 0.5 0.452776062792 +UniRef50_P77732 1.65386994157 0.5 -1.15386994157 +UniRef50_P77730 0.996407400104 0.5 -0.496407400104 +UniRef50_O26944 Metalloprotease MTH_856 0.986921490386 0.5 -0.486921490386 +UniRef50_F0XYT4 0.103479063283 0.5 0.396520936717 +UniRef50_Q46871 NADPH dependent ferric chelate reductase 2.14675856137 0.499999999997 -1.64675856137 +UniRef50_P37686 Probable alcohol dehydrogenase 0.279177390849 0.5 0.220822609151 +UniRef50_F4PD55 Expressed protein 0.724474368365 0.5 -0.224474368365 +UniRef50_A9M1Y3 0.0189746950188 0.5 0.481025304981 +UniRef50_D0J3S0 TRAP dicarboxylate transporter, DctM subunit 0.290572585833 0.5 0.209427414167 +UniRef50_UPI00037FD144 hypothetical protein 0.346021573626 0.5 0.153978426374 +UniRef50_M9VHU4 DNA gyrase topoisomerase IV, A subunit 0.0214851083312 0.5 0.478514891669 +UniRef50_A3TUW7 1.58257259644 0.5 -1.08257259644 +UniRef50_Q28UZ5 Hypoxia induced protein conserved protein 0.273954565432 0.5 0.226045434568 +UniRef50_A3M3B5 Arylsulfatase 0.0131904601595 0.5 0.486809539841 +UniRef50_M4XE09 0.42931038125 0.5 0.0706896187497 +UniRef50_UPI00037E95DD MULTISPECIES 1.74657490401 0.5 -1.24657490401 +UniRef50_O27566 0.965473784551 0.5 -0.465473784551 +UniRef50_A4WFL4 Glycogen debranching enzyme 0.208711569566 0.5 0.291288430434 +UniRef50_UPI0003BBA1AF PREDICTED 1.4218073257 0.5 -0.921807325697 +UniRef50_Q891J7 ATP dependent Clp protease proteolytic subunit 0.0462687439742 0.499999999999 0.453731256027 +UniRef50_D4JWQ1 Seryl tRNA synthetase 0.0519022358873 0.5 0.448097764113 +UniRef50_UPI000376DE1E TonB dependent receptor, partial 0.0192108033055 0.5 0.480789196694 +UniRef50_UPI00046628D5 hypothetical protein 1.66427293437 0.5 -1.16427293437 +UniRef50_Q984K6 Phosphoribosylformylglycinamidine cyclo ligase 0.772784120114 0.5 -0.272784120114 +UniRef50_R7QBK2 Stackhouse genomic scaffold, scaffold_21 1.18229694536 0.5 -0.682296945361 +UniRef50_UPI0003B66A9A magnesium transporter MgtC 0.806143183112 0.5 -0.306143183112 +UniRef50_G2WVV9 DUF814 domain containing protein 0.427391338142 0.5 0.0726086618584 +UniRef50_E4AYJ6 0.0171900834178 0.5 0.482809916582 +UniRef50_P63412 Acetate kinase 1.35856273844 0.500000000001 -0.85856273844 +UniRef50_UPI0002BC6437 hypothetical protein 0.033133630865 0.5 0.466866369135 +UniRef50_UPI0003FE028E hypothetical protein 1.28556023397 0.500000000001 -0.785560233967 +UniRef50_V7GTL1 1.30700453404 0.5 -0.807004534042 +UniRef50_Q1MMP4 50S ribosomal protein L20 2.36504423572 0.5 -1.86504423572 +UniRef50_Q3IV37 1.55902220826 0.5 -1.05902220826 +UniRef50_Q3IV35 1.65636142557 0.5 -1.15636142557 +UniRef50_Q3IV32 2.21058782006 0.499999999998 -1.71058782006 +UniRef50_A6LSR7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.9483415086 0.5 -1.4483415086 +UniRef50_P71310 0.169025239661 0.5 0.330974760339 +UniRef50_Q3JQ29 1.08844072656 0.5 -0.588440726562 +UniRef50_A1B962 Ribosomal RNA large subunit methyltransferase E 3.93430321685 0.499999999999 -3.43430321685 +UniRef50_A6LTV3 0.369814133154 0.5 0.130185866846 +UniRef50_Q034X6 30S ribosomal protein S12 0.00535197490809 0.5 0.494648025092 +UniRef50_E4D6N2 0.0321981806653 0.5 0.467801819335 +UniRef50_X1MDA3 Marine sediment metagenome DNA, contig 0.0138435385601 0.5 0.48615646144 +UniRef50_C0RJC1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.801593508735 0.5 -0.301593508735 +UniRef50_R6IDY7 0.22774401828 0.5 0.27225598172 +UniRef50_Q6BA81 2.4436628951 0.5 -1.9436628951 +UniRef50_Q8CQ58 ATP utilizing enzyme of the PP loop superfamily 0.999471873648 0.5 -0.499471873648 +UniRef50_P37659 Protein BcsG homolog 3.1572947469 0.5 -2.6572947469 +UniRef50_E6DXU7 ABC transporter, solute binding protein 0.0202686229361 0.5 0.479731377064 +UniRef50_Q2SVU4 Ribose import ATP binding protein RbsA 1 0.113551412095 0.5 0.386448587905 +UniRef50_Q98FL3 Phosphate transport system permease protein PstC 5.04528582372 0.499999999999 -4.54528582372 +UniRef50_A1BBE0 Alkylhydroperoxidase like protein, AhpD family 8.35092504346 0.500000000006 -7.85092504347 +UniRef50_P76463 2.08813920335 0.499999999999 -1.58813920335 +UniRef50_P76462 7.34060748986 0.499999999998 -6.84060748986 +UniRef50_P76466 1.19187894009 0.5 -0.691878940086 +UniRef50_UPI0004753B4A sugar ABC transporter permease 1.71240132673 0.5 -1.21240132673 +UniRef50_P0ABE5 Cytochrome b561 0.336359238555 0.5 0.163640761445 +UniRef50_D4H299 0.654106651737 0.5 -0.154106651737 +UniRef50_UPI0003C78158 hypothetical protein, partial 1.22046849726 0.5 -0.720468497255 +UniRef50_UPI00046770C1 hypothetical protein 0.316160616681 0.5 0.183839383319 +UniRef50_UPI0003B4B937 ribonuclease D 2.85768040244 0.5 -2.35768040244 +UniRef50_Q3IV99 HipA domain containing protein 1.49334798136 0.5 -0.99334798136 +UniRef50_V9WGZ8 Di and tricarboxylate transporter 1.58898698823 0.5 -1.08898698823 +UniRef50_A0PKQ3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.470373188669 0.5 0.0296268113312 +UniRef50_I3VIL5 Exodeoxyribonuclease V beta subunit 1.12156297884 0.5 -0.621562978842 +UniRef50_C4LGQ2 Putative lysophospholipase 0.295908888535 0.5 0.204091111465 +UniRef50_P21627 High affinity branched chain amino acid transport system permease protein BraD 1.20315746669 0.5 -0.703157466692 +UniRef50_UPI0001CC0C54 phosphogluconate dehydratase 0.98463198639 0.5 -0.48463198639 +UniRef50_UPI000479E1B9 biotin biosynthesis protein BioY 0.164049653724 0.5 0.335950346276 +UniRef50_B0TGJ1 0.449674196068 0.5 0.0503258039324 +UniRef50_K7SIM7 Phosphoglycerate mutase family protein 0.0280934364431 0.5 0.471906563557 +UniRef50_G8P2V7 Integral membrane protein 0.622896073424 0.5 -0.122896073424 +UniRef50_X2NCX1 1.34497999421 0.5 -0.844979994214 +UniRef50_UPI00034D1C35 hypothetical protein 4.57654720213 0.499999999994 -4.07654720212 +UniRef50_G9ZD87 0.0426511923455 0.5 0.457348807655 +UniRef50_UPI0003EC446E PREDICTED 0.32428368108 0.5 0.17571631892 +UniRef50_U5X589 Dehydrogenase 0.059746676006 0.5 0.440253323994 +UniRef50_D7G0G3 2.12934721676 0.500000000001 -1.62934721676 +UniRef50_UPI0003695FD6 membrane protein 0.195754807838 0.5 0.304245192162 +UniRef50_P0AFF3 Nucleoside permease NupC 0.972092713538 0.5 -0.472092713538 +UniRef50_UPI00047A3E0B MarR family transcriptional regulator 3.39344118228 0.499999999995 -2.89344118228 +UniRef50_A5UNU3 0.39405489537 0.5 0.10594510463 +UniRef50_UPI000422F603 organic hydroperoxide resistance protein 0.0407827298842 0.5 0.459217270116 +UniRef50_T2A3R6 0.113071793401 0.5 0.386928206598 +UniRef50_O33517 Protein translocase subunit SecD 2.77493449857 0.5 -2.27493449857 +UniRef50_B5FUN9 Zinc transport protein ZntB 1.56863616137 0.5 -1.06863616137 +UniRef50_P77445 Ethanolamine utilization protein EutE 1.08451419852 0.5 -0.584514198523 +UniRef50_B5YU52 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 0.590711031274 0.5 -0.0907110312741 +UniRef50_V5T2Q4 Diguanylate cyclase 1.2095754306 0.5 -0.709575430602 +UniRef50_C7MC16 ATP dependent zinc metalloprotease FtsH 0.000481670749831 0.5 0.49951832925 +UniRef50_Q7W4T9 Holliday junction ATP dependent DNA helicase RuvA 0.602472686723 0.5 -0.102472686723 +UniRef50_P00946 Mannose 6 phosphate isomerase 2.28751298574 0.500000000003 -1.78751298574 +UniRef50_V5T4B0 Pilus assembly protein PilV 0.110975906131 0.5 0.38902409387 +UniRef50_T0VJG1 PTS fructose IIC component 0.497180742023 0.5 0.00281925797728 +UniRef50_J2DPW6 0.324370893054 0.5 0.175629106946 +UniRef50_Q3Z5U2 HTH type transcriptional regulator SgrR 1.93858850835 0.499999999999 -1.43858850835 +UniRef50_F9Z280 0.0449943335056 0.5 0.455005666495 +UniRef50_R7H8U6 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.142979438876 0.5 0.357020561124 +UniRef50_K1CPP9 0.995679952949 0.5 -0.495679952949 +UniRef50_P04995 Exodeoxyribonuclease I 2.25193476265 0.5 -1.75193476265 +UniRef50_UPI00031469E2 hypothetical protein 0.29006870327 0.5 0.20993129673 +UniRef50_A6LY50 MATE efflux family protein 0.335388170248 0.5 0.164611829752 +UniRef50_B7H068 Histidine tRNA ligase 0.0206876594161 0.5 0.479312340584 +UniRef50_UPI000419FBF3 ABC transporter permease 0.232380685996 0.5 0.267619314004 +UniRef50_UPI00035EE3E6 hypothetical protein 0.402682546126 0.5 0.0973174538735 +UniRef50_G8VDA6 0.0457210372013 0.5 0.454278962799 +UniRef50_U2BA89 0.0370912452373 0.5 0.462908754763 +UniRef50_W7AYX4 0.882951079876 0.5 -0.382951079876 +UniRef50_A6M0D8 0.219430558169 0.5 0.280569441831 +UniRef50_Q1IYN7 Amidase 0.00574227161165 0.5 0.494257728388 +UniRef50_T2I810 Structural constituent of cell wall 4.68613314894 0.500000000001 -4.18613314895 +UniRef50_Q4L769 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 5.5326590104 0.5 -5.0326590104 +UniRef50_UPI0004684CB5 ABC transporter permease 3.06392996741 0.500000000001 -2.56392996741 +UniRef50_Q5HRJ5 Teichoic acid biosynthesis protein, putative 1.43817761039 0.5 -0.938177610392 +UniRef50_Q5HRF7 Phosphate acetyltransferase 1.20492656299 0.5 -0.704926562988 +UniRef50_X7YDZ8 PE family protein 0.0198413949182 0.5 0.480158605082 +UniRef50_O63849 NADH ubiquinone oxidoreductase chain 6 1.04706271174 0.5 -0.547062711739 +UniRef50_UPI0004677159 hypothetical protein 0.87343404502 0.5 -0.37343404502 +UniRef50_L1K787 1.8407646801 0.5 -1.3407646801 +UniRef50_Q2JTU3 Phosphate import ATP binding protein PstB 2 0.00205108167841 0.5 0.497948918321 +UniRef50_UPI000301C2E3 ATPase 0.504668657195 0.5 -0.00466865719535 +UniRef50_A4SCS1 50S ribosomal protein L5 1.3651212412 0.5 -0.865121241202 +UniRef50_Q3J2X2 Phosphatidate cytidylyltransferase 4.72884554174 0.499999999996 -4.22884554173 +UniRef50_B2TLQ4 Chemotaxis response regulator protein glutamate methylesterase 0.155294581116 0.499999999999 0.344705418885 +UniRef50_UPI00016C54E3 chromosomal replication initiator protein DnaA 0.191127566834 0.5 0.308872433166 +UniRef50_A3PKA4 0.370364911333 0.5 0.129635088667 +UniRef50_P32674 Formate acetyltransferase 2 1.16970132941 0.5 -0.669701329415 +UniRef50_J9NZ66 1.91579793071 0.499999999998 -1.41579793071 +UniRef50_Q69K37 0.326875607902 0.5 0.173124392098 +UniRef50_P39342 1.48161795818 0.5 -0.981617958183 +UniRef50_UPI00045609F1 hypothetical protein PFL1_01799 0.00240155135449 0.5 0.497598448646 +UniRef50_UPI0000397F81 COG2931 0.0301304940271 0.5 0.469869505973 +UniRef50_P18813 Maltose maltodextrin import ATP binding protein MalK 1.11296951172 0.5 -0.612969511722 +UniRef50_UPI00044149CA hypothetical protein AURDEDRAFT_115522 0.134758540998 0.5 0.365241459002 +UniRef50_I0C4L0 ADP ribose pyrophosphatase 2.27990348187 0.500000000002 -1.77990348187 +UniRef50_UPI000467F222 hypothetical protein 6.00264425337 0.499999999999 -5.50264425337 +UniRef50_Q167S3 TRAP dicarboxylate transporter, DctM subunit, putative 2.50507448583 0.5 -2.00507448583 +UniRef50_Q2CDM9 0.794510564244 0.5 -0.294510564244 +UniRef50_J8KBH6 YhgE Pip domain containing protein 0.621872827592 0.5 -0.121872827592 +UniRef50_UPI000365A141 hypothetical protein 0.21623938842 0.5 0.28376061158 +UniRef50_C2W425 PTS system Galactitol specific IIC component 0.131813119248 0.5 0.368186880752 +UniRef50_UPI00037AE12F hypothetical protein 0.0852278243189 0.5 0.414772175681 +UniRef50_UPI0003330970 4.55601294933 0.500000000003 -4.05601294934 +UniRef50_Q64467 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 0.404048181081 0.5 0.0959518189192 +UniRef50_B5R9D9 Probable L ascorbate 6 phosphate lactonase UlaG 1.11160557935 0.5 -0.611605579349 +UniRef50_Q1C790 Pyridoxine pyridoxamine 5 phosphate oxidase 0.38518010682 0.5 0.11481989318 +UniRef50_UPI00046FFDD3 iron dicitrate transporter subunit FecD 0.202257113762 0.5 0.297742886238 +UniRef50_P0AE25 Arabinose proton symporter 0.39180231564 0.5 0.10819768436 +UniRef50_Q8DTN8 Adenosine deaminase 2.34535991859 0.5 -1.84535991859 +UniRef50_UPI0002554E0F xylose ABC transporter ATP binding protein 1.39813278756 0.5 -0.898132787563 +UniRef50_W5X630 Putative OsmC like protein 0.227193463875 0.5 0.272806536125 +UniRef50_A7X3N8 Putative membrane protein insertion efficiency factor 0.470576685384 0.5 0.0294233146161 +UniRef50_Q4L3G1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.43861563266 0.499999999999 -0.938615632661 +UniRef50_P77473 Putative cyclic di GMP phosphodiesterase YlaB 1.26165677436 0.499999999999 -0.761656774363 +UniRef50_Q1NHL2 Transposase and inactivated derivative 0.600885106696 0.5 -0.100885106696 +UniRef50_P32717 Putative alkyl aryl sulfatase YjcS 1.3033047695 0.5 -0.8033047695 +UniRef50_Q16DL2 Ubiquinone biosynthesis protein UbiB 4.16613344546 0.5 -3.66613344546 +UniRef50_E1WIS2 Intracellular growth attenuator protein igaA 2.23606745645 0.5 -1.73606745645 +UniRef50_G7M8Q2 Methyl accepting chemotaxis sensory transducer 0.125171974679 0.5 0.374828025321 +UniRef50_UPI000255D9DF Fis family transcriptional regulator 1.03475185674 0.5 -0.534751856736 +UniRef50_B0V742 0.0224697762098 0.5 0.47753022379 +UniRef50_Q2FH57 Putative oligopeptide transport ATP binding protein oppD2 1.91342532993 0.499999999999 -1.41342532993 +UniRef50_U6J469 NADH dehydrogenase ubiquinone iron sulfur 0.258898055075 0.5 0.241101944925 +UniRef50_UPI000474822F isocitrate dehydrogenase 0.482779348105 0.5 0.0172206518951 +UniRef50_Q8DRQ7 Ribosomal RNA large subunit methyltransferase H 0.452317408999 0.5 0.0476825910011 +UniRef50_Q2YVJ6 1.26873077998 0.5 -0.768730779978 +UniRef50_B9MKG1 Adenylate kinase 0.678034110695 0.5 -0.178034110695 +UniRef50_A6M277 0.470932044812 0.5 0.0290679551884 +UniRef50_D4HBC2 Transporter, CPA2 family 0.0265434436137 0.5 0.473456556386 +UniRef50_P04890 Integrase 1.38109483508 0.5 -0.881094835081 +UniRef50_A6LSE2 0.154798497484 0.5 0.345201502516 +UniRef50_UPI00046606A2 hypothetical protein, partial 0.722544860796 0.5 -0.222544860796 +UniRef50_A6M2U1 Multi sensor hybrid histidine kinase 0.0809759975262 0.5 0.419024002473 +UniRef50_UPI000476D31F DNA gyrase subunit A 0.211696917783 0.5 0.288303082217 +UniRef50_UPI0001CC0D72 hypothetical protein 0.22193466226 0.5 0.27806533774 +UniRef50_R4ZZW8 Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage 2.05668259701 0.5 -1.55668259701 +UniRef50_Q9K8F8 Glutamyl tRNA reductase 0.0186009766931 0.5 0.481399023307 +UniRef50_I0C5E6 Endonuclease 14.9578151484 0.500000000003 -14.4578151484 +UniRef50_UPI000472AF7A hypothetical protein 1.73674933372 0.5 -1.23674933372 +UniRef50_B4FAT0 Adenylyltransferase and sulfurtransferase MOCS3 2 0.426944212603 0.5 0.073055787397 +UniRef50_D6M307 Transcriptional regulator, CdaR 1.26086774973 0.5 -0.760867749735 +UniRef50_M9VJY1 Transporter, lactate permease family protein 0.0272623681561 0.5 0.472737631844 +UniRef50_UPI00046A82C0 3 methyladenine DNA glycosylase 0.702131599024 0.5 -0.202131599024 +UniRef50_UPI0004700FE4 hypothetical protein 1.4636275763 0.5 -0.963627576296 +UniRef50_F0KN05 Multiple inositol polyphosphate histidine phosphatase 0.0179511757912 0.5 0.482048824209 +UniRef50_E8PIM3 0.00745605795669 0.5 0.492543942043 +UniRef50_P52129 mRNA endoribonuclease LS 1.00977386687 0.5 -0.509773866866 +UniRef50_UPI000237AE14 spermidine putrescine ABC transporter ATPase subunit 1.02917529171 0.5 -0.529175291705 +UniRef50_A5WHV0 Isochorismatase hydrolase 0.399212180743 0.5 0.100787819257 +UniRef50_Q4K629 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 0.151117521045 0.500000000001 0.348882478954 +UniRef50_UPI0003718DF7 hypothetical protein 0.745949076601 0.5 -0.245949076601 +UniRef50_UPI00036AD976 hypothetical protein 2.34073946186 0.5 -1.84073946186 +UniRef50_C1HZT4 0.0660020741002 0.5 0.4339979259 +UniRef50_UPI0003690E18 hypothetical protein 0.0203022683397 0.5 0.47969773166 +UniRef50_UPI00036650E1 ATPase AAA 0.0476982772005 0.5 0.4523017228 +UniRef50_F9VEN7 Epoxyqueuosine reductase 0.636986923867 0.5 -0.136986923867 +UniRef50_X1PDI0 Marine sediment metagenome DNA, contig 0.448347054865 0.5 0.0516529451352 +UniRef50_G7DLE2 5.9835068578 0.500000000004 -5.48350685781 +UniRef50_E2PHB7 0.256309063408 0.5 0.243690936592 +UniRef50_R5GC07 0.0244233287459 0.5 0.475576671254 +UniRef50_F0YDY4 0.203397008013 0.5 0.296602991987 +UniRef50_UPI0003802080 hypothetical protein 0.0172694549991 0.5 0.482730545001 +UniRef50_UPI00029AFE54 RNA directed DNA polymerase 0.281264804635 0.5 0.218735195365 +UniRef50_W7WC52 0.233390658574 0.500000000001 0.266609341425 +UniRef50_X1XUX4 Uroporphyrinogen decarboxylase 0.145959358172 0.5 0.354040641828 +UniRef50_UPI0001CBC083 PREDICTED 0.267413557002 0.5 0.232586442998 +UniRef50_P54746 Mannosylglycerate hydrolase 3.0956605756 0.499999999999 -2.5956605756 +UniRef50_E4BG02 Dinuclear metal center protein, YbgI family 0.0213897534076 0.5 0.478610246592 +UniRef50_A1VMA0 50S ribosomal protein L19 0.131373803712 0.5 0.368626196288 +UniRef50_T1YBG5 Opine dehydrogenase 4.16561657122 0.499999999999 -3.66561657122 +UniRef50_X1B9K9 Marine sediment metagenome DNA, contig 0.229653791545 0.5 0.270346208455 +UniRef50_A5WGQ7 Periplasmic protein like protein 0.125407247742 0.5 0.374592752258 +UniRef50_X2N5D2 Outer membrane specific lipoprotein transporter subunit LolC 0.902041434422 0.5 -0.402041434422 +UniRef50_X1D3Z2 Marine sediment metagenome DNA, contig 0.16419994096 0.5 0.33580005904 +UniRef50_Q97D80 4 hydroxy tetrahydrodipicolinate synthase 2 0.0291638991746 0.5 0.470836100826 +UniRef50_P40720 Fumarate hydratase class I, aerobic 2.43249003067 0.5 -1.93249003067 +UniRef50_B6IUC1 Methylthioribose 1 phosphate isomerase 1.09472385749 0.5 -0.594723857495 +UniRef50_Q02425 Putative transcriptional regulator MtlR 0.788181226838 0.5 -0.288181226838 +UniRef50_B4M1F9 GJ18858 0.0999398613699 0.5 0.40006013863 +UniRef50_B2IU46 Phosphoribosylformylglycinamidine synthase 2 2.10229483698 0.499999999998 -1.60229483698 +UniRef50_R4GH13 0.302790982149 0.5 0.197209017851 +UniRef50_C1FA47 Potassium transporting ATPase A chain 0.00228054418715 0.5 0.497719455813 +UniRef50_Q1I3T3 Polyhydroxyalkanoate synthesis protein PhaF 1.65107666749 0.499999999998 -1.15107666749 +UniRef50_Q3HKH1 1.66478771757 0.500000000001 -1.16478771758 +UniRef50_Q3HKH3 0.753423426035 0.5 -0.253423426035 +UniRef50_UPI000370C63A hypothetical protein 0.169774700774 0.5 0.330225299226 +UniRef50_W4TJY2 0.188639271609 0.5 0.311360728391 +UniRef50_UPI000441F8F0 PREDICTED 16.0140735773 0.500000000003 -15.5140735773 +UniRef50_G2IS79 Hypothetical membrane protein 1.86073683624 0.499999999999 -1.36073683623 +UniRef50_A5UM67 Sugar fermentation stimulation protein homolog 2.26242968186 0.500000000001 -1.76242968186 +UniRef50_R7PWU8 0.751207438419 0.5 -0.251207438419 +UniRef50_Q2AC94 0.414214143209 0.5 0.0857858567911 +UniRef50_F7Z4K9 TnpA 1.24172395161 0.5 -0.741723951607 +UniRef50_R7PWU3 1.83793169128 0.500000000001 -1.33793169128 +UniRef50_C0QUK8 Methionyl tRNA formyltransferase 0.159044359525 0.5 0.340955640475 +UniRef50_UPI000375AFE0 hypothetical protein 0.0749246305957 0.5 0.425075369404 +UniRef50_UPI00046A12DF hypothetical protein 0.300305475653 0.5 0.199694524347 +UniRef50_A6LX98 Glycoside hydrolase, family 18 0.133069467569 0.5 0.366930532431 +UniRef50_P22102 Trifunctional purine biosynthetic protein adenosine 3 0.902161734496 0.5 -0.402161734496 +UniRef50_Q5KXU4 Chorismate synthase 0.328029708767 0.5 0.171970291233 +UniRef50_UPI000474B63A hypothetical protein 0.258320393984 0.5 0.241679606016 +UniRef50_F8IFU6 LmbE family protein 0.522328714863 0.5 -0.0223287148625 +UniRef50_UPI000289F8D3 methionine aminotransferase 0.2483437011 0.5 0.2516562989 +UniRef50_M9RJP3 4.55348075787 0.499999999998 -4.05348075786 +UniRef50_F4NWK8 0.181299299801 0.5 0.318700700199 +UniRef50_UPI00041A4561 hypothetical protein 6.09965866751 0.499999999996 -5.59965866751 +UniRef50_Q9PD69 Proline iminopeptidase 0.0266773147395 0.5 0.473322685261 +UniRef50_G7M2T0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.141478549141 0.5 0.358521450859 +UniRef50_Q8R9V7 3 oxoacyl [acyl carrier protein] synthase 3 2.89742592432 0.5 -2.39742592432 +UniRef50_UPI0002888835 glycerol 3 phosphatase 0.235445577474 0.5 0.264554422526 +UniRef50_UPI0003722744 hypothetical protein 0.149929606133 0.5 0.350070393867 +UniRef50_B7GZ54 Actinomycin synthetase II 0.0098665576078 0.5 0.490133442392 +UniRef50_D7CWU8 Type IV pilus assembly protein PilM 0.00149574072375 0.5 0.498504259276 +UniRef50_E8SJI8 8.2026232738 0.499999999998 -7.7026232738 +UniRef50_UPI0003C10230 PREDICTED 0.0860472573476 0.5 0.413952742652 +UniRef50_UPI000470BFD5 amino acid ABC transporter permease 0.283174248585 0.5 0.216825751415 +UniRef50_P45579 2.44839377032 0.5 -1.94839377032 +UniRef50_UPI000464E9C2 hypothetical protein 0.340900900095 0.5 0.159099099905 +UniRef50_Q8GAI8 Succinate semialdehyde dehydrogenase 0.0435254868828 0.5 0.456474513117 +UniRef50_Q3IV11 Isopropylmalate homocitrate synthase 2.57783382418 0.499999999999 -2.07783382418 +UniRef50_A1JS01 DNA directed RNA polymerase subunit alpha 2.26510457072 0.499999999999 -1.76510457072 +UniRef50_UPI0003B67DBA hypothetical protein 1.38645790513 0.5 -0.886457905128 +UniRef50_P06574 RNA polymerase sigma B factor 1.089765902 0.5 -0.589765902003 +UniRef50_UPI00046D6464 translation factor Sua5 0.342593387559 0.5 0.157406612441 +UniRef50_UPI000476E6E7 lysyl tRNA synthetase 0.976044418402 0.5 -0.476044418402 +UniRef50_Q88IQ4 Sensor histidine kinase response regulator 0.741434331171 0.5 -0.241434331171 +UniRef50_A8LKQ2 Sulfurtransferase 0.280526394814 0.5 0.219473605186 +UniRef50_P44874 Acetate CoA transferase subunit beta 0.643461491617 0.5 -0.143461491617 +UniRef50_Q3KA14 LysR family regulatory protein 0.294138286468 0.5 0.205861713532 +UniRef50_E9LLQ7 IS2 ORFB transposase 1.45153626772 0.5 -0.951536267717 +UniRef50_P0AB08 0.524305771097 0.5 -0.0243057710967 +UniRef50_Q5LS56 Acrylyl CoA reductase AcuI 0.0402799213058 0.5 0.459720078694 +UniRef50_UPI000462E49A hypothetical protein 0.292722673073 0.5 0.207277326927 +UniRef50_M3DK36 0.343853772885 0.5 0.156146227115 +UniRef50_P56072 L serine dehydratase 0.019537882078 0.5 0.480462117922 +UniRef50_UPI00040107BB glycosyl transferase family 39 0.224957861562 0.5 0.275042138438 +UniRef50_Q6A5R4 Sodium 0.0254281155812 0.5 0.474571884419 +UniRef50_U5NYY0 Lysophospholipase 0.170005727769 0.5 0.329994272231 +UniRef50_B5GT91 WD 40 repeat containing protein 0.126689276135 0.5 0.373310723865 +UniRef50_UPI00034B152D hypothetical protein 1.16349410851 0.500000000001 -0.663494108516 +UniRef50_Q58321 Magnesium chelatase subunit ChlI homolog 0.0224323045658 0.5 0.477567695434 +UniRef50_G8VJV8 Allantoate amidohydrolase 0.0155961352154 0.5 0.484403864785 +UniRef50_Q2NEU9 Serine tRNA ligase 2.91291549661 0.500000000003 -2.41291549661 +UniRef50_Q8DSX1 52.4771868674 0.49999999992 -51.9771868674 +UniRef50_Q92QK5 Aspartyl glutamyl tRNA amidotransferase subunit B 0.647688020636 0.5 -0.147688020636 +UniRef50_R9ZCZ8 Sensor histidine kinase 0.244161979472 0.5 0.255838020528 +UniRef50_UPI0003466363 hypothetical protein 2.06258738119 0.499999999999 -1.56258738119 +UniRef50_P32672 Fructose like permease IIC component 2 0.827092521385 0.5 -0.327092521385 +UniRef50_Q88YG1 Uracil DNA glycosylase 1.4789200111 0.5 -0.978920011096 +UniRef50_A0A034KNE5 3.20698992895 0.5 -2.70698992895 +UniRef50_A6LZY6 Molybdopterin guanine dinucleotide biosynthesis protein B 0.145657471321 0.5 0.354342528679 +UniRef50_UPI0003AB5CEA PREDICTED 0.101515316747 0.5 0.398484683253 +UniRef50_Q81MS2 Arginine decarboxylase 0.0370771280855 0.5 0.462922871914 +UniRef50_A7WWP7 1.20136174437 0.5 -0.701361744374 +UniRef50_F8HFP7 Transcriptional regulator, LysR family 1.09312588765 0.5 -0.593125887647 +UniRef50_R0PPD5 0.325875728918 0.5 0.174124271082 +UniRef50_D5BRX6 Inner membrane translocator 3.492540056 0.5 -2.992540056 +UniRef50_UPI000477A269 hypothetical protein 1.48106319775 0.5 -0.98106319775 +UniRef50_K7E2E5 1.06251723206 0.5 -0.562517232057 +UniRef50_X8A453 Putative MAGNESIUM CHELATASE domain protein 0.0604590785262 0.5 0.439540921474 +UniRef50_B5XSS1 50S ribosomal protein L13 2.36723382196 0.500000000002 -1.86723382197 +UniRef50_P57576 50S ribosomal protein L6 0.191637278581 0.5 0.308362721419 +UniRef50_A0A011QAN2 0.339966778118 0.5 0.160033221882 +UniRef50_S5XRJ3 Proline iminopeptidase 3.47584910608 0.5 -2.97584910608 +UniRef50_UPI0002557E64 C4 dicarboxylate transport transcriptional regulatory protein DctD, partial 0.310600673007 0.5 0.189399326993 +UniRef50_Q7N4V9 3 phenylpropionate cinnamic acid dioxygenase subunit beta 0.788423353083 0.5 -0.288423353083 +UniRef50_B2UTG2 UPF0763 protein HPSH_03535 0.0449025718621 0.5 0.455097428138 +UniRef50_I4KRZ7 Transcriptional regulator, GntR family aminotransferase, classes I and II family protein 1.24069782066 0.499999999999 -0.74069782066 +UniRef50_A0A016QN34 0.00112365707139 0.500000000001 0.498876342928 +UniRef50_UPI00041C20AD hypothetical protein 0.348920200281 0.5 0.151079799719 +UniRef50_J8VH78 Coproporphyrinogen III oxidase 0.708847330965 0.5 -0.208847330965 +UniRef50_UPI00047EB041 hypothetical protein 0.443585866052 0.5 0.0564141339479 +UniRef50_UPI0002490BAD competence damage inducible protein A 1.14247692662 0.5 -0.642476926616 +UniRef50_UPI0004296EAD ribosome binding factor A 0.278791687616 0.5 0.221208312384 +UniRef50_P0AAJ6 Formate dehydrogenase O iron sulfur subunit 2.32706810875 0.499999999998 -1.82706810875 +UniRef50_B7LQ20 Glyceraldehyde 3 phosphate dehydrogenase A 0.0131598670965 0.5 0.486840132904 +UniRef50_UPI00035D6F39 hypothetical protein 2.75941329069 0.500000000001 -2.25941329069 +UniRef50_A6M0J9 CheA signal transduction histidine kinase 0.130316623987 0.5 0.369683376013 +UniRef50_UPI00023759DD acyltransferase family protein 0.362593047546 0.5 0.137406952454 +UniRef50_R7PX72 8.69754228498 0.500000000004 -8.19754228498 +UniRef50_F0TA01 Archaeal glutamate synthase [NADPH] 1.84825497458 0.499999999999 -1.34825497458 +UniRef50_Q492F5 4 hydroxy tetrahydrodipicolinate synthase 0.52470498808 0.5 -0.0247049880803 +UniRef50_J7QKX2 Transposase domain protein 1.81241251761 0.499999999999 -1.31241251761 +UniRef50_K0S542 3.26291250601 0.5 -2.76291250601 +UniRef50_W9UW01 0.128092089085 0.5 0.371907910915 +UniRef50_A6T6Q1 Ribosomal RNA large subunit methyltransferase F 0.332504574001 0.5 0.167495425999 +UniRef50_K0Q3E4 0.0107747936468 0.499999999999 0.489225206354 +UniRef50_Q8G5F0 Arginine biosynthesis bifunctional protein ArgJ 0.00853133667749 0.5 0.491468663322 +UniRef50_Q9I702 Putative 3 oxopropanoate dehydrogenase 0.752000277818 0.5 -0.252000277818 +UniRef50_A4WZZ2 0.754023206677 0.5 -0.254023206677 +UniRef50_UPI00047EFBD1 glycine betaine ABC transporter ATPase 0.340470250018 0.5 0.159529749982 +UniRef50_B9ADV3 Putative methyl coenzyme M reductase, alpha subunit 2.35110899683 0.5 -1.85110899683 +UniRef50_UPI000463E516 hypothetical protein 0.351704481539 0.5 0.148295518461 +UniRef50_P0AAT4 Miniconductance mechanosensitive channel YbdG 2.47658777078 0.5 -1.97658777078 +UniRef50_Q6F1M4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 1 0.675162263743 0.5 -0.175162263743 +UniRef50_S5D395 Enoyl CoA hydratase carnithine racemase 0.0313747240074 0.5 0.468625275992 +UniRef50_P33216 Mannitol 2 dehydrogenase 7.17166583219 0.499999999999 -6.67166583219 +UniRef50_Q57354 Putative GTP cyclohydrolase 1 type 2 1.00100036927 0.5 -0.50100036927 +UniRef50_UPI0004769B76 hypothetical protein 0.0906174152846 0.5 0.409382584716 +UniRef50_X0TRL2 Marine sediment metagenome DNA, contig 0.354639924692 0.5 0.145360075308 +UniRef50_F2ECU7 Predicted protein 0.23233463872 0.5 0.26766536128 +UniRef50_Q98BM2 ABC transporter, periplasmic oligopeptide binding protein 1.77127944841 0.5 -1.27127944841 +UniRef50_Q28L99 50S ribosomal protein L25 16.2085576226 0.500000000003 -15.7085576226 +UniRef50_A6LVP1 Sterol 3 beta glucosyltransferase 0.284397398506 0.5 0.215602601494 +UniRef50_M1MJB2 0.0344362404243 0.5 0.465563759576 +UniRef50_UPI0004677D66 DNA 3 methyladenine glycosylase 0.459442201285 0.5 0.0405577987151 +UniRef50_P76114 HTH type transcriptional regulator McbR 5.36580382703 0.499999999996 -4.86580382703 +UniRef50_Q62KW5 Valine tRNA ligase 0.505877761705 0.5 -0.00587776170545 +UniRef50_F2AE12 0.877373387757 0.5 -0.377373387757 +UniRef50_UPI00032A5C01 PREDICTED 0.0432006733137 0.5 0.456799326686 +UniRef50_S2ZSD0 0.234790373304 0.5 0.265209626696 +UniRef50_O25130 UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase 0.0372541209026 0.5 0.462745879097 +UniRef50_UPI0003638962 hypothetical protein 0.0889865076164 0.5 0.411013492384 +UniRef50_I1F566 0.309958669913 0.5 0.190041330087 +UniRef50_F8JEF7 1.99899918533 0.5 -1.49899918533 +UniRef50_UPI0003B4FCE0 MFS transporter 0.0846057858056 0.5 0.415394214194 +UniRef50_P56909 NADH quinone oxidoreductase subunit E 1 2.34196236208 0.5 -1.84196236208 +UniRef50_P0AC17 Dihydroneopterin aldolase 0.027594344128 0.5 0.472405655872 +UniRef50_P02918 Penicillin binding protein 1A 1.4261857858 0.5 -0.926185785802 +UniRef50_Q08NZ6 0.0248862971241 0.500000000001 0.475113702875 +UniRef50_X1G2K5 Marine sediment metagenome DNA, contig 7.70155975085 0.499999999998 -7.20155975085 +UniRef50_UPI00023787D7 hypothetical protein 1.98424760885 0.5 -1.48424760885 +UniRef50_A9CFS9 Small heat shock protein 12.6758871807 0.499999999999 -12.1758871807 +UniRef50_D9W0X8 Predicted protein 0.023903620779 0.5 0.476096379221 +UniRef50_G8VLV0 tRNA processing ribonuclease 0.011046175545 0.5 0.488953824455 +UniRef50_UPI00046F8633 cation transporter 0.133275111938 0.5 0.366724888062 +UniRef50_P29961 Heme exporter protein C 1.1690257423 0.5 -0.669025742302 +UniRef50_E8W5Y1 1.37550015822 0.5 -0.875500158219 +UniRef50_P77131 4.6817635206 0.499999999999 -4.1817635206 +UniRef50_A1B054 Transcriptional regulator, LuxR family 2.56796405578 0.500000000001 -2.06796405578 +UniRef50_B8CSC0 Lipoprotein signal peptidase 0.854460686812 0.5 -0.354460686812 +UniRef50_B9KM78 OmpA MotB domain protein 1.34502028131 0.5 -0.845020281313 +UniRef50_P71481 DNA primase 0.208613932886 0.5 0.291386067114 +UniRef50_W4TGX7 Substrate specific component BL0695 of predicted ECF transporter 0.00476574855361 0.5 0.495234251446 +UniRef50_K6XJA6 0.0484262710044 0.5 0.451573728995 +UniRef50_R5KG87 AAA domain AAA domain multi domain protein 0.00151685809221 0.5 0.498483141908 +UniRef50_UPI00037A76B2 hypothetical protein 0.198389028694 0.5 0.301610971306 +UniRef50_UPI0004632E52 hypothetical protein 0.693370900778 0.5 -0.193370900778 +UniRef50_F3X0N5 0.134372418442 0.5 0.365627581558 +UniRef50_M5AFG5 ABC type transporter ATP binding protein EcsA 3.89553867093 0.500000000006 -3.39553867094 +UniRef50_Q6K4U0 5.42255268211 0.500000000007 -4.92255268211 +UniRef50_W4UAN6 Excinuclease 0.128299130244 0.5 0.371700869756 +UniRef50_F9YZU0 Transcriptional regulator, GntR family 0.0121343049193 0.5 0.487865695081 +UniRef50_P35667 Glutathione synthetase 0.0430697849236 0.5 0.456930215076 +UniRef50_D2FKD3 3.24324152963 0.500000000007 -2.74324152964 +UniRef50_P12282 Molybdopterin synthase adenylyltransferase 5.8969631114 0.500000000003 -5.3969631114 +UniRef50_B3QXJ4 Beta lactamase domain protein 0.0254585384712 0.5 0.474541461529 +UniRef50_UPI0004403F5A PREDICTED 0.89498998528 0.5 -0.39498998528 +UniRef50_Q8TJT7 Translation initiation factor 2 subunit gamma 1.14630812921 0.5 -0.646308129213 +UniRef50_I5ARC3 Acetolactate synthase 0.27632971241 0.5 0.22367028759 +UniRef50_Q55484 Diaminopimelate decarboxylase 0.206693397547 0.5 0.293306602453 +UniRef50_D9QTB8 Oxidoreductase domain protein 1.03780844063 0.5 -0.537808440634 +UniRef50_P0CF79 Transposase InsF for insertion sequence IS3A 0.633684289474 0.5 -0.133684289474 +UniRef50_Q9RR46 Glycine betaine carnitine transport ATP binding protein GbuA 0.0318029582687 0.5 0.468197041731 +UniRef50_UPI00036AA55A hypothetical protein 0.442732091918 0.5 0.0572679080816 +UniRef50_Q3IUW0 TraW 1.78428290637 0.500000000001 -1.28428290637 +UniRef50_UPI00021A7398 PREDICTED 0.0374592978809 0.499999999999 0.46254070212 +UniRef50_E5QWQ2 Aspartokinase 2.06513220365 0.499999999998 -1.56513220365 +UniRef50_Q7F759 P0044F08.26 protein 3.36405870256 0.5 -2.86405870256 +UniRef50_Q73C41 S layer protein, putative 0.00349243671941 0.500000000001 0.49650756328 +UniRef50_V4QD05 Fimbrial protein 0.160094126063 0.5 0.339905873937 +UniRef50_A5GUA9 Light independent protochlorophyllide reductase subunit B 0.91187681784 0.5 -0.41187681784 +UniRef50_E6V099 Formiminoglutamate deiminase 0.455617644102 0.5 0.0443823558984 +UniRef50_P06710 DNA polymerase III subunit tau 1.17578297955 0.5 -0.675782979553 +UniRef50_R1CZX5 0.0128646571229 0.5 0.487135342877 +UniRef50_A0A009JRB9 0.051128990884 0.5 0.448871009116 +UniRef50_UPI0002FFBB25 hypothetical protein 1.80413552115 0.500000000001 -1.30413552115 +UniRef50_UPI000423190C O succinylbenzoate synthase 0.00989109995303 0.500000000001 0.490108900046 +UniRef50_B9DX48 0.18463512614 0.5 0.31536487386 +UniRef50_B3DW88 1 deoxy D xylulose 5 phosphate synthase 0.00883647841022 0.500000000001 0.491163521589 +UniRef50_X8CKI5 CobQ CobB MinD ParA nucleotide binding domain protein 0.310924020936 0.5 0.189075979064 +UniRef50_Q9ZIS7 Lipopolysaccharide core heptose kinase RfaY 0.169501980771 0.5 0.330498019229 +UniRef50_U3SVH6 1.34862283019 0.5 -0.848622830193 +UniRef50_P76269 0.436123081606 0.5 0.0638769183942 +UniRef50_G2P8Z9 Transposase, IS605 OrfB family 0.0400006722347 0.5 0.459999327765 +UniRef50_UPI000471D0D3 hypothetical protein 0.00450842297605 0.499999999999 0.495491577025 +UniRef50_Q6A9L6 Periplasmic binding protein 0.0267477484984 0.499999999999 0.473252251502 +UniRef50_UPI0003B48E1B ADP ribose pyrophosphatase 0.155065834967 0.5 0.344934165033 +UniRef50_UPI00036CF9CE hypothetical protein 0.279911301219 0.5 0.220088698781 +UniRef50_D3E124 UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU 3.44347246723 0.5 -2.94347246723 +UniRef50_K8DBK5 0.197893322312 0.499999999999 0.302106677689 +UniRef50_N4W5E7 C4 dicarboxylate transport protein 0.213864893397 0.5 0.286135106603 +UniRef50_U2ACI4 1.51257929712 0.5 -1.01257929712 +UniRef50_K2FH00 1.02458872295 0.5 -0.524588722948 +UniRef50_B2UY31 Two component sensor kinase 0.0576743256764 0.499999999999 0.442325674324 +UniRef50_F4REI7 0.00871503837243 0.5 0.491284961627 +UniRef50_C4I344 Permease, major facilitator superfamily 0.00789703261657 0.5 0.492102967384 +UniRef50_O29196 5,10 methylenetetrahydromethanopterin reductase 1.07061471273 0.5 -0.570614712731 +UniRef50_E1AHU5 Major ampullate spidroin 0.274748892931 0.5 0.225251107069 +UniRef50_X6L226 2.63347110151 0.500000000003 -2.13347110152 +UniRef50_UPI000463A149 hypothetical protein 1.58192015484 0.5 -1.08192015484 +UniRef50_Q9RVN4 0.0413995678735 0.5 0.458600432126 +UniRef50_A6LSZ3 Threonine synthase 0.163992036717 0.5 0.336007963283 +UniRef50_B9DZE4 UPF0229 protein CKR_0568 0.235564837361 0.5 0.264435162639 +UniRef50_UPI0003801F95 hypothetical protein, partial 0.224629484242 0.5 0.275370515758 +UniRef50_C6DYM5 Anthranilate phosphoribosyltransferase 0.936101292103 0.5 -0.436101292103 +UniRef50_A0A023AZW8 0.11803721126 0.5 0.38196278874 +UniRef50_G7M887 Histidine kinase 0.061238867494 0.499999999999 0.438761132507 +UniRef50_K7UKE5 0.111563677809 0.5 0.388436322191 +UniRef50_P37461 Sensor protein ZraS 7.2026422201 0.500000000001 -6.7026422201 +UniRef50_I0HXP3 0.328397992335 0.5 0.171602007665 +UniRef50_F2U1N7 0.22270214501 0.500000000001 0.277297854989 +UniRef50_Q28JK1 Flagellar basal body rod protein FlgF 0.716172650421 0.5 -0.216172650421 +UniRef50_UPI000471EEAE ABC transporter 0.735791437423 0.5 -0.235791437423 +UniRef50_D3DZ81 Cytochrome C type biogenesis protein DsbD 0.598527575127 0.5 -0.0985275751268 +UniRef50_W7TIW7 10.6226466779 0.499999999997 -10.1226466779 +UniRef50_Q831X4 Asparagine tRNA ligase 0.983302255825 0.5 -0.483302255825 +UniRef50_Q6GFB8 Protein map 4.66964425836 0.5 -4.16964425836 +UniRef50_H8LBN6 PTS system, mannose fructose sorbose specific IID component 0.175181452038 0.499999999999 0.324818547963 +UniRef50_Q834K3 ATP dependent protease subunit HslV 0.183311605461 0.5 0.316688394539 +UniRef50_B4I0B4 GM12486 9.41093333672 0.499999999996 -8.91093333672 +UniRef50_UPI0003B5BA4B NUDIX hydrolase 0.22073851532 0.5 0.27926148468 +UniRef50_I3LMH8 1.4870983943 0.5 -0.987098394304 +UniRef50_A0A021VVK4 0.160870332665 0.5 0.339129667335 +UniRef50_A6M053 Glycoside hydrolase, family 3 domain protein 0.242544595811 0.5 0.257455404189 +UniRef50_D8LRQ2 Beta ketoacyl synthase 0.665078378108 0.5 -0.165078378108 +UniRef50_P45745 Dimodular nonribosomal peptide synthase 0.0954107120343 0.5 0.404589287966 +UniRef50_I7ABN6 Outer membrane protein assembly factor BamA 4.78176117642 0.5 -4.28176117642 +UniRef50_E3A4Y7 0.421404559669 0.5 0.0785954403314 +UniRef50_Q02250 Delta aminolevulinic acid dehydratase 0.00138672061282 0.5 0.498613279387 +UniRef50_UPI0000D55548 PREDICTED 0.194566360947 0.5 0.305433639053 +UniRef50_Q0HVJ1 Drug resistance transporter, EmrB QacA subfamily 1.5257611245 0.5 -1.0257611245 +UniRef50_B2FNN8 UDP N acetylmuramate L alanine ligase 1.02902437464 0.5 -0.529024374644 +UniRef50_UPI0003B77170 30S ribosomal protein S2 0.118864940529 0.5 0.381135059471 +UniRef50_UPI0003487C99 hypothetical protein 0.67778788883 0.5 -0.17778788883 +UniRef50_A6LYV1 Response regulator receiver sensor signal transduction histidine kinase 0.0647198295392 0.5 0.435280170461 +UniRef50_P63299 0.324227789536 0.5 0.175772210464 +UniRef50_Q2P3J8 Imidazole glycerol phosphate synthase subunit HisF 4.91012647259 0.500000000001 -4.4101264726 +UniRef50_U5ML33 Lipolytic protein, G D S L family 0.411187789412 0.5 0.0888122105879 +UniRef50_UPI0002EFC2F2 hypothetical protein 0.232539026253 0.5 0.267460973747 +UniRef50_L8NGT0 Membrane bound lytic murein transglycosylase 0.164467937008 0.5 0.335532062992 +UniRef50_UPI00035C696E hypothetical protein 0.00663319089127 0.5 0.493366809109 +UniRef50_G7ZMW5 1.85946974812 0.499999999999 -1.35946974812 +UniRef50_UPI0002DDE0E6 hypothetical protein 1.27140057101 0.5 -0.771400571013 +UniRef50_P77219 0.319560307809 0.5 0.180439692191 +UniRef50_UPI000479998B formyltetrahydrofolate deformylase 3.0044229567 0.5 -2.5044229567 +UniRef50_K0RS76 0.235743044119 0.5 0.264256955881 +UniRef50_B9E3T3 0.176719662288 0.5 0.323280337712 +UniRef50_K9ZYR5 Tape measure domain protein 0.003230295809 0.500000000001 0.49676970419 +UniRef50_UPI000310DE08 hypothetical protein 0.794346020482 0.5 -0.294346020482 +UniRef50_UPI0003C7F041 urea ABC transporter ATP binding protein 0.0729374947614 0.500000000001 0.427062505238 +UniRef50_UPI00040937D6 hypothetical protein 1.38743509361 0.500000000001 -0.887435093614 +UniRef50_T2E4I0 Permease for cytosine purine, uracil, thiamine, allantoin family protein 0.0601575973968 0.5 0.439842402603 +UniRef50_T1Y8J8 Short chain dehydrogenase reductase family protein 10.5068691227 0.500000000001 -10.0068691227 +UniRef50_I3FPW3 1.45105670335 0.5 -0.951056703348 +UniRef50_Q9N0B4 Unnamed protein product 0.047906403854 0.499999999999 0.452093596147 +UniRef50_S5RNF0 4.64826901199 0.499999999999 -4.14826901199 +UniRef50_UPI00035FB164 hypothetical protein 1.2776235841 0.5 -0.777623584099 +UniRef50_I6Y0P6 0.106274710062 0.5 0.393725289938 +UniRef50_K7V3T8 1.29127977086 0.5 -0.791279770858 +UniRef50_A5UNP7 Cobalt ABC transporter, permease component, CbiQ 3.81562836642 0.5 -3.31562836642 +UniRef50_K8BCX2 PTS system, mannitol specific IIC component PTS system, mannitol specific IIB component PTS system,mannitol specific IIA component 0.662748978012 0.5 -0.162748978012 +UniRef50_K1V9J2 0.298122765087 0.5 0.201877234913 +UniRef50_UPI0003824623 hypothetical protein 0.0149521968434 0.5 0.485047803157 +UniRef50_L7WUR4 ABC transporter substrate binding protein 2.04321353599 0.500000000001 -1.54321353599 +UniRef50_V1D3F0 2.03729714533 0.5 -1.53729714533 +UniRef50_A5ITY3 2.65344697735 0.5 -2.15344697735 +UniRef50_A5ZJT5 0.7586146 0.5 -0.2586146 +UniRef50_D8TVV3 Metalloproteinase, extracellular matrix glycoprotein VMP22 0.209923420903 0.5 0.290076579097 +UniRef50_H8FWI4 Putative transposase IS66 family 0.132688830643 0.5 0.367311169357 +UniRef50_UPI00047CB6D2 hypothetical protein, partial 0.361608858001 0.5 0.138391141999 +UniRef50_I0C181 PTS system, galactitol specific IIB component 0.792228028549 0.5 -0.292228028549 +UniRef50_I4XYD4 0.325594044507 0.5 0.174405955493 +UniRef50_Q165A6 Molybdate ABC transporter, periplasmic molybdate binding protein 0.412472111656 0.5 0.0875278883439 +UniRef50_P48261 Anthranilate synthase component 2 0.638072448434 0.5 -0.138072448434 +UniRef50_U2YVN6 1.31443814124 0.5 -0.814438141242 +UniRef50_Q4SV06 Chromosome undetermined SCAF13832, whole genome shotgun sequence 1.3480254412 0.5 -0.848025441203 +UniRef50_Q5VRS0 0.48588644407 0.5 0.0141135559296 +UniRef50_C9A4P2 Phosphorylase 1.32292736361 0.5 -0.822927363612 +UniRef50_UPI0003DF7732 PREDICTED 0.295450070251 0.5 0.204549929749 +UniRef50_D3QCK9 Late competence protein ComGA 1.66509501 0.499999999999 -1.16509501 +UniRef50_E2ZYI5 0.106970314365 0.5 0.393029685635 +UniRef50_L9P8Z2 Putative glycin rich signal peptide protein 2.2967300485 0.500000000001 -1.7967300485 +UniRef50_Q985R5 Mlr7561 protein 0.318927432253 0.5 0.181072567747 +UniRef50_W0AF71 0.773963384941 0.5 -0.273963384941 +UniRef50_UPI0004573A07 PREDICTED 0.0995458129235 0.5 0.400454187077 +UniRef50_A6LZF1 1.39472284202 0.5 -0.894722842015 +UniRef50_B9E8Q8 50S ribosomal protein L10 5.61038225083 0.499999999995 -5.11038225083 +UniRef50_Q9I0J3 NADH quinone oxidoreductase subunit J 0.728821298887 0.5 -0.228821298887 +UniRef50_UPI000444A579 hypothetical protein STEHIDRAFT_80731 0.0452577641794 0.5 0.454742235821 +UniRef50_UPI000479C855 hypothetical protein 0.186384094052 0.5 0.313615905948 +UniRef50_UPI000416282A dihydroorotase 0.035900657699 0.5 0.464099342301 +UniRef50_S3MQQ9 BASS family bile acid 0.0451311584692 0.5 0.454868841531 +UniRef50_O58888 Probable aminomethyltransferase 0.575151504403 0.5 -0.0751515044027 +UniRef50_F0KLK8 LysR family transcriptional regulatory protein 0.0192619367388 0.5 0.480738063261 +UniRef50_A1KVW4 Multidrug resistance translocase 0.059088624205 0.500000000001 0.440911375794 +UniRef50_A6LZ84 Binding protein dependent transport systems inner membrane component 0.169701143853 0.5 0.330298856147 +UniRef50_M1N6G4 Signal peptidase I 0.150221083413 0.5 0.349778916587 +UniRef50_Q1M8E0 Methionine import ATP binding protein MetN 0.366634246342 0.5 0.133365753658 +UniRef50_I6U0Z0 2.38455146285 0.5 -1.88455146285 +UniRef50_UPI0002F158F5 hypothetical protein 1.27479940944 0.5 -0.774799409435 +UniRef50_O66646 Lipoprotein releasing system ATP binding protein LolD 0.195954910684 0.5 0.304045089316 +UniRef50_D4M6I9 2.19101299946 0.500000000003 -1.69101299947 +UniRef50_H0I183 0.354327030693 0.5 0.145672969307 +UniRef50_Q5YVA5 2 isopropylmalate synthase 0.133874660598 0.5 0.366125339402 +UniRef50_Q5XCA7 Dihydroneopterin aldolase 0.185877395789 0.499999999999 0.314122604211 +UniRef50_A5UNB1 Multidrug ABC transporter, permease component 2.77627758944 0.500000000001 -2.27627758944 +UniRef50_C2MXE0 Phage infection protein 0.00540426960836 0.5 0.494595730391 +UniRef50_A6LWC3 Sigma 54 factor, interaction domain containing protein 0.082597201139 0.500000000001 0.41740279886 +UniRef50_Q7W4T6 Holliday junction ATP dependent DNA helicase RuvB 0.255209231413 0.5 0.244790768587 +UniRef50_F5LXC8 3.42895742463 0.500000000001 -2.92895742463 +UniRef50_F3CNA8 Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family 0.00893177991003 0.5 0.49106822009 +UniRef50_C5N5T3 ABC 2 type transporter 3.95547923081 0.5 -3.45547923081 +UniRef50_UPI000455DA16 glutaredoxin 0.0738619233506 0.5 0.426138076649 +UniRef50_A3M105 Acyl CoA synthetase AMP acid ligases II 0.0172020316335 0.5 0.482797968367 +UniRef50_W7Q7T2 0.826853697729 0.5 -0.326853697729 +UniRef50_UPI00024907AC sugar ABC transporterATPase 0.29804579003 0.5 0.20195420997 +UniRef50_P54575 Riboflavin biosynthesis protein RibC 0.0217009894264 0.5 0.478299010574 +UniRef50_H0C7J0 Single stranded DNA specific exonuclease RecJ 3.9872194614 0.5 -3.4872194614 +UniRef50_E3HWF4 0.195939274185 0.5 0.304060725815 +UniRef50_Q31C00 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.22298982755 0.5 -0.722989827549 +UniRef50_Q796Q6 0.0796311813316 0.5 0.420368818668 +UniRef50_UPI0004707FBC hypothetical protein 0.0754835959075 0.5 0.424516404093 +UniRef50_UPI00037C6C2F hypothetical protein 0.546593294041 0.5 -0.0465932940408 +UniRef50_V4RDS5 RsbR, positive regulator of sigma B 0.00952041613255 0.5 0.490479583868 +UniRef50_A7ZHD9 Glutathione regulated potassium efflux system ancillary protein KefF 135.499640802 0.500000000057 -134.999640802 +UniRef50_UPI00046D8A91 hypothetical protein, partial 0.166120233769 0.5 0.333879766231 +UniRef50_UPI0003B35384 hypothetical protein 1.69649911865 0.5 -1.19649911865 +UniRef50_X1LC15 Marine sediment metagenome DNA, contig 0.275666395198 0.5 0.224333604802 +UniRef50_H0Z2E2 1.01760067908 0.5 -0.517600679075 +UniRef50_E3F521 ABC transporter, inner membrane subunit 1.56371362318 0.5 -1.06371362318 +UniRef50_A4VS30 Radical SAM domain protein 1.73234581841 0.5 -1.23234581841 +UniRef50_U6PNF3 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752 0.0590119801626 0.5 0.440988019837 +UniRef50_C1FKU5 Dipeptidase family protein 0.282391570866 0.5 0.217608429134 +UniRef50_G5PHU3 Carbamoyl phosphate synthase small chain 0.372004906038 0.5 0.127995093962 +UniRef50_P17411 6 phospho beta glucosidase 0.781518246808 0.5 -0.281518246808 +UniRef50_UPI00035D7ED2 hypothetical protein 6.88291541788 0.499999999989 -6.38291541787 +UniRef50_Q0B261 MaoC domain protein dehydratase 0.845046600613 0.5 -0.345046600613 +UniRef50_A6LWB4 SEC C motif domain protein 0.246132413379 0.5 0.253867586621 +UniRef50_UPI0002D6628B hypothetical protein 0.830920519606 0.5 -0.330920519606 +UniRef50_P50863 Protein mrp homolog SalA 1.7190967803 0.500000000001 -1.2190967803 +UniRef50_A9B5M8 0.0116304568604 0.5 0.48836954314 +UniRef50_Q9KDV3 UDP glucose 4 epimerase 1.09509476894 0.5 -0.595094768939 +UniRef50_Q2K6Q4 Zinc import ATP binding protein ZnuC 1.06050421619 0.5 -0.560504216194 +UniRef50_B8DU64 Tyrosine tRNA ligase 0.0286073521951 0.5 0.471392647805 +UniRef50_A3VHM4 2.63628069244 0.5 -2.13628069244 +UniRef50_UPI00037AF9BE hypothetical protein 0.170849298197 0.5 0.329150701803 +UniRef50_P04043 Modification methylase DpnIIA 2.92815277651 0.499999999999 -2.42815277651 +UniRef50_C6W622 1.14947307519 0.5 -0.64947307519 +UniRef50_UPI00036DC86C peptide ABC transporter permease 1.1921234808 0.500000000001 -0.692123480803 +UniRef50_F4GXS4 DNA 3 methyladenine glycosidase I 0.0634463999115 0.5 0.436553600089 +UniRef50_E6YU01 0.260260154323 0.5 0.239739845677 +UniRef50_E8SEA5 General stress protein 13 1.25874349814 0.5 -0.758743498142 +UniRef50_P28635 D methionine binding lipoprotein MetQ 2.86893948639 0.5 -2.36893948639 +UniRef50_I4WI90 Putative thioesterase 0.000889171469117 0.5 0.499110828531 +UniRef50_X7FDP3 2.90630497965 0.499999999998 -2.40630497964 +UniRef50_A0A023SGI9 CAAX protease 1.41246625167 0.5 -0.912466251666 +UniRef50_K4L3Q5 D serine D alanine glycine transporter 1.37266975012 0.5 -0.872669750124 +UniRef50_M8AG73 1.26077591951 0.5 -0.760775919511 +UniRef50_G4UTF3 0.0555438428293 0.5 0.444456157171 +UniRef50_A7MGZ5 Membrane bound lytic murein transglycosylase F 1.67682705372 0.499999999998 -1.17682705372 +UniRef50_U1Y4T1 1.22507538483 0.5 -0.725075384827 +UniRef50_S9S5F9 Malate synthase G 3.22045231808 0.5 -2.72045231808 +UniRef50_I0E6L1 0.33348532236 0.5 0.16651467764 +UniRef50_UPI0003A51EC3 hypothetical protein 0.648505293331 0.5 -0.148505293331 +UniRef50_B9KP07 1.95184795094 0.5 -1.45184795094 +UniRef50_M1XHM6 Universal stress protein family protein 1.20420070097 0.5 -0.704200700968 +UniRef50_Q5P082 Holo [acyl carrier protein] synthase 0.521571211048 0.5 -0.0215712110476 +UniRef50_Q9I472 Cobyrinic acid a,c diamide adenosyltransferase 0.769511367324 0.5 -0.269511367324 +UniRef50_P0ABE0 Biotin carboxyl carrier protein of acetyl CoA carboxylase 1.95685841215 0.5 -1.45685841215 +UniRef50_UPI00037E3D20 50S ribosomal protein L13 4.10796825937 0.5 -3.60796825937 +UniRef50_X1H5Y2 Marine sediment metagenome DNA, contig 0.26073146654 0.5 0.23926853346 +UniRef50_W5X593 Carbohydrate esterase, family 1 0.078491728921 0.499999999999 0.42150827108 +UniRef50_UPI0003B6353B MerR family transcriptional regulator 0.480676695716 0.5 0.0193233042839 +UniRef50_UPI00036BDAA2 hypothetical protein, partial 0.150187404335 0.5 0.349812595665 +UniRef50_Q5M0P7 Bifunctional protein FolD 2.93476119466 0.500000000004 -2.43476119466 +UniRef50_Q8P5Q4 Acetylornithine aminotransferase 0.158025350488 0.5 0.341974649512 +UniRef50_P20170 Anthranilate synthase component 1 0.343768405845 0.5 0.156231594155 +UniRef50_A0A058V0Y9 0.322729359123 0.5 0.177270640877 +UniRef50_UPI0003B715FE branched chain amino acid aminotransferase 2.84663421066 0.500000000002 -2.34663421066 +UniRef50_L1KZM9 0.0498284863714 0.5 0.450171513629 +UniRef50_B8D0U9 Phosphoglucosamine mutase 0.0818644021367 0.5 0.418135597863 +UniRef50_D1DII4 Ferredoxin 0.0326491921942 0.5 0.467350807805 +UniRef50_A7FWJ9 Cysteine desulfurase IscS 0.116120687415 0.5 0.383879312585 +UniRef50_E1SA68 LPS assembly protein LptD 0.018763076234 0.5 0.481236923766 +UniRef50_J3H4T2 Transposase 3.0265746512 0.499999999997 -2.5265746512 +UniRef50_A0A059IPF2 FlaF protein 0.315375425062 0.5 0.184624574938 +UniRef50_UPI0004784587 hypothetical protein 4.96269249417 0.5 -4.46269249417 +UniRef50_UPI00046D4969 hypothetical protein 0.203522184978 0.5 0.296477815022 +UniRef50_A1B1F4 3 oxoacyl [acyl carrier protein] synthase II 1.30743074266 0.5 -0.807430742663 +UniRef50_UPI0003B5466F peroxiredoxin 0.0479196467003 0.499999999999 0.4520803533 +UniRef50_P44978 8.57628712085 0.500000000003 -8.07628712086 +UniRef50_A5UK42 0.691818091085 0.5 -0.191818091085 +UniRef50_UPI000388D459 PREDICTED 0.0304650206603 0.5 0.46953497934 +UniRef50_A9GRA4 50S ribosomal protein L1 0.271191870936 0.5 0.228808129064 +UniRef50_W2BRM3 0.109801483673 0.5 0.390198516327 +UniRef50_C3YW49 1.2546425645 0.5 -0.754642564497 +UniRef50_X1A8H4 Marine sediment metagenome DNA, contig 0.926975093309 0.5 -0.426975093309 +UniRef50_M2QYI1 0.465418379381 0.5 0.034581620619 +UniRef50_Q1WQZ0 Fructose 1,6 bisphosphatase class 3 2.12437116571 0.5 -1.62437116571 +UniRef50_A0A011PL09 Fatty acid oxidation complex subunit alpha 0.254388223538 0.5 0.245611776462 +UniRef50_Q6A8B2 Homoserine kinase 0.0200346339275 0.5 0.479965366072 +UniRef50_W7SMQ0 PE PGRS family protein 0.0596803894963 0.5 0.440319610503 +UniRef50_UPI0003726300 hypothetical protein 1.10747521319 0.5 -0.607475213186 +UniRef50_UPI00040B37CB hypothetical protein 1.1747524174 0.500000000001 -0.674752417404 +UniRef50_C1DFE7 Anti sigma factor, FecR family 1.18491582126 0.5 -0.684915821259 +UniRef50_O34744 Uroporphyrinogen III C methyltransferase 3.87717989171 0.500000000001 -3.37717989171 +UniRef50_P48027 Sensor protein GacS 0.242586071061 0.5 0.257413928939 +UniRef50_UPI000468EA55 hypothetical protein 0.0969398675059 0.5 0.403060132494 +UniRef50_UPI00047248BA delta aminolevulinic acid dehydratase 0.635567902694 0.5 -0.135567902694 +UniRef50_Q0AKG2 Two component transcriptional regulator, winged helix family 2.43949667304 0.5 -1.93949667304 +UniRef50_G7M0N1 0.514763708861 0.5 -0.0147637088606 +UniRef50_R5LUL7 Flagellar biosynthesis type III secretory pathway ATPase FliI 0.47200358246 0.5 0.0279964175396 +UniRef50_G7M7Z8 0.140141839191 0.5 0.359858160809 +UniRef50_UPI0003750432 hypothetical protein, partial 1.10911694249 0.499999999999 -0.609116942492 +UniRef50_A0A059G6X4 Beta gamma crystallin domain containing protein 0.383661942731 0.5 0.116338057269 +UniRef50_T1B8D6 Thiamine biosynthesis protein ThiC 0.132746614712 0.5 0.367253385289 +UniRef50_UPI0004788CA9 hypothetical protein 0.304028218173 0.5 0.195971781827 +UniRef50_UPI000476817E Clp protease ClpS 1.1004354104 0.5 -0.600435410401 +UniRef50_Q28VD6 DNA polymerase III, delta subunit 1.99687996504 0.5 -1.49687996504 +UniRef50_UPI0003B2FE9D osmotically inducible protein OsmC 0.0299286700998 0.5 0.4700713299 +UniRef50_C2PG19 Phosphinothricin N acetyltransferase 1.87592384922 0.499999999999 -1.37592384922 +UniRef50_Q82JT9 Ribonuclease 3 0.177095351756 0.5 0.322904648244 +UniRef50_UPI000373DA51 hypothetical protein 0.544504697062 0.5 -0.0445046970619 +UniRef50_F8G053 Inosine uridine preferring nucleoside hydrolase 0.319469820497 0.5 0.180530179503 +UniRef50_Q7VIB6 Bifunctional protein GlmU 0.0176937091144 0.5 0.482306290885 +UniRef50_C5BKK1 ATP synthase subunit a 0.0817299633795 0.5 0.41827003662 +UniRef50_UPI0004785186 ATPase P 0.111815755975 0.499999999999 0.388184244025 +UniRef50_UPI000378BB5D hypothetical protein 0.349905693113 0.5 0.150094306887 +UniRef50_U3T2I1 0.0178373514355 0.5 0.482162648564 +UniRef50_UPI000378F946 hypothetical protein 2.28227297015 0.500000000003 -1.78227297015 +UniRef50_A5ITB1 Coproporphyrinogen III oxidase, anaerobic 7.14926406043 0.499999999996 -6.64926406042 +UniRef50_UPI00047ACB4C amino acid permease, partial 0.201774182564 0.5 0.298225817436 +UniRef50_Q9RX79 Cytochrome B6 0.00235542111132 0.5 0.497644578888 +UniRef50_UPI000468517A potassium transporter 0.000803170367092 0.5 0.499196829633 +UniRef50_D2QXC4 Magnesium protoporphyrin chelatase, putative 0.045775585882 0.499999999999 0.454224414119 +UniRef50_UPI00037FEB36 hypothetical protein 3.24285989271 0.499999999998 -2.7428598927 +UniRef50_I3UM32 0.439924797623 0.5 0.060075202377 +UniRef50_D2ZQ55 0.559388567686 0.5 -0.059388567686 +UniRef50_W8U544 Putative secreted protein 3.09320842257 0.499999999999 -2.59320842257 +UniRef50_UPI00046F47C7 hypothetical protein, partial 3.7805521094 0.500000000003 -3.2805521094 +UniRef50_Q49Z66 Thymidine kinase 0.704888865293 0.5 -0.204888865293 +UniRef50_Q9KLJ6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.311163086858 0.5 0.188836913142 +UniRef50_G4R5C5 0.43253692807 0.5 0.0674630719301 +UniRef50_P93313 NADH ubiquinone oxidoreductase chain 4 1.21055892512 0.5 -0.710558925123 +UniRef50_T1Y5K7 0.980428149399 0.5 -0.480428149399 +UniRef50_A3M7V0 Putative non ribosomal peptide synthetase 0.015084163536 0.5 0.484915836464 +UniRef50_Q2RYK8 0.0057387273975 0.5 0.494261272602 +UniRef50_U6LIK5 0.352733733264 0.5 0.147266266736 +UniRef50_P37313 Dipeptide transport ATP binding protein DppF 1.06276154187 0.5 -0.562761541872 +UniRef50_M0RKR1 0.274571318151 0.5 0.225428681849 +UniRef50_UPI0004749E59 uroporphyrinogen decarboxylase 0.463457326714 0.5 0.0365426732863 +UniRef50_A0A031ANR6 Paraquat inducible protein B 1.54861384125 0.5 -1.04861384125 +UniRef50_UPI000470B75A cupin, partial 2.13920075879 0.500000000003 -1.63920075879 +UniRef50_UPI000401DB47 ABC transporter substrate binding protein 1.4574141056 0.5 -0.957414105604 +UniRef50_Q9KET5 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.993934298258 0.5 -0.493934298258 +UniRef50_D4HFG5 ABC transporter, solute binding protein 0.0315382774807 0.5 0.468461722519 +UniRef50_Q9RZB4 First mannosyl transferase 0.00238707772364 0.5 0.497612922276 +UniRef50_Q0TGS5 UvrC excinuclease ABC subunit C 2.2512331871 0.499999999999 -1.7512331871 +UniRef50_UPI000470078C hypothetical protein 0.355949768561 0.5 0.144050231439 +UniRef50_P27848 Pyridoxal phosphate phosphatase YigL 5.5464186088 0.500000000001 -5.0464186088 +UniRef50_W6L595 Genomic scaffold, scaffold_6 0.031204011511 0.5 0.468795988489 +UniRef50_UPI00047C3E54 diguanylate cyclase 0.120674426877 0.5 0.379325573123 +UniRef50_P52005 Cytochrome c type protein TorY 2.53011703202 0.500000000001 -2.03011703202 +UniRef50_Q1AU26 Elongation factor G 0.175380449347 0.5 0.324619550653 +UniRef50_Q1AVD3 Ribose import ATP binding protein RbsA 2 0.790191636669 0.5 -0.290191636669 +UniRef50_UPI00037465BE hypothetical protein 2.22520359388 0.499999999999 -1.72520359388 +UniRef50_G8AWA2 ATPase like protein 1.97895641731 0.5 -1.47895641731 +UniRef50_E3FF38 0.276468156045 0.5 0.223531843955 +UniRef50_UPI0003D0828F PREDICTED 0.556471129463 0.5 -0.0564711294629 +UniRef50_I0ECM2 Flagellar motor switch protein FliY 0.0271578068249 0.5 0.472842193175 +UniRef50_P77716 Inner membrane ABC transporter permease protein YcjP 5.32529546434 0.499999999998 -4.82529546434 +UniRef50_UPI00047949F3 hypothetical protein 0.00348073607122 0.499999999999 0.496519263929 +UniRef50_C5N0V3 3.55762809249 0.500000000002 -3.0576280925 +UniRef50_A7GMX2 Na+ antiporter NhaC 1.47281883587 0.500000000001 -0.972818835874 +UniRef50_O32332 Glucitol sorbitol permease IIC component 0.194503212473 0.5 0.305496787527 +UniRef50_F5TRU1 0.218588990363 0.5 0.281411009637 +UniRef50_UPI00046CFD0F acetyl CoA acetyltransferase 0.0196316493367 0.5 0.480368350663 +UniRef50_P33342 Probable fimbrial chaperone YehC 9.856156112 0.499999999997 -9.356156112 +UniRef50_F0LCD7 0.221979714912 0.5 0.278020285088 +UniRef50_UPI0001BF5AF2 hypothetical protein SMAC_10608, partial 1.28729427726 0.5 -0.787294277262 +UniRef50_P0A2T5 Multiple antibiotic resistance protein MarR 0.0923588411903 0.5 0.40764115881 +UniRef50_D8UG15 0.811116523326 0.5 -0.311116523326 +UniRef50_F2DLE5 Predicted protein 15.6879695516 0.499999999998 -15.1879695516 +UniRef50_O34580 ATP dependent DNA helicase PcrA 1.46476299097 0.5 -0.964762990967 +UniRef50_Q03EL2 ATP synthase subunit alpha 0.153663196044 0.5 0.346336803956 +UniRef50_UPI00040FB89F glutathione dependent formaldehyde activating protein 1.47069040666 0.5 -0.970690406659 +UniRef50_K4RNE1 Outer membrane protein 0.00882131869832 0.5 0.491178681302 +UniRef50_A0A024L3Z4 N acetylneuraminic acid outer membrane channel 1.47433626856 0.5 -0.974336268561 +UniRef50_G9A5Y6 0.704760389658 0.5 -0.204760389658 +UniRef50_UPI000476B9E7 cytochrome C 2.59553530766 0.5 -2.09553530766 +UniRef50_UPI000344CCAD hypothetical protein 5.40715307753 0.500000000004 -4.90715307753 +UniRef50_P0AEY4 Nucleoside triphosphate pyrophosphohydrolase 4.06860864695 0.500000000001 -3.56860864695 +UniRef50_T1Y562 Biotin synthesis protein bioC 2.9458024693 0.499999999999 -2.4458024693 +UniRef50_G0DU60 Triacylglycerol lipase 0.0365038538032 0.5 0.463496146197 +UniRef50_A5UJN4 Predicted DNA binding protein 0.625098016838 0.5 -0.125098016838 +UniRef50_Q9HYR3 0.26269619289 0.5 0.23730380711 +UniRef50_R7EGC5 0.395789555374 0.5 0.104210444626 +UniRef50_E1V915 Transcriptional regulator, XRE family 0.342116848167 0.5 0.157883151833 +UniRef50_UPI00046D7AC9 ABC transporter permease 0.350431003702 0.5 0.149568996298 +UniRef50_UPI000477BE6D ABC transporter 0.709319400332 0.5 -0.209319400332 +UniRef50_UPI00046A3121 hypothetical protein 0.552472057253 0.5 -0.0524720572533 +UniRef50_E4ZBP3 Aminopeptidase N 0.00584194490558 0.5 0.494158055094 +UniRef50_G8TQ95 0.00496674754911 0.5 0.495033252451 +UniRef50_C5N3Z5 3.5481634531 0.5 -3.0481634531 +UniRef50_A3PGB1 Tripartite ATP independent periplasmic transporter, DctQ component 1.96214328697 0.5 -1.46214328697 +UniRef50_H4ER30 Phage minor structural, N terminal region domain protein 2.53384987439 0.500000000001 -2.0338498744 +UniRef50_Q0S8U9 0.9283162431 0.5 -0.4283162431 +UniRef50_Q8CP32 Truncated transposase 0.360416098985 0.5 0.139583901015 +UniRef50_A0A023XH87 0.699222204987 0.5 -0.199222204987 +UniRef50_I6TVV9 1.60998612474 0.5 -1.10998612474 +UniRef50_Q4KED8 Phenazine biosynthesis protein, PhzF family 0.0991490699628 0.5 0.400850930037 +UniRef50_A0A017HN56 Short chain dehydrogenase reductase SDR 0.131443297902 0.5 0.368556702097 +UniRef50_UPI0004628D47 PREDICTED 0.0294977993107 0.5 0.470502200689 +UniRef50_O86034 D beta hydroxybutyrate dehydrogenase 0.743472222538 0.5 -0.243472222538 +UniRef50_UPI000382D87E hypothetical protein 4.92235141549 0.500000000001 -4.42235141549 +UniRef50_A5UN78 Predicted O linked GlcNAc transferase 3.0707682164 0.500000000002 -2.5707682164 +UniRef50_UPI0004076B6B hypothetical protein 0.789719171577 0.5 -0.289719171577 +UniRef50_A3M684 Molybdenum cofactor guanylyltransferase 0.0371841847379 0.5 0.462815815262 +UniRef50_J0D4G5 0.0889332131325 0.5 0.411066786867 +UniRef50_Q5LSI2 ABC transporter, permease protein 2.08389782209 0.5 -1.58389782209 +UniRef50_T1JDG9 0.0917017511422 0.5 0.408298248858 +UniRef50_UPI000344A1E2 hypothetical protein 0.0023272879671 0.5 0.497672712033 +UniRef50_A6LRT5 0.0484821376156 0.5 0.451517862384 +UniRef50_A6LRT4 0.0576383382041 0.5 0.442361661796 +UniRef50_A6LRT6 0.2638017286 0.5 0.2361982714 +UniRef50_UPI00047D7735 hypothetical protein 0.0181379126899 0.5 0.48186208731 +UniRef50_G2P517 0.0076494290219 0.5 0.492350570978 +UniRef50_A3PIB1 0.328744309076 0.5 0.171255690924 +UniRef50_Q2YSP8 Undecaprenyl diphosphatase 4.86804793905 0.500000000002 -4.36804793906 +UniRef50_Q5HQE2 Serine protease HtrA like 2.08835305514 0.5 -1.58835305514 +UniRef50_UPI000466061A DEAD DEAH box helicase 0.00435432768903 0.5 0.495645672311 +UniRef50_A5UJH6 Predicted acetylesterase 1.00949527434 0.5 -0.509495274345 +UniRef50_Q1LU78 Nucleoside diphosphate kinase 1.21384614399 0.5 -0.713846143991 +UniRef50_B9J455 0.0322543201989 0.500000000001 0.4677456798 +UniRef50_UPI000185E45C hypothetical protein, conserved 0.610085617092 0.5 -0.110085617092 +UniRef50_P0AGJ3 tRNA 2 O) methyltransferase 0.0652000641544 0.5 0.434799935846 +UniRef50_UPI00037ACD1B hypothetical protein 0.0373918282784 0.5 0.462608171721 +UniRef50_W9T2S8 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.678281722738 0.5 -0.178281722738 +UniRef50_UPI0002BA6E86 hypothetical protein 0.0848595554598 0.5 0.41514044454 +UniRef50_B9MQS8 FMN dependent NADH azoreductase 0.299413474282 0.5 0.200586525718 +UniRef50_D3E172 Sua5 YciO YrdC YwlC family translation factor 0.317988713483 0.5 0.182011286517 +UniRef50_M9VHD2 Ion channel 0.0458029478659 0.5 0.454197052134 +UniRef50_UPI0003F7B6B3 hypothetical protein 0.00843935601561 0.5 0.491560643984 +UniRef50_Q9RZL0 0.00380516791142 0.5 0.496194832088 +UniRef50_Q05763 Bifunctional dihydrofolate reductase thymidylate synthase 2 0.250857353317 0.5 0.249142646683 +UniRef50_J7PC82 Leucine rich repeat domain protein 8.26627782857e-05 0.5 0.499917337222 +UniRef50_Q9RZL3 0.00185013649762 0.5 0.498149863503 +UniRef50_D3A510 5.18620911922 0.499999999999 -4.68620911922 +UniRef50_Q4FSU1 Siroheme synthase 0.0690416898249 0.5 0.430958310175 +UniRef50_B1ZRT0 NADH quinone oxidoreductase subunit D 1 0.191912058745 0.5 0.308087941255 +UniRef50_A0A036LTT5 0.966742915348 0.5 -0.466742915348 +UniRef50_Q8X5V6 tRNA dihydrouridine synthase A 0.0493894929257 0.5 0.450610507074 +UniRef50_F6AH52 Acylglycerol lipase 0.458285226136 0.5 0.0417147738645 +UniRef50_UPI00040794A2 hypothetical protein 1.446523058 0.500000000001 -0.946523057997 +UniRef50_A8IGC9 Fibrocystin L like protein 0.212762309004 0.5 0.287237690996 +UniRef50_UPI000418CD46 hypothetical protein 1.18048947898 0.5 -0.68048947898 +UniRef50_E1XQA2 0.602980688689 0.5 -0.102980688689 +UniRef50_Q8XQ89 3 dehydroquinate dehydratase 2 0.326023326352 0.5 0.173976673648 +UniRef50_P42357 Histidine ammonia lyase 0.404451986772 0.5 0.0955480132276 +UniRef50_A0A029J2G1 Sodium hydrogen exchanger family protein 2.24080559904 0.500000000002 -1.74080559904 +UniRef50_Q9RYX3 GGDEF family protein 0.00219413356896 0.5 0.497805866431 +UniRef50_H9KM06 0.738147293468 0.5 -0.238147293468 +UniRef50_B6XVC7 0.0134996030792 0.499999999999 0.486500396922 +UniRef50_Q38XQ8 Ribosome maturation factor RimM 0.666149545849 0.5 -0.166149545849 +UniRef50_B0K2T9 Tryptophan synthase beta chain 0.154640514259 0.5 0.345359485741 +UniRef50_UPI000474CD31 LamB YcsF family protein 2.05757508157 0.5 -1.55757508157 +UniRef50_UPI0003781C56 50S ribosomal protein L22 0.0544673218874 0.5 0.445532678113 +UniRef50_Q2NE88 Methionine aminopeptidase 4.48326989953 0.499999999999 -3.98326989953 +UniRef50_B5F4F0 Periplasmic trehalase 2.31163997845 0.5 -1.81163997845 +UniRef50_UPI00041F5D41 uridine kinase 0.00748878476559 0.5 0.492511215234 +UniRef50_UPI0003637A82 hypothetical protein 0.465045738012 0.5 0.0349542619878 +UniRef50_UPI000365DDE9 hypothetical protein 0.709183157081 0.5 -0.209183157081 +UniRef50_P28997 NAD specific glutamate dehydrogenase 0.00505457749073 0.5 0.494945422509 +UniRef50_A7HY57 Trigger factor 0.901749459303 0.5 -0.401749459303 +UniRef50_B2GCR2 Chorismate synthase 0.057492771419 0.499999999999 0.442507228582 +UniRef50_P32166 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.486042157145 0.5 0.0139578428545 +UniRef50_UPI00029ABD4E ATP dependent DNA helicase RecQ 0.90142141951 0.5 -0.40142141951 +UniRef50_P24532 Argininosuccinate synthase 0.108707068054 0.5 0.391292931945 +UniRef50_UPI000466FB72 nitrogen regulation protein NR 0.361232239024 0.5 0.138767760976 +UniRef50_UPI0004188538 hypothetical protein 0.496349378075 0.5 0.00365062192536 +UniRef50_B9V2B9 0.326023945203 0.5 0.173976054797 +UniRef50_Q7U5G1 Acetolactate synthase large subunit 0.00602928967709 0.499999999999 0.493970710324 +UniRef50_UPI0004780BEC alpha beta hydrolase 0.364386486452 0.5 0.135613513548 +UniRef50_UPI0002558939 TadC family type II IV secretion system protein, partial 0.860719733017 0.5 -0.360719733017 +UniRef50_W8WRJ5 Ribulose 5 phosphate 3 epimerase 0.075416487328 0.5 0.424583512672 +UniRef50_Q46185 Diaminopimelate epimerase 0.641908305683 0.5 -0.141908305683 +UniRef50_O87278 Probable N methylproline demethylase 2.96596439224 0.500000000001 -2.46596439224 +UniRef50_D6K1U6 LuxR family transcriptional regulator 0.108623786341 0.5 0.39137621366 +UniRef50_A4WWE4 Peptidase U35, phage prohead HK97 0.374178663298 0.5 0.125821336702 +UniRef50_M9RCR3 0.183674235032 0.5 0.316325764968 +UniRef50_Q1QBI6 Aminoglycoside phosphotransferase 0.12409333369 0.5 0.37590666631 +UniRef50_G7Z5T4 0.330496909863 0.5 0.169503090137 +UniRef50_Q58409 Methanogen homoaconitase large subunit 1.28263749488 0.5 -0.782637494878 +UniRef50_W5SE24 Glycerol 3 phosphate transporter 2.05172080535 0.499999999999 -1.55172080535 +UniRef50_F2U516 8.76666442151 0.499999999998 -8.26666442151 +UniRef50_V6QC91 1.17568003654 0.5 -0.675680036538 +UniRef50_Q9CKP2 FKBP type peptidyl prolyl cis trans isomerase SlyD 1.89778939992 0.5 -1.39778939992 +UniRef50_Q8DTK1 1.9859003761 0.500000000001 -1.4859003761 +UniRef50_UPI0004011CB7 hypothetical protein 0.0801027561076 0.5 0.419897243892 +UniRef50_K7RYE1 Band 7 stomatin like protein 0.133029311091 0.5 0.366970688909 +UniRef50_Q3KK80 Carbonic anhydrase 0.809122945499 0.5 -0.309122945499 +UniRef50_Q17YP3 Major facilitator family transporter 0.0143052323741 0.5 0.485694767626 +UniRef50_F8DH56 NmrA family protein 2.18130773348 0.5 -1.68130773348 +UniRef50_UPI00045602FF hypothetical protein PFL1_03008 0.496765842637 0.5 0.00323415736303 +UniRef50_P0A2M0 Protein sirB1 3.46827064378 0.499999999999 -2.96827064378 +UniRef50_UPI00034AAE41 hypothetical protein 0.0255123778028 0.5 0.474487622197 +UniRef50_B5EHD3 TRAP proton dicarboxylate symporter, large membrane protein component 1.42991343654 0.5 -0.929913436541 +UniRef50_A6LTN2 Protein translocase subunit SecD 0.166246176461 0.5 0.333753823539 +UniRef50_B9DQ89 ATP phosphoribosyltransferase 1.48125758613 0.499999999999 -0.981257586131 +UniRef50_B9KLF6 1.25857433276 0.5 -0.758574332759 +UniRef50_A7A2K7 18.5494133869 0.499999999998 -18.0494133869 +UniRef50_B9KLF4 4.16791146911 0.499999999996 -3.66791146911 +UniRef50_UPI00029AF728 30S ribosomal protein S3 0.22728549698 0.5 0.272714503019 +UniRef50_UPI000479EB25 hypothetical protein 0.172990878114 0.5 0.327009121886 +UniRef50_A1AH06 4.501738206 0.500000000001 -4.001738206 +UniRef50_K7RXC5 Transporter, small conductance mechanosensitive ion channel family protein 0.068344554256 0.5 0.431655445744 +UniRef50_UPI000361E642 hypothetical protein 0.321451436322 0.5 0.178548563678 +UniRef50_V5ERF8 0.73968144049 0.5 -0.23968144049 +UniRef50_Q1QJR5 S adenosylmethionine synthase 3.01588779955 0.5 -2.51588779955 +UniRef50_P58894 Carbamoyl phosphate synthase small chain 0.00750010608154 0.5 0.492499893918 +UniRef50_H4VVH3 MpaA family protein 1.31091698 0.5 -0.810916979996 +UniRef50_UPI000475B05E lysyl tRNA synthetase 0.0638597349401 0.5 0.43614026506 +UniRef50_R6V5M5 Radical SAM domain protein 0.260265985188 0.5 0.239734014812 +UniRef50_UPI000393F4A9 PREDICTED 0.508087786984 0.5 -0.00808778698354 +UniRef50_Q8XD89 DNA ligase B 3.36249868819 0.5 -2.86249868819 +UniRef50_A9CEU9 GGDEF family protein 0.603547201547 0.5 -0.103547201547 +UniRef50_Q5LYF9 0.860248257819 0.5 -0.360248257819 +UniRef50_X1NF57 Marine sediment metagenome DNA, contig 3.81981570161 0.499999999999 -3.31981570161 +UniRef50_UPI0004720041 hypothetical protein, partial 0.047545110044 0.5 0.452454889956 +UniRef50_UPI0003D34C26 transposase and inactivated derivatives 0.825469733654 0.5 -0.325469733654 +UniRef50_Q9ZB62 Ornithine carbamoyltransferase 0.173401172664 0.5 0.326598827336 +UniRef50_D8U4W8 2.00079323894 0.5 -1.50079323894 +UniRef50_B9TE37 0.226001643753 0.5 0.273998356247 +UniRef50_A5UMT9 Glycosyltransferase, GT2 family 2.74664808822 0.500000000001 -2.24664808822 +UniRef50_Q82TB9 3 dehydroquinate synthase 0.160656158196 0.5 0.339343841804 +UniRef50_W8RUR9 Iron binding protein SufA for iron sulfur cluster assembly 9.10144624532 0.500000000001 -8.60144624532 +UniRef50_U3AME1 0.858044942908 0.5 -0.358044942908 +UniRef50_A6QAR3 Probable transcriptional regulatory protein SUN_1622 0.0482376356045 0.5 0.451762364396 +UniRef50_UPI000477BAB8 transcriptional regulator 0.0533150886748 0.5 0.446684911325 +UniRef50_A7MQ64 Secretion monitor 0.263188903254 0.5 0.236811096746 +UniRef50_B9KRG8 4.92111781029 0.500000000004 -4.42111781029 +UniRef50_P43334 Phenylalanine 4 hydroxylase 2.4795230458 0.5 -1.9795230458 +UniRef50_Q3J1E7 1.99156319144 0.500000000002 -1.49156319144 +UniRef50_Q98P43 Msr9765 protein 0.417646015701 0.5 0.0823539842989 +UniRef50_Q094Z8 0.380100691715 0.5 0.119899308285 +UniRef50_Q3J1E8 0.219343169855 0.5 0.280656830145 +UniRef50_UPI000469C857 hypothetical protein 3.44474768005 0.500000000006 -2.94474768006 +UniRef50_UPI000380F48F hypothetical protein, partial 9.40813353442 0.499999999989 -8.90813353441 +UniRef50_C9AC53 His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region 1.11749480683 0.5 -0.617494806832 +UniRef50_J9SGG8 Transcriptional regulator 0.127282479623 0.5 0.372717520377 +UniRef50_UPI0003B37E29 acetyltransferase 0.226583489754 0.5 0.273416510246 +UniRef50_A0A016TVG0 0.167018401933 0.5 0.332981598067 +UniRef50_Q88PE8 Sensor histidine kinase 1.61512896988 0.5 -1.11512896988 +UniRef50_UPI000465A9FC ArsR family transcriptional regulator 0.927145869205 0.5 -0.427145869205 +UniRef50_UPI0003338868 PREDICTED 0.268632240883 0.5 0.231367759117 +UniRef50_UPI000366BC80 hypothetical protein 1.58405584877 0.5 -1.08405584877 +UniRef50_A0A024J4K6 Transposase 0.649718026877 0.5 -0.149718026877 +UniRef50_P39328 Inner membrane ABC transporter permease protein YtfT 0.483514680359 0.5 0.0164853196411 +UniRef50_Q4FPS9 Chaperone protein DnaK 0.0122348240275 0.5 0.487765175973 +UniRef50_I0C5G1 2.29165874548 0.5 -1.79165874548 +UniRef50_B9KUT5 0.597341999551 0.5 -0.0973419995509 +UniRef50_Q5HMF5 L threonine dehydratase biosynthetic IlvA 0.610071610881 0.5 -0.110071610881 +UniRef50_R9ZNY2 Paraquat inducible protein A 2.00971902366 0.499999999998 -1.50971902365 +UniRef50_UPI00037ED0B2 hypothetical protein 0.734504530067 0.5 -0.234504530067 +UniRef50_A5UJB5 UPF0280 protein Msm_0088 1.62555185583 0.499999999999 -1.12555185582 +UniRef50_Q2G0L5 Serine aspartate repeat containing protein C 1.11607613513 0.5 -0.616076135129 +UniRef50_F9YWF3 0.119613860694 0.5 0.380386139306 +UniRef50_Q3IW26 DNA topology modulation kinase FlaR, putative 1.77859616436 0.500000000003 -1.27859616436 +UniRef50_UPI0003B577FD ATP dependent DNA helicase PcrA 1.13040958933 0.5 -0.630409589331 +UniRef50_P50351 Transcriptional regulatory protein ChvI 3.28485179064 0.499999999999 -2.78485179064 +UniRef50_F9YWF9 0.00879684547953 0.5 0.49120315452 +UniRef50_Q82Z75 Sensor protein LytS 0.00541422298843 0.500000000001 0.494585777011 +UniRef50_D2ZQR5 3.02854873539 0.499999999999 -2.52854873539 +UniRef50_UPI000471299E hypothetical protein 0.138022886206 0.5 0.361977113794 +UniRef50_F7ZF49 SPFH domain band 7 family protein 1.64032346273 0.5 -1.14032346273 +UniRef50_D2N911 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 1.54357784037 0.5 -1.04357784037 +UniRef50_Q9KPE3 Dephospho CoA kinase 5.75143454483 0.500000000001 -5.25143454483 +UniRef50_E6V5R9 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 2.31676485741 0.5 -1.81676485741 +UniRef50_Q28FD1 Alcohol dehydrogenase [NADP] 0.265919494383 0.5 0.234080505617 +UniRef50_Q9KT69 Methionine tRNA ligase 0.663546064499 0.5 -0.163546064499 +UniRef50_Q4FQB2 tRNA methyltransferase 0.588895866553 0.5 -0.0888958665526 +UniRef50_I0C0P4 AzlD 44.0567324078 0.499999999983 -43.5567324078 +UniRef50_B5XXI0 Phosphate acyltransferase 2.62203200659 0.500000000001 -2.12203200659 +UniRef50_D6XNE0 Molybdenum cofactor synthesis domain containing protein 0.0757536222624 0.5 0.424246377738 +UniRef50_UPI00045607F1 hypothetical protein PFL1_05669 0.00336577920615 0.5 0.496634220794 +UniRef50_S5R225 Ribosomal protein alanine acetyltransferase 1.86524848237 0.5 -1.36524848237 +UniRef50_C5N425 2.59327934208 0.500000000003 -2.09327934208 +UniRef50_UPI0004727AC2 hypothetical protein 0.150375434183 0.5 0.349624565817 +UniRef50_UPI00035D95F2 putrescine spermidine ABC transporter substrate binding protein 0.0750425161117 0.5 0.424957483888 +UniRef50_Q8DN13 D alanine transfer from undecaprenol phosphate to the poly chain 0.0161256705898 0.5 0.48387432941 +UniRef50_A3PNG2 Hemolysin type calcium binding toxin 1.33616447362 0.5 -0.836164473621 +UniRef50_UPI0003715F65 hypothetical protein, partial 0.114759966578 0.5 0.385240033422 +UniRef50_UPI000347561C hypothetical protein 1.01329676355 0.5 -0.513296763553 +UniRef50_Q7M7C0 Biopolymer transport exbD transmembrane protein 0.228011303134 0.5 0.271988696866 +UniRef50_P16681 Protein PhnB 2.58436797962 0.499999999998 -2.08436797962 +UniRef50_Q47098 4 hydroxy 2 oxo heptane 1,7 dioate aldolase 0.0906414253694 0.5 0.409358574631 +UniRef50_E2ZTL2 Type 4 fimbrial biogenesis protein PilV 0.442025863994 0.5 0.0579741360058 +UniRef50_UPI000474C4AE hypothetical protein, partial 0.477940286951 0.5 0.0220597130493 +UniRef50_Q47534 3.28071547309 0.500000000003 -2.78071547309 +UniRef50_Q47536 2.06293775643 0.500000000001 -1.56293775644 +UniRef50_UPI00046F326A TetR family transcriptional regulator 0.366358600584 0.5 0.133641399416 +UniRef50_UPI0003B387E8 hypothetical protein, partial 0.788718817743 0.5 -0.288718817743 +UniRef50_O21042 Cytochrome c oxidase subunit 1+2 0.448178049263 0.5 0.0518219507375 +UniRef50_G0DVK6 ROK family transcriptional regulator 0.053700885511 0.5 0.446299114489 +UniRef50_UPI0004743039 hypothetical protein 0.780742300582 0.5 -0.280742300582 +UniRef50_B8DVS6 Non canonical purine NTP pyrophosphatase 1.07475052367 0.5 -0.57475052367 +UniRef50_A3D954 Methyltransferase type 11 2.97945834652 0.499999999997 -2.47945834652 +UniRef50_UPI00047D5DD0 hypothetical protein 0.0993276948244 0.5 0.400672305176 +UniRef50_P16429 Formate hydrogenlyase subunit 3 6.10998766546 0.5 -5.60998766546 +UniRef50_K6PYD7 1.32909816305 0.499999999999 -0.829098163048 +UniRef50_U5MSS6 Single stranded DNA specific exonuclease RecJ 0.292274627613 0.5 0.207725372387 +UniRef50_UPI00036E07C4 hypothetical protein 0.411150760785 0.5 0.0888492392146 +UniRef50_UPI00047BD8AE ATPase 0.0443912674771 0.5 0.455608732523 +UniRef50_UPI0003628A16 hypothetical protein 0.617485397155 0.5 -0.117485397155 +UniRef50_A3P6S9 NH dependent NAD(+) synthetase 0.0809525861055 0.5 0.419047413894 +UniRef50_UPI00036BA0C6 terminase 0.0382193907251 0.5 0.461780609275 +UniRef50_UPI0004663C80 coproporphyrinogen III oxidase 0.345142776317 0.5 0.154857223683 +UniRef50_V8DSA2 0.231708824538 0.5 0.268291175462 +UniRef50_A6LTC5 Glutamate tRNA ligase 0.0254457995212 0.5 0.474554200478 +UniRef50_F0Y8N4 Expressed protein 1.100513198 0.5 -0.600513198 +UniRef50_F5TR17 Ribonucleoside diphosphate reductase 0.0119559472137 0.5 0.488044052786 +UniRef50_P53638 Superoxide dismutase [Fe] 0.00161140463855 0.5 0.498388595362 +UniRef50_F0Y270 4.72403333419 0.500000000002 -4.2240333342 +UniRef50_UPI0003B51F21 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.21074090783 0.5 0.28925909217 +UniRef50_Q2YQ27 Xanthine phosphoribosyltransferase 1.98327191527 0.5 -1.48327191527 +UniRef50_I4PWM5 2.32872061644 0.5 -1.82872061644 +UniRef50_C4UW54 LemA family protein 0.398972574081 0.5 0.101027425919 +UniRef50_UPI000369BDEC hypothetical protein 0.311933367484 0.5 0.188066632516 +UniRef50_B0RUI2 4 hydroxythreonine 4 phosphate dehydrogenase 0.359031239672 0.5 0.140968760328 +UniRef50_P19924 Phosphoribulokinase, plasmid 3.2503020719 0.500000000001 -2.7503020719 +UniRef50_UPI0003615A4F hypothetical protein 0.0138157579695 0.5 0.486184242031 +UniRef50_S1T2D6 0.816409528113 0.5 -0.316409528113 +UniRef50_UPI00041AFFF6 50S ribosomal protein L35 0.782756218279 0.5 -0.282756218279 +UniRef50_A5UP66 Predicted ATPase, AAA+ superfamily 1.87958077967 0.500000000001 -1.37958077967 +UniRef50_P14175 Glycine betaine L proline transport ATP binding protein ProV 3.24211036901 0.5 -2.74211036901 +UniRef50_UPI0000165EEC peptide ABC transporter, periplasmic peptide binding protein 0.00123351959603 0.5 0.498766480404 +UniRef50_O33405 Uptake hydrogenase small subunit 2.20629167791 0.5 -1.70629167791 +UniRef50_C6SSY8 1.26107941969 0.5 -0.761079419695 +UniRef50_A0A058Z0V6 0.162867969873 0.5 0.337132030127 +UniRef50_G2JE53 MFS family transporter 0.0118300008556 0.5 0.488169999145 +UniRef50_B2SB72 Bifunctional protein GlmU 1.21227730432 0.500000000001 -0.712277304322 +UniRef50_O30808 NADP dependent malic enzyme 2.18622811983 0.5 -1.68622811983 +UniRef50_UPI00036C5BBF heme ABC transporter ATP binding protein, partial 0.611223796229 0.5 -0.111223796229 +UniRef50_C6VKW6 ATP dependent zinc metalloprotease FtsH 0.399604022183 0.5 0.100395977817 +UniRef50_Q14IC9 Polyribonucleotide nucleotidyltransferase 0.152625871334 0.5 0.347374128666 +UniRef50_UPI0003B4D897 rod shape determining protein MreB 2.34418141611 0.499999999999 -1.84418141611 +UniRef50_A7HVB6 11.0120292995 0.499999999998 -10.5120292995 +UniRef50_Q8FSA6 0.12338608228 0.5 0.37661391772 +UniRef50_Q6F6Q6 Phosphoenolpyruvate carboxylase 0.00291067479513 0.5 0.497089325205 +UniRef50_UPI0002E62F3E cold shock protein 0.819968671508 0.5 -0.319968671508 +UniRef50_UPI00039FBFD3 hypothetical protein 0.0480388799346 0.5 0.451961120065 +UniRef50_UPI00029AC084 UDP N acetylglucosamine enolpyruvyl transferase 0.0797411377878 0.5 0.420258862212 +UniRef50_R6LR95 Hydrogenase Fe only 0.0715149394336 0.5 0.428485060566 +UniRef50_G0I8I1 0.872087355236 0.5 -0.372087355236 +UniRef50_Q7N0W9 Complete genome; segment 13 17 0.18789369287 0.5 0.31210630713 +UniRef50_V4RTL0 2.73200686361 0.500000000004 -2.23200686361 +UniRef50_P0ACA2 3.91131327329 0.500000000001 -3.41131327329 +UniRef50_Q9Y315 Putative deoxyribose phosphate aldolase 0.909987019941 0.5 -0.409987019941 +UniRef50_U6A8S2 Benzoate specific porin 0.590777033761 0.5 -0.0907770337613 +UniRef50_UPI000419623B hypothetical protein 1.77287722066 0.5 -1.27287722066 +UniRef50_UPI0003B3D40C ABC transporter 0.45300067014 0.5 0.0469993298604 +UniRef50_A6M3M5 tRNA modification GTPase MnmE 0.264387638466 0.5 0.235612361534 +UniRef50_UPI0004652D96 hypothetical protein, partial 0.298852678503 0.5 0.201147321497 +UniRef50_G2S6S7 0.0773858301086 0.499999999999 0.422614169892 +UniRef50_A5IGK7 L threonine 3 dehydrogenase 0.197077697523 0.5 0.302922302477 +UniRef50_P68999 tRNA specific adenosine deaminase 0.379311399336 0.5 0.120688600664 +UniRef50_Q6A9M5 Dephospho CoA kinase 0.0515265778144 0.5 0.448473422186 +UniRef50_UPI0003EDD9CA hypothetical protein, partial 0.0107245226576 0.5 0.489275477342 +UniRef50_P0AEZ8 Membrane bound lytic murein transglycosylase D 1.50941626866 0.5 -1.00941626866 +UniRef50_U6ALT5 Ferrichrome iron receptor 0.49393953275 0.5 0.00606046724984 +UniRef50_D9SVV0 Phosphoribosyltransferase 0.347812201423 0.5 0.152187798577 +UniRef50_UPI000382B2B6 hypothetical protein 27.303617067 0.499999999994 -26.803617067 +UniRef50_UPI000383F2C7 PREDICTED 0.0721815806107 0.500000000001 0.427818419389 +UniRef50_T0TUM6 5 nucleotidase 1.53649673625 0.5 -1.03649673625 +UniRef50_F7X228 Putative prophage terminase large subunit 4.169163929 0.5 -3.669163929 +UniRef50_U5MTY5 Alanine racemase 0.31678208714 0.5 0.18321791286 +UniRef50_K7EE87 0.455920436045 0.5 0.0440795639553 +UniRef50_A1RRZ8 Ketol acid reductoisomerase 0.122990183736 0.5 0.377009816264 +UniRef50_Q6LQB9 HTH type transcriptional repressor PurR 2.54271581657 0.499999999999 -2.04271581657 +UniRef50_UPI0004107246 iron sulfur protein 0.153683049243 0.5 0.346316950757 +UniRef50_U4V1N1 2.95833528123 0.5 -2.45833528123 +UniRef50_UPI00037A4D1B hypothetical protein 0.177814863276 0.5 0.322185136724 +UniRef50_G8VAV8 Cytochrome oxidase assembly protein 0.0494182200463 0.5 0.450581779954 +UniRef50_UPI000372EB59 hypothetical protein 0.962468086743 0.5 -0.462468086743 +UniRef50_R6CH89 Peptidase M23 family 0.0010197996363 0.5 0.498980200364 +UniRef50_UPI000422DB1A hypothetical protein 0.79609852874 0.5 -0.29609852874 +UniRef50_Q2P047 Phosphoribosylglycinamide formyltransferase 2 0.417708090624 0.5 0.0822919093762 +UniRef50_UPI000372AF58 hypothetical protein 7.34046216019 0.499999999996 -6.84046216019 +UniRef50_A6LZV7 Transcriptional antiterminator, BglG 0.142439998311 0.5 0.357560001689 +UniRef50_P24218 Prophage DLP12 integrase 0.977738391378 0.5 -0.477738391378 +UniRef50_UPI000472A485 antitermination protein NusG 0.0708568758682 0.5 0.429143124132 +UniRef50_P77309 7.58916853916 0.499999999999 -7.08916853916 +UniRef50_M1R499 Response regulator aspartate phosphatase 0.02913352956 0.5 0.47086647044 +UniRef50_G0DWP5 Dihydrodipicolinate reductase 0.0198863657031 0.5 0.480113634297 +UniRef50_C6SR85 0.908666079947 0.5 -0.408666079947 +UniRef50_UPI0003F14796 PREDICTED 0.085121947718 0.5 0.414878052282 +UniRef50_Q92BQ5 DNA primase 0.00179744123197 0.5 0.498202558768 +UniRef50_O33587 AgrC 1.02491063453 0.5 -0.524910634535 +UniRef50_UPI0003F68F3A magnesium chelatase 0.127933229901 0.5 0.372066770099 +UniRef50_P76656 0.91348016761 0.5 -0.41348016761 +UniRef50_C1CWV4 0.0104446564428 0.500000000001 0.489555343557 +UniRef50_UPI00036962AD hypothetical protein 0.0648517569713 0.5 0.435148243029 +UniRef50_A0A059LMT5 0.163514090123 0.5 0.336485909877 +UniRef50_UPI000469E0E3 hypothetical protein 0.778942276846 0.5 -0.278942276846 +UniRef50_D2NAN7 1.04651057987 0.5 -0.546510579868 +UniRef50_UPI0003680D68 hypothetical protein 0.623364343703 0.5 -0.123364343703 +UniRef50_Q21YT7 Bifunctional enzyme IspD IspF 0.0377556720513 0.499999999999 0.462244327949 +UniRef50_UPI00047088D8 hypothetical protein 0.585959159876 0.5 -0.0859591598758 +UniRef50_Q3B6P1 CTP synthase 0.0273419969548 0.500000000001 0.472658003044 +UniRef50_C0QRW6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0662806677906 0.5 0.433719332209 +UniRef50_Q2YZ93 1.41400966601 0.499999999999 -0.914009666008 +UniRef50_Q3IV77 TPR repeat containing Spindly family protein 3.11952628991 0.5 -2.61952628991 +UniRef50_UPI00035EB53D hypothetical protein 4.74527721303 0.500000000001 -4.24527721303 +UniRef50_UPI0004635DEB UDP diphosphatase 0.367294343798 0.5 0.132705656202 +UniRef50_P00393 NADH dehydrogenase 1.33740231683 0.499999999999 -0.837402316832 +UniRef50_A6LX04 0.104801865947 0.5 0.395198134053 +UniRef50_V8CG00 0.449392417478 0.5 0.0506075825219 +UniRef50_Q9RZS8 0.00150053040651 0.5 0.498499469593 +UniRef50_A4WP65 2.00778086249 0.5 -1.50778086249 +UniRef50_UPI00046AD605 PTS fructose transporter subunit IIA 0.00414541350992 0.5 0.49585458649 +UniRef50_M4RDX0 Lipopolysaccharide core biosynthesis glycosyl transferase LpsC 0.0394787711437 0.5 0.460521228856 +UniRef50_Q9RZS7 0.00244819905879 0.5 0.497551800941 +UniRef50_UPI000315D670 hypothetical protein 0.629613448839 0.5 -0.129613448839 +UniRef50_P33020 5.25145097732 0.499999999996 -4.75145097732 +UniRef50_UPI0003C112FE PREDICTED 0.182549570757 0.5 0.317450429243 +UniRef50_P0AE93 Protein CreA 116.397273181 0.499999999981 -115.897273181 +UniRef50_UPI000369C4E2 hypothetical protein 0.0282104482199 0.5 0.47178955178 +UniRef50_D4HBB1 Cell envelope like function transcriptional attenuator common domain protein 0.0326119219366 0.5 0.467388078063 +UniRef50_UPI0002DA7A52 hypothetical protein 0.153349194501 0.5 0.346650805499 +UniRef50_X1BI40 Marine sediment metagenome DNA, contig 5.35984399018 0.499999999994 -4.85984399018 +UniRef50_Q6CZ33 sn glycerol 3 phosphate transport system permease protein UgpE 4.03235861637 0.499999999999 -3.53235861637 +UniRef50_R4K219 0.623392688842 0.5 -0.123392688842 +UniRef50_UPI0004794A3D hypothetical protein 0.200752564212 0.5 0.299247435788 +UniRef50_B8GTL2 Chromosome partition protein Smc 0.332712636645 0.5 0.167287363355 +UniRef50_UPI00036F03E5 hypothetical protein 0.234870923348 0.5 0.265129076652 +UniRef50_UPI00038F73EB Bifunctional protein PyrR 0.236083560672 0.5 0.263916439328 +UniRef50_U5MN80 0.0642037396582 0.5 0.435796260342 +UniRef50_UPI0003F56C41 hypothetical protein 0.503798851137 0.5 -0.00379885113712 +UniRef50_N0C6R0 Competence protein ComYD 0.143073857349 0.5 0.356926142651 +UniRef50_P13989 Transposon Tn7 transposition protein TnsB 0.00292014744643 0.5 0.497079852554 +UniRef50_I4F3M5 Putative Diguanylate cyclase 0.0212996449066 0.5 0.478700355093 +UniRef50_G1Y149 2.12501197601 0.499999999998 -1.62501197601 +UniRef50_P0A9V0 Probable acyl CoA dehydrogenase YdiO 2.70264412556 0.5 -2.20264412556 +UniRef50_P21345 Proton glutamate symport protein 0.158168658748 0.5 0.341831341252 +UniRef50_Q3IMV2 Dihydroxy acid dehydratase 0.359893161977 0.5 0.140106838023 +UniRef50_UPI0003A1A703 membrane protein 1.9049940701 0.5 -1.4049940701 +UniRef50_UPI0004659468 hypothetical protein, partial 0.338578489501 0.5 0.161421510499 +UniRef50_T1Y8Z5 1.81096771162 0.5 -1.31096771162 +UniRef50_S5CR26 Xaa Pro aminopeptidase 0.0185548944299 0.5 0.48144510557 +UniRef50_UPI000378FCC9 MULTISPECIES 0.558879161876 0.5 -0.0588791618757 +UniRef50_A8LIR2 Chorismate mutase related enzyme 0.119329482028 0.5 0.380670517972 +UniRef50_P39404 Transcriptional activator protein BglJ 7.37707242258 0.499999999998 -6.87707242258 +UniRef50_I4KME6 DNA binding response regulator 1.00798151252 0.5 -0.507981512521 +UniRef50_A0A023WST9 MerR family transcriptional regulator 2.05797498902 0.499999999999 -1.55797498902 +UniRef50_UPI00036CE626 hypothetical protein 0.288096502122 0.5 0.211903497878 +UniRef50_UPI0003763AA0 hypothetical protein 0.0133210561981 0.500000000001 0.486678943801 +UniRef50_A4WR49 Cellulose synthase 1.89814420235 0.499999999999 -1.39814420235 +UniRef50_G0EC83 Threonine synthase 2.02406940608 0.500000000001 -1.52406940608 +UniRef50_B7UVS6 Exoenzyme S 1.37420033779 0.5 -0.874200337788 +UniRef50_Q0W1R5 Predicted NADPH 4.81150545063 0.500000000001 -4.31150545063 +UniRef50_F9YX94 DNA processing uptake protein 0.0069705648784 0.5 0.493029435122 +UniRef50_UPI0003F687BA deoxyguanosinetriphosphate triphosphohydrolase 3.62241449291 0.500000000001 -3.12241449291 +UniRef50_X1R4V0 Marine sediment metagenome DNA, contig 0.0137189211516 0.5 0.486281078848 +UniRef50_A7FAV9 0.0443461374548 0.5 0.455653862545 +UniRef50_P0AD71 D alanyl D alanine carboxypeptidase endopeptidase AmpH 1.05317824626 0.5 -0.553178246264 +UniRef50_A7FAV7 0.00286029294913 0.500000000001 0.49713970705 +UniRef50_A7FAV5 0.00835365446588 0.500000000001 0.491646345534 +UniRef50_Q46577 UvrABC system protein A 0.00326308022565 0.5 0.496736919774 +UniRef50_Q9RW78 Chloride peroxidase, putative 0.00212522164655 0.5 0.497874778354 +UniRef50_Q8EBC3 Sulfate thiosulfate import ATP binding protein CysA 1 0.872939497378 0.5 -0.372939497378 +UniRef50_Q9R3J0 Transposase, putative 0.00101421263022 0.500000000001 0.498985787369 +UniRef50_M5B2K9 Probable transposase 1.30548748134 0.5 -0.805487481342 +UniRef50_A7ZTZ7 Putative ECA polymerase 2.27018967829 0.5 -1.77018967829 +UniRef50_D3DZE6 Transcriptional regulator LysR family 9.28007052881 0.499999999996 -8.78007052881 +UniRef50_UPI0004644785 transcriptional regulator 0.0601189821669 0.500000000001 0.439881017832 +UniRef50_B2SBI3 Tetracycline resistance protein 0.556208621428 0.5 -0.0562086214281 +UniRef50_U3SUM1 1.22121187568 0.5 -0.72121187568 +UniRef50_A3SI31 0.503322045703 0.5 -0.003322045703 +UniRef50_Q1R311 0.383197718233 0.5 0.116802281767 +UniRef50_UPI0003640CCC hypothetical protein 8.372903628 0.499999999997 -7.87290362799 +UniRef50_B7UUY0 1.06526541172 0.5 -0.565265411723 +UniRef50_UPI000289D6F0 cation 0.136540048387 0.5 0.363459951613 +UniRef50_H2JHD1 Integral membrane protein, TerC family 0.087196161256 0.5 0.412803838744 +UniRef50_R1D0M5 0.125093716295 0.5 0.374906283705 +UniRef50_R1DLZ1 0.458142616926 0.5 0.041857383074 +UniRef50_W7WJF0 Neu5Ac permease 0.28698472135 0.5 0.21301527865 +UniRef50_F2JL25 DNA topoisomerase 0.332876932462 0.5 0.167123067538 +UniRef50_D8JXK3 Oxygen independent coproporphyrinogen III oxidase 2.00438100549 0.5 -1.50438100549 +UniRef50_UPI0003B32353 potassium transporter 0.539682994443 0.5 -0.0396829944428 +UniRef50_Q9X2I3 Septum site determining protein MinD 0.0669887719149 0.5 0.433011228085 +UniRef50_B4SI67 2 isopropylmalate synthase 0.0304292073083 0.5 0.469570792692 +UniRef50_P76072 Side tail fiber protein homolog from lambdoid prophage Rac 1.60657857693 0.5 -1.10657857693 +UniRef50_A4WZC5 Phosphoribosylanthranilate isomerase like protein 1.07215776711 0.5 -0.572157767113 +UniRef50_Q9RWI2 0.00141231517182 0.5 0.498587684828 +UniRef50_Q9RWI3 0.00485862881361 0.5 0.495141371187 +UniRef50_Q9RWI0 0.00418023022746 0.5 0.495819769772 +UniRef50_UPI00046EF909 transketolase, partial 1.33516939245 0.5 -0.835169392451 +UniRef50_Q5FKZ1 Thymidine kinase 0.315913431821 0.5 0.184086568179 +UniRef50_A3KBE5 0.831271846001 0.5 -0.331271846001 +UniRef50_F7YHP7 Short chain dehydrogenase reductase SDR 0.148506128355 0.5 0.351493871645 +UniRef50_Q0TR80 Amidohydrolase family protein 0.0638512293767 0.499999999999 0.436148770624 +UniRef50_UPI00036450DC hypothetical protein 0.477984633078 0.5 0.0220153669222 +UniRef50_D4MHB3 Predicted flavoprotein 0.255273887308 0.5 0.244726112692 +UniRef50_F2F126 Lactoylglutathione lyase 1.29635957465 0.5 -0.796359574646 +UniRef50_A1B1F7 0.865471051751 0.5 -0.365471051751 +UniRef50_D0DBX3 Integrase, catalytic region 1.0580579549 0.5 -0.558057954896 +UniRef50_UPI0003B7524F multidrug ABC transporter ATPase 0.0956346248316 0.5 0.404365375168 +UniRef50_UPI000376921C hypothetical protein 0.410636095772 0.5 0.0893639042278 +UniRef50_Q199U5 Thiamine biosynthesis protein 0.0455957173763 0.5 0.454404282624 +UniRef50_UPI0003B774DC MFS transporter 1.48292816075 0.499999999998 -0.982928160746 +UniRef50_UPI00036C63C0 hypothetical protein 0.356908540962 0.5 0.143091459038 +UniRef50_A4ILI2 UDP N acetylenolpyruvoylglucosamine reductase 0.0292758168773 0.5 0.470724183122 +UniRef50_UPI000475759F flagellar hook capping protein 0.34248273485 0.5 0.15751726515 +UniRef50_UPI0004761474 3 hydroxymyristoyl ACP dehydratase 0.301884887033 0.5 0.198115112967 +UniRef50_Q2T2J9 Cobalamin synthesis protein P47K family protein 0.0394583444847 0.5 0.460541655515 +UniRef50_UPI00035A08C7 PREDICTED 0.174536674757 0.5 0.325463325243 +UniRef50_X6L0P1 2.01200074811 0.5 -1.51200074811 +UniRef50_A6LRQ4 Spore coat protein CotS 0.169385574458 0.5 0.330614425543 +UniRef50_W6LXS6 1.25767257936 0.5 -0.757672579355 +UniRef50_U7RK39 0.28698607312 0.5 0.21301392688 +UniRef50_D1Q2W4 Transcriptional activator of maltose regulon,MalT 2.28641881631 0.500000000001 -1.78641881631 +UniRef50_W4KGM2 0.338020970054 0.5 0.161979029946 +UniRef50_UPI0004636D05 hypothetical protein 0.462858913242 0.5 0.0371410867584 +UniRef50_O58058 N5 carboxyaminoimidazole ribonucleotide mutase 0.497395773728 0.5 0.00260422627244 +UniRef50_UPI0004178882 hypothetical protein 0.0750721462425 0.5 0.424927853757 +UniRef50_UPI0004632840 hypothetical protein 0.985170594531 0.5 -0.485170594531 +UniRef50_A0A059IKA9 1.81001389847 0.5 -1.31001389847 +UniRef50_Q6LMJ9 Glutamyl Q tRNA synthetase 1.41993920136 0.5 -0.919939201358 +UniRef50_R8ZHF6 0.272002617474 0.5 0.227997382526 +UniRef50_Q5HRC6 Iron compound ABC transporter, permease protein 2.93999549486 0.500000000003 -2.43999549486 +UniRef50_H7G193 0.541577698509 0.5 -0.0415776985089 +UniRef50_Q8R8R7 Galactokinase 0.459967923486 0.5 0.0400320765141 +UniRef50_Q839C1 L lactate dehydrogenase 1 0.350168026348 0.5 0.149831973652 +UniRef50_Q466U8 ABC transporter ATP binding protein 0.222565653875 0.5 0.277434346125 +UniRef50_P51008 Oxygen independent coproporphyrinogen III oxidase 4.4266747214 0.5 -3.9266747214 +UniRef50_Q57493 0.2583568706 0.5 0.2416431294 +UniRef50_UPI0003703812 hypothetical protein 0.0731598322677 0.5 0.426840167732 +UniRef50_UPI00037C1F67 hypothetical protein 0.393450887002 0.5 0.106549112998 +UniRef50_E8TBW5 Sugar ABC transporter 0.901481729607 0.5 -0.401481729607 +UniRef50_E8S544 Diguanylate cyclase phosphodiesterase 0.748003790487 0.5 -0.248003790487 +UniRef50_UPI000377E8D6 MULTISPECIES 0.318132990645 0.5 0.181867009355 +UniRef50_B6A550 2.22360267975 0.5 -1.72360267975 +UniRef50_A4WT86 Autoinducer binding domain protein 6.34551372281 0.5 -5.84551372281 +UniRef50_UPI0003F8AF13 hypothetical protein 0.00595814137354 0.5 0.494041858627 +UniRef50_Q00751 Multiple sugar binding transport system permease protein MsmG 0.12822014957 0.5 0.37177985043 +UniRef50_A4WZL0 Two component transcriptional regulator, winged helix family 0.132143274749 0.5 0.367856725251 +UniRef50_Q4L8E5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.87607368892 0.5 -1.37607368892 +UniRef50_A3PRQ8 ABC cobalt transporter, periplasmic binding protein CbiN 4.89353116802 0.500000000004 -4.39353116803 +UniRef50_A9AH86 Glutamine amidotransferase class II 0.0122736099397 0.5 0.48772639006 +UniRef50_UPI0003B6246C sodium hydrogen exchanger 0.478546598966 0.5 0.0214534010342 +UniRef50_UPI000262878B cold shock DNA binding protein family 0.245542406666 0.5 0.254457593334 +UniRef50_Q8EHK0 Purine nucleoside phosphorylase DeoD type 2 1.27597360026 0.499999999998 -0.775973600261 +UniRef50_Q6F7Y6 0.00035357117099 0.5 0.499646428829 +UniRef50_B0V7N3 0.0257483463949 0.5 0.474251653605 +UniRef50_V7CVS8 0.380995082147 0.5 0.119004917853 +UniRef50_UPI000470AFA8 oligo 1,6 glucosidase 0.604605679813 0.5 -0.104605679813 +UniRef50_UPI000255E45E metallophosphoesterase, partial 0.201475169167 0.5 0.298524830833 +UniRef50_UPI00047A285C heme response regulator HssR 0.306003203748 0.5 0.193996796252 +UniRef50_Q9XAS7 BPS protein 2.00760566122 0.500000000002 -1.50760566123 +UniRef50_B8HEC3 Transketolase central region 0.0172108005108 0.5 0.482789199489 +UniRef50_UPI0003A4A480 tRNA dihydrouridine synthase 0.102883785528 0.5 0.397116214472 +UniRef50_UPI00016C3AC8 Na+ H+ antiporter 0.0012958951613 0.5 0.498704104839 +UniRef50_F8K072 0.0289071982517 0.5 0.471092801748 +UniRef50_Q4L5P2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.45507755881 0.500000000004 -2.95507755881 +UniRef50_UPI0003B7B948 methyltransferase, partial 0.38766566803 0.5 0.11233433197 +UniRef50_Q6GK24 Protein EssC 2.65926108233 0.5 -2.15926108233 +UniRef50_U5MYI0 Chitinase A1 0.0958138985358 0.5 0.404186101465 +UniRef50_A1AZK8 Membrane protein involved in aromatic hydrocarbon degradation 0.391344478606 0.5 0.108655521394 +UniRef50_R7ZYU2 0.0181831815825 0.5 0.481816818417 +UniRef50_G8S2D3 17.7460433911 0.500000000004 -17.2460433911 +UniRef50_A0A021VU42 4.57631668457 0.499999999998 -4.07631668456 +UniRef50_J9NU01 0.28761916526 0.5 0.21238083474 +UniRef50_UPI0004720155 hypothetical protein, partial 0.796382160541 0.5 -0.296382160541 +UniRef50_Q492J8 Methionine tRNA ligase 17.662805256 0.499999999991 -17.162805256 +UniRef50_I6TCA9 Tagatose 6 phosphate kinase 0.389985580288 0.5 0.110014419712 +UniRef50_Q2T0M6 Pyridoxine pyridoxamine 5 phosphate oxidase 0.00592188763119 0.5 0.494078112369 +UniRef50_O34994 Transcriptional repressor CcpN 2.24244234839 0.5 -1.74244234839 +UniRef50_Q9R3J8 Transposase, putative 0.000787710618079 0.5 0.499212289382 +UniRef50_UPI000252B349 PREDICTED 0.27501738519 0.5 0.22498261481 +UniRef50_A6V0F0 0.380147061116 0.5 0.119852938884 +UniRef50_X0YAI8 Marine sediment metagenome DNA, contig 0.265266344439 0.5 0.234733655561 +UniRef50_UPI00046F5931 potassium transporter 0.354014773123 0.5 0.145985226877 +UniRef50_P64309 Non canonical purine NTP pyrophosphatase 1.41104644774 0.5 -0.911046447741 +UniRef50_UPI0003B4DFFC 50S ribosomal protein L18 0.0644027777948 0.5 0.435597222206 +UniRef50_D8JIL7 Chromosome partitioning protein parA 0.0224101192626 0.5 0.477589880737 +UniRef50_R4XZT5 FIG002261 0.142056599089 0.5 0.357943400911 +UniRef50_M1G0P3 Sulfatase family protein 1.79905404686 0.499999999997 -1.29905404686 +UniRef50_B5FIB5 0.112488719641 0.5 0.387511280359 +UniRef50_O31677 7 carboxy 7 deazaguanine synthase 2.38331701865 0.500000000001 -1.88331701865 +UniRef50_UPI00035C09C2 hypothetical protein 0.600230327062 0.5 -0.100230327062 +UniRef50_R5WTT7 Acriflavine resistance protein B 3.03273972608 0.499999999998 -2.53273972608 +UniRef50_X1S582 Marine sediment metagenome DNA, contig 8.81421386041 0.500000000008 -8.31421386042 +UniRef50_Q3Y3U4 Mobilization protein MobC 3.06160724057 0.5 -2.56160724057 +UniRef50_UPI000346E2F6 hypothetical protein 1.28137297 0.5 -0.78137297 +UniRef50_A6TED5 Modulator protein MzrA 5.66717271862 0.500000000002 -5.16717271862 +UniRef50_D5WQ35 Restriction endonuclease 0.00770020617367 0.5 0.492299793826 +UniRef50_P21866 KDP operon transcriptional regulatory protein KdpE 1.51173633435 0.500000000001 -1.01173633435 +UniRef50_B4SKP9 Transcriptional regulator, LysR family 0.104851911537 0.5 0.395148088463 +UniRef50_UPI00036C1571 hypothetical protein 2.88291568239 0.500000000004 -2.3829156824 +UniRef50_UPI00047D9616 helicase Cas3 1.28718220776 0.5 -0.787182207756 +UniRef50_A0A037ZGX3 0.041744580747 0.5 0.458255419253 +UniRef50_B9E8E5 ATP synthase epsilon chain 5.49407056699 0.499999999997 -4.99407056698 +UniRef50_UPI00040D8CBE potassium transporter KefB 0.476510956536 0.5 0.0234890434639 +UniRef50_Q5SJ70 Acetyl Coenzyme A dehydrogenase, medium chain 0.00235774360901 0.5 0.497642256391 +UniRef50_UPI0004650AF8 hypothetical protein 0.830907546132 0.5 -0.330907546132 +UniRef50_UPI000362104F hypothetical protein 0.663082132897 0.5 -0.163082132897 +UniRef50_D8FF08 0.166157028252 0.5 0.333842971748 +UniRef50_UPI0003674A12 hypothetical protein 0.234437755464 0.5 0.265562244536 +UniRef50_UPI0003D7284B PREDICTED 0.0268795503394 0.5 0.473120449661 +UniRef50_F8JIY3 0.12260937557 0.5 0.377390624429 +UniRef50_Q3JNR9 1.13830785874 0.5 -0.638307858741 +UniRef50_UPI0003C10C25 0.0905279219197 0.5 0.40947207808 +UniRef50_E2ZSP5 0.9654295294 0.5 -0.4654295294 +UniRef50_UPI000371A3CA hypothetical protein, partial 0.834409786218 0.5 -0.334409786218 +UniRef50_B9KR70 3.3628579149 0.5 -2.8628579149 +UniRef50_Q47319 DTW domain containing protein YfiP 1.81399415868 0.5 -1.31399415868 +UniRef50_T0TT19 Putative NagD like phosphatase 0.355229797977 0.5 0.144770202023 +UniRef50_B0KIU6 Transposase like protein TnpA3 0.173290686767 0.5 0.326709313234 +UniRef50_UPI000161E3FF Elongation factor G C terminus family protein 0.0629563468772 0.5 0.437043653123 +UniRef50_J7QW46 Precorrin 2 C20 methyltransferase 0.577582125621 0.5 -0.077582125621 +UniRef50_F0Y525 0.411065087252 0.5 0.0889349127481 +UniRef50_UPI000365C1D0 hypothetical protein 0.0517471908032 0.5 0.448252809197 +UniRef50_P59011 Bifunctional protein PyrR 0.113231156244 0.5 0.386768843756 +UniRef50_U3SYD5 MATE family drug transporter 0.00701594998057 0.5 0.492984050019 +UniRef50_Q43922 3 dehydroshikimate dehydratase 0.0171773588936 0.5 0.482822641106 +UniRef50_Q2RI74 Shikimate kinase 0.896941690433 0.5 -0.396941690433 +UniRef50_C1CX80 Bifunctional protein PyrR 0.00278375672159 0.5 0.497216243278 +UniRef50_Z4VVL5 0.110829635678 0.5 0.389170364322 +UniRef50_B3QX75 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.1692331419 0.5 0.3307668581 +UniRef50_P96121 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.286266233059 0.5 0.213733766941 +UniRef50_UPI0002191618 6 phospho beta glucosidase 0.0771593615199 0.5 0.42284063848 +UniRef50_UPI0003C10787 0.276140880462 0.5 0.223859119538 +UniRef50_R5RKK3 L serine dehydratase 0.546377068498 0.5 -0.0463770684978 +UniRef50_Q5HKH4 Peptide ABC transporter, permease protein, putative 1.55893131354 0.499999999999 -1.05893131353 +UniRef50_A0A011QZG0 Respiratory nitrate reductase 2 beta chain 0.521586593175 0.5 -0.0215865931745 +UniRef50_UPI000345A202 hypothetical protein 1.78872460983 0.5 -1.28872460983 +UniRef50_J2LQ54 NADH dehydrogenase subunit I 2.74142461598 0.5 -2.24142461598 +UniRef50_UPI000463660E hypothetical protein 0.00913888509777 0.5 0.490861114902 +UniRef50_Q5WBL0 Aliphatic sulfonates import ATP binding protein SsuB 3 0.712873595813 0.5 -0.212873595813 +UniRef50_UPI000382981C hypothetical protein, partial 0.149815378614 0.5 0.350184621386 +UniRef50_UPI00047CCC4C 3 oxoacyl ACP synthase 0.778833496848 0.5 -0.278833496848 +UniRef50_Q9RZ68 0.00231267403361 0.5 0.497687325966 +UniRef50_Q53L87 0.221097930956 0.5 0.278902069044 +UniRef50_Q4SKB1 Chromosome 13 SCAF14566, whole genome shotgun sequence 0.0654111570147 0.5 0.434588842986 +UniRef50_Q9RZ60 0.00169722167632 0.5 0.498302778323 +UniRef50_Q9RZ61 0.00152193110456 0.5 0.498478068895 +UniRef50_O32167 Methionine binding lipoprotein MetQ 2.55288181273 0.5 -2.05288181273 +UniRef50_A9MAP0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 8.3522744643 0.500000000004 -7.8522744643 +UniRef50_A3CMH9 DEAD RNA helicase, putative 0.493181149395 0.5 0.00681885060513 +UniRef50_Q01WB8 30S ribosomal protein S11 2.16971800789 0.500000000001 -1.66971800789 +UniRef50_Q5L310 Histidine ammonia lyase 0.0415430994996 0.5 0.4584569005 +UniRef50_D5AP19 Sterol binding domain protein 0.321416328096 0.5 0.178583671904 +UniRef50_UPI0003123919 hypothetical protein 0.19575436845 0.499999999999 0.30424563155 +UniRef50_UPI0004650B6E MULTISPECIES 1.26995209755 0.5 -0.769952097552 +UniRef50_UPI00047AC749 hypothetical protein 0.571308319202 0.5 -0.0713083192017 +UniRef50_A8XU33 Protein CBG18769 1.67986400847 0.5 -1.17986400847 +UniRef50_UPI0003758259 MULTISPECIES 0.207714446369 0.5 0.292285553631 +UniRef50_Q04FM1 Energy coupling factor transporter ATP binding protein EcfA2 0.0952121362365 0.5 0.404787863764 +UniRef50_V7WX89 0.00197382792262 0.5 0.498026172078 +UniRef50_UPI000328F9A1 PREDICTED 0.476609208283 0.5 0.0233907917169 +UniRef50_UPI000372F683 hypothetical protein 3.6246651116 0.500000000002 -3.1246651116 +UniRef50_M4YYR0 Phosphoglycerate mutase 0.469903368905 0.5 0.0300966310955 +UniRef50_Q0BVP4 Ribonuclease D 3.43495524392 0.5 -2.93495524392 +UniRef50_A6V1L5 0.0753021341398 0.5 0.42469786586 +UniRef50_Q114I1 1,4 alpha glucan branching enzyme GlgB 0.208271477044 0.5 0.291728522956 +UniRef50_F4DWN5 Alpha beta hydrolase fold protein 1.0396583829 0.5 -0.539658382901 +UniRef50_D3QGJ7 Nitrilotriacetate monooxygenase 2.44619168294 0.5 -1.94619168294 +UniRef50_A6LYY8 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.0510265954971 0.5 0.448973404503 +UniRef50_UPI0003C8E201 PREDICTED 0.61946338181 0.5 -0.11946338181 +UniRef50_A3M465 TPR domain protein 0.0259299697 0.5 0.4740700303 +UniRef50_A7X204 Large conductance mechanosensitive channel 4.8618870033 0.500000000001 -4.36188700331 +UniRef50_UPI00035D3D92 hypothetical protein 0.151044015829 0.5 0.348955984171 +UniRef50_UPI00036ED9BB thymidylate synthase 0.0316321449061 0.5 0.468367855094 +UniRef50_UPI00037D216E hypothetical protein 1.06542893829 0.5 -0.565428938286 +UniRef50_P43784 Dihydrolipoyl dehydrogenase 0.725728530105 0.5 -0.225728530105 +UniRef50_C3LL78 Peptidase, M23 M37 family protein 0.0095954721601 0.5 0.49040452784 +UniRef50_UPI000255ED81 hypothetical protein 0.0709215681538 0.5 0.429078431846 +UniRef50_Q5HRN3 ISSep1 like transposase 1.42792736707 0.500000000001 -0.927927367071 +UniRef50_W8UYM6 S formylglutathione hydrolase 0.30920418672 0.5 0.19079581328 +UniRef50_I0ETM1 Bifunctional riboflavin kinase FMN adenylyltransferase 0.133916344746 0.5 0.366083655254 +UniRef50_Q1AU56 DNA directed RNA polymerase subunit alpha 0.459904484665 0.5 0.0400955153351 +UniRef50_P0A6M3 Disulfide bond formation protein B 0.509695089917 0.5 -0.00969508991683 +UniRef50_R9SIZ9 Xylose isomerase like TIM barrel domain containing protein 1.21887972348 0.5 -0.718879723479 +UniRef50_A0A011MST9 Putative ATP dependent protease 0.3545201636 0.5 0.1454798364 +UniRef50_UPI000364852F hypothetical protein 0.308070225384 0.5 0.191929774616 +UniRef50_A4XNC3 Transcriptional regulator, LysR family 0.801927148334 0.5 -0.301927148334 +UniRef50_Q9RZI9 0.00104713810051 0.5 0.498952861899 +UniRef50_Q2GBU1 0.308238806486 0.5 0.191761193514 +UniRef50_E2XNR6 Chemotaxis sensory transducer 1.77583018676 0.5 -1.27583018676 +UniRef50_A3NNI6 S glutathione dehydrogenase 0.00575001646057 0.5 0.49424998354 +UniRef50_UPI00035F7621 hypothetical protein 0.638285894507 0.5 -0.138285894507 +UniRef50_Q8CMX9 Anaerobic dicarboxylate transport 2.26837141914 0.5 -1.76837141914 +UniRef50_A7ZTG3 Protein export protein SecB 1.43746006952 0.5 -0.937460069516 +UniRef50_P76128 Probable D,D dipeptide binding periplasmic protein DdpA 0.901038910503 0.5 -0.401038910503 +UniRef50_A6LU60 Prophage ps3 protein 01, putative 0.275816516144 0.5 0.224183483856 +UniRef50_Q5W6S1 Os05g0345700 protein 0.131852204946 0.5 0.368147795054 +UniRef50_C5CB84 Branched chain amino acid uptake carrier 0.0866552440901 0.5 0.41334475591 +UniRef50_UPI00036BAC4E hypothetical protein 0.225506529653 0.5 0.274493470347 +UniRef50_S4X9U7 LysR family HTH type transcriptional regulator 2.55165366763 0.500000000004 -2.05165366764 +UniRef50_UPI0003B52A97 ribonuclease 0.841208754684 0.5 -0.341208754684 +UniRef50_UPI00037423BF hypothetical protein, partial 0.437103111614 0.5 0.0628968883859 +UniRef50_UPI000378F32E hypothetical protein 0.318332410379 0.5 0.181667589621 +UniRef50_F0MS68 Outer membrane protein OpcA 0.0537455613686 0.5 0.446254438631 +UniRef50_A0KET1 Membrane lipoprotein 2.81290749634 0.5 -2.31290749634 +UniRef50_W0WHZ7 1.38506402553 0.5 -0.885064025527 +UniRef50_P45871 0.487063030244 0.5 0.0129369697562 +UniRef50_R4ZVH1 Hydroxymethylglutaryl CoA reductase 1.04899154207 0.5 -0.548991542074 +UniRef50_UPI000262730A exodeoxyribonuclease III 0.685732006409 0.5 -0.185732006409 +UniRef50_Q4FQI2 Shikimate kinase 0.647158237495 0.5 -0.147158237495 +UniRef50_Q016J7 GTP binding protein 0.180104116779 0.5 0.319895883221 +UniRef50_UPI00046A74CA quinone oxidoreductase 0.111690018639 0.5 0.388309981361 +UniRef50_UPI0003632653 hypothetical protein 0.5065413843 0.5 -0.00654138430029 +UniRef50_I2ICF5 Transposase 1.60540036285 0.5 -1.10540036285 +UniRef50_H6NN00 MerR family transcriptional regulator 0.42892219964 0.5 0.0710778003602 +UniRef50_E6MYF0 Bacterial lipid A biosynthesis acyltransferase family protein 0.0288837961852 0.5 0.471116203815 +UniRef50_UPI000478CD68 translation initiation factor IF 2 0.259498749219 0.5 0.240501250781 +UniRef50_V5VE92 MFS transporter 0.0431563946269 0.5 0.456843605373 +UniRef50_Q5F5X0 1 deoxy D xylulose 5 phosphate reductoisomerase 0.0190942847012 0.5 0.480905715299 +UniRef50_B7UXA3 Flagellar hook associated protein 1 FlgK 2.20671854501 0.5 -1.70671854501 +UniRef50_U6LVU1 0.0519827629273 0.499999999999 0.448017237073 +UniRef50_UPI0004678984 MULTISPECIES 0.110976654557 0.5 0.389023345443 +UniRef50_UPI00046E9450 hypothetical protein 0.195622979256 0.5 0.304377020744 +UniRef50_P39298 Esterase YjfP 0.512469819928 0.5 -0.0124698199277 +UniRef50_E3RE87 3.16035523744 0.5 -2.66035523744 +UniRef50_Q2NAN4 DNA topology modulation protein 0.451253647587 0.5 0.0487463524125 +UniRef50_UPI00040DCB53 hypothetical protein 0.361709404302 0.5 0.138290595698 +UniRef50_F2KZY9 Metal ion transporter, metal ion transporter (Nramp) family 0.0492403306547 0.5 0.450759669345 +UniRef50_UPI000288BAAB dihydroorotate dehydrogenase 0.262721302559 0.5 0.237278697441 +UniRef50_P18159 Phosphoglucomutase 0.349529894648 0.5 0.150470105352 +UniRef50_UPI0002B94CAD hypothetical protein, partial 0.0166775551811 0.499999999999 0.48332244482 +UniRef50_A6M1D1 Phage replisome organizer, putative 0.111922393525 0.5 0.388077606475 +UniRef50_S5XSU0 Segregation and condensation protein A 3.98169918485 0.500000000001 -3.48169918485 +UniRef50_M1TQL6 Fe S cluster redox enzyme 0.143245451649 0.5 0.356754548351 +UniRef50_E8NHR5 WGS CADB00000000 data, contig 91 0.0587252704032 0.500000000001 0.441274729596 +UniRef50_A6LY06 Helix turn helix domain containing protein, AraC type 0.0727860979745 0.5 0.427213902025 +UniRef50_A7MN74 NAD dependent malic enzyme 0.119819130737 0.5 0.380180869263 +UniRef50_E1VPQ4 1.7900468507 0.5 -1.2900468507 +UniRef50_Q634K1 Transposase 0.269086760002 0.5 0.230913239998 +UniRef50_Q9RTE1 Glucose 1 phosphate adenylyltransferase 0.0037402056554 0.5 0.496259794344 +UniRef50_C9RUW3 ComE operon protein 2 9.24502908992 0.49999999999 -8.74502908991 +UniRef50_F2LGK2 0.472631528566 0.5 0.0273684714343 +UniRef50_UPI0003656D72 hypothetical protein 0.199745963681 0.5 0.300254036319 +UniRef50_E6N0Q8 0.0111171657394 0.5 0.48888283426 +UniRef50_E6N0Q9 0.475209316007 0.5 0.024790683993 +UniRef50_Q3IXH2 Fumarase alpha subunit 1.18347949064 0.5 -0.683479490638 +UniRef50_UPI00036E7B4E hypothetical protein 1.14764398034 0.5 -0.64764398034 +UniRef50_F4M9A1 Dimethyl sulfoxide reductase chain YnfE 3.22794682112 0.5 -2.72794682112 +UniRef50_G8UZQ2 Bacterial low temperature requirement A family protein 2.89766827938 0.5 -2.39766827938 +UniRef50_UPI00047AD872 2 oxoglutarate dehydrogenase 0.199784330753 0.5 0.300215669247 +UniRef50_U2YEL7 0.256712310061 0.5 0.243287689939 +UniRef50_UPI00037E762B MULTISPECIES 0.601608802743 0.5 -0.101608802743 +UniRef50_UPI00040E4B39 NADH 0.245746108519 0.5 0.254253891481 +UniRef50_UPI000289FCDF shikimate kinase 0.272398705662 0.5 0.227601294338 +UniRef50_T0Y894 GMP synthase, large subunit 0.942979201101 0.5 -0.442979201101 +UniRef50_S9P8Y7 2.12795723101 0.499999999999 -1.62795723101 +UniRef50_A3RSV8 Hypothetical membrane spanning protein 1.87280655644 0.5 -1.37280655644 +UniRef50_Q1IKG7 Phospho N acetylmuramoyl pentapeptide transferase 0.0708209794185 0.5 0.429179020581 +UniRef50_B7MKP4 0.0753792952703 0.5 0.424620704729 +UniRef50_Q5HQ23 Non canonical purine NTP pyrophosphatase 6.13452463624 0.499999999999 -5.63452463624 +UniRef50_UPI0003FD107E phosphoglycerate mutase 1.61415386584 0.499999999999 -1.11415386584 +UniRef50_I0C7R8 Short chain dehydrogenase 19.9132131384 0.499999999981 -19.4132131384 +UniRef50_P0ABM0 Heme exporter protein B 1.37344378672 0.5 -0.873443786725 +UniRef50_P0ABG2 Phosphatidate cytidylyltransferase 6.03500801071 0.500000000003 -5.53500801072 +UniRef50_A6LYG5 0.173417303321 0.5 0.326582696678 +UniRef50_Q9JZS9 0.0532441655811 0.5 0.446755834419 +UniRef50_A0A011UDJ9 0.032688134676 0.5 0.467311865324 +UniRef50_UPI000292A56C 1.79631325826 0.500000000001 -1.29631325826 +UniRef50_UPI00037DD48E hypothetical protein 0.30867066713 0.5 0.19132933287 +UniRef50_E8SJM7 Siderophore staphylobactin biosynthesis protein SbnG 1.64227805731 0.5 -1.14227805731 +UniRef50_T1AK40 NAD dependent dehydrogenase 0.288743497033 0.5 0.211256502967 +UniRef50_UPI0003775605 hypothetical protein 0.0502487757135 0.5 0.449751224287 +UniRef50_Q1QUR0 3 isopropylmalate dehydrogenase 0.295845042479 0.5 0.204154957521 +UniRef50_B2TNA6 D galactose binding periplasmic protein 0.0344920653828 0.5 0.465507934618 +UniRef50_C5WII8 Amino acid ABC transporter extracellular binding protein 1.19698305984 0.5 -0.696983059841 +UniRef50_Q88A48 Bis tetraphosphatase, symmetrical 0.00621650619794 0.5 0.493783493802 +UniRef50_K6LY10 Amidohydrolase family protein 0.0409524609021 0.5 0.459047539098 +UniRef50_UPI000470129B hypothetical protein 0.0961146879677 0.500000000001 0.403885312032 +UniRef50_A3K1G7 4.38854979878 0.5 -3.88854979878 +UniRef50_P37692 ADP heptose LPS heptosyltransferase 2 3.16064729999 0.499999999997 -2.66064729999 +UniRef50_UPI00035FB32E hypothetical protein, partial 0.293443682256 0.5 0.206556317744 +UniRef50_A6M0G3 PAS PAC sensor signal transduction histidine kinase 0.0224354051545 0.5 0.477564594846 +UniRef50_Q1LFE8 Transcriptional regulator, LysR family 0.596180745521 0.5 -0.0961807455213 +UniRef50_UPI00042AF78A PREDICTED 0.639120615557 0.5 -0.139120615557 +UniRef50_R6FZX0 Helicase domain protein 0.199440970322 0.5 0.300559029678 +UniRef50_C1E796 Predicted protein 0.102254482547 0.5 0.397745517453 +UniRef50_UPI000262E85E nucleoside diphosphate sugar epimerase 0.594494229183 0.5 -0.0944942291835 +UniRef50_Q9RRK0 0.00744117889718 0.5 0.492558821103 +UniRef50_Q9RRK5 0.00120050161068 0.5 0.498799498389 +UniRef50_B2SC15 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase 0.582149026613 0.5 -0.0821490266125 +UniRef50_Q9RRK7 0.00083225152755 0.5 0.499167748473 +UniRef50_UPI0001850CC8 3 oxoacyl synthase II 0.871635264628 0.5 -0.371635264628 +UniRef50_I1QER0 3.01423786502 0.5 -2.51423786502 +UniRef50_UPI0002481C5F transposase Tn3 family protein, partial 0.00620360121999 0.499999999999 0.493796398781 +UniRef50_Q0B3Q1 Flavin containing monooxygenase FMO 0.367460139811 0.5 0.132539860189 +UniRef50_UPI00037EC779 hypothetical protein 0.0857440473893 0.5 0.414255952611 +UniRef50_G0A2X8 DoxX family protein 0.803417701975 0.5 -0.303417701975 +UniRef50_A5UN92 Multidrug efflux permease, AraJ 3.779995411 0.499999999998 -3.27999541099 +UniRef50_I6T783 Transporter trans membrane domain bacteriocin immunity protein 2.37066125681 0.5 -1.87066125681 +UniRef50_UPI000185DB7C zinc finger protein, putative 0.773395991766 0.5 -0.273395991766 +UniRef50_G7U3Z0 0.0348414185058 0.5 0.465158581494 +UniRef50_F5XMJ8 Oxygen independent coproporphyrinogen III oxidase 0.083000554871 0.5 0.416999445129 +UniRef50_P46322 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 2.05391027387 0.5 -1.55391027387 +UniRef50_UPI00030144E8 hypothetical protein 0.674657763251 0.5 -0.174657763251 +UniRef50_F0YGY7 0.111253879591 0.5 0.388746120409 +UniRef50_M4YXB8 Uracil DNA glycosylase superfamily protein 4.19697901192 0.499999999999 -3.69697901192 +UniRef50_UPI00015FB2F9 hypothetical protein 0.125553805546 0.5 0.374446194454 +UniRef50_L0FIE0 Diguanylate cyclase 1.34528260867 0.5 -0.845282608669 +UniRef50_Q8CXD9 Aminomethyltransferase 2.06439271561 0.499999999996 -1.5643927156 +UniRef50_M2TAB3 PhbF 1.10625935634 0.5 -0.606259356341 +UniRef50_D8HDV1 M23 M37 peptidase domain protein 2.03701267882 0.5 -1.53701267882 +UniRef50_P25795 Aldehyde dehydrogenase family 7 member A1 1.56945745624 0.5 -1.06945745624 +UniRef50_M4YX01 RNA binding protein 0.142726534065 0.5 0.357273465935 +UniRef50_X5HG80 Long chain fatty acid ABC transporter 0.018106606611 0.5 0.481893393389 +UniRef50_Q04IA2 Glucose 6 phosphate isomerase 0.284914200993 0.5 0.215085799007 +UniRef50_B9DNP9 Exodeoxyribonuclease 7 large subunit 1.56294630418 0.500000000001 -1.06294630418 +UniRef50_U3QR56 ABC transporter permease 1.62922313091 0.5 -1.12922313091 +UniRef50_UPI00035EC4D9 hypothetical protein, partial 0.215526013105 0.5 0.284473986895 +UniRef50_E6UXA3 Phosphate transporter 0.0537495485888 0.5 0.446250451411 +UniRef50_Q3JJ67 0.195065876557 0.5 0.304934123443 +UniRef50_P44640 0.353002169144 0.5 0.146997830856 +UniRef50_W5X6D8 Membrane fusion protein 0.115617194937 0.5 0.384382805063 +UniRef50_Q67NU0 Cytidylate kinase 0.0796995554598 0.5 0.42030044454 +UniRef50_Q3JUL3 3.74776895061 0.500000000002 -3.24776895061 +UniRef50_Q5HJ85 Protein EsaC 0.131029081512 0.5 0.368970918488 +UniRef50_J0NSU5 0.0016353648293 0.5 0.49836463517 +UniRef50_UPI00038115B9 hypothetical protein 0.470648288767 0.5 0.0293517112331 +UniRef50_G0AJ20 Glycosyltransferase 1.33274181592 0.5 -0.832741815915 +UniRef50_A3CLG7 Hydrolase, HAD superfamily, putative 0.768320836269 0.5 -0.268320836269 +UniRef50_N6V947 9.76050892085 0.5 -9.26050892085 +UniRef50_A6LTV8 0.0539186503553 0.5 0.446081349644 +UniRef50_UPI00038028F6 hypothetical protein 0.158032698112 0.5 0.341967301888 +UniRef50_T0U2I3 1.07457209232 0.5 -0.57457209232 +UniRef50_I4CVC3 0.62943660877 0.5 -0.12943660877 +UniRef50_B9KU56 Xanthine oxidase 4.19395308405 0.499999999993 -3.69395308404 +UniRef50_P0A4H7 Transcriptional regulatory protein CiaR 0.857607924298 0.5 -0.357607924298 +UniRef50_G2TKZ3 NUDIX hydrolase 1.07553434186 0.5 -0.575534341859 +UniRef50_I0EMS0 Bifunctional cytochrome c biogenesis protein 0.0262023993862 0.5 0.473797600613 +UniRef50_A6LTV7 0.105917486992 0.5 0.394082513008 +UniRef50_I6SU15 2.35764133177 0.5 -1.85764133177 +UniRef50_UPI0001BF70A9 hypothetical protein SMAC_07598 0.497308902145 0.5 0.00269109785538 +UniRef50_B9E4Q8 0.433409073701 0.5 0.0665909262992 +UniRef50_M4RAV2 Phosphoglycerate mutase related protein 0.132554463338 0.5 0.367445536661 +UniRef50_UPI0003B511AF histidine kinase 0.00146602443241 0.5 0.498533975568 +UniRef50_B4U2B4 Septation ring formation regulator EzrA 0.791239413945 0.5 -0.291239413945 +UniRef50_L0F3J6 Phosphoenolpyruvate synthase pyruvate phosphate dikinase 0.310145413576 0.5 0.189854586424 +UniRef50_V5BIM4 0.557579174301 0.5 -0.0575791743009 +UniRef50_UPI0002556319 pseudouridine synthase 1.79813406671 0.5 -1.29813406671 +UniRef50_B7RP52 0.933383971139 0.5 -0.433383971139 +UniRef50_UPI0003B48412 thiamine biosynthesis protein ThiF 0.453398367579 0.5 0.0466016324211 +UniRef50_UPI0003AD5F31 hypothetical protein 0.88300317438 0.5 -0.38300317438 +UniRef50_T2E0C1 0.593710928183 0.5 -0.0937109281829 +UniRef50_B8FZA5 Peptidyl tRNA hydrolase 0.476474432747 0.5 0.0235255672527 +UniRef50_UPI0004219762 hypothetical protein 0.286940365379 0.5 0.213059634621 +UniRef50_E1Q396 Thioredoxin reductase 0.0223912702411 0.5 0.477608729759 +UniRef50_UPI00035FB5C7 hypothetical protein 0.159953420111 0.5 0.340046579889 +UniRef50_A1UAG5 Phosphatidylserine decarboxylase proenzyme 0.5554130631 0.5 -0.0554130630995 +UniRef50_I2SYF8 Cation efflux system protein CusA 2.23923574477 0.499999999998 -1.73923574476 +UniRef50_UPI000371FCD3 hypothetical protein 3.201026769 0.499999999999 -2.701026769 +UniRef50_U5MS66 Glycerol 1 phosphate dehydrogenase 0.0302658855414 0.5 0.469734114458 +UniRef50_UPI0003B530FD peptidase M22 0.439728232923 0.5 0.0602717670768 +UniRef50_J5IRB2 0.218284271793 0.5 0.281715728207 +UniRef50_F7QFG7 Glycolate dehydrogenase 0.485356513458 0.5 0.0146434865423 +UniRef50_R9SLR7 1.31046325573 0.5 -0.810463255727 +UniRef50_P32143 Sulfofructose kinase 2.08660590297 0.5 -1.58660590297 +UniRef50_D1DJP5 Phage repressor protein 0.0679728841384 0.5 0.432027115862 +UniRef50_S2W2I7 0.189575705134 0.5 0.310424294865 +UniRef50_UPI0003C15FB0 PREDICTED 0.141889679731 0.5 0.358110320269 +UniRef50_C5QVZ6 2.0033498192 0.5 -1.5033498192 +UniRef50_UPI00037F1AC8 nucleoside triphosphate diphosphatase 0.207560800287 0.500000000001 0.292439199712 +UniRef50_UPI0002ED2583 hypothetical protein 0.930502776277 0.5 -0.430502776277 +UniRef50_U5NRT4 2.33986681864 0.5 -1.83986681864 +UniRef50_A4VM51 Nitrate binding protein NasS 0.682364126273 0.5 -0.182364126273 +UniRef50_UPI0002000C91 iron ABC transporter, partial 0.184291896487 0.5 0.315708103513 +UniRef50_M9SAW1 1.61308230812 0.5 -1.11308230812 +UniRef50_C5ZXL6 Hydrogenase expression formation protein HypE 0.0447587446434 0.5 0.455241255357 +UniRef50_UPI0003B79B45 branched chain amino acid aminotransferase 5.04863672991 0.500000000004 -4.54863672991 +UniRef50_A6TG52 D ribose pyranase 0.0446537855342 0.5 0.455346214466 +UniRef50_B1TES8 0.310701480522 0.5 0.189298519478 +UniRef50_P76222 0.294662145654 0.5 0.205337854346 +UniRef50_UPI000462ED7D hypothetical protein 0.65217291662 0.5 -0.15217291662 +UniRef50_J2YES6 Outer membrane protein, OMP85 family 0.198581002063 0.5 0.301418997937 +UniRef50_A1WN39 Mg chelatase, subunit ChlI 0.111500501733 0.5 0.388499498267 +UniRef50_K4NKR5 0.0138000215435 0.5 0.486199978457 +UniRef50_P39370 Probable 9 O acetyl N acetylneuraminic acid deacetylase 1.63350960677 0.500000000001 -1.13350960677 +UniRef50_UPI000255E8AD membrane protein 0.657620763255 0.5 -0.157620763255 +UniRef50_Q81II2 Arginine regulator 0.0185109921106 0.5 0.481489007889 +UniRef50_W1W6K4 2.21194491658 0.500000000001 -1.71194491659 +UniRef50_M8EPJ5 0.0811121501227 0.5 0.418887849877 +UniRef50_Q74KF8 Phosphate import ATP binding protein PstB 2 0.0822533143533 0.5 0.417746685647 +UniRef50_A3CQK2 0.801765349081 0.5 -0.301765349081 +UniRef50_UPI0003F5C642 hypothetical protein 0.75470587627 0.5 -0.25470587627 +UniRef50_Q2RK39 Orotidine 5 phosphate decarboxylase 0.737436992298 0.5 -0.237436992298 +UniRef50_A1B425 3.27459466851 0.499999999998 -2.77459466851 +UniRef50_UPI0004685071 MerR family transcriptional regulator 0.148321606487 0.5 0.351678393513 +UniRef50_W5X8A1 0.185863039298 0.5 0.314136960703 +UniRef50_UPI000313CECC hypothetical protein 0.798235715927 0.5 -0.298235715927 +UniRef50_Q06067 Signal transduction histidine protein kinase AtoS 1.07390827164 0.5 -0.573908271641 +UniRef50_I6TW33 TetR AcrR family transcriptional regulator 0.9013258789 0.5 -0.4013258789 +UniRef50_G7M6N7 GTP binding protein HSR1 related protein 0.158995336969 0.499999999999 0.341004663031 +UniRef50_F0Y8S9 0.230779653977 0.5 0.269220346023 +UniRef50_M9RGW8 23S rRNA [guanosine 2 O ] methyltransferase RlmB 1.4228028538 0.5 -0.922802853798 +UniRef50_G7M469 Drug resistance transporter, EmrB QacA subfamily 0.881203253537 0.5 -0.381203253537 +UniRef50_A4YX93 L fuculose 1 phosphate aldolase 2.08372897009 0.500000000002 -1.58372897009 +UniRef50_F8GTL5 0.290778624861 0.5 0.209221375139 +UniRef50_UPI0003C177A0 PREDICTED 0.177774831604 0.5 0.322225168396 +UniRef50_C0P4G8 1.90829259979 0.5 -1.40829259979 +UniRef50_U9LDC5 0.163366782882 0.5 0.336633217118 +UniRef50_B5WFL3 2.69235722748 0.5 -2.19235722748 +UniRef50_Q8PMG5 Phospholipase 0.0188059101481 0.5 0.481194089852 +UniRef50_V6F503 Transposase 0.58109499203 0.5 -0.0810949920304 +UniRef50_Q2IIK2 3.09613535307 0.500000000001 -2.59613535307 +UniRef50_L7BUG1 GTP binding protein TypA, BipA 0.338916779702 0.5 0.161083220298 +UniRef50_O67550 5 3 exonuclease 0.0758259054651 0.500000000001 0.424174094534 +UniRef50_B7M371 Flagellar protein FliT 0.344861752136 0.5 0.155138247864 +UniRef50_D5X8K2 NADH quinone oxidoreductase subunit I 0.289601528953 0.5 0.210398471047 +UniRef50_Q664W4 Isocitrate dehydrogenase kinase phosphatase 1.22967061865 0.5 -0.729670618651 +UniRef50_F4D3L6 0.0102925527179 0.5 0.489707447282 +UniRef50_V8GXC4 Protein pucC 2.43070771752 0.5 -1.93070771752 +UniRef50_T2A3K0 MafB family adhesin protein 0.0775561422713 0.5 0.422443857729 +UniRef50_L7LVI6 Putative mucin 5ac 2.2657400165 0.499999999998 -1.7657400165 +UniRef50_G2JRU4 Phosphoglycerate mutase 1.69137972212 0.5 -1.19137972212 +UniRef50_UPI000465BD7B hypothetical protein 0.605085676187 0.5 -0.105085676187 +UniRef50_Q5LXZ9 Argininosuccinate lyase 0.558896917447 0.5 -0.0588969174471 +UniRef50_Q6F9Z8 Malate synthase G 0.00800136406714 0.5 0.491998635933 +UniRef50_B8ENG4 Leucyl aminopeptidase 1.66723299969 0.5 -1.16723299969 +UniRef50_N6V8H7 0.101885619069 0.5 0.398114380931 +UniRef50_R5F4E6 0.307267658573 0.5 0.192732341427 +UniRef50_V5C579 Non hemolytic phospholipase C 0.329412056694 0.5 0.170587943306 +UniRef50_UPI00036632DA hypothetical protein 1.20393774047 0.5 -0.703937740473 +UniRef50_A0A010PG87 Ribonuclease E 0.0181321801011 0.5 0.481867819899 +UniRef50_D6A365 Predicted protein 0.318912112468 0.5 0.181087887532 +UniRef50_UPI00037534FD resolvase 0.83979858542 0.5 -0.33979858542 +UniRef50_A5USR7 DNA directed RNA polymerase subunit beta 1.41183186254 0.5 -0.911831862538 +UniRef50_UPI00035ECFEE hypothetical protein 0.00853849344239 0.5 0.491461506558 +UniRef50_F3P5V2 Rhamnan synthesis protein F 0.388546524287 0.5 0.111453475713 +UniRef50_J9NVA3 0.548415917396 0.5 -0.0484159173963 +UniRef50_E6K098 ABC transporter, substrate binding protein, QAT family 2.31045322578 0.5 -1.81045322578 +UniRef50_F2HK99 Branched chain amino acid 2.14508822088 0.499999999999 -1.64508822088 +UniRef50_UPI00047B7ECA peroxiredoxin 0.0248664340847 0.5 0.475133565915 +UniRef50_UPI000463E58D adenylyltransferase, partial 0.803353587405 0.5 -0.303353587405 +UniRef50_UPI0003B6A60F hypothetical protein 5.67758820175 0.500000000007 -5.17758820175 +UniRef50_D9R3W0 PTS system, lactose cellobiose family IIC subunit 0.122228473626 0.5 0.377771526374 +UniRef50_A4X0D6 SH3, type 3 domain protein 1.45935805583 0.5 -0.959358055827 +UniRef50_Z3GHL3 0.407843374969 0.5 0.092156625031 +UniRef50_Q02EP8 tRNA sulfurtransferase 3.4020662744 0.5 -2.9020662744 +UniRef50_R0E2F9 0.170098535251 0.5 0.32990146475 +UniRef50_UPI000467973F hypothetical protein 0.607529457277 0.5 -0.107529457277 +UniRef50_UPI0004255353 hypothetical protein 0.560301808136 0.5 -0.0603018081359 +UniRef50_UPI0003B4F400 iron ABC transporter ATP binding protein 0.529028594261 0.5 -0.0290285942615 +UniRef50_R5JER5 RelA SpoT domain protein 3.02231851783 0.5 -2.52231851783 +UniRef50_Q8DSQ9 Tyrosine recombinase XerD like 1.75964307611 0.5 -1.25964307611 +UniRef50_Q46339 Formyltetrahydrofolate deformylase 3.91117238394 0.5 -3.41117238394 +UniRef50_UPI0003B771E7 MULTISPECIES 1.14259126011 0.5 -0.642591260108 +UniRef50_Q47702 3.43301647392 0.5 -2.93301647392 +UniRef50_X7F5H4 0.635291470496 0.5 -0.135291470496 +UniRef50_P0ABV0 Protein TolQ 0.203060568826 0.5 0.296939431174 +UniRef50_UPI00047C65E6 hypothetical protein 4.55090474001 0.5 -4.05090474001 +UniRef50_A6LWR5 Phage integrase family protein 0.0506523086683 0.499999999999 0.449347691332 +UniRef50_Q3IV24 0.391981152223 0.5 0.108018847777 +UniRef50_UPI0003B5337E PREDICTED 1.36993924221 0.5 -0.869939242212 +UniRef50_UPI00046923C9 hypothetical protein 3.1845752503 0.5 -2.6845752503 +UniRef50_S2VZ33 0.145259882614 0.5 0.354740117386 +UniRef50_B4RKT2 0.0522501428161 0.5 0.447749857184 +UniRef50_A5ULP1 Predicted O linked GlcNAc transferase 1.9346679753 0.499999999999 -1.4346679753 +UniRef50_C4ZJC7 NADH ubiquinone oxidoreductase chain 4L 0.415678056641 0.5 0.0843219433593 +UniRef50_B1GYY9 Bifunctional protein PyrR 0.068994315832 0.5 0.431005684168 +UniRef50_D4HDS2 Alpha 1,4 glucan 0.0204718561812 0.5 0.479528143819 +UniRef50_B7GF12 Ferrochelatase 1.03026983835 0.5 -0.530269838351 +UniRef50_A3NIS0 Proline specific permease 1.34480661425 0.5 -0.844806614248 +UniRef50_A5UMI6 Multimeric flavodoxin 4.38716060661 0.499999999999 -3.88716060661 +UniRef50_P0AGN1 Xanthine permease XanP 4.13417319511 0.499999999999 -3.63417319511 +UniRef50_Q05069 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.0347431344415 0.5 0.465256865558 +UniRef50_UPI0002627F1B glycerol 3 phosphate ABC transporter ATP binding protein 1.56480103248 0.5 -1.06480103248 +UniRef50_B6AV02 0.574759535757 0.5 -0.0747595357574 +UniRef50_UPI000364DCAC hypothetical protein, partial 3.34058419655 0.499999999998 -2.84058419654 +UniRef50_A1UTL7 1.26957269195 0.5 -0.769572691954 +UniRef50_M9S1E1 Transcriptional regulator 1.10998636009 0.5 -0.60998636009 +UniRef50_UPI0003ADE5F5 PREDICTED 0.179662223078 0.5 0.320337776922 +UniRef50_A5UJE0 DNA helicase 0.865250165255 0.5 -0.365250165255 +UniRef50_Q9X9H7 0.319560307807 0.5 0.180439692193 +UniRef50_A0A037XIK8 5.32134334391 0.500000000002 -4.82134334392 +UniRef50_Q9RSR1 Polyribonucleotide nucleotidyltransferase 0.00267867622157 0.5 0.497321323778 +UniRef50_A6M132 Abortive infection protein 0.0776606079465 0.499999999999 0.422339392054 +UniRef50_UPI0002558D3C LysR 0.753519487213 0.5 -0.253519487213 +UniRef50_UPI0003B5E137 glycine betaine ABC transporter ATP binding protein 5.05120362116 0.500000000002 -4.55120362116 +UniRef50_C6D465 1.07814801439 0.5 -0.578148014394 +UniRef50_C5BDM9 DNA mismatch repair protein MutL 0.50508285291 0.5 -0.00508285291037 +UniRef50_W7BGX2 Transposase IS3 IS911 family protein 1.76196908439 0.5 -1.26196908439 +UniRef50_Q0VLT2 Transcriptional regulator, TetR family 0.64680235379 0.5 -0.14680235379 +UniRef50_K3ZVN5 0.262878403201 0.5 0.237121596799 +UniRef50_A0A031GP16 5.2109397151 0.500000000006 -4.71093971511 +UniRef50_UPI00046D89CC hypothetical protein 0.28032831819 0.5 0.21967168181 +UniRef50_G8V9S2 Protease 0.0255998451425 0.5 0.474400154858 +UniRef50_A1V469 Sulfate thiosulfate ABC transporter, permease protein CysW 0.479193756741 0.5 0.0208062432593 +UniRef50_A0A024C0E9 LPS biosynthesis protein 0.032931033043 0.5 0.467068966957 +UniRef50_U5MSD8 0.0955818612466 0.499999999999 0.404418138754 +UniRef50_UPI0003B32410 chromosomal replication initiation protein 0.279563385834 0.5 0.220436614166 +UniRef50_M7MCD8 Oxidoreductase, NAD binding domain protein 0.806788115001 0.5 -0.306788115001 +UniRef50_D8FRN8 Putative ATPase 0.38440542575 0.5 0.11559457425 +UniRef50_UPI0003B386D0 hypothetical protein 0.0484068592227 0.5 0.451593140777 +UniRef50_J9NYR7 0.678314585875 0.5 -0.178314585875 +UniRef50_D7GEU1 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.0470455961865 0.5 0.452954403813 +UniRef50_Q8FE39 0.881687824889 0.5 -0.381687824889 +UniRef50_V9T419 Glycosyl transferase family 1 0.650385664639 0.5 -0.150385664639 +UniRef50_G2JD62 Ferric acinetobactin transport system ATP binding protein 0.0201748309853 0.5 0.479825169015 +UniRef50_UPI0004723CF7 succinate dehydrogenase 0.561937437214 0.5 -0.0619374372144 +UniRef50_UPI00046F8708 hypothetical protein, partial 0.378622518171 0.5 0.121377481829 +UniRef50_UPI0003822266 MULTISPECIES 0.0665154504411 0.5 0.433484549559 +UniRef50_P0AES0 Bifunctional glutathionylspermidine synthetase amidase 3.24970777054 0.5 -2.74970777054 +UniRef50_F4DAR6 ABC type oligopeptide transport system,, ATPase component 0.0732720484149 0.5 0.426727951585 +UniRef50_UPI00035D1F28 geranylgeranyl pyrophosphate synthase 0.12269087282 0.5 0.37730912718 +UniRef50_B6W8Z1 PTS system mannitol specific EIICBA component family protein 0.219435280969 0.5 0.280564719031 +UniRef50_P32720 D allose transport system permease protein AlsC 10.6306535511 0.500000000005 -10.1306535511 +UniRef50_UPI0003816203 hypothetical protein 0.0365720802057 0.500000000001 0.463427919794 +UniRef50_P80907 Ketoisovalerate oxidoreductase subunit VorA 4.21643411888 0.500000000002 -3.71643411888 +UniRef50_Q53046 Pyruvate flavodoxin oxidoreductase 1.18593020666 0.5 -0.685930206663 +UniRef50_L0GRI3 3 carboxymuconate cyclase 0.0767478531323 0.5 0.423252146868 +UniRef50_A6VA52 0.514032641613 0.5 -0.0140326416125 +UniRef50_C5N145 Cation diffusion facilitator family transporter 1.16691614095 0.5 -0.666916140946 +UniRef50_K1GVU9 0.514553887438 0.5 -0.0145538874378 +UniRef50_Q5KWI6 Non canonical purine NTP pyrophosphatase 0.676518530142 0.5 -0.176518530142 +UniRef50_D3DZD8 Anaerobic ribonucleoside triphosphate reductase NrdD 0.80694440958 0.5 -0.30694440958 +UniRef50_B6JN53 Polyribonucleotide nucleotidyltransferase 0.00782763487741 0.5 0.492172365122 +UniRef50_E1Q5C2 VirB8 type IV secretion protein 0.0190074192763 0.5 0.480992580724 +UniRef50_P52022 DNA polymerase III subunit alpha 1.87693601949 0.5 -1.37693601949 +UniRef50_Q27713 Bifunctional dihydrofolate reductase thymidylate synthase 0.309618390211 0.5 0.190381609789 +UniRef50_Q7WP11 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.0328678375126 0.5 0.467132162488 +UniRef50_F0RPA5 Chlorite dismutase 0.000469851121533 0.5 0.499530148878 +UniRef50_Q168Q1 Integral membrane protein, putative 0.997102262549 0.5 -0.497102262549 +UniRef50_C6SLW0 Transposase for insertion sequence element IS1106 0.0544248886959 0.5 0.445575111304 +UniRef50_A0LHK5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.156504809312 0.5 0.343495190688 +UniRef50_P02976 Immunoglobulin G binding protein A 3.52482175377 0.500000000001 -3.02482175377 +UniRef50_UPI0002896994 LuxR family transcriptional regulator 0.819995086374 0.5 -0.319995086374 +UniRef50_G7M646 Nitroreductase 0.111538073145 0.5 0.388461926855 +UniRef50_UPI0003B4D6A8 hypothetical protein 0.0901759060938 0.500000000001 0.409824093906 +UniRef50_F3FWR5 Potassium transporting ATPase subunit B 0.00403612767557 0.5 0.495963872325 +UniRef50_G2Y3Z8 0.00648863023626 0.5 0.493511369763 +UniRef50_UPI00035116CC PREDICTED 0.0462603417555 0.5 0.453739658245 +UniRef50_UPI0003C1260B PREDICTED 0.188784560185 0.5 0.311215439815 +UniRef50_Q2S1Q5 DNA directed RNA polymerase subunit beta 0.632169591808 0.5 -0.132169591808 +UniRef50_UPI00036CDFBA hypothetical protein 0.464355767675 0.5 0.0356442323252 +UniRef50_B5Y9Z4 8 amino 7 oxononanoate synthase 0.433191402063 0.5 0.0668085979374 +UniRef50_A6LZ45 Histidine kinase internal region 0.0232801921571 0.500000000001 0.476719807842 +UniRef50_Q6FEP2 Phosphate acetyltransferase 0.000178393243772 0.5 0.499821606756 +UniRef50_P37902 Glutamate aspartate periplasmic binding protein 1.29722874301 0.499999999999 -0.797228743008 +UniRef50_UPI00039CF033 preprotein translocase subunit SecD 0.322082715854 0.5 0.177917284146 +UniRef50_Q99MR8 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 0.204068175257 0.5 0.295931824743 +UniRef50_UPI000393D46E PREDICTED 1.78482992259 0.5 -1.28482992259 +UniRef50_M9VH28 Actinobacterial surface anchored protein domain protein 0.0226887958385 0.5 0.477311204161 +UniRef50_P09785 Anthranilate synthase component 1, pyocyanine specific 2.54696625295 0.5 -2.04696625295 +UniRef50_B9EAP7 ATP dependent Clp protease ATP binding subunit ClpB 0.954862279612 0.5 -0.454862279612 +UniRef50_W0V3Q1 1.79829802164 0.499999999999 -1.29829802164 +UniRef50_O83046 Pca operon regulatory protein 0.00436676261204 0.499999999999 0.495633237388 +UniRef50_U3BC68 0.341660210512 0.5 0.158339789488 +UniRef50_P0AFU4 Transcriptional regulatory protein GlrR 0.852687172104 0.5 -0.352687172104 +UniRef50_A0A011Q2M3 0.104353503239 0.5 0.395646496761 +UniRef50_A6M0L8 0.0907768748132 0.5 0.409223125187 +UniRef50_Q01269 Cyclohexadienyl dehydratase 3.30087729752 0.499999999998 -2.80087729752 +UniRef50_R5XL07 0.155663550757 0.5 0.344336449243 +UniRef50_UPI00036FF49D hypothetical protein 0.041734592424 0.5 0.458265407576 +UniRef50_UPI00046F97B3 chemotaxis protein CheD 4.52187285814 0.499999999998 -4.02187285814 +UniRef50_B7V438 0.0775870633732 0.5 0.422412936627 +UniRef50_UPI00035D66E8 hypothetical protein 1.07215070884 0.5 -0.572150708835 +UniRef50_UPI00047161E6 hypothetical protein 1.17761720994 0.5 -0.677617209939 +UniRef50_K9BU68 Molybdopterin binding domain of aldehyde dehydrogenase protein 0.104887426021 0.5 0.395112573979 +UniRef50_W5DRR2 4.62057283363 0.500000000006 -4.12057283363 +UniRef50_F8FTQ8 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 0.413545867128 0.5 0.0864541328721 +UniRef50_UPI000377D28B hypothetical protein 0.293302650973 0.5 0.206697349027 +UniRef50_P17315 Colicin I receptor 0.944051998487 0.5 -0.444051998487 +UniRef50_F0Y056 0.0373550136724 0.5 0.462644986327 +UniRef50_X0P3U7 0.0112543684657 0.500000000001 0.488745631534 +UniRef50_UPI00046FA0D1 23S rRNA pseudouridylate synthase 0.191247097453 0.5 0.308752902547 +UniRef50_UPI0003761003 hypothetical protein 0.799129104382 0.5 -0.299129104382 +UniRef50_H7D699 UvrABC system protein C 0.128725397915 0.5 0.371274602085 +UniRef50_UPI000255DA26 glycosyltransferase, partial 8.47876949517 0.500000000004 -7.97876949517 +UniRef50_Q3JHX4 0.0644322893528 0.5 0.435567710647 +UniRef50_R7D4E7 3.14764672007 0.499999999998 -2.64764672006 +UniRef50_O65989 PTS system mannitol specific EIICB component 0.298366845757 0.5 0.201633154243 +UniRef50_Q11K56 Cupin 2, conserved barrel 0.0046394464083 0.5 0.495360553592 +UniRef50_A8LRD0 3 hydroxyacyl CoA dehydrogenase NAD binding 1.71450034334 0.5 -1.21450034334 +UniRef50_J2ES16 Diguanylate cyclase domain protein 0.120928487953 0.5 0.379071512047 +UniRef50_UPI00035E59D2 hypothetical protein 1.49549483883 0.5 -0.995494838834 +UniRef50_F7ZLE6 TRAP transporter subunit DctP 9.10266313078 0.499999999997 -8.60266313078 +UniRef50_UPI000470DE86 hypothetical protein 0.185433749353 0.5 0.314566250647 +UniRef50_Q9I0K9 Adenylosuccinate lyase 0.0434904110094 0.5 0.456509588991 +UniRef50_N6RCJ7 RpiR family transcriptional regulator 0.852004021983 0.5 -0.352004021983 +UniRef50_S5XYI0 Membrane protease subunit HflK 2.28985272817 0.5 -1.78985272817 +UniRef50_C3K0N3 Acyl carrier protein 0.129693334539 0.5 0.37030666546 +UniRef50_Q56841 2 hydroxypropyl CoM dehydrogenase 0.229928890373 0.5 0.270071109627 +UniRef50_Q1JJ05 tRNA binding domain protein 0.733470265869 0.5 -0.233470265869 +UniRef50_UPI00016A8267 200 kDa antigen p200, putative 0.310638595216 0.5 0.189361404784 +UniRef50_UPI0004788EAB ABC transporter permease 0.496609512714 0.5 0.0033904872857 +UniRef50_UPI0003B710E4 cell division protein FtsE 0.100775722608 0.5 0.399224277392 +UniRef50_Q5HRH0 Putative proline betaine transporter 1.79609001255 0.5 -1.29609001255 +UniRef50_B7V1I5 S adenosylmethionine decarboxylase proenzyme 0.616761583467 0.5 -0.116761583467 +UniRef50_R5AXK8 0.188454558493 0.5 0.311545441507 +UniRef50_UPI0003B4A2CD malate 0.153479903337 0.5 0.346520096663 +UniRef50_A6LWR4 0.246930670667 0.5 0.253069329333 +UniRef50_Q117Z9 Urease subunit gamma 0.104668983263 0.5 0.395331016737 +UniRef50_C4RQ17 0.0248398190486 0.5 0.475160180951 +UniRef50_A5UNG0 Adhesin like protein 3.19144345227 0.499999999994 -2.69144345226 +UniRef50_Q8R7X4 Adenylate kinase 0.552104663926 0.5 -0.0521046639261 +UniRef50_P64431 0.877418017873 0.5 -0.377418017873 +UniRef50_Q1JUP4 Alpha ketoglutaric semialdehyde dehydrogenase 0.00892441759105 0.499999999999 0.491075582409 +UniRef50_S4MLD0 0.396077054735 0.5 0.103922945265 +UniRef50_Q5HR73 Transcriptional regulator, AraC family 1.21366928819 0.5 -0.713669288187 +UniRef50_UPI0004213A8C peptidase A8 0.271356544055 0.5 0.228643455945 +UniRef50_A5D374 3 dehydroquinate synthase 0.434707314844 0.5 0.0652926851556 +UniRef50_R7FWE0 10.2113637674 0.499999999993 -9.71136376744 +UniRef50_UPI00046C2C33 PREDICTED 0.115860704629 0.5 0.384139295371 +UniRef50_C1MJW7 Predicted protein 0.914894134119 0.5 -0.414894134119 +UniRef50_J2ERM5 Lipid A biosynthesis lauroyl acyltransferase, putative 0.306732069545 0.5 0.193267930455 +UniRef50_R9SHL8 NIF3 family protein HcgD 1.3618565328 0.5 -0.861856532799 +UniRef50_G7LXR2 ABC type transporter, periplasmic subunit 0.165928417611 0.5 0.334071582389 +UniRef50_UPI00046EDA0B hypothetical protein 0.0652925842525 0.500000000001 0.434707415747 +UniRef50_U6A8G4 0.245161428006 0.5 0.254838571994 +UniRef50_UPI00047EFD61 16S rRNA methyltransferase 0.0946075596392 0.5 0.405392440361 +UniRef50_A3PH04 Peptidoglycan binding domain 1 protein 1.55372838668 0.5 -1.05372838668 +UniRef50_D9SWT0 Glycoside hydrolase family 25 0.955499771666 0.5 -0.455499771666 +UniRef50_G8VBC9 Adhesion protein associated protein 0.00897653283131 0.500000000001 0.491023467168 +UniRef50_Q0STL9 UPF0313 protein CPR_1216 0.0784972971112 0.5 0.421502702889 +UniRef50_UPI0003ADD74A PREDICTED 0.0538045574682 0.5 0.446195442532 +UniRef50_G7M2T3 Polypeptide transport associated domain protein FtsQ type 0.124443597802 0.5 0.375556402198 +UniRef50_J7M2N5 Dipeptide binding protein 6.20540492061 0.500000000009 -5.70540492062 +UniRef50_F7Y2V0 1.58412726707 0.5 -1.08412726707 +UniRef50_U4TGN7 Flagellar hook capping domain protein 0.36271930182 0.5 0.13728069818 +UniRef50_Q9CJ30 Deoxyuridine 5 triphosphate nucleotidohydrolase 0.230577416081 0.5 0.269422583919 +UniRef50_UPI00037A20A6 hypothetical protein 2.29369148622 0.5 -1.79369148622 +UniRef50_A9WSA8 Carbamoyl phosphate synthase large chain 0.695524186711 0.5 -0.195524186711 +UniRef50_A1WY04 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.628784714353 0.5 -0.128784714353 +UniRef50_E2CNB5 1.49161463005 0.5 -0.991614630048 +UniRef50_UPI0003B6AB3A aspartyl glutamyl tRNA amidotransferase subunit B 0.695514725561 0.5 -0.195514725561 +UniRef50_UPI00037A3B64 primase 0.0893834668045 0.5 0.410616533195 +UniRef50_E7AA86 Iron sulfur cluster binding protein 0.10626193631 0.5 0.39373806369 +UniRef50_K7ABS1 Outer membrane porin 1.10281111962 0.5 -0.602811119617 +UniRef50_Q5HJP2 Diacetyl reductase [ acetoin forming] 1.74691936759 0.5 -1.24691936759 +UniRef50_B7UPF3 Endonuclease V 1.73913188672 0.5 -1.23913188672 +UniRef50_UPI0003773FBD hypothetical protein 0.168325223421 0.5 0.331674776579 +UniRef50_Q3K0J6 Hydroxymethylglutaryl CoA synthase 0.891012965502 0.5 -0.391012965502 +UniRef50_J0QZG9 1.67829396599 0.500000000002 -1.178293966 +UniRef50_UPI0003F49121 hypothetical protein TREMEDRAFT_73008 0.156202203673 0.5 0.343797796327 +UniRef50_Q6F9W5 0.015896605033 0.5 0.484103394967 +UniRef50_P23917 Fructokinase 1.82283708389 0.5 -1.32283708389 +UniRef50_Q8R6A7 Phosphoglucosamine mutase 0.0981393185747 0.5 0.401860681426 +UniRef50_A6VA35 Chain length determinant protein 1.42942608737 0.5 -0.92942608737 +UniRef50_Q9RW71 Acetyltransferase, putative 0.00316754834447 0.5 0.496832451655 +UniRef50_Q57048 3.41985963502 0.5 -2.91985963502 +UniRef50_Q2FD92 RND family drug transporter 0.0287111245412 0.5 0.471288875459 +UniRef50_R0NCH4 0.472060625132 0.5 0.0279393748681 +UniRef50_Q6SJ08 Conjugal transfer mating pair stabilization protein 1.22778679339 0.5 -0.727786793393 +UniRef50_UPI000362B2C8 hypothetical protein 0.00359120438359 0.5 0.496408795616 +UniRef50_UPI0001B41070 amino acid ABC transporter, ATP binding protein 1.06998852381 0.5 -0.569988523806 +UniRef50_X5KFC2 2.02698441046 0.5 -1.52698441046 +UniRef50_R5SPQ8 Chaperone protein DnaK 1 1.3276415307 0.5 -0.827641530697 +UniRef50_S4P442 Electron transfer flavoprotein ubiquinone oxidoreductase 0.882022907065 0.5 -0.382022907065 +UniRef50_A8LI45 1.91063929876 0.499999999998 -1.41063929875 +UniRef50_B0UAY7 Extracellular solute binding protein family 1 1.06215559444 0.5 -0.562155594443 +UniRef50_F0YKH0 0.433220177096 0.5 0.066779822904 +UniRef50_Q9APM5 Taurine pyruvate aminotransferase 2.58872454108 0.5 -2.08872454108 +UniRef50_G7T9W9 Sulfate transporter 0.317401116524 0.5 0.182598883476 +UniRef50_UPI00037F5A09 hypothetical protein 0.787493195697 0.5 -0.287493195697 +UniRef50_B9KRK1 0.611143928716 0.5 -0.111143928716 +UniRef50_Q9WZG8 Ribosomal RNA small subunit methyltransferase I 0.322328278779 0.5 0.177671721221 +UniRef50_UPI00028822B1 hydrolase 1.76098225176 0.499999999999 -1.26098225176 +UniRef50_F5M323 Membrane bound O acyl transferase, MBOAT family protein 3.32341331227 0.5 -2.82341331227 +UniRef50_P17994 1.03862693567 0.5 -0.538626935669 +UniRef50_P28812 1.79054391847 0.5 -1.29054391847 +UniRef50_C5Q6U5 0.761510459068 0.5 -0.261510459068 +UniRef50_UPI00036A99F9 hypothetical protein 0.376045116122 0.5 0.123954883878 +UniRef50_Q9ZHY3 P protein 0.0017477336403 0.5 0.49825226636 +UniRef50_P39172 High affinity zinc uptake system protein ZnuA 1.0283065712 0.5 -0.528306571199 +UniRef50_M9VFY7 Penicillin binding protein, transpeptidase domain protein 0.00566454874185 0.5 0.494335451258 +UniRef50_A5UNT4 3.0172776729 0.5 -2.5172776729 +UniRef50_D5QG08 Phosphoribosylformylglycinamidine synthase, purS 1.68725976358 0.5 -1.18725976358 +UniRef50_UPI00046DCA03 PilS cassette, partial 0.249046521749 0.5 0.250953478251 +UniRef50_G5ZXS6 UPF0301 protein HIMB100_00008270 0.33917026121 0.5 0.16082973879 +UniRef50_UPI0003654549 hypothetical protein 1.43279158756 0.5 -0.93279158756 +UniRef50_F0KGG0 0.00255398175888 0.5 0.497446018241 +UniRef50_O66534 Riboflavin biosynthesis protein RibD 0.026741059508 0.499999999999 0.473258940493 +UniRef50_P0AEC9 Sensor histidine kinase DcuS 3.09667703706 0.499999999999 -2.59667703706 +UniRef50_Q58633 0.89164602758 0.5 -0.39164602758 +UniRef50_P55717 Probable ATP synthase y4yI 1.84080769055 0.5 -1.34080769055 +UniRef50_UPI00036C881F hypothetical protein 0.0657627356871 0.5 0.434237264313 +UniRef50_Q1MM06 Glucose 6 phosphate isomerase 0.877584804121 0.5 -0.377584804121 +UniRef50_Q5LXV7 Late competence protein, ABC transporter subunit 3.56991850103 0.500000000001 -3.06991850103 +UniRef50_Q58639 0.899858217404 0.5 -0.399858217404 +UniRef50_F7XUY9 Putative polyhydroxyalkanoate synthesis repressor PhaR 0.371647958257 0.5 0.128352041743 +UniRef50_Q5HKM3 Immunodominant antigen B, putative 0.82014535084 0.5 -0.32014535084 +UniRef50_B4U552 Zinc binding lipoprotein LraI, laminin binding protein 0.0168014289511 0.5 0.483198571049 +UniRef50_B9E943 2.45306102197 0.499999999999 -1.95306102197 +UniRef50_F5XY47 Xanthine and CO dehydrogenases maturation factor like protein 0.151311298466 0.5 0.348688701534 +UniRef50_Q49X88 DNA mismatch repair protein MutS 2.60159019043 0.500000000002 -2.10159019043 +UniRef50_A0A022L535 0.145036146877 0.500000000001 0.354963853122 +UniRef50_Q097G2 2.12158981505 0.499999999999 -1.62158981505 +UniRef50_C9LYM2 ATP dependent protease, Lon family 0.12506500997 0.5 0.37493499003 +UniRef50_T4JEK7 N 6 DNA Methylase family protein 0.133934840924 0.5 0.366065159076 +UniRef50_Q7VM29 GTPase Der 2.37359441642 0.499999999999 -1.87359441642 +UniRef50_Q4EKV3 0.324817497103 0.5 0.175182502897 +UniRef50_R6C033 Thiazole biosynthesis protein ThiH 0.284503322762 0.5 0.215496677238 +UniRef50_A6T533 UPF0255 protein KPN78578_02430 2.15427332774 0.5 -1.65427332774 +UniRef50_UPI000219720B hypothetical protein 0.77535364967 0.5 -0.27535364967 +UniRef50_C4RDJ1 9.49704567962 0.499999999996 -8.99704567962 +UniRef50_UPI00046600C4 branched chain amino acid ABC transporter ATPase 1.1021543818 0.5 -0.6021543818 +UniRef50_UPI0002BA38E1 hypothetical protein, partial 0.0409096179977 0.5 0.459090382002 +UniRef50_P37751 Putative glycosyltransferase WbbK 0.487323025679 0.5 0.0126769743213 +UniRef50_UPI0003605B6F hypothetical protein 0.0285855373237 0.500000000001 0.471414462676 +UniRef50_A5WHU9 0.0195421472834 0.5 0.480457852717 +UniRef50_C5N5T1 SagB type dehydrogenase domain protein 2.61300601988 0.5 -2.11300601988 +UniRef50_B0SHK4 Argininosuccinate lyase 0.755833781422 0.5 -0.255833781422 +UniRef50_D8JF32 Lon protease C terminal proteolytic domain protein 0.00553508896535 0.5 0.494464911035 +UniRef50_UPI0002626C4E Tagatose bisphosphate aldolase 0.841849711318 0.5 -0.341849711318 +UniRef50_UPI0000164C98 putative transposase, partial 0.0019762173935 0.5 0.498023782607 +UniRef50_B2IIK5 tRNA 2 methylthio N dimethylallyladenosine synthase 4.13059242917 0.500000000002 -3.63059242917 +UniRef50_UPI000360793E hypothetical protein 0.372852973354 0.5 0.127147026646 +UniRef50_UPI0002FF7139 hypothetical protein 0.385369457397 0.5 0.114630542603 +UniRef50_E4R7C5 2 dehydropantoate 2 reductase 3.42197041321 0.500000000007 -2.92197041322 +UniRef50_Q9Z4J7 Quinoprotein ethanol dehydrogenase 0.80078172855 0.5 -0.30078172855 +UniRef50_X6FMB7 Chromosome partitioning protein ParA 1.23447842834 0.5 -0.73447842834 +UniRef50_UPI00039DA7C1 amino acid carrier protein 0.00491130587169 0.500000000001 0.495088694127 +UniRef50_P92514 Cytochrome c oxidase subunit 3 2.41294722579 0.499999999997 -1.91294722578 +UniRef50_A0A014M9H7 Delta 1 pyrroline 5 carboxylate dehydrogenase 0.00791531779276 0.5 0.492084682207 +UniRef50_G0LQ70 3.34419436278 0.499999999995 -2.84419436278 +UniRef50_A0A057ZZ67 Oxidoreductase 0.0136561107409 0.5 0.486343889259 +UniRef50_Q59102 Ribulose bisphosphate carboxylase small chain, plasmid 4.23037030485 0.5 -3.73037030485 +UniRef50_X8CBL8 0.0630186453875 0.5 0.436981354613 +UniRef50_Q8Q0F9 Macro domain containing protein MM_0177 0.069775252494 0.5 0.430224747506 +UniRef50_UPI0003C1AFD0 PREDICTED 0.361596349703 0.5 0.138403650297 +UniRef50_A0A023WMU7 Diguanylate cyclase 0.138261018761 0.5 0.361738981239 +UniRef50_Q1GFH6 Ppx GppA phosphatase 0.361492054996 0.5 0.138507945004 +UniRef50_A6V2C1 0.361275782521 0.5 0.138724217479 +UniRef50_P23847 Periplasmic dipeptide transport protein 2.11344226237 0.500000000002 -1.61344226237 +UniRef50_Q6FEQ6 Non canonical purine NTP pyrophosphatase 0.176725567555 0.5 0.323274432445 +UniRef50_Q8DSP3 5.34791430101 0.499999999997 -4.84791430101 +UniRef50_S6D6U3 59.601455716 0.499999999994 -59.101455716 +UniRef50_V5ES07 0.397823316549 0.5 0.102176683451 +UniRef50_D3QI46 3.65072902813 0.5 -3.15072902813 +UniRef50_Q1IWL4 Chaperone protein DnaK 0.00112873106221 0.5 0.498871268938 +UniRef50_UPI00047938D7 hypothetical protein, partial 0.222436160967 0.5 0.277563839033 +UniRef50_R0RZA1 Sterol O acyltransferase 2 domain protein 0.275129462869 0.5 0.224870537131 +UniRef50_M9VB96 Enoyl CoA hydratase isomerase family protein 0.028204470041 0.5 0.471795529959 +UniRef50_Q4L4I8 Prolipoprotein diacylglyceryl transferase 0.855353580233 0.5 -0.355353580233 +UniRef50_UPI00042857FF exodeoxyribonuclease III 1.2739407652 0.5 -0.773940765197 +UniRef50_Q3IUW3 6.83939425672 0.500000000001 -6.33939425672 +UniRef50_UPI00047DBE48 methionine ABC transporter substrate binding protein 1.42722035933 0.5 -0.927220359334 +UniRef50_D4MBK3 TraX protein 0.00400983403659 0.5 0.495990165964 +UniRef50_K2HST1 ATP synthase F0, subunit I 0.432644400287 0.5 0.0673555997125 +UniRef50_UPI000466EE81 hypothetical protein 0.12445567325 0.500000000001 0.37554432675 +UniRef50_UPI0003808063 hypothetical protein 0.172624491566 0.5 0.327375508435 +UniRef50_UPI000415D4ED theronine dehydrogenase 0.756727628669 0.5 -0.256727628669 +UniRef50_T0V4W6 Proteinase 1.38350691412 0.5 -0.883506914119 +UniRef50_A0A024E6L7 Carbamoyl phosphate synthase L chain, ATP binding 0.00460947029842 0.5 0.495390529702 +UniRef50_K0TJQ0 0.0628091918463 0.5 0.437190808153 +UniRef50_O27367 DNA polymerase sliding clamp 1.26639847066 0.5 -0.766398470658 +UniRef50_I6U069 3.09071787072 0.5 -2.59071787072 +UniRef50_Q8NUV0 Putative surface protein MW2416 3.9687545969 0.500000000001 -3.4687545969 +UniRef50_X1T4G6 Marine sediment metagenome DNA, contig 0.400755706443 0.5 0.0992442935568 +UniRef50_P00467 Nitrogenase molybdenum iron protein alpha chain 0.122702157635 0.5 0.377297842365 +UniRef50_W0IE40 0.625237349321 0.5 -0.125237349321 +UniRef50_A7ZJG7 Crossover junction endodeoxyribonuclease RusA 0.331532307809 0.5 0.168467692191 +UniRef50_K0S630 0.0206395550222 0.5 0.479360444978 +UniRef50_Q8U2H9 Isopentenyl diphosphate delta isomerase 1.45836932588 0.5 -0.958369325883 +UniRef50_UPI0003B41990 GTP binding protein YchF 1.1888754622 0.499999999999 -0.688875462196 +UniRef50_UPI0003732AC1 hypothetical protein 0.230826526485 0.5 0.269173473515 +UniRef50_F8JWN1 0.148931119558 0.5 0.351068880442 +UniRef50_UPI0003FF1B10 hypothetical protein 0.625155987726 0.5 -0.125155987726 +UniRef50_Q8ZQU2 Succinate dehydrogenase iron sulfur subunit 0.70956304154 0.5 -0.20956304154 +UniRef50_UPI00036FEB03 hypothetical protein 0.0862365652465 0.5 0.413763434753 +UniRef50_UPI000368F721 hypothetical protein 0.264861239491 0.5 0.235138760509 +UniRef50_I2BRJ1 UPF0125 protein PflA506_4569 0.248064250181 0.5 0.251935749819 +UniRef50_V5SY76 ATPase AAA 1.57675416016 0.5 -1.07675416016 +UniRef50_A0A011Q9T7 0.880834361638 0.5 -0.380834361638 +UniRef50_A0P1B5 Putative translation initiation inhibitor 0.637729566898 0.5 -0.137729566898 +UniRef50_G6YUN6 Cytochrome c type biogenesis protein CcmF 0.747761597443 0.5 -0.247761597443 +UniRef50_UPI000478A554 ABC transporter substrate binding protein 0.0458732473297 0.5 0.45412675267 +UniRef50_F0Y1G4 0.0829690970877 0.5 0.417030902912 +UniRef50_UPI000471C311 UTP glucose 1 phosphate uridylyltransferase 0.961472410915 0.5 -0.461472410915 +UniRef50_A3CM87 Cation transporting ATPase, E1 E 2 family, putative 0.520781477096 0.5 -0.020781477096 +UniRef50_A6M1C8 Flagellar hook associated protein FlgK 0.0801511917158 0.5 0.419848808285 +UniRef50_X1U0Y9 Marine sediment metagenome DNA, contig 0.636699679187 0.5 -0.136699679187 +UniRef50_Q2T3V8 Aminotransferase, class III 1.15837103103 0.5 -0.658371031028 +UniRef50_H2K108 0.571828399339 0.5 -0.0718283993391 +UniRef50_Q2JU97 Sulfate adenylyltransferase 0.374531750992 0.5 0.125468249008 +UniRef50_UPI0003B4D9C2 acetyl CoA carboxylase 0.988776125787 0.5 -0.488776125787 +UniRef50_P46187 Protein RseC 1.51864658445 0.5 -1.01864658445 +UniRef50_A5D508 Carbamoyl phosphate synthase large chain 0.00151202808983 0.5 0.49848797191 +UniRef50_UPI00034916BB hypothetical protein 2.33148370417 0.499999999997 -1.83148370416 +UniRef50_UPI0002889211 glucosamine fructose 6 phosphate aminotransferase , partial 0.437783500674 0.5 0.0622164993262 +UniRef50_UPI00046F52F1 hypothetical protein 0.00515419449548 0.5 0.494845805505 +UniRef50_U5QPT0 Prolyl endopeptidase 0.00117886503986 0.5 0.498821134961 +UniRef50_D3BJZ9 0.0256482476323 0.5 0.474351752368 +UniRef50_UPI0003727191 peptidase 0.273564519484 0.5 0.226435480516 +UniRef50_X3EY52 GTPase 0.00249425400558 0.5 0.497505745995 +UniRef50_T1XPL8 Cobalamin synthesis protein, putative 1.8515741187 0.499999999998 -1.3515741187 +UniRef50_UPI0004157C13 hypothetical protein 0.731278848246 0.5 -0.231278848246 +UniRef50_E9Z893 Alpha beta hydrolase 4.98613685992 0.500000000004 -4.48613685992 +UniRef50_UPI000473D50C DNA repair protein RadA, partial 0.614893235566 0.5 -0.114893235566 +UniRef50_A5VPL4 2 isopropylmalate synthase homocitrate synthase family protein 1.04094976758 0.5 -0.540949767577 +UniRef50_UPI00047A1CF1 ATP synthase 0.684796145673 0.5 -0.184796145673 +UniRef50_F9YYK5 Conserved membrane spanning protein 0.00737868433804 0.5 0.492621315662 +UniRef50_F6C514 Transcriptional regulator, DeoR family 5.78610186848 0.500000000001 -5.28610186848 +UniRef50_O27552 Leucine tRNA ligase 1.87458188822 0.499999999999 -1.37458188822 +UniRef50_Q9A0T3 Unsaturated chondroitin disaccharide hydrolase 0.125009764897 0.5 0.374990235104 +UniRef50_F7ZZ02 RDD domain containing protein 0.113023863652 0.5 0.386976136348 +UniRef50_Q6GEA0 Lysostaphin resistance protein A 2.33441002667 0.5 -1.83441002667 +UniRef50_Q9ZLE4 Succinyl CoA 0.00487575197614 0.5 0.495124248024 +UniRef50_L0EXZ6 Phosphate ABC transporter, periplasmic phosphate binding protein PstS 0.564792903717 0.5 -0.0647929037169 +UniRef50_B9KTS5 Animal heme peroxidase 1.04844518051 0.5 -0.548445180512 +UniRef50_Q82AZ8 0.00282875484096 0.499999999999 0.49717124516 +UniRef50_UPI000360375D hypothetical protein 0.0668615044142 0.5 0.433138495586 +UniRef50_G7FVR9 3.37635727947 0.5 -2.87635727947 +UniRef50_B9UQA9 PI 1 ancillary protein 2 0.0473673110592 0.5 0.452632688941 +UniRef50_A6FPM7 PhoH like protein 0.519772832573 0.5 -0.0197728325729 +UniRef50_UPI00030E455E hypothetical protein 0.157261035403 0.5 0.342738964597 +UniRef50_O27218 UPF0051 protein MTH_1150 2.90597320851 0.499999999999 -2.40597320851 +UniRef50_UPI0003C165C4 PREDICTED 0.349208661899 0.5 0.150791338101 +UniRef50_UPI0001B4101D thiamine biosynthesis protein ThiC 0.180893100503 0.5 0.319106899497 +UniRef50_F8IMU7 1.79300786684 0.5 -1.29300786684 +UniRef50_A6M039 0.129749703467 0.500000000001 0.370250296532 +UniRef50_UPI00016C0F03 peptidyl tRNA hydrolase 0.33826515761 0.5 0.16173484239 +UniRef50_UPI0004783915 hypothetical protein, partial 0.0269223988407 0.5 0.473077601159 +UniRef50_Q4L6U2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.02224461518 0.5 -0.522244615178 +UniRef50_UPI00036584C7 hypothetical protein 0.52551987306 0.5 -0.0255198730601 +UniRef50_UPI0003808BC7 hypothetical protein 0.465563239625 0.5 0.0344367603748 +UniRef50_UPI000382E998 hypothetical protein 8.86385482416 0.5 -8.36385482416 +UniRef50_B9EA42 2.73111807265 0.500000000001 -2.23111807265 +UniRef50_UPI000376BE3D hypothetical protein 0.768323753838 0.5 -0.268323753838 +UniRef50_B2TI02 Ser Thr protein phosphatase family protein 0.719142561581 0.5 -0.219142561581 +UniRef50_E8SHY9 Metallo beta lactamase superfamily domain protein in prophage 8.41962438149 0.500000000001 -7.91962438149 +UniRef50_P50867 Cysteine synthase 1.495118155 0.500000000001 -0.995118154999 +UniRef50_UPI00036B0358 hypothetical protein 0.384598882039 0.5 0.115401117961 +UniRef50_W4UBJ6 Sodium dependent galactose transporter 0.159967281996 0.5 0.340032718004 +UniRef50_Q8IJN7 Enolase 0.0624502183102 0.5 0.43754978169 +UniRef50_J1AHN1 ZIP zinc transporter family protein 1.04232914491 0.5 -0.54232914491 +UniRef50_T9Q7C2 0.319560307809 0.5 0.180439692191 +UniRef50_UPI00045DD854 PREDICTED 0.0224714471471 0.500000000001 0.477528552852 +UniRef50_G0IAR7 Multidrug resistance protein MdtG 2.69098577007 0.5 -2.19098577007 +UniRef50_A3PPJ6 Binding protein dependent transport systems inner membrane component 2.98097498241 0.5 -2.48097498241 +UniRef50_A0A009I7P3 LPXTG motif cell wall anchor domain protein 20.8473423362 0.499999999999 -20.3473423362 +UniRef50_A0A024L4S5 Tail protein 2.09137032792 0.5 -1.59137032792 +UniRef50_K6PZY4 Putative esterase 0.321620392252 0.5 0.178379607748 +UniRef50_D4YR40 0.113288389935 0.5 0.386711610064 +UniRef50_R7CKR0 Replicative DNA helicase 0.0233620241009 0.5 0.476637975899 +UniRef50_UPI0003503BD0 2.14592266304 0.5 -1.64592266304 +UniRef50_Q9RU95 NADH quinone oxidoreductase subunit I 0.0243939911605 0.5 0.47560600884 +UniRef50_P42640 Putative phosphoethanolamine transferase YhbX 1.63120069319 0.500000000001 -1.13120069319 +UniRef50_UPI00037DFCBE hypothetical protein 0.772969026616 0.5 -0.272969026616 +UniRef50_M4WUT5 0.599812367166 0.5 -0.0998123671664 +UniRef50_U6EDC0 Methyl viologen reducing hydrogenase subunit delta 2.14099864245 0.5 -1.64099864245 +UniRef50_Q47005 Nitrogen assimilation regulatory protein nac 0.280954120112 0.5 0.219045879888 +UniRef50_E4SRK6 Mannose specific phosphotransferase system component IIC low 0.0401445991872 0.5 0.459855400813 +UniRef50_Q8CQI0 Lipoprotein signal peptidase 1.10002827442 0.5 -0.600028274416 +UniRef50_UPI00047E217B hypothetical protein 0.543194405083 0.5 -0.0431944050831 +UniRef50_B9EC33 2.60701154041 0.499999999996 -2.10701154041 +UniRef50_UPI0003B68BAD single stranded DNA binding protein 0.0386738916982 0.5 0.461326108302 +UniRef50_A5D3C3 Putative Holliday junction resolvase 0.955271155403 0.5 -0.455271155403 +UniRef50_E3F446 Nickel import ATP binding protein NikD, putative 0.356151182755 0.5 0.143848817245 +UniRef50_A0A022NSU8 0.330276733739 0.5 0.169723266261 +UniRef50_E6NXI7 1.56715881979 0.499999999999 -1.06715881979 +UniRef50_UPI0002FB146F 30S ribosomal protein S2 0.266344754394 0.5 0.233655245606 +UniRef50_Q9RV68 Transcription elongation factor GreA 0.00750419578271 0.499999999999 0.492495804218 +UniRef50_UPI00037DDB96 hypothetical protein 0.312942578334 0.5 0.187057421666 +UniRef50_E1QYV1 0.0700127802524 0.5 0.429987219748 +UniRef50_D3RCC6 Carbohydrate kinase, FGGY like protein 0.233077902816 0.5 0.266922097184 +UniRef50_L5SRM4 0.260951048324 0.5 0.239048951676 +UniRef50_R5B4R5 Inner membrane translocator 0.0569948830467 0.5 0.443005116954 +UniRef50_Q6LWG7 Regulator of arsenical resistance 1.1247412703 0.5 -0.624741270297 +UniRef50_A6X5J7 TonB dependent receptor 1.63090355231 0.5 -1.13090355231 +UniRef50_F7YB26 0.651289966876 0.5 -0.151289966876 +UniRef50_A6LV07 Patatin 0.0695785003182 0.5 0.430421499682 +UniRef50_A3NHB2 Aldehyde dehydrogenase family protein 3.57144497425 0.5 -3.07144497425 +UniRef50_UPI00044220DD 0.277359243188 0.5 0.222640756812 +UniRef50_G8WCV6 PTS system ascorbate specific transporter subunit IIC 1.3891394432 0.5 -0.889139443204 +UniRef50_Q6GCL3 Iron sulfur cluster repair protein ScdA 0.962376131197 0.5 -0.462376131197 +UniRef50_B7V6M6 Homoprotocatechuate 2,3 dioxygenase 0.304855856098 0.5 0.195144143902 +UniRef50_UPI00036F8CD4 hypothetical protein 0.131486005344 0.5 0.368513994656 +UniRef50_Q5SHB3 Ribonuclease Y 0.00327039889192 0.5 0.496729601108 +UniRef50_B1BJN1 Oxidoreductase, NAD binding 0.0702227985061 0.5 0.429777201494 +UniRef50_X5Z4Q0 2.00797667283 0.5 -1.50797667283 +UniRef50_G0K1E8 Oxygen independent coproporphyrinogen III oxidase 0.0304243278924 0.5 0.469575672108 +UniRef50_C0MDU1 Response regulator protein 2.34696035634 0.5 -1.84696035634 +UniRef50_X5WX27 Transposase IS66 1.35058557067 0.5 -0.850585570665 +UniRef50_V7EIE7 0.946892081954 0.5 -0.446892081954 +UniRef50_Q9FMT1 3 isopropylmalate dehydrogenase 3, chloroplastic 0.969236251329 0.5 -0.469236251329 +UniRef50_UPI00047729DA chemotaxis protein CheA 0.547439251466 0.5 -0.047439251466 +UniRef50_B0V429 Transcriptional repressor, antitoxin for RelE like 0.0534081514723 0.5 0.446591848528 +UniRef50_U5MLW0 Methyl accepting chemotaxis protein McpC 0.0236191614117 0.5 0.476380838588 +UniRef50_UPI0003C19C40 PREDICTED 0.0272639251228 0.5 0.472736074877 +UniRef50_I6TP65 LrgA family protein 1.63858524842 0.5 -1.13858524842 +UniRef50_C5N355 Periplasmic binding protein 1.59654638266 0.5 -1.09654638266 +UniRef50_E6C9E2 0.0166014936164 0.5 0.483398506384 +UniRef50_UPI000477A2AE hypothetical protein 1.01283750146 0.5 -0.512837501457 +UniRef50_UPI0004747D71 hypothetical protein 0.293918611324 0.5 0.206081388676 +UniRef50_F9YY68 0.0135938248889 0.5 0.486406175111 +UniRef50_UPI0003B2F873 glycerol 3 phosphate ABC transporter ATP binding protein 0.794914576272 0.5 -0.294914576272 +UniRef50_P59831 Ribosomal large subunit pseudouridine synthase A 0.836350436304 0.5 -0.336350436304 +UniRef50_B2VHD6 Protein RecA 0.010800038238 0.5 0.489199961762 +UniRef50_F0KP29 Amidohydrolase 0.0208431542651 0.5 0.479156845735 +UniRef50_R7PW09 CAAX amino protease family protein 1.35281100398 0.5 -0.852811003977 +UniRef50_UPI00036E74BD hypothetical protein 0.966422022806 0.5 -0.466422022806 +UniRef50_P23877 Ferric enterobactin transport system permease protein FepG 1.67102950783 0.5 -1.17102950783 +UniRef50_B0BWD8 Ribosomal RNA large subunit methyltransferase E 1.20495741503 0.5 -0.704957415032 +UniRef50_F6GSD7 Autotransporter 1.79454712658 0.5 -1.29454712658 +UniRef50_Q72PF1 Pyridoxine pyridoxamine 5 phosphate oxidase 0.0124875821368 0.5 0.487512417863 +UniRef50_UPI00034575CD hypothetical protein 0.961956552039 0.5 -0.461956552039 +UniRef50_C5QLR6 0.441260263797 0.5 0.0587397362025 +UniRef50_Q74KU4 Non canonical purine NTP pyrophosphatase 0.500012828948 0.5 -1.28289479501e-05 +UniRef50_G8VH89 ABC transporter, permease protein 0.0562495778877 0.5 0.443750422113 +UniRef50_A3PPU7 ATPase associated with various cellular activities, AAA_5 2.62192621399 0.5 -2.12192621399 +UniRef50_Q2S3M6 Nucleoside diphosphate kinase 0.718876499123 0.5 -0.218876499123 +UniRef50_X5TWB1 C4 dicarboxylate ABC transporter 0.223973924742 0.5 0.276026075258 +UniRef50_F4A6D4 Flagellar motor switch protein FliN 0.0519808248046 0.5 0.448019175195 +UniRef50_UPI000470A84B hypothetical protein 0.0432826520852 0.5 0.456717347915 +UniRef50_G8LJ33 0.0983691837637 0.5 0.401630816236 +UniRef50_M3I579 Valine tRNA ligase 0.695568710607 0.5 -0.195568710607 +UniRef50_G8UTA5 0.910785657643 0.5 -0.410785657643 +UniRef50_A1B9B4 1.42397138088 0.5 -0.923971380876 +UniRef50_F3V8H4 Hca operon transcriptional activator 0.229300705164 0.5 0.270699294836 +UniRef50_Q2T0P7 Mannitol ABC transporter, permease protein 4.23771361849 0.500000000003 -3.73771361849 +UniRef50_UPI0002F85C08 hypothetical protein 2.39139175832 0.499999999999 -1.89139175831 +UniRef50_UPI0000306491 50S ribosomal protein L18 0.200933132091 0.499999999999 0.29906686791 +UniRef50_Q9RZA5 Response regulator 0.00178463940873 0.5 0.498215360591 +UniRef50_R9YN56 5.84172828275 0.5 -5.34172828275 +UniRef50_Q7UX39 Histidinol dehydrogenase 0.152028881316 0.5 0.347971118684 +UniRef50_UPI000248C060 NH dependent NAD+ synthetase 4.61668468745 0.499999999997 -4.11668468745 +UniRef50_E6G860 Replication initiator protein A domain protein 1.02929385074 0.5 -0.529293850739 +UniRef50_R5YAM0 Glycogen debranching enzyme GlgX 0.107970900435 0.500000000001 0.392029099565 +UniRef50_G8VHB4 FecCD family membrane transport protein 0.011381344107 0.5 0.488618655893 +UniRef50_A0NUH2 1.97410622123 0.5 -1.47410622123 +UniRef50_A7AXT8 0.205216557268 0.5 0.294783442732 +UniRef50_K2FH80 0.326966065523 0.5 0.173033934477 +UniRef50_W8AHC9 0.00222495523795 0.5 0.497775044762 +UniRef50_UPI0002F0BE77 hypothetical protein 0.133196986613 0.5 0.366803013387 +UniRef50_F7ZQR5 S adenosylmethionine dependent methyltransferase 0.145917022404 0.500000000001 0.354082977595 +UniRef50_D3DZP8 CMP N acetylneuraminic acid synthetase NeuA 4.90474186589 0.500000000001 -4.40474186589 +UniRef50_UPI000470F84C ribonuclease D 3.13454020785 0.5 -2.63454020785 +UniRef50_Q87F08 Anhydro N acetylmuramic acid kinase 1.26748802 0.5 -0.767488020001 +UniRef50_B8ZKS3 Probable fructose 6 phosphate aldolase 0.00980090399111 0.5 0.490199096009 +UniRef50_UPI00037A15A0 hypothetical protein 0.0015125692232 0.5 0.498487430777 +UniRef50_Q64RT0 Imidazole glycerol phosphate synthase subunit HisH 0.00426418913454 0.5 0.495735810865 +UniRef50_P0AER7 Glutamate aspartate transport system permease protein GltK 4.86705938789 0.500000000003 -4.36705938789 +UniRef50_P56109 Fructose bisphosphate aldolase 0.000166256775527 0.5 0.499833743224 +UniRef50_F0RL15 Diaminopimelate decarboxylase 0.9807926396 0.5 -0.4807926396 +UniRef50_Q46UT4 1.48401112789 0.499999999999 -0.984011127893 +UniRef50_A0A011GQD3 0.0492309523431 0.5 0.450769047657 +UniRef50_O32544 TraN 1.2278046841 0.5 -0.7278046841 +UniRef50_F0KLF9 0.00683460278769 0.5 0.493165397212 +UniRef50_E3NVW5 2.24692391011 0.500000000001 -1.74692391011 +UniRef50_Q9I0J6 NADH quinone oxidoreductase subunit G 0.418201533778 0.5 0.0817984662223 +UniRef50_U2R557 Raf like protein 0.314207095287 0.5 0.185792904713 +UniRef50_UPI00016A6D7F hypothetical protein 0.0583706349587 0.5 0.441629365041 +UniRef50_A0A034SNG1 3 methyladenine DNA glycosylase 1.70195218855 0.5 -1.20195218855 +UniRef50_UPI00034D9920 hypothetical protein 0.0165655091452 0.5 0.483434490855 +UniRef50_B9EAD9 1.47501588846 0.500000000002 -0.975015888465 +UniRef50_A4VU30 DNA uptake protein and related DNA binding proteins 1.19552097026 0.5 -0.695520970262 +UniRef50_UPI0003B4988B glycine cleavage system aminomethyltransferase T 0.656520003331 0.5 -0.156520003331 +UniRef50_Q48G15 Transcriptional regulator ArgR 1.77738918433 0.5 -1.27738918433 +UniRef50_UPI00035C402E hypothetical protein, partial 0.0323439834147 0.5 0.467656016585 +UniRef50_P45119 Pyruvate dehydrogenase E1 component 1.24349596616 0.5 -0.743495966158 +UniRef50_P26905 Dipeptide transport ATP binding protein DppD 0.114322390753 0.5 0.385677609247 +UniRef50_B7GK36 Fatty acid desaturase 0.049123662487 0.499999999999 0.450876337514 +UniRef50_Q0RPF6 GTPase Obg 0.00651769715114 0.5 0.493482302849 +UniRef50_N6VD20 0.750428596495 0.5 -0.250428596495 +UniRef50_UPI0003742A66 ABC transporter 0.345898182618 0.5 0.154101817382 +UniRef50_P64632 0.0444643249041 0.5 0.455535675096 +UniRef50_A6LWW1 GCN5 related N acetyltransferase 0.421630343808 0.5 0.0783696561922 +UniRef50_F0Y0N8 Expressed protein 0.0743832358893 0.5 0.425616764111 +UniRef50_P52043 Propionyl CoA 0.217343801037 0.5 0.282656198963 +UniRef50_UPI00040C8409 hypothetical protein 5.44972817029 0.500000000001 -4.94972817029 +UniRef50_Q9RYP5 0.00954791707743 0.5 0.490452082923 +UniRef50_UPI00046FD691 precorrin 2 C20 methyltransferase 1.44928797971 0.5 -0.949287979712 +UniRef50_H0E6G7 0.0322580413595 0.5 0.467741958641 +UniRef50_UPI0003B6E2B1 serine 3 dehydrogenase 1.53476332317 0.5 -1.03476332317 +UniRef50_UPI0002F6B5AC hypothetical protein 0.332989473571 0.5 0.167010526429 +UniRef50_Q9ZDF1 CTP synthase 0.0216299299083 0.499999999999 0.478370070092 +UniRef50_R9ZG59 Oxidoreductase 0.940636253499 0.5 -0.440636253499 +UniRef50_F5YTP1 0.0542076703663 0.5 0.445792329634 +UniRef50_W5XAY0 SsrA binding protein 0.0107629702331 0.5 0.489237029767 +UniRef50_B7QX02 0.946530910659 0.5 -0.446530910659 +UniRef50_E8P9C7 0.023718044704 0.5 0.476281955296 +UniRef50_E6S2B8 0.0153925268148 0.5 0.484607473185 +UniRef50_B2S553 NADH quinone oxidoreductase subunit K 0.526404899438 0.5 -0.0264048994376 +UniRef50_UPI00029A5DDB F0F1 ATP synthase subunit beta 0.405492593096 0.5 0.0945074069035 +UniRef50_UPI000406B82B 2 dehydro 3 deoxygluconokinase 0.921630970302 0.5 -0.421630970302 +UniRef50_B1W1Y7 Putative 3 methyladenine DNA glycosylase 0.237113894078 0.5 0.262886105922 +UniRef50_K2A0T9 Membrane protein involved in aromatic hydrocarbon degradation 0.209183277974 0.5 0.290816722026 +UniRef50_T0XUL7 0.000822931676627 0.5 0.499177068323 +UniRef50_Q2RZV3 ATP synthase subunit beta 0.669804148322 0.5 -0.169804148322 +UniRef50_Q1QYW0 0.253745284963 0.5 0.246254715037 +UniRef50_UPI000395C02F hypothetical protein, partial 0.0521186189391 0.5 0.44788138106 +UniRef50_A6LU81 UPF0246 protein Cbei_1739 0.420706659541 0.5 0.0792933404589 +UniRef50_Q8DSK3 0.378965960851 0.5 0.121034039149 +UniRef50_W4Q487 Carboxynorspermidine decarboxylase 0.256270137447 0.5 0.243729862553 +UniRef50_UPI0003B66FA9 FAD dependent pyridine nucleotide disulfide oxidoreductase, partial 3.59586661406 0.500000000003 -3.09586661406 +UniRef50_UPI000309F09E cytochrome P450 0.31091665804 0.5 0.18908334196 +UniRef50_Q9RQP9 Poly beta 1,6 N acetyl D glucosamine synthase 6.51696221947 0.500000000007 -6.01696221948 +UniRef50_UPI0003B680A3 hypothetical protein 0.219150963692 0.5 0.280849036308 +UniRef50_Q8DSK9 0.112753512488 0.5 0.387246487512 +UniRef50_H3USC3 0.0611464029027 0.5 0.438853597097 +UniRef50_UPI000378FFA7 hypothetical protein 0.792391119217 0.5 -0.292391119217 +UniRef50_UPI0003B3F8F7 transposase, partial 1.88933860887 0.5 -1.38933860887 +UniRef50_P71285 0.107032531142 0.5 0.392967468858 +UniRef50_M9VD34 Tat pathway signal sequence 0.0162393175052 0.5 0.483760682495 +UniRef50_I6RIQ3 Two component sensor 0.497562456937 0.5 0.00243754306312 +UniRef50_D7A0A5 Phage head tail adaptor 0.480029343498 0.5 0.0199706565017 +UniRef50_W1ETW9 Trimethylamine N oxide reductase 1.63116479562 0.5 -1.13116479562 +UniRef50_F7ZH46 Glutamate dehydrogenase 1.40123195321 0.5 -0.90123195321 +UniRef50_U6H7V4 0.355075487904 0.5 0.144924512096 +UniRef50_W4TZ21 Protein translocase subunit SecA 0.0092252748256 0.5 0.490774725174 +UniRef50_UPI000367E627 hypothetical protein 1.07879223007 0.5 -0.578792230065 +UniRef50_R7N4P8 0.481324150146 0.5 0.0186758498541 +UniRef50_Q98D26 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 3.65898205173 0.5 -3.15898205173 +UniRef50_G0DVP7 Triacylglycerol lipase 0.0132207748876 0.5 0.486779225112 +UniRef50_Z5A0E9 0.290109981834 0.5 0.209890018166 +UniRef50_UPI000474C581 sodium 0.418550405407 0.5 0.0814495945933 +UniRef50_H8MJ08 0.370774145465 0.5 0.129225854535 +UniRef50_Y6XNC4 3.78127472466 0.500000000001 -3.28127472466 +UniRef50_B0V6T3 0.0351062216801 0.5 0.46489377832 +UniRef50_UPI00035C1E4A hypothetical protein, partial 1.67849767326 0.499999999999 -1.17849767326 +UniRef50_A6LWL8 0.217564282758 0.5 0.282435717242 +UniRef50_UPI000150A602 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein 0.11016461643 0.5 0.38983538357 +UniRef50_UPI00036D39A9 hypothetical protein 0.338468809583 0.5 0.161531190417 +UniRef50_A5IRS8 Isochorismate synthase 1.86044105251 0.499999999998 -1.36044105251 +UniRef50_Q9KNG7 Probable chromosome partitioning protein ParB 0.0472053629211 0.5 0.452794637079 +UniRef50_UPI00035F0102 hypothetical protein 4.77717216209 0.499999999997 -4.27717216209 +UniRef50_UPI0002D8E4B0 hypothetical protein 0.369194886965 0.5 0.130805113035 +UniRef50_E3D3B9 0.114278952643 0.5 0.385721047356 +UniRef50_Q52967 3.56641706157 0.500000000002 -3.06641706158 +UniRef50_UPI0003B70D90 heptaprenyl diphosphate synthase subunit II 0.50438086353 0.5 -0.00438086353031 +UniRef50_Q02500 NADH ubiquinone oxidoreductase chain 6 1.91068466398 0.5 -1.41068466398 +UniRef50_Q2JTQ1 0.242785582403 0.5 0.257214417597 +UniRef50_UPI00046A3E00 PTS beta glucoside transporter subunit IIABC 0.522632348931 0.5 -0.0226323489308 +UniRef50_UPI000365A17E hypothetical protein 0.15838508699 0.5 0.34161491301 +UniRef50_E8PAF3 Glycerate kinase 0.0350704609966 0.5 0.464929539004 +UniRef50_Q67P14 NADH quinone oxidoreductase subunit I 1 0.0559956006755 0.5 0.444004399325 +UniRef50_M5DVC6 UPF0234 protein TOL_2827 0.126937670807 0.5 0.373062329193 +UniRef50_UPI0003955A36 biotin synthase 0.223321021157 0.5 0.276678978843 +UniRef50_A4WT84 Cytochrome c, monohaem 1.72625970875 0.5 -1.22625970875 +UniRef50_H9GTR8 1.10005282866 0.5 -0.600052828656 +UniRef50_Q9X051 Ribose import ATP binding protein RbsA 2 0.336976644416 0.5 0.163023355584 +UniRef50_Q8CRJ6 Alkanal monooxygenase alpha chain 0.888351852827 0.5 -0.388351852827 +UniRef50_A0A013LFH7 0.0385354432369 0.5 0.461464556763 +UniRef50_G6G0I0 Proteophosphoglycan ppg4 0.22363033177 0.5 0.27636966823 +UniRef50_J9V068 0.401343514543 0.5 0.0986564854573 +UniRef50_C2GIT9 0.513131650821 0.5 -0.0131316508209 +UniRef50_A6LV04 0.301778525308 0.5 0.198221474692 +UniRef50_UPI000367DAA4 hypothetical protein 0.306856415463 0.5 0.193143584537 +UniRef50_F2EEA5 Predicted protein 0.0140938492975 0.5 0.485906150702 +UniRef50_K0X1N1 2.13131315114 0.5 -1.63131315114 +UniRef50_Q4L574 N5 carboxyaminoimidazole ribonucleotide synthase 1.47113714679 0.500000000001 -0.971137146789 +UniRef50_UPI0004766F31 hypothetical protein, partial 0.112110766416 0.5 0.387889233585 +UniRef50_X5E0Q9 Triose phosphate Transporter family protein 1.45513859022 0.5 -0.955138590224 +UniRef50_Q3M1P1 Binding protein dependent transport systems inner membrane component 1.40612895825 0.5 -0.906128958246 +UniRef50_P02919 Penicillin binding protein 1B 1.71931037361 0.499999999999 -1.21931037361 +UniRef50_R4LWQ6 0.754882192481 0.5 -0.254882192481 +UniRef50_Q4L860 Alkaline shock protein 23 0.924796580916 0.5 -0.424796580916 +UniRef50_Q5HK19 Sensor protein kinase WalK 2.05098861778 0.499999999999 -1.55098861777 +UniRef50_W9HAI5 0.117605561318 0.5 0.382394438682 +UniRef50_Q49WL3 Ribonuclease J 1 0.88353476499 0.5 -0.38353476499 +UniRef50_B4EWA1 Purine nucleoside phosphorylase DeoD type 0.000359019028707 0.5 0.499640980971 +UniRef50_I6T7P3 Flavodoxin 0.993555828741 0.5 -0.493555828741 +UniRef50_Q49UP4 UPF0753 protein SSP2379 1.29546418818 0.5 -0.795464188176 +UniRef50_UPI0003B5EE25 ABC transporter permease 0.612484733277 0.5 -0.112484733277 +UniRef50_UPI0002F44B36 hypothetical protein 0.111582991837 0.5 0.388417008163 +UniRef50_P44758 Hybrid peroxiredoxin hyPrx5 0.00525603204706 0.500000000001 0.494743967952 +UniRef50_UPI0003613AE0 hypothetical protein 0.629767985109 0.5 -0.129767985109 +UniRef50_B2UZY6 Penicillin binding protein 0.0436104647839 0.5 0.456389535216 +UniRef50_Q8QZT1 Acetyl CoA acetyltransferase, mitochondrial 0.0617609160629 0.5 0.438239083937 +UniRef50_P44624 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 0.213702486461 0.5 0.286297513539 +UniRef50_UPI0004032490 hypothetical protein 0.102497386962 0.5 0.397502613038 +UniRef50_Q04RS9 Biotin synthase 0.162007544401 0.5 0.337992455599 +UniRef50_D7CVJ1 Transcriptional regulator, BadM Rrf2 family 0.077131634992 0.5 0.422868365008 +UniRef50_G6ES00 Transposase 2.03456366145 0.499999999999 -1.53456366145 +UniRef50_S9R1C4 Enoyl [acyl carrier protein] reductase 0.662800139655 0.5 -0.162800139655 +UniRef50_G8RE63 ABC transporter ATP binding protein 3.7745363703 0.5 -3.2745363703 +UniRef50_Q5KUX3 Ribose import ATP binding protein RbsA 0.43191177803 0.5 0.0680882219696 +UniRef50_UPI00037AE633 hypothetical protein 4.91297140964 0.499999999997 -4.41297140964 +UniRef50_Z9VYD6 0.319655659493 0.5 0.180344340507 +UniRef50_UPI00016C5052 large conductance mechanosensitive channel protein MscL 2.25859458482 0.5 -1.75859458482 +UniRef50_K9D9U6 Diguanylate cyclase domain containing protein 0.0791048275795 0.5 0.42089517242 +UniRef50_I6U2X8 2.30207895876 0.5 -1.80207895876 +UniRef50_A6VYP9 Oxidoreductase FAD binding domain protein 1.28523577099 0.5 -0.785235770993 +UniRef50_Q2WGJ0 ATP synthase subunit alpha, chloroplastic 0.285094168955 0.5 0.214905831045 +UniRef50_UPI0003625BDB hypothetical protein 0.286725138813 0.5 0.213274861187 +UniRef50_Q6F8I3 UPF0176 protein ACIAD2917 0.181675253818 0.5 0.318324746182 +UniRef50_Q02CT4 NADH quinone oxidoreductase subunit K 1 0.00657724939487 0.5 0.493422750605 +UniRef50_UPI0004714BA7 hypothetical protein 0.87092724258 0.5 -0.37092724258 +UniRef50_P42237 Probable glucarate transporter 0.271453666487 0.5 0.228546333513 +UniRef50_M9S4A5 0.627739767022 0.5 -0.127739767022 +UniRef50_B9JZN3 0.0104602025816 0.5 0.489539797419 +UniRef50_H0HWX8 0.617370664705 0.5 -0.117370664705 +UniRef50_UPI0003289C1D 1.19213314027 0.5 -0.692133140268 +UniRef50_P75919 Cardiolipin synthase C 3.48054136753 0.499999999999 -2.98054136753 +UniRef50_W1K3X1 LysR family transcriptional regulator 1.1267729427 0.5 -0.626772942699 +UniRef50_B6I424 Glutamate ammonia ligase adenylyltransferase 0.961586786192 0.5 -0.461586786192 +UniRef50_B7GXG8 Short chain dehydrogenase family protein 0.0201155521121 0.5 0.479884447888 +UniRef50_UPI0003B70587 hypothetical protein 0.642113714747 0.5 -0.142113714747 +UniRef50_UPI0003FE3085 chemotaxis protein CheA 5.18228317974 0.499999999994 -4.68228317973 +UniRef50_D5AKE9 0.919231078979 0.5 -0.419231078979 +UniRef50_Q02GV4 1.42990748043 0.5 -0.929907480427 +UniRef50_A5ULP3 Hydroxyethylthiazole kinase 2.88184121287 0.499999999997 -2.38184121287 +UniRef50_Q49XX5 2.76040530583 0.499999999999 -2.26040530582 +UniRef50_M9R1S6 0.305383645738 0.5 0.194616354262 +UniRef50_U8A0B9 0.232625289391 0.5 0.267374710609 +UniRef50_Q9HW54 0.626252990991 0.5 -0.126252990991 +UniRef50_B1MCA4 Riboflavin biosynthesis protein RibBA 0.217463600266 0.5 0.282536399734 +UniRef50_B0VME8 Thiol 0.0441688458658 0.5 0.455831154134 +UniRef50_N9N018 2.4144736521 0.5 -1.9144736521 +UniRef50_Q9RVZ5 Zinc metalloprotease, putative 0.00371515969502 0.5 0.496284840305 +UniRef50_UPI00045E7E19 uroporphyrin III methyltransferase 1.32675035409 0.5 -0.826750354091 +UniRef50_W2C810 2.75736564237 0.5 -2.25736564237 +UniRef50_A4WN46 Dihydroxy acid dehydratase 1.01116691484 0.5 -0.511166914839 +UniRef50_Q2YWD0 HTH type transcriptional regulator SAB2452 2.75200295504 0.500000000005 -2.25200295505 +UniRef50_Q9RME4 Phosphopantetheine adenylyltransferase 2.41124171118 0.5 -1.91124171118 +UniRef50_Q46482 Phosphoribosylamine glycine ligase 1.21426944139 0.5 -0.71426944139 +UniRef50_UPI000376F60F hypothetical protein 0.899155541475 0.5 -0.399155541475 +UniRef50_UPI0004666ABA hypothetical protein 0.184876040973 0.5 0.315123959027 +UniRef50_A7X198 12.690255623 0.499999999995 -12.190255623 +UniRef50_UPI00036FAB93 MULTISPECIES 1.58925927418 0.5 -1.08925927418 +UniRef50_M1V095 A G specific adenine glycosylase 0.0114524868549 0.5 0.488547513145 +UniRef50_A4XQ45 Urease subunit beta 1.15686774073 0.5 -0.656867740729 +UniRef50_UPI00030D86CE flagellar biosynthetic protein FlhB 2.09650736103 0.5 -1.59650736103 +UniRef50_P76545 0.859695973141 0.5 -0.359695973141 +UniRef50_R1EB69 0.0287142144846 0.5 0.471285785516 +UniRef50_UPI00028A03C4 beta N acetylhexosaminidase 0.325688547457 0.5 0.174311452543 +UniRef50_D3F063 BolA family protein 0.169213421732 0.5 0.330786578268 +UniRef50_D7CQX7 0.00145199140811 0.5 0.498548008592 +UniRef50_W6EXE3 Raffinose transport system permease protein 0.156597081376 0.5 0.343402918624 +UniRef50_E3I496 Polyhydroxyalkonate synthesis repressor, PhaR 1.43040069867 0.5 -0.930400698673 +UniRef50_UPI000225AC36 RNAse E 0.86543438377 0.5 -0.36543438377 +UniRef50_A5UKL3 1.15971475528 0.5 -0.659714755281 +UniRef50_U5UJL0 1.72508084265 0.499999999999 -1.22508084264 +UniRef50_UPI00047BF1EC excinuclease ABC subunit A 0.196286153189 0.5 0.303713846812 +UniRef50_V4ZVN5 0.24699637757 0.5 0.25300362243 +UniRef50_Q9RW93 Shikimate kinase 0.0124857837995 0.500000000001 0.4875142162 +UniRef50_UPI0003B51C56 homoserine dehydrogenase 0.0619164448995 0.5 0.4380835551 +UniRef50_Q5HRU9 0.95385269663 0.5 -0.45385269663 +UniRef50_Q27828 Bifunctional dihydrofolate reductase thymidylate synthase 0.129501796582 0.5 0.370498203418 +UniRef50_G7M1X8 0.140158671956 0.5 0.359841328044 +UniRef50_C5KZL8 0.904038875706 0.5 -0.404038875706 +UniRef50_UPI0002555E19 hydrolases of HD superfamily protein 0.0909929340454 0.5 0.409007065955 +UniRef50_D7GDS1 0.116606675378 0.500000000001 0.383393324622 +UniRef50_E4BHA0 4 phosphoerythronate dehydrogenase 0.0196330008609 0.5 0.480366999139 +UniRef50_B4F2G7 Prolipoprotein diacylglyceryl transferase 2.7622514546 0.500000000002 -2.2622514546 +UniRef50_A9KSS0 UvrABC system protein C 0.116895710333 0.500000000001 0.383104289666 +UniRef50_Q2FW88 0.452223228146 0.5 0.0477767718535 +UniRef50_P17855 Staphylocoagulase 2.48942171858 0.499999999997 -1.98942171858 +UniRef50_Q6A6L8 Conserved membrane spanning protein 0.0104657191178 0.5 0.489534280882 +UniRef50_B6ASY9 0.612110785354 0.5 -0.112110785354 +UniRef50_K7KA74 0.512880955467 0.5 -0.0128809554666 +UniRef50_B0S1E5 Translation initiation factor IF 2 0.2187355266 0.5 0.2812644734 +UniRef50_I6T4B3 0.497779376954 0.5 0.00222062304585 +UniRef50_G8QKA4 1.66095561589 0.5 -1.16095561589 +UniRef50_G2A420 Prepilin type N terminal cleavage methylation domain protein 0.386368729473 0.5 0.113631270527 +UniRef50_B8FRJ8 Proton translocating NADH quinone oxidoreductase, chain M 0.0990334725165 0.5 0.400966527483 +UniRef50_A9E7Y1 3.7444298631 0.5 -3.2444298631 +UniRef50_C4JB45 0.537704137416 0.5 -0.0377041374162 +UniRef50_P0A4I5 Sensor protein CiaH 0.595766926527 0.5 -0.0957669265267 +UniRef50_D8JKU2 0.035867097316 0.5 0.464132902684 +UniRef50_UPI000307CD30 hypothetical protein 0.279614137754 0.5 0.220385862246 +UniRef50_O33832 Fructose 1,6 bisphosphatase inositol 1 monophosphatase 0.139841880107 0.5 0.360158119893 +UniRef50_M9VC77 Methylmalonyl CoA mutase, small subunit 0.00497015659747 0.5 0.495029843403 +UniRef50_I4KUA6 Iron ABC transporter, periplasmic iron binding protein 1.15343877064 0.5 -0.653438770645 +UniRef50_A3SN26 0.27153469666 0.5 0.22846530334 +UniRef50_A6LX02 NADH 0.0431225822207 0.5 0.456877417779 +UniRef50_UPI0000165EF1 hypothetical protein DR_A0286, partial 0.00133324118777 0.5 0.498666758813 +UniRef50_E2PX18 Sugar kinase 0.0114477512427 0.5 0.488552248757 +UniRef50_UPI0003673178 hypothetical protein 2.80013897303 0.499999999999 -2.30013897303 +UniRef50_UPI0001FFDF12 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 2.88196951877 0.5 -2.38196951877 +UniRef50_E3HCS4 TRAP transporter solute receptor, TAXI family 0.274298473684 0.5 0.225701526316 +UniRef50_E2SCH3 Ribonucleoside diphosphate reductase subunit beta 0.0651144668237 0.5 0.434885533176 +UniRef50_UPI0003EA9CC0 PREDICTED 0.187941062585 0.5 0.312058937415 +UniRef50_J1K020 0.275925632454 0.5 0.224074367546 +UniRef50_UPI00037CD073 hypothetical protein, partial 0.171575452272 0.5 0.328424547728 +UniRef50_A5UJU7 Serine acetyltransferase, CysE 2.34520744807 0.499999999999 -1.84520744807 +UniRef50_UPI000395575D signal peptide protein 1.14166838219 0.500000000001 -0.641668382189 +UniRef50_Q16B11 Membrane protein, putative 181.385018868 0.500000000016 -180.885018868 +UniRef50_UPI00036A093B hypothetical protein 0.816314631786 0.5 -0.316314631786 +UniRef50_B9KVZ4 DoxX family protein 3.53521333416 0.499999999995 -3.03521333415 +UniRef50_L6P508 DNA topoisomerase IV subunit A 1.96355712007 0.5 -1.46355712007 +UniRef50_A6LYN3 Drug resistance transporter, EmrB QacA subfamily 0.0345506109372 0.500000000001 0.465449389062 +UniRef50_P12045 N5 carboxyaminoimidazole ribonucleotide synthase 0.00232176560921 0.5 0.497678234391 +UniRef50_W0YU10 Phosphatidylethanolamine 3.96290430739 0.500000000005 -3.4629043074 +UniRef50_Q9JSN0 Pimeloyl [acyl carrier protein] methyl ester esterase 0.0720522123061 0.5 0.427947787694 +UniRef50_J1AY66 0.00818740089092 0.500000000001 0.491812599108 +UniRef50_A4WX23 0.323432491752 0.5 0.176567508248 +UniRef50_UPI00035E0126 hypothetical protein 0.773400958232 0.5 -0.273400958232 +UniRef50_I1ZJ75 N acetylneuraminate lyase 0.0631377355089 0.5 0.436862264491 +UniRef50_UPI000374FB7B hypothetical protein 0.319980976148 0.5 0.180019023852 +UniRef50_A0A024JM61 Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2 3 protein complex that nucleates branched actin filaments 0.269347432123 0.5 0.230652567877 +UniRef50_C7J807 Os10g0561000 protein 0.0934064524666 0.5 0.406593547533 +UniRef50_UPI0004673F99 transposase, partial 2.36168515297 0.500000000003 -1.86168515298 +UniRef50_Q9RS38 Guanylate kinase 0.00858538102273 0.5 0.491414618977 +UniRef50_UPI00046A1E34 hypothetical protein 0.154248877707 0.5 0.345751122293 +UniRef50_Q9RTJ0 0.00156112384332 0.500000000001 0.498438876156 +UniRef50_N6YR38 Proline glycine betaine ABC transporter periplasmic protein 17.954539897 0.499999999995 -17.4545398969 +UniRef50_K9VMS4 UDP galactopyranose mutase 0.00217880581757 0.5 0.497821194182 +UniRef50_Q5LX45 Membrane protein 2.1268591439 0.500000000001 -1.6268591439 +UniRef50_Q5HXL7 0.810036091391 0.5 -0.310036091391 +UniRef50_Q83L33 UPF0061 protein YdiU 5.95734325927 0.499999999998 -5.45734325926 +UniRef50_UPI00042B6AB1 GMP synthase 0.400566840412 0.5 0.0994331595881 +UniRef50_I0ZPZ0 Hydrogenase 1 large subunit 0.927166890265 0.5 -0.427166890265 +UniRef50_B2TCX7 Periplasmic binding protein LacI transcriptional regulator 0.0530740491562 0.5 0.446925950844 +UniRef50_P42765 3 ketoacyl CoA thiolase, mitochondrial 0.242097632384 0.5 0.257902367616 +UniRef50_A4VJJ6 RNA binding S1 1.61505899191 0.5 -1.11505899191 +UniRef50_U6HHG3 Thymidylate synthase 0.107972430991 0.5 0.392027569009 +UniRef50_K8WD83 1.05016077248 0.5 -0.550160772476 +UniRef50_I0QGZ0 Putative polysaccharide biosynthesis protein 0.848793764671 0.5 -0.348793764671 +UniRef50_P52052 9.49917659608 0.500000000005 -8.99917659608 +UniRef50_Q6ADC9 50S ribosomal protein L20 0.985103062342 0.5 -0.485103062342 +UniRef50_P21332 Oligo 1,6 glucosidase 0.0152648116691 0.5 0.484735188331 +UniRef50_A0A024HC94 LysR family transcriptional regulator 0.161692330908 0.5 0.338307669092 +UniRef50_Q8CSM8 Aspartokinase 1.5614849851 0.500000000002 -1.0614849851 +UniRef50_C7LDR5 Glutamine amidotransferase, putative 2.62830402741 0.500000000001 -2.12830402741 +UniRef50_UPI0003467BCD hypothetical protein 0.93955939246 0.5 -0.43955939246 +UniRef50_Q30SK1 Polysaccharide deacetylase 0.0105745594002 0.5 0.4894254406 +UniRef50_UPI0003C7F3E1 protein tyrosine kinase 0.29785560666 0.5 0.20214439334 +UniRef50_R5PQB3 AmiC protein 0.195389564658 0.5 0.304610435342 +UniRef50_Q4KC87 Fe ions import ATP binding protein FbpC 0.580693142187 0.5 -0.0806931421874 +UniRef50_Q49Y71 D tyrosyl tRNA deacylase 0.107365224497 0.5 0.392634775503 +UniRef50_UPI00029CB5BC L carnitine dehydratase bile acid inducible protein F, partial 0.0287102913772 0.499999999999 0.471289708624 +UniRef50_Q5HR28 Response regulator SaeR 2.86221679458 0.499999999997 -2.36221679458 +UniRef50_UPI000411F9DF hypothetical protein 0.0861154705631 0.5 0.413884529437 +UniRef50_M1WNQ8 0.431353984004 0.5 0.0686460159963 +UniRef50_K7YE63 0.068053236408 0.500000000001 0.431946763591 +UniRef50_Q8EDH1 3 oxoacyl [acyl carrier protein] synthase 3 0.766727518868 0.5 -0.266727518868 +UniRef50_UPI000411E306 indole 3 glycerol phosphate synthase 0.984325761295 0.5 -0.484325761295 +UniRef50_UPI000464983B histidine kinase 0.722226017611 0.5 -0.222226017611 +UniRef50_P77599 Probable fimbrial chaperone YfcS 2.49809098336 0.5 -1.99809098336 +UniRef50_Q9Z6P2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.845862018201 0.5 -0.345862018201 +UniRef50_Q6LWM9 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.242688758816 0.5 0.257311241184 +UniRef50_M2XTQ6 0.14875597794 0.5 0.35124402206 +UniRef50_D2ZNU9 11.9250763136 0.499999999998 -11.4250763136 +UniRef50_O33925 Methionine tRNA ligase 0.264989546828 0.5 0.235010453172 +UniRef50_A3DIZ4 DNA directed RNA polymerase subunit beta 0.0306091205571 0.5 0.469390879443 +UniRef50_D2ZNU3 2.26031934788 0.500000000002 -1.76031934788 +UniRef50_Q6GJ92 Protein VraC 1.06632835957 0.5 -0.566328359574 +UniRef50_D2ZNU0 1.34789795602 0.5 -0.847897956023 +UniRef50_F3U4T8 Aldehyde dehydrogenase EutE 0.0119097053592 0.5 0.488090294641 +UniRef50_G8AVK1 0.464195797504 0.5 0.0358042024959 +UniRef50_X6CFN2 Transposase 0.499802008662 0.5 0.0001979913385 +UniRef50_W4HGN2 0.794510564377 0.5 -0.294510564377 +UniRef50_Q8DWZ2 Pseudouridine synthase 0.277483354663 0.5 0.222516645337 +UniRef50_UPI0002F4B1FA hypothetical protein 0.329947066089 0.5 0.170052933911 +UniRef50_L0GPC8 Acyl CoA dehydrogenase 1.05908248607 0.5 -0.559082486066 +UniRef50_E4R6V3 ATP dependent helicase HrpB 0.287987867417 0.5 0.212012132583 +UniRef50_B9KQM1 Major facilitator superfamily MFS_1 0.722442791049 0.5 -0.222442791049 +UniRef50_Q72M00 Ketol acid reductoisomerase 0.0189539904528 0.5 0.481046009547 +UniRef50_UPI000369FF3F hypothetical protein 1.53937004981 0.5 -1.03937004981 +UniRef50_R7U816 0.169579935058 0.5 0.330420064942 +UniRef50_UPI00035CB92A hypothetical protein 0.238230160935 0.5 0.261769839065 +UniRef50_UPI000464C182 hypothetical protein 0.0379891291479 0.5 0.462010870852 +UniRef50_UPI000379A4AF hypothetical protein 0.15978015395 0.5 0.34021984605 +UniRef50_Q3J4T6 ThiF family protein 2.50848552626 0.500000000001 -2.00848552626 +UniRef50_W7X462 0.00708007601905 0.5 0.492919923981 +UniRef50_UPI00035D977C hypothetical protein 0.206069245046 0.5 0.293930754954 +UniRef50_I4VTW8 0.999583572042 0.5 -0.499583572042 +UniRef50_G4P1D7 0.00234322554069 0.5 0.497656774459 +UniRef50_J8V4X4 7.00055749426 0.499999999998 -6.50055749426 +UniRef50_Q9K3C5 B type flagellar hook associated protein 2 2.22983318167 0.5 -1.72983318167 +UniRef50_Q3JGP3 V4R domain protein 0.149882268261 0.5 0.350117731739 +UniRef50_S5S8C8 Aldo keto reductase protein 3.20747712912 0.499999999999 -2.70747712912 +UniRef50_G0D373 1.94161215049 0.5 -1.44161215049 +UniRef50_P31449 0.427806438546 0.5 0.0721935614538 +UniRef50_UPI0004715D35 hypothetical protein, partial 0.119844744341 0.5 0.380155255659 +UniRef50_W4SJE9 1.44701845908 0.5 -0.947018459082 +UniRef50_Q9KPW2 UDP 3 O acylglucosamine N acyltransferase 2.51139343945 0.500000000002 -2.01139343945 +UniRef50_UPI0003ACD77D 1.85188044663 0.499999999999 -1.35188044663 +UniRef50_J9YSZ8 Transcriptional regulator RofA 0.497805790165 0.5 0.00219420983505 +UniRef50_Q7VJB6 Phosphoglycerate kinase 0.000488753214057 0.5 0.499511246786 +UniRef50_B0UVX7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.494270283381 0.5 0.00572971661877 +UniRef50_UPI00037525E2 hypothetical protein 1.28235418134 0.5 -0.782354181339 +UniRef50_A6V9P7 Conserved exported protein 1.32245965066 0.5 -0.822459650664 +UniRef50_B7V5G9 Diaminopimelate epimerase 0.150694067537 0.5 0.349305932464 +UniRef50_Q4JUY7 Ribonuclease 3 0.141204310219 0.5 0.358795689781 +UniRef50_Q5HLV2 Staphylococcal secretory antigen SsaA 1.92156381902 0.499999999999 -1.42156381902 +UniRef50_B3PJA9 tRNA pseudouridine synthase D 0.36419374586 0.5 0.13580625414 +UniRef50_UPI00016A3B06 nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial 0.112013068281 0.5 0.387986931718 +UniRef50_A6GVN8 Uroporphyrinogen decarboxylase 0.486052277137 0.5 0.0139477228628 +UniRef50_A5UM22 Possible glycosyltransferase 7.08953598191 0.5 -6.58953598191 +UniRef50_Q31YX9 Elongation factor P like protein 1.812392097 0.5 -1.312392097 +UniRef50_U5MSB5 Stage V sporulation protein D 0.132633317782 0.5 0.367366682218 +UniRef50_M4MR97 Ribonuclease J 1.84855244991 0.500000000001 -1.34855244991 +UniRef50_UPI000363EEDE hypothetical protein 0.688726128936 0.5 -0.188726128936 +UniRef50_A6M3E8 0.0897873618165 0.5 0.410212638183 +UniRef50_P50360 0.493675571914 0.5 0.00632442808608 +UniRef50_P50361 2.84800470255 0.499999999999 -2.34800470255 +UniRef50_T1XMS1 High affinity iron permease 1.42689557958 0.5 -0.926895579582 +UniRef50_D8HC44 5.32911164237 0.499999999994 -4.82911164236 +UniRef50_D3E0N8 Dolichol kinase 1.45762955766 0.499999999999 -0.957629557658 +UniRef50_UPI0002558256 3 hydroxyacyl CoA dehydrogenase NAD binding protein, partial 0.299078124058 0.5 0.200921875942 +UniRef50_Q8XCJ6 Glucose 6 phosphate 1 dehydrogenase 0.732478636929 0.5 -0.232478636929 +UniRef50_O53553 0.108941860423 0.5 0.391058139577 +UniRef50_D3R582 Glycosyltransferase 0.0209328579843 0.499999999999 0.479067142017 +UniRef50_UPI0003DE98F5 0.0061054111399 0.5 0.49389458886 +UniRef50_Q9T4F6 Light independent protochlorophyllide reductase subunit N 1.09631088991 0.5 -0.59631088991 +UniRef50_UPI000262CF64 shikimate kinase 0.506724911982 0.5 -0.00672491198177 +UniRef50_O26249 Probable cobalt precorrin 6B C methyltransferase (decarboxylating) 4.02660419531 0.500000000001 -3.52660419531 +UniRef50_Q9A1B6 Non canonical purine NTP pyrophosphatase 0.33629713657 0.5 0.16370286343 +UniRef50_Q6AIT3 0.0270177729131 0.5 0.472982227087 +UniRef50_Q1IZX0 NADH quinone oxidoreductase subunit D 0.0607953896175 0.5 0.439204610383 +UniRef50_M1LR90 Pleiotropic regulatory protein DegT 0.16985263111 0.5 0.330147368891 +UniRef50_Q881N5 TonB dependent receptor, putative 1.42538809433 0.5 -0.925388094326 +UniRef50_R6GWD9 GTP binding protein TypA 0.415347238857 0.5 0.0846527611426 +UniRef50_UPI000361993A molybdenum metabolism regulator 0.715471799486 0.5 -0.215471799486 +UniRef50_C6S8I9 0.00837130276482 0.5 0.491628697235 +UniRef50_UPI000365A3DC hypothetical protein 2.19493857836 0.5 -1.69493857836 +UniRef50_I3ZMM6 Endopolygalacturonase 0.344564904962 0.5 0.155435095038 +UniRef50_A4BHS1 Phenol hydroxylase, putative 0.364209028051 0.5 0.135790971949 +UniRef50_UPI000362A7CA hypothetical protein, partial 0.669112904034 0.5 -0.169112904034 +UniRef50_W0NLZ2 Replication protein RepA 2.07225109029 0.499999999999 -1.57225109029 +UniRef50_U7J5E9 0.50429303714 0.5 -0.00429303713987 +UniRef50_M0YA73 0.91681490746 0.5 -0.41681490746 +UniRef50_I6T572 Integrase 1.71770111109 0.5 -1.21770111109 +UniRef50_Q5LNW6 Bacterial type II III secretion system protein 2.03205595108 0.5 -1.53205595108 +UniRef50_F0YCD9 0.253951594188 0.5 0.246048405812 +UniRef50_E2LMJ8 0.22472051692 0.5 0.27527948308 +UniRef50_UPI00047D6BC3 hypothetical protein 0.473918635591 0.5 0.0260813644086 +UniRef50_Q8XE94 Pyrimidine specific ribonucleoside hydrolase RihB 3.59577931265 0.499999999998 -3.09577931265 +UniRef50_UPI0003B5EAE5 branched chain amino acid ABC transporter permease 1.96560574229 0.5 -1.46560574229 +UniRef50_Q9KF57 Phosphoribosylformylglycinamidine synthase 2 0.00246990638557 0.5 0.497530093615 +UniRef50_Q9K0Y9 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.0782069833027 0.5 0.421793016698 +UniRef50_K7RRN0 Integral membrane protein 0.0307153799226 0.5 0.469284620077 +UniRef50_J5III2 0.176661934781 0.499999999999 0.32333806522 +UniRef50_B9KQG4 Flagellar hook associated protein FlgK 0.718892633512 0.5 -0.218892633512 +UniRef50_F8JV08 3.51152400495 0.499999999996 -3.01152400494 +UniRef50_Q9KXU5 60 kDa chaperonin 2 0.403710267347 0.5 0.0962897326534 +UniRef50_UPI00045DE6E8 PREDICTED 0.189286913544 0.5 0.310713086456 +UniRef50_M9RHS9 0.264456672607 0.5 0.235543327393 +UniRef50_E8U7S3 0.0172537030452 0.5 0.482746296954 +UniRef50_G0AF05 Methionine ABC transporter substrate binding protein 2.0940964728 0.5 -1.5940964728 +UniRef50_UPI00037AFDDF hypothetical protein 0.330948274726 0.5 0.169051725274 +UniRef50_UPI000319862A hypothetical protein 5.42919641333 0.499999999999 -4.92919641333 +UniRef50_B1VYS6 1.06631253439 0.5 -0.566312534386 +UniRef50_P77552 9.0075326223 0.499999999997 -8.5075326223 +UniRef50_C6STR4 1.2311419482 0.5 -0.731141948205 +UniRef50_K0TBE2 0.640013242148 0.5 -0.140013242148 +UniRef50_UPI0004786C6A hypothetical protein 0.0484672299004 0.499999999999 0.451532770101 +UniRef50_UPI0003AE56AA PREDICTED 0.0110402505915 0.5 0.488959749409 +UniRef50_Q0BTM6 3 oxoacyl [acyl carrier protein] reductase 0.377884965225 0.5 0.122115034775 +UniRef50_Q797S1 Putative PTS system EIIBC component YbbF 0.449128045742 0.5 0.0508719542585 +UniRef50_P19994 Methionine aminopeptidase 1 0.0070235289198 0.5 0.49297647108 +UniRef50_UPI000369A8C8 MULTISPECIES 0.185871404603 0.5 0.314128595397 +UniRef50_A5UMG5 Adhesin like protein 1.52191610019 0.5 -1.02191610019 +UniRef50_UPI00036FF434 hypothetical protein 3.15844351562 0.5 -2.65844351562 +UniRef50_A9KCZ5 Uroporphyrinogen decarboxylase 0.283991376713 0.5 0.216008623287 +UniRef50_A0A023S0A3 LysR family transcriptional regulator 0.0287938479702 0.5 0.47120615203 +UniRef50_UPI000370F363 hypothetical protein 1.00358983456 0.5 -0.503589834562 +UniRef50_Q3JUP4 0.165686096934 0.5 0.334313903066 +UniRef50_E6K2Y0 Carbohydrate kinase, FGGY family protein 0.0494994144327 0.5 0.450500585568 +UniRef50_UPI00035EBFF4 hypothetical protein 0.0430234635039 0.5 0.456976536496 +UniRef50_UPI0001C39734 geranylgeranyl pyrophosphate synthase 1.32448665113 0.5 -0.824486651134 +UniRef50_UPI0003ABA403 PREDICTED 0.406601578174 0.5 0.0933984218259 +UniRef50_UPI000359FA90 PREDICTED 0.495363440568 0.5 0.00463655943221 +UniRef50_UPI00036A2ED5 50S ribosomal protein L22 0.0374306103227 0.5 0.462569389678 +UniRef50_UPI0003AB3C4C hypothetical protein 0.156232635096 0.5 0.343767364904 +UniRef50_Q3J1M2 1.11575760128 0.5 -0.615757601278 +UniRef50_Q3J1M3 1.26030889272 0.5 -0.760308892724 +UniRef50_X2GZX1 rRNA methyltransferase 3.06626423032 0.5 -2.56626423032 +UniRef50_A0A017HLL9 1.22208346716 0.5 -0.722083467156 +UniRef50_G4ZKG2 0.0495979015908 0.5 0.450402098409 +UniRef50_UPI0003B5AE6D magnesium transporter MgtC 0.615286236962 0.5 -0.115286236962 +UniRef50_Q5XD38 PTS system, N acetylgalactosamine specific IID component 0.0207196172279 0.5 0.479280382772 +UniRef50_UPI0003664D62 hypothetical protein 1.82187889565 0.5 -1.32187889565 +UniRef50_A3MWA6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.789923071898 0.5 -0.289923071898 +UniRef50_S9QMF6 Flagellar protein FlaF 0.311121047223 0.5 0.188878952777 +UniRef50_UPI000190F922 leucyl phenylalanyl tRNA protein transferase 0.394525443376 0.5 0.105474556624 +UniRef50_UPI000372C446 hypothetical protein 0.141882543638 0.5 0.358117456362 +UniRef50_G8R9S1 ATP dependent RNA helicase YqfR 3.55067696009 0.500000000001 -3.05067696009 +UniRef50_Q8EA37 Ribosomal protein S12 methylthiotransferase RimO 1.32993025274 0.5 -0.82993025274 +UniRef50_Q9X0N9 Glucose 6 phosphate 1 dehydrogenase 3.06457819777 0.499999999999 -2.56457819777 +UniRef50_G1LNR6 0.279247538405 0.5 0.220752461595 +UniRef50_Q5M1U0 Heat inducible transcription repressor HrcA 0.43868484611 0.5 0.0613151538896 +UniRef50_UPI000369E51E hypothetical protein, partial 0.460486873899 0.5 0.0395131261007 +UniRef50_UPI000219386D riboflavin synthase subunit alpha 0.222554034515 0.5 0.277445965485 +UniRef50_UPI0003B6FF8D fructose 1,6 bisphosphatase 1.03711559492 0.5 -0.53711559492 +UniRef50_Q8DYP7 DNA primase 0.557968097883 0.5 -0.0579680978832 +UniRef50_A7ZUE4 Regulator of ribonuclease activity A 1.98598186022 0.5 -1.48598186022 +UniRef50_Q6A8H1 Methionyl tRNA formyltransferase 0.0644194971926 0.5 0.435580502807 +UniRef50_P31827 3.96699403249 0.5 -3.46699403249 +UniRef50_B8EJY2 Chromosomal replication initiator DnaA 0.788157799994 0.5 -0.288157799994 +UniRef50_UPI00036188FB hypothetical protein 0.0858699486729 0.499999999999 0.414130051328 +UniRef50_Q9RZE7 Probable chromosome 2 partitioning protein ParB 0.00763357971952 0.5 0.492366420281 +UniRef50_F2IXW0 1.38767259977 0.5 -0.887672599773 +UniRef50_Q5LQ23 Paraquat inducible protein A, putative 6.80477557365 0.500000000002 -6.30477557365 +UniRef50_A5UL46 Phosphoserine phosphatase, HAD family, SerB 2.20492465957 0.5 -1.70492465957 +UniRef50_Q72GT4 Adenylosuccinate synthetase 8.77524677103e-05 0.5 0.499912247532 +UniRef50_B9TIG4 1.53381835471 0.499999999999 -1.03381835471 +UniRef50_Z1ADI7 Gluconate permease 6.7786180437 0.5 -6.2786180437 +UniRef50_E1CJT9 Iron responsive element binding protein 2 variant 0.0137658666268 0.500000000001 0.486234133373 +UniRef50_P37025 2 5 RNA ligase 0.92366011856 0.5 -0.42366011856 +UniRef50_Q53075 UvrC protein 0.275164565682 0.5 0.224835434318 +UniRef50_UPI00016C40E6 nitrogen regulatory protein P II 0.197666373824 0.5 0.302333626176 +UniRef50_Q6D108 Lysophospholipid transporter LplT 1.01251878499 0.5 -0.512518784985 +UniRef50_D6ZIN1 ABC transporter, permease protein 0.080269290671 0.5 0.419730709329 +UniRef50_K0HR37 FGGY family pentulose kinase 0.00712234373051 0.5 0.49287765627 +UniRef50_U4V4Z3 Beta barrel assembly machine subunit BamF 0.53085675146 0.5 -0.0308567514603 +UniRef50_E1TCG3 ABC transporter related protein 0.709941110724 0.5 -0.209941110724 +UniRef50_UPI00046669DC hypothetical protein 0.0873976089794 0.5 0.412602391021 +UniRef50_UPI0003B73A84 cation 0.0845408703071 0.5 0.415459129693 +UniRef50_O67221 Aspartokinase 0.0162796966291 0.5 0.483720303371 +UniRef50_F5X3Q6 PTS system, ascorbate specific IIA component 2.05977211909 0.5 -1.55977211909 +UniRef50_G2JDJ5 Metal dependent hydrolase 0.0398733272717 0.5 0.460126672728 +UniRef50_H4XIK4 2.03647921097 0.500000000004 -1.53647921097 +UniRef50_F8H8U4 Molybdopterin oxidoreductase, alpha subunit 0.647838800215 0.5 -0.147838800215 +UniRef50_I7DHA8 5.0153942102 0.500000000001 -4.5153942102 +UniRef50_B7V4R0 3 oxoacyl [acyl carrier protein] synthase 3 10.3562134933 0.499999999995 -9.85621349331 +UniRef50_UPI00046E82BD aldehyde reductase 0.345147066285 0.5 0.154852933715 +UniRef50_UPI0002DD2F26 hypothetical protein 0.126795096921 0.5 0.373204903079 +UniRef50_W6RY62 0.644244530908 0.5 -0.144244530908 +UniRef50_B8EK13 Ribonuclease 3 0.738711981298 0.5 -0.238711981298 +UniRef50_UPI00036C7A0B hypothetical protein, partial 0.254674705448 0.5 0.245325294552 +UniRef50_P08722 PTS system beta glucoside specific EIIBCA component 1.9011610901 0.499999999999 -1.4011610901 +UniRef50_P33129 Outer membrane usher protein HtrE 1.05857175977 0.5 -0.558571759772 +UniRef50_J9W5M6 Dihydroxyacetone kinase like protein 0.755601050419 0.5 -0.255601050419 +UniRef50_D0K567 2.63403286819 0.5 -2.13403286819 +UniRef50_A0A059DS58 0.137187413887 0.5 0.362812586113 +UniRef50_UPI000345DC68 hypothetical protein 0.00986674404353 0.5 0.490133255957 +UniRef50_I0IQG7 2.8238165003 0.500000000002 -2.3238165003 +UniRef50_UPI0003955356 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.85824796689 0.499999999998 -1.35824796689 +UniRef50_A3PRH2 0.732280458861 0.5 -0.232280458861 +UniRef50_W9VLN3 1.31132166649 0.5 -0.811321666493 +UniRef50_C5NXP6 2.56220996187 0.499999999999 -2.06220996187 +UniRef50_Q4L3R2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.82347507252 0.500000000001 -1.32347507252 +UniRef50_A1T8W3 Imidazoleglycerol phosphate dehydratase 1.74275684268 0.5 -1.24275684268 +UniRef50_P0ABQ1 Coenzyme A biosynthesis bifunctional protein CoaBC 3.58404648662 0.5 -3.08404648662 +UniRef50_UPI00037505DF hypothetical protein 1.17903803061 0.5 -0.679038030605 +UniRef50_D7BBF8 0.016397475612 0.5 0.483602524388 +UniRef50_G2JJD3 Tartrate ABC transporter permease 0.00851252503231 0.5 0.491487474968 +UniRef50_D3QMJ7 0.965656626391 0.5 -0.465656626391 +UniRef50_Q12LS2 Phenylacetic acid degradation related protein 0.509740440003 0.5 -0.00974044000287 +UniRef50_UPI00036A4E56 hypothetical protein 0.595339413466 0.5 -0.0953394134662 +UniRef50_C5C1Y1 Tryptophanyl tRNA synthetase 0.0342236904694 0.5 0.46577630953 +UniRef50_UPI000378A2EB MULTISPECIES 1.54353476839 0.5 -1.04353476839 +UniRef50_B0S2Q1 Phosphoglucosamine mutase 0.431923401774 0.5 0.0680765982258 +UniRef50_UPI000300932B hypothetical protein 0.118898810483 0.5 0.381101189517 +UniRef50_G0DWG7 0.14454092908 0.5 0.35545907092 +UniRef50_Q4J6M5 Glyceraldehyde dehydrogenase small chain 0.298144101055 0.5 0.201855898945 +UniRef50_D4HCV7 ABC transporter, ATP binding protein 0.0291234124495 0.5 0.47087658755 +UniRef50_G2JE23 Pilus assembly protein tip associated adhesin PilY1 0.0156683081788 0.5 0.484331691821 +UniRef50_UPI0003B58E0A peptide ABC transporter ATPase 2.19709920175 0.5 -1.69709920175 +UniRef50_UPI00047856FC hypothetical protein 0.0131014200783 0.499999999999 0.486898579922 +UniRef50_P00894 Acetolactate synthase isozyme 3 small subunit 0.095688939706 0.5 0.404311060294 +UniRef50_V9WQS7 Acetyltransferase 0.716926914408 0.5 -0.216926914408 +UniRef50_P25535 2 octaprenylphenol hydroxylase 0.870102918506 0.5 -0.370102918506 +UniRef50_D3RW29 1.30624397933 0.499999999999 -0.806243979327 +UniRef50_A0A032NY89 0.294866089188 0.5 0.205133910812 +UniRef50_F4QWW5 Major Facilitator Superfamily protein 0.26937461342 0.5 0.23062538658 +UniRef50_J2VJJ9 Replication protein C C terminal region Replication protein C N terminal domain containing protein 1.06927136701 0.5 -0.569271367013 +UniRef50_F0N8C1 RNA polymerase sigma 54 factor 0.0678800138705 0.5 0.432119986129 +UniRef50_UPI0000167295 COG2986 0.0209631180275 0.5 0.479036881972 +UniRef50_A3M4V3 Transketolase 0.644169978533 0.5 -0.144169978533 +UniRef50_UPI00029ADE1C hypothetical protein, partial 0.608802095676 0.5 -0.108802095676 +UniRef50_M4JVT9 0.331077569115 0.5 0.168922430885 +UniRef50_Q1WTX2 Orotidine 5 phosphate decarboxylase 6.09258940413 0.499999999999 -5.59258940413 +UniRef50_P52636 Putative electron transport protein YccM 2.23552266261 0.499999999999 -1.73552266261 +UniRef50_A0A022J9C0 LysM domain protein 0.00905188664854 0.5 0.490948113352 +UniRef50_UPI0003717E93 phosphoribosylglycinamide synthetase 1.02616775937 0.5 -0.526167759365 +UniRef50_Q477A8 UPF0225 protein Reut_A0143 0.129870829797 0.5 0.370129170203 +UniRef50_J9GTB9 1.63830126016 0.499999999999 -1.13830126016 +UniRef50_B2IQJ8 ABC transporter, ATP binding protein 0.404920845124 0.5 0.0950791548756 +UniRef50_UPI00037869C0 hypothetical protein 1.29937699632 0.5 -0.799376996325 +UniRef50_UPI0003B48C4E oligoendopeptidase F 0.147948221276 0.5 0.352051778724 +UniRef50_V9VRW6 0.626190766947 0.5 -0.126190766947 +UniRef50_P69000 Methionine aminopeptidase 1.09577083231 0.5 -0.595770832314 +UniRef50_W3XFA1 0.981164342141 0.5 -0.481164342141 +UniRef50_G2DTB6 0.386765577374 0.5 0.113234422626 +UniRef50_UPI000476FFD2 ABC transporter permease 0.0601991209604 0.5 0.43980087904 +UniRef50_R5AEA5 Mg chelatase subunit ChlI 0.445710691205 0.5 0.0542893087948 +UniRef50_A3PN05 AAA ATPase 1.75466052245 0.5 -1.25466052245 +UniRef50_Q8CPF5 Competence damage inducible protein cinA 1.63203644531 0.5 -1.13203644531 +UniRef50_Q62JH0 Probable allantoicase 1 1.4612650167 0.5 -0.961265016705 +UniRef50_UPI00029A69ED cytochrome D ubiquinol oxidase subunit I 0.585519249079 0.5 -0.0855192490792 +UniRef50_Q163Q7 NADH quinone oxidoreductase chain E 4.99527016463 0.5 -4.49527016463 +UniRef50_L8UAB9 0.645856878962 0.5 -0.145856878962 +UniRef50_E4ZDG9 0.0298246324693 0.5 0.47017536753 +UniRef50_Q9RWD6 Histidine biosynthesis bifunctional protein HisIE 0.000102564170528 0.5 0.499897435829 +UniRef50_L0DG52 Plasmid pRiA4b ORF 3 like protein 0.330778359205 0.5 0.169221640795 +UniRef50_A0A038HZQ1 TRAP transporter, DctM like membrane domain protein 0.272648059811 0.5 0.227351940189 +UniRef50_D3PQT0 GntR family transcriptional regulator 0.00257545107527 0.5 0.497424548925 +UniRef50_UPI000252BB4B PREDICTED 1.32079775181 0.5 -0.820797751808 +UniRef50_W5P358 0.243936863031 0.5 0.256063136969 +UniRef50_UPI000248DC75 coenzyme PQQ synthesis D 0.888916109312 0.5 -0.388916109312 +UniRef50_D6X9W8 0.00867595279903 0.5 0.491324047201 +UniRef50_H7PTJ4 0.0621022679589 0.5 0.437897732041 +UniRef50_F3P3J8 ABC transport system, ATP binding protein 0.00737528894564 0.5 0.492624711055 +UniRef50_A1W4G0 Peptidyl tRNA hydrolase 0.222936474794 0.5 0.277063525206 +UniRef50_B2VGJ3 Undecaprenyl diphosphatase 4.18115847062 0.499999999995 -3.68115847062 +UniRef50_Q5LI12 Orotate phosphoribosyltransferase 0.00314939672013 0.5 0.49685060328 +UniRef50_C6SU74 1.25711687662 0.5 -0.757116876618 +UniRef50_P13254 Methionine gamma lyase 0.682895321758 0.5 -0.182895321758 +UniRef50_UPI00047299A3 ribose ABC transporter permease 0.133562427741 0.5 0.366437572259 +UniRef50_UPI0003A95AEA outer membrane specific lipoprotein transporter subunit LolC 0.865172402199 0.5 -0.365172402199 +UniRef50_J9P159 0.362393709576 0.5 0.137606290424 +UniRef50_J9P154 0.319560307807 0.5 0.180439692193 +UniRef50_V4IPG8 0.0245326809367 0.5 0.475467319063 +UniRef50_A8LRM2 Cyclopropane fatty acyl phospholipid synthase 0.904433343108 0.5 -0.404433343108 +UniRef50_A0A024C3E3 Chemotaxis protein 0.0360077263087 0.5 0.463992273691 +UniRef50_A6LX83 0.0540919182562 0.5 0.445908081744 +UniRef50_Q6ACB0 Adenylosuccinate synthetase 0.00280684674655 0.5 0.497193153253 +UniRef50_Q1GPC0 Adenylate kinase 6.27193299758 0.500000000001 -5.77193299758 +UniRef50_Q9CG80 DNA topoisomerase 1 0.031958438685 0.5 0.468041561315 +UniRef50_UPI0004777C32 glutamine amidotransferase 0.0472622095711 0.5 0.452737790429 +UniRef50_X1EYE5 Marine sediment metagenome DNA, contig 0.966241189737 0.5 -0.466241189737 +UniRef50_Q98I87 Carbamoyl phosphate synthase large chain 0.653988548873 0.5 -0.153988548873 +UniRef50_I3THI3 0.491210642358 0.5 0.00878935764164 +UniRef50_A7HQ34 Phosphate ABC transporter, periplasmic binding protein 0.348361561587 0.5 0.151638438413 +UniRef50_P0A966 Chemotaxis protein CheW 1.10318972132 0.5 -0.603189721318 +UniRef50_UPI000237708B glycerol 3 phosphate ABC transporter ATP binding protein 0.33477017052 0.5 0.16522982948 +UniRef50_Q54EW1 Serine hydroxymethyltransferase 2 0.19602080755 0.5 0.30397919245 +UniRef50_Q9KBM8 Cobyrinic acid A,C diamide synthase 0.0389196087057 0.499999999999 0.461080391295 +UniRef50_K0CGP1 TENA THI 4 family 0.0855856389248 0.5 0.414414361075 +UniRef50_Q8DX74 ABC transporter, ATP binding protein 2.4379441485 0.5 -1.9379441485 +UniRef50_UPI00036C4041 hypothetical protein 0.301245178869 0.5 0.198754821131 +UniRef50_Q54GJ2 Bifunctional purine biosynthetic protein purD 0.345604300404 0.5 0.154395699596 +UniRef50_R4REY9 Pyrazinamidase nicotinamidase PncA 0.540860093139 0.5 -0.0408600931394 +UniRef50_A6LRA0 Guanine specific ribonuclease N1 and T1 0.206516902552 0.5 0.293483097448 +UniRef50_P76034 1.37463225963 0.5 -0.874632259625 +UniRef50_P76035 1.84971459225 0.5 -1.34971459225 +UniRef50_Q6GDM0 1.16362916755 0.5 -0.663629167548 +UniRef50_Q5HF86 Glyceraldehyde 3 phosphate dehydrogenase 2 2.08528156084 0.499999999998 -1.58528156084 +UniRef50_O26931 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 23.9774589553 0.50000000002 -23.4774589553 +UniRef50_U3T7G8 0.00784762493523 0.5 0.492152375065 +UniRef50_A6LTU9 Resolvase, N terminal domain 0.155573267298 0.5 0.344426732702 +UniRef50_UPI0004792045 DEAD DEAH box helicase 0.0524049627436 0.500000000001 0.447595037256 +UniRef50_B2HTJ9 Anti anti sigma regulatory factor 0.169310324905 0.5 0.330689675095 +UniRef50_B2A4R9 Phosphoglucosamine mutase 0.0804539586401 0.5 0.41954604136 +UniRef50_Q3IVD4 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 1.81054771513 0.500000000003 -1.31054771514 +UniRef50_UPI000427273C preprotein translocase subunit SecA 0.1197949763 0.5 0.380205023701 +UniRef50_A6LXB8 SCP like extracellular 0.0479951246573 0.499999999999 0.452004875343 +UniRef50_R5XB78 0.0372619817709 0.5 0.462738018229 +UniRef50_D8U956 2.89791757199 0.500000000001 -2.39791757199 +UniRef50_A7N2M2 Protoheme IX farnesyltransferase 1 0.23144084808 0.5 0.26855915192 +UniRef50_M9RPB0 UPF0393 family membrane protein 1.64465650212 0.5 -1.14465650212 +UniRef50_Q9FW53 Putative protoporphyrinogen oxidase 0.641775619606 0.5 -0.141775619606 +UniRef50_C4J5G1 16.2827250922 0.499999999992 -15.7827250922 +UniRef50_Q28JJ5 Flagellar protein putative 0.7989160984 0.5 -0.2989160984 +UniRef50_P41363 Thermostable alkaline protease 0.157750258903 0.5 0.342249741097 +UniRef50_X5RU17 1.77237172776 0.500000000002 -1.27237172776 +UniRef50_S9S7R4 0.389785423951 0.5 0.110214576049 +UniRef50_A6LVN7 0.0520140163208 0.5 0.447985983679 +UniRef50_R7XG30 4.61527184925 0.5 -4.11527184925 +UniRef50_X0Y3X4 Marine sediment metagenome DNA, contig 0.555336054853 0.5 -0.0553360548528 +UniRef50_I3TQH5 HNH endonuclease family protein 5.58432251169 0.500000000001 -5.08432251169 +UniRef50_Q5HPH6 Prephenate dehydrogenase 4.49687492381 0.5 -3.99687492381 +UniRef50_C6XPM3 0.327196573016 0.5 0.172803426984 +UniRef50_B1KWF3 0.431482597876 0.5 0.0685174021236 +UniRef50_UPI000262970F alpha L arabinofuranosidase 1.64336533934 0.499999999999 -1.14336533934 +UniRef50_UPI00047AAC54 DNA polymerase I 0.0181742506918 0.5 0.481825749308 +UniRef50_UPI00038323B5 PREDICTED 0.685229169895 0.5 -0.185229169895 +UniRef50_M9REP5 Penicillin binding protein2 1.1390321217 0.5 -0.6390321217 +UniRef50_A3M202 Carboxy terminal protease 0.0131717424245 0.5 0.486828257575 +UniRef50_J9P1D4 0.087458102444 0.5 0.412541897556 +UniRef50_Q8XJK8 Guanylate kinase 0.976206689263 0.5 -0.476206689263 +UniRef50_Q8X844 Fructoselysine 6 phosphate deglycase 0.851353596749 0.5 -0.351353596749 +UniRef50_F4D464 Heavy metal translocating P type ATPase 0.0186204498639 0.5 0.481379550136 +UniRef50_Q2W3H2 D amino acid dehydrogenase small subunit 0.696774100649 0.5 -0.196774100649 +UniRef50_K2A0P8 Inner membrane translocator 7.44375309278 0.499999999991 -6.94375309277 +UniRef50_UPI00022CA89F PREDICTED 0.835575065144 0.5 -0.335575065144 +UniRef50_A7ZMR8 Transposase, IS605 family 0.948716618994 0.5 -0.448716618994 +UniRef50_Q8XCY9 Protease ElaD 1.22859393691 0.499999999999 -0.728593936905 +UniRef50_U7DMJ8 Flagellar basal body rod modification protein FlgD 1.72638919208 0.5 -1.22638919208 +UniRef50_A0A023XN60 Spermidine putrescine transport system permease protein potC 0.121391094229 0.5 0.378608905771 +UniRef50_UPI0003C103D9 PREDICTED 4.88102114267 0.499999999998 -4.38102114267 +UniRef50_W5X8M6 Homoserine dehydrogenase 0.292907383 0.5 0.207092617 +UniRef50_M9VAR2 0.0741036200727 0.5 0.425896379927 +UniRef50_UPI0003670873 hypothetical protein, partial 0.0570881985877 0.500000000001 0.442911801411 +UniRef50_UPI000366ECCB MULTISPECIES 0.033719211435 0.5 0.466280788565 +UniRef50_Q3IUU7 DNA directed RNA polymerase specialized sigma subunit, sigma24 3.85175177603 0.499999999999 -3.35175177603 +UniRef50_UPI00046D0748 2 keto 3 deoxy L rhamnonate aldolase, partial 0.0712655432548 0.5 0.428734456745 +UniRef50_Q3HKE5 FecR protein 1.21862835664 0.5 -0.718628356637 +UniRef50_P0A0L2 Enterotoxin type A 3.71606800855 0.500000000001 -3.21606800855 +UniRef50_S1K712 IS605 OrfB family transposase 1.24089068949 0.5 -0.740890689494 +UniRef50_W0PEX2 Dihydrodipicolinate synthase 4.53069073092 0.500000000003 -4.03069073092 +UniRef50_G2I013 Transposase 0.70937582342 0.5 -0.20937582342 +UniRef50_Q5SJP8 4 hydroxyphenylacetate 3 monooxygenase oxygenase component 0.000980915359019 0.5 0.499019084641 +UniRef50_D5ASB3 Membrane transport family protein 5.58338753584 0.499999999998 -5.08338753584 +UniRef50_UPI000423B5F5 sarcosine oxidase subunit delta 0.304865323032 0.5 0.195134676968 +UniRef50_E4N4A3 0.0534261280929 0.5 0.446573871907 +UniRef50_UPI0003B50367 hypothetical protein 0.0911528044698 0.5 0.40884719553 +UniRef50_Q2FHH3 Ribosome maturation factor RimP 3.00206519721 0.499999999998 -2.5020651972 +UniRef50_UPI0001C39687 ATPase component of various ABC type transport systems with duplicated ATPase domain, partial 1.63912541119 0.5 -1.13912541119 +UniRef50_UPI00041FE5DE zinc ABC transporter ATPase 0.165035176007 0.5 0.334964823993 +UniRef50_K7RPT1 0.0139930331423 0.5 0.486006966858 +UniRef50_X0YLP3 Marine sediment metagenome DNA, contig 0.501831492577 0.5 -0.00183149257726 +UniRef50_UPI0003717CC9 sodium 2.84778900269 0.499999999997 -2.34778900269 +UniRef50_A3M2F0 0.0172913434753 0.5 0.482708656525 +UniRef50_T1W7J5 0.672947548548 0.5 -0.172947548548 +UniRef50_J0NEL3 12.6228259495 0.500000000001 -12.1228259495 +UniRef50_UPI00036B01E6 hypothetical protein 0.0335774508655 0.5 0.466422549134 +UniRef50_M2LA35 0.98013624611 0.5 -0.48013624611 +UniRef50_UPI0004689ED6 ferrichrome ABC transporter permease 0.654852858998 0.5 -0.154852858998 +UniRef50_Q5LWE9 Rhomboid family protein 1.27598663183 0.5 -0.775986631826 +UniRef50_C3NGW2 Ketol acid reductoisomerase 0.202173195133 0.5 0.297826804867 +UniRef50_X7EDB2 1.09009259703 0.5 -0.59009259703 +UniRef50_F5M536 XRE family transcriptional regulator 3.03757454188 0.5 -2.53757454188 +UniRef50_Q55463 Bicarbonate transport ATP binding protein CmpD 3.89999905993 0.5 -3.39999905993 +UniRef50_S5K777 Internalin 0.00359886698372 0.500000000001 0.496401133015 +UniRef50_I6TW59 1.02305754222 0.5 -0.523057542225 +UniRef50_A5VNN0 0.351916589625 0.5 0.148083410375 +UniRef50_P76077 1,2 phenylacetyl CoA epoxidase, subunit A 0.952767385606 0.5 -0.452767385606 +UniRef50_A4VFR5 Ribonucleoside diphosphate reductase 0.289408775275 0.5 0.210591224725 +UniRef50_UPI00034B41D8 Fe S cluster assembly protein HesB 2.41005257309 0.5 -1.91005257309 +UniRef50_A6LWE7 Transcriptional regulator, Fis family 0.0207507763957 0.5 0.479249223604 +UniRef50_P0AC51 Zinc uptake regulation protein 0.185953489516 0.5 0.314046510484 +UniRef50_P9WKE4 Pyruvate kinase 1.59453122403 0.499999999999 -1.09453122403 +UniRef50_P39812 Glutamate synthase [NADPH] large chain 0.502122050406 0.5 -0.00212205040633 +UniRef50_UPI00046F30F3 hypothetical protein 3.52535284225 0.500000000003 -3.02535284225 +UniRef50_H3UK96 ATP dependent deoxyribonuclease subunit A domain protein 1.20537228603 0.5 -0.705372286031 +UniRef50_A0A017SWC8 0.215662453617 0.5 0.284337546383 +UniRef50_Q650K7 Tyrosine tRNA ligase 0.00415425385853 0.5 0.495845746141 +UniRef50_Q0FMK9 Replication protein C 1.61999500655 0.5 -1.11999500655 +UniRef50_UPI00047EEBF5 hypothetical protein 0.142652875908 0.5 0.357347124092 +UniRef50_U5RNQ9 Glucokinase 0.0574404920731 0.5 0.442559507927 +UniRef50_L0ILT4 ABC type nitrate sulfonate bicarbonate transport system, permease component 0.356517446989 0.5 0.143482553011 +UniRef50_Q6FFD0 D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8 0.110492853378 0.5 0.389507146622 +UniRef50_F8HF16 Thiamine diphosphokinase 1.88693514166 0.5 -1.38693514166 +UniRef50_UPI000471BA5D ATPase 0.593064797464 0.5 -0.0930647974644 +UniRef50_UPI000476F7F2 hypothetical protein 2.32974429867 0.5 -1.82974429867 +UniRef50_Q3Z8B4 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.51591853929 0.500000000002 -1.01591853929 +UniRef50_A6U6I4 FAD dependent pyridine nucleotide disulphide oxidoreductase 0.506110458327 0.5 -0.00611045832711 +UniRef50_Q6A735 Cell envelope related transcriptional attenuator 0.00930948636136 0.500000000001 0.490690513638 +UniRef50_A0A023RXV8 0.0240473813896 0.5 0.47595261861 +UniRef50_F0Y4U6 Expressed protein 0.0656000735285 0.499999999999 0.434399926472 +UniRef50_R7G9F0 0.567149468674 0.5 -0.0671494686737 +UniRef50_A0A023RXV6 0.0203794722808 0.499999999999 0.47962052772 +UniRef50_J9V1L0 5.20017799052 0.499999999999 -4.70017799052 +UniRef50_UPI0003774EF4 hypothetical protein 0.387931708398 0.5 0.112068291602 +UniRef50_UPI0003AED3B9 PREDICTED 0.302383028317 0.5 0.197616971683 +UniRef50_A0A052J8X7 Oligopeptide ABC transporter, oligopeptide binding protein 0.21016569291 0.5 0.28983430709 +UniRef50_UPI00047E2B61 DNA methyltransferase 0.52593431884 0.5 -0.0259343188404 +UniRef50_A5ULF2 Adenosylcobinamide amidohydrolase, CbiZ 0.997650898174 0.5 -0.497650898174 +UniRef50_UPI00037A1445 hypothetical protein 0.185980669056 0.5 0.314019330944 +UniRef50_UPI00036E83CD hypothetical protein, partial 2.04123318305 0.500000000001 -1.54123318305 +UniRef50_A6LZS8 HAD superfamily hydrolase, subfamily IA, variant 1 0.0476507993854 0.5 0.452349200615 +UniRef50_UPI000474ABAF isoleucine tRNA ligase 2.03412541909 0.500000000002 -1.53412541909 +UniRef50_E8SJH3 Integral membrane protein 0.697412289909 0.5 -0.197412289909 +UniRef50_P0AC95 High affinity gluconate transporter 1.66251707135 0.499999999998 -1.16251707135 +UniRef50_M4QUJ5 0.0186180111298 0.5 0.48138198887 +UniRef50_UPI0003B7B681 nickel ABC transporter permease 1.28271737378 0.500000000001 -0.782717373782 +UniRef50_UPI000475E454 MFS transporter 0.0797701788491 0.5 0.420229821151 +UniRef50_Q9RWM7 0.000890722657298 0.5 0.499109277343 +UniRef50_A0M024 Protein containing DUF124 0.34804424826 0.5 0.15195575174 +UniRef50_N8UCZ7 Magnesium translocating P type ATPase 0.0250502420724 0.5 0.474949757927 +UniRef50_J9NU89 0.912869692753 0.5 -0.412869692753 +UniRef50_I4E0M5 Cation efflux family protein 1.56058366315 0.5 -1.06058366315 +UniRef50_A4VFK3 1.06763089367 0.5 -0.567630893665 +UniRef50_A0A016YJN0 MMPL family protein 0.00792109378206 0.5 0.492078906218 +UniRef50_Q6ZD75 1.34851385001 0.5 -0.848513850014 +UniRef50_Q65H34 Shikimate dehydrogenase 0.0388584189468 0.5 0.461141581053 +UniRef50_Q6MDR3 NADH quinone oxidoreductase subunit D 0.0324869151489 0.5 0.467513084851 +UniRef50_UPI0004716349 integrase 0.890500169785 0.5 -0.390500169785 +UniRef50_G2HS60 TRAP transporter solute receptor 0.58355605656 0.5 -0.0835560565602 +UniRef50_Q8DV44 Acetylglutamate kinase 1.03675434761 0.5 -0.53675434761 +UniRef50_Q9RVJ0 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein 0.000842302048852 0.5 0.499157697951 +UniRef50_B9KTM7 0.269230245951 0.5 0.230769754049 +UniRef50_K7E0S8 2.97385584649 0.5 -2.47385584649 +UniRef50_UPI000478D511 hypothetical protein 0.00176106769587 0.5 0.498238932304 +UniRef50_Q1QTL2 Nucleoside diphosphate kinase 0.990461756966 0.5 -0.490461756966 +UniRef50_UPI000262552F EmrB QacA subfamily drug resistance transporter, partial 1.0565268962 0.5 -0.556526896198 +UniRef50_B9KW42 FAD dependent oxidoreductase 1.28803624896 0.5 -0.788036248961 +UniRef50_G7M1F6 Multi sensor signal transduction histidine kinase 0.142642705282 0.5 0.357357294718 +UniRef50_Y6NBB6 4.37608438938 0.5 -3.87608438938 +UniRef50_J9P4U3 3.51146681545 0.5 -3.01146681545 +UniRef50_UPI0004025C8B tagatose bisphosphate aldolase 0.0695735066627 0.5 0.430426493338 +UniRef50_Q2KCH9 Probable chemotaxis protein methyltransferase 3.80328992503 0.500000000001 -3.30328992503 +UniRef50_UPI00035F1E2E MULTISPECIES 12.6439721554 0.499999999999 -12.1439721554 +UniRef50_Q6GHU5 Ribonuclease HIII 1.4533583781 0.5 -0.953358378102 +UniRef50_K0M0Z9 Iron regulated ABC transporter siderophore binding protein SirA 4.9092768972 0.500000000002 -4.40927689721 +UniRef50_V4YZI7 0.165322113099 0.5 0.334677886901 +UniRef50_W5X9U5 Bifunctional protein GlmU 0.405280879028 0.5 0.0947191209717 +UniRef50_P33644 Laccase domain protein YfiH 0.456589913104 0.5 0.0434100868956 +UniRef50_C1E811 Predicted protein 1.48959953542 0.500000000002 -0.989599535426 +UniRef50_UPI0003B61251 elongation factor P 0.37562500538 0.5 0.12437499462 +UniRef50_A1B9F5 DNA ligase 4.99946195107 0.499999999995 -4.49946195107 +UniRef50_UPI0003B49C22 MarR family transcriptional regulator 3.06383766857 0.500000000003 -2.56383766857 +UniRef50_B2V232 Flagellar export protein FliJ 0.140840029096 0.5 0.359159970904 +UniRef50_M1N377 Diguanylate cyclase 0.0367661127723 0.5 0.463233887227 +UniRef50_I6SW52 Malonyl CoA ACP transacylase 1.4164020064 0.5 -0.916402006399 +UniRef50_Q9RUC2 Oxidoreductase, short chain dehydrogenase reductase family 0.00199012823275 0.5 0.498009871767 +UniRef50_B2HZE4 Cytidylate kinase 0.0326264773416 0.5 0.467373522659 +UniRef50_D4Z2Y4 10.969725674 0.5 -10.469725674 +UniRef50_I0C3R4 Thiamin pyrophosphokinase 2.89540662146 0.5 -2.39540662146 +UniRef50_E9V1P4 PE PGRS family protein 0.568608057953 0.5 -0.0686080579532 +UniRef50_P07954 Fumarate hydratase, mitochondrial 0.190343848024 0.5 0.309656151977 +UniRef50_A0A023RUB5 0.0214416672374 0.5 0.478558332763 +UniRef50_Q2JL74 DNA directed RNA polymerase subunit alpha 0.141472365439 0.5 0.358527634561 +UniRef50_Q71ZI2 Probable nicotinate nucleotide adenylyltransferase 0.000516111481112 0.5 0.499483888519 +UniRef50_UPI00046F1475 transcriptional regulator, partial 0.242221919857 0.5 0.257778080143 +UniRef50_M4X2C4 Vanillate porin OpdK 0.354191285705 0.5 0.145808714295 +UniRef50_I2DV60 Transcriptional regulator, GntR family 2.55252576111 0.5 -2.05252576111 +UniRef50_UPI0004725EBD chromosomal replication initiator protein DnaA, partial 0.428068475907 0.5 0.0719315240928 +UniRef50_Q8RFY7 Glutamate 1 semialdehyde 2,1 aminomutase 0.26104331909 0.5 0.23895668091 +UniRef50_L8E176 Internalin A 1.1120350779 0.5 -0.612035077902 +UniRef50_Q3JWB4 0.197743791831 0.5 0.302256208169 +UniRef50_W1Y5T8 Nitrate reductase, beta subunit 0.283676086495 0.5 0.216323913505 +UniRef50_Q83GV1 Glycine dehydrogenase 0.166629545193 0.5 0.333370454807 +UniRef50_UPI00036AFA97 hypothetical protein 36.6994341839 0.499999999998 -36.1994341839 +UniRef50_G3XD94 UDP N acetyl D glucosamine 6 dehydrogenase 0.778893814405 0.5 -0.278893814405 +UniRef50_B2I0W8 0.00783053172817 0.5 0.492169468272 +UniRef50_P0A2J2 High affinity branched chain amino acid transport system permease protein LivH 2.79874406588 0.5 -2.29874406588 +UniRef50_A3PJL0 Peptidoglycan binding domain 1 protein 4.26284025068 0.500000000001 -3.76284025069 +UniRef50_UPI00037D66CB coproporphyrinogen III oxidase, partial 0.827466551391 0.5 -0.327466551391 +UniRef50_R6FXK3 0.10160447518 0.5 0.39839552482 +UniRef50_N6UDA5 0.719077050337 0.5 -0.219077050337 +UniRef50_P52667 HTH type transcriptional regulator EstR 0.00968129403161 0.5 0.490318705968 +UniRef50_K2BGA3 0.327992516989 0.5 0.172007483011 +UniRef50_B1ZP10 Urea ABC transporter, ATP binding protein UrtD 3.9517646725 0.499999999999 -3.4517646725 +UniRef50_UPI0003B52280 diguanylate cyclase 0.0468308324909 0.499999999999 0.45316916751 +UniRef50_Q8K9W2 DNA gyrase subunit A 0.311720414087 0.5 0.188279585913 +UniRef50_B0V5B6 Phenylacetaldehyde dehydrogenase 0.00697564550769 0.5 0.493024354492 +UniRef50_UPI00037B050D MULTISPECIES 0.141672792541 0.5 0.358327207459 +UniRef50_K4NDV9 0.0154962090939 0.5 0.484503790906 +UniRef50_A5UL24 3.9581292466 0.500000000002 -3.4581292466 +UniRef50_A6LXE2 Efflux transporter, RND family, MFP subunit 0.730094383005 0.5 -0.230094383005 +UniRef50_B0VDR8 0.0115455193199 0.5 0.48845448068 +UniRef50_A8LHW6 Penicillin binding protein 2.75050270111 0.5 -2.25050270111 +UniRef50_UPI000305920B biotin biosynthesis protein BioY 0.150948632525 0.5 0.349051367475 +UniRef50_I4E1E6 0.391872144503 0.5 0.108127855497 +UniRef50_UPI0003503D61 PREDICTED 0.507584591461 0.5 -0.00758459146146 +UniRef50_D2NTN6 Signal transduction histidine kinase 0.125884884318 0.499999999999 0.374115115682 +UniRef50_UPI0003FCDB23 membrane protein 0.199929513129 0.5 0.300070486871 +UniRef50_Q5HQ98 Phosphoribosylglycinamide formyltransferase 2.73354295309 0.499999999998 -2.23354295309 +UniRef50_B8F444 0.00926128044162 0.5 0.490738719558 +UniRef50_D8LK39 Short chain dehydrogenase 0.00491543646977 0.5 0.49508456353 +UniRef50_UPI00016C0059 50S ribosomal protein L24 0.788957397374 0.5 -0.288957397374 +UniRef50_UPI000467D444 phosphate transporter 0.375519796515 0.5 0.124480203485 +UniRef50_Q39F07 Glutamate tRNA ligase 0.122543176355 0.5 0.377456823645 +UniRef50_A0A017HAI8 5.92219209853 0.499999999996 -5.42219209852 +UniRef50_K7T243 1.27029703282 0.5 -0.77029703282 +UniRef50_A0A058ZA26 0.88805927749 0.5 -0.38805927749 +UniRef50_P0ABU1 1,4 Dihydroxy 2 naphthoyl CoA synthase 0.899530269067 0.5 -0.399530269067 +UniRef50_R6ZTJ7 0.586330718191 0.5 -0.086330718191 +UniRef50_T1ZU11 0.0763057022913 0.5 0.423694297709 +UniRef50_Q8REM9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.634303924172 0.5 -0.134303924172 +UniRef50_Q97GH9 Acetylornithine aminotransferase 0.347040870832 0.5 0.152959129168 +UniRef50_A0A023RVA0 Haloacid dehalogenase 0.00326044135408 0.5 0.496739558646 +UniRef50_C1DJ65 0.546646167218 0.5 -0.0466461672185 +UniRef50_R3SKR3 1.75006417827 0.5 -1.25006417827 +UniRef50_Q48B49 ISPsy24, transposase orfB 0.335057853144 0.5 0.164942146856 +UniRef50_UPI000381307B hypothetical protein 0.587520079056 0.5 -0.087520079056 +UniRef50_B9KRJ2 Transcriptional regulator, IclR family 1.21529155613 0.5 -0.715291556126 +UniRef50_B2JYC2 HesB YadR YfhF family protein 1.88747472357 0.5 -1.38747472357 +UniRef50_UPI00047A2796 hypothetical protein, partial 1.86988263963 0.5 -1.36988263963 +UniRef50_UPI0003C18538 0.215790979072 0.5 0.284209020928 +UniRef50_W6A6C9 Citrate lyase subunit alpha 0.875139141768 0.5 -0.375139141768 +UniRef50_F5M379 CheW3 1.17112122862 0.5 -0.67112122862 +UniRef50_D5DEH5 Bacillolysin 0.0171043778056 0.5 0.482895622194 +UniRef50_P77348 Periplasmic murein peptide binding protein 1.46704143324 0.5 -0.967041433239 +UniRef50_Q2FJW9 7.13707131892 0.5 -6.63707131892 +UniRef50_P11347 Nitrogenase molybdenum iron protein beta chain 0.473112384394 0.5 0.0268876156064 +UniRef50_W1YLG1 0.175469029417 0.5 0.324530970583 +UniRef50_UPI00016C3D30 hypothetical protein 0.00266577431416 0.500000000001 0.497334225685 +UniRef50_G4VUH5 Conjugative transfer pilus assembly protein 0.572654539449 0.5 -0.0726545394487 +UniRef50_G5QPS2 0.313091826154 0.5 0.186908173846 +UniRef50_J3IPS9 0.0441866254118 0.5 0.455813374588 +UniRef50_P45545 3.78040446774 0.499999999999 -3.28040446774 +UniRef50_A4VWT1 0.0228298661697 0.5 0.47717013383 +UniRef50_P23890 Transcriptional activator CadC 2.02936266726 0.500000000001 -1.52936266726 +UniRef50_UPI00046617E5 thioredoxin 0.346954754611 0.5 0.153045245389 +UniRef50_Q9ZG89 GTP binding protein EngB 1.66375947269 0.5 -1.16375947269 +UniRef50_B7I5N1 Zn dependent oligopeptidase 0.0122992610232 0.5 0.487700738977 +UniRef50_UPI0003F09CB7 PREDICTED 0.148530937035 0.5 0.351469062966 +UniRef50_P0ADN4 UPF0438 protein YifE 0.407111077072 0.5 0.0928889229278 +UniRef50_A0A031QGZ5 0.279196913334 0.5 0.220803086666 +UniRef50_B4RZS0 Succinyl diaminopimelate desuccinylase 1 0.265744713385 0.5 0.234255286615 +UniRef50_O33465 Methionine synthase 0.334067761827 0.5 0.165932238173 +UniRef50_K2FJE0 Response regulator receiver protein 0.282629948768 0.5 0.217370051232 +UniRef50_Q1QTJ4 Methionyl tRNA formyltransferase 0.221807880209 0.500000000001 0.278192119791 +UniRef50_M1MD21 Lytic transglycosylase catalytic 0.147386850176 0.5 0.352613149824 +UniRef50_P76446 Protein Rtn 1.50695209068 0.5 -1.00695209068 +UniRef50_G8PUC6 2.34767770962 0.5 -1.84767770962 +UniRef50_UPI000360A87F hypothetical protein 0.0266331331315 0.5 0.473366866869 +UniRef50_Q9JTW6 Co chaperone protein HscB homolog 0.0318954697227 0.5 0.468104530277 +UniRef50_P0A9H4 Lysine decarboxylase, inducible 1.92796371676 0.500000000001 -1.42796371676 +UniRef50_Q5QX02 N acetyl gamma glutamyl phosphate reductase 0.465554481343 0.5 0.0344455186575 +UniRef50_Q9RVG1 Probable 3 hydroxybutyryl CoA dehydrogenase 0.00204418681862 0.5 0.497955813181 +UniRef50_U2Z7R5 Anti sigma B factor RsbT 0.0429200932771 0.5 0.457079906723 +UniRef50_X5DTS0 PTS system sugar specific permease protein 0.011532527286 0.5 0.488467472714 +UniRef50_P57936 Triosephosphate isomerase 6.94337837273 0.499999999996 -6.44337837272 +UniRef50_G0N365 0.855760681264 0.5 -0.355760681264 +UniRef50_Q2W170 1.45043726743 0.5 -0.950437267428 +UniRef50_B7V9E6 AMP nucleosidase 0.593057968516 0.5 -0.0930579685165 +UniRef50_A0A037Z329 Flagellar biosynthesis protein FlhA 0.162082920304 0.5 0.337917079695 +UniRef50_A0B4T1 Short chain dehydrogenase reductase SDR 0.00529740712565 0.5 0.494702592874 +UniRef50_UPI000478334E hypothetical protein, partial 0.64118229502 0.5 -0.14118229502 +UniRef50_A5IR45 10.2891214223 0.500000000006 -9.78912142226 +UniRef50_S5XW27 1.60361441598 0.5 -1.10361441598 +UniRef50_UPI00046741CB quinone oxidoreductase, partial 0.161838409821 0.5 0.338161590178 +UniRef50_A5IR41 3.22072826709 0.500000000001 -2.72072826709 +UniRef50_C7BXR1 0.0541702250365 0.5 0.445829774963 +UniRef50_UPI000373FE9D hypothetical protein 0.457936960134 0.5 0.0420630398662 +UniRef50_UPI00037D3E99 hypothetical protein 1.38135237205 0.5 -0.881352372055 +UniRef50_A4VYJ7 DNA repair protein RecO 0.391663528844 0.5 0.108336471156 +UniRef50_UPI00046FC1BE PTS mannose transporter subunit IIB 0.369703115991 0.5 0.130296884009 +UniRef50_A7X1C4 UDP N acetylmuramoylalanine D glutamate ligase 1.30988963126 0.5 -0.809889631263 +UniRef50_A3M783 Putative TonB dependent receptor 0.0149049801834 0.5 0.485095019817 +UniRef50_I6TYR1 3.4132593945 0.500000000001 -2.9132593945 +UniRef50_K0H8L8 Formimidoylglutamase 0.011058524722 0.5 0.488941475278 +UniRef50_P29930 Cobyrinic acid a,c diamide adenosyltransferase 0.985187636592 0.5 -0.485187636592 +UniRef50_D7GDB8 Permease protein of oligopeptide ABC transporter 0.0146458948112 0.5 0.485354105189 +UniRef50_UPI000410414C hypothetical protein 4.07288264754 0.500000000001 -3.57288264755 +UniRef50_D5X7D2 Stage V sporulation protein AD 0.0508009120317 0.5 0.449199087968 +UniRef50_W9B8I4 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.935297770314 0.5 -0.435297770314 +UniRef50_S5YWN2 1.44664531672 0.5 -0.946645316719 +UniRef50_Q2NHM9 MtaC2 5.16913455435 0.500000000002 -4.66913455435 +UniRef50_R6JPB3 0.790247186016 0.5 -0.290247186016 +UniRef50_Q9RY97 0.00273231280849 0.5 0.497267687191 +UniRef50_K8B5J6 Sulfate permease 0.589791380152 0.5 -0.0897913801518 +UniRef50_U6HCK7 Mitochondrial ribosomal protein l11 0.26651354704 0.5 0.23348645296 +UniRef50_A7HM68 Lysine tRNA ligase 0.373095767296 0.5 0.126904232704 +UniRef50_B3T0J2 0.434776009217 0.5 0.0652239907833 +UniRef50_B1ZBH9 Binding protein dependent transport systems inner membrane component 2.26786517482 0.499999999999 -1.76786517482 +UniRef50_UPI000203B2C5 PREDICTED 0.26139620007 0.5 0.23860379993 +UniRef50_A6M0R6 Methyl accepting chemotaxis sensory transducer 0.528650781501 0.5 -0.0286507815007 +UniRef50_UPI00046D564F hypothetical protein 0.457317394295 0.5 0.0426826057049 +UniRef50_A3PLS6 Nitrogenase molybdenum iron cofactor biosynthesis protein NifN 5.352079626 0.499999999996 -4.85207962599 +UniRef50_Q9JV28 UDP N acetylenolpyruvoylglucosamine reductase 0.0282790982896 0.5 0.471720901711 +UniRef50_F0RNS6 0.0136064562164 0.5 0.486393543784 +UniRef50_B1JXR9 3 phosphoshikimate 1 carboxyvinyltransferase 0.329219165462 0.5 0.170780834538 +UniRef50_D0B1T7 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 1.7764622389 0.499999999998 -1.2764622389 +UniRef50_F8HBY9 D alanyl D alanine carboxypeptidase DacA 0.907910942071 0.5 -0.407910942071 +UniRef50_P75838 Ribosomal protein S12 methylthiotransferase accessory factor YcaO 8.64102758042 0.5 -8.14102758042 +UniRef50_UPI0003710A9E hypothetical protein 1.05117613773 0.5 -0.551176137732 +UniRef50_Q49YE0 Putative universal stress protein SSP1056 16.742853536 0.499999999998 -16.242853536 +UniRef50_UPI00046F5838 hypothetical protein 0.0992924678365 0.5 0.400707532164 +UniRef50_A4VNP3 Ribosomal RNA large subunit methyltransferase E 0.0246154021425 0.5 0.475384597858 +UniRef50_Q3JEP4 Adenine phosphoribosyltransferase 0.476141034316 0.5 0.023858965684 +UniRef50_S6BAJ6 Phosphoenolpyruvate protein phosphotransferase 1.00409693308 0.5 -0.504096933081 +UniRef50_UPI0003634116 hypothetical protein 0.0796562059797 0.499999999999 0.420343794021 +UniRef50_P45416 2 dehydro 3 deoxygluconokinase 0.556928246995 0.5 -0.0569282469948 +UniRef50_D8JN46 Ribosomal RNA large subunit methyltransferase J 0.0169359947928 0.500000000001 0.483064005206 +UniRef50_UPI0003F071E0 PREDICTED 0.036682419193 0.5 0.463317580807 +UniRef50_UPI000473748C RNA polymerase sigma factor RpoE, partial 0.55985329438 0.5 -0.0598532943805 +UniRef50_UPI000364A43A hypothetical protein 1.79811255562 0.5 -1.29811255562 +UniRef50_S0FU34 2.19360237661 0.499999999999 -1.69360237661 +UniRef50_UPI0002628B07 chemotaxis protein 4.72165679396 0.500000000001 -4.22165679396 +UniRef50_W4UBF2 0.264841077019 0.5 0.235158922981 +UniRef50_Q72NI2 Adenylate kinase 0.299643252296 0.5 0.200356747704 +UniRef50_B2V5F8 ABC transporter, permease protein 0.0773333644544 0.5 0.422666635546 +UniRef50_A7GM37 ATP dependent helicase nuclease subunit A 0.0321804777717 0.5 0.467819522229 +UniRef50_UPI00047B0772 hypothetical protein 2.16070145778 0.499999999997 -1.66070145778 +UniRef50_UPI000023CB21 hypothetical protein FG03961.1 0.0776149877118 0.5 0.422385012288 +UniRef50_G2DUQ1 0.309676999318 0.5 0.190323000682 +UniRef50_U4V185 0.414514067494 0.5 0.0854859325063 +UniRef50_UPI00037D808D hypothetical protein 0.418631789335 0.5 0.0813682106652 +UniRef50_Q4SPK5 Chromosome 16 SCAF14537, whole genome shotgun sequence 0.0369546791501 0.5 0.46304532085 +UniRef50_UPI000378DA6C Cro Cl family transcriptional regulator 3.32699897773 0.500000000004 -2.82699897773 +UniRef50_V8G168 0.803944012187 0.5 -0.303944012187 +UniRef50_I7DG40 Glutaredoxin like protein 1.64593413919 0.499999999999 -1.14593413919 +UniRef50_Q7TUW5 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.571389658937 0.5 -0.0713896589366 +UniRef50_D2S8K3 0.14257361109 0.499999999999 0.357426388911 +UniRef50_UPI0004561009 hypothetical protein PFL1_01934 0.953091757505 0.5 -0.453091757505 +UniRef50_UPI00036D6D03 hypothetical protein 0.984178406728 0.5 -0.484178406728 +UniRef50_Q2FZ95 Cell division protein FtsL 0.769049861073 0.5 -0.269049861073 +UniRef50_O26874 Conserved protein 2.08243493333 0.500000000001 -1.58243493333 +UniRef50_C6B1R5 1.73874494546 0.5 -1.23874494546 +UniRef50_Q9RXD2 S layer like array related protein 0.00165695439402 0.5 0.498343045606 +UniRef50_K2KNE0 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 0.523651756111 0.5 -0.023651756111 +UniRef50_A0A031H669 0.533306306066 0.5 -0.0333063060657 +UniRef50_UPI00046687D5 hypothetical protein 0.278016140121 0.5 0.221983859879 +UniRef50_Q8CR42 2.3639747754 0.499999999999 -1.86397477539 +UniRef50_D8TXA0 0.62635738859 0.5 -0.12635738859 +UniRef50_Q5UWH2 Dihydrolipoyl dehydrogenase 3 0.208694819643 0.5 0.291305180357 +UniRef50_D3HEP6 Glycosyl hydrolases family 25 1.35463659778 0.5 -0.85463659778 +UniRef50_UPI00036358BA MULTISPECIES 0.479092365933 0.5 0.0209076340667 +UniRef50_R7PXM1 4.33565690272 0.500000000002 -3.83565690273 +UniRef50_F0MJV4 Fic family protein 0.0175030732948 0.5 0.482496926705 +UniRef50_G7M7B2 Cell wall hydrolase autolysin 0.170969634599 0.5 0.329030365401 +UniRef50_UPI0002C378DF 0.630018457086 0.5 -0.130018457086 +UniRef50_UPI000474191D hypothetical protein, partial 0.156361702857 0.5 0.343638297143 +UniRef50_X6GHK4 16.6820281951 0.499999999995 -16.1820281951 +UniRef50_A1B939 SufBD protein 20.974693462 0.499999999998 -20.474693462 +UniRef50_UPI0003B6276B heme oxygenase 4.15881589221 0.500000000004 -3.65881589221 +UniRef50_UPI00047A5C79 hypothetical protein 4.00031419334 0.500000000002 -3.50031419334 +UniRef50_Q9X4A7 Aminopeptidase PepS 0.0714250479567 0.5 0.428574952043 +UniRef50_Q59258 Citrate synthase 0.112186634282 0.5 0.387813365719 +UniRef50_G3VAE4 15.3480333273 0.499999999997 -14.8480333273 +UniRef50_UPI0003675D9F hypothetical protein 0.43135455372 0.5 0.0686454462799 +UniRef50_I6TZP9 0.638999736581 0.5 -0.138999736581 +UniRef50_C0AXX7 0.107515316841 0.5 0.392484683159 +UniRef50_UPI000470AA89 excinuclease ABC subunit C 1.09309390239 0.5 -0.593093902386 +UniRef50_V9QTM2 Sugar ABC transporter substrate binding protein 0.158771686194 0.5 0.341228313806 +UniRef50_B8F6Y2 L fucose mutarotase 0.298201977167 0.5 0.201798022833 +UniRef50_I4DZ32 Transcriptional regulator homolog 1.38143467623 0.5 -0.881434676235 +UniRef50_UPI0003B5B687 hypothetical protein 0.285959971457 0.5 0.214040028543 +UniRef50_I1ES83 3.13398957954 0.499999999996 -2.63398957954 +UniRef50_UPI000375CE7A hypothetical protein 0.271095838873 0.5 0.228904161127 +UniRef50_UPI00037C6964 hypothetical protein 0.188616878121 0.5 0.311383121879 +UniRef50_P67661 3.66526948125 0.500000000003 -3.16526948126 +UniRef50_UPI0004656A3F hypothetical protein 3.95809261268 0.5 -3.45809261268 +UniRef50_Q8E6C2 0.209752478608 0.5 0.290247521392 +UniRef50_UPI00039C9CFD endoribonuclease L PSP 0.402034143285 0.5 0.0979658567149 +UniRef50_G7M0U9 Short chain dehydrogenase reductase SDR 0.0627349584939 0.5 0.437265041506 +UniRef50_I0H6C5 0.510895619582 0.5 -0.0108956195821 +UniRef50_Q87JM4 Macrolide export ATP binding permease protein MacB 0.0542887541577 0.5 0.445711245843 +UniRef50_K1E5Y4 0.0477293837315 0.5 0.452270616269 +UniRef50_A6M300 0.0447614845723 0.5 0.455238515428 +UniRef50_Q9HVX2 Putative GTP cyclohydrolase 1 type 2 20.6921641228 0.499999999974 -20.1921641227 +UniRef50_A0A018D403 2.05678037011 0.499999999998 -1.5567803701 +UniRef50_O69077 Aspartokinase 1.25441827397 0.5 -0.754418273969 +UniRef50_UPI00038109FF hypothetical protein 0.209195499337 0.5 0.290804500663 +UniRef50_R6JM85 L serine dehydratase 0.212890927592 0.5 0.287109072408 +UniRef50_UPI0003B79E51 ATPase P 0.332369359449 0.5 0.167630640551 +UniRef50_UPI0003B531E1 cell division protein FtsE 0.19082628465 0.5 0.30917371535 +UniRef50_B9AD59 1.43187385481 0.499999999999 -0.93187385481 +UniRef50_A6QII5 1.27638534845 0.5 -0.776385348452 +UniRef50_D8JRT9 Peptidase S15 0.33650428189 0.5 0.16349571811 +UniRef50_UPI0003C1B2C2 PREDICTED 0.728552873738 0.5 -0.228552873738 +UniRef50_U5MNB4 ComEC Rec2 like protein 0.264498758875 0.5 0.235501241125 +UniRef50_M1MHX3 Transcriptional regulator 0.367206831855 0.5 0.132793168145 +UniRef50_Q8CN85 Copper export proteins 0.313120186558 0.5 0.186879813442 +UniRef50_Q8Z9C3 Poly polymerase I 3.51297826448 0.500000000004 -3.01297826448 +UniRef50_Q4A263 Putative membrane protein 1.76351357371 0.5 -1.26351357371 +UniRef50_UPI0003162EAB hypothetical protein 0.148507019819 0.5 0.351492980181 +UniRef50_C0QR28 Biotin synthase 0.056371850971 0.5 0.443628149029 +UniRef50_Q1LF13 Putrescine transporter subunit 0.287644933552 0.5 0.212355066448 +UniRef50_A6E2L5 0.266572583241 0.5 0.233427416759 +UniRef50_T0UNE5 2.20873716944 0.5 -1.70873716944 +UniRef50_P30851 Ribonuclease R 0.928757382424 0.5 -0.428757382424 +UniRef50_Q6GDQ0 ATP dependent Clp protease ATP binding subunit ClpL 0.928679985977 0.5 -0.428679985977 +UniRef50_Q9Z9G7 Glutamyl tRNA amidotransferase subunit A 0.0642530136779 0.5 0.435746986322 +UniRef50_D8TTJ3 0.381154209321 0.5 0.118845790679 +UniRef50_W1DFX7 Aspartokinase 2.43873289749 0.500000000001 -1.93873289749 +UniRef50_UPI000477F71F aldehyde dehydrogenase 0.667705626928 0.5 -0.167705626928 +UniRef50_UPI00037E43F6 hypothetical protein 0.693933914483 0.5 -0.193933914483 +UniRef50_P08394 RecBCD enzyme subunit RecB 0.601418141966 0.5 -0.101418141966 +UniRef50_A0A037ZMW4 3.66088176059 0.500000000001 -3.1608817606 +UniRef50_Q89XW7 Shikimate kinase 1.52688329138 0.5 -1.02688329138 +UniRef50_V5EQM5 1.24349374404 0.5 -0.74349374404 +UniRef50_R1DWA7 4.49771098113 0.5 -3.99771098113 +UniRef50_W8S8B2 Pe pgrs family protein 0.184219328404 0.5 0.315780671596 +UniRef50_R6BXV0 0.0269019554925 0.5 0.473098044507 +UniRef50_UPI00047A0085 6 phospho beta glucosidase 1.01664116319 0.5 -0.516641163195 +UniRef50_N9KV58 0.0109522445165 0.5 0.489047755483 +UniRef50_Q6AAJ1 DNA or RNA helicase of superfamily II 0.0235253552559 0.5 0.476474644744 +UniRef50_UPI0004796361 hypothetical protein 0.854669273862 0.5 -0.354669273862 +UniRef50_A6LYE4 Peptidoglycan binding domain 1 protein 0.196499886054 0.5 0.303500113946 +UniRef50_UPI000477452D histidine kinase 0.335656412051 0.5 0.164343587949 +UniRef50_A0A024C8M9 Membrane protein 0.0069325855997 0.5 0.4930674144 +UniRef50_A4FWA2 50S ribosomal protein L18P 0.764595015563 0.5 -0.264595015563 +UniRef50_P31826 Inner membrane ABC transporter ATP binding protein YddA 2.73915541324 0.499999999998 -2.23915541323 +UniRef50_UPI00036700D3 hypothetical protein 0.670789043606 0.5 -0.170789043606 +UniRef50_A4W3M3 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.455254004062 0.5 0.0447459959377 +UniRef50_Q5NNR3 7 cyano 7 deazaguanine synthase 1.03191389806 0.5 -0.531913898061 +UniRef50_A0A017T5I2 EBNA 1 protein 0.545142134878 0.5 -0.0451421348784 +UniRef50_UPI000414E366 sodium 0.435722126618 0.5 0.064277873382 +UniRef50_Q6FA05 0.0133700668482 0.5 0.486629933152 +UniRef50_R7Q4F8 Stackhouse genomic scaffold, scaffold_111 0.0933961353142 0.500000000001 0.406603864685 +UniRef50_G4RGP8 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components 8.36967894754 0.5 -7.86967894754 +UniRef50_UPI00037A37E9 hypothetical protein 0.846107582313 0.5 -0.346107582313 +UniRef50_F5LFP9 Topology modulation protein 0.133898626824 0.5 0.366101373176 +UniRef50_E9AEM9 Proteophosphoglycan 5 0.11002887441 0.5 0.38997112559 +UniRef50_K8G8E5 0.597916100943 0.5 -0.0979161009431 +UniRef50_I2BVX5 4.09971904941 0.499999999999 -3.59971904941 +UniRef50_UPI00036A1C3B hypothetical protein 0.313392296226 0.5 0.186607703774 +UniRef50_Q2LWY9 Ribonuclease H 0.403661920769 0.5 0.0963380792314 +UniRef50_Q3IW30 PreQ biosynthesis protein QueC 6.97145495683 0.499999999999 -6.47145495683 +UniRef50_M3G510 Hemolysin 0.0672801514071 0.499999999999 0.432719848594 +UniRef50_U6JRA6 0.378620696132 0.5 0.121379303868 +UniRef50_Q5HL91 Perfringolysin O regulator protein, putative 2.03668692378 0.5 -1.53668692378 +UniRef50_Q2S3M1 4 hydroxy tetrahydrodipicolinate synthase 1.29032905868 0.5 -0.790329058682 +UniRef50_UPI00046FF4AE leucine isoleucine valine transporter ATP binding subunit, partial 0.701717789763 0.5 -0.201717789763 +UniRef50_UPI000370E248 hypothetical protein 3.93493934742 0.500000000004 -3.43493934743 +UniRef50_D8U8Q0 0.651968707549 0.5 -0.151968707549 +UniRef50_Q8NYT6 3.28718061009 0.500000000006 -2.78718061009 +UniRef50_B9KNI6 0.378277346885 0.5 0.121722653115 +UniRef50_Q9RWM5 0.00767523273772 0.5 0.492324767262 +UniRef50_UPI00046849C9 ABC transporter ATP binding protein 1.2385300274 0.5 -0.738530027399 +UniRef50_D3SC43 UPF0125 protein TK90_2052 0.595743189072 0.5 -0.0957431890723 +UniRef50_R6PLE5 2.92511375545 0.499999999998 -2.42511375545 +UniRef50_A8FDI9 tRNA dimethylallyltransferase 1.48013354822 0.500000000001 -0.980133548216 +UniRef50_UPI00047E1B1C ribokinase, partial 0.313015656873 0.5 0.186984343127 +UniRef50_C6NRJ9 Amino acid permease family protein 0.278065791008 0.5 0.221934208992 +UniRef50_Q8DWY0 UPF0246 protein SAG2081 0.668637103618 0.5 -0.168637103618 +UniRef50_X5ENZ1 0.0507372021142 0.5 0.449262797886 +UniRef50_UPI0002558C15 response regulator receiver GGDEF EAL domain containing protein 0.0951391720975 0.5 0.404860827903 +UniRef50_Q3JNE0 0.095643046987 0.5 0.404356953013 +UniRef50_D2PRN7 CutC family protein 0.0557960938554 0.5 0.444203906145 +UniRef50_F0NB13 Transporter, gluconate 0.03269050766 0.5 0.46730949234 +UniRef50_UPI00040B5085 phosphodiesterase 0.426105087761 0.5 0.0738949122391 +UniRef50_W0AGC9 0.96754669193 0.5 -0.46754669193 +UniRef50_P76553 Ethanolamine utilization protein EutG 1.20897692285 0.5 -0.708976922847 +UniRef50_G8AHE6 0.516924992225 0.5 -0.0169249922246 +UniRef50_Q5HQB1 Probable quinol oxidase subunit 3 1.57137474426 0.5 -1.07137474426 +UniRef50_F2ABA7 1.25050023068 0.5 -0.750500230681 +UniRef50_Q59409 RNA polymerase sigma factor RpoS 3.1614504303 0.500000000003 -2.6614504303 +UniRef50_F9V7A7 Mannose specific PTS system IID component 0.0949918542967 0.5 0.405008145703 +UniRef50_UPI00046D26DA hypothetical protein 0.0319392790225 0.5 0.468060720978 +UniRef50_Q11CZ9 2.42796606151 0.499999999997 -1.92796606151 +UniRef50_W7E2M1 Heme oxygenase 0.364896130765 0.5 0.135103869235 +UniRef50_A2RGD6 0.676450085296 0.5 -0.176450085296 +UniRef50_P75978 2.60229472776 0.500000000001 -2.10229472776 +UniRef50_W8YNB5 0.0198904326252 0.5 0.480109567375 +UniRef50_J3L401 0.141985024193 0.5 0.358014975807 +UniRef50_E8SGA0 Teichoic acid biosynthesis protein F 1.77609338072 0.5 -1.27609338072 +UniRef50_U4T249 0.13991566419 0.5 0.36008433581 +UniRef50_UPI00029A6F6B transporter, MFS family protein, partial 0.261787505588 0.5 0.238212494412 +UniRef50_UPI00047C75A1 elongation factor G 0.0208596095281 0.499999999999 0.479140390473 +UniRef50_H9UTM9 0.497260516305 0.5 0.00273948369536 +UniRef50_Q9LEU8 Argininosuccinate lyase, chloroplastic 0.513443884246 0.5 -0.0134438842457 +UniRef50_M0RG67 0.067201894835 0.5 0.432798105165 +UniRef50_UPI0004784289 mannose 1 phosphate guanyltransferase 0.0967501450093 0.5 0.40324985499 +UniRef50_C6SR62 0.931805922299 0.5 -0.431805922299 +UniRef50_D7GIE6 Thiamine phosphate synthase 0.0931796178653 0.499999999999 0.406820382135 +UniRef50_P37615 0.668686891048 0.5 -0.168686891048 +UniRef50_F9YWL1 ABC transporter 0.0518365478347 0.5 0.448163452165 +UniRef50_P37661 Phosphoethanolamine transferase EptB 1.62045306432 0.5 -1.12045306432 +UniRef50_P77817 Cell division protein FtsZ 3.46329151878 0.499999999995 -2.96329151877 +UniRef50_UPI0003703469 ATP binding protein, partial 1.68626296338 0.5 -1.18626296338 +UniRef50_F0RP27 Peptidyl prolyl cis trans isomerase 0.0159256597042 0.5 0.484074340296 +UniRef50_Q8CNF4 NAD dependent protein deacetylase 1.98271445083 0.500000000002 -1.48271445083 +UniRef50_UPI00035FE3BB Fis family transcriptional regulator 0.993137365716 0.5 -0.493137365716 +UniRef50_B9KQH1 Flagellar biosynthesis type III secretory pathway protein 1.52980482369 0.5 -1.02980482369 +UniRef50_UPI0003A911E9 adenylosuccinate lyase 0.0650639681359 0.499999999999 0.434936031865 +UniRef50_UPI000366B7BC MULTISPECIES 0.0139076455027 0.5 0.486092354497 +UniRef50_O27441 3 isopropylmalate dehydrogenase 1.38437019741 0.5 -0.884370197406 +UniRef50_X8AYJ2 0.203731485952 0.5 0.296268514048 +UniRef50_N6UCK5 3.2871305056 0.499999999998 -2.7871305056 +UniRef50_A0A059IK34 0.683272348812 0.5 -0.183272348812 +UniRef50_UPI0003C19D83 0.193153653002 0.5 0.306846346998 +UniRef50_I0ET87 0.0432965964587 0.5 0.456703403541 +UniRef50_UPI00036DA55D hypothetical protein 0.277081875898 0.5 0.222918124102 +UniRef50_F8GLJ2 Putrescine binding periplasmic protein 0.269892622534 0.5 0.230107377466 +UniRef50_W0RQV3 0.366033428299 0.5 0.133966571701 +UniRef50_A6LS21 Sugar isomerase 0.075871960216 0.500000000001 0.424128039783 +UniRef50_V5G7G2 11.2553510864 0.499999999999 -10.7553510864 +UniRef50_Q6DQL1 Succinyl CoA ligase [ADP forming] subunit alpha 2, mitochondrial 0.731293544862 0.5 -0.231293544862 +UniRef50_UPI000366E5C2 hypothetical protein 0.317147712834 0.5 0.182852287166 +UniRef50_P0AFA6 Bacteriophage N4 adsorption protein B 0.661771678888 0.5 -0.161771678888 +UniRef50_UPI000376010F hypothetical protein 0.0459208568798 0.5 0.45407914312 +UniRef50_I1PTF2 5.01283654506 0.500000000001 -4.51283654506 +UniRef50_D9SVI0 DEAD DEAH box helicase domain protein 0.19984185702 0.5 0.30015814298 +UniRef50_A9EWC9 Probable PE_PGRS family protein 0.945697955331 0.5 -0.445697955331 +UniRef50_UPI0002556201 beta ketoacyl synthase 0.103264382569 0.5 0.396735617431 +UniRef50_A6V1S7 0.348220620528 0.5 0.151779379472 +UniRef50_UPI0004645B86 hypothetical protein 0.147811587365 0.5 0.352188412635 +UniRef50_W8AF54 0.166826761692 0.5 0.333173238308 +UniRef50_G7ZTD1 Fibrinogen and keratin 10 binding surface anchored protein 4.03025070112 0.499999999999 -3.53025070112 +UniRef50_Q16AI7 Signal peptidase I, putative 1.2349442502 0.5 -0.734944250204 +UniRef50_UPI00035D6F7F hypothetical protein 1.15098907233 0.5 -0.650989072327 +UniRef50_M3YNX9 0.319560307807 0.5 0.180439692193 +UniRef50_UPI0004636F37 ABC transporter permease 0.0143646159862 0.499999999999 0.485635384014 +UniRef50_Q9RUH1 Ornithine aminotransferase, putative 0.00119767008876 0.5 0.498802329911 +UniRef50_I6TPB9 GntR family transcriptional regulator 0.713606876457 0.5 -0.213606876457 +UniRef50_G5MQF2 0.0429572897614 0.5 0.457042710239 +UniRef50_UPI00046D6B05 hypothetical protein 0.268457434704 0.5 0.231542565296 +UniRef50_P80885 Pyruvate kinase 0.831129675138 0.5 -0.331129675138 +UniRef50_A0RMD0 NADH quinone oxidoreductase subunit B 0.0335287139652 0.5 0.466471286034 +UniRef50_M1L621 ABC transport system permease protein 0.200768434737 0.5 0.299231565263 +UniRef50_G7U7Q7 PAS domain S box 0.0116578154621 0.5 0.488342184538 +UniRef50_X8JCV2 0.909310120881 0.5 -0.409310120881 +UniRef50_B8D004 0.373584621794 0.5 0.126415378206 +UniRef50_D6SDZ2 Gamma glutamyltransferase 4.32650632154 0.5 -3.82650632154 +UniRef50_UPI0004728A87 5 amino 6 uracil reductase, partial 0.276163348665 0.5 0.223836651335 +UniRef50_UPI00046350E3 DNA primase 0.452889245493 0.5 0.0471107545075 +UniRef50_P26394 dTDP 4 dehydrorhamnose 3,5 epimerase 0.590584172467 0.5 -0.0905841724669 +UniRef50_O25396 Ferrous iron transport protein B 0.00956774689825 0.5 0.490432253102 +UniRef50_UPI0004766C33 NTP pyrophosphohydrolase 6.06848236378 0.500000000001 -5.56848236379 +UniRef50_UPI0002FD23FE hypothetical protein 0.29581469478 0.5 0.20418530522 +UniRef50_U5NN27 Antitoxin of type II toxin antitoxin system 0.853522931993 0.5 -0.353522931993 +UniRef50_UPI00036547B5 hypothetical protein 1.84412157056 0.5 -1.34412157056 +UniRef50_D8LJ34 2.21787918032 0.5 -1.71787918032 +UniRef50_C1D1L2 Glutamyl tRNA amidotransferase subunit A 0.00308265085534 0.5 0.496917349145 +UniRef50_J7M137 Adenine specific methyltransferase 0.743331952857 0.5 -0.243331952857 +UniRef50_A6LWI4 0.564393234292 0.5 -0.0643932342919 +UniRef50_Q0RS03 Glutamate 1 semialdehyde 2,1 aminomutase 0.103488162498 0.5 0.396511837501 +UniRef50_J9YUJ8 Sensor histidine kinase 0.253488512144 0.5 0.246511487856 +UniRef50_UPI0003804843 hypothetical protein 0.27080409205 0.5 0.22919590795 +UniRef50_H2IGF7 0.0887276947359 0.5 0.411272305264 +UniRef50_Q83MA0 Taurine import ATP binding protein TauB 1.83134381771 0.5 -1.33134381771 +UniRef50_W7W7I1 2.0283226394 0.5 -1.5283226394 +UniRef50_Q46786 0.817926864353 0.5 -0.317926864353 +UniRef50_Q46787 1.0871751316 0.5 -0.587175131601 +UniRef50_L2TVA4 Sugar transporter family protein 0.0728212985706 0.5 0.427178701429 +UniRef50_UPI000478BD3D hypothetical protein 0.479760169176 0.5 0.0202398308242 +UniRef50_D4HA38 OmpA family protein 0.013376147891 0.5 0.486623852109 +UniRef50_Q839B0 33 kDa chaperonin 1.92280827747 0.5 -1.42280827747 +UniRef50_T2EL78 1.33323805301 0.500000000001 -0.833238053014 +UniRef50_Q83H98 Glutamate 1 semialdehyde 2,1 aminomutase 0.0046296915691 0.5 0.495370308431 +UniRef50_M2M947 Putative 40K cell wall protein 1.26700550202 0.499999999999 -0.767005502023 +UniRef50_Q9ZLC0 Anaerobic C4 dicarboxylate transporter DcuA 0.418669042695 0.5 0.081330957305 +UniRef50_W1CHR3 Tripeptide aminopeptidase 1.37246743463 0.5 -0.872467434634 +UniRef50_UPI000470943C biopolymer transporter ExbD 0.319779692021 0.5 0.180220307979 +UniRef50_UPI000364FFFE hypothetical protein, partial 0.908386991995 0.5 -0.408386991995 +UniRef50_UPI00046D09E1 hypothetical protein 0.582673177308 0.5 -0.082673177308 +UniRef50_Q8XAF1 Propionate kinase 1.02828682404 0.5 -0.528286824041 +UniRef50_UPI000328F876 PREDICTED 0.141597979247 0.5 0.358402020753 +UniRef50_W8WCZ2 0.0627492306842 0.500000000001 0.437250769315 +UniRef50_D8JKZ8 AFG1 like ATPase family protein 0.0400665470808 0.5 0.459933452919 +UniRef50_UPI00046AD3AE dihydroxy acid dehydratase 5.43173557115 0.5 -4.93173557115 +UniRef50_UPI0003EA9F92 PREDICTED 0.0978329645316 0.5 0.402167035468 +UniRef50_UPI000475069F ribose ABC transporter permease 0.360389875228 0.5 0.139610124772 +UniRef50_Q6F700 0.704285293941 0.5 -0.204285293941 +UniRef50_UPI00016C4E46 4 alpha glucanotransferase 0.00910130288393 0.5 0.490898697116 +UniRef50_O84917 Ribulose bisphosphate carboxylase 2.21716787703 0.5 -1.71716787703 +UniRef50_UPI000329D36D PREDICTED 0.79866374771 0.5 -0.29866374771 +UniRef50_E6VFF6 Diguanylate cyclase 0.00377674232679 0.5 0.496223257673 +UniRef50_Q8XJR3 DNA polymerase III PolC type 1.03421178895 0.5 -0.534211788951 +UniRef50_Q9RS27 Alanine tRNA ligase 0.00578711261312 0.5 0.494212887387 +UniRef50_K2HSX3 1.44135295734 0.5 -0.941352957338 +UniRef50_M1MML8 0.14904114215 0.5 0.35095885785 +UniRef50_S2ZVN1 0.339057499188 0.5 0.160942500812 +UniRef50_K4MTL7 Minor ampullate spidroin 0.156862981957 0.5 0.343137018043 +UniRef50_Q67K77 Holo [acyl carrier protein] synthase 0.183718098253 0.5 0.316281901747 +UniRef50_UPI0003C1325D PREDICTED 0.391918600364 0.5 0.108081399636 +UniRef50_U3U4J5 AraC family transcriptional regulator 0.333145448461 0.5 0.166854551539 +UniRef50_H5WT01 Activator of osmoprotectant transporter ProP 1.11789731682 0.5 -0.617897316815 +UniRef50_A6TYC4 1.96768122424 0.5 -1.46768122424 +UniRef50_P77221 0.508213434628 0.5 -0.00821343462767 +UniRef50_P75821 5.70591441538 0.499999999999 -5.20591441538 +UniRef50_F0DGH5 Metallo beta lactamase superfamily protein 85.1589004202 0.499999999922 -84.6589004201 +UniRef50_P75822 4.862824747 0.500000000004 -4.362824747 +UniRef50_V6UL61 0.193521171285 0.5 0.306478828715 +UniRef50_Q8G692 Prolipoprotein diacylglyceryl transferase 0.9640311537 0.5 -0.4640311537 +UniRef50_Q51547 Phosphate specific transport system accessory protein PhoU homolog 0.0820265012092 0.5 0.417973498791 +UniRef50_L5MQQ0 0.407088553163 0.5 0.092911446837 +UniRef50_Q9JV93 4 hydroxybenzoate octaprenyltransferase 0.0345607977374 0.5 0.465439202263 +UniRef50_UPI000467BA9A glycogen debranching protein 0.151883506987 0.5 0.348116493013 +UniRef50_UPI00046F258D bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial 0.0260572357807 0.5 0.473942764219 +UniRef50_C6AA47 N acetylmuramoyl L alanine amidase 0.268131070775 0.5 0.231868929225 +UniRef50_UPI0003B42974 ABC transporter ATP binding protein 0.425830702663 0.5 0.074169297337 +UniRef50_UPI0004075F22 hypothetical protein 1.33853557835 0.5 -0.838535578348 +UniRef50_Q1LZ65 RpiR like protein 2.32319838824 0.5 -1.82319838824 +UniRef50_UPI0003808D6C hypothetical protein 0.486024426957 0.5 0.0139755730432 +UniRef50_G0DU58 Triacylglycerol lipase 0.0121310299436 0.5 0.487868970056 +UniRef50_R4NRW2 Late competence protein ComGD, access of DNA to ComEA 0.136624615239 0.5 0.363375384761 +UniRef50_UPI00037397C6 hypothetical protein 1.47856557071 0.5 -0.978565570711 +UniRef50_P39708 NADP specific glutamate dehydrogenase 2 0.111725001901 0.5 0.388274998099 +UniRef50_UPI0004645BC1 type III secretion system protein InvA 0.231938568999 0.5 0.268061431001 +UniRef50_X1BI18 Marine sediment metagenome DNA, contig 0.130949701513 0.5 0.369050298487 +UniRef50_I5QRE7 Transcriptional regulator, LysR family 2.13175553457 0.5 -1.63175553457 +UniRef50_I0W3J8 Transposase, IS4 like family protein 0.595982364359 0.5 -0.0959823643586 +UniRef50_UPI0003B748CE hypothetical protein 216.528990284 0.499999999582 -216.028990284 +UniRef50_A6M3G1 Aminoglycoside phosphotransferase 0.027615642712 0.5 0.472384357288 +UniRef50_D3QEQ2 3.31236077215 0.5 -2.81236077215 +UniRef50_I1EWK9 0.0880123480874 0.5 0.411987651912 +UniRef50_P67734 Coenzyme A biosynthesis bifunctional protein CoaBC 0.0313455131937 0.5 0.468654486806 +UniRef50_UPI0003735E21 hypothetical protein 1.67871707761 0.5 -1.17871707761 +UniRef50_B9MRP4 Argininosuccinate lyase 1.05000104587 0.5 -0.55000104587 +UniRef50_UPI0003762CE6 MULTISPECIES 0.061759525327 0.5 0.438240474673 +UniRef50_T9DD40 Hydrolase 0.2798531939 0.5 0.2201468061 +UniRef50_UPI0003C14BCE PREDICTED 0.0278084618787 0.5 0.472191538121 +UniRef50_UPI0003A2FE59 hypothetical protein 0.338550603485 0.5 0.161449396515 +UniRef50_G0NWR7 0.00390850519981 0.5 0.4960914948 +UniRef50_UPI000255BEAA ferrochelatase, partial 0.0994165482808 0.5 0.400583451719 +UniRef50_Q6GEY2 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 2.90996919111 0.500000000002 -2.40996919111 +UniRef50_UPI00022CA988 PREDICTED 5.36352826144 0.500000000002 -4.86352826144 +UniRef50_UPI00037E7536 hypothetical protein 0.422348116743 0.5 0.0776518832567 +UniRef50_Q1H2B5 Dihydroxyacetone kinase DhaK subunit 0.00993202421453 0.5 0.490067975786 +UniRef50_R9ZDS5 LysR family transcriptional regulator 0.12688733162 0.499999999999 0.373112668381 +UniRef50_Q7UFW4 Argininosuccinate synthase 0.0836216339317 0.5 0.416378366068 +UniRef50_UPI0004076A57 polyhydroxyalkanoate synthesis repressor 1.47934181787 0.5 -0.979341817869 +UniRef50_R5I2I4 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.406971789162 0.5 0.0930282108383 +UniRef50_A5UNE8 9.41646803395 0.500000000002 -8.91646803395 +UniRef50_E0NCD7 0.0692405505963 0.5 0.430759449404 +UniRef50_A5UK92 Uridylate kinase 1.17162849258 0.5 -0.671628492576 +UniRef50_UPI0003C11674 PREDICTED 0.584971865195 0.5 -0.0849718651952 +UniRef50_UPI0002492155 penicillin binding protein 2B 0.105827928176 0.5 0.394172071824 +UniRef50_C3PHK3 Aminomethyltransferase 0.0937108521238 0.5 0.406289147876 +UniRef50_R1HV07 DNA repair protein RadA 0.0434944288227 0.5 0.456505571177 +UniRef50_UPI00039EAFFC secretion protein HylD 2.21302672658 0.500000000001 -1.71302672658 +UniRef50_R7PRX3 1.44694939363 0.5 -0.946949393632 +UniRef50_Q5HPN8 tRNA dimethylallyltransferase 1.00171335113 0.5 -0.501713351135 +UniRef50_D4HD87 Histidine kinase 0.0244482517744 0.5 0.475551748226 +UniRef50_Q0C093 Guanylate kinase 0.182104673487 0.5 0.317895326513 +UniRef50_Q11SW8 Lipoprotein releasing system ATP binding protein LolD 0.1450059737 0.5 0.3549940263 +UniRef50_P37317 Integrase 1.27382446901 0.5 -0.773824469009 +UniRef50_A3CQT5 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase 1.06162158297 0.5 -0.561621582966 +UniRef50_Q5PHV8 Gamma aminobutyraldehyde dehydrogenase 2.54062133988 0.500000000002 -2.04062133988 +UniRef50_A5IU13 Transcriptional regulator, XRE family 0.764111167986 0.5 -0.264111167986 +UniRef50_Q83CY8 Putative peroxiredoxin bcp 0.00773314109895 0.499999999999 0.492266858902 +UniRef50_G2JM28 Permease 0.0115268973224 0.5 0.488473102678 +UniRef50_P33363 Periplasmic beta glucosidase 0.124440175112 0.5 0.375559824888 +UniRef50_O32142 5 hydroxyisourate hydrolase 0.442393674497 0.5 0.0576063255029 +UniRef50_P16326 Flagellar hook associated protein 3 4.483551621 0.5 -3.983551621 +UniRef50_U6A8Z3 1.34179308965 0.5 -0.841793089647 +UniRef50_A6QES9 0.104156494008 0.5 0.395843505992 +UniRef50_K0AB23 Nucleotide sugar dehydrogenase 0.494292338791 0.5 0.0057076612086 +UniRef50_R7PW62 MATE efflux family protein 1.98780679118 0.500000000001 -1.48780679118 +UniRef50_UPI0004783D2F molybdenum cofactor guanylyltransferase 0.482465182423 0.5 0.0175348175774 +UniRef50_UPI000301FF6F hypothetical protein 1.27457103986 0.5 -0.774571039862 +UniRef50_F0Y6Y0 Expressed protein 0.365951130333 0.5 0.134048869667 +UniRef50_Q1IWZ8 Glutamate 1 semialdehyde 2,1 aminomutase 0.000962375662596 0.5 0.499037624337 +UniRef50_Q2YVY3 Peptidyl tRNA hydrolase 3.29795023349 0.499999999998 -2.79795023349 +UniRef50_Q2LQB0 50S ribosomal protein L14 4.60070647333 0.499999999999 -4.10070647333 +UniRef50_A1VJH7 1.89395074467 0.499999999999 -1.39395074467 +UniRef50_R1FK72 0.625476176557 0.5 -0.125476176557 +UniRef50_UPI000395C119 PREDICTED 0.364895899394 0.5 0.135104100606 +UniRef50_B7V4B3 Transcriptional regulator Dnr 1.36613605464 0.499999999999 -0.866136054643 +UniRef50_P06988 Histidinol dehydrogenase 3.26701487712 0.500000000001 -2.76701487712 +UniRef50_E1VIL5 0.00402999460427 0.5 0.495970005396 +UniRef50_A9WHT8 Histidine ammonia lyase 0.138058744373 0.5 0.361941255627 +UniRef50_UPI00035DFFA6 hypothetical protein 3.15292732821 0.500000000001 -2.65292732821 +UniRef50_M2XUJ5 7.63215822267 0.500000000001 -7.13215822267 +UniRef50_D2ZRP6 3.91398158151 0.500000000002 -3.41398158151 +UniRef50_P26426 Lactose specific phosphotransferase enzyme IIA component 0.832001572779 0.5 -0.332001572779 +UniRef50_UPI0003824A7E sarcosine oxidase subunit alpha 0.756943567688 0.5 -0.256943567688 +UniRef50_Q45493 Ribonuclease J1 0.00924165444012 0.5 0.49075834556 +UniRef50_B9KU62 Sulfide quinone reductase 0.985663071263 0.5 -0.485663071263 +UniRef50_A4WNN0 NnrU family protein 1.32334799189 0.5 -0.823347991889 +UniRef50_UPI00037A9B52 hypothetical protein 0.00773679046238 0.499999999999 0.492263209538 +UniRef50_Q97FS6 Dihydroorotate dehydrogenase B ), electron transfer subunit 0.0347377825571 0.5 0.465262217443 +UniRef50_UPI0004105041 hypothetical protein 0.255635910849 0.5 0.244364089151 +UniRef50_F5M5N5 8.40684580374 0.500000000003 -7.90684580374 +UniRef50_F5M5N4 0.34653308992 0.5 0.15346691008 +UniRef50_J7L4H8 0.00472952755392 0.5 0.495270472446 +UniRef50_P15082 Glucitol operon repressor 0.949186166595 0.5 -0.449186166595 +UniRef50_UPI00037CACA0 hypothetical protein 0.323155139849 0.5 0.176844860151 +UniRef50_Q3J0U8 3.20389439856 0.5 -2.70389439856 +UniRef50_J0ZLP6 Putative formate dehydrogenase accessory protein 0.766207510865 0.5 -0.266207510865 +UniRef50_UPI00035F0280 hypothetical protein 0.01994274224 0.5 0.48005725776 +UniRef50_D3E016 Tungsten formylmethanofuran dehydrogenase subunit F FwdF 3.24592076415 0.499999999999 -2.74592076415 +UniRef50_M4QXD0 Transcriptional regulator, LysR family 0.0195307460023 0.5 0.480469253998 +UniRef50_UPI00034978EE MULTISPECIES 15.6780418728 0.500000000009 -15.1780418728 +UniRef50_A5IVE5 0.299957974769 0.5 0.200042025231 +UniRef50_UPI0003B6AAEA aldehyde oxidase 0.361366253293 0.5 0.138633746707 +UniRef50_P73471 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.56477083342 0.5 -1.06477083342 +UniRef50_UPI00035ED296 hypothetical protein 0.187682146258 0.5 0.312317853742 +UniRef50_Q5XAK0 Alpha glycerophosphate oxidase 0.00134427834437 0.5 0.498655721656 +UniRef50_V1SNF4 0.88124285111 0.5 -0.38124285111 +UniRef50_UPI0003B6CE87 pseudouridylate synthase 0.216600473724 0.5 0.283399526276 +UniRef50_UPI00037F0084 hypothetical protein 0.0065046865535 0.5 0.493495313447 +UniRef50_P42913 0.350228361232 0.5 0.149771638768 +UniRef50_Q5HRP5 tRNA lysidine synthase 1.66137413277 0.499999999999 -1.16137413277 +UniRef50_Q7VK48 GTP cyclohydrolase 2 0.135895204415 0.5 0.364104795585 +UniRef50_M7XY21 0.50431056252 0.5 -0.00431056251972 +UniRef50_A5UKS5 SAM dependent methyltransferase 4.44305735271 0.499999999997 -3.94305735271 +UniRef50_UPI000380CF2F hypothetical protein 0.463151486536 0.5 0.0368485134637 +UniRef50_UPI00037F7F53 hypothetical protein 3.79939153443 0.5 -3.29939153443 +UniRef50_X2LKW6 Acetyltransferase component of pyruvate dehydrogenase complex 1.6091254959 0.5 -1.1091254959 +UniRef50_Q8KBE8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.87914470642 0.5 -1.37914470642 +UniRef50_A5UP32 Purine pyrimidine phosphoribosyl transferase 1.4915665593 0.5 -0.991566559301 +UniRef50_UPI000466F53C hypothetical protein 0.641303394164 0.5 -0.141303394164 +UniRef50_UPI00042740A6 hypothetical protein 0.00770108832428 0.5 0.492298911676 +UniRef50_Q0FV17 Phenol hydroxylase, putative 5.2212287013 0.499999999999 -4.7212287013 +UniRef50_Q9RU29 0.00586153045641 0.5 0.494138469544 +UniRef50_Q81FQ1 Histidinol phosphate aminotransferase 1 0.0141925635857 0.5 0.485807436414 +UniRef50_B3RB46 Acyl CoA dehydrogenase 0.862882670142 0.5 -0.362882670142 +UniRef50_C5N5E1 1.26747935112 0.5 -0.767479351117 +UniRef50_A3M7M4 0.017524623222 0.5 0.482475376778 +UniRef50_Q606N2 Beta hexosaminidase 0.0895326624434 0.5 0.410467337557 +UniRef50_UPI0004720773 50S ribosomal protein L7 L12 0.00432116929589 0.5 0.495678830704 +UniRef50_Q82YY1 Ribosomal RNA small subunit methyltransferase G 2.83122778749 0.499999999998 -2.33122778749 +UniRef50_UPI00034CCF2C hypothetical protein 3.14063944675 0.5 -2.64063944675 +UniRef50_UPI00040B1DFA hypothetical protein 0.042393225169 0.5 0.457606774831 +UniRef50_P00497 Amidophosphoribosyltransferase 0.0599962109042 0.5 0.440003789096 +UniRef50_UPI00022CA5D5 PREDICTED 5.35574241255 0.499999999993 -4.85574241254 +UniRef50_UPI00047094BE hypothetical protein 0.0165316766898 0.5 0.48346832331 +UniRef50_J8VE04 Lipoprotein 0.934736437517 0.5 -0.434736437517 +UniRef50_A3MYE6 Recombination protein RecR 2.43215125625 0.5 -1.93215125625 +UniRef50_G7M4Z3 Transglutaminase domain containing protein 0.150423424116 0.5 0.349576575884 +UniRef50_Q8IV48 3 5 exoribonuclease 1 0.0226597520892 0.5 0.477340247911 +UniRef50_E3EXY1 0.407941915393 0.5 0.0920580846071 +UniRef50_Q3J3W5 Putative head portal protein, HK97 family 1.94967781625 0.5 -1.44967781625 +UniRef50_Q4A2Z7 Putative membrane protein 0.192751177695 0.5 0.307248822305 +UniRef50_A6LQS5 Transcriptional regulator, LysR family 0.0535919024904 0.5 0.446408097509 +UniRef50_A6LWU9 Aldo keto reductase 0.0494707711758 0.5 0.450529228824 +UniRef50_UPI000474A99F porin 5.40876625335 0.499999999999 -4.90876625335 +UniRef50_F2MU03 0.00492422364199 0.5 0.495075776358 +UniRef50_A3MA77 A G specific adenine glycosylase 0.0140505506212 0.5 0.485949449379 +UniRef50_F5X4A4 Ribose transport system substrate binding protein 1.67616719611 0.5 -1.17616719611 +UniRef50_R4LSC2 PE PGRS family protein PE_PGRS6 0.0557990490101 0.5 0.44420095099 +UniRef50_UPI0004726635 hypothetical protein, partial 0.107179483092 0.5 0.392820516907 +UniRef50_Q46844 0.755740241908 0.5 -0.255740241908 +UniRef50_Q46843 1.43674306138 0.5 -0.936743061379 +UniRef50_Q07H98 Holliday junction ATP dependent DNA helicase RuvB 0.00318581014658 0.5 0.496814189853 +UniRef50_Q0BZG8 RND transporter, hydrophobe amphiphile efflux 1 family, permease protein 1.34027901656 0.5 -0.840279016562 +UniRef50_Q46840 0.671517481243 0.5 -0.171517481243 +UniRef50_UPI000225AFF4 sulfurase 0.748962234613 0.5 -0.248962234613 +UniRef50_Q28UI8 tRNA ) methyltransferase 2.51103371792 0.5 -2.01103371792 +UniRef50_Q1IS59 NADH quinone oxidoreductase subunit D 1 0.110030249545 0.5 0.389969750455 +UniRef50_UPI0004148AB3 alpha amylase 0.458134468123 0.5 0.0418655318767 +UniRef50_U3TAS5 0.0203358582052 0.5 0.479664141795 +UniRef50_E8PJ04 BasH 0.0125259031829 0.5 0.487474096817 +UniRef50_UPI000468284E hypothetical protein 0.319560307807 0.5 0.180439692193 +UniRef50_A6U170 Tyrosine recombinase XerC 2.40480719864 0.499999999999 -1.90480719864 +UniRef50_U7DEQ6 2 ketogluconate reductase 1.1260753207 0.5 -0.626075320704 +UniRef50_UPI000475888A membane protease HflC 0.945971076049 0.5 -0.445971076049 +UniRef50_J9NV26 3.40015408046 0.5 -2.90015408046 +UniRef50_H8LI74 5.55089945092 0.5 -5.05089945092 +UniRef50_Q3HKK3 Succinylglutamatedesuccinylase aspartoacylase 1.6711012569 0.5 -1.1711012569 +UniRef50_Q31HL9 Chemotaxis response regulator protein glutamate methylesterase 6.78592851466 0.500000000009 -6.28592851467 +UniRef50_C4LJY5 Ribonuclease PH 2.1403247359 0.5 -1.6403247359 +UniRef50_Q2G1Q1 2.73095956429 0.499999999998 -2.23095956429 +UniRef50_P0AEK1 Exodeoxyribonuclease 10 2.11598318708 0.499999999998 -1.61598318708 +UniRef50_G7U431 0.0557555148845 0.5 0.444244485116 +UniRef50_A0YEQ1 0.0885515206892 0.5 0.411448479311 +UniRef50_Q2CHG7 Parallel beta helix repeat protein 0.0491207298138 0.5 0.450879270187 +UniRef50_UPI000368D551 alkanesulfonate monooxygenase 0.20340209904 0.5 0.29659790096 +UniRef50_Q47688 1.02881757136 0.5 -0.528817571362 +UniRef50_A4VVE0 FAD synthase 1.03340023787 0.5 -0.533400237874 +UniRef50_E8SJY5 0.285500610936 0.5 0.214499389064 +UniRef50_A8YUN6 Ribosomal RNA small subunit methyltransferase H 0.607939190234 0.5 -0.107939190234 +UniRef50_Q8D5J3 Alkaline phosphatase 1.91307185717 0.499999999999 -1.41307185717 +UniRef50_U5MT37 0.0942225565887 0.5 0.405777443411 +UniRef50_D5AQC4 MotA TolQ ExbB proton channel family protein 3.95973373308 0.5 -3.45973373308 +UniRef50_UPI000470CBD2 hypothetical protein 0.143028362374 0.5 0.356971637626 +UniRef50_P77308 Probable D,D dipeptide transport system permease protein DdpB 1.03575025168 0.5 -0.53575025168 +UniRef50_F0Y304 Expressed protein 1.08867138877 0.499999999999 -0.588671388772 +UniRef50_Q7UM39 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.990708243388 0.5 -0.490708243388 +UniRef50_A9FXE7 No similarity 0.00503110477218 0.5 0.494968895228 +UniRef50_P44843 Trk system potassium uptake protein TrkH 1.24509153237 0.5 -0.745091532365 +UniRef50_P59329 D cysteine desulfhydrase 0.853665393999 0.5 -0.353665393999 +UniRef50_A6TGL3 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 1.13998998114 0.5 -0.63998998114 +UniRef50_F0VS50 Peptide nickel transport system substrate binding protein 2.67251817932 0.5 -2.17251817932 +UniRef50_I3YBQ0 0.157037206506 0.5 0.342962793493 +UniRef50_B2IE93 1.51649510355 0.5 -1.01649510355 +UniRef50_Q67KZ3 Glutamyl Q tRNA synthetase 0.372357789665 0.5 0.127642210335 +UniRef50_UPI000366ED99 MULTISPECIES 0.292715424326 0.5 0.207284575674 +UniRef50_C9M6U4 Putative phage terminase, large subunit 0.166580815799 0.5 0.3334191842 +UniRef50_T4ZWD9 Membrane protein 0.0356747925178 0.5 0.464325207482 +UniRef50_UPI000381DE04 hypothetical protein 0.351697074298 0.5 0.148302925702 +UniRef50_UPI00036B1851 LysR family transcriptional regulator 0.310602443944 0.5 0.189397556056 +UniRef50_UPI00037FC311 hypothetical protein 1.45783494793 0.5 -0.957834947932 +UniRef50_UPI0003AE2DCF PREDICTED 0.0109449377222 0.5 0.489055062278 +UniRef50_P0AB69 NAD transhydrogenase subunit beta 2.02456307611 0.5 -1.52456307611 +UniRef50_F9ZV31 Flagellar hook capping protein 0.362377070911 0.5 0.137622929089 +UniRef50_Q2NHM6 MapA 1.09576388576 0.5 -0.595763885757 +UniRef50_E9W328 Phosphate acetyl butaryl transferase 0.129814954276 0.5 0.370185045724 +UniRef50_B2GBA3 Peptide deformylase 0.70288408148 0.5 -0.20288408148 +UniRef50_A8JGC3 Predicted protein 1.73962042289 0.5 -1.23962042289 +UniRef50_Q49173 Methyl coenzyme M reductase II subunit gamma 2.26720036843 0.500000000001 -1.76720036843 +UniRef50_UPI000361E906 hypothetical protein 0.224971361954 0.5 0.275028638046 +UniRef50_L8NJL2 Cytochrome B561 0.281012569023 0.5 0.218987430977 +UniRef50_Q1JAC5 Copper exporting ATPase 2.49058766748 0.500000000001 -1.99058766748 +UniRef50_Q11F32 Amino acid amide ABC transporter substrate binding protein, HAAT family 0.0911452634245 0.5 0.408854736576 +UniRef50_A0REB6 3D trihydroxycyclohexane 1,2 dione hydrolase 0.0978515668942 0.5 0.402148433106 +UniRef50_D7CVL6 Deoxynucleoside kinase 0.0144532027713 0.5 0.485546797229 +UniRef50_Q3J2S9 1.08091388316 0.5 -0.580913883161 +UniRef50_Q3J2S8 1.11966944566 0.5 -0.619669445659 +UniRef50_UPI000476165E hypothetical protein 0.085265400081 0.5 0.414734599919 +UniRef50_Q7SI97 L lactate dehydrogenase 1.49634029125 0.5 -0.99634029125 +UniRef50_Q3J2S1 3.78652555112 0.500000000001 -3.28652555112 +UniRef50_UPI0003B6C4C4 xylose ABC transporter ATP binding protein 1.47020595081 0.499999999999 -0.970205950806 +UniRef50_UPI0003650D17 hypothetical protein 3.72485523099 0.499999999999 -3.22485523099 +UniRef50_D2ZS96 5.96585724716 0.499999999998 -5.46585724716 +UniRef50_Q03XZ5 Glutamate synthase small subunit 1.37373369973 0.5 -0.87373369973 +UniRef50_E2ZP88 Proline dehydrogenase PutA 1.19370859472 0.5 -0.693708594716 +UniRef50_Q6GH28 Putative oligopeptide transport ATP binding protein oppF2 1.64508507622 0.499999999998 -1.14508507622 +UniRef50_D3E040 GTP 0.444676416638 0.5 0.0553235833615 +UniRef50_M5E5J2 Genomic scaffold, msy_sf_2 0.0828747852651 0.499999999999 0.417125214735 +UniRef50_X2H7M9 Carboxyl terminal protease 0.0789509275525 0.5 0.421049072448 +UniRef50_D0K3P5 7.11242609305 0.5 -6.61242609305 +UniRef50_A6LZI7 Isoprenylcysteine carboxyl methyltransferase 0.250232401248 0.5 0.249767598752 +UniRef50_P42305 ATP dependent RNA helicase DbpA 0.0600652412041 0.5 0.439934758796 +UniRef50_X1UZY5 Marine sediment metagenome DNA, contig 0.173874634261 0.5 0.326125365739 +UniRef50_M1M078 4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH 0.228712136617 0.5 0.271287863383 +UniRef50_UPI0003C4395A 6.87751603654 0.500000000003 -6.37751603655 +UniRef50_UPI0004709BDA branched chain amino acid ABC transporter permease 0.0327115240066 0.499999999999 0.467288475994 +UniRef50_UPI00045D6596 PREDICTED 0.0732019091378 0.5 0.426798090862 +UniRef50_U3T459 0.0363318402386 0.5 0.463668159762 +UniRef50_Q6FDS2 Putative arginyl tRNA protein transferase 0.0494324200355 0.5 0.450567579964 +UniRef50_UPI000373DE43 MULTISPECIES 0.107882610043 0.5 0.392117389957 +UniRef50_G8VBC3 Binding protein dependent transport system inner membrane component 0.0121151886931 0.5 0.487884811307 +UniRef50_Q8CSG3 Geranyltranstransferase 2.85343754838 0.500000000001 -2.35343754838 +UniRef50_F3GGP2 Short chain dehydrogenase reductase SDR 0.129915341016 0.5 0.370084658984 +UniRef50_UPI00037791F6 hypothetical protein 0.615647153772 0.5 -0.115647153772 +UniRef50_B5SHS9 Fad dependent oxidoreductase protein 0.26210988548 0.5 0.23789011452 +UniRef50_T1ZTW1 ABC transporter, permease protein 1.38302386347 0.5 -0.883023863468 +UniRef50_UPI00035E6C4D hypothetical protein 0.166028954834 0.5 0.333971045166 +UniRef50_F1YW63 0.197589717096 0.5 0.302410282904 +UniRef50_A5UMU7 Possible glycosyltransferase 6.88603869708 0.500000000002 -6.38603869708 +UniRef50_A8ACB1 Ornithine carbamoyltransferase 0.0942382918295 0.5 0.40576170817 +UniRef50_A0A024HXE7 0.0190801353862 0.5 0.480919864613 +UniRef50_I6TYS5 Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon 1.69419952574 0.5 -1.19419952574 +UniRef50_A6M012 ABC transporter related 0.051154338625 0.500000000001 0.448845661374 +UniRef50_K8CD77 Outer Membrane Siderophore Receptor IroN 0.160445904541 0.5 0.339554095459 +UniRef50_Q1MJF1 0.614853296145 0.5 -0.114853296145 +UniRef50_UPI00042B7372 Cold shock domain protein 1 0.322093898369 0.5 0.177906101631 +UniRef50_UPI00046CFC16 hypothetical protein 0.109835652604 0.499999999999 0.390164347396 +UniRef50_F1LHT5 GTP binding protein lepA 0.0988468089004 0.5 0.4011531911 +UniRef50_UPI00045D782A PREDICTED 0.332334557315 0.5 0.167665442685 +UniRef50_C6RGK7 0.28004206014 0.5 0.21995793986 +UniRef50_Q6AB49 tRNA lysidine synthase 0.0215281946461 0.5 0.478471805354 +UniRef50_K0HED9 ABC transporter ATP binding protein 0.101884436908 0.5 0.398115563092 +UniRef50_I4YTY9 TIGR00370 family protein 1.36520536725 0.5 -0.86520536725 +UniRef50_P31453 4.13170870522 0.499999999995 -3.63170870522 +UniRef50_Q30TW1 50S ribosomal protein L2 0.239050088368 0.5 0.260949911632 +UniRef50_P31455 3.25004469379 0.500000000001 -2.75004469379 +UniRef50_UPI0004666336 DNA mismatch repair protein MutS 0.0121634636448 0.5 0.487836536355 +UniRef50_E2XJC4 N acetyl anhydromuramyl L alanine amidase 0.354959798665 0.5 0.145040201335 +UniRef50_Q03AI1 Uracil DNA glycosylase 0.885939024707 0.5 -0.385939024707 +UniRef50_V1MAY9 Nitrate reductase Z subunit beta 0.295399221335 0.5 0.204600778665 +UniRef50_Q8E3B1 Probable transaldolase 0.686451866862 0.5 -0.186451866862 +UniRef50_Q6LPL4 Chromosome partition protein MukE 5.13473017092 0.499999999999 -4.63473017092 +UniRef50_Q5HGC7 Glutathione peroxidase homolog BsaA 0.707187416826 0.5 -0.207187416826 +UniRef50_UPI00037249D5 hypothetical protein 1.14617262357 0.5 -0.646172623573 +UniRef50_Q1GIW0 0.525780265135 0.5 -0.0257802651354 +UniRef50_T0V4T9 ABC transporter, ATP binding protein 3.11022271321 0.5 -2.61022271321 +UniRef50_I9CB55 0.420638479801 0.5 0.0793615201994 +UniRef50_D3E4P0 Valine tRNA ligase 1.25134203882 0.5 -0.751342038823 +UniRef50_P0CL50 Trehalose phosphate phosphatase 0.728127487411 0.5 -0.228127487411 +UniRef50_F2E3C9 Predicted protein 1.47357570529 0.5 -0.97357570529 +UniRef50_P63699 Putative bacterioferritin B 0.33466053381 0.5 0.16533946619 +UniRef50_H2I4X3 DNA double strand break repair rad50 ATPase 0.00999556585484 0.5 0.490004434145 +UniRef50_Q15RF6 Chemotaxis response regulator protein glutamate methylesterase 6.06450207254 0.50000000001 -5.56450207255 +UniRef50_F6DH03 Menaquinone biosynthesis protein 0.00178855184622 0.5 0.498211448153 +UniRef50_D3E0I7 2.01651953938 0.500000000002 -1.51651953938 +UniRef50_Q5HM27 Energy coupling factor transporter ATP binding protein EcfA1 2.45717515456 0.499999999999 -1.95717515456 +UniRef50_Q28Q52 Cation transporter 3.17669963225 0.499999999998 -2.67669963225 +UniRef50_N9BB91 0.0381245324042 0.5 0.461875467596 +UniRef50_UPI0004781DCE hypothetical protein 0.0727583666328 0.5 0.427241633367 +UniRef50_I6T5E5 Transcriptional regulator 3.48653983593 0.5 -2.98653983593 +UniRef50_Q8FQB2 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.628392621184 0.5 -0.128392621184 +UniRef50_G0DVU1 0.20314832381 0.5 0.29685167619 +UniRef50_UPI00038FD62D Potassium transporting ATPase B chain 0.00320705725448 0.5 0.496792942745 +UniRef50_Q6GE73 Heme response regulator HssR 2.48730458761 0.499999999999 -1.98730458761 +UniRef50_Q8CUA1 0.909807512817 0.5 -0.409807512817 +UniRef50_Q8CUA7 0.951120054575 0.5 -0.451120054575 +UniRef50_A4WNZ4 PfkB domain protein 1.7055898531 0.5 -1.2055898531 +UniRef50_S5XU40 Major facilitator transporter 1.69656022373 0.5 -1.19656022373 +UniRef50_UPI0004791DBF serine acetyltransferase 0.233578684747 0.5 0.266421315253 +UniRef50_UPI0003688AA7 hypothetical protein 10.5553630904 0.500000000006 -10.0553630904 +UniRef50_P25819 Catalase 2 0.20072365181 0.5 0.29927634819 +UniRef50_Q4L5F0 Thioredoxin 0.28411936009 0.5 0.21588063991 +UniRef50_B1FAB2 0.634515343606 0.5 -0.134515343606 +UniRef50_A6L4L7 ATP synthase subunit beta 0.00264000294222 0.5 0.497359997058 +UniRef50_UPI00046D5EE9 3 oxoacyl ACP synthase 0.295022897149 0.5 0.204977102851 +UniRef50_H3YRV9 0.427895193859 0.5 0.0721048061409 +UniRef50_F5I377 0.352349185668 0.5 0.147650814332 +UniRef50_D3DZA3 Heavy metal translocating P type ATPase 9.88567945205 0.500000000002 -9.38567945205 +UniRef50_Q2FV54 O acetyltransferase OatA 2.71811873726 0.500000000001 -2.21811873726 +UniRef50_UPI00047BDC90 MFS transporter 0.176072525073 0.5 0.323927474927 +UniRef50_UPI000464A202 hypothetical protein 0.145172541762 0.5 0.354827458238 +UniRef50_M1MPB4 ABC 2 family transporter protein 0.293280640489 0.5 0.206719359511 +UniRef50_B0RBL8 Putative heme synthetase 0.177552287368 0.5 0.322447712632 +UniRef50_M9R255 0.460697661442 0.5 0.0393023385581 +UniRef50_A0A025H559 Peptide ABC transporter permease 0.962808996618 0.5 -0.462808996618 +UniRef50_V9DII8 0.479692859036 0.5 0.0203071409639 +UniRef50_UPI0004757F7D aminotransferase class IV 2.34758535983 0.5 -1.84758535983 +UniRef50_A3CKK8 UPF0310 protein SSA_0254 7.00590659579 0.500000000011 -6.5059065958 +UniRef50_X7TXC3 PE family protein 0.279117655568 0.5 0.220882344432 +UniRef50_UPI000471111A hypothetical protein 0.70793951957 0.5 -0.20793951957 +UniRef50_G2G9I6 1.24489089729 0.5 -0.744890897287 +UniRef50_P75059 Spermidine putrescine import ATP binding protein PotA 1.56658122471 0.500000000002 -1.06658122471 +UniRef50_E8U7B0 Cytochrome P450 0.00670263299374 0.499999999999 0.493297367007 +UniRef50_P0AEP2 Galactose proton symporter 0.812296870823 0.5 -0.312296870823 +UniRef50_Q6FEE9 0.0230376433684 0.5 0.476962356632 +UniRef50_Q2YYE7 Truncated methicillin resistance related surface protein 1.14619991797 0.5 -0.64619991797 +UniRef50_UPI00032A143E PREDICTED 0.672586409965 0.5 -0.172586409965 +UniRef50_UPI0003F48FDB hypothetical protein TREMEDRAFT_63328 0.786048572279 0.5 -0.286048572279 +UniRef50_E3LBP8 5.68853859115 0.499999999998 -5.18853859115 +UniRef50_A0A012NRC3 3.3534464527 0.5 -2.8534464527 +UniRef50_I4CV16 0.452815470075 0.5 0.047184529925 +UniRef50_B2TLB0 Diguanylate cyclase phosphodiesterase domain 2 0.0537309780046 0.5 0.446269021996 +UniRef50_M4INN6 Rrf2 family protein 0.365938765416 0.5 0.134061234584 +UniRef50_UPI00047AF807 hypothetical protein 0.0381825695568 0.5 0.461817430443 +UniRef50_Q5HKL4 Thiamine biosynthesis protein, putative 1.04940039577 0.5 -0.549400395766 +UniRef50_Q1YIF1 0.780705054759 0.5 -0.280705054759 +UniRef50_B2TMF1 Site specific recombinase 0.0657845852511 0.5 0.434215414749 +UniRef50_F2MQN5 0.511796170074 0.5 -0.0117961700739 +UniRef50_UPI00041B00FC hypothetical protein 0.194832189545 0.5 0.305167810455 +UniRef50_UPI00029A8D4F methylmalonyl CoA mutase 0.583287114507 0.5 -0.0832871145075 +UniRef50_C1KZA0 5 deoxy glucuronate isomerase 0.0124298645331 0.5 0.487570135467 +UniRef50_Q73S23 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.284091073715 0.5 0.215908926285 +UniRef50_UPI000474601B branched chain amino acid ABC transporter ATP binding protein 0.843417580451 0.5 -0.343417580451 +UniRef50_W4TYR9 Excinuclease 0.0195113741993 0.5 0.480488625801 +UniRef50_Q8DT53 Glucose 1 phosphate adenylyltransferase 1.05569610226 0.5 -0.555696102261 +UniRef50_D3DYR5 ATP dependent DNA helicase 4.16098402897 0.499999999998 -3.66098402897 +UniRef50_UPI0003A7C5DF hypothetical protein 0.110056640034 0.5 0.389943359966 +UniRef50_UPI00037226A5 hypothetical protein 0.794815062941 0.5 -0.294815062941 +UniRef50_K1ZGV2 0.186040541493 0.5 0.313959458507 +UniRef50_B9TBU0 0.111927196178 0.5 0.388072803822 +UniRef50_A6LWA9 0.996659436934 0.5 -0.496659436934 +UniRef50_A6TG48 Aspartate ammonia ligase 0.469881403288 0.5 0.0301185967116 +UniRef50_A5F4D2 Phosphomethylpyrimidine synthase 0.269104011545 0.5 0.230895988455 +UniRef50_R5X951 0.858805512476 0.5 -0.358805512476 +UniRef50_A5D654 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.439061598632 0.5 0.0609384013678 +UniRef50_Q5HLI3 Amino acid ABC transporter, permease protein 2.35903524094 0.499999999998 -1.85903524094 +UniRef50_E1SVE3 Rhodanese domain protein 1.31046004343 0.5 -0.81046004343 +UniRef50_A6QDV1 1.35125085342 0.5 -0.85125085342 +UniRef50_W8T476 Pe pgrs family protein 1.22426772431 0.5 -0.724267724311 +UniRef50_E6MZ19 Periplasmic protein 0.035772922484 0.5 0.464227077516 +UniRef50_V6U561 0.205802414701 0.5 0.294197585299 +UniRef50_I1WGW6 0.00935056017609 0.5 0.490649439824 +UniRef50_UPI000472273F aspartate ammonia lyase 0.230117556378 0.5 0.269882443622 +UniRef50_UPI000372D1EE cold shock protein 0.423582945196 0.5 0.076417054804 +UniRef50_L0LNW6 1.16466086415 0.5 -0.664660864151 +UniRef50_D3E1A2 ATPase 1.70909299692 0.499999999999 -1.20909299692 +UniRef50_N6Y413 1.81703160566 0.5 -1.31703160566 +UniRef50_C6DIM3 p hydroxybenzoic acid efflux pump subunit AaeB 1.00902372734 0.5 -0.509023727343 +UniRef50_UPI00047D54B2 DSBA oxidoreductase 0.979049625313 0.5 -0.479049625313 +UniRef50_UPI00046ED66D aminotransferase 0.0180709727764 0.5 0.481929027224 +UniRef50_UPI000474BB68 O sialoglycoprotein endopeptidase, partial 0.479571369144 0.5 0.0204286308561 +UniRef50_D8HG20 Probable membrane protein 1.26630941223 0.499999999999 -0.766309412232 +UniRef50_UPI0003601444 hypothetical protein 1.57638228634 0.5 -1.07638228634 +UniRef50_P43270 Thermonuclease 0.735827619063 0.5 -0.235827619063 +UniRef50_H0TU43 0.270945970844 0.5 0.229054029156 +UniRef50_P33346 1.90808828387 0.5 -1.40808828387 +UniRef50_Q2GCS7 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.0148401911226 0.5 0.485159808877 +UniRef50_P44299 0.00437009080777 0.5 0.495629909192 +UniRef50_Q8TK95 Bifunctional protein FolD 2.40873759256 0.499999999999 -1.90873759255 +UniRef50_B4U336 Glutamine amidotransferase 0.882815777863 0.5 -0.382815777863 +UniRef50_R4K1J7 Iron only hydrogenase large subunit 0.101137198014 0.500000000001 0.398862801986 +UniRef50_UPI00031BEDB0 hypothetical protein 0.0491052082131 0.5 0.450894791787 +UniRef50_B7M4N2 Bifunctional protein FolD 8.19485026664 0.500000000003 -7.69485026664 +UniRef50_C6SLX9 0.35876136485 0.5 0.14123863515 +UniRef50_B9KRV7 2.0303396474 0.5 -1.5303396474 +UniRef50_U0BIJ8 Protein UshA 2.42072140602 0.500000000001 -1.92072140602 +UniRef50_A6LWU4 Non specific serine threonine protein kinase 0.409302885632 0.5 0.0906971143676 +UniRef50_E3FEG1 0.214217873213 0.5 0.285782126787 +UniRef50_H3ZXZ3 6.5829185397 0.499999999999 -6.0829185397 +UniRef50_Q6FZE7 50S ribosomal protein L17 2.44445461681 0.500000000002 -1.94445461681 +UniRef50_UPI000362A66F hypothetical protein 24.9222821283 0.499999999994 -24.4222821283 +UniRef50_UPI0001FFE9A8 diguanylate cyclase 0.490471755406 0.5 0.00952824459355 +UniRef50_UPI00035037FE PREDICTED 0.360831153912 0.5 0.139168846088 +UniRef50_U7PB07 0.378092280699 0.5 0.121907719301 +UniRef50_A5U0Z1 Succinyl CoA ligase [ADP forming] subunit beta 0.0423931764944 0.5 0.457606823505 +UniRef50_W4U4M2 Heme ABC transporter 0.131416865412 0.499999999999 0.368583134589 +UniRef50_P76458 Acetate CoA transferase subunit alpha 5.71138981404 0.499999999996 -5.21138981403 +UniRef50_A6LYU9 Integral membrane sensor hybrid histidine kinase 0.0333319197174 0.500000000001 0.466668080282 +UniRef50_Q3JI08 1.06797493837 0.5 -0.567974938366 +UniRef50_UPI000475B85D hypothetical protein 0.0275666578828 0.5 0.472433342117 +UniRef50_UPI00039FFF6C NrdR family transcriptional regulator 0.810732454637 0.5 -0.310732454637 +UniRef50_Q1GI98 Glutamate ammonia ligase adenylyltransferase 1.05733345298 0.5 -0.55733345298 +UniRef50_G7M6U6 Integral membrane sensor signal transduction histidine kinase 0.35538398952 0.5 0.14461601048 +UniRef50_G9ZVA2 1.00112500881 0.5 -0.501125008809 +UniRef50_Q9RZN0 GGDEF family protein 0.00194635267638 0.5 0.498053647323 +UniRef50_Q72GQ7 Tripartite transporter, large subunit 0.227418302179 0.5 0.272581697821 +UniRef50_UPI0003707BF1 nucleoside hydrolase, partial 1.04513129613 0.5 -0.545131296132 +UniRef50_J9YTR5 Sensor histidine kinase CsrS 1.05904686723 0.5 -0.559046867233 +UniRef50_UPI000472729B hypothetical protein 0.420785839625 0.5 0.0792141603752 +UniRef50_UPI0003791242 phosphoenolpyruvate synthase 1.94287076544 0.5 -1.44287076544 +UniRef50_Q2FJB8 Transcriptional regulator CtsR 12.5721313344 0.499999999989 -12.0721313344 +UniRef50_E3F288 0.528517222944 0.5 -0.0285172229443 +UniRef50_A3MQP5 Aminomethyltransferase 0.00625006818083 0.5 0.493749931819 +UniRef50_A0PZ54 Mur ligase family protein 0.237739283342 0.5 0.262260716658 +UniRef50_UPI000375510C hypothetical protein 0.118289661866 0.499999999999 0.381710338135 +UniRef50_UPI00037D1824 hypothetical protein 1.42895390484 0.5 -0.928953904841 +UniRef50_Q8UEY5 CTP synthase 0.107586815367 0.5 0.392413184633 +UniRef50_E4PL62 Secreted protein containing YkuD domain 0.00625802039566 0.5 0.493741979604 +UniRef50_UPI0002FE793C betaine aldehyde dehydrogenase 0.155199959627 0.5 0.344800040373 +UniRef50_T1Y8A8 Acetyltransferase 2.24967005032 0.5 -1.74967005032 +UniRef50_F0P4Z6 Oligopeptide transport ATP binding protein 1.4296051618 0.5 -0.929605161803 +UniRef50_UPI0003728158 hypothetical protein 0.006230432058 0.500000000001 0.493769567941 +UniRef50_UPI00016C46F4 hypothetical protein 0.00320321655202 0.5 0.496796783448 +UniRef50_F1SCK4 0.566015704722 0.5 -0.0660157047218 +UniRef50_P75836 0.666691114556 0.5 -0.166691114556 +UniRef50_C7IYG9 Os02g0192900 protein 0.769390411779 0.5 -0.269390411779 +UniRef50_Q9RZ97 TerF related protein 0.00207825797526 0.5 0.497921742025 +UniRef50_UPI00047811D4 leucine isoleucine valine transporter ATP binding subunit 2.01594313288 0.499999999997 -1.51594313287 +UniRef50_A6VVT1 Isochorismatase 0.0339462281896 0.5 0.46605377181 +UniRef50_UPI0001E92D34 DNA gyrase subunit B 0.0857793418474 0.5 0.414220658152 +UniRef50_C6SEB8 0.210198017906 0.5 0.289801982094 +UniRef50_C6SRB4 0.394107289671 0.5 0.105892710329 +UniRef50_P0AGD2 Superoxide dismutase [Cu Zn] 0.370606735833 0.5 0.129393264167 +UniRef50_U3ST50 3.60049754372 0.5 -3.10049754372 +UniRef50_UPI000364FC3A hypothetical protein 1.38571964486 0.5 -0.885719644862 +UniRef50_Q1GKH0 AMP dependent synthetase and ligase 1.80291787778 0.5 -1.30291787778 +UniRef50_Q2NIM1 Thymidine kinase 0.285923310802 0.5 0.214076689198 +UniRef50_E0RBR7 Periplasmic [Fe] hydrogenase large subunit 0.0326147607169 0.5 0.467385239283 +UniRef50_A4W401 Polyribonucleotide nucleotidyltransferase 5.94396167451 0.499999999998 -5.44396167451 +UniRef50_K7JKT8 9.38864427228 0.499999999994 -8.88864427227 +UniRef50_UPI0003B4FA18 membrane protein 0.832773855629 0.5 -0.332773855629 +UniRef50_UPI0003607215 hypothetical protein, partial 1.89998163004 0.5 -1.39998163004 +UniRef50_M9S617 ABC transporter permease 0.213841108234 0.5 0.286158891766 +UniRef50_R9SMZ9 Cysteine tRNA ligase 2.85559314699 0.499999999999 -2.35559314699 +UniRef50_UPI00047912C6 hypothetical protein 0.400251260847 0.5 0.0997487391532 +UniRef50_Q3HKE0 5.04423201774 0.499999999999 -4.54423201774 +UniRef50_E4Z9V1 SUN family protein 0.0362159026866 0.5 0.463784097313 +UniRef50_B9KKY7 0.293234625309 0.5 0.206765374691 +UniRef50_Q2VZ24 Peptidyl tRNA hydrolase 0.986070066144 0.5 -0.486070066144 +UniRef50_A0A015J1B9 0.470550604728 0.5 0.0294493952718 +UniRef50_Q8X5L7 Cellulose synthase catalytic subunit [UDP forming] 1.39430358501 0.499999999999 -0.894303585011 +UniRef50_X5PU41 2.4918722869 0.500000000004 -1.9918722869 +UniRef50_I6ZGW2 Type IV pilus biogenesis stability protein PilW 0.11280214165 0.5 0.38719785835 +UniRef50_B9KK81 Methyltransferase type 12 2.7889172764 0.499999999996 -2.2889172764 +UniRef50_I3X0I9 3.55435052815 0.499999999999 -3.05435052815 +UniRef50_K2J734 0.175154523376 0.5 0.324845476624 +UniRef50_UPI00035FADFC hypothetical protein 1.86449742038 0.5 -1.36449742038 +UniRef50_UPI0002B9D075 hypothetical protein 1.20845968536 0.499999999999 -0.70845968536 +UniRef50_A3XC42 0.0539719508761 0.5 0.446028049124 +UniRef50_A4WWJ4 0.224418998044 0.5 0.275581001956 +UniRef50_A1S9Z4 Oxidoreductase, GMC family 0.68594114684 0.5 -0.18594114684 +UniRef50_UPI0003B34D06 DNA topoisomerase I 0.259491289129 0.5 0.240508710871 +UniRef50_R1EBF4 0.102614803757 0.5 0.397385196243 +UniRef50_G0LQE0 Capsular polysaccharide synthesis enzyme 6.87972035465 0.499999999998 -6.37972035465 +UniRef50_Q2FHD8 Aerobic glycerol 3 phosphate dehydrogenase 1.88587134934 0.500000000001 -1.38587134934 +UniRef50_D9R3D4 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein 0.0203004135919 0.500000000001 0.479699586407 +UniRef50_Q896N6 Thymidylate kinase 0.136628564455 0.5 0.363371435545 +UniRef50_UPI00016A3FE0 spermidine putrescine ABC transporter ATPase subunit, partial 1.2878423191 0.5 -0.787842319097 +UniRef50_A7WYE6 8.72665100847 0.499999999999 -8.22665100847 +UniRef50_UPI000472C988 hypothetical protein, partial 0.0394975534494 0.5 0.460502446551 +UniRef50_K2ADN8 Putative insertion sequence transposase protein 0.858879305502 0.5 -0.358879305502 +UniRef50_A6LPZ0 Extracellular solute binding protein, family 1 0.360372339901 0.5 0.139627660099 +UniRef50_G6DGM2 0.451994002388 0.5 0.0480059976121 +UniRef50_Q9HNI0 Thermosome subunit beta 2.42222913424 0.500000000001 -1.92222913424 +UniRef50_U5UQ99 Peptidase M16 domain containing protein 2.31033482687 0.499999999999 -1.81033482687 +UniRef50_E0S0F8 Ornithine cyclodeaminase 1.93104504826 0.499999999998 -1.43104504826 +UniRef50_C7NCR9 Nickel ABC transporter, periplasmic nickel binding protein 0.102363298571 0.5 0.39763670143 +UniRef50_Q8CNS7 Replication associated protein 0.555035646843 0.5 -0.0550356468427 +UniRef50_Q6A969 DNA repair protein RecO 0.0290786229765 0.5 0.470921377024 +UniRef50_Q6AKT0 0.366813447585 0.5 0.133186552415 +UniRef50_Q88DY1 Hemin import ATP binding protein HmuV 0.00276612412093 0.5 0.497233875879 +UniRef50_Q6MML0 Threonine tRNA ligase 0.00401500061509 0.5 0.495984999385 +UniRef50_T7GQG4 Inner membrane transporter ygjI 4.04200573995 0.500000000001 -3.54200573995 +UniRef50_Q9KRQ1 Catalase 0.28443737374 0.5 0.21556262626 +UniRef50_UPI0003698FB7 hypothetical protein 0.661645495576 0.5 -0.161645495576 +UniRef50_UPI00040AA97B hypothetical protein 0.154031951487 0.5 0.345968048513 +UniRef50_P9WH42 30S ribosomal protein S1 0.0102155374455 0.5 0.489784462554 +UniRef50_T1Y598 Transporter, drug metabolite exporter family protein 2.60130608548 0.5 -2.10130608548 +UniRef50_E7MYR2 0.594045086052 0.5 -0.0940450860522 +UniRef50_Q3JSR8 Alkanesulfonate monooxygenase 0.379354100534 0.5 0.120645899466 +UniRef50_W5X5Q8 0.572589654021 0.5 -0.0725896540207 +UniRef50_Q5F6G1 UPF0213 protein NGO1598 0.00988233219664 0.5 0.490117667803 +UniRef50_B2TIV3 Phospholipase, patatin family 0.105462932038 0.5 0.394537067962 +UniRef50_R5XTT8 AMP binding enzyme 0.100819556591 0.5 0.399180443409 +UniRef50_UPI00037CADCD hypothetical protein 0.00518767473849 0.5 0.494812325261 +UniRef50_Q72C18 Acetylglutamate kinase 1.0707767651 0.5 -0.570776765103 +UniRef50_D4HAH0 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.024118003138 0.5 0.475881996862 +UniRef50_UPI000329D795 PREDICTED 0.184987873593 0.5 0.315012126407 +UniRef50_F7Y006 1.18277584613 0.499999999999 -0.682775846134 +UniRef50_O67501 Inorganic pyrophosphatase 0.0569249583322 0.5 0.443075041668 +UniRef50_UPI00041A51D0 hypothetical protein 0.853517954287 0.5 -0.353517954287 +UniRef50_B7I3M9 Peptidase M24 0.00961309234797 0.5 0.490386907652 +UniRef50_UPI000361F1B4 hypothetical protein 0.694193586161 0.5 -0.194193586161 +UniRef50_P0A5L7 Glutamine dependent NAD synthetase 0.0148590226517 0.5 0.485140977348 +UniRef50_D5BPQ5 RNA polymerase sigma factor RpoH 0.976501531064 0.5 -0.476501531064 +UniRef50_R4K8M3 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.0842959494244 0.5 0.415704050576 +UniRef50_UPI0002558C92 helix turn helix domain containing protein 3.41008879596 0.5 -2.91008879596 +UniRef50_K7YS10 0.0144176792338 0.5 0.485582320766 +UniRef50_D8JIS8 0.0417302912709 0.5 0.458269708729 +UniRef50_F8KHK9 Response regulator protein 1.18370685543 0.5 -0.683706855433 +UniRef50_P76230 Putative metabolite transport protein YdjK 2.10423710785 0.499999999998 -1.60423710785 +UniRef50_P52610 Flagellar motor switch protein FliG 0.0801664542706 0.5 0.419833545729 +UniRef50_F0N1J6 Sensor histidine kinase 0.0159301494741 0.5 0.484069850526 +UniRef50_G8PSK7 Short chain dehydrogenase reductase SDR 0.454862190885 0.5 0.0451378091153 +UniRef50_W8UIH3 Stage V sporulation protein R 0.454531937193 0.5 0.045468062807 +UniRef50_UPI000373430C 30S ribosomal protein S17 0.0546840340372 0.5 0.445315965963 +UniRef50_D4HFJ3 0.0428480967813 0.5 0.457151903219 +UniRef50_E1NZW5 PspA related protein 0.0413323523921 0.5 0.458667647608 +UniRef50_B9KQ43 Fatty acid beta hydroxylase 1.30735120818 0.5 -0.807351208176 +UniRef50_D4Z694 Ribonuclease D 2.73495052981 0.5 -2.23495052981 +UniRef50_UPI00047C78E3 RNA polymerase sigma factor RpoE 6.77921514515 0.499999999998 -6.27921514515 +UniRef50_B4U3I6 Phosphoglucosamine mutase 0.863434594462 0.5 -0.363434594462 +UniRef50_A4VZG9 Transcriptional regulator 0.840838536027 0.5 -0.340838536027 +UniRef50_UPI0003056218 hypothetical protein 0.763211906966 0.5 -0.263211906966 +UniRef50_UPI00046F7510 hypothetical protein 0.091994910915 0.5 0.408005089085 +UniRef50_Q49V01 Ribonuclease M5 1.08726105916 0.5 -0.587261059162 +UniRef50_UPI000367E0A5 hypothetical protein 0.0360214912374 0.5 0.463978508763 +UniRef50_Q8CMV9 Succinyl diaminopimelate desuccinylase 0.965275029349 0.5 -0.465275029349 +UniRef50_F2A6D1 2.41580367232 0.499999999999 -1.91580367232 +UniRef50_UPI00045E4C42 PREDICTED 0.881335720359 0.5 -0.381335720359 +UniRef50_W3ZDR5 NLPA lipofamily protein 0.642967099643 0.5 -0.142967099643 +UniRef50_G9WJ36 Ribonucleoside diphosphate reductase subunit beta 0.547399751065 0.5 -0.0473997510649 +UniRef50_F0Y9Q8 0.368757934978 0.5 0.131242065022 +UniRef50_UPI00035FAC18 hypothetical protein 0.324580640989 0.5 0.175419359011 +UniRef50_I4XUK4 Outer membrane porin, OprD family 1.11706376757 0.5 -0.617063767567 +UniRef50_Q8UII5 Glutathione synthetase 0.945523106974 0.5 -0.445523106974 +UniRef50_Q6ME50 30S ribosomal protein S8 0.00342663947941 0.5 0.49657336052 +UniRef50_UPI0003692650 hypothetical protein, partial 1.04998436645 0.5 -0.549984366446 +UniRef50_A4WSD1 Haemin degrading family protein 0.294978745671 0.5 0.205021254329 +UniRef50_Q5NP09 Leucyl phenylalanyl tRNA protein transferase 0.613807084984 0.5 -0.113807084984 +UniRef50_A5UNB6 Formylmethanofuran dehydrogenase subunit E, metal binding 1.69679225866 0.5 -1.19679225866 +UniRef50_Q9JZ25 0.0100364245855 0.5 0.489963575415 +UniRef50_A1WR07 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.0240800787799 0.5 0.475919921221 +UniRef50_Q9JZ20 0.0069004514114 0.5 0.493099548589 +UniRef50_V8UNT0 0.675667483685 0.5 -0.175667483685 +UniRef50_UPI0003730FD4 MULTISPECIES 2.81867220403 0.5 -2.31867220402 +UniRef50_P77328 Putative purine permease YbbY 0.812560951059 0.5 -0.312560951059 +UniRef50_H5NY39 1.94060040619 0.5 -1.44060040619 +UniRef50_Q20719 Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 1.63379516192 0.499999999999 -1.13379516192 +UniRef50_UPI00036C23C8 hypothetical protein, partial 1.28869212973 0.500000000001 -0.788692129732 +UniRef50_R0B9U9 0.137664931589 0.5 0.362335068411 +UniRef50_Q59637 Pyruvate dehydrogenase E1 component 0.042311760382 0.5 0.457688239618 +UniRef50_P32140 Sulfoquinovose isomerase 1.80613587923 0.5 -1.30613587923 +UniRef50_I0C1T3 Phosphohydrolase 0.335866961529 0.5 0.164133038471 +UniRef50_Q7AHT0 Protein FixC 0.743954306311 0.5 -0.243954306311 +UniRef50_A0A023RTX7 3 oxoacyl ACP reductase 0.0267361086352 0.5 0.473263891365 +UniRef50_P0ABQ3 2 hydroxy 3 oxopropionate reductase 8.49860010444 0.5 -7.99860010444 +UniRef50_Q132J0 0.284912035798 0.5 0.215087964202 +UniRef50_UPI00035C36AF hypothetical protein 2.64507116338 0.5 -2.14507116338 +UniRef50_F8DK82 Bacterial capsule synthesis protein 1.07441769502 0.5 -0.574417695017 +UniRef50_Q9HU78 Histidine utilization repressor 0.115551438707 0.5 0.384448561293 +UniRef50_Q67FW7 DeoX 0.0305455942226 0.5 0.469454405777 +UniRef50_UPI0004737BA1 hypothetical protein, partial 0.826481559734 0.5 -0.326481559734 +UniRef50_R4NT35 Bipolar DNA helicase 0.568978736893 0.5 -0.0689787368935 +UniRef50_P39629 Glucose 1 phosphate thymidylyltransferase 3.68726794402 0.499999999995 -3.18726794401 +UniRef50_A4XS92 Multisubunit potassium proton antiporter, PhaD subunit 0.768207828727 0.5 -0.268207828727 +UniRef50_UPI00047D80A6 DNA gyrase subunit A 0.304032833959 0.5 0.195967166041 +UniRef50_F0KNK5 Two component system response regulator 0.0296457070437 0.5 0.470354292956 +UniRef50_X1C4Y0 Marine sediment metagenome DNA, contig 1.21338800058 0.5 -0.713388000583 +UniRef50_N3AGF2 Cytochrome c type protein TorY 1.03744755624 0.5 -0.537447556244 +UniRef50_V0HZJ9 Cysteine desulfurase ATPase component 0.33567682659 0.5 0.16432317341 +UniRef50_UPI00047B2607 pyrroloquinoline quinone biosynthesis protein PqqD 0.593549262924 0.5 -0.0935492629245 +UniRef50_Q5HR89 Nucleoside permease NupC, putative 1.55130852433 0.5 -1.05130852433 +UniRef50_A6X846 0.289637416537 0.5 0.210362583463 +UniRef50_Q8X5R9 Multidrug resistance outer membrane protein MdtP 3.76350915093 0.499999999999 -3.26350915093 +UniRef50_R7PWL5 Tetrahydromethanopterin S methyltransferase subunit D 0.529355104498 0.5 -0.0293551044977 +UniRef50_UPI000381633B hypothetical protein 0.120490081991 0.5 0.379509918008 +UniRef50_O28392 DNA directed RNA polymerase subunit B 1.22485268062 0.5 -0.724852680616 +UniRef50_UPI000471C680 hypothetical protein 2.7665815338 0.500000000001 -2.26658153381 +UniRef50_C6C0W1 Flagellar hook capping protein 0.366065924111 0.5 0.133934075889 +UniRef50_C5ZYT0 Flagellar biosynthetic protein fliR 0.0437392417365 0.5 0.456260758264 +UniRef50_A3M994 Glycerol 3 phosphate acyltransferase 0.00765695455978 0.5 0.49234304544 +UniRef50_O27221 3.38042595429 0.500000000001 -2.88042595429 +UniRef50_UPI00046F1A00 PTS lactose transporter subunit IIC, partial 0.23001730343 0.5 0.26998269657 +UniRef50_Q8X852 Anaerobic nitric oxide reductase flavorubredoxin homolog 0.674398569913 0.5 -0.174398569913 +UniRef50_N1QCI2 0.878277196727 0.5 -0.378277196727 +UniRef50_UPI000346EB07 hypothetical protein 0.00595173737255 0.5 0.494048262628 +UniRef50_C2TQQ2 Peptidase, M23 M37 0.0656459010301 0.5 0.43435409897 +UniRef50_Q31J61 tRNA pseudouridine synthase D 0.474114951935 0.5 0.0258850480649 +UniRef50_Q82X69 DNA directed RNA polymerase subunit alpha 0.0608244018495 0.5 0.439175598151 +UniRef50_A5FRB6 Triosephosphate isomerase 0.286648086929 0.5 0.213351913071 +UniRef50_E3EYC8 1.32318019209 0.5 -0.823180192088 +UniRef50_UPI000383025F hypothetical protein 0.0261191922856 0.5 0.473880807715 +UniRef50_B9KX89 Lipopolysaccharide biosynthesis protein like protein 1.94496771736 0.5 -1.44496771736 +UniRef50_UPI0004799F87 hypothetical protein 0.157635607723 0.5 0.342364392277 +UniRef50_Q5HMA0 Putative aldehyde dehydrogenase SERP1729 1.37101119082 0.5 -0.871011190824 +UniRef50_J7Q688 1.69463799596 0.5 -1.19463799596 +UniRef50_B7GSP5 UPF0145 protein Blon_0093 BLIJ_0092 3.50184925719 0.5 -3.00184925719 +UniRef50_P0A080 Methionine aminopeptidase 1.50477552126 0.500000000002 -1.00477552126 +UniRef50_UPI00029AD8DA MgtC family protein 0.205460528213 0.500000000001 0.294539471787 +UniRef50_E4RH84 1.30964937748 0.5 -0.80964937748 +UniRef50_UPI0002E94BF6 hypothetical protein 1.06638956412 0.5 -0.566389564118 +UniRef50_I6D5L2 DNA mismatch repair endonuclease MutH 1.16475814732 0.5 -0.664758147323 +UniRef50_V6J5F5 1.60566488853 0.500000000001 -1.10566488853 +UniRef50_N3N816 1.03850443463 0.5 -0.53850443463 +UniRef50_UPI00046883B3 hypothetical protein 0.778302911906 0.5 -0.278302911906 +UniRef50_O26311 5.00512673179 0.499999999997 -4.50512673178 +UniRef50_R9GEA9 1.08007687728 0.5 -0.580076877282 +UniRef50_F2MRI9 PTS family mannose fructose sorbose porter component IIB 0.0927093694637 0.5 0.407290630536 +UniRef50_Q2IXV2 Transglutaminase like 15.6790771745 0.500000000003 -15.1790771745 +UniRef50_R4RQ23 1.03621772139 0.5 -0.536217721386 +UniRef50_A4WT49 Flagellar hook capping protein 6.40707439236 0.499999999997 -5.90707439236 +UniRef50_W4KX88 0.0206915176606 0.5 0.47930848234 +UniRef50_UPI0003822DD9 hypothetical protein 0.409644366461 0.5 0.0903556335389 +UniRef50_UPI0003599277 PREDICTED 0.246281242715 0.5 0.253718757285 +UniRef50_B1HQN9 Oxidoreductase 0.429159345575 0.5 0.0708406544247 +UniRef50_A6LQN9 0.0962070037687 0.5 0.403792996231 +UniRef50_A4VWU0 Oxidoreductase, aldo keto reductase family 0.566000190368 0.5 -0.066000190368 +UniRef50_Q71ZB6 Valine tRNA ligase 0.865280585049 0.5 -0.365280585049 +UniRef50_UPI0001745DE2 iojap like protein 0.510136742731 0.5 -0.0101367427315 +UniRef50_X2D8N8 CCR4 NOT transcription complex subunit 1 like protein 0.00631875933332 0.5 0.493681240667 +UniRef50_UPI000288BDB9 hypothetical protein 0.0313884066378 0.5 0.468611593362 +UniRef50_A8TYU1 2.28133219024 0.499999999997 -1.78133219023 +UniRef50_B1M8V2 ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein 5.62126538637 0.499999999992 -5.12126538637 +UniRef50_A8TJK3 0.704372612156 0.5 -0.204372612156 +UniRef50_A6M2M8 ABC 2 type transporter 0.101508911731 0.500000000001 0.398491088268 +UniRef50_D7GD90 DEAD DEAH box helicase domain protein 0.0111766066911 0.5 0.488823393309 +UniRef50_UPI00036142F7 hypothetical protein 0.0504757381714 0.5 0.449524261828 +UniRef50_UPI0003804935 hypothetical protein 0.401827535775 0.5 0.0981724642249 +UniRef50_P54569 1.11913675494 0.5 -0.619136754944 +UniRef50_G3N5H8 0.966476442217 0.5 -0.466476442217 +UniRef50_Q5HKG1 1.2670267891 0.5 -0.767026789101 +UniRef50_UPI00036B826D hypothetical protein, partial 0.0634141722105 0.5 0.43658582779 +UniRef50_UPI0003B72BA0 hydrogenase 0.162924664964 0.5 0.337075335036 +UniRef50_B5R316 UPF0304 protein YfbU 2.0970348181 0.500000000002 -1.5970348181 +UniRef50_F0MMC4 Amine oxidase, flavin containing 0.0440133089781 0.5 0.455986691022 +UniRef50_V9QXD6 Porin 0.780961663706 0.5 -0.280961663706 +UniRef50_A6LW94 Transcriptional regulator, DeoR family 0.0547387531339 0.500000000001 0.445261246865 +UniRef50_U3SVU2 0.485069326087 0.5 0.0149306739135 +UniRef50_B1YGB5 DNA replication and repair protein RecF 2.74108762467 0.5 -2.24108762467 +UniRef50_I6STT7 0.277650593528 0.5 0.222349406472 +UniRef50_UPI0002BC6165 bacterioferritin comigratory protein 0.0419731409757 0.5 0.458026859024 +UniRef50_M0V7T6 0.141685061255 0.5 0.358314938745 +UniRef50_F9YYL3 Ferrous iron transport protein B 0.0367406078572 0.5 0.463259392143 +UniRef50_UPI00030260F1 cation 0.626240978819 0.5 -0.126240978819 +UniRef50_N1MTR3 Type I restriction modification system,specificity subunit S 2.55175209306 0.500000000003 -2.05175209306 +UniRef50_A0A024EBR0 LmbE like protein 2.80632903985 0.5 -2.30632903985 +UniRef50_L2D926 Fimbrial like adhesin protein 2.57428553276 0.500000000002 -2.07428553276 +UniRef50_V5A3C8 7.91080164022 0.500000000002 -7.41080164022 +UniRef50_F3U4M4 GntR family transcriptional regulator 0.561662266497 0.5 -0.0616622664973 +UniRef50_UPI0004695BC6 leucyl tRNA synthetase 1.52749990131 0.5 -1.02749990131 +UniRef50_Q5FPX3 tRNA pseudouridine synthase A 15.58320422 0.499999999994 -15.08320422 +UniRef50_Q5LI89 N acetylmuramic acid 6 phosphate etherase 0.00164083285443 0.5 0.498359167146 +UniRef50_UPI00037D2323 alpha glucosidase 0.0744887684832 0.5 0.425511231516 +UniRef50_E3F031 Beta glucosidase 1.33069177875 0.5 -0.830691778752 +UniRef50_P0AES3 Glucarate dehydratase 0.399917210546 0.5 0.100082789454 +UniRef50_UPI000370BA4E hypothetical protein 0.618161973016 0.5 -0.118161973016 +UniRef50_I6SW42 Transposase 0.035284455173 0.500000000001 0.464715544826 +UniRef50_UPI000360A0FF phosphoribosylglycinamide synthetase 1.05002105212 0.5 -0.550021052122 +UniRef50_X5F4A5 0.870969927561 0.5 -0.370969927561 +UniRef50_UPI0003630547 hypothetical protein 3.60959656129 0.5 -3.10959656129 +UniRef50_Q5HQB3 Inosine uridine preferring nucleoside hydrolase family protein 3.19868079579 0.5 -2.69868079579 +UniRef50_T1AIV4 Multidrug transporter 0.0280365094507 0.5 0.471963490549 +UniRef50_O86567 Aminomethyltransferase 0.151420414929 0.5 0.348579585071 +UniRef50_D2VSM7 Predicted protein 0.0164732361577 0.5 0.483526763842 +UniRef50_G7ZTG3 1.03493200674 0.5 -0.534932006743 +UniRef50_A6TGA6 Rhamnulose 1 phosphate aldolase 1.23769542757 0.5 -0.737695427567 +UniRef50_UPI0004763CF3 pseudouridine synthase 0.120094049263 0.5 0.379905950737 +UniRef50_Q0SRF8 Endoribonuclease YbeY 0.290914463487 0.5 0.209085536513 +UniRef50_R1C5J1 0.331697487109 0.5 0.168302512891 +UniRef50_V5P4D6 PTS fructose transporter subunit IIB 1.08611296258 0.5 -0.586112962576 +UniRef50_Q9HYB2 2.25016970749 0.500000000001 -1.75016970749 +UniRef50_H8GCV6 Putative transcriptional regulator 2.64209635905 0.5 -2.14209635905 +UniRef50_Q1J3U3 Transcriptional regulator, MerR family 0.0204408947576 0.5 0.479559105242 +UniRef50_A1B304 Heat shock protein DnaJ domain protein 0.31021302275 0.5 0.18978697725 +UniRef50_A0A022H4X6 GntR family transcriptional regulator 0.380120205154 0.5 0.119879794846 +UniRef50_O34677 Glutamine transport ATP binding protein GlnQ 0.100421003454 0.5 0.399578996546 +UniRef50_Q98L75 Hemin import ATP binding protein HmuV 0.00871820661533 0.5 0.491281793385 +UniRef50_G7U407 O antigen polymerase 0.0072349174839 0.5 0.492765082516 +UniRef50_O67604 Riboflavin synthase 0.320107825279 0.5 0.179892174721 +UniRef50_UPI00035CB0C6 hypothetical protein 0.35440482651 0.5 0.14559517349 +UniRef50_UPI000441B666 PREDICTED 0.616388083713 0.5 -0.116388083713 +UniRef50_F9K9S6 Glyoxylate reductase 0.674376261653 0.5 -0.174376261653 +UniRef50_Q9RW09 Sensor histidine kinase 0.0137506379653 0.5 0.486249362035 +UniRef50_W4U410 Lysophospholipase L2 0.0544344698871 0.5 0.445565530113 +UniRef50_UPI0003B5FE88 RNA polymerase sigma factor RpoE 5.23137751099 0.500000000001 -4.73137751099 +UniRef50_I6T5F3 Deoxyribonuclease 2.41558310286 0.5 -1.91558310286 +UniRef50_F7NPL8 1.79054929834 0.5 -1.29054929834 +UniRef50_F0Y846 0.247230767668 0.5 0.252769232332 +UniRef50_K8C5J6 Translation initiation factor IF 2 0.834533793318 0.5 -0.334533793318 +UniRef50_UPI0003DE73F4 PREDICTED 0.330980273834 0.5 0.169019726166 +UniRef50_J3QFT9 0.0270645045406 0.5 0.472935495459 +UniRef50_W8GMX2 Antitoxin 0.378255058218 0.5 0.121744941782 +UniRef50_UPI000476B5A8 hypothetical protein 0.00329904285424 0.5 0.496700957146 +UniRef50_F3Z514 Putative cold shock protein 2.21956427825 0.500000000001 -1.71956427825 +UniRef50_Q56632 Vibriobactin specific 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.178895751 0.5 0.321104249 +UniRef50_Q9RYM5 0.00586391850194 0.5 0.494136081498 +UniRef50_Q9RYM9 0.000119130031838 0.5 0.499880869968 +UniRef50_UPI000399284A PREDICTED 0.0475225787558 0.5 0.452477421244 +UniRef50_C5N1J7 Kinase, PfkB family 3.28749395566 0.5 -2.78749395566 +UniRef50_A5FZN2 Galactarate dehydratase 2.17298892651 0.5 -1.67298892651 +UniRef50_UPI0003B3B04C MFS transporter 1.14153794723 0.5 -0.641537947227 +UniRef50_UPI000262C1BF adenosylcobinamide phosphate synthase 1.07239179046 0.5 -0.572391790465 +UniRef50_D5K8E6 UbiC transcription regulator associated protein 1.88673045782 0.500000000002 -1.38673045782 +UniRef50_E6MWT7 Peptidyl prolyl cis trans isomerase 0.0231879304955 0.5 0.476812069504 +UniRef50_Q5HGL7 Peptide deformylase like 1.32966241091 0.5 -0.829662410908 +UniRef50_A9LZP7 0.0750662546637 0.5 0.424933745336 +UniRef50_Q1QLF3 1.35984077386 0.5 -0.859840773858 +UniRef50_Q5HRJ2 3 oxoacyl reductase, putative 1.77634241226 0.5 -1.27634241226 +UniRef50_B6YRP0 S adenosylmethionine synthase 0.0756103375558 0.5 0.424389662445 +UniRef50_Q9RT82 0.00704175481567 0.5 0.492958245185 +UniRef50_P05827 HTH type transcriptional regulator IlvY 0.983450079231 0.5 -0.483450079231 +UniRef50_W1PW22 0.373572130053 0.5 0.126427869947 +UniRef50_UPI0004098CB0 sugar ABC transporter 0.11741967054 0.5 0.38258032946 +UniRef50_UPI00046A1978 ABC transporter permease 2.13490447607 0.500000000001 -1.63490447607 +UniRef50_D2NQB1 0.349998066424 0.5 0.150001933576 +UniRef50_F0QNU4 1 acyl sn glycerol 3 phosphate acyltransferase 0.0344578303827 0.5 0.465542169617 +UniRef50_F4GUZ8 0.392076949298 0.5 0.107923050702 +UniRef50_Q2CBD6 1.08036832275 0.5 -0.580368322755 +UniRef50_P45095 Dipeptide transport ATP binding protein DppD 6.65733099438 0.5 -6.15733099438 +UniRef50_A3PSS2 Dihydroxy acid dehydratase 0.525467246688 0.5 -0.0254672466879 +UniRef50_P08179 Phosphoribosylglycinamide formyltransferase 0.818054578187 0.5 -0.318054578187 +UniRef50_UPI000360F7E6 hypothetical protein 0.586475991643 0.5 -0.0864759916429 +UniRef50_W1BDM8 Chaperone protein HscA 0.435060053612 0.5 0.0649399463881 +UniRef50_W0Z408 0.0844767708996 0.5 0.415523229101 +UniRef50_A7X763 Imidazole glycerol phosphate synthase subunit HisF 3.58251632238 0.5 -3.08251632238 +UniRef50_D3E067 Nitroreductase family protein 3.43724405928 0.5 -2.93724405928 +UniRef50_R0F7I9 1.77728050381 0.499999999999 -1.2772805038 +UniRef50_UPI000465952B membane protease HflC 0.49172742847 0.5 0.00827257153022 +UniRef50_C5N6C9 Universal stress family protein 1.36776465349 0.5 -0.867764653487 +UniRef50_UPI000427AC9A porin 4.68603831785 0.500000000001 -4.18603831785 +UniRef50_V5V9L8 Glycine cleavage T protein 0.0448770955146 0.5 0.455122904485 +UniRef50_A0A027RVP4 2.28808421268 0.500000000001 -1.78808421268 +UniRef50_UPI00034A9B47 hypothetical protein 0.375030874744 0.5 0.124969125256 +UniRef50_Q98KP1 Cobyrinic acid A,C diamide synthase 0.0178602636452 0.5 0.482139736355 +UniRef50_D5ZNQ6 Transposase IS204 family protein 7.98054068812 0.500000000006 -7.48054068813 +UniRef50_A6MVW4 ATP synthase subunit alpha, chloroplastic 0.0925077308737 0.5 0.407492269126 +UniRef50_U1GGK9 Cell envelope related transcriptional attenuator 0.108054168795 0.5 0.391945831205 +UniRef50_UPI0002BBA067 hypothetical protein 0.002862206289 0.5 0.497137793711 +UniRef50_L8PB26 Putative Linear gramicidin synthetase LgrC 0.471021765445 0.5 0.0289782345545 +UniRef50_V7H7E4 1.28277519935 0.5 -0.782775199351 +UniRef50_B1VXS1 0.123886798663 0.5 0.376113201337 +UniRef50_Q9ZMV6 UPF0026 protein jhp_0109 0.019215791583 0.5 0.480784208417 +UniRef50_UPI00037A38D7 hypothetical protein 0.355133759509 0.5 0.144866240491 +UniRef50_P58409 1.00745239968 0.5 -0.50745239968 +UniRef50_D1BK43 0.0278162381203 0.5 0.47218376188 +UniRef50_B8EIF0 0.367776808966 0.5 0.132223191034 +UniRef50_C9XTA5 Tat linked quality control protein TatD 1.52922344158 0.5 -1.02922344158 +UniRef50_P38392 Superinfection exclusion protein B 1.07112316998 0.5 -0.571123169983 +UniRef50_B2V3W1 Permease 0.69146490636 0.5 -0.19146490636 +UniRef50_X2M6Z7 1.85314862218 0.5 -1.35314862218 +UniRef50_D3QD71 FemC, factor involved in methicillin resistance Glutamine synthetase repressor 2.80957497792 0.500000000003 -2.30957497792 +UniRef50_Q2KBF3 Tetracycline efflux transporter protein 0.0201248661762 0.5 0.479875133824 +UniRef50_Q9WYG0 0.448828645552 0.5 0.0511713544477 +UniRef50_Q2FDT8 Probable transglycosylase IsaA 14.2054837335 0.499999999996 -13.7054837335 +UniRef50_UPI00036FC7C5 hypothetical protein 0.0789849463847 0.5 0.421015053615 +UniRef50_Q2T0X3 Cholesterol oxidase 2.26775354294 0.5 -1.76775354294 +UniRef50_UPI0003C1A958 PREDICTED 0.161258776826 0.5 0.338741223174 +UniRef50_V6Q9U1 0.156604853335 0.5 0.343395146665 +UniRef50_A6LU63 Metallophosphoesterase 0.121988842439 0.5 0.378011157561 +UniRef50_Q9L6I1 Histidinol dehydrogenase 0.292440759395 0.5 0.207559240605 +UniRef50_D2GME6 Uro adherence factor A 1.14708643912 0.5 -0.647086439115 +UniRef50_R0ENU8 KxYKxGKxW signal peptide 0.23954509136 0.5 0.26045490864 +UniRef50_F0RIT9 NHL repeat containing protein 0.00267326592797 0.5 0.497326734072 +UniRef50_C0ZS23 0.260832895743 0.5 0.239167104257 +UniRef50_Q8DSK8 1.96849152634 0.5 -1.46849152634 +UniRef50_P27278 Trifunctional NAD biosynthesis regulator protein NadR 4.06888631543 0.500000000001 -3.56888631543 +UniRef50_UPI0003C16102 PREDICTED 0.535470619928 0.5 -0.0354706199276 +UniRef50_P0A2E9 RNA polymerase sigma factor FliA 0.976765938677 0.5 -0.476765938677 +UniRef50_A6T4E6 UPF0246 protein KPN78578_00060 0.536997397091 0.5 -0.0369973970914 +UniRef50_Q72J47 Ribose 5 phosphate isomerase A 0.00351942476399 0.5 0.496480575236 +UniRef50_UPI0003B500DC hypothetical protein, partial 1.87623001501 0.499999999999 -1.37623001501 +UniRef50_R4MBB3 0.0935508908867 0.5 0.406449109113 +UniRef50_Q9ZJ57 Transcription repair coupling factor 0.00785973294677 0.5 0.492140267053 +UniRef50_R4ZYK3 CAAX amino terminal protease family 12.0906522216 0.499999999998 -11.5906522216 +UniRef50_D7CXC6 Thioesterase superfamily protein 0.0029966836073 0.500000000001 0.497003316392 +UniRef50_UPI0002D421A9 hypothetical protein 2.35746629766 0.5 -1.85746629766 +UniRef50_UPI0004666DD2 NAD dependent dehydratase 0.156363413307 0.499999999999 0.343636586693 +UniRef50_P76149 Succinate semialdehyde dehydrogenase [NAD+] Sad 1.01820476568 0.5 -0.518204765678 +UniRef50_N0B4C8 2.12951224093 0.5 -1.62951224093 +UniRef50_P77495 Propionate CoA ligase 0.540290657021 0.5 -0.0402906570213 +UniRef50_A1AXZ2 S formylglutathione hydrolase 1.73958157351 0.5 -1.23958157351 +UniRef50_C6STZ5 0.40943719824 0.5 0.0905628017597 +UniRef50_A9W4X6 Sulfite reductase [NADPH] hemoprotein beta component 1.89373736673 0.5 -1.39373736673 +UniRef50_Q6SSJ3 Acetolactate synthase, mitochondrial 0.390138629377 0.5 0.109861370623 +UniRef50_K7S2B2 Sirohydrochlorin cobaltochelatase 0.0302061646613 0.5 0.469793835339 +UniRef50_X2ME11 Glutathione ABC transporter permease 0.252208671715 0.5 0.247791328285 +UniRef50_UPI000373BE38 hypothetical protein 0.320486387299 0.5 0.179513612701 +UniRef50_L0EAK7 O glycosyl hydrolase 0.514281114281 0.5 -0.0142811142811 +UniRef50_Q97P97 Ribosomal silencing factor RsfS 0.457798171042 0.5 0.0422018289581 +UniRef50_UPI000360CFF1 hypothetical protein 0.107398936831 0.5 0.392601063169 +UniRef50_F5XDU3 0.0881667803194 0.5 0.411833219681 +UniRef50_D1BRB3 1.36867283616 0.5 -0.868672836159 +UniRef50_Q2J3W0 0.692987510971 0.5 -0.192987510971 +UniRef50_Q8XJS1 tRNA pseudouridine synthase B 0.0740497243542 0.5 0.425950275646 +UniRef50_B7UQI7 HTH type transcriptional repressor NsrR 0.859559588531 0.5 -0.359559588531 +UniRef50_UPI00016BFAFA hypothetical protein, partial 0.174334342971 0.5 0.325665657029 +UniRef50_W7WQV3 0.120992609801 0.5 0.379007390199 +UniRef50_UPI000395618F 0.317162749202 0.5 0.182837250798 +UniRef50_N8K6N9 2.3443973448 0.5 -1.8443973448 +UniRef50_UPI000185D852 hypothetical protein TGME49_026320 0.502694775733 0.5 -0.0026947757331 +UniRef50_M4ZG31 Drug metabolite transporter superfamily protein 3.74925055067 0.5 -3.24925055067 +UniRef50_UPI00036A115E hypothetical protein 0.951403902722 0.5 -0.451403902722 +UniRef50_A5UMF7 Predicted metal dependent membrane protease 1.12017255868 0.5 -0.620172558679 +UniRef50_E6YL73 1.37368792429 0.5 -0.87368792429 +UniRef50_R6M763 0.075150187693 0.5 0.424849812307 +UniRef50_M1PJ51 0.195212603877 0.5 0.304787396123 +UniRef50_K2JGL6 1.61258327442 0.500000000002 -1.11258327442 +UniRef50_UPI000262543A preprotein translocase subunit SecB 0.256912006297 0.5 0.243087993703 +UniRef50_H5YAU3 ABC type spermidine putrescine transport system, permease component II 1.51064901584 0.500000000001 -1.01064901584 +UniRef50_UPI00037F1EED hypothetical protein 1.26652803624 0.5 -0.766528036236 +UniRef50_A0LA39 Indole 3 glycerol phosphate synthase 0.79862753135 0.5 -0.29862753135 +UniRef50_P19319 Respiratory nitrate reductase 2 alpha chain 0.0479169951913 0.5 0.452083004808 +UniRef50_W6RYK9 Alpha dextran endo 1,6 alpha glucosidase 0.0333455321315 0.499999999999 0.466654467869 +UniRef50_K2M7A1 1.14165888502 0.499999999999 -0.641658885015 +UniRef50_F3P2W5 0.84200960811 0.5 -0.34200960811 +UniRef50_B0VAL5 Ribosomal RNA large subunit methyltransferase K L 0.0166638807763 0.5 0.483336119223 +UniRef50_P0ACQ8 HTH type transcriptional regulator TdcA 1.70048797486 0.500000000001 -1.20048797486 +UniRef50_R9SMW6 4.12047496598 0.500000000002 -3.62047496598 +UniRef50_UPI00037472A8 hypothetical protein 1.67543126865 0.5 -1.17543126865 +UniRef50_UPI00036CDC12 hypothetical protein 0.0632733579295 0.5 0.43672664207 +UniRef50_Q6GK63 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 1.75036971433 0.499999999999 -1.25036971433 +UniRef50_UPI00046235B0 hypothetical protein TRAVEDRAFT_69016 1.43877827834 0.5 -0.938778278342 +UniRef50_UPI0001632402 hypothetical protein 0.0512005330277 0.5 0.448799466972 +UniRef50_UPI0003B5E791 excinuclease ABC subunit B 0.00406816411106 0.5 0.495931835889 +UniRef50_W7D397 PadR family transcriptional regulator 1.62977121088 0.5 -1.12977121088 +UniRef50_Q9RRD7 Aspartyl glutamyl tRNA amidotransferase subunit B 0.00175200352884 0.5 0.498247996471 +UniRef50_D2J8F1 39.9565924324 0.499999999997 -39.4565924324 +UniRef50_UPI000474D7ED hypothetical protein, partial 0.553138750883 0.5 -0.0531387508832 +UniRef50_UPI0003694619 hypothetical protein 0.131227175204 0.5 0.368772824796 +UniRef50_Q7VUN5 Prolipoprotein diacylglyceryl transferase 1.00524356762 0.5 -0.505243567619 +UniRef50_P11908 Ribose phosphate pyrophosphokinase 2 0.151791356596 0.5 0.348208643404 +UniRef50_E3NW74 0.645605416392 0.5 -0.145605416392 +UniRef50_F3PMN2 0.120308860773 0.5 0.379691139226 +UniRef50_P67176 Probable transcriptional regulatory protein YebC 3.7978060433 0.499999999998 -3.2978060433 +UniRef50_UPI0003C1377F PREDICTED 0.965676915339 0.5 -0.465676915339 +UniRef50_UPI00035E1742 hypothetical protein 0.250539047915 0.5 0.249460952085 +UniRef50_I0C568 Cysteine desulfurase 1.80665257063 0.500000000002 -1.30665257063 +UniRef50_Q9CIS4 N acetyldiaminopimelate deacetylase 0.536487447959 0.5 -0.0364874479586 +UniRef50_H9JHD1 0.111691677035 0.5 0.388308322965 +UniRef50_A3M3L5 Dichlorophenol hydroxylase 0.0164060523771 0.5 0.483593947623 +UniRef50_A2SL87 ABC transporter permease protein 2.37741883763 0.500000000002 -1.87741883763 +UniRef50_A3PG71 Multi sensor hybrid histidine kinase 6.38698707882 0.500000000002 -5.88698707883 +UniRef50_R4K8M4 ABC type nitrate sulfonate bicarbonate transport system, ATPase component 0.623544922394 0.5 -0.123544922394 +UniRef50_K7ECB4 0.312998162219 0.5 0.187001837781 +UniRef50_P15043 ATP dependent DNA helicase RecQ 2.00201364554 0.500000000001 -1.50201364554 +UniRef50_P52331 RNA polymerase sigma factor SigA 0.983939128765 0.5 -0.483939128765 +UniRef50_Q31GL1 1.35483242041 0.5 -0.854832420415 +UniRef50_X2HGW8 Alkaline protease secretion protein AprE 0.0448289458906 0.5 0.455171054109 +UniRef50_O84834 Ribonucleoside diphosphate reductase subunit alpha 0.0276226269711 0.5 0.472377373029 +UniRef50_F8KIL6 NADH oxidase family protein 1.52526212696 0.5 -1.02526212696 +UniRef50_Q67N11 Pseudouridine 5 phosphate glycosidase 3.70315322257 0.500000000004 -3.20315322257 +UniRef50_Q28R93 Toxic anion resistance 2.42098733454 0.5 -1.92098733454 +UniRef50_P37683 Inner membrane protein YiaV 2.11874790946 0.5 -1.61874790946 +UniRef50_B7ULC6 Xylose isomerase 1.3507083928 0.5 -0.850708392804 +UniRef50_W6M578 0.952864282994 0.5 -0.452864282994 +UniRef50_UPI00037B97F0 hypothetical protein 0.225450976342 0.5 0.274549023658 +UniRef50_X6MYI2 0.0167121007303 0.499999999999 0.48328789927 +UniRef50_UPI00042541FF hypothetical protein 0.502906322377 0.5 -0.00290632237659 +UniRef50_UPI0003B727B1 50S ribosomal protein L24 1.01019216495 0.5 -0.510192164952 +UniRef50_UPI00046D149F hypothetical protein 0.467096438721 0.5 0.0329035612791 +UniRef50_Q7W6C6 Non canonical purine NTP pyrophosphatase 1.5523978522 0.5 -1.0523978522 +UniRef50_W5WYX4 Alkaline phosphatase 0.453487712273 0.5 0.0465122877269 +UniRef50_P02983 Tetracycline resistance protein 1.43514037535 0.5 -0.935140375354 +UniRef50_U3T3X0 O methyltransferase 0.0493669092946 0.5 0.450633090705 +UniRef50_UPI00046FEA8D GntR family transcriptional regulator 1.38356967775 0.5 -0.88356967775 +UniRef50_Q97MM1 N acetylmuramic acid 6 phosphate etherase 0.385913763825 0.5 0.114086236175 +UniRef50_L7WQT3 Prephenate dehydratase 1.16725710036 0.499999999999 -0.667257100356 +UniRef50_UPI00047E31BE methionine aminopeptidase 0.653257349932 0.5 -0.153257349932 +UniRef50_UPI0003B46743 hypothetical protein 0.0611847990231 0.500000000001 0.438815200976 +UniRef50_P72479 Oligopeptide transport ATP binding protein OppF 1.39939449497 0.5 -0.899394494966 +UniRef50_A4WNF9 Metallophosphoesterase 1.15421923319 0.5 -0.654219233188 +UniRef50_Q9AHJ5 Interrupted beta D glucuronidase 5.28678550298 0.5 -4.78678550298 +UniRef50_E9B5T6 Proteophosphoglycan ppg1 0.205187877112 0.5 0.294812122888 +UniRef50_Q02431 Chlorophyllide reductase 35.5 kDa chain 5.79764609709 0.499999999997 -5.29764609708 +UniRef50_A0A034HVJ8 4.88112569581 0.499999999999 -4.38112569581 +UniRef50_N0CE78 Snf2 family protein 0.0170776141783 0.5 0.482922385821 +UniRef50_UPI000473A49C hypothetical protein, partial 0.0365559608867 0.5 0.463444039113 +UniRef50_UPI000475C363 GntR family transcriptional regulator 0.446617875051 0.5 0.0533821249489 +UniRef50_UPI000255B851 thiamine biosynthesis adenylyltransferase 0.276322195921 0.5 0.223677804079 +UniRef50_UPI0003C17DF0 PREDICTED 0.696279930153 0.5 -0.196279930153 +UniRef50_Y9YFG1 Serine aspartate repeat containing protein D 4.50100653242 0.500000000003 -4.00100653243 +UniRef50_UPI0002556FCA major facilitator family transporter, partial 0.1342336 0.5 0.3657664 +UniRef50_I1ALS6 Flp pilus assembly protein TadG 2.51619619554 0.5 -2.01619619554 +UniRef50_UPI00035E72D8 hypothetical protein 0.103754279314 0.5 0.396245720686 +UniRef50_UPI0004243274 hypothetical protein 0.759941337521 0.5 -0.259941337521 +UniRef50_UPI0003942A9F 1.14691316168 0.5 -0.64691316168 +UniRef50_A5UMV2 Predicted polysaccharide polyol phosphate ABC transporter, permease component 2.14288522688 0.5 -1.64288522688 +UniRef50_A3DIP6 UDP N acetylmuramate L alanine ligase 0.118662361058 0.5 0.381337638942 +UniRef50_UPI0000164CF6 hypothetical protein DR_1761 0.000499099342517 0.5 0.499500900658 +UniRef50_Q13SY1 Probable chemoreceptor glutamine deamidase CheD 2.82124191358 0.499999999997 -2.32124191358 +UniRef50_F0L781 Permeases of the major facilitator superfamily 1.81577362641 0.499999999998 -1.31577362641 +UniRef50_G0DRF3 0.00835724124347 0.5 0.491642758756 +UniRef50_A1WQY3 Alanine racemase 11.6121408848 0.499999999998 -11.1121408848 +UniRef50_A5WHX2 Superfamily I DNA and RNA helicase like protein 0.0107395463815 0.5 0.489260453619 +UniRef50_R7PS51 2.87237253715 0.499999999999 -2.37237253715 +UniRef50_J9U7Y2 1.53974942352 0.5 -1.03974942352 +UniRef50_J7QB56 0.584777583955 0.5 -0.0847775839549 +UniRef50_Q8ZMH3 Serine threonine protein phosphatase 2 0.581460277737 0.5 -0.081460277737 +UniRef50_P67760 UPF0302 protein SA1295 3.39971841891 0.500000000004 -2.89971841892 +UniRef50_A3PR59 Flavin reductase domain protein, FMN binding 1.44051789932 0.5 -0.940517899321 +UniRef50_Q66FG9 Glycerol 3 phosphate acyltransferase 0.676339677262 0.5 -0.176339677262 +UniRef50_A6TWG5 30S ribosomal protein S5 1.40039736713 0.5 -0.900397367126 +UniRef50_P37168 Putative oxidoreductase YceM 1.217191678 0.5 -0.717191678002 +UniRef50_UPI000255C7E1 uroporphyrin III C tetrapyrrole methyltransferase 0.12153699301 0.5 0.37846300699 +UniRef50_A0A028XDJ1 Ornithine cyclodeaminase mu crystallin domain protein 1.28381286184 0.5 -0.78381286184 +UniRef50_UPI000477AE3E hypothetical protein 1.00596769074 0.5 -0.50596769074 +UniRef50_UPI0003B3FFE1 zinc binding dehydrogenase 0.656395292995 0.5 -0.156395292995 +UniRef50_UPI0001913AE8 oligopeptide ABC transporter, permease protein OppC, partial 0.26177919396 0.5 0.23822080604 +UniRef50_Q5PMJ4 tRNA specific 2 thiouridylase MnmA 0.877213625384 0.5 -0.377213625384 +UniRef50_Q9Y7M1 Putative 2 hydroxyacyl CoA lyase 0.140498042097 0.5 0.359501957903 +UniRef50_UPI0003B30236 3 oxoacyl ACP synthase 0.034956433072 0.5 0.465043566928 +UniRef50_V6G3R8 ABC transporter, substrate binding protein, family 5 domain protein 1.6034728893 0.5 -1.1034728893 +UniRef50_A9H9A8 ATP synthase subunit beta 1.00082708751 0.5 -0.50082708751 +UniRef50_B8EPL9 UPF0301 protein Msil_1255 0.254182291552 0.5 0.245817708448 +UniRef50_U3T6B1 Iron ABC transporter substrate binding protein 0.0456298998357 0.5 0.454370100164 +UniRef50_A4XX95 NADH dehydrogenase (Quinone) 0.6861791541 0.5 -0.1861791541 +UniRef50_B9KX15 Short chain dehydrogenase reductase SDR 1.84784093227 0.5 -1.34784093227 +UniRef50_UPI00047DFFFB hypothetical protein 0.416933688718 0.5 0.0830663112824 +UniRef50_Q72AR4 Lipoprotein signal peptidase 0.284808520842 0.5 0.215191479158 +UniRef50_Q9RZC9 0.00381595825448 0.5 0.496184041746 +UniRef50_Q6A8Z5 tRNA dimethylallyltransferase 0.00181936083587 0.5 0.498180639164 +UniRef50_C0Z6T1 N acetyl gamma glutamyl phosphate reductase 0.85454721081 0.5 -0.35454721081 +UniRef50_Q6G723 Staphylococcal secretory antigen ssaA2 2.15977800594 0.5 -1.65977800594 +UniRef50_Q9RZC7 0.00398079224637 0.5 0.496019207753 +UniRef50_T0GNN5 0.810722930628 0.5 -0.310722930628 +UniRef50_D3PKE0 PepSY associated TM helix domain protein 0.00312172078468 0.5 0.496878279216 +UniRef50_UPI000441E5AE PREDICTED 0.34581845896 0.5 0.15418154104 +UniRef50_Q9L730 SanE 0.783333295242 0.5 -0.283333295242 +UniRef50_UPI00030945F6 cation transporter 0.13102944677 0.499999999999 0.368970553231 +UniRef50_Q3IVJ0 Replication protein C 1.93429001546 0.499999999999 -1.43429001546 +UniRef50_UPI0002556222 ATP dependent DNA helicase Rep 0.354886496564 0.5 0.145113503436 +UniRef50_Q13IW9 ATP synthase subunit alpha 3 1.88802465504 0.5 -1.38802465504 +UniRef50_A3X0R4 Terminase, large subunit, putative 0.0328989711486 0.5 0.467101028851 +UniRef50_D6SEC7 DHHA1 domain protein 1.79463427013 0.499999999999 -1.29463427013 +UniRef50_A5PL98 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.435935273139 0.5 0.0640647268607 +UniRef50_UPI0003C19C73 PREDICTED 3.94848083317 0.499999999998 -3.44848083317 +UniRef50_I6WVI5 0.111020972745 0.5 0.388979027254 +UniRef50_P13063 Periplasmic [NiFeSe] hydrogenase small subunit 1.64197037122 0.5 -1.14197037122 +UniRef50_Q9KC26 Biotin synthase 0.0590330726155 0.5 0.440966927384 +UniRef50_O87131 Chemotaxis protein methyltransferase 1 1.18575062066 0.5 -0.685750620656 +UniRef50_D2SGL3 Gm3773 predicted gene 3773 9.6859430675 0.499999999986 -9.18594306749 +UniRef50_UPI0004662606 glycolate oxidase 0.0503137835905 0.5 0.449686216409 +UniRef50_B5Z805 0.0101209355936 0.5 0.489879064406 +UniRef50_D2NRN3 0.0131348040998 0.5 0.4868651959 +UniRef50_A4WT54 1.63687137807 0.5 -1.13687137807 +UniRef50_R0TNR1 0.138816476697 0.5 0.361183523304 +UniRef50_Q9JSZ8 UDP N acetylmuramate L alanine ligase 0.0404667398297 0.5 0.45953326017 +UniRef50_D3E0J9 Putative adenylate kinase 5.01184020573 0.500000000003 -4.51184020573 +UniRef50_B4WIG2 0.752054910383 0.5 -0.252054910383 +UniRef50_UPI0004625279 transposase 2.54756848702 0.5 -2.04756848702 +UniRef50_K9WHG2 1.41250038758 0.5 -0.912500387579 +UniRef50_A4XVS8 0.994967365897 0.5 -0.494967365897 +UniRef50_F8DJ84 CBS domain protein 0.91965960039 0.5 -0.41965960039 +UniRef50_P45694 Transketolase 0.78786451512 0.5 -0.28786451512 +UniRef50_A0A023S1I9 TetR family transcriptional regulator 0.0122419383049 0.5 0.487758061695 +UniRef50_UPI0003B3BF67 XRE family transcriptional regulator 0.733393900091 0.5 -0.233393900091 +UniRef50_Q2FWV6 Staphylococcal complement inhibitor 1.69402463246 0.5 -1.19402463246 +UniRef50_UPI000467D6E6 TetR family transcriptional regulator 0.0448651805553 0.500000000001 0.455134819444 +UniRef50_R6HDW3 GTP binding protein TypA BipA 0.831567333596 0.5 -0.331567333596 +UniRef50_B9TQ05 0.0470112779309 0.5 0.452988722069 +UniRef50_A3KAM8 0.996859903364 0.5 -0.496859903364 +UniRef50_Q8CN73 Nitrate reductase delta chain 0.925346424638 0.5 -0.425346424638 +UniRef50_Q52987 Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase 0.0150011588448 0.5 0.484998841155 +UniRef50_Q3IXI3 PpkA related protein 11.1343695278 0.499999999998 -10.6343695278 +UniRef50_UPI00036E1A30 hypothetical protein 1.40128112473 0.5 -0.901281124729 +UniRef50_G7U5R3 0.0481228993867 0.5 0.451877100614 +UniRef50_W5MN69 0.291535959481 0.5 0.208464040519 +UniRef50_D6SYK4 0.204944007789 0.5 0.295055992211 +UniRef50_UPI00046AEB65 hypothetical protein 0.0385869077105 0.5 0.46141309229 +UniRef50_I6TN35 Sorbose PTS system, IIB component 0.585504626788 0.5 -0.0855046267881 +UniRef50_O83990 Uridine phosphorylase 0.312031447211 0.5 0.187968552789 +UniRef50_UPI0003B525E9 hypothetical protein 0.271267023472 0.5 0.228732976528 +UniRef50_H2A6W4 2.22225295468 0.5 -1.72225295468 +UniRef50_E6QN76 17.3037581167 0.500000000014 -16.8037581167 +UniRef50_F3KCS8 Cysteine synthase 4.4110755667 0.5 -3.9110755667 +UniRef50_UPI000368CD4B hypothetical protein 0.152597960505 0.5 0.347402039495 +UniRef50_UPI0004729707 hypothetical protein, partial 2.29280270394 0.500000000003 -1.79280270394 +UniRef50_UPI00035DAFDB hypothetical protein 1.75337205055 0.5 -1.25337205055 +UniRef50_Q2S8H5 3 hydroxydecanoyl [acyl carrier protein] dehydratase 5.13569528446 0.5 -4.63569528446 +UniRef50_A5B2H7 0.364491988595 0.5 0.135508011405 +UniRef50_UPI000376B264 hypothetical protein 0.699338241967 0.5 -0.199338241967 +UniRef50_Q5ZWE4 Spermidine putrescine import ATP binding protein PotA 0.710095256897 0.5 -0.210095256897 +UniRef50_UPI00046F3C43 ribonuclease D, partial 3.19216273034 0.5 -2.69216273034 +UniRef50_S3H5L3 PilT protein domain protein 2.29232766228 0.5 -1.79232766228 +UniRef50_E4TMS6 Beta Ig H3 fasciclin 1.45193939587 0.5 -0.951939395868 +UniRef50_C4K3W9 Orotate phosphoribosyltransferase 0.209965732044 0.5 0.290034267956 +UniRef50_UPI00036A0C85 resolvase 0.214373712636 0.5 0.285626287364 +UniRef50_B9KLM6 6.30755931464 0.500000000001 -5.80755931465 +UniRef50_UPI000467F2DE general secretion pathway protein GspI 0.424249216461 0.5 0.0757507835386 +UniRef50_E6SM17 3 deoxy D arabinoheptulosonate 7 phosphate synthase 0.108032609782 0.5 0.391967390218 +UniRef50_UPI000479ECD0 hypothetical protein 0.65376453355 0.5 -0.15376453355 +UniRef50_B9KLM0 2.22857723083 0.499999999999 -1.72857723083 +UniRef50_UPI000378DE23 hypothetical protein 0.173612420845 0.5 0.326387579155 +UniRef50_F0JDW5 1.83055680519 0.5 -1.33055680519 +UniRef50_P32668 0.348128790432 0.5 0.151871209568 +UniRef50_UPI0004245E45 GTP binding protein Der 0.297749596462 0.5 0.202250403538 +UniRef50_Q00934 Type 4 fimbriae expression regulatory protein PilR 0.120056505636 0.5 0.379943494364 +UniRef50_UPI000347AC3B preprotein translocase subunit SecG 1.04667185432 0.5 -0.546671854319 +UniRef50_Q2YX72 Spermidine putrescine binding periplasmic protein 3.05601751106 0.499999999995 -2.55601751105 +UniRef50_S1F8T4 Autoinducer 2 binding protein lsrB 0.252551159233 0.5 0.247448840767 +UniRef50_P03018 DNA helicase II 1.3513045357 0.5 -0.851304535703 +UniRef50_Q9ZJF9 DNA polymerase III subunit alpha 0.0110223298408 0.5 0.488977670159 +UniRef50_A1A8T2 0.186216591542 0.5 0.313783408458 +UniRef50_A1T8W5 Phosphoribosyl isomerase A 0.0176160361284 0.5 0.482383963872 +UniRef50_P9WQ72 Phosphoserine aminotransferase 0.00787803691871 0.5 0.492121963081 +UniRef50_Q3HKJ3 Putative Mrr restriction system protein 1.99788150502 0.499999999999 -1.49788150502 +UniRef50_M4WVA9 0.848039774885 0.5 -0.348039774885 +UniRef50_Z5RZH0 0.2753662624 0.5 0.2246337376 +UniRef50_UPI000466DA55 hypothetical protein 6.21850070545 0.499999999998 -5.71850070544 +UniRef50_B1KVH1 0.669080381077 0.5 -0.169080381077 +UniRef50_Q46927 tRNA threonylcarbamoyladenosine dehydratase 3.11403095395 0.500000000001 -2.61403095395 +UniRef50_A3PNX1 0.97406703942 0.5 -0.47406703942 +UniRef50_P29925 NADH quinone oxidoreductase chain 13 2.21028665582 0.500000000002 -1.71028665582 +UniRef50_UPI0004786466 ABC transporter permease 3.16643849434 0.500000000001 -2.66643849434 +UniRef50_UPI0003DE8355 0.523997219137 0.5 -0.0239972191371 +UniRef50_H9UVW0 Terminase large subunit 0.107607042426 0.5 0.392392957574 +UniRef50_D4HFJ6 UvrD REP helicase 0.0134870162504 0.5 0.48651298375 +UniRef50_P39364 Putative sgc region protein SgcQ 1.51232269372 0.5 -1.01232269372 +UniRef50_P64576 0.453775637082 0.5 0.0462243629182 +UniRef50_F3Z838 Putative hydrogen peroxide sensitive repressor 0.251479940217 0.5 0.248520059783 +UniRef50_D3E4D6 SsDNA exonuclease RecJ2 0.451085596224 0.5 0.0489144037765 +UniRef50_M4Z3L2 Hemolysin type calcium binding region 5.08438330752 0.5 -4.58438330752 +UniRef50_P77489 Putative xanthine dehydrogenase YagR molybdenum binding subunit 0.116819016782 0.5 0.383180983218 +UniRef50_A8LJB4 Leucyl phenylalanyl tRNA protein transferase 0.21954103284 0.5 0.28045896716 +UniRef50_P38489 Oxygen insensitive NADH nitroreductase 2.04741962607 0.499999999999 -1.54741962607 +UniRef50_UPI00037EE3C9 hypothetical protein 0.358684222476 0.5 0.141315777524 +UniRef50_I6SUP0 Transcriptional regulator 0.324909806486 0.5 0.175090193514 +UniRef50_P45288 Peptide transport system ATP binding protein SapD 0.729826557117 0.5 -0.229826557117 +UniRef50_D9V463 Predicted protein 0.0276691398213 0.5 0.472330860179 +UniRef50_G7UA10 0.016452062962 0.5 0.483547937038 +UniRef50_P56129 Diaminopimelate decarboxylase 0.000667267328884 0.5 0.499332732671 +UniRef50_A0A024EEF7 0.19851916018 0.5 0.30148083982 +UniRef50_J2JCG0 Integral membrane protein MviN 0.509935021611 0.5 -0.00993502161097 +UniRef50_P0AE47 UPF0053 inner membrane protein YtfL 10.0678855632 0.500000000002 -9.56788556317 +UniRef50_A0A016QTH6 Cobyrinic acid a,c diamide synthase 0.00477355520285 0.5 0.495226444797 +UniRef50_M9VHF6 0.0446790305483 0.5 0.455320969452 +UniRef50_Q9RYL5 GGDEF family protein 0.000711340286379 0.5 0.499288659714 +UniRef50_UPI00036176A4 hypothetical protein 0.930107726534 0.5 -0.430107726534 +UniRef50_W6S1I7 0.155206391951 0.5 0.344793608049 +UniRef50_UPI000393F498 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.7438832595 0.500000000002 -1.24388325951 +UniRef50_A0A023KSK6 5 carboxymethyl 2 hydroxymuconate isomerase 2.93791837348 0.499999999997 -2.43791837347 +UniRef50_Q3IUW4 TraC 1.48025384166 0.500000000001 -0.980253841656 +UniRef50_B9KUI7 0.297672615496 0.5 0.202327384504 +UniRef50_UPI00047C294C hypoxanthine oxidase, partial 2.38626020747 0.5 -1.88626020747 +UniRef50_UPI0003B6C29E translation initiation factor IF 2 0.127996326119 0.500000000001 0.372003673881 +UniRef50_P0AFH9 Osmotically inducible protein Y 0.579261111925 0.5 -0.0792611119248 +UniRef50_Q5HDU6 Lipid II 2.27877757675 0.500000000001 -1.77877757675 +UniRef50_Q830B5 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.248579008599 0.5 0.251420991401 +UniRef50_UPI000470A41D hypothetical protein, partial 0.777223052868 0.5 -0.277223052868 +UniRef50_P16433 Formate hydrogenlyase subunit 7 2.23590913739 0.5 -1.73590913739 +UniRef50_P30015 Probable ATP dependent helicase lhr 1.73047877659 0.5 -1.23047877659 +UniRef50_F1L3M9 DnaJ subfamily B member 5 0.430659319494 0.5 0.069340680506 +UniRef50_D5VJS0 DEAD DEAH box helicase domain protein 3.56510413203 0.5 -3.06510413203 +UniRef50_UPI000328CE6B PREDICTED 0.042242511321 0.5 0.457757488679 +UniRef50_UPI00016C3888 hypothetical protein, partial 4.7413900062 0.5 -4.2413900062 +UniRef50_J7TL98 Transcriptional regulator, AraC family 0.0133074596969 0.5 0.486692540303 +UniRef50_J1JW34 0.305752281548 0.5 0.194247718452 +UniRef50_UPI000475758B transcriptional regulator 2.0910302472 0.5 -1.5910302472 +UniRef50_A3VVX0 Hypothetical BRO family protein 1.74083688721 0.5 -1.24083688721 +UniRef50_Q2S1E4 Adenylate kinase 0.332717528779 0.5 0.167282471221 +UniRef50_F0XZ32 0.403783512214 0.5 0.0962164877863 +UniRef50_M5S0G6 0.00504996016987 0.5 0.49495003983 +UniRef50_P24230 ATP dependent DNA helicase RecG 2.31568881807 0.500000000001 -1.81568881807 +UniRef50_B9KTP4 Extracellular solute binding protein, family 1 1.66392415468 0.5 -1.16392415468 +UniRef50_D9R0R8 Flavodoxin nitric oxide synthase 0.0839455133669 0.5 0.416054486633 +UniRef50_P59784 Glucitol sorbitol specific phosphotransferase enzyme IIA component 1.07340185075 0.5 -0.573401850749 +UniRef50_P08499 Homoserine dehydrogenase 0.000462448004113 0.5 0.499537551996 +UniRef50_A1A9I1 Formate transporter 2.21623603217 0.499999999999 -1.71623603217 +UniRef50_I0C2Q1 1.5714174963 0.5 -1.0714174963 +UniRef50_UPI0003B4C7B5 cell division protein FtsZ 0.910547251499 0.5 -0.410547251499 +UniRef50_P0AD18 Inner membrane protein YohC 1.60719073163 0.5 -1.10719073163 +UniRef50_UPI0002EF456C hypothetical protein 1.83734774884 0.5 -1.33734774884 +UniRef50_E8PF29 CzcI 0.012665111683 0.5 0.487334888317 +UniRef50_P0AA97 2.33701470965 0.499999999999 -1.83701470965 +UniRef50_P0AA96 7.88697844944 0.499999999999 -7.38697844944 +UniRef50_M9LX88 0.216748355566 0.5 0.283251644434 +UniRef50_P0AA92 0.95776559695 0.5 -0.45776559695 +UniRef50_Q74JL8 Cytidylate kinase 0.776686193343 0.5 -0.276686193343 +UniRef50_A5UM81 Acetyltransferase, GNAT family 1.98711678293 0.500000000001 -1.48711678293 +UniRef50_E8TMU8 Glycine betaine L proline ABC transporter, ATPase subunit 3.70671397871 0.5 -3.20671397871 +UniRef50_UPI000476F019 molybdenum ABC transporter permease 0.884825646651 0.5 -0.384825646651 +UniRef50_X2LU18 Alanine tRNA ligase 1.23980083309 0.5 -0.739800833086 +UniRef50_UPI00035EFE25 alkaline phosphatase 2.22336163216 0.5 -1.72336163216 +UniRef50_Q92GH4 Endonuclease III 0.125531558165 0.5 0.374468441835 +UniRef50_P29931 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.576223164017 0.5 -0.076223164017 +UniRef50_A9I0E6 Homoserine O acetyltransferase 0.228572355247 0.5 0.271427644753 +UniRef50_UPI0003C1A8F4 0.544903814517 0.5 -0.044903814517 +UniRef50_P0AFA3 Nitrate nitrite sensor protein NarX 1.90124981672 0.500000000001 -1.40124981672 +UniRef50_A0K8T5 Transcriptional regulator, LysR family 1.3184727806 0.5 -0.818472780602 +UniRef50_A5N540 Predicted transport protein, ATPase and permease component 0.495026280755 0.5 0.00497371924467 +UniRef50_E4P0V7 SerB Phosphoserine phosphatase 0.390225130818 0.5 0.109774869182 +UniRef50_UPI000372888C hypothetical protein 1.36875675106 0.5 -0.868756751064 +UniRef50_C6SSA3 0.390241424084 0.5 0.109758575916 +UniRef50_V5VG42 0.0140352766161 0.5 0.485964723384 +UniRef50_UPI00037ACEC3 hypothetical protein 1.08989062541 0.5 -0.589890625409 +UniRef50_C3KCK1 0.814010349156 0.5 -0.314010349156 +UniRef50_B4V1W5 ATP GTP binding protein 0.183255467327 0.5 0.316744532673 +UniRef50_F8DGR4 LytTr DNA binding domain protein 0.698066660957 0.5 -0.198066660957 +UniRef50_Q2NEM0 DNA primase DnaG 2.05849294078 0.5 -1.55849294078 +UniRef50_P31129 Diguanylate cyclase YdeH 0.33059032147 0.5 0.16940967853 +UniRef50_A0A014MJV1 Crp Fnr family transcriptional regulator 0.52236922101 0.5 -0.0223692210101 +UniRef50_V6V4N6 0.632598976694 0.5 -0.132598976694 +UniRef50_E5U2A7 4.06111204305 0.499999999999 -3.56111204305 +UniRef50_A6LR99 RNA directed DNA polymerase 0.384381694161 0.5 0.115618305839 +UniRef50_Q8PFF8 tRNA dihydrouridine synthase A 2.02903718685 0.5 -1.52903718685 +UniRef50_Q71ZA3 Formamidopyrimidine DNA glycosylase 0.00315781906791 0.499999999999 0.496842180933 +UniRef50_UPI000373BE1A hypothetical protein 0.024585899213 0.5 0.475414100787 +UniRef50_UPI0003697F83 GntR family transcriptional regulator 0.270671378345 0.5 0.229328621655 +UniRef50_Q2FUU3 Imidazole glycerol phosphate synthase subunit hisF 12.2345332661 0.500000000002 -11.7345332661 +UniRef50_A5UJC4 Mg dependent DNase, TatD 0.43552956496 0.5 0.0644704350404 +UniRef50_A0YFJ4 0.265027338416 0.5 0.234972661584 +UniRef50_J9GKH0 0.0179745243879 0.5 0.482025475612 +UniRef50_A1WXH5 Isopentenyl diphosphate Delta isomerase 1.67782771256 0.5 -1.17782771256 +UniRef50_UPI000347F8B1 hypothetical protein 0.482240033541 0.5 0.0177599664589 +UniRef50_UPI000370761B hypothetical protein 1.98537471142 0.5 -1.48537471142 +UniRef50_W4LMW8 0.221091055959 0.5 0.278908944041 +UniRef50_UPI0004786463 hypothetical protein 0.0432238279904 0.5 0.456776172009 +UniRef50_UPI00042CD0F4 0.273569487127 0.5 0.226430512873 +UniRef50_A6LZW0 Sucrose 6 phosphate hydrolase 0.0580949426639 0.5 0.441905057336 +UniRef50_UPI0001BF7CE9 hypothetical protein SMAC_10228, partial 0.491242279979 0.5 0.00875772002149 +UniRef50_A0A038G2P2 1.00299144639 0.5 -0.502991446385 +UniRef50_UPI00037E17BF hypothetical protein 0.103318781012 0.5 0.396681218987 +UniRef50_B5XU27 Urease subunit alpha 0.116569041188 0.5 0.383430958812 +UniRef50_P16692 Phosphoribosyl 1,2 cyclic phosphodiesterase 3.94742733298 0.5 -3.44742733298 +UniRef50_E0WIK7 CagY protein 0.00882271898662 0.5 0.491177281013 +UniRef50_B1X1Y0 0.0130144180543 0.5 0.486985581946 +UniRef50_A0A009UCL1 Phenylalanine tRNA ligase beta subunit 0.0190157094172 0.5 0.480984290583 +UniRef50_UPI0004708F1B hypothetical protein, partial 1.50227610065 0.500000000001 -1.00227610065 +UniRef50_F0YFT4 Expressed protein 0.276110006869 0.5 0.223889993131 +UniRef50_D9VSA1 Predicted protein 0.521813613665 0.5 -0.0218136136653 +UniRef50_UPI000471C706 UDP pyrophosphate synthase 0.253511521714 0.5 0.246488478286 +UniRef50_Q5F8C3 Fructose 1,6 bisphosphatase class 1 0.0588186290053 0.5 0.441181370994 +UniRef50_UPI00037A84AA hypothetical protein 0.188295063341 0.5 0.311704936659 +UniRef50_UPI0004193DB1 chemotaxis protein CheY 1.28809841586 0.5 -0.788098415856 +UniRef50_P77536 3.15169574911 0.499999999999 -2.65169574911 +UniRef50_A6M0P7 Xanthine uracil vitamin C permease 0.334386073845 0.5 0.165613926155 +UniRef50_Q8ZM06 2,5 diketo D gluconic acid reductase A 0.627527475943 0.5 -0.127527475943 +UniRef50_I4Y2U3 DJ 1 PfpI family protein 0.0247891940252 0.5 0.475210805975 +UniRef50_I2DEY3 Flagellar hook associated protein FlgL 0.0223977322037 0.5 0.477602267796 +UniRef50_V8RB85 ATP dependent DNA helicase DinG 1.74229483091 0.5 -1.24229483091 +UniRef50_UPI0003B331D4 glycosyl transferase 2.71386420043 0.500000000001 -2.21386420043 +UniRef50_D3E1W2 Lactaldehyde dehydrogenase CofA 2.26585207662 0.5 -1.76585207662 +UniRef50_O27126 DNA directed RNA polymerase subunit A 0.748544148246 0.5 -0.248544148246 +UniRef50_B4EEY8 ATP synthase gamma chain 0.111361511567 0.5 0.388638488432 +UniRef50_UPI00037BC6DA hypothetical protein, partial 5.88886286073 0.499999999997 -5.38886286073 +UniRef50_UPI00046F61F0 hypothetical protein 0.424201514274 0.5 0.0757984857257 +UniRef50_K9XMG5 Amidohydrolase 0.0277986697522 0.500000000001 0.472201330247 +UniRef50_B2JFL4 0.00730555832934 0.5 0.49269444167 +UniRef50_H8FVE2 0.907407967462 0.5 -0.407407967462 +UniRef50_A9MKD9 0.0172691905716 0.5 0.482730809428 +UniRef50_UPI0002FBDCEC hypothetical protein 0.0592101490508 0.5 0.440789850949 +UniRef50_P0AAS3 Inner membrane protein YbbJ 0.957152478146 0.5 -0.457152478146 +UniRef50_U6L2Z7 1.50619991997 0.5 -1.00619991997 +UniRef50_UPI00034D6EDA hypothetical protein 0.989207002755 0.5 -0.489207002755 +UniRef50_A9KF61 Thymidylate synthase 0.0269315196912 0.5 0.473068480309 +UniRef50_Q7TYA6 Aspartate tRNA ligase 0.0120874195414 0.5 0.487912580459 +UniRef50_M2E542 Transposase 1.85115250176 0.500000000001 -1.35115250176 +UniRef50_C5A8E0 HlyD family secretion protein 1.32017720139 0.5 -0.820177201388 +UniRef50_UPI000367DB79 hypothetical protein 3.84518628879 0.500000000002 -3.3451862888 +UniRef50_UPI000374E007 hypothetical protein 0.167991848222 0.5 0.332008151778 +UniRef50_W0RJM9 Beta lactamase domain protein 0.018118916148 0.5 0.481881083852 +UniRef50_UPI0003B6EABF sodium 0.715069367281 0.5 -0.215069367281 +UniRef50_A5V5W9 DGPFAETKE family protein 0.777671278338 0.5 -0.277671278338 +UniRef50_D8S962 1.97886422587 0.499999999999 -1.47886422587 +UniRef50_D0KZ58 1.11194901426 0.5 -0.611949014262 +UniRef50_A3UE08 Chemotactic signal response protein CheL 1.0079212381 0.5 -0.507921238103 +UniRef50_B3PH50 Probable protein kinase UbiB 0.0493079731431 0.5 0.450692026857 +UniRef50_Q8FJC0 1.3641869858 0.5 -0.864186985795 +UniRef50_O08399 DNA gyrase subunit B 0.37663952476 0.5 0.12336047524 +UniRef50_Q1GKH2 Two component transcriptional regulator, winged helix family 2.91998045673 0.499999999996 -2.41998045673 +UniRef50_UPI00036B452D hypothetical protein 0.654887213848 0.5 -0.154887213848 +UniRef50_Q49VN6 2.46816087613 0.500000000001 -1.96816087613 +UniRef50_B2T8C3 Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein 0.543883849253 0.5 -0.0438838492532 +UniRef50_D8JMP7 0.0285213525743 0.5 0.471478647426 +UniRef50_Q2KUE4 Adenine phosphoribosyltransferase 0.434157778298 0.5 0.065842221702 +UniRef50_Q79BD2 0.450215732951 0.5 0.0497842670485 +UniRef50_J7M139 tRNA dihydrouridine synthase 0.356681734325 0.5 0.143318265675 +UniRef50_Q49VN9 0.275144208629 0.5 0.224855791371 +UniRef50_UPI00045E99AE hypothetical protein 1.42387763884 0.5 -0.923877638839 +UniRef50_Q6AEL0 Non canonical purine NTP pyrophosphatase 0.149444477982 0.5 0.350555522018 +UniRef50_S2XCJ5 0.657255690993 0.5 -0.157255690993 +UniRef50_A6TCB0 Uracil phosphoribosyltransferase 0.779137726514 0.5 -0.279137726514 +UniRef50_UPI000370FC7C hypothetical protein 0.797382594219 0.5 -0.297382594219 +UniRef50_C6SR38 1.79783192739 0.5 -1.29783192739 +UniRef50_B9KLG8 PTS system, fructose subfamily, IIC subunit 0.181427150599 0.5 0.318572849401 +UniRef50_Q2P7B5 Acyl carrier protein 0.0482797864826 0.5 0.451720213517 +UniRef50_A6M0D3 Methyl accepting chemotaxis sensory transducer 0.0979900123145 0.5 0.402009987685 +UniRef50_K6GS41 Winged helix turn helix 0.00483435719646 0.5 0.495165642803 +UniRef50_Q893F0 Transcriptional regulatory protein 0.0390653286854 0.5 0.460934671314 +UniRef50_A9A5Y7 Inosine 5 monophosphate dehydrogenase 0.8704239533 0.5 -0.3704239533 +UniRef50_B9Y1T7 0.00521023804709 0.5 0.494789761953 +UniRef50_Q8CUE7 Mobilization protein 2.62434487442 0.5 -2.12434487442 +UniRef50_Q5WIL7 Phosphonates import ATP binding protein PhnC 2.80847838264 0.499999999998 -2.30847838264 +UniRef50_D8JEB9 Group A colicins tolerance protein 0.0085145056511 0.5 0.491485494349 +UniRef50_P31549 Thiamine transport system permease protein ThiP 1.1954447809 0.5 -0.695444780903 +UniRef50_A9M106 Soluble lytic murein transglycosylase, putative 0.0153231309273 0.5 0.484676869073 +UniRef50_F5XRT1 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.0193888308533 0.5 0.480611169147 +UniRef50_UPI0004416A22 hypothetical protein PUNSTDRAFT_135060 0.635066634413 0.5 -0.135066634413 +UniRef50_B9DLR4 Putative 3 methyladenine DNA glycosylase 1.54005823143 0.5 -1.04005823143 +UniRef50_F0Y296 0.403126735414 0.5 0.0968732645862 +UniRef50_F2F9R8 0.004228093064 0.499999999999 0.495771906937 +UniRef50_Q8DUW3 Shikimate dehydrogenase 1.57818900386 0.5 -1.07818900386 +UniRef50_T2H9Z7 14.9090898728 0.499999999997 -14.4090898728 +UniRef50_UPI000380D55F hypothetical protein 0.188366341391 0.5 0.311633658609 +UniRef50_Q14GX0 Chaperone protein DnaJ 0.0125670327068 0.5 0.487432967293 +UniRef50_UPI0003748B7D hypothetical protein 0.214966966257 0.5 0.285033033743 +UniRef50_Q321Q6 0.725968316517 0.5 -0.225968316517 +UniRef50_K6QCW0 0.039800144333 0.5 0.460199855667 +UniRef50_U5MWF2 0.0747165125621 0.5 0.425283487438 +UniRef50_UPI00037BD3FB hypothetical protein 0.0079112481776 0.5 0.492088751823 +UniRef50_UPI00046FDA02 hypothetical protein 0.283567964024 0.5 0.216432035976 +UniRef50_J3N3W4 0.815915486721 0.5 -0.315915486721 +UniRef50_UPI0003B5133D ATP dependent DNA helicase 0.817218194494 0.5 -0.317218194494 +UniRef50_UPI00041A4387 DNA polymerase I 0.0127992380034 0.5 0.487200761997 +UniRef50_UPI0002378CB3 X Pro dipeptidase 0.109011611446 0.500000000001 0.390988388554 +UniRef50_A6M378 Thymidylate synthase 0.114389663551 0.5 0.385610336449 +UniRef50_I1EHP5 1.06456121462 0.5 -0.564561214617 +UniRef50_W4UBB6 Succinate dehydrogenase flavoprotein subunit 0.801359608481 0.5 -0.301359608481 +UniRef50_D6SC84 0.444781625038 0.5 0.0552183749615 +UniRef50_UPI000405366E FAD dependent oxidoreductase 0.638791734575 0.5 -0.138791734575 +UniRef50_B0KAL7 4 hydroxy tetrahydrodipicolinate synthase 0.165711264862 0.499999999999 0.334288735139 +UniRef50_K0LQD7 Hydrolase 1.25167844193 0.5 -0.751678441932 +UniRef50_G7M6G8 Heavy metal transport detoxification protein 0.287293923604 0.5 0.212706076396 +UniRef50_UPI00046934BB peptidase C39, partial 0.449995928236 0.5 0.0500040717638 +UniRef50_Q3IV33 Putative outer membrane protein 8.01029849821 0.499999999991 -7.5102984982 +UniRef50_Q9RY14 0.0015560697745 0.5 0.498443930226 +UniRef50_F5ZHL1 Sulfatase 1.55722947622 0.5 -1.05722947622 +UniRef50_Q9RY17 0.00782422661383 0.5 0.492175773386 +UniRef50_Q9RY11 0.00124351489472 0.5 0.498756485105 +UniRef50_Q9RY12 0.00286461152804 0.5 0.497135388472 +UniRef50_UPI0003B667B4 ABC transporter ATP binding protein, partial 0.898670613805 0.5 -0.398670613805 +UniRef50_UPI0004716B86 hypothetical protein 0.554279985699 0.5 -0.0542799856989 +UniRef50_UPI0004171A57 histidinol phosphate aminotransferase 0.309702200869 0.5 0.190297799131 +UniRef50_H9UQE9 Putative inner membrane protein 0.0781182184931 0.5 0.421881781507 +UniRef50_D4L1E1 ABC type Fe3+ siderophore transport system, permease component 0.0974623211831 0.5 0.402537678817 +UniRef50_H7BW27 3.61344042639 0.500000000002 -3.11344042639 +UniRef50_UPI000363A648 hypothetical protein 0.78501837493 0.5 -0.28501837493 +UniRef50_K3QZQ8 0.364718360561 0.5 0.135281639439 +UniRef50_P28912 H repeat associated protein YhhI 1.50750754338 0.5 -1.00750754338 +UniRef50_UPI00036D582C hypothetical protein 0.628127670698 0.5 -0.128127670698 +UniRef50_A6LR25 Binding protein dependent transport systems inner membrane component 0.247856114221 0.5 0.252143885779 +UniRef50_U1RDC8 0.0909090416726 0.5 0.409090958328 +UniRef50_A3DE29 Phospho N acetylmuramoyl pentapeptide transferase 0.048066677624 0.499999999999 0.451933322377 +UniRef50_A5UJY3 Polyferredoxin, iron sulfur binding 5.64263645295 0.500000000002 -5.14263645295 +UniRef50_A0A011MBA1 DNA repair protein RecN 0.119468154234 0.5 0.380531845766 +UniRef50_Q9ZK62 Signal recognition particle protein 0.00959272930849 0.5 0.490407270691 +UniRef50_L0M8C5 0.0967588898255 0.5 0.403241110174 +UniRef50_A3MYR6 Shikimate kinase 1.07033978137 0.5 -0.570339781366 +UniRef50_O06005 Amino acid permease AapA 0.0259689103575 0.5 0.474031089643 +UniRef50_B5YFV7 DNA directed RNA polymerase subunit beta 1.3766448405 0.5 -0.876644840497 +UniRef50_UPI0003632FFE hypothetical protein 0.144879916929 0.5 0.355120083071 +UniRef50_D7AA03 Binding protein dependent transport systems inner membrane component 7.05593315121 0.500000000004 -6.55593315122 +UniRef50_A8HWS0 2.65664071524 0.500000000002 -2.15664071524 +UniRef50_I4Z4F5 Lipoprotein 0.623010385699 0.5 -0.123010385699 +UniRef50_Q06951 Phosphomannomutase 21.292365782 0.500000000003 -20.792365782 +UniRef50_E6MZK3 Binding dependent transport system inner membrane component family protein 0.0286014157389 0.499999999999 0.471398584262 +UniRef50_G8LF66 Nitrate nitrite response regulator protein narL 0.615821868003 0.5 -0.115821868003 +UniRef50_A5UJK6 0.155328814224 0.5 0.344671185776 +UniRef50_A5UJK7 2.43810661248 0.5 -1.93810661248 +UniRef50_R6G3H3 FAD binding domain protein 0.244973713104 0.5 0.255026286896 +UniRef50_UPI00041B7937 hypothetical protein 0.353841421095 0.5 0.146158578905 +UniRef50_Q9RR63 Tyrosine tRNA ligase 0.00297293700664 0.5 0.497027062994 +UniRef50_Q5HQF1 Membrane protein, putative 1.84149585401 0.499999999997 -1.34149585401 +UniRef50_A0LSS7 Glutamate tRNA ligase 0.00679237770875 0.5 0.493207622291 +UniRef50_O26156 Short chain isoprenyl diphosphate synthase 0.421982386849 0.5 0.0780176131513 +UniRef50_UPI0003FDB9A0 SAM dependent methyltransferase 0.220555741209 0.5 0.279444258791 +UniRef50_V6FKX1 Glycosyl hydrolase family 3, C terminal domain protein 0.139512830022 0.499999999999 0.360487169979 +UniRef50_Q49W95 NADH 3.21542220886 0.499999999999 -2.71542220886 +UniRef50_B1LKC4 Ureidoglycolate lyase 0.345681645035 0.5 0.154318354965 +UniRef50_UPI000287FF7D RpoD subfamily RNA polymerase sigma 70 subunit 0.177184160847 0.5 0.322815839153 +UniRef50_UPI0003AE35A2 PREDICTED 0.0195389979713 0.5 0.480461002029 +UniRef50_A8LIE1 Transcriptional regulator 1.84752005903 0.5 -1.34752005903 +UniRef50_M9VCG5 0.0149238536191 0.5 0.485076146381 +UniRef50_UPI0003B648D0 peptidase M20 0.139977168518 0.5 0.360022831481 +UniRef50_D4HCS1 0.0756882885602 0.5 0.42431171144 +UniRef50_Q5HRF8 Putative heme dependent peroxidase SERP0235 1.00729881584 0.5 -0.507298815843 +UniRef50_UPI0002FAB494 hypothetical protein 0.360429784269 0.5 0.139570215731 +UniRef50_Q52463 Glycosyltransferase alg8 0.612956017165 0.5 -0.112956017165 +UniRef50_F0T7F9 Precorrin 2 C20 methyltransferase 1.73206791835 0.5 -1.23206791835 +UniRef50_D5USJ5 ABC transporter related protein 0.250026333268 0.5 0.249973666732 +UniRef50_A0A015A762 Aminopeptidase N 0.0239860215221 0.5 0.476013978478 +UniRef50_R1EVW7 1.83205048011 0.499999999999 -1.33205048011 +UniRef50_P0DA58 DegV domain containing protein SpyM3_1667 4.21879626371 0.5 -3.71879626371 +UniRef50_Q12GA2 Glycerol kinase 0.00901136741597 0.5 0.490988632584 +UniRef50_UPI0003C10A99 PREDICTED 0.149384512921 0.5 0.35061548708 +UniRef50_C6XRP6 Transcriptional regulator, XRE family 1.315398574 0.5 -0.815398573998 +UniRef50_UPI0002A4AECE PREDICTED 0.160436236116 0.5 0.339563763884 +UniRef50_Q7VZ77 Siroheme synthase 1.59196999619 0.5 -1.09196999619 +UniRef50_G7M8Y2 Site determining protein 0.220477045625 0.5 0.279522954375 +UniRef50_Q8YHH4 Uridylate kinase 0.526025718604 0.5 -0.026025718604 +UniRef50_UPI00047C4E72 chemotaxis protein CheD 3.50536039699 0.500000000002 -3.00536039699 +UniRef50_UPI00041519E4 leucyl phenylalanyl tRNA protein transferase 0.223284567948 0.5 0.276715432052 +UniRef50_A0A031GMI8 0.118936718586 0.500000000001 0.381063281414 +UniRef50_UPI00037BE049 hypothetical protein 0.265952452106 0.5 0.234047547894 +UniRef50_I1XZ29 0.0479391007132 0.5 0.452060899287 +UniRef50_A6LYW5 0.779548562167 0.5 -0.279548562167 +UniRef50_Q3J464 Pseudouridine synthase 8.64156889328 0.499999999998 -8.14156889328 +UniRef50_G4LRU0 0.291524341525 0.5 0.208475658475 +UniRef50_M3BKE3 ComEC Rec2 like protein 0.098210451157 0.5 0.401789548843 +UniRef50_R6XPK5 0.0189036761434 0.5 0.481096323857 +UniRef50_A6LX94 Beta and gamma crystallin 0.399403489566 0.5 0.100596510434 +UniRef50_UPI000470DD33 cell division protein FtsZ 0.108352335143 0.5 0.391647664857 +UniRef50_P0A4G4 Metal ABC transporter substrate binding lipoprotein 0.311260040089 0.5 0.188739959911 +UniRef50_UPI00035EA533 hypothetical protein 0.732568344977 0.5 -0.232568344977 +UniRef50_UPI00046E5D21 glycosyl transferase 0.706563122475 0.5 -0.206563122475 +UniRef50_UPI0003740A8D hypothetical protein 0.0203602652362 0.499999999999 0.479639734764 +UniRef50_UPI0002FEF2A0 hypothetical protein 3.31284123445 0.5 -2.81284123445 +UniRef50_UPI0003AF1E76 PREDICTED 0.322221277133 0.5 0.177778722867 +UniRef50_D0C6D9 Molybdopterin oxidoreductase 0.00609458795538 0.5 0.493905412045 +UniRef50_B1YJY5 Endonuclease MutS2 0.0345625764692 0.500000000001 0.46543742353 +UniRef50_UPI00016C0B60 ABC transporter related protein 0.358574958474 0.5 0.141425041526 +UniRef50_A6W7W9 Probable dual specificity RNA methyltransferase RlmN 0.217217381697 0.5 0.282782618303 +UniRef50_Q9RTP8 Divalent metal cation transporter MntH 0.0287100472015 0.5 0.471289952798 +UniRef50_Q48C82 5.97037845698 0.5 -5.47037845698 +UniRef50_Q8FKC6 Acyl carrier protein phosphodiesterase 0.316375558583 0.5 0.183624441417 +UniRef50_UPI00030FC743 hypothetical protein 0.501620329364 0.5 -0.00162032936438 +UniRef50_A0A059IQC1 0.014636485017 0.5 0.485363514983 +UniRef50_UPI000376E9E0 hypothetical protein 1.10622524491 0.5 -0.606225244913 +UniRef50_C6SKJ8 0.0229096466876 0.5 0.477090353312 +UniRef50_UPI00047BE00A molecular chaperone GroES, partial 0.0317959149487 0.499999999999 0.468204085052 +UniRef50_UPI0004710755 ribonucleoside diphosphate reductase 0.0999164475554 0.5 0.400083552444 +UniRef50_Q9FIW4 Beta glucosidase 42 0.215648179399 0.5 0.284351820601 +UniRef50_UPI0003C13A93 PREDICTED 0.0368201648128 0.499999999999 0.463179835188 +UniRef50_Q67KG3 Bifunctional purine biosynthesis protein PurH 0.0273981690511 0.5 0.472601830949 +UniRef50_UPI000368145E hypothetical protein 0.912365575827 0.5 -0.412365575827 +UniRef50_F9PTR8 Rhodanese like protein 0.253492914111 0.5 0.246507085889 +UniRef50_Q2NEX9 PurB 1.65080984904 0.5 -1.15080984904 +UniRef50_Q6GFZ2 Probable tRNA sulfurtransferase 1.51396829591 0.500000000001 -1.01396829592 +UniRef50_UPI00037CBB5C hypothetical protein 0.467771263013 0.5 0.0322287369871 +UniRef50_J9NS14 0.621493951962 0.5 -0.121493951962 +UniRef50_UPI000388FD53 PREDICTED 0.0561475365197 0.500000000001 0.44385246348 +UniRef50_H5Y8S2 Transposase 3.86131778765 0.500000000002 -3.36131778765 +UniRef50_Q5ZKW0 Mitochondrial tRNA specific 2 thiouridylase 1 0.260289173432 0.5 0.239710826568 +UniRef50_B4RQI7 Anhydro N acetylmuramic acid kinase 0.0245374741022 0.5 0.475462525898 +UniRef50_Q9I5U5 Ribosomal RNA small subunit methyltransferase A 0.28515621709 0.5 0.21484378291 +UniRef50_B9KU25 1.40528084801 0.5 -0.905280848006 +UniRef50_Q9RSF6 Sun protein, putative 0.0135250357455 0.5 0.486474964255 +UniRef50_B9KJR9 1.53936608302 0.5 -1.03936608302 +UniRef50_S5CP44 Kef type K+ transport systems, predicted NAD binding component 0.0307891948593 0.5 0.469210805141 +UniRef50_UPI0003B6E634 histidine kinase 0.0408374654276 0.5 0.459162534573 +UniRef50_M9VMF8 DNase 0.205379682849 0.5 0.294620317151 +UniRef50_A0A022GYN4 tRNA specific adenosine deaminase 0.115348729306 0.5 0.384651270694 +UniRef50_U5MYV0 ATP dependent Clp protease ATP binding subunit ClpA 0.131469983168 0.5 0.368530016832 +UniRef50_P76261 Putative cyclic di GMP phosphodiesterase AdrB 1.99612770941 0.5 -1.49612770941 +UniRef50_U5UNN1 GNAT family acetyltransferase 14.7370798621 0.499999999999 -14.2370798621 +UniRef50_U5NRK2 10.6249401567 0.500000000001 -10.1249401567 +UniRef50_Q1C1V1 NADH pyrophosphatase 1.39548028697 0.5 -0.89548028697 +UniRef50_U5RUZ1 DNA polymerase III, subunits gamma and tau 0.0992553935188 0.5 0.400744606482 +UniRef50_UPI00037D5F1A hypothetical protein 1.07552797763 0.5 -0.575527977626 +UniRef50_UPI00047224C9 hypothetical protein 0.760697387077 0.5 -0.260697387077 +UniRef50_P36678 Putative type II secretion system protein M 0.607164584827 0.5 -0.107164584827 +UniRef50_G7MCP1 Multi sensor signal transduction histidine kinase 0.090495879737 0.5 0.409504120263 +UniRef50_Q6GIN0 Prolipoprotein diacylglyceryl transferase 1.04390144789 0.5 -0.543901447887 +UniRef50_B8FQ92 Chorismate synthase 0.0750107690929 0.500000000001 0.424989230907 +UniRef50_Q2WBD9 Phosphoheptose isomerase 0.450944692826 0.5 0.049055307174 +UniRef50_W8RXY9 Arsenate reductase related protein 1.62059645041 0.5 -1.12059645041 +UniRef50_A9M3Z6 Periplasmic protein 0.102668930594 0.5 0.397331069406 +UniRef50_UPI00036A03CE hypothetical protein 0.452068837952 0.5 0.0479311620485 +UniRef50_UPI0003486CF4 hypothetical protein 0.0644818279964 0.500000000001 0.435518172003 +UniRef50_Q6A8Q7 1,4 alpha glucan branching enzyme GlgB 0.00680933463065 0.5 0.493190665369 +UniRef50_G4B6N4 0.025776153393 0.5 0.474223846607 +UniRef50_UPI000477A19D ribose ABC transporter permease 1.57660308306 0.499999999999 -1.07660308306 +UniRef50_A1U1A4 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.308396607119 0.5 0.191603392881 +UniRef50_Q167T4 Branched chain amino acid ABC transporter, permease protein, putative 1.71576318243 0.5 -1.21576318243 +UniRef50_V5ZX98 0.886347128592 0.5 -0.386347128592 +UniRef50_C6M2N2 RND transporter, HAE1 family 0.0463032348759 0.5 0.453696765124 +UniRef50_UPI0004796185 16S rRNA methyltransferase 0.522823532402 0.5 -0.0228235324023 +UniRef50_UPI000472B33B ABC transporter 0.0993079834828 0.5 0.400692016517 +UniRef50_P56396 Tryptophan tRNA ligase 0.0207731282299 0.5 0.47922687177 +UniRef50_Q5L8Z8 Malate dehydrogenase 0.00605646713911 0.5 0.493943532861 +UniRef50_UPI000377FC08 LuxR family transcriptional regulator 0.0727715918952 0.5 0.427228408105 +UniRef50_A8LPC2 tRNA modification GTPase MnmE 2.09433693311 0.5 -1.59433693311 +UniRef50_O26480 UDP glucose 4 epimerase homolog 2.69592160494 0.500000000001 -2.19592160494 +UniRef50_Q1J391 Allantoinase 0.00017175492714 0.5 0.499828245073 +UniRef50_UPI00046FE227 multidrug ABC transporter ATP binding protein 1.14892904363 0.5 -0.648929043634 +UniRef50_V6EI61 Lactose permease 0.693534205305 0.5 -0.193534205305 +UniRef50_D7DKW7 Short chain dehydrogenase reductase SDR 1.69654693688 0.5 -1.19654693688 +UniRef50_I5C147 4.26897395953 0.500000000004 -3.76897395953 +UniRef50_Q7VW21 UPF0246 protein BP2452 0.128588331968 0.5 0.371411668032 +UniRef50_M3Z864 0.146473807097 0.499999999999 0.353526192904 +UniRef50_UPI00035D274E hypothetical protein 0.636880054435 0.5 -0.136880054435 +UniRef50_O25722 DNA translocase FtsK 0.0281405470148 0.5 0.471859452985 +UniRef50_Q1C3L9 Lipoprotein NlpI 1.59205120703 0.5 -1.09205120703 +UniRef50_UPI0004650975 hypothetical protein 9.93371024071 0.499999999994 -9.4337102407 +UniRef50_UPI00037DD9E3 hypothetical protein, partial 0.699033975888 0.5 -0.199033975888 +UniRef50_UPI0004630A02 hypothetical protein 0.461816789327 0.5 0.0381832106728 +UniRef50_UPI00037AA24F 30S ribosomal protein S19, partial 0.638529741887 0.5 -0.138529741887 +UniRef50_A0A023Y3Z5 1.91637629955 0.500000000002 -1.41637629955 +UniRef50_UPI00036F824A MULTISPECIES 3.2097668292 0.5 -2.7097668292 +UniRef50_UPI00034D7E89 hypothetical protein 0.0125861719468 0.5 0.487413828053 +UniRef50_UPI000369A9BC hypothetical protein 18.7500381921 0.5 -18.2500381921 +UniRef50_K4A616 0.551070506335 0.5 -0.0510705063353 +UniRef50_UPI0003B739B2 glutamyl tRNA synthetase 0.539363117837 0.5 -0.0393631178365 +UniRef50_Q8CPM6 Divalent metal cation transporter MntH 2.41870359278 0.499999999999 -1.91870359278 +UniRef50_A0A011R0M1 Dual specificity phosphatase, catalytic domain protein 0.188174653405 0.5 0.311825346595 +UniRef50_P42590 Inner membrane transporter YgjI 4.19902785243 0.500000000009 -3.69902785243 +UniRef50_A3DDS7 Indole 3 glycerol phosphate synthase 0.328438130878 0.5 0.171561869122 +UniRef50_R5TME3 Xylulokinase 0.0577243053794 0.5 0.442275694621 +UniRef50_A3PQ77 Tripartite ATP independent periplasmic transporter, DctQ component 13.3074330094 0.500000000001 -12.8074330094 +UniRef50_P47650 Phosphate import ATP binding protein PstB 0.376784000404 0.5 0.123215999596 +UniRef50_X1GFV3 Marine sediment metagenome DNA, contig 0.0678671517663 0.5 0.432132848234 +UniRef50_UPI00029A5C6F protein narU, partial 0.976899780937 0.5 -0.476899780937 +UniRef50_Q732P6 Isoprenyl transferase 1.31795297076 0.5 -0.81795297076 +UniRef50_Q6F7N0 Ferrochelatase 0.00698060495202 0.5 0.493019395048 +UniRef50_F4D5J0 0.0689637253973 0.5 0.431036274603 +UniRef50_UPI00039E983D acetylglutamate kinase 0.693133580074 0.5 -0.193133580074 +UniRef50_U2ZS91 0.97582892809 0.5 -0.47582892809 +UniRef50_A5UKG8 Nicotinate nucleotide pyrophosphorylase [carboxylating] 2.27206855966 0.5 -1.77206855966 +UniRef50_H0Q5F2 Short chain dehydrogenase reductase SDR 0.0605162808978 0.5 0.439483719102 +UniRef50_UPI0003629198 hypothetical protein 0.334348015556 0.5 0.165651984444 +UniRef50_Q5HKK3 0.26531512965 0.5 0.23468487035 +UniRef50_UPI000475640B pilus assembly protein CpaF 0.922282447355 0.5 -0.422282447355 +UniRef50_UPI0003C1219C 2.57824979542 0.5 -2.07824979542 +UniRef50_I6STQ4 Oxidoreductase 0.809552792834 0.5 -0.309552792834 +UniRef50_Q6GHV6 Iron regulated surface determinant protein A 1.55255729898 0.5 -1.05255729898 +UniRef50_Q3JF19 Glycerol 3 phosphate dehydrogenase [NAD+] 1.26557746027 0.5 -0.765577460274 +UniRef50_UPI00037482BD hypothetical protein 0.342948224044 0.5 0.157051775956 +UniRef50_UPI00037267AF hypothetical protein 0.0593240163638 0.5 0.440675983636 +UniRef50_UPI000370F5C3 hypothetical protein 4.37089090594 0.499999999994 -3.87089090594 +UniRef50_D6M286 Tat pathway signal sequence 2.35529417812 0.499999999998 -1.85529417812 +UniRef50_M0J3W1 dGTPase 0.155105066974 0.5 0.344894933026 +UniRef50_W5B0U3 0.615856174167 0.5 -0.115856174167 +UniRef50_P37342 5.3994959345 0.500000000001 -4.8994959345 +UniRef50_S6AVL7 0.0232151297548 0.5 0.476784870245 +UniRef50_UPI000371A11E MULTISPECIES 0.787955262886 0.5 -0.287955262886 +UniRef50_Q0FDE4 FoF1 ATP synthase, subunit I 0.32077198041 0.5 0.17922801959 +UniRef50_L7WPL2 3.03227948145 0.500000000001 -2.53227948145 +UniRef50_Q5HQZ3 Transferrin receptor 4.68435384076 0.499999999999 -4.18435384076 +UniRef50_Q8DR58 UPF0398 protein spr0331 0.970048068575 0.5 -0.470048068575 +UniRef50_K1BXA7 Two component sensor 1.47721077737 0.499999999999 -0.977210777374 +UniRef50_B7VS71 Phosphomethylpyrimidine kinase 0.0107289576439 0.5 0.489271042356 +UniRef50_P23530 Phosphoenolpyruvate protein phosphotransferase 0.856227835833 0.5 -0.356227835833 +UniRef50_UPI000472C798 pseudouridine synthase 0.201415181381 0.5 0.298584818619 +UniRef50_M3BD66 1.39164790776 0.5 -0.89164790776 +UniRef50_K9NR38 Peptidase M23B 2.56052111468 0.5 -2.06052111468 +UniRef50_Q6FA84 0.246210625317 0.5 0.253789374683 +UniRef50_Q3D4U8 0.754462079218 0.5 -0.254462079218 +UniRef50_UPI00046FB65C hypothetical protein 1.24226997346 0.499999999999 -0.742269973462 +UniRef50_Q7UR11 Ferripyochelin binding protein 0.755907121939 0.5 -0.255907121939 +UniRef50_UPI00047CB9DF 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase 1.93201655669 0.500000000001 -1.43201655669 +UniRef50_Q5LUR8 Zinc import ATP binding protein ZnuC 1.1021762804 0.500000000001 -0.602176280398 +UniRef50_Q3ZAD5 Cysteine tRNA ligase 0.141983577507 0.5 0.358016422493 +UniRef50_Q8DVX1 1.98521566786 0.499999999998 -1.48521566786 +UniRef50_I0C0T2 Trp repressor binding protein 0.717280345441 0.5 -0.217280345441 +UniRef50_I5C5U6 0.262841157896 0.5 0.237158842104 +UniRef50_A4WUQ1 0.12670276 0.5 0.37329724 +UniRef50_P37691 1.36518926064 0.499999999999 -0.865189260635 +UniRef50_U5MLQ3 Processive diacylglycerol glucosyltransferase UgtP 0.0615866154991 0.5 0.438413384501 +UniRef50_Q9P9A1 Nitrate reductase beta subunit 0.329018723419 0.5 0.170981276581 +UniRef50_UPI000379A03B malyl CoA thiolesterase 0.890059046775 0.5 -0.390059046775 +UniRef50_I0EPP7 Periplasmic dipeptide transport substrate binding protein 0.0100336646395 0.5 0.48996633536 +UniRef50_Q8CU41 Ornithine carbamoyltransferase 1, catabolic 1.57616795089 0.5 -1.07616795089 +UniRef50_E4BBW7 0.276019194262 0.5 0.223980805738 +UniRef50_Q2NI05 MvhA 1.19038879858 0.5 -0.690388798583 +UniRef50_A0A058Z3Q5 0.671112028606 0.5 -0.171112028606 +UniRef50_D3QHG0 Phosphonate ABC transporter permease protein phnE1 1.51923830023 0.500000000001 -1.01923830024 +UniRef50_G7M9K8 Methyl accepting chemotaxis sensory transducer 0.0789831112457 0.5 0.421016888754 +UniRef50_UPI00047CAA92 polynucleotide phosphorylase polyadenylase 0.149386496891 0.5 0.350613503109 +UniRef50_V6ZFX5 HD domain protein 0.104118758844 0.5 0.395881241156 +UniRef50_C5B9D9 Phosphopantetheine adenylyltransferase 2.51846064956 0.5 -2.01846064956 +UniRef50_P0AEV2 Regulator of RpoS 1.8599615302 0.5 -1.3599615302 +UniRef50_I3U2F8 DAACS family dicarboxylate amino acid 1.53828389938 0.5 -1.03828389938 +UniRef50_UPI0004673090 DNA mismatch repair protein Vsr 1.69332617339 0.5 -1.19332617339 +UniRef50_I6TRJ5 Arsenate reductase 0.0182351968715 0.5 0.481764803129 +UniRef50_A6DYW3 0.291834729388 0.5 0.208165270612 +UniRef50_Q6A7D5 Conserved protein 0.0141819170562 0.5 0.485818082944 +UniRef50_A5ULE4 Predicted transcriptional regulator 2.46481524624 0.499999999998 -1.96481524623 +UniRef50_UPI0003820AE4 hypothetical protein 0.280367354812 0.5 0.219632645188 +UniRef50_Q5ZUH9 Lipid A export ATP binding permease protein MsbA 0.108297057968 0.500000000001 0.391702942032 +UniRef50_A4VGV6 0.325244050858 0.5 0.174755949142 +UniRef50_UPI000382EBAF hypothetical protein 0.35764265507 0.5 0.14235734493 +UniRef50_M4KI13 Fibrinogen binding family protein 1.24541947327 0.5 -0.745419473269 +UniRef50_Q07V02 RNA pyrophosphohydrolase 2.48714476173 0.499999999999 -1.98714476173 +UniRef50_Q3JWW0 0.0198016129302 0.5 0.48019838707 +UniRef50_A4H7G2 0.127888871248 0.5 0.372111128752 +UniRef50_Q2NES1 FrhB 14.5296339687 0.500000000005 -14.0296339687 +UniRef50_Q1IIL2 Chorismate synthase 0.0490337830614 0.5 0.450966216939 +UniRef50_R6RW73 ABC type multidrug transport system ATPase component 1.09693886801 0.5 -0.596938868015 +UniRef50_A0A009VZS8 Penicillin binding protein 2 0.0687986104961 0.5 0.431201389504 +UniRef50_UPI0003768F8C hypothetical protein 2.6132396629 0.500000000001 -2.1132396629 +UniRef50_O27054 Probable L aspartate dehydrogenase 1.81750609453 0.5 -1.31750609453 +UniRef50_B9KQJ4 Chemotactic signal response protein CheL 1.07691986207 0.5 -0.57691986207 +UniRef50_E3J2U0 Transcriptional regulator 0.140500928377 0.5 0.359499071623 +UniRef50_F9YZS9 Integral membrane protein 0.00900137087623 0.5 0.490998629124 +UniRef50_K9F564 Putative extracellular nuclease 0.0105816877762 0.5 0.489418312224 +UniRef50_L8GHN9 0.171664694219 0.5 0.328335305781 +UniRef50_UPI00047883C6 hypothetical protein 0.420724066587 0.5 0.0792759334133 +UniRef50_UPI00047EF6F7 ABC transporter ATP binding protein 0.017966637715 0.5 0.482033362285 +UniRef50_UPI000463035D hypothetical protein 0.206586179809 0.5 0.293413820191 +UniRef50_A0A024KYL9 ATP dependent Clp protease ATP binding subunit 2.31786062736 0.5 -1.81786062736 +UniRef50_D5AP52 4.82757515795 0.500000000001 -4.32757515795 +UniRef50_UPI0004764AED hypothetical protein, partial 1.39517565902 0.5 -0.895175659023 +UniRef50_Q9KUD9 Ribosomal RNA small subunit methyltransferase I 0.0612968961628 0.5 0.438703103837 +UniRef50_F0XYP3 0.796298429401 0.5 -0.296298429401 +UniRef50_N1UE46 2.56993079752 0.499999999999 -2.06993079752 +UniRef50_A0A020CJ31 1.12910471455 0.5 -0.629104714549 +UniRef50_S4MU14 2.83239190061 0.5 -2.33239190061 +UniRef50_A5UP58 1.99059105742 0.5 -1.49059105742 +UniRef50_D4X8Q1 RepB plasmid partitioning protein 0.0725726584198 0.5 0.42742734158 +UniRef50_U5P983 Macrolide ABC transporter ATP binding protein 0.628290875653 0.5 -0.128290875653 +UniRef50_Q5GTU8 MFS transporter 0.663002890632 0.5 -0.163002890632 +UniRef50_O67528 Nucleoside diphosphate kinase 1.48760959176 0.5 -0.987609591757 +UniRef50_K9PAV6 Lysophospholipase 0.0299343461689 0.5 0.470065653831 +UniRef50_Q4L7V6 Holo [acyl carrier protein] synthase 0.4985464843 0.5 0.00145351569976 +UniRef50_F2EXR6 0.86194537011 0.5 -0.36194537011 +UniRef50_UPI000395608F 3 hydroxyacyl CoA dehydrogenase 0.154901209231 0.5 0.34509879077 +UniRef50_B8DYK8 Deoxycytidine triphosphate deaminase 1.46454635835 0.5 -0.964546358347 +UniRef50_UPI000349DE0E hypothetical protein 0.609463869087 0.5 -0.109463869087 +UniRef50_P35594 ATP dependent Clp protease ATP binding subunit ClpE 0.318771203546 0.5 0.181228796454 +UniRef50_UPI00037BD53F hypothetical protein 0.56739153983 0.5 -0.0673915398296 +UniRef50_A1TRG1 Glucose 1 phosphate adenylyltransferase 0.253411354942 0.5 0.246588645058 +UniRef50_UPI00037AD344 hypothetical protein 0.128928437125 0.5 0.371071562875 +UniRef50_UPI0003A602B5 AraC family transcriptional regulator 1.27495528369 0.5 -0.774955283692 +UniRef50_A5WFS0 NADPH dependent FMN reductase 0.0152122015218 0.5 0.484787798478 +UniRef50_Q7VGA7 Tryptophan synthase beta chain 0.711647660567 0.5 -0.211647660567 +UniRef50_Q0W484 Homoserine O acetyltransferase 3.47769472333 0.5 -2.97769472333 +UniRef50_U6AE16 Methyl accepting chemotaxis protein 1.18481422464 0.5 -0.684814224642 +UniRef50_UPI0003B4EF9E ATPase, partial 0.0020986046013 0.500000000001 0.497901395398 +UniRef50_UPI0003B31E86 TDP glucose 4,6 dehydratase 0.0598082539478 0.5 0.440191746052 +UniRef50_Q93XI4 N carbamoylputrescine amidase 0.159084012364 0.5 0.340915987636 +UniRef50_R7BPT0 2 nitropropane dioxygenase NPD 0.483270359086 0.5 0.0167296409136 +UniRef50_D3JTG7 AqsR 0.0287766408998 0.5 0.4712233591 +UniRef50_A5UNG9 4 diphosphocytidyl 2 methyl D erithritol synthase, IspD 0.747526270147 0.5 -0.247526270147 +UniRef50_UPI000360F677 hypothetical protein 0.0472066799711 0.5 0.452793320029 +UniRef50_Q602K3 Porphobilinogen deaminase 0.280747745923 0.5 0.219252254077 +UniRef50_X2IT45 DNA polymerase III subunit gamma tau 0.00849208499651 0.5 0.491507915003 +UniRef50_UPI0004720C75 hypothetical protein 0.614761563002 0.5 -0.114761563002 +UniRef50_A0A031H7A6 1.30534025008 0.5 -0.805340250078 +UniRef50_Q6L178 Probable transaldolase 0.227972492128 0.5 0.272027507872 +UniRef50_A7FBR2 0.0127989962002 0.5 0.4872010038 +UniRef50_L8E566 0.360361934438 0.5 0.139638065562 +UniRef50_UPI000382D4E3 hypothetical protein 0.378345997385 0.5 0.121654002615 +UniRef50_A0ALU1 50S ribosomal protein L17 6.95648779991 0.5 -6.45648779991 +UniRef50_P38448 KHG KDPG aldolase 0.109956835141 0.5 0.390043164859 +UniRef50_W0YS94 0.63425913813 0.5 -0.13425913813 +UniRef50_A3QDX8 Dihydroorotate dehydrogenase 0.379303752642 0.5 0.120696247358 +UniRef50_B4RKY8 Succinyl diaminopimelate desuccinylase 0.000311054113091 0.5 0.499688945887 +UniRef50_UPI0003F8D5B0 hypothetical protein 0.00362657437664 0.5 0.496373425623 +UniRef50_B8ERB2 Ppx GppA phosphatase 0.117890238774 0.5 0.382109761226 +UniRef50_R6FSB9 Peptidase M24 0.469257216306 0.5 0.0307427836945 +UniRef50_F0MEQ3 Ferripyoverdine receptor 0.0350969749001 0.5 0.464903025099 +UniRef50_F6IIV1 Flagellum specific ATP synthase 1.85300536913 0.5 -1.35300536913 +UniRef50_W4TT30 0.0696239176626 0.5 0.430376082337 +UniRef50_Q8CQA8 Surfactin synthetase 1.20947773743 0.5 -0.709477737427 +UniRef50_P0A5I3 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 2 0.602921600685 0.5 -0.102921600685 +UniRef50_W7NBP5 0.0332243886058 0.5 0.466775611394 +UniRef50_Q3KF35 Glutamate tRNA ligase 0.0802719633821 0.5 0.419728036618 +UniRef50_P56926 Glutamine tRNA ligase 7.64786931861e-05 0.5 0.499923521307 +UniRef50_V4R1X6 0.318167344531 0.5 0.181832655469 +UniRef50_Q9JU31 DNA translocase FtsK 1 0.0115584287739 0.5 0.488441571226 +UniRef50_H6PB78 DNA polymerase III, gamma and tau subunits 0.362290643431 0.5 0.137709356569 +UniRef50_O04974 2 isopropylmalate synthase B 0.499229601272 0.5 0.000770398728019 +UniRef50_Q5HNB7 Phosphoenolpyruvate carboxykinase [ATP] 1.97613120216 0.5 -1.47613120216 +UniRef50_F8GU00 Oxygenase subunit protein 0.0130637056961 0.5 0.486936294304 +UniRef50_H8GWF1 5` nucleotidase family protein 0.00253474221383 0.5 0.497465257786 +UniRef50_H2GZD2 Ascorbate specific PTS system enzyme IIC 0.00572689208059 0.5 0.49427310792 +UniRef50_UPI00028A25D3 peptide ABC transporter 0.771608031934 0.5 -0.271608031934 +UniRef50_UPI0003EE1B84 PREDICTED 0.585419067006 0.5 -0.0854190670061 +UniRef50_J7QTA8 Putative DNA transposase 0.287918460291 0.5 0.212081539709 +UniRef50_W0YJI7 PAAR motif containing protein 0.0538203885368 0.5 0.446179611463 +UniRef50_Q8CUS7 Adenine deaminase 0.902122755896 0.5 -0.402122755896 +UniRef50_Q73E41 Calcium transporting ATPase 1 0.0233138900439 0.5 0.476686109956 +UniRef50_UPI0002558955 Recombinase A 1.94148471135 0.5 -1.44148471135 +UniRef50_F0Y1K3 Expressed protein 0.715276316555 0.5 -0.215276316555 +UniRef50_UPI00035D9122 hypothetical protein 0.28821827007 0.5 0.21178172993 +UniRef50_G0BED7 Transcriptional regulator, LysR family 0.0148393712764 0.5 0.485160628724 +UniRef50_A8Q1C8 1.64369507794 0.5 -1.14369507794 +UniRef50_K8WCA6 Heme lyase subunit CcmF 2.96770103615 0.499999999998 -2.46770103615 +UniRef50_Q88GW8 5 dehydro 4 deoxyglucarate dehydratase 1.66170651239 0.5 -1.16170651239 +UniRef50_B4SMK1 L lactate dehydrogenase [cytochrome] 0.527287474344 0.5 -0.0272874743438 +UniRef50_UPI00041BD20B hypothetical protein 0.014499278534 0.5 0.485500721466 +UniRef50_W5WU40 Anion transporter 2.81797114174 0.499999999999 -2.31797114174 +UniRef50_A7HYE5 Ribonuclease D 3.67306713471 0.5 -3.17306713471 +UniRef50_UPI0003C1900C PREDICTED 0.462507006833 0.5 0.0374929931675 +UniRef50_Q99W51 tRNA specific adenosine deaminase 256.081169185 0.500000000143 -255.581169185 +UniRef50_UPI00029AF092 multidrug transport protein, mfs family 0.0306870868553 0.5 0.469312913145 +UniRef50_Q9RST5 0.00354611520976 0.5 0.49645388479 +UniRef50_A7MS74 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1 1.17730220023 0.5 -0.677302200232 +UniRef50_I7DGD4 Signal transduction histidine kinase 1.05274057272 0.5 -0.552740572724 +UniRef50_Q5HKI9 Amino acid ABC transporter, amino acid binding protein 1.67885829744 0.499999999998 -1.17885829743 +UniRef50_UPI00036BE230 macrolide ABC transporter ATP binding protein 0.0116930712265 0.5 0.488306928774 +UniRef50_A0A010IHG0 Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein 0.00738125712703 0.5 0.492618742873 +UniRef50_A4IMP7 Large conductance mechanosensitive channel 0.443948512096 0.5 0.0560514879036 +UniRef50_UPI00046537F1 transcriptional repressor NemR 3.75658668677 0.5 -3.25658668677 +UniRef50_V5VGM0 Flavoprotein 0.00611736221234 0.5 0.493882637788 +UniRef50_A5UKL2 0.632582071637 0.5 -0.132582071637 +UniRef50_G8RFW9 0.577286104746 0.5 -0.077286104746 +UniRef50_Q5HNR9 D tyrosyl tRNA deacylase 2.76344847698 0.500000000001 -2.26344847698 +UniRef50_M1MJA7 rRNA ) methyltransferase 0.0332735669537 0.5 0.466726433046 +UniRef50_UPI0003DF781B PREDICTED 0.333806160331 0.5 0.166193839669 +UniRef50_F9Z1V2 RlpA like protein 0.00965785087635 0.5 0.490342149124 +UniRef50_A4WWS4 RecB family exonuclease like protein 1.23525121323 0.5 -0.735251213228 +UniRef50_Q98DE8 Glutathione synthetase 0.0161628995846 0.5 0.483837100415 +UniRef50_A5ISW4 11.995126808 0.499999999987 -11.495126808 +UniRef50_O68575 Pyruvate formate lyase activating enzyme 1.2956993353 0.5 -0.795699335297 +UniRef50_Q31RQ5 3 phosphoshikimate 1 carboxyvinyltransferase 0.35058777873 0.5 0.14941222127 +UniRef50_UPI00040D856B hypothetical protein 1.17063992969 0.5 -0.670639929694 +UniRef50_UPI000372D278 hypothetical protein 2.37746337002 0.500000000001 -1.87746337002 +UniRef50_UPI0004771B3E hypothetical protein 1.37009479231 0.500000000001 -0.870094792313 +UniRef50_F0KEU3 0.0278482917382 0.5 0.472151708262 +UniRef50_X0VX75 Marine sediment metagenome DNA, contig 0.55365663554 0.5 -0.05365663554 +UniRef50_B5H827 Cobalamin synthesis protein 0.4511145491 0.5 0.0488854509002 +UniRef50_P76176 1.69046787534 0.5 -1.19046787534 +UniRef50_Q5HLI8 Glutaredoxin, putative 2.39316402742 0.5 -1.89316402742 +UniRef50_B9JSI7 Cation efflux system protein 1.47638240431 0.5 -0.976382404312 +UniRef50_Q5NPR4 UvrABC system protein C 2.77921642508 0.5 -2.27921642508 +UniRef50_UPI00035DA52C hypothetical protein 0.102719477277 0.5 0.397280522723 +UniRef50_A5UP28 15.1007297496 0.499999999995 -14.6007297496 +UniRef50_V0RK41 3.25206036996 0.499999999999 -2.75206036996 +UniRef50_R5A601 Recombination inhibitory protein MutS2 2.52481486375 0.500000000002 -2.02481486375 +UniRef50_S5EBY8 0.241256139833 0.5 0.258743860167 +UniRef50_UPI0003C16983 0.152058187781 0.5 0.347941812219 +UniRef50_Q71ZJ9 Ribosomal protein L11 methyltransferase 0.0277437714456 0.499999999999 0.472256228555 +UniRef50_UPI000378771A hypothetical protein 0.535140628441 0.5 -0.0351406284415 +UniRef50_UPI00037134C7 hypothetical protein 1.36777973231 0.5 -0.867779732311 +UniRef50_UPI000359481D 0.513305155009 0.5 -0.0133051550092 +UniRef50_UPI0002F538D8 hypothetical protein 0.368058089817 0.5 0.131941910183 +UniRef50_U6JB04 Nucleoside diphosphate kinase 0.294229912337 0.5 0.205770087663 +UniRef50_A4WQY8 Cytochrome c type biogenesis protein CcmE 19.1096772666 0.500000000004 -18.6096772666 +UniRef50_A0A037VGU7 0.427246231359 0.5 0.0727537686409 +UniRef50_I2DHK5 0.0940788642592 0.5 0.405921135741 +UniRef50_Q6A7A2 DNA ligase 0.0123800344537 0.5 0.487619965546 +UniRef50_Q9RX88 50S ribosomal protein L25 0.0071759627118 0.5 0.492824037288 +UniRef50_O26759 Putative ammonium transporter MTH_663 1.95018806088 0.5 -1.45018806088 +UniRef50_H5UZW1 Glutathione regulated potassium efflux system protein KefC 0.136758645786 0.500000000001 0.363241354213 +UniRef50_UPI0001DD0CDF flagellar hook capping protein 0.367532246379 0.5 0.132467753621 +UniRef50_A5UMU8 Predicted glycosyltransferase, GT2 family 2.15189534374 0.499999999999 -1.65189534374 +UniRef50_UPI00047A6BB5 hypothetical protein 0.85840736432 0.5 -0.35840736432 +UniRef50_Q2G1X0 Alpha hemolysin 2.83806119558 0.5 -2.33806119558 +UniRef50_N0DZB3 Secreted protein 0.397397159736 0.5 0.102602840264 +UniRef50_P78029 Thymidylate synthase 0.00226032222115 0.5 0.497739677779 +UniRef50_Q5HGH0 Phosphatidate cytidylyltransferase 1.82898547788 0.499999999999 -1.32898547788 +UniRef50_P76177 Protein YdgH 0.866236943101 0.5 -0.366236943101 +UniRef50_UPI0003298C8F PREDICTED 0.353037783174 0.5 0.146962216826 +UniRef50_G2LAK2 Adhesive protein CupB5 0.940473491268 0.5 -0.440473491268 +UniRef50_V5VBD8 3 beta hydroxysteroid dehydrogenase isomerase 0.00729409408923 0.5 0.492705905911 +UniRef50_P54453 0.597460831478 0.5 -0.0974608314783 +UniRef50_F8A5M8 Alpha amylase catalytic region 0.0297245699111 0.5 0.470275430089 +UniRef50_X7E7E5 0.0195386802974 0.5 0.480461319703 +UniRef50_R7PTU8 ATP grasp domain protein 0.208974207566 0.5 0.291025792434 +UniRef50_R9SNU8 Radical SAM domain containing protein 2.0157597784 0.499999999997 -1.51575977839 +UniRef50_J7QY26 Escherichia coli IMT2125 genomic chromosome, IMT2125 0.231950877101 0.5 0.268049122899 +UniRef50_A5UKF9 ATP utilizing enzyme, PP loop superfamily 1.14679316076 0.499999999999 -0.646793160755 +UniRef50_D4Z726 3 oxoadipate CoA transferase alpha subunit LinG 0.0247722874452 0.5 0.475227712555 +UniRef50_R7PXC4 Probable ribosomal RNA small subunit methyltransferase A 1.30267257825 0.5 -0.802672578246 +UniRef50_A1WY69 DNA polymerase IV 0.197553257422 0.5 0.302446742578 +UniRef50_L7UII0 0.139055775104 0.5 0.360944224896 +UniRef50_F6CGX7 Quaternary amine transporting ATPase 0.991315961175 0.5 -0.491315961175 +UniRef50_UPI00037ED53F hypothetical protein 0.593105604072 0.5 -0.0931056040717 +UniRef50_Q9ZJN2 Probable nicotinate nucleotide pyrophosphorylase [carboxylating] 0.0357332785045 0.5 0.464266721495 +UniRef50_D9SQ35 Integrase family protein 1.05227747258 0.5 -0.552277472584 +UniRef50_UPI0003C17A16 PREDICTED 0.972133025831 0.5 -0.472133025831 +UniRef50_UPI000476CF1F pyridine nucleotide disulfide oxidoreductase 6.24858934585 0.50000000001 -5.74858934586 +UniRef50_V8HJS7 tRNA ) methyltransferase 4.06536338882 0.500000000005 -3.56536338883 +UniRef50_S2KIU7 Membrane protein 4.96737707464 0.500000000009 -4.46737707465 +UniRef50_J1SZC4 1.165976679 0.5 -0.665976679005 +UniRef50_C1DKJ3 Phospholipid glycerol acyltransferase 0.928289459516 0.5 -0.428289459516 +UniRef50_S5QXV6 Maltose maltodextrin binding protein 1.52136161383 0.5 -1.02136161383 +UniRef50_F0Y553 Expressed protein 0.459874960125 0.5 0.0401250398748 +UniRef50_B9KWV4 TRAP T family transporter, large inner membrane subunit DctM 2.62323595943 0.5 -2.12323595943 +UniRef50_B0U620 Uracil DNA glycosylase 0.30049288538 0.5 0.19950711462 +UniRef50_P26170 Bacteriochlorophyll synthase 33 kDa chain 3.35659943716 0.500000000002 -2.85659943716 +UniRef50_D3QCC1 Preprotein translocase subunit YajC 0.549015930047 0.5 -0.0490159300474 +UniRef50_Q6FFG0 0.0273901963238 0.5 0.472609803676 +UniRef50_UPI00034A058C hypothetical protein 0.322746682223 0.5 0.177253317777 +UniRef50_T0T503 Purine nucleoside phosphorylase 1.18839047817 0.5 -0.688390478174 +UniRef50_B1JPZ9 4 alpha L fucosyltransferase 2.0926636395 0.5 -1.5926636395 +UniRef50_Q3B1T5 0.887842000789 0.5 -0.387842000789 +UniRef50_M9VFM2 0.0202600051789 0.5 0.479739994821 +UniRef50_Q82TC0 Shikimate kinase 0.215754994408 0.5 0.284245005592 +UniRef50_A0A037ZNE7 0.904482298363 0.5 -0.404482298363 +UniRef50_W0Z1T3 0.0542479355671 0.5 0.445752064433 +UniRef50_B9L1J9 Glucose 1 phosphate adenylyltransferase 0.199654260779 0.500000000001 0.30034573922 +UniRef50_A6UGW8 Replication protein C 1.25116021662 0.5 -0.751160216623 +UniRef50_X0VZY3 Marine sediment metagenome DNA, contig 0.375157581924 0.5 0.124842418076 +UniRef50_Q9LM59 Serine hydroxymethyltransferase 6 0.531285397801 0.5 -0.0312853978012 +UniRef50_S4VW07 0.161022561442 0.5 0.338977438558 +UniRef50_Z0L1U0 0.894229290092 0.5 -0.394229290092 +UniRef50_F9EXE3 ABC superfamily ATP binding cassette transporter, ABC protein 0.0114240936377 0.5 0.488575906362 +UniRef50_V5CIF7 0.0136073497114 0.5 0.486392650288 +UniRef50_UPI0004721200 hypothetical protein, partial 0.937775603674 0.5 -0.437775603674 +UniRef50_C0Y0T7 Outer membrane efflux protein OprC 0.0130348715407 0.5 0.48696512846 +UniRef50_R5IJ86 0.0561435647823 0.5 0.443856435218 +UniRef50_UPI0003777D9D hypothetical protein 0.982356812184 0.5 -0.482356812184 +UniRef50_B5Z6I2 Dihydroorotate dehydrogenase 0.0260321816036 0.500000000001 0.473967818396 +UniRef50_UPI00038229EA hypothetical protein 0.290491691268 0.5 0.209508308732 +UniRef50_A3NUG3 Chorismate synthase 0.228161417666 0.5 0.271838582334 +UniRef50_A7X623 Oxygen regulatory protein NreC 1.28704936245 0.500000000001 -0.787049362453 +UniRef50_F0K7S4 RNA polymerase factor sigma 54 0.0786321353516 0.5 0.421367864648 +UniRef50_UPI000360F77D MULTISPECIES 0.267145722889 0.5 0.232854277111 +UniRef50_UPI0003710793 hypothetical protein 0.136735743708 0.5 0.363264256292 +UniRef50_M4UM17 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic component 0.165325036738 0.5 0.334674963262 +UniRef50_J7LCE3 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 0.102938395791 0.5 0.397061604209 +UniRef50_I6U2S8 Bacitracin synthetase 1.0004663423 0.5 -0.500466342304 +UniRef50_Q5HRM1 Putative TrmH family tRNA rRNA methyltransferase 1.3621089956 0.5 -0.862108995602 +UniRef50_B9E7Z8 0.0120965843475 0.5 0.487903415652 +UniRef50_P57000 Glutamine tRNA ligase 0.10177719949 0.5 0.39822280051 +UniRef50_I9WK52 Putative transcriptional regulator 0.335040144511 0.5 0.164959855489 +UniRef50_UPI00029AF772 multidrug ABC transporter ATPase 0.0255582483341 0.5 0.474441751666 +UniRef50_UPI00037E28CC hypothetical protein 0.0992736968048 0.499999999999 0.400726303196 +UniRef50_A4WNG7 2.07553453919 0.499999999999 -1.57553453919 +UniRef50_D4LM41 Nicotinate phosphoribosyltransferase 0.21981329056 0.500000000001 0.28018670944 +UniRef50_UPI00036CD6B7 hypothetical protein 0.199223744278 0.5 0.300776255722 +UniRef50_V9VSG3 Membrane protein 0.042777148035 0.5 0.457222851965 +UniRef50_UPI0003C84C0F PREDICTED 0.17772870609 0.5 0.32227129391 +UniRef50_U4V017 Putative ATPase 0.290900006538 0.5 0.209099993462 +UniRef50_P29848 Cysteine synthase B 0.430164960404 0.5 0.0698350395957 +UniRef50_W1JGD7 Putative virulence factor 0.389393475517 0.5 0.110606524483 +UniRef50_A0A010CAY1 Transposase DDE domain protein 0.0721857565496 0.5 0.42781424345 +UniRef50_M4XIX4 Segregation and condensation protein B 0.325441785846 0.5 0.174558214154 +UniRef50_Q46899 CRISPR system Cascade subunit CasC 7.7532108293 0.500000000006 -7.2532108293 +UniRef50_D8JDE7 Patatin like phospholipase family protein 0.0146140692904 0.5 0.48538593071 +UniRef50_UPI0002F963E4 hypothetical protein 0.00852305205841 0.5 0.491476947942 +UniRef50_Q8ECQ4 50S ribosomal protein L3 glutamine methyltransferase 1.8396957974 0.499999999999 -1.3396957974 +UniRef50_O30992 Cell division protein FtsZ 1.19331801003 0.5 -0.693318010028 +UniRef50_Q8CSE1 ABC transporter ATP binding protein 2.26566024754 0.500000000002 -1.76566024754 +UniRef50_UPI000375F7D3 hypothetical protein 0.153878418532 0.5 0.346121581468 +UniRef50_A3V315 1.14208907613 0.5 -0.64208907613 +UniRef50_UPI0002F27B8E hypothetical protein 2.40969623917 0.499999999999 -1.90969623916 +UniRef50_A4WQP1 Transposase, IS4 family 4.49040009108 0.499999999997 -3.99040009107 +UniRef50_S4YCA7 3.40541326405 0.500000000001 -2.90541326405 +UniRef50_I0JRX2 Oxidoreductase domain protein 3.36378057094 0.500000000006 -2.86378057095 +UniRef50_A0A023RY49 Amino acid transporter 0.0207736825669 0.499999999999 0.479226317434 +UniRef50_UPI000375F92B hypothetical protein 0.107866888364 0.5 0.392133111636 +UniRef50_K9NRT8 GntR family transcriptional regulator 0.623336509276 0.5 -0.123336509276 +UniRef50_U5L6I9 Peptide ABC transporter permease 11.5030723544 0.500000000002 -11.0030723544 +UniRef50_K1CTK9 Exoribonuclease RNase R 1.23301636904 0.5 -0.733016369042 +UniRef50_P0A1U3 1.6636511579 0.499999999999 -1.1636511579 +UniRef50_P0A1U5 2.01333647957 0.5 -1.51333647957 +UniRef50_F4D676 P type DNA transfer ATPase VirB11 0.039535202658 0.5 0.460464797342 +UniRef50_G6KV35 Leucyl tRNA synthetase 1.96177854196 0.5 -1.46177854196 +UniRef50_UPI00036AAC2D hypothetical protein 0.224103603424 0.5 0.275896396576 +UniRef50_UPI000363377B preprotein translocase subunit TatA 0.861394310413 0.5 -0.361394310413 +UniRef50_B4U203 DNA polymerase III subunit delta 0.540673640046 0.5 -0.0406736400458 +UniRef50_U6LS15 0.405021716208 0.5 0.0949782837918 +UniRef50_P26281 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.0610486158599 0.5 0.43895138414 +UniRef50_G2JD06 Nitrate nitrite transporter 0.0394119928089 0.5 0.460588007191 +UniRef50_W5XIV0 GTPase Obg 0.0166232695373 0.499999999999 0.483376730463 +UniRef50_D9SXB9 RNA methyltransferase, TrmH family, group 3 0.723433004175 0.5 -0.223433004175 +UniRef50_UPI00036CFE43 30S ribosomal protein S4 0.159633491613 0.5 0.340366508387 +UniRef50_UPI0003B544A3 sugar ABC transporter permease, partial 0.750667916035 0.5 -0.250667916035 +UniRef50_UPI0003820942 hypothetical protein 0.109910389477 0.5 0.390089610523 +UniRef50_A4X3E5 Peptide methionine sulfoxide reductase MsrA 0.603940005878 0.5 -0.103940005878 +UniRef50_P0CD78 Phosphoglycerate kinase 0.51477299194 0.5 -0.0147729919401 +UniRef50_A2SKF9 Transaldolase 0.467813546412 0.5 0.0321864535878 +UniRef50_P28822 Dihydropteroate synthase 0.0117629561106 0.5 0.48823704389 +UniRef50_A3M7P6 Ribosomal protein alanine acetyltransferase 0.14115923177 0.5 0.35884076823 +UniRef50_P75793 Putative formate acetyltransferase 3 6.58621815145 0.500000000002 -6.08621815145 +UniRef50_B3ENQ2 Nucleoside diphosphate kinase 1.57985102763 0.5 -1.07985102763 +UniRef50_E6MZF0 Type III restriction enzyme, res subunit 0.00772403539052 0.5 0.49227596461 +UniRef50_F0Y8H7 0.665049550852 0.5 -0.165049550852 +UniRef50_Q4KCW6 Putrescine binding periplasmic protein 0.6624665821 0.5 -0.1624665821 +UniRef50_UPI000311B789 hypothetical protein 6.76891462945 0.5 -6.26891462945 +UniRef50_B9KTG2 MCPG protein 0.962210012392 0.5 -0.462210012392 +UniRef50_A6V3S1 Aminoglycoside response regulator 0.677042745308 0.5 -0.177042745308 +UniRef50_S4ZTI3 Transcriptional regulator, ArsR family 4.94623747005 0.5 -4.44623747005 +UniRef50_U3T6X9 0.0237616709373 0.5 0.476238329063 +UniRef50_Q2FIS2 Lipoteichoic acid synthase 1.75115591522 0.500000000002 -1.25115591522 +UniRef50_UPI000429916D auxin binding protein 1.32539271108 0.5 -0.82539271108 +UniRef50_I7E3Y1 Dimethylglycine dehydrogenase DmgdH 2.38274784618 0.5 -1.88274784618 +UniRef50_Q5HG72 Nuclease SbcCD subunit C 2.4092576776 0.5 -1.9092576776 +UniRef50_D3QDA5 Transcriptional regulator in cluster with Zn dependent hydrolase 4.23050516765 0.499999999996 -3.73050516764 +UniRef50_J3C3Q8 ABC type transport system, involved in lipoprotein release, permease component 0.148827888078 0.5 0.351172111922 +UniRef50_Q2SFK9 Fatty acid desaturase 0.0329233988089 0.5 0.467076601191 +UniRef50_T1XM99 IS1272 transposase, putative 6.75373994714 0.500000000001 -6.25373994715 +UniRef50_Q8DWA7 2.13440226386 0.5 -1.63440226386 +UniRef50_O86428 Branched chain amino acid aminotransferase 0.0627464123001 0.5 0.4372535877 +UniRef50_T0JJ14 0.225291996685 0.5 0.274708003315 +UniRef50_UPI0003C7D7D4 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase, partial 6.69306559951 0.500000000003 -6.19306559951 +UniRef50_J9NXA3 1.06904987503 0.5 -0.569049875034 +UniRef50_Q28KF2 Beta lactamase like protein 0.582993668073 0.5 -0.0829936680735 +UniRef50_U3TA62 Protein MurJ homolog 0.00426104780671 0.5 0.495738952193 +UniRef50_UPI0003B2ED70 hypothetical protein 1.43457432468 0.5 -0.934574324685 +UniRef50_UPI00037CE74D hypothetical protein 0.168743500108 0.5 0.331256499892 +UniRef50_A1VKF6 Non canonical purine NTP pyrophosphatase 2.72955892051 0.5 -2.22955892051 +UniRef50_M9S4Z2 Two component response regulator 2.05142264844 0.500000000001 -1.55142264844 +UniRef50_X0TYQ9 Marine sediment metagenome DNA, contig 0.0667763346952 0.5 0.433223665305 +UniRef50_Q1D759 50S ribosomal protein L18 0.499245234607 0.5 0.000754765393163 +UniRef50_Q8NW76 1.88116498434 0.5 -1.38116498434 +UniRef50_Q2YKR5 sn glycerol 3 phosphate binding periplasmic protein UgpB 1.10180962042 0.5 -0.601809620423 +UniRef50_I9IAK6 0.157017646307 0.5 0.342982353693 +UniRef50_D7GF04 Methyltransferase 0.0101835059459 0.5 0.489816494054 +UniRef50_E2BF63 0.0757616592409 0.5 0.424238340759 +UniRef50_UPI000288A745 acetyltransferase, putative 1.04370780504 0.5 -0.543707805043 +UniRef50_G4BY47 0.233311841149 0.5 0.266688158851 +UniRef50_Q2FVV8 Transcriptional regulator, putative 4.75254845516 0.500000000002 -4.25254845516 +UniRef50_A6LU14 0.0245320850876 0.5 0.475467914913 +UniRef50_UPI00034519AC hypothetical protein 0.0264694685993 0.5 0.473530531401 +UniRef50_Q0BYA7 DNA directed RNA polymerase subunit beta 1.24402927684 0.5 -0.744029276839 +UniRef50_A4WZ35 0.110148006838 0.5 0.389851993162 +UniRef50_L7WUA4 6.48551868331 0.5 -5.98551868331 +UniRef50_A3ZLI5 ISxac3 transposase 0.305325274947 0.5 0.194674725053 +UniRef50_A5EBB8 2.22764980788 0.500000000002 -1.72764980789 +UniRef50_UPI0003B3E24D malto oligosyltrehalose synthase 0.800440656723 0.5 -0.300440656723 +UniRef50_X5WY92 1.08667408754 0.5 -0.586674087539 +UniRef50_Q6GH07 Protein msa 1.72807432536 0.499999999998 -1.22807432536 +UniRef50_B9JUA7 2.3622047574 0.5 -1.8622047574 +UniRef50_Q09DS6 0.486621145555 0.5 0.0133788544453 +UniRef50_A6TFR2 Glycerol kinase 0.0843958943504 0.499999999999 0.41560410565 +UniRef50_I0EP78 Flagellar hook protein FlgE 0.00588680094236 0.5 0.494113199057 +UniRef50_UPI000477B830 hypothetical protein 0.0278002588665 0.5 0.472199741134 +UniRef50_B7V0M2 Carbonic anhydrase 0.916247742913 0.5 -0.416247742913 +UniRef50_M4WR94 4.12515720496 0.499999999999 -3.62515720496 +UniRef50_P0CL53 S glutathione dehydrogenase 1.84985708498 0.5 -1.34985708498 +UniRef50_M4Z4L3 2.6784879638 0.499999999999 -2.1784879638 +UniRef50_Q87TS4 Ribosomal RNA small subunit methyltransferase G 0.724997745388 0.5 -0.224997745388 +UniRef50_A6QFI0 UPF0344 protein NWMN_0840 15.4238085091 0.500000000007 -14.9238085091 +UniRef50_A8ZR93 Lytic transglycosylase catalytic 0.168189020972 0.5 0.331810979028 +UniRef50_A3PHM8 DHC, diheme cytochrome c 9.53453073219 0.5 -9.03453073219 +UniRef50_UPI0003B2EC71 phosphoadenosine phosphosulfate reductase 0.269065146674 0.5 0.230934853326 +UniRef50_P13669 Mannosyl D glycerate transport metabolism system repressor MngR 2.37955646452 0.5 -1.87955646452 +UniRef50_UPI00030F326B sulfate transporter 1.47224303206 0.499999999999 -0.972243032056 +UniRef50_N2UC59 Sodium symporter family protein 1.17432524087 0.5 -0.674325240875 +UniRef50_P77704 1.17858399544 0.5 -0.678583995436 +UniRef50_UPI0003C17542 PREDICTED 0.288352912853 0.5 0.211647087147 +UniRef50_Q9CGB9 1.95188230263 0.5 -1.45188230263 +UniRef50_Q4JXF0 Phosphoribosylformylglycinamidine synthase 2 1.43989518611 0.5 -0.939895186106 +UniRef50_S5CWK9 AraC type DNA binding domain containing protein 0.089931254461 0.5 0.410068745539 +UniRef50_D3QCA4 Dihydrofolate synthase Folylpolyglutamate synthase 2.44070684253 0.500000000001 -1.94070684253 +UniRef50_T2DYR1 Tryptophan tyrosine permease family protein 1.0091712763 0.5 -0.509171276302 +UniRef50_UPI00039563BC PREDICTED 0.0798900770293 0.5 0.42010992297 +UniRef50_Q4FVL5 Translation initiation factor IF 2 0.00240546290534 0.5 0.497594537095 +UniRef50_UPI0003C10D8C 0.207231818626 0.5 0.292768181374 +UniRef50_UPI00016A626E Rh like protein ammonium transporter, partial 0.439241725762 0.5 0.0607582742381 +UniRef50_A6LYM0 Antibiotic transport associated permease SpaG MutG 0.103297649983 0.5 0.396702350016 +UniRef50_A3DGF9 Urease subunit beta 0.283806725831 0.5 0.216193274169 +UniRef50_UPI0003B4EA64 isoleucyl tRNA synthase 0.329699983952 0.5 0.170300016048 +UniRef50_F8J5A0 3.28397320267 0.499999999999 -2.78397320267 +UniRef50_T1CKH0 Coproporphyrinogen dehydrogenase 0.393155583762 0.5 0.106844416238 +UniRef50_UPI0003B37585 ABC transporter 0.290713070853 0.5 0.209286929147 +UniRef50_UPI000478F27B ATP dependent DNA helicase Rep 0.374425350107 0.5 0.125574649893 +UniRef50_UPI00047A6B84 PadR family transcriptional regulator 0.469139010607 0.5 0.0308609893933 +UniRef50_Q5N127 Transaldolase 0.0108890498725 0.5 0.489110950128 +UniRef50_G8PPN5 UbiD family decarboxylase 6.09706106643 0.499999999998 -5.59706106643 +UniRef50_L9MQV1 FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate pyruvate transaminase multi domain protein 0.0278449727617 0.5 0.472155027238 +UniRef50_P0A0A1 Pyruvate dehydrogenase E1 component subunit beta 1.62403705049 0.5 -1.12403705049 +UniRef50_M7E6J0 Endonuclease 0.569085587753 0.5 -0.0690855877531 +UniRef50_UPI00046FABF2 chromosome partitioning protein ParB 0.0218272075712 0.5 0.478172792429 +UniRef50_UPI000265461A PREDICTED 0.431750370145 0.5 0.0682496298551 +UniRef50_UPI00034878D9 hypothetical protein 0.20593598635 0.5 0.29406401365 +UniRef50_D2ZS12 2.99134132287 0.500000000002 -2.49134132287 +UniRef50_I6U1N8 Transaminase 1.35083143562 0.5 -0.850831435618 +UniRef50_UPI000368E802 hypothetical protein 0.113916947162 0.5 0.386083052838 +UniRef50_O27494 Phosphoribosylamine glycine ligase 1.35820188904 0.5 -0.858201889035 +UniRef50_Q3IV08 1.52868001472 0.5 -1.02868001472 +UniRef50_A3PH60 1.32639179857 0.500000000001 -0.826391798573 +UniRef50_Q3IV03 2.73536790471 0.500000000003 -2.23536790471 +UniRef50_Q3IV02 0.164213803047 0.5 0.335786196953 +UniRef50_A2BMY4 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.02606551523 0.5 -0.526065515232 +UniRef50_F8IMM6 Glycosyl transferase 0.518832343209 0.5 -0.0188323432089 +UniRef50_N1M6P3 0.094463226765 0.5 0.405536773235 +UniRef50_Q46829 6 phospho beta glucosidase BglA 0.566170056734 0.5 -0.0661700567338 +UniRef50_UPI0003F4B23B oligo 1,6 glucosidase 1.43280945621 0.5 -0.932809456212 +UniRef50_UPI0004675CB0 hypothetical protein 0.0604851451575 0.5 0.439514854843 +UniRef50_UPI000375AE50 hypothetical protein 3.35007334072 0.500000000003 -2.85007334072 +UniRef50_A6LW27 Integral membrane sensor signal transduction histidine kinase 0.267860457054 0.5 0.232139542946 +UniRef50_P77689 FeS cluster assembly protein SufD 6.75317078563 0.5 -6.25317078563 +UniRef50_A7HC61 LexA repressor 1.04614006172 0.5 -0.546140061725 +UniRef50_UPI0004675E29 transcriptional regulator 0.301180827161 0.5 0.198819172839 +UniRef50_P22045 Prostaglandin F synthase 0.00661110869229 0.499999999999 0.493388891308 +UniRef50_W1N7X0 0.642774773686 0.5 -0.142774773686 +UniRef50_UPI0002631758 branched chain alpha keto acid dehydrogenase subunit E2, partial 0.0348536999629 0.5 0.465146300037 +UniRef50_UPI0002194DF2 fructose bisphosphate aldolase 0.214189215806 0.5 0.285810784194 +UniRef50_UPI0003A0B379 MULTISPECIES 0.452647813204 0.5 0.0473521867959 +UniRef50_E2XTA7 0.286960324243 0.5 0.213039675757 +UniRef50_UPI0003B324DC flagellar protein FlgJ 0.526630449238 0.5 -0.026630449238 +UniRef50_P0AEE1 Protein DcrB 1.48588305925 0.5 -0.985883059251 +UniRef50_U7G0Z6 0.609258242593 0.5 -0.109258242593 +UniRef50_Q6D2R7 NADH quinone oxidoreductase subunit A 4.41835178368 0.5 -3.91835178368 +UniRef50_A6LW63 PAS PAC sensor signal transduction histidine kinase 0.77895388123 0.5 -0.27895388123 +UniRef50_UPI0003B301E5 molybdopterin biosynthesis protein MoeB 0.648604601539 0.5 -0.148604601539 +UniRef50_UPI00034D4353 hypothetical protein 0.510467498704 0.5 -0.010467498704 +UniRef50_A8HYF7 Lon protease 2.29569381918 0.5 -1.79569381918 +UniRef50_W5X361 Dienelactone hydrolase 0.612917713426 0.5 -0.112917713426 +UniRef50_M2PIC6 0.0847245927074 0.5 0.415275407293 +UniRef50_UPI0003B51C8D 16S rRNA methyltransferase 0.307203486358 0.5 0.192796513642 +UniRef50_A0A031MCT4 0.180518854248 0.5 0.319481145752 +UniRef50_Q8YUR4 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.479508803069 0.5 0.0204911969315 +UniRef50_C5AMM3 1.75253604815 0.5 -1.25253604815 +UniRef50_UPI0003776EC3 hypothetical protein 3.5056321589 0.500000000003 -3.0056321589 +UniRef50_P0AAV5 0.690452309999 0.5 -0.190452309999 +UniRef50_UPI000395E276 LysR family transcriptional regulator 0.624080533175 0.5 -0.124080533175 +UniRef50_F2IZR6 Multiple antibiotic resistance related protein 3.78261576449 0.499999999996 -3.28261576449 +UniRef50_A5UNV0 0.796099677088 0.5 -0.296099677088 +UniRef50_A5UNV7 1.69746701136 0.5 -1.19746701136 +UniRef50_A5UNV5 10.0429263541 0.499999999999 -9.54292635413 +UniRef50_F0RJD3 0.00579018420162 0.5 0.494209815798 +UniRef50_A5UNV8 1.58276664249 0.5 -1.08276664249 +UniRef50_UPI00037EDF68 hypothetical protein, partial 0.541121265055 0.5 -0.0411212650552 +UniRef50_UPI0002D3C59D hypothetical protein 1.16122774241 0.5 -0.66122774241 +UniRef50_UPI0003C02B7D 0.658800414841 0.5 -0.158800414841 +UniRef50_I0C596 1.85191205536 0.499999999999 -1.35191205535 +UniRef50_P37758 Nitrate nitrite transporter NarU 1.92467615962 0.5 -1.42467615962 +UniRef50_R6IJD9 0.154456607196 0.5 0.345543392805 +UniRef50_M5ABJ7 Glucuronide carrier protein 0.0178721757592 0.5 0.482127824241 +UniRef50_V4QZ84 Acyl homoserine lactone synthase 0.174625363525 0.5 0.325374636476 +UniRef50_P21911 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.222784438455 0.5 0.277215561545 +UniRef50_UPI0003B43349 cell division protein FtsZ 0.281851581328 0.5 0.218148418672 +UniRef50_F4CS06 Plasmid pRiA4b ORF 3 family protein 4.36026461819 0.499999999997 -3.86026461819 +UniRef50_UPI0003B37305 damage inducible protein 2.0583352766 0.500000000002 -1.5583352766 +UniRef50_G5JU10 Beta lactamase 0.720050309997 0.5 -0.220050309997 +UniRef50_F8IME6 6.02939341882 0.499999999999 -5.52939341882 +UniRef50_M9VFD9 Osmosensitive K+ channel histidine kinase KdpD 0.0247886059361 0.5 0.475211394064 +UniRef50_C5XM13 0.934834769065 0.5 -0.434834769065 +UniRef50_Q9RR86 BrkB protein, putative 0.00272770049004 0.5 0.49727229951 +UniRef50_A3VLJ6 9.36045812376 0.500000000003 -8.86045812377 +UniRef50_F3BY18 0.0715147358742 0.5 0.428485264126 +UniRef50_A4X0R2 3.89428881559 0.500000000005 -3.39428881559 +UniRef50_E2RL98 0.166766437217 0.5 0.333233562783 +UniRef50_D1AC29 0.00422427495688 0.5 0.495775725043 +UniRef50_UPI000379F62F hypothetical protein 0.242606225974 0.5 0.257393774026 +UniRef50_Q1BYF5 Undecaprenyl diphosphatase 1 0.0626638836645 0.5 0.437336116336 +UniRef50_UPI000377866C hypothetical protein 0.0906622082307 0.5 0.409337791769 +UniRef50_P41775 Cytochrome c oxidase subunit 3 2.65925787458 0.5 -2.15925787458 +UniRef50_P39410 Putative kinase YjjJ 1.68986361334 0.500000000001 -1.18986361334 +UniRef50_C5N358 Hydrolase, alpha beta domain protein 0.931109583652 0.5 -0.431109583652 +UniRef50_UPI00047026FA hypothetical protein 0.159149168819 0.5 0.340850831181 +UniRef50_Q966L6 Protein LET 504 3.13198209282 0.500000000003 -2.63198209282 +UniRef50_E8U6I4 Agmatine deiminase 0.00642645413279 0.5 0.493573545867 +UniRef50_P0AAR2 Hha toxicity modulator TomB 0.550759965778 0.5 -0.0507599657781 +UniRef50_Q2NEH1 Glutamyl tRNA amidotransferase subunit D 2.11039677995 0.499999999999 -1.61039677994 +UniRef50_G2TGN8 Two component transcriptional regulator 0.11257373776 0.5 0.38742626224 +UniRef50_E3F3T4 0.432650994469 0.5 0.0673490055307 +UniRef50_X2N7K6 Formate acetyltransferase 1.7695159213 0.5 -1.2695159213 +UniRef50_UPI0003B58C95 multidrug ABC transporter 0.633439306296 0.5 -0.133439306296 +UniRef50_K1Z738 0.0374526194061 0.5 0.462547380594 +UniRef50_Q5KUG7 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 1.11573541118 0.5 -0.615735411176 +UniRef50_Q46BI1 Acetate kinase 0.0226678631799 0.5 0.47733213682 +UniRef50_P61607 LexA repressor 1.04117479734 0.5 -0.541174797339 +UniRef50_D3QDU9 Flavohemoprotein 1.25784225625 0.499999999999 -0.75784225625 +UniRef50_D4MG24 Transcriptional regulator, GntR family 1.02253486093 0.5 -0.522534860931 +UniRef50_Q02R92 DNA mismatch repair protein MutS 1.9855231792 0.5 -1.4855231792 +UniRef50_UPI0003F9F77C D ribose transporter ATP binding protein 1.63163458881 0.499999999999 -1.13163458881 +UniRef50_Q8KFI9 1 deoxy D xylulose 5 phosphate synthase 0.0128250740095 0.5 0.48717492599 +UniRef50_A5WDL1 Peptidoglycan glycosyltransferase 0.0139702009702 0.5 0.48602979903 +UniRef50_P76052 p aminobenzoyl glutamate hydrolase subunit B 1.02394956067 0.5 -0.523949560668 +UniRef50_X5K0B8 Hydrolase, haloacid dehalogenase like family 0.118451004755 0.5 0.381548995245 +UniRef50_V9VVE0 Gene transfer agent protein 2.88593727164 0.5 -2.38593727164 +UniRef50_Q9CH00 Ribonuclease R 1 0.00985348044845 0.5 0.490146519551 +UniRef50_Q1AVY9 Carbamoyl phosphate synthase large chain 0.562329062098 0.5 -0.0623290620979 +UniRef50_O33812 1.23310308448 0.5 -0.733103084481 +UniRef50_Q2L0A6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.373649061747 0.5 0.126350938253 +UniRef50_A0LK05 2 dehydro 3 deoxyphosphooctonate aldolase 0.0364251668555 0.5 0.463574833145 +UniRef50_UPI0003811395 hypothetical protein 0.209923254115 0.5 0.290076745885 +UniRef50_C5BMI1 Alkaline phosphatase like protein 0.501819805117 0.5 -0.00181980511688 +UniRef50_UPI0004713F18 2 hydroxy acid oxidase 0.092997609947 0.500000000001 0.407002390052 +UniRef50_UPI000174498F hypothetical protein 0.00525655325003 0.5 0.49474344675 +UniRef50_P0AA48 Low affinity putrescine importer PlaP 0.193598334923 0.5 0.306401665077 +UniRef50_UPI0004575852 PREDICTED 2.18159411633 0.500000000001 -1.68159411633 +UniRef50_UPI00036CD191 hypothetical protein 0.525981366145 0.5 -0.0259813661453 +UniRef50_S4NIZ2 0.548565233652 0.5 -0.0485652336515 +UniRef50_UPI00036F2A19 hypothetical protein 1.59540488136 0.500000000001 -1.09540488136 +UniRef50_C5WG14 Two component system histidine kinase 1.12918464627 0.5 -0.629184646271 +UniRef50_H1FIN1 UPF0047 protein yjbQ 0.379556988166 0.5 0.120443011834 +UniRef50_T2END3 1.24985852025 0.5 -0.749858520245 +UniRef50_Q6G082 Ribonuclease 3 0.616767866517 0.5 -0.116767866517 +UniRef50_R4ZTI0 2.21904489157 0.5 -1.71904489157 +UniRef50_UPI00037740DE hypothetical protein 0.609013922015 0.5 -0.109013922015 +UniRef50_A1U1Z4 Glyceraldehyde 3 phosphate dehydrogenase, type I 0.0300565094131 0.5 0.469943490587 +UniRef50_A9CJZ7 Ring hydroxylating dioxygenase, alpha subunit 1.03959902276 0.5 -0.539599022755 +UniRef50_B9JQX1 Methionyl tRNA formyltransferase 37.4367256508 0.500000000037 -36.9367256508 +UniRef50_UPI000471E6E8 phosphoenolpyruvate protein phosphotransferase, partial 0.0106659064573 0.500000000001 0.489334093542 +UniRef50_Q8YBF1 Respiratory nitrate reductase 1 alpha chain 1.5917609794 0.5 -1.0917609794 +UniRef50_T1BJ38 Cysteine desulfurase activator complex subunit SufB 0.227007272208 0.5 0.272992727792 +UniRef50_A5CSL4 tRNA dimethylallyltransferase 0.144012183338 0.5 0.355987816663 +UniRef50_UPI0003F913CD hypothetical protein 1.99596074347 0.5 -1.49596074347 +UniRef50_D4H9Q4 Hydrolase, P loop family 0.035950497507 0.5 0.464049502493 +UniRef50_F4ALX4 1.12934477097 0.5 -0.629344770975 +UniRef50_UPI00036E3CC6 hypothetical protein 0.578678828855 0.5 -0.0786788288549 +UniRef50_UPI00035E6B92 transcriptional regulator 0.649540330325 0.5 -0.149540330325 +UniRef50_D3SBH7 TRAP transporter, 4TM 12TM fusion protein 2.3589660839 0.500000000002 -1.8589660839 +UniRef50_G7M624 Aryl alcohol dehydrogenase ) 0.62589165699 0.5 -0.12589165699 +UniRef50_R0X4D2 0.541187038916 0.5 -0.0411870389156 +UniRef50_P36881 Putative phosphotransferase enzyme IIA component YadI 0.319560307809 0.5 0.180439692191 +UniRef50_UPI00036FCC75 MULTISPECIES 0.0270810606564 0.5 0.472918939343 +UniRef50_Q3J385 3.25159286547 0.500000000002 -2.75159286547 +UniRef50_Q7VJ82 Bifunctional DNA directed RNA polymerase subunit beta beta 0.000696084166794 0.5 0.499303915833 +UniRef50_D9UIB7 Predicted protein 0.0722763150441 0.5 0.427723684956 +UniRef50_Q9KPG5 UDP N acetylmuramoylalanine D glutamate ligase 3.68319504005 0.500000000002 -3.18319504005 +UniRef50_E6MXZ0 TonB dependent receptor family protein 0.0316334326523 0.5 0.468366567348 +UniRef50_UPI00047DE0AF hypothetical protein 0.0144512181756 0.5 0.485548781824 +UniRef50_UPI00030CFC56 hypothetical protein 0.328515966139 0.5 0.171484033861 +UniRef50_I7GUS8 0.00954348893762 0.5 0.490456511063 +UniRef50_G7U596 Metal binding protein 0.0217885731429 0.5 0.478211426857 +UniRef50_UPI0003B7B946 polyvinylalcohol dehydrogenase, partial 0.0113328087668 0.500000000001 0.488667191232 +UniRef50_A6LQD9 ABC type sugar transport system periplasmic component like protein 0.0243966668546 0.500000000001 0.475603333145 +UniRef50_UPI0003B45615 thioesterase 0.209724849701 0.5 0.290275150299 +UniRef50_Q5LSN8 Polyphosphate kinase 2, putative 1.6896272738 0.5 -1.1896272738 +UniRef50_Q71X09 Methionine import ATP binding protein MetN 2 1.37882273298 0.500000000001 -0.878822732977 +UniRef50_Q6F9B4 0.0176667373823 0.5 0.482333262617 +UniRef50_Q8CT75 0.966946474935 0.5 -0.466946474935 +UniRef50_P74038 Ribosomal RNA small subunit methyltransferase I 0.432186184584 0.5 0.0678138154161 +UniRef50_UPI000466458A DNA gyrase subunit B 0.418924937048 0.5 0.0810750629525 +UniRef50_O26310 DNA polymerase PolB subunit 2 0.911310711158 0.5 -0.411310711158 +UniRef50_UPI0003C19B5B 0.346645063463 0.5 0.153354936537 +UniRef50_UPI00035B52D5 hypothetical protein 0.374790367341 0.5 0.125209632659 +UniRef50_A0A024EA09 2.14928573131 0.499999999999 -1.64928573131 +UniRef50_G7LZT7 0.351391564659 0.5 0.148608435341 +UniRef50_B1L5U5 Inosine 5 monophosphate dehydrogenase 2.70836934839 0.499999999998 -2.20836934839 +UniRef50_L1K6E3 4.79241676595 0.500000000008 -4.29241676595 +UniRef50_UPI000455F431 GroES like protein 0.0599803291312 0.5 0.440019670869 +UniRef50_UPI000476EB30 hypothetical protein 0.503917036759 0.5 -0.00391703675918 +UniRef50_K0HYU8 M13 family metallopeptidase 0.00588496356856 0.5 0.494115036431 +UniRef50_U7NU39 0.404990648832 0.5 0.095009351168 +UniRef50_A8EQW9 Glutamate tRNA ligase 1 0.000255257018071 0.5 0.499744742982 +UniRef50_Q899J9 Methyl accepting chemotaxis protein 0.144088155163 0.5 0.355911844836 +UniRef50_M5RGX7 2.10051220565 0.5 -1.60051220565 +UniRef50_UPI0003B60AC8 glycine betaine ABC transporter permease 1.59230406489 0.5 -1.09230406489 +UniRef50_F0XWS6 0.0298299822458 0.5 0.470170017754 +UniRef50_UPI0003EF099D cytochrome d terminal oxidase subunit 1 0.367315365665 0.5 0.132684634335 +UniRef50_B4U5I2 Cationic amino acid transporter APC superfamily 0.854302599143 0.5 -0.354302599143 +UniRef50_D7UQD7 Nitrogenase reductase 5.56520347162 0.500000000002 -5.06520347162 +UniRef50_A6LZK3 Histidine kinase 0.0325126302981 0.5 0.467487369702 +UniRef50_UPI0003F7F30F alpha amylase 0.833155750695 0.5 -0.333155750695 +UniRef50_Q1IYB4 ATPase AAA 2 0.00426829372662 0.5 0.495731706273 +UniRef50_UPI0003646AB7 hypothetical protein 0.139129434001 0.5 0.360870565999 +UniRef50_A7HQ39 Two component transcriptional regulator, winged helix family 3.62308464011 0.5 -3.12308464011 +UniRef50_Q9RZT2 Chromosome partitioning ATPase, putative, ParA family 0.00282365443757 0.500000000001 0.497176345562 +UniRef50_UPI0003724B15 hypothetical protein 1.49455162002 0.5 -0.994551620018 +UniRef50_A8LMF7 Glutamate racemase 1.09239499158 0.5 -0.592394991577 +UniRef50_UPI00045E66ED branched chain amino acid ABC transporter substrate binding protein 1.86319810493 0.499999999999 -1.36319810493 +UniRef50_P39398 L galactonate transporter 4.09676948357 0.499999999999 -3.59676948357 +UniRef50_Q3JG68 34.7373254276 0.499999999988 -34.2373254276 +UniRef50_P49988 RNA polymerase sigma 54 factor 0.355304654548 0.5 0.144695345452 +UniRef50_F2ZMW7 0.359497657563 0.5 0.140502342437 +UniRef50_I7FLW8 General substrate transporter 0.0207771739435 0.5 0.479222826057 +UniRef50_UPI00035EEFC1 hypothetical protein 0.294684062849 0.5 0.205315937151 +UniRef50_M9VER6 Tat pathway signal sequence 0.0144475064617 0.5 0.485552493538 +UniRef50_T0T7Z3 1.01657763109 0.5 -0.516577631094 +UniRef50_UPI00036133DB hypothetical protein 0.153577774294 0.5 0.346422225706 +UniRef50_Q5F507 0.106599952757 0.5 0.393400047243 +UniRef50_UPI0004118E6E hypothetical protein 0.0822793380225 0.5 0.417720661977 +UniRef50_A7IES2 Ribonuclease HII 0.603934164211 0.5 -0.103934164211 +UniRef50_A3PSB1 Flagellar FlbT family protein 16.1420884241 0.500000000022 -15.6420884241 +UniRef50_Q6D6Y6 Putrescine aminotransferase 1.61500426527 0.5 -1.11500426527 +UniRef50_A3W182 Membrane protein, putative 3.66852538892 0.499999999998 -3.16852538892 +UniRef50_C4I8A2 Hydrolase, isochorismatase family 0.0267284485643 0.5 0.473271551436 +UniRef50_F8LGD6 2.06111211322 0.5 -1.56111211322 +UniRef50_P0AG29 0.0710229286119 0.5 0.428977071388 +UniRef50_A3PNN1 0.760078966317 0.5 -0.260078966317 +UniRef50_UPI000374CA9B hypothetical protein 0.0086110630914 0.5 0.491388936909 +UniRef50_Q28JJ3 Flagellar protein FlaF putative 0.478647550761 0.5 0.0213524492392 +UniRef50_A3M4L6 0.00604440905826 0.5 0.493955590942 +UniRef50_Q3IUZ0 3.21712922216 0.500000000001 -2.71712922216 +UniRef50_E6SBU2 0.0837940608345 0.5 0.416205939165 +UniRef50_R7I998 0.202559025906 0.5 0.297440974094 +UniRef50_UPI000350D37B PREDICTED 0.0415605335475 0.499999999999 0.458439466453 +UniRef50_L0GGI8 Lytic murein transglycosylase B 2.18892258039 0.5 -1.68892258039 +UniRef50_B9DJG9 3 dehydroquinate dehydratase 0.87204339744 0.5 -0.37204339744 +UniRef50_X0RZM7 Marine sediment metagenome DNA, contig 0.0166901744136 0.5 0.483309825586 +UniRef50_X5JHV8 Protein serine threonine phosphatase 0.051695997691 0.5 0.448304002309 +UniRef50_A7NB32 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.300253902401 0.5 0.199746097599 +UniRef50_UPI0003068E5B hypothetical protein 0.234614588072 0.5 0.265385411928 +UniRef50_R0FLE9 0.781578136578 0.5 -0.281578136578 +UniRef50_UPI0003767355 hypothetical protein, partial 0.424924161519 0.5 0.0750758384815 +UniRef50_M9RMU0 0.761783013702 0.5 -0.261783013702 +UniRef50_A3DHY6 Ribosomal RNA small subunit methyltransferase G 1.2614079196 0.5 -0.761407919601 +UniRef50_UPI00026579B9 PREDICTED 0.173125965124 0.5 0.326874034876 +UniRef50_E7KDY4 Muc1p 0.102426698788 0.5 0.397573301212 +UniRef50_A9ALI4 ABC transporter related 0.539133763455 0.5 -0.0391337634552 +UniRef50_Q0T0I4 Ribosomal RNA large subunit methyltransferase G 2.08017689237 0.500000000001 -1.58017689237 +UniRef50_Q5ZWB8 UPF0234 protein lpg1167 0.173008237153 0.5 0.326991762847 +UniRef50_Q9KGL2 Ribosomal RNA small subunit methyltransferase I 1.38234795263 0.5 -0.882347952628 +UniRef50_Q5LWK7 ABC transporter, periplasmic substrate binding protein 2.42293362993 0.5 -1.92293362993 +UniRef50_Q3JQP4 0.0754704672986 0.5 0.424529532702 +UniRef50_Q62IJ6 Potassium transporting ATPase A chain 0.00102543618348 0.5 0.498974563817 +UniRef50_X1YF14 0.619344858267 0.5 -0.119344858267 +UniRef50_L2FGS4 Cvnh domain containing protein 0.2806269664 0.5 0.2193730336 +UniRef50_S9TEG5 General secretory system II protein E domain containing protein 0.0544830441841 0.5 0.445516955815 +UniRef50_O24982 Apolipoprotein N acyltransferase 0.0154148808408 0.5 0.48458511916 +UniRef50_D0IRT5 Arginine permease 0.0231547447942 0.5 0.476845255206 +UniRef50_P21179 Catalase HPII 2.12657694287 0.499999999999 -1.62657694287 +UniRef50_U5MNZ4 Beta glucanase BglA 0.0798626323304 0.499999999999 0.42013736767 +UniRef50_UPI00037A554B hypothetical protein 0.15009927654 0.5 0.349900723461 +UniRef50_UPI0003812998 hypothetical protein 0.712112577349 0.5 -0.212112577349 +UniRef50_G3XD19 O antigen translocase 1.03547171652 0.5 -0.535471716517 +UniRef50_Q899R2 Single stranded DNA binding protein 2.49961638541 0.500000000001 -1.99961638541 +UniRef50_A6LVD4 Sigma54 specific transcriptional regulator, Fis family 0.075464769512 0.5 0.424535230488 +UniRef50_UPI0004670897 shikimate kinase 0.759613564913 0.5 -0.259613564913 +UniRef50_D7FNC8 Enoyl ACP reductase enoyl ACP reductase 0.123780677656 0.5 0.376219322344 +UniRef50_A5UJH5 Predicted oxidoreductase, aldo keto reductase family 1.52025259241 0.5 -1.02025259241 +UniRef50_A7ZV86 0.583824358768 0.5 -0.0838243587679 +UniRef50_V9B8V8 4.14264914557 0.5 -3.64264914557 +UniRef50_B2SBZ3 Dihydrodipicolinate synthetase 0.00968534138606 0.5 0.490314658614 +UniRef50_UPI000381E70F hypothetical protein 0.0470943179306 0.5 0.452905682069 +UniRef50_UPI00047BCB0B hypothetical protein 0.198324091981 0.5 0.301675908019 +UniRef50_J1HZ40 Cadherin like beta sandwich domain protein 0.000139101471695 0.5 0.499860898528 +UniRef50_UPI0003B309D3 hypothetical protein 0.147486791475 0.5 0.352513208525 +UniRef50_L0F2G6 ABC type dipeptide oligopeptide nickel transport system, permease component 0.0545005595258 0.5 0.445499440474 +UniRef50_A4ISF0 Pyridine nucleotide disulphide oxidoreductase 2.19312150375 0.499999999999 -1.69312150375 +UniRef50_U2KRP8 0.402163259198 0.5 0.0978367408016 +UniRef50_Q2NHY4 Predicted ATPase 9.57272114248 0.499999999996 -9.07272114248 +UniRef50_Q6D8C5 tRNA lysidine synthase 2.24296415797 0.5 -1.74296415797 +UniRef50_W1DNL9 DNA directed RNA polymerase beta subunit 2.30553333709 0.5 -1.80553333709 +UniRef50_K7RSJ8 Exonuclease SbcCD, D subunit 0.0131305547985 0.5 0.486869445201 +UniRef50_Q03CD2 Purine nucleoside phosphorylase DeoD type 0.091115676952 0.5 0.408884323048 +UniRef50_C5MYT2 1.14564542401 0.5 -0.645645424009 +UniRef50_UPI00046D19BF hypothetical protein 0.209470128303 0.5 0.290529871697 +UniRef50_U5N005 Signaling protein 0.0869838162731 0.5 0.413016183727 +UniRef50_UPI0003B67EAC phosphate ABC transporter ATP binding protein 0.507004538196 0.5 -0.00700453819627 +UniRef50_W5V0N3 Hemagglutinin 0.334117227524 0.5 0.165882772476 +UniRef50_UPI000456105B hypothetical protein PFL1_03954 0.22070062151 0.5 0.27929937849 +UniRef50_UPI0003B77756 deoxyribonucleotide triphosphate pyrophosphatase 0.289537149664 0.5 0.210462850336 +UniRef50_V5SVZ8 0.535600068095 0.5 -0.0356000680954 +UniRef50_D9PYS9 Non canonical purine NTP pyrophosphatase 7.27204036704 0.499999999999 -6.77204036704 +UniRef50_UPI0001745D89 molecular chaperone DnaK 0.54619048924 0.5 -0.0461904892397 +UniRef50_UPI000475F618 branched chain amino acid ABC transporter substrate binding protein 1.04615976731 0.5 -0.546159767306 +UniRef50_Q8ZIQ1 Protein smp 1.42801250658 0.5 -0.928012506579 +UniRef50_A5UNL4 Adhesin like protein 2.92320729612 0.500000000001 -2.42320729612 +UniRef50_UPI00029A29A8 oligo 1,6 glucosidase, partial 1.0084386006 0.5 -0.508438600598 +UniRef50_W9EH11 28.3374166548 0.499999999957 -27.8374166548 +UniRef50_UPI0003B4600B ribonuclease, partial 0.858766162329 0.5 -0.358766162329 +UniRef50_G5EL93 Cassette chromosome recombinase A 2.1409701728 0.5 -1.6409701728 +UniRef50_P00803 Signal peptidase I 5.15143974524 0.499999999997 -4.65143974523 +UniRef50_B0T4C1 Probable chemoreceptor glutamine deamidase CheD 3.26974021598 0.499999999998 -2.76974021597 +UniRef50_B0KFB1 Rhomboid family protein 0.36411438917 0.5 0.13588561083 +UniRef50_Q2G4D3 UPF0260 protein Saro_2854 0.00547929498743 0.5 0.494520705013 +UniRef50_Q3J6E0 2.0647594108 0.499999999999 -1.5647594108 +UniRef50_Q9BWD1 Acetyl CoA acetyltransferase, cytosolic 1.98418161773 0.5 -1.48418161773 +UniRef50_O07347 Signal recognition particle protein 0.00451806615279 0.5 0.495481933847 +UniRef50_A4VVR6 Predicted O methyltransferase 2.18097625787 0.500000000001 -1.68097625788 +UniRef50_K2AGU5 Chemotactic signal response protein CheL 0.946655702228 0.5 -0.446655702228 +UniRef50_A8AJ27 6 phosphogluconolactonase 1.32542623517 0.499999999999 -0.825426235165 +UniRef50_M0BHI2 Nucleolar protein like protein 0.652855401657 0.5 -0.152855401657 +UniRef50_K7VJY6 6.07273106301 0.5 -5.57273106301 +UniRef50_O34814 Cell division ATP binding protein FtsE 0.134660184572 0.5 0.365339815428 +UniRef50_UPI00035D2A1B hypothetical protein 0.233833685096 0.5 0.266166314904 +UniRef50_UPI00037863B5 hypothetical protein 0.237884799589 0.5 0.262115200411 +UniRef50_B3DQ29 Elongation factor P 0.0736506593992 0.5 0.426349340601 +UniRef50_P43735 Chaperone protein DnaJ 0.176092446594 0.5 0.323907553406 +UniRef50_UPI000161E2A8 40S ribosomal protein S15 3.36420829966 0.500000000001 -2.86420829966 +UniRef50_Q66L51 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 0.432132035182 0.5 0.0678679648178 +UniRef50_A0A023RVS9 Diguanylate cyclase 0.0126389601318 0.5 0.487361039868 +UniRef50_Q8ZLF2 sn glycerol 3 phosphate transport system permease protein UgpA 2.0782833619 0.499999999998 -1.5782833619 +UniRef50_A4J8U4 Putative sporulation transcription regulator WhiA 0.109450243153 0.499999999999 0.390549756848 +UniRef50_J9P3B1 1.34216441737 0.5 -0.842164417368 +UniRef50_E1TE96 Type VI secretion protein, VC_A0114 family 20.1162226999 0.499999999986 -19.6162226999 +UniRef50_UPI000329034B 1.38101211109 0.5 -0.881012111091 +UniRef50_A5VR36 Lactoylglutathione lyase 1.3008011179 0.499999999998 -0.800801117898 +UniRef50_Q88QC7 Biosynthetic arginine decarboxylase 0.555830087849 0.5 -0.0558300878487 +UniRef50_P27111 HTH type transcriptional regulator CynR 7.11458997193 0.500000000006 -6.61458997194 +UniRef50_G7ZTG5 Acetyltransferase, GNAT family protein 6.92000871391 0.499999999995 -6.4200087139 +UniRef50_K3X5U2 0.298915554985 0.5 0.201084445015 +UniRef50_UPI0003B45AF6 NADPH 0.191064542451 0.5 0.308935457549 +UniRef50_UPI00047C5895 hypothetical protein 0.0751634634849 0.500000000001 0.424836536515 +UniRef50_A4VWF3 ATPase component of ABC transporters with duplicated ATPase domains 0.0341838299795 0.5 0.46581617002 +UniRef50_S6AW99 0.101532056959 0.5 0.398467943041 +UniRef50_P29365 Homoserine dehydrogenase 0.0627868631861 0.5 0.437213136814 +UniRef50_A1W5W7 SwissProt accession number P19593 like protein 0.0964808141867 0.5 0.403519185813 +UniRef50_H8LDC1 Helix turn helix domain protein 3.22027692479 0.499999999995 -2.72027692479 +UniRef50_E8ZZT0 DNA translocase ftsK 2.16650117943 0.5 -1.66650117943 +UniRef50_A1K314 Holliday junction ATP dependent DNA helicase RuvA 0.255994751334 0.5 0.244005248666 +UniRef50_UPI00037585D1 hypothetical protein 1.99980339102 0.5 -1.49980339102 +UniRef50_G2SM74 Fe S cluster oxidoreductase 0.356942621325 0.5 0.143057378675 +UniRef50_UPI00037560BA hypothetical protein 0.160892412694 0.5 0.339107587306 +UniRef50_B0SAP0 Succinyl CoA ligase [ADP forming] subunit beta 0.902176312024 0.5 -0.402176312024 +UniRef50_Q8CRS1 1.11360257821 0.5 -0.613602578214 +UniRef50_R0DRQ8 0.524530049014 0.5 -0.0245300490144 +UniRef50_F5HTJ7 Phosphopantetheine attachment domain protein 0.0148060592006 0.5 0.485193940799 +UniRef50_W5X2Q0 0.315004677025 0.5 0.184995322975 +UniRef50_E8TF05 Tetracycline transcriptional regulator YcdC domain containing protein 2.11714944899 0.500000000002 -1.61714944899 +UniRef50_E9WHJ2 NrdB protein 6.34182081116 0.500000000004 -5.84182081117 +UniRef50_A3PP90 TRAP T family transporter, small inner membrane subunit 4.89322568266 0.5 -4.39322568266 +UniRef50_UPI000469C97C riboflavin biosynthesis protein RibF 0.156100969301 0.5 0.343899030699 +UniRef50_UPI00036BA29A MULTISPECIES 0.188362626416 0.5 0.311637373584 +UniRef50_Q9I2Y2 Phosphoserine phosphatase ThrH 0.0819752038167 0.5 0.418024796183 +UniRef50_Q8Y2I3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.485461522094 0.5 0.0145384779059 +UniRef50_UPI0003A4B73E hypothetical protein 1.30066039088 0.5 -0.800660390876 +UniRef50_UPI00047210DD hypothetical protein 0.285895404106 0.5 0.214104595894 +UniRef50_A6WP83 Thioesterase superfamily protein 0.00852184340819 0.500000000001 0.491478156591 +UniRef50_M9VE12 Transglutaminase 0.0231980689122 0.5 0.476801931088 +UniRef50_D4GJ64 MocR 0.0385504353353 0.5 0.461449564665 +UniRef50_E3D421 CinA related protein 0.0489650624928 0.5 0.451034937508 +UniRef50_UPI000367AB3B hypothetical protein, partial 1.2590791994 0.5 -0.759079199402 +UniRef50_P65809 2.49443876414 0.499999999998 -1.99443876414 +UniRef50_Q65GI9 3 isopropylmalate dehydrogenase 0.821587665947 0.5 -0.321587665947 +UniRef50_UPI0003B44979 glutamate 0.200890551709 0.5 0.299109448291 +UniRef50_P77148 0.359002987893 0.5 0.140997012107 +UniRef50_J3M3U5 0.396538220373 0.5 0.103461779627 +UniRef50_UPI000381BF29 hypothetical protein, partial 0.176749590196 0.5 0.323250409804 +UniRef50_F8GT79 Major facilitator superfamily MFS 0.0311304652307 0.5 0.468869534769 +UniRef50_W1MCV7 0.884247515608 0.5 -0.384247515608 +UniRef50_R4GHX9 0.248276085707 0.5 0.251723914293 +UniRef50_UPI0003709C0F hypothetical protein 0.831308047745 0.5 -0.331308047745 +UniRef50_A5FN12 Enolase 0.0533711584178 0.5 0.446628841582 +UniRef50_F5ZL84 Membrane protein 0.565216924694 0.5 -0.0652169246943 +UniRef50_P08681 Cytochrome c oxidase subunit 1 0.212258143825 0.5 0.287741856175 +UniRef50_UPI00046D95AC multidrug MFS transporter 0.0303806705146 0.5 0.469619329485 +UniRef50_B9DJU7 Choline transporter 1.83671736905 0.499999999999 -1.33671736905 +UniRef50_UPI0004689981 hypothetical protein 0.238571443499 0.5 0.261428556501 +UniRef50_UPI000467699E cytochrome d ubiquinol oxidase subunit 2 0.0987911784503 0.5 0.40120882155 +UniRef50_UPI000471B371 hydrogenase accessory protein HypB 1.49354982563 0.5 -0.993549825634 +UniRef50_I4EB76 Replication protein C 1.07689470321 0.5 -0.576894703211 +UniRef50_B1HXC5 Sulfate binding protein (SSI2) 0.0971231127749 0.499999999999 0.402876887226 +UniRef50_UPI00022CA98C PREDICTED 0.101387005533 0.5 0.398612994467 +UniRef50_U5MVB3 Phage like element PBSX protein XkdC 0.262473810407 0.5 0.237526189593 +UniRef50_Q0C5Z7 Transcription termination factor NusA 1.41686747668 0.5 -0.916867476683 +UniRef50_UPI00027F529F 1.57131415238 0.5 -1.07131415238 +UniRef50_A6LQD4 Endodeoxyribonuclease RusA 0.0238894306507 0.5 0.476110569349 +UniRef50_E8JNG4 0.411375436164 0.5 0.0886245638356 +UniRef50_UPI0003B5B5B4 heme biosynthesis protein HemY 0.389669775724 0.5 0.110330224276 +UniRef50_G8VCT1 Lysophospholipase 0.0170590843302 0.5 0.48294091567 +UniRef50_A4XPP9 Pilus assembly protein, PilQ 0.308684694871 0.5 0.191315305129 +UniRef50_R5TNT7 NAD utilizing dehydrogenase 0.145229075842 0.5 0.354770924159 +UniRef50_Q4L389 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.132500615432 0.5 0.367499384569 +UniRef50_W8RPJ3 Hydroxymethylpyrimidine ABC transporter, transmembrane component 10.622050826 0.5 -10.122050826 +UniRef50_Q6A5L3 Putative 3 methyladenine DNA glycosylase 0.00393925072992 0.5 0.49606074927 +UniRef50_H1QEQ5 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.45155981855 0.5 -0.951559818552 +UniRef50_P58336 Fructose bisphosphate aldolase 0.965269544711 0.5 -0.465269544711 +UniRef50_Q8RG98 ATP dependent 6 phosphofructokinase 1.44153857287 0.499999999999 -0.94153857287 +UniRef50_G8VQK9 0.00782236641224 0.5 0.492177633588 +UniRef50_Q49776 ATP phosphoribosyltransferase 0.0213428838536 0.5 0.478657116146 +UniRef50_P33014 UPF0033 protein YeeD 1.05407359882 0.5 -0.554073598818 +UniRef50_F2A7T6 2.22424661454 0.499999999998 -1.72424661454 +UniRef50_Q6AB77 Na H(+) antiporter NhaA 0.0304184280583 0.5 0.469581571942 +UniRef50_A4WUL7 GumN family protein 1.0205022726 0.5 -0.520502272604 +UniRef50_P59302 Acetylglutamate kinase 1.10025041183 0.5 -0.600250411832 +UniRef50_Q983F8 Ribosomal RNA large subunit methyltransferase E 0.779613275868 0.5 -0.279613275868 +UniRef50_P24136 Oligopeptide transport ATP binding protein OppD 1.13591081628 0.5 -0.63591081628 +UniRef50_G2T6W5 Ppx GppA phosphatase 0.330336781967 0.5 0.169663218033 +UniRef50_A7X5U0 Formimidoylglutamase 2.18421538763 0.5 -1.68421538763 +UniRef50_U5MNC9 PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase 0.279539865963 0.5 0.220460134037 +UniRef50_Q6FBR2 0.0149197435147 0.5 0.485080256485 +UniRef50_UPI000465E9D3 glycine betaine ABC transporter ATP binding protein 2.86105813066 0.499999999999 -2.36105813066 +UniRef50_UPI0004662A15 peptide ABC transporter 3.35523599039 0.5 -2.85523599039 +UniRef50_UPI00037198AA hypothetical protein 0.820882858703 0.5 -0.320882858703 +UniRef50_P12999 Malonyl [acyl carrier protein] O methyltransferase 1.37272623738 0.499999999999 -0.872726237383 +UniRef50_UPI000380847F hypothetical protein 0.840833842748 0.5 -0.340833842748 +UniRef50_UPI0004706833 hypothetical protein 2.30919973435 0.5 -1.80919973435 +UniRef50_F9YZ80 0.00556386439636 0.5 0.494436135604 +UniRef50_B5EXN2 Ferrochelatase 0.0765198747595 0.5 0.423480125241 +UniRef50_S9TGH7 PE PGRS family protein 0.174613507327 0.5 0.325386492673 +UniRef50_F0KI57 Transcription activator of glutamate synthase operon GltC 0.00744631700293 0.5 0.492553682997 +UniRef50_P60065 Arginine agmatine antiporter 1.39384874219 0.500000000001 -0.893848742189 +UniRef50_Z5XA58 0.131834014486 0.5 0.368165985514 +UniRef50_Q2K5E7 Xylose ABC transporter, permease protein 1.5392605341 0.5 -1.0392605341 +UniRef50_F0P396 Betaine aldehyde dehydrogenase 2.61436791081 0.500000000002 -2.11436791081 +UniRef50_G2L6P6 0.368540828058 0.5 0.131459171942 +UniRef50_A4XTI2 0.0890886701604 0.5 0.410911329839 +UniRef50_A1R8N0 tRNA N6 adenosine threonylcarbamoyltransferase 0.321194961191 0.5 0.178805038809 +UniRef50_W8KIM2 Protein pucC 1.22275741571 0.5 -0.722757415714 +UniRef50_D9S1W5 0.621792041721 0.5 -0.121792041721 +UniRef50_M1MXN6 ABC type multidrug transport system, ATPase and permease component 0.320642777649 0.5 0.179357222351 +UniRef50_Q54MI4 0.255901687968 0.5 0.244098312032 +UniRef50_Q6GJ93 Putative acetyl CoA C acetyltransferase VraB 2.33651424988 0.500000000002 -1.83651424988 +UniRef50_V7EMW9 0.686736162766 0.5 -0.186736162766 +UniRef50_A3PLM1 4 deoxy L threo 5 hexosulose uronate ketol isomerase 7.28764077962 0.500000000004 -6.78764077962 +UniRef50_C3F739 VrrA protein product 0.0928202445894 0.5 0.407179755411 +UniRef50_UPI000465695E ABC transporter 0.322440448383 0.5 0.177559551617 +UniRef50_P75785 Phosphoethanolamine transferase OpgE 1.96566999557 0.499999999999 -1.46566999557 +UniRef50_UPI0003C14A7B PREDICTED 0.600563012509 0.5 -0.100563012509 +UniRef50_A0A011RZV2 0.961769428944 0.5 -0.461769428944 +UniRef50_W7TIH3 1.02916119622 0.5 -0.529161196224 +UniRef50_B0RVK4 Succinyl CoA 0.183668394917 0.5 0.316331605083 +UniRef50_UPI000370484E hypothetical protein 1.16025517383 0.5 -0.660255173829 +UniRef50_Q5HP94 Holliday junction resolvase RecU 1.58030200606 0.5 -1.08030200606 +UniRef50_A0A009FMX4 BCCT transporter family protein 0.014858180619 0.5 0.485141819381 +UniRef50_UPI000347806D MULTISPECIES 0.00630579477707 0.499999999999 0.493694205224 +UniRef50_A9MIT8 9.10385601962 0.499999999998 -8.60385601962 +UniRef50_Q1IUF1 tRNA N6 adenosine threonylcarbamoyltransferase 0.421769810959 0.5 0.0782301890414 +UniRef50_E3A4Z7 2.2315358324 0.499999999997 -1.7315358324 +UniRef50_UPI00035F7B5B hypothetical protein 0.294111309918 0.5 0.205888690082 +UniRef50_D4FIU1 0.709499901522 0.5 -0.209499901522 +UniRef50_UPI00034D20EA cytochrome BD ubiquinol oxidase subunit I 0.372596047098 0.5 0.127403952902 +UniRef50_A6YP79 Minor ampullate spidroin like protein 0.0481013740654 0.5 0.451898625935 +UniRef50_C8W984 M20 DapE family protein YgeY 0.0136499476768 0.5 0.486350052323 +UniRef50_G8VJJ1 Poly depolymerase 0.0197872366748 0.5 0.480212763325 +UniRef50_P39295 0.382159271977 0.5 0.117840728023 +UniRef50_R5TI31 0.00880898899124 0.5 0.491191011009 +UniRef50_P60811 Foldase protein PrsA 1 1.15169714741 0.5 -0.651697147407 +UniRef50_UPI0002374DF8 30S ribosomal protein S2, partial 0.194800887619 0.5 0.305199112381 +UniRef50_S9QQX6 3.53582808908 0.500000000004 -3.03582808909 +UniRef50_C0Z6S0 Argininosuccinate synthase 0.45421491385 0.5 0.0457850861501 +UniRef50_A6V127 0.0205124621631 0.5 0.479487537837 +UniRef50_Q9RYE9 0.00272185906422 0.5 0.497278140936 +UniRef50_A7X3Q8 Serine protease SplB 2.29359791386 0.5 -1.79359791386 +UniRef50_Q8DW55 0.611186677642 0.5 -0.111186677642 +UniRef50_G2L1N4 0.403301230446 0.5 0.0966987695541 +UniRef50_UPI00047D67F7 branched chain amino acid ABC transporter 1.584887497 0.5 -1.084887497 +UniRef50_UPI0003B4B808 amino acid ABC transporter ATPase, partial 0.442831088242 0.5 0.0571689117584 +UniRef50_UPI00039C5902 RNA polymerase sigma 70 factor 0.00687982518405 0.5 0.493120174816 +UniRef50_UPI00047B598A hypothetical protein 0.315192347497 0.5 0.184807652503 +UniRef50_D4L1E0 ABC type Fe3+ siderophore transport system, permease component 0.153961412005 0.5 0.346038587995 +UniRef50_Q73HV5 Glutamate tRNA ligase 1 0.789689947008 0.5 -0.289689947008 +UniRef50_B7GXS6 5 formyltetrahydrofolate cyclo ligase 0.0174045931839 0.5 0.482595406816 +UniRef50_UPI00045717A3 PREDICTED 2.37830594664 0.499999999998 -1.87830594664 +UniRef50_UPI000373B187 hypothetical protein 0.00014982448066 0.5 0.499850175519 +UniRef50_Q9HXH7 0.588115626999 0.5 -0.0881156269987 +UniRef50_UPI0001A42D32 hypothetical protein, partial 3.68964361823 0.499999999999 -3.18964361823 +UniRef50_UPI000255AEF1 30S ribosomal protein S3, partial 0.245332435949 0.5 0.254667564051 +UniRef50_Q57926 Probable homocitrate synthase AksA 2.1816395018 0.499999999999 -1.6816395018 +UniRef50_Q08386 Molybdenum pterin binding protein MopB 0.760982650997 0.5 -0.260982650997 +UniRef50_D6SC26 6 O methylguanine DNA methyltransferase, DNA binding domain protein 0.744197318723 0.5 -0.244197318723 +UniRef50_P9WP73 Oxygen independent coproporphyrinogen III oxidase like protein Rv2388c 1.47223395731 0.499999999999 -0.972233957307 +UniRef50_UPI0002195D79 glutamate ABC transporter permease 0.0559961061492 0.5 0.444003893851 +UniRef50_UPI0004005367 hypothetical protein 0.0135782131511 0.5 0.486421786849 +UniRef50_K2EGX4 0.331577116979 0.5 0.168422883021 +UniRef50_F0RN24 Polyprenyl synthetase 0.0145486617174 0.5 0.485451338283 +UniRef50_C0SPB0 1.2843447618 0.5 -0.784344761799 +UniRef50_S9QSJ4 Flagellar protein FlgJ, putative 0.952164448313 0.5 -0.452164448313 +UniRef50_O27701 Conserved protein 1.7139225511 0.5 -1.2139225511 +UniRef50_P55218 O succinylhomoserine sulfhydrylase 0.0178193769186 0.5 0.482180623081 +UniRef50_M6VVW5 PF12769 domain protein 0.341674227822 0.5 0.158325772178 +UniRef50_I2C019 Transcriptional regulator, LysR family 0.261034094132 0.5 0.238965905868 +UniRef50_P76041 Putative sucrose phosphorylase 0.390194055277 0.5 0.109805944723 +UniRef50_D5SSZ9 ATP dependent DNA ligase 1.15379014024 0.5 -0.653790140244 +UniRef50_UPI00036A77AE hypothetical protein 1.23375440261 0.5 -0.733754402612 +UniRef50_P75806 Putative undecaprenyl diphosphatase YbjG 3.02999930678 0.500000000001 -2.52999930678 +UniRef50_UPI0003315352 PREDICTED 0.283252143237 0.5 0.216747856763 +UniRef50_Q7MLR5 Cysteine tRNA ligase 0.678862902899 0.5 -0.178862902899 +UniRef50_UPI00035CB1C3 hypothetical protein 2.56456570364 0.5 -2.06456570364 +UniRef50_G8VCB9 BNR Asp box repeat protein 0.00418181326823 0.5 0.495818186732 +UniRef50_Q2YYG7 4.48233724065 0.5 -3.98233724065 +UniRef50_Q7XIT3 1.73724389904 0.500000000002 -1.23724389904 +UniRef50_I2ZRW4 Maltose regulon activator MalT domain protein 0.318188804344 0.5 0.181811195656 +UniRef50_UPI000471FD97 hypothetical protein 0.903397092704 0.5 -0.403397092704 +UniRef50_UPI0004708D1E hypothetical protein, partial 1.2955345543 0.5 -0.795534554295 +UniRef50_C3A4M2 0.0465464665009 0.5 0.453453533499 +UniRef50_Q9I6G4 1.54308111454 0.5 -1.04308111454 +UniRef50_UPI0003B7884C ABC transporter, partial 0.646579449233 0.5 -0.146579449233 +UniRef50_E7RTI9 0.679173310624 0.5 -0.179173310624 +UniRef50_Q17WZ6 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0701203742751 0.5 0.429879625725 +UniRef50_Q8FTK5 GTPase Der 0.0168406059482 0.5 0.483159394052 +UniRef50_F8LLX7 Restriction enzyme BgcI subunit alpha 0.0105594227765 0.5 0.489440577223 +UniRef50_Q03024 Alkaline protease secretion ATP binding protein AprD 0.155097524885 0.5 0.344902475115 +UniRef50_K1Z0I8 Integral membrane protein MviN 0.90619027942 0.5 -0.40619027942 +UniRef50_A4WTG8 Methyl accepting chemotaxis sensory transducer 2.17582803938 0.5 -1.67582803938 +UniRef50_Q9I291 UTP glucose 1 phosphate uridylyltransferase 0.148241772835 0.5 0.351758227165 +UniRef50_UPI00036E1A9D hypothetical protein 0.786798570836 0.5 -0.286798570836 +UniRef50_UPI0003B744A6 3 isopropylmalate dehydrogenase, partial 0.715854941473 0.5 -0.215854941473 +UniRef50_B2TRH5 Stage 0 sporulation protein J 0.172329539168 0.5 0.327670460832 +UniRef50_P32710 Cytochrome c type biogenesis protein NrfE 11.891236892 0.500000000006 -11.391236892 +UniRef50_C4ZJP0 0.0815465572855 0.5 0.418453442714 +UniRef50_H8GU51 0.00089691049371 0.5 0.499103089506 +UniRef50_Q5HLG5 2 dehydropantoate 2 reductase 1.92105219099 0.5 -1.42105219099 +UniRef50_UPI00035D0467 hypothetical protein, partial 0.147109782511 0.5 0.352890217489 +UniRef50_UPI00037FF715 hypothetical protein, partial 1.06475013511 0.5 -0.564750135107 +UniRef50_Q3JVL6 0.110808425035 0.5 0.389191574965 +UniRef50_F3AA10 0.175724433464 0.5 0.324275566536 +UniRef50_P0AFA0 Lipopolysaccharide export system permease protein LptF 1.24107098811 0.499999999999 -0.741070988112 +UniRef50_E6UL31 Endonuclease V 0.139209357364 0.5 0.360790642636 +UniRef50_D3NUN5 MoxR like ATPase 1.43128431844 0.5 -0.931284318441 +UniRef50_UPI000287BC3E dehydrogenase 0.919933747022 0.5 -0.419933747022 +UniRef50_E8WHV5 Pseudouridine synthase 1.59351550697 0.5 -1.09351550697 +UniRef50_UPI00036DC256 MULTISPECIES 0.33360875993 0.5 0.16639124007 +UniRef50_K9VRD1 Beta Ig H3 fasciclin 1.18306579118 0.499999999998 -0.683065791177 +UniRef50_A7X6Y1 L lactate dehydrogenase 2 2.20999044989 0.5 -1.70999044989 +UniRef50_Q7NFA1 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.324304865357 0.5 0.175695134643 +UniRef50_Q92S04 Probable chemoreceptor glutamine deamidase CheD 3.28411122001 0.499999999999 -2.78411122001 +UniRef50_A6LS08 Sigma 54 factor, interaction domain containing protein 0.0915284158539 0.5 0.408471584146 +UniRef50_Q3AC58 Ribonuclease 3 0.228868623485 0.5 0.271131376515 +UniRef50_Q5XAQ3 Cysteine synthase 0.97567334991 0.5 -0.47567334991 +UniRef50_UPI00037792DA hypothetical protein 1.38797776258 0.499999999999 -0.887977762575 +UniRef50_V8MVT8 2.06016036597 0.5 -1.56016036597 +UniRef50_A1JIY2 UPF0597 protein YE0448 2.24149940489 0.5 -1.74149940489 +UniRef50_Q28NP7 Outer membrane protein assembly factor BamD 23.0790809299 0.500000000048 -22.57908093 +UniRef50_A0A011PJY3 0.166510372918 0.5 0.333489627082 +UniRef50_Y8CPG9 1.33720051237 0.5 -0.837200512373 +UniRef50_P0AER2 Glycerol uptake facilitator protein 2.30395040243 0.5 -1.80395040243 +UniRef50_UPI000470D0F7 hypothetical protein 2.06438492486 0.500000000002 -1.56438492486 +UniRef50_UPI0002626B82 polyphosphate kinase 0.0219585890945 0.5 0.478041410905 +UniRef50_K9NFY1 Glutamine synthetase 1.02573068849 0.5 -0.525730688492 +UniRef50_K9ZXW7 Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase 0.00546628308263 0.5 0.494533716917 +UniRef50_B9KK79 Metallophosphoesterase 1.56470765558 0.499999999999 -1.06470765558 +UniRef50_F0YF94 0.558310650988 0.5 -0.058310650988 +UniRef50_Q094I2 3.68980452568 0.499999999995 -3.18980452568 +UniRef50_F0YF93 0.23577380154 0.5 0.26422619846 +UniRef50_Q1MRW8 Adenylosuccinate synthetase 0.632386589802 0.5 -0.132386589802 +UniRef50_UPI00035FD138 hypothetical protein 0.986536054295 0.5 -0.486536054295 +UniRef50_R8A2V2 Glucose 6 phosphate 1 dehydrogenase 0.275633264581 0.5 0.224366735419 +UniRef50_F9Z2P0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0718401728091 0.5 0.428159827191 +UniRef50_A6W2T4 Shikimate kinase 0.691827556848 0.5 -0.191827556848 +UniRef50_A6TLP6 PfkB domain protein 0.0294524737486 0.5 0.470547526251 +UniRef50_F3Z6R0 Putative integral membrane efflux protein 0.0570396830202 0.5 0.44296031698 +UniRef50_V6DRE9 0.00375735226927 0.5 0.496242647731 +UniRef50_UPI00034D4B82 hypothetical protein 0.836580204714 0.5 -0.336580204714 +UniRef50_S7S4W9 0.121053654035 0.5 0.378946345965 +UniRef50_A3M0Z0 D amino acid dehydrogenase small subunit 0.00749190292372 0.500000000001 0.492508097076 +UniRef50_D3D3X9 1.16416117246 0.5 -0.664161172464 +UniRef50_H3UKE3 Extracellular matrix binding protein ebh 0.37318777454 0.5 0.12681222546 +UniRef50_Q1GFQ2 ABC transporter related 1.90570933643 0.5 -1.40570933643 +UniRef50_S9W022 0.0958389602338 0.5 0.404161039766 +UniRef50_A6LY02 Helix turn helix domain containing protein, AraC type 0.0232556713078 0.5 0.476744328692 +UniRef50_A0AIL5 Internalin family protein 1.4757590262 0.5 -0.975759026204 +UniRef50_Q895J2 Zinc protease 0.868582167264 0.5 -0.368582167264 +UniRef50_R7P2I4 0.00878059765145 0.5 0.491219402348 +UniRef50_I0I041 1.86352119252 0.5 -1.36352119252 +UniRef50_UPI00046CFACA hypothetical protein 0.126886291473 0.5 0.373113708527 +UniRef50_P00471 Thymidylate synthase 0.223123150381 0.5 0.276876849619 +UniRef50_W0ZC25 0.0599885965989 0.5 0.440011403401 +UniRef50_F3Z8L2 0.0851182771185 0.5 0.414881722881 +UniRef50_Q3J618 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.993909264459 0.5 -0.493909264459 +UniRef50_N0BBG7 2.41680884056 0.500000000003 -1.91680884056 +UniRef50_D9SVN6 N5 carboxyaminoimidazole ribonucleotide mutase 2.36961082072 0.5 -1.86961082072 +UniRef50_Q2GA52 Leucyl phenylalanyl tRNA protein transferase 0.455511623417 0.5 0.0444883765826 +UniRef50_D7URR5 Cell shape determining protein MreC 0.90635782195 0.5 -0.40635782195 +UniRef50_A3QB39 Glucosamine 6 phosphate deaminase 0.172085708096 0.5 0.327914291904 +UniRef50_N1MJG8 Mobile element protein 1.15044399998 0.5 -0.650443999977 +UniRef50_P10486 Type I restriction enzyme EcoR124II R protein 0.0109840464518 0.5 0.489015953548 +UniRef50_Q182T5 Bifunctional protein PyrR 0.182416530546 0.5 0.317583469454 +UniRef50_Q8CN80 General stress protein 26 0.971607852206 0.5 -0.471607852206 +UniRef50_B7IWC4 BclA protein 0.24448240123 0.5 0.25551759877 +UniRef50_Q9RSF0 Leucine tRNA ligase 0.00165410799998 0.5 0.498345892 +UniRef50_Q9JXK3 Serine type peptidase 0.0305919695096 0.5 0.469408030491 +UniRef50_P32155 Fructose like phosphotransferase enzyme IIA component 0.458864273022 0.5 0.0411357269775 +UniRef50_R1DRR6 1.35162335402 0.5 -0.851623354021 +UniRef50_G5RNH3 Phosphoenolpyruvate carboxylase 3.85546711578 0.499999999999 -3.35546711578 +UniRef50_UPI0003C14DD4 PREDICTED 0.0636820484005 0.5 0.4363179516 +UniRef50_B9KS86 0.770498675992 0.5 -0.270498675992 +UniRef50_U6LIW8 Sybindin like family domain containing protein, putative 0.121117288969 0.5 0.378882711032 +UniRef50_W5X3E8 Methyltransferase family protein 0.123004363203 0.5 0.376995636797 +UniRef50_UPI000475A333 PA phosphatase 1.72375265407 0.499999999999 -1.22375265407 +UniRef50_B9KS80 8.63218703469 0.500000000002 -8.13218703469 +UniRef50_Q2FH51 Phosphate import ATP binding protein PstB 3.63451583066 0.5 -3.13451583066 +UniRef50_UPI00045EA79E hypothetical protein, partial 0.0739335188905 0.499999999999 0.42606648111 +UniRef50_Q48PX1 Glutamate cysteine ligase 0.987564806894 0.5 -0.487564806894 +UniRef50_UPI0002F819F8 hypothetical protein 0.044287144491 0.5 0.455712855509 +UniRef50_A0A059E2E8 0.984684362171 0.5 -0.484684362171 +UniRef50_W4MLS6 0.170140122352 0.5 0.329859877648 +UniRef50_B0VS92 Paraquat inducible protein 0.00935040127813 0.5 0.490649598722 +UniRef50_UPI00028A3C04 FAD linked oxidase like protein, partial 0.542867682662 0.5 -0.0428676826621 +UniRef50_P39805 Transcription antiterminator LicT 0.528487036348 0.5 -0.0284870363479 +UniRef50_Q1R7E0 0.428327239032 0.5 0.0716727609684 +UniRef50_P26496 Poly polymerase 2 3.3090976263 0.500000000005 -2.8090976263 +UniRef50_UPI000367451B acyl CoA dehydrogenase 0.100983212016 0.5 0.399016787984 +UniRef50_UPI0003628C72 hypothetical protein 0.371802759618 0.5 0.128197240382 +UniRef50_P44941 1.60346470315 0.5 -1.10346470315 +UniRef50_F8HFC0 Conserved domain protein 0.138926648048 0.5 0.361073351952 +UniRef50_UPI0003B3ED87 hypothetical protein 0.852993813133 0.5 -0.352993813133 +UniRef50_E8SRI9 0.0785090698921 0.5 0.421490930108 +UniRef50_A6VD60 N acetylmuramoyl L alanine amidase 1.41900399872 0.5 -0.919003998723 +UniRef50_A7ZZW4 Porin, autotransporter family 0.329810008542 0.5 0.170189991458 +UniRef50_UPI00035F5AB5 hypothetical protein 0.0992687729056 0.5 0.400731227094 +UniRef50_Q5HLZ6 1.17491289014 0.5 -0.674912890144 +UniRef50_UPI00035EE7D2 hypothetical protein 2.31917926906 0.500000000001 -1.81917926907 +UniRef50_P76350 Shikimate transporter 1.66981769175 0.500000000001 -1.16981769175 +UniRef50_A0A023RZ85 Acyltransferase 0.0209706784468 0.5 0.479029321553 +UniRef50_O67505 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.122396688373 0.5 0.377603311627 +UniRef50_Q1II13 Lipoyl synthase 0.0908977784615 0.5 0.409102221539 +UniRef50_U5SRV6 Integrase 21.9830158065 0.500000000002 -21.4830158065 +UniRef50_UPI0002F99873 hypothetical protein 0.450974470876 0.5 0.0490255291239 +UniRef50_B1GZG8 Polyribonucleotide nucleotidyltransferase 0.0303309452429 0.5 0.469669054757 +UniRef50_G8V046 Abi like family protein 3.98535205333 0.5 -3.48535205333 +UniRef50_A3ZYM8 Nicotinamide nucleotide transhydrogenase, subunit alpha 0.290538867938 0.5 0.209461132062 +UniRef50_A5VJ31 Phospho N acetylmuramoyl pentapeptide transferase 0.00165287351798 0.5 0.498347126482 +UniRef50_UPI00034DE442 hypothetical protein 0.00432099602219 0.5 0.495679003978 +UniRef50_A4W1C0 Predicted Rossmann fold nucleotide binding protein involved in DNA uptake 0.410685223724 0.5 0.0893147762756 +UniRef50_A6LV77 Binding protein dependent transport systems inner membrane component 0.0562436503107 0.5 0.443756349689 +UniRef50_Q2YV12 PTS system EIIBC component SAB0132 1.20755592337 0.5 -0.707555923367 +UniRef50_Q8YYY4 All0708 protein 1.26932818283 0.500000000001 -0.769328182832 +UniRef50_K2ALU5 0.00137630224127 0.5 0.498623697759 +UniRef50_UPI00047EB60C hypothetical protein 0.967543513314 0.5 -0.467543513314 +UniRef50_H1QFS1 Thiamine biosynthesis protein ThiC 0.168353004015 0.5 0.331646995985 +UniRef50_UPI00036E98A9 hypothetical protein 0.811749291719 0.5 -0.311749291719 +UniRef50_UPI00036F5F0F hypothetical protein 0.277972118025 0.5 0.222027881975 +UniRef50_UPI000404FF04 hypothetical protein 0.0685200301902 0.5 0.43147996981 +UniRef50_P37440 Oxidoreductase UcpA 1.80231585068 0.5 -1.30231585068 +UniRef50_R6ZPD9 0.690222036954 0.5 -0.190222036954 +UniRef50_D6B3U1 Short chain dehydrogenase 0.0320033029841 0.5 0.467996697016 +UniRef50_B9KNU0 Helicase 0.337614562497 0.5 0.162385437503 +UniRef50_I6U2T1 Polyketide synthase 1.99363539725 0.5 -1.49363539725 +UniRef50_A0ADL6 Putative iron sulfur protein 0.0401669899304 0.5 0.459833010069 +UniRef50_F2AG83 0.116102641685 0.5 0.383897358315 +UniRef50_UPI00037E75DF histidine kinase, partial 0.815474747218 0.5 -0.315474747218 +UniRef50_G4YB17 0.104663294549 0.5 0.395336705451 +UniRef50_E0N9M8 0.683330144363 0.5 -0.183330144363 +UniRef50_P0AB72 Fructose bisphosphate aldolase class 2 3.83481060285 0.500000000001 -3.33481060285 +UniRef50_D7GD43 Deoxyguanosinetriphosphate triphosphohydrolase 0.0397593760401 0.5 0.46024062396 +UniRef50_G0HCK4 0.039331466156 0.5 0.460668533844 +UniRef50_Q5HKT7 2.04185359479 0.499999999999 -1.54185359479 +UniRef50_C5N3T1 2.68868243327 0.5 -2.18868243327 +UniRef50_UPI0002BBFDEB hypothetical protein 0.758521341837 0.5 -0.258521341837 +UniRef50_UPI00035D07EB hypothetical protein 0.129138538908 0.500000000001 0.370861461091 +UniRef50_UPI00016A9C60 major facilitator family transporter, partial 0.279740667756 0.5 0.220259332244 +UniRef50_C5N3T8 3.86835041132 0.5 -3.36835041132 +UniRef50_D4HAP5 Transcriptional regulatory protein, C terminal domain protein 0.250876313993 0.5 0.249123686007 +UniRef50_Q9CET9 Prephenate dehydrogenase 1.05364844749 0.5 -0.553648447485 +UniRef50_UPI000316C479 histidine ammonia lyase 0.0313148273031 0.5 0.468685172697 +UniRef50_P06612 DNA topoisomerase 1 0.233611030566 0.5 0.266388969434 +UniRef50_UPI00029A4174 ABC transporter ATP binding protein 0.873155334211 0.5 -0.373155334211 +UniRef50_P57699 Potassium transporting ATPase B chain 0.00286467750104 0.5 0.497135322499 +UniRef50_I0C7Y1 Arginine repressor 0.912413622658 0.5 -0.412413622658 +UniRef50_L7WV22 0.31356628186 0.5 0.18643371814 +UniRef50_UPI0003B500DF ribosomal large subunit pseudouridine synthase C 0.126655523097 0.5 0.373344476903 +UniRef50_G2TQW7 Phosphotransferase system PTS sorbose specific IIC subunit 0.0827000973679 0.499999999999 0.417299902633 +UniRef50_A6LU65 Methyl accepting chemotaxis sensory transducer 0.55222490383 0.5 -0.0522249038297 +UniRef50_Q3J3Y0 4.77665398292 0.500000000003 -4.27665398292 +UniRef50_W7BZR4 0.221909768544 0.5 0.278090231456 +UniRef50_Q02137 Acetolactate synthase large subunit 2.54027580107 0.499999999999 -2.04027580107 +UniRef50_E4HVL3 YD repeat protein 0.0554080723351 0.5 0.444591927665 +UniRef50_P19931 Hydrogenase 1 operon protein HyaE 1.43483780221 0.5 -0.934837802211 +UniRef50_UPI000378C27D hypothetical protein 0.104801887715 0.5 0.395198112285 +UniRef50_B8D1K5 ATP dependent 6 phosphofructokinase 0.643011180248 0.5 -0.143011180248 +UniRef50_UPI000382BE75 hypothetical protein 0.101939552972 0.5 0.398060447028 +UniRef50_UPI0003675045 ABC transporter substrate binding protein, partial 4.48289034107 0.500000000005 -3.98289034107 +UniRef50_Q9RSM8 Endopeptidase IV related protein 0.00492748500852 0.5 0.495072514992 +UniRef50_B7LSY4 0.319560307808 0.5 0.180439692192 +UniRef50_Q9CKJ2 L threonine dehydratase biosynthetic IlvA 0.364389892628 0.5 0.135610107372 +UniRef50_A0A022CKG6 0.00715559586148 0.5 0.492844404139 +UniRef50_P0ACY5 1.05651135744 0.5 -0.556511357445 +UniRef50_R1F809 0.461544982804 0.5 0.0384550171957 +UniRef50_B4U058 ComG operon protein 6 1.0906734519 0.5 -0.590673451904 +UniRef50_UPI00047620B0 SAM dependent methyltransferase 0.671338322472 0.5 -0.171338322472 +UniRef50_UPI00047183CB MFS transporter 0.292155893435 0.5 0.207844106565 +UniRef50_M1M9U7 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.469890483845 0.5 0.0301095161553 +UniRef50_F0N593 Transcriptional regulator, AraC family 0.0380904713638 0.5 0.461909528636 +UniRef50_J9NX06 1.05258695104 0.5 -0.552586951042 +UniRef50_Q04R37 Pyridoxine pyridoxamine 5 phosphate oxidase 0.0382372686893 0.5 0.461762731311 +UniRef50_A0A020HGX4 2.59568021473 0.500000000001 -2.09568021473 +UniRef50_Q06473 Cytochrome c oxidase subunit 1 1.04201549482 0.5 -0.542015494822 +UniRef50_K7RQC1 Amino acid or sugar ABC transport system, permease protein 0.0367406415566 0.5 0.463259358443 +UniRef50_P07251 ATP synthase subunit alpha, mitochondrial 0.185003654956 0.5 0.314996345044 +UniRef50_K1C2I8 10.0942478768 0.499999999999 -9.59424787682 +UniRef50_UPI000383E572 0.418445038169 0.5 0.0815549618308 +UniRef50_UPI00037611BB hypothetical protein, partial 0.392873460055 0.5 0.107126539945 +UniRef50_B7UXU5 Homologous to beta keto acyl acyl carrier protein synthase 1.64770196204 0.5 -1.14770196204 +UniRef50_B0VV71 0.00506026900016 0.5 0.494939731 +UniRef50_D3E1B0 2.47467103157 0.500000000001 -1.97467103157 +UniRef50_UPI00044349DC PREDICTED 0.489613740878 0.5 0.0103862591218 +UniRef50_F5XE67 UTP glucose 1 phosphate uridylyltransferase 0.0216023714465 0.5 0.478397628554 +UniRef50_A7FAZ2 0.017529657145 0.5 0.482470342855 +UniRef50_Q47158 1.24350952756 0.500000000001 -0.743509527564 +UniRef50_UPI0002000B64 antigen penicillin binding protein, partial 0.990379112947 0.5 -0.490379112947 +UniRef50_P37940 2 oxoisovalerate dehydrogenase subunit alpha 1.52461763595 0.5 -1.02461763595 +UniRef50_A6LRN8 Ribosomal protein L11 methyltransferase 0.0516047065533 0.5 0.448395293447 +UniRef50_Q9KQH7 3 oxoacyl [acyl carrier protein] reductase FabG 0.0714210687906 0.500000000001 0.428578931209 +UniRef50_S9Q6A0 0.244920590307 0.5 0.255079409693 +UniRef50_UPI0003B3866E hypothetical protein 0.302400318795 0.5 0.197599681205 +UniRef50_X6HEY2 0.470762152092 0.5 0.0292378479077 +UniRef50_A5G0R5 Polyhydroxyalkonate synthesis repressor, PhaR 1.60847141027 0.5 -1.10847141027 +UniRef50_R4ZBL9 Cro Cl family transcriptional regulator 0.194328856288 0.5 0.305671143712 +UniRef50_UPI0003B54D0C hypothetical protein 0.000824513890869 0.5 0.499175486109 +UniRef50_H8H715 0.0223241557818 0.5 0.477675844218 +UniRef50_Q3IVM9 Bacteriophage protein gp37 2.47913529891 0.5 -1.97913529891 +UniRef50_B7UXM6 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.23840510329 0.5 0.26159489671 +UniRef50_Q6F8A1 Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase) 0.00956022292471 0.5 0.490439777075 +UniRef50_P58740 Undecaprenyl diphosphatase 1 15.2983379892 0.499999999995 -14.7983379892 +UniRef50_P18275 Arginine ornithine antiporter 1.15507605676 0.5 -0.655076056765 +UniRef50_UPI0003AB78DA PREDICTED 0.79092483782 0.5 -0.29092483782 +UniRef50_UPI000380609D hypothetical protein 0.341370418902 0.5 0.158629581098 +UniRef50_UPI0004715FA9 hypothetical protein 0.277544815041 0.5 0.222455184959 +UniRef50_Q7MP85 4 hydroxythreonine 4 phosphate dehydrogenase 0.0958173197903 0.5 0.40418268021 +UniRef50_UPI00037E8BAF cell envelope biogenesis protein TonB, partial 0.573546287194 0.5 -0.0735462871937 +UniRef50_A6LRY0 0.10716063645 0.5 0.39283936355 +UniRef50_A3PPF7 2.41476700866 0.500000000001 -1.91476700866 +UniRef50_G7MD13 Cell wall binding repeat containing protein 0.57386484401 0.5 -0.0738648440099 +UniRef50_UPI000478557C carbon monoxide dehydrogenase 0.604530767249 0.5 -0.104530767249 +UniRef50_B2RKJ1 NAD specific glutamate dehydrogenase 0.286793231765 0.5 0.213206768235 +UniRef50_UPI000237AD1B aldehyde dehydrogenase 0.346334999954 0.5 0.153665000046 +UniRef50_D2N4B3 Ribosomal protein serine N acetyltransferase 2.46547744764 0.499999999998 -1.96547744764 +UniRef50_D3R7P0 Queuine tRNA ribosyltransferase 0.0288761608224 0.5 0.471123839178 +UniRef50_Q4L8F8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.54771156787 0.500000000001 -2.04771156787 +UniRef50_F3Y5B2 Putative fluoride ion transporter CrcB 0.598111292095 0.5 -0.0981112920947 +UniRef50_Q3IVD1 3 oxoadipate enol lactonase 1.6244999176 0.5 -1.1244999176 +UniRef50_X5F4R0 1.2951697682 0.5 -0.795169768202 +UniRef50_UPI0004636ECE hypothetical protein 0.832928251833 0.5 -0.332928251833 +UniRef50_C6S6X2 Gamma glutamyltranspeptidase 0.0528223361174 0.5 0.447177663883 +UniRef50_Q49Y11 Cytidine deaminase 6.58683478397 0.499999999992 -6.08683478396 +UniRef50_P38051 Menaquinone specific isochorismate synthase 2.36834065578 0.499999999999 -1.86834065578 +UniRef50_D4H9R3 YjeF domain protein 0.036879843053 0.5 0.463120156947 +UniRef50_UPI00035965D6 PREDICTED 1.49566800896 0.5 -0.995668008963 +UniRef50_A0A011PJV1 Dihydrofolate reductase 0.0834654143547 0.5 0.416534585645 +UniRef50_Q9RTK3 0.00232433502658 0.5 0.497675664973 +UniRef50_A1WST0 Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding 0.0145737562597 0.5 0.48542624374 +UniRef50_O33655 Lactate 2 monooxygenase 0.00864341227063 0.5 0.49135658773 +UniRef50_J3BE74 Metallo beta lactamase superfamily enzyme 2.65540215258 0.499999999999 -2.15540215258 +UniRef50_UPI0001745109 peptide ABC transporter permease 0.73051224997 0.5 -0.23051224997 +UniRef50_Q89AT8 NADH quinone oxidoreductase subunit J 0.309406829492 0.5 0.190593170508 +UniRef50_Q9RZK0 0.0302812308194 0.5 0.469718769181 +UniRef50_F4FQW3 Recombinational DNA repair protein RecT 2.76387100889 0.5 -2.26387100889 +UniRef50_Q8YIY0 Phosphoglycerate kinase 2.51180192768 0.500000000001 -2.01180192768 +UniRef50_UPI0004258808 hypothetical protein 0.089303531152 0.5 0.410696468848 +UniRef50_UPI000225F0D6 hypothetical protein 0.0045314322228 0.5 0.495468567777 +UniRef50_UPI000362EC3A hypothetical protein 1.88840386654 0.5 -1.38840386654 +UniRef50_Q17XQ8 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.0220826455541 0.5 0.477917354446 +UniRef50_Q9RSF5 Drug transport protein 0.00323670702658 0.5 0.496763292973 +UniRef50_UPI0003B73A04 AsnC family transcriptional regulator 1.83460729289 0.500000000002 -1.33460729289 +UniRef50_UPI00035D1A94 hypothetical protein 2.98159040665 0.500000000002 -2.48159040666 +UniRef50_Q6APZ3 Prolipoprotein diacylglyceryl transferase 0.866130357156 0.5 -0.366130357156 +UniRef50_R7N4H0 Pyridine nucleotide disulfide oxidoreductase 0.176718766445 0.5 0.323281233555 +UniRef50_A9WA88 Xanthine phosphoribosyltransferase 0.22865877138 0.5 0.27134122862 +UniRef50_B3E7C1 1.30172236089 0.5 -0.801722360892 +UniRef50_D8U7R0 0.427158613413 0.5 0.072841386587 +UniRef50_Q9ZJ75 Ribulose phosphate 3 epimerase 0.00358618422199 0.5 0.496413815778 +UniRef50_Q3J229 1.43425899002 0.5 -0.934258990024 +UniRef50_Q3J227 30.2985595297 0.499999999997 -29.7985595297 +UniRef50_UPI00038131B7 hypothetical protein 0.362877974369 0.5 0.137122025631 +UniRef50_UPI0001F85C49 biotin synthase like protein 0.284139446023 0.5 0.215860553977 +UniRef50_M4ZJP4 0.0419866385759 0.5 0.458013361424 +UniRef50_G7U4I0 Uroporphyrinogen III synthase 0.0387072259588 0.5 0.461292774041 +UniRef50_M1NMK8 0.087758566261 0.5 0.412241433739 +UniRef50_X0U0K9 Marine sediment metagenome DNA, contig 0.00169954167813 0.5 0.498300458322 +UniRef50_Q3JUG7 Xanthine uracil permease family protein 0.0463495035042 0.5 0.453650496496 +UniRef50_UPI0002627BB0 50S ribosomal protein L15, partial 0.148750402992 0.5 0.351249597008 +UniRef50_R9SMQ4 Phosphate ABC transporter permease protein PstA 0.330768883601 0.5 0.169231116399 +UniRef50_K0T1H0 1.71050975471 0.5 -1.21050975471 +UniRef50_K0WK29 0.0765417834574 0.5 0.423458216543 +UniRef50_A4WTM8 6.39410449592 0.500000000009 -5.89410449593 +UniRef50_A1BAY3 0.928561839224 0.5 -0.428561839224 +UniRef50_Q3IZ78 Mesaconyl CoA hydratase 1.79711242073 0.5 -1.29711242073 +UniRef50_P19366 ATP synthase subunit beta, chloroplastic 0.217748220272 0.5 0.282251779728 +UniRef50_P49189 4 trimethylaminobutyraldehyde dehydrogenase 0.369058814127 0.5 0.130941185873 +UniRef50_UPI0003627DD4 30S ribosomal protein S4 0.724347734754 0.5 -0.224347734754 +UniRef50_UPI000455E0E7 ribosomal protein S12 0.444344188312 0.5 0.0556558116879 +UniRef50_F2I9T6 Endoribonuclease L PSP 1.30247341463 0.5 -0.802473414626 +UniRef50_UPI000370459E hypothetical protein, partial 0.00580794559954 0.5 0.4941920544 +UniRef50_Q03SV2 Ribose 5 phosphate isomerase A 2.02959745456 0.5 -1.52959745456 +UniRef50_UPI0002EFA82A nucleoside triphosphate pyrophosphohydrolase 0.717844226142 0.5 -0.217844226142 +UniRef50_Q9Z670 Gluconate permease 0.555221760937 0.5 -0.0552217609367 +UniRef50_UPI00036A5335 CRISPR associated protein Csd1, partial 0.917763450119 0.5 -0.417763450119 +UniRef50_K0S333 1.44022973507 0.499999999999 -0.940229735069 +UniRef50_A3T0X3 0.448285561429 0.5 0.0517144385707 +UniRef50_Q21VW6 NADPH dependent 7 cyano 7 deazaguanine reductase 0.0172917046133 0.5 0.482708295386 +UniRef50_A7ZQ55 NAD kinase 1.24311321523 0.5 -0.743113215227 +UniRef50_A6LZN3 Hydrogenase accessory protein HypB 2.03817480336 0.5 -1.53817480336 +UniRef50_Q2FJN4 Alkyl hydroperoxide reductase subunit C 1.65061293504 0.5 -1.15061293504 +UniRef50_UPI0004658AD9 saccharopine dehydrogenase 0.0948110914385 0.5 0.405188908562 +UniRef50_UPI0003F63AFE GntR family transcriptional regulator 0.33417220236 0.5 0.16582779764 +UniRef50_V8FYN5 CoA activase 0.117123957115 0.500000000001 0.382876042885 +UniRef50_E3D490 0.0947953269355 0.5 0.405204673064 +UniRef50_Q2FH66 Indole 3 glycerol phosphate synthase 1.53775926281 0.5 -1.03775926282 +UniRef50_B7V4W8 0.303579601173 0.5 0.196420398827 +UniRef50_Q53135 Chemotaxis protein CheA 1.37080997369 0.5 -0.870809973692 +UniRef50_A5IVV5 Sortase family protein 2.26640997134 0.499999999998 -1.76640997134 +UniRef50_E9JFX9 Dimethyl sulfide monooxygenase 0.039434363658 0.5 0.460565636342 +UniRef50_C4K6C1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 5.75778368445 0.500000000008 -5.25778368446 +UniRef50_B4R8Q8 Peptidyl tRNA hydrolase 0.79201070616 0.5 -0.29201070616 +UniRef50_P29968 Putative dehydrogenase XoxF 2.49011640664 0.5 -1.99011640664 +UniRef50_U4V1U2 8.17545702053 0.499999999999 -7.67545702053 +UniRef50_Q74I62 Putative ABC transporter ATP binding protein LJ_1704 1.53903857164 0.5 -1.03903857164 +UniRef50_D4MDT9 0.025155368581 0.5 0.474844631419 +UniRef50_Q60177 Proteasome subunit alpha 4.17554765573 0.499999999999 -3.67554765572 +UniRef50_Q2FS70 30S ribosomal protein S7 3.39001382209 0.499999999999 -2.89001382208 +UniRef50_P44432 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.315496026396 0.5 0.184503973604 +UniRef50_P28274 CTP synthase 1 0.0237796579494 0.5 0.476220342051 +UniRef50_A6LZD7 Flavin reductase domain protein, FMN binding 0.0983660574447 0.5 0.401633942555 +UniRef50_W8W2G5 0.0921932914486 0.5 0.407806708551 +UniRef50_C6XI98 Fe S metabolism associated SufE 2.65190969021 0.5 -2.15190969021 +UniRef50_P33352 2.19499705403 0.499999999999 -1.69499705403 +UniRef50_P33353 1.72329552408 0.499999999999 -1.22329552408 +UniRef50_F8JL19 0.0048634990161 0.5 0.495136500984 +UniRef50_G7ZSB9 Nucleoside permease 1.71623778836 0.5 -1.21623778836 +UniRef50_UPI0003676E77 hypothetical protein 0.309058504259 0.5 0.190941495741 +UniRef50_B7LSZ0 Cytoplasmic trehalase 1.04828889043 0.5 -0.548288890433 +UniRef50_W1MRE5 General secretion pathway protein D 0.41304776209 0.5 0.08695223791 +UniRef50_Q1NCJ9 0.369070833561 0.5 0.130929166439 +UniRef50_O34481 ATP dependent RecD like DNA helicase 0.00666380648521 0.5 0.493336193515 +UniRef50_I1QUN8 12.9513229677 0.499999999991 -12.4513229676 +UniRef50_D6EJV1 Transcriptional regulatory protein 0.195133509371 0.5 0.304866490629 +UniRef50_Q8E7K5 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.464831776255 0.5 0.035168223745 +UniRef50_M4QZK0 Alpha beta hydrolase family protein 0.0199909190816 0.5 0.480009080919 +UniRef50_UPI000262F232 cytochrome c oxidase subunit I, partial 0.140463042147 0.5 0.359536957853 +UniRef50_P61429 Periplasmic [NiFe] hydrogenase small subunit 2 1.68179648483 0.5 -1.18179648483 +UniRef50_H7CVU9 FliB family protein 0.0695761990513 0.5 0.430423800948 +UniRef50_U5MR93 Sensor histidine kinase YvrG 0.207938649522 0.5 0.292061350478 +UniRef50_M9VFE8 Low molecular weight phosphotyrosine protein phosphatase 0.0174849941393 0.5 0.482515005861 +UniRef50_A3LER3 2.19240721097 0.5 -1.69240721097 +UniRef50_F1UR15 BNR Asp box repeat protein 0.0424022965049 0.5 0.457597703495 +UniRef50_Q5FQE8 Leucyl phenylalanyl tRNA protein transferase 0.167488457 0.5 0.332511543 +UniRef50_D9SN85 Glutathione peroxidase 0.182116746476 0.5 0.317883253524 +UniRef50_H2CHQ0 Magnesium protoporphyrin chelatase 0.053089098342 0.5 0.446910901658 +UniRef50_R6QPN1 MaoC domain containing protein 0.491492214572 0.5 0.00850778542808 +UniRef50_UPI000378EE65 hypothetical protein 3.51646645104 0.499999999996 -3.01646645104 +UniRef50_A0A023RUE3 0.0478712481691 0.5 0.45212875183 +UniRef50_Q3J1F8 0.103870686786 0.5 0.396129313214 +UniRef50_Q3J1F7 1.06677515947 0.499999999999 -0.566775159468 +UniRef50_Q3J1F6 1.14615514761 0.5 -0.646155147606 +UniRef50_U5T8A8 0.122651636964 0.5 0.377348363035 +UniRef50_K0HDE0 tRNA rRNA cytosine C5 methylase 0.0344111591995 0.5 0.4655888408 +UniRef50_A8AMK7 0.372851220118 0.5 0.127148779882 +UniRef50_B2TKI7 Serine type D Ala D Ala carboxypeptidase 0.0413891292151 0.5 0.458610870785 +UniRef50_UPI000474D5BE ABC transporter substrate binding protein 0.331022423222 0.5 0.168977576778 +UniRef50_P20966 PTS system fructose specific EIIBC component 0.141916285671 0.5 0.358083714329 +UniRef50_Q6AFY0 Glutamate 5 kinase 0.116131859056 0.5 0.383868140944 +UniRef50_W1DU15 0.686923259079 0.5 -0.186923259079 +UniRef50_Q9TM10 1,4 Dihydroxy 2 naphthoyl CoA synthase 0.00919242806368 0.499999999999 0.490807571937 +UniRef50_UPI0004704F45 hypothetical protein, partial 4.47543889068 0.500000000002 -3.97543889068 +UniRef50_Q4L3X4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.75733989615 0.500000000003 -2.25733989616 +UniRef50_W8RT27 Cation transport protein chaC 2.55869919626 0.5 -2.05869919626 +UniRef50_P9WPD4 Citrate synthase 1 0.33905496331 0.5 0.16094503669 +UniRef50_A9U864 Predicted protein 0.936782928236 0.5 -0.436782928236 +UniRef50_A3MR63 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.0380524941013 0.5 0.461947505899 +UniRef50_I0C5H5 2.99512446563 0.499999999997 -2.49512446563 +UniRef50_A7MHJ0 Multidrug resistance protein MdtC 2.4939945803 0.500000000001 -1.9939945803 +UniRef50_Q9ZKU4 Phosphate acetyltransferase 0.0237628841552 0.500000000001 0.476237115844 +UniRef50_A6M1S0 Glycoside hydrolase, clan GH D 0.0594268034398 0.5 0.44057319656 +UniRef50_Q6AA51 L fucose isomerase 0.02580252335 0.5 0.47419747665 +UniRef50_UPI000299F06B amino acid carrier protein 0.00414862502571 0.5 0.495851374974 +UniRef50_UPI0003FD6D14 preprotein translocase subunit SecY 0.00567668396543 0.5 0.494323316035 +UniRef50_Q3KE48 Macrolide export ATP binding permease protein MacB 2 0.242000653494 0.5 0.257999346506 +UniRef50_UPI00037DAE2C hypothetical protein 0.942799207823 0.5 -0.442799207823 +UniRef50_UPI00044207B4 PREDICTED 0.280032085759 0.5 0.219967914241 +UniRef50_UPI000427E2A8 MULTISPECIES 0.131893095075 0.5 0.368106904925 +UniRef50_D2J8Q0 2.77631323702 0.500000000002 -2.27631323702 +UniRef50_UPI00047CFA7B transcriptional regulatory protein LPC_0711 0.2279710096 0.5 0.2720289904 +UniRef50_D2J8Q4 0.94103152081 0.5 -0.44103152081 +UniRef50_A0A023X187 Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain 1.17383227948 0.5 -0.673832279477 +UniRef50_UPI00035F5A7F MULTISPECIES 1.42954957032 0.5 -0.929549570316 +UniRef50_Q97LP2 Putative gluconeogenesis factor 0.0641426956152 0.5 0.435857304385 +UniRef50_P25130 0.684661005892 0.5 -0.184661005892 +UniRef50_K7SFI0 MMPL family protein 0.0109395437185 0.5 0.489060456281 +UniRef50_UPI0003B3F8CA cysteine desulfurase 5.39678226374 0.499999999999 -4.89678226373 +UniRef50_UPI000455DBA8 alcohol oxidase 1.19012605841 0.5 -0.690126058409 +UniRef50_F2I8T3 PTS system mannose fructose sorbose family IID component 0.199400432906 0.5 0.300599567094 +UniRef50_E5QSU8 Transcriptional regulator, AraC family 2.64679883611 0.5 -2.14679883611 +UniRef50_A0A011QY39 3 isopropylmalate dehydrogenase 0.265282080959 0.5 0.234717919041 +UniRef50_A3V9P5 0.250414776999 0.5 0.249585223001 +UniRef50_UPI0003C140C5 PREDICTED 1.28982429025 0.5 -0.789824290246 +UniRef50_Q56200 UPF0045 protein in glkA 3region 1.17378950112 0.5 -0.673789501123 +UniRef50_P43340 2.18231262152 0.5 -1.68231262152 +UniRef50_Q03638 Glutamine dependent NAD synthetase 1.408232041 0.5 -0.908232041 +UniRef50_X1F3U5 Marine sediment metagenome DNA, contig 1.78350217891 0.500000000001 -1.28350217891 +UniRef50_UPI00035E72A3 hypothetical protein 0.486362443964 0.5 0.0136375560359 +UniRef50_Q1LT55 Threonylcarbamoyl AMP synthase 2.57355164851 0.500000000001 -2.07355164851 +UniRef50_X1SY05 Marine sediment metagenome DNA, contig 1.34253415254 0.5 -0.842534152543 +UniRef50_Q12EY5 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.620596890963 0.5 -0.120596890963 +UniRef50_I6T636 MutG 2.39794763623 0.5 -1.89794763623 +UniRef50_D7DI05 0.0522398638989 0.500000000001 0.4477601361 +UniRef50_S5YTV6 TRAP type C4 dicarboxylate transport system, periplasmic component 1.23863312487 0.5 -0.738633124867 +UniRef50_UPI0002EB61A9 hypothetical protein 0.0990841435514 0.5 0.400915856449 +UniRef50_J9YRQ7 ABC transporter ATP binding protein 0.154026798444 0.5 0.345973201556 +UniRef50_A8AVU5 Cell cycle protein GpsB 0.40736772588 0.5 0.0926322741199 +UniRef50_UPI0002887069 aldehyde dehydrogenase 1.81344264996 0.5 -1.31344264996 +UniRef50_B1XZ42 40 residue YVTN family beta propeller repeat protein 0.290778625308 0.5 0.209221374692 +UniRef50_F9Y8T0 0.158687583173 0.5 0.341312416827 +UniRef50_E4N2K8 2.32769666445 0.5 -1.82769666445 +UniRef50_K7WGH8 3.30288114816 0.500000000003 -2.80288114816 +UniRef50_UPI00041077BF hypothetical protein 2.00470223067 0.5 -1.50470223067 +UniRef50_I6R4V1 Putative outer membrane protein 0.164159270331 0.5 0.335840729669 +UniRef50_Q3SF48 DEAD DEAH box helicase 0.0152780181725 0.5 0.484721981827 +UniRef50_W6RFV5 1.06535851391 0.5 -0.565358513911 +UniRef50_D3PQJ8 Thioesterase superfamily protein 0.00271603697811 0.5 0.497283963022 +UniRef50_P39852 Putative tyrosine protein phosphatase CapC 2.12378724629 0.5 -1.62378724629 +UniRef50_Q1JBZ2 Xaa His dipeptidase 0.426737103934 0.5 0.0732628960665 +UniRef50_R5EHV3 1.20356787436 0.5 -0.703567874357 +UniRef50_T1ZCM0 Endonuclease, putative 1.19259778923 0.5 -0.692597789231 +UniRef50_J1RUT9 Dehydrogenase 7.09150577464 0.500000000001 -6.59150577464 +UniRef50_W6ELT6 Glutathionylspermidine synthetase 0.0382644322039 0.5 0.461735567796 +UniRef50_Q97K94 Quinolinate synthase A 0.602246867336 0.5 -0.102246867336 +UniRef50_P39438 Undecaprenyl diphosphatase 6.12862148603 0.499999999998 -5.62862148603 +UniRef50_R7LCT1 0.111498661273 0.5 0.388501338727 +UniRef50_O34546 2.07656210838 0.5 -1.57656210838 +UniRef50_D0W2S1 0.0412878848371 0.5 0.458712115163 +UniRef50_I3U2U9 Iron ABC superfamily ATP binding cassette transporter, ABC protein 0.745843108841 0.5 -0.245843108841 +UniRef50_Q5X449 0.00657094108965 0.500000000001 0.493429058909 +UniRef50_L1K8B7 2.13675467481 0.5 -1.63675467481 +UniRef50_A6LYL7 Methyl accepting chemotaxis sensory transducer 0.147817358039 0.500000000001 0.35218264196 +UniRef50_UPI000185085B tyrosyl tRNA synthetase 0.20034500412 0.5 0.29965499588 +UniRef50_P45767 Putative amino acid ABC transporter permease protein YhdX 0.696788204647 0.5 -0.196788204647 +UniRef50_UPI0003B66746 RNA polymerase sigma factor RpoD, partial 1.05008621192 0.499999999999 -0.55008621192 +UniRef50_Q5HNC9 ISSep1 like transposase 0.731200381592 0.5 -0.231200381592 +UniRef50_G8AR28 0.152283801911 0.5 0.347716198089 +UniRef50_Q2S9Q5 Shikimate kinase 0.820707400157 0.5 -0.320707400157 +UniRef50_W7QBC1 0.0464667297405 0.5 0.45353327026 +UniRef50_Q03Z27 Methionine import ATP binding protein MetN 0.441426919109 0.5 0.0585730808913 +UniRef50_UPI0004782D1F crotonyl CoA reductase 4.15817997371 0.499999999999 -3.65817997371 +UniRef50_Q6GF03 Alanine racemase 1 2.1830497528 0.5 -1.6830497528 +UniRef50_A8FHJ2 Triosephosphate isomerase 4.93795124316 0.5 -4.43795124316 +UniRef50_Q73GH4 NADH quinone oxidoreductase subunit I 0.627383430288 0.5 -0.127383430288 +UniRef50_A1JK30 Fatty acid oxidation complex subunit alpha 1.1824778814 0.5 -0.6824778814 +UniRef50_UPI00045D739F 0.144339059494 0.5 0.355660940506 +UniRef50_B9KWI6 ABC 2 type transporter 1.46602884272 0.5 -0.966028842717 +UniRef50_Q1GCN0 MltA 2.5390480014 0.500000000001 -2.03904800141 +UniRef50_O29777 Probable copper exporting P type ATPase A 0.257420978484 0.5 0.242579021516 +UniRef50_Q9RRB7 Probable manganese dependent inorganic pyrophosphatase 0.00382529931275 0.5 0.496174700687 +UniRef50_R9SLB3 3.32046249328 0.5 -2.82046249328 +UniRef50_B4RR70 Acyl CoA dehydrogenase, C terminal 1.17658687872 0.500000000001 -0.676586878719 +UniRef50_A3PQF0 Extracellular solute binding protein, family 3 1.66259240378 0.5 -1.16259240378 +UniRef50_D7GG00 Na+ H+ antiporter 0.0142091699361 0.5 0.485790830064 +UniRef50_Q6A7Y1 Glutamyl Q tRNA synthetase 0.00210529785996 0.5 0.49789470214 +UniRef50_A0YH35 0.180348680105 0.5 0.319651319895 +UniRef50_A0A023RSS6 rRNA methyltransferase 0.013283368972 0.5 0.486716631028 +UniRef50_N6UYS2 0.256115583861 0.5 0.243884416139 +UniRef50_UPI0003B3CC7C methyltransferase 0.154568919827 0.5 0.345431080173 +UniRef50_UPI000477CA46 alcohol dehydrogenase 0.0650660714528 0.5 0.434933928547 +UniRef50_A9B3R2 Lon protease 2 0.103756447963 0.5 0.396243552037 +UniRef50_J0ZPJ9 0.368643100183 0.5 0.131356899817 +UniRef50_UPI000473C272 hypothetical protein, partial 0.812326145792 0.5 -0.312326145792 +UniRef50_T8WTI4 Arylsulfatase 0.975946536827 0.5 -0.475946536827 +UniRef50_M5F699 29.9171283192 0.499999999978 -29.4171283192 +UniRef50_J7IM71 Drug resistance transporter, EmrB QacA subfamily 0.165709291128 0.5 0.334290708873 +UniRef50_Q7AJV9 Na+ H+ antiporter 0.0593840931266 0.5 0.440615906873 +UniRef50_A4IRH3 Trigger factor 1.42469599651 0.5 -0.924695996511 +UniRef50_Q8XCW6 Protein SprT 0.903438617492 0.5 -0.403438617492 +UniRef50_UPI0004656097 hypothetical protein 0.399432232547 0.5 0.100567767453 +UniRef50_B2TPE7 Cobyric acid synthase 0.0415067611121 0.5 0.458493238888 +UniRef50_A0A023RH98 Immunogenic protein 1.64380359429 0.5 -1.14380359429 +UniRef50_B9KM49 9.90731972116 0.5 -9.40731972116 +UniRef50_M9R6A5 Ribose 5 phosphate isomerase A 11.3333925018 0.5 -10.8333925018 +UniRef50_Q1CUH3 Tetraacyldisaccharide 4 kinase 0.0251999854663 0.5 0.474800014534 +UniRef50_M7WMK4 0.0274341533754 0.5 0.472565846624 +UniRef50_Q8CTN4 1.35569704852 0.5 -0.855697048522 +UniRef50_Q5HQC2 Aminotransferase, class I 2.8754571281 0.500000000001 -2.3754571281 +UniRef50_X1ED13 Marine sediment metagenome DNA, contig 0.707316709756 0.5 -0.207316709756 +UniRef50_UPI0003B41E95 beta hexosaminidase 0.360680461379 0.5 0.139319538621 +UniRef50_Q89FK3 Bll6696 protein 0.0323448921951 0.5 0.467655107805 +UniRef50_A9M2J7 Nicotinate nucleotide pyrophosphorylase 0.148121463727 0.5 0.351878536273 +UniRef50_W1I511 Uncultured bacterium extrachromosomal DNA RGI02237 0.0613395895136 0.5 0.438660410486 +UniRef50_G0HG32 Short chain dehydrogenase 0.0188550706504 0.5 0.48114492935 +UniRef50_Q4L8L0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.62327635027 0.5 -1.12327635027 +UniRef50_R4KHK5 ADP forming acetyl coenzyme A synthetase 5.04263139447 0.5 -4.54263139447 +UniRef50_T7WH30 Electron transfer flavoprotein beta subunit 2.35539459703 0.499999999998 -1.85539459703 +UniRef50_UPI00047D95CB hypothetical protein 0.985619187804 0.5 -0.485619187804 +UniRef50_A5UZH7 NADH quinone oxidoreductase subunit D 2 0.0168767854731 0.5 0.483123214527 +UniRef50_UPI0003627E6E hypothetical protein 0.297997170959 0.5 0.202002829041 +UniRef50_UPI000477A59D MFS transporter 0.132958758385 0.5 0.367041241615 +UniRef50_UPI000248D54F phosphofructokinase 0.879030132705 0.5 -0.379030132705 +UniRef50_UPI000379B3FC hypothetical protein 0.29367657517 0.5 0.20632342483 +UniRef50_G7M6V5 Drug resistance transporter, EmrB QacA subfamily 0.0758719918066 0.500000000001 0.424128008193 +UniRef50_UPI0002FCF501 hypothetical protein 2.13099839402 0.5 -1.63099839402 +UniRef50_C1D381 0.662491904721 0.5 -0.162491904721 +UniRef50_R4RP03 1.35961724108 0.5 -0.859617241079 +UniRef50_UPI0004721298 GTP pyrophosphokinase, partial 0.225911616629 0.5 0.274088383371 +UniRef50_UPI0004798C74 hypothetical protein, partial 1.13886444589 0.5 -0.63886444589 +UniRef50_UPI00017465EA acetylornithine aminotransferase 0.241892714963 0.5 0.258107285037 +UniRef50_I5AX29 ABC type multidrug transport system, ATPase and permease component 1.42284741476 0.5 -0.922847414761 +UniRef50_E0TQE3 1.79677545693 0.5 -1.29677545693 +UniRef50_R7SQ97 0.107969496609 0.5 0.392030503392 +UniRef50_W0YYF5 0.311424168039 0.5 0.188575831961 +UniRef50_Q18C09 Methionine import ATP binding protein MetN 0.111324679648 0.500000000001 0.388675320352 +UniRef50_UPI0003F12680 PREDICTED 0.906244501374 0.5 -0.406244501374 +UniRef50_B8FI62 Phosphopantetheine adenylyltransferase 1.15430016353 0.5 -0.654300163532 +UniRef50_P38527 Transcription termination factor Rho 2.12332162367 0.499999999999 -1.62332162367 +UniRef50_R6FSL2 0.0338831999592 0.5 0.466116800041 +UniRef50_UPI000344160C 21.0853385265 0.50000000001 -20.5853385265 +UniRef50_D2JFR4 1.07316386053 0.5 -0.573163860527 +UniRef50_Q6G5A9 Shikimate dehydrogenase 0.644722218435 0.5 -0.144722218435 +UniRef50_D2JFR8 2.32698446087 0.5 -1.82698446087 +UniRef50_G4Q931 0.188115155481 0.5 0.311884844519 +UniRef50_F2IXV2 GfdT protein 0.70918540412 0.5 -0.20918540412 +UniRef50_Q5HM63 Drug resistance transporter, EmrB QacA family 1.42203677144 0.499999999999 -0.922036771435 +UniRef50_UPI0003651980 hypothetical protein 0.232455313705 0.5 0.267544686295 +UniRef50_UPI00037DFBE2 hypothetical protein 5.19473110101 0.500000000001 -4.69473110101 +UniRef50_Q2G3T3 ATP dependent Clp protease proteolytic subunit 0.040925911203 0.5 0.459074088797 +UniRef50_T9PRX2 1.8516277669 0.5 -1.3516277669 +UniRef50_UPI00036A03C0 hypothetical protein 0.594069998032 0.5 -0.0940699980317 +UniRef50_C3MFX0 UDP N acetylglucosamine 1 carboxyvinyltransferase 2.8742518997 0.5 -2.3742518997 +UniRef50_R9SIP9 CoB CoM heterodisulfide reductase subunit B HdrB1 1.30447277226 0.5 -0.804472772256 +UniRef50_O26278 tRNA guanine transglycosylase 1.88441998447 0.500000000001 -1.38441998448 +UniRef50_S6QJ91 Aryldialkylphosphatase 0.652779952179 0.5 -0.152779952179 +UniRef50_UPI000225F8FA hemolysin type calcium binding region, partial 2.49862877435 0.5 -1.99862877435 +UniRef50_B8G821 Uroporphyrinogen decarboxylase 0.131066889991 0.5 0.368933110009 +UniRef50_X2X8I7 0.00154680657027 0.5 0.49845319343 +UniRef50_O32163 Zinc dependent sulfurtransferase SufU 6.29472477502 0.499999999996 -5.79472477502 +UniRef50_D1BE57 0.0107607514544 0.5 0.489239248546 +UniRef50_A5ULR8 Digeranylgeranylglyceryl phosphate synthase 5.1921951094 0.500000000001 -4.6921951094 +UniRef50_UPI00036E0F7E hypothetical protein 1.08047106886 0.5 -0.580471068863 +UniRef50_Q6A9W7 Octanoyltransferase 0.0920314857632 0.5 0.407968514237 +UniRef50_G0DV78 Periplasmic binding protein of proline glycine betaine transport system 0.0386896888728 0.5 0.461310311127 +UniRef50_UPI0003602E81 hypothetical protein 0.415513328776 0.5 0.0844866712239 +UniRef50_A5VKN4 tRNA ) methyltransferase 0.00142341733479 0.5 0.498576582665 +UniRef50_UPI000382652B hypothetical protein 0.528892613968 0.5 -0.028892613968 +UniRef50_F2A8G4 6 pyruvoyl tetrahydropterin synthase 0.115134218028 0.5 0.384865781972 +UniRef50_UPI0003F15D37 PREDICTED 0.2361539837 0.5 0.263846016299 +UniRef50_Q5X9T1 Exodeoxyribonuclease III 1.77985437926 0.5 -1.27985437926 +UniRef50_UPI000376C1CF hypothetical protein 0.191430352649 0.5 0.308569647351 +UniRef50_UPI000378C003 hypothetical protein 0.00343538859762 0.5 0.496564611402 +UniRef50_UPI00046E84D4 ketose bisphosphate aldolase 0.0662443938824 0.5 0.433755606118 +UniRef50_UPI0002F33BF1 hypothetical protein 0.474377548851 0.5 0.0256224511492 +UniRef50_P94377 Catalase X 0.00701618863797 0.5 0.492983811362 +UniRef50_A6LV05 Exonuclease, RNase T and DNA polymerase III 0.18274869923 0.5 0.31725130077 +UniRef50_O33787 4.73038321644 0.499999999999 -4.23038321644 +UniRef50_M1LPD5 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 0.386351322333 0.5 0.113648677667 +UniRef50_Q2FZ91 Cell division protein DivIB 5.91662569899 0.500000000001 -5.41662569899 +UniRef50_P58118 Protein translocase subunit SecY 0.949224358581 0.5 -0.449224358581 +UniRef50_UPI00045E6DF6 hypothetical protein 0.337666328178 0.5 0.162333671822 +UniRef50_Q3IUV4 1.13452479313 0.499999999999 -0.634524793129 +UniRef50_E8SGK9 Lysophospholipase Monoglyceride lipase putative 2.40581578065 0.499999999999 -1.90581578065 +UniRef50_UPI00036F909A hypothetical protein 0.264161742954 0.5 0.235838257046 +UniRef50_F2AHF5 Malate dehydrogenase 0.0365931027142 0.5 0.463406897286 +UniRef50_F7MMY8 Cobyric acid synthase 0.337854679069 0.5 0.162145320931 +UniRef50_A6M2F6 Binding protein dependent transport systems inner membrane component 0.191482755621 0.5 0.308517244379 +UniRef50_UPI00016C3B4E SsrA binding protein 0.0162875110977 0.5 0.483712488902 +UniRef50_UPI00036A82E7 hypothetical protein, partial 0.101144956918 0.5 0.398855043082 +UniRef50_S5KBE3 Amidohydrolase 1.31727361543 0.5 -0.817273615429 +UniRef50_UPI0003287F61 PREDICTED 9.03932843438 0.500000000005 -8.53932843439 +UniRef50_C6L8Z7 0.144829623262 0.5 0.355170376738 +UniRef50_A7MHL5 0.618900219338 0.5 -0.118900219338 +UniRef50_A0A038GLZ5 Peptide ABC transporter substrate binding protein 1.84171007545 0.499999999997 -1.34171007544 +UniRef50_L7WZ77 Sugar isomerase 1.05469186348 0.499999999999 -0.554691863476 +UniRef50_E2QQY4 Guanine deaminase 4.38708637678 0.500000000002 -3.88708637678 +UniRef50_E6U1U1 Cys Met metabolism pyridoxal phosphate dependent protein 0.0922431234372 0.5 0.407756876563 +UniRef50_D3E047 Tetrahydromethanopterin S methyltransferase subunit C 1.58468357958 0.5 -1.08468357958 +UniRef50_F3SP64 Techoic acid ABC transporter, permease family protein 1.24570225625 0.5 -0.745702256248 +UniRef50_A0B9A2 Adenylate kinase 0.455929286113 0.5 0.0440707138865 +UniRef50_UPI00036A2D06 hypothetical protein 0.0205264384529 0.500000000001 0.479473561546 +UniRef50_P20083 DNA topoisomerase 4 subunit B 0.285956181963 0.5 0.214043818037 +UniRef50_A6LRZ8 0.164115456549 0.5 0.335884543451 +UniRef50_U3TMR9 Replication protein 1.499665225 0.5 -0.999665225002 +UniRef50_H1QFU3 Putative oxygen independent coproporphyrinogen III oxidase 1.92747472881 0.500000000002 -1.42747472882 +UniRef50_G7ZPE9 LPXTG surface protein 3.11551161738 0.5 -2.61551161738 +UniRef50_Q6GGX9 UPF0403 protein SAR1441 4.43649218736 0.500000000002 -3.93649218736 +UniRef50_W0YTR9 14.2292564589 0.49999999999 -13.7292564589 +UniRef50_Q8RXU4 Probable low specificity L threonine aldolase 1 0.353598316028 0.5 0.146401683972 +UniRef50_UPI000377D666 hypothetical protein 0.227150932833 0.5 0.272849067167 +UniRef50_UPI0002FDDFF5 hypothetical protein 0.246988155623 0.5 0.253011844377 +UniRef50_Q07RP5 Ribosome binding ATPase YchF 0.519849975935 0.5 -0.0198499759353 +UniRef50_Q3K1I5 ATP dependent helicase deoxyribonuclease subunit B 0.658757172152 0.5 -0.158757172152 +UniRef50_B9E1R4 0.0946579824424 0.5 0.405342017557 +UniRef50_B0VKL3 23S rRNA C(5)) methyltransferase RlmD 0.00501840302661 0.5 0.494981596973 +UniRef50_S3NQR8 C4 dicarboxylate transport two component sensor histidine kinase 2.05465263555 0.5 -1.55465263555 +UniRef50_B9KEN0 Enolase 0.0219431775795 0.5 0.47805682242 +UniRef50_A5UMV8 Sugar transferase, WcaJ 2.64656725606 0.500000000002 -2.14656725606 +UniRef50_D3QC63 Multiple CBS domains containing cytosolic protein 2.28566465623 0.500000000002 -1.78566465623 +UniRef50_UPI00046A5C9E branched chain amino acid ABC transporter substrate binding protein 0.395470576971 0.5 0.104529423029 +UniRef50_K2EEA8 0.453528606517 0.5 0.0464713934829 +UniRef50_U5P8L5 0.854602538407 0.5 -0.354602538407 +UniRef50_S5CQE4 GGDEF domain protein 0.0402869058538 0.5 0.459713094146 +UniRef50_C5ZZ07 ABC transporter, periplasmic binding protein 0.00959603274545 0.5 0.490403967254 +UniRef50_UPI0001D2E14D trehalose phosphatase 0.44987717336 0.5 0.0501228266401 +UniRef50_E1XJQ2 2.60392076952 0.499999999998 -2.10392076952 +UniRef50_K6ZAZ0 0.641567212566 0.5 -0.141567212566 +UniRef50_UPI00046287B9 glucosamine fructose 6 phosphate aminotransferase 0.0680023213871 0.5 0.431997678613 +UniRef50_S4P3V2 UPF0047 protein C4A8.02c 0.0863251305453 0.5 0.413674869455 +UniRef50_UPI00021A5D5B PREDICTED 0.606602371598 0.5 -0.106602371598 +UniRef50_UPI0003B2F6F8 cytidine deaminase 0.119061812274 0.5 0.380938187726 +UniRef50_UPI000361B9B7 hypothetical protein 0.0133206418193 0.5 0.486679358181 +UniRef50_Q73UK5 5.9060221362 0.500000000001 -5.4060221362 +UniRef50_UPI0002E36D1B ketosteroid isomerase 0.0675050466108 0.5 0.432494953389 +UniRef50_X6L0W1 0.343348549085 0.5 0.156651450915 +UniRef50_Q04BY7 Energy coupling factor transporter ATP binding protein EcfA1 1.97919403965 0.500000000001 -1.47919403965 +UniRef50_Q03MR7 Protein GrpE 0.018693696879 0.5 0.481306303121 +UniRef50_Q1IW96 Probable transcriptional regulatory protein Dgeo_2194 0.00333902566622 0.5 0.496660974334 +UniRef50_A6LXG6 PTS system mannose fructose sorbose family IID component 0.0195406163559 0.5 0.480459383644 +UniRef50_B9KWM5 Short chain alcohol dehydrogenase 2.73058548363 0.500000000001 -2.23058548363 +UniRef50_A6LWF9 NLP P60 protein 0.153876766564 0.5 0.346123233436 +UniRef50_N0A5S9 GtrOC2 0.0131706964358 0.5 0.486829303564 +UniRef50_N7PIW9 4.30161849222 0.500000000003 -3.80161849223 +UniRef50_C1I079 Predicted protein 0.0620654186527 0.5 0.437934581347 +UniRef50_D8JMR4 HTH type transcriptional activator aaeR 0.0112085513846 0.5 0.488791448615 +UniRef50_UPI00035DBD0C hypothetical protein 0.193547071549 0.5 0.306452928451 +UniRef50_Z5XJ24 50S ribosomal protein L23 0.00582353712502 0.5 0.494176462875 +UniRef50_UPI00037F9208 hypothetical protein 0.871282855425 0.5 -0.371282855425 +UniRef50_C7RSG7 Large exoprotein involved in heme utilization or adhesion 0.740531131784 0.5 -0.240531131784 +UniRef50_UPI0003B5E1C5 GntR family transcriptional regulator 1.82241027728 0.5 -1.32241027728 +UniRef50_A5UNJ4 Adhesin like protein 1.39110588228 0.5 -0.891105882279 +UniRef50_F0KJQ4 0.0124264274475 0.5 0.487573572552 +UniRef50_E1KWK7 Metallo beta lactamase domain protein 1.23375590437 0.5 -0.733755904369 +UniRef50_UPI00047A5202 hypothetical protein 0.0497779331466 0.5 0.450222066853 +UniRef50_Q02419 Protein PhnA 1.32588565648 0.5 -0.825885656479 +UniRef50_U6A9U4 tRNA specific adenosine deaminase 1.12733775256 0.5 -0.627337752556 +UniRef50_B2N6M8 Molybdate metabolism regulator 1.21709949288 0.5 -0.71709949288 +UniRef50_UPI0004639C57 di tricarboxylate transporter 0.521162439591 0.5 -0.0211624395906 +UniRef50_UPI0003C16451 PREDICTED 0.289321447923 0.5 0.210678552077 +UniRef50_Q8XL57 ATP dependent 6 phosphofructokinase 2 0.259940303437 0.5 0.240059696563 +UniRef50_M4WU84 0.636851473371 0.5 -0.136851473371 +UniRef50_B8D9X0 Putative Holliday junction resolvase 0.741055779152 0.5 -0.241055779152 +UniRef50_A0A011Q708 Acetyl coenzyme A synthetase 0.855056789224 0.5 -0.355056789224 +UniRef50_Q8P2Z1 3.30329188379 0.5 -2.80329188379 +UniRef50_Q817Z6 Transcription elongation factor GreA 11.8543755238 0.500000000007 -11.3543755238 +UniRef50_P50736 1.71755140303 0.500000000002 -1.21755140303 +UniRef50_F2JYX7 Peptidase M75, Imelysin 3.87974649329 0.5 -3.37974649329 +UniRef50_Q1CBF6 Sec independent protein translocase protein TatB 1.63846696415 0.5 -1.13846696415 +UniRef50_O07046 FKBP type peptidyl prolyl cis trans isomerase SlyD 1.73797849668 0.5 -1.23797849668 +UniRef50_A6UZF9 Oxidoreductase, short chain dehydrogenase reductase family 0.0574826878436 0.5 0.442517312157 +UniRef50_Q57935 1.71469422776 0.5 -1.21469422776 +UniRef50_Q57936 1.29554461521 0.5 -0.795544615209 +UniRef50_B8CVY1 1,4 alpha glucan branching enzyme GlgB 0.183941585101 0.5 0.316058414899 +UniRef50_UPI0003C1A6D9 PREDICTED 0.052582909928 0.499999999999 0.447417090073 +UniRef50_W6LVB0 0.14844997155 0.5 0.35155002845 +UniRef50_B2AP02 Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3 0.682547712367 0.5 -0.182547712367 +UniRef50_UPI0002E1B7CA hypothetical protein 0.157312309026 0.5 0.342687690974 +UniRef50_UPI0002FA5E7B peptide ABC transporter permease 0.110530536048 0.5 0.389469463952 +UniRef50_P0C0F3 DNA polymerase III subunit alpha 0.371858793595 0.5 0.128141206405 +UniRef50_R1DWQ7 0.335022903333 0.5 0.164977096667 +UniRef50_B0S155 Phosphopantetheine adenylyltransferase 0.509073135339 0.5 -0.0090731353395 +UniRef50_P96719 0.12686696186 0.5 0.37313303814 +UniRef50_UPI0004673C65 thioredoxin 0.498325671851 0.5 0.00167432814898 +UniRef50_UPI00036804AF 30S ribosomal protein S17 0.0886908106878 0.5 0.411309189312 +UniRef50_UPI0004656BE4 DNA mismatch repair protein MutS 0.0135639119739 0.5 0.486436088026 +UniRef50_Q1LNF6 Uridylate kinase 0.00355374137633 0.5 0.496446258624 +UniRef50_UPI00037C0023 hypothetical protein 1.41319094963 0.5 -0.913190949633 +UniRef50_G0LV60 Integrase 2.26128482602 0.5 -1.76128482602 +UniRef50_UPI00035F36BD hypothetical protein 0.599356636278 0.5 -0.0993566362782 +UniRef50_M0P4U3 AzlC family protein 0.667478867101 0.5 -0.167478867101 +UniRef50_A0A023LDQ6 0.711304114578 0.5 -0.211304114578 +UniRef50_E2BB01 0.0155559518142 0.5 0.484444048186 +UniRef50_P00362 Glyceraldehyde 3 phosphate dehydrogenase 0.856845227164 0.5 -0.356845227164 +UniRef50_F9YYR4 0.0370504139678 0.5 0.462949586032 +UniRef50_UPI0003607034 hypothetical protein 0.337254243365 0.5 0.162745756635 +UniRef50_A5IT33 Glucose 6 phosphate 1 dehydrogenase 2.51456185506 0.5 -2.01456185506 +UniRef50_E3GES0 0.124764178466 0.499999999999 0.375235821534 +UniRef50_L2V487 0.304415219088 0.5 0.195584780912 +UniRef50_F5M5L4 LysR family transcriptional regulator 1.61653136399 0.5 -1.11653136399 +UniRef50_A5IJ44 Phosphopantetheine adenylyltransferase 1.28788757227 0.5 -0.787887572269 +UniRef50_G8NQU3 0.393136528445 0.5 0.106863471555 +UniRef50_A6M0K2 Glycoside hydrolase, family 3 domain protein 0.141254059002 0.5 0.358745940998 +UniRef50_Q8DUS0 2.85983063423 0.500000000001 -2.35983063423 +UniRef50_UPI000381094E hypothetical protein 0.643260111404 0.5 -0.143260111404 +UniRef50_S5YT45 Uracil xanthine permease 0.863988395207 0.5 -0.363988395207 +UniRef50_G7PJ01 1.43379927029 0.5 -0.933799270286 +UniRef50_K0K3W4 0.139108460363 0.5 0.360891539636 +UniRef50_C5B8V8 UDP 2,3 diacylglucosamine hydrolase 0.0472187488713 0.5 0.452781251129 +UniRef50_D6Y589 Periplasmic binding protein LacI transcriptional regulator 3.45240775544 0.499999999994 -2.95240775544 +UniRef50_Z2DT28 0.0228401152018 0.5 0.477159884798 +UniRef50_B2U084 Protein CsiD 4.96831614638 0.500000000002 -4.46831614638 +UniRef50_UPI0004791B4F autoinducer 2 import system permease LsrD 0.24798240375 0.5 0.25201759625 +UniRef50_F2MNJ9 PTS family mannose fructose sorbose porter component IID 15.8122205412 0.500000000005 -15.3122205412 +UniRef50_S9QQP6 Glycine oxidase ThiO 0.223078434199 0.5 0.276921565801 +UniRef50_Q47216 E. coli fhuB gene involved in transport of ferrichrome 0.950284230592 0.5 -0.450284230592 +UniRef50_G8LJW2 0.538864049666 0.5 -0.0388640496664 +UniRef50_A0A023KKD3 0.726720144076 0.5 -0.226720144076 +UniRef50_Q2KXF0 N carbamoyl D amino acid hydrolase 3.87584752857 0.500000000001 -3.37584752857 +UniRef50_Q3J1R1 TRAP T family sorbitol mannitol transporter, DctM subunit 1.44358402971 0.5 -0.943584029712 +UniRef50_Q892B0 Hydroxyacylglutathione hydrolase 0.0602854305634 0.5 0.439714569436 +UniRef50_U1LA38 0.491976002884 0.5 0.00802399711614 +UniRef50_UPI00046894CE hypothetical protein 1.64563001166 0.5 -1.14563001166 +UniRef50_UPI00037DFDE1 hypothetical protein 0.195362171641 0.5 0.304637828359 +UniRef50_B7ITF9 NADPH dehydrogenase 0.0879362413224 0.5 0.412063758678 +UniRef50_I0E927 0.035054336361 0.5 0.464945663639 +UniRef50_U9RLL1 Maltose mannitol ABC transporter substrate binding protein 0.663788513549 0.5 -0.163788513549 +UniRef50_UPI0003728BB6 hypothetical protein 0.916743303685 0.5 -0.416743303685 +UniRef50_P77256 2.15867481752 0.5 -1.65867481752 +UniRef50_A0A024KCD9 1.35440832608 0.500000000001 -0.854408326083 +UniRef50_W5XBZ3 Chromate transporter, chromate ion transporter family 0.0567470492702 0.5 0.44325295073 +UniRef50_UPI00047AFC40 hypothetical protein 1.69923362618 0.499999999999 -1.19923362618 +UniRef50_B3EDX3 Imidazoleglycerol phosphate dehydratase 1.58973860492 0.5 -1.08973860492 +UniRef50_N5CGV2 Transcriptional regulator 1.98461954333 0.5 -1.48461954333 +UniRef50_W7X8F4 4.74011432024 0.499999999998 -4.24011432024 +UniRef50_C0D0V3 1.21712831124 0.5 -0.717128311235 +UniRef50_UPI000347DE1F hypothetical protein 0.276449421907 0.5 0.223550578093 +UniRef50_G7M5H1 0.43333140938 0.5 0.0666685906201 +UniRef50_W5XD42 Dihydroorotase 0.241630953265 0.5 0.258369046735 +UniRef50_Q3IV21 N6 adenine specific DNA methyltransferase, N12 class 1.635070785 0.5 -1.135070785 +UniRef50_Q39ZC5 NADH quinone oxidoreductase subunit A 1 0.520605951386 0.5 -0.0206059513861 +UniRef50_G8UZP9 1.66439471804 0.5 -1.16439471804 +UniRef50_A0RBY2 1.7055954339 0.5 -1.2055954339 +UniRef50_UPI00036FBBFE hypothetical protein 3.1906812687 0.499999999999 -2.6906812687 +UniRef50_S6APH0 Peptidase M48 family protein 0.510631322814 0.5 -0.0106313228141 +UniRef50_Q87VB5 Potassium efflux system protein KefA, putative 1.74350145798 0.5 -1.24350145798 +UniRef50_Q2J3C8 OmpA MotB 0.819735094765 0.5 -0.319735094765 +UniRef50_Q9HK17 Carbamoyl phosphate synthase large chain 0.462950852835 0.5 0.0370491471654 +UniRef50_P0AB87 L fuculose phosphate aldolase 3.47415016328 0.499999999999 -2.97415016328 +UniRef50_T1W827 2.05187922146 0.499999999998 -1.55187922146 +UniRef50_H6LQV6 2.7493123109 0.5 -2.2493123109 +UniRef50_Q9HZP7 Electron transfer flavoprotein subunit alpha 0.104482416606 0.5 0.395517583394 +UniRef50_UPI0004775C52 hypothetical protein 1.72197215719 0.5 -1.22197215719 +UniRef50_A6W0A1 Inorganic pyrophosphatase 0.0203625307617 0.5 0.479637469238 +UniRef50_F0A853 PilS cassette 0.229505212789 0.5 0.270494787211 +UniRef50_F0RP81 Cation diffusion facilitator family transporter 2.14348843626 0.5 -1.64348843626 +UniRef50_Q9JZN9 Probable TonB dependent receptor NMB0964 0.0112494728375 0.5 0.488750527162 +UniRef50_A9KTR8 Tryptophan synthase alpha chain 1.88806766026 0.500000000001 -1.38806766026 +UniRef50_D3E165 1.47210003953 0.499999999999 -0.972100039525 +UniRef50_W5XBF7 Peptidase like protein 0.941874464084 0.5 -0.441874464084 +UniRef50_UPI0003B77CF1 hypothetical protein, partial 0.110889874383 0.5 0.389110125617 +UniRef50_UPI0002E07778 hypothetical protein 6.93397977444 0.499999999998 -6.43397977444 +UniRef50_UPI0002BA99C0 hypothetical protein, partial 0.148551358286 0.5 0.351448641714 +UniRef50_G7M4N9 Transcriptional antiterminator, BglG 0.107783969829 0.5 0.392216030171 +UniRef50_H2CA16 CRISPR associated helicase, Cas3 family 0.665496187415 0.5 -0.165496187415 +UniRef50_F2IZL0 0.450105194685 0.5 0.0498948053148 +UniRef50_Q9RZ59 0.00115172746395 0.5 0.498848272536 +UniRef50_Q9RZ58 0.00032106561769 0.5 0.499678934382 +UniRef50_A6LPF3 Integral membrane sensor signal transduction histidine kinase 0.0450599272373 0.499999999999 0.454940072763 +UniRef50_S6A3I5 Hemolysin 0.0830663417446 0.5 0.416933658255 +UniRef50_D0CXH4 Amino acid regulated cytosolic protein 0.316744757654 0.5 0.183255242346 +UniRef50_S3YVB6 Electron transfer flavoprotein ubiquinone oxidoreductase 0.240379103856 0.5 0.259620896144 +UniRef50_E8SIG3 O methyltransferase family protein 2.40162193444 0.5 -1.90162193444 +UniRef50_E8YMA7 Xanthine dehydrogenase, small subunit 0.751675148177 0.5 -0.251675148177 +UniRef50_UPI0003647621 hypothetical protein 1.58731259213 0.499999999999 -1.08731259213 +UniRef50_A0A023RWB5 Metal binding protein 0.0122653563489 0.5 0.487734643651 +UniRef50_UPI000319D40D hypothetical protein 0.373580059322 0.5 0.126419940678 +UniRef50_P42911 N acetylgalactosamine permease IID component 0.726313897678 0.5 -0.226313897678 +UniRef50_G8LUB7 0.0297120148103 0.500000000001 0.470287985189 +UniRef50_UPI00037F105A hypothetical protein 0.261077313884 0.5 0.238922686116 +UniRef50_F7ZMZ2 LacI family transcription regulator 0.465527700518 0.5 0.0344722994821 +UniRef50_P25269 Tryptophan synthase beta chain 2, chloroplastic 0.279582974042 0.5 0.220417025958 +UniRef50_S9V0M4 0.0900753194936 0.5 0.409924680506 +UniRef50_K7EAU2 0.242729691791 0.5 0.257270308209 +UniRef50_UPI0003B55347 prolipoprotein diacylglyceryl transferase 1.01959696833 0.5 -0.519596968327 +UniRef50_B0K282 tRNA dihydrouridine synthase 0.185696229385 0.5 0.314303770615 +UniRef50_Q1IZ39 Maltodextrin phosphorylase 0.00111829625068 0.5 0.498881703749 +UniRef50_A0A023S035 Tail fiber protein 0.0194208782604 0.5 0.48057912174 +UniRef50_A7MJM9 DNA gyrase inhibitor 0.184764374712 0.5 0.315235625288 +UniRef50_UPI00036379E0 hypothetical protein 0.378448006934 0.5 0.121551993066 +UniRef50_V5T0I0 0.621073418388 0.5 -0.121073418388 +UniRef50_P44842 IMPACT family member HI_0722 0.601794034593 0.5 -0.101794034593 +UniRef50_G8B031 73.7560172211 0.500000000033 -73.2560172211 +UniRef50_A6QGY4 Extracellular matrix binding protein EbhA 2.02695521078 0.500000000001 -1.52695521078 +UniRef50_A9H0U5 Enoyl [acyl carrier protein] reductase [NADH] 0.434109502912 0.5 0.065890497088 +UniRef50_UPI0004764CEE transcription termination factor Rho, partial 1.00254589974 0.5 -0.502545899738 +UniRef50_UPI00047511DF peptide ABC transporter permease 1.71259617095 0.499999999999 -1.21259617095 +UniRef50_Q7UI51 2 isopropylmalate synthase 9.41641322711e-05 0.5 0.499905835868 +UniRef50_UPI0003B5C125 acetyltransferase 0.198421394194 0.5 0.301578605806 +UniRef50_F5ZCF3 1.15030353589 0.5 -0.650303535886 +UniRef50_UPI0003645D29 hypothetical protein 0.0570087871956 0.5 0.442991212804 +UniRef50_O28912 Phosphate import ATP binding protein PstB 0.00198308207286 0.5 0.498016917927 +UniRef50_P29363 Threonine synthase 1.55798285806 0.5 -1.05798285806 +UniRef50_C6ST49 3.37735553051 0.500000000001 -2.87735553051 +UniRef50_UPI00037764D1 hypothetical protein 0.0203417879266 0.5 0.479658212073 +UniRef50_A0PY95 Alanine racemase 0.343147928996 0.5 0.156852071004 +UniRef50_L0DZY5 Sulfur acceptor protein SufE for iron sulfur cluster assembly 1.81541509643 0.5 -1.31541509643 +UniRef50_B9DJF9 Phage integrase 1.64292798522 0.5 -1.14292798522 +UniRef50_B2ICL0 Imidazole glycerol phosphate synthase subunit HisF 0.00507626892975 0.5 0.49492373107 +UniRef50_A4X095 Superfamily II helicase and inactivated derivatives like protein 2.02996827379 0.500000000001 -1.52996827379 +UniRef50_B2TJ36 Mg chelatase family protein 0.202948967057 0.5 0.297051032943 +UniRef50_D5UED6 0.150114260849 0.5 0.349885739151 +UniRef50_G4LNF0 Aldehyde dehydrogenase 1.27093151494 0.5 -0.770931514938 +UniRef50_D5ARZ1 Electron transport complex subunit RnfC 1.48547944374 0.5 -0.985479443736 +UniRef50_UPI0004720CF2 peptide ABC transporter substrate binding protein 1.63692126299 0.5 -1.13692126299 +UniRef50_A6M1H1 0.113621445845 0.5 0.386378554155 +UniRef50_A6M1H0 0.121381216847 0.5 0.378618783153 +UniRef50_UPI000383B0B4 PREDICTED 0.032980536641 0.5 0.467019463359 +UniRef50_Q54VM1 0.184515250934 0.5 0.315484749066 +UniRef50_UPI0003901246 hypothetical protein 0.360056124468 0.5 0.139943875532 +UniRef50_E6NBZ7 Proline permease 0.00928365236717 0.5 0.490716347633 +UniRef50_UPI000456035A hypothetical protein PFL1_03912 0.037034341827 0.5 0.462965658173 +UniRef50_Q2YXC0 FPRL1 inhibitory protein 5.60492770877 0.499999999999 -5.10492770877 +UniRef50_UPI0001D2F4B5 histidine kinase 0.655110889391 0.5 -0.155110889391 +UniRef50_Q03UC7 50S ribosomal protein L9 2.83919228939 0.5 -2.33919228939 +UniRef50_K7RW71 TadB domain containing protein 0.00936142435788 0.5 0.490638575642 +UniRef50_UPI0004002975 hypothetical protein 2.06434848953 0.5 -1.56434848953 +UniRef50_B3QQR6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 5.22702797493 0.5 -4.72702797493 +UniRef50_I0ESN2 Outer membrane protein 33 0.0769548983727 0.499999999999 0.423045101628 +UniRef50_Q3J228 Putative endonuclease 2.44877893287 0.5 -1.94877893287 +UniRef50_G8PN37 sn glycerol 3 phosphate binding periplasmic protein UgpB 1.27549735931 0.499999999998 -0.775497359306 +UniRef50_UPI00037ED898 hypothetical protein 0.342787836159 0.5 0.157212163841 +UniRef50_UPI0003B58F6D biotin synthase 0.358479544412 0.5 0.141520455588 +UniRef50_O27651 Conserved protein 5.61825874353 0.499999999999 -5.11825874353 +UniRef50_U3SS39 0.651471700574 0.5 -0.151471700574 +UniRef50_Q60182 Glutamine synthetase 2.5551651858 0.499999999999 -2.05516518579 +UniRef50_A3PHJ7 Transcriptional regulator, AsnC family 1.39324953311 0.5 -0.893249533105 +UniRef50_UPI000475DE05 hypothetical protein 0.225909730894 0.5 0.274090269106 +UniRef50_P76419 2.36594627463 0.5 -1.86594627463 +UniRef50_K2JKB1 4.25591929952 0.500000000002 -3.75591929952 +UniRef50_Q2CHF8 Probable replication protein C 1.68048566529 0.500000000001 -1.18048566529 +UniRef50_O28664 Proline tRNA ligase 2.51953678019 0.499999999999 -2.01953678018 +UniRef50_UPI00035071FD PREDICTED 0.993344908052 0.5 -0.493344908052 +UniRef50_UPI0004754290 UDP glucose 6 dehydrogenase 0.236358072462 0.5 0.263641927538 +UniRef50_UPI0003B57BB8 membrane protein 0.370528159319 0.5 0.129471840681 +UniRef50_UPI00047CCE00 hypothetical protein 2.78610277862 0.5 -2.28610277862 +UniRef50_Q8FBC3 Glycerol kinase 0.224495766029 0.5 0.275504233971 +UniRef50_UPI000381A4A2 hypothetical protein 0.699171005041 0.5 -0.199171005041 +UniRef50_UPI0003606567 hypothetical protein, partial 0.235377402325 0.5 0.264622597675 +UniRef50_P50601 Protein TolB 0.402105881162 0.5 0.0978941188381 +UniRef50_V9VVJ4 2.27101051284 0.5 -1.77101051284 +UniRef50_Q7VJY3 Chaperone protein ClpB 0.00702501996575 0.5 0.492974980034 +UniRef50_O04904 Dihydroorotase, mitochondrial 0.699384684253 0.5 -0.199384684253 +UniRef50_C9XK28 L lactate dehydrogenase 0.236149651181 0.5 0.263850348819 +UniRef50_Q88V07 DNA polymerase IV 0.821977413733 0.5 -0.321977413733 +UniRef50_UPI000371CF62 hypothetical protein, partial 9.8439619588 0.500000000003 -9.34396195881 +UniRef50_UPI0003610B2B hypothetical protein 0.407331011952 0.5 0.0926689880481 +UniRef50_I6Q203 Transposase 0.753245480615 0.5 -0.253245480615 +UniRef50_UPI0003D737B1 PREDICTED 0.121682219984 0.5 0.378317780017 +UniRef50_K0RGV2 0.0189518808052 0.499999999999 0.481048119195 +UniRef50_O32254 1.37035809417 0.5 -0.87035809417 +UniRef50_C6S5N2 Putrescine transport system permease protein 0.0267641242225 0.5 0.473235875778 +UniRef50_A0A020D651 1.89786707979 0.5 -1.39786707979 +UniRef50_A5D5I2 DNA directed RNA polymerase subunit beta 1.59074349497 0.5 -1.09074349497 +UniRef50_B4F1A3 Agmatinase 6.05471016529 0.499999999999 -5.55471016529 +UniRef50_UPI0003B405D9 thioredoxin 0.569107931718 0.5 -0.0691079317185 +UniRef50_A6LX09 Transcriptional antiterminator, BglG 0.263304365367 0.5 0.236695634633 +UniRef50_A3LGV5 0.344783057359 0.5 0.155216942641 +UniRef50_UPI0003733DDF hypothetical protein 2.25130097304 0.5 -1.75130097304 +UniRef50_Q9FCA2 Peptide deformylase 2 0.277060015525 0.5 0.222939984475 +UniRef50_Q2YZB2 ATP phosphoribosyltransferase regulatory subunit 22.7667201522 0.499999999998 -22.2667201522 +UniRef50_B8DEF0 0.0554577874989 0.5 0.444542212501 +UniRef50_S5CRU7 SAM dependent methyltransferase 0.063811962557 0.5 0.436188037443 +UniRef50_P22805 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.642836457997 0.5 -0.142836457997 +UniRef50_UPI00047CAE83 hypothetical protein 0.162427327757 0.5 0.337572672243 +UniRef50_UPI000350E4F1 0.353949580823 0.5 0.146050419177 +UniRef50_I0C1B5 Choloylglycine hydrolase 6.83872646341 0.500000000007 -6.33872646342 +UniRef50_Q167Y1 Type II IV secretion system protein, TadC subfamily, putative 2.47492717207 0.5 -1.97492717207 +UniRef50_A3CPS1 Two component response transcriptional regulator , putative 10.2483215772 0.500000000003 -9.74832157721 +UniRef50_UPI0003D2A318 homoserine dehydrogenase 0.813975176918 0.5 -0.313975176918 +UniRef50_V5NWP2 0.372783721955 0.5 0.127216278045 +UniRef50_UPI0002886C73 serine hydroxymethyltransferase 0.672049378789 0.5 -0.172049378789 +UniRef50_J4KJN9 0.00615369564825 0.5 0.493846304352 +UniRef50_W8KL45 0.347205749384 0.5 0.152794250616 +UniRef50_D9QPC0 Alpha beta hydrolase fold protein 1.24623043273 0.5 -0.746230432726 +UniRef50_A8LNH2 UPF0246 protein Dshi_3333 2.50768346449 0.499999999997 -2.00768346448 +UniRef50_A3PP80 Diguanylate cyclase 2.53419139342 0.5 -2.03419139342 +UniRef50_W4KSI3 PcsB protein 0.8520841758 0.5 -0.3520841758 +UniRef50_UPI00016A907F benzoate transport protein 0.373154600464 0.5 0.126845399536 +UniRef50_G2KZ81 1.84961557198 0.5 -1.34961557198 +UniRef50_W7Y3S8 1.13664047978 0.5 -0.636640479779 +UniRef50_UPI000300A99C hypothetical protein 0.220797348466 0.5 0.279202651534 +UniRef50_UPI000379A26D hypothetical protein 0.275490965836 0.5 0.224509034164 +UniRef50_G0AE82 Aldo keto reductase 0.0121013126697 0.5 0.48789868733 +UniRef50_UPI00037FCE78 hypothetical protein 1.26513656989 0.5 -0.765136569886 +UniRef50_A6LRX7 Baseplate J family protein 0.236727369737 0.5 0.263272630263 +UniRef50_P15031 Fe dicitrate transport ATP binding protein FecE 0.479107604 0.5 0.0208923959999 +UniRef50_E1HL74 Transcriptional regulatory protein, C terminal domain protein 1.98192687855 0.500000000002 -1.48192687855 +UniRef50_D4GIS9 RbsA 4.27023340419 0.499999999999 -3.77023340419 +UniRef50_UPI0003B790C8 FAD dependent oxidoreductase 0.877310181295 0.5 -0.377310181295 +UniRef50_U5PBB0 Glycine betaine ABC transporter ATP binding protein 6.21020111863 0.500000000001 -5.71020111863 +UniRef50_U5MMF7 Penicillin amidase 0.173647507898 0.5 0.326352492102 +UniRef50_W0I1A1 Aspartate ammonia lyase 0.0522657508518 0.5 0.447734249148 +UniRef50_UPI000469D137 hypothetical protein 5.16049200836 0.5 -4.66049200836 +UniRef50_UPI0002D7F2D9 hypothetical protein 1.05025166644 0.5 -0.550251666439 +UniRef50_A6LPZ8 0.147732749304 0.5 0.352267250695 +UniRef50_P0AEW5 3,5 cyclic adenosine monophosphate phosphodiesterase CpdA 1.81478316409 0.5 -1.31478316409 +UniRef50_A1B9K8 Zinc import ATP binding protein ZnuC 1.14966436895 0.499999999999 -0.649664368947 +UniRef50_A6LYB4 0.0644836698705 0.5 0.43551633013 +UniRef50_S4YWC9 Iron ABC transporter permease 0.0238331506323 0.5 0.476166849368 +UniRef50_Q4L6B1 TelA like protein SH1505 2.05905931483 0.500000000001 -1.55905931483 +UniRef50_UPI0003783264 hypothetical protein, partial 0.324630591443 0.5 0.175369408557 +UniRef50_M3GAZ5 HlyD family secretion protein 4.67819848352 0.499999999997 -4.17819848352 +UniRef50_W4HIJ8 0.42961762679 0.5 0.0703823732102 +UniRef50_D2ARI1 tRNA rRNA methyltransferase 0.0432465861057 0.5 0.456753413894 +UniRef50_UPI0003B31E13 hydroxyethylthiazole kinase, partial 0.30039580383 0.5 0.19960419617 +UniRef50_Q609Q1 Sulfate thiosulfate import ATP binding protein CysA 1.30528286111 0.5 -0.805282861109 +UniRef50_R4QLQ3 0.0115946487965 0.5 0.488405351203 +UniRef50_Q51548 L ornithine 5 monooxygenase 0.600599936283 0.5 -0.100599936283 +UniRef50_Q12UL5 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.92081249654 0.5 -1.42081249654 +UniRef50_P0AER4 Glutamate aspartate transport system permease protein GltJ 0.872614454343 0.5 -0.372614454343 +UniRef50_P39630 dTDP glucose 4,6 dehydratase 0.397537193254 0.5 0.102462806746 +UniRef50_Q9HZR2 0.709710636098 0.5 -0.209710636098 +UniRef50_T1AU58 Acyl CoA dehydrogenase domain protein 0.175033333953 0.5 0.324966666047 +UniRef50_J8RY92 0.507689949227 0.5 -0.00768994922741 +UniRef50_UPI0003AD3D4A hypothetical protein 0.0139510494388 0.5 0.486048950561 +UniRef50_I4Y2X2 TonB dependent outermembrane receptor 0.072279297173 0.5 0.427720702827 +UniRef50_UPI0003B34776 LysR family transcriptional regulator 0.321190798541 0.5 0.178809201459 +UniRef50_Q9RRV3 0.0112286784508 0.5 0.488771321549 +UniRef50_W5XB81 DNA directed RNA polymerase subunit beta 1.40116167014 0.5 -0.901161670138 +UniRef50_G5PWF6 L xylulose 5 phosphate 3 epimerase 1.426558422 0.5 -0.926558422002 +UniRef50_A8F740 Periplasmic binding protein LacI transcriptional regulator 0.111874967035 0.5 0.388125032965 +UniRef50_UPI00046961AC transcriptional regulator 0.124324546904 0.5 0.375675453096 +UniRef50_UPI0003A13922 ABC transporter 2.96459684678 0.500000000002 -2.46459684679 +UniRef50_UPI00042B18AB Proline iminopeptidase isoform 3 0.376621378696 0.5 0.123378621304 +UniRef50_UPI00046F35A8 hypothetical protein, partial 0.422813324503 0.5 0.0771866754971 +UniRef50_X1RXQ4 Marine sediment metagenome DNA, contig 2.76735094527 0.5 -2.26735094527 +UniRef50_A8LHX0 0.83450685484 0.5 -0.33450685484 +UniRef50_C1N038 Predicted protein 1.62025350954 0.5 -1.12025350954 +UniRef50_Q5HLE0 Polyphosphate kinase 1.60656580863 0.5 -1.10656580863 +UniRef50_UPI0003B428E6 branched chain amino acid ABC transporter permease 0.137760783733 0.5 0.362239216267 +UniRef50_F0KJN4 0.0243171121817 0.5 0.475682887818 +UniRef50_G7U3Y8 0.0492064738807 0.5 0.450793526119 +UniRef50_B9QYQ7 0.540996707041 0.5 -0.0409967070413 +UniRef50_A0A023RT23 LysR family transcriptional regulator 0.0129942319155 0.5 0.487005768084 +UniRef50_P16689 Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase 4.3126906831 0.499999999998 -3.81269068309 +UniRef50_C2SK84 Transposase for insertion sequence element IS257 in transposon Tn4003 1.64513968613 0.5 -1.14513968613 +UniRef50_P32703 1.40267743895 0.5 -0.90267743895 +UniRef50_P32704 0.992555810096 0.5 -0.492555810096 +UniRef50_B1ME21 Protein NrdI 0.16676973528 0.5 0.33323026472 +UniRef50_P08189 Protein FimF 2.22792437454 0.499999999998 -1.72792437454 +UniRef50_UPI0003621B16 hypothetical protein 0.422538851187 0.5 0.0774611488127 +UniRef50_UPI0003AA87E8 hypothetical protein 0.532395027543 0.5 -0.0323950275431 +UniRef50_Q2LUP9 Bifunctional protein FolD 1.14503527597 0.5 -0.645035275968 +UniRef50_E6JRH7 11.7101672148 0.499999999992 -11.2101672148 +UniRef50_UPI00035EC48D metallophosphoesterase 0.255877363296 0.5 0.244122636704 +UniRef50_K2CFL6 0.111955753894 0.5 0.388044246106 +UniRef50_UPI00041B2B13 ATP dependent DNA helicase RuvA 0.0675217109959 0.5 0.432478289004 +UniRef50_F0L985 1.95223972596 0.5 -1.45223972596 +UniRef50_UPI0003686526 hypothetical protein 0.665507215798 0.5 -0.165507215798 +UniRef50_A6LY24 Amino acid permease associated region 0.223377473889 0.5 0.276622526111 +UniRef50_D0L5P3 0.0125483115463 0.5 0.487451688454 +UniRef50_UPI000476F8E5 hypothetical protein 0.396160992042 0.5 0.103839007958 +UniRef50_UPI0004421CDD PREDICTED 1.51342154369 0.5 -1.01342154369 +UniRef50_F0P387 Signal peptidase I 2.63574764714 0.5 -2.13574764714 +UniRef50_Q6L2D8 Pyridoxal biosynthesis lyase PdxS 0.758785052281 0.5 -0.258785052281 +UniRef50_P37649 Protein YhjK 3.85641451661 0.5 -3.35641451661 +UniRef50_G7U7J9 Haloacid dehalogenase like hydrolase 0.109349947786 0.5 0.390650052214 +UniRef50_UPI000390127B Transcriptional regulatory protein LiaR 0.0394297479184 0.5 0.460570252081 +UniRef50_K1SRL1 Adhesin like protein 0.728589038072 0.5 -0.228589038072 +UniRef50_UPI00047A852C hypothetical protein 1.29287979393 0.5 -0.792879793926 +UniRef50_A6LY09 RNA polymerase, sigma 24 subunit, ECF subfamily 0.801915489418 0.5 -0.301915489418 +UniRef50_A6LTK4 0.215653452088 0.5 0.284346547912 +UniRef50_A7HN65 Glucose 1 phosphate adenylyltransferase 0.267915403469 0.5 0.232084596531 +UniRef50_UPI000377BA4D hypothetical protein 1.76801816748 0.5 -1.26801816748 +UniRef50_UPI0003A503E2 hypothetical protein 0.772915937459 0.5 -0.272915937459 +UniRef50_A3PP31 1.04452318457 0.5 -0.544523184573 +UniRef50_X2XBL9 0.246711936263 0.5 0.253288063737 +UniRef50_UPI0004759CFA L iditol 2 dehydrogenase 0.104738941204 0.5 0.395261058797 +UniRef50_Q1GD82 3.05998829579 0.499999999998 -2.55998829579 +UniRef50_Q67KH9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.02687347607 0.5 -0.526873476071 +UniRef50_O26346 Histidine tRNA ligase 0.706093730348 0.5 -0.206093730348 +UniRef50_U3SYS1 Gamma aminobutyrate permease 0.0314749458061 0.5 0.468525054194 +UniRef50_Q8DYM7 Protein translocase subunit SecA 2 0.0364497258934 0.5 0.463550274107 +UniRef50_Q87C91 Phosphate binding protein PstS 1.01218438955 0.5 -0.512184389549 +UniRef50_R6P001 0.35605274366 0.5 0.14394725634 +UniRef50_UPI000361C657 hypothetical protein 0.319560307807 0.5 0.180439692193 +UniRef50_A5IWE0 2.50871988471 0.5 -2.00871988471 +UniRef50_K2AF05 1.15539403879 0.5 -0.655394038791 +UniRef50_UPI0003C10267 0.158886686703 0.500000000001 0.341113313296 +UniRef50_P39393 1.03520003189 0.5 -0.535200031892 +UniRef50_Q1BTH0 Formamidopyrimidine DNA glycosylase 0.0700864749765 0.5 0.429913525023 +UniRef50_D8JEM9 0.0137571812949 0.5 0.486242818705 +UniRef50_F3GHC1 Putative monovalent cation H+ antiporter subunit A 1.45363248279 0.5 -0.953632482791 +UniRef50_F9KEG1 0.491442588056 0.5 0.00855741194393 +UniRef50_R4VNY3 Membrane protein 1.15798375278 0.5 -0.65798375278 +UniRef50_P22874 Mercuric resistance operon regulatory protein 1.678003062 0.5 -1.178003062 +UniRef50_P0AGB8 ECF RNA polymerase sigma E factor 4.48264172396 0.499999999999 -3.98264172396 +UniRef50_UPI00037E5BDF hypothetical protein 0.880523438809 0.5 -0.380523438809 +UniRef50_Q4SV05 Chromosome undetermined SCAF13832, whole genome shotgun sequence 1.34969246482 0.5 -0.849692464817 +UniRef50_A3Q0W3 4.58838447296 0.499999999999 -4.08838447296 +UniRef50_A2RM05 Queuosine precursor transporter QueT 1.25600405193 0.5 -0.756004051926 +UniRef50_Q6LLQ5 Probable GTP binding protein EngB 0.2975228788 0.5 0.2024771212 +UniRef50_UPI00041CCB11 sugar ABC transporter permease 0.304627691507 0.5 0.195372308493 +UniRef50_A6V513 0.712814699509 0.5 -0.212814699509 +UniRef50_A0A026BBH0 Aldo keto reductase 0.683765056329 0.5 -0.183765056329 +UniRef50_A4WXV7 Transcriptional regulator, GntR family 1.67052319178 0.5 -1.17052319178 +UniRef50_M9R7V5 Cold shock protein 0.75581355777 0.5 -0.25581355777 +UniRef50_O58411 Pyruvate ketoisovalerate oxidoreductases common subunit gamma 1.51577840582 0.5 -1.01577840582 +UniRef50_A0A023RSV7 Reverse transcriptase 0.0147226987888 0.5 0.485277301211 +UniRef50_D4HAZ8 0.0219359993386 0.5 0.478064000661 +UniRef50_I6X2N5 0.0191807446389 0.5 0.480819255361 +UniRef50_P25960 Type 4 prepilin like proteins leader peptide processing enzyme 1.86602660956 0.499999999999 -1.36602660956 +UniRef50_D5WUG2 0.0245961155521 0.499999999999 0.475403884449 +UniRef50_Q6D201 Sulfate thiosulfate import ATP binding protein CysA 1.14768958656 0.500000000001 -0.647689586562 +UniRef50_Q04DG6 1.11635213213 0.5 -0.616352132127 +UniRef50_UPI0003756849 succinylarginine dihydrolase 0.146250502662 0.5 0.353749497338 +UniRef50_UPI000473959B 3 oxoacyl ACP synthase, partial 0.190947060893 0.5 0.309052939107 +UniRef50_C4XLK3 DNA directed RNA polymerase subunit alpha 0.306554444662 0.5 0.193445555338 +UniRef50_O33641 Outer membrane protease IcsP 2.40707227017 0.499999999999 -1.90707227017 +UniRef50_UPI0002197747 haloacid dehalogenase 0.196249773235 0.5 0.303750226765 +UniRef50_P49778 Elongation factor P 4.33453121103 0.499999999997 -3.83453121103 +UniRef50_P0AD45 Quorum sensing regulator protein G 4.88362679128 0.499999999997 -4.38362679127 +UniRef50_B9JX75 0.304072655428 0.5 0.195927344572 +UniRef50_UPI00046CD0D4 ABC transporter permease 5.56840895418 0.500000000001 -5.06840895419 +UniRef50_F0Y8P3 0.264039768857 0.5 0.235960231143 +UniRef50_V7EH29 0.25178973635 0.5 0.24821026365 +UniRef50_Q5HN04 1.05791917259 0.5 -0.55791917259 +UniRef50_Q6GJF6 Dihydroneopterin aldolase 2.34806064613 0.500000000002 -1.84806064613 +UniRef50_Q5HN02 1.68975828756 0.5 -1.18975828756 +UniRef50_UPI00046B8737 0.852601490138 0.5 -0.352601490138 +UniRef50_UPI00037E9D63 hypothetical protein 0.614003921638 0.5 -0.114003921638 +UniRef50_C0HG71 0.311525185145 0.5 0.188474814855 +UniRef50_P32929 Cystathionine gamma lyase 0.750262885803 0.5 -0.250262885803 +UniRef50_UPI00046313F5 translation initiation factor IF 3 0.464060946817 0.5 0.035939053183 +UniRef50_B7KEP3 Bifunctional protein FolD 4.1919982389 0.499999999997 -3.6919982389 +UniRef50_V4Q726 2.2990166888 0.500000000002 -1.7990166888 +UniRef50_H9KRJ0 0.398421207137 0.5 0.101578792863 +UniRef50_A0A031F6L1 Porin O 1.18380480814 0.5 -0.683804808142 +UniRef50_UPI0003B54A55 chemotaxis protein 4.97869810668 0.5 -4.47869810668 +UniRef50_P0A2Y1 Arginase 1.15717513811 0.499999999999 -0.657175138104 +UniRef50_S9RRM6 High affinity K+ transport system, ATPase chain B 0.205278633442 0.5 0.294721366558 +UniRef50_UPI0004745E14 hypothetical protein 0.360735210757 0.5 0.139264789243 +UniRef50_B9KUL3 GCN5 related N acetyltransferase 16.1764616764 0.500000000009 -15.6764616765 +UniRef50_Q98H85 Cation efflux system protein 3.95026181374 0.500000000001 -3.45026181374 +UniRef50_I7EYE9 2.20015797957 0.500000000002 -1.70015797958 +UniRef50_W8S3E2 2.20716372849 0.500000000002 -1.70716372849 +UniRef50_UPI000376F465 hypothetical protein 0.668147030463 0.5 -0.168147030463 +UniRef50_J5HWF5 0.115596283008 0.5 0.384403716992 +UniRef50_Q9JS61 Dihydroxy acid dehydratase 0.050914547671 0.5 0.449085452329 +UniRef50_B1Y6A6 Periplasmic nitrate reductase 2.51731196681 0.5 -2.01731196681 +UniRef50_K4VY87 0.687907145188 0.5 -0.187907145188 +UniRef50_UPI000363A65E ABC transporter ATP binding protein 1.66711878472 0.500000000001 -1.16711878472 +UniRef50_M1MNB9 Transcriptional regulator, RpiR family 0.0621287034362 0.500000000001 0.437871296563 +UniRef50_P75980 Putative protein BeeE from lambdoid prophage e14 region 4.83730492321 0.500000000001 -4.33730492321 +UniRef50_D2J7Y2 2.26143853168 0.5 -1.76143853168 +UniRef50_L0EBD3 Lipoprotein, YaeC family 0.117505983731 0.5 0.382494016269 +UniRef50_A4EAB4 0.00196537441607 0.5 0.498034625584 +UniRef50_A0A017HMY7 5.19855069943 0.500000000003 -4.69855069943 +UniRef50_UPI0003700BFB hypothetical protein 1.7275161069 0.5 -1.2275161069 +UniRef50_UPI000373B788 hypothetical protein 2.41802541081 0.5 -1.91802541081 +UniRef50_A0A011PBV4 1.69603128023 0.5 -1.19603128023 +UniRef50_F7R3U3 Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein 1.83312962011 0.500000000001 -1.33312962011 +UniRef50_P51007 Transcriptional activator protein FnrL 1.62546131231 0.5 -1.12546131231 +UniRef50_V9AR48 0.128264263497 0.5 0.371735736503 +UniRef50_UPI00035F62EF hypothetical protein 0.719015915543 0.5 -0.219015915543 +UniRef50_B9KX33 FlaF protein 2.56710422255 0.500000000002 -2.06710422255 +UniRef50_Q2JHF7 Acetylglutamate kinase 1.39275653192 0.5 -0.892756531917 +UniRef50_UPI000262920F ATP dependent Clp protease adapter protein clpS 8.16851336381 0.500000000001 -7.66851336381 +UniRef50_UPI0002D72F69 hypothetical protein 0.168001454379 0.5 0.331998545621 +UniRef50_A1AVM5 DNA directed RNA polymerase subunit alpha 0.67293023391 0.5 -0.17293023391 +UniRef50_Q3IZ91 Crotonyl CoA reductase 1.86737136019 0.5 -1.36737136019 +UniRef50_B5F3L0 Protein YebF 0.161585579373 0.5 0.338414420627 +UniRef50_D9SWY9 Phosphofructokinase 0.55199738692 0.5 -0.0519973869201 +UniRef50_M9RJL9 3.89714426972 0.500000000002 -3.39714426972 +UniRef50_B5YDB0 Thymidine kinase 0.331578835784 0.5 0.168421164216 +UniRef50_UPI00023772DA putative transmembrane efflux protein of the MFS type 1.00855535042 0.5 -0.508555350423 +UniRef50_UPI00038F2DE3 0.116678921729 0.5 0.383321078271 +UniRef50_Q5Z8D5 Os01g0349000 protein 0.0839192637152 0.5 0.416080736285 +UniRef50_UPI000361B676 hypothetical protein 4.88384931762 0.5 -4.38384931763 +UniRef50_A6U352 0.779533478146 0.5 -0.279533478146 +UniRef50_UPI0003681885 hypothetical protein, partial 0.379466277322 0.5 0.120533722678 +UniRef50_X1XJA7 0.482645448326 0.5 0.0173545516737 +UniRef50_Q5HK08 Beta hemolysin 0.84459389258 0.5 -0.34459389258 +UniRef50_UPI000237AA65 binding protein dependent transporter inner membrane component 0.311943421396 0.5 0.188056578604 +UniRef50_Q3J7A3 Adenylate kinase 0.163414115555 0.5 0.336585884445 +UniRef50_Q2FFI7 Adenylosuccinate lyase 0.427779605864 0.5 0.0722203941357 +UniRef50_K1PM14 Threonine synthase like 2 0.228229123911 0.5 0.271770876089 +UniRef50_P14789 Protease LasA 0.741396157287 0.5 -0.241396157287 +UniRef50_Q9RXH7 Fatty acid CoA ligase, putative 0.00211048327935 0.5 0.497889516721 +UniRef50_Q17VI1 Carbamoyl phosphate synthase small chain 0.0178490140014 0.5 0.482150985998 +UniRef50_G2QDG1 0.582932361938 0.5 -0.0829323619385 +UniRef50_Q47AK8 Transcriptional regulator, BolA protein family 0.162773149578 0.5 0.337226850422 +UniRef50_A6UYT5 0.185556559259 0.5 0.314443440741 +UniRef50_A6LPC3 ATP dependent helicase deoxyribonuclease subunit B 0.142337192007 0.5 0.357662807993 +UniRef50_I6U222 ABC transporter permease 1.11600920919 0.5 -0.616009209188 +UniRef50_P05804 Beta glucuronidase 2.76018119261 0.5 -2.26018119261 +UniRef50_E0TN47 0.273506442402 0.5 0.226493557598 +UniRef50_Q09677 0.117041756997 0.5 0.382958243003 +UniRef50_D3QCP0 1.51376031356 0.500000000001 -1.01376031356 +UniRef50_P58342 Copper transporting ATPase 2 0.0176683610384 0.500000000001 0.482331638961 +UniRef50_Q3JV89 0.127585637218 0.500000000001 0.372414362781 +UniRef50_F2AIV2 5.60895152782 0.499999999998 -5.10895152781 +UniRef50_UPI00040366D8 cardiolipin synthetase 3.22121183908 0.500000000001 -2.72121183909 +UniRef50_UPI000477CEDC competence protein ComL 1.27788235452 0.5 -0.77788235452 +UniRef50_E4TDW5 DNA methylase N 4 N 6 domain protein 0.0179586162508 0.5 0.482041383749 +UniRef50_A5IR33 Prophage antirepressor 0.964876461487 0.5 -0.464876461487 +UniRef50_Q5HEW0 Serine protease SplA 7.24690289709 0.500000000002 -6.74690289709 +UniRef50_A6LV33 AAA ATPase 0.0718184203307 0.500000000001 0.428181579669 +UniRef50_B1M3E9 Binding protein dependent transport systems inner membrane component 2.41268026693 0.5 -1.91268026693 +UniRef50_UPI0002C36421 PREDICTED 0.415756584461 0.5 0.0842434155393 +UniRef50_Q2FGH0 Superoxide dismutase [Mn Fe] 1 9.90894101161 0.5 -9.40894101161 +UniRef50_UPI0003B79D68 peptide ABC transporter permease 0.906803715358 0.5 -0.406803715358 +UniRef50_X0RZB2 Marine sediment metagenome DNA, contig 0.45369160966 0.5 0.0463083903403 +UniRef50_UPI00036B0C57 hypothetical protein, partial 0.000906080960713 0.5 0.499093919039 +UniRef50_UPI000362FAB4 hypothetical protein 3.24570259402 0.5 -2.74570259402 +UniRef50_Q73X87 Ribonuclease PH 0.791353146392 0.5 -0.291353146392 +UniRef50_UPI00037598D9 hypothetical protein 0.35395784594 0.5 0.14604215406 +UniRef50_V4Z1T8 0.609742360436 0.5 -0.109742360436 +UniRef50_W7WAI9 1.78274292557 0.5 -1.28274292557 +UniRef50_D0K7A4 IucC family siderophore biosynthesis protein 1.73447696621 0.5 -1.23447696621 +UniRef50_I1ZP85 0.00118271003638 0.5 0.498817289964 +UniRef50_Q3IV82 1.96172132329 0.499999999999 -1.46172132329 +UniRef50_Q3IV81 4.15369328809 0.499999999999 -3.65369328808 +UniRef50_A6M1G7 Thiamine pyrophosphate protein domain protein TPP binding 0.285685101981 0.5 0.214314898019 +UniRef50_F6D2B8 ABC transporter related protein 7.47044166746 0.499999999998 -6.97044166745 +UniRef50_A5UMH6 2.65484588205 0.500000000002 -2.15484588205 +UniRef50_C4J6F8 0.0275787007592 0.500000000001 0.47242129924 +UniRef50_Q3IV88 10.226197514 0.5 -9.72619751401 +UniRef50_UPI00037A900D hypothetical protein, partial 2.25351323605 0.5 -1.75351323605 +UniRef50_O31678 NADPH dependent 7 cyano 7 deazaguanine reductase 0.71389620538 0.5 -0.21389620538 +UniRef50_UPI0003707B6D hypothetical protein 0.998082631868 0.5 -0.498082631868 +UniRef50_W0H2V6 Hemolysin activator protein 1.88333972186 0.5 -1.38333972186 +UniRef50_O26230 Probable deoxyhypusine synthase 0.554748232452 0.5 -0.0547482324515 +UniRef50_UPI0003B47108 PREDICTED 0.262021505106 0.5 0.237978494894 +UniRef50_Q8KA28 3 oxoacyl [acyl carrier protein] synthase 1 0.435489553849 0.5 0.0645104461508 +UniRef50_P0A2X7 Carbamate kinase 1 0.626653799394 0.5 -0.126653799394 +UniRef50_E4N8R6 0.112213347721 0.5 0.387786652279 +UniRef50_UPI0003B30ABB sodium 1.21818866869 0.5 -0.71818866869 +UniRef50_R0F7E9 Molybdopterin guanine dinucleotide biosynthesis protein MobA 0.499990376792 0.5 9.62320766743e-06 +UniRef50_UPI0002F30145 50S ribosomal protein L3 0.0352203335787 0.5 0.464779666421 +UniRef50_F0MZ05 0.853843960233 0.5 -0.353843960233 +UniRef50_C6WR75 Short chain dehydrogenase reductase SDR 0.00668448415809 0.5 0.493315515842 +UniRef50_UPI00037F0FC3 hypothetical protein 0.0026207597943 0.499999999999 0.497379240206 +UniRef50_R5WF49 0.0259551520473 0.5 0.474044847953 +UniRef50_UPI000255E7F9 MerR family transcriptional regulator 3.84931702928 0.5 -3.34931702928 +UniRef50_Q5E4V6 Ribose import ATP binding protein RbsA 0.108469065507 0.5 0.391530934493 +UniRef50_G7SI90 0.283506462805 0.5 0.216493537195 +UniRef50_Q837G3 Formamidopyrimidine DNA glycosylase 0.000514822701472 0.5 0.499485177299 +UniRef50_Q9KPS2 Na translocating NADH quinone reductase subunit B 0.144908885871 0.5 0.355091114129 +UniRef50_A1WG05 Dimethylmenaquinone methyltransferase 1.93622272568 0.5 -1.43622272568 +UniRef50_D0KX67 0.0124285728571 0.5 0.487571427143 +UniRef50_E6K041 GTPase HflX 0.0381669824441 0.5 0.461833017556 +UniRef50_Q54277 Dihydrofolate reductase 0.0154386202723 0.5 0.484561379728 +UniRef50_UPI00046CCCAD hypothetical protein 1.53194258518 0.5 -1.03194258518 +UniRef50_UPI0003A0652D peptidase C60 1.21606833095 0.499999999999 -0.716068330953 +UniRef50_G7M701 NAD dependent epimerase dehydratase 0.0583182209041 0.5 0.441681779096 +UniRef50_E0NNQ0 0.0485014447632 0.5 0.451498555236 +UniRef50_O26325 Cyclic 2,3 diphosphoglycerate synthetase 2.89758903626 0.500000000001 -2.39758903626 +UniRef50_Q9RX12 0.00302214193417 0.5 0.496977858066 +UniRef50_UPI0004757A78 replication initiation protein RepC 1.88956406894 0.5 -1.38956406894 +UniRef50_Q4FUR4 Homoserine O acetyltransferase 0.00656507564392 0.5 0.493434924356 +UniRef50_Q5HP79 3 phosphoshikimate 1 carboxyvinyltransferase 1.57215452554 0.500000000001 -1.07215452554 +UniRef50_A4VYG8 Ribosomal RNA large subunit methyltransferase H 0.193806492216 0.5 0.306193507784 +UniRef50_UPI00046C9F03 hypothetical protein 0.0290441998793 0.5 0.470955800121 +UniRef50_A6M2J1 Glycosyl transferase, group 1 0.0341137378444 0.5 0.465886262155 +UniRef50_I1ENI9 0.474334660594 0.5 0.0256653394063 +UniRef50_A1WY05 Tryptophan synthase alpha chain 0.230173794767 0.5 0.269826205233 +UniRef50_UPI00047CE877 hypothetical protein, partial 0.0210463163771 0.5 0.478953683623 +UniRef50_J7TB42 Oxygen insensitive NADH nitroreductase 0.0488657342632 0.5 0.451134265737 +UniRef50_Q6A6Y6 6,7 dimethyl 8 ribityllumazine synthase 0.173295200661 0.5 0.326704799339 +UniRef50_X9LDU8 1.90197672329 0.5 -1.40197672329 +UniRef50_UPI000252BAC1 PREDICTED 0.291415558727 0.5 0.208584441273 +UniRef50_A8LU41 Replication protein B 1.74835890691 0.5 -1.24835890691 +UniRef50_C6ST62 3.74018545296 0.499999999999 -3.24018545296 +UniRef50_C6ST67 1.53513430265 0.5 -1.03513430265 +UniRef50_P37780 dTDP 4 dehydrorhamnose 3,5 epimerase 0.150752888646 0.5 0.349247111354 +UniRef50_UPI00037518CF hypothetical protein 0.0412821808542 0.5 0.458717819146 +UniRef50_I7EP81 Bifunctional adenosylcobalamin biosynthesis protein CobP 3.26667642618 0.500000000002 -2.76667642618 +UniRef50_B2TS08 PHP domain protein 3.18717464379 0.499999999999 -2.68717464379 +UniRef50_S9R0I2 2.12963628209 0.5 -1.62963628209 +UniRef50_K7VG66 0.0827993873273 0.5 0.417200612673 +UniRef50_E3I2I3 PUCC protein 0.881779943855 0.5 -0.381779943855 +UniRef50_UPI00032A201E PREDICTED 0.375891074587 0.5 0.124108925413 +UniRef50_M2WAS0 0.113288392146 0.5 0.386711607854 +UniRef50_D4H9P2 Amine oxidase 0.0167227626741 0.5 0.483277237326 +UniRef50_R6G969 Hypoxanthine phosphoribosyltransferase 0.417938335506 0.5 0.0820616644944 +UniRef50_P75684 4.21482089811 0.5 -3.71482089811 +UniRef50_A6L4U5 Altronate oxidoreductase 0.0174818867466 0.5 0.482518113254 +UniRef50_Q5HNN3 Porphobilinogen deaminase 1.56187204494 0.5 -1.06187204494 +UniRef50_UPI00034C244F hypothetical protein 0.322122693488 0.5 0.177877306512 +UniRef50_UPI000467C74C hypothetical protein, partial 0.949201091073 0.5 -0.449201091073 +UniRef50_B0KQA4 Lipoprotein 1.02415959906 0.5 -0.524159599056 +UniRef50_B5Y813 6.50184988715 0.499999999998 -6.00184988715 +UniRef50_Q46ZM0 sn glycerol 3 phosphate import ATP binding protein UgpC 2.19487724727 0.499999999999 -1.69487724727 +UniRef50_UPI00041C29D4 acyl CoA dehydrogenase 0.102005689975 0.5 0.397994310025 +UniRef50_Q1MA75 Glutamate 5 kinase 0.240162602054 0.5 0.259837397946 +UniRef50_W2DD36 Pirin family protein 0.636800281024 0.5 -0.136800281024 +UniRef50_UPI000374B537 hypothetical protein 0.328824773459 0.5 0.171175226541 +UniRef50_D8JIN7 Diguanylate cyclase domain protein 0.0055328285039 0.5 0.494467171496 +UniRef50_Q838L2 L rhamnose isomerase 0.205629643659 0.5 0.294370356341 +UniRef50_Q95XX1-3 Isoform c of Nicotinate phosphoribosyltransferase 0.269474881428 0.5 0.230525118572 +UniRef50_UPI0002558ADA RNA binding protein 0.477387983166 0.5 0.0226120168338 +UniRef50_E5QTA2 0.704865189279 0.5 -0.204865189279 +UniRef50_D8BS45 0.120845712863 0.5 0.379154287137 +UniRef50_F4GQ68 Acetolactate synthase 2 catalytic subunit 0.0883306754269 0.5 0.411669324573 +UniRef50_U3SQS3 1.59082791804 0.5 -1.09082791804 +UniRef50_A6LWQ9 0.108199007234 0.5 0.391800992765 +UniRef50_A6LWQ8 0.0687023131529 0.5 0.431297686847 +UniRef50_P55478 UPF0721 transmembrane protein y4hK 0.953452290324 0.5 -0.453452290324 +UniRef50_Q4PDQ3 0.460993937113 0.5 0.0390060628868 +UniRef50_A6LWQ2 0.29730237592 0.5 0.20269762408 +UniRef50_UPI00035D39C5 MULTISPECIES 0.305056680517 0.5 0.194943319483 +UniRef50_UPI0002375F1F hypothetical protein 1.4716132085 0.5 -0.971613208505 +UniRef50_UPI00037B7293 hypothetical protein 0.330542735023 0.5 0.169457264977 +UniRef50_Q0ZKT3 ChrA 0.0346445700635 0.500000000001 0.465355429936 +UniRef50_Q5PGP5 Glutathione transport system permease protein GsiC 4.8438499578 0.500000000003 -4.3438499578 +UniRef50_A1ISE9 SpoU methylase family protein 0.0375945056045 0.5 0.462405494395 +UniRef50_B4V0E4 0.0518160243863 0.500000000001 0.448183975613 +UniRef50_A1WDW4 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.74082981421 0.5 -1.24082981421 +UniRef50_UPI0003B33BE3 excinuclease ABC subunit A, partial 0.00750454638211 0.5 0.492495453618 +UniRef50_UPI0003C7EA97 protein tyrosine kinase 0.445034852983 0.5 0.0549651470174 +UniRef50_A0A023RVY2 Peroxidase 0.0351480536251 0.5 0.464851946375 +UniRef50_UPI0003B6B16C GumN family protein 1.13487272369 0.5 -0.634872723689 +UniRef50_UPI0003814F56 hypothetical protein, partial 5.48574473116 0.500000000005 -4.98574473117 +UniRef50_K0SL40 1.529201746 0.5 -1.029201746 +UniRef50_UPI00035D3F59 hypothetical protein 1.15575733785 0.5 -0.655757337849 +UniRef50_E3EY41 15.1930040617 0.499999999998 -14.6930040617 +UniRef50_UPI000371CC4C hypothetical protein, partial 0.780839907298 0.5 -0.280839907298 +UniRef50_UPI000471DA2C hypothetical protein, partial 0.644779366573 0.5 -0.144779366573 +UniRef50_R9ZP34 GntR family transcriptional regulator 0.24726902995 0.5 0.25273097005 +UniRef50_A5UJX8 Peptide nickel ABC transporter, permease component, DppB 1.32082197121 0.5 -0.820821971215 +UniRef50_Q47AM5 Phosphoribosyl ATP pyrophosphatase 0.922109603588 0.5 -0.422109603588 +UniRef50_A1B4P8 2.90064687686 0.5 -2.40064687686 +UniRef50_UPI000468F104 hypothetical protein 0.808787707366 0.5 -0.308787707366 +UniRef50_A0KXX9 Ion transport protein 0.836995110502 0.5 -0.336995110502 +UniRef50_B0VBT1 0.018027610244 0.5 0.481972389756 +UniRef50_UPI000366C56B hypothetical protein 0.580023992879 0.5 -0.0800239928789 +UniRef50_UPI000463A6B8 carbonic anhydrase 0.351310826206 0.5 0.148689173794 +UniRef50_UPI0004791861 chemotaxis protein CheW 0.787028239109 0.5 -0.287028239109 +UniRef50_Q8CS22 Putative membrane protein insertion efficiency factor 0.454113988186 0.5 0.0458860118142 +UniRef50_A8LHU2 Processing peptidase 5.44349847193 0.5 -4.94349847193 +UniRef50_D5WZX2 Poly beta hydroxybutyrate polymerase domain protein 2.08861611508 0.5 -1.58861611508 +UniRef50_UPI0003B3160E beta lactamase 0.0369285154106 0.5 0.463071484589 +UniRef50_W4UEC1 0.0846375262702 0.5 0.41536247373 +UniRef50_R7I9W9 Val start codon 0.334923128084 0.5 0.165076871916 +UniRef50_Q07QX1 NADH dehydrogenase 0.164037216593 0.5 0.335962783407 +UniRef50_A5E8J0 Heat inducible transcription repressor HrcA 3.05871842189 0.5 -2.55871842189 +UniRef50_A4VKS4 Lipoprotein, putative 1.51253879056 0.5 -1.01253879056 +UniRef50_Q2CAF3 Transposase orfA IS5 family element 0.594968433067 0.5 -0.0949684330673 +UniRef50_L7VRM1 OadB 1.04769970204 0.5 -0.547699702038 +UniRef50_N6U3D2 Transposase 1.13042511506 0.5 -0.63042511506 +UniRef50_C1D0K2 0.0109486745755 0.5 0.489051325424 +UniRef50_X5K3C1 Phosphoglucomutase phosphomannomutase family protein 0.674366024688 0.5 -0.174366024688 +UniRef50_UPI00026C6979 ABC type enterochelin transporter permease, partial 0.172271137485 0.5 0.327728862516 +UniRef50_A3PNM9 ROK family protein 3.82225237087 0.500000000002 -3.32225237087 +UniRef50_P31675 Sugar efflux transporter A 3.16653870448 0.5 -2.66653870448 +UniRef50_P30417 Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase 0.833169816405 0.5 -0.333169816405 +UniRef50_Q9SH30 Probable copper transporting ATPase HMA5 0.0150884089389 0.5 0.484911591061 +UniRef50_F6AYB7 Lipoprotein 1.25575815702 0.5 -0.75575815702 +UniRef50_Q8X7X9 Probable ATP dependent helicase DinG 2.40679286549 0.500000000001 -1.9067928655 +UniRef50_P0AA62 Inner membrane protein YghB 3.96188768398 0.500000000004 -3.46188768398 +UniRef50_A4VZ41 ATP dependent exoDNAse , alpha subunit helicase superfamily I member 0.0419787845684 0.5 0.458021215432 +UniRef50_R9ZFU1 Ammonium transporter 0.0906835512978 0.5 0.409316448702 +UniRef50_A5IQG6 Alpha beta hydrolase fold 10.1049787021 0.500000000003 -9.60497870213 +UniRef50_A1VLE6 0.635511845792 0.5 -0.135511845792 +UniRef50_G7ZLK6 Galactosyl transferase 2.10460668494 0.5 -1.60460668494 +UniRef50_K2DS47 1.06859775211 0.500000000001 -0.568597752113 +UniRef50_H6RPX4 0.0265188532556 0.499999999999 0.473481146745 +UniRef50_UPI00047AC889 ATPase P 0.0349728286351 0.5 0.465027171365 +UniRef50_G7LZ49 Alpha beta hydrolase fold protein 0.287533955025 0.5 0.212466044975 +UniRef50_UPI000370CAD4 50S ribosomal protein L5 0.880668286308 0.5 -0.380668286308 +UniRef50_Q44290 Homocitrate synthase 1 2.98859255854 0.499999999999 -2.48859255854 +UniRef50_K0TM89 2.63055726591 0.5 -2.13055726591 +UniRef50_UPI0003C7F990 histidine kinase 2.01393303444 0.500000000001 -1.51393303444 +UniRef50_D7GFC8 Ppx GppA phosphatase family 0.0397353528527 0.5 0.460264647147 +UniRef50_R6TT37 0.0116928686271 0.5 0.488307131373 +UniRef50_H9UYD8 0.266300256516 0.5 0.233699743484 +UniRef50_P58586 Putative gluconeogenesis factor 1.83666621342 0.5 -1.33666621342 +UniRef50_UPI000473FA3F hypothetical protein, partial 0.788865423214 0.5 -0.288865423214 +UniRef50_F5YM75 ABC transporter, permease protein 0.296047236168 0.5 0.203952763832 +UniRef50_UPI0003619046 hypothetical protein 3.33355602303 0.5 -2.83355602303 +UniRef50_UPI0003B69332 NADH dehydrogenase 0.155934384862 0.5 0.344065615138 +UniRef50_A6QE51 0.348811314882 0.5 0.151188685118 +UniRef50_Q7A528 UPF0354 protein SA1564 1.05313182104 0.5 -0.553131821036 +UniRef50_B9KRF2 15.7494246315 0.50000000001 -15.2494246315 +UniRef50_Q5XAE3 Malonyl CoA acyl carrier protein transacylase 0.912000882105 0.5 -0.412000882105 +UniRef50_UPI00036445B6 MFS transporter 0.570562023208 0.5 -0.0705620232084 +UniRef50_I7DEQ4 Trk system potassium uptake protein TrkA 2.84446842951 0.5 -2.34446842951 +UniRef50_UPI0003A5CBBE hypothetical protein 0.951060944929 0.5 -0.451060944929 +UniRef50_T1Y9W9 Regulator of kinase autophosphorylation inhibitor 5.38968893559 0.500000000008 -4.8896889356 +UniRef50_R5QQK6 UPF0301 protein BN682_00876 0.254069312229 0.5 0.245930687771 +UniRef50_W4U2A1 0.0196210063177 0.500000000001 0.480378993682 +UniRef50_M9VDD9 Periplasmic binding protein 0.00693240476024 0.5 0.493067595239 +UniRef50_Q2RS90 0.574210303055 0.5 -0.0742103030545 +UniRef50_UPI00046448EA deaminase 0.0659482649475 0.5 0.434051735053 +UniRef50_Q54TJ4 Probable ATP dependent RNA helicase ddx27 0.228794498705 0.5 0.271205501295 +UniRef50_W7K686 0.897794546152 0.5 -0.397794546152 +UniRef50_W5X6I0 Metallophosphoesterase 0.32098340908 0.5 0.17901659092 +UniRef50_D3QEQ6 Para aminobenzoate synthase, amidotransferase component PabAb 5.7866784817 0.499999999997 -5.28667848169 +UniRef50_A4SR46 Short chain dehydrogenase reductase 0.00178249279558 0.5 0.498217507204 +UniRef50_U3TK30 Iron sulfur cluster assembly ATPase protein 0.100939951339 0.5 0.39906004866 +UniRef50_UPI0004412958 ribosomal protein S12 0.203679455171 0.5 0.296320544829 +UniRef50_Q92263 Glyceraldehyde 3 phosphate dehydrogenase 0.0837064522264 0.5 0.416293547773 +UniRef50_R7PWP6 0.714128221848 0.5 -0.214128221848 +UniRef50_Q92PC8 5,6 dimethylbenzimidazole synthase 80.9012363644 0.499999999979 -80.4012363644 +UniRef50_Q49W91 Na H(+) antiporter subunit A1 1.41560969099 0.499999999999 -0.915609690985 +UniRef50_Q8RGJ4 Aspartate tRNA ligase 0.00121846136667 0.5 0.498781538633 +UniRef50_Q0TBG1 Guanylate kinase 1.24493731583 0.499999999999 -0.744937315826 +UniRef50_P08369 Inner membrane protein CreD 3.86351494416 0.499999999998 -3.36351494416 +UniRef50_G7M6S6 Radical SAM domain protein 0.0578433104639 0.5 0.442156689536 +UniRef50_B9T7I1 0.142037530775 0.5 0.357962469225 +UniRef50_A6LYI7 Polysaccharide deacetylase 0.05565781206 0.5 0.44434218794 +UniRef50_Q5LW47 50S ribosomal protein L24 0.604070639007 0.5 -0.104070639007 +UniRef50_UPI0003EAF802 PREDICTED 0.207371979764 0.5 0.292628020236 +UniRef50_F8WKJ0 2.49545688812 0.5 -1.99545688812 +UniRef50_B3FTP2 Putative membrane protein 1.2562347037 0.499999999999 -0.756234703698 +UniRef50_UPI0003BB74C6 PREDICTED 0.783664142378 0.5 -0.283664142378 +UniRef50_C4LL84 Sialic acid transporter 0.0109248311851 0.5 0.489075168815 +UniRef50_UPI0003746324 hypothetical protein 0.177694279908 0.5 0.322305720092 +UniRef50_E8PBY1 AdiY 0.00738196194989 0.5 0.49261803805 +UniRef50_B9KQL5 1.86176974926 0.500000000002 -1.36176974926 +UniRef50_L0KL03 ABC type sugar transport system, periplasmic component 1.01017305653 0.5 -0.510173056527 +UniRef50_M3Y9H2 2.75732577057 0.5 -2.25732577057 +UniRef50_Q8YPE1 Acetyl coenzyme A synthetase 0.0436246734273 0.5 0.456375326573 +UniRef50_B8FRY4 Periplasmic binding protein 0.196853220821 0.5 0.303146779179 +UniRef50_UPI00016C42F5 drug resistance transporter, EmrB QacA subfamily protein, partial 0.407006729536 0.5 0.0929932704641 +UniRef50_P0AC82 Lactoylglutathione lyase 7.13682345475 0.5 -6.63682345475 +UniRef50_Q8ZXL4 NH dependent NAD(+) synthetase 1.75901270848 0.499999999999 -1.25901270848 +UniRef50_UPI00046D6304 hypothetical protein 0.0439297807925 0.5 0.456070219207 +UniRef50_P9WGB4 O succinylhomoserine sulfhydrylase 0.573372833779 0.5 -0.0733728337794 +UniRef50_A0A024HB78 Rod shape determining protein RodA 0.0397775628258 0.5 0.460222437174 +UniRef50_UPI00047E14BB alpha amylase 0.0659651441462 0.5 0.434034855854 +UniRef50_U5MX52 Macrolide export ATP binding permease protein MacB 0.0486844295466 0.5 0.451315570453 +UniRef50_A5V3U8 0.0490619901242 0.5 0.450938009875 +UniRef50_R1DQP4 0.796865985351 0.5 -0.296865985351 +UniRef50_A5ULR1 Predicted phosphatidylglycerophosphatase A related protein 12.910586911 0.499999999995 -12.4105869109 +UniRef50_I7BLG8 2.20072821176 0.499999999999 -1.70072821176 +UniRef50_K7SKZ4 Glycosyl transferase, group 2 family 6.36503487743 0.500000000001 -5.86503487743 +UniRef50_A0A018R4T4 Nitrate reductase Z subunit alpha 0.739017217179 0.5 -0.239017217179 +UniRef50_F3TY15 Serine aspartate repeat protein F 1.41074493645 0.5 -0.910744936455 +UniRef50_Q8DCB9 Non canonical purine NTP pyrophosphatase 0.516287683881 0.5 -0.0162876838813 +UniRef50_Z9KIC6 3.79285445129 0.5 -3.29285445129 +UniRef50_Q8E5U9 ATP synthase gamma chain 0.0663427454649 0.5 0.433657254535 +UniRef50_UPI00047577E0 hypothetical protein 0.370912306114 0.5 0.129087693886 +UniRef50_K0LW41 4.95824294701 0.500000000002 -4.45824294701 +UniRef50_P58205 Flagellar L ring protein 1.25460606854 0.5 -0.754606068539 +UniRef50_V5V8K7 Thiamine monophosphate kinase 0.0188473246157 0.5 0.481152675384 +UniRef50_V8NK60 Octapeptide repeat protein T2 0.541795419075 0.5 -0.0417954190755 +UniRef50_L4WM60 Starvation sensing protein RspB 0.787865463142 0.5 -0.287865463142 +UniRef50_UPI00036B0F2C hypothetical protein 0.297645985667 0.5 0.202354014333 +UniRef50_UPI00046310F9 pseudoazurin 1.35149766458 0.5 -0.851497664576 +UniRef50_A0RKF7 Lipoyl synthase 0.148114431278 0.5 0.351885568722 +UniRef50_B5FM40 ATP phosphoribosyltransferase 0.557136521188 0.5 -0.057136521188 +UniRef50_Q0A4M5 ATP synthase subunit delta 0.0554300910282 0.5 0.444569908972 +UniRef50_Q8DSS6 0.865334856998 0.5 -0.365334856998 +UniRef50_UPI0003B3C008 hypothetical protein 0.158762337872 0.5 0.341237662128 +UniRef50_E2QHF8 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.477887026814 0.5 0.0221129731864 +UniRef50_UPI000364343F hypothetical protein 1.45436000992 0.5 -0.954360009924 +UniRef50_UPI000479AAE0 hypothetical protein 1.02174249405 0.5 -0.521742494055 +UniRef50_UPI0003F0EEE2 PREDICTED 0.335757835204 0.5 0.164242164796 +UniRef50_Q2CE09 0.515074836409 0.5 -0.0150748364085 +UniRef50_Q16DQ1 Flagellar protein, putative 0.760069894064 0.5 -0.260069894064 +UniRef50_UPI0002DE5CBD hypothetical protein 5.60012590115 0.500000000001 -5.10012590116 +UniRef50_Q9I3V2 1.15636056285 0.5 -0.656360562854 +UniRef50_I0EM06 Metalloendopeptidase related membrane protein 0.0720779948357 0.5 0.427922005164 +UniRef50_R4ZBM2 2.24432818274 0.5 -1.74432818274 +UniRef50_P37604 D alanyl D alanine carboxypeptidase DacD 2.62915414223 0.500000000001 -2.12915414223 +UniRef50_M3Z6H8 2.07101011619 0.499999999997 -1.57101011619 +UniRef50_B0V4K0 Phosphoenolpyruvate protein phosphotransferase 0.00449940612483 0.5 0.495500593875 +UniRef50_Q02LX5 Putative glutamate cysteine ligase 2 1.35553551442 0.5 -0.855535514424 +UniRef50_UPI0003FA526E trehalose synthase 0.0822989728248 0.5 0.417701027175 +UniRef50_UPI00046A3CDD hypothetical protein 0.472938883001 0.5 0.0270611169992 +UniRef50_R6Q6V2 Cytosine specific methyltransferase 0.00603578992531 0.5 0.493964210075 +UniRef50_P39119 Citrate synthase 1 0.0726592360367 0.5 0.427340763963 +UniRef50_I1JAZ8 0.977467025898 0.5 -0.477467025898 +UniRef50_UPI000362AC26 hypothetical protein 0.274567421024 0.5 0.225432578976 +UniRef50_UPI0002377E25 binding protein dependent transport systems inner membrane component, partial 0.798006875432 0.5 -0.298006875432 +UniRef50_UPI00046A4CBA hypothetical protein 0.460957632371 0.5 0.0390423676286 +UniRef50_Q0QEP2 ATP synthase subunit beta, mitochondrial 0.903568340326 0.5 -0.403568340326 +UniRef50_Q62KZ5 0.0836960403982 0.5 0.416303959602 +UniRef50_C3PHK6 Lipoyl synthase 0.00869530298895 0.5 0.491304697011 +UniRef50_I0C1U2 Trehalose operon transcriptional repressor 3.45709902868 0.499999999998 -2.95709902868 +UniRef50_B4UIY8 0.721569985784 0.5 -0.221569985784 +UniRef50_Z5X3R4 Aconitate hydratase 0.0536398437014 0.5 0.446360156299 +UniRef50_UPI000375B6D1 hypothetical protein 0.0874115060331 0.5 0.412588493967 +UniRef50_F8HFF8 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.794062529064 0.5 -0.294062529064 +UniRef50_W5X5A5 13.6076180975 0.499999999997 -13.1076180975 +UniRef50_I6U3N4 0.428829316282 0.5 0.0711706837182 +UniRef50_W8YU14 3.58088538386 0.500000000003 -3.08088538386 +UniRef50_UPI00035E9EF0 hypothetical protein 0.439783311092 0.5 0.0602166889083 +UniRef50_D7BMZ3 ABC transporter related protein 0.0115810163238 0.5 0.488418983676 +UniRef50_UPI000255BEE2 transcriptional activator, partial 0.246291308694 0.5 0.253708691306 +UniRef50_D4HBV2 Transporter, major facilitator family protein 0.017105828594 0.5 0.482894171406 +UniRef50_Q1C8B1 Succinylornithine transaminase 0.180315310777 0.5 0.319684689223 +UniRef50_O34206 Alginate biosynthesis sensor protein KinB 1.16326370834 0.5 -0.663263708341 +UniRef50_W8RVI9 Iron sulfur cluster assembly ATPase protein SufC 0.0302884160753 0.5 0.469711583925 +UniRef50_A7H1C4 GTP binding protein LepA 0.117462835285 0.5 0.382537164715 +UniRef50_UPI00046A28BD ABC transporter permease 0.492804337692 0.5 0.00719566230751 +UniRef50_Q3ADL9 Acetyl CoA carboxylase, biotin carboxylase 1.15309077151 0.5 -0.653090771513 +UniRef50_A2RED4 GntR family regulatory protein 0.271540972882 0.5 0.228459027118 +UniRef50_B7IBN3 Thiol 0.00508479735171 0.500000000001 0.494915202648 +UniRef50_UPI00047E966E cobinamide kinase 0.171486612328 0.5 0.328513387672 +UniRef50_W5X9G4 Methylthioadenosine phosphorylase 0.495047443859 0.5 0.00495255614066 +UniRef50_UPI000456030C hypothetical protein PFL1_02724 0.0118877458209 0.5 0.488112254179 +UniRef50_I6TWK1 2.89382628585 0.5 -2.39382628585 +UniRef50_I0C256 2.85833398427 0.5 -2.35833398427 +UniRef50_P64549 18.2925580708 0.499999999968 -17.7925580708 +UniRef50_UPI000477C3DA MULTISPECIES 0.893928372167 0.5 -0.393928372167 +UniRef50_UPI00047DA574 hypothetical protein 0.264047950733 0.5 0.235952049267 +UniRef50_F3WYB3 Phasin family domain protein 0.0721403087732 0.5 0.427859691227 +UniRef50_A9CRC0 0.976605921927 0.5 -0.476605921927 +UniRef50_U5NMP2 1.53756507841 0.500000000002 -1.03756507842 +UniRef50_UPI000262D125 DNA mismatch repair protein MutS 0.0319537689975 0.5 0.468046231002 +UniRef50_Q6FZZ7 Threonine tRNA ligase 0.422902184655 0.5 0.0770978153446 +UniRef50_UPI00036D1788 MULTISPECIES 0.0192914073285 0.5 0.480708592672 +UniRef50_L7WQ34 8.69491223748 0.5 -8.19491223748 +UniRef50_P37748 O antigen polymerase 1.59498171576 0.500000000001 -1.09498171576 +UniRef50_UPI0004672B4A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.466603058373 0.5 0.0333969416275 +UniRef50_B9DK04 0.411158562983 0.5 0.0888414370166 +UniRef50_A0A032Y4K4 0.293205618069 0.5 0.206794381931 +UniRef50_Q027L3 Ribonuclease 3 0.292685455008 0.5 0.207314544992 +UniRef50_F4DYP4 Adenylate cyclase 1.88098405544 0.5 -1.38098405544 +UniRef50_A0A024HYE6 0.33061709481 0.5 0.16938290519 +UniRef50_UPI0003B4674E peptide ABC transporter permease 0.133002096766 0.5 0.366997903233 +UniRef50_A6LR23 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 0.149694628247 0.5 0.350305371753 +UniRef50_F2MN23 Decarboxylase 0.00386504202988 0.5 0.49613495797 +UniRef50_P11553 L fuculokinase 0.944844357556 0.5 -0.444844357556 +UniRef50_P46126 0.428034445604 0.5 0.0719655543956 +UniRef50_P46122 1.03273964516 0.5 -0.532739645161 +UniRef50_Q88QE3 MORN domain protein 0.3115713001 0.5 0.1884286999 +UniRef50_A6LX93 NERD domain protein 0.077993850906 0.5 0.422006149094 +UniRef50_Q5F6R3 Agmatinase 0.0341009592227 0.500000000001 0.465899040777 +UniRef50_Q8XE09 2 keto 3 deoxy L rhamnonate aldolase 0.0812802239943 0.5 0.418719776006 +UniRef50_A7FFQ7 Potassium transporting ATPase C chain 1.67122340672 0.500000000001 -1.17122340672 +UniRef50_UPI0002197648 orotidine 5 phosphate decarboxylase 0.958254363491 0.5 -0.458254363491 +UniRef50_A6LX07 Na+ H+ antiporter 0.110461478602 0.5 0.389538521398 +UniRef50_A7ZMU2 UPF0266 membrane protein YobD 0.129931204445 0.5 0.370068795555 +UniRef50_UPI000262832B transcriptional regulator 0.134101613906 0.5 0.365898386093 +UniRef50_UPI000378C8E7 hypothetical protein 0.431804318773 0.5 0.0681956812273 +UniRef50_Q57MZ8 0.442467848069 0.5 0.0575321519312 +UniRef50_UPI0004720DD8 hypothetical protein 0.742480234486 0.5 -0.242480234486 +UniRef50_Q1J0J9 DinB YfiT family metal binding protein 0.0744503135717 0.5 0.425549686428 +UniRef50_UPI0003EDF3DD PREDICTED 0.0100188668678 0.5 0.489981133132 +UniRef50_Q5HKZ8 Uroporphyrin III C methyltransferase, putative 1.00017568159 0.5 -0.500175681588 +UniRef50_UPI0003B7617D hypothetical protein 0.816004865407 0.5 -0.316004865407 +UniRef50_P37766 Acetate CoA transferase YdiF 2.01343253016 0.499999999999 -1.51343253016 +UniRef50_I3TTL9 0.481593615665 0.5 0.0184063843347 +UniRef50_A6FD16 0.299925442551 0.5 0.200074557449 +UniRef50_UPI00040EB463 ATP synthase F0 subunit I 0.310734347291 0.5 0.189265652709 +UniRef50_Q49W05 0.240671764225 0.5 0.259328235775 +UniRef50_Q9I1M2 2 oxoisovalerate dehydrogenase subunit alpha 1.20007048805 0.5 -0.700070488051 +UniRef50_M1EBV1 ADAM metallopeptidase with thrombospondin type 1 motif, 4 0.0498534956419 0.5 0.450146504358 +UniRef50_K0HKR5 Cobyrinic acid a,c diamide synthase 0.0135939736524 0.5 0.486406026348 +UniRef50_M9VNR8 NAD glutamate dehydrogenase 0.01120186472 0.5 0.48879813528 +UniRef50_Q3J792 D alanine D alanine ligase 0.457366158949 0.5 0.0426338410511 +UniRef50_B8JBE1 Sporulation domain protein 0.604050638247 0.5 -0.104050638247 +UniRef50_G7LIJ8 1 Deoxy D xylulose 5 phosphate synthase 0.0168255683182 0.5 0.483174431682 +UniRef50_X2HFM3 Integral membrane protein 0.0731099787087 0.5 0.426890021291 +UniRef50_A3PNQ6 Response regulator receiver protein 1.08219535139 0.5 -0.58219535139 +UniRef50_E8SGT7 Enoyl CoA hydratase Enoyl CoA hydratase [valine degradation] 3 hydroxyacyl CoA dehydrogenase 3.26069121101 0.500000000005 -2.76069121101 +UniRef50_L8WI83 5.67219452255 0.500000000001 -5.17219452255 +UniRef50_UPI0002000A30 amino acid decarboxylase, partial 1.40044296533 0.5 -0.900442965331 +UniRef50_D8JGA5 0.0423093799688 0.5 0.457690620031 +UniRef50_A3ACF3 Adenylyltransferase and sulfurtransferase MOCS3 0.289900236207 0.5 0.210099763793 +UniRef50_UPI000382D11F MULTISPECIES 0.773125746042 0.5 -0.273125746042 +UniRef50_UPI0003720140 hypothetical protein 0.109682500345 0.5 0.390317499655 +UniRef50_I6SLY5 1.50079766282 0.499999999999 -1.00079766282 +UniRef50_R9SLL8 Aspartate aminotransferase 2.15395868768 0.500000000001 -1.65395868769 +UniRef50_C6V3U5 ABC type phosphate transport system, periplasmic component 0.374842522554 0.5 0.125157477446 +UniRef50_UPI00041F446B ABC transporter 0.458651381902 0.5 0.0413486180976 +UniRef50_UPI0001F27501 alcohol dehydrogenase 0.434791600187 0.5 0.0652083998127 +UniRef50_U2Z8B8 0.0182947732594 0.5 0.481705226741 +UniRef50_UPI0003731013 hypothetical protein 0.066696009866 0.5 0.433303990134 +UniRef50_D7CNA1 Radical SAM domain protein 0.0375366308531 0.500000000001 0.462463369146 +UniRef50_Q494C7 ATP synthase subunit b 2.62525414937 0.500000000001 -2.12525414937 +UniRef50_UPI00037C704A hypothetical protein 1.27177387394 0.5 -0.771773873937 +UniRef50_Q6F739 0.00846760359981 0.5 0.4915323964 +UniRef50_W0GX12 1.16629600278 0.5 -0.666296002784 +UniRef50_UPI0003B6FA07 D ribose transporter ATP binding protein 3.4265626023 0.499999999998 -2.9265626023 +UniRef50_Q3JRC8 0.0234205826826 0.5 0.476579417318 +UniRef50_A4WVY8 Ribosomal RNA small subunit methyltransferase G 2.75674906208 0.499999999997 -2.25674906208 +UniRef50_A0KE20 Alcohol dehydrogenase GroES domain protein 1.44015591813 0.500000000001 -0.940155918134 +UniRef50_Q11KE0 1 deoxy D xylulose 5 phosphate synthase 2.6406970007 0.5 -2.1406970007 +UniRef50_H6PBH3 Thioredoxin 1.40868716257 0.5 -0.90868716257 +UniRef50_K0RB57 0.0903356159405 0.5 0.40966438406 +UniRef50_N6UWS6 0.0158420971499 0.5 0.48415790285 +UniRef50_P76234 3.30887749096 0.499999999999 -2.80887749096 +UniRef50_P25696 Bifunctional enolase 2 transcriptional activator 0.0243747959778 0.5 0.475625204022 +UniRef50_Q1D5H7 Mutator mutT protein 0.0139826773653 0.5 0.486017322635 +UniRef50_S5YFQ1 0.636444385764 0.5 -0.136444385764 +UniRef50_A6M2M5 0.174214729996 0.5 0.325785270004 +UniRef50_UPI0002BA0B17 TetR family transcriptional regulator 0.0829376986379 0.5 0.417062301362 +UniRef50_Q2G0B1 HTH type transcriptional regulator MgrA 10.228816066 0.499999999989 -9.72881606601 +UniRef50_UPI000288E524 OsmC like protein 0.528543450313 0.5 -0.0285434503128 +UniRef50_UPI000382593D hypothetical protein 0.199955843296 0.5 0.300044156704 +UniRef50_X6KWY4 0.95812715259 0.5 -0.45812715259 +UniRef50_O27390 Diaminopimelate decarboxylase 0.971081494431 0.5 -0.471081494431 +UniRef50_UPI0003C19995 PREDICTED 1.78280859439 0.5 -1.28280859439 +UniRef50_UPI00030C3B7B hypothetical protein 0.123999662328 0.5 0.376000337672 +UniRef50_Q1GIB5 Peptide chain release factor 2 2.14937907992 0.5 -1.64937907992 +UniRef50_F0YJ84 0.309193649496 0.5 0.190806350504 +UniRef50_M1MBM8 ATP dependent DNA helicase, UvrD REP family 0.541660473909 0.5 -0.0416604739086 +UniRef50_K7SJM7 PAC2 family protein 0.0380211499643 0.5 0.461978850036 +UniRef50_M4UY53 Cytochrome c type biogenesis protein CcsA ResC 0.0213550736692 0.5 0.47864492633 +UniRef50_UPI000197AB5D isopentenyldiphosphate isomerase 1.78421411975 0.5 -1.28421411975 +UniRef50_Q58131 Acetylornithine aminotransferase 11.1171701368 0.5 -10.6171701368 +UniRef50_A8L3S1 Malate dehydrogenase 0.451654382892 0.5 0.0483456171075 +UniRef50_Q4MN04 0.770673139125 0.5 -0.270673139125 +UniRef50_D3E3T4 4Fe 4S binding domain containing protein 3.5695858155 0.500000000002 -3.0695858155 +UniRef50_Q9RVU1 0.0200243007216 0.5 0.479975699278 +UniRef50_UPI000329107E 0.354552569897 0.5 0.145447430103 +UniRef50_U5MZL4 Alpha amylase 0.0845980337816 0.5 0.415401966219 +UniRef50_F2MMN9 Dihydroorotate dehydrogenase B ), catalytic subunit 0.0242881543428 0.5 0.475711845657 +UniRef50_Q4L5S4 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 8.21278368603 0.49999999999 -7.71278368602 +UniRef50_Q17Z65 NADH quinone oxidoreductase subunit N 0.0144939871662 0.5 0.485506012834 +UniRef50_Q3J1R9 Operon regulator SmoC 5.9119060571 0.500000000001 -5.4119060571 +UniRef50_Q4KIS2 Adenine deaminase 0.605323218195 0.5 -0.105323218195 +UniRef50_Q9CE42 Peptide methionine sulfoxide reductase MsrA 2 2.96388764595 0.499999999998 -2.46388764595 +UniRef50_A6WVY1 Dihydroorotate dehydrogenase 0.393504791592 0.5 0.106495208408 +UniRef50_P76083 3 hydroxyadipyl CoA dehydrogenase 3.23558985113 0.500000000001 -2.73558985113 +UniRef50_P70996 4.21300271475 0.500000000001 -3.71300271475 +UniRef50_UPI00036C37A7 hypothetical protein 0.209068553214 0.5 0.290931446786 +UniRef50_C7NA93 0.269914644667 0.5 0.230085355333 +UniRef50_V4QCD9 1.04205544784 0.5 -0.542055447839 +UniRef50_UPI00047938D1 hypothetical protein 0.250578084575 0.5 0.249421915425 +UniRef50_UPI0001C4F313 putative helicase 0.214147040597 0.5 0.285852959403 +UniRef50_A7IGG7 ABC transporter related 2.24199960796 0.5 -1.74199960796 +UniRef50_Q5FP90 Probable malate 0.209853847643 0.5 0.290146152357 +UniRef50_E7BHI6 0.00562288180696 0.5 0.494377118193 +UniRef50_E3A2J2 0.597869828583 0.5 -0.0978698285829 +UniRef50_Q2NYD6 Anthranilate phosphoribosyltransferase 0.0409099942173 0.5 0.459090005783 +UniRef50_F2R2E2 0.202167682038 0.5 0.297832317962 +UniRef50_Q9HV34 Polyamine aminopropyl transferase 2 0.883493628902 0.5 -0.383493628902 +UniRef50_UPI000412C9C3 hypothetical protein 2.06659896507 0.499999999998 -1.56659896506 +UniRef50_UPI000441854A ribosomal protein L17 0.600519417156 0.5 -0.100519417156 +UniRef50_A6LWA6 Transcriptional regulator, TetR family 0.352335723997 0.5 0.147664276003 +UniRef50_G8VIN9 0.0984983359361 0.5 0.401501664064 +UniRef50_R9NMN5 1.17591543911 0.5 -0.675915439114 +UniRef50_E8TFY3 Amidohydrolase 3 0.621694409762 0.5 -0.121694409762 +UniRef50_Q8D5H0 GlpM protein 0.773536281435 0.5 -0.273536281435 +UniRef50_Q9HTQ5 0.139793922773 0.5 0.360206077227 +UniRef50_A1B622 5 Nucleotidase domain protein 2.02065677074 0.5 -1.52065677074 +UniRef50_Q1QJ95 Uroporphyrinogen decarboxylase 0.235243545768 0.5 0.264756454232 +UniRef50_Q9HTQ9 0.11279717664 0.5 0.38720282336 +UniRef50_B0V5K4 Copper resistance protein A 0.0995491893053 0.5 0.400450810695 +UniRef50_P45608 Phosphate regulon sensor protein PhoR 1.3320422324 0.499999999999 -0.832042232395 +UniRef50_UPI00046CFE04 hypothetical protein 0.0273397651837 0.5 0.472660234816 +UniRef50_A6M0G0 Binding protein dependent transport systems inner membrane component 0.227337209919 0.5 0.272662790081 +UniRef50_UPI0003B46DF8 ABC transporter permease 1.31044951735 0.5 -0.810449517348 +UniRef50_R9YPY4 Phage head morphogenesis , SPP1 gp7 family domain protein 1.48104259729 0.5 -0.981042597291 +UniRef50_UPI000380AB63 hypothetical protein 0.325580471235 0.5 0.174419528765 +UniRef50_A3PNV6 1.50138936289 0.5 -1.00138936289 +UniRef50_S1QWB9 0.300336218487 0.5 0.199663781513 +UniRef50_I9JNX9 Porin thermoregulatory protein EnvY 0.251905796385 0.5 0.248094203615 +UniRef50_Q2G0P2 Transcription termination antitermination protein NusG 1.29409013202 0.5 -0.794090132024 +UniRef50_M4U471 0.710818779641 0.5 -0.210818779641 +UniRef50_UPI0003B52E8B IMP cyclohydrolase 0.0645733190165 0.5 0.435426680983 +UniRef50_E7BFN4 0.0874997809202 0.499999999999 0.412500219081 +UniRef50_I6SU84 Transcriptional regulator 4.37254433953 0.499999999999 -3.87254433953 +UniRef50_B9E705 0.825951148943 0.5 -0.325951148943 +UniRef50_K0HLL2 Peptidase, M24 family protein 0.0115878132262 0.5 0.488412186774 +UniRef50_Q6A853 0.0112139775874 0.5 0.488786022412 +UniRef50_UPI0003D397E3 transposase and inactivated derivatives 20.6863811343 0.499999999992 -20.1863811343 +UniRef50_H4F795 Replication protein C 1.22737914031 0.5 -0.727379140314 +UniRef50_A0A023V7M1 ATPase 0.193617593381 0.5 0.306382406619 +UniRef50_Q9RX33 B cell receptor associated protein related protein 0.00709486085016 0.5 0.49290513915 +UniRef50_UPI0003809CA6 hypothetical protein 0.226917104467 0.5 0.273082895533 +UniRef50_U2Z2K4 Transport protein 3.95715655384 0.499999999999 -3.45715655384 +UniRef50_D3NUN2 2.75223720589 0.500000000003 -2.25223720589 +UniRef50_D3NUN3 0.275730775521 0.5 0.224269224479 +UniRef50_P39691 Thiol 1.22708106038 0.5 -0.727081060379 +UniRef50_Q67NS9 GTPase Der 0.58620792926 0.5 -0.0862079292604 +UniRef50_UPI00037AD157 hypothetical protein 0.540994994244 0.5 -0.0409949942436 +UniRef50_K8DSJ2 Membrane bound lytic murein transglycosylase A 0.877631738216 0.5 -0.377631738216 +UniRef50_F0YBW7 Expressed protein 2.03005754438 0.5 -1.53005754438 +UniRef50_J7QRA8 0.387778340165 0.5 0.112221659835 +UniRef50_D5AP78 Demethylspheroidene O methyltransferase 0.307558463494 0.5 0.192441536506 +UniRef50_UPI0001470FF7 MULTISPECIES 0.384236498361 0.5 0.115763501639 +UniRef50_UPI0001D30F07 hypothetical protein 0.268571320514 0.5 0.231428679486 +UniRef50_M1E6A4 1 deoxy D xylulose 5 phosphate synthase 0.0418196817494 0.5 0.458180318251 +UniRef50_Q9I526 Cysteine synthase B 0.595650434263 0.5 -0.0956504342627 +UniRef50_R6W8A5 0.791488404834 0.5 -0.291488404834 +UniRef50_D2NRM9 Aldehyde 0.0561142556954 0.5 0.443885744305 +UniRef50_R7A897 1.17116730458 0.5 -0.671167304577 +UniRef50_UPI00046644F9 putrescine spermidine ABC transporter substrate binding protein 0.44561065768 0.5 0.0543893423198 +UniRef50_A6TCE8 Co chaperone protein HscB 3.9732852238 0.500000000002 -3.47328522381 +UniRef50_R4ZXB5 Cation transporting ATPase, E1 E2 family 3.39124152543 0.5 -2.89124152543 +UniRef50_D5AR83 L malyl CoA beta methylmalyl CoA lyase 2.51887380746 0.5 -2.01887380746 +UniRef50_UPI0003B31758 ABC transporter 0.202918615021 0.5 0.297081384979 +UniRef50_Q16AG3 0.607664045097 0.5 -0.107664045097 +UniRef50_T6HYQ6 Nitrite extrusion protein 2 0.0763736477555 0.5 0.423626352244 +UniRef50_A5ULE7 Molybdenum cofactor biosynthesis protein, MoaB 2.44059992973 0.500000000001 -1.94059992973 +UniRef50_Q0BSD5 Alanine tRNA ligase 3.4847634227 0.5 -2.9847634227 +UniRef50_P30140 2 iminoacetate synthase 0.37692023165 0.5 0.12307976835 +UniRef50_Q0TP59 33 kDa chaperonin 1.60106436957 0.5 -1.10106436957 +UniRef50_A6VEM4 0.985991731222 0.5 -0.485991731222 +UniRef50_D5ASM9 Peptide deformylase 0.753076653632 0.5 -0.253076653632 +UniRef50_C3A4E4 0.0062729057964 0.500000000001 0.493727094203 +UniRef50_V4R261 0.0302085438842 0.5 0.469791456116 +UniRef50_M1MAA9 0.0712319718782 0.5 0.428768028122 +UniRef50_A3LL40 0.271518166246 0.5 0.228481833754 +UniRef50_UPI000288786A cold shock DNA binding domain containing protein 0.328381122969 0.5 0.171618877031 +UniRef50_UPI0002E3DB0E gluconokinase 0.290008901186 0.5 0.209991098814 +UniRef50_H0A701 0.193133025199 0.5 0.306866974801 +UniRef50_Q6F9S8 Molybdopterin biosynthesis protein OR thiamin thiazole moiety synthesis (ThiF) 0.00799726994568 0.5 0.492002730054 +UniRef50_U3T3B6 Phospholipase D protein 0.00385742879176 0.499999999999 0.496142571209 +UniRef50_S5YCI7 Transcriptional regulator, AraC family 1.81398587467 0.5 -1.31398587467 +UniRef50_Q9HXP6 0.805217151262 0.5 -0.305217151262 +UniRef50_S1SXR1 0.483484431203 0.5 0.0165155687969 +UniRef50_F9YZQ4 Endoglycoceramidase 0.0179673872871 0.5 0.482032612713 +UniRef50_UPI0003B3872E branched chain alpha keto acid dehydrogenase subunit E2 0.0330120626442 0.5 0.466987937356 +UniRef50_A0A023RTZ1 LysR family transcriptional regulator 0.00949916681147 0.5 0.490500833188 +UniRef50_A7X0P1 1.28165675052 0.5 -0.781656750518 +UniRef50_Q8TSH7 Malate dehydrogenase 0.734563228545 0.5 -0.234563228545 +UniRef50_I3USA0 MscS mechanosensitive ion channel 0.463209898381 0.5 0.0367901016186 +UniRef50_P0AFL2 Putrescine transport system permease protein PotI 1.571980977 0.5 -1.071980977 +UniRef50_M4RDZ6 Taurine transporting AtPase 3.57518816177 0.499999999999 -3.07518816177 +UniRef50_UPI0003769FA7 Fis family transcriptional regulator 2.20760958548 0.499999999999 -1.70760958548 +UniRef50_UPI00040692FE hypothetical protein 3.14792360345 0.5 -2.64792360345 +UniRef50_I7GKU7 Macaca fascicularis brain cDNA clone 1.73607029275 0.5 -1.23607029275 +UniRef50_D6CV88 4.23028831842 0.500000000002 -3.73028831842 +UniRef50_UPI000383163D hypothetical protein 0.55617923794 0.5 -0.0561792379402 +UniRef50_K5XT53 Phenol hydroxylase 2.72452942734 0.499999999999 -2.22452942734 +UniRef50_UPI00041A7C16 hypothetical protein 4.71874613497 0.500000000003 -4.21874613497 +UniRef50_UPI00047AECEE KaiC 1 2.1211860428 0.5 -1.6211860428 +UniRef50_UPI00046F4CAF hypothetical protein 13.5987524187 0.499999999993 -13.0987524187 +UniRef50_UPI00034D1E75 membrane protein 0.453036178023 0.5 0.0469638219769 +UniRef50_D8QF05 0.121236314375 0.5 0.378763685625 +UniRef50_Q890Q5 Adenylate kinase 0.306326645539 0.5 0.193673354461 +UniRef50_M2ATY2 ParB like partition protein 2.90021572245 0.5 -2.40021572245 +UniRef50_S1DY96 0.160243563782 0.5 0.339756436218 +UniRef50_UPI0001D2F09B permease 0.829690472763 0.5 -0.329690472763 +UniRef50_UPI000405BEEA hypothetical protein 1.69772978582 0.5 -1.19772978582 +UniRef50_K2M4Q0 0.201959208104 0.5 0.298040791896 +UniRef50_Q2FYR2 Aminoacyltransferase FemA 1.09019646075 0.5 -0.590196460746 +UniRef50_P77156 Inner membrane ABC transporter permease protein YdcU 2.11525532974 0.499999999999 -1.61525532973 +UniRef50_E6KQ43 Membrane protein 0.0143688508091 0.5 0.485631149191 +UniRef50_H8Z7W7 TPR repeat containing protein 0.244378306776 0.5 0.255621693224 +UniRef50_UPI000381814C hypothetical protein 0.109308286284 0.500000000001 0.390691713715 +UniRef50_UPI0003805D01 hypothetical protein, partial 0.780116948172 0.5 -0.280116948172 +UniRef50_R9CBP1 Flagellar hook capping protein 0.366285291797 0.5 0.133714708203 +UniRef50_A4XQY6 4.40884806465 0.500000000003 -3.90884806465 +UniRef50_UPI00037FD9F7 hypothetical protein 0.039318308787 0.5 0.460681691213 +UniRef50_UPI00036C7A2E hypothetical protein 0.73442874193 0.5 -0.23442874193 +UniRef50_Q9I5G7 Signal peptidase I 0.556015816702 0.5 -0.0560158167019 +UniRef50_F8FZW4 0.158002865796 0.5 0.341997134204 +UniRef50_Q6I286 S layer protein, putative 0.00997305222676 0.500000000001 0.490026947773 +UniRef50_A7Z463 Adenine deaminase 1.710499107 0.499999999999 -1.210499107 +UniRef50_D7C3J3 0.0148318619205 0.5 0.48516813808 +UniRef50_Q3JVB5 Integral membrane protein MviN 0.953517473206 0.5 -0.453517473206 +UniRef50_UPI00036BA72B hypothetical protein 0.686109252991 0.5 -0.186109252991 +UniRef50_UPI00045EA377 secondary thiamine phosphate synthase 0.322716096149 0.5 0.177283903851 +UniRef50_Q36837 Cytochrome c oxidase subunit 3 2.89169110186 0.500000000001 -2.39169110186 +UniRef50_UPI000470F200 ATP dependent DNA helicase RuvA 0.600427559746 0.5 -0.100427559746 +UniRef50_P33360 Putative osmoprotectant uptake system ATP binding protein YehX 0.616734230388 0.5 -0.116734230388 +UniRef50_N6UWC7 0.50376248574 0.5 -0.00376248573993 +UniRef50_I0LGS3 0.346316627339 0.5 0.153683372661 +UniRef50_U5MX92 Sensory transduction protein LytT 0.0529081621381 0.500000000001 0.447091837861 +UniRef50_L1K958 2.96248518665 0.5 -2.46248518665 +UniRef50_UPI00047330EC hypothetical protein 1.50719375411 0.5 -1.00719375411 +UniRef50_D3E3Z6 Energy converting hydrogenase A subunit F EhaF 1.00924178999 0.5 -0.509241789986 +UniRef50_UPI0004658BC5 hypothetical protein 1.90401234768 0.5 -1.40401234768 +UniRef50_B6ZYE2 Galactosamine 6 phosphate isomerase 0.264049831804 0.5 0.235950168196 +UniRef50_UPI00036A070A hypothetical protein 0.139493305926 0.499999999999 0.360506694075 +UniRef50_UPI00046F612F hypothetical protein 1.57732088359 0.500000000001 -1.0773208836 +UniRef50_R9XSB4 UvrABC system protein A 0.484473294587 0.5 0.0155267054127 +UniRef50_D5UV60 Acyl CoA dehydrogenase domain protein 0.840711501054 0.5 -0.340711501054 +UniRef50_B8ZJM7 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.66375765659 0.5 -0.16375765659 +UniRef50_R5W2L7 0.0231786042617 0.5 0.476821395739 +UniRef50_A5UP24 Predicted type II restriction enzyme, methylase subunit 4.58719968535 0.5 -4.08719968535 +UniRef50_A6LY51 Type IV pilus assembly PilZ 0.153513139488 0.5 0.346486860512 +UniRef50_B5ZUG3 NAD NADP dependent betaine aldehyde dehydrogenase 3.71236488992 0.500000000001 -3.21236488992 +UniRef50_Q7NYS3 4.55926562279 0.500000000001 -4.05926562279 +UniRef50_P18777 Anaerobic dimethyl sulfoxide reductase chain C 0.663945361854 0.5 -0.163945361854 +UniRef50_A0Q197 DNA topoisomerase IV subunit B 0.154700234409 0.5 0.345299765591 +UniRef50_UPI00036632E6 hypothetical protein 0.105022942113 0.5 0.394977057887 +UniRef50_P30335 Nitrogen regulatory protein 0.334846416746 0.5 0.165153583254 +UniRef50_Q1KVX6 Light independent protochlorophyllide reductase subunit N 1.44801894096 0.5 -0.94801894096 +UniRef50_UPI00046F1C42 nitrogen regulatory protein P II 1 1.46702166138 0.5 -0.967021661385 +UniRef50_D9WR73 Anti sigma B factor RsbT 0.00418070599694 0.5 0.495819294004 +UniRef50_E6PC05 0.5093814317 0.5 -0.0093814317004 +UniRef50_UPI0003FFD344 membrane protein 0.342684546218 0.5 0.157315453782 +UniRef50_UPI00047C9EAC ABC transporter 0.0709046455997 0.5 0.429095354401 +UniRef50_Q9RW70 Glucose fructose oxidoreductase 0.00236024400286 0.5 0.497639755997 +UniRef50_O27472 2.15254417605 0.499999999999 -1.65254417605 +UniRef50_R5YRU3 dTDP 4 dehydrorhamnose reductase 1.42351386239 0.5 -0.923513862392 +UniRef50_A6LVM3 Drug resistance transporter, EmrB QacA subfamily 0.291366696682 0.5 0.208633303318 +UniRef50_UPI00020D92F9 hypothetical protein 0.35022580724 0.5 0.14977419276 +UniRef50_K4NLN5 0.00916088263933 0.5 0.490839117361 +UniRef50_H3YKG2 0.351892055712 0.5 0.148107944288 +UniRef50_O27911 2 phosphoglycerate kinase 0.825463505511 0.5 -0.325463505511 +UniRef50_H8E733 NAD synthase 0.105538437517 0.5 0.394461562483 +UniRef50_Q04FF6 Arginine tRNA ligase 0.901377996256 0.5 -0.401377996256 +UniRef50_UPI000374A709 hypothetical protein 0.0225480557767 0.5 0.477451944223 +UniRef50_UPI000163236E hypothetical protein 0.373976048368 0.5 0.126023951632 +UniRef50_Q5HLR8 2.06739628805 0.499999999999 -1.56739628805 +UniRef50_UPI0003B7A728 sulfate ABC transporter permease, partial 1.09798149251 0.5 -0.597981492505 +UniRef50_Q9JY28 0.0127928306594 0.5 0.487207169341 +UniRef50_I6L8N6 Capsular polysaccharide biosynthesis protein Cps4E 0.00562139821848 0.5 0.494378601782 +UniRef50_Q5E480 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.00036601955 0.499999999999 -1.50036601955 +UniRef50_U5PDI4 Glycosyltransferase 1.45861699727 0.5 -0.958616997268 +UniRef50_UPI00035ED085 hypothetical protein 1.21144918922 0.500000000001 -0.711449189225 +UniRef50_R7E7K8 0.848489339577 0.5 -0.348489339577 +UniRef50_E8SGJ9 Substrate specific component ThiW of predicted thiazole ECF transporter 1.25948070892 0.499999999998 -0.75948070892 +UniRef50_B2I1P2 Ankyrin repeat protein 0.00056670772434 0.5 0.499433292276 +UniRef50_Q3IW29 22.1030067193 0.499999999968 -21.6030067193 +UniRef50_Q3IW25 3.25431771142 0.5 -2.75431771142 +UniRef50_A7MPG3 0.538622215992 0.5 -0.0386222159916 +UniRef50_Q3IW20 1.1780219694 0.5 -0.678021969405 +UniRef50_P57162 Serine acetyltransferase 1.54210741393 0.500000000001 -1.04210741393 +UniRef50_UPI00016A72E3 oxidoreductase, 2 nitropropane dioxygenase family protein 0.0260227662862 0.499999999999 0.473977233714 +UniRef50_UPI0004726F0A hypothetical protein 0.555253189687 0.5 -0.0552531896873 +UniRef50_Q8XWD0 Tyrosine recombinase XerD 0.138880359923 0.5 0.361119640077 +UniRef50_D6M3V3 Peptidase C14, caspase catalytic subunit p20 0.0601074095965 0.5 0.439892590403 +UniRef50_Q9HU63 0.651481131432 0.5 -0.151481131432 +UniRef50_A8YWB0 50S ribosomal protein L33 1 0.557302157496 0.5 -0.0573021574963 +UniRef50_Q5HS39 Replication associated protein RepA 1.55229877925 0.499999999999 -1.05229877925 +UniRef50_UPI0001C2FA1D 4E10_S0_1TJLC_004_N 0.400078057326 0.5 0.0999219426742 +UniRef50_P76573 4.19611001653 0.500000000001 -3.69611001653 +UniRef50_UPI00037E947E hypothetical protein 1.44301282323 0.5 -0.943012823232 +UniRef50_UPI00035F6D48 hypothetical protein 1.95903247028 0.5 -1.45903247028 +UniRef50_S3X0W6 0.106818608875 0.5 0.393181391125 +UniRef50_Q4KG00 1.35874679006 0.5 -0.85874679006 +UniRef50_B5GRY7 0.736641080195 0.5 -0.236641080195 +UniRef50_R4GKT3 0.975923745584 0.5 -0.475923745584 +UniRef50_A8TTI0 0.217180386895 0.5 0.282819613105 +UniRef50_F7X525 ABC transporter, periplasmic solute binding protein 0.913972485684 0.5 -0.413972485684 +UniRef50_I3TJX2 0.211811383823 0.5 0.288188616177 +UniRef50_P75748 1.34633290994 0.5 -0.846332909944 +UniRef50_A5UKK3 2.6843210989 0.499999999999 -2.1843210989 +UniRef50_Q5HFR9 Pyrroline 5 carboxylate reductase 0.98386071391 0.5 -0.48386071391 +UniRef50_UPI0002880C2A histidine kinase 0.373193864079 0.5 0.126806135921 +UniRef50_UPI0003822CF6 hypothetical protein 2.20401519462 0.5 -1.70401519462 +UniRef50_A5UKK6 1.11647072996 0.500000000001 -0.616470729963 +UniRef50_U3T1P2 Sulfate permease 0.0135936515671 0.5 0.486406348433 +UniRef50_UPI00005C81F5 hypothetical protein RSP_4057 0.946445431285 0.5 -0.446445431285 +UniRef50_A9M1Y8 UPF0761 membrane protein NMCC_0461 0.0628334009508 0.5 0.437166599049 +UniRef50_Q5HRH1 1.95811485514 0.499999999999 -1.45811485513 +UniRef50_Q1JQN1 Cell division inhibitor SulA 5.62458086215 0.499999999999 -5.12458086215 +UniRef50_D7CUB2 RNA binding S1 domain protein 0.00331011529198 0.5 0.496689884708 +UniRef50_I2F4T7 0.294066636085 0.5 0.205933363915 +UniRef50_UPI0003806E6C hypothetical protein 0.642412388356 0.5 -0.142412388356 +UniRef50_I0ZAW9 0.319560307808 0.5 0.180439692192 +UniRef50_T1Y9B2 Phosphotransferase enzyme family protein 2.92728665857 0.500000000001 -2.42728665857 +UniRef50_T2HS98 0.801626020565 0.5 -0.301626020565 +UniRef50_E1I6F8 0.320246059549 0.5 0.179753940451 +UniRef50_UPI00031BE1DB hypothetical protein 0.559380156518 0.5 -0.0593801565178 +UniRef50_Q1QAV9 0.0225346104683 0.5 0.477465389532 +UniRef50_A3CLN3 GTP binding protein TypA BipA, putative 0.520564145926 0.5 -0.020564145926 +UniRef50_Q92GC1 3 oxoacyl [acyl carrier protein] synthase 3 3.98070552254 0.500000000001 -3.48070552254 +UniRef50_O27543 3,4 dihydroxy 2 butanone 4 phosphate synthase 4.19240695759 0.5 -3.69240695759 +UniRef50_UPI000428CAD9 hypothetical protein 1.2224520406 0.5 -0.722452040599 +UniRef50_P06709 Bifunctional ligase repressor BirA 1.65299071554 0.499999999999 -1.15299071554 +UniRef50_Q1R618 48.5655412726 0.499999999988 -48.0655412725 +UniRef50_UPI000373C739 hypothetical protein 0.255663538091 0.5 0.244336461909 +UniRef50_Q8X534 Enterobactin exporter EntS 9.80585110645 0.500000000007 -9.30585110646 +UniRef50_C2XMN3 0.0074583301967 0.5 0.492541669803 +UniRef50_B1LTL1 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.20676184703 0.5 -0.706761847033 +UniRef50_A0A021WYQ6 Plasmid partitioning protein RepA 1.27329860433 0.5 -0.773298604328 +UniRef50_Q1R614 0.228151136094 0.5 0.271848863906 +UniRef50_A5UEK8 Chromosome partition protein MukB 2.51662423319 0.499999999999 -2.01662423319 +UniRef50_UPI0002375359 EmrB QacA family drug resistance transporter 0.343957332459 0.5 0.156042667541 +UniRef50_UPI000472C1EF amino acid ABC transporter ATPase 0.0170692908279 0.5 0.482930709172 +UniRef50_A3PMP8 UPF0178 protein Rsph17029_2512 7.28089612911 0.499999999997 -6.78089612911 +UniRef50_Q2W200 Hypothetical 217 kDa protein Y4HQ 5.30517798635 0.499999999994 -4.80517798634 +UniRef50_UPI00006CFE7F glutaredoxin related protein 0.961800454047 0.5 -0.461800454047 +UniRef50_UPI0002ED7898 hypothetical protein 1.27854044652 0.5 -0.778540446524 +UniRef50_E1Z4K9 0.219704419048 0.5 0.280295580952 +UniRef50_R4RE02 Amino acid permease YtnA 0.00741663881834 0.5 0.492583361182 +UniRef50_A5FSB7 Ribosomal RNA small subunit methyltransferase H 0.294301426409 0.5 0.205698573591 +UniRef50_P44726 UPF0701 protein HI_0467 0.658091413199 0.5 -0.158091413199 +UniRef50_B0V531 Bifunctional protein 0.0241546531103 0.5 0.47584534689 +UniRef50_Q9DC70 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 0.238618142695 0.5 0.261381857305 +UniRef50_T3GII0 Zinc binding dehydrogenase family protein 0.527415552785 0.5 -0.0274155527855 +UniRef50_B2JHN6 Integral membrane sensor signal transduction histidine kinase 0.763892630723 0.5 -0.263892630723 +UniRef50_UPI00037A6516 hypothetical protein 1.66420015632 0.5 -1.16420015632 +UniRef50_B9KX95 0.660492377204 0.5 -0.160492377204 +UniRef50_B2TIX9 FliB domain protein 0.422591542306 0.5 0.0774084576941 +UniRef50_I0C729 1.55721588999 0.500000000002 -1.05721588999 +UniRef50_K1ZPS1 0.132274705632 0.5 0.367725294368 +UniRef50_UPI0004792537 hypothetical protein 0.756287293136 0.5 -0.256287293136 +UniRef50_UPI00047030B9 hypothetical protein 3.95247912501 0.499999999999 -3.45247912501 +UniRef50_Q2FG85 Holliday junction ATP dependent DNA helicase RuvA 3.65661657051 0.500000000003 -3.15661657051 +UniRef50_Q5M0X3 Bifunctional protein PyrR 0.00314922645045 0.499999999999 0.49685077355 +UniRef50_UPI000409D13D alpha beta hydrolase 2.65382970727 0.5 -2.15382970727 +UniRef50_A1YZ52 PdmP3 0.448814750782 0.5 0.0511852492184 +UniRef50_A5V451 0.794253951277 0.5 -0.294253951277 +UniRef50_UPI00037F3B9E transcriptional regulator 0.409975655544 0.5 0.0900243444556 +UniRef50_UPI00028A17CA serine threonine protein kinase like protein 1.78678392793 0.5 -1.28678392793 +UniRef50_UPI000360B53A hypothetical protein, partial 0.140898255723 0.5 0.359101744277 +UniRef50_C5N461 MAP domain protein 4.34841343325 0.5 -3.84841343325 +UniRef50_R9T5B9 0.0272586478881 0.5 0.472741352112 +UniRef50_UPI0004765C33 translation initiation factor IF 3 0.363839803513 0.5 0.136160196487 +UniRef50_C1DAI5 Glucose 6 phosphate isomerase 0.0468931387506 0.5 0.45310686125 +UniRef50_E3F1U6 Integrase 2.07035523455 0.5 -1.57035523455 +UniRef50_UPI00036EA793 hypothetical protein 0.916721098361 0.5 -0.416721098361 +UniRef50_UPI0004749630 phosphate starvation inducible protein PhoH, partial 0.7316902189 0.5 -0.2316902189 +UniRef50_A6M2K0 Cell wall surface repeat protein 0.113193162046 0.5 0.386806837953 +UniRef50_Q6FFQ0 Alpha ketoglutaric semialdehyde dehydrogenase 0.0164125267093 0.5 0.48358747329 +UniRef50_I1AWS6 Replication initiation protein RepC 2.51211521966 0.5 -2.01211521966 +UniRef50_P46384 Protein PilG 5.4264597097 0.500000000001 -4.9264597097 +UniRef50_Q9I6C8 Probable coniferyl aldehyde dehydrogenase 2.45443662106 0.5 -1.95443662106 +UniRef50_A7BCW8 Cell wall binding repeat protein 0.00610201991694 0.500000000001 0.493897980082 +UniRef50_P09996 2.59020742796 0.5 -2.09020742796 +UniRef50_A6UCT4 Glycosyl transferase family 8 4.02137136677 0.5 -3.52137136677 +UniRef50_P0ADI5 Isochorismatase 0.273497489872 0.5 0.226502510128 +UniRef50_A3PIG7 0.314312482774 0.5 0.185687517226 +UniRef50_S5VV73 0.0227553724636 0.5 0.477244627536 +UniRef50_B5ZE82 Two component transcriptional regulator, winged helix family 1.18970094346 0.5 -0.689700943458 +UniRef50_S9TC28 8.63700005681 0.5 -8.13700005681 +UniRef50_E3EDG6 Ser Thr phosphatase family protein 0.0818374576539 0.5 0.418162542346 +UniRef50_UPI0003AE0E04 0.193806465597 0.5 0.306193534403 +UniRef50_F0RM84 Long chain fatty acid CoA ligase 0.00231721333362 0.5 0.497682786667 +UniRef50_Q8X8F2 Porin OmpL 0.825862351669 0.5 -0.325862351669 +UniRef50_UPI0003A831EB hypothetical protein 1.98903254813 0.5 -1.48903254813 +UniRef50_Q9HJ59 Nucleoside diphosphate kinase 0.0624429584855 0.5 0.437557041514 +UniRef50_I0C0Q8 5 nucleotidase 1.62832925029 0.499999999998 -1.12832925029 +UniRef50_A6M0I0 Ferredoxin hydrogenase 0.415069683827 0.5 0.0849303161729 +UniRef50_Q9RTC8 0.000432152158412 0.5 0.499567847842 +UniRef50_P77265 Multidrug resistance like ATP binding protein MdlA 1.17540354695 0.5 -0.675403546951 +UniRef50_A6M2M2 NLP P60 protein 0.075522145453 0.5 0.424477854547 +UniRef50_H6NSQ0 2 deoxy D gluconate 3 dehydrogenase 0.671645893216 0.5 -0.171645893216 +UniRef50_F9PRQ2 0.223110739237 0.5 0.276889260763 +UniRef50_Q9RTC4 0.0176050567505 0.5 0.482394943249 +UniRef50_A5D144 UDP N acetylmuramate L alanine ligase 0.316060782619 0.5 0.183939217381 +UniRef50_A0A035VZJ1 1.75183082612 0.5 -1.25183082612 +UniRef50_Q9I2J9 Phenazine biosynthesis protein PhzA 2 0.0112276329435 0.5 0.488772367057 +UniRef50_A0A010YSV0 Bifunctional uridylyltransferase uridylyl removing enzyme 0.0326025495522 0.5 0.467397450448 +UniRef50_O31727 UPF0001 protein YlmE 0.624857554379 0.5 -0.124857554379 +UniRef50_A6M141 0.0771536499932 0.499999999999 0.422846350007 +UniRef50_A6M140 0.139022712095 0.5 0.360977287906 +UniRef50_A0A031SXK0 Ferrienterobactin receptor 2.45624043301 0.5 -1.95624043301 +UniRef50_A6M142 0.105025574538 0.500000000001 0.394974425461 +UniRef50_H4TYE9 Citrate synthase 0.96605326489 0.5 -0.46605326489 +UniRef50_R1BPA7 0.227663512592 0.5 0.272336487408 +UniRef50_UPI000478D81C hypothetical protein 0.150182400348 0.5 0.349817599652 +UniRef50_Q9AS52 0.21213541921 0.5 0.28786458079 +UniRef50_UPI00046DCEE5 0.182703971738 0.5 0.317296028262 +UniRef50_UPI0003B553F2 hypothetical protein, partial 0.0485708517631 0.5 0.451429148237 +UniRef50_UPI0003484775 hypothetical protein 0.96984316141 0.5 -0.46984316141 +UniRef50_K7U8Q8 0.415221158534 0.5 0.0847788414662 +UniRef50_Q4FU55 NADH quinone oxidoreductase subunit K 0.10923507818 0.5 0.39076492182 +UniRef50_D4GU70 Low salt glycan biosynthesis nucleotidyltransferase Agl11 2.10962690562 0.5 -1.60962690562 +UniRef50_H3UC52 Nitrate reductase delta subunit 0.0936426243147 0.5 0.406357375685 +UniRef50_Y1QWF2 0.626888287485 0.5 -0.126888287485 +UniRef50_UPI00042B2256 ATP dependent clp protease ATP binding subunit clpx isoform 1 0.239851061188 0.5 0.260148938812 +UniRef50_W1MRY7 Type VI secretion protein ImpA 0.565610057848 0.5 -0.065610057848 +UniRef50_UPI000255EFAA hypothetical protein 0.885626520655 0.5 -0.385626520655 +UniRef50_M2K3R6 0.300074923187 0.5 0.199925076813 +UniRef50_D1DKC6 0.0195044419123 0.5 0.480495558088 +UniRef50_Q27331 V type proton ATPase catalytic subunit A isoform 2 1.67170156806 0.5 -1.17170156806 +UniRef50_N0CAR1 Integrase core subunit 2.80284225414 0.500000000003 -2.30284225414 +UniRef50_A6LWI8 Aluminium resistance family protein 0.0364019696923 0.499999999999 0.463598030309 +UniRef50_A4TTX4 0.180765555663 0.5 0.319234444337 +UniRef50_Q2SGE5 Predicted Zn dependent Hydrolase of the beta lactamase fold 0.00816506957253 0.5 0.491834930427 +UniRef50_Q32IF4 IS911 ORF2 0.289739362525 0.5 0.210260637475 +UniRef50_A6L5D3 0.000800752722212 0.5 0.499199247278 +UniRef50_Q8CS32 1.17441285717 0.5 -0.67441285717 +UniRef50_A8LE49 0.611301322542 0.5 -0.111301322542 +UniRef50_Q8CS31 0.769375387218 0.5 -0.269375387218 +UniRef50_A5WG67 0.0121791116438 0.5 0.487820888356 +UniRef50_S4MJP1 Putative Bifunctional P 450 NADPH P450 reductase 0.0190340050477 0.5 0.480965994952 +UniRef50_UPI0001D2F0E2 putrescine spermidine ABC transporter permease 0.138759316762 0.5 0.361240683238 +UniRef50_UPI00037EBD36 hypothetical protein 0.806679957677 0.5 -0.306679957677 +UniRef50_UPI000379E27A hypothetical protein 2.81003659726 0.500000000004 -2.31003659726 +UniRef50_F3QCE5 0.635077932137 0.5 -0.135077932137 +UniRef50_A4WXK9 2.65070260881 0.499999999999 -2.15070260881 +UniRef50_Q53229 UPF0093 membrane protein RHOS4_28450 1.94757250763 0.499999999999 -1.44757250763 +UniRef50_UPI0004799C0B hemolysin type calcium binding protein 1.31433130129 0.5 -0.814331301292 +UniRef50_K0KQ95 Transfer complex protein TraG 7.09935375531 0.500000000001 -6.59935375532 +UniRef50_UPI0001850DBE tRNA delta isopentenylpyrophosphate transferase 1.25401596888 0.5 -0.754015968882 +UniRef50_UPI0003B64D78 oxidoreductase 0.61961656089 0.5 -0.11961656089 +UniRef50_K7S8U6 CvpA family protein 0.0256361606633 0.5 0.474363839337 +UniRef50_UPI000288B21D MarR family transcriptional regulator 0.0602275419923 0.5 0.439772458008 +UniRef50_W5X7H9 Xylose isomerase domain containing protein 2.44026795823 0.500000000002 -1.94026795824 +UniRef50_P32125 Molybdopterin guanine dinucleotide biosynthesis adapter protein 6.21879007726 0.499999999996 -5.71879007726 +UniRef50_E2ZPK4 1.09334306528 0.5 -0.593343065281 +UniRef50_U3T6E5 Penicillin acylase 0.0103341562039 0.5 0.489665843796 +UniRef50_E9BW21 0.211980611651 0.5 0.288019388349 +UniRef50_W1F8X3 Predicted chaperone lipoprotein YacC, potentially involved in protein secretion 0.130302481989 0.5 0.369697518011 +UniRef50_Q9RZB9 O antigen transporter RfbX, putative 0.00175608041793 0.5 0.498243919582 +UniRef50_I8QM64 0.0441306916925 0.5 0.455869308307 +UniRef50_P58965 DNA polymerase IV 0.0759971404155 0.5 0.424002859584 +UniRef50_Q1QE36 Pseudouridine synthase 0.0323770751295 0.5 0.46762292487 +UniRef50_UPI0003B59F61 malonyl CoA ACP transacylase 0.414122336671 0.5 0.0858776633293 +UniRef50_Q6A917 Aspartate carbamoyltransferase 0.0156805807822 0.5 0.484319419218 +UniRef50_Q4L6U5 Probable nicotinate nucleotide adenylyltransferase 5.5028239326 0.499999999998 -5.0028239326 +UniRef50_P27745 Acetoin 0.00148354447727 0.5 0.498516455523 +UniRef50_UPI000470A616 diaminopimelate epimerase 0.228796422378 0.5 0.271203577622 +UniRef50_UPI00046FCCA9 exodeoxyribonuclease III, partial 0.491076638895 0.5 0.00892336110523 +UniRef50_A0A014CIJ3 CDP alcohol phosphatidyltransferase family protein 0.0984745903697 0.5 0.40152540963 +UniRef50_Q3J0W1 7.27511917366 0.499999999998 -6.77511917366 +UniRef50_UPI00035D50AD hypothetical protein 0.77535364959 0.5 -0.27535364959 +UniRef50_A6LU07 Ig domain protein, group 2 domain protein 0.156529485986 0.5 0.343470514014 +UniRef50_Q1QKV0 30S ribosomal protein S6 0.0541655012304 0.499999999999 0.44583449877 +UniRef50_UPI00037AC352 hypothetical protein 7.38638785925 0.499999999999 -6.88638785925 +UniRef50_UPI000023D2B8 hypothetical protein FG07361.1 0.108172569127 0.5 0.391827430873 +UniRef50_Q9I1M1 2 oxoisovalerate dehydrogenase subunit beta 0.299230709417 0.5 0.200769290583 +UniRef50_A3M3E9 Urease accessory protein UreD 0.0134153596435 0.5 0.486584640357 +UniRef50_E6W7Q1 Spore coat U domain protein 1.31463195561 0.5 -0.814631955606 +UniRef50_UPI0003004A80 hypothetical protein 0.370034410727 0.5 0.129965589273 +UniRef50_Q57843 2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase 4.40588453066 0.499999999999 -3.90588453066 +UniRef50_F6T9R8 0.109926531444 0.5 0.390073468556 +UniRef50_A1B620 0.277057883969 0.5 0.222942116031 +UniRef50_UPI0003B333E4 hypothetical protein 0.312090970037 0.5 0.187909029963 +UniRef50_UPI000262ABB1 hypothetical protein 0.109592627334 0.5 0.390407372666 +UniRef50_B1XSD3 ATP synthase gamma chain 0.0297933986185 0.5 0.470206601382 +UniRef50_UPI00030C054C hypothetical protein 0.495821203566 0.5 0.00417879643366 +UniRef50_Q89M20 Blr4373 protein 1.12079805324 0.5 -0.620798053235 +UniRef50_UPI0003A26AF5 TetR family transcriptional regulator 2.96225784581 0.5 -2.46225784581 +UniRef50_Q16B12 3.75260119675 0.499999999998 -3.25260119675 +UniRef50_A5GFZ6 Adenylyltransferase and sulfurtransferase MOCS3 0.265207064328 0.5 0.234792935672 +UniRef50_Q2NQZ7 Glutamate racemase 0.699756667329 0.5 -0.199756667329 +UniRef50_D5HEW0 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.152894689552 0.5 0.347105310448 +UniRef50_Q8CPV5 NADH dehydrogenase like protein SE_0635 1.26072080562 0.5 -0.760720805619 +UniRef50_UPI0004214BAF phospho 2 dehydro 3 deoxyheptonate aldolase 1.22512619594 0.5 -0.725126195936 +UniRef50_P56190 Carbon starvation protein A homolog 0.0137162376264 0.5 0.486283762374 +UniRef50_Q8G564 Cystathionine beta synthase 1.09816472689 0.5 -0.598164726895 +UniRef50_F9JRR2 Cupin domain protein 0.607992799515 0.5 -0.107992799515 +UniRef50_V5VHC2 0.0256931243842 0.5 0.474306875616 +UniRef50_K5X3B2 0.290080419868 0.5 0.209919580132 +UniRef50_P09323 PTS system N acetylglucosamine specific EIICBA component 5.26674735577 0.499999999995 -4.76674735577 +UniRef50_Q3IYY7 Diguanylate cyclase phosphodiesterase 1.20226326361 0.499999999999 -0.702263263604 +UniRef50_J7LDC8 0.296248393732 0.5 0.203751606268 +UniRef50_UPI00037F6FB0 hypothetical protein 0.691159899586 0.5 -0.191159899586 +UniRef50_A3PG69 BLUF domain protein 3.63175089445 0.500000000002 -3.13175089446 +UniRef50_Q3ST27 1.47617544741 0.5 -0.976175447411 +UniRef50_UPI00036B67AF hypothetical protein 0.0816781692208 0.5 0.418321830779 +UniRef50_UPI0003C19F7E PREDICTED 3.99939578841 0.5 -3.49939578841 +UniRef50_P94428 Succinate semialdehyde dehydrogenase [NADP] 0.557795386758 0.5 -0.0577953867583 +UniRef50_M3YVF8 0.812217043874 0.5 -0.312217043874 +UniRef50_F5M325 FkbH like protein 2.40833959239 0.499999999999 -1.90833959239 +UniRef50_R7PQ72 GMP synthase [glutamine hydrolyzing] 0.416318426167 0.5 0.0836815738326 +UniRef50_A3M428 0.0586100129539 0.5 0.441389987046 +UniRef50_X6MXZ9 0.358439010559 0.5 0.141560989441 +UniRef50_D6SIU1 Primosomal protein DnaI 2.95017617116 0.499999999995 -2.45017617116 +UniRef50_M7D0G7 Type II restriction endonuclease 3.28309579669 0.500000000001 -2.78309579669 +UniRef50_A6M2D9 Helix turn helix domain containing protein, AraC type 0.846170029743 0.5 -0.346170029743 +UniRef50_D4HBM5 Glycerate kinase 0.0342623901411 0.5 0.465737609859 +UniRef50_F3U2F5 Acetamidase Formamidase 0.526479932961 0.5 -0.0264799329609 +UniRef50_A3DL27 Ornithine carbamoyltransferase 0.0391668322161 0.5 0.460833167784 +UniRef50_Q895G1 Cytidylate kinase 0.116532739456 0.5 0.383467260544 +UniRef50_Q9ZLT4 CAG pathogenicity island protein 23 0.0620206850586 0.5 0.437979314941 +UniRef50_H6RWI5 Metalloendopeptidase like membrane protein 16.8431073197 0.5 -16.3431073197 +UniRef50_D3I9D0 Pyruvate formate lyase 1 activating enzyme 0.176239411412 0.5 0.323760588588 +UniRef50_L8BL77 CFA I fimbrial subunit C usher protein 1.91265649691 0.499999999999 -1.41265649691 +UniRef50_O22567-2 Isoform 2 of 1 deoxy D xylulose 5 phosphate synthase 1, chloroplastic 0.0293637790277 0.5 0.470636220972 +UniRef50_UPI00036BEC99 phosphoheptose isomerase 0.275600808675 0.5 0.224399191325 +UniRef50_K2K0X8 Putative phenol degradation enzyme 2.21519631328 0.5 -1.71519631328 +UniRef50_W7WR24 5.43245985293 0.499999999996 -4.93245985292 +UniRef50_P37767 3.83710931834 0.499999999998 -3.33710931834 +UniRef50_F2AAA0 0.702621155849 0.5 -0.202621155849 +UniRef50_Q3J0V4 Periplasmic sensor diguanylate cyclase 1.60465744132 0.5 -1.10465744132 +UniRef50_I7A0G4 Two component transcriptional regulator 0.756673157434 0.5 -0.256673157434 +UniRef50_Q88RC0 Glutarate semialdehyde dehydrogenase DavD 4.14003337977 0.499999999999 -3.64003337977 +UniRef50_Q47HI2 Ribosomal RNA large subunit methyltransferase E 0.0821486868047 0.5 0.417851313195 +UniRef50_E8PGL4 Endonuclease III 0.0774780880887 0.499999999999 0.422521911912 +UniRef50_B7V5R0 Phosphate ABC transporter, periplasmic phosphate binding protein, PstS 0.791004001556 0.5 -0.291004001556 +UniRef50_UPI0003B56757 GTPase Der 0.279562681254 0.5 0.220437318746 +UniRef50_UPI0003720F40 hypothetical protein, partial 0.179522007548 0.5 0.320477992452 +UniRef50_G2MDU0 Outer membrane protein HopG 0.0099087189299 0.5 0.49009128107 +UniRef50_Q98R27 Proline tRNA ligase 0.153179055743 0.5 0.346820944257 +UniRef50_UPI0003B722EC MULTISPECIES 0.0369343683062 0.5 0.463065631694 +UniRef50_B8IMD9 0.319560307808 0.5 0.180439692192 +UniRef50_A6LV83 AMP dependent synthetase and ligase 0.117468896447 0.5 0.382531103553 +UniRef50_Q8XXC7 Uracil phosphoribosyltransferase 0.395061146219 0.5 0.104938853781 +UniRef50_G8V724 Hsp20 alpha crystallin family protein 2.45917138831 0.500000000001 -1.95917138831 +UniRef50_UPI00047E563E hypothetical protein 3.02425291752 0.500000000001 -2.52425291752 +UniRef50_G9AD09 1.20202861271 0.5 -0.702028612709 +UniRef50_T0TCE5 SWF SNF family helicase 3.18207318795 0.5 -2.68207318795 +UniRef50_Q5NRL6 Ribonuclease PH 0.0428857516203 0.5 0.45711424838 +UniRef50_Q9ZFE4 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.487066578631 0.5 0.0129334213692 +UniRef50_J9NZP9 1.23140036693 0.5 -0.731400366929 +UniRef50_Q1LSV5 Uridylate kinase 0.812175072293 0.5 -0.312175072293 +UniRef50_U5MWW8 Glycosyltransferase EpsJ 0.248876081136 0.5 0.251123918864 +UniRef50_D5ATD7 Flagellar FlaF family protein 0.536187460272 0.5 -0.0361874602716 +UniRef50_UPI0004796392 hypothetical protein 1.82054523661 0.5 -1.32054523661 +UniRef50_P0A864 Thiol peroxidase 3.59785542381 0.499999999999 -3.09785542381 +UniRef50_UPI0003B588F0 short chain dehydrogenase 0.227366790279 0.5 0.272633209721 +UniRef50_T1Y9K8 1.90041506852 0.5 -1.40041506852 +UniRef50_UPI0003C0FD80 0.623532114522 0.5 -0.123532114522 +UniRef50_D2VX44 Predicted protein 0.303160627346 0.5 0.196839372654 +UniRef50_I6T5F7 NADH dehydrogenase, NADH nitroreductase 3.44065062699 0.5 -2.94065062699 +UniRef50_D3QJ09 3.45918678642 0.500000000005 -2.95918678642 +UniRef50_C6SS70 Negative transcriptional regulator, CopY 3.67494353988 0.500000000001 -3.17494353988 +UniRef50_P90463 Thymidylate synthase 0.144906716512 0.5 0.355093283488 +UniRef50_UPI0004431E21 0.562942565117 0.5 -0.0629425651171 +UniRef50_A6M1I3 Amino acid permease associated region 0.262504395062 0.5 0.237495604938 +UniRef50_UPI00036E2C46 hypothetical protein, partial 0.072782705706 0.5 0.427217294294 +UniRef50_Q9EXU9 Coenzyme PQQ synthesis protein D 1.26623727496 0.5 -0.766237274959 +UniRef50_O67876 Delta aminolevulinic acid dehydratase 2.34511708647 0.5 -1.84511708647 +UniRef50_Q9KPA4 L aspartate oxidase 0.908484347298 0.5 -0.408484347298 +UniRef50_P28345 Malate synthase, glyoxysomal 0.398125217121 0.5 0.101874782879 +UniRef50_C4ZXQ4 Purine ribonucleoside efflux pump NepI 1.59466861375 0.499999999999 -1.09466861374 +UniRef50_Q93A70 RecA like protein 0.0556242736089 0.5 0.444375726391 +UniRef50_UPI000318A15A hypothetical protein 0.298326247846 0.5 0.201673752154 +UniRef50_UPI00046CE89C hypothetical protein 0.301426316234 0.5 0.198573683766 +UniRef50_Q4A0J9 Urease accessory protein UreD 2.33858287808 0.499999999998 -1.83858287808 +UniRef50_UPI00022CAA48 PREDICTED 0.821660361332 0.5 -0.321660361332 +UniRef50_Q03S48 Bifunctional protein PyrR 0.0572167014908 0.5 0.442783298509 +UniRef50_UPI000479DE62 hypothetical protein 0.0863453027929 0.5 0.413654697207 +UniRef50_Q5NYP6 Ribonuclease H 1.24328123922 0.5 -0.743281239215 +UniRef50_P45089 Arginine ABC transporter permease protein ArtM 3.8404678595 0.499999999998 -3.3404678595 +UniRef50_W1TYY5 0.118502724317 0.5 0.381497275683 +UniRef50_Q6MI59 Aspartate tRNA ligase 0.115490031527 0.5 0.384509968473 +UniRef50_A8J7P6 Predicted protein 0.759791991225 0.5 -0.259791991225 +UniRef50_UPI00046612DA cation transporter 0.253027009107 0.5 0.246972990893 +UniRef50_B3QS41 Adenylate kinase 0.115356064804 0.5 0.384643935196 +UniRef50_P44779 L fucose isomerase 1.79962057114 0.5 -1.29962057114 +UniRef50_P77504 1.09297471711 0.5 -0.592974717112 +UniRef50_P77986 Cysteine tRNA ligase 0.553818546937 0.5 -0.0538185469368 +UniRef50_G7U7R4 0.00165929481068 0.5 0.498340705189 +UniRef50_Q5HR39 1.94682684126 0.5 -1.44682684126 +UniRef50_C5VW20 Metal dependent transcriptional regulator 1.44525178136 0.5 -0.945251781359 +UniRef50_UPI00046F9A55 UDP N acetylenolpyruvoylglucosamine reductase, partial 0.182767613043 0.5 0.317232386957 +UniRef50_UPI000462C1F9 ATPase, partial 0.00964101042944 0.5 0.490358989571 +UniRef50_F2N7I9 2 keto 3 deoxy phosphogluconate aldolase 0.390979452745 0.5 0.109020547255 +UniRef50_B9EBC6 Ribonuclease HII 0.937467417685 0.5 -0.437467417685 +UniRef50_UPI000255BC43 gamma aminobutyrate permease, partial 0.105145194452 0.5 0.394854805548 +UniRef50_A8F524 Peptide deformylase 0.377730576222 0.5 0.122269423778 +UniRef50_Q9RW75 Acetylornithine acetyl lysine aminotransferase 0.00399938007665 0.5 0.496000619923 +UniRef50_M1MR71 PGA biosynthesis protein CapA 0.0704917972873 0.5 0.429508202713 +UniRef50_UPI00037D52AC hypothetical protein 0.126898454531 0.5 0.373101545469 +UniRef50_M9S1L9 Periplasmic aliphatic sulfonate binding protein 0.283833068436 0.5 0.216166931564 +UniRef50_UPI000471FB75 hypothetical protein 1.49715792491 0.5 -0.997157924907 +UniRef50_UPI000462F0A6 sodium 0.327309957891 0.5 0.172690042109 +UniRef50_UPI00035E3397 hypothetical protein 0.561425260891 0.5 -0.0614252608911 +UniRef50_P39616 Probable aldehyde dehydrogenase YwdH 1.73729799327 0.499999999998 -1.23729799327 +UniRef50_G8PQT7 2.10183930853 0.5 -1.60183930853 +UniRef50_UPI00037BE06D hypothetical protein 0.562952564208 0.5 -0.0629525642079 +UniRef50_A6QK31 Transcriptional regulator LysR family protein 3.18868711792 0.499999999998 -2.68868711792 +UniRef50_M4WZ70 PpiC type peptidyl prolyl cis trans isomerase 2.05594305657 0.5 -1.55594305657 +UniRef50_UPI00042CF608 PREDICTED 1.53289450025 0.499999999999 -1.03289450025 +UniRef50_T0T7J2 Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily 6.59053637693 0.499999999999 -6.09053637693 +UniRef50_UPI0003B3103D exodeoxyribonuclease III 0.434866006177 0.5 0.065133993823 +UniRef50_Q165N2 Long chain fatty acid protein, putative 0.169268254375 0.5 0.330731745625 +UniRef50_G6XX97 Putative NAD specific glutamate dehydrogenase 0.831222564626 0.5 -0.331222564626 +UniRef50_A6LQ40 0.0518297762906 0.500000000001 0.448170223709 +UniRef50_W5X5Z9 Putative bile acid beta glucosidase 0.32183446046 0.5 0.17816553954 +UniRef50_D8LTS8 4.79782025847 0.500000000001 -4.29782025847 +UniRef50_UPI0002F66B6C hypothetical protein 0.0477781280654 0.5 0.452221871935 +UniRef50_P68825 Peptide deformylase 1.45156236452 0.500000000001 -0.951562364519 +UniRef50_A5IR31 Transcriptional regulator, XRE family 1.18185718949 0.5 -0.681857189491 +UniRef50_UPI0003616553 hypothetical protein 0.0728889425186 0.5 0.427111057482 +UniRef50_X0YG76 Marine sediment metagenome DNA, contig 0.518797196782 0.5 -0.018797196782 +UniRef50_D4DSS6 Delta 1 pyrroline 5 carboxylate dehydrogenase 0.0129933127856 0.5 0.487006687215 +UniRef50_A1W398 2.80746122951 0.5 -2.30746122951 +UniRef50_Q2J878 CTP synthase 0.821035029744 0.5 -0.321035029744 +UniRef50_P76250 HTH type transcriptional regulator DmlR 1.67404183241 0.5 -1.17404183241 +UniRef50_B9K420 Transposase 1.23245992422 0.5 -0.732459924217 +UniRef50_B6ZTT1 Outer membrane usher protein fimD homolog 2.3201548419 0.5 -1.8201548419 +UniRef50_A7X2C6 Quinolone resistance protein NorB 2.29084424392 0.499999999999 -1.79084424392 +UniRef50_R5GDG8 0.275579762923 0.5 0.224420237077 +UniRef50_UPI0003B34194 sodium hydrogen exchanger 0.365851713498 0.5 0.134148286502 +UniRef50_UPI0003817F52 hypothetical protein 0.2754311359 0.5 0.2245688641 +UniRef50_UPI00046E6BB7 hypothetical protein 1.00023241397 0.5 -0.500232413972 +UniRef50_Q8CTV4 0.2664847821 0.5 0.2335152179 +UniRef50_F6D239 2.12258121332 0.500000000001 -1.62258121332 +UniRef50_K7EGU5 0.121930028884 0.5 0.378069971116 +UniRef50_A5UNG7 Glycerol 3 phosphate dehydrogenase 1.59488654111 0.5 -1.09488654111 +UniRef50_A9GC83 Undecaprenyl diphosphatase 4.72938205844 0.50000000001 -4.22938205845 +UniRef50_B4S8V7 Phosphoribosylformylglycinamidine synthase, purS 0.122221975768 0.5 0.377778024232 +UniRef50_UPI00036BB70C resolvase 2.44808298803 0.5 -1.94808298803 +UniRef50_W5XH95 Phosphoesterase PA phosphatase related protein 0.0756267114941 0.5 0.424373288506 +UniRef50_P77359 0.976973532819 0.5 -0.476973532819 +UniRef50_F4CYV0 1.18215653608 0.5 -0.682156536084 +UniRef50_UPI00047AE18A hypothetical protein, partial 0.732310383941 0.5 -0.232310383941 +UniRef50_A8F453 Carbamoyl phosphate synthase large chain 1.51372430332 0.5 -1.01372430332 +UniRef50_T0VIT8 Malate Na symporter 0.637970661962 0.5 -0.137970661962 +UniRef50_A7H5L7 Adenylosuccinate synthetase 0.0142057154765 0.5 0.485794284524 +UniRef50_D6B724 Prevent host death family protein 0.443753107762 0.5 0.0562468922377 +UniRef50_Q8MIF7 Phosphoglycerate kinase 2 0.397214038765 0.5 0.102785961235 +UniRef50_UPI000311B4DE hypothetical protein 0.0397954087813 0.499999999999 0.46020459122 +UniRef50_M1XHI0 Transposon tn552 dna invertase binr 2.11415005614 0.499999999998 -1.61415005613 +UniRef50_UPI0003B5BE6D hypothetical protein 0.519708176151 0.5 -0.0197081761505 +UniRef50_Q87JE8 Catalase 0.0484110793435 0.5 0.451588920656 +UniRef50_P37757 0.91938140027 0.5 -0.41938140027 +UniRef50_R4RDL8 Methyl accepting chemotaxis transducer 0.643463354604 0.5 -0.143463354604 +UniRef50_UPI00035DEE56 hypothetical protein 4.33521047193 0.5 -3.83521047193 +UniRef50_L1K5S4 0.936892911954 0.5 -0.436892911954 +UniRef50_A4WQH5 Transposase IS66 0.833455295021 0.5 -0.333455295021 +UniRef50_F1VLT5 Response regulator receiver domain protein 0.0390573523767 0.5 0.460942647623 +UniRef50_A0A013RJA0 Type I secretion C terminal target domain protein 0.0405473694504 0.5 0.459452630549 +UniRef50_K4PTK7 PTS system, IIC component 1.12359102194 0.5 -0.623591021936 +UniRef50_Q04GD7 Xanthine phosphoribosyltransferase 0.420437837348 0.5 0.079562162652 +UniRef50_UPI0003315B6B PREDICTED 1.00262329202 0.5 -0.502623292023 +UniRef50_W0WCB8 0.181776215854 0.5 0.318223784146 +UniRef50_Q321F0 3 dehydroquinate dehydratase 0.263561518279 0.5 0.236438481721 +UniRef50_Q8DYV7 Lipoprotein signal peptidase 0.734020448921 0.5 -0.234020448921 +UniRef50_A9MFF7 1.01294842188 0.5 -0.512948421875 +UniRef50_P44645 Molybdopterin adenylyltransferase 36.2461606088 0.499999999985 -35.7461606088 +UniRef50_C6S4K8 Purine cytosine transport protein 0.017771752906 0.5 0.482228247094 +UniRef50_D8JKV6 0.148290345082 0.5 0.351709654918 +UniRef50_W8TU36 Membrane protein 4.85162375323 0.5 -4.35162375323 +UniRef50_UPI000477BC75 transcriptional regulator 0.317890833714 0.5 0.182109166286 +UniRef50_Q9RZV6 0.00152302663416 0.5 0.498476973366 +UniRef50_Q9RZV7 0.00327006802149 0.5 0.496729931978 +UniRef50_P46850 RNA splicing ligase RtcB 0.438908037875 0.5 0.0610919621248 +UniRef50_B7MDM9 Phosphoenolpyruvate carboxykinase [ATP] 1.63393546385 0.5 -1.13393546385 +UniRef50_UPI00030354CC hypothetical protein 3.82998707824 0.5 -3.32998707824 +UniRef50_P33030 0.982375054273 0.5 -0.482375054273 +UniRef50_G8AF41 0.0187577498578 0.5 0.481242250142 +UniRef50_Q1GBR1 Ribosomal RNA small subunit methyltransferase A 0.698603470692 0.5 -0.198603470692 +UniRef50_A7FBS8 0.0193025324579 0.5 0.480697467542 +UniRef50_B9M627 Transcriptional regulator, BadM Rrf2 family 1.19896787753 0.5 -0.698967877526 +UniRef50_Q6FDG7 0.0124151729823 0.5 0.487584827018 +UniRef50_UPI00036AD763 hypothetical protein 0.26651040113 0.5 0.23348959887 +UniRef50_O28206 Formylmethanofuran tetrahydromethanopterin formyltransferase like protein 1.70125060827 0.499999999999 -1.20125060827 +UniRef50_C4XMN4 NADH quinone oxidoreductase subunit K 0.897016529908 0.5 -0.397016529908 +UniRef50_P76004 1.11311996329 0.5 -0.613119963289 +UniRef50_G7M0B3 Subtilisin 0.0589174202571 0.5 0.441082579743 +UniRef50_F8KSC7 Phosphoglycerol transferase 0.00784803431946 0.5 0.492151965681 +UniRef50_P76001 0.43229873166 0.5 0.0677012683396 +UniRef50_A0A023NX12 Potassium transporter KefB 0.370119915792 0.5 0.129880084208 +UniRef50_UPI00037CB356 hypothetical protein, partial 1.45645496657 0.5 -0.956454966566 +UniRef50_C7NGM8 Signal recognition particle receptor FtsY 0.0510152146458 0.5 0.448984785354 +UniRef50_Q5HIG5 Hypoxanthine guanine phosphoribosyltransferase 14.5896540473 0.499999999975 -14.0896540473 +UniRef50_A3PHR5 0.516579088976 0.5 -0.0165790889763 +UniRef50_W5X521 Virulence associated protein 1.8144566203 0.5 -1.3144566203 +UniRef50_UPI00037FC1A9 hypothetical protein, partial 1.80636312153 0.499999999999 -1.30636312153 +UniRef50_UPI000255A713 type I secretion target repeat containing protein 0.110668283469 0.5 0.38933171653 +UniRef50_E3A6M0 5.66097854792 0.500000000001 -5.16097854792 +UniRef50_Q88FA1 Transcriptional regulator, GntR family 0.372493675705 0.5 0.127506324295 +UniRef50_D8JEZ3 Adenylate cyclase 0.00629959432875 0.5 0.493700405671 +UniRef50_Q8DWH1 tRNA pseudouridine synthase A 1.07026662085 0.5 -0.57026662085 +UniRef50_C0QPF4 3 oxoacyl [acyl carrier protein] synthase 3 0.0758495631985 0.5 0.424150436801 +UniRef50_UPI0003F94ECB CMP deaminase 0.120285434972 0.5 0.379714565028 +UniRef50_UPI0004090BEE hypothetical protein 1.83664516249 0.499999999998 -1.33664516248 +UniRef50_Q16DB6 1.92780232928 0.5 -1.42780232928 +UniRef50_Q16DB7 1.84232235579 0.500000000001 -1.3423223558 +UniRef50_B9KX58 ISSpo9, transposase 1.16036935736 0.500000000001 -0.660369357361 +UniRef50_UPI0004785315 hypothetical protein 0.251660989629 0.5 0.248339010371 +UniRef50_UPI0002DCF3B2 sugar ABC transporter ATP binding protein 0.330419242757 0.5 0.169580757243 +UniRef50_P26158 1.64012870871 0.5 -1.14012870871 +UniRef50_U6N1Q3 Mitochondrial carrier domain containing protein, putative 1.13848682602 0.5 -0.638486826022 +UniRef50_UPI00047CE8B7 ABC transporter 0.522699188008 0.5 -0.0226991880084 +UniRef50_UPI0001D2E721 TonB dependent siderophore receptor 5.45229662082 0.500000000002 -4.95229662082 +UniRef50_Q97EZ4 Galactose 1 phosphate uridylyltransferase 0.55289996582 0.5 -0.0528999658201 +UniRef50_U7IBM4 2.50956900957 0.5 -2.00956900957 +UniRef50_P02992 Elongation factor Tu, mitochondrial 0.231811494856 0.5 0.268188505144 +UniRef50_E3Z0Y0 Ion transport protein, putative 0.333648542605 0.5 0.166351457395 +UniRef50_UPI0003A9A8D3 16S rRNA methyltransferase 1.50249374977 0.5 -1.00249374977 +UniRef50_W4TI17 Excinuclease ABC subunit A 0.0219597640861 0.5 0.478040235913 +UniRef50_X4FS17 9.22176224531 0.500000000016 -8.72176224533 +UniRef50_Q82F74 Probable M18 family aminopeptidase 2 0.0114123413405 0.5 0.488587658659 +UniRef50_R5E350 Phospholipase patatin family 0.596590951076 0.5 -0.0965909510764 +UniRef50_Q04513 L threonine dehydratase biosynthetic IlvA 1.04941374036 0.5 -0.549413740361 +UniRef50_Q51688 0.138935329695 0.5 0.361064670305 +UniRef50_UPI0003732A38 hypothetical protein 1.14906104771 0.499999999999 -0.649061047704 +UniRef50_K7T001 Transposase 1.10275831167 0.5 -0.602758311668 +UniRef50_UPI0003814692 hypothetical protein 0.136135355718 0.5 0.363864644282 +UniRef50_T2EQP3 AAA ATPase domain protein 0.29660210162 0.5 0.20339789838 +UniRef50_G7M265 Precorrin 2 dehydrogenase 0.0588078718306 0.5 0.441192128169 +UniRef50_B9KM23 Trk system potassium uptake protein 1.74212435139 0.5 -1.24212435139 +UniRef50_Q9UW15 Ribonucleoside diphosphate reductase large chain 0.0339088822947 0.5 0.466091117705 +UniRef50_A0A031JPA4 Short chain dehydrogenase 0.0939889478046 0.5 0.406011052195 +UniRef50_Q8DT19 1.14906116487 0.5 -0.649061164866 +UniRef50_UPI00034AF93B hypothetical protein 0.445672078901 0.5 0.0543279210987 +UniRef50_Q2L2E4 Phage protein 1.57708014799 0.5 -1.07708014799 +UniRef50_Q8UEN6 Valine tRNA ligase 0.393215284508 0.5 0.106784715492 +UniRef50_D9SQP5 Metal dependent phosphohydrolase 0.146020170512 0.5 0.353979829488 +UniRef50_M1MG21 0.254536993289 0.5 0.245463006711 +UniRef50_D6LAV3 PTS system, mannose fructose sorbose family, IID component 0.0649785854415 0.5 0.435021414559 +UniRef50_UPI0003B68CA0 ABC transporter 0.267785460379 0.5 0.232214539621 +UniRef50_A1SM04 5 carboxymethyl 2 hydroxymuconate delta isomerase 0.0211359188332 0.5 0.478864081167 +UniRef50_X5F517 Ribonuclease G 0.0488263807266 0.5 0.451173619274 +UniRef50_UPI0004670206 NADH 2.48472449029 0.5 -1.98472449029 +UniRef50_X5PZN2 Transposase 2.01912705353 0.5 -1.51912705353 +UniRef50_G5JV69 Mannosyl glycoprotein endo beta N acetylglucosaminidase 11.550403181 0.499999999996 -11.050403181 +UniRef50_UPI00036BD2FB hypothetical protein 0.887657931811 0.5 -0.387657931811 +UniRef50_B4U0E8 Transcriptional regulator AraC family 0.459598140028 0.5 0.0404018599725 +UniRef50_Q9HTH5 HTH type transcriptional regulator CdhR 0.303860313147 0.5 0.196139686853 +UniRef50_O26979 Probable tyrosine recombinase XerC like 2.27589493336 0.499999999999 -1.77589493336 +UniRef50_B2UYR1 Surface protein PspC 0.274781718802 0.5 0.225218281198 +UniRef50_Q16DI2 Transcriptional regulator, LacI family, putative 3.21111313738 0.5 -2.71111313738 +UniRef50_UPI000365A6F0 hypothetical protein 0.54958382817 0.5 -0.0495838281701 +UniRef50_T2EHK8 0.238293617787 0.5 0.261706382213 +UniRef50_UPI00024849FE RTX toxins and related Ca2+ binding protein like protein 1.37668021031 0.5 -0.876680210312 +UniRef50_UPI00047564FA hypothetical protein 0.992856972804 0.5 -0.492856972804 +UniRef50_A5VBC0 Aldehyde dehydrogenase 0.00929345263945 0.5 0.490706547361 +UniRef50_Q5F691 Dephospho CoA kinase 0.142934310522 0.5 0.357065689478 +UniRef50_R9YSL1 Thermolysin metallopeptidase, catalytic domain protein 8.61878179719 0.499999999997 -8.11878179719 +UniRef50_UPI00037991D0 hypothetical protein 1.41406916613 0.5 -0.914069166132 +UniRef50_UPI00030D7518 hypothetical protein 3.2087008544 0.499999999998 -2.7087008544 +UniRef50_UPI0004649A8B MULTISPECIES 0.0788233471511 0.5 0.421176652849 +UniRef50_F0TFK9 Cysteine synthase 0.930748149521 0.5 -0.430748149521 +UniRef50_Q68Y13 Zinc import ATP binding protein ZnuC 1.53389115603 0.500000000001 -1.03389115603 +UniRef50_P23620 Phosphate regulon transcriptional regulatory protein PhoB 0.281646625256 0.5 0.218353374744 +UniRef50_Q04KA9 Uridine kinase 0.00378191868005 0.5 0.49621808132 +UniRef50_K0L612 0.911161569822 0.5 -0.411161569822 +UniRef50_W4UDR2 Glucoamylase S1 S2 0.172791944154 0.5 0.327208055846 +UniRef50_Q57H69 DNA directed RNA polymerase subunit beta 0.522054996333 0.5 -0.0220549963329 +UniRef50_G7LYD5 1.69157745811 0.5 -1.19157745811 +UniRef50_T9UYG2 0.0925227469605 0.5 0.40747725304 +UniRef50_UPI00035F619C hypothetical protein 1.48376555947 0.499999999999 -0.983765559466 +UniRef50_Q897P8 D alanine D alanine ligase A 0.196209791264 0.5 0.303790208736 +UniRef50_P64579 mRNA interferase HigB 0.342621360947 0.5 0.157378639053 +UniRef50_Q67KN9 NADH quinone oxidoreductase subunit D 2 0.0449897952335 0.5 0.455010204767 +UniRef50_S9TMR0 LigA 0.299224038316 0.5 0.200775961684 +UniRef50_UPI00047706B6 hypothetical protein 0.831932062764 0.5 -0.331932062764 +UniRef50_UPI00036FBC1B hypothetical protein 0.250784433658 0.5 0.249215566342 +UniRef50_J7QVF5 Conserved domain protein 1.73380167518 0.5 -1.23380167518 +UniRef50_B0VQE3 Transposase of ISAba7, IS5 family 0.504092896078 0.5 -0.00409289607777 +UniRef50_Q2SHM4 Phosphonoacetaldehyde hydrolase 0.0626388458813 0.5 0.437361154118 +UniRef50_W8ADW9 NagD like phosphatase 1.15673857172 0.5 -0.656738571715 +UniRef50_Q2CIA8 0.0336038509567 0.5 0.466396149043 +UniRef50_J7L244 Zinc binding dehydrogenase family protein 0.0349028259263 0.5 0.465097174074 +UniRef50_I0EVS2 Cysteine rich protein C 0.470929808695 0.5 0.0290701913052 +UniRef50_S5CUQ4 Folate dependent phosphoribosylglycinamide formyltransferase PurN 0.00879579931696 0.499999999999 0.491204200684 +UniRef50_A0A024HP52 Mig 14 0.421039425384 0.5 0.0789605746159 +UniRef50_A1SEI7 50S ribosomal protein L1 1.01686818647 0.5 -0.516868186472 +UniRef50_B9KUB3 1.00290949972 0.5 -0.502909499719 +UniRef50_B5XK69 Oleate hydratase 1.97923427328 0.500000000001 -1.47923427328 +UniRef50_Q9Z9J0 tRNA pseudouridine synthase A 0.326281252577 0.5 0.173718747423 +UniRef50_UPI000475A5BB arabinose transporter permease 0.201356359772 0.5 0.298643640228 +UniRef50_UPI000470CEEA hypothetical protein 1.51584629963 0.5 -1.01584629963 +UniRef50_Q13LX0 Ribose import ATP binding protein RbsA 0.000390657965522 0.5 0.499609342035 +UniRef50_UPI0004413371 ribosomal protein S12 0.346049116346 0.5 0.153950883654 +UniRef50_F0KGI1 DNA directed DNA polymerase 0.0158862524892 0.5 0.484113747511 +UniRef50_B8JA02 0.149942221009 0.5 0.350057778991 +UniRef50_R1GXI1 0.0175990640906 0.5 0.482400935909 +UniRef50_Q03XB9 0.473572838981 0.5 0.0264271610188 +UniRef50_R9HYC8 0.344559153409 0.5 0.155440846591 +UniRef50_UPI0003941003 PREDICTED 0.0376017101921 0.5 0.462398289808 +UniRef50_UPI00047CE519 hypothetical protein 0.103605852639 0.5 0.396394147361 +UniRef50_UPI00035FDF95 acetylornithine aminotransferase 0.00978982090941 0.5 0.49021017909 +UniRef50_Q56066 Molybdopterin molybdenumtransferase 0.925264355649 0.5 -0.425264355649 +UniRef50_UPI0003B4081B biotin biosynthesis protein BioY 0.03441191254 0.5 0.46558808746 +UniRef50_Q62FS7 Ribosomal RNA small subunit methyltransferase G 2.1433983076 0.5 -1.6433983076 +UniRef50_UPI000477EC64 glycogen debranching protein, partial 0.137104512675 0.5 0.362895487325 +UniRef50_Q8YFU1 5 hydroxyisourate hydrolase 0.429781903101 0.5 0.0702180968991 +UniRef50_B2HX69 Predicted hydrolase 0.0176664614835 0.5 0.482333538516 +UniRef50_Q8CU33 0.700843155233 0.5 -0.200843155233 +UniRef50_UPI00037B3020 hypothetical protein 1.11412798186 0.5 -0.614127981865 +UniRef50_Q74CZ3 Adenine phosphoribosyltransferase 0.178492352853 0.5 0.321507647147 +UniRef50_Q5PJI9 Arginine exporter protein ArgO 1.7636550909 0.5 -1.2636550909 +UniRef50_A5U672 LexA repressor 3.08031540985 0.5 -2.58031540985 +UniRef50_UPI0004743595 hypothetical protein, partial 0.223467870468 0.5 0.276532129532 +UniRef50_A6LT65 0.0337099847505 0.5 0.46629001525 +UniRef50_UPI000361C034 hypothetical protein 0.203239622039 0.5 0.296760377961 +UniRef50_W0NSJ7 Transcriptional regulator ICP4 0.2113431091 0.5 0.2886568909 +UniRef50_Q67JB9 Ribosomal RNA small subunit methyltransferase A 0.343206455091 0.5 0.156793544909 +UniRef50_UPI00035FFF58 hypothetical protein 2.74129648142 0.5 -2.24129648142 +UniRef50_Q6A6S0 0.0773998833598 0.500000000001 0.42260011664 +UniRef50_Q99ZV9 CRISPR associated protein Csn2 0.277797412611 0.5 0.222202587389 +UniRef50_G2AB04 0.20041510239 0.5 0.29958489761 +UniRef50_H2K8K5 1.19813134715 0.5 -0.698131347147 +UniRef50_A3PIQ0 Methyl accepting chemotaxis sensory transducer 4.02116298382 0.500000000001 -3.52116298382 +UniRef50_D6ENI5 Integral membrane protein 0.425962002316 0.5 0.0740379976844 +UniRef50_B8GW41 Uroporphyrinogen decarboxylase 0.101725680381 0.5 0.39827431962 +UniRef50_B1XUJ9 NADH quinone oxidoreductase subunit B 0.0342590168482 0.5 0.465740983152 +UniRef50_W1H531 5 methyltetrahydrofolate homocysteine methyltransferase 1.31231997596 0.500000000001 -0.812319975956 +UniRef50_J9P4V0 0.102253938453 0.5 0.397746061548 +UniRef50_P20691 3 phosphoshikimate 1 carboxyvinyltransferase 0.217431543521 0.5 0.282568456479 +UniRef50_UPI0003B3BE35 ABC transporter ATPase 0.356443966891 0.5 0.143556033109 +UniRef50_UPI00046F4B95 histidinol phosphatase, partial 0.373606590343 0.5 0.126393409657 +UniRef50_UPI0002626B3F ABC transporter 0.0656856946498 0.5 0.43431430535 +UniRef50_Q42682 Delta aminolevulinic acid dehydratase, chloroplastic 0.0159691396411 0.5 0.484030860359 +UniRef50_Q8X1P0 Catalase 0.272491598666 0.5 0.227508401334 +UniRef50_D8HFS0 5.18194454022 0.5 -4.68194454022 +UniRef50_Q18J88 Thymidine kinase 0.346276095294 0.5 0.153723904706 +UniRef50_P42449 Isocitrate lyase 0.161378627461 0.5 0.338621372539 +UniRef50_P58813 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.99277626935 0.5 -1.49277626935 +UniRef50_C5QCS1 Mobilization protein 1.27900058749 0.5 -0.779000587493 +UniRef50_W8X1S4 Tricarboxylate transport membrane protein TctA 0.767177806067 0.5 -0.267177806067 +UniRef50_P0ADW1 Lipopolysaccharide export system protein LptC 1.76940778152 0.5 -1.26940778152 +UniRef50_W5XB53 Putative hydrolase 0.572199497465 0.5 -0.0721994974654 +UniRef50_Q9RR99 Oxidoreductase, short chain dehydrogenase reductase family 0.00328128179012 0.500000000001 0.496718718209 +UniRef50_UPI0004781063 peptide ABC transporter substrate binding protein 0.160987755132 0.5 0.339012244868 +UniRef50_A5WBZ4 Transporter, NhaC family 0.0307645931317 0.5 0.469235406868 +UniRef50_Q87BX0 Phage related protein 0.0106996058611 0.5 0.489300394139 +UniRef50_Q5N353 Phosphoribosylaminoimidazole carboxylase 0.336869025272 0.5 0.163130974728 +UniRef50_Q3DCS0 0.762238667783 0.5 -0.262238667783 +UniRef50_Q165N5 Trimethylamine methyltransferase family protein 1.82176267917 0.5 -1.32176267917 +UniRef50_I0C2I1 1.37751936994 0.5 -0.87751936994 +UniRef50_A1AXZ6 Rhodanese 3.58627997764 0.500000000003 -3.08627997764 +UniRef50_A7GYU4 Porphobilinogen deaminase 0.0215179868899 0.5 0.47848201311 +UniRef50_UPI0003667454 hypothetical protein 0.238707441955 0.5 0.261292558045 +UniRef50_Q8CPM3 Pyruvate carboxylase 1.01183387592 0.5 -0.511833875918 +UniRef50_Q88V19 Glutamate racemase 0.230467098103 0.5 0.269532901897 +UniRef50_Q6GDE9 Serine rich adhesin for platelets 1.84610824111 0.5 -1.34610824111 +UniRef50_I9MZI2 1 5 phosphoribosyl 5 methylideneamino imidazole 4 carboxamide isomerase (Fragment) 0.331120587652 0.5 0.168879412348 +UniRef50_K4S416 0.728083304132 0.5 -0.228083304132 +UniRef50_V8G5H9 GntR family transcriptional regulator 0.146507058185 0.5 0.353492941815 +UniRef50_F3U2E4 McpE 11.2315150745 0.5 -10.7315150745 +UniRef50_Q8A251 Ribosomal RNA small subunit methyltransferase H 0.651389534664 0.5 -0.151389534664 +UniRef50_A6TD39 2 C methyl D erythritol 4 phosphate cytidylyltransferase 3.72355524793 0.500000000001 -3.22355524793 +UniRef50_K0R9Z2 0.7229862422 0.5 -0.2229862422 +UniRef50_W7Q6R7 0.191362500546 0.5 0.308637499454 +UniRef50_A1BFY3 Lipoyl synthase 0.144564775626 0.499999999999 0.355435224375 +UniRef50_UPI000479C2FE hypothetical protein 0.180822535971 0.5 0.319177464029 +UniRef50_K2J3T1 4.0408744231 0.500000000003 -3.5408744231 +UniRef50_X1ENU3 Marine sediment metagenome DNA, contig 4.61668468706 0.499999999998 -4.11668468706 +UniRef50_Q5YSJ6 0.326957970624 0.5 0.173042029376 +UniRef50_A5ULM3 Precorrin 6X reductase, CbiJ 0.559525806789 0.5 -0.0595258067889 +UniRef50_P0ADC7 Lipopolysaccharide export system permease protein LptG 1.65869216163 0.5 -1.15869216163 +UniRef50_B0VDU9 0.0537345454077 0.5 0.446265454592 +UniRef50_Q3IIQ9 0.218353067941 0.5 0.281646932059 +UniRef50_A3PI11 3.94745738697 0.499999999997 -3.44745738697 +UniRef50_UPI000467E1F1 hypothetical protein 0.611763764004 0.5 -0.111763764004 +UniRef50_U5MMP4 Methyl accepting chemotaxis protein 0.537658672328 0.5 -0.0376586723282 +UniRef50_E8U5H6 0.00414919969738 0.5 0.495850800302 +UniRef50_Q07422 Bifunctional dihydrofolate reductase thymidylate synthase 1.81306528969 0.499999999999 -1.31306528969 +UniRef50_Q9CEG3 Aminopeptidase C 0.378058358234 0.5 0.121941641766 +UniRef50_A6LZZ3 AAA ATPase, central domain protein 0.0434854274728 0.5 0.456514572527 +UniRef50_UPI00035E7781 hypothetical protein, partial 0.560442287236 0.5 -0.0604422872355 +UniRef50_UPI00045E7C5F translation initiation factor 2 1.27183944543 0.5 -0.77183944543 +UniRef50_UPI000372ADBA actetate permease 0.409844696427 0.5 0.0901553035726 +UniRef50_UPI000468220F hypothetical protein 1.02266017858 0.5 -0.522660178581 +UniRef50_L5JBS3 0.312562636824 0.5 0.187437363176 +UniRef50_UPI000300E129 hypothetical protein 0.093279132994 0.5 0.406720867006 +UniRef50_V9Z4G9 Replication protein 0.423354579568 0.5 0.0766454204315 +UniRef50_D5ZZ05 0.583018880562 0.5 -0.0830188805624 +UniRef50_G1X3P0 3.18631874443 0.500000000003 -2.68631874443 +UniRef50_UPI0003C1128E 3.53498851175 0.500000000001 -3.03498851175 +UniRef50_UPI0002000005 ATP dependent DNA helicase 0.175345758365 0.5 0.324654241635 +UniRef50_P54533 Dihydrolipoyl dehydrogenase 0.108826610273 0.5 0.391173389727 +UniRef50_A4W0T3 Endonuclease III 1.7277595093 0.5 -1.2277595093 +UniRef50_Q8FEF9 tRNA pseudouridine synthase C 1.13491713193 0.499999999999 -0.634917131926 +UniRef50_A7ZPF5 1.87104688026 0.5 -1.37104688026 +UniRef50_A7X2C5 Extracellular matrix binding protein EbhB 1.8440106137 0.5 -1.3440106137 +UniRef50_UPI00039B42F6 3 dehydroquinate dehydratase 1.40997436892 0.5 -0.90997436892 +UniRef50_P24582 Modification methylase NlaIII 0.0275568623892 0.5 0.472443137611 +UniRef50_Q5NRF0 Probable chemoreceptor glutamine deamidase CheD 1.96495403885 0.500000000001 -1.46495403885 +UniRef50_UPI000376D860 hypothetical protein 1.1785616038 0.5 -0.678561603804 +UniRef50_A5UJQ2 2.20325166238 0.5 -1.70325166238 +UniRef50_UPI0002192D8C peptide ABC transporter ATP binding protein 2.07086931204 0.5 -1.57086931204 +UniRef50_C7BZT5 Cytoplasmic pump proteins of the hefABC efflux system 0.0542325538829 0.5 0.445767446117 +UniRef50_UPI0002B9F68A hypothetical protein 0.126339417482 0.5 0.373660582518 +UniRef50_C5N6U7 49.2628020673 0.500000000009 -48.7628020673 +UniRef50_E4ZD91 0.028176725219 0.5 0.471823274781 +UniRef50_UPI0003176417 hypothetical protein 0.103130627423 0.5 0.396869372577 +UniRef50_UPI00017444A4 lactate permease 0.0953236105524 0.5 0.404676389448 +UniRef50_B8I6U9 Phosphatidylserine decarboxylase proenzyme 0.339906844261 0.5 0.160093155739 +UniRef50_O34318 2.62836562268 0.499999999996 -2.12836562268 +UniRef50_UPI0002FA030F hypothetical protein 0.387256493418 0.5 0.112743506582 +UniRef50_D4H9Z1 0.0392245148379 0.5 0.460775485162 +UniRef50_H2EPJ7 Acyl CoA synthetase 0.465151474091 0.5 0.0348485259092 +UniRef50_UPI00035F5072 hypothetical protein 0.303145949618 0.5 0.196854050382 +UniRef50_U2YKU9 Penicillin binding protein 2 2.06604917957 0.499999999999 -1.56604917957 +UniRef50_UPI0003D25F22 0.600565990096 0.5 -0.100565990096 +UniRef50_UPI0003FE0ED1 hypothetical protein 0.975642418038 0.5 -0.475642418038 +UniRef50_D0UWA8 0.91797443977 0.5 -0.41797443977 +UniRef50_X0U2P0 Marine sediment metagenome DNA, contig 0.690788891422 0.5 -0.190788891422 +UniRef50_E0SXX7 Collagenase like protease 0.334285298236 0.5 0.165714701764 +UniRef50_UPI0003722924 hypothetical protein 1.39888601164 0.5 -0.898886011639 +UniRef50_E3J760 0.63552945813 0.5 -0.13552945813 +UniRef50_P31909 Hydrogenase expression formation protein HoxM 1.59625776947 0.5 -1.09625776947 +UniRef50_UPI0003C16579 PREDICTED 0.202735007474 0.5 0.297264992526 +UniRef50_I0LEQ3 0.3767921732 0.5 0.1232078268 +UniRef50_UPI0003FB6811 hypothetical protein 3.79791084878 0.5 -3.29791084878 +UniRef50_UPI0003C7E616 hypothetical protein 0.456916460994 0.5 0.0430835390057 +UniRef50_A6UEM2 3.26525366679 0.500000000002 -2.76525366679 +UniRef50_V6QFC6 Recombinase 0.705600133165 0.5 -0.205600133165 +UniRef50_UPI00047624DC hypothetical protein 0.76138269497 0.5 -0.26138269497 +UniRef50_I3TRE3 Lipoprotein 1.85086375988 0.5 -1.35086375988 +UniRef50_E3RRY8 1.54785374576 0.5 -1.04785374576 +UniRef50_L2LUI2 0.37327797048 0.5 0.12672202952 +UniRef50_S1HVV1 2.79797999415 0.499999999996 -2.29797999415 +UniRef50_UPI0004638CB3 50S ribosomal protein L3 0.0134121743804 0.5 0.48658782562 +UniRef50_Q3K3G9 Polyribonucleotide nucleotidyltransferase 0.517537593829 0.5 -0.0175375938292 +UniRef50_P45804 1.22633444558 0.5 -0.726334445585 +UniRef50_Q47WT5 Lysine tRNA ligase 0.407290255382 0.5 0.0927097446176 +UniRef50_UPI0002377EE6 transposase 2.00053572136 0.5 -1.50053572136 +UniRef50_Q71ZM1 Probable endonuclease 4 3.59824350863 0.499999999998 -3.09824350863 +UniRef50_Q5HKZ3 Glutathione peroxidase homolog BsaA 3.88870577683 0.5 -3.38870577683 +UniRef50_UPI00046FCB34 carbon nitrogen hydrolase, partial 0.0272164113341 0.5 0.472783588666 +UniRef50_W8YQ25 1.20428281459 0.5 -0.704282814587 +UniRef50_Q4L8I4 PTS system, arbutin like IIBC component 1.55639570941 0.5 -1.05639570941 +UniRef50_Q2G9M5 Guanylate kinase 1.27940565294 0.5 -0.779405652936 +UniRef50_UPI000477407F peroxiredoxin, partial 0.205338544041 0.5 0.294661455959 +UniRef50_Q1N9Q9 9.55966301494 0.499999999997 -9.05966301494 +UniRef50_UPI000262D08E hypothetical protein 0.852666224163 0.5 -0.352666224163 +UniRef50_I7DPQ7 0.806623995788 0.5 -0.306623995788 +UniRef50_N6VQS5 2.36333089518 0.5 -1.86333089518 +UniRef50_Q8KED5 Probable thiol peroxidase 3.36171970072 0.499999999999 -2.86171970072 +UniRef50_Q1R155 Zinc import ATP binding protein ZnuC 1.10592151289 0.500000000001 -0.605921512889 +UniRef50_M1LWV2 Response regulator receiver protein 0.594026912199 0.5 -0.0940269121995 +UniRef50_UPI0003B796C7 arginine ABC transporter ATP binding protein 1.26609937709 0.5 -0.766099377089 +UniRef50_F7PVM3 ABC type metal ion transport system protein 2.01719993079 0.5 -1.51719993079 +UniRef50_I0C688 1.16750039206 0.5 -0.667500392057 +UniRef50_W4NY50 2.38757337113 0.5 -1.88757337113 +UniRef50_UPI0004722448 hypothetical protein 0.274153124633 0.5 0.225846875367 +UniRef50_V5SBZ4 Phosphonate ABC transporter substrate binding protein 2.31225335486 0.499999999999 -1.81225335486 +UniRef50_UPI00037B6D80 hypothetical protein 0.365570829176 0.5 0.134429170824 +UniRef50_B1GZJ0 Elongation factor P 0.143648223277 0.5 0.356351776723 +UniRef50_X1WW26 0.319560307809 0.5 0.180439692191 +UniRef50_F0PCL5 Amino acid ABC transporter, amino acid binding protein 1.05665955764 0.5 -0.556659557639 +UniRef50_UPI000378F8D9 hypothetical protein 0.108210433097 0.5 0.391789566903 +UniRef50_P30147 Hydroxypyruvate isomerase 1.55083670063 0.5 -1.05083670063 +UniRef50_UPI0004717369 amidohydrolase, partial 0.115895391331 0.5 0.384104608669 +UniRef50_UPI0003B62CCC electron transporter RnfB 0.239255631059 0.5 0.260744368941 +UniRef50_P68799 Fibrinogen binding protein 3.5904641777 0.5 -3.0904641777 +UniRef50_Q0TQG4 Porphobilinogen deaminase 0.19930199517 0.5 0.30069800483 +UniRef50_B7GQA5 Binding protein dependent transport systems inner membrane component 0.00891933469769 0.5 0.491080665302 +UniRef50_C6M8K8 0.568938908468 0.5 -0.0689389084683 +UniRef50_F3GKC7 RelA SpoT protein 0.568303960013 0.5 -0.068303960013 +UniRef50_A6Q5D2 Cytochrome b 0.0248965463072 0.5 0.475103453692 +UniRef50_Q9F6X6 Light independent protochlorophyllide reductase subunit N 1.62155625282 0.5 -1.12155625282 +UniRef50_A5UMA2 Predicted endoglucanase 2.00945395474 0.499999999999 -1.50945395474 +UniRef50_UPI000301BD84 hypothetical protein 0.299425441543 0.5 0.200574558457 +UniRef50_Q8XVE6 Indole 3 glycerol phosphate synthase 1 0.519366398547 0.5 -0.0193663985469 +UniRef50_P0C8J9 D tagatose 1,6 bisphosphate aldolase subunit GatZ 0.664146848522 0.5 -0.164146848522 +UniRef50_UPI00047A0456 hypothetical protein, partial 0.15753911047 0.5 0.34246088953 +UniRef50_Q2NXB3 0.317393674564 0.5 0.182606325436 +UniRef50_W7T1C4 0.563628832564 0.5 -0.0636288325643 +UniRef50_U3SSK6 0.916868910751 0.5 -0.416868910751 +UniRef50_A1SJC3 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.00398402692437 0.5 0.496015973075 +UniRef50_UPI0004785ED3 hypothetical protein 0.391073683899 0.5 0.108926316101 +UniRef50_R0WUD1 0.0606730030618 0.5 0.439326996938 +UniRef50_I1H6Y1 1.59727522036 0.5 -1.09727522036 +UniRef50_A6YPV7 Recombination protein A 0.0417628819907 0.5 0.458237118009 +UniRef50_P58388 3 mercaptopyruvate sulfurtransferase 2.09704463849 0.499999999998 -1.59704463849 +UniRef50_A6QIJ6 3.54194908065 0.499999999997 -3.04194908064 +UniRef50_C1DBX8 BolA YrbA family protein 0.153917477779 0.5 0.346082522221 +UniRef50_A6QIJ0 3.89948378181 0.500000000002 -3.39948378181 +UniRef50_R0MK27 Phenylacetic acid degradation protein paaD 0.647164708084 0.5 -0.147164708084 +UniRef50_UPI0003450573 hypothetical protein 0.512806544275 0.5 -0.0128065442755 +UniRef50_UPI0004785992 DNA polymerase III subunit alpha 0.777388647812 0.5 -0.277388647812 +UniRef50_P0A2K8 UTP glucose 1 phosphate uridylyltransferase 2.35217594229 0.5 -1.85217594229 +UniRef50_Q9JWE5 Homoserine kinase 0.0393102095752 0.5 0.460689790425 +UniRef50_P30011 Nicotinate nucleotide pyrophosphorylase [carboxylating] 2.38380460855 0.499999999998 -1.88380460855 +UniRef50_C3FD24 0.303194020146 0.5 0.196805979854 +UniRef50_J7QJP1 0.10747662147 0.5 0.39252337853 +UniRef50_L2YG78 Tat pathway signal sequence 0.134623278608 0.5 0.365376721393 +UniRef50_UPI0002891AB1 MsbA 0.308955289831 0.5 0.191044710169 +UniRef50_UPI0003B3A4A3 adenine permease 0.503070816049 0.5 -0.00307081604854 +UniRef50_A6M229 5 dehydro 2 deoxygluconokinase 0.248769248263 0.5 0.251230751737 +UniRef50_A4WSW4 ErfK YbiS YcfS YnhG family protein 1.33452948635 0.5 -0.834529486348 +UniRef50_UPI0004786723 hypothetical protein 0.0633656394425 0.5 0.436634360558 +UniRef50_UPI0003656635 hypothetical protein, partial 0.879628087478 0.5 -0.379628087478 +UniRef50_A6LYJ9 0.430513886732 0.5 0.0694861132678 +UniRef50_W8ZDM8 1.44818383319 0.500000000001 -0.948183833187 +UniRef50_UPI000225ACBB acetyl CoA carboxylase, biotin carboxylase 0.175742580789 0.5 0.324257419211 +UniRef50_A3PGH2 2.00706189318 0.499999999999 -1.50706189318 +UniRef50_C7RCC8 Serine O acetyltransferase 0.0150073055143 0.5 0.484992694486 +UniRef50_UPI00037A1089 hypothetical protein 2.93691629362 0.500000000002 -2.43691629363 +UniRef50_A5UMY5 Diphthamide synthase, subunit DPH2 3.27243737636 0.500000000002 -2.77243737636 +UniRef50_Q9RYI7 N glycosidase F, putative 0.00492128762026 0.5 0.49507871238 +UniRef50_P07001 NAD transhydrogenase subunit alpha 1.03538245769 0.5 -0.535382457692 +UniRef50_V0AI23 1.04513830057 0.5 -0.545138300566 +UniRef50_V7ENM8 0.497297247325 0.5 0.0027027526745 +UniRef50_UPI00037DEAAC hypothetical protein 0.0868853184803 0.5 0.41311468152 +UniRef50_F0PHP0 Diacylglycerol kinase catalytic domain family protein 1.6060693095 0.5 -1.1060693095 +UniRef50_Q9CE10 UDP N acetylmuramate L alanine ligase 0.893042376596 0.5 -0.393042376596 +UniRef50_W4TIG8 Cytoplasmic axial filament protein CafA and Ribonuclease G 0.107114914623 0.5 0.392885085377 +UniRef50_Q9RRN1 0.0082739923137 0.5 0.491726007687 +UniRef50_R4ZVK8 Transcriptional repressor of the fructose operon, DeoR family 0.0860032424495 0.5 0.41399675755 +UniRef50_UPI00037A56E2 hypothetical protein 0.694070925593 0.5 -0.194070925593 +UniRef50_Q4UPB2 0.00328850631048 0.5 0.49671149369 +UniRef50_P34001 2.468993439 0.5 -1.968993439 +UniRef50_V2I282 FAD linked oxidase 2.54998428276 0.500000000002 -2.04998428276 +UniRef50_Q4L978 Diapolycopene oxygenase 8.94550825253 0.499999999983 -8.44550825251 +UniRef50_M9S180 1.75712983643 0.5 -1.25712983643 +UniRef50_B3QZ51 Homoserine O acetyltransferase 0.0683911973681 0.5 0.431608802632 +UniRef50_R4KG93 ATPase family protein associated with various cellular activities 1.02956553348 0.5 -0.529565533479 +UniRef50_D8HI57 Hydrolase, haloacid dehalogenase like family 1.46772197861 0.5 -0.967721978611 +UniRef50_I6SDA8 Bacteriophage protein 0.954219415785 0.5 -0.454219415785 +UniRef50_K2NZ38 0.557417800517 0.5 -0.0574178005169 +UniRef50_J7Q8S5 0.388564850082 0.5 0.111435149918 +UniRef50_A0YFR7 0.108590009257 0.5 0.391409990743 +UniRef50_A6LSK3 Protein kinase 0.115574900135 0.5 0.384425099865 +UniRef50_F4BWI8 Conserved domain protein 0.177122827548 0.5 0.322877172452 +UniRef50_R4MJG0 0.20164428473 0.5 0.29835571527 +UniRef50_UPI00037EA4BC hypothetical protein, partial 1.05010068418 0.5 -0.550100684176 +UniRef50_D1DK94 ATP dependent DNA helicase RecQ 0.00707719158898 0.5 0.492922808411 +UniRef50_Q0FEL8 4.13097603324 0.499999999997 -3.63097603324 +UniRef50_A6LV27 Sigma54 specific transcriptional regulator, Fis family 0.64621427716 0.5 -0.14621427716 +UniRef50_B1I194 Bifunctional protein GlmU 0.389163644482 0.5 0.110836355518 +UniRef50_F0XY59 Expressed protein 0.572747946714 0.5 -0.0727479467138 +UniRef50_K0S277 0.16968848962 0.5 0.33031151038 +UniRef50_A7Z7B8 2 isopropylmalate synthase 0.0083219165898 0.5 0.49167808341 +UniRef50_Q75SP7 stereoselective amidase 0.666503959649 0.5 -0.166503959649 +UniRef50_Q9SA96 Arogenate dehydratase prephenate dehydratase 1, chloroplastic 1.82245643802 0.5 -1.32245643802 +UniRef50_P43741 DNA polymerase I 0.0486738855082 0.5 0.451326114492 +UniRef50_O34635 Probable L serine dehydratase, beta chain 0.00757207742435 0.5 0.492427922576 +UniRef50_E8MF10 UDP glucose 4 epimerase 0.416819380569 0.5 0.0831806194312 +UniRef50_UPI0003787A5F hypothetical protein 0.202040578345 0.5 0.297959421655 +UniRef50_A7GC03 Anaerobic sulfite reductase, subunit A 0.269062811272 0.5 0.230937188728 +UniRef50_Q83HF6 Ribonuclease PH 0.236215554144 0.5 0.263784445856 +UniRef50_U5MQT4 Pentapeptide repeat protein 0.0976398805986 0.5 0.402360119401 +UniRef50_UPI00030D3128 glycerol 3 phosphate ABC transporter permease 0.0657662477424 0.5 0.434233752258 +UniRef50_UPI000366A20C MULTISPECIES 3.81131500868 0.499999999999 -3.31131500868 +UniRef50_U9FGT0 0.145811515577 0.5 0.354188484423 +UniRef50_UPI0003B3E71E long chain fatty acid CoA ligase 0.944181454999 0.5 -0.444181454999 +UniRef50_UPI0003C26616 0.0281874627178 0.5 0.471812537282 +UniRef50_D5WFZ7 Type VI secretion protein, EvpB VC_A0108 family 0.0358694968127 0.5 0.464130503187 +UniRef50_A3PNW5 Signal transduction histidine kinase 0.594948966759 0.5 -0.0949489667588 +UniRef50_Q5P6B9 1.29853527803 0.5 -0.798535278028 +UniRef50_W5XA80 Vacuolar iron transporter 0.809649732 0.5 -0.309649732 +UniRef50_UPI00047633B9 transcriptional regulator 2.29570426662 0.499999999998 -1.79570426662 +UniRef50_A0A059LC79 0.0160364092383 0.5 0.483963590762 +UniRef50_D5W932 Sua5 YciO YrdC YwlC family protein 0.0236157101807 0.5 0.476384289819 +UniRef50_UPI00035D05BC hypothetical protein 0.320168358994 0.5 0.179831641006 +UniRef50_P41367 Medium chain specific acyl CoA dehydrogenase, mitochondrial 0.0500638846566 0.5 0.449936115343 +UniRef50_Q59042 Phosphoribosylformylglycinamidine synthase 1 1.20059772451 0.5 -0.700597724513 +UniRef50_UPI0004283D87 hypothetical protein 0.866461715025 0.5 -0.366461715025 +UniRef50_Q897B2 Phosphomethylpyrimidine synthase 0.329959037203 0.5 0.170040962797 +UniRef50_Q83B06 Aminomethyltransferase 2.27405473865 0.5 -1.77405473865 +UniRef50_Q8CTQ7 Putative pyridoxine kinase 0.969729507831 0.5 -0.469729507831 +UniRef50_UPI00047B361F hypothetical protein 1.31698543575 0.5 -0.816985435751 +UniRef50_A7X2E3 Holliday junction resolvase RecU 2.08992232856 0.5 -1.58992232856 +UniRef50_Q46866 Probable transcriptional regulator YgiV 0.864503527167 0.5 -0.364503527167 +UniRef50_R9LSU9 0.0937524397454 0.5 0.406247560255 +UniRef50_W0F5B5 Phospholipid binding protein 0.241890139739 0.500000000001 0.258109860261 +UniRef50_P70787 Probable tartrate dehydrogenase decarboxylase TtuC 4.18157049394 0.500000000002 -3.68157049394 +UniRef50_Q886D0 Autotransporter, putative 1.1013512632 0.5 -0.601351263204 +UniRef50_P32128 2.86848886765 0.5 -2.36848886765 +UniRef50_W4VEN6 TRAP type C4 dicarboxylate transport system 2.60943819677 0.5 -2.10943819677 +UniRef50_UPI0004691530 hypothetical protein 0.23853733691 0.5 0.26146266309 +UniRef50_M1MML4 Transcriptional regulator, TetR family 0.0999508299993 0.5 0.400049170001 +UniRef50_A0L5I2 Arginine tRNA ligase 0.234572581591 0.5 0.265427418409 +UniRef50_S5U768 0.114308278398 0.5 0.385691721602 +UniRef50_UPI000255F373 hypothetical protein 0.0423345286676 0.5 0.457665471333 +UniRef50_Q1GRQ0 30S ribosomal protein S2 3.67574952734 0.5 -3.17574952734 +UniRef50_A0A015AL57 AcrB AcrD AcrF family protein 0.00935010606516 0.5 0.490649893935 +UniRef50_UPI0004761E95 ligand binding protein SH3 2.06662224848 0.5 -1.56662224848 +UniRef50_U5MYJ1 Multidrug resistance protein MdtA 0.167298322528 0.5 0.332701677472 +UniRef50_W0HG73 Malonyl CoA acyl carrier protein transacylase 0.00612274656943 0.500000000001 0.493877253429 +UniRef50_R9V4R9 Pili assembly chaperone 1.47641203286 0.5 -0.976412032858 +UniRef50_Q08432 Cystathionine beta lyase PatB 0.259516397934 0.5 0.240483602066 +UniRef50_A6LZ60 ROK family protein 0.0717726409595 0.5 0.428227359041 +UniRef50_Q9I427 Cytochrome bo ubiquinol oxidase subunit 2 2.43637247277 0.499999999999 -1.93637247277 +UniRef50_C2PBH1 Phage infection protein 0.719456642556 0.5 -0.219456642556 +UniRef50_L0NF86 2.55292469434 0.500000000002 -2.05292469434 +UniRef50_UPI00037B865B hypothetical protein 2.38693926822 0.500000000002 -1.88693926822 +UniRef50_A0AJ06 Glutamyl tRNA reductase 0.00240362474082 0.5 0.497596375259 +UniRef50_Q49X25 Ribosome maturation factor RimM 2.16306444898 0.5 -1.66306444898 +UniRef50_U6M5K1 0.0430001287696 0.5 0.456999871231 +UniRef50_J3HRH0 TRAP type C4 dicarboxylate transport system, small permease component 0.871228221848 0.5 -0.371228221848 +UniRef50_O27098 Coenzyme F420 2.38352034773 0.500000000001 -1.88352034773 +UniRef50_UPI0004658FC6 hypothetical protein 5.1741174974 0.500000000001 -4.6741174974 +UniRef50_A9W6R8 Chaperone protein DnaJ 1.62234685101 0.5 -1.12234685101 +UniRef50_A6T4V9 H Cl( ) exchange transporter ClcA 0.92725870538 0.5 -0.42725870538 +UniRef50_UPI000372F0D2 hypothetical protein 0.417389448973 0.5 0.0826105510266 +UniRef50_R4YES8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 1.09388077426 0.5 -0.593880774257 +UniRef50_Q8YN97 Ribose phosphate pyrophosphokinase 0.250494619723 0.5 0.249505380277 +UniRef50_UPI00030B21C2 hypothetical protein 0.135747146014 0.5 0.364252853986 +UniRef50_UPI00016C3D7A elongation factor Tu 0.656681420203 0.5 -0.156681420203 +UniRef50_Q52812 General L amino acid binding periplasmic protein AapJ 1.45132122184 0.5 -0.951321221843 +UniRef50_A0LXJ9 Phosphoenolpyruvate carboxykinase [ATP] 0.0461239602075 0.5 0.453876039793 +UniRef50_UPI0004776C78 PTS mannose transporter subunit IID 0.0729459160453 0.5 0.427054083955 +UniRef50_UPI000472F6DD hypothetical protein 0.0229305335103 0.500000000001 0.477069466489 +UniRef50_B2TQB8 Minor teichoic acid biosynthesis protein GgaB 0.434533498227 0.5 0.0654665017727 +UniRef50_T2DYB6 Major Facilitator Superfamily protein 0.159945077015 0.5 0.340054922985 +UniRef50_A6LZ67 Methyl accepting chemotaxis sensory transducer 0.106539072991 0.5 0.393460927009 +UniRef50_D8U6Y2 1.59780153882 0.5 -1.09780153882 +UniRef50_Q3IRZ4 Urease subunit gamma 0.136033326721 0.5 0.363966673279 +UniRef50_Q9RYE3 UPF0173 metal dependent hydrolase DR_0006 0.00576149771338 0.5 0.494238502287 +UniRef50_C5WIU5 0.848677418015 0.5 -0.348677418015 +UniRef50_K4SQW1 Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA 1.68144282362 0.5 -1.18144282362 +UniRef50_X4RBB0 3 dehydroquinate synthase 0.0419465562376 0.5 0.458053443762 +UniRef50_R9JUE8 5.45332099624 0.499999999996 -4.95332099623 +UniRef50_I6WWP7 Cell division protein FtsX 0.0510393436078 0.5 0.448960656392 +UniRef50_B1IMR9 Integrase 0.117286237317 0.5 0.382713762682 +UniRef50_P43790 2.72839985627 0.500000000002 -2.22839985627 +UniRef50_W4JVP7 2.39519447414 0.5 -1.89519447414 +UniRef50_UPI00038FA156 Urease subunit gamma beta 0.085220397822 0.5 0.414779602178 +UniRef50_F8GG26 0.549651616521 0.5 -0.049651616521 +UniRef50_G1Y156 0.143071608879 0.5 0.356928391121 +UniRef50_U5UI30 ATP dependent DNA helicase RecQ 0.827817005211 0.5 -0.327817005211 +UniRef50_B9KMZ8 2.32284570789 0.500000000003 -1.8228457079 +UniRef50_B9KMZ6 1.95901927958 0.5 -1.45901927958 +UniRef50_W4U8Z0 Serine transporter 0.0319251083482 0.5 0.468074891652 +UniRef50_P44598 Non canonical purine NTP pyrophosphatase 0.441617469543 0.5 0.0583825304565 +UniRef50_D3HF85 0.949288582388 0.5 -0.449288582388 +UniRef50_F3KAS3 K+ transporting ATPase, subunit B 0.0160567822227 0.5 0.483943217777 +UniRef50_Q8EP56 Oligopeptide ABC transporter permease 3.29423967725 0.5 -2.79423967725 +UniRef50_A3U2G6 0.304410513861 0.5 0.195589486139 +UniRef50_UPI000424FB0D 50S ribosomal protein L35 0.612063138227 0.5 -0.112063138227 +UniRef50_C7D895 0.974664655975 0.5 -0.474664655975 +UniRef50_M4YX49 Cystathionine beta lyase 0.974328717429 0.5 -0.474328717429 +UniRef50_P50319 Phosphoglycerate kinase, chromosomal 0.247652419859 0.5 0.252347580141 +UniRef50_UPI00034DE802 peptide ABC transporter ATPase 0.523984616285 0.5 -0.0239846162846 +UniRef50_Q6GJB5 1.13505193641 0.5 -0.635051936406 +UniRef50_B8CX90 Diaminopimelate epimerase 0.264879623434 0.5 0.235120376566 +UniRef50_K0RYW3 2.27707892011 0.5 -1.77707892011 +UniRef50_F3C2H3 0.224530075274 0.5 0.275469924726 +UniRef50_D4GIS8 RbsC 1.47551356172 0.5 -0.975513561721 +UniRef50_Q6LP67 Putative reductase PBPRA2527 0.204243621759 0.5 0.295756378241 +UniRef50_P0AD32 UPF0721 transmembrane protein YfcA 1.51336577141 0.5 -1.01336577141 +UniRef50_P29683 Light independent protochlorophyllide reductase subunit N 1.72496622333 0.5 -1.22496622333 +UniRef50_B9KQA6 CheX protein 1.7425511547 0.5 -1.2425511547 +UniRef50_R9SKF6 HEAT repeat containing protein 1.20438833823 0.5 -0.704388338229 +UniRef50_UPI0004793211 peptidase 1.71602746837 0.499999999999 -1.21602746837 +UniRef50_L5ME78 Transforming acidic coiled coil containing protein 3 0.794101660089 0.5 -0.294101660089 +UniRef50_UPI000467A92B hypothetical protein 0.131179349441 0.500000000001 0.368820650558 +UniRef50_A5W1N9 0.0257975067784 0.5 0.474202493221 +UniRef50_Q6AAL7 Phosphotransferase system protein, mannitol fructose specific IIA subunit 0.0225261181726 0.5 0.477473881827 +UniRef50_B9KL54 Tripartite ATP independent periplasmic transporter, DctQ component 2.59924645155 0.499999999999 -2.09924645155 +UniRef50_D4HCV9 ABC transporter, ATP binding protein 0.0197203764678 0.5 0.480279623532 +UniRef50_U5Q1X8 Urease subunit gamma 0.332331558779 0.5 0.167668441221 +UniRef50_A6M1Q7 D galactose binding periplasmic protein 0.523260216697 0.5 -0.0232602166971 +UniRef50_Q97KN0 Adenine deaminase 1.53416442026 0.5 -1.03416442026 +UniRef50_P80866 Vegetative protein 296 0.195797614361 0.5 0.304202385639 +UniRef50_R4GHY1 0.0197485265639 0.5 0.480251473436 +UniRef50_A0LZ82 Aldose 1 epimerase 0.256788002779 0.5 0.243211997221 +UniRef50_Q49UM3 1.49814039149 0.5 -0.998140391494 +UniRef50_B8DCV0 Transcriptional regulator, GntR family 0.11872272021 0.5 0.381277279789 +UniRef50_Q2YVT4 N acetylmuramoyl L alanine amidase sle1 3.39073208879 0.499999999996 -2.89073208878 +UniRef50_D7C1Q5 0.369509474789 0.5 0.130490525211 +UniRef50_A0A024R8N7 HCG1776376, isoform CRA_a 1.15583348312 0.5 -0.655833483119 +UniRef50_Q5HNA1 ABC transporter, permease protein 1.45907168302 0.5 -0.959071683025 +UniRef50_F0KFX3 0.0255030752547 0.5 0.474496924745 +UniRef50_UPI00035DDF13 hypothetical protein, partial 0.154042382756 0.5 0.345957617244 +UniRef50_UPI0002D43593 multidrug transporter 0.274041239704 0.5 0.225958760296 +UniRef50_UPI0003EA94D2 PREDICTED 0.0764302939273 0.5 0.423569706073 +UniRef50_F5X5K2 Predicted membrane protein 2.37385035203 0.5 -1.87385035203 +UniRef50_X0XNE1 Marine sediment metagenome DNA, contig 0.816915225247 0.5 -0.316915225247 +UniRef50_W4HQ00 1.22687341202 0.5 -0.726873412017 +UniRef50_R9YPL9 Host cell surface exposed lipofamily protein 0.661272432321 0.5 -0.161272432321 +UniRef50_Q9ZUC2 Beta carbonic anhydrase 3 1.37867159765 0.5 -0.87867159765 +UniRef50_E1V7W0 N alpha acetyl L 2,4 diaminobutyric acid deacetylase 0.780126666231 0.5 -0.280126666231 +UniRef50_R4Z8G3 Glycogen debranching protein 1.77782745554 0.5 -1.27782745554 +UniRef50_Q3V7G7 Alanine racemase 0.0503180807555 0.5 0.449681919245 +UniRef50_P75860 0.19875620706 0.5 0.30124379294 +UniRef50_UPI00039BF8F5 hypothetical protein 0.919868316477 0.5 -0.419868316477 +UniRef50_A6LYW2 0.314152652231 0.5 0.185847347769 +UniRef50_J0H573 1.11505566253 0.5 -0.615055662525 +UniRef50_P08190 Protein FimG 13.9507207339 0.500000000001 -13.4507207339 +UniRef50_A7MNJ8 1.49269820582 0.5 -0.992698205819 +UniRef50_D7B2I8 0.399947501294 0.5 0.100052498706 +UniRef50_A6V7D9 0.361448213187 0.5 0.138551786813 +UniRef50_UPI0002558E19 chemotaxis protein CheY 0.186220518169 0.5 0.313779481831 +UniRef50_A6LYX0 Phosphoglycerate mutase 0.173662994298 0.5 0.326337005702 +UniRef50_K7RNA7 SAM dependent methyltransferase related to tRNA 0.0175858978196 0.5 0.48241410218 +UniRef50_UPI000350FEA2 PREDICTED 1.45646740197 0.5 -0.956467401972 +UniRef50_G0A8S2 0.318529468093 0.5 0.181470531907 +UniRef50_M9R9T3 3.13546722122 0.499999999999 -2.63546722121 +UniRef50_UPI000377BD8B hypothetical protein, partial 0.367386203399 0.5 0.132613796601 +UniRef50_D7GV59 0.335898114527 0.5 0.164101885473 +UniRef50_A1AYV3 Tryptophan synthase alpha chain 0.991003290056 0.5 -0.491003290056 +UniRef50_R5A036 Transcriptional regulator, MerR family 1.16253002702 0.5 -0.662530027024 +UniRef50_UPI00046400FC branched chain amino acid ABC transporter substrate binding protein 0.0733467072977 0.5 0.426653292702 +UniRef50_I1ZP03 0.686548196179 0.5 -0.186548196179 +UniRef50_J9HV03 Sigma 70 factor, ECF subfamily 0.0816968653077 0.5 0.418303134692 +UniRef50_P55373 Putative transposase y4bF 1.6051694499 0.500000000001 -1.1051694499 +UniRef50_P0AEJ7 Ethanolamine ammonia lyase heavy chain 0.898499954954 0.5 -0.398499954954 +UniRef50_A6LTI9 Transcriptional regulator, XRE family 1.02817753291 0.5 -0.528177532908 +UniRef50_P0A9H8 Cyclopropane fatty acyl phospholipid synthase 2.57351747264 0.499999999997 -2.07351747263 +UniRef50_UPI000416C7B3 hypothetical protein 2.22947594372 0.5 -1.72947594372 +UniRef50_K2ADQ8 1.26762931038 0.5 -0.767629310385 +UniRef50_C5N2G7 2.35049350435 0.5 -1.85049350435 +UniRef50_B2HNE5 Bifunctional protein PyrR 0.057898568795 0.5 0.442101431205 +UniRef50_U3NTD9 IS1272 like transposase, degenerate 4.88632412129 0.500000000001 -4.38632412129 +UniRef50_B9DM46 tRNA pseudouridine synthase A 1.37498085988 0.5 -0.874980859885 +UniRef50_I6G9X5 Na H(+) antiporter NhaB 1.60914112973 0.5 -1.10914112973 +UniRef50_Q6YWQ5 0.0552995561156 0.5 0.444700443884 +UniRef50_Q5HJG9 10.8301836144 0.499999999992 -10.3301836144 +UniRef50_I6SJA3 1.35061565793 0.500000000002 -0.850615657935 +UniRef50_Q12PW9 0.00351535860894 0.5 0.496484641392 +UniRef50_Q2NFV5 2.15995343352 0.500000000001 -1.65995343352 +UniRef50_Q8YH17 Methionine tRNA ligase 0.249699221742 0.5 0.250300778258 +UniRef50_A6LUK3 Glutathione biosynthesis bifunctional protein GshAB 0.284472133022 0.5 0.215527866978 +UniRef50_UPI00041F4DD3 cytochrome B562 2.1294428657 0.5 -1.6294428657 +UniRef50_P0AB92 Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive 1.69414839327 0.5 -1.19414839327 +UniRef50_M5D5S2 Capsule assembly, only in sialic acid capsules 0.00585905076267 0.5 0.494140949237 +UniRef50_P26389 Colanic acid biosynthesis protein WcaM 5.20189446191 0.499999999999 -4.7018944619 +UniRef50_T1VWC8 ABC transporter ATP binding protein permease 0.0103100564584 0.5 0.489689943541 +UniRef50_Q5FLS6 Alcohol acetaldehyde dehydrogenase 2.40666388342 0.5 -1.90666388342 +UniRef50_UPI000191169A hypothetical protein 0.00949305601653 0.500000000001 0.490506943983 +UniRef50_Q89IP8 Serine acetyltransferase 1.31740079458 0.5 -0.817400794578 +UniRef50_G7M4A2 0.114223896313 0.5 0.385776103687 +UniRef50_UPI000395B0F7 streptomycin 3 kinase 0.326384382154 0.5 0.173615617846 +UniRef50_F9UF35 0.228273112488 0.5 0.271726887512 +UniRef50_Q5HMZ8 ABC transporter, ATP binding protein 1.92777907519 0.500000000002 -1.42777907519 +UniRef50_Q71Y59 Tyrosine recombinase XerD 1.9662069855 0.5 -1.4662069855 +UniRef50_P71238 Putative colanic acid polymerase 1.33292654997 0.5 -0.832926549971 +UniRef50_J1A645 1.20425457444 0.5 -0.704254574444 +UniRef50_Q6F9X3 DNA polymerase III, delta prime subunit 0.0651187716019 0.5 0.434881228398 +UniRef50_UPI00036E0FA5 hypothetical protein, partial 0.146918727931 0.5 0.353081272069 +UniRef50_R5NMQ5 0.0706489526902 0.5 0.42935104731 +UniRef50_A5UNF2 7.20464278759 0.500000000003 -6.70464278759 +UniRef50_A5UNF1 2.74243423808 0.499999999999 -2.24243423808 +UniRef50_UPI000478864C cell division protein FtsW 0.0259242152229 0.5 0.474075784777 +UniRef50_UPI00047B937D DEAD DEAH box helicase 0.00218661681379 0.500000000001 0.497813383185 +UniRef50_A0A059LEJ0 0.310492713985 0.5 0.189507286015 +UniRef50_N6VGA3 Putative transcriptional regulator 2.24191905695 0.499999999998 -1.74191905695 +UniRef50_P25885 0.328944145454 0.5 0.171055854546 +UniRef50_UPI0003B5626D sodium 0.00142779694835 0.5 0.498572203052 +UniRef50_Q3A9Q7 DNA directed RNA polymerase subunit beta 1.13494881493 0.5 -0.634948814932 +UniRef50_UPI00036DB2E6 hypothetical protein 4.89344909045 0.5 -4.39344909045 +UniRef50_UPI000362123D hypothetical protein 0.0864511389171 0.5 0.413548861083 +UniRef50_S3YIQ8 0.018495419657 0.5 0.481504580343 +UniRef50_UPI00046C8BA3 hypothetical protein 0.387496657978 0.5 0.112503342022 +UniRef50_W1EYJ0 Ferredoxin like protein YgcO 0.211791273331 0.5 0.288208726669 +UniRef50_P46448 Formate dehydrogenase major subunit 1.20512289521 0.5 -0.70512289521 +UniRef50_UPI000262829F rhodanese related sulfurtransferase 1.29970695175 0.5 -0.799706951753 +UniRef50_UPI00047C1110 hypothetical protein 0.0586699091806 0.5 0.441330090819 +UniRef50_A4VSJ2 ABC type Mn2+ Zn2+ transport system, permease component 0.217177807397 0.5 0.282822192603 +UniRef50_D3QEN2 1.0275913482 0.499999999999 -0.527591348201 +UniRef50_UPI000377656B hypothetical protein 0.0625323305888 0.5 0.437467669411 +UniRef50_S5YYN3 Protein L isoaspartate O methyltransferase 1.1137384448 0.5 -0.613738444797 +UniRef50_Q6F7L8 Glycine tRNA ligase beta subunit 0.00487884967003 0.5 0.49512115033 +UniRef50_Q6N372 1.7015563749 0.5 -1.2015563749 +UniRef50_V8HFR8 1.42942780692 0.499999999999 -0.929427806916 +UniRef50_P35818 Type II secretion system protein D 0.521615154447 0.5 -0.0216151544466 +UniRef50_P00272 Rubredoxin 2 2.85487157076 0.499999999997 -2.35487157076 +UniRef50_W7WXT6 0.160508249594 0.499999999999 0.339491750406 +UniRef50_UPI0004680DA6 hypothetical protein, partial 0.367411769084 0.5 0.132588230916 +UniRef50_UPI00046D684B hypothetical protein 0.231426539567 0.5 0.268573460433 +UniRef50_A8MLB2 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.169282476921 0.5 0.330717523079 +UniRef50_UPI0004712276 hypothetical protein 6.10279043186 0.499999999996 -5.60279043186 +UniRef50_Q54F10 NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial 1.69009615242 0.5 -1.19009615242 +UniRef50_U6BPG2 Sulfide 2.98075594337 0.5 -2.48075594337 +UniRef50_A6QIL0 Phage transcriptional regulator 1.19046974576 0.499999999999 -0.690469745756 +UniRef50_B2V042 Acetobutylicum phosphotransbutyrylase 0.357577151622 0.5 0.142422848378 +UniRef50_B0VU19 0.0271602337272 0.5 0.472839766273 +UniRef50_C7NAK8 PP loop domain protein 0.578473294133 0.5 -0.0784732941329 +UniRef50_UPI00046FF5CF glycerol 3 phosphate ABC transporter substrate binding protein 1.21972116732 0.5 -0.719721167323 +UniRef50_G7M5U8 Type III restriction protein res subunit 0.0686400522452 0.5 0.431359947755 +UniRef50_UPI0004770856 hypothetical protein 0.142794701257 0.5 0.357205298743 +UniRef50_Q88FX7 HTH type transcriptional repressor NicS 0.502175929892 0.5 -0.00217592989192 +UniRef50_UPI00038194DC 30S ribosomal protein S5 0.297407541042 0.5 0.202592458958 +UniRef50_UPI0003B76623 coproporphyrinogen III oxidase 2.1649450433 0.5 -1.6649450433 +UniRef50_Q56232 Aspartate aminotransferase 0.0074835340762 0.5 0.492516465924 +UniRef50_R9SJX9 ABC transporter ATP binding protein 1.05303300201 0.5 -0.553033002007 +UniRef50_M1MQF5 Response regulator receiver protein 0.121790153419 0.499999999999 0.378209846581 +UniRef50_V5SVS2 Membrane protein 0.787952267322 0.5 -0.287952267322 +UniRef50_Q9RXI1 0.001453494651 0.5 0.498546505349 +UniRef50_Q9RXI0 0.00360098531241 0.5 0.496399014688 +UniRef50_Q9RXI3 0.00384865612639 0.499999999999 0.496151343874 +UniRef50_P0AEW2 Hydrogenase 4 component E 3.86531062559 0.500000000002 -3.36531062559 +UniRef50_UPI0004630DB7 hypothetical protein 0.222790382923 0.5 0.277209617077 +UniRef50_UPI000361E4A2 hypothetical protein 0.853162350643 0.5 -0.353162350643 +UniRef50_Q4ZY83 Two component response regulator CbrB 0.382353581524 0.5 0.117646418476 +UniRef50_A6X6K2 Extracellular solute binding protein family 1 0.482527829742 0.5 0.0174721702577 +UniRef50_I7ER35 Signal transduction protein, FIST domain protein 3.82297014009 0.499999999994 -3.32297014008 +UniRef50_P00934 Threonine synthase 3.14067610067 0.5 -2.64067610067 +UniRef50_UPI00040DCB98 hypothetical protein 1.6868341586 0.500000000001 -1.1868341586 +UniRef50_UPI00046815CA branched chain amino acid ABC transporter permease 0.403451114446 0.5 0.0965488855543 +UniRef50_UPI0003C1A0D8 PREDICTED 1.69066343247 0.500000000002 -1.19066343247 +UniRef50_A6LZT6 Transcriptional regulator, XRE family 0.0523347461336 0.499999999999 0.447665253867 +UniRef50_C1CVB0 0.00793072547606 0.5 0.492069274524 +UniRef50_UPI00047588DA hypothetical protein, partial 1.24242632292 0.5 -0.742426322916 +UniRef50_Q43844 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 0.351400504849 0.5 0.148599495151 +UniRef50_Q56224 NADH quinone oxidoreductase subunit 9 0.0487927266655 0.5 0.451207273335 +UniRef50_Q4RS53 Chromosome 13 SCAF15000, whole genome shotgun sequence 0.149524320921 0.5 0.350475679078 +UniRef50_D6SFZ4 Tetratricopeptide repeat protein 2.55135892173 0.499999999999 -2.05135892173 +UniRef50_UPI0002554EAB ribose ABC transporter permease 1.38884100317 0.5 -0.88884100317 +UniRef50_Q43931 Muconate cycloisomerase 1 0.00496473696813 0.499999999999 0.495035263033 +UniRef50_D2ZXF5 0.00483458554292 0.5 0.495165414457 +UniRef50_B7V7C6 Fimbrial subunit CupB6 1.14674100492 0.5 -0.646741004923 +UniRef50_P77295 Probable HTH type transcriptional regulator YgaV 0.320636268438 0.5 0.179363731562 +UniRef50_E3EZG9 0.376613519231 0.5 0.123386480769 +UniRef50_UPI00046E86F5 cell division protein FtsY 0.403830411491 0.5 0.0961695885089 +UniRef50_UPI0003B5A40E hypothetical protein 0.477887840687 0.5 0.0221121593128 +UniRef50_Q4QLL8 Cytochrome c 552 0.906017927229 0.5 -0.406017927229 +UniRef50_UPI00046632A0 long chain fatty acid CoA ligase 0.144541008868 0.5 0.355458991133 +UniRef50_W0A5F8 Transposase 0.155896689209 0.5 0.344103310791 +UniRef50_I0C313 Hydrolase 1.08978147579 0.5 -0.589781475791 +UniRef50_UPI0004631CAE hypothetical protein 0.321422158435 0.5 0.178577841565 +UniRef50_Q5HRP8 Cell division protein DivIC, putative 2.76915136324 0.500000000001 -2.26915136324 +UniRef50_B6VMG8 0.121624642739 0.5 0.378375357261 +UniRef50_UPI00047BC877 phosphoribosylaminoimidazole succinocarboxamide synthase 1.03235104702 0.5 -0.532351047019 +UniRef50_UPI0003B45BBB biotin synthase 0.0333843874133 0.5 0.466615612587 +UniRef50_L1K758 1.49095789329 0.5 -0.990957893291 +UniRef50_UPI0001BF7A81 hypothetical protein SMAC_09967, partial 0.286317767167 0.5 0.213682232833 +UniRef50_UPI000288416E winged helix family two component transcriptional regulator 3.17611090935 0.5 -2.67611090935 +UniRef50_UPI0002DF8C9A hypothetical protein 0.368408047141 0.5 0.131591952859 +UniRef50_Q30Q90 0.079112928873 0.5 0.420887071127 +UniRef50_Q56198 Glucokinase 3.12006265683 0.499999999998 -2.62006265683 +UniRef50_UPI00047A54E3 hypothetical protein 0.108589015054 0.5 0.391410984946 +UniRef50_Q3IYC6 Phosphoglycolate phosphatase 0.147808930677 0.5 0.352191069323 +UniRef50_V4R363 Tyrosyl tRNA synthetase 0.377320344341 0.5 0.122679655659 +UniRef50_D3V593 0.364376988533 0.5 0.135623011467 +UniRef50_B8DKL2 Appr 1 p processing domain protein 0.0594464356508 0.5 0.440553564349 +UniRef50_UPI0002F80699 hypothetical protein 1.33972469659 0.5 -0.839724696586 +UniRef50_W4TMK3 Biotin synthase 0.681118334612 0.5 -0.181118334612 +UniRef50_H2JJL8 Anaerobic ribonucleoside triphosphate reductase activating protein 0.13389361655 0.5 0.36610638345 +UniRef50_F0DFZ2 0.313373704218 0.5 0.186626295782 +UniRef50_S4YYU9 Enoyl CoA hydratase 0.0235604460559 0.5 0.476439553944 +UniRef50_B0RDR3 Serine hydroxymethyltransferase 0.395841961088 0.5 0.104158038912 +UniRef50_A0A011QYI3 Leucine responsive regulatory protein 1.37768521604 0.5 -0.87768521604 +UniRef50_F0Y7D5 Expressed protein 0.084062998488 0.5 0.415937001512 +UniRef50_B7NFU7 Bifunctional purine biosynthesis protein PurH 0.259630191121 0.5 0.240369808879 +UniRef50_UPI0002B4A5BA 0.153027779636 0.5 0.346972220364 +UniRef50_UPI0003593C55 PREDICTED 2.0903728322 0.499999999998 -1.5903728322 +UniRef50_W5XHW0 Translation initiation factor IF 3 0.17440260901 0.5 0.32559739099 +UniRef50_M1LW12 Sensor histidine kinase AruS 0.153742072712 0.499999999999 0.346257927289 +UniRef50_F8EJQ6 3 oxoacyl reductase 0.0117114623891 0.5 0.488288537611 +UniRef50_UPI000462EF2C hypothetical protein 0.400776716957 0.5 0.0992232830432 +UniRef50_F2JY03 1.55362197041 0.5 -1.05362197041 +UniRef50_D8JE80 Tyrosine recombinase XerC 0.021877847367 0.5 0.478122152633 +UniRef50_UPI00037E2E56 polyphosphate kinase 0.00912000111771 0.5 0.490879998882 +UniRef50_P18956 Gamma glutamyltranspeptidase 0.742051706151 0.5 -0.242051706151 +UniRef50_Q213M9 C4 dicarboxylate transport protein 1.08324863638 0.5 -0.583248636377 +UniRef50_UPI000050FB19 ABC transporter related protein 3.45432370219 0.5 -2.95432370219 +UniRef50_UPI00047A7902 mechanosensitive ion channel protein MscL 0.279632393955 0.5 0.220367606045 +UniRef50_UPI0003B393FA RNA pseudouridine synthase 0.611025542611 0.5 -0.111025542611 +UniRef50_UPI00036D2E60 hypothetical protein 5.63504313578 0.500000000005 -5.13504313579 +UniRef50_H6SJP6 0.291813050003 0.5 0.208186949997 +UniRef50_P37677 L xylulose 3 keto L gulonate kinase 1.60312058755 0.5 -1.10312058755 +UniRef50_Q0WM29 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 0.596369848929 0.5 -0.0963698489285 +UniRef50_UPI0003C767D3 hypothetical protein 0.0781318315716 0.5 0.421868168428 +UniRef50_Q1IPE7 NADH quinone oxidoreductase subunit B 1 0.045941988144 0.499999999999 0.454058011857 +UniRef50_UPI0003317A65 PREDICTED 1.6561705774 0.5 -1.1561705774 +UniRef50_B3PI58 Undecaprenyl diphosphatase 0.0278877187973 0.5 0.472112281203 +UniRef50_UPI00036B3249 hypothetical protein 1.0905904834 0.5 -0.590590483405 +UniRef50_UPI0003A8BB10 zinc transporter ZitB 0.076763258933 0.5 0.423236741067 +UniRef50_UPI0004722EB3 hypothetical protein 0.19916386199 0.5 0.30083613801 +UniRef50_Q9RVR0 0.021073084662 0.5 0.478926915338 +UniRef50_B9KV19 0.454709891641 0.5 0.045290108359 +UniRef50_UPI00035D3125 hypothetical protein 0.047160164525 0.5 0.452839835475 +UniRef50_F3L538 Putative exported protein 0.635066874163 0.5 -0.135066874163 +UniRef50_C8RX76 Flagellar protein FlgJ, putative 0.975749545652 0.5 -0.475749545652 +UniRef50_Q8CNW5 Septation ring formation regulator EzrA 1.76746961932 0.500000000002 -1.26746961932 +UniRef50_Q89V93 Bll1154 protein 6.4283202317 0.500000000004 -5.9283202317 +UniRef50_P44051 Short chain fatty acids transporter 0.581739407206 0.5 -0.081739407206 +UniRef50_UPI0004773F07 ATPase P 0.312478614318 0.5 0.187521385682 +UniRef50_A9S9Z8 0.107774789533 0.5 0.392225210466 +UniRef50_UPI0003494CA9 hypothetical protein 0.31150798484 0.5 0.18849201516 +UniRef50_A5UMD9 0.215064093787 0.5 0.284935906213 +UniRef50_J7RHN4 Aconitate hydratase 0.00701310658588 0.5 0.492986893414 +UniRef50_UPI00046E29A5 dihydroxy acid dehydratase, partial 3.92333991553 0.499999999994 -3.42333991553 +UniRef50_M5AGE8 0.313019839346 0.5 0.186980160654 +UniRef50_B3DS65 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.89104198012 0.5 -0.39104198012 +UniRef50_A4JK78 Phospholipase C 0.259674531228 0.5 0.240325468772 +UniRef50_Q9RX49 Sensory box GGDEF family protein 0.00266535344424 0.5 0.497334646556 +UniRef50_Q0F2B8 Stringent starvation protein A 0.145700959612 0.5 0.354299040388 +UniRef50_UPI0003B6D1EF LysR family transcriptional regulator 0.287083863454 0.5 0.212916136546 +UniRef50_A7FKP6 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.248880531524 0.5 0.251119468476 +UniRef50_UPI0002628ACD parB like partition proteins 0.0235204993045 0.5 0.476479500695 +UniRef50_UPI0003601EED hypothetical protein, partial 0.341334411415 0.5 0.158665588585 +UniRef50_A3M7V2 23 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.0128108407252 0.5 0.487189159275 +UniRef50_UPI000372E28D gamma aminobutyrate transporter, partial 0.208869030111 0.5 0.291130969889 +UniRef50_I0JLF4 Lactoylglutathione lyase 0.118741660873 0.5 0.381258339127 +UniRef50_B5ZZ54 Hydrolase of the alpha beta superfamily like protein 3.17486687085 0.499999999999 -2.67486687085 +UniRef50_B7UVW2 1.39424598254 0.5 -0.894245982538 +UniRef50_UPI00036095F7 hypothetical protein 1.82302061771 0.5 -1.32302061771 +UniRef50_UPI00046CE9BB hypothetical protein 0.291998896589 0.5 0.208001103411 +UniRef50_F0KJR3 Membrane alanyl aminopeptidase 0.0041516064221 0.5 0.495848393578 +UniRef50_A2S1L9 0.571329501965 0.5 -0.0713295019652 +UniRef50_A1VT74 Transposase, IS4 family 0.8722765283 0.5 -0.3722765283 +UniRef50_UPI0003C150A0 PREDICTED 0.342713997613 0.5 0.157286002387 +UniRef50_UPI00041D4C0B hypothetical protein 0.35141087854 0.5 0.14858912146 +UniRef50_A3PJ68 SmpA OmlA domain protein 1.60581825692 0.5 -1.10581825692 +UniRef50_Q99ZQ6 Pseudouridine synthase 0.469675173788 0.5 0.0303248262123 +UniRef50_Q5HQT9 Sodium transport family protein 1.37316853341 0.5 -0.873168533412 +UniRef50_G7M9D2 Pseudouridine synthase, RluA family 0.160764601251 0.5 0.339235398749 +UniRef50_P13036 Fe dicitrate transport protein FecA 1.74321615291 0.5 -1.24321615291 +UniRef50_UPI000366DA96 hypothetical protein 0.0397936338771 0.5 0.460206366123 +UniRef50_UPI000475FEFF FAD binding protein 0.00393798540063 0.500000000001 0.496062014599 +UniRef50_B4FJG3 0.156006849509 0.5 0.343993150491 +UniRef50_R7PWX3 6.28798610411 0.500000000001 -5.78798610411 +UniRef50_P39522 Dihydroxy acid dehydratase, mitochondrial 0.460716036316 0.5 0.0392839636843 +UniRef50_A2SLT0 tRNA specific 2 thiouridylase MnmA 0.26972599745 0.5 0.23027400255 +UniRef50_X2NG16 Lysine decarboxylase LdcC 1.67151294197 0.5 -1.17151294197 +UniRef50_Q9RY06 Valine tRNA ligase 0.000814931816882 0.5 0.499185068183 +UniRef50_Q0RRW7 NADH quinone oxidoreductase subunit B 0.0657406551751 0.500000000001 0.434259344824 +UniRef50_P37813 ATP synthase subunit a 3.53618322932 0.499999999996 -3.03618322932 +UniRef50_U3T5D5 0.0175140391411 0.5 0.482485960859 +UniRef50_S9XSX4 0.0110894563245 0.5 0.488910543675 +UniRef50_J7D104 4.07108875045 0.499999999999 -3.57108875045 +UniRef50_B0K6Q8 0.377531167482 0.5 0.122468832518 +UniRef50_UPI00020009E9 hypothetical protein, partial 0.025564849619 0.5 0.474435150381 +UniRef50_A0A058ZAA4 16.2860863836 0.500000000004 -15.7860863836 +UniRef50_D2NQQ7 ATP dependent zinc metalloprotease FtsH 0.0639421842032 0.5 0.436057815797 +UniRef50_UPI00035F9DDC hypothetical protein 0.266244941457 0.5 0.233755058543 +UniRef50_B2E956 NADP dependent isocitrate dehydrogenase protein 0.913428160754 0.5 -0.413428160754 +UniRef50_UPI000349B827 hypothetical protein 0.211901863287 0.5 0.288098136713 +UniRef50_I9CFE3 Transposase IS66 0.36544139149 0.5 0.13455860851 +UniRef50_C6SRZ7 2.34861736531 0.499999999999 -1.84861736531 +UniRef50_G0LSH0 Pathogenicity island protein 0.0553911236665 0.5 0.444608876334 +UniRef50_X2HYB2 Sodium 0.0497790532013 0.5 0.450220946799 +UniRef50_Q7MNQ6 UPF0246 protein VV0659 0.104291193389 0.5 0.395708806611 +UniRef50_A5WGK5 Aspartate carbamoyltransferase 0.105982928639 0.5 0.394017071361 +UniRef50_Q1GID4 Extracellular solute binding protein family 1 1.33029303369 0.5 -0.83029303369 +UniRef50_A6LVW3 RelA SpoT domain protein 0.047026041542 0.5 0.452973958458 +UniRef50_UPI000471FC6E glyoxalase 0.182720126392 0.499999999999 0.317279873609 +UniRef50_Q8XKQ2 Galactose methyl galactoside import ATP binding protein MglA 1.20417285796 0.5 -0.704172857955 +UniRef50_UPI00016C49DE phosphoribosylanthranilate isomerase 0.345538244854 0.5 0.154461755146 +UniRef50_B0TGQ8 Dihydroorotate dehydrogenase B ), catalytic subunit 0.00150256072106 0.499999999999 0.49849743928 +UniRef50_B9KKA8 0.0171952859726 0.5 0.482804714027 +UniRef50_UPI000472AD58 tryptophan synthase alpha chain 0.779147246389 0.5 -0.279147246389 +UniRef50_UPI00046ADEBA ABC transporter ATP binding protein 0.558325577192 0.5 -0.0583255771921 +UniRef50_A7IEL6 Binding protein dependent transport systems inner membrane component 0.0553867165665 0.5 0.444613283434 +UniRef50_E8SEV3 Molybdopterin biosynthesis protein MoeB 2.0865075458 0.500000000001 -1.5865075458 +UniRef50_UPI0002B45AB9 1.34901192334 0.5 -0.84901192334 +UniRef50_Q5WE04 L lactate dehydrogenase 1.08015057637 0.5 -0.580150576369 +UniRef50_A6LYL8 Integral membrane sensor signal transduction histidine kinase 0.095127565735 0.5 0.404872434265 +UniRef50_K8B662 0.433839284161 0.5 0.066160715839 +UniRef50_UPI0001FFDAEB transcriptional regulator 8.68035193409 0.500000000001 -8.18035193409 +UniRef50_K0FMM2 BclA protein 0.223734936312 0.5 0.276265063688 +UniRef50_B2VIE6 UPF0294 protein ETA_26410 3.32586461889 0.500000000003 -2.8258646189 +UniRef50_Q0H8X2 Probable intron encoded endonuclease bI1 1.30770576751 0.5 -0.807705767505 +UniRef50_W0EIH2 UvrABC system protein A 0.0640421262225 0.5 0.435957873777 +UniRef50_D2NRU1 Archaeal DNA polymerase II, large subunit 0.0195835034223 0.5 0.480416496578 +UniRef50_UPI0001E7AE98 putative ribonucleotide reductase large subunit 0.00947586696891 0.5 0.490524133031 +UniRef50_UPI0003614ECF hypothetical protein 0.294377334863 0.5 0.205622665137 +UniRef50_Q2CJ82 Short chain dehydrogenase reductase SDR 0.369244812261 0.5 0.130755187739 +UniRef50_P0A936 Membrane bound lytic murein transglycosylase A 1.63632598007 0.5 -1.13632598007 +UniRef50_UPI000443285E PREDICTED 0.0363726712804 0.5 0.46362732872 +UniRef50_A5IW55 Transcriptional regulator, MarR family 0.819809907896 0.5 -0.319809907896 +UniRef50_UPI000350F61A PREDICTED 0.90243063194 0.5 -0.40243063194 +UniRef50_UPI0003B45CE3 arabinose ABC transporter permease 0.335279069872 0.5 0.164720930128 +UniRef50_A0A022P145 15.5870061403 0.500000000007 -15.0870061403 +UniRef50_UPI00026276EB preprotein translocase subunit SecA 1.19091354764 0.5 -0.690913547641 +UniRef50_Q9RY70 Ornithine carbamoyltransferase 0.00157107460455 0.5 0.498428925396 +UniRef50_P24520 Nicotinamide riboside transporter PnuC 2.0264105812 0.499999999998 -1.52641058119 +UniRef50_A0Q6K3 Malate dehydrogenase 1.75054252798 0.500000000001 -1.25054252798 +UniRef50_B9KQ46 2.29412639457 0.499999999998 -1.79412639457 +UniRef50_Q5XD24 Probable metallo hydrolase M6_Spy0554 0.292777982013 0.5 0.207222017987 +UniRef50_V6URT8 Membrane protein 2.77561311085 0.499999999999 -2.27561311085 +UniRef50_Q5HR11 ATP dependent DNA helicase RecQ 2.80237856346 0.5 -2.30237856346 +UniRef50_UPI000471C72D NAD dependent malic enzyme 1 0.763735722625 0.5 -0.263735722625 +UniRef50_C1CXG7 30S ribosomal protein S10 0.0931083751499 0.5 0.40689162485 +UniRef50_UPI00046A2C95 histidine phosphotransferase 1.32632875712 0.5 -0.826328757119 +UniRef50_V5VBC4 Acinetobactin biosynthesis protein 0.0077288612237 0.5 0.492271138776 +UniRef50_A0A031C6N4 1.60246413247 0.499999999999 -1.10246413247 +UniRef50_A8LPB3 Import inner membrane translocase 4.43787943001 0.500000000001 -3.93787943001 +UniRef50_Q6D6A4 UPF0176 protein ECA1781 0.926088148535 0.5 -0.426088148535 +UniRef50_D3DZB3 MatE efflux family protein 2.68526714979 0.500000000002 -2.18526714979 +UniRef50_F8G4X8 Citrate synthase 0.995632182384 0.5 -0.495632182384 +UniRef50_UPI0003B63C52 peptide permease BMEII0860 0.38091133074 0.5 0.11908866926 +UniRef50_P20839 Inosine 5 monophosphate dehydrogenase 1 1.18046561881 0.5 -0.680465618813 +UniRef50_J3TFE7 Arabinose efflux permease family protein 0.0135827921093 0.5 0.486417207891 +UniRef50_UPI00034B9571 hypothetical protein 0.405599707455 0.5 0.0944002925453 +UniRef50_U2Z938 Initiation of plasmid replication 2.41293704793 0.5 -1.91293704793 +UniRef50_T2KQZ5 Lipoyltransferase and lipoate protein ligase 2.89367366336 0.499999999999 -2.39367366335 +UniRef50_S6AU95 Transcriptional regulators 0.499119185404 0.5 0.000880814595683 +UniRef50_F4CWF2 1.01698646324 0.5 -0.516986463242 +UniRef50_N0AYY4 Aromatic amino acid transport protein AroP 2.02231357789 0.500000000001 -1.52231357789 +UniRef50_A6U7Z3 Proline tRNA ligase 2.47066688306 0.500000000002 -1.97066688307 +UniRef50_F0Y346 0.467528290976 0.5 0.0324717090236 +UniRef50_V9VJ25 0.0125775997109 0.5 0.487422400289 +UniRef50_X2HPT1 Membrane protein 0.0143426018622 0.5 0.485657398138 +UniRef50_C4ZU18 Fructose 1 phosphate kinase 2.0328254113 0.500000000002 -1.5328254113 +UniRef50_S5SQS1 Oligopeptide ABC transporter ATP binding protein 0.713094880741 0.5 -0.213094880741 +UniRef50_C1DMJ1 TonB dependent siderophore receptor 0.609152542104 0.5 -0.109152542104 +UniRef50_D9VJK2 0.00168217825669 0.5 0.498317821743 +UniRef50_Q8NQ46 Peptide deformylase 1 0.0668758764261 0.5 0.433124123574 +UniRef50_F6DQM1 FAD linked oxidase domain protein 1.85010093055 0.5 -1.35010093055 +UniRef50_Q49ZH2 DNA topoisomerase 3 1.48166879029 0.5 -0.981668790295 +UniRef50_I0I0F8 Putative major facilitator superfamily transporter 0.80841181208 0.5 -0.30841181208 +UniRef50_Q3JPX4 Val start codon 0.283256936081 0.5 0.216743063919 +UniRef50_O32867 Tetrahydromethanopterin S methyltransferase subunit A 2.79007211288 0.499999999998 -2.29007211288 +UniRef50_B8DWF1 ATP binding protein of ABC transporter 0.0296803777731 0.500000000001 0.470319622226 +UniRef50_D9RCU3 ABC type nitrate sulfonate bicarbonate transporter, TauA 1.1123464288 0.5 -0.612346428803 +UniRef50_H6P8S4 Acetoin dehydrogenase E1 component 1.01824612252 0.5 -0.518246122521 +UniRef50_C5D403 Anti sigma F factor 0.311571300116 0.5 0.188428699884 +UniRef50_UPI0003A374B9 ribonuclease 3 0.087229084608 0.5 0.412770915392 +UniRef50_A3PP97 Transcriptional regulator, AraC family 7.07605853138 0.500000000002 -6.57605853139 +UniRef50_P06130 Formate dehydrogenase subunit beta 2.66967694698 0.500000000001 -2.16967694698 +UniRef50_H3VE51 0.639818416229 0.5 -0.139818416229 +UniRef50_B9JCY0 0.814209617303 0.5 -0.314209617303 +UniRef50_U5NMX6 1.60219942433 0.499999999998 -1.10219942433 +UniRef50_X1RXJ8 Marine sediment metagenome DNA, contig 0.494991289543 0.5 0.00500871045734 +UniRef50_M8R009 5.51453628512 0.500000000001 -5.01453628512 +UniRef50_Q8FDH0 HTH type transcriptional activator TtdR 2.59480806671 0.500000000002 -2.09480806671 +UniRef50_UPI0002DC6DF0 hypothetical protein 0.316004487299 0.5 0.183995512701 +UniRef50_UPI000363C9B5 hypothetical protein 0.00719424289985 0.5 0.4928057571 +UniRef50_B2TGR6 NADH 5.21522065899 0.5 -4.71522065899 +UniRef50_P39773 2,3 bisphosphoglycerate independent phosphoglycerate mutase 3.44254104977 0.499999999999 -2.94254104977 +UniRef50_Q932I8 Tetracycline resistance protein TetM 0.753734388764 0.5 -0.253734388764 +UniRef50_S4X5W3 0.789553562498 0.5 -0.289553562498 +UniRef50_UPI000473EC6D MFS transporter 0.0739541732964 0.5 0.426045826704 +UniRef50_P36682 0.700371495146 0.5 -0.200371495146 +UniRef50_Q5X5E0 Orotidine 5 phosphate decarboxylase 1.5007871602 0.5 -1.0007871602 +UniRef50_P08005 Oligopeptide transport system permease protein OppB 3.30527633428 0.5 -2.80527633428 +UniRef50_A8BSP6 0.256094382425 0.5 0.243905617575 +UniRef50_R4ZI73 Hydrolase, haloacid dehalogenase like family 1.1542402293 0.5 -0.654240229296 +UniRef50_Q9RWJ0 Argininosuccinate lyase 0.187873220805 0.5 0.312126779196 +UniRef50_K7EGT5 0.028856353446 0.5 0.471143646554 +UniRef50_B6JLQ7 Type II R M system protein 0.00431249302933 0.5 0.49568750697 +UniRef50_UPI0004225DED isoleucine tRNA ligase 0.10555013673 0.5 0.39444986327 +UniRef50_A6E257 0.190217069386 0.5 0.309782930614 +UniRef50_Q3IMY5 50S ribosomal protein L2 3.42664651791 0.500000000001 -2.92664651791 +UniRef50_G8VA00 Adhesion protein associated protein 0.046478763203 0.5 0.453521236797 +UniRef50_Q8IQF1 Molybdenum cofactor biosynthesis protein 1 0.0198970120717 0.5 0.480102987928 +UniRef50_Q4L770 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.63131942318 0.5 -2.13131942318 +UniRef50_I3UHD0 Spermidine putrescine ABC transporter ATPase 0.369599928008 0.5 0.130400071992 +UniRef50_B5X4Z4 Probable amino acid acetyltransferase NAGS2, chloroplastic 0.267962344024 0.5 0.232037655976 +UniRef50_W5XJA7 Primary replicative DNA helicase 0.321037684808 0.5 0.178962315192 +UniRef50_P23325 Ankyrin repeat protein A 2.34127849328 0.5 -1.84127849328 +UniRef50_Q8CUB3 2.24147045573 0.5 -1.74147045573 +UniRef50_D0K767 6.05149678324 0.499999999999 -5.55149678324 +UniRef50_Q8CUB1 1.40912321415 0.5 -0.909123214152 +UniRef50_Q8CUB0 0.894734267794 0.5 -0.394734267794 +UniRef50_Q9I576 4 hydroxyphenylpyruvate dioxygenase 1.93831082947 0.5 -1.43831082947 +UniRef50_Q8CUB6 0.533325343496 0.5 -0.0333253434963 +UniRef50_Q8CUB4 1.55882450202 0.5 -1.05882450202 +UniRef50_D4YZ36 1.15777973739 0.5 -0.657779737393 +UniRef50_G7M679 D galactose binding protein 0.105094423373 0.5 0.394905576627 +UniRef50_B5GNG9 0.0653360385812 0.499999999999 0.434663961419 +UniRef50_UPI00042A099E MULTISPECIES 0.405007417303 0.5 0.0949925826967 +UniRef50_A6M2R3 Signal peptidase I 0.262000554538 0.5 0.237999445462 +UniRef50_UPI00036D23D9 hypothetical protein, partial 3.38739410585 0.5 -2.88739410585 +UniRef50_UPI0003802981 30S ribosomal protein S13 0.0927369728912 0.5 0.407263027109 +UniRef50_UPI00046643A7 uracil phosphoribosyltransferase 0.180213893557 0.5 0.319786106443 +UniRef50_U5SG79 Rlx protein 3.96797111101 0.5 -3.46797111101 +UniRef50_Q9RUU7 0.000406780423187 0.5 0.499593219577 +UniRef50_S4EU42 0.313009972833 0.5 0.186990027167 +UniRef50_UPI00046CF290 molecular chaperone DnaJ, partial 0.376202895309 0.5 0.123797104691 +UniRef50_R9ZBV1 Membrane protein 0.375294013472 0.5 0.124705986528 +UniRef50_H9K042 0.238926051606 0.5 0.261073948394 +UniRef50_P0ACQ2 Ribose operon repressor 1.47187918912 0.5 -0.971879189124 +UniRef50_Q6F9I9 Coenzyme PQQ synthesis protein E 0.0433478461673 0.5 0.456652153833 +UniRef50_U3SUW9 2.61525765714 0.500000000002 -2.11525765715 +UniRef50_UPI000478E845 acetyl CoA acetyltransferase 0.049195331409 0.5 0.450804668591 +UniRef50_E8QA77 Exported protein 0.473957464031 0.5 0.0260425359693 +UniRef50_UPI000478CDB6 hypothetical protein 0.0989844592997 0.5 0.4010155407 +UniRef50_A6LWY2 Peptidase M42 family protein 0.0455120548949 0.5 0.454487945105 +UniRef50_Q898F3 DNA binding protein iolR 0.199461101209 0.5 0.300538898791 +UniRef50_U9DSS6 1.05804983971 0.5 -0.558049839706 +UniRef50_E5U235 1.01131097509 0.5 -0.511310975086 +UniRef50_G5N0A7 DNA ligase 1.36451871795 0.5 -0.864518717952 +UniRef50_UPI000375E551 hypothetical protein, partial 0.262985049673 0.5 0.237014950327 +UniRef50_UPI00037AE230 hypothetical protein 0.0243171943974 0.5 0.475682805602 +UniRef50_UPI00047B09DF hypothetical protein 0.0740774296144 0.5 0.425922570385 +UniRef50_UPI00047229B1 hypothetical protein 3.99696715255 0.5 -3.49696715255 +UniRef50_M2ZV09 0.531321147463 0.5 -0.0313211474627 +UniRef50_C7QH34 Thioesterase superfamily protein 0.0336722165845 0.5 0.466327783415 +UniRef50_M8ZKF1 TraU family protein 2.73489384625 0.499999999998 -2.23489384625 +UniRef50_A4J903 UPF0042 nucleotide binding protein Dred_3054 0.0687793009517 0.5 0.431220699048 +UniRef50_UPI000429F6B2 hypothetical protein 0.104642848849 0.5 0.395357151151 +UniRef50_X1F770 Marine sediment metagenome DNA, contig 0.665367071733 0.5 -0.165367071733 +UniRef50_UPI000219576D homoserine dehydrogenase 0.0153567896292 0.499999999999 0.484643210372 +UniRef50_Q9RYT7 Glucan synthase 1 related protein 0.00831936945032 0.5 0.49168063055 +UniRef50_G8WNN7 0.812574957278 0.5 -0.312574957278 +UniRef50_S5STQ7 Fasciclin domain containing protein 2.82519705843 0.5 -2.32519705843 +UniRef50_P67431 HTH type transcriptional repressor NemR 1.12040144715 0.5 -0.62040144715 +UniRef50_Q92UB9 1.04774231318 0.5 -0.547742313175 +UniRef50_UPI000373D358 ferredoxin 0.452852859016 0.5 0.0471471409838 +UniRef50_T1ZVD1 Two component system response regulator 1.38788343778 0.5 -0.887883437777 +UniRef50_Q7MUW1 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.00218342650653 0.5 0.497816573494 +UniRef50_A1KL82 Phosphoadenosine phosphosulfate reductase 0.398095967431 0.5 0.101904032569 +UniRef50_U9V3J0 0.288765146467 0.5 0.211234853533 +UniRef50_Q5HNJ1 1.67464095348 0.5 -1.17464095348 +UniRef50_P40131 Flagella basal body P ring formation protein FlgA 0.513337338441 0.5 -0.0133373384409 +UniRef50_F0LTE4 0.420857301316 0.5 0.0791426986837 +UniRef50_M7CYB4 40K cell wall protein 0.75374928993 0.5 -0.25374928993 +UniRef50_A6M2E1 0.596785180447 0.5 -0.0967851804466 +UniRef50_Q1RF99 5.28342881206 0.500000000001 -4.78342881207 +UniRef50_UPI0003771A5E hypothetical protein 1.36102720419 0.5 -0.861027204188 +UniRef50_Q9I2Q2 Methionine synthase 0.131444491404 0.5 0.368555508596 +UniRef50_P52690 HTH type transcriptional regulator CbbR 2.75211952502 0.500000000002 -2.25211952502 +UniRef50_O05508 6 phospho beta glucosidase GmuD 0.0423244664058 0.5 0.457675533594 +UniRef50_Q9K8D9 Non canonical purine NTP pyrophosphatase 0.514298463288 0.5 -0.0142984632885 +UniRef50_F3U3U4 Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein 2.06866109232 0.5 -1.56866109232 +UniRef50_A0AZ30 Extracellular solute binding protein, family 1 0.424891738768 0.5 0.0751082612317 +UniRef50_UPI000373D0A7 Cro Cl family transcriptional regulator 4.27205487661 0.499999999998 -3.77205487661 +UniRef50_S8AV33 0.223078434421 0.5 0.276921565579 +UniRef50_A0ZA13 Putative restriction modification enzyme 0.00206342398338 0.500000000001 0.497936576016 +UniRef50_Q8CSP4 UPF0291 protein SE_1024 1.85970167563 0.500000000001 -1.35970167563 +UniRef50_B4RJ27 13.5174010207 0.500000000029 -13.0174010207 +UniRef50_D5WAU2 PTS system, N acetylglucosamine specific IIBC subunit 0.936535677416 0.5 -0.436535677416 +UniRef50_A0A014MC25 0.359554850277 0.5 0.140445149723 +UniRef50_UPI0003A406BC hemolysin expression modulating protein 1.53957676557 0.5 -1.03957676557 +UniRef50_B2IN54 Transketolase, N terminal subunit 0.0131892822027 0.5 0.486810717797 +UniRef50_UPI0002481BB1 IS21 family transposase 0.252580782744 0.5 0.247419217256 +UniRef50_UPI00036B09EF hypothetical protein, partial 0.180880993846 0.5 0.319119006154 +UniRef50_Q1R597 Hemin import ATP binding protein HmuV 0.0180139387185 0.5 0.481986061282 +UniRef50_G7WK52 1.85362649788 0.5 -1.35362649788 +UniRef50_X5MEU2 0.296599962799 0.5 0.203400037201 +UniRef50_E8SKH8 Sucrose 6 phosphate hydrolase 1.71497791261 0.5 -1.21497791261 +UniRef50_A0A011MXQ2 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0701430608735 0.5 0.429856939126 +UniRef50_A6LVK7 MATE efflux family protein 0.0751581181797 0.5 0.42484188182 +UniRef50_Q03MN5 Adapter protein MecA 1.74211961787 0.5 -1.24211961787 +UniRef50_UPI0003629460 hypothetical protein, partial 0.158001945332 0.5 0.341998054668 +UniRef50_B7V3W3 0.00524855927128 0.5 0.494751440729 +UniRef50_UPI00037C96DC hypothetical protein 0.00287382552932 0.5 0.49712617447 +UniRef50_R5QE34 0.220778114291 0.5 0.279221885709 +UniRef50_UPI00037C173A hypothetical protein 1.53208607658 0.5 -1.03208607658 +UniRef50_UPI000440CBE5 PREDICTED 0.517683126532 0.5 -0.0176831265316 +UniRef50_G7U7Z2 0.00860389070611 0.5 0.491396109294 +UniRef50_R5DNX0 0.0701614452173 0.5 0.429838554782 +UniRef50_Q6MLR5 Ribonuclease 3 0.240074805827 0.5 0.259925194173 +UniRef50_UPI0003693C86 hypothetical protein 1.37750698793 0.5 -0.877506987933 +UniRef50_F5LZD2 Acetyltransferase 4.35969552811 0.500000000002 -3.85969552812 +UniRef50_W8VP54 UPF0246 protein NMS_0251 0.262251591866 0.5 0.237748408134 +UniRef50_U6MRR8 0.319560307808 0.5 0.180439692192 +UniRef50_Q9RZC4 1 pyrroline 5 carboxylate dehydrogenase, putative 0.00521794526547 0.5 0.494782054734 +UniRef50_P0AGI6 Xylose transport system permease protein XylH 4.58112974898 0.499999999997 -4.08112974898 +UniRef50_U5PB97 Glutamyl tRNA synthetase 2.48090609262 0.5 -1.98090609262 +UniRef50_A8AYG2 ATP synthase gamma chain 0.77560542323 0.5 -0.27560542323 +UniRef50_A0A038G154 0.0824537195484 0.5 0.417546280452 +UniRef50_M7DT58 Deacetylase 2.24506385571 0.5 -1.74506385571 +UniRef50_D3QIY9 Glutamate ABC transporter, periplasmic glutamine binding protein 2.68514486038 0.500000000001 -2.18514486038 +UniRef50_A6LR18 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein 0.347131928336 0.5 0.152868071664 +UniRef50_A0A025E7F4 0.730782092927 0.5 -0.230782092927 +UniRef50_Q9LU86 Peroxiredoxin Q, chloroplastic 0.00653358373783 0.5 0.493466416262 +UniRef50_A5E987 Fructose 1,6 bisphosphatase class 1 1 1.71930948511 0.5 -1.21930948511 +UniRef50_C4LJK5 ABC type transport system, ATP binding protein 0.0312594568902 0.5 0.46874054311 +UniRef50_UPI00046997D0 hypothetical protein 0.0582395487506 0.5 0.441760451249 +UniRef50_A6LSX7 Adenine deaminase 0.301967799316 0.5 0.198032200684 +UniRef50_UPI00034A4595 hypothetical protein 0.295436173396 0.5 0.204563826604 +UniRef50_UPI0004696A10 tRNA hydroxylase 0.358075372997 0.5 0.141924627003 +UniRef50_T6AKZ2 0.246333846602 0.5 0.253666153398 +UniRef50_A3K6W1 0.636851473343 0.5 -0.136851473343 +UniRef50_D6XR13 0.00655673920811 0.5 0.493443260792 +UniRef50_F5M2N9 1.13422718443 0.5 -0.634227184431 +UniRef50_I7E227 Uroporphyrinogen III C methyltransferase CobA 1.83587826954 0.5 -1.33587826954 +UniRef50_A0A026W2G8 Activating molecule in BECN1 regulated autophagy protein 0.012597989641 0.5 0.487402010359 +UniRef50_UPI000402E7C3 oxidoreductase 0.00196477722893 0.5 0.498035222771 +UniRef50_UPI00036AC882 hypothetical protein 1.231790649 0.5 -0.731790649001 +UniRef50_I3TXU6 TRAP type bacterial extracellular solute binding protein 3.40156274306 0.5 -2.90156274306 +UniRef50_W1WFT4 Replication initiation protein 0.717499364174 0.5 -0.217499364174 +UniRef50_Q1GIZ8 Aspartate tRNA ligase 1.70974696362 0.5 -1.20974696362 +UniRef50_UPI000464CCF6 resolvase 2.36845096715 0.5 -1.86845096715 +UniRef50_UPI0003B3855E DNA polymerase I 0.0373103568666 0.5 0.462689643133 +UniRef50_A6U4E8 Immunoglobulin binding protein sbi 2.05649009215 0.5 -1.55649009215 +UniRef50_Q5HPB4 Peptide methionine sulfoxide reductase MsrB 1.32934387921 0.5 -0.82934387921 +UniRef50_O85746 Tyrosine aminotransferase 0.960951661313 0.5 -0.460951661313 +UniRef50_UPI00041C01EF peptidase M24 0.120943210373 0.5 0.379056789627 +UniRef50_UPI00022CAD53 PREDICTED 0.717313805628 0.5 -0.217313805628 +UniRef50_A7ZJI0 Tail fiber assembly protein 2.90197191368 0.5 -2.40197191368 +UniRef50_A6LXY5 PAS PAC sensor hybrid histidine kinase 0.514765341051 0.5 -0.0147653410507 +UniRef50_O83716 Purine nucleoside phosphorylase DeoD type 0.0833257197607 0.5 0.416674280239 +UniRef50_UPI000273D5E4 0.0185943706615 0.500000000001 0.481405629338 +UniRef50_Q6FAN6 0.00820795326504 0.5 0.491792046735 +UniRef50_C8N6A0 LemA family protein 0.787665393698 0.5 -0.287665393698 +UniRef50_C0SP91 Putative metallo hydrolase YycJ 0.631294410848 0.5 -0.131294410848 +UniRef50_UPI0004009357 ABC transporter permease 0.696804418472 0.5 -0.196804418472 +UniRef50_D6SHS5 Superantigen like protein 3.12930293005 0.500000000003 -2.62930293005 +UniRef50_A5UP87 N acetyltransferase, GNAT family 1.98670577886 0.499999999999 -1.48670577886 +UniRef50_I3X1B7 1.17595334721 0.5 -0.675953347207 +UniRef50_B9KU34 2.23581142212 0.5 -1.73581142212 +UniRef50_Q8CQE1 Galactosamine containing minor teichoic acid biosynthesis protein 0.885006993866 0.5 -0.385006993866 +UniRef50_A1B9G9 0.557031729207 0.5 -0.0570317292074 +UniRef50_A1WWL1 Diguanylate cyclase 0.0251924892163 0.5 0.474807510784 +UniRef50_F0RQZ8 Xanthine dehydrogenase 0.00127721389699 0.5 0.498722786103 +UniRef50_UPI00036CA33F hypothetical protein 0.105958021786 0.5 0.394041978214 +UniRef50_A3PS71 1.81485789002 0.499999999998 -1.31485789002 +UniRef50_UPI00045DD9A4 PREDICTED 3.65925255102 0.5 -3.15925255102 +UniRef50_UPI00035DAB70 hypothetical protein 0.324835555092 0.5 0.175164444908 +UniRef50_W7VIZ6 Basic proline rich protein 3.71838127815 0.5 -3.21838127815 +UniRef50_UPI0003681CA6 hypothetical protein 0.387286943891 0.5 0.112713056109 +UniRef50_D2YBW7 Diheme cytochrome c napB 1.82623840832 0.5 -1.32623840832 +UniRef50_G7MCB1 Transcriptional regulator, TrmB 0.0824994372553 0.5 0.417500562745 +UniRef50_C6SRE9 2.51008697366 0.5 -2.01008697366 +UniRef50_N0AYA8 Two component system histidine kinase 0.0918572212889 0.5 0.408142778711 +UniRef50_UPI0003A4D539 single stranded DNA binding protein 0.016221877046 0.5 0.483778122954 +UniRef50_UPI000473EB9F mannose 1 phosphate guanyltransferase 0.340211166893 0.5 0.159788833107 +UniRef50_Q9ZKQ7 0.0515961188255 0.5 0.448403881174 +UniRef50_Q0STN1 Undecaprenyl diphosphatase 0.000916982582797 0.5 0.499083017417 +UniRef50_UPI000471BD1E hypothetical protein, partial 0.404345271593 0.5 0.0956547284073 +UniRef50_UPI000368EF4F hypothetical protein 0.110729010735 0.5 0.389270989265 +UniRef50_Q9HJD0 30S ribosomal protein S8e 10.7722044372 0.499999999995 -10.2722044372 +UniRef50_UPI00045E5CBA hypothetical protein 5.96974583874 0.5 -5.46974583874 +UniRef50_B2A3L9 Ribosomal RNA small subunit methyltransferase A 0.091587017952 0.5 0.408412982048 +UniRef50_UPI000375EF4E hypothetical protein, partial 0.390861553502 0.5 0.109138446498 +UniRef50_Q2FXB1 Leucotoxin LukDv 4.41867715488 0.500000000005 -3.91867715488 +UniRef50_P25306 Threonine dehydratase biosynthetic, chloroplastic 0.0571424715681 0.5 0.442857528432 +UniRef50_U5MTT7 Cobalamin biosynthesis CbiG protein 0.19972049757 0.5 0.30027950243 +UniRef50_UPI00031889A3 hypothetical protein 1.11250523271 0.5 -0.612505232712 +UniRef50_A1A025 Response regulator of two component system 0.0275136077502 0.5 0.47248639225 +UniRef50_P75870 Inner membrane protein YccS 1.08195521589 0.5 -0.581955215891 +UniRef50_D1JNF2 2.78067593511 0.5 -2.28067593511 +UniRef50_I3X1L2 Transposase IS4 family protein 2.18967835906 0.5 -1.68967835906 +UniRef50_S5XKW1 Spermidine putrescine transport system, permease protein 2.8361623716 0.500000000001 -2.3361623716 +UniRef50_P75750 0.886185613925 0.5 -0.386185613925 +UniRef50_A0A059LQ22 1.65338110047 0.5 -1.15338110047 +UniRef50_UPI00047BA782 major facilitator transporter 0.844455404726 0.5 -0.344455404726 +UniRef50_Q6FB59 0.14282829227 0.5 0.35717170773 +UniRef50_B7KX11 Alkanesulfonate monooxygenase 0.380273661625 0.5 0.119726338375 +UniRef50_K6S6A5 FliK family flagellar hook length control protein 0.111012908477 0.5 0.388987091523 +UniRef50_UPI000476116B 50S ribosomal protein L35 0.168730192937 0.5 0.331269807063 +UniRef50_Q63IW3 ATP synthase subunit beta 2 0.0772988690607 0.5 0.422701130939 +UniRef50_W1GG81 0.277450250248 0.5 0.222549749752 +UniRef50_A3KA49 2.62185106132 0.500000000003 -2.12185106132 +UniRef50_B7RRM5 Cobyrinic Acid a,c diamide synthase 0.277045703542 0.5 0.222954296458 +UniRef50_Q67JT3 DNA directed RNA polymerase subunit beta 0.631076346181 0.5 -0.131076346181 +UniRef50_C7RN78 0.401963893623 0.5 0.0980361063765 +UniRef50_M4R3U4 Metal dependent hydrolase 0.0237934764915 0.5 0.476206523509 +UniRef50_V3BAW5 Anhydro N acetylmuramic acid kinase 0.603295990299 0.5 -0.103295990299 +UniRef50_UPI000364C8A1 hypothetical protein 1.11919089201 0.5 -0.619190892006 +UniRef50_A0A009MS46 1.81813227169 0.5 -1.31813227169 +UniRef50_P0AE22 Class B acid phosphatase 0.757660556995 0.5 -0.257660556995 +UniRef50_A1B792 1.13695351504 0.5 -0.636953515035 +UniRef50_Q75ZQ6 Urease subunit beta 0.640802542099 0.5 -0.140802542099 +UniRef50_A6W1Y7 3.55524557021 0.499999999998 -3.05524557021 +UniRef50_UPI000373FA13 hypothetical protein 1.10476413823 0.5 -0.604764138225 +UniRef50_P0DMC6 Sensor histidine kinase RcsC 1.75995478091 0.5 -1.25995478091 +UniRef50_D4HFJ2 Helicase C terminal domain protein 0.0200793306986 0.5 0.479920669302 +UniRef50_E1Q5C1 DNA topoisomerase I 0.0323122475677 0.500000000001 0.467687752432 +UniRef50_Q9HJX7 ATP dependent DNA helicase Hel308 0.355189200284 0.5 0.144810799716 +UniRef50_I4D6H8 Multimeric flavodoxin WrbA 0.741258793635 0.5 -0.241258793635 +UniRef50_C6SQM5 1.39062084541 0.5 -0.890620845408 +UniRef50_B0V6S4 0.225078449337 0.5 0.274921550663 +UniRef50_F7QL87 ATPase 0.0464592625958 0.5 0.453540737404 +UniRef50_A3PPZ7 Peptidase S14, ClpP 6.73460187915 0.500000000001 -6.23460187915 +UniRef50_R1G067 0.281784818658 0.5 0.218215181342 +UniRef50_D1BEK3 0.878606346407 0.5 -0.378606346407 +UniRef50_A1B788 1.23694250323 0.5 -0.736942503225 +UniRef50_A6VEE0 15.9662938827 0.500000000003 -15.4662938827 +UniRef50_P23524 Glycerate 2 kinase 2.53813273296 0.5 -2.03813273296 +UniRef50_W1VWR4 1.97161975582 0.5 -1.47161975582 +UniRef50_UPI0003A482DB hypothetical protein 0.580667629634 0.5 -0.0806676296341 +UniRef50_UPI00035CB5E5 hypothetical protein 0.626104626821 0.5 -0.126104626821 +UniRef50_B4EXS5 UPF0225 protein PMI1492 0.00584384361406 0.5 0.494156156386 +UniRef50_F0VYF6 0.396159033272 0.5 0.103840966728 +UniRef50_P0AEH2 Regulator of sigma E protease 0.686404753555 0.5 -0.186404753555 +UniRef50_Q1QMX7 0.850115213505 0.5 -0.350115213505 +UniRef50_I0C4V2 ComE operon protein 1 7.83688255168 0.500000000005 -7.33688255168 +UniRef50_Q1H4N6 50S ribosomal protein L4 0.0256484637537 0.5 0.474351536246 +UniRef50_P00873 Ribulose bisphosphate carboxylase small chain 1, chloroplastic 0.938509622995 0.5 -0.438509622995 +UniRef50_N8WZK4 0.116347888907 0.5 0.383652111092 +UniRef50_B5XSA9 Oxidoreductase, short chain dehydrogenase reductase family 0.33423859759 0.5 0.16576140241 +UniRef50_Q4L8E8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.65855599999 0.5 -1.15855599999 +UniRef50_F6BZ95 0.236226550119 0.5 0.263773449881 +UniRef50_K0C6H8 DoxX subfamily, putative 0.850168193035 0.5 -0.350168193035 +UniRef50_Q49WX9 Bifunctional protein PyrR 24.0334756291 0.499999999996 -23.5334756291 +UniRef50_M9RDG8 Monovalent cation proton antiporter subunit E 0.428994932197 0.5 0.0710050678032 +UniRef50_O26901 ATP dependent DNA helicase Hel308 4.52255410047 0.499999999999 -4.02255410047 +UniRef50_UPI00036A3BE1 hypothetical protein 2.36962550164 0.500000000002 -1.86962550164 +UniRef50_S6B942 0.940977547297 0.5 -0.440977547297 +UniRef50_D5ARY7 Ferredoxin 4 0.404923213159 0.5 0.0950767868413 +UniRef50_R3N2B8 1.41681370921 0.5 -0.916813709211 +UniRef50_UPI000308B01A hypothetical protein 0.16141653024 0.5 0.33858346976 +UniRef50_P0CZ01 Hyaluronate lyase 0.0206960097605 0.5 0.47930399024 +UniRef50_U5WBY0 0.00742856068854 0.5 0.492571439311 +UniRef50_UPI0003144775 hypothetical protein 4.19852185553 0.500000000001 -3.69852185553 +UniRef50_F6IG84 Cytochrome bd I oxidase subunit II 7.60896980726 0.500000000001 -7.10896980726 +UniRef50_UPI00037B64B8 MULTISPECIES 0.0600479019205 0.500000000001 0.439952098079 +UniRef50_V5UAT4 0.00729449489915 0.499999999999 0.492705505101 +UniRef50_B9DSE2 Nucleoside diphosphate kinase 0.140473535131 0.499999999999 0.359526464869 +UniRef50_UPI00045E79E3 hypothetical protein 0.924073270605 0.5 -0.424073270605 +UniRef50_A7ZSB8 N acetylneuraminate lyase 2.43518139307 0.499999999999 -1.93518139307 +UniRef50_UPI0003B7208F D alanyl D alanine carboxypeptidase 0.408767721153 0.5 0.0912322788467 +UniRef50_X7XV22 Carbon starvation CstA family protein 0.897262077205 0.5 -0.397262077205 +UniRef50_UPI00036BCED8 hypothetical protein, partial 2.66326701978 0.5 -2.16326701978 +UniRef50_UPI0004775FD4 hypothetical protein 0.167991848271 0.5 0.332008151729 +UniRef50_UPI00036B23BD hypothetical protein 0.0386228855821 0.5 0.461377114418 +UniRef50_I1ELS0 0.144828212203 0.5 0.355171787797 +UniRef50_F0KJ61 Triacylglycerol lipase 0.0346313273714 0.5 0.465368672629 +UniRef50_UPI0003B4CFA2 organic solvent ABC transporter ATP binding protein 1.45566170851 0.5 -0.955661708509 +UniRef50_Q6LPK7 Tetraacyldisaccharide 4 kinase 2.52277171055 0.499999999997 -2.02277171055 +UniRef50_E8SFD5 Glycosyl transferase, group 1 family protein 1.32563211676 0.5 -0.825632116763 +UniRef50_B4U3U9 CRISPR associated endonuclease Cas9 0.989469753622 0.5 -0.489469753622 +UniRef50_H6PCS0 Transcriptional regulator CtsR 0.752068556978 0.5 -0.252068556978 +UniRef50_UPI0001E45F6A ribonucleoside diphosphate reductase large subunit 0.00781671565588 0.5 0.492183284344 +UniRef50_Q0BVI1 1.42353579842 0.5 -0.923535798419 +UniRef50_UPI00047AB688 acetylglutamate kinase 0.968422493791 0.5 -0.468422493791 +UniRef50_Q49YR8 Regulatory protein RecX 3.75556892612 0.500000000004 -3.25556892612 +UniRef50_P0ABL2 Cytochrome c type protein NrfB 10.9332178082 0.500000000004 -10.4332178082 +UniRef50_E3GWD7 Protease HtpX homolog 0.784324659716 0.5 -0.284324659716 +UniRef50_UPI00045E5DCC potassium transporter 0.61918171928 0.5 -0.11918171928 +UniRef50_Q89A97 Multidrug resistance like ATP binding protein MdlA 0.134230956088 0.5 0.365769043912 +UniRef50_F0P8I6 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 2.02546429064 0.5 -1.52546429064 +UniRef50_A0A021ZS12 Sigma 54 interaction domain protein 0.0107133282907 0.5 0.489286671709 +UniRef50_Q9RVT7 Phosphatase, putative 0.012401095269 0.5 0.487598904731 +UniRef50_UPI00037BA24E hypothetical protein 1.89926081346 0.5 -1.39926081346 +UniRef50_X2HYV0 Membrane protein 0.014186435333 0.5 0.485813564667 +UniRef50_UPI0004765AD1 uracil phosphoribosyltransferase 0.633155284648 0.5 -0.133155284648 +UniRef50_P33011 Inner membrane protein YeeA 1.02099866271 0.5 -0.520998662705 +UniRef50_D4J5A0 Diaminopropionate ammonia lyase 0.0320861934841 0.5 0.467913806516 +UniRef50_V9X5Q7 0.323371523652 0.5 0.176628476348 +UniRef50_Q08NT1 1.10686967837 0.5 -0.606869678368 +UniRef50_S9QSJ6 Flagellar basal body rod protein FlgF 1.32685486465 0.499999999999 -0.826854864649 +UniRef50_E8PDG9 Malonyl CoA acyl carrier protein transacylase 0.0352659287343 0.5 0.464734071266 +UniRef50_Q2P2V7 Uracil phosphoribosyltransferase 0.164493744058 0.5 0.335506255942 +UniRef50_T2A0W0 Relaxase mobilization nuclease family protein 0.0598102145755 0.5 0.440189785425 +UniRef50_Q9RWN1 ATP dependent 6 phosphofructokinase 0.00950854499135 0.5 0.490491455009 +UniRef50_E3GYU4 Aspartokinase 0.790331287688 0.5 -0.290331287688 +UniRef50_C7QHR1 0.572485252278 0.5 -0.0724852522778 +UniRef50_C3L0M2 0.0571915162441 0.5 0.442808483756 +UniRef50_Q2JMP1 N acetylmuramic acid 6 phosphate etherase 0.28420955916 0.5 0.21579044084 +UniRef50_C5MZE1 Transporter, major facilitator family protein 1.85770839192 0.5 -1.35770839192 +UniRef50_C1DMN0 TonB dependent receptor 0.50407691248 0.5 -0.00407691247968 +UniRef50_UPI00036664BA hypothetical protein 3.48494664189 0.499999999999 -2.98494664189 +UniRef50_E3YDC7 Cell surface protein 0.0394211447884 0.5 0.460578855211 +UniRef50_P14657 NADP specific glutamate dehydrogenase 0.0613647210492 0.5 0.438635278951 +UniRef50_Q836R3 ATP dependent 6 phosphofructokinase 0.0108820189847 0.5 0.489117981015 +UniRef50_Q0SHI1 0.0671162800653 0.5 0.432883719935 +UniRef50_F5WYS7 ICESt1 ORFJ phage replication initiation factor 1.64533907225 0.5 -1.14533907225 +UniRef50_UPI000365D96C hypothetical protein, partial 0.936308293411 0.5 -0.436308293411 +UniRef50_B8RD42 Cell wall surface anchor family protein,putative 0.0324600403272 0.5 0.467539959673 +UniRef50_H1UU45 Dehydrogenase 3.44039117701 0.500000000001 -2.94039117701 +UniRef50_L2ZHW9 3 propionate 3 hydroxycinnamic acid hydroxylase 1.60138207933 0.500000000001 -1.10138207933 +UniRef50_UPI0001FFE295 hypothetical protein, partial 0.0431648379543 0.5 0.456835162046 +UniRef50_M9R1X4 0.607111858634 0.5 -0.107111858634 +UniRef50_G7U5K4 6 phosphogluconate dehydrogenase, decarboxylating 0.00817519816242 0.5 0.491824801838 +UniRef50_F5XWG5 1 aminocyclopropane 1 carboxylate deaminase like protein 0.0218713397261 0.5 0.478128660274 +UniRef50_G7M6Z9 Nitroreductase 0.0915157307463 0.5 0.408484269254 +UniRef50_S9RGW6 Flagellar protein FlgJ, putative 0.756259127453 0.5 -0.256259127453 +UniRef50_J7Q7T7 Escherichia coli IMT2125 genomic chromosome, IMT2125 4.81646507474 0.500000000003 -4.31646507474 +UniRef50_X1YKD9 0.0800386106343 0.5 0.419961389366 +UniRef50_C4ZPZ7 2 isopropylmalate synthase 0.228855975559 0.5 0.271144024441 +UniRef50_UPI0003FD05D8 methyltransferase 0.29916321417 0.5 0.20083678583 +UniRef50_P73283 3 oxoacyl [acyl carrier protein] synthase 2 0.00142098507793 0.5 0.498579014922 +UniRef50_UPI00047C3DCE hypothetical protein 0.288705718823 0.5 0.211294281177 +UniRef50_T0U8G3 ABC transporter membrane spanning permease,Pepexport, Vex3 0.0227471073429 0.5 0.477252892657 +UniRef50_P38487 Creatinase 0.780929508999 0.5 -0.280929508999 +UniRef50_UPI0002DD21FE hypothetical protein 0.280451523023 0.5 0.219548476977 +UniRef50_O26938 Aspartate carbamoyltransferase regulatory chain 2.30531519331 0.499999999999 -1.80531519331 +UniRef50_UPI0003F6906F chromosome partitioning protein ParB 0.0442882451532 0.5 0.455711754847 +UniRef50_B4U896 Glutamate tRNA ligase 2.6331203449 0.5 -2.1331203449 +UniRef50_Q7W4F7 Exported protein, conserved 0.851853988165 0.5 -0.351853988165 +UniRef50_D5BUA3 ABC transporter related protein 1.67383512386 0.500000000001 -1.17383512386 +UniRef50_UPI00046CCD8A ABC transporter permease 0.185132612635 0.5 0.314867387365 +UniRef50_F5XE95 0.0397318164344 0.5 0.460268183566 +UniRef50_W2RQC0 1.33923996445 0.5 -0.839239964447 +UniRef50_UPI0002FFACA2 hypothetical protein 8.54956098587 0.499999999992 -8.04956098586 +UniRef50_P09155 Ribonuclease D 1.73832473961 0.500000000001 -1.23832473961 +UniRef50_F7TB61 0.0581127801887 0.5 0.441887219811 +UniRef50_U5UU73 0.177667311337 0.5 0.322332688663 +UniRef50_UPI000420A761 hypothetical protein 0.319877549763 0.5 0.180122450237 +UniRef50_D1ZK87 Putative glutathione dependent formaldehyde activating enzyme 1.69296169543 0.5 -1.19296169543 +UniRef50_P46883 Primary amine oxidase 0.0257771580808 0.5 0.474222841919 +UniRef50_UPI000350E610 PREDICTED 1.83700266711 0.5 -1.33700266711 +UniRef50_A3VBF6 0.443876252486 0.5 0.0561237475138 +UniRef50_Q9K5Z9 L lactate permease 2.4047040097 0.500000000002 -1.9047040097 +UniRef50_UPI00041F2A30 hypothetical protein 0.338712969448 0.5 0.161287030552 +UniRef50_F2JYP7 ABC type transporter, integral membrane subunit 1.80627211161 0.5 -1.30627211161 +UniRef50_I0JKD6 PTS system subunit IIBC, sucrose specific 0.159477600778 0.5 0.340522399222 +UniRef50_W5XHN2 Transcriptional regulator, TetR family protein 0.0501344299957 0.5 0.449865570004 +UniRef50_UPI00045D68F4 PREDICTED 0.431990615104 0.5 0.0680093848959 +UniRef50_Q02001 Anthranilate synthase component 1 0.366322295425 0.5 0.133677704575 +UniRef50_R6U3E2 0.17919376154 0.5 0.32080623846 +UniRef50_UPI0003B74FC2 cysteine ABC transporter ATP binding protein 0.603231747169 0.5 -0.103231747169 +UniRef50_F0VTI5 PAP2 superfamily protein 1.15285802458 0.5 -0.652858024579 +UniRef50_Q88U25 Phosphoribosylformylglycinamidine synthase 2 1.31778429771 0.5 -0.817784297714 +UniRef50_UPI0001FFDC7C ABC transporter related protein 0.399453422724 0.5 0.100546577276 +UniRef50_K7PC03 Protein ORF84 0.170484330429 0.5 0.329515669571 +UniRef50_UPI000262CF31 Inner membrane arginine ABC transporter permease 0.462702910006 0.5 0.0372970899938 +UniRef50_UPI000471B2C3 shikimate dehydrogenase 0.623008117739 0.5 -0.123008117739 +UniRef50_UPI0004296A6B hypothetical protein 2.68267698616 0.499999999998 -2.18267698616 +UniRef50_UPI0001746B76 phosphoesterase 2.82946570251 0.5 -2.32946570251 +UniRef50_M5M5H9 0.408540853265 0.5 0.0914591467355 +UniRef50_Q17RH7 Putative protein TPRXL 0.025690082562 0.5 0.474309917438 +UniRef50_K5VC32 DbpA RNA binding domain protein 2.63837171516 0.5 -2.13837171516 +UniRef50_P0AGF5 D xylose proton symporter 0.25839073717 0.5 0.24160926283 +UniRef50_A5G222 Probable chemoreceptor glutamine deamidase CheD 3.46298957289 0.500000000001 -2.96298957289 +UniRef50_D3QDT5 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine 2.18056441193 0.499999999999 -1.68056441192 +UniRef50_G0DXL2 0.0213817649488 0.5 0.478618235051 +UniRef50_UPI00018506DA deaminase reductase 0.0447566886994 0.5 0.455243311301 +UniRef50_P76197 Inner membrane transport protein YdiM 4.16936703158 0.500000000002 -3.66936703158 +UniRef50_A0A036SNN0 0.906915521788 0.5 -0.406915521788 +UniRef50_A5URZ0 Acyl carrier protein 0.037474627241 0.5 0.462525372759 +UniRef50_UPI00030E7C94 2 hydroxychromene 2 carboxylate isomerase 0.790823751334 0.5 -0.290823751334 +UniRef50_Q3IW11 Transcriptional regulator, GntR family 0.963087029219 0.5 -0.463087029219 +UniRef50_A3PPE3 Transcriptional regulator, LysR family 0.653280827741 0.5 -0.153280827741 +UniRef50_UPI00047388A6 hypothetical protein 0.110172709082 0.500000000001 0.389827290918 +UniRef50_Q9RUK6 Peptide methionine sulfoxide reductase MsrB 0.00672688745328 0.5 0.493273112547 +UniRef50_Q9RV85 0.00548103863608 0.5 0.494518961364 +UniRef50_Q9RV87 0.00885441722135 0.5 0.491145582779 +UniRef50_O34962 Probable NAD dependent malic enzyme 4 1.92510591445 0.5 -1.42510591445 +UniRef50_A5ULC6 6.15668966323 0.499999999998 -5.65668966323 +UniRef50_J7M8F1 Primosome assembly protein 0.461248561467 0.5 0.0387514385328 +UniRef50_UPI0004743B0B hypothetical protein 1.02473614079 0.5 -0.524736140787 +UniRef50_UPI000287DB6E SAM dependent methyltransferase 0.0879680352339 0.5 0.412031964766 +UniRef50_UPI00046CBCB9 hypothetical protein 0.911877344148 0.5 -0.411877344148 +UniRef50_UPI00026286FB diaminopimelate decarboxylase, partial 0.028342216863 0.5 0.471657783137 +UniRef50_J4ZBB1 Thi4 domain protein 0.122245156847 0.5 0.377754843153 +UniRef50_Q58375 Uroporphyrinogen III C methyltransferase 0.597547150774 0.5 -0.0975471507744 +UniRef50_E6MV57 IS1016 transposase 0.0426313528263 0.5 0.457368647173 +UniRef50_D6ANF2 0.585539918608 0.5 -0.0855399186082 +UniRef50_P50620 Ribonucleoside diphosphate reductase subunit alpha 0.00110695608381 0.500000000001 0.498893043915 +UniRef50_A2WGI8 NAD+ synthase 0.0940022140499 0.5 0.40599778595 +UniRef50_UPI00046AEE41 DNA primase 0.241319366956 0.5 0.258680633044 +UniRef50_F2D1Z4 Predicted protein 0.300465049107 0.5 0.199534950893 +UniRef50_D9XU96 Acyl CoA dehydrogenase 2.08149599512 0.5 -1.58149599512 +UniRef50_G7ZFF7 L sorbosone dehydrogenase 0.0104285827117 0.5 0.489571417288 +UniRef50_A7G768 Xanthine uracil permease family protein 0.135156717071 0.5 0.364843282928 +UniRef50_Q2RKZ1 Leucine tRNA ligase 0.332622569557 0.5 0.167377430443 +UniRef50_X2H662 Phosphoserine phosphatase 0.0461893337073 0.5 0.453810666293 +UniRef50_UPI00037ADDB6 hypothetical protein 0.729835371174 0.5 -0.229835371174 +UniRef50_V6AGZ8 0.821936950442 0.5 -0.321936950442 +UniRef50_UPI0003B424BE hypothetical protein 0.073433803069 0.5 0.426566196931 +UniRef50_UPI0004641C50 hypothetical protein 0.500081490287 0.5 -8.14902867015e-05 +UniRef50_UPI000476CD71 isopentenyl diphosphate delta isomerase 1.20201903628 0.5 -0.702019036276 +UniRef50_UPI00035C2722 hypothetical protein 0.677618356569 0.5 -0.177618356569 +UniRef50_UPI00046890BA hypothetical protein, partial 0.0778654114021 0.500000000001 0.422134588597 +UniRef50_A8ALR3 L carnitine gamma butyrobetaine antiporter 1.4011898153 0.5 -0.901189815299 +UniRef50_A0A017KTW4 0.554770265954 0.5 -0.0547702659541 +UniRef50_A0QM11 0.631407096113 0.5 -0.131407096113 +UniRef50_B6IQY6 Sensor protein KdpD 0.722206841782 0.5 -0.222206841782 +UniRef50_Q6G7J6 UPF0340 protein SAS2017 7.70165329504 0.499999999998 -7.20165329504 +UniRef50_M5TC97 0.0151298649683 0.5 0.484870135032 +UniRef50_UPI00036AD709 hypothetical protein 0.202327784142 0.5 0.297672215858 +UniRef50_O26153 Isopentenyl phosphate kinase 2.31553367665 0.500000000001 -1.81553367666 +UniRef50_UPI00046CFDF2 hypothetical protein 0.172676733905 0.5 0.327323266095 +UniRef50_Q8ZN19 Pyridoxine 5 phosphate synthase 0.358557071549 0.5 0.141442928451 +UniRef50_Q720G3 Gamma glutamyl phosphate reductase 0.586958185615 0.5 -0.086958185615 +UniRef50_C7N3H3 Anion transporter 2.62294378246 0.500000000002 -2.12294378246 +UniRef50_P00728 Thermophilic aminopeptidase 1 alpha chain 2.25639426622 0.500000000002 -1.75639426622 +UniRef50_U5MQF0 Transporter YbhF 1.19368642144 0.5 -0.693686421443 +UniRef50_UPI00036FB801 hypothetical protein 2.10892748749 0.5 -1.60892748749 +UniRef50_Q1IZ80 Potassium proton antiporter regulatory subunit, CPA2 family 0.0201658139018 0.5 0.479834186098 +UniRef50_Q51416 ATP dependent protease ATP binding subunit like protein AmiB 0.256867277386 0.5 0.243132722614 +UniRef50_C3YC75 0.0274387794444 0.5 0.472561220555 +UniRef50_UPI0002492D8D transketolase 1.75090831208 0.5 -1.25090831208 +UniRef50_UPI0003EB3D8F hypothetical protein 0.765680302066 0.5 -0.265680302066 +UniRef50_UPI000255D367 30S ribosomal protein S3 0.163368128594 0.5 0.336631871406 +UniRef50_UPI0003B5823D dihydrolipoamide succinyltransferase 0.0550414567247 0.5 0.444958543275 +UniRef50_I7B1F5 TRZ ATZ atrazine degradation family enzyme 0.181611015225 0.5 0.318388984775 +UniRef50_I6Q147 IS861, transposase OrfB 3.87751039765 0.499999999999 -3.37751039764 +UniRef50_UPI00037D6715 hypothetical protein 1.90113409 0.500000000001 -1.40113409 +UniRef50_D4HDK2 Transporter, anaerobic C4 dicarboxylate uptake family 0.00798383473029 0.5 0.49201616527 +UniRef50_Q5HQV6 2.22136095707 0.500000000001 -1.72136095707 +UniRef50_Q94BZ7 DNA gyrase subunit B, mitochondrial 0.0487627869236 0.5 0.451237213076 +UniRef50_P50840 Putative RNA methyltransferase YpsC 0.52030735595 0.5 -0.0203073559505 +UniRef50_UPI0004728778 hypothetical protein 0.283693080052 0.5 0.216306919948 +UniRef50_A7FVN3 Carbon monoxide dehydrogenase 0.0990832331469 0.5 0.400916766853 +UniRef50_L0GY09 AAA+ family ATPase 1.02687983148 0.5 -0.526879831485 +UniRef50_A6LVS2 Restriction endonuclease 0.0767611556435 0.5 0.423238844356 +UniRef50_P66717 Probable DNA directed RNA polymerase subunit delta 0.381566731838 0.5 0.118433268162 +UniRef50_W5XBG0 Leucyl phenylalanyl tRNA protein transferase 0.0764526857611 0.5 0.423547314239 +UniRef50_R8ZDY1 0.54657545357 0.5 -0.0465754535704 +UniRef50_UPI000477AEDD pseudouridine synthase 2.40535424587 0.5 -1.90535424587 +UniRef50_X7E4C5 2.45042406519 0.5 -1.95042406519 +UniRef50_A6M139 von Willebrand factor, type A 0.147986961953 0.5 0.352013038047 +UniRef50_B7NKV9 Phosphoheptose isomerase 1.67962551938 0.5 -1.17962551938 +UniRef50_B9TEU6 0.0500441282282 0.5 0.449955871772 +UniRef50_E8SHT3 Chromosome partitioning protein ParB Stage 0 sporulation protein J 2.39134198908 0.499999999999 -1.89134198907 +UniRef50_M9V8S5 Cellulase 0.00923254154113 0.5 0.490767458459 +UniRef50_C3X191 0.543083534813 0.5 -0.0430835348135 +UniRef50_X5DRB4 ABC type iron transporter, substrate binding lipoprotein 0.0552312022941 0.5 0.444768797706 +UniRef50_Q3J5T4 50S ribosomal protein L11 28.3091786785 0.499999999966 -27.8091786784 +UniRef50_P09099 Xylulose kinase 0.921162574483 0.5 -0.421162574483 +UniRef50_N8HI80 0.297448195775 0.5 0.202551804225 +UniRef50_W0YQ62 Fusaric acid resistance protein 0.273822292211 0.5 0.226177707789 +UniRef50_Z5X6F0 0.0938044564642 0.5 0.406195543536 +UniRef50_L9IFJ0 BFD like [2Fe 2S] binding domain protein 54.5007518878 0.499999999976 -54.0007518877 +UniRef50_Q031D5 Phosphoserine aminotransferase 0.409254296617 0.5 0.0907457033827 +UniRef50_UPI000362AEF0 hypothetical protein 0.037072044168 0.5 0.462927955832 +UniRef50_G3W4Q5 14.2581732713 0.499999999974 -13.7581732713 +UniRef50_W7X105 0.355629491066 0.5 0.144370508934 +UniRef50_F5M0G6 Response regulator receiver SARP domain containing protein 0.578605348181 0.5 -0.0786053481807 +UniRef50_UPI00035E64FF hypothetical protein 0.163897307291 0.5 0.336102692709 +UniRef50_UPI00036BE8CD hypothetical protein 0.00892858215432 0.5 0.491071417846 +UniRef50_UPI00031F67D7 hypothetical protein 1.69905159011 0.5 -1.19905159011 +UniRef50_E8NRV4 2.81183312883 0.5 -2.31183312883 +UniRef50_UPI0003B36054 riboflavin synthase subunit alpha 0.739045099486 0.5 -0.239045099486 +UniRef50_K7VT43 0.287365827538 0.5 0.212634172462 +UniRef50_UPI00037E7D3D hypothetical protein, partial 0.206246384195 0.5 0.293753615805 +UniRef50_UPI00037D2DA0 hypothetical protein 2.80579176402 0.5 -2.30579176402 +UniRef50_UPI0003B493CA pseudouridine synthase 0.573987209588 0.5 -0.0739872095877 +UniRef50_UPI00047DB330 D ala D ala transporter subunit 1.76627220937 0.5 -1.26627220937 +UniRef50_P54616 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.00201300748145 0.5 0.497986992518 +UniRef50_UPI000478BABE ferredoxin 0.0482024439286 0.5 0.451797556071 +UniRef50_UPI0002E03FC6 hemolysin 1.48579314501 0.5 -0.985793145013 +UniRef50_UPI000364F5FC hypothetical protein 0.226083961425 0.5 0.273916038575 +UniRef50_UPI00037C05D9 hypothetical protein 0.749759769868 0.5 -0.249759769868 +UniRef50_UPI000463A1BE homoserine acetyltransferase 0.310851356518 0.5 0.189148643482 +UniRef50_A8F1A5 UDP glucose 4 epimerase 0.0205708297997 0.5 0.4794291702 +UniRef50_F3FFT1 0.566821442563 0.5 -0.0668214425625 +UniRef50_UPI00047AA814 hypothetical protein 0.376236463254 0.5 0.123763536746 +UniRef50_Q5LW04 Membrane protein, putative 0.610924117857 0.5 -0.110924117857 +UniRef50_UPI0003011CF5 hypothetical protein 0.436918246731 0.5 0.063081753269 +UniRef50_A3SLT2 Glutamate dehydrogenase 0.354180247896 0.5 0.145819752104 +UniRef50_A0A031UV61 0.30277373891 0.5 0.19722626109 +UniRef50_UPI0004653811 hypothetical protein 0.0759420843207 0.5 0.424057915679 +UniRef50_Q8CP59 Probable elastin binding protein EbpS 1.01162424042 0.5 -0.51162424042 +UniRef50_UPI000248CD16 PTS system mannitol specific transporter subunit IICBA 0.0558810614362 0.5 0.444118938563 +UniRef50_P05342 Homocitrate synthase 0.256570639475 0.5 0.243429360525 +UniRef50_Q8DT75 ATP dependent helicase deoxyribonuclease subunit B 2.04221751719 0.5 -1.54221751719 +UniRef50_UPI00029A0230 SecA DEAD domain containing protein 0.459567524733 0.5 0.0404324752671 +UniRef50_H3ZCT1 Putative periplasmic ligand binding sensor protein 0.00579345113908 0.5 0.494206548861 +UniRef50_B2V582 Purine nucleoside phosphorylase 0.112368622634 0.5 0.387631377366 +UniRef50_A6LX49 Nitroreductase 1.2325709982 0.5 -0.732570998203 +UniRef50_V5VAK2 0.0114813314767 0.5 0.488518668523 +UniRef50_UPI0003B47659 DNA helicase 0.0512790909247 0.5 0.448720909075 +UniRef50_Q9RS08 0.00428250269852 0.5 0.495717497302 +UniRef50_Q1J0I2 Acid phosphatase vanadium dependent haloperoxidase related protein 0.013358486212 0.5 0.486641513788 +UniRef50_Q5HN66 A G specific adenine glycosylase 1.99792118854 0.499999999998 -1.49792118853 +UniRef50_C1CXG1 50S ribosomal protein L22 0.00280999634391 0.5 0.497190003656 +UniRef50_UPI0003620A7F hypothetical protein 7.52728819519 0.500000000001 -7.02728819519 +UniRef50_UPI0004797B60 DeoR faimly transcriptional regulator 2.42014203421 0.5 -1.92014203421 +UniRef50_X2GNE3 Aconitate hydratase 1.97025359062 0.5 -1.47025359062 +UniRef50_UPI00037C28A3 hypothetical protein 0.268180634246 0.5 0.231819365754 +UniRef50_Q5LZ45 Sensor histidine kinase 1.19105171511 0.5 -0.691051715108 +UniRef50_I2BMM3 SAM dependent methyltransferase 1.15416211846 0.5 -0.654162118457 +UniRef50_S7N8D9 5.580536398 0.499999999998 -5.080536398 +UniRef50_E8SP16 0.049574961162 0.5 0.450425038838 +UniRef50_Q8REV7 Phosphoribosylamine glycine ligase 0.0496690194394 0.5 0.450330980561 +UniRef50_UPI0003B37A7B transporter 0.00108082058178 0.5 0.498919179418 +UniRef50_F4CM54 Diguanylate cyclase 0.0651991616245 0.5 0.434800838375 +UniRef50_A6TW03 Methyltransferase type 12 0.633572693608 0.5 -0.133572693608 +UniRef50_UPI00046554AE elongation factor G 0.433299101838 0.5 0.0667008981621 +UniRef50_P0A4L9 DNA gyrase subunit B 0.444424161141 0.5 0.0555758388587 +UniRef50_UPI00037BCC78 hypothetical protein, partial 0.0263813860809 0.5 0.473618613919 +UniRef50_L7UJT3 0.859596289024 0.5 -0.359596289024 +UniRef50_Q3YS50 0.363886740085 0.5 0.136113259915 +UniRef50_A5UN86 Multidrug efflux permease, AraJ 1.0587610952 0.5 -0.558761095197 +UniRef50_S1EZD1 0.301607925257 0.5 0.198392074743 +UniRef50_Q5NXH9 0.212912583518 0.5 0.287087416482 +UniRef50_I2BZE4 0.309907607348 0.5 0.190092392652 +UniRef50_Q49Z78 2.16401531848 0.500000000001 -1.66401531848 +UniRef50_X1RRN3 Marine sediment metagenome DNA, contig 0.219621958478 0.5 0.280378041522 +UniRef50_A7ZMU3 Probable manganese efflux pump MntP 7.10133052492 0.499999999997 -6.60133052491 +UniRef50_S1S3U4 Integral membrane protein 0.148211835754 0.5 0.351788164247 +UniRef50_L0DFT8 Arabinose efflux permease family protein 0.0938247402545 0.5 0.406175259746 +UniRef50_UPI0003B3A02D AraC family transcriptional regulator 0.479580033798 0.5 0.0204199662024 +UniRef50_Q28W31 Transcriptional regulator PpsR 1.84088499037 0.5 -1.34088499037 +UniRef50_A5UN34 Molybdopterin guanine dinucleotide biosynthesis protein B, MobB 7.82305928717 0.499999999997 -7.32305928717 +UniRef50_Q2FDU6 Dehydrosqualene desaturase 2.58905736 0.499999999997 -2.08905735999 +UniRef50_A5CVR1 Imidazoleglycerol phosphate dehydratase 1.14269863952 0.5 -0.642698639521 +UniRef50_UPI000315C86E DNA invertase 1.83672855018 0.5 -1.33672855018 +UniRef50_P25536 Maf like protein YhdE 2.44451625146 0.499999999999 -1.94451625146 +UniRef50_A6VCY0 Oxaloacetate decarboxylase 1.33996309798 0.5 -0.839963097981 +UniRef50_UPI00046D7227 ABC transporter permease 10.7034361743 0.499999999998 -10.2034361743 +UniRef50_P0A992 Fructose bisphosphate aldolase class 1 0.151345237822 0.5 0.348654762178 +UniRef50_S6D840 Cobaltochelatase CobT 4.87806379059 0.500000000003 -4.3780637906 +UniRef50_C0Q8E7 Phosphoserine phosphatase 1.10491685574 0.5 -0.604916855744 +UniRef50_D8UBN5 0.131680085308 0.5 0.368319914692 +UniRef50_A0A016UJ97 0.17795295553 0.5 0.32204704447 +UniRef50_UPI000368D600 hypothetical protein, partial 0.923600074044 0.5 -0.423600074044 +UniRef50_Q898U2 BmrU protein 0.180844366725 0.5 0.319155633275 +UniRef50_D4KWU8 N methylhydantoinase A acetone carboxylase, beta subunit 0.253669146783 0.5 0.246330853217 +UniRef50_Y3F751 0.661621470789 0.5 -0.161621470789 +UniRef50_V4J8H7 1.70311765595 0.5 -1.20311765595 +UniRef50_C6STY1 0.0394404509383 0.5 0.460559549062 +UniRef50_N2KV62 Transposase IS66 family protein 0.239280330729 0.5 0.260719669271 +UniRef50_A3SMT4 0.458771009531 0.5 0.0412289904693 +UniRef50_UPI000466B777 hypothetical protein 0.210730666438 0.5 0.289269333562 +UniRef50_UPI0003B73659 ActP protein 0.145436892986 0.499999999999 0.354563107014 +UniRef50_UPI00035C4E49 hypothetical protein 1.96113784683 0.5 -1.46113784683 +UniRef50_P0ADT1 1.72895875766 0.5 -1.22895875766 +UniRef50_UPI00047198FB DNA resolvase 2.28467473138 0.5 -1.78467473138 +UniRef50_Q899S7 DNA replication and repair protein RecF 0.238820234422 0.5 0.261179765578 +UniRef50_UPI0003AA2F1C 3 phosphoglycerate dehydrogenase 0.459200407123 0.5 0.0407995928771 +UniRef50_X0YNP2 Marine sediment metagenome DNA, contig 0.6012666586 0.5 -0.1012666586 +UniRef50_UPI0003B51ADA thiamine biosynthesis protein ThiF 0.225362587334 0.5 0.274637412666 +UniRef50_UPI000406D91D phosphoserine phosphatase 0.281491359005 0.5 0.218508640995 +UniRef50_R4HZ48 23S rRNA methyltransferase RlmB 0.558566632203 0.5 -0.0585666322033 +UniRef50_A0A023X8D6 Transposase 0.28500559761 0.5 0.21499440239 +UniRef50_U3T6T2 Polyhydroxyalkanoate granule associated protein 0.0421702434635 0.5 0.457829756536 +UniRef50_C5D8K3 Phosphopantetheine adenylyltransferase 1.88060231106 0.500000000002 -1.38060231106 +UniRef50_Z5X3K7 0.448899280624 0.5 0.0511007193758 +UniRef50_Q9RYU4 NADH dehydrogenase (quinone) 0.0264470697011 0.5 0.473552930299 +UniRef50_K2JGC9 0.863516352994 0.5 -0.363516352994 +UniRef50_Q9HVN8 0.40883440923 0.5 0.0911655907702 +UniRef50_UPI0001C36F9A outer membrane adhesin like proteiin 0.170601167536 0.5 0.329398832464 +UniRef50_Q83GU1 0.0435513035021 0.5 0.456448696498 +UniRef50_Q88NC4 GDP mannose 6 dehydrogenase 2.27117491306 0.5 -1.77117491306 +UniRef50_Q88WV4 Formamidopyrimidine DNA glycosylase 0.0409013245457 0.5 0.459098675454 +UniRef50_D2TWU4 0.0331653771749 0.5 0.466834622825 +UniRef50_A8AYT3 Potassium uptake protein, Trk family 0.552970983595 0.5 -0.0529709835946 +UniRef50_O49506 Peroxisomal 2 hydroxy acid oxidase GLO5 0.0185297389621 0.500000000001 0.481470261037 +UniRef50_UPI00047A69B8 hypothetical protein 0.114310345919 0.5 0.385689654081 +UniRef50_P50853 Riboflavin biosynthesis protein RibD 0.156915570967 0.5 0.343084429033 +UniRef50_UPI0004730689 hypothetical protein, partial 0.229418576714 0.5 0.270581423286 +UniRef50_B1MXB4 Endonuclease MutS2 0.00136373851267 0.5 0.498636261487 +UniRef50_U3UA35 Regulatory protein HrpB 0.355112434243 0.5 0.144887565757 +UniRef50_R7CL39 Extracellular solute binding protein family 3 0.0512759617994 0.5 0.448724038201 +UniRef50_X1YEM9 0.703797268282 0.5 -0.203797268282 +UniRef50_V7EI41 0.469100002832 0.5 0.0308999971682 +UniRef50_UPI0003705056 MULTISPECIES 0.420010728486 0.5 0.0799892715145 +UniRef50_W8RSY4 Flp pilus assembly protein, pilin Flp 0.965670801952 0.5 -0.465670801952 +UniRef50_F8DIB1 0.729098156422 0.5 -0.229098156422 +UniRef50_A3V3M4 2.98227497154 0.5 -2.48227497154 +UniRef50_D0IU34 Transcriptional regulator of hydrogenase activity 0.028408791219 0.5 0.471591208781 +UniRef50_H7FEN7 0.302073616231 0.5 0.197926383769 +UniRef50_U3T2L8 Pirin like protein 0.012639405981 0.5 0.487360594019 +UniRef50_A6M260 ABC transporter related 0.0812613701989 0.500000000001 0.4187386298 +UniRef50_M2FX18 SAM dependent methyltransferase 1.47293503977 0.5 -0.972935039772 +UniRef50_D2RBW1 0.202474161789 0.5 0.297525838211 +UniRef50_D3E362 0.435093649862 0.5 0.0649063501379 +UniRef50_G0DS16 LacI family transcriptional regulator 0.0605262820493 0.5 0.439473717951 +UniRef50_E8QV25 0.00678368873023 0.5 0.49321631127 +UniRef50_D9RQI3 Immunoglobulin G binding protein A 2.80379382915 0.500000000002 -2.30379382915 +UniRef50_T2G7U7 Putative integral membrane protein MviN 1.07563948664 0.5 -0.575639486635 +UniRef50_A4ECQ1 0.117828699834 0.5 0.382171300166 +UniRef50_R4K2P7 Demethylmenaquinone methyltransferase 0.121309986354 0.5 0.378690013646 +UniRef50_UPI00035F2BDC hypothetical protein 0.0686313035288 0.5 0.431368696471 +UniRef50_A6LSN9 GTP sensing transcriptional pleiotropic repressor CodY 0.113128425448 0.5 0.386871574552 +UniRef50_Q3JUU4 0.488409737403 0.5 0.0115902625967 +UniRef50_S5Y2G0 Alpha beta fold family hydrolase 0.546624719225 0.5 -0.0466247192253 +UniRef50_E6UYE2 Oxidoreductase FAD NAD binding domain protein 0.401910473512 0.5 0.0980895264879 +UniRef50_UPI00035F6127 hypothetical protein 0.406981246462 0.5 0.0930187535384 +UniRef50_B7H179 Ferric alcaligin E 0.00946382883283 0.5 0.490536171167 +UniRef50_UPI00026CA76F BLUF domain containing protein 0.639120615602 0.5 -0.139120615602 +UniRef50_B8GLJ6 0.332989472658 0.5 0.167010527342 +UniRef50_M0UCQ8 0.703900577453 0.5 -0.203900577453 +UniRef50_Q08UF6 0.315858236631 0.5 0.184141763369 +UniRef50_UPI00041CAC19 hypothetical protein 0.344526103211 0.5 0.155473896789 +UniRef50_A0A031I5W8 0.702693565471 0.5 -0.202693565471 +UniRef50_UPI0004750092 HAD family hydrolase 0.111786227688 0.5 0.388213772312 +UniRef50_UPI00037547C0 hypothetical protein 1.33318577342 0.500000000001 -0.833185773426 +UniRef50_D1ABT4 Transglutaminase domain protein 0.0586358982446 0.500000000001 0.441364101754 +UniRef50_S5XRZ9 0.359291946388 0.5 0.140708053612 +UniRef50_P27297 Protein bax 1.88907267031 0.5 -1.38907267031 +UniRef50_T2HU52 Conjugal transfer protein 2.69249159441 0.5 -2.19249159441 +UniRef50_H8GVP7 Alpha amylase 0.00224638809936 0.5 0.4977536119 +UniRef50_F2HR75 2.40205538848 0.500000000002 -1.90205538848 +UniRef50_P64274 Transcription elongation factor GreB 0.986876016543 0.5 -0.486876016543 +UniRef50_Q72TM7 Potassium transporting ATPase A chain 0.00227222972739 0.499999999999 0.497727770273 +UniRef50_UPI00041218DC peptide ABC transporter permease 0.839979895622 0.5 -0.339979895622 +UniRef50_UPI0003B710BC hypothetical protein 0.985966714687 0.5 -0.485966714687 +UniRef50_UPI00036FA209 hypothetical protein 0.250806115751 0.5 0.249193884249 +UniRef50_UPI000478D470 hypothetical protein 0.900887351662 0.5 -0.400887351662 +UniRef50_Q92DC2 Serine protein kinase RsbW 0.0451084854734 0.500000000001 0.454891514526 +UniRef50_Q5LYH1 Dihydroxy acid dehydratase 0.688874231115 0.5 -0.188874231115 +UniRef50_B9TGU7 0.178323157819 0.5 0.321676842181 +UniRef50_Q57NQ3 0.381073044985 0.5 0.118926955015 +UniRef50_A6LS38 Tetratricopeptide TPR_2 repeat protein 0.0280169082482 0.5 0.471983091751 +UniRef50_B8ZNP1 Pantothenate kinase 0.241578302222 0.5 0.258421697778 +UniRef50_UPI00036C732F magnesium chelatase 0.222028965647 0.5 0.277971034353 +UniRef50_P25549 Arylsulfatase 0.522146246198 0.5 -0.0221462461984 +UniRef50_P75800 Putative cyclic di GMP phosphodiesterase YliE 1.49802966432 0.5 -0.998029664318 +UniRef50_S5MYM7 Phosphoserine phosphatase 1.10491685574 0.5 -0.604916855744 +UniRef50_UPI0002490F21 branched chain amino acid transporter II carrier protein 0.674482299685 0.5 -0.174482299685 +UniRef50_A6LYA1 Phage replisome organizer, putative 0.0998765698296 0.5 0.40012343017 +UniRef50_D2U1P2 0.95835105809 0.5 -0.45835105809 +UniRef50_Q30UY1 4.52741524452 0.5 -4.02741524452 +UniRef50_UPI00038283FF 30S ribosomal protein S17 0.0887844897329 0.5 0.411215510267 +UniRef50_K2A1K8 2.59262867658 0.5 -2.09262867658 +UniRef50_Q3JTY3 0.214933242753 0.5 0.285066757247 +UniRef50_P74587 Carbamoyl phosphate synthase small chain 1.67095359552 0.499999999999 -1.17095359552 +UniRef50_M5NSU4 Membrane protein 0.149358447873 0.5 0.350641552127 +UniRef50_UPI0003B53AE0 hypothetical protein 0.320821723505 0.5 0.179178276495 +UniRef50_Q21NS8 Lipid A export ATP binding permease protein MsbA 0.8672068884 0.5 -0.3672068884 +UniRef50_UPI00036998C6 hypothetical protein 3.25869347061 0.5 -2.75869347061 +UniRef50_Q1IJT2 Adenylosuccinate synthetase 0.164094760363 0.5 0.335905239637 +UniRef50_UPI000378226F hypothetical protein 0.0353668812559 0.5 0.464633118744 +UniRef50_Q2NFZ1 Digeranylgeranylglycerophospholipid reductase 1 0.404211499954 0.5 0.0957885000463 +UniRef50_A7FD15 Glutamate racemase 0.570946920376 0.5 -0.0709469203763 +UniRef50_Q5E8X7 3 ketoacyl CoA thiolase 0.271415659829 0.5 0.228584340171 +UniRef50_F0MDS8 Ribonuclease E 0.0154069507177 0.5 0.484593049282 +UniRef50_Q9Z7H0 Uridine kinase 0.0344844483711 0.5 0.465515551628 +UniRef50_UPI000467A3EC cupin 1.49989764544 0.5 -0.999897645443 +UniRef50_P0ACE1 Hydrogenase 2 large chain 1.47899950309 0.5 -0.978999503086 +UniRef50_UPI000468F1F3 hypothetical protein, partial 1.02344471932 0.5 -0.523444719325 +UniRef50_G4LC92 0.610287362456 0.5 -0.110287362456 +UniRef50_UPI00031A1A33 hypothetical protein 0.570466335668 0.5 -0.0704663356683 +UniRef50_Q28K97 Taurine import ATP binding protein TauB 0.411599090144 0.5 0.0884009098562 +UniRef50_Q9RUX9 0.0133669615917 0.5 0.486633038408 +UniRef50_M5R129 Bacteriophage replication 0.203605903459 0.5 0.296394096541 +UniRef50_G6Y6C6 6.14141710397 0.499999999997 -5.64141710397 +UniRef50_P73016 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.0631052103498 0.5 0.43689478965 +UniRef50_P0ACH9 Melibiose operon regulatory protein 1.38707619879 0.5 -0.887076198785 +UniRef50_UPI0003770906 membrane protein 0.391288434568 0.5 0.108711565432 +UniRef50_UPI00035D9DA9 hypothetical protein 0.0171448579262 0.5 0.482855142073 +UniRef50_O76511 Thymidylate synthase 0.0681647213861 0.499999999999 0.431835278614 +UniRef50_G5FKI8 0.756053191499 0.5 -0.256053191499 +UniRef50_UPI00016C4DB7 branched chain amino acid transport ATP binding protein 0.0297819524133 0.5 0.470218047587 +UniRef50_UPI0003B40598 major facilitator transporter 0.143062766418 0.5 0.356937233582 +UniRef50_UPI00039F2091 potassium transporter 0.472390377899 0.5 0.0276096221011 +UniRef50_E3H4N2 Periplasmic binding protein 0.0326107841213 0.500000000001 0.467389215878 +UniRef50_UPI00047150D6 hypothetical protein 0.0408239122259 0.5 0.459176087774 +UniRef50_UPI00036C6373 tail fiber protein 0.156531842362 0.5 0.343468157638 +UniRef50_UPI0004728F0C DNA mismatch repair protein MutL 0.189416841446 0.5 0.310583158554 +UniRef50_UPI00041001CB hypothetical protein 0.2777568897 0.5 0.2222431103 +UniRef50_K7U6X3 1.26721151996 0.5 -0.767211519959 +UniRef50_U3SR01 0.898033815029 0.5 -0.398033815029 +UniRef50_C7DF61 Chemotactic signal response protein, putative 0.977589518195 0.5 -0.477589518195 +UniRef50_A0A023RXZ9 Peptide transporter 0.00891055008981 0.5 0.49108944991 +UniRef50_A6M202 Nitroreductase 1.0901756717 0.5 -0.590175671699 +UniRef50_A9MD69 0.0511469365071 0.5 0.448853063493 +UniRef50_Q3JNQ1 1.68638470893 0.5 -1.18638470893 +UniRef50_B1ZHY8 Pyridoxal 5 phosphate dependent protein beta subunit 0.0730704782947 0.5 0.426929521705 +UniRef50_R5HQZ2 TRAP transporter DctM subunit tripartite ATP independent periplasmic transporter solute receptor DctP family 1.99087344871 0.5 -1.49087344871 +UniRef50_D2NLM2 Transcriptional regulator 0.582662871425 0.5 -0.0826628714254 +UniRef50_UPI0003B4984E trehalose phosphatase 0.645115289173 0.5 -0.145115289173 +UniRef50_D8JJA0 Flavodoxin reductase family protein 1 0.0257471797371 0.5 0.474252820263 +UniRef50_UPI0003B42639 heme ABC transporter ATPase 3.35702672964 0.500000000003 -2.85702672964 +UniRef50_UPI00029ADE28 50S ribosomal protein L22 0.028473248989 0.5 0.471526751011 +UniRef50_D7DK39 0.7310867307 0.5 -0.2310867307 +UniRef50_UPI00037A6F5F hypothetical protein 0.392154150289 0.5 0.107845849711 +UniRef50_UPI0003642305 hypothetical protein 0.128614218249 0.5 0.371385781751 +UniRef50_UPI0003C7E218 hypothetical protein 0.200139596856 0.5 0.299860403144 +UniRef50_UPI000415A98C 3 hexulose 6 phosphate synthase 0.317955878128 0.5 0.182044121872 +UniRef50_Q8E7H3 Sensory transduction protein LytR 0.755509242155 0.5 -0.255509242155 +UniRef50_Q9RTV3 0.00379723514926 0.5 0.496202764851 +UniRef50_F3GAC2 0.477924372042 0.5 0.022075627958 +UniRef50_Q04440 Cytochrome c oxidase subunit 1 0.0371006043789 0.5 0.462899395621 +UniRef50_Q4L7K3 UPF0421 protein SH1063 2.23847113278 0.499999999999 -1.73847113278 +UniRef50_Q8CMQ2 Alkyl hydroperoxide reductase subunit C 1.31900190489 0.5 -0.819001904892 +UniRef50_UPI00016C50A5 N acetylmuramic acid 6 phosphate etherase 0.22929128698 0.5 0.27070871302 +UniRef50_UPI00047D14DB cytochrome C oxidase assembly protein 0.195635954825 0.5 0.304364045176 +UniRef50_T1CPC3 Magnesium protoporphyrin chelatase 0.0437969102972 0.5 0.456203089703 +UniRef50_R0ZN34 0.0261844531772 0.5 0.473815546823 +UniRef50_M8Q184 Prophage tail length tape measure family protein 0.277160943711 0.5 0.222839056289 +UniRef50_Q3M244 Phosphoribosyl AMP cyclohydrolase 1.15165231167 0.5 -0.651652311669 +UniRef50_UPI000360A98B hypothetical protein, partial 0.188976185147 0.5 0.311023814853 +UniRef50_V9R1X9 Acriflavine resistance protein B 1.84500527816 0.5 -1.34500527816 +UniRef50_Q6G3Y9 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 2.91174613858 0.500000000001 -2.41174613858 +UniRef50_P42405 3 hexulose 6 phosphate synthase 5.03605361832 0.499999999999 -4.53605361832 +UniRef50_U3STF6 2.49240033233 0.5 -1.99240033233 +UniRef50_Q5HKV0 Indole 3 pyruvate decarboxylase 1.78266152385 0.500000000001 -1.28266152385 +UniRef50_Q5HRL9 RNA polymerase sigma factor sigW, putative 1.68346295633 0.5 -1.18346295633 +UniRef50_UPI0003B61754 transporter 0.416609678464 0.5 0.0833903215356 +UniRef50_A3PHJ2 0.0743822554855 0.5 0.425617744514 +UniRef50_A7X0F5 Na H(+) antiporter subunit G1 0.362288345744 0.5 0.137711654256 +UniRef50_UPI00039FEC41 hypothetical protein 0.805312510668 0.5 -0.305312510668 +UniRef50_Q89P04 Blr3679 protein 1.77274149543 0.5 -1.27274149543 +UniRef50_Q8XZP8 Sulfate thiosulfate import ATP binding protein CysA 0.026194890795 0.5 0.473805109205 +UniRef50_M6TCA5 Transcriptional regulator domain protein 0.0549685525043 0.499999999999 0.445031447497 +UniRef50_Q21QM7 Adenine phosphoribosyltransferase 1.13424022929 0.5 -0.63424022929 +UniRef50_A6E0W9 1.90762388289 0.5 -1.40762388289 +UniRef50_B8IL91 Endoribonuclease L PSP 1.25418477849 0.5 -0.754184778491 +UniRef50_UPI00032A8D12 PREDICTED 0.0897413011906 0.5 0.410258698809 +UniRef50_A5UN72 Predicted transcriptional regulator 5.64569099598 0.499999999996 -5.14569099598 +UniRef50_M1MA52 D alanyl D alanine carboxypeptidase 0.127446228099 0.500000000001 0.372553771901 +UniRef50_UPI0002556197 coproporphyrinogen III oxidase 0.393155583828 0.5 0.106844416172 +UniRef50_Q21J87 0.0724184710448 0.500000000001 0.427581528955 +UniRef50_Q3J216 Putative class I holin 1.50017900848 0.5 -1.00017900848 +UniRef50_UPI000377F527 hypothetical protein 0.598258999008 0.5 -0.0982589990077 +UniRef50_C6SU00 1.96399643837 0.499999999998 -1.46399643837 +UniRef50_UPI0003B3C220 DNA repair protein RecO, partial 0.163883149914 0.5 0.336116850086 +UniRef50_UPI00047C9CC6 hypothetical protein 0.0205341295604 0.5 0.479465870439 +UniRef50_Q5F9J0 ADP L glycero D manno heptose 6 epimerase 0.139198693227 0.5 0.360801306773 +UniRef50_D9S0U1 Amine oxidase 0.416760038501 0.5 0.0832399614988 +UniRef50_B4RJU8 Tpc 0.0737601426756 0.5 0.426239857325 +UniRef50_UPI0003A37E8C protease 0.667300153464 0.5 -0.167300153464 +UniRef50_UPI000476C2A7 ATPase AAA 0.276638700822 0.5 0.223361299178 +UniRef50_A6DZ03 5.48022896425 0.500000000001 -4.98022896425 +UniRef50_Q8NR12 Ribose import ATP binding protein RbsA 0.130094197285 0.5 0.369905802715 +UniRef50_G2JZ42 Carnitine transport binding protein OpuCC 1.08245947163 0.500000000001 -0.582459471633 +UniRef50_B2GI94 Elongation factor P 0.0518353895485 0.5 0.448164610452 +UniRef50_UPI0004783ADB cell wall hydrolase 1.96361343712 0.500000000001 -1.46361343712 +UniRef50_UPI00047D45FE arginine ABC transporter permease 0.217551909117 0.5 0.282448090883 +UniRef50_S1S637 2.97889165784 0.500000000002 -2.47889165784 +UniRef50_Q18C32 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.644802571609 0.5 -0.144802571609 +UniRef50_Q1J2H5 Pyruvate kinase 0.00534495578262 0.5 0.494655044217 +UniRef50_Q1GIU5 Cell division protein ftsA 2.62722214725 0.5 -2.12722214725 +UniRef50_D4GMR6 4.28993486862 0.499999999999 -3.78993486862 +UniRef50_UPI00029B2672 GntR family transcriptional regulator, partial 0.229002141011 0.5 0.270997858989 +UniRef50_Q2YCK0 Glycine cleavage system H protein 1.75043629748 0.500000000001 -1.25043629748 +UniRef50_A3LIM1 0.449608550018 0.5 0.050391449982 +UniRef50_Q5XB25 Exodeoxyribonuclease 7 large subunit 1.15177001892 0.5 -0.65177001892 +UniRef50_UPI000370F15C hypothetical protein 0.3132769392 0.5 0.1867230608 +UniRef50_G3XD61 UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase 1.41144396651 0.5 -0.911443966508 +UniRef50_X5ZEE6 7.71138441159 0.500000000001 -7.21138441159 +UniRef50_X1KYQ6 Marine sediment metagenome DNA, contig 0.451714547848 0.5 0.0482854521517 +UniRef50_UPI00034A7DFF hypothetical protein 0.0195602475248 0.5 0.480439752475 +UniRef50_UPI00037DAE35 hypothetical protein 0.291215676856 0.5 0.208784323144 +UniRef50_UPI00037E1EAE short chain dehydrogenase 0.219610378623 0.5 0.280389621377 +UniRef50_UPI000415BCBB MarR family transcriptional regulator 0.062263915695 0.5 0.437736084305 +UniRef50_Q6NBT1 Sulfate thiosulfate import ATP binding protein CysA 2.00313850701 0.5 -1.50313850701 +UniRef50_UPI000368D6F0 hypothetical protein 0.0431023459015 0.5 0.456897654098 +UniRef50_B9DLF5 DNA polymerase III gamma and tau subunits 1.64250415008 0.499999999999 -1.14250415008 +UniRef50_E5AVM4 Transcriptional regulators, LysR family 0.0110033111139 0.5 0.488996688886 +UniRef50_R6J1R9 0.725980151646 0.5 -0.225980151646 +UniRef50_UPI000468AE38 cupin 1.57719756724 0.5 -1.07719756724 +UniRef50_Q9UY68 N5 carboxyaminoimidazole ribonucleotide mutase 0.00318507048287 0.5 0.496814929517 +UniRef50_UPI0002F45A92 hypothetical protein 0.220723785763 0.5 0.279276214237 +UniRef50_Q9RVV9 DNA directed RNA polymerase subunit beta 0.00337318808298 0.5 0.496626811917 +UniRef50_Q49UM5 Adenylyl sulfate kinase 1.49204462298 0.5 -0.992044622978 +UniRef50_A5UNL3 Adhesin like protein 1.34021551359 0.5 -0.840215513586 +UniRef50_F2AIB1 Molecular chaperone small heat shock protein 0.742471354189 0.5 -0.242471354189 +UniRef50_UPI00036E0C31 hypothetical protein 0.109989344908 0.5 0.390010655092 +UniRef50_Q2RPW9 Phosphoglycolate phosphatase 0.229966244143 0.5 0.270033755857 +UniRef50_Q637E1 Phosphonate ABC transporter, phosphate binding protein 2.00019662128 0.499999999999 -1.50019662128 +UniRef50_UPI00046F5175 ATPase 0.149614172146 0.5 0.350385827854 +UniRef50_B4U470 Nickel or oligopeptide transport ATP binding protein 0.0697000161173 0.5 0.430299983883 +UniRef50_P0AA87 Thiol 1.05939189675 0.5 -0.559391896747 +UniRef50_UPI0003708E67 hypothetical protein 0.433226175521 0.5 0.0667738244793 +UniRef50_Q28UZ1 0.626739184182 0.5 -0.126739184182 +UniRef50_B8G0S1 Glycosyl transferase family 4 0.0928775955807 0.5 0.407122404419 +UniRef50_UPI00046CFF8D phenylacetate CoA ligase 0.0404685553516 0.5 0.459531444649 +UniRef50_L1K7B5 1.12157399956 0.5 -0.621573999564 +UniRef50_P29823 Lactose transport system permease protein LacF 1.05867871405 0.5 -0.558678714053 +UniRef50_I4Y2D8 1.80957866143 0.5 -1.30957866143 +UniRef50_A0A011QYY7 L threonine dehydratase biosynthetic IlvA 0.266380503949 0.5 0.233619496051 +UniRef50_UPI0002192A5B cyclic nucleotide binding protein, partial 3.09267310711 0.500000000002 -2.59267310711 +UniRef50_K6BVJ8 0.0531410777209 0.5 0.446858922279 +UniRef50_A8FF31 3 dehydroquinate dehydratase 0.0251429049296 0.5 0.474857095071 +UniRef50_K1VMV2 0.48972349484 0.5 0.0102765051597 +UniRef50_Q5LUZ4 Prolipoprotein diacylglyceryl transferase 2.16738350539 0.5 -1.66738350539 +UniRef50_R7PUB9 6.09395928352 0.499999999994 -5.59395928352 +UniRef50_A2SFU4 Transport protein B 0.0262491237169 0.5 0.473750876283 +UniRef50_N0GPT3 L asparaginase I 0.274053301944 0.5 0.225946698056 +UniRef50_R7PUB1 8.56038047099 0.500000000001 -8.06038047099 +UniRef50_B6JGY2 Peptide chain release factor 3 1.60468750725 0.5 -1.10468750725 +UniRef50_D2SD20 TRAP transporter solute receptor, TAXI family 0.279616275843 0.5 0.220383724157 +UniRef50_P05041 Aminodeoxychorismate synthase component 1 0.803026499738 0.5 -0.303026499738 +UniRef50_Q9RZS9 GGDEF family protein 0.00312282168301 0.5 0.496877178317 +UniRef50_R6C7G1 Phage terminase 0.0634999911065 0.5 0.436500008894 +UniRef50_Q2RYH6 KpsF GutQ 1.34189183342 0.5 -0.84189183342 +UniRef50_B2I4P8 Peptide methionine sulfoxide reductase MsrA 0.00831300399811 0.5 0.491686996002 +UniRef50_Q9SJM7 Uridine nucleosidase 1 0.418492284378 0.5 0.0815077156219 +UniRef50_C5WH94 Tetra tricopeptide repeat family protein 0.877438630633 0.5 -0.377438630633 +UniRef50_UPI0003607183 hypothetical protein 0.403968440923 0.5 0.0960315590773 +UniRef50_R6R0W0 Electron transfer flavoprotein domain containing protein 0.497061646862 0.5 0.00293835313809 +UniRef50_D4HFL5 AMP binding enzyme 0.0180725846127 0.5 0.481927415388 +UniRef50_B9KSR7 1.52162256844 0.5 -1.02162256844 +UniRef50_B9J5U3 4.35648137267 0.500000000004 -3.85648137267 +UniRef50_B9KSF7 Entericidin EcnAB 0.283513687609 0.5 0.216486312391 +UniRef50_Q928I1 Triosephosphate isomerase 1 0.865918482794 0.5 -0.365918482794 +UniRef50_UPI00037BAD1C hypothetical protein 0.277802827772 0.5 0.222197172228 +UniRef50_M1M081 DNA mismatch repair protein MutS 0.1057059528 0.499999999999 0.394294047201 +UniRef50_Q3M630 DNA topology modulation protein 0.03617121794 0.5 0.46382878206 +UniRef50_M5KBZ8 4.5388941821 0.5 -4.0388941821 +UniRef50_X2GPQ0 0.0316014834619 0.5 0.468398516538 +UniRef50_Q9RWZ0 0.147790428964 0.5 0.352209571036 +UniRef50_Q7CGI0 Cell division protein FtsP 1.22064333945 0.5 -0.720643339447 +UniRef50_UPI00036E8C31 hypothetical protein 3.77364262416 0.499999999997 -3.27364262416 +UniRef50_A7NI76 AAA ATPase central domain protein 0.0175008356245 0.500000000001 0.482499164375 +UniRef50_P24173 Lipopolysaccharide heptosyltransferase 1 1.81146679296 0.5 -1.31146679296 +UniRef50_Q1R011 3 octaprenyl 4 hydroxybenzoate carboxy lyase 5.18367358892 0.5 -4.68367358892 +UniRef50_UPI0003B662E9 uroporphyrin III C methyltransferase 0.698343353756 0.5 -0.198343353756 +UniRef50_D3E2B0 Calcineurin like phosphoesterase 2.47338573492 0.5 -1.97338573492 +UniRef50_A5UNH2 Glycosyltransferase, GT2 family 5.8030204462 0.500000000002 -5.3030204462 +UniRef50_Q5NLZ3 Tyrosine tRNA ligase 2.49448197442 0.5 -1.99448197442 +UniRef50_E6SII5 Endonuclease III 0.00653454593526 0.5 0.493465454065 +UniRef50_X6YJ88 0.650932864175 0.5 -0.150932864175 +UniRef50_UPI000441D732 PREDICTED 0.136912072888 0.5 0.363087927112 +UniRef50_P32715 Multidrug resistance protein MdtO 3.34532694948 0.5 -2.84532694948 +UniRef50_UPI000315E7F4 hypothetical protein 0.715442106499 0.5 -0.215442106499 +UniRef50_G7D8U7 Biopolymer transport protein 0.360335065185 0.5 0.139664934815 +UniRef50_A0A017HLZ7 1.31133051658 0.499999999999 -0.811330516577 +UniRef50_V6JSM6 UDP N acetylglucosamine 2 epimerase 0.0156160141468 0.5 0.484383985853 +UniRef50_B4U8M6 Glutamate 1 semialdehyde 2,1 aminomutase 0.15942671379 0.499999999999 0.340573286211 +UniRef50_A0A011U926 Polymerase 0.420397851298 0.5 0.0796021487017 +UniRef50_UPI000463B6AC molybdopterin biosynthesis like protein MoeZ 0.192348045495 0.5 0.307651954505 +UniRef50_P34031 DNA gyrase subunit B 0.14345987282 0.500000000001 0.356540127179 +UniRef50_A0A023LIT9 0.396590866808 0.5 0.103409133192 +UniRef50_E5RBE6 Protein smf. domain protein 2.44891429582 0.500000000002 -1.94891429582 +UniRef50_UPI0003A10A10 hypothetical protein 0.274383089557 0.5 0.225616910443 +UniRef50_Q9RYG5 Methyl accepting chemotaxis protein 0.00241999774478 0.499999999999 0.497580002256 +UniRef50_Q6LRE4 Anhydro N acetylmuramic acid kinase 4.15125880277 0.500000000004 -3.65125880278 +UniRef50_A0A010U7S7 Glutamine tRNA ligase 0.0103233797951 0.5 0.489676620205 +UniRef50_UPI00037E096F hypothetical protein 0.130899567318 0.5 0.369100432682 +UniRef50_R7LLC2 Cation efflux protein 0.397156650596 0.5 0.102843349404 +UniRef50_F2CXC6 Predicted protein 0.634922332351 0.5 -0.134922332351 +UniRef50_UPI0003799FCE hypothetical protein 2.31701298022 0.499999999996 -1.81701298021 +UniRef50_Q2YUY9 N acetylmuramic acid 6 phosphate etherase 2.07478750289 0.500000000003 -1.5747875029 +UniRef50_D7B3H1 CDP alcohol phosphatidyltransferase 0.0592510280911 0.5 0.440748971909 +UniRef50_E6MY79 Phosphoglycerate kinase 0.0602055623815 0.5 0.439794437619 +UniRef50_M9TYI3 0.148400678721 0.5 0.351599321279 +UniRef50_UPI0004740A93 citrate synthase, partial 0.0812887053595 0.5 0.418711294641 +UniRef50_M9VKL6 Thiol reductant ABC exporter, CydC subunit 0.00949892379649 0.5 0.490501076204 +UniRef50_D4HEU0 Transcriptional regulator, TetR family 0.0452101391935 0.5 0.454789860806 +UniRef50_B8A0L8 0.541450318335 0.5 -0.0414503183346 +UniRef50_A5UNY6 Adhesin like protein 0.969994530987 0.5 -0.469994530987 +UniRef50_K0PFX8 Group 1 glycosyl transferase 1.85270029426 0.5 -1.35270029426 +UniRef50_X5EKA8 0.617771838759 0.5 -0.117771838759 +UniRef50_Q6A900 Ribonuclease Y 0.014943642774 0.5 0.485056357226 +UniRef50_A7ZN22 Alpha,alpha trehalose phosphate synthase [UDP forming] 1.29344819329 0.5 -0.793448193294 +UniRef50_M9VHV5 Transcriptional regulator 0.0258155177004 0.5 0.4741844823 +UniRef50_UPI00036BF090 hypothetical protein 0.203342238329 0.5 0.296657761671 +UniRef50_X5W5P1 Cupin 1.26118378445 0.499999999999 -0.761183784453 +UniRef50_P05648 Chromosomal replication initiator protein DnaA 0.849315114644 0.5 -0.349315114644 +UniRef50_C1DQE7 KHG KDPG aldolase 0.0407719338187 0.5 0.459228066181 +UniRef50_B9KXN9 tRNA ) methyltransferase 2.03113821972 0.5 -1.53113821972 +UniRef50_A3PQ24 Phage integrase family protein 0.932693502832 0.5 -0.432693502832 +UniRef50_P96718 UDP glucose 6 dehydrogenase YwqF 0.0385215861177 0.5 0.461478413883 +UniRef50_I1HFT3 0.215982547514 0.5 0.284017452486 +UniRef50_I0C140 OppC 4.00064127867 0.500000000003 -3.50064127867 +UniRef50_G5KE14 Phage terminase, large subunit like protein 0.189676223784 0.5 0.310323776216 +UniRef50_B4RGD5 Patch repair protein 5.79088882529 0.499999999999 -5.29088882529 +UniRef50_UPI0003442B9F PREDICTED 1.25618071208 0.5 -0.756180712079 +UniRef50_D2N4E0 Peptidase propeptide and ypeb domain protein 2.40021354592 0.5 -1.90021354592 +UniRef50_B8JEW4 6,7 dimethyl 8 ribityllumazine synthase 0.98805771676 0.5 -0.48805771676 +UniRef50_UPI00016C4567 chemotaxis protein methyltransferase 0.960342885863 0.5 -0.460342885863 +UniRef50_UPI0003B71F4A cell wall hydrolase 0.989727037435 0.5 -0.489727037435 +UniRef50_A5VZS9 Ribosomal protein S12 methylthiotransferase RimO 3.36308355505 0.5 -2.86308355505 +UniRef50_D7D802 0.198912867059 0.5 0.301087132941 +UniRef50_UPI00037181FA hypothetical protein 1.82373774275 0.5 -1.32373774275 +UniRef50_B0VU18 0.00287898565736 0.5 0.497121014343 +UniRef50_I7ES66 TRAP transporter, subunit DctM 0.366952523534 0.5 0.133047476466 +UniRef50_P0AAM2 Probable Ni Fe hydrogenase 1 B type cytochrome subunit 7.93471005807 0.500000000001 -7.43471005807 +UniRef50_UPI000472D060 transposase 0.00360563299102 0.5 0.496394367009 +UniRef50_A7HHU8 LigA 0.340082015499 0.5 0.159917984501 +UniRef50_P33074 L serine dehydratase, beta chain 0.0293292132541 0.500000000001 0.470670786745 +UniRef50_Q1JF14 Trigger factor 0.327174186065 0.5 0.172825813935 +UniRef50_UPI0002629D2B phenol hydroxylase 10.0260099918 0.499999999988 -9.52600999183 +UniRef50_A9C3K7 0.141144806592 0.5 0.358855193408 +UniRef50_UPI000414ACF6 TonB dependent receptor 1.04896346815 0.5 -0.548963468151 +UniRef50_B1XKV1 Elongation factor P 0.0832897706039 0.5 0.416710229396 +UniRef50_UPI000379A93B hypothetical protein 0.725952500991 0.5 -0.225952500991 +UniRef50_Q1BN64 Methylmalonate semialdehyde dehydrogenase 0.232047910437 0.5 0.267952089563 +UniRef50_Q3JID5 0.128370069595 0.5 0.371629930405 +UniRef50_B9E8I0 S ribosylhomocysteine lyase 2.61713937985 0.5 -2.11713937985 +UniRef50_P35755 Iron utilization periplasmic protein 0.0235627397046 0.5 0.476437260295 +UniRef50_R9SK57 Molybdate ABC transporter ATP binding protein ModC 0.714242769214 0.5 -0.214242769214 +UniRef50_Q24YW4 Enolase 1 0.0590914236233 0.5 0.440908576377 +UniRef50_I0C4F0 GTPases 2.16837824089 0.499999999997 -1.66837824089 +UniRef50_UPI0003A26BF2 twin arginine targeting protein translocase 0.880063097151 0.5 -0.380063097151 +UniRef50_UPI00035144CC PREDICTED 0.153763602166 0.5 0.346236397834 +UniRef50_UPI00037AC467 hypothetical protein 0.0873869385373 0.5 0.412613061463 +UniRef50_D8JW50 0.555795210444 0.5 -0.0557952104435 +UniRef50_A8FDG9 8 amino 7 oxononanoate synthase 1.06684123678 0.5 -0.566841236779 +UniRef50_UPI000478F20C macrolide transporter 0.225518101163 0.5 0.274481898837 +UniRef50_F2ETD0 0.653852805605 0.5 -0.153852805605 +UniRef50_E0TH65 Flagellar biosynthesis protein FlhA 0.925999573481 0.5 -0.425999573481 +UniRef50_M8D633 0.00550379464711 0.500000000001 0.494496205352 +UniRef50_P0AFP5 7.65625779046 0.499999999995 -7.15625779045 +UniRef50_W7VDK3 Transposase IS861 3.90111171889 0.500000000001 -3.40111171889 +UniRef50_F9X2K4 0.416364733582 0.5 0.0836352664175 +UniRef50_D0TA60 Metallo beta lactamase domain protein 0.947111211032 0.5 -0.447111211032 +UniRef50_F8JIF8 0.0139969627544 0.5 0.486003037246 +UniRef50_UPI0002F8A47D hypothetical protein 0.396205068458 0.5 0.103794931542 +UniRef50_Q3IVG9 ABC Glycine betaine L proline transporter, inner membrane subunit 4.29065683365 0.499999999998 -3.79065683365 +UniRef50_B3PDL9 Type IV pilus biogenesis protein PilF 0.208220403422 0.5 0.291779596578 +UniRef50_B7US81 Predicted tail fiber protein 0.292815568192 0.5 0.207184431808 +UniRef50_UPI0001BF5FA9 hypothetical protein SMAC_11727, partial 0.388734038672 0.5 0.111265961328 +UniRef50_P76501 4.46668775702 0.5 -3.96668775702 +UniRef50_UPI0003B2EAC3 1 phosphofructokinase 0.568023695568 0.5 -0.0680236955677 +UniRef50_P06208 2 isopropylmalate synthase 0.138810163167 0.5 0.361189836833 +UniRef50_P32395 Uroporphyrinogen decarboxylase 0.0272267305756 0.5 0.472773269424 +UniRef50_A0A011NCP8 Nitrite facilitator 1 0.761241859851 0.5 -0.261241859851 +UniRef50_Q28V62 0.324792105166 0.5 0.175207894834 +UniRef50_D3SCE5 Proteophosphoglycan ppg4 0.912789196869 0.5 -0.412789196869 +UniRef50_T0HYB4 0.320422530273 0.5 0.179577469727 +UniRef50_K7RU35 DNA repair protein RecN 0.00952186101435 0.5 0.490478138986 +UniRef50_Q3J4R2 1.03707559959 0.5 -0.537075599591 +UniRef50_P76505 3.09265283625 0.5 -2.59265283625 +UniRef50_A1U4C6 tRNA dimethylallyltransferase 2.06207157739 0.5 -1.56207157739 +UniRef50_W5XIS1 50S ribosomal protein L22 0.0228952663552 0.500000000001 0.477104733644 +UniRef50_Q65T94 ARA1 protein 5.54942763597 0.499999999998 -5.04942763596 +UniRef50_Q8XAR8 UDP N acetylglucosamine 2 epimerase 1.42470234646 0.5 -0.924702346457 +UniRef50_Q31E54 8 amino 7 oxononanoate synthase 0.430675894523 0.5 0.0693241054774 +UniRef50_Q3JR64 0.000873716112095 0.5 0.499126283888 +UniRef50_UPI000258DCCB 0.11278918849 0.5 0.38721081151 +UniRef50_W1DUY3 Fosmidomycin resistance protein 2.9964377731 0.499999999998 -2.4964377731 +UniRef50_UPI00041B42CD multidrug transporter 0.186269441932 0.5 0.313730558068 +UniRef50_UPI000373198D hypothetical protein 0.102031832967 0.5 0.397968167033 +UniRef50_Q8CSM5 0.32290550067 0.5 0.17709449933 +UniRef50_Q1GIM1 Type III pantothenate kinase 1.13341885699 0.5 -0.63341885699 +UniRef50_Q8CSM3 2.94890883215 0.5 -2.44890883215 +UniRef50_S5D4V1 Nucleotidyltransferase DNA polymerase involved in DNA repair 0.0208358185867 0.5 0.479164181413 +UniRef50_UPI00047E5BE4 hypothetical protein 0.0362630298393 0.5 0.463736970161 +UniRef50_R5WDX8 FAD dependent oxidoreductase 0.808903861692 0.5 -0.308903861692 +UniRef50_X2NEQ0 0.863464943214 0.5 -0.363464943214 +UniRef50_UPI00035C7733 hypothetical protein, partial 1.88010778261 0.5 -1.38010778261 +UniRef50_Q4A065 1.64538971999 0.5 -1.14538971999 +UniRef50_G7JG03 ATP synthase subunit a chloroplastic 0.394324380267 0.5 0.105675619733 +UniRef50_UPI0002379BDC 3 oxoacyl ACP synthase 3.74222084598 0.5 -3.24222084598 +UniRef50_P65644 Ethanolamine utilization cobalamin adenosyltransferase 17.1945682276 0.499999999995 -16.6945682276 +UniRef50_UPI0003B5520E CoA transferase 0.0315004998072 0.500000000001 0.468499500192 +UniRef50_UPI000470029D diguanylate cyclase 0.475420207283 0.5 0.0245797927168 +UniRef50_A3PP83 0.345218599333 0.5 0.154781400667 +UniRef50_W5XDF7 UvrABC system protein C 0.19049838228 0.5 0.30950161772 +UniRef50_P46905 1.25533862523 0.500000000001 -0.755338625234 +UniRef50_UPI00036028EF hypothetical protein 0.509803240182 0.5 -0.0098032401817 +UniRef50_B9DRH4 Haloacid dehalogenase like hydrolase 1.05495052681 0.5 -0.554950526808 +UniRef50_UPI0003C257FE PREDICTED 0.484795012653 0.5 0.0152049873471 +UniRef50_UPI00037569F6 hypothetical protein, partial 1.53630877979 0.5 -1.03630877979 +UniRef50_A6LXY6 PAS PAC sensor hybrid histidine kinase 0.282117027772 0.5 0.217882972228 +UniRef50_Q5HME3 0.878448978122 0.5 -0.378448978122 +UniRef50_P45102 Succinyl CoA ligase [ADP forming] subunit alpha 0.252659257271 0.5 0.247340742729 +UniRef50_Q5HME1 2.27097881119 0.5 -1.77097881119 +UniRef50_X5ETW2 Peptidase, M50 family 0.127059282636 0.5 0.372940717364 +UniRef50_P26340 Mannose 1 phosphate guanylyltransferase ManC 4.42521103783 0.500000000003 -3.92521103783 +UniRef50_P45413 Citrate lyase alpha chain 0.610427208293 0.5 -0.110427208293 +UniRef50_C5N5E9 2.73974399422 0.5 -2.23974399422 +UniRef50_P0A603 RNA polymerase sigma factor SigA 0.0153361549952 0.5 0.484663845005 +UniRef50_T1YCL4 3.65572201938 0.500000000006 -3.15572201939 +UniRef50_Q59635 Catalase 0.0708713330569 0.5 0.429128666943 +UniRef50_I0KW88 0.292034410637 0.5 0.207965589363 +UniRef50_A5ULP8 Predicted surface protein 0.312258084252 0.5 0.187741915748 +UniRef50_C0P9U0 0.69140516315 0.5 -0.19140516315 +UniRef50_A3PS37 Sulfotransferase 1.92457288661 0.5 -1.42457288661 +UniRef50_P25906 Putative oxidoreductase YdbC 1.21971575301 0.5 -0.719715753011 +UniRef50_P52074 Glycolate oxidase iron sulfur subunit 5.89215991947 0.5 -5.39215991947 +UniRef50_B7GX21 Aldehyde dehydrogenase 0.0306496240487 0.5 0.469350375951 +UniRef50_A5UNW8 Putative PeiW related protein 6.96598223285 0.5 -6.46598223285 +UniRef50_B7N0I9 Zinc transporter ZupT 2.01107771912 0.500000000002 -1.51107771912 +UniRef50_UPI0003959B2A peptide synthetase, partial 0.533167797208 0.5 -0.033167797208 +UniRef50_P0AAF2 Putrescine ornithine antiporter 5.40373819411 0.499999999992 -4.90373819411 +UniRef50_C1DK50 0.680546989321 0.5 -0.180546989321 +UniRef50_A8LLD9 Ribonuclease 3 0.171923878501 0.5 0.328076121499 +UniRef50_Q7WH65 Beta hexosaminidase 0.264137858344 0.5 0.235862141656 +UniRef50_D6SCK6 ABC transporter, ATP binding protein 1.11612247372 0.5 -0.616122473723 +UniRef50_E0P352 2.71456675896 0.5 -2.21456675896 +UniRef50_F0Y057 Expressed protein 0.0830945160099 0.5 0.41690548399 +UniRef50_UPI00037F9362 hypothetical protein 0.0019312563109 0.5 0.498068743689 +UniRef50_UPI000262CE64 deoxyguanosinetriphosphate triphosphohydrolase like protein 7.81416662584 0.499999999998 -7.31416662584 +UniRef50_K2AIZ3 ABC transporter related protein 0.251956857961 0.5 0.248043142039 +UniRef50_Q8EED7 Phosphomethylpyrimidine synthase 0.0285565093417 0.5 0.471443490659 +UniRef50_I6TQZ8 TetR family transcriptional regulator 0.99005702845 0.5 -0.49005702845 +UniRef50_UPI0003941799 PREDICTED 0.182247884716 0.5 0.317752115284 +UniRef50_R5PZ37 1.1220682624 0.5 -0.622068262399 +UniRef50_K9NJR2 Universal stress protein 2.75811444643 0.5 -2.25811444643 +UniRef50_P71838 KsdD like steroid dehydrogenase Rv0785 0.00417274641191 0.499999999999 0.495827253589 +UniRef50_UPI0003B5E589 ABC transporter ATP binding protein 0.53836127903 0.5 -0.0383612790304 +UniRef50_P21189 DNA polymerase II 5.56778006826 0.499999999999 -5.06778006826 +UniRef50_Q3K742 UDP N acetylmuramoylalanine D glutamate ligase 0.320079834698 0.5 0.179920165302 +UniRef50_F3U2R3 1.8924904657 0.499999999999 -1.3924904657 +UniRef50_F0XXV4 Expressed protein 0.832418226049 0.5 -0.332418226049 +UniRef50_A6LWS8 TPR repeat containing protein 0.210331234887 0.5 0.289668765113 +UniRef50_UPI00046FEF63 iron dicitrate transporter subunit FecD 0.935215882323 0.5 -0.435215882323 +UniRef50_O67298 Methionine tRNA ligase 0.29632186585 0.5 0.20367813415 +UniRef50_Q8H883 Putataive InsB from Escherichia coli 6.58767972563 0.499999999998 -6.08767972562 +UniRef50_Q9JZ07 Inositol 1 monophosphatase 0.00448384250321 0.5 0.495516157497 +UniRef50_Q9V076 Ribonuclease J 1.08532428627 0.5 -0.58532428627 +UniRef50_J4JDJ6 PF05787 domain protein 0.0252572428221 0.5 0.474742757177 +UniRef50_A3PRQ7 Xanthine dehydrogenase, molybdenum binding subunit apoprotein 6.41363306966 0.499999999989 -5.91363306965 +UniRef50_B7V1A6 Ketol acid reductoisomerase 0.732880754464 0.5 -0.232880754464 +UniRef50_O66113 Pyruvate dehydrogenase E1 component subunit beta 2.09773326594 0.5 -1.59773326594 +UniRef50_F3U3I1 Trimethylamine N oxide reductase c type cytochrome TorC 2.56550148629 0.500000000002 -2.06550148629 +UniRef50_M9VCX6 0.081189730671 0.5 0.418810269329 +UniRef50_A5ULX3 Adhesin like protein 1.85678775442 0.499999999999 -1.35678775442 +UniRef50_Q9RSL9 0.0762601246339 0.5 0.423739875366 +UniRef50_A6FNW8 0.621668365554 0.5 -0.121668365554 +UniRef50_S5YTE6 L arabinose isomerase 3.2263289488 0.499999999998 -2.7263289488 +UniRef50_U8LE05 1.8341416181 0.5 -1.3341416181 +UniRef50_Q51485 Porin B 0.159794982389 0.5 0.340205017611 +UniRef50_P68188 Maltose maltodextrin import ATP binding protein MalK 13.993930761 0.500000000001 -13.493930761 +UniRef50_Q1IZP1 Gamma glutamyl phosphate reductase 0.455384730369 0.5 0.0446152696313 +UniRef50_UPI0004729B76 multidrug transporter MurJ 0.508780312425 0.5 -0.00878031242516 +UniRef50_E8U8Q1 Tellurite resistance TerB 0.00249994383199 0.500000000001 0.497500056168 +UniRef50_UPI000369225C hypothetical protein 0.603229515005 0.5 -0.103229515005 +UniRef50_D5ATK1 TRAP C4 dicarboxylate transport system permease, DctM 2 subunit 0.197782593196 0.5 0.302217406804 +UniRef50_B8I813 Energy coupling factor transporter transmembrane protein EcfT 0.130122074756 0.5 0.369877925244 +UniRef50_E1DDS4 Putative permease protein 0.903383259378 0.5 -0.403383259378 +UniRef50_UPI00012E0EF0 UDP phosphate galactose phosphotransferase 0.373454546521 0.5 0.126545453479 +UniRef50_UPI0001CBAFEA PREDICTED 0.585611933016 0.5 -0.0856119330163 +UniRef50_E2Q3I4 Flavoprotein disulfide reductase 0.0276914502363 0.5 0.472308549764 +UniRef50_R5Y4C4 0.438512197871 0.5 0.0614878021286 +UniRef50_R7PXB7 3.35253544333 0.500000000002 -2.85253544333 +UniRef50_P54458 Putative methyltransferase YqeM 0.169694474311 0.5 0.330305525689 +UniRef50_W5WZ80 N succinyldiaminopimelate aminotransferase 0.0116341667716 0.5 0.488365833229 +UniRef50_UPI000344B62A hypothetical protein 1.64577325863 0.5 -1.14577325863 +UniRef50_Q9L6S1 ATP dependent DNA helicase Rep 0.291131118745 0.5 0.208868881255 +UniRef50_Q07HH8 1.03202459848 0.5 -0.532024598478 +UniRef50_Q87VV7 Probable nicotinate nucleotide adenylyltransferase 0.0337963691819 0.5 0.466203630818 +UniRef50_Q97H93 Cell division protein SepF 0.178763059578 0.5 0.321236940422 +UniRef50_F4C9G0 ATPase 0.636851473703 0.5 -0.136851473703 +UniRef50_Q0VMD9 Putative ribosome biogenesis GTPase RsgA 9.5748414156 0.500000000002 -9.0748414156 +UniRef50_R1FQ49 0.304084219619 0.5 0.195915780381 +UniRef50_P45262 Replication associated recombination protein A 0.0330697138264 0.499999999999 0.466930286174 +UniRef50_M4TV91 IS1114 transposase, IS5 family protein 0.700622102007 0.5 -0.200622102007 +UniRef50_F0MX83 0.169169559055 0.5 0.330830440945 +UniRef50_G4LLK3 2.47566484607 0.5 -1.97566484607 +UniRef50_A4GA34 0.340408378291 0.5 0.159591621709 +UniRef50_G2AUL8 1.41459200616 0.500000000001 -0.914592006159 +UniRef50_H6NQR9 0.807963302574 0.5 -0.307963302574 +UniRef50_Q9RYB1 0.0197528370089 0.5 0.480247162991 +UniRef50_UPI000312AE4D hypothetical protein 0.299748944951 0.5 0.200251055049 +UniRef50_UPI000366A351 hypothetical protein 0.335151168059 0.5 0.164848831941 +UniRef50_UPI0003B3F958 Hsp33 chaperonin 0.322348490643 0.5 0.177651509357 +UniRef50_I1PKM1 1.50262288473 0.5 -1.00262288473 +UniRef50_Q83RK8 2.23937275645 0.500000000001 -1.73937275645 +UniRef50_B8JEF4 0.0525326611426 0.5 0.447467338857 +UniRef50_R5GFP8 0.0485127123441 0.5 0.451487287656 +UniRef50_T2I1A7 0.0438772391496 0.5 0.456122760851 +UniRef50_D5AUT9 Phage terminase, large subunit 4.8238991492 0.5 -4.3238991492 +UniRef50_UPI0003A838D0 acyl CoA dehydrogenase 0.423947672822 0.5 0.0760523271775 +UniRef50_P0AGE7 1.10947056446 0.5 -0.609470564455 +UniRef50_W5XIW0 Isoprenyl transferase 0.247923641226 0.5 0.252076358774 +UniRef50_Q51687 Histidinol phosphate aminotransferase 1.22515732114 0.5 -0.725157321137 +UniRef50_UPI000299D2EC hypothetical protein 0.344672276022 0.5 0.155327723978 +UniRef50_UPI00045E7782 xanthine dehydrogenase 0.60368721525 0.5 -0.10368721525 +UniRef50_B3T3L8 0.337062657576 0.5 0.162937342424 +UniRef50_Q9RSZ4 0.00842701186568 0.5 0.491572988135 +UniRef50_UPI0003772F6B hypothetical protein 0.494405119156 0.5 0.00559488084422 +UniRef50_F9VSE4 Threonine dehydratase 0.0941213145966 0.5 0.405878685403 +UniRef50_UPI0004726CDF DNA polymerase III subunit alpha, partial 1.21937582506 0.499999999999 -0.71937582506 +UniRef50_C8S240 0.705648264645 0.5 -0.205648264645 +UniRef50_A4WY94 1.79341999054 0.5 -1.29341999054 +UniRef50_UPI0003AB78D1 1.46142431568 0.5 -0.961424315683 +UniRef50_P11072 Bacteriophage T4 late gene expression blocking protein 5.70889005367 0.499999999996 -5.20889005367 +UniRef50_A3M3V3 0.0184110731503 0.5 0.481588926849 +UniRef50_A1IQR7 DNA ligase 0.0158076195606 0.5 0.48419238044 +UniRef50_Q8GFF2 0.0381021779059 0.5 0.461897822094 +UniRef50_V2U4R3 0.0111833133086 0.5 0.488816686692 +UniRef50_B8ITI2 Electron transfer flavoprotein alpha subunit 0.356286721019 0.5 0.143713278981 +UniRef50_U6A8L3 Sigma factor PvdS, controling pyoverdin biosynthesis 0.740343743475 0.5 -0.240343743475 +UniRef50_Q2IPT7 Tyrosine tRNA ligase 2.1304673248 0.499999999999 -1.6304673248 +UniRef50_UPI000366594A hypothetical protein 0.218636935512 0.5 0.281363064488 +UniRef50_M9VKU7 ABC transporter permease 0.0543751105658 0.5 0.445624889434 +UniRef50_X0UZB7 Marine sediment metagenome DNA, contig 2.33373296739 0.499999999999 -1.83373296739 +UniRef50_Q72UH6 Phosphoribosylformylglycinamidine synthase 1 0.689219637165 0.5 -0.189219637165 +UniRef50_P0A270 Exopolyphosphatase 3.32341677335 0.499999999998 -2.82341677335 +UniRef50_P45360 Putative UDP N acetylglucosamine 2 epimerase 0.743692759706 0.5 -0.243692759706 +UniRef50_Q01BN9 Putative histone deacetylase 0.0480500428315 0.500000000001 0.451949957168 +UniRef50_U5AK60 0.0675779414231 0.5 0.432422058577 +UniRef50_A3CR82 3.3634462768 0.500000000001 -2.86344627681 +UniRef50_Q5HNN4 Uroporphyrinogen III synthase 4.34852738238 0.5 -3.84852738238 +UniRef50_UPI000347D2C7 hypothetical protein 0.36067736527 0.5 0.13932263473 +UniRef50_Q6BA79 1.643338634 0.499999999999 -1.143338634 +UniRef50_Q8KA16 Endonuclease III 0.152772549888 0.5 0.347227450112 +UniRef50_Q2YA02 Acetylglutamate kinase 1.42454735215 0.5 -0.924547352148 +UniRef50_X8A848 0.266263768818 0.5 0.233736231182 +UniRef50_A3P8Z9 AMP binding domain protein 0.103723889834 0.5 0.396276110166 +UniRef50_Q8TUZ5 Acetylornithine aminotransferase 0.0971565007334 0.5 0.402843499267 +UniRef50_UPI0000E0FA29 hypothetical protein 1.60155016668 0.5 -1.10155016668 +UniRef50_B7V608 Anthranilate phosphoribosyltransferase 1.37697249079 0.5 -0.876972490793 +UniRef50_Q3BVS7 0.170864353117 0.5 0.329135646883 +UniRef50_Q1DG75 0.595669053354 0.5 -0.0956690533544 +UniRef50_D8JGE0 Paraquat inducible protein A 0.0562991609093 0.5 0.443700839091 +UniRef50_I7AAS7 0.341802201282 0.5 0.158197798718 +UniRef50_P07023 T protein 0.349813561994 0.5 0.150186438006 +UniRef50_UPI000415AB07 hypothetical protein 0.261792370268 0.5 0.238207629732 +UniRef50_A8L089 0.142756393984 0.5 0.357243606016 +UniRef50_R5PFJ0 0.002260452669 0.5 0.497739547331 +UniRef50_UPI000371AE89 hypothetical protein 0.94883764677 0.5 -0.44883764677 +UniRef50_UPI000471CA1B hypothetical protein 0.114719386251 0.5 0.385280613749 +UniRef50_Q2GSP5 0.159780153904 0.500000000001 0.340219846096 +UniRef50_Q67JS9 50S ribosomal protein L1 0.0807628831103 0.499999999999 0.41923711689 +UniRef50_UPI000347BD58 hypothetical protein 0.0128182382962 0.5 0.487181761704 +UniRef50_F2ECI9 Predicted protein 1.28835941844 0.500000000001 -0.788359418438 +UniRef50_P26275 Positive alginate biosynthesis regulatory protein 0.535294877014 0.5 -0.0352948770137 +UniRef50_UPI00037F445F hypothetical protein 0.246776015667 0.5 0.253223984333 +UniRef50_Q2G505 0.474539197839 0.5 0.0254608021607 +UniRef50_UPI00041221D7 hypothetical protein 0.00658675049946 0.5 0.493413249501 +UniRef50_Q8TZ24 Shikimate dehydrogenase 0.123744028051 0.5 0.376255971949 +UniRef50_UPI0003A57B20 cell envelope biogenesis protein AsmA 0.379946904388 0.5 0.120053095612 +UniRef50_B9KNT5 5.65796404264 0.500000000001 -5.15796404264 +UniRef50_UPI000375676E hypothetical protein 0.906423876457 0.5 -0.406423876457 +UniRef50_Q2S5X4 Osteoblast specific factor 2 related protein 2.66801255896 0.5 -2.16801255896 +UniRef50_UPI000479735A cobalt ABC transporter ATPase 0.316835280616 0.5 0.183164719384 +UniRef50_UPI000374B954 MULTISPECIES 0.0188356327617 0.5 0.481164367238 +UniRef50_Q5PAE7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.0305477113298 0.5 0.46945228867 +UniRef50_UPI00037730C9 hypothetical protein 0.448039510008 0.5 0.0519604899923 +UniRef50_UPI00030CFB49 DNA repair protein RecO 0.142396322144 0.5 0.357603677856 +UniRef50_G0DX72 Galactose proton symporter 0.00707496134354 0.5 0.492925038657 +UniRef50_A6UF25 0.285760228893 0.5 0.214239771107 +UniRef50_UPI0003F4DAD2 valyl tRNA synthetase 0.676798047681 0.5 -0.176798047681 +UniRef50_UPI0002E6EF76 hypothetical protein 0.347323974221 0.5 0.152676025779 +UniRef50_A0A014FPC4 0.0255407962601 0.5 0.47445920374 +UniRef50_A3PJ57 1.07785464814 0.5 -0.577854648143 +UniRef50_UPI00034D8CD9 glycoside hydrolase 0.704022095613 0.5 -0.204022095613 +UniRef50_Q3IUW8 TraE protein 4.56992883444 0.5 -4.06992883444 +UniRef50_L0D7B2 0.954043689583 0.5 -0.454043689583 +UniRef50_U5MVQ9 D galactose binding periplasmic protein MglB 0.0537027741099 0.5 0.44629722589 +UniRef50_K1YJB5 TRAP C4 dicarboxylate transport system permease DctM subunit 0.119821440431 0.5 0.380178559569 +UniRef50_UPI0004648032 gamma aminobutyrate transporter 1.58500282185 0.5 -1.08500282185 +UniRef50_R5UIW1 Ribose phosphate diphosphokinase 0.178976994348 0.5 0.321023005652 +UniRef50_V5SZP2 2.08152288632 0.5 -1.58152288632 +UniRef50_B1IC45 1.10684589976 0.5 -0.606845899765 +UniRef50_Y3DCZ9 5.78395111128 0.500000000004 -5.28395111128 +UniRef50_R5TSA7 0.041953658226 0.500000000001 0.458046341773 +UniRef50_Q0AVW1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.00152849518854 0.5 0.498471504811 +UniRef50_UPI000420523B hypothetical protein 0.0380670216164 0.5 0.461932978383 +UniRef50_C1CER1 Mobile genetic element 0.00406139818632 0.5 0.495938601814 +UniRef50_B2UML1 Aminotransferase class I and II 5.01051532729 0.499999999999 -4.51051532729 +UniRef50_U3SWF7 0.748529325928 0.5 -0.248529325928 +UniRef50_UPI00037F27EC hypothetical protein, partial 3.21361557913 0.5 -2.71361557913 +UniRef50_P44474 Rod shape determining protein MreB 0.173541581182 0.5 0.326458418818 +UniRef50_F3GF13 PAS protein 0.225282484631 0.5 0.274717515369 +UniRef50_UPI0004783EFD dihydroxyacetone kinase 0.0572144934768 0.5 0.442785506523 +UniRef50_J2LVD6 0.807924631688 0.5 -0.307924631688 +UniRef50_W1FRR0 Acyl CoA dehydrogenases 3.14805168794 0.500000000003 -2.64805168795 +UniRef50_W8VHA5 Exodeoxyribonuclease III 2.61040075309 0.500000000001 -2.11040075309 +UniRef50_M9VM96 Methylaspartate mutase 0.014209562095 0.5 0.485790437905 +UniRef50_UPI000454B050 PREDICTED 0.33712716929 0.5 0.16287283071 +UniRef50_UPI000440E201 ArfGap domain containing protein 0.0221466130195 0.500000000001 0.47785338698 +UniRef50_R9SKZ5 SAM dependent methyltransferase UbiE family 2.66857742359 0.500000000005 -2.1685774236 +UniRef50_P37641 1.56176347929 0.5 -1.06176347929 +UniRef50_P37645 1.11120470968 0.5 -0.611204709682 +UniRef50_UPI00041FC02E citrate synthase 0.359951042486 0.5 0.140048957514 +UniRef50_B9KMR2 0.937081202821 0.5 -0.437081202821 +UniRef50_S5DFR0 Isoleucine tRNA ligase 0.00554868592473 0.5 0.494451314075 +UniRef50_P62051 L lactate dehydrogenase 0.218118436163 0.5 0.281881563837 +UniRef50_D8HE77 Inosine uridine preferring nucleoside hydrolase 1.07148420762 0.5 -0.571484207617 +UniRef50_UPI0003FEA5A5 2 dehydro 3 deoxyglucarate aldolase 0.0431120238915 0.5 0.456887976109 +UniRef50_A3V6T8 1.22433614391 0.5 -0.724336143906 +UniRef50_Q7T6Y8 Ribonucleoside diphosphate reductase large subunit 0.144390630731 0.5 0.355609369269 +UniRef50_Q9K7C3 L arabinose transport ATP binding protein AraG 0.128730236165 0.499999999999 0.371269763835 +UniRef50_UPI00040B989C alkaline phosphatase 0.201720101752 0.5 0.298279898248 +UniRef50_A4XZ93 Elongation factor G 1.3711976994 0.5 -0.871197699403 +UniRef50_J7M1N2 LacI family transcriptional regulator 1.08515258085 0.5 -0.585152580848 +UniRef50_UPI0003624EE9 hypothetical protein 1.63817011738 0.5 -1.13817011738 +UniRef50_Q08120 Bacteroid development protein BacA 0.140047822261 0.5 0.359952177739 +UniRef50_D8JM63 0.0717235837819 0.5 0.428276416218 +UniRef50_B2HNH3 PE PGRS family protein, PE_PGRS59 0.0554468217516 0.5 0.444553178249 +UniRef50_UPI0003FE4D19 dienelactone hydrolase 0.0860465319386 0.500000000001 0.413953468061 +UniRef50_Z9W2S3 0.255547650327 0.5 0.244452349673 +UniRef50_UPI00046A585D phenazine biosynthesis protein PhzF 0.306624806357 0.5 0.193375193643 +UniRef50_UPI000249288F peptide ABC transporter ATP binding protein 1.43406925902 0.499999999999 -0.934069259021 +UniRef50_A0A029LLM4 FAD NAD binding family protein 3.33460245033 0.500000000002 -2.83460245033 +UniRef50_Q3SEU9 Phosphoribosyl AMP cyclohydrolase 0.535158170922 0.5 -0.0351581709224 +UniRef50_F8JK27 0.4344839482 0.5 0.0655160517996 +UniRef50_Q88QZ8 Peptide methionine sulfoxide reductase MsrA 0.3402621655 0.5 0.1597378345 +UniRef50_D8JGI7 MJ0042 family finger like domain protein 0.012617997961 0.5 0.487382002039 +UniRef50_Q49YQ5 1.84492986417 0.5 -1.34492986417 +UniRef50_B9DPJ4 Signal recognition particle receptor FtsY 2.6042611225 0.499999999998 -2.1042611225 +UniRef50_UPI0004686D1F hypothetical protein 0.0131608444504 0.5 0.48683915555 +UniRef50_Q89AJ2 Thioredoxin reductase 1.18190278826 0.5 -0.68190278826 +UniRef50_A6LYH8 Cation diffusion facilitator family transporter 0.111796679523 0.499999999999 0.388203320477 +UniRef50_D5AMX5 1.05649231345 0.5 -0.556492313451 +UniRef50_UPI0004747720 peptide ABC transporter 0.08664299298 0.5 0.41335700702 +UniRef50_UPI00047E1486 hypothetical protein 0.19303356019 0.5 0.30696643981 +UniRef50_R4NJW9 Low specificity L threonine aldolase 1.56228634101 0.5 -1.06228634101 +UniRef50_H4JD68 Dienelactone hydrolase family protein 0.30342615546 0.5 0.19657384454 +UniRef50_Q5H5C1 Phosphinothricin acetyltransferase 0.0258085415761 0.5 0.474191458424 +UniRef50_B2IQF0 0.407983946394 0.5 0.092016053606 +UniRef50_UPI00026CA133 hypothetical protein 1.18857422506 0.5 -0.688574225061 +UniRef50_UPI000368DDFC hypothetical protein 0.306567726377 0.5 0.193432273623 +UniRef50_G8DCQ6 2.21064912897 0.5 -1.71064912897 +UniRef50_UPI0003672F43 hypothetical protein 0.0179243236862 0.5 0.482075676314 +UniRef50_P39161 Uxu operon transcriptional regulator 4.02215961705 0.5 -3.52215961705 +UniRef50_UPI0002D2FE43 hypothetical protein 1.84566344206 0.5 -1.34566344206 +UniRef50_UPI0004786318 hypothetical protein 6.41499425733 0.5 -5.91499425733 +UniRef50_B9L7V8 Acyl carrier protein 0.0220906116366 0.5 0.477909388363 +UniRef50_UPI00036E7E1F hypothetical protein 0.00440321208975 0.5 0.49559678791 +UniRef50_UPI00035EB162 hypothetical protein 0.686496188119 0.5 -0.186496188119 +UniRef50_D6SCJ9 Quinone oxidoreductase, YhdH YhfP family 2.10658505597 0.500000000001 -1.60658505597 +UniRef50_R5IBX6 0.500911701328 0.5 -0.000911701327884 +UniRef50_A5UP26 1.30184784713 0.5 -0.801847847133 +UniRef50_Q0B215 DEAD DEAH box helicase domain protein 1.06177373347 0.5 -0.561773733468 +UniRef50_T0QM98 0.356022003142 0.5 0.143977996858 +UniRef50_A3K9M4 Transposase orfA IS5 family element 0.24951523404 0.5 0.25048476596 +UniRef50_A1TL08 Phosphoribosyl ATP pyrophosphatase 0.0576352645446 0.5 0.442364735456 +UniRef50_UPI00016A61F3 ABC transporter related protein 0.439402504608 0.5 0.0605974953922 +UniRef50_L3AZC3 Diguanylate cyclase YdeH 0.641105462262 0.5 -0.141105462262 +UniRef50_K4NAI3 0.0423457751128 0.5 0.457654224887 +UniRef50_Q6G956 Maltose operon transcriptional repressor 3.39238039256 0.5 -2.89238039256 +UniRef50_A9G862 Phosphoglucosamine mutase 0.430826348753 0.5 0.0691736512466 +UniRef50_P0AB86 Thiamine biosynthesis lipoprotein ApbE 4.52904542357 0.499999999997 -4.02904542357 +UniRef50_UPI00036588E1 chromosome partitioning protein ParA 0.157829283394 0.5 0.342170716605 +UniRef50_P46926 Glucosamine 6 phosphate isomerase 1 0.558284224217 0.5 -0.0582842242174 +UniRef50_UPI000470FD75 hypothetical protein 0.0103345030327 0.5 0.489665496967 +UniRef50_F7Z394 Bis tetraphosphatase, ApaH 0.116228185168 0.5 0.383771814832 +UniRef50_B4S1N2 Thymidylate kinase 0.452813432246 0.5 0.047186567754 +UniRef50_UPI00036DAC41 hypothetical protein 0.386594533793 0.5 0.113405466207 +UniRef50_P33358 HTH type transcriptional regulator MlrA 1.95607848177 0.499999999999 -1.45607848177 +UniRef50_I3R9M8 Respiratory nitrate reductase subunit beta 0.167405000026 0.5 0.332594999974 +UniRef50_Q119B3 Acyl carrier protein 0.138541088231 0.500000000001 0.361458911768 +UniRef50_G2SPG8 Primosomal protein n 1.5944648642 0.5 -1.0944648642 +UniRef50_A5W8P2 Protein translocase subunit SecA 1.06832386815 0.5 -0.568323868153 +UniRef50_M1F9S3 Hydrogen peroxide inducible genes activator 0.779481480079 0.5 -0.279481480079 +UniRef50_UPI000375B204 hypothetical protein 0.123958483191 0.5 0.37604151681 +UniRef50_F4GVQ8 ABC transporter protein 1.2702653421 0.5 -0.7702653421 +UniRef50_Q2RKD5 Flagellar biosynthetic protein FliP 0.202903825187 0.5 0.297096174813 +UniRef50_A5F3I6 Phosphoadenosine phosphosulfate reductase 0.322437360253 0.5 0.177562639747 +UniRef50_A6LSK1 Probable dual specificity RNA methyltransferase RlmN 0.178125224876 0.5 0.321874775124 +UniRef50_A8IHY5 C4 dicarboxylate binding protein 2.55687659087 0.499999999999 -2.05687659086 +UniRef50_A3VGU5 1.14750407268 0.5 -0.64750407268 +UniRef50_Q8FQS8 0.0303123981077 0.5 0.469687601892 +UniRef50_UPI000377BBC9 hypothetical protein 0.512085856045 0.5 -0.0120858560445 +UniRef50_A4WUT7 Phage SPO1 DNA polymerase related protein 1.10900237065 0.5 -0.609002370654 +UniRef50_UPI0001C3962F S1 RNA binding domain protein 1.0746290157 0.5 -0.574629015704 +UniRef50_UPI00026276D0 aryldialkylphosphatase 0.467585846769 0.5 0.0324141532314 +UniRef50_P13016 1,6 anhydro N acetylmuramyl L alanine amidase AmpD 2.06626616142 0.500000000001 -1.56626616142 +UniRef50_G7MAE0 0.428351358279 0.5 0.0716486417209 +UniRef50_P31125 Probable amino acid metabolite efflux pump 2.66659608019 0.500000000001 -2.16659608019 +UniRef50_UPI00022CAAD4 PREDICTED 0.206863445652 0.5 0.293136554348 +UniRef50_A6LQD1 Transcriptional regulator 0.061298546316 0.5 0.438701453684 +UniRef50_U6Z4K6 0.46891559559 0.5 0.0310844044103 +UniRef50_A0A059IRR6 1.79180928109 0.5 -1.29180928108 +UniRef50_P58219 Inner membrane protein YjgN 0.47629879501 0.5 0.0237012049902 +UniRef50_A0A011M3E9 Putative hydrolase of the alpha beta hydrolase fold protein 1.15439827194 0.5 -0.654398271936 +UniRef50_P75976 0.812000987118 0.5 -0.312000987118 +UniRef50_F8KLB6 9.69770491675 0.5 -9.19770491675 +UniRef50_UPI0004409E56 PREDICTED 0.149212312678 0.5 0.350787687322 +UniRef50_R9SM81 NMD3 family protein 1.10193820583 0.5 -0.601938205828 +UniRef50_UPI0003621607 hypothetical protein 0.610567670641 0.5 -0.110567670641 +UniRef50_H0DMI5 GA module 0.868680621722 0.5 -0.368680621722 +UniRef50_B1VGA4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.322529029825 0.5 0.177470970175 +UniRef50_UPI000255A1B0 sulfate ABC transporter, inner membrane subunit CysT 2.69108919786 0.499999999998 -2.19108919786 +UniRef50_Q9RTQ6 Daunorubicin C 13 ketoreductase 0.0105632151146 0.5 0.489436784885 +UniRef50_G7M7W5 Heat shock protein DnaJ domain protein 0.140611371475 0.5 0.359388628525 +UniRef50_Q59998 Zinc transporting ATPase 0.244505997756 0.5 0.255494002244 +UniRef50_I3G3U5 6.21108990661 0.5 -5.7110899066 +UniRef50_F3Z677 Putative GTP dependent nucleic acid binding protein EngD 0.158358664126 0.5 0.341641335874 +UniRef50_A0A024JBZ5 Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl tRNA bond 0.0860301251037 0.5 0.413969874896 +UniRef50_Q5LSI1 ABC transporter, permease protein 3.57580778704 0.5 -3.07580778704 +UniRef50_V4IUE3 0.968618950917 0.5 -0.468618950917 +UniRef50_B2HQA4 Imidazoleglycerol phosphate dehydratase 0.0255911263332 0.5 0.474408873667 +UniRef50_D8J0P8 Quinohemoprotein alcohol dehydrogenase protein 0.494470021358 0.5 0.00552997864162 +UniRef50_A0A023VQ43 Phosphatidylethanolamine binding protein 2.76331551832 0.500000000001 -2.26331551832 +UniRef50_UPI0003619783 hypothetical protein 0.989676780888 0.5 -0.489676780888 +UniRef50_S9RV98 0.770879590651 0.5 -0.270879590651 +UniRef50_B2HWV5 Periplasmic serine protease 0.0189560921213 0.5 0.481043907879 +UniRef50_C3DVF3 0.0339205088687 0.499999999999 0.466079491132 +UniRef50_Q4WWN8 Sulfate adenylyltransferase 1.69191862024 0.5 -1.19191862024 +UniRef50_B2A2N1 Ribonuclease 3 0.221494724161 0.5 0.278505275839 +UniRef50_UPI000473A452 hypothetical protein, partial 0.276698740132 0.5 0.223301259868 +UniRef50_UPI00042382C9 hypothetical protein 0.133180688739 0.5 0.366819311261 +UniRef50_E0XTA9 0.487878517051 0.5 0.0121214829494 +UniRef50_UPI00026292D6 TRAP dicarboxylate transporter subunit DctM, partial 0.240245635091 0.5 0.259754364909 +UniRef50_UPI0003B7A748 hypothetical protein 0.0450739061257 0.5 0.454926093875 +UniRef50_Q6FDS1 Leucyl phenylalanyl tRNA protein transferase 0.0500523062493 0.5 0.449947693751 +UniRef50_V2J6J5 0.348124534781 0.5 0.151875465219 +UniRef50_A0A022H255 Methylhydantoinase 0.260802708785 0.5 0.239197291215 +UniRef50_W4WUV4 2.04390965562 0.5 -1.54390965562 +UniRef50_O06844 Nitric oxide reductase subunit C 2.57859444105 0.500000000001 -2.07859444105 +UniRef50_C5YNI9 0.781315874625 0.5 -0.281315874625 +UniRef50_UPI00020D97D1 large conductance mechanosensitive channel protein MscL 2.23166639118 0.499999999999 -1.73166639118 +UniRef50_A6LY57 0.0368286256621 0.5 0.463171374338 +UniRef50_A6LY56 0.170721159521 0.5 0.329278840479 +UniRef50_G8V949 ABC transporter, molybdenum transport system 0.0431352424017 0.5 0.456864757598 +UniRef50_Q9KIP8 D tagatose 1,6 bisphosphate aldolase subunit KbaY 0.60329528345 0.5 -0.10329528345 +UniRef50_P20576 Anthranilate synthase component 2 0.13711034199 0.5 0.36288965801 +UniRef50_UPI0004724CFA hypothetical protein 5.58034783964 0.499999999994 -5.08034783964 +UniRef50_F7ZHD8 2.4175843688 0.500000000001 -1.9175843688 +UniRef50_H8FVA2 Transposase 1.0092149612 0.5 -0.509214961197 +UniRef50_K7RQ56 Cell cycle protein, FtsW RodA SpoVE family 0.0304892292336 0.5 0.469510770766 +UniRef50_D3QHZ6 0.313566281864 0.5 0.186433718136 +UniRef50_UPI000374CE3A hypothetical protein, partial 1.07271706065 0.5 -0.572717060651 +UniRef50_P72371 Cap8E 2.00265216805 0.499999999999 -1.50265216804 +UniRef50_U5NN01 0.24916364221 0.5 0.25083635779 +UniRef50_A6LV36 Integral membrane sensor signal transduction histidine kinase 0.0512093803829 0.5 0.448790619617 +UniRef50_Q1GCT8 Butyryl CoA dehydrogenase 0.121024226035 0.5 0.378975773965 +UniRef50_R4ZMT7 Additional lipoprotein component of predicted cobalamin ECF transporter 1.65857679508 0.500000000001 -1.15857679508 +UniRef50_D6SCB6 Transporter, major facilitator family protein 1.72283639547 0.499999999999 -1.22283639547 +UniRef50_A0A009KXU9 0.0635648462531 0.5 0.436435153747 +UniRef50_Q2Y6A7 DedA 0.0573417391955 0.5 0.442658260804 +UniRef50_UPI00040856F2 hypothetical protein 2.39826615797 0.500000000001 -1.89826615797 +UniRef50_G7M3S1 Transcriptional regulator, TetR family 0.893423088724 0.5 -0.393423088724 +UniRef50_Q4I1N3 Sulfate adenylyltransferase 0.949335240369 0.5 -0.449335240369 +UniRef50_P76121 9.12109691473 0.499999999998 -8.62109691473 +UniRef50_P76123 2.31054772962 0.499999999998 -1.81054772962 +UniRef50_Y5PB14 0.476706722915 0.5 0.0232932770851 +UniRef50_L0GW54 Exopolyphosphatase 0.0772729598224 0.5 0.422727040177 +UniRef50_R5S9I0 0.00291903998768 0.5 0.497080960012 +UniRef50_O35008 Putative protein YtqA 1.65828791874 0.499999999999 -1.15828791874 +UniRef50_R6G2T1 Dihydroxyacetone kinase L subunit 0.105740458373 0.5 0.394259541627 +UniRef50_X9N846 0.934734390883 0.5 -0.434734390883 +UniRef50_D5WIU5 RND efflux system, outer membrane lipoprotein, NodT family 0.00488593212199 0.5 0.495114067878 +UniRef50_UPI0003B5B66A single stranded DNA binding protein 0.10210069774 0.5 0.39789930226 +UniRef50_Q1AVX4 UDP N acetylmuramate L alanine ligase 0.37931897877 0.5 0.12068102123 +UniRef50_Q5E715 Methionine import ATP binding protein MetN 35.2660699912 0.499999999993 -34.7660699912 +UniRef50_Q9PDT8 Enolase 0.202981313159 0.5 0.297018686841 +UniRef50_Q9Z3U1 DNA translocase FtsK 1.50772321487 0.5 -1.00772321487 +UniRef50_A1WTJ3 Dihydroorotate dehydrogenase 0.306999916949 0.5 0.193000083051 +UniRef50_H2JB32 Terminase like family 0.113102441125 0.5 0.386897558875 +UniRef50_UPI0003812972 hypothetical protein 0.676436850979 0.5 -0.176436850979 +UniRef50_N1MA35 1.40495874719 0.5 -0.904958747192 +UniRef50_H8ZPX2 3 succinoylsemialdehyde pyridine dehydrogenase 2.25817216364 0.5 -1.75817216364 +UniRef50_Q9JXS7 Chromosomal replication initiator protein DnaA 0.0191630242847 0.500000000001 0.480836975715 +UniRef50_N9DK24 1.76784249002 0.5 -1.26784249002 +UniRef50_D5RTD5 0.257561740381 0.5 0.242438259619 +UniRef50_UPI00047C92E9 chromosomal replication initiation protein 0.407314006064 0.5 0.0926859939364 +UniRef50_P0DKR8 Spermidine N acetyltransferase 4.26394645769 0.500000000004 -3.76394645769 +UniRef50_UPI000475FA76 hypothetical protein 0.142857205102 0.5 0.357142794898 +UniRef50_UPI0003631E18 hypothetical protein 0.0207670318936 0.5 0.479232968106 +UniRef50_A6E2Z7 0.529212645335 0.5 -0.0292126453351 +UniRef50_I0G8T6 11.065608544 0.499999999997 -10.5656085439 +UniRef50_U1SML3 0.0150475474028 0.5 0.484952452597 +UniRef50_F9NW45 Trehalose utilization 0.018864209942 0.5 0.481135790058 +UniRef50_Q9RTI6 3 isopropylmalate dehydratase large subunit 2 0.00570263295447 0.5 0.494297367046 +UniRef50_E0RLY4 Short chain type dehydrogenase reductase 0.05025185371 0.5 0.44974814629 +UniRef50_U4JC67 2.46761560439 0.5 -1.96761560439 +UniRef50_M1LR29 Phage late control gene D protein GPD 0.111120092416 0.5 0.388879907583 +UniRef50_W4HIE7 0.576344239988 0.5 -0.0763442399878 +UniRef50_P45260 Acetolactate synthase small subunit 0.382338459831 0.5 0.117661540169 +UniRef50_UPI0000379465 hypothetical protein 1.27386607416 0.5 -0.773866074164 +UniRef50_G7M1N6 Phage tail tape measure protein, TP901 family 0.0660989294603 0.500000000001 0.433901070539 +UniRef50_R9YLQ5 LXG domain of WXG superfamily protein 0.25319160806 0.5 0.24680839194 +UniRef50_Q4L5B7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.12126284746 0.5 -0.621262847464 +UniRef50_Q9LD57 Phosphoglycerate kinase 1, chloroplastic 0.065292226415 0.5 0.434707773585 +UniRef50_H3VIV1 Transposase, IS4 like family protein 2.07387999301 0.5 -1.57387999301 +UniRef50_UPI0003823D63 hypothetical protein 0.191087976192 0.5 0.308912023808 +UniRef50_U5P976 Magnesium transporter 7.43414077464 0.5 -6.93414077464 +UniRef50_UPI00026263A2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.565345285625 0.5 -0.0653452856254 +UniRef50_J7QFY9 Lysine , arginine , ornithine binding periplasmic protein 0.911065351329 0.5 -0.411065351329 +UniRef50_Q6GK28 Protein EsaA 2.53042758745 0.5 -2.03042758745 +UniRef50_B7H3M8 MotA TolQ ExbB proton channel family protein 0.0413115006828 0.5 0.458688499317 +UniRef50_A1B5F3 3.23098031952 0.5 -2.73098031952 +UniRef50_U5LD58 Asparaginase 2.41871079577 0.499999999998 -1.91871079576 +UniRef50_P39280 L lysine 2,3 aminomutase 2.91891028255 0.5 -2.41891028255 +UniRef50_UPI000380B87F hypothetical protein 0.513732490236 0.5 -0.0137324902355 +UniRef50_L0GSA6 Type II secretory pathway, component ExeA 1.32078421639 0.5 -0.82078421639 +UniRef50_R1B4D2 0.238976266433 0.5 0.261023733567 +UniRef50_Q8D335 Glutathione synthetase 3.05133556359 0.500000000001 -2.55133556359 +UniRef50_U5NRL5 1.34020978993 0.5 -0.840209789929 +UniRef50_J7L4M3 0.0179624258094 0.5 0.48203757419 +UniRef50_L0NCJ2 3.59771833138 0.500000000002 -3.09771833138 +UniRef50_UPI00036B778B hypothetical protein 0.112491685595 0.5 0.387508314405 +UniRef50_Q8CWR6 Alpha monoglucosyldiacylglycerol synthase 0.352131446325 0.5 0.147868553675 +UniRef50_B9KQ22 Lysine exporter protein 0.221033968072 0.5 0.278966031927 +UniRef50_A1SNL2 30S ribosomal protein S3 1.99588033004 0.500000000001 -1.49588033004 +UniRef50_M0X3J8 0.0171462266338 0.5 0.482853773366 +UniRef50_B3A0N5 Apyrase 0.942544711272 0.5 -0.442544711272 +UniRef50_S4JHM6 1.19062336157 0.5 -0.690623361571 +UniRef50_UPI0001F85C4F L alanine dehydrogenase like protein 0.0245615295956 0.5 0.475438470404 +UniRef50_W0E372 Sensor histidine kinase 0.45364567295 0.5 0.0463543270501 +UniRef50_UPI0003B51C09 sugar ABC transporter permease 0.0754332812212 0.5 0.424566718779 +UniRef50_UPI0000164CD9 putative transposase 0.00231655905224 0.5 0.497683440948 +UniRef50_A5UNF8 Transporter 2.16408636863 0.5 -1.66408636863 +UniRef50_U3SVD1 Glucosyltransferase 1.74146581007 0.5 -1.24146581007 +UniRef50_R4W4T4 0.83285278052 0.5 -0.33285278052 +UniRef50_UPI00046B847F PREDICTED 0.290978585605 0.5 0.209021414395 +UniRef50_Q9KDD8 Uridine kinase 0.0173891062788 0.5 0.482610893721 +UniRef50_UPI00024931AE DNA primase 0.152913213906 0.5 0.347086786094 +UniRef50_N1MTW2 Zn dependent hydroxyacylglutathione hydrolase Polysulfide binding protein 3.39138756979 0.500000000004 -2.89138756979 +UniRef50_B9DXD9 0.0278823314195 0.5 0.472117668581 +UniRef50_UPI0004137D5A hypothetical protein 0.463398864297 0.5 0.0366011357027 +UniRef50_B7J5S3 3 isopropylmalate dehydratase small subunit 0.293621477663 0.5 0.206378522337 +UniRef50_UPI0004561650 hypothetical protein PFL1_00576 3.02320350964 0.499999999999 -2.52320350964 +UniRef50_I0TVV6 11.5480300557 0.5 -11.0480300557 +UniRef50_A4WT53 PAS PAC sensor hybrid histidine kinase 2.30055188311 0.5 -1.80055188311 +UniRef50_D1GN02 Phage protein 0.117045582372 0.5 0.382954417628 +UniRef50_B9KPL9 Serine alanine racemase VanTc3 3.28218032819 0.5 -2.78218032819 +UniRef50_A1A0Q3 ATP binding protein of ABC transporter for glutamate_aspartate 0.0283690874325 0.5 0.471630912568 +UniRef50_U6IFI6 Succinate dehydrogenase iron sulfur 0.214932640118 0.5 0.285067359882 +UniRef50_UPI0002FDF659 hypothetical protein 1.36574050105 0.500000000001 -0.865740501055 +UniRef50_A3M3T0 Merops peptidase family S24 0.021613933184 0.5 0.478386066816 +UniRef50_Q8XBL0 Pyridoxine kinase 1.83561427804 0.5 -1.33561427804 +UniRef50_I8G444 QmcA domain protein 1.55456373026 0.499999999999 -1.05456373026 +UniRef50_UPI00040A034C hypothetical protein 1.84233825284 0.5 -1.34233825284 +UniRef50_UPI00046A4743 hypothetical protein 0.0376800848895 0.5 0.46231991511 +UniRef50_D7GH22 Sugar phosphate isomerase epimerase 0.0177256778712 0.5 0.482274322129 +UniRef50_Q3HKP9 Capsule polysaccharide export protein 1.95347083534 0.500000000002 -1.45347083534 +UniRef50_G8WJH0 SD repeat containing cell surface protein 0.590001498496 0.5 -0.0900014984961 +UniRef50_M2IQZ0 0.489932869618 0.5 0.0100671303822 +UniRef50_UPI00036C3395 hypothetical protein 0.365076043425 0.5 0.134923956575 +UniRef50_B7V5N6 ATP dependent DNA helicase RecG 0.104690015 0.5 0.395309985 +UniRef50_UPI000467A2E7 hypothetical protein 0.501124818788 0.5 -0.00112481878809 +UniRef50_O25890 Chaperone protein DnaJ 0.0129768293508 0.5 0.487023170649 +UniRef50_UPI000370079F hypothetical protein 0.298404915133 0.5 0.201595084867 +UniRef50_A0A037YH66 UDP pyrophosphate phosphatase 0.235233685506 0.5 0.264766314494 +UniRef50_UPI00035FC7A0 hypothetical protein, partial 0.43973742987 0.5 0.0602625701298 +UniRef50_Z2DJY9 Membrane protein 2.77148795989 0.5 -2.27148795989 +UniRef50_Q2RRZ4 ABC transporter component 0.917270092989 0.5 -0.417270092989 +UniRef50_W0DT44 Phosphate starvation inducible E 0.759612850803 0.5 -0.259612850803 +UniRef50_UPI00016C3CBF tRNA pseudouridine synthase D 0.143170168792 0.5 0.356829831208 +UniRef50_P71243 Putative colanic acid biosynthesis glycosyltransferase WcaL 3.29088116373 0.5 -2.79088116373 +UniRef50_UPI0003B6E3CF 3 ketoacyl ACP reductase 0.172588474957 0.5 0.327411525044 +UniRef50_K1DU50 0.429140962563 0.5 0.0708590374367 +UniRef50_UPI0003ADCF18 PREDICTED 0.150869093329 0.5 0.349130906671 +UniRef50_C8S4J7 Rhodanese domain protein 0.0761135039706 0.5 0.423886496029 +UniRef50_Q6A9E9 Conserved protein DUF181 0.0500115807963 0.500000000001 0.449988419203 +UniRef50_Z4JX05 Aryl phospho beta D glucosidase BglA 4.04570310308 0.499999999999 -3.54570310308 +UniRef50_UPI00046D6223 hypothetical protein 0.00781983714657 0.5 0.492180162853 +UniRef50_K1YN95 0.19104388584 0.5 0.30895611416 +UniRef50_E2XQ21 Transcriptional regulator, GntR family 0.306363483606 0.5 0.193636516394 +UniRef50_G3Z0X9 0.180702066951 0.499999999999 0.319297933049 +UniRef50_D8HEX2 1.30606682502 0.5 -0.806066825024 +UniRef50_P45077 Metalloprotease PmbA homolog 0.865836598492 0.5 -0.365836598492 +UniRef50_B6ISJ0 Peptidase M20D, amidohydrolase, putative 1.6116029145 0.5 -1.1116029145 +UniRef50_D4TZ64 Tat pathway signal sequence domain protein 0.00338048774463 0.5 0.496619512255 +UniRef50_UPI0002EED4E0 hypothetical protein 0.0286188245773 0.5 0.471381175423 +UniRef50_Q7VDQ5 Imidazoleglycerol phosphate dehydratase 0.488613778382 0.5 0.0113862216183 +UniRef50_UPI00037AD56D hypothetical protein 0.62070594923 0.5 -0.12070594923 +UniRef50_V9U275 Two component hybrid sensor and regulator 1.03335947877 0.5 -0.533359478767 +UniRef50_UPI00033433B7 0.883648614238 0.5 -0.383648614238 +UniRef50_A5CXT4 Adenylate kinase 0.306098381217 0.5 0.193901618783 +UniRef50_Q65JY3 Phospho N acetylmuramoyl pentapeptide transferase 0.63292753238 0.5 -0.13292753238 +UniRef50_UPI0003650BE9 hypothetical protein 0.0655065407664 0.5 0.434493459234 +UniRef50_L7WTJ0 Lipase 1.52778644214 0.5 -1.02778644214 +UniRef50_A6LZ86 4Fe 4S ferredoxin, iron sulfur binding domain protein 1.51324309643 0.5 -1.01324309643 +UniRef50_P13522 Sucrose 6 phosphate hydrolase 0.379841020645 0.5 0.120158979355 +UniRef50_U4V9A4 2.01201858735 0.5 -1.51201858735 +UniRef50_U5MRD6 Glycosyl transferases group 1 0.252649945247 0.5 0.247350054753 +UniRef50_UPI000362B65E hypothetical protein 0.321252357206 0.5 0.178747642794 +UniRef50_O34527 HTH type transcriptional regulator CymR 0.873228487242 0.5 -0.373228487242 +UniRef50_R6AX85 0.318120751451 0.5 0.181879248549 +UniRef50_A7NI79 Thymidine kinase 0.098273500656 0.5 0.401726499344 +UniRef50_Q49UR2 0.29471661974 0.5 0.20528338026 +UniRef50_UPI0003F49ED6 hypothetical protein TREMEDRAFT_39067 0.201450818468 0.5 0.298549181532 +UniRef50_Q3JRJ0 0.684915883913 0.5 -0.184915883913 +UniRef50_A0A017TDI9 0.191801221363 0.5 0.308198778637 +UniRef50_U5RXJ0 ApbE family lipoprotein 0.141906888845 0.5 0.358093111155 +UniRef50_Q9KIP9 Putative tagatose 6 phosphate ketose aldose isomerase 3.70454860068 0.500000000002 -3.20454860068 +UniRef50_R4ZN50 Accessory secretory protein Asp1 0.219428047172 0.5 0.280571952828 +UniRef50_A7GMU8 Imidazole glycerol phosphate synthase subunit HisH 0.589877580686 0.5 -0.0898775806856 +UniRef50_F2A3T6 0.35070994395 0.5 0.14929005605 +UniRef50_F2A3T7 0.222655368369 0.5 0.277344631631 +UniRef50_F6G911 Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein 1.74883335248 0.5 -1.24883335248 +UniRef50_R6MA81 1.37447808737 0.5 -0.874478087371 +UniRef50_UPI0003A6077C MULTISPECIES 0.554652026592 0.5 -0.0546520265916 +UniRef50_G7M9L8 RNA polymerase sigma factor, sigma 70 family 0.0468688879594 0.5 0.453131112041 +UniRef50_UPI00037595E9 hypothetical protein 2.79229641047 0.5 -2.29229641047 +UniRef50_UPI00029AD5DC sugar acetyltransferase 0.258585007014 0.5 0.241414992986 +UniRef50_A8FSI3 Lipoprotein signal peptidase 0.192272296541 0.5 0.307727703459 +UniRef50_I6X4E6 0.0952458734642 0.5 0.404754126535 +UniRef50_Q7NKY2 Gll1344 protein 1.28150521961 0.5 -0.781505219613 +UniRef50_K2JVH5 2.48119741676 0.499999999999 -1.98119741676 +UniRef50_Q87IM1 Tryptophan synthase beta chain 2 0.670383615903 0.5 -0.170383615903 +UniRef50_UPI0003635E67 hypothetical protein 0.0029331207777 0.500000000001 0.497066879221 +UniRef50_D8HDF1 1.61025610332 0.5 -1.11025610332 +UniRef50_S9RXU2 Putative membrane protein 3.59516229728 0.499999999996 -3.09516229727 +UniRef50_F2AIM8 0.273464313004 0.5 0.226535686996 +UniRef50_M5DRE1 Diguanylate cyclase 0.0471853142143 0.5 0.452814685786 +UniRef50_L7WXF9 2.55886508916 0.499999999997 -2.05886508916 +UniRef50_A0A037V0H1 CRISPR associated protein Cas3 0.832530427349 0.5 -0.332530427349 +UniRef50_U5MZA5 Double stranded RNA RNA DNA hybrid binding protein 0.0559115468156 0.5 0.444088453184 +UniRef50_W1DV17 FIG001826 0.963920180546 0.5 -0.463920180546 +UniRef50_C4L8H9 Hydroxyethylthiazole kinase 0.450543747905 0.5 0.0494562520953 +UniRef50_Q82DT6 NADH quinone oxidoreductase subunit B 2 0.0353985123189 0.5 0.464601487681 +UniRef50_UPI000262CA63 phosphoglycolate phosphatase 0.25531877589 0.5 0.24468122411 +UniRef50_S5VB68 Extracellular solute binding protein family 1 1.14348976387 0.5 -0.643489763866 +UniRef50_UPI0004746364 ABC transporter ATP binding protein 0.927991923044 0.5 -0.427991923044 +UniRef50_UPI000470C654 hypothetical protein 0.897612555526 0.5 -0.397612555526 +UniRef50_UPI00046D6B42 hypothetical protein 0.072697723164 0.499999999999 0.427302276837 +UniRef50_UPI00046533A1 hypothetical protein 1.47699492631 0.5 -0.976994926305 +UniRef50_A3PS59 ATP synthase subunit beta 2 1.29156174414 0.5 -0.791561744138 +UniRef50_Q8TY90 50S ribosomal protein L3 0.7345989158 0.5 -0.2345989158 +UniRef50_X1CQ64 Marine sediment metagenome DNA, contig 0.133252391946 0.5 0.366747608054 +UniRef50_UPI0003B5E6F5 succinyl CoA 0.309167064001 0.5 0.190832935999 +UniRef50_Q2FC51 Beta lactamase regulatory protein 1.88036722396 0.5 -1.38036722396 +UniRef50_L9M7Y3 0.133783550616 0.5 0.366216449384 +UniRef50_W9GPH4 0.180888418581 0.5 0.319111581419 +UniRef50_Q1J961 Chromosome partitioning protein parB 1.34415979262 0.5 -0.844159792618 +UniRef50_O57979 Amidophosphoribosyltransferase 0.0708722827397 0.5 0.42912771726 +UniRef50_UPI00037A9112 hypothetical protein 3.19149563988 0.5 -2.69149563988 +UniRef50_W1K3B0 ABC transporter permease 0.779932972423 0.5 -0.279932972423 +UniRef50_Q46769 dTDP 4 dehydrorhamnose reductase 2.3269498849 0.5 -1.8269498849 +UniRef50_UPI000375C690 hypothetical protein 3.34727685818 0.500000000001 -2.84727685818 +UniRef50_G7M2K9 0.117834889556 0.5 0.382165110444 +UniRef50_W1JQY9 ABC transporter substrate binding protein 4.23929979944 0.500000000002 -3.73929979944 +UniRef50_B9KQ28 Short chain dehydrogenase reductase SDR 0.0952134822956 0.5 0.404786517704 +UniRef50_Q3IV86 Putative signal peptide protein 0.381068588876 0.5 0.118931411124 +UniRef50_B2IHW6 NADH quinone oxidoreductase subunit B 3.64909979411 0.499999999998 -3.14909979411 +UniRef50_E4R4C3 Phospholipid glycerol acyltransferase 1.64806338189 0.500000000002 -1.1480633819 +UniRef50_T5LAM1 0.158762337829 0.5 0.341237662171 +UniRef50_T1XT22 Amino acid permease, putative 1.47555473147 0.5 -0.975554731472 +UniRef50_UPI0003D746D3 PREDICTED 0.439432473136 0.5 0.0605675268644 +UniRef50_P12758 Uridine phosphorylase 3.07780743893 0.5 -2.57780743893 +UniRef50_T0T7N0 Methylenetetrahydrofolate reductase 1.18660372281 0.5 -0.686603722812 +UniRef50_UPI0003650C71 hypothetical protein 0.00380411486396 0.5 0.496195885136 +UniRef50_A6TH46 Thiol 2.28756926291 0.500000000001 -1.78756926291 +UniRef50_K8CFI0 0.0495636932673 0.5 0.450436306732 +UniRef50_A9BPL9 Alkylphosphonate utilization operon protein PhnA 0.416387869044 0.5 0.0836121309565 +UniRef50_B5EAA9 Repeat containing protein 0.0912850274042 0.5 0.408714972596 +UniRef50_C0YBF1 Bmlf1 0.0467869771483 0.5 0.453213022852 +UniRef50_Q4L4D1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.06407890081 0.5 -0.564078900811 +UniRef50_R9ZJX7 Membrane protein 2.37768238918 0.5 -1.87768238918 +UniRef50_UPI0004728032 hypothetical protein 0.716793097263 0.5 -0.216793097263 +UniRef50_K1UNJ2 0.362931612446 0.5 0.137068387554 +UniRef50_O31214 Ubiquinol cytochrome c reductase iron sulfur subunit 0.258033951098 0.5 0.241966048902 +UniRef50_F7Z135 Purine operon repressor, PurR 1.65191765179 0.500000000001 -1.1519176518 +UniRef50_UPI000360723E hypothetical protein 1.66060452722 0.5 -1.16060452722 +UniRef50_Q9CL21 ATP dependent DNA helicase RecQ 1.27028940339 0.5 -0.77028940339 +UniRef50_D4HDF7 Dihydroorotase 0.00641961673862 0.5 0.493580383261 +UniRef50_C5N054 Transcriptional regulator, GntR family 4.03553213596 0.499999999996 -3.53553213595 +UniRef50_UPI00036E9C27 hypothetical protein 0.448499279114 0.5 0.0515007208855 +UniRef50_A8L4W4 Periplasmic binding protein LacI transcriptional regulator 1.60291091886 0.5 -1.10291091886 +UniRef50_UPI0003084509 hypothetical protein 0.389812423459 0.5 0.110187576541 +UniRef50_B2TER4 Lipid A ABC exporter family, fused ATPase and inner membrane subunits 2.72578060927 0.5 -2.22578060927 +UniRef50_M7Y7A3 Gram positive signal peptide protein, YSIRK family 1.87173721302 0.499999999999 -1.37173721302 +UniRef50_B2UZX1 Medium FAD binding subunit of molybdenum enzyme 0.354082750168 0.5 0.145917249832 +UniRef50_Q5HPD3 1.60409731325 0.500000000001 -1.10409731325 +UniRef50_Q8VYF5 N carbamoylputrescine amidase 0.00748910311635 0.5 0.492510896884 +UniRef50_UPI0003B638F3 NADH quinone oxidoreductase subunit C 0.597016993511 0.5 -0.0970169935112 +UniRef50_UPI0001BF61FF hypothetical protein SMAC_10357, partial 0.141951170435 0.5 0.358048829565 +UniRef50_X4XF16 0.0970228393405 0.5 0.402977160659 +UniRef50_A7HVU8 UDP N acetylmuramate L alanine ligase 1.3099047195 0.5 -0.809904719501 +UniRef50_Q7MWU9 Holliday junction DNA helicase RuvB 0.546656218376 0.5 -0.0466562183763 +UniRef50_UPI0003498384 hypothetical protein 1.30256123058 0.5 -0.802561230578 +UniRef50_UPI000465F605 hypothetical protein 0.110191015129 0.5 0.389808984871 +UniRef50_A3CMZ0 Na+ driven multidrug efflux pump, putative 1.480537813 0.5 -0.980537813004 +UniRef50_Q8DVR0 Biofilm regulatory protein A 3.97187049346 0.5 -3.47187049346 +UniRef50_UPI00035C59AE hypothetical protein 0.288247806384 0.5 0.211752193616 +UniRef50_M1M0U2 0.102673778738 0.5 0.397326221262 +UniRef50_L0SNC2 Transketolase 0.771123500497 0.5 -0.271123500497 +UniRef50_F2JKB2 MATE efflux family protein 0.0460836169483 0.5 0.453916383051 +UniRef50_V0VWL0 1.11272075866 0.5 -0.612720758661 +UniRef50_J0I8Y3 1.39460291805 0.5 -0.894602918048 +UniRef50_Q8Y2K1 Macro domain containing protein RSc0334 0.0244277277519 0.5 0.475572272248 +UniRef50_UPI00037F821B MULTISPECIES 0.285333176145 0.5 0.214666823855 +UniRef50_UPI00047CF530 hypothetical protein 0.0482004107517 0.5 0.451799589249 +UniRef50_I7F2J7 0.231148573526 0.5 0.268851426474 +UniRef50_A0A023RS80 Peptidase 0.0101447755118 0.5 0.489855224488 +UniRef50_A0A022H2W5 ABC transporter 0.470086633656 0.5 0.0299133663443 +UniRef50_E6MXW1 0.0141764930593 0.5 0.485823506941 +UniRef50_S2JUV8 Cache sensor containing methyl accepting chemotaxis sensory transducer 0.1576048989 0.5 0.3423951011 +UniRef50_J9YQ34 Oligopeptide ABC transporter permease 3.15707618543 0.5 -2.65707618543 +UniRef50_C2MTH9 0.0835843443761 0.5 0.416415655624 +UniRef50_A6V0C7 Endoribonuclease YbeY 1.70455121082 0.5 -1.20455121082 +UniRef50_I6U028 Histidine kinase of the competence regulon, ComD 1.81373603396 0.5 -1.31373603396 +UniRef50_A5UN25 Adhesin like protein 2.02292008884 0.5 -1.52292008884 +UniRef50_W5X6E3 Dihydrodipicolinate synthetase 0.341749699912 0.5 0.158250300088 +UniRef50_A5UNS0 1.36690618107 0.5 -0.866906181069 +UniRef50_U5MUD4 0.225793717914 0.5 0.274206282085 +UniRef50_A6LXF6 Extracellular solute binding protein, family 3 0.15904987932 0.5 0.34095012068 +UniRef50_L7WW55 0.754820571816 0.5 -0.254820571816 +UniRef50_W4HNW2 1.2702240605 0.5 -0.770224060502 +UniRef50_Q326E0 1.67321196263 0.500000000001 -1.17321196263 +UniRef50_Q87VJ2 DNA mismatch repair protein MutL 0.274471891235 0.5 0.225528108765 +UniRef50_UPI000364E75E hypothetical protein 0.490813682631 0.5 0.00918631736871 +UniRef50_P76344 Metal binding protein ZinT 1.81739703471 0.5 -1.31739703471 +UniRef50_A6LZ35 Major facilitator superfamily MFS_1 0.253766630311 0.5 0.246233369689 +UniRef50_T1B713 Excinuclease ABC subunit C 1.94929253502 0.5 -1.44929253502 +UniRef50_A6QDY4 Phage major head protein 1.95991778638 0.499999999998 -1.45991778638 +UniRef50_T8P6W0 Glutathione regulated potassium efflux system protein kefC 0.64766623793 0.5 -0.14766623793 +UniRef50_A7IP37 1.54611943564 0.5 -1.04611943564 +UniRef50_UPI0002628657 carbon monoxide dehydrogenase 0.105851642491 0.5 0.394148357509 +UniRef50_P24255 RNA polymerase sigma 54 factor 1.62373670056 0.5 -1.12373670056 +UniRef50_G7MAG2 Integral membrane sensor signal transduction histidine kinase 0.226845548826 0.5 0.273154451174 +UniRef50_Q9RW34 0.000512059500783 0.499999999999 0.4994879405 +UniRef50_UPI00046F6D6F hypothetical protein, partial 1.53793776999 0.5 -1.03793776999 +UniRef50_Q3SJE0 Succinyl diaminopimelate desuccinylase 0.110235780518 0.5 0.389764219482 +UniRef50_I1ZJN7 0.206095192138 0.5 0.293904807862 +UniRef50_Q493N1 Siroheme synthase 0.110942349546 0.5 0.389057650454 +UniRef50_A6LYS9 Conserved repeat domain 0.346828708334 0.5 0.153171291666 +UniRef50_P52132 UPF0380 protein YfjQ 1.08271821065 0.5 -0.58271821065 +UniRef50_A0A023RU18 Cytochrome C assembly protein 0.0133769948321 0.5 0.486623005168 +UniRef50_P57090 Probable nicotinate nucleotide adenylyltransferase 0.00186399251643 0.5 0.498136007484 +UniRef50_R5DD38 0.696304137282 0.5 -0.196304137282 +UniRef50_X5E2G1 Transposase DDE domain protein 0.0082892654273 0.5 0.491710734573 +UniRef50_X8FIZ9 0.124861853083 0.5 0.375138146917 +UniRef50_A0A023XW63 0.738938431538 0.5 -0.238938431538 +UniRef50_UPI00037CE6B4 hypothetical protein 0.398329414612 0.5 0.101670585388 +UniRef50_L1NZC1 Peptidase, M61 family 0.0299851090611 0.5 0.470014890939 +UniRef50_H7CZ41 1.0391485518 0.5 -0.539148551803 +UniRef50_A0P4I0 BolA like protein 0.16839198383 0.5 0.33160801617 +UniRef50_O53871 Putative acyltransferase Rv0859 0.0808477541879 0.5 0.419152245812 +UniRef50_I0C833 1.0843258489 0.5 -0.584325848899 +UniRef50_P35484 Dihydrolipoyl dehydrogenase 0.504115176495 0.5 -0.00411517649546 +UniRef50_UPI000366F4F8 hypothetical protein 0.214161160044 0.5 0.285838839956 +UniRef50_G7MB49 Integral membrane sensor signal transduction histidine kinase 0.0568704614628 0.500000000001 0.443129538536 +UniRef50_F0MAK0 ABC type spermidine putrescine transport system, ATPase component 1.43394433915 0.5 -0.93394433915 +UniRef50_P45322 Molybdenum transport system permease protein ModB 0.611575822819 0.5 -0.111575822819 +UniRef50_Q6G9Y4 Phosphate acyltransferase 6.84927661148 0.49999999999 -6.34927661147 +UniRef50_A4VG13 D lactate dehydrogenase 0.0652144930155 0.5 0.434785506985 +UniRef50_UPI00036F21BD hypothetical protein 0.183517370404 0.5 0.316482629596 +UniRef50_I0DWZ9 0.492220563611 0.5 0.00777943638907 +UniRef50_K6CXP7 Hemolysin type calcium binding region 3.42478753072 0.500000000001 -2.92478753072 +UniRef50_UPI0003C7E79E phosphoprotein phosphatase 0.319445108471 0.5 0.180554891529 +UniRef50_Q4FP60 0.226441639717 0.5 0.273558360283 +UniRef50_Q5HP10 5.3248367025 0.499999999999 -4.8248367025 +UniRef50_D7N6D8 Cysteine desulfurase ATPase component domain protein 0.179252495129 0.5 0.320747504871 +UniRef50_UPI0002D4A249 hypothetical protein 0.800516653008 0.5 -0.300516653008 +UniRef50_I4ES52 0.00796119855131 0.5 0.492038801449 +UniRef50_O06458 Trehalose synthase 0.153383896539 0.500000000001 0.34661610346 +UniRef50_A0A024HWE9 0.466483918875 0.5 0.033516081125 +UniRef50_D7I534 Acyl CoA thioesterase II 0.982706789589 0.5 -0.482706789589 +UniRef50_K7UZS6 0.183759657049 0.5 0.316240342951 +UniRef50_F5M3N6 Phospholipase D transphosphatidylase 1.18923950956 0.499999999999 -0.68923950956 +UniRef50_V6ACD4 Peptidase M14, carboxypeptidase A 0.553315406086 0.5 -0.0533154060863 +UniRef50_A5WCY2 FAD linked oxidase domain protein 0.0444314839963 0.5 0.455568516004 +UniRef50_A0A009IP40 SnoaL like domain protein 1.33038933613 0.499999999999 -0.830389336129 +UniRef50_R6FR88 Two component system response regulator 0.777641494994 0.5 -0.277641494994 +UniRef50_UPI00035F4A59 hypothetical protein 0.806557897494 0.5 -0.306557897494 +UniRef50_K8WUE9 Phosphomethylpyrimidine synthase ThiC 0.112981910978 0.5 0.387018089022 +UniRef50_Q9RU56 Osmotically inducible protein C 0.00332457474331 0.5 0.496675425257 +UniRef50_UPI00047D8829 erythrose 4 phosphate dehydrogenase 0.358287036098 0.5 0.141712963902 +UniRef50_D3QEY2 4 phosphopantetheinyl transferase 1.07735424981 0.5 -0.577354249806 +UniRef50_R6M7U0 Transporter major facilitator family protein 0.0184602158438 0.5 0.481539784156 +UniRef50_UPI00016A29CB hypothetical protein 0.535759094037 0.5 -0.0357590940368 +UniRef50_K2JWT8 0.617964043223 0.5 -0.117964043223 +UniRef50_Q5WE91 Acetoin dehydrogenase E1 component beta subunit 3.14797051305 0.5 -2.64797051305 +UniRef50_UPI00031ABCD6 hypothetical protein 3.56254684673 0.499999999998 -3.06254684672 +UniRef50_Q2P3Y4 Serine tRNA ligase 0.922755533305 0.5 -0.422755533305 +UniRef50_UPI0003AE0E87 PREDICTED 0.178678829431 0.5 0.321321170569 +UniRef50_S6AS82 0.0642596083037 0.5 0.435740391696 +UniRef50_A7ZP69 Nucleoside triphosphatase NudI 0.194588702934 0.5 0.305411297066 +UniRef50_G7M113 Stage III sporulation protein AE 0.13498902243 0.5 0.36501097757 +UniRef50_Q5QW41 1.30806953571 0.5 -0.808069535707 +UniRef50_E0D539 Transposase, putative 0.0642457070306 0.5 0.435754292969 +UniRef50_I8RAB7 Bifunctional protein 0.54835356037 0.5 -0.0483535603703 +UniRef50_F4PKU5 GTP binding protein 0.144563183948 0.5 0.355436816051 +UniRef50_B9AFH2 Polymorphic outer membrane protein repeat (Fragment) 3.73729367566 0.5 -3.23729367566 +UniRef50_Q9FBM1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.0327391973829 0.5 0.467260802617 +UniRef50_P40747 0.167337385426 0.5 0.332662614573 +UniRef50_UPI00037F886D hypothetical protein, partial 0.0765544329311 0.5 0.423445567069 +UniRef50_Q98C76 Mlr5266 protein 2.4000834194 0.5 -1.9000834194 +UniRef50_UPI0003A068C7 sodium hydrogen exchanger 0.205276463596 0.5 0.294723536404 +UniRef50_S5XZ35 N carbamoyl L amino acid hydrolase 1.99399223414 0.5 -1.49399223414 +UniRef50_UPI0003EDBEBD PREDICTED 0.226724760189 0.5 0.273275239811 +UniRef50_K0TM35 0.0594874313907 0.5 0.440512568609 +UniRef50_A6LYV0 Response regulator receiver protein 0.441775941761 0.5 0.0582240582388 +UniRef50_S3MI44 Major facilitator superfamily transporter 0.337573266414 0.5 0.162426733586 +UniRef50_A5IQJ9 0.887629042704 0.5 -0.387629042704 +UniRef50_UPI0004675A7A thymidylate synthase 0.0617145583993 0.5 0.438285441601 +UniRef50_F5X1D7 Polysaccharide deacetylase family protein 1.19006515761 0.5 -0.690065157607 +UniRef50_Q97F65 Thymidine kinase 0.284692730627 0.5 0.215307269373 +UniRef50_G8VF81 0.00987336243817 0.5 0.490126637562 +UniRef50_B5FTN1 D amino acid dehydrogenase small subunit 1.30534458266 0.5 -0.805344582663 +UniRef50_P0DD00 Peptidase T 0.00426764337243 0.5 0.495732356628 +UniRef50_X1XX47 0.406803949993 0.5 0.093196050007 +UniRef50_Q6FD39 Bifunctional protein 0.00871344935199 0.5 0.491286550648 +UniRef50_Q2LTM3 Phosphopantothenoylcysteine decarboxylase phosphopantothenate cysteine ligase 1.44093856153 0.499999999998 -0.940938561533 +UniRef50_P0ACB2 Delta aminolevulinic acid dehydratase 1.63095141878 0.5 -1.13095141878 +UniRef50_A5V3T8 Homoserine O succinyltransferase 1.18375461502 0.5 -0.683754615017 +UniRef50_UPI0003B3EBD2 MarR family transcriptional regulator 0.138669909124 0.5 0.361330090876 +UniRef50_UPI0004410872 NAD binding protein 0.518221284892 0.5 -0.0182212848917 +UniRef50_Q9HQC9 Uridine kinase 0.00810800920678 0.5 0.491891990793 +UniRef50_G8MW75 0.086988823166 0.5 0.413011176834 +UniRef50_P37941 2 oxoisovalerate dehydrogenase subunit beta 1.0384538152 0.5 -0.538453815196 +UniRef50_UPI0003B580E0 NADH quinone oxidoreductase subunit N 0.744910923862 0.5 -0.244910923862 +UniRef50_B1T5I2 0.197355603034 0.5 0.302644396966 +UniRef50_P74089 Serine acetyltransferase 0.171485181936 0.5 0.328514818064 +UniRef50_A5IUL9 Membrane flanked domain 2.40953438989 0.5 -1.90953438989 +UniRef50_A9HYE8 Fumarate reductase iron sulfur protein 2.36507732935 0.5 -1.86507732935 +UniRef50_Q5KX81 Octanoyltransferase LipM 3.136414079 0.5 -2.636414079 +UniRef50_Q4L855 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.29212004672 0.499999999999 -1.79212004672 +UniRef50_A0A052JJE9 PF04304 family protein 0.280913599266 0.5 0.219086400734 +UniRef50_UPI0004790305 hypothetical protein 0.823042702409 0.5 -0.323042702409 +UniRef50_P0AEW8 Inosine guanosine kinase 3.95634341721 0.499999999999 -3.45634341721 +UniRef50_U6AE90 Iron siderophore receptor protein 0.599402685316 0.5 -0.0994026853162 +UniRef50_UPI00037FD430 hypothetical protein 0.409738377765 0.5 0.0902616222349 +UniRef50_I3ZB99 Anti anti sigma regulatory factor 0.00393493974384 0.5 0.496065060256 +UniRef50_X7FC63 DNA topology modulation protein FlaR 0.0826589728906 0.5 0.417341027109 +UniRef50_K7RWS7 UTP hexose 1 phosphate uridylyltransferase 0.00675422311805 0.5 0.493245776882 +UniRef50_UPI00038EEF34 PREDICTED 0.320044288783 0.5 0.179955711217 +UniRef50_P33226 Cytochrome c type protein TorC 2.30189169287 0.500000000002 -1.80189169287 +UniRef50_F4A9P0 0.609819957021 0.5 -0.109819957021 +UniRef50_A0A024E2H8 0.33867239837 0.5 0.16132760163 +UniRef50_K0SEA3 5.13236488182 0.499999999999 -4.63236488182 +UniRef50_UPI00047DC367 hypothetical protein 4.62465831474 0.499999999995 -4.12465831473 +UniRef50_UPI0004636621 LysR family transcriptional regulator 0.90222031577 0.5 -0.40222031577 +UniRef50_E6MWP3 Ribonuclease R 0.105190102635 0.5 0.394809897365 +UniRef50_Q5LLN0 Maf like protein SPO3892 1.08571082657 0.5 -0.585710826568 +UniRef50_A0A025DCK3 1.47720931527 0.5 -0.977209315272 +UniRef50_C1FNN6 Xanthine uracil permease family protein 0.157512506346 0.5 0.342487493654 +UniRef50_Q9K1B0 NADH quinone oxidoreductase subunit L 0.026321682876 0.5 0.473678317124 +UniRef50_UPI0004784A1B hypothetical protein 0.580833605326 0.5 -0.0808336053257 +UniRef50_UPI00046D54E5 hypothetical protein 0.676612462683 0.5 -0.176612462683 +UniRef50_D3QF80 Teichoic acid biosynthesis protein X 1.99990024413 0.5 -1.49990024413 +UniRef50_V6UWS0 0.239726368105 0.5 0.260273631895 +UniRef50_UPI00037F4484 ADP ribose pyrophosphatase 0.194289850007 0.5 0.305710149993 +UniRef50_I6Y6R6 FAD containing monooxygenase EthA 0.00182072272424 0.500000000001 0.498179277275 +UniRef50_UPI000464816A hypothetical protein 0.95640834662 0.5 -0.45640834662 +UniRef50_UPI0003099314 hypothetical protein 0.302703691864 0.5 0.197296308136 +UniRef50_C7NK94 Molybdopterin guanine dinucleotide biosynthesis protein A 0.154902294239 0.5 0.345097705761 +UniRef50_Q5GT42 NADH quinone oxidoreductase subunit C 0.296892534539 0.5 0.203107465461 +UniRef50_B9DPC0 DNA mismatch repair protein MutL 1.49961173852 0.5 -0.999611738523 +UniRef50_B7VH15 8 amino 7 oxononanoate synthase 0.360779904828 0.5 0.139220095172 +UniRef50_B0V8Y0 0.0213585770049 0.5 0.478641422995 +UniRef50_C6SRM3 0.960740037491 0.5 -0.460740037491 +UniRef50_UPI00038126DC hypothetical protein 1.87326269851 0.5 -1.37326269851 +UniRef50_Q1CRC0 DNA helicase II 0.010108229733 0.5 0.489891770267 +UniRef50_H3XJS2 HsdM N terminal domain protein 0.310646418588 0.5 0.189353581412 +UniRef50_A5WEV0 Serine O acetyltransferase 0.953822693835 0.5 -0.453822693835 +UniRef50_Q2RMV4 Peptidyl tRNA hydrolase 1.04500734636 0.5 -0.545007346363 +UniRef50_Q8CMP5 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.57580777883 0.500000000002 -2.07580777883 +UniRef50_B6IRZ1 Phospholipase D 2.53271253356 0.499999999999 -2.03271253356 +UniRef50_Q0I1I7 tRNA tmRNA ) methyltransferase 0.318886138903 0.5 0.181113861097 +UniRef50_M2HS82 N acetylmuramoyl L alanine amidase 2.32725462946 0.5 -1.82725462946 +UniRef50_A3PKI1 NADH quinone oxidoreductase subunit B 2 1.93048109546 0.5 -1.43048109546 +UniRef50_U3T6X0 0.00842209595542 0.5 0.491577904045 +UniRef50_UPI00047861DB hypothetical protein 0.00923324074152 0.5 0.490766759258 +UniRef50_UPI000379BC38 hypothetical protein 0.229804687019 0.5 0.270195312981 +UniRef50_UPI00030F43CB hypothetical protein 1.68011659896 0.500000000002 -1.18011659896 +UniRef50_F8HCR3 Pyrimidine nucleoside phosphorylase 3.95628827659 0.500000000002 -3.45628827659 +UniRef50_Q2NIS4 Uridylate kinase 0.507756992292 0.5 -0.00775699229154 +UniRef50_Q51697 Isoquinoline 1 oxidoreductase subunit alpha 0.263737907557 0.5 0.236262092443 +UniRef50_UPI0002896149 penicillin binding protein 2B 0.173786285902 0.5 0.326213714098 +UniRef50_L8BQX8 0.00814974960555 0.500000000001 0.491850250394 +UniRef50_A5UJP8 Adhesin like protein 1.83067723925 0.500000000001 -1.33067723925 +UniRef50_Q2YSH2 1.48512008501 0.5 -0.98512008501 +UniRef50_K0RL16 3.5768371761 0.499999999997 -3.0768371761 +UniRef50_P09772 Nitrogenase molybdenum iron protein beta chain 1.80166665826 0.499999999999 -1.30166665826 +UniRef50_A4YC85 Protoheme IX farnesyltransferase 2 0.270616387296 0.5 0.229383612704 +UniRef50_UPI0003696809 hypothetical protein 0.919366938149 0.5 -0.419366938149 +UniRef50_UPI00035C30D5 hypothetical protein 0.0835257099666 0.5 0.416474290033 +UniRef50_R4VP47 Twin arginine translocation pathway signal 2.39109447381 0.5 -1.89109447381 +UniRef50_W5X7K8 Polyribonucleotide nucleotidyltransferase 4.19423407897 0.5 -3.69423407897 +UniRef50_P0AGG9 Metalloprotease TldD 2.37659835397 0.499999999998 -1.87659835396 +UniRef50_E4NBU8 0.367737072912 0.5 0.132262927088 +UniRef50_UPI000367E778 hypothetical protein 0.306007953788 0.5 0.193992046212 +UniRef50_W8RNL3 0.272074502013 0.5 0.227925497987 +UniRef50_Q8PGP9 Proline tRNA ligase 0.224924811995 0.5 0.275075188005 +UniRef50_A4E7N7 0.0223681314485 0.5 0.477631868552 +UniRef50_UPI00047E0F2D hypothetical protein 1.45717886332 0.5 -0.957178863319 +UniRef50_P75863 1.27207076971 0.5 -0.772070769714 +UniRef50_UPI0000379EF0 hypothetical protein 0.684531516643 0.5 -0.184531516643 +UniRef50_B7UM47 Nucleoid occlusion factor SlmA 2.70411808407 0.499999999999 -2.20411808407 +UniRef50_Q8VQ99 Serine rich adhesin for platelets 2.17343419398 0.499999999998 -1.67343419398 +UniRef50_UPI000472F1A4 AsnC family transcriptional regulator, partial 1.13323148438 0.499999999999 -0.633231484381 +UniRef50_P37567 Probable tRNA dihydrouridine synthase 1 1.42079168649 0.499999999999 -0.920791686493 +UniRef50_A0A024H9L1 Short chain dehydrogenase 1.37637504381 0.5 -0.876375043814 +UniRef50_Q9HVL0 UPF0114 protein PA4574 0.534681120897 0.5 -0.0346811208972 +UniRef50_A5W6U4 NAD kinase 0.0740611191161 0.5 0.425938880884 +UniRef50_A8WXW9 Protein CBG04553 0.00341396973748 0.5 0.496586030263 +UniRef50_UPI000470F5F1 indole 3 glycerol phosphate synthase 0.41347032284 0.5 0.0865296771602 +UniRef50_B2HWA5 0.0914483552098 0.5 0.40855164479 +UniRef50_Q02151 1.5234291888 0.5 -1.0234291888 +UniRef50_Q3JHC8 0.154262247821 0.5 0.345737752179 +UniRef50_F4JP46 Formyltetrahydrofolate deformylase 2, mitochondrial 0.0934671871454 0.5 0.406532812855 +UniRef50_Q3JQU1 1.13862436688 0.5 -0.638624366875 +UniRef50_P58381 Enoyl [acyl carrier protein] reductase [NADH] 2 3.23879490634 0.500000000003 -2.73879490634 +UniRef50_P37560 2.50036984385 0.499999999998 -2.00036984385 +UniRef50_A7BEA1 0.0248318983179 0.5 0.475168101682 +UniRef50_R5E7A9 Extracellular ligand binding receptor 0.0454827767133 0.5 0.454517223287 +UniRef50_Q9RRM5 Transport protein, putative 0.00138343561282 0.5 0.498616564387 +UniRef50_I0GP22 0.0300769352899 0.5 0.46992306471 +UniRef50_UPI000467D29B translation initiation factor IF 3 0.412545214461 0.5 0.0874547855392 +UniRef50_Q8D2L3 Fumarate hydratase class II 0.111000111545 0.5 0.388999888455 +UniRef50_B8DP86 Ribosomal RNA small subunit methyltransferase H 0.0923811488061 0.5 0.407618851194 +UniRef50_P45625 1.56323934228 0.5 -1.06323934228 +UniRef50_UPI00035FFFC6 hypothetical protein 0.34440831735 0.5 0.15559168265 +UniRef50_UPI000329D7B6 1.85832415257 0.499999999999 -1.35832415257 +UniRef50_G8XAZ1 Nitrate nitrite antiporter 0.135170389225 0.5 0.364829610775 +UniRef50_A0A024L3K6 Fimbrial biogenesis outer membrane usher protein 0.706185175584 0.5 -0.206185175584 +UniRef50_UPI0004623CA1 hypothetical protein TRAVEDRAFT_50483 0.638140626619 0.5 -0.138140626619 +UniRef50_V6ECI2 Dihydroxy acid dehydratase 1.2784482712 0.5 -0.778448271198 +UniRef50_A0A039PB00 Integral membrane protein 0.706786464342 0.5 -0.206786464342 +UniRef50_D3E2D1 Fumarate hydratase FumA3 3.9548966286 0.499999999998 -3.4548966286 +UniRef50_O33518 Protein translocase subunit SecF 1.9435046032 0.500000000002 -1.4435046032 +UniRef50_Q3KIA5 Protein RnfH 0.204096624886 0.5 0.295903375114 +UniRef50_UPI00037B6FC9 hypothetical protein 1.66603530727 0.5 -1.16603530727 +UniRef50_O27572 Probable tRNA pseudouridine synthase D 3.69742021914 0.500000000002 -3.19742021915 +UniRef50_P24891 Cytochrome c oxidase subunit 3 0.243839467047 0.5 0.256160532953 +UniRef50_C7MF62 Alpha L fucosidase 0.0372908824198 0.5 0.46270911758 +UniRef50_I4E0F8 1.59280587882 0.5 -1.09280587882 +UniRef50_UPI00021931F3 amino acid adenylation protein 1.45185145231 0.500000000001 -0.951851452315 +UniRef50_A5IUD1 5.18034675954 0.499999999999 -4.68034675954 +UniRef50_R9TX51 YlmE 1.34807507761 0.5 -0.848075077609 +UniRef50_B5Y1Z5 Protein ApaG 8.33016132777 0.500000000001 -7.83016132777 +UniRef50_E8QVJ8 Molybdenum ABC transporter ModA 0.868910381656 0.5 -0.368910381656 +UniRef50_U4KGU9 Toluene tolerance protein Ttg2B 2.53913980699 0.500000000002 -2.03913980699 +UniRef50_UPI00042B69C5 Translation initiation factor 3 protein isoform 4, partial 1.2499237804 0.5 -0.7499237804 +UniRef50_UPI000416FC07 ADP ribose pyrophosphatase 0.0084683864901 0.5 0.491531613509 +UniRef50_C5Q752 1.10738452435 0.5 -0.607384524347 +UniRef50_UPI0003815DCD hypothetical protein 0.917832995176 0.5 -0.417832995176 +UniRef50_UPI000362D4DF hypothetical protein 0.413131883659 0.5 0.0868681163415 +UniRef50_P9WP46 Carbon starvation protein A homolog 0.0190826214606 0.5 0.48091737854 +UniRef50_Q5NP61 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.144182201791 0.5 0.355817798209 +UniRef50_UPI00046F7845 hypothetical protein 0.700525220201 0.5 -0.200525220201 +UniRef50_F2D112 Predicted protein 0.301877299095 0.5 0.198122700905 +UniRef50_Q3J4J9 Ribonuclease E 2.34266150431 0.5 -1.84266150431 +UniRef50_P59399 Histidinol dehydrogenase 0.340208381883 0.5 0.159791618117 +UniRef50_W5BPL1 1.823023955 0.5 -1.323023955 +UniRef50_UPI0004738B2C hypothetical protein 0.441096064082 0.5 0.0589039359177 +UniRef50_K4QBP0 K12555 penicillin binding protein 2A 0.748916087311 0.5 -0.248916087311 +UniRef50_UPI00030CFAAF hypothetical protein 0.0210188008467 0.5 0.478981199153 +UniRef50_J1B0P3 0.65025476385 0.5 -0.15025476385 +UniRef50_UPI0003B4DEC2 DNA gyrase subunit B 0.183374387772 0.5 0.316625612228 +UniRef50_O34384 0.00180337011937 0.5 0.498196629881 +UniRef50_Q8DT90 Ribonuclease Z 0.915120171299 0.5 -0.415120171299 +UniRef50_A9WMF4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0255340296341 0.5 0.474465970366 +UniRef50_A8J8D8 Predicted protein 0.753675446903 0.5 -0.253675446903 +UniRef50_Q2YI45 Streptokinase like protein 0.287096772271 0.5 0.212903227729 +UniRef50_Q1GHZ2 GTPase Der 4.94528418513 0.5 -4.44528418513 +UniRef50_Q6GIW1 UPF0178 protein SAR0734 0.77083621654 0.5 -0.27083621654 +UniRef50_Q1R9Q5 0.4964718271 0.5 0.00352817289955 +UniRef50_A3UXL8 0.0300842061048 0.5 0.469915793895 +UniRef50_R6QI78 RpiR family Helix turn helix domain containing protein 0.865942523169 0.5 -0.365942523169 +UniRef50_D3E0Y1 Thymidylate synthase ThyA 3.96702727348 0.499999999999 -3.46702727348 +UniRef50_A7X5Z9 Ferredoxin NADP reductase 1.76827521559 0.500000000002 -1.26827521559 +UniRef50_Q83H92 Uroporphyrinogen decarboxylase 0.296817225408 0.5 0.203182774592 +UniRef50_UPI0004786744 hypothetical protein 0.0284557710907 0.5 0.471544228909 +UniRef50_Q3JVX1 0.515189284562 0.5 -0.0151892845617 +UniRef50_P44324 Aspartate ammonia lyase 0.00044196463793 0.5 0.499558035362 +UniRef50_C5YPR8 1.88404132595 0.5 -1.38404132595 +UniRef50_B2ZY73 0.0118515030057 0.5 0.488148496994 +UniRef50_P0AGC1 Hexose phosphate transport protein 2.04758398567 0.499999999998 -1.54758398567 +UniRef50_UPI0001FFF263 putative enterobactin iron transport system, ATP binding protein 0.00686771042238 0.5 0.493132289578 +UniRef50_A3M517 0.0374843679229 0.5 0.462515632077 +UniRef50_B1K7T3 Two component transcriptional regulator, LuxR family 1.11582148391 0.5 -0.615821483909 +UniRef50_B0T202 UPF0386 protein Caul_4643 3.88896083334 0.5 -3.38896083334 +UniRef50_T1B6U2 2.78484287747 0.500000000003 -2.28484287748 +UniRef50_A8TBH7 0.614267376729 0.5 -0.114267376729 +UniRef50_F3L3B7 0.00203569940294 0.5 0.497964300597 +UniRef50_Q1IXV7 UDP N acetylenolpyruvoylglucosamine reductase 0.00780954843293 0.5 0.492190451567 +UniRef50_A8TBH9 0.614412286399 0.5 -0.114412286399 +UniRef50_Q8DEZ6 Dual specificity RNA methyltransferase RlmN 0.484013309067 0.5 0.0159866909327 +UniRef50_T1DG32 Phosphoribosylformylglycinamidine synthase 0.330112063439 0.5 0.169887936561 +UniRef50_I3XA84 0.13606081758 0.5 0.36393918242 +UniRef50_UPI0004655A42 MULTISPECIES 0.161155580166 0.5 0.338844419834 +UniRef50_M3BXT0 DNA polymerase II large subunit 0.247865748501 0.5 0.252134251499 +UniRef50_A8LRN8 185.959307351 0.49999999998 -185.459307351 +UniRef50_P65098 Isocitrate dehydrogenase [NADP] 0.11701431008 0.5 0.38298568992 +UniRef50_UPI00036FD78D hypothetical protein 1.11850045578 0.5 -0.61850045578 +UniRef50_J0FJU8 0.933207616708 0.5 -0.433207616708 +UniRef50_X6EJ38 1.789732743 0.5 -1.289732743 +UniRef50_F7X313 1.70824256329 0.499999999998 -1.20824256329 +UniRef50_V9VVH8 Flagellar protein FlgJ 0.909706524684 0.5 -0.409706524684 +UniRef50_C5BY82 Glutamate racemase 0.00741556548576 0.5 0.492584434514 +UniRef50_H1LKH2 1.87764238877 0.5 -1.37764238877 +UniRef50_F7X315 0.976539430307 0.5 -0.476539430307 +UniRef50_UPI0003B4E9FE membrane protein, partial 0.155481538311 0.5 0.344518461689 +UniRef50_I4KLM3 Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein 0.160875496701 0.5 0.339124503299 +UniRef50_F8GY06 Endoribonuclease L PSP 10.1603942709 0.500000000003 -9.66039427092 +UniRef50_G7M214 Pyruvate, water dikinase 0.177917044133 0.5 0.322082955867 +UniRef50_UPI000471162E hypothetical protein 0.161250163813 0.5 0.338749836187 +UniRef50_UPI000400283D hypothetical protein 0.650483354335 0.5 -0.150483354335 +UniRef50_L7WWZ3 0.660326316487 0.5 -0.160326316487 +UniRef50_UPI0004651131 hypothetical protein 0.385196204795 0.5 0.114803795205 +UniRef50_Z5LDC7 0.302048740708 0.5 0.197951259292 +UniRef50_Q2YUU9 Superoxide dismutase [Mn Fe] 2 1.16010907173 0.5 -0.660109071733 +UniRef50_B6IVA8 6.23476425297 0.500000000002 -5.73476425297 +UniRef50_P77307 Probable iron export permease protein FetB 0.846694031577 0.5 -0.346694031577 +UniRef50_UPI00047CBBFB 2 amino 4 ketopentanoate thiolase 0.357732163302 0.5 0.142267836698 +UniRef50_M9VDV1 ComE operon protein 1 0.082391020361 0.5 0.417608979639 +UniRef50_A0A023WVI0 Aldehyde dehydrogenase 0.349788229782 0.5 0.150211770218 +UniRef50_L8GN65 0.00810387675175 0.5 0.491896123248 +UniRef50_W4U756 Helicase 0.0111042045781 0.5 0.488895795422 +UniRef50_R7PWJ9 Glycosyl transferase group 1 family 0.928566118606 0.5 -0.428566118606 +UniRef50_U6ACI3 0.164592809141 0.5 0.335407190858 +UniRef50_P15505 Glycine dehydrogenase , mitochondrial 0.381497868883 0.5 0.118502131117 +UniRef50_X1P9R1 Marine sediment metagenome DNA, contig 0.0260569572459 0.5 0.473943042754 +UniRef50_UPI0004655CAA hypothetical protein 3.35412798685 0.5 -2.85412798685 +UniRef50_F4LAH5 0.38793624856 0.5 0.11206375144 +UniRef50_Q9HYL3 Regulatory protein NosR 1.13503925991 0.5 -0.635039259915 +UniRef50_UPI0003621B43 hypothetical protein, partial 0.813049146139 0.5 -0.313049146139 +UniRef50_F4C7A6 1.56573783214 0.5 -1.06573783214 +UniRef50_A0A058SUW3 Aminopeptidase N 1.12533700516 0.5 -0.625337005165 +UniRef50_C1KYE1 UPF0145 protein Lm4b_00206 0.0481942299732 0.5 0.451805770027 +UniRef50_X1HW00 Marine sediment metagenome DNA, contig 0.361892529555 0.5 0.138107470445 +UniRef50_UPI0004240D5A deoxyguanosinetriphosphate triphosphohydrolase 1.7032747225 0.5 -1.2032747225 +UniRef50_Q7VSF4 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.863142632951 0.5 -0.363142632951 +UniRef50_P0AFM7 Phage shock protein A 1.64308373211 0.5 -1.14308373211 +UniRef50_D9RI97 KAP family P loop domain 0.773243969208 0.5 -0.273243969208 +UniRef50_P95676 Alpha acetolactate decarboxylase 0.546013506198 0.5 -0.0460135061976 +UniRef50_Q5HLB9 15.0888242876 0.5 -14.5888242876 +UniRef50_P0ACN9 HTH type transcriptional repressor CytR 2.19765520319 0.5 -1.69765520319 +UniRef50_UPI0002899BE2 LysR family transcriptional regulator 0.0476471188767 0.5 0.452352881123 +UniRef50_I0C253 Arginine permease 2.21081228177 0.5 -1.71081228177 +UniRef50_I6TND0 18.0191317083 0.500000000006 -17.5191317083 +UniRef50_D2VJL9 Predicted protein 0.0839326315874 0.5 0.416067368412 +UniRef50_B5FI46 Ribulokinase 1.89916635036 0.499999999999 -1.39916635036 +UniRef50_F6AE19 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.631778473605 0.5 -0.131778473605 +UniRef50_UPI00046A2ACC hypothetical protein 0.736070568315 0.5 -0.236070568315 +UniRef50_R7E993 ABC transporter ATP binding protein 0.0225559142055 0.5 0.477444085795 +UniRef50_UPI0002625F3E inner membrane translocator 1.59063905787 0.500000000001 -1.09063905787 +UniRef50_UPI00034F3E03 PREDICTED 0.212954421905 0.5 0.287045578095 +UniRef50_K2ET09 2.94572799347 0.500000000001 -2.44572799347 +UniRef50_G8VFU9 0.0150135238748 0.5 0.484986476125 +UniRef50_A5UMD6 Imidazole glycerol phosphate synthase subunit HisH 4.23206330817 0.500000000001 -3.73206330817 +UniRef50_E8JET5 1.6583473084 0.5 -1.1583473084 +UniRef50_UPI0004767186 tyrosine protein kinase 0.20676231223 0.5 0.29323768777 +UniRef50_F0YJ58 0.185801528152 0.5 0.314198471848 +UniRef50_UPI00046523D9 LuxR family transcriptional regulator 0.0618400093855 0.5 0.438159990614 +UniRef50_UPI000479578E dTDP 4 dehydrorhamnose 3,5 epimerase 0.706549597513 0.5 -0.206549597513 +UniRef50_A6LTH3 Phosphotransferase system PTS, lactose cellobiose specific IIA subunit 0.281213070875 0.5 0.218786929125 +UniRef50_UPI0000F2F50C glutamyl Q tRNA ligase 0.0158654012384 0.5 0.484134598762 +UniRef50_UPI0001D2EE73 RNA polymerase, sigma 24 subunit, ECF subfamily 7.61221084831 0.499999999993 -7.1122108483 +UniRef50_N0C910 IS3 Spn1, transposase 0.873982581731 0.5 -0.373982581731 +UniRef50_Q8DWS9 Membrane protein, putative 89.5047250242 0.499999999967 -89.0047250242 +UniRef50_A9BQJ1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.898620822589 0.5 -0.398620822589 +UniRef50_O66937 4 alpha glucanotransferase 0.0049475832586 0.5 0.495052416741 +UniRef50_A6FVX6 Transcriptional regulator, MarR family protein 0.111351405849 0.5 0.388648594151 +UniRef50_UPI00047CC502 hypothetical protein 0.358586534501 0.5 0.141413465499 +UniRef50_Q3IVA9 Transcriptional regulator, LacI family 0.328743075273 0.5 0.171256924727 +UniRef50_B8EMC6 40 residue YVTN family beta propeller repeat protein 0.291105176845 0.5 0.208894823155 +UniRef50_D8GUE2 Predicted transcriptional regulator, marR family 0.536235044256 0.5 -0.0362350442559 +UniRef50_O22514 Proline rich protein 2.27802866622 0.5 -1.77802866622 +UniRef50_U7G864 0.345436422766 0.5 0.154563577234 +UniRef50_E0SFZ4 Cobalamin synthesis protein 0.401503040918 0.5 0.0984969590819 +UniRef50_Q9JVX8 DNA polymerase III subunit alpha 0.00491097220148 0.5 0.495089027798 +UniRef50_P54388 NADP specific glutamate dehydrogenase 0.0161793351766 0.5 0.483820664823 +UniRef50_W1U3S2 0.0515493879848 0.5 0.448450612015 +UniRef50_M7XCW4 Sodium 0.322091719509 0.5 0.177908280491 +UniRef50_UPI0003B534E7 50S ribosomal protein L33 0.251751960393 0.5 0.248248039607 +UniRef50_UPI00046CEEB8 hypothetical protein 1.39959314638 0.5 -0.899593146382 +UniRef50_UPI00016C3E34 30S ribosomal protein S4 0.112274450627 0.5 0.387725549372 +UniRef50_Q5HRX0 0.926798715325 0.5 -0.426798715325 +UniRef50_UPI0003608953 hypothetical protein 0.196900560974 0.5 0.303099439026 +UniRef50_M1F771 0.576999128168 0.5 -0.0769991281684 +UniRef50_O87198 Homocitrate synthase 5.38011068412e-05 0.5 0.499946198893 +UniRef50_Q55863 Pyruvate kinase 1 0.604677474509 0.5 -0.104677474509 +UniRef50_UPI00046D1C25 NADH 1.48100697322 0.5 -0.981006973217 +UniRef50_A7NJ00 0.319560307808 0.5 0.180439692192 +UniRef50_A4EH59 0.450949230092 0.5 0.0490507699077 +UniRef50_I1EUA2 2.45683754986 0.499999999999 -1.95683754986 +UniRef50_B5YZZ5 Ethanolamine utilization cobalamin adenosyltransferase 0.660030678449 0.5 -0.160030678449 +UniRef50_UPI000373E5C0 hypothetical protein 0.405667118456 0.5 0.0943328815435 +UniRef50_P0ADK2 0.659225990735 0.5 -0.159225990735 +UniRef50_G0DTN7 0.0163637588317 0.5 0.483636241168 +UniRef50_H6VX72 0.259434546576 0.5 0.240565453424 +UniRef50_F5Y9N5 CoxE family protein 0.215047537358 0.5 0.284952462642 +UniRef50_Q28K41 Amino acid amide ABC transporter substrate binding protein, HAAT family 4.16875808523 0.500000000001 -3.66875808523 +UniRef50_Q0C0L1 ATP dependent protease ATPase subunit HslU 2.79512786999 0.5 -2.29512786999 +UniRef50_Q9RZB3 dTDP glucose 4,6 dehydratase 0.000827423547641 0.5 0.499172576452 +UniRef50_Q8E418 DNA translocase FtsK 0.630495709427 0.5 -0.130495709427 +UniRef50_B0VB35 Aldehyde dehydrogenase, phenylacetic acid degradation 0.00992662882893 0.5 0.490073371171 +UniRef50_UPI0004799256 hypothetical protein 0.279784637135 0.5 0.220215362865 +UniRef50_O66490 Adenylate kinase 0.0881740247226 0.5 0.411825975277 +UniRef50_UPI00046ED1E9 ABC transporter permease 0.0433077551227 0.499999999999 0.456692244878 +UniRef50_O32978 O acetylserine sulfhydrylase 0.165358133302 0.500000000001 0.334641866697 +UniRef50_UPI0004091FE8 helicase 0.0250424603208 0.5 0.474957539679 +UniRef50_A4SFY3 Serine hydroxymethyltransferase 0.356058638233 0.5 0.143941361767 +UniRef50_D7BLM0 Extracellular solute binding protein family 5 0.014831517396 0.5 0.485168482604 +UniRef50_S1SCM4 LigA 0.116625814233 0.5 0.383374185767 +UniRef50_P42914 Probable fimbrial chaperone YraI 2.91590500291 0.500000000002 -2.41590500291 +UniRef50_P44992 0.519378373654 0.5 -0.0193783736537 +UniRef50_C6BH49 Coproporphyrinogen III oxidase 0.0243653759186 0.5 0.475634624081 +UniRef50_UPI0003B759B0 urease subunit alpha 0.128182123289 0.5 0.371817876711 +UniRef50_A3PL00 TspO and MBR like proteins 0.840385447428 0.5 -0.340385447428 +UniRef50_B7LKC2 Cytoskeleton protein RodZ 0.541462078507 0.5 -0.041462078507 +UniRef50_Q3J225 Bacteriophage head tail adaptor 0.821513061141 0.5 -0.321513061141 +UniRef50_J7PFG8 0.0640115410015 0.5 0.435988458999 +UniRef50_T0TD56 Carbonic anhydrase 5.61684678045 0.500000000001 -5.11684678045 +UniRef50_Q59087 Catabolic 3 dehydroquinate dehydratase 0.0238135323169 0.5 0.476186467683 +UniRef50_D7WB79 Succinate dehydrogenase flavoprotein subunit 0.021362897525 0.5 0.478637102475 +UniRef50_Q3IZA2 Trehalose 6 phosphate phosphatase 1.11040022647 0.5 -0.610400226468 +UniRef50_I3BX28 0.27445644076 0.5 0.22554355924 +UniRef50_G7M5J0 SEC C motif domain protein 0.0528507378722 0.5 0.447149262128 +UniRef50_UPI0002003503 ABC transporter, ATP binding protein, partial 0.245942755802 0.5 0.254057244198 +UniRef50_A6LYT6 Baseplate J family protein 0.243618045635 0.5 0.256381954365 +UniRef50_T1YD73 Gluconate operon transcriptional repressor 0.699441080142 0.5 -0.199441080142 +UniRef50_B8CZ12 ATP synthase subunit alpha 0.102619877927 0.5 0.397380122073 +UniRef50_M1N6Y0 0.20004644021 0.5 0.29995355979 +UniRef50_Q9I4L1 Probable deoxyguanosinetriphosphate triphosphohydrolase 1.43202282734 0.5 -0.932022827338 +UniRef50_UPI00036419A0 hypothetical protein 0.325412369357 0.5 0.174587630643 +UniRef50_Q04J73 Holo [acyl carrier protein] synthase 0.00887655691803 0.5 0.491123443082 +UniRef50_S5RIC3 0.322327063717 0.5 0.177672936283 +UniRef50_UPI000364B6F1 hypothetical protein 0.0115663161925 0.5 0.488433683807 +UniRef50_B0CE03 Acyl carrier protein 0.309832162824 0.5 0.190167837176 +UniRef50_I3TL38 UDP 2,3 diacylglucosamine hydrolase 0.174475262952 0.5 0.325524737048 +UniRef50_Q9RWB2 Citrate synthase 0.000107295063735 0.5 0.499892704936 +UniRef50_D4LGP4 Tryptophanyl tRNA synthetase 0.0742294908108 0.5 0.425770509189 +UniRef50_A6LY82 Alpha beta superfamily like hydrolase 0.470931386038 0.5 0.0290686139618 +UniRef50_V5XSJ4 Lipoprotein 0.272536730052 0.5 0.227463269948 +UniRef50_P20356 Regulatory protein RepA 0.00773708016382 0.5 0.492262919836 +UniRef50_UPI0003B686D0 PREDICTED 0.256862862435 0.5 0.243137137565 +UniRef50_A0A033G8H1 0.31123685352 0.5 0.18876314648 +UniRef50_H1XZH3 Aldo keto reductase 0.0627759843456 0.5 0.437224015654 +UniRef50_L8NEI8 Lipopolysaccharide kinase family 1.68131583109 0.5 -1.18131583109 +UniRef50_G8V9R1 Permease 0.0693108289938 0.5 0.430689171006 +UniRef50_W1YFP0 Nitrate reductase, beta subunit 1.70236207605 0.5 -1.20236207605 +UniRef50_UPI000312D337 hypothetical protein 0.230853529242 0.5 0.269146470758 +UniRef50_E8U983 GAF domain protein 0.00684409841092 0.5 0.493155901589 +UniRef50_I6TS63 ABC transporter permease 1.55267901573 0.5 -1.05267901573 +UniRef50_K4KH04 Protein yffB 0.792351129991 0.5 -0.292351129991 +UniRef50_G7M8Y3 Flagellar biosynthetic protein FlhF 0.105098047377 0.5 0.394901952623 +UniRef50_P52311 Modification methylase XorII 4.2933319423 0.499999999993 -3.79333194229 +UniRef50_F0XXV7 0.338878247207 0.5 0.161121752793 +UniRef50_E5QY81 63.1826662484 0.500000000049 -62.6826662485 +UniRef50_UPI00047BEFD4 HAD family hydrolase 0.188485160596 0.5 0.311514839404 +UniRef50_G8PNB5 Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase 0.0934930132134 0.5 0.406506986787 +UniRef50_A0R079 Glutamine synthetase 1 0.129500175489 0.499999999999 0.370499824512 +UniRef50_E2NST4 0.0742645957152 0.5 0.425735404285 +UniRef50_V5DMC9 Selenocysteine specific translation elongation factor 6.30083467871 0.499999999998 -5.80083467871 +UniRef50_W8UPZ5 Oxygenase subunit of ring hydroxylating dioxygenase 0.0260135679169 0.5 0.473986432083 +UniRef50_Q3J1A8 1 deoxy D xylulose 5 phosphate synthase 1 2.10518568351 0.5 -1.60518568351 +UniRef50_C1DPC3 Cyclic pyranopterin monophosphate synthase accessory protein 0.313613836442 0.5 0.186386163558 +UniRef50_P0AEJ3 Isochorismate synthase EntC 1.79538633718 0.499999999999 -1.29538633718 +UniRef50_B7G0W9 Predicted protein 1.56462150108 0.5 -1.06462150108 +UniRef50_G9YRQ6 0.248695292298 0.5 0.251304707702 +UniRef50_Q5HKS8 Cell wall surface anchor family protein 1.08931160066 0.5 -0.589311600658 +UniRef50_J7MBF6 0.624254160722 0.5 -0.124254160722 +UniRef50_P18156 Glycerol uptake facilitator protein 1.253085747 0.5 -0.753085747004 +UniRef50_A5EPJ2 DNA ligase 0.328475996245 0.5 0.171524003755 +UniRef50_T2QWI5 0.0710104790789 0.5 0.428989520921 +UniRef50_Q2FZ98 UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141 1.99145165208 0.499999999999 -1.49145165208 +UniRef50_Q2IM08 0.663033074176 0.5 -0.163033074176 +UniRef50_UPI00036488F7 hypothetical protein 0.165386029372 0.5 0.334613970628 +UniRef50_Q99Y73 Endonuclease MutS2 0.566598803769 0.5 -0.0665988037693 +UniRef50_A5UP17 O linked GlcNAc transferase 8.0754294753 0.500000000001 -7.5754294753 +UniRef50_UPI00047C28A2 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.0271513930016 0.5 0.472848606998 +UniRef50_UPI00042B2DF2 Mitochondrial ribosomal L11 like protein 0.10512142112 0.5 0.39487857888 +UniRef50_UPI00037FB3DE hypothetical protein 0.828802235096 0.5 -0.328802235096 +UniRef50_E9T6B7 Periplasmic binding protein 0.0828187454065 0.500000000001 0.417181254593 +UniRef50_S5CVC3 Permeases of the major facilitator superfamily 0.0707063612831 0.5 0.429293638717 +UniRef50_UPI0003778082 hypothetical protein 0.294785484785 0.5 0.205214515215 +UniRef50_Q3HKI7 TraG 1.78590065338 0.5 -1.28590065338 +UniRef50_P0AF68 tRNA threonylcarbamoyladenosine biosynthesis protein TsaE 0.765092544725 0.5 -0.265092544725 +UniRef50_UPI0002657B93 PREDICTED 0.562699443494 0.5 -0.062699443494 +UniRef50_Q1CS39 Uroporphyrinogen III cosynthase 0.142409095404 0.5 0.357590904596 +UniRef50_P28722 0.0946405863309 0.5 0.405359413669 +UniRef50_Q6GIH0 UPF0051 protein SAR0880 0.229852442286 0.5 0.270147557714 +UniRef50_UPI0003657D51 hypothetical protein 0.322194698898 0.5 0.177805301102 +UniRef50_D3E3M2 2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase 1.11675986936 0.5 -0.616759869364 +UniRef50_Q88MV0 Tyrosine recombinase XerD 0.0632605880601 0.5 0.43673941194 +UniRef50_A6LWP7 0.326521027387 0.5 0.173478972613 +UniRef50_R7IGE7 Cyclodextrin ABC transporter permease protein 0.0407661963488 0.5 0.459233803651 +UniRef50_U5MS83 0.384804760695 0.5 0.115195239305 +UniRef50_R4X107 Anti sigma factor antagonist 0.00231886078299 0.5 0.497681139217 +UniRef50_S6AEE6 Sulfate ABC transporter substrate binding protein CysP 0.16795665238 0.5 0.33204334762 +UniRef50_UPI000473E8E4 hypothetical protein, partial 0.347735992296 0.5 0.152264007704 +UniRef50_X1SHF8 Marine sediment metagenome DNA, contig 0.105564164286 0.5 0.394435835714 +UniRef50_F8G4J9 Major facilitator transporter 1.40416970091 0.5 -0.90416970091 +UniRef50_UPI000469A483 hypothetical protein 0.0868292315503 0.5 0.41317076845 +UniRef50_UPI00033433D0 PREDICTED 0.471635948573 0.5 0.0283640514275 +UniRef50_G7U7D4 Sugar binding periplasmic protein 0.024452842199 0.5 0.475547157801 +UniRef50_A4WZR2 1.26649821209 0.5 -0.76649821209 +UniRef50_F8HEX8 NADPH dependent fmn reductase 0.497333527973 0.5 0.00266647202702 +UniRef50_R0EB23 0.0836865386019 0.5 0.416313461398 +UniRef50_O66821 Hypoxanthine guanine phosphoribosyltransferase 0.625322671875 0.5 -0.125322671875 +UniRef50_V5UIB0 CoA transferase 0.561702789608 0.5 -0.061702789608 +UniRef50_UPI0004713504 hypothetical protein 0.0375614953582 0.5 0.462438504642 +UniRef50_UPI0004627EF4 hypothetical protein 0.238009143563 0.5 0.261990856437 +UniRef50_UPI0003291A81 PREDICTED 0.552579378903 0.5 -0.0525793789033 +UniRef50_B9DT59 Sensor histidine kinase 1.1513857459 0.5 -0.651385745899 +UniRef50_Q3J2Y0 ABC oligo dipeptide transporter, fused ATPase subunits 0.188796643523 0.5 0.311203356477 +UniRef50_UPI0001746395 Gluconate transporter 0.354759496102 0.5 0.145240503898 +UniRef50_UPI0003730BCE hypothetical protein 0.600605295184 0.5 -0.100605295184 +UniRef50_Q131M0 Peptidyl tRNA hydrolase 1.05480428746 0.5 -0.554804287462 +UniRef50_P10725 Alanine racemase 1 0.00205455388376 0.5 0.497945446117 +UniRef50_J9P8Y9 0.517261695666 0.5 -0.017261695666 +UniRef50_A9BXI8 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 1.49617687104 0.499999999999 -0.996176871037 +UniRef50_A0A010IRI1 Copper resistance , CopA family protein 0.0210406963492 0.5 0.478959303651 +UniRef50_F6FVA2 NADH quinone oxidoreductase, F subunit 0.00120456187154 0.5 0.498795438128 +UniRef50_Q2SBV0 Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation 0.0789844957048 0.5 0.421015504295 +UniRef50_Q4L8V4 Sensory transduction protein LytR 1.0051669263 0.5 -0.505166926296 +UniRef50_UPI00037BA9AE hypothetical protein 1.26330935497 0.5 -0.763309354971 +UniRef50_Q87HJ2 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.32232738118 0.5 0.17767261882 +UniRef50_B9KKK1 Transcriptional regulator, DeoR family 0.968213073322 0.5 -0.468213073322 +UniRef50_UPI0002628822 inosine uridine preferring nucleoside hydrolase 0.239673019888 0.5 0.260326980112 +UniRef50_UPI00047EB05D hypothetical protein 0.190889388273 0.5 0.309110611727 +UniRef50_Q4JMN7 Predicted flagellar hook capping protein 0.363720308628 0.5 0.136279691372 +UniRef50_UPI000475B51F hypothetical protein 0.0638106260167 0.5 0.436189373984 +UniRef50_UPI00028835CE glutamate dehydrogenase 5.55918593964 0.500000000001 -5.05918593964 +UniRef50_UPI00047A79FF LysR family transcriptional regulator 0.284157454103 0.5 0.215842545897 +UniRef50_Q3A248 Phosphopentomutase 0.42360276596 0.5 0.0763972340404 +UniRef50_S2R0I0 Capsular polysaccharide synthesis protein 0.336415986862 0.5 0.163584013138 +UniRef50_P06149 D lactate dehydrogenase 0.062070691512 0.5 0.437929308488 +UniRef50_UPI00037C3443 hypothetical protein 0.267754688127 0.5 0.232245311873 +UniRef50_D2TN56 Translocation and assembly module TamA 1.27822492098 0.499999999999 -0.778224920976 +UniRef50_R5IZV2 Rod shape determining protein MreB 0.117002968056 0.5 0.382997031945 +UniRef50_P96662 0.259649910337 0.5 0.240350089663 +UniRef50_P71311 3.53674920784 0.499999999999 -3.03674920784 +UniRef50_Q18BQ3 UPF0271 protein CD630_13840 1.93142071059 0.5 -1.43142071059 +UniRef50_UPI00047614B3 glutamate dehydrogenase 0.0110304738781 0.5 0.488969526122 +UniRef50_Q3IVA8 1.55260418629 0.5 -1.05260418629 +UniRef50_R4Q3U4 2.10341170154 0.5 -1.60341170154 +UniRef50_P56793 50S ribosomal protein L16, chloroplastic 0.0494157978819 0.5 0.450584202118 +UniRef50_Q8SQT7 Elongation factor 2 0.404008955174 0.5 0.0959910448258 +UniRef50_Q3IVA2 1.83619307803 0.5 -1.33619307803 +UniRef50_G7WCF3 0.0259947320939 0.499999999999 0.474005267907 +UniRef50_Q9HW91 Methyl accepting chemotaxis protein PctB 1.13075936061 0.5 -0.630759360609 +UniRef50_N0CH82 Periplasmic binding protein 0.228174686665 0.5 0.271825313335 +UniRef50_Q6GCY8 Purine nucleoside phosphorylase DeoD type 0.930730292137 0.5 -0.430730292137 +UniRef50_M4R901 0.020869410938 0.5 0.479130589062 +UniRef50_Q03727 Transport processing ATP binding protein ComA 0.930352477653 0.5 -0.430352477653 +UniRef50_P19926 Glucose 1 phosphatase 1.27657742887 0.5 -0.776577428874 +UniRef50_V5VFB4 Transcriptional regulator 0.0120520850787 0.5 0.487947914921 +UniRef50_Q3IWX7 Putative phage tail tube protein FII 3.27391513434 0.499999999999 -2.77391513434 +UniRef50_UPI000309F49D hypothetical protein 0.532710945723 0.5 -0.0327109457234 +UniRef50_UPI0002B9193E hypothetical protein 0.000517284549018 0.5 0.499482715451 +UniRef50_UPI0004739302 urea ABC transporter ATP binding protein, partial 0.771786133337 0.5 -0.271786133337 +UniRef50_M5U8U8 UPF0246 protein RSSM_04267 0.518571383357 0.5 -0.0185713833573 +UniRef50_W0ACK7 0.268601949854 0.5 0.231398050146 +UniRef50_Q5HL17 Pyruvate phosphate dikinase 1.09346823891 0.5 -0.593468238906 +UniRef50_P0C348 Peptide chain release factor 2 2.11946729752 0.5 -1.61946729752 +UniRef50_UPI00036F8282 hypothetical protein 0.30627437062 0.5 0.19372562938 +UniRef50_Q8XW28 Urocanate hydratase 0.133002573899 0.500000000001 0.3669974261 +UniRef50_Q4L811 Type II pantothenate kinase 1.71555313425 0.5 -1.21555313425 +UniRef50_Q8G4X3 Glutamyl Q tRNA synthetase 0.407130569868 0.5 0.0928694301323 +UniRef50_UPI0001850812 shikimate 5 dehydrogenase 0.499907310763 0.5 9.26892365571e-05 +UniRef50_Q51391 Glycerol 3 phosphate regulon repressor 0.905031970314 0.5 -0.405031970314 +UniRef50_F0YC37 0.467487616855 0.5 0.0325123831447 +UniRef50_A3TSY0 Hemolysin type calcium binding protein 0.323511341823 0.5 0.176488658177 +UniRef50_T0SW85 Transcription repair coupling factor 0.935077468886 0.5 -0.435077468886 +UniRef50_UPI00036A708B hypothetical protein 0.937830115705 0.5 -0.437830115705 +UniRef50_Q8CS12 0.820080009898 0.5 -0.320080009898 +UniRef50_UPI0003EB5DA3 50S ribosomal protein L36 0.055770848037 0.5 0.444229151963 +UniRef50_R4WT31 Ribonucleoside diphosphate reductase 0.00597995745159 0.5 0.494020042548 +UniRef50_UPI00016AD465 hypothetical protein 0.05899302967 0.499999999999 0.441006970331 +UniRef50_UPI000262572E acetoin dehydrogenase E2 subunit dihydrolipoyllysine residue acetyltransferase 0.197167394458 0.5 0.302832605542 +UniRef50_UPI000367C756 hypothetical protein 0.186798359417 0.5 0.313201640583 +UniRef50_B5XYB9 Hydroxylamine reductase 1.34440795684 0.500000000001 -0.844407956843 +UniRef50_A5UNH1 Lipopolysaccharide cholinephosphotransferase 3.30926495152 0.499999999999 -2.80926495152 +UniRef50_UPI000408C071 hypothetical protein 0.283027386361 0.5 0.216972613639 +UniRef50_UPI0001BF66E3 hypothetical protein SMAC_10240 0.132568571453 0.5 0.367431428547 +UniRef50_Q55480 0.178195465171 0.5 0.321804534829 +UniRef50_L7WZA3 8.62716174608 0.5 -8.12716174608 +UniRef50_P16263 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.035223579814 0.5 0.464776420186 +UniRef50_B9KS54 2.15117266094 0.5 -1.65117266094 +UniRef50_B9KS55 0.319560307807 0.5 0.180439692193 +UniRef50_Q041L5 ABC type cobalt transport system, permease component CbiQ related transporter 0.754494415309 0.5 -0.254494415309 +UniRef50_UPI0003768F93 hypothetical protein 0.360945163004 0.5 0.139054836996 +UniRef50_I3UM51 1.10091680822 0.5 -0.600916808219 +UniRef50_F6D1X2 Dihydroorotase 1.30863948578 0.5 -0.80863948578 +UniRef50_F9YWS1 0.0329342541957 0.5 0.467065745804 +UniRef50_A6LRH2 Histidine kinase internal region 0.364456570696 0.5 0.135543429304 +UniRef50_UPI000382BC4C hypothetical protein 1.60599034595 0.5 -1.10599034595 +UniRef50_W0YNP0 AMP binding protein 1.29276870972 0.5 -0.792768709723 +UniRef50_A4XNT2 0.671482323644 0.5 -0.171482323644 +UniRef50_A8LLT3 Phosphate acyltransferase 2.49458297226 0.5 -1.99458297226 +UniRef50_UPI0004675B23 queuine tRNA ribosyltransferase 0.0347027954207 0.5 0.465297204579 +UniRef50_F3YPM3 Prephenate dehydratase 0.250353658361 0.5 0.249646341639 +UniRef50_Q9X5M1 Diaminopimelate decarboxylase 0.0169691359401 0.5 0.48303086406 +UniRef50_H8FVT2 CRISPR associated helicase Cas3 4.28552320269 0.499999999996 -3.78552320269 +UniRef50_UPI00035C4745 hypothetical protein 0.0555080351713 0.5 0.444491964829 +UniRef50_Q2NI23 DNA primase small subunit PriS 2.01464743443 0.500000000001 -1.51464743443 +UniRef50_UPI000310953A quinone oxidoreductase 0.0456622510197 0.5 0.45433774898 +UniRef50_R0QWV3 0.0504118751511 0.5 0.449588124849 +UniRef50_Q5HLY5 0.748151015644 0.5 -0.248151015644 +UniRef50_UPI00037F4158 hypothetical protein 0.15678508363 0.5 0.34321491637 +UniRef50_UPI0003725D3A hypothetical protein 0.037534495615 0.5 0.462465504385 +UniRef50_Q8EWD1 Serine hydroxymethyltransferase 0.293312169765 0.5 0.206687830235 +UniRef50_A5IQ08 2.36571628824 0.499999999999 -1.86571628824 +UniRef50_B2TJK8 Spore coat protein, CotS family 0.0556605178553 0.5 0.444339482145 +UniRef50_UPI000367BD21 hypothetical protein, partial 0.577357339153 0.5 -0.0773573391527 +UniRef50_UPI000255A109 FrpC, partial 0.592657863551 0.5 -0.0926578635515 +UniRef50_UPI000372D109 hypothetical protein 0.290161593719 0.5 0.209838406281 +UniRef50_U7FV20 1.99503572207 0.5 -1.49503572207 +UniRef50_X5K4I4 ABC transporter, ATP binding permease protein 1.87304410974 0.5 -1.37304410974 +UniRef50_D5STS9 3.07410892489 0.499999999999 -2.57410892489 +UniRef50_Q5XAE6 Biotin carboxyl carrier protein of acetyl CoA carboxylase 5.77676976004 0.499999999999 -5.27676976004 +UniRef50_J2YH36 4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein 0.0613405277507 0.500000000001 0.438659472249 +UniRef50_UPI00036BF70E hypothetical protein 0.00333393999175 0.499999999999 0.496666060009 +UniRef50_C5BLW1 Type IV pilus biogenesis stability protein PilW 0.211104821705 0.5 0.288895178295 +UniRef50_A7FZ47 30S ribosomal protein S13 2.89406066752 0.499999999998 -2.39406066752 +UniRef50_W9WZ32 0.44326630663 0.5 0.0567336933698 +UniRef50_UPI00028929E9 iron ABC transporter permease 0.418060587401 0.5 0.0819394125992 +UniRef50_O66680 Leucine tRNA ligase subunit alpha 0.131246834853 0.5 0.368753165147 +UniRef50_A0A021WYJ6 0.777103228972 0.5 -0.277103228972 +UniRef50_Q0ADJ4 Nucleotidyl transferase 0.140367981907 0.5 0.359632018093 +UniRef50_UPI00037CB764 hypothetical protein 0.275517250632 0.5 0.224482749368 +UniRef50_UPI00018512AA 3 hydroxybutyryl CoA dehydrogenase 0.0255192231849 0.5 0.474480776815 +UniRef50_Q9RUS8 Spermidine putrescine ABC transporter, permease protein 0.00383225120515 0.5 0.496167748795 +UniRef50_UPI00032A2821 PREDICTED 2.83560396519 0.500000000001 -2.33560396519 +UniRef50_V6EZP6 0.519942295395 0.5 -0.0199422953949 +UniRef50_R4XX04 Phage related protein 0.00657182326654 0.5 0.493428176734 +UniRef50_UPI0004758F1B hypothetical protein 2.57671233073 0.5 -2.07671233073 +UniRef50_P26395 Protein RfbI 0.343105914942 0.5 0.156894085058 +UniRef50_A4VMA8 Trk system potassium uptake protein 1.00313828257 0.5 -0.503138282565 +UniRef50_Q28TW0 Molybdenum cofactor sulfurylase 0.449605670056 0.5 0.0503943299439 +UniRef50_UPI000287C21F phosphoenolpyruvate protein phosphotransferase 0.00607126356624 0.5 0.493928736434 +UniRef50_Q8A0B5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 0.000558786919141 0.5 0.499441213081 +UniRef50_Q2J545 Cysteine tRNA ligase 0.156428785875 0.5 0.343571214125 +UniRef50_Q8CMP3 Transporter 1.47362217784 0.5 -0.973622177838 +UniRef50_A4G266 Phosphate starvation inducible protein 0.0823906630022 0.5 0.417609336998 +UniRef50_A7X442 NH dependent NAD(+) synthetase 1.16290635931 0.5 -0.662906359308 +UniRef50_UPI000471E89E pseudoazurin 0.873444761197 0.5 -0.373444761197 +UniRef50_F0RN28 Carboxyl terminal protease 0.00235943798281 0.5 0.497640562017 +UniRef50_A6L7M5 Tryptophan synthase beta chain 0.00131730786245 0.500000000001 0.498682692137 +UniRef50_A4WU00 O antigen polymerase 1.24027688528 0.5 -0.740276885278 +UniRef50_E0MTZ8 Replication protein C 2.19852763817 0.500000000002 -1.69852763817 +UniRef50_Q72KJ4 Pili assembly protein pilC 0.00263429058128 0.5 0.497365709419 +UniRef50_X5DQJ7 ABC type glycine betaine L proline transporter, substrate binding lipoprotein 0.0197425961485 0.5 0.480257403852 +UniRef50_P0CZ58 Fructose bisphosphate aldolase 1.23397481337 0.5 -0.733974813369 +UniRef50_M4ZP55 7 carboxy 7 deazaguanine synthase 0.0360165990764 0.5 0.463983400923 +UniRef50_R5IQ58 Collagenase and related proteases 0.2472986754 0.5 0.2527013246 +UniRef50_V5X0C1 Nitrate reductase 1.50514315654 0.5 -1.00514315654 +UniRef50_UPI00046807CF tRNA delta isopentenylpyrophosphate transferase 0.931143289394 0.5 -0.431143289394 +UniRef50_W6RZJ6 Amidase 0.272496558936 0.5 0.227503441064 +UniRef50_C7R130 D lactate dehydrogenase 0.00564455047412 0.5 0.494355449526 +UniRef50_D8JJL0 OmpW family protein 0.0208245283246 0.5 0.479175471676 +UniRef50_UPI0003716EE9 amino acid ABC transporter 0.00194088594793 0.5 0.498059114052 +UniRef50_I3THN7 Binding protein dependent transport systems inner membrane component 0.849139396537 0.5 -0.349139396537 +UniRef50_UPI000441338E hypothetical protein AURDEDRAFT_112432 1.04371789963 0.5 -0.543717899633 +UniRef50_G7M1N3 0.505528799099 0.5 -0.00552879909851 +UniRef50_UPI00046ADCCD hypothetical protein 2.05491819877 0.500000000001 -1.55491819878 +UniRef50_Q9CIV7 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL 1.03889437425 0.5 -0.538894374252 +UniRef50_W7D2I2 0.200745929729 0.5 0.299254070271 +UniRef50_UPI00047862A8 molecular chaperone DnaJ 0.18100656021 0.5 0.31899343979 +UniRef50_D4ZAF4 Iron ABC transporter, permease protein 1.0487415111 0.5 -0.548741511097 +UniRef50_B0R332 Tryptophan synthase beta chain 1.00424793219 0.5 -0.504247932188 +UniRef50_M9RQH1 GTPase HflX 2.95081075469 0.499999999998 -2.45081075469 +UniRef50_Q9ZBH5 Diaminopimelate decarboxylase 0.278155339657 0.5 0.221844660343 +UniRef50_A1HSV6 0.185098918011 0.5 0.314901081989 +UniRef50_Q5F6T9 0.0447099627473 0.5 0.455290037253 +UniRef50_UPI00047BB8D4 lysyl tRNA synthetase 0.1378615016 0.5 0.3621384984 +UniRef50_Q9K0S5 0.0677652595957 0.499999999999 0.432234740405 +UniRef50_A5VFM2 tRNA specific 2 thiouridylase MnmA 1.43227682202 0.5 -0.932276822016 +UniRef50_UPI00045D6A2D PREDICTED 6.71124363946 0.499999999999 -6.21124363946 +UniRef50_C4XPA8 2 isopropylmalate synthase 0.473175162179 0.5 0.0268248378209 +UniRef50_UPI0003316925 PREDICTED 0.639120615617 0.5 -0.139120615617 +UniRef50_I4DZ12 Response regulator homolog 1.34475766175 0.5 -0.844757661746 +UniRef50_C0ENU4 1.27493785978 0.5 -0.774937859784 +UniRef50_Q167Z8 ExbD TolR family biopolymer transport protein, putative 19.4997357316 0.500000000005 -18.9997357316 +UniRef50_UPI0002488642 deoxyguanosinetriphosphate triphosphohydrolase 0.709520457882 0.5 -0.209520457882 +UniRef50_R9SLZ8 7.64029186225 0.500000000003 -7.14029186225 +UniRef50_UPI0002000344 hypothetical protein 0.164712964024 0.5 0.335287035976 +UniRef50_D9USA0 YjeF family protein 0.0783960072067 0.5 0.421603992793 +UniRef50_B6IS55 Oxidoreductase, short chain dehydrogenase 0.204137502845 0.5 0.295862497155 +UniRef50_P45104 Ribosomal large subunit pseudouridine synthase B 0.47211683456 0.5 0.0278831654401 +UniRef50_A5UP79 Integrase recombinase protein 3.96721635823 0.499999999998 -3.46721635823 +UniRef50_UPI000467ACA1 hypothetical protein 0.429299024258 0.5 0.0707009757422 +UniRef50_P0A9S6 Glycerol dehydrogenase 1.30076292096 0.5 -0.800762920956 +UniRef50_Q8X6C7 Xanthine dehydrogenase molybdenum binding subunit 2.70307342442 0.500000000002 -2.20307342442 +UniRef50_E4ZBB9 0.0899065804787 0.5 0.410093419521 +UniRef50_D2S3Z6 SSS sodium solute transporter superfamily 0.00395503385158 0.5 0.496044966149 +UniRef50_Q4FS37 Ribosomal RNA small subunit methyltransferase G 0.000426192595119 0.500000000001 0.499573807404 +UniRef50_C1FUR3 HTH domain protein 0.256526087324 0.5 0.243473912676 +UniRef50_C1CEF7 Mobile genetic element 0.135582349306 0.5 0.364417650694 +UniRef50_UPI00047EF6CC bis tetraphosphatase 0.0356601232435 0.5 0.464339876757 +UniRef50_I0EKX1 Antibiotic transport system permease protein 0.0275759372942 0.5 0.472424062706 +UniRef50_A8LJS3 1.51442912537 0.500000000001 -1.01442912537 +UniRef50_M1MUH2 Flagellar hook associated protein 2 0.066946966548 0.5 0.433053033452 +UniRef50_A8LJS1 4.02244119202 0.499999999998 -3.52244119201 +UniRef50_X3EKE6 1.60024522659 0.499999999998 -1.10024522659 +UniRef50_Q01S06 10.3860113275 0.5 -9.88601132746 +UniRef50_A3WQ21 0.0505580491028 0.500000000001 0.449441950896 +UniRef50_K0EZI3 0.01710446897 0.500000000001 0.482895531029 +UniRef50_P0CE57 Transposase InsH for insertion sequence element IS5R 1.13510048414 0.5 -0.635100484135 +UniRef50_B3PCQ0 ACT domain protein phosphoserine phosphatase SerB 0.00779038547794 0.5 0.492209614522 +UniRef50_Q5HR97 Teichoic acids export ATP binding protein TagH 2.72330002965 0.499999999999 -2.22330002965 +UniRef50_P37386 Probable cadmium transporting ATPase 0.967563012012 0.5 -0.467563012012 +UniRef50_Q71YA8 4 hydroxy tetrahydrodipicolinate reductase 1.19801975417 0.5 -0.698019754167 +UniRef50_D2NR34 ATPase with chaperone activity, ATP binding subunit 0.0133577005056 0.5 0.486642299494 +UniRef50_P17618 Riboflavin biosynthesis protein RibD 0.0163851343633 0.500000000001 0.483614865636 +UniRef50_F6P2R4 2.24080550666 0.5 -1.74080550666 +UniRef50_Q58N56 Gp12 2.21377213057 0.5 -1.71377213057 +UniRef50_P0AD15 Sensor histidine kinase YehU 1.71111003435 0.500000000001 -1.21111003435 +UniRef50_R7PSE2 1.09771001939 0.5 -0.597710019387 +UniRef50_P37061 NADH oxidase 0.127915726949 0.5 0.372084273051 +UniRef50_R9SMN4 2 phosphosulfolactate phosphatase ComB 4.365658657 0.499999999998 -3.865658657 +UniRef50_Q1JFV4 0.852709363113 0.5 -0.352709363113 +UniRef50_UPI00030AE818 hypothetical protein 0.351520047773 0.5 0.148479952227 +UniRef50_UPI000255CD3D glutamate synthase small subunit 0.487429342906 0.5 0.012570657094 +UniRef50_UPI0003B468FE ammonium transporter 0.71526407718 0.5 -0.21526407718 +UniRef50_UPI000361E930 MULTISPECIES 0.375235760423 0.5 0.124764239577 +UniRef50_A5UM85 Protein GrpE 4.02250217454 0.499999999999 -3.52250217454 +UniRef50_B5XYZ0 Guanosine 5 triphosphate,3 diphosphate pyrophosphatase 1.76516274836 0.5 -1.26516274836 +UniRef50_D5HC80 0.0979267832473 0.499999999999 0.402073216753 +UniRef50_P17430 Acetate operon repressor 3.04057672254 0.5 -2.54057672254 +UniRef50_Q6G329 Ribonuclease D 2.65325046177 0.5 -2.15325046177 +UniRef50_UPI00046E9EE1 hypothetical protein 0.536165961995 0.5 -0.0361659619946 +UniRef50_B8FTK7 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.607987637234 0.5 -0.107987637234 +UniRef50_A8MI43 Alpha beta hydrolase fold 0.161347172752 0.5 0.338652827248 +UniRef50_G7U7C7 Phospholipase, patatin family protein 0.00739156898807 0.5 0.492608431012 +UniRef50_UPI0002D7CF6D hypothetical protein 0.0103818508517 0.5 0.489618149148 +UniRef50_P16440 Riboflavin synthase 0.356331043871 0.5 0.143668956129 +UniRef50_F0N020 ResB family protein 0.0785341205794 0.5 0.421465879421 +UniRef50_D8HET5 Sirohydrochlorin ferrochelatase 3.11595954392 0.500000000001 -2.61595954392 +UniRef50_B1TGN6 0.144669175296 0.5 0.355330824704 +UniRef50_Q0HNC2 L threonine ammonia lyase 0.0443360323274 0.500000000001 0.455663967672 +UniRef50_G8B0F2 0.0711365720061 0.5 0.428863427994 +UniRef50_Z5KKF6 Type IV conjugative transfer system protein TraV 0.297914466961 0.5 0.202085533039 +UniRef50_P67088 Ribosomal RNA small subunit methyltransferase I 1.56084628336 0.499999999999 -1.06084628336 +UniRef50_Q8NTE1 Dihydrolipoyl dehydrogenase 0.00178145762853 0.5 0.498218542372 +UniRef50_F7ZAP7 Histidine kinase 2.96625501497 0.5 -2.46625501497 +UniRef50_J3PDD9 0.624333144771 0.5 -0.124333144771 +UniRef50_O68984 Polyphosphate kinase 2 0.00631346179524 0.5 0.493686538205 +UniRef50_Q8R9G2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.219638412989 0.5 0.280361587011 +UniRef50_B1M2H9 1.43267803591 0.5 -0.93267803591 +UniRef50_UPI0003809C52 flagellar biosynthesis protein FlhA, partial 0.421477884579 0.5 0.0785221154213 +UniRef50_UPI00037BA0F7 hypothetical protein 0.0210429328753 0.5 0.478957067125 +UniRef50_B9K0E0 ABC transporter substrate binding protein 9.46086769755 0.499999999991 -8.96086769754 +UniRef50_Q5HRC8 2.22025015292 0.499999999996 -1.72025015292 +UniRef50_UPI00047CE8A1 hypothetical protein 1.68149434116 0.5 -1.18149434116 +UniRef50_UPI0002899EA1 N acyl L amino acid amidohydrolase 0.0439423741243 0.5 0.456057625876 +UniRef50_C0PI11 0.987900788284 0.5 -0.487900788284 +UniRef50_U3SWE7 1.37822935117 0.5 -0.878229351168 +UniRef50_B9KWN5 ABC amino acid transporter, periplasmic ligand binding protein 1.73787985149 0.5 -1.23787985149 +UniRef50_A5UKR1 Cobalt ABC transporter, permease component 0.0271788088359 0.5 0.472821191164 +UniRef50_V5SUT2 Multidrug ABC transporter substrate binding protein 4.01903523328 0.500000000002 -3.51903523329 +UniRef50_X6APU4 1.60953002035 0.500000000001 -1.10953002035 +UniRef50_UPI0003B50A60 cell division protein FtsE 0.159320154659 0.5 0.340679845341 +UniRef50_J9NT05 0.0374286386657 0.5 0.462571361334 +UniRef50_A4TJM2 Probable phosphatase YPDSF_1086 1.15684906115 0.5 -0.656849061149 +UniRef50_E3D657 Glutathione regulated potassium efflux system protein 0.0335993281715 0.5 0.466400671829 +UniRef50_Q8FHG5 Glutamate decarboxylase beta 4.37532026721 0.499999999999 -3.87532026721 +UniRef50_Q28PK8 0.17804137694 0.5 0.32195862306 +UniRef50_V4PD29 1.4589380583 0.5 -0.958938058297 +UniRef50_Q8FDA1 Penicillin binding protein activator LpoA 3.35766962637 0.499999999999 -2.85766962637 +UniRef50_B6IZD5 Ribosomal RNA large subunit methyltransferase E 0.417893339686 0.5 0.0821066603139 +UniRef50_Q8D2I8 Cardiolipin synthase A 2.77893652583 0.499999999997 -2.27893652583 +UniRef50_F4BS97 PTS system, lactose cellobiose family IIC subunit 0.0430023519516 0.5 0.456997648049 +UniRef50_UPI00046D0519 hypothetical protein 0.337863762964 0.5 0.162136237036 +UniRef50_W6RXA4 NAD dependent epimerase dehydratase 1.44370676423 0.499999999999 -0.943706764226 +UniRef50_UPI0000123685 C. briggsae CBR GEI 7 protein, partial 0.0914614211956 0.5 0.408538578804 +UniRef50_R5UKS9 0.528267333885 0.5 -0.0282673338853 +UniRef50_UPI00042A7A25 hypothetical protein 0.234132082163 0.5 0.265867917837 +UniRef50_A3PHB4 19.3248578541 0.499999999995 -18.8248578541 +UniRef50_UPI000255D523 putative ATPase 1.7059138745 0.5 -1.2059138745 +UniRef50_A3PHB0 0.623335214611 0.5 -0.123335214611 +UniRef50_D0ZTB2 Magnesium transporting ATPase, P type 1 2.26697435463 0.5 -1.76697435463 +UniRef50_A7WXS7 Antiholin like protein LrgB 16.7117607777 0.500000000015 -16.2117607777 +UniRef50_Q5JIZ8 4 phosphopantoate beta alanine ligase 0.922312157012 0.5 -0.422312157012 +UniRef50_Q9YGB0 Tryptophan synthase beta chain 1 1.2282191536 0.5 -0.728219153604 +UniRef50_A4WTH7 0.161455241304 0.5 0.338544758696 +UniRef50_Q8X9A9 Succinate dehydrogenase hydrophobic membrane anchor subunit 0.861921030446 0.5 -0.361921030446 +UniRef50_M9VIE6 0.0105844749784 0.5 0.489415525022 +UniRef50_L2YGD4 1.43953228205 0.5 -0.939532282053 +UniRef50_UPI00034BB763 hypothetical protein 0.00269788812417 0.5 0.497302111876 +UniRef50_Q87VK8 UPF0313 protein PSPTO_4928 1.53859788701 0.5 -1.03859788701 +UniRef50_UPI000328C73F 0.0544690919462 0.5 0.445530908054 +UniRef50_UPI000181653B putative cation efflux protein 0.0832508238059 0.5 0.416749176194 +UniRef50_UPI00045EB333 hypothetical protein 0.871799083792 0.5 -0.371799083792 +UniRef50_A6UC68 Glutamine synthetase catalytic region 1.20221260527 0.5 -0.702212605269 +UniRef50_Q5M6A1 Undecaprenyl diphosphatase 0.564955201986 0.5 -0.0649552019858 +UniRef50_UPI00046976AA hypothetical protein 4.23066981751 0.500000000001 -3.73066981751 +UniRef50_UPI00045EBC8D hypothetical protein 1.27775967506 0.499999999999 -0.777759675056 +UniRef50_I1AS06 0.978348145789 0.5 -0.478348145789 +UniRef50_Q10Y48 Uridylate kinase 0.395493038039 0.5 0.104506961961 +UniRef50_UPI0003FA4543 membrane protein 2.45029070809 0.5 -1.95029070809 +UniRef50_E8SII5 Single stranded DNA specific exonuclease RecJ 1.38105681785 0.5 -0.881056817847 +UniRef50_Q5HKU8 CapA related protein 1.80142448436 0.5 -1.30142448436 +UniRef50_Q7MPS3 Formamidopyrimidine DNA glycosylase 0.391631467002 0.5 0.108368532998 +UniRef50_UPI00041EB905 thymidylate synthase 0.0683663436111 0.5 0.431633656389 +UniRef50_R0EY14 CRISPR associated helicase Cas3 0.435631282135 0.5 0.0643687178653 +UniRef50_A5ZLG0 0.0537123049978 0.5 0.446287695002 +UniRef50_B8DT48 Methionine tRNA ligase 0.00780452392823 0.5 0.492195476072 +UniRef50_A5IVU5 Phospholipase Carboxylesterase 3.87327735659 0.500000000006 -3.37327735659 +UniRef50_P77437 Hydrogenase 4 component F 0.847765701591 0.5 -0.347765701591 +UniRef50_K5ELG7 0.183373257915 0.5 0.316626742085 +UniRef50_A3X6J0 0.299366669067 0.5 0.200633330933 +UniRef50_D4GDN3 Catalase 1.55604858477 0.5 -1.05604858477 +UniRef50_A8ML82 Probable endonuclease 4 0.210798681924 0.5 0.289201318076 +UniRef50_UPI0003B59385 molybdopterin biosynthesis protein MoeB 0.492317474277 0.5 0.00768252572299 +UniRef50_A3JVB5 SN glycerol 3 phophate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 1.51364366175 0.5 -1.01364366175 +UniRef50_G8AEH3 0.176751580677 0.5 0.323248419323 +UniRef50_UPI00047B7AB7 alpha ketoglutarate decarboxylase 0.117231848389 0.5 0.382768151611 +UniRef50_A5UKJ0 Tyrosine tRNA ligase 7.74753908103 0.500000000003 -7.24753908104 +UniRef50_B7G9B5 L threonine ammonia lyase 0.109093486491 0.5 0.390906513509 +UniRef50_UPI000374D549 hypothetical protein 0.595216720571 0.5 -0.0952167205707 +UniRef50_UPI0003610FAC hypothetical protein, partial 2.19453141362 0.500000000002 -1.69453141362 +UniRef50_B5WT75 Transketolase domain protein 4.0000101236 0.500000000004 -3.50001012361 +UniRef50_P58319 Low specificity L threonine aldolase 0.573468585428 0.5 -0.0734685854277 +UniRef50_A7MI34 Ribonuclease H 127.531914651 0.49999999997 -127.031914651 +UniRef50_Q5KP44 Inosine 5 monophosphate dehydrogenase 3.25844643332 0.500000000001 -2.75844643332 +UniRef50_A3X8V2 DNA helicase II, putative 1.19007575359 0.5 -0.690075753587 +UniRef50_B0VAC9 Porin 0.0419075508956 0.5 0.458092449105 +UniRef50_P08656 Mercuric transport protein 3.12241124661 0.499999999999 -2.6224112466 +UniRef50_Q75FU1 Acetylglutamate kinase 1.55874900851 0.5 -1.05874900851 +UniRef50_O66119 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 0.839968338082 0.5 -0.339968338082 +UniRef50_Q88BC2 Phospholipase D family protein 1.22768488712 0.5 -0.727684887121 +UniRef50_B4TKU5 RNA 3 terminal phosphate cyclase 0.671010863508 0.5 -0.171010863508 +UniRef50_A5W974 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.071825063917 0.5 0.428174936083 +UniRef50_UPI00045DB0AA PREDICTED 25.6623674577 0.499999999986 -25.1623674577 +UniRef50_UPI00040A4A10 betaine aldehyde dehydrogenase 0.163148135699 0.5 0.336851864301 +UniRef50_J9EAY7 5.47160471239 0.500000000002 -4.97160471239 +UniRef50_I0DZ31 Major facilitator transporter 0.0186497459543 0.5 0.481350254046 +UniRef50_D0LZ79 Phosphoribosylformylglycinamidine synthase, purS 147.197029294 0.500000000103 -146.697029295 +UniRef50_T0PX63 0.29551321016 0.5 0.20448678984 +UniRef50_UPI0004715F2C ATP dependent DNA helicase RecQ 0.875057913529 0.5 -0.375057913529 +UniRef50_Q6GDN6 4,4 diaponeurosporenoate glycosyltransferase 3.12275740342 0.499999999998 -2.62275740342 +UniRef50_Q3Z7P5 Isoleucine tRNA ligase 0.163414874002 0.5 0.336585125998 +UniRef50_C8PYM1 0.548561871412 0.5 -0.0485618714124 +UniRef50_Q2T312 Glutamate 1 semialdehyde aminotransferase 1.7335275502 0.5 -1.2335275502 +UniRef50_UPI0003EE7EAE acetyl CoA acetyltransferase 0.0857686578036 0.5 0.414231342196 +UniRef50_W5XCV9 Hsp90 ATPase activator family protein, putative 0.0577802918746 0.5 0.442219708126 +UniRef50_UPI000373AC76 hypothetical protein 0.100208890824 0.5 0.399791109176 +UniRef50_UPI00036BF734 hypothetical protein 0.00236770988695 0.5 0.497632290113 +UniRef50_P60966 Prolipoprotein diacylglyceryl transferase 0.83135596512 0.5 -0.33135596512 +UniRef50_UPI00031187B6 hypothetical protein 1.18590367586 0.5 -0.68590367586 +UniRef50_X2MXQ1 0.432163394868 0.5 0.0678366051316 +UniRef50_N0BFG1 Polyhydroxyalkonate synthesis repressor PhaR 1.49326546133 0.5 -0.993265461329 +UniRef50_M1MRG1 Amino acid polyamine organocation transporter, APC superfamily 0.0349352920451 0.499999999999 0.465064707955 +UniRef50_Q2NH89 Replication factor C small subunit 1.334307306 0.5 -0.834307306001 +UniRef50_K4AS36 1.29605246704 0.5 -0.796052467042 +UniRef50_F5LZU0 0.322293895257 0.5 0.177706104743 +UniRef50_C6WQE7 Periplasmic binding protein 0.0974407544025 0.5 0.402559245597 +UniRef50_UPI0003B45185 DNA directed RNA polymerase subunit alpha 0.152526972341 0.5 0.347473027659 +UniRef50_Q8DUE8 2.03342125842 0.5 -1.53342125842 +UniRef50_Q8FBT7 1.24166404994 0.5 -0.741664049937 +UniRef50_UPI0004014281 16S rRNA methyltransferase 0.505904832346 0.5 -0.0059048323461 +UniRef50_P45515 Cobyrinic acid a,c diamide adenosyltransferase 0.1877926833 0.5 0.3122073167 +UniRef50_V5CX68 Dipeptide ABC superfamily ATP binding cassette transporter, binding protein 0.166402277664 0.5 0.333597722336 +UniRef50_Q9I733 0.200337313791 0.5 0.299662686209 +UniRef50_UPI000463C6BF hypothetical protein 0.0183324552221 0.5 0.481667544778 +UniRef50_R6HVU1 0.0105264076444 0.5 0.489473592356 +UniRef50_G7LXC7 Glycoside hydrolase family 25 0.188677935058 0.5 0.311322064942 +UniRef50_U5MY29 DnaD like protein 0.202554533724 0.5 0.297445466276 +UniRef50_UPI0003B69658 branched chain amino acid ABC transporter permease 0.489681065589 0.5 0.0103189344111 +UniRef50_R6VS65 0.254405142468 0.5 0.245594857532 +UniRef50_UPI0004624AAB calcium binding protein 0.312263180982 0.5 0.187736819018 +UniRef50_R5QLU7 1.23600070557 0.499999999999 -0.736000705565 +UniRef50_UPI0004750550 glutamyl tRNA amidotransferase 0.267878144081 0.5 0.232121855919 +UniRef50_A6LYZ5 Transposase 0.818197889567 0.5 -0.318197889567 +UniRef50_F9YWL9 0.0127584291812 0.5 0.487241570819 +UniRef50_P77434 Glutamate pyruvate aminotransferase AlaC 0.854496028108 0.5 -0.354496028108 +UniRef50_F0FD43 13.4322435648 0.499999999998 -12.9322435648 +UniRef50_G0XA87 0.0113875316452 0.5 0.488612468355 +UniRef50_S8AX05 NLPA family lipoprotein 0.193108878786 0.5 0.306891121214 +UniRef50_J9YR28 Rhodanese like domain containing protein 0.00493912440014 0.5 0.495060875599 +UniRef50_Q218J2 Molybdopterin dehydrogenase, FAD binding 3.22565628799 0.500000000001 -2.72565628799 +UniRef50_UPI00042C9909 PREDICTED 0.154068253557 0.5 0.345931746444 +UniRef50_Q21M27 Glucose 1 phosphate adenylyltransferase 0.205530748337 0.5 0.294469251663 +UniRef50_UPI00042517AA coproporphyrinogen III oxidase 0.198229827571 0.5 0.301770172429 +UniRef50_Q3JUF7 0.00482328619821 0.5 0.495176713801 +UniRef50_D8HGC2 0.0666587531691 0.5 0.433341246831 +UniRef50_UPI00047BCF38 AsnC family transcriptional regulator 1.12829739244 0.5 -0.628297392437 +UniRef50_UPI00036EA5F9 hypothetical protein, partial 0.174546553798 0.5 0.325453446202 +UniRef50_P39347 Putative prophage P4 integrase 3.272962156 0.5 -2.772962156 +UniRef50_A0A052HCP6 PF07120 family protein 0.313399852941 0.5 0.186600147059 +UniRef50_Q7MVV7 Thymidine kinase 0.657079357087 0.5 -0.157079357087 +UniRef50_F0QIN2 Transcriptional regulator, TetR family 0.0100489842646 0.5 0.489951015735 +UniRef50_P0AFJ9 Low affinity inorganic phosphate transporter 1 1.38416756978 0.5 -0.884167569776 +UniRef50_D0LA73 0.353327701262 0.5 0.146672298738 +UniRef50_A0A008HNV8 3.48443119372 0.500000000001 -2.98443119372 +UniRef50_UPI00047161BF thioredoxin 0.759520312286 0.5 -0.259520312286 +UniRef50_Q3HKI8 DSBA oxidoreductase 1.2788238907 0.499999999999 -0.778823890699 +UniRef50_B6AH12 NAD dependent epimerase dehydratase family protein 1.76765246642 0.5 -1.26765246642 +UniRef50_UPI000463295C hypothetical protein 1.45918227055 0.499999999999 -0.959182270545 +UniRef50_UPI000414D457 hypothetical protein 0.345009878064 0.5 0.154990121936 +UniRef50_Q1J1L0 Mannose 6 phosphate isomerase, type 1 0.00397060401031 0.5 0.49602939599 +UniRef50_O32165 FeS cluster assembly protein SufD 1.5915214826 0.499999999999 -1.0915214826 +UniRef50_Q08329 Ribosomal RNA small subunit methyltransferase I 0.415310495196 0.5 0.0846895048044 +UniRef50_W4UF17 Beta mannosidase 0.0120576999599 0.5 0.48794230004 +UniRef50_J0S0K6 0.346552927091 0.5 0.153447072909 +UniRef50_A9VTC9 Aspartate carbamoyltransferase 0.623208247017 0.5 -0.123208247017 +UniRef50_UPI00046A3857 hypothetical protein 0.0244083396241 0.5 0.475591660376 +UniRef50_UPI00036BBCF4 MULTISPECIES 1.15746916451 0.5 -0.657469164515 +UniRef50_Q2GJV5 Polyribonucleotide nucleotidyltransferase 0.188246202434 0.5 0.311753797566 +UniRef50_D3ERJ1 Energy coupling factor transporter transmembrane protein EcfT 1.38744789038 0.5 -0.887447890377 +UniRef50_H6PBJ5 ThiW protein 0.243556775138 0.5 0.256443224862 +UniRef50_A6LIS9 7 cyano 7 deazaguanine synthase 0.0648704477486 0.5 0.435129552251 +UniRef50_UPI00022CAA8B PREDICTED 0.215247109238 0.5 0.284752890762 +UniRef50_A3N352 N acetylneuraminate lyase 2.52633628962 0.5 -2.02633628962 +UniRef50_T2K100 CadX 1.22676268202 0.5 -0.726762682015 +UniRef50_Q9I2Y8 0.133251794512 0.5 0.366748205488 +UniRef50_UPI0003633A56 hypothetical protein 0.128424501306 0.5 0.371575498694 +UniRef50_Q8CMW6 IS605 IS200 like transposase 1.04586417368 0.5 -0.545864173679 +UniRef50_P75810 Inner membrane protein YbjJ 2.68083894677 0.500000000002 -2.18083894677 +UniRef50_G7MCQ3 0.286556947955 0.5 0.213443052045 +UniRef50_P43386 Glutamine synthetase 0.0374627896557 0.5 0.462537210344 +UniRef50_J7QU36 Hydrogenase 4 membrane subunit 1.17682810006 0.5 -0.676828100056 +UniRef50_UPI0003686401 hypothetical protein 5.10976771579 0.5 -4.60976771579 +UniRef50_F9XXP5 Transporter, Sodium bile acid symporter family, macrolide resistance protein 0.364474693295 0.5 0.135525306705 +UniRef50_A0A022M296 Short chain dehydrogenase 0.416274910056 0.5 0.0837250899437 +UniRef50_A4XKN9 Cytidylate kinase 0.382853832698 0.5 0.117146167302 +UniRef50_Q6ZAM9 0.417174649277 0.5 0.0828253507234 +UniRef50_D7BLX5 Extracellular solute binding protein family 1 0.569655514986 0.5 -0.0696555149863 +UniRef50_UPI0003661C1B hypothetical protein 0.192680242601 0.5 0.307319757399 +UniRef50_Q8XU90 Uroporphyrinogen decarboxylase 0.074225588201 0.5 0.425774411799 +UniRef50_R6HIJ1 0.11708116355 0.5 0.38291883645 +UniRef50_C3MCT2 1.51271483539 0.5 -1.01271483539 +UniRef50_Q5HR58 Decarboxylase family protein 3.43476363733 0.499999999999 -2.93476363733 +UniRef50_UPI000351149F PREDICTED 0.198848342528 0.5 0.301151657472 +UniRef50_G8V3B6 Heme ABC exporter, ATP binding protein CcmA 2.1569910826 0.499999999999 -1.6569910826 +UniRef50_P94417 Aspartokinase 3 0.322460947654 0.5 0.177539052346 +UniRef50_D4HA31 D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase 0.0594233223445 0.5 0.440576677655 +UniRef50_A0A023KQS7 Formate dehydrogenase 0.662534024941 0.5 -0.162534024941 +UniRef50_P31436 Sugar efflux transporter C 2.15259441657 0.5 -1.65259441657 +UniRef50_B9KJG1 Flagellar proximal rod protein FlgC 0.502493059096 0.5 -0.0024930590956 +UniRef50_Q9PNB4 Elongation factor Ts 0.0522879391712 0.5 0.447712060829 +UniRef50_A4WSY4 Transcriptional regulator, RpiR family 5.97267740806 0.500000000002 -5.47267740806 +UniRef50_G0VNQ5 Lipoprotein 1.87630281509 0.499999999999 -1.37630281509 +UniRef50_UPI00047EE782 DNA gyrase subunit A 0.70316415424 0.5 -0.20316415424 +UniRef50_Q5SKN9 Long chain fatty acid CoA ligase 0.0212239673106 0.5 0.47877603269 +UniRef50_Q84630 0.327121736178 0.5 0.172878263822 +UniRef50_P09053 Valine pyruvate aminotransferase 0.730903710975 0.5 -0.230903710975 +UniRef50_I6S241 2.48510836805 0.5 -1.98510836805 +UniRef50_UPI0003758FEB hypothetical protein 0.314105680272 0.5 0.185894319728 +UniRef50_P45039 Protein CysZ homolog 3.43229111707 0.5 -2.93229111707 +UniRef50_UPI00036B404B hypothetical protein 1.35955996633 0.499999999999 -0.859559966331 +UniRef50_A7V4H6 0.0932672119558 0.5 0.406732788045 +UniRef50_P77546 1.34671699844 0.5 -0.846716998436 +UniRef50_Q5HPS3 30S ribosomal protein L7Ae, putative 0.064332160677 0.5 0.435667839323 +UniRef50_D7CXV9 Electron transfer flavoprotein alpha beta subunit 0.00290580803787 0.5 0.497094191962 +UniRef50_Q5HQF3 Transposase, IS200 family, truncation 0.0500630974083 0.5 0.449936902591 +UniRef50_E3F2N0 Transcriptional regulator, LysR family protein 4.31746373923 0.499999999995 -3.81746373923 +UniRef50_R5J6S8 Thioredoxin disulfide reductase 0.693937067079 0.5 -0.193937067079 +UniRef50_UPI000476E0F1 hypothetical protein 0.193089291656 0.5 0.306910708344 +UniRef50_Q1QDN1 Aminotransferase 0.0174043271516 0.5 0.482595672849 +UniRef50_G7M5P4 0.00172973362523 0.5 0.498270266375 +UniRef50_P76633 0.661445784412 0.5 -0.161445784412 +UniRef50_P76639 2.40490134248 0.5 -1.90490134248 +UniRef50_G2FJU8 CRISPR associated helicase Cas3 1.89419960917 0.5 -1.39419960917 +UniRef50_O05240 Probable NADH dependent butanol dehydrogenase 2 0.00240166652945 0.5 0.497598333471 +UniRef50_E0TGB8 2.22142567249 0.499999999997 -1.72142567248 +UniRef50_UPI00047C43B7 deoxyguanosinetriphosphate triphosphohydrolase 0.416422180999 0.5 0.0835778190012 +UniRef50_C5D4L1 Transcriptional regulator, RpiR family 0.209970967568 0.5 0.290029032432 +UniRef50_A1BHE5 Chorismate synthase 0.0506070213444 0.5 0.449392978656 +UniRef50_A8LS46 2.53682783093 0.499999999999 -2.03682783093 +UniRef50_D6K042 Nucleotide binding protein 0.0554837511588 0.5 0.444516248841 +UniRef50_UPI000345D912 hypothetical protein 0.387679473768 0.5 0.112320526232 +UniRef50_UPI00047E8FE9 hypothetical protein 0.114793791656 0.5 0.385206208344 +UniRef50_Q820Q4 Siroheme synthase 0.100934750351 0.5 0.399065249649 +UniRef50_UPI0003B3A117 adenosylcobinamide amidohydrolase 0.270982319093 0.5 0.229017680907 +UniRef50_UPI00036900A5 hypothetical protein 0.846554310842 0.5 -0.346554310842 +UniRef50_UPI00040265B6 transcriptional regulator 0.0450597372206 0.5 0.45494026278 +UniRef50_Q21AL1 4.55028013936 0.500000000001 -4.05028013936 +UniRef50_B0V8K7 Pilin like competence factor 0.0126037408586 0.5 0.487396259141 +UniRef50_A3TXU1 2.75790286156 0.499999999999 -2.25790286156 +UniRef50_UPI000237DC3E hypothetical protein 0.0406289270746 0.5 0.459371072925 +UniRef50_A1SVN9 D erythrose 4 phosphate dehydrogenase 1.08206317411 0.5 -0.582063174111 +UniRef50_S9S862 3.32285449728 0.499999999999 -2.82285449727 +UniRef50_UPI0002559A2B hypothetical protein 5.58596708556 0.500000000001 -5.08596708556 +UniRef50_Q8YAE3 Ribonuclease M5 4.36926233417 0.5 -3.86926233417 +UniRef50_UPI00035C7818 hypothetical protein 0.333084050176 0.5 0.166915949824 +UniRef50_E8SJM3 Siderophore staphylobactin biosynthesis protein SbnC 3.14115625334 0.499999999998 -2.64115625333 +UniRef50_UPI0004720A04 diguanylate cyclase, partial 0.0241717791689 0.5 0.475828220831 +UniRef50_Q73F30 Tn7 like transposition protein D 0.05301872794 0.5 0.44698127206 +UniRef50_Q7N5M7 Flagellar L ring protein 6.80245614499 0.500000000003 -6.302456145 +UniRef50_G7M4H8 Secretion protein HlyD family protein 0.071031080776 0.5 0.428968919224 +UniRef50_O87320 Putative aminotransferase AatC 0.0248152429325 0.5 0.475184757068 +UniRef50_F7XGW6 Oxidoreductase protein 0.99650533785 0.5 -0.49650533785 +UniRef50_V3W6L3 Glucarate permease 4.48336422198 0.500000000001 -3.98336422198 +UniRef50_J2WQI8 0.960546164474 0.5 -0.460546164474 +UniRef50_Q1C138 Autoinducer 2 import ATP binding protein LsrA 1.54030246987 0.499999999999 -1.04030246987 +UniRef50_D4HCC5 Transcriptional regulator, LacI family 0.0663677813457 0.5 0.433632218654 +UniRef50_UPI00046CFD96 hypothetical protein 0.486602382485 0.5 0.0133976175147 +UniRef50_Q9HT89 0.109695018221 0.5 0.390304981779 +UniRef50_UPI00035FFDBB hypothetical protein 0.29518179219 0.5 0.20481820781 +UniRef50_Q134N9 Methionine import ATP binding protein MetN 0.287900610712 0.5 0.212099389288 +UniRef50_A0A059LBR4 0.102219815096 0.5 0.397780184904 +UniRef50_B8C7V4 1.07051294774 0.5 -0.570512947742 +UniRef50_D9T5Q5 1.52284703411 0.500000000002 -1.02284703411 +UniRef50_UPI0002F33E46 hypothetical protein 8.03337089177 0.499999999996 -7.53337089176 +UniRef50_UPI00035D42F6 hypothetical protein 0.102112251053 0.5 0.397887748947 +UniRef50_D5AL10 Transcriptional regulator, LuxR family 1.49060288303 0.5 -0.990602883035 +UniRef50_Q9RY69 0.00428146735129 0.5 0.495718532649 +UniRef50_J0URR6 0.0742889934044 0.5 0.425711006595 +UniRef50_E3A6Z3 0.184905711819 0.5 0.315094288181 +UniRef50_K7SLE8 Acyl CoA thioester hydrolase, YbgC YbaW family 0.0679594221088 0.5 0.432040577891 +UniRef50_M4QZ02 Ribosomal RNA small subunit methyltransferase D 0.0797872743696 0.499999999999 0.420212725631 +UniRef50_C9RQ15 Nitrogenase 0.244313523325 0.5 0.255686476675 +UniRef50_UPI0002624B69 thioredoxin disulfide reductase, partial 0.766480248374 0.5 -0.266480248374 +UniRef50_R4NK63 Valyl tRNA synthetase 2.74979173118 0.499999999999 -2.24979173118 +UniRef50_UPI0004448C06 PREDICTED 0.167219004855 0.5 0.332780995145 +UniRef50_O03042 Ribulose bisphosphate carboxylase large chain 1.52675746143 0.5 -1.02675746143 +UniRef50_UPI0003B45D4A transcription termination factor Rho 0.11980576889 0.5 0.380194231109 +UniRef50_I0EV03 Cytosine specific methyltransferase 0.0603868858779 0.5 0.439613114123 +UniRef50_B2V0J5 Phosphopentomutase 0.0438618631811 0.500000000001 0.456138136818 +UniRef50_A1R8R6 30S ribosomal protein S11 0.214924355359 0.5 0.285075644641 +UniRef50_P09546 Bifunctional protein PutA 0.951173659587 0.5 -0.451173659587 +UniRef50_UPI0003B6A42C DNA helicase 0.518721295814 0.5 -0.0187212958136 +UniRef50_M1MDU9 Permease 0.121029193048 0.5 0.378970806953 +UniRef50_A5UNQ0 Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family 2.23850449123 0.499999999999 -1.73850449122 +UniRef50_E1VK27 Phenylacetic acid degradation like protein 0.276582867809 0.5 0.223417132191 +UniRef50_UPI0002F8E904 hypothetical protein 0.265390708451 0.5 0.234609291549 +UniRef50_F5ZJY8 Membrane protein 0.141890769348 0.5 0.358109230652 +UniRef50_A5UJT5 0.769820366009 0.5 -0.269820366009 +UniRef50_Q37626 NADH ubiquinone oxidoreductase chain 6 2.05286747898 0.5 -1.55286747898 +UniRef50_UPI00046648B3 ABC transporter 0.128998073671 0.5 0.371001926329 +UniRef50_UPI0004772455 metallophosphoesterase, partial 0.00302969324988 0.5 0.49697030675 +UniRef50_K0P9U6 1.01727239023 0.5 -0.517272390229 +UniRef50_M4X2Y6 2.21000904879 0.500000000002 -1.71000904879 +UniRef50_Q9S208 Putative 3 methyladenine DNA glycosylase 0.248274774084 0.5 0.251725225916 +UniRef50_UPI0003ADF309 PREDICTED 0.437240280735 0.5 0.062759719265 +UniRef50_X7EE68 2.75398045241 0.500000000001 -2.25398045241 +UniRef50_B4DT69 Dihydrolipoyl dehydrogenase, mitochondrial 0.162315578955 0.5 0.337684421045 +UniRef50_UPI0004773262 aldehyde oxidoreductase 0.747035153672 0.5 -0.247035153672 +UniRef50_P31474 Probable transport protein HsrA 1.68341495428 0.5 -1.18341495428 +UniRef50_R4LLL8 0.811181828659 0.5 -0.311181828659 +UniRef50_T1XS28 3.41496936644 0.499999999996 -2.91496936644 +UniRef50_Q6FDP2 0.106108382985 0.5 0.393891617015 +UniRef50_T6QCZ1 Acetoacetate metabolism regulatory protein AtoC 0.401622622516 0.5 0.0983773774839 +UniRef50_I0C564 Adenine specific methyltransferase 2.36116438228 0.500000000002 -1.86116438228 +UniRef50_P0ABM3 Heme exporter protein C 1.21453809789 0.5 -0.714538097888 +UniRef50_P31442 Multidrug resistance protein D 3.15281856497 0.499999999999 -2.65281856497 +UniRef50_K8M5I2 3.43145569572 0.5 -2.93145569572 +UniRef50_UPI000369D268 hypothetical protein 1.93416595358 0.5 -1.43416595358 +UniRef50_Q7DDR9 Adenosine monophosphate protein transferase NmFic 1.36901957688 0.5 -0.869019576876 +UniRef50_UPI00042A93F8 hypothetical protein 0.282494230029 0.5 0.217505769971 +UniRef50_UPI0004292FB7 hypothetical protein 1.02135177427 0.5 -0.521351774271 +UniRef50_H3Y6A9 PF04507 domain protein 0.359378851269 0.5 0.140621148731 +UniRef50_S5XQS3 Acetylornithine N succinyldiaminopimelate aminotransferase 2.20681961924 0.499999999999 -1.70681961923 +UniRef50_E3HI99 0.343038557512 0.5 0.156961442488 +UniRef50_Q9SLK0 Peroxisomal isocitrate dehydrogenase [NADP] 1.99029620316 0.499999999999 -1.49029620316 +UniRef50_P0A6X2 Glutamyl tRNA reductase 1.29839355721 0.5 -0.798393557206 +UniRef50_UPI00035D06F8 hypothetical protein 0.31125876385 0.5 0.18874123615 +UniRef50_M4JQT7 Transcriptional regulator 0.428407277877 0.5 0.0715927221227 +UniRef50_F8CFH1 Acetyl CoA carboxylase carboxyltransferase 0.114726879141 0.5 0.385273120859 +UniRef50_UPI00047EBCE0 carboxymuconolactone decarboxylase 0.00850756346923 0.5 0.491492436531 +UniRef50_A0A022H066 Transcriptional regulator 1.52156981103 0.5 -1.02156981103 +UniRef50_P64636 GMP IMP nucleotidase YrfG 6.0954343931 0.5 -5.5954343931 +UniRef50_UPI0004686F41 hypothetical protein 0.606557164081 0.5 -0.106557164081 +UniRef50_G7U923 Copper exporting ATPase 0.0231142493348 0.5 0.476885750665 +UniRef50_R9SM10 Energy converting hydrogenase B subunit E EhbE 0.534537242153 0.5 -0.034537242153 +UniRef50_UPI0003752C76 hypothetical protein 0.855057134519 0.5 -0.355057134519 +UniRef50_Q60DH5 2.37844264424 0.5 -1.87844264424 +UniRef50_A3VZ88 ISxac3 transposase 0.494638817092 0.5 0.00536118290808 +UniRef50_E6AYN5 0.808966968695 0.5 -0.308966968695 +UniRef50_UPI00047C2D15 transporter 0.494131427401 0.5 0.00586857259858 +UniRef50_D3PRK0 Phenylacetate CoA ligase 0.00118834209653 0.5 0.498811657903 +UniRef50_F4C648 3.07273420801 0.499999999999 -2.57273420801 +UniRef50_K0SPN4 0.201104214806 0.5 0.298895785194 +UniRef50_P69680 Ammonia channel 0.922569932671 0.5 -0.422569932671 +UniRef50_P77499 Probable ATP dependent transporter SufC 1.90211135813 0.500000000002 -1.40211135813 +UniRef50_UPI00030D778A hypothetical protein 2.85896174382 0.500000000005 -2.35896174382 +UniRef50_D1BCT4 ABC type hemin transport system, periplasmic component 0.145210852088 0.5 0.354789147912 +UniRef50_B7IAM2 0.0107555756298 0.5 0.48924442437 +UniRef50_UPI00047272A3 glycerol 3 phosphate ABC transporter permease 0.0768146380327 0.5 0.423185361967 +UniRef50_UPI00026277B1 transketolase 1.32111046903 0.5 -0.821110469027 +UniRef50_Q2S0W2 Chorismate synthase 0.0390843499385 0.500000000001 0.460915650061 +UniRef50_P56935 3 isopropylmalate dehydratase small subunit 0.147349094686 0.5 0.352650905314 +UniRef50_D4HFH3 Exo alpha sialidase 0.00712202358335 0.5 0.492877976417 +UniRef50_H6PCX4 Competence protein 0.352209048158 0.5 0.147790951842 +UniRef50_UPI00047A82E9 hemolysin 0.423424518684 0.5 0.0765754813156 +UniRef50_A8GIW3 Probable L aspartate dehydrogenase 0.0617978239666 0.5 0.438202176033 +UniRef50_Q9HWI0 D alanine D alanine ligase A 0.308368153166 0.5 0.191631846834 +UniRef50_P49915 GMP synthase [glutamine hydrolyzing] 0.725790591508 0.5 -0.225790591508 +UniRef50_UPI0002375EBD glucose methanol choline oxidoreductase, partial 1.77340736098 0.5 -1.27340736098 +UniRef50_C0B1I9 Formate transporter FocA 0.127250976999 0.500000000001 0.372749023001 +UniRef50_D2NT48 Predicted thioesterase involved in non ribosomal peptide biosynthesis 0.0333961056088 0.5 0.466603894391 +UniRef50_A6LSK6 Thiamine pyrophosphokinase 0.300261816758 0.5 0.199738183242 +UniRef50_UPI000399CFD2 type 12 methyltransferase 0.113789288736 0.5 0.386210711264 +UniRef50_R9ZNA1 0.305172521429 0.5 0.194827478571 +UniRef50_UPI0004213A08 chemotaxis protein CheD 2.0856998841 0.5 -1.5856998841 +UniRef50_D3HDQ8 3.84077516714 0.5 -3.34077516714 +UniRef50_A7X154 Probable heme iron transport system permease protein IsdF 2.16722111841 0.5 -1.66722111841 +UniRef50_UPI0002651C73 PREDICTED 0.233650025537 0.5 0.266349974463 +UniRef50_E8SK39 DNA polymerase III polC type 2.12494418471 0.499999999998 -1.62494418471 +UniRef50_UPI00047262F8 hypothetical protein 0.720847167799 0.5 -0.220847167799 +UniRef50_P07874 Alginate biosynthesis protein AlgA 0.614173572304 0.5 -0.114173572304 +UniRef50_P50648 Ribonucleoside diphosphate reductase large subunit 0.00426194283895 0.5 0.495738057161 +UniRef50_B1XZJ7 Pseudouridine synthase 0.0252630474748 0.5 0.474736952525 +UniRef50_UPI0003B7021A amino acid transporter 0.00450155866129 0.5 0.495498441339 +UniRef50_UPI0003C0FDA1 PREDICTED 0.0169947149862 0.5 0.483005285014 +UniRef50_UPI0003B40AC9 hypothetical protein 0.0112096433187 0.5 0.488790356681 +UniRef50_UPI00047E50BD hypothetical protein 0.279536785481 0.5 0.220463214519 +UniRef50_Q13V14 tRNA ) methyltransferase 0.0889353250759 0.5 0.411064674924 +UniRef50_L0KY29 0.963639779568 0.5 -0.463639779568 +UniRef50_Q9RWG0 0.00226133700307 0.5 0.497738662997 +UniRef50_Q9RWG3 0.0032067228933 0.5 0.496793277106 +UniRef50_E6MYP0 0.835749118968 0.5 -0.335749118968 +UniRef50_Q83GH8 Peptide deformylase 0.0701937968852 0.5 0.429806203115 +UniRef50_W5XCC5 Putative ferric uptake regulator 3.76020514795 0.499999999995 -3.26020514794 +UniRef50_E5U1W5 0.190329498149 0.5 0.309670501851 +UniRef50_G7ZUI4 1.27191657813 0.5 -0.771916578127 +UniRef50_D1WQ15 KxYKxGKxW signal domain protein 0.314031582679 0.5 0.185968417321 +UniRef50_C7CKD2 0.295395995587 0.5 0.204604004413 +UniRef50_UPI00046E9E57 hypothetical protein 0.332562765081 0.5 0.167437234919 +UniRef50_UPI0003D0659C 50S ribosomal protein L6 0.628035669748 0.5 -0.128035669748 +UniRef50_O27801 Ribosomal RNA large subunit methyltransferase E 1.51494448586 0.500000000001 -1.01494448586 +UniRef50_A0A013I2H1 0.365942008623 0.5 0.134057991377 +UniRef50_E6MXU9 Bacterial regulatory helix turn helix , lysR family protein 0.0329145497365 0.5 0.467085450263 +UniRef50_Q1MK98 0.3962050683 0.5 0.1037949317 +UniRef50_A4CFF4 Excinuclease ABC subunit C 0.37851615875 0.5 0.12148384125 +UniRef50_F7ZCB4 1.06474988568 0.500000000001 -0.564749885683 +UniRef50_A5UJ70 Peptide methionine sulfoxide reductase, PMSR 0.933620356023 0.5 -0.433620356023 +UniRef50_G4QEC1 Na+ H+ antiporter, NhaC family protein 1.33582077893 0.5 -0.835820778925 +UniRef50_UPI0003B48120 aldehyde activating protein 0.443690532387 0.5 0.0563094676129 +UniRef50_H8FT83 0.793176119245 0.5 -0.293176119245 +UniRef50_UPI00046A638F hypothetical protein 0.802164570313 0.5 -0.302164570313 +UniRef50_F0P106 Thioesterase superfamily protein 0.0129415954001 0.5 0.4870584046 +UniRef50_W9C3F0 0.325285902341 0.5 0.174714097659 +UniRef50_E1YHR1 0.049395162055 0.5 0.450604837945 +UniRef50_UPI0002B46230 PREDICTED 0.1263839973 0.500000000001 0.373616002699 +UniRef50_UPI0001BF6B99 90S preribosome component RRP12 0.0212811130978 0.5 0.478718886902 +UniRef50_UPI0003B36FDF histidinol dehydrogenase 0.326656509137 0.5 0.173343490863 +UniRef50_A6LU03 0.0820813527651 0.5 0.417918647235 +UniRef50_UPI00026282A2 ATP dependent RNA helicase 0.0514219027005 0.5 0.448578097299 +UniRef50_H9UXV0 Glycerol 3 phosphate regulon repressor 0.3142870354 0.5 0.1857129646 +UniRef50_T5BIS1 0.0681469948598 0.5 0.43185300514 +UniRef50_A6LZX4 0.10956620105 0.5 0.39043379895 +UniRef50_D7GEA9 Regulatory protein 0.0548955657925 0.5 0.445104434207 +UniRef50_Q1GEZ2 Phosphoribosyl ATP pyrophosphatase 4.762903417 0.499999999999 -4.262903417 +UniRef50_A7HK75 Phospho N acetylmuramoyl pentapeptide transferase 0.205526478656 0.5 0.294473521344 +UniRef50_Z9UWI7 0.122437511217 0.5 0.377562488783 +UniRef50_UPI0003823FAA hypothetical protein 0.147305023766 0.5 0.352694976234 +UniRef50_A6LV76 ABC transporter related 0.0962912357303 0.500000000001 0.403708764269 +UniRef50_F3H836 ABC transport protein, inner membrane component 1.26904782829 0.5 -0.769047828291 +UniRef50_Q99UN8 Malonyl CoA acyl carrier protein transacylase 1.48348923012 0.500000000001 -0.983489230124 +UniRef50_J3ML95 0.0557990489709 0.5 0.444200951029 +UniRef50_Q8PZP6 NH dependent NAD(+) synthetase 1.83151958253 0.5 -1.33151958253 +UniRef50_G7M7P0 Pseudouridine synthase 0.158783641339 0.5 0.341216358661 +UniRef50_UPI00006CF5D0 Ribonucleotide reductase, barrel domain containing protein 0.00911543013495 0.5 0.490884569865 +UniRef50_B2V1J4 Oligoendopeptidase F 0.176325076774 0.499999999999 0.323674923227 +UniRef50_X0SDU2 Marine sediment metagenome DNA, contig 0.0648594048656 0.5 0.435140595134 +UniRef50_A6LWR2 Pentapeptide repeat protein 0.203462068586 0.5 0.296537931414 +UniRef50_I9K9U7 0.540769627001 0.5 -0.0407696270007 +UniRef50_B8GPV2 Shikimate kinase 0.00285708049983 0.5 0.4971429195 +UniRef50_B1MWT5 Predicted permease 0.713284325635 0.5 -0.213284325635 +UniRef50_K7S768 GHMP kinase, N terminal domain containing protein 0.0101552697774 0.5 0.489844730223 +UniRef50_UPI00037B6D4D hypothetical protein 0.731258364558 0.5 -0.231258364558 +UniRef50_A0A058Z9B5 1.32496846308 0.5 -0.824968463083 +UniRef50_A3WB27 0.606883974271 0.5 -0.106883974271 +UniRef50_UPI0003B50A22 amino acid lyase 0.173910846598 0.5 0.326089153402 +UniRef50_Q9JVF4 Bis tetraphosphatase, symmetrical 0.0130122864441 0.5 0.486987713556 +UniRef50_S3ZBV7 7.95733109853 0.500000000002 -7.45733109853 +UniRef50_K1ZWF0 Dihydroorotate dehydrogenase 0.152957602904 0.5 0.347042397096 +UniRef50_A6M087 AraC type transcriptional regulator domain protein 0.1063974494 0.5 0.3936025506 +UniRef50_UPI0003631244 hypothetical protein 0.63207498866 0.5 -0.13207498866 +UniRef50_A7X1H5 2.14925253482 0.499999999998 -1.64925253482 +UniRef50_D6UEI8 0.580600228294 0.5 -0.080600228294 +UniRef50_M0VCY1 0.0171759920967 0.5 0.482824007903 +UniRef50_C1MV00 Predicted protein 2.95459763158 0.5 -2.45459763158 +UniRef50_Q0TRG3 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.08574707677 0.5 -0.585747076773 +UniRef50_UPI000369953F resolvase 0.215030067917 0.5 0.284969932083 +UniRef50_F0RM02 Metallophosphoesterase 0.00706638886402 0.5 0.492933611136 +UniRef50_UPI0004633E17 dTDP 4 dehydrorhamnose 3,5 epimerase 0.288809767629 0.5 0.211190232371 +UniRef50_UPI00037B304C hypothetical protein 0.125469353834 0.5 0.374530646166 +UniRef50_UPI000463C82A aldehyde reductase 0.426733636898 0.5 0.0732663631018 +UniRef50_Q4L9Z0 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.84380041156 0.499999999998 -3.34380041156 +UniRef50_Q56110 Outer membrane protein S1 2.11939395726 0.5 -1.61939395726 +UniRef50_B7H4N1 0.0145303626753 0.5 0.485469637325 +UniRef50_UPI00031566CC hypothetical protein 0.052718894595 0.5 0.447281105405 +UniRef50_UPI0003647B3B 50S ribosomal protein L5 0.391988237843 0.5 0.108011762157 +UniRef50_S9R870 3.2607190264 0.5 -2.7607190264 +UniRef50_D6SE47 2.49375073703 0.500000000001 -1.99375073703 +UniRef50_Q9FS88 2 methylacyl CoA dehydrogenase, mitochondrial 0.0167117268789 0.5 0.483288273121 +UniRef50_UPI0004691E44 hypothetical protein 0.261117154588 0.5 0.238882845412 +UniRef50_A9M410 0.0510346463929 0.5 0.448965353607 +UniRef50_Q1QE72 Diacylglycerol O acyltransferase 0.00789465031575 0.5 0.492105349684 +UniRef50_F0KF01 0.0193008057681 0.5 0.480699194232 +UniRef50_UPI000469EC64 peptidase S11 0.111172604905 0.5 0.388827395095 +UniRef50_UPI0004638197 pseudouridine synthase 0.190976554921 0.5 0.309023445079 +UniRef50_UPI00047D4A1B 3,4 dihydroxy 2 butanone 4 phosphate synthase 3.27237029186 0.499999999998 -2.77237029186 +UniRef50_H8YVR6 Mating pair stabilization protein TraN 0.286212831353 0.5 0.213787168647 +UniRef50_Q92E26 Lin0635 protein 0.0082178344104 0.5 0.49178216559 +UniRef50_UPI0004787C34 D ala D ala transporter subunit 0.207872880999 0.5 0.292127119001 +UniRef50_UPI0003B75E15 ABC transporter 0.509717417803 0.5 -0.0097174178031 +UniRef50_W4NLY9 Mobile element protein 1.24128109525 0.5 -0.741281095246 +UniRef50_E9AHU2 Proteophosphoglycan 5 0.168722534368 0.5 0.331277465632 +UniRef50_Q9RR77 Cytochrome c oxidase, subunit I 0.00283761313656 0.5 0.497162386863 +UniRef50_A6M3F7 Sigma 54 factor, interaction domain containing protein 0.0834855858745 0.500000000001 0.416514414125 +UniRef50_P0AA77 D galactonate transporter 1.91429131789 0.5 -1.41429131789 +UniRef50_X0SPN8 Marine sediment metagenome DNA, contig 0.0771351483127 0.5 0.422864851688 +UniRef50_M2TDC8 0.278184154396 0.5 0.221815845604 +UniRef50_K6MT38 0.0354301113346 0.5 0.464569888666 +UniRef50_F2SGG3 Glutathione S transferase 2.7203807556 0.5 -2.2203807556 +UniRef50_H7CWV1 Phage shock protein A 0.0604507153353 0.5 0.439549284665 +UniRef50_M9RNM4 39.3651444586 0.499999999977 -38.8651444586 +UniRef50_A5ULI2 tRNA pseudouridine synthase A 7.1225748672 0.500000000002 -6.6225748672 +UniRef50_UPI00025578F4 dihydroxy acid dehydratase, partial 0.0769122150531 0.5 0.423087784947 +UniRef50_B3GZA0 Siroheme synthase 0.58156813696 0.5 -0.0815681369597 +UniRef50_K7ZDL1 DeoC LacD aldolase family protein 2.45680233857 0.5 -1.95680233857 +UniRef50_UPI00034553FE hypothetical protein 0.318922451485 0.5 0.181077548515 +UniRef50_C1MKI4 Predicted protein 0.991443603201 0.5 -0.491443603201 +UniRef50_C0Z7W5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 2.21199361073 0.5 -1.71199361073 +UniRef50_UPI000303E0FF hypothetical protein 0.361767935029 0.5 0.138232064971 +UniRef50_Q5NYZ3 Nitrate nitrite antiporter 0.967121636878 0.5 -0.467121636878 +UniRef50_Q3JWL2 0.277632151623 0.5 0.222367848377 +UniRef50_N7V1R0 0.370076599016 0.5 0.129923400984 +UniRef50_A4VMQ2 0.114935714237 0.5 0.385064285763 +UniRef50_W6KAJ6 BRO family, N terminal domain protein. Phage related DNA binding protein 0.542411939041 0.5 -0.0424119390408 +UniRef50_G8AH05 0.245121749555 0.5 0.254878250445 +UniRef50_Q6GG70 GTP pyrophosphokinase 2.69237392561 0.500000000003 -2.19237392561 +UniRef50_UPI0003B47D61 tRNA delta isopentenylpyrophosphate transferase 0.191989837197 0.5 0.308010162803 +UniRef50_B7Z712 60 kDa heat shock protein, mitochondrial 0.260509595342 0.5 0.239490404658 +UniRef50_T5X346 Sensor protein evgS 1.36852026991 0.5 -0.868520269909 +UniRef50_G4LPB8 ATP binding permease fusion ABC transporter 0.429760305833 0.5 0.070239694167 +UniRef50_Q6C5E4 YALI0E18766p 0.318199611974 0.5 0.181800388026 +UniRef50_A6V6R4 0.427993619763 0.5 0.0720063802368 +UniRef50_Q89AK1 Glyceraldehyde 3 phosphate dehydrogenase 0.882220569082 0.5 -0.382220569082 +UniRef50_Q5HIB4 Serine aspartate repeat containing protein C 2.26222348958 0.500000000001 -1.76222348958 +UniRef50_UPI0003F08AB5 PREDICTED 0.863418817628 0.5 -0.363418817628 +UniRef50_B1TFY4 LigA 1.91668512072 0.5 -1.41668512072 +UniRef50_Q9RS49 Amino acid ABC transporter, periplasmic amino acid binding protein 0.00825908154698 0.5 0.491740918453 +UniRef50_V8BEZ6 0.486129830725 0.5 0.0138701692745 +UniRef50_P0ACL6 Glc operon transcriptional activator 0.874267772038 0.5 -0.374267772038 +UniRef50_U2SGB1 Imelysin 0.0779327889854 0.5 0.422067211015 +UniRef50_M1N514 0.215988497164 0.5 0.284011502836 +UniRef50_B4RCM7 NADH quinone oxidoreductase subunit C 1.72462932463 0.499999999998 -1.22462932463 +UniRef50_UPI00040C5C40 multidrug ABC transporter ATPase 0.19949504182 0.5 0.30050495818 +UniRef50_A0A020WTM6 6 phospho beta galactosidase 2.5154985173 0.5 -2.0154985173 +UniRef50_UPI00016C5625 Putative bacteriophage holin protein 0.960642710403 0.5 -0.460642710403 +UniRef50_Q31I51 Zinc import ATP binding protein ZnuC 0.269223824699 0.5 0.230776175301 +UniRef50_V4R6H1 ATPase AAA 0.330622616916 0.5 0.169377383084 +UniRef50_Q1CUH1 Ketol acid reductoisomerase 0.000640402371292 0.5 0.499359597629 +UniRef50_D3E138 0.82118375243 0.5 -0.32118375243 +UniRef50_Q7UNN9 Bifunctional protein FolD 0.0037142971337 0.5 0.496285702866 +UniRef50_U6MKZ6 7.57672286752 0.499999999999 -7.07672286752 +UniRef50_I0C1R4 1.07066401117 0.5 -0.570664011172 +UniRef50_Q04E86 DNA directed RNA polymerase subunit beta 0.636888620582 0.5 -0.136888620582 +UniRef50_P14407 Fumarate hydratase class I, anaerobic 0.352352769463 0.5 0.147647230537 +UniRef50_Q74CZ6 5 nucleotidase SurE 0.0189695616245 0.5 0.481030438376 +UniRef50_UPI00035047B5 PREDICTED 0.780014567827 0.5 -0.280014567827 +UniRef50_H8MLE9 Pirin family protein 2.18871658517 0.500000000002 -1.68871658517 +UniRef50_B0VC75 0.0411377176858 0.5 0.458862282314 +UniRef50_X5DWG5 ABC 2 transporter family protein 2.38798959039 0.5 -1.88798959039 +UniRef50_Q6A8C6 ATP synthase gamma chain 0.0512048054047 0.5 0.448795194596 +UniRef50_R7YLT4 3.79694345985 0.500000000001 -3.29694345985 +UniRef50_UPI00037397F4 hypothetical protein 0.0919231294159 0.5 0.408076870584 +UniRef50_P0AA72 2.98262396136 0.500000000001 -2.48262396136 +UniRef50_A4EAZ9 2.12974484337 0.5 -1.62974484337 +UniRef50_UPI0004653BA0 hypothetical protein 0.859669312957 0.5 -0.359669312957 +UniRef50_UPI00045E6087 hypothetical protein 0.27198326414 0.5 0.22801673586 +UniRef50_UPI000378C160 hypothetical protein 0.256915984705 0.5 0.243084015295 +UniRef50_K0LJV9 0.554067178046 0.5 -0.0540671780457 +UniRef50_Q67N09 Shikimate kinase 0.438086121723 0.5 0.061913878277 +UniRef50_UPI00036A8298 hypothetical protein 0.201086930827 0.5 0.298913069173 +UniRef50_E3GX37 H+transporting two sector ATPase C subunit 0.912046950537 0.5 -0.412046950537 +UniRef50_UPI000382EE91 hypothetical protein 0.0139516336961 0.5 0.486048366304 +UniRef50_H9K6K8 0.257607512833 0.5 0.242392487167 +UniRef50_J0LGW4 1.85878669215 0.5 -1.35878669215 +UniRef50_A6LWE8 Ribonucleoside triphosphate reductase, adenosylcobalamin dependent 0.124617905514 0.5 0.375382094486 +UniRef50_Q1N9J0 Plasmid partitioning protein RepAa1 0.67047445033 0.5 -0.17047445033 +UniRef50_UPI0003AE07B3 PREDICTED 0.7692042827 0.5 -0.2692042827 +UniRef50_A9WM93 Uracil DNA glycosylase 0.0532717594734 0.5 0.446728240527 +UniRef50_A5IW30 1.33755565068 0.499999999998 -0.837555650673 +UniRef50_UPI0003D0C408 PREDICTED 0.197079530616 0.5 0.302920469384 +UniRef50_X4ZB59 EAL domain protein 0.0539467776504 0.5 0.44605322235 +UniRef50_UPI0001B46820 GTPase ObgE, partial 0.0409622117206 0.5 0.45903778828 +UniRef50_UPI000463A064 L asparagine permease 0.214474911172 0.5 0.285525088828 +UniRef50_UPI00035FE410 peptide ABC transporter permease 0.204849901512 0.5 0.295150098488 +UniRef50_Q5YS08 Ribonuclease 3 0.181929172317 0.5 0.318070827683 +UniRef50_A9AC17 L carnitine dehydratase bile acid inducible protein F 0.194290957029 0.5 0.305709042971 +UniRef50_P33919 1.95601812226 0.500000000001 -1.45601812227 +UniRef50_H1UL22 Dehydrogenase 3.43327353887 0.500000000003 -2.93327353887 +UniRef50_UPI0004782043 AsnC family transcriptional regulator 0.812610114661 0.5 -0.312610114661 +UniRef50_M9SF47 0.319560307808 0.5 0.180439692192 +UniRef50_UPI000470709D hypothetical protein 0.405372488716 0.5 0.0946275112835 +UniRef50_G8NUY5 Beta lactamase domain protein 0.0095408946793 0.5 0.490459105321 +UniRef50_A6LXY2 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.188833678087 0.5 0.311166321913 +UniRef50_P24734 HTH type transcriptional activator AmpR 3.27849298301 0.5 -2.77849298301 +UniRef50_V6PIL4 2 isopropylmalate synthase 3.38578359387 0.500000000001 -2.88578359387 +UniRef50_O07599 0.0949505578942 0.5 0.405049442106 +UniRef50_C7ZT42 DNA binding protein 2.74993404391 0.500000000002 -2.24993404391 +UniRef50_C9CRT7 1.03892256562 0.5 -0.538922565624 +UniRef50_P31063 0.320337826803 0.5 0.179662173197 +UniRef50_B1Z5H1 Secretion protein HlyD family protein 0.654827577987 0.5 -0.154827577987 +UniRef50_P0ABH3 Cell division protein FtsA 2.19916066883 0.499999999999 -1.69916066883 +UniRef50_B9JPQ6 0.0211099931069 0.5 0.478890006893 +UniRef50_UPI0003B69DC4 flagellar P ring protein FlgI 0.486380885069 0.5 0.0136191149305 +UniRef50_F3X2S2 0.024973088818 0.5 0.475026911182 +UniRef50_R1D4S7 0.773575315273 0.5 -0.273575315273 +UniRef50_A6M1M3 0.0818242683066 0.5 0.418175731693 +UniRef50_Q6AA07 0.0115514383857 0.5 0.488448561614 +UniRef50_UPI0002895CF3 amino acid carrier protein, partial 0.0233951979528 0.5 0.476604802047 +UniRef50_Q4L5Y3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.01185119893 0.5 -0.511851198925 +UniRef50_H5VFC5 GTP binding protein TypA BipA 0.167487338358 0.5 0.332512661642 +UniRef50_S8FC16 5.04879479302 0.500000000001 -4.54879479302 +UniRef50_Q8X8V7 1.57167900352 0.5 -1.07167900352 +UniRef50_E8SG33 Chromosome partition protein Smc 1.37188970018 0.5 -0.871889700176 +UniRef50_Q4L928 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 5.02082620219 0.500000000004 -4.52082620219 +UniRef50_Q9RUV2 Superoxide dismutase [Mn] 0.000103941949575 0.5 0.49989605805 +UniRef50_Q59092 3 carboxy cis,cis muconate cycloisomerase 0.00770363161579 0.5 0.492296368384 +UniRef50_M9RIH4 TAXI family TRAP transporter periplasmatic solute binding protein 0.291464039265 0.5 0.208535960735 +UniRef50_C4LED9 Transcriptional regulator, LuxR family 1.39561506536 0.5 -0.895615065355 +UniRef50_C5MZG2 Molybdopterin guanine dinucleotide biosynthesis protein B 3.1441864601 0.500000000001 -2.6441864601 +UniRef50_UPI00036FB829 hypothetical protein 0.555247235754 0.5 -0.0552472357543 +UniRef50_N1K138 FtsK SpoIIIE family protein 0.0392480796142 0.5 0.460751920385 +UniRef50_A5UMP2 1.28062749549 0.5 -0.780627495488 +UniRef50_S1IPQ9 1.16151382233 0.5 -0.661513822333 +UniRef50_P58054 Hydrolase YbeM 1.54513654552 0.5 -1.04513654552 +UniRef50_F5RN18 Prophage terminase large subunit 0.0635324354375 0.5 0.436467564562 +UniRef50_P09127 Putative uroporphyrinogen III C methyltransferase 0.990623417937 0.5 -0.490623417937 +UniRef50_B9KSC1 1.25171349269 0.5 -0.751713492691 +UniRef50_A3PNN6 Polysaccharide biosynthesis protein CapD 1.53545623001 0.5 -1.03545623001 +UniRef50_B3PD00 Capsular polysaccharide synthesis 0.814055769745 0.5 -0.314055769745 +UniRef50_UPI00028A40F7 thymidylate synthase 0.0645062546606 0.5 0.435493745339 +UniRef50_A6H086 Potassium transporting ATPase A chain 0.00188321486213 0.5 0.498116785138 +UniRef50_P66878 Cobalamin biosynthesis protein CobIJ 1.03632680526 0.5 -0.536326805257 +UniRef50_Q1GMI4 HTH type transcriptional regulator BetI 1.7946802761 0.500000000002 -1.2946802761 +UniRef50_R6XE72 0.0381382113768 0.499999999999 0.461861788624 +UniRef50_UPI000369508B hypothetical protein 0.749677625747 0.5 -0.249677625747 +UniRef50_UPI0004648EC6 beta ketoadipyl CoA thiolase, partial 0.0107716543398 0.5 0.48922834566 +UniRef50_A4VWG8 Transcriptional antiterminator 0.112664835366 0.5 0.387335164633 +UniRef50_J9NVM5 1.85498108044 0.5 -1.35498108044 +UniRef50_Q96255 Phosphoserine aminotransferase, chloroplastic 0.281152554601 0.5 0.218847445399 +UniRef50_Q8Z9J5 Ribosomal large subunit pseudouridine synthase A 6.91500164803 0.499999999999 -6.41500164803 +UniRef50_H6NE34 3.65770504088 0.500000000001 -3.15770504089 +UniRef50_I7ENJ2 0.677589394288 0.5 -0.177589394288 +UniRef50_UPI00047AC07F hypothetical protein 0.238441192281 0.5 0.261558807719 +UniRef50_UPI00037F808C hypothetical protein 0.0717364294073 0.5 0.428263570593 +UniRef50_UPI0003B4238D acyl CoA dehydrogenase 0.0532612088925 0.5 0.446738791108 +UniRef50_A0A024DFE0 Membrane protein 2.60799329207 0.5 -2.10799329207 +UniRef50_E6MXN3 Bacteriophage Mu I protein GP32 0.0146759313972 0.5 0.485324068603 +UniRef50_D7GDI2 Glycogen debranching enzyme GlgX Isoamylase 0.0173564202762 0.5 0.482643579724 +UniRef50_Q018U5 COG0031 1.18394789617 0.499999999999 -0.683947896165 +UniRef50_A3M5U8 Glu tRNA amidotransferase 0.042434035877 0.5 0.457565964123 +UniRef50_B9DNN7 Aminomethyltransferase 0.875507460022 0.5 -0.375507460022 +UniRef50_P76470 Inner membrane transport protein RhmT 2.3537041187 0.5 -1.8537041187 +UniRef50_UPI0002000D3D DeoR family transcriptional regulator 0.265770964742 0.5 0.234229035258 +UniRef50_S7VF17 0.410651419171 0.5 0.0893485808292 +UniRef50_Q81K13 UDP N acetylglucosamine 1 carboxyvinyltransferase 1 0.101478216143 0.5 0.398521783857 +UniRef50_Q9RXY2 0.00113705022377 0.5 0.498862949776 +UniRef50_Q0TUR6 Beta galactosidase Pbg 0.11265718299 0.5 0.38734281701 +UniRef50_A7ZUJ0 Pantothenate kinase 4.400827041 0.500000000001 -3.90082704101 +UniRef50_Q6LSD6 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.70119232396 0.5 -1.20119232396 +UniRef50_P27840 3.09820734236 0.500000000002 -2.59820734236 +UniRef50_Q4L783 UPF0478 protein SH1183 0.632941656782 0.5 -0.132941656782 +UniRef50_F1PYJ5 0.00440852180208 0.499999999999 0.495591478198 +UniRef50_UPI00021A59F3 PREDICTED 1.08047226664 0.5 -0.580472266639 +UniRef50_Q2FVY9 HTH type transcriptional regulator SarV 2.22585900976 0.499999999997 -1.72585900976 +UniRef50_Q2S4I8 Biotin synthase 0.0416324019868 0.5 0.458367598013 +UniRef50_W8TJK1 0.144946788719 0.5 0.355053211281 +UniRef50_B5E267 Ribosome binding factor A 2.76850054396 0.500000000001 -2.26850054396 +UniRef50_E0WIF5 CagZ protein 0.121070311507 0.5 0.378929688493 +UniRef50_B5Y8S3 Transcription termination factor Rho 0.0232348821562 0.5 0.476765117844 +UniRef50_D5V5Y4 Hemolysin type calcium binding region 1.50900109434 0.500000000001 -1.00900109434 +UniRef50_Q5FNA2 Transcriptional repressor NrdR 7.25036462318 0.500000000002 -6.75036462318 +UniRef50_D7FSA3 1.60924651853 0.5 -1.10924651853 +UniRef50_UPI00035ED229 hypothetical protein 4.24834155062 0.499999999998 -3.74834155061 +UniRef50_B5YDT2 D tyrosyl tRNA deacylase 0.220966185142 0.5 0.279033814858 +UniRef50_V9X558 3.79746686891 0.499999999999 -3.29746686891 +UniRef50_E6K0A1 GroES like protein 1.37368063573 0.5 -0.873680635732 +UniRef50_B5XY59 Dihydroorotate dehydrogenase 68.3804156539 0.499999999966 -67.8804156539 +UniRef50_UPI00037BE1B4 hypothetical protein 1.65606615693 0.499999999999 -1.15606615693 +UniRef50_A6LXY0 D galactose binding periplasmic protein 0.703064971263 0.5 -0.203064971263 +UniRef50_UPI0003800F45 hypothetical protein, partial 0.141376096399 0.5 0.358623903601 +UniRef50_E3A0J6 2.75756486418 0.499999999999 -2.25756486418 +UniRef50_UPI000476452D 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.120143689987 0.5 0.379856310013 +UniRef50_A0A023S0J1 Sodium 0.0355519542945 0.5 0.464448045705 +UniRef50_Q0FNM1 0.249021276267 0.5 0.250978723733 +UniRef50_G8AZY0 1.3859395075 0.5 -0.885939507502 +UniRef50_UPI0003787256 hypothetical protein 0.283179976847 0.5 0.216820023153 +UniRef50_Q094V3 0.394608906257 0.5 0.105391093743 +UniRef50_UPI00036D8B59 hypothetical protein 1.6810504822 0.5 -1.1810504822 +UniRef50_Q83SQ3 Glutathione regulated potassium efflux system protein KefC 3.32655833987 0.499999999995 -2.82655833986 +UniRef50_Q3J5H6 Bifunctional uridylyltransferase uridylyl removing enzyme 1.04957083538 0.5 -0.549570835384 +UniRef50_Q48335 Glyceraldehyde 3 phosphate dehydrogenase 1.5210561902 0.5 -1.0210561902 +UniRef50_UPI0003B4462C hypothetical protein, partial 0.446707081501 0.5 0.0532929184989 +UniRef50_A8Z4R9 Bacteriophage integrase 1.69268441067 0.5 -1.19268441067 +UniRef50_Q8X9Z2 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 2.53924749791 0.5 -2.03924749791 +UniRef50_W5W9B3 2.34076616362 0.5 -1.84076616362 +UniRef50_P0ADV3 Lipopolysaccharide export system protein LptA 1.86208351206 0.499999999999 -1.36208351206 +UniRef50_A5UN28 Biopolymer transport protein 0.705679399967 0.5 -0.205679399967 +UniRef50_A3PHB1 13.9052625204 0.499999999993 -13.4052625204 +UniRef50_Q8T137 Glutathione reductase 4.50669562123 0.499999999997 -4.00669562123 +UniRef50_P94357 UPF0750 membrane protein YxkD 1.15181425314 0.5 -0.651814253139 +UniRef50_J2X5J3 0.726117902092 0.5 -0.226117902092 +UniRef50_Q9RSY5 Thymidine kinase 0.000444097005508 0.5 0.499555902995 +UniRef50_F9YYP8 Pyridoxal kinase 0.0496844758092 0.5 0.450315524191 +UniRef50_Q0HDL5 LexA repressor 0.772370679929 0.5 -0.272370679929 +UniRef50_G1FTZ5 Gp57 0.32695797068 0.5 0.17304202932 +UniRef50_Q5QVL6 D erythrose 4 phosphate dehydrogenase 0.919060431909 0.5 -0.419060431909 +UniRef50_UPI0003C11E65 PREDICTED 1.12192375414 0.5 -0.62192375414 +UniRef50_A0A024F1P3 Membrane protein 0.719498708527 0.5 -0.219498708527 +UniRef50_UPI00036780D5 peptide ABC transporter permease 0.647830797092 0.5 -0.147830797092 +UniRef50_UPI0003789F55 hypothetical protein 0.0653189269371 0.5 0.434681073062 +UniRef50_F8I5D2 0.128981195071 0.5 0.371018804929 +UniRef50_F0P5S5 Accessory Sec system protein translocase subunit SecY2 2.2920722339 0.5 -1.7920722339 +UniRef50_A9M194 AraC family transcriptional regulator 0.0286666823981 0.5 0.471333317602 +UniRef50_A9C190 Potassium transporting ATPase A chain 0.0031203252705 0.5 0.49687967473 +UniRef50_S8VH52 0.354525295262 0.5 0.145474704738 +UniRef50_A4WU01 Polysaccharide export protein 1.4095280055 0.5 -0.909528005503 +UniRef50_A6X187 Leucyl phenylalanyl tRNA protein transferase 0.170089855773 0.5 0.329910144227 +UniRef50_Q8RG83 Orotidine 5 phosphate decarboxylase 0.16946901065 0.5 0.33053098935 +UniRef50_D1ZR99 Catabolic 3 dehydroquinase 0.998149998024 0.5 -0.498149998024 +UniRef50_A4WTH1 2.5339829554 0.5 -2.0339829554 +UniRef50_U4Q3Y6 Carboxylesterase 0.25299929006 0.5 0.24700070994 +UniRef50_UPI000299F85F ribokinase 0.242615546763 0.5 0.257384453237 +UniRef50_O27507 1.68142577239 0.5 -1.18142577239 +UniRef50_UPI00047263C5 hypothetical protein 0.0404283920042 0.500000000001 0.459571607995 +UniRef50_A6LGA4 Non canonical purine NTP pyrophosphatase 0.0044558962058 0.5 0.495544103794 +UniRef50_P22759 Bacterioferritin 0.233917341082 0.5 0.266082658918 +UniRef50_UPI0003B5D657 NAD dependent malic enzyme 1 1.10622426441 0.5 -0.60622426441 +UniRef50_W4U517 PTS system 0.253140438336 0.5 0.246859561664 +UniRef50_X0UC79 Marine sediment metagenome DNA, contig 0.0390271308943 0.5 0.460972869105 +UniRef50_P56062 Citrate synthase 0.00425812132743 0.5 0.495741878673 +UniRef50_P37050 0.538527218767 0.5 -0.0385272187674 +UniRef50_UPI0003840695 PREDICTED 4.59830135458 0.500000000007 -4.09830135458 +UniRef50_A9EUD2 0.0125651629258 0.5 0.487434837074 +UniRef50_Q9B0F8 DnaC 3.09079820939 0.5 -2.59079820939 +UniRef50_B9KNG3 0.069398665262 0.5 0.430601334738 +UniRef50_UPI000361064B hypothetical protein 0.16980642695 0.5 0.33019357305 +UniRef50_P76298 Flagellar biosynthesis protein FlhA 2.43990508858 0.500000000001 -1.93990508858 +UniRef50_UPI00028A1A5C HAD superfamily hydrolase, partial 0.159878628038 0.5 0.340121371962 +UniRef50_UPI000470C144 tRNA dihydrouridine synthase 0.511045792856 0.5 -0.0110457928557 +UniRef50_O59428 0.141688802521 0.5 0.358311197479 +UniRef50_R5LUL0 Spore coat polysaccharide biosynthesis protein spsC 0.0672037690664 0.5 0.432796230934 +UniRef50_Q07X28 Hydroxylamine reductase 0.114234134589 0.5 0.385765865412 +UniRef50_UPI0004702B05 integrase, partial 0.818479682938 0.5 -0.318479682938 +UniRef50_A6LTH9 0.107142434907 0.499999999999 0.392857565094 +UniRef50_O28994 Carbamoyl phosphate synthase large chain 0.0429207399168 0.5 0.457079260083 +UniRef50_A6M0L2 Beta ketoacyl acyl carrier protein synthase I 0.207727741453 0.5 0.292272258547 +UniRef50_J0SEV2 G5 domain protein 0.990119651464 0.5 -0.490119651464 +UniRef50_X8A0M6 1.02462416265 0.5 -0.524624162651 +UniRef50_A6TVZ6 Metal dependent phosphohydrolase 0.210660656571 0.5 0.289339343429 +UniRef50_Q169C1 6.52567212124 0.500000000004 -6.02567212124 +UniRef50_H9KBT1 0.173591757263 0.5 0.326408242737 +UniRef50_D7I3U8 Dipeptide transport system permease protein 0.419781098687 0.5 0.0802189013132 +UniRef50_UPI00035FCD14 hypothetical protein 0.45846702467 0.5 0.0415329753299 +UniRef50_D9UU07 Radical SAM domain containing protein 0.0946785803294 0.5 0.405321419671 +UniRef50_A5G2W1 Carbohydrate ABC transporter substrate binding protein, CUT1 family 0.955175385175 0.5 -0.455175385175 +UniRef50_UPI0002EE07FC hypothetical protein 0.216689987671 0.5 0.283310012329 +UniRef50_P75995 1.7848073678 0.5 -1.2848073678 +UniRef50_N4S0B6 Type 1V conjugative transfer system mating pair stabilization family protein 0.57977537751 0.5 -0.07977537751 +UniRef50_D8GPT5 Predicted aminoacid permease 0.223314502596 0.5 0.276685497404 +UniRef50_UPI00047A1147 nucleoside triphosphate diphosphatase, partial 0.542775847811 0.5 -0.0427758478105 +UniRef50_B8GIV7 CRISPR associated helicase Cas3 1.73769729266 0.5 -1.23769729266 +UniRef50_C5BIJ8 Leucyl phenylalanyl tRNA protein transferase 0.261717341965 0.5 0.238282658035 +UniRef50_UPI00046616FD 4 alpha glucanotransferase, partial 0.0113908310935 0.5 0.488609168907 +UniRef50_D9RCZ8 12.6530068403 0.499999999985 -12.1530068403 +UniRef50_Q51519 Anthranilate synthase, phenazine specific 1.52547062864 0.5 -1.02547062864 +UniRef50_UPI0002559CB6 nucleoside triphosphate diphosphatase 2.60994972513 0.5 -2.10994972513 +UniRef50_Z5XN41 Diguanylate cyclase 0.00452190270817 0.5 0.495478097292 +UniRef50_D3A856 DNA gyrase, B subunit, C terminal domain protein 0.0207498605818 0.5 0.479250139418 +UniRef50_UPI00016C4069 transporter 5.99822954765 0.500000000001 -5.49822954765 +UniRef50_X2H969 D 2 hydroxyglutarate dehydrogenase 0.0831120729324 0.5 0.416887927068 +UniRef50_A9M0U6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.000709679525521 0.5 0.499290320474 +UniRef50_Q6NCF3 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.00242355675898 0.5 0.497576443241 +UniRef50_Q8CN93 Membrane protein 0.965869058749 0.5 -0.465869058749 +UniRef50_Q6AAZ9 DNA integrity scanning protein DisA 0.0189397002502 0.5 0.48106029975 +UniRef50_Q55842 UPF0062 protein slr0519 0.145756214673 0.5 0.354243785327 +UniRef50_UPI00047D4A4F hypothetical protein 0.382712256659 0.5 0.117287743341 +UniRef50_B1ZS98 Polyribonucleotide nucleotidyltransferase 0.139223742467 0.5 0.360776257533 +UniRef50_D2N4J0 Sau1hsdS1 2.40042740905 0.5 -1.90042740905 +UniRef50_UPI00026286DA sugar ABC transporter ATP binding protein 0.794834648466 0.5 -0.294834648466 +UniRef50_Q8CSR0 ABC transporter 0.936535446784 0.5 -0.436535446784 +UniRef50_A3PNK2 OstA family protein 0.655834250287 0.5 -0.155834250287 +UniRef50_V8G4T0 Sugar ABC transporter substrate binding protein 0.122225752129 0.5 0.377774247871 +UniRef50_P62417 Phosphoglycerate kinase 0.349726727942 0.5 0.150273272058 +UniRef50_C5BF52 Adenine deaminase 0.893488751382 0.5 -0.393488751382 +UniRef50_A6LXY1 PAS PAC sensor hybrid histidine kinase 0.287446264523 0.5 0.212553735477 +UniRef50_P77744 HTH type transcriptional regulator AbgR 1.19584591443 0.5 -0.695845914434 +UniRef50_P21864 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.764888332113 0.5 -0.264888332113 +UniRef50_UPI00046EEC85 hypothetical protein 0.133569674742 0.5 0.366430325258 +UniRef50_P37197 Probable cytochrome c peroxidase 0.406789988256 0.5 0.0932100117436 +UniRef50_UPI0004757670 3 phosphoshikimate 1 carboxyvinyltransferase 0.35282122202 0.5 0.14717877798 +UniRef50_UPI0001BF6FB5 hypothetical protein SMAC_10438, partial 0.22726300555 0.5 0.27273699445 +UniRef50_UPI000375EC1F hypothetical protein, partial 0.157245107632 0.5 0.342754892368 +UniRef50_UPI000476341B major facilitator transporter 0.0452777464237 0.499999999999 0.454722253577 +UniRef50_UPI000463A3EE hypothetical protein 0.260813942395 0.5 0.239186057605 +UniRef50_P34842 Cytochrome c oxidase subunit 3 1.3785591781 0.5 -0.878559178102 +UniRef50_UPI00026533A3 0.0386270395897 0.5 0.46137296041 +UniRef50_Q9RTL7 Fosmidomycin resistance protein, putative 0.00315122396752 0.500000000001 0.496848776032 +UniRef50_UPI0003514416 PREDICTED 1.50037677933 0.5 -1.00037677933 +UniRef50_N9IA23 1.99882544317 0.5 -1.49882544317 +UniRef50_Q9RXT0 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.000331464792108 0.5 0.499668535208 +UniRef50_Q3IUV6 Thioredoxin domain protein 0.747571790479 0.5 -0.247571790479 +UniRef50_Q05627 0.64382780922 0.5 -0.14382780922 +UniRef50_A7X2Q3 N utilization substance protein B homolog 0.394874435977 0.5 0.105125564023 +UniRef50_F8DIJ3 Acetyltransferase, GNAT family 0.663217802653 0.5 -0.163217802653 +UniRef50_UPI00047D4833 hypothetical protein 0.327017520102 0.5 0.172982479898 +UniRef50_UPI00037A95AF hypothetical protein 0.166247140237 0.5 0.333752859763 +UniRef50_Q3J3X7 3.06534877631 0.499999999997 -2.56534877631 +UniRef50_UPI0004758995 hypothetical protein 0.538248897087 0.5 -0.0382488970868 +UniRef50_Q5HME0 Probable DEAD box ATP dependent RNA helicase SERP1688 1.95393619262 0.500000000001 -1.45393619262 +UniRef50_M9RWN2 Chromosome partitioning protein ParA 0.0740640504832 0.5 0.425935949517 +UniRef50_A0A024HNH0 2.48525241309 0.499999999999 -1.98525241309 +UniRef50_Q3J3X0 1.08947237709 0.5 -0.589472377092 +UniRef50_UPI0002001DF1 superfamily II RNA helicase, partial 0.169135768584 0.5 0.330864231416 +UniRef50_UPI0003B3ECAB large mechanosensitive ion channel protein MscL 2.07884027428 0.5 -1.57884027428 +UniRef50_A0A010AWY9 CSLREA domain protein 0.0689337060841 0.499999999999 0.431066293916 +UniRef50_UPI000475CD3E hypothetical protein, partial 0.0559617962629 0.5 0.444038203737 +UniRef50_H9KRI1 1.05250257755 0.5 -0.552502577552 +UniRef50_Q2CG67 0.0653207718191 0.5 0.434679228181 +UniRef50_A8IL90 Predicted protein 0.445800494455 0.5 0.0541995055454 +UniRef50_H9KH51 0.3798978955 0.5 0.1201021045 +UniRef50_J9NXN3 0.605901446151 0.5 -0.105901446151 +UniRef50_UPI00035E2C47 hypothetical protein 0.965514151732 0.5 -0.465514151732 +UniRef50_B7MBY5 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.578538564152 0.5 -0.0785385641523 +UniRef50_UPI0003B58132 hypothetical protein 0.389369044186 0.5 0.110630955814 +UniRef50_B8J7M5 FHA domain containing protein 0.291177715118 0.5 0.208822284882 +UniRef50_UPI000307F825 hypothetical protein 0.361188716413 0.5 0.138811283587 +UniRef50_A6UZY8 2.20550317071 0.500000000002 -1.70550317071 +UniRef50_UPI0003F490D8 hypothetical protein TREMEDRAFT_66895 0.164456433529 0.5 0.335543566471 +UniRef50_R9SLB7 RNA methylase 5.18898603 0.500000000002 -4.68898603 +UniRef50_M4RYW8 Putative thioesterase 0.00111336955826 0.5 0.498886630442 +UniRef50_B2TRN5 Bifunctional protein FolD 0.212038685624 0.5 0.287961314376 +UniRef50_F9YW81 Sugar ABC transporter permease 0.0446348487407 0.5 0.455365151259 +UniRef50_Q6FCZ3 Pseudouridine synthase 0.0260095489676 0.5 0.473990451032 +UniRef50_A4FBF7 Elongation factor P 0.0502918753688 0.5 0.449708124631 +UniRef50_F5M415 Periplasmic binding protein 1.14650738514 0.5 -0.646507385141 +UniRef50_U9TNM9 0.550626023345 0.5 -0.0506260233446 +UniRef50_UPI0003797F94 membrane protein, partial 2.80237699176 0.5 -2.30237699176 +UniRef50_O83349 Serine hydroxymethyltransferase 0.0248540470549 0.5 0.475145952945 +UniRef50_Q65SJ3 0.0901861525469 0.5 0.409813847453 +UniRef50_Q5X9H5 DNA mismatch repair protein MutL 0.0850833857932 0.5 0.414916614207 +UniRef50_UPI00046BF5D1 PREDICTED 0.372619126211 0.5 0.127380873789 +UniRef50_A9WVW5 0.360753442076 0.5 0.139246557924 +UniRef50_UPI000378BFDC hypothetical protein 1.91628042453 0.5 -1.41628042453 +UniRef50_G0FKS6 0.165998288334 0.5 0.334001711666 +UniRef50_M9RJC1 0.388326457452 0.5 0.111673542548 +UniRef50_V5VA04 Hemolysin type calcium binding domain containing protein 0.00351785090958 0.5 0.49648214909 +UniRef50_Q28TQ1 Type II secretion system protein E 2.9602822718 0.5 -2.4602822718 +UniRef50_Q08WT9 0.344199165534 0.5 0.155800834466 +UniRef50_G0DVY4 Cell division protein FtsW 0.0255967145896 0.5 0.474403285411 +UniRef50_B3W763 Cellobiose PTS, EIIC 0.355137567129 0.5 0.144862432871 +UniRef50_E3D8W4 Anaerobic ribonucleoside triphosphate reductase activating protein 0.998659274473 0.5 -0.498659274473 +UniRef50_D9WSF3 Vegetative cell wall protein gp1 (Fragment) 0.034160883534 0.5 0.465839116466 +UniRef50_Q6AA77 Ornithine carbamoyltransferase 0.000581490536695 0.5 0.499418509463 +UniRef50_B2VDR3 High frequency lysogenization protein HflD homolog 2.21695727717 0.5 -1.71695727717 +UniRef50_P77293 Bactoprenol glucosyl transferase homolog from prophage CPS 53 2.6720846649 0.500000000002 -2.1720846649 +UniRef50_P33073 L serine dehydratase, alpha chain 0.446788854275 0.5 0.0532111457252 +UniRef50_A1URA3 ATP dependent zinc metalloprotease FtsH 0.40169699334 0.5 0.09830300666 +UniRef50_G7MD19 Polysaccharide biosynthesis protein 0.376886062847 0.5 0.123113937153 +UniRef50_P42505 Trans acting regulatory protein HvrA 0.21532147154 0.5 0.28467852846 +UniRef50_C8WV62 Transcriptional regulator, MarR family 0.0330568983672 0.5 0.466943101633 +UniRef50_UPI0003C83EE0 PREDICTED 0.222596613104 0.5 0.277403386896 +UniRef50_S6ARI5 0.398698840818 0.5 0.101301159182 +UniRef50_C7RR12 AzlC family protein 0.964820454659 0.5 -0.464820454659 +UniRef50_U5MRF4 Nitrite and sulphite reductase 4Fe 4S region 0.0891414876146 0.5 0.410858512385 +UniRef50_UPI00036A7350 hypothetical protein 0.611237469007 0.5 -0.111237469007 +UniRef50_A1RLC1 AzlC family protein 1.2076046172 0.5 -0.707604617204 +UniRef50_E8QBY5 Ribosomal RNA small subunit methyltransferase E 3.30127457105 0.5 -2.80127457105 +UniRef50_F8H6V7 Cytochrome C oxidase assembly protein 1.92925121185 0.500000000002 -1.42925121185 +UniRef50_UPI0003798B2F hypothetical protein 0.0785613321965 0.5 0.421438667803 +UniRef50_B2IQP4 Peptidase, U32 family 0.455146353881 0.5 0.0448536461189 +UniRef50_UPI00036CA0EA hypothetical protein 0.0455025540647 0.5 0.454497445936 +UniRef50_C5N2R4 2.250015496 0.499999999999 -1.750015496 +UniRef50_F5SR33 0.318761100859 0.5 0.181238899141 +UniRef50_UPI00047D1C2C sugar ABC transporter permease 1.05415527722 0.5 -0.554155277217 +UniRef50_Q8CVW1 Outer membrane protein C 1.9945623913 0.500000000001 -1.4945623913 +UniRef50_A5UMQ0 Cobalt precorrin 3B C17 methyltransferase, CbiH 5.18536184615 0.499999999999 -4.68536184615 +UniRef50_G8VAL6 Methyltransferase 0.155851023508 0.5 0.344148976492 +UniRef50_A9G928 1.66766321028 0.5 -1.16766321028 +UniRef50_UPI00037376DC hypothetical protein 0.319196044442 0.5 0.180803955558 +UniRef50_UPI000375C11B hypothetical protein 0.554426856209 0.5 -0.0544268562087 +UniRef50_Z7FZL7 MFS transporter, ACS family, glucarate transporter 10.8412589241 0.500000000003 -10.3412589241 +UniRef50_A8TZF0 Putative translation initiation inhibitor 1.29104201463 0.499999999999 -0.791042014633 +UniRef50_L7WZD3 Dihydrolipoyl dehydrogenase 1.3002454079 0.5 -0.800245407904 +UniRef50_B3E602 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 1.41155828995 0.5 -0.911558289947 +UniRef50_P65591 Transcription termination antitermination protein NusG 3.51636373466 0.500000000003 -3.01636373467 +UniRef50_I2BLI3 Malonate utilization transcriptional regulator 0.262775850486 0.5 0.237224149514 +UniRef50_P37147 UPF0716 protein FxsA 2.23364924954 0.5 -1.73364924954 +UniRef50_Q7MW52 Fructose 1,6 bisphosphatase class 3 0.0327503247412 0.5 0.467249675259 +UniRef50_R9YQ76 Thioesterase superfamily protein 2.66262500104 0.5 -2.16262500104 +UniRef50_D4HEH1 Sugar binding domain protein 0.0239502867274 0.5 0.476049713273 +UniRef50_I6U0M8 2.03443709424 0.5 -1.53443709424 +UniRef50_G7SE40 DegV family protein 17.8861422538 0.500000000002 -17.3861422538 +UniRef50_Q5FS85 Guanylate kinase 0.193659464293 0.5 0.306340535707 +UniRef50_Q5L287 ABC transporter 0.0797801462173 0.5 0.420219853783 +UniRef50_Q1LT82 D alanine D alanine ligase 2.49062440831 0.500000000001 -1.99062440831 +UniRef50_G7LZT8 Beta lactamase domain containing protein 0.975062122895 0.5 -0.475062122895 +UniRef50_UPI00036D9B8C hypothetical protein, partial 0.302249609571 0.5 0.197750390429 +UniRef50_Q3JQ05 0.153863903971 0.5 0.346136096029 +UniRef50_A6LXY4 Transcriptional regulator, TetR family 0.0499850179035 0.5 0.450014982097 +UniRef50_N8Z5H6 0.162693650653 0.5 0.337306349347 +UniRef50_B7MIH3 Glyoxylate hydroxypyruvate reductase A 1.30744043893 0.5 -0.807440438931 +UniRef50_UPI0003595012 PREDICTED 0.868129800441 0.5 -0.368129800441 +UniRef50_Q8ZLB5 Cellulose biosynthesis protein BcsE 1.33837593445 0.499999999999 -0.838375934446 +UniRef50_A9BVK1 Trans aconitate 2 methyltransferase 2.47826117053 0.500000000003 -1.97826117053 +UniRef50_U6MWK3 1.42399159623 0.5 -0.923991596231 +UniRef50_C6WDZ3 PE PGRS family protein 0.0365715352862 0.5 0.463428464714 +UniRef50_UPI0003C129CB PREDICTED 1.60826968452 0.499999999999 -1.10826968452 +UniRef50_UPI000471E8AE hypothetical protein, partial 0.0938372916205 0.5 0.406162708379 +UniRef50_Q1IYH9 Sulfate adenylyltransferase 0.00551995073245 0.5 0.494480049268 +UniRef50_G7M254 0.165661468694 0.5 0.334338531306 +UniRef50_P76403 0.145804121727 0.5 0.354195878273 +UniRef50_UPI0001C396B6 Zn ribbon protein, possibly nucleic acid binding 1.0477361799 0.5 -0.547736179896 +UniRef50_P94513 Sensor protein LytS 0.0238597135572 0.5 0.476140286443 +UniRef50_Q8TYY5 Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis 1.57484960209 0.499999999999 -1.07484960209 +UniRef50_UPI00035F8915 MULTISPECIES 1.49330290845 0.5 -0.993302908451 +UniRef50_R9ZEN0 Methyl accepting chemotaxis protein 0.439764340473 0.5 0.0602356595271 +UniRef50_UPI0002000F87 oxidoreductase 1.27111601094 0.5 -0.771116010939 +UniRef50_P54919 Delta aminolevulinic acid dehydratase 0.0912029912162 0.5 0.408797008784 +UniRef50_P49078 Asparagine synthetase [glutamine hydrolyzing] 1 0.358739474231 0.5 0.141260525769 +UniRef50_UPI000402C450 hypothetical protein 0.118179536705 0.5 0.381820463295 +UniRef50_R7MP32 2.52455385152 0.5 -2.02455385152 +UniRef50_D5APZ2 Transcriptional regulator, LysR family 3.7600763034 0.499999999999 -3.2600763034 +UniRef50_I0I0C0 2.41305756365 0.5 -1.91305756365 +UniRef50_UPI0003B76791 chemotaxis protein CheY 4.964130775 0.499999999999 -4.464130775 +UniRef50_K0HKA6 Periplasmic binding protein 0.00397006110864 0.5 0.496029938891 +UniRef50_F4DNZ1 LysR family transcriptional regulator 1.2629436495 0.5 -0.762943649498 +UniRef50_A3PRC4 Methyl accepting chemotaxis sensory transducer 0.854648938585 0.5 -0.354648938585 +UniRef50_UPI000454B9A5 PREDICTED 0.105146842046 0.5 0.394853157954 +UniRef50_UPI000372C723 hypothetical protein 0.554864922453 0.5 -0.0548649224531 +UniRef50_Q1CSQ2 Glycine tRNA ligase beta subunit 0.00641545148389 0.5 0.493584548516 +UniRef50_A3DFY9 0.492019710275 0.5 0.0079802897247 +UniRef50_D7GHW6 Cytochrome d ubiquinol oxidase, subunit II 0.014519804032 0.5 0.485480195968 +UniRef50_A5ULR2 UPF0272 protein Msm_0935 1.05103693177 0.499999999999 -0.551036931772 +UniRef50_D8JEL1 0.0245220242227 0.5 0.475477975777 +UniRef50_L9MZ90 0.0023761249813 0.5 0.497623875019 +UniRef50_UPI0003B53446 branched chain amino acid transporter AzlC 1.35107019103 0.5 -0.851070191029 +UniRef50_A5UNA6 Exodeoxyribonuclease, XthA 1.87576402637 0.499999999999 -1.37576402637 +UniRef50_Q6GHK8 ATP dependent DNA helicase RecG 1.07834584582 0.5 -0.578345845822 +UniRef50_UPI0003B4E531 sodium 0.00536247062562 0.500000000001 0.494637529374 +UniRef50_D7BD64 0.0334334436145 0.499999999999 0.466566556386 +UniRef50_A7HS58 Undecaprenyl diphosphatase 6.08296827762 0.499999999996 -5.58296827762 +UniRef50_UPI000476E422 hypothetical protein 0.0406842230471 0.5 0.459315776953 +UniRef50_UPI0003EC50DD PREDICTED 0.343709851449 0.5 0.156290148551 +UniRef50_U3SR69 Pyrroline 5 carboxylate reductase 1.50819255474 0.499999999999 -1.00819255474 +UniRef50_Q8Y3Y6 Thymidylate kinase 0.0189425127953 0.5 0.481057487204 +UniRef50_R0VLG7 0.0426298896194 0.5 0.457370110381 +UniRef50_B0TVV8 Adenylosuccinate synthetase 0.716436385229 0.5 -0.216436385229 +UniRef50_UPI0003810A5E hypothetical protein 0.69439410334 0.5 -0.19439410334 +UniRef50_F2BFB8 BolA family protein 0.0708940065762 0.5 0.429105993424 +UniRef50_D8ICU4 Pyridine nucleotide disulfide oxidoreductase family protein 0.114077448503 0.5 0.385922551497 +UniRef50_Q168U2 Polyhydroxyalkanoate synthesis repressor 11.6856967088 0.500000000002 -11.1856967088 +UniRef50_UPI00036FDE6E MULTISPECIES 0.139523527072 0.5 0.360476472928 +UniRef50_F8IRK1 Replication initiator A protein 23.4359395702 0.499999999992 -22.9359395702 +UniRef50_B0UIS6 Glutathione S transferase domain 0.0787471969797 0.5 0.42125280302 +UniRef50_Q1YVL9 0.207769009367 0.5 0.292230990633 +UniRef50_P0AG14 Probable protease SohB 1.97886036793 0.5 -1.47886036793 +UniRef50_D3E3R8 Carbohydrate kinase PfkB family 1.65006749808 0.5 -1.15006749808 +UniRef50_D5HIW6 Phosphate ABC transporter membrane protein 2, PhoT family 0.0605513928935 0.5 0.439448607107 +UniRef50_UPI00046EB4A8 hypothetical protein 0.676109588653 0.5 -0.176109588653 +UniRef50_A5IU36 3.95770877588 0.5 -3.45770877588 +UniRef50_M4XIN2 0.971592451085 0.5 -0.471592451085 +UniRef50_E3H779 Transcriptional regulator, XRE family 0.0776867403966 0.5 0.422313259603 +UniRef50_M1MDC6 Transcription termination factor Rho 0.236619546373 0.5 0.263380453627 +UniRef50_F6D6V6 Cobalamin biosynthesis CbiM protein 0.952107898687 0.5 -0.452107898687 +UniRef50_P0A1H0 DNA polymerase III subunit epsilon 3.21074160921 0.499999999999 -2.7107416092 +UniRef50_UPI0003B2F0C5 ABC transporter ATP binding protein 1.29077074655 0.5 -0.790770746553 +UniRef50_Q6FFD2 Sensor protein 0.00981412777484 0.5 0.490185872225 +UniRef50_UPI0003684932 amino acid ABC transporter substrate binding protein 0.162430923557 0.5 0.337569076443 +UniRef50_UPI0002F69D2E hypothetical protein 0.122245832358 0.5 0.377754167642 +UniRef50_UPI000350C2AA PREDICTED 0.576414159889 0.5 -0.0764141598887 +UniRef50_UPI00036F359E hypothetical protein 2.12455750306 0.5 -1.62455750306 +UniRef50_UPI00021977C8 Appr 1 p processing domain protein 0.0464149083668 0.5 0.453585091633 +UniRef50_P25539 Riboflavin biosynthesis protein RibD 0.19671181046 0.5 0.30328818954 +UniRef50_Q492E3 Probable malate 0.154342532449 0.5 0.345657467551 +UniRef50_Q56998 UvrABC system protein B 0.0543191446935 0.5 0.445680855306 +UniRef50_Q8FSD6 Uroporphyrinogen decarboxylase 0.459268976348 0.5 0.0407310236521 +UniRef50_W7SQL2 LigA protein 0.100737678136 0.5 0.399262321864 +UniRef50_Q9K706 Gluconeogenesis factor 1.81947001951 0.500000000001 -1.31947001951 +UniRef50_Q6N0X7 Short chain dehydrogenase 0.814140430934 0.5 -0.314140430934 +UniRef50_I1B7Q6 0.25231028912 0.5 0.24768971088 +UniRef50_UPI00040FD25C 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.789992433457 0.5 -0.289992433457 +UniRef50_Q9RZB7 Glycosyltransferase 0.00377678359119 0.5 0.496223216409 +UniRef50_K2EHC8 0.415401952618 0.5 0.0845980473824 +UniRef50_W4LZ78 0.240383042548 0.5 0.259616957452 +UniRef50_D7CU09 ABC transporter related protein 0.00276306279673 0.5 0.497236937203 +UniRef50_K2EHC4 0.0432762981884 0.5 0.456723701812 +UniRef50_UPI0003802618 hypothetical protein 1.16862538537 0.5 -0.668625385367 +UniRef50_UPI00031E0792 hypothetical protein 0.0407827606772 0.5 0.459217239323 +UniRef50_UPI000374F92F hypothetical protein 0.213009764096 0.5 0.286990235904 +UniRef50_Q9RY24 Protein GrpE 0.00650840169881 0.5 0.493491598301 +UniRef50_F9V983 16S rRNA methyltransferase 0.358334807466 0.5 0.141665192534 +UniRef50_A9VN98 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.111994193099 0.5 0.388005806901 +UniRef50_M1VMH5 3.05069102868 0.499999999999 -2.55069102868 +UniRef50_B3QSU1 Cytidylate kinase 0.195884804584 0.5 0.304115195415 +UniRef50_UPI00037A45FC MULTISPECIES 0.237917683315 0.5 0.262082316685 +UniRef50_Q9RWU7 Purine pyrimidine phosphoribosyltransferase related protein 0.0129909371646 0.5 0.487009062836 +UniRef50_Q56114 Aspartate aminotransferase 0.769756169376 0.5 -0.269756169376 +UniRef50_UPI000360A2CC MULTISPECIES 0.399767633067 0.5 0.100232366933 +UniRef50_UPI0001FFF9AA integral membrane protein 5.01014343324 0.499999999997 -4.51014343324 +UniRef50_Q8EQK8 Choline ABC transporter ATP binding protein 3.87885553586 0.500000000002 -3.37885553586 +UniRef50_Q6LI26 Glutathione peroxidase 1.93884762105 0.499999999999 -1.43884762105 +UniRef50_U1S9N3 0.980103732795 0.5 -0.480103732795 +UniRef50_U3SQV1 0.961581156803 0.5 -0.461581156803 +UniRef50_Q3JFY3 200 kDa antigen p200, putative 0.0319316574426 0.5 0.468068342557 +UniRef50_UPI000471C806 molybdenum cofactor biosynthesis protein MoaE 0.739724471184 0.5 -0.239724471184 +UniRef50_UPI0003680F4C hypothetical protein 3.17377565213 0.5 -2.67377565213 +UniRef50_A6LWT3 0.0648301722454 0.5 0.435169827754 +UniRef50_UPI0004785ED6 hypothetical protein 0.0922223811973 0.5 0.407777618803 +UniRef50_B7UZU0 Na translocating NADH quinone reductase subunit D 0.125870057867 0.5 0.374129942133 +UniRef50_X8AWD6 UvrABC system A domain protein 0.246749208351 0.5 0.253250791649 +UniRef50_W0CYP1 Peptide deformylase 0.26550612861 0.5 0.23449387139 +UniRef50_G2KWZ9 ATP dependent RNA helicase RhlB 0.645867515858 0.5 -0.145867515858 +UniRef50_UPI00037A3CF4 hypothetical protein 0.276405531412 0.5 0.223594468588 +UniRef50_UPI000255CC88 transcriptional regulator 0.0979869787426 0.5 0.402013021258 +UniRef50_A1VM60 NADH quinone oxidoreductase subunit A 0.0256761470445 0.5 0.474323852956 +UniRef50_K0VGX6 Phenol hydroxylase 0.363009201006 0.5 0.136990798994 +UniRef50_Q46WJ3 Shikimate kinase 0.479976348568 0.5 0.0200236514322 +UniRef50_B7H076 Glycosyl transferases group 1 family protein 0.0387969866117 0.5 0.461203013388 +UniRef50_G0LRQ0 Serine aspartate repeat containing protein D 0.323441607056 0.5 0.176558392944 +UniRef50_UPI0004774AD6 adenosylcobinamide kinase 2.97811695186 0.5 -2.47811695186 +UniRef50_B6TG94 Seed specific protein Bn15D17A 1.62437803369 0.500000000002 -1.12437803369 +UniRef50_G8WCZ8 Crispr associated helicase Cas3 3.9793041205 0.5 -3.4793041205 +UniRef50_UPI00037A187F DNA invertase 2.24590848133 0.500000000001 -1.74590848133 +UniRef50_B1K1J6 Inner membrane translocator 1.79965527147 0.5 -1.29965527147 +UniRef50_D2ZUL4 16.6137264479 0.50000000002 -16.1137264479 +UniRef50_P69435 Poly beta 1,6 N acetyl D glucosamine export protein 1.64406448392 0.5 -1.14406448392 +UniRef50_UPI000395E0BE TetR family transcriptional regulator 2.48812543873 0.5 -1.98812543873 +UniRef50_B1TBD8 0.285020840452 0.5 0.214979159548 +UniRef50_T0PPT5 0.625002883173 0.5 -0.125002883173 +UniRef50_B9NWB2 Proline dehydrogenase transcriptional activator 0.246421710826 0.5 0.253578289174 +UniRef50_UPI0002D562AA peptidase 0.506936136358 0.5 -0.0069361363579 +UniRef50_Q9I7C4 DNA polymerase III subunit beta 0.895795776658 0.5 -0.395795776658 +UniRef50_A9I3J3 TonB dependent outer membrane receptor 0.614605662534 0.5 -0.114605662534 +UniRef50_UPI00046FA567 phytoene dehydrogenase 1.55162003531 0.499999999999 -1.05162003531 +UniRef50_Q65I56 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.14344407069 0.5 -0.64344407069 +UniRef50_A6LQ20 Efflux transporter, RND family, MFP subunit 0.342714148077 0.5 0.157285851923 +UniRef50_L7VT83 Chemotaxis protein 0.0759004830614 0.5 0.424099516939 +UniRef50_P20582 PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III 2.28628869117 0.5 -1.78628869117 +UniRef50_A6KZR2 Phosphopantetheine adenylyltransferase 0.000994931457505 0.5 0.499005068542 +UniRef50_UPI00047AB6F5 imidazoleglycerol phosphate dehydratase 2.79865447752 0.5 -2.29865447752 +UniRef50_B0CC69 Biotin synthase 0.0846226383616 0.5 0.415377361638 +UniRef50_A0A011QDW9 Hemolysin, chromosomal 0.728009280142 0.5 -0.228009280142 +UniRef50_Q4JV87 LexA repressor 0.375340634627 0.5 0.124659365373 +UniRef50_B0VLK5 Lipoprotein 0.01423362789 0.499999999999 0.485766372111 +UniRef50_P77360 4.16192756039 0.5 -3.66192756039 +UniRef50_P40876 0.347737899156 0.5 0.152262100844 +UniRef50_Q73NX5 Ribonuclease 3 0.333674541096 0.5 0.166325458904 +UniRef50_X3WN19 0.253454186988 0.5 0.246545813012 +UniRef50_D4HD90 0.0245535234402 0.5 0.47544647656 +UniRef50_F4H6S8 Binding protein dependent transport systems inner membrane component 0.0704438778891 0.499999999999 0.429556122111 +UniRef50_H4FT59 Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein 1.40105057274 0.5 -0.901050572738 +UniRef50_H8H0A6 0.0171826767127 0.5 0.482817323287 +UniRef50_Q5XDJ2 Bifunctional protein GlmU 0.000744485254276 0.5 0.499255514746 +UniRef50_P75990 Blue light and temperature regulated antirepressor YcgF 0.605711911802 0.5 -0.105711911802 +UniRef50_B9DX64 ATP synthase subunit delta 0.282782267264 0.5 0.217217732736 +UniRef50_UPI000365E273 hypothetical protein 0.117525348117 0.5 0.382474651883 +UniRef50_Q97S57 Translation initiation factor IF 2 0.47227728468 0.5 0.0277227153202 +UniRef50_UPI00016ABA18 sugar ABC transporter ATP binding protein 0.479770932155 0.5 0.0202290678454 +UniRef50_A8IC84 Lipoprotein 0.806571660687 0.5 -0.306571660687 +UniRef50_B7I2S0 Exodeoxyribonuclease X, putative 0.0405123564537 0.5 0.459487643546 +UniRef50_Q49WD6 NAD kinase 3.87991919154 0.499999999997 -3.37991919154 +UniRef50_UPI00034A3652 hypothetical protein 1.48398155498 0.500000000001 -0.983981554981 +UniRef50_Q58036 2.13035324849 0.5 -1.63035324849 +UniRef50_UPI0003B7A911 ABC transporter permease 0.305772188281 0.5 0.194227811719 +UniRef50_A6M1F1 Single stranded DNA specific exonuclease RecJ 0.146334587049 0.5 0.353665412951 +UniRef50_Q5WY31 NAD transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II) 0.990920824762 0.5 -0.490920824762 +UniRef50_U6HSW1 Glutamate synthase 0.245158976756 0.5 0.254841023244 +UniRef50_Q8F498 Biotin synthase 0.137434645841 0.5 0.362565354159 +UniRef50_Q8DRX4 4.50233108824 0.499999999999 -4.00233108824 +UniRef50_P0AEB1 Sulfate transport system permease protein CysW 1.6417461654 0.5 -1.1417461654 +UniRef50_R9SLZ9 Energy converting hydrogenase B subunit O EhbO 8.08766922769 0.500000000001 -7.58766922769 +UniRef50_Q0AYL3 Chemotaxis response regulator protein glutamate methylesterase 1 1.70304977597 0.500000000001 -1.20304977597 +UniRef50_A4VU31 Predicted membrane metal binding protein 1.07627668682 0.5 -0.576276686816 +UniRef50_M1MHF4 YibE F family protein 0.2279217974 0.5 0.2720782026 +UniRef50_P29976 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic 0.128386510883 0.5 0.371613489117 +UniRef50_A4WT17 3.18528760111 0.499999999999 -2.68528760111 +UniRef50_Q3IYW4 24.1971422515 0.499999999986 -23.6971422515 +UniRef50_UPI00016C4263 multi sensor signal transduction histidine kinase 2.06532355255 0.500000000001 -1.56532355256 +UniRef50_UPI0004669627 hypothetical protein 0.602433992812 0.5 -0.102433992812 +UniRef50_UPI000376E080 hypothetical protein, partial 2.37862761627 0.5 -1.87862761627 +UniRef50_UPI0003B639BB hypothetical protein 0.0170769835923 0.5 0.482923016408 +UniRef50_Q5LUP8 Endoribonuclease L PSP family protein 1.59392879035 0.500000000002 -1.09392879035 +UniRef50_N2DBA0 2,3 cyclic nucleotide 2 phosphodiesterase 1.13332298707 0.5 -0.633322987068 +UniRef50_S5KKJ7 Cell wall surface anchor protein 0.00374119034355 0.499999999999 0.496258809657 +UniRef50_T0M6P4 Blastn match against entry EMBL 4.05885730498 0.500000000001 -3.55885730498 +UniRef50_B2TQI3 Undecaprenyl phosphate glucose phosphotransferase 0.210847439752 0.5 0.289152560248 +UniRef50_D3E1Y0 Fumarate hydratase FumA2 11.0953604292 0.499999999994 -10.5953604292 +UniRef50_A4VRL6 Predicted Zn dependent peptidase 0.905360736751 0.5 -0.405360736751 +UniRef50_D5VDZ2 2.30412927518 0.5 -1.80412927518 +UniRef50_UPI000328A627 PREDICTED 0.172585461986 0.5 0.327414538014 +UniRef50_F3U2B2 Transcriptional regulator, LysR family protein 1.12743932889 0.5 -0.627439328887 +UniRef50_D3QEV8 ABC transporter, ATP binding protein 2.93363766416 0.5 -2.43363766416 +UniRef50_UPI00035ED201 hypothetical protein 0.0878240971116 0.5 0.412175902888 +UniRef50_G8B0Y4 0.365395322157 0.5 0.134604677843 +UniRef50_A5UK70 Fumarate reductase, iron sulfur protein 8.21102840601 0.499999999999 -7.71102840601 +UniRef50_M1MGY4 Drug resistance transporter, EmrB QacA subfamily 0.16604175878 0.5 0.33395824122 +UniRef50_Q58691 1.6983242874 0.499999999999 -1.1983242874 +UniRef50_K7RP68 Molybdopterin biosynthesis protein 0.111547628032 0.5 0.388452371968 +UniRef50_X1ABV5 Marine sediment metagenome DNA, contig 0.363768964086 0.5 0.136231035914 +UniRef50_UPI0004408C74 beta subunit of citrate lyase 1.14114273553 0.5 -0.641142735531 +UniRef50_P37369 Superoxide dismutase [Fe] 0.571451326033 0.5 -0.0714513260332 +UniRef50_A6LQR1 S layer domain protein domain 0.0982324852846 0.5 0.401767514716 +UniRef50_UPI00037FF171 hypothetical protein 0.25087325661 0.5 0.24912674339 +UniRef50_Q03CA4 Ribose import ATP binding protein RbsA 0.68250258683 0.5 -0.18250258683 +UniRef50_A0A035W1W9 Replication initiation protein 1.07720310287 0.5 -0.577203102866 +UniRef50_A4WXQ6 0.700647585848 0.5 -0.200647585848 +UniRef50_D9X0C7 Phosphatase 0.0465448235535 0.5 0.453455176447 +UniRef50_F8KS43 GTP pyrophosphokinase 0.0126122096373 0.5 0.487387790362 +UniRef50_B9KQA0 0.432409740367 0.5 0.0675902596334 +UniRef50_UPI0003823562 hypothetical protein 0.283933932904 0.5 0.216066067096 +UniRef50_UPI000455DD45 ribosomal protein L17 0.349940080323 0.5 0.150059919677 +UniRef50_A5UJI1 Homoserine dehydrogenase, ThrA 3.02027346998 0.499999999999 -2.52027346998 +UniRef50_R4Q226 APC family amino acid polyamine organocation transporter 1.13433098871 0.5 -0.63433098871 +UniRef50_Q1WVB2 Aspartate carbamoyltransferase 0.78428926351 0.5 -0.28428926351 +UniRef50_C0DVB0 0.327887854556 0.5 0.172112145444 +UniRef50_O87388 Sarcosine oxidase subunit beta 0.723713805859 0.5 -0.223713805859 +UniRef50_UPI000470EA5E 2 oxoglutarate dehydrogenase, partial 0.267355621943 0.5 0.232644378057 +UniRef50_H0YYM6 0.10963210319 0.5 0.39036789681 +UniRef50_UPI0003613AC8 MFS transporter 1.621636955 0.5 -1.121636955 +UniRef50_D8JND0 Universal stress family protein 0.0155697836136 0.5 0.484430216386 +UniRef50_U1MD60 Nucleotide binding protein 0.132166774996 0.5 0.367833225004 +UniRef50_Q2NGD5 Polyphosphate kinase 2.92610802213 0.5 -2.42610802213 +UniRef50_A4CBI0 0.0112668954953 0.5 0.488733104505 +UniRef50_T8XWN9 1.6041096529 0.499999999999 -1.1041096529 +UniRef50_D8HJF1 0.26885667599 0.5 0.23114332401 +UniRef50_M9VHP6 Membrane associated protein 0.0227885611184 0.5 0.477211438882 +UniRef50_UPI00035D007C hypothetical protein 0.0484413674145 0.5 0.451558632586 +UniRef50_A4WWG0 FAD dependent oxidoreductase 1.79813526496 0.5 -1.29813526496 +UniRef50_P0AFR9 Inner membrane ABC transporter permease protein YdcV 1.23735026879 0.5 -0.737350268789 +UniRef50_F2V5D2 PE PGRS family protein 0.16562285891 0.5 0.33437714109 +UniRef50_A0QWW2 Glyceraldehyde 3 phosphate dehydrogenase 0.00132108789477 0.5 0.498678912105 +UniRef50_Q6A7C7 Conserved phage related protein 0.0325819783775 0.5 0.467418021622 +UniRef50_D8JF19 Subtilisin like serine protease 0.00384412851051 0.5 0.496155871489 +UniRef50_UPI000363C5FE hypothetical protein 0.589353780458 0.5 -0.089353780458 +UniRef50_X5Q8M2 0.623441481784 0.5 -0.123441481784 +UniRef50_C6S6G3 Putative phage associated protein 0.0169011242824 0.5 0.483098875717 +UniRef50_B7LF20 4 deoxy L threo 5 hexosulose uronate ketol isomerase 4.45430204707 0.500000000003 -3.95430204707 +UniRef50_O52177 GTP pyrophosphokinase 0.963749867348 0.5 -0.463749867348 +UniRef50_UPI0002B4176A 0.462610485602 0.5 0.0373895143983 +UniRef50_A8FCN2 N acetyldiaminopimelate deacetylase 0.0103049821875 0.500000000001 0.489695017812 +UniRef50_E6MVH5 Periplasmic binding family protein 0.00135346603099 0.5 0.498646533969 +UniRef50_UPI000287C383 tRNA 2 selenouridine synthase 0.966980267465 0.5 -0.466980267465 +UniRef50_A5IVH0 Zn dependent protease like protein 1.61870352951 0.5 -1.11870352951 +UniRef50_B1B3N7 Truncated replication protein RepA 3.77016608347 0.5 -3.27016608347 +UniRef50_UPI000287D657 exodeoxyribonuclease III 0.365524214317 0.5 0.134475785683 +UniRef50_D0IXB3 Pirin like protein 0.270789518494 0.5 0.229210481506 +UniRef50_UPI0003055179 hypothetical protein 1.76984124345 0.5 -1.26984124345 +UniRef50_R9DJ31 1.59121775214 0.5 -1.09121775214 +UniRef50_M1MFG9 Spermidine putrescine transport system permease protein PotC 0.0842866325539 0.5 0.415713367446 +UniRef50_A4WWW0 1.35254379652 0.5 -0.852543796517 +UniRef50_F0SXK4 Cyclopropane fatty acyl phospholipid synthase 0.385652661648 0.5 0.114347338352 +UniRef50_UPI0002B483E1 PREDICTED 2.16485925911 0.5 -1.66485925911 +UniRef50_Q3HKK2 Mandelate racemase muconate lactonizing enzyme 3.80558652209 0.5 -3.30558652209 +UniRef50_Q2FWE1 Release factor glutamine methyltransferase 1.51987675077 0.499999999999 -1.01987675076 +UniRef50_Q7WCS7 Integral membrane component of multidrug efflux system 0.915738008173 0.5 -0.415738008173 +UniRef50_F0VCY6 1.81106415206 0.500000000002 -1.31106415206 +UniRef50_B1I3R5 Adenylate kinase 0.184663462602 0.5 0.315336537398 +UniRef50_G0LRB5 Exotoxin 2.42474284398 0.5 -1.92474284398 +UniRef50_P64613 Cell division protein ZapE 1.96563224888 0.500000000002 -1.46563224888 +UniRef50_UPI0003457696 UDP pyrophosphate phosphatase 6.18232845492 0.500000000002 -5.68232845492 +UniRef50_A0LNI2 tRNA N6 adenosine threonylcarbamoyltransferase 0.667267665245 0.5 -0.167267665245 +UniRef50_UPI00037A37E6 hypothetical protein 0.277140470711 0.5 0.222859529289 +UniRef50_A8AQN0 53.3414076843 0.499999999999 -52.8414076843 +UniRef50_UPI00036DA784 hypothetical protein 0.0305222904051 0.5 0.469477709595 +UniRef50_A1RBI9 Oxidoreductase, short chain dehydrogenase reductase family 3.24283359509 0.5 -2.74283359509 +UniRef50_UPI0003B44831 signal peptidase 1.83028999364 0.500000000001 -1.33028999364 +UniRef50_P63388 Probable phospholipid import ATP binding protein MlaF 0.081509738588 0.5 0.418490261412 +UniRef50_S7NJS1 4.91781242149 0.500000000002 -4.41781242149 +UniRef50_F8IS38 Xaa His dipeptidase 0.668607671723 0.5 -0.168607671723 +UniRef50_F3NI62 0.485971713656 0.5 0.0140282863441 +UniRef50_Q3J2S3 1.78744657471 0.499999999999 -1.28744657471 +UniRef50_UPI00047E9C04 hypothetical protein 0.618521502099 0.5 -0.118521502099 +UniRef50_P78016 DNA topoisomerase 4 subunit B 0.132236822171 0.5 0.367763177829 +UniRef50_Q82IE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.42093030005 0.5 0.07906969995 +UniRef50_E4U760 Carbohydrate ABC transporter membrane protein 2, CUT1 family 0.00109504658755 0.5 0.498904953413 +UniRef50_Q15TJ8 PKHD type hydroxylase Patl_2273 0.365629015195 0.5 0.134370984805 +UniRef50_A0A013SUS4 NMT1 like family protein 0.375811701693 0.5 0.124188298307 +UniRef50_R7FRD0 3.93250729586 0.5 -3.43250729586 +UniRef50_L0EBI3 Transcriptional accessory protein 3.35420241721 0.5 -2.85420241721 +UniRef50_E6Q8B0 0.72832365666 0.5 -0.22832365666 +UniRef50_UPI00036A5069 hypothetical protein 0.142091557385 0.5 0.357908442614 +UniRef50_P0A0Y5 Phosphoheptose isomerase 0.0678823771779 0.5 0.432117622822 +UniRef50_UPI0003673DF5 hypothetical protein 0.129121856978 0.5 0.370878143022 +UniRef50_Q99ZE5 Stress response regulator gls24 homolog 0.0863381597071 0.5 0.413661840293 +UniRef50_UPI0003B50954 aspartyl glutamyl tRNA amidotransferase subunit B 0.489934558181 0.5 0.0100654418192 +UniRef50_Q881Q1 Macrolide export ATP binding permease protein MacB 2 0.000288512640263 0.5 0.49971148736 +UniRef50_A9W856 Integrase, catalytic region 12.1715905392 0.500000000003 -11.6715905392 +UniRef50_Q5F5Y6 Lipid A disaccharide synthase 0.0581944234504 0.500000000001 0.441805576549 +UniRef50_UPI00035E69D2 hypothetical protein 0.227563625433 0.5 0.272436374567 +UniRef50_W5BGQ3 0.340054174303 0.5 0.159945825697 +UniRef50_UPI000373B42C hypothetical protein 0.251669581502 0.5 0.248330418498 +UniRef50_K2FSL8 0.161296712969 0.5 0.338703287031 +UniRef50_UPI000477E8B8 hypothetical protein 0.3824340182 0.5 0.1175659818 +UniRef50_Q9AGS1 Xanthine phosphoribosyltransferase 0.227258220178 0.5 0.272741779822 +UniRef50_F9FGU0 0.00341448980986 0.5 0.49658551019 +UniRef50_F8IRL8 Phosphate starvation inducible protein PhoH 3.41378767839 0.5 -2.91378767839 +UniRef50_P37169 Protein MurJ homolog 0.2382521205 0.5 0.2617478795 +UniRef50_J3P2Z6 0.823305221695 0.5 -0.323305221695 +UniRef50_B7NMR0 Endonuclease 8 1.03708096375 0.5 -0.537080963752 +UniRef50_M3AAL9 Secretory lipase 0.0279437121115 0.5 0.472056287888 +UniRef50_R7FPS5 DEAD DEAH box helicase 0.106408574817 0.5 0.393591425183 +UniRef50_Q8R9G3 Phospho N acetylmuramoyl pentapeptide transferase 0.137750226774 0.5 0.362249773225 +UniRef50_O86489 Serine aspartate repeat containing protein E 3.56721121402 0.499999999999 -3.06721121402 +UniRef50_UPI00047946DB hypothetical protein 9.83163238782 0.499999999993 -9.33163238781 +UniRef50_I7EZZ6 4.18874956081 0.499999999997 -3.68874956081 +UniRef50_Q2G5Y5 NADH quinone oxidoreductase subunit C 0.591832451716 0.5 -0.0918324517163 +UniRef50_A3PRZ2 Transcriptional regulator, LysR family 5.55025950381 0.500000000001 -5.05025950381 +UniRef50_O94524 Glutathione S transferase omega like 2 8.38690302292 0.499999999999 -7.88690302292 +UniRef50_P21399 Cytoplasmic aconitate hydratase 0.0544893370522 0.5 0.445510662948 +UniRef50_P15493 Lipase 0.0985172647638 0.5 0.401482735236 +UniRef50_S0F090 Acetolactate synthase, small subunit 1.04324119826 0.5 -0.543241198262 +UniRef50_A6LRW0 Phage Terminase 0.102074489363 0.5 0.397925510638 +UniRef50_UPI00026CC897 NADPH 0.059560777344 0.5 0.440439222656 +UniRef50_D3QFY8 10.0962323267 0.500000000001 -9.59623232667 +UniRef50_R9SLI7 DEAD DEAH box helicase domain containing protein 5.38607914933 0.499999999997 -4.88607914933 +UniRef50_UPI00016AB4FD type III secretion inner membrane protein SctV, partial 0.250916842587 0.5 0.249083157413 +UniRef50_UPI0003806CCD hypothetical protein 0.144251570383 0.5 0.355748429617 +UniRef50_F2AE31 20.1023732446 0.499999999991 -19.6023732446 +UniRef50_T0UHV5 Transcriptional regulator, AraC family 0.987212929676 0.5 -0.487212929676 +UniRef50_P75809 Flavin mononucleotide phosphatase YbjI 1.48901119503 0.5 -0.989011195025 +UniRef50_B2IMU5 HIT family protein 0.425769078484 0.5 0.0742309215156 +UniRef50_G6Y3Q8 Transposase IS66 1.30808055483 0.499999999998 -0.808080554831 +UniRef50_A4AR30 Dihydrolipoyl dehydrogenase 1.67988442876 0.5 -1.17988442876 +UniRef50_UPI000467AD6A hypothetical protein, partial 0.303359893306 0.5 0.196640106694 +UniRef50_B4SJH6 NADH quinone oxidoreductase subunit D 1 0.0378662764005 0.5 0.4621337236 +UniRef50_I1Y681 Type F conjugative transfer system protein TraW 0.50603433509 0.5 -0.00603433508985 +UniRef50_UPI0003B68FBD pseudouridine synthase 0.125269562029 0.5 0.374730437971 +UniRef50_P26408 Hydrogenase transcriptional regulatory protein hupR1 1.96453839656 0.499999999998 -1.46453839655 +UniRef50_F5X1L0 PTS system, fructose specific IIABC component 0.687145038243 0.5 -0.187145038243 +UniRef50_P06136 Cell division protein FtsQ 0.868565021587 0.5 -0.368565021587 +UniRef50_E8QRB2 Outer membrane protein HopZ 0.0263680943485 0.5 0.473631905652 +UniRef50_Q5HQR1 Toprim domain protein 4.66831153996 0.499999999998 -4.16831153996 +UniRef50_Q5P409 Peptide chain release factor 3 0.304931108128 0.5 0.195068891872 +UniRef50_B0JJ94 Potassium transporting ATPase A chain 0.00109869092317 0.499999999999 0.498901309077 +UniRef50_W8EUK6 Iron ABC transporter 0.00909887242633 0.5 0.490901127574 +UniRef50_UPI000288243F phospho 2 dehydro 3 deoxyheptonate aldolase, partial 0.48475949141 0.5 0.0152405085903 +UniRef50_UPI00041C714B mechanosensitive ion channel protein MscL 0.607835988234 0.5 -0.107835988234 +UniRef50_D1DHF6 Oxidoreductase 0.0361431656746 0.5 0.463856834326 +UniRef50_UPI00038110F4 hypothetical protein 0.0501481997021 0.5 0.449851800298 +UniRef50_A6M363 Amidohydrolase 3 0.42524845662 0.5 0.0747515433801 +UniRef50_A5UJ78 Adhesin like protein 2.12256402257 0.499999999999 -1.62256402257 +UniRef50_UPI00047DA4D0 iron transporter FeoB 0.616501102362 0.5 -0.116501102362 +UniRef50_K5W0W9 2.55597781646 0.5 -2.05597781646 +UniRef50_F0K6G2 Integral membrane protein 0.062762677168 0.5 0.437237322832 +UniRef50_UPI00046C4A93 hypothetical protein 0.088162667119 0.5 0.411837332881 +UniRef50_Q3BJT1 Nitrite oxidoreductase beta subunit 0.888445594967 0.5 -0.388445594967 +UniRef50_I7CFF2 Methionine aminopeptidase 0.237295083726 0.5 0.262704916274 +UniRef50_M1Q6R0 1.92260542047 0.5 -1.42260542047 +UniRef50_J3JP50 0.744590377039 0.5 -0.244590377039 +UniRef50_D2PTZ5 1.05906581365 0.499999999999 -0.559065813652 +UniRef50_A6M151 Putative cell wall binding repeat containing protein 0.998625961908 0.5 -0.498625961908 +UniRef50_UPI0003606801 hypothetical protein 0.663769249583 0.5 -0.163769249583 +UniRef50_Q4RIY1 Chromosome undetermined SCAF15041, whole genome shotgun sequence. 1.47888197454 0.5 -0.978881974538 +UniRef50_A4WSI1 Mammalian cell entry related domain protein 1.85511193072 0.5 -1.35511193072 +UniRef50_UPI00038114B4 hypothetical protein 0.179196895843 0.5 0.320803104157 +UniRef50_L1G4X2 Permease family protein 1.94995902504 0.5 -1.44995902504 +UniRef50_R9SJI3 CCA adding enzyme 10.6553937677 0.500000000009 -10.1553937677 +UniRef50_Q31DZ2 Hydrogenase expression formation protein hypD 0.0186044693095 0.5 0.481395530691 +UniRef50_J9YR02 BioY family protein 1.45489213465 0.5 -0.954892134651 +UniRef50_A4IJA6 Thymidylate kinase 0.00166936772349 0.5 0.498330632277 +UniRef50_Q5LPC1 Adenosine deaminase 1.657650023 0.500000000001 -1.157650023 +UniRef50_P60070 Anti sigma B factor antagonist 0.3436535136 0.5 0.1563464864 +UniRef50_Q87J85 Tyrosine tRNA ligase 1 2.08835524466 0.5 -1.58835524466 +UniRef50_B3QV79 Serine tRNA ligase 0.287454723045 0.5 0.212545276955 +UniRef50_Q3JCN0 1,4 alpha glucan branching enzyme GlgB 2.56499600935 0.5 -2.06499600935 +UniRef50_Q7NFY1 Chorismate synthase 0.0401568003913 0.5 0.459843199609 +UniRef50_F5M2D5 Choline ethanolamine kinase 4.86153345767 0.499999999999 -4.36153345767 +UniRef50_X5ZST2 0.0650045017675 0.5 0.434995498232 +UniRef50_B8DDV4 Peptidoglycan bound protein 0.0301536829371 0.500000000001 0.469846317062 +UniRef50_UPI00047EA9AC hypothetical protein 0.834346091391 0.5 -0.334346091391 +UniRef50_Q8TX14 9.81733223636 0.500000000001 -9.31733223636 +UniRef50_A3CL70 Cobalt transport protein CbiM 7.02764630547 0.499999999997 -6.52764630547 +UniRef50_Q5HRI1 GTP cyclohydrolase FolE2 1.28154574698 0.5 -0.781545746976 +UniRef50_A1SSZ0 0.270732676895 0.5 0.229267323105 +UniRef50_UPI0002658599 PREDICTED 0.0125055412835 0.5 0.487494458716 +UniRef50_A6LYD5 Transposase, IS111A IS1328 IS1533 0.128371391979 0.5 0.371628608021 +UniRef50_B6AM37 0.34154167308 0.5 0.15845832692 +UniRef50_A6LQ17 Malonyl CoA acyl carrier protein transacylase 0.0601945102798 0.5 0.43980548972 +UniRef50_B9AH82 0.965228390944 0.5 -0.465228390944 +UniRef50_B9AH81 49.1504265863 0.49999999999 -48.6504265862 +UniRef50_UPI0004656F44 FAD binding molybdopterin dehydrogenase 0.283438976111 0.5 0.216561023889 +UniRef50_UPI00036CFDE4 hypothetical protein 0.736188730029 0.5 -0.236188730029 +UniRef50_UPI0002624A61 succinylarginine dihydrolase 0.136434401453 0.5 0.363565598547 +UniRef50_C4RAQ9 0.0271281836839 0.5 0.472871816316 +UniRef50_Q47QV2 0.127491135997 0.5 0.372508864003 +UniRef50_E1ZQF3 0.219464533403 0.5 0.280535466597 +UniRef50_H6RSF4 1.86054500029 0.5 -1.36054500029 +UniRef50_Q1Q8I7 Arginine tRNA ligase 0.00644514267063 0.5 0.493554857329 +UniRef50_Q81FQ4 Nucleoside diphosphate kinase 5.0990212483 0.500000000003 -4.59902124831 +UniRef50_UPI00037813C2 hypothetical protein 1.33548125392 0.500000000001 -0.835481253923 +UniRef50_J9P031 1.22583893834 0.500000000001 -0.725838938343 +UniRef50_P76241 1.69099973879 0.500000000001 -1.19099973879 +UniRef50_UPI0003728B23 hypothetical protein 7.62016719272 0.500000000009 -7.12016719273 +UniRef50_P00905 Bifunctional protein TrpGD 2.71615774442 0.5 -2.21615774442 +UniRef50_K1ST89 Heat shock protein 70 2.56030670902 0.500000000002 -2.06030670903 +UniRef50_Q92M91 Holliday junction ATP dependent DNA helicase RuvA 1.20811294008 0.5 -0.708112940082 +UniRef50_D3P3A5 Transposase 6.79279763163 0.499999999998 -6.29279763162 +UniRef50_A7H8W4 Phosphopentomutase 0.252042833486 0.5 0.247957166514 +UniRef50_B3PJZ1 0.298381957778 0.5 0.201618042222 +UniRef50_G1ZE91 Outer membrane protein assembly complex, YaeT protein 2.07420049743 0.5 -1.57420049743 +UniRef50_A6M2H1 0.0886539883572 0.5 0.411346011643 +UniRef50_A6M2H8 5.64556543791 0.500000000002 -5.14556543791 +UniRef50_X6L2P2 0.903910352825 0.5 -0.403910352825 +UniRef50_Q04KA6 2.8524865574 0.500000000001 -2.3524865574 +UniRef50_UPI00037EF484 hypothetical protein, partial 2.67431333244 0.500000000001 -2.17431333244 +UniRef50_R4LGH4 0.174358438141 0.5 0.325641561859 +UniRef50_A4WR12 ABC transporter related 0.60800939352 0.5 -0.10800939352 +UniRef50_UPI000466F502 nitrate reductase 0.748083969103 0.5 -0.248083969103 +UniRef50_UPI000360428B hypothetical protein 0.198658692105 0.5 0.301341307894 +UniRef50_UPI0002DA4A3A hypothetical protein 1.17167507348 0.5 -0.671675073477 +UniRef50_O59229 30S ribosomal protein S12 1.58224192522 0.500000000002 -1.08224192522 +UniRef50_F8YC51 Pyridine nucleotide disulfide oxidoreductase 0.9622342153 0.5 -0.4622342153 +UniRef50_UPI000472E3C4 hypothetical protein 0.249987780245 0.5 0.250012219755 +UniRef50_F9NUL2 ABC transporter, permease protein 0.0282484417244 0.5 0.471751558275 +UniRef50_F3GFB2 ABC transporter, substrate binding protein, aliphatic sulfonate 0.359380648307 0.5 0.140619351693 +UniRef50_B5F5V3 Nitrate reductase, alpha subunit 1.10284510513 0.5 -0.602845105133 +UniRef50_Q9HZQ3 Aerobic cobaltochelatase subunit CobN 2.35934288231 0.500000000002 -1.85934288231 +UniRef50_P76236 Inner membrane protein YeaI 0.704627879094 0.5 -0.204627879094 +UniRef50_A5ULS0 0.983975479197 0.5 -0.483975479197 +UniRef50_A4F866 Transcription elongation factor GreA 0.0531959074539 0.5 0.446804092546 +UniRef50_P32136 Putative sulfoquinovose importer 1.63147161124 0.5 -1.13147161124 +UniRef50_P08417 Fumarate hydratase, mitochondrial 0.29494304802 0.5 0.20505695198 +UniRef50_Q9X581 NatC 0.0376005997649 0.5 0.462399400235 +UniRef50_A6LS24 Peptidase M56, BlaR1 0.0605383571185 0.500000000001 0.439461642881 +UniRef50_K2LBK5 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 0.74193868938 0.5 -0.24193868938 +UniRef50_UPI00037E01EF hypothetical protein 0.108496223618 0.5 0.391503776382 +UniRef50_UPI0004702907 ABC transporter ATP binding protein 2.36029061258 0.500000000002 -1.86029061259 +UniRef50_E2ZV83 0.28074391836 0.5 0.21925608164 +UniRef50_Q7V3Y9 Magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.467007090122 0.5 0.0329929098777 +UniRef50_G2RNK8 Lipoprotein 1.98549807205 0.499999999999 -1.48549807205 +UniRef50_Q8DWH8 UPF0237 protein SMU_72 0.331593959566 0.5 0.168406040434 +UniRef50_D7GFE3 Regulatory protein, TetR 0.0772642157553 0.5 0.422735784244 +UniRef50_P29686 Glucose 6 phosphate 1 dehydrogenase 0.000154192135729 0.5 0.499845807864 +UniRef50_T0TBX4 Excinuclease ABC subunit A 0.279474791926 0.5 0.220525208074 +UniRef50_UPI00025578A6 dihydroxyacetone kinase 0.00340711860575 0.5 0.496592881394 +UniRef50_Q8KDE3 N acetyl gamma glutamyl phosphate reductase 0.155647690028 0.499999999999 0.344352309972 +UniRef50_Q1J1R8 Tfp pilus assembly pathway, ATPase PilB 0.00407535273311 0.5 0.495924647267 +UniRef50_A7NQM8 Formamidopyrimidine DNA glycosylase 0.245157877142 0.5 0.254842122858 +UniRef50_Q8CW45 Outer membrane lipoprotein LolB 0.359248270265 0.5 0.140751729735 +UniRef50_Q9X909 DNA topoisomerase 1 0.0120933088453 0.5 0.487906691155 +UniRef50_UPI000371ABD8 hypothetical protein 0.0631695001081 0.5 0.436830499892 +UniRef50_UPI000467A9B2 hypothetical protein 0.563638382736 0.5 -0.063638382736 +UniRef50_P24211 Putative protein RhsE 1.62544354908 0.5 -1.12544354908 +UniRef50_P04179 Superoxide dismutase [Mn], mitochondrial 0.0442915351205 0.500000000001 0.455708464879 +UniRef50_UPI000478DF96 AraC family transcriptional regulator 0.22685649578 0.5 0.273143504221 +UniRef50_Q9HTT0 1.46927586678 0.5 -0.96927586678 +UniRef50_J9YQC3 1.95735751856 0.5 -1.45735751856 +UniRef50_A0A045ECZ1 1.96310728486 0.5 -1.46310728486 +UniRef50_B9E3J2 0.135117294904 0.5 0.364882705096 +UniRef50_K1DV80 Cupin superfamily protein 0.232072611141 0.5 0.267927388859 +UniRef50_UPI00040C1A9F hypothetical protein 1.95387119903 0.5 -1.45387119903 +UniRef50_Q5HF61 Probable thiol peroxidase 2.53783004196 0.5 -2.03783004196 +UniRef50_F8JFK7 0.0966070342534 0.5 0.403392965747 +UniRef50_G7M7E3 Membrane bound O acyl transferase MBOAT family protein 0.0434427124322 0.5 0.456557287568 +UniRef50_G7M6M8 Peptidase M56 BlaR1 0.0243833366737 0.5 0.475616663327 +UniRef50_Q9I5Z5 0.415791536869 0.5 0.0842084631305 +UniRef50_UPI00047B409A hypothetical protein 0.171128788044 0.5 0.328871211955 +UniRef50_P44797 Adenylosuccinate lyase 1.7642053514 0.499999999999 -1.2642053514 +UniRef50_K1V508 0.305993840966 0.5 0.194006159034 +UniRef50_X6P3I6 0.199555556519 0.5 0.300444443481 +UniRef50_B8DI47 Cell wall surface anchor family protein 0.00173546194655 0.500000000001 0.498264538053 +UniRef50_F3ZH26 Putative dehydrogenase 0.640701618992 0.5 -0.140701618992 +UniRef50_P0ABP1 Anaerobic C4 dicarboxylate transporter DcuB 2.85122731548 0.500000000001 -2.35122731549 +UniRef50_UPI0004688581 replication initiation protein RepC 0.907959696961 0.5 -0.407959696961 +UniRef50_D9REY1 4.58129821828 0.500000000002 -4.08129821828 +UniRef50_Q2CKE9 0.603171123977 0.5 -0.103171123977 +UniRef50_Q9JUV1 Proline iminopeptidase 0.0217351173063 0.5 0.478264882694 +UniRef50_F9HJK1 0.542455555834 0.5 -0.0424555558339 +UniRef50_A7MXL0 Prolipoprotein diacylglyceryl transferase 0.310049865672 0.5 0.189950134328 +UniRef50_C9XQG5 Trehalose 6 phosphate hydrolase 2.70989402146 0.499999999998 -2.20989402145 +UniRef50_X1YC61 0.15256367684 0.5 0.34743632316 +UniRef50_Q57658 Aspartate semialdehyde dehydrogenase 2.48010835259 0.5 -1.98010835259 +UniRef50_Q5NNB4 N succinylarginine dihydrolase 0.156761216575 0.5 0.343238783425 +UniRef50_A9WR14 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.00112428997394 0.5 0.498875710026 +UniRef50_P54374 Shikimate dehydrogenase 1.5044627285 0.5 -1.0044627285 +UniRef50_A0A024HXE1 1.11264165218 0.5 -0.612641652179 +UniRef50_T1Y972 Transposase 4.61393552148 0.500000000001 -4.11393552148 +UniRef50_W7VQ87 Phytoene dehydrogenase 0.0237328751449 0.5 0.476267124855 +UniRef50_M9RUX7 TonB domain containing protein 0.185176520829 0.5 0.314823479171 +UniRef50_UPI000470A397 30S ribosomal protein S2, partial 0.49234972997 0.5 0.00765027003036 +UniRef50_UPI000441C901 PREDICTED 0.540678147287 0.5 -0.040678147287 +UniRef50_B3EPQ3 Protease HtpX homolog 2.4675386506 0.5 -1.9675386506 +UniRef50_I0KKW1 DoxX family protein 1.03063856847 0.5 -0.530638568472 +UniRef50_G4E2Y7 ATP dependent chaperone ClpB 0.0154673022658 0.5 0.484532697734 +UniRef50_P57408 UPF0053 protein BU323 1.37395925891 0.499999999999 -0.873959258904 +UniRef50_M1Z917 0.0833059028628 0.5 0.416694097137 +UniRef50_UPI0003B3F37B polyphosphate kinase, partial 0.024938649696 0.5 0.475061350304 +UniRef50_UPI0002880AE8 bacteriocin ABC transporter ATPase 0.424570913859 0.5 0.0754290861406 +UniRef50_Q46911 2.58263537888 0.499999999999 -2.08263537888 +UniRef50_X0SYL6 Marine sediment metagenome DNA, contig 0.765604771393 0.5 -0.265604771393 +UniRef50_G2T0A1 2.67565047405 0.5 -2.17565047405 +UniRef50_I0C2G3 Deoxyribodipyrimidine photolyase 2.45444997639 0.499999999997 -1.95444997639 +UniRef50_O67315 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.985248012206 0.5 -0.485248012206 +UniRef50_W0Z2H6 ISSod1 transposase 4.40815400547 0.499999999994 -3.90815400546 +UniRef50_UPI0004726C09 hypothetical protein 0.400197408791 0.5 0.0998025912092 +UniRef50_C4RCM2 Polyketide synthase 0.322474899034 0.5 0.177525100966 +UniRef50_P19529 Replication initiation protein 1.47094144487 0.5 -0.970941444869 +UniRef50_P9WHM0 N5 carboxyaminoimidazole ribonucleotide mutase 0.421380078494 0.5 0.0786199215063 +UniRef50_B9DYP5 0.0958228917449 0.499999999999 0.404177108256 +UniRef50_Q2G9D9 Arginine tRNA ligase 2.82528989865 0.5 -2.32528989865 +UniRef50_X1L2W8 Marine sediment metagenome DNA, contig 1.46865020931 0.499999999999 -0.968650209306 +UniRef50_O27434 CoB CoM heterodisulfide reductase iron sulfur subunit A 2.22203881252 0.5 -1.72203881252 +UniRef50_UPI00035FE7E0 hypothetical protein 1.06017534925 0.5 -0.56017534925 +UniRef50_F0RPB8 Lon protease 0.00271137941219 0.5 0.497288620588 +UniRef50_Q6AAY2 0.0224100711032 0.5 0.477589928897 +UniRef50_Q6AAY0 0.016010450319 0.499999999999 0.483989549682 +UniRef50_A3U7W4 0.00449277235108 0.5 0.495507227649 +UniRef50_C1KVS7 Indole 3 glycerol phosphate synthase 0.160410739086 0.5 0.339589260914 +UniRef50_P08390 USG 1 protein 0.910346753031 0.5 -0.410346753031 +UniRef50_UPI00019116B2 trehalose 6 phosphate phosphatase, partial 0.236858657073 0.5 0.263141342927 +UniRef50_A5ULH0 2 deoxyribose 5 phosphate aldolase , DeoC 1.26853711425 0.5 -0.76853711425 +UniRef50_D2ZQG6 3.85457802005 0.500000000001 -3.35457802005 +UniRef50_G7M5P7 Cell wall binding repeat containing protein 0.116385822897 0.499999999999 0.383614177103 +UniRef50_UPI0002C33B71 4.40125461158 0.499999999998 -3.90125461158 +UniRef50_I6T197 Chitin binding protein CbpD 0.491812848006 0.5 0.00818715199393 +UniRef50_B9KM20 PTSINtr with GAF domain, PtsP 3.00690494696 0.5 -2.50690494696 +UniRef50_A9EDR0 1.24728535499 0.5 -0.747285354995 +UniRef50_Q4RQQ9 Chromosome 2 SCAF15004, whole genome shotgun sequence 0.0730618834607 0.5 0.426938116539 +UniRef50_J3HVJ5 0.538447706838 0.5 -0.0384477068376 +UniRef50_D8HCA2 1.89490381541 0.500000000001 -1.39490381541 +UniRef50_U0EAS4 Adenine deaminase 0.547098306351 0.5 -0.047098306351 +UniRef50_UPI0003C1ADBB 0.50149116836 0.5 -0.00149116836025 +UniRef50_F8C6I4 7.46350294657 0.500000000001 -6.96350294657 +UniRef50_UPI000474BE5B hypothetical protein 0.0269151666122 0.5 0.473084833388 +UniRef50_UPI00047B93C9 hypothetical protein 0.491598299255 0.5 0.00840170074486 +UniRef50_R1CD42 1.77613393275 0.5 -1.27613393275 +UniRef50_A5EUT6 Phosphoglucosamine mutase 0.0948452922085 0.5 0.405154707792 +UniRef50_Q53058 1.4753392572 0.5 -0.975339257196 +UniRef50_UPI000287CEB1 4 hydroxythreonine 4 phosphate dehydrogenase 0.231782799634 0.5 0.268217200366 +UniRef50_G6RIH0 Prepilin type N terminal cleavage methylation domain protein 0.00301800466819 0.5 0.496981995332 +UniRef50_A3UGH3 0.390525225564 0.5 0.109474774436 +UniRef50_J9P8Q4 0.196885314428 0.5 0.303114685572 +UniRef50_F0KF14 Acyl CoA dehydrogenase 0.0115795713536 0.5 0.488420428646 +UniRef50_U3T9B5 0.0189937968295 0.5 0.481006203171 +UniRef50_P44482 2 dehydro 3 deoxygluconokinase 0.441931545939 0.5 0.0580684540608 +UniRef50_Q8CMX1 Transcriptional regulator 0.101780498863 0.5 0.398219501137 +UniRef50_V4R7Y3 Hydrogenase expression protein HypA 0.0522340964602 0.5 0.44776590354 +UniRef50_S8ENL7 0.0271236343167 0.5 0.472876365683 +UniRef50_W0YWD4 Sensor response regulator hybrid 0.732698440848 0.5 -0.232698440848 +UniRef50_Q7MWN4 Elongation factor P 1 0.30056286722 0.5 0.19943713278 +UniRef50_UPI000372A8A8 hypothetical protein 2.82369763844 0.499999999999 -2.32369763844 +UniRef50_Q0VN20 Aliphatic amidase 0.144992199406 0.5 0.355007800594 +UniRef50_O54461 Beta lactamase 0.976654183783 0.5 -0.476654183783 +UniRef50_V9WM02 MoxR like ATPase 1.78596414157 0.500000000001 -1.28596414157 +UniRef50_F0KI93 0.0327798126263 0.5 0.467220187374 +UniRef50_F4PTN3 0.0272826191814 0.5 0.472717380819 +UniRef50_A6M0Z8 Integral membrane sensor signal transduction histidine kinase 0.324941921752 0.5 0.175058078248 +UniRef50_Q06065 Acetoacetate metabolism regulatory protein AtoC 2.31089591736 0.499999999998 -1.81089591736 +UniRef50_L1K929 1.70180142649 0.5 -1.20180142649 +UniRef50_H3TTB7 FtsK SpoIIIE family protein 1.49955492657 0.499999999999 -0.99955492657 +UniRef50_Q9I2K3 0.786303993915 0.5 -0.286303993915 +UniRef50_UPI0004571B3D PREDICTED 0.0816475076526 0.5 0.418352492348 +UniRef50_UPI0002897681 3 oxoadipate enol lactonase 0.123019304082 0.5 0.376980695918 +UniRef50_V9C7N3 0.310744851033 0.5 0.189255148967 +UniRef50_P76080 Putative 1,2 phenylacetyl CoA epoxidase, subunit D 5.97053009538 0.5 -5.47053009538 +UniRef50_A6LS79 0.170157209129 0.5 0.329842790871 +UniRef50_UPI000376E372 hypothetical protein 0.122859429821 0.5 0.37714057018 +UniRef50_UPI00040D66F2 serine threonine protein phosphatase 0.391956959755 0.5 0.108043040245 +UniRef50_O27653 30S ribosomal protein S19e 0.189986714043 0.5 0.310013285957 +UniRef50_W4TX83 0.0196359385378 0.5 0.480364061462 +UniRef50_A6LS70 0.506493975827 0.5 -0.00649397582722 +UniRef50_UPI0003C14FAA 1.97432045287 0.500000000001 -1.47432045287 +UniRef50_A6LUP1 Peptidoglycan glycosyltransferase 0.412471804134 0.5 0.0875281958658 +UniRef50_UPI000255BA6E general secretion pathway protein I 0.724953741972 0.5 -0.224953741972 +UniRef50_UPI0003B5E2AD ABC transporter 1.28421240654 0.5 -0.784212406538 +UniRef50_D4HCQ8 Methylenetetrahydrofolate reductase 0.402027484018 0.5 0.0979725159817 +UniRef50_UPI00040E317A hypoxanthine phosphoribosyltransferase 0.322479274362 0.5 0.177520725638 +UniRef50_P77658 0.79888211631 0.5 -0.29888211631 +UniRef50_I0C113 Isovaleryl CoA dehydrogenase 2.37291545753 0.5 -1.87291545753 +UniRef50_D8JKL5 DNA polymerase III subunit beta 0.0783164710738 0.5 0.421683528926 +UniRef50_UPI0002C34F8A 0.422421465118 0.5 0.0775785348819 +UniRef50_E0MMN1 0.181632676036 0.5 0.318367323964 +UniRef50_D1RMY5 Thioesterase family protein 0.00682064590216 0.5 0.493179354098 +UniRef50_P77657 0.472017424105 0.5 0.027982575895 +UniRef50_UPI000464369A hypothetical protein 0.0652057512514 0.5 0.434794248749 +UniRef50_F5M2M3 CheBRA 2.8098033342 0.5 -2.3098033342 +UniRef50_O31219 Aspartate semialdehyde dehydrogenase 0.360923893594 0.5 0.139076106406 +UniRef50_Q28UY2 50S ribosomal protein L11 0.318256950572 0.5 0.181743049428 +UniRef50_P0AEJ4 Osmolarity sensor protein EnvZ 2.89123594098 0.499999999997 -2.39123594098 +UniRef50_K1E414 0.601934902256 0.5 -0.101934902256 +UniRef50_R9SK13 Phage integrase family protein 4.18865420057 0.499999999997 -3.68865420057 +UniRef50_UPI0003716E27 hypothetical protein 0.0135375428133 0.5 0.486462457187 +UniRef50_UPI00046FA912 ABC transporter substrate binding protein, partial 0.00677123549244 0.500000000001 0.493228764507 +UniRef50_UPI00040758D9 hypothetical protein 0.0565727921712 0.5 0.443427207829 +UniRef50_UPI00047851F7 peptide ABC transporter permease 0.478749942245 0.5 0.0212500577555 +UniRef50_UPI0003B46F2A ArsR family transcriptional regulator 1.06916376318 0.5 -0.569163763185 +UniRef50_H1KC86 0.177654410304 0.5 0.322345589696 +UniRef50_A6W0Y0 8 amino 7 oxononanoate synthase 0.45222407622 0.5 0.0477759237805 +UniRef50_A6LQ18 Transcriptional regulator, TetR family 0.367852311709 0.5 0.132147688291 +UniRef50_P44917 0.574627948998 0.5 -0.0746279489976 +UniRef50_Q8CNS8 Sortase 1.41497036378 0.5 -0.914970363778 +UniRef50_UPI0004418A78 PREDICTED 1.38704112015 0.5 -0.887041120149 +UniRef50_Q9ZM40 Flagellar biosynthesis protein FlhA 0.00758632316134 0.5 0.492413676839 +UniRef50_Q1GDE2 ATP synthase subunit b 2 2.53302746935 0.500000000001 -2.03302746935 +UniRef50_H2KZ84 Protein C37C3.1, isoform a 1.15129077721 0.5 -0.651290777206 +UniRef50_Q5HLQ2 1.17777135743 0.5 -0.677771357432 +UniRef50_Q5HLQ1 0.730980001153 0.5 -0.230980001153 +UniRef50_Q31ID1 Lipoprotein signal peptidase 0.345993014406 0.5 0.154006985594 +UniRef50_UPI0004018A38 succinate semialdehyde dehydrogenase 0.166844518509 0.5 0.33315548149 +UniRef50_D3S8C7 Hypoxanthine guanine phosphoribosyltransferase 1.68150908871 0.5 -1.18150908871 +UniRef50_I7DNF2 5.69661858433 0.499999999997 -5.19661858432 +UniRef50_D3E4Q3 7.68517222552 0.499999999998 -7.18517222551 +UniRef50_Q5HLQ8 1.27568501619 0.5 -0.775685016195 +UniRef50_A3PR56 HpcH HpaI aldolase 0.388353064983 0.5 0.111646935017 +UniRef50_Q2S6N0 Ribosomal RNA small subunit methyltransferase G 0.465121382238 0.5 0.0348786177615 +UniRef50_I0TMR6 Gram positive signal peptide protein, YSIRK family 1.10647750229 0.5 -0.606477502287 +UniRef50_UPI00046F57AB 2 oxoglutarate dehydrogenase 0.324340051118 0.5 0.175659948882 +UniRef50_J0XPW7 LPXTG motif cell wall anchor domain protein 5.22427873779 0.5 -4.72427873779 +UniRef50_Q68W26 Queuine tRNA ribosyltransferase 0.165192887101 0.499999999999 0.3348071129 +UniRef50_UPI0002B45411 0.896039740901 0.5 -0.396039740901 +UniRef50_I4EB97 Transposase and inactivated derivative 0.28523418075 0.5 0.21476581925 +UniRef50_P25396 Tellurite resistance protein TehA 1.33616079686 0.5 -0.836160796863 +UniRef50_Q87VS1 tRNA dihydrouridine synthase B 3.61936688033 0.5 -3.11936688033 +UniRef50_Q057P9 Serine hydroxymethyltransferase 0.410296593604 0.5 0.0897034063958 +UniRef50_X6K4S1 Head tail adaptor protein 1.61465111804 0.500000000002 -1.11465111804 +UniRef50_P26850 NADH ubiquinone oxidoreductase chain 6 2.15399847617 0.500000000003 -1.65399847618 +UniRef50_Q03007 Hydrogenase expression formation protein HupH 1.40059512253 0.5 -0.900595122526 +UniRef50_B7J5S6 Ribose 5 phosphate isomerase A 0.203954728365 0.5 0.296045271635 +UniRef50_P77656 9.26612398579 0.499999999989 -8.76612398578 +UniRef50_A6LU84 Small GTP binding protein 0.258273898201 0.5 0.241726101799 +UniRef50_A6LWF4 0.151031204004 0.5 0.348968795997 +UniRef50_P18868 Superoxide dismutase [Fe] 0.146090428567 0.5 0.353909571433 +UniRef50_A5UKH0 Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS 5.70245961941 0.5 -5.20245961941 +UniRef50_P39352 Putative metabolite transport protein YjhB 1.39163213561 0.5 -0.891632135611 +UniRef50_UPI0004703186 chemotaxis protein CheY, partial 0.821485713379 0.5 -0.321485713379 +UniRef50_C1DWC2 Membrane protein 1.25759462463 0.5 -0.757594624629 +UniRef50_UPI0003827112 hypothetical protein 0.961915302166 0.5 -0.461915302166 +UniRef50_B0V8D4 0.0128632999013 0.5 0.487136700099 +UniRef50_UPI000380411C hypothetical protein 0.038252140825 0.500000000001 0.461747859174 +UniRef50_UPI0002555E12 dihydrofolate reductase 0.351949914362 0.5 0.148050085638 +UniRef50_A5FVL8 Prolipoprotein diacylglyceryl transferase 1.76417409608 0.5 -1.26417409608 +UniRef50_UPI0003B597DA short chain dehydrogenase 0.515659484068 0.5 -0.0156594840676 +UniRef50_M4WY98 SAM dependent methyltransferase 1.91358203815 0.5 -1.41358203815 +UniRef50_F2CWZ0 Predicted protein 0.0737328977085 0.5 0.426267102291 +UniRef50_V9TIQ4 Glycosyltransferase 0.672130116389 0.5 -0.172130116389 +UniRef50_N1ZDW1 0.14978821991 0.5 0.35021178009 +UniRef50_A5WEW9 Cysteine tRNA ligase 0.000126583049648 0.5 0.49987341695 +UniRef50_H0E5U4 Glyoxalase family protein 0.192948089765 0.5 0.307051910235 +UniRef50_F7X1V6 MFS type transport protein 2.11409569756 0.499999999998 -1.61409569756 +UniRef50_UPI000255639C ABC transporter permease 0.0144778425244 0.5 0.485522157476 +UniRef50_U5MRX8 Sensor histidine kinase ResE 0.156504419878 0.5 0.343495580122 +UniRef50_A9FBU8 Methionine tRNA ligase 1 0.573528677124 0.5 -0.0735286771241 +UniRef50_UPI0002F98998 hypothetical protein 0.445280260686 0.5 0.0547197393141 +UniRef50_Q8XK37 DNA polymerase IV 0.249653826304 0.5 0.250346173696 +UniRef50_UPI00029A19D9 3 oxoacyl reductase 0.312721112683 0.5 0.187278887317 +UniRef50_P33015 UPF0394 inner membrane protein YeeE 2.0593528511 0.499999999998 -1.55935285109 +UniRef50_UPI0004692C4A alpha glucosidase 0.620695443657 0.5 -0.120695443657 +UniRef50_Q8P682 Ribosomal large subunit pseudouridine synthase D 0.849142438008 0.5 -0.349142438008 +UniRef50_F9V6Y3 ATP dependent Clp protease proteolytic subunit 9.26891790219 0.499999999999 -8.76891790219 +UniRef50_UPI000262A74C ribose ABC transporter permease 1.50897211198 0.5 -1.00897211198 +UniRef50_UPI00047136FC dTDP glucose 4,6 dehydratase 0.419834312038 0.5 0.0801656879617 +UniRef50_K1YIN2 0.410834581187 0.5 0.0891654188128 +UniRef50_U5MMQ6 Stage II sporulation P 0.14303421224 0.5 0.35696578776 +UniRef50_Q9FCD1 Urease subunit gamma 0.253892358469 0.5 0.246107641531 +UniRef50_UPI0004416D75 RF 1 domain containing protein 0.0340822295253 0.5 0.465917770475 +UniRef50_UPI0003A49BEA 3 phosphoglycerate dehydrogenase 0.585311696211 0.5 -0.0853116962112 +UniRef50_UPI00020D91AD XRE family transcriptional regulator 0.133179524387 0.5 0.366820475613 +UniRef50_O33579 Phosphoadenosine phosphosulfate reductase 0.465847076175 0.5 0.0341529238248 +UniRef50_Q6FAE6 0.0272525080136 0.5 0.472747491986 +UniRef50_UPI0003AE93A7 PREDICTED 0.494067292825 0.5 0.00593270717474 +UniRef50_UPI000237B0FC DEAD DEAH box helicase domain protein 0.000451781217606 0.5 0.499548218783 +UniRef50_UPI00037131BB hypothetical protein 0.0153087139032 0.5 0.484691286097 +UniRef50_UPI000361CF9B hypothetical protein 1.0574180662 0.5 -0.557418066203 +UniRef50_R5AUS4 0.321011852734 0.5 0.178988147266 +UniRef50_T2EQ25 Helix turn helix domain protein 2.89136481072 0.499999999996 -2.39136481072 +UniRef50_UPI0003B62920 amino acid ABC transporter ATPase 4.96752561675 0.499999999998 -4.46752561675 +UniRef50_I9SM88 Flavoprotein oxidoreductase 0.0266300256508 0.5 0.473369974349 +UniRef50_P52037 0.636526023809 0.5 -0.136526023809 +UniRef50_D6XAF0 Transcriptional regulator 1.91547993879 0.5 -1.41547993879 +UniRef50_I3THN3 0.853590915085 0.5 -0.353590915085 +UniRef50_A5ULL2 Adhesin like protein 3.49555001541 0.500000000001 -2.99555001541 +UniRef50_U6M3I8 0.554506842676 0.5 -0.0545068426757 +UniRef50_Q21TC3 Putative prolin rich exported protein 1.61623922344 0.500000000002 -1.11623922344 +UniRef50_UPI00032A0CE2 PREDICTED 0.042281268806 0.5 0.457718731194 +UniRef50_Q9CF79 Aspartate carbamoyltransferase 0.778693188039 0.5 -0.278693188039 +UniRef50_A9GWZ1 1.43144776615 0.5 -0.93144776615 +UniRef50_UPI000477BC16 ABC transporter ATP binding protein 5.98609884352 0.5 -5.48609884352 +UniRef50_Q184N3 N acetylmuramic acid 6 phosphate etherase 0.398111047397 0.5 0.101888952603 +UniRef50_UPI0003EF6AD2 hypothetical protein 0.808700195089 0.5 -0.308700195089 +UniRef50_P19934 Protein TolA 2.64046740929 0.5 -2.14046740929 +UniRef50_C2WHY8 Antisigma factor antagonist, STAS 1.29644769379 0.5 -0.796447693794 +UniRef50_L0A3G2 ABC type metal ion transport system, periplasmic component surface adhesin 0.00563005214727 0.499999999999 0.494369947853 +UniRef50_A5UTU3 Peptidoglycan binding domain 1 protein 0.854099866064 0.5 -0.354099866064 +UniRef50_Q17WK7 0.19183817497 0.5 0.308161825031 +UniRef50_J9GTY9 7.36264853849 0.500000000008 -6.86264853849 +UniRef50_B9JRL5 Transposase 0.618247377112 0.5 -0.118247377112 +UniRef50_A0A037ZJL2 0.642685023318 0.5 -0.142685023318 +UniRef50_A5UJV0 Probable 3 phosphoshikimate 1 carboxyvinyltransferase 1.61020645738 0.5 -1.11020645738 +UniRef50_G7U4Y3 0.0320726291958 0.5 0.467927370804 +UniRef50_W0N4N9 0.542317789494 0.5 -0.042317789494 +UniRef50_P33228 Protein RecT 0.653584218798 0.5 -0.153584218798 +UniRef50_K2KBM0 Sulfite oxidase subunit YedZ 1.36718635328 0.5 -0.86718635328 +UniRef50_Q5HGR8 1.7337064794 0.499999999999 -1.2337064794 +UniRef50_UPI00034742BC hypothetical protein 0.00843427939809 0.5 0.491565720602 +UniRef50_UPI00047A7CB2 DNA mismatch repair protein MutT 0.0747663462595 0.5 0.425233653741 +UniRef50_D1GUM7 Probable siderophore biosynthesis protein SbnA 4.38515961153 0.500000000006 -3.88515961154 +UniRef50_A0A022P693 0.641471595902 0.5 -0.141471595902 +UniRef50_F0L7M8 Transcriptional regulator, GntR family 0.43100949939 0.5 0.0689905006104 +UniRef50_U5WK69 2.51020903882 0.5 -2.01020903882 +UniRef50_X5EXM8 Glycosyl transferase 0.361581144149 0.5 0.138418855851 +UniRef50_UPI000363A82D hypothetical protein 0.357395722836 0.5 0.142604277164 +UniRef50_Q8CS03 1.64477862146 0.5 -1.14477862146 +UniRef50_Q8CS02 1.72201836352 0.5 -1.22201836352 +UniRef50_P29018 ATP binding permease protein CydD 1.03690152619 0.5 -0.536901526192 +UniRef50_Q8CS00 1.73099183029 0.5 -1.23099183029 +UniRef50_UPI00047DEE62 hypothetical protein 2.84254371388 0.5 -2.34254371388 +UniRef50_B2GKX1 O acetylhomoserine lyase 0.75137347802 0.5 -0.25137347802 +UniRef50_Q8CS04 2.67513844074 0.500000000002 -2.17513844075 +UniRef50_M4BT40 0.176967500494 0.5 0.323032499506 +UniRef50_A4WS78 Signal transduction histidine kinase 1.5658001547 0.5 -1.0658001547 +UniRef50_Q9RTF4 0.0735802858957 0.5 0.426419714104 +UniRef50_E3FY93 Fibronectin type III domain protein 0.0267228530221 0.5 0.473277146978 +UniRef50_UPI0003666F64 hypothetical protein 0.330172546927 0.5 0.169827453073 +UniRef50_UPI00047D0052 hypothetical protein, partial 0.400598773209 0.5 0.0994012267906 +UniRef50_Q65MD5 UPF0753 protein BLi00845 BL00917 0.00878372536506 0.5 0.491216274635 +UniRef50_Q9RTF9 0.00672089779805 0.499999999999 0.493279102203 +UniRef50_Q9RUC1 SsrA binding protein 0.0036007623532 0.5 0.496399237647 +UniRef50_A1WR56 Oxidoreductase FAD binding domain protein 1.05007088849 0.5 -0.550070888486 +UniRef50_G8U508 DNA directed RNA polymerase 0.0328525254058 0.5 0.467147474594 +UniRef50_P37478 Transcriptional regulatory protein YycF 0.979351361895 0.5 -0.479351361895 +UniRef50_B7GY06 3 oxoadipate enol lactonase 2 0.0643938717415 0.5 0.435606128258 +UniRef50_O26858 Endonuclease III 5.98254148728 0.499999999999 -5.48254148728 +UniRef50_Q6GAV6 Coenzyme A disulfide reductase 5.17106365596 0.499999999999 -4.67106365596 +UniRef50_B0K8B2 Chorismate synthase 0.0492175915749 0.5 0.450782408425 +UniRef50_Q8DTC7 Chaperone protein ClpB 1.20745498144 0.5 -0.70745498144 +UniRef50_Q3SFC9 Dihydroxy acid dehydratase 2.95705539326 0.499999999998 -2.45705539326 +UniRef50_B7H186 FhuE receptor 0.0065540823711 0.5 0.493445917629 +UniRef50_X1BNR5 Marine sediment metagenome DNA, contig 0.184693712962 0.5 0.315306287038 +UniRef50_A3PWR0 Nitric oxide reductase, NorZ apoprotein 0.0313878875767 0.5 0.468612112423 +UniRef50_B7H4G2 Opine oxidase subunit A 0.00546392511822 0.5 0.494536074882 +UniRef50_Q8TYD7 GMP synthase [glutamine hydrolyzing] subunit B 0.757224724091 0.5 -0.257224724091 +UniRef50_A0AYH9 Transcriptional regulator, LysR family 0.0199185870855 0.5 0.480081412914 +UniRef50_P77804 Protein YdgA 1.6793767001 0.5 -1.1793767001 +UniRef50_E3GWU1 Radical SAM domain protein 1.62144205147 0.5 -1.12144205147 +UniRef50_X1I3C3 Marine sediment metagenome DNA, contig 0.382572825953 0.5 0.117427174047 +UniRef50_UPI0003814C5C hypothetical protein 0.451381169311 0.5 0.0486188306885 +UniRef50_R5SU23 0.637029776056 0.5 -0.137029776056 +UniRef50_UPI00045E9580 macrolide ABC transporter ATP binding protein 0.116137987998 0.5 0.383862012002 +UniRef50_B2ULR4 Bifunctional protein PyrR 0.0760251275244 0.5 0.423974872476 +UniRef50_A9KCM9 BolA 0.149218825205 0.5 0.350781174795 +UniRef50_C1CVP1 Ribosome recycling factor 0.00307931350933 0.5 0.49692068649 +UniRef50_G7MCQ9 ABC type transporter, integral membrane subunit 0.22015418769 0.5 0.27984581231 +UniRef50_B3DRY6 Bifunctional purine biosynthesis protein PurH 0.0747592054653 0.5 0.425240794535 +UniRef50_H1G027 0.321075828026 0.5 0.178924171974 +UniRef50_D3MIV3 Peptidase, M16 family 0.0169482502314 0.5 0.483051749769 +UniRef50_R4ZWW3 PTS system, galactitol specific IIC component 0.434797125117 0.5 0.0652028748831 +UniRef50_U8B0J7 0.753292217714 0.5 -0.253292217714 +UniRef50_UPI000374EC18 hypothetical protein 0.0425859116527 0.5 0.457414088347 +UniRef50_UPI00036B9450 hypothetical protein 4.43476334284 0.500000000003 -3.93476334284 +UniRef50_UPI000370E751 hypothetical protein 3.71682847467 0.499999999999 -3.21682847467 +UniRef50_C6SNZ9 3.43202003264 0.500000000002 -2.93202003264 +UniRef50_B8G2Q5 Cytidylate kinase 0.280880726106 0.5 0.219119273894 +UniRef50_UPI0003809B2B hypothetical protein 0.048644764804 0.500000000001 0.451355235195 +UniRef50_C7ZTG5 Glycosyl transferase 4.6964519592 0.5 -4.1964519592 +UniRef50_Q8YD09 Bifunctional imidazolonepropionase histidine ammonia lyase 0.0183904756685 0.5 0.481609524332 +UniRef50_H4U829 Hydrogenase accessory protein HypB 1.08154340471 0.5 -0.581543404715 +UniRef50_Q5FUG4 3 isopropylmalate dehydratase small subunit 4.0718936211 0.499999999998 -3.57189362109 +UniRef50_D6ZU16 Glycerate kinase 0.319837236527 0.5 0.180162763473 +UniRef50_UPI00026288A1 hypothetical protein 0.00277917926917 0.5 0.497220820731 +UniRef50_Q2S158 Aspartate tRNA ligase 0.000189100495245 0.5 0.499810899505 +UniRef50_A7X770 ATP phosphoribosyltransferase 0.765128968499 0.5 -0.265128968499 +UniRef50_UPI00036DFED1 MULTISPECIES 0.281385933483 0.5 0.218614066517 +UniRef50_P07822 Iron hydroxamate binding protein FhuD 1.31389981748 0.500000000001 -0.813899817482 +UniRef50_U6I825 Zinc finger protein 341 0.495287587679 0.5 0.00471241232064 +UniRef50_B2VIL6 Ubiquinone biosynthesis O methyltransferase 0.261995911916 0.5 0.238004088084 +UniRef50_Q6D3A9 Glutathione import ATP binding protein GsiA 1.48380289859 0.5 -0.983802898587 +UniRef50_F8H1K8 Chemotaxis transducer 1.3322214895 0.5 -0.832221489497 +UniRef50_Q0AXL3 Peptide deformylase 0.222604492025 0.5 0.277395507975 +UniRef50_J3N076 0.0532786162211 0.5 0.446721383779 +UniRef50_V4V1N3 0.611251984126 0.5 -0.111251984126 +UniRef50_UPI0002191AAA replication initiation protein 1.12291835758 0.500000000001 -0.622918357577 +UniRef50_X1NJX5 Marine sediment metagenome DNA, contig 0.0690416232025 0.5 0.430958376798 +UniRef50_B0U1N1 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.5728995032 0.5 -1.0728995032 +UniRef50_I4AP74 O acetylhomoserine sulfhydrylase 0.209033308131 0.5 0.290966691869 +UniRef50_R7PTJ2 Predicted ATPase involved in DNA repair 2.36419914472 0.499999999998 -1.86419914472 +UniRef50_Q81G06 Histidinol dehydrogenase 0.326575184597 0.5 0.173424815403 +UniRef50_S1GW72 Autoinducer 2 kinase LsrK 1.9802893478 0.5 -1.4802893478 +UniRef50_UPI00037675A5 hypothetical protein 0.768888685541 0.5 -0.268888685541 +UniRef50_P06999 ATP dependent 6 phosphofructokinase isozyme 2 3.68993993159 0.500000000002 -3.1899399316 +UniRef50_X1DD44 Marine sediment metagenome DNA, contig 2.08328404529 0.5 -1.58328404529 +UniRef50_K0ZUL0 Replication initiator protein A protein 0.632797337002 0.5 -0.132797337002 +UniRef50_S2WX32 Polyphosphate kinase 0.0100804609326 0.5 0.489919539067 +UniRef50_G0DRX2 0.215861929775 0.5 0.284138070225 +UniRef50_R6ESV1 0.415786393928 0.5 0.0842136060718 +UniRef50_UPI0004719DB7 ABC transporter 0.314145050968 0.5 0.185854949032 +UniRef50_UPI00036E309D hypothetical protein 0.0914167363465 0.5 0.408583263654 +UniRef50_UPI000362C308 hypothetical protein 3.29695026918 0.500000000001 -2.79695026919 +UniRef50_UPI00036A7F13 hypothetical protein 3.03578671516 0.500000000003 -2.53578671516 +UniRef50_A7X4P8 Holo [acyl carrier protein] synthase 3.47473241676 0.500000000001 -2.97473241676 +UniRef50_J7N1F5 Teichoic acid biosynthesis protein B family protein 2.50588256124 0.500000000002 -2.00588256125 +UniRef50_A0A034GY86 Azaleucine resistance protein AzlC 0.743618944163 0.5 -0.243618944163 +UniRef50_V6U6B5 0.436005278217 0.5 0.0639947217826 +UniRef50_B0SW92 1.16083988823 0.5 -0.660839888231 +UniRef50_J0CH97 0.629987780914 0.5 -0.129987780914 +UniRef50_B2VHU9 Adenine phosphoribosyltransferase 0.996105039311 0.5 -0.496105039311 +UniRef50_M7DRE6 Transposon protein 4.5351248439 0.5 -4.0351248439 +UniRef50_Q8G7Y6 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.0163253423306 0.5 0.483674657669 +UniRef50_D1B2W6 0.333391401133 0.5 0.166608598867 +UniRef50_UPI000471F8A5 hypothetical protein 0.913850786619 0.5 -0.413850786619 +UniRef50_W0L7A3 AAT family amino acid transporter 1.18291010108 0.5 -0.682910101084 +UniRef50_P23669 Threonine synthase 0.00378276981572 0.5 0.496217230184 +UniRef50_K4S1D1 2.6794414893 0.499999999997 -2.1794414893 +UniRef50_UPI00035D2EF1 hypothetical protein 0.489710439915 0.5 0.0102895600849 +UniRef50_P54517 3 dehydroquinate dehydratase 0.00336292712029 0.5 0.49663707288 +UniRef50_UPI0003C13F0C PREDICTED 1.69097984601 0.5 -1.19097984601 +UniRef50_UPI0004711337 hypothetical protein 0.0739633832151 0.5 0.426036616785 +UniRef50_Q6BF16 2 dehydro 3 deoxy 6 phosphogalactonate aldolase 0.672866856818 0.5 -0.172866856818 +UniRef50_V6MLI1 0.115766328512 0.500000000001 0.384233671487 +UniRef50_UPI0003AA777F hypothetical protein 0.185014261297 0.5 0.314985738703 +UniRef50_Q2RWR9 Light independent protochlorophyllide reductase subunit B 7.98121876046 0.500000000006 -7.48121876046 +UniRef50_D2ZR32 0.543447634095 0.5 -0.0434476340951 +UniRef50_E4UD93 0.789953197209 0.5 -0.289953197209 +UniRef50_P55995 Lon protease 0.0296640196029 0.5 0.470335980397 +UniRef50_Q09580 Probable GMP synthase [glutamine hydrolyzing] 0.363843998057 0.5 0.136156001943 +UniRef50_Q18FG3 CTP synthase 0.0154514608531 0.5 0.484548539147 +UniRef50_B1XZN1 Protease Do 1.11729552831 0.5 -0.617295528308 +UniRef50_UPI0004705E36 ABC transporter substrate binding protein 0.372780159074 0.5 0.127219840926 +UniRef50_UPI0003B69A56 signal recognition particle, partial 0.147835408338 0.5 0.352164591662 +UniRef50_A0L3M0 Biotin synthase 0.127832477581 0.5 0.372167522419 +UniRef50_UPI0003B4EA07 transposase ISSod13 0.117075117855 0.5 0.382924882145 +UniRef50_W8QW60 Lipoprotein 0.73862105568 0.5 -0.23862105568 +UniRef50_UPI0001FE2A0F phospho 2 dehydro 3 deoxyheptonate aldolase 2.75047287491 0.500000000002 -2.25047287491 +UniRef50_I0C5E5 6.81343319244 0.49999999999 -6.31343319243 +UniRef50_P07658 Formate dehydrogenase H 1.91866740122 0.500000000001 -1.41866740122 +UniRef50_J1E3J1 0.763749478246 0.5 -0.263749478246 +UniRef50_J7QJA6 SPFH domain band 7 family protein 0.337727637955 0.5 0.162272362045 +UniRef50_UPI0004776671 heat shock protein Hsp33 0.619337935271 0.5 -0.119337935271 +UniRef50_P32051 1.20942251044 0.5 -0.709422510439 +UniRef50_C3GUE0 Alcohol dehydrogenase GroES domain protein 0.0458834100665 0.5 0.454116589933 +UniRef50_UPI000472812C hypothetical protein 8.71428252226 0.500000000003 -8.21428252226 +UniRef50_R1ALN2 0.377476355062 0.5 0.122523644938 +UniRef50_UPI000478EC80 hypothetical protein 0.278198125663 0.5 0.221801874337 +UniRef50_UPI000479C4BA MFS transporter 0.169931300949 0.5 0.330068699052 +UniRef50_U3T7W9 0.0815018533094 0.5 0.418498146691 +UniRef50_A4IJB8 Ribosomal RNA small subunit methyltransferase A 1.19147054378 0.5 -0.691470543783 +UniRef50_X1R1D8 Marine sediment metagenome DNA, contig 0.411383098786 0.5 0.0886169012141 +UniRef50_UPI000372FCE9 hypothetical protein 0.0329913637453 0.5 0.467008636255 +UniRef50_UPI000428F92B chemotaxis protein CheR 1.12423357025 0.5 -0.624233570253 +UniRef50_K2F9K7 0.322729359138 0.5 0.177270640862 +UniRef50_M8DGK3 0.109080858207 0.500000000001 0.390919141792 +UniRef50_C6WMT0 1.01990853102 0.5 -0.519908531019 +UniRef50_B8ZR59 Ribonuclease PH 0.335250373247 0.5 0.164749626753 +UniRef50_UPI000474B21F porin 2.09177785504 0.500000000002 -1.59177785504 +UniRef50_H9KFK6 0.207179950654 0.5 0.292820049346 +UniRef50_P23160 34.2 kDa protein in rubredoxin operon 0.0811426937227 0.5 0.418857306277 +UniRef50_UPI00016C0EFE tagatose bisphosphate aldolase, partial 0.017604748805 0.5 0.482395251195 +UniRef50_K7S7L1 Drug resistance MFS transporter, drug 0.0313139293087 0.5 0.468686070692 +UniRef50_H1R8C9 0.525389376995 0.5 -0.0253893769945 +UniRef50_Q6A7W9 NAD kinase 0.00943182801184 0.5 0.490568171988 +UniRef50_UPI000334035B PREDICTED 1.30972963387 0.5 -0.809729633866 +UniRef50_UPI00036D6A4E hypothetical protein 6.78769181807 0.50000000001 -6.28769181808 +UniRef50_F0KFU5 0.000474322339751 0.5 0.49952567766 +UniRef50_P59210 Regulatory protein RecX 0.48659732712 0.5 0.0134026728798 +UniRef50_Q9RX92 Single stranded DNA binding protein DdrA 0.00869697809834 0.499999999999 0.491303021903 +UniRef50_UPI00046E5527 DNA polymerase IV 0.247229397795 0.5 0.252770602205 +UniRef50_UPI0004133718 phosphopantetheine adenylyltransferase 0.407412928572 0.5 0.0925870714285 +UniRef50_B3WF00 tRNA dimethylallyltransferase 0.365505434888 0.5 0.134494565112 +UniRef50_Q8CT65 1.04170268333 0.5 -0.541702683326 +UniRef50_A6M077 Transcriptional regulator, MarR family 0.0656803498139 0.5 0.434319650187 +UniRef50_Q5HL47 1.46486785169 0.5 -0.964867851689 +UniRef50_G2XMI1 Hypothetical_protein 0.223078434445 0.5 0.276921565555 +UniRef50_U3QV92 N acetyl anhydromuranmyl L alanine amidase 0.713562390828 0.5 -0.213562390828 +UniRef50_Q46D36 2 cys peroxiredoxin, subunit A 0.548017425528 0.5 -0.0480174255276 +UniRef50_Q49WA8 5.34444564294 0.500000000002 -4.84444564294 +UniRef50_P48924 NADH ubiquinone oxidoreductase chain 6 2.00786242598 0.500000000003 -1.50786242599 +UniRef50_P19765 Insertion element IS1 protein InsB 0.0787368603107 0.5 0.421263139689 +UniRef50_P37329 Molybdate binding periplasmic protein 3.63240590668 0.500000000002 -3.13240590669 +UniRef50_F3ZLD3 0.442215208858 0.5 0.0577847911418 +UniRef50_A5ULS6 Transcriptional activator 2.80486270421 0.499999999999 -2.30486270421 +UniRef50_UPI000255E297 cobinamide adenolsyltransferase 0.00849185808881 0.5 0.491508141911 +UniRef50_P11551 L fucose proton symporter 1.44308452358 0.5 -0.943084523577 +UniRef50_Q5XCB9 Putative NADH nitroreductase Spy0809 0.447083481834 0.5 0.0529165181662 +UniRef50_A4SZM1 Glutamine tRNA ligase 0.19364766885 0.5 0.30635233115 +UniRef50_W6K439 2.27293367506 0.5 -1.77293367506 +UniRef50_UPI000255A647 hypothetical protein 0.928965592701 0.5 -0.428965592701 +UniRef50_M4ZGM6 PTS system, 3 keto L gulonate specific IIB component 0.532792772794 0.5 -0.0327927727937 +UniRef50_K0LCS5 Sulfite reductase alpha subunit 2.76411934033 0.500000000001 -2.26411934033 +UniRef50_D9SQP8 YhhN family protein 0.432959131536 0.5 0.0670408684645 +UniRef50_UPI000255AA05 3 hydroxybutyrate dehydrogenase, partial 0.342966151981 0.5 0.157033848019 +UniRef50_E2QLB6 C4 dicarboxylate binding periplasmicprote in 2.14020678028 0.5 -1.64020678028 +UniRef50_Q2NGX7 0.46010307265 0.5 0.0398969273496 +UniRef50_D5RU63 0.0600935900649 0.5 0.439906409935 +UniRef50_D6M4D2 Nogalamycin resistance protein SnorO 0.0451375306502 0.5 0.45486246935 +UniRef50_A0A028PVV2 Lactate dehydrogenase 3.2499904469 0.499999999997 -2.74999044689 +UniRef50_A6W2Y6 PfkB domain protein 0.314087193017 0.5 0.185912806983 +UniRef50_UPI00037B582D hypothetical protein 0.642485958074 0.5 -0.142485958074 +UniRef50_X5HEL8 Alkyl hydroperoxide reductase 0.305291018202 0.5 0.194708981798 +UniRef50_Q03K00 ABC type multidrug transport system, permease component 15.3064306047 0.500000000005 -14.8064306047 +UniRef50_O34512 0.0637986337569 0.5 0.436201366243 +UniRef50_A6LQS2 Metal dependent phosphohydrolase 0.38122065096 0.5 0.11877934904 +UniRef50_UPI00036F122F hypothetical protein 3.4868700004 0.500000000002 -2.98687000041 +UniRef50_Q8GNZ1 Rep1 2.91596861149 0.499999999999 -2.41596861149 +UniRef50_L1K8E5 89.6054072912 0.500000000012 -89.1054072912 +UniRef50_Q3IVQ7 0.218918757198 0.5 0.281081242802 +UniRef50_A0A009CML4 Surface protein G 0.391306964994 0.5 0.108693035006 +UniRef50_UPI0004560170 hypothetical protein PFL1_00672 1.39289490093 0.5 -0.892894900933 +UniRef50_UPI0004736936 hypothetical protein, partial 0.126354124932 0.5 0.373645875068 +UniRef50_X5HTN1 Biofilm synthesis protein 0.0125442222658 0.5 0.487455777734 +UniRef50_Q1RGX4 Lipoyl synthase 4.40718452994 0.5 -3.90718452994 +UniRef50_I3YAK9 Proline iminopeptidase 0.320673108725 0.5 0.179326891275 +UniRef50_Q2YV92 2.44463254663 0.500000000005 -1.94463254663 +UniRef50_UPI00046D6590 hypothetical protein 3.46497197438 0.5 -2.96497197438 +UniRef50_UPI000362AF2C hypothetical protein 0.692887425997 0.5 -0.192887425997 +UniRef50_Q8DT23 S adenosylmethionine synthase 3.28877516868 0.500000000001 -2.78877516868 +UniRef50_UPI0003ADBFFE PREDICTED 0.363175979827 0.5 0.136824020173 +UniRef50_A4JKW7 Major facilitator superfamily MFS_1 0.683384617797 0.5 -0.183384617797 +UniRef50_W5VF97 ATPase 0.661403920339 0.5 -0.161403920339 +UniRef50_B9AGK2 7.08700714568 0.500000000002 -6.58700714568 +UniRef50_UPI0002488527 hypothetical protein 1.2167513758 0.5 -0.716751375803 +UniRef50_Q5LLN2 Dephospho CoA kinase 0.794562052033 0.5 -0.294562052033 +UniRef50_Q93Z70 Probable N acetyl gamma glutamyl phosphate reductase, chloroplastic 0.711229613639 0.5 -0.211229613639 +UniRef50_Q1CV54 0.125584966464 0.499999999999 0.374415033537 +UniRef50_S9U7T2 Solute carrier family 39 , member 1 2 3 0.0730838595099 0.5 0.42691614049 +UniRef50_UPI00039DF06E hypothetical protein 3.1797711254 0.499999999998 -2.6797711254 +UniRef50_UPI0002378355 cystathionine beta lyase 0.344331876001 0.5 0.155668123999 +UniRef50_I6TQY3 Alpha beta hydrolase 1.32625060367 0.5 -0.826250603665 +UniRef50_F6CZ33 AsmA family protein 0.438535194781 0.5 0.0614648052187 +UniRef50_UPI0003A40D95 dehydrogenase 0.0735929446826 0.5 0.426407055317 +UniRef50_A6LT40 Phage integrase family protein 0.0953327262806 0.5 0.404667273719 +UniRef50_A8F1C5 NADH quinone oxidoreductase subunit D 0.239773389917 0.5 0.260226610083 +UniRef50_A3QJ60 1.0514008734 0.5 -0.551400873405 +UniRef50_X2H5U3 0.0978301673643 0.5 0.402169832636 +UniRef50_UPI000328E03F PREDICTED 0.292752032896 0.5 0.207247967104 +UniRef50_A0A037ZQW3 Chromosome partitioning protein ParA 0.180175014994 0.5 0.319824985006 +UniRef50_A9B2Q5 Aminomethyltransferase 0.483772105297 0.5 0.0162278947033 +UniRef50_Q6GDH0 Carbamate kinase 2 1.78520843006 0.5 -1.28520843006 +UniRef50_A9CLS9 0.0104398896602 0.5 0.48956011034 +UniRef50_Q59266 4 alpha glucanotransferase 0.0697586989128 0.5 0.430241301088 +UniRef50_Q9CJS1 ATP dependent RNA helicase RhlB 1.5528097879 0.500000000001 -1.05280978791 +UniRef50_A6M113 CheA signal transduction histidine kinase 0.126306494359 0.5 0.373693505641 +UniRef50_UPI000310CC9F C4 dicarboxylate ABC transporter 0.222421596478 0.5 0.277578403522 +UniRef50_P77930 Bacterioferritin 0.00724630171311 0.499999999999 0.492753698288 +UniRef50_B9MJH4 Biotin synthase 0.13752470544 0.5 0.36247529456 +UniRef50_I0EIM7 Fucosyltransferase 0.014642952748 0.5 0.485357047252 +UniRef50_UPI0003B315F6 deoxyguanosinetriphosphate triphosphohydrolase 2.45319824098 0.5 -1.95319824098 +UniRef50_Q0AM89 0.00505880231302 0.5 0.494941197687 +UniRef50_Q9RWF7 UDP glucose 4 epimerase, putative 0.00337676444516 0.5 0.496623235554 +UniRef50_UPI00036BC390 hypothetical protein 4.21905722478 0.5 -3.71905722478 +UniRef50_B1KTG4 Glutamate racemase 0.685574025112 0.5 -0.185574025112 +UniRef50_UPI00047ECB6C hypothetical protein 0.0282325868723 0.5 0.471767413127 +UniRef50_UPI0002377A5A flagellar basal body P ring protein, partial 0.813659662847 0.5 -0.313659662847 +UniRef50_B3WF19 Phenylalanine tRNA ligase alpha subunit 0.861254626506 0.5 -0.361254626506 +UniRef50_UPI000360FD43 hypothetical protein 0.034286211999 0.5 0.465713788001 +UniRef50_B1J595 Hydrolase, alpha beta fold family 0.0795931475624 0.5 0.420406852438 +UniRef50_UPI00046E9EAA peptide ABC transporter permease 0.430071942192 0.5 0.0699280578078 +UniRef50_A5UJB4 Putative transposase 3.56681990101 0.500000000002 -3.06681990101 +UniRef50_Q57N58 0.0601856759558 0.5 0.439814324044 +UniRef50_UPI0002B4C28A PREDICTED 0.105948191747 0.5 0.394051808253 +UniRef50_UPI0003A5EC9D hypothetical protein 0.413860362509 0.5 0.0861396374914 +UniRef50_UPI000418F39C glycosyl transferase 0.562965025204 0.5 -0.0629650252036 +UniRef50_S3ANI4 1.33316997536 0.5 -0.833169975364 +UniRef50_B9KTI2 0.502222428834 0.5 -0.00222242883352 +UniRef50_UPI00045D9861 PREDICTED 0.0165546987133 0.5 0.483445301287 +UniRef50_UPI00022CAA7D PREDICTED 1.84027689758 0.500000000001 -1.34027689758 +UniRef50_UPI000288AA6A riboflavin synthase subunit alpha 0.591477843465 0.5 -0.0914778434647 +UniRef50_A6LTI2 Signal transduction histidine kinase regulating citrate malate metabolism 0.316062369202 0.5 0.183937630798 +UniRef50_C5N6M7 21.6044692817 0.500000000021 -21.1044692817 +UniRef50_W6VNR8 0.221934662254 0.5 0.278065337746 +UniRef50_Q6YTQ3 0.387239828669 0.5 0.112760171331 +UniRef50_UPI0003B3015D DNA directed RNA polymerase subunit alpha, partial 0.233679126983 0.5 0.266320873017 +UniRef50_D3QGV6 1.15732317102 0.5 -0.657323171022 +UniRef50_U3QX72 GntR family transcriptional regulator 0.192704371271 0.5 0.307295628729 +UniRef50_A5UKM5 6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB 2.76835884995 0.500000000001 -2.26835884995 +UniRef50_UPI00034DE84F ABC transporter permease 0.0865203573622 0.499999999999 0.413479642638 +UniRef50_UPI00046C9569 hypothetical protein 0.0860767744775 0.5 0.413923225523 +UniRef50_W9GJ85 Transcriptional regulator 0.151248657266 0.5 0.348751342734 +UniRef50_X8FK87 binding domain protein 2.44191137968 0.500000000003 -1.94191137968 +UniRef50_I6TYV1 Phage associated cell wall hydrolase 0.230946038404 0.5 0.269053961596 +UniRef50_UPI000471FDE5 membrane protein 0.187493780427 0.5 0.312506219573 +UniRef50_A8B5Y9 0.091877389049 0.5 0.408122610951 +UniRef50_J8PEK3 0.32479564611 0.5 0.17520435389 +UniRef50_Q72PJ7 2 oxoglutarate dehydrogenase E1 component 0.120393006528 0.5 0.379606993472 +UniRef50_A3JLI9 0.758500767606 0.5 -0.258500767606 +UniRef50_UPI00031F6CF4 hypothetical protein 0.493084577165 0.5 0.00691542283517 +UniRef50_D0K9Z2 Glycosyltransferase stabilizing protein Gtf2 4.47254753433 0.500000000007 -3.97254753434 +UniRef50_UPI00046D6398 hypothetical protein 0.00674701012023 0.5 0.49325298988 +UniRef50_K8CED6 0.350741707385 0.5 0.149258292615 +UniRef50_B9XI35 0.162801194621 0.5 0.337198805379 +UniRef50_P21824 Chemotaxis protein methyltransferase 2.10990066251 0.500000000002 -1.60990066251 +UniRef50_A7FAU8 0.00965745339173 0.5 0.490342546609 +UniRef50_N3H3N3 ThiC associated domain protein 0.172613884562 0.5 0.327386115438 +UniRef50_UPI0003B6CE6C gas vesicle protein GvpS 0.953623792071 0.5 -0.453623792071 +UniRef50_G7M8E0 Cell wall binding repeat containing protein 0.0232950832646 0.5 0.476704916736 +UniRef50_O83041 Probable proline iminopeptidase 0.349725094705 0.5 0.150274905295 +UniRef50_Q1WV02 UPF0374 protein LSL_0370 1.02159136059 0.5 -0.521591360587 +UniRef50_F6ZMA7 6.79030788864 0.499999999998 -6.29030788864 +UniRef50_P57245 Carbamoyl phosphate synthase small chain 1.06640223066 0.5 -0.566402230659 +UniRef50_A6LX23 0.210882489421 0.5 0.289117510579 +UniRef50_A1SUY3 1.22788250431 0.5 -0.727882504312 +UniRef50_U3SUB6 0.698564091316 0.5 -0.198564091316 +UniRef50_P42200 L cystine transport system permease protein TcyB 0.0390900204896 0.5 0.46090997951 +UniRef50_Q9RZU0 0.00251842060347 0.5 0.497481579397 +UniRef50_D6KCK7 Lanthionine synthetase C family protein 2.14463315137 0.5 -1.64463315137 +UniRef50_D3E1H3 Divalent cation transporter mgtE family 3.1541657683 0.499999999998 -2.6541657683 +UniRef50_B8EJS2 Anthranilate phosphoribosyltransferase 0.460802474863 0.5 0.0391975251367 +UniRef50_UPI0002EDD593 membrane protein 0.470225524741 0.5 0.0297744752587 +UniRef50_P43753 Formate acetyltransferase 0.996089587022 0.5 -0.496089587022 +UniRef50_UPI0003814F39 hypothetical protein 0.681582583275 0.5 -0.181582583275 +UniRef50_UPI00035C39A9 hypothetical protein 0.605804405746 0.5 -0.105804405746 +UniRef50_UPI000475BF33 hypothetical protein 0.00493337057221 0.5 0.495066629428 +UniRef50_R9ITT5 0.428374242589 0.5 0.0716257574111 +UniRef50_A0A024HN09 Penicillin binding protein 1B 0.966757389901 0.5 -0.466757389901 +UniRef50_U9T899 0.975647667899 0.5 -0.475647667899 +UniRef50_UPI000380512A hypothetical protein 0.0547312484171 0.5 0.445268751583 +UniRef50_Q836J8 ATP dependent helicase nuclease subunit A 0.00325661908568 0.5 0.496743380914 +UniRef50_Q5QCP2 Carboxynorspermidine carboxyspermidine decarboxylase 2.97043368219 0.5 -2.47043368219 +UniRef50_Q16DV7 1 deoxy D xylulose 5 phosphate synthase 1 0.0818992099352 0.5 0.418100790064 +UniRef50_UPI000473F09C cysteine protease 0.123388999885 0.5 0.376611000115 +UniRef50_D3P107 0.126778508361 0.5 0.373221491639 +UniRef50_G0AJ01 ABC sugar transporter, periplasmic ligand binding protein 5.56566242341 0.499999999989 -5.0656624234 +UniRef50_UPI00036BD086 hypothetical protein 0.252281334499 0.5 0.247718665501 +UniRef50_F0Y3C6 Expressed protein 1.05932422727 0.5 -0.559324227275 +UniRef50_D3P109 0.833811215161 0.5 -0.333811215161 +UniRef50_C1CJ99 Peptidase, M42 0.0474962851074 0.5 0.452503714893 +UniRef50_Q8TLL3 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.439780791795 0.5 0.0602192082054 +UniRef50_UPI00047E3B33 2 oxoglutarate dehydrogenase 0.0772138005973 0.5 0.422786199403 +UniRef50_P14491 Protein rlx 2.13792411643 0.500000000001 -1.63792411643 +UniRef50_E5ZTR3 0.21438183884 0.5 0.28561816116 +UniRef50_G8B0S1 0.0658573475981 0.5 0.434142652402 +UniRef50_UPI0003B334FD LuxR family transcriptional regulator 0.296839312029 0.5 0.203160687971 +UniRef50_K7UNI1 0.0328100502384 0.5 0.467189949761 +UniRef50_P57037 Capsule polysaccharide modification protein LipA 0.0313914768936 0.5 0.468608523107 +UniRef50_V4QFM6 0.677536965594 0.5 -0.177536965594 +UniRef50_G2SD77 Type F conjugative transfer system protein TraW 1.02234209503 0.5 -0.522342095032 +UniRef50_P52130 Antitoxin RnlB 4.57089999178 0.5 -4.07089999178 +UniRef50_E3Z582 Integral membrane protein 0.0088491704394 0.499999999999 0.491150829561 +UniRef50_E4HNQ2 0.0815852215038 0.5 0.418414778496 +UniRef50_F7XC63 1.64918467775 0.5 -1.14918467775 +UniRef50_A1TWP1 Anhydrase, family 3 protein 0.0971297554701 0.499999999999 0.40287024453 +UniRef50_I6D3Q6 Oxoglutarate dehydrogenase , E1 component 1.47663160519 0.5 -0.97663160519 +UniRef50_Q94BZ7-2 Isoform 2 of DNA gyrase subunit B, mitochondrial 0.144818115962 0.5 0.355181884037 +UniRef50_P37610 Alpha ketoglutarate dependent taurine dioxygenase 0.922480098784 0.5 -0.422480098784 +UniRef50_F0XVZ5 Expressed protein 0.14920745408 0.5 0.35079254592 +UniRef50_P0A9K5 PhoH like protein 0.950811905882 0.5 -0.450811905882 +UniRef50_U5MRD5 D galactose binding periplasmic protein MglB 0.0600028713389 0.5 0.439997128661 +UniRef50_UPI0004639C8D multidrug ABC transporter permease 0.378374093937 0.5 0.121625906063 +UniRef50_Q88WU9 Threonine tRNA ligase 0.00863781066978 0.5 0.49136218933 +UniRef50_Q9ZLX3 DNA gyrase subunit B 0.0177636735573 0.5 0.482236326443 +UniRef50_M4XCL5 0.0789248115315 0.5 0.421075188469 +UniRef50_P39265 D allose binding periplasmic protein 3.27260278064 0.499999999994 -2.77260278064 +UniRef50_A5UJ66 1.37902855799 0.5 -0.879028557985 +UniRef50_UPI0003104B05 hypothetical protein 0.134959747157 0.5 0.365040252843 +UniRef50_UPI0004737FFB isopropylmalate isomerase 0.389044404321 0.5 0.110955595679 +UniRef50_UPI0002887E27 anthranilate synthase, component I, partial 0.361807458252 0.5 0.138192541748 +UniRef50_A5WAN0 NLPA lipoprotein 0.737034265281 0.5 -0.237034265281 +UniRef50_B5FMP4 Leucine tRNA ligase 0.759515408722 0.5 -0.259515408722 +UniRef50_F2M7N9 ABC superfamily ATP binding cassette transporter, ABC protein 2.73121231644 0.5 -2.23121231644 +UniRef50_G2LWG0 1.30461952029 0.5 -0.804619520292 +UniRef50_O31775 2.50105050072 0.499999999999 -2.00105050072 +UniRef50_A2SNG4 0.569384179984 0.5 -0.0693841799837 +UniRef50_Q8XDS6 Leucine efflux protein 0.399620435879 0.5 0.100379564121 +UniRef50_Q3J1F1 Phage terminase like protein large subunit 3.40848485988 0.5 -2.90848485988 +UniRef50_W5XGS0 UDP N acetylmuramoylalanine D glutamate ligase 0.0754940198483 0.5 0.424505980151 +UniRef50_Q1LRP7 Formamidopyrimidine DNA glycosylase 0.0867359968329 0.5 0.413264003167 +UniRef50_F0PKX1 Membrane associated protein 0.0130395468182 0.5 0.486960453182 +UniRef50_UPI0004244D92 xanthine phosphoribosyltransferase 0.617025413973 0.5 -0.117025413973 +UniRef50_A5HZF5 Sensor histidine kinase 0.768363887986 0.5 -0.268363887986 +UniRef50_Q01FQ9 WGS project CAID00000000 data, contig chromosome 01 0.599784886164 0.5 -0.0997848861644 +UniRef50_G9W9E3 Diaminopimelate decarboxylase 1.35519683421 0.5 -0.85519683421 +UniRef50_Q8DT21 0.162386391277 0.499999999999 0.337613608724 +UniRef50_Q8DT20 1.22710988084 0.5 -0.727109880839 +UniRef50_A1WSR7 CreA family protein 41.8259803434 0.500000000035 -41.3259803434 +UniRef50_D8LC87 0.518687907708 0.5 -0.018687907708 +UniRef50_Q72IE1 Ribonuclease H 0.673593888457 0.5 -0.173593888457 +UniRef50_Q5KQI9 0.0770567213994 0.5 0.422943278601 +UniRef50_A6LSZ1 Lipase 0.118901055771 0.5 0.38109894423 +UniRef50_I6RV19 Adenylosuccinate lyase 0.256484671959 0.5 0.243515328041 +UniRef50_Q8VL04 Arginine repressor 0.0269939081064 0.5 0.473006091894 +UniRef50_UPI00036D83C9 hypothetical protein 0.322010087731 0.5 0.177989912269 +UniRef50_B2SA42 NAD NADP dependent betaine aldehyde dehydrogenase 3.06682630443 0.5 -2.56682630443 +UniRef50_UPI00047CA754 hypothetical protein 0.115350382216 0.5 0.384649617784 +UniRef50_UPI0002003A7E exodeoxyribonuclease III, partial 0.528192990106 0.5 -0.0281929901061 +UniRef50_UPI0001D560FB PREDICTED 0.926452172157 0.5 -0.426452172157 +UniRef50_D3QFS6 2.14100424595 0.5 -1.64100424595 +UniRef50_UPI00037E9BF3 hypothetical protein 0.503656761289 0.5 -0.00365676128889 +UniRef50_O26329 Cobalt precorrin 8X methylmutase 8.39964632613 0.499999999998 -7.89964632613 +UniRef50_P76213 Excinuclease cho 0.603016447331 0.5 -0.103016447331 +UniRef50_Q03174 Fructan beta fructosidase 1.57397769265 0.5 -1.07397769265 +UniRef50_R7PXR3 1.31545801547 0.5 -0.815458015475 +UniRef50_Q8YGU6 3 dehydroquinate dehydratase 0.262808363179 0.5 0.237191636821 +UniRef50_K4Q9M3 Ferrous iron transport protein B 2.26833091981 0.5 -1.76833091981 +UniRef50_D4HCC8 ABC transporter, permease protein 0.0182213213085 0.5 0.481778678691 +UniRef50_X1J4V9 Marine sediment metagenome DNA, contig 0.889486739805 0.5 -0.389486739805 +UniRef50_U5MVM4 Chaperone protein HtpG 0.197434173982 0.5 0.302565826018 +UniRef50_B1I4W9 Ribonuclease PH 0.0152101395123 0.5 0.484789860488 +UniRef50_UPI000304D965 hypothetical protein 0.0372220781433 0.5 0.462777921857 +UniRef50_J3ABJ4 Conjugative relaxase domain protein, TrwC TraI family 0.720300380908 0.5 -0.220300380908 +UniRef50_M5ABW2 0.13170468952 0.5 0.36829531048 +UniRef50_D0IXW2 Transposase, IS4 0.16290787144 0.5 0.33709212856 +UniRef50_K2BFW3 2.10791471157 0.5 -1.60791471157 +UniRef50_G2LBA7 0.685908192665 0.5 -0.185908192665 +UniRef50_A7GEL0 3 dehydroquinate dehydratase 0.29157864022 0.5 0.20842135978 +UniRef50_Q8CU45 1.32163749568 0.5 -0.821637495684 +UniRef50_Q8CU48 0.590285562908 0.5 -0.0902855629081 +UniRef50_UPI00035CC3C8 50S ribosomal protein L18 0.0307010305221 0.5 0.469298969478 +UniRef50_K2HP40 Protein translocase subunit SecA 2.80598141637 0.5 -2.30598141637 +UniRef50_X6L0R0 0.762623804972 0.5 -0.262623804972 +UniRef50_A4IKU2 Foldase protein PrsA 0.19362297215 0.5 0.30637702785 +UniRef50_R5KA87 MATE efflux family protein 3.07738967922 0.500000000002 -2.57738967922 +UniRef50_UPI0003B582E0 membrane protein 0.174624529541 0.5 0.325375470459 +UniRef50_C7ZUY2 Tagatose 6 phosphate kinase 1.73536620083 0.500000000001 -1.23536620084 +UniRef50_K2J2X7 Cation transport protein ChaC 0.56711803331 0.5 -0.0671180333101 +UniRef50_P9WNP4 1,4 Dihydroxy 2 naphthoyl CoA synthase 0.00168792322013 0.5 0.49831207678 +UniRef50_V0ULY3 1.22937796801 0.5 -0.729377968014 +UniRef50_A3PR66 NADH dehydrogenase (Quinone) 1.88860106109 0.5 -1.38860106109 +UniRef50_R1DJN2 0.195383701954 0.5 0.304616298046 +UniRef50_B9KJM8 0.690622042511 0.5 -0.190622042511 +UniRef50_A1KWK7 Possible lipoprotein 0.0206229412971 0.5 0.479377058703 +UniRef50_A6W6A1 Hydroxyethylthiazole kinase 0.362721854105 0.5 0.137278145895 +UniRef50_A6UXC5 Membrane protein, putative 0.48880789876 0.5 0.0111921012405 +UniRef50_V7HHQ1 1.09706111064 0.5 -0.597061110637 +UniRef50_Q3JSI8 Ribose import ATP binding protein RbsA 1 1.63392972836 0.499999999999 -1.13392972836 +UniRef50_UPI00035C22D6 hypothetical protein 13.2419163719 0.500000000018 -12.7419163719 +UniRef50_W0HY15 1.37196067575 0.5 -0.871960675747 +UniRef50_UPI000475A254 4 amino 4 deoxychorismate lyase 2.17327651324 0.5 -1.67327651324 +UniRef50_K0X9S8 Type VI secretion associated protein 12.4590476676 0.500000000002 -11.9590476676 +UniRef50_P40398 1.51026625996 0.5 -1.01026625996 +UniRef50_B6WBV7 Glyoxalase family protein 0.180749184128 0.5 0.319250815872 +UniRef50_UPI00047137A9 coproporphyrinogen III oxidase 1.09878349622 0.5 -0.598783496217 +UniRef50_G7M0V7 ASCH domain protein 0.298741400752 0.5 0.201258599248 +UniRef50_UPI00047D052E iron ABC transporter substrate binding protein 1.02602213111 0.5 -0.526022131112 +UniRef50_P9WPZ4 Probable N succinyldiaminopimelate aminotransferase DapC 0.0232919563678 0.500000000001 0.476708043632 +UniRef50_P0A067 Signal peptidase IB 1.28045888616 0.500000000001 -0.780458886157 +UniRef50_UPI000302F3DC hypothetical protein 1.31446880816 0.5 -0.814468808159 +UniRef50_UPI0004690173 type II and III secretion system protein, partial 0.588657076571 0.5 -0.0886570765714 +UniRef50_H2JSU9 0.0578486172061 0.5 0.442151382794 +UniRef50_UPI000383150A hypothetical protein 1.49933596062 0.5 -0.999335960617 +UniRef50_R5XYV5 Aspartate tRNA ligase 1.38268128749 0.5 -0.882681287493 +UniRef50_A5FY40 Nucleoside diphosphate kinase 0.471383480584 0.5 0.028616519416 +UniRef50_P26993 Exoenzyme S synthesis regulatory protein ExsA 0.204962202568 0.5 0.295037797432 +UniRef50_A3PHN8 Signal transduction histidine kinase 4.95011502651 0.5 -4.45011502651 +UniRef50_Q7PY41 Adenylyltransferase and sulfurtransferase MOCS3 0.595404220854 0.5 -0.0954042208542 +UniRef50_A4WTQ7 NnrU family protein 4.77444891385 0.500000000001 -4.27444891385 +UniRef50_D3E0A9 DNA polymerase 3.23664102464 0.500000000002 -2.73664102464 +UniRef50_Q05619 Butyrate kinase 0.183117182022 0.5 0.316882817978 +UniRef50_W5X3P1 Holliday junction ATP dependent DNA helicase RuvA 0.021848592204 0.499999999999 0.478151407797 +UniRef50_UPI0004038030 sugar ABC transporter ATP binding protein 0.713768559387 0.5 -0.213768559387 +UniRef50_Q8CPX4 Phosphoglycerate mutase 4.58221724777 0.5 -4.08221724777 +UniRef50_UPI0003B52C1D tRNA uridine 5 carboxymethylaminomethyl modification protein 0.696320627418 0.5 -0.196320627418 +UniRef50_K0CF00 Ferric mycobactin receptor, FemA 3.46459030836 0.5 -2.96459030836 +UniRef50_UPI0003654A4C hypothetical protein 1.45832860815 0.5 -0.958328608146 +UniRef50_Q5LYY8 Galactose 1 phosphate uridylyltransferase 0.293419618301 0.5 0.206580381699 +UniRef50_C6A075 DNA helicase, UvrD REP family 1.55683141673 0.499999999999 -1.05683141673 +UniRef50_Q81M98 Acetylornithine aminotransferase 0.00222726296939 0.5 0.497772737031 +UniRef50_Q8XQ83 Chemotaxis response regulator protein glutamate methylesterase 4.87868408452 0.499999999999 -4.37868408452 +UniRef50_B7GSK0 0.171930614113 0.5 0.328069385887 +UniRef50_UPI0004671C29 calcium ABC transporter ATPase 0.427542444774 0.5 0.072457555226 +UniRef50_A5A3S4 BcepGomrgp35 0.226518408761 0.5 0.273481591239 +UniRef50_Y8DMX3 1.92031240342 0.500000000001 -1.42031240343 +UniRef50_UPI0002895DAD glycerophosphoryl diester phosphodiesterase 0.793391097508 0.5 -0.293391097508 +UniRef50_A4W7D6 D galactonate dehydratase family member Ent638_0932 0.0765577573611 0.5 0.423442242638 +UniRef50_T1YBI3 Extracellular matrix binding protein 4.26158695181 0.5 -3.76158695181 +UniRef50_Q2NHG2 DNA polymerase II large subunit 1.83050688995 0.5 -1.33050688995 +UniRef50_UPI0004791B8E 2 oxoisovalerate dehydrogenase 0.0336791524786 0.5 0.466320847522 +UniRef50_UPI00047249EC 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase, partial 1.84988011632 0.499999999999 -1.34988011632 +UniRef50_UPI00047E8CB8 hypothetical protein 0.00847383773554 0.5 0.491526162264 +UniRef50_K7SIX4 PTS system, mannitol specific IIC component 0.00578657284404 0.5 0.494213427156 +UniRef50_UPI000369E93F hypothetical protein 0.360198192098 0.5 0.139801807902 +UniRef50_Q47537 Taurine binding periplasmic protein 1.29930270103 0.5 -0.79930270103 +UniRef50_A6LYI5 Metal dependent phosphohydrolase 0.228576951688 0.5 0.271423048312 +UniRef50_J0NDK0 Toxin antitoxin system, antitoxin component, HicB family 0.149161639161 0.5 0.350838360838 +UniRef50_UPI000381C2B6 hypothetical protein 0.32316526572 0.5 0.17683473428 +UniRef50_K0R8M8 0.172800059872 0.5 0.327199940128 +UniRef50_M4XJN9 Acyl CoA dehydrogenase 0.492664728128 0.5 0.00733527187176 +UniRef50_A6M3C8 Phage integrase family protein 0.0779243907398 0.5 0.42207560926 +UniRef50_UPI000468A0F6 zinc ABC transporter ATPase 0.706710252879 0.5 -0.206710252879 +UniRef50_M9VF55 0.0269598261194 0.5 0.473040173881 +UniRef50_UPI0003F904B8 hypothetical protein 0.161951075771 0.5 0.338048924229 +UniRef50_Q57CX9 Uridylate kinase 0.526025718604 0.5 -0.026025718604 +UniRef50_Q52742 3.12918879537 0.500000000003 -2.62918879538 +UniRef50_UPI0004411EC4 hypothetical protein AURDEDRAFT_182094 0.693758551264 0.5 -0.193758551264 +UniRef50_F3SY37 Transcriptional regulator, AraC family 1.18426503328 0.5 -0.684265033279 +UniRef50_Q6GGT1 Elastin binding protein EbpS 2.10998351452 0.5 -1.60998351452 +UniRef50_F0P4S1 Transcriptional regulator, GntR family 1.42429395245 0.499999999998 -0.924293952445 +UniRef50_D8HFV1 1.47816726647 0.500000000002 -0.978167266469 +UniRef50_UPI000471A03D hypothetical protein 0.436027835858 0.5 0.0639721641415 +UniRef50_B8A150 0.100765729787 0.5 0.399234270213 +UniRef50_UPI0004576376 PREDICTED 2.20435328195 0.5 -1.70435328195 +UniRef50_R4K5C7 Arabinose efflux permease family protein 0.128920816452 0.5 0.371079183548 +UniRef50_O41971 0.477828308551 0.5 0.0221716914485 +UniRef50_UPI000475E8C5 hypothetical protein 0.0458506041118 0.5 0.454149395888 +UniRef50_F0YD72 0.226626467029 0.5 0.273373532971 +UniRef50_W1JYG5 Transcriptional regulator 0.293055287771 0.5 0.206944712229 +UniRef50_Q5HRK4 Elongation factor Tu 1.89389569515 0.500000000002 -1.39389569516 +UniRef50_U6EDF1 Probable cyclic pyranopterin monophosphate synthase accessory protein 1.50862371458 0.5 -1.00862371458 +UniRef50_UPI00016C47EA nuclease PIN 0.107774687506 0.5 0.392225312494 +UniRef50_U5NMR3 3.54523223286 0.5 -3.04523223286 +UniRef50_I0C1G6 3.7415618583 0.499999999996 -3.24156185829 +UniRef50_B2THX3 3D G5 domain protein 0.158427445009 0.5 0.341572554991 +UniRef50_Q6MIP7 Phosphonates import ATP binding protein PhnC 1.45125437844 0.5 -0.951254378436 +UniRef50_UPI0003B485D5 AsnC family transcriptional regulator 1.50569428309 0.5 -1.00569428309 +UniRef50_K9W5R6 HI0933 family protein 0.192096667318 0.5 0.307903332682 +UniRef50_Q2FF06 Putative aldehyde dehydrogenase SAUSA300_2076 2.8516092585 0.5 -2.3516092585 +UniRef50_W5W167 Putative membrane protein 0.373562865199 0.5 0.126437134801 +UniRef50_I0IAE1 3.03476796971 0.5 -2.53476796971 +UniRef50_A6M1H4 Sodium 0.0285697691953 0.5 0.471430230805 +UniRef50_Q6ABT4 0.240461221717 0.5 0.259538778283 +UniRef50_H2JLK0 Putative zinc binding oxidoreductase 0.46168505001 0.5 0.0383149499899 +UniRef50_V9AUV8 0.774553995193 0.5 -0.274553995193 +UniRef50_F8XNS8 ppGpp synthetase I SpoT RelA (Fragment) 0.18536227067 0.5 0.31463772933 +UniRef50_Q9I3X3 1.35169041543 0.5 -0.851690415433 +UniRef50_G7U7F2 Pyridine nucleotide disulfide oxidoreductase 0.0161033031167 0.5 0.483896696883 +UniRef50_UPI000472306F adenylate kinase 0.0678388024286 0.5 0.432161197571 +UniRef50_UPI000477F500 alanine glycine permease, partial 0.00550154563783 0.5 0.494498454362 +UniRef50_A5E8I8 Non canonical purine NTP pyrophosphatase 3.20394699662 0.500000000002 -2.70394699662 +UniRef50_Q9I6V7 Chemotaxis protein methyltransferase 2 0.660255093068 0.5 -0.160255093068 +UniRef50_Q04789 Acetolactate synthase 0.952895866213 0.5 -0.452895866213 +UniRef50_Q1LCM1 2.21539981236 0.500000000002 -1.71539981236 +UniRef50_UPI00035F8C60 hypothetical protein 0.0489774876137 0.5 0.451022512386 +UniRef50_B9KSL8 Efflux transporter, RND family, MFP subunit 1.48598276544 0.499999999999 -0.985982765438 +UniRef50_W9B9V7 Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome 1.31857104973 0.499999999999 -0.818571049734 +UniRef50_UPI0004234081 excinuclease ABC subunit A 0.203887104972 0.5 0.296112895028 +UniRef50_UPI00035EC56E hypothetical protein 0.514185380098 0.5 -0.0141853800981 +UniRef50_A6V0D0 0.00281814787651 0.5 0.497181852123 +UniRef50_Y6JBS8 1.69072669572 0.5 -1.19072669572 +UniRef50_M8I708 Signal transduction histidine kinase 0.0228429306975 0.5 0.477157069302 +UniRef50_R5WAI2 Exodeoxyribonuclease V gamma subunit 1.86630127831 0.5 -1.36630127831 +UniRef50_C5Y406 0.685889203184 0.5 -0.185889203184 +UniRef50_C7ZW47 Membrane protein 1.71675198188 0.499999999998 -1.21675198188 +UniRef50_Q4L4Y7 Coenzyme A disulfide reductase 1.95789066691 0.5 -1.45789066691 +UniRef50_B1MYD1 3 phosphoshikimate 1 carboxyvinyltransferase 0.294488335859 0.5 0.205511664141 +UniRef50_Q9RTK2 Diaminopimelate decarboxylase 0.000478244967572 0.5 0.499521755032 +UniRef50_B9L5V9 3 dehydroquinate dehydratase 0.106973964404 0.5 0.393026035596 +UniRef50_P40740 Aryl phospho beta D glucosidase BglH 0.0514544581569 0.5 0.448545541843 +UniRef50_P0A543 Aspartate semialdehyde dehydrogenase 0.00253848344684 0.5 0.497461516553 +UniRef50_Q6AB89 Isoleucine tRNA ligase 0.00763928874887 0.5 0.492360711251 +UniRef50_X1H4N6 Marine sediment metagenome DNA, contig 0.135025555331 0.5 0.364974444669 +UniRef50_Q28K40 Amino acid amide ABC transporter membrane protein 2, HAAT family 1.61667679348 0.5 -1.11667679348 +UniRef50_P37466 Protein Veg 1.43381839152 0.499999999999 -0.933818391519 +UniRef50_A6LXW3 ApbE family lipoprotein 0.0240899269692 0.5 0.475910073031 +UniRef50_Q6GGI4 UPF0403 protein SAR1592 0.884124587725 0.5 -0.384124587725 +UniRef50_Q6FB03 0.0323394337768 0.5 0.467660566223 +UniRef50_E0SM47 D alanine aminotransferase 3.2013792663 0.500000000003 -2.7013792663 +UniRef50_V8R541 Restriction endonuclease 0.436322727979 0.5 0.0636772720212 +UniRef50_Q6FB06 0.0419716838454 0.5 0.458028316155 +UniRef50_P75712 Putative allantoin permease 10.6277942705 0.500000000005 -10.1277942705 +UniRef50_UPI000478D97F sugar ABC transporter substrate binding protein 0.0879028420007 0.5 0.412097157999 +UniRef50_R8ZKN1 0.346877316508 0.5 0.153122683492 +UniRef50_Q9RZ80 0.00172202614278 0.5 0.498277973857 +UniRef50_UPI00046D31AE hypothetical protein 4.31095228864 0.499999999999 -3.81095228864 +UniRef50_UPI0003B5BDB9 hypothetical protein 0.217522911811 0.5 0.282477088189 +UniRef50_C3AH20 Dehydrogenase 2.04413778884 0.5 -1.54413778884 +UniRef50_UPI000465EB7D hypothetical protein 1.30434603054 0.5 -0.804346030543 +UniRef50_Q3SPM7 Peptidyl tRNA hydrolase 1.03763513726 0.5 -0.537635137257 +UniRef50_UPI0001FE2E53 molybdenum cofactor synthesis 1 isoform 1 0.154769563438 0.5 0.345230436562 +UniRef50_L9NDB6 Nonribosomal peptide synthase 0.0264735045573 0.5 0.473526495443 +UniRef50_UPI00036FD9CA hypothetical protein 0.839758125899 0.5 -0.339758125899 +UniRef50_UPI0004110BE6 FAD binding molybdopterin dehydrogenase 0.150322070913 0.5 0.349677929087 +UniRef50_P05707 Sorbitol 6 phosphate 2 dehydrogenase 6.25853135256 0.499999999999 -5.75853135256 +UniRef50_UPI00041879E9 LamB YcsF family protein 1.45509217716 0.5 -0.955092177159 +UniRef50_F0L271 1.58383577358 0.5 -1.08383577358 +UniRef50_UPI0003791D67 1 phosphofructokinase, partial 0.0673197486402 0.5 0.43268025136 +UniRef50_Q8FAI6 L ribulose 5 phosphate 4 epimerase UlaF 0.892466483695 0.5 -0.392466483695 +UniRef50_Q132P2 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 1.56704010019 0.5 -1.06704010019 +UniRef50_B9E6Y4 Shikimate dehydrogenase 0.573876744511 0.5 -0.0738767445106 +UniRef50_C5N6P2 0.797560401453 0.5 -0.297560401453 +UniRef50_B6FWG5 0.106871718198 0.5 0.393128281803 +UniRef50_UPI000365F4CD hypothetical protein 0.811444177862 0.5 -0.311444177862 +UniRef50_Q98LU4 Glutathione dependent formaldehyde activating enzyme 1.92703122933 0.5 -1.42703122933 +UniRef50_A6LUC8 40 residue YVTN family beta propeller repeat protein 0.156040503858 0.5 0.343959496142 +UniRef50_B5GFD4 Nogalamycin resistance protein SnorO 0.777206448644 0.5 -0.277206448644 +UniRef50_Q8CP35 N acetyl gamma glutamyl phosphate reductase 2.05093099088 0.5 -1.55093099088 +UniRef50_P37146 Ribonucleoside diphosphate reductase 2 subunit beta 0.350835839447 0.5 0.149164160553 +UniRef50_UPI000418FD7E delta aminolevulinic acid dehydratase 0.265218527251 0.5 0.234781472749 +UniRef50_M7ADI3 0.380847322865 0.5 0.119152677135 +UniRef50_S5YCH9 Hydrolase, HAD superfamily 1.68035823357 0.5 -1.18035823357 +UniRef50_K0R081 0.0502639508345 0.5 0.449736049165 +UniRef50_J0F9K3 0.753642320736 0.5 -0.253642320736 +UniRef50_A7WYM2 Thymidylate kinase 1.10334521607 0.5 -0.603345216073 +UniRef50_A6LZ87 Aminoglycoside phosphotransferase 0.252132912973 0.5 0.247867087027 +UniRef50_G2JIT2 ABC type spermidine putrescine transport system, ATPase component 0.0115975521941 0.5 0.488402447806 +UniRef50_UPI000429A03C hypothetical protein 0.26805099955 0.5 0.23194900045 +UniRef50_A8GID3 Lipid A disaccharide synthase 0.587244678177 0.5 -0.087244678177 +UniRef50_Q55621 Amidophosphoribosyltransferase 0.0368766598069 0.5 0.463123340193 +UniRef50_J9P1J0 0.566773830462 0.5 -0.0667738304623 +UniRef50_C5BT54 Cysteine synthase 0.873549025733 0.5 -0.373549025733 +UniRef50_A0A023RU88 RND transporter 0.0212937507494 0.5 0.47870624925 +UniRef50_UPI00046C9C35 microcin ABC transporter permease 1.51461140575 0.5 -1.01461140575 +UniRef50_E0SGK4 ABC transporter, permease component 3.78834408452 0.500000000002 -3.28834408452 +UniRef50_R9SHD6 Glycine betaine L proline ABC transporter permease substrate binding protein 9.98112144277 0.499999999998 -9.48112144277 +UniRef50_Q487D7 Na translocating NADH quinone reductase subunit E 0.658384585778 0.5 -0.158384585778 +UniRef50_UPI00047D9DB1 iron transporter FeoB 1.75996040063 0.5 -1.25996040063 +UniRef50_A6M1E2 0.0545588303849 0.5 0.445441169615 +UniRef50_B1ZUJ0 NADH quinone oxidoreductase subunit B 2 0.0699009373249 0.5 0.430099062676 +UniRef50_P0A908 MltA interacting protein 3.03864866416 0.5 -2.53864866416 +UniRef50_Q8T154 Uridine cytidine kinase B 0.0451400387623 0.5 0.454859961238 +UniRef50_Q1QEF7 Putative 3 methyladenine DNA glycosylase 0.0461234338873 0.5 0.453876566113 +UniRef50_B1ZDM1 1.82231894296 0.5 -1.32231894296 +UniRef50_UPI0003B3485A AP endonuclease 0.606602388133 0.5 -0.106602388133 +UniRef50_Q8G7G5 Cysteine tRNA ligase 0.198238777999 0.5 0.301761222001 +UniRef50_N3MBX3 1.32065798196 0.5 -0.820657981958 +UniRef50_B6EJ69 Putative type VI secretion protein VasE 0.339621533341 0.5 0.160378466659 +UniRef50_A7FB19 0.0231202709964 0.5 0.476879729004 +UniRef50_W6W5E1 Methionine synthase 1.04290970787 0.5 -0.542909707872 +UniRef50_M4R2Z9 0.0253073891674 0.5 0.474692610833 +UniRef50_Q7N4Q1 Complete genome; segment 8 17 0.0144457494793 0.5 0.485554250521 +UniRef50_V4JEN2 2.19671665626 0.5 -1.69671665626 +UniRef50_R5FLK7 Sporulation initiation inhibitor protein Soj 0.0546239766532 0.5 0.445376023347 +UniRef50_E4B644 0.0567258400749 0.5 0.443274159925 +UniRef50_UPI0003A4C566 methyltransferase 0.0240695744743 0.5 0.475930425526 +UniRef50_Q9RZ06 Histidine ammonia lyase 0.00465096098433 0.499999999999 0.495349039016 +UniRef50_Q8CNZ3 Type IV prepilin peptidase 1.12735454335 0.5 -0.62735454335 +UniRef50_A7ZJM7 DNA protection during starvation protein 0.0670883304249 0.5 0.432911669575 +UniRef50_R4ZTN2 Glycerophosphoryl diester phosphodiesterase 0.0682239807722 0.5 0.431776019228 +UniRef50_E6CZE7 4 phosphoerythronate dehydrogenase 0.202591772086 0.5 0.297408227914 +UniRef50_W7U7T7 0.445756294507 0.5 0.0542437054934 +UniRef50_M3YRF2 1.00527745305 0.5 -0.505277453049 +UniRef50_P37678 3 keto L gulonate 6 phosphate decarboxylase SgbH 1.10356778316 0.5 -0.603567783165 +UniRef50_P63333 Putative zinc metalloprotease SA1105 1.4532242504 0.5 -0.953224250398 +UniRef50_B0V5R2 Ribonuclease P protein component 0.278727601813 0.5 0.221272398187 +UniRef50_D3HGD1 5.52104532418 0.500000000001 -5.02104532418 +UniRef50_P0ADA2 Acyl CoA thioesterase I 0.894090939442 0.5 -0.394090939442 +UniRef50_E3ENU9 Chromosome partitioning protein 0.000479206822805 0.5 0.499520793177 +UniRef50_Q3J6K3 TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor 2.0774978077 0.5 -1.5774978077 +UniRef50_UPI000473CDCF hypothetical protein 0.0963021959231 0.5 0.403697804077 +UniRef50_F4M5Y2 0.354990485042 0.5 0.145009514958 +UniRef50_K0T360 0.308666069126 0.5 0.191333930874 +UniRef50_Q0J8P0 Os08g0101500 protein 0.657445542857 0.5 -0.157445542857 +UniRef50_UPI00034D7F07 hypothetical protein 0.219048888183 0.5 0.280951111817 +UniRef50_UPI00036FC1AC hypothetical protein 0.056887050671 0.5 0.443112949329 +UniRef50_U6MJL8 1.44030144306 0.5 -0.940301443064 +UniRef50_A5HXZ1 Anaerobic ribonucleoside triphosphate reductase 0.0922064759776 0.5 0.407793524023 +UniRef50_UPI000346628F hypothetical protein 0.293617730819 0.5 0.206382269181 +UniRef50_B0TZ13 Ribosomal RNA small subunit methyltransferase H 0.69007324692 0.5 -0.19007324692 +UniRef50_P46068 HTH type transcriptional regulator DsdC 6.35729799973 0.499999999994 -5.85729799972 +UniRef50_UPI00036C038C hypothetical protein 0.261369190127 0.5 0.238630809873 +UniRef50_UPI00046E972F hypothetical protein 0.0038605413344 0.5 0.496139458665 +UniRef50_UPI0003728245 hypothetical protein 2.0539765278 0.499999999999 -1.5539765278 +UniRef50_T0IDY3 0.282011854218 0.5 0.217988145782 +UniRef50_Q9CFZ5 Metal ABC transporter substrate binding lipoprotein 0.244544634755 0.5 0.255455365245 +UniRef50_UPI0004651F41 hypothetical protein 0.0974689690902 0.5 0.40253103091 +UniRef50_UPI00035D4E82 hypothetical protein 0.0100053139662 0.5 0.489994686033 +UniRef50_V1HUM9 Methyl accepting chemotaxis protein 0.311139731095 0.5 0.188860268905 +UniRef50_A0LBD9 Transposase, IS4 family 1.88642239627 0.5 -1.38642239627 +UniRef50_G9A7N2 0.257424381733 0.5 0.242575618267 +UniRef50_G3XD65 2.65445688949 0.500000000001 -2.15445688949 +UniRef50_D5AU05 0.418000078064 0.5 0.081999921936 +UniRef50_O54068 UDP glucose 6 dehydrogenase 0.597316546247 0.5 -0.0973165462469 +UniRef50_D5AU02 3.28721345809 0.499999999998 -2.78721345809 +UniRef50_I0C5N7 Nitrogen regulation protein NIFR3 0.223051104477 0.5 0.276948895523 +UniRef50_C1CCZ1 UvrABC system protein C 0.78009410252 0.5 -0.28009410252 +UniRef50_UPI0003735CBD hypothetical protein 0.0238121502906 0.5 0.476187849709 +UniRef50_O27082 Cation transporting P ATPase PacL 1.35246981568 0.499999999999 -0.852469815675 +UniRef50_Q07ML1 3.55758955381 0.499999999996 -3.05758955381 +UniRef50_R5JK63 Hypoxanthine phosphoribosyltransferase 0.050803010065 0.5 0.449196989935 +UniRef50_B9KSE1 MIP family channel proteins 5.83528870556 0.499999999999 -5.33528870555 +UniRef50_I2DGR3 Phage colicin tellurite resistance cluster TerY protein 1.0357066512 0.5 -0.535706651198 +UniRef50_D0CPI3 Peptidase U35, phage prohead HK97 0.376890705994 0.5 0.123109294006 +UniRef50_Q9EVM1 Replication protein 0.893955364461 0.5 -0.393955364461 +UniRef50_UPI00021A5775 PREDICTED 0.958664627148 0.5 -0.458664627148 +UniRef50_B0TBU3 Glutamate tRNA ligase 0.360905537415 0.5 0.139094462585 +UniRef50_A3PIY0 Carboxymuconolactone decarboxylase 1.19157829271 0.5 -0.691578292706 +UniRef50_A6QIG4 0.518804093049 0.5 -0.0188040930493 +UniRef50_P31062 DNA packaging protein NU1 homolog 3.44786891859 0.5 -2.94786891859 +UniRef50_B4EV71 Glutamine tRNA ligase 1.52094332423 0.500000000001 -1.02094332424 +UniRef50_Q67NS3 Homoserine O acetyltransferase 0.215336108706 0.5 0.284663891294 +UniRef50_Q5HIW9 2.69437720515 0.499999999997 -2.19437720515 +UniRef50_Q04809 Dipicolinate synthase subunit A 0.0352035349236 0.5 0.464796465076 +UniRef50_G2JDG3 RNA splicing ligase RtcB 0.0041582810189 0.5 0.495841718981 +UniRef50_A6LYE0 0.244244926918 0.5 0.255755073082 +UniRef50_Q98CW9 Mll4969 protein 5.34428974332 0.5 -4.84428974332 +UniRef50_Q836D3 S ribosylhomocysteine lyase 0.00202473165396 0.5 0.497975268346 +UniRef50_Q58033 N5 carboxyaminoimidazole ribonucleotide mutase 0.318899512781 0.5 0.181100487219 +UniRef50_M9VMX1 0.0102178659691 0.5 0.489782134031 +UniRef50_P9WK18 Methionine aminopeptidase 2 0.0111028882323 0.5 0.488897111768 +UniRef50_A3PGE5 2.93279899943 0.499999999999 -2.43279899943 +UniRef50_A1BAM2 ABC polyamine transporter, periplasmic substrate binding protein 3.34319193316 0.5 -2.84319193316 +UniRef50_M1MCE4 Diguanylate cyclase 0.0667511882278 0.5 0.433248811772 +UniRef50_P92549 ATP synthase subunit alpha, mitochondrial 0.353311352797 0.5 0.146688647203 +UniRef50_O33013 Signal recognition particle protein 0.0101811614006 0.5 0.489818838599 +UniRef50_Q7KS14 CG6695, isoform B 1.15129077777 0.5 -0.651290777766 +UniRef50_P0ABF0 Carbonic anhydrase 1 0.881980141731 0.5 -0.381980141731 +UniRef50_Q4FUD2 30S ribosomal protein S4 1.0042459191 0.5 -0.504245919102 +UniRef50_Q8CC86 Nicotinate phosphoribosyltransferase 0.231318790852 0.5 0.268681209148 +UniRef50_Q3IVT5 Agmatinase 1.26487847059 0.5 -0.764878470585 +UniRef50_UPI0003B4603D multidrug ABC transporter ATP binding protein 0.115935577944 0.5 0.384064422057 +UniRef50_C1DQ18 TonB dependent siderophore receptor 0.458262089568 0.5 0.0417379104319 +UniRef50_G7SF07 Small conductance mechanosensitive channel 1.19048044533 0.5 -0.690480445333 +UniRef50_P60845 Aquaporin Z 0.867178320356 0.5 -0.367178320356 +UniRef50_UPI000329DC11 0.0704760679669 0.499999999999 0.429523932034 +UniRef50_UPI0003733B95 hypothetical protein 0.196828112024 0.5 0.303171887976 +UniRef50_K0UFN2 0.07770331847 0.5 0.42229668153 +UniRef50_UPI0002492BA5 hypothetical protein 0.775353649658 0.5 -0.275353649658 +UniRef50_B0JTA0 Proline rich extensin like family protein 12.7948495251 0.500000000004 -12.2948495251 +UniRef50_UPI000476476F thioredoxin 0.68123907387 0.5 -0.18123907387 +UniRef50_Q9RXQ6 0.00138083295131 0.5 0.498619167049 +UniRef50_O85128 Chemotaxis response regulator protein glutamate methylesterase of group 1 operon 3.78911071447 0.499999999999 -3.28911071447 +UniRef50_Q53174 Motility protein A 3.91858628245 0.499999999993 -3.41858628244 +UniRef50_UPI00047893F1 chemotaxis protein 1.93011995599 0.5 -1.43011995599 +UniRef50_F9EDC6 SagD family bacteriocin biosynthesis protein 0.108781560681 0.5 0.39121843932 +UniRef50_I1F0D0 0.175273038826 0.5 0.324726961174 +UniRef50_Q99VJ2 Extracellular matrix protein binding protein emp 4.10479246909 0.5 -3.60479246909 +UniRef50_UPI00037AEF72 hypothetical protein 0.0777460439811 0.5 0.422253956019 +UniRef50_A0A011RWZ7 0.316097092641 0.5 0.183902907359 +UniRef50_Q8TTR1 Outer membrane protein expression inhibitor 0.114861425334 0.5 0.385138574666 +UniRef50_P0AE86 Periplasmic protein CpxP 1.98706286883 0.5 -1.48706286883 +UniRef50_M9RTA8 Phosphoesterase 0.0530056208251 0.5 0.446994379175 +UniRef50_A6LZM9 0.0359412318704 0.5 0.46405876813 +UniRef50_P24240 6 phospho beta glucosidase AscB 0.353581798529 0.5 0.146418201471 +UniRef50_P43984 5.67802897001 0.500000000009 -5.17802897002 +UniRef50_Q44653 30S ribosomal protein S1 0.01072300021 0.5 0.48927699979 +UniRef50_P68801 Staphylokinase 2.58513115116 0.5 -2.08513115116 +UniRef50_M5ANL0 Beta lactamase co inducer 2.11346137166 0.5 -1.61346137166 +UniRef50_UPI00035E68E1 hypothetical protein 0.753281513229 0.5 -0.253281513229 +UniRef50_A5UJ57 Putative manganese efflux pump MntP 1.21342849672 0.5 -0.71342849672 +UniRef50_H5SY94 ABC transporter ATP binding protein 1.51868218062 0.5 -1.01868218062 +UniRef50_A4WVG7 0.554713207347 0.5 -0.0547132073473 +UniRef50_P71298 Putative prophage CP4 6 integrase 1.39277212984 0.500000000001 -0.892772129839 +UniRef50_F3SV15 0.568703332027 0.5 -0.0687033320274 +UniRef50_A4WVG4 8.66697564258 0.500000000002 -8.16697564258 +UniRef50_Q6F7B6 0.018584241331 0.5 0.481415758669 +UniRef50_R5K1D1 0.0960794289449 0.5 0.403920571055 +UniRef50_V5VEN2 Excinuclease ABC, A subunit 0.739304731229 0.5 -0.239304731229 +UniRef50_Q5HN96 Foldase protein PrsA 2.00885641146 0.500000000002 -1.50885641147 +UniRef50_I2DNZ8 Peptidase M14, carboxypeptidase A 0.349160838083 0.5 0.150839161917 +UniRef50_UPI000478D2A2 cytochrome bd I ubiquinol oxidase subunit 2 apoprotein 0.168471065291 0.5 0.331528934709 +UniRef50_Q1GIE6 Binding protein dependent transport systems inner membrane component 2.78567556587 0.5 -2.28567556587 +UniRef50_K1ZWG6 0.216001231089 0.5 0.283998768911 +UniRef50_UPI00034D08B0 hypothetical protein 0.00277568490354 0.5 0.497224315097 +UniRef50_P72151 B type flagellin 0.587182757655 0.5 -0.087182757655 +UniRef50_UPI00041834C2 hypothetical protein 2.01028076968 0.5 -1.51028076968 +UniRef50_P46702 N5 carboxyaminoimidazole ribonucleotide mutase 0.422028255766 0.5 0.0779717442341 +UniRef50_Q1IZI7 Elongation factor Ts 0.00234524882638 0.5 0.497654751173 +UniRef50_UPI00016C08D0 phosphoenolpyruvate synthase 0.0116739134093 0.5 0.488326086591 +UniRef50_F7ZIC0 1.6797477091 0.5 -1.1797477091 +UniRef50_Q3IZN1 NAD kinase 4.0907826501 0.499999999999 -3.59078265009 +UniRef50_A6LTP4 0.95044483304 0.5 -0.45044483304 +UniRef50_P77737 Oligopeptide transport ATP binding protein OppF 1.84887249313 0.499999999999 -1.34887249312 +UniRef50_Q9SMC2 Acetolactate synthase small subunit 1, chloroplastic 0.0219407737834 0.5 0.478059226216 +UniRef50_A9T869 Predicted protein 1.03599277114 0.5 -0.535992771138 +UniRef50_Q7VFF5 Histidinol dehydrogenase 0.341819384092 0.5 0.158180615908 +UniRef50_Q4L7L1 Diacylglycerol kinase 2.37592696799 0.499999999999 -1.87592696799 +UniRef50_P0CL46 Formate hydrogenlyase transcriptional activator 3.60801846407 0.500000000004 -3.10801846407 +UniRef50_Q9RT45 Exonuclease SbcD, putative 0.00630004789255 0.5 0.493699952107 +UniRef50_R7MPC8 ComG operon protein 4 48.5041890517 0.500000000029 -48.0041890518 +UniRef50_Q030J8 3 oxoacyl [acyl carrier protein] synthase 3 0.0342781793285 0.5 0.465721820671 +UniRef50_V5T2N8 Transcriptional regulator 3.70393395785 0.499999999997 -3.20393395785 +UniRef50_F0YAA2 0.416858405618 0.5 0.0831415943821 +UniRef50_P75910 0.296990512025 0.5 0.203009487975 +UniRef50_Q50566 DNA ligase 4.74657382768 0.499999999999 -4.24657382768 +UniRef50_F3U2V1 Gas vesicle synthesis GvpLGvpF 2.19351005417 0.499999999999 -1.69351005417 +UniRef50_A5UJ79 Adhesin like protein 2.04631332303 0.500000000001 -1.54631332303 +UniRef50_Q9RZV9 Chromosome partitioning ATPase, putative, ParA family 0.00347786913046 0.5 0.49652213087 +UniRef50_D6DM05 Predicted oxidoreductases of the aldo keto reductase family 1.6646685244 0.5 -1.1646685244 +UniRef50_S5D7U1 Nucleotidyltransferase DNA polymerase involved in DNA repair 0.0940952972562 0.5 0.405904702744 +UniRef50_Q7UTH1 Uridylate kinase 0.410398016496 0.5 0.0896019835037 +UniRef50_J8YHU3 Aida related Type V secretory pathway adhesin 0.0178793103768 0.5 0.482120689624 +UniRef50_Q1QAW5 Lysine tRNA ligase 0.162874948888 0.5 0.337125051112 +UniRef50_Q94C74 Serine hydroxymethyltransferase 2, mitochondrial 1.10140316266 0.5 -0.601403162658 +UniRef50_E2QQ87 Phage baseplate assembly protein 1.752386923 0.5 -1.252386923 +UniRef50_UPI000366BB43 hypothetical protein 0.0343308070352 0.5 0.465669192965 +UniRef50_X1YA55 0.167972781124 0.5 0.332027218877 +UniRef50_UPI00047BFE08 hypothetical protein 0.304176477242 0.5 0.195823522758 +UniRef50_N8D5Y6 6.8630716872 0.500000000007 -6.3630716872 +UniRef50_A9EDB3 Putative transposase 1.18414305581 0.5 -0.684143055811 +UniRef50_UPI0004640326 hypothetical protein 0.55565403054 0.5 -0.0556540305403 +UniRef50_UPI0003A56F69 hypothetical protein 0.824060768925 0.5 -0.324060768925 +UniRef50_P50060 Superoxide dismutase [Mn] 3 0.115981303909 0.5 0.384018696091 +UniRef50_A0A028WHC5 DNA polymerase III, alpha subunit 1.12067047701 0.5 -0.620670477011 +UniRef50_P0A5R7 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.122084858604 0.5 0.377915141396 +UniRef50_E6JZ36 Citrate transporter 0.0592775242238 0.5 0.440722475776 +UniRef50_Q831N0 tRNA N6 adenosine threonylcarbamoyltransferase 0.0742556508181 0.5 0.425744349182 +UniRef50_U7NE48 0.34146026882 0.5 0.15853973118 +UniRef50_UPI000474C12F glutathione ABC transporter permease, partial 1.85954699565 0.5 -1.35954699565 +UniRef50_D4HAW3 0.0750014189437 0.5 0.424998581057 +UniRef50_T1YCD5 Fructokinase 3.25101588184 0.499999999997 -2.75101588183 +UniRef50_UPI000376AD8E hypothetical protein 0.308704203198 0.5 0.191295796802 +UniRef50_UPI000406F970 hypothetical protein 0.998084070868 0.5 -0.498084070868 +UniRef50_UPI000454108C PREDICTED 0.350261016256 0.5 0.149738983744 +UniRef50_A1B402 0.144778150554 0.5 0.355221849446 +UniRef50_UPI00046A6AED ABC transporter ATP binding protein 1.32077097382 0.5 -0.820770973823 +UniRef50_UPI00047B7506 membrane protein 1.28149260894 0.5 -0.78149260894 +UniRef50_Q7WYU3 Putative AgrB like protein 0.111242922498 0.5 0.388757077502 +UniRef50_H0G932 0.952257253735 0.5 -0.452257253735 +UniRef50_X5EAP1 1.56426643386 0.5 -1.06426643386 +UniRef50_Q8CNS4 Replication initiator protein A 0.143631217034 0.5 0.356368782966 +UniRef50_V4JMR5 1.14490613748 0.5 -0.644906137484 +UniRef50_Q2G8P8 0.92834411653 0.5 -0.42834411653 +UniRef50_N0BAQ7 dTDP 4 dehydrorhamnose 3,5 epimerase 1.75769507728 0.5 -1.25769507728 +UniRef50_Q8CU52 Alkylmercury lyase 1.31911512952 0.5 -0.819115129521 +UniRef50_A6V8R6 Ribonuclease D 0.517735770427 0.5 -0.0177357704267 +UniRef50_O66608 N5 carboxyaminoimidazole ribonucleotide synthase 0.354643845627 0.5 0.145356154373 +UniRef50_D3QEW5 CAAX amino terminal protease family protein 8.72139672709 0.5 -8.22139672709 +UniRef50_A0A017IAI8 AraC type transcriptional regulator family protein 0.0762517535036 0.5 0.423748246496 +UniRef50_UPI0003714DE7 hypothetical protein 0.192087160459 0.5 0.307912839541 +UniRef50_UPI00039CF99B ketol acid reductoisomerase 0.49855293722 0.5 0.00144706277954 +UniRef50_G8REC3 0.269975125893 0.5 0.230024874107 +UniRef50_R6CMC1 YhgE Pip domain protein 0.368136775206 0.5 0.131863224794 +UniRef50_UPI0002E4DB1A threonyl tRNA synthetase 0.058012989597 0.5 0.441987010403 +UniRef50_Q9PD20 0.155946138597 0.5 0.344053861403 +UniRef50_Q5M430 tRNA dimethylallyltransferase 0.626130012366 0.5 -0.126130012366 +UniRef50_Q2RSC8 Phosphoribosylformylglycinamidine cyclo ligase 0.295308308477 0.5 0.204691691523 +UniRef50_F0RN90 Alpha beta hydrolase fold protein 0.00737073662912 0.5 0.492629263371 +UniRef50_C9X0H3 DNA repair protein RecN 0.0116265269747 0.5 0.488373473025 +UniRef50_UPI0003488344 hypothetical protein 0.0820259121999 0.5 0.4179740878 +UniRef50_Q6A8H6 Guanylate kinase 0.442268855793 0.5 0.0577311442072 +UniRef50_UPI00046F8C65 hypothetical protein 0.277547412583 0.5 0.222452587417 +UniRef50_UPI0003B73489 glycosyltransferase 1.28186965253 0.5 -0.781869652531 +UniRef50_UPI0003B360FE MerR family transcriptional regulator 2.51637770019 0.499999999998 -2.01637770019 +UniRef50_O27088 Type 2 DNA topoisomerase 6 subunit B 7.82258539742 0.499999999991 -7.32258539741 +UniRef50_R9RCS6 MATE efflux family protein 1.1410744284 0.5 -0.641074428401 +UniRef50_C8W561 SpoVR family protein 0.0274642158567 0.5 0.472535784143 +UniRef50_Q5HLN9 Transcriptional regulator, TetR family 4.01034747238 0.499999999996 -3.51034747238 +UniRef50_A7ZJW5 0.873962279085 0.5 -0.373962279085 +UniRef50_Q9JTK4 Lactoferrin binding protein A 0.0112655150849 0.5 0.488734484915 +UniRef50_O27585 Lysine tRNA ligase 1.60263088151 0.500000000002 -1.10263088151 +UniRef50_B7J8G6 Ribosomal RNA large subunit methyltransferase E 0.446143358874 0.5 0.0538566411263 +UniRef50_A6LUF8 0.169330159133 0.5 0.330669840867 +UniRef50_UPI0003B3F0AB hypothetical protein 1.14285224973 0.5 -0.642852249732 +UniRef50_UPI0003506CEC PREDICTED 0.221172432331 0.5 0.278827567669 +UniRef50_G7M8A4 0.0599454043791 0.5 0.440054595621 +UniRef50_B5YKI3 NADH quinone oxidoreductase subunit B 1 0.141131084601 0.5 0.358868915399 +UniRef50_P31135 Putrescine transport system permease protein PotH 0.861485716793 0.5 -0.361485716793 +UniRef50_I4Z1X0 Hydrogenase urease accessory protein 1.58872454855 0.5 -1.08872454855 +UniRef50_Q3JXY3 0.0683112748257 0.5 0.431688725174 +UniRef50_UPI0003B638D4 phosphopentomutase, partial 0.508418427127 0.5 -0.00841842712705 +UniRef50_B2U2C8 Electron transport complex subunit RsxC 0.935843155252 0.5 -0.435843155252 +UniRef50_UPI000359674D PREDICTED 5.43412861324 0.500000000001 -4.93412861324 +UniRef50_W9T5C9 0.0299567927712 0.5 0.470043207229 +UniRef50_UPI00047CBCCD 4 alpha glucanotransferase 0.00914434775206 0.5 0.490855652248 +UniRef50_D3E1B3 Transposase 11.7077984601 0.500000000006 -11.2077984601 +UniRef50_Q3A253 Valine tRNA ligase 0.964586713232 0.5 -0.464586713232 +UniRef50_Q6D7E5 Zinc transporter ZitB 3.61915513934 0.499999999999 -3.11915513934 +UniRef50_A6M0L7 UPF0249 protein Cbei_4037 0.313795464244 0.5 0.186204535756 +UniRef50_Q6HLQ9 Spermidine putrescine import ATP binding protein PotA 0.160040222926 0.5 0.339959777074 +UniRef50_F2MPN2 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 0.0803131489796 0.5 0.41968685102 +UniRef50_UPI0002DFA60B hypothetical protein 0.292639734463 0.5 0.207360265537 +UniRef50_F8XHG2 0.763700947654 0.5 -0.263700947654 +UniRef50_I0C7U2 4 aminobutyrate aminotransferase 1.33636493746 0.500000000001 -0.83636493746 +UniRef50_P10932 Aliphatic amidase regulator 0.601400571834 0.5 -0.101400571834 +UniRef50_M7PBX7 Transferase 0.0153750008296 0.5 0.48462499917 +UniRef50_J3HPZ9 Putative transcriptional regulator 2.10706411984 0.5 -1.60706411984 +UniRef50_UPI000479F530 ABC transporter 0.35112887208 0.5 0.14887112792 +UniRef50_E2XT98 Alcohol dehydrogenase 0.00650722970194 0.5 0.493492770298 +UniRef50_K0HWR7 LysR family transcriptional regulator 0.0136922074475 0.5 0.486307792552 +UniRef50_A0A012DIE8 1.68238261805 0.5 -1.18238261805 +UniRef50_P42905 Putative N acetylgalactosamine permease IIC component 2 0.222696325465 0.5 0.277303674535 +UniRef50_B9JHG8 0.816669054833 0.5 -0.316669054833 +UniRef50_Q6MCU1 Chorismate synthase 0.160958769905 0.5 0.339041230095 +UniRef50_A3PS82 ABC transporter related 6.23302564474 0.499999999999 -5.73302564474 +UniRef50_UPI00016C5336 ATP dependent RNA helicase 0.0222573093679 0.5 0.477742690632 +UniRef50_E5QR85 5.98034537066 0.5 -5.48034537066 +UniRef50_D9XU17 Anti sigma B factor RsbT 0.0135974617953 0.5 0.486402538205 +UniRef50_D7YAA8 Poly beta 1,6 N acetyl D glucosamine export porin PgaA 2.61970750518 0.499999999999 -2.11970750518 +UniRef50_Q67P19 NADH quinone oxidoreductase subunit D 1 0.0973870129812 0.5 0.402612987019 +UniRef50_UPI000468EA31 chemotaxis protein 3.14536989533 0.5 -2.64536989533 +UniRef50_D3P499 1.8166937388 0.5 -1.3166937388 +UniRef50_A4XY80 Aminopeptidase Y 1.60125359701 0.5 -1.10125359701 +UniRef50_A0A024H1Y9 NrdI protein 0.110132446037 0.5 0.389867553963 +UniRef50_D7BFI6 0.00395684134246 0.5 0.496043158657 +UniRef50_P66951 Beta barrel assembly enhancing protease 1.51332335612 0.500000000001 -1.01332335612 +UniRef50_G7ZNX7 Competence protein ComEC, putative 2.28748378545 0.5 -1.78748378545 +UniRef50_S5YYC5 D 3 phosphoglycerate dehydrogenase 2.64914319272 0.5 -2.14914319272 +UniRef50_UPI000364F717 hypothetical protein 0.65663853838 0.5 -0.15663853838 +UniRef50_J8SAI7 Integral membrane protein MviN 0.700260001599 0.5 -0.200260001599 +UniRef50_F3ZC85 0.0271592478165 0.5 0.472840752183 +UniRef50_B2TJ37 DNA uptake protein 0.192119454939 0.5 0.307880545061 +UniRef50_P15644 Type II secretion system protein D 1.06593047045 0.5 -0.565930470455 +UniRef50_A6LSN4 Ribonuclease HII 0.0735329726824 0.5 0.426467027317 +UniRef50_A3DJ91 Chemotaxis response regulator protein glutamate methylesterase 0.156316339193 0.5 0.343683660807 +UniRef50_A3VZA4 1.93000547065 0.500000000001 -1.43000547065 +UniRef50_UPI00036D2281 hypothetical protein 0.04575580967 0.499999999999 0.454244190331 +UniRef50_T3G9C0 Modulator of DNA gyrase family protein 0.216106620656 0.5 0.283893379344 +UniRef50_W1YWP9 0.0130913618685 0.5 0.486908638132 +UniRef50_M4S4L0 ParB family protein 2.49022756045 0.500000000002 -1.99022756045 +UniRef50_M9WZ57 0.152827804716 0.5 0.347172195284 +UniRef50_Q8XC28 Tyrosine protein kinase etk 1.96900868725 0.499999999999 -1.46900868725 +UniRef50_F2CYK8 Predicted protein 4.37611484566 0.499999999998 -3.87611484565 +UniRef50_Q181T5 Enolase 0.00192340995526 0.5 0.498076590045 +UniRef50_F8B5V8 Methylmalonyl CoA epimerase 0.965764029679 0.5 -0.465764029679 +UniRef50_D8AI56 0.538530772676 0.5 -0.0385307726755 +UniRef50_A3PRU0 Protease Do 2.54837785458 0.5 -2.04837785458 +UniRef50_A7M2I7 0.935034409572 0.5 -0.435034409572 +UniRef50_P9WN34 Anthranilate synthase component 2 0.00530556277443 0.5 0.494694437226 +UniRef50_UPI0001BF66E0 hypothetical protein SMAC_10559 1.40794314101 0.5 -0.907943141013 +UniRef50_A5UMG7 Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family 1.92721780405 0.500000000001 -1.42721780405 +UniRef50_B2TKT2 D alanine poly ligase subunit 1 0.0509494710893 0.5 0.449050528911 +UniRef50_P77608 2 keto 4 pentenoate hydratase 12.9501523425 0.499999999999 -12.4501523425 +UniRef50_UPI00035F6D04 hypothetical protein 0.309656859592 0.5 0.190343140408 +UniRef50_UPI0003688491 hypothetical protein 0.42425114208 0.5 0.0757488579201 +UniRef50_UPI0003AF89CE PREDICTED 0.0357791661434 0.5 0.464220833857 +UniRef50_C7ZUX9 Exported protein 3.21767207407 0.5 -2.71767207407 +UniRef50_UPI000395A56D hypothetical protein, partial 0.185029543276 0.5 0.314970456724 +UniRef50_P95784 ATP synthase subunit a 1.99282257507 0.5 -1.49282257507 +UniRef50_W6EGR2 3.86299645851 0.500000000001 -3.36299645851 +UniRef50_R5GIU2 ABC transporter permease protein 0.0569187729484 0.5 0.443081227052 +UniRef50_B9AFH0 Polymorphic outer membrane protein repeat (Fragment) 1.27733938913 0.5 -0.777339389135 +UniRef50_Q1H276 UPF0125 protein Mfla_1143 0.325250000617 0.5 0.174749999383 +UniRef50_Q8X9B6 Biotin carboxylase 0.642210269521 0.5 -0.142210269521 +UniRef50_Q6A7Q4 Phosphopantetheine adenylyltransferase 0.878800571013 0.5 -0.378800571013 +UniRef50_A0A022KFC8 FCD domain protein 0.0194349921325 0.5 0.480565007868 +UniRef50_A8I308 D hydantoinase 1.79321318572 0.499999999998 -1.29321318572 +UniRef50_A8L8P5 UPF0225 protein Franean1_5815 0.0862479868872 0.5 0.413752013113 +UniRef50_Q8XDS0 Aspartate ammonia lyase 0.832096332176 0.5 -0.332096332176 +UniRef50_B9TEB7 7.42374388546 0.499999999995 -6.92374388546 +UniRef50_UPI0002378CC4 serine threonine protein kinase 0.00229647777706 0.5 0.497703522223 +UniRef50_P0AEI0 Inner membrane protein YjiG 0.541922464944 0.5 -0.041922464944 +UniRef50_Q6YWN8 BKRF1 encodes EBNA 1 protein like 0.0518930210714 0.5 0.448106978929 +UniRef50_P47227 Cis 2,3 dihydrobiphenyl 2,3 diol dehydrogenase 0.465624022508 0.5 0.034375977492 +UniRef50_P77288 0.276793038191 0.5 0.223206961809 +UniRef50_Q5HRN0 UvrB UvrC domain protein 1.48084716193 0.500000000001 -0.980847161932 +UniRef50_Q2S0M8 3 isopropylmalate dehydrogenase 0.00319728387869 0.5 0.496802716121 +UniRef50_UPI0002E4EFAA hypothetical protein 0.818451782379 0.5 -0.318451782379 +UniRef50_C5N2L9 Sua5 YciO YrdC YwlC family protein 1.57805939708 0.500000000002 -1.07805939709 +UniRef50_Q28W83 2.64208020202 0.5 -2.14208020202 +UniRef50_UPI0003B4DCFB ketol acid reductoisomerase 0.167062293656 0.499999999999 0.332937706345 +UniRef50_B7JTI5 SAF domain family 0.310694340275 0.5 0.189305659725 +UniRef50_G4LM62 Outer membrane OprD family porin 0.201163667959 0.5 0.298836332041 +UniRef50_R8AF48 DNA single strand annealing protein 0.193627511389 0.5 0.306372488611 +UniRef50_P07648 RecBCD enzyme subunit RecC 0.321157117603 0.5 0.178842882397 +UniRef50_Q97FT9 Lon protease 0.359684959086 0.5 0.140315040914 +UniRef50_A8LK44 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.912133575573 0.5 -0.412133575573 +UniRef50_Q7CTM5 Replication protein C 2.46427009451 0.5 -1.96427009451 +UniRef50_Q6F9Y0 Type II secretion system protein K 0.00854428048543 0.5 0.491455719515 +UniRef50_R0DQ91 0.198206479219 0.5 0.301793520781 +UniRef50_UPI0002ECAD7A hypothetical protein 0.00473144333101 0.5 0.495268556669 +UniRef50_UPI00035E723E hypothetical protein 0.985541109408 0.5 -0.485541109408 +UniRef50_UPI000479B32F hypothetical protein 2.06487146583 0.5 -1.56487146583 +UniRef50_Q483C5 Holliday junction ATP dependent DNA helicase RuvA 0.981679274996 0.5 -0.481679274996 +UniRef50_H3TL67 Phenol hydroxylase 0.744318666083 0.5 -0.244318666083 +UniRef50_UPI0003B4F6D8 hypothetical protein 0.0242883509563 0.5 0.475711649044 +UniRef50_A5UNK2 3.70211602411 0.5 -3.20211602411 +UniRef50_O25657 4 hydroxy tetrahydrodipicolinate synthase 0.016020462541 0.5 0.483979537459 +UniRef50_B2GD08 Dihydroorotase 0.00106302045847 0.499999999999 0.498936979542 +UniRef50_Q1IY18 RNA ligase of LigT family 0.0096140488532 0.5 0.490385951146 +UniRef50_P07607 Thymidylate synthase 0.14140586684 0.5 0.35859413316 +UniRef50_O32044 Single stranded DNA specific exonuclease RecJ 0.0929801796257 0.5 0.407019820374 +UniRef50_UPI0003B455BB histidine kinase 0.0988493215827 0.499999999999 0.401150678418 +UniRef50_UPI0004633AFB relaxase 1.34588024916 0.5 -0.845880249156 +UniRef50_A0A033ZCU2 10.4592897963 0.5 -9.95928979633 +UniRef50_P76481 2.59536121657 0.499999999999 -2.09536121657 +UniRef50_Q466I1 DNA 3 methyladenine glycosylase III 3.56387537749 0.500000000001 -3.0638753775 +UniRef50_Q02H50 0.932088908779 0.5 -0.432088908779 +UniRef50_P76486 2.21367847631 0.5 -1.71367847631 +UniRef50_P76485 0.198403430038 0.5 0.301596569962 +UniRef50_P76484 6.77872457938 0.500000000004 -6.27872457938 +UniRef50_G9UAR6 Nitrite extrusion protein 0.862881088295 0.5 -0.362881088295 +UniRef50_Q3J6L0 Dimethlysulfonioproprionate lyase DddL 7.21594884692 0.500000000007 -6.71594884692 +UniRef50_F4D682 Sel1 repeat protein 0.0253068450355 0.5 0.474693154965 +UniRef50_UPI000289216F DNA mismatch repair protein MutS 0.0556792288333 0.5 0.444320771166 +UniRef50_A3JNX6 4.65484666363 0.500000000001 -4.15484666364 +UniRef50_R5AYM2 0.0452971030055 0.5 0.454702896994 +UniRef50_A3JNX5 5.21449322205 0.500000000003 -4.71449322205 +UniRef50_UPI0004744F96 amidohydrolase 0.0788848041696 0.5 0.42111519583 +UniRef50_UPI0003B74A4B RNA polymerase subunit sigma 24 1.83276196856 0.5 -1.33276196856 +UniRef50_G8VJE3 BadF BadG BcrA BcrD ATPase family protein 0.0340945472034 0.5 0.465905452796 +UniRef50_Q823P5 Na translocating NADH quinone reductase subunit E 0.171685507836 0.5 0.328314492164 +UniRef50_S4XM14 0.0698267333075 0.5 0.430173266693 +UniRef50_Q7ZAK9 Segregation and condensation protein B 1.74576815825 0.5 -1.24576815825 +UniRef50_UPI000306724C thioredoxin 2.02274419549 0.5 -1.52274419549 +UniRef50_B1VAN9 Proline tRNA ligase 0.175831010001 0.5 0.324168989999 +UniRef50_R6KZL2 L serine dehydratase iron sulfur dependent alpha subunit 0.361374084141 0.5 0.138625915859 +UniRef50_S5YFS5 1.91310335851 0.5 -1.41310335851 +UniRef50_Q1GN45 1.33396130477 0.5 -0.833961304765 +UniRef50_A0A059LCY3 0.602026948162 0.5 -0.102026948162 +UniRef50_D9SMI0 0.0476736191396 0.5 0.45232638086 +UniRef50_B7H3X7 RNA methyltransferase, TrmH family, group 1 family protein 0.0135091436734 0.5 0.486490856326 +UniRef50_A0A023RS70 0.0581175331772 0.5 0.441882466823 +UniRef50_Q9RYG9 Aldehyde dehydrogenase 0.000936652791257 0.5 0.499063347209 +UniRef50_Q4EF29 1.18288984447 0.5 -0.682889844467 +UniRef50_R9SK97 Energy converting hydrogenase A subunit L EhaL 0.412511857882 0.5 0.0874881421176 +UniRef50_K7RWV6 Type I phosphodiesterase nucleotide pyrophosphatase 0.00971329660231 0.5 0.490286703398 +UniRef50_Q5Z380 Glutamyl Q tRNA synthetase 0.33684554109 0.5 0.16315445891 +UniRef50_Q2J6V8 3 isopropylmalate dehydrogenase 0.0169295785404 0.5 0.483070421459 +UniRef50_Q4L351 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.33878457685 0.500000000004 -1.83878457686 +UniRef50_UPI000474339B hypothetical protein, partial 0.315723000609 0.5 0.184276999391 +UniRef50_C5C6N2 Cobyrinic acid ac diamide synthase 0.0742867553825 0.5 0.425713244618 +UniRef50_U7GP52 1.84749845357 0.5 -1.34749845357 +UniRef50_O26880 Probable cobyric acid synthase 0.727570052541 0.5 -0.227570052541 +UniRef50_UPI0003783691 hypothetical protein, partial 0.332173405723 0.5 0.167826594277 +UniRef50_A3PFT3 3.09746236141 0.499999999999 -2.59746236141 +UniRef50_L0A0P5 0.422760345911 0.5 0.077239654089 +UniRef50_P15028 Fe dicitrate binding periplasmic protein 1.19163053154 0.5 -0.69163053154 +UniRef50_V6YIB9 0.0626126298968 0.5 0.437387370103 +UniRef50_UPI0002627F77 hypothetical protein 1.69285549359 0.5 -1.19285549359 +UniRef50_C0QHR6 UgpB 0.956602148705 0.5 -0.456602148705 +UniRef50_UPI0003505377 PREDICTED 0.248760238541 0.5 0.251239761459 +UniRef50_F0P831 Nitroreductase family protein 3.56839092119 0.500000000001 -3.06839092119 +UniRef50_A6QEY2 2.41574734917 0.500000000001 -1.91574734917 +UniRef50_V4QDF6 0.373691919719 0.5 0.126308080281 +UniRef50_D7GAG5 Heat shock protein DnaJ 0.398436616515 0.5 0.101563383485 +UniRef50_Q49ZB7 UPF0457 protein SSP0714 2.7053995733 0.5 -2.2053995733 +UniRef50_C7CIU9 2.23890823292 0.499999999998 -1.73890823291 +UniRef50_Q72I44 Maltose maltodextrin binding protein 0.00477624238118 0.5 0.495223757619 +UniRef50_Q8FQP8 Fumarate hydratase class II 0.353507497879 0.5 0.146492502121 +UniRef50_Q8GDY3 Isoprenyl transferase 0.279620539841 0.5 0.220379460159 +UniRef50_UPI000363611D hypothetical protein, partial 0.0636984298717 0.5 0.436301570129 +UniRef50_E2XCC3 Porin thermoregulatory envY domain protein 0.313581417725 0.5 0.186418582275 +UniRef50_UPI00037CBE46 hypothetical protein 1.55761560871 0.499999999999 -1.05761560871 +UniRef50_A0A017HI16 Putative inner membrane protein 0.285769402474 0.5 0.214230597526 +UniRef50_A5UJ74 Chloramphenicol O acetyltransferase 2.40744784966 0.499999999996 -1.90744784966 +UniRef50_Q2S4B9 Leucyl phenylalanyl tRNA protein transferase 0.201720663042 0.5 0.298279336958 +UniRef50_Q9KPL8 Thymidine phosphorylase 1.53231073919 0.5 -1.03231073919 +UniRef50_A5UJ64 1.39060449205 0.5 -0.890604492046 +UniRef50_Q38XI1 Phosphopentomutase 0.459759148443 0.5 0.040240851557 +UniRef50_T2A3N6 Replication initiation factor 0.00785355549924 0.5 0.492146444501 +UniRef50_A0A034MYR1 4.5196277214 0.499999999999 -4.01962772139 +UniRef50_A4X046 1.13097487951 0.5 -0.630974879509 +UniRef50_P10173 Fumarate hydratase, mitochondrial 0.133691348073 0.5 0.366308651927 +UniRef50_E3GZR7 C4 dicarboxylate transporter malic acid transport protein 0.0963227777739 0.500000000001 0.403677222225 +UniRef50_UPI00036C6CE0 methionyl tRNA synthetase 0.287179068145 0.5 0.212820931855 +UniRef50_A3M9C4 0.0107406090362 0.5 0.489259390964 +UniRef50_C7M0E4 2 isopropylmalate synthase 1.36246243806 0.5 -0.862462438059 +UniRef50_UPI00034512D5 hypothetical protein 1.5284602838 0.499999999998 -1.0284602838 +UniRef50_Q3J3B7 ABC transporter, fused ATPase and inner membrane subunits 1.57068822029 0.5 -1.07068822029 +UniRef50_B1YMH0 tRNA dimethylallyltransferase 0.413941698983 0.5 0.0860583010171 +UniRef50_F8LKP2 0.954399816035 0.5 -0.454399816035 +UniRef50_Q1QNK0 1.09070147322 0.5 -0.590701473216 +UniRef50_B9KKX9 Na+ solute symporter 2.50271957525 0.5 -2.00271957525 +UniRef50_UPI0004689C7D succinylglutamate desuccinylase 5.17935022972 0.499999999996 -4.67935022972 +UniRef50_A0A024RXB9 4.87623896839 0.499999999998 -4.37623896838 +UniRef50_P54304 Oxygen independent coproporphyrinogen III oxidase like protein YqeR 0.0668311706022 0.500000000001 0.433168829397 +UniRef50_UPI000472E48E hypothetical protein 1.16536170151 0.5 -0.665361701513 +UniRef50_B5Z6E9 Acetyl coenzyme A synthetase 0.0162838711601 0.5 0.48371612884 +UniRef50_UPI00036C5675 hypothetical protein, partial 0.391391818076 0.5 0.108608181924 +UniRef50_C7RVA0 Transposase IS4 family protein 1.6837433086 0.5 -1.1837433086 +UniRef50_Q9HZ55 Ribosomal large subunit pseudouridine synthase B 28.1310519275 0.500000000006 -27.6310519275 +UniRef50_D2Z027 O ureido L serine synthase 2.96808635783 0.499999999999 -2.46808635783 +UniRef50_M3DVL4 1.09158819154 0.5 -0.591588191542 +UniRef50_I6STE7 Transcriptional regulator 2.0948020757 0.499999999999 -1.5948020757 +UniRef50_S3FNF7 Nitrite extrusion 1 domain protein 0.544039533005 0.5 -0.0440395330047 +UniRef50_Q9XDH5 DNA polymerase III subunit alpha 0.0794678440353 0.5 0.420532155965 +UniRef50_A6LRS6 Methyl accepting chemotaxis sensory transducer 0.314646752092 0.5 0.185353247908 +UniRef50_UPI00036C22DF hypothetical protein, partial 0.334211470304 0.5 0.165788529696 +UniRef50_A4FVV8 Tetrahydromethanopterin S methyltransferase subunit H 5.47284772779 0.499999999997 -4.97284772779 +UniRef50_UPI000469A37F hypothetical protein 0.716553522318 0.5 -0.216553522318 +UniRef50_Q8CJR5 Phosphate acetyltransferase 0.140357895022 0.5 0.359642104978 +UniRef50_Q8CQB7 OpuCB protein 0.811297047167 0.5 -0.311297047167 +UniRef50_D5H607 GTP binding protein TypA 0.0363318536961 0.5 0.463668146304 +UniRef50_UPI00040B08A2 hypothetical protein 0.162649206867 0.5 0.337350793133 +UniRef50_R7PVW1 3.28925281032 0.500000000001 -2.78925281032 +UniRef50_Q9RU45 0.0168101693713 0.5 0.483189830629 +UniRef50_UPI0003B4FB17 succinyl CoA synthetase subsunit alpha 0.641308625246 0.5 -0.141308625246 +UniRef50_B4U3L2 Glycine D amino acid oxidases family 0.608585651189 0.5 -0.108585651189 +UniRef50_Q0BPU7 Protoheme IX farnesyltransferase 1.88873981069 0.499999999999 -1.38873981069 +UniRef50_UPI00035C8085 MULTISPECIES 0.068830341855 0.5 0.431169658145 +UniRef50_D6K0E4 Tellurium resistance protein 0.151209825217 0.5 0.348790174783 +UniRef50_A4WRY9 0.0997691273178 0.5 0.400230872683 +UniRef50_Q74HC8 N acetylmuramic acid 6 phosphate etherase 0.319642426348 0.5 0.180357573652 +UniRef50_S4MRC0 0.0266554332468 0.5 0.473344566753 +UniRef50_B9E7V9 Two component response regulator 1.47354522474 0.499999999999 -0.973545224737 +UniRef50_Q7WEH6 Hemin import ATP binding protein HmuV 0.0420573235203 0.5 0.45794267648 +UniRef50_C5C1A7 Ribulokinase 0.0191146577622 0.5 0.480885342238 +UniRef50_UPI00035EC645 hypothetical protein 0.13014648665 0.5 0.36985351335 +UniRef50_Q8CND6 FDHD protein 0.574972846115 0.5 -0.0749728461152 +UniRef50_A1VV51 2.84983998486 0.500000000001 -2.34983998486 +UniRef50_G4LN90 Acyl CoA synthetase 1.41728828488 0.5 -0.917288284878 +UniRef50_D8THS6 Pathogenesis related protein 1 like protein 0.0555289744725 0.5 0.444471025527 +UniRef50_U3SRT7 0.486157445419 0.5 0.0138425545812 +UniRef50_X7Z2N8 0.574149958064 0.5 -0.0741499580639 +UniRef50_E4REV8 BirA 1.12330454551 0.5 -0.623304545511 +UniRef50_A6LXY3 Diguanylate cyclase 0.0704880968622 0.5 0.429511903138 +UniRef50_Q8RKJ0 Putative ribitol 5 phosphate dehydrogenase 2.28265424899 0.5 -1.78265424899 +UniRef50_A3JXP6 0.793786572888 0.5 -0.293786572888 +UniRef50_B4U3L6 DNA replication protein DnaD 0.682027327524 0.5 -0.182027327524 +UniRef50_UPI0003D0F47B PREDICTED 0.0306711330148 0.5 0.469328866985 +UniRef50_M1MTG9 Tetratricopeptide TPR_2 repeat containing protein 0.477596729704 0.5 0.0224032702964 +UniRef50_UPI000421FD3A acetyl CoA acetyltransferase 0.0174478745713 0.5 0.482552125429 +UniRef50_A7WYS8 Lysine tRNA ligase 1.30564590186 0.5 -0.80564590186 +UniRef50_UPI00035D12EA hypothetical protein 1.73078048766 0.5 -1.23078048766 +UniRef50_B7KKV6 Transposase, IS605 OrfB family 0.00169015686551 0.5 0.498309843134 +UniRef50_UPI000467FC65 hypothetical protein 0.20258511401 0.5 0.29741488599 +UniRef50_G8VDJ6 Kinase, PfkB family protein 0.0490261848108 0.5 0.450973815189 +UniRef50_K4LCD0 Transposase 0.759643035815 0.5 -0.259643035815 +UniRef50_I3THN5 ABC transporter, periplasmic solute binding protein 9.77446818685 0.500000000002 -9.27446818685 +UniRef50_R9YM38 1.64786282296 0.5 -1.14786282296 +UniRef50_H3USA6 2.09540071689 0.5 -1.59540071689 +UniRef50_UPI0003820DEC DNA binding protein 0.0873568185506 0.5 0.412643181449 +UniRef50_D0WAX6 0.0491034529181 0.499999999999 0.450896547082 +UniRef50_C6NU33 DNA repair protein RadA 0.0598036680958 0.5 0.440196331904 +UniRef50_D3EY08 5.97856395668 0.499999999998 -5.47856395667 +UniRef50_J7TVX7 Integral membrane protein 2.2227045945 0.499999999997 -1.7227045945 +UniRef50_A5IUD7 Phage transcriptional regulator, RinA family 4.10437926239 0.499999999997 -3.60437926238 +UniRef50_A6Q5I8 Glutamate tRNA ligase 2 0.174972505152 0.5 0.325027494848 +UniRef50_Q1QJ73 1.8291490139 0.5 -1.3291490139 +UniRef50_Q3IVG4 Hemolysin type calcium binding protein 1.81533504939 0.5 -1.31533504939 +UniRef50_Q9AAL4 N succinylarginine dihydrolase 1 0.148400103646 0.5 0.351599896354 +UniRef50_Q223D6 ATP synthase subunit beta 1 0.21218549662 0.5 0.28781450338 +UniRef50_M1LNT9 ABC type metal ion transport system, periplasmic component surface adhesin 0.4761258419 0.5 0.0238741581003 +UniRef50_B2TL84 Cyclic nucleotide binding domain protein 0.0246805947147 0.5 0.475319405285 +UniRef50_UPI000361F512 hypothetical protein 0.632973428615 0.5 -0.132973428615 +UniRef50_B9C0V9 0.0470030716217 0.5 0.452996928379 +UniRef50_J0EHT6 2.27602722756 0.5 -1.77602722756 +UniRef50_UPI00036BFB9E hypothetical protein 2.30174713515 0.5 -1.80174713515 +UniRef50_B9KQI2 1.25582881066 0.5 -0.755828810659 +UniRef50_P0A2U6 Zinc transport system ATP binding protein AdcC 0.33525869219 0.5 0.16474130781 +UniRef50_D9SLD8 Fibronectin binding A domain protein 0.0660838756516 0.5 0.433916124348 +UniRef50_UPI000248DBE4 multidrug transporter 0.0144698385086 0.5 0.485530161492 +UniRef50_UPI0003B77FDC peptidyl tRNA hydrolase 0.201352929767 0.5 0.298647070233 +UniRef50_Q93YZ7 Acetolactate synthase small subunit 2, chloroplastic 0.0286535010459 0.5 0.471346498954 +UniRef50_V7C557 14.7157038959 0.499999999996 -14.2157038959 +UniRef50_A6LYZ3 0.146777028407 0.5 0.353222971593 +UniRef50_B0V8I1 0.0112461261351 0.5 0.488753873865 +UniRef50_Q9FA52 Glucans biosynthesis glucosyltransferase H 2.06406505132 0.5 -1.56406505132 +UniRef50_Q6A910 Orotate phosphoribosyltransferase 0.00372091712674 0.5 0.496279082873 +UniRef50_B5F1C0 Cysteine desulfurase IscS 1.74644945399 0.5 -1.24644945399 +UniRef50_A3M8T8 Phage integrase 0.0430511348081 0.5 0.456948865192 +UniRef50_B4IVR0 GE15000 0.318881835791 0.5 0.181118164209 +UniRef50_D3QH80 Hydroxymethylglutaryl CoA reductase 2.40776650917 0.499999999998 -1.90776650917 +UniRef50_D5BRV4 Binding protein dependent transport systems inner membrane component 2.92679584925 0.5 -2.42679584925 +UniRef50_Q9K678 PTS system mannitol specific EIICB component 0.00233053147082 0.5 0.497669468529 +UniRef50_Q1MHS1 Ribose import ATP binding protein RbsA 1 4.34501684825 0.500000000001 -3.84501684825 +UniRef50_C1KWM3 3 phosphoshikimate 1 carboxyvinyltransferase 0.494869475259 0.5 0.00513052474072 +UniRef50_A3PN67 1.15343728727 0.5 -0.653437287267 +UniRef50_A4SIM5 Argininosuccinate synthase 0.0258038954684 0.5 0.474196104532 +UniRef50_B7HEC5 SsrA binding protein 3.26554526422 0.5 -2.76554526422 +UniRef50_Q7NCQ9 Valine tRNA ligase 0.619412925296 0.5 -0.119412925296 +UniRef50_Q2T8Y7 Probable chemoreceptor glutamine deamidase CheD 2 1.12183587127 0.5 -0.621835871266 +UniRef50_P95646 Anthranilate synthase component 1 3.79960613968 0.5 -3.29960613968 +UniRef50_UPI00047BA852 hypothetical protein 1.03682955848 0.5 -0.536829558482 +UniRef50_UPI00035E8084 hypothetical protein 2.68279965797 0.500000000001 -2.18279965797 +UniRef50_Q0AQH3 Ribosomal RNA large subunit methyltransferase E 1.61039109197 0.5 -1.11039109197 +UniRef50_UPI0003C1AC12 PREDICTED 0.311147141638 0.5 0.188852858362 +UniRef50_B9KMC5 Transcriptional regulator, LysR family 1.95216788292 0.500000000001 -1.45216788292 +UniRef50_UPI0002DED034 hypothetical protein 0.431845430105 0.5 0.0681545698949 +UniRef50_UPI00047129D7 transposase 0.00296058547304 0.500000000001 0.497039414526 +UniRef50_UPI00036A3DAC hypothetical protein 1.07001025566 0.5 -0.570010255657 +UniRef50_Q6F9R1 Protoheme IX farnesyltransferase 0.00127098325426 0.5 0.498729016746 +UniRef50_Q9UJM8 Hydroxyacid oxidase 1 0.0251735688368 0.5 0.474826431163 +UniRef50_A6M2U7 Response regulator receiver sensor signal transduction histidine kinase 0.292544117363 0.5 0.207455882637 +UniRef50_A4WXL5 2.25275599752 0.5 -1.75275599752 +UniRef50_UPI0004790384 hypothetical protein 0.189811669246 0.5 0.310188330754 +UniRef50_UPI00037C9F17 hypothetical protein 2.37513587109 0.5 -1.87513587109 +UniRef50_G0HE81 Alcohol dehydrogenase 0.013931060476 0.5 0.486068939524 +UniRef50_C4Y1J5 Isocitrate dehydrogenase, mitochondrial 1.30947497932 0.5 -0.809474979317 +UniRef50_A0A038FV36 0.743251463106 0.5 -0.243251463106 +UniRef50_UPI0002F90E7D hypothetical protein 0.0092528235259 0.499999999999 0.490747176475 +UniRef50_C8WIL3 2 nitropropane dioxygenase NPD 0.0280500115214 0.5 0.471949988479 +UniRef50_O29329 Putative branched chain amino acid aminotransferase 2.09490955098 0.5 -1.59490955098 +UniRef50_UPI00036F30A5 hypothetical protein 0.21457415254 0.5 0.28542584746 +UniRef50_M1MI89 Sensor histidine kinase YesM 0.104544163237 0.5 0.395455836764 +UniRef50_A3M8H3 Chemotactic signal transduction system component 0.0127178314511 0.5 0.487282168549 +UniRef50_UPI0001FFE87D ABC type Fe3+ transport system, periplasmic component 0.674109375381 0.5 -0.174109375381 +UniRef50_UPI0003807E5F hypothetical protein, partial 0.00444300501612 0.499999999999 0.495556994985 +UniRef50_UPI0003B5D592 adenylosuccinate synthetase 0.545520445247 0.5 -0.0455204452472 +UniRef50_Q6MCV4 Spermidine putrescine import ATP binding protein PotA 1.24424489347 0.5 -0.74424489347 +UniRef50_UPI000475EAAA epimerase 0.0765192140948 0.5 0.423480785905 +UniRef50_M9SCU9 0.719010692564 0.5 -0.219010692564 +UniRef50_F7P1G2 0.819854231478 0.5 -0.319854231478 +UniRef50_UPI0001BC2D8F putative enterobactin synthetase component A 0.220497516667 0.5 0.279502483333 +UniRef50_R0P3C6 Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain 0.14592994624 0.5 0.35407005376 +UniRef50_Q02KY6 0.195976610939 0.5 0.304023389061 +UniRef50_Q2GL45 30S ribosomal protein S8 1.59053915572 0.5 -1.09053915572 +UniRef50_A7ZLN4 ABC transporter, ATP binding protein 2.43643054448 0.499999999999 -1.93643054448 +UniRef50_G8LHY7 1.7250016265 0.5 -1.2250016265 +UniRef50_W4KP08 1.35370098758 0.5 -0.853700987583 +UniRef50_C5C7X4 Chromosomal replication initiator protein DnaA 0.013105282126 0.5 0.486894717874 +UniRef50_UPI00047B2DE4 hypothetical protein 0.0329285676469 0.499999999999 0.467071432354 +UniRef50_UPI00036A72D9 hypothetical protein 0.699692387789 0.5 -0.199692387789 +UniRef50_P39308 6.29490964072 0.500000000001 -5.79490964072 +UniRef50_Q7MT94 Tryptophan tRNA ligase 0.608681747529 0.5 -0.108681747529 +UniRef50_A0A023RUT4 NADH 0.00589641053637 0.5 0.494103589463 +UniRef50_S6P0Z4 ABC transporter permease 0.693999822784 0.5 -0.193999822784 +UniRef50_A5UKM7 Protein disulfide isomerase, thioredoxin related 2.5674742196 0.5 -2.0674742196 +UniRef50_V2DIK3 0.541184588396 0.5 -0.0411845883963 +UniRef50_P83221 Peptidyl prolyl cis trans isomerase cyp18 0.106326644117 0.5 0.393673355883 +UniRef50_UPI0003B343E5 imidazoleglycerol phosphate dehydratase 2.44831521307 0.5 -1.94831521307 +UniRef50_Q2YTP0 2 succinylbenzoate CoA ligase 3.56380235074 0.5 -3.06380235074 +UniRef50_A0A017HIG9 2.04651212062 0.5 -1.54651212062 +UniRef50_Q6CX23 Glyceraldehyde 3 phosphate dehydrogenase 2 1.45259249075 0.5 -0.952592490748 +UniRef50_G2TA75 TRAP transporter solute receptor TAXI family protein 5.51216432231 0.499999999999 -5.01216432231 +UniRef50_UPI000477C7AD DNA gyrase subunit A 0.289796368694 0.5 0.210203631306 +UniRef50_UPI0003B4541A coproporphyrinogen III oxidase 0.449288735098 0.5 0.0507112649025 +UniRef50_Q8DVU8 Putative hydrolase SMU_367 0.901245100318 0.5 -0.401245100318 +UniRef50_UPI00035C6E64 hypothetical protein, partial 0.0471568928229 0.5 0.452843107177 +UniRef50_UPI00016AE124 glycosyltransferase family 4 0.184993418457 0.5 0.315006581543 +UniRef50_Q6A7G2 Conserved membrane protein 0.0242638400192 0.5 0.475736159981 +UniRef50_M0CR54 PKD domain containing protein 0.547407794234 0.5 -0.0474077942339 +UniRef50_Q46891 Putative hydroxypyruvate isomerase YgbM 1.45116937252 0.5 -0.951169372522 +UniRef50_O34718 Major myo inositol transporter IolT 0.103983783171 0.500000000001 0.396016216828 +UniRef50_D8GNL4 Dihydrodipicolinate synthase 0.25123244743 0.5 0.24876755257 +UniRef50_UPI000304D536 hypothetical protein 0.557348772659 0.5 -0.0573487726594 +UniRef50_UPI000471E9C0 hypothetical protein 0.10502906025 0.5 0.39497093975 +UniRef50_A6M1I0 Extracellular solute binding protein, family 3 0.0490325921698 0.5 0.450967407831 +UniRef50_A0QUX7 Acetolactate synthase small subunit 0.0292244261392 0.5 0.470775573861 +UniRef50_Q1M3I8 10.4595850433 0.500000000004 -9.95958504331 +UniRef50_J9G6J0 Membrane protein 0.0198769745765 0.5 0.480123025423 +UniRef50_UPI000365FCDF hypothetical protein 1.03480710944 0.5 -0.534807109439 +UniRef50_UPI000308E21F tail fiber protein 0.153753492966 0.5 0.346246507034 +UniRef50_B9KVR5 Cobyrinate a,c diamide synthase hydrogenobyrinic acid a,c diamide synthase 0.0338152115169 0.5 0.466184788483 +UniRef50_UPI00047054EB hypothetical protein 0.683825074551 0.5 -0.183825074551 +UniRef50_UPI0003792A51 hypothetical protein 0.0733801686652 0.5 0.426619831335 +UniRef50_I4YZ70 Integral membrane protein MviN 0.635501127765 0.5 -0.135501127765 +UniRef50_A8FIC1 Serine hydroxymethyltransferase 0.38225521683 0.5 0.11774478317 +UniRef50_D8JKE9 Outer membrane porin protein 0.0134739844243 0.5 0.486526015576 +UniRef50_UPI000369E2AC hypothetical protein 0.365062249608 0.5 0.134937750392 +UniRef50_F0RQZ2 ABC type transporter, periplasmic subunit 0.0415599511624 0.5 0.458440048837 +UniRef50_Q8CRR5 1.71708738817 0.5 -1.21708738817 +UniRef50_UPI000473A232 amino acid ABC transporter permease 0.371400187958 0.5 0.128599812042 +UniRef50_U5NMU5 2.82502084277 0.499999999996 -2.32502084277 +UniRef50_U5NMU8 1.02914215573 0.5 -0.529142155726 +UniRef50_R6GNA7 Peptidoglycan binding LysM 0.0743202519446 0.5 0.425679748056 +UniRef50_A5WCM3 Peptidoglycan binding LysM 0.0226048907277 0.5 0.477395109272 +UniRef50_D0DDK5 3.11259500452 0.499999999998 -2.61259500452 +UniRef50_Q26HR0 0.391168721807 0.5 0.108831278193 +UniRef50_V4KQA6 Oxidoreductase 0.0904104429912 0.5 0.409589557009 +UniRef50_M9S8V5 Oxidoreductase 0.307817278521 0.5 0.192182721479 +UniRef50_UPI00037B160E hypothetical protein 2.70361829614 0.5 -2.20361829614 +UniRef50_C6SJ34 Prephenate dehydrogenase 0.0792382556275 0.5 0.420761744372 +UniRef50_UPI0003A88B86 ATPase 0.849578532911 0.5 -0.349578532911 +UniRef50_B5F4R2 NADPH dependent 7 cyano 7 deazaguanine reductase 3.25843810519 0.500000000001 -2.75843810519 +UniRef50_P50252 Adenosylhomocysteinase 3.05979857849 0.500000000001 -2.55979857849 +UniRef50_C5N5T0 Bacteriocin biosynthesis cyclodehydratase, SagC family 1.02423344949 0.5 -0.524233449495 +UniRef50_Q7VG78 Probable GMP synthase [glutamine hydrolyzing] 0.468229648698 0.5 0.0317703513017 +UniRef50_Q6FCS8 ATP phosphoribosyltransferase regulatory subunit 0.00550232675266 0.500000000001 0.494497673247 +UniRef50_Q3ZXA9 Peptide deformylase 0.187679825163 0.5 0.312320174837 +UniRef50_UPI0003958315 PREDICTED 0.700729146802 0.5 -0.200729146802 +UniRef50_UPI00030811AD hypothetical protein 0.137112532942 0.5 0.362887467058 +UniRef50_F6G330 NADPH 0.245127678838 0.5 0.254872321162 +UniRef50_A0A024JQL9 Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit 0.168673774964 0.5 0.331326225036 +UniRef50_P29922 NADH quinone oxidoreductase chain 10 2.07503049288 0.500000000001 -1.57503049289 +UniRef50_X2HFC0 Electron transport complex protein RnfB 0.236840724435 0.5 0.263159275565 +UniRef50_UPI000477E177 hypothetical protein 1.51205773304 0.5 -1.01205773304 +UniRef50_O67012 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.808070061253 0.5 -0.308070061253 +UniRef50_UPI00047897DA xanthine permease 0.00789208096752 0.5 0.492107919032 +UniRef50_A6M0Q8 Periplasmic binding protein LacI transcriptional regulator 0.149046842255 0.5 0.350953157745 +UniRef50_D2JDC8 2.64116681377 0.5 -2.14116681377 +UniRef50_B8HGC5 Acetylglutamate kinase 1.42870538738 0.5 -0.928705387382 +UniRef50_UPI000360FD52 acetyl CoA carboxylase carboxyl transferase subunit alpha 0.114809711962 0.5 0.385190288038 +UniRef50_UPI0003C369DA 0.0166054451723 0.500000000001 0.483394554827 +UniRef50_D9SL48 Extracellular solute binding protein family 1 0.0752940529599 0.5 0.42470594704 +UniRef50_Q8CPL9 Lipoprotein VsaC 1.38782415021 0.5 -0.887824150208 +UniRef50_P25084 Transcriptional activator protein LasR 1.02539492682 0.5 -0.525394926816 +UniRef50_C0ZBE7 Deoxyadenosine deoxycytidine kinase 7.63923857278 0.499999999999 -7.13923857278 +UniRef50_UPI0003B3EDEC ketol acid reductoisomerase 0.260825724408 0.5 0.239174275592 +UniRef50_UPI0003655A5A hypothetical protein 1.15449313166 0.5 -0.654493131664 +UniRef50_A0A023VR15 1.23902370239 0.5 -0.739023702386 +UniRef50_A6UB50 CreA family protein 0.943564792501 0.5 -0.443564792501 +UniRef50_UPI0003FA4F40 hypothetical protein 1.06777417841 0.5 -0.567774178415 +UniRef50_E6N0G1 Cell division protein ZipA 0.0678098810592 0.5 0.432190118941 +UniRef50_Q6N8F8 Formyl coenzyme A transferase 2.5090264376 0.500000000001 -2.0090264376 +UniRef50_Q65Q81 5 nucleotidase SurE 2.32064288716 0.5 -1.82064288716 +UniRef50_G2DGI6 Proton translocating NADH quinone oxidoreductase, chain M 0.223387490905 0.5 0.276612509095 +UniRef50_UPI00046F0142 MULTISPECIES 0.309280599267 0.5 0.190719400733 +UniRef50_Q5HRH4 Putative long chain fatty acid CoA ligase VraA 1.63808998451 0.5 -1.13808998451 +UniRef50_UPI0003C1970F PREDICTED 0.213925334633 0.5 0.286074665367 +UniRef50_D2JC88 3.54724793646 0.500000000002 -3.04724793646 +UniRef50_P30131 Carbamoyltransferase HypF 3.7279999134 0.499999999999 -3.2279999134 +UniRef50_UPI00037CE6E8 hypothetical protein 0.190140439308 0.5 0.309859560692 +UniRef50_H8H0T6 ABC type Fe3+ siderophore transport system, periplasmic component 0.00205724914497 0.499999999999 0.497942750856 +UniRef50_G5QK83 Transcription repair coupling factor 0.199885699779 0.5 0.300114300221 +UniRef50_W1YIT0 1.19246650303 0.5 -0.692466503027 +UniRef50_P56908 NADH quinone oxidoreductase subunit D 2 0.189468699813 0.5 0.310531300187 +UniRef50_Q5F6M1 Cell division protein FtsQ 0.0474336982523 0.499999999999 0.452566301748 +UniRef50_X8N4L8 Putative lipoprotein 0.0532322493718 0.5 0.446767750628 +UniRef50_C6CTD5 Glycosyl transferase family 2 0.0659142386157 0.5 0.434085761385 +UniRef50_Q1IKB4 Imidazoleglycerol phosphate dehydratase 1.56315331701 0.5 -1.06315331701 +UniRef50_UPI000349BE1A hypothetical protein 0.0658647961713 0.499999999999 0.434135203829 +UniRef50_A6LZ95 0.239806279464 0.5 0.260193720536 +UniRef50_X6GZW0 0.632396468344 0.5 -0.132396468344 +UniRef50_P0AC77 3 deoxy D manno octulosonic acid transferase 2.32821896834 0.500000000002 -1.82821896834 +UniRef50_UPI0002E36CA8 hypothetical protein 0.165284127713 0.5 0.334715872287 +UniRef50_UPI00037A380E hypothetical protein 0.0296489069312 0.5 0.470351093069 +UniRef50_A0A023VMY7 Peptidase M16 1.10548751247 0.5 -0.605487512473 +UniRef50_O83806 Tyrosine tRNA ligase 1.02993020638 0.5 -0.52993020638 +UniRef50_Q5F5C4 Thiazole synthase 0.0328157941253 0.5 0.467184205875 +UniRef50_UPI0004679209 hypothetical protein 0.17165952261 0.5 0.32834047739 +UniRef50_T1D567 Thiamine biosynthesis protein ThiC 0.116457348934 0.5 0.383542651066 +UniRef50_UPI0003345F86 0.383495558038 0.5 0.116504441962 +UniRef50_A5W3L7 Short chain fatty acid transporter 0.0425219736521 0.5 0.457478026348 +UniRef50_Q59966 Cysteine synthase, plasmid 1.44383848277 0.5 -0.94383848277 +UniRef50_UPI0003C1981F 0.509621415635 0.5 -0.00962141563462 +UniRef50_E4U6C3 Extracellular solute binding protein family 1 1.35289645406 0.5 -0.852896454063 +UniRef50_UPI0002BCBF5F PREDICTED 0.0483821669257 0.5 0.451617833074 +UniRef50_U5MSM7 Metallophosphoesterase 0.141284992612 0.5 0.358715007388 +UniRef50_M4HRQ0 Radical SAM protein, TIGR01212 family 0.00566723996473 0.5 0.494332760035 +UniRef50_E0SZG6 Transcriptional regulator 0.429888984678 0.5 0.0701110153218 +UniRef50_Q0ARN8 Peptidyl tRNA hydrolase 0.3638689328 0.5 0.1361310672 +UniRef50_A4WR48 0.367167057582 0.5 0.132832942418 +UniRef50_UPI000371F47B hypothetical protein 0.855044955821 0.5 -0.355044955821 +UniRef50_I4CC90 CRISPR associated helicase, Cas3 family 0.82301387176 0.5 -0.32301387176 +UniRef50_T6MH84 Flagellar P ring protein 0.898969462641 0.5 -0.398969462641 +UniRef50_M4MLW3 0.331755426368 0.5 0.168244573632 +UniRef50_A7ZJK9 2.12073092314 0.5 -1.62073092314 +UniRef50_UPI0003B57AFE amino acid permease 3.76080043617 0.500000000001 -3.26080043617 +UniRef50_K2IJJ6 0.179922316799 0.5 0.320077683201 +UniRef50_A0A020BC98 0.306845504589 0.5 0.193154495411 +UniRef50_G7MBK8 Membrane protein insertase, YidC Oxa1 family 2.68141941585 0.499999999995 -2.18141941585 +UniRef50_P75892 Putative pyrimidine permease RutG 0.801756758472 0.5 -0.301756758472 +UniRef50_V9C5G3 Siderophore interacting protein 0.00837376092326 0.5 0.491626239077 +UniRef50_Q9X049 Glycerol kinase 1 0.0698409076781 0.5 0.430159092322 +UniRef50_UPI00037DACA5 hypothetical protein 0.570673316184 0.5 -0.0706733161835 +UniRef50_O27185 tRNA 2 O) methyltransferase 0.419911553714 0.5 0.0800884462865 +UniRef50_UPI00016B0688 hypothetical protein 1.25013651681 0.5 -0.750136516808 +UniRef50_Q01813 ATP dependent 6 phosphofructokinase, platelet type 0.200578974389 0.5 0.299421025611 +UniRef50_O27290 Inosine 5 monophosphate dehydrogenase related protein I 1.82761960652 0.5 -1.32761960652 +UniRef50_P42257 Protein PilJ 1.26346915801 0.5 -0.763469158011 +UniRef50_D3S395 Transcription initiation factor IIB 4.57951362051 0.500000000002 -4.07951362051 +UniRef50_UPI00047856BF hypothetical protein 1.72753543761 0.5 -1.22753543761 +UniRef50_W6VG46 Rhamnan synthesis F 0.346217833294 0.5 0.153782166706 +UniRef50_G9ZUA1 1.70711852974 0.5 -1.20711852974 +UniRef50_UPI0003B470E0 50S ribosomal protein L17 0.209145563666 0.5 0.290854436334 +UniRef50_L7WUL7 Lipoprotein 2.69977862912 0.500000000004 -2.19977862913 +UniRef50_D2ZVP2 0.0637061841422 0.5 0.436293815858 +UniRef50_Q6A997 Chaperone protein DnaJ 1 0.00934226949809 0.5 0.490657730502 +UniRef50_UPI0003F7FC45 hypothetical protein 1.50617154378 0.5 -1.00617154378 +UniRef50_UPI0003B6D4D5 xylose ABC transporter permease 2.71828415319 0.5 -2.21828415319 +UniRef50_M2CG06 0.0758783249399 0.5 0.42412167506 +UniRef50_Q6F9L9 0.0199267420257 0.5 0.480073257974 +UniRef50_A3DLR9 Succinyl CoA ligase [ADP forming] subunit beta 0.136840803224 0.5 0.363159196776 +UniRef50_W8YZG7 0.300612819302 0.5 0.199387180698 +UniRef50_J7IXF3 Response regulator with CheY like receiver domain and winged helix DNA binding domain 0.153133281843 0.5 0.346866718157 +UniRef50_V7WI05 1.10468208324 0.5 -0.604682083236 +UniRef50_J3MZQ8 0.0839010521179 0.5 0.416098947882 +UniRef50_G7U7Y1 0.00919253496106 0.5 0.490807465039 +UniRef50_A6LU93 Anthranilate phosphoribosyltransferase 0.749368824353 0.5 -0.249368824353 +UniRef50_W0YKM5 0.513660160058 0.5 -0.0136601600584 +UniRef50_U6AG49 0.156767172793 0.5 0.343232827207 +UniRef50_UPI0003756A18 hypothetical protein 0.107589715114 0.5 0.392410284886 +UniRef50_UPI0003B48EBA N acetyltransferase, partial 0.696156629384 0.5 -0.196156629384 +UniRef50_T0IVY5 0.317314283929 0.5 0.182685716071 +UniRef50_R4ZTG2 0.578485555498 0.5 -0.0784855554984 +UniRef50_Q42588 Serine acetyltransferase 1, chloroplastic 0.375781277456 0.5 0.124218722544 +UniRef50_G9EEV4 0.406590307691 0.5 0.093409692309 +UniRef50_F3U4V4 ATPase, ParA type 1.44760623933 0.500000000001 -0.947606239331 +UniRef50_P30958 Transcription repair coupling factor 1.22346437182 0.5 -0.723464371823 +UniRef50_A1BAH6 MOSC domain containing protein 7.69617795944 0.500000000005 -7.19617795944 +UniRef50_UPI00046767C0 HupU protein 4.96495129889 0.499999999999 -4.46495129889 +UniRef50_C5N074 Cof like hydrolase 2.68880385062 0.5 -2.18880385062 +UniRef50_N6UD17 1.21339333726 0.5 -0.713393337261 +UniRef50_A0A011NGP1 1.35796832041 0.500000000001 -0.857968320412 +UniRef50_E8X2E5 ParB like partition protein 2.43311962352 0.5 -1.93311962352 +UniRef50_Q9HZ68 Histidinol phosphate aminotransferase 2 2.10183704062 0.5 -1.60183704062 +UniRef50_A6M204 Glycoside hydrolase, family 1 0.278867582815 0.5 0.221132417185 +UniRef50_Q835V5 Ribonuclease HIII 0.0314836136898 0.5 0.46851638631 +UniRef50_H1S0G1 3.75134686938 0.500000000001 -3.25134686939 +UniRef50_D4H9Y2 Biotin biosynthesis bifunctional protein BioWF 0.016072366411 0.5 0.483927633589 +UniRef50_UPI000474CF85 hypothetical protein, partial 0.205599816634 0.5 0.294400183366 +UniRef50_P37339 L 2 hydroxyglutarate oxidase LhgO 1.18262702595 0.5 -0.68262702595 +UniRef50_B9KQG5 Flagellar hook associated protein 3.07234144434 0.5 -2.57234144434 +UniRef50_D2NAF2 Regulatory protein 2.95135258539 0.499999999995 -2.45135258538 +UniRef50_D8TNG9 0.0584463124646 0.5 0.441553687535 +UniRef50_J9P0I4 0.555413978741 0.5 -0.0554139787412 +UniRef50_P39071 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 0.00703622076572 0.500000000001 0.492963779234 +UniRef50_Q4L933 Poly gamma glutamate synthesis protein PgsA 1.2654609595 0.5 -0.765460959499 +UniRef50_H5YRD9 0.0271460057454 0.5 0.472853994255 +UniRef50_UPI00036B457B hypothetical protein 7.47464394692 0.499999999996 -6.97464394692 +UniRef50_UPI000456173C hypothetical protein PFL1_01203 1.50351846112 0.5 -1.00351846112 +UniRef50_B5F769 Bis tetraphosphatase, symmetrical 2.81807438301 0.500000000003 -2.31807438302 +UniRef50_M5R4A6 0.299919728991 0.5 0.200080271009 +UniRef50_U3SRI3 3.11083691076 0.5 -2.61083691076 +UniRef50_A0A038G9V0 Protein ImpB 0.0231128031063 0.5 0.476887196894 +UniRef50_Q6GE71 5.76009629195 0.500000000001 -5.26009629195 +UniRef50_E7TI03 0.672710090034 0.5 -0.172710090034 +UniRef50_B8HSV8 Anti sigma factor antagonist 0.00861331359614 0.5 0.491386686404 +UniRef50_B0V9D5 3 deoxy D manno 2 octulosonate transferase 0.025155284417 0.5 0.474844715583 +UniRef50_E7TI06 3.87467147492 0.500000000007 -3.37467147493 +UniRef50_C5BD16 Adenylate kinase 0.324987831821 0.5 0.175012168179 +UniRef50_Q8EUX2 Tyrosine tRNA ligase 0.514196493565 0.5 -0.0141964935653 +UniRef50_Q3YS21 Acetylglutamate kinase 1.02301170644 0.5 -0.523011706441 +UniRef50_I7AAC7 1.18141795987 0.5 -0.68141795987 +UniRef50_Q8DTN6 Probable bifunctional oligoribonuclease and PAP phosphatase NrnA 0.380684422195 0.5 0.119315577805 +UniRef50_UPI0003B4C1BA ATPase AAA 0.950018156559 0.5 -0.450018156559 +UniRef50_Q8XU11 Potassium transporting ATPase B chain 0.300596191351 0.5 0.199403808649 +UniRef50_A3PPK7 Amidohydrolase 2 7.12415251907 0.5 -6.62415251906 +UniRef50_U3AFY8 2.26230578878 0.5 -1.76230578878 +UniRef50_B2A8E3 Argininosuccinate lyase 0.412120903982 0.5 0.0878790960182 +UniRef50_D8JIY9 AraC type DNA binding domain containing protein 0.0383122720945 0.5 0.461687727905 +UniRef50_UPI0003783041 hypothetical protein 0.0805101239144 0.5 0.419489876086 +UniRef50_UPI000471FB1B sodium 1.9140688414 0.5 -1.4140688414 +UniRef50_UPI00040DE95E sodium 0.261039419763 0.5 0.238960580237 +UniRef50_A4IM35 Dihydroorotate dehydrogenase B ), catalytic subunit 0.0201644498093 0.5 0.479835550191 +UniRef50_P77269 ABC transporter periplasmic binding protein YphF 0.605638192621 0.5 -0.105638192621 +UniRef50_UPI00036C797A hypothetical protein 0.946431010369 0.5 -0.446431010369 +UniRef50_A6LWR6 MgtC SapB transporter 0.0829663709691 0.5 0.417033629031 +UniRef50_D3DZA0 Amidohydrolase 3.767593891 0.500000000001 -3.267593891 +UniRef50_B4RE78 0.872802885232 0.5 -0.372802885232 +UniRef50_A4WQR7 1.25017319378 0.5 -0.750173193777 +UniRef50_A6LSY8 Glutamate 1 semialdehyde 2,1 aminomutase 0.232611435143 0.5 0.267388564857 +UniRef50_S5CRD4 Integrase 0.00776369743477 0.5 0.492236302565 +UniRef50_Q8HXP0 Superoxide dismutase [Mn], mitochondrial 0.0529894134218 0.5 0.447010586578 +UniRef50_W1S795 0.858685856062 0.5 -0.358685856062 +UniRef50_Q080M3 0.326692525825 0.5 0.173307474175 +UniRef50_UPI0003D0B013 PREDICTED 1.09580865981 0.5 -0.595808659813 +UniRef50_Q7DDB6 Probable TonB dependent receptor NMB1497 0.0278171762466 0.5 0.472182823753 +UniRef50_P64618 0.112622474773 0.500000000001 0.387377525227 +UniRef50_R5CFG0 0.408499924458 0.5 0.0915000755416 +UniRef50_UPI0003778CA4 hypothetical protein 0.876806730196 0.5 -0.376806730196 +UniRef50_UPI000368AAAC peptidase, partial 0.335789915236 0.5 0.164210084764 +UniRef50_Q5Z642 HGWP repeat containing protein like 0.0415904310277 0.500000000001 0.458409568972 +UniRef50_Q7MF00 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.334959595705 0.5 0.165040404295 +UniRef50_UPI0002E5A819 hypothetical protein 0.143442752225 0.5 0.356557247776 +UniRef50_A0QVM6 0.732202080472 0.5 -0.232202080472 +UniRef50_O80952 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1, chloroplastic 0.115433137116 0.5 0.384566862883 +UniRef50_I7G695 0.234724571989 0.5 0.265275428011 +UniRef50_Q9RYR4 0.0617528284163 0.5 0.438247171584 +UniRef50_UPI0003751DCE hypothetical protein 0.129366594777 0.5 0.370633405223 +UniRef50_Q3MEA8 GMP synthase [glutamine hydrolyzing] 0.386982195153 0.5 0.113017804847 +UniRef50_D9UIH8 Predicted protein 0.0713120005852 0.5 0.428687999415 +UniRef50_P76204 Putative anti FlhCFlhD(4) factor YdiV 1.46923198365 0.5 -0.969231983653 +UniRef50_UPI00036659B6 hypothetical protein 0.313808595646 0.5 0.186191404354 +UniRef50_R5BWI2 0.0870504292573 0.5 0.412949570743 +UniRef50_UPI000468EFA0 hypothetical protein 0.705036691347 0.5 -0.205036691347 +UniRef50_UPI00035D659D hypothetical protein 0.246255885885 0.5 0.253744114115 +UniRef50_UPI000455EDC7 ribosomal protein L2 0.0969621650582 0.5 0.403037834942 +UniRef50_UPI0003045834 hypothetical protein 0.0469649557444 0.5 0.453035044255 +UniRef50_Q88TV5 Tyrosine tRNA ligase 0.774814046834 0.5 -0.274814046834 +UniRef50_P75764 4.71248474587 0.499999999997 -4.21248474587 +UniRef50_P75769 2.84814153228 0.499999999996 -2.34814153228 +UniRef50_Q6G6F1 D lactate dehydrogenase 1.81846180298 0.499999999998 -1.31846180298 +UniRef50_E6S2D5 0.0273317741005 0.5 0.472668225899 +UniRef50_A5UCW1 UPF0042 nucleotide binding protein CGSHiEE_06315 1.04131061243 0.5 -0.541310612429 +UniRef50_F2I802 Response regulator receiver domain protein 1.33862152051 0.499999999998 -0.838621520504 +UniRef50_Q2NIC5 ORC1 type DNA replication protein 2.87771103048 0.499999999998 -2.37771103048 +UniRef50_UPI00026291DF excinuclease ABC subunit A 0.200788212413 0.5 0.299211787587 +UniRef50_Q16CW9 Lipopolysaccharide 1,3 galactosyltransferase, putative 2.9798066945 0.5 -2.4798066945 +UniRef50_U3T279 Amidohydrolase 0.0303086924582 0.5 0.469691307542 +UniRef50_F2E8D4 Predicted protein 0.4882286869 0.5 0.0117713130998 +UniRef50_B0TC61 50S ribosomal protein L22 7.74731290031 0.499999999995 -7.24731290031 +UniRef50_Q9K0U7 Putative phospholipase A1 0.0189423806007 0.5 0.4810576194 +UniRef50_Q13DH5 Transcriptional regulator, LysR family 1.99967020794 0.5 -1.49967020794 +UniRef50_C5BQ83 30S ribosomal protein S13 0.665408889615 0.5 -0.165408889615 +UniRef50_S9THQ0 0.373236503017 0.5 0.126763496983 +UniRef50_A6QF95 8.23816805871 0.499999999997 -7.73816805871 +UniRef50_P64246 Probable glutamine synthetase 2 0.0257791188923 0.5 0.474220881108 +UniRef50_A5VI99 Cysteine tRNA ligase 0.964234095183 0.5 -0.464234095183 +UniRef50_G8PIV9 Universal stress protein 1.11221630813 0.500000000001 -0.61221630813 +UniRef50_G7MBZ4 PTS system transcriptional activator 0.230278819333 0.5 0.269721180667 +UniRef50_B5F752 Crotonobetainyl CoA dehydrogenase 2.39265471414 0.5 -1.89265471414 +UniRef50_X5EJB2 DNA polymerase III, delta subunit 3.87419023319 0.499999999999 -3.37419023319 +UniRef50_UPI000467516D hypothetical protein 0.0283230338927 0.5 0.471676966107 +UniRef50_Q8E2G3 Phosphoribosylformylglycinamidine synthase, putative 1.19867918308 0.5 -0.698679183085 +UniRef50_I4DYY6 3 ketoacyl reductase 0.0141931554484 0.5 0.485806844552 +UniRef50_J9P2V2 1.01072132986 0.5 -0.510721329856 +UniRef50_I1AVP4 1.77866228912 0.5 -1.27866228912 +UniRef50_P27747 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 0.917013499439 0.5 -0.417013499439 +UniRef50_UPI0003B5A625 TetR family transcriptional regulator 3.15900774889 0.5 -2.65900774889 +UniRef50_Q9I4U2 Acyl homoserine lactone acylase QuiP 4.02806663383 0.499999999999 -3.52806663383 +UniRef50_UPI000466F3A3 hypothetical protein 2.09389543396 0.5 -1.59389543396 +UniRef50_UPI0002FD307E hypothetical protein 0.668700426751 0.5 -0.168700426751 +UniRef50_M1YUE3 0.332917893903 0.5 0.167082106097 +UniRef50_W4TKZ4 0.0550338636865 0.5 0.444966136313 +UniRef50_Q9I602 0.855931281854 0.5 -0.355931281854 +UniRef50_UPI00035F31F7 hypothetical protein 0.442190972181 0.5 0.0578090278193 +UniRef50_V8MVT4 Transposase 0.43147100728 0.5 0.0685289927202 +UniRef50_UPI000361F9D7 hypothetical protein 0.118470237148 0.5 0.381529762851 +UniRef50_A9VTL7 Nucleoid occlusion protein 1.88463434059 0.5 -1.38463434059 +UniRef50_I6U3X8 1.16752777202 0.5 -0.667527772019 +UniRef50_B9KTM2 Membrane fusion protein, HlyD family 1.37722423469 0.5 -0.877224234693 +UniRef50_A8ARB7 0.140411802315 0.5 0.359588197685 +UniRef50_B4U4S6 Primosomal protein DnaI 0.47820783572 0.5 0.0217921642797 +UniRef50_D8JGQ3 Acetyltransferase family protein 0.0219173822886 0.5 0.478082617711 +UniRef50_UPI000374923B hypothetical protein, partial 0.0011057034687 0.499999999999 0.498894296532 +UniRef50_R7B3T9 Molybdate ABC transporter permease protein 0.566709502765 0.5 -0.0667095027645 +UniRef50_UPI0003608764 hypothetical protein 0.170866283112 0.5 0.329133716888 +UniRef50_Q5HMA3 Thymidine kinase 10.6106130835 0.500000000009 -10.1106130835 +UniRef50_UPI00036390EE hypothetical protein 2.74201781926 0.5 -2.24201781926 +UniRef50_Q0ARE0 0.0849439471345 0.5 0.415056052865 +UniRef50_A6LV67 0.0983560520782 0.5 0.401643947922 +UniRef50_Q4T2R9 Chromosome undetermined SCAF10201, whole genome shotgun sequence. 1.46556236638 0.500000000001 -0.965562366384 +UniRef50_UPI00036EEDB2 30S ribosomal protein S4, partial 0.00164905433659 0.5 0.498350945664 +UniRef50_UPI0003A27699 glutaminyl tRNA synthetase 0.683029510354 0.5 -0.183029510354 +UniRef50_UPI0003C15EA6 1.79671822457 0.5 -1.29671822457 +UniRef50_Q2NSV5 tRNA 2 thiocytidine biosynthesis protein TtcA 0.0144457158236 0.5 0.485554284177 +UniRef50_UPI00036FCB79 hypothetical protein 0.333054184031 0.5 0.166945815969 +UniRef50_UPI00036DB284 hypothetical protein, partial 0.00508566690168 0.5 0.494914333099 +UniRef50_UPI0003658156 hypothetical protein, partial 0.333151845023 0.5 0.166848154977 +UniRef50_A6WFN3 Diguanylate cyclase 0.0103956957737 0.5 0.489604304227 +UniRef50_UPI00037A43CA hypothetical protein 0.119590282917 0.5 0.380409717083 +UniRef50_UPI0004443E9D PREDICTED 0.492358846343 0.5 0.00764115365711 +UniRef50_A6LR97 Acyl ACP thioesterase 0.116202774943 0.5 0.383797225057 +UniRef50_UPI00047B48B0 GNAT family acetyltransferase 2.08045899809 0.5 -1.58045899809 +UniRef50_Q02198 Morphine 6 dehydrogenase 0.137137724834 0.499999999999 0.362862275167 +UniRef50_P00811 Beta lactamase 1.36393456385 0.499999999999 -0.86393456385 +UniRef50_C0H3V2 Mannitol specific phosphotransferase enzyme IIA component 19.6797913596 0.499999999996 -19.1797913596 +UniRef50_Q0A892 RNA polymerase binding transcription factor DksA 0.832343127311 0.5 -0.332343127311 +UniRef50_H8FSH1 2.65192121231 0.5 -2.15192121231 +UniRef50_UPI000174692C spermidine putrescine ABC transporter ATP binding protein 0.482662242974 0.5 0.0173377570261 +UniRef50_UPI0002557C62 hypothetical protein 0.466301965478 0.5 0.0336980345215 +UniRef50_UPI00029A3335 helicase 0.182434917056 0.5 0.317565082944 +UniRef50_A6Q747 Alanine tRNA ligase 0.00681818393583 0.5 0.493181816064 +UniRef50_Q75W16 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 4.02611609562 0.499999999999 -3.52611609562 +UniRef50_A9CR53 0.902220147889 0.5 -0.402220147889 +UniRef50_Q9ZJE9 DNA polymerase I 0.0109564706186 0.5 0.489043529381 +UniRef50_F5LZL6 CBS domain containing protein 2.94688117478 0.500000000003 -2.44688117478 +UniRef50_P65168 Inosine 5 monophosphate dehydrogenase 0.237899843591 0.5 0.262100156409 +UniRef50_P0ABK4 Cytochrome bd I ubiquinol oxidase subunit 2 0.0726919702885 0.5 0.427308029711 +UniRef50_P0C1L0 Transposase for insertion sequence like element IS431mec 1.36307144244 0.5 -0.863071442437 +UniRef50_D5AUS5 2.15217372407 0.5 -1.65217372407 +UniRef50_A5EY33 Recombination protein RecR 0.0256384922468 0.5 0.474361507753 +UniRef50_I0EKM3 DNA transfer protein ComE 0.0454563094347 0.5 0.454543690565 +UniRef50_E3YSL3 Pts system fructose specific eiibc component 0.0482497471141 0.5 0.451750252886 +UniRef50_D4H949 YD repeat protein 0.062764152211 0.5 0.437235847789 +UniRef50_K9HQP8 Phosphate binding protein 0.270431696977 0.5 0.229568303023 +UniRef50_UPI0003094A6C hypothetical protein 0.673709524399 0.5 -0.173709524399 +UniRef50_A7GKB6 Nitrite reductase H), small subunit 2.61479437878 0.499999999998 -2.11479437878 +UniRef50_P54122 Ribonuclease J 0.11634407458 0.5 0.38365592542 +UniRef50_P47269 Fructose bisphosphate aldolase 0.260040149024 0.5 0.239959850976 +UniRef50_P0ADL0 0.17615651317 0.5 0.32384348683 +UniRef50_UPI000344BE75 hypothetical protein 1.96417823981 0.500000000002 -1.46417823981 +UniRef50_UPI0003C18F39 PREDICTED 0.575757140391 0.5 -0.0757571403912 +UniRef50_C1A7X4 Acyl CoA dehydrogenase 0.00541514668816 0.5 0.494584853312 +UniRef50_P0A2T6 cAMP activated global transcriptional regulator CRP 1.8971369331 0.500000000001 -1.3971369331 +UniRef50_S9TKQ0 0.144233165693 0.5 0.355766834307 +UniRef50_UPI0003B40961 glutathione ABC transporter permease 0.758137392825 0.5 -0.258137392825 +UniRef50_UPI0004770C99 hypothetical protein 0.0190685117918 0.5 0.480931488208 +UniRef50_H6RLH1 ComEC Rec2 related protein 0.0355611654425 0.5 0.464438834558 +UniRef50_UPI00047780B8 acyl CoA synthetase 0.614166271184 0.5 -0.114166271184 +UniRef50_I1AQX6 0.209383701608 0.5 0.290616298392 +UniRef50_A3PFZ4 Peptidase S16, lon domain protein 3.17751360681 0.5 -2.67751360681 +UniRef50_J8RSG4 0.131135833961 0.5 0.368864166039 +UniRef50_Q0B6I4 Lipoprotein 1.48103326674 0.500000000001 -0.981033266742 +UniRef50_B8ZUG9 Threonine tRNA ligase 0.00735215916763 0.5 0.492647840833 +UniRef50_L1K7L5 0.195008269989 0.5 0.304991730011 +UniRef50_Y4SN89 1.39283024206 0.5 -0.892830242064 +UniRef50_Q8YR06 Phosphoribosylformylglycinamidine synthase 2 2.19937450283 0.500000000001 -1.69937450283 +UniRef50_M1MJ06 Diguanylate cyclase domain containing protein 0.179692856013 0.5 0.320307143987 +UniRef50_Q6CGG3 FK506 binding protein 2 0.392875174868 0.5 0.107124825132 +UniRef50_C5VT76 LicC protein 0.0420732588896 0.5 0.457926741111 +UniRef50_A6M234 Sigma 54 factor, interaction domain containing protein 0.233932579475 0.5 0.266067420525 +UniRef50_E1V429 Formyltetrahydrofolate deformylase 2.13199664519 0.5 -1.63199664519 +UniRef50_Q9I452 Probable 3 mercaptopyruvate sulfurtransferase 0.200662869342 0.5 0.299337130658 +UniRef50_UPI000362E0E9 Fis family transcriptional regulator 1.06722006026 0.499999999999 -0.567220060258 +UniRef50_Q8DXP9 Transcriptional antiterminator, BglG family 2.5365368203 0.5 -2.0365368203 +UniRef50_U5VYZ3 Diguanylate cyclase 0.0159037310018 0.5 0.484096268998 +UniRef50_Q8YC76 DNA polymerase IV 4.97904935589 0.499999999999 -4.47904935589 +UniRef50_Q03025 Alkaline protease secretion protein AprE 0.571528990214 0.5 -0.0715289902137 +UniRef50_V8AQW0 4.07261132419 0.500000000001 -3.57261132419 +UniRef50_UPI0003A20063 DNA 3 methyladenine glycosylase 0.113725636368 0.5 0.386274363632 +UniRef50_F5M1J2 Phage related integrase 1.00684237772 0.5 -0.50684237772 +UniRef50_UPI0003B727F3 membrane protein 1.76885623553 0.5 -1.26885623553 +UniRef50_C1D040 0.00040740667824 0.5 0.499592593322 +UniRef50_P28631 DNA polymerase III subunit delta 1.0708867087 0.5 -0.570886708703 +UniRef50_Q8FFR0 0.161168587812 0.5 0.338831412188 +UniRef50_O34788 butanediol dehydrogenase 0.134200993157 0.5 0.365799006843 +UniRef50_C0PLL4 0.311199927241 0.5 0.188800072759 +UniRef50_UPI0004077D5F prephenate dehydratase 0.0155107803684 0.5 0.484489219632 +UniRef50_A7X6I0 Phytoene desaturase 0.225981147154 0.5 0.274018852846 +UniRef50_Q58065 Putative NADH oxidase 2.03048740974 0.5 -1.53048740974 +UniRef50_Q8DMA8 Polyphosphate kinase 0.010602698723 0.5 0.489397301277 +UniRef50_Q932Q4 Orf513 0.00803190795034 0.500000000001 0.491968092049 +UniRef50_B0V6C9 Extracellular serine proteinase 0.0293995495207 0.5 0.470600450479 +UniRef50_UPI000401E192 hypothetical protein 0.223079732806 0.5 0.276920267194 +UniRef50_E8MRI6 Two component response regulator 0.489859814529 0.5 0.0101401854705 +UniRef50_Q5HE75 Fructose bisphosphate aldolase 2.05615890446 0.5 -1.55615890446 +UniRef50_A5UP16 Conserved hypothetical membrane protein Msm_1739 5.68370425945 0.500000000004 -5.18370425945 +UniRef50_F0VS21 Rhamnosyltransferase 10.0405710843 0.5 -9.54057108425 +UniRef50_UPI00046543C3 hypothetical protein 0.294026537621 0.5 0.205973462379 +UniRef50_D5SQR1 Glycogen debranching enzyme GlgX 2.12560931286 0.5 -1.62560931286 +UniRef50_A7ZML4 N succinylglutamate 5 semialdehyde dehydrogenase 1.25507482937 0.5 -0.75507482937 +UniRef50_B9KN09 1.66989067976 0.5 -1.16989067976 +UniRef50_Q3AEQ2 3 isopropylmalate dehydrogenase 0.159579862334 0.5 0.340420137666 +UniRef50_E2XRP0 DNA binding response regulator, LuxR family 1.74231303289 0.5 -1.24231303289 +UniRef50_B9KN06 2.22741663452 0.499999999999 -1.72741663452 +UniRef50_B9KN07 2.31742088076 0.499999999997 -1.81742088075 +UniRef50_V0AP01 1.39379000395 0.5 -0.893790003953 +UniRef50_UPI00035C9482 hypothetical protein 0.0266603318336 0.5 0.473339668167 +UniRef50_E8U6V1 Aldose 1 epimerase 0.00158414451043 0.5 0.49841585549 +UniRef50_UPI00031CD3FF hypothetical protein 0.0525521825013 0.5 0.447447817499 +UniRef50_Q5HKI6 42.1657349638 0.499999999981 -41.6657349638 +UniRef50_Q09751 Lactoylglutathione lyase 0.448773172119 0.5 0.0512268278814 +UniRef50_UPI0003761A55 hypothetical protein 0.00221423908211 0.5 0.497785760918 +UniRef50_UPI0004762DA5 hypothetical protein 0.184501992985 0.5 0.315498007015 +UniRef50_UPI000467CD77 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.300883164913 0.5 0.199116835087 +UniRef50_UPI0003775761 hypothetical protein 0.44396691709 0.5 0.0560330829098 +UniRef50_UPI0003821846 hypothetical protein 0.504706464391 0.5 -0.00470646439128 +UniRef50_I0EQ26 GDP L fucose synthase 0.0710373945333 0.5 0.428962605466 +UniRef50_B7V4A2 Heme d1 biosynthesis protein NirF 5.91844041806 0.499999999992 -5.41844041805 +UniRef50_G8I0W8 Integrase 5.83768694151 0.499999999997 -5.33768694151 +UniRef50_Q7DDS7 Septum site determining protein MinD 0.283869493017 0.5 0.216130506983 +UniRef50_M9VKM1 RecF RecN SMC N terminal domain protein 0.0144419648481 0.5 0.485558035152 +UniRef50_Q16DR4 PucC family protein, putative 0.0868793362503 0.5 0.41312066375 +UniRef50_Q57865 4 hydroxy tetrahydrodipicolinate reductase 4.06132313536 0.500000000001 -3.56132313536 +UniRef50_D3CU37 0.237323317799 0.5 0.262676682202 +UniRef50_K2FAW5 0.186183970679 0.5 0.313816029321 +UniRef50_Q5HPT2 Ribosome recycling factor 2.05929558283 0.499999999999 -1.55929558283 +UniRef50_C5N0X8 Na Pi cotransporter II like protein 1.36339059679 0.5 -0.863390596794 +UniRef50_Q97TN5 Divalent metal cation transporter MntH 0.190991692624 0.5 0.309008307376 +UniRef50_UPI00047D3BA3 hypothetical protein 0.65494458077 0.5 -0.15494458077 +UniRef50_U5MKF5 UPF0750 membrane protein YpjC 0.0749718951249 0.5 0.425028104875 +UniRef50_Q1QGJ1 Transposase IS66 1.85086554375 0.5 -1.35086554375 +UniRef50_A0A010ZU52 0.400023911541 0.5 0.0999760884587 +UniRef50_UPI00036DBF3D hypothetical protein, partial 0.901211726607 0.5 -0.401211726607 +UniRef50_P0AGM3 UPF0126 inner membrane protein YicG 0.17247383172 0.5 0.32752616828 +UniRef50_P04040 Catalase 0.176978937519 0.5 0.323021062481 +UniRef50_E8WXY4 0.489303008176 0.5 0.0106969918237 +UniRef50_P0AA94 Sensor histidine kinase YpdA 3.12832291972 0.500000000003 -2.62832291972 +UniRef50_B8FWK7 Nucleotide sugar dehydrogenase 0.157551515324 0.5 0.342448484676 +UniRef50_A4W0U2 Transcriptional regulator of sugar metabolism 0.107896508846 0.5 0.392103491154 +UniRef50_Q3IV07 Asparagine synthetase 2.06117720197 0.499999999999 -1.56117720197 +UniRef50_D8JH55 Transcriptional regulatory protein, C terminal family protein 0.0145726866843 0.5 0.485427313316 +UniRef50_Q8E0Z8 Prophage LambdaSa1, reverse transcriptase maturase family protein 0.491663375576 0.5 0.00833662442358 +UniRef50_F0XFM1 Endoribonuclease l psp 0.904575600785 0.5 -0.404575600785 +UniRef50_Q9FD71 Hydroxymethylglutaryl CoA synthase 1.15793308239 0.5 -0.657933082391 +UniRef50_P75826 1.14246160683 0.5 -0.642461606833 +UniRef50_E6YJH1 1.2827883045 0.499999999999 -0.782788304504 +UniRef50_UPI0002193D96 glutamate racemase Nucleoside triphosphatase 0.541272035542 0.5 -0.0412720355423 +UniRef50_R6I4T0 Short chain dehydrogenase reductase SDR 0.801080683543 0.5 -0.301080683543 +UniRef50_G5IIY2 0.134173606321 0.5 0.365826393679 +UniRef50_UPI0004154A70 hydroperoxidase 0.322792937373 0.5 0.177207062627 +UniRef50_UPI0003EF5A08 hypothetical protein 0.388283818756 0.5 0.111716181244 +UniRef50_Q46896 CRISPR associated endonuclease Cas1 1.66047191685 0.499999999999 -1.16047191685 +UniRef50_X8FKW3 3.39631682591 0.5 -2.89631682591 +UniRef50_M4WYD7 5.29480518976 0.499999999999 -4.79480518976 +UniRef50_Q8CPQ8 Nucleotidase 1.00736797264 0.5 -0.507367972644 +UniRef50_UPI00047311ED glutaredoxin, partial 1.2688958986 0.5 -0.768895898597 +UniRef50_F4AQK9 1.1709377925 0.5 -0.670937792497 +UniRef50_A0NSX2 Immunogenic protein 2.72306057859 0.5 -2.22306057859 +UniRef50_M6ZD49 Winged helix turn helix 0.00711097503681 0.5 0.492889024964 +UniRef50_UPI000429EA82 hypothetical protein 0.0989239108077 0.5 0.401076089192 +UniRef50_G5FKQ3 0.924907091998 0.5 -0.424907091998 +UniRef50_T0T8E0 Alanine tRNA ligase 1.88849795597 0.5 -1.38849795597 +UniRef50_S4XCV1 Surface protein G2 1.64009743343 0.5 -1.14009743343 +UniRef50_Q5HKF2 Aminotransferase, class II 1.67185149059 0.5 -1.17185149059 +UniRef50_E0S0H5 Phosphoglucomutase phosphomannomutase family protein 0.165095665779 0.500000000001 0.33490433422 +UniRef50_M4QZL8 0.00524944303865 0.5 0.494750556961 +UniRef50_B7N6B0 Peptidase B 4.53852784467 0.5 -4.03852784467 +UniRef50_M4QZL0 0.0268183415901 0.5 0.47318165841 +UniRef50_C1CU33 Transketolase, C subunit 0.177061499321 0.5 0.322938500679 +UniRef50_U5MMW0 Sporulation protein YunB 2.46275313094 0.499999999999 -1.96275313094 +UniRef50_Q74AX0 Thymidylate kinase 0.149518807455 0.5 0.350481192544 +UniRef50_Q166C2 Acyl carrier protein 0.0357485762963 0.5 0.464251423703 +UniRef50_UPI00035FDAE3 hypothetical protein 0.972210401933 0.5 -0.472210401933 +UniRef50_UPI000370852C hypothetical protein, partial 0.175646303688 0.5 0.324353696312 +UniRef50_L8E5H5 Phosphoribosylformylglycinamidine synthase 1 0.490624968511 0.5 0.00937503148905 +UniRef50_E4NK07 0.00661046343692 0.5 0.493389536563 +UniRef50_UPI0002485CB9 membrane protein 0.173004918642 0.5 0.326995081358 +UniRef50_T2AJH5 0.5053250962 0.5 -0.00532509620008 +UniRef50_Q0FVE7 Flagellar protein FlgJ, putative 1.02004493488 0.5 -0.520044934883 +UniRef50_M9VIA8 DNA topoisomerase IV subunit B 0.0337686826308 0.5 0.466231317369 +UniRef50_P0A2T8 Fumarate and nitrate reduction regulatory protein 1.27288166682 0.5 -0.772881666818 +UniRef50_UPI0003AA4737 LuxR family transcriptional regulator 0.333459022581 0.5 0.166540977419 +UniRef50_UPI000346AB98 hypothetical protein 0.818074818113 0.5 -0.318074818113 +UniRef50_F4A3Y5 Peptidase, M24 family protein 0.095097471716 0.5 0.404902528284 +UniRef50_Q9K4V0 Nitric oxide reductase transcription regulator NorR1 0.101852648676 0.5 0.398147351324 +UniRef50_M4R0H3 ABC transporter, ATP binding domain protein 0.00822524651588 0.5 0.491774753484 +UniRef50_Y1B2H8 0.783863897166 0.5 -0.283863897166 +UniRef50_Q6A9Q2 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.00927152623482 0.5 0.490728473765 +UniRef50_UPI000473DF01 hypothetical protein 0.488330273044 0.5 0.0116697269561 +UniRef50_UPI00037F561A hypothetical protein, partial 0.394046251104 0.5 0.105953748896 +UniRef50_Q4UY06 Sulfate adenylyltransferase subunit 2 0.127992614404 0.5 0.372007385596 +UniRef50_W1YEB9 1.12368591756 0.5 -0.623685917556 +UniRef50_E8SNW0 Macrophage infectivity potentiator related protein 0.0631967323846 0.5 0.436803267615 +UniRef50_UPI0002E6D910 hypothetical protein 0.0290463085044 0.5 0.470953691495 +UniRef50_P33570 Transketolase 2 1.26801555698 0.5 -0.768015556981 +UniRef50_B5H7E3 ABC transporter ATP binding protein 1.53612747057 0.5 -1.03612747057 +UniRef50_F5X6Q7 ABC transport system permease protein 1.89285028541 0.5 -1.39285028541 +UniRef50_Q7NMQ5 Nucleoside diphosphate kinase 0.250518983754 0.5 0.249481016246 +UniRef50_J8VUX1 2.75405232455 0.499999999997 -2.25405232455 +UniRef50_R7I3D6 2.50723986728 0.5 -2.00723986728 +UniRef50_D2J7E4 Replication initiator protein 3.60689876137 0.500000000002 -3.10689876137 +UniRef50_U3QYE8 Membrane protein 1.87605839781 0.5 -1.37605839781 +UniRef50_D3FRH5 0.332071510943 0.5 0.167928489057 +UniRef50_UPI00041C9E3C hypothetical protein 0.0507320841514 0.5 0.449267915848 +UniRef50_Q6A8N5 Prolipoprotein diacylglyceryl transferase 0.0354545766004 0.5 0.464545423399 +UniRef50_W8UXR7 9.80960810493 0.499999999993 -9.30960810493 +UniRef50_P58664 3.72315850138 0.500000000001 -3.22315850138 +UniRef50_S5YW82 0.362222168189 0.5 0.137777831811 +UniRef50_Q6AAL4 S ribosylhomocysteine lyase 0.0659181839268 0.499999999999 0.434081816074 +UniRef50_UPI0004665EA7 fusaric acid resistance protein 0.227213038611 0.5 0.272786961389 +UniRef50_P0AC90 GDP mannose 4,6 dehydratase 0.626640781636 0.5 -0.126640781636 +UniRef50_E3JA76 6.90722926377 0.500000000001 -6.40722926377 +UniRef50_R0S9J4 0.00995933102274 0.5 0.490040668977 +UniRef50_A1B2V6 0.779344240763 0.5 -0.279344240763 +UniRef50_A5UKK8 Adenine cytosine DNA methyltransferase 5.87499161419 0.5 -5.37499161419 +UniRef50_S8F0C2 0.0154415228895 0.500000000001 0.48455847711 +UniRef50_W4RSX5 NAD synthetase 0.104731763987 0.5 0.395268236013 +UniRef50_UPI000473309C hypothetical protein, partial 2.91495609634 0.499999999998 -2.41495609634 +UniRef50_UPI000382DF5B hypothetical protein 0.315668925616 0.5 0.184331074384 +UniRef50_A6LX54 Response regulator receiver protein 2.23606008378 0.5 -1.73606008378 +UniRef50_UPI0002F1891F hypothetical protein 0.013856375683 0.5 0.486143624317 +UniRef50_UPI00036F5244 hypothetical protein 1.34684254632 0.5 -0.846842546321 +UniRef50_F4DLN9 0.459799004036 0.5 0.0402009959644 +UniRef50_P31040 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 0.227668959101 0.5 0.272331040899 +UniRef50_A4WZY2 0.70706215584 0.5 -0.20706215584 +UniRef50_UPI0003796C9F hypothetical protein, partial 0.0932718021153 0.5 0.406728197885 +UniRef50_UPI000363A9F6 alcohol dehydrogenase 0.0130440907738 0.5 0.486955909226 +UniRef50_UPI00047212B5 spermidine putrescine ABC transporter substrate binding protein 0.0643473814835 0.5 0.435652618517 +UniRef50_O32129 Lipoyl synthase 0.177433226786 0.5 0.322566773214 +UniRef50_UPI0003EC0C27 PREDICTED 1.65104918784 0.5 -1.15104918784 +UniRef50_P0A9T2 D 3 phosphoglycerate dehydrogenase 1.32472042904 0.5 -0.824720429036 +UniRef50_UPI00021928D0 3 keto L gulonate 6 phosphate decarboxylase, partial 0.258754697365 0.5 0.241245302635 +UniRef50_UPI0004785282 ABC transporter ATP binding protein 2.66526795551 0.499999999999 -2.16526795551 +UniRef50_UPI00016C377C excinuclease ABC subunit A 0.170600228723 0.5 0.329399771277 +UniRef50_G9G2D7 ABC transporter related protein 0.34735793938 0.5 0.15264206062 +UniRef50_UPI0003794563 hypothetical protein, partial 0.163034847995 0.5 0.336965152004 +UniRef50_P55357 Mannose 1 phosphate guanylyltransferase 2.05250888421 0.500000000001 -1.55250888421 +UniRef50_UPI0003B39652 ribosomal large subunit pseudouridine synthase A 2.21777064254 0.5 -1.71777064254 +UniRef50_F0KHF7 0.0234048400481 0.5 0.476595159952 +UniRef50_D3X7Y2 Glutathione peroxidase 0.735838301695 0.5 -0.235838301695 +UniRef50_A6M2T7 Abortive infection protein 0.118190851379 0.500000000001 0.38180914862 +UniRef50_W9D4Z0 0.950752906211 0.5 -0.450752906211 +UniRef50_K0HMC2 0.0229054986244 0.5 0.477094501376 +UniRef50_UPI0003C10DF6 0.183321021529 0.5 0.316678978471 +UniRef50_N3NX82 0.838822383203 0.5 -0.338822383203 +UniRef50_U5Y027 Xanthine uracil vitamin C permease 0.0174349651186 0.5 0.482565034881 +UniRef50_Q59931 NADP dependent glyceraldehyde 3 phosphate dehydrogenase 0.376031000141 0.5 0.123968999859 +UniRef50_Q187U6 tRNA 2 methylthio N dimethylallyladenosine synthase 0.0377372564847 0.5 0.462262743516 +UniRef50_J9S761 0.262550698942 0.5 0.237449301058 +UniRef50_UPI000469984F hypothetical protein 0.337139524816 0.5 0.162860475184 +UniRef50_UPI00046F91FB inner membrane translocator 0.871748003944 0.5 -0.371748003944 +UniRef50_A0A011MQD2 DNA primase 0.20711362271 0.5 0.29288637729 +UniRef50_K6VMV8 0.0138191872634 0.5 0.486180812736 +UniRef50_P37981 Inorganic pyrophosphatase 49.507122349 0.499999999986 -49.007122349 +UniRef50_L1K7R1 Pirin domain protein 0.159579244357 0.5 0.340420755643 +UniRef50_Q57N15 Putative mannosyl 3 phosphoglycerate phosphatase 0.712762273796 0.5 -0.212762273796 +UniRef50_P47924 Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic 0.0811779645937 0.5 0.418822035406 +UniRef50_Q6GGK7 Sensor protein SrrB 2.93595964072 0.500000000003 -2.43595964072 +UniRef50_UPI000289481B 50S ribosomal protein L22 0.0332887186598 0.5 0.46671128134 +UniRef50_UPI000380885A hypothetical protein, partial 0.390349204454 0.5 0.109650795546 +UniRef50_UPI0003B51BB3 diguanylate cyclase 0.382504896809 0.5 0.117495103191 +UniRef50_F0KFG3 Modulator of drug activity 0.0414019037908 0.5 0.458598096209 +UniRef50_Q49Z27 0.90782260461 0.5 -0.40782260461 +UniRef50_A3PP65 Transcriptional regulator, LysR family 3.82708466325 0.499999999999 -3.32708466325 +UniRef50_R6FTR0 Sporulation integral membrane protein YlbJ 0.279387331358 0.5 0.220612668642 +UniRef50_A4WYU2 2.53338975053 0.499999999998 -2.03338975052 +UniRef50_Q3IY96 PAS sensor Signal Tranduction Histidine Kinase 1.79512851336 0.5 -1.29512851336 +UniRef50_A4WYU6 5.32918748016 0.500000000007 -4.82918748017 +UniRef50_Q8XE45 Malate 0.394710839178 0.5 0.105289160822 +UniRef50_UPI00047A4FE0 hypothetical protein 0.187963472173 0.5 0.312036527827 +UniRef50_A0A028V4R5 0.813063235472 0.5 -0.313063235472 +UniRef50_UPI000472245F hypothetical protein 0.588202671809 0.5 -0.0882026718086 +UniRef50_Q6D4A8 Zinc import ATP binding protein ZnuC 0.347913936436 0.5 0.152086063564 +UniRef50_B4SGR9 3 dehydroquinate dehydratase 0.023520917182 0.5 0.476479082818 +UniRef50_UPI00035E131B hypothetical protein 0.156039156962 0.5 0.343960843038 +UniRef50_UPI000471D845 hypothetical protein 1.48167140706 0.5 -0.981671407058 +UniRef50_UPI000190BCFA hypothetical protein, partial 0.290874043353 0.5 0.209125956647 +UniRef50_F0Y0F0 0.0749391718705 0.5 0.42506082813 +UniRef50_G7U5I2 Tricorn protease 0.00298243275688 0.5 0.497017567243 +UniRef50_B9KX51 DSBA oxidoreductase 0.259128300425 0.5 0.240871699575 +UniRef50_Q9RYP2 Adenine deaminase related protein 0.99849433052 0.5 -0.49849433052 +UniRef50_R0NKC6 ABC transporter substrate binding protein 0.541255179282 0.5 -0.0412551792824 +UniRef50_M5UK49 Glucose 1 dehydrogenase 0.459425539056 0.5 0.0405744609438 +UniRef50_E5U6M9 0.197015824939 0.5 0.302984175061 +UniRef50_UPI0003FF8F9D hypothetical protein 0.333407948402 0.5 0.166592051598 +UniRef50_A5UN83 6.43972974238 0.500000000002 -5.93972974239 +UniRef50_A5UN84 2.00992858927 0.5 -1.50992858927 +UniRef50_Q4L8H9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 6.58736859743 0.49999999999 -6.08736859742 +UniRef50_S0GCD5 0.0193210564662 0.499999999999 0.480678943535 +UniRef50_Q2J713 Probable dual specificity RNA methyltransferase RlmN 0.01274282672 0.5 0.48725717328 +UniRef50_Q8FFV6 Multidrug resistance outer membrane protein MdtQ 0.904174085289 0.5 -0.404174085289 +UniRef50_D3QIE1 Hydrolase 1.06193581766 0.5 -0.561935817661 +UniRef50_B6C5I5 0.25668302402 0.5 0.24331697598 +UniRef50_UPI0004786084 hypothetical protein 0.517716885337 0.5 -0.0177168853366 +UniRef50_A0RQU5 TonB dependent receptor protein 0.0836863981832 0.5 0.416313601817 +UniRef50_A5UN65 MEMO1 family protein Msm_1438 2.64912674417 0.5 -2.14912674417 +UniRef50_C6CW93 Major facilitator superfamily MFS_1 0.162631772539 0.5 0.337368227461 +UniRef50_E7C3U5 0.673833773694 0.5 -0.173833773694 +UniRef50_Q2FE11 Phosphoglucomutase 1.49075576225 0.500000000001 -0.990755762255 +UniRef50_Q68WT1 DNA helicase II 0.346706207987 0.5 0.153293792013 +UniRef50_UPI0003F6F54C hypothetical protein 0.273260557417 0.5 0.226739442583 +UniRef50_C6NW58 Putative ATP dependent RNA helicase 0.0610587904974 0.5 0.438941209502 +UniRef50_P76086 Transcriptional repressor PaaX 4.49637692793 0.500000000001 -3.99637692793 +UniRef50_D9RB01 1.47647997954 0.5 -0.976479979542 +UniRef50_J2X6M2 0.937492566877 0.5 -0.437492566877 +UniRef50_G8PLF5 TRAP transporter solute receptor, TAXI family 0.959612402921 0.5 -0.459612402921 +UniRef50_S5YTP5 Iron complex transport system, substrate binding protein 0.489043187436 0.5 0.0109568125637 +UniRef50_Q8G6D6 Phosphoglycerate kinase 0.0134885270683 0.5 0.486511472932 +UniRef50_Q02ZD2 Redox sensing transcriptional repressor Rex 2.30985077568 0.5 -1.80985077568 +UniRef50_UPI0002D2A0E3 hypothetical protein 1.15010151953 0.5 -0.650101519535 +UniRef50_UPI0002B9B247 hypothetical protein, partial 0.342540447614 0.5 0.157459552386 +UniRef50_P44997 Phosphoserine phosphatase 0.387017269048 0.5 0.112982730952 +UniRef50_UPI00046D3094 Fis family transcriptional regulator 0.190106470166 0.5 0.309893529834 +UniRef50_UPI0003598719 PREDICTED 1.81104154135 0.499999999999 -1.31104154135 +UniRef50_A4W090 Putative sporulation transcription regulator WhiA 0.392048603007 0.5 0.107951396993 +UniRef50_UPI0003C2A5BF PREDICTED 1.80892261118 0.5 -1.30892261118 +UniRef50_W5XDD5 DNA polymerase 0.0578382519822 0.5 0.442161748018 +UniRef50_UPI0003B74800 hypothetical protein 1.98365782337 0.5 -1.48365782337 +UniRef50_UPI000474F6A9 hypothetical protein, partial 0.00949661042434 0.5 0.490503389576 +UniRef50_E3E7X3 Oxidoreductase Fe S binding subunit 0.0935017097849 0.5 0.406498290215 +UniRef50_C2MSC7 S layer y domain protein 0.0241225312863 0.5 0.475877468714 +UniRef50_O31546 Probable tRNA dihydrouridine synthase 2 1.49210663792 0.5 -0.99210663792 +UniRef50_T9WCL0 Phage tail fiber assembly protein 3.38356463802 0.5 -2.88356463802 +UniRef50_S1H2Y6 Protein YibB 0.465471325733 0.5 0.0345286742673 +UniRef50_C5N1K2 ROK family protein 7.59860037407 0.499999999996 -7.09860037407 +UniRef50_P74755 Histidine biosynthesis bifunctional protein HisIE 0.133969987361 0.5 0.366030012639 +UniRef50_Y1MEW7 ATP dependent helicase 1.70233424127 0.500000000001 -1.20233424127 +UniRef50_A0A011P8Z8 0.145732964897 0.5 0.354267035103 +UniRef50_UPI000308DF5E 50S ribosomal protein L20 0.105314649535 0.5 0.394685350465 +UniRef50_Q8CQW2 0.661894490988 0.5 -0.161894490988 +UniRef50_A7Z635 Glycerol 3 phosphate dehydrogenase [NAD+] 1.51392183113 0.500000000001 -1.01392183113 +UniRef50_UPI00036159B5 30S ribosomal protein S2 1.12160706699 0.499999999999 -0.621607066985 +UniRef50_A6V6R8 3.52240750601 0.499999999999 -3.02240750601 +UniRef50_C7RQ14 5.90529824835 0.5 -5.40529824835 +UniRef50_UPI00015D2B59 hypothetical protein 0.377329522642 0.5 0.122670477358 +UniRef50_D3E3U4 Exosome subunit 2.63026537636 0.500000000001 -2.13026537636 +UniRef50_P42314 0.0382009061272 0.5 0.461799093873 +UniRef50_Q1CRH7 tRNA modification GTPase MnmE 0.0133205024466 0.5 0.486679497553 +UniRef50_Q8ZLS0 3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC 2.64135931013 0.499999999997 -2.14135931012 +UniRef50_U5MWL6 Pyruvate kinase 0.230981099881 0.5 0.269018900119 +UniRef50_Q9RYX4 Probable guanine deaminase 0.0137662018419 0.5 0.486233798158 +UniRef50_W8TV76 2 hydroxyacid dehydrogenase 0.770010523114 0.5 -0.270010523114 +UniRef50_UPI000360F94C MULTISPECIES 0.193702396808 0.5 0.306297603192 +UniRef50_P35141 Adenylate kinase 0.51652350299 0.5 -0.0165235029903 +UniRef50_UPI00036AE0E8 hypothetical protein, partial 2.4215082381 0.500000000001 -1.9215082381 +UniRef50_R8BHP6 0.377412835719 0.5 0.122587164281 +UniRef50_E6AX10 0.157745501229 0.5 0.342254498771 +UniRef50_X5A009 Oxidoreductase 2.74851814556 0.500000000001 -2.24851814556 +UniRef50_UPI000470CE1D hypothetical protein, partial 0.186230069352 0.5 0.313769930648 +UniRef50_A0A010Q6A8 TonB dependent receptor family protein 0.0050450038261 0.5 0.494954996174 +UniRef50_A7GXA8 Argininosuccinate lyase 0.593334130057 0.5 -0.0933341300572 +UniRef50_UPI00037A50BE hypothetical protein 0.286962038818 0.5 0.213037961182 +UniRef50_UPI00047EC686 CoA transferase 0.0279787608632 0.499999999999 0.472021239137 +UniRef50_UPI0003B49CD4 glutamine amidotransferase 0.0672606514645 0.5 0.432739348535 +UniRef50_L0NM51 0.0192796502129 0.5 0.480720349787 +UniRef50_Q6FF15 Exonuclease V, alpha subunit 0.0219419777392 0.5 0.478058022261 +UniRef50_E3YPZ5 Acetyl CoA carboxylase, biotin carboxyl carrier protein 2.97394653156 0.499999999998 -2.47394653156 +UniRef50_Q2SRK6 Tyrosine tRNA ligase 0.151419682662 0.5 0.348580317339 +UniRef50_Q2YV14 22.9773295396 0.500000000021 -22.4773295396 +UniRef50_A1AYM7 11.4364401386 0.500000000003 -10.9364401386 +UniRef50_L7KRU0 0.569035545151 0.5 -0.0690355451507 +UniRef50_C5WGJ7 XRE family transcriptional regulator 1.01371647834 0.5 -0.513716478338 +UniRef50_X7YQG6 0.140849715813 0.5 0.359150284187 +UniRef50_B2I3G0 Molybdopterin biosynthesis protein 0.00911040813776 0.5 0.490889591862 +UniRef50_G8UTB0 Flagellar basal body rod modification protein FlgD 0.363630797985 0.5 0.136369202015 +UniRef50_Q4JVG0 Chorismate synthase 0.0145385021755 0.5 0.485461497824 +UniRef50_UPI0003B6C9F3 30S ribosomal protein S5 0.311167479248 0.5 0.188832520752 +UniRef50_M3ZEB7 1.10382870225 0.5 -0.603828702253 +UniRef50_R9SLQ2 0.703629726438 0.5 -0.203629726438 +UniRef50_Q5X496 Dihydroorotate dehydrogenase 0.0753496552917 0.5 0.424650344708 +UniRef50_B7KV96 3.33050445086 0.5 -2.83050445086 +UniRef50_UPI00039B1B0F general secretion pathway protein I 0.459256648909 0.5 0.0407433510905 +UniRef50_Q6ME91 Aspartate tRNA ligase 0.0998680807101 0.5 0.40013191929 +UniRef50_UPI00046FBF5E butanol dehydrogenase, partial 0.253096665673 0.5 0.246903334327 +UniRef50_Q49V04 4 diphosphocytidyl 2 C methyl D erythritol kinase 2.54783636078 0.499999999998 -2.04783636078 +UniRef50_A6LTZ1 0.384611863119 0.5 0.115388136881 +UniRef50_S8N5S2 0.464193748861 0.5 0.0358062511387 +UniRef50_E3F4P1 Short chain dehydrogenase reductase SDR 5.21553508131 0.5 -4.71553508131 +UniRef50_W0Z0G1 NADH quinone oxidoreductase 0.663553579136 0.5 -0.163553579136 +UniRef50_Q89ER4 Aliphatic sulfonates import ATP binding protein SsuB 1.93287628455 0.5 -1.43287628455 +UniRef50_Q0T1X7 3 phenylpropionate cinnamic acid dioxygenase ferredoxin NAD reductase component 2.49818706744 0.500000000001 -1.99818706744 +UniRef50_Q9CGF0 Xanthine phosphoribosyltransferase 0.398470713391 0.5 0.101529286609 +UniRef50_D8IIA8 0.686909576998 0.5 -0.186909576998 +UniRef50_UPI000408C6D9 ribosome binding factor A 0.403612740747 0.5 0.0963872592528 +UniRef50_Q1R421 0.168211484559 0.5 0.331788515441 +UniRef50_UPI0004682957 tRNA uridine 5 carboxymethylaminomethyl modification protein 0.699317251192 0.5 -0.199317251192 +UniRef50_G4AEU2 0.0101757327607 0.5 0.489824267239 +UniRef50_I0C2K0 Nitrogen regulation protein NIFR3 1.08713551298 0.5 -0.587135512983 +UniRef50_UPI000455F8BC alcohol oxidase 0.733523613889 0.5 -0.233523613889 +UniRef50_D2JBV0 Beta lactamase regulatory sensor transducer BlaR1 0.0412683977906 0.5 0.45873160221 +UniRef50_UPI000416161F hypothetical protein 0.877617550016 0.5 -0.377617550016 +UniRef50_A4WVT3 Transposase, IS4 family 0.167943860713 0.5 0.332056139287 +UniRef50_F4FMD5 Periplasmic iron binding protein 1.53340701109 0.5 -1.03340701109 +UniRef50_V9BNZ4 TRAP transporter, DctM like membrane protein 0.923149358435 0.5 -0.423149358435 +UniRef50_P39377 Isoaspartyl dipeptidase 1.99691263837 0.5 -1.49691263837 +UniRef50_Q1J1P5 Phosphopantetheine adenylyltransferase 5.31845723623e-05 0.499999999999 0.499946815428 +UniRef50_E6V848 Short chain dehydrogenase reductase SDR 1.60837917771 0.499999999999 -1.10837917771 +UniRef50_Y6EQN4 Serine rich adhesin for platelets 3.87175777381 0.5 -3.37175777381 +UniRef50_W8S2G5 Glutathione peroxidase 1.16289515824 0.5 -0.662895158236 +UniRef50_A6LRE6 Membrane protein 0.0133093771412 0.5 0.486690622859 +UniRef50_A6VD85 Lipoprotein 1.25268229748 0.5 -0.752682297476 +UniRef50_G9WG99 Alpha glucosidase 0.141688342202 0.5 0.358311657798 +UniRef50_A4WSV2 Pseudouridine synthase 1.11893749376 0.5 -0.618937493757 +UniRef50_V5T5N9 Fimbrial protein 0.211889978881 0.5 0.288110021119 +UniRef50_Q2YUZ7 Acetylglutamate kinase 1.07665657675 0.5 -0.576656576754 +UniRef50_K0C8G2 Alpha L glutamate ligase like protein 0.32048170842 0.5 0.17951829158 +UniRef50_F8JNJ0 0.426474129184 0.5 0.0735258708157 +UniRef50_V6XU76 11.3396736044 0.499999999985 -10.8396736044 +UniRef50_Q5WH73 Peptide methionine sulfoxide reductase MsrB 0.162322205478 0.5 0.337677794522 +UniRef50_UPI000479EE06 hypothetical protein 0.0542387432505 0.5 0.44576125675 +UniRef50_Q8CQZ2 ABC transporter 1.87765522306 0.5 -1.37765522306 +UniRef50_UPI0002625DD5 ABC transporter 0.053229427861 0.5 0.446770572139 +UniRef50_Q931P4 Iron regulated surface determinant protein H 2.40750017967 0.5 -1.90750017967 +UniRef50_S9R7G4 Multisubunit Na+ H+ antiporter, MnhB subunit 2.61346593598 0.5 -2.11346593598 +UniRef50_F7Z2N3 Transcriptional activator, TenA family 0.747294718768 0.5 -0.247294718768 +UniRef50_UPI0004641455 electron transporter RnfC 1.17791764773 0.5 -0.677917647727 +UniRef50_B2EBN8 0.214393860391 0.5 0.285606139609 +UniRef50_C4L8G4 Type VI secretion protein, VC_A0114 family 0.305865755407 0.5 0.194134244593 +UniRef50_X0P1E3 0.00113613652501 0.5 0.498863863475 +UniRef50_I1EQF0 0.00898200884578 0.5 0.491017991154 +UniRef50_P56032 50S ribosomal protein L4 0.0614676962043 0.5 0.438532303795 +UniRef50_UPI00037FFF27 hypothetical protein, partial 4.63562153086 0.500000000001 -4.13562153086 +UniRef50_P57389 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.252762437893 0.5 0.247237562107 +UniRef50_M1IRD2 Dehydrogenase 0.0119753094155 0.5 0.488024690584 +UniRef50_Q8ET05 Ornithine carbamoyltransferase 0.251354127645 0.5 0.248645872355 +UniRef50_D8JTY5 Binding protein dependent transport systems inner membrane component 2.45431659032 0.5 -1.95431659032 +UniRef50_G7M273 0.28439190779 0.5 0.21560809221 +UniRef50_W7WNN7 0.0612228206299 0.5 0.43877717937 +UniRef50_UPI000364C068 hypothetical protein 3.33012734367 0.499999999999 -2.83012734366 +UniRef50_UPI00046650EC hypothetical protein 0.0586530734929 0.5 0.441346926507 +UniRef50_Q3SL72 Putative pilus assembly protein PilF, TPR repeat 0.273398405626 0.5 0.226601594374 +UniRef50_UPI000473F325 hypothetical protein 0.849405207394 0.5 -0.349405207394 +UniRef50_A6LUF1 0.037262814287 0.5 0.462737185713 +UniRef50_UPI00034F6213 PREDICTED 0.615173186287 0.5 -0.115173186287 +UniRef50_K7RJS3 Transcriptional regulator, LacI family 0.0173471394801 0.5 0.48265286052 +UniRef50_B3E717 Elongation factor Ts 2.75080267601 0.499999999999 -2.25080267601 +UniRef50_D2P385 6.25982229322 0.500000000001 -5.75982229322 +UniRef50_X7ELL2 Transcriptional regulator 1.28948909868 0.5 -0.789489098676 +UniRef50_C2DNC2 1.11264639372 0.5 -0.61264639372 +UniRef50_H8H2P8 Transposase, IS4 0.000674529444538 0.5 0.499325470556 +UniRef50_A6M074 Alcohol dehydrogenase GroES domain protein 0.439880479284 0.5 0.0601195207164 +UniRef50_UPI00036452A7 hypothetical protein 0.0414054760285 0.500000000001 0.458594523971 +UniRef50_X6KYR9 0.127733970126 0.5 0.372266029874 +UniRef50_UPI000362C621 hypothetical protein 0.001675846339 0.5 0.498324153661 +UniRef50_Q3JP83 4.9400522512 0.499999999996 -4.4400522512 +UniRef50_Q46VJ2 Twin arginine translocation pathway signal 0.649776095286 0.5 -0.149776095286 +UniRef50_Q6AEX4 ABC type glycine betaine transport, ATP binding protein 0.00764351049773 0.5 0.492356489502 +UniRef50_F0K5E7 Translation factor 0.403467476597 0.5 0.0965325234027 +UniRef50_UPI0003B62D20 acyltransferase 2.07315444086 0.499999999999 -1.57315444085 +UniRef50_A0A010V7A5 0.0107123797344 0.5 0.489287620266 +UniRef50_UPI0001DD0BD2 hypothetical protein, partial 1.18000984027 0.5 -0.680009840274 +UniRef50_UPI00038FA867 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 0.0892015264138 0.5 0.410798473586 +UniRef50_UPI00046F700B hypothetical protein 0.621213030886 0.5 -0.121213030886 +UniRef50_P76057 0.301595493315 0.5 0.198404506685 +UniRef50_U5N033 0.0952772102108 0.5 0.404722789789 +UniRef50_UPI0004785487 5 keto 4 deoxyuronate isomerase, partial 0.532071355752 0.5 -0.0320713557515 +UniRef50_K9ZYV5 Diguanylate cyclase domain containing protein 0.0232039524318 0.499999999999 0.476796047569 +UniRef50_UPI00038240F5 hypothetical protein 0.0178125949628 0.5 0.482187405037 +UniRef50_B2S1K4 Uridine kinase 0.0560460053056 0.5 0.443953994694 +UniRef50_UPI00035D9BD3 hypothetical protein 0.479029594114 0.5 0.0209704058857 +UniRef50_E4BE72 0.857546192978 0.5 -0.357546192978 +UniRef50_O75251 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 0.00397905139933 0.5 0.4960209486 +UniRef50_I6TQZ1 Thioesterase 1.97729702496 0.5 -1.47729702496 +UniRef50_UPI0003AEA946 0.0313294899711 0.500000000001 0.468670510028 +UniRef50_G1RN76 0.39190416181 0.5 0.10809583819 +UniRef50_U6HZU1 Heat shock protein 70 1.59549261063 0.5 -1.09549261063 +UniRef50_UPI00016C4061 DNA polymerase I 0.0794231482032 0.5 0.420576851797 +UniRef50_D8U3W2 Metalloproteinase, extracellular matrix glycoprotein VMP28 0.329371389055 0.5 0.170628610945 +UniRef50_R7PYE0 1.29862290002 0.500000000001 -0.798622900025 +UniRef50_A1WUU5 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.20916604103 0.5 -0.709166041026 +UniRef50_C1DQS2 Ribonuclease 3 0.351927590452 0.5 0.148072409548 +UniRef50_D7A1Q0 Arginine ornithine antiporter 1.70799667689 0.5 -1.20799667689 +UniRef50_Q28QF9 Hemin import ATP binding protein HmuV 0.00617824525996 0.500000000001 0.493821754739 +UniRef50_D3D4M2 0.421792972239 0.5 0.0782070277614 +UniRef50_UPI0004677544 para aminobenzoate synthase 0.174527176654 0.499999999999 0.325472823347 +UniRef50_Q4L6X8 D tyrosyl tRNA deacylase 0.0957958160469 0.5 0.404204183953 +UniRef50_K6DPK7 YhgE Pip C terminal domain containing protein 0.326154655975 0.5 0.173845344025 +UniRef50_Q8DS55 0.951799530908 0.5 -0.451799530908 +UniRef50_Q9X196 Spermidine putrescine import ATP binding protein PotA 1.60681498095 0.5 -1.10681498095 +UniRef50_A5WAX5 L pipecolate dehydrogenase 0.393552459648 0.5 0.106447540352 +UniRef50_P31060 Putative molybdenum transport ATP binding protein ModF 2.72745289161 0.5 -2.22745289161 +UniRef50_M9VFB1 ABC transporter 0.0349141821191 0.5 0.465085817881 +UniRef50_I1EII6 0.120635390904 0.5 0.379364609096 +UniRef50_W0RBV9 LigA 0.0964096023279 0.5 0.403590397672 +UniRef50_UPI0003677181 hypothetical protein 0.34387492105 0.5 0.15612507895 +UniRef50_T3QN35 Putative GTP binding protein typA bipA 0.242723008616 0.5 0.257276991384 +UniRef50_U3TN39 Mobilization protein 0.483354766157 0.5 0.0166452338434 +UniRef50_Q03Q56 D ribose pyranase 0.813736614269 0.5 -0.313736614269 +UniRef50_L9NPU9 Pirin family protein 0.318544217799 0.5 0.181455782201 +UniRef50_UPI00036BABDE hypothetical protein 0.00675151110837 0.5 0.493248488892 +UniRef50_V4JV50 1.29550823718 0.5 -0.795508237177 +UniRef50_W4HIB0 Putative NAD specific glutamate dehydrogenase 0.667209160789 0.5 -0.167209160789 +UniRef50_UPI0003650DAD hypothetical protein 0.0461480014003 0.5 0.4538519986 +UniRef50_Q9SC75 L1332.3a protein 2.54707176894 0.499999999996 -2.04707176894 +UniRef50_Q6MER0 0.299975239271 0.5 0.200024760729 +UniRef50_G8VKT7 0.0197520073472 0.5 0.480247992653 +UniRef50_E1VFK2 0.335748196691 0.5 0.164251803309 +UniRef50_F8LS47 0.21669648144 0.5 0.28330351856 +UniRef50_Q00266 S adenosylmethionine synthase isoform type 1 0.0897259040638 0.5 0.410274095936 +UniRef50_C1KWF9 Peptide methionine sulfoxide reductase MsrA 1.35013496032 0.5 -0.850134960324 +UniRef50_G7R477 2.16703289867 0.5 -1.66703289867 +UniRef50_A3C947 0.25564824625 0.5 0.24435175375 +UniRef50_Q8ZBZ0 Na translocating NADH quinone reductase subunit A 0.0534997014476 0.5 0.446500298552 +UniRef50_Q5LSI0 ABC transporter, periplasmic substrate binding protein 2.01568021339 0.5 -1.51568021339 +UniRef50_UPI00037F3C99 hypothetical protein 0.57691920769 0.5 -0.0769192076903 +UniRef50_UPI0003462712 hypothetical protein 3.85939190277 0.499999999997 -3.35939190276 +UniRef50_A7HHJ4 LigA 0.594866672499 0.5 -0.0948666724993 +UniRef50_UPI00035EDF20 hypothetical protein 0.00696906975236 0.5 0.493030930248 +UniRef50_Q9PHZ7 Phosphoribosylformylglycinamidine synthase 1 0.509233804874 0.5 -0.009233804874 +UniRef50_O29627 3 isopropylmalate dehydrogenase 0.126417627704 0.5 0.373582372296 +UniRef50_P22142 NADH ubiquinone oxidoreductase 49 kDa subunit, mitochondrial 0.264584809257 0.5 0.235415190743 +UniRef50_G9G2D3 Dipeptide ABC transporter, permease protein DppC 1.54918498945 0.5 -1.04918498945 +UniRef50_Q9RWW2 0.00264334764107 0.5 0.497356652359 +UniRef50_Q8DUN4 FruR 0.404135196392 0.5 0.095864803608 +UniRef50_UPI000349D5C4 hypothetical protein 0.175620622843 0.5 0.324379377157 +UniRef50_A9M185 Histidinol phosphate aminotransferase 0.0241187246088 0.5 0.475881275391 +UniRef50_UPI00036E2FCA FAD containing monooxygenase EthA 0.00278060245429 0.5 0.497219397546 +UniRef50_B7I5R6 0.0199446874659 0.5 0.480055312534 +UniRef50_UPI00037EE754 hypothetical protein 1.79110913756 0.5 -1.29110913756 +UniRef50_U5MPF8 Multidrug resistance efflux pump 0.023073816096 0.5 0.476926183904 +UniRef50_A6LZS4 NADPH dependent FMN reductase 0.302286777651 0.5 0.197713222349 +UniRef50_A8AKU2 50S ribosomal protein L1 1.11789480428 0.5 -0.617894804283 +UniRef50_Q5GWU5 0.0445365239411 0.500000000001 0.455463476058 +UniRef50_P21622 Acetolactate synthase isozyme 3 small subunit 0.111387709991 0.5 0.388612290009 +UniRef50_UPI00037D5428 hypothetical protein 5.11399021278 0.500000000003 -4.61399021279 +UniRef50_F0RQZ6 ABC type transporter, periplasmic subunit 0.00181988547349 0.5 0.498180114527 +UniRef50_Q6A6N8 50S ribosomal protein L5 0.187483783036 0.5 0.312516216964 +UniRef50_UPI0004788E38 PTS fructose transporter subunit IIA 0.00389620760242 0.5 0.496103792397 +UniRef50_Q7MN70 Phosphoribosylformylglycinamidine synthase 0.0236929787655 0.5 0.476307021235 +UniRef50_E6UYF1 Short chain dehydrogenase reductase SDR 0.022157533856 0.5 0.477842466144 +UniRef50_B2I798 Acyl carrier protein 17.8705635123 0.500000000022 -17.3705635123 +UniRef50_P36879 2.85543904938 0.499999999998 -2.35543904938 +UniRef50_I4CDV3 Thioredoxin reductase 0.125251068557 0.499999999999 0.374748931443 +UniRef50_A8A033 3.68575958995 0.500000000001 -3.18575958996 +UniRef50_P72138 Imidazole glycerol phosphate synthase subunit HisH 2 4.62098622024 0.499999999996 -4.12098622024 +UniRef50_UPI000404E07B fatty acid CoA ligase 1.85321943391 0.499999999999 -1.35321943391 +UniRef50_UPI0004785A11 uroporphyrin III methyltransferase 0.324081081972 0.5 0.175918918028 +UniRef50_Q7U8M8 Glutamyl Q tRNA synthetase 0.311051647304 0.5 0.188948352696 +UniRef50_B9KJE5 0.714544771484 0.5 -0.214544771484 +UniRef50_C0PP08 2.29636406249 0.5 -1.79636406249 +UniRef50_N6AES7 Hyperosmolarity resistance protein Ebh 0.981149789465 0.5 -0.481149789465 +UniRef50_UPI000371B471 hypothetical protein 1.26415944317 0.5 -0.764159443174 +UniRef50_Q8XMI8 Shikimate dehydrogenase 0.0941008527124 0.5 0.405899147288 +UniRef50_UPI000289E4F2 alcohol dehydrogenase 0.132430646627 0.500000000001 0.367569353373 +UniRef50_UPI0004729BC1 cation diffusion facilitator family transporter 0.459892752516 0.5 0.0401072474843 +UniRef50_Q5HT48 Holliday junction ATP dependent DNA helicase RuvB 0.600319306444 0.5 -0.100319306444 +UniRef50_Q4LAB0 Multicopper oxidase mco 1.53462174963 0.5 -1.03462174963 +UniRef50_G2TA66 Phosphate ABC transporter permease 0.00754955782322 0.5 0.492450442177 +UniRef50_W1VWW7 Putative copper transporting P type ATPase B 1.89433453569 0.5 -1.39433453569 +UniRef50_B8KQR9 Transcriptional regulator 0.317890833805 0.5 0.182109166195 +UniRef50_Q7VMD0 Nucleoside diphosphate kinase 1.5361156798 0.5 -1.0361156798 +UniRef50_Q0RRL9 60 kDa chaperonin 1 0.0198223346278 0.5 0.480177665372 +UniRef50_C5J508 DNA replication protein 0.00263538221567 0.5 0.497364617785 +UniRef50_UPI000478279F succinate semialdehyde dehydrogenase 0.149728132803 0.5 0.350271867197 +UniRef50_B1M8C4 Polar amino acid ABC transporter, inner membrane subunit 0.772984492779 0.5 -0.272984492779 +UniRef50_F9Z2M8 L fucose proton symporter 0.0118318684937 0.5 0.488168131506 +UniRef50_UPI00037CF736 hypothetical protein 0.520102901548 0.5 -0.0201029015485 +UniRef50_H0A168 0.920196326988 0.5 -0.420196326988 +UniRef50_D9VMY8 0.00667432079948 0.5 0.4933256792 +UniRef50_A0A011P7P6 Putative carbamoyl transferase, NodU family 0.0478926567167 0.5 0.452107343283 +UniRef50_G9ZBL9 0.146033815223 0.5 0.353966184777 +UniRef50_G7U641 0.0152689590455 0.5 0.484731040955 +UniRef50_UPI0003B5C516 iron ABC transporter permease 0.0791094774952 0.5 0.420890522505 +UniRef50_B0VC22 Alpha ketoglutarate dependent taurine dioxygenase (Sulfate starvation induced protein 3) (SSI3) 0.0496926228569 0.5 0.450307377143 +UniRef50_UPI00046F1DB8 hypothetical protein 0.536418352278 0.5 -0.0364183522778 +UniRef50_B4F197 3 isopropylmalate dehydratase small subunit 0.355117060936 0.5 0.144882939064 +UniRef50_UPI0003632A72 hypothetical protein 6.19513650866 0.5 -5.69513650866 +UniRef50_UPI00036D8769 hypothetical protein 1.18310173566 0.500000000001 -0.683101735666 +UniRef50_C5QMF5 1.1137879835 0.5 -0.613787983502 +UniRef50_P76180 Inner membrane protein YdgK 0.642741375055 0.5 -0.142741375055 +UniRef50_A5CXF1 Acetylglutamate kinase 0.0575643894072 0.5 0.442435610593 +UniRef50_Q5HLT6 Abortive infection family protein 1.7100835064 0.500000000001 -1.2100835064 +UniRef50_Q4FUL2 Tryptophan synthase alpha chain 0.176148000418 0.5 0.323851999582 +UniRef50_X2M4D8 0.823068129673 0.5 -0.323068129673 +UniRef50_B0CDQ3 UPF0246 protein AM1_4276 0.274191263111 0.5 0.225808736889 +UniRef50_G8PMP6 Endoribonuclease L PSP 1.1740014296 0.5 -0.674001429605 +UniRef50_V6URL6 Cell envelope biogenesis protein AsmA 0.442797365439 0.5 0.0572026345614 +UniRef50_X2H351 0.499077840784 0.5 0.000922159216242 +UniRef50_U6KK83 2.92871776778 0.499999999999 -2.42871776778 +UniRef50_UPI00036BEE13 hypothetical protein 1.09253462614 0.5 -0.592534626137 +UniRef50_UPI00046D6656 hypothetical protein 0.345038992628 0.5 0.154961007372 +UniRef50_Q165E2 1,4 alpha glucan branching enzyme GlgB 0.601000950969 0.5 -0.101000950969 +UniRef50_UPI000315BFA8 hypothetical protein 0.508316845038 0.5 -0.00831684503828 +UniRef50_UPI00035CD1FF hypothetical protein 0.637073590685 0.5 -0.137073590685 +UniRef50_UPI000469790A hypothetical protein 1.5808712738 0.500000000001 -1.0808712738 +UniRef50_Q4L4C2 Fructose specific permease 1.43002017366 0.499999999999 -0.930020173656 +UniRef50_UPI0003FDF28D AMP dependent synthetase 0.20093826888 0.5 0.29906173112 +UniRef50_M1MC89 Cell wall hydrolase 0.456159363898 0.5 0.0438406361016 +UniRef50_Q5LWG6 3.33740768767 0.5 -2.83740768767 +UniRef50_A6LRW3 Phage major capsid protein, HK97 family 0.202053471492 0.5 0.297946528508 +UniRef50_C5N1T2 2.18133367635 0.5 -1.68133367635 +UniRef50_P0ABY0 Flagellar protein FliL 0.0995599822624 0.5 0.400440017737 +UniRef50_P50971 Thioredoxin reductase 1.48406558924 0.5 -0.984065589236 +UniRef50_W0AMQ6 Cell envelope integrity inner membrane protein TolA 0.209647414556 0.5 0.290352585444 +UniRef50_UPI00047BFB23 hypothetical protein 0.0538021475104 0.5 0.44619785249 +UniRef50_B9KW07 0.375929640399 0.5 0.124070359601 +UniRef50_C0PKV4 0.139979145595 0.5 0.360020854405 +UniRef50_I4E8E6 0.700858367137 0.5 -0.200858367137 +UniRef50_T2BJL4 ISSoc3 transposase 0.0265903079636 0.5 0.473409692037 +UniRef50_Q2FUW3 Accessory Sec system protein Asp1 3.37944914042 0.500000000002 -2.87944914042 +UniRef50_UPI0003A6ABB5 sulfonate ABC transporter ATP binding protein 0.462297766278 0.5 0.037702233722 +UniRef50_P37749 Beta 1,6 galactofuranosyltransferase WbbI 1.33516778074 0.500000000001 -0.835167780745 +UniRef50_C5N0Z4 Siderophore biosynthesis protein, IucA IucC family 2.48349458608 0.5 -1.98349458608 +UniRef50_V5VD99 0.0202062949822 0.5 0.479793705018 +UniRef50_F8FZJ8 Major facilitator transporter 0.739925545631 0.5 -0.239925545631 +UniRef50_Q9LPM9 Branched chain amino acid aminotransferase 6 0.167793087047 0.5 0.332206912954 +UniRef50_Q9RUA0 NADH quinone oxidoreductase subunit N 0.0017606534182 0.5 0.498239346582 +UniRef50_G6Y8D4 Transposase 0.893540684811 0.5 -0.393540684811 +UniRef50_Q1G0V6 0.0344636189954 0.5 0.465536381005 +UniRef50_Q1G0V5 0.180409565541 0.5 0.319590434459 +UniRef50_X6AX71 3.84302990446 0.5 -3.34302990446 +UniRef50_A1TRM3 Alkanesulfonate monooxygenase 0.380909003161 0.5 0.119090996839 +UniRef50_Q8D032 Putrescine binding periplasmic protein 0.798487751132 0.5 -0.298487751132 +UniRef50_UPI0003658106 hypothetical protein 1.63473651389 0.5 -1.13473651389 +UniRef50_A6L170 NADH quinone oxidoreductase subunit B 0.00348783803522 0.5 0.496512161965 +UniRef50_UPI000307B6D2 hypothetical protein 0.252474966975 0.5 0.247525033025 +UniRef50_A6LQN1 0.0311749061502 0.5 0.46882509385 +UniRef50_UPI0003620B51 hypothetical protein 0.30125915711 0.5 0.19874084289 +UniRef50_UPI000376D6A5 hypothetical protein 2.80677167279 0.500000000003 -2.3067716728 +UniRef50_A1KU02 0.335728537669 0.5 0.164271462331 +UniRef50_UPI0001746901 leucyl phenylalanyl tRNA protein transferase 0.232507447403 0.5 0.267492552597 +UniRef50_P77596 3.14583402181 0.499999999996 -2.64583402181 +UniRef50_UPI0002F262C3 hypothetical protein 1.64432750567 0.499999999997 -1.14432750567 +UniRef50_A5VRG1 0.996552150626 0.5 -0.496552150626 +UniRef50_UPI0002BC7439 hypothetical protein 0.064913734785 0.5 0.435086265215 +UniRef50_P23189 Glutathione reductase 0.775520899936 0.5 -0.275520899936 +UniRef50_B2S648 Protein RecA 0.704791671513 0.5 -0.204791671513 +UniRef50_M4YYE1 Universal stress protein 7.39061549635 0.499999999995 -6.89061549635 +UniRef50_E6MZX2 0.020402767825 0.5 0.479597232175 +UniRef50_B0VSH7 Outer membrane lipoproteins carrier protein 0.0919462502965 0.5 0.408053749704 +UniRef50_Q7AX70 FhaC protein 0.0121329968846 0.5 0.487867003115 +UniRef50_UPI0003C757EC LuxR family transcriptional regulator 0.0768870541188 0.5 0.423112945881 +UniRef50_P16701 Sulfate transport system permease protein CysT 0.144193192391 0.5 0.355806807609 +UniRef50_W9GLM8 1.07493802877 0.5 -0.57493802877 +UniRef50_D3P377 Simple sugar transport system permease protein 3.93476639254 0.499999999994 -3.43476639253 +UniRef50_UPI000409B662 hypothetical protein 0.544427851967 0.5 -0.0444278519665 +UniRef50_G7M4C6 0.940310720173 0.5 -0.440310720173 +UniRef50_F0Y5D8 Expressed protein 1.10576355451 0.5 -0.605763554507 +UniRef50_F5Z794 FMN binding oxidoreductase 0.0967440448694 0.5 0.403255955131 +UniRef50_K0RRH8 0.0692672728892 0.5 0.430732727111 +UniRef50_M4X5I0 Response regulator receiver modulated diguanylate cyclase phosphodiesterase 1.94555145884 0.5 -1.44555145884 +UniRef50_UPI000378EFFC hypothetical protein 2.37832313029 0.500000000002 -1.87832313029 +UniRef50_UPI00030E8238 hypothetical protein 1.85497650401 0.500000000002 -1.35497650402 +UniRef50_Q92506 Estradiol 17 beta dehydrogenase 8 0.189861175416 0.5 0.310138824584 +UniRef50_P39333 Cyclic di GMP binding biofilm dispersal mediator protein 2.16265724699 0.499999999999 -1.66265724699 +UniRef50_D9VNI8 Galactose oxidase 1.73437911104 0.5 -1.23437911104 +UniRef50_Q8CN30 Thiazole synthase 5.12170114249 0.5 -4.62170114249 +UniRef50_Q71YH9 Dihydroorotase 2.24191691469 0.5 -1.74191691469 +UniRef50_A0JUU8 tRNA pseudouridine synthase B 0.0538120342181 0.5 0.446187965782 +UniRef50_P54383 Farnesyl diphosphate synthase 0.0170585155869 0.5 0.482941484413 +UniRef50_Q6GJ46 Putative antiporter subunit mnhB2 0.494367734904 0.5 0.00563226509571 +UniRef50_A6LW15 ROK family protein 0.120928821874 0.500000000001 0.379071178125 +UniRef50_Q9ZHC7 Silver exporting P type ATPase 0.137581633858 0.5 0.362418366142 +UniRef50_N4BUJ9 ATP dependent helicase HrpA 1.04853421952 0.5 -0.548534219515 +UniRef50_UPI000346DC0F hypothetical protein 0.604932672797 0.5 -0.104932672797 +UniRef50_X2HS12 Multidrug transporter 0.00998171677421 0.5 0.490018283226 +UniRef50_Q9NQW7 Xaa Pro aminopeptidase 1 0.225913217272 0.5 0.274086782728 +UniRef50_W5XIY9 2.88290515436 0.5 -2.38290515436 +UniRef50_UPI0003785425 hypothetical protein 0.950590787714 0.5 -0.450590787714 +UniRef50_K7T5I3 0.55232228326 0.5 -0.0523222832595 +UniRef50_G7U9V5 0.00477792281024 0.500000000001 0.495222077189 +UniRef50_UPI00047018EB hypothetical protein 1.16904398248 0.5 -0.669043982478 +UniRef50_I3Y6A0 CRISPR associated helicase, Cas3 family 1.37139041623 0.5 -0.871390416233 +UniRef50_C5TD27 Xanthine dehydrogenase accessory protein XdhC 0.0858895915928 0.5 0.414110408407 +UniRef50_Q0IDE8 Bifunctional purine biosynthesis protein PurH 0.313189329702 0.5 0.186810670298 +UniRef50_P96110 Glutamate dehydrogenase 0.00603878705447 0.5 0.493961212946 +UniRef50_A3PRG7 Extradiol ring cleavage dioxygenase, class III enzyme, subunit B 0.645347866894 0.5 -0.145347866894 +UniRef50_UPI0001E8E9B9 PTS system, cellobiose specific IIC component, partial 0.374266680346 0.5 0.125733319654 +UniRef50_Q8KY51 Protein phosphatase PhpP 1.47766738771 0.5 -0.977667387707 +UniRef50_L9CVM1 CO dehydrogenase flavoC terminal domain protein 0.262245847127 0.5 0.237754152873 +UniRef50_UPI00047124E8 hypothetical protein 0.635199163958 0.5 -0.135199163958 +UniRef50_Q838L1 Rhamnulose 1 phosphate aldolase 0.0042066041726 0.5 0.495793395828 +UniRef50_P45541 Protein FrlC 4.33880167846 0.5 -3.83880167846 +UniRef50_I2FAM9 Serine protease Do 0.0096765045737 0.5 0.490323495426 +UniRef50_N6VEV1 0.241303406591 0.5 0.258696593409 +UniRef50_B8EMC7 0.023738148654 0.500000000001 0.476261851346 +UniRef50_Q08194 Cysteine rich extensin like protein 1 1.44826644048 0.5 -0.948266440476 +UniRef50_B7UI87 Protein FixA 3.80074771655 0.5 -3.30074771655 +UniRef50_T1Y9S4 Phosphoesterase family protein 2.20885294364 0.5 -1.70885294364 +UniRef50_A9AQ58 Aldehyde Dehydrogenase 0.0194531917219 0.5 0.480546808278 +UniRef50_R7RGB1 4.4365909724 0.500000000002 -3.9365909724 +UniRef50_D5AR26 Histidine ammonia lyase 2.04646385254 0.5 -1.54646385254 +UniRef50_M9VD49 Sua5 YciO YrdC YwlC family protein 0.0336519869892 0.5 0.466348013011 +UniRef50_M1MLW9 0.263429102353 0.5 0.236570897647 +UniRef50_UPI000475FB40 hypothetical protein, partial 0.195234064385 0.5 0.304765935615 +UniRef50_D7AAI4 Peptidyl prolyl cis trans isomerase 1.83650502562 0.499999999998 -1.33650502562 +UniRef50_P17583 Cyanate transport protein CynX 0.30195028998 0.5 0.19804971002 +UniRef50_A5KZA1 0.221021788831 0.5 0.278978211169 +UniRef50_W0H3E7 0.784557945299 0.5 -0.284557945299 +UniRef50_O86507 Urease subunit gamma beta 0.0342564838817 0.5 0.465743516119 +UniRef50_Q01993 Riboflavin synthase 0.00111789043771 0.500000000001 0.498882109562 +UniRef50_A9QYJ6 Tellurium resistance protein 0.00420695826833 0.5 0.495793041732 +UniRef50_Q53726 Heptaprenylglyceryl phosphate synthase 2.16070120782 0.499999999997 -1.66070120782 +UniRef50_U5MQB0 DNA polymerase III epsilon subunit like 3 5 exonuclease 0.104618306636 0.499999999999 0.395381693365 +UniRef50_P75820 N acetylmuramoyl L alanine amidase AmiD 1.58386826777 0.500000000001 -1.08386826777 +UniRef50_UPI00036D10D1 hypothetical protein 0.946275413693 0.5 -0.446275413693 +UniRef50_A0B343 Binding protein dependent transport systems inner membrane component 1.07426038824 0.5 -0.574260388243 +UniRef50_Q1GCC9 Flagellar biosynthetic protein flhB 2.04310224691 0.5 -1.54310224691 +UniRef50_Q9ZH77 Malate synthase 0.326172108526 0.5 0.173827891474 +UniRef50_UPI00046CFBE6 acyl CoA dehydrogenase 0.0208115391532 0.5 0.479188460847 +UniRef50_F0KN46 Threonine dehydratase catabolic 0.00920861171281 0.5 0.490791388287 +UniRef50_L0DM84 1.16012714857 0.5 -0.660127148571 +UniRef50_O84823 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.340386976674 0.5 0.159613023326 +UniRef50_A4WVF0 Glucose sorbosone dehydrogenase 5.17349255895 0.500000000001 -4.67349255895 +UniRef50_UPI0003B3270D iron ABC transporter ATP binding protein 0.0127082152145 0.5 0.487291784786 +UniRef50_Q9K9X4 Transposase related protein 0.0664028689693 0.5 0.43359713103 +UniRef50_UPI00037D8C4A hypothetical protein 0.276440815891 0.5 0.223559184109 +UniRef50_F8JB05 0.352024454694 0.5 0.147975545306 +UniRef50_UPI000377A6D2 cold shock protein 0.918687651676 0.5 -0.418687651676 +UniRef50_UPI00047DCFEE MarR family transcriptional regulator 0.152933499306 0.5 0.347066500694 +UniRef50_UPI00036E9D0F hypothetical protein 0.736409479721 0.5 -0.236409479721 +UniRef50_Q2FG29 Alanine dehydrogenase 2 0.383577902951 0.5 0.116422097049 +UniRef50_Q6A5S0 Probable potassium transport system protein kup 0.00637149672047 0.5 0.493628503279 +UniRef50_R5T303 2.08447676867 0.499999999997 -1.58447676867 +UniRef50_A9AQT5 6.83085383369 0.5 -6.33085383369 +UniRef50_L1NZZ4 0.428326091571 0.5 0.0716739084286 +UniRef50_Z6HHY0 0.608204287395 0.5 -0.108204287395 +UniRef50_UPI00047D45C1 cysteine desulfurase 0.108890961974 0.5 0.391109038026 +UniRef50_A2XBC4 5.19639752625 0.500000000001 -4.69639752625 +UniRef50_UPI0004651636 hypothetical protein 1.13784689895 0.5 -0.637846898947 +UniRef50_J7R4R4 Pleiotrophic effects on 3 hydrogenase isozymes 2.05317551805 0.499999999999 -1.55317551805 +UniRef50_F3WHR7 Starvation sensing protein rspA 2.51122293858 0.499999999998 -2.01122293858 +UniRef50_A0A023RWV4 Histidine kinase 0.0191529404375 0.5 0.480847059563 +UniRef50_C1N829 Predicted protein 0.00717686288491 0.5 0.492823137115 +UniRef50_P23921 Ribonucleoside diphosphate reductase large subunit 0.00621135600819 0.499999999999 0.493788643992 +UniRef50_P35483 Alkaline phosphatase H 0.868212694205 0.5 -0.368212694205 +UniRef50_A0RU57 0.0563595335041 0.5 0.443640466496 +UniRef50_Q9I406 Gamma glutamyltranspeptidase 0.580223586847 0.5 -0.0802235868467 +UniRef50_R9SL02 Heavy metal translocating P type ATPase 2.22719683122 0.499999999999 -1.72719683122 +UniRef50_UPI0003B6145B ABC transporter 0.24156874219 0.5 0.25843125781 +UniRef50_H5IZ71 0.473582127141 0.5 0.026417872859 +UniRef50_F9YXP6 0.0576257027423 0.5 0.442374297258 +UniRef50_UPI00041FBFE4 transcriptional regulator 0.421334820943 0.5 0.0786651790573 +UniRef50_UPI00035E0033 hypothetical protein 0.639120615617 0.5 -0.139120615617 +UniRef50_I6T5B9 Transcriptional regulator 1.11658013056 0.5 -0.616580130557 +UniRef50_UPI000370C159 hypothetical protein 8.38196163156 0.500000000002 -7.88196163156 +UniRef50_A9VIS8 UPF0758 protein BcerKBAB4_4299 1.05818150576 0.5 -0.558181505755 +UniRef50_M9VBP8 0.0308450883106 0.5 0.469154911689 +UniRef50_A1A2G3 LexA repressor 2.02821519541 0.5 -1.52821519541 +UniRef50_UPI00037C10BF hypothetical protein 5.66525964993 0.500000000002 -5.16525964993 +UniRef50_D9RNU6 Ferrichrome ABC transporter subunit 1.90938286423 0.5 -1.40938286423 +UniRef50_D5CRQ8 TRAP dicarboxylate transporter, DctP subunit 3.09674648551 0.5 -2.59674648551 +UniRef50_UPI00046CD945 hypothetical protein 0.171456540052 0.5 0.328543459948 +UniRef50_Q58070 Dihydroorotate dehydrogenase B ), catalytic subunit 2.56268379335 0.500000000003 -2.06268379336 +UniRef50_Q9RSA9 0.0030631225584 0.5 0.496936877441 +UniRef50_V7ZGG5 OmpW family outer membrane protein 9.73358278529 0.5 -9.23358278529 +UniRef50_UPI00029B3E2F replication factor A 0.126176415344 0.5 0.373823584656 +UniRef50_D7BHE9 Transcriptional activator domain protein 1.23694477763 0.5 -0.736944777632 +UniRef50_D4HCR0 0.0233523590684 0.5 0.476647640932 +UniRef50_Q5HNV7 ComE operon protein 1, putative 4.12931719466 0.5 -3.62931719466 +UniRef50_P46843 Bifunctional thioredoxin reductase thioredoxin 0.316147291547 0.5 0.183852708453 +UniRef50_R4LUX8 0.249925216494 0.5 0.250074783506 +UniRef50_S9R328 Xanthine and CO dehydrogenase maturation factor, XdhC CoxF family 0.321413696661 0.5 0.178586303339 +UniRef50_R6BD47 0.636768136811 0.5 -0.136768136811 +UniRef50_O28142 Phosphoserine phosphatase 0.256695647636 0.5 0.243304352364 +UniRef50_UPI00046385E1 multidrug ABC transporter 0.0566148955777 0.5 0.443385104423 +UniRef50_U2SYT7 0.27231106509 0.5 0.22768893491 +UniRef50_L0FSR8 TolC family type I secretion outer membrane protein 1.23182573423 0.5 -0.731825734228 +UniRef50_K7R3S2 2.24043562792 0.5 -1.74043562792 +UniRef50_S3P9S1 0.011135343672 0.5 0.488864656328 +UniRef50_I7DPT5 2.49986523189 0.5 -1.99986523189 +UniRef50_UPI0003641916 hypothetical protein 0.318637485724 0.5 0.181362514276 +UniRef50_Q8CR25 1.02243306308 0.5 -0.522433063078 +UniRef50_J6LH83 PE PGRS family protein 0.512880955254 0.5 -0.0128809552539 +UniRef50_H3VJS7 1.69941186332 0.5 -1.19941186332 +UniRef50_A6M1M4 0.136253542817 0.5 0.363746457183 +UniRef50_G0AAP1 Sulfate adenylyltransferase subunit 1 0.0120781870783 0.5 0.487921812922 +UniRef50_UPI00026276D2 inner membrane translocator 3.16907748019 0.500000000001 -2.66907748019 +UniRef50_E1Z5M0 0.175478666281 0.5 0.324521333719 +UniRef50_Q04PF0 Glutamate tRNA ligase 0.421004655961 0.5 0.0789953440386 +UniRef50_UPI0003F4A008 hypothetical protein TREMEDRAFT_32941 0.130216851819 0.5 0.369783148182 +UniRef50_UPI00046874E6 hypothetical protein 2.48293191021 0.5 -1.98293191021 +UniRef50_UPI0003815981 hypothetical protein 0.0362433676811 0.500000000001 0.463756632318 +UniRef50_Q899C3 Isoleucine tRNA ligase 0.110185071327 0.5 0.389814928673 +UniRef50_UPI0003B62A8A hypothetical protein 1.44817627387 0.500000000001 -0.948176273867 +UniRef50_A8FNY3 Enolase 0.0377709032601 0.5 0.46222909674 +UniRef50_UPI000468DB65 leucyl tRNA synthetase 1.43266211502 0.5 -0.932662115017 +UniRef50_B2TMH9 Autolytic lysozyme 0.0725284199032 0.5 0.427471580097 +UniRef50_UPI00041375E2 cation 1.81708818192 0.5 -1.31708818192 +UniRef50_W4LU01 0.464537600307 0.5 0.0354623996933 +UniRef50_G5P4U0 Potassium efflux system KefA 1.14250523871 0.5 -0.642505238715 +UniRef50_UPI00042B93D3 Ribosomal protein S9 isoform 1 0.233456310126 0.5 0.266543689874 +UniRef50_Q9RRE8 0.00613078663692 0.5 0.493869213363 +UniRef50_I1E9S6 3.29557000168 0.5 -2.79557000168 +UniRef50_UPI0002FC4FA4 hypothetical protein 0.00651034800179 0.5 0.493489651998 +UniRef50_P77389 Inner membrane transport protein YdhP 0.236496593914 0.5 0.263503406086 +UniRef50_UPI000475B66E phosphoenolpyruvate synthase 0.00469498444426 0.500000000001 0.495305015555 +UniRef50_B8IW50 0.536733376191 0.5 -0.0367333761907 +UniRef50_UPI0004717EC9 hypothetical protein, partial 0.226774345765 0.5 0.273225654235 +UniRef50_S6AW69 0.622302694712 0.5 -0.122302694712 +UniRef50_Q1J212 Peptide chain release factor 2 0.00549536389703 0.5 0.494504636103 +UniRef50_D2V1D7 1.14925982962 0.5 -0.649259829618 +UniRef50_Q92HI8 Pyruvate, phosphate dikinase 0.192506224923 0.5 0.307493775077 +UniRef50_T2E942 Helix turn helix domain protein 1.04694822076 0.5 -0.546948220756 +UniRef50_UPI0003B650F3 hypothetical protein 0.063022128669 0.5 0.436977871331 +UniRef50_A6M324 0.145853317428 0.500000000001 0.354146682571 +UniRef50_T3G5Y0 Ferrous iron transport protein B 0.137043663589 0.5 0.362956336411 +UniRef50_Q15P31 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.247225954415 0.5 0.252774045585 +UniRef50_Q3IY12 Thiamine import ATP binding protein ThiQ 0.185936524607 0.5 0.314063475393 +UniRef50_I0E580 0.0290326317777 0.5 0.470967368222 +UniRef50_UPI000478031E 50S ribosomal protein L3 0.0153637107865 0.5 0.484636289213 +UniRef50_C6SQB8 1.49753970093 0.500000000001 -0.997539700935 +UniRef50_UPI0002F01DF0 hypothetical protein 0.125907000154 0.5 0.374092999846 +UniRef50_B5F623 Uronate isomerase 0.000721972856334 0.5 0.499278027144 +UniRef50_G3ECR2 CRISPR associated endonuclease Cas1 0.971547545916 0.5 -0.471547545916 +UniRef50_A0Q0N0 5 methyltetrahydrofolate homocysteine methyltransferase, putative 0.034018474918 0.5 0.465981525082 +UniRef50_W1VEW5 0.152424379909 0.500000000001 0.347575620091 +UniRef50_P0AC06 Flagellar biosynthetic protein FliP 1.33145467703 0.5 -0.831454677026 +UniRef50_V5PI53 Glyoxalase family protein 1.21903525607 0.499999999999 -0.71903525607 +UniRef50_D8JGK5 RDD family protein 0.00732947736934 0.499999999999 0.492670522632 +UniRef50_B9ECE2 3.94573640261 0.499999999998 -3.4457364026 +UniRef50_Q9ZMS7 Protein RecA 0.0922791208345 0.5 0.407720879165 +UniRef50_M9VGZ5 0.0484417140128 0.5 0.451558285987 +UniRef50_A3PKV8 Drug resistance transporter, EmrB QacA subfamily 0.324962871633 0.5 0.175037128367 +UniRef50_I9V7J9 Outer membrane protein HopL 0.00382558791554 0.5 0.496174412084 +UniRef50_S4MVA0 2.25782779794 0.5 -1.75782779794 +UniRef50_E4BBY5 0.315537066521 0.5 0.184462933479 +UniRef50_W9GWC0 Rrf2 family transcriptional regulator 0.318690449371 0.5 0.181309550629 +UniRef50_Q06129 Anthranilate synthase component 2 0.0813213584632 0.5 0.418678641536 +UniRef50_UPI00036E37BC hypothetical protein 0.0485108741595 0.5 0.451489125841 +UniRef50_W5E0V3 0.0665269894425 0.5 0.433473010558 +UniRef50_B1IBC6 Fibronectin fibrinogen binding protein 0.119773894565 0.499999999999 0.380226105436 +UniRef50_Z0CP45 2.7415532139 0.499999999996 -2.2415532139 +UniRef50_T2LAG0 0.258423289059 0.5 0.241576710941 +UniRef50_UPI0003C1315E 0.816702753746 0.5 -0.316702753746 +UniRef50_P10518 Delta aminolevulinic acid dehydratase 0.32643490209 0.5 0.17356509791 +UniRef50_UPI000367CE13 hypothetical protein 0.042466719798 0.5 0.457533280202 +UniRef50_P39344 Gnt II system L idonate transporter 1.6632344567 0.499999999999 -1.1632344567 +UniRef50_B8C850 2.14547537572 0.499999999997 -1.64547537572 +UniRef50_W1G461 DNA replication and repair protein RecF 3.76040926414 0.5 -3.26040926414 +UniRef50_Q6F2Y7 Chaperone protein ClpB1 0.0500646335706 0.5 0.449935366429 +UniRef50_Y5GWB2 11.714913851 0.499999999991 -11.214913851 +UniRef50_M9RHC7 ABC transporter permease protein 2.17346845741 0.5 -1.67346845741 +UniRef50_UPI0003B304AC phosphate ABC transporter ATP binding protein 0.220734073803 0.5 0.279265926197 +UniRef50_G9NBA4 1.05363172122 0.5 -0.553631721225 +UniRef50_UPI000237A937 two component hybrid sensor and regulator 0.779130697091 0.5 -0.279130697091 +UniRef50_Q9FE64 Elongation factor G, mitochondrial 0.601606194618 0.5 -0.101606194618 +UniRef50_Q94JQ3 Serine hydroxymethyltransferase 3, chloroplastic 0.898031897556 0.5 -0.398031897556 +UniRef50_A6LTX4 0.141995420794 0.5 0.358004579206 +UniRef50_Q08Q97 0.125661445398 0.5 0.374338554602 +UniRef50_O31703 Molybdopterin molybdenumtransferase 1.49128394498 0.499999999999 -0.991283944981 +UniRef50_V9GHA4 Magnesium and cobalt efflux protein CorC 0.0206085405507 0.5 0.479391459449 +UniRef50_Q5HMD2 HD domain protein 0.359471233155 0.5 0.140528766845 +UniRef50_UPI00036F8E58 hypothetical protein 1.40477834713 0.5 -0.904778347133 +UniRef50_UPI000365B7D1 30S ribosomal protein S4, partial 0.121953887513 0.5 0.378046112487 +UniRef50_G0XAE5 Type IV conjugative transfer system protein TraN 0.739003766554 0.5 -0.239003766554 +UniRef50_Q49XZ6 Superoxide dismutase [Mn Fe] 2.16067730856 0.5 -1.66067730856 +UniRef50_A1TT20 Cytochrome c oxidase 3.17726579083 0.500000000001 -2.67726579083 +UniRef50_D3VAJ4 Complete genome segment 14 17 0.0946652717093 0.5 0.405334728291 +UniRef50_D5V1H1 Type VI secretion protein, VC_A0114 family 0.266075874945 0.5 0.233924125055 +UniRef50_UPI00037B97B7 hypothetical protein 0.801624065651 0.5 -0.301624065651 +UniRef50_A0A014PLF9 0.0199744770074 0.5 0.480025522993 +UniRef50_B2U7R1 NADH quinone oxidoreductase subunit A 0.0420460390388 0.500000000001 0.457953960961 +UniRef50_V5VFY5 Transport protein 0.0551557147321 0.5 0.444844285268 +UniRef50_N6UGZ5 0.159926069553 0.5 0.340073930446 +UniRef50_Q6GI14 Amidophosphoribosyltransferase 1.18551123399 0.500000000001 -0.685511233988 +UniRef50_R7PYG7 0.722338492205 0.5 -0.222338492205 +UniRef50_Q9ZJ81 NAD kinase 0.0233354823411 0.5 0.476664517659 +UniRef50_UPI0003B77512 2,5 diketo D gluconic acid reductase 0.0767431640794 0.5 0.423256835921 +UniRef50_A4VV94 0.0894872615217 0.5 0.410512738478 +UniRef50_UPI000371E16C hypothetical protein 0.341011867528 0.5 0.158988132472 +UniRef50_Q15QK1 S adenosylmethionine synthase 0.0553016922912 0.5 0.444698307709 +UniRef50_Q8DWE6 Constitutive fructose permease 10.17304343 0.499999999997 -9.67304343003 +UniRef50_B1YK83 DNA polymerase IV 0.224857072886 0.5 0.275142927114 +UniRef50_UPI00040FF8E8 hypothetical protein 0.220724456005 0.5 0.279275543995 +UniRef50_Q4L449 Putative antiporter subunit mnhG2 0.630557519016 0.5 -0.130557519016 +UniRef50_UPI00003799C3 hypothetical protein 2.69635903949 0.5 -2.19635903949 +UniRef50_A1BG26 Acetylglutamate kinase 0.826496271659 0.5 -0.326496271659 +UniRef50_UPI000049D95F hypothetical protein SPOA0411 0.558415856384 0.5 -0.0584158563839 +UniRef50_Q8DUE1 Ribonuclease HII 1.27384239523 0.5 -0.773842395231 +UniRef50_S6C0Y4 Citrate transporter protein 1.20281494531 0.5 -0.702814945309 +UniRef50_UPI00037DA3B2 hypothetical protein 0.501936381092 0.5 -0.0019363810922 +UniRef50_P73241 Probable copper transporting ATPase PacS 0.370616150521 0.5 0.129383849479 +UniRef50_Q6G960 Ribonuclease Z 1.12600693856 0.5 -0.626006938557 +UniRef50_G4B7N4 0.110922957817 0.500000000001 0.389077042182 +UniRef50_B9KWM7 3.07937085257 0.500000000001 -2.57937085258 +UniRef50_R7YC06 Cytosine deaminase 0.0461554559149 0.499999999999 0.453844544086 +UniRef50_A3PJF3 Binding protein dependent transport systems inner membrane component 1.78529619057 0.500000000001 -1.28529619057 +UniRef50_UPI00047E1F76 hypothetical protein 0.231745190086 0.5 0.268254809914 +UniRef50_C1FNK7 3 oxoacyl [acyl carrier protein] synthase 3 4.2436120896 0.500000000006 -3.74361208961 +UniRef50_UPI000376CB6F hypothetical protein 0.211608595552 0.500000000001 0.288391404448 +UniRef50_A6QAV3 Ni Fe hydrogenase, large subunit 0.0156942562225 0.5 0.484305743778 +UniRef50_X1DLQ6 Marine sediment metagenome DNA, contig 2.09202995206 0.500000000002 -1.59202995206 +UniRef50_P12054 Protein rlx 2.37280818221 0.5 -1.87280818221 +UniRef50_E7C7F3 0.838858138187 0.5 -0.338858138187 +UniRef50_B7HHF8 3 isopropylmalate dehydratase small subunit 0.635906800214 0.5 -0.135906800214 +UniRef50_P39277 Inner membrane protein YjeH 1.45790857287 0.500000000001 -0.957908572873 +UniRef50_M0NFH7 0.76578293484 0.5 -0.26578293484 +UniRef50_A0A038J3C7 1.06862077759 0.5 -0.568620777585 +UniRef50_Q65JD4 0.0945445273335 0.5 0.405455472667 +UniRef50_Q5RKZ7-2 Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1 0.138549223117 0.500000000001 0.361450776882 +UniRef50_F5X0E4 Major facilitator superfamily protein 3.86756691546 0.499999999998 -3.36756691546 +UniRef50_D3FUC6 [Ni Fe] hydrogenase, small subunit 0.108282870898 0.5 0.391717129102 +UniRef50_R6MP39 0.0522768910954 0.5 0.447723108904 +UniRef50_UPI000056DCC0 L serine dehydratase 1, truncated, partial 0.19607262099 0.5 0.30392737901 +UniRef50_Q28VI8 Lytic murein transglycosylase 2.21029526322 0.500000000003 -1.71029526322 +UniRef50_A5F5D8 Cytosol aminopeptidase 2.36831376704 0.500000000001 -1.86831376704 +UniRef50_C5MZL4 2.15637047539 0.500000000002 -1.65637047539 +UniRef50_UPI00034529EA chromate transporter 0.0925215934812 0.5 0.407478406518 +UniRef50_Q49X30 Ribosome biogenesis GTPase A 1.34526022165 0.5 -0.845260221652 +UniRef50_UPI000225AC87 reverse transcriptase 0.211644137456 0.5 0.288355862544 +UniRef50_Q28V25 Holo [acyl carrier protein] synthase 0.151476360348 0.5 0.348523639652 +UniRef50_P45423 0.937193914652 0.5 -0.437193914652 +UniRef50_P0DM86 Clamp binding protein CrfC 3.32608365069 0.5 -2.82608365069 +UniRef50_P45421 0.205211379379 0.5 0.294788620621 +UniRef50_P45420 0.681820579938 0.5 -0.181820579938 +UniRef50_UPI0003461C99 hypothetical protein 0.00643866399965 0.5 0.493561336001 +UniRef50_Q6FA27 0.122654108717 0.5 0.377345891283 +UniRef50_UPI0004759495 membrane protein 0.192291627961 0.5 0.307708372039 +UniRef50_UPI0002FC887C hypothetical protein 0.734729363989 0.5 -0.234729363989 +UniRef50_C3ATQ4 Glycosyltransferase involved in cell wall biogenesis 0.872403885035 0.5 -0.372403885035 +UniRef50_B5I3Q1 Predicted protein 0.0498624328303 0.499999999999 0.45013756717 +UniRef50_C9TPX2 Pirin family protein 0.184324580016 0.5 0.315675419984 +UniRef50_X1YG35 1.91076795652 0.5 -1.41076795652 +UniRef50_P21338 Ribonuclease I 0.584102860035 0.5 -0.0841028600355 +UniRef50_Q00593 Alcohol dehydrogenase [acceptor] 0.465013212794 0.5 0.0349867872059 +UniRef50_UPI0003627344 hypothetical protein 1.1866827342 0.5 -0.686682734196 +UniRef50_UPI0003B5CBDB MULTISPECIES 0.219937852636 0.5 0.280062147364 +UniRef50_U0DBB7 Flagellar transcriptional activator flhC 0.0633610955138 0.5 0.436638904486 +UniRef50_D5WDT4 0.652014173917 0.5 -0.152014173917 +UniRef50_UPI0003B41656 hypothetical protein, partial 0.436985198088 0.5 0.0630148019118 +UniRef50_Q9KWJ8 Putative acetyltransferase 9.91533183812 0.500000000002 -9.41533183813 +UniRef50_UPI0003B56B90 DNA mismatch repair protein MutS 0.125198544343 0.5 0.374801455657 +UniRef50_M4S5A3 1.27293803695 0.5 -0.772938036946 +UniRef50_G7SNL0 PfkB family carbohydrate kinase 0.0366072638 0.5 0.4633927362 +UniRef50_UPI00037CCDB1 hypothetical protein 0.193630753825 0.5 0.306369246175 +UniRef50_Q74RF8 Maltose transport system permease protein MalG 1.56052981743 0.5 -1.06052981743 +UniRef50_O31660 Putative membrane bound acyltransferase YkrP 0.431790531183 0.5 0.0682094688172 +UniRef50_Q1J0Y6 DNA topoisomerase 0.00428061749709 0.5 0.495719382503 +UniRef50_UPI00036A1EC1 hypothetical protein 0.0338328112929 0.5 0.466167188707 +UniRef50_UPI000465DC9F hypothetical protein 0.309210456515 0.5 0.190789543485 +UniRef50_D2J7W9 Replication initiation protein 1.71024866659 0.500000000001 -1.21024866659 +UniRef50_P21175 Leucine , isoleucine , valine , threonine , and alanine binding protein 1.0735155542 0.5 -0.573515554197 +UniRef50_P44591 Protein translocase subunit SecD 2.26523954321 0.5 -1.76523954321 +UniRef50_U3STI1 GntR family transcriptional regulator 0.540162180505 0.5 -0.0401621805053 +UniRef50_B7VAJ2 0.236093063233 0.5 0.263906936767 +UniRef50_UPI0002F13DE3 hypothetical protein 0.330054909171 0.5 0.169945090829 +UniRef50_D4KNP6 Arginine decarboxylase 0.0709971560215 0.5 0.429002843979 +UniRef50_I4XMD7 0.488060607835 0.5 0.0119393921652 +UniRef50_M8HEB4 Bacteriophage replication gene A protein (Fragment) 0.0480287496014 0.5 0.451971250399 +UniRef50_P24193 Hydrogenase isoenzymes formation protein HypE 7.32704833821 0.500000000005 -6.82704833822 +UniRef50_UPI0004093BB4 AsnC family transcriptional regulator 0.535201969865 0.5 -0.0352019698648 +UniRef50_UPI00036A6233 hypothetical protein 0.19869748097 0.5 0.30130251903 +UniRef50_G3XZQ5 0.00631337394655 0.5 0.493686626053 +UniRef50_A0RG68 0.178993330438 0.5 0.321006669562 +UniRef50_Q5M378 0.404884140721 0.5 0.0951158592793 +UniRef50_D8LYQ1 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 0.0247504587706 0.5 0.475249541229 +UniRef50_UPI000424B474 DEAD DEAH box helicase 0.132992142031 0.5 0.367007857969 +UniRef50_Q1I665 0.2914664036 0.5 0.2085335964 +UniRef50_C1DR24 Ribonuclease E 2.627776284 0.5 -2.127776284 +UniRef50_Q045P5 UPF0297 protein LGAS_0422 0.440069995124 0.5 0.0599300048761 +UniRef50_U9DMQ5 0.317902407374 0.5 0.182097592626 +UniRef50_UPI00036D4795 hypothetical protein 0.246565845815 0.5 0.253434154185 +UniRef50_UPI0002FA6B33 hypothetical protein 0.427234167355 0.5 0.0727658326448 +UniRef50_Q04U59 1 deoxy D xylulose 5 phosphate synthase 0.0181539780303 0.5 0.481846021969 +UniRef50_Q8YHG4 Glutamate tRNA ligase 1 4.09919782477 0.500000000006 -3.59919782478 +UniRef50_U8XD19 0.350353583939 0.5 0.149646416061 +UniRef50_A6W6P9 3 dehydroquinate dehydratase 1.71843780322 0.5 -1.21843780322 +UniRef50_UPI000464ACF3 hypothetical protein 1.67622298772 0.5 -1.17622298772 +UniRef50_U7DNG8 Peptidase M19 0.19561547398 0.5 0.30438452602 +UniRef50_P30900 Acetylornithine aminotransferase 1.50455451132 0.500000000001 -1.00455451132 +UniRef50_R6KIL0 YihY family protein 0.1344077882 0.5 0.3655922118 +UniRef50_A8AZM1 30S ribosomal protein S19 0.0857298116898 0.5 0.41427018831 +UniRef50_Q2NI56 tRNA N(2)) dimethyltransferase 3.56186390133 0.500000000001 -3.06186390134 +UniRef50_UPI00037026C5 hypothetical protein 0.615766765754 0.5 -0.115766765754 +UniRef50_Q49UJ3 0.697960291335 0.5 -0.197960291335 +UniRef50_A7WZX4 1.66060740088 0.5 -1.16060740088 +UniRef50_A9M0A0 Phosphoenolpyruvate protein phosphotransferase 0.0127091627531 0.5 0.487290837246 +UniRef50_B0RZ23 Trans 2 enoyl CoA reductase 0.0363525212765 0.5 0.463647478724 +UniRef50_E6MUK3 Drug resistance transporter, Bcr CflA subfamily protein 0.0169015942788 0.5 0.483098405721 +UniRef50_UPI000365D2A7 hypothetical protein 0.378681907872 0.5 0.121318092128 +UniRef50_UPI00036DCC61 hypothetical protein 0.404868221729 0.5 0.0951317782708 +UniRef50_M1MS56 Stage II sporulation protein D 0.439945946621 0.5 0.0600540533787 +UniRef50_Q03287 Urease accessory protein UreG 0.660083630993 0.5 -0.160083630993 +UniRef50_UPI0003A320E0 MULTISPECIES 0.164679024278 0.5 0.335320975722 +UniRef50_UPI000363A104 potassium transporter Kef 0.497488911009 0.5 0.0025110889907 +UniRef50_P76559 3.18645536863 0.5 -2.68645536863 +UniRef50_D3E189 2.49302359628 0.5 -1.99302359628 +UniRef50_UPI000368D15E MULTISPECIES 0.288358871876 0.5 0.211641128124 +UniRef50_M9SFA8 3.83140242117 0.500000000002 -3.33140242117 +UniRef50_Q5HQ84 0.483613940266 0.5 0.0163860597336 +UniRef50_Q8WY44 Quaking protein 3 0.263655335547 0.5 0.236344664453 +UniRef50_W5IC94 0.157242324728 0.5 0.342757675272 +UniRef50_Q2G222 N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979 1.92195427688 0.5 -1.42195427688 +UniRef50_P43796 Glucose 1 phosphate adenylyltransferase 0.678786431015 0.5 -0.178786431015 +UniRef50_C4W8W1 Pyruvate carboxylase 3.57268980536 0.5 -3.07268980536 +UniRef50_P47295 Purine nucleoside phosphorylase DeoD type 0.184673947721 0.5 0.315326052279 +UniRef50_K1YAY7 0.0206529797797 0.5 0.47934702022 +UniRef50_D3QIQ9 2.42808268453 0.5 -1.92808268453 +UniRef50_B2TKN9 Xanthine permease 0.187214865212 0.5 0.312785134788 +UniRef50_Q49YF9 PTS system N acetylglucosamine specific IIBC component 1.48171693219 0.500000000002 -0.981716932195 +UniRef50_UPI000289252A selenocysteine specific translation elongation factor 0.247319367733 0.5 0.252680632267 +UniRef50_Q8YXQ7 Carbamoyl phosphate synthase small chain 0.741159887363 0.5 -0.241159887363 +UniRef50_P0ADC5 Lipoprotein releasing system transmembrane protein LolC 2.60777933888 0.5 -2.10777933888 +UniRef50_E6EBC0 0.00830274311333 0.5 0.491697256887 +UniRef50_K4SCN9 tRNA lysidine synthase 1.78372945639 0.5 -1.28372945639 +UniRef50_Q9ZL53 Cadmium, zinc and cobalt transporting ATPase 0.0245340822932 0.5 0.475465917707 +UniRef50_Q3DT06 0.85291312038 0.5 -0.35291312038 +UniRef50_Q2JTX6 Dihydroxy acid dehydratase 0.418414786554 0.5 0.0815852134463 +UniRef50_K1JKI8 0.261841767212 0.5 0.238158232788 +UniRef50_P26982 Periplasmic serine endoprotease DegP 4.45593050465 0.499999999999 -3.95593050465 +UniRef50_U5MLQ0 Y_Y_Y domain containing protein 0.180228969476 0.5 0.319771030524 +UniRef50_P30793-4 Isoform GCH 4 of GTP cyclohydrolase 1 0.7618973365 0.5 -0.2618973365 +UniRef50_A0A059DR32 1.51587279153 0.5 -1.01587279153 +UniRef50_A0A009W0R2 Valine tRNA ligase 0.0376470559188 0.5 0.462352944081 +UniRef50_V6AHQ4 Putative serine threonine protein kinase 0.17638773393 0.5 0.32361226607 +UniRef50_F2I2C3 1.04300769609 0.5 -0.543007696093 +UniRef50_Q6A5H2 Alanine racemase 0.0175976922418 0.5 0.482402307758 +UniRef50_UPI00047855C0 excinuclease ABC subunit A 0.188958121217 0.5 0.311041878783 +UniRef50_Q2IMD4 Chorismate synthase 0.031223997632 0.500000000001 0.468776002367 +UniRef50_N6VDK8 7.11550764821 0.5 -6.61550764821 +UniRef50_N9IGS7 0.0680756222454 0.5 0.431924377754 +UniRef50_P42909 N acetylgalactosamine specific phosphotransferase enzyme IIB component 1 1.10902950296 0.5 -0.60902950296 +UniRef50_Q1AWD7 Glyoxalase bleomycin resistance protein dioxygenase 0.689224958607 0.5 -0.189224958607 +UniRef50_X1B0B7 Marine sediment metagenome DNA, contig 0.127741765737 0.5 0.372258234263 +UniRef50_I4D272 Chemotaxis response regulator protein glutamate methylesterase 0.597273720078 0.5 -0.0972737200776 +UniRef50_D3NTM9 Transcriptional regulator 0.143222307499 0.5 0.356777692501 +UniRef50_Q8Y270 Aspartate tRNA ligase 0.364154474383 0.5 0.135845525617 +UniRef50_Q2YZ70 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 2.53148187524 0.500000000002 -2.03148187524 +UniRef50_B1SBK3 Oligopeptide ABC transporter, permease protein 0.333909849961 0.5 0.166090150039 +UniRef50_C1MZS3 Predicted protein 0.264028591956 0.5 0.235971408044 +UniRef50_H3CH15 0.353213767778 0.5 0.146786232222 +UniRef50_D3QHC2 Membrane protein, putative 2.28234210057 0.500000000003 -1.78234210057 +UniRef50_K4R856 0.119170501543 0.5 0.380829498457 +UniRef50_U5MZX2 Alpha beta fold family hydrolase 0.136777426117 0.5 0.363222573883 +UniRef50_C1ABB1 0.647545436786 0.5 -0.147545436786 +UniRef50_Q3JC02 Threonine tRNA ligase 0.019312092102 0.5 0.480687907898 +UniRef50_UPI00045E74AA hypothetical protein 0.149597657759 0.5 0.350402342241 +UniRef50_B4EC93 4.18550262241 0.5 -3.68550262241 +UniRef50_H1D9R7 0.218020213346 0.5 0.281979786654 +UniRef50_B7I2L4 Colicin V producing membrane protein 0.0328174770932 0.5 0.467182522907 +UniRef50_B9KS14 Chemotaxis histidine protein kinase 2.62945949499 0.5 -2.12945949499 +UniRef50_UPI00037A03B5 hypothetical protein 0.423070823899 0.5 0.0769291761006 +UniRef50_A7ZKB3 Probable malonic semialdehyde reductase RutE 0.296252217765 0.5 0.203747782235 +UniRef50_UPI0003656A74 hypothetical protein 0.706762221232 0.5 -0.206762221232 +UniRef50_E0XZI6 0.474715637772 0.5 0.025284362228 +UniRef50_I1QQ98 0.078316464611 0.5 0.421683535389 +UniRef50_D1A708 0.193602941063 0.5 0.306397058937 +UniRef50_O69787 Choline sulfatase 6.76656709755 0.500000000001 -6.26656709755 +UniRef50_U3T620 Long chain acyl CoA synthetase 0.0304252751197 0.5 0.46957472488 +UniRef50_K1VAT6 0.78323639702 0.5 -0.28323639702 +UniRef50_UPI000465DCA9 hypothetical protein 3.66068803019 0.5 -3.16068803019 +UniRef50_UPI00036A9D7D hypothetical protein 2.38956429647 0.5 -1.88956429647 +UniRef50_O07137 Probable enoyl CoA hydratase echA8 0.0510336007255 0.5 0.448966399275 +UniRef50_Q2W5V5 Chemotaxis response regulator protein glutamate methylesterase 2 3.30018556612 0.5 -2.80018556612 +UniRef50_UPI00029AB2EF hypothetical protein 3.1585310806 0.5 -2.6585310806 +UniRef50_F0G430 1.37995998747 0.5 -0.879959987468 +UniRef50_Q1DCX8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.739541365097 0.5 -0.239541365097 +UniRef50_P0DA52 DegV domain containing protein SpyM3_0586 0.0146122364369 0.5 0.485387763563 +UniRef50_E2PWJ8 Aldo keto reductase 0.0695102155229 0.5 0.430489784477 +UniRef50_F5TKP9 Nitrate reductase, alpha subunit 0.0101073088614 0.5 0.489892691138 +UniRef50_A4WR54 NnrS family protein 2.55148765684 0.500000000001 -2.05148765684 +UniRef50_P30143 0.553675259302 0.5 -0.0536752593023 +UniRef50_P69857 Probable N acetylneuraminic acid outer membrane channel protein NanC 3.09730591192 0.499999999999 -2.59730591192 +UniRef50_M9VJS8 Cof family hydrolase 0.0356585322437 0.5 0.464341467756 +UniRef50_B1B3K1 Truncated Pre protein 1.83854008002 0.5 -1.33854008002 +UniRef50_F2FAF1 0.424030947387 0.5 0.0759690526134 +UniRef50_UPI0004664D96 XRE family transcriptional regulator 3.4959585617 0.499999999996 -2.9959585617 +UniRef50_UPI0004711A28 hypothetical protein 0.0455999952041 0.500000000001 0.454400004795 +UniRef50_E1WQ62 3.84477773719 0.500000000004 -3.34477773719 +UniRef50_F7WET4 0.651152574738 0.5 -0.151152574738 +UniRef50_X5K411 Iron compound ABC transporter,iron compound binding protein 1.7658811575 0.5 -1.2658811575 +UniRef50_Q0TPX5 Ribose import ATP binding protein RbsA 1.84363116659 0.5 -1.34363116659 +UniRef50_R7ESR9 0.317568421497 0.5 0.182431578503 +UniRef50_M1LNN1 Tex like protein 1.76307313856 0.5 -1.26307313856 +UniRef50_Q8E5K2 Phosphate binding protein PstS 1 3.78978356388 0.499999999999 -3.28978356387 +UniRef50_D3QES6 1.99701878202 0.500000000001 -1.49701878202 +UniRef50_UPI0002EE51BE hypothetical protein 0.864268249571 0.5 -0.364268249571 +UniRef50_S5CWD7 AraC type DNA binding domain containing protein 0.00685190052731 0.5 0.493148099473 +UniRef50_UPI0003B77367 2Fe 2S ferredoxin 0.296017539895 0.5 0.203982460105 +UniRef50_D3QES1 0.64826989247 0.5 -0.14826989247 +UniRef50_D3E1P1 HEAT repeat containing protein 1.5642940824 0.499999999998 -1.0642940824 +UniRef50_P95695 Capsular polysaccharide type 5 biosynthesis protein cap5A 2.29085635502 0.5 -1.79085635502 +UniRef50_P45855 Acetyl CoA acetyltransferase 0.0635852896882 0.5 0.436414710312 +UniRef50_D7A4H7 ABC transporter related protein 1.17392442823 0.5 -0.673924428233 +UniRef50_Q7NC65 Glycerol kinase 0.14757984355 0.5 0.35242015645 +UniRef50_UPI0003499E7A hypothetical protein 0.575518991215 0.5 -0.0755189912152 +UniRef50_A0A024YRW3 0.746070897671 0.5 -0.246070897671 +UniRef50_UPI0002E76F72 hypothetical protein 0.427785780654 0.5 0.0722142193462 +UniRef50_UPI00035075E1 PREDICTED 0.0847350365115 0.5 0.415264963489 +UniRef50_A6UBX6 Binding protein dependent transport systems inner membrane component 1.27279737369 0.5 -0.772797373686 +UniRef50_A0A011UHJ8 1.63982740769 0.5 -1.13982740769 +UniRef50_Q45480 0.522832249237 0.5 -0.0228322492375 +UniRef50_A4X0G8 2.5956102759 0.500000000003 -2.09561027591 +UniRef50_Q5SKG5 Phosphomethylpyrimidine synthase 2.18959267254 0.499999999999 -1.68959267254 +UniRef50_UPI0004701620 50S ribosomal protein L10 1.28393693972 0.5 -0.783936939722 +UniRef50_F5ZH68 1.49886510993 0.5 -0.998865109933 +UniRef50_M1V0X7 0.00475266842211 0.5 0.495247331578 +UniRef50_Q0KDG3 Methionine import ATP binding protein MetN 13.1368618713 0.5 -12.6368618713 +UniRef50_P16686 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH 0.78995681302 0.5 -0.28995681302 +UniRef50_Q9RXL0 0.0237538658782 0.500000000001 0.476246134121 +UniRef50_A5UNK7 1.0862687645 0.5 -0.586268764499 +UniRef50_Q15W23 0.174810876556 0.5 0.325189123444 +UniRef50_UPI000388FF1B PREDICTED 0.440849830818 0.5 0.059150169182 +UniRef50_C5N3N0 0.915715431919 0.5 -0.415715431919 +UniRef50_Q03GN4 Pyridine nucleotide disulfide oxidoreductase 0.0430342894266 0.5 0.456965710573 +UniRef50_UPI00047DF1C1 cell division protein FtsX 0.043503949539 0.5 0.456496050461 +UniRef50_G2TDB8 1.37725915041 0.5 -0.877259150409 +UniRef50_UPI0002D2E18F hypothetical protein 0.094387228888 0.5 0.405612771112 +UniRef50_O64363 Protein gp55 1.44068082525 0.5 -0.940680825251 +UniRef50_UPI00036196C8 hypothetical protein 10.2141734343 0.500000000002 -9.7141734343 +UniRef50_Q8FW95 Bacterioferritin 7.37145510167 0.500000000001 -6.87145510168 +UniRef50_A7FHG9 Vitamin B12 import system permease protein BtuC 0.50232919639 0.5 -0.00232919639018 +UniRef50_Q39586 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.300493097015 0.5 0.199506902985 +UniRef50_Q2RGX1 Xylose binding protein 0.515724433286 0.5 -0.0157244332864 +UniRef50_Q49115 Protein MeaA 2.46736191507 0.5 -1.96736191507 +UniRef50_UPI000475C41D siderophore ABC transporter permease 0.228634667536 0.5 0.271365332464 +UniRef50_X1GH09 Marine sediment metagenome DNA, contig 0.00842659721074 0.500000000001 0.491573402789 +UniRef50_N6JKR1 0.135124875981 0.5 0.36487512402 +UniRef50_Q1J1Q7 Cobalamin biosynthesis CbiX protein 0.0134378145462 0.5 0.486562185454 +UniRef50_I1DXB2 1.70510453016 0.5 -1.20510453016 +UniRef50_Q7DDL5 Cysteine synthase 0.00678769111059 0.5 0.49321230889 +UniRef50_M9VH79 Transcriptional regulator 0.0161422268184 0.5 0.483857773181 +UniRef50_UPI00037331DA hypothetical protein 0.230723072673 0.5 0.269276927327 +UniRef50_A5UMZ2 3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase 2.21464351753 0.499999999999 -1.71464351753 +UniRef50_A5N458 DNA polymerase III subunit beta 1.21562837678 0.5 -0.715628376779 +UniRef50_Q5HL55 Copper chaperone CopZ 0.446645390779 0.5 0.053354609221 +UniRef50_P39408 0.577633446348 0.5 -0.0776334463476 +UniRef50_UPI00029CCE10 50S ribosomal protein L21, partial 0.0121251251912 0.5 0.487874874809 +UniRef50_C4AM88 Cytosolic 5 nucleotidase 1B 0.416955623982 0.5 0.0830443760178 +UniRef50_UPI00047DBA67 hypothetical protein 0.994618790439 0.5 -0.494618790439 +UniRef50_G5NWB0 NADH quinone oxidoreductase subunit N 2.40474537226 0.499999999998 -1.90474537225 +UniRef50_UPI000347E3AB sodium 0.00374779399123 0.5 0.496252206009 +UniRef50_Q28LX4 0.262205101427 0.5 0.237794898573 +UniRef50_A4WTF8 Malto oligosyltrehalose synthase 1.80432614631 0.5 -1.30432614631 +UniRef50_P44311 Glucose 6 phosphate 1 dehydrogenase 0.457701291978 0.5 0.0422987080218 +UniRef50_C6D021 Uronate isomerase 0.107964681705 0.500000000001 0.392035318294 +UniRef50_P45539 Putative fructoselysine transporter FrlA 2.00360153939 0.500000000001 -1.50360153939 +UniRef50_C2UPC1 DNA gyrase subunit B 0.0918098941512 0.5 0.408190105849 +UniRef50_A3PPA1 0.548693836388 0.5 -0.0486938363881 +UniRef50_A3PPA7 0.734100405112 0.5 -0.234100405112 +UniRef50_P0ACD2 Putative colanic acid biosynthesis acetyltransferase WcaF 2.69809683739 0.499999999999 -2.19809683739 +UniRef50_D7GHA6 Iron ABC transporter, permease protein 0.037523785274 0.5 0.462476214726 +UniRef50_Q7VI92 Methionine import ATP binding protein MetN 0.00172969350182 0.5 0.498270306498 +UniRef50_A1KVH9 DNA repair protein RecO 0.011687994936 0.5 0.488312005064 +UniRef50_Q3IX14 1.18019119582 0.5 -0.680191195817 +UniRef50_K7UZK8 0.0597183411515 0.5 0.440281658848 +UniRef50_S5Z0P9 Transposase 0.962432201501 0.5 -0.462432201501 +UniRef50_D8TPB8 0.430621054822 0.5 0.069378945178 +UniRef50_UPI00031039A1 DNA invertase 1.94464989154 0.499999999999 -1.44464989154 +UniRef50_S9S3Z7 0.860807566427 0.5 -0.360807566427 +UniRef50_Q8DV78 0.647326669189 0.5 -0.147326669189 +UniRef50_B9DK54 Predicted membrane protein with CBS domains 2.83184953958 0.500000000001 -2.33184953958 +UniRef50_UPI00029AC90B hypothetical protein 0.250676206088 0.5 0.249323793912 +UniRef50_D0K826 Ribose operon repressor, putative 1.60797217165 0.5 -1.10797217165 +UniRef50_UPI0003B6DD73 amno acid ABC transporter ATPase 0.611805012387 0.5 -0.111805012387 +UniRef50_Q8DV75 1.66479401629 0.5 -1.16479401629 +UniRef50_E8Q7C4 0.40217862608 0.5 0.0978213739197 +UniRef50_Q8CQ71 Arsenical pump membrane protein 0.857560000864 0.5 -0.357560000864 +UniRef50_UPI00047661F3 Putrescine importer PuuP 0.0467476541792 0.5 0.453252345821 +UniRef50_P26162 Magnesium chelatase subunit H 1.65696665916 0.5 -1.15696665916 +UniRef50_Q930T2 4 deoxy L threo 5 hexosulose uronate ketol isomerase 1 0.373324943261 0.5 0.126675056739 +UniRef50_A3PNN7 Sugar transferase 0.951963234249 0.5 -0.451963234249 +UniRef50_Q6ZN04-3 Isoform 2 of RNA binding protein MEX3B 0.24975494806 0.5 0.25024505194 +UniRef50_UPI000225F341 ParB family protein 3.21765861653 0.5 -2.71765861653 +UniRef50_M9R8I3 Flagellar biosynthesis protein FlhA 2.89594770669 0.5 -2.39594770669 +UniRef50_UPI0003758B1C hypothetical protein 0.0872755148825 0.5 0.412724485118 +UniRef50_A3PQH3 3.42891086398 0.5 -2.92891086398 +UniRef50_P22787 2.13122059262 0.5 -1.63122059262 +UniRef50_UPI00047460D1 ABC transporter permease 0.183503582777 0.5 0.316496417223 +UniRef50_Q1IXG7 Thioesterase superfamily 0.0011112507951 0.5 0.498888749205 +UniRef50_A0A024RXJ7 2.29590600522 0.499999999997 -1.79590600522 +UniRef50_P0CI61 Catabolic 3 dehydroquinase 0.568893421317 0.5 -0.0688934213165 +UniRef50_P26459 Cytochrome bd II ubiquinol oxidase subunit 1 3.8481146873 0.500000000003 -3.3481146873 +UniRef50_D8U5B8 0.127429730123 0.5 0.372570269877 +UniRef50_Q1J0Q8 Glycolate oxidase subunit, GlcD 0.00289691958085 0.500000000001 0.497103080419 +UniRef50_UPI0003B67F78 large conductance mechanosensitive channel protein MscL 0.361826555471 0.5 0.138173444529 +UniRef50_O25963 UDP N acetylenolpyruvoylglucosamine reductase 0.0291575919724 0.5 0.470842408028 +UniRef50_UPI00041D354E MarR family transcriptional regulator 0.0853829186263 0.5 0.414617081374 +UniRef50_UPI00034D3A31 hypothetical protein 0.107079703391 0.5 0.392920296609 +UniRef50_D3QEW6 Two component sensor histidine kinase 1.75936964028 0.5 -1.25936964028 +UniRef50_UPI000476FAE3 hypothetical protein 5.90013406574 0.500000000005 -5.40013406574 +UniRef50_P77377 Lipopolysaccharide biosynthesis protein WzxC 4.21040881404 0.500000000002 -3.71040881404 +UniRef50_P72749 GTP binding protein TypA BipA homolog 0.000941825626369 0.5 0.499058174374 +UniRef50_UPI0003801FCB hypothetical protein 2.34470751469 0.5 -1.84470751469 +UniRef50_O27830 3.07347946726 0.500000000001 -2.57347946726 +UniRef50_L7F3W2 0.414389657415 0.5 0.085610342585 +UniRef50_UPI0002559497 response regulator 0.693545609469 0.5 -0.193545609469 +UniRef50_Q9I1P8 1.23033911874 0.500000000001 -0.730339118746 +UniRef50_UPI0004701F6D hypothetical protein, partial 0.380611570271 0.5 0.119388429729 +UniRef50_UPI0003B7BBF9 elongation factor G 0.0547919867227 0.5 0.445208013277 +UniRef50_UPI00035D925C hypothetical protein 0.172021267347 0.5 0.327978732653 +UniRef50_R6H780 0.24628713572 0.5 0.25371286428 +UniRef50_X1KMN7 Marine sediment metagenome DNA, contig 0.228886153115 0.5 0.271113846885 +UniRef50_C6SLG1 7.01812098432 0.500000000001 -6.51812098432 +UniRef50_B2IWH8 Bifunctional protein PyrR 0.17352218954 0.5 0.32647781046 +UniRef50_P66667 Ribonuclease 3 0.160724019216 0.5 0.339275980784 +UniRef50_L0A6M1 ABC type dipeptide oligopeptide nickel transport system, permease component 0.00117476678615 0.5 0.498825233214 +UniRef50_P37773 UDP N acetylmuramate 3.8749068782 0.5 -3.3749068782 +UniRef50_W7WWN9 1.81607015511 0.499999999999 -1.31607015511 +UniRef50_A6M2X6 RNA methyltransferase, TrmA family 0.0721167738289 0.5 0.427883226171 +UniRef50_G4L5V8 Polysaccharide deacetylase 4.12322344698 0.499999999996 -3.62322344697 +UniRef50_UPI000478D1B9 hypothetical protein 0.318637486837 0.5 0.181362513163 +UniRef50_Q32GE1 Quinate shikimate dehydrogenase 2.18978056566 0.5 -1.68978056566 +UniRef50_Q4TIC7 Chromosome undetermined SCAF2249, whole genome shotgun sequence. 6.33537625492 0.499999999993 -5.83537625492 +UniRef50_O67869 Carbamoyl phosphate synthase large chain, N terminal section 0.746543916779 0.5 -0.246543916779 +UniRef50_C7D5Q5 1.05208985473 0.5 -0.552089854733 +UniRef50_Q48KZ0 ATP dependent Clp protease proteolytic subunit 0.0348452584949 0.500000000001 0.465154741504 +UniRef50_UPI0004778203 ABC transporter 2.74136468338 0.500000000003 -2.24136468338 +UniRef50_UPI0004710F14 monovalent cation H+ antiporter subunit A 1.38952680196 0.500000000001 -0.889526801957 +UniRef50_F2UDL8 0.173508148593 0.5 0.326491851407 +UniRef50_A6LR74 Methyl accepting chemotaxis sensory transducer 0.0600932967805 0.5 0.439906703219 +UniRef50_UPI0002BA87F0 hypothetical protein 0.0123130199433 0.5 0.487686980057 +UniRef50_A4VRC5 0.380984575116 0.5 0.119015424884 +UniRef50_A4VRC6 0.777514356568 0.5 -0.277514356568 +UniRef50_Q0G053 1.37145421608 0.5 -0.871454216076 +UniRef50_T1ZL16 0.301680941142 0.5 0.198319058858 +UniRef50_Q92RN6 Probable galactose dehydrogenase GalD 2.69367592279 0.5 -2.19367592279 +UniRef50_E8SR78 ApbE 0.0011709522388 0.5 0.498829047761 +UniRef50_Q8GLK9 Isoprenyl transferase 0.330735118496 0.5 0.169264881504 +UniRef50_B8NR51 0.582360280173 0.5 -0.0823602801731 +UniRef50_UPI000476E214 urea ABC transporter permease 0.022275857399 0.5 0.477724142601 +UniRef50_A5VXC5 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.434542513922 0.5 0.0654574860777 +UniRef50_C0B0T0 0.386673877801 0.5 0.113326122199 +UniRef50_UPI000368C3B5 hypothetical protein 0.19391991753 0.5 0.30608008247 +UniRef50_Q9RTG8 Ribosome maturation factor RimP 0.0036658786874 0.5 0.496334121313 +UniRef50_A0A023RXG6 Poly polymerase 0.00414933638113 0.5 0.495850663619 +UniRef50_Q9HUV8 Phosphoribosylamine glycine ligase 0.0737107746362 0.5 0.426289225364 +UniRef50_A5UNL7 Adhesin like protein 39.0248870367 0.50000000002 -38.5248870368 +UniRef50_A5ULS7 Molybdopterin biosynthesis protein, MoeA 3.34695002346 0.500000000002 -2.84695002347 +UniRef50_UPI0002FD2950 hypothetical protein 0.142977634401 0.5 0.357022365599 +UniRef50_F4EE48 Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein 0.167493601836 0.5 0.332506398164 +UniRef50_UPI00036AA1CD hypothetical protein 0.0608617288325 0.5 0.439138271168 +UniRef50_UPI0003B4B49C bifunctional ppGpp synthetase II guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase 0.268949831589 0.5 0.231050168411 +UniRef50_UPI000225B750 4 phosphopantetheinyl transferase 0.231828259265 0.5 0.268171740735 +UniRef50_UPI00047061CB magnesium transporter MgtC 0.0963560394598 0.5 0.40364396054 +UniRef50_U5L631 Membrane protein 0.0421409220934 0.5 0.457859077907 +UniRef50_A6M235 Sugar isomerase 0.0504229763472 0.5 0.449577023653 +UniRef50_UPI00037B9AA6 hypothetical protein 0.274201067765 0.5 0.225798932235 +UniRef50_UPI0002375EA0 binding protein dependent transport systems inner membrane component, partial 0.16447268557 0.5 0.33552731443 +UniRef50_A8YWE6 Formamidopyrimidine DNA glycosylase 0.323377022997 0.5 0.176622977003 +UniRef50_R9YT60 HlyD secretion family protein 3.3967540159 0.500000000002 -2.8967540159 +UniRef50_G8PI82 Dipeptide transport ATP binding protein DppF 5.27987047556 0.500000000005 -4.77987047556 +UniRef50_A4WPE9 Cytochrome B561 3.75022249047 0.499999999998 -3.25022249047 +UniRef50_UPI0003602B13 hypothetical protein 2.14996148251 0.500000000001 -1.64996148251 +UniRef50_Q9RT80 0.0133194170614 0.5 0.486680582938 +UniRef50_UPI0002488638 2 dehydro 3 deoxygluconokinase 0.350140181732 0.5 0.149859818268 +UniRef50_R6KR64 Major facilitator superfamily MFS_1 0.29018938478 0.5 0.20981061522 +UniRef50_B7GVN4 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.0275328136856 0.5 0.472467186315 +UniRef50_P05695 Porin P 0.810169646092 0.5 -0.310169646092 +UniRef50_B2GC97 Dehydrogenase 2.25707268772 0.5 -1.75707268772 +UniRef50_UPI0004434514 PREDICTED 0.03358161681 0.5 0.46641838319 +UniRef50_P43329 ATP dependent RNA helicase HrpA 0.261455757542 0.5 0.238544242458 +UniRef50_D2NAI9 Antibiotic biosynthesis monooxygenase 3.62609225106 0.499999999999 -3.12609225106 +UniRef50_A5WGU9 ABC transporter related protein 0.00468045965462 0.5 0.495319540345 +UniRef50_UPI000372E826 hypothetical protein 0.578095014345 0.5 -0.078095014345 +UniRef50_UPI00036C8D4E hypothetical protein 0.415188299383 0.5 0.0848117006171 +UniRef50_L7WXE6 0.893606401639 0.5 -0.393606401639 +UniRef50_A0A017T7C4 0.187706442047 0.5 0.312293557953 +UniRef50_R5PQE2 ATPase 2.03415276215 0.5 -1.53415276215 +UniRef50_P73443 Lysine tRNA ligase 0.253497757329 0.5 0.246502242671 +UniRef50_UPI00035D38ED MULTISPECIES 0.004232221621 0.5 0.495767778379 +UniRef50_J6JBM8 0.992188233119 0.5 -0.492188233119 +UniRef50_Q035Y9 60 kDa chaperonin 0.01687557524 0.5 0.48312442476 +UniRef50_Q59091 3 oxoadipate CoA transferase subunit B 0.610854050897 0.5 -0.110854050897 +UniRef50_Q4A0W1 Transcriptional regulator 3.1343665322 0.5 -2.6343665322 +UniRef50_I6SW93 ABC transporter membrane protein subunit and ATP binding protein 1.6126439433 0.5 -1.1126439433 +UniRef50_A4E7V0 0.273340982181 0.5 0.226659017819 +UniRef50_UPI00046F4A68 xanthine dehydrogenase, partial 0.867952773443 0.5 -0.367952773443 +UniRef50_Q3J2Q4 3.41213554221 0.500000000006 -2.91213554222 +UniRef50_Q8UBL6 Uroporphyrinogen decarboxylase 0.236003803123 0.5 0.263996196877 +UniRef50_R6Z301 Threonine dehydratase medium form 0.254113975754 0.5 0.245886024246 +UniRef50_C5AVJ7 0.129579595164 0.5 0.370420404836 +UniRef50_M9VIM2 Phosphotransferase system, EIIC 0.00686741713748 0.5 0.493132582863 +UniRef50_UPI00035123E6 1.12793937362 0.5 -0.627939373621 +UniRef50_B8H0C0 RNA polymerase binding transcription factor DksA 0.5206426596 0.5 -0.0206426595998 +UniRef50_A5UM65 0.6391206156 0.5 -0.1391206156 +UniRef50_Q8CQJ9 Teichoic acid biosynthesis protein F 0.765657331449 0.5 -0.265657331449 +UniRef50_B2I1K5 Thiol 0.00875245960447 0.5 0.491247540396 +UniRef50_B7H204 Potassium uptake protein, TrkH family protein 0.0545525996824 0.5 0.445447400318 +UniRef50_O27292 Inosine 5 monophosphate dehydrogenase related protein III 4.6891309659 0.500000000003 -4.18913096591 +UniRef50_A4BCM8 Acylphosphatase, putative 0.199642018417 0.5 0.300357981583 +UniRef50_J0Q686 TatA E family twin arginine targeting protein translocase 0.539999772849 0.5 -0.0399997728488 +UniRef50_UPI0003138E18 hypothetical protein 2.09936398561 0.5 -1.59936398561 +UniRef50_D3UHV1 Type I restriction modification system, restriction enzyme 0.0109016171506 0.5 0.489098382849 +UniRef50_Q5GWT1 ISxac3 transposase 0.139081609605 0.5 0.360918390395 +UniRef50_UPI00031C00D7 hypothetical protein 0.289733725362 0.5 0.210266274638 +UniRef50_UPI0000E0E146 ribonuclease III 0.099646611223 0.5 0.400353388777 +UniRef50_W6S7D3 HAD superfamily hydrolase 0.137680965627 0.499999999999 0.362319034373 +UniRef50_D6H9U3 Acyl CoA dehydrogenase 0.120981099137 0.5 0.379018900863 +UniRef50_UPI0003790597 hypothetical protein 2.81223031712 0.499999999999 -2.31223031712 +UniRef50_UPI00046499F1 hypothetical protein, partial 1.76250762607 0.5 -1.26250762607 +UniRef50_P40786 Nucleoside specific channel forming protein tsx 0.607601593966 0.5 -0.107601593966 +UniRef50_Q1IWY0 Thioredoxin 0.0235452924745 0.5 0.476454707526 +UniRef50_P09832 Glutamate synthase [NADPH] small chain 0.691188931088 0.5 -0.191188931088 +UniRef50_Q6A9H6 Gamma glutamyl phosphate reductase 0.0441408488042 0.5 0.455859151196 +UniRef50_A1ALT4 DNA directed RNA polymerase subunit beta 2.39453167571 0.5 -1.89453167571 +UniRef50_A5IS43 0.323320755135 0.5 0.176679244865 +UniRef50_D7ZP07 TRAP transporter, DctM subunit 1.03634545881 0.5 -0.536345458807 +UniRef50_UPI000368CDC8 hypothetical protein, partial 1.329154706 0.5 -0.829154706 +UniRef50_A3MV69 Elongation factor 1 alpha 1.31205579132 0.499999999999 -0.812055791315 +UniRef50_P30138 Sulfur carrier protein ThiS adenylyltransferase 1.15066308307 0.5 -0.65066308307 +UniRef50_K7RUC4 3 carboxymuconate cyclase 0.0659712966277 0.5 0.434028703372 +UniRef50_A0Q087 Elongation factor P 0.0320332631344 0.5 0.467966736865 +UniRef50_Q9RVA5 SLH family protein 0.00207152731734 0.5 0.497928472682 +UniRef50_P76198 Inner membrane transport protein YdiN 0.934971122578 0.5 -0.434971122578 +UniRef50_T1Y784 CDP glycerol glycerophosphotransferase 7.4116320921 0.499999999999 -6.9116320921 +UniRef50_Q1RQN9 AfsA like protein 0.0922316818178 0.5 0.407768318182 +UniRef50_Q9RVC9 UPF0176 protein DR_1100 0.00642009028746 0.5 0.493579909713 +UniRef50_F0KG78 HTH type transcriptional regulator BetI 0.0105512129113 0.5 0.489448787089 +UniRef50_P42308 Citrate transporter 0.0469329410557 0.5 0.453067058944 +UniRef50_B2KBB9 Aspartate tRNA ligase 0.40962851635 0.5 0.0903714836502 +UniRef50_C1N0Q8 Predicted protein 3.14430158988 0.499999999999 -2.64430158988 +UniRef50_P76224 Inner membrane ABC transporter permease protein YnjC 0.838701610537 0.5 -0.338701610537 +UniRef50_Q6A7A7 Lysyl tRNA synthetase 0.0146460657286 0.5 0.485353934271 +UniRef50_UPI0004169BE3 ribonuclease 0.464501450713 0.5 0.0354985492873 +UniRef50_UPI0004725351 hypothetical protein 0.155234128266 0.5 0.344765871733 +UniRef50_A8AAF8 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 0.0252980104008 0.499999999999 0.4747019896 +UniRef50_UPI000288DACB nitrogen regulatory protein P II 11.9070749277 0.5 -11.4070749277 +UniRef50_UPI000441EF2C 1.34812841555 0.5 -0.848128415545 +UniRef50_A3PLF5 1.94142843938 0.5 -1.44142843938 +UniRef50_Q8X7R2 Acyl coenzyme A dehydrogenase 1.95853296263 0.500000000001 -1.45853296263 +UniRef50_C3L0X3 Proton sodium glutamate symporter 0.132606012124 0.5 0.367393987876 +UniRef50_UPI0003FA835C alkaline phosphatase 0.0704366372277 0.5 0.429563362772 +UniRef50_UPI00046A02CC hypothetical protein 1.40481113556 0.5 -0.904811135562 +UniRef50_A6LY49 Transcriptional regulator, TetR family 0.586134912642 0.5 -0.0861349126424 +UniRef50_I7EDS2 2.00427637756 0.5 -1.50427637756 +UniRef50_P12994 UPF0098 protein YbhB 0.00894412597469 0.5 0.491055874025 +UniRef50_UPI000473D6A4 16S rRNA methyltransferase, partial 0.352432550617 0.5 0.147567449383 +UniRef50_Q3DN63 1.58760333441 0.5 -1.08760333441 +UniRef50_UPI00037391D6 hypothetical protein 0.710076580375 0.5 -0.210076580375 +UniRef50_V9VP30 0.361079256017 0.5 0.138920743983 +UniRef50_R0QJ92 Dicarboxylate symporter family protein 0.0748844178935 0.5 0.425115582106 +UniRef50_T1ZL59 DeoR family transcriptional regulator 0.918905433412 0.5 -0.418905433412 +UniRef50_Q5P260 Glycerol 3 phosphate acyltransferase 0.0776319150963 0.5 0.422368084904 +UniRef50_A5UND9 Lipopolysaccharide cholinephosphotransferase, LicD family 3.12129553232 0.5 -2.62129553232 +UniRef50_B2UNA9 Polyribonucleotide nucleotidyltransferase 0.278571981326 0.5 0.221428018674 +UniRef50_V5U2H7 0.560378238825 0.5 -0.0603782388252 +UniRef50_Q1IYQ4 Prephenate dehydratase 0.0025190687287 0.5 0.497480931271 +UniRef50_UPI00036C7E56 hypothetical protein 0.0840638482703 0.500000000001 0.415936151729 +UniRef50_A7HEZ4 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00959884812452 0.5 0.490401151875 +UniRef50_UPI0004783FA2 hypothetical protein 0.318888604844 0.5 0.181111395156 +UniRef50_A6M2I5 Glycosyl transferase, family 2 0.237027026534 0.5 0.262972973466 +UniRef50_UPI000255A9DA hypothetical protein 3.28182515068 0.499999999998 -2.78182515068 +UniRef50_B7V115 Heme acquisition protein HasAp 0.255128635995 0.5 0.244871364005 +UniRef50_UPI0003612C6D hypothetical protein, partial 0.516932745397 0.5 -0.0169327453971 +UniRef50_M9VDC9 Trk system potassium uptake protein TrkA 0.0177894539391 0.5 0.482210546061 +UniRef50_B9J7V3 Oligopeptide ABC transporter 1.63990372829 0.5 -1.13990372829 +UniRef50_C5C0W1 Ribosome binding ATPase YchF 0.0193235090463 0.5 0.480676490954 +UniRef50_Q9AL94 Rubredoxin 0.222471991547 0.5 0.277528008452 +UniRef50_Q8PIM5 Chemotaxis response regulator protein glutamate methylesterase of group 2 operon 1.83235039625 0.5 -1.33235039625 +UniRef50_G7M3H0 Coagulation factor 5 8 type domain protein 0.0396004509033 0.5 0.460399549097 +UniRef50_A9GZR7 Aspartate carbamoyltransferase 1.35128453713 0.5 -0.851284537127 +UniRef50_D2VQJ9 Pyruvate dehydrogenase E1 component subunit alpha 2.2353722899 0.5 -1.7353722899 +UniRef50_D8M8V8 Singapore isolate B whole genome shotgun sequence assembly, scaffold_6 0.395258787665 0.5 0.104741212335 +UniRef50_W1DQS7 DNA gyrase subunit B 3.32245626018 0.500000000002 -2.82245626018 +UniRef50_P0AAP6 1.24171588385 0.5 -0.741715883852 +UniRef50_P31433 2.32441965433 0.499999999999 -1.82441965433 +UniRef50_UPI00035CCC77 hypothetical protein 0.250603239454 0.5 0.249396760546 +UniRef50_U6EXA7 Primosome assembly protein PriA 0.297920452875 0.5 0.202079547125 +UniRef50_UPI00041FF968 hypothetical protein 1.02161494603 0.5 -0.521614946028 +UniRef50_S9UZE8 0.252721227712 0.5 0.247278772288 +UniRef50_Q8DR59 Penicillin binding protein 1A 1.95346483478 0.5 -1.45346483478 +UniRef50_G4PHY8 ATP 2.41413168833 0.5 -1.91413168833 +UniRef50_I4F260 3.06284861894 0.5 -2.56284861894 +UniRef50_T1YAD1 Transposase 3.63747994123 0.5 -3.13747994124 +UniRef50_K7S0W1 Short chain dehydrogenase 0.040500542066 0.5 0.459499457934 +UniRef50_UPI0003B56E19 ribosome binding factor A 0.270043561667 0.5 0.229956438333 +UniRef50_A0A023RTE9 AsnC family transcriptional regulator 0.350628671073 0.5 0.149371328927 +UniRef50_B8GMP7 DoxX family protein 0.990590698716 0.5 -0.490590698716 +UniRef50_UPI00036B9DAF hypothetical protein 0.107427740601 0.5 0.392572259399 +UniRef50_A6BA71 Immunogenic protein 0.781071962534 0.5 -0.281071962534 +UniRef50_D4FB84 Outer membrane specific lipoprotein transporter subunit LolC family protein 0.299803490593 0.5 0.200196509407 +UniRef50_L1IEH2 0.258336838281 0.5 0.241663161719 +UniRef50_T1FJ63 1.97819751413 0.500000000001 -1.47819751414 +UniRef50_UPI000360C3D4 cytochrome C transmembrane protein 0.993015934246 0.5 -0.493015934246 +UniRef50_C8XIL9 Rhamnan synthesis F 0.318245647878 0.5 0.181754352122 +UniRef50_R6JHL0 0.429212132678 0.5 0.070787867322 +UniRef50_UPI0003643D3B hypothetical protein 0.312952885531 0.5 0.187047114469 +UniRef50_F0VXG5 Adenylate cyclase 0.332313882268 0.5 0.167686117732 +UniRef50_F0RLL2 0.00177455841403 0.5 0.498225441586 +UniRef50_UPI00047873F0 hypothetical protein 0.0372074921307 0.5 0.46279250787 +UniRef50_UPI0003B6C708 argininosuccinate lyase 0.926965894195 0.5 -0.426965894195 +UniRef50_Q5ZB52 Zinc knuckle containing protein like 0.226519904298 0.5 0.273480095702 +UniRef50_Q9ZM46 Translation initiation factor IF 2 0.0231059390125 0.5 0.476894060987 +UniRef50_UPI0003F739B0 hypothetical protein 2.29381171228 0.500000000003 -1.79381171228 +UniRef50_UPI00035E495A hypothetical protein 0.321354009528 0.5 0.178645990472 +UniRef50_F8F0F6 Appr 1 p processing domain protein 0.0217866304588 0.5 0.478213369542 +UniRef50_V6JJY2 0.0211583093793 0.5 0.478841690621 +UniRef50_O31676 6 carboxy 5,6,7,8 tetrahydropterin synthase 5.6055386238 0.50000000001 -5.10553862381 +UniRef50_UPI00032A023A PREDICTED 1.04759902033 0.5 -0.547599020329 +UniRef50_A6LX21 Molybdate metabolism regulator 0.193093376012 0.5 0.306906623988 +UniRef50_UPI000374B6B2 hypothetical protein 5.24143566028 0.500000000007 -4.74143566029 +UniRef50_UPI0003B781A0 DNA repair protein RecO 0.137641994878 0.5 0.362358005122 +UniRef50_UPI000467B9AD peptide ABC transporter ATP binding protein 1.85247555915 0.5 -1.35247555915 +UniRef50_Q9SAK4 Succinate semialdehyde dehydrogenase, mitochondrial 0.517838548549 0.5 -0.0178385485486 +UniRef50_Q8CS01 0.233030337019 0.5 0.266969662981 +UniRef50_P50097 Inosine 5 monophosphate dehydrogenase 0.0283722569275 0.5 0.471627743072 +UniRef50_A3M8U4 Heavy metal RND efflux membrane fusion protein CzcB family protein 0.0110198666534 0.5 0.488980133346 +UniRef50_D5RU62 Putative epstein Barr nuclear antigen 1 0.251471275642 0.5 0.248528724358 +UniRef50_F7V1W3 2.42662619633 0.5 -1.92662619633 +UniRef50_Q04KQ9 0.548135551936 0.5 -0.0481355519364 +UniRef50_Q9RWR5 DNA primase 0.00329640048399 0.5 0.496703599516 +UniRef50_UPI00040DB2E3 heme ABC transporter ATP binding protein 0.161528328171 0.5 0.338471671829 +UniRef50_UPI000262D0CC phosphoenolpyruvate protein phosphotransferase PtsP 0.111579756806 0.5 0.388420243194 +UniRef50_UPI00042B76EF Heavy metal atpase 5 isoform 1 0.529037614943 0.5 -0.029037614943 +UniRef50_F5M5U6 0.789208334486 0.5 -0.289208334486 +UniRef50_Q6ARN9 Bifunctional enzyme IspD IspF 0.365273429078 0.5 0.134726570922 +UniRef50_G4LIC7 2.74229185215 0.5 -2.24229185215 +UniRef50_UPI000252B7A9 0.429956570695 0.5 0.0700434293053 +UniRef50_A8TU87 Putative transposase 0.859191100732 0.5 -0.359191100732 +UniRef50_A3PRK6 Transcriptional regulator, LysR family 0.403955565834 0.5 0.0960444341662 +UniRef50_M9VAV5 0.0323893328154 0.5 0.467610667184 +UniRef50_UPI0003B7B5C8 nitrogen regulatory protein P II 1 0.224689172313 0.5 0.275310827687 +UniRef50_UPI00037696BA hypothetical protein 0.266031343882 0.5 0.233968656118 +UniRef50_B0VPR2 0.00650979222501 0.499999999999 0.493490207776 +UniRef50_H0DJE4 Putative lipoprotein 0.710904477256 0.5 -0.210904477256 +UniRef50_M4HVK3 Degenerate transposase 0.0828177902718 0.5 0.417182209728 +UniRef50_R6UMN9 L serine dehydratase alpha chain 0.223473394024 0.5 0.276526605976 +UniRef50_E3PRA3 Rubrerythrin 2.99767790782 0.499999999999 -2.49767790782 +UniRef50_UPI000474129C hypothetical protein 0.335187122095 0.5 0.164812877905 +UniRef50_Q3J096 1.41300378589 0.5 -0.913003785891 +UniRef50_Q3J090 6.00973104123 0.499999999999 -5.50973104123 +UniRef50_UPI000469755B secretion system protein E 0.586121125214 0.5 -0.0861211252136 +UniRef50_Q6F957 0.0365274522924 0.5 0.463472547707 +UniRef50_F8L7S5 UDP glucose 6 dehydrogenase 7.62982752911 0.499999999995 -7.12982752911 +UniRef50_K4KNP7 0.18488708306 0.5 0.31511291694 +UniRef50_A3PJZ1 PpiC type peptidyl prolyl cis trans isomerase 2.90470373089 0.5 -2.40470373089 +UniRef50_Q20EX8 Light independent protochlorophyllide reductase subunit N 1.19046089794 0.5 -0.690460897938 +UniRef50_Q48C77 Imidazoleglycerol phosphate dehydratase 0.0338848253435 0.5 0.466115174656 +UniRef50_Q9K3V7 Pyridoxine pyridoxamine 5 phosphate oxidase 2.76690004864 0.5 -2.26690004864 +UniRef50_Q90512 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 0.139022528359 0.5 0.360977471641 +UniRef50_UPI00016A4BBE hypothetical protein 1.37166408907 0.499999999998 -0.87166408907 +UniRef50_Q3J3B2 Glycosyltransferase, Succinoglycan biosynthesis protein exoL 2.10543711939 0.5 -1.60543711939 +UniRef50_UPI0004676BF2 hypothetical protein 2.54901964732 0.5 -2.04901964732 +UniRef50_UPI0003643AE6 hypothetical protein 8.09663438288 0.500000000002 -7.59663438288 +UniRef50_T1A3B5 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 3.22484240509 0.500000000001 -2.72484240509 +UniRef50_R5VTD5 ABC transporter permease protein 0.105482740541 0.5 0.394517259459 +UniRef50_C7NWU6 Cupin 2 conserved barrel domain protein 0.727040200493 0.5 -0.227040200493 +UniRef50_D6DES4 Amino acid transporters 0.0829391130087 0.5 0.417060886992 +UniRef50_UPI000428A00C spermidine putrescine ABC transporter ATP binding protein 1.00568573733 0.5 -0.505685737335 +UniRef50_Q9RVX3 0.00323193577947 0.5 0.496768064221 +UniRef50_X1YHV7 Catalase 0.141104420581 0.5 0.358895579419 +UniRef50_Q1GX76 Transcriptional regulator, TetR family 0.593223639173 0.5 -0.0932236391732 +UniRef50_UPI0004716697 peptidase S11 0.102092040673 0.499999999999 0.397907959328 +UniRef50_U5P5Q4 Competence protein CglA 0.546665990303 0.5 -0.0466659903027 +UniRef50_V2Y8C8 1.63324893377 0.500000000001 -1.13324893378 +UniRef50_A4WXA6 0.572126474113 0.5 -0.0721264741133 +UniRef50_B9KL58 5 oxoprolinase 2.62902415529 0.5 -2.12902415529 +UniRef50_P95649 Protein CbbY 0.0999232236069 0.5 0.400076776393 +UniRef50_UPI0003C44AB2 PREDICTED 0.0314419370979 0.5 0.468558062902 +UniRef50_F9H9Z5 Putative phage terminase, large subunit 0.051563011164 0.5 0.448436988836 +UniRef50_A1Z1V6 RepA 2.23122533758 0.500000000003 -1.73122533758 +UniRef50_UPI0004006A19 hypothetical protein 0.0177654306888 0.5 0.482234569311 +UniRef50_S5JZI7 Purine catabolism regulatory protein 0.00759684385616 0.5 0.492403156144 +UniRef50_Q4MM88 1.10200554207 0.5 -0.602005542069 +UniRef50_H0DZL7 Relaxase mobilization nuclease domain protein 1.29679162658 0.5 -0.796791626581 +UniRef50_UPI00037ECD4A hypothetical protein 0.40762281971 0.5 0.0923771802898 +UniRef50_U5YR77 Transcriptional regulator 6.52683122723 0.499999999989 -6.02683122722 +UniRef50_UPI000372834D hypothetical protein 0.112517926002 0.5 0.387482073998 +UniRef50_Q45068 Amino acid carrier protein AlsT 2.77431880886 0.500000000002 -2.27431880886 +UniRef50_Q28VF6 0.870664420919 0.5 -0.370664420919 +UniRef50_UPI00046AC1C8 hypothetical protein 0.174827400318 0.5 0.325172599682 +UniRef50_Q46939 Probable acetyl CoA acetyltransferase 1.26051826668 0.5 -0.760518266682 +UniRef50_R5UAF2 4.03919390629 0.499999999999 -3.53919390628 +UniRef50_A0A017LCS6 Radical SAM superfamily protein 6.05036393265 0.499999999999 -5.55036393265 +UniRef50_Q55786 Methionine synthase 0.020027633868 0.500000000001 0.479972366131 +UniRef50_Q038L3 Elongation factor Ts 2.46819450718 0.499999999999 -1.96819450718 +UniRef50_UPI00036D89F3 hypothetical protein 0.620484949473 0.5 -0.120484949473 +UniRef50_Q3IWX5 Putative tape measure protein 1.30331725659 0.5 -0.803317256588 +UniRef50_B5ZBT1 Urease subunit gamma 0.083172432834 0.5 0.416827567166 +UniRef50_P26172 Geranylgeranyl diphosphate reductase 1.20998762145 0.5 -0.709987621455 +UniRef50_B0V8T9 0.0195939603779 0.5 0.480406039622 +UniRef50_W0F7K7 Permease of the major facilitator superfamily 0.811981403012 0.5 -0.311981403012 +UniRef50_P75818 2.88821426428 0.499999999999 -2.38821426427 +UniRef50_UPI00039A620E potassium transporter KefB 0.153345901835 0.5 0.346654098165 +UniRef50_D2NU75 3 deoxy D arabino heptulosonate 7 phosphate synthase 0.0185403211717 0.5 0.481459678829 +UniRef50_A5V3C2 1.80902144211 0.500000000001 -1.30902144211 +UniRef50_G8V756 Glycosyltransferase 0.00615564104392 0.5 0.493844358956 +UniRef50_A4WQD3 Glutathione dependent formaldehyde activating, GFA 0.975800007755 0.5 -0.475800007755 +UniRef50_C5AV20 0.251466196314 0.5 0.248533803686 +UniRef50_UPI0003594D3C PREDICTED 0.0605553627244 0.5 0.439444637276 +UniRef50_G0DTF9 Ferrochelatase, HemH 0.00514804877409 0.5 0.494851951226 +UniRef50_Q03023 Serralysin 1.59363605493 0.5 -1.09363605493 +UniRef50_UPI0003679B46 hypothetical protein 0.214201882119 0.5 0.285798117881 +UniRef50_F7CYV8 0.0614386019761 0.5 0.438561398024 +UniRef50_A3M893 Putative hemagglutinin hemolysin related protein 0.0390718758282 0.5 0.460928124172 +UniRef50_Q6A889 0.024437815668 0.5 0.475562184332 +UniRef50_UPI00041B92EF hypothetical protein 0.179742493142 0.5 0.320257506858 +UniRef50_UPI000477E9DF thioredoxin 0.361763662277 0.5 0.138236337723 +UniRef50_UPI000366DA44 hypothetical protein 0.543763777542 0.5 -0.0437637775419 +UniRef50_P15006 Protein McrC 2.55473221558 0.499999999999 -2.05473221558 +UniRef50_UPI000366C9FA hypothetical protein, partial 0.500722061329 0.5 -0.000722061329135 +UniRef50_UPI000471640D adenosylcobinamide kinase 0.501034297543 0.5 -0.00103429754314 +UniRef50_UPI000409FACA 5 carboxymethyl 2 hydroxymuconate isomerase 0.141191294668 0.5 0.358808705332 +UniRef50_F5M3U6 Two component sensor histidine kinase 13.1773575241 0.499999999998 -12.6773575241 +UniRef50_S4PI94 Putative SLIT ROBO Rho GTPase activating protein 1 like protein 0.969747247118 0.5 -0.469747247118 +UniRef50_E2NSL6 0.0679348918342 0.5 0.432065108166 +UniRef50_UPI000471AB25 hypothetical protein 1.51852299427 0.5 -1.01852299427 +UniRef50_UPI0003B46C11 chemotaxis protein CheY 0.118906443304 0.5 0.381093556696 +UniRef50_Q8DSA7 1.55268476149 0.5 -1.05268476149 +UniRef50_Q8S0V8 Splicing coactivator subunit like protein 0.0627792823446 0.500000000001 0.437220717655 +UniRef50_UPI000225BECB nucleoside triphosphate diphosphatase 2.53857655925 0.5 -2.03857655925 +UniRef50_R9SJ55 F420 0 1.02683632921 0.5 -0.526836329214 +UniRef50_G8VD48 ABC transporter, ATP binding protein 0.0425796458483 0.5 0.457420354152 +UniRef50_A6LR80 NAD dependent aldehyde dehydrogenase like protein 0.0603852992868 0.499999999999 0.439614700714 +UniRef50_F5XNW0 0.0290904530825 0.5 0.470909546918 +UniRef50_UPI00046EC7BE hypothetical protein 0.1612910883 0.5 0.338708911701 +UniRef50_P0AEG0 Dipeptide transport system permease protein DppB 2.84401655107 0.500000000002 -2.34401655107 +UniRef50_T1Y8L2 Oligopeptide binding protein oppA 2.38580055905 0.5 -1.88580055905 +UniRef50_UPI000300BC1D hypothetical protein 0.236905763563 0.5 0.263094236437 +UniRef50_UPI00047DB8CE hypothetical protein 1.12833207911 0.5 -0.628332079109 +UniRef50_UPI0004785B37 hypothetical protein 2.37344096927 0.5 -1.87344096927 +UniRef50_A6WXJ2 Porphobilinogen deaminase 1.70459807493 0.5 -1.20459807493 +UniRef50_D3SLJ8 UDP glucose 4 epimerase 0.679850709527 0.5 -0.179850709527 +UniRef50_A7WYP0 Ribosomal RNA small subunit methyltransferase A 1.86329009784 0.5 -1.36329009784 +UniRef50_P65560 1.78401608064 0.5 -1.28401608064 +UniRef50_Q6A6Z5 Malate dehydrogenase 0.0440761853964 0.5 0.455923814604 +UniRef50_Q62KH7 0.152999775964 0.5 0.347000224036 +UniRef50_E6E0D9 0.126265737961 0.5 0.373734262039 +UniRef50_F2NQ48 TRAP transporter solute receptor, TAXI family 0.0114007912107 0.5 0.488599208789 +UniRef50_P0A5M3 Transcription termination antitermination protein NusA 0.0309247191744 0.5 0.469075280825 +UniRef50_E6E9X3 0.323663810956 0.5 0.176336189044 +UniRef50_G7S7S5 Phosphate specific transport system accessory protein PhoU 3.34755742091 0.5 -2.84755742091 +UniRef50_A7INS2 Acyl CoA dehydrogenase domain protein 1.4420559467 0.5 -0.942055946702 +UniRef50_UPI00037BAB2A hypothetical protein 1.31011623737 0.5 -0.810116237365 +UniRef50_R4XNN0 4.82012749069 0.500000000003 -4.3201274907 +UniRef50_N2N059 CRISPR associated endonuclease Cas3 HD 0.153226473858 0.5 0.346773526142 +UniRef50_M5EKG8 1.29550465334 0.5 -0.795504653341 +UniRef50_UPI00036A1325 hypothetical protein 2.40278017475 0.499999999999 -1.90278017475 +UniRef50_UPI00036A73F1 hypothetical protein 0.966108315079 0.5 -0.466108315079 +UniRef50_B7H2D5 0.00479091425974 0.5 0.49520908574 +UniRef50_D6EKY2 Integral membrane protein 0.0364692581238 0.5 0.463530741876 +UniRef50_Q8CLS1 0.061743700378 0.5 0.438256299622 +UniRef50_Q122S9 Transcriptional regulator, LysR family 0.908664991493 0.5 -0.408664991493 +UniRef50_R7DG92 0.597491247005 0.5 -0.0974912470053 +UniRef50_S4XSR0 0.153045702241 0.5 0.346954297759 +UniRef50_D7FGF4 Type I restriction enzyme, R subunit 0.027685052589 0.5 0.472314947411 +UniRef50_UPI00040DE7DB hypothetical protein 0.737824355391 0.5 -0.237824355391 +UniRef50_S4X6I5 Bifunctional autolysin 5.12621251632 0.5 -4.62621251632 +UniRef50_Q9Z3Q8 Rhizobactin siderophore biosynthesis protein RhbE 0.00760344892515 0.5 0.492396551075 +UniRef50_T1Y630 Long chain fatty acid CoA ligase 2.31305118232 0.499999999997 -1.81305118231 +UniRef50_UPI00037871A9 hypothetical protein 0.286457920745 0.5 0.213542079255 +UniRef50_UPI000474835A threonine dehydratase 0.300414617651 0.5 0.199585382349 +UniRef50_UPI0003655EFD multidrug transporter 1.82822104357 0.5 -1.32822104357 +UniRef50_UPI0003AF1932 PREDICTED 0.570109079909 0.5 -0.0701090799087 +UniRef50_A6M0E2 Peptidase S8 and S53, subtilisin, kexin, sedolisin 0.0770816402248 0.5 0.422918359775 +UniRef50_UPI0003B4AB4D ABC transporter 0.301080631967 0.5 0.198919368033 +UniRef50_Q5P6J7 Magnesium transporter 0.0355376719964 0.5 0.464462328004 +UniRef50_C9A5A3 0.00174306699776 0.5 0.498256933002 +UniRef50_A6M351 PAS PAC sensor signal transduction histidine kinase 0.270983354635 0.5 0.229016645365 +UniRef50_P38422 D alanyl D alanine carboxypeptidase DacF 0.0312717992683 0.5 0.468728200732 +UniRef50_UPI00046F18D5 monovalent cation proton antiporter subunit MnhG PhaG 0.0388744724854 0.5 0.461125527514 +UniRef50_Q8CP12 ComEC late competence protein 3 1.10085864375 0.5 -0.600858643746 +UniRef50_Q4EJM8 0.564495266207 0.5 -0.0644952662072 +UniRef50_Q5HL27 Conserved domain protein 1.09017249362 0.5 -0.590172493617 +UniRef50_UPI000364A00D acetoin dehydrogenase, partial 0.854163843792 0.5 -0.354163843792 +UniRef50_A0A008LUF2 0.375211893643 0.5 0.124788106357 +UniRef50_W1IWA4 0.119176776667 0.5 0.380823223333 +UniRef50_L0GPC1 Site specific recombinase XerD 0.52240145742 0.5 -0.0224014574203 +UniRef50_F8JBM1 Glycine betaine proline transporter, membrane component of ABC transporter 0.917581200079 0.5 -0.417581200079 +UniRef50_K4PPW1 Formate nitrite transporter 0.886304454589 0.5 -0.386304454589 +UniRef50_D4HFJ4 0.0250277491329 0.5 0.474972250867 +UniRef50_A6LYU1 Phage related protein 0.636726129214 0.5 -0.136726129214 +UniRef50_R6ZG02 Precorrin 4 C methyltransferase 0.741488008787 0.5 -0.241488008787 +UniRef50_UPI00000D3C44 single stranded DNA binding protein 0.00317519494756 0.5 0.496824805052 +UniRef50_E6JQR4 ISSep1 like transposase 2.92025531524 0.5 -2.42025531524 +UniRef50_A1WG09 Binding protein dependent transport systems inner membrane component 9.86858169083 0.499999999994 -9.36858169082 +UniRef50_UPI000273DF52 0.250687134934 0.5 0.249312865066 +UniRef50_A0A059IL14 3.25844345999 0.500000000003 -2.75844345999 +UniRef50_UPI0003657F9C hypothetical protein 3.39459542424 0.499999999995 -2.89459542423 +UniRef50_P23841 HTH type transcriptional regulator XapR 5.23042571472 0.500000000001 -4.73042571472 +UniRef50_A6M2W8 Oxidoreductase domain protein 0.406967647338 0.5 0.0930323526618 +UniRef50_F3U531 0.899853156646 0.5 -0.399853156646 +UniRef50_UPI0003292D12 PREDICTED 0.149315253073 0.5 0.350684746926 +UniRef50_Q8XIQ9 Cobalt dependent inorganic pyrophosphatase 0.832929857647 0.5 -0.332929857647 +UniRef50_F3U537 1.55475709365 0.5 -1.05475709365 +UniRef50_B6IP81 1.25386701257 0.5 -0.753867012571 +UniRef50_UPI000361D30F hypothetical protein 1.1711742347 0.5 -0.671174234705 +UniRef50_UPI0002554CCB nitrogen regulatory protein P II 0.0995729345415 0.5 0.400427065458 +UniRef50_UPI0003B4715F hypothetical protein 0.00949732949284 0.5 0.490502670507 +UniRef50_P52048 3.6519610088 0.5 -3.1519610088 +UniRef50_UPI000471D6BF ferredoxin, partial 0.12396149964 0.5 0.37603850036 +UniRef50_B6ICF9 TraW protein 8.11800821521 0.499999999992 -7.6180082152 +UniRef50_H4VIE3 1.6228028886 0.499999999999 -1.1228028886 +UniRef50_Q9RS28 GGDEF family protein 0.0060593068222 0.5 0.493940693178 +UniRef50_X0X8Y7 Marine sediment metagenome DNA, contig 0.647951648857 0.5 -0.147951648857 +UniRef50_UPI0003B5F7BE hypothetical protein 1.85915359956 0.5 -1.35915359956 +UniRef50_Q03J15 5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase 2.69143017344 0.5 -2.19143017344 +UniRef50_Q1GUX8 Phosphate binding protein, putative 0.385211049469 0.5 0.114788950531 +UniRef50_G7M2L7 Electron transport complex subunit D 0.195655618731 0.5 0.304344381269 +UniRef50_P37551 Pur operon repressor 0.383484430821 0.5 0.116515569179 +UniRef50_M4FTZ0 0.0323406312197 0.5 0.46765936878 +UniRef50_I9KL58 0.987990784449 0.5 -0.487990784449 +UniRef50_UPI00036E9BD8 hypothetical protein 0.843049060636 0.5 -0.343049060636 +UniRef50_S6AYL1 1.01266140501 0.5 -0.51266140501 +UniRef50_UPI000395630A PREDICTED 0.302478203736 0.5 0.197521796264 +UniRef50_J7QI73 Peptidase U35 phage prohead HK97 0.3563097445 0.5 0.1436902555 +UniRef50_Q2BPZ8 AsmA family superfamily protein 0.428501286606 0.5 0.0714987133942 +UniRef50_P75804 Soluble aldose sugar dehydrogenase YliI 3.42148657809 0.499999999999 -2.92148657809 +UniRef50_U5R0R0 0.409691031628 0.5 0.0903089683722 +UniRef50_Q7MB61 Glucosamine 6 phosphate deaminase 0.357621188627 0.5 0.142378811373 +UniRef50_UPI000346E108 diguanylate cyclase 0.0176250912605 0.5 0.48237490874 +UniRef50_W7DA81 L xylulose 5 phosphate 3 epimerase 0.551940716516 0.5 -0.0519407165164 +UniRef50_UPI00041EE847 cytochrome C 0.0435931222932 0.5 0.456406877707 +UniRef50_UPI000478FA68 hypothetical protein 1.65795701077 0.499999999998 -1.15795701077 +UniRef50_Q8YJ91 Chaperone protein ClpB 0.996416899415 0.5 -0.496416899415 +UniRef50_A6LTD8 Extracellular solute binding protein, family 1 0.10166808491 0.5 0.39833191509 +UniRef50_UPI00036F72CE hypothetical protein, partial 2.97169964255 0.5 -2.47169964255 +UniRef50_F0YFM2 Expressed protein 2.67395971757 0.5 -2.17395971757 +UniRef50_E6U512 Binding protein dependent transport systems inner membrane component 0.0746420423688 0.5 0.425357957631 +UniRef50_M9VB01 0.199922838172 0.5 0.300077161828 +UniRef50_Q633V5 Non canonical purine NTP pyrophosphatase 1.31041385001 0.5 -0.810413850009 +UniRef50_C3MD65 Phosphoribosylaminoimidazole succinocarboxamide synthase 4.58762917074 0.499999999998 -4.08762917074 +UniRef50_W7SSM3 Peptidase C14, caspase catalytic subunit p20 0.00670042024222 0.5 0.493299579758 +UniRef50_G2JG48 ABC transporter 0.0898522963339 0.5 0.410147703666 +UniRef50_UPI0004693EA9 chemotaxis protein 2.88705242317 0.5 -2.38705242317 +UniRef50_A6LS61 5 nucleotidase SurE 0.363382936066 0.5 0.136617063934 +UniRef50_UPI000255BE74 amino acid ABC transporter substrate binding protein permease, partial 0.291475778071 0.5 0.208524221929 +UniRef50_UPI000465DFA0 hypothetical protein 3.40498983812 0.499999999998 -2.90498983811 +UniRef50_UPI0003EBF881 PREDICTED 0.29641681635 0.5 0.20358318365 +UniRef50_Q5HLG3 Sensor protein LytS 1.66926427184 0.499999999999 -1.16926427184 +UniRef50_Q8W390 Putative chitinase 0.304321765087 0.5 0.195678234913 +UniRef50_M9RU26 1.23049342141 0.5 -0.730493421408 +UniRef50_Q2P1L2 tRNA pseudouridine synthase D 0.228403619459 0.5 0.271596380541 +UniRef50_Q5HRU1 Glycosyl transferase, group 1 family protein 1.195740457 0.5 -0.695740457001 +UniRef50_Q834B4 Phosphate import ATP binding protein PstB 1 0.00978862119206 0.5 0.490211378808 +UniRef50_F0ML51 0.0162881722401 0.5 0.48371182776 +UniRef50_P45352 Thymidylate synthase 0.138028725545 0.5 0.361971274455 +UniRef50_UPI00039C4089 thioredoxin 0.237404531038 0.5 0.262595468962 +UniRef50_A6X351 Iron containing alcohol dehydrogenase 0.0170998678164 0.5 0.482900132184 +UniRef50_E8U4V1 GAF domain protein 0.0132155633217 0.500000000001 0.486784436678 +UniRef50_UPI0002627C34 malonyl CoA ACP transacylase 0.0505964282389 0.5 0.449403571761 +UniRef50_UPI00037877B4 hypothetical protein 0.172814869788 0.5 0.327185130212 +UniRef50_UPI00036AE186 hypothetical protein 0.272540808787 0.5 0.227459191213 +UniRef50_P45766 Putative amino acid ABC transporter binding protein YhdW 1.39508770946 0.5 -0.895087709456 +UniRef50_M5AC54 0.598840713387 0.5 -0.098840713387 +UniRef50_M9S0P6 LysR family transcriptional regulator 0.08860231679 0.5 0.41139768321 +UniRef50_R7CZZ3 0.286700204036 0.5 0.213299795964 +UniRef50_D3QFY5 Integral membrane protein 1.16583094117 0.5 -0.665830941172 +UniRef50_M5EV42 3.29786480693 0.500000000001 -2.79786480693 +UniRef50_T0TDZ2 Elongation factor G 0.668623447369 0.5 -0.168623447369 +UniRef50_U0D6A1 Outer membrane protein 0.436425649555 0.5 0.0635743504449 +UniRef50_C6SP66 1.0197177364 0.5 -0.519717736397 +UniRef50_U3TTP8 TonB dependent siderophore receptor 0.962271488679 0.5 -0.462271488679 +UniRef50_UPI000466FDE3 hypothetical protein 0.389193029209 0.5 0.110806970791 +UniRef50_Q6FEZ0 0.00798012954502 0.5 0.492019870455 +UniRef50_W0H6X8 0.445756685954 0.5 0.0542433140458 +UniRef50_R6YEM1 0.00553528771978 0.5 0.49446471228 +UniRef50_C6SPR1 Dihydrolipoyl dehydrogenase 1.7439085711 0.5 -1.2439085711 +UniRef50_A4WEY1 tRNA pseudouridine synthase B 0.846437738786 0.5 -0.346437738786 +UniRef50_W8U3V5 Group II intron encoded protein LtrA 0.0802945710037 0.5 0.419705428996 +UniRef50_F3U2K9 Peptidase C14, caspase catalytic subunit p20 0.603835709788 0.5 -0.103835709788 +UniRef50_V6HXV9 Winged helix turn helix domain protein 0.0509592961375 0.5 0.449040703862 +UniRef50_U6JQ37 0.0118184601109 0.5 0.488181539889 +UniRef50_Q6GFX2 Catabolite control protein A 3.02692399477 0.500000000002 -2.52692399478 +UniRef50_H6SJD1 Cysteine desulfuration protein SufE 3.7074494911 0.5 -3.2074494911 +UniRef50_G1D325 Gp79 0.326957970696 0.5 0.173042029304 +UniRef50_Q8KTE1 Fumarate hydratase class II 1.25033574662 0.5 -0.750335746618 +UniRef50_I1AZW8 Chromosomal replication initiator, DnaA 1.5431783939 0.5 -1.0431783939 +UniRef50_F2JI77 DEAD DEAH box helicase domain protein 0.062116479047 0.5 0.437883520953 +UniRef50_UPI0004663859 MULTISPECIES 0.177617995666 0.5 0.322382004334 +UniRef50_F9YYA3 Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC 0.0101428631169 0.5 0.489857136883 +UniRef50_G8VHB7 0.0464204763629 0.5 0.453579523637 +UniRef50_UPI00035D3834 hypothetical protein, partial 0.214535372278 0.5 0.285464627722 +UniRef50_A6KYV3 0.00372394927024 0.5 0.49627605073 +UniRef50_Q8CQY5 2.17803340068 0.5 -1.67803340068 +UniRef50_G0DXI1 0.0175937833709 0.499999999999 0.48240621663 +UniRef50_UPI0002C3D833 ATP dependent RNA helicase DDX50, putative 0.0897985549315 0.5 0.410201445068 +UniRef50_UPI00036344A4 hypothetical protein 0.308863004402 0.5 0.191136995598 +UniRef50_C6SS95 10.9827194634 0.499999999987 -10.4827194634 +UniRef50_Q8CQY8 1.81499351092 0.5 -1.31499351092 +UniRef50_UPI0004695099 pseudouridine synthase 0.174983211788 0.5 0.325016788212 +UniRef50_C5WGK5 0.216902176006 0.5 0.283097823994 +UniRef50_P0A0V8 Capsule polysaccharide export outer membrane protein CtrA 0.0149104196578 0.5 0.485089580342 +UniRef50_UPI00037565DC hypothetical protein 0.643027168731 0.5 -0.143027168731 +UniRef50_F0YFY7 Expressed protein 0.297441805636 0.5 0.202558194364 +UniRef50_W0YT50 Filamentous hemagglutinin, intein containing 0.680387754504 0.5 -0.180387754504 +UniRef50_A0A013K1T0 Putative cell surface adhesin domain protein 1.39208850626 0.499999999999 -0.89208850626 +UniRef50_K5HQD7 0.364842132803 0.5 0.135157867197 +UniRef50_UPI0001D2F1B0 Rrf2 family transcriptional regulator 0.541449354958 0.5 -0.0414493549577 +UniRef50_E3YLY4 Pts system fructose specific eiibc component 0.0293929062862 0.5 0.470607093714 +UniRef50_UPI00042CC86F 0.111647067537 0.499999999999 0.388352932464 +UniRef50_M6FTS0 AAA domain protein 0.322914240061 0.5 0.177085759939 +UniRef50_P54542 1.51880424308 0.500000000001 -1.01880424308 +UniRef50_UPI0004756AEC Surfeit locus 1 family protein 0.12143905551 0.5 0.37856094449 +UniRef50_UPI000360228D hypothetical protein 0.0595371420269 0.5 0.440462857973 +UniRef50_U2T0K4 0.139071163977 0.5 0.360928836023 +UniRef50_A0A017BYI2 DEAD DEAH box helicase family protein 0.0117998587252 0.5 0.488200141275 +UniRef50_P31801 Sodium proton antiporter ChaA 7.34100420931 0.500000000006 -6.84100420932 +UniRef50_B9KWM6 LysR family transcriptional regulatory protein 2.38451063828 0.5 -1.88451063828 +UniRef50_Q73VG0 LigA 0.211055954338 0.5 0.288944045662 +UniRef50_UPI0003AA941F hypothetical protein 0.1039615517 0.5 0.3960384483 +UniRef50_Q47684 Antitoxin YafW 0.0126089531003 0.5 0.4873910469 +UniRef50_D5APK9 DMSO TMAO sensor hybrid histidine kinase 2.49242635902 0.5 -1.99242635902 +UniRef50_UPI00041F08CB MULTISPECIES 0.067355720003 0.5 0.432644279997 +UniRef50_UPI00047676D6 glyoxal reductase 0.400951029299 0.5 0.0990489707007 +UniRef50_I1ZNC1 0.0667419727068 0.5 0.433258027293 +UniRef50_UPI00016C0F2C oligopeptide ABC transporter ATP binding protein 0.590987624822 0.5 -0.0909876248218 +UniRef50_UPI00024911A4 gluconate transporter 0.257478404973 0.5 0.242521595027 +UniRef50_A6UZP9 10.9170511562 0.499999999991 -10.4170511562 +UniRef50_UPI000365871E Clp protease 0.159531110787 0.5 0.340468889212 +UniRef50_W0HC37 Substrate binding region of ABC type glycine betaine transport system 0.594599927972 0.5 -0.0945999279723 +UniRef50_A1D4H8 0.110739839977 0.5 0.389260160023 +UniRef50_R5XFF7 ABC transporter substrate binding protein QAT family 0.173620951194 0.5 0.326379048806 +UniRef50_UPI00036D9D83 hypothetical protein 2.83258167628 0.500000000001 -2.33258167629 +UniRef50_Q9JX66 Dihydroorotate dehydrogenase 0.0191911772074 0.5 0.480808822793 +UniRef50_UPI000371D657 hypothetical protein 0.131126963196 0.5 0.368873036804 +UniRef50_O29581 Adenylate kinase 0.25695731124 0.5 0.24304268876 +UniRef50_Q45582 N acetylmuramic acid 6 phosphate etherase 1.19540305803 0.5 -0.69540305803 +UniRef50_P47719 DNA gyrase subunit A 0.453842983095 0.5 0.0461570169049 +UniRef50_Q6FAU5 0.0224537889206 0.5 0.477546211079 +UniRef50_UPI0003AA7974 signal recognition particle 0.0402058500744 0.5 0.459794149926 +UniRef50_Q52675 Dimethyl sulfoxide trimethylamine N oxide reductase 1.91395836928 0.5 -1.41395836928 +UniRef50_Q2LUC8 Chorismate synthase 0.177797203411 0.5 0.322202796589 +UniRef50_B1X8Q2 Ribosomal RNA large subunit methyltransferase K L 3.58948165102 0.499999999999 -3.08948165102 +UniRef50_F9YZR8 Iron transport system substrate binding protein 0.0211174114955 0.5 0.478882588505 +UniRef50_UPI0003B48391 LytTR family transcriptional regulator 0.234106221926 0.5 0.265893778074 +UniRef50_UPI0004411AE2 hypothetical protein AURDEDRAFT_166722 0.209124322847 0.5 0.290875677153 +UniRef50_UPI0003941221 PREDICTED 3.44256737733 0.499999999998 -2.94256737733 +UniRef50_Q87DN0 Tyrosine recombinase XerD 1.74969622467 0.5 -1.24969622467 +UniRef50_Q67WC5 0.55039976352 0.5 -0.05039976352 +UniRef50_Q4FQA2 0.109265588805 0.5 0.390734411195 +UniRef50_H2G6W3 Protein NrdI 0.117307099777 0.5 0.382692900223 +UniRef50_M4K0R6 LacI family transcriptional regulator 0.419923965187 0.5 0.0800760348126 +UniRef50_UPI0003FCCCFB hypothetical protein 0.282077485932 0.5 0.217922514068 +UniRef50_T0T3K2 Metallo beta lactamase domain protein 0.015773712924 0.500000000001 0.484226287075 +UniRef50_Q9L0Q6 Cysteine tRNA ligase 0.126765277518 0.500000000001 0.373234722481 +UniRef50_U0AT69 Metabolite transporter YdjK 1.19835601961 0.5 -0.698356019612 +UniRef50_A7KA93 0.185899822172 0.5 0.314100177828 +UniRef50_Q5LXH7 Universal stress family protein 21.6660003844 0.499999999995 -21.1660003844 +UniRef50_UPI0004700444 hypothetical protein 0.493010684235 0.5 0.00698931576528 +UniRef50_Q9HVP8 Dephospho CoA kinase 0.673596001529 0.5 -0.173596001529 +UniRef50_Q8TQW9 Putative ABC transporter ATP binding protein MA_1418 2.18569993794 0.5 -1.68569993794 +UniRef50_Q5LWX2 Flagellar basal body rod protein FlgC 6.95717508884 0.5 -6.45717508884 +UniRef50_UPI00047CD293 DNA recombination protein RecO 0.142864414188 0.5 0.357135585812 +UniRef50_P97030 Epoxyqueuosine reductase 2.04188326283 0.5 -1.54188326283 +UniRef50_A4XW57 Hpt protein 1.79366108253 0.5 -1.29366108253 +UniRef50_Q3IVV6 Polysaccharide export transporter, PST Family 1.60719431671 0.500000000002 -1.10719431671 +UniRef50_Q3JX83 5.06685796884 0.500000000002 -4.56685796884 +UniRef50_D8JJQ0 Iron ABC transporter membrane protein 0.016597251704 0.500000000001 0.483402748295 +UniRef50_W7W788 8.04516139829 0.500000000002 -7.54516139829 +UniRef50_I7EPE2 S adenosylmethionine uptake transporter like protein 3.93962790989 0.5 -3.43962790989 +UniRef50_Q8NKC2 Enolase 1 2 0.221041512114 0.5 0.278958487886 +UniRef50_A5N5L0 0.0395130344726 0.5 0.460486965527 +UniRef50_UPI0003B31866 amino acid transporter 0.304527632748 0.5 0.195472367252 +UniRef50_B2V575 O antigen polymerase family 0.156845442272 0.500000000001 0.343154557727 +UniRef50_UPI00037E8A3A hypothetical protein, partial 1.20508279909 0.5 -0.705082799089 +UniRef50_K4PVR2 CBS domain protein 2.24652233782 0.5 -1.74652233782 +UniRef50_A5CWX9 Glutamate tRNA ligase 0.153828294985 0.5 0.346171705015 +UniRef50_UPI00035ED9D3 hypothetical protein 0.324553926808 0.5 0.175446073192 +UniRef50_G7MC17 Universal protein YeaZ 0.0618012395729 0.5 0.438198760427 +UniRef50_UPI0003613988 hypothetical protein 1.30522688117 0.5 -0.805226881175 +UniRef50_R1FS00 0.0590200411118 0.5 0.440979958888 +UniRef50_UPI000464095F hypothetical protein 0.0493516837668 0.5 0.450648316233 +UniRef50_P39576 Branched chain amino acid aminotransferase 2 2.06803332763 0.500000000001 -1.56803332763 +UniRef50_UPI000464121D hypothetical protein 0.260415926601 0.5 0.239584073399 +UniRef50_K1RE18 0.5147118737 0.5 -0.0147118737003 +UniRef50_P15327 Bisphosphoglycerate mutase 0.288076857862 0.5 0.211923142138 +UniRef50_F0XXU5 0.0386624012506 0.5 0.461337598749 +UniRef50_F0YHA3 9.52653994168 0.500000000004 -9.02653994169 +UniRef50_UPI000462977B histidine kinase 0.867739313628 0.5 -0.367739313628 +UniRef50_A0A059MSQ1 Nitrate reductase 0.609683129487 0.5 -0.109683129487 +UniRef50_F9Z138 0.0253625644639 0.5 0.474637435536 +UniRef50_UPI00046D9133 phosphoenolpyruvate carboxykinase 0.00936009170011 0.5 0.4906399083 +UniRef50_Q8KGA4 tRNA N6 adenosine threonylcarbamoyltransferase 0.304988063933 0.5 0.195011936067 +UniRef50_E2NSW7 0.337502545237 0.5 0.162497454763 +UniRef50_Q3IUZ2 Heme oxygenase 5.83263474019 0.500000000002 -5.3326347402 +UniRef50_B2TJJ8 tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA 0.216282532306 0.5 0.283717467694 +UniRef50_Q16BP5 0.63115620774 0.5 -0.13115620774 +UniRef50_D7BLM1 Binding protein dependent transport systems inner membrane component 0.026336037837 0.5 0.473663962163 +UniRef50_R5GV02 Secreted protein containing YkuD domain 0.0311729606153 0.5 0.468827039385 +UniRef50_B7GH97 ABC type phosphate transport system, permease component 1.55563031672 0.5 -1.05563031672 +UniRef50_D2NRP6 Coenzyme F420 reducing hydrogenase, beta subunit 0.152507653925 0.5 0.347492346075 +UniRef50_UPI000366D18B hypothetical protein 0.106476779392 0.5 0.393523220608 +UniRef50_B5ZBT9 Proline tRNA ligase 0.116315419528 0.499999999999 0.383684580472 +UniRef50_Q8UIG9 Non canonical purine NTP pyrophosphatase 3.40289378185 0.5 -2.90289378185 +UniRef50_UPI0004643C42 hypothetical protein, partial 0.432276507241 0.5 0.0677234927593 +UniRef50_UPI00046FAF78 hypothetical protein 0.0876460223315 0.5 0.412353977668 +UniRef50_B2UXE1 0.259273962324 0.5 0.240726037676 +UniRef50_K0DDY9 Microcin C7 resistance MccF related protein 2.46588140968 0.5 -1.96588140968 +UniRef50_Q6GH34 N anthranilate isomerase 0.929058753082 0.5 -0.429058753082 +UniRef50_A8L6K4 LexA repressor 1.42865045368 0.5 -0.928650453676 +UniRef50_Q9Z3Z9 Toluene tolerance protein ttg2D 0.193238533616 0.5 0.306761466384 +UniRef50_I0I649 Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK 0.392175225733 0.5 0.107824774267 +UniRef50_F6D1L5 Xylose isomerase domain containing protein TIM barrel 1.09912370048 0.5 -0.599123700477 +UniRef50_Q9RZ79 Transposase, putative 0.00143904818389 0.5 0.498560951816 +UniRef50_P0AB12 Inner membrane protein YccF 1.66811920139 0.500000000001 -1.16811920139 +UniRef50_A6LXM0 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen 0.0664345243541 0.5 0.433565475646 +UniRef50_L5KNJ4 WD repeat containing protein 87 1.25033617247 0.5 -0.750336172473 +UniRef50_UPI000377831E hypothetical protein 0.178192678202 0.5 0.321807321798 +UniRef50_UPI0003B6F3ED nucleoside triphosphate diphosphatase 1.16260589581 0.5 -0.66260589581 +UniRef50_A1B0E7 Acetylglutamate kinase 0.908498970705 0.5 -0.408498970705 +UniRef50_Q5P1C8 0.254801370249 0.5 0.245198629751 +UniRef50_X1KF22 Marine sediment metagenome DNA, contig 3.05335075069 0.5 -2.55335075069 +UniRef50_Q07GR3 3.34093710042 0.499999999999 -2.84093710042 +UniRef50_E6MWK1 SbmA BacA like family protein 0.04583118084 0.499999999999 0.454168819161 +UniRef50_W6KN67 Putative NADH ubiquinone oxidoreductase 40 kDa subunit 4.2733729734 0.499999999999 -3.7733729734 +UniRef50_UPI0003B48A00 GMP synthase 0.347841536931 0.5 0.152158463069 +UniRef50_UPI00032AF5D9 PREDICTED 0.595475828897 0.5 -0.0954758288966 +UniRef50_Q9ZKP0 Glycerol 3 phosphate dehydrogenase [NAD+] 0.0493683187065 0.5 0.450631681294 +UniRef50_Q8CPV9 Poly D alanine transfer protein 3.03088243716 0.499999999998 -2.53088243715 +UniRef50_G8VMV3 Sialidase 0.0100749722053 0.5 0.489925027794 +UniRef50_Q1MPX7 4 hydroxy tetrahydrodipicolinate synthase 0.123537634577 0.499999999999 0.376462365423 +UniRef50_UPI00037FAB1B hypothetical protein, partial 0.00562793921246 0.5 0.494372060787 +UniRef50_B0TQM3 3 isopropylmalate dehydratase small subunit 0.278359242492 0.5 0.221640757508 +UniRef50_Q1JGW5 NAD kinase 2.27417031616 0.5 -1.77417031616 +UniRef50_A7I616 Imidazole glycerol phosphate synthase subunit HisF 0.0807252534659 0.5 0.419274746534 +UniRef50_F6CVN5 GAF domain protein 1.20168963556 0.5 -0.701689635563 +UniRef50_Q8ZRF8 0.977613646881 0.5 -0.477613646881 +UniRef50_D3DYP4 Glycosyl transferase GT2 family 3.80849873851 0.5 -3.30849873851 +UniRef50_I6T9G0 Transmembrane protein 1.77600432257 0.5 -1.27600432257 +UniRef50_UPI000288BCD3 nitrate ABC transporter ATPase 1.7817197944 0.5 -1.2817197944 +UniRef50_C1N5D9 Predicted protein 0.220292244897 0.5 0.279707755103 +UniRef50_UPI0004636F1F hypothetical protein 1.71675407174 0.499999999999 -1.21675407174 +UniRef50_C0QHY2 UvrB2 0.212167008608 0.5 0.287832991392 +UniRef50_R4ZU58 Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen 0.607014239441 0.5 -0.107014239441 +UniRef50_E3D229 Chromosome partition protein Smc 0.00585704932572 0.5 0.494142950674 +UniRef50_Q250M1 50S ribosomal protein L24 0.0390943660769 0.5 0.460905633923 +UniRef50_UPI000473E9CF hypothetical protein, partial 0.642926082218 0.5 -0.142926082218 +UniRef50_Q818M5 Probable glycine dehydrogenase subunit 2 2.00000039935 0.499999999998 -1.50000039935 +UniRef50_M7TFP2 Putative tho complex subunit 2 protein 0.0048414790888 0.5 0.495158520911 +UniRef50_U5MPT8 Bacteriohemerythrin 0.112671271849 0.5 0.387328728151 +UniRef50_R5HX70 Ethanolamine utilization protein EutP 2.69550221875 0.5 -2.19550221875 +UniRef50_Q6ZG43 0.279544617797 0.5 0.220455382203 +UniRef50_I6T6D9 Glycerophosphoryl diester phosphodiesterase 0.647320368574 0.5 -0.147320368574 +UniRef50_P07604 Transcriptional regulatory protein TyrR 2.28741460228 0.5 -1.78741460228 +UniRef50_Q8CN32 Thiamine phosphate synthase 0.199090392787 0.5 0.300909607213 +UniRef50_Q04939 Sucrose operon repressor 0.0621572430251 0.5 0.437842756974 +UniRef50_Q47RU5 Polyribonucleotide nucleotidyltransferase 0.0127941705716 0.5 0.487205829429 +UniRef50_A0A024HFG1 2.17245620725 0.5 -1.67245620725 +UniRef50_H3WBP5 2.12334219399 0.500000000002 -1.62334219399 +UniRef50_J0MXI6 Adenosylmethionine 8 amino 7 oxononanoate transaminase 0.948182464076 0.5 -0.448182464076 +UniRef50_R5BEJ3 0.0213156389312 0.5 0.478684361069 +UniRef50_A6LVT5 0.0887985011874 0.5 0.411201498813 +UniRef50_I2DH65 0.048057008551 0.5 0.451942991449 +UniRef50_UPI000345C5CB hypothetical protein 0.0679277293696 0.5 0.43207227063 +UniRef50_UPI00037DE01D hypothetical protein 2.18111421531 0.5 -1.68111421531 +UniRef50_G0J3G6 Zinc iron permease 1.05816731514 0.5 -0.558167315137 +UniRef50_U4Q8Z1 Endonuclease III 0.243671758381 0.5 0.256328241619 +UniRef50_UPI00036716D2 hypothetical protein 0.87567337189 0.5 -0.37567337189 +UniRef50_B7IR21 Membrane protein PfoR 1.61081341105 0.500000000001 -1.11081341105 +UniRef50_Q7M922 Na H(+) antiporter NhaA 0.0382003066386 0.5 0.461799693361 +UniRef50_UPI0003761FCC hypothetical protein 0.151492862496 0.5 0.348507137504 +UniRef50_Q4K5N7 TonB dependent outermembrane heme receptor HasR 1.93043650331 0.499999999999 -1.43043650331 +UniRef50_T7JW17 1.5635400899 0.5 -1.0635400899 +UniRef50_A0A024HEK4 Porin 0.745181318141 0.5 -0.245181318141 +UniRef50_P44700 2.83340810614 0.5 -2.33340810614 +UniRef50_UPI000374F1B4 hypothetical protein 0.923779135792 0.5 -0.423779135792 +UniRef50_UPI00041B0045 hypothetical protein 0.219137018154 0.5 0.280862981846 +UniRef50_A1ATB7 Chitinase like protein 0.206689792194 0.5 0.293310207806 +UniRef50_H1SFP6 0.830701824386 0.5 -0.330701824386 +UniRef50_B4EUV9 Glutamate cysteine ligase 7.67554201808 0.500000000004 -7.17554201809 +UniRef50_F7XAZ8 2.35103559918 0.500000000003 -1.85103559919 +UniRef50_W5X8Y0 Peptidase M48 0.491179433335 0.5 0.00882056666498 +UniRef50_O67137 DNA gyrase subunit B 0.179514989745 0.5 0.320485010255 +UniRef50_K9ZYZ2 Arabinose efflux permease family protein 0.00289912557189 0.5 0.497100874429 +UniRef50_A5ULL7 2.09680194035 0.499999999999 -1.59680194035 +UniRef50_UPI00046F1E3C hypothetical protein 0.126448463774 0.5 0.373551536226 +UniRef50_T0TL61 Lactose transport regulator 0.118425107749 0.5 0.381574892251 +UniRef50_Q48UU5 Dephospho CoA kinase 1.00846666582 0.5 -0.508466665821 +UniRef50_UPI000463EC33 hypothetical protein 0.89086028089 0.5 -0.39086028089 +UniRef50_UPI00022347EB PREDICTED 0.14629865767 0.5 0.35370134233 +UniRef50_I0EKZ4 0.0197229419297 0.5 0.48027705807 +UniRef50_G7M9E2 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.189753011389 0.5 0.310246988611 +UniRef50_P65761 Ribulose phosphate 3 epimerase 0.0255746408845 0.5 0.474425359115 +UniRef50_UPI00046FBBBF NADH dehydrogenase 0.269678124111 0.5 0.230321875889 +UniRef50_F0N3E0 Cytoplasmic membrane protein fxsA 0.0288649062004 0.5 0.471135093799 +UniRef50_C4J1H3 0.204958921507 0.5 0.295041078493 +UniRef50_Q89L00 Serine tRNA ligase 18.3975088413 0.500000000026 -17.8975088413 +UniRef50_R0F7X0 Integral membrane protein MviN 0.770826535992 0.5 -0.270826535992 +UniRef50_R0UHS1 Putative phage associated protein 0.00511518231082 0.5 0.494884817689 +UniRef50_Q8CUF7 1.21214425144 0.5 -0.712144251443 +UniRef50_G2TGT9 Cobalt transport protein 0.0158073535007 0.5 0.484192646499 +UniRef50_A5N7Z4 Predicted kinase 0.183139594561 0.5 0.316860405439 +UniRef50_UPI0003819C59 hypothetical protein 0.464641766474 0.5 0.0353582335262 +UniRef50_L0LQZ5 0.844942787006 0.5 -0.344942787006 +UniRef50_B5SF72 0.393155583842 0.5 0.106844416158 +UniRef50_A0A013VHK1 Transposase 0.76895399721 0.5 -0.26895399721 +UniRef50_UPI00037C70BA hypothetical protein 0.105129975309 0.5 0.394870024691 +UniRef50_V9R2C2 Membrane protein 0.615856055487 0.5 -0.115856055487 +UniRef50_H8FXB7 0.994273689316 0.5 -0.494273689316 +UniRef50_H8FXB4 0.829640774559 0.5 -0.329640774559 +UniRef50_P54462 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB 2.38582564866 0.500000000001 -1.88582564866 +UniRef50_UPI00037DBCEA hypothetical protein, partial 0.577803911344 0.5 -0.0778039113443 +UniRef50_S5SFD1 4.59106491911 0.500000000002 -4.09106491911 +UniRef50_UPI000375BFC5 hypothetical protein 1.91858253178 0.5 -1.41858253178 +UniRef50_H3WII0 5.0772423473 0.5 -4.5772423473 +UniRef50_Q2RG70 Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region 0.485906769407 0.5 0.0140932305933 +UniRef50_B7V7H6 0.283353967512 0.5 0.216646032488 +UniRef50_O68045 DNA polymerase III subunit epsilon like protein 0.688386422282 0.5 -0.188386422282 +UniRef50_B7V5S0 1.27615905949 0.5 -0.776159059489 +UniRef50_A9B1M6 0.415277449192 0.5 0.0847225508076 +UniRef50_K8ETB2 0.0411956705583 0.500000000001 0.458804329441 +UniRef50_P78937 Sulfate adenylyltransferase 0.883642769906 0.5 -0.383642769906 +UniRef50_Q47EP3 Error prone DNA polymerase 1.67137065624 0.5 -1.17137065624 +UniRef50_A0A026RF42 Diguanylate cyclase 1.19135310075 0.5 -0.691353100748 +UniRef50_P74861 Aromatic amino acid aminotransferase 0.37168060638 0.5 0.12831939362 +UniRef50_A4J657 NADH quinone oxidoreductase subunit D 0.238201929302 0.5 0.261798070698 +UniRef50_UPI0003A2B6FD uroporphyrinogen decarboxylase 0.0167925189471 0.500000000001 0.483207481052 +UniRef50_UPI0003660926 Cro Cl family transcriptional regulator 4.34257516954 0.500000000001 -3.84257516954 +UniRef50_W9B2U5 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 1.66904786219 0.5 -1.16904786219 +UniRef50_A1ASQ4 0.148643515253 0.5 0.351356484747 +UniRef50_UPI0003B4C286 oxidoreductase 3.41643057952 0.500000000002 -2.91643057952 +UniRef50_UPI0003B45BD8 peptide ABC transporter ATP binding protein 0.499016584115 0.5 0.00098341588537 +UniRef50_Q05626 0.385223384757 0.5 0.114776615243 +UniRef50_UPI00036ED21D hypothetical protein 0.392111464645 0.5 0.107888535355 +UniRef50_Q9G021 Phi ETA orf 24 like protein 0.840432602158 0.5 -0.340432602158 +UniRef50_O26935 2.21174937451 0.500000000002 -1.71174937451 +UniRef50_Q4QLU9 23S rRNA C(5)) methyltransferase RlmC 1.8341875603 0.500000000001 -1.3341875603 +UniRef50_P19262 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 0.324871941029 0.5 0.175128058971 +UniRef50_UPI000466CF44 hypothetical protein, partial 0.390840153659 0.5 0.109159846341 +UniRef50_UPI00042AB16A PREDICTED 0.118415502743 0.5 0.381584497257 +UniRef50_G2KYU1 1.36988038581 0.5 -0.869880385808 +UniRef50_UPI0004645274 hypothetical protein, partial 2.05713303117 0.5 -1.55713303117 +UniRef50_UPI00016C59CC ABC type multidrug transport system, ATPase component, partial 1.33809332481 0.5 -0.838093324812 +UniRef50_UPI0002FCA31A hypothetical protein 0.89064508677 0.5 -0.39064508677 +UniRef50_UPI000465045A glutathione synthetase 0.32307641837 0.5 0.17692358163 +UniRef50_Q3J1E9 Plasmid and phage replicative helicase 1.9445666293 0.5 -1.4445666293 +UniRef50_Q9HML8 Phosphate import ATP binding protein PstB 2 0.03955223086 0.5 0.46044776914 +UniRef50_Q1IZ14 Major facilitator superfamily MFS_1 0.0130522676146 0.5 0.486947732386 +UniRef50_UPI0004219822 hypothetical protein 0.315386374958 0.5 0.184613625042 +UniRef50_O83327 CTP synthase 0.0412205688411 0.5 0.458779431159 +UniRef50_Q51559 Rhamnosyltransferase 1 subunit A 0.7990539496 0.5 -0.2990539496 +UniRef50_P05719 Type 1 restriction enzyme EcoKI specificity protein 1.14599039727 0.5 -0.645990397265 +UniRef50_A1U0X4 N anthranilate isomerase 0.0849894736442 0.5 0.415010526356 +UniRef50_UPI00047A0DA3 cation 0.140186740451 0.5 0.359813259549 +UniRef50_UPI000379D46E hypothetical protein 0.237693792003 0.5 0.262306207997 +UniRef50_D6GSS9 CRISPR associated endonuclease Cas1 4.8939281565 0.500000000001 -4.39392815651 +UniRef50_G7MA72 Cys Met metabolism pyridoxal phosphate dependent protein 0.209826383354 0.5 0.290173616646 +UniRef50_UPI00036713D4 hypothetical protein 0.90210851637 0.5 -0.40210851637 +UniRef50_UPI00005C7F68 hypothetical protein 2.72776810412 0.5 -2.22776810412 +UniRef50_W4V5S1 Electron transfer flavoprotein 0.364368163792 0.5 0.135631836208 +UniRef50_C6SH91 Copper transporting ATPase copA 0.0106174372339 0.5 0.489382562766 +UniRef50_B5F2H2 Porin thermoregulatory protein EnvY 0.29452669152 0.5 0.20547330848 +UniRef50_Q1GFF4 Transcriptional regulator, XRE family 1.04197282524 0.5 -0.541972825243 +UniRef50_UPI0003828BA0 hypothetical protein 0.294795067125 0.5 0.205204932875 +UniRef50_UPI00037D9868 hypothetical protein 0.0835634428202 0.5 0.41643655718 +UniRef50_J3M965 0.0993843840762 0.5 0.400615615924 +UniRef50_W4UAJ0 Integral membrane protein 0.0289075088165 0.5 0.471092491184 +UniRef50_Q8CUF1 0.994083518842 0.5 -0.494083518842 +UniRef50_B7V1W7 Vanillate O demethylase oxygenase subunit 0.00997284983124 0.5 0.490027150169 +UniRef50_P32721 D allose import ATP binding protein AlsA 0.642658370058 0.5 -0.142658370058 +UniRef50_A4XIS1 Bifunctional protein GlmU 0.412600030428 0.5 0.0873999695719 +UniRef50_Q2SM53 SufE protein probably involved in Fe S center assembly 0.56737141722 0.5 -0.0673714172202 +UniRef50_Q9KRL4 Carboxynorspermidine carboxyspermidine decarboxylase 6.19814025538 0.499999999999 -5.69814025538 +UniRef50_UPI00035E542D hypothetical protein 0.757119325832 0.5 -0.257119325832 +UniRef50_F0Y457 0.117628023582 0.5 0.382371976418 +UniRef50_Q3J3X6 4.97662638791 0.499999999998 -4.47662638791 +UniRef50_B9KS17 Chemotaxis protein methyltransferase 1.77757127011 0.5 -1.27757127011 +UniRef50_A6LX14 GCN5 related N acetyltransferase 0.0540872342725 0.500000000001 0.445912765727 +UniRef50_I4DAA0 UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase 2.10709287923 0.500000000001 -1.60709287923 +UniRef50_F9Z004 Menaquinone specific isochorismate synthase 0.0128517368847 0.5 0.487148263115 +UniRef50_UPI0003C1484E 1.11601257063 0.5 -0.616012570628 +UniRef50_A8LC93 NADH quinone oxidoreductase subunit I 0.136547554455 0.5 0.363452445545 +UniRef50_UPI0003141905 hypothetical protein 0.687262289017 0.5 -0.187262289017 +UniRef50_U2Z6J9 0.183355881201 0.5 0.316644118799 +UniRef50_B9E8Y3 Xanthine phosphoribosyltransferase 2.08943819359 0.500000000001 -1.58943819359 +UniRef50_UPI00036CDCFE hypothetical protein 0.236215212537 0.5 0.263784787464 +UniRef50_Q8CP83 2 oxoglutarate dehydrogenase E1 component 2.33700357539 0.500000000001 -1.83700357539 +UniRef50_UPI00030EEC63 hypothetical protein 2.63978083651 0.499999999997 -2.1397808365 +UniRef50_Q04JH4 Triosephosphate isomerase 0.0019683617791 0.5 0.498031638221 +UniRef50_Q4L9P9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.57783317464 0.500000000001 -1.07783317464 +UniRef50_P0AEH3 Protein ElaA 15.2403782215 0.500000000004 -14.7403782215 +UniRef50_V5WXJ4 Lytic transglycosylase 0.414687138033 0.5 0.0853128619668 +UniRef50_Q8CTV2 ATP phosphoribosyltransferase regulatory subunit 0.853157308816 0.5 -0.353157308816 +UniRef50_V9U722 1.90701405676 0.5 -1.40701405676 +UniRef50_K7RTT6 O antigen polymerase 0.0137045842647 0.5 0.486295415735 +UniRef50_A3PH69 Alpha beta hydrolase 1.14572303406 0.500000000001 -0.645723034065 +UniRef50_UPI0003B51C59 ABC transporter permease 0.386312687527 0.5 0.113687312473 +UniRef50_Q57S48 HTH type transcriptional repressor AllR 0.364824273291 0.5 0.135175726709 +UniRef50_UPI00029A79A0 HAD family hydrolase 0.151940640987 0.5 0.348059359013 +UniRef50_G8VAK1 ABC transporter 0.0677755334631 0.5 0.432224466537 +UniRef50_G9WFA5 Maltose maltodextrin ABC permease 1.17683934804 0.5 -0.676839348041 +UniRef50_UPI0003A1DBBC sodium 0.0845964153071 0.5 0.415403584693 +UniRef50_D8LB80 2.87105830742 0.500000000003 -2.37105830742 +UniRef50_UPI00037A8200 hypothetical protein 0.0650860441072 0.5 0.434913955893 +UniRef50_X3EKF3 0.418618712875 0.5 0.0813812871248 +UniRef50_W4HLY6 3.37242588389 0.500000000001 -2.87242588389 +UniRef50_Q3J3X8 2.30025964997 0.499999999999 -1.80025964997 +UniRef50_K4PQW7 0.691279015466 0.5 -0.191279015466 +UniRef50_UPI0002F01115 hypothetical protein 0.427625903949 0.5 0.0723740960511 +UniRef50_G7U413 Pyridine nucleotide disulfide oxidoreductase 0.0314302517999 0.5 0.4685697482 +UniRef50_D3QHT0 2.40171965383 0.5 -1.90171965383 +UniRef50_F9EIZ7 0.148987538946 0.5 0.351012461054 +UniRef50_R7CST7 ABC type proline glycine betaine transport system periplasmic component 0.733358517954 0.5 -0.233358517954 +UniRef50_M4RA06 0.00956966103527 0.5 0.490430338965 +UniRef50_Q2FHR7 Carbamate kinase 1 2.86756209484 0.5 -2.36756209484 +UniRef50_UPI000255E3EB 1 deoxy D xylulose 5 phosphate reductoisomerase 2.93914656145 0.5 -2.43914656145 +UniRef50_P54475 DEAD box ATP dependent RNA helicase CshB 0.364608779251 0.5 0.135391220749 +UniRef50_Q989G9 Mlr6427 protein 1.80159886894 0.5 -1.30159886894 +UniRef50_Q9RZE0 0.00420167784017 0.499999999999 0.495798322161 +UniRef50_F0VYG1 Cysteine desulfurase 0.0234490012431 0.5 0.476550998757 +UniRef50_B7ICE8 TonB dependent receptor protein 0.0247668515597 0.5 0.47523314844 +UniRef50_UPI00046ED547 major facilitator transporter, partial 0.157569527162 0.5 0.342430472838 +UniRef50_Q0SWZ1 1,4 alpha glucan branching enzyme GlgB 1 0.37959116152 0.5 0.12040883848 +UniRef50_D1CAE1 Pyridoxal 5 phosphate dependent protein beta subunit 0.445826949544 0.5 0.0541730504555 +UniRef50_Q31MP6 Diguanylate cyclase with GAF sensor 0.337139514674 0.5 0.162860485326 +UniRef50_I6X0E0 Lipoprotein 0.303534356044 0.5 0.196465643956 +UniRef50_M2CCG1 1.41192309217 0.5 -0.911923092174 +UniRef50_W0Z4J7 Histidine kinase 0.196980781663 0.5 0.303019218337 +UniRef50_B1J7Z5 3 demethylubiquinone 9 3 methyltransferase 2.88619860871 0.499999999999 -2.38619860871 +UniRef50_I1Y621 Lytic murein transglycosylase 0.00673149127133 0.5 0.493268508729 +UniRef50_X5EFR9 Two component sensor 0.00946171704141 0.5 0.490538282959 +UniRef50_X1THZ3 Marine sediment metagenome DNA, contig 0.157815652123 0.5 0.342184347877 +UniRef50_UPI0002195D59 Zn dependent hydrolase 0.0913883527781 0.5 0.408611647222 +UniRef50_UPI0003902576 ATP synthase gamma chain 2.3077032805 0.500000000002 -1.8077032805 +UniRef50_R9SM98 Radical SAM domain containing protein 2.10860702231 0.499999999999 -1.60860702231 +UniRef50_UPI00030D5D10 hypothetical protein 2.19644252377 0.499999999998 -1.69644252377 +UniRef50_G7M580 0.365381976221 0.5 0.134618023779 +UniRef50_E6MYM9 0.0861469670943 0.5 0.413853032906 +UniRef50_UPI000376AE97 hypothetical protein 0.477267865785 0.5 0.0227321342149 +UniRef50_Q28PV9 N acetyl gamma glutamyl phosphate reductase 0.921186985676 0.5 -0.421186985676 +UniRef50_UPI0001BC2E61 thioredoxin reductase 0.122046100823 0.5 0.377953899177 +UniRef50_R5RVQ5 0.137052694622 0.5 0.362947305378 +UniRef50_L0HHM1 2.27664051514 0.499999999997 -1.77664051513 +UniRef50_A4X335 ABC transporter related 0.205349317815 0.5 0.294650682185 +UniRef50_A0A023S0B1 Glutathione S transferase 0.0174338449034 0.5 0.482566155097 +UniRef50_UPI00035E14F7 hypothetical protein 2.67806186374 0.499999999998 -2.17806186374 +UniRef50_I2BCP0 0.111297741051 0.5 0.388702258949 +UniRef50_D2NNT4 0.148053226867 0.5 0.351946773133 +UniRef50_UPI00034A702A hypothetical protein 0.512508889152 0.5 -0.0125088891518 +UniRef50_Q0TQK1 Trigger factor 0.431515514418 0.5 0.0684844855823 +UniRef50_Q4ZQB6 Transcriptional regulator, LysR family 0.676409335979 0.5 -0.176409335979 +UniRef50_P53580 Methionine aminopeptidase B 0.00043899661813 0.5 0.499561003382 +UniRef50_E3EL28 Nicotinate phosphoribosyltransferase and like protein 0.0704630332038 0.5 0.429536966796 +UniRef50_Q9HUY1 Dihydrolipoyl dehydrogenase 3 0.260621074434 0.5 0.239378925566 +UniRef50_UPI00047E1DD8 hypothetical protein 0.200562096457 0.5 0.299437903543 +UniRef50_Q2Y7L8 Chorismate synthase 0.136647579595 0.5 0.363352420405 +UniRef50_A5V6F9 Anhydro N acetylmuramic acid kinase 0.108586449024 0.500000000001 0.391413550976 +UniRef50_UPI0003B6910D hypothetical protein 0.465797891507 0.5 0.0342021084934 +UniRef50_A3PRF9 2.84119334106 0.5 -2.34119334106 +UniRef50_G7WBX4 Arabinose efflux permease family protein 0.0674949573051 0.5 0.432505042695 +UniRef50_A2SDV6 3 methyl 2 oxobutanoate hydroxymethyltransferase 1 0.337664853137 0.5 0.162335146863 +UniRef50_I0C160 Glycerophosphodiester phosphodiesterase 1.98128813306 0.5 -1.48128813306 +UniRef50_UPI0003640286 hypothetical protein 0.040174045537 0.5 0.459825954463 +UniRef50_P40871 2,3 dihydroxybenzoate AMP ligase 0.0163214108367 0.5 0.483678589163 +UniRef50_F8F763 1.12745307696 0.500000000001 -0.627453076964 +UniRef50_G7ZLK0 3.68900721166 0.500000000005 -3.18900721167 +UniRef50_UPI0003629F80 membrane protein, partial 0.236943471977 0.5 0.263056528023 +UniRef50_Q98FA5 Thiamine import ATP binding protein ThiQ 0.265055948417 0.5 0.234944051583 +UniRef50_UPI0003600109 hypothetical protein 0.84796979535 0.5 -0.34796979535 +UniRef50_Q5X9H7 Holliday junction ATP dependent DNA helicase RuvA 0.829399342849 0.5 -0.329399342849 +UniRef50_Q4L5A2 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 6.26645614229 0.500000000006 -5.76645614229 +UniRef50_Q4L7Q5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.09761927967 0.5 -0.59761927967 +UniRef50_P65328 Riboflavin synthase 0.457624513645 0.5 0.0423754863548 +UniRef50_Q8CZ55 0.00258431133953 0.5 0.49741568866 +UniRef50_Q831A8 UDP N acetylglucosamine 1 carboxyvinyltransferase 2 0.811048691584 0.5 -0.311048691584 +UniRef50_UPI00036518A8 hypothetical protein 0.639120615676 0.5 -0.139120615676 +UniRef50_P0A264 Outer membrane protein C 3.49418400623 0.5 -2.99418400623 +UniRef50_P44068 0.141775062844 0.5 0.358224937156 +UniRef50_J9YRQ9 Large conductance mechanosensitive channel protein 1.68082479107 0.500000000002 -1.18082479107 +UniRef50_A1B1F2 UDP 3 O acylglucosamine N acyltransferase 1.76829854021 0.5 -1.26829854021 +UniRef50_Q1CUR3 Glutamyl tRNA reductase 0.0135556630612 0.5 0.486444336939 +UniRef50_UPI00035E28E1 hypothetical protein 0.0519859608665 0.5 0.448014039133 +UniRef50_Q0TRY8 Lysine N methylase, homolog 0.026440347369 0.499999999999 0.473559652632 +UniRef50_C4LGM2 Catalase 0.00863007861933 0.5 0.491369921381 +UniRef50_UPI0002F0DA53 hypothetical protein 0.499926418553 0.5 7.35814467754e-05 +UniRef50_F0MZQ2 0.133727920637 0.5 0.366272079363 +UniRef50_UPI000382677B hypothetical protein 1.58229119166 0.499999999998 -1.08229119166 +UniRef50_Q10MG8 Retrotransposon protein, putative, Ty3 gypsy subclass, expressed 0.0304537782893 0.5 0.46954622171 +UniRef50_H3UXX3 2.68611795318 0.500000000002 -2.18611795319 +UniRef50_A8LNJ9 Flagellar biosynthesis regulatory protein FlaF 0.478823234289 0.5 0.021176765711 +UniRef50_UPI0003F80943 hypothetical protein 0.214678741977 0.5 0.285321258023 +UniRef50_K0HHI0 0.0172381204355 0.5 0.482761879565 +UniRef50_UPI00005DE9C0 MULTISPECIES 0.229661988893 0.5 0.270338011107 +UniRef50_UPI00040056AC hypothetical protein 0.309515031602 0.5 0.190484968398 +UniRef50_UPI000368B929 cold shock protein 0.380256853937 0.5 0.119743146063 +UniRef50_A6LVD8 0.141082164734 0.5 0.358917835266 +UniRef50_UPI00037150E3 hypothetical protein 0.364297961006 0.5 0.135702038994 +UniRef50_P64558 5.46329231251 0.500000000003 -4.96329231251 +UniRef50_P52559 N5 carboxyaminoimidazole ribonucleotide synthase 0.265901432984 0.5 0.234098567016 +UniRef50_R6KNU0 Glycosyl transferase 0.136658226052 0.5 0.363341773948 +UniRef50_T9UBD7 3.5940845151 0.499999999999 -3.0940845151 +UniRef50_A6LXN0 Polyprenyl synthetase 0.0810643272094 0.5 0.41893567279 +UniRef50_Q65ID2 Peptide methionine sulfoxide reductase MsrB 0.00906132080626 0.5 0.490938679194 +UniRef50_UPI0003B62BEC hypothetical protein, partial 0.00344246842577 0.500000000001 0.496557531574 +UniRef50_S4WAF1 Synthase [glutamine hydrolyzing] 0.550752169881 0.5 -0.0507521698806 +UniRef50_U3AMR8 0.64859370269 0.5 -0.14859370269 +UniRef50_G7M622 Transcriptional regulator, LuxR family 0.0697783645402 0.500000000001 0.430221635459 +UniRef50_I6SFZ0 TPR domain containing protein 0.00629872456007 0.5 0.49370127544 +UniRef50_UPI00047C4D4C hypothetical protein 0.239052205549 0.5 0.260947794451 +UniRef50_Q9Z9U1 Sorbitol dehydrogenase 1.91259396234 0.5 -1.41259396234 +UniRef50_Q5HPF3 Phosphate ABC transporter, permease protein 2.84536161648 0.5 -2.34536161648 +UniRef50_UPI0004652E03 hypothetical protein 9.16695905187 0.500000000009 -8.66695905187 +UniRef50_C1L2X6 UDP N acetylenolpyruvoylglucosamine reductase 0.0107336204294 0.5 0.489266379571 +UniRef50_D0DAU8 Phage integrase 1.92554155425 0.499999999998 -1.42554155425 +UniRef50_Q2J514 Endoribonuclease L PSP 0.13153653189 0.5 0.36846346811 +UniRef50_A6E7D3 0.419584199002 0.5 0.0804158009981 +UniRef50_UPI000225B5DA magnesium chelatase; methanol dehydrogenase regulator, partial 0.143500796934 0.5 0.356499203065 +UniRef50_A5IPN7 0.937762468779 0.5 -0.437762468779 +UniRef50_B8KSJ4 Phosphate starvation inducible E 0.854640446928 0.5 -0.354640446928 +UniRef50_K0JY23 1.62491005236 0.5 -1.12491005236 +UniRef50_D3T5X9 Mannitol dehydrogenase domain protein 0.219870615806 0.5 0.280129384194 +UniRef50_P24554 DNA repair protein RadA 0.158328432858 0.5 0.341671567142 +UniRef50_UPI0004711C23 6 phospho beta glucosidase 0.139083462464 0.499999999999 0.360916537536 +UniRef50_A3PQ11 7.00213091569 0.499999999998 -6.50213091569 +UniRef50_P25550 Anaerobic sulfatase maturating enzyme homolog AslB 0.641253009157 0.5 -0.141253009157 +UniRef50_Q320T0 Diguanylate cyclase DosC 3.71971975819 0.500000000001 -3.21971975819 +UniRef50_P24752 Acetyl CoA acetyltransferase, mitochondrial 0.276267491082 0.5 0.223732508918 +UniRef50_UPI0003828B5A hypothetical protein, partial 0.903296882581 0.5 -0.403296882581 +UniRef50_Q070J3 Virion core protein 0.315003718897 0.5 0.184996281103 +UniRef50_A9B2U4 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.318228577706 0.5 0.181771422294 +UniRef50_Q2YZ25 Putative hemin transport system permease protein HrtB 1.350290536 0.500000000001 -0.850290535998 +UniRef50_UPI000479F72A hypothetical protein 0.513254906641 0.5 -0.013254906641 +UniRef50_B9FT55 1.2856143704 0.5 -0.785614370397 +UniRef50_C6STC0 8.06304462186 0.500000000001 -7.56304462186 +UniRef50_K0ELZ4 Transcriptional regulator 0.464479670895 0.5 0.0355203291048 +UniRef50_F0RLU8 Alpha beta hydrolase fold protein 0.281253222257 0.5 0.218746777743 +UniRef50_X5QUZ2 0.100217825802 0.5 0.399782174198 +UniRef50_A4WPB0 0.768146825771 0.5 -0.268146825771 +UniRef50_Q2JXG9 tRNA N6 adenosine threonylcarbamoyltransferase 0.248026153087 0.5 0.251973846913 +UniRef50_I0EL02 0.0162647297525 0.5 0.483735270247 +UniRef50_A3JC42 0.085666033311 0.5 0.414333966689 +UniRef50_P53434 Putative GTP cyclohydrolase 1 type 2 0.00300428979048 0.5 0.496995710209 +UniRef50_Q1D054 1.60592952401 0.5 -1.10592952401 +UniRef50_A0QJB3 Polyphosphate kinase 0.0113331753096 0.5 0.48866682469 +UniRef50_UPI00035D6A77 hypothetical protein 3.455429075 0.499999999998 -2.955429075 +UniRef50_M1N0K2 FeS cluster assembly protein SufD 0.41505961579 0.5 0.0849403842101 +UniRef50_V6UQJ7 Membrane protein 1.49309416041 0.5 -0.993094160405 +UniRef50_UPI0003B63A1B acetyltransferase 0.505669773414 0.5 -0.00566977341368 +UniRef50_G8NAB2 Replicative DNA helicase DnaB 0.00416073430423 0.5 0.495839265696 +UniRef50_A0LV48 Probable dual specificity RNA methyltransferase RlmN 0.343379082724 0.5 0.156620917276 +UniRef50_D4HEJ4 Phospholipase, patatin family 0.0115557928231 0.5 0.488444207177 +UniRef50_UPI00037DE98D hypothetical protein 0.591110561873 0.5 -0.0911105618732 +UniRef50_F5XRV0 Polyprenyl diphosphate synthase 0.0146164354279 0.5 0.485383564572 +UniRef50_O27679 Protein pelota homolog 2.04665536765 0.500000000001 -1.54665536765 +UniRef50_A9ADZ8 BolA family protein 0.0161367919301 0.5 0.48386320807 +UniRef50_E7PV88 Transposase IS861 orfB 1.14142200261 0.5 -0.641422002608 +UniRef50_UPI0004770260 glucose 1 phosphate adenylyltransferase 0.0346559132164 0.5 0.465344086783 +UniRef50_P0A933 Putative polysaccharide export protein GfcE 3.5928631697 0.500000000001 -3.0928631697 +UniRef50_G2I4D0 0.184342499267 0.5 0.315657500733 +UniRef50_UPI0004789CC8 hypothetical protein 1.92544582103 0.5 -1.42544582103 +UniRef50_Q9RRU8 S ribosylhomocysteine lyase 0.000576281526942 0.5 0.499423718473 +UniRef50_X2LN33 1.86486030462 0.5 -1.36486030462 +UniRef50_B2HU41 NADH quinone oxidoreductase subunit A 0.00603639726401 0.5 0.493963602736 +UniRef50_U3TT52 Cytoplasmic protein 2.34353699575 0.499999999998 -1.84353699575 +UniRef50_P75916 Inner membrane protein YcdZ 1.14806024904 0.5 -0.648060249035 +UniRef50_P9WQB2 2 isopropylmalate synthase 0.0582499193721 0.5 0.441750080628 +UniRef50_O27636 ORC1 type DNA replication protein 2 0.845450749577 0.5 -0.345450749577 +UniRef50_A4J6I7 Xanthine phosphoribosyltransferase 0.478433721396 0.5 0.0215662786039 +UniRef50_UPI000374951A hypothetical protein 1.10642961686 0.5 -0.606429616863 +UniRef50_UPI0002DBEA5E ImpA family type VI secretion associated protein 0.277592461649 0.5 0.222407538351 +UniRef50_UPI0003B4D6D9 NADH dehydrogenase 0.299106153409 0.5 0.200893846591 +UniRef50_F7W6Q2 WGS project CABT00000000 data, contig 2.35 0.987990777882 0.5 -0.487990777882 +UniRef50_UPI0003618C13 2,3 dihydroxybenzoate 2,3 dehydrogenase, partial 0.560247713348 0.5 -0.0602477133478 +UniRef50_B9KTW7 4.25846464537 0.499999999998 -3.75846464537 +UniRef50_UPI0001D2F064 adenosylcobinamide phosphate synthase 0.117238811185 0.5 0.382761188815 +UniRef50_UPI000344E65D phosphomethylpyrimidine synthase 0.156143222228 0.5 0.343856777772 +UniRef50_C0H3V8 0.577934279641 0.5 -0.0779342796411 +UniRef50_F8IRV1 Anthranilate synthase component II 2.1063122659 0.5 -1.6063122659 +UniRef50_D4HEY5 0.297394274898 0.5 0.202605725102 +UniRef50_Q5FLZ3 tRNA N6 adenosine threonylcarbamoyltransferase 0.858152508381 0.5 -0.358152508381 +UniRef50_Q5CQR3 0.116892256064 0.5 0.383107743936 +UniRef50_B0VM39 Potassium transporting ATPase C chain 0.0177465603459 0.499999999999 0.482253439655 +UniRef50_Q8CTZ4 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 2.64523279044 0.5 -2.14523279044 +UniRef50_C5N0F9 X Pro dipeptidyl peptidase C terminal non catalytic domain protein 2.2513401152 0.500000000001 -1.7513401152 +UniRef50_G7R7B9 1.1360407834 0.5 -0.6360407834 +UniRef50_UPI0003FE850D hypothetical protein 0.416729728404 0.5 0.083270271596 +UniRef50_P02925 D ribose binding periplasmic protein 3.02866201559 0.5 -2.52866201559 +UniRef50_UPI00030221F2 metallophosphoesterase 0.00286541335397 0.5 0.497134586646 +UniRef50_A5UN81 Predicted ATPase, AAA+ family 2.08551583218 0.5 -1.58551583218 +UniRef50_UPI0003724574 CRISPR associated protein Csn1, partial 2.23689299593 0.499999999999 -1.73689299593 +UniRef50_A1WZJ2 60 kDa chaperonin 0.962463551368 0.5 -0.462463551368 +UniRef50_P08957 Type I restriction enzyme EcoKI M protein 0.792880667272 0.5 -0.292880667272 +UniRef50_Q98QK7 0.274813016622 0.5 0.225186983378 +UniRef50_A7X4T7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.482307477722 0.5 0.0176925222783 +UniRef50_Q57GJ7 Ascorbate specific phosphotransferase enzyme IIA component 1.29107779311 0.5 -0.791077793106 +UniRef50_P58967 Putative homocitrate synthase AksA 0.227805392038 0.5 0.272194607962 +UniRef50_P78067 Thiosulfate sulfurtransferase YnjE 0.936493673635 0.5 -0.436493673635 +UniRef50_B7H3X0 Bacterial regulatory helix turn helix protein, AraC family protein 0.0121007155012 0.5 0.487899284499 +UniRef50_Q8YAM6 ATP synthase subunit beta 1 0.00227138129742 0.5 0.497728618703 +UniRef50_Q6GEN7 Tagatose 1,6 diphosphate aldolase 3.16237298459 0.5 -2.66237298459 +UniRef50_A0A024JA58 Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit 0.0267647673581 0.5 0.473235232642 +UniRef50_UPI000478EDC7 hypothetical protein 3.83107872679 0.499999999998 -3.33107872679 +UniRef50_S4C0T0 0.00154608837688 0.5 0.498453911623 +UniRef50_UPI00047AEF8E phosphohydrolase 0.164329963728 0.5 0.335670036272 +UniRef50_V5C9A8 Anthranilate 1,2 dioxygenase electron transfer component AntC 0.834600700263 0.5 -0.334600700263 +UniRef50_X1LWS5 Marine sediment metagenome DNA, contig 3.60655546654 0.5 -3.10655546654 +UniRef50_UPI00016B263F molecular chaperone GroEL 0.76025964046 0.5 -0.26025964046 +UniRef50_UPI0003787BF0 hypothetical protein 0.67508010381 0.5 -0.17508010381 +UniRef50_Q2SEB7 0.334312590694 0.5 0.165687409306 +UniRef50_Q5HMD7 Cell division protein, FtsW RodA SpoVE family 1.65374168238 0.5 -1.15374168238 +UniRef50_C9Y1J4 Penicillin binding protein activator LpoB 11.2928127898 0.499999999997 -10.7928127898 +UniRef50_K3XR47 0.334406496777 0.5 0.165593503223 +UniRef50_A0AI76 Ribonuclease HII 0.138096639201 0.5 0.361903360799 +UniRef50_Q6AG81 Arginine tRNA ligase 0.0010248273129 0.5 0.498975172687 +UniRef50_L3UJQ1 0.373101422516 0.5 0.126898577484 +UniRef50_Q9ZL83 Ribonuclease Y 0.00998243799369 0.5 0.490017562006 +UniRef50_Q890T6 Conserved protein 0.16010204315 0.500000000001 0.339897956849 +UniRef50_B8I2Q1 LexA repressor 0.972763684567 0.5 -0.472763684567 +UniRef50_W0N7A1 Urea ABC transporter ATP binding protein 0.96312582556 0.5 -0.46312582556 +UniRef50_P95231 Serine acetyltransferase 0.143097187975 0.5 0.356902812026 +UniRef50_UPI00036454DD hypothetical protein 1.34696112445 0.5 -0.846961124446 +UniRef50_V4NEJ0 Cupin 1.58215133025 0.5 -1.08215133025 +UniRef50_G7ZTM6 Capsular polysaccharide synthesis enzyme 2.58445737692 0.5 -2.08445737692 +UniRef50_A3MA53 0.0203908766468 0.5 0.479609123353 +UniRef50_M9RK06 Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein 1.79290126055 0.5 -1.29290126055 +UniRef50_A4WX60 8.8798425274 0.5 -8.3798425274 +UniRef50_A6M1Q8 Periplasmic binding protein LacI transcriptional regulator 0.191057150848 0.5 0.308942849152 +UniRef50_UPI000464A0A1 hypothetical protein 3.2590005321 0.499999999998 -2.75900053209 +UniRef50_Q5HHQ6 Putative acetyltransferase SACOL0827 5.00171583614 0.500000000001 -4.50171583614 +UniRef50_Q0AP83 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.543564994997 0.5 -0.0435649949968 +UniRef50_D3E0S2 10.7724376411 0.499999999997 -10.2724376411 +UniRef50_W4TUN4 Sugar binding protein 0.81317960353 0.5 -0.31317960353 +UniRef50_B9EAX4 Capsular polysaccharide synthesis protein CapM homolog 5.1571311417 0.500000000003 -4.6571311417 +UniRef50_Q8TKX9 Cysteine desulphurase 0.644955008116 0.5 -0.144955008116 +UniRef50_UPI00037AD2A9 hypothetical protein 0.00742071130349 0.5 0.492579288697 +UniRef50_G7M1Z6 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.033455913238 0.5 0.466544086762 +UniRef50_Q8CTH3 2.90070027842 0.500000000001 -2.40070027843 +UniRef50_B5HEJ3 0.639120615613 0.5 -0.139120615613 +UniRef50_UPI00036A911D hypothetical protein 2.72500843131 0.500000000001 -2.22500843131 +UniRef50_T1ZGA3 Phosphomethylpyrimidine kinase 1.68788895453 0.5 -1.18788895453 +UniRef50_P14503 0.955786110026 0.5 -0.455786110026 +UniRef50_UPI00037E35E9 hypothetical protein 0.00586031238168 0.5 0.494139687618 +UniRef50_A3MZB9 Bifunctional protein PyrR 0.212315032081 0.5 0.287684967919 +UniRef50_UPI0003B6F64B ABC transporter 0.236589554523 0.5 0.263410445477 +UniRef50_R2NFJ2 Pyruvate flavodoxin oxidoreductase 0.0772355711807 0.5 0.422764428819 +UniRef50_A0A028CJT1 LysR family transcriptional regulator 0.821434938103 0.5 -0.321434938103 +UniRef50_B8I741 ABC transporter transmembrane region 0.036065204795 0.5 0.463934795205 +UniRef50_A0RBD6 Dehydratase 0.13639494514 0.5 0.363605054859 +UniRef50_UPI000409C1DE hypothetical protein 7.38661901315 0.500000000001 -6.88661901315 +UniRef50_G4RBE3 Mannonate dehydratase 2.45787060757 0.500000000001 -1.95787060757 +UniRef50_D3QHV2 Sec independent protein translocase protein TatC 2.82921702172 0.500000000004 -2.32921702173 +UniRef50_E0XRZ7 0.850341977572 0.5 -0.350341977572 +UniRef50_UPI0003EDA90F porin 0.121749249109 0.5 0.378250750891 +UniRef50_V5VAB4 Bacterial SH3 domain containing protein 0.00651235634533 0.500000000001 0.493487643654 +UniRef50_Q9RZJ6 1.56462378294 0.5 -1.06462378294 +UniRef50_Q0BST5 DNA gyrase subunit A 0.230427647308 0.5 0.269572352692 +UniRef50_P44499 Peptidyl prolyl cis trans isomerase B 0.628793154416 0.5 -0.128793154416 +UniRef50_C3M8S2 Holo [acyl carrier protein] synthase 0.179510601541 0.5 0.320489398459 +UniRef50_B6IVS2 Inner membrane protein, putative 0.399617903916 0.5 0.100382096084 +UniRef50_UPI00047BD367 hypothetical protein 0.561971986604 0.5 -0.0619719866042 +UniRef50_A6WKC8 UPF0246 protein Shew185_1115 0.305839899058 0.5 0.194160100942 +UniRef50_D0JN49 Phosphoribosylformylglycinamidine synthase 0.611341069455 0.5 -0.111341069455 +UniRef50_UPI0004716A86 ArsR family transcriptional regulator 0.799683529219 0.5 -0.299683529219 +UniRef50_H9KKZ5 1.74491332804 0.499999999998 -1.24491332804 +UniRef50_G7T9S3 Hemolysin 0.000279592523378 0.5 0.499720407477 +UniRef50_A3PJ91 RDD domain containing protein 0.588094997184 0.5 -0.0880949971839 +UniRef50_K4NAS3 ATP binding protein 0.010680883799 0.5 0.489319116201 +UniRef50_UPI000465E2F8 hypothetical protein 1.26821509582 0.499999999999 -0.768215095818 +UniRef50_UPI0004720CE8 hypothetical protein 0.37292399171 0.5 0.12707600829 +UniRef50_P0AAZ6 Replication associated recombination protein A 8.96049100619 0.499999999993 -8.46049100618 +UniRef50_UPI00016A522C branched chain amino acid ABC transporter, ATP binding protein, putative, partial 1.44078932226 0.5 -0.940789322255 +UniRef50_M5AH54 Nod factor export ATP binding protein I 2.15611679919 0.5 -1.65611679919 +UniRef50_UPI0003EF2FDA hypothetical protein 0.0119954518351 0.5 0.488004548165 +UniRef50_A9B932 Transposase Tn3 family protein 0.0164819834803 0.5 0.48351801652 +UniRef50_A3VKI4 0.239664042083 0.5 0.260335957917 +UniRef50_P24228 D alanyl D alanine carboxypeptidase DacB 1.75545241682 0.5 -1.25545241682 +UniRef50_B9KM28 2.293349158 0.5 -1.793349158 +UniRef50_S6D8D3 Low affinity zinc transport protein 0.395774955227 0.5 0.104225044773 +UniRef50_P76395 1.69260854141 0.5 -1.19260854141 +UniRef50_P76393 1.3404489433 0.5 -0.840448943298 +UniRef50_Q4FV40 Protein translocase subunit SecA 0.0173251465577 0.5 0.482674853443 +UniRef50_D8JKX1 0.0144884201902 0.5 0.48551157981 +UniRef50_UPI000380F87B hypothetical protein 0.134955622844 0.5 0.365044377156 +UniRef50_UPI000369EA6C hypothetical protein 2.92510784711 0.5 -2.42510784711 +UniRef50_UPI0003FAEB30 hypothetical protein 3.18431568369 0.500000000003 -2.68431568369 +UniRef50_L8GXF4 1.24074781784 0.5 -0.740747817836 +UniRef50_N2E2F5 4Fe 4S binding domain protein 1.06135706141 0.5 -0.561357061412 +UniRef50_UPI0003B6D996 histidine kinase 2.61481242372 0.5 -2.11481242372 +UniRef50_UPI00047EF35E UDP glucose 6 dehydrogenase 0.364828118467 0.5 0.135171881533 +UniRef50_M3A5Y8 0.893571990185 0.5 -0.393571990185 +UniRef50_Q3JZG9 DNA polymerase IV 0.041026760548 0.5 0.458973239452 +UniRef50_UPI000225C205 uroporphyrinogen decarboxylase 0.113182908414 0.5 0.386817091586 +UniRef50_UPI0003D25C42 0.275965440381 0.5 0.224034559619 +UniRef50_P54570 ADP ribose pyrophosphatase 0.00922238863705 0.5 0.490777611363 +UniRef50_A5UKV4 Tetrahydromethanopterin S methyltransferase, subunit H, MtrH 1.93845962927 0.5 -1.43845962927 +UniRef50_U9QRW9 0.371273059681 0.5 0.128726940319 +UniRef50_G7MD43 Major facilitator superfamily MFS_1 0.487633348063 0.5 0.0123666519374 +UniRef50_B7N8L4 NAD NADP dependent betaine aldehyde dehydrogenase 0.50479007307 0.5 -0.00479007307041 +UniRef50_P0AA45 Ribosomal small subunit pseudouridine synthase A 2.98719018789 0.5 -2.48719018789 +UniRef50_UPI000255C349 acetolactate synthase large subunit, biosynthetic type 0.142995133817 0.5 0.357004866183 +UniRef50_V9VYZ6 1.01008644534 0.5 -0.510086445341 +UniRef50_UPI0003626A85 hypothetical protein 0.689639531253 0.5 -0.189639531253 +UniRef50_UPI0003B4A90A ABC transporter permease 0.572770981237 0.5 -0.0727709812367 +UniRef50_W6RWI6 Accessory gene regulator A 0.111358037065 0.5 0.388641962935 +UniRef50_Q6GCF0 5.30834022621 0.500000000007 -4.80834022622 +UniRef50_Q3IWP7 Transcriptionalregulator, CopG family 0.237871699382 0.5 0.262128300618 +UniRef50_UPI00046423A0 cytochrome C peroxidase 0.0530111082899 0.5 0.44698889171 +UniRef50_UPI00035E30BB hypothetical protein, partial 0.00535813974371 0.499999999999 0.494641860257 +UniRef50_D8JHX6 HAD superfamily hydrolase 0.0862817328282 0.5 0.413718267172 +UniRef50_R9YPY8 5 formyltetrahydrofolate cyclo ligase 1.63031796061 0.5 -1.13031796061 +UniRef50_UPI00047AFA4E phosphoadenosine phosphosulfate reductase 1.05612337068 0.5 -0.556123370682 +UniRef50_UPI0003783983 hypothetical protein, partial 1.25520765386 0.5 -0.755207653858 +UniRef50_Q8D7Y9 Putative phosphoenolpyruvate synthase regulatory protein 0.357603111414 0.5 0.142396888586 +UniRef50_Q3J212 Putative site specific recombinase 2.74260580743 0.500000000001 -2.24260580743 +UniRef50_E0XYI3 0.472347433171 0.5 0.0276525668289 +UniRef50_W8RQU9 NAD dependent epimerase dehydratase 2.90304986921 0.500000000001 -2.40304986921 +UniRef50_E9AHU1 Putative proteophosphoglycan ppg3 0.106148295555 0.5 0.393851704445 +UniRef50_UPI0003B65B0E hypothetical protein 1.49031099059 0.5 -0.990310990588 +UniRef50_UPI000379B86A DNA glycosylase 1.2156020719 0.5 -0.715602071897 +UniRef50_UPI00047102D6 hypothetical protein, partial 0.725356615877 0.5 -0.225356615877 +UniRef50_UPI0003FB549E hypothetical protein 0.15245345383 0.5 0.34754654617 +UniRef50_D2NAU9 1.59410720022 0.5 -1.09410720022 +UniRef50_Q8CSJ5 5.31813569808 0.499999999999 -4.81813569808 +UniRef50_B2A1L0 0.41994184117 0.5 0.0800581588297 +UniRef50_M2E1P6 1.5184151954 0.5 -1.0184151954 +UniRef50_C1DHE5 Glutamine tRNA ligase 0.106685872143 0.5 0.393314127856 +UniRef50_UPI000349FB4B hypothetical protein 0.330330039091 0.5 0.169669960909 +UniRef50_W8YH03 0.435366607197 0.5 0.0646333928032 +UniRef50_Q4WFT3 GMP synthase [glutamine hydrolyzing] 0.397659286113 0.5 0.102340713887 +UniRef50_U6GVJ1 0.0598170533318 0.5 0.440182946668 +UniRef50_Q9RRB6 S layer protein, putative 0.00358523098647 0.5 0.496414769013 +UniRef50_F8DJB0 0.556111669876 0.5 -0.056111669876 +UniRef50_O67929 Cyclic pyranopterin monophosphate synthase 0.0148438712895 0.5 0.485156128711 +UniRef50_B8E1C0 Aspartate tRNA ligase 0.516988785287 0.5 -0.0169887852872 +UniRef50_UPI0001BF5F9C hypothetical protein SMAC_10519, partial 1.37426169382 0.5 -0.874261693817 +UniRef50_UPI0004689482 ATPase 0.0512566595746 0.5 0.448743340426 +UniRef50_P0AEF6 Transcriptional regulatory protein DpiA 3.79011937849 0.5 -3.29011937849 +UniRef50_UPI00047CE7FB hypothetical protein 0.974385973044 0.5 -0.474385973044 +UniRef50_UPI0003B7292B NADPH 0.103908574918 0.5 0.396091425082 +UniRef50_UPI00036B1DE9 hypothetical protein 0.390382150238 0.5 0.109617849762 +UniRef50_Q8EEW2 Beta hexosaminidase 0.0921105814031 0.5 0.407889418597 +UniRef50_A0A023RVE4 Pseudouridine synthase 0.0155963341098 0.5 0.48440366589 +UniRef50_R5AKD9 0.302046905196 0.5 0.197953094804 +UniRef50_UPI000301EB97 hypothetical protein 0.379239598747 0.5 0.120760401253 +UniRef50_O27389 Diaminopimelate epimerase 148.763028216 0.500000000007 -148.263028216 +UniRef50_Q3J219 0.389267691211 0.5 0.110732308789 +UniRef50_Q2NTI7 Zinc import ATP binding protein ZnuC 1.97804568258 0.499999999999 -1.47804568258 +UniRef50_UPI00036763CC hypothetical protein 1.37580638097 0.5 -0.87580638097 +UniRef50_UPI0003825772 30S ribosomal protein S3, partial 0.142800831643 0.499999999999 0.357199168357 +UniRef50_Q5HQ24 Glutamate racemase 2.23275628764 0.5 -1.73275628764 +UniRef50_I6TZB4 Bifunctional biotin [acetyl CoA carboxylase] synthetase biotin operon repressor 0.93315979645 0.5 -0.43315979645 +UniRef50_Q6FDU5 0.00844031284623 0.5 0.491559687154 +UniRef50_UPI00035CC932 hypothetical protein 3.0776110651 0.499999999999 -2.5776110651 +UniRef50_D5ALJ9 4.30698146842 0.500000000001 -3.80698146842 +UniRef50_D5ALJ7 3.82046064494 0.5 -3.32046064494 +UniRef50_Q04945 NADH dependent butanol dehydrogenase B 0.268335155758 0.5 0.231664844242 +UniRef50_P15259 Phosphoglycerate mutase 2 0.322121077957 0.5 0.177878922043 +UniRef50_UPI00047BB10D branched chain amino acid ABC transporter ATP binding protein 0.0578920542657 0.5 0.442107945734 +UniRef50_Q9RSI5 0.00371638577777 0.5 0.496283614222 +UniRef50_P17410 HTH type transcriptional regulator ChbR 1.43791264385 0.5 -0.937912643847 +UniRef50_C5NTZ6 Reaction center 1.40592970537 0.5 -0.905929705372 +UniRef50_Q8CPT4 3 oxoacyl [acyl carrier protein] synthase 3 protein 1 2.05585633726 0.5 -1.55585633726 +UniRef50_UPI000370920E hypothetical protein 0.530497332148 0.5 -0.0304973321484 +UniRef50_Q8EM59 Thymidine kinase 215.350855901 0.499999999989 -214.850855901 +UniRef50_C5FB81 APC family amino acid polyamine organocation transporter 2.52706335331 0.500000000002 -2.02706335331 +UniRef50_Q9RUP8 Isoleucine tRNA ligase 0.000715446947435 0.5 0.499284553053 +UniRef50_UPI0003F80A61 thioredoxin 0.149147868523 0.5 0.350852131477 +UniRef50_Q5HPR5 DNA translocase FtsK 1.83281655361 0.5 -1.33281655361 +UniRef50_N6VGJ5 Thiamin phosphate synthase 0.520134938201 0.5 -0.0201349382013 +UniRef50_G7U546 TENA THI 4 family protein 0.00994994275783 0.5 0.490050057242 +UniRef50_A1SGH4 Cell envelope related transcriptional attenuator 0.0627467287704 0.5 0.437253271229 +UniRef50_Q3A5S0 Malate dehydrogenase 1.70413738626 0.5 -1.20413738626 +UniRef50_M9KL10 Outer membrane autotransporter barrel domain protein 1.26058649398 0.5 -0.760586493979 +UniRef50_E2CRM4 0.933985605813 0.5 -0.433985605813 +UniRef50_Q8CN54 Antiholin like protein LrgA 2.0962515688 0.5 -1.5962515688 +UniRef50_T0TSZ1 1.00487574936 0.5 -0.504875749363 +UniRef50_Q95YF6 Molluscan shell protein 1 0.636198673573 0.5 -0.136198673573 +UniRef50_B9XKZ0 Putative GAF sensor protein 0.00556996234979 0.5 0.49443003765 +UniRef50_UPI00036B80A8 hypothetical protein 0.733264119434 0.5 -0.233264119434 +UniRef50_M9RTF7 Methionine biosynthesis protein 0.0923694520626 0.5 0.407630547937 +UniRef50_K2BFX5 0.295986325355 0.5 0.204013674645 +UniRef50_Q98K42 Mll1647 protein 0.578488335359 0.5 -0.0784883353585 +UniRef50_Q2SMN3 Protein RnfH 0.319289087107 0.5 0.180710912893 +UniRef50_UPI0004652B27 NAD synthetase 0.0147182565166 0.500000000001 0.485281743483 +UniRef50_Q9ZJI6 Ribonuclease J 0.00306551641076 0.5 0.49693448359 +UniRef50_UPI00046A5D50 hypothetical protein 13.7672077966 0.499999999997 -13.2672077966 +UniRef50_Q1QWQ5 6 phosphogluconate dehydrogenase, NAD binding protein 0.015766778248 0.5 0.484233221752 +UniRef50_UPI0003C48D73 PREDICTED 0.941974019984 0.5 -0.441974019984 +UniRef50_F0KC60 0.0688748085956 0.5 0.431125191405 +UniRef50_D5WZP9 Cytochrome c oxidase, cbb3 type, subunit II 0.740254342563 0.5 -0.240254342563 +UniRef50_UPI00026C64ED S ribosylhomocysteinase 0.019145176181 0.5 0.480854823819 +UniRef50_D8JKE4 PHA synthase PhaC 0.00881619439328 0.5 0.491183805607 +UniRef50_C6KU66 Plasmid partitioning protein ParA 1.80809390639 0.500000000001 -1.30809390639 +UniRef50_U3SUV7 0.461937367268 0.5 0.0380626327325 +UniRef50_UPI000287B527 sugar ABC transporter permease 0.686678130771 0.5 -0.186678130771 +UniRef50_UPI00036C10C9 hypothetical protein 0.178947266485 0.5 0.321052733515 +UniRef50_U5UN27 3.35352012711 0.5 -2.85352012711 +UniRef50_UPI00035FF879 hypothetical protein 0.243263285876 0.5 0.256736714124 +UniRef50_UPI000467CF8F hypothetical protein, partial 0.702543486977 0.5 -0.202543486977 +UniRef50_P18789 Citrate synthase 2.77816997099 0.500000000001 -2.278169971 +UniRef50_UPI00047BD49C riboflavin biosynthesis protein RibF 0.101920805092 0.5 0.398079194908 +UniRef50_UPI0003A806BB molybdopterin biosynthesis protein MoeA 0.308150206095 0.5 0.191849793905 +UniRef50_B9L170 NADH quinone oxidoreductase subunit B 0.0832882581268 0.5 0.416711741873 +UniRef50_Q2NFJ8 Diphthine synthase 5.49804352702 0.500000000003 -4.99804352703 +UniRef50_N8Y2G0 0.362133027279 0.5 0.137866972721 +UniRef50_UPI00016A848B hypothetical protein 0.323040356458 0.5 0.176959643542 +UniRef50_B7V093 Type 4 fimbrial biogenesis protein FimU 0.400257479008 0.5 0.0997425209919 +UniRef50_G7M1Q4 Tetratricopeptide TPR_1 repeat containing protein 0.0864926150653 0.5 0.413507384934 +UniRef50_G2JI43 0.0177008469577 0.5 0.482299153042 +UniRef50_UPI000371FB82 hypothetical protein 0.112297336955 0.5 0.387702663045 +UniRef50_P19932 Hydrogenase 1 operon protein HyaF 3.64535783146 0.500000000001 -3.14535783146 +UniRef50_UPI0001B465BD 30S ribosomal protein S4 0.321553672242 0.5 0.178446327758 +UniRef50_Q9EYV5 HTH type transcriptional regulator GadX 0.716199292658 0.5 -0.216199292658 +UniRef50_UPI0003B44F9E riboflavin synthase subunit alpha 0.200134425007 0.5 0.299865574993 +UniRef50_UPI000372D2DC glycerophosphoryl diester phosphodiesterase, partial 0.0104157314588 0.5 0.489584268541 +UniRef50_Q03UB1 Ribosomal RNA large subunit methyltransferase H 31.7506671875 0.500000000012 -31.2506671875 +UniRef50_H2K9T8 Putative endoribonuclease 1.00242938003 0.5 -0.502429380026 +UniRef50_W9CAE9 3.8871852682 0.5 -3.3871852682 +UniRef50_UPI0003B586D4 30S ribosomal protein S4 1.25842329932 0.5 -0.758423299318 +UniRef50_Q92YJ8 Transposase 1.04334326754 0.5 -0.543343267544 +UniRef50_A5UKC6 2 methylcitrate dehydratase, MmgE PrpD family 1.70978127236 0.499999999999 -1.20978127236 +UniRef50_D8LYP9 Singapore isolate B whole genome shotgun sequence assembly, scaffold_1 0.267531042866 0.5 0.232468957134 +UniRef50_Q8VQK4 Putative peptide transport system permease protein BruAb2_1031 1.08359926624 0.5 -0.583599266241 +UniRef50_A3PYA8 Thymidylate synthase 0.056577654421 0.5 0.443422345579 +UniRef50_UPI000465565E hypothetical protein 0.287937196858 0.5 0.212062803142 +UniRef50_P77601 Putative HTH type transcriptional regulator YkgA 4.18897745614 0.499999999996 -3.68897745614 +UniRef50_F0XZT5 0.326759166371 0.5 0.173240833629 +UniRef50_B9KPM1 2.56816900734 0.499999999999 -2.06816900733 +UniRef50_B7KZF3 Chromosomal replication initiator DnaA 2.43114876338 0.499999999999 -1.93114876338 +UniRef50_UPI0003654BED hypothetical protein 0.184688847097 0.5 0.315311152902 +UniRef50_UPI0003C168CC 1.4541264041 0.5 -0.954126404101 +UniRef50_B7MHP0 Nicotinate phosphoribosyltransferase 1.86286675666 0.5 -1.36286675666 +UniRef50_Q8CTY4 Thiamine biosynthesis lipoprotein 1.52537182107 0.5 -1.02537182107 +UniRef50_P31052 Dihydrolipoyl dehydrogenase 0.010006669247 0.5 0.489993330753 +UniRef50_G2L441 0.578439295244 0.5 -0.0784392952442 +UniRef50_UPI000364F2DB hypothetical protein 0.316659766047 0.5 0.183340233953 +UniRef50_UPI000440C4B4 PREDICTED 0.550230958912 0.5 -0.0502309589119 +UniRef50_Q9T1A3 Gp20 0.00105512880524 0.5 0.498944871194 +UniRef50_P0ADH8 Type 1 fimbriae regulatory protein FimE 1.34162507648 0.5 -0.841625076477 +UniRef50_UPI00036912E2 MULTISPECIES 0.304815877709 0.5 0.195184122291 +UniRef50_Q3JPQ2 1.24181518217 0.5 -0.741815182173 +UniRef50_B8J4Q3 Chorismate synthase 0.124625546815 0.5 0.375374453185 +UniRef50_E2ZXQ0 1.87956730571 0.5 -1.37956730571 +UniRef50_D6AIG0 0.295287875481 0.5 0.204712124519 +UniRef50_B9KLD6 0.481772257254 0.5 0.0182277427458 +UniRef50_UPI0002490D5A PTS system mannitol specific transporter subunit IIBC 0.390327363923 0.5 0.109672636077 +UniRef50_M4QYT8 Nitrite reductase small subunit 0.0160048094917 0.5 0.483995190508 +UniRef50_UPI000375EB87 hypothetical protein 0.0423913297319 0.5 0.457608670268 +UniRef50_K0R863 0.05505208827 0.500000000001 0.444947911729 +UniRef50_UPI00030AEBF5 hypothetical protein 0.41051267169 0.5 0.08948732831 +UniRef50_Q9K0X8 Cell division protein FtsA 0.0625507865982 0.5 0.437449213402 +UniRef50_A5UJ54 Archaeal glutamate synthase [NADPH] 2.1177989057 0.5 -1.6177989057 +UniRef50_UPI00034AC849 chemotaxis protein CheY 1.40316309573 0.499999999999 -0.903163095732 +UniRef50_G8VL08 ATP dependent helicase HrpA 0.00341667160286 0.5 0.496583328397 +UniRef50_I3VWE8 Aspartokinase 0.0488684326185 0.5 0.451131567381 +UniRef50_P39788 Endonuclease III 2.28366700548 0.499999999998 -1.78366700548 +UniRef50_A0A024BWT3 RloF 0.0116413422261 0.5 0.488358657774 +UniRef50_C6E8N4 NADH quinone oxidoreductase subunit B 0.0629252466235 0.5 0.437074753376 +UniRef50_P10539 Aspartate semialdehyde dehydrogenase 0.289884818182 0.5 0.210115181818 +UniRef50_UPI0003B603D1 hypothetical protein 0.0788833209055 0.5 0.421116679095 +UniRef50_G8S8P0 0.034146522853 0.5 0.465853477147 +UniRef50_Q0FH14 0.215319462414 0.5 0.284680537586 +UniRef50_P00807 Beta lactamase 1.80922085945 0.5 -1.30922085945 +UniRef50_Q8DV98 Folate transporter FolT 7.81172291195 0.499999999996 -7.31172291195 +UniRef50_UPI0003B62A81 shikimate kinase 1.13840482191 0.5 -0.638404821909 +UniRef50_Q8R5Z9 Ribosome recycling factor 2.09905223646 0.5 -1.59905223646 +UniRef50_F4A5J4 Conserved protein 0.134326158535 0.499999999999 0.365673841466 +UniRef50_UPI000237B476 gluconate transporter 0.0110526699911 0.5 0.488947330009 +UniRef50_Q8NE62 Choline dehydrogenase, mitochondrial 0.500636269091 0.5 -0.000636269090661 +UniRef50_I9RNM3 Putative sialic acid transporter 0.552382817779 0.5 -0.0523828177789 +UniRef50_Q3J5X4 Integrase recombinase 1.4348544026 0.5 -0.934854402597 +UniRef50_Q9I0N3 Sulfurtransferase TusD homolog 1.20884350358 0.5 -0.708843503581 +UniRef50_A0A023S183 Alkaline phosphatase 0.0185357700058 0.5 0.481464229994 +UniRef50_U3THX2 0.338094632851 0.5 0.161905367149 +UniRef50_Q9RXZ8 6,7 dimethyl 8 ribityllumazine synthase 0.00408803386213 0.5 0.495911966138 +UniRef50_Q8ZLS1 Arabinose 5 phosphate isomerase KdsD 0.479468735972 0.5 0.0205312640275 +UniRef50_Q2FDM1 Immunodominant staphylococcal antigen B 2.06029177396 0.5 -1.56029177396 +UniRef50_F2MNQ3 Serine protease HtrA 0.322016364839 0.5 0.177983635161 +UniRef50_P43899 Oxygen independent coproporphyrinogen III oxidase like protein HI_0463 2.78558028089 0.5 -2.28558028089 +UniRef50_X7YGE5 Putative groESL operon 0.432758552905 0.5 0.0672414470945 +UniRef50_A6M1G9 Nucleotidyl transferase 0.260399949267 0.5 0.239600050733 +UniRef50_D6Z602 Glutamine synthetase catalytic region 0.0762481272989 0.500000000001 0.423751872701 +UniRef50_P94951 F420 dependent methylenetetrahydromethanopterin dehydrogenase 0.459100651905 0.5 0.0408993480949 +UniRef50_P60239 F420 non reducing hydrogenase subunit G 2.05271776923 0.5 -1.55271776923 +UniRef50_L0I338 0.431087743865 0.5 0.068912256135 +UniRef50_F7XZJ7 Protein tyrosine phosphatase, low molecular weight 0.941212143836 0.5 -0.441212143836 +UniRef50_T1YAK1 Phage protein 1.53398070316 0.499999999999 -1.03398070316 +UniRef50_UPI0003C147A2 PREDICTED 0.270087592428 0.5 0.229912407572 +UniRef50_G0J3B6 1.73164877773 0.5 -1.23164877773 +UniRef50_UPI0003709308 hypothetical protein 0.0239730333585 0.5 0.476026966642 +UniRef50_Q130Q6 ABC 1 3.2770014615 0.500000000003 -2.7770014615 +UniRef50_UPI000469E31A hypothetical protein 1.21502635549 0.499999999998 -0.715026355492 +UniRef50_UPI000465AB9E hypothetical protein 0.013881799053 0.5 0.486118200947 +UniRef50_K7SNW6 Glycosyl hydrolase family 38 N terminal domain containing protein 0.00901985534642 0.5 0.490980144654 +UniRef50_J7TWG6 0.362133027403 0.5 0.137866972597 +UniRef50_P42616 Protein YqjC 0.640866846809 0.5 -0.140866846809 +UniRef50_Q2GAZ8 RepB plasmid partition 0.0717241193546 0.5 0.428275880645 +UniRef50_UPI0004732E2B hypothetical protein, partial 0.265284524418 0.5 0.234715475582 +UniRef50_P0C7L3 Beta ketoadipyl CoA thiolase 0.198224229595 0.5 0.301775770405 +UniRef50_UPI00047DA36E ABC transporter 0.105710096768 0.5 0.394289903231 +UniRef50_M4TFL9 Protein lysine acetyltransferase 2.32612817844 0.5 -1.82612817844 +UniRef50_P0AAJ2 Probable anaerobic dimethyl sulfoxide reductase chain YnfG 0.190969191684 0.5 0.309030808316 +UniRef50_Q8DVZ6 3.34087620611 0.499999999999 -2.84087620611 +UniRef50_Q8DVZ9 1.61255205445 0.5 -1.11255205445 +UniRef50_UPI00037681FA hypothetical protein 0.0984397274203 0.5 0.40156027258 +UniRef50_A0RAK2 Response regulator 0.00592888797432 0.5 0.494071112026 +UniRef50_G7ZT64 2.13756756075 0.5 -1.63756756075 +UniRef50_S5YZN5 ABC type dipeptide oligopeptide nickel transport system, permease component 1.37766917211 0.5 -0.877669172108 +UniRef50_P37908 UPF0053 inner membrane protein YfjD 1.76772706642 0.5 -1.26772706642 +UniRef50_I6GY98 Glutamate cysteine ligase 2.47097876107 0.499999999998 -1.97097876107 +UniRef50_UPI00016C54E0 DNA gyrase subunit B 0.681459683141 0.5 -0.181459683141 +UniRef50_A4EM47 1.7549412461 0.5 -1.2549412461 +UniRef50_UPI0002B93C15 Phosphopentomutase 0.00124056527748 0.5 0.498759434723 +UniRef50_P42850 Phosphoenolpyruvate synthase 2.32261448296 0.499999999999 -1.82261448296 +UniRef50_UPI0004708FDA hypothetical protein 0.0816595926091 0.5 0.418340407391 +UniRef50_A5F2P1 3 ketoacyl CoA thiolase 1.2347495633 0.5 -0.734749563304 +UniRef50_O32799 Formate acetyltransferase 0.469761046978 0.5 0.0302389530225 +UniRef50_Q3B6F6 30S ribosomal protein S3 2.50471541323 0.500000000004 -2.00471541324 +UniRef50_UPI00037BC05D hypothetical protein 0.404879294557 0.5 0.0951207054427 +UniRef50_O62585 Serine hydroxymethyltransferase, cytosolic 4.16527360718 0.500000000003 -3.66527360718 +UniRef50_UPI000470E9D6 hypothetical protein 0.371286647591 0.5 0.128713352409 +UniRef50_UPI00036E5905 citrate lyase 0.848696412269 0.5 -0.348696412269 +UniRef50_I3BSR5 PEGA domain protein 1.05759118424 0.5 -0.557591184239 +UniRef50_UPI0003052E4A NADH dehydrogenase 18.1200255889 0.499999999997 -17.6200255889 +UniRef50_UPI00026C85FF hydrolase 0.328421142264 0.5 0.171578857736 +UniRef50_C6E3K3 Type VI secretion protein, VC_A0107 family 0.00469726149293 0.5 0.495302738507 +UniRef50_R7PUK9 0.801007401977 0.5 -0.301007401977 +UniRef50_W5GWD8 0.0115654765941 0.5 0.488434523406 +UniRef50_P0A0Q0 Lactose phosphotransferase system repressor 2.32699930105 0.499999999998 -1.82699930105 +UniRef50_E0XR78 0.195074484624 0.5 0.304925515376 +UniRef50_C5BEL3 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.0227452203581 0.5 0.477254779642 +UniRef50_UPI000472566B thioredoxin 0.694809036866 0.5 -0.194809036866 +UniRef50_G6EQ26 SSU ribosomal protein S1P 0.380329039738 0.5 0.119670960262 +UniRef50_UPI00037152ED hypothetical protein 3.99359653355 0.500000000001 -3.49359653355 +UniRef50_O94582 Probable anthranilate synthase component 1 0.238414590851 0.5 0.261585409149 +UniRef50_B5F446 Aspartate carbamoyltransferase 2.68973079739 0.5 -2.18973079739 +UniRef50_UPI00029B4277 thioredoxin 0.265468799723 0.5 0.234531200277 +UniRef50_K5ZH15 UPF0301 protein MXAZACID_13641 0.485790835927 0.5 0.0142091640733 +UniRef50_M1XK11 SCCmec staphylococcal cassette region, isolate CMFT201 2.04300951101 0.5 -1.54300951101 +UniRef50_I6TNE5 Bacteriophage replication gene A protein 2.04653976194 0.499999999999 -1.54653976194 +UniRef50_D6SDW7 Acetate CoA transferase YdiF 2.08181442529 0.5 -1.58181442529 +UniRef50_Q099I3 1.10301278275 0.5 -0.603012782751 +UniRef50_UPI00047246F8 iron ABC transporter permease, partial 0.244950507433 0.5 0.255049492567 +UniRef50_I6AH85 0.484795012654 0.5 0.0152049873456 +UniRef50_F4SFU3 Biofilm PGA synthesis lipoprotein PgaB 1.44457361897 0.500000000001 -0.944573618968 +UniRef50_UPI000472C820 hypothetical protein 12.5332570993 0.500000000006 -12.0332570993 +UniRef50_A9KK69 S adenosylmethionine 1.0008483156 0.5 -0.5008483156 +UniRef50_UPI00037911F9 hypothetical protein 0.264992273525 0.5 0.235007726475 +UniRef50_UPI00046CDCC8 hypothetical protein 0.0769633486158 0.5 0.423036651384 +UniRef50_A5UP74 1.62954798989 0.499999999999 -1.12954798989 +UniRef50_A5UP75 1.07929224228 0.5 -0.579292242282 +UniRef50_Q65GF0 UvrABC system protein C 1.92439363371 0.5 -1.42439363371 +UniRef50_P22302 Superoxide dismutase [Fe], chloroplastic 0.245036625385 0.5 0.254963374615 +UniRef50_Q3IVJ7 Acyltransferase 3 family 2.14079918976 0.500000000001 -1.64079918976 +UniRef50_U2YI39 0.156118662605 0.5 0.343881337395 +UniRef50_UPI000463E2C6 3 hydroxyacyl CoA dehydrogenase 0.110901407066 0.5 0.389098592934 +UniRef50_B4SQ46 Drug resistance transporter, EmrB QacA subfamily 0.359531899899 0.5 0.140468100101 +UniRef50_A4SM42 ATP dependent Clp protease proteolytic subunit 0.000138673714994 0.5 0.499861326285 +UniRef50_P0AEB4 D alanyl D alanine carboxypeptidase DacA 2.59372276038 0.5 -2.09372276038 +UniRef50_UPI0002654FEE PREDICTED 1.09530344433 0.5 -0.595303444328 +UniRef50_UPI0002492D9C regulator 0.313489979535 0.5 0.186510020465 +UniRef50_S6STB0 0.477161533257 0.5 0.0228384667428 +UniRef50_Q9RS20 Multidrug efflux transporter, putative 0.0017699102743 0.5 0.498230089726 +UniRef50_Q03SL6 Triosephosphate isomerase 0.386903198433 0.5 0.113096801567 +UniRef50_UPI0001AF23F3 oxidoreductase 0.372013454345 0.5 0.127986545655 +UniRef50_E3J6Y9 FAD dependent oxidoreductase 0.00572609747115 0.5 0.494273902529 +UniRef50_UPI00036FA050 hypothetical protein 0.498514896691 0.5 0.00148510330888 +UniRef50_Q819W8 Ribosome biogenesis GTPase A 1.99145592011 0.5 -1.49145592011 +UniRef50_UPI0004627B5D PREDICTED 3.8688950277 0.500000000006 -3.36889502771 +UniRef50_UPI00027F40A7 0.355997740814 0.5 0.144002259186 +UniRef50_W6IDM0 0.266755845991 0.5 0.233244154009 +UniRef50_UPI00037E7F9C hypothetical protein 0.0375772484322 0.499999999999 0.462422751568 +UniRef50_R7QKG6 Stackhouse genomic scaffold, scaffold_401 3.45139024676 0.5 -2.95139024676 +UniRef50_E2X9Y8 PTS system, glucitol sorbitol specific, IIBC component 2.10577847712 0.5 -1.60577847712 +UniRef50_UPI0001B43C25 hypothetical protein, partial 0.0412074471844 0.5 0.458792552816 +UniRef50_Q11MY4 Aminotransferase 2.45124698595 0.499999999997 -1.95124698595 +UniRef50_U3AS30 ABC transporter, binding protein 1.10643204505 0.5 -0.606432045049 +UniRef50_UPI0003728AAF MULTISPECIES 0.0627965751077 0.5 0.437203424892 +UniRef50_UPI00026C7EA0 2 isopropylmalate synthase 0.431184670682 0.5 0.0688153293179 +UniRef50_Q42684 Superoxide dismutase [Mn], mitochondrial 0.261266407011 0.5 0.238733592989 +UniRef50_A8IJ48 0.355269597544 0.5 0.144730402456 +UniRef50_Q46L27 Phosphate import ATP binding protein PstB 0.0185145980332 0.499999999999 0.481485401967 +UniRef50_UPI00046E069E 0.152994960012 0.5 0.347005039988 +UniRef50_UPI000407DFAC peptide ABC transporter substrate binding protein 0.0439680298991 0.5 0.456031970101 +UniRef50_R4ZTZ8 Erythrocyte binding protein 2 0.427676197809 0.5 0.072323802191 +UniRef50_T1Y7X3 Transporter, Na+ H+ antiporter family 2.04140715353 0.499999999999 -1.54140715353 +UniRef50_UPI0003A7157D ABC transporter permease 0.16650539277 0.5 0.33349460723 +UniRef50_E3A6F2 Transcriptional activator GpuR 2.1239114731 0.5 -1.6239114731 +UniRef50_A0LFA0 0.14986988723 0.5 0.35013011277 +UniRef50_C7LI26 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein 3.41429947174 0.500000000005 -2.91429947175 +UniRef50_UPI0003723D7C hypothetical protein, partial 0.284193174761 0.5 0.215806825239 +UniRef50_F6W1A6 3.18398055559 0.5 -2.68398055559 +UniRef50_A8LAA1 4 hydroxy 2 oxovalerate aldolase 1 1.29088729761 0.499999999999 -0.790887297608 +UniRef50_Q8XAZ3 UPF0187 protein YneE 6.38367804857 0.500000000001 -5.88367804857 +UniRef50_H3Y3Z6 PHP domain protein 1.04007209444 0.5 -0.540072094437 +UniRef50_C1DF31 Transcriptional regulator, AraC family 0.0829460634684 0.5 0.417053936532 +UniRef50_Q8RA66 Tyrosine recombinase XerC 0.128398597912 0.5 0.371601402088 +UniRef50_A3ML41 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 6.66194168598 0.49999999999 -6.16194168597 +UniRef50_Q1R1I5 Putative Holliday junction resolvase 0.762782499069 0.5 -0.262782499069 +UniRef50_Q8CMP4 Serine aspartate repeat containing protein F 1.56196085521 0.5 -1.06196085521 +UniRef50_R4NU59 Histone acetyltransferase HPA2 related acetyltransferase 0.371272378625 0.5 0.128727621375 +UniRef50_R5NQY2 Beta eliminating lyase 11.4166159618 0.499999999999 -10.9166159618 +UniRef50_Q1C5I4 Nucleoside diphosphate kinase 0.908060262663 0.5 -0.408060262663 +UniRef50_O67222 S adenosylmethionine synthase 0.0244771681349 0.499999999999 0.475522831866 +UniRef50_M2E237 Putative reductase 0.209108076555 0.5 0.290891923445 +UniRef50_UPI0004696E1B molecular chaperone Hsp33 0.120379855541 0.5 0.379620144459 +UniRef50_UPI00046741A1 hypothetical protein 1.12587037478 0.5 -0.625870374782 +UniRef50_D4HBM2 Transcriptional regulator, LacI family 0.0376819264235 0.5 0.462318073576 +UniRef50_F5I475 Acyl CoA dehydrogenase, middle domain protein 0.23745958104 0.5 0.26254041896 +UniRef50_D0D906 Tripartite ATP independent periplasmic transporter, DctQ component 1.18425648766 0.5 -0.684256487662 +UniRef50_E2ZSF7 SadB 3.42769448761 0.5 -2.92769448761 +UniRef50_UPI000473FA93 30S ribosomal protein S3, partial 0.611806558815 0.5 -0.111806558815 +UniRef50_C2PG39 GCN5 related N acetyltransferase 0.512973912736 0.5 -0.0129739127355 +UniRef50_G8VGQ5 0.0606148160697 0.5 0.43938518393 +UniRef50_F8I070 Peptidyl prolyl cis trans isomerase 0.802686715795 0.5 -0.302686715795 +UniRef50_W7QF52 4.90038651255 0.499999999999 -4.40038651255 +UniRef50_E4BJ69 FeoA domain protein 0.6475300974 0.5 -0.1475300974 +UniRef50_P52878 Phosphoserine aminotransferase 2.07111999862 0.5 -1.57111999862 +UniRef50_A6M011 ABC transporter permease protein 0.286103362277 0.5 0.213896637723 +UniRef50_A5I3R8 ABC transporter, permease protein 0.153143672799 0.5 0.346856327201 +UniRef50_P76245 Probable diguanylate cyclase YeaP 1.7745618961 0.500000000001 -1.2745618961 +UniRef50_UPI0003A75D7C lipase 0.0302743878556 0.5 0.469725612144 +UniRef50_A5CLH3 DivIVA protein 0.545363137205 0.5 -0.0453631372048 +UniRef50_UPI00016C35F3 probable MoxR related protein, partial 0.22819367198 0.5 0.27180632802 +UniRef50_H2ZBA2 1.06568715299 0.5 -0.565687152987 +UniRef50_Q67LZ8 Oligopeptide ABC transporter permease protein 3.10348162922 0.499999999998 -2.60348162922 +UniRef50_C6M3G0 0.119449613788 0.5 0.380550386212 +UniRef50_UPI000379FDE6 hypothetical protein 0.0303540128003 0.5 0.469645987199 +UniRef50_R6GQC1 Peptidase U32 0.147129746803 0.5 0.352870253197 +UniRef50_Q9RSR0 0.00758612909478 0.5 0.492413870905 +UniRef50_UPI0003690F47 hypothetical protein 0.294531401855 0.5 0.205468598145 +UniRef50_A0A024HX85 0.0118746462359 0.5 0.488125353764 +UniRef50_A1USI9 3 oxoacyl [acyl carrier protein] synthase 3 0.39547418043 0.5 0.10452581957 +UniRef50_A5UMS9 3.09177196141 0.5 -2.59177196141 +UniRef50_UPI0004743442 acetolactate synthase catalytic subunit, partial 0.174342243092 0.499999999999 0.325657756908 +UniRef50_O83296 Protein Soj homolog 0.252851574747 0.5 0.247148425253 +UniRef50_UPI000364FA10 hypothetical protein 0.352727628533 0.5 0.147272371467 +UniRef50_E1QW23 Uracil DNA glycosylase superfamily 0.0591033315574 0.5 0.440896668442 +UniRef50_A0A037L527 SPP1 family phage portal protein 3.49982114323 0.499999999999 -2.99982114323 +UniRef50_UPI0003717BEB diguanylate cyclase 0.0100885857532 0.5 0.489911414247 +UniRef50_B2KEN0 DNA directed RNA polymerase subunit beta 0.683219638024 0.5 -0.183219638024 +UniRef50_O87406 UPF0070 protein NGO0425 0.0916263450951 0.5 0.408373654905 +UniRef50_UPI0003AB479F methionyl tRNA synthetase 0.18003850916 0.5 0.31996149084 +UniRef50_UPI000477EBC3 hypothetical protein 0.00900656253096 0.5 0.490993437469 +UniRef50_A5UKA0 Glycosyltransferase 17.1106075178 0.499999999999 -16.6106075178 +UniRef50_A5UML7 Predicted AAA ATPase 1.68066157515 0.5 -1.18066157515 +UniRef50_A6LY87 0.496427181224 0.5 0.00357281877608 +UniRef50_Q8ZCX2 Polyphosphate kinase 1.02125255997 0.5 -0.521252559968 +UniRef50_UPI0003A3B951 hypothetical protein 0.510174668177 0.5 -0.0101746681769 +UniRef50_UPI00037C182A hypothetical protein 1.49308382437 0.5 -0.993083824373 +UniRef50_K7U2F6 0.556256238943 0.5 -0.0562562389432 +UniRef50_T0SXL1 ABC transporter multidrug efflux pump 0.0225604622319 0.5 0.477439537768 +UniRef50_Q1CTZ0 Cag pathogenicity island protein I 0.0261661491597 0.5 0.473833850841 +UniRef50_Q2RBC8 Expressed protein 0.373803437819 0.5 0.126196562181 +UniRef50_M4UIL6 46.0316010864 0.49999999999 -45.5316010864 +UniRef50_E4TFB2 TRAP transporter solute receptor, TAXI family 3.13478517501 0.499999999999 -2.63478517501 +UniRef50_F2IFK9 0.00401948530651 0.499999999999 0.495980514694 +UniRef50_UPI0003B66E26 UTP glucose 1 phosphate uridylyltransferase 0.881645773244 0.5 -0.381645773244 +UniRef50_UPI0003B6588F branched chain amino acid transporter AzlC 0.468914340551 0.5 0.0310856594487 +UniRef50_Q4L4U2 Protein NagD homolog 1.50645543274 0.500000000001 -1.00645543274 +UniRef50_P0A5S1 PhoH like protein 0.0190918843591 0.5 0.480908115641 +UniRef50_W0DM86 Diguanylate cyclase 0.0625295917427 0.5 0.437470408257 +UniRef50_UPI0004119C01 hypothetical protein 0.25248245608 0.5 0.24751754392 +UniRef50_UPI000373DCE8 hypothetical protein 1.88646166468 0.5 -1.38646166468 +UniRef50_Q9RRP2 0.00560759176668 0.5 0.494392408233 +UniRef50_Q9RRP3 0.00182042418787 0.5 0.498179575812 +UniRef50_Q6G7L8 Hydroxyethylthiazole kinase 2.26004806511 0.499999999997 -1.76004806511 +UniRef50_UPI0000164CDA molybdenum cofactor biosynthesis protein A 0.000455857112804 0.5 0.499544142887 +UniRef50_Q53158 Phosphoribosyl AMP cyclohydrolase 40.758202793 0.500000000004 -40.258202793 +UniRef50_B0JMB5 2.01416681427 0.5 -1.51416681427 +UniRef50_UPI00035E553A hypothetical protein 1.96756250785 0.5 -1.46756250785 +UniRef50_G7M109 Stage III sporulation protein AA 0.133293031451 0.5 0.366706968549 +UniRef50_R4M6A1 0.630636686107 0.5 -0.130636686107 +UniRef50_UPI0003062627 hypothetical protein 0.0621549319815 0.5 0.437845068018 +UniRef50_Q54443 Dextranase 2.15894555495 0.5 -1.65894555495 +UniRef50_UPI000370DB0C hypothetical protein 0.419906128452 0.5 0.0800938715484 +UniRef50_W1VLC3 0.3235086028 0.5 0.1764913972 +UniRef50_S2WM30 0.0356966597405 0.5 0.464303340259 +UniRef50_UPI0003752BA6 hypothetical protein 0.924763706376 0.5 -0.424763706376 +UniRef50_Q82GB8 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.332372376023 0.5 0.167627623977 +UniRef50_V5ST11 Cytochrome P450 0.432985917131 0.5 0.0670140828687 +UniRef50_E6VVV5 AzlC family protein 1.32417242906 0.5 -0.824172429058 +UniRef50_R7FQK3 Arabinose binding protein 0.0504352023745 0.5 0.449564797625 +UniRef50_P0AG77 Nuclease SbcCD subunit D 2.65458845911 0.499999999999 -2.15458845911 +UniRef50_UPI0003773D73 50S ribosomal protein L18 0.0765536889328 0.5 0.423446311067 +UniRef50_M9VFV0 HAD hydrolase, family IIB 0.150587122204 0.5 0.349412877796 +UniRef50_E2ZT41 1.42390137604 0.5 -0.923901376038 +UniRef50_UPI0004447F97 PREDICTED 0.165877551739 0.5 0.334122448261 +UniRef50_I2ZU82 2.14331366198 0.5 -1.64331366198 +UniRef50_P81177 Zinc metalloproteinase aureolysin 2.04228367307 0.5 -1.54228367307 +UniRef50_P0AF00 Molybdenum cofactor biosynthesis protein B 0.581151151237 0.5 -0.0811511512367 +UniRef50_Q4YEI4 0.786763929354 0.5 -0.286763929354 +UniRef50_C3KNV3 MFS permease 0.0161147056465 0.5 0.483885294353 +UniRef50_M1LUI1 D galactose binding periplasmic protein MglB 0.143701753974 0.5 0.356298246026 +UniRef50_P52558 N5 carboxyaminoimidazole ribonucleotide mutase 0.0301387203575 0.5 0.469861279642 +UniRef50_T2E9A2 Glycosyl transferases group 1 family protein 0.210125286045 0.5 0.289874713955 +UniRef50_UPI0003B71379 N acetyltransferase 0.386156219813 0.5 0.113843780187 +UniRef50_UPI00036E1F30 hypothetical protein 0.472476468072 0.5 0.0275235319282 +UniRef50_U5N662 0.148872035383 0.5 0.351127964617 +UniRef50_D9TM82 Pyruvate flavodoxin ferredoxin oxidoreductase domain protein 0.106313377533 0.5 0.393686622468 +UniRef50_Q4L4Y4 1.91401011016 0.5 -1.41401011016 +UniRef50_UPI00026CC3BE recombinase 2.37341137297 0.5 -1.87341137297 +UniRef50_UPI00047918D8 isoleucine tRNA ligase 0.3913704508 0.5 0.1086295492 +UniRef50_W1E8W6 Serine transporter 0.442110470029 0.5 0.0578895299713 +UniRef50_M9VGG3 0.550899884886 0.5 -0.0508998848857 +UniRef50_A3V2A1 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 2.05164983344 0.5 -1.55164983344 +UniRef50_Q9AA76 0.483695804128 0.5 0.0163041958723 +UniRef50_I1EHK4 0.0388527014699 0.5 0.46114729853 +UniRef50_P9WIZ4 Divalent metal cation transporter MntH 0.0120616331103 0.5 0.48793836689 +UniRef50_E3E667 0.00480189222058 0.5 0.49519810778 +UniRef50_Q1GMS0 Dihydroorotase 1.03539536048 0.5 -0.535395360481 +UniRef50_D9ULU8 CvhA 0.0280062048627 0.499999999999 0.471993795138 +UniRef50_UPI000367667A hypothetical protein 0.577897713979 0.5 -0.0778977139792 +UniRef50_I0C1A6 Nitrogen regulation protein NIFR3 9.99743701917 0.499999999996 -9.49743701916 +UniRef50_Q49XM4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 1.20180628921 0.5 -0.701806289209 +UniRef50_W5XWP7 Aldehyde dehydrogenase 1.15278139852 0.5 -0.652781398516 +UniRef50_C8X7N2 1.04967645128 0.5 -0.549676451276 +UniRef50_UPI00037FE0F3 hypothetical protein 0.036459875174 0.5 0.463540124826 +UniRef50_A1IQ80 Riboflavin biosynthesis protein RibD 0.0197719636091 0.5 0.480228036391 +UniRef50_UPI00036C9CB5 hypothetical protein 0.418975408248 0.5 0.0810245917524 +UniRef50_A7X6I5 Fibronectin binding protein A 1.81110587857 0.5 -1.31110587857 +UniRef50_A0A059MMV6 MFS transporter 0.00967004859678 0.5 0.490329951403 +UniRef50_S2R9A4 Excinuclease ATPase subunit 0.0756665277606 0.5 0.42433347224 +UniRef50_Q29RN5 LOC767890 protein 0.251651172474 0.5 0.248348827526 +UniRef50_A0A022H1X1 Mannosyltransferase 5.12369945431 0.500000000001 -4.62369945431 +UniRef50_Q2JXL1 Serine tRNA ligase 0.180070518336 0.5 0.319929481664 +UniRef50_I0Z518 0.390511729151 0.5 0.109488270849 +UniRef50_B1YLE0 Triosephosphate isomerase 0.219879770899 0.5 0.280120229101 +UniRef50_Q1LHJ9 Ribosomal RNA small subunit methyltransferase G 0.37161084767 0.5 0.12838915233 +UniRef50_A6V312 0.570707154019 0.5 -0.0707071540193 +UniRef50_Q51366 GDP mannose 4,6 dehydratase 3.4139566586 0.5 -2.9139566586 +UniRef50_UPI0003AA2BE4 adenylate kinase 0.139372716601 0.5 0.360627283399 +UniRef50_UPI00037042BD hypothetical protein 0.0196907340347 0.5 0.480309265966 +UniRef50_C4Z2L9 0.531161052157 0.5 -0.0311610521573 +UniRef50_E4B7L0 0.187076127222 0.499999999999 0.312923872779 +UniRef50_F5ZKQ5 PTS multi domain regulator 0.00855824629548 0.5 0.491441753704 +UniRef50_D2Q557 Cobyrinic acid ac diamide synthase 0.166137289151 0.5 0.333862710849 +UniRef50_UPI0001CBAB2C PREDICTED 0.111192497095 0.5 0.388807502905 +UniRef50_A7ZR24 Chromosome initiation inhibitor 2.89021024537 0.500000000001 -2.39021024537 +UniRef50_F0RL27 Cell envelope related transcriptional attenuator 0.00327575826759 0.5 0.496724241732 +UniRef50_C0F8H0 Transketolase 2.83853215297 0.5 -2.33853215297 +UniRef50_M7CS69 Arsenate reductase 0.350121188898 0.5 0.149878811102 +UniRef50_G7M7C1 Cell wall binding repeat containing protein 0.442071789338 0.5 0.0579282106624 +UniRef50_K2RRG6 0.260090277532 0.5 0.239909722468 +UniRef50_Q3IWQ1 Caspase family protein 1.98647681063 0.5 -1.48647681063 +UniRef50_Q8CRY0 UPF0342 protein SE_1526 6.39082085212 0.500000000001 -5.89082085212 +UniRef50_P41187 DNA directed RNA polymerase subunit beta 0.583784646408 0.5 -0.0837846464079 +UniRef50_A7N872 0.167742961141 0.5 0.332257038859 +UniRef50_X0SWR3 Marine sediment metagenome DNA, contig 3.5255985089 0.500000000001 -3.0255985089 +UniRef50_Q5HN54 UPF0435 protein SERP1418 1.32658718891 0.5 -0.826587188907 +UniRef50_B9JY98 ABC transporter 7.19222305482 0.500000000009 -6.69222305482 +UniRef50_UPI0003FAD0C0 hypothetical protein 0.117613858192 0.5 0.382386141808 +UniRef50_G0IAR6 Transposase 0.125283066256 0.5 0.374716933744 +UniRef50_W0NHP5 Transposase 2.95463194217 0.5 -2.45463194217 +UniRef50_UPI0003474DAF hypothetical protein 0.0976995716354 0.5 0.402300428365 +UniRef50_UPI00037B2E7D hypothetical protein 0.175132993658 0.5 0.324867006342 +UniRef50_A3M7C9 0.00744612180438 0.5 0.492553878196 +UniRef50_UPI0002DCEE9A hypothetical protein 0.337433060513 0.5 0.162566939487 +UniRef50_Q9I1X8 0.885384893211 0.5 -0.385384893211 +UniRef50_D2YK48 Phosphoribosylformylglycinamidine synthase 0.817553371152 0.5 -0.317553371152 +UniRef50_UPI000471F9AA hypothetical protein 0.12064069923 0.5 0.37935930077 +UniRef50_P76205 Putative ankyrin repeat protein B 0.425599564071 0.5 0.0744004359291 +UniRef50_G7M911 Major facilitator superfamily MFS_1 0.0788480689942 0.5 0.421151931006 +UniRef50_UPI00046F5D51 leucyl phenylalanyl tRNA protein transferase 0.116356239082 0.5 0.383643760918 +UniRef50_G7ZQT1 2.51162540683 0.499999999998 -2.01162540683 +UniRef50_UPI0002489B72 polysaccharide biosynthesis protein 0.16517867198 0.5 0.33482132802 +UniRef50_A6W4G4 0.969368046393 0.5 -0.469368046393 +UniRef50_Q8D385 Zinc import ATP binding protein ZnuC 4.01398600214 0.499999999999 -3.51398600214 +UniRef50_A0A011P1A0 1.64564820019 0.500000000001 -1.14564820019 +UniRef50_K1UQX5 Thiazole biosynthesis protein ThiH 0.671207457687 0.5 -0.171207457687 +UniRef50_B1J356 Bifunctional protein PyrR 0.0851484752955 0.5 0.414851524705 +UniRef50_P19685 Superoxide dismutase [Fe] 0.317967080641 0.5 0.182032919359 +UniRef50_UPI0003B7AF8F septation ring formation regulator EzrA 0.458526011644 0.5 0.0414739883564 +UniRef50_A3KVE3 1.10570124021 0.5 -0.605701240212 +UniRef50_Q9RTB7 1,4 alpha glucan branching enzyme GlgB 0.0063254628783 0.5 0.493674537122 +UniRef50_Q891D3 Tyrosine tRNA ligase 0.100497250769 0.5 0.399502749231 +UniRef50_P67664 HTH type transcriptional activator AaeR 1.50192755435 0.5 -1.00192755435 +UniRef50_W8T7R1 4.0149380742 0.499999999997 -3.51493807419 +UniRef50_Q1XG21 1.65200415036 0.5 -1.15200415036 +UniRef50_UPI0003B52ABE flagellar biosynthesis protein FlhA 0.196191016861 0.5 0.303808983139 +UniRef50_F7ZDL0 0.159936172848 0.5 0.340063827152 +UniRef50_Q0PAR0 Macrolide export ATP binding permease protein MacB 0.110375472728 0.5 0.389624527272 +UniRef50_P23034 Aspartate aminotransferase 0.0487011559578 0.5 0.451298844042 +UniRef50_A6LPV8 Isoaspartyl dipeptidase 0.43511719016 0.5 0.0648828098404 +UniRef50_I4Z5S2 Type II secretory pathway, component PulF 0.0013613151633 0.5 0.498638684837 +UniRef50_F5M175 2.01900387879 0.500000000001 -1.51900387879 +UniRef50_X4ZX80 2.30428618596 0.5 -1.80428618596 +UniRef50_D3QFI9 Phosphomevalonate kinase 1.44992750696 0.499999999999 -0.949927506959 +UniRef50_R8A3B5 24.7573465421 0.499999999986 -24.2573465421 +UniRef50_F3ZKD4 Putative amino acid decarboxylase 0.104878278961 0.5 0.395121721039 +UniRef50_A0JUZ2 LexA repressor 3.56347560207 0.5 -3.06347560207 +UniRef50_UPI0002376C0A cysteinyl tRNA synthetase 0.132248239427 0.5 0.367751760573 +UniRef50_UPI00040458A8 glyoxalase 0.199527068574 0.5 0.300472931426 +UniRef50_O35435 Dihydroorotate dehydrogenase , mitochondrial 0.172768734026 0.5 0.327231265974 +UniRef50_N9J1H3 0.0251621763377 0.5 0.474837823662 +UniRef50_Q59928 Acetylornithine aminotransferase 1.64860858736 0.500000000001 -1.14860858736 +UniRef50_Q5HEG2 Accessory gene regulator A 4.93637805628 0.499999999999 -4.43637805628 +UniRef50_Q0K6L6 Ribosomal RNA small subunit methyltransferase H 0.906556201128 0.5 -0.406556201128 +UniRef50_H2JCD9 0.134504656837 0.5 0.365495343163 +UniRef50_UPI00040C37BB peptide chain release factor 3 0.154312311266 0.5 0.345687688734 +UniRef50_Q39F94 Polysaccharide deacetylase 0.0254784833389 0.5 0.474521516661 +UniRef50_Q0VQP5 Lipid A export ATP binding permease protein MsbA 0.33858611038 0.5 0.16141388962 +UniRef50_Q8XGY4 tRNA specific adenosine deaminase 0.130258792063 0.5 0.369741207937 +UniRef50_W1CRU3 0.362115186494 0.5 0.137884813506 +UniRef50_P43703 DNA topoisomerase 4 subunit B 46.0938633295 0.499999999982 -45.5938633295 +UniRef50_Q8FB22 Replicative DNA helicase 0.213704341437 0.5 0.286295658563 +UniRef50_A7ZM93 2.30856656035 0.499999999999 -1.80856656035 +UniRef50_A8GP69 Phospho N acetylmuramoyl pentapeptide transferase 1.70355918677 0.5 -1.20355918677 +UniRef50_UPI00035E3AF9 hypothetical protein 0.0206048071615 0.5 0.479395192838 +UniRef50_UPI0003B5603D 3 oxoacyl ACP synthase 0.104700379438 0.5 0.395299620562 +UniRef50_UPI00046818D4 aldehyde dehydrogenase 0.0806289708135 0.5 0.419371029186 +UniRef50_X3K6P1 0.322481159014 0.5 0.177518840986 +UniRef50_Q3J3U2 3.85005497073 0.500000000002 -3.35005497073 +UniRef50_Q0K963 Histidine tRNA ligase 0.271201793652 0.5 0.228798206348 +UniRef50_UPI000466CCF2 hypothetical protein 0.220039674373 0.5 0.279960325627 +UniRef50_Q5LYN3 UDP N acetylenolpyruvoylglucosamine reductase 1.34426015076 0.5 -0.844260150764 +UniRef50_A0A023RTB7 TonB dependent receptor 0.00781563246741 0.5 0.492184367532 +UniRef50_P07017 Methyl accepting chemotaxis protein II 1.86637992976 0.5 -1.36637992976 +UniRef50_K0HVG4 Magnesium chelatase subunit ChlI 0.0176854905314 0.5 0.482314509469 +UniRef50_UPI00035F8B10 hypothetical protein 0.204248296168 0.5 0.295751703832 +UniRef50_UPI000440FDB6 PREDICTED 0.167836811668 0.5 0.332163188332 +UniRef50_N4N922 Aminotransferase class I and II family protein 0.945365910586 0.5 -0.445365910586 +UniRef50_E2YZE2 0.684433633098 0.5 -0.184433633098 +UniRef50_F0KG57 0.0102279577304 0.5 0.48977204227 +UniRef50_UPI0003640B98 hypothetical protein, partial 2.57672254879 0.500000000004 -2.0767225488 +UniRef50_B7H1Y2 LysR substrate binding domain protein 0.01196856087 0.5 0.48803143913 +UniRef50_Q7MME5 0.329095361607 0.5 0.170904638393 +UniRef50_C6SHL5 0.0487674444152 0.5 0.451232555585 +UniRef50_A0A010WN13 Phospholipase C, phosphocholine specific 0.0112067579997 0.5 0.488793242 +UniRef50_Q2YY30 Truncated cell surface fibronectin binding protein 0.468937497533 0.5 0.0310625024672 +UniRef50_UPI00034C42C5 hypothetical protein 0.190831876732 0.5 0.309168123268 +UniRef50_Q5WLV8 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.00387263925261 0.5 0.496127360747 +UniRef50_UPI00036A7304 hypothetical protein 1.21428663329 0.5 -0.71428663329 +UniRef50_Q67SK0 ATP dependent Clp protease proteolytic subunit 1 0.700933460192 0.5 -0.200933460192 +UniRef50_P32152 Putative frv operon regulatory protein 4.36837323825 0.499999999998 -3.86837323825 +UniRef50_UPI000372D8ED hypothetical protein 0.44364735094 0.5 0.05635264906 +UniRef50_X4QTW2 Excinuclease ABC subunit A 0.0305902744033 0.5 0.469409725596 +UniRef50_D6SBZ3 Amidohydrolase family protein 1.66781620231 0.5 -1.16781620231 +UniRef50_Q6ABR7 Cobalamin biosynthesis protein CobN 0.00334794110269 0.5 0.496652058897 +UniRef50_P77493 0.819143651233 0.5 -0.319143651233 +UniRef50_UPI0003025696 hypothetical protein 1.44746203017 0.500000000002 -0.947462030172 +UniRef50_UPI0004767909 binding protein 2.84717418369 0.500000000001 -2.3471741837 +UniRef50_UPI00047B08A4 hypothetical protein 0.514681454564 0.5 -0.014681454564 +UniRef50_UPI00047D5805 hypothetical protein 0.427573791437 0.5 0.0724262085629 +UniRef50_Q5FKU9 Cell division protein FtsZ 0.614038163738 0.5 -0.114038163738 +UniRef50_UPI0003B55D8E pyruvate kinase 0.716204172174 0.5 -0.216204172174 +UniRef50_Q89L46 UvrABC system protein A 3.89494720566 0.5 -3.39494720566 +UniRef50_UPI00045603F6 hypothetical protein PFL1_03459 1.37190395698 0.499999999999 -0.871903956975 +UniRef50_Q5HL03 0.0239961863467 0.5 0.476003813653 +UniRef50_A5UK97 Predicted permease 0.669566917745 0.5 -0.169566917745 +UniRef50_M9VI15 0.0597805559017 0.5 0.440219444099 +UniRef50_B9DW22 0.305741483687 0.5 0.194258516313 +UniRef50_I6T6W0 Dehydrogenase 1.27588103279 0.5 -0.775881032791 +UniRef50_Q2IIH7 PE PGRS family protein 0.310608717774 0.5 0.189391282226 +UniRef50_A6LWM4 Amine oxidase 0.0719467942004 0.5 0.428053205799 +UniRef50_G8XHV9 2.58643749282 0.500000000005 -2.08643749283 +UniRef50_C7TGJ0 PTS system, IIC component 0.402632826043 0.5 0.097367173957 +UniRef50_X0TXG2 Marine sediment metagenome DNA, contig 0.0264070782666 0.5 0.473592921733 +UniRef50_P77721 0.575193702488 0.5 -0.0751937024878 +UniRef50_UPI0003639180 hypothetical protein 0.860740490189 0.5 -0.360740490189 +UniRef50_UPI0003FDB00F hypothetical protein 0.502056061634 0.5 -0.00205606163431 +UniRef50_G8V8I0 Regulator of sorbitol operon 0.0243403707794 0.5 0.475659629221 +UniRef50_UPI00047AE27E DNA topoisomerase I 0.221625899364 0.5 0.278374100636 +UniRef50_R9ZG20 Chemotaxis protein 1.00109430763 0.5 -0.501094307627 +UniRef50_H8Z498 5.37435345666 0.499999999995 -4.87435345666 +UniRef50_A3TUV5 1.79435502839 0.5 -1.29435502839 +UniRef50_Q8ELA5 Methionine import ATP binding protein MetN 4 0.00360769006582 0.5 0.496392309934 +UniRef50_S3ZS47 Putative Oleandomycin polyketide synthase, modules 5 and 6 1.34300502557 0.5 -0.843005025572 +UniRef50_B1I1Y5 Phosphoglucosamine mutase 0.193322561408 0.5 0.306677438592 +UniRef50_Q57772 Putative permease MJ0326 0.270009527225 0.5 0.229990472775 +UniRef50_UPI00037341DE hypothetical protein 1.2199812356 0.5 -0.719981235598 +UniRef50_I2F9Q0 Cobalt zinc cadmium resistance protein CzcA 0.0071834829108 0.5 0.492816517089 +UniRef50_Q00749 Multiple sugar binding protein 1.17913654811 0.5 -0.679136548108 +UniRef50_G7M9H8 0.0399057444603 0.5 0.46009425554 +UniRef50_C5MZ71 PIN domain protein 5.83673109531 0.499999999993 -5.3367310953 +UniRef50_UPI0002896123 flagellar motor switch protein FliN 1.5196412731 0.5 -1.0196412731 +UniRef50_P41031 Thiosulfate binding protein 0.812751212845 0.5 -0.312751212845 +UniRef50_W9G6K5 0.536426272451 0.5 -0.0364262724513 +UniRef50_A8AVK0 Protein LemA 9.25475546518 0.499999999998 -8.75475546517 +UniRef50_B8FYL8 Two component transcriptional regulator, winged helix family 0.0374237993661 0.5 0.462576200634 +UniRef50_C6SRE4 1.12299430666 0.5 -0.622994306656 +UniRef50_M9VG81 Glycosyl hydrolase family 20, catalytic domain protein 0.0447822650375 0.5 0.455217734963 +UniRef50_UPI00031DE77D hypothetical protein 1.13735905061 0.500000000001 -0.63735905061 +UniRef50_UPI000478621D hypothetical protein 1.14947011924 0.5 -0.649470119239 +UniRef50_A6V3K7 Membrane protein, putative 0.30110800656 0.5 0.19889199344 +UniRef50_I0C7T4 X Pro dipeptidyl peptidase family protein 0.514873531594 0.5 -0.0148735315938 +UniRef50_UPI0003753634 hypothetical protein 0.0824940896988 0.5 0.417505910301 +UniRef50_A7X6X6 Pantothenate synthetase 2.71907680447 0.499999999998 -2.21907680447 +UniRef50_A6LQ26 Two component transcriptional regulator, LytTR family 0.0401643884711 0.5 0.459835611529 +UniRef50_D5ARQ0 Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI 1.10801646877 0.5 -0.608016468774 +UniRef50_UPI000375A365 hypothetical protein 0.0281125454615 0.5 0.471887454539 +UniRef50_UPI0004785697 polyphosphate kinase 0.0205547134021 0.5 0.479445286597 +UniRef50_UPI000365B78F transposase IS200 0.371146229643 0.5 0.128853770357 +UniRef50_B7V041 Glycine glutamate dipeptide porin OpdP 4.11698691534 0.5 -3.61698691534 +UniRef50_Q3K8E9 23S rRNA C(5)) methyltransferase RlmD 1.61349529881 0.5 -1.11349529881 +UniRef50_Q3IV20 13.5071564267 0.499999999994 -13.0071564267 +UniRef50_Q3IV23 0.547092863168 0.5 -0.0470928631685 +UniRef50_Q3IV22 0.485555608199 0.5 0.0144443918012 +UniRef50_UPI0003B70939 FAD containing monooxygenase EthA, partial 0.22422229264 0.5 0.27577770736 +UniRef50_Q3IV27 6.6319882324 0.500000000001 -6.1319882324 +UniRef50_A1B4G8 Orn DAP Arg decarboxylase 2 1.87594663853 0.500000000001 -1.37594663853 +UniRef50_UPI000378AE4A O acetylhomoserine aminocarboxypropyltransferase 0.861717781303 0.5 -0.361717781303 +UniRef50_Q9RUU0 D 3 phosphoglycerate dehydrogenase 0.00231272977328 0.5 0.497687270226 +UniRef50_C6ST04 0.406354873197 0.5 0.093645126803 +UniRef50_M7YV85 Formin like protein 6 0.427973897375 0.5 0.0720261026249 +UniRef50_P33222 Putative acid amine ligase YjfC 6.73824205608 0.500000000004 -6.23824205608 +UniRef50_W5X567 2.14599118427 0.5 -1.64599118427 +UniRef50_I4EYS5 NAD dependent epimerase dehydratase 0.291234478841 0.5 0.208765521159 +UniRef50_UPI00036FB7EB hypothetical protein 0.135875706243 0.500000000001 0.364124293756 +UniRef50_H9UZT1 Ribonucleoside diphosphate reductase 1, beta subunit, B2 0.870384558922 0.5 -0.370384558922 +UniRef50_A6M1W3 Multi sensor signal transduction histidine kinase 0.0824135993856 0.500000000001 0.417586400614 +UniRef50_Q9RTX3 C di GMP phosphodiesterase A 0.0032625920553 0.500000000001 0.496737407944 +UniRef50_D0JET7 Sodium serine transporter 0.534316085701 0.5 -0.0343160857011 +UniRef50_UPI00040C441F PTS glucose transporter subunit IIB 0.0949411657669 0.5 0.405058834233 +UniRef50_A5UL56 Molybdopterin biosynthesis protein, MoeB 2.20597241767 0.500000000002 -1.70597241767 +UniRef50_R4ZW64 NAD dependent oxidoreductase 0.143300407369 0.5 0.356699592631 +UniRef50_UPI00047AEC83 chemotaxis protein CheY 0.0815515270275 0.5 0.418448472973 +UniRef50_H2A8F3 Methionine ABC transporter substrate binding protein 1.07984834018 0.5 -0.579848340179 +UniRef50_F0RLS2 Metal dependent phosphohydrolase with GAF sensor 0.00209028182442 0.5 0.497909718176 +UniRef50_F2MVP5 L sorbosone dehydrogenase 2.55436594174 0.499999999998 -2.05436594174 +UniRef50_K9ZX43 0.00317648311433 0.5 0.496823516886 +UniRef50_L1K6L8 Methyl accepting chemotaxis protein 0.797523406005 0.5 -0.297523406005 +UniRef50_UPI00047DE5DB ribonuclease 3 0.515233524828 0.5 -0.0152335248277 +UniRef50_P45955 1.41472294908 0.499999999999 -0.91472294908 +UniRef50_X5E195 5.30325890624 0.499999999999 -4.80325890624 +UniRef50_D0LY72 Putative transcriptional regulator, Crp Fnr family 0.639120615772 0.5 -0.139120615772 +UniRef50_UPI00029AEFE9 DNA topoisomerase I subunit omega 0.0448658232314 0.499999999999 0.455134176769 +UniRef50_Q5HJZ0 DNA gyrase subunit A 1.53473271565 0.499999999998 -1.03473271565 +UniRef50_D5RPK9 0.158762337873 0.5 0.341237662127 +UniRef50_B5F1C1 HTH type transcriptional regulator IscR 24.8199912545 0.500000000019 -24.3199912545 +UniRef50_Q0G4L4 2.90258893498 0.5 -2.40258893498 +UniRef50_E3ZBY8 DHH subfamily 1 protein 0.00732346520283 0.5 0.492676534798 +UniRef50_F9NYB1 RHS repeat associated core domain protein 0.0140159085156 0.5 0.485984091484 +UniRef50_UPI0003B34E67 ABC transporter 1.10860577672 0.5 -0.608605776717 +UniRef50_F8LI03 Sal9 lantibiotic transport ATP binding protein 23.2378613189 0.500000000004 -22.7378613189 +UniRef50_K4KVK1 Drug resistance ABC transporter,ATP binding protein 0.0755992680611 0.5 0.424400731939 +UniRef50_UPI000476294D formyltetrahydrofolate deformylase 0.907067058411 0.5 -0.407067058411 +UniRef50_P61502 Superoxide dismutase [Mn] 0.168686018261 0.5 0.331313981739 +UniRef50_A5UNM6 SAM dependent methyltransferase 3.90555769303 0.5 -3.40555769303 +UniRef50_UPI0002627AF2 RpoD subfamily RNA polymerase sigma 70 subunit 0.342414401829 0.5 0.157585598171 +UniRef50_Q97IG3 Alanine tRNA ligase 0.275563727812 0.5 0.224436272188 +UniRef50_P75692 0.180856504773 0.5 0.319143495227 +UniRef50_UPI0002BAB8F5 hypothetical protein, partial 1.11089196248 0.5 -0.610891962479 +UniRef50_Q37374 Cytochrome c oxidase subunit 3 1.15304576566 0.5 -0.653045765663 +UniRef50_UPI00035D52F0 hypothetical protein 1.22816971712 0.5 -0.728169717115 +UniRef50_Q2S432 ATP synthase subunit alpha 0.000301507017894 0.5 0.499698492982 +UniRef50_I6T7J2 2.15485317174 0.500000000002 -1.65485317174 +UniRef50_K0D4L6 1.18759208199 0.5 -0.687592081986 +UniRef50_Q12YB2 CRISPR associated helicase Cas3 4.49188604745 0.5 -3.99188604745 +UniRef50_F5XP90 0.00459919482977 0.5 0.49540080517 +UniRef50_P38055 Inner membrane metabolite transport protein YdjE 0.380197097501 0.5 0.119802902499 +UniRef50_UPI000328C9B2 PREDICTED 0.0396309039364 0.500000000001 0.460369096063 +UniRef50_B2II05 ABC transporter related 2.40039211193 0.499999999999 -1.90039211193 +UniRef50_I2AAI6 Cellobiose phosphorylase 0.0865835064 0.5 0.4134164936 +UniRef50_A3CQL5 Amino acid ABC transporter, periplasmic amino acid binding protein, putative 7.44192855945 0.500000000001 -6.94192855946 +UniRef50_UPI0003B46C76 hypothetical protein 1.57691341328 0.499999999999 -1.07691341328 +UniRef50_D3JTG3 3 hydroxylisobutyryl CoA hydrolase 0.0299398234142 0.5 0.470060176586 +UniRef50_A4HM87 Proteophosphoglycan ppg4 0.0730477825816 0.5 0.426952217419 +UniRef50_J0W6L9 0.442976814825 0.5 0.0570231851753 +UniRef50_A6LXJ5 Na H(+) antiporter NhaA 2 0.0966802593897 0.5 0.403319740611 +UniRef50_V5REB2 WafV 0.00521836664878 0.5 0.494781633351 +UniRef50_UPI0004073FCC dihydroxyacetone kinase 0.0102612771286 0.500000000001 0.489738722871 +UniRef50_K9ZYD2 Exodeoxyribonuclease III 0.00567503074372 0.5 0.494324969257 +UniRef50_Q9RRR7 Sensory box sensor histidine kinase 0.00321502838612 0.5 0.496784971614 +UniRef50_B9KT23 Glycine reductase complex protein C large subunit 3.11520807064 0.499999999996 -2.61520807063 +UniRef50_UPI000471CC40 hypothetical protein 1.54691154947 0.5 -1.04691154947 +UniRef50_Q59A32 Trifunctional purine biosynthetic protein adenosine 3 0.597051051635 0.5 -0.0970510516345 +UniRef50_P0A1B6 Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive 0.854490649469 0.5 -0.354490649469 +UniRef50_A7NR36 DNA directed RNA polymerase subunit alpha 0.240787610312 0.5 0.259212389688 +UniRef50_UPI00037D0C80 hypothetical protein 0.416525063175 0.5 0.0834749368252 +UniRef50_V8G2Y5 Crp Fnr family transcription regulator 0.0503799810854 0.500000000001 0.449620018914 +UniRef50_A0A059LCN6 0.254355499429 0.5 0.245644500571 +UniRef50_A0A011RXV5 Type IV secretion system ATPase VirB11 0.871879159431 0.5 -0.371879159431 +UniRef50_UPI00046D7021 hypothetical protein 0.766081444798 0.5 -0.266081444798 +UniRef50_B2THL1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.0565459315453 0.5 0.443454068454 +UniRef50_UPI00025593F3 chemotaxis protein 0.952328856186 0.5 -0.452328856186 +UniRef50_Q6FBV7 3 hydroxyisobutyrate dehydrogenase 0.0136227542329 0.5 0.486377245767 +UniRef50_UPI00040CFD31 hypothetical protein 0.853280148014 0.5 -0.353280148014 +UniRef50_Q9RSJ6 DNA directed RNA polymerase subunit alpha 0.000218564140583 0.5 0.49978143586 +UniRef50_UPI0003728B08 hypothetical protein 1.92139493175 0.5 -1.42139493175 +UniRef50_UPI00024868FB hypothetical protein 8.49086574233 0.499999999993 -7.99086574233 +UniRef50_E3F1F2 RelA SpoT family protein 1.91181579012 0.5 -1.41181579012 +UniRef50_UPI00036CA645 hypothetical protein 0.0440756093195 0.5 0.45592439068 +UniRef50_F8G483 Integral membrane protein TerC 2.70920520579 0.5 -2.20920520579 +UniRef50_E2QLT7 0.425072272562 0.5 0.0749277274384 +UniRef50_Q05599 Bifunctional adenosylcobalamin biosynthesis protein CobU 9.67881432346 0.499999999984 -9.17881432344 +UniRef50_Q8FW08 sn glycerol 3 phosphate transport system permease protein UgpE 4.29752176603 0.5 -3.79752176603 +UniRef50_A3PAU4 Chorismate synthase 0.147291893541 0.500000000001 0.352708106458 +UniRef50_S5KJ87 0.000374265789218 0.5 0.49962573421 +UniRef50_R9ZM17 Chemotaxis protein 1.58679633407 0.5 -1.08679633407 +UniRef50_UPI00037D86B2 hypothetical protein 0.457026580862 0.5 0.0429734191385 +UniRef50_Q500N2 Bifunctional spore maturation protein, fused SpmA SpmB 0.098667605899 0.5 0.401332394101 +UniRef50_V5WU09 Transcriptional regulator 0.0580412516242 0.5 0.441958748375 +UniRef50_UPI0002D3498A hypothetical protein 4.6199498878 0.499999999999 -4.1199498878 +UniRef50_UPI00047D2769 phosphoenolpyruvate protein phosphotransferase 0.0181995969379 0.5 0.481800403062 +UniRef50_G8VAH8 Kinase domain protein 0.00536242727757 0.5 0.494637572722 +UniRef50_T1CR22 Site specific recombinase 0.0259605427917 0.5 0.474039457208 +UniRef50_D0K172 0.0589592279673 0.5 0.441040772032 +UniRef50_UPI0003EF77A3 hypothetical protein 0.449009891574 0.5 0.0509901084257 +UniRef50_F8W467 0.214424583324 0.5 0.285575416676 +UniRef50_F9UHG1 Putative solute symporter protein 0.141481387553 0.5 0.358518612447 +UniRef50_A6M205 Transcriptional regulator, GntR family 0.0334299859325 0.5 0.466570014067 +UniRef50_Q1J2B0 Peptidase M29, aminopeptidase II 0.00266207626202 0.5 0.497337923738 +UniRef50_A5UNV4 Putative major capsid protein gp5 5.17459884113 0.499999999999 -4.67459884112 +UniRef50_R7PVH8 0.904835493791 0.5 -0.404835493791 +UniRef50_UPI00047926DE transposase 0.025141897849 0.5 0.474858102151 +UniRef50_Q1QX79 0.690382182341 0.5 -0.190382182341 +UniRef50_D8JMF6 0.011024550219 0.5 0.488975449781 +UniRef50_A0A009QE54 TonB dependent siderophore receptor family protein 0.0163412487435 0.5 0.483658751256 +UniRef50_UPI00037EFDE6 hypothetical protein 0.54371578514 0.5 -0.0437157851403 +UniRef50_UPI00038177C4 hypothetical protein 0.636158429377 0.5 -0.136158429377 +UniRef50_Q5HP19 Proline dipeptidase 2.05060220314 0.5 -1.55060220314 +UniRef50_A1B4V0 1.32039265725 0.5 -0.820392657251 +UniRef50_F9GT79 UPF0125 protein GGA_0527 0.249416718623 0.5 0.250583281377 +UniRef50_UPI00047EFD30 hypothetical protein 0.0978843345309 0.5 0.402115665469 +UniRef50_UPI00036F0908 hypothetical protein 0.132821055152 0.5 0.367178944848 +UniRef50_X2LYU6 0.432163395058 0.5 0.0678366049418 +UniRef50_G8V4E9 ATP dependent DNA helicase RecQ 2.1353129699 0.5 -1.6353129699 +UniRef50_B2U6Z0 N anthranilate isomerase 3.59042229182 0.500000000002 -3.09042229182 +UniRef50_Q92SH6 Peptide deformylase 0.207793943861 0.5 0.292206056139 +UniRef50_Q8RGC8 Fe ions import ATP binding protein FbpC 0.105333705161 0.5 0.39466629484 +UniRef50_J0YJQ5 Serine aspartate repeat containing protein G 1.23768879174 0.5 -0.737688791738 +UniRef50_X1K5L6 Marine sediment metagenome DNA, contig 0.246508591867 0.5 0.253491408133 +UniRef50_T0VCE6 ABC transporter ATP binding protein 2.32847087186 0.5 -1.82847087186 +UniRef50_UPI00040CE7D5 hypothetical protein 0.844556796382 0.5 -0.344556796382 +UniRef50_F8H6P0 0.371820076726 0.5 0.128179923274 +UniRef50_Q9RTE3 Protein export membrane protein, putative 0.000960355397283 0.5 0.499039644602 +UniRef50_D2NXJ8 0.0342040054198 0.5 0.46579599458 +UniRef50_A8AJI8 Citrate lyase acyl carrier protein 0.42259610799 0.5 0.0774038920095 +UniRef50_H8H0D3 0.00532577882621 0.5 0.494674221174 +UniRef50_Q5ZEI2 0.00586894242412 0.499999999999 0.494131057577 +UniRef50_I6T664 1.52074326274 0.5 -1.02074326274 +UniRef50_K2D6T3 0.422631336145 0.5 0.0773686638554 +UniRef50_Q11K61 Binding protein dependent transport systems inner membrane component 1.03491646837 0.5 -0.534916468367 +UniRef50_P39062 Acetyl coenzyme A synthetase 1.86589810803 0.5 -1.36589810803 +UniRef50_UPI0004643E21 hypothetical protein 0.27429510645 0.5 0.22570489355 +UniRef50_C1CX98 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.315331688577 0.5 0.184668311423 +UniRef50_Q59641 Peptidyl prolyl cis trans isomerase A 1.35576745347 0.5 -0.855767453468 +UniRef50_UPI000463A8B3 preprotein translocase subunit SecD SecF, partial 0.141899403956 0.5 0.358100596044 +UniRef50_B5F808 UPF0231 protein YacL 0.465466152402 0.5 0.0345338475982 +UniRef50_A0A058ZAW9 0.0280579959238 0.5 0.471942004076 +UniRef50_T9NAV5 Inner membrane protein 0.0506907001827 0.5 0.449309299817 +UniRef50_G7LZJ4 0.341850680671 0.5 0.158149319329 +UniRef50_UPI0002B9550C regulator for metE and MetH 0.374822864166 0.5 0.125177135834 +UniRef50_UPI00046A72DD hypothetical protein 0.328248384602 0.5 0.171751615398 +UniRef50_A3PS85 5.0634912665 0.499999999999 -4.5634912665 +UniRef50_B7NUS6 2.11020790632 0.5 -1.61020790632 +UniRef50_UPI0003B61198 cobalt ABC transporter ATP binding protein 0.824833572241 0.5 -0.324833572241 +UniRef50_G7M0X3 Transcriptional regulator, AraC family 0.293239550824 0.5 0.206760449176 +UniRef50_T0P454 0.874661996203 0.5 -0.374661996203 +UniRef50_UPI000478626E 3 oxoacyl ACP reductase 0.375053723443 0.5 0.124946276557 +UniRef50_UPI00026CD1C9 MFS transporter 0.621532233213 0.5 -0.121532233213 +UniRef50_A0A026WQ11 2.35663134006 0.5 -1.85663134006 +UniRef50_W5X9Y2 ABC transporter related protein 1.33578228209 0.5 -0.835782282093 +UniRef50_Q6F803 0.0683048567473 0.5 0.431695143253 +UniRef50_P08956 Type I restriction enzyme EcoKI R protein 0.646626127064 0.5 -0.146626127064 +UniRef50_I4DYP2 RNA binding protein 0.560323273457 0.5 -0.0603232734573 +UniRef50_I0C528 1.78416116434 0.5 -1.28416116434 +UniRef50_I0Z1H0 0.16071562171 0.5 0.33928437829 +UniRef50_D8JHE9 Nitrate transport ATP binding protein nrtC 0.0162453010463 0.5 0.483754698954 +UniRef50_A9M366 0.149341704085 0.5 0.350658295915 +UniRef50_UPI00046F9B67 PTS system, glucose subfamily, IIA component 0.347900866932 0.5 0.152099133068 +UniRef50_E3EYF0 C4 dicarboxylate transport transcriptional regulatory protein DctD 1.8337813068 0.5 -1.3337813068 +UniRef50_UPI00047AADF7 serine threonine protein phosphatase 0.365775701145 0.5 0.134224298855 +UniRef50_Q5HLA3 Putative aldehyde dehydrogenase AldA 1.72752822028 0.500000000001 -1.22752822029 +UniRef50_A7ZIM8 Adenine phosphoribosyltransferase 2.58872449081 0.499999999999 -2.08872449081 +UniRef50_V5NHS3 0.00621824379427 0.5 0.493781756205 +UniRef50_K0HKR9 0.00645410686752 0.5 0.493545893132 +UniRef50_N4DH58 Pyridine nucleotide disulfide oxidoreductase family protein 0.859832837973 0.5 -0.359832837973 +UniRef50_G7U4C3 Hypoxanthine phosphoribosyltransferase 0.0413896475338 0.5 0.458610352466 +UniRef50_Q8E310 Phosphate binding protein PstS 2 0.633938177328 0.5 -0.133938177328 +UniRef50_C5BFM6 Beta hexosaminidase 0.0259763080022 0.5 0.474023691998 +UniRef50_Q3HKK4 1.16066498413 0.5 -0.660664984129 +UniRef50_UPI00037B5AE4 30S ribosomal protein S1 0.0140829720241 0.5 0.485917027975 +UniRef50_Q9ZKE4 Primosomal protein N 0.0283308662124 0.5 0.471669133788 +UniRef50_M9RBV2 2.46425204846 0.5 -1.96425204846 +UniRef50_UPI000467A396 hypothetical protein 1.19540494975 0.5 -0.695404949745 +UniRef50_R7PWJ2 1.59267742235 0.5 -1.09267742235 +UniRef50_L0KHH1 Cation multidrug efflux pump 2.17197760402 0.5 -1.67197760402 +UniRef50_Q0BTL1 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.923774777284 0.5 -0.423774777284 +UniRef50_B0T0X6 Protoheme IX farnesyltransferase 0.06306823239 0.5 0.43693176761 +UniRef50_Q6Q272 p hydroxyphenylacetate 3 hydroxylase, oxygenase component 2.60055282555 0.500000000001 -2.10055282555 +UniRef50_C5BQ62 50S ribosomal protein L4 0.632807907652 0.5 -0.132807907652 +UniRef50_Q9JTG4 Alanine tRNA ligase 0.00951450833604 0.5 0.490485491664 +UniRef50_A1KTV6 2 isopropylmalate synthase 0.0431748759552 0.5 0.456825124045 +UniRef50_D4HCV5 Periplasmic binding protein 0.108916536972 0.5 0.391083463028 +UniRef50_A4IMH7 tRNA 2 methylthio N dimethylallyladenosine synthase 2.52695416345 0.5 -2.02695416345 +UniRef50_UPI00036C607F hypothetical protein 2.339136848 0.499999999999 -1.839136848 +UniRef50_A1UG51 Spermidine putrescine import ATP binding protein PotA 11.4423070719 0.499999999998 -10.9423070719 +UniRef50_UPI0004657C1A serine threonine protein kinase 1.59832645592 0.5 -1.09832645592 +UniRef50_Q5HPV5 UPF0122 protein SERP0802 17.0407146171 0.499999999995 -16.5407146171 +UniRef50_D2NAH1 Dihydroorotate oxidase 3.45720387024 0.499999999997 -2.95720387024 +UniRef50_UPI0004671BDB hypothetical protein 7.97707510408 0.499999999999 -7.47707510408 +UniRef50_M2IT76 Glucosyltransferase S 0.536557703544 0.5 -0.0365577035439 +UniRef50_UPI000370D86A hypothetical protein 3.93368454732 0.499999999999 -3.43368454732 +UniRef50_P24180 Multidrug export protein AcrE 3.36841079846 0.500000000001 -2.86841079846 +UniRef50_A0A037YKV0 N acetylglucosamine 6 phosphate deacetylase 0.584492381793 0.5 -0.0844923817927 +UniRef50_UPI000418069B ABC transporter 1.96721693825 0.500000000001 -1.46721693825 +UniRef50_E2XTQ0 Ribose ABC transporter, permease protein 0.0292479146107 0.5 0.470752085389 +UniRef50_A5WHZ8 OmpW family protein 0.0508267920863 0.5 0.449173207914 +UniRef50_P0AF22 N acetylglucosamine repressor 2.24697278594 0.5 -1.74697278594 +UniRef50_Q15PI0 MazG family protein 0.721669251818 0.5 -0.221669251818 +UniRef50_UPI00041E2B4A hypothetical protein 0.299391763545 0.5 0.200608236455 +UniRef50_UPI0001E89F57 glycerophosphoryl diester phosphodiesterase 0.23639740659 0.5 0.263602593409 +UniRef50_P45546 1.43572577391 0.5 -0.935725773911 +UniRef50_Q832G5 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 0.00235149758907 0.5 0.497648502411 +UniRef50_B0V7L4 0.0199331214254 0.5 0.480066878575 +UniRef50_Q1IWJ1 0.00927880400507 0.5 0.490721195995 +UniRef50_P45549 1.2500229357 0.500000000001 -0.7500229357 +UniRef50_Q28JW2 HemY like protein 3.42786052012 0.5 -2.92786052012 +UniRef50_B7UXY2 UPF0761 membrane protein PLES_43641 0.333971803998 0.5 0.166028196002 +UniRef50_P46890 0.796408651799 0.5 -0.296408651799 +UniRef50_A1R6L8 Glucose 1 phosphate adenylyltransferase 0.0517968501785 0.5 0.448203149821 +UniRef50_UPI00041EAEC4 outer membrane specific lipoprotein transporter subunit LolE 0.104360977122 0.5 0.395639022878 +UniRef50_T0TW25 1.76180045453 0.5 -1.26180045453 +UniRef50_Q6G9K4 DNA topoisomerase 4 subunit A 2.7301864975 0.499999999999 -2.2301864975 +UniRef50_UPI000375B645 hypothetical protein 0.0580336488636 0.5 0.441966351136 +UniRef50_F0HAX6 0.0118461199938 0.5 0.488153880006 +UniRef50_V4R9U3 Type II restriction endonuclease 0.00198348452229 0.500000000001 0.498016515477 +UniRef50_Q2SQB9 tRNA 2 selenouridine synthase 0.105152867206 0.5 0.394847132794 +UniRef50_I1CKJ8 1.90685368887 0.5 -1.40685368887 +UniRef50_P44016 Putative oligopeptide transporter HI_0561 2.67055973744 0.5 -2.17055973744 +UniRef50_P37538 0.999371276959 0.5 -0.499371276959 +UniRef50_UPI00047574D4 tyrosyl tRNA synthetase 1.89130805883 0.499999999999 -1.39130805883 +UniRef50_UPI00037DCE93 hypothetical protein 0.0557630944045 0.499999999999 0.444236905596 +UniRef50_UPI0003B3686E XRE family transcriptional regulator 4.71146492355 0.5 -4.21146492355 +UniRef50_Q3AC80 NADH quinone oxidoreductase subunit D 0.0819278268364 0.5 0.418072173164 +UniRef50_P32138 Alpha glucosidase YihQ 2.06142934661 0.5 -1.56142934661 +UniRef50_X2I9U8 Histidine kinase 0.0448646050221 0.5 0.455135394977 +UniRef50_UPI0004741BEC CTP synthetase, partial 0.105150796631 0.5 0.394849203368 +UniRef50_A6V2J2 0.540275281724 0.5 -0.0402752817239 +UniRef50_V9B4W3 von Willebrand factor type A domain protein 1.19304734653 0.5 -0.693047346531 +UniRef50_A0A024L686 Ankyrin repeat protein A 6.92100101001 0.499999999998 -6.42100101001 +UniRef50_UPI000470C007 hypothetical protein 0.183097972762 0.5 0.316902027238 +UniRef50_F0RKW9 Biopolymer transport protein ExbD TolR 0.01193087463 0.500000000001 0.488069125369 +UniRef50_T1YAE9 O succinylbenzoate synthase 4.37350379686 0.499999999995 -3.87350379686 +UniRef50_UPI00045EAF3A hypothetical protein 0.0505667761035 0.5 0.449433223897 +UniRef50_B9JG24 Shikimate dehydrogenase 2.25822624828 0.500000000001 -1.75822624828 +UniRef50_UPI0004182A5D MarR family transcriptional regulator 0.0779140667068 0.5 0.422085933293 +UniRef50_C7J486 Os06g0602200 protein 0.0197166492073 0.5 0.480283350793 +UniRef50_Q58239 Peptide chain release factor subunit 1 6.17556432102 0.499999999998 -5.67556432102 +UniRef50_Q8CPA3 Oligoendopeptidase 0.972187804803 0.5 -0.472187804803 +UniRef50_UPI0003B5016A hypothetical protein 0.00221969696361 0.5 0.497780303036 +UniRef50_B2U887 Cytidylate kinase 0.371928656881 0.5 0.128071343119 +UniRef50_Q9L3H0 1.24293797139 0.5 -0.74293797139 +UniRef50_UPI00036EFE7D hypothetical protein 0.712806373432 0.5 -0.212806373432 +UniRef50_A2RH97 Mannitol 1 phosphate 5 dehydrogenase 0.558577312755 0.5 -0.0585773127553 +UniRef50_F0KMR7 3 oxoacyl synthase I 0.0226212530571 0.5 0.477378746943 +UniRef50_K7S761 Nuclease, RecB family 0.012556725277 0.5 0.487443274723 +UniRef50_Q9RTC1 0.0124241152362 0.5 0.487575884764 +UniRef50_Q4FTT8 2 octaprenylphenol hydroxylase 0.0213641357345 0.5 0.478635864265 +UniRef50_UPI00040A0384 DNA polymerase I 0.105956878069 0.5 0.394043121931 +UniRef50_UPI000474D03A hypothetical protein, partial 0.43612283647 0.5 0.0638771635305 +UniRef50_UPI00034A62B9 hypothetical protein 0.0765164557713 0.5 0.423483544229 +UniRef50_K0TKK5 1.78286131345 0.5 -1.28286131345 +UniRef50_P50975 NADH quinone oxidoreductase subunit J 10.1948061629 0.499999999998 -9.69480616291 +UniRef50_Q9RVP1 Extracellular solute binding protein, family 5 0.00205363130333 0.5 0.497946368697 +UniRef50_I6H2Z2 Ferritin like protein 0.283146371516 0.5 0.216853628484 +UniRef50_L7UG94 4.65781269605 0.5 -4.15781269605 +UniRef50_D8UER7 0.381087219368 0.5 0.118912780632 +UniRef50_P39816 Putative PTS system glucosamine specific EIICBA component 0.266676510259 0.5 0.233323489741 +UniRef50_UPI00047DBAA4 hypothetical protein 0.313011503632 0.5 0.186988496368 +UniRef50_UPI000471AD13 hypothetical protein 0.00353202633464 0.5 0.496467973665 +UniRef50_Q899I0 Stage V sporulation protein B 0.108959318579 0.5 0.391040681421 +UniRef50_S9RXN5 Putative inner membrane protein 0.474880138456 0.5 0.0251198615441 +UniRef50_Q5GTV1 Sugar diacide regulator 0.535041465398 0.5 -0.0350414653976 +UniRef50_L1KDU4 0.224130943575 0.5 0.275869056425 +UniRef50_P36661 4.75808981263 0.499999999996 -4.25808981263 +UniRef50_F9YAC9 3.34298765837 0.500000000001 -2.84298765837 +UniRef50_UPI0004255E20 hypothetical protein 0.472917098402 0.5 0.0270829015978 +UniRef50_F2UB74 3.57786179707 0.5 -3.07786179707 +UniRef50_M9RFD9 5.24373907296 0.499999999997 -4.74373907296 +UniRef50_R7PX69 1.45742679242 0.5 -0.957426792423 +UniRef50_J2KWN5 Arabinose efflux permease family protein 0.347574982036 0.5 0.152425017964 +UniRef50_R9ZK82 1.04604485033 0.5 -0.546044850327 +UniRef50_C5ZWF4 Peptidylarginine deiminase related protein 0.0177053321068 0.5 0.482294667893 +UniRef50_L1KH26 ORFV protein 1.01359624116 0.5 -0.513596241157 +UniRef50_Q0BUB7 Succinyl diaminopimelate desuccinylase 80.6637188772 0.500000000062 -80.1637188772 +UniRef50_A4X058 0.401293404281 0.5 0.0987065957194 +UniRef50_A5ULA6 UPF0173 metal dependent hydrolase Msm_0779 2.46379562284 0.5 -1.96379562284 +UniRef50_B2HYZ7 tRNA tmRNA ) methyltransferase 0.017766911498 0.5 0.482233088502 +UniRef50_A8LWQ1 Oxidoreductase domain protein 0.0249311954816 0.5 0.475068804518 +UniRef50_P0AGH1 Inner membrane transport permease YhhJ 7.73314143723 0.499999999998 -7.23314143723 +UniRef50_A9UNP0 SH3, pleckstrin like and PDZ DHR GLGF domain containing protein 0.0577594750371 0.5 0.442240524963 +UniRef50_A4X051 1.46972104188 0.5 -0.969721041878 +UniRef50_M5JU21 0.456074919979 0.5 0.0439250800213 +UniRef50_E8SHR5 Chromosome partitioning protein ParB Stage 0 sporulation protein J 2.03256343404 0.5 -1.53256343404 +UniRef50_Q04DA2 3 isopropylmalate dehydratase small subunit 0.670838169492 0.5 -0.170838169492 +UniRef50_Q1IS40 NADH quinone oxidoreductase subunit H 2 0.198791392391 0.5 0.301208607609 +UniRef50_Q5HS11 1.80030792389 0.5 -1.30030792389 +UniRef50_UPI0003605BA6 hypothetical protein, partial 0.00349273139209 0.5 0.496507268608 +UniRef50_UPI000404D8EB regulator 0.333279766608 0.5 0.166720233392 +UniRef50_UPI0003C14420 PREDICTED 0.333852069351 0.5 0.166147930649 +UniRef50_S5CTU5 0.0105464314737 0.5 0.489453568526 +UniRef50_D9UKD4 Predicted protein 0.128609468315 0.5 0.371390531685 +UniRef50_R1FAU5 1.79931730353 0.5 -1.29931730353 +UniRef50_A5UKK1 DNA binding protein MutS2 3.62040733367 0.499999999997 -3.12040733366 +UniRef50_UPI00036F10D0 hypothetical protein 1.23435366539 0.5 -0.734353665387 +UniRef50_F0RLA6 0.0098979661196 0.5 0.490102033881 +UniRef50_E3F346 Methionine binding lipoprotein 0.129566833581 0.5 0.370433166419 +UniRef50_UPI00037C3791 hypothetical protein 0.563818952336 0.5 -0.0638189523359 +UniRef50_K1EXL1 Phospholipase C, phosphocholine specific 0.0157313092949 0.5 0.484268690705 +UniRef50_UPI0001E8977F nucleoside hydrolase 0.833184447779 0.5 -0.333184447779 +UniRef50_D4H5B5 0.507166970748 0.5 -0.0071669707477 +UniRef50_P35885 DNA gyrase subunit A 0.00752056005965 0.5 0.49247943994 +UniRef50_A7NLC3 D tyrosyl tRNA deacylase 0.826052694075 0.5 -0.326052694075 +UniRef50_R6DP97 0.553427873922 0.5 -0.0534278739221 +UniRef50_UPI0003B773D1 DNA topoisomerase I 0.130626493046 0.5 0.369373506954 +UniRef50_U3TY01 0.186470715568 0.5 0.313529284432 +UniRef50_Q5HPE4 1.56409502063 0.499999999998 -1.06409502063 +UniRef50_R9ZKM0 Magnesium transporter 3.29900159539 0.500000000001 -2.7990015954 +UniRef50_L0GLS2 TIGR01244 family protein 0.00879135120426 0.5 0.491208648796 +UniRef50_P54420 Asparagine synthetase [glutamine hydrolyzing] 1 0.0150246451037 0.5 0.484975354896 +UniRef50_G2AIF5 Ulp1 protease family, C terminal catalytic domain protein 0.242799418391 0.5 0.257200581609 +UniRef50_UPI00034AAAAB hypothetical protein 1.17740276706 0.499999999999 -0.677402767062 +UniRef50_UPI00036B1199 hypothetical protein 0.0785053313908 0.5 0.421494668609 +UniRef50_C8P5G2 Raf like protein 0.434564533955 0.5 0.0654354660447 +UniRef50_UPI000372D48D hypothetical protein 0.454842849209 0.5 0.0451571507907 +UniRef50_V5VG85 HAD superfamily hydrolase 0.0193352853601 0.5 0.48066471464 +UniRef50_P06959 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 1.6017969634 0.5 -1.1017969634 +UniRef50_F9YYE2 Cobalt transport protein CbiQ 0.0218685328554 0.5 0.478131467144 +UniRef50_H0K4B0 Cation transport ATPase 3.7352068779 0.499999999999 -3.2352068779 +UniRef50_A4VGJ3 Two component sensor PhoQ 0.855771818725 0.5 -0.355771818725 +UniRef50_UPI00037895ED hypothetical protein 0.733849010027 0.5 -0.233849010027 +UniRef50_A7ZAV2 0.532689892927 0.5 -0.0326898929269 +UniRef50_P77129 2.20839058391 0.5 -1.70839058391 +UniRef50_Q6A6T4 30S ribosomal protein S9 0.204496432365 0.5 0.295503567635 +UniRef50_UPI000255C8A1 Bcr CflA subfamily drug resistance transporter protein, partial 0.331492022267 0.5 0.168507977733 +UniRef50_UPI0003721AC4 hypothetical protein 0.989727038972 0.5 -0.489727038972 +UniRef50_C0PWP3 NADH dehydrogenase subunit N 2.34267205914 0.500000000001 -1.84267205914 +UniRef50_A7X5E2 30S ribosomal protein S8 0.730206641368 0.5 -0.230206641368 +UniRef50_C3ZKC0 0.498262251974 0.5 0.00173774802593 +UniRef50_U3TJ62 Elongation factor 4 2.44609528369 0.500000000003 -1.94609528369 +UniRef50_D4HA42 0.0614813324468 0.5 0.438518667553 +UniRef50_UPI000248A7D5 putative RTX family exoprotein 0.935724125605 0.5 -0.435724125605 +UniRef50_Q5HH83 UPF0413 protein SACOL1006 2.55714494297 0.500000000001 -2.05714494297 +UniRef50_A5UKS1 Multidrug ABC transporter, permease component 0.547088031097 0.5 -0.0470880310971 +UniRef50_Q04L81 Phosphopentomutase 2.17085771686 0.500000000001 -1.67085771686 +UniRef50_UPI00042B1BC9 Translation initiation factor 3 protein isoform 3 1.41245171183 0.499999999999 -0.912451711829 +UniRef50_E4N7F4 0.275622889102 0.5 0.224377110898 +UniRef50_B1HX23 UPF0173 metal dependent hydrolase Bsph_4138 3.03901240799 0.500000000002 -2.53901240799 +UniRef50_UPI0003C10FDE PREDICTED 0.851330267266 0.5 -0.351330267266 +UniRef50_J9NUZ7 0.660063635602 0.5 -0.160063635602 +UniRef50_W0A1B9 Amino acid ABC transporter permease 2.63862888808 0.499999999999 -2.13862888808 +UniRef50_A0RKC3 0.100941549812 0.5 0.399058450188 +UniRef50_UPI000442200E PREDICTED 0.210814912159 0.5 0.289185087841 +UniRef50_Q5E0X7 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.491584298211 0.5 0.00841570178856 +UniRef50_I2BTA7 Response regulator GGDEF domain protein 1.37999711688 0.5 -0.87999711688 +UniRef50_Q1IXD5 Deoxyguanosinetriphosphate triphosphohydrolase like protein 0.0398923218094 0.5 0.460107678191 +UniRef50_D3QJ45 Lysophospholipase Monoglyceride lipase 1.95205540665 0.499999999999 -1.45205540665 +UniRef50_UPI0003B66D29 MULTISPECIES 0.0668479309963 0.500000000001 0.433152069003 +UniRef50_R1EJL9 0.951912692825 0.5 -0.451912692825 +UniRef50_Q8CQQ7 1.26070477896 0.5 -0.760704778962 +UniRef50_Q8CQQ2 3.77916277084 0.5 -3.27916277084 +UniRef50_Q8CQQ1 1.50672827062 0.5 -1.00672827062 +UniRef50_X5K129 1.13847318302 0.5 -0.638473183016 +UniRef50_N6V788 0.331357298146 0.5 0.168642701854 +UniRef50_S6JXH3 3.21619524333 0.500000000001 -2.71619524333 +UniRef50_UPI00046638AB DNA primase 0.826128946348 0.5 -0.326128946348 +UniRef50_Q898U9 Conserved protein 0.473394449894 0.5 0.0266055501063 +UniRef50_A8LPA6 Double strand break repair helicase AddA 1.56094233506 0.5 -1.06094233506 +UniRef50_K6WPK4 MazG family protein 0.185485711287 0.5 0.314514288713 +UniRef50_M9VGE0 Anchored repeat ABC transporter, substrate binding protein 0.0144771159528 0.5 0.485522884047 +UniRef50_Q72TV3 Transketolase alpha subunit protein 0.0395325450111 0.500000000001 0.460467454988 +UniRef50_UPI00047D8BBE 50S ribosomal protein L4 0.0289953506459 0.5 0.471004649354 +UniRef50_Q5WFY6 tRNA dimethylallyltransferase 0.00680620997392 0.5 0.493193790026 +UniRef50_U5NRL0 2.5142221638 0.5 -2.0142221638 +UniRef50_UPI0002F8AC80 hypothetical protein 0.176583868081 0.5 0.323416131919 +UniRef50_B3RBC2 1.08109685881 0.5 -0.581096858805 +UniRef50_Q2W726 Predicted membrane protein 1.94147098587 0.5 -1.44147098587 +UniRef50_G7U7H1 Glutamate synthase small subunit 0.0242098412661 0.5 0.475790158734 +UniRef50_R1CZY9 0.341891562934 0.5 0.158108437066 +UniRef50_V4QWZ4 1.05354331514 0.5 -0.553543315143 +UniRef50_E5U2C0 Short chain dehydrogenase reductase SDR 0.71688175077 0.5 -0.21688175077 +UniRef50_Q4EDT9 Mucin 0.149586782038 0.5 0.350413217962 +UniRef50_F4EI16 Acetolactate synthase (Large subunit) 0.616744630975 0.5 -0.116744630975 +UniRef50_D3E0M6 6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase 1.32878920502 0.5 -0.828789205018 +UniRef50_F0KI03 X Pro dipeptidyl peptidase 0.00614185246569 0.5 0.493858147534 +UniRef50_P15288 Cytosol non specific dipeptidase 13.4698542554 0.500000000007 -12.9698542554 +UniRef50_UPI0004121413 hypothetical protein 0.248555239829 0.5 0.251444760171 +UniRef50_A3X4G6 Antirepressor protein ant 0.25862672798 0.5 0.24137327202 +UniRef50_P76296 0.273145027022 0.5 0.226854972978 +UniRef50_G2SXT9 NUDIX hydrolase 0.0750022847729 0.5 0.424997715227 +UniRef50_A1T9L9 Malate dehydrogenase 0.00225366621346 0.5 0.497746333787 +UniRef50_F9YXK7 Two component sensor histidine kinase 0.0133879278097 0.5 0.48661207219 +UniRef50_U5MLC6 AAA domain protein 0.064797442928 0.5 0.435202557072 +UniRef50_Q46I72 Argininosuccinate synthase 0.0414795763395 0.5 0.45852042366 +UniRef50_UPI000369A472 hypothetical protein 0.00551075235465 0.5 0.494489247646 +UniRef50_R9CVV5 6.22118632422 0.499999999999 -5.72118632422 +UniRef50_I3UHD1 Aminotransferase 3.95222469644 0.500000000001 -3.45222469644 +UniRef50_UPI0004081419 beta lactamase 0.0590579558974 0.5 0.440942044102 +UniRef50_UPI00047E2D14 secretion system apparatus protein SsaV 1.37152381295 0.5 -0.871523812951 +UniRef50_M0LPL4 Phenol hydroxylase 2.82547083359 0.5 -2.32547083359 +UniRef50_UPI000381F5B7 hypothetical protein 2.12113996215 0.499999999999 -1.62113996215 +UniRef50_P43700 DNA gyrase subunit A 0.16806494381 0.5 0.331935056189 +UniRef50_H8GZI4 Secretion protein HlyD 0.0120866355058 0.5 0.487913364494 +UniRef50_Q8CNU1 Riboflavin synthase alpha chain 3.73713585988 0.5 -3.23713585988 +UniRef50_B2N6Z5 0.673590650193 0.5 -0.173590650193 +UniRef50_E2QK28 DNA helicase 0.0808239103647 0.5 0.419176089635 +UniRef50_UPI000255651A ammonium transporter, partial 0.268808130175 0.5 0.231191869825 +UniRef50_M4WTW3 1.923078448 0.5 -1.423078448 +UniRef50_E7I2X0 1.8336848066 0.5 -1.3336848066 +UniRef50_B9DS55 Sortase A 0.736376515731 0.5 -0.236376515731 +UniRef50_I3V233 Peptidase 3.82696177891 0.5 -3.32696177891 +UniRef50_B0RIE3 L arabinose isomerase 0.0463489020884 0.499999999999 0.453651097912 +UniRef50_UPI00035DB610 hypothetical protein 5.00425164193 0.499999999996 -4.50425164193 +UniRef50_UPI00042B847E Methylmalonate semialdehyde dehydrogenase 0.205877696542 0.5 0.294122303458 +UniRef50_UPI00036E7EE5 molybdopterin biosynthesis protein B, partial 2.26974148372 0.5 -1.76974148372 +UniRef50_Q9HWR3 Bacteriophytochrome 0.643776278768 0.5 -0.143776278768 +UniRef50_Q59200 Aspartate ammonia lyase 0.0564945253387 0.5 0.443505474661 +UniRef50_UPI0002DA19B1 hypothetical protein 0.73306257881 0.5 -0.23306257881 +UniRef50_P75794 Putative pyruvate formate lyase 3 activating enzyme 1.20908796273 0.5 -0.709087962726 +UniRef50_UPI0002000CF0 iron enterobactin transporter ATP binding protein 0.0278119560223 0.5 0.472188043978 +UniRef50_UPI00046F3EBA hypothetical protein, partial 2.78115584263 0.499999999998 -2.28115584263 +UniRef50_P19498 Coenzyme F420 hydrogenase subunit gamma 2.44577976759 0.5 -1.94577976759 +UniRef50_UPI0004777CC6 hypothetical protein 0.00438556210299 0.5 0.495614437897 +UniRef50_U2W9U5 UPF0301 protein RS24_01332 0.257432888986 0.5 0.242567111014 +UniRef50_Q06553 HTH type transcriptional regulator PrtR 3.33262595115 0.5 -2.83262595115 +UniRef50_UPI00037487E6 ABC transporter 0.011154403315 0.5 0.488845596685 +UniRef50_C6ADP9 NADH quinone oxidoreductase subunit K 0.526404899438 0.5 -0.0264048994376 +UniRef50_UPI00016C4BF8 Cadherin 8.40053368221 0.500000000002 -7.90053368221 +UniRef50_M9RBW7 GTP cyclohydrolase II 2.5868011268 0.5 -2.0868011268 +UniRef50_Q9K8V3 Arginine biosynthesis bifunctional protein ArgJ 1.32423213923 0.499999999999 -0.82423213923 +UniRef50_B3E414 Bifunctional protein GlmU 0.672224560546 0.5 -0.172224560546 +UniRef50_Q5LZ25 Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase 1.31782921936 0.5 -0.817829219363 +UniRef50_Q16AB8 DNA directed RNA polymerase subunit alpha 0.615281268227 0.5 -0.115281268227 +UniRef50_UPI00046F0F35 aspartate ammonia lyase, partial 0.193797469622 0.5 0.306202530378 +UniRef50_UPI00046B80D6 PREDICTED 0.00836790360677 0.5 0.491632096393 +UniRef50_G2NTW9 Short chain dehydrogenase reductase SDR 0.439845317356 0.5 0.0601546826436 +UniRef50_O83079 Probable metal transport system membrane protein TP_0036 0.273173811351 0.5 0.226826188649 +UniRef50_L9PLX0 0.304901431087 0.5 0.195098568913 +UniRef50_A0KMZ9 Glutamyl tRNA reductase 0.422349761922 0.5 0.0776502380776 +UniRef50_E4G8P9 1,3 beta galactosyl N acetylhexosamine phosphorylase 0.0143571744869 0.499999999999 0.485642825514 +UniRef50_A1S781 Response regulator receiver modulated CheW protein 0.578355303848 0.5 -0.0783553038475 +UniRef50_W8TSS8 3.63347321984 0.500000000003 -3.13347321984 +UniRef50_A8AB61 Probable 2 isopropylmalate synthase 0.152994745957 0.5 0.347005254043 +UniRef50_Q9RYG6 0.0777038722605 0.5 0.42229612774 +UniRef50_UPI00022CA85B PREDICTED 0.0587836448894 0.500000000001 0.44121635511 +UniRef50_A9GZY1 Imidazoleglycerol phosphate dehydratase 1.6329078971 0.5 -1.1329078971 +UniRef50_L9U970 Diguanylate cyclase, predicted 0.00721745004729 0.5 0.492782549953 +UniRef50_B2KC44 Phosphoglycerate kinase 0.383506731737 0.5 0.116493268263 +UniRef50_A0A022H326 Ferredoxin 0.377623459046 0.5 0.122376540954 +UniRef50_P55140 UPF0603 protein YgcG 1.39409739205 0.5 -0.894097392049 +UniRef50_Q43973 3 oxoadipate CoA transferase subunit A 0.421621853075 0.5 0.0783781469252 +UniRef50_A8AWN6 Conserved domain protein 0.427965759411 0.5 0.0720342405892 +UniRef50_UPI000366463F hypothetical protein 4.61321618492 0.500000000001 -4.11321618492 +UniRef50_L8MIC1 12.3092282875 0.499999999998 -11.8092282875 +UniRef50_UPI00037EFF82 50S ribosomal protein L15 3.43249760917 0.499999999999 -2.93249760917 +UniRef50_Q8CRB0 Putative hemin import ATP binding protein HrtA 1.89483164678 0.500000000001 -1.39483164678 +UniRef50_UPI0001BF5A9F hypothetical protein SMAC_11746, partial 0.762777124451 0.5 -0.262777124451 +UniRef50_G2HDN4 BRO family, N terminal domain protein 1.13679338381 0.5 -0.636793383814 +UniRef50_Q9RWY0 0.00325059848546 0.5 0.496749401514 +UniRef50_UPI0003D3911F ribosomal RNA small subunit methyltransferase h 0.0362003856023 0.5 0.463799614398 +UniRef50_Q5HQR8 Organic hydroperoxide resistance protein like 1 2.72508181038 0.500000000001 -2.22508181038 +UniRef50_X0ZSL3 Marine sediment metagenome DNA, contig 0.232120894296 0.5 0.267879105704 +UniRef50_UPI0003724FBD hypothetical protein 0.0290200147442 0.5 0.470979985256 +UniRef50_A8LHS2 Response regulator receiver protein 3.00348631791 0.499999999999 -2.50348631791 +UniRef50_W8H2B8 Regucalcin 0.0124594485993 0.5 0.487540551401 +UniRef50_P52027 DNA polymerase I 0.00252543422122 0.5 0.497474565779 +UniRef50_UPI00037D8096 hypothetical protein, partial 0.346750223486 0.5 0.153249776514 +UniRef50_E3GWV9 PP loop domain protein 2.01169236401 0.499999999997 -1.51169236401 +UniRef50_Q1IZL3 LmbE like protein protein 0.00790900185777 0.500000000001 0.492090998142 +UniRef50_Q97SH4 PTS system mannitol specific EIICB component 0.343500480342 0.5 0.156499519658 +UniRef50_F3RIQ8 Membrane protein 0.000462553355661 0.5 0.499537446644 +UniRef50_P11018 Major intracellular serine protease 0.0129564250364 0.5 0.487043574963 +UniRef50_R8ZJ12 1.0177112508 0.5 -0.517711250804 +UniRef50_I0C7W6 Two component sensor histidine kinase 1.19071272053 0.5 -0.690712720527 +UniRef50_C4S8U7 0.379364599808 0.5 0.120635400192 +UniRef50_R6GJ60 Capsular polysaccharide biosynthesis protein 0.207629838906 0.5 0.292370161094 +UniRef50_D9RDA2 5.89179957116 0.499999999999 -5.39179957116 +UniRef50_UPI0003B53675 sugar ABC transporter permease 0.208607737595 0.500000000001 0.291392262405 +UniRef50_A5EP16 Glutathione dependent formaldehyde activating enzyme 1.74895121683 0.499999999998 -1.24895121682 +UniRef50_UPI0003769E9C hypothetical protein 0.187658301318 0.5 0.312341698682 +UniRef50_Q1C0Q8 Hemin import ATP binding protein HmuV 0.00431009335246 0.500000000001 0.495689906646 +UniRef50_M9R9I4 Magnesium chelatase 2.08849531562 0.500000000002 -1.58849531563 +UniRef50_I0C723 Sodium glutamate symport carrier protein 1.28788567604 0.500000000001 -0.78788567604 +UniRef50_Q46942 1.02253273897 0.5 -0.52253273897 +UniRef50_J2X9Z3 0.0214458716507 0.5 0.478554128349 +UniRef50_Q46941 0.292655745804 0.5 0.207344254196 +UniRef50_P13792 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 1.55670972711 0.5 -1.05670972711 +UniRef50_E8P9H9 0.0404380121498 0.5 0.45956198785 +UniRef50_P0C7J3 Xanthan biosynthesis protein XanB 1.0598536721 0.5 -0.5598536721 +UniRef50_M0UK13 0.485886444117 0.5 0.0141135558827 +UniRef50_X2IBS7 Membrane protein 0.0416147002529 0.5 0.458385299747 +UniRef50_UPI00037A8F71 hypothetical protein 0.00557946365939 0.5 0.494420536341 +UniRef50_K2DQ77 GTP binding protein lepA 0.160880511711 0.5 0.339119488289 +UniRef50_UPI000400635E DNA mismatch repair protein MutT 1.40888105168 0.5 -0.908881051681 +UniRef50_UPI00038209BB transcriptional regulator 3.26098842056 0.500000000004 -2.76098842057 +UniRef50_Q2FH55 Putative oligopeptide transport system permease protein oppB2 0.618634764781 0.5 -0.118634764781 +UniRef50_UPI00029DCC9C 0.179413969653 0.5 0.320586030347 +UniRef50_D4N0A6 Molybdenum ABC transporter, periplasmic molybdate binding protein 0.546640472099 0.5 -0.0466404720989 +UniRef50_UPI0003B45259 alkaline phosphatase 0.0301367597686 0.5 0.469863240231 +UniRef50_D5CAF9 0.401199886941 0.5 0.0988001130594 +UniRef50_B2SEB4 Potassium transporting ATPase A chain 0.00202673436924 0.500000000001 0.49797326563 +UniRef50_W8T550 0.467049680645 0.5 0.0329503193552 +UniRef50_UPI000478594F hypothetical protein 0.0351598728535 0.5 0.464840127147 +UniRef50_I0L9E3 0.0516243192346 0.5 0.448375680765 +UniRef50_A4WXR5 KDPG and KHG aldolase 3.745588552 0.5 -3.245588552 +UniRef50_A5UNE2 Lipopolysaccharide cholinephosphotransferase, LicD family 0.845543939526 0.5 -0.345543939526 +UniRef50_A6M165 Cellulose synthase subunit domain 0.255329482044 0.5 0.244670517956 +UniRef50_UPI0004790220 3 oxoacyl ACP synthase 0.156382969584 0.5 0.343617030416 +UniRef50_Q167X1 0.86071791556 0.5 -0.36071791556 +UniRef50_Q89T28 D amino acid dehydrogenase small subunit 0.639386290881 0.5 -0.139386290881 +UniRef50_U5MUN0 Methyl accepting chemotaxis protein 0.27464882637 0.5 0.22535117363 +UniRef50_UPI00040BC712 hypothetical protein 0.416108272394 0.5 0.0838917276058 +UniRef50_F5ZGJ9 DNA binding protein 0.132165983314 0.5 0.367834016686 +UniRef50_W7WFV4 Methylmalonyl CoA mutase 0.122859705852 0.5 0.377140294148 +UniRef50_UPI0003B3E18A branched chain amino acid transporter permease subunit LivH, partial 0.0721812138282 0.5 0.427818786172 +UniRef50_J0HWL6 Ornithine cyclodeaminase family protein 0.315417425303 0.5 0.184582574697 +UniRef50_X1DRG2 Marine sediment metagenome DNA, contig 0.346179269019 0.5 0.153820730981 +UniRef50_W8U5L3 Membrane protein 1.20598376166 0.5 -0.705983761655 +UniRef50_O87455 Regulatory protein LuxO 0.091760666954 0.5 0.408239333046 +UniRef50_F9YBY3 1.35313952763 0.5 -0.853139527629 +UniRef50_G2P974 0.172386549351 0.5 0.327613450649 +UniRef50_UPI000380AAE2 hypothetical protein 0.273684133008 0.5 0.226315866992 +UniRef50_K4QA11 0.72107415736 0.5 -0.22107415736 +UniRef50_S3CIA8 16.3076152436 0.500000000008 -15.8076152436 +UniRef50_A7B8C4 3.26254041701 0.499999999999 -2.76254041701 +UniRef50_F3ZB63 0.0782936560684 0.5 0.421706343931 +UniRef50_Q8FE91 0.297586593605 0.5 0.202413406395 +UniRef50_F0QJX2 0.0113963382137 0.5 0.488603661786 +UniRef50_W1J5V3 0.448419126687 0.5 0.051580873313 +UniRef50_J0EVE3 2.96452564063 0.499999999996 -2.46452564063 +UniRef50_Q3IVF5 0.288209968374 0.5 0.211790031626 +UniRef50_Q6F7V8 UPF0761 membrane protein ACIAD3168 0.0771791273326 0.5 0.422820872667 +UniRef50_Q3IUV2 TraG 2.69107660674 0.499999999999 -2.19107660674 +UniRef50_U3PCK7 Transposase, undefined 0.0235611424502 0.5 0.47643885755 +UniRef50_A6LZB4 ApbE family lipoprotein 0.236513333342 0.5 0.263486666658 +UniRef50_UPI000464EBB9 peptide ABC transporter permease 0.446676939897 0.5 0.0533230601028 +UniRef50_K0R9N5 0.294971002424 0.5 0.205028997576 +UniRef50_A6LQI1 Peptidase M23B 0.121782730163 0.5 0.378217269837 +UniRef50_F2U4B6 0.930963443054 0.5 -0.430963443054 +UniRef50_Q21CV9 2.47630170597 0.500000000003 -1.97630170598 +UniRef50_U3TUS4 0.318653080837 0.5 0.181346919163 +UniRef50_G8V566 Type I restriction modification system, M subunit 2.499753938 0.500000000002 -1.99975393801 +UniRef50_D4HCJ3 0.0223522791541 0.5 0.477647720846 +UniRef50_P45604 PTS system N acetylglucosamine specific EIICBA component 1.70040248187 0.5 -1.20040248187 +UniRef50_J2P2T7 0.366249128918 0.5 0.133750871082 +UniRef50_P39314 Inner membrane protein YtfF 0.792931039047 0.5 -0.292931039047 +UniRef50_UPI00047D7CE0 hypothetical protein 0.301715626845 0.5 0.198284373155 +UniRef50_B8FMK3 0.0648375858573 0.500000000001 0.435162414142 +UniRef50_UPI00046354D6 short chain dehydrogenase 0.135574992871 0.5 0.364425007129 +UniRef50_S9R2Y6 Putative permease 2.22608616826 0.5 -1.72608616826 +UniRef50_D1YZX5 3.06901648733 0.499999999998 -2.56901648733 +UniRef50_J0QYX6 0.202646769411 0.5 0.297353230589 +UniRef50_M9REI0 0.0171426424377 0.5 0.482857357562 +UniRef50_C7ZY45 Exported protein 8.75779004911 0.499999999998 -8.25779004911 +UniRef50_Q5LXB5 Cell division ATP binding protein FtsE 1.34896923035 0.5 -0.848969230351 +UniRef50_U1YI17 0.059558684121 0.500000000001 0.440441315878 +UniRef50_UPI0003C1261B 1.30180259322 0.5 -0.801802593223 +UniRef50_F9Y3X8 0.0958830201743 0.5 0.404116979826 +UniRef50_V1L1Y8 1.33556089576 0.5 -0.835560895758 +UniRef50_Q8CNK0 Single stranded DNA binding protein 9.0377035775 0.499999999999 -8.5377035775 +UniRef50_UPI000469F81E hypothetical protein 6.57474932756 0.5 -6.07474932756 +UniRef50_L2EAP1 Exodeoxyribonuclease III 0.373691919796 0.5 0.126308080204 +UniRef50_Q8TRP1 Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein 0.57369687709 0.5 -0.0736968770901 +UniRef50_UPI0003C80514 PREDICTED 0.0897653998227 0.5 0.410234600177 +UniRef50_Q9PLA5 Phosphoglucosamine mutase 0.186031422209 0.5 0.313968577791 +UniRef50_Q8DUC9 Probable 2 3 dephosphocoenzyme A synthase 11.3259212596 0.499999999999 -10.8259212596 +UniRef50_UPI0004666A9C AraC family transcriptional regulator 0.192339912045 0.5 0.307660087955 +UniRef50_A6THJ4 Inosose dehydratase 0.0536224439812 0.5 0.446377556019 +UniRef50_W6IPV9 Oligopeptide transport system permease protein oppC 0.104525328129 0.5 0.395474671871 +UniRef50_F2AKS8 Ferripyochelin binding protein 0.768113924644 0.5 -0.268113924644 +UniRef50_C0R046 DNA gyrase subunit A 0.324464005923 0.5 0.175535994077 +UniRef50_E8SFS5 Membrane protein 3.24412941782 0.5 -2.74412941782 +UniRef50_E8SMB7 0.0366792767879 0.5 0.463320723212 +UniRef50_A4IQK7 NADPH dehydrogenase 0.0193045576734 0.5 0.480695442327 +UniRef50_X5DZP9 Binding dependent transport system inner membrane component family protein 1.02663436822 0.5 -0.526634368216 +UniRef50_UPI0002557D62 preprotein translocase subunit SecD, partial 0.370021330495 0.5 0.129978669505 +UniRef50_Q88AR2 Amino acid acetyltransferase 0.0568193931706 0.5 0.443180606829 +UniRef50_Q9RW26 0.00163998592052 0.5 0.49836001408 +UniRef50_UPI00035DB8C9 hypothetical protein 0.334348015626 0.5 0.165651984374 +UniRef50_R5TC44 Nicotinate nucleotide diphosphorylase 0.0432476434417 0.5 0.456752356559 +UniRef50_A5IQ60 Septum formation initiator 6.49286917205 0.500000000001 -5.99286917205 +UniRef50_X4Z0U6 Ferredoxin NADP reductase 0.668325889428 0.5 -0.168325889428 +UniRef50_UPI0001FE5E48 heat shock protein 60 0.427265725086 0.5 0.0727342749143 +UniRef50_UPI0003B74A81 hypothetical protein 3.21821802125 0.500000000002 -2.71821802125 +UniRef50_Q9P2R7 Succinyl CoA ligase [ADP forming] subunit beta, mitochondrial 0.570307730973 0.5 -0.070307730973 +UniRef50_Q97Q34 Phosphate import ATP binding protein PstB 2 0.188596425403 0.5 0.311403574597 +UniRef50_D9SQU6 Two component transcriptional regulator, AraC family 1.33131758987 0.5 -0.831317589866 +UniRef50_Q4K8A6 1.11979991443 0.5 -0.619799914433 +UniRef50_UPI00036AA061 hypothetical protein 2.89605963382 0.5 -2.39605963382 +UniRef50_UPI0003EC0186 PREDICTED 0.454111626204 0.5 0.0458883737962 +UniRef50_UPI00037642BA hypothetical protein 1.22494254483 0.5 -0.72494254483 +UniRef50_UPI00045EADA1 hypothetical protein 0.294878211873 0.5 0.205121788127 +UniRef50_UPI00034763C5 MerR family transcriptional regulator 4.10182101738 0.500000000002 -3.60182101738 +UniRef50_G4LFL9 LysR family transcriptional regulator 0.192225932277 0.5 0.307774067723 +UniRef50_G7DFY8 Ribonuclease E 7.88738252245 0.499999999994 -7.38738252244 +UniRef50_X1BCT6 Marine sediment metagenome DNA, contig 1.63974719483 0.5 -1.13974719483 +UniRef50_B2TK60 Probable septum site determining protein MinC 0.063000759293 0.5 0.436999240707 +UniRef50_L5SXQ3 Pre toxin domain with VENN motif family protein 0.0359692586482 0.500000000001 0.464030741351 +UniRef50_E0RLL7 0.0998086534779 0.5 0.400191346522 +UniRef50_D5AUC1 Entericidin B 0.214003713922 0.5 0.285996286078 +UniRef50_A8LMQ8 Flagellar biosynthetic protein FliQ 0.0868398947724 0.5 0.413160105227 +UniRef50_Q1RAX2 0.0352664800012 0.5 0.464733519999 +UniRef50_I6SUA4 0.0944449492725 0.5 0.405555050727 +UniRef50_Q8L4A1 Os01g0594900 protein 0.111025057163 0.5 0.388974942837 +UniRef50_K1YIM5 0.803268565364 0.5 -0.303268565364 +UniRef50_A0A037XEA8 2.71380199548 0.500000000001 -2.21380199548 +UniRef50_A0A024BU97 Restriction endonuclease 0.01679077698 0.5 0.48320922302 +UniRef50_UPI000393D62B PREDICTED 0.137934508094 0.5 0.362065491906 +UniRef50_A3VHI7 0.376024589834 0.5 0.123975410166 +UniRef50_Q8TL41 Histidinol dehydrogenase 5.43757611361 0.500000000002 -4.93757611361 +UniRef50_R9SKI2 2.47011357008 0.499999999999 -1.97011357008 +UniRef50_A6M1Y0 Helix turn helix domain containing protein, AraC type 0.124240638503 0.5 0.375759361497 +UniRef50_B2UPP6 Serine tRNA ligase 0.328350633812 0.5 0.171649366188 +UniRef50_A0A017HRP7 1.95063472113 0.500000000001 -1.45063472113 +UniRef50_Q3AC06 Orotidine 5 phosphate decarboxylase 0.336596476471 0.5 0.163403523529 +UniRef50_UPI000379A499 hypothetical protein 0.120252383959 0.5 0.379747616041 +UniRef50_V9VQ76 0.802571763887 0.5 -0.302571763887 +UniRef50_UPI000369122A MULTISPECIES 0.0045335743417 0.5 0.495466425658 +UniRef50_UPI00037FB80C hypothetical protein 0.106903131624 0.5 0.393096868376 +UniRef50_G7VQW0 Transcriptional regulator 1.05822426738 0.5 -0.558224267377 +UniRef50_M9J5S9 Molybdopterin binding domain of aldehyde dehydrogenase family protein 0.497851161346 0.5 0.00214883865404 +UniRef50_S5CX29 Tfp pilus assembly protein PilN 0.0102792464688 0.5 0.489720753531 +UniRef50_Q4FUV6 Ribonuclease 3 0.356566368321 0.5 0.143433631679 +UniRef50_D4HD89 ABC transporter, ATP binding protein 0.0455292138517 0.5 0.454470786148 +UniRef50_P0ABW6 0.255737974126 0.5 0.244262025874 +UniRef50_Q4FQY1 Kef type potassium proton antiporter, CPA2 family 0.0275707673847 0.5 0.472429232615 +UniRef50_S5YCT9 Phage terminase, large subunit 1.5687553639 0.5 -1.0687553639 +UniRef50_I0ESR9 Outer membrane protein 0.0566276683282 0.5 0.443372331672 +UniRef50_UPI000409D90E anthranilate synthase 0.0736332303471 0.5 0.426366769653 +UniRef50_D8TK47 0.131464700838 0.5 0.368535299162 +UniRef50_A5UP23 Predicted type II restriction enzyme, methylase subunit 2.12508415214 0.500000000002 -1.62508415214 +UniRef50_Q1GRL4 0.435433126083 0.5 0.0645668739168 +UniRef50_L1KBI7 0.901867989018 0.5 -0.401867989018 +UniRef50_Q5HXV5 0.248905589557 0.5 0.251094410443 +UniRef50_C5N3V2 3.68032554932 0.499999999999 -3.18032554932 +UniRef50_A4WRE5 1.4832099778 0.5 -0.983209977805 +UniRef50_UPI00020002D3 putative PucR family transcriptional regulator 0.199833863838 0.5 0.300166136162 +UniRef50_Q2SSX9 Thymidine kinase 0.394438115255 0.5 0.105561884745 +UniRef50_I7ZF55 0.554170505753 0.5 -0.0541705057531 +UniRef50_P44988 Probable 3 keto L gulonate 6 phosphate decarboxylase 0.161806129093 0.5 0.338193870907 +UniRef50_Q2FKF1 HTH type transcriptional regulator NorG 3.77927538521 0.500000000005 -3.27927538522 +UniRef50_A5MZU0 Carbamoyl phosphate synthase large chain 1.43291524368 0.5 -0.932915243676 +UniRef50_X1FQR4 Marine sediment metagenome DNA, contig 1.94889571335 0.500000000001 -1.44889571335 +UniRef50_UPI0003C7D137 GntR family transcriptional regulator, partial 0.20366785755 0.5 0.29633214245 +UniRef50_UPI00038107A2 hypothetical protein 0.458138281462 0.5 0.0418617185383 +UniRef50_UPI00036F8AFA hypothetical protein 0.354034365104 0.5 0.145965634896 +UniRef50_P48992 Glucose 6 phosphate 1 dehydrogenase 0.311061786116 0.5 0.188938213884 +UniRef50_UPI00037C824E hypothetical protein 0.285309748054 0.5 0.214690251946 +UniRef50_UPI00035C9A62 hypothetical protein 0.917210547138 0.5 -0.417210547138 +UniRef50_A0A023KTG8 0.732643563467 0.5 -0.232643563467 +UniRef50_P56467 Bifunctional protein FolD 0.364488378546 0.5 0.135511621454 +UniRef50_A6LWE6 MATE efflux family protein 0.0777298210324 0.500000000001 0.422270178967 +UniRef50_Q5E4Y6 Multidrug resistance protein NorM 1.88616246879 0.5 -1.38616246879 +UniRef50_U7Q105 0.993456710932 0.5 -0.493456710932 +UniRef50_X6C2W9 1.34852879349 0.5 -0.848528793486 +UniRef50_G2BBB9 Putative nucleoside transporter yegT 1.95048360789 0.500000000002 -1.45048360789 +UniRef50_X6GIM5 1.00877948213 0.5 -0.508779482127 +UniRef50_O88167 1.99578930558 0.5 -1.49578930558 +UniRef50_U5MKZ1 0.329096833083 0.5 0.170903166917 +UniRef50_J7RAK2 0.355365384311 0.5 0.144634615689 +UniRef50_Q8CMQ9 Integrase like protein 2.02654956877 0.5 -1.52654956877 +UniRef50_F8FIU0 Fibronectin type III domain protein 0.0639335913492 0.5 0.436066408651 +UniRef50_P60620 Cytochrome c oxidase subunit 1 0.289640997863 0.5 0.210359002137 +UniRef50_Q51281 SiaD protein 0.0456311557338 0.5 0.454368844267 +UniRef50_UPI000361F695 hypothetical protein 0.0395097084845 0.5 0.460490291516 +UniRef50_UPI0003650B5E membrane protein 0.727340646583 0.5 -0.227340646583 +UniRef50_V6PWB3 Putative hydroxylase 1.15669180735 0.5 -0.656691807347 +UniRef50_Q5HQD3 0.16206687578 0.5 0.33793312422 +UniRef50_Q7VF14 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.0135467175689 0.5 0.486453282431 +UniRef50_B0VKD0 0.0048806575581 0.5 0.495119342442 +UniRef50_Q6G7H4 Pyrimidine nucleoside phosphorylase 1.0422600555 0.5 -0.542260055498 +UniRef50_Q8FJZ8 Anaerobic C4 dicarboxylate transporter DcuC 1.50726519903 0.5 -1.00726519903 +UniRef50_UPI0003B4CAB0 aldolase 3.79233618679 0.5 -3.29233618679 +UniRef50_UPI000373CDB9 hypothetical protein 0.169563769717 0.5 0.330436230283 +UniRef50_H5TWV5 0.00431650259387 0.5 0.495683497406 +UniRef50_C3AIA3 Tetracycline resistance protein 3.34645106122 0.5 -2.84645106122 +UniRef50_P07959 Methyl coenzyme M reductase operon protein C 2.86403834307 0.499999999999 -2.36403834307 +UniRef50_UPI0003C12BE2 0.0302696673819 0.5 0.469730332618 +UniRef50_F2LJU7 Glycogen debranching enzyme GlgX 2.32625019806 0.500000000001 -1.82625019806 +UniRef50_Q65LN0 Allantoinase 1.11869180884 0.5 -0.618691808837 +UniRef50_Q5LX31 SN glycerol 3 phosphate ABC transporter, periplasmic SN glycerol 3 phosphate binding protein 1.44288449708 0.5 -0.942884497082 +UniRef50_F2A477 0.87569810946 0.5 -0.37569810946 +UniRef50_L3HWN4 Inner membrane protein ybhI 1.3393802004 0.5 -0.839380200404 +UniRef50_G0DSV1 0.075602391462 0.5 0.424397608538 +UniRef50_B8EJI8 0.840687631854 0.5 -0.340687631854 +UniRef50_Q9CNG8 Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase 1.75720342617 0.499999999999 -1.25720342616 +UniRef50_E3I7F3 Cobyrinic acid ac diamide synthase 0.109982140899 0.5 0.390017859101 +UniRef50_S3AZM5 0.0199861613787 0.5 0.480013838621 +UniRef50_Q7VK29 Cysteine synthase 0.0766383910953 0.5 0.423361608905 +UniRef50_X1PWX6 Marine sediment metagenome DNA, contig 3.49514736566 0.499999999997 -2.99514736566 +UniRef50_A5UP33 Smf protein 1.88631190989 0.499999999998 -1.38631190989 +UniRef50_A5UMV5 Glycosyltransferase, GT2 family 3.95332405996 0.500000000002 -3.45332405996 +UniRef50_Q9M2W3 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 2 0.109000549398 0.5 0.390999450602 +UniRef50_M9VF88 NADH 0.0240016417261 0.5 0.475998358274 +UniRef50_I0C542 Glucosyltransferase 1.8821047297 0.5 -1.3821047297 +UniRef50_C6XR84 NAD NADP transhydrogenase alpha subunit like protein 0.613543809433 0.5 -0.113543809433 +UniRef50_A6T5N6 Chaperone protein HtpG 0.724925285913 0.5 -0.224925285913 +UniRef50_UPI0003502022 PREDICTED 0.064609243525 0.5 0.435390756475 +UniRef50_UPI00036716A7 hypothetical protein 0.827840020854 0.5 -0.327840020854 +UniRef50_UPI000273E85C 0.62797779152 0.5 -0.12797779152 +UniRef50_D4HEW0 0.14900379979 0.5 0.35099620021 +UniRef50_A3PP38 D12 class N6 adenine specific DNA methyltransferase 1.80456005756 0.500000000001 -1.30456005756 +UniRef50_Q9C667 Chaperonin 60 subunit beta 4, chloroplastic 1.35105413181 0.5 -0.851054131812 +UniRef50_A3PIP1 Response regulator receiver protein 9.94104478184 0.499999999998 -9.44104478184 +UniRef50_G8TK26 RNA splicing ligase RtcB 0.00273800618734 0.5 0.497261993813 +UniRef50_O67606 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 0.950563922197 0.5 -0.450563922197 +UniRef50_UPI0003478999 hypothetical protein 0.935034409402 0.5 -0.435034409402 +UniRef50_D6SIH2 8.9662956018 0.500000000001 -8.4662956018 +UniRef50_F2ILR6 0.101364349335 0.5 0.398635650665 +UniRef50_Q98M95 Glutamyl tRNA amidotransferase subunit A 0.0368619644064 0.5 0.463138035593 +UniRef50_UPI000006751A nitrogen regulatory protein PII like protein 0.0458643120751 0.5 0.454135687925 +UniRef50_U7GB94 1.31092483388 0.5 -0.81092483388 +UniRef50_Q9RZM6 0.00544242407972 0.5 0.49455757592 +UniRef50_Q9RZM4 0.000805606819176 0.5 0.499194393181 +UniRef50_D9UC90 Primosome assembly protein 0.139754334876 0.500000000001 0.360245665123 +UniRef50_F9VK25 Stage IV sporulation protein B 0.757606049285 0.5 -0.257606049285 +UniRef50_A6M0K3 Cell wall hydrolase autolysin 0.0553094375117 0.5 0.444690562488 +UniRef50_P10802 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 6.13969187381 0.500000000002 -5.63969187381 +UniRef50_Q9LFG2 Diaminopimelate epimerase, chloroplastic 0.0361983753697 0.5 0.46380162463 +UniRef50_UPI00037D35D7 hypothetical protein 0.434288289283 0.5 0.0657117107166 +UniRef50_P37252 Acetolactate synthase small subunit 0.78429281187 0.5 -0.28429281187 +UniRef50_M4K5M0 ParB family protein 2.44557477322 0.500000000004 -1.94557477322 +UniRef50_L7WU10 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 6.18526971643 0.500000000003 -5.68526971643 +UniRef50_Q58210 1.67493361835 0.499999999999 -1.17493361835 +UniRef50_Q57240 2.02660756213 0.499999999999 -1.52660756213 +UniRef50_UPI000380CA19 hypothetical protein 5.02475762695 0.5 -4.52475762695 +UniRef50_D1BKQ4 H+ gluconate symporter family protein 0.52409328669 0.5 -0.0240932866903 +UniRef50_A0A011PNK5 4.30512120574 0.499999999999 -3.80512120574 +UniRef50_Q1QEV4 FAD linked oxidase like protein 0.065417689546 0.5 0.434582310454 +UniRef50_W7W9I9 1.70972427251 0.5 -1.20972427251 +UniRef50_K2EIE6 3.38103534323 0.5 -2.88103534323 +UniRef50_UPI000369EE8C hypothetical protein, partial 0.222839607622 0.5 0.277160392378 +UniRef50_Q2JXY9 Argininosuccinate lyase 0.0047679914536 0.5 0.495232008546 +UniRef50_UPI00047276FD hypothetical protein 0.367762920079 0.5 0.132237079921 +UniRef50_B6J8V2 Ribosomal RNA small subunit methyltransferase G 0.497506266041 0.5 0.00249373395927 +UniRef50_G6EGC5 Transposase orfA IS5 family element 1.85616227673 0.5 -1.35616227673 +UniRef50_A6M244 ROK family protein 0.156757483497 0.5 0.343242516503 +UniRef50_UPI0003B46258 MerR family transcriptional regulator 0.164624856057 0.5 0.335375143943 +UniRef50_T1Y643 Homoserine O acetyltransferase 1.94378848631 0.499999999999 -1.44378848631 +UniRef50_Q67TJ2 Glutamate tRNA ligase 0.84294495186 0.5 -0.34294495186 +UniRef50_Q28NX6 Peptidase C26 8.47816298668 0.500000000001 -7.97816298668 +UniRef50_B5I692 FemAB family protein 0.00993136011838 0.5 0.490068639881 +UniRef50_UPI0003FF96A6 acetoin dehydrogenase 0.444314265534 0.5 0.0556857344661 +UniRef50_G7U900 Iron chelate uptake ABC transporter, FeCT family, permease protein 0.0323148862128 0.5 0.467685113787 +UniRef50_UPI0002BB164C hypothetical protein, partial 12.1169832317 0.500000000004 -11.6169832317 +UniRef50_R9ZKB9 2.00343623504 0.5 -1.50343623504 +UniRef50_UPI00036951EF hypothetical protein 3.04646937355 0.5 -2.54646937355 +UniRef50_UPI00029AC63E lipoprotein 0.375866091938 0.5 0.124133908062 +UniRef50_O28869 6.39898088659 0.499999999997 -5.89898088658 +UniRef50_Q5KVS7 Glucose 6 phosphate isomerase 2.27504919308 0.500000000001 -1.77504919308 +UniRef50_A5N4G1 Predicted exonuclease, sbcD related 0.0455648487041 0.500000000001 0.454435151295 +UniRef50_A6LQF1 Cyanophycin synthetase 0.128117737852 0.5 0.371882262148 +UniRef50_UPI000237D1A0 glycosyl transferase family 2 0.0805853699878 0.499999999999 0.419414630013 +UniRef50_B9EA45 1.86376564655 0.499999999998 -1.36376564655 +UniRef50_UPI000367BC1F hypothetical protein 0.149029553685 0.5 0.350970446315 +UniRef50_A6QFG9 7.73558241272 0.499999999991 -7.23558241271 +UniRef50_UPI0001B411A5 hypothetical protein 0.0578704044043 0.5 0.442129595596 +UniRef50_F0P7Q5 1.63249861146 0.500000000003 -1.13249861146 +UniRef50_UPI000441F369 PREDICTED 2.41462570792 0.5 -1.91462570792 +UniRef50_A0A008L098 11.4493896866 0.499999999993 -10.9493896866 +UniRef50_A0A023RT67 Recombinase RecJ 0.0286702854346 0.5 0.471329714566 +UniRef50_UPI0003AD2C67 hypothetical protein 0.534400543974 0.5 -0.0344005439735 +UniRef50_V6AFL3 Adenylate cyclase ExoY 0.351463515617 0.5 0.148536484383 +UniRef50_D4C552 2.42652232752 0.499999999999 -1.92652232752 +UniRef50_UPI00045E7BD4 hypothetical protein 0.046136132352 0.5 0.453863867648 +UniRef50_N8QX29 Xanthine dehydrogenase, molybdopterin binding subunit 0.0112254743135 0.5 0.488774525686 +UniRef50_Q8DJI6 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.247896277051 0.5 0.252103722949 +UniRef50_UPI00039EE060 ABC transporter 2.09668168452 0.5 -1.59668168452 +UniRef50_UPI000367431C hypothetical protein 0.302269460969 0.5 0.197730539031 +UniRef50_UPI00046A42D3 chorismate synthase 0.0709269632221 0.5 0.429073036778 +UniRef50_A8ZRA0 0.06101744627 0.5 0.43898255373 +UniRef50_UPI00035FEBAF hypothetical protein 0.248045793452 0.5 0.251954206548 +UniRef50_G2KPL2 Peptidase family protein 8.38851895743 0.5 -7.88851895743 +UniRef50_T2NPH9 Replication initiator protein A 1.35390194172 0.5 -0.853901941723 +UniRef50_UPI00037D884A hypothetical protein 0.415203314113 0.5 0.0847966858869 +UniRef50_I0JNK1 0.0242037482273 0.5 0.475796251773 +UniRef50_D9XJC0 Membrane protein 0.0647340508285 0.5 0.435265949172 +UniRef50_I8T5U4 0.365454890876 0.5 0.134545109124 +UniRef50_V9U5D1 Glucose dehydrogenase, PQQ dependent 0.307504985882 0.5 0.192495014118 +UniRef50_Q4EGL3 0.616484914738 0.5 -0.116484914738 +UniRef50_B2SN64 Transposase 0.469333453365 0.5 0.0306665466353 +UniRef50_E7C3H5 0.202627972731 0.5 0.297372027269 +UniRef50_O26742 Amidophosphoribosyltransferase 5.46369303922 0.500000000001 -4.96369303922 +UniRef50_Q8G4N5 Glucosamine 6 phosphate deaminase 0.00792916254012 0.5 0.49207083746 +UniRef50_Q7NIN3 Glr2150 protein 2.12757541159 0.5 -1.62757541159 +UniRef50_W1WKJ1 0.917667985022 0.5 -0.417667985022 +UniRef50_A0A031MHL6 Cell envelope biogenesis protein AsmA 0.409468627339 0.5 0.0905313726605 +UniRef50_D5BS30 Sigma 54 factor, interaction domain containing protein 0.922590377105 0.5 -0.422590377105 +UniRef50_Q3J0T0 2.26388902675 0.5 -1.76388902675 +UniRef50_A6LQ65 Methyl accepting chemotaxis sensory transducer 0.130106652874 0.5 0.369893347126 +UniRef50_A4X0R7 2.01121929961 0.5 -1.51121929961 +UniRef50_O24840 Vanillate O demethylase oxidoreductase 0.0298457399519 0.5 0.470154260048 +UniRef50_UPI00046C42D9 hypothetical protein 1.23751255592 0.5 -0.737512555918 +UniRef50_B0VB22 0.0119496099774 0.5 0.488050390023 +UniRef50_B0VB20 0.025438571117 0.5 0.474561428883 +UniRef50_A9BPH5 Short chain dehydrogenase reductase SDR 0.207169906776 0.5 0.292830093224 +UniRef50_P0A9W9 Protein YrdA 4.58726472373 0.500000000001 -4.08726472373 +UniRef50_A5W6Z8 Secretion protein HlyD family protein 0.203456514757 0.5 0.296543485243 +UniRef50_A0A010CI18 NADH Ubiquinone plastoquinone , various chains family protein 0.00250871776038 0.5 0.497491282239 +UniRef50_UPI0003751049 hypothetical protein 0.672015937839 0.5 -0.172015937839 +UniRef50_Q9HT80 DNA polymerase I 1.19543412394 0.5 -0.695434123936 +UniRef50_T1Y610 0.0119501443797 0.5 0.48804985562 +UniRef50_C5N439 0.685393945373 0.5 -0.185393945373 +UniRef50_Q5HL38 1.28861165856 0.5 -0.788611658558 +UniRef50_A8A3U8 4.18103932019 0.500000000001 -3.68103932019 +UniRef50_UPI000472CA5C hypothetical protein 0.373384877676 0.5 0.126615122324 +UniRef50_UPI00029B279A Multidrug resistance protein B 0.491341948468 0.5 0.00865805153244 +UniRef50_A1ITE9 0.0228847542955 0.5 0.477115245704 +UniRef50_D3QEC0 0.853648175431 0.5 -0.353648175431 +UniRef50_D9PI46 Anaerobic ribonucleoside triphosphate reductase 0.0825477770824 0.5 0.417452222918 +UniRef50_A5N7H7 Elongation factor P 0.000182679409139 0.5 0.499817320591 +UniRef50_UPI00047B3307 2 oxoglutarate dehydrogenase 0.209591072172 0.5 0.290408927828 +UniRef50_UPI0002E03285 DNA invertase 0.355625468497 0.5 0.144374531503 +UniRef50_A0JUR7 4.66339055148 0.499999999995 -4.16339055147 +UniRef50_Q5PD59 1 deoxy D xylulose 5 phosphate reductoisomerase 5.43854729077 0.499999999999 -4.93854729077 +UniRef50_A5UN26 Adhesin like protein 2.42890393754 0.499999999999 -1.92890393754 +UniRef50_A9M0Z2 Transcriptional regulator, GntR family 0.0377978470571 0.5 0.462202152943 +UniRef50_Q97FJ7 Histidine tRNA ligase 0.0604995369905 0.5 0.43950046301 +UniRef50_UPI00035948EC PREDICTED 2.59540860204 0.499999999999 -2.09540860204 +UniRef50_A9VXT4 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.623795456142 0.5 -0.123795456142 +UniRef50_P75683 7.38859371468 0.500000000002 -6.88859371468 +UniRef50_I6XWT7 Putative membrane protein 0.0510293994325 0.5 0.448970600568 +UniRef50_Q9K9Y6 Methionyl tRNA formyltransferase 0.0121620832121 0.5 0.487837916788 +UniRef50_UPI00034BF683 hypothetical protein 0.0166899657038 0.5 0.483310034296 +UniRef50_Q72IZ2 3 dehydroquinate dehydratase 0.0173336530719 0.5 0.482666346928 +UniRef50_A3U3D3 Plasma membrane H+ transporting two sector ATPase, C subunit 7.99374026794 0.499999999988 -7.49374026793 +UniRef50_Q9RYR1 Drug transport protein, putative 0.00181384259013 0.5 0.49818615741 +UniRef50_A7WZL5 NADPH dependent 7 cyano 7 deazaguanine reductase 1.00119029827 0.5 -0.501190298272 +UniRef50_UPI0003705A0C hypothetical protein 2.96246908216 0.499999999997 -2.46246908216 +UniRef50_UPI0003B754B6 ribonucleotide reductase 1.67155555372 0.500000000001 -1.17155555372 +UniRef50_Q6MRB4 Peptidyl prolyl cis trans isomerase 0.16746678315 0.5 0.33253321685 +UniRef50_P76115 Probable TonB dependent receptor YncD 2.91893557367 0.500000000001 -2.41893557368 +UniRef50_S7SQK8 0.0919004110108 0.5 0.408099588989 +UniRef50_UPI000368D785 50S ribosomal protein L18 0.389221426328 0.5 0.110778573672 +UniRef50_F0L6J1 Phage head tail adaptor, putative 2.02677880444 0.500000000001 -1.52677880445 +UniRef50_C3MPM7 Putative homocitrate synthase 0.45187819467 0.5 0.0481218053296 +UniRef50_W7IM88 Basic proline rich protein 0.169227962488 0.5 0.330772037512 +UniRef50_M7E5A1 Transcriptional regulator 0.46410739293 0.5 0.0358926070698 +UniRef50_Q8EU05 Chaperone protein ClpB 1.29947623421 0.500000000001 -0.799476234213 +UniRef50_W8YJN0 1.77618744138 0.5 -1.27618744138 +UniRef50_B8HD15 DNA directed RNA polymerase subunit beta 0.257448671746 0.5 0.242551328254 +UniRef50_Q2SLW2 1.84648219928 0.5 -1.34648219928 +UniRef50_N6V4C3 0.252884162612 0.5 0.247115837388 +UniRef50_F9Z195 General stress protein 18 0.359724776428 0.5 0.140275223572 +UniRef50_D7C5U0 Putative transposase 2.76589655489 0.500000000002 -2.26589655489 +UniRef50_Q112U2 2 isopropylmalate synthase 0.589220780098 0.5 -0.0892207800978 +UniRef50_W8ELK9 0.0043308708938 0.5 0.495669129106 +UniRef50_Q8REI2 Phosphoenolpyruvate carboxykinase [ATP] 0.145156928632 0.5 0.354843071368 +UniRef50_P66796 Transcriptional regulatory protein QseB 2.69784847962 0.5 -2.19784847962 +UniRef50_A4WSD0 Peptidase M10, serralysin like protein 2.62265745499 0.499999999999 -2.12265745499 +UniRef50_UPI000289FD65 4 aminobutyrate aminotransferase 0.218809379032 0.5 0.281190620968 +UniRef50_G7TM97 Transposase 0.499208153928 0.5 0.000791846071955 +UniRef50_UPI000477CB4F competence protein 0.161708710086 0.5 0.338291289914 +UniRef50_UPI00047E2083 DNA methyltransferase 3.55308413102 0.5 -3.05308413102 +UniRef50_B9TL13 6.34671888788 0.499999999995 -5.84671888787 +UniRef50_B2TY69 L ribulose 5 phosphate 3 epimerase UlaE 1.87862622212 0.5 -1.37862622212 +UniRef50_G6WW76 0.131170489149 0.5 0.36882951085 +UniRef50_UPI0004748BDD gamma aminobutyrate transporter 0.594159431042 0.5 -0.0941594310419 +UniRef50_Q984R8 Mll7872 protein 0.859003931694 0.5 -0.359003931694 +UniRef50_UPI00046AA572 hypothetical protein 2.89283758129 0.5 -2.39283758129 +UniRef50_T2ERS5 ThiS family protein 0.584470632589 0.5 -0.0844706325885 +UniRef50_A0A023B8B3 Mannitol 1 phosphate 5 dehydrogenase 0.0902206315283 0.500000000001 0.409779368471 +UniRef50_Q28WH8 DNA replication and repair protein RecF 0.583832783576 0.5 -0.0838327835757 +UniRef50_Q5WIY8 UPF0061 protein ABC1129 3.1867396909 0.500000000001 -2.6867396909 +UniRef50_T1UB30 2Fe 2S iron sulfur cluster binding domain protein 0.00462337302423 0.5 0.495376626976 +UniRef50_P37348 UPF0759 protein YecE 16.1979358359 0.5 -15.6979358359 +UniRef50_A6LQ22 0.0961761395606 0.5 0.403823860439 +UniRef50_Q1QJ51 Plasmid pRiA4b ORF 3 like protein 2.03257787172 0.5 -1.53257787172 +UniRef50_Q2G9L9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.214885090946 0.5 0.285114909054 +UniRef50_UPI0003B59A94 multifunctional thiamine phosphate pyrophosphorylase synthase phosphomethylpyrimidine kinase 0.164306130193 0.5 0.335693869807 +UniRef50_R9ZI95 Permease 0.682780769928 0.5 -0.182780769928 +UniRef50_K7E1C1 0.156374708043 0.5 0.343625291957 +UniRef50_UPI00037069EF hypothetical protein 2.68021112126 0.5 -2.18021112126 +UniRef50_UPI0003A0F8A6 multidrug ABC transporter 0.331545786141 0.5 0.168454213859 +UniRef50_UPI000366C76B hypothetical protein 0.354946384122 0.5 0.145053615878 +UniRef50_UPI00047A127F hypothetical protein, partial 0.950912540545 0.5 -0.450912540545 +UniRef50_N0C7C0 2.803346017 0.5 -2.303346017 +UniRef50_R5TZB6 Serine type site specific recombinase 0.0366280217183 0.5 0.463371978282 +UniRef50_A6M1X4 Integral membrane sensor signal transduction histidine kinase 0.147383086843 0.5 0.352616913156 +UniRef50_Q3IWH8 Monosaccharide ABC transporter membrane protein, CUT2 family 0.447592236242 0.5 0.0524077637576 +UniRef50_Q2JEW7 Peptide chain release factor 2 0.0226656453637 0.5 0.477334354636 +UniRef50_UPI000378DC18 hypothetical protein 0.0181121331472 0.5 0.481887866853 +UniRef50_A6LV85 Acyl CoA reductase 1.29475328846 0.5 -0.794753288458 +UniRef50_B9KQH0 Surface presentation of antigens protein 1.44023547971 0.5 -0.940235479712 +UniRef50_O34524 0.030978671812 0.5 0.469021328188 +UniRef50_O34528 0.872382260167 0.5 -0.372382260167 +UniRef50_A3K289 0.636457693756 0.5 -0.136457693756 +UniRef50_A0A024HL97 Tfp pilus assembly protein FimV like protein 0.528913873943 0.5 -0.0289138739433 +UniRef50_O34399 Glutamate synthase [NADPH] small chain 0.6970969757 0.5 -0.1970969757 +UniRef50_UPI000466D49C MerR family transcriptional regulator, partial 1.31828490019 0.5 -0.818284900193 +UniRef50_X2LHR6 Membrane protein 1.10849173157 0.5 -0.608491731565 +UniRef50_D8HHG7 Oligopeptide transport system permease protein 1.30608345666 0.500000000001 -0.806083456663 +UniRef50_UPI0003678A6C hypothetical protein 0.0582326923068 0.5 0.441767307693 +UniRef50_K4RMU3 0.0421816021143 0.500000000001 0.457818397885 +UniRef50_UPI0003B36F4D deoxyguanosinetriphosphate triphosphohydrolase 9.16062506965 0.499999999997 -8.66062506964 +UniRef50_A5UKV8 Transcription factor E 0.410074461449 0.5 0.0899255385512 +UniRef50_Q58776 Carbamoyl phosphate synthase large chain, C terminal section 0.400243574987 0.5 0.0997564250126 +UniRef50_D3FXA1 Maltose 6 phosphate glucosidase 0.18484890967 0.5 0.31515109033 +UniRef50_Q3B5D7 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.275912509299 0.5 0.224087490701 +UniRef50_UPI00035E5E43 phosphoadenosine phosphosulfate reductase 0.416732803052 0.5 0.083267196948 +UniRef50_T6G328 Cellulose synthase operon protein C 0.675498306466 0.5 -0.175498306466 +UniRef50_A3VEJ1 2.45956099661 0.499999999999 -1.95956099661 +UniRef50_D8JH08 Glycosyltransferase 0.00952006467055 0.5 0.49047993533 +UniRef50_U5C5S7 Diguanylate cyclase 0.204289060983 0.5 0.295710939017 +UniRef50_U6LUD4 15.589390417 0.500000000003 -15.089390417 +UniRef50_UPI0003B5E99A ABC transporter ATP binding protein 0.614666714341 0.5 -0.114666714341 +UniRef50_UPI00046CEEA5 molecular chaperone DnaJ 0.234619276753 0.5 0.265380723247 +UniRef50_F0YA66 0.259356749963 0.5 0.240643250037 +UniRef50_UPI000334479B 3.68389122297 0.500000000001 -3.18389122297 +UniRef50_E2X9M1 Aminotransferase ybdL 0.321904404051 0.5 0.178095595949 +UniRef50_K1UU32 0.0426062438527 0.5 0.457393756147 +UniRef50_UPI00016A9AD4 hypothetical protein 0.0346301811138 0.5 0.465369818886 +UniRef50_UPI00040938D6 hypothetical protein 0.881518445108 0.5 -0.381518445108 +UniRef50_N2SSM7 1.17216072748 0.5 -0.672160727476 +UniRef50_I7EXB5 Transcriptional regulator, crp family 4.01500012655 0.5 -3.51500012655 +UniRef50_A0A024J5P9 PT4 plasmid pSEN complete sequence 2.23277710537 0.5 -1.73277710537 +UniRef50_UPI0003628CAF hypothetical protein 0.163447383871 0.5 0.336552616129 +UniRef50_UPI00046F7609 hypothetical protein 1.04174864832 0.5 -0.541748648324 +UniRef50_UPI0003B489CA osmotically inducible protein C 0.0320812151687 0.5 0.467918784831 +UniRef50_A4SX51 4 hydroxy tetrahydrodipicolinate synthase 0.000290425761704 0.5 0.499709574238 +UniRef50_Q7VQH3 Enolase 0.0401813236343 0.5 0.459818676366 +UniRef50_UPI0003B4EABD glutathione ABC transporter ATP binding protein 1.9601808654 0.500000000001 -1.4601808654 +UniRef50_Q6HIL6 Aminoacyl histidine dipeptidase 0.149406042517 0.5 0.350593957483 +UniRef50_A0A010RX66 FeS assembly SUF system protein SufT 0.951141687228 0.5 -0.451141687228 +UniRef50_Q0BZZ7 Leucyl phenylalanyl tRNA protein transferase 0.0898112952573 0.5 0.410188704743 +UniRef50_E5QX84 FemAB family protein 1.08449822706 0.5 -0.584498227064 +UniRef50_D3RSC1 Channel protein, hemolysin III family 0.112935473048 0.5 0.387064526952 +UniRef50_B8DU54 N acetyl gamma glutamyl phosphate reductase 0.0587060087236 0.5 0.441293991277 +UniRef50_Q32DZ9 Macrolide export ATP binding permease protein MacB 0.16354771198 0.5 0.33645228802 +UniRef50_Q39DM7 Lipoprotein signal peptidase 0.354973889309 0.5 0.145026110691 +UniRef50_UPI0004649C8D hypothetical protein 0.0293570757289 0.5 0.470642924271 +UniRef50_UPI00047D766C hypothetical protein, partial 0.13467740845 0.5 0.36532259155 +UniRef50_M4R6E9 0.00676811496987 0.5 0.49323188503 +UniRef50_Q4FLF9 0.69887199219 0.5 -0.19887199219 +UniRef50_UPI000479CDCE 2 dehydro 3 deoxyglucarate aldolase 0.101356952519 0.5 0.398643047481 +UniRef50_UPI0002487D7B acetyl coenzyme A carboxylase carboxyl transferase subunit alpha, partial 0.349655625128 0.5 0.150344374872 +UniRef50_UPI000373F182 hypothetical protein 0.85179934081 0.5 -0.35179934081 +UniRef50_Q0APY8 NADH quinone oxidoreductase subunit C 0.166812922879 0.5 0.333187077121 +UniRef50_UPI0004684D4E hypothetical protein 6.43165910121 0.500000000001 -5.93165910121 +UniRef50_UPI0003483C97 enterobactin synthase subunit E 0.503739665129 0.5 -0.00373966512864 +UniRef50_P98056 Cytochrome c oxidase subunit 1 homolog 1.96337567421 0.500000000002 -1.46337567421 +UniRef50_C4J5K8 0.333192209742 0.5 0.166807790258 +UniRef50_A0A038FVW1 1.11832363548 0.500000000001 -0.61832363548 +UniRef50_A5D673 Ribosomal RNA small subunit methyltransferase A 0.32599166139 0.5 0.17400833861 +UniRef50_R0VZS5 0.162271545059 0.5 0.337728454941 +UniRef50_A4XVG5 tRNA hydroxylase 0.382678474872 0.5 0.117321525128 +UniRef50_C1C6G4 Phosphopentomutase 0.00270131497245 0.499999999999 0.497298685028 +UniRef50_P46142 0.500290554653 0.5 -0.000290554653447 +UniRef50_L2FJJ5 0.319560307809 0.5 0.180439692191 +UniRef50_UPI0002481AA7 HNH endonuclease 0.107462987663 0.5 0.392537012336 +UniRef50_Q3ERE1 Glyoxalase family protein 0.21103708813 0.5 0.28896291187 +UniRef50_A4VFG0 DNA replication and repair protein RecF 3.22238473179 0.5 -2.72238473179 +UniRef50_Q7MPS9 Coenzyme A biosynthesis bifunctional protein CoaBC 0.000249267831695 0.5 0.499750732168 +UniRef50_F0YFY9 Expressed protein 1.97566394683 0.499999999999 -1.47566394683 +UniRef50_UPI000477A5E2 esterase 0.462982343272 0.5 0.0370176567279 +UniRef50_R4K9X6 Histone acetyltransferase 0.425218559072 0.5 0.0747814409284 +UniRef50_UPI000373FF71 hypothetical protein, partial 0.0780160723265 0.5 0.421983927674 +UniRef50_P56344 Probable sulfate thiosulfate import ATP binding protein CysA 0.258661209764 0.5 0.241338790236 +UniRef50_U2YS21 1.53974758493 0.5 -1.03974758493 +UniRef50_UPI0003B47B9D phosphoserine phosphatase 0.0585012106897 0.5 0.44149878931 +UniRef50_D9PXN6 Predicted FMN binding protein 0.527519212956 0.5 -0.0275192129564 +UniRef50_X7YJ52 0.190660770805 0.5 0.309339229195 +UniRef50_A6LZ14 Histidine kinase 0.171065864756 0.5 0.328934135244 +UniRef50_UPI00029B24CC ABC transporter ATP binding protein 0.251070037247 0.5 0.248929962753 +UniRef50_UPI0003B4577C glycerophosphoryl diester phosphodiesterase 0.241803428731 0.5 0.258196571269 +UniRef50_A5FIF9 Potassium transporting ATPase A chain 0.0130471843159 0.5 0.486952815684 +UniRef50_R1ECI7 1.68433125336 0.5 -1.18433125336 +UniRef50_A5UMH5 Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein 6.38532330981 0.499999999997 -5.8853233098 +UniRef50_B2V2P3 Potassium transporting ATPase B chain 0.00337281434312 0.5 0.496627185657 +UniRef50_C5AFT1 0.32403740926 0.5 0.17596259074 +UniRef50_I6SKB7 0.164369736038 0.5 0.335630263962 +UniRef50_UPI00047C2684 heme ABC transporter ATP binding protein, partial 0.188503314893 0.5 0.311496685107 +UniRef50_Q02D08 0.139187010648 0.5 0.360812989352 +UniRef50_T4AYR7 0.00958106380579 0.5 0.490418936194 +UniRef50_P78061 Gamma glutamylputrescine synthetase PuuA 1.28202634359 0.5 -0.782026343592 +UniRef50_UPI000255867E 2 oxoglutarate dehydrogenase E1 component, partial 2.09071777638 0.5 -1.59071777638 +UniRef50_A6V9I8 Transcriptional regulator, IclR family 0.316757147207 0.5 0.183242852793 +UniRef50_UPI00047CE41F cobyrinic acid ac diamide synthase 0.014779501221 0.5 0.485220498779 +UniRef50_UPI0003B63533 hypothetical protein 0.0666925986876 0.5 0.433307401312 +UniRef50_R5K0I5 Succinylglutamate desuccinylase aspartoacylase family protein 0.297888316666 0.5 0.202111683334 +UniRef50_F6A168 Ribose phosphate diphosphokinase 0.0120250069875 0.5 0.487974993013 +UniRef50_E8XM67 Sugar isomerase 0.0690762677671 0.5 0.430923732233 +UniRef50_F8I099 0.597147864589 0.5 -0.0971478645894 +UniRef50_G8VD13 0.0189030965232 0.5 0.481096903477 +UniRef50_UPI0004799DC8 hypothetical protein 0.632153275532 0.5 -0.132153275532 +UniRef50_U7XP25 1.52717997646 0.5 -1.02717997646 +UniRef50_UPI0002192501 orotidine 5 phosphate decarboxylase 0.635803414449 0.5 -0.135803414449 +UniRef50_E6MY39 Integral membrane protein, TerC family 0.0640313151042 0.5 0.435968684896 +UniRef50_A0A011MY44 0.983765063562 0.5 -0.483765063562 +UniRef50_UPI00045EC444 MULTISPECIES 0.127552459757 0.499999999999 0.372447540244 +UniRef50_P18655 Superoxide dismutase [Fe] 0.0105686114762 0.5 0.489431388524 +UniRef50_H1XFI5 0.272583156264 0.5 0.227416843736 +UniRef50_G8YAV0 Piso0_003726 protein 0.604601707551 0.5 -0.104601707551 +UniRef50_N1PMQ8 3.76206960559 0.500000000001 -3.2620696056 +UniRef50_UPI000475D591 dihydroxyacetone kinase 0.00781906267769 0.5 0.492180937323 +UniRef50_C1DHH8 ATPase 1.4086073789 0.5 -0.908607378902 +UniRef50_A0A023LEW3 Alpha glucosidase 0.00587556590545 0.5 0.494124434095 +UniRef50_Q8VKN7 0.294023341033 0.5 0.205976658967 +UniRef50_Q1RH88 Superoxide dismutase [Mn Fe] 3.45584338617 0.500000000006 -2.95584338618 +UniRef50_F7XC58 0.313840492857 0.5 0.186159507143 +UniRef50_O29305 Putative citramalate synthase CimA 0.584438556622 0.5 -0.0844385566216 +UniRef50_A0A021VTG9 4.44600483529 0.499999999999 -3.94600483529 +UniRef50_UPI00047321C0 hypothetical protein 0.153248203609 0.5 0.346751796391 +UniRef50_UPI00016B24E2 ParBc, ParB like nuclease domain 0.208523419284 0.5 0.291476580716 +UniRef50_V9WPS8 Amino acid amide ABC transporter membrane protein 1, HAAT family 5.61381783139 0.499999999996 -5.11381783139 +UniRef50_R0FMF6 GroEL 0.349135016173 0.5 0.150864983827 +UniRef50_X7ZV72 Phosphate transport system regulatory protein PhoU 0.500498583312 0.5 -0.000498583311709 +UniRef50_Q0T014 Ribosomal RNA small subunit methyltransferase B 0.564702222499 0.5 -0.0647022224993 +UniRef50_UPI0004706840 peptide ABC transporter permease 0.336236867928 0.5 0.163763132072 +UniRef50_UPI0003B45E5B DNA binding protein 0.711356559664 0.5 -0.211356559664 +UniRef50_A5UJQ1 0.101590653993 0.5 0.398409346007 +UniRef50_A3MIQ3 Ribosomal RNA large subunit methyltransferase E 0.59543228489 0.5 -0.0954322848896 +UniRef50_UPI0000589E14 lipase precursor 0.244105456711 0.5 0.255894543289 +UniRef50_K7RQY3 0.0145900030581 0.5 0.485409996942 +UniRef50_F5ZJA3 Sugar phosphotransferase system , fructose specific family, IIA component 8.03215605837 0.500000000009 -7.53215605838 +UniRef50_Q6F6T5 0.02887029257 0.5 0.47112970743 +UniRef50_A6LW88 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.096782790386 0.5 0.403217209614 +UniRef50_W0YNW4 0.11882341238 0.5 0.38117658762 +UniRef50_W4L1M8 Transposase 2.54446684313 0.499999999999 -2.04446684313 +UniRef50_Q51553 3 hydroxydecanoyl ACP 0.934844884011 0.5 -0.434844884011 +UniRef50_A0A011ADX1 0.164830742009 0.5 0.335169257991 +UniRef50_UPI00037AB267 hypothetical protein, partial 1.13637172408 0.5 -0.636371724084 +UniRef50_P25737 Lysine specific permease 0.255253458141 0.5 0.244746541859 +UniRef50_C0RHG6 Acyl carrier protein 0.884428949575 0.5 -0.384428949575 +UniRef50_A4SPY8 Protoheme IX farnesyltransferase 0.44688815852 0.5 0.0531118414804 +UniRef50_Q7NCB3 Histidine ammonia lyase 0.0150956555455 0.499999999999 0.484904344455 +UniRef50_D3QF58 1.58021579411 0.499999999999 -1.08021579411 +UniRef50_A7GH10 Hydroxylamine reductase 0.133304058328 0.5 0.366695941672 +UniRef50_V4LC05 0.0561284113807 0.5 0.443871588619 +UniRef50_I1ETG1 0.104082725516 0.5 0.395917274484 +UniRef50_Q8DT71 1.38744903885 0.5 -0.887449038847 +UniRef50_C8WK91 Ribonucleoside diphosphate reductase 0.0479406796626 0.5 0.452059320337 +UniRef50_R6MV50 YhgE Pip domain containing protein 0.363057991 0.5 0.136942009 +UniRef50_Q1QD84 Oxidoreductase FAD NAD binding protein 0.0226331521247 0.5 0.477366847876 +UniRef50_M1N4C4 0.226444509263 0.5 0.273555490737 +UniRef50_G9W9B6 Lytic murein transglycosylase A 0.967643156091 0.5 -0.467643156091 +UniRef50_UPI0003829C73 hypothetical protein 1.03894168947 0.5 -0.538941689466 +UniRef50_N1TQ93 8.90137278451 0.500000000012 -8.40137278452 +UniRef50_P43776 Dihydropteroate synthase 0.179139598923 0.5 0.320860401077 +UniRef50_U5MM75 Penicillin binding protein 2 0.192470483233 0.5 0.307529516767 +UniRef50_A3JXA6 0.610071647908 0.5 -0.110071647908 +UniRef50_E7PVL4 ATP dependent RNA helicase 1.62038299219 0.5 -1.12038299219 +UniRef50_W5YDQ8 WGR domain protein 0.711931248074 0.5 -0.211931248074 +UniRef50_UPI00047B87BE hypothetical protein 0.424397147149 0.5 0.0756028528509 +UniRef50_F5Y7Q0 0.843927363851 0.5 -0.343927363851 +UniRef50_P77239 Cation efflux system protein CusB 0.55733885369 0.5 -0.0573388536899 +UniRef50_UPI0004770378 osmolarity response regulator 2.3035397588 0.5 -1.8035397588 +UniRef50_UPI0004423ADB 0.618517647535 0.5 -0.118517647535 +UniRef50_UPI0003610585 hypothetical protein 0.282159987627 0.5 0.217840012373 +UniRef50_P0AG95 Protein translocase subunit SecF 1.31652571244 0.5 -0.816525712438 +UniRef50_A5I292 0.414695941161 0.5 0.0853040588388 +UniRef50_Q2YPH2 Ornithine carbamoyltransferase 1.56397052881 0.5 -1.06397052881 +UniRef50_UPI00037DDC0E DNA methyltransferase, partial 1.58091834584 0.5 -1.08091834584 +UniRef50_Q8CU98 2.16573055716 0.5 -1.66573055716 +UniRef50_Q8CU99 1.65906341518 0.499999999998 -1.15906341518 +UniRef50_UPI00042902E2 stomatin 2 1.96298219973 0.5 -1.46298219973 +UniRef50_Q7VNN7 Phosphopantetheine adenylyltransferase 0.782865596455 0.5 -0.282865596455 +UniRef50_Q8CU97 1.09691329128 0.5 -0.596913291284 +UniRef50_U5UIZ0 2 oxoisovalerate dehydrogenase E1 component alpha subunit 1.32921335369 0.5 -0.829213353686 +UniRef50_E8SFA3 V5 Tpx 1 related allergen 1.74432562716 0.5 -1.24432562716 +UniRef50_I7A5B6 0.326906521787 0.5 0.173093478213 +UniRef50_E7BDJ1 ISNme1 transposase 0.00407673400063 0.5 0.495923266 +UniRef50_Q65RB3 Histidine biosynthesis bifunctional protein HisB 2.90848552586 0.500000000001 -2.40848552587 +UniRef50_UPI00016B21F0 TDP GLUCOSE PYROPHOSPHORYLASE, partial 4.41962634023 0.499999999998 -3.91962634023 +UniRef50_R1FAR2 0.654009024077 0.5 -0.154009024077 +UniRef50_D9QZA2 ABC transporter related protein 0.104804784717 0.5 0.395195215283 +UniRef50_Q8CNH5 General stress protein 20U 2.26224505916 0.499999999998 -1.76224505915 +UniRef50_UPI0004782D2D sulfite oxidase 0.0694627426019 0.5 0.430537257398 +UniRef50_G8V268 Short chain dehydrogenase family protein 1.18520199596 0.5 -0.685201995957 +UniRef50_UPI00003978BA COG0488 0.610827835112 0.5 -0.110827835112 +UniRef50_Q887Q0 Alginate biosynthesis protein Alg44 0.340922456625 0.5 0.159077543375 +UniRef50_G8VAR6 Sugar transport protein 0.0719033499673 0.5 0.428096650032 +UniRef50_Q81IT9 DEAD box ATP dependent RNA helicase CshA 0.335094032242 0.5 0.164905967758 +UniRef50_UPI000288104D ATP dependent DNA helicase 1.60318368553 0.499999999999 -1.10318368553 +UniRef50_G7M9J1 Amidohydrolase 0.0804119216445 0.5 0.419588078355 +UniRef50_V4R6B4 Inosine 5 monophosphate dehydrogenase 1.04557710918 0.5 -0.545577109181 +UniRef50_UPI00036700E1 hypothetical protein 0.035252671229 0.5 0.464747328771 +UniRef50_R5X6Z2 0.120612757374 0.5 0.379387242626 +UniRef50_A3CK29 Acetylxylan esterase, putative 0.0577608520671 0.5 0.442239147933 +UniRef50_W4UBQ1 Vitamin B12 ABC transporter 0.0757701646519 0.5 0.424229835348 +UniRef50_C1KYK6 0.0034858968924 0.5 0.496514103108 +UniRef50_A6TFY7 Putative transport protein KPN78578_40470 1.25725067332 0.5 -0.757250673324 +UniRef50_P29914 NADH quinone oxidoreductase chain 2 0.810944890722 0.5 -0.310944890722 +UniRef50_D6T008 0.214878657515 0.5 0.285121342485 +UniRef50_UPI0002F8DE8C hypothetical protein 0.3490918409 0.5 0.1509081591 +UniRef50_T1XSF4 Glycine betaine transporter 1.85521745972 0.499999999998 -1.35521745972 +UniRef50_V4YQV8 ABC transporter, substrate binding protein, PQQ dependent alcohol dehydrogenase system 0.0708832447263 0.5 0.429116755274 +UniRef50_UPI00035E0900 hypothetical protein 0.54064690028 0.5 -0.0406469002799 +UniRef50_Q2P6N2 Ribonuclease PH 0.0078956194018 0.5 0.492104380598 +UniRef50_Q7CRQ0 Uronate dehydrogenase 0.177465660687 0.5 0.322534339313 +UniRef50_Q5DQH5 0.883801350844 0.5 -0.383801350844 +UniRef50_K0S2B3 0.0778847458518 0.5 0.422115254148 +UniRef50_B9GCH9 Urease 0.0413985618577 0.5 0.458601438143 +UniRef50_UPI00036688D0 hypothetical protein, partial 0.282140447211 0.5 0.217859552789 +UniRef50_UPI0002893A41 S adenosylmethionine synthetase 0.259577417467 0.5 0.240422582533 +UniRef50_W9DWH3 0.799347870701 0.5 -0.299347870701 +UniRef50_M9RBV9 Putative lipoprotein 0.58197280879 0.5 -0.0819728087898 +UniRef50_B2IKB4 Xylose isomerase domain protein TIM barrel 1.68270760274 0.5 -1.18270760274 +UniRef50_Q9HXI2 Protein translocase subunit SecF 0.926017447618 0.5 -0.426017447618 +UniRef50_A6LX99 Carbohydrate binding family V XII 0.114646234118 0.5 0.385353765882 +UniRef50_UPI00036AC2B6 MULTISPECIES 0.00502947667952 0.5 0.494970523321 +UniRef50_C6SPQ0 1.02405837642 0.5 -0.524058376423 +UniRef50_P20901 Citrate synthase 0.288762043728 0.5 0.211237956272 +UniRef50_B6IS79 Tetratricopeptide TPR_2 0.170193785545 0.5 0.329806214455 +UniRef50_B2A466 Chromosome segregation ATPase 0.154112163458 0.5 0.345887836542 +UniRef50_Q9RX51 Malto oligosyltrehalose trehalohydrolase 0.00178394678656 0.5 0.498216053213 +UniRef50_B7HXK9 ThiJ pfpI family protein 0.160907270158 0.5 0.339092729842 +UniRef50_UPI000465E8C1 hypothetical protein 0.0569887616349 0.5 0.443011238365 +UniRef50_UPI00041A9154 hypothetical protein 1.27710739925 0.5 -0.777107399253 +UniRef50_H5WKM1 TRAP type mannitol chloroaromatic compound transport system, large permease component 0.224019167687 0.5 0.275980832313 +UniRef50_T1ZCJ6 Transcriptional regulator 3.83733960302 0.499999999999 -3.33733960302 +UniRef50_UPI0002658616 PREDICTED 0.319079249539 0.5 0.180920750461 +UniRef50_UPI000381514D hypothetical protein 0.0509982369335 0.5 0.449001763066 +UniRef50_G4R209 Bacterial regulatory s, gntR family protein 1.61883697511 0.5 -1.11883697511 +UniRef50_Q2YVV9 Initiation control protein YabA 4.25501873073 0.5 -3.75501873073 +UniRef50_A3P3G4 Monooxygenase, luciferase family 0.129451676525 0.5 0.370548323475 +UniRef50_I3THN6 Binding protein dependent transport systems inner membrane component 1.36430968773 0.5 -0.864309687731 +UniRef50_F0VFF5 NLI interacting factor like phosphatase domain containing protein 0.0369239792883 0.5 0.463076020711 +UniRef50_Q5XDZ5 0.661926059168 0.5 -0.161926059168 +UniRef50_UPI0000379B07 hypothetical protein 0.313238299208 0.5 0.186761700792 +UniRef50_UPI00038112F6 hypothetical protein 0.220832504427 0.5 0.279167495573 +UniRef50_Q38XG4 3 oxoacyl [acyl carrier protein] synthase 3 0.908800828092 0.5 -0.408800828092 +UniRef50_UPI00035F1073 hypothetical protein 0.204525968229 0.5 0.295474031771 +UniRef50_R6HUH5 0.272505522674 0.5 0.227494477326 +UniRef50_P20162 Lipopolysaccharide export system ATP binding protein LptB 0.186729403671 0.5 0.313270596329 +UniRef50_D5V8H6 Phosphomethylpyrimidine kinase 0.167526811831 0.5 0.332473188169 +UniRef50_U4TCC4 Putative ABC transport system, membrane domain protein 1.18864478787 0.5 -0.688644787871 +UniRef50_UPI00028A344D group 1 glycosyl transferase 0.204869188094 0.5 0.295130811906 +UniRef50_F4DQ72 TRAP T family transporter periplasmic binding protein 2.88486268347 0.500000000004 -2.38486268348 +UniRef50_B2FK26 UvrABC system protein C 0.616559611532 0.5 -0.116559611532 +UniRef50_UPI0004672B58 glycolate oxidase iron sulfur subunit 0.121115838368 0.5 0.378884161632 +UniRef50_Q2NFX3 50S ribosomal protein L6 1.37307854797 0.5 -0.873078547967 +UniRef50_Q890U0 Butyrate kinase 0.0648416470578 0.5 0.435158352942 +UniRef50_K0MYD7 PTS system maltose and glucose specific EIICB component 0.395352656909 0.5 0.104647343091 +UniRef50_P0AEL2 Formate dehydrogenase, cytochrome b556 subunit 0.184714227641 0.5 0.315285772359 +UniRef50_P26418 Flagellar motor switch protein FliM 1.31518401901 0.5 -0.815184019013 +UniRef50_E4Q4K1 Transketolase domain containing protein 0.00188129561861 0.5 0.498118704381 +UniRef50_UPI00047AC8D4 hypothetical protein, partial 0.184752145943 0.5 0.315247854057 +UniRef50_P55980 Cytotoxicity associated immunodominant antigen 0.022846085673 0.5 0.477153914327 +UniRef50_D8JGS8 Acyl coenzyme A synthetases AMP acid ligase 0.0195958680307 0.5 0.480404131969 +UniRef50_B9JUC8 50S ribosomal protein L19 0.0141398475238 0.499999999999 0.485860152477 +UniRef50_F9LQU4 GA module 3.69875156197 0.500000000003 -3.19875156198 +UniRef50_H2JJ51 ABC type sugar transport system, periplasmic component 0.200526922693 0.5 0.299473077307 +UniRef50_UPI0004699EDF membrane protein 1.11970248194 0.5 -0.619702481937 +UniRef50_P11864 0.253817569493 0.5 0.246182430507 +UniRef50_P11865 0.434963376634 0.5 0.065036623366 +UniRef50_UPI0004769652 hypothetical protein 0.261857007527 0.5 0.238142992473 +UniRef50_V7D525 Plasmid stablization protein ParB 2.91120628008 0.500000000001 -2.41120628008 +UniRef50_UPI00047B1BFE hypothetical protein 0.00857774159685 0.5 0.491422258403 +UniRef50_E4D4Y2 0.156018491838 0.5 0.343981508162 +UniRef50_Q3JNS9 0.5985311688 0.5 -0.0985311688004 +UniRef50_G7SP01 RNA methyltransferase, TrmH family, group 3 0.573484043292 0.5 -0.0734840432924 +UniRef50_UPI00037014EA hypothetical protein 0.85243061137 0.5 -0.35243061137 +UniRef50_F3BU02 0.329413967607 0.5 0.170586032393 +UniRef50_UPI0003782B50 hypothetical protein 0.0210506765393 0.5 0.478949323461 +UniRef50_T0UR47 Immunoreactive protein Se23.5 2.68424899585 0.499999999999 -2.18424899585 +UniRef50_UPI00036E1232 hypothetical protein 0.0660675758012 0.5 0.433932424199 +UniRef50_P37956 Spore photoproduct lyase 0.0213252752349 0.5 0.478674724765 +UniRef50_UPI0003D02549 hypothetical protein P148_SR1C00001G0193 1.3067316616 0.5 -0.806731661598 +UniRef50_D6SE37 3.04991069675 0.5 -2.54991069675 +UniRef50_W4TLK1 Molybdopterin guanine dinucleotide biosynthesis protein 0.123707503944 0.5 0.376292496055 +UniRef50_UPI0003B75BA6 ribonuclease E 0.464666329914 0.5 0.035333670086 +UniRef50_Q8DWM8 Hypoxanthine guanine phosphoribosyltransferase 1.33406881648 0.5 -0.834068816479 +UniRef50_D3E0E5 Carbohydrate kinase 4.15182605442 0.5 -3.65182605442 +UniRef50_UPI000382ECE5 hypothetical protein 0.257352952194 0.5 0.242647047806 +UniRef50_Q5NLB9 Type III pantothenate kinase 0.763139325213 0.5 -0.263139325213 +UniRef50_H9UPU8 Ornithine decarboxylase 1.0889102374 0.5 -0.588910237401 +UniRef50_UPI000262887B hypothetical protein 0.53332708843 0.5 -0.0333270884301 +UniRef50_UPI0003B5049A glutamyl Q tRNA ligase 0.414058290619 0.5 0.0859417093815 +UniRef50_UPI00035F2B7D MULTISPECIES 0.325234236007 0.5 0.174765763993 +UniRef50_O67611 Acyl carrier protein 0.0296400131044 0.5 0.470359986896 +UniRef50_P65399 Molybdopterin synthase catalytic subunit 1.05248781479 0.5 -0.552487814785 +UniRef50_UPI000349EE05 hypothetical protein 0.321359930784 0.5 0.178640069216 +UniRef50_Q5NGP7 Arabinose 5 phosphate isomerase KdsD 0.0323558551154 0.5 0.467644144885 +UniRef50_W7VXE4 1.95794617585 0.5 -1.45794617585 +UniRef50_W1DPU9 Sulfate permease 2.16171531923 0.499999999998 -1.66171531923 +UniRef50_R7GVB9 0.0117586289725 0.5 0.488241371028 +UniRef50_A6M390 Extracellular solute binding protein, family 1 0.384333028977 0.5 0.115666971023 +UniRef50_UPI0003674FBC hypothetical protein 1.32448546067 0.5 -0.824485460667 +UniRef50_UPI00034FC6C5 PREDICTED 1.206006444 0.5 -0.706006444004 +UniRef50_UPI00047034AE hypothetical protein 0.135960016465 0.5 0.364039983535 +UniRef50_A0A023DK19 0.102634181285 0.5 0.397365818715 +UniRef50_A4VYZ8 0.320058065297 0.5 0.179941934703 +UniRef50_UPI00041B2B5D hypothetical protein 0.360073189436 0.5 0.139926810564 +UniRef50_Q9RZ78 0.00447876582563 0.5 0.495521234175 +UniRef50_D3E3Y1 Carbohydrate kinase PfkB family 0.870152940212 0.5 -0.370152940212 +UniRef50_J0J1A9 3.84770015543 0.5 -3.34770015543 +UniRef50_C3MH15 FAD dependent oxidoreductase 0.800795389152 0.5 -0.300795389152 +UniRef50_UPI00031B7DA5 hypothetical protein 0.919253519728 0.5 -0.419253519728 +UniRef50_Q3IUW1 Signal peptidase I 1.95013132541 0.500000000001 -1.45013132541 +UniRef50_UPI00046FFC4F hypothetical protein 0.648015092745 0.5 -0.148015092745 +UniRef50_A7X169 Endonuclease MutS2 1.70227811985 0.500000000001 -1.20227811985 +UniRef50_UPI000418D073 hypothetical protein 0.276848405218 0.5 0.223151594782 +UniRef50_B9K203 0.00855616261399 0.5 0.491443837386 +UniRef50_UPI00046E6835 ATPase AAA, partial 0.0818600694969 0.5 0.418139930503 +UniRef50_UPI000360D065 hypothetical protein 0.309214573432 0.5 0.190785426568 +UniRef50_P08065 Succinate dehydrogenase flavoprotein subunit 1.61366928504 0.499999999999 -1.11366928504 +UniRef50_UPI00045EC07A C4 dicarboxylate ABC transporter permease 1.28568533953 0.5 -0.785685339532 +UniRef50_UPI0002D91D3B hypothetical protein 0.0526279448989 0.5 0.447372055101 +UniRef50_Q47329 UDP glucose 6 dehydrogenase 1.56508696615 0.5 -1.06508696615 +UniRef50_G7M577 Polysaccharide biosynthesis protein 0.250477553234 0.5 0.249522446766 +UniRef50_UPI0003695A84 hypothetical protein 0.412915060258 0.5 0.0870849397421 +UniRef50_D7G171 0.179908815867 0.5 0.320091184133 +UniRef50_UPI0003796517 hypothetical protein 0.469143829306 0.5 0.0308561706941 +UniRef50_UPI000462BF9A acetyltransferase 0.224657804774 0.5 0.275342195226 +UniRef50_B7UZJ9 Transcriptional regulator MraZ 0.501664644199 0.5 -0.00166464419941 +UniRef50_A3DIH0 Intracellular exo alpha L arabinofuranosidase 0.053480972429 0.5 0.446519027571 +UniRef50_Q28T47 Type III pantothenate kinase 1.04353274718 0.5 -0.543532747183 +UniRef50_UPI0004005113 antibiotic ABC transporter ATP binding protein 0.164785291087 0.5 0.335214708913 +UniRef50_Q2L2H8 30S ribosomal protein S12 0.399740341087 0.5 0.100259658913 +UniRef50_A0A3H4 Glycine betaine transport system permease protein glycine betaine binding protein 0.539257731975 0.5 -0.0392577319751 +UniRef50_D4GNJ8 Cell division protein ZapC 0.824669674683 0.5 -0.324669674683 +UniRef50_I0JEM4 Tn554 related transposase A 2.06660663118 0.5 -1.56660663118 +UniRef50_UPI000471CC86 C4 dicarboxylate ABC transporter substrate binding protein 2.29392700033 0.5 -1.79392700033 +UniRef50_F2JJH8 MATE efflux family protein 0.122945158676 0.5 0.377054841324 +UniRef50_P33696 UTP glucose 1 phosphate uridylyltransferase 0.618359029402 0.5 -0.118359029402 +UniRef50_W0IWY4 Diguanylate cyclase 0.202170119309 0.5 0.297829880691 +UniRef50_Q7MHK1 Glutathione synthetase 0.134759323597 0.5 0.365240676403 +UniRef50_A7ZVR4 1.99274497133 0.5 -1.49274497133 +UniRef50_Q04GC3 Peptide chain release factor 2 1.28764749172 0.5 -0.787647491717 +UniRef50_A5UMV9 SsDNA binding protein 2.75874011239 0.499999999999 -2.25874011239 +UniRef50_UPI00016A34A8 hypothetical protein 0.421600174596 0.5 0.0783998254037 +UniRef50_Q0FMM6 Peptide ABC transporter, permease protein 0.782873769635 0.5 -0.282873769635 +UniRef50_UPI0002DD3A3E hypothetical protein 0.122044825141 0.5 0.377955174859 +UniRef50_Q05755 Glutamate synthase [NADPH] large chain 0.348295239684 0.5 0.151704760316 +UniRef50_V7ZFF9 S methylmethionine permease 0.0970182759124 0.5 0.402981724088 +UniRef50_UPI0003A4ECE6 2,5 diketo D gluconic acid reductase 0.313364457224 0.5 0.186635542776 +UniRef50_UPI0003632431 hypothetical protein, partial 0.917742503777 0.5 -0.417742503777 +UniRef50_X1G8H6 Marine sediment metagenome DNA, contig 0.011779130731 0.5 0.488220869269 +UniRef50_P45861 0.622406484336 0.5 -0.122406484336 +UniRef50_W5X2S2 GCN5 related N acetyltransferase 0.0223133763753 0.500000000001 0.477686623624 +UniRef50_UPI0004730E83 hypothetical protein, partial 0.211557550055 0.5 0.288442449945 +UniRef50_I7DFR8 2.53471754343 0.499999999999 -2.03471754343 +UniRef50_M5PEW3 Peptide deformylase 0.304156413708 0.5 0.195843586292 +UniRef50_A6LXH7 D galactose binding periplasmic protein 0.0890176945885 0.5 0.410982305411 +UniRef50_I6U0D0 Recombination factor protein RarA 5.49215212546 0.5 -4.99215212546 +UniRef50_F2ZJ87 Xanthine dehydrogenase, molybdopterin binding subunit 1.00176921098 0.5 -0.501769210982 +UniRef50_O68827 Chloramphenicol sensitive protein RarD 0.663973850403 0.5 -0.163973850403 +UniRef50_R4MXP6 PPE family protein 0.0725194758852 0.5 0.427480524115 +UniRef50_E3GXP2 Phosphate ABC transporter substrate binding protein, PhoT family 1.95809888186 0.5 -1.45809888186 +UniRef50_A3PPD1 Tripartite ATP independent periplasmic transporter, DctQ component 0.887835191854 0.5 -0.387835191854 +UniRef50_UPI000370C8AB 30S ribosomal protein S17 0.0387080287801 0.5 0.46129197122 +UniRef50_Q180E4 Lon protease 0.126320794497 0.5 0.373679205503 +UniRef50_Q1QSI1 Guanylate kinase 54.8703107634 0.499999999945 -54.3703107634 +UniRef50_D3HPI8 1.10757396271 0.5 -0.607573962712 +UniRef50_A5UM84 Predicted transcriptional regulator 7.3247156743 0.500000000001 -6.8247156743 +UniRef50_W0RMS6 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 0.0195264471412 0.5 0.480473552859 +UniRef50_D3E4F1 Metallo beta lactamase superfamily protein 7.02610155585 0.499999999995 -6.52610155585 +UniRef50_P0AFE9 NADH quinone oxidoreductase subunit M 1.14132190699 0.5 -0.641321906985 +UniRef50_UPI0003790B90 hypothetical protein 0.862631459179 0.5 -0.362631459179 +UniRef50_Q8CYM9 0.00257555050114 0.5 0.497424449499 +UniRef50_L1J8E6 0.303669257981 0.5 0.196330742019 +UniRef50_UPI0004650E5C hypothetical protein 0.0685291892363 0.5 0.431470810764 +UniRef50_E6QIH1 0.0249806524824 0.5 0.475019347517 +UniRef50_UPI00036AFD53 hypothetical protein 0.318089770648 0.5 0.181910229352 +UniRef50_O25294 Cytosol aminopeptidase 0.0187575424149 0.5 0.481242457585 +UniRef50_UPI0003797CF3 hypothetical protein 2.65969781579 0.5 -2.15969781579 +UniRef50_D6ZZR1 0.412027218275 0.5 0.0879727817247 +UniRef50_P52999 Aspartate 1 decarboxylase 12.3190142994 0.500000000009 -11.8190142994 +UniRef50_A3PGF4 7.95174612677 0.500000000002 -7.45174612677 +UniRef50_Q2G4L5 20S proteasome, A and B subunits 3.53400078653 0.5 -3.03400078653 +UniRef50_UPI000347491F hypothetical protein 0.346027888684 0.5 0.153972111316 +UniRef50_UPI000234F3A3 PREDICTED 0.979093527592 0.5 -0.479093527592 +UniRef50_V5E5C8 Cold shock like protein CspD 1.04556501127 0.5 -0.545565011271 +UniRef50_UPI000399E7E2 succinyl CoA 0.333967544785 0.5 0.166032455215 +UniRef50_A6LSY3 Glutamyl tRNA reductase 0.0602661717149 0.5 0.439733828285 +UniRef50_B9KS20 Sulfate transporter 2.4859920564 0.500000000002 -1.98599205641 +UniRef50_UPI00047C589B hypothetical protein 0.314699678453 0.5 0.185300321547 +UniRef50_Q1IVX0 4 hydroxybenzoate polyprenyltransferase, putative 0.0272604368042 0.5 0.472739563196 +UniRef50_Q8N9Z2 Coiled coil domain containing protein 71L 0.198073083958 0.5 0.301926916042 +UniRef50_P0AF49 UPF0047 protein YjbQ 0.0200111250974 0.5 0.479988874903 +UniRef50_UPI00041F306E hypothetical protein 0.559329317401 0.5 -0.0593293174015 +UniRef50_Q1MPW7 Glutamate 1 semialdehyde 2,1 aminomutase 0.340076161251 0.5 0.159923838749 +UniRef50_F4DR22 0.733141136003 0.5 -0.233141136003 +UniRef50_UPI0003002FCB hypothetical protein 6.07170928213 0.499999999993 -5.57170928212 +UniRef50_V9VS67 Peptidase 0.025930424793 0.5 0.474069575207 +UniRef50_A0RC17 Xanthine phosphoribosyltransferase 0.044113223057 0.5 0.455886776943 +UniRef50_A6USH1 UPF0285 protein Mevan_1551 8.0771751629 0.499999999996 -7.57717516289 +UniRef50_S1PBL6 Inner membrane protein yiaV 0.763674617275 0.5 -0.263674617275 +UniRef50_F9NYN9 0.187742880195 0.500000000001 0.312257119805 +UniRef50_A6M320 Putative competence damage inducible protein 0.594655913204 0.5 -0.094655913204 +UniRef50_UPI000474352D glyoxalase I, partial 1.98806383477 0.5 -1.48806383477 +UniRef50_A4WQQ4 Aminotransferase, class V 0.889919169217 0.5 -0.389919169217 +UniRef50_Q24X66 tRNA dimethylallyltransferase 0.768157232522 0.5 -0.268157232522 +UniRef50_R6FXN6 Pseudouridine synthase 0.212991643352 0.5 0.287008356648 +UniRef50_V5LNW1 Putative membrane protein 0.410137677105 0.5 0.0898623228954 +UniRef50_Q604U3 Ribonuclease HII 0.000751687485574 0.5 0.499248312515 +UniRef50_UPI00030E8D28 multidrug ABC transporter ATP binding protein 0.104680782939 0.5 0.39531921706 +UniRef50_V9VWJ0 10.4131409823 0.499999999998 -9.91314098234 +UniRef50_W2UZV9 0.116727002001 0.5 0.383272997999 +UniRef50_UPI000476BCFC hypothetical protein 0.3357481967 0.5 0.1642518033 +UniRef50_Q9ZD73 0.392302825381 0.5 0.107697174619 +UniRef50_Q2NE10 Dihydroxy acid dehydratase 0.879920347748 0.5 -0.379920347748 +UniRef50_Q9HH09 Glutamine synthetase 0.298402290492 0.5 0.201597709508 +UniRef50_UPI00037460EB hypothetical protein 1.34521684181 0.500000000001 -0.845216841813 +UniRef50_L0A7I7 0.0463311018965 0.5 0.453668898104 +UniRef50_K7EH66 0.039833293023 0.5 0.460166706977 +UniRef50_X2MI40 Thiamine ABC transporter permease 2.2910215971 0.500000000001 -1.7910215971 +UniRef50_G0DVY7 Cell division protein FtsQ 0.0132998447501 0.5 0.48670015525 +UniRef50_UPI0003A33C9F peptidase S8 0.00372905040765 0.5 0.496270949592 +UniRef50_UPI0003804693 hypothetical protein 5.70064305828 0.499999999999 -5.20064305828 +UniRef50_UPI0002EF496B hypothetical protein 0.14647701639 0.5 0.35352298361 +UniRef50_A3M585 0.0053135917727 0.5 0.494686408227 +UniRef50_Q9HZ67 P protein 7.7657301899 0.500000000001 -7.2657301899 +UniRef50_A6LWB2 Integral membrane sensor signal transduction histidine kinase 0.417788521148 0.5 0.0822114788516 +UniRef50_UPI0004658FE1 hypothetical protein 0.0402290605969 0.5 0.459770939403 +UniRef50_V9VUH1 Cation 1.13155654369 0.5 -0.631556543692 +UniRef50_E4C1B3 0.00325282055773 0.499999999999 0.496747179443 +UniRef50_UPI000377B5C3 hypothetical protein 0.0838844029061 0.5 0.416115597094 +UniRef50_Q65RK2 Na H(+) antiporter NhaA 1.26951792502 0.5 -0.769517925016 +UniRef50_X6EE61 0.177006725003 0.5 0.322993274997 +UniRef50_F6R4Y2 0.912974950048 0.5 -0.412974950048 +UniRef50_O05118 Pyruvate kinase 2.45810122598 0.500000000002 -1.95810122598 +UniRef50_K0B2D2 0.245292570946 0.5 0.254707429054 +UniRef50_UPI000468F174 hypothetical protein 0.778164637879 0.5 -0.278164637879 +UniRef50_A6GDL9 3.23099374375 0.499999999999 -2.73099374375 +UniRef50_Q1M589 sn glycerol 3 phosphate import ATP binding protein UgpC 3 0.949297882331 0.5 -0.449297882331 +UniRef50_S5YIS8 ABC Fe+3 siderophore transporter, periplasmic substrate binding protein 0.791660372786 0.5 -0.291660372786 +UniRef50_UPI00026263A5 phytoene dehydrogenase 1.0750921694 0.5 -0.575092169396 +UniRef50_Q13RB8 Xylose isomerase 3.42878396853 0.5 -2.92878396853 +UniRef50_A9AB27 Diaminopimelate epimerase 0.173364289234 0.5 0.326635710766 +UniRef50_UPI0003709E94 hypothetical protein, partial 2.4289834852 0.5 -1.9289834852 +UniRef50_A5F642 Uracil phosphoribosyltransferase 0.202749885181 0.5 0.297250114819 +UniRef50_D8JGS2 Exporter 0.00339315253627 0.5 0.496606847464 +UniRef50_E0TPJ9 Histidine kinase 0.0173866422123 0.5 0.482613357788 +UniRef50_A0A038GFN9 FKBP type peptidylprolyl isomerase 0.379946333115 0.5 0.120053666885 +UniRef50_M1GD04 0.35656714565 0.5 0.14343285435 +UniRef50_G8AIH3 0.156659330887 0.5 0.343340669113 +UniRef50_C9LS22 0.4359388874 0.5 0.0640611126003 +UniRef50_UPI0002626B19 4 alpha glucanotransferase 0.0117453847724 0.5 0.488254615228 +UniRef50_Q216Y2 MaoC like dehydratase 0.409194094401 0.5 0.0908059055992 +UniRef50_A3PHP1 Abortive infection protein 2.1271464021 0.499999999998 -1.62714640209 +UniRef50_UPI0003D0BA23 PREDICTED 0.366845030177 0.5 0.133154969823 +UniRef50_F4FLP5 O antigen polymerase 1.21622453476 0.5 -0.716224534763 +UniRef50_A6LZN7 0.0558943478887 0.5 0.444105652111 +UniRef50_C0ZPK5 ATP dependent zinc metalloprotease FtsH 0.12890188118 0.5 0.37109811882 +UniRef50_B1W3Y6 Adenylate kinase 0.103272847327 0.5 0.396727152673 +UniRef50_Q8RE31 Adenylate kinase 0.167610966402 0.5 0.332389033597 +UniRef50_V8LZ20 Ammonia permease 14.2053469224 0.500000000001 -13.7053469224 +UniRef50_F7ZMV0 ABC transporter ATP binding protein 0.205630208906 0.5 0.294369791094 +UniRef50_Q9LHH7 Bifunctional protein FolD 2 76.989025693 0.500000000015 -76.489025693 +UniRef50_N8YXS0 0.0523777624596 0.5 0.44762223754 +UniRef50_M1MEC2 Extracellular solute binding protein, family 1 0.304968174923 0.5 0.195031825077 +UniRef50_U2PH02 0.133886451955 0.5 0.366113548045 +UniRef50_X2HH54 A G specific adenine glycosylase 0.0318917083933 0.5 0.468108291607 +UniRef50_Q8DXK8 Prophage LambdaSa2, PblB, putative 0.394682627184 0.5 0.105317372816 +UniRef50_Q3AWX1 Probable malate 0.314935136559 0.5 0.185064863441 +UniRef50_D5VFT5 Acetolactate synthase, large subunit, biosynthetic type 2.4924992161 0.499999999998 -1.9924992161 +UniRef50_P37003 0.612651538629 0.5 -0.112651538629 +UniRef50_UPI00036B4081 hypothetical protein 0.234253899371 0.5 0.265746100629 +UniRef50_C1DHH3 0.0849217120107 0.5 0.415078287989 +UniRef50_Q2Y752 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.0184476003807 0.5 0.481552399619 +UniRef50_P37007 1.09576811514 0.5 -0.595768115144 +UniRef50_L7WW34 Multidrug resistance protein 1.09584000286 0.5 -0.595840002858 +UniRef50_Q02UC6 Anaerobically induced outer membrane porin OprE 4.17003404908 0.5 -3.67003404908 +UniRef50_A1ADX2 GDP mannose pyrophosphatase NudK 0.891843776948 0.5 -0.391843776948 +UniRef50_N5A969 0.404456426913 0.5 0.0955435730868 +UniRef50_D6ENY0 AMP binding domain containing protein 0.589885291294 0.5 -0.0898852912937 +UniRef50_UPI0004673990 histidinol dehydrogenase 0.516376984627 0.5 -0.0163769846266 +UniRef50_K1ZZL6 0.446623320721 0.5 0.053376679279 +UniRef50_C6SPL1 2.39041955282 0.5 -1.89041955282 +UniRef50_C6SPL2 2.72990157654 0.5 -2.22990157654 +UniRef50_UPI00038FE8C9 Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp 2.366800958 0.499999999998 -1.86680095799 +UniRef50_X5Y9C9 ABC transporter substrate binding protein 0.110609262256 0.5 0.389390737745 +UniRef50_B5SHZ2 Segregation and condensation protein a 0.0657686079065 0.5 0.434231392094 +UniRef50_UPI0004029835 hypothetical protein 0.32459939435 0.5 0.17540060565 +UniRef50_C5BKL9 Chromosomal replication initiator protein DnaA 1.3956203748 0.5 -0.895620374798 +UniRef50_U5MW71 Cardiolipin synthase Cls 0.35828699316 0.5 0.14171300684 +UniRef50_J8G6B9 TQXA domain containing protein 0.39867273607 0.5 0.10132726393 +UniRef50_UPI00036DF70A hypothetical protein 0.252686211833 0.5 0.247313788167 +UniRef50_D3QCJ5 ATP dependent RNA helicase YqfR 1.36876621209 0.5 -0.868766212093 +UniRef50_B2SXV7 Lysine tRNA ligase 0.0298004250819 0.5 0.470199574918 +UniRef50_G8PVZ6 D,D dipeptide transport system permease protein DdpC 5.09527505223 0.5 -4.59527505223 +UniRef50_X1UWS6 Marine sediment metagenome DNA, contig 0.387322165284 0.5 0.112677834716 +UniRef50_A6LVP9 Phage replisome organizer, putative 0.124502806468 0.5 0.375497193532 +UniRef50_UPI00041E91C7 threonine dehydratase 0.314731370112 0.5 0.185268629888 +UniRef50_Q0BUK0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.439402823704 0.5 0.060597176296 +UniRef50_P95786 ATP synthase subunit delta 2.05860221989 0.5 -1.55860221989 +UniRef50_H5NJS4 FabA like domain protein 0.143786452362 0.5 0.356213547638 +UniRef50_UPI0003ADCC45 PREDICTED 1.63107556778 0.5 -1.13107556778 +UniRef50_Q2FD99 Multidrug efflux transport protein 0.0146293106858 0.5 0.485370689314 +UniRef50_M9VIC2 L xylulose 5 phosphate 3 epimerase 0.0285154971426 0.5 0.471484502858 +UniRef50_P39374 6.75315159284 0.499999999998 -6.25315159283 +UniRef50_A8LAX8 0.192525909086 0.5 0.307474090914 +UniRef50_V6DLJ7 Putative phage protein 1.32328553086 0.5 -0.823285530862 +UniRef50_UPI000440D7F2 PREDICTED 0.699061709974 0.5 -0.199061709974 +UniRef50_B7VHY7 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.74515488277 0.499999999998 -1.24515488277 +UniRef50_D1GN04 Phage protein 3.47885113469 0.499999999999 -2.97885113469 +UniRef50_A4WV88 2 keto 3 deoxygluconate kinase 0.984184531424 0.5 -0.484184531424 +UniRef50_F0JTZ1 DNA binding transcriptional activator, co regulator with RcsB 0.321729269176 0.5 0.178270730824 +UniRef50_UPI000395D3CA PREDICTED 0.0193663210679 0.5 0.480633678932 +UniRef50_A3NI78 4.8034458506 0.499999999999 -4.3034458506 +UniRef50_K7SGE5 Glycosyltransferase, group 1 family protein 0.0865433416572 0.5 0.413456658343 +UniRef50_C5BM46 TRAP transporter, DctQ family protein 9.14314740757 0.499999999986 -8.64314740756 +UniRef50_Q9RYQ8 Acyl CoA dehydrogenase, putative 0.0064286130484 0.5 0.493571386952 +UniRef50_P0AF25 Ribonucleotide monophosphatase NagD 1.19001786189 0.5 -0.690017861885 +UniRef50_Q5LTY4 ArsC family protein 0.64440264432 0.5 -0.14440264432 +UniRef50_UPI0004649E38 hypothetical protein 0.292401717832 0.5 0.207598282168 +UniRef50_M9R9I6 RNA polymerase sigma 32 factor 2 0.783626008622 0.5 -0.283626008622 +UniRef50_UPI00029AA773 3 deoxy D manno octulosonic acid 8 phosphate synthase 0.751245047643 0.5 -0.251245047643 +UniRef50_C2ZFP3 Acetyl CoA acetyltransferase 0.00313711691564 0.5 0.496862883084 +UniRef50_D6SDB9 Toxin, beta grasp domain protein 4.12412080101 0.5 -3.62412080101 +UniRef50_W8EU13 Dihydrolipoyl dehydrogenase 1.43955094406 0.5 -0.939550944059 +UniRef50_A3N6S5 Transcriptional regulator, LysR family 0.312112176308 0.5 0.187887823692 +UniRef50_UPI0003B6C781 amidohydrolase 1.09776373509 0.5 -0.597763735086 +UniRef50_UPI0003AF0828 PREDICTED 0.0211615439684 0.5 0.478838456032 +UniRef50_UPI0004756B1C 6 phospho beta glucosidase 0.227177235589 0.5 0.272822764411 +UniRef50_A0A018Y1M8 Glycogen branching enzyme 4.30787967131 0.499999999999 -3.8078796713 +UniRef50_W7VQX9 Spermidine putrescine binding periplasmic protein 1.26209448301 0.5 -0.762094483013 +UniRef50_I6TQG8 Signal peptidase I 3.23165389936 0.499999999999 -2.73165389936 +UniRef50_G7TCM8 ParB family protein 2.23338157544 0.499999999998 -1.73338157544 +UniRef50_Q48768 Chemotaxis protein CheA 0.0108778160066 0.5 0.489122183993 +UniRef50_UPI0003B44FBC N acetyl anhydromuranmyl L alanine amidase, partial 0.204561030715 0.5 0.295438969285 +UniRef50_UPI000262A813 sulfate ABC transporter permease 0.274402233404 0.5 0.225597766596 +UniRef50_A6VCD4 0.500685460629 0.5 -0.000685460629339 +UniRef50_G8V3H8 FecCD transport family protein 0.972649768468 0.5 -0.472649768468 +UniRef50_UPI0003A147C5 glutamate dehydrogenase 0.174270738383 0.5 0.325729261618 +UniRef50_H8H2N8 DNA polymerase III, beta subunit 0.00677592171855 0.5 0.493224078282 +UniRef50_K5YNY1 2.93018046852 0.5 -2.43018046852 +UniRef50_UPI000255C1EB DNA 3 methyladenine glycosylase I 0.176709401164 0.5 0.323290598836 +UniRef50_A7EM78 ATP dependent RNA helicase dbp9 0.423383419043 0.5 0.0766165809571 +UniRef50_F3CRF8 0.234818394997 0.5 0.265181605003 +UniRef50_A6LUT7 Zn dependent hydrolase of the beta lactamase fold like protein 0.0548947086455 0.500000000001 0.445105291354 +UniRef50_D3QFY2 1.28971763108 0.5 -0.78971763108 +UniRef50_B2RIE4 Ribosomal RNA small subunit methyltransferase H 0.000597038120079 0.5 0.49940296188 +UniRef50_Q5HN64 1.87044408465 0.5 -1.37044408465 +UniRef50_F7Y3N0 Secretion protein HlyD family protein 3.40800705059 0.5 -2.90800705059 +UniRef50_Q2FDM8 HTH type transcriptional regulator ArcR 0.865472581852 0.5 -0.365472581852 +UniRef50_D8JH13 0.0218152907304 0.5 0.47818470927 +UniRef50_F8UHZ1 Sulfide 2.81225268353 0.5 -2.31225268353 +UniRef50_UPI0002D3C80C hypothetical protein 0.0720741191494 0.5 0.42792588085 +UniRef50_UPI0003B545B7 UDP N acetylglucosamine 2 epimerase 0.104957212187 0.5 0.395042787813 +UniRef50_A4VWB1 Predicted membrane protein 0.741069391205 0.5 -0.241069391205 +UniRef50_UPI0002B4270F PREDICTED 1.71900742614 0.499999999998 -1.21900742614 +UniRef50_Q97G69 Glycerol 3 phosphate acyltransferase 0.137002036607 0.5 0.362997963393 +UniRef50_UPI00037918AC hypothetical protein 0.327085236579 0.5 0.172914763421 +UniRef50_A0A024KDL9 0.936524085558 0.5 -0.436524085558 +UniRef50_UPI000470E44E hypothetical protein 1.51019664421 0.499999999999 -1.01019664421 +UniRef50_M1P9T3 1.49946292905 0.499999999999 -0.999462929051 +UniRef50_UPI000418EAD6 hypothetical protein 0.787236492197 0.5 -0.287236492197 +UniRef50_I6SU88 Penicillin binding protein 2B 1.13881568842 0.5 -0.638815688424 +UniRef50_I6T801 Endoglucanase 3.3994663717 0.500000000001 -2.8994663717 +UniRef50_F9YWL2 Transport system permease protein 0.00813458782268 0.5 0.491865412177 +UniRef50_U6LU16 0.0493851184533 0.5 0.450614881547 +UniRef50_UPI00047E902E Fe3+ siderophore ABC transporter permease 0.0998268113475 0.5 0.400173188653 +UniRef50_F6ZM80 4.15633472881 0.5 -3.65633472881 +UniRef50_W2CJ91 0.0822421833199 0.5 0.417757816681 +UniRef50_I3TNK1 GNAT family acetyltransferase TIGR03103 0.149998958868 0.5 0.350001041132 +UniRef50_F2AE33 1.08936199292 0.5 -0.589361992916 +UniRef50_Q9CIV8 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK 0.124125021639 0.5 0.375874978362 +UniRef50_UPI0004138F31 Fur family transcriptional regulator 0.210349687406 0.5 0.289650312594 +UniRef50_O31714 1 phosphofructokinase 0.00355627885382 0.5 0.496443721146 +UniRef50_C1F5G2 GAF domain GGDEF domain protein 0.0588204286512 0.5 0.441179571349 +UniRef50_UPI000440DE53 PREDICTED 0.708361336533 0.5 -0.208361336533 +UniRef50_M4UDQ5 Quinone oxidoreductase 0.924741312931 0.5 -0.424741312931 +UniRef50_R1F8B2 0.740580616653 0.5 -0.240580616653 +UniRef50_U4JVB3 0.413320643196 0.5 0.0866793568042 +UniRef50_P77463 Probable D,D dipeptide transport system permease protein DdpC 2.87520029068 0.500000000001 -2.37520029069 +UniRef50_UPI00023773E6 hemolysin type calcium binding domain containing protein, partial 0.182193344984 0.5 0.317806655016 +UniRef50_UPI000309FDCA hypothetical protein 0.0480748394825 0.5 0.451925160517 +UniRef50_U5NMM5 0.228415977912 0.5 0.271584022088 +UniRef50_P45600 HTH type transcriptional regulator CysB 1.4247926607 0.499999999999 -0.924792660696 +UniRef50_P36566 Protein SmtA 0.137054420009 0.5 0.362945579991 +UniRef50_UPI0001FFE514 pyruvate phosphate dikinase PEP pyruvate binding protein, partial 0.0145173627057 0.5 0.485482637295 +UniRef50_UPI0004634978 hypothetical protein, partial 0.117666755019 0.499999999999 0.382333244982 +UniRef50_UPI00036938AE hypothetical protein 1.74621330077 0.5 -1.24621330077 +UniRef50_E2NTP5 2.11337921236 0.499999999999 -1.61337921236 +UniRef50_UPI000380D55B hypothetical protein 0.118091844495 0.5 0.381908155505 +UniRef50_U5FQ27 0.763195503852 0.5 -0.263195503852 +UniRef50_K0K215 Luciferase like monooxygenase 0.00336572658022 0.5 0.49663427342 +UniRef50_UPI000421309B siroheme synthase 5.33011584451 0.5 -4.83011584451 +UniRef50_E9AEM7 Putative proteophosphoglycan ppg3 0.0579961418933 0.5 0.442003858107 +UniRef50_M2PFD7 0.0890636315994 0.5 0.4109363684 +UniRef50_Q9RTU0 Potassium uptake protein KtrA 0.00452471943808 0.5 0.495475280562 +UniRef50_Q9RUF3 Methionine tRNA ligase 4.59921508962e-05 0.5 0.499954007849 +UniRef50_V4MMB9 0.559767935826 0.5 -0.0597679358257 +UniRef50_Q73RR6 Formate tetrahydrofolate ligase 0.00417186506161 0.5 0.495828134938 +UniRef50_P12995 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 0.326309120123 0.5 0.173690879877 +UniRef50_UPI00026CCAA9 ferripyochelin binding protein 0.501500847743 0.5 -0.00150084774267 +UniRef50_A6LST0 Regulatory protein, LacI 0.268411438653 0.5 0.231588561347 +UniRef50_A1U1T6 Peptidase S49 0.413966754303 0.5 0.0860332456966 +UniRef50_UPI0003B4CA49 ribonuclease J 0.448113609302 0.5 0.0518863906977 +UniRef50_D9WJL5 0.702401795351 0.5 -0.202401795351 +UniRef50_P37675 2,3 diketo L gulonate TRAP transporter large permease protein YiaN 3.35781434467 0.500000000001 -2.85781434467 +UniRef50_UPI000262CC40 23S rRNA pseudouridine synthase D 0.897204406418 0.5 -0.397204406418 +UniRef50_C1PH90 Pyridoxal dependent decarboxylase 1.20371583856 0.5 -0.703715838559 +UniRef50_UPI000399117C PREDICTED 0.17278707489 0.5 0.32721292511 +UniRef50_G8VJM5 0.0489148479535 0.5 0.451085152046 +UniRef50_UPI0003B5627F RNA polymerase subunit sigma 24 1.34214591458 0.5 -0.84214591458 +UniRef50_D6ZGK4 0.112522386509 0.5 0.387477613491 +UniRef50_E2Q4D8 IolC protein 0.00959245573791 0.5 0.490407544262 +UniRef50_Q5HRK7 30S ribosomal protein S12 1.39852269509 0.5 -0.89852269509 +UniRef50_B2JLW6 ABC transporter related 0.285166214731 0.5 0.214833785269 +UniRef50_D2J9T7 0.707362673534 0.5 -0.207362673534 +UniRef50_V9C4R9 PF12266 family protein 1.54607624104 0.5 -1.04607624104 +UniRef50_Q8Y1I2 3 octaprenyl 4 hydroxybenzoate carboxy lyase 1.91636205735 0.5 -1.41636205735 +UniRef50_M6A924 Winged helix turn helix 0.00578571687125 0.5 0.494214283129 +UniRef50_A4WZ94 0.848271672387 0.5 -0.348271672387 +UniRef50_X0ZU83 Marine sediment metagenome DNA, contig 0.423571948564 0.5 0.0764280514358 +UniRef50_M2QQT8 0.521183884536 0.5 -0.0211838845357 +UniRef50_UPI00037EEFBB hypothetical protein 0.117313665132 0.5 0.382686334868 +UniRef50_Q49Z00 Redox sensing transcriptional repressor Rex 4.37285560021 0.5 -3.87285560021 +UniRef50_T1YC99 8 amino 7 oxononanoate synthase 1.33675226993 0.5 -0.836752269933 +UniRef50_UPI0004633377 hypothetical protein 0.368933155069 0.5 0.131066844931 +UniRef50_L7WXU0 2.13675306199 0.5 -1.63675306199 +UniRef50_UPI000348E813 beta lactamase 0.264770164573 0.5 0.235229835427 +UniRef50_Q1IY10 DNA internalization related competence protein ComEC Rec2 0.00260533437091 0.5 0.497394665629 +UniRef50_UPI0003683EEF acetolactate synthase 0.0858070477145 0.5 0.414192952285 +UniRef50_X5FIX0 Two component response regulator and GGDEF family protein YeaJ 0.313686328056 0.5 0.186313671944 +UniRef50_P21829 Pyridoxal phosphate phosphatase YbhA 0.634499993703 0.5 -0.134499993703 +UniRef50_Q8NZK5 Immunogenic secreted protein homologue 0.859132384689 0.5 -0.359132384689 +UniRef50_H3WHC1 Cadmium resistance transporter family protein 0.26509334048 0.5 0.23490665952 +UniRef50_H8GRT7 0.0416647145951 0.5 0.458335285405 +UniRef50_UPI00047B354D hypothetical protein 0.382728521987 0.5 0.117271478013 +UniRef50_B0F658 Major ampullate spidroin 1 locus 3 0.0288784070737 0.5 0.471121592926 +UniRef50_P95781 8 oxo dGTP diphosphatase 0.74489242667 0.5 -0.24489242667 +UniRef50_T1Z4R2 2.92240617226 0.499999999999 -2.42240617226 +UniRef50_UPI00046A4AB7 catalase 0.300584442267 0.5 0.199415557733 +UniRef50_W7WTG1 CHAT domain protein 0.494876965199 0.5 0.00512303480055 +UniRef50_X5F552 0.187236353341 0.5 0.312763646659 +UniRef50_UPI0002BC4B55 transposase 0.152997913935 0.5 0.347002086065 +UniRef50_D4HCU3 Pyruvate kinase 0.051541121206 0.5 0.448458878794 +UniRef50_UPI000363409C hypothetical protein 4.87953618297 0.5 -4.37953618297 +UniRef50_Q7CWA6 1.12726057907 0.5 -0.62726057907 +UniRef50_Q0VQR4 Na translocating NADH quinone reductase subunit E 2.5230870727 0.5 -2.0230870727 +UniRef50_UPI00037A1823 CobW 1.01535552058 0.5 -0.515355520576 +UniRef50_UPI0003900E45 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.683378654782 0.5 -0.183378654782 +UniRef50_P0DC16 Tagatose 1,6 diphosphate aldolase 2 0.391601448388 0.5 0.108398551612 +UniRef50_C1CUZ2 0.000966873917092 0.5 0.499033126083 +UniRef50_E3EIE7 Phospholipase carboxylesterase family protein 0.24142539537 0.5 0.25857460463 +UniRef50_E4FBI4 1.05748412629 0.5 -0.557484126295 +UniRef50_A8LTL4 Resolvase domain protein 5.53242058379 0.5 -5.03242058379 +UniRef50_Q9KT93 Probable lactoylglutathione lyase 1.72434141361 0.5 -1.22434141361 +UniRef50_UPI000169A652 dihydroxy acid dehydratase, partial 0.128071244366 0.5 0.371928755634 +UniRef50_N9ZY49 0.754570242574 0.5 -0.254570242574 +UniRef50_U5UT50 0.627174435885 0.5 -0.127174435885 +UniRef50_B9EAQ4 Oligopeptide ABC transporter ATP binding protein OppF 1.82129880044 0.5 -1.32129880044 +UniRef50_UPI000467AEF3 diaminopimelate decarboxylase 0.0393286943747 0.5 0.460671305625 +UniRef50_UPI00046E57F5 uroporphyrinogen decarboxylase 0.273916797162 0.5 0.226083202838 +UniRef50_UPI00046D5352 hypothetical protein 0.210613273954 0.5 0.289386726046 +UniRef50_UPI000300EAB7 hypothetical protein 2.56844821226 0.500000000001 -2.06844821226 +UniRef50_UPI0004677218 acyl CoA transferase 0.116949062126 0.5 0.383050937874 +UniRef50_B9KLX6 Chromosomal replication initiator, DnaA 3.00147940392 0.500000000001 -2.50147940392 +UniRef50_UPI00036F41B6 hypothetical protein 0.349202769851 0.5 0.150797230149 +UniRef50_Q5RBK6 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial 0.327134479975 0.5 0.172865520025 +UniRef50_UPI00047DDDC5 hypothetical protein 0.36726731252 0.5 0.13273268748 +UniRef50_UPI00036A8D72 hypothetical protein 0.179619664675 0.5 0.320380335325 +UniRef50_UPI0001BF7AAC hypothetical protein SMAC_09920 0.0938715257173 0.5 0.406128474283 +UniRef50_UPI0002739F39 6.47779438138 0.5 -5.97779438138 +UniRef50_UPI0003618544 MULTISPECIES 0.438420510073 0.5 0.0615794899265 +UniRef50_E2Q1H6 0.163823210525 0.5 0.336176789475 +UniRef50_UPI000369F333 hypothetical protein 0.871496286637 0.5 -0.371496286637 +UniRef50_I6RSR0 0.623710624941 0.5 -0.123710624941 +UniRef50_W0H1T2 0.85836129579 0.5 -0.35836129579 +UniRef50_Q869Y7 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex, mitochondrial 0.218304165745 0.5 0.281695834255 +UniRef50_Q0G2X9 0.415775998841 0.5 0.084224001159 +UniRef50_R5R9L6 2.14107227818 0.5 -1.64107227818 +UniRef50_T1AQZ2 Phosphoribosylformylglycinamidine synthase 0.322448519449 0.5 0.177551480551 +UniRef50_Q12F86 Peptide chain release factor 1 3.04466360884 0.5 -2.54466360884 +UniRef50_Q2LTR7 Proline tRNA ligase 1.10620568694 0.5 -0.606205686939 +UniRef50_UPI00036F3D8D hypothetical protein 0.187616963528 0.5 0.312383036472 +UniRef50_A4WRU9 PRC barrel domain protein 2.71982516607 0.499999999998 -2.21982516607 +UniRef50_X6J7G6 18.8536491753 0.500000000003 -18.3536491753 +UniRef50_V4QYY0 Transcriptional regulator 2.26743374872 0.499999999999 -1.76743374872 +UniRef50_UPI00046B4F5A PREDICTED 0.0404672319186 0.500000000001 0.459532768081 +UniRef50_B6JKF2 Cysteine desulfurase IscS 0.000571445232808 0.5 0.499428554767 +UniRef50_K9SJV6 Amino acid amide ABC transporter substrate binding protein, HAAT family 0.00485906722971 0.5 0.495140932771 +UniRef50_UPI0002E4DF67 hypothetical protein 0.0147296040067 0.5 0.485270395993 +UniRef50_P07264 3 isopropylmalate dehydratase 5.6506907014 0.5 -5.1506907014 +UniRef50_K8BVY4 0.390436838549 0.5 0.109563161451 +UniRef50_UPI0003749F74 hypothetical protein 0.117605810421 0.5 0.382394189578 +UniRef50_Q9CIW0 DhaKLM operon coactivator DhaQ 1.62711266194 0.499999999998 -1.12711266194 +UniRef50_X1DTV9 Marine sediment metagenome DNA, contig 0.271165850156 0.5 0.228834149844 +UniRef50_E3GXL3 Prephenate dehydratase 2.96107803984 0.499999999997 -2.46107803984 +UniRef50_Q21VJ3 Short chain dehydrogenase reductase SDR 0.00996018129847 0.5 0.490039818702 +UniRef50_UPI0003638CE1 hypothetical protein 0.201148184916 0.5 0.298851815084 +UniRef50_Q5HF24 D alanine aminotransferase 1.47540566507 0.5 -0.975405665072 +UniRef50_Q60EN0 0.553505264108 0.5 -0.0535052641082 +UniRef50_B7IV23 0.0030909624676 0.5 0.496909037532 +UniRef50_A8LT36 Na+ Ca+ antiporter 2.72852383389 0.499999999996 -2.22852383389 +UniRef50_G8VDH4 0.186972476338 0.5 0.313027523662 +UniRef50_H0TRF6 PilL 0.630745955683 0.5 -0.130745955683 +UniRef50_UPI0004688D7A 6,7 dimethyl 8 ribityllumazine synthase 0.187103863531 0.5 0.31289613647 +UniRef50_K0HEK8 Mur ligase middle domain protein 0.00704491174973 0.5 0.49295508825 +UniRef50_UPI0003B5D77D LytR family transcriptional regulator 0.146726216778 0.5 0.353273783222 +UniRef50_M1PJW1 0.187039555387 0.5 0.312960444613 +UniRef50_A3CRC4 0.927557650316 0.5 -0.427557650316 +UniRef50_P46907 Nitrite extrusion protein 1.55040780566 0.500000000001 -1.05040780566 +UniRef50_A3PPT8 2.69485934787 0.500000000001 -2.19485934787 +UniRef50_D6BB72 Predicted protein 1.31524975173 0.5 -0.815249751732 +UniRef50_D3QG17 Transporter, LysE family 1.33471951049 0.5 -0.834719510487 +UniRef50_A1SET2 Cyclic pyranopterin monophosphate synthase accessory protein 0.00503049808534 0.5 0.494969501914 +UniRef50_UPI0003726D73 hypothetical protein, partial 0.0584337003177 0.5 0.441566299682 +UniRef50_W1YK15 0.644529818416 0.5 -0.144529818416 +UniRef50_Q89LQ8 Bifunctional enzyme IspD IspF 0.177211978889 0.5 0.322788021112 +UniRef50_H1LUK9 0.114432231736 0.5 0.385567768264 +UniRef50_U8YLF7 0.195660609533 0.5 0.304339390467 +UniRef50_A0A052HNM0 Cyclic diguanylate phosphodiesterase domain protein 0.146096970963 0.499999999999 0.353903029037 +UniRef50_A3CQQ7 Tributyrin esterase, putative 1.2089449893 0.5 -0.708944989303 +UniRef50_A7H9V5 NADH quinone oxidoreductase subunit D 2 0.102098126988 0.5 0.397901873012 +UniRef50_A8YY53 0.309139862987 0.5 0.190860137013 +UniRef50_Q5LY94 Phospho N acetylmuramoyl pentapeptide transferase 0.524154050658 0.5 -0.0241540506578 +UniRef50_C6M7I4 0.06737391963 0.5 0.43262608037 +UniRef50_B1ZVE5 Cobyrinic acid ac diamide synthase 0.0990454804129 0.5 0.400954519587 +UniRef50_S5RYV7 Lysine decarboxylase family protein 3.8509905476 0.499999999999 -3.35099054759 +UniRef50_A0A019IPH8 2.49105596482 0.500000000001 -1.99105596482 +UniRef50_P0AGJ0 Trk system potassium uptake protein TrkA 0.987648735622 0.5 -0.487648735622 +UniRef50_Q59447 Cysteine synthase 0.363772515779 0.5 0.136227484221 +UniRef50_Q9RZE8 Chromosome partitioning ATPase, putative, ParA family 0.00145278959358 0.5 0.498547210406 +UniRef50_UPI00046E5735 phenylacetic acid degradation protein 0.107707834692 0.5 0.392292165308 +UniRef50_B9KR74 Binding protein dependent transport systems inner membrane component 4.68150415518 0.5 -4.18150415518 +UniRef50_E8U679 S layer like protein array related protein 0.00472648184828 0.5 0.495273518152 +UniRef50_N9JGK4 0.0190421083281 0.5 0.480957891672 +UniRef50_Q79VD7 Cytochrome c oxidase subunit 1 0.0166549860612 0.5 0.483345013939 +UniRef50_A4W453 30S ribosomal protein S2 0.228192252699 0.5 0.271807747301 +UniRef50_T7IR01 Diguanylate cyclase 1.6541162065 0.5 -1.1541162065 +UniRef50_K9H0D1 0.830018585024 0.5 -0.330018585024 +UniRef50_Q3IVU8 FMN dependent NADH azoreductase 0.620667997912 0.5 -0.120667997912 +UniRef50_R9YLC4 Cell cycle family protein 1.28856627374 0.5 -0.788566273741 +UniRef50_Q67R59 Formamidopyrimidine DNA glycosylase 0.0856812457193 0.5 0.41431875428 +UniRef50_UPI000469D26A hypothetical protein 0.612377180204 0.5 -0.112377180204 +UniRef50_E2BEN1 Methionine R sulfoxide reductase B1 0.179201575886 0.5 0.320798424114 +UniRef50_F8IF10 ABC transporter related protein 0.128890576176 0.500000000001 0.371109423823 +UniRef50_A3M7V6 0.090810623689 0.5 0.409189376311 +UniRef50_UPI00036F34F3 hypothetical protein 0.156327842234 0.5 0.343672157766 +UniRef50_Q5HM36 Galactose 6 phosphate isomerase subunit LacB 0.786514846567 0.5 -0.286514846567 +UniRef50_UPI00046CF7C8 MerR family transcriptional regulator 0.653568596163 0.5 -0.153568596163 +UniRef50_UPI000364CB09 hypothetical protein 0.0393816133555 0.5 0.460618386645 +UniRef50_A5UMW1 Predicted permease 1.51653733483 0.500000000001 -1.01653733483 +UniRef50_R0FCU4 1.32806090842 0.5 -0.828060908415 +UniRef50_UPI0003B46CBA O acetylhomoserine aminocarboxypropyltransferase 0.41039037361 0.5 0.0896096263903 +UniRef50_Q9XAD5 Probable cysteine desulfurase 0.0283640468531 0.5 0.471635953147 +UniRef50_X1HX76 Marine sediment metagenome DNA, contig 0.131334322985 0.5 0.368665677015 +UniRef50_R4K347 Nitroreductase 0.057431019174 0.5 0.442568980826 +UniRef50_F7ZKI4 HTH type transcriptional regulator, AsnC family 0.605679923327 0.5 -0.105679923327 +UniRef50_A3PJ29 Cytochrome c, class I 2.08404875374 0.5 -1.58404875374 +UniRef50_G8VLH6 Alanine racemase 0.0424877712723 0.5 0.457512228728 +UniRef50_D1BS48 1.84756358471 0.5 -1.34756358471 +UniRef50_Q6A850 Exodeoxyribonuclease V beta chain 0.00661762283806 0.5 0.493382377162 +UniRef50_U3SQQ0 0.604031279131 0.5 -0.104031279131 +UniRef50_U3T1Y1 Potassium uptake protein, TrkA 0.0461098830912 0.5 0.453890116909 +UniRef50_D9VIN2 Predicted protein 0.0949313670199 0.5 0.40506863298 +UniRef50_UPI000471886D hypothetical protein, partial 0.795514436656 0.5 -0.295514436656 +UniRef50_UPI0003A01DE6 hypothetical protein 0.0764719022501 0.5 0.42352809775 +UniRef50_Q2KXD7 Amino acid ABC transporter, permease protein 2.07275116205 0.499999999999 -1.57275116205 +UniRef50_P52111 Glycerol 3 phosphate dehydrogenase 1.67222346226 0.5 -1.17222346226 +UniRef50_E4PYB8 Replication initiator protein 2.67424760379 0.5 -2.17424760379 +UniRef50_A6QDH4 2.61722479688 0.5 -2.11722479688 +UniRef50_Q2FI15 Bifunctional protein FolD 1.42292705215 0.5 -0.922927052146 +UniRef50_UPI00036940F2 hypothetical protein 0.273333048245 0.5 0.226666951755 +UniRef50_UPI00036C7AFF hypothetical protein 0.425885213007 0.5 0.0741147869929 +UniRef50_Q46845 Disulfide bond oxidoreductase YghU 0.762030062534 0.5 -0.262030062534 +UniRef50_N6S0H8 19.7228412978 0.499999999979 -19.2228412978 +UniRef50_Q6VY64 0.0283814601758 0.5 0.471618539824 +UniRef50_A9VQ13 0.00897072116077 0.500000000001 0.491029278838 +UniRef50_S0ACB3 0.249677248848 0.5 0.250322751152 +UniRef50_Q9HLK8 Inosine 5 monophosphate dehydrogenase 0.146305939709 0.5 0.353694060291 +UniRef50_B1IL95 7 cyano 7 deazaguanine synthase 0.3951658946 0.5 0.1048341054 +UniRef50_Q92G97 NADH quinone oxidoreductase subunit L 1.61314048322 0.499999999999 -1.11314048322 +UniRef50_R7PVP7 1.73569374737 0.499999999999 -1.23569374737 +UniRef50_Q9RU90 0.0170367094137 0.5 0.482963290586 +UniRef50_A8AL09 CDP diacylglycerol pyrophosphatase 0.0181924144198 0.5 0.48180758558 +UniRef50_A2S4H0 ATPase, AAA family protein 1.20583516749 0.5 -0.705835167487 +UniRef50_W7A2A5 0.222162384902 0.5 0.277837615098 +UniRef50_Q1GXG2 PKHD type hydroxylase Mfla_0096 0.19349883147 0.5 0.30650116853 +UniRef50_A3PJJ8 1.85688921187 0.5 -1.35688921187 +UniRef50_A3PJJ6 1.12571842532 0.5 -0.625718425323 +UniRef50_C0QB47 0.0274384152544 0.5 0.472561584746 +UniRef50_X1R832 Marine sediment metagenome DNA, contig 0.0474547472958 0.5 0.452545252704 +UniRef50_D4HA15 0.0260436007851 0.5 0.473956399215 +UniRef50_UPI0003B367DD 50S ribosomal protein L22 0.0823017021754 0.499999999999 0.417698297825 +UniRef50_Q8D350 Protoheme IX farnesyltransferase 0.275411071999 0.5 0.224588928001 +UniRef50_O31705 Molybdopterin synthase catalytic subunit 3.68957102641 0.500000000001 -3.18957102641 +UniRef50_P43791 Dihydrofolate reductase 0.0452324348708 0.5 0.454767565129 +UniRef50_UPI00035F8340 hypothetical protein 0.688452469874 0.5 -0.188452469874 +UniRef50_K2IW44 0.474485891266 0.5 0.0255141087342 +UniRef50_UPI0002A47C2E PREDICTED 0.668821523617 0.5 -0.168821523617 +UniRef50_X2MSF3 0.441121369807 0.5 0.0588786301934 +UniRef50_Q2T517 Phenylacetaldehyde dehydrogenase 0.577095934881 0.5 -0.0770959348811 +UniRef50_Q7NS59 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.615294061721 0.5 -0.115294061721 +UniRef50_UPI0003B67F64 RNA polymerase sigma factor RpoD 0.056418839743 0.5 0.443581160257 +UniRef50_G8V7H8 CobN magnesium chelatase domain protein 0.0116527210139 0.5 0.488347278986 +UniRef50_F5M3T2 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 1.03511376898 0.5 -0.535113768975 +UniRef50_UPI000473818F hypothetical protein, partial 0.377232321475 0.5 0.122767678525 +UniRef50_N6UY44 0.0424609140457 0.5 0.457539085954 +UniRef50_Q1GMP5 Inner membrane translocator 2.28513655109 0.499999999999 -1.78513655109 +UniRef50_UPI00030D61DF hypothetical protein 1.17810938262 0.5 -0.678109382619 +UniRef50_W8F058 0.0900372354558 0.5 0.409962764544 +UniRef50_M4TQ85 Short chain dehydrogenase reductase SDR 1.35416026319 0.499999999998 -0.854160263192 +UniRef50_UPI00047EB00A hypothetical protein 0.276580569361 0.5 0.223419430639 +UniRef50_B1J8H6 Asparagine synthetase 2.2954622465 0.5 -1.7954622465 +UniRef50_UPI0004670623 hypothetical protein 0.567810024845 0.5 -0.0678100248447 +UniRef50_UPI0002000789 two component system sensor kinase 0.129366747619 0.5 0.370633252381 +UniRef50_UPI00039C791B chemotaxis protein CheY 8.32109097566 0.499999999999 -7.82109097565 +UniRef50_X7A487 1.2744947235 0.5 -0.774494723498 +UniRef50_Q8CUD3 Resolvase 1.07273222768 0.5 -0.572732227684 +UniRef50_UPI0003B32E66 hypothetical protein 1.17120714542 0.5 -0.671207145418 +UniRef50_C6XLP5 Acyl CoA dehydrogenase domain protein 2.07195337113 0.5 -1.57195337113 +UniRef50_T0TWG5 ABC type multidrug transport system, ATPase component 3.10604125313 0.500000000001 -2.60604125313 +UniRef50_B7IKZ0 Cyclic pyranopterin monophosphate synthase accessory protein 0.179128359241 0.5 0.320871640759 +UniRef50_G7M6W8 NADH dehydrogenase 0.936120165947 0.5 -0.436120165947 +UniRef50_Q3J123 Diguanylate cyclase phosphodiesterase 2.75765951143 0.499999999997 -2.25765951142 +UniRef50_P59676 Penicillin binding protein 2X 0.405354839012 0.5 0.0946451609875 +UniRef50_UPI0003612BE4 hypothetical protein 0.0742790338405 0.5 0.42572096616 +UniRef50_A2RLU2 Geranyltranstransferase 0.948568264185 0.5 -0.448568264185 +UniRef50_H3UJR5 3.69771139199 0.500000000001 -3.19771139199 +UniRef50_UPI00046D07E2 hypothetical protein, partial 0.151477812085 0.5 0.348522187915 +UniRef50_S4XRJ9 12.4588664875 0.499999999978 -11.9588664875 +UniRef50_W5X633 GTPase EngC 0.0035652754963 0.5 0.496434724503 +UniRef50_UPI0003C15F36 0.297929829736 0.5 0.202070170264 +UniRef50_Q9RUE8 Probable ABC transporter binding protein DR_1438 0.0122855935583 0.5 0.487714406441 +UniRef50_Q9RV70 Uricase 0.01215615419 0.5 0.48784384581 +UniRef50_UPI00036D8F07 hypothetical protein 0.750209927712 0.5 -0.250209927712 +UniRef50_K2R7H4 1.67354005126 0.5 -1.17354005126 +UniRef50_G7U7S7 ABC transporter associated permease 0.00869443232434 0.5 0.491305567676 +UniRef50_UPI00037B01D8 hypothetical protein 0.513056007019 0.5 -0.0130560070191 +UniRef50_A9D7U2 BRO, N terminal 1.8232734209 0.5 -1.3232734209 +UniRef50_N0AWG4 Replicative DNA helicase 0.447957095869 0.5 0.0520429041309 +UniRef50_T0TKM9 Transcriptional regulator, MerR family 0.463091632499 0.5 0.0369083675013 +UniRef50_Q2RI90 3 dehydroquinate dehydratase 0.45476942465 0.5 0.0452305753496 +UniRef50_P22036 Magnesium transporting ATPase, P type 1 0.1575748954 0.5 0.3424251046 +UniRef50_B9KQJ5 4.07023318171 0.500000000001 -3.57023318171 +UniRef50_A0A037YUC7 Peptidase, M56 family 0.61695439794 0.5 -0.11695439794 +UniRef50_T0CJ91 0.789265333795 0.5 -0.289265333795 +UniRef50_Q9PET0 Transcriptional repressor NrdR 0.212036593612 0.5 0.287963406388 +UniRef50_C6W7J8 Arsenate reductase and related 0.502421094949 0.5 -0.00242109494885 +UniRef50_UPI00046A7F54 NADPH dehydrogenase 0.31838912794 0.5 0.18161087206 +UniRef50_UPI0003B5EE1D peroxiredoxin 0.0157485201295 0.5 0.484251479871 +UniRef50_F7EFJ4 0.676948428174 0.5 -0.176948428174 +UniRef50_X1MX97 Marine sediment metagenome DNA, contig 0.020637222301 0.499999999999 0.4793627777 +UniRef50_A2RLY6 Leucine tRNA ligase 1.06666306895 0.5 -0.566663068953 +UniRef50_UPI0002659767 PREDICTED 0.498737646064 0.5 0.00126235393624 +UniRef50_A7I8N1 Adenine deaminase 1.31399097325 0.499999999999 -0.813990973252 +UniRef50_A3PL70 Diacylglycerol kinase, catalytic region 2.72706239215 0.500000000003 -2.22706239216 +UniRef50_U1GSZ3 MFS transporter, FSR family, fosmidomycin resistance protein 4.40292014264 0.500000000003 -3.90292014265 +UniRef50_UPI00047C8DD6 PTS lactose transporter subunit IIA 0.627682078195 0.5 -0.127682078195 +UniRef50_Q5LWX7 Flagellar L ring protein 0.918096306545 0.5 -0.418096306545 +UniRef50_A6LZC0 Membrane protein CF 9 family 0.0795761670208 0.5 0.420423832979 +UniRef50_P39180 Antigen 43 1.64490619405 0.5 -1.14490619405 +UniRef50_UPI000381BCDA hypothetical protein, partial 0.0911879893402 0.5 0.40881201066 +UniRef50_Q02PS5 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 1.92168347626 0.5 -1.42168347626 +UniRef50_M7XG55 0.0108030332206 0.5 0.489196966779 +UniRef50_F2DFJ9 Predicted protein 0.112966085977 0.5 0.387033914024 +UniRef50_UPI0003752867 hypothetical protein 0.0679104245678 0.5 0.432089575432 +UniRef50_Q820S3 Holliday junction ATP dependent DNA helicase RuvA 0.110566587645 0.5 0.389433412355 +UniRef50_Q98F08 D amino acid dehydrogenase 1 small subunit 0.670215481252 0.5 -0.170215481252 +UniRef50_P96335 Glycerol 3 phosphate transporter 1.40096659379 0.500000000001 -0.900966593787 +UniRef50_Q7VQI2 Protein translocase subunit SecA 0.617145308867 0.5 -0.117145308867 +UniRef50_Q1QN09 Adenylate kinase 0.10714302233 0.5 0.39285697767 +UniRef50_UPI000395C8AE PREDICTED 0.467554078004 0.5 0.0324459219956 +UniRef50_D5QFV4 0.185108644727 0.5 0.314891355273 +UniRef50_B7UNN8 CDP diacylglycerol pyrophosphatase 1.4199409376 0.5 -0.919940937597 +UniRef50_UPI000329B634 0.650834355333 0.5 -0.150834355333 +UniRef50_P08201 Nitrite reductase large subunit 1.28517783827 0.5 -0.785177838266 +UniRef50_L6RYU4 Outer membrane phosphoporin protein E 0.748428660295 0.5 -0.248428660295 +UniRef50_UPI000050FC02 helicase superfamily protein 0.0261615359383 0.5 0.473838464061 +UniRef50_UPI00047D3DBB hypothetical protein 0.492075021634 0.5 0.00792497836632 +UniRef50_Q10X06 D alanine D alanine ligase 0.171339811681 0.5 0.328660188319 +UniRef50_UPI00047094A0 hypothetical protein 0.0764576936234 0.5 0.423542306377 +UniRef50_UPI00046A8EC3 hypothetical protein 1.72835042052 0.5 -1.22835042052 +UniRef50_UPI00047C9A63 hypothetical protein 0.827601004677 0.5 -0.327601004677 +UniRef50_UPI00046B1B81 PREDICTED 0.497471871668 0.5 0.00252812833207 +UniRef50_V7Z9W4 Secreted protein 0.823887295089 0.5 -0.323887295089 +UniRef50_A0A058T0F9 FKBP type peptidyl prolyl cis trans isomerase 3.15664412056 0.499999999997 -2.65664412056 +UniRef50_R6PR03 Glycosyl transferase family 2 0.0846018901713 0.500000000001 0.415398109828 +UniRef50_Q8FK51 Carbamate kinase 1.21781960382 0.500000000001 -0.717819603826 +UniRef50_O04983 Biotin carboxylase, chloroplastic 0.00149763467056 0.5 0.49850236533 +UniRef50_Q88JX6 Porin like protein GalP 0.329992346079 0.5 0.170007653921 +UniRef50_UPI0003815BE1 hypothetical protein 8.69008116269 0.500000000002 -8.19008116269 +UniRef50_UPI0002D2EA81 hypothetical protein 0.28097473334 0.5 0.21902526666 +UniRef50_A6M2X4 Transcriptional regulator, RpiR family 0.080254049018 0.500000000001 0.419745950981 +UniRef50_Q67L49 0.285729683778 0.5 0.214270316222 +UniRef50_D1WL88 Oligopeptide ABC transporter, permease protein 0.108236332931 0.5 0.391763667069 +UniRef50_T2E4B1 Glycosyl transferases group 1 family protein 0.102099973421 0.5 0.397900026579 +UniRef50_E0XT86 0.958680923425 0.5 -0.458680923425 +UniRef50_D7G5T9 ABC transporter ATP binding protein 0.42520400191 0.5 0.0747959980903 +UniRef50_B0A2M2 Oxidoreductase domain protein 0.613786201809 0.5 -0.113786201809 +UniRef50_P37877 Acetate kinase 5.55143996362 0.500000000002 -5.05143996362 +UniRef50_UPI0002BC838E PREDICTED 0.0757187902844 0.5 0.424281209716 +UniRef50_UPI0003763223 hypothetical protein 0.780582385129 0.5 -0.280582385129 +UniRef50_Q9RYX7 Xanthine permease, putative 0.00105602406423 0.5 0.498943975936 +UniRef50_D3QHC5 Alkaline phosphatase like protein 9.02893322962 0.500000000002 -8.52893322962 +UniRef50_B6IRJ0 ATP dependent RNA helicase, DEAD 1.62462580423 0.5 -1.12462580423 +UniRef50_Q5HP60 0.374560120511 0.5 0.125439879489 +UniRef50_A8AZI4 Penicillin binding protein 1B 0.542031812644 0.5 -0.042031812644 +UniRef50_C4NUT7 0.325423799694 0.5 0.174576200306 +UniRef50_UPI000262D06B coproporphyrinogen III oxidase 0.275994743485 0.5 0.224005256515 +UniRef50_E7AAE2 Peptidase M16 domain protein 0.0685420288549 0.5 0.431457971145 +UniRef50_A9N1I0 Peptidase E 0.647932640105 0.5 -0.147932640105 +UniRef50_Q8Z2X7 Autoinducer 2 import system permease protein LsrD 2.00982846536 0.5 -1.50982846536 +UniRef50_H2I4X5 0.00938462299216 0.5 0.490615377008 +UniRef50_P33915 Inner membrane ABC transporter permease protein YejE 3.90046346921 0.5 -3.40046346921 +UniRef50_A4B9S6 2.57504713044 0.5 -2.07504713044 +UniRef50_D1K952 SusD family protein 0.00384065216158 0.5 0.496159347838 +UniRef50_A5UJ63 2.45068828262 0.5 -1.95068828262 +UniRef50_Q88NC9 Poly C5 epimerase 0.545764286019 0.5 -0.0457642860185 +UniRef50_W7VQI0 Integral membrane protein 11.5939859486 0.500000000004 -11.0939859486 +UniRef50_A0A022KYK2 0.951154772911 0.5 -0.451154772911 +UniRef50_I3UWF3 Rieske domain containing protein 2.66741861469 0.5 -2.16741861469 +UniRef50_UPI00016A8727 1 phosphofructokinase, partial 0.0565720267822 0.5 0.443427973217 +UniRef50_A6LYB5 Nitroreductase 0.229249786037 0.5 0.270750213963 +UniRef50_R7PU75 4.42944947939 0.500000000001 -3.92944947939 +UniRef50_P0ADY2 Peptidyl prolyl cis trans isomerase D 4.18828905452 0.500000000001 -3.68828905452 +UniRef50_A4WJG1 Acetyl coenzyme A synthetase 0.045473807495 0.5 0.454526192505 +UniRef50_W1V655 0.31227555659 0.5 0.18772444341 +UniRef50_UPI000381A848 hypothetical protein 0.413549486006 0.5 0.0864505139937 +UniRef50_P26423 Galactose 6 phosphate isomerase subunit LacA 1.09091778285 0.5 -0.590917782847 +UniRef50_T0TEW3 Cysteine and methionine metabolism regulator CmbR, LysR family 0.590037438006 0.5 -0.0900374380057 +UniRef50_W1N460 1.95337007494 0.500000000001 -1.45337007494 +UniRef50_P59191 UPF0225 protein CE1570 0.9379736244 0.5 -0.4379736244 +UniRef50_V5T139 0.151613612703 0.5 0.348386387296 +UniRef50_M5AMX6 Probable transposase 1.16564258882 0.5 -0.665642588825 +UniRef50_UPI0004195476 hypothetical protein 0.220857650408 0.5 0.279142349592 +UniRef50_Q02R79 Spermidine putrescine import ATP binding protein PotA 0.365616980303 0.5 0.134383019697 +UniRef50_Q2NE41 6.45461066902 0.500000000002 -5.95461066902 +UniRef50_S1HD40 Inner membrane protein ybhI 1.63075435354 0.5 -1.13075435354 +UniRef50_P80644 FMN reductase 0.492755779397 0.5 0.00724422060294 +UniRef50_A3CL81 Glutamate 1 semialdehyde 2,1 aminomutase 0.157337309711 0.5 0.342662690289 +UniRef50_E8W9I4 0.0307920770341 0.5 0.469207922966 +UniRef50_I7EMH2 2.09295549705 0.5 -1.59295549705 +UniRef50_UPI00047106B1 hypothetical protein 0.321011852597 0.5 0.178988147403 +UniRef50_Q3IGA3 UPF0176 protein PSHAa1433 2.95255095311 0.5 -2.45255095311 +UniRef50_Q8K911 PTS system mannitol specific EIICBA component 1.46723441324 0.5 -0.967234413236 +UniRef50_I4MXJ0 Plasmid pRiA4b ORF 3 family protein 1.32844064993 0.5 -0.828440649929 +UniRef50_Q8CRY9 2.3905613121 0.5 -1.8905613121 +UniRef50_Q8CRY8 1.78622410811 0.5 -1.28622410811 +UniRef50_UPI0003F066F6 PREDICTED 0.219363091903 0.5 0.280636908097 +UniRef50_Q9RWT8 Sensor histidine kinase 0.0167605266747 0.5 0.483239473325 +UniRef50_G4L3R1 Phosphoglycerate mutase family protein 0.0169034489719 0.5 0.483096551028 +UniRef50_Q2FHD9 Glycerol kinase 0.440645579088 0.5 0.0593544209124 +UniRef50_UPI00035FD70A DNA invertase 0.166030880046 0.5 0.333969119954 +UniRef50_Q2W731 Phosphoribosylformylglycinamidine synthase 0.735508731662 0.5 -0.235508731662 +UniRef50_D4E309 Mannitol dehydrogenase domain protein 0.354761611458 0.5 0.145238388542 +UniRef50_UPI0003680DBD hypothetical protein 0.342015489244 0.5 0.157984510756 +UniRef50_P9WPZ0 Probable GTPase MT1543 0.0163429010912 0.5 0.483657098909 +UniRef50_Q5GWB1 0.610333212629 0.5 -0.110333212629 +UniRef50_N2I8V8 Autotransporter family porin 0.782463232505 0.5 -0.282463232505 +UniRef50_UPI00047753FE hypothetical protein 5.57135783488 0.5 -5.07135783488 +UniRef50_UPI00031A53C3 hypothetical protein 0.281642449354 0.5 0.218357550646 +UniRef50_X1K4A9 Marine sediment metagenome DNA, contig 0.603313880581 0.5 -0.103313880581 +UniRef50_C6SHK2 Nitric oxide reductase 0.0315396610438 0.5 0.468460338956 +UniRef50_UPI0002034B4E PREDICTED 2.40220920148 0.5 -1.90220920148 +UniRef50_A3PQI0 RepB plasmid partition 1.39196462399 0.5 -0.891964623991 +UniRef50_UPI000237E2DC hypothetical protein 0.925923163312 0.5 -0.425923163312 +UniRef50_UPI00047CCD58 hypothetical protein 0.157760743264 0.5 0.342239256736 +UniRef50_W1QBV5 Monomeric glyoxalase I 1.15193139976 0.5 -0.65193139976 +UniRef50_E4FFC4 0.045996685473 0.5 0.454003314527 +UniRef50_G5Q502 Cytochrome c heme lyase subunit CcmF 3.36249533551 0.5 -2.86249533551 +UniRef50_T1YBR1 1.33101521724 0.5 -0.831015217241 +UniRef50_A0A011QP89 Elongation factor Tu 0.130242792668 0.5 0.369757207332 +UniRef50_P0AAA2 Inner membrane protein YagU 4.88595294505 0.500000000004 -4.38595294506 +UniRef50_UPI00047958EB ABC transporter permease 0.293270599393 0.5 0.206729400607 +UniRef50_A0A024HBA2 Lost Adherence Sensor, LadS 0.129005530493 0.5 0.370994469506 +UniRef50_A8LQH3 2.70933289513 0.5 -2.20933289513 +UniRef50_A1BI09 UvrABC system protein B 1.25143429275 0.499999999999 -0.751434292747 +UniRef50_P54123 Ribonuclease J 0.144174604262 0.5 0.355825395738 +UniRef50_UPI000367649B hypothetical protein 0.098586997912 0.5 0.401413002088 +UniRef50_U5PBM4 Branched chain amino acid ABC transporter substrate binding protein 0.0192692171229 0.5 0.480730782877 +UniRef50_UPI000225B945 hypothetical protein 0.539211568849 0.5 -0.0392115688487 +UniRef50_UPI0004669786 hypothetical protein, partial 0.153622935387 0.5 0.346377064613 +UniRef50_Q6Z2L5-2 Isoform 2 of Ribose phosphate pyrophosphokinase 1, chloroplastic 0.576719812979 0.5 -0.076719812979 +UniRef50_A6EE81 0.0155174814143 0.5 0.484482518586 +UniRef50_M5EZ09 Heme molybdoenzyme heme containing subunit YedZ cytochrome b subunit 0.938762919702 0.5 -0.438762919702 +UniRef50_D7GDA9 0.193904987876 0.5 0.306095012124 +UniRef50_A8HTC4 Predicted protein 0.0300427369561 0.500000000001 0.469957263043 +UniRef50_X1VC56 Marine sediment metagenome DNA, contig 0.105922634739 0.5 0.394077365261 +UniRef50_G9MKE1 0.00399712302221 0.5 0.496002876978 +UniRef50_R8AJR3 Oligopeptide ABC transporter permease 0.0735402870583 0.5 0.426459712942 +UniRef50_O67108 DNA gyrase subunit A 0.201464620835 0.5 0.298535379165 +UniRef50_B3QUX5 NADH quinone oxidoreductase subunit A 1 0.0328305850405 0.5 0.467169414959 +UniRef50_U5RYU5 Major facilitator superfamily MFS_1 0.217695398944 0.5 0.282304601056 +UniRef50_UPI0003596786 PREDICTED 0.47443791914 0.5 0.0255620808595 +UniRef50_UPI0003B73CB0 biotin biosynthesis protein BioY 0.372292246591 0.5 0.127707753409 +UniRef50_UPI000382DFA2 hypothetical protein 0.244723917941 0.5 0.255276082059 +UniRef50_W8WVR8 Dihydrolipoyl dehydrogenase 0.0169471913638 0.5 0.483052808636 +UniRef50_Q7WKH5 3 isopropylmalate dehydratase small subunit 1 0.573129965444 0.5 -0.0731299654445 +UniRef50_UPI0003ADD90A PREDICTED 0.13223227291 0.5 0.36776772709 +UniRef50_M1FC64 0.3210118528 0.5 0.1789881472 +UniRef50_T1ZZG8 0.2599247813 0.5 0.2400752187 +UniRef50_P76210 0.170216844888 0.5 0.329783155112 +UniRef50_Q46890 Putative aldolase class 2 protein YgbL 0.580647671825 0.5 -0.080647671825 +UniRef50_UPI00047D4CB0 uridine kinase 0.00746733661856 0.5 0.492532663382 +UniRef50_S0UQQ2 Inner membrane protein ypdA 0.748405010001 0.5 -0.248405010001 +UniRef50_B9KWL8 Periplasmic glucan biosynthesis protein, MdoG 1.95009558102 0.5 -1.45009558102 +UniRef50_B5GJB9 PE PGRS family protein 0.243049668405 0.5 0.256950331595 +UniRef50_Q5NMC2 Phenylalanine tRNA ligase alpha subunit 0.261116460118 0.5 0.238883539882 +UniRef50_C6SH38 Transposase, IS30 family 0.0582195492671 0.5 0.441780450733 +UniRef50_R5QF49 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.23051555776 0.5 0.26948444224 +UniRef50_D8JHI1 Response regulator 0.00517883998433 0.5 0.494821160016 +UniRef50_UPI0003C13108 PREDICTED 0.125299840371 0.5 0.37470015963 +UniRef50_B0S039 Aspartate ammonia lyase 0.193578337943 0.5 0.306421662057 +UniRef50_Q47WP5 Ribonuclease 3 0.759059374219 0.5 -0.259059374219 +UniRef50_Q98PQ3 CTP synthase 0.0121002707702 0.499999999999 0.48789972923 +UniRef50_O34125 ATP dependent Clp protease proteolytic subunit 2 0.35591912801 0.5 0.14408087199 +UniRef50_I5E3H6 Ion channel family protein 3.61666953372 0.500000000003 -3.11666953372 +UniRef50_A0A059LD30 0.213149519265 0.5 0.286850480735 +UniRef50_UPI0002DD61A2 hypothetical protein 0.148036723253 0.5 0.351963276747 +UniRef50_X0V5G6 Marine sediment metagenome DNA, contig 2.41664350032 0.500000000002 -1.91664350032 +UniRef50_UPI00037AEC76 ABC transporter 0.172953902767 0.5 0.327046097233 +UniRef50_UPI0002F9B62A hypothetical protein 0.291064216612 0.5 0.208935783388 +UniRef50_Q031X8 D alanine D alanine ligase 0.70450776156 0.5 -0.20450776156 +UniRef50_UPI00046FAEC1 UDP N acetylglucosamine 2 epimerase 0.035515232399 0.5 0.464484767601 +UniRef50_F9YY53 0.0205470339824 0.5 0.479452966018 +UniRef50_X5KE03 1.9808167679 0.5 -1.4808167679 +UniRef50_Q9RVW3 0.00550325523899 0.5 0.494496744761 +UniRef50_Q67PJ3 Tryptophan synthase alpha chain 0.214820815299 0.5 0.285179184701 +UniRef50_A7IHD1 Rubredoxin type Fe4 protein 10.5531943562 0.5 -10.0531943562 +UniRef50_UPI0003FC0088 hypothetical protein 0.30536114209 0.5 0.19463885791 +UniRef50_UPI00037EF707 3 methyladenine DNA glycosylase 0.461086886564 0.5 0.0389131134359 +UniRef50_Q17VZ5 Threonine tRNA ligase 0.0188482760239 0.5 0.481151723976 +UniRef50_P56910 NADH quinone oxidoreductase subunit E 2 0.0516471684849 0.5 0.448352831515 +UniRef50_D8LMU1 0.15907631818 0.5 0.34092368182 +UniRef50_Q8XZ83 Carbamoyl phosphate synthase large chain 0.251210080121 0.5 0.248789919879 +UniRef50_B5ZA76 Peptidoglycan deacetylase 0.991306327371 0.5 -0.491306327371 +UniRef50_Q038N5 Chaperone protein DnaJ 1.05989339969 0.5 -0.55989339969 +UniRef50_Q82WI7 3 isopropylmalate dehydratase small subunit 0.617927942995 0.5 -0.117927942995 +UniRef50_Q45539 Putative glycosyltransferase CsbB 1.39479546582 0.5 -0.894795465823 +UniRef50_UPI0003774C37 hypothetical protein 1.04011994486 0.5 -0.540119944859 +UniRef50_Q6AB05 Porphobilinogen deaminase 0.0190807984749 0.5 0.480919201525 +UniRef50_J9P043 0.937398056035 0.5 -0.437398056035 +UniRef50_P13086 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.184023445895 0.5 0.315976554105 +UniRef50_Q4KIU4 Type II and III secretion system protein 0.974160442988 0.5 -0.474160442988 +UniRef50_D6M4Q5 Urease accessory protein UreF 0.421478777851 0.5 0.0785212221487 +UniRef50_F2DBH7 Predicted protein 0.0696027199436 0.5 0.430397280056 +UniRef50_U7IPA8 0.0606468750225 0.5 0.439353124978 +UniRef50_A6TVQ2 N acetylmuramic acid 6 phosphate etherase 0.475112049839 0.5 0.0248879501612 +UniRef50_W5XIQ1 Transcriptional repressor NrdR 0.638813258196 0.5 -0.138813258196 +UniRef50_Q2IMJ3 LigA 0.551579807548 0.5 -0.051579807548 +UniRef50_Q7G2Z3 Expressed protein 0.0424761151208 0.499999999999 0.45752388488 +UniRef50_F0YT02 0.0134203518579 0.5 0.486579648142 +UniRef50_A0A024L372 Protein involved in detoxification of methylglyoxal 0.831509461916 0.5 -0.331509461916 +UniRef50_Q9RXL7 Hydrolase, haloacid dehalogenase like family 0.00224106560676 0.5 0.497758934393 +UniRef50_P13082 Streptomycin 3 kinase 0.037239473219 0.5 0.462760526781 +UniRef50_UPI0004541F98 PREDICTED 0.221168975597 0.5 0.278831024403 +UniRef50_UPI000255849F TetR family transcriptional regulator 0.460926195308 0.5 0.0390738046924 +UniRef50_D6WC74 0.11584611461 0.5 0.38415388539 +UniRef50_D2N9Z4 Aminoacyltransferase FemA 2.40754539616 0.500000000002 -1.90754539616 +UniRef50_B2I0T9 Dehydrogenase with different specificities 0.0387774801946 0.5 0.461222519806 +UniRef50_V9VP62 Esterase 0.766479855986 0.5 -0.266479855986 +UniRef50_S0FRJ9 TRAP transporter solute receptor, TAXI family 0.632075483834 0.5 -0.132075483834 +UniRef50_B7V7J4 Recombination associated protein RdgC 2.0250887486 0.5 -1.5250887486 +UniRef50_B1JVW3 tRNA specific 2 thiouridylase MnmA 1.09484410172 0.5 -0.59484410172 +UniRef50_UPI00035D67F3 hypothetical protein 1.2592755263 0.5 -0.759275526302 +UniRef50_UPI000410FFCF protoheme IX farnesyltransferase 0.343229446234 0.5 0.156770553766 +UniRef50_A0A023RW25 Membrane protein 0.00979389856876 0.5 0.490206101431 +UniRef50_W8ZWW3 0.848046914063 0.5 -0.348046914063 +UniRef50_D3E135 Voltage gated chloride channel protein 3.40420310033 0.500000000001 -2.90420310033 +UniRef50_UPI0003F95CA7 50S ribosomal protein L25 1.44696362313 0.500000000002 -0.946963623129 +UniRef50_Q8DRV2 Glucan binding protein A, GbpA 0.708468388556 0.5 -0.208468388556 +UniRef50_F6AFI4 Patatin 0.549737202286 0.5 -0.0497372022858 +UniRef50_UPI00036B8421 hypothetical protein 0.656615467221 0.5 -0.156615467221 +UniRef50_Q46SI8 2.68505285824 0.500000000002 -2.18505285824 +UniRef50_J9YT94 Amidase 17.5374165774 0.500000000009 -17.0374165774 +UniRef50_UPI00037F4511 hypothetical protein, partial 2.19550094409 0.499999999999 -1.69550094409 +UniRef50_Q93615 Probable electron transfer flavoprotein subunit alpha, mitochondrial 0.0256066441461 0.5 0.474393355854 +UniRef50_UPI00039BDE65 DNA helicase 1.07163281978 0.5 -0.571632819783 +UniRef50_UPI00046638E1 ADP ribose pyrophosphatase 0.0401230278459 0.5 0.459876972154 +UniRef50_UPI000476B251 hypothetical protein 0.231715021666 0.5 0.268284978334 +UniRef50_UPI000464F730 ABC transporter ATP binding protein 0.0711734256861 0.5 0.428826574314 +UniRef50_F0K963 0.689803307529 0.5 -0.189803307529 +UniRef50_UPI00038256A0 hypothetical protein, partial 0.177771046902 0.5 0.322228953098 +UniRef50_UPI000470FDE7 hypothetical protein 0.204011001714 0.5 0.295988998286 +UniRef50_Q0C0N0 Bifunctional enzyme IspD IspF 0.178235935215 0.5 0.321764064786 +UniRef50_A6LXC3 0.0427212510911 0.5 0.457278748909 +UniRef50_A5UKY3 Probable phosphoglucosamine mutase 0.754501750271 0.5 -0.254501750271 +UniRef50_UPI00036277E7 hypothetical protein 0.666933570912 0.5 -0.166933570912 +UniRef50_UPI000375D958 hypothetical protein 0.436447716605 0.5 0.0635522833945 +UniRef50_Q5HNY1 DNA repair protein RecO 2.22963465032 0.499999999996 -1.72963465032 +UniRef50_A0A028XXS7 5.61851175028 0.500000000002 -5.11851175028 +UniRef50_R8ZK04 1.16361875863 0.5 -0.66361875863 +UniRef50_P36967 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.214849972662 0.5 0.285150027338 +UniRef50_Q9RV98 Ferrochelatase 0.00243946771831 0.5 0.497560532282 +UniRef50_I6GMY7 Inner membrane transport protein YhaO 0.527784960871 0.5 -0.0277849608714 +UniRef50_A6M384 CheC domain protein 0.311289204208 0.5 0.188710795792 +UniRef50_R6JVY2 4 hydroxy tetrahydrodipicolinate synthase 0.133514242962 0.500000000001 0.366485757037 +UniRef50_X5ESC8 0.524749607768 0.5 -0.0247496077677 +UniRef50_B0T2A6 Lysine tRNA ligase 2.35099033108 0.5 -1.85099033108 +UniRef50_P0A1X7 Methionine aminopeptidase 2.60612155283 0.500000000004 -2.10612155284 +UniRef50_K4VCY9 Outer membrane specific lipoprotein transporter subunit LolE 4.80888155354 0.500000000004 -4.30888155354 +UniRef50_O86013 4 hydroxy 2 oxovalerate aldolase 0.0815890458543 0.5 0.418410954146 +UniRef50_UPI0002E2CBA6 hypothetical protein 0.188417079005 0.5 0.311582920995 +UniRef50_Q16AA8 5.6236787148 0.499999999999 -5.12367871479 +UniRef50_A6LZI3 Transcriptional regulator, TetR family 0.164865528099 0.5 0.335134471901 +UniRef50_UPI000474BBE2 ATP synthase F0F1 subunit gamma 0.220412864156 0.5 0.279587135844 +UniRef50_E3ZDN2 PadR family transcriptional regulator 2.63614974382 0.499999999997 -2.13614974382 +UniRef50_B7KCX9 Adenylosuccinate synthetase 0.406395783085 0.5 0.0936042169148 +UniRef50_Q98EA0 Mlr4340 protein 2.36813561187 0.5 -1.86813561187 +UniRef50_UPI0002D46E5D hypothetical protein 0.117161605424 0.5 0.382838394576 +UniRef50_UPI0004226290 MarR family transcriptional regulator 0.0716121478345 0.5 0.428387852165 +UniRef50_J8V1E5 0.130502435122 0.5 0.369497564878 +UniRef50_B6IRE2 Deoxyribodipyrimidine photolyase like protein 4.55578798481 0.499999999996 -4.05578798481 +UniRef50_A0Q0M8 tRNA dimethylallyltransferase 0.178999742875 0.5 0.321000257125 +UniRef50_V8RAG2 Sodium 0.911032712885 0.5 -0.411032712885 +UniRef50_Q8CNS0 Uroporphyrinogen decarboxylase 2.04155110424 0.5 -1.54155110424 +UniRef50_UPI00037EED1B hypothetical protein 0.00542799522753 0.5 0.494572004772 +UniRef50_UPI0002493305 amino acid ABC transporter ATP binding protein 1.9187256172 0.499999999999 -1.4187256172 +UniRef50_UPI00046F93AF hypothetical protein, partial 0.269292538013 0.5 0.230707461987 +UniRef50_I0ZLL7 Amino acid permease associated region 1.19621320616 0.499999999999 -0.696213206163 +UniRef50_I2HA76 Mobilization protein A 2.7167477201 0.500000000001 -2.2167477201 +UniRef50_Q9RWB6 0.00371163959922 0.5 0.496288360401 +UniRef50_Q9HZU3 Precorrin 2 C methyltransferase 0.215647749983 0.5 0.284352250017 +UniRef50_U8ZF23 UPF0125 protein Q012_00884 1.50885750718 0.5 -1.00885750718 +UniRef50_U5UJ70 MutS domain V family protein 4.44899550314 0.499999999999 -3.94899550313 +UniRef50_U5T6S5 0.355452061269 0.5 0.144547938731 +UniRef50_J9WRR1 Transketolase, thiamine diphosphate binding domain protein 0.507348004399 0.5 -0.00734800439859 +UniRef50_R9YLA1 Ktr system potassium uptake protein A 3.87492272258 0.5 -3.37492272258 +UniRef50_Q5HLV4 Staphylococcal accessory regulator Y 2.76714538285 0.5 -2.26714538285 +UniRef50_T1JU40 0.224679591155 0.5 0.275320408845 +UniRef50_Q7R725 0.0308949236659 0.5 0.469105076334 +UniRef50_UPI000237E869 phage integrase 0.770580967348 0.5 -0.270580967348 +UniRef50_Q57466 Flagellar basal body rod protein FlgC 1.0164327863 0.5 -0.516432786295 +UniRef50_I4DXS5 Acyltransferase homolog 0.484202194878 0.5 0.0157978051218 +UniRef50_Q28LT2 6,7 dimethyl 8 ribityllumazine synthase 0.895385482375 0.5 -0.395385482375 +UniRef50_A4WWA2 1.32504884222 0.5 -0.825048842223 +UniRef50_B4T381 Protein NrdI 4.05359919485 0.500000000001 -3.55359919485 +UniRef50_Q9JYY8 Ribosomal RNA large subunit methyltransferase K 0.0380751721485 0.5 0.461924827852 +UniRef50_P71297 0.0637092800198 0.5 0.43629071998 +UniRef50_P71296 1.21200234872 0.5 -0.712002348715 +UniRef50_Q71WL8 Arginine tRNA ligase 1.35990912644 0.500000000001 -0.859909126442 +UniRef50_A4EQX8 Immunogenic protein 2.37428879253 0.500000000001 -1.87428879253 +UniRef50_Q54QE4 Bifunctional purine synthesis protein purC E 0.423342914629 0.5 0.076657085371 +UniRef50_UPI00014AD6BB MULTISPECIES 1.11168542103 0.499999999999 -0.611685421026 +UniRef50_I0C4X0 KipI 1.7738422807 0.500000000002 -1.2738422807 +UniRef50_UPI000373927B hypothetical protein 0.449956857285 0.5 0.0500431427153 +UniRef50_C5N1M3 Glyoxalase family protein 5.44558933001 0.499999999991 -4.94558933 +UniRef50_C6SQK1 6.9675816401 0.500000000002 -6.4675816401 +UniRef50_Q9CHM9 Glycogen synthase 2.59903996942 0.5 -2.09903996942 +UniRef50_C9TNI8 NAD specific glutamate dehydrogenase 0.855804407994 0.5 -0.355804407994 +UniRef50_R6XC37 Oxidoreductase NAD binding domain protein 0.904445079182 0.5 -0.404445079182 +UniRef50_S4RTP3 0.233139477907 0.5 0.266860522093 +UniRef50_F3F217 Isoleucyl tRNA synthetase 0.517058810755 0.5 -0.0170588107546 +UniRef50_UPI0003772113 hypothetical protein 0.900606789872 0.5 -0.400606789872 +UniRef50_Q8FCG2 4.73753684342 0.500000000001 -4.23753684342 +UniRef50_R7QYT4 Methyltransferase type 12 0.503965379405 0.5 -0.00396537940537 +UniRef50_B9DIQ2 Sodium 3.36497013963 0.5 -2.86497013963 +UniRef50_E3DTJ4 0.112676389892 0.5 0.387323610108 +UniRef50_B9KTV0 Tripartite ATP independent periplasmic transporter, DctQ component 0.661520289565 0.5 -0.161520289565 +UniRef50_UPI0003B7AA4B iron transporter 0.556081305374 0.5 -0.0560813053742 +UniRef50_Q3IVN6 1.63048088086 0.5 -1.13048088086 +UniRef50_Q3IVN1 0.36629641204 0.5 0.13370358796 +UniRef50_Q3IVN0 1.2668478172 0.5 -0.766847817195 +UniRef50_I4Y1U6 1.22817276446 0.5 -0.728172764457 +UniRef50_Q3IVN2 0.455454135674 0.5 0.044545864326 +UniRef50_F0RJ04 Potassium uptake protein, TrkH family 0.0014110002992 0.5 0.498588999701 +UniRef50_Q4L562 Probable quinol oxidase subunit 4 1.45023014699 0.5 -0.950230146986 +UniRef50_C2QRL4 0.0673207080954 0.5 0.432679291904 +UniRef50_P0AFQ0 Inner membrane transport permease YbhR 1.07773064815 0.5 -0.577730648154 +UniRef50_Z5XBU2 Potassium transporting ATPase subunit B 0.00246337295177 0.5 0.497536627048 +UniRef50_Q6FCU8 O methyl transferase 0.0639837398212 0.5 0.436016260179 +UniRef50_Q9HGZ0 ATP dependent 6 phosphofructokinase 2 0.659688453717 0.5 -0.159688453717 +UniRef50_UPI000379175B hypothetical protein 2.01377997811 0.5 -1.51377997811 +UniRef50_F0YF70 1.69321138827 0.5 -1.19321138827 +UniRef50_Q18AR0 Acetyl CoA acetyltransferase 0.0785924240123 0.5 0.421407575988 +UniRef50_V4QJE1 2.28190831238 0.499999999999 -1.78190831238 +UniRef50_F0KFI6 Succinate semialdehyde dehydrogenase (+)) 0.014679297818 0.5 0.485320702182 +UniRef50_M4SAI5 0.217299936625 0.5 0.282700063375 +UniRef50_K0HLP5 Cell envelope related transcriptional attenuator 0.00364409817721 0.500000000001 0.496355901822 +UniRef50_UPI00029A71CE ATP cobalamin adenosyltransferase 0.30678827244 0.5 0.19321172756 +UniRef50_D6C476 0.0220326472397 0.5 0.47796735276 +UniRef50_UPI0003B69FA4 ABC transporter ATP binding protein 0.495607366399 0.5 0.00439263360075 +UniRef50_UPI00037DC4C2 hypothetical protein 3.4417904697 0.499999999998 -2.9417904697 +UniRef50_A5UNW1 Phage related minor tail protein 2.35155194421 0.500000000002 -1.85155194421 +UniRef50_Q9KPI5 UPF0126 membrane protein VC_2382 7.4190260701 0.499999999998 -6.9190260701 +UniRef50_D9RDD3 Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1 12.9235799666 0.500000000001 -12.4235799666 +UniRef50_UPI0003EB35B9 L lactate permease, partial 0.00938694858816 0.5 0.490613051412 +UniRef50_Q9CGM7 Dihydroorotase 0.599462665931 0.5 -0.0994626659305 +UniRef50_UPI0003C11B56 0.484593655165 0.5 0.0154063448347 +UniRef50_Q04HZ7 D alanine poly ligase subunit 1 0.900132081762 0.5 -0.400132081762 +UniRef50_P22099 Anthranilate synthase component 1 3.07280024595 0.499999999998 -2.57280024595 +UniRef50_UPI00046F34F7 glycosyl transferase family 39 0.47089333801 0.5 0.0291066619896 +UniRef50_G1ZTT8 Sodium dependent inorganic phosphate transporter family protein 3.24279593643 0.5 -2.74279593643 +UniRef50_UPI000350B2EA PREDICTED 3.05420382166 0.5 -2.55420382166 +UniRef50_K5YQU9 0.722357060747 0.5 -0.222357060747 +UniRef50_UPI00046BF16E PREDICTED 0.0741749946073 0.5 0.425825005393 +UniRef50_UPI0003FCF933 DNA polymerase III subunit alpha 0.814310250239 0.5 -0.314310250239 +UniRef50_C3LNG5 Amino acid ABC transporter, permease protein 0.562374805263 0.5 -0.062374805263 +UniRef50_Q9RWV7 Tryptophan tRNA ligase 0.00152033176685 0.5 0.498479668233 +UniRef50_UPI0004560947 hypothetical protein PFL1_00311 0.386412633274 0.5 0.113587366726 +UniRef50_F0LUE5 Predicted hydrolase of the HAD superfamily 0.210905648627 0.5 0.289094351373 +UniRef50_K0LKT0 0.159901420582 0.5 0.340098579418 +UniRef50_UPI0003823C05 hypothetical protein 8.97320924978 0.499999999998 -8.47320924978 +UniRef50_UPI0003A4E18C hemolysin expression modulating protein 8.25842955116 0.500000000004 -7.75842955116 +UniRef50_UPI000472C7D5 diaminopimelate decarboxylase 0.0526159557015 0.5 0.447384044298 +UniRef50_UPI0003715A93 phosphoribosylglycinamide synthetase 2.85167063603 0.500000000005 -2.35167063604 +UniRef50_B0CKZ1 1.42979458296 0.5 -0.92979458296 +UniRef50_F7ZE55 4.19628621627 0.499999999998 -3.69628621627 +UniRef50_R5FLI5 Glutathione peroxidase 0.0745676872877 0.5 0.425432312712 +UniRef50_M9VH17 0.428891611771 0.5 0.0711083882295 +UniRef50_UPI00036E90C5 hypothetical protein 0.319560307808 0.5 0.180439692192 +UniRef50_Q8DSG3 Aspartate tRNA ligase 1.71461430806 0.5 -1.21461430806 +UniRef50_U5V5C3 Putative nRPS PKS 0.0876343758421 0.5 0.412365624158 +UniRef50_UPI0004705979 hypothetical protein 0.470956995984 0.5 0.029043004016 +UniRef50_UPI00035D3D1B hypothetical protein 3.16663381261 0.500000000003 -2.66663381261 +UniRef50_UPI0003B3A97F UTP glucose 1 phosphate uridylyltransferase 0.929743087951 0.5 -0.429743087951 +UniRef50_P77607 0.336376960372 0.5 0.163623039628 +UniRef50_X1DZD1 Marine sediment metagenome DNA, contig 0.21266907219 0.5 0.28733092781 +UniRef50_Q5NWG5 Isopentenyl diphosphate Delta isomerase 2 1.94755597485 0.5 -1.44755597485 +UniRef50_UPI000225ADDB large conductance mechanosensitive channel protein MscL 0.443103116491 0.5 0.0568968835092 +UniRef50_C7TN90 ABC transporter, amino acid binding protein 0.56397898274 0.5 -0.0639789827398 +UniRef50_A5UKX8 O linked GlcNAc transferase 1.39234303706 0.499999999999 -0.892343037059 +UniRef50_UPI000375E38D hypothetical protein 0.0556631076643 0.5 0.444336892336 +UniRef50_Q7U8I1 Fumarate hydratase class II 0.269505138666 0.5 0.230494861334 +UniRef50_I6U4E4 2.7242781557 0.5 -2.2242781557 +UniRef50_P0ADI8 0.262660003789 0.5 0.237339996211 +UniRef50_E8SDZ5 5.22472701704 0.500000000004 -4.72472701705 +UniRef50_P18642 Protein ImpB 3.92595057243 0.5 -3.42595057243 +UniRef50_A4VP76 Lipoprotein, putative 1.9741539124 0.5 -1.4741539124 +UniRef50_UPI00035D47CC hypothetical protein, partial 2.96434591813 0.499999999997 -2.46434591813 +UniRef50_UPI00029A6A13 binding protein dependent transport system inner membrane protein 0.172776729386 0.5 0.327223270614 +UniRef50_I0ZSX5 Transporter, major facilitator family protein 0.757491935788 0.5 -0.257491935788 +UniRef50_F3Y8Y9 Altronate oxidoreductase 0.349491576309 0.5 0.150508423691 +UniRef50_P0A963 L asparaginase 1 1.47004893319 0.499999999999 -0.970048933188 +UniRef50_Q46MN5 Hydrophobe amphiphile efflux 1 HAE1 6.56756231219 0.500000000001 -6.0675623122 +UniRef50_Q6FFX5 Ribonuclease PH 1.41257036252 0.5 -0.912570362518 +UniRef50_A6LWL3 Collagen triple helix repeat 0.0811496200273 0.5 0.418850379972 +UniRef50_O69754 Trans 2,3 dihydro 3 hydroxyanthranilate isomerase 3.07687091695 0.500000000001 -2.57687091695 +UniRef50_UPI00037CA56D hypothetical protein 2.95612264922 0.5 -2.45612264922 +UniRef50_UPI0003A01C14 iron ABC transporter permease 0.773599410055 0.5 -0.273599410055 +UniRef50_R5D7P7 ABC transporter permease protein 1.13507166264 0.5 -0.635071662638 +UniRef50_UPI00047ED6FC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.08579828366 0.5 -0.585798283664 +UniRef50_R7R1P9 Cobalamin biosynthesis protein CbiM 0.0244783206103 0.5 0.47552167939 +UniRef50_B1YU48 Uracil phosphoribosyltransferase 0.270813603043 0.5 0.229186396957 +UniRef50_Q1J275 Transcriptional regulator, Crp Fnr family 0.00530534302619 0.5 0.494694656974 +UniRef50_T9JR44 0.29385744172 0.5 0.20614255828 +UniRef50_P27431 50S ribosomal protein L16 arginine hydroxylase 1.94702714338 0.5 -1.44702714338 +UniRef50_Q6ZDB2 0.27350630554 0.5 0.22649369446 +UniRef50_Q5HLY0 Probable molybdenum cofactor guanylyltransferase 1.99128633278 0.499999999997 -1.49128633277 +UniRef50_A1BAJ3 Peptidase M23B 1.55960488381 0.5 -1.05960488381 +UniRef50_Q3IW06 0.933585228671 0.5 -0.433585228671 +UniRef50_UPI00046F60DA hypothetical protein 1.11031118479 0.5 -0.610311184786 +UniRef50_UPI00035CF7ED hypothetical protein 0.130485132289 0.5 0.369514867711 +UniRef50_UPI00047B007B 2 oxoglutarate dehydrogenase 0.379859253122 0.5 0.120140746878 +UniRef50_E6Q0D3 0.25894730835 0.5 0.24105269165 +UniRef50_D7GEE3 rRNA methylase 0.0275317270685 0.5 0.472468272931 +UniRef50_UPI0002DEB9E1 hypothetical protein 0.0269957110515 0.5 0.473004288948 +UniRef50_Q48JY0 Dihydroorotate dehydrogenase 0.276165134068 0.5 0.223834865932 +UniRef50_C6SS67 2.73957550465 0.5 -2.23957550465 +UniRef50_B8H5V4 Uronate isomerase 1.63487891744 0.5 -1.13487891744 +UniRef50_Q7UWS1 Na translocating NADH quinone reductase subunit E 0.387449657401 0.5 0.112550342599 +UniRef50_UPI000412F4F5 hypothetical protein 3.45110356291 0.5 -2.95110356291 +UniRef50_A3PQF5 Peptidase M24 2.70832434094 0.5 -2.20832434094 +UniRef50_A5W310 Major facilitator superfamily MFS_1 0.648787754789 0.5 -0.148787754789 +UniRef50_P76550 8.35187130013 0.500000000001 -7.85187130013 +UniRef50_UPI00035E8F3F hypothetical protein 1.5071633752 0.499999999998 -1.0071633752 +UniRef50_A5UAG1 Ribonuclease T 0.537129381034 0.5 -0.0371293810343 +UniRef50_UPI0003739549 hypothetical protein 0.0173635623199 0.5 0.48263643768 +UniRef50_A7X3B0 Transcriptional repressor NrdR 4.90554620189 0.500000000001 -4.40554620189 +UniRef50_F9VBF9 OPT family oligopeptide transporter 0.0411082424124 0.5 0.458891757588 +UniRef50_D4HBS7 Oxidoreductase, NAD binding domain protein 0.010991331186 0.5 0.489008668814 +UniRef50_R9SJM3 Amidohydrolase 0.489191903131 0.5 0.0108080968689 +UniRef50_A5UKM3 2.40274519534 0.500000000001 -1.90274519534 +UniRef50_A5UKM2 8.16616633199 0.499999999995 -7.66616633198 +UniRef50_A3PIB0 OmpA MotB domain protein 2.17474225243 0.5 -1.67474225243 +UniRef50_A6FVX3 Transcriptional regulator, MarR family protein 2.35958485184 0.499999999999 -1.85958485184 +UniRef50_UPI00016C448A hypothetical protein 0.00248892212585 0.5 0.497511077874 +UniRef50_Q49890 Tyrosine recombinase XerD 0.0284146421217 0.5 0.471585357878 +UniRef50_Q5LND3 Orotidine 5 phosphate decarboxylase 2.36066493484 0.5 -1.86066493484 +UniRef50_Q14JF9 Protoheme IX farnesyltransferase 0.126120218122 0.499999999999 0.373879781879 +UniRef50_Q5HRV4 2.51574802585 0.499999999999 -2.01574802585 +UniRef50_A3CTR9 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.83279099776 0.499999999999 -1.33279099776 +UniRef50_Q5HKN5 1.55620872037 0.499999999999 -1.05620872037 +UniRef50_UPI0002EC4132 hypothetical protein 0.0610068065835 0.5 0.438993193416 +UniRef50_Q9RUU2 DNA helicase RecQ 0.00371230123064 0.500000000001 0.496287698769 +UniRef50_A1SRV2 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.86561248455 0.5 -1.36561248455 +UniRef50_UPI0004574B02 PREDICTED 1.15510920278 0.5 -0.655109202779 +UniRef50_UPI00047B0F79 ATP dependent DNA helicase PcrA 1.07426568719 0.5 -0.574265687185 +UniRef50_J4Y9F0 0.190937646479 0.5 0.309062353521 +UniRef50_Q2SSQ6 ATP dependent 6 phosphofructokinase 0.703738779416 0.5 -0.203738779416 +UniRef50_UPI0003B58BDB glutathione synthetase 0.306022786776 0.5 0.193977213224 +UniRef50_D0D8F2 Tripartite ATP independent periplasmic transporter, DctQ component 1.23636986656 0.5 -0.736369866559 +UniRef50_P76168 Putative lambdoid prophage Qin defective integrase 2.55036946287 0.499999999998 -2.05036946287 +UniRef50_B9KWD2 Quinol oxidase subunit II 0.898563843703 0.5 -0.398563843703 +UniRef50_UPI00035F8901 hypothetical protein 2.23593000608 0.500000000001 -1.73593000608 +UniRef50_Q9RYN5 Cytochrome C6, putative 0.00119090131558 0.5 0.498809098685 +UniRef50_B7H202 Peptidase M16C associated family protein 0.0135810869913 0.5 0.486418913009 +UniRef50_Q5HPK4 1.35782464006 0.5 -0.857824640063 +UniRef50_Q2YSU1 Teichoic acid biosynthesis protein 3.76632255831 0.500000000002 -3.26632255831 +UniRef50_UPI000479479D family 2 glycosyl transferase 2.1309772669 0.5 -1.6309772669 +UniRef50_A4WRV1 Transport associated 0.689498569134 0.5 -0.189498569134 +UniRef50_T2GRR2 0.31564828419 0.5 0.18435171581 +UniRef50_Q7NPI6 Glutamate 5 kinase 0.213639431264 0.5 0.286360568736 +UniRef50_A4WRB0 Spheroidene monooxygenase 1.78399746845 0.5 -1.28399746845 +UniRef50_Q6GJ94 Putative long chain fatty acid CoA ligase VraA 3.35292748976 0.5 -2.85292748976 +UniRef50_Q6CS32 KLLA0D04378p 0.192624872403 0.5 0.307375127597 +UniRef50_A5IV89 17.1318286678 0.500000000016 -16.6318286678 +UniRef50_UPI00047ED515 cobyrinic acid a c diamide adenosyltransferase 0.0321339764995 0.5 0.4678660235 +UniRef50_UPI000407EA99 hypothetical protein 0.56408950486 0.5 -0.0640895048597 +UniRef50_Q67MF5 Lipoyl synthase 0.0770377804096 0.5 0.42296221959 +UniRef50_A7X0W1 Phosphoribosylformylglycinamidine synthase 2 2.30389991659 0.500000000001 -1.80389991659 +UniRef50_N2V265 Glycosyltransferase like 2 family protein 0.615136919141 0.5 -0.115136919141 +UniRef50_Q5SHZ8 8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase 0.00423245733977 0.5 0.495767542661 +UniRef50_D3HNL5 Cytochrome c oxidase subunit 2 1.73445282497 0.500000000002 -1.23445282497 +UniRef50_B4D9A7 Cobyrinic acid ac diamide synthase 0.344554985416 0.5 0.155445014584 +UniRef50_G7M7X4 Replisome organizer region containing protein 0.35120202868 0.5 0.14879797132 +UniRef50_Q67PR4 Methionyl tRNA formyltransferase 0.120860229593 0.5 0.379139770407 +UniRef50_G0D6I9 17.8894373269 0.499999999994 -17.3894373269 +UniRef50_Q9ZMH8 Putative zinc metalloprotease jhp_0242 0.0182209263305 0.5 0.48177907367 +UniRef50_P33345 Putative molybdate metabolism regulator 2.54703101705 0.5 -2.04703101705 +UniRef50_V5SX49 Chemotaxis protein CheY 0.16333717517 0.5 0.33666282483 +UniRef50_F3CHT8 Histidine lysine arginine ornithine ABC transporter permease HisM 0.116933931117 0.5 0.383066068882 +UniRef50_UPI0004010090 NUDIX hydrolase 4.90404039506 0.500000000004 -4.40404039506 +UniRef50_UPI0003A6958B DNA polymerase IV 0.251591642076 0.5 0.248408357924 +UniRef50_UPI0003695FA0 hypothetical protein 0.368580173363 0.5 0.131419826637 +UniRef50_B5XPC8 Uridine kinase 0.0171238374345 0.5 0.482876162565 +UniRef50_S2IZA5 0.167111465096 0.5 0.332888534904 +UniRef50_V5T4Y9 AraC family transcriptional regulator 2.41825878408 0.500000000002 -1.91825878408 +UniRef50_Q1LLQ3 Cbb3 type cytochrome oxidase, subunit I 0.0310194323947 0.5 0.468980567605 +UniRef50_X1XSD9 2.50987806018 0.499999999999 -2.00987806018 +UniRef50_Z2CD30 4.45514477173 0.500000000004 -3.95514477174 +UniRef50_Q9RUE5 0.00644351244413 0.5 0.493556487556 +UniRef50_Q9RUE6 0.00252589560198 0.5 0.497474104398 +UniRef50_UPI0003728022 hypothetical protein 0.191613504576 0.5 0.308386495423 +UniRef50_C1CRM5 0.00377359975672 0.5 0.496226400244 +UniRef50_L0KKT8 0.465773438501 0.5 0.0342265614988 +UniRef50_R4QK25 GTPase 0.0175053892951 0.5 0.482494610705 +UniRef50_Q98QH1 Lysine tRNA ligase 1 0.254292029427 0.5 0.245707970573 +UniRef50_UPI00040189EA C4 dicarboxylate ABC transporter permease 3.31390107304 0.5 -2.81390107304 +UniRef50_P77187 0.705870998851 0.5 -0.205870998851 +UniRef50_W8T289 0.6872840113 0.5 -0.1872840113 +UniRef50_X5QID8 Transposase 2.6415479832 0.5 -2.1415479832 +UniRef50_UPI0002EB2D0F hypothetical protein 0.944050190455 0.5 -0.444050190455 +UniRef50_Q1QBW0 Lipid A export ATP binding permease protein MsbA 0.00942491595211 0.5 0.490575084048 +UniRef50_E5VNE0 DNA replication and repair protein RecF 0.19427835333 0.5 0.30572164667 +UniRef50_UPI00047C7FF5 hypothetical protein 4.00945953852 0.500000000001 -3.50945953852 +UniRef50_UPI000474B713 phosphoglucomutase 0.690317065188 0.5 -0.190317065188 +UniRef50_UPI0003653228 hypothetical protein 0.266018513272 0.5 0.233981486728 +UniRef50_E3A662 Signal recognition particle receptor FtsY 0.306246602749 0.5 0.193753397251 +UniRef50_B0V727 0.0111039596011 0.5 0.488896040399 +UniRef50_UPI0003772B6E hypothetical protein 0.485711428816 0.5 0.0142885711837 +UniRef50_E8YFF3 Ribonucleoside diphosphate reductase 0.661143755729 0.5 -0.161143755729 +UniRef50_J7QHS4 0.323319840841 0.5 0.176680159159 +UniRef50_D3DZ50 Nicotinate phosphoribosyltransferase 3.21213979749 0.5 -2.71213979749 +UniRef50_W1T644 Fructoselysine transporter 0.319560307807 0.5 0.180439692193 +UniRef50_X7F912 Malto oligosyltrehalose trehalohydrolase 2.21179001067 0.5 -1.71179001067 +UniRef50_Q28R66 Anthranilate phosphoribosyltransferase 0.893366436311 0.5 -0.393366436311 +UniRef50_UPI00037E8315 hypothetical protein 0.654474845483 0.5 -0.154474845483 +UniRef50_U6IKF5 Adenylyltransferase and sulfurtransferase 0.220066854249 0.5 0.279933145751 +UniRef50_P05846 Transposon Tn7 transposition protein TnsC 0.00966083080904 0.5 0.490339169191 +UniRef50_S5Y8G8 Penicillin binding protein, 1A family 2.79700908605 0.500000000002 -2.29700908605 +UniRef50_P0AFM0 Paraquat inducible protein A 3.93638255829 0.500000000002 -3.43638255829 +UniRef50_Q6GHW0 UPF0348 protein SAR1099 1.72346255511 0.499999999998 -1.22346255511 +UniRef50_UPI00042C781F PREDICTED 0.193907707459 0.5 0.306092292541 +UniRef50_G7U8E3 Adenosylmethionine 8 amino 7 oxononanoate transaminase 0.00888539028132 0.5 0.491114609719 +UniRef50_P52044 1.00516079053 0.5 -0.505160790527 +UniRef50_O50274 Bifunctional enzyme CysN CysC 1.005144514 0.5 -0.505144513999 +UniRef50_F4N7B8 Pirin like protein PA2418 0.352654121501 0.5 0.147345878499 +UniRef50_W5X7C0 NADH dependent flavin oxidoreductase 0.221281958313 0.499999999999 0.278718041688 +UniRef50_V9TYA5 Beta ketoadipate enol lactone hydrolase 1.74110206756 0.5 -1.24110206756 +UniRef50_X8AP60 Recombination O family protein 0.125671044243 0.5 0.374328955757 +UniRef50_Q9RTA5 0.0171420063335 0.500000000001 0.482857993666 +UniRef50_UPI000225F589 hypothetical protein 0.298081839147 0.5 0.201918160853 +UniRef50_Q9A545 5 hydroxyisourate hydrolase 0.0631784919529 0.5 0.436821508047 +UniRef50_Q9RTA6 0.0014141489281 0.5 0.498585851072 +UniRef50_C1CUQ9 Translation initiation factor IF 2 0.00293045021876 0.5 0.497069549781 +UniRef50_UPI000478DE35 cytochrome Cbb3 0.717981013375 0.5 -0.217981013375 +UniRef50_UPI000361F45B hypothetical protein 0.0330230175168 0.5 0.466976982483 +UniRef50_C7BXE2 0.00950306276089 0.5 0.490496937239 +UniRef50_F3S6G5 0.266408594782 0.5 0.233591405218 +UniRef50_P34843 Cytochrome c oxidase subunit 3 0.248892774338 0.5 0.251107225662 +UniRef50_UPI00047810F9 hypothetical protein 0.224494824425 0.5 0.275505175575 +UniRef50_H6LDW2 UDP galactopyranose mutase Glf 0.909135537419 0.5 -0.409135537419 +UniRef50_W6V4Z4 0.0158973033073 0.5 0.484102696693 +UniRef50_D5AQK7 Membrane protein, putative 5.91737402925 0.500000000002 -5.41737402926 +UniRef50_B7LM74 Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase 1.11831708574 0.500000000001 -0.618317085742 +UniRef50_P74061 Ribulose phosphate 3 epimerase 0.0222149967175 0.5 0.477785003283 +UniRef50_UPI000478D8DB hypothetical protein 0.212377965173 0.5 0.287622034827 +UniRef50_A2VSU2 NAD NADP transhydrogenase beta subunit 0.032908922805 0.5 0.467091077195 +UniRef50_Q01A90 WGS project CAID00000000 data, contig chromosome 04 1.21474173771 0.5 -0.714741737715 +UniRef50_UPI0004631E88 hypothetical protein 3.43974593429 0.499999999999 -2.93974593429 +UniRef50_P59522 Ribosomal RNA small subunit methyltransferase H 0.853194026816 0.5 -0.353194026816 +UniRef50_I0HWW2 0.551070507241 0.5 -0.0510705072413 +UniRef50_UPI000370D7A6 hypothetical protein 14.2497661846 0.499999999995 -13.7497661846 +UniRef50_Q54DD3 Aminomethyltransferase, mitochondrial 1.12691212399 0.5 -0.626912123993 +UniRef50_Q8DPZ3 Release factor glutamine methyltransferase 0.895324887289 0.5 -0.395324887289 +UniRef50_UPI000362B874 hypothetical protein 0.107738944068 0.5 0.392261055932 +UniRef50_W8TSF6 16.9248450972 0.499999999999 -16.4248450972 +UniRef50_Q57NU9 GTP cyclohydrolase 2 11.8748318372 0.499999999997 -11.3748318372 +UniRef50_B7V9G1 1.6892129529 0.5 -1.1892129529 +UniRef50_UPI00016C4BB1 hypothetical protein 0.00292023766843 0.5 0.497079762331 +UniRef50_D5ALH8 Lipoprotein, putative 5.56616371176 0.500000000003 -5.06616371176 +UniRef50_J3D958 1.45292092273 0.499999999999 -0.95292092273 +UniRef50_H9KM75 1.20280899261 0.5 -0.702808992614 +UniRef50_F8GU79 0.187374565117 0.5 0.312625434883 +UniRef50_Q9KZV6 Polyphosphate kinase 0.012971841083 0.5 0.487028158917 +UniRef50_C1CQE1 UPF0340 protein SPT_0687 0.497434256553 0.5 0.00256574344651 +UniRef50_UPI0004660C96 amino acid lyase 0.269379153918 0.5 0.230620846082 +UniRef50_F0P462 1.37991154164 0.499999999998 -0.879911541642 +UniRef50_UPI00036A8875 hypothetical protein 1.27561159467 0.499999999999 -0.775611594673 +UniRef50_G8RED1 Virulence associated cell wall anchored protein SasG 0.538399938518 0.5 -0.0383999385178 +UniRef50_UPI0004786393 sugar ABC transporter permease 0.928159101781 0.5 -0.428159101781 +UniRef50_U6KDN7 0.255097441156 0.5 0.244902558844 +UniRef50_H9KJ92 0.00100345695536 0.5 0.498996543044 +UniRef50_UPI000470B6F6 DEAD DEAH box helicase 0.502177976024 0.5 -0.00217797602354 +UniRef50_B2UUU1 Purine nucleoside phosphorylase DeoD type 0.00208258451943 0.5 0.49791741548 +UniRef50_P42693 Peptidyl prolyl cis trans isomerase 0.0442915798184 0.5 0.455708420181 +UniRef50_UPI000472ECAA UDP N acetylmuramate alanine ligase 1.59665230125 0.5 -1.09665230125 +UniRef50_I7DYY9 Cell division protein ftsW 0.970845992 0.5 -0.470845992 +UniRef50_A6LVT1 0.0190531254295 0.500000000001 0.48094687457 +UniRef50_P44951 Diaminobutyrate 2 oxoglutarate aminotransferase 0.0537438566223 0.5 0.446256143378 +UniRef50_A6LVT2 0.644633959911 0.5 -0.144633959911 +UniRef50_Q3IVS3 RES domain containing protein 1.97715634495 0.500000000001 -1.47715634495 +UniRef50_Q31I68 Ribosomal RNA small subunit methyltransferase H 1.76876847631 0.500000000001 -1.26876847631 +UniRef50_M1MGS7 Polysaccharide deacetylase 0.546225875828 0.5 -0.0462258758279 +UniRef50_G0GLQ7 ATP dependent RNA helicase HrpB 3.39318430529 0.5 -2.89318430529 +UniRef50_UPI00021982B8 hypothetical protein, partial 0.0660812028652 0.5 0.433918797135 +UniRef50_M4R0W4 Metalloendopeptidase 0.0413121267122 0.5 0.458687873288 +UniRef50_UPI00034A5B30 CoA transferase 0.0206298963744 0.5 0.479370103626 +UniRef50_F9P4K2 Putative IS1167, transposase 0.13227478539 0.5 0.36772521461 +UniRef50_Q89SJ2 Blr2408 protein 0.584507479648 0.5 -0.0845074796478 +UniRef50_Q7TTY7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.342486749053 0.5 0.157513250947 +UniRef50_A3LIZ0 0.47380020305 0.5 0.0261997969498 +UniRef50_Q9I700 Beta alanine pyruvate aminotransferase 0.125877328098 0.5 0.374122671902 +UniRef50_U9I2I4 1.18521420692 0.5 -0.685214206924 +UniRef50_B6V383 Tra8 1.41042074014 0.5 -0.910420740135 +UniRef50_P34030 DNA gyrase subunit A 0.232506289826 0.5 0.267493710174 +UniRef50_Q9HXI4 Inositol 1 monophosphatase 0.721698193515 0.5 -0.221698193515 +UniRef50_UPI00046A5EF5 hypothetical protein 0.81322429717 0.5 -0.31322429717 +UniRef50_Q9RS69 0.00733132287569 0.5 0.492668677124 +UniRef50_Q7A7F8 5.85766528932 0.499999999993 -5.35766528932 +UniRef50_Q16DP8 Chemotactic signal response protein, putative 1.0245325105 0.5 -0.5245325105 +UniRef50_P12782 Phosphoglycerate kinase, chloroplastic 0.0497541846113 0.5 0.450245815389 +UniRef50_UPI0001BF6917 hypothetical protein SMAC_10596, partial 0.301543074116 0.5 0.198456925884 +UniRef50_Q3IVS7 1.67869436271 0.5 -1.17869436271 +UniRef50_Q3IVS4 1.56567904886 0.5 -1.06567904886 +UniRef50_Q3IVS5 0.974710131804 0.5 -0.474710131804 +UniRef50_Q0AVV3 3 oxoacyl [acyl carrier protein] synthase 3 2.52958172558 0.5 -2.02958172558 +UniRef50_Q3IVS1 1.88699014519 0.5 -1.38699014519 +UniRef50_P72161 D alanyl D alanine endopeptidase 2.21228315682 0.5 -1.71228315682 +UniRef50_K2AFL1 Type I secretion system ATPase 0.956939393014 0.5 -0.456939393014 +UniRef50_G2T6A4 0.374402677701 0.5 0.125597322299 +UniRef50_Q390S8 Drug resistance transporter EmrB QacA subfamily 1.1258444223 0.5 -0.625844422298 +UniRef50_UPI00036D110C hypothetical protein 0.626766616258 0.5 -0.126766616258 +UniRef50_A5UM36 Predicted RecB family exonuclease 1.5305265586 0.500000000001 -1.0305265586 +UniRef50_UPI0004202255 hypothetical protein 0.346616480827 0.5 0.153383519173 +UniRef50_E8SNW4 0.00962887975056 0.5 0.490371120249 +UniRef50_UPI000417C86E heme biosynthesis protein HemY 0.683184467692 0.5 -0.183184467692 +UniRef50_UPI0003B5B9BE leucyl phenylalanyl tRNA protein transferase 0.0836467124547 0.5 0.416353287545 +UniRef50_UPI00047B9601 hypothetical protein 0.444280160417 0.5 0.0557198395834 +UniRef50_UPI0004642A7D hypothetical protein 0.193900744926 0.5 0.306099255074 +UniRef50_U3T4I1 Phosphate ABC transporter periplasmic substrate binding protein 0.00125773440721 0.5 0.498742265593 +UniRef50_UPI00035E6AC5 hypothetical protein 0.0448976121329 0.5 0.455102387867 +UniRef50_Q67P77 Polyribonucleotide nucleotidyltransferase 0.00269702017413 0.5 0.497302979826 +UniRef50_UPI0003B791AF hypothetical protein, partial 0.550974880906 0.5 -0.0509748809062 +UniRef50_Q55141 Acetolactate synthase small subunit 0.0309515402992 0.5 0.469048459701 +UniRef50_B9NXE5 Calcium binding hemolysin protein, putative 0.647616216702 0.5 -0.147616216702 +UniRef50_I6SUE0 ABC transporter permease 4.69183437202 0.500000000003 -4.19183437203 +UniRef50_A6DDD4 0.0516883288876 0.5 0.448311671112 +UniRef50_D6B6F5 AsnC family transcriptional regulator 0.237186815893 0.5 0.262813184107 +UniRef50_F4DU59 Protein disulfide isomerase like protein 1.44756046519 0.5 -0.947560465194 +UniRef50_Q4FS24 Putative phosphoenolpyruvate synthase regulatory protein 0.117377750976 0.5 0.382622249024 +UniRef50_A1B8P9 5.72245858892 0.499999999999 -5.22245858892 +UniRef50_R5TVL0 3.64043044889 0.500000000001 -3.14043044889 +UniRef50_C5YKS4 3.73737842059 0.500000000003 -3.23737842059 +UniRef50_UPI000365F03D hypothetical protein 0.255572488661 0.5 0.244427511339 +UniRef50_UPI0004724D34 hypothetical protein 0.15904366304 0.5 0.340956336959 +UniRef50_B7MTN6 Thiamine kinase 3.78949387314 0.5 -3.28949387314 +UniRef50_G7VSI0 0.446778629398 0.5 0.0532213706021 +UniRef50_K6UQ90 0.340153477648 0.5 0.159846522352 +UniRef50_S4Y5B1 0.15947999818 0.5 0.34052000182 +UniRef50_A7ZR32 0.0149090181961 0.5 0.485090981804 +UniRef50_C0BG39 0.264073087209 0.5 0.235926912791 +UniRef50_G1D4J4 Gp80 1.40450745272 0.5 -0.904507452719 +UniRef50_M2QS37 0.156476304462 0.5 0.343523695538 +UniRef50_A6M2E5 Sulfatase 0.0267883821187 0.5 0.473211617882 +UniRef50_Q3IXU6 2.69630598779 0.5 -2.19630598779 +UniRef50_UPI000382350E hypothetical protein 0.0244960432553 0.500000000001 0.475503956744 +UniRef50_M9VQS2 0.569971385556 0.5 -0.0699713855565 +UniRef50_A7ADI2 0.0279722509584 0.499999999999 0.472027749042 +UniRef50_E5AMF6 Ammonium transporter Methylammonium transporter 0.0200566206014 0.500000000001 0.479943379398 +UniRef50_A7ADI0 1.1549693563 0.5 -0.654969356296 +UniRef50_A6LZB2 FMN binding domain protein 0.0680999477816 0.5 0.431900052218 +UniRef50_C6STS8 1.63462094929 0.499999999999 -1.13462094929 +UniRef50_UPI00016AF87E drug resistance transporter, EmrB QacA family protein 0.81254434286 0.5 -0.31254434286 +UniRef50_P75839 UPF0702 transmembrane protein YcaP 1.26587940118 0.5 -0.765879401184 +UniRef50_R1DSU7 0.328270641551 0.5 0.171729358449 +UniRef50_A2BIZ8 S adenosylmethionine synthase 2.82841763353 0.500000000002 -2.32841763353 +UniRef50_B0V5M9 0.01617715062 0.5 0.48382284938 +UniRef50_P00909 Tryptophan biosynthesis protein TrpCF 1.79283857301 0.5 -1.29283857301 +UniRef50_O52733 D xylose proton symporter 0.0389519094553 0.5 0.461048090545 +UniRef50_UPI00036FFA67 hypothetical protein, partial 0.0189049372462 0.5 0.481095062754 +UniRef50_B0VLP6 0.0146852983912 0.5 0.485314701609 +UniRef50_Q89IB6 Phosphoribosylformylglycinamidine synthase 1 0.668616566146 0.5 -0.168616566146 +UniRef50_Q9RX17 Virulence factor related protein 0.00324232934743 0.5 0.496757670653 +UniRef50_E0XV99 0.695493583042 0.5 -0.195493583042 +UniRef50_F8KHS4 RNA pseudouridylate synthase 1.55691157604 0.499999999998 -1.05691157604 +UniRef50_B0RBL3 Glutamate 1 semialdehyde 2,1 aminomutase 0.0977176018258 0.5 0.402282398174 +UniRef50_N9IVN2 0.0387990465035 0.5 0.461200953497 +UniRef50_E3HHT4 TRAP transporter solute receptor, TAXI family protein 3 0.943698746787 0.5 -0.443698746787 +UniRef50_B3W6W6 Tryptophan synthase beta chain 0.426209169419 0.5 0.0737908305809 +UniRef50_UPI00046EC1CC hypothetical protein, partial 0.038090399382 0.5 0.461909600618 +UniRef50_D8JFA0 0.00445431698992 0.5 0.49554568301 +UniRef50_Q2YTA2 Dephospho CoA kinase 7.97773130828 0.5 -7.47773130828 +UniRef50_H3UL21 0.340949376982 0.5 0.159050623018 +UniRef50_A6H1Q5 NADH quinone oxidoreductase subunit I 0.189513852241 0.5 0.310486147759 +UniRef50_Q9JZ44 30S ribosomal protein S1 0.57057172797 0.5 -0.0705717279697 +UniRef50_H0PUC5 Two component heavy metal response transcriptional regulator, winged helix family 0.051536934109 0.5 0.448463065891 +UniRef50_A9KHN3 Acetylglutamate kinase 0.0277897483224 0.500000000001 0.472210251677 +UniRef50_A5WF94 3 ketoacyl CoA thiolase 0.385392817158 0.5 0.114607182842 +UniRef50_Q87G35 Putative ABC transporter ATP binding protein VPA1482 0.393796738808 0.5 0.106203261192 +UniRef50_UPI0003B5B988 transcription elongation factor NusA 0.445554344457 0.5 0.0544456555427 +UniRef50_R5Q2U1 0.0122532332019 0.5 0.487746766798 +UniRef50_D9VU00 Dihydrodipicolinate reductase 0.320740111852 0.5 0.179259888148 +UniRef50_G4NFF6 0.448794673784 0.5 0.0512053262161 +UniRef50_UPI00037B10ED hypothetical protein 0.419135170086 0.5 0.0808648299142 +UniRef50_P45135 Protein mrp homolog 0.931295698288 0.5 -0.431295698288 +UniRef50_H8WB63 0.574698884598 0.5 -0.0746988845983 +UniRef50_A6SU21 SugE like protein 0.170022471461 0.5 0.329977528539 +UniRef50_UPI000472171C hypothetical protein 0.0164425496154 0.5 0.483557450385 +UniRef50_UPI00035A1B1C PREDICTED 0.314182153601 0.5 0.185817846399 +UniRef50_W8FIF9 2.76206227294 0.5 -2.26206227294 +UniRef50_W8WQR1 1.437029565 0.5 -0.937029564998 +UniRef50_F7ZBE6 Protein MazG 6.61218044381 0.499999999998 -6.11218044381 +UniRef50_P58213 1.27338538885 0.5 -0.773385388853 +UniRef50_F2HMQ5 N acetylglucosamine 6 phosphate deacetylase 0.428919430875 0.5 0.0710805691249 +UniRef50_D4MT97 Predicted Zn dependent protease 0.103102614935 0.5 0.396897385065 +UniRef50_UPI000475EEE1 glycine cleavage system protein H 1.5466357207 0.5 -1.0466357207 +UniRef50_E6SHW8 AMP dependent synthetase and ligase 0.00141528705397 0.5 0.498584712946 +UniRef50_A3SWD6 0.887293282351 0.5 -0.387293282351 +UniRef50_B1MZ61 Glycine tRNA ligase alpha subunit 1.01751379496 0.5 -0.517513794956 +UniRef50_UPI00037B0949 hypothetical protein 0.127661325024 0.5 0.372338674976 +UniRef50_A7ZV33 Oligoribonuclease 0.562480222754 0.5 -0.0624802227541 +UniRef50_UPI0002889CD1 DNA mismatch repair protein MutS 0.0542136507304 0.499999999999 0.44578634927 +UniRef50_P0ABD2 0.19876121364 0.5 0.30123878636 +UniRef50_A6LZ65 Citrate transporter 0.171647244544 0.5 0.328352755457 +UniRef50_UPI000369A32E MULTISPECIES 0.423849837953 0.5 0.0761501620474 +UniRef50_I0IBX7 0.406358212866 0.5 0.0936417871339 +UniRef50_F8F839 Acetolactate synthase large subunit 0.109747068516 0.5 0.390252931484 +UniRef50_C2QP87 0.0109500741307 0.5 0.489049925869 +UniRef50_I3UCI5 Amino acid ABC transporter ATPase 3.42367561344 0.500000000001 -2.92367561344 +UniRef50_W7CBE0 0.562896657345 0.5 -0.0628966573455 +UniRef50_C1AA13 Twitching mobility protein 0.0410995002489 0.5 0.458900499751 +UniRef50_G7M9D3 Cell envelope related transcriptional attenuator 0.236363667125 0.5 0.263636332875 +UniRef50_UPI0003B60D83 MFS transporter, partial 0.244718718573 0.5 0.255281281427 +UniRef50_UPI000465FF4A chemotaxis protein CheW 0.347448562727 0.5 0.152551437273 +UniRef50_D3QH68 TetR family regulatory protein 6.17164133487 0.499999999998 -5.67164133486 +UniRef50_Q9RR78 Protoheme IX farnesyltransferase 0.000890537469595 0.5 0.499109462531 +UniRef50_A8AYI7 N acetyl gamma glutamyl phosphate reductase 2.54382741863 0.5 -2.04382741863 +UniRef50_UPI00037EBF1E hypothetical protein 0.2965405265 0.5 0.2034594735 +UniRef50_A1TJ50 LemA family protein 0.0630160558251 0.5 0.436983944175 +UniRef50_UPI000469FCDE hypothetical protein 7.31539149357 0.500000000001 -6.81539149357 +UniRef50_UPI00046F4540 hypothetical protein 0.156851443566 0.5 0.343148556434 +UniRef50_UPI0003C13F1D PREDICTED 0.329881672246 0.5 0.170118327754 +UniRef50_I4D4X7 0.319039236722 0.5 0.180960763278 +UniRef50_UPI00037D4FA3 hypothetical protein 0.36096817738 0.5 0.13903182262 +UniRef50_Q7VQS0 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.774586468925 0.5 -0.274586468925 +UniRef50_H8GZE1 1.09817519631 0.5 -0.598175196314 +UniRef50_UPI00037860D6 hypothetical protein 0.257486996854 0.5 0.242513003146 +UniRef50_M5AS85 1.47465881304 0.5 -0.974658813037 +UniRef50_A5IQJ5 Serine type D Ala D Ala carboxypeptidase 4.45414060651 0.5 -3.95414060651 +UniRef50_K5C8L6 Protein containing YCII related domain protein 0.795786559781 0.5 -0.295786559781 +UniRef50_C5YUZ9 0.00966287559203 0.5 0.490337124408 +UniRef50_F2AB45 0.377479722138 0.5 0.122520277862 +UniRef50_UPI00035D3DCC hypothetical protein 4.85139207106 0.500000000001 -4.35139207106 +UniRef50_Q8R7K0 L threonine 3 dehydrogenase 0.293867790247 0.5 0.206132209753 +UniRef50_P77258 N ethylmaleimide reductase 0.710566791421 0.5 -0.210566791421 +UniRef50_UPI000373C080 hypothetical protein 4.9635264622 0.5 -4.46352646221 +UniRef50_Q899P3 3 oxoacyl [acyl carrier protein] synthase 3 7.39035463599 0.500000000002 -6.89035463599 +UniRef50_UPI00026577FF PREDICTED 0.699212301456 0.5 -0.199212301456 +UniRef50_A7ZR14 Aminomethyltransferase 2.09111086039 0.500000000002 -1.59111086039 +UniRef50_UPI00037DABB6 hypothetical protein 0.31336102193 0.5 0.18663897807 +UniRef50_UPI00047B26D6 30S ribosomal protein S2 0.606625010689 0.5 -0.106625010689 +UniRef50_UPI00045613AA hypothetical protein PFL1_01689 0.302839843189 0.5 0.197160156811 +UniRef50_Q48UW8 Endoribonuclease YbeY 3.97934758168 0.5 -3.47934758168 +UniRef50_UPI000429C143 hypothetical protein 0.3411917385 0.5 0.1588082615 +UniRef50_P25129 Attachment protein G3P 3.0256156629 0.500000000004 -2.5256156629 +UniRef50_UPI0003B5C03B phospholipase 0.456733314241 0.5 0.0432666857594 +UniRef50_UPI000333464B 0.603458162684 0.5 -0.103458162684 +UniRef50_Q2NI01 MrtD 2.52425342602 0.5 -2.02425342602 +UniRef50_UPI00023B2A49 0.0445185579933 0.5 0.455481442007 +UniRef50_M1MHF7 0.0780224076667 0.5 0.421977592333 +UniRef50_D3E0C7 Energy converting hydrogenase B subunit N EhbN 1.12081105947 0.5 -0.620811059473 +UniRef50_UPI000364325F hypothetical protein 0.164216933996 0.5 0.335783066004 +UniRef50_A3MLM0 Deoxycytidine triphosphate deaminase 0.329440529691 0.5 0.170559470309 +UniRef50_D2BB98 Fibrocystin L like protein 0.245417202188 0.5 0.254582797812 +UniRef50_F9Z2N2 4 hydroxybutyrate coenzyme A transferase 0.00734548784583 0.5 0.492654512154 +UniRef50_UPI00047E641A DNA mismatch repair protein MutL 0.20547146369 0.5 0.29452853631 +UniRef50_A3PH43 Cell wall hydrolase, SleB 0.758329314948 0.5 -0.258329314948 +UniRef50_C1N9N9 Predicted protein 0.543760531184 0.5 -0.0437605311842 +UniRef50_A9AQ95 Major facilitator superfamily MFS_1 0.517375182794 0.5 -0.0173751827939 +UniRef50_D3DZP5 Peptidase U62 family 1.22694119518 0.5 -0.726941195181 +UniRef50_A4KVC4 1.39198993896 0.5 -0.891989938965 +UniRef50_Q8CTX4 1.5725344751 0.500000000001 -1.0725344751 +UniRef50_A4WT83 Cytochrome c, monohaem 1.49323063484 0.5 -0.993230634842 +UniRef50_UPI00031E94BD hypothetical protein 0.440992319787 0.5 0.0590076802128 +UniRef50_P37923 Chaperone protein FimC 0.21542824249 0.5 0.28457175751 +UniRef50_UPI00046D0AE5 30S ribosomal protein S2 0.547490906157 0.5 -0.0474909061568 +UniRef50_UPI0003EF5726 hypothetical protein 1.89955867216 0.5 -1.39955867216 +UniRef50_UPI0004651F70 hypothetical protein, partial 0.685789458228 0.5 -0.185789458228 +UniRef50_Q8CTX9 1.35988981508 0.499999999999 -0.859889815078 +UniRef50_U5MPW8 Lysophospholipase L2 0.155871219167 0.5 0.344128780833 +UniRef50_D8JMF9 0.0612211834794 0.5 0.438778816521 +UniRef50_B3ZX35 Protein rlx 3.4952071459 0.499999999995 -2.9952071459 +UniRef50_UPI0003F4A454 hypothetical protein TREMEDRAFT_73314 0.793911254373 0.5 -0.293911254373 +UniRef50_A6M075 Aminotransferase class III 0.114519286191 0.5 0.385480713809 +UniRef50_I3TH40 Aromatic compounds catabolic protein 0.0217301709674 0.5 0.478269829033 +UniRef50_UPI0003B5A455 DNA directed RNA polymerase subunit alpha 0.427062604307 0.5 0.0729373956927 +UniRef50_A4IQZ4 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.270165687268 0.5 0.229834312732 +UniRef50_G8AR80 1.05956547038 0.5 -0.559565470376 +UniRef50_M4FRG3 0.450093052785 0.5 0.0499069472154 +UniRef50_P55468 dTDP 4 dehydrorhamnose 3,5 epimerase 0.43933795377 0.5 0.0606620462298 +UniRef50_P44740 Probable tRNA N6) methyltransferase 7.16078686783 0.500000000004 -6.66078686783 +UniRef50_Q2GCD8 DNA directed RNA polymerase subunit beta 0.29604537192 0.5 0.20395462808 +UniRef50_A0A017HAS6 0.412572421999 0.5 0.0874275780009 +UniRef50_X8LV27 8.70997357578 0.5 -8.20997357578 +UniRef50_R5PFJ6 Polar amino acid transport system substrate binding protein 0.397386876781 0.5 0.102613123219 +UniRef50_P77376 76.4042725215 0.500000000005 -75.9042725215 +UniRef50_P44916 Octaprenyl diphosphate synthase 0.609297948672 0.5 -0.109297948672 +UniRef50_P77375 2.27652056635 0.499999999998 -1.77652056635 +UniRef50_B0V636 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 0.013101214598 0.5 0.486898785402 +UniRef50_Q9RAA9 DNA polymerase I 0.0454931427691 0.5 0.454506857231 +UniRef50_V9VRV3 5.34666767767 0.500000000001 -4.84666767767 +UniRef50_U3TV34 PoxB protein 0.43997433684 0.5 0.0600256631598 +UniRef50_Q83IY4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.127427625448 0.5 0.372572374552 +UniRef50_Q9HXY3 Putative zinc metalloprotease PA3649 0.875358335547 0.5 -0.375358335547 +UniRef50_UPI000463EF04 hypothetical protein 2.42189069801 0.5 -1.92189069801 +UniRef50_Y2C2K5 DNA gyrase subunit A 1.60591729315 0.5 -1.10591729315 +UniRef50_Q93JQ8 Argininosuccinate synthase 0.102700480706 0.5 0.397299519294 +UniRef50_G2JD71 0.513182488695 0.5 -0.0131824886951 +UniRef50_D3QGS2 1.61415580786 0.5 -1.11415580786 +UniRef50_UPI0003FE9842 hypothetical protein 0.152124077733 0.5 0.347875922267 +UniRef50_UPI0003B556E0 long chain fatty acid CoA ligase 0.583395935785 0.5 -0.0833959357852 +UniRef50_A7TDI2 Lipoyl synthase, mitochondrial 0.0765149778688 0.5 0.423485022131 +UniRef50_U0D4D4 Membrane associated protein uidC 0.922618810464 0.5 -0.422618810464 +UniRef50_C5D363 Ribosomal RNA small subunit methyltransferase A 1.21398740567 0.5 -0.713987405666 +UniRef50_Q5P9L5 GMP synthase [glutamine hydrolyzing] 0.0989571435412 0.499999999999 0.401042856459 +UniRef50_J3N4D6 6.48105748493 0.500000000002 -5.98105748494 +UniRef50_Q9RZ46 Minor tail protein gp26 related protein 0.00115052810082 0.5 0.498849471899 +UniRef50_A5EJD2 Leucyl phenylalanyl tRNA protein transferase 0.140215164157 0.5 0.359784835843 +UniRef50_C6SU64 0.64115278481 0.5 -0.14115278481 +UniRef50_Q1GWT5 Adenosylhomocysteinase 0.877121029332 0.5 -0.377121029332 +UniRef50_P27254 Probable GTPase ArgK 2.23454030088 0.5 -1.73454030088 +UniRef50_C3KLK5 Peroxiredoxin 6 0.0292679941809 0.5 0.470732005819 +UniRef50_Q0C1A6 Glutamate tRNA ligase 1 1.02835040394 0.5 -0.528350403936 +UniRef50_G2JIJ8 0.0138537894118 0.5 0.486146210588 +UniRef50_A6LX78 0.130219894076 0.5 0.369780105924 +UniRef50_F0MTD0 0.097225206922 0.5 0.402774793078 +UniRef50_U5MQI3 Thiamine biosynthesis lipoprotein ApbE 0.300119464909 0.5 0.199880535091 +UniRef50_A6LX73 0.189615898895 0.5 0.310384101105 +UniRef50_UPI00036C9D5C hypothetical protein 0.138375822892 0.5 0.361624177108 +UniRef50_A6LX76 0.312720403963 0.5 0.187279596037 +UniRef50_A0A023S2E8 Peptidase M23 0.00762132851574 0.5 0.492378671484 +UniRef50_F5M423 Methyltransferase type 12 0.854060706181 0.5 -0.354060706181 +UniRef50_K7RRT6 Kinase domain containing protein 0.0243703862731 0.5 0.475629613727 +UniRef50_G8N5W7 Inner membrane translocator 0.00320326065801 0.5 0.496796739342 +UniRef50_R0YL20 Filamentous hemagglutinin family N terminal domain protein 0.0245337640928 0.5 0.475466235907 +UniRef50_A5G215 0.405560134928 0.5 0.0944398650721 +UniRef50_P42811 Putative 26S protease regulatory subunit homolog MTBMA_c13930 3.73492847625 0.5 -3.23492847626 +UniRef50_I7ITF3 NADH ubiquinone oxidoreductase subunit 0.144370410335 0.5 0.355629589665 +UniRef50_M1MT68 Peptidase U61 LD carboxypeptidase A 0.0278979238227 0.5 0.472102076178 +UniRef50_Q21M93 DNA directed RNA polymerase subunit beta 0.0154570519324 0.5 0.484542948068 +UniRef50_Q6MMA3 Methionine tRNA ligase 0.510786336676 0.5 -0.0107863366764 +UniRef50_A7WZS8 Triosephosphate isomerase 1.86124487968 0.5 -1.36124487968 +UniRef50_R4ZRY7 0.796685884379 0.5 -0.296685884379 +UniRef50_UPI000475A496 hypothetical protein 0.153237664616 0.5 0.346762335384 +UniRef50_UPI00046686EA amidohydrolase 0.0956509336226 0.5 0.404349066378 +UniRef50_D8TSH0 1.19065207361 0.5 -0.690652073611 +UniRef50_B9DIX2 Probable cytosol aminopeptidase 2.16684677228 0.499999999998 -1.66684677228 +UniRef50_E7PW89 Sensor histidine kinase 1.43992823445 0.5 -0.939928234453 +UniRef50_B9DZ45 0.189439816446 0.5 0.310560183555 +UniRef50_UPI0003B2E548 cation 1.53992182958 0.5 -1.03992182958 +UniRef50_A3PHP3 2.52726334503 0.500000000003 -2.02726334504 +UniRef50_UPI000414700A hypothetical protein 0.334839502066 0.5 0.165160497934 +UniRef50_UPI0003B3DD40 PhoP family transcriptional regulator 0.219504023727 0.5 0.280495976273 +UniRef50_UPI000371B1FC hypothetical protein, partial 0.42188432398 0.5 0.0781156760203 +UniRef50_D8IJC7 Glycerol dehydrogenase 1.08775626253 0.5 -0.587756262534 +UniRef50_D3F4J3 Transcriptional regulator, PadR like family 0.18723228476 0.5 0.31276771524 +UniRef50_Q03JI6 CRISPR associated endonuclease Cas9 2 2.46062967624 0.5 -1.96062967624 +UniRef50_UPI000426A521 dihydrolipoamide succinyltransferase 0.0479988863739 0.500000000001 0.452001113625 +UniRef50_UPI0004698685 hypothetical protein 0.749329451949 0.5 -0.249329451949 +UniRef50_A0A038FK84 Hydrogenase maturation protein 2.47783941713 0.5 -1.97783941713 +UniRef50_UPI00035FEE6E hypothetical protein 0.0741295868134 0.5 0.425870413186 +UniRef50_UPI0002F0DDC3 hypothetical protein 3.2555857339 0.500000000003 -2.7555857339 +UniRef50_UPI00029B3C33 transcriptional regulator 0.267807856955 0.5 0.232192143045 +UniRef50_UPI000475F4D6 macrolide ABC transporter ATP binding protein 0.119533392774 0.5 0.380466607226 +UniRef50_Q98HW8 Prolipoprotein diacylglyceryl transferase 1.18343671792 0.5 -0.683436717919 +UniRef50_P32694 2.28065240931 0.499999999999 -1.78065240931 +UniRef50_J3LNJ2 0.32495760455 0.5 0.17504239545 +UniRef50_P32690 0.43805583543 0.5 0.0619441645702 +UniRef50_UPI0001D2E55C hypothetical protein 3.37590573379 0.5 -2.87590573379 +UniRef50_P20368 Alcohol dehydrogenase 1 0.889719116055 0.5 -0.389719116055 +UniRef50_A6LVI5 0.0572436788693 0.5 0.442756321131 +UniRef50_UPI0002FA2E2D hypothetical protein 0.011570327874 0.5 0.488429672126 +UniRef50_K6YA48 1.2630023346 0.5 -0.763002334599 +UniRef50_R4X5W4 0.293338818891 0.5 0.206661181109 +UniRef50_P15202 Peroxisomal catalase A 0.318889821515 0.5 0.181110178485 +UniRef50_UPI0003F5184A hypothetical protein 1.0664636733 0.5 -0.566463673304 +UniRef50_A4WW59 2.84008919631 0.499999999997 -2.34008919631 +UniRef50_UPI000475B0A4 hypothetical protein 4.87479035438 0.500000000006 -4.37479035439 +UniRef50_A9U8B3 Predicted protein 1.13964701847 0.5 -0.639647018471 +UniRef50_P35170 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00168312263841 0.5 0.498316877362 +UniRef50_D5ALC4 Translation initiation factor IF 2 1.86126482652 0.5 -1.36126482652 +UniRef50_Q9KF52 Phosphoribosylamine glycine ligase 0.444129763548 0.5 0.0558702364517 +UniRef50_F0N1G5 Transcription repair coupling factor 0.0116558094803 0.5 0.48834419052 +UniRef50_A4XNW6 0.481325701546 0.5 0.0186742984543 +UniRef50_S1SDR1 Chromosome partitioning protein ParA Sporulation initiation inhibitor protein Soj 0.300455105522 0.5 0.199544894478 +UniRef50_F6BHL2 PTS system transcriptional activator 0.157770214002 0.5 0.342229785998 +UniRef50_D8GIQ6 0.134799815521 0.5 0.365200184479 +UniRef50_I3XD08 Lipid A export ATP binding permease protein MsbA 1.69447706714 0.5 -1.19447706714 +UniRef50_UPI00016C3F49 ABC transporter, ATP binding protein 0.0648589316631 0.5 0.435141068337 +UniRef50_L7WY79 Alpha beta hydrolase 1.74387325987 0.5 -1.24387325987 +UniRef50_Q9A759 2.89252923952 0.499999999998 -2.39252923952 +UniRef50_Q1GFV5 Dihydrofolate reductase 0.531248062864 0.5 -0.031248062864 +UniRef50_C5WCX1 4 hydroxythreonine 4 phosphate dehydrogenase 6.55837683176 0.499999999996 -6.05837683176 +UniRef50_N5EDX1 PTS system EIIBC component 0.219527865131 0.5 0.280472134869 +UniRef50_A6UZL3 DNA directed RNA polymerase subunit alpha 0.969175753646 0.5 -0.469175753646 +UniRef50_K0C9F8 0.839615166223 0.5 -0.339615166223 +UniRef50_O49213 GDP L fucose synthase 1 1.71114667028 0.5 -1.21114667028 +UniRef50_M4RRJ2 0.0236859047941 0.5 0.476314095206 +UniRef50_V9WGF1 ABC type multidrug transport system, ATPase and permease component 1.58795570674 0.5 -1.08795570674 +UniRef50_H9UWR6 Modulator of drug activity 2.10083457995 0.499999999997 -1.60083457995 +UniRef50_P45548 Phosphotriesterase homology protein 2.92399279509 0.500000000001 -2.4239927951 +UniRef50_G4NPZ1 Fructokinase 2.24839081138 0.5 -1.74839081138 +UniRef50_Q8XNN2 Cell division protein FtsX 0.0546918992041 0.500000000001 0.445308100795 +UniRef50_G7R423 1.36335586558 0.5 -0.86335586558 +UniRef50_F3U4W9 Transcriptional regulator, DeoR family protein 1.02670479136 0.5 -0.526704791357 +UniRef50_S9Q9Z7 Mobile element protein 2.75173373852 0.500000000003 -2.25173373853 +UniRef50_F0JDG6 TRAP transporter solute receptor, TAXI family 1.67248431236 0.5 -1.17248431236 +UniRef50_Q9GV41 Prostaglandin F synthase 37.6881834109 0.499999999983 -37.1881834109 +UniRef50_C6SP93 0.843399777702 0.5 -0.343399777702 +UniRef50_B9L064 Glutamine synthetase 0.601047456749 0.5 -0.101047456749 +UniRef50_C5N176 6.04950449886 0.500000000002 -5.54950449886 +UniRef50_UPI0003694E1D hypothetical protein 0.395323170056 0.5 0.104676829944 +UniRef50_Q9RWP2 0.00670922577744 0.500000000001 0.493290774222 +UniRef50_B9E1D0 0.0691164383552 0.5 0.430883561645 +UniRef50_UPI0004785B9E hypothetical protein 0.473228585093 0.5 0.0267714149068 +UniRef50_UPI00036CFE81 hypothetical protein 1.32769471225 0.5 -0.827694712255 +UniRef50_B2HZJ1 AraC type DNA binding domain containing protein 0.00878609838012 0.5 0.49121390162 +UniRef50_UPI00035F4FB6 hypothetical protein 0.329401837266 0.5 0.170598162734 +UniRef50_D5T0L1 Amino acid permease 3.59472680552 0.499999999999 -3.09472680552 +UniRef50_A4WYK2 3.60535508714 0.499999999998 -3.10535508714 +UniRef50_UPI0003618C0D peptide ABC transporter substrate binding protein 0.130869077142 0.5 0.369130922858 +UniRef50_H0Q5L4 Cation transport protein 0.532372811928 0.5 -0.0323728119284 +UniRef50_A3M2E6 0.0185628710468 0.500000000001 0.481437128952 +UniRef50_UPI0003622857 hypothetical protein, partial 0.816216654529 0.5 -0.316216654529 +UniRef50_A3M2E8 0.0408456752879 0.5 0.459154324712 +UniRef50_A3M2E9 0.0144024541199 0.5 0.48559754588 +UniRef50_U3T6D9 AsnC family transcriptional regulator 0.374348858878 0.5 0.125651141122 +UniRef50_B7V4F8 1.45278352787 0.5 -0.952783527874 +UniRef50_E6UQ90 Radical SAM domain protein 0.891238613737 0.5 -0.391238613737 +UniRef50_Q8X9H6 1.39818998899 0.499999999999 -0.898189988994 +UniRef50_Q0TD44 L tartrate dehydratase subunit beta 2.68861563205 0.500000000002 -2.18861563205 +UniRef50_L8A618 PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component 0.581988631335 0.5 -0.0819886313355 +UniRef50_V5VGA0 Signal peptide protein 0.0324153714955 0.5 0.467584628504 +UniRef50_UPI0002FD25A8 hypothetical protein 0.889687344845 0.5 -0.389687344845 +UniRef50_UPI000345C556 hypothetical protein 0.0240511264716 0.5 0.475948873528 +UniRef50_A5UKY8 30S ribosomal protein S3Ae 3.44355460197 0.499999999996 -2.94355460196 +UniRef50_UPI00036B4C40 hypothetical protein 0.335434045009 0.5 0.164565954991 +UniRef50_UPI0003C13594 0.193492667693 0.5 0.306507332307 +UniRef50_R4LIM7 CaiB BaiF family protein 1.28674979209 0.5 -0.786749792092 +UniRef50_A0A047EGF5 PE PGRS family protein PE_PGRS16 1.34995141693 0.5 -0.849951416932 +UniRef50_UPI0003B5C426 histidinol dehydrogenase 0.148524709344 0.5 0.351475290656 +UniRef50_Q5HR00 Protein NrdI 2.6272981954 0.499999999999 -2.1272981954 +UniRef50_F2U7G5 0.253893183999 0.5 0.246106816001 +UniRef50_UPI0003677280 hypothetical protein 1.91483704784 0.5 -1.41483704784 +UniRef50_A7GU01 Cyclic pyranopterin monophosphate synthase 0.00992213657865 0.5 0.490077863422 +UniRef50_UPI00046E8F79 hypothetical protein 0.264982213354 0.5 0.235017786646 +UniRef50_X2JGW4 TraU 6.52144600045 0.500000000001 -6.02144600045 +UniRef50_G2TBP0 Nitrogenase 0.248644515836 0.5 0.251355484164 +UniRef50_Q9AHT6 Pneumococcal vaccine antigen A 1.16639599445 0.5 -0.666395994448 +UniRef50_UPI0003696E91 hypothetical protein 3.6782137724 0.499999999999 -3.1782137724 +UniRef50_Q88W26 ATP dependent protease ATPase subunit HslU 1.52316322075 0.500000000001 -1.02316322075 +UniRef50_Q04796 4 hydroxy tetrahydrodipicolinate synthase 0.00120156620891 0.5 0.498798433791 +UniRef50_B0TPS5 Tryptophan halogenase 0.00524544872847 0.499999999999 0.494754551272 +UniRef50_UPI000467BC4F hypothetical protein 0.50244451934 0.5 -0.00244451933993 +UniRef50_X0UMF5 Marine sediment metagenome DNA, contig 0.282918777919 0.5 0.217081222081 +UniRef50_B7UWL8 Dihydroorotate dehydrogenase 0.152618555014 0.5 0.347381444986 +UniRef50_E8NJT6 0.12890294207 0.5 0.37109705793 +UniRef50_UPI0003775EDE hypothetical protein 0.155044802466 0.5 0.344955197534 +UniRef50_P57872 Ribosome binding factor A 2.255010474 0.499999999999 -1.755010474 +UniRef50_P0AC31 Cell division protein FtsX 3.51506966361 0.500000000001 -3.01506966361 +UniRef50_G7LXG1 0.0984662228742 0.5 0.401533777126 +UniRef50_J0XSC7 0.604506628724 0.5 -0.104506628724 +UniRef50_R4K915 1.76537909691 0.5 -1.26537909691 +UniRef50_Q5P303 0.354741528914 0.5 0.145258471086 +UniRef50_UPI000367F4BF hypothetical protein 0.00557035808434 0.5 0.494429641916 +UniRef50_UPI000363BEF2 hypothetical protein 0.469866627381 0.5 0.0301333726191 +UniRef50_A4V9J4 3.48520003781 0.499999999996 -2.98520003781 +UniRef50_UPI00025579C9 chemotaxis specific methylesterase 3.09065262067 0.499999999999 -2.59065262067 +UniRef50_UPI00036CE600 hypothetical protein 0.271183533773 0.5 0.228816466227 +UniRef50_E1V509 APC family transporter 0.13168612153 0.5 0.36831387847 +UniRef50_UPI000476EDB0 hemolysin 0.416194451505 0.5 0.0838055484953 +UniRef50_Q9I351 GTP cyclohydrolase 1 2 0.901936667612 0.5 -0.401936667612 +UniRef50_UPI0003836B4E PREDICTED 0.743513624308 0.5 -0.243513624308 +UniRef50_G7U615 0.225577604084 0.5 0.274422395916 +UniRef50_Q8XD75 2.60652682986 0.500000000001 -2.10652682986 +UniRef50_G2JM22 Phosphoserine phosphatase 0.0131560434281 0.5 0.486843956572 +UniRef50_Q8CU16 1.83232682273 0.5 -1.33232682273 +UniRef50_D3QDN7 Ribosomal RNA small subunit methyltransferase D 1.22715704486 0.5 -0.727157044861 +UniRef50_Q8CU14 1.61111172767 0.5 -1.11111172767 +UniRef50_A1JPN5 Bifunctional polymyxin resistance protein ArnA 1.50236923952 0.5 -1.00236923952 +UniRef50_W4K6C3 0.819382321451 0.5 -0.319382321451 +UniRef50_A6LT03 0.0626203092344 0.5 0.437379690766 +UniRef50_W1MFW3 30S ribosomal protein S3 0.291217239568 0.5 0.208782760432 +UniRef50_UPI0004765EE6 hypothetical protein 0.258250401198 0.5 0.241749598802 +UniRef50_A6LT04 0.033276830265 0.5 0.466723169735 +UniRef50_UPI000377D609 hypothetical protein 2.50428368283 0.500000000001 -2.00428368283 +UniRef50_J7I7M7 ATPase P 0.110320326231 0.5 0.389679673769 +UniRef50_UPI0004737F94 penicillin binding protein 1.36945662813 0.5 -0.869456628134 +UniRef50_B2UY66 Hydroxyethylthiazole kinase 0.282724558462 0.5 0.217275441538 +UniRef50_UPI0003B5F72E hypothetical protein 0.534760841261 0.5 -0.0347608412607 +UniRef50_X5ETF8 0.0667529030236 0.5 0.433247096976 +UniRef50_D4HB94 Precorrin 4 C methyltransferase 0.0735780619692 0.5 0.426421938031 +UniRef50_A0EVL6 Conjugal transfer entry exclusion protein 0.00612713737251 0.5 0.493872862627 +UniRef50_T8R2K9 0.17568882023 0.5 0.32431117977 +UniRef50_UPI00035C3E51 hypothetical protein 1.97507093524 0.5 -1.47507093524 +UniRef50_K4IEB3 0.346721712132 0.5 0.153278287868 +UniRef50_A3U1Q1 5.78838729223 0.500000000004 -5.28838729223 +UniRef50_Q6A9J7 UPF0042 nucleotide binding protein PPA0813 0.0101234934195 0.5 0.48987650658 +UniRef50_E2ZUC7 0.200979183858 0.5 0.299020816142 +UniRef50_B2UUB5 0.0491846839179 0.5 0.450815316082 +UniRef50_UPI00047DB1F7 hypothetical protein 0.164816556466 0.5 0.335183443534 +UniRef50_W7QIQ7 5.13710195683 0.499999999999 -4.63710195683 +UniRef50_UPI00034F4369 PREDICTED 0.271006267907 0.5 0.228993732093 +UniRef50_R9E884 1.01878490773 0.5 -0.518784907733 +UniRef50_C3G5A7 N acyl L amino acid amidohydrolase 1.58666184286 0.499999999999 -1.08666184286 +UniRef50_Q3IW43 1.49553067008 0.5 -0.99553067008 +UniRef50_O32047 Protein translocase subunit SecDF 1.22652414291 0.5 -0.726524142906 +UniRef50_A9M2X4 0.0221654728341 0.5 0.477834527166 +UniRef50_M1XDM0 Transcriptional regulator, PadR family 1.77034655013 0.5 -1.27034655013 +UniRef50_UPI0003709A53 hypothetical protein 0.657279019529 0.5 -0.157279019529 +UniRef50_M9VF07 0.0250625716877 0.5 0.474937428312 +UniRef50_E8SEY3 Salicylate hydroxylase 1.93520881881 0.499999999998 -1.43520881881 +UniRef50_Q7NF32 Cobyrinic acid A,C diamide synthase 0.0248171031012 0.500000000001 0.475182896898 +UniRef50_D9VBV2 2.0715445783 0.5 -1.5715445783 +UniRef50_C4Z354 3 hydroxybutyryl CoA dehydrogenase 1.22378797255 0.5 -0.723787972547 +UniRef50_UPI0004720BAF hypothetical protein 0.22420418409 0.5 0.27579581591 +UniRef50_Q6FF05 Primosomal protein N directs replication fork assembly at D loops, ATP dependent 0.00607900952024 0.5 0.49392099048 +UniRef50_U4PWH4 0.135333132519 0.5 0.364666867481 +UniRef50_UPI000476026B molybdate ABC transporter permease 0.26672140953 0.5 0.23327859047 +UniRef50_Q5Z022 0.149030592648 0.5 0.350969407352 +UniRef50_UPI00035E2839 hypothetical protein 2.1837481546 0.5 -1.6837481546 +UniRef50_Q8NV29 2.21670964594 0.499999999997 -1.71670964594 +UniRef50_UPI0003B76DAF hypothetical protein, partial 0.15808759879 0.5 0.34191240121 +UniRef50_I0K765 0.0150350469205 0.5 0.48496495308 +UniRef50_UPI00037AA1C6 hypothetical protein 0.0360507288288 0.5 0.463949271171 +UniRef50_UPI000378C483 hypothetical protein 1.16751906301 0.5 -0.667519063014 +UniRef50_UPI0002036836 PREDICTED 0.502447192581 0.5 -0.00244719258058 +UniRef50_UPI0003757D0F MULTISPECIES 3.58423111804 0.5 -3.08423111804 +UniRef50_UPI00047C43EF aldolase 1.32563122238 0.5 -0.825631222378 +UniRef50_Q9ZFA2 Citrate synthase 3.86397001357 0.499999999999 -3.36397001357 +UniRef50_UPI00036F9430 hypothetical protein 0.969190295244 0.5 -0.469190295244 +UniRef50_A0PXX7 Energy coupling factor transporter ATP binding protein EcfA1 0.885106358622 0.5 -0.385106358622 +UniRef50_UPI000463F674 LysR family transcriptional regulator 1.11435863649 0.5 -0.614358636485 +UniRef50_A9GHR6 ATP synthase subunit alpha 0.103169534349 0.5 0.396830465651 +UniRef50_G8V6N7 Biotin requiring enzyme family protein 4.88297588307 0.499999999999 -4.38297588307 +UniRef50_Q3IV12 Generic methyltransferase 1.09788707919 0.5 -0.597887079192 +UniRef50_Q2NUA4 Tetraacyldisaccharide 4 kinase 1.07712440042 0.5 -0.577124400425 +UniRef50_A0A020BXU1 1.78120329432 0.499999999999 -1.28120329431 +UniRef50_A8FUS8 Ribonuclease H 0.715222558079 0.5 -0.215222558079 +UniRef50_P0AFQ4 Inner membrane transport permease YbhS 5.8948150718 0.499999999993 -5.3948150718 +UniRef50_A0A011Q1R0 Penicillin binding protein 2 0.304046266374 0.5 0.195953733626 +UniRef50_M4YYZ9 N acetylmannosamine kinase 0.0550885331237 0.5 0.444911466876 +UniRef50_P76242 Inner membrane transport protein YeaN 2.67417644858 0.500000000003 -2.17417644858 +UniRef50_O34697 Bacitracin export ATP binding protein BceA 1.70036116173 0.500000000001 -1.20036116173 +UniRef50_UPI00046CAEE5 hypothetical protein 0.105971961206 0.5 0.394028038793 +UniRef50_I0C6Y6 Transcriptional regulator, DeoR family 1.14450934931 0.5 -0.644509349309 +UniRef50_P07821 Iron hydroxamate import ATP binding protein FhuC 0.3071425633 0.5 0.1928574367 +UniRef50_H2A564 Rhodanese like domain protein 0.16164423363 0.5 0.33835576637 +UniRef50_UPI0002379BF3 putative ABC transporter ATP binding protein 0.044549245224 0.500000000001 0.455450754775 +UniRef50_A6UAR8 1.02179713081 0.5 -0.521797130811 +UniRef50_UPI0004630536 hypothetical protein 0.425927097527 0.5 0.0740729024731 +UniRef50_UPI000472F551 glutathione ABC transporter permease 0.0962684323069 0.5 0.403731567693 +UniRef50_UPI000474A020 hypothetical protein 6.96763734236 0.499999999992 -6.46763734235 +UniRef50_A6LU95 N anthranilate isomerase 0.273036481925 0.5 0.226963518075 +UniRef50_A5UL11 0.960619550082 0.5 -0.460619550082 +UniRef50_B0VDS9 0.0387601344926 0.5 0.461239865508 +UniRef50_I0C2H0 Fructose repressor 2.78024181117 0.499999999997 -2.28024181117 +UniRef50_UPI00037044F7 hypothetical protein 0.259055364338 0.5 0.240944635662 +UniRef50_Q9RX08 DNA polymerase III subunit alpha 0.00101957599579 0.5 0.498980424004 +UniRef50_I5CJV7 Transposase domain containing protein 5.3056189206 0.500000000007 -4.8056189206 +UniRef50_Q890Z7 Anaerobic sulfite reductase subunit B 1.45668404848 0.499999999998 -0.956684048474 +UniRef50_G7M6C4 Cof like hydrolase 0.15700982778 0.5 0.34299017222 +UniRef50_P52230 Thioredoxin 1 3.14758443637 0.5 -2.64758443637 +UniRef50_D2JGC9 0.263071556509 0.5 0.236928443491 +UniRef50_Q6AAD6 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0329843666255 0.5 0.467015633374 +UniRef50_Q2FK09 Sensory transduction protein LytR 1.65762424592 0.5 -1.15762424592 +UniRef50_V4RNU3 1.92979899545 0.500000000001 -1.42979899545 +UniRef50_Q3J3X3 Phage head tail adaptor, putative, SPP1 family 0.363254877747 0.5 0.136745122253 +UniRef50_UPI00047EEAC2 hypothetical protein 0.34114483381 0.5 0.15885516619 +UniRef50_E0S3Q3 Transposase ISNCY family 0.144968829751 0.5 0.355031170249 +UniRef50_P76339 Probable sensor like histidine kinase YedV 1.47461806884 0.5 -0.974618068841 +UniRef50_E8KBP6 HD domain protein 0.14150661589 0.5 0.35849338411 +UniRef50_W8RAH0 Chromosome partitioning protein ParA 2.78602096391 0.5 -2.28602096391 +UniRef50_A9BWW9 1.97603781082 0.5 -1.47603781082 +UniRef50_V5SYK3 4.9737595949 0.500000000001 -4.4737595949 +UniRef50_UPI00037371BE hypothetical protein 0.566697577854 0.5 -0.066697577854 +UniRef50_UPI00035DE041 hypothetical protein, partial 0.896433945503 0.5 -0.396433945503 +UniRef50_UPI000363ADAC hypothetical protein 0.432011091663 0.5 0.067988908337 +UniRef50_A3T2U3 ATPase, ParA type 1.75569878821 0.5 -1.25569878821 +UniRef50_K7VU62 Cystathionine beta lyase 3.07030661511 0.500000000002 -2.57030661512 +UniRef50_A0R8M3 0.01526104706 0.5 0.48473895294 +UniRef50_Q15U36 Glucose 1 phosphate adenylyltransferase 1 0.361030248167 0.5 0.138969751833 +UniRef50_UPI0003711421 hypothetical protein, partial 0.0254606524108 0.5 0.474539347589 +UniRef50_E0SHR7 FMN oxidoreductase 0.0094569889161 0.5 0.490543011084 +UniRef50_Q14IN1 Ribonuclease H 1.22536281387 0.5 -0.72536281387 +UniRef50_O27880 Indolepyruvate oxidoreductase subunit IorA 1.49351127636 0.5 -0.993511276363 +UniRef50_Q3J4T8 1.91554508705 0.5 -1.41554508705 +UniRef50_UPI0003B38ED8 hypothetical protein 0.377732991556 0.5 0.122267008444 +UniRef50_A9BIU9 Adenine deaminase 1.50142228475 0.5 -1.00142228475 +UniRef50_P75958 Lipoprotein releasing system transmembrane protein LolE 6.58925197302 0.500000000003 -6.08925197303 +UniRef50_Q3J4T7 1.30487664214 0.5 -0.804876642136 +UniRef50_D3E2W0 1.51841327701 0.5 -1.01841327701 +UniRef50_UPI0002557D47 DctM 1.643196852 0.5 -1.143196852 +UniRef50_O27112 2 oxoglutarate synthase subunit KorA 1.9246293905 0.500000000001 -1.42462939051 +UniRef50_G7TFM6 Amine oxidase 0.000890385791815 0.5 0.499109614208 +UniRef50_D2ZP63 3.48849946585 0.499999999999 -2.98849946585 +UniRef50_UPI000401523E diguanylate cyclase 1.31371759041 0.5 -0.813717590408 +UniRef50_H6LBB1 Electron transfer flavoprotein alpha subunit EtfA 0.771224037941 0.5 -0.271224037941 +UniRef50_E3ZMP6 Cell surface protein 0.00570474885249 0.499999999999 0.494295251148 +UniRef50_J4X1R2 Putative membrane protein 0.365453911513 0.5 0.134546088487 +UniRef50_UPI000440E981 PREDICTED 0.572889937395 0.5 -0.0728899373947 +UniRef50_UPI000318D5FE hypothetical protein 2.8237329955 0.500000000001 -2.3237329955 +UniRef50_B7M3G3 0.010083534287 0.5 0.489916465713 +UniRef50_P0AE35 Arginine ABC transporter permease protein ArtQ 1.08916008992 0.5 -0.589160089918 +UniRef50_UPI0001FFE7BF acyl CoA dehydrogenase 0.0175655900053 0.5 0.482434409995 +UniRef50_A6TUJ7 0.0548042995887 0.5 0.445195700411 +UniRef50_B9KSZ0 0.379471740792 0.5 0.120528259208 +UniRef50_C5N523 ACT domain protein 1.27383590536 0.5 -0.773835905365 +UniRef50_UPI000225C163 chromosome partitioning protein ParB 0.0901565359893 0.5 0.409843464011 +UniRef50_W1GGS3 0.956938262434 0.5 -0.456938262434 +UniRef50_Q3MGL3 Aspartate tRNA ligase 0.0389416814602 0.5 0.46105831854 +UniRef50_A3V850 2.6488337322 0.5 -2.1488337322 +UniRef50_Q9JTA4 UPF0210 protein NMA1908 0.243711459961 0.5 0.256288540039 +UniRef50_UPI0003B6C834 threonine transporter RhtB 0.575698894553 0.5 -0.075698894553 +UniRef50_C5Y7E8 0.0350700023644 0.5 0.464929997635 +UniRef50_UPI000362A601 hypothetical protein, partial 0.121695214765 0.5 0.378304785235 +UniRef50_UPI0002F03396 diguanylate cyclase 0.0988309666447 0.500000000001 0.401169033355 +UniRef50_UPI00037317AF hypothetical protein 13.7446098473 0.500000000005 -13.2446098473 +UniRef50_UPI00047845D5 hypothetical protein 0.915609019299 0.5 -0.415609019299 +UniRef50_UPI00016C3F6F 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.0694338426736 0.5 0.430566157326 +UniRef50_UPI000467903E hypothetical protein 1.63089743406 0.5 -1.13089743406 +UniRef50_UPI0004097C5D dihydroxyacetone kinase 0.0219991724724 0.5 0.478000827527 +UniRef50_P43089 5 aminolevulinate synthase 1.86764535258 0.5 -1.36764535258 +UniRef50_X1NAG8 Marine sediment metagenome DNA, contig 0.480638666156 0.5 0.0193613338443 +UniRef50_Q8Q0R3 Ribose 5 phosphate isomerase A 2.6141651609 0.5 -2.1141651609 +UniRef50_UPI00047E1233 hypothetical protein 0.280317777087 0.5 0.219682222913 +UniRef50_R5HZ00 FeS assembly ATPase SufC 0.138069093124 0.499999999999 0.361930906877 +UniRef50_UPI0003A3F0F8 amino acid transporter 0.00363176844075 0.5 0.496368231559 +UniRef50_P39288 Epoxyqueuosine reductase 1.43402400329 0.5 -0.934024003293 +UniRef50_O27481 Putative branched chain amino acid aminotransferase 2.9114318493 0.5 -2.4114318493 +UniRef50_F3Z639 0.0340538956769 0.5 0.465946104323 +UniRef50_A5VSQ0 2 oxoglutarate dehydrogenase E1 component 0.115860191976 0.5 0.384139808024 +UniRef50_P00414 Cytochrome c oxidase subunit 3 1.32051730117 0.5 -0.820517301175 +UniRef50_Q4Q523 0.037892862225 0.5 0.462107137775 +UniRef50_X0PDD7 Peptide deformylase 0.270708902099 0.5 0.229291097901 +UniRef50_UPI000378FEFA hypothetical protein 0.029974764992 0.5 0.470025235008 +UniRef50_A4WTH0 Probable chemoreceptor glutamine deamidase CheD 1.31920724706 0.500000000002 -0.819207247061 +UniRef50_Q3BXK0 Glutamate cysteine ligase 4.78577084949 0.500000000001 -4.28577084949 +UniRef50_F6G433 0.2117666198 0.5 0.2882333802 +UniRef50_F4A483 Diacylglycerol kinase 0.365631245376 0.5 0.134368754624 +UniRef50_Q985W1 Ribonuclease H 1.5976331509 0.5 -1.0976331509 +UniRef50_O27611 Conserved protein 14.0984639495 0.500000000004 -13.5984639495 +UniRef50_UPI00036239CD hypothetical protein 0.991782495197 0.5 -0.491782495197 +UniRef50_B2TQA9 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.341587066989 0.5 0.158412933011 +UniRef50_UPI00036BC4EC hypothetical protein 0.145393487006 0.5 0.354606512994 +UniRef50_H3WPI1 PF05656 family protein 6.82247315332 0.499999999998 -6.32247315332 +UniRef50_UPI00046CCA8E 2 oxoglutarate dehydrogenase 0.187980349011 0.5 0.312019650989 +UniRef50_E8RVY2 TraU family protein 2.38380628759 0.499999999998 -1.88380628759 +UniRef50_UPI00047CFDC7 hypothetical protein 1.0894653734 0.5 -0.589465373397 +UniRef50_Q0AHR1 Transcriptional regulator, BolA protein family 0.171145547879 0.5 0.328854452121 +UniRef50_U1XA26 Transcriptional regulator, GntR family 0.273149921417 0.5 0.226850078583 +UniRef50_D6DJI1 PTS system N acetylglucosamine specific IIB component, Glc family PTS system N acetylglucosamine specific IIC component, Glc family (TC 4.A.1.1.2) 0.174961353475 0.5 0.325038646525 +UniRef50_A5W0Y9 Peptidase M19, renal dipeptidase 1.03108112888 0.5 -0.531081128882 +UniRef50_UPI000262D0AF flagellin domain containing protein 0.306811421549 0.5 0.193188578451 +UniRef50_UPI00045612E6 hypothetical protein PFL1_02986 0.875792853502 0.5 -0.375792853502 +UniRef50_B7GN27 Non canonical purine NTP pyrophosphatase 0.752459569491 0.5 -0.252459569491 +UniRef50_A0A020D642 1.77466752885 0.5 -1.27466752885 +UniRef50_A0Q1U2 Fe S oxidoreductase, putative 0.0959238658543 0.5 0.404076134146 +UniRef50_R6K577 Tagatose 6 phosphate kinase 0.811822551178 0.5 -0.311822551178 +UniRef50_UPI0003C1230B PREDICTED 0.650924453225 0.5 -0.150924453225 +UniRef50_Q8H389 0.785107179259 0.5 -0.285107179259 +UniRef50_D8IDT0 GCN5 related N acetyltransferase 0.110819009438 0.5 0.389180990562 +UniRef50_Q5FKM6 Enolase 0.0506357045384 0.5 0.449364295462 +UniRef50_I9J361 0.416151114169 0.5 0.0838488858306 +UniRef50_M1MMR7 0.0245190170295 0.5 0.47548098297 +UniRef50_Q9FFR3 6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic 1.91832756939 0.5 -1.41832756939 +UniRef50_A0QVT2 Ribonuclease J 0.62168247593 0.5 -0.12168247593 +UniRef50_UPI0002631A0F hypothetical protein 2.37997609824 0.5 -1.87997609824 +UniRef50_UPI000329A978 0.474764916394 0.5 0.0252350836062 +UniRef50_D5ECW5 DNA gyrase subunit A 0.245701362449 0.5 0.254298637551 +UniRef50_V7EPQ5 4.37952345853 0.500000000001 -3.87952345853 +UniRef50_V5VD87 CsuC 0.0385296202872 0.5 0.461470379713 +UniRef50_Q83RN5 Respiratory nitrate reductase 1 beta chain 0.849296009981 0.5 -0.349296009981 +UniRef50_A0Q3H7 Riboflavin biosynthesis protein RibBA 0.0591646678945 0.5 0.440835332106 +UniRef50_A5CW02 Aspartate 1 decarboxylase 0.377908272585 0.5 0.122091727415 +UniRef50_J0HLU4 3.73376789343 0.500000000001 -3.23376789343 +UniRef50_UPI00037A3165 hypothetical protein 0.206256098914 0.5 0.293743901086 +UniRef50_P98005 Cytochrome c oxidase polypeptide I+III 0.0257477328836 0.5 0.474252267117 +UniRef50_A3PJY9 Permease YjgP YjgQ family protein 2.6674659081 0.499999999998 -2.1674659081 +UniRef50_UPI0003724245 hypothetical protein 2.30258354137 0.499999999999 -1.80258354137 +UniRef50_F0NRM0 L serine ammonia lyase alpha subunit 2.40198216212 0.500000000001 -1.90198216212 +UniRef50_UPI00035C1D9A hypothetical protein 0.438205063646 0.5 0.0617949363541 +UniRef50_Q5HLA7 Aldehyde dehydrogenase family protein 2.3066781422 0.5 -1.8066781422 +UniRef50_B7UXY9 Phosphoribosylformylglycinamidine cyclo ligase 0.569404030548 0.5 -0.0694040305475 +UniRef50_UPI0002559CF6 3 hydroxyacyl CoA dehydrogenase, NAD binding, partial 0.276238166205 0.5 0.223761833795 +UniRef50_K8WXC5 3.38452609097 0.499999999999 -2.88452609097 +UniRef50_Q329T6 Low affinity potassium transport system protein kup 1.37726913073 0.499999999999 -0.877269130726 +UniRef50_UPI000316D8EB hypothetical protein 0.466668692317 0.5 0.0333313076828 +UniRef50_UPI00047B6E0E hypothetical protein 1.85568382209 0.5 -1.35568382209 +UniRef50_UPI000467AAAB hypothetical protein, partial 0.503823847477 0.5 -0.00382384747717 +UniRef50_C5B3S3 11.1557514146 0.499999999997 -10.6557514146 +UniRef50_A6QIH4 7.47085176292 0.499999999985 -6.9708517629 +UniRef50_UPI00036099F9 hypothetical protein 0.35366202722 0.5 0.14633797278 +UniRef50_Q82A73 0.01509140034 0.5 0.48490859966 +UniRef50_W6RBC1 Phage head tail adaptor 1.508267495 0.5 -1.008267495 +UniRef50_UPI000374F5C0 hypothetical protein 3.33110005074 0.5 -2.83110005074 +UniRef50_A5UKP1 Phosphate specific transport system accessory protein PhoU 3.88619010519 0.499999999999 -3.38619010519 +UniRef50_Q6FA90 C4 dicarboxylate transport protein 0.00849394135634 0.5 0.491506058644 +UniRef50_UPI0000557712 hypothetical protein 0.811649399777 0.5 -0.311649399777 +UniRef50_H8LWD1 0.0303808748682 0.5 0.469619125132 +UniRef50_R4Z0C6 0.547407353761 0.5 -0.0474073537612 +UniRef50_UPI00035EB969 hypothetical protein 4.01363858197 0.499999999995 -3.51363858197 +UniRef50_F2I582 ABC transporter, ATP binding protein 0.445568568456 0.5 0.0544314315445 +UniRef50_Q9RWC7 Arginine repressor 0.000209110544733 0.5 0.499790889455 +UniRef50_R7GNX0 HD domain protein 0.164212051189 0.5 0.335787948811 +UniRef50_A4WTR4 Phosphate starvation inducible E 1.06498604656 0.5 -0.564986046556 +UniRef50_UPI0002377C07 hypothetical protein 0.432971812063 0.5 0.0670281879371 +UniRef50_I6Z4Y8 Respiratory nitrate reductase gamma chain 4.39842842834 0.500000000003 -3.89842842835 +UniRef50_W0YWT0 ClpB protein 1.15167742204 0.5 -0.651677422039 +UniRef50_UPI0002FBC9AA hypothetical protein 0.00542547234905 0.5 0.494574527651 +UniRef50_B7GVA1 Isochorismatase family protein 0.0248008843589 0.5 0.475199115641 +UniRef50_B0BVB8 ATP synthase subunit alpha 0.17189103854 0.5 0.32810896146 +UniRef50_B9KPP5 0.517674644136 0.5 -0.0176746441357 +UniRef50_A9M0F2 Phopholipase D family protein 0.026733110604 0.5 0.473266889396 +UniRef50_Q9I3N7 Cytochrome c biogenesis ATP binding export protein CcmA 0.0166482585349 0.5 0.483351741465 +UniRef50_Q1C0H2 LPS assembly protein LptD 2.32855892886 0.499999999999 -1.82855892885 +UniRef50_A8Z171 Iron ABC superfamily ATP binding cassette transporter, membrane protein 1.92172294819 0.5 -1.42172294819 +UniRef50_J7L817 1.38101211125 0.5 -0.881012111252 +UniRef50_B5F050 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 1.08301949507 0.5 -0.583019495071 +UniRef50_P00562 Bifunctional aspartokinase homoserine dehydrogenase 2 1.92180292447 0.499999999999 -1.42180292447 +UniRef50_D1BPV2 NADH dehydrogenase (Quinone) 3.44451381809 0.500000000001 -2.94451381809 +UniRef50_T1Y7R5 Exotoxin 20.6614738429 0.499999999991 -20.1614738429 +UniRef50_D4HF81 0.061559563913 0.5 0.438440436087 +UniRef50_A0A019G9E1 1.91314950421 0.500000000003 -1.41314950421 +UniRef50_Q88M14 Sensory box protein GGDEF family protein 1.64107102641 0.5 -1.14107102641 +UniRef50_UPI0003C11D1D PREDICTED 0.267513636355 0.5 0.232486363645 +UniRef50_A6LSU0 2.43801997948 0.500000000003 -1.93801997948 +UniRef50_Q9RXT7 0.00138142791619 0.5 0.498618572084 +UniRef50_O05405 0.156627438624 0.5 0.343372561376 +UniRef50_A1R3Q2 Oxidoreductase, short chain dehydrogenase reductase family 1.50080948655 0.5 -1.00080948655 +UniRef50_Q2FEK1 Urease accessory protein UreF 2.29954302761 0.5 -1.79954302761 +UniRef50_UPI000369649D hypothetical protein 3.2238962269 0.500000000001 -2.7238962269 +UniRef50_F9ZKH5 0.120876659155 0.5 0.379123340845 +UniRef50_UPI0004560A6D hypothetical protein PFL1_03815 0.0907039833362 0.5 0.409296016664 +UniRef50_UPI0003717F60 hypothetical protein 0.444192853817 0.5 0.0558071461831 +UniRef50_UPI000262CA60 putative metallo beta lactamase superfamily hydrolase 2.53433845898 0.5 -2.03433845898 +UniRef50_UPI00031698A8 hypothetical protein 0.358820370309 0.5 0.141179629691 +UniRef50_G3XD23 UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase 0.0871837100334 0.5 0.412816289967 +UniRef50_UPI0003EBD820 PREDICTED 1.44775842437 0.5 -0.947758424367 +UniRef50_UPI0003B543B8 DNA repair protein RecO 0.133469357043 0.5 0.366530642957 +UniRef50_A5F9G1 D erythrose 4 phosphate dehydrogenase 0.621573357296 0.5 -0.121573357296 +UniRef50_R7PYB9 1.22783674813 0.5 -0.72783674813 +UniRef50_P42603 Inner membrane protein YgjV 1.33167083174 0.5 -0.831670831743 +UniRef50_K7S0H1 ABC transporter, ATP binding protein 0.0749545716914 0.5 0.425045428308 +UniRef50_F7WZ70 Pyruvate dehydrogenase E1 component 1.84217380332 0.5 -1.34217380332 +UniRef50_W4YDX4 0.0876291757841 0.5 0.412370824216 +UniRef50_Q8DPY7 0.0130342551193 0.5 0.486965744881 +UniRef50_UPI0003B64F06 ferredoxin 0.087472229404 0.5 0.412527770596 +UniRef50_UPI00046F9C26 hypothetical protein 0.357457496095 0.5 0.142542503905 +UniRef50_B9KX10 ABC branched chain amino acid transporter, periplasmic ligand binding protein 2.84653173142 0.5 -2.34653173142 +UniRef50_F4FEB2 1.16590945713 0.5 -0.665909457129 +UniRef50_A4VM39 Ribosomal RNA large subunit methyltransferase K L 55.4402619041 0.499999999987 -54.9402619041 +UniRef50_A5UMN6 5 methylthioadenosine S adenosylhomocysteine deaminase 2.37193983457 0.5 -1.87193983457 +UniRef50_D2N3E8 2.76701724918 0.5 -2.26701724918 +UniRef50_X5IEK4 Putative endolysin 0.772171650253 0.5 -0.272171650253 +UniRef50_Q0SU50 Amino acid permease family protein 0.362072960859 0.5 0.137927039141 +UniRef50_P76190 Murein DD endopeptidase MepH 1.31493007704 0.5 -0.814930077043 +UniRef50_D3E0L0 Signal recognition particle receptor FtsY 0.750016235032 0.5 -0.250016235032 +UniRef50_Q92I89 Holliday junction ATP dependent DNA helicase RuvA 0.642110216194 0.5 -0.142110216194 +UniRef50_O58097 Glutamine synthetase 0.150023506617 0.5 0.349976493383 +UniRef50_UPI000376B86D hypothetical protein, partial 0.0126067134241 0.5 0.487393286576 +UniRef50_UPI00046E5399 hypothetical protein 0.0554995440707 0.5 0.44450045593 +UniRef50_B2I0Y3 Pirin related protein 0.000828399858845 0.500000000001 0.49917160014 +UniRef50_Q9ZMR3 0.00109301981417 0.5 0.498906980186 +UniRef50_P41655 2.63031154794 0.500000000002 -2.13031154794 +UniRef50_C6SPD8 0.61606257524 0.5 -0.11606257524 +UniRef50_O83814 Methionine aminopeptidase 0.720790384348 0.5 -0.220790384348 +UniRef50_Q11D29 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 0.414815376767 0.5 0.0851846232327 +UniRef50_UPI00036E30BF hypothetical protein 0.323125063548 0.5 0.176874936452 +UniRef50_Q5FGN1 Nucleoside diphosphate kinase 0.812514319198 0.5 -0.312514319198 +UniRef50_A3JG79 0.10592897106 0.5 0.39407102894 +UniRef50_UPI00028934E4 ATP 0.0204868856471 0.5 0.479513114353 +UniRef50_Q31H63 Argininosuccinate synthase 0.00179119771308 0.5 0.498208802287 +UniRef50_UPI00001AD637 argininosuccinate lyase 1.06824349735 0.5 -0.568243497345 +UniRef50_Q5HLL0 2.38503769355 0.5 -1.88503769355 +UniRef50_X0XAV8 Marine sediment metagenome DNA, contig 0.270098623158 0.5 0.229901376842 +UniRef50_J7M7S6 Myo inositol 1 monophosphatase 6.72780830005 0.499999999998 -6.22780830004 +UniRef50_D3E3I9 PIN domain containing protein 2.2134486272 0.5 -1.7134486272 +UniRef50_Q2P0Z5 Threonine tRNA ligase 0.046153905705 0.5 0.453846094295 +UniRef50_E7DN70 QueT 0.936591654636 0.5 -0.436591654636 +UniRef50_D3NWU2 0.0984765827417 0.499999999999 0.401523417259 +UniRef50_Q11CE6 Carbohydrate ABC transporter substrate binding protein, CUT1 family 2.09495543049 0.499999999999 -1.59495543049 +UniRef50_UPI00035EA204 hypothetical protein 0.166068672136 0.5 0.333931327864 +UniRef50_UPI0001913039 uracil permease 0.259740076343 0.5 0.240259923657 +UniRef50_UPI0004642331 hypothetical protein 1.77940999648 0.5 -1.27940999648 +UniRef50_P31153 S adenosylmethionine synthase isoform type 2 0.00236668363703 0.5 0.497633316363 +UniRef50_A0A059DU66 2.77947297638 0.499999999999 -2.27947297638 +UniRef50_O27593 Probable cyclic pyranopterin monophosphate synthase 0.608118395524 0.5 -0.108118395524 +UniRef50_D8ULY9 0.586282836251 0.5 -0.0862828362507 +UniRef50_P21801 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 3.98268407247 0.5 -3.48268407247 +UniRef50_UPI00021A5A53 PREDICTED 0.0679861767157 0.5 0.432013823284 +UniRef50_J9FKP1 Carboxynorspermidine decarboxylase 1.91399187062 0.499999999999 -1.41399187061 +UniRef50_W8EP13 Lysyl tRNA synthetase 0.0126697384971 0.5 0.487330261503 +UniRef50_P64305 Non canonical purine NTP pyrophosphatase 3.01117202988 0.500000000002 -2.51117202988 +UniRef50_A0A025ZG79 2.50727905003 0.500000000003 -2.00727905004 +UniRef50_I4YMG6 Putative integral membrane protein 0.140755053972 0.5 0.359244946028 +UniRef50_Q3K2Q5 Biotin synthase 0.445981714203 0.5 0.0540182857965 +UniRef50_R4ZQK4 D alanyl transfer protein DltB 0.779648101806 0.5 -0.279648101806 +UniRef50_A0A023KPW6 Glycosyl transferase 2.96943161913 0.500000000003 -2.46943161913 +UniRef50_B9KWR4 0.399506887846 0.5 0.100493112154 +UniRef50_F0VBH0 28.2977043034 0.500000000029 -27.7977043035 +UniRef50_K0N7F3 PTS system beta glucoside specific EIIBCA component 0.13204576809 0.5 0.36795423191 +UniRef50_Q86AV6 Citrate synthase 0.172065615316 0.5 0.327934384684 +UniRef50_D7CVN0 3 isopropylmalate dehydrogenase 0.0201870859576 0.5 0.479812914042 +UniRef50_UPI000472AC29 hypothetical protein 1.16605776279 0.5 -0.666057762793 +UniRef50_P0ABP7 Protein DedA 0.436494766179 0.5 0.0635052338212 +UniRef50_F5LXH0 0.247737410494 0.5 0.252262589506 +UniRef50_L6Z8K5 Protease3 0.826743802755 0.5 -0.326743802755 +UniRef50_B8GW56 Chromosome replication regulator protein HdaA 1.52840137804 0.5 -1.02840137804 +UniRef50_UPI00037B2D8F hypothetical protein 0.0938987598574 0.5 0.406101240142 +UniRef50_U3U2D6 0.627521647246 0.5 -0.127521647246 +UniRef50_Q1JDL9 Transcriptional regulator, RpiR family 0.526712976139 0.5 -0.026712976139 +UniRef50_W6RVE8 0.464232309619 0.5 0.0357676903809 +UniRef50_E6SIX1 0.138085962596 0.5 0.361914037404 +UniRef50_C6SS20 1.28752785421 0.5 -0.787527854215 +UniRef50_P75967 0.875582304644 0.5 -0.375582304644 +UniRef50_Q8Y6R2 ADP dependent NAD(P)H hydrate dehydratase 0.00107214045837 0.5 0.498927859542 +UniRef50_P32106 0.00860554425975 0.5 0.49139445574 +UniRef50_P75968 1.98760986246 0.5 -1.48760986246 +UniRef50_UPI00035E4836 peptidase 0.421124549191 0.5 0.0788754508089 +UniRef50_B4L348 GI15483 0.156751528703 0.5 0.343248471296 +UniRef50_W5X806 50S ribosomal protein L17 0.794337627323 0.5 -0.294337627323 +UniRef50_H8GWD9 0.00234366841294 0.5 0.497656331587 +UniRef50_Q9JRW7 Biotin synthase 0.00256780713539 0.5 0.497432192865 +UniRef50_Q3IVK2 Zinc containing alcohol dehydrogenase 6.7217188481 0.500000000004 -6.2217188481 +UniRef50_A0A034SZW0 Periplasmic nitrate reductase 1.16583391317 0.5 -0.66583391317 +UniRef50_UPI00016A43A2 UvrD REP helicase, partial 1.56769941497 0.499999999998 -1.06769941497 +UniRef50_A3PNU0 Transcriptional regulator, LacI family 1.99717358673 0.5 -1.49717358673 +UniRef50_P37629 0.703194255909 0.5 -0.203194255909 +UniRef50_Q7VMF9 Macrolide export ATP binding permease protein MacB 0.592993987933 0.5 -0.0929939879328 +UniRef50_UPI000471FEB2 XRE family transcriptional regulator 4.74868126615 0.5 -4.24868126615 +UniRef50_P37626 3.45455513064 0.499999999998 -2.95455513063 +UniRef50_Q2K7T8 NADP dependent isocitrate dehydrogenase protein 1.01946732048 0.5 -0.519467320484 +UniRef50_UPI00029B17E0 2 oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase 0.431732553264 0.5 0.0682674467355 +UniRef50_V9WQ71 NTP pyrophosphohydrolase 1.99196264468 0.499999999999 -1.49196264468 +UniRef50_UPI000367676A hypothetical protein 0.920495138474 0.5 -0.420495138474 +UniRef50_J7QB63 Phosphatidylserine decarboxylase 1.30009349024 0.5 -0.800093490243 +UniRef50_U5NRM8 20.6471351577 0.499999999999 -20.1471351577 +UniRef50_C3XBE9 1.41496111071 0.500000000001 -0.914961110712 +UniRef50_U5NRM4 0.223222095432 0.5 0.276777904568 +UniRef50_I0C7C2 2.17881603262 0.5 -1.67881603262 +UniRef50_Q6F916 0.0129958981324 0.5 0.487004101868 +UniRef50_K5YPQ7 Antirepressor 1.08091811054 0.5 -0.58091811054 +UniRef50_UPI0003675C2C hypothetical protein 0.0857013520764 0.5 0.414298647923 +UniRef50_P31666 1.14472349985 0.5 -0.644723499845 +UniRef50_P31667 1.08678880714 0.5 -0.586788807142 +UniRef50_P31665 5.4239854152 0.499999999999 -4.9239854152 +UniRef50_A0A029L0Z7 0.302408085781 0.5 0.197591914219 +UniRef50_P31122 Sugar efflux transporter 0.97041503543 0.5 -0.47041503543 +UniRef50_W6RZK7 0.291354775814 0.5 0.208645224186 +UniRef50_U6IHI4 Iron sulfur cluster assembly 2 3.4682710242 0.500000000002 -2.9682710242 +UniRef50_UPI00016A2A91 molybdate ABC transporter, inner membrane subunit, partial 0.855441677174 0.5 -0.355441677174 +UniRef50_UPI000237A7F7 ribose transport ATP binding protein rbsA 1.16569318155 0.5 -0.665693181548 +UniRef50_A6LS74 0.116453233026 0.500000000001 0.383546766973 +UniRef50_A1WV96 50S ribosomal protein L17 1.08972189294 0.5 -0.589721892943 +UniRef50_UPI0002F511F9 cytochrome C oxidase subunit I 0.201885991303 0.5 0.298114008697 +UniRef50_UPI0002EF1560 hypothetical protein 1.37226901667 0.5 -0.872269016669 +UniRef50_Q9HAC7-2 Isoform 2 of Succinate hydroxymethylglutarate CoA transferase 0.0326584036684 0.5 0.467341596331 +UniRef50_B9DMC7 Probable DNA directed RNA polymerase subunit delta 1.72642951649 0.500000000001 -1.22642951649 +UniRef50_A7NIN1 ABC type Fe3+ transport system periplasmic component like protein 2.08018932131 0.5 -1.58018932131 +UniRef50_Q67QM6 DNA polymerase IV 0.295322376092 0.5 0.204677623908 +UniRef50_H9K7I8 0.313140218278 0.5 0.186859781722 +UniRef50_M1Q601 LrgA associated membrane protein LrgB 0.145515868337 0.5 0.354484131663 +UniRef50_A6M2R8 Methyl accepting chemotaxis sensory transducer 0.0549000105487 0.5 0.445099989451 +UniRef50_A6LRR4 Transglutaminase domain protein 0.0607113851378 0.499999999999 0.439288614863 +UniRef50_UPI000469DD13 sodium 0.595323395346 0.5 -0.0953233953462 +UniRef50_P33359 Putative osmoprotectant uptake system permease protein YehW 6.54902596776 0.500000000002 -6.04902596777 +UniRef50_Q7VSN2 Glutamyl tRNA amidotransferase subunit A 0.167077850348 0.5 0.332922149652 +UniRef50_P94365 Cytochrome bd ubiquinol oxidase subunit 2 0.00139099125908 0.500000000001 0.49860900874 +UniRef50_A1SSP3 Enoyl CoA hydratase isomerase 0.0127067520667 0.5 0.487293247933 +UniRef50_Q31ZL5 0.912829778002 0.5 -0.412829778002 +UniRef50_S5UWP0 2.30712996476 0.499999999999 -1.80712996476 +UniRef50_UPI0003F0706F PREDICTED 0.526244462077 0.5 -0.0262444620772 +UniRef50_UPI000378D1C1 hypothetical protein 0.217577003139 0.5 0.282422996861 +UniRef50_E8XQD0 Membrane dipeptidase 0.853934030321 0.5 -0.353934030321 +UniRef50_Q6AHF5 Uroporphyrinogen decarboxylase 0.00343633068158 0.5 0.496563669319 +UniRef50_Q8TLM8 Phosphoglycerate mutase family protein 0.0198822102316 0.5 0.480117789768 +UniRef50_UPI000348926B hypothetical protein 2.60399288088 0.500000000001 -2.10399288088 +UniRef50_P0AAN2 Hydrogenase 2 operon protein HybE 26.7882673492 0.500000000013 -26.2882673492 +UniRef50_UPI00037952D8 hypothetical protein 0.0116960287803 0.5 0.48830397122 +UniRef50_Q2FH23 Response regulator ArlR 1.20072488063 0.5 -0.700724880632 +UniRef50_UPI00040D89D5 sulfate adenylyltransferase 0.209520490607 0.5 0.290479509393 +UniRef50_A5ULA7 1.99901479376 0.5 -1.49901479376 +UniRef50_Q8ZRS2 Blue copper oxidase CueO 2.83156645651 0.500000000001 -2.33156645651 +UniRef50_UPI0004719AE4 hypothetical protein, partial 0.0167946657874 0.5 0.483205334212 +UniRef50_A3PMC5 Phospholipid glycerol acyltransferase 1.16540989717 0.5 -0.665409897169 +UniRef50_UPI00046CAC84 hypothetical protein 0.0686454944076 0.5 0.431354505593 +UniRef50_D2NRM3 Protein containing TPR repeat 0.547596115066 0.5 -0.0475961150658 +UniRef50_Q46798 1.32698356102 0.5 -0.826983561017 +UniRef50_A3PMP3 Transcriptional regulator, TetR family 1.29118062441 0.5 -0.791180624412 +UniRef50_U6KR03 0.0868786859317 0.5 0.413121314069 +UniRef50_UPI0003B4D513 PAS sensor protein 3.29593482054 0.5 -2.79593482054 +UniRef50_Q9ZMF0 Putative methylthiotransferase jhp_0270 0.0166469328113 0.5 0.483353067189 +UniRef50_B2A326 PSP1 domain protein 0.224551843045 0.5 0.275448156955 +UniRef50_D2J6L2 Universal stress protein family 4.13032810709 0.500000000001 -3.63032810709 +UniRef50_UPI00035E6D97 citrate lyase subunit beta 0.919259349472 0.5 -0.419259349472 +UniRef50_F0YB09 0.595993003498 0.5 -0.0959930034984 +UniRef50_P08192 Bifunctional protein FolC 0.245924318524 0.5 0.254075681476 +UniRef50_Q8CQG0 Response regulator 7.47876226458 0.500000000006 -6.97876226459 +UniRef50_E6KSM2 0.0329177309877 0.5 0.467082269013 +UniRef50_O27322 Argininosuccinate synthase 2.65946708466 0.500000000003 -2.15946708467 +UniRef50_A3U241 2.48145227832 0.500000000002 -1.98145227832 +UniRef50_Q9RVU4 Endonuclease III, putative 0.0027289272997 0.5 0.497271072701 +UniRef50_P74533 Recombination protein RecR 2.73513221036 0.499999999998 -2.23513221036 +UniRef50_UPI000476740D hypothetical protein 0.0450684670109 0.5 0.454931532989 +UniRef50_Q9XAR0 NADH quinone oxidoreductase subunit G 0.0110836314181 0.5 0.488916368582 +UniRef50_Q9RXE1 Lysine tRNA ligase 0.000667152591545 0.5 0.499332847408 +UniRef50_UPI000185D783 hypothetical protein, conserved 0.481678869 0.5 0.0183211309999 +UniRef50_R5XBW3 Carbonic anhydrase family 3 0.266132354537 0.5 0.233867645463 +UniRef50_H5XUP2 Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain 0.275181337432 0.5 0.224818662568 +UniRef50_U5RWM1 Succinate dehydrogenase 0.164636684801 0.5 0.335363315199 +UniRef50_P27603 P protein 0.700917854772 0.5 -0.200917854772 +UniRef50_UPI00036D44BD hypothetical protein, partial 1.01816442716 0.5 -0.518164427157 +UniRef50_Q2IW23 Bifunctional enzyme IspD IspF 0.152904369272 0.5 0.347095630729 +UniRef50_A6W8Y0 Putative cell wall binding repeat 2 containing protein 0.0561323958499 0.5 0.44386760415 +UniRef50_I1ASL8 5.10406935147 0.499999999997 -4.60406935147 +UniRef50_Q6FFB1 Alginate biosynthesis protein 0.00950710530383 0.5 0.490492894696 +UniRef50_C3T0C2 Transcriptional regulation of gcv operon 1.20594293773 0.500000000001 -0.705942937735 +UniRef50_T2L9X7 1.1136290307 0.5 -0.613629030696 +UniRef50_F7QKU3 TRAP transporter solute receptor, TAXI family 1.23971173116 0.5 -0.739711731164 +UniRef50_J9P7N6 0.148788536887 0.499999999999 0.351211463114 +UniRef50_A3PNZ4 Transcriptional regulator, SARP family 3.39951553826 0.499999999999 -2.89951553826 +UniRef50_A5EUU4 Na translocating NADH quinone reductase subunit E 0.0747217123824 0.5 0.425278287618 +UniRef50_J8TQ37 0.00159319116793 0.5 0.498406808832 +UniRef50_Q2YSD7 Putative ATP 2.77803647137 0.500000000001 -2.27803647137 +UniRef50_A0A023RSQ1 GNAT family acetyltraansferase 1.08888162103 0.5 -0.588881621031 +UniRef50_W1WJ38 0.0797303757224 0.5 0.420269624277 +UniRef50_UPI000366DF34 hypothetical protein 0.0564639553943 0.5 0.443536044606 +UniRef50_W6RLX0 Spermidine putrescine binding periplasmic protein SPBP 3.65152420844 0.5 -3.15152420844 +UniRef50_A6U9I7 Anhydro N acetylmuramic acid kinase 0.0872634829017 0.5 0.412736517099 +UniRef50_UPI00047D420D hypothetical protein 1.81404468688 0.5 -1.31404468688 +UniRef50_A3VVU2 Putative outer membrane protein 0.33945923548 0.5 0.16054076452 +UniRef50_A0KVP8 Na H(+) antiporter NhaB 1.52411458035 0.5 -1.02411458035 +UniRef50_Q8EW01 Serine tRNA ligase 0.320635140783 0.5 0.179364859217 +UniRef50_P77234 2.78175031538 0.5 -2.28175031538 +UniRef50_Q46HN8 3 oxoacyl [acyl carrier protein] synthase 3 1.09499155491 0.5 -0.594991554906 +UniRef50_UPI0003C7E828 MFS transporter 0.354621533931 0.5 0.145378466069 +UniRef50_S5CXB4 Choline dehydrogenase related flavoprotein 0.0235422371603 0.5 0.47645776284 +UniRef50_G2JDK1 0.00219797879937 0.5 0.497802021201 +UniRef50_UPI0003A64EF7 hypothetical protein 0.592174482241 0.5 -0.0921744822408 +UniRef50_J2DGW2 7.83689324682 0.49999999999 -7.33689324681 +UniRef50_W7Z6N4 Ribonuclease PH 0.221747916108 0.5 0.278252083892 +UniRef50_A1WW41 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.22410579714 0.500000000001 -1.72410579715 +UniRef50_R4RS00 0.509512998844 0.5 -0.00951299884373 +UniRef50_UPI00036A57A1 hypothetical protein 1.93476227466 0.5 -1.43476227466 +UniRef50_B2HW18 0.0171944997231 0.5 0.482805500277 +UniRef50_Q2IFN9 0.583454605649 0.5 -0.0834546056493 +UniRef50_A0A017HFR7 Chemotactic signal response protein, putative 1.03374175496 0.5 -0.533741754956 +UniRef50_O25916 Replicative DNA helicase 0.0334867485362 0.5 0.466513251464 +UniRef50_Q3IWU3 TRAP T family transporter, fused small and large inner membrane subunits 1.14479444276 0.5 -0.644794442761 +UniRef50_UPI0004724A10 hypothetical protein, partial 3.22631570968 0.5 -2.72631570968 +UniRef50_X0X6Z1 Marine sediment metagenome DNA, contig 0.248303907997 0.5 0.251696092003 +UniRef50_UPI000415535D alpha beta hydrolase 3.23404674559 0.5 -2.73404674559 +UniRef50_UPI00034739EE hypothetical protein 0.00733580037269 0.499999999999 0.492664199628 +UniRef50_Q89IC6 Blr5713 protein 0.495865102978 0.5 0.00413489702199 +UniRef50_K3WBA6 Amidophosphoribosyltransferase 0.0724476874571 0.5 0.427552312543 +UniRef50_P21562 0.401271132224 0.5 0.0987288677757 +UniRef50_P17058 Acyclic carotenoid 1,2 hydratase 0.546148005697 0.5 -0.0461480056968 +UniRef50_UPI00038293BE hypothetical protein 0.436751223666 0.5 0.0632487763338 +UniRef50_Q5WCN5 Sorbitol dehydrogenase 2.95927800632 0.499999999997 -2.45927800631 +UniRef50_Q03U06 Mannonate dehydratase 0.0656969278486 0.5 0.434303072151 +UniRef50_N6UA20 0.387894541276 0.5 0.112105458724 +UniRef50_Q5HPW3 Transcription factor FapR 2.57830631949 0.499999999999 -2.07830631949 +UniRef50_Q8KCW2 Dihydrolipoyl dehydrogenase 0.142401588839 0.5 0.357598411161 +UniRef50_Q9F1M9 UDP N acetylmuramate L alanine ligase 0.773706694575 0.5 -0.273706694575 +UniRef50_Q0KDL1 ABC type transporter, ATPase component 0.483813373758 0.5 0.0161866262419 +UniRef50_A8L8S5 0.578792960064 0.5 -0.0787929600638 +UniRef50_UPI0003B6FD69 NADPH 0.0973597720646 0.5 0.402640227935 +UniRef50_C4ZI69 Anthranilate phosphoribosyltransferase 3.72426688813 0.500000000001 -3.22426688813 +UniRef50_A6M0U5 0.11917033416 0.5 0.38082966584 +UniRef50_UPI0003B423C3 tRNA delta isopentenylpyrophosphate transferase 0.600479636587 0.5 -0.100479636587 +UniRef50_R4PMP8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 2.47256159053 0.500000000001 -1.97256159053 +UniRef50_Q5SIN6 0.79456914417 0.5 -0.29456914417 +UniRef50_V9W081 1.77792353995 0.5 -1.27792353995 +UniRef50_UPI0001746B66 chromosomal replication initiation protein 0.278645995126 0.5 0.221354004874 +UniRef50_UPI00045758DE PREDICTED 0.936662329984 0.5 -0.436662329984 +UniRef50_G7MCB5 PTS system, lactose cellobiose family IIC subunit 0.086951900845 0.5 0.413048099155 +UniRef50_Q60178 Delta aminolevulinic acid dehydratase 0.243553121326 0.5 0.256446878674 +UniRef50_A6LZJ5 Iron sulfur flavoprotein 1.91447453802 0.500000000002 -1.41447453802 +UniRef50_P38946 Succinyl CoA 0.0494672405024 0.5 0.450532759498 +UniRef50_P77624 Carbamate kinase like protein YahI 1.18097832765 0.5 -0.680978327649 +UniRef50_T1KRH7 0.0103659186211 0.5 0.489634081379 +UniRef50_B1I6S1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.0149947319831 0.5 0.485005268017 +UniRef50_X8F0P6 1.07619544085 0.5 -0.576195440848 +UniRef50_P26289 NADH quinone oxidoreductase subunit 4L, chloroplastic 2.20505714014 0.5 -1.70505714014 +UniRef50_I0C6V7 Acyl CoA dehydrogenase, short chain specific 1.87971779589 0.499999999999 -1.37971779589 +UniRef50_UPI000372829F MULTISPECIES 0.110546091038 0.5 0.389453908962 +UniRef50_D8JEY6 0.00656393756121 0.5 0.493436062439 +UniRef50_P80886 Succinyl CoA ligase [ADP forming] subunit beta 1.98620097138 0.499999999997 -1.48620097138 +UniRef50_P42619 Inner membrane protein YqjF 0.217826823483 0.5 0.282173176517 +UniRef50_UPI00035DD30D hypothetical protein, partial 0.0196428949855 0.5 0.480357105014 +UniRef50_A8AM44 39.6599574023 0.499999999995 -39.1599574023 +UniRef50_P40118 Protein CbxX, chromosomal 1.7572718154 0.5 -1.2572718154 +UniRef50_UPI0004420F41 PREDICTED 0.567784602945 0.5 -0.0677846029449 +UniRef50_UPI000380047C hypothetical protein, partial 0.206293624244 0.5 0.293706375756 +UniRef50_P0A9D3 Glutathione S transferase GstA 3.75554314981 0.500000000001 -3.25554314981 +UniRef50_V4LD81 2.45513562205 0.5 -1.95513562205 +UniRef50_G3BCN3 0.335596619474 0.5 0.164403380526 +UniRef50_Q89N53 GMP synthase [glutamine hydrolyzing] 0.306613909124 0.5 0.193386090876 +UniRef50_A9M3R6 PilS cassette 0.266268710164 0.5 0.233731289836 +UniRef50_G8VFT5 ABC transporter associated permease 0.00550087510993 0.5 0.49449912489 +UniRef50_UPI00046F1979 hypothetical protein 4.1242892447 0.499999999999 -3.6242892447 +UniRef50_Q28W02 Protein export protein SecB 3.35119391876 0.499999999999 -2.85119391876 +UniRef50_UPI000381A76A hypothetical protein 0.302703122134 0.5 0.197296877866 +UniRef50_K7RNM6 Protein translocase subunit SecD 0.00624859015532 0.5 0.493751409845 +UniRef50_V9H6U9 0.256494722675 0.5 0.243505277325 +UniRef50_A7IGH8 Heat shock protein DnaJ domain protein 0.332228966713 0.5 0.167771033287 +UniRef50_A5UK66 0.47376673541 0.5 0.0262332645903 +UniRef50_Q88YL5 Peptide chain release factor 2 0.94856227534 0.5 -0.44856227534 +UniRef50_B9KPA3 Lipid A biosynthesis acyltransferase 0.159308267759 0.5 0.340691732241 +UniRef50_U3HEJ8 2.13003209166 0.500000000001 -1.63003209166 +UniRef50_P37627 1.12931445507 0.5 -0.629314455072 +UniRef50_UPI0004691CF3 hypothetical protein 1.59358154848 0.5 -1.09358154848 +UniRef50_G7H917 3.88996296863 0.5 -3.38996296863 +UniRef50_Q99TA4 HTH type transcriptional regulator rot 2.5224446932 0.5 -2.0224446932 +UniRef50_UPI00047C5CBE hypothetical protein 5.53514639013 0.500000000001 -5.03514639013 +UniRef50_UPI0004786076 acetolactate synthase catalytic subunit 0.467346516341 0.5 0.0326534836591 +UniRef50_UPI0003707FEC hypothetical protein 0.00446768623598 0.5 0.495532313764 +UniRef50_UPI0003AADB2D formyl CoA transferase 0.00457130482112 0.499999999999 0.495428695179 +UniRef50_S1HMP3 Pyrimidine utilization protein D 0.362569838277 0.5 0.137430161723 +UniRef50_B9DPH3 Ribonuclease HII 2.36685235051 0.5 -1.86685235051 +UniRef50_P64484 1.50741182306 0.5 -1.00741182306 +UniRef50_Q6F8V9 0.0614874527758 0.5 0.438512547224 +UniRef50_UPI0003607777 hypothetical protein, partial 0.126270249201 0.5 0.373729750799 +UniRef50_UPI000376E7E9 hypothetical protein 1.50895639497 0.5 -1.00895639497 +UniRef50_Q58626 Pyruvate carboxylase subunit A 0.00056603194744 0.500000000001 0.499433968052 +UniRef50_UPI0004731C2E hypothetical protein 0.152071785512 0.5 0.347928214488 +UniRef50_UPI0004719EAD ATPase 0.352438852162 0.5 0.147561147838 +UniRef50_V7YXX8 0.345890329277 0.5 0.154109670723 +UniRef50_K7SCS8 0.168433854925 0.5 0.331566145075 +UniRef50_A5UKI4 Predicted phosphoesterase, YfcE 1.82586810203 0.5 -1.32586810203 +UniRef50_UPI0003D2681B PREDICTED 0.0213022370115 0.5 0.478697762988 +UniRef50_P80239 Alkyl hydroperoxide reductase subunit C 0.116163922545 0.5 0.383836077455 +UniRef50_P0ABK0 Cytochrome bd I ubiquinol oxidase subunit 1 0.112536282762 0.5 0.387463717238 +UniRef50_UPI0003B383CF SAM dependent methyltransferase 0.326138806835 0.5 0.173861193165 +UniRef50_UPI0002F5F55F hypothetical protein 1.91724513242 0.5 -1.41724513242 +UniRef50_UPI00047BBB2A protein phosphatase 0.286957155343 0.5 0.213042844657 +UniRef50_UPI0004707FDC MFS transporter 0.331707781463 0.5 0.168292218537 +UniRef50_Q3J3F1 NADH quinone oxidoreductase subunit H 1 1.39026990224 0.5 -0.890269902244 +UniRef50_A4IAV0 Proteophosphoglycan 5 0.698612626167 0.5 -0.198612626167 +UniRef50_F7QM88 Diguanylate phosphodiesterase 0.067174464448 0.5 0.432825535552 +UniRef50_A5ULA2 Transcriptional regulator, AraC family 1.23343663835 0.5 -0.733436638355 +UniRef50_D5ZZ67 SecA 0.426374840296 0.5 0.0736251597038 +UniRef50_B7LY72 0.655690790071 0.5 -0.155690790071 +UniRef50_Q02254 Nucleoside diphosphate kinase 1 0.175026449752 0.5 0.324973550248 +UniRef50_UPI0003B52538 MerR family transcriptional regulator, partial 0.00546491162765 0.5 0.494535088373 +UniRef50_S3Y4R2 0.0312695296816 0.5 0.468730470318 +UniRef50_D6SET8 Sucrose 6 phosphate hydrolase 2.64743019338 0.5 -2.14743019338 +UniRef50_D9SU34 RNA polymerase, sigma 24 subunit, ECF subfamily 0.121612674381 0.5 0.378387325619 +UniRef50_UPI00047E196E hypothetical protein 0.119737329922 0.5 0.380262670078 +UniRef50_Q5HQN2 D isomer specific 2 hydroxyacid dehydrogenase family protein 2.38950258509 0.5 -1.88950258509 +UniRef50_Q6LLZ7 359.304177521 0.49999999985 -358.80417752 +UniRef50_Q3JQS6 DNA mismatch repair protein MutS 0.0580027215296 0.5 0.441997278471 +UniRef50_UPI000466A22C hypothetical protein, partial 1.35179514109 0.5 -0.851795141093 +UniRef50_Q8CQC3 Membrane spanning protein 2.72046916452 0.5 -2.22046916452 +UniRef50_UPI00047D3526 hypothetical protein 0.345254336959 0.5 0.154745663041 +UniRef50_P24202 Mrr restriction system protein 0.876340271584 0.5 -0.376340271584 +UniRef50_UPI0003B4AFAB flagellin 0.0652090295042 0.500000000001 0.434790970495 +UniRef50_UPI0003B6A2EF aspartyl glutamyl tRNA amidotransferase subunit B 0.850127123321 0.5 -0.350127123321 +UniRef50_Q41348 Probable pyridoxal biosynthesis protein PDX1 0.693952200564 0.5 -0.193952200564 +UniRef50_Q1CBK6 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.488820008469 0.5 0.0111799915314 +UniRef50_P66774 L serine dehydratase 0.204442698806 0.5 0.295557301194 +UniRef50_P0ADR0 Inner membrane protein YqaA 1.35307218151 0.499999999999 -0.85307218151 +UniRef50_Q8REV6 Bifunctional purine biosynthesis protein PurH 0.0467700556426 0.5 0.453229944357 +UniRef50_B4TCQ6 Argininosuccinate lyase 0.957424847147 0.5 -0.457424847147 +UniRef50_V6YPB4 0.0895382344048 0.500000000001 0.410461765595 +UniRef50_Q7CB38 UPF0324 inner membrane protein YeiH 2.17296059808 0.5 -1.67296059808 +UniRef50_F0YKI4 Expressed protein 0.0560121025855 0.5 0.443987897414 +UniRef50_J7J208 Peptidylarginine deiminase like enzyme 0.117993464734 0.5 0.382006535266 +UniRef50_B6C3C1 Ribulose bisphosphate carboxylase, small subunit 4.5508365059 0.499999999999 -4.0508365059 +UniRef50_G7M7S7 Ketopantoate reductase ApbA PanE domain protein 0.0494960956196 0.5 0.45050390438 +UniRef50_UPI00046742AA hypothetical protein 1.62036606914 0.5 -1.12036606914 +UniRef50_P17812 CTP synthase 1 0.00849129858494 0.499999999999 0.491508701416 +UniRef50_Q8CPK1 Secretory antigen SsaA 10.1570473153 0.500000000001 -9.65704731532 +UniRef50_S5NA52 Hydrolase 6.01769801948 0.499999999997 -5.51769801948 +UniRef50_X7ECS1 Transposase 1.9633730537 0.500000000001 -1.4633730537 +UniRef50_I6U2S4 Phosphopantetheinyl transferase 3.56380236718 0.499999999999 -3.06380236718 +UniRef50_UPI0003728962 spermidine putrescine ABC transporter ATP binding protein 0.22895818426 0.5 0.27104181574 +UniRef50_UPI00029AE339 oxygen independent coproporphyrinogen III oxidase 0.162183825464 0.5 0.337816174536 +UniRef50_S5XV86 Membrane protein 1.44721179898 0.5 -0.947211798975 +UniRef50_W0E657 Transposase IS116 0.355672526857 0.5 0.144327473143 +UniRef50_UPI0002192B8A rod shape determining protein MreB 0.271789509202 0.5 0.228210490798 +UniRef50_UPI0004773247 hypothetical protein 0.161067203548 0.5 0.338932796452 +UniRef50_H8H0T4 0.00618535978163 0.5 0.493814640218 +UniRef50_W5VD93 7.25150629002 0.499999999998 -6.75150629002 +UniRef50_UPI0003EDCF69 PREDICTED 3.03787551452 0.499999999999 -2.53787551452 +UniRef50_P73534 Pyruvate kinase 2 0.670817303067 0.5 -0.170817303067 +UniRef50_D5P6E3 0.291599697373 0.5 0.208400302627 +UniRef50_I0E315 0.387986396942 0.5 0.112013603058 +UniRef50_A6M2J9 Cell wall surface repeat protein 0.0335048896364 0.5 0.466495110363 +UniRef50_P52045 Methylmalonyl CoA decarboxylase 1.40040090258 0.499999999998 -0.900400902582 +UniRef50_L0WJ64 3 phosphoshikimate 1 carboxyvinyltransferase 0.00344929185194 0.5 0.496550708148 +UniRef50_UPI0004743DFB long chain fatty acid CoA ligase, partial 1.79204850138 0.5 -1.29204850138 +UniRef50_UPI00035FBEC8 hypothetical protein 0.155960572225 0.5 0.344039427775 +UniRef50_M1MXV9 Methyl accepting chemotaxis protein 0.194205105238 0.5 0.305794894762 +UniRef50_D8JNY1 Membrane fusion protein 0.0932569804592 0.5 0.406743019541 +UniRef50_Q8FJ67 5.19751515119 0.499999999999 -4.69751515119 +UniRef50_C1DHR0 Fimbrial assembly protein 0.633483228661 0.5 -0.133483228661 +UniRef50_UPI000382A44D hypothetical protein 0.0154507479942 0.5 0.484549252006 +UniRef50_UPI0004156576 MULTISPECIES 0.46080468736 0.5 0.0391953126404 +UniRef50_A3S860 1.11741295298 0.5 -0.617412952983 +UniRef50_D8HER7 0.874132608721 0.5 -0.374132608721 +UniRef50_Q31YD8 Erythronate 4 phosphate dehydrogenase 2.4131832485 0.500000000001 -1.9131832485 +UniRef50_UPI00029CB712 ketol acid reductoisomerase IlvC, partial 0.269068572486 0.5 0.230931427514 +UniRef50_UPI00041F053E hypothetical protein 1.49588684902 0.5 -0.995886849023 +UniRef50_Q7U0N5 Fructose 1,6 bisphosphatase class 2 0.030901246735 0.5 0.469098753265 +UniRef50_Q5QV04 50S ribosomal protein L25 0.09181659675 0.5 0.40818340325 +UniRef50_A5N555 0.19553293933 0.5 0.30446706067 +UniRef50_UPI0001DCFB76 hypothetical protein 0.399033561307 0.5 0.100966438693 +UniRef50_UPI0003734789 hypothetical protein 0.389287820449 0.5 0.110712179551 +UniRef50_UPI000237AE8F citrate synthase 0.602438704832 0.5 -0.102438704832 +UniRef50_A6M0W0 Methyltransferase type 11 0.120607613667 0.5 0.379392386333 +UniRef50_Q63VA4 1.41147751294 0.5 -0.91147751294 +UniRef50_C6SRX5 0.946658737415 0.5 -0.446658737415 +UniRef50_P95780 dTDP glucose 4,6 dehydratase 3.16379022415 0.5 -2.66379022415 +UniRef50_K0YWY6 0.332410978811 0.5 0.167589021189 +UniRef50_A6LT81 Histidine kinase internal region 0.182034028992 0.5 0.317965971007 +UniRef50_UPI00041035B8 hypothetical protein 0.297589860019 0.5 0.202410139981 +UniRef50_UPI0002E14D16 hypothetical protein 0.0650826596588 0.5 0.434917340341 +UniRef50_J9PAX2 1.2806762131 0.5 -0.7806762131 +UniRef50_B2RI74 Aminomethyltransferase 0.00190885698104 0.5 0.498091143019 +UniRef50_T2WDF3 Excinuclease ABC subunit A domain protein 0.630583436777 0.5 -0.130583436777 +UniRef50_P37016 0.875265578911 0.5 -0.375265578911 +UniRef50_M1M1B1 PTS system maltose and glucose specific EIICB component MalX 0.0717419091196 0.5 0.42825809088 +UniRef50_E6RJY5 0.143158590275 0.5 0.356841409725 +UniRef50_UPI0002B4135E PREDICTED 0.0402421859813 0.5 0.459757814018 +UniRef50_UPI00036A4FA0 hypothetical protein 0.704325289417 0.5 -0.204325289417 +UniRef50_B9TLS4 0.00642560811147 0.5 0.493574391889 +UniRef50_P76254 Putative dioxygenase subunit beta YeaX 1.02421082531 0.5 -0.524210825307 +UniRef50_UPI00036DD6AB hypothetical protein 0.723040335799 0.5 -0.223040335799 +UniRef50_D3E4S6 Methionine synthase MetE 3.16033163909 0.499999999999 -2.66033163909 +UniRef50_Q5HP49 Oxidoreductase, short chain dehydrogenase reductase family 2.84181780965 0.5 -2.34181780965 +UniRef50_UPI00016C0A47 Sodium proline symporter 0.207264946718 0.5 0.292735053282 +UniRef50_P37018 1.44875823565 0.5 -0.94875823565 +UniRef50_R0X3A7 FAD binding domain protein 0.0383580220898 0.5 0.46164197791 +UniRef50_A3JD10 Choline glycine betaine transporter 1.35907483618 0.5 -0.859074836185 +UniRef50_P74211 Pyridoxine pyridoxamine 5 phosphate oxidase 0.000240737146166 0.500000000001 0.499759262853 +UniRef50_Q2FH82 Glycerol 3 phosphate acyltransferase 3.98300434421 0.5 -3.48300434421 +UniRef50_P55138 3.51224832075 0.499999999999 -3.01224832075 +UniRef50_UPI000366203C hypothetical protein 0.326957970638 0.5 0.173042029362 +UniRef50_UPI00036AC02E hypothetical protein 0.0479822775003 0.5 0.4520177225 +UniRef50_P03023 Lactose operon repressor 1.09119576378 0.5 -0.59119576378 +UniRef50_F0P751 2.45994830022 0.499999999998 -1.95994830021 +UniRef50_A6LQP5 NLP P60 protein 0.621334633549 0.5 -0.121334633549 +UniRef50_G7ZP32 11.1395868531 0.499999999993 -10.6395868531 +UniRef50_UPI0003B6696B Holliday junction resolvase 0.804939201003 0.5 -0.304939201003 +UniRef50_W0ZB71 0.19010469472 0.5 0.30989530528 +UniRef50_A9VN54 Ribosomal RNA small subunit methyltransferase A 0.0506110391811 0.5 0.449388960819 +UniRef50_A9DDG2 Sulfate transporter 1.32696768622 0.5 -0.826967686225 +UniRef50_UPI00047D446A HAD family hydrolase 0.123932285318 0.5 0.376067714682 +UniRef50_I4EVD0 1.84911394247 0.500000000001 -1.34911394247 +UniRef50_A0A023RXY1 Helicase 0.01106492877 0.5 0.48893507123 +UniRef50_E6JZW3 Amino acid permease 1.20153025752 0.5 -0.701530257517 +UniRef50_UPI0003659021 MULTISPECIES 1.91627849708 0.5 -1.41627849708 +UniRef50_D2ZS89 3.95979965816 0.499999999999 -3.45979965815 +UniRef50_UPI0002880506 dihydroxyacetone kinase 0.00680540468753 0.5 0.493194595313 +UniRef50_E8U932 UvrD REP helicase 0.00360403437537 0.5 0.496395965624 +UniRef50_C5N0Y7 Iron chelate uptake ABC transporter, FeCT family, permease protein 1.93160427071 0.5 -1.43160427071 +UniRef50_G2L894 0.250676206164 0.5 0.249323793836 +UniRef50_D4FNL7 Ribonuclease R 3.01707241354 0.499999999998 -2.51707241354 +UniRef50_UPI0003B4AB96 resolvase, partial 1.47824718837 0.5 -0.978247188372 +UniRef50_P77218 Ethanolamine utilization protein EutD 1.3160033214 0.500000000002 -0.816003321399 +UniRef50_Q3JHV2 3.92704803268 0.500000000005 -3.42704803269 +UniRef50_UPI00026597D0 PREDICTED 3.25582246308 0.499999999999 -2.75582246308 +UniRef50_Q3JHV1 1.00116091169 0.5 -0.50116091169 +UniRef50_W4S288 0.308079099146 0.5 0.191920900854 +UniRef50_L8GKM7 0.133347622014 0.5 0.366652377986 +UniRef50_U2ZDH4 UPF0301 protein MBE BAB_1780 0.263711014767 0.5 0.236288985233 +UniRef50_U1LZ26 Transcriptional regulator 0.251012074094 0.5 0.248987925906 +UniRef50_E8TAB0 Glutamine synthetase catalytic region 1.69216977793 0.499999999999 -1.19216977793 +UniRef50_A3PHY8 Transcriptional regulator, LysR family 3.44529357399 0.500000000006 -2.945293574 +UniRef50_A0A023RZA2 Quaternary ammonium transporter 0.0529161474541 0.5 0.447083852546 +UniRef50_UPI0004789298 hypothetical protein 2.4973929718 0.5 -1.9973929718 +UniRef50_G1THI8 0.00391141569609 0.5 0.496088584304 +UniRef50_D8UE68 Formin 1.19582848646 0.5 -0.695828486459 +UniRef50_I1ZKQ0 Fe2+ Zn2+ uptake regulation protein 1.48633535632 0.5 -0.986335356319 +UniRef50_P0AE84 Sensor protein CpxA 0.468556139448 0.5 0.0314438605518 +UniRef50_K0M3M3 0.957152694782 0.5 -0.457152694782 +UniRef50_UPI0003C7C8AC hypothetical protein 0.62441038104 0.5 -0.12441038104 +UniRef50_Q4L332 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.68145086988 0.500000000001 -1.18145086988 +UniRef50_E6NJA8 0.0130078212432 0.5 0.486992178757 +UniRef50_Q5H1D4 Methionine aminopeptidase 0.638123437793 0.5 -0.138123437793 +UniRef50_Q48EZ4 Sensor histidine kinase 0.52583303766 0.5 -0.02583303766 +UniRef50_Q0FD62 1.61381850388 0.499999999999 -1.11381850388 +UniRef50_Q8F6I3 Phosphoribosylformylglycinamidine synthase 2 1.99660781849 0.5 -1.49660781849 +UniRef50_Q3SSW6 50S ribosomal protein L3 1.42886044193 0.5 -0.928860441929 +UniRef50_Q9CEB7 Putative ribosome biogenesis GTPase RsgA 0.752109850655 0.5 -0.252109850655 +UniRef50_A6LVT4 Cell wall hydrolase autolysin 0.0312931279341 0.5 0.468706872066 +UniRef50_B2UN91 Glutamate tRNA ligase 0.198926848184 0.5 0.301073151816 +UniRef50_F0RNV8 NurA domain containing protein 0.00687625704055 0.499999999999 0.49312374296 +UniRef50_Q2NFL4 Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein 1.32300177061 0.5 -0.823001770614 +UniRef50_E9T8A5 Transcriptional regulator, PadR family 0.19109266557 0.5 0.30890733443 +UniRef50_UPI000470F100 hypothetical protein 0.230439972276 0.5 0.269560027724 +UniRef50_D3DYX9 Glycosyl transferase GT4 family 0.625036802105 0.5 -0.125036802105 +UniRef50_F5Y5K7 Candidate UDP glucose 6 dehydrogenase 0.724979833307 0.5 -0.224979833307 +UniRef50_A2PUV3 0.147063355941 0.5 0.352936644059 +UniRef50_UPI00047022DB luciferase 0.775570640531 0.5 -0.275570640531 +UniRef50_U5NMZ2 0.618369946274 0.5 -0.118369946274 +UniRef50_P0AC14 Dihydropteroate synthase 11.9733875268 0.499999999998 -11.4733875267 +UniRef50_U5NMZ6 3.84895818577 0.5 -3.34895818577 +UniRef50_UPI000255C69D hypothetical protein 1.20960031279 0.5 -0.709600312791 +UniRef50_UPI000374608B hypothetical protein 0.0248821820197 0.5 0.47511781798 +UniRef50_I6SWC9 dTDP 4 dehydrorhamnose 3,5 epimerase 0.745770168415 0.5 -0.245770168415 +UniRef50_Q8GWW7 Agmatine deiminase 0.0797849598725 0.499999999999 0.420215040128 +UniRef50_X6CNL3 0.236925759863 0.5 0.263074240137 +UniRef50_E6X1D4 Pyruvate ketoisovalerate oxidoreductase, gamma subunit 0.0370687026528 0.5 0.462931297347 +UniRef50_R5TGD1 Cobalt import ATP binding protein CbiO 2 0.626421945832 0.5 -0.126421945832 +UniRef50_D6ZIJ6 0.440525416408 0.5 0.0594745835917 +UniRef50_UPI0003B576AB hypothetical protein 0.243969784505 0.5 0.256030215495 +UniRef50_UPI00036BB2A6 hypothetical protein 0.465511966594 0.5 0.0344880334058 +UniRef50_P12049 UPF0062 protein YexA 0.197125406165 0.5 0.302874593835 +UniRef50_G7LWI4 DNA polymerase 1.47768963282 0.5 -0.977689632822 +UniRef50_M9RKF6 D alanyl D alanine carboxypeptidase DacC 0.582663435468 0.5 -0.0826634354678 +UniRef50_K4QLG2 0.846205615771 0.5 -0.346205615771 +UniRef50_W1U7Z2 Peptidase, M56 family 0.588733424759 0.5 -0.088733424759 +UniRef50_E0SX52 Predicted Fe S oxidoreductase 0.116225029066 0.5 0.383774970934 +UniRef50_P52993 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.0814586759364 0.5 0.418541324063 +UniRef50_UPI0003B51A23 signal recognition particle protein Srp54 0.0250069225816 0.5 0.474993077418 +UniRef50_UPI00047B2FC0 iron reductase 0.0362268803033 0.5 0.463773119697 +UniRef50_UPI000470320D hypothetical protein 1.07749425742 0.5 -0.577494257421 +UniRef50_L0MNT8 ATPase component of ABC transporters with duplicated ATPase domain 2.27398048912 0.499999999999 -1.77398048912 +UniRef50_D5AV27 Secretion ATP binding protein, HlyB family 2.33431502339 0.499999999999 -1.83431502339 +UniRef50_UPI0003605157 hypothetical protein 1.99725003949 0.5 -1.49725003949 +UniRef50_W5X880 Aminomethyltransferase 0.321311573396 0.5 0.178688426604 +UniRef50_R1ERY2 0.561658085752 0.5 -0.0616580857522 +UniRef50_Q189B8 Threonine tRNA ligase 2.32164086748 0.5 -1.82164086748 +UniRef50_Q3JS16 0.269931422767 0.5 0.230068577233 +UniRef50_Q2FWP1 Phospholipase C 3.99234220103 0.500000000003 -3.49234220103 +UniRef50_B3DRA9 Deoxyuridine 5 triphosphate nucleotidohydrolase 0.0346512415117 0.5 0.465348758488 +UniRef50_UPI000369A6CD hypothetical protein 2.11494092513 0.5 -1.61494092513 +UniRef50_A4EPM0 0.685028301986 0.5 -0.185028301986 +UniRef50_UPI00046F0FC9 hypothetical protein 0.346067576029 0.5 0.153932423971 +UniRef50_Q8GCY1 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.446417948771 0.5 0.0535820512294 +UniRef50_K0L524 Polysaccharide biosynthesis family protein 3.24938692935 0.500000000001 -2.74938692935 +UniRef50_Q3ZZJ7 Malate dehydrogenase 0.732605110657 0.5 -0.232605110657 +UniRef50_Q3JS13 0.103300277708 0.499999999999 0.396699722292 +UniRef50_L7WZJ1 0.324696626995 0.5 0.175303373005 +UniRef50_Q92ID7 NADH quinone oxidoreductase subunit C 0.64674533387 0.5 -0.14674533387 +UniRef50_V8N3A8 0.71539612866 0.5 -0.21539612866 +UniRef50_UPI000382F770 hypothetical protein M271_03505 0.52550602616 0.5 -0.0255060261603 +UniRef50_Q5GX46 0.14769971841 0.5 0.35230028159 +UniRef50_B9FN35 0.221359853276 0.5 0.278640146724 +UniRef50_Q8CMV5 Phage infection protein 1.10755986064 0.5 -0.607559860637 +UniRef50_UPI0004788FBC cytochrome oxidase 0.355880983828 0.5 0.144119016172 +UniRef50_P16858 Glyceraldehyde 3 phosphate dehydrogenase 0.255331330343 0.5 0.244668669657 +UniRef50_Q9K105 Quinolinate synthase A 0.196491929505 0.5 0.303508070495 +UniRef50_U5MKN8 FAD dependent oxidoreductase 0.121527795957 0.5 0.378472204043 +UniRef50_A0A010YS39 1.82687188734 0.499999999998 -1.32687188734 +UniRef50_X1KP36 Marine sediment metagenome DNA, contig 0.594461798475 0.5 -0.0944617984748 +UniRef50_D9RNH9 Phage transcriptional regulator 1.35361201235 0.5 -0.853612012347 +UniRef50_R7DZG1 tRNA specific adenosine deaminase 8.09735562181 0.499999999995 -7.5973556218 +UniRef50_UPI00047D8DA0 methionine aminopeptidase 0.802622648516 0.5 -0.302622648516 +UniRef50_Q9PHC7 Oxygen dependent coproporphyrinogen III oxidase 0.189133862475 0.5 0.310866137525 +UniRef50_E6PZA5 0.128996304 0.5 0.371003696 +UniRef50_Q1LGM8 Metal dependent phosphohydrolase, HD subdomain protein 2.06207071372 0.5 -1.56207071372 +UniRef50_D8LRY0 0.57723909059 0.5 -0.0772390905902 +UniRef50_Q46907 Putative electron transfer flavoprotein subunit YgcQ 0.63128757792 0.5 -0.13128757792 +UniRef50_B5R7J9 HTH type transcriptional regulator MalT 1.66192015981 0.5 -1.16192015981 +UniRef50_A5IRR8 Bacteriocin associated integral membrane protein 2.37844276512 0.5 -1.87844276512 +UniRef50_V5XRA6 ABC superfamily ATP binding cassette transporter, substrate binding protein 0.713600388417 0.5 -0.213600388417 +UniRef50_UPI00036AF6AD hypothetical protein 0.486352873596 0.5 0.0136471264042 +UniRef50_Q6F797 0.00574310833153 0.499999999999 0.494256891669 +UniRef50_Q5WJ15 Lipoprotein 2.10294685802 0.5 -1.60294685802 +UniRef50_Q8P151 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.302580160402 0.5 0.197419839598 +UniRef50_S5YEW5 Chaperone Hsp33 3.48539817764 0.5 -2.98539817764 +UniRef50_UPI00047E6CAE macrolide ABC transporter ATP binding protein 1.58590604839 0.500000000001 -1.08590604839 +UniRef50_Q7TVV6 2 isopropylmalate synthase 0.0508473751805 0.5 0.449152624819 +UniRef50_UPI00047CA452 metal dependent hydrolase 0.174229461723 0.5 0.325770538277 +UniRef50_UPI0004728867 hypothetical protein 0.26889041001 0.5 0.23110958999 +UniRef50_R4SLJ1 0.456097491685 0.5 0.0439025083146 +UniRef50_UPI00047EC453 hypothetical protein 0.336233340795 0.5 0.163766659205 +UniRef50_W4HQ39 Fe3+ siderophore ABC transporter substrate binding protein 0.837477541834 0.5 -0.337477541834 +UniRef50_P58497 Transcriptional regulator ModE 1.31908176442 0.5 -0.819081764417 +UniRef50_A5UJC2 Predicted phosphotransacetylase 0.281528672307 0.5 0.218471327693 +UniRef50_D8LEL7 0.299576719098 0.5 0.200423280902 +UniRef50_F0Y2Z5 Expressed protein 0.428736705838 0.5 0.0712632941617 +UniRef50_UPI00047CBC3F cytochrome C 1.15512596764 0.5 -0.655125967639 +UniRef50_A7HZN6 Chorismate synthase 0.000448867727571 0.5 0.499551132273 +UniRef50_M4ZJ25 Integrase recombinase 0.455416160605 0.5 0.0445838393947 +UniRef50_B2HTD1 Transcriptional regulator 0.00746914813492 0.500000000001 0.492530851864 +UniRef50_Q98I01 UvrABC system protein B 1.86962504515 0.5 -1.36962504515 +UniRef50_S1SUV9 0.286810537846 0.5 0.213189462154 +UniRef50_C9WZ56 Transcription repair coupling factor 0.00672442487889 0.5 0.493275575121 +UniRef50_UPI0002FACF3D hypothetical protein 0.603240592051 0.5 -0.103240592051 +UniRef50_UPI00035CB657 hypothetical protein 1.26600192824 0.5 -0.766001928235 +UniRef50_Q3J1W8 Chemotaxis histidine protein kinase, CheA3 1.49127348542 0.5 -0.991273485424 +UniRef50_S5CIT2 Non ribosomal peptide synthetase modules related protein 0.0298236860987 0.5 0.470176313901 +UniRef50_G4LFN6 0.634473129578 0.5 -0.134473129578 +UniRef50_A0A022LJU5 0.470892261757 0.5 0.0291077382429 +UniRef50_D5ALC6 CTP pyrophosphohydrolase 10.433316419 0.500000000002 -9.93331641903 +UniRef50_K0L0Y0 Pyruvate oxidase 1.76874745708 0.5 -1.26874745708 +UniRef50_Q8CQL5 Poly alpha glucosyltransferase 1.97868549544 0.499999999998 -1.47868549544 +UniRef50_P11954 L threonine dehydratase catabolic TdcB 0.745280931705 0.5 -0.245280931705 +UniRef50_X5P5H6 1.10370397092 0.5 -0.603703970919 +UniRef50_B1IS55 UPF0442 protein YjjB 1.12421123674 0.5 -0.624211236742 +UniRef50_Q0C3I3 Translocator protein, LysE family 1.71351449116 0.499999999998 -1.21351449116 +UniRef50_Q5HQY2 Glycosyl transferase, group 4 family protein 1.43339064018 0.5 -0.933390640177 +UniRef50_E6QHZ2 0.638262919904 0.5 -0.138262919904 +UniRef50_A1VWN7 Transposase, IS4 family 0.635388896345 0.5 -0.135388896345 +UniRef50_B8DVE0 Ketol acid reductoisomerase 0.185270414222 0.5 0.314729585778 +UniRef50_UPI00037C3339 hypothetical protein 0.372066503357 0.5 0.127933496643 +UniRef50_A4WPY8 Short chain dehydrogenase reductase SDR 1.110672038 0.5 -0.610672038005 +UniRef50_F7XAS6 Transcriptional regulator, LysR family 2.19425790422 0.5 -1.69425790422 +UniRef50_A5USR6 DNA directed RNA polymerase subunit beta 1.37393877983 0.5 -0.873938779828 +UniRef50_Q3HKI3 Possible virC1 gene, ATPase 4.32885710536 0.500000000001 -3.82885710536 +UniRef50_C3K4R1 Glycerol 3 phosphate acyltransferase 0.363962099018 0.5 0.136037900982 +UniRef50_D4J507 Predicted membrane protein 0.104006422176 0.5 0.395993577824 +UniRef50_Q3J220 Phage terminase like protein, large subunit 1.80190012713 0.5 -1.30190012713 +UniRef50_Q168P3 Trk system potassium uptake protein 2.24858507984 0.5 -1.74858507984 +UniRef50_Q5ZUT5 N succinylglutamate 5 semialdehyde dehydrogenase 0.0707958109168 0.500000000001 0.429204189083 +UniRef50_Q04539 Ribulose phosphate 3 epimerase, plasmid 0.200981701284 0.5 0.299018298716 +UniRef50_K8Z653 0.997634447197 0.5 -0.497634447197 +UniRef50_B2A6Z3 Triosephosphate isomerase 0.332997473525 0.5 0.167002526475 +UniRef50_Q8TX36 50S ribosomal protein L22P 4.51614122144 0.500000000001 -4.01614122145 +UniRef50_A0A024JQQ2 Plasmid pSG, complete sequence 0.479974509938 0.5 0.0200254900616 +UniRef50_Q58369 3.13890156788 0.5 -2.63890156788 +UniRef50_C7PE04 Short chain dehydrogenase reductase SDR 0.170317522553 0.5 0.329682477447 +UniRef50_Q3IVA6 Mannose 1 phosphate guanylyltransferase mannose 6 phosphate isomerase, type 2 3.47095764008 0.5 -2.97095764008 +UniRef50_V4CH91 Chaperone fimC 0.779623681111 0.5 -0.279623681111 +UniRef50_A0A038GJ20 Lipoprotein 7.6329700833 0.5 -7.1329700833 +UniRef50_J3CKR0 Pyruvate dehydrogenase complex, dehydrogenase component (Fragment) 0.405734151185 0.5 0.0942658488152 +UniRef50_A7HGV2 tRNA pseudouridine synthase D 0.138504572101 0.5 0.361495427899 +UniRef50_V9GEA9 Flagellar hook length control protein FliK 0.0247803270521 0.5 0.475219672948 +UniRef50_UPI0002FF51AC hypothetical protein 0.0058691772067 0.5 0.494130822793 +UniRef50_W4TUZ9 Mg Co Ni transporter MgtE 0.225867300033 0.5 0.274132699967 +UniRef50_UPI00035D28CB hypothetical protein 1.64337712707 0.5 -1.14337712707 +UniRef50_UPI0003EC5005 PREDICTED 0.0719732583864 0.5 0.428026741614 +UniRef50_P58113 Pirin like protein CC_1473 1.38312595784 0.5 -0.883125957838 +UniRef50_E1VCL4 ABC type transport system permease protein 1.83715475375 0.5 -1.33715475375 +UniRef50_UPI0003D08670 PREDICTED 1.97702640198 0.500000000001 -1.47702640198 +UniRef50_K2Q5M0 2.8468565393 0.500000000001 -2.3468565393 +UniRef50_U5BVI3 1.03336612953 0.5 -0.533366129525 +UniRef50_UPI000248D343 extracellular ligand binding receptor 0.653616290544 0.5 -0.153616290544 +UniRef50_V2CGD9 D mannonate oxidoreductase 0.405583203464 0.5 0.0944167965363 +UniRef50_C9XPK8 Padr family transcriptional regulator 1.83472714566 0.5 -1.33472714566 +UniRef50_U4QEL4 2.91887911269 0.499999999999 -2.41887911269 +UniRef50_B3EFN5 Serine hydroxymethyltransferase 0.376780034997 0.5 0.123219965003 +UniRef50_J6CMF8 Sugar ABC transporter permease 3.11030245178 0.5 -2.61030245178 +UniRef50_I0Z434 0.405225634248 0.5 0.0947743657524 +UniRef50_F0YNG2 0.024583144176 0.5 0.475416855824 +UniRef50_UPI0003B55F2C LacI family transcriptional regulator 0.0370646515897 0.5 0.46293534841 +UniRef50_UPI00026263DB ABC transporter 0.23406195468 0.5 0.26593804532 +UniRef50_Q55154 Chaperone protein dnaK1 5.67376032991 0.5 -5.17376032991 +UniRef50_Y7D100 2.73274216953 0.499999999999 -2.23274216953 +UniRef50_F4H2Z9 0.214898550815 0.5 0.285101449185 +UniRef50_B4RA78 Regulatory protein, TetR 0.0130822978796 0.5 0.48691770212 +UniRef50_W8Z0S3 0.102722505408 0.5 0.397277494592 +UniRef50_K0VXX1 0.490932737804 0.5 0.00906726219614 +UniRef50_E4N9L3 0.0701026265688 0.5 0.429897373431 +UniRef50_B9EAC4 1.74921209759 0.500000000002 -1.24921209759 +UniRef50_UPI000473EAD9 hypothetical protein, partial 0.362466019056 0.5 0.137533980944 +UniRef50_M9VI34 ATP dependent dethiobiotin synthetase BioD 0.0376459117558 0.5 0.462354088244 +UniRef50_Q5LY30 Glycoprotein endopeptidase 0.301861583079 0.5 0.198138416921 +UniRef50_A3PS51 2.09030237897 0.500000000001 -1.59030237897 +UniRef50_B8DNL4 ATP dependent Clp protease proteolytic subunit 0.0203210098029 0.5 0.479678990197 +UniRef50_R9ZDX0 GntR family transcriptional regulator 2.91012851336 0.5 -2.41012851336 +UniRef50_B9KHI6 0.144370410322 0.5 0.355629589678 +UniRef50_C1D0Z6 Thymidine kinase 0.153760551477 0.5 0.346239448523 +UniRef50_Q8DCG0 Ribosomal large subunit pseudouridine synthase A 37.1200032145 0.499999999952 -36.6200032144 +UniRef50_Q97EX0 Ribosomal RNA small subunit methyltransferase A 0.108312950172 0.499999999999 0.391687049829 +UniRef50_P65691 ATP dependent 6 phosphofructokinase 0.234601922765 0.5 0.265398077235 +UniRef50_Q9LXS7 Citrate synthase 1, peroxisomal 0.10225609309 0.5 0.39774390691 +UniRef50_C4ZHB9 Glutamyl tRNA amidotransferase subunit A 0.842566946218 0.5 -0.342566946218 +UniRef50_Q3JWI9 PilL 0.821916973196 0.5 -0.321916973196 +UniRef50_B0V8W4 0.0214760634215 0.5 0.478523936579 +UniRef50_UPI000365191C hypothetical protein 0.0602534568762 0.5 0.439746543124 +UniRef50_Q3J7E7 Malate dehydrogenase 0.688514892774 0.5 -0.188514892774 +UniRef50_C3AWX8 0.0817948321505 0.5 0.418205167849 +UniRef50_UPI00046718DB oxidoreductase, partial 0.132622948697 0.5 0.367377051303 +UniRef50_UPI000463A2AA 3 hydroxybutyrate dehydrogenase 0.0202879406937 0.499999999999 0.479712059307 +UniRef50_C6WBN9 PE PGRS family protein 0.0486541758112 0.5 0.451345824189 +UniRef50_Q11RE2 ATP dependent 6 phosphofructokinase 0.488321061935 0.5 0.0116789380648 +UniRef50_UPI0003B54089 hypothetical protein 2.16172458413 0.5 -1.66172458413 +UniRef50_V3ARY1 Ornithine decarboxylase, inducible 0.190733223524 0.5 0.309266776476 +UniRef50_Q2IEZ0 Aspartyl Asparaginyl beta hydroxylase 0.50456395386 0.5 -0.00456395386017 +UniRef50_Q97BF6 Potassium transporting ATPase B chain 0.00335155325161 0.499999999999 0.496648446749 +UniRef50_UPI0003D06760 50S ribosomal protein L11 0.293294571036 0.5 0.206705428964 +UniRef50_A8A6Z4 Protein FdhE 1.11057937295 0.5 -0.610579372949 +UniRef50_B9KKX7 0.676780604766 0.5 -0.176780604766 +UniRef50_C0MHE9 0.326137159537 0.5 0.173862840463 +UniRef50_Q3HKD5 6.35731724578 0.500000000001 -5.85731724578 +UniRef50_Q3HKD7 1.19255882628 0.5 -0.692558826281 +UniRef50_Q3HKD6 1.99714910889 0.500000000001 -1.49714910889 +UniRef50_UPI00036D0132 hypothetical protein 6.31328156265 0.499999999998 -5.81328156265 +UniRef50_P0AEQ8 Glutamine transport system permease protein GlnP 1.08199578697 0.500000000001 -0.581995786974 +UniRef50_Q9I1L9 Dihydrolipoyl dehydrogenase 0.426586147145 0.5 0.0734138528553 +UniRef50_UPI00047BC897 acyl CoA dehydrogenase 0.145077625437 0.500000000001 0.354922374562 +UniRef50_G8V322 2.16671056406 0.5 -1.66671056406 +UniRef50_UPI000465AF35 aldehyde oxidoreductase 0.0786001327359 0.5 0.421399867264 +UniRef50_D0LSQ0 3 demethylubiquinone 9 3 methyltransferase 6.01922162361 0.499999999997 -5.51922162361 +UniRef50_Q8DSD9 6.94807691512 0.499999999998 -6.44807691512 +UniRef50_S1STI3 Carbonic anhydrase, family 3 1.08616448165 0.5 -0.586164481649 +UniRef50_U5MMX2 Type IV pilus assembly protein PilO 0.406411496996 0.5 0.0935885030035 +UniRef50_Q3JB01 0.214492424861 0.5 0.285507575139 +UniRef50_Q1GMD1 Probable chemoreceptor glutamine deamidase CheD 1 3.10977989611 0.500000000001 -2.60977989611 +UniRef50_I3X6Z9 0.335747843326 0.5 0.164252156674 +UniRef50_UPI00037E93F7 hypothetical protein 1.65824623509 0.499999999998 -1.15824623509 +UniRef50_P20751 Probable adenosine monophosphate protein transferase fic 1.08961380551 0.5 -0.589613805508 +UniRef50_UPI000378B4BF hypothetical protein 0.195604139498 0.5 0.304395860502 +UniRef50_UPI0004671E08 hypothetical protein 0.248258654549 0.5 0.251741345451 +UniRef50_C6SQC4 1.12298619056 0.5 -0.622986190561 +UniRef50_UPI0003761AFD hypothetical protein, partial 0.291225503921 0.5 0.208774496079 +UniRef50_S5XPF3 ATP dependent RNA helicase RhlE 1.16004832709 0.5 -0.660048327093 +UniRef50_P31802 Nitrate nitrite response regulator protein NarP 0.786493552727 0.5 -0.286493552727 +UniRef50_O07344 Signal peptidase I 0.044216507981 0.5 0.455783492019 +UniRef50_UPI0000DB7F4F PREDICTED 0.166004947762 0.5 0.333995052238 +UniRef50_B4FRS7 0.203889404311 0.5 0.296110595689 +UniRef50_Q8PCH1 tRNA dihydrouridine synthase B 0.481069854547 0.5 0.0189301454531 +UniRef50_G6CTE1 1.94333627425 0.5 -1.44333627425 +UniRef50_UPI00026C71CA TetR family transcriptional regulator 1.50117863822 0.5 -1.00117863822 +UniRef50_UPI00024870DD phosphoglyceromutase, partial 0.59905697049 0.5 -0.0990569704898 +UniRef50_R7EC63 0.21065074313 0.5 0.28934925687 +UniRef50_B7MQ51 0.0900557720981 0.5 0.409944227902 +UniRef50_F0T772 MotA TolQ ExbB proton channel family protein 1.39736143907 0.5 -0.89736143907 +UniRef50_A6LWJ1 DNA mismatch repair protein MutL 0.0141412440538 0.5 0.485858755946 +UniRef50_R6EG03 Serine type site specific recombinase 0.0418868349682 0.5 0.458113165031 +UniRef50_B5BFR1 Possible oxygen independent coproporphyrinogen III oxidase 2.15432606048 0.499999999997 -1.65432606048 +UniRef50_Q9I7C2 DNA gyrase subunit B 2.17043832886 0.5 -1.67043832886 +UniRef50_Q9I656 1.22010901157 0.5 -0.720109011571 +UniRef50_U6JZT0 10.3556317656 0.500000000002 -9.85563176565 +UniRef50_UPI0003B550BB spermidine putrescine ABC transporter permease 0.0271142471652 0.5 0.472885752835 +UniRef50_D6SHJ8 Bacterial membrane protein YfhO 1.04465841127 0.5 -0.544658411272 +UniRef50_UPI00036502F5 hypothetical protein 0.937171523721 0.5 -0.437171523721 +UniRef50_Q0AAU9 Elongation factor P 0.155052048373 0.5 0.344947951627 +UniRef50_Q82HL5 Imidazolonepropionase 0.0368853398764 0.5 0.463114660123 +UniRef50_B7V5F2 Alginate biosynthesis protein AlgZ FimS 1.41674416126 0.5 -0.916744161255 +UniRef50_Q9RTK1 tRNA specific 2 thiouridylase MnmA 0.00467735819639 0.5 0.495322641804 +UniRef50_UPI0003AA521B molybdenum ABC transporter permease 0.614546180008 0.5 -0.114546180008 +UniRef50_UPI0003B5A522 dihydrofolate reductase 0.255845499871 0.5 0.244154500129 +UniRef50_R9ZHA8 Histidine kinase 0.214605271419 0.5 0.285394728581 +UniRef50_A5G1D5 Uroporphyrinogen decarboxylase 0.170531681524 0.5 0.329468318476 +UniRef50_A0A037F2E9 8.15527556426 0.499999999996 -7.65527556426 +UniRef50_UPI0003B3B50B succinate dehydrogenase 0.274701890743 0.5 0.225298109257 +UniRef50_Q84WV0 Serine hydroxymethyltransferase 7 0.0362427515142 0.5 0.463757248486 +UniRef50_C0QJ54 Dihydroorotase 0.312868264907 0.5 0.187131735093 +UniRef50_Q634K9 0.642449368833 0.5 -0.142449368833 +UniRef50_UPI0003747F78 hypothetical protein 2.08068779115 0.5 -1.58068779115 +UniRef50_UPI0003B369AA ribonuclease III 0.155842156275 0.5 0.344157843725 +UniRef50_UPI0003AEA2A6 PREDICTED 1.79361218274 0.5 -1.29361218274 +UniRef50_P33647 mRNA interferase ChpB 1.64555628942 0.499999999999 -1.14555628941 +UniRef50_UPI0001BC2B50 GntR family transcriptional regulator 0.716760602258 0.5 -0.216760602258 +UniRef50_L1K4A8 0.569415256598 0.5 -0.069415256598 +UniRef50_B4RJX0 DNA polymerase III subunit delta 0.0643424087222 0.5 0.435657591278 +UniRef50_Q04444 Protoheme IX farnesyltransferase 0.038767114731 0.5 0.461232885269 +UniRef50_K2GS32 3.10094285186 0.5 -2.60094285186 +UniRef50_D5AUR2 0.742789610864 0.5 -0.242789610864 +UniRef50_W8RUE5 Cytochrome B561 1.65414267486 0.5 -1.15414267486 +UniRef50_Q9HXX3 Probable cysteine desulfurase 0.171986419249 0.5 0.328013580751 +UniRef50_U3SRQ3 Cell shape determining protein MreC 2.05822021921 0.5 -1.55822021921 +UniRef50_T2E6Y0 Lysine arginine ornithine binding periplasmic family protein 0.143428098371 0.5 0.356571901629 +UniRef50_U6IEY8 Collagen alpha chain 1.34379565634 0.5 -0.843795656335 +UniRef50_A5WGA7 Penicillin binding protein 6, Serine peptidase, MEROPS family S11 0.215144545924 0.5 0.284855454076 +UniRef50_UPI00046F5711 alpha glucosidase, partial 2.14669401973 0.499999999999 -1.64669401973 +UniRef50_A9GFW6 Histidine ammonia lyase 0.0253340941343 0.5 0.474665905866 +UniRef50_A6QDZ2 Phage tape measure protein 2.9046700478 0.5 -2.4046700478 +UniRef50_UPI0004672C36 hypothetical protein, partial 6.19874023724 0.500000000004 -5.69874023724 +UniRef50_UPI00046DEE74 hypothetical protein 0.00857466271804 0.5 0.491425337282 +UniRef50_K7YHX4 Receptor ligand binding region family protein 3.89760653847 0.5 -3.39760653847 +UniRef50_A3PQ86 Extracellular solute binding protein, family 1 2.40252469078 0.5 -1.90252469078 +UniRef50_UPI0003B79FBA O sialoglycoprotein endopeptidase 0.33859678845 0.5 0.16140321155 +UniRef50_A8LK13 1.38872548319 0.5 -0.888725483195 +UniRef50_A5N391 0.156797673445 0.5 0.343202326555 +UniRef50_E5QS55 0.0884100683581 0.5 0.411589931642 +UniRef50_B4UIZ5 Putative 3 methyladenine DNA glycosylase 1.13875652798 0.5 -0.638756527981 +UniRef50_Q73CS7 Tn554 related, transposase B 1.10400322455 0.5 -0.604003224547 +UniRef50_I1ZP64 0.256771106288 0.5 0.243228893712 +UniRef50_UPI0003B53A62 metallophosphoesterase 0.0299565453726 0.5 0.470043454627 +UniRef50_UPI00040A50B2 hypothetical protein 0.0939894247957 0.5 0.406010575204 +UniRef50_D9QKP9 Flagellar FlaF family protein 0.246213610232 0.5 0.253786389768 +UniRef50_E4R8G4 0.198151324016 0.5 0.301848675984 +UniRef50_UPI000288FEC4 cystathionine beta lyase 0.264973676712 0.5 0.235026323288 +UniRef50_Q9ZMV7 DNA topoisomerase 1 0.0413063820995 0.5 0.458693617901 +UniRef50_B7GIC0 N acetyldiaminopimelate deacetylase 0.0663421998651 0.5 0.433657800135 +UniRef50_A9BPD7 2.12874998224 0.499999999999 -1.62874998224 +UniRef50_A4WY56 4.9084141701 0.500000000005 -4.40841417011 +UniRef50_S5V0B7 0.243500518823 0.5 0.256499481177 +UniRef50_Q7MV04 Chorismate synthase 0.0011406028601 0.500000000001 0.498859397139 +UniRef50_Q887Z4 Probable malate 0.894617272024 0.5 -0.394617272024 +UniRef50_S9VRA1 1.44065900765 0.5 -0.940659007646 +UniRef50_UPI00047C4FEB RNA methyltransferase 0.297116890675 0.5 0.202883109325 +UniRef50_D3QEM5 1.09066374448 0.5 -0.590663744483 +UniRef50_A0A024KA74 0.0204778601013 0.5 0.479522139899 +UniRef50_A6LZ43 Binding protein dependent transport systems inner membrane component 0.110496845278 0.5 0.389503154722 +UniRef50_UPI0002376815 prolyl aminopeptidase, partial 0.193064425867 0.5 0.306935574133 +UniRef50_C0BAK5 Excinuclease ABC, C subunit 0.125773155502 0.5 0.374226844498 +UniRef50_Q21LN7 tRNA 2 O) methyltransferase 17.452427536 0.50000000002 -16.952427536 +UniRef50_A4WQR0 MscS Mechanosensitive ion channel 1.40650228668 0.500000000001 -0.90650228668 +UniRef50_UPI00035E0303 hypothetical protein 0.238782531914 0.5 0.261217468086 +UniRef50_U5MRV9 Serine threonine protein kinase 0.140666780426 0.500000000001 0.359333219573 +UniRef50_P13982 Carbamate kinase 1.79788346598 0.5 -1.29788346598 +UniRef50_UPI0003815DEC hypothetical protein 0.521500699691 0.5 -0.0215006996909 +UniRef50_Q2IPX3 0.0305656067876 0.5 0.469434393212 +UniRef50_S5D154 RNA 3 terminal phosphate cyclase 0.0175875068745 0.5 0.482412493126 +UniRef50_E6NJU4 Single stranded DNA specific exonuclease 0.014440045261 0.5 0.485559954739 +UniRef50_UPI00042B0FB5 Enoyl CoA hydratase isomerase D isoform 1 0.399865591132 0.5 0.100134408868 +UniRef50_X2HZR9 Glycosyltransferase 9 family protein 0.069682705041 0.5 0.430317294959 +UniRef50_P72794 Phosphoadenosine phosphosulfate reductase 0.322437359911 0.5 0.177562640089 +UniRef50_P21826 Malate synthase 2, glyoxysomal 0.570044420473 0.5 -0.0700444204732 +UniRef50_Q8CRL3 2.70117785474 0.5 -2.20117785474 +UniRef50_C5WHP5 4.8549564632 0.500000000001 -4.3549564632 +UniRef50_O87016 tRNA pseudouridine synthase A 0.268586999898 0.5 0.231413000102 +UniRef50_J3MER7 0.0286364818193 0.5 0.471363518181 +UniRef50_P0AGG3 Acyl CoA thioesterase 2 3.2567433606 0.500000000001 -2.7567433606 +UniRef50_UPI0003AF73D9 PREDICTED 0.753340522692 0.5 -0.253340522692 +UniRef50_R0P9K1 D alanyl D alanine carboxypeptidase family protein 0.0319369546913 0.5 0.468063045309 +UniRef50_B9DPV8 Heme A synthase 1.31204183181 0.5 -0.812041831811 +UniRef50_UPI0004705E30 hypothetical protein 0.186508867431 0.5 0.313491132569 +UniRef50_Q8FFW9 3.5536844213 0.500000000002 -3.0536844213 +UniRef50_P39282 Inner membrane transporter YjeM 0.397003369006 0.5 0.102996630994 +UniRef50_G2L2S5 Usher CupC3 1.10955091512 0.5 -0.609550915122 +UniRef50_U5MXP3 0.228355017053 0.5 0.271644982947 +UniRef50_W7VSI1 1.89874897676 0.5 -1.39874897676 +UniRef50_UPI00036404C4 hypothetical protein, partial 0.383049134399 0.5 0.116950865601 +UniRef50_B7GX48 Dihydroorotase 0.0157212532615 0.5 0.484278746739 +UniRef50_UPI00034DB867 hypothetical protein 0.639241032193 0.5 -0.139241032193 +UniRef50_Q3IV31 Two component transcriptional regulator, LuxR family 1.51678934948 0.5 -1.01678934948 +UniRef50_W5VEC3 0.33702282599 0.5 0.16297717401 +UniRef50_X5QPT7 Phosphatase 0.25162855773 0.5 0.24837144227 +UniRef50_B7N5L4 CinA like protein 0.650200223478 0.5 -0.150200223478 +UniRef50_F2N5L7 Membrane protein 0.387599838866 0.5 0.112400161134 +UniRef50_UPI000380F219 hypothetical protein 0.37411830576 0.5 0.12588169424 +UniRef50_B9E6T3 Phosphate specific transport system accessory protein PhoU 3.01475203019 0.500000000001 -2.51475203019 +UniRef50_UPI00029A1B88 putative beta carotene desaturase methylase 10.3056025828 0.499999999998 -9.80560258277 +UniRef50_UPI0003B30D3A ABC transporter permease 0.367894543793 0.5 0.132105456207 +UniRef50_K2XX98 Tryptophanase 0.143922373699 0.5 0.356077626301 +UniRef50_UPI000366A6AA hypothetical protein 0.11890687657 0.5 0.38109312343 +UniRef50_A1K1U7 Lipoyl synthase 0.245657163734 0.5 0.254342836266 +UniRef50_UPI0002627F17 acetolactate synthase 0.2041379142 0.5 0.2958620858 +UniRef50_R0ZN74 Putative identified by MetaGeneAnnotator 0.0433592923242 0.5 0.456640707676 +UniRef50_P22609 Type 4 fimbrial assembly protein PilC 1.12205299672 0.5 -0.62205299672 +UniRef50_Q1CUW0 Phosphate acyltransferase 0.0124524848824 0.5 0.487547515118 +UniRef50_Q9K907 Bis tetraphosphatase PrpE [asymmetrical] 0.0433634865478 0.5 0.456636513452 +UniRef50_UPI00047C7069 hypothetical protein 0.326957970541 0.5 0.173042029459 +UniRef50_UPI000463DC0E exodeoxyribonuclease III 2.30368623274 0.5 -1.80368623274 +UniRef50_D4GSF3 SAMP activating enzyme E1 0.202689497356 0.5 0.297310502644 +UniRef50_K0DUB4 Guanine deaminase 0.25592032533 0.5 0.24407967467 +UniRef50_A5P853 0.385814758875 0.5 0.114185241125 +UniRef50_A8LKM9 Transcriptional regulator 2.7297710398 0.5 -2.2297710398 +UniRef50_Q469F5 Lon protease 0.189368009423 0.5 0.310631990577 +UniRef50_J7M386 Mevalonate kinase 0.170969356811 0.5 0.329030643189 +UniRef50_Q9KPZ7 Copper exporting P type ATPase A 0.045070288763 0.5 0.454929711237 +UniRef50_P25907 0.661908045677 0.5 -0.161908045677 +UniRef50_A0A024EDR3 Malonate decarboxylase, alpha subunit 0.513568797155 0.5 -0.0135687971548 +UniRef50_P24171 Peptidyl dipeptidase dcp 1.56485860721 0.5 -1.06485860721 +UniRef50_I3X5Y9 Transposase IS4 family protein 1.2191101768 0.5 -0.719110176799 +UniRef50_N4R2H6 Type F conjugative transfer system protein TraW 1.23264634992 0.5 -0.732646349924 +UniRef50_Q1J163 Elongation factor P 0.00578031206808 0.499999999999 0.494219687933 +UniRef50_Q27I85 PSQ10.3c 0.403751977958 0.5 0.0962480220417 +UniRef50_UPI00037303EC hypothetical protein 0.618372146744 0.5 -0.118372146744 +UniRef50_H6N2J3 0.0554803280976 0.5 0.444519671903 +UniRef50_UPI000465CD92 membrane protein 0.312027385015 0.5 0.187972614985 +UniRef50_D6A1D4 0.026651422126 0.499999999999 0.473348577875 +UniRef50_D2Q8M6 Sugar binding lipoprotein of ABC transporter system 0.0972152061637 0.5 0.402784793836 +UniRef50_Q6E7F4 dTDP glucose 4,6 dehydratase 2.39744184631 0.500000000002 -1.89744184631 +UniRef50_UPI00037948E9 hypothetical protein 0.353231965942 0.5 0.146768034058 +UniRef50_UPI0003708B64 hypothetical protein 1.05270000236 0.5 -0.552700002362 +UniRef50_P0AAS1 Inner membrane protein YlaC 2.28333686353 0.5 -1.78333686353 +UniRef50_UPI0003032198 hypothetical protein 0.404409321863 0.5 0.095590678137 +UniRef50_UPI00046685FF hypothetical protein, partial 0.186526055432 0.5 0.313473944568 +UniRef50_UPI000377B254 hypothetical protein 0.1873074261 0.5 0.3126925739 +UniRef50_A0A011MUR4 Inner membrane protein YjcH 1.34875901671 0.5 -0.84875901671 +UniRef50_A5UN55 DNA directed RNA polymerase subunit D 1.60750899184 0.5 -1.10750899184 +UniRef50_F0KJH6 cAMP phosphodiesterase, heme regulated 0.0153826885139 0.5 0.484617311486 +UniRef50_P39795 Trehalose 6 phosphate hydrolase 0.529671263023 0.5 -0.0296712630229 +UniRef50_Q7NIG8 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.25868479732 0.5 0.24131520268 +UniRef50_UPI0002E68AF4 hypothetical protein 1.1986355903 0.5 -0.698635590301 +UniRef50_Q7UGJ1 Ribosome binding ATPase YchF 0.100285158597 0.5 0.399714841403 +UniRef50_V5SST6 Transcriptional regulator 0.503962321495 0.5 -0.00396232149534 +UniRef50_Q52671 Sarcosine oxidase subunit beta 4.19201915096 0.5 -3.69201915096 +UniRef50_V6JTT6 Membrane protein 0.884593363541 0.5 -0.384593363541 +UniRef50_UPI00016C3AF7 aspartyl glutamyl tRNA amidotransferase subunit B 0.933213956644 0.5 -0.433213956644 +UniRef50_T1A5Q2 Protein containing DUF28 0.638426085326 0.5 -0.138426085326 +UniRef50_P0C652 Insertion element IS1 protein InsA 0.120857129668 0.5 0.379142870332 +UniRef50_UPI000362D518 hypothetical protein 0.444837063715 0.5 0.055162936285 +UniRef50_UPI0003C1AD28 3.52156774203 0.500000000001 -3.02156774203 +UniRef50_Q7VJN5 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.136235370081 0.499999999999 0.363764629919 +UniRef50_UPI00047D0FD3 isopentenyl diphosphate delta isomerase 2.0748392759 0.5 -1.5748392759 +UniRef50_Y7FMH1 0.31123685352 0.5 0.18876314648 +UniRef50_A0A053ZV58 PE PGRS family protein PE_PGRS6 0.0557990489058 0.5 0.444200951094 +UniRef50_Q5M2U6 Ribosomal RNA small subunit methyltransferase H 0.88394517679 0.5 -0.38394517679 +UniRef50_T0DA68 0.0557990489489 0.499999999999 0.444200951052 +UniRef50_UPI00031299A3 putrescine spermidine ABC transporter substrate binding protein 0.107032242821 0.5 0.392967757179 +UniRef50_T1XR51 SAM dependent methyltransferase, putative 1.85663718885 0.499999999999 -1.35663718885 +UniRef50_UPI00040C571B hypothetical protein 0.0459042961714 0.5 0.454095703829 +UniRef50_Q51576 0.24119944287 0.5 0.25880055713 +UniRef50_J0GJ57 LPXTG motif cell wall anchor domain protein 3.75993473567 0.500000000004 -3.25993473568 +UniRef50_A0A024JCU6 Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family 0.0137362550204 0.500000000001 0.486263744979 +UniRef50_M4TWT1 0.269896260445 0.5 0.230103739555 +UniRef50_UPI00036D292E hypothetical protein 0.513969570758 0.5 -0.013969570758 +UniRef50_U5MPM6 Anti sigma factor N terminus 0.0877938654935 0.5 0.412206134506 +UniRef50_UPI000360F857 hypothetical protein 0.175647759539 0.499999999999 0.324352240462 +UniRef50_Q8FIR3 N methyl L tryptophan oxidase 1.1731837628 0.5 -0.673183762803 +UniRef50_M9SB66 0.785738245657 0.5 -0.285738245657 +UniRef50_L0Q2L3 0.0461804242096 0.5 0.45381957579 +UniRef50_P77610 L asparagine permease 3.51746330965 0.500000000001 -3.01746330965 +UniRef50_V5SZ20 Glycosyl transferase 0.612456769189 0.5 -0.112456769189 +UniRef50_Q9CEG1 5 methylthioadenosine S adenosylhomocysteine nucleosidase 0.464660376928 0.5 0.0353396230718 +UniRef50_UPI00041A37DE hypothetical protein 0.901098685628 0.5 -0.401098685628 +UniRef50_C7MGE6 2.44919067822 0.5 -1.94919067822 +UniRef50_P0CK95 Putative lipoprotein AcfD homolog 1.92104582431 0.499999999998 -1.42104582431 +UniRef50_Q6A8C8 ATP synthase epsilon chain 0.0158093837801 0.5 0.48419061622 +UniRef50_UPI0003B78686 polyamine ABC transporter permease, partial 0.0872061522818 0.5 0.412793847718 +UniRef50_T2E3D9 Cytochrome c oxidase accessory protein CcoG 0.223597036749 0.5 0.276402963251 +UniRef50_Q5LNK3 Holo [acyl carrier protein] synthase 4.67046469661 0.500000000001 -4.17046469661 +UniRef50_Q8K9K4 Flagellar basal body rod protein FlgG 2.90776176695 0.499999999997 -2.40776176694 +UniRef50_T0ND38 0.571565625832 0.5 -0.0715656258324 +UniRef50_Q46812 Protein SsnA 1.73181884769 0.5 -1.23181884769 +UniRef50_F3KHX6 ABC type transport system involved in Fe S cluster assembly, ATPase component 0.232753851837 0.5 0.267246148163 +UniRef50_D8IGI0 Phosphoribosylaminoimidazole carboxylase ATPase subunit 0.802229578771 0.5 -0.302229578771 +UniRef50_UPI0002192F4A ABC transporter ATP binding protein 2.26288935378 0.499999999998 -1.76288935378 +UniRef50_N6A660 0.980806952939 0.5 -0.480806952939 +UniRef50_UPI000300B5EF pyrroline 5 carboxylate dehydrogenase 1.65214394636 0.5 -1.15214394636 +UniRef50_K6TZB8 0.0544820867023 0.5 0.445517913298 +UniRef50_UPI0004765628 NADH quinone oxidoreductase subunit K 0.506704327296 0.5 -0.00670432729592 +UniRef50_UPI000289CB7D alkyl hydroperoxide reductase thiol specific antioxidant Mal allergen 0.0188416362123 0.5 0.481158363788 +UniRef50_Q9RFD3 Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 2.15349433383 0.5 -1.65349433383 +UniRef50_F0XYR5 0.0442452619948 0.500000000001 0.455754738005 +UniRef50_UPI0003775FD0 hypothetical protein 0.607587222108 0.5 -0.107587222108 +UniRef50_E6RPQ3 1.1896970884 0.5 -0.689697088401 +UniRef50_B6IPE0 Probable transaldolase 0.495053265822 0.5 0.00494673417826 +UniRef50_D9STR3 0.307875048768 0.5 0.192124951232 +UniRef50_A6V5X2 Cyclic diguanylate phosphodiesterase domain protein 1.6115406111 0.5 -1.1115406111 +UniRef50_UPI000465C5E8 peptide ABC transporter permease 0.427357102611 0.5 0.0726428973885 +UniRef50_UPI000380077B hypothetical protein 0.37190019452 0.5 0.12809980548 +UniRef50_UPI00029CD1FE molybdopterin biosynthesis protein, partial 0.150551853883 0.500000000001 0.349448146117 +UniRef50_C1CVF4 DNA gyrase subunit A 0.00156676581588 0.5 0.498433234184 +UniRef50_UPI00024851F4 hemolysin type calcium binding protein, partial 0.87102120531 0.5 -0.37102120531 +UniRef50_A0A017XC98 2.27507157872 0.5 -1.77507157872 +UniRef50_UPI0004704CFF cation 0.168120557092 0.5 0.331879442908 +UniRef50_M5FJL9 0.0174616125733 0.5 0.482538387427 +UniRef50_C7NLK0 0.154830892497 0.5 0.345169107503 +UniRef50_A0A025GLL8 Lipoprotein NlpD 0.987897114477 0.5 -0.487897114477 +UniRef50_UPI0002557A7E high affinity branched chain amino acid ABC transporterATP binding protein, partial 3.4796026126 0.499999999998 -2.9796026126 +UniRef50_Q9PC10 Bifunctional purine biosynthesis protein PurH 0.000375168931677 0.5 0.499624831068 +UniRef50_UPI00047B4540 flavin monooxygenase 0.284359541066 0.5 0.215640458934 +UniRef50_T1B7E9 FeS assembly protein SufB 0.0255036817199 0.5 0.47449631828 +UniRef50_G8PBW8 Phosphatidylethanolamine binding family protein 0.917543013613 0.5 -0.417543013613 +UniRef50_UPI0003A506AE MULTISPECIES 0.153929444057 0.5 0.346070555943 +UniRef50_E7KW76 Muc1p 0.0922440154357 0.5 0.407755984564 +UniRef50_UPI0003A8EC6C hypothetical protein 2.89237142567 0.5 -2.39237142567 +UniRef50_F0RPV8 Diguanylate cyclase 0.00266167718031 0.5 0.49733832282 +UniRef50_UPI00047DB175 beta lactamase 0.291530220041 0.5 0.208469779959 +UniRef50_Q42581 Ribose phosphate pyrophosphokinase 1, chloroplastic 0.786146345447 0.5 -0.286146345447 +UniRef50_UPI00037D526A hypothetical protein, partial 0.588833709098 0.5 -0.0888337090982 +UniRef50_F8WK85 PAP2 family protein 1.14133161555 0.5 -0.641331615551 +UniRef50_UPI00036C9515 hypothetical protein 0.273911807888 0.5 0.226088192112 +UniRef50_P45792 Type IV pilus assembly protein TapB 0.0288530937619 0.500000000001 0.471146906237 +UniRef50_Q3DDY2 7.37318491312 0.5 -6.87318491312 +UniRef50_Q2SSQ8 Glycerol kinase 0.0650390582653 0.5 0.434960941735 +UniRef50_Q9M8L4 Glycerol kinase 0.11984533881 0.5 0.38015466119 +UniRef50_V4XRX6 0.147504717555 0.5 0.352495282445 +UniRef50_UPI000364B546 hypothetical protein 3.58403513203 0.499999999999 -3.08403513203 +UniRef50_UPI00036C1952 hypothetical protein, partial 3.90148738026 0.500000000007 -3.40148738027 +UniRef50_Q9UZ08 2 isopropylmalate synthase 0.843398523938 0.5 -0.343398523938 +UniRef50_Q28VP7 Ubiquinone biosynthesis O methyltransferase 0.568183494468 0.5 -0.0681834944677 +UniRef50_UPI0003771895 hypothetical protein, partial 0.295037314878 0.5 0.204962685122 +UniRef50_A7X0A3 3.16345275663 0.5 -2.66345275663 +UniRef50_A7X0A2 2.35656830978 0.5 -1.85656830978 +UniRef50_M9VDE6 0.0174972602295 0.5 0.482502739771 +UniRef50_B1AIX1 Uridine kinase 0.0969236052226 0.5 0.403076394777 +UniRef50_UPI00047145DA cobyrinic acid a c diamide adenosyltransferase 0.327992516904 0.5 0.172007483096 +UniRef50_Q0AG56 S adenosylmethionine 0.090997435976 0.5 0.409002564024 +UniRef50_A1B903 Amino acid amide ABC transporter ATP binding protein 1, HAAT family 7.75702992599 0.5 -7.25702992599 +UniRef50_Q46807 Carbamate kinase like protein YqeA 2.06454641712 0.500000000001 -1.56454641712 +UniRef50_Q5HGR7 0.120720263449 0.499999999999 0.379279736552 +UniRef50_P0C0L2 Peroxiredoxin OsmC 16.5727823728 0.499999999998 -16.0727823728 +UniRef50_A1A968 Glutathione binding protein GsiB 1.21813610356 0.5 -0.718136103558 +UniRef50_A1SHI2 Glycosyl transferase, family 4 0.0294786613342 0.5 0.470521338666 +UniRef50_H9UVF3 PilL 0.49852363303 0.5 0.00147636696991 +UniRef50_UPI00037FAEB8 ABC transporter 0.0965499536014 0.5 0.403450046399 +UniRef50_E6SFQ0 Cell envelope related transcriptional attenuator 0.272917982748 0.5 0.227082017252 +UniRef50_D3F7I1 Cupin 2 conserved barrel domain protein 9.68408732118 0.499999999993 -9.18408732117 +UniRef50_Q9ZLW5 Glutamine synthetase 0.00874220022807 0.5 0.491257799772 +UniRef50_Q9FI53 Fumarate hydratase 2, chloroplastic 0.111266931473 0.5 0.388733068527 +UniRef50_Q97DP6 Phospho alpha glucosidase PagL 0.0933483098763 0.5 0.406651690123 +UniRef50_A7GYI2 Lipoprotein, nlpa family 0.0300338749436 0.5 0.469966125057 +UniRef50_UPI00037CD319 hypothetical protein 0.753361250121 0.5 -0.253361250121 +UniRef50_UPI000376EC18 hypothetical protein 0.306739921639 0.5 0.193260078361 +UniRef50_Q67J65 UDP N acetylglucosamine 1 carboxyvinyltransferase 3 0.117262460448 0.5 0.382737539552 +UniRef50_A0A050FM21 Integral membrane protein 0.710978352607 0.5 -0.210978352607 +UniRef50_Q6GDB6 Lactonase drp35 1.8852628447 0.500000000002 -1.3852628447 +UniRef50_Q0RDV0 Ribosomal protein S12 methylthiotransferase RimO 0.0504152381308 0.5 0.449584761869 +UniRef50_B9DZW5 0.249708054643 0.5 0.250291945357 +UniRef50_UPI0002196F63 membrane protein 0.200466537206 0.5 0.299533462794 +UniRef50_Q9Z3S3 Probable oxidoreductase OrdL 2.63438345095 0.500000000001 -2.13438345095 +UniRef50_D3DZ74 UPF0288 protein mru_1774 1.36533631944 0.5 -0.865336319438 +UniRef50_D5APE1 Polyhydroxyalkanoate synthesis repressor PhaR 5.14872821749 0.500000000003 -4.6487282175 +UniRef50_A6M0B9 D galactose binding periplasmic protein 0.0261082685158 0.5 0.473891731484 +UniRef50_Q7MAI3 CTP synthase 0.155294088305 0.5 0.344705911695 +UniRef50_G8PD79 Fibronectin binding A family protein 0.00106126720941 0.5 0.49893873279 +UniRef50_U1DNW1 2.93435397023 0.499999999999 -2.43435397023 +UniRef50_B9DNV1 3 dehydroquinate synthase 1.25064457262 0.500000000001 -0.750644572619 +UniRef50_A5ULI3 Antimicrobial peptide ABC transporter, permease component 1.64733790632 0.499999999999 -1.14733790632 +UniRef50_T0U0F8 Sakacin A production response regulator 0.421474172906 0.5 0.0785258270935 +UniRef50_Z5YCH8 Cupin 1.34052203836 0.5 -0.840522038363 +UniRef50_Q98IL7 Mlr2347 protein 0.446175600307 0.5 0.053824399693 +UniRef50_Q609F9 Glutamate racemase 2.10250955982 0.5 -1.60250955982 +UniRef50_Q8RHI6 DNA directed RNA polymerase subunit beta 0.44322535938 0.5 0.05677464062 +UniRef50_UPI000378688C hypothetical protein 1.59786236889 0.5 -1.09786236889 +UniRef50_N9R0J7 0.427782450387 0.5 0.072217549613 +UniRef50_UPI0000510061 putative ABC transport protein, ATP binding component 0.00308586762388 0.5 0.496914132377 +UniRef50_I8R6Q9 Excinuclease ABC, subunit A 0.0648662696958 0.5 0.435133730304 +UniRef50_P76361 Inner membrane protein YeeR 0.966372308425 0.5 -0.466372308425 +UniRef50_UPI0003A07059 virulence factor MviN 0.646685967419 0.5 -0.146685967419 +UniRef50_UPI0001C395E6 cystathionine gamma lyase 1.43290365658 0.5 -0.93290365658 +UniRef50_C6VIP9 0.406294432864 0.5 0.0937055671362 +UniRef50_B6GEL4 DnaJ domain protein 0.489566074827 0.5 0.0104339251729 +UniRef50_W4TF65 Glycosyltransferase 0.0192117897191 0.5 0.480788210281 +UniRef50_A5CRZ1 Chorismate synthase 0.0337248647605 0.5 0.466275135239 +UniRef50_UPI0003810CDE hypothetical protein, partial 0.0411292720405 0.499999999999 0.45887072796 +UniRef50_Q2YUL0 Putative thiaminase 2 1.90525434113 0.500000000002 -1.40525434113 +UniRef50_F6A0T7 Response regulator receiver domain protein 5.43426718757 0.499999999997 -4.93426718757 +UniRef50_A5UJE8 DNA repair exonuclease , Rad32 4.91039171807 0.499999999993 -4.41039171807 +UniRef50_B2UYL5 0.0454072425979 0.5 0.454592757402 +UniRef50_UPI00046FD3F6 ATPase 0.00277232798063 0.5 0.497227672019 +UniRef50_Q6F7X4 0.0194220050448 0.5 0.480577994955 +UniRef50_W8S0E0 2.57347506683 0.5 -2.07347506683 +UniRef50_UPI0003B42AB6 damage inducible protein 0.975062793666 0.5 -0.475062793666 +UniRef50_G3ZGB0 0.369109505181 0.5 0.130890494819 +UniRef50_P21437 Fructose 1,6 bisphosphatase 2 class 2 6.44388897036 0.499999999997 -5.94388897036 +UniRef50_UPI000373168E hypothetical protein 0.449224736719 0.5 0.0507752632806 +UniRef50_S3ZPA8 Putative Linear gramicidin synthase subunit C 0.0880011898393 0.5 0.411998810161 +UniRef50_C9D9L2 Universal stress protein 0.00729884283138 0.5 0.492701157168 +UniRef50_P45762 Putative type II secretion system protein K 1.63726739696 0.5 -1.13726739696 +UniRef50_E6S5F6 Flagellar biosynthesis sigma factor 0.025396436272 0.5 0.474603563728 +UniRef50_B1Y7P3 Glycine tRNA ligase alpha subunit 0.0791677937469 0.5 0.420832206253 +UniRef50_UPI0002899294 branched chain amino acid aminotransferase, partial 0.466773825876 0.5 0.0332261741241 +UniRef50_P77172 Cyclic di GMP phosphodiesterase YfgF 2.08389221954 0.5 -1.58389221953 +UniRef50_H4GEP0 Replication initiator protein A, N terminal domain protein 2.48443314254 0.5 -1.98443314254 +UniRef50_K0IHJ1 Ammonium transporter NrgA 0.107312344141 0.5 0.392687655859 +UniRef50_UPI00036013C9 hypothetical protein, partial 0.548707977916 0.5 -0.0487079779158 +UniRef50_UPI00046F81B4 hypothetical protein 0.173880902913 0.5 0.326119097087 +UniRef50_Q6FAM5 Bifunctional uridylyltransferase uridylyl removing enzyme 0.0321007776607 0.5 0.467899222339 +UniRef50_Q0BWA4 Uroporphyrinogen decarboxylase 0.257762598448 0.5 0.242237401552 +UniRef50_Q47LW5 0.00899352627183 0.5 0.491006473728 +UniRef50_P75685 Inner membrane protein RclC 0.632917883555 0.5 -0.132917883555 +UniRef50_D2R1Q0 0.036279692598 0.5 0.463720307402 +UniRef50_O34607 Probable L serine dehydratase, alpha chain 0.0592467671204 0.5 0.440753232879 +UniRef50_Q2YUI8 Serine protein kinase RsbW 2.54311896509 0.499999999996 -2.04311896508 +UniRef50_Q57549 Probable thiol peroxidase 0.284036107731 0.5 0.215963892269 +UniRef50_A3PLU4 Holliday junction ATP dependent DNA helicase RuvA 0.988783654929 0.5 -0.488783654929 +UniRef50_O67703 Acetolactate synthase small subunit 0.060526195665 0.5 0.439473804335 +UniRef50_M5HHC7 10.2908604463 0.5 -9.79086044631 +UniRef50_K2DEX2 1.7458859437 0.500000000001 -1.2458859437 +UniRef50_UPI00037E7ACC hypothetical protein 2.73116005291 0.499999999997 -2.23116005291 +UniRef50_P08142 Acetolactate synthase isozyme 1 large subunit 1.08554602924 0.5 -0.585546029242 +UniRef50_P37903 Universal stress protein F 0.0932384982501 0.5 0.40676150175 +UniRef50_F3U4X7 ABC sugar transporter, inner membrane subunit 2.50797997228 0.500000000003 -2.00797997228 +UniRef50_V5SGS7 Multidrug ABC transporter permease 3.17504298126 0.5 -2.67504298126 +UniRef50_M4S6Z7 0.370673571434 0.5 0.129326428566 +UniRef50_Q8XJ36 Two component response regulator 0.170981160278 0.5 0.329018839722 +UniRef50_G7ZP62 Chromosome replication initiation membrane attachment protein 2.38624260475 0.499999999998 -1.88624260475 +UniRef50_K4KGL9 Beta ketoacyl synthase 2.46105477821 0.5 -1.96105477821 +UniRef50_P07770 Benzoate 1,2 dioxygenase subunit beta 0.156507156163 0.5 0.343492843837 +UniRef50_A5WFZ6 Anthranilate phosphoribosyltransferase 0.00693485716256 0.5 0.493065142837 +UniRef50_E0SBA7 0.33867638486 0.5 0.16132361514 +UniRef50_M9RBA6 23.3448876355 0.500000000009 -22.8448876355 +UniRef50_UPI0004259771 peptidylprolyl isomerase 0.0972055506955 0.5 0.402794449304 +UniRef50_Q47679 Hydrolase YafV 1.55738535693 0.499999999998 -1.05738535692 +UniRef50_UPI0004661C80 hypothetical protein, partial 0.0880667454918 0.500000000001 0.411933254508 +UniRef50_C5AI60 Diguanylate cyclase 0.00937631913262 0.500000000001 0.490623680867 +UniRef50_UPI0002197895 phosphoribosylaminoimidazole carboxylase 0.261497784523 0.5 0.238502215477 +UniRef50_B7GHM5 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase 4.42886248631 0.500000000006 -3.92886248632 +UniRef50_D8GMQ7 Predicted acyl CoA thioesterase 1 0.0452554761603 0.5 0.45474452384 +UniRef50_K7RVQ7 Transporter, major facilitator family protein 0.0153516094087 0.5 0.484648390591 +UniRef50_UPI000367D1F7 hypothetical protein 0.979321037335 0.5 -0.479321037335 +UniRef50_A3PJB9 ABC transporter related 5.70494443344 0.499999999997 -5.20494443344 +UniRef50_H8GYE3 0.00101625176022 0.5 0.49898374824 +UniRef50_Q8DJL3 Tlr1209 protein 1.40167574684 0.5 -0.901675746844 +UniRef50_D2ZPN4 Putative toxin antitoxin system toxin component, PIN family 15.3995564804 0.50000000001 -14.8995564804 +UniRef50_A3PHS3 Transport associated 0.140276226622 0.5 0.359723773379 +UniRef50_P31961 Phosphogluconate dehydratase 0.142803551111 0.5 0.357196448889 +UniRef50_H8GYE9 0.0557328474035 0.5 0.444267152596 +UniRef50_M5DRD3 1.14233805921 0.5 -0.642338059215 +UniRef50_A0A058ZFX3 0.235178425869 0.5 0.264821574131 +UniRef50_Q3J2Y8 Acyltransferase domain 6.29584122661 0.500000000003 -5.79584122661 +UniRef50_Q1GGL7 1.8764278282 0.499999999999 -1.3764278282 +UniRef50_Q1GGL2 0.903233700765 0.5 -0.403233700765 +UniRef50_K0N9J9 Cellobiose permease IIC component 0.848952195117 0.5 -0.348952195117 +UniRef50_H2FLG9 Protein GRSP 2, isoform f 1.81060261928 0.5 -1.31060261928 +UniRef50_G2WZD3 0.0307022463308 0.5 0.469297753669 +UniRef50_A9M9V6 NAD specific glutamate dehydrogenase 0.854802071034 0.5 -0.354802071034 +UniRef50_K0LFR7 1.02070137794 0.5 -0.520701377944 +UniRef50_Q48NP4 OsmC Ohr family protein 1.29360470757 0.5 -0.793604707568 +UniRef50_Q8CS08 3.65840818895 0.499999999999 -3.15840818894 +UniRef50_Q2NHD8 Predicted minichromosome maintenance protein 1.30900681734 0.500000000002 -0.809006817346 +UniRef50_L8MLB7 Putative membrane protein, clustering with ActP 0.848176831513 0.5 -0.348176831513 +UniRef50_Q6FF72 0.160657024358 0.5 0.339342975642 +UniRef50_Q72CF3 50S ribosomal protein L17 0.474672575764 0.5 0.025327424236 +UniRef50_Q6FF71 0.0612880421395 0.5 0.438711957861 +UniRef50_T2F8G8 Type IV prepilin peptidase 0.518243551276 0.5 -0.0182435512758 +UniRef50_UPI00046B85CA PREDICTED 0.0142332894328 0.5 0.485766710568 +UniRef50_UPI0004788AD3 hypothetical protein 0.0390683765426 0.5 0.460931623457 +UniRef50_W8YT37 0.0285515757093 0.500000000001 0.47144842429 +UniRef50_E3NV91 Aldehyde dehydrogenase 0.00878182970299 0.5 0.491218170297 +UniRef50_UPI00035FA1C3 hypothetical protein 0.337728993637 0.5 0.162271006363 +UniRef50_I0IED2 0.494127467231 0.5 0.00587253276941 +UniRef50_P54689 Branched chain amino acid aminotransferase 0.0583476941346 0.5 0.441652305866 +UniRef50_K5YUY4 Polyhydroxyalkanoate synthesis repressor PhaR 1.64777819122 0.5 -1.14777819122 +UniRef50_UPI000376564B hypothetical protein 0.26226787353 0.5 0.23773212647 +UniRef50_UPI00034CAA3F peptidase M23 0.205678292135 0.5 0.294321707865 +UniRef50_Q3JSC1 0.115203228863 0.5 0.384796771137 +UniRef50_B4UHS9 Succinate dehydrogenase fumarate reductase iron sulfur subunit 0.00878636107996 0.5 0.49121363892 +UniRef50_Q1GZH1 UPF0301 protein Mfla_2099 0.321667429102 0.5 0.178332570898 +UniRef50_A5UK83 1.75129241993 0.5 -1.25129241993 +UniRef50_D3R5Q5 O acetyl L homoserine sulfhydrolase 0.392039518649 0.5 0.107960481351 +UniRef50_Q89WL0 Glutathione synthetase 0.0148352715239 0.499999999999 0.485164728477 +UniRef50_I7EIU7 1.55649412601 0.5 -1.05649412601 +UniRef50_G8VQH1 ATP dependent helicase 0.0237132391983 0.5 0.476286760802 +UniRef50_D4KG00 Transcriptional regulator, LacI family 0.194053136328 0.5 0.305946863672 +UniRef50_UPI0003B47824 nitrogen regulatory protein 0.295701615588 0.5 0.204298384412 +UniRef50_H6LJ16 UV damage endonuclease UvdE 0.419503220639 0.5 0.0804967793605 +UniRef50_B7KNT0 ATP dependent Clp protease proteolytic subunit 0.0932362492047 0.5 0.406763750795 +UniRef50_UPI000225B916 hypothetical protein 0.364771312641 0.5 0.135228687359 +UniRef50_M4X3P8 L threonine synthase 6.65902548528 0.5 -6.15902548528 +UniRef50_A9H7P2 Putative secretion protein, HlyD family 0.00742518259066 0.5 0.49257481741 +UniRef50_UPI0002E0E4D6 hypothetical protein 0.148529596916 0.5 0.351470403084 +UniRef50_UPI000289152D tonb dependent receptor plug 0.405684963194 0.5 0.0943150368063 +UniRef50_Q28PK5 Guanylate kinase 0.262172219875 0.5 0.237827780125 +UniRef50_UPI00037BDD3D hypothetical protein, partial 0.124941255038 0.5 0.375058744962 +UniRef50_Q2RFN9 DNA directed RNA polymerase subunit beta 1.03503349732 0.5 -0.535033497322 +UniRef50_UPI00029A706B MerR family transcriptional regulator 0.934310792075 0.5 -0.434310792075 +UniRef50_C5BYT3 Cysteine tRNA ligase 0.00119620174771 0.5 0.498803798253 +UniRef50_UPI000380AA73 hypothetical protein 3.36964150276 0.5 -2.86964150276 +UniRef50_J0Y468 6.02056911546 0.499999999999 -5.52056911546 +UniRef50_UPI00037F71A6 hypothetical protein 0.377281762904 0.5 0.122718237096 +UniRef50_D3Q457 Regulatory protein, FmdB family 0.274937021585 0.5 0.225062978415 +UniRef50_R4LEH4 Yd repeat containing protein 0.31748847109 0.5 0.18251152891 +UniRef50_V9WQL8 Plasmid partitioning protein ParA 1.7580010731 0.499999999999 -1.2580010731 +UniRef50_Q7U5L7 Probable malate 0.30768500563 0.5 0.19231499437 +UniRef50_P10121 Signal recognition particle receptor FtsY 2.02518560557 0.500000000001 -1.52518560557 +UniRef50_U6F3A2 Elongation factor G 0.0947466070558 0.5 0.405253392944 +UniRef50_Q9RZA4 Bacteriophytochrome 0.0110552084086 0.5 0.488944791591 +UniRef50_UPI00042B6A44 Aldolase type TIM barrel family protein 0.0572943253312 0.499999999999 0.442705674669 +UniRef50_UPI000382498F hypothetical protein, partial 0.0955422929754 0.5 0.404457707025 +UniRef50_E0Y2I8 2.10113180471 0.5 -1.60113180471 +UniRef50_B9KN81 Alpha amylase, catalytic region 2.13440213872 0.5 -1.63440213872 +UniRef50_V9B5C8 Transketolase, thiamine pyrophosphate binding domain protein 0.745878515097 0.5 -0.245878515097 +UniRef50_D5CDT8 Ferritin Dps family protein 0.288383692407 0.5 0.211616307593 +UniRef50_P72146 WbpN 0.973712968748 0.5 -0.473712968748 +UniRef50_P0ACR6 1.36142128439 0.5 -0.861421284393 +UniRef50_P0ACR7 2.47333795912 0.5 -1.97333795912 +UniRef50_P0ACR3 7.71745316014 0.500000000003 -7.21745316014 +UniRef50_D2JL91 Beta lactamase regulatory sensor transducer BlaR1 1.30944513413 0.5 -0.809445134132 +UniRef50_A7MI52 Glutamate 5 kinase 0.261440751704 0.5 0.238559248296 +UniRef50_D4UF66 1.1347889913 0.5 -0.634788991304 +UniRef50_UPI00034FBAC3 PREDICTED 0.203343612476 0.5 0.296656387524 +UniRef50_C9A5T3 0.63328771328 0.5 -0.13328771328 +UniRef50_F5M1J1 Prophage CP4 57 regulatory 2.50105275739 0.499999999998 -2.00105275739 +UniRef50_UPI0003D70A5F PREDICTED 0.1275668741 0.5 0.3724331259 +UniRef50_C5XLB4 1.24661052498 0.500000000001 -0.746610524985 +UniRef50_UPI000255A6FD metal dependent phosphohydrolase 0.0605176663373 0.5 0.439482333662 +UniRef50_K2AEI9 0.457316270266 0.5 0.0426837297342 +UniRef50_U5MWI4 Flagellar basal body rod protein FlgG 0.102423198485 0.5 0.397576801515 +UniRef50_UPI00034B293D hypothetical protein 0.0379095024826 0.5 0.462090497518 +UniRef50_V8A9V2 2.65496521188 0.5 -2.15496521188 +UniRef50_V7YY07 Transketolase 0.387826688072 0.5 0.112173311928 +UniRef50_Q9RUZ9 0.00296761666618 0.5 0.497032383334 +UniRef50_UPI0003602513 hypothetical protein 2.71935317463 0.500000000003 -2.21935317463 +UniRef50_C2ZY26 0.220755942946 0.5 0.279244057054 +UniRef50_Q9RUZ6 0.00180387811832 0.5 0.498196121882 +UniRef50_F2ABV1 0.0676779138003 0.5 0.4323220862 +UniRef50_W0I9Q2 Prevent host death protein 0.396205068399 0.5 0.103794931601 +UniRef50_A0KJE0 Leucyl phenylalanyl tRNA protein transferase 0.184240504704 0.5 0.315759495296 +UniRef50_Z2D8Y2 Amino acid ABC transporter substrate binding protein 2.78187480566 0.499999999999 -2.28187480566 +UniRef50_P63235 Probable glutamate gamma aminobutyrate antiporter 0.896529062995 0.5 -0.396529062995 +UniRef50_UPI00034BB6BF hypothetical protein 6.11199903593 0.500000000003 -5.61199903593 +UniRef50_X3WS87 Lipoprotein 1.39037647138 0.5 -0.890376471379 +UniRef50_UPI00022CAAC7 PREDICTED 0.0726791364551 0.5 0.427320863545 +UniRef50_Q9JYM0 Thiol 0.017715051503 0.5 0.482284948497 +UniRef50_A6W977 0.136354927331 0.5 0.363645072669 +UniRef50_UPI000478A779 ABC transporter permease 0.0847426679561 0.5 0.415257332044 +UniRef50_T2RUR1 0.0154044877559 0.5 0.484595512244 +UniRef50_Q5HR30 Glycosyl transferase, group 2 family protein 2.82544959177 0.500000000001 -2.32544959177 +UniRef50_B0VRV3 Formamidopyrimidine DNA glycosylase 0.0724742908887 0.5 0.427525709111 +UniRef50_UPI0003755B23 hypothetical protein 0.819236059074 0.5 -0.319236059074 +UniRef50_Q1J255 Hemin import ATP binding protein HmuV 0.00211344810602 0.5 0.497886551894 +UniRef50_P20586 p hydroxybenzoate hydroxylase 0.564136194336 0.5 -0.0641361943359 +UniRef50_UPI00016A5EA5 CAIB BAIF family protein, partial 0.0418576063162 0.500000000001 0.458142393683 +UniRef50_G2M909 0.0884505524543 0.5 0.411549447546 +UniRef50_G7U5P8 Uracil xanthine permease 0.0134195037802 0.5 0.48658049622 +UniRef50_UPI00037C0AF6 hypothetical protein, partial 0.727782233469 0.5 -0.227782233469 +UniRef50_C7ZXH6 Methyltransferase type 12 5.68014091895 0.499999999999 -5.18014091895 +UniRef50_UPI0004700E9C hypothetical protein 0.0658587616539 0.5 0.434141238346 +UniRef50_D9XX77 0.160876318235 0.5 0.339123681765 +UniRef50_A8LJU4 5.60636817689 0.500000000003 -5.10636817689 +UniRef50_V1DP08 Bacteriophage replication protein 2.07648457678 0.5 -1.57648457678 +UniRef50_Q3YYG5 Regulatory protein RecX 7.24130066871 0.500000000001 -6.74130066871 +UniRef50_A3PPL7 0.0960622304842 0.5 0.403937769516 +UniRef50_UPI0002627F99 50S ribosomal protein L6 0.0942583287139 0.5 0.405741671286 +UniRef50_Q9K0K9 Iron regulated protein FrpA 0.0133360240734 0.5 0.486663975927 +UniRef50_Q5HQI7 0.0599275389835 0.5 0.440072461017 +UniRef50_A2RN27 Methionyl tRNA formyltransferase 0.954349681333 0.5 -0.454349681333 +UniRef50_U5MVR3 Methyl accepting chemotaxis protein McpA 0.218423556097 0.5 0.281576443903 +UniRef50_Q8GM57 50S ribosomal protein L2 1.18300635566 0.5 -0.683006355661 +UniRef50_F2LAJ8 0.0471655769851 0.5 0.452834423015 +UniRef50_A4W2L5 Predicted membrane protein 1.28343830154 0.5 -0.783438301541 +UniRef50_UPI00037CA3B1 ferredoxin 0.563262263218 0.5 -0.0632622632175 +UniRef50_P39899 Neutral protease B 0.00787875390476 0.5 0.492121246095 +UniRef50_E8SKB9 Integral membrane protein 2.13742143938 0.5 -1.63742143938 +UniRef50_UPI0003B55E69 membrane protein 1.11167592266 0.5 -0.611675922665 +UniRef50_UPI0003B397F3 tyrosine recombinase XerC 0.253108849251 0.5 0.246891150749 +UniRef50_A5CF65 Peptide deformylase 0.18798761868 0.5 0.31201238132 +UniRef50_A0A011R0F0 Aerobic C4 dicarboxylate transport protein 0.975088029909 0.5 -0.475088029909 +UniRef50_G2J2T3 Ribosomal RNA small subunit methyltransferase E 0.112069713218 0.5 0.387930286782 +UniRef50_UPI0003C18A10 0.10913066145 0.5 0.39086933855 +UniRef50_Q9I3N5 Heme exporter protein C 0.264419274142 0.5 0.235580725858 +UniRef50_P42359 Putative zinc metalloproteinase in scaA 5region 0.416478089638 0.5 0.0835219103619 +UniRef50_P17054 Phytoene desaturase 2.49356820385 0.5 -1.99356820385 +UniRef50_UPI00037BF3C3 hypothetical protein 0.0148317642627 0.5 0.485168235737 +UniRef50_UPI00036A00B7 hypothetical protein 0.596606518542 0.5 -0.0966065185425 +UniRef50_C5VZF1 DNA protection during starvation protein 0.915253137252 0.5 -0.415253137252 +UniRef50_G7M6V3 Transcriptional regulator, RpiR family 0.537347812114 0.5 -0.037347812114 +UniRef50_Q98LB3 Dihydroxy acid dehydratase 2 0.609574163425 0.5 -0.109574163425 +UniRef50_E8Y3F7 9.33480568826 0.499999999998 -8.83480568826 +UniRef50_UPI0003B4F713 flavine monooxygenase 2.44790444589 0.499999999999 -1.94790444589 +UniRef50_P05050 Alpha ketoglutarate dependent dioxygenase AlkB 2.93421763861 0.500000000002 -2.43421763861 +UniRef50_A7X0C7 Lipoyl synthase 1.97415670275 0.500000000002 -1.47415670275 +UniRef50_UPI00020035C1 DEAD DEAH box helicase domain protein, partial 0.0871101880407 0.5 0.412889811959 +UniRef50_G8V2S6 Phage tail tape measure protein, TP901 family, core region 4.18234738387 0.500000000001 -3.68234738387 +UniRef50_UPI0002D9142D hypothetical protein 1.95288223362 0.5 -1.45288223362 +UniRef50_T1XU00 5.90571054267 0.499999999992 -5.40571054267 +UniRef50_F0P598 Aspartate aminotransferase, putative 1.58276317403 0.500000000002 -1.08276317403 +UniRef50_P04818 Thymidylate synthase 0.0841231464661 0.5 0.415876853534 +UniRef50_UPI00039D1855 cytochrome C 2.06399295792 0.5 -1.56399295792 +UniRef50_P56111 Phosphogluconate dehydratase 0.0185693962549 0.5 0.481430603745 +UniRef50_D9XI44 0.113450551511 0.5 0.386549448489 +UniRef50_R1DBS1 0.100604020558 0.5 0.399395979442 +UniRef50_UPI000464EC64 glucan biosynthesis protein G 0.340633735911 0.5 0.159366264089 +UniRef50_A0RIF4 Branched chain alpha keto acid dehydrogenase E2 component 0.997621402198 0.5 -0.497621402198 +UniRef50_Q8E671 Protein SprT like 0.557942778595 0.5 -0.0579427785945 +UniRef50_B9LNN2 AzlC family protein 1.04980658515 0.5 -0.549806585149 +UniRef50_B2I7A0 Malonyl CoA acyl carrier protein transacylase 0.0351254189487 0.5 0.464874581051 +UniRef50_Q7NN36 Hemin import ATP binding protein HmuV 0.00239430837218 0.5 0.497605691628 +UniRef50_X8CB66 0.0312557480335 0.5 0.468744251966 +UniRef50_Q89ER2 Alkanesulfonate monooxygenase 1.76360731653 0.5 -1.26360731653 +UniRef50_Q74IP8 Ribonuclease 3 0.328257173779 0.5 0.171742826221 +UniRef50_J9P129 3.13399457664 0.499999999998 -2.63399457663 +UniRef50_A8LKW8 Porin 0.166716873694 0.5 0.333283126306 +UniRef50_B4TWJ1 Transcriptional regulator NanR 2.17085044714 0.499999999998 -1.67085044714 +UniRef50_A0A024G3T5 Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192 0.469845661699 0.5 0.0301543383015 +UniRef50_R9YPK7 Urea transporter 3.55458026034 0.500000000002 -3.05458026034 +UniRef50_UPI0004732AD3 hypothetical protein, partial 1.35706795589 0.5 -0.857067955889 +UniRef50_UPI00036124D1 hypothetical protein, partial 0.0922390811632 0.499999999999 0.407760918837 +UniRef50_UPI0004634B11 hypothetical protein 1.16433771808 0.5 -0.664337718081 +UniRef50_A3PRE1 2.12086333465 0.5 -1.62086333465 +UniRef50_A5UP00 Methenyltetrahydromethanopterin cyclohydrolase 3.6348745184 0.499999999999 -3.1348745184 +UniRef50_R4MF75 1.27079018059 0.5 -0.770790180586 +UniRef50_T2EEM8 Maltose operon periplasmic family protein 2.7606010086 0.499999999999 -2.26060100859 +UniRef50_A1WWV9 tRNA specific 2 thiouridylase MnmA 0.260737879556 0.5 0.239262120444 +UniRef50_D5BQ57 1.80169141181 0.5 -1.30169141181 +UniRef50_UPI00047C3270 multidrug MFS transporter 0.393984936006 0.5 0.106015063994 +UniRef50_A1B476 Beta lactamase domain protein 2.31950538044 0.5 -1.81950538044 +UniRef50_Q47138 0.342372771741 0.5 0.157627228259 +UniRef50_UPI00046CD5BB hypothetical protein 0.0123895210749 0.5 0.487610478925 +UniRef50_UPI0002FDE3EE hypothetical protein 0.00999807744159 0.5 0.490001922559 +UniRef50_R0UE42 Filamentous hemagglutinin family N terminal domain protein 0.0617371777568 0.5 0.438262822243 +UniRef50_UPI000362807B hypothetical protein, partial 0.329166789221 0.5 0.170833210779 +UniRef50_Q8DJB8 GTP cyclohydrolase 1 0.267424140964 0.5 0.232575859036 +UniRef50_A7FBY0 0.0177976044646 0.500000000001 0.482202395535 +UniRef50_L8E4A2 Macro domain containing protein lmo2759 0.322947361078 0.5 0.177052638922 +UniRef50_Q9RR65 Dihydrofolate reductase 0.0175929364147 0.5 0.482407063585 +UniRef50_A5ULU4 Glutamyl tRNA reductase 1.91425009497 0.5 -1.41425009497 +UniRef50_UPI0002DBA9D3 50S ribosomal protein L25 1.68801164783 0.5 -1.18801164783 +UniRef50_D4HV65 UPF0380 protein yafZ 3.73194890034 0.499999999999 -3.23194890034 +UniRef50_UPI000400F72F hypothetical protein 0.561913285689 0.5 -0.0619132856891 +UniRef50_T1LB68 0.972806532156 0.5 -0.472806532156 +UniRef50_Z1HLQ0 Regulatory protein BlaR1 2.02258454423 0.5 -1.52258454423 +UniRef50_UPI0001FFE3E3 nitrogen regulatory protein P II, partial 0.100327719267 0.5 0.399672280733 +UniRef50_A5UMR6 GtrA like surface polysaccharide biosynthesis protein, GtrA 0.601234467231 0.5 -0.101234467231 +UniRef50_Q2S2A3 Methionine tRNA ligase 0.402464313471 0.5 0.0975356865287 +UniRef50_K0H8G2 Metalloendopeptidase like membrane protein 0.0159084718758 0.5 0.484091528124 +UniRef50_A5UMV3 Polysaccharide polyol phosphate ABC transporter, ATPase component 19.2490805738 0.500000000007 -18.7490805738 +UniRef50_UPI0003FEC27D hypothetical protein 0.682840866327 0.5 -0.182840866327 +UniRef50_Q8VPR1 MC8 0.038099133765 0.5 0.461900866235 +UniRef50_I0C6S9 0.628800165802 0.5 -0.128800165802 +UniRef50_I0K4C6 Transcriptional regulator, BadM Rrf2 family 0.259960913749 0.5 0.240039086251 +UniRef50_A3PBD7 Probable malate 0.326466026456 0.5 0.173533973544 +UniRef50_UPI0003641518 hypothetical protein 0.0940374705609 0.5 0.40596252944 +UniRef50_Q2T4S8 Arabinose import ATP binding protein AraG 2 0.748826187116 0.5 -0.248826187116 +UniRef50_S6GM17 2.80680254362 0.500000000001 -2.30680254362 +UniRef50_UPI0003697D46 hypothetical protein 2.41396808865 0.499999999999 -1.91396808865 +UniRef50_Q1I5V8 Ribonuclease 3 0.275512087822 0.5 0.224487912178 +UniRef50_UPI0003B4A430 CRISPR associated protein Cas3 3.64448035061 0.5 -3.14448035061 +UniRef50_T0CSQ2 Glycosyltransferase, group 1 family protein 3.31899850722 0.5 -2.81899850722 +UniRef50_A0A011NU60 Putative esterase of the alpha beta hydrolase fold protein 0.0712219354069 0.5 0.428778064593 +UniRef50_P64566 0.322600285863 0.5 0.177399714137 +UniRef50_B2V9F3 Gamma glutamyl phosphate reductase 0.0134354778748 0.5 0.486564522125 +UniRef50_Q6LU53 Nucleoside diphosphate kinase 1.0930485366 0.5 -0.593048536596 +UniRef50_UPI000367902D hypothetical protein 0.177499013201 0.5 0.322500986799 +UniRef50_UPI0003B4B7CD ATPase AAA 0.0506729668277 0.5 0.449327033172 +UniRef50_Q8NUV3 1.21683086808 0.5 -0.716830868083 +UniRef50_A7FAY2 0.0117663761108 0.5 0.488233623889 +UniRef50_U9HN69 0.53349725767 0.5 -0.0334972576697 +UniRef50_A7FAY1 0.0258105510721 0.5 0.474189448928 +UniRef50_UPI000420B770 porin 3.33781862217 0.499999999995 -2.83781862217 +UniRef50_UPI0004228484 hypothetical protein 0.590271462827 0.5 -0.0902714628269 +UniRef50_P0AC97 Low affinity gluconate transporter 3.93897960319 0.499999999997 -3.43897960319 +UniRef50_V9VVU4 Cyclopropane fatty acyl phospholipid synthase 5.61254409629 0.500000000001 -5.11254409629 +UniRef50_A7FAY9 0.00861755534408 0.5 0.491382444656 +UniRef50_UPI000394090D PREDICTED 0.0129428088568 0.5 0.487057191143 +UniRef50_H4GDU5 Replication initiation family protein 0.124175377741 0.5 0.375824622259 +UniRef50_UPI00035944E9 0.229861784692 0.5 0.270138215308 +UniRef50_A5VYC6 GTPase Obg 0.163206620147 0.5 0.336793379853 +UniRef50_A0A035UC67 0.237246570626 0.5 0.262753429374 +UniRef50_Z4WLK7 0.0309438739193 0.5 0.469056126081 +UniRef50_P0A9S4 Galactitol 1 phosphate 5 dehydrogenase 1.57212547999 0.5 -1.07212547999 +UniRef50_UPI000343F687 0.270417977983 0.5 0.229582022017 +UniRef50_UPI00035EEEBA hypothetical protein 0.135922065619 0.5 0.364077934381 +UniRef50_P76193 Probable L,D transpeptidase YnhG 7.16981896063 0.5 -6.66981896063 +UniRef50_I1QUG7 0.102267197904 0.5 0.397732802096 +UniRef50_P75672 1.71282230884 0.5 -1.21282230884 +UniRef50_Q67FX7 DeoK 0.186932431822 0.5 0.313067568178 +UniRef50_P75676 10.9628888915 0.500000000004 -10.4628888915 +UniRef50_B9KUH1 0.852776801348 0.5 -0.352776801348 +UniRef50_B9KUH0 0.0429546936062 0.5 0.457045306394 +UniRef50_W0PG73 0.138913392403 0.5 0.361086607597 +UniRef50_H8E0P5 Isopropylmalate isomerase small subunit 1.41264951555 0.5 -0.912649515546 +UniRef50_P09835 Sensor protein UhpB 1.9167325954 0.5 -1.4167325954 +UniRef50_Q4L8J6 Ribose 5 phosphate isomerase A 1.75331868447 0.499999999999 -1.25331868447 +UniRef50_G4NYU6 Transcriptional regulator, PadR family 0.479009966747 0.5 0.0209900332531 +UniRef50_UPI000423B599 rod shape determining protein MreB 2.06506834522 0.5 -1.56506834522 +UniRef50_Q9RWX1 0.00955615387316 0.5 0.490443846127 +UniRef50_L9PQ51 Beta lactamase domain containing protein 1.80811810048 0.5 -1.30811810048 +UniRef50_Q9RWX5 0.000853130635329 0.5 0.499146869365 +UniRef50_A9KV03 Two component transcriptional regulator, winged helix family 2.35840511394 0.499999999998 -1.85840511394 +UniRef50_Q9RWX7 0.00177970447496 0.5 0.498220295525 +UniRef50_Q9RWX8 0.00756000859357 0.5 0.492439991407 +UniRef50_UPI00036FA720 hypothetical protein 0.390734314407 0.5 0.109265685593 +UniRef50_A5VYK1 Beta lactamase domain protein 0.24964541154 0.5 0.25035458846 +UniRef50_Q9RVJ1 Branched chain amino acid ABC transporter, permease protein 0.00149937797815 0.5 0.498500622022 +UniRef50_W8S1V4 ABC type dipeptide transport system, periplasmic component 0.848353248191 0.5 -0.348353248191 +UniRef50_A9U7M5 Predicted protein 9.66017017976 0.499999999997 -9.16017017976 +UniRef50_F0PDK0 0.00467921612389 0.499999999999 0.495320783877 +UniRef50_E8SF44 Chitinase B 2.83801211455 0.500000000003 -2.33801211456 +UniRef50_UPI0003645B24 hypothetical protein 0.334588986908 0.5 0.165411013092 +UniRef50_K2EQR3 Toluene tolerance protein Ttg2B 0.267017341162 0.5 0.232982658838 +UniRef50_W3RJU2 0.103139994032 0.499999999999 0.396860005969 +UniRef50_UPI000287E9BE thymidylate synthase 0.115435887714 0.5 0.384564112286 +UniRef50_UPI0004746A8A ammonia channel protein, partial 0.298016232779 0.5 0.201983767221 +UniRef50_P0AGB1 Phosphoserine phosphatase 2.37584784671 0.5 -1.87584784671 +UniRef50_UPI0004669E93 hypothetical protein, partial 1.17063199916 0.5 -0.670631999158 +UniRef50_Q5HQK2 Glycerophosphoryl diester phosphodiesterase GlpQ, putative 3.07840279901 0.500000000003 -2.57840279901 +UniRef50_UPI000464A474 quinone oxidoreductase 0.0211141407176 0.5 0.478885859283 +UniRef50_UPI00047AB5CC aryl phospho beta D glucosidase 0.093843714415 0.5 0.406156285585 +UniRef50_U7PP10 0.158983139931 0.5 0.341016860069 +UniRef50_Q02QX6 Phospholipase D 0.932333884266 0.5 -0.432333884266 +UniRef50_B0SZ50 NADH quinone oxidoreductase subunit C 0.585511417116 0.5 -0.0855114171157 +UniRef50_A1B541 1.34094066923 0.500000000001 -0.840940669229 +UniRef50_UPI0000165EE8 hypothetical protein DR_A0025 0.00114131161 0.5 0.49885868839 +UniRef50_K0P5L7 Transposase IS4 family protein 0.119200366476 0.500000000001 0.380799633523 +UniRef50_W7LA83 0.010626816245 0.5 0.489373183755 +UniRef50_UPI0003FF921B hypothetical protein 2.39367849815 0.5 -1.89367849815 +UniRef50_UPI0003453247 hypothetical protein 0.17027522211 0.5 0.32972477789 +UniRef50_P0C5W5 Transposase InsD for insertion element IS2A D F H I K 0.972656947661 0.5 -0.472656947661 +UniRef50_C9A9S2 2.23937848351 0.5 -1.73937848351 +UniRef50_Q05207 Protein translocase subunit SecY 1.46181835413 0.500000000001 -0.961818354126 +UniRef50_A6LRQ1 Ubiquitin associated domain containing protein 0.353197534682 0.5 0.146802465318 +UniRef50_F2QW98 Tricalbin 2 0.319740240414 0.5 0.180259759586 +UniRef50_Q9K1G3 Ribosomal RNA small subunit methyltransferase G 0.00311625936168 0.5 0.496883740638 +UniRef50_D4HEV9 0.0453090946198 0.5 0.45469090538 +UniRef50_D4HEV8 0.0868890100601 0.5 0.41311098994 +UniRef50_D4HEV4 0.0885286321892 0.5 0.411471367811 +UniRef50_UPI00037EE4CD hypothetical protein 0.232517680994 0.5 0.267482319006 +UniRef50_A6W3N1 Phosphate ABC transporter, inner membrane subunit PstA 0.472658111394 0.5 0.0273418886055 +UniRef50_U5MQ20 0.226451090923 0.5 0.273548909076 +UniRef50_P50059 Superoxide dismutase [Mn] 2 0.0935178833 0.5 0.4064821167 +UniRef50_G0AAC6 1.12709724874 0.5 -0.627097248744 +UniRef50_UPI000440A67E hypothetical protein STEHIDRAFT_153002 0.092241068879 0.500000000001 0.40775893112 +UniRef50_R1F8H0 0.00723193833864 0.5 0.492768061661 +UniRef50_Q9RVD6 Tryptophan tRNA ligase 2 0.171559339565 0.5 0.328440660435 +UniRef50_Q97R65 Dihydroorotate dehydrogenase B ), catalytic subunit 0.00284993164293 0.5 0.497150068357 +UniRef50_UPI0003B4E783 hypothetical protein 0.357565252608 0.5 0.142434747392 +UniRef50_UPI000360793F hypothetical protein 0.778127353691 0.5 -0.278127353691 +UniRef50_O06941 Protein GrpE 0.482377812543 0.5 0.0176221874569 +UniRef50_Q9K0V4 Ribosomal RNA large subunit methyltransferase L 0.0236263341471 0.5 0.476373665853 +UniRef50_UPI000476FB1B hypothetical protein 0.99224292214 0.5 -0.49224292214 +UniRef50_A0A014LMK6 Acetate CoA ligase 0.0249862444682 0.5 0.475013755532 +UniRef50_UPI00042C3977 PREDICTED 0.279229386544 0.5 0.220770613456 +UniRef50_Q896L1 Magnesium protoporphyrin IX monomethyl ester oxidative cyclase 0.0526180937707 0.5 0.447381906229 +UniRef50_Q3IRZ6 Urease subunit beta 0.630910506354 0.5 -0.130910506354 +UniRef50_B7UZP4 1.27983511657 0.5 -0.779835116568 +UniRef50_Q8RQL9 Isocitrate dehydrogenase [NADP] 1.77123056282 0.5 -1.27123056282 +UniRef50_I0C190 Nitrogen regulation protein NIFR3 3.52687289304 0.500000000001 -3.02687289304 +UniRef50_UPI0004764B37 phosphoglyceromutase 0.357976229123 0.5 0.142023770877 +UniRef50_C6BBB4 Ammonium transporter 1.54509966357 0.5 -1.04509966357 +UniRef50_U5MV95 0.0831798516066 0.5 0.416820148393 +UniRef50_A1SWH9 sn glycerol 3 phosphate import ATP binding protein UgpC 0.0442108233478 0.5 0.455789176652 +UniRef50_I2FG31 Transposase 2.44273252209 0.499999999998 -1.94273252208 +UniRef50_UPI000329A113 0.378638759798 0.5 0.121361240202 +UniRef50_K2AFG9 2.93691167886 0.5 -2.43691167886 +UniRef50_Q3IV13 Radical SAM superfamily protein 3.04896554449 0.499999999999 -2.54896554449 +UniRef50_P44875 Acetate CoA transferase subunit alpha 0.0364861832845 0.5 0.463513816715 +UniRef50_R7PYU4 Predicted glycosyltransferase GT1 family 6.73603944887 0.499999999997 -6.23603944887 +UniRef50_B0RZT0 Adenylate kinase 0.37716983363 0.5 0.12283016637 +UniRef50_P77529 0.807990381241 0.5 -0.307990381241 +UniRef50_A3PS98 Transcriptional regulator, GntR family 1.83883268932 0.5 -1.33883268932 +UniRef50_A5UN97 0.622546826724 0.5 -0.122546826724 +UniRef50_Q6KHP5 Glucose 1 phosphate adenylyltransferase 0.243525877751 0.5 0.256474122249 +UniRef50_D4HDX4 0.0133870954859 0.5 0.486612904514 +UniRef50_A5IVQ1 Diaminopimelate epimerase like protein 1.80553599872 0.5 -1.30553599872 +UniRef50_B4RI59 Putative ChaX protein 0.52875562949 0.5 -0.0287556294904 +UniRef50_UPI00035F5713 hypothetical protein 5.26477877772 0.499999999999 -4.76477877772 +UniRef50_A0A038FN38 Sulfonate binding protein 0.166780596375 0.5 0.333219403625 +UniRef50_J3NQ90 1.08867248135 0.5 -0.588672481354 +UniRef50_I3YR32 Nitroreductase like oxidoreductase 0.0806958065604 0.5 0.41930419344 +UniRef50_H1ZV37 Geranial dehydrogenase 0.347328581877 0.5 0.152671418123 +UniRef50_UPI000455F234 alcohol oxidase 0.366514021783 0.5 0.133485978217 +UniRef50_Q9RYZ6 Phosphate binding protein 0.0039357049277 0.5 0.496064295072 +UniRef50_Q1IZI8 Uridylate kinase 0.315215878069 0.5 0.184784121931 +UniRef50_A3MA07 0.00888553699389 0.500000000001 0.491114463006 +UniRef50_Q5DY13 Lateral flagellar rod protein 0.351202020728 0.5 0.148797979272 +UniRef50_P20186 0.024569680988 0.5 0.475430319012 +UniRef50_UPI00037D4D8D hypothetical protein 0.722263874078 0.5 -0.222263874078 +UniRef50_Q7NK24 Phosphoadenosine phosphosulfate reductase 0.383192795877 0.5 0.116807204123 +UniRef50_Q8TXN1 Chorismate synthase 32.5274808319 0.49999999999 -32.0274808319 +UniRef50_W0E8G5 0.915452767967 0.5 -0.415452767967 +UniRef50_UPI00035D319D hypothetical protein, partial 0.00279410220371 0.5 0.497205897796 +UniRef50_A6LUF3 Histidinol phosphate aminotransferase 0.0936288870469 0.5 0.406371112953 +UniRef50_Q89UV8 Immunogenic protein 2.12057300377 0.5 -1.62057300377 +UniRef50_B7UVV3 Dihydroorotase 0.521369087574 0.5 -0.0213690875736 +UniRef50_UPI000395D90C PREDICTED 0.389370276321 0.5 0.110629723679 +UniRef50_UPI00046CED3A O sialoglycoprotein endopeptidase 0.636354681238 0.5 -0.136354681238 +UniRef50_Q1IAK7 Histidine decarboxylase 0.00968042166485 0.5 0.490319578335 +UniRef50_Q1IYS1 Carboxynorspermidine decarboxylase 0.104127580258 0.5 0.395872419742 +UniRef50_C1AU54 UDP N acetylmuramate L alanine ligase 0.363384744968 0.5 0.136615255032 +UniRef50_Q03470 DNA gyrase subunit A 0.000322777510587 0.5 0.499677222489 +UniRef50_C4RE96 Diguanylate cyclase with GAF sensor 0.225671814846 0.5 0.274328185154 +UniRef50_Q9F4G3 HTH type transcriptional regulator TcaR 0.372801241967 0.5 0.127198758033 +UniRef50_P0AFR5 0.283053034158 0.5 0.216946965842 +UniRef50_UPI0004630051 hypothetical protein 0.156085696831 0.5 0.343914303169 +UniRef50_UPI0004641B3A hypothetical protein 4.30935476639 0.499999999999 -3.80935476639 +UniRef50_UPI000377D7B1 ABC transporter 0.895890121057 0.5 -0.395890121057 +UniRef50_Q9EXI7 P 14 protein 1.06521922551 0.5 -0.565219225508 +UniRef50_O68926 Bacterioferritin 7.06643293005 0.5 -6.56643293005 +UniRef50_F1AXC6 PP241 0.0706876590268 0.5 0.429312340973 +UniRef50_D4HF95 Transcriptional regulator, DeoR family 0.0840197596832 0.5 0.415980240317 +UniRef50_C1A2V7 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.442316837792 0.5 0.057683162208 +UniRef50_UPI000174615B methionine synthase 0.211772653541 0.5 0.288227346459 +UniRef50_P75851 Putative aliphatic sulfonates transport permease protein SsuC 2.63803332046 0.500000000001 -2.13803332046 +UniRef50_UPI000466704B hypothetical protein, partial 4.49474739124 0.499999999999 -3.99474739124 +UniRef50_B2EBP0 0.0781600143131 0.5 0.421839985686 +UniRef50_UPI0003605AF8 hypothetical protein 2.08451338165 0.5 -1.58451338165 +UniRef50_Q6AAR3 L threonine 3 dehydrogenase 0.0174728458921 0.5 0.482527154108 +UniRef50_C5AJH9 Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein 2.02907596684 0.5 -1.52907596684 +UniRef50_F9MSP3 HD domain protein 0.750285915417 0.5 -0.250285915417 +UniRef50_P76103 Inner membrane protein YdcO 6.76222414301 0.500000000005 -6.26222414302 +UniRef50_UPI0002BA1B2C glutathione regulated potassium efflux system protein KefB 0.427018699222 0.5 0.0729813007776 +UniRef50_A6M1S5 Transcriptional regulator, AraC family 1.07747673525 0.5 -0.577476735251 +UniRef50_UPI0003A01203 hypothetical protein 0.454785970784 0.5 0.0452140292158 +UniRef50_P39836 1.32943218096 0.5 -0.829432180962 +UniRef50_R5TC97 0.156936494949 0.5 0.343063505051 +UniRef50_P39834 4.74281468702 0.500000000002 -4.24281468702 +UniRef50_P0AE14 Protein AmpE 0.920534876067 0.5 -0.420534876067 +UniRef50_E1M0K3 N acetyl glucosamine matabolism 0.721869967568 0.5 -0.221869967568 +UniRef50_UPI0004746698 hypothetical protein, partial 0.406082967907 0.5 0.0939170320933 +UniRef50_Q49Y24 Heat inducible transcription repressor HrcA 2.774878802 0.499999999997 -2.274878802 +UniRef50_A5N6G6 Phosphate propanoyltransferase 0.0684485244014 0.499999999999 0.431551475599 +UniRef50_W1XPB9 0.133793164638 0.5 0.366206835362 +UniRef50_UPI00028A201E LuxR family transcriptional regulator 4.092248026 0.500000000001 -3.592248026 +UniRef50_UPI0003F914BA DEAD DEAH box helicase 0.015886306639 0.5 0.484113693361 +UniRef50_P76349 1.29793023009 0.5 -0.797930230086 +UniRef50_S7UZQ5 0.500739412348 0.5 -0.000739412348022 +UniRef50_A1TZQ0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.258509770061 0.5 0.241490229939 +UniRef50_UPI000368871C hypothetical protein 0.460305149866 0.5 0.0396948501344 +UniRef50_UPI0004703E16 hypothetical protein 0.794757060053 0.5 -0.294757060053 +UniRef50_B9JR02 4.93112391242 0.499999999997 -4.43112391241 +UniRef50_UPI00035CD59F DNA binding protein 0.883776766209 0.5 -0.383776766209 +UniRef50_A0A024C1C5 0.00939220458955 0.5 0.49060779541 +UniRef50_G9RS55 0.792213111229 0.5 -0.292213111229 +UniRef50_A7IDP6 Glutamine amidotransferase class I 8.52087228913 0.500000000003 -8.02087228914 +UniRef50_Q5LHZ1 N acetyl gamma glutamyl phosphate reductase 1.23537058332 0.5 -0.735370583319 +UniRef50_F2DS64 Predicted protein 0.14879912954 0.5 0.35120087046 +UniRef50_C4ZF78 Orotate phosphoribosyltransferase 0.809146346801 0.5 -0.309146346801 +UniRef50_Q9FNJ8 Arogenate dehydratase 5, chloroplastic 1.88345234729 0.5 -1.38345234729 +UniRef50_E4PLJ2 Protein containing DUF1857 0.528708116997 0.5 -0.0287081169966 +UniRef50_Q8DWA1 2.4575629998 0.499999999998 -1.9575629998 +UniRef50_Q9RY02 0.00401644599927 0.5 0.495983554001 +UniRef50_UPI000377338C hypothetical protein 0.218201838552 0.5 0.281798161448 +UniRef50_UPI00034A10DE MULTISPECIES 0.0328736768167 0.500000000001 0.467126323182 +UniRef50_Q9RY09 0.000739952413072 0.5 0.499260047587 +UniRef50_Q6FE61 NADH dehydrogenase I chain L 0.248663320398 0.5 0.251336679602 +UniRef50_G7U705 Efflux ABC transporter, permease protein 0.0165607747139 0.5 0.483439225286 +UniRef50_Q2NXY9 2 keto 3 deoxygluconate permease 0.74671683976 0.5 -0.24671683976 +UniRef50_UPI000308C80D ATP cobalamin adenosyltransferase 0.29756343247 0.5 0.20243656753 +UniRef50_UPI00036CA62E hypothetical protein 2.05304395849 0.5 -1.55304395849 +UniRef50_Q8DWA4 1.87468876223 0.5 -1.37468876223 +UniRef50_Q2NI43 Predicted transcriptional regulator 0.959155092717 0.5 -0.459155092717 +UniRef50_A6TXC8 Nucleoid associated protein Amet_4780 3.73775993251 0.5 -3.23775993251 +UniRef50_D3PYT6 LigA 0.661261834668 0.5 -0.161261834668 +UniRef50_P11988 6 phospho beta glucosidase BglB 2.11213436116 0.500000000002 -1.61213436116 +UniRef50_Q21YW0 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.444680958592 0.5 0.0553190414079 +UniRef50_D1YVK2 0.866233930736 0.5 -0.366233930736 +UniRef50_UPI00037CAA58 hypothetical protein 0.0614587433878 0.5 0.438541256612 +UniRef50_E4SZ07 Alcohol dehydrogenase Acetaldehyde dehydrogenase 0.922880400345 0.5 -0.422880400345 +UniRef50_UPI0003B5954D TetR family transcriptional regulator 1.21159403322 0.499999999999 -0.711594033224 +UniRef50_F8LW56 0.753647135845 0.5 -0.253647135845 +UniRef50_A5IT13 3.0245962494 0.500000000001 -2.5245962494 +UniRef50_P24555 Protease 2 2.15957418498 0.499999999999 -1.65957418498 +UniRef50_A0A010JG94 MATE efflux family protein 0.0185639393189 0.5 0.481436060681 +UniRef50_UPI0003C1B314 PREDICTED 2.79751960919 0.500000000005 -2.29751960919 +UniRef50_Q1QH83 Carbohydrate ABC transporter substrate binding protein, CUT1 family 0.979029788857 0.5 -0.479029788857 +UniRef50_R4VNN3 0.653350283751 0.5 -0.153350283751 +UniRef50_UPI000443497D PREDICTED 0.0352298453177 0.5 0.464770154682 +UniRef50_B3X836 D xylose ABC transporter, ATP binding protein 3.40436971528 0.5 -2.90436971528 +UniRef50_A0A029HJU3 CRISPR associated helicase Cas3 4.21916368046 0.5 -3.71916368046 +UniRef50_Q9HVD1 Lipid A deacylase PagL 0.583578734093 0.5 -0.0835787340931 +UniRef50_UPI000462CF76 hypothetical protein, partial 0.0603288823447 0.5 0.439671117655 +UniRef50_Q9RXH9 Lipase, putative 0.00269090004744 0.5 0.497309099952 +UniRef50_Q9S358 Anthranilate synthase component 1 0.0154272568402 0.5 0.48457274316 +UniRef50_C6CE95 UPF0115 protein Dd1591_1343 2.66097865548 0.499999999999 -2.16097865548 +UniRef50_Q1YIY5 0.226750316614 0.5 0.273249683386 +UniRef50_U6EC46 NusA family KH domain containing protein 1.83465837408 0.5 -1.33465837408 +UniRef50_UPI0004659C6E hypothetical protein 0.0306638924853 0.5 0.469336107515 +UniRef50_A7FHL7 Anhydro N acetylmuramic acid kinase 1.07436114759 0.5 -0.574361147586 +UniRef50_Q5LZ68 Ribonuclease 3 0.658853965471 0.5 -0.158853965471 +UniRef50_A4G0N3 Probable tRNA pseudouridine synthase B 1.08613105981 0.5 -0.586131059813 +UniRef50_A6LS09 PTS system fructose subfamily IIA component 0.640678807043 0.5 -0.140678807043 +UniRef50_Q7WDY0 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0937294378087 0.5 0.406270562191 +UniRef50_U1S1M7 0.00514807547785 0.5 0.494851924522 +UniRef50_UPI0003F0C550 PREDICTED 0.465010804523 0.5 0.0349891954772 +UniRef50_UPI00041A8363 LamB YcsF family protein 5.84936589144 0.499999999998 -5.34936589144 +UniRef50_UPI000368F174 hypothetical protein 0.841793600835 0.5 -0.341793600835 +UniRef50_Q216H0 Phosphomethylpyrimidine synthase 0.147511722228 0.5 0.352488277772 +UniRef50_W6MC79 0.015180306659 0.5 0.484819693341 +UniRef50_UPI000444A627 hypothetical protein STEHIDRAFT_83294 0.276116830979 0.5 0.223883169021 +UniRef50_UPI00046F6DE4 hypothetical protein, partial 0.280743573403 0.5 0.219256426597 +UniRef50_Q8ZQ16 Ribosomal large subunit pseudouridine synthase C 2.24465619497 0.499999999999 -1.74465619497 +UniRef50_W7TU75 4.97598479103 0.500000000004 -4.47598479104 +UniRef50_P52123 0.539137181304 0.5 -0.0391371813036 +UniRef50_P52126 2.29287164907 0.5 -1.79287164907 +UniRef50_P52127 1.0146332068 0.5 -0.514633206803 +UniRef50_P52124 1.17003876593 0.499999999999 -0.670038765929 +UniRef50_P52125 1.33919618522 0.5 -0.839196185219 +UniRef50_P0C0Q4 Extracellular elastase 1.64075979746 0.5 -1.14075979746 +UniRef50_Q4L565 Probable quinol oxidase subunit 2 3.54574810439 0.5 -3.04574810439 +UniRef50_A4WP12 Ribosomal RNA small subunit methyltransferase E 0.306348512133 0.5 0.193651487867 +UniRef50_Q7NL20 1,4 alpha glucan branching enzyme GlgB 0.18377063874 0.5 0.31622936126 +UniRef50_B9KP74 Branched chain amino acid aminotransferase 2.39800561996 0.5 -1.89800561996 +UniRef50_Q53212 Putative peroxiredoxin y4vD 2.8881031852 0.5 -2.3881031852 +UniRef50_A1KV38 Ribonuclease H 1.00262068767 0.5 -0.50262068767 +UniRef50_A6LPL8 0.0162023116297 0.5 0.483797688371 +UniRef50_UPI0004725A0F hypothetical protein 0.325334069029 0.5 0.174665930971 +UniRef50_UPI0003B7A3D3 ABC transporter 0.0869417142018 0.5 0.413058285798 +UniRef50_Q4FNE4 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.219926060624 0.5 0.280073939376 +UniRef50_A4XZN0 Acetate CoA transferase YdiF 0.147281972436 0.5 0.352718027564 +UniRef50_UPI000368346E hypothetical protein 1.02895023095 0.500000000001 -0.528950230954 +UniRef50_UPI00036B1EA9 hypothetical protein 0.0711540291823 0.5 0.428845970818 +UniRef50_Q8YC19 Transposase 0.30478865973 0.5 0.19521134027 +UniRef50_J7L8P7 TRAP transporter solute receptor, TAXI family protein 0.476693115766 0.5 0.0233068842344 +UniRef50_UPI00036DFF4F hypothetical protein 0.761582418104 0.5 -0.261582418104 +UniRef50_O32220 Copper exporting P type ATPase A 1.75787278451 0.5 -1.25787278451 +UniRef50_G8W9Y6 0.606004696763 0.5 -0.106004696763 +UniRef50_K3KRS9 Sulfurtransferase 0.409406492917 0.5 0.0905935070834 +UniRef50_M1MQ23 Pseudaminic acid biosynthesis associated protein PseG 0.0950518621958 0.5 0.404948137804 +UniRef50_B7VB85 Glutamine tRNA ligase 0.796728836804 0.5 -0.296728836804 +UniRef50_UPI000474892A acetyl CoA acetyltransferase 0.148999416796 0.5 0.351000583204 +UniRef50_J4GJ09 0.131947244726 0.5 0.368052755274 +UniRef50_T8KWL4 0.421622422072 0.5 0.078377577928 +UniRef50_Q9HXN1 Membrane bound lytic murein transglycosylase F 0.31408394681 0.5 0.18591605319 +UniRef50_M2C918 0.24935121248 0.5 0.25064878752 +UniRef50_A0A059ILG7 1.2100435052 0.5 -0.710043505202 +UniRef50_W8X8B8 LemA family protein 1.07248269243 0.5 -0.572482692426 +UniRef50_UPI0001D62167 PREDICTED 0.0677286346922 0.5 0.432271365307 +UniRef50_Q5L1U1 3 oxoacyl [acyl carrier protein] synthase 3 0.0720285612903 0.5 0.42797143871 +UniRef50_R3JX77 Tandem lipoprotein 0.358442754278 0.5 0.141557245722 +UniRef50_UPI0003A1637C pseudouridine synthase 0.062047995638 0.499999999999 0.437952004363 +UniRef50_A0A011QIR3 0.469544990773 0.5 0.030455009227 +UniRef50_B1YMC1 Metallophosphoesterase 0.370196573552 0.5 0.129803426448 +UniRef50_X7ECM7 3.64927138294 0.5 -3.14927138294 +UniRef50_C4ZZ24 ATPase RavA 1.22922112928 0.500000000001 -0.729221129278 +UniRef50_A3V382 0.492429709138 0.5 0.00757029086223 +UniRef50_P76389 UPF0053 protein YegH 1.46054515252 0.499999999999 -0.960545152522 +UniRef50_C3K789 0.040681717449 0.5 0.459318282551 +UniRef50_Q6A6X6 Methionine import ATP binding protein MetN 0.000624212008619 0.5 0.499375787992 +UniRef50_K0B4J3 Uroporphyrin III C methyltransferase HemD 0.023750428901 0.499999999999 0.4762495711 +UniRef50_UPI0003674EE1 hypothetical protein 0.751429490748 0.5 -0.251429490748 +UniRef50_UPI00036AFCF0 hypothetical protein 2.40855901141 0.499999999999 -1.90855901141 +UniRef50_UPI00047853C3 hypothetical protein 19.452042229 0.499999999975 -18.952042229 +UniRef50_UPI00047B85B2 hypothetical protein, partial 1.54069199585 0.499999999998 -1.04069199585 +UniRef50_A4WVR4 5.24821062979 0.499999999999 -4.74821062979 +UniRef50_Q213K6 Leucyl phenylalanyl tRNA protein transferase 1.47953323935 0.5 -0.979533239353 +UniRef50_UPI0003474DF5 carbon monoxide dehydrogenase 1.26051618493 0.499999999999 -0.760516184927 +UniRef50_C8RZX1 0.596120218608 0.5 -0.0961202186078 +UniRef50_UPI00032B0880 PREDICTED 0.246108195754 0.5 0.253891804246 +UniRef50_A5UJV9 Adhesin like protein 1.01257940727 0.5 -0.512579407269 +UniRef50_S9TE19 Proteophosphoglycan ppg4 1.30335480831 0.5 -0.803354808311 +UniRef50_I0C4G8 Glycosyltransferase 1.37255631213 0.500000000002 -0.872556312136 +UniRef50_V5WWK4 Glycine betaine ABC transporter permease 0.133806040214 0.5 0.366193959786 +UniRef50_E6LGM1 0.429930369823 0.5 0.0700696301769 +UniRef50_Q9RXB0 Alpha dextran endo 1,6 alpha glucosidase 0.00334314643575 0.499999999999 0.496656853565 +UniRef50_Q3IVA1 Translation initiation factor 2, gamma subunit, GTPase 12.749698702 0.500000000001 -12.249698702 +UniRef50_A8FQE6 Radical SAM domain protein 0.285308395131 0.5 0.214691604869 +UniRef50_UPI0001913051 prolipoprotein diacylglyceryl transferase, partial 0.737207446346 0.5 -0.237207446346 +UniRef50_UPI000479F065 hypothetical protein 1.88780702595 0.500000000002 -1.38780702596 +UniRef50_I7EDR9 TonB dependent receptor 0.00768556212112 0.5 0.492314437879 +UniRef50_UPI00036EC80A hypothetical protein 1.6588300363 0.499999999999 -1.1588300363 +UniRef50_UPI00022CAA5E PREDICTED 5.37630544862 0.500000000001 -4.87630544862 +UniRef50_V8X5Y2 3.49590046027 0.499999999999 -2.99590046027 +UniRef50_UPI0003B3D29A ATP dependent protease 0.392288538661 0.5 0.107711461339 +UniRef50_C6SJR7 0.700382119372 0.5 -0.200382119372 +UniRef50_U5UKU3 Membrane associated protein 1.17183127325 0.5 -0.671831273248 +UniRef50_M7A685 1.72639660724 0.499999999999 -1.22639660724 +UniRef50_R1DWZ6 1.02161440744 0.5 -0.521614407437 +UniRef50_E2ZTH3 Putative membrane protein 1.30697423576 0.499999999999 -0.806974235758 +UniRef50_A9BEV2 Protein RecA 0.0109672869653 0.5 0.489032713035 +UniRef50_P78283 Protein translocase subunit SecY 0.111699694512 0.5 0.388300305488 +UniRef50_E7MXD2 Rhodanese like protein 4.23640258996 0.500000000001 -3.73640258997 +UniRef50_UPI00046B96B5 PREDICTED 2.10841585911 0.5 -1.60841585911 +UniRef50_A0A014LBA0 Transposase 0.0238048584759 0.5 0.476195141524 +UniRef50_D7BLK7 Sugar transporter 0.0159464110026 0.499999999999 0.484053588998 +UniRef50_Q5HJZ6 Plasmid recombination enzyme type 3 1.51485209521 0.5 -1.01485209521 +UniRef50_Q2RKZ7 Glutamate 5 kinase 0.35010034768 0.5 0.14989965232 +UniRef50_UPI0003B48512 ABC transporter substrate binding protein 0.151970220078 0.5 0.348029779922 +UniRef50_UPI000255BACE patatin 0.148606745044 0.5 0.351393254956 +UniRef50_UPI0004446091 PREDICTED 0.319990593302 0.5 0.180009406698 +UniRef50_R4Z5X8 0.378344766893 0.5 0.121655233107 +UniRef50_Q9ZJG8 Membrane protein insertase YidC 0.114359762592 0.5 0.385640237408 +UniRef50_A0A059IR82 Chromosome partitioning protein ParA 1.86288058904 0.5 -1.36288058904 +UniRef50_Q8YFR1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.593432554757 0.5 -0.0934325547567 +UniRef50_UPI00040C16D0 hypothetical protein 0.608984774745 0.5 -0.108984774745 +UniRef50_F7Z665 D 3 phosphoglycerate dehydrogenase 1.33224374247 0.5 -0.832243742465 +UniRef50_D1FI19 TRAP dicarboxylate transporter 0.251529482525 0.5 0.248470517475 +UniRef50_Q9MUM1 Light independent protochlorophyllide reductase subunit N 1.70937165246 0.5 -1.20937165246 +UniRef50_F5LXA3 Glycosyl transferase family protein 2.90220242726 0.5 -2.40220242726 +UniRef50_L0A408 Diguanylate cyclase domain containing protein 0.0187300721447 0.5 0.481269927855 +UniRef50_UPI000308ED7E hypothetical protein 1.48039182828 0.5 -0.98039182828 +UniRef50_Q5JEF8 Nicotinamide nucleotide adenylyltransferase 3.21415030789 0.500000000002 -2.71415030789 +UniRef50_A4WWA3 Glutathione dependent formaldehyde activating, GFA 2.37289731717 0.5 -1.87289731717 +UniRef50_S3FKB7 Major facilitator superfamily MFS_1 domain protein 1.04177685484 0.5 -0.541776854841 +UniRef50_F2US62 0.0468371596799 0.5 0.45316284032 +UniRef50_E8U2Z7 Putative GAF sensor protein 0.00346892926959 0.5 0.49653107073 +UniRef50_L7DFJ3 TetR family transcriptional regulator 0.374824440114 0.5 0.125175559886 +UniRef50_Q16CP9 3.37764972616 0.499999999999 -2.87764972616 +UniRef50_Q3IW63 1.32972044309 0.5 -0.829720443092 +UniRef50_T1JH82 0.0664294414735 0.5 0.433570558527 +UniRef50_B7GZC9 0.00634307581313 0.5 0.493656924187 +UniRef50_D3QI51 Transporter 1.97449632479 0.499999999999 -1.47449632478 +UniRef50_UPI0003744E94 hypothetical protein 0.0475750513764 0.5 0.452424948624 +UniRef50_D8MLX7 Photosystem I assembly famlily protein BtpA 2.74317091057 0.499999999999 -2.24317091057 +UniRef50_UPI000262C9D0 hypothetical protein 0.348577395561 0.5 0.151422604439 +UniRef50_B4U8E3 Potassium transporting ATPase A chain 0.0190828281458 0.500000000001 0.480917171853 +UniRef50_UPI00047293B6 hypothetical protein 0.2333595513 0.5 0.2666404487 +UniRef50_Q1QUD2 Probable malate 0.179060119601 0.5 0.320939880399 +UniRef50_UPI0003A0AD2C 30S ribosomal protein S7 0.0581212052964 0.5 0.441878794704 +UniRef50_UPI0001CE1538 PREDICTED 0.319560307808 0.5 0.180439692192 +UniRef50_G3N4L7 1.76006610698 0.5 -1.26006610698 +UniRef50_Q3JNN4 0.34905119022 0.5 0.15094880978 +UniRef50_A6LZ55 2,5 didehydrogluconate reductase 0.0378650343758 0.5 0.462134965624 +UniRef50_Q3JNN0 0.468924443089 0.5 0.0310755569112 +UniRef50_A3PIA7 0.561287957382 0.5 -0.0612879573823 +UniRef50_A7FRF2 SPFH domain Band 7 family protein 0.013390813889 0.5 0.486609186111 +UniRef50_X1FV54 Marine sediment metagenome DNA, contig 0.212166048035 0.5 0.287833951965 +UniRef50_UPI00037DF23F hypothetical protein 0.130129365921 0.5 0.369870634079 +UniRef50_UPI00046A73E3 nitrate ABC transporter ATP binding protein 0.0979702190886 0.5 0.402029780911 +UniRef50_UPI0002559CE7 IS5 family transposase OrfA 1.1557410793 0.5 -0.655741079298 +UniRef50_UPI0003B38F36 ABC transporter permease 0.21212746957 0.499999999999 0.287872530431 +UniRef50_UPI0003603238 hypothetical protein, partial 0.60167289187 0.5 -0.10167289187 +UniRef50_L7WVU0 Ribosomal silencing factor RsfS 2.61002159432 0.499999999998 -2.11002159432 +UniRef50_F0KKV9 0.0101453432813 0.5 0.489854656719 +UniRef50_UPI0003C16777 2.23358534978 0.500000000003 -1.73358534978 +UniRef50_C4ZGW0 Aspartate aminotransferase, putative 3.14611843717 0.499999999998 -2.64611843717 +UniRef50_UPI00037BAEE0 hypothetical protein 0.211424268651 0.5 0.288575731349 +UniRef50_A7HUJ4 AzlC family protein 0.648550040391 0.5 -0.148550040391 +UniRef50_P0AEL7 Ferrienterobactin binding periplasmic protein 2.58882030407 0.500000000001 -2.08882030407 +UniRef50_Q1RKE8 NADH quinone oxidoreductase subunit J 4.52719451509 0.499999999998 -4.02719451509 +UniRef50_B2V326 Mate efflux family protein 0.0972592756927 0.5 0.402740724307 +UniRef50_B6IWF0 Phosphate ABC transporter, periplasmic phosphate binding protein PstS, putative 0.393426929449 0.5 0.106573070551 +UniRef50_B7GXW5 Poly depolymerase 0.00121718374865 0.5 0.498782816251 +UniRef50_F0P9K4 DNA polymerase III delta prime subunit 1.51438328161 0.5 -1.01438328161 +UniRef50_Q8DL38 Biotin synthase 0.0316537958967 0.5 0.468346204103 +UniRef50_M2F7K0 Putative transposase 0.300342532637 0.5 0.199657467363 +UniRef50_Q6C1W8 YALI0F12793p 0.00745742106869 0.5 0.492542578931 +UniRef50_UPI00046D9296 3 kinase 0.166175718219 0.5 0.333824281781 +UniRef50_R7PVC4 O linked GlcNAc transferase 7.14872926633 0.500000000003 -6.64872926633 +UniRef50_UPI00029AB782 cytochrome d ubiquinol oxidase subunit II 0.235283732009 0.5 0.264716267992 +UniRef50_U5NRE3 2.37455502613 0.5 -1.87455502613 +UniRef50_F8HC83 Regulatory protein spx 0.551222390459 0.5 -0.0512223904588 +UniRef50_Q3Y3U3 Relaxase mobilization nuclease domain 3.38457382139 0.5 -2.88457382139 +UniRef50_C5ABI0 Major facilitator superfamily MFS_1 0.0152820478954 0.5 0.484717952104 +UniRef50_M2XMH8 DNA polymerase II large subunit 0.0970025348402 0.5 0.40299746516 +UniRef50_K7YBZ8 0.0577295758039 0.5 0.442270424196 +UniRef50_P44304 Glyceraldehyde 3 phosphate dehydrogenase 4.22776557896 0.499999999999 -3.72776557896 +UniRef50_B2TI69 0.145234765698 0.5 0.354765234302 +UniRef50_UPI000255F17A hypothetical protein 0.176724785674 0.5 0.323275214326 +UniRef50_P45524 Putative esterase YheT 0.772170850613 0.5 -0.272170850613 +UniRef50_UPI000462C6A7 PREDICTED 0.0202949279574 0.5 0.479705072042 +UniRef50_B2WGR9 Catabolic 3 dehydroquinase 0.00191563330055 0.5 0.4980843667 +UniRef50_I4AI93 0.0369530113072 0.5 0.463046988693 +UniRef50_UPI00045E39BE PREDICTED 0.569239692737 0.5 -0.0692396927369 +UniRef50_UPI00037892F1 hypothetical protein 0.871485798361 0.5 -0.371485798361 +UniRef50_U1X2L2 3.45339593034 0.500000000003 -2.95339593034 +UniRef50_UPI0003601561 hypothetical protein 0.537452811915 0.5 -0.0374528119146 +UniRef50_S5FCD6 Portal protein 0.0211076704619 0.5 0.478892329538 +UniRef50_C9ABJ9 Fructose 6 phosphate aldolase 1.58008825312 0.5 -1.08008825312 +UniRef50_A4FIQ1 Inositol 2 dehydrogenase 3 1.40613606502 0.5 -0.906136065019 +UniRef50_A3CQ84 Stomatin prohibitin like membrane protease subunits, putative 0.475404932123 0.5 0.0245950678771 +UniRef50_W3AF53 0.229421422835 0.5 0.270578577165 +UniRef50_A5UJ85 DNA helicase II 3.78592273777 0.500000000002 -3.28592273777 +UniRef50_Q4L790 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.33832748113 0.5 -0.838327481126 +UniRef50_F2N691 Methyltransferase PilK 1.04654271366 0.5 -0.546542713659 +UniRef50_L1KFY1 0.0453244513628 0.5 0.454675548637 +UniRef50_M9VBK7 Protein translocase subunit SecE 0.014009064142 0.5 0.485990935858 +UniRef50_K0RFL8 0.14511566615 0.5 0.35488433385 +UniRef50_Q7UKQ9 Pyridoxine pyridoxamine 5 phosphate oxidase 0.0771112718305 0.5 0.42288872817 +UniRef50_UPI0003B677A0 trehalose phosphatase 0.419980760053 0.5 0.0800192399468 +UniRef50_D5AMV2 2.79327138172 0.5 -2.29327138172 +UniRef50_C5WIK5 0.978559834957 0.5 -0.478559834957 +UniRef50_A3TY58 2.3140215491 0.499999999999 -1.8140215491 +UniRef50_I6AD38 Rhodanese domain protein 0.433904055274 0.5 0.0660959447264 +UniRef50_Q3BTY0 Leucyl phenylalanyl tRNA protein transferase 0.686674976572 0.5 -0.186674976572 +UniRef50_J1EAV0 Localization of periplasmic protein complex 0.384142907711 0.5 0.115857092289 +UniRef50_Q08WY4 0.0342059814147 0.5 0.465794018585 +UniRef50_A5UK74 Xanthine uracil permease, UraA 0.291530932306 0.5 0.208469067694 +UniRef50_R8TPL3 4.46864450888 0.499999999998 -3.96864450887 +UniRef50_UPI0002F0AFD4 glycerol 3 phosphate dehydrogenase 1.34185123416 0.5 -0.841851234163 +UniRef50_O69763 Vanillin dehydrogenase 0.0193542812177 0.5 0.480645718782 +UniRef50_A0A021V5W0 LctP family lactate transporter 0.903375763164 0.5 -0.403375763164 +UniRef50_UPI000328D943 PREDICTED 0.360497276132 0.5 0.139502723868 +UniRef50_Q8P322 tRNA lysidine synthase 1.10275201833 0.5 -0.602752018333 +UniRef50_P50178 Modification methylase LlaDCHIB 6.56855316565 0.499999999997 -6.06855316565 +UniRef50_UPI0002DF814C hypothetical protein 5.96447457621 0.500000000002 -5.46447457621 +UniRef50_U3T3H2 Outer membrane cobalamin receptor protein 0.00988285690829 0.5 0.490117143092 +UniRef50_Q8A0U0 GTP cyclohydrolase 1 0.0219242996777 0.5 0.478075700322 +UniRef50_E4U994 0.0866542278063 0.5 0.413345772194 +UniRef50_P56148 DNA repair protein RadA homolog 0.0119070884331 0.5 0.488092911567 +UniRef50_S1T0A0 Molybdopterin guanine dinucleotide biosynthesis protein MobA 0.497649652696 0.5 0.00235034730387 +UniRef50_Q9ZLF9 Ribonucleoside diphosphate reductase subunit alpha 0.0344392772681 0.5 0.465560722732 +UniRef50_Q5L0L0 Chemotaxis response regulator protein glutamate methylesterase 0.467010353926 0.5 0.032989646074 +UniRef50_Q7UIA6 3 isopropylmalate dehydratase small subunit 0.303995084699 0.5 0.196004915301 +UniRef50_Q8E0C9 Group B oligopeptidase PepB 1.48032366573 0.5 -0.980323665732 +UniRef50_K1WM50 0.0414483806926 0.5 0.458551619307 +UniRef50_UPI00016C089F competence damage inducible protein A 1.4548764292 0.499999999999 -0.954876429195 +UniRef50_K2N567 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 0.799595168719 0.5 -0.299595168719 +UniRef50_V6UH50 0.0183513242827 0.5 0.481648675717 +UniRef50_A1UTH5 Peptidyl tRNA hydrolase 0.97084951994 0.5 -0.47084951994 +UniRef50_J7LD22 1.14690795428 0.499999999999 -0.646907954274 +UniRef50_W1N6M3 1.09708201326 0.5 -0.597082013256 +UniRef50_J7MT36 Phage infection family protein 0.0011494823889 0.5 0.498850517611 +UniRef50_UPI000262CD24 dihydroorotate dehydrogenase 2 0.421461465222 0.5 0.078538534778 +UniRef50_UPI000474A0FC cation transporting ATPase PacS, partial 0.303601335163 0.5 0.196398664837 +UniRef50_P0A9S8 High affinity branched chain amino acid transport ATP binding protein LivG 2.57660623084 0.499999999999 -2.07660623084 +UniRef50_UPI0003B61CAA DNA polymerase III subunit alpha 0.127728626745 0.5 0.372271373255 +UniRef50_UPI000441931B PREDICTED 1.41360363186 0.499999999999 -0.913603631858 +UniRef50_UPI0003EB11F8 hypothetical protein 1.05400348924 0.5 -0.554003489237 +UniRef50_B9JLP2 Dipeptide ABC transporter 9.55465202398 0.499999999986 -9.05465202397 +UniRef50_S5NIJ4 6 pyruvoyl tetrahydropterin synthase family protein 0.00731632977855 0.5 0.492683670221 +UniRef50_UPI00046D9084 hypothetical protein 0.0102597608871 0.5 0.489740239113 +UniRef50_A0A024HLC2 Peptidoglycan synthase FtsI 1.05349321172 0.5 -0.55349321172 +UniRef50_UPI0003EABD05 PREDICTED 0.249149963404 0.5 0.250850036596 +UniRef50_UPI0003F6C60F hypothetical protein 0.439216725893 0.5 0.0607832741067 +UniRef50_Q02127 Dihydroorotate dehydrogenase , mitochondrial 0.356148108578 0.5 0.143851891422 +UniRef50_Q63JM0 Tryptophan synthase alpha chain 0.0391524506329 0.5 0.460847549367 +UniRef50_UPI00037DE56E hypothetical protein 0.0776002551315 0.5 0.422399744868 +UniRef50_P55798 Serine threonine protein phosphatase 1 0.953347313206 0.5 -0.453347313206 +UniRef50_A1AJA0 0.242782831261 0.5 0.257217168739 +UniRef50_V2WBL1 0.00932183445227 0.5 0.490678165548 +UniRef50_D5BNR0 0.195733141334 0.5 0.304266858666 +UniRef50_UPI000464D525 hypothetical protein 1.2251457041 0.5 -0.725145704104 +UniRef50_F7ZCI7 YcjX like protein 1.58418420407 0.5 -1.08418420407 +UniRef50_P77551 Putative Rz endopeptidase from lambdoid prophage Rac 2.21344674866 0.500000000001 -1.71344674866 +UniRef50_P0AFR7 Inner membrane ABC transporter permease protein YcjO 1.90786326993 0.500000000001 -1.40786326993 +UniRef50_A0A011MK47 Sulfate starvation induced protein 7 1.09304559081 0.5 -0.593045590805 +UniRef50_Q8C3X4 Translation factor Guf1, mitochondrial 0.0133932761115 0.5 0.486606723888 +UniRef50_P15034 Xaa Pro aminopeptidase 2.06093440311 0.500000000001 -1.56093440311 +UniRef50_E8SF18 Aldose 1 epimerase 2.6266978499 0.500000000002 -2.12669784991 +UniRef50_A0A017HMF0 7.15161994117 0.5 -6.65161994117 +UniRef50_C4ZAJ9 ABC transporter, substrate binding protein 0.131338505739 0.5 0.368661494261 +UniRef50_Q3KKE6 Methionyl tRNA formyltransferase 0.56993988972 0.5 -0.0699398897199 +UniRef50_J9NYM1 0.0353115905757 0.5 0.464688409424 +UniRef50_C3QRE5 0.193113268646 0.5 0.306886731354 +UniRef50_UPI000454A2DB PREDICTED 0.0351213450893 0.5 0.464878654911 +UniRef50_A4WNL3 Alkane 1 monooxygenase 2.89136193042 0.5 -2.39136193042 +UniRef50_Q2KUS4 Glutamate 1 semialdehyde 2,1 aminomutase 0.12598960003 0.5 0.37401039997 +UniRef50_Q49XA7 Response regulator 1.35466059425 0.5 -0.854660594248 +UniRef50_W0NGN9 1.18113167997 0.5 -0.681131679969 +UniRef50_UPI0001DD0A5B glucose methanol choline oxidoreductase 1.07759450506 0.5 -0.577594505061 +UniRef50_UPI0002DA0766 hypothetical protein 2.92310753918 0.5 -2.42310753918 +UniRef50_UPI000465EE27 transcriptional regulator 1.4524693092 0.5 -0.952469309195 +UniRef50_S9S9T8 4.87459684269 0.5 -4.37459684269 +UniRef50_Q4FQM5 Possible acyl CoA dehydrogenase 0.0158993045454 0.5 0.484100695455 +UniRef50_F0LEQ2 2.35799949075 0.499999999998 -1.85799949075 +UniRef50_UPI0004011469 glutamine synthetase 0.0504068554618 0.5 0.449593144538 +UniRef50_Q2NVF9 Ribonuclease H 1.08117594904 0.5 -0.581175949043 +UniRef50_UPI000360E579 hypothetical protein 0.475354026907 0.5 0.0246459730927 +UniRef50_UPI00034CA4EE hypothetical protein 0.754449805685 0.5 -0.254449805685 +UniRef50_T1Y907 Glycerol uptake operon antiterminator regulatory protein 0.971258758989 0.5 -0.471258758989 +UniRef50_X0W5G8 Marine sediment metagenome DNA, contig 0.0123354497551 0.5 0.487664550245 +UniRef50_P39634 1 pyrroline 5 carboxylate dehydrogenase 0.275894543499 0.5 0.224105456501 +UniRef50_UPI0003D2D096 helicase subunit of the DNA excision repair complex 0.3019396832 0.5 0.1980603168 +UniRef50_UPI0004195273 metallophosphoesterase 0.145434087283 0.5 0.354565912717 +UniRef50_Q3SKN6 Ribosome recycling factor 0.532994704467 0.5 -0.032994704467 +UniRef50_M2SV33 0.0728251452904 0.5 0.42717485471 +UniRef50_Q98HV6 Peptidyl tRNA hydrolase 0.981584407278 0.5 -0.481584407278 +UniRef50_J7L680 1.08715910845 0.5 -0.587159108451 +UniRef50_UPI000475208B hypothetical protein 2.69230800281 0.5 -2.19230800281 +UniRef50_P0A9P2 Dihydrolipoyl dehydrogenase 1.26144716167 0.5 -0.761447161674 +UniRef50_K1V9D8 1.58034768258 0.499999999999 -1.08034768258 +UniRef50_P56262 Putative carboxymethylenebutenolidase 1.8513331757 0.500000000001 -1.3513331757 +UniRef50_P27242 Lipopolysaccharide 1,2 N acetylglucosaminetransferase 4.98729267584 0.499999999998 -4.48729267584 +UniRef50_UPI00036005C8 Cro Cl family transcriptional regulator 4.54979153567 0.499999999997 -4.04979153567 +UniRef50_D6ZGV8 Hydrolase, alpha beta domain protein 0.0143817036095 0.5 0.485618296391 +UniRef50_UPI0003B63445 3 oxoacyl ACP synthase 0.147617542536 0.5 0.352382457464 +UniRef50_UPI0004701497 hypothetical protein 0.436351568201 0.5 0.0636484317991 +UniRef50_UPI00037075A9 hypothetical protein 0.45032807746 0.5 0.0496719225398 +UniRef50_UPI00036443D8 hypothetical protein 0.671019157433 0.5 -0.171019157433 +UniRef50_X0XIH0 Marine sediment metagenome DNA, contig 2.40382439797 0.5 -1.90382439797 +UniRef50_Q2RJX2 Ribonuclease 3 0.131173483833 0.5 0.368826516167 +UniRef50_Q82ZC9 Mannonate dehydratase 0.0211401919148 0.5 0.478859808085 +UniRef50_UPI0003AEBAC4 PREDICTED 6.8433971269 0.500000000002 -6.3433971269 +UniRef50_Q4L8C1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.942610683111 0.5 -0.442610683111 +UniRef50_UPI000380E91C hypothetical protein 0.645286008038 0.5 -0.145286008038 +UniRef50_B9KSB3 0.514022343938 0.5 -0.0140223439375 +UniRef50_Q83KI3 UPF0339 protein YegP 0.129880429096 0.5 0.370119570904 +UniRef50_A6LQL4 Methylated DNA protein cysteine methyltransferase 0.46728158218 0.5 0.0327184178195 +UniRef50_Q5FKB1 Trehalose 6 P hydrolase 1.49078199785 0.5 -0.990781997849 +UniRef50_R1CXE8 0.0875092026006 0.5 0.412490797399 +UniRef50_E6MXC7 Chorismate mutase 0.0114820886745 0.5 0.488517911325 +UniRef50_UPI0001911376 DNA binding transcriptional activator of porin biosynthesis, partial 0.23179274666 0.5 0.26820725334 +UniRef50_D5QD63 Phosphoribosylaminoimidazole carboxylase ATPase subunit 2.457215096 0.5 -1.957215096 +UniRef50_D7CSG3 ABC transporter related protein 0.00631386096128 0.5 0.493686139039 +UniRef50_X7EKT4 0.786182319383 0.5 -0.286182319383 +UniRef50_UPI0000166DA8 COG0583 0.749261645353 0.5 -0.249261645353 +UniRef50_Q834F4 UPF0122 protein EF_1701 0.0285350017006 0.5 0.4714649983 +UniRef50_Q8ZKQ1 Autoinducer 2 binding protein LsrB 1.09339002893 0.5 -0.593390028929 +UniRef50_B7VKH0 4 diphosphocytidyl 2 C methyl D erythritol kinase 1.21676115982 0.5 -0.716761159825 +UniRef50_P69925 Ribonucleoside diphosphate reductase 1 subunit beta 0.453401216616 0.5 0.0465987833845 +UniRef50_Q28NI7 ATP dependent Clp protease proteolytic subunit 0.191830923335 0.5 0.308169076665 +UniRef50_Q9A8A3 1.39448129604 0.5 -0.894481296044 +UniRef50_R1CGH2 0.218262483472 0.5 0.281737516528 +UniRef50_Q2T0L2 UDP N acetylenolpyruvoylglucosamine reductase 0.617716529439 0.5 -0.117716529439 +UniRef50_A0A017HNY4 Paraquat inducible protein B 0.163459942852 0.5 0.336540057148 +UniRef50_P0A8Y6 Sugar phosphatase YidA 0.693794807041 0.5 -0.193794807041 +UniRef50_A5N3K4 CTP synthase 0.0977338844149 0.499999999999 0.402266115586 +UniRef50_C5WIG1 16S rRNA mC 967 methyltransferase 0.460655791119 0.5 0.0393442088805 +UniRef50_P50434 Serine hydroxymethyltransferase 0.386537190059 0.5 0.113462809941 +UniRef50_UPI00037E292F Na translocating NADH quinone reductase subunit E, partial 0.431274255649 0.5 0.0687257443507 +UniRef50_P76104 3.10179747459 0.499999999999 -2.60179747459 +UniRef50_A6LQE3 Spore coat protein CotS 0.241509350349 0.5 0.258490649651 +UniRef50_UPI0000222BCC Hypothetical protein CBG04553 0.00341451098373 0.499999999999 0.496585489017 +UniRef50_P76100 0.804611956605 0.5 -0.304611956605 +UniRef50_Q9HXY5 Skp like protein 0.216117452615 0.5 0.283882547385 +UniRef50_U4Q2X2 1.22777821074 0.5 -0.727778210737 +UniRef50_UPI000455F125 MFS general substrate transporter 0.0652498523285 0.5 0.434750147672 +UniRef50_UPI000255A9B5 polyhydroxyalkanoate depolymerase, intracellular 3.04266506795 0.5 -2.54266506795 +UniRef50_P43801 Anaerobic glycerol 3 phosphate dehydrogenase subunit C 3.33619561056 0.500000000001 -2.83619561056 +UniRef50_B3EFT2 Phosphoribosyl AMP cyclohydrolase 0.10427912619 0.5 0.39572087381 +UniRef50_B9E2W7 0.0517846030632 0.5 0.448215396937 +UniRef50_UPI0004635F62 hypothetical protein, partial 0.92450559839 0.5 -0.42450559839 +UniRef50_D5RMQ9 0.724681581544 0.5 -0.224681581544 +UniRef50_A6UYW1 8 amino 7 oxononanoate synthase 1.07369884877 0.5 -0.573698848774 +UniRef50_D9XAX0 Predicted protein 12.4626197814 0.499999999998 -11.9626197814 +UniRef50_Q67PR9 Guanylate kinase 0.18359435487 0.5 0.316405645129 +UniRef50_B8I4B5 50S ribosomal protein L9 0.229220016285 0.5 0.270779983715 +UniRef50_B9KUZ9 0.366647765445 0.5 0.133352234555 +UniRef50_C5QYC3 0.700279024193 0.5 -0.200279024193 +UniRef50_UPI0003705808 hypothetical protein 0.36213521417 0.5 0.13786478583 +UniRef50_O17953 Dihydrolipoyl dehydrogenase, mitochondrial 0.00539737683957 0.5 0.49460262316 +UniRef50_W9UQ60 Putative assembly protein 0.507894339872 0.5 -0.00789433987231 +UniRef50_A0A024HXW4 0.272444892508 0.5 0.227555107492 +UniRef50_G4LCZ8 ABC transporter 0.489413300383 0.5 0.0105866996174 +UniRef50_A0A023XD37 2.26497325212 0.500000000001 -1.76497325212 +UniRef50_Q67LS2 tRNA specific 2 thiouridylase MnmA 0.0289483943418 0.5 0.471051605658 +UniRef50_A5IUF8 1.05315737007 0.5 -0.553157370074 +UniRef50_B9J8J7 Phosphate ABC transporter, permease protein PstC 5.68341585048 0.500000000001 -5.18341585048 +UniRef50_UPI0003A61BAB glutaredoxin 1.10341915973 0.5 -0.603419159735 +UniRef50_Q5M3M6 NADH nitroreductase, putative 1.61767863096 0.5 -1.11767863096 +UniRef50_D6T1N1 0.0895492544951 0.500000000001 0.410450745504 +UniRef50_P30864 0.241527273867 0.5 0.258472726133 +UniRef50_UPI0003B3E508 ATP dependent DNA helicase RecQ 1.82278968534 0.499999999999 -1.32278968533 +UniRef50_I0C7F9 Transposase 7.45735017886 0.5 -6.95735017886 +UniRef50_UPI00040BBC52 hypothetical protein 0.407641949108 0.5 0.0923580508916 +UniRef50_E8SP74 TnaB 0.0277379290817 0.5 0.472262070919 +UniRef50_UPI00031AADB4 hypothetical protein 0.0830506844352 0.5 0.416949315565 +UniRef50_A6M044 Pyruvate phosphate dikinase, PEP pyruvate binding 0.160573877324 0.5 0.339426122676 +UniRef50_B1I8K9 50S ribosomal protein L24 0.180761386234 0.5 0.319238613766 +UniRef50_A4WU42 HAD superfamily hydrolase, subfamily IA, variant 3 1.47259519158 0.5 -0.972595191582 +UniRef50_A4X0H4 0.775155642059 0.5 -0.275155642059 +UniRef50_UPI0003B31D39 glucose 1 phosphate adenylyltransferase 0.236698085988 0.5 0.263301914012 +UniRef50_G0NKG2 0.523900269204 0.5 -0.0239002692041 +UniRef50_F2RAR1 0.642121882294 0.5 -0.142121882294 +UniRef50_UPI0003F0A9A6 PREDICTED 0.424134941649 0.5 0.0758650583507 +UniRef50_A6LTB9 0.316108818855 0.5 0.183891181145 +UniRef50_W1CWF6 Dipeptide transport system permease protein DppC 0.443222788768 0.5 0.056777211232 +UniRef50_P76027 Oligopeptide transport ATP binding protein OppD 0.582674407263 0.5 -0.0826744072634 +UniRef50_B9E466 0.0873293098908 0.5 0.412670690109 +UniRef50_Q9KA77 Translation initiation factor IF 2 1.52912582631 0.5 -1.02912582631 +UniRef50_D2ZRY0 0.68655218804 0.5 -0.18655218804 +UniRef50_UPI0003AE05F2 PREDICTED 1.19074138107 0.5 -0.690741381075 +UniRef50_UPI0003B3B0BA preprotein translocase subunit TatA 0.71178830007 0.5 -0.21178830007 +UniRef50_W8WPD9 Phage protein 5.37245558476 0.500000000001 -4.87245558476 +UniRef50_A0A037XG38 Glyoxalase 0.243342718862 0.5 0.256657281138 +UniRef50_D4M1S2 RNA splicing ligase RtcB 0.166428901843 0.5 0.333571098157 +UniRef50_UPI0003B5B654 membrane protein 1.28689968075 0.5 -0.786899680751 +UniRef50_UPI00037C520F hypothetical protein 0.272022040251 0.5 0.227977959749 +UniRef50_S3LIB4 0.648674045205 0.5 -0.148674045205 +UniRef50_Q28NL2 0.942187397804 0.5 -0.442187397804 +UniRef50_UPI00046673FB hypothetical protein 0.632721176661 0.5 -0.132721176661 +UniRef50_UPI0004704A21 hypothetical protein 0.0304742883646 0.5 0.469525711635 +UniRef50_Q3K425 Chromosomal replication initiator protein DnaA 0.752680138569 0.5 -0.252680138569 +UniRef50_UPI0003B72310 excinuclease ABC subunit C 0.237222118399 0.5 0.262777881601 +UniRef50_UPI0004703B9E branched chain amino acid ABC transporter permease 0.0203182711378 0.499999999999 0.479681728863 +UniRef50_UPI000471ED7E ABC transporter ATP binding protein 1.00197341358 0.5 -0.501973413582 +UniRef50_UPI000372F99D hypothetical protein, partial 0.438068194079 0.5 0.0619318059209 +UniRef50_A6M1G6 2 aminoethylphosphonate pyruvate transaminase 0.0450101007701 0.5 0.45498989923 +UniRef50_UPI00042812AB hypothetical protein 0.120408756768 0.5 0.379591243232 +UniRef50_X5P2F9 Replication initiation protein 0.880041461275 0.5 -0.380041461275 +UniRef50_X5K1E3 0.60029553149 0.5 -0.10029553149 +UniRef50_Q4L8N9 Multidrug export protein MepA 4.08283348455 0.5 -3.58283348455 +UniRef50_P18200 Phosphatidylglycerophosphatase A 1.85889121473 0.500000000001 -1.35889121473 +UniRef50_W7WR71 0.301500285565 0.5 0.198499714435 +UniRef50_E8PGH1 0.0214356700459 0.5 0.478564329954 +UniRef50_A0A023S033 Peptidase C13 family protein 0.00893328038656 0.5 0.491066719613 +UniRef50_Q95748 NADH dehydrogenase [ubiquinone] iron sulfur protein 3 0.709027005837 0.5 -0.209027005837 +UniRef50_C1E3Y9 Carbamoyl phosphate synthase 0.00717294943261 0.5 0.492827050567 +UniRef50_Q04E66 30S ribosomal protein S4 0.529885816297 0.5 -0.0298858162967 +UniRef50_A6QII8 Phage portal protein 2.91603840351 0.500000000003 -2.41603840352 +UniRef50_UPI00020D9EF8 potassium transporting ATPase subunit B, partial 0.00568672828393 0.500000000001 0.494313271715 +UniRef50_M1MIF0 Ankyrin repeat containing protein 1.69818697601 0.5 -1.19818697601 +UniRef50_A1B6P1 HupH hydrogenase expression protein 1.23391215526 0.499999999999 -0.733912155263 +UniRef50_C7ZU12 Membrane protein 0.74413908651 0.5 -0.24413908651 +UniRef50_R4Q1E8 Fumarate reductase, flavoprotein subunit 3.630056724 0.499999999999 -3.130056724 +UniRef50_UPI00036817A2 hypothetical protein 0.14634062646 0.5 0.35365937354 +UniRef50_UPI00037FABCF hypothetical protein 1.50609584892 0.5 -1.00609584892 +UniRef50_S1HAB5 Peptidoglycan hydrolase flgJ 2.83446065311 0.500000000001 -2.33446065311 +UniRef50_A0LUK5 Holliday junction ATP dependent DNA helicase RuvB 0.000900776421868 0.5 0.499099223578 +UniRef50_J0GC54 0.981252251135 0.5 -0.481252251135 +UniRef50_P22525 Probable L,D transpeptidase YcbB 0.823014886867 0.5 -0.323014886867 +UniRef50_I1AUI6 Ferrichrome ABC transporter periplasmic ferrichrome binding protein FhuD 1 0.990093449238 0.5 -0.490093449238 +UniRef50_P0AF07 Motility protein B 0.928747618608 0.5 -0.428747618608 +UniRef50_R3TZ40 0.690521579105 0.5 -0.190521579105 +UniRef50_UPI0004736CD6 hypothetical protein 1.25366760024 0.5 -0.753667600236 +UniRef50_UPI0000352E5F nucleoside diphosphate kinase 0.896173327727 0.5 -0.396173327727 +UniRef50_F2ABU0 1.68723723158 0.5 -1.18723723158 +UniRef50_B9KX90 ABC polysaccharide export transporter, inner membrane subunit 3.58597014988 0.499999999996 -3.08597014988 +UniRef50_T1HGL7 0.0557990489818 0.5 0.444200951018 +UniRef50_UPI0002491D69 glycine betaine carnitine ABC transporter, ATP binding subunit 4.39571565156 0.499999999998 -3.89571565156 +UniRef50_UPI0004732920 long chain fatty acid CoA ligase, partial 1.75852405286 0.500000000001 -1.25852405286 +UniRef50_UPI0002EB7410 hypothetical protein 7.90461062845 0.500000000003 -7.40461062845 +UniRef50_C5N039 1.0730531858 0.5 -0.573053185796 +UniRef50_UPI0002896C02 L glutamine synthetase 0.126270836695 0.500000000001 0.373729163304 +UniRef50_UPI0003740E86 hypothetical protein 0.400533604749 0.5 0.0994663952506 +UniRef50_D7GDS8 Protein export membrane protein SecF 0.0117543606803 0.5 0.488245639319 +UniRef50_UPI00035114FD PREDICTED 2.29119057252 0.500000000002 -1.79119057252 +UniRef50_Q18CD7 Proline tRNA ligase 2 0.126460760856 0.5 0.373539239144 +UniRef50_Q9L6N7 Threonine efflux protein 0.236948250306 0.5 0.263051749694 +UniRef50_UPI00047C100E hypothetical protein 5.39107687972 0.499999999999 -4.89107687972 +UniRef50_UPI000463C607 hypothetical protein 0.673522975597 0.5 -0.173522975597 +UniRef50_F7ZSI9 Serine protein kinase , prkA protein 0.231474147649 0.5 0.268525852351 +UniRef50_J2PRG5 0.674675270671 0.5 -0.174675270671 +UniRef50_S7Z9P2 1.36970379049 0.499999999999 -0.869703790487 +UniRef50_S9QRL9 Ribulose 5 phosphate 4 epimerase 0.0204064369588 0.5 0.479593563041 +UniRef50_J1E8C3 0.584594027506 0.5 -0.0845940275057 +UniRef50_Q46831 1.09712490991 0.5 -0.59712490991 +UniRef50_Q1R0P6 0.150598242101 0.5 0.349401757899 +UniRef50_UPI000429382E hypothetical protein 0.656056506686 0.5 -0.156056506686 +UniRef50_UPI00036DD217 hypothetical protein 0.268845120835 0.5 0.231154879165 +UniRef50_W4U314 Transglutaminase like enzymes 1.11005611162 0.5 -0.610056111618 +UniRef50_Q03282 Urease subunit gamma 0.91081302287 0.5 -0.41081302287 +UniRef50_P16524 Putative N acetyl LL diaminopimelate aminotransferase 0.00568562952683 0.5 0.494314370473 +UniRef50_UPI00037D91E8 hypothetical protein 0.862664030904 0.5 -0.362664030904 +UniRef50_A6YIY0 Major ampullate spidroin 2 0.145403974557 0.500000000001 0.354596025442 +UniRef50_Q97KZ3 Putative ABC transporter ATP binding protein CA_C0773 0.196389971675 0.5 0.303610028325 +UniRef50_W6QWZ0 Putative acyl CoA thioester hydrolase 0.280608927011 0.5 0.219391072989 +UniRef50_Q6AQS4 Aspartate tRNA ligase 2.27018665013 0.500000000001 -1.77018665013 +UniRef50_UPI00046EC96E hypothetical protein, partial 0.469389729627 0.5 0.0306102703731 +UniRef50_R9SMV0 Siroheme synthase CysG 9.03064320538 0.499999999996 -8.53064320538 +UniRef50_E6MYI6 Esterase family protein 0.19006752823 0.5 0.30993247177 +UniRef50_UPI0003A50B9C hypothetical protein 0.387465811096 0.5 0.112534188904 +UniRef50_A0YEX4 0.192244567003 0.5 0.307755432997 +UniRef50_F5X5K7 TetR family transcriptional regulator 0.875681899095 0.5 -0.375681899095 +UniRef50_UPI000382E61F hypothetical protein, partial 0.189771718943 0.5 0.310228281057 +UniRef50_E0TW67 Quinol oxidase subunit 2 1.64078537674 0.5 -1.14078537674 +UniRef50_T2BF48 Ubiquinol cytochrome c reductase iron sulfur subunit 0.149358312392 0.499999999999 0.350641687608 +UniRef50_X5E1J9 5.00042902353 0.499999999993 -4.50042902352 +UniRef50_Q8DNI6 Phosphotransferase system, trehalose specific IIBC component 3.40792332655 0.500000000001 -2.90792332655 +UniRef50_D4HBJ9 Adenosine deaminase 0.0258186563493 0.5 0.474181343651 +UniRef50_X0VEK8 Marine sediment metagenome DNA, contig 0.389995910294 0.5 0.110004089706 +UniRef50_Q8DWB5 0.54486222837 0.5 -0.0448622283701 +UniRef50_Q034T8 Holo [acyl carrier protein] synthase 0.614171010422 0.5 -0.114171010422 +UniRef50_P18357 Regulatory protein BlaR1 1.7920711959 0.5 -1.2920711959 +UniRef50_UPI00036C8B47 hypothetical protein 3.35390017453 0.499999999998 -2.85390017453 +UniRef50_K4R1X2 0.335657028621 0.5 0.164342971379 +UniRef50_A4EPP0 1.56919325607 0.5 -1.06919325607 +UniRef50_UPI000379B93E quinone oxidoreductase 2.27199334084 0.5 -1.77199334084 +UniRef50_A0A059FRG3 MFS permease 0.305172820836 0.5 0.194827179164 +UniRef50_B6IW38 1.08516878762 0.500000000001 -0.585168787619 +UniRef50_U5MV68 SCP like extracellular 0.0396075577535 0.5 0.460392442247 +UniRef50_UPI00046EA5E6 hypothetical protein, partial 0.658201956432 0.5 -0.158201956432 +UniRef50_S0EYL5 Sugar phosphate isomerases epimerases 0.137605323015 0.5 0.362394676985 +UniRef50_D6U9R9 Export membrane protein SecF 1.86429187222 0.500000000001 -1.36429187222 +UniRef50_UPI0003F09E85 PREDICTED 0.653750490382 0.5 -0.153750490382 +UniRef50_M4X5B0 0.704263857994 0.5 -0.204263857994 +UniRef50_U5MX08 Phosphoglycerate mutase 0.0322619344857 0.5 0.467738065514 +UniRef50_UPI000255BA65 potassium transporter 0.446848938621 0.5 0.0531510613786 +UniRef50_UPI000225F75F hypothetical protein 1.49913734643 0.499999999999 -0.99913734643 +UniRef50_A7A485 0.141922977992 0.5 0.358077022008 +UniRef50_UPI00046F4E68 ribonucleoside diphosphate reductase, partial 1.19111130196 0.5 -0.691111301955 +UniRef50_K0T2W7 0.403986992311 0.5 0.0960130076893 +UniRef50_B0VRG1 0.0511810558366 0.5 0.448818944164 +UniRef50_A6M0V4 Methyl accepting chemotaxis sensory transducer 0.157599021493 0.5 0.342400978507 +UniRef50_UPI0003B6BA2C chemotaxis protein CheY 0.381027524418 0.5 0.118972475582 +UniRef50_R7GI74 Formate C acetyltransferase 0.401508122383 0.5 0.0984918776166 +UniRef50_E7C3S2 Dehydrogenases 0.164309569564 0.5 0.335690430436 +UniRef50_Q3AEU3 Uroporphyrinogen decarboxylase 0.23460529612 0.5 0.26539470388 +UniRef50_A4WPB6 Orotate phosphoribosyltransferase 2.80353418527 0.5 -2.30353418527 +UniRef50_Q5XCE8 Dihydrolipoamide dehydrogenase 0.927433193929 0.5 -0.427433193929 +UniRef50_A9UUK0 Predicted protein 0.0428215578638 0.5 0.457178442136 +UniRef50_A3MIQ6 Phosphoglucosamine mutase 0.0399755319953 0.5 0.460024468005 +UniRef50_Q3J3N9 Chemotaxis protein methyltransferase 2.14007413722 0.5 -1.64007413722 +UniRef50_J9Z0P1 X Pro dipeptidyl peptidase 0.155985062506 0.5 0.344014937495 +UniRef50_Q7NK15 Glr1665 protein 0.0324104041947 0.5 0.467589595805 +UniRef50_D3E1W6 tRNA guanylyltransferase ThgL 4.79441842173 0.500000000001 -4.29441842173 +UniRef50_UPI000366C0D7 hypothetical protein 1.18187532827 0.5 -0.681875328269 +UniRef50_UPI000314B2B3 hypothetical protein 0.447303961409 0.5 0.0526960385909 +UniRef50_B9TDV5 0.32024951049 0.5 0.17975048951 +UniRef50_A0A009F5X4 Pirin family protein 0.136355017185 0.5 0.363644982815 +UniRef50_C4WAX5 0.0453090945217 0.5 0.454690905479 +UniRef50_A6LTQ4 HAD superfamily hydrolase, subfamily IA, variant 3 0.122923738373 0.5 0.377076261627 +UniRef50_UPI0002DD18E5 hypothetical protein 0.352094140701 0.5 0.147905859299 +UniRef50_U1MU63 0.0871835050968 0.5 0.412816494903 +UniRef50_UPI000237F107 hypothetical protein 0.648909619474 0.5 -0.148909619474 +UniRef50_F4DTR0 0.250676206143 0.5 0.249323793857 +UniRef50_E8SJR1 12.8485382577 0.500000000005 -12.3485382577 +UniRef50_B2IJH9 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0778087865393 0.5 0.422191213461 +UniRef50_A1WJX6 TRAP dicarboxylate transporter, DctM subunit 2.38412794078 0.5 -1.88412794078 +UniRef50_UPI0004174C64 hypothetical protein 0.156482761285 0.5 0.343517238715 +UniRef50_M8YJZ4 Protein rarD 0.675790565104 0.5 -0.175790565104 +UniRef50_B1YGD3 Thymidylate kinase 0.316572688674 0.5 0.183427311326 +UniRef50_A6SYG4 ABC type multidrug transport system, ATPase component 1.3930921318 0.5 -0.893092131799 +UniRef50_UPI00036B3D28 hypothetical protein 0.282090115315 0.5 0.217909884685 +UniRef50_UPI000477DA5B hypothetical protein 0.164726246278 0.5 0.335273753722 +UniRef50_UPI0004635914 hypothetical protein, partial 0.320182831502 0.5 0.179817168498 +UniRef50_UPI000360F81F hypothetical protein 0.883514290206 0.5 -0.383514290206 +UniRef50_I1AFI7 0.521480965266 0.5 -0.0214809652659 +UniRef50_B7MFJ5 Phosphopantetheine adenylyltransferase 0.101725578259 0.5 0.398274421741 +UniRef50_UPI00037AFD46 hypothetical protein 2.52268425342 0.5 -2.02268425342 +UniRef50_Q9C0V7 2.80284737064 0.5 -2.30284737064 +UniRef50_D4DV01 0.322729359171 0.5 0.177270640829 +UniRef50_K0NAU6 Aspartate aminotransferase 0.652272332788 0.5 -0.152272332788 +UniRef50_K4NFJ8 0.043100690719 0.5 0.456899309281 +UniRef50_V6QFW8 1.43097328854 0.5 -0.930973288542 +UniRef50_UPI0004642118 tRNA 2 thiouridylase 0.219038068113 0.5 0.280961931887 +UniRef50_D6M1S6 Peptide ABC transporter, permease 3.9801953733 0.499999999998 -3.4801953733 +UniRef50_W8ZM57 7.62784042008 0.499999999998 -7.12784042008 +UniRef50_UPI00037A84FF XRE family transcriptional regulator 0.1826933093 0.5 0.3173066907 +UniRef50_A3PI40 Flagellar motor switch protein FliG 4.78524427495 0.500000000003 -4.28524427495 +UniRef50_UPI000027FA94 50S ribosomal protein L18 0.162398946255 0.5 0.337601053745 +UniRef50_P77357 p aminobenzoyl glutamate hydrolase subunit A 1.96813143636 0.5 -1.46813143636 +UniRef50_A0A011PVU6 2.02291872159 0.499999999998 -1.52291872159 +UniRef50_X4ZFB4 0.594823647809 0.5 -0.0948236478089 +UniRef50_B7V5T6 Cardiolipin synthase A 0.0833708624724 0.5 0.416629137528 +UniRef50_R1FZF8 0.129849343376 0.5 0.370150656624 +UniRef50_A3ATB7 0.304410518257 0.5 0.195589481743 +UniRef50_R4Y9R8 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.79674318918 0.5 -0.29674318918 +UniRef50_P0C0R2 HTH type transcriptional regulator SarS 3.83947647204 0.5 -3.33947647204 +UniRef50_A3M5V1 Porin for benzoate transport 0.0127308044568 0.5 0.487269195543 +UniRef50_UPI000376439F hypothetical protein 8.02928566271 0.500000000006 -7.52928566272 +UniRef50_A8AHA1 Vitamin B12 import ATP binding protein BtuD 6.32054611542 0.500000000003 -5.82054611542 +UniRef50_A7X2A9 Peptide methionine sulfoxide reductase MsrB 39.8297011861 0.499999999996 -39.3297011861 +UniRef50_G0DUV4 0.0617415074538 0.5 0.438258492546 +UniRef50_X5PRY3 0.995974276726 0.5 -0.495974276726 +UniRef50_G5RW92 Putative two component response regulator and GGDEF family protein YeaJ 0.13575178521 0.5 0.36424821479 +UniRef50_P21880 Dihydrolipoyl dehydrogenase 2.77804293573 0.500000000001 -2.27804293573 +UniRef50_E1IJ03 2.04691392223 0.5 -1.54691392223 +UniRef50_UPI0003A0EB32 3 ketoacyl CoA thiolase 0.197079713777 0.5 0.302920286223 +UniRef50_F5N2M6 0.421622422054 0.5 0.0783775779464 +UniRef50_UPI00034B4804 DNA methyltransferase 0.172790427284 0.5 0.327209572716 +UniRef50_W8SRR9 MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr 1.07481850373 0.5 -0.574818503725 +UniRef50_Z2DE82 Biofilm formation protein PelB 0.402673712121 0.5 0.0973262878791 +UniRef50_UPI0004658778 phosphoserine phosphatase 0.213435367868 0.5 0.286564632132 +UniRef50_Q8Y3B0 Peptide deformylase 1 0.0239557592814 0.5 0.476044240719 +UniRef50_UPI0002E0BEDB hypothetical protein 0.0569358441311 0.5 0.443064155869 +UniRef50_M5Q4Y7 0.131943366713 0.5 0.368056633287 +UniRef50_P77425 Allantoate amidohydrolase 1.65710027018 0.5 -1.15710027018 +UniRef50_P54161 5 3 exonuclease 0.00248010685114 0.5 0.497519893149 +UniRef50_B1HWM5 0.00100164731925 0.5 0.498998352681 +UniRef50_Q9PII5 Diaminopimelate decarboxylase 0.0463776681135 0.5 0.453622331886 +UniRef50_H8GZA7 0.00865345282654 0.5 0.491346547174 +UniRef50_Q4QLY5 Glycine tRNA ligase beta subunit 2.52682547971 0.499999999998 -2.0268254797 +UniRef50_P52007 Protein YecM 2.69604897496 0.499999999999 -2.19604897496 +UniRef50_UPI0003ADBF76 PREDICTED 1.99174592278 0.5 -1.49174592278 +UniRef50_C1D104 0.00245311948639 0.5 0.497546880514 +UniRef50_A0PTP8 Aminomethyltransferase 0.312744521735 0.5 0.187255478265 +UniRef50_UPI00037044B2 hypothetical protein 0.532987156069 0.5 -0.0329871560689 +UniRef50_A3QF48 Adenylate kinase 0.150209120623 0.5 0.349790879377 +UniRef50_UPI000465597A phosphate starvation inducible E 0.624616492236 0.5 -0.124616492236 +UniRef50_A4WT80 NADH quinone oxidoreductase subunit N 0.357548221992 0.5 0.142451778008 +UniRef50_I0ELD1 0.0700743559982 0.5 0.429925644002 +UniRef50_UPI000395686C 30S ribosomal protein S15 0.194003219696 0.5 0.305996780304 +UniRef50_Q2KU87 Phosphoheptose isomerase 0.324426615142 0.5 0.175573384858 +UniRef50_B0VBV4 0.0167536839867 0.5 0.483246316013 +UniRef50_Q9RTX1 0.00202601975807 0.5 0.497973980242 +UniRef50_UPI0004648F0C mechanosensitive ion channel protein MscL 2.13417571283 0.499999999999 -1.63417571283 +UniRef50_A5W5N5 Fatty acid cistrans isomerase 1.08150958912 0.5 -0.581509589119 +UniRef50_P48591 Ribonucleoside diphosphate reductase large subunit 0.0148324033336 0.5 0.485167596666 +UniRef50_D2ASS3 0.0153700595749 0.5 0.484629940425 +UniRef50_Q8CR16 1.18953500032 0.5 -0.689535000319 +UniRef50_L0RET5 0.194681455877 0.5 0.305318544123 +UniRef50_A1U1J0 0.378565063899 0.5 0.121434936101 +UniRef50_U3H8E5 0.607865798882 0.5 -0.107865798882 +UniRef50_K7S6P7 DEAD DEAH box helicase 0.00136190554083 0.5 0.498638094459 +UniRef50_Q8D1U5 Protein NrdI 0.162467864809 0.5 0.337532135191 +UniRef50_M9VHZ8 0.134963091873 0.5 0.365036908127 +UniRef50_UPI0002000914 non ribosomal peptide synthetase like protein 0.281234283564 0.5 0.218765716436 +UniRef50_UPI0003B35CAD hypothetical protein 0.284450636671 0.5 0.215549363329 +UniRef50_B4SCX8 Phosphoribosyl AMP cyclohydrolase 0.11208818231 0.5 0.38791181769 +UniRef50_P37685 Aldehyde dehydrogenase B 0.275699248577 0.5 0.224300751423 +UniRef50_A0R979 DNA topoisomerase 3 1.11867096892 0.5 -0.618670968917 +UniRef50_Q8RH06 0.559162609513 0.5 -0.0591626095127 +UniRef50_O34514 o succinylbenzoate synthase 0.0101405511071 0.5 0.489859448893 +UniRef50_UPI000382F305 hypothetical protein, partial 0.790273662698 0.5 -0.290273662698 +UniRef50_P64176 Macrolide export protein MacA 1.97522380986 0.5 -1.47522380986 +UniRef50_Q5ZZU2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.567453122293 0.5 -0.0674531222932 +UniRef50_UPI00036CA565 50S ribosomal protein L4 0.043438815716 0.5 0.456561184284 +UniRef50_B9ADD3 0.398072969637 0.5 0.101927030363 +UniRef50_UPI00037ABBDF hypothetical protein 0.1266236594 0.5 0.3733763406 +UniRef50_A0QSU4 0.0240234469354 0.5 0.475976553064 +UniRef50_UPI000369A760 hypothetical protein, partial 1.62510115159 0.5 -1.12510115159 +UniRef50_W4HGC6 0.224881981551 0.5 0.275118018449 +UniRef50_R5HWX2 Cys Met metabolism PLP dependent enzyme 0.0781077900169 0.5 0.421892209983 +UniRef50_F2JHX4 ABC type transporter, periplasmic subunit 0.0854648998075 0.5 0.414535100192 +UniRef50_Q1J2D3 Permease YjgP YjgQ 0.00429467082731 0.499999999999 0.495705329173 +UniRef50_S9QS42 0.0778774440671 0.5 0.422122555933 +UniRef50_B2V2J6 Sporulation protein YqfD 0.02482072452 0.5 0.47517927548 +UniRef50_Q9RW17 0.0043280627758 0.5 0.495671937224 +UniRef50_UPI0002489F97 hemolysin type calcium binding region, partial 2.27643299036 0.5 -1.77643299036 +UniRef50_UPI00045EBAA8 surfeit 1 0.267835048673 0.5 0.232164951327 +UniRef50_U2Z2J1 0.602325673944 0.5 -0.102325673944 +UniRef50_A0RAR3 0.0733853243064 0.499999999999 0.426614675694 +UniRef50_UPI000367CE0F hypothetical protein, partial 0.449787230024 0.5 0.0502127699756 +UniRef50_G2L3N1 2.8538485348 0.499999999997 -2.35384853479 +UniRef50_Q9ZJL8 ATP dependent Clp protease ATP binding subunit ClpX 0.0113049177712 0.5 0.488695082229 +UniRef50_S9Z4U8 1.41370078202 0.5 -0.913700782019 +UniRef50_A6LUE7 0.446280448341 0.5 0.053719551659 +UniRef50_W8SMD0 Flagellar protein FlaF 0.740567328996 0.5 -0.240567328996 +UniRef50_B9UQU3 PI 2a backbone protein 1.47930404383 0.5 -0.97930404383 +UniRef50_UPI000476AC5C hypothetical protein 0.419660138768 0.5 0.0803398612318 +UniRef50_Q5HQH1 Adapter protein MecA 1.58444871945 0.499999999999 -1.08444871944 +UniRef50_Q8XHL9 Glycine tRNA ligase 0.123085094745 0.499999999999 0.376914905256 +UniRef50_F6FZF8 0.995984783569 0.5 -0.495984783569 +UniRef50_Q30RX5 Chemotaxis response regulator protein glutamate methylesterase 4.4304202293 0.5 -3.9304202293 +UniRef50_Q9HUK1 DNA topoisomerase 4 subunit A 0.0553568976744 0.5 0.444643102325 +UniRef50_Q6F9W4 LPS assembly protein LptD 0.0139535464275 0.5 0.486046453572 +UniRef50_UPI000378F2FD hypothetical protein 0.247093633486 0.5 0.252906366514 +UniRef50_A4WSI7 1.56029797146 0.5 -1.06029797146 +UniRef50_P9WNM4 Bifunctional enzyme CysN CysC 0.031725159899 0.5 0.468274840101 +UniRef50_P73450 Nitrate transport ATP binding protein NrtC 2.91692944783 0.5 -2.41692944783 +UniRef50_V9VLZ2 Cell wall shape determining protein 1.71086842508 0.5 -1.21086842508 +UniRef50_A0A024J9B5 Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit 0.335312387355 0.5 0.164687612645 +UniRef50_N6YLX8 Putative metal dependent RNase 1.12382543933 0.5 -0.623825439328 +UniRef50_G9WG62 ABC transporterpermease protein 2.34250221647 0.500000000003 -1.84250221647 +UniRef50_R5LJ16 Putative phage terminase large subunit 0.695864530976 0.5 -0.195864530976 +UniRef50_B7IFM5 Ribose phosphate pyrophosphokinase 0.866632205948 0.5 -0.366632205948 +UniRef50_B9E484 1.24470800861 0.5 -0.744708008607 +UniRef50_UPI00034A1580 hypothetical protein 0.243290196408 0.5 0.256709803592 +UniRef50_H9KE53 0.706491922536 0.5 -0.206491922536 +UniRef50_P0A9K2 Protein PhoH 2.26778146266 0.5 -1.76778146266 +UniRef50_A4VGY1 Uroporphyrin III C methyltransferase, putative 0.834495242487 0.5 -0.334495242487 +UniRef50_C1C967 N anthranilate isomerase 0.614384658451 0.5 -0.114384658451 +UniRef50_UPI0003B66D36 hypothetical protein, partial 0.353215323448 0.5 0.146784676552 +UniRef50_N8TNI2 0.0972256549026 0.5 0.402774345097 +UniRef50_Q6A9Q4 UDP N acetylmuramoylalanine D glutamate ligase 0.0190512560972 0.5 0.480948743903 +UniRef50_UPI00037E4DB6 hypothetical protein 0.521786380482 0.5 -0.0217863804824 +UniRef50_UPI0003607BC8 hypothetical protein 1.32905142208 0.5 -0.829051422077 +UniRef50_B9KSY4 3.50309299533 0.5 -3.00309299533 +UniRef50_UPI0003B3F32A molecular chaperone DnaK 2.51786211973 0.500000000002 -2.01786211974 +UniRef50_E8SJW5 Membrane protein, putative 2.93057416815 0.5 -2.43057416815 +UniRef50_A9D6B9 0.392505468995 0.5 0.107494531005 +UniRef50_UPI00035DC5BA MULTISPECIES 0.291907776387 0.5 0.208092223613 +UniRef50_UPI0002630664 dTDP 4 dehydrorhamnose reductase 0.435188926131 0.5 0.0648110738693 +UniRef50_E3EZ66 0.695694009562 0.5 -0.195694009562 +UniRef50_UPI000471B278 MFS transporter 0.598228210975 0.5 -0.0982282109753 +UniRef50_A8I9B9 Enoyl [acyl carrier protein] reductase [NADH] 3.66674756493 0.500000000002 -3.16674756493 +UniRef50_B0SHV0 5.2560460537 0.500000000002 -4.7560460537 +UniRef50_A1B214 Cupin 2, conserved barrel domain protein 3.36855616519 0.499999999997 -2.86855616518 +UniRef50_Q83MD7 Vitamin B12 binding protein 1.63380972687 0.499999999999 -1.13380972687 +UniRef50_UPI0003C7EBB2 aminodeoxychorismate synthase 0.375426979516 0.5 0.124573020484 +UniRef50_A1TT41 Non canonical purine NTP pyrophosphatase 3.17349886588 0.5 -2.67349886588 +UniRef50_R4ZCR7 MFS transporter 0.388148861686 0.5 0.111851138314 +UniRef50_F8FR25 2.00134132505 0.5 -1.50134132505 +UniRef50_UPI00037A465E hypothetical protein 0.293146965903 0.5 0.206853034097 +UniRef50_I0C665 RsbU 1.8961835174 0.5 -1.3961835174 +UniRef50_D6B3Y8 FscRII 0.241784045102 0.5 0.258215954898 +UniRef50_UPI000237CE2F malto oligosyltrehalose synthase 0.0107090166666 0.499999999999 0.489290983334 +UniRef50_D9SLZ7 Methyltransferase type 11 0.12148748846 0.5 0.37851251154 +UniRef50_A5IP44 Acyl CoA dehydrogenase like protein 1.41755349115 0.5 -0.917553491148 +UniRef50_G8VEA6 0.0120353981632 0.5 0.487964601837 +UniRef50_B2S968 Shikimate dehydrogenase 0.733228715983 0.5 -0.233228715983 +UniRef50_Q985A5 GTPase Era 2.95978484082 0.500000000002 -2.45978484082 +UniRef50_P0AEP8 Glyoxylate carboligase 0.617920325205 0.5 -0.117920325205 +UniRef50_UPI000362A221 50S ribosomal protein L20 0.172885260409 0.5 0.327114739591 +UniRef50_Q9KDS9 Biotin carboxylase 49.1908540065 0.500000000014 -48.6908540065 +UniRef50_V5XTD8 Periplasmic ribose binding protein 0.181425247603 0.5 0.318574752397 +UniRef50_Y2QRV2 3.02472390706 0.500000000002 -2.52472390707 +UniRef50_Q8CT45 17.9496884838 0.499999999997 -17.4496884838 +UniRef50_A5GF42 Dihydroorotase 0.132497968844 0.5 0.367502031156 +UniRef50_B0REY1 3 isopropylmalate dehydratase small subunit 0.00255076488502 0.5 0.497449235115 +UniRef50_F3H6D0 Acriflavin resistance protein 1.90670214224 0.5 -1.40670214224 +UniRef50_M1N4V8 Signal transduction histidine kinase 0.151837203201 0.5 0.348162796799 +UniRef50_Q2YVN2 3.34722206026 0.499999999999 -2.84722206026 +UniRef50_Q46836 Leader peptidase PppA 1.68140897692 0.5 -1.18140897692 +UniRef50_S9RYR7 Putative signal transduction protein 0.639120615644 0.5 -0.139120615644 +UniRef50_UPI0003706081 hypothetical protein 0.0043317433474 0.5 0.495668256653 +UniRef50_UPI000289FF7D transporter 1.37034784297 0.5 -0.870347842974 +UniRef50_UPI000371D807 hypothetical protein 0.0984165971191 0.499999999999 0.401583402882 +UniRef50_Q73CC7 0.0322325419187 0.5 0.467767458081 +UniRef50_M4MLZ6 1.18823893303 0.499999999999 -0.688238933028 +UniRef50_Q8CM57 Degenerate transposase 4.72355942564 0.500000000001 -4.22355942564 +UniRef50_UPI000363DABC hypothetical protein 2.93239386735 0.5 -2.43239386735 +UniRef50_UPI0003793433 hypothetical protein 2.91370313406 0.500000000002 -2.41370313406 +UniRef50_X6KX92 2.60996928205 0.5 -2.10996928205 +UniRef50_A8LNJ7 1.31958696242 0.499999999999 -0.819586962417 +UniRef50_UPI0003663A62 30S ribosomal protein S17 0.154051876368 0.5 0.345948123632 +UniRef50_Q5HKF0 ATP dependent dethiobiotin synthetase BioD 0.848339283734 0.5 -0.348339283734 +UniRef50_C4RLU4 Feruloyl esterase 1.91376981626 0.5 -1.41376981626 +UniRef50_A6M1U5 Methyl accepting chemotaxis sensory transducer 0.173669067894 0.5 0.326330932106 +UniRef50_Q72KS4 Lon protease 1 0.0293303190328 0.499999999999 0.470669680968 +UniRef50_P37093 Type II secretion system protein E 0.157352800707 0.5 0.342647199293 +UniRef50_Q897T7 Transcriptional regulatory protein 0.299041572233 0.5 0.200958427767 +UniRef50_Q8Y5E4 Diadenylate cyclase 0.910742954763 0.5 -0.410742954763 +UniRef50_V5SSA5 3.28290181022 0.5 -2.78290181022 +UniRef50_Q9KNV7 Tryptophan tRNA ligase 0.713200652928 0.5 -0.213200652928 +UniRef50_A7G9R9 0.940057520003 0.5 -0.440057520003 +UniRef50_P76445 Inner membrane protein YeiU 1.72631755413 0.5 -1.22631755413 +UniRef50_Q03RR1 Bifunctional protein FolD 0.871239472308 0.5 -0.371239472308 +UniRef50_Q8CQA9 Integral membrane protein LmrP 1.96967881147 0.500000000002 -1.46967881147 +UniRef50_A0A022FNV0 LysR family transcriptional regulator 2.02395176154 0.5 -1.52395176154 +UniRef50_F8LV80 IS861, transposase OrfB 3.33893927849 0.5 -2.83893927849 +UniRef50_B9E9D4 Respiratory nitrate reductase delta chain 1.16805614084 0.5 -0.668056140843 +UniRef50_M9VLK0 Endonuclease III 0.0589368404823 0.5 0.441063159518 +UniRef50_Q5WAN2 GntR family transcriptional regulator 0.0805351018364 0.5 0.419464898164 +UniRef50_I0C1S4 Carboxylesterase 1.66762897041 0.500000000001 -1.16762897041 +UniRef50_Q161I1 1.43521296629 0.500000000002 -0.935212966288 +UniRef50_H8GVV6 Glutathione regulated potassium efflux system protein KefB, putative 0.00363017802925 0.5 0.496369821971 +UniRef50_C7ZXI9 Mn2 and Fe2 transporter 2.67045757636 0.499999999998 -2.17045757636 +UniRef50_Q9RUS5 Major facilitator family protein 0.00320791955371 0.5 0.496792080446 +UniRef50_B7JGF8 Enterotoxin 0.0112212057773 0.5 0.488778794223 +UniRef50_D5T2X9 1.42466231633 0.5 -0.924662316331 +UniRef50_UPI0004413622 P loop containing nucleoside triphosphate hydrolase protein 1.44181439425 0.5 -0.941814394252 +UniRef50_Q7CQY4 Chitoporin 3.43734386539 0.499999999996 -2.93734386539 +UniRef50_O31645 PTS system mannose specific EIIBCA component 1.20302255664 0.5 -0.703022556637 +UniRef50_M2PRH7 DNA topology modulation protein 0.0219238457366 0.5 0.478076154264 +UniRef50_UPI0004680367 hemolysin 0.287780097319 0.5 0.212219902681 +UniRef50_M2JNM4 Cellobiose phosphotransferase system IIC component 0.0427945147106 0.5 0.457205485289 +UniRef50_A6LW23 L asparaginase, type II 0.709361811091 0.5 -0.209361811091 +UniRef50_Q2YUT2 3.33277299529 0.5 -2.83277299529 +UniRef50_UPI0003697307 ATP dependent Clp protease adaptor protein ClpS 0.674873069396 0.5 -0.174873069396 +UniRef50_D3FAE3 Plectin 0.518594930705 0.5 -0.0185949307054 +UniRef50_UPI000466A47B peptide ABC transporter ATP binding protein 0.132616646065 0.5 0.367383353935 +UniRef50_UPI00047933C3 peptide permease BMEII0860 0.140199085132 0.5 0.359800914868 +UniRef50_A1WIM3 Urease subunit alpha 0.304141294182 0.5 0.195858705818 +UniRef50_UPI000476A297 nitrogen regulatory protein 0.350429407671 0.5 0.149570592329 +UniRef50_D8JEK3 0.00952068020237 0.5 0.490479319797 +UniRef50_P31133 Putrescine binding periplasmic protein 2.91670798008 0.499999999997 -2.41670798008 +UniRef50_V8G5F1 Cell wall binding protein 0.278932375216 0.5 0.221067624784 +UniRef50_UPI0003B2E824 4 alpha glucanotransferase 0.00906445781811 0.5 0.490935542182 +UniRef50_B2TBH4 Major facilitator superfamily MFS_1 0.398277801024 0.5 0.101722198976 +UniRef50_M1E1G1 LOV protein 0.716922656468 0.5 -0.216922656468 +UniRef50_UPI00047D2208 hypothetical protein 2.01384820209 0.5 -1.51384820209 +UniRef50_U4PPL6 3.30597383426 0.499999999997 -2.80597383426 +UniRef50_B0V7I3 0.102210812727 0.5 0.397789187273 +UniRef50_UPI0003616A07 MULTISPECIES 1.52573021947 0.5 -1.02573021947 +UniRef50_P52612 Flagellum specific ATP synthase 3.72603947746 0.499999999998 -3.22603947746 +UniRef50_Q7WQL9 Glutamate 5 kinase 0.0159355703517 0.5 0.484064429648 +UniRef50_I7BYL0 0.00451142400963 0.5 0.49548857599 +UniRef50_A7HIP1 LigA 0.425045619908 0.5 0.074954380092 +UniRef50_E2XUR6 Amino acid ABC transporter, permease protein 0.0776358606378 0.5 0.422364139362 +UniRef50_Q9RRW1 Ribonucleoside diphosphate reductase 0.00316854043611 0.5 0.496831459564 +UniRef50_UPI0003671810 hypothetical protein 0.438223608334 0.5 0.0617763916662 +UniRef50_M1LPJ1 Transcriptional regulator, RpiR family 0.384453184043 0.5 0.115546815957 +UniRef50_Q2RV04 GTPase Obg 3.38981657372 0.5 -2.88981657372 +UniRef50_UPI0002887BFA HAD superfamily hydrolase 0.181937115886 0.5 0.318062884113 +UniRef50_Q8FCW0 Phosphoglycolate phosphatase 0.611197513729 0.5 -0.111197513729 +UniRef50_B9KNX2 Transcriptional regulator, ArsR family 1.27471017809 0.5 -0.774710178095 +UniRef50_UPI00047A420C hypothetical protein 0.71631269469 0.5 -0.21631269469 +UniRef50_B1KX53 Putative ribosome biogenesis GTPase RsgA 0.056444531346 0.500000000001 0.443555468653 +UniRef50_UPI00035FFD13 hypothetical protein 1.97588492654 0.500000000002 -1.47588492655 +UniRef50_D6SI32 12.0117684559 0.500000000003 -11.5117684559 +UniRef50_R7PWI6 7.42493700975 0.500000000003 -6.92493700975 +UniRef50_UPI00040A8670 beta hexosaminidase 0.116516997789 0.5 0.383483002211 +UniRef50_A3ZZL8 0.116693695528 0.5 0.383306304472 +UniRef50_UPI0004764961 molecular chaperone GroEL 1.61344638935 0.5 -1.11344638935 +UniRef50_Q88ND5 Alginate biosynthesis protein AlgA 0.433523839178 0.5 0.0664761608216 +UniRef50_UPI000472B134 3 oxoacyl ACP reductase 0.414210189606 0.5 0.0857898103942 +UniRef50_D7FE80 Sialic acid binding adhesin SabA 0.0135651817391 0.5 0.486434818261 +UniRef50_P07102 Periplasmic AppA protein 4.39155270244 0.5 -3.89155270244 +UniRef50_K9BV07 0.00906785929787 0.500000000001 0.490932140702 +UniRef50_A6TE36 Undecaprenyl diphosphatase 158.923604394 0.499999999929 -158.423604394 +UniRef50_UPI000288E151 ABC transporter 0.161375915568 0.5 0.338624084432 +UniRef50_R8AGJ1 23.4973667893 0.499999999992 -22.9973667893 +UniRef50_Q9HQU4 Inosine 5 monophosphate dehydrogenase 1.54158126213 0.499999999999 -1.04158126212 +UniRef50_UPI0001758483 PREDICTED 0.486082559856 0.5 0.013917440144 +UniRef50_P75843 2.50525429552 0.500000000001 -2.00525429552 +UniRef50_UPI00047BEFD1 nucleotidyl transferase 2.98897249285 0.500000000002 -2.48897249285 +UniRef50_H2HGS8 Phage associated protein 0.382120801896 0.5 0.117879198104 +UniRef50_M9SEQ2 0.446191308028 0.5 0.0538086919721 +UniRef50_P75849 0.0710675506815 0.5 0.428932449319 +UniRef50_M4X4D0 ATP dependent RNA helicase RhlE 0.192436811106 0.5 0.307563188895 +UniRef50_K9SGS9 ATPase associated with various cellular activities AAA_5 0.118768731692 0.5 0.381231268308 +UniRef50_Q83BB6 RNA polymerase sigma factor RpoD 3.03238905776 0.5 -2.53238905776 +UniRef50_H7CRL6 0.105614570313 0.5 0.394385429687 +UniRef50_H7E757 RHS repeat associated core domain protein 1.94397922473 0.5 -1.44397922473 +UniRef50_B5ZPH5 3.84732442838 0.5 -3.34732442838 +UniRef50_W5XAZ0 OmpR family two component response regulator 0.245305990138 0.5 0.254694009862 +UniRef50_J0WVH5 0.798454591097 0.5 -0.298454591097 +UniRef50_C0DVM5 0.823164808771 0.5 -0.323164808771 +UniRef50_P37545 2.07797554823 0.5 -1.57797554823 +UniRef50_UPI00040973E2 hypothetical protein 0.5358805504 0.5 -0.0358805504005 +UniRef50_Q161C9 0.458706121999 0.5 0.0412938780015 +UniRef50_S7VZD9 Excinuclease ABC 0.0296181884 0.5 0.4703818116 +UniRef50_G8SMI0 1.91230107472 0.499999999999 -1.41230107472 +UniRef50_A0QP90 Glucose 6 phosphate 1 dehydrogenase 1.65724698387 0.5 -1.15724698387 +UniRef50_Q5HJ36 1.49683682652 0.500000000001 -0.996836826524 +UniRef50_T0V0U2 Cell division initiation protein DivIVA 1.60197478708 0.5 -1.10197478708 +UniRef50_UPI000289A6DA transposase 0.201095092035 0.5 0.298904907965 +UniRef50_C5CWI4 ABC transporter related 0.117703104428 0.5 0.382296895572 +UniRef50_A7GTX6 Pseudouridine synthase 2.08102668405 0.5 -1.58102668405 +UniRef50_Q89AP7 Acetolactate synthase large subunit 0.0457841850818 0.499999999999 0.454215814919 +UniRef50_UPI0003EE9416 peptide ABC transporter permease, partial 0.0557120266591 0.5 0.444287973341 +UniRef50_L7WXH7 1.31695934773 0.5 -0.816959347733 +UniRef50_Q2T6U3 Acetyltransferase, GNAT family 0.372509620192 0.5 0.127490379808 +UniRef50_F9YYI3 Myo inositol 2 dehydrogenase 0.0149302461667 0.5 0.485069753833 +UniRef50_UPI0001FFEA7A ferredoxin 0.062924806453 0.5 0.437075193547 +UniRef50_A5UJI4 Predicted type I restriction modification enzyme, subunit S 0.16697205691 0.5 0.33302794309 +UniRef50_Q2RN88 Shikimate dehydrogenase 0.595157548494 0.5 -0.0951575484941 +UniRef50_UPI00017449C1 permease YjgP YjgQ family protein 0.319560307807 0.5 0.180439692193 +UniRef50_UPI0003B4DD27 hypothetical protein 0.373301822144 0.5 0.126698177856 +UniRef50_V7Z055 0.434003118324 0.5 0.0659968816756 +UniRef50_E6S2L0 Transporter, major facilitator family protein 0.0177732335367 0.5 0.482226766463 +UniRef50_UPI00046F82BE thioredoxin reductase, partial 0.355017713917 0.5 0.144982286083 +UniRef50_R5BF46 ATPase 0.000787697863375 0.5 0.499212302137 +UniRef50_P0A9L8 Pyrroline 5 carboxylate reductase 0.358982505805 0.5 0.141017494195 +UniRef50_A4XQZ9 2.03618037843 0.500000000001 -1.53618037844 +UniRef50_M0HKI8 0.801639813766 0.5 -0.301639813766 +UniRef50_A9VYY8 3.94862103049 0.500000000003 -3.4486210305 +UniRef50_UPI0003490FD2 hypothetical protein 0.901168440596 0.5 -0.401168440596 +UniRef50_F3LQG5 0.684829824099 0.5 -0.184829824099 +UniRef50_A5CX20 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.915313695377 0.5 -0.415313695377 +UniRef50_UPI0002194206 amino acid transporter, partial 0.279309100113 0.5 0.220690899887 +UniRef50_M9REM3 0.00649362967323 0.5 0.493506370327 +UniRef50_UPI00037A4658 hypothetical protein 0.261269623208 0.5 0.238730376792 +UniRef50_Q5HM80 7.18741700595 0.49999999999 -6.68741700594 +UniRef50_UPI000464EDC8 hypothetical protein 3.07670085695 0.500000000001 -2.57670085695 +UniRef50_UPI000479E693 ribonuclease 0.879967561057 0.5 -0.379967561057 +UniRef50_UPI00037CFC12 hypothetical protein 0.716621129047 0.5 -0.216621129047 +UniRef50_UPI00037AC159 hypothetical protein 0.84585304925 0.5 -0.34585304925 +UniRef50_D3QFC7 0.181810660903 0.5 0.318189339097 +UniRef50_Q49YE7 5.16590913334 0.500000000002 -4.66590913335 +UniRef50_UPI000441CD41 PREDICTED 0.467768445123 0.5 0.0322315548772 +UniRef50_W7VM91 Transcriptional regulator, LuxR family 0.314802163734 0.5 0.185197836266 +UniRef50_UPI0003B30FE2 DNA mismatch repair protein MutS 0.0187379605387 0.5 0.481262039461 +UniRef50_Q3J221 Putative head portal protein 1.79411487002 0.5 -1.29411487002 +UniRef50_K9ZYD1 NADH dehydrogenase, FAD containing subunit 0.00128376289791 0.5 0.498716237102 +UniRef50_I0DPX6 0.15900612207 0.5 0.34099387793 +UniRef50_E2PCU1 FimV domain protein 0.0187450946041 0.5 0.481254905396 +UniRef50_X1C061 Marine sediment metagenome DNA, contig 0.241204795646 0.5 0.258795204354 +UniRef50_S4XSY7 0.0341179033739 0.5 0.465882096626 +UniRef50_UPI00035E4DB7 hypothetical protein 1.88347791767 0.5 -1.38347791767 +UniRef50_P0C0G1 Dihydropteroate synthase 0.308527973086 0.5 0.191472026914 +UniRef50_T8S6T3 1.47447542453 0.5 -0.974475424526 +UniRef50_Q8G3N6 Inosine 5 monophosphate dehydrogenase 0.0130418050436 0.5 0.486958194956 +UniRef50_E4R955 Peptidase C26 0.437260667691 0.5 0.0627393323091 +UniRef50_C5BCZ7 Adenine phosphoribosyltransferase 0.351363925267 0.5 0.148636074733 +UniRef50_Q9HTU7 UPF0178 protein PA5247 0.228780155915 0.5 0.271219844085 +UniRef50_P50466 Aerotaxis receptor 3.2537105521 0.500000000001 -2.7537105521 +UniRef50_Q55F83 Enolase B 0.0542312601352 0.5 0.445768739865 +UniRef50_P42064 Oligopeptide transport ATP binding protein AppD 0.000371908306905 0.5 0.499628091693 +UniRef50_P44681 Ribosome binding ATPase YchF 1.00043261196 0.5 -0.500432611961 +UniRef50_UPI000468F00D PEP synthetase regulatory protein 0.68998352262 0.5 -0.18998352262 +UniRef50_UPI00046E1553 PREDICTED 0.383480842118 0.5 0.116519157882 +UniRef50_B3W746 PTS system, IID component 0.979613472648 0.5 -0.479613472648 +UniRef50_Q92HL2 Transcription termination factor Rho 0.98034678534 0.5 -0.48034678534 +UniRef50_UPI0002DB231A peptide ABC transporter ATP binding protein 0.25738374144 0.5 0.24261625856 +UniRef50_E8Q9V7 ABC transporter permease 0.220866769058 0.5 0.279133230942 +UniRef50_O88958 Glucosamine 6 phosphate isomerase 1 0.542884022702 0.5 -0.0428840227022 +UniRef50_F2JYD9 Phenylalanine racemase 0.0251005676057 0.5 0.474899432394 +UniRef50_P77324 Putative xanthine dehydrogenase YagS FAD binding subunit 0.0728293789095 0.5 0.427170621091 +UniRef50_UPI0001744E5F methionine aminopeptidase 0.716188740471 0.5 -0.216188740471 +UniRef50_Q4ZNV9 Histidinol dehydrogenase 0.0469809907951 0.5 0.453019009205 +UniRef50_S4XFR3 0.0250128572036 0.5 0.474987142796 +UniRef50_A1V623 1.11864990166 0.5 -0.618649901661 +UniRef50_D4HFA9 0.0196555237615 0.5 0.480344476239 +UniRef50_U5L575 Oxidoreductase 1.25228397071 0.5 -0.752283970713 +UniRef50_D6AVU9 Ribosome associated heat shock protein 0.26032690573 0.5 0.23967309427 +UniRef50_O80448 Pyridoxal biosynthesis protein PDX1.1 2.07406161705 0.5 -1.57406161705 +UniRef50_Q58952 tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase 4.32133891696 0.500000000001 -3.82133891696 +UniRef50_G0HAL8 Glycerol dehydrogenase 1.83126144132 0.5 -1.33126144132 +UniRef50_A5CSL0 LexA repressor 2.29142366114 0.5 -1.79142366114 +UniRef50_T8JJU2 ATP dependent helicase 3.80925921211 0.499999999997 -3.30925921211 +UniRef50_A5UM96 5.88833831802 0.499999999991 -5.38833831801 +UniRef50_P0A533 Cobyric acid synthase 0.00902529101012 0.5 0.49097470899 +UniRef50_I1F524 0.0139948969775 0.5 0.486005103023 +UniRef50_UPI000363B4C5 hypothetical protein 0.138303025598 0.5 0.361696974401 +UniRef50_Q3IVV1 Periplasmic sensor signal transduction histidine kinase 16.650319955 0.499999999997 -16.150319955 +UniRef50_S5YP26 Adenylate cyclase 0.267626444224 0.5 0.232373555776 +UniRef50_Q6FF55 Putative Holliday junction resolvase 0.00153798308915 0.5 0.498462016911 +UniRef50_Q9RQQ0 Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR 2.21788017336 0.5 -1.71788017336 +UniRef50_H4NAZ8 2.33239195712 0.5 -1.83239195712 +UniRef50_P27375 Heat shock protein C 0.612595412643 0.5 -0.112595412643 +UniRef50_K5NMC7 Chaperone usher secretion system usher protein 0.0442247502255 0.5 0.455775249775 +UniRef50_UPI00037905B5 hypothetical protein 0.027052770651 0.5 0.472947229349 +UniRef50_G8VR36 Anchored repeat type ABC transporter, permease subunit 0.0351904224951 0.5 0.464809577505 +UniRef50_D2N5X4 Transcription factor 1.33175839685 0.5 -0.831758396854 +UniRef50_P77174 0.531387911548 0.5 -0.0313879115482 +UniRef50_A9B437 DNA directed RNA polymerase subunit alpha 1.03149851737 0.5 -0.531498517375 +UniRef50_P77171 4.02692694057 0.500000000004 -3.52692694057 +UniRef50_U8XP57 Chemotactic transducer PctC 0.423108565258 0.5 0.076891434742 +UniRef50_P57874 Ferrochelatase 1.13047992247 0.5 -0.630479922471 +UniRef50_E1I5H5 0.376034327723 0.5 0.123965672277 +UniRef50_UPI000376F990 hypothetical protein 0.0908808449538 0.5 0.409119155046 +UniRef50_R7GG89 Single strand binding protein Primosomal replication protein n 0.171032824237 0.499999999999 0.328967175763 +UniRef50_Q5HLD6 0.315733238255 0.5 0.184266761745 +UniRef50_P61544 UPF0316 protein SA1727 4.24928917997 0.499999999994 -3.74928917997 +UniRef50_A6Q235 3 dehydroquinate dehydratase 1.9009253476 0.5 -1.4009253476 +UniRef50_UPI00047D7B73 hypothetical protein 0.575058978661 0.5 -0.0750589786608 +UniRef50_Q03KQ7 tRNA and rRNA cytosine C5 methylase 0.50129533029 0.5 -0.00129533028963 +UniRef50_UPI00020D99AC biotin biosynthesis protein BioC 0.0681463320993 0.5 0.431853667901 +UniRef50_D3SFX6 1.93516882687 0.5 -1.43516882687 +UniRef50_S6CA35 Truncated bacteriocin ABC transporter ATP binding and permease components 2.3704704114 0.499999999999 -1.8704704114 +UniRef50_A0A009WPV3 TonB dependent receptor family protein 0.0258057522385 0.5 0.474194247762 +UniRef50_P77433 0.794411500728 0.5 -0.294411500728 +UniRef50_Q8CQR2 2.57434837931 0.5 -2.07434837931 +UniRef50_G9YY14 0.0302318338632 0.5 0.469768166137 +UniRef50_UPI00035DA196 hypothetical protein 0.159665410654 0.5 0.340334589346 +UniRef50_B7V896 0.0785397433653 0.5 0.421460256635 +UniRef50_P09622 Dihydrolipoyl dehydrogenase, mitochondrial 0.159666553974 0.5 0.340333446026 +UniRef50_S5XWD9 3.27274968302 0.499999999999 -2.77274968302 +UniRef50_P0AA83 Cytosine permease 3.5719381864 0.500000000002 -3.0719381864 +UniRef50_UPI000474B8BB hypothetical protein 0.886683861794 0.5 -0.386683861794 +UniRef50_UPI000237A428 CBS domain containing protein 0.0183204449414 0.5 0.481679555058 +UniRef50_UPI0003B401D2 phosphoglycerate kinase 0.503239238961 0.5 -0.00323923896127 +UniRef50_D4H9I9 RHS repeat associated core domain protein 0.00797871585275 0.5 0.492021284147 +UniRef50_Q893R0 Thiamine phosphate synthase 4.60268995266 0.5 -4.10268995266 +UniRef50_Q9I484 Amino acid ABC transporter periplasmic binding protein 1.42134095013 0.5 -0.921340950129 +UniRef50_P33634 1.7498344205 0.499999999999 -1.24983442049 +UniRef50_A1UT83 50S ribosomal protein L13 3.11459741995 0.499999999995 -2.61459741995 +UniRef50_J9YSG0 Phage infection protein 2.87518819371 0.500000000002 -2.37518819371 +UniRef50_UPI000465431D hypothetical protein 2.05964195145 0.5 -1.55964195145 +UniRef50_F6G2W0 Threonine synthase protein 0.453038334393 0.5 0.0469616656075 +UniRef50_B7N5W6 D serine dehydratase 0.357815959412 0.5 0.142184040588 +UniRef50_I6XTA1 UPF0225 protein HMPREF9154_3085 0.263672273744 0.5 0.236327726256 +UniRef50_UPI00046AD586 hypothetical protein 0.652214728913 0.5 -0.152214728913 +UniRef50_F8KSY3 ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 0.00599086746611 0.5 0.494009132534 +UniRef50_I6RX31 0.394223931129 0.5 0.105776068871 +UniRef50_V4R4A7 ThiF domain containing protein 0.351816165269 0.5 0.148183834731 +UniRef50_B7H056 Outer membrane protein oprM 0.0318896782117 0.5 0.468110321788 +UniRef50_A8AL69 0.720125611003 0.5 -0.220125611003 +UniRef50_G4QBM5 0.256194526283 0.5 0.243805473717 +UniRef50_Q3IV70 Polysaccharide export protein 1.86812729744 0.500000000002 -1.36812729744 +UniRef50_E8ZN21 Histone acetyltransferase HPA2 0.0573301734384 0.500000000001 0.442669826561 +UniRef50_L5IBW3 Tat pathway signal sequence 4.1613429296 0.500000000002 -3.6613429296 +UniRef50_U3SVL6 0.683271880789 0.5 -0.183271880789 +UniRef50_UPI00042907AA hypothetical protein 0.292120425018 0.5 0.207879574982 +UniRef50_A9E033 0.266116126945 0.5 0.233883873055 +UniRef50_Q47N93 Tyrosine tRNA ligase 0.0192013279294 0.499999999999 0.480798672072 +UniRef50_K0CJC2 0.184289846857 0.5 0.315710153143 +UniRef50_V5AJL1 Competence protein ComM 0.0921070347387 0.5 0.407892965261 +UniRef50_B8DJK7 Elongation factor P 0.0475475137846 0.500000000001 0.452452486214 +UniRef50_A1V9U1 Adenylosuccinate synthetase 0.00862821511306 0.5 0.491371784887 +UniRef50_A6M360 Aminotransferase class III 0.184005025742 0.5 0.315994974258 +UniRef50_Q55848 Ribose phosphate pyrophosphokinase 1.64789133401 0.499999999999 -1.14789133401 +UniRef50_UPI00046EC013 recombinase, partial 1.86921837021 0.5 -1.36921837021 +UniRef50_UPI000402DE31 hypothetical protein 0.390009121537 0.5 0.109990878463 +UniRef50_Q97GM6 Endonuclease MutS2 0.277402312837 0.5 0.222597687163 +UniRef50_A6LT80 Response regulator receiver protein 0.0194556323448 0.5 0.480544367655 +UniRef50_P0ABI6 Magnesium transport protein CorA 0.601816791791 0.5 -0.101816791791 +UniRef50_P22033 Methylmalonyl CoA mutase, mitochondrial 0.0238913075304 0.5 0.47610869247 +UniRef50_A5WFD7 Crossover junction endodeoxyribonuclease RuvC 0.414972101721 0.5 0.0850278982785 +UniRef50_H5JT53 Gram negative pili assembly chaperone, N terminal domain protein 0.358590574418 0.5 0.141409425582 +UniRef50_N8X4K5 0.119530427327 0.5 0.380469572673 +UniRef50_A0LCH8 Zinc import ATP binding protein ZnuC 0.788248784735 0.5 -0.288248784735 +UniRef50_G7W6N5 NADH 0.689336278161 0.5 -0.189336278161 +UniRef50_P57388 2 oxoglutarate dehydrogenase E1 component 0.226791513761 0.5 0.273208486239 +UniRef50_UPI0003755588 hypothetical protein 0.167302722236 0.5 0.332697277764 +UniRef50_A9IIR2 0.190716868143 0.5 0.309283131857 +UniRef50_A3PG41 1.20011997525 0.5 -0.700119975245 +UniRef50_P22675 Argininosuccinate lyase 0.633255209047 0.5 -0.133255209047 +UniRef50_E6MV22 Factor H binding protein 0.143042349622 0.5 0.356957650378 +UniRef50_UPI00038330C2 PREDICTED 1.23837395433 0.5 -0.738373954329 +UniRef50_I0C482 Hydrolase 5.61623738456 0.499999999998 -5.11623738456 +UniRef50_UPI0003820085 hypothetical protein 0.288942451214 0.5 0.211057548786 +UniRef50_A4VR27 1.3679247769 0.5 -0.867924776902 +UniRef50_UPI000367811C hypothetical protein, partial 0.599518247779 0.5 -0.0995182477794 +UniRef50_A8I0S8 9.20606893137 0.499999999997 -8.70606893137 +UniRef50_A1B9C6 Phospholipid glycerol acyltransferase 1.81595001171 0.5 -1.31595001171 +UniRef50_P17725 Citrate lyase subunit beta 0.91455879439 0.5 -0.41455879439 +UniRef50_P15030 Fe dicitrate transport system permease protein FecC 2.37324302174 0.499999999999 -1.87324302174 +UniRef50_UPI0003B749DD NADH ubiquinone oxidoreductase subunit 6 3.01982375444 0.5 -2.51982375444 +UniRef50_UPI00046ADE6A hypothetical protein 0.386540133945 0.5 0.113459866055 +UniRef50_UPI000366A0BF aminotransferase 0.255517175065 0.5 0.244482824935 +UniRef50_UPI0004781051 peptide ABC transporter permease 0.131211109091 0.5 0.368788890909 +UniRef50_UPI0003B6312D NADH ubiquinone oxidoreductase subunit 6 0.406019270414 0.5 0.093980729586 +UniRef50_P97056 Protein RnfH 2.54553801273 0.5 -2.04553801273 +UniRef50_Q3K022 GTPase Era 0.194284941243 0.5 0.305715058757 +UniRef50_D8TNI9 0.0952013498826 0.5 0.404798650118 +UniRef50_A4T3P6 0.363286172751 0.5 0.136713827249 +UniRef50_E3A4U6 1.10844082476 0.5 -0.608440824759 +UniRef50_A6SYV8 Glucosyl transferase 0.326415561935 0.5 0.173584438065 +UniRef50_T1BIJ5 Appr 1 p processing domain containing protein 0.0747185783041 0.5 0.425281421696 +UniRef50_UPI000360BB74 hypothetical protein 0.586771853963 0.5 -0.0867718539625 +UniRef50_UPI0004785618 peptidase M20 0.0295108032727 0.5 0.470489196727 +UniRef50_V5ST79 1.93321696569 0.5 -1.43321696569 +UniRef50_P39263 1.25370804581 0.5 -0.75370804581 +UniRef50_UPI0002492B0A uroporphyrinogen III C methyltransferase 0.956407921918 0.5 -0.456407921918 +UniRef50_A7X534 Multidrug resistance efflux pump SepA 2.40792600496 0.5 -1.90792600496 +UniRef50_P39267 1.54686515643 0.5 -1.04686515643 +UniRef50_W8S776 0.320909772196 0.5 0.179090227804 +UniRef50_Q895P7 Phosphoprotein phosphatase 2C 0.109485434506 0.5 0.390514565494 +UniRef50_UPI00036925F6 hypothetical protein 1.94484716536 0.5 -1.44484716536 +UniRef50_UPI0004700B89 hypothetical protein 0.109284860109 0.5 0.390715139891 +UniRef50_UPI0003662012 hypothetical protein 0.134656183651 0.5 0.365343816349 +UniRef50_F2TBG9 7.44970437516 0.499999999995 -6.94970437515 +UniRef50_UPI0003111719 FAD containing monooxygenase EthA 0.00416761460824 0.5 0.495832385391 +UniRef50_Q3JRY4 0.161670746347 0.5 0.338329253653 +UniRef50_Q8DW61 2.15739594952 0.499999999998 -1.65739594952 +UniRef50_Q8DW63 27.7316358071 0.499999999998 -27.2316358071 +UniRef50_Q8DW64 5.69596110361 0.499999999998 -5.1959611036 +UniRef50_Q8DW66 1.73205163897 0.5 -1.23205163897 +UniRef50_Q8DW69 0.14527830928 0.5 0.35472169072 +UniRef50_UPI00040DB40F hypothetical protein 0.846582703853 0.5 -0.346582703853 +UniRef50_A0A011NIG9 Stalked cell differentiation controlling protein 0.320666807261 0.5 0.179333192739 +UniRef50_W1FDX5 Phenylacetate CoA oxygenase, PaaJ subunit 0.36163185126 0.5 0.13836814874 +UniRef50_UPI000468F800 3 methylcrotonyl CoA carboxylase 0.0959643470054 0.5 0.404035652995 +UniRef50_UPI00046E9B56 MULTISPECIES 0.244766526373 0.5 0.255233473627 +UniRef50_Q5HQU2 Lipoprotein, putative 0.813323769401 0.5 -0.313323769401 +UniRef50_F0MM24 Site specific recombinase 0.0603076786659 0.5 0.439692321334 +UniRef50_Q9A7X1 Sulfate thiosulfate import ATP binding protein CysA 0.976991355558 0.5 -0.476991355558 +UniRef50_P00363 Fumarate reductase flavoprotein subunit 0.523205397946 0.5 -0.0232053979461 +UniRef50_B8FCL2 Arginine tRNA ligase 0.250616072473 0.5 0.249383927527 +UniRef50_W1JJ37 0.29566103364 0.5 0.20433896636 +UniRef50_Q63SZ9 50S ribosomal protein L3 glutamine methyltransferase 0.197458674678 0.5 0.302541325322 +UniRef50_Q9RT16 0.00776614647013 0.5 0.49223385353 +UniRef50_K7S7U2 Helicase secretion neighborhood ATPase 0.0235825898408 0.5 0.476417410159 +UniRef50_A0A024E451 0.250676206095 0.5 0.249323793905 +UniRef50_D9RN76 Conserved bacteriophage protein 0.694818778418 0.5 -0.194818778418 +UniRef50_Q09AM4 1.71200378268 0.499999999998 -1.21200378268 +UniRef50_K1Z5M7 0.808141495502 0.5 -0.308141495502 +UniRef50_E4PKC3 Extracellular solute binding protein, family 1 7.18946907721 0.500000000001 -6.68946907721 +UniRef50_UPI00036DECB5 hypothetical protein 0.00460380811147 0.5 0.495396191888 +UniRef50_Q09049 Cytochrome bd ubiquinol oxidase subunit 1 0.155937291163 0.5 0.344062708837 +UniRef50_Q3B4E2 Bifunctional protein FolD 0.540350903192 0.5 -0.0403509031919 +UniRef50_N1MUD6 3.7785576553 0.500000000004 -3.2785576553 +UniRef50_D3DA43 0.0249976705859 0.5 0.475002329414 +UniRef50_G9ZJL6 2.57800669924 0.5 -2.07800669924 +UniRef50_UPI0003B42F1C hypothetical protein 0.189422654642 0.5 0.310577345358 +UniRef50_O25830 Bifunctional dihydropteroate synthase dihydropteroate reductase 0.0785708522058 0.5 0.421429147794 +UniRef50_UPI00047B1D21 DNA gyrase subunit A 0.231407136962 0.5 0.268592863038 +UniRef50_UPI0004640DF8 ABC transporter permease 0.795370146556 0.5 -0.295370146556 +UniRef50_UPI00046E6161 hypothetical protein 1.01301485774 0.5 -0.51301485774 +UniRef50_B2INS9 Hydrolase, haloacid dehalogenase like family 0.419492073761 0.5 0.080507926239 +UniRef50_F9YXR7 0.0192087901574 0.5 0.480791209842 +UniRef50_Q9I6F3 0.103550671481 0.500000000001 0.396449328518 +UniRef50_UPI00046835E4 hypothetical protein 2.97257422095 0.499999999997 -2.47257422095 +UniRef50_Q9I5W0 DNA primase 2.24532025626 0.5 -1.74532025626 +UniRef50_UPI0003B68C85 chromosomal replication initiator protein DnaA 0.314450168228 0.5 0.185549831772 +UniRef50_UPI000377D8E1 hypothetical protein 0.204529417429 0.5 0.295470582571 +UniRef50_A5ENX4 Cysteine desulfuration protein SufE 3.54230638775 0.500000000003 -3.04230638775 +UniRef50_P55809 Succinyl CoA 0.568039920223 0.5 -0.0680399202233 +UniRef50_R6LKT9 PTS system 0.407351601161 0.5 0.0926483988388 +UniRef50_UPI00037E8795 hypothetical protein 0.479475031344 0.5 0.0205249686564 +UniRef50_B9KL59 5 oxoprolinase 1.28512458642 0.499999999999 -0.785124586417 +UniRef50_G4LIE7 0.801535547086 0.5 -0.301535547086 +UniRef50_Q9SAJ6 Glyceraldehyde 3 phosphate dehydrogenase GAPCP1, chloroplastic 0.309636986411 0.5 0.190363013589 +UniRef50_W5BG06 0.362522193392 0.5 0.137477806608 +UniRef50_Q9S6S1 Xaa Pro dipeptidase 0.412934125804 0.5 0.0870658741956 +UniRef50_UPI00047AF1F1 hypothetical protein 0.00733962582487 0.5 0.492660374175 +UniRef50_W5XC72 Excinuclease ABC subunit C 0.288002297828 0.5 0.211997702172 +UniRef50_B1W0Z3 Phosphoglycerate kinase 0.547897206477 0.5 -0.0478972064766 +UniRef50_K0VIJ3 Replication initiation protein RepC 0.597283361085 0.5 -0.0972833610845 +UniRef50_UPI00036C59B9 hypothetical protein 0.118191759585 0.5 0.381808240415 +UniRef50_A1WWJ6 ISXoo15 transposase 1.10813528709 0.5 -0.608135287088 +UniRef50_M4R3E4 MFS superfamily bicyclomycin multidrug transportprotein 0.0335673142506 0.5 0.466432685749 +UniRef50_Q2G764 2,4 dihydroxyacetophenone dioxygenase 0.614724087444 0.5 -0.114724087444 +UniRef50_F4QZ58 3.72382229426 0.5 -3.22382229426 +UniRef50_R6PZ09 Chorismate synthase 0.032521588968 0.5 0.467478411032 +UniRef50_UPI000479CAE5 ABC transporter 0.0899259252464 0.5 0.410074074754 +UniRef50_Q3JVM0 0.356156277587 0.5 0.143843722413 +UniRef50_G5JVK4 Acyl ACP thioesterase 1.63887885472 0.5 -1.13887885472 +UniRef50_Q9S469 L ribulose 5 phosphate 4 epimerase 0.71604193978 0.5 -0.21604193978 +UniRef50_C5CPN2 Transaldolase 4.0236497042 0.499999999999 -3.5236497042 +UniRef50_UPI000305C0E8 hypothetical protein 0.074398435799 0.5 0.425601564201 +UniRef50_P45753 Putative DNA utilization protein HofM 1.11970645028 0.5 -0.619706450281 +UniRef50_G2M640 0.0358390645553 0.5 0.464160935445 +UniRef50_F5M2B7 CRP FNR family transcriptional regulator 5.10846981365 0.500000000004 -4.60846981366 +UniRef50_UPI00023768FE monosaccharide transporting ATPase, partial 0.190135292265 0.5 0.309864707735 +UniRef50_A9HE84 Tryptophan synthase alpha chain 0.242991537801 0.5 0.257008462199 +UniRef50_C3FBN6 Transposase A from transposon Tn554 0.129928264945 0.5 0.370071735055 +UniRef50_UPI0003B6F059 aldehyde activating protein 1.58195954629 0.5 -1.08195954629 +UniRef50_UPI000219427C phosphoribosylcarboxyaminoimidazole mutase, partial 1.53128106052 0.5 -1.03128106052 +UniRef50_C2BE46 1.7631577713 0.5 -1.2631577713 +UniRef50_K7EXQ4 1.49404436664 0.499999999999 -0.994044366639 +UniRef50_UPI0003D78289 PREDICTED 0.0123559658301 0.500000000001 0.487644034169 +UniRef50_D4HCD1 L fucose isomerase, first N terminal domain protein 0.0436211232652 0.5 0.456378876735 +UniRef50_P65894 Phosphoribosylamine glycine ligase 0.0107254175228 0.5 0.489274582477 +UniRef50_B9KUW5 Beta lactamase 2.40835588624 0.499999999999 -1.90835588624 +UniRef50_V9Y4Q6 2.37376985866 0.500000000001 -1.87376985866 +UniRef50_P58403 Protein YfdX 0.803776961241 0.5 -0.303776961241 +UniRef50_E2ZXX1 NalD 0.353249000577 0.5 0.146750999423 +UniRef50_B9JV31 1.69099532666 0.5 -1.19099532666 +UniRef50_I6SXW0 Acetyltransferase 2.15852938799 0.5 -1.65852938799 +UniRef50_Q8WEW3 Cytochrome c oxidase subunit 1 0.221579499222 0.5 0.278420500778 +UniRef50_O84561 Dihydrolipoyl dehydrogenase 0.926469731938 0.5 -0.426469731938 +UniRef50_T1B7K3 Protein containing DUF28 0.42214624167 0.5 0.0778537583303 +UniRef50_UPI0003F0D458 0.532916539461 0.5 -0.0329165394609 +UniRef50_M1MXD6 Xylose transport system permease protein XylH 0.60014235834 0.5 -0.10014235834 +UniRef50_R2ZFJ6 Regulatory protein BlaR1 0.0288202980353 0.5 0.471179701965 +UniRef50_UPI000377E8CB hypothetical protein 0.316970859419 0.5 0.183029140581 +UniRef50_Q9RSS3 ABC transporter, ATP binding protein, MDR family 0.000780040729494 0.5 0.49921995927 +UniRef50_F5LYA4 P4 family integrase 0.863154139775 0.5 -0.363154139775 +UniRef50_Q8EWY8 ATP synthase subunit beta 0.944912130403 0.5 -0.444912130403 +UniRef50_UPI00037C4890 hypothetical protein 0.158822121547 0.5 0.341177878453 +UniRef50_UPI000379EBC0 hypothetical protein 0.604120210421 0.5 -0.104120210421 +UniRef50_UPI000364EE3F hypothetical protein 0.0946292377409 0.499999999999 0.40537076226 +UniRef50_UPI0003717A9D molybdopterin biosynthesis protein MoeZ, partial 0.212615495692 0.5 0.287384504308 +UniRef50_M3YWL2 1.0408052349 0.5 -0.540805234904 +UniRef50_O27333 Trk system potassium uptake protein TrkA homolog 2.08435157473 0.499999999998 -1.58435157473 +UniRef50_M1MV61 ATP dependent transcriptional regulator, MalT like, LuxR family 0.209031827285 0.5 0.290968172715 +UniRef50_Q6AGI1 1.54242158171 0.5 -1.04242158171 +UniRef50_Q0K1E0 Ribulose bisphosphate carboxylase large chain, chromosomal 0.560628143285 0.5 -0.0606281432846 +UniRef50_UPI0003A611B9 hypothetical protein 0.0119371576349 0.5 0.488062842365 +UniRef50_D8JE10 Thioesterase superfamily protein 0.0243039624814 0.500000000001 0.475696037518 +UniRef50_F4FM20 RstA 13.183465451 0.499999999996 -12.683465451 +UniRef50_Q6Y3D2 NifD 1.12296219922 0.5 -0.62296219922 +UniRef50_R0S4I1 AMIN domain protein 0.0452666771302 0.5 0.45473332287 +UniRef50_Q0BWU4 Phosphoribosyl AMP cyclohydrolase 0.101988952937 0.5 0.398011047063 +UniRef50_UPI0002B4BC1C 0.096754362564 0.5 0.403245637436 +UniRef50_UPI0004785FB9 alkylhydroperoxidase 0.562584696578 0.5 -0.0625846965785 +UniRef50_F7QTX4 0.417283165057 0.5 0.0827168349429 +UniRef50_T2E7D0 Inner membrane transport protein RhmT 1.96973675404 0.5 -1.46973675404 +UniRef50_UPI0003955E77 PREDICTED 0.229919314727 0.5 0.270080685273 +UniRef50_Q01609 0.117211065766 0.5 0.382788934234 +UniRef50_B3E163 DNA directed RNA polymerase subunit beta 0.931326930692 0.5 -0.431326930692 +UniRef50_Q7WZY5 Oxygen sensor histidine kinase NreB 1.49998397784 0.499999999998 -0.999983977843 +UniRef50_UPI0004740AD1 histidine kinase 0.289699141162 0.5 0.210300858838 +UniRef50_P50186 NaeI very short patch repair endonuclease 0.222038587202 0.5 0.277961412798 +UniRef50_UPI000367ED7B hypothetical protein 1.914619753 0.500000000002 -1.41461975301 +UniRef50_UPI000470E957 major facilitator transporter, partial 0.0816796412095 0.5 0.41832035879 +UniRef50_B5R646 Allantoinase 2.52600722277 0.499999999999 -2.02600722277 +UniRef50_P23256 Protein MalY 1.6216171639 0.500000000001 -1.1216171639 +UniRef50_B4RQQ4 Adhesin component 0.0094357181521 0.5 0.490564281848 +UniRef50_K1RTS5 Carboxynorspermidine decarboxylase 0.743189421496 0.5 -0.243189421496 +UniRef50_I6TSK5 Osmoprotectant amino acid ABC transporter ATP binding protein 1.05381242331 0.5 -0.553812423306 +UniRef50_A5UJ55 SAM dependent methyltransferase 0.667948402662 0.5 -0.167948402662 +UniRef50_M1MCY2 Glycosyl transferase family 2 0.080421252252 0.5 0.419578747748 +UniRef50_UPI00036853DF hypothetical protein 6.0701191868 0.499999999996 -5.5701191868 +UniRef50_P22714 Galactose 1 phosphate uridylyltransferase 1.60544116949 0.5 -1.10544116949 +UniRef50_UPI000225A931 proline iminopeptidase 0.370241694157 0.5 0.129758305843 +UniRef50_A0A023RRW7 Lipid A biosynthesis acyltransferase 0.00899548185439 0.5 0.491004518146 +UniRef50_I0C613 DNA polymerase III alpha subunit 2.20680306021 0.500000000004 -1.70680306022 +UniRef50_A1KRG6 DNA directed RNA polymerase subunit beta 0.00734770000878 0.5 0.492652299991 +UniRef50_P05824 DNA repair protein RecN 4.08757886719 0.500000000003 -3.58757886719 +UniRef50_Q9K0V3 N acetylmuramoyl L alanine amidase AmiC 0.0133272020725 0.5 0.486672797928 +UniRef50_A0A023RUS2 Chemotaxis protein CheY 0.0711663203681 0.5 0.428833679632 +UniRef50_P0ABT9 1.6085048299 0.499999999999 -1.1085048299 +UniRef50_A4WWG5 Extracellular solute binding protein, family 5 2.66931497642 0.5 -2.16931497642 +UniRef50_Q5HR29 Histidine protein kinase SaeS 3.71165885527 0.499999999997 -3.21165885526 +UniRef50_UPI00046D5F2F hypothetical protein 0.137631256871 0.5 0.362368743129 +UniRef50_UPI0002D4FA5D hypothetical protein 0.109003288428 0.5 0.390996711572 +UniRef50_P31550 Thiamine binding periplasmic protein 0.62250995992 0.5 -0.12250995992 +UniRef50_P21514 Cyclic di GMP phosphodiesterase YahA 0.529780476386 0.5 -0.0297804763857 +UniRef50_A6VC18 Haemagglutination activity domain protein 3.55447835617 0.500000000003 -3.05447835617 +UniRef50_UPI000377E83F hypothetical protein 0.0560968253943 0.5 0.443903174606 +UniRef50_A3MND6 Bifunctional protein GlmU 0.123692954058 0.5 0.376307045942 +UniRef50_UPI00037CB5D1 hypothetical protein, partial 1.39037673089 0.5 -0.890376730887 +UniRef50_UPI00028877C9 hypothetical protein 0.338069937846 0.5 0.161930062154 +UniRef50_UPI0004416F73 Pkinase domain containing protein 1.48081744784 0.5 -0.980817447836 +UniRef50_UPI00035DDF67 hypothetical protein 0.83751461393 0.5 -0.33751461393 +UniRef50_UPI00046CFF91 NUDIX hydrolase 0.00941590098552 0.5 0.490584099014 +UniRef50_UPI0003654BCD hypothetical protein 0.00209212504054 0.5 0.49790787496 +UniRef50_S5SXF8 GntR family transcriptional regulator protein 9.8251273092 0.500000000002 -9.3251273092 +UniRef50_UPI000344DDDB hypothetical protein 1.20055141807 0.5 -0.700551418066 +UniRef50_UPI00041AB026 hypothetical protein 3.21587346619 0.500000000003 -2.7158734662 +UniRef50_UPI000310D2B7 hypothetical protein 0.255495614594 0.5 0.244504385406 +UniRef50_I5XEX7 0.470614174991 0.5 0.0293858250094 +UniRef50_UPI00028A0BB5 iron ABC transporter permease 0.322900363278 0.5 0.177099636722 +UniRef50_Q00267 N hydroxyarylamine O acetyltransferase 1.15778295924 0.5 -0.657782959242 +UniRef50_UPI0002D46590 hypothetical protein 3.6405449359 0.500000000001 -3.1405449359 +UniRef50_UPI000310AFFC hypothetical protein 5.22360803583 0.499999999995 -4.72360803583 +UniRef50_K7RZQ6 Phosphate ABC transporter, permease protein PstC 0.010012779044 0.5 0.489987220956 +UniRef50_Q9RUF1 Putative gluconeogenesis factor 0.0104297815333 0.5 0.489570218467 +UniRef50_A3M2J5 FilF 0.0233633663578 0.5 0.476636633642 +UniRef50_Q9RYW8 Excinuclease ABC, subunit A 0.00082315106378 0.5 0.499176848936 +UniRef50_L7WWN9 N acetylmuramoyl L alanine amidase 1.62327755 0.5 -1.12327755 +UniRef50_U5MQ76 Cell wall hydrolase autolysin 0.132572205563 0.5 0.367427794438 +UniRef50_Q8K3J1 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 2.81520545167 0.5 -2.31520545167 +UniRef50_B2TQZ4 Ribosomal RNA small subunit methyltransferase I 0.0820272750957 0.5 0.417972724904 +UniRef50_UPI00045E70DE phosphoglucosamine mutase 0.303654056765 0.5 0.196345943235 +UniRef50_P0A2L2 UPF0047 protein YjbQ 0.000489206090597 0.499999999999 0.49951079391 +UniRef50_Q720A2 DNA polymerase III PolC type 0.962491743918 0.5 -0.462491743918 +UniRef50_W8UDC1 Oligopeptidase A 2.3135105107 0.5 -1.8135105107 +UniRef50_UPI000404E1BA hypothetical protein 3.13392554903 0.5 -2.63392554903 +UniRef50_Q3J4T9 ATPase 4.27937086805 0.499999999996 -3.77937086804 +UniRef50_G7U8C9 N formimino L glutamate deiminase 0.00927699718916 0.5 0.490723002811 +UniRef50_P0A0E5 Mercuric reductase 2.18031925098 0.5 -1.68031925098 +UniRef50_R5D9D5 0.134099908659 0.5 0.365900091341 +UniRef50_UPI0002F9EB26 hypothetical protein 0.73449860287 0.5 -0.23449860287 +UniRef50_W8G521 Electron transfer flavoprotein subunit beta 0.589349804974 0.5 -0.0893498049738 +UniRef50_UPI0003672E42 hypothetical protein 0.35369061492 0.5 0.14630938508 +UniRef50_A3JU62 Replication protein C 0.688119236977 0.5 -0.188119236977 +UniRef50_UPI000376A3B0 hypothetical protein 0.152232217472 0.5 0.347767782528 +UniRef50_D4HC17 TOBE domain protein 0.0377802985185 0.5 0.462219701481 +UniRef50_I1F1X0 0.370914031178 0.5 0.129085968822 +UniRef50_Q87AR8 Laccase domain protein PD_1754 0.108208538989 0.5 0.391791461011 +UniRef50_I4XWS9 MFS transporter, aromatic acid 1.21951757426 0.5 -0.719517574262 +UniRef50_UPI000252B72D 0.519362946999 0.5 -0.0193629469992 +UniRef50_R4PRA1 Cytochrome D ubiquinol oxidase, subunit II 0.0443319882324 0.5 0.455668011767 +UniRef50_UPI00034C051A hypothetical protein 0.945737871277 0.5 -0.445737871277 +UniRef50_A6W2T3 3 dehydroquinate synthase 0.0165473938918 0.5 0.483452606108 +UniRef50_Q24QJ3 Imidazole glycerol phosphate synthase subunit HisH 0.102504974903 0.5 0.397495025097 +UniRef50_A3PQB9 Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase 1.80305534528 0.5 -1.30305534528 +UniRef50_B9KR17 CrpK, Fnr type transcriptional regulator 4.49858229611 0.5 -3.99858229611 +UniRef50_P58423 Fructose 6 phosphate aldolase 1 2.03989149039 0.5 -1.53989149039 +UniRef50_E9UU02 Putative TolA domain protein 0.876662228859 0.5 -0.376662228859 +UniRef50_J3NBT7 0.025881114274 0.5 0.474118885726 +UniRef50_UPI00023B1DD2 PREDICTED 0.867660013883 0.5 -0.367660013883 +UniRef50_Q729A6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.017766523099 0.5 0.482233476901 +UniRef50_J1ZV65 0.223078434749 0.5 0.276921565251 +UniRef50_UPI0002630EBE nicotinate phosphoribosyltransferase 0.330942653433 0.5 0.169057346567 +UniRef50_G0DTU8 0.0380923506877 0.5 0.461907649312 +UniRef50_UPI00036FBE9A hypothetical protein 0.265536911971 0.5 0.234463088029 +UniRef50_UPI00029B2F80 GCN5 family acetyltransferase 0.0837146744048 0.5 0.416285325595 +UniRef50_G7MAN7 Carboxyl terminal protease 0.333292558454 0.5 0.166707441546 +UniRef50_B9KR73 ABC sugar transporter, inner membrane subunit 2.44214468344 0.5 -1.94214468344 +UniRef50_UPI00037DF359 hypothetical protein 2.83383544982 0.5 -2.33383544982 +UniRef50_O32113 0.599485024726 0.5 -0.0994850247262 +UniRef50_Q47BM0 Argininosuccinate synthase 2.15729447742 0.5 -1.65729447742 +UniRef50_P0AGM8 Uracil permease 1.28639184642 0.5 -0.786391846419 +UniRef50_UPI0002628793 organic solvent ABC transporter ATP binding protein 1.90285668559 0.5 -1.40285668559 +UniRef50_D3DEH5 DnaJ like molecular chaperone domain protein 1.222548791 0.5 -0.722548791002 +UniRef50_P0ACZ1 0.319560307808 0.5 0.180439692192 +UniRef50_C7C6X9 1.21405566008 0.5 -0.714055660081 +UniRef50_B0TY89 Threonine tRNA ligase 1.39393187161 0.499999999998 -0.893931871608 +UniRef50_Q2FGC8 Shikimate dehydrogenase 2.19667140291 0.499999999999 -1.69667140291 +UniRef50_UPI0004057B1E hypothetical protein 1.22476412375 0.5 -0.724764123748 +UniRef50_C5N0J9 2.63058087002 0.5 -2.13058087002 +UniRef50_UPI0001BC2CC2 glyoxalase bleomycin resistance protein dioxygenase 0.244706289451 0.5 0.255293710549 +UniRef50_Q9ZE56 Aspartate aminotransferase 1.68842033502 0.5 -1.18842033502 +UniRef50_K1YDE1 0.331145888166 0.5 0.168854111834 +UniRef50_Q4A2U1 Putative membrane protein 0.305655615244 0.5 0.194344384756 +UniRef50_D9UFW6 Replication initiation protein 0.722699845565 0.5 -0.222699845565 +UniRef50_W5X411 DoxX family protein 1.93472751379 0.5 -1.43472751379 +UniRef50_UPI00038FA33F Aliphatic sulfonates import ATP binding protein SsuB, partial 2.83777581543 0.5 -2.33777581543 +UniRef50_UPI00035D0942 hypothetical protein 0.556972867274 0.5 -0.0569728672741 +UniRef50_B9KT30 Transporter, DME family, DMT superfamily 0.818314947252 0.5 -0.318314947252 +UniRef50_Q49YA3 HemA concentration negative effector 1.66925517483 0.500000000002 -1.16925517483 +UniRef50_UPI0003B4E2D0 preprotein translocase subunit SecD 0.14836013727 0.5 0.35163986273 +UniRef50_A0R033 Phospho 2 dehydro 3 deoxyheptonate aldolase AroG 1.65784076227 0.5 -1.15784076227 +UniRef50_Q8CMX2 Dihydrolipoamide dehydrogenase 3.20603434382 0.500000000001 -2.70603434383 +UniRef50_G1TF83 3.72763631034 0.500000000001 -3.22763631034 +UniRef50_Q3SFH1 Acetylglutamate kinase 0.00723240182408 0.5 0.492767598176 +UniRef50_UPI0002626E83 hypothetical protein 1.10486219168 0.5 -0.604862191681 +UniRef50_E7T8U3 SdiA regulated domain protein 0.457420112322 0.5 0.0425798876781 +UniRef50_A5V195 Beta lactamase domain protein 0.0974635869358 0.5 0.402536413064 +UniRef50_A6LQ08 Oleoyl hydrolase 0.441212496876 0.5 0.058787503124 +UniRef50_UPI00036116CD hypothetical protein 0.0068151464846 0.5 0.493184853515 +UniRef50_UPI0004222757 acyl CoA dehydrogenase 0.551187632323 0.5 -0.0511876323227 +UniRef50_UPI0001744DDB putative transporter 0.0709621053859 0.5 0.429037894614 +UniRef50_Q9RUR8 0.00199410017153 0.5 0.498005899828 +UniRef50_Q4UYY0 Tyrosine recombinase XerC 1.44978391849 0.5 -0.94978391849 +UniRef50_P53401 Succinyl CoA ligase [GDP forming] subunit alpha 3, mitochondrial 0.257379506435 0.5 0.242620493565 +UniRef50_A6M0K8 Amino acid permease associated region 0.166560710248 0.5 0.333439289752 +UniRef50_Q9CGD8 Homoserine dehydrogenase 0.401862239688 0.5 0.0981377603123 +UniRef50_W0YNY5 Putrescine binding periplasmic protein 1.17310498204 0.5 -0.673104982039 +UniRef50_UPI0001CB98DC PREDICTED 0.301695965984 0.5 0.198304034016 +UniRef50_UPI00036CD3A9 hypothetical protein 0.000783119633406 0.5 0.499216880366 +UniRef50_UPI0002FA5AD3 hypothetical protein 1.50828409706 0.5 -1.00828409706 +UniRef50_G7U4S9 0.00866455093201 0.5 0.491335449068 +UniRef50_B8P4L0 Predicted protein 0.384070763003 0.5 0.115929236997 +UniRef50_R9SPB0 7 carboxy 7 deazaguanine synthase 2.5880149124 0.5 -2.0880149124 +UniRef50_W4UGA1 0.0530860226985 0.5 0.446913977302 +UniRef50_UPI000237A558 molecular chaperone DnaK 1.84940541127 0.499999999999 -1.34940541127 +UniRef50_A6LRX4 0.272747427269 0.5 0.227252572731 +UniRef50_A0A023RW48 0.0217538711299 0.5 0.47824612887 +UniRef50_Q9FYA6 Branched chain amino acid aminotransferase 5, chloroplastic 0.165209883781 0.5 0.334790116219 +UniRef50_Q3J497 0.398518445163 0.5 0.101481554837 +UniRef50_UPI000464D2A1 peptidase M32 1.12900509376 0.500000000001 -0.629005093762 +UniRef50_Q3JNY2 Phosphonates import ATP binding protein PhnC 0.367278126553 0.5 0.132721873447 +UniRef50_P30296 High affinity branched chain amino acid transport system permease protein LivM 3.2429395235 0.499999999999 -2.7429395235 +UniRef50_UPI00036616D0 hypothetical protein 0.0526498874358 0.5 0.447350112564 +UniRef50_Q7UT69 Cyclic pyranopterin monophosphate synthase 0.0187295133172 0.499999999999 0.481270486683 +UniRef50_UPI00037F4F10 hypothetical protein 1.63043728274 0.5 -1.13043728274 +UniRef50_E2S811 1.01516458504 0.5 -0.515164585043 +UniRef50_Q04I02 Transcriptional regulator AdcR 4.58281701755 0.5 -4.08281701755 +UniRef50_Q72IW9 Homoisocitrate dehydrogenase 0.101735526535 0.5 0.398264473465 +UniRef50_Q84NM0 0.3335629504 0.5 0.1664370496 +UniRef50_UPI0003EC0560 PREDICTED 0.794101659937 0.5 -0.294101659937 +UniRef50_U1FXL3 Primosome assembly protein PriA 2.13957891941 0.500000000002 -1.63957891942 +UniRef50_UPI000372345A hypothetical protein 0.607475402311 0.5 -0.107475402311 +UniRef50_G8VIZ2 Dicarboxylate transport protein alpha ketoglutarate permease 0.0138840380067 0.5 0.486115961994 +UniRef50_UPI0002625F65 thioredoxin 0.26367087603 0.5 0.23632912397 +UniRef50_J9UTL0 4.07220144094 0.5 -3.57220144094 +UniRef50_P37417 UDP N acetylenolpyruvoylglucosamine reductase 3.00310565349 0.499999999999 -2.50310565348 +UniRef50_D6SIG9 1.43196763322 0.5 -0.931967633222 +UniRef50_W0A6T6 Peroxidase 0.00246726564901 0.5 0.497532734351 +UniRef50_UPI0001B4A052 hypothetical protein, partial 0.0167048502666 0.499999999999 0.483295149734 +UniRef50_P76081 1,2 phenylacetyl CoA epoxidase, subunit E 2.36640693456 0.500000000002 -1.86640693457 +UniRef50_W0YPV2 0.0156185270582 0.5 0.484381472942 +UniRef50_Q9RTL4 0.0033910560067 0.5 0.496608943994 +UniRef50_B0VB68 Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain 0.123597233586 0.5 0.376402766414 +UniRef50_UPI0003767C94 MULTISPECIES 0.0200892789577 0.5 0.479910721042 +UniRef50_P29915 NADH quinone oxidoreductase chain 3 1.46758225596 0.5 -0.967582255957 +UniRef50_P51981 L Ala D L Glu epimerase 2.03981291953 0.500000000001 -1.53981291953 +UniRef50_Q7UK64 Argininosuccinate lyase 1.03925083682 0.5 -0.539250836818 +UniRef50_Q5NPZ7 Tryptophan synthase alpha chain 0.269378936117 0.5 0.230621063883 +UniRef50_Q9RZH5 0.00322804973093 0.5 0.496771950269 +UniRef50_Q5HH71 UPF0477 protein SACOL1020 0.854806452556 0.5 -0.354806452556 +UniRef50_Q9RZH7 0.00483845585758 0.5 0.495161544142 +UniRef50_Q9RZH0 0.00606927101693 0.500000000001 0.493930728982 +UniRef50_Q9RZH1 0.0055144381567 0.5 0.494485561843 +UniRef50_UPI0003737D75 hypothetical protein 1.04356371306 0.5 -0.543563713061 +UniRef50_W1VJK5 0.0713333028436 0.5 0.428666697156 +UniRef50_P14949 Thioredoxin 0.444702805973 0.5 0.0552971940269 +UniRef50_UPI000472A2A5 hypothetical protein 0.528663931684 0.5 -0.0286639316845 +UniRef50_B9KF16 56.1694448108 0.500000000005 -55.6694448108 +UniRef50_R6IHH7 0.0796163114816 0.5 0.420383688518 +UniRef50_Q6FFB5 Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes 0.00702821646221 0.5 0.492971783538 +UniRef50_F5Q2F1 Putrescine ornithine antiporter 0.172083558866 0.5 0.327916441135 +UniRef50_A0A014NVK4 0.0946085067669 0.5 0.405391493233 +UniRef50_P34956 Quinol oxidase subunit 1 2.58514360206 0.500000000003 -2.08514360206 +UniRef50_I6TBP2 Oligo beta mannoside permease IIC component 0.0513723830027 0.5 0.448627616997 +UniRef50_Q6D107 Bifunctional protein Aas 1.74132025654 0.5 -1.24132025654 +UniRef50_I4K2W0 25.4557569483 0.499999999986 -24.9557569483 +UniRef50_UPI00036C4785 hypothetical protein, partial 0.0792288168616 0.500000000001 0.420771183138 +UniRef50_Q3J232 0.949130696771 0.5 -0.449130696771 +UniRef50_Q3J231 0.961941850385 0.5 -0.461941850385 +UniRef50_Q3J230 1.45302856809 0.500000000001 -0.953028568095 +UniRef50_UPI00041335DC hypothetical protein 0.334715651504 0.5 0.165284348496 +UniRef50_UPI00035E09FF hypothetical protein 0.195889617642 0.5 0.304110382358 +UniRef50_A4SN85 Putative transport protein ASA_2308 2.06719840957 0.500000000002 -1.56719840958 +UniRef50_A4SV52 Indole 3 glycerol phosphate synthase 0.000862328969321 0.5 0.499137671031 +UniRef50_B0JHY9 50S ribosomal protein L6 2.61818743231 0.5 -2.11818743231 +UniRef50_Q4T085 Chromosome undetermined SCAF11289, whole genome shotgun sequence. 0.267433808179 0.5 0.232566191821 +UniRef50_J9YTG3 0.380639701831 0.5 0.119360298169 +UniRef50_UPI00044144A1 50s ribosomal protein 0.0499815272418 0.5 0.450018472758 +UniRef50_A4WTJ9 0.253394278745 0.5 0.246605721255 +UniRef50_I3TNP2 Amino acid carrier protein 0.73049054712 0.5 -0.23049054712 +UniRef50_Q5HQ95 Cobalt transport family protein 3.28449834193 0.500000000001 -2.78449834193 +UniRef50_F5XZ61 Candidate cytosine deaminase 1.06796942801 0.5 -0.567969428007 +UniRef50_A4WUN6 ChaC family protein 0.28439326807 0.5 0.21560673193 +UniRef50_Q5HRI6 SdrG protein 1.97236147586 0.5 -1.47236147586 +UniRef50_D6AJJ2 Predicted protein 0.10317877466 0.5 0.39682122534 +UniRef50_UPI000470ED8E hypothetical protein, partial 0.356691628306 0.5 0.143308371694 +UniRef50_Q9RWT4 0.00226617874407 0.5 0.497733821256 +UniRef50_S6E1Z6 Red like rubisco 1,5 bisphosphate carboxylase oxygenease form I 22.5437290899 0.500000000007 -22.0437290899 +UniRef50_UPI00047E6722 hypothetical protein 0.0642901470745 0.5 0.435709852926 +UniRef50_UPI0003AE08B4 PREDICTED 0.350560366549 0.5 0.149439633451 +UniRef50_M4XCW5 0.0895741824379 0.5 0.410425817562 +UniRef50_UPI0004638808 hypothetical protein, partial 6.24382940598 0.5 -5.74382940598 +UniRef50_G1Y260 1.06328707959 0.5 -0.563287079592 +UniRef50_Q2RFW5 Ribose 5 phosphate isomerase 1.66745567307 0.5 -1.16745567307 +UniRef50_UPI0004657CE9 peptidoglycan glycosyltransferase 0.257869518123 0.5 0.242130481877 +UniRef50_B7RSE7 Plasmid partitioning protein RepA 0.82570463551 0.5 -0.32570463551 +UniRef50_U2Z6B8 GfdT protein 1.01715851804 0.5 -0.517158518039 +UniRef50_F2N3U1 0.380356214016 0.5 0.119643785984 +UniRef50_Q3IUV5 TraF 2.62834962167 0.499999999999 -2.12834962166 +UniRef50_F0KNJ6 0.0702042691032 0.5 0.429795730897 +UniRef50_UPI00047C69BC multidrug transporter 0.146703064047 0.5 0.353296935953 +UniRef50_C7NCF6 2 nitropropane dioxygenase NPD 0.0202532097929 0.5 0.479746790207 +UniRef50_Q9HTK9 Rubredoxin NAD reductase 0.136218269091 0.5 0.363781730909 +UniRef50_Q3JQL8 Bifunctional protein FolD 0.0110220812112 0.5 0.488977918789 +UniRef50_UPI000382E191 hypothetical protein 4.42538972088 0.500000000001 -3.92538972088 +UniRef50_UPI00047171F6 molybdopterin biosynthesis protein B 1.42281137211 0.5 -0.922811372109 +UniRef50_B0TI32 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.878679359627 0.5 -0.378679359627 +UniRef50_Q9Z9A0 DNA directed RNA polymerase subunit beta 0.397389600862 0.5 0.102610399138 +UniRef50_Q8ZN74 tRNA cytidine acetyltransferase TmcA 2.10253895949 0.5 -1.60253895949 +UniRef50_Q2Y8M6 N succinylarginine dihydrolase 0.149002083815 0.5 0.350997916185 +UniRef50_P63229 D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase 7.69120417842 0.499999999995 -7.19120417842 +UniRef50_UPI00016C41D3 preprotein translocase subunit SecA 0.0783179248534 0.5 0.421682075147 +UniRef50_A1BAM5 0.0347761460223 0.5 0.465223853978 +UniRef50_UPI0003B3E9C2 cobalamin biosynthesis protein 0.101381108699 0.5 0.398618891301 +UniRef50_UPI0003651143 cold shock protein, partial 0.800453803338 0.5 -0.300453803338 +UniRef50_P33348 2.63681898076 0.5 -2.13681898076 +UniRef50_Y5MV84 46.4362564995 0.500000000027 -45.9362564995 +UniRef50_UPI0003B3392D pyridine nucleotide disulfide oxidoreductase 0.0903205805128 0.5 0.409679419487 +UniRef50_A0A023B4C6 0.17196354894 0.5 0.32803645106 +UniRef50_Q5DXZ5 Lateral flagellar motor protein B 1.79921837149 0.5 -1.29921837149 +UniRef50_P45769 4.0888181939 0.499999999996 -3.58881819389 +UniRef50_B9KUP5 1.88069949218 0.499999999999 -1.38069949218 +UniRef50_A7H6H5 Glucose 1 phosphate adenylyltransferase 0.326982904263 0.5 0.173017095737 +UniRef50_Q8G3W4 Permease of ABC transporter for sugars 0.0461336801522 0.5 0.453866319848 +UniRef50_UPI00046C05A0 PREDICTED 0.116618489311 0.5 0.383381510689 +UniRef50_Q9ZMZ4 Urease subunit alpha 0.120522923092 0.5 0.379477076908 +UniRef50_Q2NA61 NADH quinone oxidoreductase subunit B 0.291297587905 0.5 0.208702412095 +UniRef50_P43262 Probable phospholipid binding lipoprotein MlaA 0.142851978176 0.5 0.357148021824 +UniRef50_G4LR38 2.54431076805 0.5 -2.04431076805 +UniRef50_A6QE03 Amidase 0.0961556181648 0.5 0.403844381835 +UniRef50_A7C6L8 Excinuclease ABC subunit A 0.0945992211856 0.5 0.405400778814 +UniRef50_UPI0001C373E9 helicase 0.0265481675007 0.499999999999 0.4734518325 +UniRef50_S6UH58 2.09994264484 0.5 -1.59994264484 +UniRef50_UPI000416F2B1 alpha amylase 0.684327495077 0.5 -0.184327495077 +UniRef50_UPI00026CA7A4 anhydro N acetylmuramic acid kinase 0.0761567642342 0.5 0.423843235766 +UniRef50_UPI000441A65C PREDICTED 0.787099542116 0.5 -0.287099542116 +UniRef50_Q4ZZY5 0.244656402527 0.5 0.255343597473 +UniRef50_A0A024HXK5 4.11055975531 0.499999999998 -3.61055975531 +UniRef50_UPI0000164D05 cytochrome c oxidase, subunit II 1.1898977641e-05 0.5 0.499988101022 +UniRef50_Q6A5B0 0.807140593229 0.5 -0.307140593229 +UniRef50_X1NF36 Marine sediment metagenome DNA, contig 0.0813454566223 0.5 0.418654543377 +UniRef50_Q5HLC6 Transcriptional regulator, MerR family 1.05791155655 0.5 -0.557911556554 +UniRef50_P44528 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 7.65723297742 0.500000000001 -7.15723297742 +UniRef50_F4GZX9 Amidophosphoribosyltransferase 0.00797633107913 0.5 0.492023668921 +UniRef50_C6KU11 ABC transporter, permease protein 1.46122246535 0.5 -0.961222465348 +UniRef50_R9SK19 Histone acetyltransferase ELP3 family 1.26994644262 0.5 -0.769946442618 +UniRef50_B7IB09 Endonuclease exonuclease phosphatase 0.0166374064464 0.5 0.483362593553 +UniRef50_R4NJP1 Signal peptidase I 0.548473140311 0.5 -0.0484731403108 +UniRef50_Q8FBR8 0.910086573032 0.5 -0.410086573032 +UniRef50_Q46TV5 Amidase 1.50157197402 0.5 -1.00157197402 +UniRef50_Q99W47 Serine aspartate repeat containing protein D 3.28322498393 0.5 -2.78322498393 +UniRef50_UPI000477EDDF 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.889006478723 0.5 -0.389006478723 +UniRef50_B0RYF7 2 methylcitrate hydratase 0.0325743557119 0.5 0.467425644288 +UniRef50_B9D5D5 0.285423303125 0.5 0.214576696875 +UniRef50_S6AZR4 0.624525313097 0.5 -0.124525313097 +UniRef50_A1B9D8 ABC transporter related protein 0.786720772762 0.5 -0.286720772762 +UniRef50_J3DVI4 0.403846171507 0.5 0.096153828493 +UniRef50_UPI00047C6BBB uracil transporter 0.198734707672 0.500000000001 0.301265292328 +UniRef50_K0JC90 Mobilization protein A 3.8580903946 0.499999999999 -3.3580903946 +UniRef50_UPI0004668D5E peptidase S11 0.128373027375 0.5 0.371626972625 +UniRef50_A6LZM4 0.0331861356816 0.500000000001 0.466813864318 +UniRef50_Q4KGS9 GAF domain cyclic diguanylate phosphodiesterase domain protein 0.0216940174066 0.5 0.478305982593 +UniRef50_B0B7Q0 Pyruvate kinase 0.422435508433 0.5 0.0775644915666 +UniRef50_K8NVT8 Diguanylate cyclase domain containing protein 1.0784281856 0.5 -0.578428185604 +UniRef50_Q3JSP4 0.191371417166 0.5 0.308628582834 +UniRef50_UPI000474188B dTDP 4 dehydrorhamnose 3,5 epimerase 0.241491586933 0.5 0.258508413067 +UniRef50_S6AGE8 0.00679204912847 0.5 0.493207950872 +UniRef50_Q96S55 ATPase WRNIP1 0.0575389952115 0.5 0.442461004789 +UniRef50_UPI0003B5BF85 ABC transporter 0.437063721234 0.5 0.0629362787661 +UniRef50_F8DIK9 Phosphotransferase enzyme family 0.602309834108 0.5 -0.102309834108 +UniRef50_P0AFM3 Glycine betaine binding periplasmic protein 1.43958671889 0.500000000002 -0.93958671889 +UniRef50_UPI00037F68CC hypothetical protein 0.391069209574 0.5 0.108930790426 +UniRef50_Q4L5D3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.34292382865 0.5 -1.84292382865 +UniRef50_A6LWI6 GAF domain containing protein 0.782545934822 0.5 -0.282545934822 +UniRef50_Q9PBC7 Histidine biosynthesis bifunctional protein HisB 0.381522893088 0.5 0.118477106912 +UniRef50_C0RG90 3 phosphoshikimate 1 carboxyvinyltransferase 0.856270022431 0.5 -0.356270022431 +UniRef50_E3ZQM3 YqeL 0.0388286945535 0.5 0.461171305446 +UniRef50_P72139 Putative imidazole glycerol phosphate synthase subunit hisF2 0.491200139193 0.5 0.00879986080664 +UniRef50_B2G6L2 Isoleucine tRNA ligase 0.585364676084 0.5 -0.0853646760836 +UniRef50_D5E389 Relaxase mobilization nuclease domain protein 4.13782857122 0.499999999999 -3.63782857122 +UniRef50_F7F1K1 0.0337083025323 0.5 0.466291697468 +UniRef50_B2S6U9 Carbamoyl phosphate synthase small chain 6.19103636403 0.499999999997 -5.69103636403 +UniRef50_A0A058ZGI8 0.661381717878 0.5 -0.161381717878 +UniRef50_UPI00047EBD86 hypothetical protein, partial 0.0983160364151 0.5 0.401683963585 +UniRef50_X1RQI5 Marine sediment metagenome DNA, contig 0.631304634392 0.5 -0.131304634392 +UniRef50_O66605 Lon protease 0.0239590586929 0.5 0.476040941307 +UniRef50_Q653B9 0.452541347937 0.5 0.0474586520627 +UniRef50_UPI00047DCF6D dTDP 4 dehydrorhamnose 3,5 epimerase 0.908810186251 0.5 -0.408810186251 +UniRef50_UPI0004418B4E PREDICTED 0.50021925895 0.5 -0.000219258949917 +UniRef50_P37024 ATP dependent RNA helicase HrpB 0.78776450346 0.5 -0.28776450346 +UniRef50_P45404 Cytochrome c type biogenesis protein CycK 5.91239103824 0.500000000002 -5.41239103824 +UniRef50_E6SIK1 Xanthine uracil vitamin C permease 0.00653867436971 0.5 0.49346132563 +UniRef50_Q8FT67 Triosephosphate isomerase 0.0348638069442 0.5 0.465136193056 +UniRef50_L0A7V5 ABC type Fe3+ hydroxamate transport system, periplasmic component 0.00284483760092 0.5 0.497155162399 +UniRef50_UPI000378926F Gnt II system L idonate transporter IdnT, partial 0.328664532029 0.5 0.171335467971 +UniRef50_UPI0004628F03 hypothetical protein 0.0997565694429 0.5 0.400243430557 +UniRef50_E3D2E3 0.021094138869 0.5 0.478905861131 +UniRef50_Q9RYE7 Chromosomal replication initiator protein DnaA 0.00505213444201 0.5 0.494947865558 +UniRef50_B9KTR9 0.25746383863 0.5 0.24253616137 +UniRef50_UPI00037D79FE hypothetical protein 0.506367206447 0.5 -0.00636720644659 +UniRef50_Q5X183 0.0160246174854 0.5 0.483975382515 +UniRef50_Q5HEM7 DNA polymerase IV 2.35692133999 0.500000000002 -1.85692134 +UniRef50_B9KTR7 0.530958231561 0.5 -0.0309582315607 +UniRef50_E9C843 3.29087679694 0.500000000007 -2.79087679695 +UniRef50_F3U3B9 12.5634068463 0.500000000003 -12.0634068463 +UniRef50_Q5M4V7 Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein 0.430289112908 0.5 0.0697108870918 +UniRef50_UPI0003B3970A arylesterase 0.311168999011 0.5 0.188831000989 +UniRef50_UPI0003C73AEA oxidoreductase 0.194451765004 0.5 0.305548234996 +UniRef50_W5Y8E7 1.45208568168 0.5 -0.952085681676 +UniRef50_UPI000360A00D phage tail protein 0.340832474099 0.5 0.159167525901 +UniRef50_L7WUC8 HesA MoeB ThiF family protein 5.84794434638 0.499999999991 -5.34794434637 +UniRef50_A6TKL7 0.278593750191 0.5 0.221406249809 +UniRef50_M4UHU9 45.9517586493 0.500000000007 -45.4517586493 +UniRef50_I6TYT4 Transposase IS204 IS1001 IS1096 IS1165 family protein 0.435596107498 0.5 0.0644038925015 +UniRef50_S2ZWU0 0.146931988019 0.5 0.353068011981 +UniRef50_Q06115 Choloylglycine hydrolase 0.821841209135 0.5 -0.321841209135 +UniRef50_P25553 Lactaldehyde dehydrogenase 0.00055695477501 0.5 0.499443045225 +UniRef50_M9R5B4 Aminotransferase 2.47103252114 0.5 -1.97103252114 +UniRef50_Q9DWG9 Pr23.1 0.692602696499 0.5 -0.192602696499 +UniRef50_P17334 N,N diacetylchitobiose permease IIC component 1.17914097897 0.5 -0.679140978972 +UniRef50_UPI00021962A1 ABC type polar amino acid transport system, ATPase component, partial 0.479581429912 0.5 0.0204185700879 +UniRef50_UPI0003A69976 hypothetical protein 0.622126380031 0.5 -0.122126380031 +UniRef50_Q834B3 Phosphate import ATP binding protein PstB 2 0.0180373243578 0.5 0.481962675642 +UniRef50_R9ZFP1 MFS transporter 0.145251495582 0.5 0.354748504418 +UniRef50_Q49ZN6 N acetylmuramic acid 6 phosphate etherase 0.349553257938 0.5 0.150446742062 +UniRef50_K8E2U7 ABC transporter, CydDC cysteine exporter family, permease ATP binding protein CydD 0.143626402946 0.500000000001 0.356373597053 +UniRef50_A3M2G5 Transposition Helper 0.0203965714523 0.5 0.479603428548 +UniRef50_C5Y3F1 0.13739483239 0.5 0.362605167609 +UniRef50_K0SHL6 2.53584260444 0.5 -2.03584260444 +UniRef50_D3RCC5 Ethanolamine utilisation protein EutH 0.393096938453 0.5 0.106903061547 +UniRef50_J7R0T4 Rhsg core protein with extension 1.666591898 0.5 -1.166591898 +UniRef50_P20384 Putative transposon Tn552 DNA invertase bin3 3.66274180018 0.5 -3.16274180018 +UniRef50_P19672 Putative rRNA methyltransferase YqxC 0.00173829547065 0.5 0.498261704529 +UniRef50_W9BCF0 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.379897158552 0.5 0.120102841448 +UniRef50_M3Z7R3 1.10543191828 0.5 -0.605431918282 +UniRef50_F0KK38 0.0163233477369 0.5 0.483676652263 +UniRef50_N6VAB0 1.53729132295 0.499999999999 -1.03729132295 +UniRef50_Q2P582 Aspartate tRNA ligase 0.48965230438 0.5 0.0103476956199 +UniRef50_A1JSC3 UvrABC system protein B 0.996337427192 0.5 -0.496337427192 +UniRef50_O26273 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 1.47168905171 0.5 -0.971689051711 +UniRef50_P37772 Inner membrane ABC transporter permease protein YjfF 1.58542429927 0.5 -1.08542429927 +UniRef50_A0A026SW65 0.0098296288108 0.5 0.490170371189 +UniRef50_G8WJX8 0.135408817702 0.5 0.364591182298 +UniRef50_F0YA18 0.145477066517 0.5 0.354522933483 +UniRef50_UPI000368DC29 hypothetical protein 0.326990303297 0.5 0.173009696703 +UniRef50_UPI00029A2592 dihydrolipoamide dehydrogenase, partial 0.209591565084 0.5 0.290408434916 +UniRef50_P39858 Protein CapI 0.00935765060848 0.5 0.490642349392 +UniRef50_R4KAB8 High affinity sulfate transporter 1 0.257582860688 0.5 0.242417139312 +UniRef50_P67185 Probable transcriptional regulatory protein SAG1645 0.536952167064 0.5 -0.0369521670638 +UniRef50_D4HEB6 Ribosomal subunit interface protein 0.141102326859 0.5 0.358897673141 +UniRef50_S3NMU2 0.0140763250124 0.5 0.485923674987 +UniRef50_B7H1L0 EpsC 0.0460556105882 0.5 0.453944389412 +UniRef50_B6TJX5 Grx_I1 glutaredoxin subgroup III 0.725320155161 0.5 -0.225320155161 +UniRef50_V5VA90 0.00482151211336 0.500000000001 0.495178487886 +UniRef50_UPI0003DE9A9C PREDICTED 0.00917421887232 0.5 0.490825781128 +UniRef50_M4QX62 General secretion pathway protein D 0.00359753723932 0.5 0.496402462761 +UniRef50_P56123 Ribonuclease R 0.00774019208303 0.5 0.492259807917 +UniRef50_A6TXF8 Histidine ammonia lyase 3.05247061532 0.5 -2.55247061532 +UniRef50_Q9RU93 NADH dehydrogenase I, G subunit 0.00358133935422 0.5 0.496418660645 +UniRef50_H9JIZ2 2.38548237493 0.500000000001 -1.88548237493 +UniRef50_UPI00016C363F CheA signal transduction histidine kinase, partial 0.43107678783 0.5 0.0689232121698 +UniRef50_C6XJS7 Membrane protein 0.160609937924 0.5 0.339390062076 +UniRef50_D4HDP4 Transcriptional regulator, MerR family 0.0396174013382 0.5 0.460382598662 +UniRef50_S6VQV4 GlcG protein 0.184500174915 0.5 0.315499825085 +UniRef50_Q3HKF7 Transcriptional regulator, LysR family 2.02829339802 0.5 -1.52829339802 +UniRef50_Q48KH7 Response regulator 0.107074397869 0.5 0.39292560213 +UniRef50_Q4THH6 Chromosome undetermined SCAF2934, whole genome shotgun sequence. 19.19739877 0.500000000003 -18.69739877 +UniRef50_B5YJD3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.7943631606 0.500000000001 -2.2943631606 +UniRef50_Q02441 Denitrification regulatory protein NirQ 2.01353399787 0.5 -1.51353399787 +UniRef50_A6D100 0.0171768066668 0.5 0.482823193333 +UniRef50_E4ZAN9 NADH dehydrogenase I chain J 0.0336709273421 0.5 0.466329072658 +UniRef50_Q92IH1 DNA topoisomerase 1 0.525651040577 0.5 -0.025651040577 +UniRef50_R6GIU2 Anaerobic sulfite reductase subunit C 0.115811576773 0.5 0.384188423227 +UniRef50_UPI000478777B adenosine deaminase 0.220377320099 0.5 0.279622679901 +UniRef50_Q56220 NADH quinone oxidoreductase subunit 4 0.0517370512391 0.5 0.448262948761 +UniRef50_A1SS95 Prolipoprotein diacylglyceryl transferase 0.041227462897 0.5 0.458772537103 +UniRef50_UPI00035E9ADC hypothetical protein 0.0366155692644 0.5 0.463384430736 +UniRef50_Q30TV4 50S ribosomal protein L14 4.59519266127 0.5 -4.09519266127 +UniRef50_UPI0003788832 hypothetical protein 0.0437282823335 0.500000000001 0.456271717666 +UniRef50_V1GSR8 Siderophore interacting protein 0.630499504496 0.5 -0.130499504496 +UniRef50_U4KCQ5 Isoleucine tRNA ligase 1.05290022307 0.5 -0.552900223073 +UniRef50_K7RTE7 UvrD REP helicase 0.0233891919621 0.5 0.476610808038 +UniRef50_I6U2U0 Permease 2.10995789374 0.5 -1.60995789374 +UniRef50_Q5FJI8 Acyl carrier protein 0.260631430643 0.5 0.239368569357 +UniRef50_UPI000476D930 phosphopantetheine adenylyltransferase 0.742220850329 0.5 -0.242220850329 +UniRef50_W8VWJ7 0.225608997189 0.5 0.274391002811 +UniRef50_A5D1G8 Methylthioribose 1 phosphate isomerase 0.168729184364 0.5 0.331270815636 +UniRef50_UPI00047CDE52 hypothetical protein 0.214283860435 0.5 0.285716139565 +UniRef50_Q2FH48 Phosphate binding protein PstS 1.9500687917 0.500000000001 -1.4500687917 +UniRef50_Q5F4W9 Maf like protein NGO2175 0.032507692446 0.5 0.467492307554 +UniRef50_Q732I6 Orotidine 5 phosphate decarboxylase 0.482377886872 0.5 0.0176221131282 +UniRef50_P76612 2.35460379542 0.500000000001 -1.85460379543 +UniRef50_L1K5J8 28.3609242929 0.499999999972 -27.8609242928 +UniRef50_B2EBX5 0.235746048117 0.5 0.264253951883 +UniRef50_S6VZ76 Inner membrane translocator 3.99819901573 0.500000000001 -3.49819901573 +UniRef50_UPI0003B71E48 RNA polymerase subunit sigma 54 0.20694375078 0.5 0.29305624922 +UniRef50_P02930 Outer membrane protein TolC 0.919878131182 0.5 -0.419878131182 +UniRef50_A7ZK67 Methylglyoxal synthase 0.472538036883 0.5 0.0274619631174 +UniRef50_G2UGP7 Putative membrane protein 0.0204027694418 0.5 0.479597230558 +UniRef50_F2B298 Archaeal DNA polymerase II, large subunit 0.424647996559 0.5 0.0753520034414 +UniRef50_Q9DWH3 Pr5 0.325319723509 0.5 0.174680276491 +UniRef50_UPI00046774C4 phosphoserine phosphatase 0.227082579735 0.5 0.272917420265 +UniRef50_X6JA50 1.08667408758 0.5 -0.586674087578 +UniRef50_UPI0003752D0D hypothetical protein 0.300954316753 0.5 0.199045683247 +UniRef50_Q8CTJ5 1.6104228022 0.500000000001 -1.1104228022 +UniRef50_Q4UKI8 2 oxoglutarate dehydrogenase E1 component 0.0642742509241 0.5 0.435725749076 +UniRef50_Q5F5X5 0.047057545022 0.500000000001 0.452942454977 +UniRef50_O25441 0.00978010783511 0.5 0.490219892165 +UniRef50_A1U1S9 Acyl carrier protein 0.386723677957 0.5 0.113276322043 +UniRef50_D9SSR9 ABC transporter related 0.0255083949486 0.5 0.474491605051 +UniRef50_C5FF74 Splicing factor 3B subunit 4 0.564653997545 0.5 -0.0646539975454 +UniRef50_UPI00037E81F2 MULTISPECIES 0.790320261816 0.5 -0.290320261816 +UniRef50_D0K3P4 Sua5 YciO YrdC YwlC family protein 20.7341269983 0.500000000001 -20.2341269983 +UniRef50_Q5HDX9 Adenylate kinase 1.82634951723 0.500000000001 -1.32634951723 +UniRef50_B2IR65 0.243147589791 0.5 0.256852410209 +UniRef50_P0A5W9 Ribonucleoside diphosphate reductase subunit alpha 0.116465163925 0.5 0.383534836075 +UniRef50_Q5HK23 Ribosomal RNA large subunit methyltransferase H 3.81806033111 0.5 -3.31806033111 +UniRef50_D5H605 1.38599449705 0.5 -0.885994497055 +UniRef50_V8NVA5 Vegetative cell wall protein gp1 0.036234265384 0.5 0.463765734616 +UniRef50_T0GPL5 1.00545558638 0.5 -0.505455586379 +UniRef50_B7GX14 Probable 5 dehydro 4 deoxyglucarate dehydratase 0.013040807329 0.5 0.486959192671 +UniRef50_A4X329 Transcriptional regulator, LacI family 0.0130550630026 0.5 0.486944936998 +UniRef50_Q837B3 Methionine tRNA ligase 0.0189517673255 0.5 0.481048232674 +UniRef50_K2DQ88 0.00567911133608 0.5 0.494320888664 +UniRef50_P52002 Multidrug resistance protein MexB 0.772739374383 0.5 -0.272739374383 +UniRef50_UPI00039FB6D9 hypothetical protein 0.00363882984429 0.5 0.496361170156 +UniRef50_UPI0004153B49 hypothetical protein 2.3467968642 0.499999999999 -1.84679686419 +UniRef50_Q5HJ26 Single stranded DNA binding protein 2 3.17297731275 0.500000000001 -2.67297731275 +UniRef50_UPI000378D9CD hypothetical protein, partial 0.00985506190961 0.5 0.49014493809 +UniRef50_E3I295 Peptidase M20 2.01154433372 0.500000000001 -1.51154433372 +UniRef50_V7EQE6 0.916175299184 0.5 -0.416175299184 +UniRef50_P96963 DNA repair protein RadA homolog 1.20697021937 0.5 -0.706970219368 +UniRef50_UPI000197AB3D hypothetical protein 1.53952582035 0.5 -1.03952582035 +UniRef50_Q3ACZ7 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 8.74433057295 0.500000000012 -8.24433057296 +UniRef50_R9SL16 Energy converting hydrogenase A subunit P EhaP 1.32081006979 0.5 -0.820810069794 +UniRef50_H2JC94 Drug resistance transporter, EmrB QacA subfamily 0.0547070298624 0.5 0.445292970138 +UniRef50_D7FCY4 0.0179488331435 0.500000000001 0.482051166856 +UniRef50_O30807 NAD dependent malic enzyme 1.20877619021 0.5 -0.708776190211 +UniRef50_T1YCF9 1.1550819624 0.5 -0.655081962404 +UniRef50_UPI000367099C 30S ribosomal protein S2 0.55745886893 0.5 -0.0574588689303 +UniRef50_UPI00036ED496 hypothetical protein 1.79767832088 0.5 -1.29767832088 +UniRef50_D3QF63 2.32340707432 0.500000000002 -1.82340707433 +UniRef50_G8RGA7 ATP dependent DNA helicase, RecQ family 2.9475129695 0.5 -2.4475129695 +UniRef50_UPI00046621BD hypothetical protein 0.015107343994 0.5 0.484892656006 +UniRef50_UPI00034B9DA0 hypothetical protein 0.259580982634 0.5 0.240419017366 +UniRef50_Q39FG9 0.21324939576 0.5 0.28675060424 +UniRef50_Q8X6C5 Xanthine dehydrogenase FAD binding subunit 1.94144486159 0.5 -1.44144486159 +UniRef50_J0PUR2 1.8382361642 0.5 -1.3382361642 +UniRef50_Q8NNF6 Pyruvate dehydrogenase E1 component 0.0257476195653 0.5 0.474252380435 +UniRef50_UPI00035DD0A3 hypothetical protein 0.00486585062007 0.500000000001 0.495134149379 +UniRef50_B9L9V6 Inner membrane protein YjcH 1.42241134556 0.500000000002 -0.922411345566 +UniRef50_P0AFN4 Phage shock protein C 1.22458847909 0.5 -0.724588479088 +UniRef50_Q3ZTZ2 0.353129002254 0.5 0.146870997746 +UniRef50_E1RPL7 0.319560307807 0.5 0.180439692193 +UniRef50_UPI00040408E0 hypothetical protein 0.175014944631 0.5 0.324985055369 +UniRef50_V4QZ67 ATPase 0.61061787482 0.5 -0.11061787482 +UniRef50_Q5HNT4 Putative Holliday junction resolvase 1.29519944377 0.5 -0.795199443766 +UniRef50_X6KWG2 1.79320219706 0.499999999998 -1.29320219706 +UniRef50_Q6F6Q1 0.0264951194948 0.5 0.473504880505 +UniRef50_A0L3B2 Diguanylate cyclase with GAF sensor 0.0115265117872 0.5 0.488473488213 +UniRef50_P67702 Antitoxin HigA 0.640664385221 0.5 -0.140664385221 +UniRef50_N8J4Y3 sn glycerol 3 phosphate binding periplasmic protein ugpB 1.21333057805 0.5 -0.713330578052 +UniRef50_K7ARY8 0.430074678082 0.5 0.0699253219182 +UniRef50_Q57SA8 7 cyano 7 deazaguanine synthase 1.81330364777 0.5 -1.31330364777 +UniRef50_B2VDK4 Acyl carrier protein 0.375995611349 0.5 0.124004388651 +UniRef50_B1Y7H6 50S ribosomal protein L1 0.0194746844576 0.5 0.480525315542 +UniRef50_M4YP28 Chemotaxis protein 0.144935027721 0.5 0.355064972279 +UniRef50_A3M533 Lysozyme 0.102384234596 0.5 0.397615765404 +UniRef50_K6EM30 Peptidase S8 and S53 subtilisin kexin sedolisin 0.711556118894 0.5 -0.211556118894 +UniRef50_Q5HQ05 Laccase domain protein SERP0752 2.15617933913 0.500000000001 -1.65617933913 +UniRef50_C5AB28 0.400994555792 0.5 0.0990054442077 +UniRef50_UPI0004694578 30S ribosomal protein S15 2.72205596711 0.500000000001 -2.22205596711 +UniRef50_Q04EV5 Arginine deiminase 1.50804717462 0.5 -1.00804717462 +UniRef50_Q1J141 Xanthine phosphoribosyltransferase 8.41976765743e-05 0.5 0.499915802323 +UniRef50_Q5ZS58 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.0019434275 0.5 -0.501943427499 +UniRef50_I2FAM4 SpfH domain band 7 family protein 0.0128139245865 0.5 0.487186075414 +UniRef50_F7ZBN3 4.22787513394 0.500000000002 -3.72787513395 +UniRef50_A1B198 4 hydroxyproline betaine 2 epimerase 2.94444355601 0.500000000002 -2.44444355602 +UniRef50_G8QM91 0.156785183473 0.5 0.343214816527 +UniRef50_B9KJK7 0.656323988627 0.5 -0.156323988627 +UniRef50_UPI00036F49F7 hypothetical protein 0.0266905848548 0.5 0.473309415145 +UniRef50_P75938 Flagellar basal body rod protein FlgF 6.950668645 0.500000000004 -6.45066864501 +UniRef50_A0A011Q6F6 Ribosomal RNA small subunit methyltransferase I 1.72718056004 0.5 -1.22718056004 +UniRef50_L7HXW0 0.903782515599 0.5 -0.403782515599 +UniRef50_K1V2Z1 0.551030191506 0.5 -0.0510301915064 +UniRef50_J3M0X2 0.0259568763192 0.5 0.474043123681 +UniRef50_T1YBW3 ABC transporter ATP binding and permease protein 1.41940705218 0.5 -0.91940705218 +UniRef50_Q216W2 Transcriptional regulator, GntR family 0.740972709163 0.5 -0.240972709163 +UniRef50_B9KU54 14.4982020225 0.499999999998 -13.9982020225 +UniRef50_D8JAP3 ABC transporter 1.78925534872 0.499999999999 -1.28925534872 +UniRef50_C4K764 Phosphopantetheine adenylyltransferase 1.07336905764 0.5 -0.573369057637 +UniRef50_Q9RWE3 0.00421725538105 0.5 0.495782744619 +UniRef50_A4BRR9 1.58553021375 0.5 -1.08553021375 +UniRef50_F0RR64 0.00140415073901 0.5 0.498595849261 +UniRef50_A5IUW4 Transport system permease protein 1.23447706728 0.5 -0.734477067281 +UniRef50_L2Z1P6 Evolved beta galactosidase subunit alpha 3.4862090779 0.5 -2.9862090779 +UniRef50_F6BWB1 Transcriptional regulator, MerR family 0.550859194867 0.5 -0.0508591948666 +UniRef50_I4SHI8 Rhs core protein with extension 0.962168048929 0.5 -0.462168048929 +UniRef50_UPI00018513F7 Acyl CoA dehydrogenase 0.251121333599 0.5 0.248878666401 +UniRef50_K0SMT2 0.124814699708 0.5 0.375185300292 +UniRef50_UPI00037E2E9B hypothetical protein 0.240394148026 0.5 0.259605851974 +UniRef50_A8KZZ6 ABC transporter related 0.00765458136929 0.5 0.492345418631 +UniRef50_UPI0003735C5A hypothetical protein 0.815788403366 0.5 -0.315788403366 +UniRef50_A5FWE5 0.194590907143 0.5 0.305409092857 +UniRef50_A6T7G7 UPF0227 protein KPN78578_10770 1.811816578 0.5 -1.311816578 +UniRef50_F8IMA6 Transposase 0.248969193593 0.5 0.251030806407 +UniRef50_A3DJF6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.337473458879 0.5 0.162526541121 +UniRef50_F6GAA5 0.693998887737 0.5 -0.193998887737 +UniRef50_Q8DIA7 Phosphoribosylformylglycinamidine synthase 2 2.22545446552 0.499999999999 -1.72545446552 +UniRef50_R6QY26 FAD dependent oxidoreductase 0.39166056356 0.5 0.10833943644 +UniRef50_UPI000475B264 glyoxal reductase 0.328455015619 0.5 0.171544984381 +UniRef50_A8YZY5 Anthranilate synthase 1.20354271668 0.500000000001 -0.70354271668 +UniRef50_Q9ZIJ1 Gluconate permease 0.0749840031762 0.5 0.425015996824 +UniRef50_K0LVM3 Fructose phosphotransferase system enzyme fruA homolog 1.50045654931 0.5 -1.00045654931 +UniRef50_UPI00047E7610 peroxiredoxin 0.0398384146298 0.5 0.46016158537 +UniRef50_UPI0001912667 hypothetical protein 1.97290590401 0.5 -1.47290590401 +UniRef50_A4J4I2 Glucose 1 phosphate adenylyltransferase 0.134451860704 0.5 0.365548139296 +UniRef50_P42425 Lon protease 2 0.0321885785768 0.5 0.467811421423 +UniRef50_W7Z889 0.292218704856 0.5 0.207781295144 +UniRef50_I2NPW1 0.0178828486196 0.5 0.48211715138 +UniRef50_A0L4I8 Transcriptional regulator, BolA protein family 0.309958669863 0.5 0.190041330137 +UniRef50_A6M0C5 Metallophosphoesterase 0.276178941712 0.5 0.223821058288 +UniRef50_UPI000399D7FF dihydrolipoyl dehydrogenase 0.331399378363 0.5 0.168600621637 +UniRef50_Q6A9R0 Ribosomal RNA small subunit methyltransferase H 0.0635853727 0.5 0.4364146273 +UniRef50_UPI0004414ABB LamB YcsF family protein 0.650769250692 0.5 -0.150769250692 +UniRef50_Q9I3J5 5 hydroxyisourate hydrolase 1.01011779776 0.5 -0.510117797755 +UniRef50_Q7DKE3 Nitrile hydratase activator 0.411498864877 0.5 0.0885011351228 +UniRef50_C5MZU9 Formate nitrite transporter 1.84480673561 0.5 -1.34480673561 +UniRef50_UPI000364C078 hypothetical protein 1.50062808044 0.5 -1.00062808044 +UniRef50_Q88Z97 Methionine tRNA ligase 1.95611826586 0.5 -1.45611826586 +UniRef50_X2HX12 Membrane protein 0.0304258076046 0.5 0.469574192395 +UniRef50_E3HGU2 Oxidoreductase FAD binding domain protein 3 0.586423389412 0.5 -0.0864233894116 +UniRef50_UPI0001816FFE transposase 14.5676941358 0.500000000021 -14.0676941358 +UniRef50_K8C391 0.0540740818273 0.5 0.445925918173 +UniRef50_P28998 NADP specific glutamate dehydrogenase 0.00334502879159 0.5 0.496654971208 +UniRef50_UPI00029B44FF UDP N acetylglucosamine 1 carboxyvinyltransferase 0.378690588918 0.5 0.121309411082 +UniRef50_A0RUI8 Proline tRNA ligase 0.112266971751 0.5 0.387733028249 +UniRef50_B2TJ76 Tetratricopeptide repeat domain protein 0.0491201411148 0.5 0.450879858885 +UniRef50_A0A023S0D0 LysR family transcriptional regulator 0.0122997115578 0.5 0.487700288442 +UniRef50_K0S2A3 0.47322348813 0.5 0.0267765118699 +UniRef50_UPI0002DDE7B4 nitrate nitrite transport protein NarU 0.126223417494 0.5 0.373776582506 +UniRef50_G2AG81 Protein ydeP domain protein 0.131252503775 0.5 0.368747496225 +UniRef50_Q92ID5 NADH quinone oxidoreductase subunit A 0.283222734781 0.5 0.216777265219 +UniRef50_UPI00046263A7 PREDICTED 0.61171303049 0.5 -0.11171303049 +UniRef50_F3ZH54 Putative xanthine dehydrogenase YagT iron sulfur binding subunit 0.0612790042762 0.5 0.438720995724 +UniRef50_P55611 Probable trehalose phosphate phosphatase 0.44347106031 0.5 0.0565289396903 +UniRef50_UPI000378EE70 hypothetical protein 0.121175468858 0.5 0.378824531142 +UniRef50_A4Y1A0 Membrane protein insertase YidC 0.258905253433 0.5 0.241094746567 +UniRef50_X2MVD0 0.47337119258 0.5 0.0266288074202 +UniRef50_B9KWB3 0.333942006852 0.5 0.166057993148 +UniRef50_F3ZFZ6 0.00629393260696 0.5 0.493706067393 +UniRef50_A8IHG6 Predicted protein 2.12880721753 0.5 -1.62880721753 +UniRef50_Q1QCK7 Glutamate synthase 0.00814293938692 0.5 0.491857060613 +UniRef50_J0KVM1 0.0777640402969 0.5 0.422235959703 +UniRef50_C6SPT4 0.541877031353 0.5 -0.0418770313529 +UniRef50_UPI000309C6DF N acetyl gamma glutamyl phosphate reductase 0.0308885006021 0.5 0.469111499398 +UniRef50_UPI000375AEDF hypothetical protein 0.457936852539 0.5 0.0420631474612 +UniRef50_B4JDR2 GH10507 0.299926148849 0.5 0.200073851151 +UniRef50_U6UKQ1 Hydroxylamine reductase 0.638227918718 0.5 -0.138227918718 +UniRef50_P26512 Aspartokinase 0.0521707886399 0.5 0.44782921136 +UniRef50_W4TKQ6 0.0171152280396 0.499999999999 0.482884771961 +UniRef50_UPI000463F4EC LamB YcsF family protein 1.23450362126 0.5 -0.73450362126 +UniRef50_G2JZ43 Carnitine transport permease protein OpuCB 1.93297389848 0.499999999999 -1.43297389848 +UniRef50_UPI00047A693B chemotaxis protein CheY 0.771091358085 0.5 -0.271091358085 +UniRef50_J8VGX4 1.91142428052 0.499999999998 -1.41142428051 +UniRef50_UPI00045746A5 PREDICTED 0.547690611995 0.5 -0.0476906119952 +UniRef50_UPI00046E1FAA PREDICTED 0.0814795057062 0.5 0.418520494294 +UniRef50_P32154 Fructose like PTS system EIIBC component 1.17422197907 0.5 -0.674221979075 +UniRef50_M9VG84 Class I glutamine amidotransferase 0.100412293324 0.5 0.399587706676 +UniRef50_UPI0003B3C78A acyl CoA synthetase 0.045273140621 0.5 0.454726859379 +UniRef50_B7IPS6 Prolipoprotein diacylglyceryl transferase 0.00389091090987 0.5 0.49610908909 +UniRef50_D3DYK7 ATPase 0.993409679602 0.5 -0.493409679602 +UniRef50_UPI000225AB9D 3 oxoacyl ACP synthase 0.865804875013 0.5 -0.365804875013 +UniRef50_Q57GZ6 Maltoporin 0.954377909858 0.5 -0.454377909858 +UniRef50_R6ZP96 1.16435463957 0.5 -0.664354639572 +UniRef50_Q59660 Succinate dehydrogenase hydrophobic membrane anchor subunit 4.49458294232 0.500000000002 -3.99458294232 +UniRef50_B6IRS5 50S ribosomal protein L15 0.0336091766868 0.5 0.466390823313 +UniRef50_C6D8U7 0.13714699115 0.5 0.36285300885 +UniRef50_S4XBL3 0.187876997967 0.5 0.312123002033 +UniRef50_I0EUL3 N5 glutamine S adenosyl L methionine dependent methyltransferase 0.0200852568278 0.5 0.479914743172 +UniRef50_UPI00032980B7 PREDICTED 0.390407150043 0.5 0.109592849957 +UniRef50_D1DJZ6 TspB like protein 0.0257419318805 0.5 0.474258068119 +UniRef50_UPI0003765EEE hypothetical protein 0.0900465837348 0.5 0.409953416265 +UniRef50_D1AIW2 PTS system Galactitol specific IIC component 0.181060815697 0.5 0.318939184303 +UniRef50_Q18KF1 ABC type transport system ATP binding protein 2.49989849963 0.500000000001 -1.99989849963 +UniRef50_UPI0004293C91 UDP glucose 6 dehydrogenase 0.257801844766 0.5 0.242198155234 +UniRef50_Q9CDF7 Putative sugar uptake protein YxfA 4.36919665688 0.500000000001 -3.86919665688 +UniRef50_B2I785 NADH quinone oxidoreductase subunit B 0.214907761017 0.5 0.285092238983 +UniRef50_Q3J1U1 RNA polymerase sigma 54 factor 2.13258281324 0.5 -1.63258281324 +UniRef50_P52073 Glycolate oxidase subunit GlcE 3.59481838021 0.500000000001 -3.09481838021 +UniRef50_K0STI8 2.48646963746 0.500000000002 -1.98646963746 +UniRef50_D2B0E6 0.257776919576 0.5 0.242223080424 +UniRef50_W9FWD7 9.80718086022 0.500000000003 -9.30718086022 +UniRef50_B5QX27 Quinolinate synthase A 3.51882831572 0.499999999996 -3.01882831571 +UniRef50_F4FX21 Transcriptional regulator, MerR family 0.101354903893 0.5 0.398645096107 +UniRef50_C6AZU8 ABC transporter related 0.000624860116448 0.5 0.499375139883 +UniRef50_A5ISU0 von Willebrand factor, type A 1.8968526218 0.499999999998 -1.3968526218 +UniRef50_B4W755 1.12481423175 0.5 -0.62481423175 +UniRef50_UPI0003B6DDE5 quaternary ammonium transporter 1.81185067108 0.5 -1.31185067108 +UniRef50_P03835 Transposase InsG for insertion sequence element IS4 2.44894813401 0.5 -1.94894813401 +UniRef50_L8UD09 0.0935473044622 0.5 0.406452695538 +UniRef50_A6M0D9 Transcriptional regulator, XRE family 3.01917008234 0.500000000002 -2.51917008234 +UniRef50_C7MAG4 Phosphate sulfate permease 0.0397435912231 0.5 0.460256408777 +UniRef50_B9KUA0 CBS domain containing protein 6.79097483723 0.500000000001 -6.29097483723 +UniRef50_UPI00045E7085 hypothetical protein 0.10598033337 0.5 0.39401966663 +UniRef50_Q4UKX5 DNA gyrase subunit B 0.3873802624 0.5 0.1126197376 +UniRef50_A3M4L9 0.0432042746994 0.5 0.4567957253 +UniRef50_Q8EUR3 Spermidine putrescine import ATP binding protein PotA 0.31059767872 0.5 0.18940232128 +UniRef50_A8GIP4 Lysine tRNA ligase 0.412662838932 0.5 0.0873371610676 +UniRef50_UPI0004654768 hypothetical protein 0.549603789142 0.5 -0.049603789142 +UniRef50_G1C7I1 Nucleoid occlusion protein 0.147677436402 0.5 0.352322563599 +UniRef50_Q28NF0 Probable chemoreceptor glutamine deamidase CheD 2.94901601635 0.499999999999 -2.44901601635 +UniRef50_M1YTR4 0.0457028597839 0.5 0.454297140216 +UniRef50_D7BML1 Putative molybdopterin guanine dinucleotide biosynthesis protein A 0.11138248734 0.5 0.38861751266 +UniRef50_UPI0003B32011 cytidylate kinase 0.0450953580424 0.5 0.454904641958 +UniRef50_F4A9G3 Glycerol dehydratase activator 0.0679374255667 0.5 0.432062574433 +UniRef50_B4U247 Shikimate kinase 0.276943373388 0.5 0.223056626612 +UniRef50_P06200 Hemolytic phospholipase C 4.68912801032 0.500000000006 -4.18912801033 +UniRef50_X5PED3 1.10157916672 0.5 -0.60157916672 +UniRef50_Q6N9W0 Methionine import ATP binding protein MetN 1 2.52306548983 0.500000000003 -2.02306548983 +UniRef50_UPI000464B4E9 hypothetical protein 4.21378915162 0.500000000001 -3.71378915162 +UniRef50_B3EQT3 Recombination protein RecR 11.611232191 0.500000000001 -11.111232191 +UniRef50_Q6ARX8 NADPH dependent 7 cyano 7 deazaguanine reductase 0.0231378491531 0.5 0.476862150847 +UniRef50_X1YMT4 1.77272125436 0.500000000001 -1.27272125437 +UniRef50_B9KK74 Cellulose synthase 0.614354154942 0.5 -0.114354154942 +UniRef50_Q1GHF8 TRAP transporter solute receptor TAXI family 3.37151892989 0.499999999999 -2.87151892989 +UniRef50_UPI000472F33D hypothetical protein 5.56146283911 0.499999999996 -5.0614628391 +UniRef50_I6TQ16 Pyridoxamine kinase 1.28600680724 0.5 -0.78600680724 +UniRef50_P57024 Outer membrane lipoprotein LolB 0.0346396595442 0.5 0.465360340455 +UniRef50_Q17X82 0.0238479876743 0.5 0.476152012326 +UniRef50_B9KKX8 Cyclic nucleotide binding protein 2.90545029957 0.500000000001 -2.40545029957 +UniRef50_UPI000255F810 TetR family transcriptional regulator 0.48522424815 0.5 0.0147757518496 +UniRef50_Q1QE80 Spermidine putrescine import ATP binding protein PotA 0.794755623205 0.5 -0.294755623205 +UniRef50_UPI00029CBAAC methylmalonate semialdehyde dehydrogenase , partial 3.7601867328 0.500000000001 -3.2601867328 +UniRef50_UPI00036486F4 hypothetical protein 0.243863646913 0.5 0.256136353087 +UniRef50_S9UQG0 0.149868450442 0.5 0.350131549558 +UniRef50_M0SWW4 0.43981213732 0.5 0.0601878626803 +UniRef50_UPI00045D969B PREDICTED 0.300833934083 0.5 0.199166065917 +UniRef50_Q03736 Cytochrome c oxidase subunit 2 1.13263888035 0.5 -0.632638880355 +UniRef50_UPI00046AFEA5 membrane protein 0.806943056463 0.5 -0.306943056463 +UniRef50_UPI0004706261 hypothetical protein 0.0886084993251 0.5 0.411391500675 +UniRef50_Q5LRL4 Outer membrane transporter, OMPP1 FadL TodX family 0.819341112396 0.5 -0.319341112396 +UniRef50_UPI0002F47A97 hypothetical protein 0.117513617275 0.5 0.382486382725 +UniRef50_J9P1L3 0.0117017661879 0.5 0.488298233812 +UniRef50_A6LXP7 Proton translocating NADH quinone oxidoreductase, chain L 0.150341530806 0.5 0.349658469194 +UniRef50_A5EWC1 Conserved hypothetical lipoprotein 0.316419855074 0.5 0.183580144926 +UniRef50_A0A024HWT5 0.0739835401268 0.5 0.426016459873 +UniRef50_P42887 Urease subunit gamma 0.138035043232 0.5 0.361964956768 +UniRef50_A3PPK4 Amidase 1.1688784375 0.5 -0.668878437499 +UniRef50_X9TRB8 1.01953532128 0.500000000001 -0.51953532128 +UniRef50_UPI00047046AB Fis family transcriptional regulator 0.199039498154 0.5 0.300960501846 +UniRef50_UPI00037B45E9 GTPase Era 0.0687016820485 0.499999999999 0.431298317952 +UniRef50_UPI000262D14F electron transport complex RsxE subunit 1.74706901664 0.5 -1.24706901664 +UniRef50_N9HZ93 0.00705436365067 0.500000000001 0.492945636349 +UniRef50_J9H507 Membrane protein 2.01745283636 0.500000000002 -1.51745283636 +UniRef50_UPI0004646E3C ABC transporter ATP binding protein, partial 0.114885499589 0.5 0.385114500411 +UniRef50_UPI00034566D0 hypothetical protein 0.888835206068 0.5 -0.388835206068 +UniRef50_R5FYT2 Riboflavin synthase alpha subunit 0.0510627533763 0.5 0.448937246624 +UniRef50_Q0FTZ1 ISSpo9, transposase 2.55218010737 0.500000000004 -2.05218010737 +UniRef50_UPI00045E74EB hypothetical protein 0.145699695128 0.5 0.354300304872 +UniRef50_A0A058T3B4 Transcriptional regulator 0.611828747856 0.5 -0.111828747856 +UniRef50_Q9RXT9 Thiosulfate sulfurtransferase 0.00216609252815 0.5 0.497833907472 +UniRef50_L7WYV1 Lipase esterase 1.86157116942 0.499999999999 -1.36157116942 +UniRef50_W0HAM9 0.569800108736 0.5 -0.0698001087359 +UniRef50_B9E397 0.614657772979 0.5 -0.114657772979 +UniRef50_N2IAD7 Response regulator 0.421622421945 0.5 0.0783775780552 +UniRef50_UPI000467FD4C isopentenyl diphosphate delta isomerase 4.86469509187 0.500000000001 -4.36469509187 +UniRef50_UPI00046ABA5E hypothetical protein 0.00810186697452 0.5 0.491898133025 +UniRef50_A0A033UF50 0.473786299119 0.5 0.0262137008808 +UniRef50_E0MPD3 UPF0301 protein R2A130_1378 0.331403388086 0.5 0.168596611914 +UniRef50_UPI00036D5BBB hypothetical protein 0.678665991336 0.5 -0.178665991336 +UniRef50_F3WHU8 Peptidase M16 inactive domain protein 1.42958447393 0.500000000001 -0.92958447393 +UniRef50_C0DSE0 BolA like protein 0.0689902684514 0.5 0.431009731549 +UniRef50_O23346 Imidazoleglycerol phosphate dehydratase 2, chloroplastic 0.344163927359 0.5 0.155836072641 +UniRef50_UPI00035E3A63 hypothetical protein, partial 0.508279916983 0.5 -0.00827991698295 +UniRef50_B6JMQ6 tRNA methyltransferase 0.045319806687 0.500000000001 0.454680193313 +UniRef50_UPI00006CF872 ribosomal protein L33 containing protein 1.89755463029 0.5 -1.39755463029 +UniRef50_UPI00045E7D30 hypothetical protein 0.350687893511 0.5 0.149312106489 +UniRef50_F3ZJM5 Putative alpha ribazole phosphatase 0.954161701786 0.5 -0.454161701786 +UniRef50_Q8FFY2 2.07071026841 0.5 -1.57071026841 +UniRef50_Q7UM14 Tyrosine tRNA ligase 0.31410762236 0.5 0.18589237764 +UniRef50_F9YXK4 Membrane spanning protein 0.0474001334014 0.5 0.452599866599 +UniRef50_A7IAF5 Phosphoribosylaminoimidazole succinocarboxamide synthase 1.3630430419 0.5 -0.863043041898 +UniRef50_M1QZS4 0.299709946426 0.5 0.200290053574 +UniRef50_UPI00016C5421 molybdenum cofactor biosynthesis protein 0.165541028895 0.5 0.334458971105 +UniRef50_Q9JXP4 Probable aromatic acid decarboxylase 0.262962545017 0.5 0.237037454983 +UniRef50_R5EVW4 0.00201956394894 0.5 0.497980436051 +UniRef50_UPI0002F70260 hypothetical protein 0.00977976602315 0.5 0.490220233977 +UniRef50_Q2RZJ2 Proline tRNA ligase 0.000752029130534 0.5 0.499247970869 +UniRef50_C6ECF3 3 keto L gulonate 6 phosphate decarboxylase UlaD 0.862711270495 0.5 -0.362711270495 +UniRef50_UPI000349CFD5 hypothetical protein 0.307230024638 0.5 0.192769975362 +UniRef50_R1CIV3 0.921536203767 0.5 -0.421536203767 +UniRef50_P17888 Primosomal protein N 1.85977569339 0.499999999999 -1.35977569339 +UniRef50_Q9AGA7 PTS system alpha glucoside specific EIICB component 0.791400119651 0.5 -0.291400119651 +UniRef50_P15032 Exodeoxyribonuclease 8 3.74402750153 0.499999999994 -3.24402750152 +UniRef50_A8TPL9 1.36561299378 0.5 -0.865612993778 +UniRef50_UPI00046AC3A5 hypothetical protein 4.95832537224 0.499999999993 -4.45832537224 +UniRef50_P0AG04 3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein 19.2774479156 0.499999999994 -18.7774479156 +UniRef50_G2L7T9 0.291466403735 0.5 0.208533596265 +UniRef50_UPI000479AE2C hypothetical protein 2.96049597049 0.500000000006 -2.4604959705 +UniRef50_A3PKK4 Acyl homoserine lactone synthase 1.30254968691 0.5 -0.802549686912 +UniRef50_A3PS02 WGR domain protein 4.27516376677 0.500000000006 -3.77516376677 +UniRef50_UPI0002B9C508 hypothetical protein 0.118595352108 0.499999999999 0.381404647893 +UniRef50_Q9RUQ6 Carboxymethylenebutenolidase related protein 0.0157110067792 0.5 0.484288993221 +UniRef50_UPI0001584880 hypothetical protein BC1G_07259 0.219449286504 0.500000000001 0.280550713496 +UniRef50_H2G856 Putative terminase large subunit 0.134029784222 0.5 0.365970215778 +UniRef50_Q87UY0 Glucans biosynthesis protein G 0.308141126677 0.5 0.191858873323 +UniRef50_UPI0003B5126A addiction module toxin YoeB 0.045178645368 0.5 0.454821354632 +UniRef50_D9Y290 1.5300441219 0.499999999999 -1.0300441219 +UniRef50_UPI0003F9F930 hypothetical protein, partial 0.00550992253618 0.5 0.494490077464 +UniRef50_UPI00046644CC peptide ABC transporter permease 0.25346685846 0.5 0.24653314154 +UniRef50_Q65I39 3 phosphoshikimate 1 carboxyvinyltransferase 0.254580592034 0.5 0.245419407966 +UniRef50_P0AEB6 Low conductance mechanosensitive channel YnaI 8.27442138875 0.499999999997 -7.77442138875 +UniRef50_X0V3Z0 Marine sediment metagenome DNA, contig 0.122297638908 0.5 0.377702361092 +UniRef50_D3SDU3 30.0048976547 0.50000000001 -29.5048976547 +UniRef50_C3SN52 1.52322181491 0.499999999999 -1.02322181491 +UniRef50_UPI0003745614 hypothetical protein 1.109360871 0.5 -0.609360870999 +UniRef50_H0P3C7 0.543593522353 0.5 -0.0435935223527 +UniRef50_A0A024HAE7 Glucose 6 phosphate 1 dehydrogenase 0.35926118765 0.5 0.14073881235 +UniRef50_UPI0001911F20 hypothetical protein, partial 0.184179197207 0.5 0.315820802793 +UniRef50_A0A009L0Q9 Diguanylate cyclase domain protein 0.0394624186242 0.499999999999 0.460537581376 +UniRef50_A0A008QSP4 1.15627861298 0.5 -0.656278612985 +UniRef50_Q3J2Z8 RNA polymerase sigma factor 1.13753196504 0.5 -0.637531965039 +UniRef50_UPI0003753584 hypothetical protein 2.06968466711 0.499999999998 -1.56968466711 +UniRef50_Q02Y94 Na+ driven multidrug efflux pump 0.427806021018 0.5 0.0721939789822 +UniRef50_UPI0003B604B4 hypothetical protein 0.290520645974 0.5 0.209479354026 +UniRef50_D0NVH9 Adenylosuccinate synthetase 0.170295491293 0.5 0.329704508707 +UniRef50_W5XEU5 Putative N acyl D glucosamine 2 epimerase 7.53321362655 0.500000000002 -7.03321362656 +UniRef50_V4N2T0 0.865281140225 0.5 -0.365281140225 +UniRef50_A4THV9 1.87695790155 0.500000000001 -1.37695790156 +UniRef50_UPI0003802F25 hypothetical protein 0.139374116882 0.5 0.360625883118 +UniRef50_Q8FUU5 Zinc import ATP binding protein ZnuC 0.723570747025 0.5 -0.223570747025 +UniRef50_W5XB82 Putative family S53 non peptidase like protein 0.0769778724504 0.5 0.42302212755 +UniRef50_H3X653 Osmosensitive K+ channel His kinase sensor domain protein 1.85018050809 0.5 -1.35018050809 +UniRef50_Q2W7P1 1.40296253524 0.5 -0.902962535238 +UniRef50_R5BHR4 Phage terminase 0.0240186919982 0.5 0.475981308002 +UniRef50_A5N0V8 LivM 0.303129032667 0.5 0.196870967333 +UniRef50_A5N2L5 Orotidine 5 phosphate decarboxylase 0.152570444688 0.500000000001 0.347429555312 +UniRef50_A6LXZ9 MATE efflux family protein 0.030270600654 0.500000000001 0.469729399345 +UniRef50_N9WGA2 0.34467250804 0.5 0.15532749196 +UniRef50_UPI00016C57A2 elongation factor G, partial 0.220657365875 0.5 0.279342634125 +UniRef50_C1D5R6 Membrane protein 0.00743203270369 0.500000000001 0.492567967296 +UniRef50_UPI00036AFE80 cell wall hydrolase 0.686348838641 0.5 -0.186348838641 +UniRef50_A3M865 0.0102877218158 0.5 0.489712278184 +UniRef50_Q7WLL0 Cysteine tRNA ligase 0.144516703584 0.5 0.355483296416 +UniRef50_P18249 RNA polymerase principal sigma factor HrdD 0.0390107355048 0.5 0.460989264495 +UniRef50_UPI0003B42D49 5 hydroxymethyluracil DNA glycosylase 0.0314353345281 0.5 0.468564665472 +UniRef50_D6UF03 2.49809472902 0.500000000001 -1.99809472902 +UniRef50_R1CXM7 0.151562983768 0.5 0.348437016232 +UniRef50_UPI000399BF1B S adenosylmethionine synthetase 0.0981693854878 0.5 0.401830614512 +UniRef50_X5ZAH5 0.756835135384 0.5 -0.256835135384 +UniRef50_UPI0003698C0E hypothetical protein, partial 1.35238237783 0.5 -0.852382377828 +UniRef50_W6EUE7 1.68754967498 0.5 -1.18754967498 +UniRef50_V5SUH2 LysR family transcriptional regulator 0.244421173739 0.5 0.255578826261 +UniRef50_M7CYD5 Thioesterase 0.890590225366 0.5 -0.390590225366 +UniRef50_Q64GH1 Putative enoyl reductase 0.0951306581517 0.5 0.404869341848 +UniRef50_D6GTM4 Rubredoxin 0.0618015481965 0.5 0.438198451803 +UniRef50_E1VWJ8 Protein NrdI 0.00198434078837 0.5 0.498015659212 +UniRef50_A8F516 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.586143536033 0.5 -0.0861435360326 +UniRef50_UPI000225A8AA NUDIX hydrolase 2.66235016628 0.5 -2.16235016628 +UniRef50_UPI000225AEF7 D amino acid aminotransferase 0.414692095872 0.5 0.0853079041282 +UniRef50_UPI00047468F0 sulfurase 0.868633980107 0.5 -0.368633980107 +UniRef50_UPI00041C6338 hydrolase 1.28178638728 0.5 -0.781786387283 +UniRef50_W4HIK8 2.5805861918 0.499999999999 -2.0805861918 +UniRef50_B6XGE2 Putative dGTPase 0.166955369636 0.5 0.333044630364 +UniRef50_A6KZD0 0.00133142651089 0.5 0.498668573489 +UniRef50_S5CIR4 EAL domain protein 0.0363715242123 0.5 0.463628475788 +UniRef50_I6X6K9 2,5 diketo D gluconic acid reductase A 1.06108302793 0.5 -0.561083027925 +UniRef50_Q5HL78 Esterase, putative 1.73101547086 0.499999999999 -1.23101547086 +UniRef50_K3YW20 1.46803975676 0.5 -0.968039756764 +UniRef50_D7I005 0.472358584214 0.5 0.0276414157856 +UniRef50_UPI000380E85A hypothetical protein 0.398722465781 0.5 0.101277534219 +UniRef50_UPI0003AFAFF5 PREDICTED 1.23204891522 0.499999999999 -0.732048915224 +UniRef50_UPI0003723B10 hypothetical protein 1.24199263514 0.5 -0.741992635141 +UniRef50_C5N5L5 0.345825538588 0.5 0.154174461412 +UniRef50_UPI000474FC78 hypothetical protein, partial 0.0215246618324 0.5 0.478475338168 +UniRef50_G7M098 0.270233024544 0.5 0.229766975456 +UniRef50_F0RKF5 Riboflavin synthase, alpha subunit 0.002571734357 0.5 0.497428265643 +UniRef50_Q6A5X8 Arginine tRNA ligase 0.018652581824 0.5 0.481347418176 +UniRef50_H0YP80 0.729289264055 0.5 -0.229289264055 +UniRef50_UPI00022CA5D3 PREDICTED 0.842793097492 0.5 -0.342793097492 +UniRef50_Q8REW5 Precorrin 8X methylmutase 0.276843596377 0.5 0.223156403623 +UniRef50_Q56002 Serine acetyltransferase 0.170085686842 0.5 0.329914313158 +UniRef50_UPI00036189B5 DNA glycosylase 2.7065300715 0.5 -2.2065300715 +UniRef50_A5ULV9 Phosphatidylserine synthase, PssA 5.00413088134 0.5 -4.50413088134 +UniRef50_UPI0001FFE88F glycosyl transferase group 1 0.142177614759 0.5 0.357822385241 +UniRef50_UPI00047588F4 hypothetical protein 0.515963673784 0.5 -0.0159636737842 +UniRef50_O27179 Pyruvate carboxylase subunit B 1.17578804384 0.5 -0.675788043841 +UniRef50_D1BH34 0.0559923554433 0.5 0.444007644557 +UniRef50_UPI000441E63E PREDICTED 0.308851574055 0.5 0.191148425945 +UniRef50_UPI00037429B4 hypothetical protein, partial 0.0708887150868 0.5 0.429111284913 +UniRef50_C4Z1D7 Proline tRNA ligase 0.157680014843 0.5 0.342319985157 +UniRef50_W8YSM1 0.202473719247 0.5 0.297526280753 +UniRef50_UPI0004785C2A hypothetical protein 0.0923291345296 0.5 0.40767086547 +UniRef50_Q168G3 MFS protein, putative 1.43210219673 0.5 -0.932102196726 +UniRef50_UPI0003652F52 hypothetical protein 0.118397034021 0.5 0.381602965979 +UniRef50_UPI000368594E hypothetical protein 0.59730064837 0.5 -0.0973006483704 +UniRef50_V9U5K5 0.158762337843 0.5 0.341237662157 +UniRef50_F8KHX1 ArsR family transcriptional regulator 0.830385975079 0.5 -0.330385975079 +UniRef50_A6LZC7 0.326507271014 0.5 0.173492728986 +UniRef50_R7NTH8 0.0293000509442 0.5 0.470699949055 +UniRef50_Q8SDT5 Phi ETA orf 55 like protein 1.66232292536 0.5 -1.16232292536 +UniRef50_Q493G3 Protoheme IX farnesyltransferase 0.229660418303 0.5 0.270339581697 +UniRef50_G7M7B0 Cell wall binding repeat containing protein 0.102872163895 0.5 0.397127836105 +UniRef50_I1D602 0.251719843511 0.5 0.248280156489 +UniRef50_W6CDL1 Bat2 domain protein 0.651256945968 0.5 -0.151256945968 +UniRef50_F8KRB8 Cell division protein FtsI [Peptidoglycan synthetase] 0.0595668716355 0.5 0.440433128365 +UniRef50_A0A011RLE4 Rhodanese like domain protein 0.172817746128 0.5 0.327182253872 +UniRef50_A5UM88 Adhesin like protein 3.32675450536 0.500000000001 -2.82675450536 +UniRef50_UPI000200387F AGCS family alanine or glycine 0.0212608855404 0.5 0.47873911446 +UniRef50_U5MPP2 5 nucleotidase 0.324199086475 0.5 0.175800913525 +UniRef50_R9YN62 TM2 domain protein 5.133521347 0.5 -4.633521347 +UniRef50_UPI00037681F6 50S ribosomal protein L20 0.366284482258 0.5 0.133715517742 +UniRef50_P0AA55 Protein QmcA 4.0521789095 0.499999999998 -3.5521789095 +UniRef50_F5NZP6 YhaO 0.1839333113 0.5 0.3160666887 +UniRef50_P37754 6 phosphogluconate dehydrogenase, decarboxylating 1.41835935494 0.5 -0.918359354939 +UniRef50_UPI00035F8157 hypothetical protein 0.0236088019451 0.5 0.476391198055 +UniRef50_B8H8I4 Glucose 1 phosphate adenylyltransferase 0.132704039568 0.5 0.367295960432 +UniRef50_M9R3S4 Protease do 6.60121931196 0.499999999998 -6.10121931196 +UniRef50_A5LX88 HAD superfamily protein phosphatase 0.120063407866 0.5 0.379936592134 +UniRef50_B7MG32 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.06186360714 0.5 -0.561863607141 +UniRef50_P00935 Cystathionine gamma synthase 1.51544848574 0.5 -1.01544848574 +UniRef50_H3RCL8 Oxidoreductase domain protein 0.598669147282 0.5 -0.0986691472815 +UniRef50_V4LBB0 0.431241716835 0.5 0.0687582831654 +UniRef50_Q1GB50 Ribonuclease Y 0.851511660251 0.5 -0.351511660251 +UniRef50_I3XFP9 Inosose dehydratase IolE 1.9723426452 0.5 -1.4723426452 +UniRef50_P31833 Cytochrome c oxidase subunit 1 0.450096792622 0.5 0.0499032073783 +UniRef50_Q49VS2 Putative lipid kinase SSP1993 1.81351520816 0.500000000001 -1.31351520816 +UniRef50_A5D5L4 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1.02874390896 0.5 -0.528743908962 +UniRef50_Q81CT8 Putative ABC transporter ATP binding protein BC_2655 0.0292542400425 0.5 0.470745759958 +UniRef50_B9TG20 1.53574794864 0.5 -1.03574794864 +UniRef50_P39389 1.07451136853 0.5 -0.574511368529 +UniRef50_A4ETQ1 Flagellar protein, putative 0.196558168417 0.5 0.303441831583 +UniRef50_P39385 10.7789277145 0.500000000009 -10.2789277145 +UniRef50_P39384 3.5089960532 0.5 -3.0089960532 +UniRef50_V5VAL8 Flavodoxin reductase 1 0.00778746979137 0.500000000001 0.492212530208 +UniRef50_A9APP3 Rieske domain protein 0.0207842534313 0.5 0.479215746569 +UniRef50_P39383 6.27341607141 0.499999999999 -5.77341607141 +UniRef50_P39382 0.415643601322 0.5 0.0843563986783 +UniRef50_Q09545 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.235590237316 0.5 0.264409762684 +UniRef50_B7H275 Aminoglycoside 2 N acetyltransferase Ib) 0.0515609993699 0.5 0.44843900063 +UniRef50_B7M6Q9 Putative ion transport protein YfeO 2.96385106632 0.499999999999 -2.46385106632 +UniRef50_UPI00046FF34F peptide synthetase 0.13443965659 0.5 0.36556034341 +UniRef50_A3MAB3 0.0283606983078 0.5 0.471639301692 +UniRef50_J5IRF9 0.0174466429335 0.5 0.482553357066 +UniRef50_D5AMB2 ArsC family protein 1.82720104389 0.499999999999 -1.32720104389 +UniRef50_N6U9Z2 1.29431447886 0.5 -0.794314478856 +UniRef50_B9KMM9 0.73152832469 0.5 -0.23152832469 +UniRef50_UPI0003B360B2 riboflavin synthase subunit alpha 0.0327436801038 0.499999999999 0.467256319897 +UniRef50_UPI0003768F48 hypothetical protein 0.151029822068 0.5 0.348970177932 +UniRef50_Q9JYA6 PqiA family protein 0.0175473638389 0.5 0.482452636161 +UniRef50_O61573 GTP cyclohydrolase 1 0.294594149761 0.5 0.205405850239 +UniRef50_A4XX36 Integral membrane sensor signal transduction histidine kinase 0.53121257542 0.5 -0.0312125754201 +UniRef50_V7N9Q7 1.54819780509 0.5 -1.04819780509 +UniRef50_UPI00046AE0C6 hypothetical protein 0.60222206276 0.5 -0.10222206276 +UniRef50_UPI0003C11AE9 PREDICTED 2.19473895884 0.500000000001 -1.69473895884 +UniRef50_P77858 Hydrogenase 4 component C 1.39216447232 0.5 -0.892164472318 +UniRef50_A9RYC3 Predicted protein 0.0246611318272 0.5 0.475338868173 +UniRef50_UPI00046D2B95 hypothetical protein 0.6810249222 0.5 -0.1810249222 +UniRef50_E1S7W8 Molybdenum transport ATP binding protein 0.025891051986 0.5 0.474108948014 +UniRef50_A6LVV3 GCN5 related N acetyltransferase 0.173910371591 0.5 0.326089628409 +UniRef50_Q48253 Vacuolating cytotoxin autotransporter 0.00295862210011 0.5 0.4970413779 +UniRef50_G8PQM8 FAD dependent oxidoreductase 1.65070136959 0.5 -1.15070136959 +UniRef50_K6YYX6 Phosphate starvation inducible E 0.822141871016 0.5 -0.322141871016 +UniRef50_Q9RU10 Glutamate racemase 0.00702004027038 0.5 0.49297995973 +UniRef50_Q8DN97 Hexulose 6 phosphate synthase 0.668949268794 0.5 -0.168949268794 +UniRef50_UPI0003055198 hypothetical protein 0.728029190677 0.5 -0.228029190677 +UniRef50_UPI0004771957 pyruvate kinase 0.124002659484 0.5 0.375997340516 +UniRef50_F8HG32 3 oxoacyl [acyl carrier protein] synthase 2 0.0483193297744 0.5 0.451680670226 +UniRef50_UPI0003C7DEB4 ferredoxin 0.268300555377 0.5 0.231699444623 +UniRef50_W5XG56 Transcriptional regulator 1.03573611936 0.5 -0.535736119363 +UniRef50_P45480 Glutathione synthetase 0.280104037723 0.5 0.219895962277 +UniRef50_Q03UE1 DNA replication and repair protein RecF 0.653563173103 0.5 -0.153563173103 +UniRef50_J2ZRL7 Rhamnan synthesis protein F domain protein 0.398199967994 0.5 0.101800032006 +UniRef50_UPI000346214E hypothetical protein 5.25689553255 0.500000000001 -4.75689553255 +UniRef50_G2IM51 Major facilitator superfamily protein 1.22356941858 0.5 -0.723569418584 +UniRef50_UPI00047E3C0E hypothetical protein 0.0168210782194 0.5 0.483178921781 +UniRef50_G0DY22 0.0263004564066 0.5 0.473699543594 +UniRef50_A6V690 0.142123467612 0.5 0.357876532388 +UniRef50_A5UL99 Predicted permease, major facilitator superfamily 0.966045221286 0.5 -0.466045221286 +UniRef50_Q8AA27 Methionine aminopeptidase 0.0944988241769 0.5 0.405501175823 +UniRef50_Q8DWJ3 3.15555277224 0.5 -2.65555277224 +UniRef50_Q9F664 UTP glucose 1 phosphate uridylyltransferase 6.56485014114 0.500000000003 -6.06485014114 +UniRef50_Q1AX36 Leucyl phenylalanyl tRNA protein transferase 0.0644776695684 0.5 0.435522330432 +UniRef50_UPI000371C01D hypothetical protein 1.00374354433 0.5 -0.503743544331 +UniRef50_B1H0H4 NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component 0.112530908304 0.5 0.387469091696 +UniRef50_A7X240 Tryptophan synthase alpha chain 3.8559825362 0.500000000003 -3.3559825362 +UniRef50_Q4L300 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.20604570558 0.500000000004 -2.70604570559 +UniRef50_Q8RCZ3 0.0497608081878 0.5 0.450239191812 +UniRef50_A7MXI6 RNA polymerase subunit sigma 32 0.264044187204 0.5 0.235955812796 +UniRef50_M2YV20 Bacteriocin biosynthesis docking scaffold, SagD family domain protein 0.110748950779 0.5 0.389251049221 +UniRef50_W0HQE6 Outer membrane lipoprotein 0.577909760001 0.5 -0.0779097600013 +UniRef50_Q1QLB8 3 dehydroquinate dehydratase 3.09743650364 0.5 -2.59743650364 +UniRef50_F1WQG0 L aspartate oxidase 0.196319528123 0.5 0.303680471877 +UniRef50_G7W3F5 Phosphonate ABC transporter, permease protein 1.59613522542 0.500000000001 -1.09613522542 +UniRef50_A0A029I8C3 TPR repeat family protein 1.41162304802 0.5 -0.911623048021 +UniRef50_K0TNT9 4.60117852652 0.499999999998 -4.10117852651 +UniRef50_UPI0003807495 hypothetical protein, partial 0.288945017778 0.5 0.211054982222 +UniRef50_UPI00046EA948 peptide deformylase 0.537099610157 0.5 -0.0370996101572 +UniRef50_C4Y1Q4 0.134690557163 0.5 0.365309442837 +UniRef50_UPI0003A5C3E8 methylmalonyl CoA mutase 0.673315988613 0.5 -0.173315988613 +UniRef50_M9RMW1 DNA integration recombination inversion protein 3.23688981454 0.499999999998 -2.73688981454 +UniRef50_UPI00032A20C5 PREDICTED 0.174908448511 0.5 0.325091551489 +UniRef50_A6M334 Glycogen synthase 0.182637095026 0.5 0.317362904974 +UniRef50_UPI0003688E90 hypothetical protein 0.224710874117 0.5 0.275289125883 +UniRef50_A3V1D2 ABC phosphate transporter, periplasmic phosphate binding protein 0.606847010479 0.5 -0.106847010479 +UniRef50_Q9RAJ5 Bifunctional purine biosynthesis protein PurH 0.0266810757371 0.5 0.473318924263 +UniRef50_A8GK38 Peptidase U62 modulator of DNA gyrase 0.0624257644365 0.5 0.437574235564 +UniRef50_C7ZCJ9 0.0048731629201 0.5 0.49512683708 +UniRef50_UPI0002628E3A amino acid ABC transporter, permease protein, 3 TM region, His Glu Gln Arg opine family 0.357823561302 0.5 0.142176438698 +UniRef50_UPI000470BC2E transposase, partial 0.000814160346775 0.5 0.499185839653 +UniRef50_Q47142 Probable 3 phenylpropionic acid transporter 1.84965217737 0.499999999999 -1.34965217737 +UniRef50_UPI000375E9A2 MULTISPECIES 9.83333855402 0.499999999998 -9.33333855402 +UniRef50_UPI0004650867 hypothetical protein 0.126716416489 0.499999999999 0.373283583512 +UniRef50_UPI0003B458E8 quinone oxidoreductase 0.31097795694 0.5 0.18902204306 +UniRef50_C1KYN8 NADPH dehydrogenase 0.00191396764681 0.5 0.498086032353 +UniRef50_UPI0003C8F987 PREDICTED 0.0204119229292 0.5 0.479588077071 +UniRef50_UPI000364B2C5 hypothetical protein 0.150383520182 0.499999999999 0.349616479819 +UniRef50_I3UG87 ABC transporter 0.0208098934219 0.5 0.479190106578 +UniRef50_UPI00036731E7 hypothetical protein 0.553388224546 0.5 -0.0533882245459 +UniRef50_C5N6N4 Type I restriction modification DNA specificity domain protein 6.54265335817 0.5 -6.04265335817 +UniRef50_Q12HP7 ATP synthase subunit b 0.200767378376 0.5 0.299232621624 +UniRef50_C8VXQ7 Prophage antirepressor 1.83222623758 0.499999999999 -1.33222623758 +UniRef50_Q72VI6 Aminomethyltransferase 0.841361154256 0.5 -0.341361154256 +UniRef50_D8A1C0 19.0721154566 0.500000000011 -18.5721154566 +UniRef50_Q49UD2 0.287399944975 0.5 0.212600055025 +UniRef50_B0TI89 Arginine tRNA ligase 0.855413844359 0.5 -0.355413844359 +UniRef50_B2IDG3 Signal recognition particle receptor FtsY 2.93257380005 0.499999999997 -2.43257380004 +UniRef50_A0A058ZE84 0.189376595087 0.5 0.310623404913 +UniRef50_B9MKF3 DNA directed RNA polymerase subunit alpha 0.827463714974 0.5 -0.327463714974 +UniRef50_UPI000174537F tRNA isopentenyltransferase 0.308036192024 0.5 0.191963807976 +UniRef50_E1VL16 0.188098836037 0.5 0.311901163963 +UniRef50_X6GT76 2.66532786522 0.499999999997 -2.16532786522 +UniRef50_J9NXH4 0.0153511849491 0.5 0.484648815051 +UniRef50_A0RH75 LexA repressor 3.44328038394 0.499999999998 -2.94328038394 +UniRef50_P37595 Isoaspartyl peptidase 2.27813047786 0.500000000003 -1.77813047786 +UniRef50_UPI0003688AF0 hypothetical protein, partial 1.04137956836 0.5 -0.541379568362 +UniRef50_P20753 Peptidyl prolyl cis trans isomerase A 2.16156116629 0.5 -1.66156116629 +UniRef50_B1AJ89 Holliday junction ATP dependent DNA helicase RuvB 0.165625969251 0.5 0.334374030749 +UniRef50_E1SQ49 1.1642228127 0.5 -0.664222812703 +UniRef50_G7MAV9 0.500400102214 0.5 -0.000400102213645 +UniRef50_UPI0003622A28 hypothetical protein 0.532934602273 0.5 -0.0329346022735 +UniRef50_Q08ZN5 Catalase 0.00187607794235 0.5 0.498123922058 +UniRef50_I0EMB4 0.0194894395756 0.5 0.480510560424 +UniRef50_Q2W939 FAD synthase 1.50145208846 0.5 -1.00145208846 +UniRef50_A0A038G0X4 0.572349932181 0.5 -0.0723499321813 +UniRef50_S4P4Q3 Titin 68.3594943796 0.49999999992 -67.8594943796 +UniRef50_P0ACR1 HTH type transcriptional activator AllS 2.35544403044 0.500000000001 -1.85544403044 +UniRef50_Q8X645 NAD dependent dihydropyrimidine dehydrogenase subunit PreT 2.82918293077 0.499999999999 -2.32918293077 +UniRef50_D3QIC4 1.46725353147 0.5 -0.967253531465 +UniRef50_Q76HT9 Ribulose 1,5 bisphosphate carboxylase oxygenase small subunit 9.90877298341 0.499999999991 -9.4087729834 +UniRef50_E4RAI6 Choline carnitine betaine transporter 0.0837947091763 0.5 0.416205290824 +UniRef50_U4VB44 19.2834726674 0.499999999993 -18.7834726674 +UniRef50_UPI00036A732B hypothetical protein 1.51174664887 0.5 -1.01174664887 +UniRef50_P0AE75 Citrate carrier 2.43039563972 0.5 -1.93039563972 +UniRef50_T1UA89 Neuraminyllactose binding hemagglutinin family protein 0.0360269070731 0.5 0.463973092927 +UniRef50_M1M1B9 Beta fructofuranosidase 0.193672472918 0.5 0.306327527082 +UniRef50_A0A011MYY6 Trans aconitate 2 methyltransferase 0.369120716674 0.5 0.130879283326 +UniRef50_A5GWT2 Aspartate tRNA ligase 0.0799239996954 0.5 0.420076000305 +UniRef50_C4B488 Short chain dehydrogenase reductase SDR 0.483527151184 0.5 0.0164728488165 +UniRef50_A5ULF5 Possible glycosyltransferase 2.558722679 0.499999999999 -2.05872267899 +UniRef50_F4DRP3 0.175146531459 0.5 0.324853468541 +UniRef50_B8JBA1 Transcriptional regulator, Fis family 0.181203155772 0.5 0.318796844228 +UniRef50_W5WS06 Amino acid permease 0.87283079414 0.5 -0.37283079414 +UniRef50_UPI000470356D glycine cleavage system protein H 1.41430517697 0.5 -0.914305176973 +UniRef50_Q89A21 ATP dependent DNA helicase Rep 0.978682337807 0.5 -0.478682337807 +UniRef50_Q5F8Z9 Formamidopyrimidine DNA glycosylase 0.0547035021226 0.5 0.445296497878 +UniRef50_B6U1Z9 0.217710555859 0.5 0.282289444141 +UniRef50_B7VBB0 Putative phosphoenolpyruvate synthase regulatory protein 0.0296925766267 0.5 0.470307423373 +UniRef50_F8JQM1 0.064483831169 0.5 0.435516168831 +UniRef50_Q3IV73 0.633563790773 0.5 -0.133563790773 +UniRef50_Q3IV76 8.41628484561 0.500000000001 -7.91628484561 +UniRef50_S6SUU4 Peptide ABC transporter permease 0.928427380658 0.5 -0.428427380658 +UniRef50_H0W1N8 0.295583324013 0.5 0.204416675987 +UniRef50_UPI0004770081 molybdenum cofactor biosynthesis protein A 0.0415595580813 0.5 0.458440441919 +UniRef50_Q4FT48 Ornithine carbamoyltransferase 0.0303983700412 0.5 0.469601629959 +UniRef50_N9CHK2 0.227169097117 0.5 0.272830902883 +UniRef50_Q7ULU1 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.713084494185 0.5 -0.213084494185 +UniRef50_U5S306 0.0922926872439 0.5 0.407707312756 +UniRef50_Q7NFY0 Glr3394 protein 1.45901248293 0.5 -0.959012482931 +UniRef50_B9KJJ0 Proton translocating NADH quinone oxidoreductase, chain L 13.6715619106 0.49999999999 -13.1715619106 +UniRef50_Q4WHZ9 Inosine 5 monophosphate dehydrogenase 2.86970285076 0.500000000001 -2.36970285076 +UniRef50_X0PKD3 0.333654152224 0.5 0.166345847776 +UniRef50_UPI00046F8172 hypothetical protein, partial 0.746777091765 0.5 -0.246777091765 +UniRef50_D3QHK8 1.46337596442 0.499999999998 -0.963375964418 +UniRef50_Q4FRI0 Site 2 protease, Metallo peptidase, MEROPS family M50B 0.00657200793534 0.5 0.493427992065 +UniRef50_P13228 Tryptophan synthase 0.471510843399 0.5 0.028489156601 +UniRef50_I6T6M3 1.64020506035 0.5 -1.14020506035 +UniRef50_A0A013WI76 Pirin 3.20556966068 0.499999999997 -2.70556966067 +UniRef50_Q724H7 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1 0.026869900348 0.5 0.473130099652 +UniRef50_Q93SS1 Hemin import ATP binding protein HmuV 0.0022104469104 0.499999999999 0.49778955309 +UniRef50_A3PKX0 NAD transhydrogenase subunit beta 2.79772737266 0.5 -2.29772737266 +UniRef50_UPI0003160516 beta lactamase 1.16666819129 0.5 -0.666668191293 +UniRef50_F0Y015 0.611792011473 0.5 -0.111792011473 +UniRef50_A7H6S8 Chorismate synthase 0.0391101832488 0.499999999999 0.460889816752 +UniRef50_P12635 Uptake hydrogenase small subunit 1.98532156089 0.5 -1.48532156089 +UniRef50_H3V8P2 0.314567177998 0.5 0.185432822002 +UniRef50_A2BKX6 V type ATP synthase alpha chain 0.000937873570549 0.5 0.499062126429 +UniRef50_Q9ZL20 Homoserine dehydrogenase 0.0171190539964 0.5 0.482880946004 +UniRef50_UPI0003B6A98E siderophore ABC transporter permease 0.709655845304 0.5 -0.209655845304 +UniRef50_A5UNY8 0.456689550812 0.5 0.0433104491881 +UniRef50_UPI00028983C1 iron ABC transporter ATP binding protein 0.979238625451 0.5 -0.479238625451 +UniRef50_UPI00035C388E hypothetical protein 0.636423801302 0.5 -0.136423801302 +UniRef50_Q2NHW2 4 hydroxy tetrahydrodipicolinate synthase 10.3280056638 0.499999999999 -9.82800566376 +UniRef50_A5UNY0 1.06533814492 0.5 -0.56533814492 +UniRef50_P76278 Inner membrane protein YebZ 0.629098433492 0.5 -0.129098433492 +UniRef50_UPI0003F8B96B hypothetical protein 0.652389484753 0.5 -0.152389484753 +UniRef50_UPI00034A188B hypothetical protein 0.149424606771 0.5 0.350575393229 +UniRef50_S9QCK8 Flagellar protein FlaF, putative 0.2628060206 0.5 0.2371939794 +UniRef50_I6WD10 0.297907376307 0.5 0.202092623693 +UniRef50_Q3IWS0 TRAP T family transporter, periplasmic binding protein 1.60027846777 0.499999999999 -1.10027846777 +UniRef50_P0A0C8 Replication and maintenance protein 1.88734951484 0.5 -1.38734951484 +UniRef50_B3HTF1 Protein YgiQ 4.75928082207 0.499999999998 -4.25928082207 +UniRef50_UPI0003B3CF72 histidine kinase 0.676582224023 0.5 -0.176582224023 +UniRef50_C6ST75 0.970612898878 0.5 -0.470612898878 +UniRef50_UPI00028905C7 recombinase RecQ 0.168213921765 0.5 0.331786078235 +UniRef50_P34749 Putative DNA transport protein HofQ 4.83708364704 0.499999999998 -4.33708364704 +UniRef50_UPI00047D7442 multidrug ABC transporter ATPase 0.187004430088 0.5 0.312995569912 +UniRef50_Q88VG4 GTPase Obg 1.26021044269 0.5 -0.760210442685 +UniRef50_C1CMA0 Ribosomal protein L11 methyltransferase 0.308831212576 0.5 0.191168787424 +UniRef50_Q9RW97 0.0095740645073 0.5 0.490425935493 +UniRef50_L0GSA8 Glycine D amino acid oxidase, deaminating 1.70331255647 0.5 -1.20331255647 +UniRef50_UPI00037C253B alcohol dehydrogenase 0.444598880027 0.5 0.0554011199733 +UniRef50_U5UBZ0 Integral membrane protein TerC 1.07398650883 0.500000000001 -0.573986508827 +UniRef50_G2TNB0 Beta lactamase 0.119090584027 0.5 0.380909415973 +UniRef50_A7ZEL6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0601581221341 0.500000000001 0.439841877865 +UniRef50_Q9CE02 Glycerol facilitator aquaporin gla 0.847187702784 0.5 -0.347187702784 +UniRef50_A6X7L5 Cobyrinic acid ac diamide synthase 1.68955809533 0.499999999999 -1.18955809533 +UniRef50_E5ALT8 UvrABC system protein A 0.00591500807158 0.5 0.494084991929 +UniRef50_A9M1I6 Periplasmic thioredoxin 0.512758533115 0.5 -0.0127585331154 +UniRef50_D5HI95 Beta fructosidases 0.221117296628 0.5 0.278882703372 +UniRef50_A8M621 NADH quinone oxidoreductase subunit B 2 0.000250295955986 0.5 0.499749704044 +UniRef50_UPI00041CBDDB phosphoenolpyruvate synthase 0.122824512353 0.5 0.377175487647 +UniRef50_UPI0003B60C80 MFS transporter 0.494612893675 0.5 0.0053871063247 +UniRef50_O21049 Cytochrome c oxidase subunit 3 0.45301666749 0.5 0.0469833325098 +UniRef50_M1GCT3 Peptidyl prolyl cis trans isomerase 0.162930748489 0.5 0.337069251511 +UniRef50_P49331 Glucosyltransferase S 1.64614357553 0.5 -1.14614357553 +UniRef50_Q1CU36 Phospho N acetylmuramoyl pentapeptide transferase 0.00106540527862 0.5 0.498934594721 +UniRef50_P0AAJ9 Hydrogenase 2 operon protein HybA 1.31368887745 0.5 -0.813688877449 +UniRef50_P61154 Tungsten containing formylmethanofuran dehydrogenase 2 subunit B 1.50739315828 0.5 -1.00739315828 +UniRef50_W5X7F1 Band 7 protein 0.0257212716371 0.5 0.474278728363 +UniRef50_J7R3C7 0.654480046159 0.5 -0.154480046159 +UniRef50_UPI000381CDD7 hypothetical protein 0.503206453357 0.5 -0.00320645335727 +UniRef50_X1Y977 0.0926309075835 0.5 0.407369092417 +UniRef50_P26396 Glucose 1 phosphate cytidylyltransferase 0.544525961018 0.5 -0.044525961018 +UniRef50_Q9HZN2 Maf like protein PA2972 1.7039212741 0.499999999999 -1.2039212741 +UniRef50_Q2NED1 EhbF 2.3205465175 0.5 -1.8205465175 +UniRef50_Q9JY93 Peptide chain release factor 1 0.341874417831 0.5 0.158125582169 +UniRef50_F2EI39 Predicted protein 0.163266852805 0.5 0.336733147195 +UniRef50_D8UC86 0.197237299815 0.5 0.302762700185 +UniRef50_R4ZPZ7 Glycosyl transferase, family 8 2.00257278687 0.5 -1.50257278687 +UniRef50_Q1GD19 Binding protein dependent transport systems inner membrane component 1.76138581083 0.5 -1.26138581083 +UniRef50_D8JKK4 Glutathione import ATP binding protein gsiA 0.017050894366 0.5 0.482949105634 +UniRef50_UPI0003642310 hypothetical protein 0.0848645997297 0.5 0.41513540027 +UniRef50_F5YLA3 Ferric enterobactin transport ATP binding protein FepC 0.100585229019 0.5 0.399414770981 +UniRef50_M5JPC6 1.57532812067 0.5 -1.07532812067 +UniRef50_P70584 Short branched chain specific acyl CoA dehydrogenase, mitochondrial 0.328696330848 0.5 0.171303669152 +UniRef50_X3WXP6 0.407110497215 0.5 0.0928895027854 +UniRef50_UPI00020008D2 putative magnesium translocating P type ATPase 0.125717734277 0.499999999999 0.374282265724 +UniRef50_UPI00037C785B hypothetical protein 0.291965956554 0.5 0.208034043446 +UniRef50_Q8FF30 Flavohemoprotein 1.54163036844 0.5 -1.04163036844 +UniRef50_Q3IV85 1.57024115737 0.5 -1.07024115737 +UniRef50_B9KPB5 Response regulator receiver and SARP domain protein 0.0634194656264 0.5 0.436580534374 +UniRef50_UPI00046F03A6 histidine kinase 1.67787964621 0.5 -1.17787964621 +UniRef50_P16552 Raffinose permease 0.424940926054 0.5 0.0750590739458 +UniRef50_B4U0I9 Putative competence damage inducible protein 0.723047526882 0.5 -0.223047526882 +UniRef50_F4EDS5 Alkylhydroperoxidase like protein, AhpD family 1.30497976651 0.5 -0.804979766514 +UniRef50_UPI00036E614B hypothetical protein 0.177428849912 0.5 0.322571150088 +UniRef50_F3S3U6 0.587970049267 0.5 -0.0879700492671 +UniRef50_UPI00036215C0 hypothetical protein 0.016160539022 0.5 0.483839460978 +UniRef50_Q28QW5 Ppx GppA phosphatase 13.2711214377 0.500000000005 -12.7711214377 +UniRef50_UPI000180B091 PREDICTED 0.436270962862 0.5 0.0637290371378 +UniRef50_I4CF79 ATPase involved in chromosome partitioning 0.271388539903 0.5 0.228611460097 +UniRef50_UPI000364064B hypothetical protein, partial 4.65976317637 0.499999999997 -4.15976317637 +UniRef50_UPI000476D156 30S ribosomal protein S8 0.0793905296413 0.5 0.420609470359 +UniRef50_M1N762 PAS domain S box diguanylate cyclase domain containing protein 0.115067130876 0.5 0.384932869123 +UniRef50_G8VEI8 0.0609514210262 0.5 0.439048578974 +UniRef50_Q3J6K9 Acrylyl CoA reductase AcuI 2.63858649064 0.5 -2.13858649064 +UniRef50_Q8YM92 Spermidine putrescine import ATP binding protein PotA 0.789550598178 0.5 -0.289550598178 +UniRef50_V1DIU7 0.524103856073 0.5 -0.0241038560727 +UniRef50_C0R3V6 3 5 exonuclease 2.19796099668 0.500000000001 -1.69796099668 +UniRef50_R1D2B5 0.168601648616 0.5 0.331398351383 +UniRef50_UPI00041042FA hypothetical protein 0.0686575088564 0.5 0.431342491143 +UniRef50_P28303 DNA damage inducible protein F 1.23287569499 0.5 -0.732875694988 +UniRef50_R6NSD0 0.135523272188 0.5 0.364476727812 +UniRef50_P0A1J0 Basal body rod modification protein FlgD 4.94641881351 0.500000000002 -4.44641881352 +UniRef50_Q1LSW5 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 11.2530817194 0.499999999996 -10.7530817194 +UniRef50_Q164Y5 sn glycerol 3 phosphate import ATP binding protein UgpC 0.534947748914 0.5 -0.0349477489138 +UniRef50_B7L4M7 Glutathione regulated potassium efflux system protein KefB 1.07588285249 0.5 -0.575882852487 +UniRef50_UPI000329E73C PREDICTED 0.315842332308 0.5 0.184157667692 +UniRef50_P0AFJ0 Putative permease PerM 6.014728411 0.499999999997 -5.51472841099 +UniRef50_UPI00036E49BC hypothetical protein 3.82087591497 0.499999999999 -3.32087591497 +UniRef50_Q9XC21 Protein NrdI 0.125339614437 0.5 0.374660385563 +UniRef50_Q6G5Y3 2.09279322304 0.5 -1.59279322304 +UniRef50_V5XV11 0.165521458946 0.5 0.334478541054 +UniRef50_UPI00037AAF5D hypothetical protein 0.702989775151 0.5 -0.202989775151 +UniRef50_Q8ZPD6 0.887352352468 0.5 -0.387352352468 +UniRef50_A1YN33 Outer membrane protein N 0.389104535572 0.5 0.110895464428 +UniRef50_E3HF39 Acyltransferase family protein 5 0.820910603026 0.5 -0.320910603026 +UniRef50_UPI0003B39CC6 ABC transporter substrate binding protein 0.407682199268 0.5 0.0923178007318 +UniRef50_Q896J4 HPr kinase phosphorylase 0.0668519237072 0.5 0.433148076293 +UniRef50_W0YKE6 Protein PqqC 0.131913928815 0.5 0.368086071185 +UniRef50_UPI00038F9E6F DNA polymerase III subunit alpha, partial 0.253994600585 0.5 0.246005399415 +UniRef50_A6LXS8 FAD dependent pyridine nucleotide disulphide oxidoreductase 0.0272535742637 0.500000000001 0.472746425736 +UniRef50_Q487E5 Protein L isoaspartate O methyltransferase 1.1534859564 0.5 -0.653485956395 +UniRef50_P9WKI2 0.00979193625009 0.5 0.49020806375 +UniRef50_G2JG74 1.03108550641 0.5 -0.53108550641 +UniRef50_Q12680 Glutamate synthase [NADH] 0.0330793661593 0.500000000001 0.46692063384 +UniRef50_Q142P6 Lipid A export ATP binding permease protein MsbA 0.208692933089 0.5 0.291307066911 +UniRef50_UPI0003FD8434 hypothetical protein 1.23061070326 0.5 -0.730610703263 +UniRef50_P77196 Putative outer membrane usher protein YfcU 1.16864540411 0.5 -0.668645404114 +UniRef50_D8GR57 D alanyl D alanine carboxypeptidase 0.109279319899 0.5 0.390720680101 +UniRef50_E7T039 PTS system protein, cellobiose specific IIC component 1.47718928573 0.499999999999 -0.977189285733 +UniRef50_U2FR71 Putative conserved inner membrane protein 0.293928248491 0.5 0.206071751509 +UniRef50_X1Y4J3 S adenosylmethionine synthase 0.0876246878155 0.5 0.412375312185 +UniRef50_UPI0003B599F8 membrane protein 0.0740954216544 0.5 0.425904578346 +UniRef50_UPI0003699B2C hypothetical protein 0.447491195254 0.5 0.052508804746 +UniRef50_B8DTW3 Carbamoyl phosphate synthase large chain 0.88280897853 0.5 -0.38280897853 +UniRef50_P0AE17 Protein AmpG 0.670891250631 0.5 -0.170891250631 +UniRef50_D2QC61 NAD dependent epimerase dehydratase 0.236493143242 0.5 0.263506856758 +UniRef50_UPI00037FC855 hypothetical protein 1.55152772335 0.5 -1.05152772335 +UniRef50_A5UNZ2 Magnesium chelatase subunit 1.67225209951 0.500000000001 -1.17225209952 +UniRef50_A0A023S1G3 Transcriptional regulator 0.0574801962318 0.5 0.442519803768 +UniRef50_V5VIA0 0.0425146581564 0.5 0.457485341844 +UniRef50_UPI00016A5A21 ABC transporter permease 0.893677564489 0.5 -0.393677564489 +UniRef50_UPI0002DB5328 ABC transporter permease 0.419581915673 0.5 0.0804180843271 +UniRef50_W1AP48 Penicillin binding protein 2 2.53572535565 0.500000000001 -2.03572535565 +UniRef50_UPI0002F2CBB8 hypothetical protein 1.47244693557 0.5 -0.972446935574 +UniRef50_A4WQG9 0.949067475167 0.5 -0.449067475167 +UniRef50_P43725 Superoxide dismutase [Mn] 0.0419167740627 0.5 0.458083225937 +UniRef50_W5FKJ5 0.249681013816 0.5 0.250318986184 +UniRef50_Q9KA74 Transcription termination antitermination protein NusA 3.76960227482 0.500000000001 -3.26960227482 +UniRef50_P0A9F8 Glycine cleavage system transcriptional activator 0.761894584065 0.5 -0.261894584065 +UniRef50_A9LZF9 3 isopropylmalate dehydratase small subunit 0.00314042301935 0.5 0.496859576981 +UniRef50_M9VJJ5 AP endonuclease, family 2 0.049913470359 0.5 0.450086529641 +UniRef50_P44255 Elongation factor P hydroxylase 1.32406906954 0.5 -0.824069069536 +UniRef50_F3G6H6 AsmA family protein 0.168368098696 0.5 0.331631901304 +UniRef50_UPI000474A6D9 hypothetical protein, partial 0.0555601982676 0.5 0.444439801732 +UniRef50_UPI000380FF19 chemotaxis protein CheY, partial 0.901168440561 0.5 -0.401168440561 +UniRef50_Q21YC7 NADH quinone oxidoreductase subunit A 0.0517360743192 0.500000000001 0.44826392568 +UniRef50_P38674 Ketol acid reductoisomerase, mitochondrial 0.000463479155041 0.5 0.499536520845 +UniRef50_C1ELB5 Bis tetraphosphatase PrpE [asymmetrical] 0.231302094778 0.500000000001 0.268697905221 +UniRef50_UPI00046FCD40 rubredoxin 2.02189751012 0.5 -1.52189751012 +UniRef50_UPI000381FE78 hypothetical protein 0.208046148283 0.5 0.291953851717 +UniRef50_UPI0003BCF281 PREDICTED 0.0271433528278 0.5 0.472856647172 +UniRef50_V8G1A8 Membrane protein 0.14252903201 0.500000000001 0.357470967989 +UniRef50_UPI0003600AD1 hypothetical protein 0.97306582271 0.5 -0.47306582271 +UniRef50_UPI000328F489 PREDICTED 3.8947966331 0.5 -3.3947966331 +UniRef50_I4EZI0 0.228740582475 0.5 0.271259417525 +UniRef50_P9WN18 Glutamate synthase [NADPH] small chain 0.360424715241 0.5 0.139575284759 +UniRef50_I3UWQ8 Spermidine putrescine ABC transporter ATPase 1.8995324507 0.5 -1.3995324507 +UniRef50_P45061 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.943723433045 0.5 -0.443723433045 +UniRef50_A3LGX4 0.0524491016005 0.5 0.4475508984 +UniRef50_UPI0002EE4E70 D amino acid dehydrogenase small subunit 0.600864998108 0.5 -0.100864998108 +UniRef50_A3LGX1 0.260946524942 0.5 0.239053475058 +UniRef50_UPI00046F4247 MarR family transcriptional regulator 0.0640919573549 0.5 0.435908042645 +UniRef50_Q28TP6 2.67806881542 0.500000000003 -2.17806881542 +UniRef50_Q4QP16 tRNA specific 2 thiouridylase MnmA 0.204524320799 0.5 0.295475679201 +UniRef50_P46861 Lysine tRNA ligase 0.0439532167372 0.5 0.456046783263 +UniRef50_R4YER9 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 3.65701565045 0.499999999999 -3.15701565045 +UniRef50_UPI00036FD96D hypothetical protein 0.0733696084285 0.5 0.426630391572 +UniRef50_Q6AB12 4 hydroxythreonine 4 phosphate dehydrogenase 0.0171400193757 0.5 0.482859980624 +UniRef50_J2XB15 2.59935951178 0.5 -2.09935951178 +UniRef50_C7DAC2 ISSpo9, transposase 2.90948634685 0.5 -2.40948634685 +UniRef50_Q8TT39 30S ribosomal protein S2 2.72407071661 0.499999999999 -2.22407071661 +UniRef50_A2RNT2 Proline tRNA ligase 0.48334057606 0.5 0.0166594239404 +UniRef50_A6M0B1 PAS PAC sensor signal transduction histidine kinase 0.0806864230612 0.5 0.419313576939 +UniRef50_D3QE85 1.80199934747 0.500000000002 -1.30199934747 +UniRef50_G4LM52 0.0324570492298 0.5 0.46754295077 +UniRef50_UPI00047BC3F9 peptidase S41 0.0881349214461 0.499999999999 0.411865078555 +UniRef50_P27129 Lipopolysaccharide 1,2 glucosyltransferase 5.04781932474 0.499999999996 -4.54781932474 +UniRef50_B2I9J2 Tryptophan synthase beta chain 0.0015928482583 0.5 0.498407151742 +UniRef50_S9RYT9 0.331168858087 0.5 0.168831141913 +UniRef50_UPI0001850E7F signal recognition particle protein 0.0109402263222 0.5 0.489059773678 +UniRef50_Q9HUL4 Epoxyqueuosine reductase 2.01775596942 0.5 -1.51775596942 +UniRef50_UPI0002D4C97B hypothetical protein 1.34055354161 0.500000000001 -0.840553541606 +UniRef50_Q98PK9 Thioredoxin reductase 0.528327576761 0.5 -0.0283275767609 +UniRef50_A8AK39 6,7 dimethyl 8 ribityllumazine synthase 0.56848971853 0.5 -0.0684897185299 +UniRef50_UPI000369CA42 hypothetical protein 0.000883065705718 0.5 0.499116934294 +UniRef50_Q58944 0.255179978623 0.5 0.244820021377 +UniRef50_UPI00042A1E91 hypothetical protein 0.619601246692 0.5 -0.119601246692 +UniRef50_F3F298 AsmA family protein 0.168368098685 0.5 0.331631901315 +UniRef50_UPI0002DB6B05 hypothetical protein 0.169382092588 0.5 0.330617907412 +UniRef50_UPI00036C5239 hypothetical protein 0.385376409082 0.5 0.114623590918 +UniRef50_C6SRS1 1.77733046666 0.500000000001 -1.27733046666 +UniRef50_A3V2W0 0.326008862083 0.5 0.173991137917 +UniRef50_Q883S2 Universal stress protein family 2.71925288751 0.500000000001 -2.21925288751 +UniRef50_UPI0003B63590 LuxR family transcriptional regulator 0.0482713203432 0.5 0.451728679657 +UniRef50_UPI000365B6C8 hypothetical protein 0.220254590989 0.5 0.279745409011 +UniRef50_L0A7F9 0.00163795127031 0.5 0.49836204873 +UniRef50_D9RHP8 Enterotoxin family protein 5.23698892166 0.5 -4.73698892166 +UniRef50_A9KSY6 Sulfate ABC transporter, inner membrane subunit 0.110100857096 0.5 0.389899142904 +UniRef50_UPI00047845D7 hypothetical protein 0.391738787829 0.5 0.108261212171 +UniRef50_A6LQA8 Methyl accepting chemotaxis sensory transducer 0.141618359727 0.5 0.358381640273 +UniRef50_Q5HPI3 Protein GlcT 2.04074331055 0.499999999997 -1.54074331055 +UniRef50_UPI0003193330 hypothetical protein 1.92511924421 0.500000000001 -1.42511924421 +UniRef50_B5EXJ5 7 cyano 7 deazaguanine synthase 0.574334153385 0.5 -0.0743341533847 +UniRef50_B0U641 Lipoyl synthase 0.159680592857 0.5 0.340319407144 +UniRef50_B0NLN7 0.0185131122689 0.5 0.481486887731 +UniRef50_S5CLP0 Zn dependent hydrolase, including glyoxylase 0.0706746959927 0.5 0.429325304007 +UniRef50_Q6N6L4 Phosphopantetheine adenylyltransferase 0.811515934884 0.5 -0.311515934884 +UniRef50_T5BQJ5 1.36627079504 0.500000000001 -0.86627079504 +UniRef50_UPI000465E97D excinuclease ABC subunit A 0.907635055551 0.5 -0.407635055551 +UniRef50_UPI0003715EFB hypothetical protein 0.0626625283915 0.5 0.437337471608 +UniRef50_E8SKI8 Ribosomal protein S18p alanine acetyltransferase 2.70024407794 0.499999999998 -2.20024407794 +UniRef50_U2LTW3 0.0596206897657 0.5 0.440379310234 +UniRef50_I3U9I7 Phosphomethylpyrimidine synthase ThiC 0.16954529594 0.5 0.33045470406 +UniRef50_O75306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2, mitochondrial 0.342649562922 0.5 0.157350437078 +UniRef50_B4RJZ9 0.0277408440945 0.5 0.472259155906 +UniRef50_UPI00037AAD6E hypothetical protein 1.83225437266 0.5 -1.33225437266 +UniRef50_M4UTW5 1.32469558315 0.5 -0.824695583154 +UniRef50_B9KR53 Transcriptional regulator, Fis family 2.6040475952 0.500000000002 -2.1040475952 +UniRef50_A0A029LHT4 0.792046227812 0.5 -0.292046227812 +UniRef50_A0A024HXI8 0.239969492665 0.5 0.260030507335 +UniRef50_C6SQS1 2.0939930693 0.5 -1.5939930693 +UniRef50_Q5HJ89 Protein EssA 1.66790264335 0.5 -1.16790264335 +UniRef50_Q887V6 Protein CysZ homolog 1.47573447358 0.5 -0.975734473583 +UniRef50_G7U6T9 Bacterial extracellular solute binding protein, family 5 0.0250732263678 0.5 0.474926773632 +UniRef50_UPI0002E39CBB hypothetical protein 0.0735548167113 0.5 0.426445183289 +UniRef50_UPI00035CE977 hypothetical protein 1.70971703166 0.499999999998 -1.20971703166 +UniRef50_Q6FD73 0.0579503759077 0.5 0.442049624092 +UniRef50_A3M3H0 Adhesin Ata autotransporter 0.00906158597335 0.5 0.490938414027 +UniRef50_Q46I98 Aspartate tRNA ligase 0.100011717928 0.500000000001 0.399988282071 +UniRef50_UPI000467166E hypothetical protein 0.325180535509 0.5 0.174819464491 +UniRef50_UPI00037BC758 dihydropyrimidine dehydrogenase subunit B, partial 1.0573546004 0.5 -0.557354600403 +UniRef50_Q5I3J7 Aec68 0.87296916396 0.5 -0.37296916396 +UniRef50_UPI00036C8B3C AraC family transcriptional regulator 2.82920076998 0.5 -2.32920076998 +UniRef50_Q62MT4 Methionyl tRNA formyltransferase 0.0221795076004 0.5 0.4778204924 +UniRef50_W4KZP5 Peptidase family S11 2.5298693482 0.5 -2.0298693482 +UniRef50_Q3JHM0 0.0181520359838 0.5 0.481847964016 +UniRef50_P80705 Aldehyde dehydrogenase gamma chain 6.68264773213 0.5 -6.18264773213 +UniRef50_V6UAA6 0.337163345916 0.5 0.162836654084 +UniRef50_UPI00047E4EA4 hypothetical protein 0.194037644731 0.5 0.305962355269 +UniRef50_M1P548 Dipeptide binding ABC transporter, periplasmic substrate binding component 2.73578015562 0.499999999999 -2.23578015562 +UniRef50_UPI000289E1E5 sodium 0.21602577865 0.5 0.28397422135 +UniRef50_P37474 Transcription repair coupling factor 2.70218736776 0.499999999996 -2.20218736776 +UniRef50_P46320 Probable 6 phospho beta glucosidase 0.100997627611 0.5 0.399002372389 +UniRef50_G4YC47 5.44893043362 0.500000000001 -4.94893043362 +UniRef50_Q5HP54 2.25096911789 0.499999999998 -1.75096911789 +UniRef50_R6FZP0 Flagellar M ring protein 0.406467128448 0.5 0.0935328715516 +UniRef50_D6SFZ2 0.0222376682171 0.5 0.477762331783 +UniRef50_A5ISK2 ABC 2 type transporter 2.03253721919 0.5 -1.53253721919 +UniRef50_UPI00035F0BE8 hypothetical protein 0.0183842073457 0.5 0.481615792654 +UniRef50_L8DT93 Chaperone protein DnaJ 0.523466730706 0.5 -0.0234667307058 +UniRef50_F8HGC4 Permease of the major facilitator family protein 0.210142747921 0.5 0.289857252079 +UniRef50_F0TCJ5 Methyltransferase MtaA CmuA family 5.95001150133 0.500000000003 -5.45001150133 +UniRef50_E4PPH7 DNA repair protein RecN 0.659632536104 0.5 -0.159632536104 +UniRef50_D7BZV1 0.757693821969 0.5 -0.257693821969 +UniRef50_Q46948 Chaperone protein YajL 0.99243401859 0.5 -0.49243401859 +UniRef50_P0A7B0 Inorganic pyrophosphatase 46.2221027061 0.499999999984 -45.7221027061 +UniRef50_UPI00037BC2EC hypothetical protein 0.257675147797 0.5 0.242324852203 +UniRef50_UPI00036A31F9 hypothetical protein 1.27985145221 0.5 -0.779851452207 +UniRef50_UPI00047ED552 hypothetical protein 0.410756373099 0.5 0.0892436269011 +UniRef50_Q1GCB3 0.530101839954 0.5 -0.0301018399542 +UniRef50_A0Q1L0 Putative fluoride ion transporter CrcB 2.2140964184 0.499999999998 -1.7140964184 +UniRef50_A3V7A8 1.35524276748 0.5 -0.855242767484 +UniRef50_M9S3N5 Glycosyl transferase family protein 4.1032646651 0.499999999999 -3.6032646651 +UniRef50_U5MSV8 DNA binding protein, excisionase family 0.122371738476 0.5 0.377628261524 +UniRef50_Q6UB95 RepA 10.4802859729 0.499999999999 -9.98028597292 +UniRef50_UPI000369C939 hypothetical protein 0.274862477261 0.5 0.225137522739 +UniRef50_P27298 Oligopeptidase A 5.37698681162 0.500000000009 -4.87698681163 +UniRef50_A0A058Z2Y8 0.987990793755 0.5 -0.487990793755 +UniRef50_UPI0002486501 methylcitrate synthase 0.337822835507 0.5 0.162177164493 +UniRef50_R5RD02 1.21238605236 0.5 -0.712386052363 +UniRef50_UPI000405521B acyl CoA dehydrogenase 1.49590261261 0.5 -0.995902612613 +UniRef50_UPI0003B6EF1B dihydroxyacetone kinase 0.00687009084256 0.5 0.493129909157 +UniRef50_B8I2T4 UDP N acetylmuramoylalanine D glutamate ligase 0.227787495138 0.5 0.272212504862 +UniRef50_Q5M1E5 0.642343380167 0.5 -0.142343380167 +UniRef50_G7M8Y1 Type IV pilus assembly PilZ 0.328384458332 0.5 0.171615541668 +UniRef50_V9WDB1 2.93410121489 0.5 -2.43410121489 +UniRef50_UPI000473B5E4 translation initiation factor IF 3, partial 0.349945594993 0.5 0.150054405007 +UniRef50_S8ZG58 Amidase 0.329933337724 0.5 0.170066662276 +UniRef50_UPI000262E88D reductase 0.281905168501 0.5 0.218094831499 +UniRef50_P72785 4 alpha glucanotransferase 0.00902305628174 0.5 0.490976943718 +UniRef50_UPI00047CBF8E hypothetical protein 0.290014006391 0.5 0.209985993609 +UniRef50_F2LSI9 Metal dependent phosphohydrolase, HD region 0.0398361656081 0.5 0.460163834392 +UniRef50_UPI00026286B7 ABC transporter permease 6.57558300999 0.500000000005 -6.07558300999 +UniRef50_UPI00037C530D hypothetical protein 0.321952499207 0.5 0.178047500793 +UniRef50_X3WHN6 Short chain dehydrogenase 0.229374685883 0.5 0.270625314117 +UniRef50_UPI000366373C hypothetical protein 1.29673242526 0.5 -0.796732425259 +UniRef50_O27123 DNA directed RNA polymerase subunit B 1.48846049789 0.500000000001 -0.988460497886 +UniRef50_UPI000464BDF6 amino acid permease 1.56188939505 0.5 -1.06188939505 +UniRef50_UPI0002D53655 hypothetical protein 0.822207641412 0.5 -0.322207641412 +UniRef50_D9UDJ1 Predicted protein 5.60754554714 0.5 -5.10754554714 +UniRef50_UPI0003B6AAD5 hypothetical protein 1.22710526958 0.5 -0.727105269584 +UniRef50_UPI00036396B4 hypothetical protein 0.00879902592772 0.5 0.491200974072 +UniRef50_Q5HP23 Acetylglutamate kinase 1.07340868979 0.5 -0.573408689786 +UniRef50_R7PUS4 Adhesin like protein 2.66137507093 0.500000000002 -2.16137507093 +UniRef50_B0RVC3 Two component system response regulator 0.10299637249 0.5 0.397003627511 +UniRef50_U6HM79 Mitochondrial ribosomal protein S12 0.38670912883 0.5 0.11329087117 +UniRef50_C5Y1C5 0.224812679597 0.5 0.275187320403 +UniRef50_UPI00029AFBF4 excinuclease ABC subunit A 0.171671387353 0.500000000001 0.328328612646 +UniRef50_X7F301 0.781281241079 0.5 -0.281281241079 +UniRef50_UPI0003B6DCF9 cysteine synthase 0.102828940788 0.499999999999 0.397171059212 +UniRef50_UPI0002490F12 alcohol dehydrogenase 0.53493417851 0.5 -0.0349341785101 +UniRef50_Q3J074 TRAP T family transporter, DctP subunit 1.60153904582 0.5 -1.10153904582 +UniRef50_C4J2K7 0.103793267524 0.5 0.396206732476 +UniRef50_A0A028WY26 PF04507 domain protein 0.26913034745 0.5 0.23086965255 +UniRef50_C5Y4M7 1.65225311326 0.500000000001 -1.15225311326 +UniRef50_Q2Y5B5 Ribosomal RNA small subunit methyltransferase G 0.236323812968 0.5 0.263676187032 +UniRef50_X2I3A5 Biotin protein ligase 0.227991112098 0.5 0.272008887902 +UniRef50_L1K7Q7 1.50669025174 0.500000000001 -1.00669025175 +UniRef50_P55177 Hydrolase in agr operon 5.16022260915 0.499999999995 -4.66022260914 +UniRef50_P77966 DNA gyrase subunit B 0.368990910899 0.5 0.131009089101 +UniRef50_U3QXL3 NADH dehydrogenase 0.0112894166092 0.5 0.488710583391 +UniRef50_L0DVV1 0.0540368536468 0.5 0.445963146353 +UniRef50_V9XXU6 0.00788972697812 0.5 0.492110273022 +UniRef50_P76082 2,3 dehydroadipyl CoA hydratase 1.10409930775 0.5 -0.604099307755 +UniRef50_UPI000462B96F PREDICTED 0.876173771454 0.5 -0.376173771454 +UniRef50_F8KNY9 0.99597863752 0.5 -0.49597863752 +UniRef50_N0CST0 0.431905987715 0.5 0.0680940122854 +UniRef50_A6M3H8 0.0855457504622 0.5 0.414454249538 +UniRef50_F3KGL6 0.321011852774 0.5 0.178988147226 +UniRef50_J7QZC7 Citrate dependent iron transport, membrane bound protein 1.66221575363 0.499999999999 -1.16221575363 +UniRef50_W8RUY9 Carbonic anhydrase, family 3 0.162839991685 0.5 0.337160008315 +UniRef50_UPI000376C688 MULTISPECIES 2.03118172792 0.5 -1.53118172792 +UniRef50_G7LY34 ATP dependent DNA helicase RecQ 0.107944705668 0.5 0.392055294332 +UniRef50_UPI0003B3BF74 diguanylate cyclase 0.0515789792755 0.5 0.448421020725 +UniRef50_UPI00016AC33B malto oligosyltrehalose synthase, partial 0.354119412298 0.5 0.145880587702 +UniRef50_P0ACB9 Protein HemY 0.630815014303 0.5 -0.130815014303 +UniRef50_B9KPD3 Small GTP binding protein 1.53379976243 0.500000000001 -1.03379976243 +UniRef50_C1KXH5 3 5 exoribonuclease YhaM 1.71389868044 0.500000000001 -1.21389868044 +UniRef50_UPI00035C4E67 hypothetical protein, partial 0.0380845175164 0.5 0.461915482484 +UniRef50_Q5LZU3 Phosphate import ATP binding protein PstB 1 0.0357836940569 0.5 0.464216305943 +UniRef50_UPI000362695F hypothetical protein 0.006561992206 0.5 0.493438007794 +UniRef50_Q81ZF5 Methionine import ATP binding protein MetN 2 0.061848362719 0.5 0.438151637281 +UniRef50_Q3J527 2.20138144862 0.5 -1.70138144862 +UniRef50_Q3J525 9.31676221142 0.500000000003 -8.81676221142 +UniRef50_Q3J523 1.18880181419 0.5 -0.68880181419 +UniRef50_UPI0004098CF0 hypothetical protein 0.101365129155 0.5 0.398634870845 +UniRef50_UPI0004261724 hypothetical protein 0.326009102887 0.5 0.173990897113 +UniRef50_P37178 Phosphoenolpyruvate protein phosphotransferase PtsP 1.15776242344 0.5 -0.657762423438 +UniRef50_K6NB87 NADP oxidoreductase coenzyme F420 dependent 0.293149606253 0.5 0.206850393747 +UniRef50_Q00753 Msm operon regulatory protein 3.20901388669 0.500000000002 -2.70901388669 +UniRef50_UPI000360AD7B hypothetical protein 0.00656430102353 0.5 0.493435698977 +UniRef50_UPI000345C404 peptide ABC transporter ATP binding protein 0.673754123588 0.5 -0.173754123588 +UniRef50_UPI00046F1741 DNA mismatch repair protein MutL 0.323446604181 0.5 0.176553395819 +UniRef50_K2M973 6.0017906988 0.500000000003 -5.50179069881 +UniRef50_Q8Z389 UDP N acetyl D mannosamine dehydrogenase 1.83995110572 0.5 -1.33995110572 +UniRef50_I1PAG3 0.0463222315293 0.5 0.453677768471 +UniRef50_UPI00046359F3 hypothetical protein 0.335176905974 0.5 0.164823094026 +UniRef50_R9SHS2 Xaa Pro aminopeptidase 2.8800685563 0.500000000001 -2.38006855631 +UniRef50_Q05026 UDP glucose 4 epimerase 0.0634250866914 0.5 0.436574913308 +UniRef50_UPI000383C331 PREDICTED 2.98754288427 0.500000000002 -2.48754288428 +UniRef50_F2GA52 Starvation protein B 0.0134188480311 0.5 0.486581151969 +UniRef50_UPI00046CD6A6 hypothetical protein 0.0693051959292 0.5 0.430694804071 +UniRef50_UPI0003B37C7C Ssp gyrB intein 0.284902353651 0.5 0.215097646349 +UniRef50_UPI00038053ED hypothetical protein 0.303802714239 0.5 0.196197285761 +UniRef50_A6TLS6 Phosphoribosylglycinamide formyltransferase 0.232818042086 0.5 0.267181957914 +UniRef50_UPI000379A6AD 30S ribosomal protein S4 0.122036869661 0.5 0.377963130339 +UniRef50_X0SMG4 Marine sediment metagenome DNA, contig 0.641943233771 0.5 -0.141943233771 +UniRef50_Q6FBI7 0.00660217092122 0.5 0.493397829079 +UniRef50_A5IUD2 ATP dependent Clp protease proteolytic subunit 3.93670267365 0.500000000003 -3.43670267365 +UniRef50_UPI0003817364 hypothetical protein 0.536451803918 0.5 -0.0364518039184 +UniRef50_Q2S1J1 Adenylosuccinate synthetase 0.215218058717 0.5 0.284781941283 +UniRef50_Q5LAB4 3 isopropylmalate dehydrogenase 0.0033544213431 0.5 0.496645578657 +UniRef50_UPI0003661FA3 methionyl tRNA synthetase 0.17279168583 0.5 0.32720831417 +UniRef50_R5RTQ1 MIP family channel protein 0.289863611916 0.5 0.210136388084 +UniRef50_Q4L8Y1 1.79330693945 0.499999999999 -1.29330693945 +UniRef50_UPI0003620285 hypothetical protein 0.385225915698 0.5 0.114774084302 +UniRef50_A4X3N1 0.0627914241359 0.5 0.437208575864 +UniRef50_M7AGI7 0.0410416853107 0.5 0.458958314689 +UniRef50_A3UJ86 0.26716663656 0.5 0.23283336344 +UniRef50_G0EV06 Malonate decarboxylase gamma subunit 0.0334170055769 0.5 0.466582994423 +UniRef50_Q46908 Putative electron transfer flavoprotein subunit YgcR 2.25520487433 0.499999999999 -1.75520487433 +UniRef50_J9YRC9 Dihydrofolate reductase 1.3527837135 0.5 -0.852783713504 +UniRef50_P19669 Transaldolase 0.00728512631405 0.5 0.492714873686 +UniRef50_UPI00035C8A55 hypothetical protein, partial 0.0792655673519 0.5 0.420734432648 +UniRef50_Q3JRV3 200 kDa antigen p200, putative 0.123595274811 0.500000000001 0.376404725189 +UniRef50_UPI00016B0021 alkaline phosphatase family protein 1.15741085773 0.5 -0.657410857732 +UniRef50_UPI00016BFB47 excinuclease ABC subunit C 0.035783932379 0.5 0.464216067621 +UniRef50_P75957 Lipoprotein releasing system ATP binding protein LolD 0.123458735659 0.5 0.376541264341 +UniRef50_Q8Y6E5 Adenine deaminase 0.0069537657236 0.5 0.493046234277 +UniRef50_V6QD47 0.594882194693 0.5 -0.0948821946932 +UniRef50_R6XHZ3 Iron compound ABC transporter ATP binding protein 0.262103355551 0.5 0.237896644449 +UniRef50_UPI0004697408 DNA processing protein 0.240288827445 0.5 0.259711172555 +UniRef50_Q1C7K2 Electron transport complex subunit B 0.591454117438 0.5 -0.0914541174383 +UniRef50_O86062 NADH pyrophosphatase 5.24254945797 0.499999999991 -4.74254945796 +UniRef50_X6L5V7 1.44738295854 0.5 -0.947382958536 +UniRef50_UPI00046F4BB9 transcriptional regulator 4.8229350025 0.5 -4.3229350025 +UniRef50_B2V236 Flagellar hook protein FlgE 0.166158953528 0.5 0.333841046471 +UniRef50_G0AHQ2 TonB dependent receptor 0.0114704435767 0.5 0.488529556423 +UniRef50_UPI000472C224 hypothetical protein 0.205178638064 0.5 0.294821361936 +UniRef50_UPI00035FBCBA hypothetical protein 0.979477911577 0.5 -0.479477911577 +UniRef50_V8PQC8 0.47757729117 0.5 0.0224227088297 +UniRef50_UPI00023781E2 acyl homoserine lactone synthase 0.312086926965 0.5 0.187913073035 +UniRef50_R7QQF1 Stackhouse genomic scaffold, scaffold_590 2.89641731247 0.499999999995 -2.39641731246 +UniRef50_UPI0003A1834B MULTISPECIES 0.0944474294533 0.5 0.405552570547 +UniRef50_Q9C641 Elongation factor G 1, mitochondrial 0.233541985913 0.5 0.266458014087 +UniRef50_UPI00047AAA07 beta lactamase 2.21187307301 0.500000000001 -1.71187307301 +UniRef50_Q1CTN3 7 cyano 7 deazaguanine synthase 0.00241869081902 0.499999999999 0.497581309182 +UniRef50_T3PCK3 Transcriptional regulator family protein 0.102566891745 0.5 0.397433108255 +UniRef50_UPI0000E11B6C Hemolysin type calcium binding region 2.14772715733 0.500000000001 -1.64772715733 +UniRef50_P18392 Sensor protein RstB 5.32377039901 0.500000000002 -4.82377039901 +UniRef50_UPI0003686798 hypothetical protein 0.532430110435 0.5 -0.0324301104346 +UniRef50_A7IEB4 1.38534303298 0.5 -0.885343032984 +UniRef50_F0MK77 HAD hydrolase, IIB family 0.0655267389788 0.5 0.434473261021 +UniRef50_UPI00035D0C83 hypothetical protein, partial 0.0359481531711 0.5 0.464051846829 +UniRef50_UPI0003B7726E ABC transporter permease 0.109239495581 0.5 0.390760504419 +UniRef50_UPI0003B5ECB0 putrescine spermidine ABC transporter substrate binding protein 1.10195121128 0.5 -0.601951211276 +UniRef50_D1AJ49 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.134353156865 0.5 0.365646843135 +UniRef50_A6LUW0 Dihydropyrimidinase 0.145164054176 0.5 0.354835945824 +UniRef50_P23849 Trk system potassium uptake protein TrkG 3.50792398524 0.499999999999 -3.00792398524 +UniRef50_UPI000413C1F5 hypothetical protein 0.0890471311678 0.499999999999 0.410952868833 +UniRef50_UPI00036EC63D hypothetical protein 0.0232270819812 0.5 0.476772918019 +UniRef50_O27465 Protein L isoaspartate methyltransferase homolog 8.50565138653 0.500000000004 -8.00565138654 +UniRef50_G7M4H0 GntR domain protein 0.194920274395 0.5 0.305079725605 +UniRef50_UPI0003646C18 hypothetical protein 0.385363303438 0.5 0.114636696562 +UniRef50_UPI00035E99F6 hypothetical protein, partial 2.45233826652 0.5 -1.95233826652 +UniRef50_W0Z0M6 ABC transporter permease 0.0168729982525 0.499999999999 0.483127001748 +UniRef50_R7PVK0 Bacterial transferase hexapeptide 4.0644042452 0.499999999999 -3.5644042452 +UniRef50_F0TB29 Mur ligase middle domain protein 1.58792219459 0.5 -1.08792219459 +UniRef50_O07051 L allo threonine aldolase 0.376909883577 0.5 0.123090116423 +UniRef50_T1XRH9 Ribulose phosphate 3 epimerase 3.11440055533 0.499999999997 -2.61440055533 +UniRef50_A0A023S2Y3 0.033715131265 0.5 0.466284868735 +UniRef50_B3PM96 Uracil phosphoribosyltransferase 0.0772113894182 0.5 0.422788610582 +UniRef50_UPI0003B6FCF3 sulfate permease, partial 1.44010338688 0.500000000001 -0.940103386878 +UniRef50_Q3KK43 0.848744870108 0.5 -0.348744870108 +UniRef50_E6U995 Binding protein dependent transport systems inner membrane component 0.76400397682 0.5 -0.26400397682 +UniRef50_S9FAF7 0.370865043113 0.5 0.129134956887 +UniRef50_J9PA20 0.264854117796 0.5 0.235145882204 +UniRef50_F0L4J7 Terminase large subunit 1.04291660549 0.5 -0.542916605494 +UniRef50_UPI00047624EF DNA recombination protein RecAprecursor 0.298759514113 0.5 0.201240485887 +UniRef50_A0LGY7 Holliday junction ATP dependent DNA helicase RuvA 0.614132143758 0.5 -0.114132143758 +UniRef50_Q1GJB3 Protein NrdI 0.105664024636 0.5 0.394335975364 +UniRef50_A6FR36 0.0479183514504 0.5 0.45208164855 +UniRef50_UPI0003683730 choline dehydrogenase, partial 1.36833548685 0.500000000001 -0.868335486856 +UniRef50_A3PNW7 8.71311497516 0.500000000003 -8.21311497516 +UniRef50_G8AX62 1.75210365519 0.5 -1.25210365519 +UniRef50_G8AX61 0.0949122201122 0.5 0.405087779888 +UniRef50_UPI000288951C hypothetical protein 0.276876995856 0.5 0.223123004144 +UniRef50_Q2FJ20 Transcriptional regulator SarA 0.645721950779 0.5 -0.145721950779 +UniRef50_P30952 Malate synthase 1, glyoxysomal 0.687226049031 0.5 -0.187226049031 +UniRef50_U5BVT6 1.26847793485 0.5 -0.76847793485 +UniRef50_UPI00046A51CF hypothetical protein 0.165878136342 0.5 0.334121863658 +UniRef50_W4HL11 21.3700919512 0.499999999991 -20.8700919512 +UniRef50_UPI00041A2261 hypothetical protein 0.0199278758218 0.5 0.480072124179 +UniRef50_UPI000465CB11 choline dehydrogenase 1.06619256729 0.5 -0.566192567285 +UniRef50_K3Y3R8 0.0225396331134 0.5 0.477460366887 +UniRef50_UPI0003D774B2 PREDICTED 0.266903496248 0.5 0.233096503752 +UniRef50_G7DEN0 0.795685465632 0.5 -0.295685465632 +UniRef50_UPI000303FFC3 hypothetical protein 3.54089718236 0.499999999999 -3.04089718236 +UniRef50_T2EBD3 ATP dependent helicase HrpA 1.56371195781 0.5 -1.06371195781 +UniRef50_UPI0003751AA9 hypothetical protein 0.134677408396 0.5 0.365322591604 +UniRef50_UPI000174441D ATPase AAA 2 domain protein 0.182722793271 0.5 0.317277206729 +UniRef50_UPI0003B682D7 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.272714090869 0.5 0.227285909131 +UniRef50_UPI0003EFB271 hypothetical protein 0.374835604291 0.5 0.125164395709 +UniRef50_Q04G65 Adenylate kinase 0.630908764698 0.5 -0.130908764698 +UniRef50_UPI00047D9C2A 3 hydroxybutyryl CoA dehydrogenase 0.0239768647148 0.5 0.476023135285 +UniRef50_E1W4N2 0.00848624350214 0.5 0.491513756498 +UniRef50_P0A0U8 Penicillin binding protein 2 0.0139709309906 0.5 0.486029069009 +UniRef50_B2S7C0 Thromboxane receptor 2.03775789744 0.5 -1.53775789744 +UniRef50_D5WJ02 PE PGRS family protein 0.348794990326 0.5 0.151205009674 +UniRef50_C3FB78 Transposon Tn1546 resolvase 3.21424849719 0.5 -2.71424849719 +UniRef50_P90597 Dihydrolipoyl dehydrogenase 3.52876425301 0.5 -3.02876425301 +UniRef50_G7D8J6 0.45333336674 0.5 0.0466666332597 +UniRef50_M9VK36 Cobaltochelatase subunit 0.0345488831015 0.5 0.465451116898 +UniRef50_K2G5P2 0.265776496029 0.5 0.234223503971 +UniRef50_UPI0003B33E99 phosphopentomutase 0.266278153775 0.5 0.233721846225 +UniRef50_UPI0003B58728 peptidase 0.0747535944346 0.5 0.425246405565 +UniRef50_P65368 0.59050741441 0.5 -0.0905074144103 +UniRef50_P54981 Phytoene dehydrogenase 0.343224841609 0.5 0.156775158391 +UniRef50_Q8RM03 Acetone carboxylase alpha subunit 0.00785518753202 0.5 0.492144812468 +UniRef50_G7M7T5 Metallophosphoesterase 0.325131720404 0.5 0.174868279596 +UniRef50_M0DR98 Transcriptional regulator 0.562218633997 0.5 -0.0622186339972 +UniRef50_U2PUQ4 0.360812747816 0.5 0.139187252184 +UniRef50_F7Y7J0 NAD dependent epimerase dehydratase 2.24008953199 0.5 -1.74008953199 +UniRef50_B7I4D0 Transcriptional regulator, DeoR family 0.0232825190083 0.5 0.476717480992 +UniRef50_R9TYY8 Spore envelope assembly protein SeaA 0.147958437645 0.5 0.352041562355 +UniRef50_Q8X693 2 methylcitrate dehydratase 1.56521464705 0.5 -1.06521464705 +UniRef50_F2ADJ4 2.71255565984 0.499999999997 -2.21255565984 +UniRef50_R5QQN1 0.33942820062 0.5 0.16057179938 +UniRef50_D4DML3 0.0513384417493 0.499999999999 0.448661558251 +UniRef50_E4CT22 0.0353197144047 0.5 0.464680285595 +UniRef50_G7RE88 Outer membrane specific lipoprotein transporter subunit LolC 0.121810290562 0.5 0.378189709438 +UniRef50_UPI0003B33E14 threonine dehydratase, partial 0.82322809077 0.5 -0.32322809077 +UniRef50_E4WMF0 0.420098052173 0.5 0.0799019478267 +UniRef50_UPI00036DEA69 hypothetical protein 0.352647023919 0.5 0.147352976081 +UniRef50_G0A8R2 Amino acid adenylation 0.0114238564151 0.5 0.488576143585 +UniRef50_UPI00046677C0 dihydrolipoamide dehydrogenase 0.203990811134 0.5 0.296009188866 +UniRef50_UPI0004669176 ABC transporter permease 0.523135893784 0.5 -0.0231358937842 +UniRef50_UPI0004651997 hypothetical protein, partial 0.24032944646 0.5 0.25967055354 +UniRef50_P51649 Succinate semialdehyde dehydrogenase, mitochondrial 1.11671073567 0.5 -0.616710735668 +UniRef50_Q4L9G5 Alkaline phosphatase III 2.79258141865 0.499999999997 -2.29258141864 +UniRef50_S6AK43 0.166061525763 0.5 0.333938474237 +UniRef50_W0BBW6 Acetyl coenzyme A synthetase 1.02597784644 0.5 -0.525977846437 +UniRef50_P24197 2.15262395894 0.5 -1.65262395894 +UniRef50_D3QJ12 ABC transporter ecsA 1.24215520904 0.5 -0.742155209042 +UniRef50_A0JTB2 Homodimeric dihydroxyacetone kinase 0.0110548830611 0.5 0.488945116939 +UniRef50_UPI000377AAAD hypothetical protein 0.15269260869 0.5 0.34730739131 +UniRef50_T1C4J3 Protein containing DUF28 0.334680315144 0.5 0.165319684856 +UniRef50_UPI00039592E8 PREDICTED 0.108478296848 0.5 0.391521703152 +UniRef50_A7HM29 Translation initiation factor IF 1 0.380678399463 0.5 0.119321600537 +UniRef50_P59351 UPF0229 protein PP_0396 5.22165513483 0.499999999998 -4.72165513483 +UniRef50_F9P554 Conserved domain protein 0.13351502631 0.5 0.36648497369 +UniRef50_Q3IUY8 Response regulator receiver protein 3.05648423389 0.499999999998 -2.55648423389 +UniRef50_UPI0002F4F600 translation elongation factor 0.046436845369 0.5 0.453563154631 +UniRef50_D0WHH7 0.170598037792 0.5 0.329401962208 +UniRef50_UPI0002D2633F 3 isopropylmalate dehydrogenase 0.298966359797 0.5 0.201033640203 +UniRef50_UPI0003F54605 aldehyde dehydrogenase 0.18934868424 0.5 0.31065131576 +UniRef50_B2S584 Ribulose phosphate 3 epimerase 5.20202541027 0.500000000002 -4.70202541028 +UniRef50_Q8PUM8 Sodium proline symporter 8.07844711749 0.5 -7.57844711749 +UniRef50_Q60BY8 Type 4 fimbrial biogenesis protein PilM 0.0912697029277 0.5 0.408730297072 +UniRef50_Q8CMK8 Membrane protein insertase YidC 1 1.90281607932 0.5 -1.40281607932 +UniRef50_UPI0001695299 ABC transporter like protein 0.138711120162 0.5 0.361288879838 +UniRef50_Q7UKJ8 Bifunctional purine biosynthesis protein PurH 0.124151879459 0.5 0.375848120541 +UniRef50_P0AG01 Lipopolysaccharide biosynthesis protein WzzE 6.02359814423 0.499999999999 -5.52359814423 +UniRef50_UPI00026C71F4 ABC transporter ATP binding protein 0.538026055647 0.5 -0.0380260556473 +UniRef50_P58083 Histidine ammonia lyase 0.113518617403 0.5 0.386481382597 +UniRef50_U7DF00 GntR family transcriptional regulator 2.11734577325 0.500000000002 -1.61734577325 +UniRef50_Q8CAY6 Acetyl CoA acetyltransferase, cytosolic 0.322248809295 0.5 0.177751190705 +UniRef50_A3PKD3 Flagellar motor switch protein FliG 1.43302919579 0.5 -0.933029195794 +UniRef50_F2A6H7 1.44032517851 0.499999999999 -0.940325178507 +UniRef50_UPI0004117F04 hypothetical protein 0.991342623483 0.5 -0.491342623483 +UniRef50_D8JDE9 Major Facilitator Superfamily protein 0.0128491838849 0.5 0.487150816115 +UniRef50_V7ZFZ6 3.05491752004 0.500000000003 -2.55491752004 +UniRef50_Q64737 Trifunctional purine biosynthetic protein adenosine 3 0.312776625348 0.5 0.187223374652 +UniRef50_UPI0003787A56 hypothetical protein 1.3549347909 0.5 -0.854934790903 +UniRef50_I6T745 Cell wall protein, WapE 1.56226196229 0.5 -1.06226196229 +UniRef50_P23388 Multiphosphoryl transfer protein 0.00357099749269 0.5 0.496429002507 +UniRef50_M7D383 Transposon protein 1.10715687727 0.5 -0.60715687727 +UniRef50_Q7UTP4 Glycerol kinase 0.224484275211 0.5 0.275515724789 +UniRef50_P37753 Mannose 1 phosphate guanylyltransferase 0.34688097439 0.5 0.15311902561 +UniRef50_V3L139 0.0887436078904 0.5 0.41125639211 +UniRef50_M7EU96 GroEL 0.631798061259 0.5 -0.131798061259 +UniRef50_F9EHV6 Integral membrane transport protein 1.00938146687 0.5 -0.509381466867 +UniRef50_Q8A8M0 Glycine dehydrogenase 0.000349856745307 0.5 0.499650143255 +UniRef50_X6L4K9 0.284665505494 0.5 0.215334494506 +UniRef50_Q3K9C8 Ribosomal RNA large subunit methyltransferase M 0.366417231274 0.5 0.133582768726 +UniRef50_D8JDM8 Dihydropteroate synthase 0.00672073445332 0.5 0.493279265547 +UniRef50_Q88FQ7 Enoyl CoA hydratase isomerase family protein 0.747092078232 0.5 -0.247092078232 +UniRef50_K2JPR7 0.690325556213 0.5 -0.190325556213 +UniRef50_UPI0002557988 dihydroorotate dehydrogenase 2, partial 0.290183932658 0.5 0.209816067342 +UniRef50_A9BLG4 binding domain protein 0.00143624954579 0.5 0.498563750454 +UniRef50_UPI00031A92CD hypothetical protein 0.195794032312 0.5 0.304205967688 +UniRef50_P11664 3.21917811033 0.500000000001 -2.71917811033 +UniRef50_M4WU27 Amidohydrolase 0.570730182165 0.5 -0.0707301821645 +UniRef50_B4RPU8 Lipoprotein 0.0249157439322 0.5 0.475084256067 +UniRef50_UPI00047BD119 hypothetical protein 0.0976986801093 0.5 0.40230131989 +UniRef50_UPI000382255A MULTISPECIES 0.0229651360355 0.5 0.477034863965 +UniRef50_A6U1W4 Segregation and condensation protein A 3.38617382524 0.499999999996 -2.88617382524 +UniRef50_A7X311 7.13745508912 0.499999999995 -6.63745508912 +UniRef50_UPI0003A8C9CC ArsR family transcriptional regulator 0.411040755338 0.5 0.0889592446624 +UniRef50_P44975 Lipoprotein signal peptidase 0.352347941604 0.5 0.147652058396 +UniRef50_Q8D2J1 Orotidine 5 phosphate decarboxylase 0.933302323358 0.5 -0.433302323358 +UniRef50_B7UZF1 0.096587987942 0.500000000001 0.403412012057 +UniRef50_Q602P0 Non canonical purine NTP pyrophosphatase 0.346188609191 0.5 0.153811390809 +UniRef50_UPI00047986C5 methionine aminopeptidase 1.30465126644 0.5 -0.804651266439 +UniRef50_UPI000345A820 hypothetical protein 0.651529654456 0.5 -0.151529654456 +UniRef50_P94328 Cyclic pyranopterin monophosphate synthase accessory protein 5.22703703344 0.500000000004 -4.72703703345 +UniRef50_Q4A054 1.63787680643 0.5 -1.13787680643 +UniRef50_UPI00016C38B9 S adenosylmethionine synthetase 0.0921969209411 0.5 0.407803079059 +UniRef50_A1B0J8 Extracellular solute binding protein, family 5 1.16728573558 0.5 -0.667285735584 +UniRef50_UPI00036C4EF7 30S ribosomal protein S2 0.254104301558 0.5 0.245895698442 +UniRef50_P94427 Probable 4 aminobutyrate aminotransferase 0.167986758829 0.5 0.332013241171 +UniRef50_G0VNS1 PTS family mannitol porter 0.136246203534 0.500000000001 0.363753796465 +UniRef50_M7A0H8 0.372476606715 0.5 0.127523393285 +UniRef50_F9P6H2 TIGR01906 like family protein 0.501422048702 0.5 -0.00142204870193 +UniRef50_UPI00047CB6EE serine threonine protein phosphatase 0.214828350284 0.5 0.285171649716 +UniRef50_F5X0H0 Haloacid dehalogenase like hydrolase 1.21152877685 0.5 -0.71152877685 +UniRef50_P77634 0.418286831065 0.5 0.0817131689348 +UniRef50_K7S5J0 Transcriptional regulator, DeoR family 0.135529057835 0.5 0.364470942165 +UniRef50_C9RW76 YhgE Pip C terminal domain protein 0.29814778744 0.5 0.20185221256 +UniRef50_E8SIF5 Biotin carboxylase 2.0464938911 0.500000000001 -1.5464938911 +UniRef50_UPI000255CC5F cation 0.101054015243 0.5 0.398945984757 +UniRef50_A0A059MIV5 Aldehyde dehydrogenase 0.00993816579797 0.5 0.490061834202 +UniRef50_P0C0I9 UTP glucose 1 phosphate uridylyltransferase 1 0.140927626695 0.5 0.359072373305 +UniRef50_R4ZZZ3 Transcriptional regulator pfoR 0.0979561965462 0.5 0.402043803454 +UniRef50_UPI0004755DAC hypothetical protein 0.0228343609534 0.5 0.477165639046 +UniRef50_P0ADJ1 1.58842687699 0.5 -1.08842687699 +UniRef50_B7I3B2 2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component 0.0080965389619 0.5 0.491903461038 +UniRef50_I4X0N6 Lysophospholipase 0.17879602999 0.499999999999 0.321203970011 +UniRef50_H6LRG1 6.03280676814 0.499999999989 -5.53280676813 +UniRef50_UPI00036A88A6 hypothetical protein 1.09725519148 0.5 -0.597255191477 +UniRef50_A5UKK0 Collagenase, peptidase family U32 1.11855120893 0.500000000001 -0.618551208927 +UniRef50_UPI0001FFE9A7 binding protein dependent transport systems inner membrane component 3.62693967586 0.499999999998 -3.12693967586 +UniRef50_UPI000360AEA9 hypothetical protein 1.32623292566 0.5 -0.826232925656 +UniRef50_UPI00036C7365 hypothetical protein 0.304195576179 0.5 0.195804423821 +UniRef50_C6UY37 1.20014719258 0.5 -0.700147192583 +UniRef50_D9RMN6 Phage protein 3.13487851154 0.5 -2.63487851154 +UniRef50_Q8FMD0 Peptide deformylase 2 0.0973720339073 0.5 0.402627966093 +UniRef50_Q931R7 Conserved virulence factor C 3.48911238782 0.5 -2.98911238782 +UniRef50_UPI0003FC08D1 serine dehydratase 0.0239319819207 0.5 0.47606801808 +UniRef50_B8DLQ2 ABC transporter related 0.0355118858137 0.499999999999 0.464488114187 +UniRef50_F0TB22 H4MPT linked C1 transfer pathway protein 7.69387029757 0.499999999997 -7.19387029757 +UniRef50_UPI0004770BE9 hypothetical protein 3.12993129519 0.5 -2.62993129519 +UniRef50_UPI0003B3248F methionyl tRNA synthetase 0.239040925074 0.5 0.260959074926 +UniRef50_UPI0003959E9D CDP 6 deoxy delta 3,4 glucoseen reductase 0.409739742951 0.5 0.0902602570489 +UniRef50_Q5HLS8 0.054315650241 0.5 0.445684349759 +UniRef50_Q49XT6 3.1285594798 0.5 -2.6285594798 +UniRef50_S1E292 PTS system, mannose fructose sorbose family, IID component 1.17856844974 0.500000000001 -0.678568449744 +UniRef50_A0A030WUA6 3 hydroxyisobutyrate dehydrogenase 2.58380930698 0.500000000001 -2.08380930698 +UniRef50_Q399M3 Macrolide export ATP binding permease protein MacB 0.179636377896 0.5 0.320363622104 +UniRef50_UPI0003C3A6B9 PREDICTED 0.0517740485728 0.5 0.448225951427 +UniRef50_Q3IW34 3.79881982958 0.499999999998 -3.29881982958 +UniRef50_X7EB18 WGR domain containing protein 0.791358421256 0.5 -0.291358421256 +UniRef50_Q3IW32 0.173276279378 0.5 0.326723720622 +UniRef50_UPI00047D4CFB trehalose phosphatase 0.648011119179 0.5 -0.148011119179 +UniRef50_UPI0003642130 hypothetical protein 1.58926570598 0.5 -1.08926570598 +UniRef50_UPI0003692D13 hypothetical protein 1.2580444611 0.5 -0.758044461096 +UniRef50_W4LSH7 0.163883149945 0.5 0.336116850055 +UniRef50_E4NIV5 1.34469339599 0.5 -0.844693395987 +UniRef50_UPI00035CB116 hypothetical protein 0.0138396326201 0.5 0.48616036738 +UniRef50_A0A011PWL1 Elongation factor G 0.09961673873 0.5 0.40038326127 +UniRef50_V4X579 0.0302813859905 0.5 0.469718614009 +UniRef50_UPI00045EC544 hypothetical protein 0.105070591558 0.5 0.394929408442 +UniRef50_UPI0003463109 AraC family transcriptional regulator 0.135722069945 0.5 0.364277930055 +UniRef50_I3TU69 Lincomycin resistance protein 0.124604543114 0.5 0.375395456886 +UniRef50_E6Q6J2 Thioesterase superfamily 0.00731208774641 0.500000000001 0.492687912253 +UniRef50_Q4ZXL0 Alginate lyase 0.188499453903 0.5 0.311500546097 +UniRef50_S0AG26 0.0266485207576 0.5 0.473351479243 +UniRef50_V4QY51 Transcriptional regulator 0.257660030934 0.5 0.242339969066 +UniRef50_L7EAU8 1.11924345056 0.500000000001 -0.619243450561 +UniRef50_Q9X806 Ubiquinol cytochrome c reductase cytochrome b subunit 0.017594050596 0.5 0.482405949404 +UniRef50_Q5NLZ4 Anhydro N acetylmuramic acid kinase 0.0971512602104 0.5 0.40284873979 +UniRef50_H0TL85 0.325418995701 0.5 0.174581004299 +UniRef50_U5MPM1 Methyl accepting chemotaxis protein 0.178739186329 0.5 0.321260813671 +UniRef50_Q4L667 Phosphatidylglycerol lysyltransferase 1.60575634824 0.5 -1.10575634824 +UniRef50_UPI0001FFE90B alcohol dehydrogenase 0.0178551536427 0.5 0.482144846357 +UniRef50_P77439 Multiphosphoryl transfer protein 1 3.22624423141 0.500000000002 -2.72624423142 +UniRef50_A9AF70 Urease subunit gamma 0.410452766224 0.5 0.0895472337758 +UniRef50_A5UKH6 13.5848124269 0.5 -13.0848124269 +UniRef50_UPI00036A7FB4 hypothetical protein 0.403386684134 0.5 0.0966133158662 +UniRef50_K2AEY0 7.10441891196 0.500000000002 -6.60441891197 +UniRef50_UPI0003DF5EC3 PREDICTED 0.227716104982 0.5 0.272283895018 +UniRef50_F2TZS1 1.09013324651 0.5 -0.590133246508 +UniRef50_Q1CW26 0.373992118267 0.5 0.126007881733 +UniRef50_I1B3F9 0.785602805352 0.5 -0.285602805352 +UniRef50_A8AVP5 ABC transporter, permease protein 0.905576136694 0.5 -0.405576136694 +UniRef50_A8LL26 tRNA pseudouridine synthase B 2.09460767443 0.5 -1.59460767443 +UniRef50_Q5HKS5 0.527646089639 0.5 -0.027646089639 +UniRef50_Q48FV2 Membrane protein, putative 2.30383860871 0.499999999998 -1.80383860871 +UniRef50_I3UWL7 LysR family transcriptional regulator 1.11386183674 0.5 -0.613861836743 +UniRef50_B0VV20 p aminobenzoate synthetase 0.0174152004819 0.5 0.482584799518 +UniRef50_C7CBT9 RepC like protein 1.52476377775 0.5 -1.02476377775 +UniRef50_P0AG19 N5 carboxyaminoimidazole ribonucleotide mutase 0.040656354252 0.499999999999 0.459343645749 +UniRef50_UPI0003B429F7 transposase 0.482324964252 0.5 0.0176750357476 +UniRef50_UPI0003B6F95F tRNA delta isopentenylpyrophosphate transferase 1.02499346753 0.5 -0.524993467528 +UniRef50_P65234 Ribose phosphate pyrophosphokinase 0.238682289597 0.5 0.261317710403 +UniRef50_D6CUH0 0.323415873195 0.5 0.176584126805 +UniRef50_A4WSC8 OmpA MotB domain protein 3.39255033285 0.5 -2.89255033285 +UniRef50_G9ADV3 0.904075127152 0.5 -0.404075127152 +UniRef50_G9ADV1 0.604869800664 0.5 -0.104869800664 +UniRef50_Q51952 OrfD 31.0063162708 0.49999999999 -30.5063162708 +UniRef50_S4HRH5 0.564531400556 0.5 -0.0645314005556 +UniRef50_O06994 Oligo 1,6 glucosidase 1 0.774777638212 0.5 -0.274777638212 +UniRef50_M5J6F3 0.197896528432 0.5 0.302103471568 +UniRef50_A9H974 0.55997082667 0.5 -0.05997082667 +UniRef50_A6LZS6 Metallophosphoesterase 0.0699268941117 0.5 0.430073105888 +UniRef50_Q1NCH4 Putative NAD specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ 0.83645659563 0.5 -0.33645659563 +UniRef50_UPI0004676B57 GntR family transcriptional regulator 0.309997768559 0.5 0.190002231441 +UniRef50_L5RMF7 0.0261601821115 0.5 0.473839817888 +UniRef50_P55253 Glucose 1 phosphate thymidylyltransferase 0.240060616646 0.5 0.259939383354 +UniRef50_F3SW08 Conserved domain protein 0.272020827141 0.5 0.227979172859 +UniRef50_Q6GJ34 Putative N acetylmannosaminyltransferase 2.22421141706 0.5 -1.72421141706 +UniRef50_Q67SJ2 Valine tRNA ligase 1.11828694373 0.5 -0.618286943733 +UniRef50_A0A038FZN0 0.0272605763597 0.5 0.47273942364 +UniRef50_A6LQR2 0.160141998226 0.5 0.339858001774 +UniRef50_Q9RV19 0.0211929509457 0.5 0.478807049054 +UniRef50_J0F0U1 0.897522868428 0.5 -0.397522868428 +UniRef50_B9J9V0 ABC transporter 1.84131313288 0.5 -1.34131313288 +UniRef50_UPI000379B10E hypothetical protein 0.0592763841296 0.5 0.440723615871 +UniRef50_Q8VYV7 3 dehydroquinate synthase, chloroplastic 0.058067409161 0.5 0.441932590839 +UniRef50_U3QUQ4 Chemotaxis protein CheA 1.85224842258 0.5 -1.35224842258 +UniRef50_I4TNI4 4.01070750203 0.500000000002 -3.51070750203 +UniRef50_A6LQ19 Drug resistance transporter, EmrB QacA subfamily 0.455112159004 0.5 0.0448878409956 +UniRef50_Q5HQY3 2.25336714319 0.499999999999 -1.75336714319 +UniRef50_P16219 Short chain specific acyl CoA dehydrogenase, mitochondrial 0.129419208957 0.5 0.370580791043 +UniRef50_B9KX63 0.323071959541 0.5 0.176928040459 +UniRef50_B9KX60 2.41562366807 0.5 -1.91562366807 +UniRef50_A8Z124 1.76833898016 0.499999999998 -1.26833898016 +UniRef50_B9KX64 2.87078387022 0.5 -2.37078387022 +UniRef50_UPI00037397A9 hypothetical protein 0.24585670646 0.5 0.25414329354 +UniRef50_UPI0004787AB2 transcriptional regulator 0.461066619137 0.5 0.038933380863 +UniRef50_C1CYZ3 0.00162971285178 0.5 0.498370287148 +UniRef50_Q0SPR1 Cysteine desulfurase family protein 0.029360925202 0.5 0.470639074798 +UniRef50_Q16A99 tRNA 2 thiocytidine biosynthesis protein TtcA 3.00002196624 0.5 -2.50002196624 +UniRef50_F7ZKB0 0.41831056166 0.5 0.0816894383404 +UniRef50_W5X4N7 0.211789915212 0.5 0.288210084788 +UniRef50_Q7VTF7 Nicotinate phosphoribosyltransferase 0.0334651010395 0.5 0.466534898961 +UniRef50_P56074 Delta aminolevulinic acid dehydratase 0.0262425462859 0.5 0.473757453714 +UniRef50_H1S081 4.3563424796 0.5 -3.8563424796 +UniRef50_A7ZTW7 HTH type transcriptional regulator HdfR 1.26212088635 0.500000000001 -0.762120886351 +UniRef50_UPI000248D3FD Fosmidomycin resistance protein 1.15755739179 0.5 -0.657557391788 +UniRef50_UPI00047C911F hyalin 0.25474293433 0.5 0.24525706567 +UniRef50_M9RZD9 ABC transporter permease 0.889657683439 0.5 -0.389657683439 +UniRef50_UPI000237DA3D hypothetical protein 0.0188895545018 0.500000000001 0.481110445498 +UniRef50_P25666 Protein HtrL 3.25518220788 0.499999999998 -2.75518220788 +UniRef50_P42506 2.47214220221 0.5 -1.97214220221 +UniRef50_E6C5P3 Glycosyl hydrolase family 20, catalytic domain protein 0.0128911221888 0.5 0.487108877811 +UniRef50_V1BIM5 1.66642909585 0.499999999999 -1.16642909585 +UniRef50_UPI00032A718B PREDICTED 0.224948112128 0.5 0.275051887872 +UniRef50_UPI000464A259 hypothetical protein 1.23779986381 0.5 -0.737799863806 +UniRef50_A7ZTA0 Glyoxylate hydroxypyruvate reductase B 7.49870891952 0.499999999993 -6.99870891951 +UniRef50_A3PIF6 1.01195547962 0.5 -0.511955479622 +UniRef50_UPI0003B59BB8 isopentenyl diphosphate delta isomerase 2.88969669424 0.500000000001 -2.38969669425 +UniRef50_B3E0I7 50S ribosomal protein L2 7.23460989663 0.5 -6.73460989663 +UniRef50_UPI0003F9D1F7 anthranilate synthase component I 0.38380001011 0.5 0.11619998989 +UniRef50_A6M0E6 Signal transduction histidine kinase regulating citrate malate metabolism 0.100160694058 0.5 0.399839305943 +UniRef50_A5UMV1 Glycosyltransferase, GT2 family 2.82428255555 0.500000000002 -2.32428255555 +UniRef50_Q3HKG1 Mechanosensitive ion channel protein 1.46946205575 0.499999999999 -0.969462055749 +UniRef50_B8JAD8 Nucleoside diphosphate kinase 163.352895245 0.499999999828 -162.852895245 +UniRef50_V5VIG2 Tellurite resistance protein 0.0170670562839 0.5 0.482932943716 +UniRef50_O26800 Ketoisovalerate oxidoreductase subunit VorB 2.16312665087 0.500000000001 -1.66312665087 +UniRef50_Q2G718 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.604833395867 0.5 -0.104833395867 +UniRef50_A6LPK7 Sporulation stage II, protein E 0.0501851710951 0.5 0.449814828905 +UniRef50_UPI00037D5D4D hypothetical protein 1.6911130734 0.5 -1.1911130734 +UniRef50_UPI0003A28CDF competence protein 0.226949316297 0.5 0.273050683703 +UniRef50_UPI0003959061 sensor histidine kinase 0.3535853446 0.5 0.1464146554 +UniRef50_U5VXD2 0.63254945525 0.5 -0.13254945525 +UniRef50_B9E115 Phosphopentomutase 0.430098599623 0.5 0.0699014003774 +UniRef50_C0QXM0 Pyrrolidone carboxylate peptidase 2.47563208611 0.5 -1.97563208611 +UniRef50_A3L8X2 2.25385035847 0.5 -1.75385035847 +UniRef50_P39343 HTH type transcriptional regulator IdnR 9.66116096861 0.499999999994 -9.1611609686 +UniRef50_A6LUQ9 0.809025958144 0.5 -0.309025958144 +UniRef50_A3L8X4 0.361850196016 0.5 0.138149803984 +UniRef50_B9E9D0 11.3732001821 0.500000000002 -10.8732001821 +UniRef50_B6ISP7 Phosphopantetheine adenylyltransferase 2.81555501489 0.5 -2.31555501489 +UniRef50_A6LUQ6 0.489961705556 0.5 0.0100382944442 +UniRef50_E8PCN1 FilB 0.00747631420978 0.500000000001 0.49252368579 +UniRef50_UPI000348A8A8 hypothetical protein 0.42701766399 0.5 0.0729823360102 +UniRef50_M5SVU5 Beta Ig H3 fasciclin 2.77216826733 0.5 -2.27216826733 +UniRef50_L4FI59 Sensor protein torS 1.15355337268 0.500000000002 -0.653553372682 +UniRef50_UPI0002E655C1 hypothetical protein 1.69831750737 0.5 -1.19831750737 +UniRef50_Q1C665 Penicillin insensitive murein endopeptidase 1.20975363875 0.5 -0.709753638748 +UniRef50_Q8K928 Oxygen independent coproporphyrinogen III oxidase like protein BUsg_532 0.06931249175 0.5 0.43068750825 +UniRef50_A9M4C4 UPF0276 protein NMCC_2101 0.267148861537 0.5 0.232851138463 +UniRef50_UPI00036BDC09 hypothetical protein 0.314736757135 0.5 0.185263242865 +UniRef50_D6Z4R6 Phosphoenolpyruvate phosphomutase 0.520424147426 0.5 -0.0204241474256 +UniRef50_Q1JFX3 2.63440224979 0.5 -2.13440224979 +UniRef50_UPI0004637872 hypothetical protein, partial 0.0751621318212 0.5 0.424837868179 +UniRef50_G8V105 Penicillinase repressor family protein 4.18843237742 0.500000000003 -3.68843237742 +UniRef50_UPI00037E6C33 hypothetical protein 3.46468601309 0.499999999999 -2.96468601309 +UniRef50_UPI000411C3F9 hypothetical protein 0.353043292901 0.5 0.146956707099 +UniRef50_Q9JY91 L asparaginase I 0.0453693959918 0.5 0.454630604008 +UniRef50_UPI0004739998 hypothetical protein 0.167070212669 0.499999999999 0.332929787331 +UniRef50_B1Y2J2 0.106377065862 0.5 0.393622934138 +UniRef50_P0ACY2 Putative NADH nitroreductase YdjA 0.621031163679 0.5 -0.121031163679 +UniRef50_UPI00037F4C0B hypothetical protein 0.0267025474294 0.5 0.473297452571 +UniRef50_Q2NEQ0 Histidinol phosphate aminotransferase 5.29960423458 0.500000000001 -4.79960423459 +UniRef50_Q9RRA6 Iron ABC transporter, periplasmic substrate binding protein, putative 0.00264638411114 0.5 0.497353615889 +UniRef50_I3BQN9 0.0155574208252 0.5 0.484442579175 +UniRef50_UPI00039CCA94 3 hydroxybutyryl CoA dehydratase 1.20164509957 0.5 -0.701645099574 +UniRef50_Q7NIR9 Phosphoribosylformylglycinamidine synthase 2 2.10726063488 0.500000000002 -1.60726063488 +UniRef50_UPI0001FFE446 choline dehydrogenase 1.81281976823 0.5 -1.31281976823 +UniRef50_UPI00036ECF80 30S ribosomal protein S17 0.0575023085568 0.5 0.442497691444 +UniRef50_A5IUE2 DUTPase 7.05236999135 0.499999999991 -6.55236999134 +UniRef50_A6LV78 NMT1 THI5 like protein 0.1011254682 0.5 0.3988745318 +UniRef50_UPI0004636D79 hypothetical protein 7.27643395708 0.500000000002 -6.77643395708 +UniRef50_L6YPP4 Autoinducer 2 aldolase 0.432400471084 0.5 0.0675995289158 +UniRef50_A0A034W5P4 1.56966167595 0.5 -1.06966167595 +UniRef50_W8TZV3 0.0699732446156 0.499999999999 0.430026755385 +UniRef50_UPI0003607ABA heavy metal transporter CzcA 0.109026511248 0.5 0.390973488752 +UniRef50_UPI0003FD356F hypothetical protein 0.198797778674 0.5 0.301202221326 +UniRef50_B9TAE6 Glycine betaine L proline transport system permease protein proW, putative 0.630084442044 0.5 -0.130084442044 +UniRef50_T1E861 0.441265729296 0.5 0.0587342707036 +UniRef50_Q8CS24 2.97150518523 0.500000000001 -2.47150518523 +UniRef50_Q8FU18 Glutamyl Q tRNA synthetase 0.00361678309674 0.5 0.496383216903 +UniRef50_Q0VT33 2.43413604549 0.500000000002 -1.93413604549 +UniRef50_I6UMD2 Acetyltransferase 0.0637222176545 0.5 0.436277782346 +UniRef50_UPI00036CF3D9 formate dehydrogenase subunit alpha 2.36608709156 0.499999999997 -1.86608709156 +UniRef50_Q87DM8 Acetylornithine aminotransferase 0.254559968248 0.5 0.245440031752 +UniRef50_UPI00017455B0 PAS PAC sensor hybrid histidine kinase 0.03253126878 0.5 0.46746873122 +UniRef50_H9UU02 Ribonucleoside diphosphage reductase 1, beta subunit, B2 6.19091431066 0.499999999999 -5.69091431066 +UniRef50_P63884 N acetylmuramoyl L alanine amidase AmiC 1.71789281006 0.5 -1.21789281006 +UniRef50_Q3J1R2 Alpha keto acid binding periplasmic protein TakP 4.33935131614 0.5 -3.83935131614 +UniRef50_UPI0004785A72 dihydroxy acid dehydratase 0.595535687382 0.5 -0.0955356873819 +UniRef50_UPI0003D742A7 PREDICTED 0.122439610113 0.5 0.377560389887 +UniRef50_B4RR58 Pilin glycosyl transferase A 0.101402467129 0.5 0.398597532871 +UniRef50_P9WG25 Transketolase 0.0125277518771 0.5 0.487472248123 +UniRef50_F2D6B6 Predicted protein 4.92102521631 0.499999999992 -4.4210252163 +UniRef50_C7U7G3 Predicted protein 0.139905265685 0.500000000001 0.360094734315 +UniRef50_B9KS15 CheW protein 20.728295082 0.499999999993 -20.228295082 +UniRef50_UPI00036E0B46 hypothetical protein 0.233576931741 0.5 0.266423068259 +UniRef50_Q87VF3 Lipid A export ATP binding permease protein MsbA 21.5216288146 0.499999999987 -21.0216288146 +UniRef50_S4X152 3.47804893219 0.5 -2.97804893219 +UniRef50_S5YPY4 Branched chain amino acid transporter AzlC 0.501661339481 0.5 -0.00166133948085 +UniRef50_UPI00047E9A5D hypothetical protein 0.208131221248 0.5 0.291868778752 +UniRef50_A5WDF2 Major facilitator superfamily MFS_1 0.00674715738792 0.5 0.493252842612 +UniRef50_UPI00047CAA5D cobyrinic acid a c diamide adenosyltransferase 0.057684937059 0.5 0.442315062941 +UniRef50_H5HII5 Protein traU 2.73569401628 0.5 -2.23569401628 +UniRef50_R1BAS7 0.183048712938 0.5 0.316951287061 +UniRef50_Q8DTW5 1.52221488531 0.5 -1.02221488531 +UniRef50_E4N7W5 0.177343947455 0.5 0.322656052546 +UniRef50_Q8DTW1 2.03551666925 0.5 -1.53551666925 +UniRef50_Q8DTW2 0.51634171428 0.5 -0.0163417142797 +UniRef50_UPI00040D5ECC lysophospholipase 0.0578115783798 0.5 0.44218842162 +UniRef50_E4BFH6 0.123878187352 0.499999999999 0.376121812648 +UniRef50_R6S4R3 NADH 0.0939256837793 0.5 0.406074316221 +UniRef50_Z5SAF9 0.302524441208 0.5 0.197475558792 +UniRef50_Q3IVP4 2.19913852944 0.499999999999 -1.69913852944 +UniRef50_Q3IVP3 0.0437983230297 0.5 0.45620167697 +UniRef50_R1DLE7 1.38925288106 0.5 -0.889252881064 +UniRef50_P44093 1.24201782611 0.5 -0.742017826115 +UniRef50_UPI0003457BAD hypothetical protein 0.943993013671 0.5 -0.443993013671 +UniRef50_Q73LF4 1 deoxy D xylulose 5 phosphate synthase 0.0347412234448 0.5 0.465258776555 +UniRef50_Q5HNB3 O succinylbenzoic acid synthetase, putative 1.57606294842 0.5 -1.07606294842 +UniRef50_UPI0003C1B3E9 0.332008714467 0.5 0.167991285533 +UniRef50_Q8PYJ4 Methionine tRNA ligase 0.566105370053 0.5 -0.0661053700527 +UniRef50_A8PM40 Transcriptional repressor NrdR 0.156530449329 0.5 0.343469550671 +UniRef50_A6LZR8 0.121997037616 0.5 0.378002962384 +UniRef50_P20372 Protocatechuate 3,4 dioxygenase beta chain 0.0250102117038 0.5 0.474989788296 +UniRef50_K0S5L3 0.00536160418552 0.5 0.494638395815 +UniRef50_UPI000248D061 iron hydroxamate transporter permease subunit, partial 0.0869849341519 0.5 0.413015065848 +UniRef50_K2HGX5 1.48630719919 0.5 -0.986307199191 +UniRef50_A3PL72 4.96155644552 0.500000000001 -4.46155644552 +UniRef50_Q8CPK5 Cell division protein FtsA 2.60422548282 0.499999999998 -2.10422548281 +UniRef50_A0A011NNA2 0.255495808854 0.5 0.244504191146 +UniRef50_C4K9K2 0.552091935422 0.5 -0.0520919354217 +UniRef50_A4WYS1 0.408872663163 0.5 0.0911273368366 +UniRef50_C6S8M1 0.0205494200463 0.5 0.479450579954 +UniRef50_P54457 Ribosomal silencing factor RsfS 0.471885617423 0.5 0.028114382577 +UniRef50_UPI0003B3EB5D pyruvate phosphate dikinase 0.148060152791 0.5 0.351939847209 +UniRef50_V4JG08 0.486876522741 0.5 0.0131234772586 +UniRef50_UPI00021917AB DNA processing protein DprA 0.36269043342 0.5 0.13730956658 +UniRef50_UPI0002E59390 hypothetical protein 1.40918828414 0.5 -0.909188284142 +UniRef50_UPI000255B733 peroxiredoxin, ohr subfamily protein 0.0432591809161 0.5 0.456740819084 +UniRef50_Q49V41 Putative TrmH family tRNA rRNA methyltransferase 2.89521394246 0.5 -2.39521394246 +UniRef50_D0K0C5 0.0134644416583 0.5 0.486535558342 +UniRef50_V6KIY8 0.0976235124902 0.5 0.40237648751 +UniRef50_UPI0003C1B40C PREDICTED 0.232655006191 0.5 0.267344993809 +UniRef50_P37624 1.50763557177 0.5 -1.00763557177 +UniRef50_F8JKY1 0.417090336284 0.5 0.0829096637161 +UniRef50_C6SPT2 Predicted periplasmic or secreted lipoprotein 0.300193016427 0.5 0.199806983573 +UniRef50_Q034G9 6 phospho alpha glucosidase 2 0.118144516432 0.5 0.381855483567 +UniRef50_G4LBR0 MFS family transporter 0.316296405016 0.5 0.183703594984 +UniRef50_Q81L15 Translation initiation factor IF 3 1.79154779561 0.5 -1.29154779561 +UniRef50_D8UHW0 0.0401599750038 0.5 0.459840024996 +UniRef50_D5G934 Whole genome shotgun sequence assembly, scaffold_16, strain Mel28 0.173024373337 0.5 0.326975626663 +UniRef50_W5XAK2 Citrate synthase 0.488788977265 0.5 0.0112110227351 +UniRef50_A8YTF9 Thymidylate kinase 2.15477839346 0.500000000001 -1.65477839346 +UniRef50_UPI00034584B5 hypothetical protein 0.56253868669 0.5 -0.0625386866902 +UniRef50_Q8XA47 Sensor histidine kinase QseE 0.983280043607 0.5 -0.483280043607 +UniRef50_S6AZJ1 2.99395382933 0.499999999999 -2.49395382932 +UniRef50_UPI0003B76F12 glycerol kinase 0.729528415291 0.5 -0.229528415291 +UniRef50_N9ILP1 0.102050138337 0.5 0.397949861663 +UniRef50_Q6D178 23S rRNA C(5)) methyltransferase RlmD 1.01599679525 0.5 -0.515996795255 +UniRef50_B2UW91 Dihydroorotase 0.158118169655 0.5 0.341881830345 +UniRef50_B9MRD1 4 hydroxy tetrahydrodipicolinate synthase 0.00180470162197 0.5 0.498195298378 +UniRef50_UPI00016A52E2 oxidoreductase, FAD binding protein, partial 1.16060172166 0.5 -0.660601721658 +UniRef50_K8D6Q9 Cell division protein FtsK 2.97374350553 0.5 -2.47374350553 +UniRef50_W1JGR6 0.176865890172 0.5 0.323134109828 +UniRef50_UPI00023785BE ABC transporter like protein 2.82260696709 0.500000000002 -2.32260696709 +UniRef50_UPI00040687FC hypothetical protein 1.89141078039 0.499999999998 -1.39141078039 +UniRef50_D3E3V9 Transporter MIP family 1.45414273269 0.499999999999 -0.954142732692 +UniRef50_A5UK88 Adhesin like protein 2.12820395121 0.499999999999 -1.6282039512 +UniRef50_A6M085 GCN5 related N acetyltransferase 0.446385510971 0.5 0.0536144890286 +UniRef50_UPI00036FB667 hypothetical protein 0.845803406698 0.5 -0.345803406698 +UniRef50_Q6FCW7 Phosphate import ATP binding protein PstB 0.0240159106807 0.5 0.475984089319 +UniRef50_O34364 Probable oligo 1,6 glucosidase 2 7.07467468154 0.499999999996 -6.57467468154 +UniRef50_Q3JSX2 0.214647901561 0.5 0.285352098439 +UniRef50_Q3JSX0 3.07562835508 0.5 -2.57562835508 +UniRef50_UPI00020D97AB excinuclease ABC subunit B 0.102670948807 0.499999999999 0.397329051193 +UniRef50_A1B092 2.49762637102 0.5 -1.99762637102 +UniRef50_F0QGI7 0.0280819193583 0.5 0.471918080642 +UniRef50_UPI0003B3B830 2 oxoglutarate dehydrogenase E1, partial 0.222474624503 0.5 0.277525375497 +UniRef50_Q81V80 Putative pyridoxal phosphate dependent acyltransferase 2.77631561237 0.5 -2.27631561237 +UniRef50_Q7VK98 Methionyl tRNA formyltransferase 0.393891508797 0.5 0.106108491203 +UniRef50_UPI00034B192C ATP binding protein 2.35619195607 0.500000000001 -1.85619195607 +UniRef50_Q9K0G6 Non canonical purine NTP pyrophosphatase 0.000691108571979 0.5 0.499308891428 +UniRef50_M9VK41 KHG KDPG aldolase 0.0806736899308 0.5 0.419326310069 +UniRef50_Q3D1H7 2.29609104186 0.5 -1.79609104186 +UniRef50_B1AJ73 Urease subunit alpha 0.0906006250033 0.500000000001 0.409399374996 +UniRef50_Q5P7J7 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.00261058939817 0.5 0.497389410602 +UniRef50_U1VIQ4 0.0161333450583 0.5 0.483866654942 +UniRef50_W5XFT3 General secretion pathway protein G 0.0204569371178 0.5 0.479543062882 +UniRef50_Q9M5K2 Dihydrolipoyl dehydrogenase 2, mitochondrial 0.190211232576 0.5 0.309788767424 +UniRef50_UPI00035E4A51 hypothetical protein 0.0199395573032 0.5 0.480060442696 +UniRef50_Q4FNA6 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.350691412796 0.5 0.149308587204 +UniRef50_UPI00036C5D7B hypothetical protein 0.54340735637 0.5 -0.0434073563697 +UniRef50_V9VU16 Regulator 0.638039886761 0.5 -0.138039886761 +UniRef50_Q2NSZ1 Macrolide export ATP binding permease protein MacB 0.0800851242773 0.5 0.419914875723 +UniRef50_M9R8E0 Putative IS30 family transposase 0.668414832845 0.5 -0.168414832845 +UniRef50_F0RNU6 0.000816659703546 0.5 0.499183340296 +UniRef50_A0A011PXZ1 Copper exporting P type ATPase A 0.0776932630856 0.499999999999 0.422306736915 +UniRef50_B2K308 UPF0502 protein YPTS_2082 0.24144984341 0.5 0.25855015659 +UniRef50_UPI0003B66071 sodium 0.333939255887 0.5 0.166060744113 +UniRef50_K0LM02 Formate nitrite transporter family protein 1.22114445718 0.5 -0.721144457185 +UniRef50_O53182 2 oxoglutarate oxidoreductase subunit KorA 0.00857252721221 0.5 0.491427472788 +UniRef50_R7PY79 1.28808831985 0.5 -0.788088319851 +UniRef50_B2A170 Carbamoyl phosphate synthase large chain 0.0946180128868 0.5 0.405381987113 +UniRef50_Q3KGL4 Uracil DNA glycosylase 1.34426373074 0.5 -0.844263730741 +UniRef50_A6LYS3 PAS PAC sensor signal transduction histidine kinase 0.154123776199 0.500000000001 0.3458762238 +UniRef50_G7MBX9 Xylose isomerase domain containing protein TIM barrel 0.121316197944 0.500000000001 0.378683802056 +UniRef50_UPI000370772D hypothetical protein 0.503551447995 0.5 -0.00355144799527 +UniRef50_Q6GBK7 Putative antiporter subunit mnhA2 1.71768298208 0.499999999998 -1.21768298207 +UniRef50_UPI000376D794 hypothetical protein, partial 0.384510552975 0.5 0.115489447025 +UniRef50_UPI0003B415C3 phospholipase C 0.208814438774 0.5 0.291185561226 +UniRef50_UPI0003A4E33B peptidase 2.22493691077 0.5 -1.72493691077 +UniRef50_A7HF60 Tetratricopeptide TPR_4 0.581690860526 0.5 -0.0816908605259 +UniRef50_Q9WXB2 Phytoene disaturase 0.851712198594 0.5 -0.351712198594 +UniRef50_Q3SL19 Serine type D ala D ala carboxypeptidase 1.90105885918 0.499999999998 -1.40105885918 +UniRef50_UPI0001FFE6FF oxidoreductase 0.038887837736 0.5 0.461112162264 +UniRef50_Q5HQE8 Probable glycolipid permease LtaA 2.54227775037 0.500000000002 -2.04227775037 +UniRef50_Q31WQ9 0.313423347168 0.5 0.186576652832 +UniRef50_UPI00036A674F hypothetical protein 0.0603075243541 0.5 0.439692475646 +UniRef50_L0IJZ9 Beta glucosidase like glycosyl hydrolase 0.171648652187 0.5 0.328351347813 +UniRef50_L1KBS6 1.69248197957 0.5 -1.19248197957 +UniRef50_Q9HUG9 Bifunctional protein HldE 0.955071086107 0.5 -0.455071086107 +UniRef50_Q5HR43 0.3201586092 0.5 0.1798413908 +UniRef50_W5XGK2 DNA mismatch repair protein MutL 0.218567412786 0.5 0.281432587214 +UniRef50_UPI000262634A dihydropyrimidine dehydrogenase subunit A 0.109620078551 0.5 0.390379921449 +UniRef50_A6M2S3 Threonyl alanyl tRNA synthetase, SAD 0.0912921578745 0.5 0.408707842126 +UniRef50_B1YKT1 Ribosomal protein L11 methyltransferase 0.0181855518753 0.5 0.481814448125 +UniRef50_W0AKF5 Exo poly alpha D galacturonosidase 0.422001031543 0.5 0.0779989684572 +UniRef50_UPI000463C46F Surfeit locus 1 family protein 0.315480989309 0.5 0.184519010691 +UniRef50_A3M3W1 Phage integrase 0.0466125819343 0.5 0.453387418066 +UniRef50_U4WEY2 2.14191504395 0.500000000001 -1.64191504395 +UniRef50_Q08YP9 1.10154334073 0.499999999999 -0.601543340725 +UniRef50_U5MNN3 Glycerate dehydrogenase HprA 0.125017848746 0.5 0.374982151254 +UniRef50_UPI0002BB9F78 hypothetical protein, partial 5.42741283883 0.500000000001 -4.92741283883 +UniRef50_A8M9N8 GTPase like protein 1.36691971234 0.5 -0.866919712341 +UniRef50_P52041 3 hydroxybutyryl CoA dehydrogenase 2.65576634363 0.5 -2.15576634363 +UniRef50_V9BHA3 Elongation factor Tu 2.42873076441 0.500000000002 -1.92873076442 +UniRef50_Q2FWQ0 Anti repressor 3.39442019497 0.499999999999 -2.89442019497 +UniRef50_J2YEX7 Transport protein, AzlD family 0.0680455999268 0.5 0.431954400073 +UniRef50_D3VGH0 Putative mating pair stabilization protein 0.733337961257 0.5 -0.233337961257 +UniRef50_X5JZY6 ABC transporter, ATP binding protein 3.83587878828 0.499999999998 -3.33587878828 +UniRef50_Q8E5X0 Hydroxyethylthiazole kinase 0.402992309369 0.5 0.0970076906315 +UniRef50_B8FP12 Lipoprotein 2.73148515826 0.499999999999 -2.23148515826 +UniRef50_Q2FXR3 Delta aminolevulinic acid dehydratase 2.56352340844 0.499999999999 -2.06352340844 +UniRef50_A0A023RZK1 Transglutaminase 0.0127669623295 0.5 0.487233037671 +UniRef50_UPI0002E002F0 ABC transporter ATP binding protein 2.96641226962 0.5 -2.46641226962 +UniRef50_Q1CRS3 tRNA specific 2 thiouridylase MnmA 0.0286039185113 0.5 0.471396081489 +UniRef50_Q6W1T0 Transporter 1.0070017777 0.5 -0.507001777704 +UniRef50_V6QBN8 0.227056008183 0.5 0.272943991817 +UniRef50_J7QD35 3.23310419771 0.5 -2.73310419771 +UniRef50_A6LQ54 0.134292188866 0.5 0.365707811134 +UniRef50_Q4FQF7 ATP phosphoribosyltransferase 0.048011703818 0.5 0.451988296182 +UniRef50_A6LQ58 0.692952345129 0.5 -0.192952345129 +UniRef50_B4R825 Succinoglycan biosynthesis protein 2.82851937283 0.499999999999 -2.32851937283 +UniRef50_P31828 Probable zinc protease PqqL 0.780134742214 0.5 -0.280134742214 +UniRef50_A7I252 Glutamate 1 semialdehyde 2,1 aminomutase 0.000463173552478 0.5 0.499536826448 +UniRef50_G1ZXK5 Sodium proline symporter 1.74214967312 0.499999999998 -1.24214967312 +UniRef50_F3SDM6 1.02135365337 0.5 -0.52135365337 +UniRef50_UPI00035C8B7E hypothetical protein 2.21025099449 0.5 -1.71025099449 +UniRef50_H4A9R7 PRD domain protein 2.74597239898 0.5 -2.24597239898 +UniRef50_A6LRK0 UspA domain protein 0.345193487566 0.5 0.154806512434 +UniRef50_A5UNV2 Putative structural protein 0.173133538525 0.5 0.326866461476 +UniRef50_Q83LD5 4.6957352041 0.500000000001 -4.1957352041 +UniRef50_A1TXZ0 Gluconolactonase 0.707686716624 0.5 -0.207686716624 +UniRef50_UPI0003169EC4 hypothetical protein 1.06779557598 0.5 -0.567795575979 +UniRef50_B9KTB3 Extracellular solute binding protein, family 5 1.71079052787 0.499999999999 -1.21079052787 +UniRef50_A6LZH5 Cation diffusion facilitator family transporter 1.21750165948 0.5 -0.717501659482 +UniRef50_A4WR60 von Willebrand factor, type A 8.3842634166 0.5 -7.8842634166 +UniRef50_Q9KQM0 5 deoxynucleotidase VC_1978 1.00675664738 0.5 -0.506756647376 +UniRef50_UPI0003B76BAF malto oligosyltrehalose synthase, partial 0.684537174508 0.5 -0.184537174508 +UniRef50_F8G1E1 6.28353913147 0.499999999999 -5.78353913147 +UniRef50_UPI0003B6C0E2 ATPase 0.35293728254 0.5 0.14706271746 +UniRef50_R7F196 0.0134424208514 0.5 0.486557579149 +UniRef50_UPI000379E4F4 hypothetical protein 0.286147481013 0.5 0.213852518987 +UniRef50_R5BXF1 Aspartokinase 0.0253326475927 0.5 0.474667352407 +UniRef50_UPI0003B32155 hypothetical protein 7.1991665924 0.499999999995 -6.6991665924 +UniRef50_UPI000472BA56 hypothetical protein, partial 0.360450488717 0.5 0.139549511283 +UniRef50_E6AKY5 4Fe 4S binding domain protein 0.916668855874 0.5 -0.416668855874 +UniRef50_UPI000428EAFE hypothetical protein 0.296602342837 0.5 0.203397657163 +UniRef50_Q75ZQ4 Urease subunit gamma 0.140974874186 0.500000000001 0.359025125813 +UniRef50_D2PVS1 0.241800282603 0.5 0.258199717397 +UniRef50_Q5HFU7 30S ribosomal protein S1 1.43817518497 0.5 -0.93817518497 +UniRef50_UPI00040934E7 hypothetical protein 0.214670229882 0.5 0.285329770118 +UniRef50_Q2FG95 Probable cell wall amidase LytH 1.8059622231 0.500000000001 -1.3059622231 +UniRef50_T7NH17 L fucose proton symporter 1.08598681206 0.5 -0.585986812055 +UniRef50_Q5HN77 Amino acid ABC transporter, permease amino acid binding protein, putative 2.62363769001 0.5 -2.12363769001 +UniRef50_UPI0003665A08 hypothetical protein 2.40784952105 0.5 -1.90784952105 +UniRef50_B4RL88 0.0309191502427 0.5 0.469080849757 +UniRef50_N0DYS1 0.0220300692462 0.5 0.477969930754 +UniRef50_UPI0003B45643 glycosyl transferase family 1 2.01610344874 0.5 -1.51610344874 +UniRef50_UPI0001912596 SsrA binding protein, partial 0.226721882319 0.5 0.273278117681 +UniRef50_A7FPN7 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.280767049149 0.5 0.219232950851 +UniRef50_U5MTV6 0.217289594953 0.5 0.282710405047 +UniRef50_V2EJX2 Proline specific permease 1.09187170174 0.5 -0.591871701736 +UniRef50_P62177 RNA polymerase sigma 35 factor 0.11320881013 0.5 0.386791189869 +UniRef50_P42601 Inner membrane protein alx 0.160263193719 0.5 0.339736806281 +UniRef50_UPI00036D10A8 hypothetical protein, partial 4.64702408397 0.5 -4.14702408397 +UniRef50_UPI00035D2E6B hypothetical protein 0.471353016708 0.5 0.0286469832919 +UniRef50_P39207 Nucleoside diphosphate kinase 1 0.222838336767 0.5 0.277161663233 +UniRef50_UPI000376C41C hypothetical protein 0.00954241303731 0.5 0.490457586962 +UniRef50_P80357 Arginine N succinyltransferase subunit alpha 1.02114723648 0.5 -0.521147236483 +UniRef50_F0YH85 0.241302529683 0.5 0.258697470317 +UniRef50_I2JHH7 0.416863940056 0.5 0.0831360599438 +UniRef50_O25770 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.0303834673635 0.5 0.469616532637 +UniRef50_R5T8M0 Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC 0.123928168973 0.5 0.376071831027 +UniRef50_Q38YR5 0.00139479767905 0.5 0.498605202321 +UniRef50_A0A014QHI0 0.0371879336899 0.5 0.46281206631 +UniRef50_UPI0001FFF018 AMP dependent synthetase 0.522503336815 0.5 -0.0225033368149 +UniRef50_A7AI53 0.0631472558998 0.5 0.436852744101 +UniRef50_UPI0002B44D7F PREDICTED 0.179084767527 0.499999999999 0.320915232474 +UniRef50_A0QI67 0.0731716653826 0.5 0.426828334617 +UniRef50_UPI0003638900 hypothetical protein 0.0464520167007 0.5 0.4535479833 +UniRef50_UPI00046489F4 ABC transporter ATPase, partial 0.171544879569 0.5 0.328455120431 +UniRef50_B6ZUP8 Formate C acetyltransferase 3 3.86929713607 0.499999999998 -3.36929713607 +UniRef50_UPI00039CFDC1 hypothetical protein 0.0261245468396 0.5 0.47387545316 +UniRef50_B1ZKW6 40 residue YVTN family beta propeller repeat protein 1.34934302839 0.5 -0.849343028393 +UniRef50_C5Z6N8 0.0479516361153 0.5 0.452048363885 +UniRef50_A6UVH0 FO synthase subunit 1 2.75514306791 0.499999999999 -2.25514306791 +UniRef50_Q2NGM6 Probable translation initiation factor IF 2 3.48332512947 0.500000000001 -2.98332512947 +UniRef50_A0A031HYF4 Cell envelope like function transcriptional attenuator common domain protein 0.00609856395798 0.5 0.493901436042 +UniRef50_A1R863 tRNA specific 2 thiouridylase MnmA 0.00666388620416 0.5 0.493336113796 +UniRef50_F0Y2L6 Expressed protein 0.114984979792 0.5 0.385015020208 +UniRef50_U5RSG0 NAD dependent epimerase dehydratase 3.78055317077 0.500000000003 -3.28055317077 +UniRef50_N0ATL3 Amidase 0.120772944616 0.5 0.379227055384 +UniRef50_W0YMI4 GTP binding protein LepA 0.226998576452 0.5 0.273001423548 +UniRef50_Q5HKG7 ABC transporter, ATP binding protein 2.88058517035 0.499999999997 -2.38058517035 +UniRef50_A7FBL3 0.0477650913277 0.5 0.452234908672 +UniRef50_P0AD62 Pyruvate kinase I 0.722906008879 0.5 -0.222906008879 +UniRef50_P17597 Acetolactate synthase, chloroplastic 0.365304509717 0.5 0.134695490283 +UniRef50_P80576 Phospho 2 dehydro 3 deoxyheptonate aldolase 3.91028649319 0.500000000002 -3.4102864932 +UniRef50_R7PTS8 2.72505853208 0.5 -2.22505853208 +UniRef50_A0A032AQX4 0.486815678929 0.5 0.0131843210712 +UniRef50_Q2NBB9 0.363163104591 0.5 0.136836895409 +UniRef50_Q829X3 UvrABC system protein A 0.679683687817 0.5 -0.179683687817 +UniRef50_UPI0003739172 hypothetical protein 0.142503433923 0.5 0.357496566077 +UniRef50_E3A6L5 2.49373053962 0.499999999999 -1.99373053962 +UniRef50_J1NS24 Arabinose transport protein 0.198414829495 0.5 0.301585170505 +UniRef50_A4WT93 3.38802373454 0.5 -2.88802373454 +UniRef50_A9UZQ9 Predicted protein 1.03223842396 0.5 -0.532238423964 +UniRef50_C6SP54 8.78764870653 0.499999999998 -8.28764870653 +UniRef50_UPI000255E535 malonyl CoA acyl carrier protein transacylase, partial 0.085509695219 0.5 0.414490304781 +UniRef50_K4H363 Ribose ABC transporter, periplasmic ribose binding protein RbsB 8.77615756016 0.500000000002 -8.27615756016 +UniRef50_Q2P7B9 3 oxoacyl [acyl carrier protein] synthase 3 0.98656780973 0.5 -0.48656780973 +UniRef50_Q8XIK5 0.0271372220368 0.500000000001 0.472862777963 +UniRef50_UPI00034B5D93 DNA polymerase III subunit gamma tau 0.13472408155 0.5 0.36527591845 +UniRef50_R4R715 Putrescine importer PuuP 0.197721448484 0.5 0.302278551516 +UniRef50_Q6NGH3 Ribonuclease 3 0.00156117973237 0.5 0.498438820268 +UniRef50_Q5HLI2 Amino acid ABC transporter, amino acid binding protein 0.995582915128 0.5 -0.495582915128 +UniRef50_UPI0003B3520D mannose 1 phosphate guanylyltransferase 1.1153891014 0.5 -0.615389101396 +UniRef50_M9VI11 Phosphoenolpyruvate sugar phosphotransferase 0.0195348435878 0.5 0.480465156412 +UniRef50_UPI00036C530C hypothetical protein, partial 0.278995468021 0.5 0.221004531979 +UniRef50_A4VS44 0.401608306523 0.5 0.0983916934772 +UniRef50_UPI000477575F spermidine putrescine ABC transporter substrate binding protein 0.0665953876703 0.5 0.43340461233 +UniRef50_C3ZSQ3 0.98975447699 0.5 -0.48975447699 +UniRef50_A3PJG3 Outer membrane protein assembly factor BamA 1.74291015428 0.5 -1.24291015428 +UniRef50_B9E6Y5 1.63195650387 0.500000000002 -1.13195650387 +UniRef50_UPI00047C4591 hypothetical protein 0.0554632851391 0.5 0.444536714861 +UniRef50_W5XCX4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0530745573229 0.5 0.446925442677 +UniRef50_A4WW20 0.030318039646 0.5 0.469681960354 +UniRef50_A4WW27 1.74702195957 0.5 -1.24702195957 +UniRef50_U6AME7 Glycerol 3 phosphate transporter 5.73715314743 0.500000000004 -5.23715314744 +UniRef50_X5EIQ4 Dihydroxyacetone kinase, L subunit 2.8901158004 0.500000000002 -2.39011580041 +UniRef50_UPI0002E4364A hypothetical protein 0.467433403326 0.5 0.0325665966737 +UniRef50_K7S070 ABC transporter, ATP binding protein 0.0208205229782 0.5 0.479179477022 +UniRef50_Q99UB6 Prephenate dehydrogenase 1.42462817428 0.5 -0.924628174279 +UniRef50_A5IRF7 PEBP family protein 4.60999451675 0.499999999999 -4.10999451675 +UniRef50_K9WCH6 0.0400112660956 0.5 0.459988733904 +UniRef50_UPI000465069F mannose 1 phosphate guanyltransferase 1.57648236431 0.499999999999 -1.07648236431 +UniRef50_B4S5Y8 Riboflavin biosynthesis protein RibBA 0.00197303640642 0.5 0.498026963593 +UniRef50_UPI000328EECC PREDICTED 0.0191344419668 0.5 0.480865558034 +UniRef50_Q2C9Y7 4.15806401569 0.499999999998 -3.65806401568 +UniRef50_UPI000376B5FB hypothetical protein 3.58956285656 0.500000000002 -3.08956285656 +UniRef50_UPI0002375AFF plasmid pRiA4b ORF 3 family protein 0.362232090807 0.5 0.137767909193 +UniRef50_UPI00046AEB45 hypothetical protein 0.339648932928 0.5 0.160351067072 +UniRef50_UPI0003FEA9DB xanthine dehydrogenase 0.744644701965 0.5 -0.244644701965 +UniRef50_A5UL20 ATPase involved in DNA repair, SbcC 1.39308854335 0.5 -0.893088543353 +UniRef50_O59829 Probable nitrilase C965.09 0.634860841686 0.5 -0.134860841686 +UniRef50_E8PEL6 0.0605881314609 0.499999999999 0.43941186854 +UniRef50_E8UAZ5 Phosphoesterase RecJ domain protein 0.0128784988588 0.5 0.487121501141 +UniRef50_Q162C3 Sodium hydrogen exchanger family, putative 5.23147316087 0.5 -4.73147316087 +UniRef50_H1UZM0 Peroxiredoxin HYR1 0.326072419387 0.5 0.173927580613 +UniRef50_C0BFU0 2.71010261278 0.499999999999 -2.21010261278 +UniRef50_UPI000466DC48 glycine dehydrogenase 2.23201655837 0.499999999998 -1.73201655837 +UniRef50_UPI00047B371C hypothetical protein, partial 0.220704280846 0.5 0.279295719154 +UniRef50_P0AFB9 Nitrogen regulation protein NR 1.59258543155 0.499999999999 -1.09258543155 +UniRef50_B4RFJ6 Type II secretion system protein N 0.805924367312 0.5 -0.305924367312 +UniRef50_C6AZB2 Inner membrane translocator 1.69199299977 0.5 -1.19199299977 +UniRef50_R7PXT2 3.30302783142 0.500000000002 -2.80302783142 +UniRef50_UPI000444A373 hypothetical protein STEHIDRAFT_62958 0.0391898359224 0.5 0.460810164077 +UniRef50_A6LUB1 Diguanylate cyclase 0.152871860809 0.5 0.347128139191 +UniRef50_UPI0003B75BCC polar amino acid ABC transporter permease 0.47711878541 0.5 0.0228812145901 +UniRef50_UPI00029D9246 0.497308899389 0.5 0.00269110061061 +UniRef50_H8MF76 0.00477083097504 0.5 0.495229169025 +UniRef50_A0A023RZ47 DNA binding protein 0.0430161576536 0.5 0.456983842346 +UniRef50_Q01YD9 Bifunctional protein GlmU 0.410227019626 0.5 0.089772980374 +UniRef50_F2AC19 1.10255241208 0.5 -0.602552412082 +UniRef50_P59680 ATP dependent 6 phosphofructokinase 0.315719354712 0.5 0.184280645288 +UniRef50_P0AD05 1.00369552951 0.5 -0.503695529514 +UniRef50_A1B1Z9 1.31937381843 0.5 -0.819373818432 +UniRef50_Q2NG02 Enolase 1.51152575999 0.499999999999 -1.01152575999 +UniRef50_F9NSM8 0.0747151785345 0.5 0.425284821466 +UniRef50_Q8DW15 Glutathione biosynthesis bifunctional protein GshAB 1.52099169925 0.5 -1.02099169925 +UniRef50_A8ISU7 Predicted protein 1.53003245873 0.5 -1.03003245873 +UniRef50_A6M262 ABC transporter related 0.281363989505 0.5 0.218636010495 +UniRef50_F5YI36 Glutamine ABC transporter, permease substrate binding protein 2.11362460068 0.5 -1.61362460068 +UniRef50_UPI00047AA542 argininosuccinate lyase 0.248835518656 0.5 0.251164481344 +UniRef50_M4RCI7 Fatty acid desaturase 0.0232450728971 0.5 0.476754927103 +UniRef50_Q5GWS2 0.908941245395 0.5 -0.408941245395 +UniRef50_T8CXA8 Phosphatase yihX 0.195485023006 0.5 0.304514976994 +UniRef50_O31711 4.81907836576 0.500000000003 -4.31907836576 +UniRef50_O31716 0.133100887538 0.5 0.366899112462 +UniRef50_Q9ZPX5 Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial 0.0934170802966 0.5 0.406582919704 +UniRef50_U5MKU3 ABC type transport system, involved in lipoprotein release, permease component 0.105234831067 0.5 0.394765168932 +UniRef50_A6LQ14 AMP dependent synthetase and ligase 2.82752536621 0.5 -2.32752536621 +UniRef50_B9DP24 4 hydroxy tetrahydrodipicolinate reductase 1.71378658159 0.5 -1.21378658159 +UniRef50_F0N4Z5 Exodeoxyribonuclease V, gamma subunit 0.028122408425 0.5 0.471877591575 +UniRef50_P14756 Pseudolysin 1.13341936966 0.5 -0.633419369657 +UniRef50_UPI0004720360 30S ribosomal protein S3 0.149356770205 0.5 0.350643229795 +UniRef50_Q7UJ69 Dihydroxy acid dehydratase 0.131786696987 0.5 0.368213303013 +UniRef50_H8L8P6 PTS system, mannose fructose sorbose specific IID component 0.163710516129 0.5 0.336289483871 +UniRef50_A3PNL6 PpiC type peptidyl prolyl cis trans isomerase 2.57094215141 0.5 -2.07094215141 +UniRef50_K6Q1W9 Biotin dependent carboxylase like protein 0.0350093904759 0.5 0.464990609524 +UniRef50_UPI0004761EBF cold shock protein 0.320709621086 0.5 0.179290378914 +UniRef50_Q2FFJ3 Sodium proline symporter 1.61443506884 0.499999999999 -1.11443506884 +UniRef50_UPI0002F6340C hypothetical protein 0.147369833221 0.5 0.35263016678 +UniRef50_UPI0004779366 serine protease 0.388321566031 0.5 0.111678433969 +UniRef50_B7LN63 3.00402980026 0.499999999999 -2.50402980026 +UniRef50_UPI0003B3C2F9 alpha amylase 0.288049879307 0.5 0.211950120693 +UniRef50_Q3AZ12 4.13348564144 0.500000000002 -3.63348564144 +UniRef50_Q896N2 Phosphoserine phosphatase 0.114053744266 0.5 0.385946255734 +UniRef50_G8LZQ1 Molybdate ABC transporter, permease protein 1.03299955833 0.5 -0.532999558327 +UniRef50_D3SBH6 TRAP transporter solute receptor, TAXI family 0.468360161257 0.5 0.0316398387434 +UniRef50_UPI0004432C18 PREDICTED 0.0739090327429 0.5 0.426090967257 +UniRef50_Q92DG5 D alanine D alanine ligase 0.00660592139914 0.5 0.493394078601 +UniRef50_A7ZTE9 Mannitol 1 phosphate 5 dehydrogenase 3.11874167464 0.5 -2.61874167464 +UniRef50_A6LTV5 Ion transport 2 domain protein 0.156187872811 0.5 0.343812127189 +UniRef50_UPI0004677ABB hypothetical protein 0.354861658104 0.5 0.145138341896 +UniRef50_UPI000471685A membrane protein 0.0194745464988 0.5 0.480525453501 +UniRef50_UPI0003C15BF1 PREDICTED 8.59363434687 0.500000000002 -8.09363434687 +UniRef50_UPI000027C743 hypothetical protein 0.245427013375 0.5 0.254572986625 +UniRef50_UPI0003656A67 hypothetical protein 0.486583151181 0.5 0.0134168488191 +UniRef50_A0A023S0W1 Acyltransferase 0.0375785043597 0.5 0.46242149564 +UniRef50_UPI000372E136 hypothetical protein 0.155256846216 0.5 0.344743153784 +UniRef50_P75867 Putative Lon protease homolog 17.820928497 0.500000000005 -17.320928497 +UniRef50_A1T5E9 1.27529555781 0.5 -0.775295557809 +UniRef50_UPI00047D7AE5 resolvase 0.165962124087 0.5 0.334037875913 +UniRef50_R7NTI0 0.270252073298 0.5 0.229747926702 +UniRef50_E6S0A0 0.268236126575 0.5 0.231763873425 +UniRef50_V6UAJ9 41.7876688983 0.499999999992 -41.2876688983 +UniRef50_Q8CU26 1.17811481771 0.5 -0.678114817709 +UniRef50_UPI000367BBBE hypothetical protein 0.446078703995 0.5 0.0539212960054 +UniRef50_W4XFJ9 1.63643773679 0.5 -1.13643773679 +UniRef50_UPI000379071D hypothetical protein 0.707256632987 0.5 -0.207256632987 +UniRef50_A6LT54 0.0854285297696 0.5 0.41457147023 +UniRef50_A6LT50 0.0302906992977 0.5 0.469709300702 +UniRef50_B9KX92 ABC polysaccharide export transporter, ATPase subunit 4.37915156243 0.500000000005 -3.87915156244 +UniRef50_A6LT52 0.276544973841 0.5 0.223455026159 +UniRef50_A6LT53 0.258983647327 0.5 0.241016352673 +UniRef50_Q6ZD36 0.0386855310875 0.5 0.461314468912 +UniRef50_P0A9R9 Cell division ATP binding protein FtsE 4.8672523185 0.500000000005 -4.3672523185 +UniRef50_R6FNM8 DEAD DEAH box helicase domain protein 0.348271936339 0.5 0.151728063661 +UniRef50_A4G3E6 Isoleucine tRNA ligase 1.1039096637 0.5 -0.603909663697 +UniRef50_A3PLZ5 ParB family protein 0.890445981812 0.5 -0.390445981812 +UniRef50_UPI00025581FA cyclohexadienyl dehydrogenase, partial 0.154204303703 0.5 0.345795696297 +UniRef50_UPI00046F08B0 hypothetical protein 2.9544939405 0.5 -2.4544939405 +UniRef50_UPI0003B4920F preprotein translocase subunit SecB 0.288301977917 0.5 0.211698022083 +UniRef50_P0A2X3 Exodeoxyribonuclease 0.408769167952 0.5 0.0912308320477 +UniRef50_UPI0003B559D7 4 alpha glucanotransferase 0.00908681560808 0.5 0.490913184392 +UniRef50_A5N248 0.290906576624 0.5 0.209093423376 +UniRef50_W1GUL6 0.788605879285 0.5 -0.288605879285 +UniRef50_G7UQ41 Terminase 0.0660769555353 0.5 0.433923044465 +UniRef50_Q9RQW2 Holo [acyl carrier protein] synthase 0.0658675123425 0.5 0.434132487657 +UniRef50_L8UK30 0.509727462899 0.5 -0.0097274628994 +UniRef50_Q8X643 NAD dependent dihydropyrimidine dehydrogenase subunit PreA 0.277939449727 0.5 0.222060550273 +UniRef50_U5PD31 Asparaginase 0.304811502458 0.5 0.195188497542 +UniRef50_UPI00037472A7 hypothetical protein 1.13785338749 0.5 -0.637853387493 +UniRef50_F9ZUX9 Succinate dehydrogenase subunit A like protein 0.372864784511 0.5 0.127135215489 +UniRef50_G0DS55 Radical SAM superfamily protein 0.0159057370585 0.5 0.484094262941 +UniRef50_A8ZUC6 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.995638193518 0.5 -0.495638193518 +UniRef50_W7VMR8 0.132745200448 0.5 0.367254799552 +UniRef50_W4Q5P9 Phage terminase large subunit 0.162430999263 0.5 0.337569000737 +UniRef50_A6LZB3 FMN binding domain protein 0.0501553504955 0.5 0.449844649505 +UniRef50_U9XFZ5 0.490203660258 0.5 0.00979633974243 +UniRef50_N2GFP3 0.224043472008 0.5 0.275956527992 +UniRef50_I0C1E1 1.36034407884 0.5 -0.86034407884 +UniRef50_Q8Z9L3 L carnitine CoA transferase 1.21670926102 0.500000000001 -0.716709261016 +UniRef50_Q2W0J7 Flagellar P ring protein 3.24165684227 0.5 -2.74165684227 +UniRef50_Q92U29 0.13164765749 0.5 0.36835234251 +UniRef50_Q7UID0 Thymidylate synthase 0.0443704886454 0.5 0.455629511354 +UniRef50_UPI0003691ABF hypothetical protein 0.170785916252 0.5 0.329214083748 +UniRef50_F0MG01 0.0384868666126 0.5 0.461513133388 +UniRef50_W7TC28 0.338376825018 0.5 0.161623174982 +UniRef50_A6UPR3 Glutamyl tRNA amidotransferase subunit E 6.48908228198 0.500000000002 -5.98908228198 +UniRef50_UPI00030168D3 hypothetical protein 0.0794844865804 0.5 0.42051551342 +UniRef50_K0HTP9 Sulfate ABC transporter periplasmic sulfate binding protein 0.581464372228 0.5 -0.0814643722276 +UniRef50_Q1RFI5 0.250963592516 0.5 0.249036407484 +UniRef50_A0L5M9 UDP N acetylenolpyruvoylglucosamine reductase 0.0414922858841 0.5 0.458507714116 +UniRef50_B9AGR4 2.52153059315 0.499999999995 -2.02153059315 +UniRef50_G7ELT9 1.06742493065 0.5 -0.567424930645 +UniRef50_U3AFI9 Urea ABC transporter, urea binding protein 2.2505129712 0.5 -1.7505129712 +UniRef50_D4HC81 0.0263084641046 0.5 0.473691535895 +UniRef50_C0XT97 0.00366485194994 0.500000000001 0.49633514805 +UniRef50_Q55587 0.10880146808 0.500000000001 0.391198531919 +UniRef50_F0VN90 0.323994311851 0.5 0.176005688149 +UniRef50_B7QVH2 Major facilitator superfamily protein 0.240570915225 0.5 0.259429084775 +UniRef50_P42620 Glutathionyl hydroquinone reductase YqjG 1.74380784305 0.500000000001 -1.24380784305 +UniRef50_UPI0003758451 AsnC family transcriptional regulator 0.79813088113 0.5 -0.29813088113 +UniRef50_I0LIW9 2.28585233442 0.499999999997 -1.78585233441 +UniRef50_UPI00046EAF7B hypothetical protein, partial 0.474674262792 0.5 0.0253257372075 +UniRef50_A7X1E9 Aspartate carbamoyltransferase 5.05096020536 0.500000000002 -4.55096020536 +UniRef50_V8FVT8 0.0311846105681 0.5 0.468815389431 +UniRef50_I1YHV8 Carbonic anhydrase, family 3 0.224056879996 0.5 0.275943120004 +UniRef50_A3PI07 0.703437140002 0.5 -0.203437140002 +UniRef50_A7MMQ6 0.523058595519 0.5 -0.0230585955189 +UniRef50_Q9AD79 Putative membrane protein 2.88505904649 0.499999999997 -2.38505904648 +UniRef50_UPI00036DE46F hypothetical protein 0.266192675659 0.5 0.233807324341 +UniRef50_UPI0003780756 SAM dependent methyltransferase 0.216718962975 0.5 0.283281037025 +UniRef50_Q3J1W3 Chemotaxis response regulator protein glutamate methylesterase 2 0.143944180448 0.5 0.356055819552 +UniRef50_T0UG31 Cell division protein FtsW 0.537093020836 0.5 -0.0370930208356 +UniRef50_UPI0004040B20 PTS sugar transporter subunit IIA 0.158895787255 0.5 0.341104212745 +UniRef50_Q58556 Cell division cycle protein 48 homolog MJ1156 2.78030456241 0.499999999999 -2.28030456241 +UniRef50_C6ABJ5 sn glycerol 3 phosphate binding periplasmic protein UgpB 1.31020583914 0.5 -0.810205839138 +UniRef50_UPI00047E8722 hypothetical protein 0.754044495336 0.5 -0.254044495336 +UniRef50_O27041 V type ATP synthase subunit I 2.80079764438 0.500000000002 -2.30079764439 +UniRef50_P66938 DNA topoisomerase 4 subunit B 1.0140139374 0.5 -0.514013937398 +UniRef50_Q49150 Bifunctional coenzyme PQQ synthesis protein C D 2.85989724736 0.499999999998 -2.35989724736 +UniRef50_U3R1J4 3 hydroxyacyl CoA dehydrogenase 0.00319167818743 0.5 0.496808321813 +UniRef50_P93033 Fumarate hydratase 1, mitochondrial 0.192847337548 0.5 0.307152662452 +UniRef50_V5VCJ0 Protease 0.00847553689574 0.5 0.491524463104 +UniRef50_F3ZAY0 Putative transcriptional regulator 0.260627085331 0.5 0.239372914669 +UniRef50_Q9Z3R7 Alpha glucoside transport system permease protein AglG 7.06913508927 0.500000000002 -6.56913508927 +UniRef50_UPI0004743C7F hypothetical protein, partial 0.514049603211 0.5 -0.0140496032112 +UniRef50_N6V2G4 0.0631382759113 0.5 0.436861724089 +UniRef50_B4U501 50S ribosomal protein L4 0.525910844748 0.5 -0.0259108447479 +UniRef50_V4Z4F4 0.694319153327 0.5 -0.194319153327 +UniRef50_R5NSU1 0.942948390039 0.5 -0.442948390039 +UniRef50_R7MVM8 Terminase small subunit family protein 2.37778705555 0.499999999998 -1.87778705554 +UniRef50_P67109 UPF0042 nucleotide binding protein SA0720 26.9405685362 0.499999999948 -26.4405685362 +UniRef50_D8HCA4 ABC transporter, ATP binding protein 1.00157973892 0.5 -0.501579738916 +UniRef50_UPI00036EA77A hypothetical protein 0.00726398719008 0.5 0.492736012809 +UniRef50_C7PA11 0.00463817754714 0.5 0.495361822453 +UniRef50_A9B518 Ribosomal RNA small subunit methyltransferase H 0.155264833207 0.5 0.344735166793 +UniRef50_F3U3C4 2.68339132574 0.5 -2.18339132574 +UniRef50_Q02252 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial 0.000648715384719 0.5 0.499351284615 +UniRef50_G8VRC7 Electron transfer flavoprotein FAD binding domain protein 0.0233922684386 0.5 0.476607731562 +UniRef50_Q9SI75 Elongation factor G, chloroplastic 0.101740803805 0.5 0.398259196195 +UniRef50_A5IPV1 0.650870855207 0.5 -0.150870855207 +UniRef50_C1F9K5 Threonine tRNA ligase 4.90668166284 0.499999999998 -4.40668166284 +UniRef50_Q9LEJ0 Enolase 1 0.0217212048965 0.5 0.478278795104 +UniRef50_UPI000366215B hypothetical protein 3.66730236478 0.500000000002 -3.16730236478 +UniRef50_T0FGA8 0.317131871121 0.5 0.182868128879 +UniRef50_D0T5H1 ATP dependent helicase HrpA 0.0441112034347 0.5 0.455888796565 +UniRef50_W4UAP9 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.0423757649176 0.5 0.457624235082 +UniRef50_K4NG74 VirB4 like protein 0.00714858420585 0.5 0.492851415794 +UniRef50_Q12PV1 SsrA binding protein 0.22167215351 0.5 0.27832784649 +UniRef50_UPI000369C4CE hypothetical protein 2.23508305096 0.5 -1.73508305096 +UniRef50_G7M5A0 0.255121581847 0.5 0.244878418153 +UniRef50_G7M6S3 Arginine decarboxylase 0.285067282026 0.5 0.214932717974 +UniRef50_P09184 Very short patch repair protein 0.652967773866 0.5 -0.152967773866 +UniRef50_Q02394 5,10 methenyltetrahydromethanopterin hydrogenase 1.5756050438 0.5 -1.0756050438 +UniRef50_Q88M74 Acyltransferase 0.387493795311 0.5 0.112506204689 +UniRef50_Q0FUI9 ISSpo9, transposase 0.516402132999 0.5 -0.016402132999 +UniRef50_UPI0003AFDE9C PREDICTED 0.0850705917851 0.500000000001 0.414929408214 +UniRef50_P18120 3 isopropylmalate dehydrogenase 0.402449144336 0.5 0.0975508556638 +UniRef50_K7UE53 Putative acetylornithine succinylornithine aminotransferase family protein 0.349935649435 0.5 0.150064350565 +UniRef50_R5BW02 0.127385093716 0.5 0.372614906283 +UniRef50_A8MM69 TRAP transporter solute receptor, TAXI family 0.707276828577 0.5 -0.207276828577 +UniRef50_Q3IRX5 Serine hydroxymethyltransferase 0.446259905324 0.5 0.0537400946763 +UniRef50_Q9RUB7 Phage shock protein A homolog 0.00429593081096 0.5 0.495704069189 +UniRef50_Q89VR4 Acyl CoA dehydrogenase 0.0664479213105 0.5 0.433552078689 +UniRef50_C3MFT1 5.11848872304 0.499999999998 -4.61848872304 +UniRef50_P26608 Flagellar protein FliS 2.34354976019 0.500000000001 -1.84354976019 +UniRef50_UPI0002F0F5DA branched chain amino acid ABC transporter permease 0.042000262595 0.5 0.457999737405 +UniRef50_UPI00046778C2 hypothetical protein 0.14972806925 0.5 0.35027193075 +UniRef50_Q21ET8 0.534405177915 0.5 -0.0344051779153 +UniRef50_Q720Z5 Teichoic acids export ATP binding protein TagH 0.00345342569669 0.5 0.496546574303 +UniRef50_P0AFZ1 Protein SseB 2.21864576292 0.5 -1.71864576292 +UniRef50_G2DDB6 1.55048924119 0.5 -1.05048924119 +UniRef50_Q1C0V9 Rhamnulokinase 2.68610519715 0.500000000001 -2.18610519715 +UniRef50_C4ZJG8 Nitrite reductase H), large subunit 0.75783547001 0.5 -0.25783547001 +UniRef50_UPI00039C17A8 hypothetical protein 0.760863936543 0.5 -0.260863936543 +UniRef50_D1BIN8 Monosaccharide binding protein 0.000999013694978 0.5 0.499000986305 +UniRef50_E6VPG8 Transcriptional regulator, AraC family 1.55240320221 0.5 -1.05240320221 +UniRef50_UPI00021A57D1 PREDICTED 0.958658649597 0.5 -0.458658649597 +UniRef50_E0N7V9 0.0367929816522 0.5 0.463207018348 +UniRef50_UPI00037031A7 hypothetical protein, partial 0.143741289814 0.5 0.356258710186 +UniRef50_UPI00030650F9 hypothetical protein 0.316776973039 0.5 0.183223026961 +UniRef50_M4SA42 TraU family protein 3.50247495807 0.5 -3.00247495807 +UniRef50_UPI0001509F0D Electron transfer flavoprotein ubiquinone oxidoreductase containing protein 0.154237188091 0.5 0.345762811909 +UniRef50_UPI0002BC4120 phosphoenolpyruvate protein phosphotransferase, partial 0.0062278937924 0.5 0.493772106207 +UniRef50_G8LLV9 Coproporphyrinogen III oxidase 0.79058033338 0.5 -0.29058033338 +UniRef50_Q02136 Histidinol dehydrogenase 0.958431213804 0.5 -0.458431213804 +UniRef50_F6G400 1.23363859087 0.5 -0.733638590874 +UniRef50_U5ACW9 1.12938675574 0.5 -0.629386755742 +UniRef50_UPI0002BFF2B3 unnamed protein product 0.12105460358 0.5 0.37894539642 +UniRef50_K1R9M4 Phage terminase, large subunit 0.042146196599 0.499999999999 0.457853803402 +UniRef50_A6LR81 Coenzyme F390 synthetase like protein 0.0314500981375 0.500000000001 0.468549901862 +UniRef50_P54019 30S ribosomal protein S13 1.04785575899 0.5 -0.547855758989 +UniRef50_UPI00037EC4C5 hypothetical protein 0.107303249175 0.5 0.392696750824 +UniRef50_UPI00034B83FC hypothetical protein 0.00491660020341 0.5 0.495083399797 +UniRef50_UPI000427207E hypothetical protein 1.04768946379 0.5 -0.547689463786 +UniRef50_K1V4W8 3.6259672977 0.499999999999 -3.1259672977 +UniRef50_Q8YF84 Glutamate synthase small chain 3.37677244581 0.499999999998 -2.87677244581 +UniRef50_Q0BAQ4 tRNA modification GTPase MnmE 0.192338005622 0.5 0.307661994378 +UniRef50_UPI00036B6D82 hypothetical protein 2.10294737212 0.5 -1.60294737212 +UniRef50_U6EFC2 Helicase 1.99790851119 0.499999999998 -1.49790851119 +UniRef50_A4HI31 0.221640474503 0.5 0.278359525497 +UniRef50_B9KS21 Two component, sigma54 specific, transcriptional regulator, Fis family 1.09870598659 0.5 -0.598705986589 +UniRef50_UPI00046960A8 nickel ABC transporter permease 0.989735146493 0.5 -0.489735146493 +UniRef50_UPI0004647121 hypothetical protein 0.017634881532 0.5 0.482365118468 +UniRef50_UPI00044159A7 cwf21 domain containing protein, partial 1.00899177292 0.5 -0.508991772924 +UniRef50_Q5M4T5 0.660478554314 0.5 -0.160478554314 +UniRef50_O87656 Iron hydroxamate import system permease protein FhuB 0.945143790158 0.5 -0.445143790158 +UniRef50_M1MMU8 0.033133928276 0.5 0.466866071724 +UniRef50_J7RCA7 7.52441709596 0.500000000003 -7.02441709597 +UniRef50_I0AL38 3 oxoacyl [acyl carrier protein] reductase 3.72870918171 0.499999999997 -3.22870918171 +UniRef50_P45468 UPF0718 protein YraQ 1.31854119304 0.499999999999 -0.818541193035 +UniRef50_R9SN00 Transcriptional regulator ArsR family 7.89278502069 0.499999999999 -7.39278502069 +UniRef50_Q07211 Fructokinase 0.672836858787 0.5 -0.172836858787 +UniRef50_Q99UM3 Probable cell wall hydrolase LytN 3.32077393939 0.499999999999 -2.82077393939 +UniRef50_Q4L691 Phosphate import ATP binding protein PstB 0.0808591108853 0.5 0.419140889114 +UniRef50_I0C432 Homoserine dehydrogenase 1.32489756828 0.499999999999 -0.82489756828 +UniRef50_F0MX64 Nickel dependent hydrogenase, b type cytochrome subunit 0.031057705335 0.5 0.468942294665 +UniRef50_P9WNP6 3 hydroxybutyryl CoA dehydrogenase 0.0163868571536 0.5 0.483613142847 +UniRef50_UPI00036B09C8 hypothetical protein 0.0819200699744 0.5 0.418079930026 +UniRef50_B1R255 Cell wall binding repeat domain protein 0.142495052542 0.5 0.357504947458 +UniRef50_S9QXB6 1.55306929047 0.5 -1.05306929047 +UniRef50_M9VCS0 0.0164814093242 0.5 0.483518590675 +UniRef50_UPI00035E4AA0 hypothetical protein 0.35665308107 0.5 0.14334691893 +UniRef50_I6T6X2 Protein BglB 0.602817430729 0.5 -0.102817430729 +UniRef50_A0A024HX75 1.03741859147 0.500000000001 -0.53741859147 +UniRef50_P73662 Phosphate acetyltransferase 0.265709397375 0.5 0.234290602625 +UniRef50_W8RVD2 ATPase of the AAA+ class 1.42518083863 0.5 -0.925180838631 +UniRef50_I0C816 Nitrogen regulation protein NIFR3 0.283563744704 0.5 0.216436255296 +UniRef50_UPI00047AA101 hypothetical protein 0.227961935406 0.5 0.272038064594 +UniRef50_UPI00046A4480 hypothetical protein 0.565023700283 0.5 -0.0650237002835 +UniRef50_UPI00028825F3 multidrug ABC transporter permease 22.6169341244 0.500000000012 -22.1169341244 +UniRef50_D3NVZ1 1.54074353566 0.5 -1.04074353566 +UniRef50_UPI000190AB93 branched chain amino acid aminotransferase 0.600400847069 0.5 -0.100400847069 +UniRef50_A0A022S140 0.0675205440352 0.5 0.432479455965 +UniRef50_B0V541 0.0148392607855 0.5 0.485160739215 +UniRef50_J2PC13 Arabinose efflux permease family protein 0.246272837881 0.5 0.253727162119 +UniRef50_B2A2G4 Ribosomal RNA small subunit methyltransferase H 0.473158944948 0.5 0.0268410550525 +UniRef50_A0Q2Z5 ATP synthase gamma chain 0.092883173188 0.500000000001 0.407116826811 +UniRef50_M1LPW4 0.178535509579 0.5 0.321464490421 +UniRef50_UPI00034DD1B3 hypothetical protein 1.49024606403 0.5 -0.990246064026 +UniRef50_A6LYK1 0.134755762155 0.5 0.365244237845 +UniRef50_UPI000363AA5C MULTISPECIES 0.921063552132 0.5 -0.421063552132 +UniRef50_B9ISU4 0.271936927287 0.5 0.228063072713 +UniRef50_D4HF88 Amino acid peptide transporter 0.0126794082966 0.5 0.487320591703 +UniRef50_Q39FJ3 Hydroxypyruvate isomerase 0.162101926283 0.5 0.337898073717 +UniRef50_V9XDD0 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.0480716169789 0.5 0.451928383021 +UniRef50_W1HEW1 DNA topology modulation protein 0.551191468461 0.5 -0.051191468461 +UniRef50_L0SAB5 Fusion of IS1381 orf A and B 0.00399127256743 0.5 0.496008727432 +UniRef50_Q2NYD7 Indole 3 glycerol phosphate synthase 0.220018880562 0.5 0.279981119438 +UniRef50_E5U188 1.42620459741 0.500000000001 -0.926204597412 +UniRef50_E4LMM6 HD domain protein 0.392789134113 0.5 0.107210865887 +UniRef50_Q49W87 Na H(+) antiporter subunit E1 3.10818025318 0.499999999998 -2.60818025318 +UniRef50_UPI0003A7FBFE side tail fiber protein 0.0229186036815 0.500000000001 0.477081396318 +UniRef50_UPI0003626812 hypothetical protein 3.16053180539 0.5 -2.66053180539 +UniRef50_UPI000381F4EB hypothetical protein 0.157698097218 0.5 0.342301902782 +UniRef50_P08368 Transcriptional regulatory protein CreB 1.84754125411 0.500000000001 -1.34754125411 +UniRef50_W4N2B7 UPF0176 protein X964_08780 0.0274520840406 0.5 0.47254791596 +UniRef50_UPI0004747C9B hypothetical protein 2.9062987594 0.5 -2.4062987594 +UniRef50_F2J6W6 Transcriptional regulator 1.02258436134 0.5 -0.522584361339 +UniRef50_UPI0003754665 hypothetical protein, partial 0.354334323224 0.5 0.145665676776 +UniRef50_M3HZS8 1.90714939956 0.500000000002 -1.40714939956 +UniRef50_UPI0004745709 iron hydroxamate transporter permease subunit, partial 0.263256760082 0.5 0.236743239918 +UniRef50_F2JM58 Transcriptional regulator, PucR family 0.0770516466099 0.5 0.42294835339 +UniRef50_UPI0004785665 hypothetical protein 0.0168767634993 0.5 0.4831232365 +UniRef50_UPI000361AD47 flagellar P ring protein FlgI 0.487485237987 0.5 0.012514762013 +UniRef50_Q6A615 0.0101351650377 0.5 0.489864834963 +UniRef50_D4SL88 L ribulose 5 phosphate 3 epimerase UlaE 1.35575760646 0.5 -0.855757606457 +UniRef50_B9KN41 2.90780511972 0.5 -2.40780511972 +UniRef50_UPI00046AB541 MULTISPECIES 1.2299497247 0.5 -0.7299497247 +UniRef50_UPI0002195D2E peptide ABC transporter ATP binding protein 1.63801554422 0.5 -1.13801554422 +UniRef50_C5N2Z6 LPXTG motif cell wall anchor domain protein 17.8182710927 0.499999999993 -17.3182710927 +UniRef50_R6A8H0 1.32030102765 0.500000000001 -0.820301027651 +UniRef50_UPI000463E95A hypothetical protein 2.83737388692 0.499999999997 -2.33737388692 +UniRef50_UPI0002D6C4DC hypothetical protein 4.45843753897 0.500000000009 -3.95843753898 +UniRef50_UPI00047EFE08 macrolide transporter 0.797338772433 0.5 -0.297338772433 +UniRef50_UPI00035CFCF8 hypothetical protein 0.369226597337 0.5 0.130773402663 +UniRef50_UPI0003AEE1CA PREDICTED 0.190564582182 0.5 0.309435417818 +UniRef50_C6DJF9 Protein ViaA 2.70074274883 0.499999999998 -2.20074274883 +UniRef50_R5J6V4 0.199756044734 0.5 0.300243955266 +UniRef50_P0ACI1 Right origin binding protein 11.2313254536 0.500000000002 -10.7313254536 +UniRef50_U3T5M8 Acetyltransferase 0.036266356418 0.5 0.463733643582 +UniRef50_UPI0004634FA1 hypothetical protein 0.320106331141 0.5 0.179893668859 +UniRef50_A3PJF7 Ribosome recycling factor 5.12574295644 0.499999999997 -4.62574295643 +UniRef50_O28437 Putative ABC transporter ATP binding protein AF_1841 1.00224219022 0.5 -0.502242190222 +UniRef50_D4HE05 0.0532916853121 0.5 0.446708314688 +UniRef50_A6LZK4 0.408495593148 0.5 0.0915044068517 +UniRef50_UPI00029B0F13 NADH dehydrogenase subunit D 0.384604109582 0.5 0.115395890418 +UniRef50_UPI00038304E6 hypothetical protein M271_24355 0.702056617436 0.5 -0.202056617436 +UniRef50_G3ZK67 Putative Mg chelatase like protein 0.31059723335 0.5 0.18940276665 +UniRef50_M4YVT1 0.203437144643 0.499999999999 0.296562855357 +UniRef50_I0EPZ1 L lactate permease 0.0249168045965 0.5 0.475083195404 +UniRef50_O34943 Putative tRNA binding protein YtpR 1.37055311928 0.5 -0.870553119281 +UniRef50_R9SJS2 Helicase 2.18570106487 0.5 -1.68570106487 +UniRef50_A4VHU4 Exonuclease SbcD 1.53569574399 0.5 -1.03569574399 +UniRef50_A5UM89 Adhesin like protein 2.7520352807 0.500000000002 -2.2520352807 +UniRef50_Q9HWB8 Nuclease SbcCD subunit C 1.74303781096 0.5 -1.24303781096 +UniRef50_A3PFK8 1.66678298798 0.5 -1.16678298798 +UniRef50_UPI00047ACA41 hypothetical protein 0.347730204698 0.5 0.152269795302 +UniRef50_E9B5X1 0.0693510150033 0.5 0.430648984997 +UniRef50_S6PZF6 Sulfur transfer complex subunit TusD 0.313266710729 0.5 0.186733289271 +UniRef50_UPI00046865DF hypothetical protein 0.761565308534 0.5 -0.261565308534 +UniRef50_W0YVS4 Respiratory nitrate reductase subunit beta 0.13325323058 0.5 0.36674676942 +UniRef50_Q9HI37 Probable family 20 transposase 1.50965752808 0.500000000001 -1.00965752808 +UniRef50_UPI0003F0B2FB PREDICTED 0.0680831735531 0.5 0.431916826447 +UniRef50_Q88J89 Ribose transport permease protein, putative 0.395307597271 0.5 0.104692402729 +UniRef50_P43531 Inner membrane transport protein YnfM 2.92543570979 0.5 -2.42543570978 +UniRef50_UPI00027FC17F 0.0225453598342 0.500000000001 0.477454640165 +UniRef50_G1XXP0 Transposase 0.937049284518 0.5 -0.437049284518 +UniRef50_UPI000471C1F1 hypothetical protein, partial 0.770419975273 0.5 -0.270419975273 +UniRef50_M9VD06 UvrD REP helicase 0.0107980242811 0.5 0.489201975719 +UniRef50_A5UJE9 Predicted ATPase 0.71451279319 0.5 -0.21451279319 +UniRef50_Q2N696 0.0818621733708 0.5 0.418137826629 +UniRef50_F0KNV9 Acyl CoA dehydrogenase 0.0168615311785 0.5 0.483138468822 +UniRef50_UPI0004736CBD membrane protein, partial 0.299864173521 0.5 0.200135826479 +UniRef50_U3SV04 0.728607644958 0.5 -0.228607644958 +UniRef50_C2ESX2 0.843869526477 0.5 -0.343869526477 +UniRef50_C3BKL0 ABC transporter 5.41235941694 0.499999999999 -4.91235941694 +UniRef50_O27283 Fibrillarin like rRNA tRNA 2 O methyltransferase 2.35434323197 0.500000000003 -1.85434323198 +UniRef50_W0EAD6 HAD family hydrolase 0.53744890388 0.5 -0.0374489038798 +UniRef50_UPI0004710EDE hypothetical protein 0.129025831248 0.5 0.370974168752 +UniRef50_N5R5Q8 0.303740490592 0.5 0.196259509408 +UniRef50_Q3BRW8 1 deoxy D xylulose 5 phosphate synthase 0.0994203205648 0.5 0.400579679435 +UniRef50_UPI000369DDA4 hypothetical protein 1.33866248941 0.5 -0.838662489414 +UniRef50_F7YLR6 0.0676670306476 0.5 0.432332969352 +UniRef50_U3SVV6 2 3 dephospho CoA 4.72137057039 0.5 -4.22137057039 +UniRef50_E3EMN0 Oxidoreductase, aldo keto reductase family 0.0319539013247 0.5 0.468046098675 +UniRef50_UPI0003B63C22 magnesium chelatase 0.180076821843 0.5 0.319923178156 +UniRef50_X5EKC8 Ferric alcaligin siderophore receptor 0.0101162759321 0.5 0.489883724068 +UniRef50_P0AGA8 Transcriptional regulatory protein UhpA 0.263961135034 0.5 0.236038864966 +UniRef50_E4D778 0.024404714424 0.499999999999 0.475595285577 +UniRef50_R7IGH5 0.146692979547 0.5 0.353307020453 +UniRef50_Q9RSP4 0.00566578517948 0.5 0.49433421482 +UniRef50_UPI0001BF71FE hypothetical protein SMAC_09973 0.545149879907 0.5 -0.0451498799075 +UniRef50_A7X4U4 ATP synthase gamma chain 3.15548193127 0.500000000004 -2.65548193128 +UniRef50_Q6A674 0.0222307795037 0.5 0.477769220496 +UniRef50_P77619 UPF0214 protein YfeW 2.08843120657 0.5 -1.58843120657 +UniRef50_P32134 3.37474497463 0.500000000001 -2.87474497464 +UniRef50_C1KWD9 Bifunctional protein PyrR 0.145363584187 0.5 0.354636415813 +UniRef50_F0KEU9 0.0709425141845 0.5 0.429057485815 +UniRef50_P18185 Carbamoyl phosphate synthase arginine specific large chain 0.716007476505 0.5 -0.216007476505 +UniRef50_Q4UYN4 NAD NADP dependent betaine aldehyde dehydrogenase 1.72829256799 0.499999999997 -1.22829256799 +UniRef50_P32139 1.02227526515 0.5 -0.522275265153 +UniRef50_UPI0004713D39 phenylacetic acid degradation protein 0.260530812725 0.5 0.239469187275 +UniRef50_J0BXE7 Plasmid pRiA4b ORF 3 like protein 2.49226749124 0.5 -1.99226749124 +UniRef50_Q3JLT3 DGPF domain protein 0.753251252499 0.5 -0.253251252499 +UniRef50_G7MBY5 ABC transporter related protein 0.250464612224 0.5 0.249535387776 +UniRef50_N4Y922 Phosphatidylglycerol lysyltransferase 1.82281600551 0.499999999999 -1.32281600551 +UniRef50_G7SA54 Phosphodiesterase, MJ0936 family 0.114032008954 0.5 0.385967991046 +UniRef50_H8GT24 Transpeptidase transglycosylase component 0.000743555711765 0.5 0.499256444288 +UniRef50_UPI0004761F50 iron ABC transporter ATP binding protein 0.513059748801 0.5 -0.0130597488015 +UniRef50_Q0BVN0 Chorismate synthase 0.0852023259276 0.5 0.414797674072 +UniRef50_Q9K411 0.00407543658321 0.5 0.495924563417 +UniRef50_F2TZ40 1.55756058282 0.5 -1.05756058282 +UniRef50_B7I864 TonB dependent receptor 0.0107871030072 0.5 0.489212896993 +UniRef50_C5N344 2.64844487194 0.5 -2.14844487194 +UniRef50_UPI00046610C2 sugar ABC transporter ATP binding protein 0.161278833917 0.5 0.338721166083 +UniRef50_C5N340 1.17380277066 0.5 -0.673802770659 +UniRef50_UPI00037883B0 hypothetical protein, partial 0.264513474249 0.5 0.235486525751 +UniRef50_P0AF43 2.66932890667 0.500000000002 -2.16932890668 +UniRef50_Q35826 Cytochrome c oxidase subunit 3 0.170850480303 0.5 0.329149519697 +UniRef50_T9JSA5 DNA binding transcriptional activator 2.03516500855 0.5 -1.53516500855 +UniRef50_K2KB78 Chemotactic signal response protein 0.901212484383 0.5 -0.401212484383 +UniRef50_Q47KH4 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.0152129043333 0.5 0.484787095667 +UniRef50_G8PRB6 TRAP dicarboxylate transporter, DctM subunit 0.595259548197 0.5 -0.0952595481965 +UniRef50_Q3IUZ1 Phytochrome sensor diguanylate cyclase phosphodiesterase 2.5260587326 0.500000000002 -2.02605873261 +UniRef50_I0JA88 2.37389060432 0.5 -1.87389060432 +UniRef50_Q5XL59 Hypothetical 18.9 kDa protein 0.0268353272696 0.5 0.473164672731 +UniRef50_A7GHG0 CBS domain protein 1.79428135375 0.5 -1.29428135375 +UniRef50_A4WNP3 0.262825150004 0.5 0.237174849996 +UniRef50_R8ZFM2 Two component sensor 0.0918238884541 0.5 0.408176111546 +UniRef50_Q9RU62 Transcription repair coupling factor 0.00112931530545 0.5 0.498870684695 +UniRef50_I3WYQ6 4.79495330721 0.499999999999 -4.29495330721 +UniRef50_H1GBP2 LPXTG motif protein cell wall anchor domain protein 0.186867933758 0.5 0.313132066242 +UniRef50_UPI000262662B hypothetical protein 0.51635106067 0.5 -0.01635106067 +UniRef50_B7Z2X9 Gamma enolase 0.0409099736968 0.5 0.459090026303 +UniRef50_UPI00029A8E8E type I restriction enzyme EcoKI subunit R 0.166250926955 0.5 0.333749073045 +UniRef50_UPI0003C15755 3.01982243295 0.5 -2.51982243295 +UniRef50_H9K7J8 0.317868412341 0.5 0.182131587659 +UniRef50_P52228 Thioredoxin C 3 0.0754459915263 0.5 0.424554008473 +UniRef50_Q3J3B6 1.70718474827 0.5 -1.20718474827 +UniRef50_D4HE60 Release factor glutamine methyltransferase 0.0242589655168 0.5 0.475741034483 +UniRef50_Q2YZ40 4.23441863981 0.500000000003 -3.73441863982 +UniRef50_UPI0003B3D851 single stranded DNA binding protein 0.00941943096097 0.5 0.490580569039 +UniRef50_Q8Z8E5 Putative potassium transporting ATPase B chain 0.0978595227542 0.500000000001 0.402140477245 +UniRef50_Q9ZKX5 Catalase 0.0024254768166 0.5 0.497574523183 +UniRef50_Q9PIN2 Zinc transporter ZupT 5.77578191511 0.500000000001 -5.27578191511 +UniRef50_D3DZ70 Methanogenesis marker protein 17 1.61455341845 0.5 -1.11455341845 +UniRef50_UPI000299EEED hypothetical protein, partial 0.269610983575 0.5 0.230389016425 +UniRef50_Q2SDW0 Nucleoside diphosphate kinase 0.349968477768 0.5 0.150031522232 +UniRef50_Q6F945 0.00943026053875 0.5 0.490569739461 +UniRef50_E8U988 Acetylornithine acetyl lysine aminotransferase 0.0040861385135 0.5 0.495913861486 +UniRef50_F9YXA3 Succinate dehydrogenase cytochrome b subunit, b558 family 0.0287405556714 0.5 0.471259444329 +UniRef50_E3L9A9 0.00814381039803 0.5 0.491856189602 +UniRef50_V4STF9 Ribosomal RNA small subunit methyltransferase E 1.02371100608 0.5 -0.523711006083 +UniRef50_S6AEF9 0.0886968901024 0.5 0.411303109898 +UniRef50_F4A619 GTPase HflX 0.135904174456 0.5 0.364095825544 +UniRef50_T1Y9P7 UDP N acetylmuramoylalanyl D glutamate 2, 6 diaminopimelate ligase 2.37790342791 0.500000000001 -1.87790342791 +UniRef50_B2HZE1 Enoyl CoA hydratase carnithine racemase 0.0162821213124 0.5 0.483717878688 +UniRef50_I3US46 Major facilitator superfamily metabolite H symporter 0.23899122397 0.5 0.26100877603 +UniRef50_UPI00037E89DC hypothetical protein 0.0858963000019 0.5 0.414103699998 +UniRef50_A7FQL2 UPF0313 protein CLB_0243 0.338808013183 0.5 0.161191986817 +UniRef50_P75915 Chaperone protein YcdY 2.19525565815 0.5 -1.69525565815 +UniRef50_B6IPB9 0.399064543812 0.5 0.100935456188 +UniRef50_UPI00036011C5 hypothetical protein 0.59429097449 0.5 -0.0942909744904 +UniRef50_S5CU75 Transposase like protein 0.0123669275259 0.5 0.487633072474 +UniRef50_I6XPP6 Methylmalonyl CoA carboxyltransferase 5S subunit 0.0146967684357 0.5 0.485303231564 +UniRef50_UPI0003B33B7C DNA binding protein 1.01666879483 0.5 -0.516668794833 +UniRef50_UPI0003625CBC hypothetical protein 0.0384226837951 0.5 0.461577316205 +UniRef50_A3PJ50 Binding protein dependent transport systems inner membrane component 13.9587203066 0.500000000004 -13.4587203066 +UniRef50_C9SAM1 Ribosomal RNA processing protein 0.0279818421604 0.5 0.47201815784 +UniRef50_UPI000368DEE4 hypothetical protein 0.00759839956644 0.5 0.492401600433 +UniRef50_UPI00029B09D5 CRISPR associated protein Csn1 0.0498738983008 0.500000000001 0.450126101699 +UniRef50_Q7MWR7 CTP synthase 0.0257431190361 0.499999999999 0.474256880965 +UniRef50_T1XRQ5 Teichoic acid translocation ATP binding protein, putative 3.03438100967 0.5 -2.53438100967 +UniRef50_I7ENI8 Thioesterase like protein 2.32525670607 0.5 -1.82525670607 +UniRef50_A0A021DBD0 D isomer specific 2 hydroxyacid dehydrogenase 0.255773839886 0.5 0.244226160114 +UniRef50_UPI00046F8C7A membrane protein 0.331614621764 0.5 0.168385378236 +UniRef50_A5UNS3 Putative ATPase 2.1370552927 0.5 -1.6370552927 +UniRef50_M9RKI3 0.666665265821 0.5 -0.166665265821 +UniRef50_T0C715 Thioesterase family protein 0.0140304198927 0.5 0.485969580107 +UniRef50_D8JFV1 0.0420214298277 0.5 0.457978570173 +UniRef50_Q5HQT4 6.67028250803 0.499999999995 -6.17028250802 +UniRef50_UPI0004412F07 mitochondrial ribosomal protein subunit L2 0.115332049705 0.5 0.384667950295 +UniRef50_P37344 Psp operon transcriptional activator 1.90655976013 0.5 -1.40655976013 +UniRef50_C6CXV0 D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein 1.00656455288 0.5 -0.506564552878 +UniRef50_Q8CQM7 4.68422389646 0.499999999996 -4.18422389646 +UniRef50_A1SM80 Biotin synthase 0.0185136931883 0.5 0.481486306812 +UniRef50_A5UKE2 7.31271692164 0.500000000002 -6.81271692164 +UniRef50_A6LZ61 Aldose 1 epimerase 0.029041926319 0.5 0.470958073681 +UniRef50_UPI0003B60CB5 hypothetical protein 0.109181292656 0.5 0.390818707344 +UniRef50_C7Q9W5 0.00243810078402 0.5 0.497561899216 +UniRef50_UPI00046D8C08 hypothetical protein 0.121977714575 0.5 0.378022285425 +UniRef50_UPI000382B4D1 hypothetical protein 2.0135007094 0.5 -1.5135007094 +UniRef50_Q7NZP2 Sigma B regulator protein 0.00286733232065 0.5 0.49713266768 +UniRef50_Q6AAT0 Cysteine tRNA ligase 0.000934683158631 0.5 0.499065316841 +UniRef50_G7LXC6 Lytic transglycosylase catalytic 0.0832832502206 0.5 0.416716749779 +UniRef50_E9KNQ0 Truncated transposase 0.163199115492 0.5 0.336800884508 +UniRef50_UPI000467240F hypothetical protein 0.455265028881 0.5 0.0447349711187 +UniRef50_Q48677 Glutamyl aminopeptidase 0.331789332381 0.5 0.168210667619 +UniRef50_UPI000474A2DB MarR family transcriptional regulator 0.971176711148 0.5 -0.471176711148 +UniRef50_A6M168 Diguanylate cyclase 0.0322831315549 0.5 0.467716868445 +UniRef50_O27596 Tungsten formylmethanofuran dehydrogenase, subunit H 6.91605653522 0.499999999999 -6.41605653522 +UniRef50_F0YIK7 Expressed protein 0.677947335054 0.5 -0.177947335054 +UniRef50_UPI00032995A5 0.926486626907 0.5 -0.426486626907 +UniRef50_Q9RXU7 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.00387466745428 0.5 0.496125332546 +UniRef50_E8U9D7 Nicotinate phosphoribosyltransferase 0.0122664985202 0.5 0.48773350148 +UniRef50_UPI00046D1D34 hypothetical protein 0.092588755843 0.5 0.407411244157 +UniRef50_A5W7R4 Regulatory inactivation of DnaA Hda protein 1.99621953507 0.5 -1.49621953507 +UniRef50_UPI00047D437C cobalamin adenosyltransferase 0.230066349432 0.5 0.269933650568 +UniRef50_A3PR78 Peptidase S15 1.40083641967 0.5 -0.900836419671 +UniRef50_A9MUH4 0.234408834121 0.5 0.265591165879 +UniRef50_B7V7M2 Cysteine synthase 2.03328592243 0.5 -1.53328592243 +UniRef50_P76113 NADPH dependent curcumin reductase 1.44514860139 0.5 -0.945148601392 +UniRef50_L8ND35 Sigma 54 dependent transcriptional regulator 0.531600789688 0.5 -0.0316007896882 +UniRef50_UPI00041D3C43 chromosomal replication initiation protein 0.41875168507 0.5 0.0812483149298 +UniRef50_B9TKF4 0.240941480089 0.5 0.259058519911 +UniRef50_K5DHJ7 1.65810340217 0.499999999998 -1.15810340217 +UniRef50_UPI00037794A5 hypothetical protein 0.0428062391106 0.5 0.457193760889 +UniRef50_G7UA09 Glycosyl hydrolase family 38 N terminal domain protein 0.00263065487139 0.5 0.497369345129 +UniRef50_D7HX96 Acetate permease ActP 1.13549694535 0.500000000001 -0.635496945352 +UniRef50_G8LP59 YdiK 0.944738089845 0.5 -0.444738089845 +UniRef50_UPI000255BF67 heptaprenyl diphosphate synthase subunit II 0.331915328243 0.5 0.168084671757 +UniRef50_UPI0002DAB67A hypothetical protein 1.25460874152 0.5 -0.754608741517 +UniRef50_V5NNB3 Iron regulated outer membrane protein FrbP_1 0.0227713134976 0.5 0.477228686503 +UniRef50_Q0SPS1 DHH family protein 0.202293315032 0.5 0.297706684968 +UniRef50_UPI00047BD1F1 methionine gamma lyase 1.79544583163 0.5 -1.29544583163 +UniRef50_F9FAZ9 ATP dependent Clp protease proteolytic subunit 0.143063988824 0.5 0.356936011176 +UniRef50_A8LSJ7 Fe S metabolism associated SufE 5.57177822625 0.5 -5.07177822625 +UniRef50_A5UMA7 0.430023188017 0.5 0.0699768119829 +UniRef50_UPI0003628360 hypothetical protein 1.84029597781 0.5 -1.34029597781 +UniRef50_A5UL43 Oligosaccharyl transferase, STT3 subunit 1.65742465244 0.5 -1.15742465244 +UniRef50_UPI000470DB6F hypothetical protein, partial 0.240439941375 0.5 0.259560058625 +UniRef50_E3D3R3 LPS biosynthesis protein related protein 0.0240050034025 0.5 0.475994996598 +UniRef50_A6M109 Auxin Efflux Carrier 0.0601853802951 0.5 0.439814619705 +UniRef50_Q03JU0 Transposase 0.993051954143 0.5 -0.493051954143 +UniRef50_K6X7D8 1.30634286811 0.5 -0.806342868106 +UniRef50_D2NRJ6 Molybdopterin guanine dinucleotide biosynthesis protein A 0.114793077614 0.499999999999 0.385206922387 +UniRef50_D4GB36 FeS assembly ATPase SufC 0.436833963331 0.5 0.0631660366693 +UniRef50_E6NPZ4 Methyl accepting chemotaxis protein 0.0123349669875 0.5 0.487665033012 +UniRef50_Q56954 Chelated iron transport system membrane protein YfeC 1.99393774569 0.5 -1.49393774569 +UniRef50_P24216 Flagellar hook associated protein 2 0.536964961058 0.5 -0.0369649610585 +UniRef50_X5EK07 0.152862602255 0.5 0.347137397745 +UniRef50_A0A011NP07 4 alpha glucanotransferase 0.0116839116961 0.5 0.488316088304 +UniRef50_P45682 Lipoprotein NlpD LppB homolog 0.732154818824 0.5 -0.232154818824 +UniRef50_I6T6E7 1.35887505086 0.5 -0.858875050859 +UniRef50_G7I860 NADH ubiquinone oxidoreductase chain 0.170280885062 0.5 0.329719114938 +UniRef50_O00217 NADH dehydrogenase [ubiquinone] iron sulfur protein 8, mitochondrial 3.60255345552 0.5 -3.10255345552 +UniRef50_U3T764 0.133212631797 0.500000000001 0.366787368203 +UniRef50_Q6VRN6 Cag17 0.0843463490054 0.5 0.415653650994 +UniRef50_A6TBU8 L rhamnonate dehydratase 6.72480112058 0.5 -6.22480112058 +UniRef50_UPI0003B65FB6 MULTISPECIES 0.238133526601 0.5 0.261866473399 +UniRef50_UPI00042B11A5 Urease isoform 4 0.238875873155 0.5 0.261124126845 +UniRef50_A6M2F4 Response regulator receiver protein 0.0540364844671 0.5 0.445963515532 +UniRef50_Q3IV75 RES domain containing protein 3.64239610766 0.500000000002 -3.14239610766 +UniRef50_A3PRF6 D amino acid dehydrogenase small subunit 0.229382469407 0.5 0.270617530593 +UniRef50_C6ST78 Serine protease 0.570312682518 0.5 -0.0703126825178 +UniRef50_A3LGR5 Hypothetical 1.13347929416 0.5 -0.633479294157 +UniRef50_F9V7S5 Metallo beta lactamase superfamily protein 1.87233418871 0.5 -1.37233418871 +UniRef50_A6M2T3 Phosphotransferase system, EIIC 0.063790151228 0.5 0.436209848772 +UniRef50_UPI0002B42FAD PREDICTED 5.91751647542 0.500000000001 -5.41751647542 +UniRef50_A3PXZ4 Uridylate kinase 0.0661101544599 0.5 0.43388984554 +UniRef50_UPI0004654176 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.297948486585 0.5 0.202051513415 +UniRef50_Q9RXQ2 Pyruvate dehydrogenase E1 component 0.000494864132126 0.5 0.499505135868 +UniRef50_E6SJV1 TRAP transporter solute receptor, TAXI family 0.60771987099 0.5 -0.10771987099 +UniRef50_UPI0003D0B25A PREDICTED 0.274587284266 0.5 0.225412715734 +UniRef50_A7HWY8 0.388818430911 0.5 0.111181569089 +UniRef50_D3V7P4 Multidrug resistance protein MdtC 2.35639468916 0.499999999998 -1.85639468916 +UniRef50_Q57251 Putative L lactate permease 0.0540145685838 0.5 0.445985431416 +UniRef50_UPI0003B7A308 MarR family transcriptional regulator 0.291727653376 0.5 0.208272346624 +UniRef50_A9WNC8 ATP synthase subunit beta 0.000648584838853 0.500000000001 0.49935141516 +UniRef50_UPI0003B39EAE riboflavin synthase subunit alpha 0.152287624132 0.5 0.347712375867 +UniRef50_UPI000414CEF0 ATP dependent DNA helicase PcrA 1.0002360969 0.5 -0.500236096896 +UniRef50_A1AZE4 Nucleoside ABC transporter membrane protein 2.09591677134 0.499999999999 -1.59591677134 +UniRef50_Q8TV83 Imidazole glycerol phosphate synthase subunit HisH 1.25642850758 0.5 -0.756428507579 +UniRef50_UPI0003B6B799 diguanylate cyclase 0.576212558677 0.5 -0.0762125586769 +UniRef50_Q8DYL9 Glycosyl transferase, family 8 1.46572001973 0.5 -0.965720019729 +UniRef50_E9CIL8 0.371163968306 0.5 0.128836031694 +UniRef50_P10367 Histidine biosynthesis bifunctional protein HisIE 0.320205484678 0.5 0.179794515322 +UniRef50_UPI0003714C23 hypothetical protein 0.260417932825 0.5 0.239582067175 +UniRef50_UPI0003C73FC0 phosphonate ABC transporter 1.72176483984 0.499999999998 -1.22176483984 +UniRef50_C1DGV0 Glycosyl transferase, group 1 0.319560307807 0.5 0.180439692193 +UniRef50_UPI000375CFC4 hypothetical protein 1.9963007377 0.500000000002 -1.49630073771 +UniRef50_B7V1T0 Urease subunit beta 1.00976355932 0.5 -0.509763559324 +UniRef50_O34742 Glycine betaine carnitine choline transport system permease protein OpuCD 1.16295279196 0.5 -0.662952791963 +UniRef50_UPI000369F7C5 hypothetical protein 0.171459096581 0.5 0.328540903419 +UniRef50_Q39BJ9 3.23100697111 0.499999999998 -2.73100697111 +UniRef50_D0DDW6 Replication protein C 1.75566687678 0.5 -1.25566687678 +UniRef50_D6SCB4 ABC transporter, ATP binding protein 1.74474816725 0.5 -1.24474816725 +UniRef50_X6K2H2 2.22104178516 0.499999999999 -1.72104178515 +UniRef50_X0W523 Marine sediment metagenome DNA, contig 0.417947660423 0.5 0.0820523395768 +UniRef50_P31679 Putative metabolite transport protein YaaU 1.2672062589 0.5 -0.767206258902 +UniRef50_V9GEY6 Selenophosphate dependent tRNA 2 selenouridine synthase 0.625002883578 0.5 -0.125002883578 +UniRef50_A0A023SIR8 rRNA methyltransferase 0.797599969403 0.5 -0.297599969403 +UniRef50_UPI00028947D1 hypothetical protein 1.20636401203 0.5 -0.70636401203 +UniRef50_UPI0002F02B73 5 oxopent 3 ene 1,2,5 tricarboxylate decarboxylase 0.203408938287 0.5 0.296591061712 +UniRef50_A9BDW2 Na+ melibiose symporter 3.37473976404 0.499999999998 -2.87473976403 +UniRef50_Q9PDT5 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 1.39109967139 0.5 -0.891099671394 +UniRef50_Q9UQ39 RNA binding protein 0.0180800325496 0.5 0.48191996745 +UniRef50_Q8SDK3 Phi PVL orfs 18 19 like protein 2.64231215673 0.500000000003 -2.14231215674 +UniRef50_A6LR61 Diguanylate cyclase 0.249685193916 0.5 0.250314806084 +UniRef50_A5CD22 UDP N acetylmuramate L alanine ligase 1.07670656633 0.5 -0.576706566334 +UniRef50_UPI000374D78C hypothetical protein 0.714121906952 0.5 -0.214121906952 +UniRef50_L5S2T2 0.0272448179275 0.5 0.472755182072 +UniRef50_A5UN24 Adhesin like protein 1.58307791998 0.500000000001 -1.08307791999 +UniRef50_UPI0003EB198B lactoylglutathione lyase, partial 1.04572163211 0.5 -0.545721632112 +UniRef50_D4YPZ1 0.152206339308 0.500000000001 0.347793660692 +UniRef50_UPI000381F0C9 resolvase 0.981099432429 0.5 -0.481099432429 +UniRef50_A9GRS6 0.00831297019589 0.5 0.491687029804 +UniRef50_Q4QKB5 Dihydroorotate dehydrogenase 0.296871591824 0.5 0.203128408176 +UniRef50_UPI00042C50B5 PREDICTED 0.105017080102 0.5 0.394982919898 +UniRef50_UPI00041CB2A5 MerR family transcriptional regulator 3.67141303496 0.500000000003 -3.17141303496 +UniRef50_B6YRL9 Dihydroorotate dehydrogenase B ), catalytic subunit 0.189425745418 0.5 0.310574254582 +UniRef50_Q0VMD0 Biotin synthase 0.568921069976 0.5 -0.0689210699755 +UniRef50_UPI000479EB6C phosphohydrolase 0.163438867303 0.5 0.336561132697 +UniRef50_W4UE45 Hypothetical membrane protein 0.0871788021832 0.5 0.412821197817 +UniRef50_Q1C165 Phosphopentomutase 3.61569566368 0.499999999997 -3.11569566368 +UniRef50_I6XSN2 Peptidase, M50 family 0.0254412990743 0.5 0.474558700926 +UniRef50_W0EW28 Fe S metabolism protein SufE 0.0179661757628 0.5 0.482033824237 +UniRef50_UPI00047DC7BF hypothetical protein 0.235412843679 0.5 0.264587156321 +UniRef50_UPI00037BA2E6 hypothetical protein 0.230881354777 0.5 0.269118645223 +UniRef50_B0LU82 Putative plasmid transfer protein 0.212853440718 0.5 0.287146559282 +UniRef50_R8X1X2 2.98661733145 0.499999999997 -2.48661733145 +UniRef50_UPI000299FFB6 50S ribosomal protein L6 0.0145919808786 0.5 0.485408019121 +UniRef50_UPI00036AB26C hypothetical protein 1.04566301059 0.5 -0.545663010589 +UniRef50_A4STH4 Anaerobic nitric oxide reductase flavorubredoxin 1.5974050849 0.5 -1.0974050849 +UniRef50_F2MTI0 3 dehydroquinate synthase 0.741738769213 0.5 -0.241738769213 +UniRef50_Q6L8K7 Acetyl CoA acetyltransferase 0.060991502542 0.5 0.439008497458 +UniRef50_UPI00047E7907 membrane protein 0.318509560209 0.5 0.181490439791 +UniRef50_F6BN92 Tetracycline transcriptional regulator YcdC domain containing protein 2.30933007784 0.500000000003 -1.80933007785 +UniRef50_P50096 Inosine 5 monophosphate dehydrogenase 1 1.15830093683 0.5 -0.658300936832 +UniRef50_UPI0003B755F7 integrase, partial 9.79887542392 0.499999999992 -9.29887542392 +UniRef50_M1N659 Diguanylate phosphodiesterase 0.272699839605 0.5 0.227300160395 +UniRef50_P0AEA4 Curli production assembly transport component CsgG 1.75692012743 0.500000000001 -1.25692012743 +UniRef50_Q9RXZ7 0.00302021064888 0.500000000001 0.496979789351 +UniRef50_A0A024E690 3.76079319781 0.5 -3.26079319781 +UniRef50_Q16740 ATP dependent Clp protease proteolytic subunit, mitochondrial 0.045616339156 0.5 0.454383660844 +UniRef50_UPI00046321A5 hypothetical protein 2.04496034337 0.5 -1.54496034337 +UniRef50_E8NEK5 0.260924995869 0.5 0.239075004131 +UniRef50_A8NPH0 0.580220614686 0.5 -0.0802206146865 +UniRef50_UPI00041CFDCE hypothetical protein 0.581794473188 0.5 -0.081794473188 +UniRef50_Q2GK85 Malate dehydrogenase 0.568216361311 0.5 -0.0682163613114 +UniRef50_Q4TCA6 Chromosome 1 SCAF7036, whole genome shotgun sequence. 0.137365385007 0.5 0.362634614993 +UniRef50_Q9ZL74 Molybdenum cofactor guanylyltransferase 0.0332991124218 0.5 0.466700887578 +UniRef50_Q6G5Z1 Putative ABC transporter ATP binding protein SAS2569 0.934814222515 0.5 -0.434814222515 +UniRef50_Q9RV79 tRNA 2 methylthio N dimethylallyladenosine synthase 0.0013544853879 0.5 0.498645514612 +UniRef50_O82392 Phosphomethylpyrimidine synthase, chloroplastic 0.00122412152531 0.5 0.498775878475 +UniRef50_UPI0003C10FC0 1.35598306942 0.500000000002 -0.855983069418 +UniRef50_M9S4J7 0.294735766455 0.5 0.205264233545 +UniRef50_Q5ZW64 Flagellar P ring protein 1.90720552408 0.5 -1.40720552408 +UniRef50_UPI000378C9B2 hypothetical protein 3.94044824652 0.5 -3.44044824652 +UniRef50_Q1CEX0 UPF0301 protein YPN_3133 199.82601188 0.500000000045 -199.32601188 +UniRef50_J9YRU2 1.6067419621 0.5 -1.1067419621 +UniRef50_U5DDJ2 TRAP transporter solute receptor, TAXI family 0.0751091141714 0.5 0.424890885829 +UniRef50_K2FX44 0.270115514537 0.5 0.229884485463 +UniRef50_J2LA76 1.9288763302 0.5 -1.4288763302 +UniRef50_UPI00046889D2 hypothetical protein 0.181558198416 0.5 0.318441801584 +UniRef50_UPI00022CA944 PREDICTED 0.318362285799 0.5 0.181637714201 +UniRef50_X7UD14 Protein dipZ 0.662716553307 0.5 -0.162716553307 +UniRef50_UPI00032895ED PREDICTED 0.0726830931414 0.5 0.427316906858 +UniRef50_UPI00037FC52E hypothetical protein 1.31211846738 0.5 -0.812118467376 +UniRef50_A3CP60 Glycosyl transferase, putative 1.50093387949 0.5 -1.00093387949 +UniRef50_B7I7I0 0.00810380580661 0.5 0.491896194194 +UniRef50_A6LZA6 Histidine kinase 0.105364778067 0.5 0.394635221933 +UniRef50_UPI00046EE93F hypothetical protein 2.29392307125 0.5 -1.79392307125 +UniRef50_P9WJQ4 Molybdopterin molybdenumtransferase 2 0.470747693911 0.5 0.0292523060895 +UniRef50_F5M4L1 0.725841547137 0.5 -0.225841547137 +UniRef50_Q1GGT9 Phosphoribosyl AMP cyclohydrolase 0.126174052706 0.5 0.373825947294 +UniRef50_C3P5A0 Demethylmenaquinone methyltransferase 3.45120120807 0.499999999997 -2.95120120807 +UniRef50_Q5ZI49 Ribose phosphate pyrophosphokinase 2 0.25460737585 0.5 0.24539262415 +UniRef50_A5UKS7 Transcriptional regulator, MarR family 2.11131454779 0.5 -1.61131454779 +UniRef50_UPI00046A6374 hypothetical protein 1.73434291779 0.5 -1.23434291779 +UniRef50_H7KDR0 Anaphase promoting complex, cyclosome, subunit 3 family protein 0.027876730466 0.5 0.472123269534 +UniRef50_F2E8Q7 Predicted protein 0.323540659675 0.5 0.176459340325 +UniRef50_UPI00047AC4C6 hypothetical protein 0.200726098778 0.5 0.299273901222 +UniRef50_G2Z8U2 0.014976159453 0.5 0.485023840547 +UniRef50_Q12MN3 Putative phosphoenolpyruvate synthase regulatory protein 0.544424052381 0.5 -0.0444240523812 +UniRef50_UPI0002FA2625 hypothetical protein 0.144822323003 0.5 0.355177676997 +UniRef50_F0I702 2.78443399192 0.5 -2.28443399192 +UniRef50_X1JCC9 Marine sediment metagenome DNA, contig 1.04034717553 0.5 -0.540347175532 +UniRef50_UPI0003609B11 hypothetical protein 0.0853250145345 0.5 0.414674985466 +UniRef50_K2JK23 0.287519992904 0.5 0.212480007096 +UniRef50_Q6G930 Probable glycine dehydrogenase subunit 1 2.23780282427 0.499999999998 -1.73780282427 +UniRef50_L0IML0 ABC type nitrate sulfonate bicarbonate transport system, periplasmic component 0.0822510873806 0.5 0.41774891262 +UniRef50_A1IRX0 0.023174052508 0.5 0.476825947492 +UniRef50_UPI00036605EC hypothetical protein 0.670768849117 0.5 -0.170768849117 +UniRef50_UPI00047AF6CE restriction endonuclease 0.000750619063865 0.500000000001 0.499249380935 +UniRef50_Q6N535 ATP dependent Clp protease adapter protein ClpS 2 0.0117048252278 0.499999999999 0.488295174773 +UniRef50_Q9LPW0 Glyceraldehyde 3 phosphate dehydrogenase GAPA2, chloroplastic 1.30247963815 0.5 -0.802479638149 +UniRef50_Q6AFK7 3 isopropylmalate dehydratase large subunit 1.45905927742 0.5 -0.959059277417 +UniRef50_Q6AJF8 3 oxoacyl [acyl carrier protein] synthase 3 1.45169059622 0.5 -0.951690596225 +UniRef50_C7JHV1 Transposase 1.16985785888 0.5 -0.669857858883 +UniRef50_G7ZR43 1.37264563599 0.500000000002 -0.872645635987 +UniRef50_B1AJD3 Glycine tRNA ligase 1.19347979301 0.5 -0.693479793009 +UniRef50_UPI0003C104A0 4.12424688202 0.499999999993 -3.62424688201 +UniRef50_B2TPY0 Vancomycin B type resistance protein VanW 0.145144910694 0.5 0.354855089306 +UniRef50_Q9K0I2 Phosphoenolpyruvate synthase 0.103350423918 0.5 0.396649576082 +UniRef50_G7U8X0 Drug resistance MFS transporter, drug 0.0159728868155 0.5 0.484027113185 +UniRef50_E6PX09 0.723727466295 0.5 -0.223727466295 +UniRef50_UPI000359A0D1 PREDICTED 0.0282800531232 0.5 0.471719946877 +UniRef50_UPI0003698208 hypothetical protein 0.148940689554 0.5 0.351059310446 +UniRef50_UPI0003B69E18 membrane protein 0.420097878287 0.5 0.0799021217128 +UniRef50_UPI0003B51B40 protein export membrane protein SecD, partial 0.167024238599 0.5 0.332975761401 +UniRef50_Q893Q5 4 methyl 5 thiazole monophosphate biosynthesis enzyme 0.683820944612 0.5 -0.183820944612 +UniRef50_B7I6U8 0.0103767454686 0.500000000001 0.48962325453 +UniRef50_Q097C2 1.4549293883 0.5 -0.954929388297 +UniRef50_P0A3Q0 4 alpha glucanotransferase 0.452537286939 0.5 0.047462713061 +UniRef50_C6SP30 0.729338014609 0.5 -0.229338014609 +UniRef50_Q09AF1 Ribose transport system permease protein RbsC 3.01171879818 0.5 -2.51171879818 +UniRef50_K7SFB2 0.257110944862 0.5 0.242889055138 +UniRef50_UPI00028877F3 peptide ABC transporter permease 0.0305492985062 0.5 0.469450701494 +UniRef50_B1J061 UPF0178 protein YaiI 55.9658255762 0.499999999984 -55.4658255762 +UniRef50_UPI00046A4EAB membrane protein 0.330175676958 0.5 0.169824323042 +UniRef50_P0ACD8 Hydrogenase 1 large chain 1.84284851384 0.499999999997 -1.34284851384 +UniRef50_V7ZPF8 1.42530230039 0.500000000001 -0.925302300388 +UniRef50_W7QBW2 Immunogenic protein 0.421224087546 0.5 0.078775912454 +UniRef50_C1D094 GTPase Der 0.00375963140166 0.5 0.496240368598 +UniRef50_X6DLZ2 1.28452272818 0.5 -0.784522728177 +UniRef50_UPI0004716F0E ribonuclease J 0.128895294687 0.5 0.371104705313 +UniRef50_UPI0002B8D004 hypothetical protein 0.100228930121 0.5 0.39977106988 +UniRef50_UPI0004681C8E hypothetical protein, partial 0.0128012830799 0.5 0.48719871692 +UniRef50_R9YN68 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase 1.60952875872 0.499999999999 -1.10952875872 +UniRef50_Q6FEV8 3 isopropylmalate dehydratase small subunit 0.427009905998 0.5 0.0729900940017 +UniRef50_A6M0Q7 Methyl accepting chemotaxis sensory transducer 0.109114280334 0.5 0.390885719666 +UniRef50_P40711 Peptidyl tRNA hydrolase ArfB 3.2814134173 0.5 -2.7814134173 +UniRef50_B0V969 Homoserine kinase 0.0271442895975 0.5 0.472855710402 +UniRef50_UPI000287CE50 ABC transporter periplasmic protein, partial 0.25234326145 0.5 0.24765673855 +UniRef50_D3DZ73 Methanogenesis marker protein 6 0.499462888949 0.5 0.000537111051488 +UniRef50_Q5V5M1 Nucleoside diphosphate kinase 0.0716281418349 0.5 0.428371858165 +UniRef50_UPI0004026C93 ABC transporter permease 0.408914220659 0.5 0.0910857793408 +UniRef50_A7ZK57 3 hydroxydecanoyl [acyl carrier protein] dehydratase 0.954839904215 0.5 -0.454839904215 +UniRef50_W4M3I0 1.15117321306 0.5 -0.651173213065 +UniRef50_A4VQM5 Alanine racemase 14.5267800718 0.499999999997 -14.0267800718 +UniRef50_B9EBJ3 GTPase HflX 2.13040415898 0.499999999998 -1.63040415898 +UniRef50_Q4W573 Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion 0.0236670430276 0.5 0.476332956972 +UniRef50_R6FSH7 Oxidoreductase 0.109264529714 0.499999999999 0.390735470287 +UniRef50_F9M5F2 1.88552825295 0.500000000001 -1.38552825295 +UniRef50_A1BD29 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 0.669182786051 0.5 -0.169182786051 +UniRef50_M5RG91 Glutamate binding periplasmic protein 1.72609573662 0.5 -1.22609573662 +UniRef50_R9SIF8 NADPH dependent FMN reductase 8.17982024929 0.499999999999 -7.67982024929 +UniRef50_K7RVB3 DNA recombination RmuC like protein 0.0158598106884 0.5 0.484140189311 +UniRef50_D3E1G5 Cobalamin biosynthesis protein CbiX 6.02810367894 0.500000000001 -5.52810367894 +UniRef50_A0KJ40 Nucleoside diphosphate kinase 1.05092646556 0.5 -0.550926465561 +UniRef50_UPI000466CC16 hydantoinase 0.277495602916 0.5 0.222504397084 +UniRef50_UPI0003B508F0 GntR family transcriptional regulator 4.60175995042 0.499999999994 -4.10175995042 +UniRef50_P27868 Acetolactate synthase 0.456631005861 0.5 0.0433689941387 +UniRef50_UPI00035F1C59 50S ribosomal protein L3 0.0591856375603 0.5 0.44081436244 +UniRef50_F9YZE2 0.229107621843 0.5 0.270892378157 +UniRef50_M5S2J2 Phytoene desaturase 0.144013844232 0.5 0.355986155768 +UniRef50_H6LML3 5.15453219212 0.499999999999 -4.65453219212 +UniRef50_A6LT68 Phage tail tape measure protein, TP901 family 0.116499037699 0.5 0.383500962301 +UniRef50_UPI00036C1C23 hypothetical protein 0.0648593547339 0.5 0.435140645266 +UniRef50_A5UNK4 Ribose phosphate pyrophosphokinase 1.93611471027 0.499999999998 -1.43611471027 +UniRef50_UPI00035CAC38 hypothetical protein 0.1436803883 0.5 0.3563196117 +UniRef50_UPI0003EDD3EB hypothetical protein, partial 2.09934746838 0.500000000003 -1.59934746838 +UniRef50_P33235 Flagellar hook associated protein 1 2.2238031416 0.5 -1.7238031416 +UniRef50_UPI000379C48D hypothetical protein 2.85003896566 0.500000000003 -2.35003896566 +UniRef50_F6GB14 Multidrug efflux system transmembrane protein 3.30074049763 0.499999999997 -2.80074049763 +UniRef50_Q4L5F4 Succinate dehydrogenase iron sulfur protein subunit 0.660255205753 0.5 -0.160255205753 +UniRef50_Q2G1T7 HTH type transcriptional regulator SarU 9.43241391881 0.5 -8.93241391881 +UniRef50_UPI0002EB7833 hypothetical protein 0.290257392291 0.5 0.209742607709 +UniRef50_E8NHH4 WGS CADB00000000 data, contig 29 0.304120781959 0.5 0.195879218041 +UniRef50_F0LGR4 Sugar ABC transporter, substrate binding protein 1.88109867866 0.500000000001 -1.38109867866 +UniRef50_P56867 Hexagonally packed intermediate layer surface protein 0.000737362140121 0.5 0.49926263786 +UniRef50_K0S670 0.815135022664 0.5 -0.315135022664 +UniRef50_I4CPJ8 C type cytochrome 0.469243727152 0.5 0.0307562728483 +UniRef50_G7MDF6 0.499441328349 0.5 0.00055867165134 +UniRef50_UPI0003B56D5B 50S ribosomal protein L25 2.23717476812 0.500000000001 -1.73717476812 +UniRef50_A0A024HXA7 1.42120888895 0.5 -0.921208888948 +UniRef50_F5M453 McpA 1.53451248359 0.5 -1.03451248359 +UniRef50_B0C6R3 Phosphoribosylformylglycinamidine synthase 2 1.93154881428 0.5 -1.43154881428 +UniRef50_A0A023RWA6 Sugar kinase 0.031832723313 0.5 0.468167276687 +UniRef50_UPI00036BDA1B hypothetical protein 0.034763827957 0.5 0.465236172043 +UniRef50_Z1Y9N5 Replication initiator protein 3.74709593264 0.499999999999 -3.24709593264 +UniRef50_UPI00047572A2 tRNA delta isopentenylpyrophosphate transferase 0.57344055666 0.5 -0.0734405566595 +UniRef50_V5LMT9 15.623525162 0.499999999993 -15.123525162 +UniRef50_UPI0001FFF28B gas vesicle protein, partial 1.03787492552 0.5 -0.537874925515 +UniRef50_Q7VID0 0.0748790449154 0.5 0.425120955085 +UniRef50_Q74LG0 Xanthine uracil permease 0.669453462163 0.5 -0.169453462163 +UniRef50_Q6F8J4 DNA primase 0.0134140324195 0.5 0.48658596758 +UniRef50_K2ADM0 1.45528083612 0.500000000001 -0.955280836118 +UniRef50_A0A031M1H9 Membrane protein 2.24146162752 0.5 -1.74146162752 +UniRef50_R9SKE6 Iron dependent repressor 0.483968783127 0.5 0.0160312168735 +UniRef50_B8JFW2 Lysine tRNA ligase 0.120469394391 0.499999999999 0.379530605609 +UniRef50_Q8FEA4 4.37985046746 0.500000000002 -3.87985046746 +UniRef50_A1U241 Uracil phosphoribosyltransferase 1.11129751991 0.5 -0.611297519913 +UniRef50_V8G0X5 Cell wall binding protein 0.0787405892988 0.5 0.421259410701 +UniRef50_UPI0001711954 GTPase CgtA 0.0159289447326 0.5 0.484071055268 +UniRef50_X1HTP5 Marine sediment metagenome DNA, contig 1.02998430343 0.5 -0.529984303426 +UniRef50_R5HYZ8 0.278968751676 0.5 0.221031248324 +UniRef50_R5NRV6 Pseudouridine synthase 0.0743759961436 0.500000000001 0.425624003856 +UniRef50_D3VHY7 0.046774746566 0.5 0.453225253434 +UniRef50_UPI0003A646A2 GTP pyrophosphokinase 0.0694465590356 0.5 0.430553440965 +UniRef50_B4THT3 UPF0257 lipoprotein YnfC 1.49582133321 0.5 -0.995821333211 +UniRef50_UPI00037C47E4 hypothetical protein 0.0441633263145 0.5 0.455836673685 +UniRef50_E1ZV58 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.0397979071167 0.5 0.460202092883 +UniRef50_W6QS47 Methyl accepting chemotaxis transducer 0.116427538765 0.5 0.383572461235 +UniRef50_L0A178 Putative branched chain amino acid permease 0.951571452678 0.5 -0.451571452678 +UniRef50_E2ZSI9 0.474361521179 0.5 0.0256384788208 +UniRef50_B2V1Q0 0.636029740329 0.5 -0.136029740329 +UniRef50_UPI0003B54C8A ATP dependent DNA helicase Rep 0.520072234573 0.5 -0.020072234573 +UniRef50_F8KJ61 DNA 3 methyladenine glycosylase I 2.78890052417 0.500000000001 -2.28890052417 +UniRef50_UPI0003777478 hypothetical protein 0.222366878494 0.5 0.277633121507 +UniRef50_F2JLA6 Transposase 0.219812090941 0.5 0.280187909059 +UniRef50_UPI00035F7004 hypothetical protein 0.0191759015244 0.5 0.480824098475 +UniRef50_UPI00046A5F56 hypothetical protein 0.0172343659752 0.499999999999 0.482765634025 +UniRef50_W5T9B1 0.0362603535485 0.5 0.463739646451 +UniRef50_C6NYG1 Flagellar biosynthesis protein FlhA 0.0394302466623 0.5 0.460569753338 +UniRef50_UPI000262C262 transposase 0.46279814298 0.5 0.0372018570197 +UniRef50_L1K4Y6 0.0754517393431 0.5 0.424548260657 +UniRef50_D4HAB8 Aminodeoxychorismate synthase, component I 0.0176835503506 0.5 0.482316449649 +UniRef50_UPI0003C75D29 pirin 0.565596824912 0.5 -0.0655968249121 +UniRef50_UPI0003648088 hypothetical protein, partial 0.648461227909 0.5 -0.148461227909 +UniRef50_P26171 Bacteriochlorophyll synthase 44.5 kDa chain 15.1771026965 0.500000000004 -14.6771026965 +UniRef50_UPI0003B578F4 peptidase M22 0.233504998416 0.500000000001 0.266495001584 +UniRef50_G8PES7 Glycosyl transferase 2 family protein 0.0104248721768 0.5 0.489575127823 +UniRef50_B9E294 0.0205157093867 0.5 0.479484290613 +UniRef50_UPI00036DA897 hypothetical protein 0.0212225063463 0.499999999999 0.478777493654 +UniRef50_Q28PP3 Binding protein dependent transport systems inner membrane component 1.33957360074 0.5 -0.839573600737 +UniRef50_UPI0002EEB552 hypothetical protein 0.266249616469 0.5 0.233750383531 +UniRef50_A1K3T2 Phosphoheptose isomerase 0.38218110818 0.5 0.11781889182 +UniRef50_Q9RVZ7 O acetylhomoserine lyase 0.000926944928208 0.5 0.499073055072 +UniRef50_UPI0004268C03 hypothetical protein 0.70601547513 0.5 -0.20601547513 +UniRef50_UPI00034D0CB3 hypothetical protein 3.51668275766 0.499999999999 -3.01668275766 +UniRef50_A2ZQQ8 0.383673119653 0.5 0.116326880347 +UniRef50_UPI00035A2A22 PREDICTED 0.334238597554 0.5 0.165761402446 +UniRef50_W2CS51 0.332935790786 0.5 0.167064209214 +UniRef50_C6S4V7 Transcriptional regulator, AraC family 0.0141218437003 0.5 0.4858781563 +UniRef50_Q5HPM6 0.279227453426 0.5 0.220772546574 +UniRef50_C1D0F7 Aminomethyltransferase 0.0671418893279 0.5 0.432858110672 +UniRef50_Q5Z5L8 0.0742976403981 0.5 0.425702359602 +UniRef50_Q5HPM0 0.495318477102 0.5 0.00468152289839 +UniRef50_UPI0003C7E085 acetylornithine aminotransferase 0.232052922472 0.5 0.267947077528 +UniRef50_R6JRA3 0.301113414665 0.5 0.198886585335 +UniRef50_UPI00016AA163 hypothetical protein 0.887628122463 0.5 -0.387628122463 +UniRef50_J9YT54 0.358146146247 0.5 0.141853853753 +UniRef50_Q66ED4 Sulfite reductase [NADPH] flavoprotein alpha component 0.214738834494 0.5 0.285261165506 +UniRef50_UPI000378803E hypothetical protein 0.200140448435 0.5 0.299859551565 +UniRef50_V9WCN5 Serine pyruvate aminotransferase archaeal aspartate aminotransferase 1.2436677859 0.5 -0.743667785903 +UniRef50_UPI0004636D1A hypothetical protein 2.17604787194 0.499999999999 -1.67604787194 +UniRef50_UPI00036F7C7E hypothetical protein 0.303822237095 0.5 0.196177762905 +UniRef50_UPI00037CF289 hypothetical protein 1.626521051 0.5 -1.126521051 +UniRef50_W7LMB8 0.319560307808 0.5 0.180439692192 +UniRef50_UPI00036C6A8F hypothetical protein 0.00221274264741 0.5 0.497787257352 +UniRef50_D7GUI6 TRAP transporter solute receptor, TAXI family 0.874949574143 0.5 -0.374949574143 +UniRef50_A6M071 0.498931289593 0.5 0.00106871040729 +UniRef50_UPI0003B45945 glycosyl transferase 0.954665972534 0.5 -0.454665972534 +UniRef50_Q9P2T1 GMP reductase 2 8.13459586803 0.500000000003 -7.63459586803 +UniRef50_H8XBT6 Recombinase A 1.5164440669 0.5 -1.0164440669 +UniRef50_Q8P558 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE 0.00135644301295 0.5 0.498643556987 +UniRef50_V5XU16 Replication initiator protein A 1.37203259556 0.5 -0.872032595561 +UniRef50_Q8CUE8 3.60817394224 0.500000000001 -3.10817394224 +UniRef50_Q8CUE9 8.94819754487 0.499999999987 -8.44819754486 +UniRef50_Q8CUE6 1.86268367574 0.5 -1.36268367574 +UniRef50_Q8CUE4 1.62046244472 0.5 -1.12046244472 +UniRef50_Q8CUE5 2.86213526885 0.5 -2.36213526885 +UniRef50_Q8CUE2 0.227588009035 0.5 0.272411990965 +UniRef50_Q8CUE3 1.40343164947 0.499999999999 -0.903431649472 +UniRef50_A4YPV8 1.1517662226 0.5 -0.651766222603 +UniRef50_M0SZR5 0.452954096642 0.5 0.0470459033582 +UniRef50_UPI0004784CAD hypothetical protein 0.0883870174188 0.5 0.411612982581 +UniRef50_UPI0004738AE6 glyceraldehyde 3 phosphate dehydrogenase, partial 3.09526073179 0.5 -2.59526073179 +UniRef50_I7AL68 Phosphoglycerate mutase family protein 0.0224683919216 0.499999999999 0.477531608079 +UniRef50_P0ABL3 Periplasmic nitrate reductase, electron transfer subunit 0.386452619227 0.5 0.113547380773 +UniRef50_R6U4B5 Transposase 0.345461839522 0.5 0.154538160478 +UniRef50_Q8CNT1 Integrase 2.31787790319 0.500000000001 -1.81787790319 +UniRef50_Q6MDQ6 NADH quinone oxidoreductase subunit K 0.266161447115 0.5 0.233838552885 +UniRef50_UPI00016C4514 50S ribosomal protein L18 0.0831514657989 0.5 0.416848534201 +UniRef50_Q9JYT7 0.0741301647518 0.5 0.425869835248 +UniRef50_G7UAA9 Transporter, major facilitator family protein 0.026771783322 0.5 0.473228216678 +UniRef50_B8CRT5 Homoserine O succinyltransferase 1.19227709194 0.5 -0.692277091942 +UniRef50_W0CEL3 0.0661880552224 0.5 0.433811944778 +UniRef50_P77390 [Citrate [pro 3S] lyase] ligase 6.50467608287 0.499999999998 -6.00467608287 +UniRef50_W0PAW0 Integral membrane protein 0.32341587351 0.5 0.17658412649 +UniRef50_C1KVA6 Glycine tRNA ligase alpha subunit 0.00936323983556 0.5 0.490636760165 +UniRef50_UPI0003F0AAA6 PREDICTED 0.67892336438 0.5 -0.17892336438 +UniRef50_M1N022 Histidinol phosphatase HisK 0.112126423798 0.5 0.387873576202 +UniRef50_Q5HNY9 Putative GTP cyclohydrolase 1 type 2 1.37113825526 0.499999999999 -0.871138255263 +UniRef50_F8FMK7 Response regulator 0.846019696313 0.5 -0.346019696313 +UniRef50_P85098 Respiratory nitrate reductase beta chain 0.539534075583 0.5 -0.0395340755834 +UniRef50_C6BUI7 Phosphoglycerate kinase 0.399421131203 0.5 0.100578868797 +UniRef50_UPI000287D575 putative short chain dehydrogenase 0.0601292185035 0.5 0.439870781496 +UniRef50_O67161 Glyceraldehyde 3 phosphate dehydrogenase 1.14587878993 0.5 -0.645878789925 +UniRef50_U7DV00 0.203587825214 0.5 0.296412174786 +UniRef50_X1T7L9 Marine sediment metagenome DNA, contig 0.472738633698 0.5 0.0272613663015 +UniRef50_P46130 Putative acyl CoA thioester hydrolase YbhC 1.57994682594 0.499999999999 -1.07994682593 +UniRef50_T0GKT6 ABC transporter permease 0.39610160561 0.5 0.10389839439 +UniRef50_D5VAW9 Transporter 0.004453844794 0.5 0.495546155206 +UniRef50_M4R0I6 0.00684337895127 0.5 0.493156621049 +UniRef50_D5ANC8 0.427746892725 0.5 0.0722531072755 +UniRef50_T0BL71 2.62201181544 0.500000000001 -2.12201181544 +UniRef50_J7PRA1 Internalin E 0.0080203501884 0.500000000001 0.491979649811 +UniRef50_A9H8V7 17.6941218532 0.499999999987 -17.1941218532 +UniRef50_A6WGM7 Cobyrinic acid ac diamide synthase 0.146039404687 0.5 0.353960595313 +UniRef50_B2ULY3 NADH quinone oxidoreductase subunit K 0.419267939733 0.5 0.0807320602669 +UniRef50_C7C0M5 0.0399128066025 0.5 0.460087193397 +UniRef50_P0ABC8 Protein HflK 3.33963473076 0.499999999999 -2.83963473076 +UniRef50_Q4FU03 Pseudouridine synthase 0.0162889467402 0.5 0.48371105326 +UniRef50_Q8FDG7 L tartrate succinate antiporter 1.97509707126 0.5 -1.47509707126 +UniRef50_Q6L8L1 Circadian clock protein kinase KaiC 1.73541975197 0.5 -1.23541975197 +UniRef50_UPI000375D5D1 hypothetical protein 1.0036176192 0.5 -0.503617619197 +UniRef50_A8AVA4 ABC transporter ATP binding protein 1.91761882717 0.5 -1.41761882717 +UniRef50_UPI0003805572 Fis family transcriptional regulator 0.887407680664 0.5 -0.387407680664 +UniRef50_O68560 Ribosome association toxin RatA 1.84473450418 0.5 -1.34473450418 +UniRef50_A1JJ54 Autoinducer 2 import system permease protein LsrC 2.25583852452 0.500000000001 -1.75583852452 +UniRef50_U6K454 2.92394649669 0.5 -2.42394649669 +UniRef50_P09852 Exotoxin A regulatory protein 0.103144171443 0.5 0.396855828557 +UniRef50_A6LS16 Sigma 54 factor, interaction domain containing protein 0.19874743019 0.5 0.30125256981 +UniRef50_D5AT86 4.59057113355 0.499999999998 -4.09057113355 +UniRef50_A3CNP4 Transcriptional regulator GntR family 0.847745911725 0.5 -0.347745911725 +UniRef50_A7MH24 NADH quinone oxidoreductase subunit C D 1.27220537037 0.5 -0.772205370373 +UniRef50_Q89AR9 NAD kinase 0.468868822273 0.5 0.0311311777266 +UniRef50_Q0FLV7 1.03210266714 0.5 -0.532102667143 +UniRef50_UPI00038316EF hypothetical protein 0.0338074633756 0.5 0.466192536624 +UniRef50_F2N563 0.128881203244 0.5 0.371118796756 +UniRef50_H8I380 1.16657431449 0.5 -0.666574314488 +UniRef50_K8FGY8 DUF2188 family protein 0.738473818404 0.5 -0.238473818404 +UniRef50_A0A011PD71 0.140205906549 0.5 0.359794093451 +UniRef50_UPI000382A08A hypothetical protein 0.224171791259 0.5 0.275828208741 +UniRef50_U6AC49 Phenazine specific methyltransferase PhzM 0.346481718681 0.5 0.153518281319 +UniRef50_P80503 Dihydrolipoyl dehydrogenase 0.158158416651 0.5 0.341841583349 +UniRef50_D7FVW5 0.0753810541122 0.5 0.424618945888 +UniRef50_U5MVZ4 Sensor histidine kinase YclK 0.142321479369 0.5 0.357678520631 +UniRef50_P37925 Protein FimH 1.31546331696 0.5 -0.81546331696 +UniRef50_UPI0003735D88 hypothetical protein 0.00789901412111 0.5 0.492100985879 +UniRef50_A0A011UTJ0 2.25511980008 0.5 -1.75511980008 +UniRef50_U5MNI8 Type IV pilus assembly protein TapC 0.0550915733232 0.5 0.444908426677 +UniRef50_UPI00046D22D7 hypothetical protein 2.10844960472 0.5 -1.60844960472 +UniRef50_X1ILZ0 Marine sediment metagenome DNA, contig 0.085124800518 0.5 0.414875199482 +UniRef50_D5QFZ9 Cyclase dehydrase 0.984406872149 0.5 -0.484406872149 +UniRef50_Q51463 Flagellar M ring protein 0.256307676403 0.5 0.243692323597 +UniRef50_A7FZA6 Transcription elongation factor GreA 5.0723036944 0.499999999998 -4.57230369439 +UniRef50_UPI0003B58BAE hemolysin expression modulating protein 0.678845415833 0.5 -0.178845415833 +UniRef50_UPI0003776FB7 hypothetical protein 0.348087559982 0.5 0.151912440018 +UniRef50_D4ZAK4 0.0794387574282 0.5 0.420561242572 +UniRef50_UPI000360EB76 hypothetical protein, partial 0.0126233288765 0.5 0.487376671124 +UniRef50_A4WXK1 0.00929986788172 0.5 0.490700132118 +UniRef50_G0LPP3 0.984845517576 0.5 -0.484845517576 +UniRef50_UPI0003613F90 hypothetical protein 0.298346112195 0.5 0.201653887805 +UniRef50_UPI000368B7D0 hypothetical protein 0.0700657933267 0.5 0.429934206673 +UniRef50_UPI00034BE6B7 hypothetical protein 0.333027602573 0.5 0.166972397427 +UniRef50_UPI00036CB57D hypothetical protein 3.20409261925 0.5 -2.70409261925 +UniRef50_U5MKL2 DEAD DEAH box helicase 2.85122575894 0.5 -2.35122575894 +UniRef50_O27720 Probable tRNA sulfurtransferase 7.32600938517 0.500000000005 -6.82600938517 +UniRef50_A0A052I467 PF07120 family protein 0.175589846964 0.5 0.324410153036 +UniRef50_Q8YBL2 GMP synthase [glutamine hydrolyzing] 1.35933185944 0.5 -0.859331859443 +UniRef50_P48932 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 0.256599950019 0.5 0.243400049981 +UniRef50_A1B5W0 RNA polymerase sigma factor 1.91212454303 0.499999999999 -1.41212454303 +UniRef50_R5NV67 tRNA dihydrouridine synthase 0.0808279997885 0.499999999999 0.419172000212 +UniRef50_G8UZW2 Glycerophosphoryl diester phosphodiesterase family protein 3.30508896614 0.5 -2.80508896614 +UniRef50_UPI000225BB06 NADH ubiquinone oxidoreductase subunit 0.657156264298 0.5 -0.157156264298 +UniRef50_Q7BHL7 Regulatory protein MsrR 1.50933092606 0.499999999998 -1.00933092606 +UniRef50_U3SRT1 Ribonuclease R 2.22815438572 0.5 -1.72815438572 +UniRef50_UPI0004091E67 enterobactin ABC transporter permease 0.19762470323 0.499999999999 0.30237529677 +UniRef50_UPI00040FC3C0 resolvase 0.0490690627944 0.5 0.450930937206 +UniRef50_Q92G90 Aconitate hydratase 0.0631856246753 0.5 0.436814375325 +UniRef50_Q6A9W5 Probable cytosol aminopeptidase 0.0805685475136 0.5 0.419431452487 +UniRef50_S1SCM6 Short chain dehydrogenase reductase SDR 0.0690161449231 0.5 0.430983855077 +UniRef50_UPI0004560FCC hypothetical protein PFL1_00477 0.0729083105282 0.5 0.427091689472 +UniRef50_UPI0003781D54 hypothetical protein 0.703067314875 0.5 -0.203067314875 +UniRef50_M9V9M5 0.0279696802815 0.5 0.472030319719 +UniRef50_F5XYC9 0.197590145462 0.5 0.302409854538 +UniRef50_UPI00047A219A hypothetical protein 0.373010160902 0.5 0.126989839098 +UniRef50_P0A9V7 0.449955605819 0.5 0.050044394181 +UniRef50_K0R926 0.531652736383 0.5 -0.031652736383 +UniRef50_B9KRR9 0.992737164468 0.5 -0.492737164468 +UniRef50_UPI00036ACC32 hypothetical protein 0.394988408261 0.5 0.105011591739 +UniRef50_B7LBZ3 0.00853536296694 0.5 0.491464637033 +UniRef50_UPI000366BCAE hypothetical protein 0.123686679372 0.5 0.376313320628 +UniRef50_UPI00034FAA06 PREDICTED 0.274508992323 0.5 0.225491007677 +UniRef50_A6M1J6 PolyA polymerase related protein and P loop ATP ase domain 0.405761898862 0.5 0.0942381011378 +UniRef50_UPI0001E2C790 helix turn helix domain containing protein 0.782880504789 0.5 -0.282880504789 +UniRef50_Q9HCC0 Methylcrotonoyl CoA carboxylase beta chain, mitochondrial 0.207391361649 0.5 0.292608638351 +UniRef50_Q9JWM8 Peptide methionine sulfoxide reductase MsrA MsrB 0.0153240085636 0.5 0.484675991436 +UniRef50_UPI000383BA43 PREDICTED 0.0200777546005 0.5 0.479922245399 +UniRef50_G0HC44 Adenylosuccinate lyase 0.0698141966046 0.5 0.430185803396 +UniRef50_A6ZVT8 Cell surface flocculin 0.153317215376 0.5 0.346682784624 +UniRef50_B4SEB2 Short chain dehydrogenase reductase SDR 0.433429203796 0.5 0.0665707962037 +UniRef50_UPI00037E5D09 LuxR family transcriptional regulator 0.490615086097 0.5 0.00938491390346 +UniRef50_A1TWN0 Methionyl tRNA formyltransferase 0.138000068093 0.5 0.361999931907 +UniRef50_B5GNF3 ABC transport system ATP binding protein 0.0484435656379 0.5 0.451556434362 +UniRef50_O75489 NADH dehydrogenase [ubiquinone] iron sulfur protein 3, mitochondrial 0.699161133864 0.5 -0.199161133864 +UniRef50_UPI00046F9A01 hypothetical protein 0.737603511163 0.5 -0.237603511163 +UniRef50_D5AU36 Peptidase, U32 family 0.709514365184 0.5 -0.209514365184 +UniRef50_Q7VFF8 Argininosuccinate lyase 0.433356840075 0.5 0.0666431599252 +UniRef50_Q6A823 0.00263309897355 0.5 0.497366901027 +UniRef50_P13604 NADPH dependent butanol dehydrogenase 0.219912255297 0.5 0.280087744703 +UniRef50_Q6A824 0.429805924439 0.5 0.0701940755607 +UniRef50_UPI00037EF460 hypothetical protein 0.0663240874969 0.500000000001 0.433675912502 +UniRef50_A2RKV6 Homoserine kinase 1.67566096309 0.5 -1.17566096309 +UniRef50_P56176 Bifunctional NADH hydrate repair enzyme Nnr 0.0219761321431 0.5 0.478023867857 +UniRef50_P64804 Cobyrinic acid a,c diamide adenosyltransferase 0.25104510547 0.5 0.24895489453 +UniRef50_D1YLF7 DNA repair protein RadA 0.0185407452864 0.499999999999 0.481459254714 +UniRef50_W7IVE6 1.80165012529 0.5 -1.30165012529 +UniRef50_P0ADT7 Putative acid amine ligase YgiC 4.15571596709 0.500000000003 -3.65571596709 +UniRef50_UPI0003682914 hypothetical protein 0.350067263862 0.5 0.149932736138 +UniRef50_UPI000362C7A0 hypothetical protein 0.939079003738 0.5 -0.439079003738 +UniRef50_X1V7S4 Marine sediment metagenome DNA, contig 0.255546973408 0.5 0.244453026592 +UniRef50_Q73MY1 Phosphopantetheine adenylyltransferase 0.374671421799 0.5 0.125328578201 +UniRef50_UPI000191165B hypothetical protein 0.829873441393 0.5 -0.329873441393 +UniRef50_F0S2L5 0.295028519176 0.5 0.204971480824 +UniRef50_K0HAG9 0.0176577475327 0.5 0.482342252467 +UniRef50_G7LZX4 0.64380837295 0.5 -0.14380837295 +UniRef50_A3PJL4 Invasion associated locus B family protein 3.66016394366 0.500000000002 -3.16016394366 +UniRef50_C5WG19 Phosphomevalonate kinase 11.5397878003 0.499999999996 -11.0397878003 +UniRef50_A3PS67 1.16860592111 0.5 -0.668605921108 +UniRef50_A4WQP0 0.317410258669 0.5 0.182589741331 +UniRef50_A3PKI7 NADH quinone oxidoreductase subunit I 2 10.5776000824 0.49999999999 -10.0776000824 +UniRef50_F2MV72 C4 dicarboxylate binding protein 1.49855938682 0.5 -0.998559386824 +UniRef50_K0J3D5 Transposase 1.7132624815 0.499999999997 -1.2132624815 +UniRef50_Q979P0 7 cyano 7 deazaguanine synthase 0.046982105178 0.5 0.453017894822 +UniRef50_Q5E212 Soluble pyridine nucleotide transhydrogenase 0.259334465021 0.5 0.240665534979 +UniRef50_A5UNU9 Bacteriophage capsid portal protein 0.737879673888 0.5 -0.237879673888 +UniRef50_R0MT59 DNA polymerase III PolC 0.650725393872 0.5 -0.150725393872 +UniRef50_I6CAK2 Inner membrane transport YhjV domain protein 1.67965660787 0.5 -1.17965660787 +UniRef50_T1XSP1 1.67326399422 0.5 -1.17326399422 +UniRef50_A7GJS9 Glutamine amidotransferase subunit PdxT 0.000417833676233 0.5 0.499582166324 +UniRef50_UPI0004641AEF hypothetical protein, partial 0.805846928462 0.5 -0.305846928462 +UniRef50_W5X7V9 Aspartyl glutamyl tRNA amidotransferase subunit B 0.407373333099 0.5 0.0926266669011 +UniRef50_A9MKV9 Hydroxyethylthiazole kinase 3.37166189962 0.5 -2.87166189962 +UniRef50_A0A023Y3W6 Radical SAM protein 1.61726348262 0.5 -1.11726348262 +UniRef50_M9VBI4 Amidohydrolase family protein 0.0049404218663 0.5 0.495059578134 +UniRef50_UPI00036008AF hypothetical protein 3.3065840494 0.499999999997 -2.8065840494 +UniRef50_UPI0003717A52 hypothetical protein 0.76272246958 0.5 -0.26272246958 +UniRef50_A5ULW7 Nitrate sulfonate bicarbonate ABC transporter, ATPase component 1.55800273858 0.500000000001 -1.05800273858 +UniRef50_S9RBB4 Plasmid replication protein RepA 3.37263187796 0.5 -2.87263187796 +UniRef50_UPI0003B7AD31 glycosyl transferase 0.11679380116 0.5 0.38320619884 +UniRef50_V5VEP7 Rhs element Vgr family protein 0.011889346619 0.5 0.48811065338 +UniRef50_F2D1I1 Predicted protein 0.667140586548 0.5 -0.167140586548 +UniRef50_V6QB21 0.298144392911 0.5 0.201855607089 +UniRef50_V2VF38 0.0121964386498 0.5 0.48780356135 +UniRef50_G9EIS6 0.417958377157 0.5 0.0820416228435 +UniRef50_D5WG02 Type VI secretion ATPase, ClpV1 family 0.194721370013 0.5 0.305278629986 +UniRef50_L2SNR0 0.889587927682 0.5 -0.389587927682 +UniRef50_UPI0004007565 16S rRNA methyltransferase 0.229460418153 0.5 0.270539581847 +UniRef50_UPI00037B5A68 hypothetical protein 1.39777721644 0.5 -0.89777721644 +UniRef50_B7KNU7 Peptidyl tRNA hydrolase 1.00738759794 0.5 -0.50738759794 +UniRef50_P25397 Tellurite methyltransferase 2.16857075803 0.500000000002 -1.66857075804 +UniRef50_D5ZH35 Predicted protein 0.00111558321729 0.5 0.498884416783 +UniRef50_P75749 1.74950129301 0.5 -1.24950129301 +UniRef50_A0QV20 Ribonuclease 3 0.169040751889 0.5 0.330959248111 +UniRef50_U8RNG4 0.6067619894 0.5 -0.1067619894 +UniRef50_P75745 1.7517667758 0.5 -1.2517667758 +UniRef50_A8IJ61 Sodium sulphate symporter 0.0122891929871 0.5 0.487710807013 +UniRef50_P05378 Anthranilate synthase component 1 0.000592468740954 0.5 0.499407531259 +UniRef50_UPI0003777559 hypothetical protein 0.350671374524 0.5 0.149328625476 +UniRef50_A3SLT9 1.77565060512 0.5 -1.27565060512 +UniRef50_W4PGX2 0.030377194073 0.5 0.469622805927 +UniRef50_L0DV31 Pirin 0.3809657478 0.5 0.1190342522 +UniRef50_UPI0003A0D931 chemotaxis protein CheY 1.51365747386 0.5 -1.01365747386 +UniRef50_A5UL23 Fe S oxidoreductase 7.56385722829 0.499999999996 -7.06385722829 +UniRef50_UPI00016A2EB9 ABC transporter related protein, partial 1.50874110527 0.5 -1.00874110527 +UniRef50_W0L514 1.2461131034 0.5 -0.746113103399 +UniRef50_A2RIB7 NADH oxidase 0.400251446587 0.5 0.0997485534133 +UniRef50_B7UYN1 3.81286969634 0.5 -3.31286969634 +UniRef50_Q6A6F2 Ubiquinone menaquinone biosynthesis methyltransferase UbiE 0.0189298726886 0.5 0.481070127311 +UniRef50_UPI000360EAB2 MULTISPECIES 0.6180901395 0.5 -0.1180901395 +UniRef50_W9FFV8 0.390699677917 0.5 0.109300322083 +UniRef50_A5UMM1 Predicted metal dependent phosphoesterase, PHP family 2.69054247444 0.500000000001 -2.19054247444 +UniRef50_UPI00047B30F5 hypothetical protein 0.187522096649 0.5 0.312477903351 +UniRef50_V7ENR3 Branched chain amino acid transporter AzlC 1.39837172462 0.499999999999 -0.898371724617 +UniRef50_G7LXS1 Prophage antirepressor 0.158773431501 0.5 0.341226568499 +UniRef50_D6UB35 0.360964055939 0.5 0.139035944061 +UniRef50_U5NEG6 Type I restriction enzyme subunit M 0.935419380015 0.5 -0.435419380015 +UniRef50_UPI00042B88CF Phosphoenolpyruvate carboxylase family protein isoform 3 0.337567032973 0.5 0.162432967027 +UniRef50_I0EYG5 Adenine specific DNA methylase 0.00520803926737 0.5 0.494791960733 +UniRef50_Q6MSN9 30S ribosomal protein S8 0.16985027491 0.5 0.33014972509 +UniRef50_Q5HM58 1.11866026776 0.5 -0.618660267757 +UniRef50_W1AUZ6 Exonuclease SbcC 0.521428670567 0.5 -0.0214286705668 +UniRef50_G0DUX4 Phosphoesterase family protein 0.0218042198206 0.5 0.47819578018 +UniRef50_Q8XK20 Putative ABC transporter ATP binding protein CPE1583 0.0101228664624 0.5 0.489877133538 +UniRef50_R9SKG8 3.24577090518 0.499999999999 -2.74577090518 +UniRef50_E6REC8 1.4541842932 0.5 -0.9541842932 +UniRef50_UPI00046CC73E PREDICTED 1.08673228349 0.5 -0.58673228349 +UniRef50_C4J675 0.0675654940659 0.5 0.432434505934 +UniRef50_Q163E0 AzlC family protein 1.93127061859 0.5 -1.43127061859 +UniRef50_Q1GGE3 NADH dehydrogenase 7.03873371378 0.499999999996 -6.53873371378 +UniRef50_C5BMG6 Probable cytosol aminopeptidase 0.0191329020641 0.5 0.480867097936 +UniRef50_Q83EH9 ATP dependent 6 phosphofructokinase 1.07302931948 0.5 -0.573029319484 +UniRef50_UPI0002EF2687 hypothetical protein 0.106516746166 0.5 0.393483253834 +UniRef50_A5VLG3 Glutamyl tRNA amidotransferase subunit A 2.81657613445 0.5 -2.31657613445 +UniRef50_Q8XHR6 50S ribosomal protein L10 0.126415663604 0.5 0.373584336396 +UniRef50_Q3J376 Phosphate import ATP binding protein PstB 1.02245874111 0.5 -0.522458741112 +UniRef50_A0A058ZJ58 0.770879590281 0.5 -0.270879590281 +UniRef50_UPI00046FA64C RNA helicase, partial 0.128910310548 0.5 0.371089689452 +UniRef50_UPI0003B55A40 PREDICTED 1.10382870193 0.5 -0.603828701932 +UniRef50_Q7ME63 Molybdenum import ATP binding protein ModC 1.22548503907 0.499999999999 -0.725485039072 +UniRef50_UPI0002556A08 signaling repeat GGDEF domain EAL domain containing protein 4.3907583224 0.500000000003 -3.89075832241 +UniRef50_A3M261 0.0538664069053 0.5 0.446133593095 +UniRef50_P30845 Phosphoethanolamine transferase EptA 1.7494161402 0.500000000002 -1.2494161402 +UniRef50_P0A324 Catalase 1.35360965724 0.5 -0.853609657236 +UniRef50_A0A022GVC0 Transcriptional regulator 2.22935104346 0.500000000002 -1.72935104346 +UniRef50_R7PY13 Trk type potassium transport system membrane component TrkH 1.71558288476 0.499999999998 -1.21558288476 +UniRef50_O11346 H1 41 protein 2.59956093057 0.499999999998 -2.09956093056 +UniRef50_UPI00047B8E24 ABC transporter ATP binding protein 1.91642312737 0.5 -1.41642312737 +UniRef50_UPI0003B50756 ABC transporter permease 0.863940325953 0.5 -0.363940325953 +UniRef50_UPI0003B32B2D glutathione ABC transporter ATP binding protein 0.532186332379 0.5 -0.0321863323787 +UniRef50_UPI00037FBEE1 hypothetical protein 0.289701328791 0.5 0.210298671209 +UniRef50_A8EV23 Chaperone protein HtpG 0.0133594482008 0.5 0.486640551799 +UniRef50_UPI00042B67B1 Serine hydroxymethyltransferase 6 isoform 2 0.0159884633966 0.5 0.484011536604 +UniRef50_W5XBV9 Cyclic nucleotide binding protein 0.300362204746 0.5 0.199637795254 +UniRef50_W5XBZ4 PAS domain protein 0.241507974992 0.5 0.258492025008 +UniRef50_UPI00039CC563 hypothetical protein 2.76154918153 0.499999999998 -2.26154918153 +UniRef50_T0N5V1 0.293616621982 0.5 0.206383378018 +UniRef50_UPI0003728055 hypothetical protein 0.568451823137 0.5 -0.0684518231366 +UniRef50_Q4L967 Putative acetyltransferase SH0499 1.06095747614 0.5 -0.560957476144 +UniRef50_UPI0003783400 hypothetical protein 0.246695536985 0.5 0.253304463015 +UniRef50_UPI00034B61C2 hypothetical protein 0.122227595734 0.5 0.377772404266 +UniRef50_Q9RYC2 Aminotransferase, putative 0.00108509991404 0.5 0.498914900086 +UniRef50_A5UJP7 Chaperonin , alpha subunit 0.839873304329 0.5 -0.339873304329 +UniRef50_UPI00021A5DF1 PREDICTED 0.844270764384 0.5 -0.344270764384 +UniRef50_I0GMV1 Electron transport complex subunit C 0.166137525694 0.5 0.333862474307 +UniRef50_UPI0003B4DBF3 acyl CoA dehydrogenase 0.0329567138102 0.5 0.46704328619 +UniRef50_P58579 Glutathione synthetase 0.183076800827 0.5 0.316923199173 +UniRef50_UPI00036DBC6E hypothetical protein 0.165559942293 0.5 0.334440057707 +UniRef50_P40709 Inner membrane protein YejM 15.4257426457 0.500000000006 -14.9257426457 +UniRef50_UPI00037AA69B hypothetical protein 0.309141950429 0.5 0.190858049571 +UniRef50_A8I6E1 Lysyl tRNA synthetase protein 0.922084671391 0.5 -0.422084671391 +UniRef50_A3CN89 Orotidine 5 phosphate decarboxylase 4.62798640366 0.500000000003 -4.12798640366 +UniRef50_UPI00036637FB MULTISPECIES 0.26297356486 0.5 0.23702643514 +UniRef50_G8QQL0 Succinate dehydrogenase fumarate reductase flavoprotein subunit 0.261833621633 0.5 0.238166378367 +UniRef50_Q89AR7 Superoxide dismutase [Mn] 0.189046642229 0.5 0.310953357771 +UniRef50_UPI00037AA28C hypothetical protein 0.68701659125 0.5 -0.18701659125 +UniRef50_G4LD57 AraC family transcriptional regulator 0.548563143393 0.5 -0.0485631433934 +UniRef50_UPI000375BAEA hypothetical protein 1.90734845384 0.5 -1.40734845384 +UniRef50_UPI0003711312 hypothetical protein 0.0194639553466 0.500000000001 0.480536044653 +UniRef50_Q8ZDL2 NADH quinone oxidoreductase subunit G 3.88248414803 0.500000000001 -3.38248414803 +UniRef50_UPI00034B27B9 FAD binding molybdopterin dehydrogenase 0.111614318313 0.5 0.388385681687 +UniRef50_Q5HPQ8 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 1.08957217732 0.5 -0.589572177319 +UniRef50_UPI00035C36B2 hypothetical protein 1.49210562771 0.5 -0.992105627714 +UniRef50_B3G2P1 0.640489828035 0.5 -0.140489828035 +UniRef50_D8JKW7 TetR family regulatory protein 0.0109413874074 0.5 0.489058612593 +UniRef50_UPI00034922BA hypothetical protein 0.0780589492934 0.5 0.421941050707 +UniRef50_M9VD27 Hydrolase, alpha beta domain protein 0.00944035665623 0.5 0.490559643344 +UniRef50_U6AJ35 Pyocin protein 0.847660603874 0.5 -0.347660603874 +UniRef50_B7MI93 Acetylornithine deacetylase 3.70426902457 0.500000000003 -3.20426902457 +UniRef50_M3Z5Z5 0.768840632329 0.5 -0.268840632329 +UniRef50_A3DGK6 Acetylglutamate kinase 11.1806801809 0.499999999997 -10.6806801809 +UniRef50_K8DMU1 Maltose phosphorylase Trehalose phosphorylase 0.461797833542 0.5 0.0382021664576 +UniRef50_C4ZLQ1 BolA family protein 0.313674415344 0.5 0.186325584656 +UniRef50_U5ACU4 ABC transporter 15.6732417815 0.499999999996 -15.1732417815 +UniRef50_A5UMN0 Glutamyl tRNA amidotransferase subunit A 4.39412118009 0.500000000001 -3.89412118009 +UniRef50_A3UFL0 GAF sensor diguanylate cyclase 0.234186966963 0.5 0.265813033037 +UniRef50_F5TJT7 0.05153546936 0.5 0.44846453064 +UniRef50_B5Y8G1 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.725528847587 0.5 -0.225528847587 +UniRef50_UPI0003737153 hypothetical protein 0.149012036641 0.5 0.350987963359 +UniRef50_B7MVN0 0.344009064482 0.5 0.155990935518 +UniRef50_Q7VI99 Arginine tRNA ligase 0.0177225311024 0.5 0.482277468898 +UniRef50_D3QAH6 0.457887074639 0.5 0.0421129253613 +UniRef50_P0AE89 Transcriptional regulatory protein CpxR 0.732967633757 0.5 -0.232967633757 +UniRef50_E6RH94 0.465045037228 0.5 0.0349549627725 +UniRef50_B5HHN6 Regulatory protein 0.043340449742 0.5 0.456659550258 +UniRef50_UPI0002657849 PREDICTED 0.486708906633 0.5 0.013291093367 +UniRef50_A7MKJ4 1.2072095812 0.5 -0.7072095812 +UniRef50_D3QET5 4.92482993527 0.5 -4.42482993527 +UniRef50_UPI000317D125 hypothetical protein 0.814087934101 0.5 -0.314087934101 +UniRef50_X1FS40 Marine sediment metagenome DNA, contig 0.0503898856032 0.5 0.449610114397 +UniRef50_A1B573 Allergen V5 Tpx 1 family protein 1.9036573057 0.5 -1.4036573057 +UniRef50_Q3IYX7 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 2.82879451146 0.500000000001 -2.32879451146 +UniRef50_UPI00036A7D45 MULTISPECIES 0.36357645514 0.5 0.13642354486 +UniRef50_T9LFH4 Toxin YeeV 0.185092061837 0.500000000001 0.314907938162 +UniRef50_P0ADW3 Inner membrane protein YhcB 18.5405788449 0.499999999987 -18.0405788448 +UniRef50_R5VVL9 4.30856769232 0.5 -3.80856769232 +UniRef50_Q9JUC8 Lipoyl synthase 0.486330882546 0.5 0.0136691174536 +UniRef50_UPI00017450C8 tetratricopeptide repeat protein kinase domain protein 0.0149460340298 0.5 0.48505396597 +UniRef50_P76508 0.697092946619 0.5 -0.197092946619 +UniRef50_E3DRH8 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.281518055274 0.5 0.218481944726 +UniRef50_C0QI21 N acetyl gamma glutamyl phosphate reductase 0.361758895317 0.5 0.138241104683 +UniRef50_K1JLF6 1.64926933957 0.499999999999 -1.14926933957 +UniRef50_P76507 1.49635185786 0.5 -0.996351857856 +UniRef50_Q115Z7 Holliday junction ATP dependent DNA helicase RuvB 0.514011306398 0.5 -0.0140113063985 +UniRef50_K1E5L6 Coagulation factor 5 8 type domain containing protein 0.150593454021 0.5 0.349406545979 +UniRef50_A6M156 0.201016099319 0.5 0.298983900682 +UniRef50_I3TGS2 2.46161917345 0.500000000002 -1.96161917345 +UniRef50_B6AXL4 1.43874474733 0.500000000001 -0.938744747335 +UniRef50_Q07LR9 NLPA lipoprotein 1.42003571665 0.5 -0.920035716648 +UniRef50_M4TWI8 Response regulator 0.31835985585 0.5 0.18164014415 +UniRef50_S5S5I1 Alcohol dehydrogenase iron type protein 2.71079009378 0.5 -2.21079009378 +UniRef50_UPI00030FA7EB hypothetical protein 0.401683268775 0.5 0.0983167312247 +UniRef50_R4NJ09 Alpha L Rha alpha 1,3 L rhamnosyltransferase 2.22648121618 0.5 -1.72648121618 +UniRef50_L9FSE1 Transposase IS66 family protein 0.434297545712 0.5 0.0657024542884 +UniRef50_A8LR58 41.3732291909 0.499999999978 -40.8732291909 +UniRef50_UPI000380D395 hypothetical protein, partial 1.83205852798 0.499999999999 -1.33205852798 +UniRef50_R4X9Z7 Glutamate dehydrogenase 0.00952646308128 0.5 0.490473536919 +UniRef50_UPI000478F011 hypothetical protein 0.14609352473 0.5 0.35390647527 +UniRef50_I4XXI7 Malonate transporter, MadM subunit 0.03170689729 0.5 0.46829310271 +UniRef50_Q667I7 Bifunctional uridylyltransferase uridylyl removing enzyme 2.10896175447 0.500000000002 -1.60896175447 +UniRef50_UPI00041C4BFA manganese ABC transporter substrate binding protein 0.0499574575467 0.5 0.450042542453 +UniRef50_Q0TMJ7 Amidohydrolase homolog 0.0356321750739 0.5 0.464367824926 +UniRef50_Q2YLX5 Peptidyl tRNA hydrolase 1.51726827082 0.500000000001 -1.01726827082 +UniRef50_W1BF78 Dipeptide transport system permease protein DppB 0.311356840637 0.5 0.188643159363 +UniRef50_L6WUR9 Lipoprotein 0.142763704951 0.5 0.357236295049 +UniRef50_UPI00031F8523 V type sodium ATP synthase subunit J 3.29742068367 0.499999999998 -2.79742068367 +UniRef50_Q8XA44 tRNA specific adenosine deaminase 0.109987720259 0.5 0.390012279741 +UniRef50_A6W2Y7 Monosaccharide transporting ATPase 2.3632791115 0.5 -1.8632791115 +UniRef50_UPI00035DAB5C transposase ISM1, partial 0.642131856973 0.5 -0.142131856973 +UniRef50_B3PH29 Anhydrase, family 3 protein 0.227152412051 0.5 0.272847587949 +UniRef50_UPI00046594C3 hypothetical protein 0.921545412526 0.5 -0.421545412526 +UniRef50_UPI00036E4560 hypothetical protein, partial 0.547642605264 0.5 -0.0476426052645 +UniRef50_Q8EB10 Sulfate adenylyltransferase subunit 1 0.206996325364 0.5 0.293003674636 +UniRef50_A7MQT1 0.144474688444 0.5 0.355525311556 +UniRef50_W0FVK3 NAD dependent dehydrogenase 0.484701717074 0.5 0.0152982829261 +UniRef50_Q9Z3R8 Probable alpha glucosidase 0.933475257745 0.5 -0.433475257745 +UniRef50_A6VB08 Lipoprotein, putative 0.457595204835 0.5 0.042404795165 +UniRef50_A6M2Z6 Transketolase, central region 0.038713183506 0.5 0.461286816494 +UniRef50_Q72VJ3 0.823998436283 0.5 -0.323998436283 +UniRef50_UPI00036DBF3B hypothetical protein 0.925607998125 0.5 -0.425607998125 +UniRef50_E2Q4F7 TT_ORF1 domain containing protein 0.197709818129 0.5 0.302290181871 +UniRef50_U2ENE3 Periplasmic binding protein 0.049301492015 0.5 0.450698507985 +UniRef50_P28630 DNA polymerase III subunit delta 0.83222230535 0.5 -0.33222230535 +UniRef50_R4RC10 Isopenicillin N epimerase CefD 0.647659417223 0.5 -0.147659417223 +UniRef50_UPI0003B76D70 adenylylsulfate kinase 0.0217122300192 0.5 0.478287769981 +UniRef50_D6ZZA5 Peptidoglycan binding domain 1 protein 2.77872764483 0.5 -2.27872764483 +UniRef50_A7X6Z3 Oxygen dependent choline dehydrogenase 1.53863131571 0.499999999999 -1.03863131571 +UniRef50_F5YQ07 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.472650131184 0.5 0.0273498688165 +UniRef50_D3HD08 2.1926755818 0.5 -1.6926755818 +UniRef50_UPI00028A32C2 helix turn helix domain containing protein 0.831492016408 0.5 -0.331492016408 +UniRef50_Q8QNC0 EsV 1 162 0.302010085668 0.5 0.197989914332 +UniRef50_T0QKP7 0.858556524531 0.5 -0.358556524531 +UniRef50_O52618 Nod factor export ATP binding protein I 0.110902295541 0.5 0.389097704459 +UniRef50_T2ELK1 Sulfotransferase family protein 0.899860998848 0.5 -0.399860998848 +UniRef50_I2E190 IS5 family transposase 0.654245551308 0.5 -0.154245551308 +UniRef50_Q9RV93 0.00729427767258 0.5 0.492705722327 +UniRef50_UPI000467A336 glutamate synthase, partial 4.51142504907 0.500000000002 -4.01142504907 +UniRef50_UPI0003B755FD sugar ABC transporter permease 0.640158596098 0.5 -0.140158596098 +UniRef50_UPI00047BD144 hypothetical protein 0.314833925555 0.5 0.185166074445 +UniRef50_A8IEI6 Adenine phosphoribosyltransferase 0.475577616502 0.5 0.0244223834975 +UniRef50_Q7UZP0 Lysine tRNA ligase 0.358749272866 0.5 0.141250727134 +UniRef50_W7X3Q1 Fasciclin domain protein 2.10002514358 0.5 -1.60002514358 +UniRef50_Q84F59 2.05629654003 0.499999999998 -1.55629654003 +UniRef50_Q0WLU6 NADH dehydrogenase subunit 4 0.502385700745 0.5 -0.00238570074499 +UniRef50_UPI00044341F7 PREDICTED 0.989484728409 0.5 -0.489484728409 +UniRef50_A6LZ49 Transcriptional regulator, LysR family 0.31371703374 0.5 0.18628296626 +UniRef50_UPI000371865D hypothetical protein 0.0323622224177 0.499999999999 0.467637777583 +UniRef50_UPI000479EF00 hypothetical protein 0.516830497627 0.5 -0.0168304976265 +UniRef50_L7WU99 CapB protein 1.42465532169 0.5 -0.924655321688 +UniRef50_B2V6Y7 Argininosuccinate lyase 0.768037543183 0.5 -0.268037543183 +UniRef50_Q4L350 Transposase for IS1272 0.835717582992 0.5 -0.335717582992 +UniRef50_P22350 Pyrroline 5 carboxylate reductase 1.94960090349 0.500000000002 -1.44960090349 +UniRef50_F2DQI0 Predicted protein 0.297893965738 0.5 0.202106034262 +UniRef50_Q9RUB4 0.00569050410044 0.5 0.494309495899 +UniRef50_S5YGA2 1.36530849731 0.500000000001 -0.86530849731 +UniRef50_G4R4C9 0.693376055217 0.5 -0.193376055217 +UniRef50_UPI00040657AE hypothetical protein 0.0590059291653 0.5 0.440994070835 +UniRef50_R5HYR6 0.327855832098 0.5 0.172144167902 +UniRef50_P0AET9 7 alpha hydroxysteroid dehydrogenase 0.870234560819 0.5 -0.370234560819 +UniRef50_I6T5H3 1.71101656897 0.5 -1.21101656897 +UniRef50_F8LGT0 Transcriptional regulator, DeoR family 2.9904257787 0.5 -2.4904257787 +UniRef50_D0FNY6 0.452689778068 0.5 0.0473102219319 +UniRef50_UPI0004637F8D hypothetical protein 0.0365774457013 0.5 0.463422554299 +UniRef50_G5KUR8 Mg chelatase like protein 0.286517744513 0.5 0.213482255487 +UniRef50_W8ERS2 Histidine kinase 0.0102639053467 0.5 0.489736094653 +UniRef50_D4HF76 Transglycosylase 0.00771824979355 0.5 0.492281750206 +UniRef50_N0B0S7 PspA IM30 0.062248309336 0.5 0.437751690664 +UniRef50_O29399 tRNA splicing ligase RtcB 2.73575058821 0.5 -2.23575058821 +UniRef50_UPI000225AE96 prolipoprotein diacylglyceryl transferase 0.621163991747 0.5 -0.121163991747 +UniRef50_Q1GDV2 DNA topoisomerase 4 subunit A 2.5194817019 0.5 -2.0194817019 +UniRef50_Q58595 2 isopropylmalate synthase 1.38650731333 0.5 -0.886507313334 +UniRef50_J7R5F6 1.67030686605 0.5 -1.17030686605 +UniRef50_UPI0004665B0F hypothetical protein 0.37601050621 0.5 0.12398949379 +UniRef50_Q5F6F8 0.141196099026 0.500000000001 0.358803900973 +UniRef50_UPI0004246E9D hypothetical protein 0.0376452384703 0.5 0.46235476153 +UniRef50_UPI00042410AD 50S ribosomal protein L18 1.92573008844 0.5 -1.42573008844 +UniRef50_B9KWX6 1.12857397615 0.5 -0.628573976149 +UniRef50_Q91ZA3 Propionyl CoA carboxylase alpha chain, mitochondrial 1.36382151646 0.5 -0.863821516459 +UniRef50_P14853 Cytochrome c oxidase subunit 3 1.19545906004 0.5 -0.695459060045 +UniRef50_A0A028VK75 ATPase 0.885215380231 0.5 -0.385215380231 +UniRef50_Q8REG7 Phosphonates import ATP binding protein PhnC 0.733408320199 0.5 -0.233408320199 +UniRef50_A3PM78 Haloacid dehalogenase domain protein hydrolase 2.0099923987 0.499999999998 -1.50999239869 +UniRef50_B1KTX4 0.704979486863 0.5 -0.204979486863 +UniRef50_UPI00026306BC gluconate transporter 0.238267384305 0.5 0.261732615695 +UniRef50_D8TM72 0.0536884193668 0.499999999999 0.446311580634 +UniRef50_D6XXB5 TRAP transporter solute receptor, TAXI family 0.343360135016 0.5 0.156639864984 +UniRef50_S5SY81 WGR domain containing protein 0.425450301208 0.5 0.0745496987919 +UniRef50_K9H593 Chromosomal replication initiator protein DnaA 3.174236338 0.5 -2.674236338 +UniRef50_B5FN15 Multidrug resistance protein MdtL 0.909102349585 0.5 -0.409102349585 +UniRef50_B1I3M7 Sulfate adenylyltransferase 1.66602298324 0.5 -1.16602298324 +UniRef50_UPI0002891CEE hypothetical protein 0.199831575532 0.5 0.300168424468 +UniRef50_A1JJF7 LPS assembly protein LptD 3.69480997975 0.499999999999 -3.19480997974 +UniRef50_UPI0003B5E20B ABC transporter permease 0.0188211222124 0.5 0.481178877788 +UniRef50_UPI0003506E3F 0.0077647522343 0.5 0.492235247766 +UniRef50_B0RWV1 0.937035382701 0.5 -0.437035382701 +UniRef50_Q8DQD2 ADP dependent NAD(P)H hydrate dehydratase 0.584649078421 0.5 -0.0846490784214 +UniRef50_J7QYC7 1.54017310595 0.500000000002 -1.04017310595 +UniRef50_G5QFD3 Potassium transporting ATPase B chain 0.0022550885786 0.5 0.497744911421 +UniRef50_B2TQK8 Amino acid ABC transporter, amino acid binding permease protein 0.135560618831 0.5 0.364439381169 +UniRef50_P39315 Quinone oxidoreductase 2 0.0555698715927 0.5 0.444430128407 +UniRef50_J1HLJ2 PF06224 family protein 0.0043790050074 0.500000000001 0.495620994992 +UniRef50_UPI000443234B PREDICTED 0.038205828574 0.5 0.461794171426 +UniRef50_Q4FR51 Lon protease 0.00890550485036 0.5 0.49109449515 +UniRef50_UPI00035C8CB7 hypothetical protein 0.095957681167 0.5 0.404042318833 +UniRef50_P42593 2,4 dienoyl CoA reductase [NADPH] 1.90093332545 0.500000000001 -1.40093332545 +UniRef50_UPI00035C6B06 hypothetical protein, partial 4.12150174629 0.499999999999 -3.62150174629 +UniRef50_P77569 Mhp operon transcriptional activator 0.615564502064 0.5 -0.115564502064 +UniRef50_Q3IUW5 Type IV conjugative transfer system lipoprotein 2.15150955535 0.5 -1.65150955535 +UniRef50_E4CEH2 0.200265670317 0.5 0.299734329683 +UniRef50_UPI000472C3D3 hypothetical protein 0.918721300069 0.5 -0.418721300069 +UniRef50_G8V705 Poly glycerophosphotransferase family protein 1.41508688667 0.5 -0.915086886668 +UniRef50_P96672 UPF0750 membrane protein YdeO 1.27777885398 0.5 -0.777778853978 +UniRef50_W9A418 0.260260154422 0.5 0.239739845578 +UniRef50_Q0C269 Transcriptional regulator, LysR family 3.67227468084 0.499999999999 -3.17227468084 +UniRef50_W5X6C6 NADP oxidoreductase coenzyme F420 dependent 0.264985747558 0.5 0.235014252442 +UniRef50_P0AGI3 Ribose transport system permease protein RbsC 1.19637309523 0.5 -0.696373095228 +UniRef50_B3M6C2 GF24314 0.0407104479302 0.5 0.45928955207 +UniRef50_T2ESK7 Integrase core domain protein 0.450247645434 0.5 0.0497523545664 +UniRef50_Q59939 Citrate synthase 0.864292260541 0.5 -0.364292260541 +UniRef50_UPI00036F2872 hypothetical protein 0.146116033704 0.500000000001 0.353883966295 +UniRef50_A8LU90 WGR domain protein 2.31450032658 0.499999999999 -1.81450032658 +UniRef50_W4KZV0 Glycosyltransferase Gtf1 1.60561807243 0.5 -1.10561807243 +UniRef50_UPI0003074063 hypothetical protein 0.00758125194761 0.5 0.492418748052 +UniRef50_P71082 Putative multidrug export ATP binding permease protein YgaD 1.61723195501 0.5 -1.11723195501 +UniRef50_A5WHZ1 Flavoprotein involved in K+ transport like protein 0.00218225159462 0.5 0.497817748405 +UniRef50_UPI0003C116D2 10.4175036296 0.499999999998 -9.91750362959 +UniRef50_Q8CN53 Antiholin like protein LrgB 11.5522331885 0.50000000001 -11.0522331885 +UniRef50_Q02432 Chlorophyllide reductase 52.5 kDa chain 2.28030351746 0.5 -1.78030351746 +UniRef50_A7ZII5 Protoheme IX farnesyltransferase 4.6284939924 0.500000000001 -4.1284939924 +UniRef50_UPI0004688FC2 cytochrome C biogenesis protein 0.178199662932 0.5 0.321800337068 +UniRef50_Q2P0E2 ISXoo4 transposase 0.136882960478 0.499999999999 0.363117039523 +UniRef50_G7U8S7 Siderophore interacting protein 0.0150789666862 0.5 0.484921033314 +UniRef50_D7BMW7 Portal protein 0.0630833502316 0.5 0.436916649769 +UniRef50_UPI0004754826 hypothetical protein 0.380710424558 0.5 0.119289575442 +UniRef50_D3QH70 0.790620807916 0.5 -0.290620807916 +UniRef50_UPI0004707087 amino acid ABC transporter permease 0.508221521675 0.5 -0.00822152167483 +UniRef50_A5WH07 UPF0313 protein PsycPRwf_2008 0.00345587713284 0.5 0.496544122867 +UniRef50_H7CWQ5 ABC transporter, permease ATP binding protein 0.0415627761331 0.5 0.458437223867 +UniRef50_N0B4L4 40 residue YVTN family beta propeller repeat protein 4.85651948 0.500000000001 -4.35651948001 +UniRef50_Q5V468 Succinyl CoA 0.0513430075181 0.5 0.448656992482 +UniRef50_Q12545 3 isopropylmalate dehydrogenase 0.60098636595 0.5 -0.10098636595 +UniRef50_F8DJT3 Phosphorylase family 7.89820769507 0.500000000017 -7.39820769509 +UniRef50_Q044B7 Translation initiation factor IF 2 3.05049275867 0.5 -2.55049275867 +UniRef50_F0P650 Ribonuclease BN like family protein 1.30013597553 0.499999999999 -0.800135975529 +UniRef50_K0B0P3 0.653395834509 0.5 -0.153395834509 +UniRef50_E6CDL3 0.185894536228 0.5 0.314105463772 +UniRef50_K7S3L7 Putative glucoamylase S1 S2 0.342080283771 0.5 0.157919716229 +UniRef50_UPI000410322D hypothetical protein 0.108437288272 0.5 0.391562711728 +UniRef50_C4LJY7 Glutamate racemase 0.0788197378838 0.5 0.421180262116 +UniRef50_UPI00026292D1 oligopeptide dipeptide ABC transporter ATPase, partial 0.162857759191 0.5 0.337142240809 +UniRef50_H4BLQ2 Pyrimidine specific ribonucleoside hydrolase rihA 2.81304307652 0.500000000002 -2.31304307653 +UniRef50_P0AEJ1 Multidrug export protein EmrB 0.400750311132 0.5 0.0992496888679 +UniRef50_UPI0000056230 50S ribosomal protein L22 0.177579971551 0.5 0.322420028449 +UniRef50_P0AFK8 Spermidine putrescine transport system permease protein PotC 3.71293613624 0.500000000001 -3.21293613624 +UniRef50_U1F6C3 Adhesion protein associated protein 0.0437110840129 0.5 0.456288915987 +UniRef50_UPI00026291F3 3 5 exonuclease 1.07369727916 0.5 -0.573697279161 +UniRef50_UPI0002D58150 hypothetical protein 1.27824123176 0.5 -0.778241231761 +UniRef50_F0MXQ2 Type IV pilus assembly protein PilC 0.0337335696646 0.5 0.466266430335 +UniRef50_Q9ZKM0 Putative 0.0166793984004 0.5 0.483320601599 +UniRef50_K8E4E7 Metallo beta lactamase superfamily protein 3.68300957167 0.5 -3.18300957167 +UniRef50_F0KHD0 0.734484843722 0.5 -0.234484843722 +UniRef50_V4ZPA3 0.35135556704 0.5 0.14864443296 +UniRef50_C2VC63 Fructose bisphosphate aldolase, class II 0.27485750552 0.5 0.22514249448 +UniRef50_UPI00041FD2D5 hypothetical protein 0.149773085345 0.5 0.350226914655 +UniRef50_UPI00034AB6AD ABC transporter 0.0422896573961 0.5 0.457710342604 +UniRef50_UPI0004706166 fusaric acid resistance protein, partial 0.0467793280328 0.5 0.453220671967 +UniRef50_P44940 Putative acid amine ligase HI_0929 0.00614680745555 0.5 0.493853192544 +UniRef50_Q54E41 Hydroxyacid oxidase 0.0497104682718 0.5 0.450289531728 +UniRef50_UPI0002D41DEC protoheme IX farnesyltransferase 0.282261960297 0.5 0.217738039703 +UniRef50_UPI0004757165 phosphate acetyltransferase 0.136190346967 0.500000000001 0.363809653032 +UniRef50_K2EIZ6 2.02112469248 0.5 -1.52112469248 +UniRef50_A3PJ18 UDP glucose pyrophosphorylase 3.55865216585 0.500000000001 -3.05865216585 +UniRef50_A0A024DE18 Pyruvate dehydrogenase 0.497501686253 0.5 0.00249831374663 +UniRef50_G7U623 Major facilitator superfamily permease 0.0357561807949 0.5 0.464243819205 +UniRef50_UPI000373646F hypothetical protein 3.66256486629 0.5 -3.16256486629 +UniRef50_UPI000350E784 0.339847566187 0.5 0.160152433813 +UniRef50_P0A9U1 1.60434154642 0.5 -1.10434154642 +UniRef50_UPI000476EE69 ArsR family transcriptional regulator 1.35085120977 0.5 -0.850851209765 +UniRef50_P0A9U5 0.419510568617 0.5 0.0804894313832 +UniRef50_Q5KWI5 Ribonuclease PH 0.0104931331972 0.499999999999 0.489506866803 +UniRef50_T0JW92 0.523521023766 0.5 -0.0235210237656 +UniRef50_UPI000378D30F hypothetical protein 1.68156893677 0.5 -1.18156893677 +UniRef50_Q58989 Phosphoserine phosphatase 0.269506908511 0.5 0.230493091489 +UniRef50_B8KMG5 Transposase, IS4 family protein 0.890464584287 0.5 -0.390464584287 +UniRef50_S1EIE9 0.188614995095 0.5 0.311385004905 +UniRef50_UPI00031BB00E hypothetical protein 0.323360793747 0.5 0.176639206253 +UniRef50_C0PC97 2.83462238578 0.5 -2.33462238578 +UniRef50_P42799 Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic 1.84563029956 0.5 -1.34563029956 +UniRef50_Q5HPM8 Surface lipoprotein related protein 4.26917552053 0.500000000001 -3.76917552053 +UniRef50_A6M2Q9 Helicase, putative 0.122151461191 0.5 0.377848538809 +UniRef50_P77427 0.923745988274 0.5 -0.423745988274 +UniRef50_X5WUC6 0.170333472925 0.5 0.329666527075 +UniRef50_C5QZ07 6.79959503011 0.49999999999 -6.2995950301 +UniRef50_Q4LC37 TraU protein 2.13137242953 0.499999999998 -1.63137242953 +UniRef50_M0SF49 0.0552441176511 0.5 0.444755882349 +UniRef50_UPI00046CC98D hypothetical protein 0.717357392716 0.5 -0.217357392716 +UniRef50_A3PIL0 TonB dependent receptor 0.978861582597 0.5 -0.478861582597 +UniRef50_R8A8K0 3.19698454163 0.499999999998 -2.69698454162 +UniRef50_UPI0003C1AE3D PREDICTED 0.558405354583 0.5 -0.0584053545834 +UniRef50_A9MJT7 Membrane protein insertase YidC 1.26376391319 0.5 -0.763763913191 +UniRef50_M9VCF0 Dolichyl phosphate mannose protein mannosyltransferase 0.0102360542393 0.5 0.489763945761 +UniRef50_W8YLC5 0.07485770008 0.500000000001 0.425142299919 +UniRef50_UPI0002375397 NAD dependent dehydratase 0.122881275016 0.5 0.377118724984 +UniRef50_F0YP70 0.471382844886 0.5 0.0286171551138 +UniRef50_A6LVH3 Methyl accepting chemotaxis sensory transducer 0.104074921881 0.499999999999 0.39592507812 +UniRef50_P23482 Hydrogenase 4 component B 1.61912699158 0.5 -1.11912699158 +UniRef50_F0Y482 Expressed protein 0.284735580319 0.5 0.215264419681 +UniRef50_C4Z7U3 Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase 0.213947878043 0.5 0.286052121957 +UniRef50_O74942 Peptidyl prolyl cis trans isomerase 9 0.48289147984 0.5 0.0171085201601 +UniRef50_W6RRV7 Magnesium transporter, CorA family 0.798354320048 0.5 -0.298354320048 +UniRef50_O33952 UDP glucose 6 dehydrogenase 0.310135715178 0.5 0.189864284822 +UniRef50_UPI000392EF25 PREDICTED 0.0823568335771 0.5 0.417643166423 +UniRef50_H8GU00 Peptidyl prolyl cis trans isomerase 0.00416702167461 0.5 0.495832978325 +UniRef50_UPI0004700EA0 urocanate hydratase, partial 0.353453464306 0.5 0.146546535694 +UniRef50_G7MD42 PHP domain protein 0.0653550868489 0.499999999999 0.434644913152 +UniRef50_R4ZPM4 Cell wall surface anchor family protein 3.37507401695 0.5 -2.87507401695 +UniRef50_Q17VD8 Complete genome, strain Sheeba 0.010380232024 0.5 0.489619767976 +UniRef50_U0FZ44 1.22407810388 0.5 -0.724078103878 +UniRef50_C6SMN5 0.0351211813921 0.5 0.464878818608 +UniRef50_I4EB03 0.635023688592 0.5 -0.135023688592 +UniRef50_UPI0003000992 hypothetical protein 0.624284960501 0.5 -0.124284960501 +UniRef50_P37630 Inner membrane protein YhiM 1.08844462134 0.5 -0.588444621343 +UniRef50_P62457 Histidinol dehydrogenase 0.340583916581 0.5 0.159416083419 +UniRef50_A3DIZ5 DNA directed RNA polymerase subunit beta 0.41293183932 0.5 0.0870681606799 +UniRef50_UPI000479E680 FIST domain containing protein 0.338324833297 0.5 0.161675166703 +UniRef50_E9CGB4 Acyl CoA dehydrogenase 0.028777396094 0.5 0.471222603906 +UniRef50_P18949 Cystathionine beta lyase 0.903667545907 0.5 -0.403667545907 +UniRef50_R9DK57 0.499766984389 0.5 0.000233015611002 +UniRef50_Q67MT5 Peptide chain release factor 3 0.864333446097 0.5 -0.364333446097 +UniRef50_P77526 Disulfide bond oxidoreductase YfcG 3.32849489039 0.499999999998 -2.82849489039 +UniRef50_H8FYF0 0.4196294717 0.5 0.0803705283005 +UniRef50_C1F2I6 Metallo beta lactamase family protein 0.0163053411727 0.5 0.483694658827 +UniRef50_N3SI82 0.106818540737 0.5 0.393181459263 +UniRef50_UPI0003B41E49 lactose phosphotransferase system repressor 0.168905295943 0.5 0.331094704056 +UniRef50_M0YT93 0.416064449033 0.5 0.0839355509673 +UniRef50_Q2FF88 Accessory gene regulator protein B 2.57479444501 0.5 -2.07479444501 +UniRef50_O52376 Thiol 0.275134862182 0.5 0.224865137818 +UniRef50_A7FJ95 0.505034264773 0.5 -0.00503426477343 +UniRef50_UPI0003826EC3 hypothetical protein 0.443371801784 0.5 0.056628198216 +UniRef50_O06456 N5 carboxyaminoimidazole ribonucleotide mutase 0.0918948198237 0.500000000001 0.408105180176 +UniRef50_Q8CQE0 Galactosamine containing minor teichoic acid biosynthesis protein 1.98628281638 0.5 -1.48628281638 +UniRef50_UPI0003C1158B 0.54705216289 0.5 -0.0470521628898 +UniRef50_UPI00037E8C2C hypothetical protein 0.126473762797 0.5 0.373526237203 +UniRef50_F0RKJ6 Transposase IS4 family protein 0.00245194554746 0.5 0.497548054453 +UniRef50_J8VEE3 Plasmid pRiA4b ORF 3 like protein 2.49023201027 0.5 -1.99023201027 +UniRef50_B7MNC1 Ribosomal RNA small subunit methyltransferase C 1.19089642701 0.5 -0.690896427013 +UniRef50_Q49WJ7 Bifunctional purine biosynthesis protein PurH 0.433471525942 0.5 0.0665284740581 +UniRef50_UPI00005C7E8C hypothetical protein 2.28543959368 0.5 -1.78543959368 +UniRef50_Q4FMW8 GMP synthase [glutamine hydrolyzing] 0.000709233284746 0.5 0.499290766715 +UniRef50_E0NC31 1.45600190431 0.5 -0.956001904313 +UniRef50_A7WZ80 Putative antiporter subunit mnhE2 5.97668808407 0.500000000001 -5.47668808407 +UniRef50_UPI00036BF214 hypothetical protein 0.212663261747 0.5 0.287336738253 +UniRef50_P63651 Probable succinyl CoA 0.359044613682 0.5 0.140955386318 +UniRef50_UPI0003AB3DEF hypothetical protein 0.995214936644 0.5 -0.495214936644 +UniRef50_R4R8Z7 Rhs family protein 1.94786736189 0.499999999999 -1.44786736189 +UniRef50_UPI000471A1D9 branched chain amino acid transporter II carrier protein 1.31435768136 0.5 -0.814357681364 +UniRef50_UPI00046FA3C6 hypothetical protein 0.872877797792 0.5 -0.372877797792 +UniRef50_UPI00047136FE hypothetical protein 1.11437067054 0.5 -0.614370670537 +UniRef50_B2V995 Protease HtpX homolog 0.109976177356 0.5 0.390023822644 +UniRef50_K7YQ94 0.0238969193623 0.5 0.476103080638 +UniRef50_Q6LU24 Phosphoribosylformylglycinamidine synthase 0.711334360996 0.5 -0.211334360996 +UniRef50_Q3IWC2 0.83102714659 0.5 -0.33102714659 +UniRef50_D0Z2D3 1.51330921391 0.5 -1.01330921391 +UniRef50_R8ZFX9 0.636522564326 0.5 -0.136522564326 +UniRef50_A3PQQ0 GCN5 related N acetyltransferase 0.360471745238 0.5 0.139528254762 +UniRef50_A0A058Z6L2 0.247608854685 0.5 0.252391145315 +UniRef50_Q8CNV6 Smooth muscle caldesmon 1.24207663461 0.5 -0.742076634605 +UniRef50_UPI00037E8BDB hypothetical protein 0.145452665573 0.5 0.354547334427 +UniRef50_UPI00036ED2AC hypothetical protein 0.258489393263 0.5 0.241510606737 +UniRef50_S5XSF5 Nitrilotriacetate monooxygenase family FMN dependent 1.05327080635 0.5 -0.55327080635 +UniRef50_J5PQD7 0.583834982107 0.5 -0.0838349821071 +UniRef50_A0A022S8H0 Export membrane family protein 0.249927275981 0.5 0.250072724019 +UniRef50_O07002 Aspartate proton symporter 0.00468023339233 0.5 0.495319766608 +UniRef50_UPI0002FCB073 hypothetical protein 0.0755181873817 0.5 0.424481812618 +UniRef50_A5UK56 Arginine biosynthesis bifunctional protein ArgJ 0.502824308142 0.5 -0.00282430814249 +UniRef50_U5MQZ5 0.191093923759 0.5 0.308906076241 +UniRef50_Q3JUT4 3.46192311151 0.500000000002 -2.96192311151 +UniRef50_U6FWJ6 SdrH protein 0.305792967196 0.5 0.194207032804 +UniRef50_UPI00037A959D hypothetical protein 0.217580205692 0.5 0.282419794308 +UniRef50_V6QG63 Integrase 1.4869768927 0.5 -0.9869768927 +UniRef50_A2RFC7 ATP synthase subunit a 0.076421929624 0.499999999999 0.423578070377 +UniRef50_D3QCQ2 Ferric uptake regulation protein FUR 2.29628604595 0.500000000002 -1.79628604595 +UniRef50_UPI000311159F hypothetical protein 1.42514596933 0.500000000001 -0.925145969331 +UniRef50_Q5HKX7 Glycosyl transferase, group 1 family protein 1.27632534695 0.5 -0.776325346947 +UniRef50_Q67N36 Aminomethyltransferase 0.0793579661861 0.5 0.420642033814 +UniRef50_P42096 Protein LacX, chromosomal 1.13152565805 0.5 -0.631525658048 +UniRef50_C2LZG9 Transcriptional regulator, PadR family 0.0909635690386 0.5 0.409036430961 +UniRef50_A0A022FMT2 2.42339250387 0.5 -1.92339250387 +UniRef50_Q6NDQ0 sn glycerol 3 phosphate import ATP binding protein UgpC 1.10683161423 0.5 -0.606831614232 +UniRef50_G4LIM7 3 hydroxyacyl CoA dehydrogenase NAD binding subunit 0.393923398304 0.5 0.106076601696 +UniRef50_X1PRM6 Marine sediment metagenome DNA, contig 0.29313418124 0.5 0.20686581876 +UniRef50_I6G892 HTH type transcriptional regulator AdiY domain protein 0.168618135523 0.5 0.331381864477 +UniRef50_Q7M8H4 7 cyano 7 deazaguanine synthase 0.296992093412 0.5 0.203007906588 +UniRef50_P51763 Reaction center protein M chain 2.05241148555 0.5 -1.55241148555 +UniRef50_I0C0V7 Multidrug resistance efflux pump 2.50993584468 0.499999999997 -2.00993584468 +UniRef50_UPI0003B40FE5 membrane protein 0.177374923679 0.5 0.322625076321 +UniRef50_Q39ZB4 NADH quinone oxidoreductase subunit I 1 0.340718848548 0.5 0.159281151452 +UniRef50_P0ACM7 0.34970049447 0.5 0.15029950553 +UniRef50_Q8ZT92 GMP synthase [glutamine hydrolyzing] 0.331486534544 0.5 0.168513465456 +UniRef50_E4GGL7 HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein 0.016904849011 0.5 0.483095150989 +UniRef50_C3EUD3 0.506540603247 0.5 -0.00654060324717 +UniRef50_P42360 0.482823374858 0.5 0.017176625142 +UniRef50_UPI0003725E3A hypothetical protein 0.0199209725225 0.5 0.480079027477 +UniRef50_T0Z4X5 0.481850131004 0.5 0.0181498689956 +UniRef50_UPI0003A412EC hypothetical protein 0.307442779851 0.5 0.192557220149 +UniRef50_U6ANF3 1.15922647202 0.5 -0.659226472023 +UniRef50_UPI0004704A43 hydroxyethylthiazole kinase 0.325843490443 0.5 0.174156509557 +UniRef50_D8ACP8 0.462517178468 0.5 0.037482821532 +UniRef50_Q7A7G4 2.87913242078 0.5 -2.37913242078 +UniRef50_P37351 Ribose 5 phosphate isomerase B 0.426641103544 0.5 0.0733588964561 +UniRef50_F2ENL3 0.331582403844 0.5 0.168417596156 +UniRef50_UPI0002D4EE34 hypothetical protein 0.616284657817 0.5 -0.116284657817 +UniRef50_UPI00037CDEEA hypothetical protein 0.319560307808 0.5 0.180439692192 +UniRef50_P39176 Probable L,D transpeptidase ErfK SrfK 0.611832804775 0.5 -0.111832804775 +UniRef50_V4QXI1 AMP binding protein 0.817121496748 0.5 -0.317121496748 +UniRef50_E1NTN7 1.37225099018 0.5 -0.872250990182 +UniRef50_L7U7P5 PT repeat DnaJ domain containing protein 0.372051243984 0.5 0.127948756016 +UniRef50_J5KRR9 0.273843101655 0.5 0.226156898345 +UniRef50_A6LTF1 YodP 0.363322559375 0.5 0.136677440625 +UniRef50_UPI0003F9ADEE hypothetical protein 0.185810800717 0.5 0.314189199283 +UniRef50_Q9KTK8 tRNA sulfurtransferase 5.63716212755 0.500000000001 -5.13716212755 +UniRef50_D2S427 LigA 0.0594210444365 0.5 0.440578955563 +UniRef50_UPI0002D844FC hypothetical protein 2.34826900655 0.499999999999 -1.84826900655 +UniRef50_UPI00037FB4E4 hypothetical protein 1.63773800311 0.5 -1.13773800311 +UniRef50_UPI0004270BC7 hypothetical protein 0.450138773512 0.5 0.0498612264882 +UniRef50_Q0K7P2 ABC type transporter, ATPase component 0.582365503849 0.5 -0.0823655038489 +UniRef50_D0MEX8 FAD dependent oxidoreductase 0.00174383894773 0.5 0.498256161052 +UniRef50_B7LTE9 Transporter 1.37144778646 0.5 -0.871447786457 +UniRef50_UPI00030DD9C9 hypothetical protein 0.436672494258 0.5 0.0633275057417 +UniRef50_G2TPA3 PfkB domain protein 0.0534775084217 0.5 0.446522491578 +UniRef50_Q9VM33 Elongation factor G, mitochondrial 0.996949784777 0.5 -0.496949784777 +UniRef50_O31248 Peptidyl prolyl cis trans isomerase (Rotamase) 0.0121943158028 0.5 0.487805684197 +UniRef50_P13656 Probable bifunctional chitinase lysozyme 2.01692417618 0.5 -1.51692417618 +UniRef50_G9AU18 2.44067458706 0.499999999999 -1.94067458706 +UniRef50_D3E347 0.458571907779 0.5 0.0414280922211 +UniRef50_D3E1C8 Hydrolase HAD superfamily 4.93894675282 0.500000000002 -4.43894675282 +UniRef50_P33941 ABC transporter ATP binding protein YojI 1.72247734488 0.500000000001 -1.22247734488 +UniRef50_X6DV46 2.35699761444 0.5 -1.85699761444 +UniRef50_UPI0003B521C3 cytochrome C biogenesis protein 0.106198901187 0.5 0.393801098813 +UniRef50_E6MXZ6 Exonuclease, DNA polymerase III, epsilon subunit 0.0518517462343 0.5 0.448148253765 +UniRef50_E7DWP7 WdaG 3.53153976769 0.500000000003 -3.03153976769 +UniRef50_M4YXM1 Cell division protein FtsX 1.15644750875 0.5 -0.656447508754 +UniRef50_D8JH95 ABC transporter family protein 0.00793278899898 0.5 0.492067211001 +UniRef50_A3PIS2 1.89274137195 0.5 -1.39274137195 +UniRef50_P76085 Phenylacetate coenzyme A ligase 0.269584151932 0.5 0.230415848068 +UniRef50_P0AEG3 Dipeptide transport system permease protein DppC 2.25721289618 0.500000000001 -1.75721289618 +UniRef50_A6NPX7 1.18567046249 0.5 -0.685670462494 +UniRef50_B7IJP9 Probable manganese dependent inorganic pyrophosphatase 2.66049347978 0.500000000001 -2.16049347978 +UniRef50_A9KFA0 Ribonuclease 3 0.187537903445 0.5 0.312462096556 +UniRef50_I0JK39 0.152961802508 0.5 0.347038197492 +UniRef50_U5MPS5 Acetyltransferase 0.323648499371 0.5 0.176351500629 +UniRef50_U5UQU4 TetR family transcriptional regulator 11.9097884248 0.500000000002 -11.4097884248 +UniRef50_N1N5F7 Clumping factor ClfB, fibrinogen binding protein 0.265840552044 0.5 0.234159447956 +UniRef50_P71237 Putative colanic acid biosynthesis glycosyl transferase WcaC 1.01868261239 0.5 -0.518682612393 +UniRef50_UPI00036F4FFA hypothetical protein 1.59855208118 0.5 -1.09855208118 +UniRef50_P39830 Inner membrane protein YbaL 3.74508823779 0.5 -3.24508823779 +UniRef50_F8DI48 Cytoplasmic alpha amylase 0.961771109061 0.5 -0.461771109061 +UniRef50_UPI0003B686EF hypothetical protein 0.150817467306 0.5 0.349182532694 +UniRef50_Q5HRM6 PIN domain protein 2.29588787288 0.499999999999 -1.79588787288 +UniRef50_A0RH88 tRNA dimethylallyltransferase 0.00838543291401 0.5 0.491614567086 +UniRef50_Q83FR2 Hexulose 6 phosphate synthase 0.0188453744749 0.5 0.481154625525 +UniRef50_C5W449 2.3132890089 0.499999999999 -1.8132890089 +UniRef50_B6VLA0 0.277501890159 0.5 0.222498109841 +UniRef50_B7MGB3 D galactonate dehydratase 0.732186275551 0.5 -0.232186275551 +UniRef50_G8RA51 Exotoxin 15 1.26265570079 0.5 -0.762655700792 +UniRef50_UPI000248470C hemolysin type calcium binding region 1.96012836645 0.5 -1.46012836645 +UniRef50_A7IPS8 ParB domain protein nuclease 2.72974300379 0.5 -2.22974300379 +UniRef50_A3PSB0 2.10827702949 0.500000000001 -1.6082770295 +UniRef50_C4ZYY9 HTH type transcriptional regulator YidZ 2.10204172913 0.500000000001 -1.60204172913 +UniRef50_A3PR77 Major facilitator superfamily MFS_1 2.04936223603 0.5 -1.54936223603 +UniRef50_D4HCV0 FAD linked oxidase, C terminal domain protein 0.0295325113029 0.5 0.470467488697 +UniRef50_E8SIU9 Phosphate regulon sensor protein PhoR SphS 1.40670235193 0.499999999998 -0.906702351925 +UniRef50_G7U4H3 0.0476363356862 0.5 0.452363664314 +UniRef50_B3H2W6 RNA pyrophosphohydrolase 23.1486879453 0.500000000014 -22.6486879454 +UniRef50_Q47SB4 3 isopropylmalate dehydrogenase 0.17360797328 0.5 0.32639202672 +UniRef50_S5CRE9 0.0239831665589 0.5 0.476016833441 +UniRef50_K4KJS3 Acyl [acyl carrier protein] UDP N acetylglucosamine O acyltransferase 0.0176508536873 0.5 0.482349146313 +UniRef50_Q1B492 LigA 0.00907809233883 0.5 0.490921907662 +UniRef50_U3STE7 6.20787544749 0.500000000001 -5.70787544749 +UniRef50_M9VIL3 0.00730742237468 0.5 0.492692577625 +UniRef50_I0C1G5 SIR2 family protein 1.63709359491 0.500000000001 -1.13709359491 +UniRef50_H8H8S2 ABC transport system permease 0.0569264596778 0.5 0.443073540322 +UniRef50_Q2T751 Taurine import ATP binding protein TauB 0.925938176758 0.5 -0.425938176758 +UniRef50_D6TV92 ATPase 0.212167009389 0.5 0.287832990611 +UniRef50_UPI0002557200 2 nitropropane dioxygenase 0.51597301173 0.5 -0.0159730117302 +UniRef50_X1J3J4 Marine sediment metagenome DNA, contig 0.0676782726779 0.5 0.432321727322 +UniRef50_R1DBP2 0.00878206985482 0.5 0.491217930146 +UniRef50_C5Z1P3 1.43886093803 0.5 -0.938860938035 +UniRef50_Q972W3 Urease accessory protein UreG 0.0604221822534 0.5 0.439577817746 +UniRef50_B8LZL2 0.245351800208 0.5 0.254648199792 +UniRef50_Q9UVC0 Glyceraldehyde 3 phosphate dehydrogenase 0.308078625148 0.5 0.191921374852 +UniRef50_G0EU06 0.2588200931 0.5 0.2411799069 +UniRef50_V4RI55 Pirin domain protein 1.81569133679 0.5 -1.31569133679 +UniRef50_Q2LQN4 Glutamate tRNA ligase 1 0.151003807922 0.5 0.348996192078 +UniRef50_E8XZE4 0.323415873426 0.5 0.176584126574 +UniRef50_P0AAV9 Putative isomerase YbhH 2.15644370892 0.5 -1.65644370892 +UniRef50_Q04MW7 Argininosuccinate synthase 0.0382703659242 0.5 0.461729634076 +UniRef50_K0AYA8 Bifunctional chorismate mutase prephenate dehydratase 0.679565569333 0.5 -0.179565569333 +UniRef50_A6LVB7 0.0740255984569 0.5 0.425974401543 +UniRef50_Q08NW1 6.84857682666 0.500000000003 -6.34857682666 +UniRef50_U5MUC9 Cyclic di GMP phosphodiesterase response regulator RpfG 0.028881145789 0.5 0.471118854211 +UniRef50_P13518 RNase E specificity factor CsrD 1.39933249856 0.499999999999 -0.899332498563 +UniRef50_UPI0004762DA1 acetate permease, partial 0.262666919131 0.5 0.237333080869 +UniRef50_A3JZH8 3.48421067392 0.500000000001 -2.98421067393 +UniRef50_A5UJJ6 Predicted CRISPR associated protein 10.1257692115 0.500000000005 -9.62576921153 +UniRef50_B0V8Z8 ATP dependent dsDNA exonuclease 0.00606885606958 0.5 0.49393114393 +UniRef50_Q5HP88 Probable ATP dependent helicase DinG homolog 1.82436314627 0.499999999998 -1.32436314627 +UniRef50_E8PIL7 Rossmann fold nucleotide binding protein 0.00627540361819 0.5 0.493724596382 +UniRef50_UPI0004422EE7 PREDICTED 0.0312182614754 0.5 0.468781738524 +UniRef50_E3YUW5 0.087574762317 0.5 0.412425237683 +UniRef50_P75691 Aldehyde reductase YahK 0.166529867868 0.5 0.333470132132 +UniRef50_V1QTW1 1.32178796587 0.5 -0.821787965869 +UniRef50_UPI0004646ABC MULTISPECIES 2.46302787417 0.499999999999 -1.96302787417 +UniRef50_UPI0004769729 thioesterase 0.274934701923 0.5 0.225065298077 +UniRef50_R6Q2D0 Iron only hydrogenase maturation protein HydF 0.076348329902 0.5 0.423651670098 +UniRef50_Q6FDN2 0.00792677518202 0.5 0.492073224818 +UniRef50_UPI000273D0E2 1.92959954925 0.5 -1.42959954925 +UniRef50_R7PTK0 2.43821224166 0.500000000001 -1.93821224166 +UniRef50_F0Y6N7 Expressed protein 0.176705861959 0.5 0.323294138041 +UniRef50_B2A9N0 Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1 0.00338228976165 0.5 0.496617710239 +UniRef50_Q9RZN7 Potassium transporting ATPase A chain 0.00283049249163 0.5 0.497169507509 +UniRef50_K2DR39 0.164126678211 0.5 0.335873321789 +UniRef50_R5J2P0 HTH type transcriptional regulator GmuR 0.109004073216 0.5 0.390995926784 +UniRef50_H3VA73 PF03904 domain protein 2.12128862547 0.499999999998 -1.62128862547 +UniRef50_UPI000273C7FC PREDICTED 0.74880879461 0.5 -0.24880879461 +UniRef50_Q68X45 DNA topoisomerase 1 1.48754436465 0.5 -0.987544364651 +UniRef50_B2HZ46 0.0115626829432 0.5 0.488437317057 +UniRef50_UPI000469439E hypothetical protein, partial 0.0194321578853 0.5 0.480567842115 +UniRef50_A3CPL4 Cystathionine gamma synthase, putative 1.40067361817 0.5 -0.900673618174 +UniRef50_Q0TN75 Sulfatase 2.21437987461 0.5 -1.71437987461 +UniRef50_Q833W8 Tagatose 1,6 diphosphate aldolase 2 0.0062390498581 0.499999999999 0.493760950142 +UniRef50_L5P9E1 Rhodanese like domain protein 0.340605524099 0.5 0.159394475901 +UniRef50_T6ITD7 DNA mismatch repair protein mutS 1.19783133473 0.5 -0.697831334731 +UniRef50_P96995 UDP glucose 4 epimerase 0.334069985807 0.5 0.165930014193 +UniRef50_UPI0003B31677 sugar ABC transporter ATP binding protein 0.602106634485 0.5 -0.102106634485 +UniRef50_G2C2A9 0.0360323209296 0.5 0.46396767907 +UniRef50_Q1IJ73 0.0483115276216 0.5 0.451688472378 +UniRef50_Q2FEK4 Urease subunit beta 3.0577455491 0.499999999995 -2.5577455491 +UniRef50_A1R4R1 Glutamyl tRNA amidotransferase subunit A 0.00662254047778 0.5 0.493377459522 +UniRef50_UPI0003685835 hypothetical protein 3.73146295273 0.500000000001 -3.23146295273 +UniRef50_K0S5Y4 0.817555665886 0.5 -0.317555665886 +UniRef50_A0A023X9G2 ABC transporter permease protein 1.19389971639 0.5 -0.693899716388 +UniRef50_B9E1A4 0.0679600393947 0.499999999999 0.432039960606 +UniRef50_UPI0003FA3257 protein HflC 2.66714746141 0.5 -2.16714746141 +UniRef50_M9S6A9 Two component response regulator, PprB 0.354425324582 0.5 0.145574675418 +UniRef50_W4TN66 Integral membrane protein 0.0564834171353 0.5 0.443516582865 +UniRef50_Q6AAW0 Phosphoenolpyruvate protein phosphotransferase 0.0089210330251 0.5 0.491078966975 +UniRef50_A8L3Z7 1.63168089571 0.5 -1.13168089571 +UniRef50_M9Z693 Nitrite oxidordeuctase B subunit 0.429075200704 0.5 0.0709247992961 +UniRef50_W6ICP5 Methyl accepting chemotaxis protein 1.2664182088 0.499999999999 -0.766418208799 +UniRef50_W8YNW6 6 pyruvoyl tetrahydropterin synthase 0.176343290504 0.5 0.323656709496 +UniRef50_X5DUC9 Thioesterase like superfamily protein 2.79573033728 0.5 -2.29573033728 +UniRef50_V8G0E6 Cell wall binding protein 0.10546730791 0.5 0.39453269209 +UniRef50_Q5ZZI2 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 1.35296828195 0.5 -0.852968281952 +UniRef50_O74197 Phosphoribosylaminoimidazole carboxylase 0.435868684916 0.5 0.0641313150844 +UniRef50_R1BXE4 0.465709860982 0.5 0.0342901390178 +UniRef50_UPI0004695C98 amino acid ABC transporter permease 0.307118025812 0.5 0.192881974188 +UniRef50_UPI000426690E hypothetical protein 0.472404271544 0.5 0.0275957284565 +UniRef50_O34947 0.157874779718 0.5 0.342125220282 +UniRef50_V9WEG0 Permease of the drug metabolite transporter superfamily 2.84708289274 0.500000000001 -2.34708289274 +UniRef50_S9SJZ0 0.405885574546 0.5 0.0941144254536 +UniRef50_UPI000473A780 threonine dehydratase 0.109942283351 0.500000000001 0.390057716648 +UniRef50_UPI0001E89D91 Transcriptional regulator of sugar metabolism 0.171936983452 0.5 0.328063016548 +UniRef50_A7FAZ1 0.00967657855765 0.5 0.490323421442 +UniRef50_UPI0003B54A85 alpha beta hydrolase, partial 1.6075593795 0.5 -1.1075593795 +UniRef50_UPI0002883AB7 acyl CoA dehydrogenase 0.153543104201 0.5 0.346456895799 +UniRef50_K5CST2 Branched chain amino acid ABC transporter nucleotide binding protein ATPase 0.25479891513 0.5 0.24520108487 +UniRef50_M9R3P2 PHB depolymerase 1.70675174237 0.5 -1.20675174237 +UniRef50_Q6A9Z4 Glutamate ammonia ligase adenylyltransferase 0.0246654777534 0.5 0.475334522247 +UniRef50_Q8Y0U6 Thymidylate synthase 0.0983082806823 0.5 0.401691719318 +UniRef50_A4WPC2 OmpA MotB domain protein 7.8165332392 0.499999999998 -7.3165332392 +UniRef50_F7Y7I2 1.1942926046 0.5 -0.694292604599 +UniRef50_A6LVU2 Cobalt precorrin 5B C methyltransferase 0.167182520984 0.5 0.332817479016 +UniRef50_R7G9U3 Phosphosugar isomerase transcriptional regulator 0.0595848759438 0.499999999999 0.440415124057 +UniRef50_L0NA87 1.78270884145 0.499999999999 -1.28270884145 +UniRef50_X5EJ50 PAP2 superfamily protein 1.32046569463 0.5 -0.82046569463 +UniRef50_UPI0003B68328 mandelate racemase, partial 1.02131226269 0.5 -0.521312262693 +UniRef50_UPI00046BB227 PREDICTED 0.162787044046 0.5 0.337212955954 +UniRef50_G5PRD3 Putative outer membrane lipoprotein 0.34745973163 0.5 0.15254026837 +UniRef50_Q17WK3 0.310542909446 0.5 0.189457090554 +UniRef50_UPI0003EAE12A PREDICTED 0.22246583637 0.5 0.27753416363 +UniRef50_J0XW17 7.88165651757 0.5 -7.38165651757 +UniRef50_A6M391 Methyl accepting chemotaxis sensory transducer 0.0901944105024 0.5 0.409805589498 +UniRef50_E8SJA6 SAM dependent methyltransferase, MraW methylase family 1.39914301904 0.5 -0.899143019044 +UniRef50_A4WQ24 Lytic transglycosylase, catalytic 1.1649972815 0.500000000001 -0.664997281501 +UniRef50_A7X2X9 Ribosomal protein L11 methyltransferase 1.33317506586 0.500000000001 -0.833175065858 +UniRef50_UPI0003B390C8 cell division protein FtsW 0.382837887956 0.5 0.117162112044 +UniRef50_I0C5T1 1.38458012377 0.5 -0.884580123768 +UniRef50_L2F8J3 0.378595265034 0.5 0.121404734966 +UniRef50_UPI00035F908D hypothetical protein 3.11703609858 0.5 -2.61703609858 +UniRef50_C0PP21 0.0298431730365 0.499999999999 0.470156826964 +UniRef50_I0C5T9 1.73000892529 0.499999999997 -1.23000892529 +UniRef50_UPI00046F3223 hypothetical protein 0.104911105171 0.5 0.395088894829 +UniRef50_P19769 Putative transposase InsK for insertion sequence element IS150 1.32904141579 0.500000000001 -0.829041415789 +UniRef50_P20371 Protocatechuate 3,4 dioxygenase alpha chain 0.0183486347208 0.5 0.481651365279 +UniRef50_O32091 1.42843196992 0.499999999999 -0.928431969922 +UniRef50_UPI0003D730BE PREDICTED 0.330512436849 0.5 0.169487563151 +UniRef50_UPI00039597D2 PREDICTED 0.0243273867741 0.5 0.475672613226 +UniRef50_Q9RWU2 0.00263464887203 0.5 0.497365351128 +UniRef50_UPI0002F9456A hypothetical protein 0.318764595742 0.5 0.181235404258 +UniRef50_W1A536 4.97712663446 0.5 -4.47712663446 +UniRef50_Q313W4 Bifunctional protein GlmU 0.382218295854 0.5 0.117781704146 +UniRef50_F0Y3L5 0.132345714234 0.5 0.367654285766 +UniRef50_C0LZW7 Cross beta structure silk protein 2 0.165831531493 0.5 0.334168468507 +UniRef50_UPI00035C4CDB hypothetical protein 0.413318306837 0.5 0.0866816931627 +UniRef50_R0NY94 0.0870878387193 0.5 0.412912161281 +UniRef50_M4IMI2 Transposase like protein 4.31676657311 0.500000000002 -3.81676657312 +UniRef50_G8UVE6 TraU 5.82128903632 0.500000000005 -5.32128903632 +UniRef50_A6W320 Transposase, IS4 0.253434008696 0.5 0.246565991304 +UniRef50_F4S3R3 3.27876239525 0.500000000003 -2.77876239525 +UniRef50_Q1IYK3 UDP N acetylglucosamine 1 carboxyvinyltransferase 9.18329864682e-05 0.5 0.499908167013 +UniRef50_UPI0003B63C0F hypothetical protein 0.164290777276 0.5 0.335709222724 +UniRef50_H2JMH7 1.05810546113 0.5 -0.558105461131 +UniRef50_B9KTJ2 ABC spermidine putrescine transporter, ATPase subunit 0.211073680217 0.5 0.288926319783 +UniRef50_H4PPD3 NADP dependent dehydrogenase domain protein 0.22106186097 0.5 0.27893813903 +UniRef50_Q5DZU8 3 methyl 2 oxobutanoate hydroxymethyltransferase 2 2.27540941113 0.500000000001 -1.77540941114 +UniRef50_P37216 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic 4.08592007304 0.499999999997 -3.58592007303 +UniRef50_X1KHN3 Marine sediment metagenome DNA, contig 1.64649079073 0.5 -1.14649079073 +UniRef50_O67762 DNA directed RNA polymerase subunit beta 1.00224183724 0.5 -0.50224183724 +UniRef50_Q161C7 DNA damage inducible protein, putative 1.72859548467 0.5 -1.22859548467 +UniRef50_UPI000443E2D6 PREDICTED 0.277668955503 0.5 0.222331044497 +UniRef50_Q49WP2 15.8166686307 0.499999999991 -15.3166686307 +UniRef50_H6SJN5 0.367259758431 0.5 0.132740241569 +UniRef50_M9VCC8 0.0327735048115 0.5 0.467226495188 +UniRef50_X2M4F7 0.0773783120024 0.5 0.422621687998 +UniRef50_A5IU85 Parallel beta helix repeat 1.40715705019 0.499999999999 -0.907157050191 +UniRef50_UPI00029A6665 citrate synthase I 0.227641406553 0.5 0.272358593447 +UniRef50_A4WZ48 1.64629207454 0.5 -1.14629207454 +UniRef50_B9HS46 0.0722128239899 0.499999999999 0.427787176011 +UniRef50_A3UKH7 0.24740098841 0.5 0.25259901159 +UniRef50_B9KTI0 1.5222693063 0.5 -1.0222693063 +UniRef50_B0VS88 Putative acetyltransferase 0.302617519878 0.5 0.197382480122 +UniRef50_UPI000376ED10 hypothetical protein 0.0384735666695 0.5 0.46152643333 +UniRef50_Q2NHY7 L tyrosine decarboxylase 2.8388606838 0.5 -2.3388606838 +UniRef50_B7LMR0 0.0491153705447 0.5 0.450884629455 +UniRef50_A8GCA1 Ecotin 3.06113638329 0.500000000002 -2.56113638329 +UniRef50_O26607 UPF0145 protein MTH_507 0.0936829803257 0.5 0.406317019674 +UniRef50_W8XBA5 Inner membrane transport protein YhjV 0.438030745331 0.5 0.0619692546692 +UniRef50_B0K0N0 Adenine phosphoribosyltransferase 0.272634884191 0.5 0.227365115809 +UniRef50_UPI000248DA1A hypothetical protein 1.67717951297 0.5 -1.17717951297 +UniRef50_Q8CQ91 Histidine biosynthesis bifunctional protein HisIE 1.77754207132 0.5 -1.27754207132 +UniRef50_N1X5N0 0.492729128285 0.5 0.00727087171454 +UniRef50_UPI0002E805CD hypothetical protein 0.565041607931 0.5 -0.0650416079309 +UniRef50_UPI00047183C3 nuclease PIN 0.265146723977 0.5 0.234853276023 +UniRef50_UPI0003829CBF hypothetical protein 0.079718561579 0.5 0.420281438421 +UniRef50_U5MRK8 Secretion protein HlyD family protein 0.057219660401 0.5 0.442780339599 +UniRef50_K4JRS2 0.0342152116178 0.5 0.465784788382 +UniRef50_P39131 UDP N acetylglucosamine 2 epimerase 0.724729131508 0.5 -0.224729131508 +UniRef50_UPI00037118F4 hypothetical protein 1.58821521084 0.5 -1.08821521084 +UniRef50_A0A023AZR5 Malic enzyme 0.106165984808 0.5 0.393834015192 +UniRef50_M9R8K1 FlgD like flagellar basal body rod modification protein 0.365441076331 0.5 0.134558923669 +UniRef50_C5E391 KLTH0H11330p 1.90502290198 0.500000000002 -1.40502290198 +UniRef50_A6M0V7 Dihydroxy acid dehydratase 0.176199301866 0.5 0.323800698134 +UniRef50_Q1ATH8 Pyridoxine pyridoxamine 5 phosphate oxidase 0.00584395390608 0.5 0.494156046094 +UniRef50_A7X1Z3 2.20884069053 0.5 -1.70884069053 +UniRef50_Q72CS6 3 oxoacyl [acyl carrier protein] synthase 3 0.0886391738566 0.5 0.411360826143 +UniRef50_B4RL22 Arginine tRNA ligase 0.028881251483 0.5 0.471118748517 +UniRef50_O27398 Imidazole glycerol phosphate synthase subunit HisF 1.29410820468 0.5 -0.794108204676 +UniRef50_UPI000478B1E4 hypothetical protein 1.34669626384 0.5 -0.846696263839 +UniRef50_E9SHD5 1.16654701116 0.5 -0.666547011164 +UniRef50_UPI000382B9BD hypothetical protein 1.11123939249 0.5 -0.61123939249 +UniRef50_M4YVY6 Cytoplasmic protein 0.326741035873 0.5 0.173258964127 +UniRef50_A0A022NW71 LigA 0.090382516384 0.5 0.409617483616 +UniRef50_A3UE81 0.201380138765 0.5 0.298619861235 +UniRef50_Q8GPJ0 MobB like protein 1.41776780074 0.5 -0.917767800744 +UniRef50_UPI0004657E4B hypothetical protein 1.40975355676 0.5 -0.909753556757 +UniRef50_I6RK04 Tryptophan repressor binding protein 0.12443440964 0.5 0.37556559036 +UniRef50_A0A013LHN9 Putative membrane protein 0.00802603312281 0.5 0.491973966877 +UniRef50_E1V4H9 ATP dependent RNA helicase RhlB 0.00744650817016 0.5 0.49255349183 +UniRef50_R6LJ53 Cell cycle protein FtsW 1.42937093704 0.5 -0.929370937044 +UniRef50_UPI0003673C2F hypothetical protein 2.01439689004 0.5 -1.51439689004 +UniRef50_A6M1A4 Flagellin domain protein 0.23000566893 0.5 0.26999433107 +UniRef50_F6B016 Bile acid 0.042051416001 0.500000000001 0.457948583998 +UniRef50_Q02N70 Tryptophan 2,3 dioxygenase 0.0297027287823 0.5 0.470297271218 +UniRef50_A6VDM0 1.05620451574 0.5 -0.556204515739 +UniRef50_UPI000415BF03 hypothetical protein 0.0253530981981 0.5 0.474646901802 +UniRef50_G8V752 0.0358321432774 0.5 0.464167856722 +UniRef50_UPI0003637379 hypothetical protein 0.934028644145 0.5 -0.434028644145 +UniRef50_V8G5A1 Cell wall binding protein 0.342001351908 0.5 0.157998648092 +UniRef50_Q97MB4 NAD dependent protein deacetylase 0.264450460213 0.5 0.235549539787 +UniRef50_UPI00021A56DC PREDICTED 0.94435488785 0.5 -0.44435488785 +UniRef50_UPI00034D5672 ABC transporter permease 0.196803222097 0.5 0.303196777903 +UniRef50_B9KM82 1.6635573539 0.5 -1.1635573539 +UniRef50_Q9ZMV8 Flagellin B 0.0042011428386 0.500000000001 0.495798857161 +UniRef50_UPI00036E1801 hypothetical protein, partial 2.46919525615 0.5 -1.96919525615 +UniRef50_L7VNU0 0.0635727230554 0.5 0.436427276944 +UniRef50_A0A024JC88 Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit 0.0315232883104 0.5 0.46847671169 +UniRef50_T0ZIX4 2.00629586309 0.5 -1.50629586309 +UniRef50_P76482 5.91830596507 0.500000000001 -5.41830596507 +UniRef50_P44502 Cystathionine gamma synthase 0.685897267804 0.5 -0.185897267804 +UniRef50_C0QC86 Probable cytosol aminopeptidase 0.128727152724 0.5 0.371272847276 +UniRef50_H9UNY1 0.686907634236 0.5 -0.186907634236 +UniRef50_Q2J5A7 Biotin synthase 2 0.014889134244 0.499999999999 0.485110865757 +UniRef50_D4LLK4 Recombinational DNA repair ATPase 0.0899913847414 0.5 0.410008615259 +UniRef50_UPI0002897140 O acetylhomoserine aminocarboxypropyltransferase 0.410141851721 0.5 0.0898581482787 +UniRef50_UPI000380E239 hypothetical protein 0.561999817215 0.5 -0.0619998172154 +UniRef50_UPI0003775D90 hypothetical protein 1.24443347862 0.5 -0.744433478618 +UniRef50_F8JSQ7 0.0602462563394 0.5 0.439753743661 +UniRef50_G7M8J1 Methyl accepting chemotaxis sensory transducer 0.317793756147 0.5 0.182206243853 +UniRef50_A1SG46 Alpha amylase, catalytic region 0.0380051273732 0.5 0.461994872627 +UniRef50_J9NZQ0 0.0979529323259 0.5 0.402047067674 +UniRef50_UPI00046C792F hypothetical protein 4.19398371095 0.500000000002 -3.69398371096 +UniRef50_A8G9Z1 Cell division protein FtsB 3.87256844984 0.500000000001 -3.37256844984 +UniRef50_A0A033TLC6 0.115663606149 0.5 0.384336393851 +UniRef50_A6M2Q2 Phage replisome organizer, putative 0.0947861724837 0.5 0.405213827516 +UniRef50_UPI0002FAA418 hypothetical protein 0.168552671466 0.499999999999 0.331447328534 +UniRef50_UPI0002C5976A 0.489158793864 0.5 0.0108412061357 +UniRef50_S5XYL7 Aldo keto reductase 1.10310867419 0.5 -0.603108674187 +UniRef50_UPI0003B570ED plasmid stablization protein ParB 0.0143432041997 0.500000000001 0.485656795799 +UniRef50_Q9RT21 Trigger factor 0.00489708869474 0.5 0.495102911305 +UniRef50_D2AEN1 0.154364573419 0.5 0.345635426581 +UniRef50_K2LKK6 Phosphate ABC transporter, periplasmic binding protein 0.349142803385 0.5 0.150857196615 +UniRef50_Q88X60 Adenylyl sulfate kinase 0.803063995911 0.5 -0.303063995911 +UniRef50_Q4XSF0 GTP binding protein, putative 0.257309709168 0.5 0.242690290832 +UniRef50_O67216 4 hydroxy tetrahydrodipicolinate synthase 0.112125665162 0.5 0.387874334838 +UniRef50_UPI0004064E58 transcription termination factor Rho 0.0868205683122 0.5 0.413179431688 +UniRef50_Q9R5L5 HSP62=62 kDa urease associated heat shock protein 0.0604709993761 0.5 0.439529000624 +UniRef50_X0NX98 7.94893748975 0.500000000005 -7.44893748976 +UniRef50_UPI00035F4BA7 hypothetical protein 0.623407537664 0.5 -0.123407537664 +UniRef50_Q8FL68 Ribosomal RNA small subunit methyltransferase H 1.82606416009 0.5 -1.32606416009 +UniRef50_W5Y8P3 0.18701053035 0.5 0.31298946965 +UniRef50_A0A024HQB8 Carbamoyl transferase 1.61892854253 0.500000000001 -1.11892854253 +UniRef50_UPI0004761289 hypothetical protein 0.0622964826195 0.5 0.43770351738 +UniRef50_UPI0003B465F4 hypothetical protein 2.55327028905 0.5 -2.05327028905 +UniRef50_UPI00046A5F3F hypothetical protein 0.302271751702 0.5 0.197728248298 +UniRef50_UPI000382BE44 hypothetical protein 0.978555171082 0.5 -0.478555171082 +UniRef50_Q8CSL5 4.97252194375 0.50000000001 -4.47252194376 +UniRef50_Q8CSL4 1.23289388633 0.5 -0.732893886327 +UniRef50_R6GNH1 0.60127073052 0.5 -0.10127073052 +UniRef50_B1AIC1 ATP synthase subunit alpha 0.120576824322 0.5 0.379423175678 +UniRef50_UPI000413242B hypothetical protein 1.43207754504 0.5 -0.932077545044 +UniRef50_UPI00036CCC09 hypothetical protein 2.12714992678 0.499999999999 -1.62714992678 +UniRef50_B2TIC3 DNA mismatch repair protein MutS 0.278427348864 0.5 0.221572651136 +UniRef50_Q6LUX5 Isopentenyl diphosphate Delta isomerase 1.90344444832 0.5 -1.40344444832 +UniRef50_UPI00046D5342 hypothetical protein 1.20439374857 0.499999999999 -0.704393748571 +UniRef50_UPI00047A154A phosphoribosylaminoimidazolecarboxamide formyltransferase 0.137453586001 0.500000000001 0.362546413998 +UniRef50_O68823 DNA polymerase III subunit chi 0.0186427866006 0.5 0.4813572134 +UniRef50_I2DEN6 0.0160229067261 0.5 0.483977093274 +UniRef50_UPI000376424C hypothetical protein 0.637812162407 0.5 -0.137812162407 +UniRef50_M1MMR2 O antigen polymerase 0.474010912685 0.5 0.0259890873145 +UniRef50_Q08021 0.693160973533 0.5 -0.193160973533 +UniRef50_UPI000472C3EA acetyl CoA carboxylase subunit beta 0.127507694507 0.5 0.372492305493 +UniRef50_G2ZT62 0.152464493414 0.5 0.347535506586 +UniRef50_B1VDD6 Protein RecA 0.297900992116 0.5 0.202099007884 +UniRef50_A9L6A7 TraU family protein 4.12348974487 0.5 -3.62348974487 +UniRef50_A7X3N2 S adenosylmethionine synthase 0.242024631668 0.5 0.257975368332 +UniRef50_A7X1N2 GTP sensing transcriptional pleiotropic repressor CodY 1.30485447415 0.500000000001 -0.804854474149 +UniRef50_J2YJ27 TonB dependent outermembrane ferric citrate receptor 2.39151379531 0.5 -1.89151379531 +UniRef50_G8AGG5 0.27088313642 0.5 0.22911686358 +UniRef50_UPI0004682C49 hypothetical protein 1.12568759013 0.5 -0.625687590135 +UniRef50_F6G1Z6 Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons 0.0171459855263 0.5 0.482854014474 +UniRef50_M4K135 Phospholipid binding domain lipoprotein 1.34222763988 0.5 -0.842227639876 +UniRef50_UPI000361F619 hypothetical protein 0.322729359122 0.5 0.177270640878 +UniRef50_UPI000319FA33 hypothetical protein 0.817105618883 0.5 -0.317105618883 +UniRef50_UPI000376B2F3 hypothetical protein 0.670173247294 0.5 -0.170173247294 +UniRef50_Q8DR50 Diphosphomevalonate decarboxylase 0.551216135935 0.5 -0.0512161359347 +UniRef50_UPI0003C1AF0C 0.415767212386 0.5 0.0842327876135 +UniRef50_Q9K621 Sensory transduction protein BceR 3.26761394151 0.499999999998 -2.7676139415 +UniRef50_Q852F2 0.319990581974 0.5 0.180009418026 +UniRef50_Q3J5W8 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 1.64279323756 0.5 -1.14279323756 +UniRef50_UPI00045EA5EB hypothetical protein 1.31640347843 0.499999999999 -0.816403478425 +UniRef50_Q8DSX2 Bifunctional protein GlmU 1.23816010283 0.5 -0.738160102827 +UniRef50_Q8ZIL5 Carbamoyl phosphate synthase small chain 1.30063879609 0.5 -0.800638796094 +UniRef50_Q28M29 Lipoprotein releasing system transmembrane protein LolC E family 2.62086234864 0.500000000002 -2.12086234864 +UniRef50_D2NAM2 Transcriptional regulator 2.51203663717 0.5 -2.01203663717 +UniRef50_P65765 FKBP type peptidyl prolyl cis trans isomerase FkpA 3.29935847429 0.5 -2.79935847429 +UniRef50_D3E2L0 Mevalonate kinase 3.2987700233 0.5 -2.7987700233 +UniRef50_I0JI98 DUF21 CBS domain protein 2.36788842086 0.499999999999 -1.86788842086 +UniRef50_UPI0003766160 hypothetical protein 2.6985964438 0.500000000001 -2.1985964438 +UniRef50_F0L4M9 Cytochrome c oxidase fixO chain 2.70123225237 0.500000000002 -2.20123225237 +UniRef50_B7V416 0.445364750161 0.5 0.0546352498394 +UniRef50_A0A024HQA8 Amino acid ABC transporter substrate binding protein 0.468508642298 0.5 0.031491357702 +UniRef50_A8FAK7 2 isopropylmalate synthase 2 0.15562479476 0.5 0.34437520524 +UniRef50_Q1ITT1 50S ribosomal protein L35 1.33146846104 0.5 -0.831468461041 +UniRef50_Q4FME5 0.188409309795 0.5 0.311590690206 +UniRef50_R1E3V2 0.074898680703 0.5 0.425101319297 +UniRef50_UPI00036F4F1C peptidase S8 0.00113712835658 0.5 0.498862871643 +UniRef50_A6LVW2 3D domain protein 0.338434541871 0.5 0.161565458129 +UniRef50_K6VBL3 Type IV secretion system family protein 0.516024409665 0.5 -0.0160244096654 +UniRef50_U3T564 Acyl coenzyme A dehydrogenase 0.0163621968308 0.5 0.483637803169 +UniRef50_UPI0001BF5D6F hypothetical protein SMAC_10343 0.219028640484 0.5 0.280971359516 +UniRef50_UPI0003638F6E hypothetical protein 1.34209134405 0.499999999998 -0.842091344049 +UniRef50_UPI000348D250 hypothetical protein 0.00172030510258 0.5 0.498279694897 +UniRef50_UPI000367510D hypothetical protein 0.954642799846 0.5 -0.454642799846 +UniRef50_Q9ZJT0 Methionine aminopeptidase 0.00529964801646 0.5 0.494700351983 +UniRef50_A3QBC5 S malonyltransferase 0.897076887144 0.5 -0.397076887144 +UniRef50_UPI0003B4C933 peptide ABC transporter permease 0.619648187102 0.5 -0.119648187102 +UniRef50_A2RHJ5 Protein translocase subunit SecA 0.0239218719551 0.5 0.476078128045 +UniRef50_L5VNR4 Ybl54 1.3396933854 0.5 -0.839693385403 +UniRef50_UPI000364F3E3 hypothetical protein 0.235100567363 0.5 0.264899432637 +UniRef50_Q0ARE4 UspA domain protein 3.69085595813 0.500000000003 -3.19085595813 +UniRef50_B7IH88 CTP synthase 0.688869942705 0.5 -0.188869942705 +UniRef50_A6LQR9 GTPase Obg 0.0666306627069 0.5 0.433369337293 +UniRef50_UPI000360EF04 hypothetical protein 0.399702791612 0.5 0.100297208388 +UniRef50_UPI000225C0BC Holliday junction ATP dependent DNA helicase ruvA 0.816187389434 0.5 -0.316187389434 +UniRef50_UPI0003B42254 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.312386791616 0.5 0.187613208384 +UniRef50_F0XVT1 0.125314469862 0.5 0.374685530138 +UniRef50_UPI000376F4CA hypothetical protein 0.2454440698 0.5 0.2545559302 +UniRef50_A6LST7 Response regulator receiver protein 0.101699692067 0.5 0.398300307933 +UniRef50_Q53175 MotB 0.148468520237 0.500000000001 0.351531479762 +UniRef50_UPI00014C4177 MULTISPECIES 0.756487439069 0.5 -0.256487439069 +UniRef50_R4YW23 Chromosome partitioning protein transcriptional regulator 0.248969352986 0.5 0.251030647014 +UniRef50_UPI0003769C11 hypothetical protein 0.281583292833 0.5 0.218416707167 +UniRef50_X1QL65 Marine sediment metagenome DNA, contig 0.0845411060428 0.5 0.415458893957 +UniRef50_P52599 Probable multidrug resistance protein EmrK 1.34633571284 0.5 -0.846335712844 +UniRef50_H0Q3N8 Thioesterase superfamily protein 0.0803446976245 0.5 0.419655302376 +UniRef50_UPI00041EC5EE DNA polymerase III subunit alpha 2.61568372667 0.499999999997 -2.11568372666 +UniRef50_A0A023YHP1 0.605622137724 0.5 -0.105622137724 +UniRef50_A1T8K1 Riboflavin biosynthesis protein RibBA 0.651591576425 0.5 -0.151591576425 +UniRef50_UPI0003B3F8B2 ABC transporter 0.30282865987 0.5 0.19717134013 +UniRef50_I2F1Y3 L serine deaminase 0.396415156282 0.5 0.103584843718 +UniRef50_UPI0003A7C9ED hypothetical protein 0.00462526952943 0.5 0.495374730471 +UniRef50_R6Z842 [citrate lyase] ligase 1.23195653642 0.5 -0.73195653642 +UniRef50_F4E2U8 Glycerol dehydrogenase 0.100619083559 0.5 0.399380916441 +UniRef50_UPI0002E02ECB cold shock protein 0.468000136417 0.5 0.0319998635826 +UniRef50_P71405 Serine acetyltransferase 0.000385025516753 0.5 0.499614974483 +UniRef50_P52137 Putative arsenical pump membrane protein 0.783118555175 0.5 -0.283118555175 +UniRef50_UPI000372B1CF hypothetical protein 1.41193582179 0.5 -0.911935821793 +UniRef50_P23481 Hydrogenase 4 component A 0.258722312241 0.5 0.241277687759 +UniRef50_Q5HE46 Mannitol specific phosphotransferase enzyme IIA component 3.68261169188 0.5 -3.18261169188 +UniRef50_Q836B1 UPF0473 protein EF_1204 1.5222475318 0.500000000001 -1.0222475318 +UniRef50_A6LQW6 UPF0272 protein Cbei_0559 0.281688209949 0.5 0.218311790051 +UniRef50_UPI00046EF03F hypothetical protein 0.708169275134 0.5 -0.208169275134 +UniRef50_A3PLE1 4.99895499435 0.499999999991 -4.49895499435 +UniRef50_M1MRV5 Neutral endopeptidase PepO 0.0620221915137 0.5 0.437977808487 +UniRef50_Q897S6 S1 RNA binding domain 0.696702241648 0.5 -0.196702241648 +UniRef50_C0ZES6 LexA repressor 0.0289011071906 0.5 0.471098892809 +UniRef50_W1FU82 Cell division protein FtsK 2.18565562854 0.500000000001 -1.68565562854 +UniRef50_B5BP16 Truncated transposase of IS3 family 1.4657442222 0.5 -0.965744222202 +UniRef50_M9V8F1 0.0351816006177 0.5 0.464818399382 +UniRef50_UPI0002E99FC0 hypothetical protein 1.23998167595 0.500000000002 -0.73998167595 +UniRef50_Q97L15 Permease 3.30120620365 0.5 -2.80120620365 +UniRef50_UPI00037D00A3 hypothetical protein 1.60948085358 0.5 -1.10948085358 +UniRef50_A4WVZ8 FxsA cytoplasmic membrane protein 0.443322999689 0.5 0.0566770003114 +UniRef50_Q2W2I2 DNA directed RNA polymerase subunit beta 0.270588163532 0.5 0.229411836468 +UniRef50_UPI000466CD21 hypothetical protein, partial 0.26328974608 0.5 0.23671025392 +UniRef50_P0A9S2 Lactaldehyde reductase 0.249092158891 0.5 0.250907841109 +UniRef50_Q2S8W1 Glucose 6 phosphate isomerase 0.961470321261 0.5 -0.461470321261 +UniRef50_A8LL11 HTH type transcriptional regulator 1.01379904419 0.5 -0.513799044188 +UniRef50_Q9RRG5 0.00134908792914 0.5 0.498650912071 +UniRef50_Q9RRG4 0.00469351063196 0.5 0.495306489368 +UniRef50_F5MXW8 Baseplate J like family protein 1.03205528675 0.5 -0.532055286746 +UniRef50_A8LSD5 3 oxoadipate enol lactonase 6.06079091948 0.499999999998 -5.56079091947 +UniRef50_J9YYN1 1.54508190108 0.5 -1.04508190108 +UniRef50_Q833W9 Tagatose 6 phosphate kinase 0.0221216322156 0.5 0.477878367785 +UniRef50_A3M8U5 Heavy metal RND efflux outer membrane protein CzcC family 0.00757866715366 0.5 0.492421332847 +UniRef50_R4Q8N7 Oxidoreductase 0.0233281103814 0.5 0.476671889618 +UniRef50_W7S9M8 Pyruvate dehydrogenase E1 component 0.653011526552 0.5 -0.153011526552 +UniRef50_A6LSX8 0.0461828203011 0.5 0.453817179699 +UniRef50_U3U1D9 0.444257323223 0.5 0.0557426767773 +UniRef50_UPI000363B64B hypothetical protein 0.0344592993823 0.5 0.465540700617 +UniRef50_C5N6E7 Hydrolase, haloacid dehalogenase like family protein 1.41618228782 0.500000000002 -0.916182287824 +UniRef50_C7ZTC0 FecCD transporter 1.9274650057 0.5 -1.4274650057 +UniRef50_L1KZ69 0.277273605009 0.5 0.222726394991 +UniRef50_UPI000174446D ABC transporter permease 0.103897818949 0.5 0.396102181051 +UniRef50_Q1AVI9 NADH quinone oxidoreductase subunit K 0.121513958066 0.5 0.378486041934 +UniRef50_M1MG71 Methyl accepting chemotaxis sensory transducer 0.265910258737 0.5 0.234089741263 +UniRef50_UPI00028A050D translation factor Sua5 0.207359680078 0.5 0.292640319922 +UniRef50_F6EUQ1 0.293133700164 0.5 0.206866299836 +UniRef50_UPI000379F19F hypothetical protein 0.429961702081 0.5 0.0700382979193 +UniRef50_O33948 Catechol 1,2 dioxygenase 1 0.102310082786 0.5 0.397689917214 +UniRef50_Q4L7V3 mRNA interferase MazF 0.30482850971 0.5 0.19517149029 +UniRef50_A6LZS0 0.12603264037 0.5 0.37396735963 +UniRef50_E4SGC1 ABC transporter related protein 0.112696817651 0.5 0.387303182349 +UniRef50_A6LZS9 0.294838923583 0.5 0.205161076417 +UniRef50_UPI00037BA2BE hypothetical protein 0.291756491538 0.5 0.208243508462 +UniRef50_UPI00036A311B hypothetical protein 0.0204951547777 0.5 0.479504845223 +UniRef50_A4WVM4 1.2698684866 0.499999999999 -0.769868486603 +UniRef50_I3TI18 Cysteine desulfuration protein SufE 2.74981546626 0.500000000001 -2.24981546626 +UniRef50_UPI000262CF2F amino acid ABC transporter 0.131697190655 0.5 0.368302809345 +UniRef50_F0YPX2 0.223065175666 0.5 0.276934824334 +UniRef50_O27818 dTDP 4 dehydrorhamnose 3,5 epimerase 0.0638081322384 0.5 0.436191867762 +UniRef50_M1Z2C4 0.592324242876 0.5 -0.0923242428756 +UniRef50_UPI0003682E40 hypothetical protein 0.00171871373513 0.5 0.498281286265 +UniRef50_UPI0003B7B255 hypothetical protein 0.91052690326 0.5 -0.41052690326 +UniRef50_E6TTW0 Cyclic nucleotide binding protein 0.125546691688 0.5 0.374453308312 +UniRef50_P57134 DNA replication protein DnaC 0.280671603897 0.5 0.219328396103 +UniRef50_UPI0004706BF7 hypothetical protein 1.13081312239 0.5 -0.630813122394 +UniRef50_G4LJE6 TonB dependent receptor 1.66612642936 0.5 -1.16612642936 +UniRef50_G7M1W4 Two component transcriptional regulator, winged helix family 0.112744972219 0.5 0.387255027781 +UniRef50_B1JZW0 Glutamate putrescine ligase 1.88937154705 0.5 -1.38937154705 +UniRef50_Q9X4Q9 Flagellar motor switch protein FliG 0.971983710818 0.5 -0.471983710818 +UniRef50_H2HFL3 Metal nicotianamine transporter YSL2 0.00338690188938 0.5 0.496613098111 +UniRef50_A5ULB0 Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF 3.76963509542 0.5 -3.26963509542 +UniRef50_X5E2B2 Nucleoside triphosphatase YtkD 2.3418695145 0.499999999999 -1.8418695145 +UniRef50_A6LTZ5 0.143750187424 0.5 0.356249812576 +UniRef50_Q3IV04 Transposase, IS3 IS911family 0.391476791106 0.5 0.108523208894 +UniRef50_UPI0003957091 0.187647929136 0.5 0.312352070864 +UniRef50_V8FTX6 Hemerythrin 0.255877733005 0.5 0.244122266995 +UniRef50_Q92WJ0 Fe ions import ATP binding protein FbpC 1 1.5174476124 0.5 -1.0174476124 +UniRef50_C9D087 1.83181099672 0.5 -1.33181099672 +UniRef50_UPI0004717DF9 hypothetical protein 0.011321100223 0.5 0.488678899777 +UniRef50_R4XYL7 Glutamate dehydrogenase 0.00296198451946 0.5 0.497038015481 +UniRef50_C6AN40 Tellurite resistance protein TehB 0.574398295881 0.5 -0.0743982958814 +UniRef50_A6LTZ8 0.699726880898 0.5 -0.199726880898 +UniRef50_UPI0003B4BD8A Ktr system potassium transporter B 2.69904469522 0.499999999998 -2.19904469522 +UniRef50_B5EXJ7 HMP PP phosphatase 1.13536683016 0.5 -0.635366830159 +UniRef50_B3DTE2 DNA directed RNA polymerase subunit beta 0.000193317165258 0.5 0.499806682835 +UniRef50_G9PNM2 0.676422340181 0.5 -0.176422340181 +UniRef50_UPI00037627C6 hypothetical protein 3.06938218136 0.500000000001 -2.56938218136 +UniRef50_UPI0004561990 hypothetical protein PFL1_04301 2.61403090036 0.500000000001 -2.11403090036 +UniRef50_Q8PLY8 Sulfoxide reductase catalytic subunit YedY 11.8538415204 0.499999999994 -11.3538415204 +UniRef50_U3T5A3 AraC family transcriptional regulator 0.0087722060564 0.5 0.491227793944 +UniRef50_V8FJ54 0.790416558415 0.5 -0.290416558415 +UniRef50_Q71YZ5 2 succinylbenzoate CoA ligase 0.00280408005197 0.5 0.497195919948 +UniRef50_R6QTT5 0.947273319233 0.5 -0.447273319233 +UniRef50_UPI0002626035 N acylamino acid racemase 0.0063618700951 0.5 0.493638129905 +UniRef50_G7ZBU5 0.0132533681485 0.5 0.486746631851 +UniRef50_B1I4C7 Phospho N acetylmuramoyl pentapeptide transferase 0.166618294062 0.499999999999 0.333381705939 +UniRef50_Q0BXH7 Elongation factor P 3.11804745715 0.500000000004 -2.61804745715 +UniRef50_A0A024K7R9 0.0123415398976 0.5 0.487658460103 +UniRef50_B2V461 Molecular chaperone, DnaJ family 0.168010144295 0.5 0.331989855705 +UniRef50_Q46892 Inner membrane permease YgbN 0.601307472646 0.5 -0.101307472646 +UniRef50_Q57962 Probable phosphoenolpyruvate synthase 0.0187104722361 0.5 0.481289527764 +UniRef50_Q9RSQ3 Phosphoglucosamine mutase 0.00182521990057 0.5 0.498174780099 +UniRef50_Q9KV02 Sulfurtransferase TusD homolog 0.293317073904 0.5 0.206682926096 +UniRef50_A4WUU1 0.481728951198 0.5 0.0182710488022 +UniRef50_B9L5K2 3 isopropylmalate dehydratase small subunit 2.35843549418 0.499999999998 -1.85843549418 +UniRef50_P9WQ18 Trehalose synthase amylase TreS 0.0232411345882 0.5 0.476758865412 +UniRef50_Q7WK82 ATP dependent Clp protease ATP binding subunit ClpX 0.569814116018 0.5 -0.0698141160183 +UniRef50_M1HJ56 Arginine serine rich splicing factor SR45 transcript VII 0.282268520166 0.5 0.217731479834 +UniRef50_B9JX70 ABC transporter membrane spanning protein 3.7794337927 0.5 -3.2794337927 +UniRef50_E4PYK4 2.92334099585 0.5 -2.42334099585 +UniRef50_UPI00034DD06F hypothetical protein 0.12765795177 0.5 0.37234204823 +UniRef50_Q49YI2 Putative dipeptidase SSP1012 2.01470065912 0.500000000001 -1.51470065912 +UniRef50_Q6NAT0 Holliday junction ATP dependent DNA helicase RuvA 0.19706420974 0.5 0.30293579026 +UniRef50_UPI000370A604 hypothetical protein 0.751747177144 0.5 -0.251747177144 +UniRef50_Q7ML43 0.325423799689 0.5 0.174576200311 +UniRef50_UPI000367EFAE hypothetical protein 0.161821979058 0.5 0.338178020942 +UniRef50_R6UK77 0.20886910875 0.5 0.29113089125 +UniRef50_J7M6X3 MarR family transcriptional regulator 1.68451963571 0.5 -1.18451963571 +UniRef50_H6RV56 ABC transporter substrate binding protein 2.55630528717 0.5 -2.05630528717 +UniRef50_P17055 Spheroidene monooxygenase 0.821627976036 0.5 -0.321627976036 +UniRef50_B7UZN8 0.502074236792 0.5 -0.00207423679164 +UniRef50_W6LVN7 3.77783889898 0.500000000002 -3.27783889898 +UniRef50_A4YNQ7 Fructose 1,6 bisphosphatase class 1 1.18815496808 0.500000000001 -0.688154968076 +UniRef50_UPI00039CC0CD hypothetical protein 0.083003129806 0.5 0.416996870194 +UniRef50_UPI00047A1A5F hypothetical protein 0.069542438311 0.499999999999 0.43045756169 +UniRef50_Q4L6F4 Penicillin binding protein 2 1.86802228936 0.500000000002 -1.36802228936 +UniRef50_G0K3J8 Aspartate transaminase 2.83541873128 0.5 -2.33541873128 +UniRef50_N6A8S2 1.57376984412 0.5 -1.07376984412 +UniRef50_UPI000381D193 hypothetical protein 1.83848900064 0.5 -1.33848900064 +UniRef50_V9AXK3 0.0207144906119 0.5 0.479285509388 +UniRef50_Q9SZX3 Argininosuccinate synthase, chloroplastic 0.0319822737961 0.5 0.468017726204 +UniRef50_UPI00046EE386 hypothetical protein 0.303764177313 0.5 0.196235822687 +UniRef50_Q2RJ31 Glutamate 1 semialdehyde 2,1 aminomutase 1.25936452127 0.5 -0.759364521272 +UniRef50_T1IAF8 0.159831295847 0.5 0.340168704153 +UniRef50_Q652A8 UDP glucose 4 epimerase 3 0.473310385277 0.5 0.0266896147229 +UniRef50_C7NJ54 0.223630331753 0.5 0.276369668247 +UniRef50_A0A009P2J7 SnoaL like polyketide cyclase family protein 0.687083874232 0.5 -0.187083874232 +UniRef50_P31884 Quinone reactive Ni Fe hydrogenase small chain 0.0577789030043 0.5 0.442221096995 +UniRef50_M7MSG6 Putative metal ABC transporter metal binding protein 0.0896322874221 0.5 0.410367712578 +UniRef50_A6LQU3 Integral membrane sensor signal transduction histidine kinase 0.0293388517837 0.5 0.470661148216 +UniRef50_C1DR09 0.573525029294 0.5 -0.073525029294 +UniRef50_K9IDN1 Lactose PTS family porter repressor 0.468363989118 0.5 0.0316360108824 +UniRef50_Q0SA63 Flavin binding monooxygenase 4.2338760502 0.5 -3.7338760502 +UniRef50_UPI00046253F9 PTS sugar transporter subunit IIA 0.166324343507 0.5 0.333675656493 +UniRef50_UPI00026C726F cell division protein FtsZ 0.12998904227 0.500000000001 0.37001095773 +UniRef50_W5X4V3 0.0217723310432 0.5 0.478227668957 +UniRef50_A3TWL6 2.00398760758 0.5 -1.50398760758 +UniRef50_D9RF73 0.288702784672 0.5 0.211297215328 +UniRef50_F4NHW2 0.143761834308 0.5 0.356238165692 +UniRef50_UPI0003B4D2F4 hypothetical protein 0.234341051451 0.5 0.265658948549 +UniRef50_UPI0002628E38 arginine ABC transporter ATP binding protein 0.946636855394 0.5 -0.446636855394 +UniRef50_A4EQN9 0.0789685333497 0.500000000001 0.42103146665 +UniRef50_UPI0003A677C1 histidine kinase 0.706252806426 0.5 -0.206252806426 +UniRef50_A5UNL6 Transposase, RNaseH like family 1.59771746546 0.5 -1.09771746546 +UniRef50_U5NRH5 0.302936964769 0.5 0.197063035231 +UniRef50_W5X9W9 Glucose 6 phosphate 1 dehydrogenase 0.0274982709655 0.500000000001 0.472501729034 +UniRef50_D5WDJ8 Ectoine hydroxyectoine ABC transporter, ATP binding protein 1.26046874667 0.5 -0.760468746671 +UniRef50_UPI0003B7A139 NUDIX hydrolase 7.7220165402 0.499999999999 -7.2220165402 +UniRef50_Q1NAN1 0.149071951786 0.5 0.350928048214 +UniRef50_UPI0003A86DCB sec independent translocation protein mttA Hcf106 0.662901260892 0.5 -0.162901260892 +UniRef50_A6V2V4 3 isopropylmalate dehydratase small subunit 0.863291850595 0.5 -0.363291850595 +UniRef50_T0ZWG6 Phosphoribosylformylglycinamidine synthase I 0.380986731341 0.5 0.119013268659 +UniRef50_UPI000369DCC7 hypothetical protein 0.150203894223 0.5 0.349796105777 +UniRef50_A0A024HJZ5 1.50697352394 0.5 -1.00697352394 +UniRef50_P61951 Flavodoxin 1 2.82375034295 0.499999999999 -2.32375034294 +UniRef50_Q9ZL73 Flagellar biosynthetic protein FlhB 0.0428152937814 0.5 0.457184706218 +UniRef50_U3ST65 Fructan hydrolase FruB 1.76199142253 0.5 -1.26199142253 +UniRef50_B7VA67 1.28861090924 0.500000000001 -0.788610909236 +UniRef50_Q0A562 0.664925735661 0.5 -0.164925735661 +UniRef50_Q8EGH1 Ditrans,polycis undecaprenyl diphosphate synthase farnesyl diphosphate specific) 3.99081812222 0.500000000004 -3.49081812222 +UniRef50_P77544 Glutathione S transferase YfcF 65.3453603147 0.500000000003 -64.8453603147 +UniRef50_B6JMC7 Phosphotransacetylase 0.176051659206 0.5 0.323948340794 +UniRef50_Q6G6T1 MerR family regulatory protein 8.02826507632 0.499999999999 -7.52826507632 +UniRef50_B1JFW5 Putative sialic acid transporter 1.97490277606 0.499999999999 -1.47490277606 +UniRef50_O31688 Zinc transporting ATPase 0.00372339233481 0.5 0.496276607666 +UniRef50_B0T2U9 ChaC family protein 0.579255368702 0.5 -0.0792553687017 +UniRef50_Q5HG20 Diaminopimelate decarboxylase 3.14900594099 0.5 -2.64900594099 +UniRef50_P39405 Ferric iron reductase protein FhuF 5.73343217273 0.500000000001 -5.23343217273 +UniRef50_UPI0004674EC8 pseudouridine synthase 0.320801045072 0.5 0.179198954928 +UniRef50_UPI00037DA301 hypothetical protein 2.3904795774 0.5 -1.8904795774 +UniRef50_UPI0002DDF67E hypothetical protein 0.452758220234 0.5 0.0472417797656 +UniRef50_G8RZN0 0.101870558654 0.5 0.398129441345 +UniRef50_Q3J3J9 0.394487211769 0.5 0.105512788231 +UniRef50_B7UZJ0 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 0.300086019458 0.5 0.199913980542 +UniRef50_W0YUW2 Phosphoketolase 0.743769650864 0.5 -0.243769650864 +UniRef50_I0ZXX0 ATPase associated with various cellular activities AAA_5 1.10833120519 0.5 -0.60833120519 +UniRef50_Q9WZR0 CTP synthase 0.114300993352 0.5 0.385699006648 +UniRef50_Q8ZJF2 Tryptophan tRNA ligase 1.63852535784 0.5 -1.13852535784 +UniRef50_P44638 Lactoylglutathione lyase 6.20136188011 0.500000000002 -5.70136188011 +UniRef50_UPI000360EF37 hypothetical protein, partial 0.149165653443 0.5 0.350834346557 +UniRef50_G3NMT4 0.00701801699573 0.5 0.492981983004 +UniRef50_P0ABJ0 Cytochrome bo ubiquinol oxidase subunit 1 0.213201326388 0.5 0.286798673612 +UniRef50_Q04664 Galactosyl transferase CpsE 0.196188893329 0.5 0.303811106671 +UniRef50_Q88HN0 CobW P47K family protein 0.408011929041 0.5 0.0919880709591 +UniRef50_A5UMX1 Predicted membrane associated Zn dependent protease 2.61097608448 0.500000000002 -2.11097608449 +UniRef50_A5UP18 1.35459769876 0.5 -0.854597698762 +UniRef50_UPI00045E2399 PREDICTED 0.291424018717 0.5 0.208575981283 +UniRef50_A3SUN2 6.0948917206 0.499999999996 -5.5948917206 +UniRef50_P64452 1.33543321185 0.5 -0.835433211845 +UniRef50_W1GE26 Aerotaxis sensor receptor protein 0.31987268346 0.5 0.18012731654 +UniRef50_Q167K9 Chemotaxis response regulator protein glutamate methylesterase 3.61354050008 0.499999999999 -3.11354050008 +UniRef50_Q9A7N9 Guanylate kinase 0.0902690429771 0.5 0.409730957023 +UniRef50_P0AGJ6 5.89201755238 0.499999999997 -5.39201755237 +UniRef50_K4PRE7 PTS system beta glucoside specific EIIBCA component 0.0306673618581 0.5 0.469332638142 +UniRef50_U5MWY6 0.213772052712 0.5 0.286227947288 +UniRef50_R4GFK2 0.0558055757268 0.5 0.444194424273 +UniRef50_W7WSH9 0.0136554909135 0.500000000001 0.486344509086 +UniRef50_D0JTC4 Uroporphyrinogen decarboxylase 0.696926477471 0.5 -0.196926477471 +UniRef50_P0CQ36 Phosphoribosylaminoimidazole carboxylase 0.352047919203 0.5 0.147952080797 +UniRef50_A0A038FKH8 1.68371695765 0.5 -1.18371695765 +UniRef50_B9TKN7 0.710988268004 0.5 -0.210988268004 +UniRef50_F4SG83 Glycerol 3 phosphate transporter 3.35624391568 0.500000000003 -2.85624391569 +UniRef50_F9EIW4 2.42843763801 0.5 -1.92843763801 +UniRef50_UPI0003A9F6F6 molybdenum cofactor biosynthesis protein MoeA 0.0584694802072 0.5 0.441530519793 +UniRef50_P67634 Tyrosine recombinase XerS 1.65483778757 0.5 -1.15483778757 +UniRef50_P54473 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.0855631800257 0.5 0.414436819974 +UniRef50_K8AXM7 NADH ubiquinone oxidoreductase chain G 0.172816658516 0.5 0.327183341484 +UniRef50_O27633 Probable S methyl 5 thioinosine phosphorylase 3.38162027479 0.499999999996 -2.88162027478 +UniRef50_F2LRZ3 1.57209956559 0.499999999999 -1.07209956559 +UniRef50_X7Y8I7 0.0861682975479 0.499999999999 0.413831702453 +UniRef50_W1GDJ6 Ribonucleotide reductase transcriptional regulator NrdR 0.164223191574 0.5 0.335776808426 +UniRef50_P30871 Inorganic triphosphatase 1.57123642993 0.5 -1.07123642993 +UniRef50_Q16DT4 Magnesium chelatase 30 kDa subunit 1.29730599144 0.5 -0.797305991439 +UniRef50_P25747 2.40180636681 0.5 -1.90180636681 +UniRef50_V8G0E8 0.273439123238 0.5 0.226560876762 +UniRef50_Q5M061 NADPH dependent 7 cyano 7 deazaguanine reductase 0.0666371884332 0.5 0.433362811567 +UniRef50_Q1GFL6 0.99783018087 0.5 -0.49783018087 +UniRef50_A9UPG1 1.0837195651 0.499999999999 -0.583719565094 +UniRef50_UPI00035F8DA2 hypothetical protein 2.26370599957 0.5 -1.76370599957 +UniRef50_UPI00036C24C5 hypothetical protein 1.46215410464 0.5 -0.962154104636 +UniRef50_R7HEN4 Pseudouridine synthase 2.44267141456 0.5 -1.94267141456 +UniRef50_Q9JLJ2 4 trimethylaminobutyraldehyde dehydrogenase 0.202297264465 0.5 0.297702735535 +UniRef50_R9WF85 Oxidoreductase 0.0211344527406 0.5 0.47886554726 +UniRef50_L0KAS8 Sulfite reductase, subunit C 0.0654548206508 0.5 0.434545179349 +UniRef50_A6UYG3 1.85776405719 0.5 -1.35776405719 +UniRef50_U6F043 Transposase YhgA family protein 0.209720181053 0.5 0.290279818947 +UniRef50_A6DUS0 CarR 0.0174091380963 0.5 0.482590861904 +UniRef50_UPI000470D4BA amino acid permease, partial 0.689888286261 0.5 -0.189888286261 +UniRef50_E6UW30 5 nucleotidase domain containing protein 0.00178409186641 0.5 0.498215908133 +UniRef50_P75736 Esterase YbfF 0.98319900403 0.5 -0.48319900403 +UniRef50_UPI00036D73AB hypothetical protein 0.00663792392908 0.5 0.493362076071 +UniRef50_A6LRB4 Histidine kinase 0.0633055522458 0.500000000001 0.436694447753 +UniRef50_P37747 UDP galactopyranose mutase 0.292941987371 0.5 0.207058012629 +UniRef50_Q1IEH7 GTPase Der 0.0345687561058 0.5 0.465431243894 +UniRef50_UPI0003B66950 tetracycline transporter 0.0157142383983 0.5 0.484285761602 +UniRef50_D3QIS4 0.213040205205 0.5 0.286959794795 +UniRef50_P0AC26 Nitrite transporter NirC 3.05420673121 0.499999999999 -2.55420673121 +UniRef50_P71103 Phosphate acetyltransferase 0.0257577623762 0.5 0.474242237624 +UniRef50_A1JNH2 UPF0283 membrane protein YE2117 8.28768196904 0.5 -7.78768196904 +UniRef50_W7Z054 0.896672242014 0.5 -0.396672242014 +UniRef50_Q9K1N7 0.0468360174251 0.5 0.453163982575 +UniRef50_W1YTD2 0.632513419739 0.5 -0.132513419739 +UniRef50_E1VH08 Exodeoxyribonuclease III 0.0804355587443 0.5 0.419564441256 +UniRef50_A6R2L6 ATP dependent RNA helicase DBP9 0.229277416571 0.5 0.270722583429 +UniRef50_B8CX69 Predicted ATPase of the ABC class 1.12958214474 0.5 -0.629582144744 +UniRef50_D4JAE0 0.0437228542502 0.5 0.45627714575 +UniRef50_A4XKE2 Phosphopantetheine adenylyltransferase 0.038721256453 0.5 0.461278743547 +UniRef50_G7MBQ3 PTS system transcriptional activator 0.182032780604 0.5 0.317967219396 +UniRef50_M1JGK6 Ammonium transporter 0.328436983031 0.5 0.171563016969 +UniRef50_UPI000255A1E5 multi anti extrusion protein MatE 0.430120240168 0.5 0.0698797598317 +UniRef50_UPI00037C177B hypothetical protein 3.95146645704 0.499999999995 -3.45146645703 +UniRef50_Q8CS21 2 succinylbenzoate CoA ligase 3.55877999777 0.499999999994 -3.05877999776 +UniRef50_D3E0E9 1.74664167918 0.5 -1.24664167918 +UniRef50_P44869 Ribosomal RNA small subunit methyltransferase D 0.782582366715 0.5 -0.282582366715 +UniRef50_Q4A602 ATP synthase subunit alpha 0.0908945319639 0.499999999999 0.409105468037 +UniRef50_B9KML1 Response regulator receiver protein 0.577496064532 0.5 -0.0774960645317 +UniRef50_UPI0002C45261 PREDICTED 1.35094056244 0.5 -0.850940562444 +UniRef50_UPI0004702537 methionine ABC transporter ATP binding protein 0.612388290002 0.5 -0.112388290002 +UniRef50_W7VUU1 0.0827661434596 0.5 0.41723385654 +UniRef50_UPI0003B4C98F RpiR family transcriptional regulator 0.509989871483 0.5 -0.00998987148274 +UniRef50_D8JJP4 AraC type DNA binding domain containing protein 0.0954581690287 0.5 0.404541830971 +UniRef50_UPI0003793A77 hypothetical protein 0.449344374734 0.5 0.0506556252657 +UniRef50_A3M540 TonB dependent receptor 0.0065182759847 0.5 0.493481724015 +UniRef50_UPI00047C9351 hypothetical protein, partial 0.175953242069 0.5 0.324046757931 +UniRef50_U3SV52 Acyl CoA thioesterase 1.53700793346 0.5 -1.03700793346 +UniRef50_K1UTW6 0.133204592932 0.5 0.366795407068 +UniRef50_D2ZP15 3.18009942465 0.500000000001 -2.68009942465 +UniRef50_Q79UU3 Bll2159 protein 1.21686666574 0.5 -0.716866665739 +UniRef50_Q5F9U0 Phenylalanine tRNA ligase alpha subunit 1.07476165797 0.5 -0.574761657968 +UniRef50_Q3KDB9 Alanine racemase domain protein 0.735039412223 0.5 -0.235039412223 +UniRef50_P0A9P5 Thioredoxin reductase 0.586583796004 0.5 -0.0865837960038 +UniRef50_C7NFG6 Cell envelope related function transcriptional attenuator common domain protein 0.168392472003 0.5 0.331607527997 +UniRef50_E1ZFT3 0.118037211619 0.5 0.381962788381 +UniRef50_A3P9L6 1.06375310076 0.5 -0.563753100761 +UniRef50_U3T490 0.0512404929616 0.5 0.448759507038 +UniRef50_A4A899 0.584291739594 0.5 -0.0842917395942 +UniRef50_A6LY62 0.272771858813 0.5 0.227228141187 +UniRef50_UPI0001DD0936 hypothetical protein, partial 2.06996119589 0.5 -1.56996119589 +UniRef50_U6M2X4 0.361520911611 0.5 0.138479088389 +UniRef50_I3ZJH3 GAF domain containing protein 0.175332501425 0.5 0.324667498575 +UniRef50_Q6GF11 Protein SprT like 6.28085400216 0.500000000004 -5.78085400217 +UniRef50_UPI000471A4D9 hypothetical protein 0.874631631557 0.5 -0.374631631557 +UniRef50_UPI000362ADEC hypothetical protein 0.119794568939 0.5 0.38020543106 +UniRef50_A6Q6L7 Transketolase 0.00553212555717 0.5 0.494467874443 +UniRef50_A9LZ37 Tail fibre protein, putative 0.11160861384 0.5 0.38839138616 +UniRef50_P45550 2.91984374022 0.5 -2.41984374022 +UniRef50_M1XJU0 Transposase for IS1272 3.85384215301 0.5 -3.35384215301 +UniRef50_P75167 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.789732576657 0.5 -0.289732576657 +UniRef50_B9DM19 50S ribosomal protein L3 1.30116910963 0.5 -0.801169109634 +UniRef50_I6T7R3 ATP binding protein 1.07357902181 0.5 -0.573579021807 +UniRef50_P0ADP0 Flavin mononucleotide phosphatase YigB 1.26773203736 0.5 -0.767732037356 +UniRef50_Q5HQS0 Acetyltransferase, GNAT family 2.18029173036 0.5 -1.68029173036 +UniRef50_UPI000365881D UDP N acetylmuramate alanine ligase, partial 1.04021092097 0.5 -0.540210920965 +UniRef50_UPI000464B7EB hypothetical protein, partial 1.09259057612 0.5 -0.592590576116 +UniRef50_Q06464 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.557102989001 0.5 -0.0571029890013 +UniRef50_B3GYD9 1.19498180557 0.5 -0.694981805566 +UniRef50_UPI0003745C94 hypothetical protein 0.263782516814 0.5 0.236217483186 +UniRef50_O67444 0.20220142665 0.5 0.297798573351 +UniRef50_UPI00029AB2BE DNA processing protein 0.634581483041 0.5 -0.134581483041 +UniRef50_UPI000373702C hypothetical protein 0.332015940329 0.5 0.167984059671 +UniRef50_B2VK30 Protein TsgA homolog 1.86453742007 0.499999999999 -1.36453742007 +UniRef50_K6LK64 Diguanylate cyclase domain protein 0.0980748503459 0.5 0.401925149654 +UniRef50_K2SED6 0.915032043814 0.5 -0.415032043814 +UniRef50_Q9RXB5 0.00088924207111 0.5 0.499110757929 +UniRef50_Q9RXB7 0.00221394589012 0.5 0.49778605411 +UniRef50_G7U855 Ser Thr phosphatase family protein 0.0251891202074 0.5 0.474810879793 +UniRef50_I3YFJ2 NADH dehydrogenase subunit M 0.0113009921908 0.5 0.488699007809 +UniRef50_Q58690 Putative fumarate hydratase subunit alpha 7.1273979959 0.499999999995 -6.62739799589 +UniRef50_A6LR96 Radical SAM domain protein 0.889147649538 0.5 -0.389147649538 +UniRef50_L7WSQ0 2.10398005264 0.499999999999 -1.60398005264 +UniRef50_B4RIY5 Rsp 0.0121267363276 0.5 0.487873263672 +UniRef50_UPI0002889AF8 alcohol dehydrogenase 1.51602645943 0.5 -1.01602645943 +UniRef50_D6PE21 Predicted flagellar hook capping protein 0.363484499495 0.5 0.136515500505 +UniRef50_G7UVD4 Dihydrolipoamide dehydrogenase 0.0222695294971 0.5 0.477730470503 +UniRef50_Q6FDN3 Glycerol kinase 0.107242377033 0.5 0.392757622967 +UniRef50_A5IV34 50S ribosomal protein L3 2.34199192025 0.5 -1.84199192025 +UniRef50_J9B6L5 0.275382886996 0.5 0.224617113004 +UniRef50_UPI00029ABC7B LysR family transcriptional regulator, partial 0.971665089021 0.5 -0.471665089021 +UniRef50_Q0BS24 Acetolactate synthase small subunit 3.93574494268 0.499999999997 -3.43574494267 +UniRef50_P37924 Outer membrane usher protein FimD 1.30277090596 0.5 -0.802770905963 +UniRef50_U3TX51 Malonyl CoA acyl carrier protein transacylase 0.388775656153 0.5 0.111224343847 +UniRef50_UPI000361F37C hypothetical protein 1.17371512301 0.5 -0.673715123007 +UniRef50_UPI0002EB7738 hypothetical protein 0.121399554783 0.5 0.378600445217 +UniRef50_V9UBP5 0.417701269123 0.5 0.0822987308771 +UniRef50_I1EPG5 0.238855914088 0.5 0.261144085912 +UniRef50_E9BYY8 0.062687608142 0.5 0.437312391858 +UniRef50_I2QVL7 0.798734654853 0.5 -0.298734654853 +UniRef50_E3A0E2 0.065336359106 0.5 0.434663640894 +UniRef50_UPI0003777C1D hypothetical protein 3.86789779207 0.499999999996 -3.36789779206 +UniRef50_A9BF34 50S ribosomal protein L7 L12 0.49361060393 0.5 0.00638939606994 +UniRef50_T0TSM6 Histidine kinase, putative 1.42431215472 0.5 -0.92431215472 +UniRef50_UPI00037689C2 hypothetical protein 0.0206520515028 0.5 0.479347948498 +UniRef50_UPI00023B2B80 PREDICTED 0.111152951591 0.5 0.388847048409 +UniRef50_A4X0E6 0.810492433818 0.5 -0.310492433818 +UniRef50_G8V4L1 2.16852968785 0.499999999996 -1.66852968784 +UniRef50_W4S2X5 Alkyl hydroperoxide reductase subunit F 0.16315184481 0.5 0.33684815519 +UniRef50_E2XSQ7 Transcriptional regulator, AraC family 0.646253145418 0.5 -0.146253145418 +UniRef50_U4TYH6 1.15882504687 0.5 -0.658825046866 +UniRef50_UPI0003B7313F GNAT family acetyltransferase 0.804721809778 0.5 -0.304721809778 +UniRef50_UPI000262A595 membrane protein 7.48957921254 0.500000000004 -6.98957921254 +UniRef50_UPI0002378354 AraC family transcriptional regulator 4.18582500335 0.500000000004 -3.68582500335 +UniRef50_F0Y7I6 0.348786068033 0.5 0.151213931967 +UniRef50_UPI00041D5BF9 transcription termination factor Rho 0.897005900156 0.5 -0.397005900156 +UniRef50_D0IRH3 0.0815193274343 0.499999999999 0.418480672566 +UniRef50_Q3AE81 Adenine deaminase 2 1.87361215705 0.5 -1.37361215705 +UniRef50_W1FF26 9.87579924227 0.499999999997 -9.37579924227 +UniRef50_Q3IV87 Caspase 1, p20 1.75261101553 0.5 -1.25261101553 +UniRef50_W6BZ44 Cupin domain protein 0.19059419841 0.5 0.30940580159 +UniRef50_UPI000363D9BF hypothetical protein, partial 0.97651118504 0.5 -0.47651118504 +UniRef50_Q8FT12 Tryptophan synthase beta chain 2 0.76936784165 0.5 -0.26936784165 +UniRef50_Q73NM0 Chorismate synthase 0.12069532482 0.5 0.37930467518 +UniRef50_S5YXU8 ErfK YbiS YcfS YnhG family protein 0.424184852405 0.5 0.0758151475946 +UniRef50_Q0AK81 Ferric uptake regulator, Fur family 2.34060859847 0.5 -1.84060859847 +UniRef50_F0K4Y1 2,3 cyclic nucleotide 2phosphodiesterase 0.172431325533 0.5 0.327568674467 +UniRef50_D7A6Y6 0.66896234558 0.5 -0.16896234558 +UniRef50_X8ACG0 Pyridine nucleotide disulfide oxidoreductase family protein 0.00898375162284 0.5 0.491016248377 +UniRef50_P29928 Uroporphyrinogen III C methyltransferase 0.105588260998 0.5 0.394411739002 +UniRef50_Q2LTA1 4 hydroxy tetrahydrodipicolinate synthase 0.092819995955 0.5 0.407180004045 +UniRef50_O83571 Transketolase 1.08712737836 0.5 -0.587127378365 +UniRef50_P37518 Ribosome binding ATPase YchF 0.740940396747 0.5 -0.240940396747 +UniRef50_D9RHA1 2.58081194314 0.5 -2.08081194314 +UniRef50_A5IVA9 1.88576183406 0.5 -1.38576183406 +UniRef50_UPI0003763331 hypothetical protein 0.387273006146 0.5 0.112726993854 +UniRef50_UPI00016C4318 hypothetical protein 0.898123883861 0.5 -0.398123883861 +UniRef50_UPI000255CEAC 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.0739906575997 0.5 0.4260093424 +UniRef50_UPI00036D0344 hypothetical protein, partial 1.4883215426 0.500000000001 -0.988321542598 +UniRef50_F8GWB2 Aromatic compounds catabolic protein 0.354554249704 0.5 0.145445750296 +UniRef50_X5DV87 Molybdate ABC transporter, periplasmic molybdate binding protein 1.56594551289 0.500000000001 -1.0659455129 +UniRef50_UPI0004541A53 PREDICTED 0.119924966194 0.5 0.380075033806 +UniRef50_UPI000360E9DE hypothetical protein 2.82097210298 0.500000000001 -2.32097210298 +UniRef50_P55734 Inner membrane protein YgaP 0.98097679289 0.5 -0.48097679289 +UniRef50_UPI0003B40AC8 ABC transporter 0.120035160604 0.500000000001 0.379964839396 +UniRef50_G7MCR1 Taurine transporting ATPase 0.0847517402822 0.5 0.415248259718 +UniRef50_Q8DVQ3 Ribosome maturation factor RimP 0.998167893734 0.5 -0.498167893734 +UniRef50_C7NA19 Ribonucleoside diphosphate reductase subunit beta 1.87034741032 0.500000000002 -1.37034741032 +UniRef50_X1LB27 Marine sediment metagenome DNA, contig 0.0771351482454 0.499999999999 0.422864851755 +UniRef50_UPI0001E2E6F3 transport system permease 0.716702024081 0.5 -0.216702024081 +UniRef50_A3N3F8 3 dehydroquinate dehydratase 1.15329462562 0.5 -0.653294625619 +UniRef50_K0RWJ4 0.392379605214 0.5 0.107620394786 +UniRef50_A3TPX9 0.0256600484384 0.5 0.474339951562 +UniRef50_UPI0003B75E06 preprotein translocase subunit TatA 0.668111276196 0.5 -0.168111276196 +UniRef50_Q73FJ4 Glutamine amidotransferase subunit PdxT 1.38186003386 0.5 -0.881860033861 +UniRef50_Q1JAW0 DNA repair protein RecN 0.542033669371 0.5 -0.0420336693712 +UniRef50_UPI00037D1EFC ABC transporter 0.0320960606525 0.5 0.467903939348 +UniRef50_P0A0S5 Cell division protein FtsZ 0.0479782209174 0.5 0.452021779083 +UniRef50_A3PKK1 Transcriptional regulator, LuxR family 1.35601122928 0.5 -0.856011229281 +UniRef50_UPI000185FC5F hypothetical protein TGME49_010350 0.641728828441 0.5 -0.141728828441 +UniRef50_F3R0E6 Cobalt transport protein 0.234368337887 0.5 0.265631662113 +UniRef50_A0KF56 Trap transporter solute receptor, taxi family 2.1551955233 0.5 -1.6551955233 +UniRef50_Q8TY21 GTP cyclohydrolase MptA 3.41480839221 0.500000000002 -2.91480839221 +UniRef50_A3PPL1 Aminotransferase 1.52163845541 0.5 -1.02163845541 +UniRef50_R5G6A1 Cyclopropane fatty acyl phospholipid synthase 0.310282019421 0.5 0.189717980579 +UniRef50_P43799 Anaerobic glycerol 3 phosphate dehydrogenase subunit A 3.31881445995 0.499999999997 -2.81881445994 +UniRef50_Q99RJ0 Protein flp 1.47555552261 0.5 -0.975555522612 +UniRef50_F0VWI5 PTT family thiamin transporter 7.08013948518 0.500000000003 -6.58013948518 +UniRef50_Q12PZ2 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.361761672798 0.5 0.138238327202 +UniRef50_Q8FGS9 Ribosomal RNA small subunit methyltransferase F 1.87590818385 0.500000000001 -1.37590818385 +UniRef50_U7PCU9 0.00682365719907 0.5 0.493176342801 +UniRef50_UPI0001851281 aldehyde dehydrogenase 0.309938710204 0.5 0.190061289796 +UniRef50_G8NCG2 Short chain dehydrogenase reductase SDR 0.0514429616762 0.5 0.448557038324 +UniRef50_Q99XQ7 Elongation factor Ts 0.62954419676 0.5 -0.12954419676 +UniRef50_A4WSL4 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 67.8785184736 0.499999999987 -67.3785184735 +UniRef50_UPI00045EAF7F amidase 1.25401506867 0.500000000001 -0.754015068667 +UniRef50_P22098 Tryptophan biosynthesis protein TrpCF 2.95023073919 0.5 -2.45023073919 +UniRef50_UPI00037775E1 hypothetical protein 0.258487865426 0.5 0.241512134574 +UniRef50_D6GRE6 CobQ CobB MinD ParA nucleotide binding domain protein 0.0541645491674 0.5 0.445835450832 +UniRef50_UPI0000510540 aspartate ammonia lyase 0.773315651686 0.5 -0.273315651686 +UniRef50_UPI00034B0665 glucose 1 phosphate adenylyltransferase 0.216276265417 0.5 0.283723734583 +UniRef50_Q46802 2.4151649651 0.5 -1.9151649651 +UniRef50_O30019 Pyruvate carboxylase subunit A 0.253257802745 0.5 0.246742197255 +UniRef50_Q49VK7 Secretory antigen SsaA like protein 0.998225282401 0.5 -0.498225282401 +UniRef50_W4UBQ2 Glucoamylase S1 S2 0.530026804474 0.5 -0.0300268044744 +UniRef50_Q46809 3.27068950111 0.5 -2.77068950111 +UniRef50_Q46808 0.750410963097 0.5 -0.250410963097 +UniRef50_B0VB06 0.177763072361 0.5 0.322236927639 +UniRef50_G7M9G8 Signal peptidase I 0.595038633908 0.5 -0.095038633908 +UniRef50_Q6F985 Protein TolB 0.0115801577856 0.5 0.488419842214 +UniRef50_A8MIR6 Heavy metal translocating P type ATPase 0.56071476886 0.5 -0.0607147688601 +UniRef50_Q6GI34 Glutamyl endopeptidase 3.68022985575 0.5 -3.18022985575 +UniRef50_A0A011EDI0 0.171681334416 0.5 0.328318665584 +UniRef50_W5VF17 Beta aspartyl peptidase 2.23135753097 0.5 -1.73135753097 +UniRef50_A6FSN1 0.926429556214 0.5 -0.426429556214 +UniRef50_UPI00046B7987 PREDICTED 1.10067963465 0.5 -0.600679634649 +UniRef50_UPI00037A4252 hypothetical protein 0.70966934985 0.5 -0.20966934985 +UniRef50_UPI00037DFE14 hypothetical protein 0.0126004951089 0.5 0.487399504891 +UniRef50_UPI0004698FEC anti sigma regulatory factor 0.0110703981427 0.5 0.488929601857 +UniRef50_B7H2F2 TonB dependent siderophore receptor family protein 0.00879174744318 0.5 0.491208252557 +UniRef50_UPI0003621DA0 hypothetical protein 5.72626524663 0.500000000002 -5.22626524663 +UniRef50_F8HDH3 N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase 2.26932566557 0.5 -1.76932566557 +UniRef50_E1VQ96 1.99911446586 0.5 -1.49911446586 +UniRef50_V1VWE5 Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA 2.00563791144 0.5 -1.50563791144 +UniRef50_Q57624 Aspartyl glutamyl tRNA amidotransferase subunit B 4.84007355235 0.499999999997 -4.34007355235 +UniRef50_P38942 4 hydroxybutyrate coenzyme A transferase 0.205002886554 0.5 0.294997113446 +UniRef50_Q8DW17 Putative agmatine deiminase 0.684632741498 0.5 -0.184632741498 +UniRef50_Q2RRP2 Fructose 1,6 bisphosphatase class 1 0.888934352176 0.5 -0.388934352176 +UniRef50_G7LXK3 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.32567230027 0.5 0.17432769973 +UniRef50_A2RLU5 Bifunctional protein FolD 1.5805075649 0.5 -1.0805075649 +UniRef50_UPI00047C45C3 hypothetical protein 2.49817334188 0.5 -1.99817334188 +UniRef50_D4HC59 MazG family protein 0.0560578446978 0.5 0.443942155302 +UniRef50_P76909 1.70241810022 0.5 -1.20241810022 +UniRef50_F0RK09 Peptidase U32 0.00141252300711 0.500000000001 0.498587476992 +UniRef50_UPI000479CC6C pseudouridine synthase 0.588425008959 0.5 -0.0884250089586 +UniRef50_R7G2P1 tRNA 2 O) methyltransferase 0.592470413026 0.5 -0.0924704130263 +UniRef50_Q2KAV8 UPF0061 protein RHE_CH01223 0.0397002719397 0.5 0.46029972806 +UniRef50_V4HW78 0.0085334447008 0.5 0.491466555299 +UniRef50_A4EDG0 1.58054637305 0.500000000001 -1.08054637305 +UniRef50_B4RQC6 Lipid II flippase FtsW 0.0514540711534 0.5 0.448545928846 +UniRef50_D8THS2 Pathogenesis related protein 1 like protein 0.138279763589 0.5 0.361720236411 +UniRef50_UPI000376F8EF hypothetical protein, partial 0.66742712697 0.5 -0.16742712697 +UniRef50_F4DL94 Beta lactamase domain containing protein 2.42174906987 0.500000000001 -1.92174906987 +UniRef50_C5QMP7 Nitrite reductase [NADH], large subunit 1.84196285905 0.499999999999 -1.34196285904 +UniRef50_Q9RYB4 GTP cyclohydrolase 1 0.00387403239658 0.5 0.496125967603 +UniRef50_P23224 Zinc metalloproteinase 0.00085640626657 0.499999999999 0.499143593734 +UniRef50_Q5HRK1 Ornithine cyclodeaminase mu crystallin family protein 1.0254386879 0.5 -0.525438687898 +UniRef50_UPI000426573E hypothetical protein 0.386050608449 0.5 0.113949391551 +UniRef50_F0L5S4 Segregation and condensation protein B 0.344899704315 0.5 0.155100295685 +UniRef50_R5FRB0 Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase 1.53659780659 0.5 -1.03659780659 +UniRef50_Q2W403 Electron transport complex subunit E 0.900664010893 0.5 -0.400664010893 +UniRef50_UPI0004636746 arabinose transporter permease 0.563804990026 0.5 -0.0638049900263 +UniRef50_Q57661 4.18838692394 0.5 -3.68838692394 +UniRef50_Q5V230 Probable aminomethyltransferase 0.0753436304577 0.5 0.424656369542 +UniRef50_U1W1Q2 0.00784307851162 0.500000000001 0.492156921487 +UniRef50_V5VE78 0.016625575193 0.5 0.483374424807 +UniRef50_V5VBQ5 Ribonuclease Z 0.0418423776336 0.5 0.458157622366 +UniRef50_X2HF59 Membrane protein 0.847297334328 0.5 -0.347297334328 +UniRef50_R5LLF3 Acetate CoA transferase subunit alpha 0.437346972221 0.5 0.0626530277792 +UniRef50_A5UII8 Lipid A disaccharide synthase 1.27849855541 0.5 -0.778498555414 +UniRef50_UPI0003F49601 hypothetical protein TREMEDRAFT_38243 0.0741471702689 0.500000000001 0.42585282973 +UniRef50_Q3JKL4 0.33326397726 0.5 0.16673602274 +UniRef50_UPI0004726B74 hypothetical protein 5.9301485286 0.499999999999 -5.4301485286 +UniRef50_F0RLT4 Homoserine dehydrogenase 0.00342024225992 0.5 0.49657975774 +UniRef50_R5ZCF8 0.116900036297 0.5 0.383099963703 +UniRef50_UPI000375252A hypothetical protein 0.0647458949596 0.5 0.43525410504 +UniRef50_Q8RQP4 NADP specific glutamate dehydrogenase 0.084386089385 0.5 0.415613910615 +UniRef50_UPI00036DFBB3 hypothetical protein 0.314607862753 0.5 0.185392137247 +UniRef50_R0DWK7 0.361963174028 0.5 0.138036825972 +UniRef50_F9YX60 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase 0.0178606612551 0.5 0.482139338745 +UniRef50_UPI0003769C5D hypothetical protein 0.0870100088337 0.5 0.412989991166 +UniRef50_UPI000472FB88 adenosylcobinamide kinase 0.29349729288 0.5 0.20650270712 +UniRef50_I4E1R6 3.48566307314 0.499999999999 -2.98566307313 +UniRef50_A4E9H7 0.0370238080974 0.5 0.462976191903 +UniRef50_UPI000248CE53 sugar ABC transporter substrate binding protein 0.119112068036 0.5 0.380887931964 +UniRef50_UPI0003B44826 hypothetical protein 0.328949353511 0.5 0.171050646489 +UniRef50_A8AXR0 Multidrug resistance protein B 1.50523072792 0.5 -1.00523072792 +UniRef50_B9TDS9 0.909972998024 0.5 -0.409972998024 +UniRef50_UPI000382B615 hypothetical protein 0.079671122038 0.5 0.420328877962 +UniRef50_F2E6Z5 Predicted protein 1.78594809878 0.500000000003 -1.28594809878 +UniRef50_A8IJS1 Glutamate synthase 5.03970406591 0.500000000004 -4.53970406591 +UniRef50_P76108 Putative ABC transporter periplasmic binding protein YdcS 1.30124162731 0.5 -0.801241627311 +UniRef50_Q05197 Phosphatidylethanolamine N methyltransferase 0.970974245256 0.5 -0.470974245256 +UniRef50_F5L317 0.566944695667 0.5 -0.0669446956674 +UniRef50_UPI00040DE43B hypothetical protein 0.192594004889 0.5 0.307405995111 +UniRef50_UPI0004786ABC hypothetical protein 0.29869288449 0.5 0.20130711551 +UniRef50_F8JXJ3 0.93897357814 0.5 -0.43897357814 +UniRef50_F4T079 Exodeoxyribonuclease 8 (EXOVIII) 1.00578918294 0.5 -0.50578918294 +UniRef50_H3WGZ6 0.640286600208 0.5 -0.140286600208 +UniRef50_O27859 Ribonuclease Z 2.33606609769 0.5 -1.83606609769 +UniRef50_Q9P9X3 5.46877683436 0.499999999999 -4.96877683436 +UniRef50_Q21CC1 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 3.98400223487 0.5 -3.48400223487 +UniRef50_R4SH81 PE PGRS family protein 0.0192919503245 0.5 0.480708049675 +UniRef50_V8FTC7 0.920480543713 0.5 -0.420480543713 +UniRef50_P66898 L threonine dehydratase biosynthetic IlvA 0.0140448342116 0.5 0.485955165788 +UniRef50_Q9RU40 0.00268803914268 0.5 0.497311960857 +UniRef50_UPI000470AB53 zinc ABC transporter permease, partial 0.623545907027 0.5 -0.123545907027 +UniRef50_F0VW84 Ferrous iron transport protein B 1.57851794954 0.5 -1.07851794954 +UniRef50_UPI00030520A7 hypothetical protein 0.436497652733 0.5 0.0635023472669 +UniRef50_P08624 Nitrogenase iron protein 2 1.786730973 0.5 -1.286730973 +UniRef50_UPI0002BAC68C hypothetical protein, partial 0.00904234863866 0.499999999999 0.490957651362 +UniRef50_A7FMJ5 Autoinducer 2 kinase LsrK 2.68143198274 0.5 -2.18143198274 +UniRef50_Q3JQJ9 3.27000971416 0.5 -2.77000971416 +UniRef50_Q4L8H3 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.24659118238 0.5 -1.74659118238 +UniRef50_UPI000329E5F9 PREDICTED 0.599266048331 0.5 -0.0992660483306 +UniRef50_Q1IHH4 DNA directed RNA polymerase subunit beta 0.690428896681 0.5 -0.190428896681 +UniRef50_D4GDT5 YliJ 0.0452294254431 0.5 0.454770574557 +UniRef50_N1HFC9 M48B family peptidase 0.315479900651 0.5 0.184520099349 +UniRef50_UPI000475CBB8 SAM dependent methyltransferase 0.373133586587 0.5 0.126866413413 +UniRef50_D3QF90 Manganese ABC transporter, inner membrane permease protein SitD 1.81054649219 0.500000000002 -1.31054649219 +UniRef50_Q8D2L6 Tyrosine tRNA ligase 0.394236187478 0.5 0.105763812522 +UniRef50_A0A011DVL1 Bacterial regulatory s, tetR family protein 0.0246026727891 0.5 0.475397327211 +UniRef50_UPI0003EBE8AE PREDICTED 0.85250311703 0.5 -0.35250311703 +UniRef50_UPI0004683656 aspartate aminotransferase 0.274227529199 0.5 0.225772470801 +UniRef50_P33117 Ferric uptake regulation protein 0.0916237354313 0.5 0.408376264569 +UniRef50_K7RVV7 FAD linked oxidase protein 0.0182238495798 0.5 0.48177615042 +UniRef50_V5WXJ2 Alpha beta hydrolase 0.134578602551 0.5 0.365421397449 +UniRef50_P0A3M5 Penicillin binding protein 2B 0.0455701496324 0.5 0.454429850368 +UniRef50_UPI0003B419E6 DNA mismatch repair protein MutS 0.0170142914271 0.5 0.482985708573 +UniRef50_L7EXS1 0.904136564344 0.5 -0.404136564344 +UniRef50_UPI00024870CC phosphoribosylaminoimidazole carboxylase ATPase subunit, partial 0.587866478385 0.5 -0.0878664783849 +UniRef50_H6VX40 GroEL 0.041192383498 0.5 0.458807616502 +UniRef50_Q81MY9 Probable transaldolase 2 0.158965896245 0.5 0.341034103755 +UniRef50_P22513 Glyceraldehyde 3 phosphate dehydrogenase, glycosomal 0.00407196654979 0.5 0.49592803345 +UniRef50_A5UKB5 V type ATP synthase subunit E 1.81332301172 0.5 -1.31332301172 +UniRef50_UPI0002F6015E hypothetical protein 0.264912627272 0.5 0.235087372728 +UniRef50_W5XGC5 Cation exchanger, putative 0.485647981956 0.5 0.014352018044 +UniRef50_L6Y993 Electron transfer flavoprotein ubiquinone oxidoreductase 0.263120533722 0.5 0.236879466278 +UniRef50_Q60316 Formate dehydrogenase subunit beta 1.69615808735 0.5 -1.19615808735 +UniRef50_R6G0X7 Rubrerythrin 0.17427234594 0.5 0.32572765406 +UniRef50_V8G1N6 Transcriptional regulator 0.33683383796 0.5 0.16316616204 +UniRef50_A0A023UJB1 Type F conjugative transfer system protein TraW 1.97954770106 0.5 -1.47954770106 +UniRef50_Q9K1P6 Efem EfeO family lipoprotein NMB0035 0.183091144517 0.5 0.316908855483 +UniRef50_A4SHC0 ADP L glycero D manno heptose 6 epimerase 2.19820599997 0.500000000001 -1.69820599998 +UniRef50_UPI00036EB160 hypothetical protein 0.51979080866 0.5 -0.0197908086599 +UniRef50_UPI000476D9A7 hypothetical protein 0.156751528962 0.5 0.343248471038 +UniRef50_F8HEJ4 Pts system, trehalose specific iibc component 0.0959122645451 0.5 0.404087735455 +UniRef50_G4PGT5 Pirin 0.301224335362 0.5 0.198775664638 +UniRef50_S4XAN4 Cobalamin biosynthesis like protein 1.16968663598 0.500000000001 -0.669686635981 +UniRef50_UPI0003B3E06E alcohol dehydrogenase 0.276620317379 0.5 0.223379682621 +UniRef50_Q6DB87 Ribose import ATP binding protein RbsA 0.907707670427 0.5 -0.407707670427 +UniRef50_Q4UNK0 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.397118396474 0.5 0.102881603526 +UniRef50_UPI00038035A6 hypothetical protein 0.469239614271 0.5 0.0307603857293 +UniRef50_UPI00036EABAC hypothetical protein 1.26169325795 0.5 -0.76169325795 +UniRef50_G2QJ48 1.18830740273 0.5 -0.68830740273 +UniRef50_Q5HKG5 Drug transporter, putative 1.20663595796 0.5 -0.706635957963 +UniRef50_Q89EZ8 Outer membrane lipoprotein 1.00153516255 0.5 -0.501535162555 +UniRef50_Q5HKF6 Extracellular cysteine protease 3.17453748643 0.500000000001 -2.67453748643 +UniRef50_A6LXP0 Multicopper oxidase, type 3 0.301887107957 0.5 0.198112892043 +UniRef50_Q3JMW6 Phenol hydroxylase, putative 4.51037617568 0.499999999999 -4.01037617567 +UniRef50_E0RTD9 ATP dependent 6 phosphofructokinase 0.000457459922993 0.5 0.499542540077 +UniRef50_P80668 Phenylacetaldehyde dehydrogenase 1.35396194267 0.5 -0.853961942669 +UniRef50_UPI0004673888 acyl transferase 4.3769827295 0.499999999992 -3.87698272949 +UniRef50_Q2S6J2 Uridylate kinase 0.0133043102488 0.5 0.486695689751 +UniRef50_UPI00041D7A97 hypothetical protein 0.985528476096 0.5 -0.485528476096 +UniRef50_P00936 Adenylate cyclase 6.72728577249 0.5 -6.22728577249 +UniRef50_Q11ID5 Hemin import ATP binding protein HmuV 0.00437956736749 0.500000000001 0.495620432632 +UniRef50_B7UZ76 TadG 5.68460822138 0.499999999993 -5.18460822137 +UniRef50_A5UNR9 0.307518904898 0.5 0.192481095102 +UniRef50_Q3HKE6 TonB dependent receptor protein 2.31165025149 0.499999999999 -1.81165025149 +UniRef50_M3AAW3 1.3507672237 0.5 -0.850767223696 +UniRef50_UPI0003B55AAB GntR family transcriptional regulator 0.605671733396 0.5 -0.105671733396 +UniRef50_O29406 Serine hydroxymethyltransferase 1.33865943423 0.5 -0.838659434226 +UniRef50_UPI00028943C6 transposase Tn3 0.00661457151369 0.5 0.493385428486 +UniRef50_B2V085 Pyruvate kinase 0.191790062055 0.5 0.308209937946 +UniRef50_UPI000465D378 transposase, partial 0.146076940577 0.5 0.353923059423 +UniRef50_J7R4E7 0.299375832004 0.5 0.200624167996 +UniRef50_W8EY20 0.611260152251 0.5 -0.111260152251 +UniRef50_A0A037YSW4 0.779451265 0.5 -0.279451265 +UniRef50_UPI000371DAEA hypothetical protein, partial 0.145109355271 0.5 0.354890644729 +UniRef50_B9JXV9 Folylpolyglutamate synthase 1.48057469985 0.5 -0.980574699854 +UniRef50_D3E3E5 0.249694924974 0.5 0.250305075026 +UniRef50_UPI0003749DD6 hypothetical protein, partial 0.203685378709 0.5 0.296314621291 +UniRef50_W5L6H6 0.298813310628 0.5 0.201186689372 +UniRef50_D7FUW4 1.2348341523 0.5 -0.7348341523 +UniRef50_C1KVY0 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 1.3117084721 0.5 -0.811708472102 +UniRef50_F0VXH5 ABC transporter permease protein 1.45174906828 0.5 -0.951749068281 +UniRef50_UPI000380067C hypothetical protein, partial 0.455065814093 0.5 0.0449341859071 +UniRef50_Q6G6X4 Isopentenyl diphosphate delta isomerase 2.32259401078 0.499999999998 -1.82259401078 +UniRef50_Q8PYF8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.82778387234 0.499999999999 -1.32778387234 +UniRef50_P73098 Chaperone protein dnaK3 1.86954826175 0.5 -1.36954826175 +UniRef50_UPI000255C532 hypothetical protein 0.347230546703 0.5 0.152769453297 +UniRef50_P46133 p aminobenzoyl glutamate transport protein 3.42406766602 0.500000000001 -2.92406766602 +UniRef50_K8EYP9 0.575740970291 0.5 -0.075740970291 +UniRef50_X1D6B5 Marine sediment metagenome DNA, contig 0.00185844366736 0.5 0.498141556333 +UniRef50_M4ZDD2 Polysaccharide ABC exporter membrane spanning protein 1.91620421902 0.499999999999 -1.41620421902 +UniRef50_X7E7Z7 0.674443983264 0.5 -0.174443983264 +UniRef50_J9YQL3 DedA family protein 2.46190324555 0.5 -1.96190324555 +UniRef50_A1A1X1 Acetylglutamate kinase 0.0257809811284 0.5 0.474219018872 +UniRef50_UPI0003C18C5D 0.103387009971 0.5 0.396612990029 +UniRef50_J8RTD6 0.266220349479 0.5 0.233779650521 +UniRef50_W1BD39 0.028733490264 0.500000000001 0.471266509735 +UniRef50_I0C802 1.2109946844 0.5 -0.710994684401 +UniRef50_UPI00034D0909 Organic hydroperoxide resistance protein 0.0935305608633 0.5 0.406469439136 +UniRef50_UPI000373CB86 hypothetical protein 0.388461146024 0.5 0.111538853976 +UniRef50_UPI0003B6D6B9 DNA invertase 0.962752084815 0.5 -0.462752084815 +UniRef50_A4IK10 0.276305259656 0.5 0.223694740344 +UniRef50_P0A9F0 Regulatory protein YeiL 2.47132702696 0.499999999996 -1.97132702696 +UniRef50_UPI00046AC99E hypothetical protein 0.745897995535 0.5 -0.245897995535 +UniRef50_UPI000462BAFD PREDICTED 1.15595796155 0.5 -0.655957961552 +UniRef50_G0DS62 Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase 0.0193840784844 0.5 0.480615921516 +UniRef50_F2CUB3 Predicted protein 0.417415981361 0.5 0.0825840186392 +UniRef50_UPI000468D55C glucose methanol choline oxidoreductase 0.364650016332 0.5 0.135349983668 +UniRef50_A1AZK3 Peptidoglycan glycosyltransferase 2.11226185009 0.499999999999 -1.61226185009 +UniRef50_A3PKF9 0.282948755272 0.5 0.217051244728 +UniRef50_Q9ZDI2 Protoheme IX farnesyltransferase 0.144508806453 0.5 0.355491193547 +UniRef50_P58313 UTP glucose 1 phosphate uridylyltransferase 0.772203431299 0.5 -0.272203431299 +UniRef50_P66798 Response regulator UvrY 3.65171507566 0.500000000001 -3.15171507566 +UniRef50_C6DY30 Poly A polymerase family protein 0.135550750869 0.5 0.364449249131 +UniRef50_M4HS21 Transposase, IS4 family 0.000324061402913 0.5 0.499675938597 +UniRef50_P00805 L asparaginase 2 0.253021660025 0.5 0.246978339975 +UniRef50_P40882 21.3310075986 0.499999999995 -20.8310075986 +UniRef50_Q7V024 Fumarate hydratase class II 0.735988117475 0.5 -0.235988117475 +UniRef50_Q7UX42 Glutamine tRNA ligase 0.0170382449358 0.5 0.482961755064 +UniRef50_W3SJV3 0.145779828436 0.5 0.354220171564 +UniRef50_K7SGJ6 Tat pathway signal sequence 0.047611381934 0.5 0.452388618066 +UniRef50_UPI0003798A30 hypothetical protein 0.14129319395 0.500000000001 0.358706806049 +UniRef50_UPI000426481D hypothetical protein 0.370440928311 0.5 0.129559071689 +UniRef50_G7LXY6 Signal peptidase I 0.150437636638 0.5 0.349562363362 +UniRef50_A5UM93 Adhesin like protein 2.64694157068 0.500000000001 -2.14694157068 +UniRef50_H1SKR8 Site specific recombinase, phage integrase family 0.31412378227 0.5 0.18587621773 +UniRef50_Q4A4A3 0.0953105548981 0.5 0.404689445102 +UniRef50_A5W7U2 Protein SprT 0.970664434979 0.5 -0.470664434979 +UniRef50_Q65G88 Isocitrate dehydrogenase [NADP] 1.80854198359 0.5 -1.30854198359 +UniRef50_Q9K1H0 Outer membrane protein assembly factor BamA 0.00809503336175 0.5 0.491904966638 +UniRef50_Q8CT38 1.85622980122 0.499999999999 -1.35622980121 +UniRef50_P42910 N acetylgalactosamine permease IIC component 1 1.01376286028 0.5 -0.513762860282 +UniRef50_Q48E25 GAF domain GGDEF domain EAL domain protein 0.439029510402 0.5 0.0609704895984 +UniRef50_UPI0003634A2A hypothetical protein 0.757431519673 0.5 -0.257431519673 +UniRef50_UPI000328E1F2 PREDICTED 0.298542522281 0.5 0.201457477719 +UniRef50_E8SI06 Hydroxyacylglutathione hydrolase 0.993601950741 0.5 -0.493601950741 +UniRef50_UPI0003B3DE75 ketol acid reductoisomerase 0.0986922741915 0.5 0.401307725808 +UniRef50_Q2FER8 Energy coupling factor transporter ATP binding protein EcfA2 1.32743438617 0.5 -0.827434386166 +UniRef50_UPI00046AC673 hypothetical protein 0.631612673928 0.5 -0.131612673928 +UniRef50_B7UX08 0.538084038529 0.5 -0.038084038529 +UniRef50_UPI000381E035 hypothetical protein 0.671590999628 0.5 -0.171590999628 +UniRef50_I0EI71 ATP dependent helicase 0.0619025610904 0.5 0.43809743891 +UniRef50_Q3J6C1 Sensor histidine kinase RegB 1.19751870636 0.5 -0.69751870636 +UniRef50_Q1RF65 0.296107390023 0.5 0.203892609977 +UniRef50_F0KIU0 Sel1 like repeat protein 0.0318974226742 0.5 0.468102577326 +UniRef50_UPI000360580F methyltransferase, partial 0.518373053472 0.5 -0.0183730534724 +UniRef50_L2YYW7 0.071727080768 0.5 0.428272919232 +UniRef50_P21369 Pyrazinamidase nicotinamidase 2.91572664476 0.5 -2.41572664476 +UniRef50_A5UKM8 3.23899491842 0.499999999998 -2.73899491842 +UniRef50_UPI00045434B5 PREDICTED 0.329513964021 0.5 0.170486035979 +UniRef50_B9KRZ3 3.14792643515 0.5 -2.64792643515 +UniRef50_D0K3I1 Phage amidase 5.00993935001 0.500000000007 -4.50993935001 +UniRef50_A6LXA4 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.319352041083 0.5 0.180647958917 +UniRef50_I3XDK3 0.780682778272 0.5 -0.280682778272 +UniRef50_X2H5V8 Glutamate cysteine ligase , divergent, of Alpha and Beta proteobacteria type 0.0263571444168 0.5 0.473642855583 +UniRef50_I0ERW5 Integral membrane protein 0.0163745283014 0.5 0.483625471699 +UniRef50_UPI0002559D47 DNA primase 0.402164141356 0.5 0.0978358586443 +UniRef50_P08075 Glucose 1 phosphate thymidylyltransferase 0.261072152011 0.5 0.238927847989 +UniRef50_UPI0004782C1A ABC transporter permease 0.28314418239 0.5 0.21685581761 +UniRef50_D9Q0N2 Membrane protein 0.0562255805173 0.5 0.443774419483 +UniRef50_A0A059IJL8 0.783767033888 0.5 -0.283767033888 +UniRef50_U1ASZ8 Diguanylate cyclase domain protein 8.81103336009 0.499999999989 -8.31103336008 +UniRef50_K8R3V6 6 pyruvoyl tetrahydropterin synthase 1.09263730552 0.5 -0.592637305523 +UniRef50_O05410 Probable metal binding protein YrpE 8.82681881523 0.500000000001 -8.32681881523 +UniRef50_Q30ST8 Two component transcriptional regulator, winged helix family 0.0834395581188 0.5 0.416560441881 +UniRef50_UPI00036A4579 hypothetical protein 0.134409484124 0.5 0.365590515876 +UniRef50_G8VC64 0.204853965606 0.5 0.295146034394 +UniRef50_UPI0002556399 urea ABC transporter ATP binding protein UrtE, partial 1.23631079056 0.5 -0.736310790555 +UniRef50_UPI000456060D hypothetical protein PFL1_06357 0.199509160143 0.5 0.300490839856 +UniRef50_UPI0003B73D80 Fis family transcriptional regulator 0.437834200789 0.5 0.0621657992109 +UniRef50_C2QZX3 0.00370003018477 0.5 0.496299969815 +UniRef50_C5N0K5 Isochorismatase family protein 10.1340881614 0.499999999997 -9.63408816145 +UniRef50_UPI00034B4110 hypothetical protein 1.6657244734 0.5 -1.1657244734 +UniRef50_J9JHU2 0.396837765783 0.5 0.103162234217 +UniRef50_A0A031K6Z2 0.851306260339 0.5 -0.351306260339 +UniRef50_UPI00046C5540 hypothetical protein 3.06251730025 0.499999999998 -2.56251730024 +UniRef50_UPI000369A903 hypothetical protein 1.35740637038 0.5 -0.857406370383 +UniRef50_UPI00036FC1C6 hypothetical protein 0.0466104145121 0.5 0.453389585488 +UniRef50_O27842 Conserved protein 0.58181448517 0.5 -0.0818144851705 +UniRef50_UPI000466B8EE UDP pyrophosphate phosphatase 3.24002506919 0.5 -2.74002506919 +UniRef50_M2ADJ2 1.47730973439 0.5 -0.977309734393 +UniRef50_UPI00016A5286 hypothetical protein 0.238384451281 0.5 0.261615548719 +UniRef50_P33135 Flagellar biosynthetic protein FliR 2.73103905205 0.499999999998 -2.23103905205 +UniRef50_UPI00016C427F glutamine ABC transporter ATP binding protein 1.56822111161 0.5 -1.06822111161 +UniRef50_F3U500 ABC branched chain amino acid transporter, inner membrane subunit 0.986003478502 0.5 -0.486003478502 +UniRef50_H1V624 0.691968594739 0.5 -0.191968594739 +UniRef50_UPI00046F0C1E cold shock protein, partial 1.09496720879 0.5 -0.594967208787 +UniRef50_UPI000395A7E4 membrane protein 1.31179191808 0.5 -0.811791918083 +UniRef50_A4WQX9 3.46054953106 0.5 -2.96054953106 +UniRef50_G0DVB4 LacI family transcription regulator 0.0447648087888 0.5 0.455235191211 +UniRef50_U6HG59 Iron sulfur cluster assembly 2 0.24836733327 0.5 0.25163266673 +UniRef50_Q8E0W8 Prophage LambdaSa1, minor structural protein, putative 0.662095164619 0.5 -0.162095164619 +UniRef50_F0YEK3 0.0474739381511 0.5 0.452526061849 +UniRef50_UPI000359DA59 PREDICTED 1.94908541117 0.5 -1.44908541117 +UniRef50_UPI0003683526 hypothetical protein 0.333029786122 0.5 0.166970213878 +UniRef50_Q9Z615 Ferredoxin NADP reductase 58.4317936045 0.50000000001 -57.9317936045 +UniRef50_UPI00034F34D0 PREDICTED 1.08534941471 0.5 -0.585349414711 +UniRef50_F8H2S7 Long chain fatty acid transporter, putative 32.0332167503 0.499999999988 -31.5332167503 +UniRef50_D8TNQ9 0.516816820836 0.5 -0.016816820836 +UniRef50_P72524 DNA gyrase subunit A 0.331895360928 0.5 0.168104639072 +UniRef50_D9PWJ1 Phosphomethylpyrimidine kinase 1.60136603985 0.5 -1.10136603985 +UniRef50_UPI00016AD9D7 hypothetical protein 0.187383053727 0.5 0.312616946273 +UniRef50_J3P8W6 0.319560307808 0.5 0.180439692192 +UniRef50_Q9KLP4 Glucose 1 phosphate adenylyltransferase 2 0.227640829487 0.5 0.272359170513 +UniRef50_G4LJ72 0.510405506877 0.5 -0.0104055068769 +UniRef50_X6F3D8 0.0121599941009 0.5 0.487840005899 +UniRef50_E8TAD2 ABC transporter related protein 1.20195079669 0.5 -0.701950796687 +UniRef50_UPI0003745162 hypothetical protein 0.048904570117 0.5 0.451095429883 +UniRef50_UPI0004171916 hypothetical protein 0.621723230942 0.5 -0.121723230942 +UniRef50_J9FU21 Ferredoxin NADP reductase subunit alpha 0.776747027572 0.5 -0.276747027572 +UniRef50_A6VPF4 30S ribosomal protein S9 0.170102863067 0.5 0.329897136933 +UniRef50_Q9I0Q0 2 heptyl 3 hydroxy 4 quinolone synthase 1.07342902163 0.5 -0.573429021629 +UniRef50_Q56213 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.155916134094 0.5 0.344083865906 +UniRef50_UPI00041994DB hypothetical protein 0.299597307242 0.5 0.200402692758 +UniRef50_UPI0001B417EE 50S ribosomal protein L6 0.0439525381541 0.5 0.456047461846 +UniRef50_UPI00037C13D8 hypothetical protein 0.00887820366126 0.500000000001 0.491121796338 +UniRef50_UPI00025597AC 8 amino 7 oxononanoate synthase 0.53770845888 0.5 -0.0377084588804 +UniRef50_Q8TVF7 Transcription factor homologous to NACalpha BTF3 fused to metal binding domain 0.635420905543 0.5 -0.135420905543 +UniRef50_Q8TX94 3 isopropylmalate dehydratase small subunit 1 1.17265709756 0.5 -0.672657097562 +UniRef50_W1DGA8 7.29270939031 0.500000000001 -6.79270939031 +UniRef50_Q7WTJ2 Phenol hydroxylase P5 protein 0.337588220749 0.5 0.162411779251 +UniRef50_UPI000375778F hypothetical protein, partial 4.62314809481 0.500000000001 -4.12314809481 +UniRef50_G7UA75 Periplasmic solute binding family protein 0.0229796393906 0.5 0.47702036061 +UniRef50_P37171 Hypoxanthine guanine phosphoribosyltransferase 1.94714003207 0.5 -1.44714003207 +UniRef50_Q6A5B2 Ribosomal RNA small subunit methyltransferase G 0.00855785307402 0.500000000001 0.491442146925 +UniRef50_W5X3P5 Ammonium transporter 0.0516383644642 0.5 0.448361635535 +UniRef50_Q2YSG3 0.085932442308 0.5 0.414067557692 +UniRef50_Q59337 Catalase 0.00201776847514 0.5 0.497982231525 +UniRef50_UPI000371F98A 50S ribosomal protein L13 3.44010007791 0.5 -2.94010007791 +UniRef50_Q9RWN6 Cell division protein FtsA 0.00429318663307 0.5 0.495706813367 +UniRef50_U5MV88 Protein tyrosine phosphatase 0.131814864571 0.5 0.368185135429 +UniRef50_B0V4J6 Methylenetetrahydrofolate reductase 0.0143643128748 0.5 0.485635687125 +UniRef50_O34720 Probable oxidoreductase YjgC 1.24691421115 0.5 -0.746914211154 +UniRef50_D5ZK04 Predicted protein 1.41153284562 0.5 -0.911532845618 +UniRef50_P16691 Protein PhnO 0.402562985165 0.5 0.0974370148345 +UniRef50_UPI0003665D5A hypothetical protein 0.325666923015 0.5 0.174333076985 +UniRef50_B9KW91 Serine acetyltransferase 2.44781504431 0.5 -1.94781504431 +UniRef50_UPI0004541D3D PREDICTED 0.37606868795 0.5 0.12393131205 +UniRef50_X2LXG1 Phosphatase 0.575308079224 0.5 -0.0753080792244 +UniRef50_UPI0002BCA4B1 0.227839826609 0.5 0.272160173391 +UniRef50_UPI000479C59F hypothetical protein 1.31909036678 0.5 -0.819090366785 +UniRef50_O83369 FKBP type peptidyl prolyl cis trans isomerase SlyD 0.47632106051 0.5 0.0236789394904 +UniRef50_F0WVE4 AlNc14C294G10284 protein 0.161420830963 0.5 0.338579169037 +UniRef50_X0WP46 Marine sediment metagenome DNA, contig 0.967722295792 0.5 -0.467722295792 +UniRef50_R5WGC0 0.030740165221 0.5 0.469259834779 +UniRef50_UPI000371C267 hypothetical protein, partial 0.639192080315 0.5 -0.139192080315 +UniRef50_Q47944 L sorbose 1 dehydrogenase 0.547464079869 0.5 -0.047464079869 +UniRef50_UPI0003AED982 PREDICTED 0.530709665996 0.5 -0.0307096659958 +UniRef50_UPI000474FA07 hypothetical protein 0.688070441627 0.5 -0.188070441627 +UniRef50_X5EFM7 Glycosyl transferase 0.243369335567 0.5 0.256630664433 +UniRef50_A0A025XI46 Membrane protein 2.10128486834 0.499999999999 -1.60128486833 +UniRef50_N6UVZ9 1.21790415329 0.5 -0.717904153286 +UniRef50_A5WEH0 Sulfate adenylyltransferase 0.381356915066 0.5 0.118643084934 +UniRef50_Q1C7J0 Arabinose import ATP binding protein AraG 2.95673397248 0.500000000001 -2.45673397248 +UniRef50_Q2H308 0.997793340442 0.5 -0.497793340442 +UniRef50_UPI0004643586 hypothetical protein 9.86067870472 0.5 -9.36067870472 +UniRef50_A6LYY5 Helix turn helix domain containing protein, AraC type 0.732196519553 0.5 -0.232196519553 +UniRef50_Q8ZH39 D methionine transport system permease protein MetI 0.182324962353 0.5 0.317675037647 +UniRef50_W6L3I5 Genomic scaffold, scaffold_5 0.919587296534 0.5 -0.419587296534 +UniRef50_Q4L6W7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.18880342692 0.500000000002 -1.68880342692 +UniRef50_Q83NS5 Phosphoglucosamine mutase 0.332901793322 0.5 0.167098206678 +UniRef50_P18358 Transposon Tn552 resolvase 2.4258897649 0.500000000002 -1.9258897649 +UniRef50_D8JFF2 Major Facilitator Superfamily protein 0.0150765038783 0.5 0.484923496122 +UniRef50_C0QDY4 3 isopropylmalate dehydratase small subunit 0.642683166275 0.5 -0.142683166275 +UniRef50_Q1J087 Inositol monophosphatase 0.00618802856503 0.5 0.493811971435 +UniRef50_D4GG42 1.00128896446 0.5 -0.501288964459 +UniRef50_A5GQQ3 Permease of the major facilitator superfamily 2.36008167721 0.500000000001 -1.86008167721 +UniRef50_Q3ZXS0 NADH quinone oxidoreductase subunit B 0.0388980212903 0.5 0.461101978709 +UniRef50_Q8XSL7 Remnant of isrso5 transposase protein 2.66233840606 0.5 -2.16233840606 +UniRef50_UPI00045609D0 hypothetical protein PFL1_01311 0.114513613186 0.5 0.385486386814 +UniRef50_UPI00047256F0 ABC transporter ATP binding protein 0.0966693424217 0.5 0.403330657578 +UniRef50_P71019 Malonyl CoA acyl carrier protein transacylase 0.00119430759349 0.5 0.498805692407 +UniRef50_Q8XCU1 UDP 2,3 diacylglucosamine hydrolase 2.17365688911 0.500000000001 -1.67365688911 +UniRef50_C0ME26 Adenylate kinase 0.278563498767 0.5 0.221436501233 +UniRef50_UPI0004668B02 hypothetical protein 2.00651055061 0.499999999999 -1.50651055061 +UniRef50_W5ASR4 1.30315896458 0.500000000001 -0.803158964582 +UniRef50_UPI00040BD6B1 spermidine putrescine import ATP binding protein PotA 1.03082335858 0.5 -0.53082335858 +UniRef50_A6M079 NADPH dependent FMN reductase 0.0323083097987 0.5 0.467691690201 +UniRef50_K9EK44 ATPase involved in chromosome partitioning 0.00604943109472 0.5 0.493950568905 +UniRef50_Q5M456 1.15298760711 0.5 -0.652987607112 +UniRef50_UPI000380AA86 hypothetical protein 0.0223674692742 0.5 0.477632530726 +UniRef50_A2SM89 PKHD type hydroxylase Mpe_A3725 0.46901331667 0.5 0.0309866833302 +UniRef50_UPI00037B8173 hypothetical protein 0.0465676271347 0.5 0.453432372865 +UniRef50_U2NH71 MaoC domain containing protein dehydratase 0.837472262701 0.5 -0.337472262701 +UniRef50_J0P6S9 6.09068080591 0.499999999998 -5.59068080591 +UniRef50_Q3JN62 Colicin V processing peptidase 0.0102493478436 0.5 0.489750652156 +UniRef50_A0A024JLS1 Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein related AAA type ATPase 1.88198465478 0.5 -1.38198465478 +UniRef50_V5PVU9 ABC transporter ATP binding protein 1.60219515503 0.5 -1.10219515503 +UniRef50_D0ZY51 Serine endoprotease DegS 1.28730666178 0.5 -0.787306661784 +UniRef50_A3PGU0 Lytic transglycosylase, catalytic 2.563824561 0.5 -2.063824561 +UniRef50_UPI00034D4180 hypothetical protein 5.08378078343 0.500000000007 -4.58378078344 +UniRef50_UPI0003A7AC6C TetR family transcriptional regulator 0.235334063048 0.5 0.264665936952 +UniRef50_UPI00036F4D48 hypothetical protein, partial 0.0149836186565 0.5 0.485016381343 +UniRef50_V6VI70 Membrane protein 0.297949945192 0.5 0.202050054808 +UniRef50_D5WEA6 Major facilitator superfamily MFS_1 0.0094083294492 0.5 0.490591670551 +UniRef50_UPI00042A98EF 0.59439800187 0.5 -0.09439800187 +UniRef50_I0C7K3 Lantibiotic transport ATP binding protein 1.54730600222 0.499999999999 -1.04730600222 +UniRef50_Q6F8J3 Glutamyl tRNA reductase 0.00406393356865 0.499999999999 0.495936066432 +UniRef50_Q00750 Multiple sugar binding transport system permease protein MsmF 0.653346096377 0.5 -0.153346096377 +UniRef50_A9CJS1 ABC transporter, substrate binding protein 3.98681960753 0.5 -3.48681960753 +UniRef50_F2AEH0 2.37800957035 0.5 -1.87800957035 +UniRef50_G2QPJ3 0.325686089401 0.5 0.174313910599 +UniRef50_UPI00037BF3DC hypothetical protein 0.853423642851 0.5 -0.353423642851 +UniRef50_Q3IWE5 Sulfotransferase domain protein 5.17223620536 0.5 -4.67223620536 +UniRef50_D3QDZ4 Na+ H+ antiporter like protein 1.92385226038 0.499999999998 -1.42385226037 +UniRef50_E3D365 0.88599158045 0.5 -0.38599158045 +UniRef50_V6F2D8 Transposase 0.447543967713 0.5 0.052456032287 +UniRef50_B8EL88 Regulatory protein ArsR 0.176566540565 0.5 0.323433459435 +UniRef50_P30690 Major outer membrane protein P.IB 0.0254257332703 0.5 0.47457426673 +UniRef50_D5HFR4 Alpha galactosidase 0.412045800746 0.5 0.0879541992536 +UniRef50_F7QLE1 3.54922488078 0.499999999999 -3.04922488078 +UniRef50_Q4FPV2 Na translocating NADH quinone reductase subunit F 0.111584728426 0.5 0.388415271574 +UniRef50_UPI00035E03F5 DNA glycosylase 0.51935603469 0.5 -0.0193560346902 +UniRef50_A0A021XF37 Transposase 0.882949344779 0.5 -0.382949344779 +UniRef50_UPI00036477DE hypothetical protein 0.311183745603 0.5 0.188816254397 +UniRef50_P0ABE7 Soluble cytochrome b562 0.0945739228711 0.500000000001 0.405426077128 +UniRef50_D6XQD7 Outer membrane protein BabA 0.00904223675513 0.5 0.490957763244 +UniRef50_UPI00042B81D2 Ribosomal protein L1p L10e family, putative isoform 1 0.129323716745 0.5 0.370676283255 +UniRef50_UPI00046F39AE hypothetical protein, partial 0.217402035422 0.5 0.282597964578 +UniRef50_UPI00037C645E hypothetical protein 0.713052234488 0.5 -0.213052234488 +UniRef50_P58120 Multi drug resistance efflux pump PmrA homolog 0.0495392864601 0.5 0.45046071354 +UniRef50_UPI0003B4A46E hypothetical protein 0.234763023199 0.5 0.265236976801 +UniRef50_U2Z407 1.55254443551 0.499999999998 -1.05254443551 +UniRef50_P0ACV7 Protein MpaA 2.92676400541 0.499999999999 -2.42676400541 +UniRef50_B6IU75 0.202723145792 0.5 0.297276854208 +UniRef50_D1B330 0.3105855579 0.5 0.1894144421 +UniRef50_I7DDI7 Sec independent protein translocase protein TatC 2.81431877775 0.500000000003 -2.31431877776 +UniRef50_B2TLC0 Aminotransferase, class V 0.172996831989 0.5 0.327003168011 +UniRef50_Q7MLH6 Phosphoserine aminotransferase 0.227720717882 0.5 0.272279282118 +UniRef50_G0G0R8 Recombinase 0.0166233396557 0.5 0.483376660344 +UniRef50_UPI0003B50543 translation initiation factor IF 3 0.307192961083 0.5 0.192807038917 +UniRef50_B1GZA3 Adenylate kinase 0.241736905449 0.5 0.258263094551 +UniRef50_W1U046 Alanine dehydrogenase 0.0236855076291 0.5 0.476314492371 +UniRef50_J2E9X6 5.3641728063 0.5 -4.8641728063 +UniRef50_A9LZ58 0.0620719313496 0.5 0.437928068651 +UniRef50_UPI00035F961E hypothetical protein 0.112406570142 0.5 0.387593429858 +UniRef50_UPI000473026F hypothetical protein, partial 0.774514076415 0.5 -0.274514076415 +UniRef50_G8R9L3 Branched chain amino acid transport systemcarrier protein 2.39991373989 0.5 -1.89991373989 +UniRef50_UPI0003EBE04C PREDICTED 0.485366244044 0.5 0.0146337559559 +UniRef50_B0VCQ6 Deoxyribodipyrimidine photolyase , FAD binding 0.0139303939047 0.5 0.486069606095 +UniRef50_UPI0003C1772B PREDICTED 0.17396565488 0.5 0.32603434512 +UniRef50_Q5HNU6 UPF0271 protein SERP1168 2.57144512921 0.5 -2.07144512921 +UniRef50_B0RNQ5 Nicotinamide phosphoribosyltransferase 0.0018017064099 0.5 0.49819829359 +UniRef50_C1KVV7 N acetylmuramic acid 6 phosphate etherase 0.35492295176 0.5 0.14507704824 +UniRef50_S9QJ95 Glycine D amino acid oxidase 3.79404871304 0.499999999997 -3.29404871304 +UniRef50_Q72JJ7 Ribonuclease J 0.128258739175 0.500000000001 0.371741260825 +UniRef50_P36667 Rhamnosyltransferase WbbL 2.09359452521 0.5 -1.59359452521 +UniRef50_I6U2T3 4.45979599705 0.5 -3.95979599705 +UniRef50_W4UBR6 L threonine 3 O phosphate decarboxylase 0.0078588174195 0.5 0.49214118258 +UniRef50_E3ZT62 Lipoprotein 0.00247946485062 0.5 0.497520535149 +UniRef50_UPI0003812E06 hypothetical protein 1.74611065021 0.5 -1.24611065021 +UniRef50_B2JIJ5 Malate dehydrogenase (NADP(+)), Phosphate acetyltransferase 0.205613606384 0.5 0.294386393616 +UniRef50_UPI00038F56D4 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP 0.0895607844501 0.5 0.41043921555 +UniRef50_UPI000465DB23 peptide ABC transporter permease 2.82575830266 0.5 -2.32575830266 +UniRef50_UPI000475E2DE hypothetical protein, partial 0.0455181496008 0.5 0.454481850399 +UniRef50_UPI00047C3548 membrane protein 0.519155145742 0.5 -0.0191551457423 +UniRef50_B2TJ59 Riboflavin biosynthesis protein RibF 0.0383928558212 0.5 0.461607144179 +UniRef50_UPI0003B40EDF methylmalonyl CoA mutase 0.620381622446 0.5 -0.120381622446 +UniRef50_Q3J4Q5 Putative Transcriptional regulator 0.0479138719093 0.5 0.452086128091 +UniRef50_I4L4Y8 ISPa7 like transposase 3.31509897141 0.499999999997 -2.8150989714 +UniRef50_A5UKX6 2.67273156209 0.5 -2.17273156209 +UniRef50_L4FV79 0.218632074651 0.5 0.281367925349 +UniRef50_A5UJS4 Ribonuclease P protein component 3 5.66252091319 0.500000000003 -5.16252091319 +UniRef50_D4ZLV9 Thioesterase superfamily 0.463653411699 0.5 0.0363465883008 +UniRef50_D3E066 Aminotransferase 1.4938650937 0.5 -0.993865093698 +UniRef50_Q2FC63 Beta lactamase regulatory protein 1.45552281294 0.5 -0.955522812936 +UniRef50_UPI000477F0AC hypothetical protein 0.334676052329 0.5 0.165323947671 +UniRef50_G8UZP3 Dyp type peroxidase family protein 2.76985532 0.5 -2.26985532 +UniRef50_I6T4S9 Cation efflux pump 0.54464048223 0.5 -0.0446404822301 +UniRef50_K2FDY9 UPF0301 protein ACD_16C00235G0006 0.320106187236 0.5 0.179893812764 +UniRef50_P77183 3.17221404626 0.5 -2.67221404626 +UniRef50_Q8Z591 Multiphosphoryl transfer protein 1.34029876434 0.499999999999 -0.84029876434 +UniRef50_UPI0003644847 chromosome partitioning protein ParA 0.0580075904983 0.5 0.441992409502 +UniRef50_P24602 Bacterioferritin 0.409936749551 0.5 0.0900632504494 +UniRef50_L1K7Z2 0.284513288534 0.5 0.215486711466 +UniRef50_P12425 Glutamine synthetase 0.0625680340982 0.5 0.437431965902 +UniRef50_N6V491 0.319560307808 0.5 0.180439692192 +UniRef50_UPI0003B3ECFC hypothetical protein, partial 0.386032684701 0.5 0.113967315299 +UniRef50_UPI00037C5312 hypothetical protein 0.142977538123 0.5 0.357022461877 +UniRef50_UPI00029AA298 heme exporter protein CcmA 0.06423749698 0.5 0.43576250302 +UniRef50_UPI0003B71736 hypothetical protein 0.707153660835 0.5 -0.207153660835 +UniRef50_P83851 Inosine uridine preferring nucleoside hydrolase 0.127309357675 0.499999999999 0.372690642326 +UniRef50_W7W6N9 0.242879617852 0.5 0.257120382148 +UniRef50_Q1AW66 Uridylate kinase 0.301504904444 0.5 0.198495095556 +UniRef50_A7NN67 Thioesterase superfamily protein 0.00317814701628 0.5 0.496821852983 +UniRef50_F8LMW5 Branched chain amino acid ABC uptake transporter substrate binding protein 0.854234791015 0.5 -0.354234791015 +UniRef50_UPI0003B44F91 16S rRNA methyltransferase 0.10407271687 0.5 0.39592728313 +UniRef50_UPI00037A1640 hypothetical protein 0.158762337849 0.5 0.341237662151 +UniRef50_P0ABU5 Enhancing lycopene biosynthesis protein 2 0.38813919896 0.5 0.11186080104 +UniRef50_D6GRJ0 Relaxase mobilization nuclease domain protein 1.84036714948 0.5 -1.34036714948 +UniRef50_G7M3W5 PAS modulated sigma54 specific transcriptional regulator, Fis family 0.0254487450324 0.5 0.474551254968 +UniRef50_D3EHS5 Copper amine oxidase domain protein 0.24954776665 0.5 0.25045223335 +UniRef50_F0YJ43 2.13186979906 0.500000000003 -1.63186979907 +UniRef50_Q82MV1 Aliphatic sulfonates import ATP binding protein SsuB 1 0.112644885562 0.5 0.387355114438 +UniRef50_UPI00047B469E hypothetical protein 0.219750162292 0.5 0.280249837708 +UniRef50_P26365 N acetylmuramoyl L alanine amidase AmiB 2.39835478983 0.5 -1.89835478983 +UniRef50_W9B7R7 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome 0.101352225132 0.5 0.398647774868 +UniRef50_A0A030STE3 2.41888050416 0.500000000001 -1.91888050416 +UniRef50_Q1LTQ4 Alanine tRNA ligase 0.722267802334 0.5 -0.222267802334 +UniRef50_Q2KVV8 Glutaminase 1.32341789316 0.5 -0.823417893165 +UniRef50_N6V723 0.480840401132 0.5 0.0191595988681 +UniRef50_R5EPL7 0.000231012503441 0.5 0.499768987497 +UniRef50_UPI000420BB24 hypothetical protein 0.0496632014501 0.5 0.45033679855 +UniRef50_B2TI10 Peptidyl tRNA hydrolase 0.0672057201672 0.500000000001 0.432794279832 +UniRef50_P76586 0.357084487652 0.5 0.142915512348 +UniRef50_P76584 2.88258490263 0.499999999998 -2.38258490263 +UniRef50_P76585 1.95817821317 0.500000000001 -1.45817821317 +UniRef50_E7DRS8 Cobyrinic acid a,c diamide synthase 0.117247366024 0.5 0.382752633976 +UniRef50_B2TPC7 Homoserine kinase 0.0453008555345 0.5 0.454699144466 +UniRef50_UPI00016AE1F0 amino acid ABC transporter, permease ATP binding protein, His Glu Gln Arg opine family, partial 0.584368006531 0.5 -0.0843680065306 +UniRef50_UPI00037DC74D hypothetical protein 1.11476915887 0.5 -0.61476915887 +UniRef50_UPI0003B5A1CC type I secretion protein 0.280407299714 0.5 0.219592700286 +UniRef50_C3ISU2 Transcriptional regulator, PadR 1.75598061742 0.500000000001 -1.25598061742 +UniRef50_X1FD15 Marine sediment metagenome DNA, contig 0.662781766657 0.5 -0.162781766657 +UniRef50_W5X9W4 30S ribosomal protein S4 0.361413100334 0.5 0.138586899666 +UniRef50_Q8NY74 2.6632673932 0.500000000005 -2.16326739321 +UniRef50_B9DK14 Homolog of FecCD transport family protein SstB 1.66412088308 0.5 -1.16412088308 +UniRef50_V9VUC0 0.587115449835 0.5 -0.0871154498352 +UniRef50_Q475Q2 4 hydroxythreonine 4 phosphate dehydrogenase 0.0445246231348 0.5 0.455475376865 +UniRef50_K1TVZ4 Anthranilate synthase component II 0.446032314835 0.5 0.0539676851654 +UniRef50_Q5HRY7 0.350817708763 0.5 0.149182291237 +UniRef50_Q9RU78 2 phosphoglycerate kinase, putative 0.00365250486199 0.5 0.496347495138 +UniRef50_Q5HKC7 0.762882009868 0.5 -0.262882009868 +UniRef50_A0A020CZ32 1.99804963214 0.5 -1.49804963214 +UniRef50_B5B0J6 FAD dependent urate hydroxylase 0.00455936348354 0.500000000001 0.495440636516 +UniRef50_UPI0003B6355C multidrug transporter CflA 0.366452948168 0.5 0.133547051832 +UniRef50_B8H806 Shikimate dehydrogenase 0.343246310503 0.5 0.156753689497 +UniRef50_A6LTJ7 Glycosyl transferase 0.0860755295441 0.5 0.413924470456 +UniRef50_UPI0000164CF0 helicase related protein, partial 0.00181377358845 0.5 0.498186226412 +UniRef50_UPI00037DA311 hypothetical protein 1.55971258185 0.499999999999 -1.05971258185 +UniRef50_E3F454 0.956461152003 0.5 -0.456461152003 +UniRef50_M1MT01 Oxygen independent coproporphyrinogen III oxidase 1 0.15056754749 0.5 0.34943245251 +UniRef50_Q55G10 Nicotinate phosphoribosyltransferase 0.0139209488857 0.5 0.486079051115 +UniRef50_UPI00047AB801 hypothetical protein 1.34703756278 0.5 -0.84703756278 +UniRef50_R9YSK0 Sugar transporter family protein 2.4604066641 0.499999999998 -1.9604066641 +UniRef50_UPI0002003470 hypothetical protein 0.226461428139 0.5 0.273538571861 +UniRef50_UPI000403F45D hypothetical protein 0.0251927644534 0.499999999999 0.474807235547 +UniRef50_S5K798 Ethanolamine utilization protein EutJ 0.00376269135088 0.5 0.496237308649 +UniRef50_V6AIC2 0.161649933418 0.5 0.338350066582 +UniRef50_O86793 tRNA N6 adenosine threonylcarbamoyltransferase 0.0133920691245 0.5 0.486607930876 +UniRef50_I0KVQ6 0.144248188134 0.5 0.355751811866 +UniRef50_UPI00034BACF0 hypothetical protein 0.361137120038 0.5 0.138862879962 +UniRef50_P0AFY0 Sigma E factor regulatory protein RseB 4.48874404381 0.500000000001 -3.98874404381 +UniRef50_P93345 Putative carbamoyl phosphate synthetase, large chain 0.412097727523 0.5 0.0879022724773 +UniRef50_UPI000465AFB9 D ribose transporter ATP binding protein 0.217882316199 0.5 0.282117683801 +UniRef50_A6X8A8 Endoribonuclease L PSP 1.890541851 0.499999999997 -1.390541851 +UniRef50_Q46898 CRISPR system Cascade subunit CasD 5.46394798308 0.5 -4.96394798308 +UniRef50_Q9Z661 Diaminopimelate decarboxylase 1.27919529298 0.5 -0.77919529298 +UniRef50_Q6GDP8 Ferrous iron transport protein B 1.63519853988 0.5 -1.13519853988 +UniRef50_Q42891 Lactoylglutathione lyase 0.47822615943 0.5 0.0217738405696 +UniRef50_R7IF37 0.174256486182 0.5 0.325743513818 +UniRef50_B5GQH0 0.595281061502 0.5 -0.0952810615025 +UniRef50_Q0APS4 Thioesterase superfamily protein 0.0131170041713 0.5 0.486882995829 +UniRef50_Q9RVA0 0.00265215223468 0.5 0.497347847765 +UniRef50_Q5HQK8 Putative peptidyl prolyl cis trans isomerase 1.23606681317 0.500000000001 -0.736066813167 +UniRef50_A5ULZ8 3.59070155859 0.499999999998 -3.09070155859 +UniRef50_B1HUU8 Glucosamine 6 phosphate deaminase 0.204753352228 0.5 0.295246647772 +UniRef50_A6QDY0 Phage portal protein 1.53101961672 0.5 -1.03101961672 +UniRef50_A6LQB8 0.112746969302 0.5 0.387253030698 +UniRef50_R7U693 1.66058465496 0.5 -1.16058465496 +UniRef50_Q5HK21 YycI protein 1.13692244513 0.5 -0.63692244513 +UniRef50_W8YHT8 1.32629058755 0.5 -0.826290587548 +UniRef50_Q9JYB8 ComE operon protein 1 related protein 0.116638477252 0.5 0.383361522749 +UniRef50_Q0JKD0 Glutamate synthase 1 [NADH], chloroplastic 0.0586332852345 0.5 0.441366714765 +UniRef50_P06720 Alpha galactosidase 2.05563353017 0.499999999998 -1.55563353017 +UniRef50_Q9ZLY0 UDP N acetylmuramoylalanine D glutamate ligase 0.0245955601569 0.500000000001 0.475404439842 +UniRef50_N6VE85 1.35510746162 0.5 -0.85510746162 +UniRef50_A0A011RZR4 0.358307007131 0.5 0.141692992869 +UniRef50_UPI000381C6B2 MULTISPECIES 0.930854508369 0.5 -0.430854508369 +UniRef50_UPI000471AF5A hypothetical protein 4.46999808998 0.499999999999 -3.96999808998 +UniRef50_UPI0003B2EAF3 DNA polymerase I 0.0293180287606 0.5 0.47068197124 +UniRef50_A1VT86 Phosphate butyryltransferase 2.60658415552 0.500000000002 -2.10658415552 +UniRef50_D8JIA1 DMT family permease 0.0402770409603 0.5 0.45972295904 +UniRef50_UPI0003623153 hypothetical protein 0.765383392266 0.5 -0.265383392266 +UniRef50_E7B1W7 Zinc ABC transporter, inner membrane permease protein ZnuB 0.085124655939 0.5 0.414875344061 +UniRef50_UPI0003AD1FFA hypothetical protein 0.0220991008279 0.499999999999 0.477900899173 +UniRef50_R7PV41 Bacterial membrane flanked domain protein 8.28872466834 0.499999999996 -7.78872466833 +UniRef50_C2L1L8 0.408782208985 0.5 0.0912177910147 +UniRef50_K9NJK2 Putrescine transport system permease protein 1.71753852842 0.5 -1.21753852842 +UniRef50_Q187P1 LexA repressor 4.62707319507 0.500000000004 -4.12707319508 +UniRef50_Q8Z3W5 UPF0149 protein YgfB 0.335301998983 0.5 0.164698001017 +UniRef50_A6LQ92 Transcriptional antiterminator, BglG 0.0335955527131 0.5 0.466404447287 +UniRef50_J4SG21 0.368781296838 0.5 0.131218703162 +UniRef50_Q8XZ19 DNA polymerase IV 0.219471151466 0.5 0.280528848534 +UniRef50_Q8GAA6 Queuine tRNA ribosyltransferase 0.0331980233705 0.5 0.46680197663 +UniRef50_A6LZ80 RNA polymerase, sigma 24 subunit, ECF subfamily 0.859662236498 0.5 -0.359662236498 +UniRef50_P55037 Ferredoxin dependent glutamate synthase 1 0.491648407794 0.5 0.00835159220581 +UniRef50_UPI000362A514 hypothetical protein 0.171604208194 0.5 0.328395791806 +UniRef50_Q5H330 Glutamine synthetase 5.08352672629 0.499999999996 -4.58352672628 +UniRef50_UPI000381B208 amino acid ABC transporter ATPase 0.0907105997266 0.5 0.409289400273 +UniRef50_UPI000344FAE6 hypothetical protein 2.6004156988 0.500000000002 -2.1004156988 +UniRef50_Q5XA93 0.419585048209 0.5 0.0804149517913 +UniRef50_Q6FDD7 0.0390470761973 0.5 0.460952923803 +UniRef50_F0Y880 0.442050625816 0.5 0.0579493741837 +UniRef50_X2LK66 Penicillin binding protein 1C 5.85991552244 0.500000000001 -5.35991552244 +UniRef50_G7U7D2 ABC transporter, permease protein 0.0104914666555 0.5 0.489508533344 +UniRef50_Q2GDL7 Ribosomal RNA large subunit methyltransferase E 0.726819327816 0.5 -0.226819327816 +UniRef50_V5VAN9 Major facilitator superfamily permease 0.00791282584352 0.5 0.492087174156 +UniRef50_Q9RYA2 0.000256123729951 0.5 0.49974387627 +UniRef50_Q2C7C0 0.0429625938654 0.5 0.457037406135 +UniRef50_UPI0003B42B48 hypothetical protein, partial 0.807308550984 0.5 -0.307308550984 +UniRef50_F3NYW4 3 carboxymuconate cyclase 0.279925888875 0.5 0.220074111125 +UniRef50_B1GZ76 DNA directed RNA polymerase subunit beta 0.31958199391 0.5 0.18041800609 +UniRef50_UPI000365AE70 hypothetical protein 0.0557152837779 0.5 0.444284716222 +UniRef50_UPI000464E1A7 hypothetical protein 0.33978837367 0.5 0.16021162633 +UniRef50_UPI0004787718 hypothetical protein 2.93356387933 0.499999999999 -2.43356387933 +UniRef50_K0RCG6 2.30317850605 0.499999999999 -1.80317850605 +UniRef50_F0XXW5 1.41221953899 0.499999999998 -0.912219538991 +UniRef50_C5WE22 0.469395452973 0.5 0.030604547027 +UniRef50_UPI000373B5E9 hypothetical protein 0.311403334744 0.5 0.188596665256 +UniRef50_R6N0L8 Transcriptional regulator PadR family 2.56662818713 0.499999999997 -2.06662818713 +UniRef50_A3MAB2 Resolvase 0.0127988542568 0.5 0.487201145743 +UniRef50_UPI00026C7388 bicyclomycin resistance protein 0.139773636469 0.5 0.360226363532 +UniRef50_A0ZZN9 Aspartate semialdehyde dehydrogenase 0.152410796918 0.5 0.347589203082 +UniRef50_Q8RE73 Transcriptional regulator, DeoR family 1.3157450906 0.5 -0.815745090598 +UniRef50_N0AI85 0.0791116130859 0.5 0.420888386914 +UniRef50_UPI00029D989C PREDICTED 0.22062195957 0.5 0.27937804043 +UniRef50_F8KPA7 Glutathione regulated potassium efflux system protein KefB 0.0130419880358 0.5 0.486958011964 +UniRef50_Q3IV28 DNA binding HTH domain containing proteins 0.963054583095 0.5 -0.463054583095 +UniRef50_M8W9J3 Glycosyl hydrolase family 65 central catalytic domain protein 1.35779537881 0.499999999999 -0.857795378809 +UniRef50_B3WXF3 Glycolate oxidase iron sulfur subunit 0.229748239645 0.5 0.270251760355 +UniRef50_UPI00024851F3 hemolysin type calcium binding protein 0.025188580036 0.5 0.474811419964 +UniRef50_UPI0003B6F611 aldehyde activating protein 2.00169419395 0.499999999997 -1.50169419395 +UniRef50_UPI00029AFF26 30S ribosomal protein S15 1.66150959304 0.5 -1.16150959304 +UniRef50_Q96RP9 Elongation factor G, mitochondrial 0.800789594162 0.5 -0.300789594162 +UniRef50_D0LJQ7 Extracellular solute binding protein family 1 3.01870458197 0.5 -2.51870458197 +UniRef50_Q9RWX4 0.0122861061853 0.5 0.487713893815 +UniRef50_P25740 Lipopolysaccharide core biosynthesis protein RfaG 1.30099118203 0.5 -0.800991182026 +UniRef50_T2L9X3 1.72316361917 0.5 -1.22316361917 +UniRef50_Q9RRP0 Transcriptional regulator, MerR family 0.00476317368087 0.5 0.495236826319 +UniRef50_B9KNU8 Transcriptional regulator, MerR family 2.9310442684 0.5 -2.4310442684 +UniRef50_G7U539 0.00791285662625 0.5 0.492087143374 +UniRef50_UPI00035E9032 MULTISPECIES 0.170805619762 0.5 0.329194380237 +UniRef50_UPI000411B532 hypothetical protein 0.924189281091 0.5 -0.424189281091 +UniRef50_UPI0004638A40 hypothetical protein 1.37830805112 0.5 -0.878308051119 +UniRef50_UPI000304092F hypothetical protein 0.246935834404 0.5 0.253064165596 +UniRef50_UPI00047D1DA4 methyltransferase 0.581486844265 0.5 -0.0814868442646 +UniRef50_B9E5C1 0.256674946029 0.5 0.243325053971 +UniRef50_U5MS98 0.147434189858 0.499999999999 0.352565810143 +UniRef50_A3M1H8 0.00560023901798 0.5 0.494399760982 +UniRef50_A4WTR8 1.17185794903 0.5 -0.671857949027 +UniRef50_F9YXU6 0.11825540713 0.5 0.38174459287 +UniRef50_B2V7W7 ATP dependent 6 phosphofructokinase 1.49926624693 0.500000000001 -0.999266246931 +UniRef50_UPI00046226A0 histidine kinase, partial 0.346785417831 0.5 0.153214582169 +UniRef50_UPI000464D5F8 quercetin 2,3 dioxygenase 0.239583351495 0.5 0.260416648505 +UniRef50_Q89GJ0 ABC transporter permease protein 1.04142889578 0.5 -0.541428895784 +UniRef50_Q82SA8 Glucans biosynthesis glucosyltransferase H 1.641885121 0.500000000001 -1.141885121 +UniRef50_M1Z980 0.147096476196 0.5 0.352903523804 +UniRef50_UPI0004704D11 translation initiation factor IF 3 0.388717924883 0.5 0.111282075117 +UniRef50_G0DSU9 S adenosylmethionine synthase 0.0259070932081 0.5 0.474092906792 +UniRef50_Q2FFH9 Sodium dependent dicarboxylate transporter SdcS 3.99134386688 0.500000000005 -3.49134386689 +UniRef50_UPI000362FFAD hypothetical protein, partial 0.167789981057 0.5 0.332210018943 +UniRef50_G0DRS5 Sugar binding protein 0.0140801005526 0.5 0.485919899447 +UniRef50_UPI000223620B PREDICTED 0.320312607797 0.5 0.179687392203 +UniRef50_UPI0003B6A033 ABC transporter 0.318109759189 0.5 0.181890240811 +UniRef50_Q96533 Alcohol dehydrogenase class 3 0.000922250393614 0.5 0.499077749606 +UniRef50_W9EWM1 0.73139234568 0.5 -0.23139234568 +UniRef50_C1KYP9 Prolipoprotein diacylglyceryl transferase 0.0100479530263 0.5 0.489952046974 +UniRef50_UPI000479DF45 hypothetical protein 0.957499502946 0.5 -0.457499502946 +UniRef50_M9M1D4 2.24422377139 0.5 -1.74422377139 +UniRef50_D5ATM2 Transcriptional regulator, LysR family 1.35511657814 0.5 -0.855116578135 +UniRef50_A0A024J7I0 Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA dependent ATPase and ssDNA annealing activities involved in maintenance of genome 0.096276289645 0.5 0.403723710355 +UniRef50_Q182G9 Uracil DNA glycosylase 1.88364315346 0.5 -1.38364315346 +UniRef50_UPI00037EDDB2 hypothetical protein 0.327395056965 0.5 0.172604943035 +UniRef50_D9WFC1 Allergen V5 Tpx 1 related protein 0.573523930033 0.5 -0.0735239300333 +UniRef50_P0A911 Outer membrane protein A 1.78492112882 0.5 -1.28492112882 +UniRef50_UPI0003B56FE6 hypothetical protein 1.14144634771 0.499999999999 -0.641446347714 +UniRef50_UPI000465FC10 oxidoreductase 0.334238597451 0.5 0.165761402549 +UniRef50_K9NBL7 Formate dehydrogenase family accessory protein FdhD 0.431267476287 0.5 0.0687325237133 +UniRef50_C8RZ45 Entericidin EcnAB 0.272144005049 0.5 0.227855994951 +UniRef50_V9ZPI5 GntR family transcriptional regulator 0.131047964032 0.5 0.368952035968 +UniRef50_B8GVF8 Potassium transporting ATPase A chain 0.0040498326893 0.5 0.495950167311 +UniRef50_Q4FR66 Possible tRNA io(6)a) hydroxylase 0.00124024479051 0.5 0.498759755209 +UniRef50_V5XTH0 HIT family protein 0.158515997214 0.5 0.341484002786 +UniRef50_S5XKF8 Aminodeoxychorismate lyase 1.52160056417 0.5 -1.02160056417 +UniRef50_UPI00037864CC hypothetical protein 1.09741460353 0.5 -0.597414603526 +UniRef50_A3M8R9 0.00650383075351 0.5 0.493496169247 +UniRef50_D3CS21 Terminase 0.185484400385 0.5 0.314515599615 +UniRef50_D7CM96 Metallophosphoesterase 0.241815137496 0.5 0.258184862504 +UniRef50_A8U0I4 0.195711215782 0.5 0.304288784218 +UniRef50_Q28TH8 Protein L isoaspartate O methyltransferase 1.52540746439 0.500000000001 -1.02540746439 +UniRef50_D7A8N8 0.796521926768 0.5 -0.296521926768 +UniRef50_UPI000361C4AD hypothetical protein 6.51168202985 0.499999999994 -6.01168202985 +UniRef50_P57028 DNA primase 0.0715115582835 0.5 0.428488441717 +UniRef50_Q3AAI8 Adenine phosphoribosyltransferase 0.293509259629 0.5 0.206490740371 +UniRef50_G0MS24 0.42549584998 0.5 0.0745041500199 +UniRef50_A5UL10 6.17242877967 0.499999999997 -5.67242877967 +UniRef50_A6LT75 Ig domain protein, group 2 domain protein 0.0908674261195 0.5 0.40913257388 +UniRef50_UPI0003735B5E hypothetical protein 1.75630470616 0.5 -1.25630470616 +UniRef50_Q8FPF5 LexA repressor 2.00253198873 0.5 -1.50253198873 +UniRef50_C1AAF1 UDP glucose 6 dehydrogenase 0.740307855087 0.5 -0.240307855087 +UniRef50_UPI0003C1975D 0.326970047203 0.5 0.173029952797 +UniRef50_UPI00037D4B02 hypothetical protein 1.02018098089 0.5 -0.520180980894 +UniRef50_P45335 0.0406011796692 0.5 0.459398820331 +UniRef50_Q47690 Homocysteine S methyltransferase 2.22647310273 0.499999999998 -1.72647310272 +UniRef50_A6QBN8 ATP dependent zinc metalloprotease FtsH 0.00517843290703 0.5 0.494821567093 +UniRef50_B2SDP9 3 dehydroquinate dehydratase 1.8940697783 0.5 -1.3940697783 +UniRef50_UPI0003BD59E0 PREDICTED 0.292450220498 0.5 0.207549779502 +UniRef50_G7M9Q4 SSS sodium solute transporter superfamily 0.108463976192 0.499999999999 0.391536023809 +UniRef50_UPI00046850A9 membrane protein 3.88779775763 0.500000000001 -3.38779775764 +UniRef50_Q1MIN0 Phosphate import ATP binding protein PstB 2 0.0197531432345 0.5 0.480246856765 +UniRef50_A0A031W8S5 0.514347638867 0.5 -0.0143476388672 +UniRef50_A6VAP8 0.194321536421 0.5 0.305678463579 +UniRef50_Q9I425 Cytochrome bo ubiquinol oxidase subunit 3 0.859347860417 0.5 -0.359347860417 +UniRef50_Q6A9N0 Hemin receptor 0.00276602429937 0.5 0.497233975701 +UniRef50_Q63Q93 Phosphoribosyl AMP cyclohydrolase 0.199533929136 0.5 0.300466070864 +UniRef50_I2DKJ5 Urea ABC transporter, urea binding protein 2.2800768941 0.499999999997 -1.7800768941 +UniRef50_F0RXH0 Ornithine decarboxylase 0.12386312641 0.5 0.37613687359 +UniRef50_K4RK14 Cysteine desulfurase 0.0202320531595 0.5 0.47976794684 +UniRef50_UPI00045D877D PREDICTED 0.450329605439 0.5 0.0496703945607 +UniRef50_UPI000262B349 TonB like protein 0.438151197475 0.5 0.0618488025254 +UniRef50_A0A024HEM4 0.62007568032 0.5 -0.12007568032 +UniRef50_UPI00032AF593 PREDICTED 0.13556693978 0.5 0.364433060219 +UniRef50_E3I3E7 Enoyl CoA hydratase isomerase 1.38091465417 0.5 -0.880914654168 +UniRef50_S3ZTJ7 4.17241225873 0.500000000004 -3.67241225873 +UniRef50_C2V3W1 Flavodoxin 0.145229090814 0.5 0.354770909186 +UniRef50_I0EKX0 0.0110840992238 0.5 0.488915900776 +UniRef50_I0EKX8 0.0436690017883 0.5 0.456330998212 +UniRef50_UPI0003B5754D 30S ribosomal protein S2 0.0911290065941 0.5 0.408870993406 +UniRef50_UPI000477AE59 GMP synthase 0.117553722812 0.500000000001 0.382446277188 +UniRef50_UPI00036D316E hypothetical protein 0.450270428536 0.5 0.0497295714645 +UniRef50_X1RBN9 Marine sediment metagenome DNA, contig 0.0386974108398 0.500000000001 0.46130258916 +UniRef50_S1SGR9 3.14035316929 0.500000000001 -2.64035316929 +UniRef50_G7ZV51 0.530767305084 0.5 -0.0307673050837 +UniRef50_A6M2G9 Polysaccharide biosynthesis protein 0.0255267581587 0.5 0.474473241842 +UniRef50_N0C5G3 0.523833541207 0.5 -0.0238335412073 +UniRef50_A3VF16 3.21383318523 0.499999999997 -2.71383318522 +UniRef50_A1WKV0 Succinate dehydrogenase 1.44193236192 0.5 -0.941932361917 +UniRef50_Q0SRW4 Phospho N acetylmuramoyl pentapeptide transferase 0.373958919936 0.5 0.126041080064 +UniRef50_UPI00046AE78D type III secretion protein HrpI 0.537200626249 0.5 -0.0372006262492 +UniRef50_U7DL84 TetR family transcriptional regulator 0.782140613524 0.5 -0.282140613524 +UniRef50_N6TVC0 8.10849882077 0.500000000002 -7.60849882077 +UniRef50_V6QG29 Type III restriction enzyme, res subunit 0.924126827996 0.5 -0.424126827996 +UniRef50_Q8PG33 RNA polymerase sigma factor RpoD 0.141270982849 0.5 0.358729017151 +UniRef50_D5SSK6 Beta Ig H3 fasciclin 2.46538575393 0.5 -1.96538575393 +UniRef50_A5N5W0 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0036090583529 0.5 0.496390941647 +UniRef50_S9QZ13 0.329104547425 0.5 0.170895452575 +UniRef50_D9UUH5 Predicted protein 0.0906277453486 0.499999999999 0.409372254652 +UniRef50_P0C8K1 D tagatose 1,6 bisphosphate aldolase subunit KbaZ 1.17465527247 0.5 -0.674655272472 +UniRef50_Q73Z69 0.613279328706 0.5 -0.113279328706 +UniRef50_UPI0003B6885A hypothetical protein 1.7088124466 0.5 -1.2088124466 +UniRef50_UPI00047712DF cystathionine beta lyase 2.22967601081 0.5 -1.72967601081 +UniRef50_M9VBT0 RpiR family transcriptional regulator 0.0416367629683 0.5 0.458363237032 +UniRef50_A7ZUM9 2.13335100876 0.5 -1.63335100876 +UniRef50_UPI0003B566EA glycine betaine ABC transporter ATP binding protein 6.41944037867 0.500000000006 -5.91944037868 +UniRef50_UPI0003682815 transcriptional regulator 0.211584295144 0.5 0.288415704856 +UniRef50_UPI0003C1848F 0.0465043592427 0.500000000001 0.453495640757 +UniRef50_H2A7K3 COG4478, integral membrane protein 6.47316828041 0.499999999997 -5.97316828041 +UniRef50_UPI0002485ACF sugar ABC transporter ATP binding protein 0.344253011029 0.5 0.155746988971 +UniRef50_K8B0J3 Acetyl coenzyme A synthetase 0.794848273739 0.5 -0.294848273739 +UniRef50_UPI00045E771A hypothetical protein 0.828909048121 0.5 -0.328909048121 +UniRef50_UPI00036DBE20 hypothetical protein 2.04231130902 0.500000000002 -1.54231130902 +UniRef50_F0Y5J9 Expressed protein 0.232853836726 0.5 0.267146163274 +UniRef50_Q9HZ17 FMN dependent NADH azoreductase 3 0.0423195780828 0.5 0.457680421918 +UniRef50_UPI000379F901 hypothetical protein 0.634927847085 0.5 -0.134927847085 +UniRef50_A8Z481 Competence protein ComGD 0.739708848667 0.5 -0.239708848667 +UniRef50_Z8E4W9 13.9052812576 0.500000000007 -13.4052812576 +UniRef50_A7Z3A7 N acetyl gamma glutamyl phosphate reductase 0.481245778804 0.5 0.0187542211963 +UniRef50_UPI00036800B9 hypothetical protein 0.611706587447 0.5 -0.111706587447 +UniRef50_K0DDY7 3 oxoacyl [acyl carrier protein] synthase 2 2.28805940358 0.5 -1.78805940358 +UniRef50_A0A023RSC6 D Ala D Ala carboxypeptidase 0.0159751387418 0.5 0.484024861258 +UniRef50_Q9ZKG9 Methionine tRNA ligase 0.0154559398495 0.5 0.484544060151 +UniRef50_M4YY04 Ribosome biogenesis GTPase A 0.980679624597 0.5 -0.480679624597 +UniRef50_W6I1I5 0.306192854516 0.5 0.193807145484 +UniRef50_W1X1F9 1.32634018527 0.5 -0.826340185266 +UniRef50_B6IWY4 0.266159311472 0.5 0.233840688528 +UniRef50_R9SI06 Chorismate lyase 4.84915801385 0.499999999996 -4.34915801385 +UniRef50_D0Z8H8 0.00790461513592 0.5 0.492095384864 +UniRef50_G5LKX8 Potassium transporting ATPase B chain 0.006884367582 0.5 0.493115632418 +UniRef50_Q31N34 3 isopropylmalate dehydrogenase 0.423237739215 0.5 0.0767622607853 +UniRef50_Q9LV03 Glutamate synthase 1 [NADH], chloroplastic 0.0473944025667 0.5 0.452605597433 +UniRef50_P21599 Pyruvate kinase II 1.71244070775 0.5 -1.21244070775 +UniRef50_I0ZLD5 Cation acetate symporter ActP 0.556425662884 0.5 -0.0564256628842 +UniRef50_F0N2E1 Antioxidant, AhpC TSA family 0.0748029020557 0.5 0.425197097944 +UniRef50_R6LNJ5 Calcium translocating P type ATPase PMCA type 0.184941090794 0.5 0.315058909206 +UniRef50_V6IYX1 Sugar ABC transporter substrate binding protein 3.89148567004 0.499999999997 -3.39148567004 +UniRef50_M9RA73 43.7730337917 0.499999999987 -43.2730337917 +UniRef50_H1CG66 Inosine 5 monophosphate dehydrogenase 3.24553557165 0.499999999998 -2.74553557165 +UniRef50_Q9FV81-2 Isoform 2 of Glutamyl tRNA amidotransferase subunit B, chloroplastic mitochondrial 0.696329156837 0.5 -0.196329156837 +UniRef50_UPI00036930E8 hypothetical protein 21.69102134 0.500000000011 -21.19102134 +UniRef50_C1DKH4 Tartrate transporter 0.0495869828477 0.5 0.450413017152 +UniRef50_UPI0004798495 16S rRNA methyltransferase, partial 0.116281517369 0.500000000001 0.383718482631 +UniRef50_UPI0004702790 hypothetical protein 1.61904420505 0.5 -1.11904420505 +UniRef50_I6RS84 Type 4 fimbrial biogenesis protein PilX 1.14080440044 0.5 -0.640804400436 +UniRef50_P39853 Capsular polysaccharide biosynthesis protein CapD 0.0103010119777 0.5 0.489698988022 +UniRef50_D7HYR3 D alanyl D alanine carboxypeptidase 0.80924399944 0.5 -0.30924399944 +UniRef50_UPI0004678721 hypothetical protein 8.85315432574 0.5 -8.35315432574 +UniRef50_I6U2K4 Transcriptional regulator 1.64509763095 0.5 -1.14509763095 +UniRef50_A0A024JDH6 Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD dependent butanediol dehydrogenase 0.107034567831 0.5 0.392965432169 +UniRef50_P23876 Ferric enterobactin transport system permease protein FepD 0.952558990993 0.5 -0.452558990993 +UniRef50_L0Q6W3 0.00394676563297 0.5 0.496053234367 +UniRef50_C5N3X1 0.969512805958 0.5 -0.469512805958 +UniRef50_UPI0001F85E2B multiple sugar binding transporter like protein 0.279683779988 0.5 0.220316220012 +UniRef50_UPI0003090106 cyclase 0.0172505514675 0.5 0.482749448532 +UniRef50_W6C5N4 Polyketide synthase domain protein 0.0944789005694 0.5 0.405521099431 +UniRef50_P33770 Coproporphyrinogen III oxidase, anaerobic 1 1.66317245134 0.5 -1.16317245134 +UniRef50_E4L4M2 SNF2 family protein 1.60635308591 0.5 -1.10635308591 +UniRef50_C3I167 Collagen adhesion protein 0.166786141384 0.5 0.333213858616 +UniRef50_UPI00037939BE hypothetical protein 0.648200230065 0.5 -0.148200230065 +UniRef50_UPI0003020997 hypothetical protein 0.196933369941 0.5 0.303066630059 +UniRef50_Q8ER36 Orotidine 5 phosphate decarboxylase 0.293661731259 0.5 0.206338268741 +UniRef50_U1EEA4 4.24949561643 0.499999999999 -3.74949561643 +UniRef50_U5PCG2 ABC transporter ATP binding protein 0.615645415929 0.5 -0.115645415929 +UniRef50_T1XT07 BioX, putative 10.8291521433 0.499999999981 -10.3291521433 +UniRef50_UPI00034AA460 hypothetical protein 10.2483680672 0.500000000005 -9.74836806725 +UniRef50_K1E310 FAD dependent oxidoreductase 0.486260328685 0.5 0.0137396713145 +UniRef50_D2JAL6 1.47006558397 0.5 -0.970065583974 +UniRef50_UPI0004721ABE 2 hydroxy acid oxidase 0.335806916443 0.5 0.164193083557 +UniRef50_K0HFL9 MFS superfamily metabolite transporter 0.0090541683103 0.5 0.49094583169 +UniRef50_P48728 Aminomethyltransferase, mitochondrial 0.384455594949 0.5 0.115544405051 +UniRef50_UPI0004779493 multidrug ABC transporter substrate binding protein 0.0564522018735 0.5 0.443547798126 +UniRef50_A7FC02 2.90938761344 0.499999999997 -2.40938761344 +UniRef50_Q92ID9 NADH quinone oxidoreductase subunit E 1.52424226025 0.5 -1.02424226025 +UniRef50_Q7U8U2 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00215375539461 0.5 0.497846244605 +UniRef50_A4WSV4 Integral membrane sensor hybrid histidine kinase 0.653310186559 0.5 -0.153310186559 +UniRef50_Q3J222 Prohead peptidase 2.9635170295 0.5 -2.4635170295 +UniRef50_A6LU68 0.0803633649624 0.5 0.419636635037 +UniRef50_P0ACU0 0.722538841288 0.5 -0.222538841288 +UniRef50_J4PCY6 0.163299316869 0.499999999999 0.336700683132 +UniRef50_J9NX48 0.357835028783 0.5 0.142164971217 +UniRef50_Q7UKG6 Phosphopantetheine adenylyltransferase 0.69039412159 0.5 -0.19039412159 +UniRef50_Q6AL57 Transcription elongation factor GreA 18.6843072006 0.499999999989 -18.1843072006 +UniRef50_Q47VJ8 Ribosomal RNA small subunit methyltransferase A 1.26143281148 0.5 -0.761432811483 +UniRef50_W4HH92 Flagellar protein FlgJ 1.14092745254 0.5 -0.640927452541 +UniRef50_Q9X1K5 Diaminopimelate decarboxylase 0.0599772598265 0.5 0.440022740173 +UniRef50_A6L467 0.0104166033589 0.5 0.489583396641 +UniRef50_UPI00047E3BE8 antibiotic ABC transporter ATP binding protein 0.829063286816 0.5 -0.329063286816 +UniRef50_UPI00036A881E hypothetical protein 0.602196358566 0.5 -0.102196358566 +UniRef50_UPI000403EBB4 hypothetical protein 0.56814281328 0.5 -0.0681428132802 +UniRef50_Q9BPL7 Enolase 2 0.0973683078269 0.5 0.402631692173 +UniRef50_Q9RUW7 0.00293994791987 0.5 0.49706005208 +UniRef50_A8LSK1 Methionine synthase 4.3913253241 0.500000000002 -3.89132532411 +UniRef50_UPI0003809DD9 hypothetical protein 0.193401702422 0.5 0.306598297578 +UniRef50_S9Q9U8 4.5091156397 0.499999999999 -4.0091156397 +UniRef50_B0JXU3 Tryptophan synthase alpha chain 0.0876204580425 0.5 0.412379541958 +UniRef50_E3D2G5 Histone deacetylase family protein 0.0431957727858 0.5 0.456804227214 +UniRef50_UPI0003B5E34E hypothetical protein 0.431454367334 0.5 0.0685456326664 +UniRef50_R4K9U0 DNA binding domain containing protein, AraC type 0.0567602996557 0.5 0.443239700344 +UniRef50_A1B0L9 DSBA oxidoreductase 3.31147663448 0.499999999998 -2.81147663448 +UniRef50_F4M1U9 4.21346030378 0.5 -3.71346030378 +UniRef50_D9XYR1 0.313934246053 0.5 0.186065753947 +UniRef50_A1TVS9 DNA directed RNA polymerase subunit beta 0.0215417705239 0.5 0.478458229476 +UniRef50_UPI00036C2011 hypothetical protein 0.146914526513 0.5 0.353085473487 +UniRef50_V4ZLE5 0.901889495033 0.5 -0.401889495033 +UniRef50_UPI00046E5BCC hypothetical protein 0.514501486799 0.5 -0.0145014867986 +UniRef50_H8H091 Protein tyrosine kinase 0.00408172806393 0.5 0.495918271936 +UniRef50_Q9RRQ3 Methionyl tRNA formyltransferase 0.0183509368169 0.5 0.481649063183 +UniRef50_UPI00040B88AD UDP N acetylglucosamine 2 epimerase 0.0413152364249 0.5 0.458684763575 +UniRef50_UPI00047E5ED7 methionyl tRNA synthetase 0.121285797292 0.5 0.378714202708 +UniRef50_UPI00029B3D72 methionine ABC transporter ATP binding protein 0.246954877248 0.5 0.253045122752 +UniRef50_I3TSH3 2.01202605771 0.499999999999 -1.51202605771 +UniRef50_UPI0003659DC3 hypothetical protein 3.39962677311 0.500000000001 -2.89962677311 +UniRef50_A9NFF0 3 oxoacyl [acyl carrier protein] synthase 3 3.1606134829 0.499999999994 -2.66061348289 +UniRef50_UPI00039AD4F5 hypothetical protein 0.876165032513 0.5 -0.376165032513 +UniRef50_D8LEP5 0.786384793177 0.5 -0.286384793177 +UniRef50_UPI000371B6BB hypothetical protein 0.501973314739 0.5 -0.00197331473895 +UniRef50_UPI0003730F41 hypothetical protein 0.0791402819411 0.5 0.420859718059 +UniRef50_D9W6W3 Pyruvate dehydrogenase E1 component, beta subunit 0.033031791525 0.5 0.466968208475 +UniRef50_F2A904 4.61211087514 0.500000000007 -4.11211087515 +UniRef50_P66840 Putative 5 deoxyribonucleotidase 1.75530831232 0.5 -1.25530831232 +UniRef50_UPI000419C490 hypothetical protein 0.0406207808659 0.5 0.459379219134 +UniRef50_T1XMS0 0.301845703419 0.5 0.198154296581 +UniRef50_E3HMU2 NLPA lipoprotein family protein 2 0.361334173507 0.5 0.138665826493 +UniRef50_F2MTP7 Permease protein 0.00196890164659 0.5 0.498031098353 +UniRef50_A5G7C7 Cyclic pyranopterin monophosphate synthase accessory protein 0.167885725089 0.5 0.332114274911 +UniRef50_P37660 Inner membrane transport protein YhjV 2.01192698468 0.500000000001 -1.51192698468 +UniRef50_M4R188 Alpha beta hydrolase 0.0254925207908 0.5 0.474507479209 +UniRef50_Q9ZDG4 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.307519644151 0.5 0.192480355849 +UniRef50_UPI000252B2C6 PREDICTED 0.163802531924 0.5 0.336197468076 +UniRef50_B4G025 1.34691804927 0.5 -0.84691804927 +UniRef50_N1MD27 0.056026275658 0.5 0.443973724342 +UniRef50_UPI00037C0828 hypothetical protein 0.104961713411 0.5 0.395038286589 +UniRef50_A6LR24 Binding protein dependent transport systems inner membrane component 0.220028891283 0.5 0.279971108717 +UniRef50_Q7VQF3 Chaperone protein ClpB 1.51853864109 0.5 -1.01853864109 +UniRef50_A6LUL9 0.0379766330136 0.5 0.462023366986 +UniRef50_O34912 Histidine biosynthesis bifunctional protein HisIE 0.106065311527 0.5 0.393934688473 +UniRef50_A4WZN4 9.1990357861 0.500000000003 -8.69903578611 +UniRef50_UPI000455DB27 general APC amino acid permease 0.099219454073 0.5 0.400780545927 +UniRef50_UPI0002B43AC6 PREDICTED 0.956369031217 0.5 -0.456369031217 +UniRef50_B2GAM0 Enolase 0.180224694224 0.5 0.319775305776 +UniRef50_UPI00047EF87F adenine deaminase 2.56289877059 0.500000000001 -2.06289877059 +UniRef50_P0AG16 Amidophosphoribosyltransferase 0.879128201118 0.5 -0.379128201118 +UniRef50_UPI000329AF58 PREDICTED 0.75112127913 0.5 -0.25112127913 +UniRef50_W5XCC8 Translation initiation factor IF 2 0.180528540384 0.499999999999 0.319471459616 +UniRef50_B5GE97 0.255365430544 0.5 0.244634569456 +UniRef50_P14575 Cytochrome c oxidase subunit 3 2.86523072028 0.5 -2.36523072028 +UniRef50_E8S6A2 Cobyrinic acid ac diamide synthase 0.107238195076 0.5 0.392761804924 +UniRef50_P25798 Flagellar M ring protein 0.913525636438 0.5 -0.413525636438 +UniRef50_A5UP72 Predicted ATPase, AAA+ superfamily 1.99792012247 0.5 -1.49792012247 +UniRef50_Q71YD4 30S ribosomal protein S14 0.0147307195839 0.5 0.485269280416 +UniRef50_J9RWY1 0.529225195073 0.5 -0.0292251950734 +UniRef50_P0AFU1 Inner membrane ABC transporter permease protein YejB 1.98841452959 0.5 -1.48841452959 +UniRef50_UPI00037FB943 hypothetical protein 1.31169172214 0.500000000001 -0.811691722145 +UniRef50_Q0VSU8 Pyridoxine pyridoxamine 5 phosphate oxidase 0.338933973143 0.5 0.161066026857 +UniRef50_Q9ZM43 0.00801490107065 0.5 0.491985098929 +UniRef50_H6SQR1 0.0487529653166 0.5 0.451247034683 +UniRef50_F3YB73 ABC transporter, substrate binding protein 0.647413866398 0.5 -0.147413866398 +UniRef50_I0C1S7 Cystathionine beta lyase 2.05165390669 0.500000000001 -1.55165390669 +UniRef50_R4LHW2 0.0375459285913 0.5 0.462454071409 +UniRef50_B3DWK0 Potassium transporting ATPase A chain 0.00145561917501 0.5 0.498544380825 +UniRef50_O34849 Glutamate synthase large subunit like protein YerD 3.13881965162 0.500000000002 -2.63881965162 +UniRef50_UPI0002557A0F siderophore interacting protein 0.00452299091716 0.5 0.495477009083 +UniRef50_Q8E6D9 0.194362707763 0.5 0.305637292237 +UniRef50_O68826 2.2295551461 0.5 -1.7295551461 +UniRef50_U3TU21 0.369723978673 0.5 0.130276021327 +UniRef50_G7L9I0 Acyl coa ligase acetate coa synthetase like protein 0.222866015893 0.5 0.277133984107 +UniRef50_A5UN41 Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC 15.6782603502 0.499999999995 -15.1782603502 +UniRef50_Q2RWR8 Light independent protochlorophyllide reductase subunit N 5.64900774741 0.500000000001 -5.14900774741 +UniRef50_A0A038C8Y6 Cytochrome C 1.86095236057 0.5 -1.36095236057 +UniRef50_E3PS54 Chemotaxis protein cheV 0.330655361167 0.5 0.169344638833 +UniRef50_E2PUY3 0.400015674998 0.5 0.099984325002 +UniRef50_Q4UTY2 0.0067483020256 0.5 0.493251697974 +UniRef50_P59342 Signal transduction histidine protein kinase BarA 1.14731470192 0.5 -0.647314701919 +UniRef50_F4QP68 Con 0.718185792465 0.5 -0.218185792465 +UniRef50_Q8CTA4 Probable cysteine desulfurase 1.73482775717 0.5 -1.23482775717 +UniRef50_P0AEZ0 Multidrug transporter MdfA 8.34834817266 0.499999999998 -7.84834817266 +UniRef50_UPI000472B3B4 citrate synthase 0.437358152401 0.5 0.0626418475991 +UniRef50_H1QU98 0.410107051989 0.5 0.0898929480114 +UniRef50_A6U5R2 CDP alcohol phosphatidyltransferase 0.984480221655 0.5 -0.484480221655 +UniRef50_UPI00037E82AA hypothetical protein 0.0218011116929 0.5 0.478198888307 +UniRef50_UPI000469723A 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.80356317093 0.500000000002 -2.30356317093 +UniRef50_S2KTE6 0.602404233819 0.5 -0.102404233819 +UniRef50_Q89XM4 Probable malate 0.182450912067 0.5 0.317549087933 +UniRef50_X1HXX0 Marine sediment metagenome DNA, contig 0.224656588288 0.5 0.275343411712 +UniRef50_P31435 Inner membrane symporter YicJ 8.97849893233 0.500000000004 -8.47849893233 +UniRef50_UPI000262EE20 dihydrodipicolinate synthase 8.01042281622 0.500000000007 -7.51042281623 +UniRef50_G9ZDP3 0.0715502328578 0.5 0.428449767142 +UniRef50_P39838 Phosphotransferase RcsD 1.45652863499 0.500000000001 -0.956528634991 +UniRef50_A6QGC0 Serine threonine protein kinase PrkC 1.59172484969 0.499999999999 -1.09172484969 +UniRef50_Q1D6P1 Adenylyl sulfate kinase 0.0170943758246 0.5 0.482905624175 +UniRef50_I4W1C3 0.252069662577 0.5 0.247930337423 +UniRef50_UPI0002485EB3 hypothetical protein 0.388155773134 0.5 0.111844226866 +UniRef50_I0HUK7 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase 0.569383420548 0.5 -0.069383420548 +UniRef50_UPI0003958A44 PREDICTED 0.27235231658 0.5 0.22764768342 +UniRef50_UPI00036FE39E hypothetical protein, partial 0.991380071819 0.5 -0.491380071819 +UniRef50_A3PQ32 5.38399487177 0.499999999995 -4.88399487177 +UniRef50_R9ZF14 Amino acid permease 0.513464855048 0.5 -0.0134648550483 +UniRef50_A3PQ31 6.65887157851 0.500000000006 -6.15887157851 +UniRef50_Q6GHV7 Iron regulated surface determinant protein B 2.43995834391 0.5 -1.93995834391 +UniRef50_UPI0003C39CE6 PREDICTED 0.0363420055593 0.5 0.46365799444 +UniRef50_UPI000332F601 PREDICTED 0.274159510924 0.5 0.225840489076 +UniRef50_Q6A8F8 Prephenate dehydrogenase 0.0343241672326 0.5 0.465675832767 +UniRef50_A7GYD5 Queuine tRNA ribosyltransferase 0.023294869632 0.5 0.476705130368 +UniRef50_UPI00021A56D6 PREDICTED 7.11426593966 0.5 -6.61426593966 +UniRef50_K9ZXB7 CBS domain containing protein 0.00304286488033 0.5 0.49695713512 +UniRef50_H7D9R4 0.490839249155 0.5 0.00916075084545 +UniRef50_A4G4T2 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.179394853367 0.5 0.320605146634 +UniRef50_Q1ITV2 Uroporphyrinogen decarboxylase 0.139229053616 0.5 0.360770946384 +UniRef50_R7B6C4 0.00187973141313 0.5 0.498120268587 +UniRef50_Q5GRY9 Bifunctional DNA directed RNA polymerase subunit beta beta 0.920136175937 0.5 -0.420136175937 +UniRef50_Q73CC8 0.0761560647454 0.5 0.423843935255 +UniRef50_W2BNM9 0.974947439609 0.5 -0.474947439609 +UniRef50_L7VQV4 Chemotaxis signal transduction protein 1.18237313889 0.500000000001 -0.682373138894 +UniRef50_Q5HR61 Lipoprotein, putative 3.42555560736 0.499999999998 -2.92555560735 +UniRef50_Q8CNG1 Alkaline shock protein 23 1.00463225675 0.5 -0.504632256746 +UniRef50_A0A009JWB2 NMT1 like family protein 0.0242654347288 0.5 0.475734565271 +UniRef50_UPI0004646F16 MULTISPECIES 5.35814636976 0.499999999998 -4.85814636976 +UniRef50_Q10663 Bifunctional glyoxylate cycle protein 0.111937733807 0.5 0.388062266193 +UniRef50_UPI000479F146 membrane protein 2.49586583127 0.500000000003 -1.99586583127 +UniRef50_UPI00047D9998 hypothetical protein 0.129912033545 0.5 0.370087966455 +UniRef50_UPI000463D3E1 hypothetical protein, partial 3.02807589087 0.500000000001 -2.52807589088 +UniRef50_D7A1G5 CoA binding domain protein 1.60149620923 0.5 -1.10149620923 +UniRef50_B8D8U8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 1.72471988678 0.5 -1.22471988678 +UniRef50_A6LSU4 NLP P60 protein 0.271593690765 0.5 0.228406309235 +UniRef50_D3VF61 0.036171329547 0.5 0.463828670453 +UniRef50_UPI000225EED0 hypothetical protein 4.53960365646 0.499999999998 -4.03960365646 +UniRef50_Q0VLR3 2 isopropylmalate synthase 0.161634750387 0.5 0.338365249613 +UniRef50_D3E453 0.313216678876 0.5 0.186783321124 +UniRef50_A6LZX3 Integral membrane sensor signal transduction histidine kinase 0.780636932865 0.5 -0.280636932865 +UniRef50_P75955 Inner membrane protein YcfT 0.459079753618 0.5 0.0409202463817 +UniRef50_Q47MV7 Glutamate 5 kinase 0.0695973419943 0.5 0.430402658005 +UniRef50_S6AZQ2 0.70976396054 0.5 -0.20976396054 +UniRef50_UPI000462853E hypothetical protein, partial 0.152759668704 0.5 0.347240331296 +UniRef50_M4U374 0.918565053798 0.5 -0.418565053798 +UniRef50_A0A016RSJ2 1.28356277026 0.5 -0.783562770263 +UniRef50_C4LD11 Lipoprotein signal peptidase 0.16612514872 0.5 0.33387485128 +UniRef50_UPI00034B23A9 short chain dehydrogenase 0.128933049671 0.5 0.371066950329 +UniRef50_Q5FKL1 ABC transporter permease protein 0.596172831876 0.5 -0.0961728318763 +UniRef50_N9UUM3 1.46230908295 0.5 -0.962309082954 +UniRef50_UPI0003B52215 DNA binding protein 0.130980709349 0.5 0.369019290651 +UniRef50_UPI00035FA7D7 hypothetical protein, partial 2.36189425357 0.5 -1.86189425357 +UniRef50_Q62EE6 0.780737958117 0.5 -0.280737958117 +UniRef50_A3U2E2 Conserved hypothetical membrane transport protein 2.37045477097 0.5 -1.87045477097 +UniRef50_W4YD04 5.8644049038 0.500000000002 -5.3644049038 +UniRef50_P24058 Argininosuccinate lyase 0.358382595022 0.5 0.141617404978 +UniRef50_M1LMT5 0.164140471255 0.5 0.335859528745 +UniRef50_A6M2W5 PTS system, glucose subfamily, IIA subunit 0.116089942461 0.499999999999 0.38391005754 +UniRef50_Q48KY0 ABC transporter, periplasmic substrate binding protein 0.342439003157 0.5 0.157560996843 +UniRef50_E3NWX2 0.339053494829 0.5 0.160946505171 +UniRef50_L7WTB5 1.54960993247 0.5 -1.04960993247 +UniRef50_UPI0003F8C100 hypothetical protein 0.145664321998 0.5 0.354335678002 +UniRef50_V1V9W3 CRISPR associated helicase Cas3 1.27352172861 0.5 -0.773521728611 +UniRef50_V9T452 Metabolite transporter 0.327639411669 0.5 0.172360588331 +UniRef50_UPI000365F8BA hypothetical protein 0.826722184835 0.5 -0.326722184835 +UniRef50_UPI0003752AFD hypothetical protein 0.556097222406 0.5 -0.0560972224062 +UniRef50_UPI00037D7BC7 hypothetical protein 0.408091669725 0.5 0.0919083302753 +UniRef50_R7PV18 0.829485575533 0.5 -0.329485575533 +UniRef50_B2I366 AraC type DNA binding domain containing protein 0.0244525798985 0.5 0.475547420102 +UniRef50_D9UQS5 Predicted protein 0.0266659461757 0.5 0.473334053824 +UniRef50_A0A013KTF4 RND transporter, hydrophobe amphiphile efflux 1 family protein 0.0223942551886 0.5 0.477605744812 +UniRef50_Q8CNB4 Suppressor protein suhB 2.64645863936 0.500000000001 -2.14645863936 +UniRef50_W1JGD0 Chromosome partitioning protein ParA 0.353848942951 0.5 0.146151057049 +UniRef50_A9W1N1 NADH quinone oxidoreductase subunit C 0.593415779402 0.5 -0.0934157794018 +UniRef50_G2KMP2 3.26043219427 0.5 -2.76043219427 +UniRef50_B4RBF0 1.18105093319 0.5 -0.681050933194 +UniRef50_U7I221 0.0212735562657 0.5 0.478726443734 +UniRef50_F7YAM4 40 residue YVTN family beta propeller repeat protein 0.302850858139 0.5 0.197149141861 +UniRef50_F3U494 2.5138446846 0.499999999999 -2.0138446846 +UniRef50_A1WXI4 PUCC protein 2.26414815765 0.5 -1.76414815765 +UniRef50_W7Q5R4 0.935034409615 0.5 -0.435034409615 +UniRef50_Q6A6L3 0.0785088138731 0.5 0.421491186127 +UniRef50_S6D6P3 WGR domain containing protein 0.201744081228 0.5 0.298255918772 +UniRef50_U5UEG4 1.30532261323 0.499999999999 -0.805322613233 +UniRef50_J9P5M7 2.09114916123 0.500000000004 -1.59114916123 +UniRef50_Q99UZ6 UPF0637 protein SA0957 4.73530889544 0.499999999994 -4.23530889543 +UniRef50_UPI000255A9F7 hypothetical protein 0.816762875603 0.5 -0.316762875603 +UniRef50_UPI0003643826 hypothetical protein 0.417148596339 0.5 0.0828514036607 +UniRef50_J2ESL9 0.0895672227859 0.5 0.410432777215 +UniRef50_A1SQR8 MATE efflux family protein 0.0163637923898 0.5 0.48363620761 +UniRef50_UPI0003B7A75E 30S ribosomal protein S3 0.384784051884 0.5 0.115215948116 +UniRef50_Q49XH5 Anthranilate phosphoribosyltransferase 2.98019094881 0.499999999997 -2.48019094881 +UniRef50_L7VTP9 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.120396006739 0.5 0.379603993261 +UniRef50_UPI00016AD049 hypothetical protein 0.248741593055 0.5 0.251258406945 +UniRef50_UPI0003B3A739 LysR family transcriptional regulator 0.383348204418 0.5 0.116651795582 +UniRef50_UPI000361DB5D hypothetical protein 0.329535644906 0.5 0.170464355094 +UniRef50_N2K746 Carbon nitrogen hydrolase family protein 0.613851652862 0.5 -0.113851652862 +UniRef50_K9ZW90 ABC type dipeptide transport system, periplasmic component 0.00303397752694 0.5 0.496966022473 +UniRef50_Q9K4A0 Peptide deformylase 4 0.103680380015 0.5 0.396319619985 +UniRef50_S6AT93 Cell envelope biogenesis, outer membrane 1.20114022357 0.5 -0.701140223568 +UniRef50_Q1CUW5 UDP 3 O acylglucosamine N acyltransferase 0.036233748484 0.5 0.463766251516 +UniRef50_G0DWZ2 RNA polymerase sigma factor 0.0547467154816 0.5 0.445253284518 +UniRef50_UPI000262CE6F hypothetical protein 0.132717097032 0.5 0.367282902968 +UniRef50_UPI0003B63E94 ABC transporter ATP binding protein, partial 0.185057697592 0.5 0.314942302408 +UniRef50_H7CIC3 Transposase 0.0112561612202 0.5 0.48874383878 +UniRef50_G5N518 Fatty acid oxidation complex subunit alpha 0.971286695662 0.5 -0.471286695662 +UniRef50_Q81E30 Isoleucine tRNA ligase 2 0.00469969296563 0.499999999999 0.495300307035 +UniRef50_A0M554 Bifunctional protein FolD 0.000788424755238 0.5 0.499211575245 +UniRef50_Q9HY42 1.32610916735 0.5 -0.826109167353 +UniRef50_UPI00046FBD60 zinc ABC transporter permease 0.635247551654 0.5 -0.135247551654 +UniRef50_UPI000454835D PREDICTED 0.431801216671 0.5 0.0681987833291 +UniRef50_D4HAD9 Transcriptional regulator, GntR family 0.012186014126 0.5 0.487813985874 +UniRef50_K8BR71 0.0498337606414 0.5 0.450166239359 +UniRef50_F0IYA9 Fis family transcriptional regulator 3.74767198642 0.5 -3.24767198642 +UniRef50_UPI00035D0C93 hypothetical protein 0.00247459406307 0.5 0.497525405937 +UniRef50_UPI0002555FCE imidazole glycerol phosphate dehydratase histidinol phosphatase, partial 1.40743514917 0.5 -0.907435149174 +UniRef50_A8LPP5 Fasciclin domain protein 2.92749019771 0.500000000004 -2.42749019772 +UniRef50_H0HUE0 0.391244386231 0.5 0.108755613769 +UniRef50_Q3JW66 0.174332091852 0.5 0.325667908149 +UniRef50_X9N9G2 0.497822907378 0.5 0.00217709262164 +UniRef50_R4ZLZ8 CRISPR associated protein, Csd1 family 0.568195868969 0.5 -0.0681958689691 +UniRef50_T2G5V0 Alcohol dehydrogenase 0.781437511238 0.5 -0.281437511238 +UniRef50_R4K4U3 Acetyltransferase 0.0259173272304 0.5 0.474082672769 +UniRef50_R5SMM9 Ribose 5 phosphate isomerase B 0.0542234581447 0.5 0.445776541856 +UniRef50_P07767 Staphylocoagulase 1.59312639154 0.5 -1.09312639154 +UniRef50_I2DEZ6 0.0151017887707 0.5 0.484898211229 +UniRef50_Q08YM3 0.284844172902 0.5 0.215155827098 +UniRef50_P23686 S adenosylmethionine synthase 1 0.0938625538362 0.5 0.406137446163 +UniRef50_Q2FUW5 Accessory Sec system protein Asp3 7.5889077214 0.499999999996 -7.0889077214 +UniRef50_R9SJT9 GTP binding protein 7.39014908104 0.500000000005 -6.89014908105 +UniRef50_D4HAU1 Protoporphyrinogen oxidase 0.0103838629629 0.5 0.489616137037 +UniRef50_UPI00045FEC12 BACTERIOPHYTOCHROME 0.337571243581 0.5 0.162428756419 +UniRef50_L7U2C9 Acetyltransferase 0.0627866387976 0.5 0.437213361202 +UniRef50_E2ZQ75 Transcriptional regulator MvfR 0.741739104246 0.5 -0.241739104246 +UniRef50_F6CTL5 0.775466082398 0.5 -0.275466082398 +UniRef50_UPI00037028AC hypothetical protein 0.345461560642 0.5 0.154538439358 +UniRef50_A3IGB3 0.405734091857 0.5 0.0942659081432 +UniRef50_W0BIN9 Type F conjugative transfer system protein TraU 6.25243000787 0.500000000001 -5.75243000787 +UniRef50_I3U834 Class I fumarate hydratase 2.45000134418 0.5 -1.95000134418 +UniRef50_B0T5G6 1.63090192196 0.5 -1.13090192196 +UniRef50_A3RI32 InlD 0.00240719049243 0.5 0.497592809508 +UniRef50_C8VZF1 0.0748425145043 0.5 0.425157485496 +UniRef50_S6GJT1 Transposase IS4 family protein 1.77008168647 0.5 -1.27008168647 +UniRef50_A1VL02 0.138042348421 0.5 0.361957651579 +UniRef50_A3PSC3 Exopolysaccharide synthesis, ExoD 29.2140686691 0.499999999979 -28.714068669 +UniRef50_R9YTG8 2 dehydropantoate 2 reductase 2.32731771997 0.5 -1.82731771997 +UniRef50_A0A017HHJ1 GTA NlpC P60 family peptidase 0.0674924724883 0.500000000001 0.432507527511 +UniRef50_P0CN05 Sulfate adenylyltransferase 0.897944046411 0.5 -0.397944046411 +UniRef50_H3XP79 Polysaccharide lyase family 8, N terminal alpha helical domain protein 5.00393378395 0.499999999998 -4.50393378395 +UniRef50_UPI000364E3EA hypothetical protein 0.0293485004457 0.5 0.470651499555 +UniRef50_A4WQ10 0.992871271039 0.5 -0.492871271039 +UniRef50_J9CA10 Heat shock protein 70 1.71019778486 0.5 -1.21019778486 +UniRef50_UPI000360AA50 hypothetical protein 1.63705164282 0.5 -1.13705164282 +UniRef50_UPI00036E022C hypothetical protein 0.135992875559 0.5 0.364007124441 +UniRef50_F0MD69 DNA polymerase III, subunits gamma and tau 0.0171103698607 0.5 0.482889630139 +UniRef50_B1MWT1 ABC type dipeptide oligopeptide nickel transport system, permease component 1.41100267164 0.5 -0.911002671642 +UniRef50_A3PM79 Serine type D Ala D Ala carboxypeptidase 0.958388448052 0.5 -0.458388448052 +UniRef50_UPI00045E67CF glycine cleavage system protein T 0.203775405138 0.5 0.296224594862 +UniRef50_P77395 2.04279850418 0.500000000001 -1.54279850419 +UniRef50_P77396 12.3731075574 0.499999999995 -11.8731075573 +UniRef50_Q9AAI4 Nitrate transporter, NarK NasA family 0.627989333885 0.5 -0.127989333885 +UniRef50_P77393 3.3405286637 0.499999999998 -2.8405286637 +UniRef50_UPI0003B386AE riboflavin biosynthesis protein RibD 0.0908927513523 0.5 0.409107248648 +UniRef50_UPI00046F45E9 acetolactate synthase, partial 0.487050940712 0.5 0.0129490592883 +UniRef50_E0RYK6 0.651557778311 0.5 -0.151557778311 +UniRef50_Q1D2V0 1.64574773877 0.500000000001 -1.14574773877 +UniRef50_A6LYQ9 MgtE intracellular region 0.213510426166 0.5 0.286489573833 +UniRef50_Q9ZJ66 Protein translocase subunit SecD 0.00835921882286 0.5 0.491640781177 +UniRef50_Q9RY56 0.00750830155405 0.5 0.492491698446 +UniRef50_F0Y593 Expressed protein 0.16691407199 0.5 0.33308592801 +UniRef50_UPI00016C4E10 L lactate transport 0.134719580988 0.5 0.365280419012 +UniRef50_F7XJ23 Probabable oxidoreductase 4.67493712169 0.499999999992 -4.17493712168 +UniRef50_A5UJA6 FO synthase subunit 2 3.27296654778 0.5 -2.77296654778 +UniRef50_G7M8E1 Methyl accepting chemotaxis sensory transducer 0.154927171517 0.5 0.345072828483 +UniRef50_A7HAH7 23.0248799526 0.50000000003 -22.5248799527 +UniRef50_UPI0003C10094 PREDICTED 0.271889478155 0.5 0.228110521845 +UniRef50_X0W6C2 Marine sediment metagenome DNA, contig 0.305575960978 0.5 0.194424039022 +UniRef50_F0L9R1 5.56649206009 0.499999999998 -5.06649206009 +UniRef50_Q3IVS2 DNA RNA helicase, superfamily I 1.29784595651 0.5 -0.797845956508 +UniRef50_L0GGN0 Sortase like acyltransferase 0.662712638236 0.5 -0.162712638236 +UniRef50_K0F249 1.57662614125 0.5 -1.07662614125 +UniRef50_G7M575 Glycosyl transferase family 2 0.0875972133425 0.5 0.412402786658 +UniRef50_B5GAK8 9.01051824944 0.499999999999 -8.51051824944 +UniRef50_P42630 L serine dehydratase TdcG 0.594573579838 0.5 -0.0945735798381 +UniRef50_B8CN82 Membrane protein, putative 0.0222409293659 0.5 0.477759070634 +UniRef50_UPI00037851B2 Cro Cl family transcriptional regulator 4.80947172402 0.500000000002 -4.30947172402 +UniRef50_A0A009R342 SIR2 like domain protein 0.0195330444058 0.5 0.480466955594 +UniRef50_B9IYZ4 Holliday junction ATP dependent DNA helicase RuvB 0.66752862464 0.5 -0.16752862464 +UniRef50_K0DBQ7 N acetylmuramidase 0.457931235334 0.5 0.0420687646663 +UniRef50_F0YLQ9 Expressed protein 0.328502078118 0.5 0.171497921882 +UniRef50_R6W776 0.145149094479 0.5 0.354850905521 +UniRef50_Q9Z507 UvrABC system protein A 0.342658341798 0.5 0.157341658202 +UniRef50_Q6Q6S9 Transposase 1.45533789796 0.5 -0.955337897962 +UniRef50_A3PMA4 2.62217992279 0.499999999998 -2.12217992279 +UniRef50_UPI00047EB0D1 hypothetical protein 0.362966605036 0.5 0.137033394964 +UniRef50_UPI00046FEBC7 hypothetical protein, partial 3.36406232501 0.499999999998 -2.86406232501 +UniRef50_A0CK68 Chromosome undetermined scaffold_2, whole genome shotgun sequence 0.529935453009 0.5 -0.0299354530086 +UniRef50_P0ABG8 Rod shape determining protein RodA 2.62553579608 0.500000000003 -2.12553579608 +UniRef50_P45302 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.0791655790551 0.5 0.420834420945 +UniRef50_E8ZM45 Glycosyl transferase 0.165056800584 0.5 0.334943199416 +UniRef50_A7FBG3 0.0212918289227 0.5 0.478708171077 +UniRef50_UPI00036C2B1F hypothetical protein 1.18453360915 0.5 -0.684533609152 +UniRef50_A5CER5 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.0757875565096 0.5 0.42421244349 +UniRef50_A7FBG6 0.00854941481374 0.5 0.491450585186 +UniRef50_W5X953 0.171279495342 0.5 0.328720504658 +UniRef50_P64591 Inner membrane protein YhaH 0.3038442271 0.5 0.1961557729 +UniRef50_UPI000362EFC5 hypothetical protein 1.76569068721 0.5 -1.26569068721 +UniRef50_P65337 4 alpha glucanotransferase 0.071069012664 0.5 0.428930987336 +UniRef50_P57495 2 C methyl D erythritol 4 phosphate cytidylyltransferase 0.242845566141 0.5 0.257154433859 +UniRef50_A3QD67 Putative phosphoenolpyruvate synthase regulatory protein 0.58124607601 0.5 -0.0812460760103 +UniRef50_UPI0003825FE8 hypothetical protein 0.215846720572 0.5 0.284153279428 +UniRef50_UPI00042AFCA9 3 deoxy d arabino heptulosonate 7 phosphate synthase isoform 2 6.14828791126 0.5 -5.64828791126 +UniRef50_B9QHN7 Fop carboxy terminal duplication domain protein 0.447099023297 0.5 0.0529009767033 +UniRef50_F2K6Q0 0.562245616458 0.5 -0.0622456164584 +UniRef50_A5UJV7 Predicted ATPase 1.24876186597 0.5 -0.748761865966 +UniRef50_UPI0004638AC0 pseudouridylate synthase 0.119315884531 0.500000000001 0.380684115468 +UniRef50_U3SSX9 0.419304999044 0.5 0.0806950009561 +UniRef50_B6JNM2 0.0506783630144 0.5 0.449321636985 +UniRef50_UPI0003B66BEF hypothetical protein 0.197791832725 0.5 0.302208167275 +UniRef50_UPI00016A3D53 hypothetical protein 0.091477420483 0.5 0.408522579517 +UniRef50_L7ZK34 0.453701207511 0.5 0.0462987924892 +UniRef50_UPI00016C4097 N acetylglucosamine 6 phosphate deacetylase 0.0450337259697 0.5 0.45496627403 +UniRef50_W7WGN1 Conjugal transfer pilus assembly protein TraU 1.0349349528 0.5 -0.534934952797 +UniRef50_X1K791 Marine sediment metagenome DNA, contig 0.852461532455 0.5 -0.352461532455 +UniRef50_F5M3F1 3.99736518715 0.499999999994 -3.49736518715 +UniRef50_Q28TC8 Poly hydroxyalkanoic acid synthase class I 2.50932996481 0.5 -2.00932996481 +UniRef50_K4RP34 0.302979696458 0.5 0.197020303542 +UniRef50_K0CEM4 0.298362757073 0.5 0.201637242927 +UniRef50_G3JJ51 1.46659774066 0.5 -0.966597740663 +UniRef50_B0VMS2 Glucose 6 phosphate isomerase 0.0129568831792 0.5 0.487043116821 +UniRef50_M7N0E8 0.0306632518356 0.500000000001 0.469336748164 +UniRef50_A1AHM5 Protein CbrA 1.30662695259 0.5 -0.806626952586 +UniRef50_U5US29 Sugar binding domain containing protein 2.77031933923 0.499999999999 -2.27031933923 +UniRef50_F9Y8V6 Sugar ABC transporter, permease protein 4.4471255674 0.500000000001 -3.9471255674 +UniRef50_K4SRD4 Dipeptide transport system permease protein DppB 1.1335222648 0.5 -0.633522264804 +UniRef50_Q9CGD4 Spermidine putrescine import ATP binding protein PotA 0.93535186687 0.5 -0.43535186687 +UniRef50_R7NLL0 DNA gyrase subunit A 0.193648763579 0.5 0.306351236422 +UniRef50_UPI00047067CD glucosamine 6 phosphate deaminase, partial 0.128946858829 0.5 0.371053141171 +UniRef50_V7CWH6 0.013872202716 0.5 0.486127797284 +UniRef50_UPI0003B4DB15 cytidylate kinase, partial 0.0877709731127 0.5 0.412229026888 +UniRef50_UPI0003671825 hypothetical protein 0.113452290342 0.5 0.386547709658 +UniRef50_B2TRK3 0.127819042874 0.5 0.372180957126 +UniRef50_Q9PJJ6 Uracil phosphoribosyltransferase 0.254854082786 0.5 0.245145917214 +UniRef50_Q9KPM0 Purine nucleoside phosphorylase DeoD type 1 0.112638332402 0.499999999999 0.387361667599 +UniRef50_Q9T074 Phosphoenolpyruvate carboxykinase [ATP] 0.113574265178 0.5 0.386425734822 +UniRef50_D7FYR4 0.110232361699 0.5 0.389767638301 +UniRef50_N0AZY0 O succinylhomoserine sulfhydrylase 2.81664092442 0.5 -2.31664092442 +UniRef50_U3SUT1 1.1549741278 0.5 -0.654974127797 +UniRef50_Q5WLC5 DNA topology modulation protein 0.0763826108119 0.5 0.423617389188 +UniRef50_B8H4F1 30S ribosomal protein S5 0.0743507771393 0.5 0.42564922286 +UniRef50_G7MCN9 Multi copper polyphenol oxidoreductase, laccase 0.0820039208691 0.5 0.417996079131 +UniRef50_Q4L5J1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.71330023421 0.499999999999 -2.21330023421 +UniRef50_H2A5L6 Methionine aminopeptidase 0.680942133636 0.5 -0.180942133636 +UniRef50_B2J1L7 GTP cyclohydrolase 1 0.344176495644 0.5 0.155823504356 +UniRef50_A3XAI3 YjeF family protein 0.493012286288 0.5 0.00698771371153 +UniRef50_B7H075 PAP2 superfamily protein 0.0179622198964 0.5 0.482037780104 +UniRef50_Q2FHE2 DNA mismatch repair protein MutL 2.19581341315 0.5 -1.69581341315 +UniRef50_UPI000464DC75 single stranded DNA binding protein 0.79263371888 0.5 -0.29263371888 +UniRef50_Q3JR54 TGS domain protein 0.931708954123 0.5 -0.431708954123 +UniRef50_UPI0003AE8A89 PREDICTED 0.308451293685 0.5 0.191548706315 +UniRef50_Q0E488 Os02g0130900 protein 0.107607549031 0.5 0.392392450969 +UniRef50_A6QIU2 1.01197179296 0.5 -0.511971792957 +UniRef50_Q81LI6 Histidine tRNA ligase 2 0.0191765047956 0.500000000001 0.480823495204 +UniRef50_W8S4A4 Protein YicC 0.22346065002 0.5 0.27653934998 +UniRef50_V5SV57 1.1027756742 0.5 -0.602775674198 +UniRef50_Q8LJZ2 8.14082852573 0.499999999998 -7.64082852572 +UniRef50_S9U807 Cysteine peptidase, Clan CA, family C2 0.167994605193 0.5 0.332005394807 +UniRef50_B9KLW3 Methyltransferase type 11 0.270987141025 0.5 0.229012858975 +UniRef50_Q8CR86 1.56391342329 0.5 -1.06391342329 +UniRef50_Q99TF2 Acetate kinase 2.18907111913 0.5 -1.68907111913 +UniRef50_C9X377 Transferrin binding protein like lipoprotein 0.0354702022539 0.5 0.464529797746 +UniRef50_I8D2T2 0.562132975634 0.5 -0.0621329756343 +UniRef50_H4F9I1 0.35878907761 0.5 0.14121092239 +UniRef50_D3QE86 1.96547204791 0.499999999998 -1.4654720479 +UniRef50_M0P490 0.108418666223 0.5 0.391581333777 +UniRef50_Q4L8R9 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 4.01127404007 0.499999999999 -3.51127404007 +UniRef50_UPI00037720B7 hypothetical protein 0.418114102353 0.5 0.0818858976472 +UniRef50_R2QE79 1.4159770445 0.5 -0.915977044496 +UniRef50_Q3J608 1.06481777608 0.5 -0.564817776084 +UniRef50_Q2FF48 Potassium transporting ATPase A chain 1.97635312737 0.5 -1.47635312737 +UniRef50_G8VKL1 Aminopeptidase 0.022767574065 0.5 0.477232425935 +UniRef50_T3IE94 Lantibiotic protection ABC transporter, ATP binding subunit 0.535061086336 0.5 -0.0350610863357 +UniRef50_UPI0003C1083C 0.0740221949732 0.5 0.425977805027 +UniRef50_UPI0004777ACC cytochrome C oxidase assembly protein 0.181950827116 0.5 0.318049172884 +UniRef50_R5XYA5 0.0223427285186 0.5 0.477657271481 +UniRef50_D9SWT5 Peptidase S8 and S53 subtilisin kexin sedolisin 0.138855337911 0.5 0.361144662088 +UniRef50_UPI00028A379D elongation factor Ts 0.0671351587918 0.5 0.432864841208 +UniRef50_J9FJB0 Saccharopine dehydrogenase 0.037742406681 0.5 0.462257593319 +UniRef50_U3K301 0.527218855533 0.5 -0.0272188555329 +UniRef50_I4EDU8 0.968629203429 0.5 -0.468629203429 +UniRef50_UPI0003B69687 TetR family transcriptional regulator 9.00587414518 0.500000000009 -8.50587414519 +UniRef50_D0W128 0.0471551077412 0.500000000001 0.452844892258 +UniRef50_UPI0001A43259 putative phosphotransferase 0.178853730636 0.5 0.321146269363 +UniRef50_I6GVM8 Sulfite reductase [NADPH] flavoprotein, alpha component 0.770449245302 0.5 -0.270449245302 +UniRef50_UPI00037830BD hypothetical protein 0.107013915281 0.5 0.392986084719 +UniRef50_R6E4P6 Serine type site specific recombinase 0.00528953614911 0.5 0.494710463851 +UniRef50_UPI00035FAB77 hypothetical protein 0.745870106167 0.5 -0.245870106167 +UniRef50_UPI000465FD2A serine hydroxymethyltransferase, partial 0.146332644317 0.5 0.353667355683 +UniRef50_A7HI44 LigA 0.425177635926 0.5 0.0748223640738 +UniRef50_Q92BC5 Probable thiol peroxidase 0.151171305661 0.5 0.348828694339 +UniRef50_B8ISV4 Trans aconitate 2 methyltransferase 0.363436507899 0.5 0.136563492101 +UniRef50_B8CXG6 Probable transcriptional regulatory protein Hore_12350 0.121963720606 0.5 0.378036279394 +UniRef50_A5WCE7 ppGpp synthetase I, SpoT RelA 0.0165573869901 0.5 0.48344261301 +UniRef50_P34439 Probable 3 hydroxyacyl CoA dehydrogenase F54C8.1 0.0117611539091 0.5 0.488238846091 +UniRef50_Q7UA36 ATP dependent Clp protease proteolytic subunit 1 1.14445846847 0.5 -0.644458468472 +UniRef50_Q49X60 Riboflavin kinase FAD synthase 1.56219296323 0.499999999999 -1.06219296322 +UniRef50_Q7N8K6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.0615009610306 0.5 0.438499038969 +UniRef50_Q8CUA2 Mobilization protein 1.24938479637 0.499999999999 -0.749384796369 +UniRef50_P95468 Aromatic amino acid aminotransferase 5.77206494752 0.500000000002 -5.27206494752 +UniRef50_C0R0E0 Polyribonucleotide nucleotidyltransferase 1.00533053674 0.5 -0.505330536739 +UniRef50_UPI0003A14A99 MULTISPECIES 0.492792562902 0.5 0.00720743709836 +UniRef50_X4ZKX4 Short chain dehydrogenase family protein 0.0964439897931 0.500000000001 0.403556010206 +UniRef50_B9K138 Aliphatic sulfonates import ATP binding protein SsuB 0.00869676464688 0.5 0.491303235353 +UniRef50_Q8E7Y8 Peptidyl tRNA hydrolase 2.194938956 0.5 -1.694938956 +UniRef50_UPI000255A87B molybdopterin guanine dinucleotide biosynthesis protein A 0.415604719062 0.5 0.0843952809375 +UniRef50_W5XDK2 PTS family mannose porter, IIC component 0.279535687794 0.5 0.220464312206 +UniRef50_A5ULS3 Phosphoglycolate phosphatase 14.2915336258 0.499999999997 -13.7915336258 +UniRef50_L4FKH2 0.432163394851 0.5 0.0678366051488 +UniRef50_K4RIH9 Transporter 0.0168206385821 0.5 0.483179361418 +UniRef50_UPI000289E54D type III effector Hrp dependent outer protein 0.30433894796 0.5 0.19566105204 +UniRef50_A4WVU5 1.78010096491 0.5 -1.28010096491 +UniRef50_Q8CPJ9 Bifunctional protein PyrR 1.13196239226 0.5 -0.631962392257 +UniRef50_D3SY39 Phosphate ABC transporter permease 2.6785421513 0.5 -2.1785421513 +UniRef50_M4S0Q6 Terminase 3.99391220553 0.499999999999 -3.49391220553 +UniRef50_W7WA58 2.22806262934 0.5 -1.72806262934 +UniRef50_UPI0002F5E3FA hypothetical protein 0.325958259171 0.5 0.174041740829 +UniRef50_F0Y592 Expressed protein 3.00605530342 0.5 -2.50605530342 +UniRef50_P38376 Protein translocase subunit SecY 0.00484785527018 0.5 0.49515214473 +UniRef50_G7IR91 0.418472515125 0.5 0.0815274848745 +UniRef50_Z7M6T4 Metallopeptidase M24 family protein 1.14184405057 0.5 -0.641844050572 +UniRef50_UPI0003814739 hypothetical protein 0.689496728602 0.5 -0.189496728602 +UniRef50_UPI00047A93E4 spermidine putrescine ABC transporter ATP binding protein 1.08719494622 0.5 -0.587194946221 +UniRef50_P45595 Phosphoenolpyruvate protein phosphotransferase 0.465769450674 0.5 0.0342305493265 +UniRef50_Y0ZY08 0.603369412494 0.5 -0.103369412494 +UniRef50_A5ULH9 Predicted ATP utilizing enzyme 13.8895448418 0.499999999995 -13.3895448418 +UniRef50_UPI0003F0B3EF PREDICTED 0.279078725821 0.5 0.220921274179 +UniRef50_O27269 5 formaminoimidazole 4 carboxamide 1 D ribofuranosyl 5 monophosphate synthetase 0.698986185862 0.5 -0.198986185862 +UniRef50_UPI00047132A1 nitrogen regulatory protein P II 1 1.17673648222 0.5 -0.676736482216 +UniRef50_M1ZE43 0.725621324108 0.5 -0.225621324108 +UniRef50_Q16CU0 2.7709430456 0.499999999996 -2.27094304559 +UniRef50_S6T1V4 Dihydrolipoamide acetyltransferase 0.845630438258 0.5 -0.345630438258 +UniRef50_A3U124 Replication protein C 1.9488018143 0.500000000002 -1.4488018143 +UniRef50_V4L8B5 0.423214019552 0.5 0.0767859804479 +UniRef50_UPI00036FD615 hypothetical protein 4.83899609027 0.499999999998 -4.33899609027 +UniRef50_B1HU19 3 methyl 2 oxobutanoate hydroxymethyltransferase 1.59870586689 0.5 -1.09870586689 +UniRef50_K1XG94 FeS assembly protein SufB 0.0920104146313 0.5 0.407989585368 +UniRef50_UPI000255B9CD GntR family transcriptional regulator 0.332647156003 0.5 0.167352843997 +UniRef50_UPI0004014E85 hypothetical protein 0.414174339414 0.5 0.0858256605864 +UniRef50_UPI0003780E79 hypothetical protein 0.17684489403 0.5 0.32315510597 +UniRef50_R4YWZ2 0.362523723745 0.5 0.137476276255 +UniRef50_G4LKC9 Large exoprotein 0.621185259719 0.5 -0.121185259719 +UniRef50_Q45NQ1 Putative nitrate reductase beta chain 0.414008606545 0.5 0.0859913934555 +UniRef50_UPI0003B3B541 diguanylate cyclase 0.0897619327761 0.5 0.410238067224 +UniRef50_Q9K068 Tyrosine recombinase XerD 0.00897195269223 0.5 0.491028047308 +UniRef50_F8H7Y3 Group II intron encoding maturase 0.24174625572 0.5 0.25825374428 +UniRef50_UPI00028A2BD8 hypothetical protein 1.85431623689 0.5 -1.35431623689 +UniRef50_A1WTR8 Electron transport complex subunit D 1.92320721511 0.500000000001 -1.42320721511 +UniRef50_Q9ZBH3 UPF0264 protein SCO6440 1.62816548174 0.5 -1.12816548174 +UniRef50_Q9ZA63 0.0123678958661 0.5 0.487632104134 +UniRef50_F2SDC0 Phosphoenolpyruvate carboxykinase AcuF 0.0148047250415 0.5 0.485195274958 +UniRef50_UPI000467C040 glycine betaine ABC transporter ATP binding protein 0.897395199188 0.5 -0.397395199188 +UniRef50_B2U2H8 Aldehyde ferredoxin oxidoreductase 1.24358999341 0.499999999999 -0.743589993412 +UniRef50_UPI0004232642 polynucleotide phosphorylase 0.456142801538 0.5 0.0438571984618 +UniRef50_P68893 Transcription termination antitermination protein NusG 0.304906308998 0.5 0.195093691002 +UniRef50_W5X8W1 Short chain dehydrogenase reductase SDR 0.211215954792 0.5 0.288784045209 +UniRef50_F9DQX8 Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein 0.789757223704 0.5 -0.289757223704 +UniRef50_Q2IIV4 Histidine ammonia lyase 0.015699304032 0.5 0.484300695968 +UniRef50_Q03QA4 S adenosylmethionine synthase 0.0512909490977 0.5 0.448709050902 +UniRef50_P54901 Stationary phase inducible protein CsiE 1.18560424552 0.5 -0.685604245515 +UniRef50_UPI0004785809 hypothetical protein 0.655599411586 0.5 -0.155599411586 +UniRef50_P39912 Protein AroA 1.89870572284 0.499999999997 -1.39870572283 +UniRef50_Q8RBK3 Aspartate ammonia lyase 0.14369560561 0.5 0.35630439439 +UniRef50_Q9I1W4 Alpha 1,4 glucan 2.39466987489 0.5 -1.89466987489 +UniRef50_U3SW26 LysR family transcriptional regulator 2.14637098496 0.5 -1.64637098496 +UniRef50_G7TAD9 D mannonate dehydratase 1.51409074016 0.5 -1.01409074016 +UniRef50_Q60356 1.92594229282 0.500000000001 -1.42594229282 +UniRef50_UPI00016A34C2 riboflavin biosynthesis protein RibD, partial 0.447581299782 0.5 0.0524187002183 +UniRef50_W1IMF3 0.061386106673 0.5 0.438613893327 +UniRef50_C5E0T6 ZYRO0G15466p 0.0123179262473 0.5 0.487682073753 +UniRef50_F8H0W5 Cbb3 type cytochrome c oxidase subunit I 0.922927584144 0.5 -0.422927584144 +UniRef50_P46340 Probable ABC transporter permease protein YqgI 0.472743825883 0.5 0.0272561741168 +UniRef50_UPI00046FE6B9 hypothetical protein 0.689272304431 0.5 -0.189272304431 +UniRef50_E1SCP3 MFS citrate proton symporter 1.12185461185 0.5 -0.621854611845 +UniRef50_UPI0003B6BBA6 glyoxalase 0.644816578329 0.5 -0.144816578329 +UniRef50_UPI00046F677B hypothetical protein 0.502141319477 0.5 -0.00214131947736 +UniRef50_N5H245 2.78404371377 0.5 -2.28404371377 +UniRef50_I4CUW0 1.14729995272 0.5 -0.647299952718 +UniRef50_Q1LT01 Hydroxyacylglutathione hydrolase 1.1565868615 0.5 -0.6565868615 +UniRef50_UPI0002B4BA19 PREDICTED 0.666573527227 0.5 -0.166573527227 +UniRef50_W8F1J2 3 hydroxybutyryl CoA dehydratase 1.25428317801 0.5 -0.754283178012 +UniRef50_UPI00034525BD hypothetical protein 0.173462205284 0.5 0.326537794717 +UniRef50_R7M168 GTP binding protein typA 0.353998653731 0.5 0.146001346269 +UniRef50_Q0VTE1 Peptide deformylase 1.9337335661 0.5 -1.4337335661 +UniRef50_UPI000466577D hypothetical protein 0.0623051814679 0.5 0.437694818532 +UniRef50_A0A017HLF1 Protein YqgE 0.259797463241 0.5 0.240202536759 +UniRef50_UPI0003347753 0.106994252581 0.5 0.393005747419 +UniRef50_Y4VDJ3 0.23515532172 0.5 0.26484467828 +UniRef50_UPI0004754608 hypothetical protein 0.00364105863951 0.500000000001 0.49635894136 +UniRef50_UPI0003AD1A5F hypothetical protein 0.0381683042693 0.5 0.461831695731 +UniRef50_I7DR67 0.502932531062 0.5 -0.00293253106227 +UniRef50_Q9WXX0 Ribose import ATP binding protein RbsA 1 3.68986728592 0.5 -3.18986728592 +UniRef50_Q7DC27 8.44552242065 0.5 -7.94552242065 +UniRef50_Q2NFJ6 Putative methylthioribose 1 phosphate isomerase 1.32015693224 0.5 -0.820156932244 +UniRef50_Q8CQM9 Ribosomal protein serine N acetyltransferase 2.78952806054 0.5 -2.28952806054 +UniRef50_UPI0003342D90 PREDICTED 1.52308012339 0.5 -1.02308012339 +UniRef50_A0A023XMZ3 Type VI secretion protein, ImpJ SciO VasE family 0.379512088651 0.5 0.120487911349 +UniRef50_D4DRQ8 0.0860342831309 0.5 0.413965716869 +UniRef50_UPI0004664E29 hypothetical protein 0.458526929131 0.5 0.0414730708686 +UniRef50_P74741 Bifunctional purine biosynthesis protein PurH 1.53968139542 0.5 -1.03968139542 +UniRef50_P50199 Gluconate 5 dehydrogenase 1.60233341444 0.5 -1.10233341444 +UniRef50_Q5HPR6 Ribonuclease J 2 1.54904634292 0.499999999999 -1.04904634291 +UniRef50_D3EHQ7 ABC transporter related protein 1.08068060462 0.5 -0.580680604619 +UniRef50_R8BTP6 0.35955485098 0.5 0.14044514902 +UniRef50_Q08YP5 3.92852182805 0.500000000004 -3.42852182806 +UniRef50_A6TKS3 0.175630263111 0.5 0.324369736889 +UniRef50_P76187 Oxidoreductase YdhF 2.16057273005 0.500000000001 -1.66057273006 +UniRef50_UPI0003B3589F ATP synthase subunit B 0.58808186998 0.5 -0.0880818699801 +UniRef50_Q9FJP9 Succinate dehydrogenase [ubiquinone] iron sulfur subunit 3, mitochondrial 1.2824156331 0.500000000001 -0.782415633098 +UniRef50_UPI0003B6819C MFS transporter 0.556262740735 0.5 -0.0562627407353 +UniRef50_UPI0003B502A9 ABC transporter ATP binding protein 3.22288437882 0.5 -2.72288437882 +UniRef50_R5GI81 0.0122154737839 0.5 0.487784526216 +UniRef50_E1V871 1.08155836663 0.5 -0.581558366632 +UniRef50_Q67M06 0.0736808697131 0.5 0.426319130287 +UniRef50_UPI0003C19124 4.5937637125 0.500000000005 -4.09376371251 +UniRef50_A3V0X2 Beta Ig H3 Fasciclin 3.02982180454 0.5 -2.52982180454 +UniRef50_Q49WG6 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.0662040202 0.500000000001 -1.5662040202 +UniRef50_Q0TKF3 Copper transporting P type ATPase 2.13143210108 0.500000000002 -1.63143210109 +UniRef50_UPI000288A457 ectoine utilization protein EutE, partial 0.736070435064 0.5 -0.236070435064 +UniRef50_UPI0003A4755B histidine kinase 0.00950347727679 0.499999999999 0.490496522724 +UniRef50_G0DU47 Myo inositol catabolism IolH protein 0.0211047237924 0.5 0.478895276207 +UniRef50_Q7UQD2 UPF0365 protein RB6389 1.14443729223 0.5 -0.644437292229 +UniRef50_B0KCX0 Phosphotransferase system, lactose cellobiose specific IIB subunit 0.200380029075 0.5 0.299619970925 +UniRef50_G7ZS06 AraC family regulatory protein 2.42432866607 0.5 -1.92432866607 +UniRef50_P21693 ATP dependent RNA helicase DbpA 1.4344769924 0.5 -0.934476992398 +UniRef50_C0LZW6 Cross beta structure silk protein 1 0.0153270591425 0.5 0.484672940858 +UniRef50_UPI0003B32CE6 multidrug transporter, partial 0.0571561700057 0.5 0.442843829994 +UniRef50_E6MC83 2.61556952572 0.500000000002 -2.11556952573 +UniRef50_UPI000374A1F2 hypothetical protein 0.564257766939 0.5 -0.0642577669392 +UniRef50_F0KHS2 ABC1 family protein 0.00582491003184 0.5 0.494175089968 +UniRef50_P0DMC8 Transcriptional regulatory protein RcsB 0.258116388336 0.5 0.241883611664 +UniRef50_Q5HQ65 1.64362212757 0.5 -1.14362212757 +UniRef50_X3PZA5 AraC family transcriptional regulator 0.145811904246 0.5 0.354188095754 +UniRef50_UPI0004434B3D PREDICTED 3.2267339262 0.500000000001 -2.7267339262 +UniRef50_U1R336 1.42873549929 0.5 -0.928735499287 +UniRef50_B9T9L5 1.19635931191 0.499999999999 -0.696359311911 +UniRef50_Q9RZ19 0.00788014556535 0.5 0.492119854435 +UniRef50_D3E128 2.48948282667 0.5 -1.98948282667 +UniRef50_J9PBA5 0.141080119054 0.5 0.358919880946 +UniRef50_G8LLE6 0.95868092325 0.5 -0.45868092325 +UniRef50_C0QJ00 Phosphomethylpyrimidine synthase 1.10394345127 0.5 -0.603943451265 +UniRef50_Q7AX67 0.0121244115663 0.5 0.487875588434 +UniRef50_K0M6S7 7.56234554048 0.500000000008 -7.06234554049 +UniRef50_Q3HKJ7 ABC di oligopeptide transporter, periplasmic ligand binding protein 3.84725813686 0.500000000001 -3.34725813686 +UniRef50_U5MW97 HD GYP domain protein 0.0893486677782 0.5 0.410651332222 +UniRef50_B9KR36 Two component transcriptional regulator, LuxR family 6.52957319748 0.500000000002 -6.02957319748 +UniRef50_UPI00005103EC tetracycline resistance protein 0.497891721873 0.5 0.00210827812721 +UniRef50_K7EFD4 0.0697645205337 0.5 0.430235479466 +UniRef50_Q9JVD1 N anthranilate isomerase 0.00439360075102 0.5 0.495606399249 +UniRef50_M9VF28 Cobalt precorrin 6x reductase 0.0468914813275 0.5 0.453108518673 +UniRef50_H3VSI0 GA module 2.65693592675 0.5 -2.15693592675 +UniRef50_S4X8J4 IS1272 transposase 0.182515218306 0.5 0.317484781693 +UniRef50_G2JKN3 0.128032130506 0.5 0.371967869494 +UniRef50_P25534 2 octaprenyl 6 methoxyphenol hydroxylase 1.06611635546 0.5 -0.566116355462 +UniRef50_P77585 Aminopeptidase YpdE 0.478014815602 0.5 0.0219851843976 +UniRef50_Q5FA21 Imidazole glycerol phosphate synthase subunit HisH 0.0523662410295 0.500000000001 0.44763375897 +UniRef50_UPI00029AB9CD hypothetical protein 0.0458516562337 0.5 0.454148343766 +UniRef50_U5LBL2 MFS transporter 0.00878640223914 0.5 0.49121359776 +UniRef50_B5F2L4 Elongation factor P 1.37504211656 0.5 -0.875042116561 +UniRef50_S3BX82 0.213040205206 0.5 0.286959794794 +UniRef50_Q9KUY6 Alanine racemase 1 3.23240041636 0.5 -2.73240041636 +UniRef50_A6M043 Transcriptional regulator, TetR family 0.330119691896 0.5 0.169880308104 +UniRef50_I6SUR3 Glucan binding protein D 1.72293642607 0.5 -1.22293642607 +UniRef50_A0A010QNG4 DnaJ domain protein 0.660343209216 0.5 -0.160343209216 +UniRef50_D6X5L6 Predicted protein 7.15115041816 0.499999999992 -6.65115041815 +UniRef50_A4WVP5 Ribonuclease 3 0.564975447722 0.5 -0.0649754477222 +UniRef50_UPI00045416B9 PREDICTED 0.487080852079 0.5 0.0129191479208 +UniRef50_UPI000380E1DF hypothetical protein 0.437834465327 0.5 0.0621655346734 +UniRef50_P50923 Fructose bisphosphate aldolase 2 0.334796478423 0.5 0.165203521577 +UniRef50_Q4L800 Thymidine kinase 0.724353591614 0.5 -0.224353591614 +UniRef50_UPI00037BF977 MULTISPECIES 0.488831510807 0.5 0.0111684891931 +UniRef50_E1ZPF1 0.0563718015091 0.500000000001 0.44362819849 +UniRef50_D6ZZT0 2.13147148332 0.500000000001 -1.63147148332 +UniRef50_UPI0003671796 hypothetical protein 0.734367607122 0.5 -0.234367607122 +UniRef50_P76237 Putative diguanylate cyclase YeaJ 1.68906535472 0.5 -1.18906535472 +UniRef50_UPI00031C8415 hypothetical protein 9.01714515417 0.499999999996 -8.51714515417 +UniRef50_UPI00036D4271 hypothetical protein 3.07989448336 0.499999999999 -2.57989448336 +UniRef50_S5RLF1 MarR family transcriptional regulator 0.220998683543 0.5 0.279001316457 +UniRef50_E2Q1G7 Transcriptional regulator, LysR family 0.479340461702 0.5 0.020659538298 +UniRef50_P62421 Phosphoglycerate kinase 0.34513915351 0.5 0.15486084649 +UniRef50_Q46817 Guanine hypoxanthine permease GhxQ 2.00544490322 0.5 -1.50544490322 +UniRef50_P37292 Serine hydroxymethyltransferase, mitochondrial 0.17154733301 0.5 0.32845266699 +UniRef50_UPI0001BF6B4F hypothetical protein SMAC_10997 0.0257326426334 0.5 0.474267357366 +UniRef50_P0AAK2 Formate hydrogenlyase subunit 2 0.148048760506 0.5 0.351951239494 +UniRef50_Q96343 Myrosinase binding protein related protein 0.0193744428296 0.5 0.48062555717 +UniRef50_O83217 Elongation factor Tu 0.00396819221541 0.5 0.496031807784 +UniRef50_UPI00046F7098 hypothetical protein 0.47078446804 0.5 0.0292155319599 +UniRef50_UPI0003F07DB8 PREDICTED 0.199975176093 0.5 0.300024823907 +UniRef50_Q5HKG0 Conserved domain protein 1.70785209203 0.5 -1.20785209203 +UniRef50_P77625 Sugar phosphatase YfbT 1.31753091852 0.5 -0.817530918516 +UniRef50_A7ZRX6 Uronate isomerase 1.8152832989 0.499999999999 -1.3152832989 +UniRef50_B9DZC4 0.641535518103 0.5 -0.141535518103 +UniRef50_UPI00044165DC ribosomal protein L6 0.0310605003501 0.5 0.46893949965 +UniRef50_Q9RSP5 0.00275905714809 0.5 0.497240942852 +UniRef50_A3CNT6 ATP phosphoribosyltransferase regulatory subunit 2.0825228792 0.5 -1.5825228792 +UniRef50_Q9RSP7 0.015675124913 0.5 0.484324875087 +UniRef50_Q8CMY4 Probable malate 1.2378368351 0.5 -0.737836835103 +UniRef50_UPI0001850D56 YvrB 0.0291210588059 0.5 0.470878941194 +UniRef50_A6LGA2 Leucine tRNA ligase 0.000382964697162 0.5 0.499617035303 +UniRef50_Q0E079 Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic 0.108752647612 0.5 0.391247352388 +UniRef50_A5UMQ3 5.92571226059 0.499999999994 -5.42571226058 +UniRef50_W8RY01 0.868024475126 0.5 -0.368024475126 +UniRef50_UPI00037FD000 hypothetical protein 0.00767689548744 0.5 0.492323104513 +UniRef50_J7TAV9 0.0552154747786 0.5 0.444784525222 +UniRef50_UPI000370BEF1 hypothetical protein 0.113419154313 0.5 0.386580845686 +UniRef50_UPI00047191F0 hypothetical protein, partial 0.674367505727 0.5 -0.174367505727 +UniRef50_A7I5Y0 7.35586131152 0.499999999997 -6.85586131152 +UniRef50_T2A2T5 0.212567382563 0.5 0.287432617437 +UniRef50_UPI000372FA01 hypothetical protein, partial 0.0437783046968 0.5 0.456221695303 +UniRef50_Q7NSL8 2.19825332364 0.499999999998 -1.69825332364 +UniRef50_I6TSJ0 3.4656104796 0.5 -2.9656104796 +UniRef50_D6M601 Xanthine dehydrogenase, large subunit molybdenum cofactor binding domain containing protein 0.151722840791 0.5 0.348277159209 +UniRef50_U5MPL0 Protease YdeA 2.01542883352 0.5 -1.51542883352 +UniRef50_Q04L26 Xaa Pro dipeptidyl peptidase 0.0479062202691 0.5 0.452093779731 +UniRef50_UPI000319F04C hypothetical protein 0.299468433581 0.5 0.200531566419 +UniRef50_Q8XA27 Protein FixB 5.28723155408 0.500000000003 -4.78723155409 +UniRef50_I0ES06 Methyl accepting chemotaxis protein 0.00629297229072 0.5 0.493707027709 +UniRef50_UPI0002F687DE hypothetical protein 1.67029187692 0.5 -1.17029187692 +UniRef50_G5PKT0 Formate transporter 0.170465569149 0.5 0.329534430851 +UniRef50_P22731 High affinity branched chain amino acid transport ATP binding protein LivF 0.0342637589126 0.5 0.465736241088 +UniRef50_P0C0Q2 Glutamyl endopeptidase 1.10176835842 0.5 -0.601768358422 +UniRef50_UPI00047910E5 hypothetical protein 0.185991646851 0.5 0.314008353149 +UniRef50_A0PPL6 Riboflavin biosynthesis protein RibBA 0.651607518175 0.5 -0.151607518175 +UniRef50_Q3JPM4 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.059243573342 0.5 0.440756426658 +UniRef50_P09831 Glutamate synthase [NADPH] large chain 103.138849179 0.499999999904 -102.638849179 +UniRef50_L0KED0 TRAP type C4 dicarboxylate transport system, small permease component 1.07385188803 0.5 -0.573851888034 +UniRef50_W3RDE1 Topology modulation protein 0.0131669510449 0.5 0.486833048955 +UniRef50_UPI000371284B hypothetical protein 0.0328157975955 0.5 0.467184202405 +UniRef50_Q9KNX6 FKBP type peptidyl prolyl cis trans isomerase SlyD 3.10168271246 0.5 -2.60168271246 +UniRef50_UPI00037B0FBB hypothetical protein 0.316606627116 0.5 0.183393372884 +UniRef50_G7U8F4 0.0276107405364 0.5 0.472389259464 +UniRef50_UPI0002626037 large conductance mechanosensitive channel protein MscL 0.310951875917 0.5 0.189048124083 +UniRef50_UPI0003EF9C6D hypothetical protein, partial 0.785086989201 0.5 -0.285086989201 +UniRef50_T1YDR0 Transcriptional regulator, MerR family protein 1.83036755195 0.5 -1.33036755195 +UniRef50_P69807 Mannose permease IID component 0.404527109897 0.5 0.0954728901033 +UniRef50_P73860 KaiC like protein 1 0.943842492418 0.5 -0.443842492418 +UniRef50_A0A022GSW2 Sulfonate ABC transporter substrate binding protein 0.69707576583 0.5 -0.19707576583 +UniRef50_UPI000468B631 patatin 0.481234059623 0.5 0.0187659403771 +UniRef50_UPI0003C1000B PREDICTED 1.24706227951 0.5 -0.74706227951 +UniRef50_F8FV37 1.82903548503 0.5 -1.32903548503 +UniRef50_U6PZV7 ISE inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94 0.102437436666 0.5 0.397562563334 +UniRef50_V5T4P8 Fimbrial biogenesis outer membrane usher protein 0.186073518339 0.5 0.31392648166 +UniRef50_S2J745 0.661486585327 0.5 -0.161486585327 +UniRef50_P0AFR3 C4 dicarboxylic acid transporter DauA 1.82380317341 0.499999999999 -1.32380317341 +UniRef50_UPI00047D2CC8 hypothetical protein 0.331591003436 0.5 0.168408996564 +UniRef50_E4U3H9 0.0279255116052 0.5 0.472074488395 +UniRef50_S5ED07 Jag protein 1.83471024278 0.5 -1.33471024278 +UniRef50_A6LS15 PHP C terminal domain protein 0.0969545568433 0.5 0.403045443157 +UniRef50_A0A041VEI8 0.639120615756 0.5 -0.139120615756 +UniRef50_P9WHP0 Phosphate acetyltransferase 0.181206020374 0.5 0.318793979626 +UniRef50_Q98AP4 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE 0.668668270876 0.5 -0.168668270876 +UniRef50_Q5NQ45 50S ribosomal protein L15 4.53929760796 0.500000000003 -4.03929760797 +UniRef50_UPI00047247B2 hypothetical protein 0.0385074301859 0.5 0.461492569814 +UniRef50_UPI0003B31EFA cold shock protein 0.322093898261 0.5 0.177906101739 +UniRef50_A0A037Y9B8 Transcription repair coupling factor 2.49459003488 0.5 -1.99459003488 +UniRef50_UPI0004707564 hypothetical protein 0.526566239056 0.5 -0.0265662390557 +UniRef50_O24850 0.0329451548204 0.5 0.467054845179 +UniRef50_W5X364 Binding protein dependent transport systems inner membrane component 0.400605076564 0.5 0.0993949234359 +UniRef50_C8YZ36 WejK 1.97011614745 0.5 -1.47011614745 +UniRef50_Q981X2 D amino acid dehydrogenase 3 small subunit 0.0158505065812 0.5 0.484149493419 +UniRef50_UPI0003A61917 hypothetical protein 1.26422678904 0.5 -0.764226789045 +UniRef50_P63206 Transcriptional regulator GadE 1.13792675117 0.5 -0.637926751167 +UniRef50_G7U9H2 0.047194775986 0.5 0.452805224014 +UniRef50_UPI00016C38BC purine binding chemotaxis protein 0.159780153946 0.5 0.340219846054 +UniRef50_UPI000471A1E2 hypothetical protein 0.163207311442 0.5 0.336792688558 +UniRef50_L1Q181 Transcriptional regulator, PadR family 2.99236219944 0.5 -2.49236219944 +UniRef50_P39766 Uracil permease 3.00212121815 0.500000000001 -2.50212121815 +UniRef50_M4HU62 Degenerate transposase 0.0584817422649 0.499999999999 0.441518257736 +UniRef50_UPI00046E9748 excinuclease ABC subunit C 0.236003140251 0.5 0.263996859749 +UniRef50_R7VY37 0.138609460604 0.5 0.361390539396 +UniRef50_B1YSV0 RNA pyrophosphohydrolase 0.0117695826929 0.5 0.488230417307 +UniRef50_UPI0003665980 hypothetical protein 0.859561385528 0.5 -0.359561385528 +UniRef50_Q02W25 50S ribosomal protein L4 0.813040328762 0.5 -0.313040328762 +UniRef50_A6LTI5 Pentapeptide repeat protein 0.172532286227 0.5 0.327467713773 +UniRef50_I3UGR0 0.684278109669 0.5 -0.184278109669 +UniRef50_B9CVK2 7.76196262632 0.500000000001 -7.26196262632 +UniRef50_Q6B458 3 isopropylmalate dehydrogenase 0.520373909123 0.5 -0.0203739091229 +UniRef50_B0TCA6 N acetyl gamma glutamyl phosphate reductase 0.635054320975 0.5 -0.135054320975 +UniRef50_A1SR02 Phosphopantetheine adenylyltransferase 0.183143382715 0.5 0.316856617285 +UniRef50_UPI0000EBCE17 0.630730743625 0.5 -0.130730743625 +UniRef50_Q4ZQC8 Response regulator receiver 0.974609916774 0.5 -0.474609916774 +UniRef50_B7I2N1 Protein YaaA 0.128095495816 0.5 0.371904504184 +UniRef50_B0TBM7 Light independent protochlorophyllide reductase subunit N 1.55946560596 0.5 -1.05946560596 +UniRef50_B7HCU0 Chaperone protein DnaK 1.08176132062 0.5 -0.581761320623 +UniRef50_UPI00035CF421 hypothetical protein 1.37383794751 0.5 -0.87383794751 +UniRef50_T2F9D3 Competence protein ComGB 0.00224281229389 0.5 0.497757187706 +UniRef50_Q3J223 Putative phage major capsid protein, gp36 2.22134529733 0.500000000001 -1.72134529733 +UniRef50_F0YS40 0.222343011484 0.5 0.277656988516 +UniRef50_F0LFC9 Spermidine putrescine ABC transporter inner membrane protein 0.917163126927 0.5 -0.417163126927 +UniRef50_A5UMP4 Cobalamin biosynthesis protein G, CbiG 3.65444935345 0.499999999997 -3.15444935344 +UniRef50_W5X8L8 NifC like ABC type porter molybdate ABC transporter, permease protein 0.68482437111 0.5 -0.18482437111 +UniRef50_Q8CXJ8 Chloramphenicol resistance protein 1.60709042417 0.5 -1.10709042417 +UniRef50_R7PU88 DNA helicase related protein 4.22309817583 0.499999999999 -3.72309817583 +UniRef50_F8FUQ7 ApbE family lipoprotein 1.17553010356 0.5 -0.675530103558 +UniRef50_L0KF64 Cu responsive transcriptional regulator 0.0745402350614 0.499999999999 0.425459764939 +UniRef50_UPI0003B42D39 serine threonine phosphatase 0.375061150854 0.5 0.124938849146 +UniRef50_D7GDY6 Transporter 0.0160824830915 0.5 0.483917516908 +UniRef50_P21112 Methyl coenzyme M reductase II subunit gamma 2.38118144259 0.499999999999 -1.88118144258 +UniRef50_M1N2U9 0.0447785896595 0.500000000001 0.45522141034 +UniRef50_UPI00035E5F38 hypothetical protein 0.258844474204 0.5 0.241155525796 +UniRef50_B9DVZ2 Transcription antiterminator 1.29155170724 0.5 -0.791551707238 +UniRef50_P0A952 Spermidine N acetyltransferase 4.99398893641 0.500000000001 -4.49398893641 +UniRef50_UPI000472AC52 spore coat protein 0.33759188722 0.5 0.16240811278 +UniRef50_Q2CDQ9 0.32118531432 0.5 0.17881468568 +UniRef50_UPI0001F85CA4 biotin synthase like protein 0.0432775245387 0.5 0.456722475461 +UniRef50_W6IE22 CreA protein 0.129197310464 0.5 0.370802689536 +UniRef50_B7V9N9 Paraquat inducible protein A 0.134268842225 0.5 0.365731157775 +UniRef50_V6UC46 0.225613005479 0.5 0.274386994521 +UniRef50_Q2FD76 DMT family permease 0.0498154070174 0.5 0.450184592983 +UniRef50_UPI000359EAD9 PREDICTED 0.0132463761467 0.5 0.486753623853 +UniRef50_UPI0003627C1A hypothetical protein 0.231470468503 0.5 0.268529531497 +UniRef50_G7I9Q9 ATP synthase subunit alpha 0.112481949733 0.5 0.387518050267 +UniRef50_C1CQV0 HAD superfamily subfamily IIA hydrolase 0.455991318689 0.5 0.0440086813111 +UniRef50_W5XBH9 Protein kinase transcriptional regulator 3.42004064824 0.499999999999 -2.92004064824 +UniRef50_E3A4M7 1.43810249295 0.5 -0.938102492954 +UniRef50_F4LPV2 Oligo 1,6 glucosidase 0.106285821913 0.5 0.393714178087 +UniRef50_Q9A1V9 50S ribosomal protein L6 2.79586030391 0.5 -2.29586030391 +UniRef50_Q1J3M1 Diguanylate cyclase with GAF sensor 0.000997366272394 0.5 0.499002633728 +UniRef50_M1ZLS1 0.0540018037732 0.5 0.445998196227 +UniRef50_Q4L8P5 PTS system sucrose specific IIBC component 0.418522027235 0.5 0.081477972765 +UniRef50_Q8CPS7 Transcription factor 1.70307309858 0.5 -1.20307309858 +UniRef50_UPI000308EC67 hypothetical protein 0.502972798556 0.5 -0.00297279855621 +UniRef50_D9RMZ4 1.094943359 0.500000000001 -0.594943359002 +UniRef50_UPI0003FCC1FE hypothetical protein 0.400903104658 0.5 0.0990968953425 +UniRef50_P05425 Copper exporting P type ATPase B 1.61252844848 0.5 -1.11252844848 +UniRef50_UPI0003F7499A hypothetical protein 3.13095971658 0.5 -2.63095971658 +UniRef50_G4I6C2 0.0152025526867 0.5 0.484797447313 +UniRef50_G8ATH1 0.75905466898 0.5 -0.25905466898 +UniRef50_L0M824 0.863749242402 0.5 -0.363749242402 +UniRef50_I4YHY8 DUF28 domain containing protein 0.111487572553 0.5 0.388512427447 +UniRef50_Q2IYS5 Phosphonates import ATP binding protein PhnC 1 0.23655812861 0.5 0.26344187139 +UniRef50_B5EPG1 PilT protein domain protein 0.376068695909 0.5 0.123931304091 +UniRef50_Q2YAA3 NADH quinone oxidoreductase subunit C D 0.618073690451 0.5 -0.118073690451 +UniRef50_Q8A1G1 TonB dependent receptor SusC 0.0326630630538 0.5 0.467336936946 +UniRef50_B7V600 1.32971844293 0.5 -0.829718442925 +UniRef50_P75982 0.518557623253 0.5 -0.0185576232535 +UniRef50_UPI00035F8CE7 hypothetical protein 2.48743625146 0.499999999997 -1.98743625146 +UniRef50_W0ILL7 Membrane protein 1.52839817695 0.5 -1.02839817695 +UniRef50_UPI0004650B13 hypothetical protein 0.111795006548 0.500000000001 0.388204993451 +UniRef50_Q9ZJ96 Chromosomal replication initiator protein DnaA 0.0215025600562 0.5 0.478497439944 +UniRef50_B0VE30 Acetoacetyl CoA transferase, beta subunit 0.0420926909134 0.499999999999 0.457907309087 +UniRef50_Q8CPK2 Cell divisio initiation protein 1.99064484119 0.499999999999 -1.49064484119 +UniRef50_UPI0002257056 PREDICTED 0.0313326052584 0.5 0.468667394742 +UniRef50_F0RPV6 NLPA lipoprotein 0.0065557005954 0.5 0.493444299405 +UniRef50_P42269 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 0.579965157433 0.5 -0.079965157433 +UniRef50_Q8KFL5 Isoleucine tRNA ligase 0.334401333775 0.5 0.165598666225 +UniRef50_H1Y7F7 NAD dependent protein deacylase 0.0215990061217 0.5 0.478400993878 +UniRef50_M9VFI4 0.0220764772382 0.5 0.477923522762 +UniRef50_UPI00022CAAEE PREDICTED 0.382505385294 0.5 0.117494614706 +UniRef50_UPI0003613834 hypothetical protein 0.480347927552 0.5 0.0196520724481 +UniRef50_Q5HKX5 Conserved domain protein 0.454669186113 0.5 0.0453308138872 +UniRef50_D6K6B4 Membrane protein 0.187263495564 0.5 0.312736504436 +UniRef50_Q46888 0.925680923457 0.5 -0.425680923457 +UniRef50_UPI00037BC975 hypothetical protein 0.18783710516 0.5 0.31216289484 +UniRef50_P67097 Phosphodiesterase YfcE 3.0155088145 0.499999999998 -2.5155088145 +UniRef50_Q01464 Septum site determining protein MinD 0.00636339566586 0.5 0.493636604334 +UniRef50_Q7NV70 0.26740759262 0.5 0.23259240738 +UniRef50_E3DHU2 Copper homeostasis protein CutC 0.639691360526 0.5 -0.139691360526 +UniRef50_W9A1R1 0.0366318179899 0.5 0.46336818201 +UniRef50_V5XRZ5 Iron sulfur cluster formation protein IscU 0.35107733767 0.5 0.14892266233 +UniRef50_Q88AZ5 33 kDa chaperonin 1.57478761334 0.5 -1.07478761334 +UniRef50_Q038S0 Histidine tRNA ligase 0.491769383525 0.5 0.00823061647466 +UniRef50_I7ECV7 Peptidoglycan binding like protein 2.46826789082 0.5 -1.96826789082 +UniRef50_O82357 3 methyl 2 oxobutanoate hydroxymethyltransferase 1, mitochondrial 0.60966053008 0.5 -0.10966053008 +UniRef50_A6M083 0.242018350113 0.5 0.257981649887 +UniRef50_Q9RUA4 Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase 0.00108262258767 0.5 0.498917377412 +UniRef50_Q1R133 Binding protein dependent transport systems inner membrane component 1.18306383512 0.5 -0.683063835124 +UniRef50_UPI00036278A6 hypothetical protein 0.180542864251 0.5 0.319457135749 +UniRef50_Q46897 CRISPR system Cascade subunit CasE 0.473596839611 0.5 0.0264031603893 +UniRef50_Q5HK76 Type 1 restriction enzyme R protein 2.56537003146 0.499999999997 -2.06537003146 +UniRef50_B8ETJ4 Exodeoxyribonuclease III Xth 2.09544414083 0.5 -1.59544414083 +UniRef50_Q2G1E0 1.77417965865 0.500000000002 -1.27417965865 +UniRef50_UPI00037146D6 hypothetical protein 0.0342058475607 0.499999999999 0.46579415244 +UniRef50_C3BKF8 Glucose 6 phosphate 1 dehydrogenase 1.03868989037 0.5 -0.538689890374 +UniRef50_UPI0003770934 hypothetical protein, partial 0.201273398193 0.5 0.298726601807 +UniRef50_P25894 Metalloprotease LoiP 5.25178278334 0.499999999998 -4.75178278334 +UniRef50_D5WIJ5 0.964628017242 0.5 -0.464628017242 +UniRef50_Q2FG30 1.69561960421 0.499999999998 -1.19561960421 +UniRef50_UPI0003486BCB hypothetical protein 1.33020425192 0.5 -0.830204251917 +UniRef50_A0A058ZKQ4 0.682894406904 0.5 -0.182894406904 +UniRef50_Q8ZGW9 ATP dependent dethiobiotin synthetase BioD 1 2.89876943708 0.5 -2.39876943709 +UniRef50_Q4T799 Chromosome undetermined SCAF8206, whole genome shotgun sequence. 0.594776045967 0.5 -0.0947760459669 +UniRef50_UPI000471EE06 cobyrinic acid a c diamide adenosyltransferase, partial 0.327992517086 0.5 0.172007482914 +UniRef50_A1B4D6 Glutathione S transferase, N terminal domain 0.944301146243 0.5 -0.444301146243 +UniRef50_Q08XU8 Cupin domain protein 0.766900942516 0.5 -0.266900942516 +UniRef50_UPI000363B7A3 hypothetical protein 0.682844283104 0.5 -0.182844283104 +UniRef50_UPI0003C11C7F PREDICTED 0.408442931085 0.5 0.0915570689145 +UniRef50_Q731B9 Arginine repressor 0.860296910974 0.5 -0.360296910974 +UniRef50_G8AXA5 1.94616093563 0.5 -1.44616093563 +UniRef50_Q83HH5 Tyrosine tRNA ligase 0.0320666149993 0.5 0.467933385001 +UniRef50_Q0AVU0 tRNA N6 adenosine threonylcarbamoyltransferase 0.284662560312 0.5 0.215337439688 +UniRef50_P0AE38 Arginine N succinyltransferase 0.109899012201 0.499999999999 0.3901009878 +UniRef50_P04395 DNA 3 methyladenine glycosylase 2 1.3713237992 0.5 -0.871323799197 +UniRef50_F5J5S5 0.459818120608 0.5 0.0401818793918 +UniRef50_UPI00046D4F30 hypothetical protein 0.217543574116 0.5 0.282456425884 +UniRef50_A9M0E5 Aminopeptidase 0.00866820959033 0.5 0.49133179041 +UniRef50_I0C1S3 Phosphatidylglycerophosphatase B like protein 0.756288354679 0.5 -0.256288354679 +UniRef50_C7QKF9 YCII related protein 0.591059740581 0.5 -0.0910597405806 +UniRef50_M9VHR6 Glycerophosphodiester phosphodiesterase family protein 0.0272210895584 0.5 0.472778910441 +UniRef50_UPI00046FEF92 hypothetical protein 2.40298277811 0.500000000001 -1.90298277811 +UniRef50_I4CSN5 1.10814677404 0.5 -0.608146774043 +UniRef50_F9Z0L2 Iron compound ABC transporter 0.00727803092424 0.5 0.492721969076 +UniRef50_M5JV17 Phosphate ABC transporter substrate binding protein 4.281860918 0.500000000001 -3.781860918 +UniRef50_Q31GL4 Leucyl phenylalanyl tRNA protein transferase 0.117709725614 0.5 0.382290274386 +UniRef50_K7TDT2 Putative transposase 1.83628252445 0.499999999998 -1.33628252445 +UniRef50_F8B2H9 Molybdopterin guanine dinucleotide biosynthesis protein 0.121051685223 0.5 0.378948314777 +UniRef50_UPI0004432FDF PREDICTED 0.194463106253 0.5 0.305536893747 +UniRef50_S5KCJ9 Membrane protein 0.016480366018 0.500000000001 0.483519633981 +UniRef50_D4LGK2 Phosphate starvation inducible protein PhoH, predicted ATPase 0.818182510964 0.5 -0.318182510964 +UniRef50_UPI000377EEE9 hypothetical protein 0.00064712946303 0.5 0.499352870537 +UniRef50_Q9RRI3 Medium chain fatty acid CoA ligase 0.0047123716655 0.5 0.495287628335 +UniRef50_B0VCS4 0.0103426071782 0.5 0.489657392822 +UniRef50_P24203 2.36060308725 0.499999999999 -1.86060308725 +UniRef50_UPI0003012608 hypothetical protein 0.327591742999 0.5 0.172408257001 +UniRef50_Q899J0 PUR operon repressor 0.051619791533 0.5 0.448380208467 +UniRef50_Q5XE79 Thioredoxin 0.523069766988 0.5 -0.0230697669884 +UniRef50_P17330 Glyceraldehyde 3 phosphate dehydrogenase 3 0.562870993879 0.5 -0.0628709938787 +UniRef50_M1P7F7 Cytoplasmic membrane protein 0.00313051900678 0.5 0.496869480993 +UniRef50_Q9A0R7 Putative gluconeogenesis factor 1.13575938331 0.5 -0.635759383311 +UniRef50_J6CKR7 Transketolase 1.23008562441 0.5 -0.730085624415 +UniRef50_UPI000478E5C6 hypothetical protein 0.0294892819882 0.499999999999 0.470510718012 +UniRef50_Q39K93 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.244433851134 0.5 0.255566148866 +UniRef50_B6JM63 Polyamine aminopropyl transferase 0.0256499067441 0.5 0.474350093256 +UniRef50_UPI0004742BB7 glucose 1 phosphate thymidylyltransferase 0.758757647269 0.5 -0.258757647269 +UniRef50_Q2L0H5 sn glycerol 3 phosphate import ATP binding protein UgpC 1.85642332402 0.5 -1.35642332402 +UniRef50_UPI00046FFCEC ABC transporter ATP binding protein, partial 0.119601756967 0.5 0.380398243033 +UniRef50_Q5M1U2 D alanyl D alanine carboxypeptidase 2.13098402839 0.5 -1.63098402839 +UniRef50_Q6MHV9 Bifunctional protein GlmU 0.309224841664 0.5 0.190775158336 +UniRef50_B9KRH9 Glycosyl transferase, family 2 1.24802062799 0.5 -0.748020627994 +UniRef50_UPI0004785B9B DNA directed RNA polymerase subunit beta 1.02641481213 0.5 -0.526414812126 +UniRef50_Q3JM24 Potassium efflux system protein 0.0123008267492 0.5 0.487699173251 +UniRef50_UPI00036DE10D hypothetical protein 2.88224308992 0.499999999999 -2.38224308992 +UniRef50_A0A021WXJ4 0.298461985572 0.5 0.201538014428 +UniRef50_UPI000369982C hypothetical protein 0.514594388543 0.5 -0.0145943885434 +UniRef50_UPI00045EC2D5 hypothetical protein 4.71501646518 0.500000000002 -4.21501646518 +UniRef50_UPI000441EDB2 PREDICTED 0.167718604741 0.5 0.332281395259 +UniRef50_G8VLT1 Tryptophanase L cysteine desulfhydrase, PLP dependent 0.029745646742 0.5 0.470254353258 +UniRef50_B2VB13 TraW protein 1.41026445376 0.5 -0.910264453756 +UniRef50_UPI0002192F7F molybdopterin biosynthesis protein MoeB, partial 0.194581950912 0.5 0.305418049088 +UniRef50_UPI0003803CF1 hypothetical protein 0.122864325269 0.5 0.377135674731 +UniRef50_C5N2S8 1.01955551194 0.5 -0.519555511944 +UniRef50_A9M1X9 0.0993923612965 0.5 0.400607638703 +UniRef50_UPI0003622625 hypothetical protein 0.6951544407 0.5 -0.1951544407 +UniRef50_M4RDW5 Glycosyltransferase 0.0274606830367 0.5 0.472539316963 +UniRef50_Q49ZP2 0.31356628194 0.5 0.18643371806 +UniRef50_G5P8G8 Peptide transport system permease protein sapB 0.427188521038 0.5 0.0728114789624 +UniRef50_UPI0003F6BA02 cysteinyl tRNA synthetase 0.225737280292 0.5 0.274262719708 +UniRef50_UPI00034C3E89 hypothetical protein 0.366927490841 0.5 0.133072509159 +UniRef50_F5YFX0 Polar amino acid ABC transporter, inner membrane subunit 0.242763824013 0.5 0.257236175987 +UniRef50_F2AIJ3 0.697826238176 0.5 -0.197826238176 +UniRef50_R6Z8P0 0.0968267679085 0.5 0.403173232092 +UniRef50_UPI00036C444A hypothetical protein 0.437127984764 0.5 0.0628720152365 +UniRef50_A2SNL7 Essential for conjugative transfer protein 0.738378726296 0.5 -0.238378726296 +UniRef50_UPI000471BC8E protease I 0.134475906729 0.5 0.365524093272 +UniRef50_Q5LSV7 Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein 1.85453833178 0.5 -1.35453833178 +UniRef50_U5URI8 1.78445960118 0.5 -1.28445960118 +UniRef50_B9KPC4 0.634717069358 0.5 -0.134717069358 +UniRef50_D3Q1B6 0.0988426062751 0.5 0.401157393724 +UniRef50_M9VB10 LysR family transcriptional regulator 0.0501455546961 0.5 0.449854445304 +UniRef50_N6DL92 0.248810030712 0.5 0.251189969288 +UniRef50_T1ATE5 5.8465128404 0.499999999999 -5.3465128404 +UniRef50_Q91TH9 T121.1 0.0354866073414 0.5 0.464513392659 +UniRef50_Z5XAD0 Aldehyde dehydrogenase 0.417781176418 0.5 0.0822188235821 +UniRef50_K2I608 Flp pilus assembly protein, pilin Flp 0.620320703082 0.5 -0.120320703082 +UniRef50_UPI0003C13F57 PREDICTED 0.901616322725 0.5 -0.401616322725 +UniRef50_I6U0J6 0.784881330037 0.5 -0.284881330037 +UniRef50_Q8FHD1 3.54539852115 0.5 -3.04539852115 +UniRef50_Q9PMA7 NADH quinone oxidoreductase subunit L 0.0160645058616 0.5 0.483935494138 +UniRef50_A4QB30 0.0965358591867 0.5 0.403464140813 +UniRef50_UPI000376F2DA hypothetical protein 0.152604317022 0.5 0.347395682978 +UniRef50_H6PBU2 Nitroreductase 2.58350497578 0.5 -2.08350497578 +UniRef50_UPI00035E79DC transcriptional regulator 0.302785427057 0.5 0.197214572943 +UniRef50_UPI00037CCCC7 hypothetical protein 2.19668584319 0.499999999999 -1.69668584319 +UniRef50_M5E3Y3 0.787172975289 0.5 -0.287172975289 +UniRef50_A0B5U4 Glycine tRNA ligase 1.79596535473 0.500000000001 -1.29596535473 +UniRef50_A4EG79 0.204366970553 0.5 0.295633029447 +UniRef50_D1BHZ8 Ribonucleoside triphosphate reductase class III catalytic subunit 0.945633152336 0.5 -0.445633152336 +UniRef50_Q3IV40 2.28330986287 0.499999999998 -1.78330986287 +UniRef50_UPI0003823B5A hypothetical protein 1.54198421169 0.499999999998 -1.04198421169 +UniRef50_UPI000466ECBC 2,4 dihydroxyhept 2 ene 1,7 dioic acid aldolase 0.689932176342 0.5 -0.189932176342 +UniRef50_UPI0003F0E20A PREDICTED 4.51948329395 0.500000000003 -4.01948329395 +UniRef50_K0L2H6 0.956016340334 0.5 -0.456016340334 +UniRef50_O06997 0.0880524310145 0.499999999999 0.411947568986 +UniRef50_UPI00038F646F Response regulator MprA 0.124306562432 0.5 0.375693437568 +UniRef50_W7SSQ1 GGDEF domain protein 0.0463784600336 0.5 0.453621539967 +UniRef50_Q03Q51 Phosphopentomutase 0.00289893732798 0.5 0.497101062672 +UniRef50_Q0BT08 Ribosomal RNA large subunit methyltransferase E 0.884308490795 0.5 -0.384308490795 +UniRef50_A7ZVQ2 Primosomal protein 1 0.104617709784 0.5 0.395382290216 +UniRef50_A9GTV7 0.337388803468 0.5 0.162611196532 +UniRef50_Q4UU98 Probable chemoreceptor glutamine deamidase CheD 0.964256196514 0.5 -0.464256196514 +UniRef50_UPI0003781C90 hypothetical protein 3.50563725016 0.5 -3.00563725016 +UniRef50_UPI00037EAB74 hypothetical protein 0.331678771384 0.5 0.168321228616 +UniRef50_V6FEQ6 0.336035442467 0.5 0.163964557533 +UniRef50_I6T6N0 0.822393187714 0.5 -0.322393187714 +UniRef50_UPI0003608CB6 MULTISPECIES 0.253341889189 0.5 0.246658110811 +UniRef50_K7RUR3 ABC 2 type transporter 0.0349377389846 0.5 0.465062261015 +UniRef50_A3VVX3 0.929668955957 0.5 -0.429668955957 +UniRef50_UPI0001DEA90D PREDICTED 0.103916975491 0.5 0.396083024509 +UniRef50_UPI00047E64E1 CreA 0.386704239206 0.5 0.113295760794 +UniRef50_UPI0003B67BBB 23S rRNA tRNA pseudouridine synthase A 1.5238993216 0.5 -1.0238993216 +UniRef50_U1T6A5 18.5696577979 0.50000000001 -18.0696577979 +UniRef50_A6LRD1 Aldehyde dehydrogenase 0.0795244247492 0.500000000001 0.42047557525 +UniRef50_UPI000369B8F0 hypothetical protein 0.337984426038 0.5 0.162015573962 +UniRef50_UPI0003476644 hypothetical protein 0.465056521633 0.5 0.0349434783666 +UniRef50_R9ZF26 TonB denpendent receptor 0.203561328518 0.5 0.296438671482 +UniRef50_Q7A363 Accessory Sec system protein translocase subunit SecY2 1.66776296478 0.5 -1.16776296478 +UniRef50_UPI000380209B hypothetical protein 0.567175179037 0.5 -0.0671751790372 +UniRef50_P0DF46 Ribosomal RNA small subunit methyltransferase I 1.04534565195 0.5 -0.545345651949 +UniRef50_A5W3B8 Peptidase S14, ClpP 0.249144083813 0.5 0.250855916187 +UniRef50_Q5FQ01 0.157327401919 0.5 0.342672598081 +UniRef50_Q92GB7 DNA polymerase I 0.0459300228462 0.5 0.454069977154 +UniRef50_I6TNQ1 Aminotransferase 1.82070949726 0.5 -1.32070949726 +UniRef50_Q1QU75 tRNA pseudouridine synthase D 0.360350673273 0.5 0.139649326727 +UniRef50_A5UNR6 Heavy metal cation efflux system protein, CzcD family 1.08061332979 0.5 -0.580613329793 +UniRef50_G7TK32 Transposase 0.736380385582 0.5 -0.236380385582 +UniRef50_Q7VR12 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.157285967362 0.5 0.342714032638 +UniRef50_S5XNV8 5.97316462618 0.5 -5.47316462618 +UniRef50_UPI00037F4A8F hypothetical protein 0.063695153979 0.499999999999 0.436304846022 +UniRef50_F9Z292 0.0201384654681 0.5 0.479861534532 +UniRef50_A1AT66 Ribonuclease H 0.886237219681 0.5 -0.386237219681 +UniRef50_O64174 Ribonucleoside diphosphate reductase subunit beta 0.00438649492808 0.5 0.495613505072 +UniRef50_UPI000470D991 hypothetical protein 0.0324507000585 0.499999999999 0.467549299942 +UniRef50_A0A037J8C0 1.37610586179 0.500000000002 -0.876105861794 +UniRef50_UPI0003B5DFE1 ABC transporter 0.494186039233 0.5 0.00581396076747 +UniRef50_A5N2H8 FprA 0.121721374329 0.5 0.378278625671 +UniRef50_Q5HNZ9 5 formyltetrahydrofolate cyclo ligase family protein 4.6897211405 0.5 -4.1897211405 +UniRef50_A5F9H5 Glutaminase 0.26997201812 0.5 0.23002798188 +UniRef50_UPI00036F62C9 hypothetical protein 2.36095404652 0.5 -1.86095404652 +UniRef50_P33744 Aldehyde alcohol dehydrogenase 0.195289381685 0.5 0.304710618314 +UniRef50_Q2JPT8 GTP cyclohydrolase 1 0.340552176647 0.5 0.159447823353 +UniRef50_K4W2H2 Cyclic di GMP phosphodiesterase 2.22978579199 0.500000000001 -1.72978579199 +UniRef50_B9TCQ2 0.0452288468307 0.5 0.454771153169 +UniRef50_UPI0003648E77 hypothetical protein 2.6327923047 0.5 -2.1327923047 +UniRef50_Q2Y7Q1 0.173968501511 0.5 0.326031498488 +UniRef50_A0A023PYQ4 0.00595678459015 0.5 0.49404321541 +UniRef50_D3E0R6 Chaperone protein DnaJ 12.3992251159 0.499999999993 -11.8992251159 +UniRef50_P27896 Nitrate nitrite sensor protein NarQ 1.32490122408 0.5 -0.824901224081 +UniRef50_A7ZS72 Phosphoglucosamine mutase 1.14141698394 0.5 -0.641416983935 +UniRef50_UPI00035EC538 hypothetical protein 0.393393116302 0.5 0.106606883698 +UniRef50_P27756 Alpha galactosidase 0.700975827567 0.5 -0.200975827567 +UniRef50_Q6D3F5 Isopentenyl diphosphate Delta isomerase 1.95630942151 0.5 -1.45630942151 +UniRef50_UPI0003706CCB hypothetical protein 0.121152014779 0.5 0.378847985222 +UniRef50_D3E1V5 CBS domain containing protein 1.61235583841 0.500000000001 -1.11235583841 +UniRef50_F0QEA5 Sphingosine kinase 0.0152435376675 0.5 0.484756462333 +UniRef50_Q8DTR9 1.32413253218 0.5 -0.824132532181 +UniRef50_Q1GIV4 UDP N acetylmuramoylalanine D glutamate ligase 5.5863788401 0.500000000005 -5.0863788401 +UniRef50_P46534 Orotate phosphoribosyltransferase 0.150124325797 0.5 0.349875674203 +UniRef50_F0YBU9 Expressed protein 0.21113997016 0.5 0.28886002984 +UniRef50_C0W8D6 Rhamnan synthesis protein F 0.290184471648 0.5 0.209815528352 +UniRef50_UPI0003B75B95 50S ribosomal protein L5 0.461188152157 0.5 0.0388118478432 +UniRef50_Q3KIW5 NH dependent NAD(+) synthetase 0.218062984846 0.5 0.281937015154 +UniRef50_J7P463 0.00104078228074 0.500000000001 0.498959217718 +UniRef50_Q9CM47 Macrolide export ATP binding permease protein MacB 0.451266621 0.5 0.048733379 +UniRef50_G9AIM1 0.0587419978391 0.5 0.44125800216 +UniRef50_B5JD39 0.0110536045829 0.5 0.488946395417 +UniRef50_Q9RSR2 WD repeat family protein 0.0379493530248 0.5 0.462050646975 +UniRef50_X6XZ89 0.351754691165 0.5 0.148245308835 +UniRef50_A0A059LAV6 0.12212488607 0.5 0.37787511393 +UniRef50_B4U4I6 Holliday junction resolvase RecU 0.698311272914 0.5 -0.198311272914 +UniRef50_K1Y1K5 5.50243973957 0.500000000004 -5.00243973958 +UniRef50_UPI00035C76C3 hypothetical protein 0.15934314267 0.5 0.34065685733 +UniRef50_A6VC61 Peptide chain release factor 1 0.0999158315514 0.5 0.400084168449 +UniRef50_UPI0003B52326 histidinol dehydrogenase 0.312994621998 0.5 0.187005378002 +UniRef50_F2I852 Oxidoreductase, FAD FMN binding protein 2.35863040666 0.5 -1.85863040666 +UniRef50_P16145 Probable Ni Fe hydrogenase B type cytochrome subunit 1.84479900156 0.5 -1.34479900156 +UniRef50_A6LWU3 0.11808782261 0.5 0.38191217739 +UniRef50_D3A715 0.0563441771941 0.5 0.443655822806 +UniRef50_A0L482 N acetyl gamma glutamyl phosphate reductase 0.1974529485 0.5 0.3025470515 +UniRef50_UPI000422BA91 hypothetical protein 0.109525801065 0.5 0.390474198935 +UniRef50_P76161 Antitermination protein Q homolog from lambdoid prophage Qin 3.06811978057 0.499999999999 -2.56811978057 +UniRef50_U2ZTD9 0.178816210448 0.5 0.321183789552 +UniRef50_O85309 Excision nuclease UvrA 0.374376258216 0.5 0.125623741784 +UniRef50_Q8DHS3 Acyl carrier protein 0.037387278819 0.5 0.462612721181 +UniRef50_Q8UJC5 Shikimate dehydrogenase 0.587734698096 0.5 -0.0877346980964 +UniRef50_UPI00046D3AA4 hypothetical protein 0.466718517886 0.5 0.0332814821145 +UniRef50_UPI0003B31446 peptide ABC transporter ATP binding protein 0.142977388811 0.5 0.357022611189 +UniRef50_D5ZSF1 0.13094479021 0.5 0.369055209789 +UniRef50_B2V197 Helix turn helix domain protein 0.0857240194486 0.5 0.414275980551 +UniRef50_UPI000373CA50 hypothetical protein 0.118135893312 0.5 0.381864106688 +UniRef50_A7HRI8 UPF0260 protein Plav_0898 3.56994257211 0.499999999997 -3.06994257211 +UniRef50_UPI0002F72AC7 hypothetical protein 0.0265056588179 0.5 0.473494341183 +UniRef50_S5XR90 Aminotransferase 1.69280168182 0.5 -1.19280168182 +UniRef50_A1B4T6 0.20134454571 0.5 0.29865545429 +UniRef50_A0A058TF07 Periplasmic binding protein LacI transcriptionalregulator 2.50598432068 0.500000000004 -2.00598432068 +UniRef50_B8J6J0 0.0630334382667 0.5 0.436966561733 +UniRef50_UPI0003692945 hypothetical protein 0.400954647824 0.5 0.0990453521758 +UniRef50_A7ZSA7 Monofunctional biosynthetic peptidoglycan transglycosylase 8.4216213533 0.5 -7.9216213533 +UniRef50_P0A6C2 Endonuclease 4 0.302980896907 0.5 0.197019103093 +UniRef50_G8ATW7 1.9008285289 0.5 -1.4008285289 +UniRef50_UPI000471B5FA hypothetical protein, partial 0.199195152202 0.5 0.300804847798 +UniRef50_U6I1P7 Fibrillar collagen chain FAp1 alpha 0.800207481925 0.5 -0.300207481925 +UniRef50_F0KI43 Transcriptional regulator, LysR family 0.0128803841216 0.5 0.487119615878 +UniRef50_UPI0004763F0C GTP binding protein Era, partial 0.0600578271577 0.5 0.439942172842 +UniRef50_W0YTS0 Periplasmic tail specific protease 2.69137294869 0.5 -2.19137294869 +UniRef50_P53652 Superoxide dismutase [Mn] 1.74506230237 0.500000000001 -1.24506230238 +UniRef50_UPI000427CAFD hypothetical protein 0.037937287275 0.5 0.462062712725 +UniRef50_B2FUP3 0.779365055433 0.5 -0.279365055433 +UniRef50_H0JKI3 DNA polymerase II large subunit 0.0213695169 0.5 0.4786304831 +UniRef50_V5S959 Dihydroorotate dehydrogenase 8.27380777149 0.5 -7.77380777149 +UniRef50_Q9RSJ1 0.00066989944089 0.5 0.49933010056 +UniRef50_Q2C7C2 0.515679762537 0.5 -0.0156797625365 +UniRef50_A8SBF8 0.681006988481 0.5 -0.181006988481 +UniRef50_P32129 Probable acyltransferase YihG 6.82739253974 0.499999999996 -6.32739253974 +UniRef50_UPI00016A4C3D hypothetical protein 1.15457647946 0.5 -0.654576479457 +UniRef50_B5Z3J3 3.3107907665 0.5 -2.8107907665 +UniRef50_Q1BAN7 0.159404924183 0.5 0.340595075817 +UniRef50_G0NRW8 0.0422625573186 0.5 0.457737442682 +UniRef50_UPI00022CA8A0 PREDICTED 0.00326240948492 0.5 0.496737590515 +UniRef50_C1F933 Aminomethyltransferase 0.746783917782 0.5 -0.246783917782 +UniRef50_R7ACY8 Dyp type peroxidase 0.0324475780275 0.5 0.467552421973 +UniRef50_F0VQM4 0.319519297675 0.5 0.180480702325 +UniRef50_UPI0004710988 hypothetical protein 0.378235361839 0.5 0.121764638161 +UniRef50_Q8FHF8 Protein YdeP 1.14256497014 0.5 -0.642564970137 +UniRef50_R4ZTR9 Hydrolase, haloacid dehalogenase like family 17.2297842209 0.500000000001 -16.7297842209 +UniRef50_UPI0003B58A15 hypothetical protein 0.332570333806 0.5 0.167429666194 +UniRef50_UPI00046F911C riboflavin biosynthesis protein RibF 0.391460708582 0.5 0.108539291418 +UniRef50_UPI0003B578C2 LuxR family transcriptional regulator 0.394549861432 0.5 0.105450138568 +UniRef50_D9W2E7 BldA regulated nucleotide binding protein 0.306325862212 0.5 0.193674137788 +UniRef50_Q4PIL0 Catabolic 3 dehydroquinase 1.40924478821 0.5 -0.909244788215 +UniRef50_D2ZRP9 Conserved repeat protein 0.964921866518 0.5 -0.464921866518 +UniRef50_K4Z6Z2 Lipoprotein, YaeC family 0.841587691274 0.5 -0.341587691274 +UniRef50_UPI0003730702 hypothetical protein 0.0854074645949 0.5 0.414592535405 +UniRef50_UPI000237AA64 binding protein dependent transporter inner membrane component 2.30364761335 0.5 -1.80364761335 +UniRef50_P41338 Acetyl CoA acetyltransferase 0.395297278593 0.5 0.104702721407 +UniRef50_R4RQD5 Exodeoxyribonuclease I 0.545549095911 0.5 -0.0455490959108 +UniRef50_B6JP11 L seryl tRNA selenium transferase 0.021047225016 0.5 0.478952774984 +UniRef50_B9KSR5 Acetyltransferase 1.42308262019 0.5 -0.923082620191 +UniRef50_A5WGD9 Endonuclease exonuclease phosphatase 0.00725164578774 0.5 0.492748354212 +UniRef50_UPI0003B3F986 esterase, partial 0.539762241361 0.5 -0.0397622413608 +UniRef50_B5F9P6 Isopentenyl diphosphate Delta isomerase 1.91427676049 0.5 -1.41427676049 +UniRef50_UPI00046D1DF4 hypothetical protein 0.0339572623573 0.5 0.466042737643 +UniRef50_A0A059IPL7 0.187107503256 0.5 0.312892496744 +UniRef50_D7I1Z5 Protein involved in meta pathway of phenol degradation 0.0215972159969 0.5 0.478402784003 +UniRef50_UPI0003B7A9E3 methionine aminopeptidase 2.33102127829 0.5 -1.83102127829 +UniRef50_UPI00046D808E hypothetical protein 0.00100757303057 0.5 0.498992426969 +UniRef50_UPI0002898699 glycosyl transferase family protein 0.517155030427 0.5 -0.0171550304266 +UniRef50_P33639 Sensor protein PilS 0.369943904226 0.5 0.130056095774 +UniRef50_P27250 Aldehyde reductase Ahr 0.190841827998 0.5 0.309158172002 +UniRef50_I0J9Y4 3.12068656959 0.5 -2.62068656959 +UniRef50_UPI00047854C4 hypothetical protein 0.379670933402 0.5 0.120329066598 +UniRef50_B9KRB9 22.9780810222 0.499999999996 -22.4780810222 +UniRef50_C9TQ56 TRAP dicarboxylate transporter 0.383569637732 0.5 0.116430362268 +UniRef50_Q4V0C6 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.342595618647 0.5 0.157404381353 +UniRef50_Q9HTN0 1.59416818078 0.5 -1.09416818078 +UniRef50_E8QKR2 Zinc dependent alcohol dehydrogenase 0.0182241074962 0.5 0.481775892504 +UniRef50_UPI000413BA09 sugar kinase 0.613068141729 0.5 -0.113068141729 +UniRef50_Q4LAB5 Protein ArsC 1 4.87163199948 0.5 -4.37163199948 +UniRef50_R8ZEH6 Putative major facilitator superfamily transporter 0.250874780695 0.5 0.249125219305 +UniRef50_UPI0002E5E41F hypothetical protein 0.0741554728001 0.5 0.4258445272 +UniRef50_Q5LQC3 Putative arginyl tRNA protein transferase 2.47621486483 0.5 -1.97621486483 +UniRef50_UPI000288DE5F cation 0.5273148167 0.5 -0.0273148166999 +UniRef50_UPI0004716842 hypothetical protein 0.348514970124 0.5 0.151485029876 +UniRef50_Q13T51 UPF0271 protein Bxeno_A4200 4.59316727874 0.499999999999 -4.09316727874 +UniRef50_Q9RSD6 Aminopeptidase 0.00410684372038 0.5 0.495893156279 +UniRef50_E6RJK7 1.29699342554 0.5 -0.796993425543 +UniRef50_Q3HKI4 1.54911243934 0.499999999999 -1.04911243934 +UniRef50_Q3HKI5 2.49371511984 0.5 -1.99371511984 +UniRef50_UPI00034472D6 0.182202818168 0.5 0.317797181832 +UniRef50_Q0SI65 Putative 3 methyladenine DNA glycosylase 0.151371931371 0.5 0.348628068629 +UniRef50_UPI000412412A phosphohydrolase 0.0638855131384 0.5 0.436114486861 +UniRef50_UPI00028909B3 Sua5 YciO YrdC YwlC family protein, partial 0.136963431976 0.5 0.363036568024 +UniRef50_E8RT81 1.38945014449 0.5 -0.889450144493 +UniRef50_P74839 Propionate catabolism operon regulatory protein 1.19942049034 0.5 -0.699420490344 +UniRef50_A4IR80 Alanine tRNA ligase 0.836897966081 0.5 -0.336897966081 +UniRef50_B9G127 0.396941891824 0.5 0.103058108176 +UniRef50_UPI0003C17643 0.818050265314 0.5 -0.318050265314 +UniRef50_Q83EL0 Chaperone protein HtpG 0.413630797962 0.5 0.0863692020377 +UniRef50_UPI0001FFFE99 hypothetical protein 4.51936762416 0.500000000001 -4.01936762416 +UniRef50_Q5F551 Phosphopantetheine adenylyltransferase 0.0260345343722 0.5 0.473965465628 +UniRef50_G4LM89 1.68274749202 0.5 -1.18274749202 +UniRef50_S0F055 0.262986532271 0.5 0.237013467729 +UniRef50_UPI0003458B5D hypothetical protein 0.053446587833 0.5 0.446553412167 +UniRef50_UPI00038FF0AB Ribonuclease H 0.0778626558623 0.5 0.422137344138 +UniRef50_Q28TL6 Phosphatidylcholine synthase 0.988621583285 0.5 -0.488621583285 +UniRef50_P15531 Nucleoside diphosphate kinase A 0.349922121009 0.5 0.150077878991 +UniRef50_Q4L8S8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.0597200268 0.5 -1.5597200268 +UniRef50_UPI00046D6A82 hypothetical protein 1.90637369185 0.5 -1.40637369185 +UniRef50_O35046 Putative carboxypeptidase YocD 0.00299326676651 0.5 0.497006733234 +UniRef50_Q3S2Y2 Glycosyltransferase Gtf1 0.0177248403692 0.5 0.48227515963 +UniRef50_F8WKF3 4.13275663438 0.500000000003 -3.63275663439 +UniRef50_J4VP36 DNA polymerase III, alpha subunit 0.00245355147218 0.5 0.497546448528 +UniRef50_M1LZD3 0.415132303153 0.5 0.0848676968471 +UniRef50_D7W4Z4 0.636851473555 0.5 -0.136851473555 +UniRef50_F9Z273 Glycerol 3 phosphate dehydrogenase 0.0111600701502 0.5 0.48883992985 +UniRef50_R7PG96 0.098978856399 0.500000000001 0.4010211436 +UniRef50_A0A024DEK4 Lactoylglutathione lyase 0.169888677585 0.5 0.330111322415 +UniRef50_X1FSK7 Marine sediment metagenome DNA, contig 0.35320570953 0.5 0.14679429047 +UniRef50_E5QVT2 Riboflavin transporter RibU 11.8511927461 0.499999999998 -11.3511927461 +UniRef50_W4RLM9 Transketolase 0.932477934097 0.5 -0.432477934097 +UniRef50_P45564 1.61123939769 0.5 -1.11123939769 +UniRef50_Q8CQW0 1.14590658591 0.5 -0.645906585912 +UniRef50_UPI0002FD0224 hypothetical protein 0.0584856682998 0.5 0.4415143317 +UniRef50_U6I5L2 Propionyl coenzyme A carboxylase alpha chain 0.682763080841 0.5 -0.182763080841 +UniRef50_G2JJI4 0.0476963659857 0.5 0.452303634014 +UniRef50_UPI0003694B5F hypothetical protein 0.6003944691 0.5 -0.1003944691 +UniRef50_I4YT79 0.667363960014 0.5 -0.167363960014 +UniRef50_O31038 FMN reductase 0.17321426345 0.5 0.32678573655 +UniRef50_Q5HM43 Alcohol dehydrogenase, zinc containing 2.03766631968 0.5 -1.53766631968 +UniRef50_Q8CY30 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0821158656598 0.5 0.41788413434 +UniRef50_F0KMP6 0.0125284206113 0.5 0.487471579389 +UniRef50_UPI0003500B2C PREDICTED 0.0360049517241 0.5 0.463995048276 +UniRef50_N2QIY6 RNA pseudouridylate synthase family protein 1.10610979765 0.5 -0.606109797651 +UniRef50_D0IT38 Sodium D alanine glycine symporter 0.133184434308 0.5 0.366815565692 +UniRef50_F0LF03 Oligopeptide ABC transporter membrane spanning protein 0.893865885228 0.5 -0.393865885228 +UniRef50_UPI000255B4D9 citryl CoA lyase 2.85964255041 0.5 -2.35964255041 +UniRef50_A8GL06 TRAP dicarboxylate transporter, DctM subunit 2.19022925704 0.499999999999 -1.69022925704 +UniRef50_UPI00035EC92D hypothetical protein 0.801527081609 0.5 -0.301527081609 +UniRef50_G0LSM2 Phage protein 0.816545312763 0.5 -0.316545312763 +UniRef50_Q1ISS4 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.625653987027 0.5 -0.125653987027 +UniRef50_B9DKA9 Teichoic acid biosynthesis protein B 1.23902761365 0.5 -0.739027613652 +UniRef50_UPI000462E9F8 hypothetical protein 1.0938709926 0.5 -0.5938709926 +UniRef50_Q8DSW4 1.410468933 0.5 -0.910468933002 +UniRef50_UPI0003071439 hypothetical protein 0.103288675263 0.5 0.396711324737 +UniRef50_P71067 L lactate permease 0.0804173024732 0.5 0.419582697527 +UniRef50_U5MKH7 Short chain dehydrogenase reductase SDR 0.370258676675 0.5 0.129741323325 +UniRef50_UPI000371974E hypothetical protein 0.165165477036 0.5 0.334834522964 +UniRef50_C9AA28 FeS assembly protein SufD 2.71906987565 0.5 -2.21906987565 +UniRef50_M9VHT5 Primosome assembly protein PriA 0.0169111006034 0.5 0.483088899397 +UniRef50_UPI00038C29BD PREDICTED 0.189202510087 0.5 0.310797489913 +UniRef50_L7ETS7 D5 like N terminal domain protein 0.254774139902 0.5 0.245225860098 +UniRef50_G7M7Y7 Transcriptional regulator, TetR family 0.15713112637 0.5 0.342868873629 +UniRef50_Q3J4U2 2.2368904262 0.500000000001 -1.73689042621 +UniRef50_UPI0003786C39 hypothetical protein 1.35907565824 0.500000000001 -0.859075658242 +UniRef50_P26218 Cryptic outer membrane porin BglH 1.97391889913 0.5 -1.47391889913 +UniRef50_Q3IZ97 Transglutaminase like domain protein 2.14345436333 0.500000000001 -1.64345436333 +UniRef50_B4EU40 UPF0234 protein PMI0103 0.280321120121 0.5 0.219678879879 +UniRef50_UPI0002627F9F 30S ribosomal protein S17 0.116698920501 0.5 0.383301079499 +UniRef50_F5ZJK9 Methyltransferase 0.00686529253245 0.499999999999 0.493134707468 +UniRef50_D9SQV1 Inner membrane translocator 0.0166204486378 0.5 0.483379551362 +UniRef50_A6QIK5 0.0705353067729 0.500000000001 0.429464693227 +UniRef50_Q6F9V8 Pseudouridine synthase 0.0114369939796 0.5 0.48856300602 +UniRef50_UPI000377859E hypothetical protein 0.350744070808 0.5 0.149255929192 +UniRef50_UPI00025564DF thioredoxin 0.866421308776 0.5 -0.366421308776 +UniRef50_I6U015 1.04134286775 0.5 -0.541342867746 +UniRef50_A6QJ17 Iron compound ABC transporter, permease protein 2.75457175481 0.499999999999 -2.25457175481 +UniRef50_UPI0002559088 major facilitator transporter 1.97247689699 0.5 -1.47247689699 +UniRef50_W9T9W7 Lon protease 1.11476004193 0.5 -0.614760041927 +UniRef50_V8G2W5 Integrase 0.726642734945 0.5 -0.226642734945 +UniRef50_A0A023XXU1 Alanine dehydrogenase 0.0225804620305 0.5 0.477419537969 +UniRef50_E6E9V0 0.0493523990714 0.499999999999 0.450647600929 +UniRef50_Q88KQ9 Membrane protein, putative 0.0301805860745 0.5 0.469819413926 +UniRef50_A5UP71 Predicted tubulin like protein 3.67833482753 0.499999999996 -3.17833482752 +UniRef50_Q2FJ09 Putative antiporter subunit mnhG2 17.3015664163 0.499999999984 -16.8015664163 +UniRef50_A6LWW3 GCN5 related N acetyltransferase 0.261014907901 0.5 0.238985092099 +UniRef50_D3E4D7 Transcriptional regulator MarR family 1.10107562571 0.499999999999 -0.601075625705 +UniRef50_F6A8J6 Flagellar hook basal body protein 0.907026555718 0.5 -0.407026555718 +UniRef50_B7V109 Adenylate kinase 0.138348423793 0.5 0.361651576207 +UniRef50_X0UW79 Marine sediment metagenome DNA, contig 0.00387583034677 0.5 0.496124169653 +UniRef50_P0ABS6 DNA primase 1.60439601081 0.5 -1.10439601081 +UniRef50_Q7NM67 Ribose phosphate pyrophosphokinase 0.367590024222 0.5 0.132409975778 +UniRef50_D8PHS6 0.00531178042112 0.5 0.494688219579 +UniRef50_UPI000299E436 putative oxidase 0.079629929943 0.5 0.420370070057 +UniRef50_L7VT93 Chemotaxis protein methyltransferase 2 0.408997457965 0.5 0.0910025420348 +UniRef50_F9YAM3 4.98962185598 0.499999999999 -4.48962185598 +UniRef50_J0MX42 ISSep1, transposase family protein 2.75032314999 0.5 -2.25032314999 +UniRef50_S5Y434 Sulfolipid biosynthesis protein 1.92932289216 0.5 -1.42932289216 +UniRef50_A3PLB3 1.73243765951 0.5 -1.23243765951 +UniRef50_B3JPS9 0.563735234248 0.5 -0.0637352342481 +UniRef50_UPI0003B4FC9A transcriptional regulator 1.31511033029 0.5 -0.81511033029 +UniRef50_Q7N475 UPF0259 membrane protein plu2479 1.12649903209 0.5 -0.626499032087 +UniRef50_I0C6V2 Acetyltransferase 4.84242747108 0.499999999998 -4.34242747108 +UniRef50_Q64XQ0 Lipoyl synthase 0.0788827561788 0.5 0.421117243821 +UniRef50_A0A059KIS0 0.148108821729 0.5 0.351891178271 +UniRef50_A5FPX2 Glutamate tRNA ligase 0.0423334169551 0.5 0.457666583045 +UniRef50_UPI0004765137 hypothetical protein 0.392901260603 0.5 0.107098739397 +UniRef50_UPI0004545C86 PREDICTED 0.476179215964 0.5 0.0238207840357 +UniRef50_A5UMB6 Cell wall biosynthesis protein, MurD like peptide ligase family 2.12581722452 0.499999999999 -1.62581722452 +UniRef50_M7DM48 Permease 1.35680633215 0.5 -0.856806332146 +UniRef50_Q01T92 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.386267008988 0.5 0.113732991012 +UniRef50_UPI0002892E6E extracellular solute binding protein 0.0096730029911 0.5 0.490326997009 +UniRef50_Q5HS30 0.548261036478 0.5 -0.0482610364779 +UniRef50_UPI0002D8B23E acetyltransferase 0.471326229371 0.5 0.0286737706295 +UniRef50_UPI0003B5C533 PTS glucose transporter subunit IIA 0.814308229287 0.5 -0.314308229287 +UniRef50_E1RMJ4 0.319560307808 0.5 0.180439692192 +UniRef50_Q9ZAH9 Bacterial PH domain protein 1.63504745787 0.5 -1.13504745787 +UniRef50_V9WPU7 0.606116639854 0.5 -0.106116639854 +UniRef50_D4HFD7 0.0573336225673 0.5 0.442666377433 +UniRef50_U5NML8 1.85528365563 0.500000000001 -1.35528365563 +UniRef50_Q9I082 0.0205649965201 0.5 0.47943500348 +UniRef50_U5NML2 1.57553465373 0.5 -1.07553465373 +UniRef50_Q9I089 0.376600581312 0.5 0.123399418688 +UniRef50_Q9T0P4 Ferredoxin dependent glutamate synthase 2, chloroplastic 0.39928006303 0.5 0.10071993697 +UniRef50_P0A9G2 Transcriptional activator protein NhaR 3.11685570134 0.499999999998 -2.61685570134 +UniRef50_Q4L7Y8 ATP synthase subunit b 2.37648632464 0.499999999998 -1.87648632464 +UniRef50_UPI00046E378F electron transporter RnfB, partial 1.02720078476 0.5 -0.527200784756 +UniRef50_F3ZK40 Putative ABC transporter solute binding lipoprotein 0.319560307808 0.5 0.180439692192 +UniRef50_M4Z7B3 Putative membrane protein 0.176524655167 0.5 0.323475344833 +UniRef50_UPI0003804CCC hypothetical protein 0.586943506833 0.5 -0.0869435068331 +UniRef50_Q9HTF1 Low specificity L threonine aldolase 0.251537569683 0.5 0.248462430317 +UniRef50_Q9I1P2 HTH type transcriptional regulator VqsM 1.27099476494 0.5 -0.770994764939 +UniRef50_P25524 Cytosine deaminase 0.720951007064 0.5 -0.220951007064 +UniRef50_UPI00047C40EA lysophospholipase 0.254353873032 0.5 0.245646126968 +UniRef50_E0IXH7 ShET2 enterotoxin domain protein 2.83882171566 0.5 -2.33882171566 +UniRef50_UPI00036ACAB2 hypothetical protein 0.268355446744 0.5 0.231644553256 +UniRef50_A7K3E5 Nucleoside diphosphate sugar epimerase dehydratase 0.0131966411524 0.5 0.486803358848 +UniRef50_D4M7N5 Monosaccharide ABC transporter membrane protein, CUT2 family 0.741626538149 0.5 -0.241626538149 +UniRef50_V5XTJ1 0.824941069094 0.5 -0.324941069094 +UniRef50_UPI00046F6DC9 hypothetical protein 1.139370789 0.5 -0.639370789004 +UniRef50_W7SUS4 Non ribosomal peptide synthetase 0.957449433752 0.5 -0.457449433752 +UniRef50_Q8XPQ1 Probable remnant of a transposase protein 0.550430648983 0.5 -0.0504306489832 +UniRef50_W1K3W6 1.06889322382 0.5 -0.568893223821 +UniRef50_I4DYX6 ABC transporter homolog 15.110637058 0.499999999999 -14.610637058 +UniRef50_P24200 5 methylcytosine specific restriction enzyme A 0.243867802545 0.5 0.256132197455 +UniRef50_Q49XC4 2.3194256972 0.500000000001 -1.8194256972 +UniRef50_A0A024TW04 Secondary thiamine phosphate synthase enzyme, variant 0.298968024359 0.5 0.201031975641 +UniRef50_G8VL07 Universal stress protein UspA 0.0107544150401 0.5 0.48924558496 +UniRef50_UPI00006D0388 conserved hypothetical protein 1.58284595406 0.5 -1.08284595406 +UniRef50_Q795M6 Putative aminotransferase YugH 0.0799240960833 0.499999999999 0.420075903917 +UniRef50_I3TTH4 0.922824348254 0.5 -0.422824348254 +UniRef50_UPI0003B46BA7 hypothetical protein 4.24185701334 0.500000000001 -3.74185701334 +UniRef50_I3TTH2 2.1490002732 0.500000000003 -1.6490002732 +UniRef50_I3TTH3 2.21957544994 0.499999999999 -1.71957544994 +UniRef50_J3XAF4 Membrane flanked domain containing protein 0.0565222302456 0.5 0.443477769754 +UniRef50_Q9FFF4 Acetolactate synthase small subunit 1, chloroplastic 0.0656462382169 0.5 0.434353761783 +UniRef50_Q49XL3 0.827482904322 0.5 -0.327482904322 +UniRef50_I1G1I4 2.80654824673 0.500000000001 -2.30654824673 +UniRef50_UPI0003B53CAB LolC E family lipoprotein releasing system, transmembrane protein 0.188682163649 0.5 0.311317836351 +UniRef50_UPI0003B4AD44 cytochrome C550 2.62118723072 0.499999999999 -2.12118723072 +UniRef50_H1Z0J9 NADPH dependent FMN reductase 0.193936171542 0.5 0.306063828458 +UniRef50_M4QZZ1 Chloride channel protein 0.0104426336234 0.5 0.489557366377 +UniRef50_U1RIR7 1.49033250785 0.5 -0.990332507855 +UniRef50_B2S8N8 Argininosuccinate lyase 1.21537610451 0.500000000001 -0.715376104512 +UniRef50_P0A3S3 DNA entry nuclease 1.2018190365 0.5 -0.701819036501 +UniRef50_B4TBG4 UDP 4 amino 4 deoxy L arabinose oxoglutarate aminotransferase 4.02819827435 0.500000000003 -3.52819827436 +UniRef50_Q8CPC5 Nuclease SbcCD subunit C 1.38202278102 0.5 -0.882022781023 +UniRef50_Q8CQW1 3.92088950943 0.5 -3.42088950943 +UniRef50_A3QJF9 Ribosomal RNA large subunit methyltransferase F 0.199480707479 0.5 0.300519292521 +UniRef50_Q8CQW3 1.07397164888 0.5 -0.573971648881 +UniRef50_Q8CQW5 0.699039555642 0.5 -0.199039555642 +UniRef50_Q8CQW7 9.82534156473 0.49999999999 -9.32534156472 +UniRef50_H6P8E7 Pyridoxal phosphate enzyme, YggS family 0.57761778482 0.5 -0.07761778482 +UniRef50_A6LZ09 0.305601590017 0.5 0.194398409983 +UniRef50_G2SXD8 Aspartate aminotransferase 0.230156955589 0.5 0.269843044411 +UniRef50_A6M2G5 Phage infection protein, putative 0.22474677383 0.5 0.27525322617 +UniRef50_U5MXH4 DNA helicase, Rad3 0.151943910045 0.5 0.348056089955 +UniRef50_I0EP63 0.0186912509531 0.5 0.481308749047 +UniRef50_UPI0003A9ADDB hypothetical protein 0.230030660064 0.5 0.269969339936 +UniRef50_UPI0003B779BE spermidine putrescine ABC transporter permease, partial 0.0706464487927 0.5 0.429353551207 +UniRef50_A6M0M4 Respiratory chain NADH dehydrogenase domain, 51 kDa subunit 0.15432392135 0.5 0.34567607865 +UniRef50_UPI0002624FE5 Bcr CflA subfamily drug resistance transporter 0.558081556406 0.5 -0.0580815564064 +UniRef50_UPI00037F95F5 hypothetical protein 0.0614489427833 0.5 0.438551057217 +UniRef50_R5J671 Arabitol phosphate dehydrogenase 0.0303166235297 0.5 0.469683376471 +UniRef50_P41006 Uracil permease 0.778330758289 0.5 -0.278330758289 +UniRef50_C4J3V7 0.498006359754 0.5 0.00199364024636 +UniRef50_E5ARK1 Transposase 0.325926405016 0.5 0.174073594984 +UniRef50_M4ZCC6 Acetylornithine deacetylase 1.13114446487 0.5 -0.631144464871 +UniRef50_A5UKP7 5.54330546217 0.500000000003 -5.04330546217 +UniRef50_UPI00041293AC membrane protein 0.606497718774 0.5 -0.106497718774 +UniRef50_D3DZ29 GTP binding protein 1.57332125968 0.499999999999 -1.07332125968 +UniRef50_C7ZTN4 Acyl CoA dehydrogenase 2.88440873723 0.500000000004 -2.38440873723 +UniRef50_E9WE17 LysR family bacterial regulatory helix turn helix protein 0.131943868378 0.5 0.368056131622 +UniRef50_Q8RG52 Lysine tRNA ligase 1.7167090503 0.499999999997 -1.2167090503 +UniRef50_A0A022NN79 Putative transcriptional regulator 0.0937924448615 0.5 0.406207555138 +UniRef50_Q5F7E0 ATP phosphoribosyltransferase 0.00974822047143 0.5 0.490251779528 +UniRef50_B9DNZ7 UDP N acetylglucosamine N acetylmuramyl pyrophosphoryl undecaprenol N acetylglucosamine transferase 2.27376048875 0.5 -1.77376048875 +UniRef50_A4J5C2 Methylenetetrahydrofolate reductase 0.117387995678 0.5 0.382612004322 +UniRef50_E4RJQ9 Cysteine desulfurase, SufS subfamily 0.201501244796 0.5 0.298498755204 +UniRef50_UPI0001E8958F inosine uridine nucleoside hydrolase 0.722548570347 0.5 -0.222548570347 +UniRef50_P29849 Maltodextrin phosphorylase 0.427177421425 0.5 0.0728225785752 +UniRef50_P76272 1.42649461275 0.5 -0.92649461275 +UniRef50_D3QGG7 Tributyrin esterase 2.69337614708 0.500000000001 -2.19337614708 +UniRef50_G4KXX3 0.0344421155807 0.5 0.465557884419 +UniRef50_W7DIL1 Shikimate 5 dehydrogenase 0.598897516951 0.5 -0.0988975169508 +UniRef50_A3PGM6 50S ribosomal protein L6 2.93281185794 0.499999999998 -2.43281185794 +UniRef50_A6M2I8 0.253678936569 0.5 0.246321063431 +UniRef50_A0A024DHC4 MarR family transcriptional regulator 0.875386800032 0.5 -0.375386800032 +UniRef50_Q8VRM3 Type II secretion system protein L 3.78913769192 0.500000000001 -3.28913769192 +UniRef50_Q5HRK2 Acetyltransferase, GNAT family 7.16616090232 0.500000000003 -6.66616090233 +UniRef50_A9KMQ0 L lactate dehydrogenase 0.138350199699 0.5 0.361649800301 +UniRef50_Q73JJ6 50S ribosomal protein L7 L12 4.10671734205 0.499999999998 -3.60671734205 +UniRef50_D4HCK8 0.0661001833586 0.5 0.433899816641 +UniRef50_Q8D2Y0 Polyribonucleotide nucleotidyltransferase 0.123255015971 0.499999999999 0.376744984029 +UniRef50_Q9RTI8 MutT nudix family protein 0.00322530654613 0.5 0.496774693454 +UniRef50_G7U580 Pyridine nucleotide disulfide oxidoreductase 0.0272705638531 0.5 0.472729436147 +UniRef50_O08368 Glutathione peroxidase 1.31227723768 0.5 -0.812277237683 +UniRef50_A1JIE0 sn glycerol 3 phosphate import ATP binding protein UgpC 0.61742836664 0.5 -0.11742836664 +UniRef50_UPI0003FD6A90 sugar ABC transporter permease 0.159953529669 0.5 0.340046470331 +UniRef50_P0A9G4 HTH type transcriptional regulator CueR 0.1000376383 0.5 0.3999623617 +UniRef50_Q6G970 Segregation and condensation protein B 4.85778918522 0.499999999996 -4.35778918522 +UniRef50_F6D4R4 Peptidase U32 1.1024331097 0.5 -0.602433109703 +UniRef50_Q99VJ4 Clumping factor A 2.99120516435 0.499999999997 -2.49120516434 +UniRef50_Q9RVI9 0.00731626469738 0.5 0.492683735303 +UniRef50_Q9RVI8 0.00113847463126 0.5 0.498861525369 +UniRef50_P27669 Regulatory protein UhpC 0.997301299681 0.5 -0.497301299681 +UniRef50_C7DA27 0.725038225912 0.5 -0.225038225912 +UniRef50_UPI00036D28EF hypothetical protein 4.0015265039 0.5 -3.5015265039 +UniRef50_U1KC82 0.339847565815 0.5 0.160152434185 +UniRef50_UPI0003B7607C 50S ribosomal protein L13 0.11486978348 0.5 0.38513021652 +UniRef50_Q46PS3 Pseudouridine 5 phosphate glycosidase 1.85854361102 0.500000000001 -1.35854361102 +UniRef50_I0C2G5 Permease 1.84391450388 0.5 -1.34391450388 +UniRef50_UPI0003B4774F coproporphyrinogen III oxidase 1.21743861725 0.5 -0.717438617251 +UniRef50_Q2YSR3 HTH type transcriptional regulator SarX 1.12234166238 0.5 -0.62234166238 +UniRef50_Q0DU63 Os03g0204900 protein 0.238275684319 0.5 0.261724315681 +UniRef50_I6T4Q5 Transcriptional regulator 11.413733766 0.500000000003 -10.913733766 +UniRef50_UPI00035E2F93 hypothetical protein 0.00628557302348 0.5 0.493714426977 +UniRef50_UPI000378F4AE hypothetical protein 0.0436718966657 0.5 0.456328103334 +UniRef50_UPI000424F3F7 2 hydroxyacid dehydrogenase 0.137271538479 0.5 0.362728461521 +UniRef50_B7MG07 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 1.41322742979 0.499999999999 -0.913227429787 +UniRef50_N9PED4 Ferrous iron transporter B 0.0149632492585 0.5 0.485036750742 +UniRef50_F2DIT6 Predicted protein 0.351461256629 0.5 0.148538743371 +UniRef50_C5YL49 0.763950868358 0.5 -0.263950868358 +UniRef50_UPI00046D46EC PTS sugar transporter subunit IIA 0.105408457243 0.5 0.394591542757 +UniRef50_UPI000466BC57 branched chain amino acid ABC transporter ATP binding protein 0.0156399964073 0.5 0.484360003592 +UniRef50_Q5JN18 0.380859538148 0.5 0.119140461852 +UniRef50_A0A059ILG1 0.847025283851 0.5 -0.347025283851 +UniRef50_C4KRY7 Class II aldolase adducin family protein 0.0787251073136 0.5 0.421274892687 +UniRef50_Q17Y79 ATP synthase gamma chain 0.0230045818491 0.5 0.476995418151 +UniRef50_Q1GUM2 Valine tRNA ligase 0.256213449321 0.5 0.243786550679 +UniRef50_E3A2F4 1.164156927 0.5 -0.664156926996 +UniRef50_UPI00046731A3 hypothetical protein, partial 0.394279975196 0.5 0.105720024804 +UniRef50_A8NT37 0.410978854301 0.5 0.089021145699 +UniRef50_O95396 Adenylyltransferase and sulfurtransferase MOCS3 0.26532482227 0.5 0.23467517773 +UniRef50_G6X002 3 oxoacyl [acyl carrier protein] reductase 0.0800651723894 0.5 0.419934827611 +UniRef50_A6LZM1 Cell wall associated hydrolase like protein 0.110560003243 0.500000000001 0.389439996757 +UniRef50_J5HE89 Adenylosuccinate lyase 1.01089247772 0.5 -0.510892477717 +UniRef50_Q1C0H3 Chaperone SurA 4.09050896209 0.499999999998 -3.59050896209 +UniRef50_F0VVV7 Two component sensor protein 4.40586605363 0.500000000001 -3.90586605363 +UniRef50_G8VLG4 ErfK YbiS YcfS YnhG 0.0332803463063 0.5 0.466719653694 +UniRef50_Q57625 Probable acetolactate synthase small subunit 0.0438229322781 0.5 0.456177067722 +UniRef50_Q6FE82 0.064842413978 0.500000000001 0.435157586021 +UniRef50_B1K4I6 Putative reductase Bcenmc03_4815 0.947115140525 0.5 -0.447115140525 +UniRef50_G8VKU4 Oxidoreductase 0.0252477812601 0.5 0.47475221874 +UniRef50_UPI00036AEC25 sodium 0.00533774217383 0.5 0.494662257826 +UniRef50_UPI00035F3E55 hypothetical protein, partial 0.104552617695 0.5 0.395447382305 +UniRef50_UPI000345C0EA acetyl CoA acetyltransferase 0.0197140064692 0.5 0.480285993531 +UniRef50_Q9RYY7 0.00196365157718 0.499999999999 0.498036348424 +UniRef50_UPI000373C694 hypothetical protein 0.00785193484317 0.500000000001 0.492148065156 +UniRef50_Q8DW90 1.95860595332 0.5 -1.45860595332 +UniRef50_A6EWF4 0.00775169964146 0.500000000001 0.492248300358 +UniRef50_Q8FFV5 tRNA dihydrouridine synthase C 1.43107286044 0.5 -0.931072860436 +UniRef50_U5MMM3 D galactose binding periplasmic protein MglB 0.395355899284 0.5 0.104644100716 +UniRef50_F0RLL3 DEAD DEAH box helicase domain protein 0.00410408620794 0.5 0.495895913793 +UniRef50_F8E027 Phage primase 0.00602436678286 0.5 0.493975633217 +UniRef50_M5ADI0 0.425936005557 0.5 0.0740639944429 +UniRef50_P20506 L Threonine dehydratase biosynthetic IlvA 0.0504196697398 0.5 0.44958033026 +UniRef50_UPI00035D7F4D hypothetical protein 0.0347322107243 0.5 0.465267789276 +UniRef50_I0JFD7 2.11758330962 0.500000000001 -1.61758330962 +UniRef50_UPI0003771410 hypothetical protein 2.11517774024 0.500000000001 -1.61517774024 +UniRef50_X5FYX4 0.452823595298 0.5 0.0471764047023 +UniRef50_UPI00047310EB hypothetical protein 0.0703601109162 0.5 0.429639889084 +UniRef50_A9GJ97 2.48342584167 0.5 -1.98342584167 +UniRef50_X0QIZ7 Respiratory nitrate reductase beta chain 0.415545101014 0.5 0.0844548989864 +UniRef50_A5UM16 Phosphoribosylformylglycinamidine cyclo ligase 1.23524186078 0.5 -0.735241860779 +UniRef50_UPI00037699BE hypothetical protein 0.150098038647 0.5 0.349901961354 +UniRef50_O64903 Nucleoside diphosphate kinase II, chloroplastic 0.107186785497 0.5 0.392813214502 +UniRef50_Q8CRX7 Two component sensor histidine kinase like protein 2.55299911051 0.5 -2.05299911051 +UniRef50_Q6AB62 Thymidylate kinase 0.0139991203586 0.499999999999 0.486000879642 +UniRef50_A7X0T7 0.934738352824 0.5 -0.434738352824 +UniRef50_UPI00016C59FB Hemolysin type calcium binding region 0.64848274534 0.5 -0.14848274534 +UniRef50_UPI0004654759 hypothetical protein, partial 0.588606352802 0.5 -0.0886063528024 +UniRef50_F2LTP6 ABC type transporter, periplasmic subunit family 3 2.33160988323 0.5 -1.83160988323 +UniRef50_A0A011RSG6 NAD transhydrogenase subunit beta 0.599439796164 0.5 -0.0994397961645 +UniRef50_A4W0M7 ATP dependent helicase nuclease subunit A 0.0521303375031 0.5 0.447869662497 +UniRef50_F0J0R1 0.279771863047 0.5 0.220228136953 +UniRef50_I4JFC2 0.387931058462 0.5 0.112068941538 +UniRef50_UPI000466A8A4 hypothetical protein 0.455178800312 0.5 0.0448211996878 +UniRef50_W4FWB3 0.257594304875 0.5 0.242405695125 +UniRef50_UPI000288F47D AraC family transcriptional regulator 1.85963680299 0.500000000001 -1.35963680299 +UniRef50_P51056 2 oxoglutarate dehydrogenase E1 component 0.0211469306594 0.5 0.47885306934 +UniRef50_UPI0003834F1F PREDICTED 0.209679374656 0.5 0.290320625344 +UniRef50_UPI000262CDFD recombination and repair protein 0.239238155478 0.5 0.260761844522 +UniRef50_Q7N3E1 Multidrug resistance protein MdtC 0.157166112734 0.5 0.342833887266 +UniRef50_Q0FUB4 Replication initiator RepC 2.54339563223 0.499999999999 -2.04339563223 +UniRef50_J3IXG8 0.236418973728 0.5 0.263581026272 +UniRef50_D3E2B7 Transporter CDF family 1.90861339022 0.499999999999 -1.40861339022 +UniRef50_UPI000225A94B Hsp33 like chaperonin 1.52562802186 0.5 -1.02562802186 +UniRef50_E3J1U8 DNA polymerase I 0.00800802498013 0.5 0.49199197502 +UniRef50_UPI0003B712C5 DNA invertase 0.484801296085 0.5 0.0151987039146 +UniRef50_G8V5D6 Bacterial extracellular solute binding family protein 2.8825341818 0.499999999997 -2.3825341818 +UniRef50_Q03UL2 Dihydroxy acid dehydratase 0.308799904105 0.5 0.191200095895 +UniRef50_UPI0004770CE7 hypothetical protein 0.334215190994 0.5 0.165784809006 +UniRef50_Q1ZXF1 Probable enoyl CoA hydratase, mitochondrial 0.323456765635 0.5 0.176543234365 +UniRef50_UPI000377CE34 hypothetical protein 0.220271902063 0.5 0.279728097937 +UniRef50_J9V4P4 1.39570297686 0.5 -0.895702976855 +UniRef50_UPI0003802583 PE family protein 0.0173754738247 0.499999999999 0.482624526176 +UniRef50_G8AVW9 0.28988218127 0.5 0.21011781873 +UniRef50_K4Q9Y1 ATP dependent RNA helicase DBP2 0.530121122519 0.5 -0.0301211225192 +UniRef50_P30979 5.88093135531 0.500000000001 -5.38093135531 +UniRef50_E1PKG3 Putative aliphatic sulfonates binding protein 0.165165892783 0.5 0.334834107217 +UniRef50_UPI000383147C hypothetical protein M271_01890 0.680891344773 0.5 -0.180891344773 +UniRef50_Q0APX2 1.06013090887 0.5 -0.560130908871 +UniRef50_M7XX40 0.645795469962 0.5 -0.145795469962 +UniRef50_R9ZJZ3 TonB denpendent receptor 1.11706383509 0.5 -0.617063835093 +UniRef50_A6LV94 0.0725271503821 0.5 0.427472849618 +UniRef50_V6VNG0 HTH like domain protein 1.34707421279 0.499999999999 -0.847074212789 +UniRef50_C2ZZN3 0.00711910615003 0.5 0.49288089385 +UniRef50_R9SHV7 Metallophosphoesterase 2.77394936553 0.499999999998 -2.27394936553 +UniRef50_UPI0002DF27A4 hypothetical protein 2.41639796379 0.5 -1.91639796379 +UniRef50_UPI0003649624 hypothetical protein 2.11030700475 0.5 -1.61030700475 +UniRef50_UPI00047E508E light independent protochlorophyllide reductase subunit B 7.8045416707 0.499999999998 -7.3045416707 +UniRef50_UPI000363054E hypothetical protein, partial 2.05639649712 0.5 -1.55639649712 +UniRef50_I5BWG8 2.63575007431 0.5 -2.13575007431 +UniRef50_UPI000308C935 hypothetical protein 0.153375721033 0.5 0.346624278967 +UniRef50_UPI0003B370F2 flagellin 0.0512030743236 0.500000000001 0.448796925676 +UniRef50_UPI00039E8E1C hypothetical protein 1.35867910329 0.5 -0.858679103285 +UniRef50_P11160 Lipopolysaccharide export system ATP binding protein LptB 0.0955500639913 0.500000000001 0.404449936008 +UniRef50_Q5LNW7 CpaB family protein 3.38427689079 0.499999999999 -2.88427689079 +UniRef50_X5ERA2 0.114586767037 0.5 0.385413232963 +UniRef50_UPI00047E842D DNA recombination protein RecO 0.141213666484 0.5 0.358786333516 +UniRef50_UPI000372993F hypothetical protein 0.741769867104 0.5 -0.241769867104 +UniRef50_E3ZRD8 0.0848639915992 0.5 0.415136008401 +UniRef50_O67291 Isoprenyl transferase 0.409981214394 0.5 0.0900187856063 +UniRef50_B2RH63 3 oxoacyl [acyl carrier protein] synthase 3 0.135589255686 0.5 0.364410744314 +UniRef50_UPI000371500A hypothetical protein 0.676608134998 0.5 -0.176608134998 +UniRef50_UPI0003B3003D type I secretion protein 0.071531435262 0.5 0.428468564738 +UniRef50_UPI00037EBA03 hypothetical protein 0.259211067801 0.5 0.240788932199 +UniRef50_A8EVQ3 Uroporphyrinogen decarboxylase 0.000812861907078 0.5 0.499187138093 +UniRef50_UPI0003B5001E translation initiation factor IF 3 0.252477852418 0.5 0.247522147582 +UniRef50_UPI0004411670 hypothetical protein DICSQDRAFT_95428 0.112702134537 0.5 0.387297865464 +UniRef50_Q6Z707 Non ribosomal peptide synthetase modules and related proteins like 0.176291090704 0.5 0.323708909296 +UniRef50_A0A031HIT4 Flagellar FlaF family protein 1.02789488371 0.5 -0.527894883709 +UniRef50_UPI00047D2222 3 keto L gulonate 6 phosphate decarboxylase 0.206412318683 0.5 0.293587681317 +UniRef50_W7X754 10.4732888935 0.499999999995 -9.97328889352 +UniRef50_Q5HL20 Lipoprotein, putative 1.67189684729 0.5 -1.17189684729 +UniRef50_Q89XX5 Cobalt insertion protein 3.5034529672 0.499999999996 -3.0034529672 +UniRef50_Q3SNY6 UPF0301 protein Nwi_2752 0.245830978883 0.5 0.254169021117 +UniRef50_P52215 Thioredoxin reductase 0.0425362384495 0.5 0.45746376155 +UniRef50_A6M1X0 ThiW protein 0.0726569432334 0.5 0.427343056766 +UniRef50_UPI00035CB3DD hypothetical protein 0.124683127138 0.5 0.375316872862 +UniRef50_UPI0003B37751 translation initiation factor IF 3 0.326632237904 0.5 0.173367762096 +UniRef50_I2FHZ3 Glycosyl transferases group 1 family protein 0.952186413222 0.5 -0.452186413222 +UniRef50_UPI00037E157B hypothetical protein 0.631690653464 0.5 -0.131690653464 +UniRef50_UPI00036B9069 hypothetical protein 0.146592357489 0.5 0.353407642511 +UniRef50_S1EU50 Trimethylamine N oxide reductase 2 0.356900437099 0.5 0.143099562901 +UniRef50_UPI00036A682A hypothetical protein, partial 1.4087156373 0.5 -0.9087156373 +UniRef50_P45482 Cell division protein FtsZ 2.05873059046 0.499999999998 -1.55873059046 +UniRef50_A9AYE8 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.30845900996 0.5 -0.808459009962 +UniRef50_UPI0003B6D0DD peptidase M24 0.0239330029337 0.5 0.476066997066 +UniRef50_U5MLD2 Anti sigma factor N terminus 0.0391160935588 0.500000000001 0.460883906441 +UniRef50_P76079 1,2 phenylacetyl CoA epoxidase, subunit C 0.141314788683 0.5 0.358685211317 +UniRef50_G4LCX9 Transcriptional regulator 0.308767460135 0.5 0.191232539865 +UniRef50_Q57747 1.0242508261 0.5 -0.524250826096 +UniRef50_E3M3A4 0.0168038858654 0.5 0.483196114134 +UniRef50_Q7VRR0 Ribonuclease 3 0.0936471322258 0.5 0.406352867775 +UniRef50_A5FRK6 DNA directed RNA polymerase subunit beta 0.224339142209 0.5 0.275660857791 +UniRef50_A6M049 Alcohol dehydrogenase GroES domain protein 0.784278737856 0.5 -0.284278737856 +UniRef50_C5X103 0.0737568949559 0.5 0.426243105044 +UniRef50_Q6F9W1 tRNA dimethylallyltransferase 0.0457259257575 0.5 0.454274074243 +UniRef50_J0P427 Type III restriction modification system DNA endonuclease 0.0093239546144 0.5 0.490676045385 +UniRef50_Q492E0 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.850844385033 0.5 -0.350844385033 +UniRef50_I2ZQB3 L lactate dehydrogenase 4.36944406084 0.5 -3.86944406084 +UniRef50_Q5HLD9 Peptidase, M20 M25 M40 family 1.50143389336 0.5 -1.00143389336 +UniRef50_B5ERH7 0.428422418661 0.5 0.0715775813392 +UniRef50_S5XXA0 Exodeoxyribonuclease III 0.780204283797 0.5 -0.280204283797 +UniRef50_B6GDZ1 9.1915775036 0.5 -8.6915775036 +UniRef50_Q3Y002 0.0193017138723 0.5 0.480698286128 +UniRef50_X2HWL3 TonB dependent receptor 0.00517455812339 0.5 0.494825441877 +UniRef50_A8LL44 0.319004107847 0.5 0.180995892153 +UniRef50_A6M0N1 Response regulator receiver protein 0.0871778822014 0.5 0.412822117799 +UniRef50_UPI0003C14EB6 1.14003106537 0.5 -0.640031065367 +UniRef50_F4DM00 Glutamate dehydrogenase 0.656350894591 0.5 -0.156350894591 +UniRef50_L1K914 2.31260301912 0.5 -1.81260301912 +UniRef50_UPI00047DD927 damage inducible protein CinA 1.93096578182 0.500000000002 -1.43096578182 +UniRef50_X6J8Z0 0.377639605444 0.5 0.122360394556 +UniRef50_UPI0001BF5AE1 hypothetical protein SMAC_10035 8.11188955314 0.500000000007 -7.61188955315 +UniRef50_Q97WN9 NH dependent NAD(+) synthetase 5.07532045822 0.500000000002 -4.57532045822 +UniRef50_A3PKG7 Two component transcriptional regulator, LuxR family 1.76917869053 0.5 -1.26917869053 +UniRef50_P11000 Wall associated protein 2.48330730924 0.5 -1.98330730924 +UniRef50_A8YV22 ATP dependent 6 phosphofructokinase 0.952189968702 0.5 -0.452189968702 +UniRef50_UPI0003B46133 PREDICTED 0.414067230748 0.5 0.0859327692516 +UniRef50_A0A037Z3Z8 0.220593975764 0.5 0.279406024236 +UniRef50_P16683 Putative phosphonates transport system permease protein PhnE 5.96206991399 0.499999999999 -5.46206991399 +UniRef50_M7A0E0 0.00748711696266 0.5 0.492512883037 +UniRef50_P32670 Multiphosphoryl transfer protein 2 2.25997346143 0.5 -1.75997346143 +UniRef50_R9CAH0 Cobalt transporter 0.515437939061 0.5 -0.0154379390607 +UniRef50_K4RS80 Potassium efflux system KefA protein Small conductance mechanosensitive channel 1.78258589512 0.499999999999 -1.28258589512 +UniRef50_A0A017HSP4 0.989695988752 0.5 -0.489695988752 +UniRef50_A6LTV6 SEC C motif domain protein 0.0622530967001 0.5 0.4377469033 +UniRef50_UPI0002652F6C PREDICTED 0.0616433126744 0.5 0.438356687325 +UniRef50_P50843 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.219256502108 0.5 0.280743497892 +UniRef50_W1IC39 Chromosome I, genome 0.854911242119 0.5 -0.354911242119 +UniRef50_T2ENN0 Rhs element Vgr family protein 3.03114814943 0.500000000001 -2.53114814943 +UniRef50_Q8Y0Z5 Ubiquinone biosynthesis O methyltransferase 1.25049175416 0.5 -0.750491754161 +UniRef50_L7WZX4 4.79841086039 0.5 -4.29841086039 +UniRef50_W1ELN4 Formate dehydrogenase N alpha subunit @ selenocysteine containing 1.94498685648 0.500000000001 -1.44498685648 +UniRef50_A0A017HCQ2 1.03725230815 0.5 -0.537252308146 +UniRef50_C6LQB4 Deoxyribose phosphate aldolase 0.101220478226 0.5 0.398779521774 +UniRef50_X0T0E9 Marine sediment metagenome DNA, contig 0.0576137903886 0.5 0.442386209611 +UniRef50_P39376 HTH type transcriptional regulator YjiE 1.82163934148 0.499999999999 -1.32163934148 +UniRef50_V1A381 Diguanylate cyclase domain protein 0.84471975299 0.5 -0.34471975299 +UniRef50_F8JJM3 0.178089037078 0.5 0.321910962922 +UniRef50_Z2DBM9 Oxoglutarate dehydrogenase , E1 component 0.700574059335 0.5 -0.200574059335 +UniRef50_P44908 0.472793717155 0.5 0.027206282845 +UniRef50_E3F0C5 1.79923556538 0.5 -1.29923556538 +UniRef50_UPI0003620071 hypothetical protein 1.47803546624 0.5 -0.978035466244 +UniRef50_Q4KJ83 Chemotaxis protein MotB 1.81005823944 0.5 -1.31005823944 +UniRef50_Q9KN05 Tryptophanase 2.36616015063 0.499999999999 -1.86616015063 +UniRef50_F3U1C5 1.10616832421 0.5 -0.606168324209 +UniRef50_X3ELX1 Chloride channel protein 1.81963382635 0.500000000001 -1.31963382635 +UniRef50_B2TNE9 Biotin [acetyl CoA carboxylase] ligase 0.222174519 0.5 0.277825481 +UniRef50_UPI000380DD01 hypothetical protein, partial 0.414230295265 0.5 0.0857697047349 +UniRef50_F4N161 3.60404370174 0.500000000002 -3.10404370174 +UniRef50_UPI0003B799F9 ribonucleoside diphosphate reductase 2.12782051344 0.5 -1.62782051344 +UniRef50_K1T508 Excinuclease ABC, A subunit 0.243920966008 0.5 0.256079033992 +UniRef50_A6M335 1,4 alpha glucan branching enzyme 0.128297299016 0.5 0.371702700984 +UniRef50_UPI00035EBE88 hypothetical protein 11.9129585389 0.499999999998 -11.4129585389 +UniRef50_W5XAJ1 Ribosomal protein L25 L23 0.137056627355 0.5 0.362943372645 +UniRef50_Z4K4V4 1.09310525589 0.5 -0.593105255886 +UniRef50_X1YKP1 0.320597841288 0.5 0.179402158712 +UniRef50_UPI00037EB0E7 hypothetical protein 0.0566566162506 0.5 0.44334338375 +UniRef50_Q2CDG7 Flagellar protein FlaF, putative 0.187526464013 0.5 0.312473535987 +UniRef50_I6TW14 Alpha glucosidase 2.02086780685 0.5 -1.52086780685 +UniRef50_P33485 Probable nuclear antigen 0.650357088593 0.5 -0.150357088593 +UniRef50_Q4L9L8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.88333929969 0.5 -1.38333929969 +UniRef50_D9QKH6 NAD dependent epimerase dehydratase 4.43293197505 0.5 -3.93293197505 +UniRef50_Q8Z9U9 DNA replication and repair protein RecF 0.772491148048 0.5 -0.272491148048 +UniRef50_Q8ZES9 Long chain fatty acid CoA ligase 0.364736209458 0.5 0.135263790542 +UniRef50_G8NWZ5 Sigma 54 interacting domain protein 0.000782381701164 0.5 0.499217618299 +UniRef50_D3DZ67 Met 10+ like protein 0.219576524875 0.5 0.280423475125 +UniRef50_I6TX91 Histidine kinase 4.18221592288 0.500000000003 -3.68221592288 +UniRef50_C8N7Z4 1.8987321548 0.5 -1.3987321548 +UniRef50_UPI00047D1D69 hypothetical protein 0.646905673084 0.5 -0.146905673084 +UniRef50_UPI0001B4124B hypothetical protein, partial 0.124918454244 0.5 0.375081545756 +UniRef50_Q88K39 Glutaminase asparaginase 1.1985672975 0.5 -0.698567297498 +UniRef50_L8DZR6 Internalin J 0.839220741795 0.5 -0.339220741795 +UniRef50_A3SID6 Cation transport protein ChaC, putative 0.402859743638 0.5 0.0971402563619 +UniRef50_UPI0002375A77 extracellular solute binding protein 0.143674479822 0.5 0.356325520178 +UniRef50_Q49VQ7 7 cyano 7 deazaguanine synthase 0.839087343042 0.5 -0.339087343042 +UniRef50_L6MLX7 Nitrate reductase Z subunit beta 0.275250635456 0.5 0.224749364544 +UniRef50_R4GKP1 4.19781287582 0.499999999998 -3.69781287582 +UniRef50_E4RQB3 1.14049991706 0.5 -0.640499917062 +UniRef50_B7GYT0 Ribonuclease 3 0.0119441035625 0.5 0.488055896438 +UniRef50_F8DL52 Rhodanese like protein 0.13530857893 0.5 0.36469142107 +UniRef50_I6TRN9 1.56056950882 0.5 -1.06056950882 +UniRef50_A7B8Z2 Cell wall binding repeat protein 0.000257838226535 0.5 0.499742161774 +UniRef50_UPI0003764F6C hypothetical protein 0.126895179113 0.5 0.373104820887 +UniRef50_D7GE62 ATP dependent helicase 0.0223205707631 0.5 0.477679429237 +UniRef50_U6KE00 0.167540469276 0.5 0.332459530724 +UniRef50_J2YGZ8 FAD dependent oxidoreductase 0.00487137434571 0.5 0.495128625654 +UniRef50_UPI000365642F hypothetical protein 1.34636886557 0.5 -0.846368865574 +UniRef50_P00148 Cytochrome c 4.16624609521 0.5 -3.66624609521 +UniRef50_Q5HRL1 1.26445399073 0.5 -0.764453990731 +UniRef50_E3A2F6 0.548272446268 0.5 -0.0482724462679 +UniRef50_Q0C2D0 Peptidyl tRNA hydrolase 0.776719062831 0.5 -0.276719062831 +UniRef50_UPI00046FE521 hypothetical protein 0.352241076435 0.5 0.147758923565 +UniRef50_M1MYZ3 Methyl accepting chemotaxis protein TlpC 0.328861152132 0.5 0.171138847868 +UniRef50_C1CXQ2 0.0040000699222 0.5 0.495999930078 +UniRef50_F8KQA4 Phospholipid binding protein 0.0151288593128 0.5 0.484871140687 +UniRef50_UPI00045DC843 PREDICTED 0.0999597462318 0.5 0.400040253768 +UniRef50_UPI000375A3E4 hypothetical protein 0.142644693768 0.5 0.357355306232 +UniRef50_A0RBY1 0.0223237563155 0.5 0.477676243685 +UniRef50_U3T289 0.0288982521071 0.5 0.471101747893 +UniRef50_J0JAX6 1.08481269518 0.5 -0.584812695181 +UniRef50_B9TMP1 0.0122399791156 0.5 0.487760020885 +UniRef50_F4ED07 Ribosomal protein L7Ae L30e S12e Gadd45 0.321963016884 0.5 0.178036983116 +UniRef50_A5UJE1 8.1975581403 0.500000000004 -7.6975581403 +UniRef50_G0DRR1 0.135706307014 0.5 0.364293692986 +UniRef50_UPI0003DF491B PREDICTED 0.0612429902251 0.5 0.438757009774 +UniRef50_A3CLV1 0.969999105121 0.5 -0.469999105121 +UniRef50_UPI00037FE503 hypothetical protein 5.51649807646 0.500000000003 -5.01649807646 +UniRef50_I6U158 7.13070286646 0.500000000003 -6.63070286646 +UniRef50_UPI000373EEF8 MULTISPECIES 0.226699775823 0.5 0.273300224177 +UniRef50_UPI0003647A42 hypothetical protein 0.090425970117 0.5 0.409574029883 +UniRef50_J8V820 0.956712886564 0.5 -0.456712886564 +UniRef50_B7GVN1 Ribosomal RNA small subunit methyltransferase H 0.0135306509399 0.5 0.48646934906 +UniRef50_S5ZQH2 0.00425219314843 0.5 0.495747806852 +UniRef50_Q2RS21 Nickel import ATP binding protein NikD 4.8745916639 0.500000000004 -4.3745916639 +UniRef50_B7JYJ9 Quinolinate synthase A 0.00383580569028 0.5 0.49616419431 +UniRef50_U5RSM0 0.218157849845 0.5 0.281842150155 +UniRef50_R5FEK9 0.020522208506 0.5 0.479477791494 +UniRef50_A1VIU6 ATP synthase subunit a 0.315491831654 0.5 0.184508168346 +UniRef50_I8QU08 0.118016660359 0.499999999999 0.381983339642 +UniRef50_UPI000329212D PREDICTED 2.99352898675 0.500000000001 -2.49352898675 +UniRef50_P15047 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase 4.35552700695 0.500000000001 -3.85552700695 +UniRef50_UPI0001D2E7B0 Hemolysin type calcium binding region 0.997715031012 0.5 -0.497715031012 +UniRef50_P37439 PTS system glucose specific EIICB component 1.20137644146 0.5 -0.701376441461 +UniRef50_A5UM83 Hydrogenase maturation factor, HypF 0.770143668266 0.5 -0.270143668266 +UniRef50_R6UTM8 0.261509463273 0.5 0.238490536727 +UniRef50_UPI0002ADB961 0.254132835774 0.5 0.245867164226 +UniRef50_Q5HQZ0 2.11124776011 0.499999999998 -1.61124776011 +UniRef50_P32722 Porin D 0.457865350358 0.5 0.0421346496423 +UniRef50_UPI0004661A11 3 5 exonuclease 0.0245160180446 0.5 0.475483981955 +UniRef50_N0B552 HupH hydrogenase expression protein 2.29695963453 0.5 -1.79695963453 +UniRef50_UPI00035DB243 hypothetical protein 0.580225440037 0.5 -0.0802254400373 +UniRef50_A0A030TPT1 0.803694908479 0.5 -0.303694908479 +UniRef50_A5UKE8 Type II secretion system protein F, GspF 3.17043198189 0.499999999998 -2.67043198189 +UniRef50_UPI000479F301 hypothetical protein 2.07649777272 0.500000000001 -1.57649777272 +UniRef50_A6LUH2 Alanine racemase 0.141044633587 0.5 0.358955366413 +UniRef50_A5IVF9 Mg2+ transporter protein, CorA family protein 2.6307447876 0.500000000001 -2.1307447876 +UniRef50_Q89XA0 3 isopropylmalate dehydrogenase 1 0.369303180038 0.5 0.130696819962 +UniRef50_B0VUU2 0.0101763685264 0.5 0.489823631473 +UniRef50_Q8VVU3 Replication associated protein 1.26071495955 0.5 -0.760714959553 +UniRef50_E3A4C5 0.017638379601 0.5 0.482361620399 +UniRef50_A1SPT8 Phosphoribosylformylglycinamidine synthase 2 0.0043435477548 0.5 0.495656452245 +UniRef50_S5RIW0 0.0490112906725 0.5 0.450988709327 +UniRef50_UPI00036A417A hypothetical protein 0.640896888672 0.5 -0.140896888672 +UniRef50_O33259 Methionine synthase 0.017866847382 0.5 0.482133152618 +UniRef50_UPI00047BB1A3 hypothetical protein 0.0807031532 0.5 0.4192968468 +UniRef50_A6LRU6 0.0289761822781 0.5 0.471023817722 +UniRef50_A6LRU7 0.116582395373 0.5 0.383417604627 +UniRef50_A1SVB2 0.00488070358129 0.5 0.495119296419 +UniRef50_B0V786 0.0059588693987 0.5 0.494041130601 +UniRef50_UPI0003B5372C TetR family transcriptional regulator 4.36157268941 0.499999999998 -3.86157268941 +UniRef50_UPI0003B59C0B dihydroorotase 1.9199257708 0.499999999998 -1.4199257708 +UniRef50_UPI00037651B9 hypothetical protein 0.00511288068253 0.5 0.494887119317 +UniRef50_A6FKW5 0.63023787156 0.5 -0.13023787156 +UniRef50_UPI0002899E1F DNA mismatch repair protein MutS 0.0361122481928 0.5 0.463887751807 +UniRef50_UPI00030D0981 hypothetical protein 0.00400462164583 0.5 0.495995378354 +UniRef50_UPI00046F9613 hypothetical protein 0.536721984942 0.5 -0.036721984942 +UniRef50_Q73D76 0.13111808571 0.500000000001 0.368881914289 +UniRef50_UPI00046CFC68 hypothetical protein 0.0683848170708 0.5 0.43161518293 +UniRef50_Q0VN76 PhoH family protein 1.68910535131 0.5 -1.18910535131 +UniRef50_Q8H580 1.41936578369 0.5 -0.919365783688 +UniRef50_D7B233 0.508757671146 0.5 -0.00875767114612 +UniRef50_UPI000289E08F glutathione ABC transporter substrate binding protein GsiB 0.469628452721 0.5 0.0303715472791 +UniRef50_A6M367 Extracellular solute binding protein, family 1 0.58097454916 0.5 -0.0809745491598 +UniRef50_M3DCH5 3 deoxy D manno octulosonic acid 8 phosphate synthase 0.277189692919 0.5 0.222810307081 +UniRef50_UPI0003B45A6F MULTISPECIES 0.922347864525 0.5 -0.422347864525 +UniRef50_A6Q773 50S ribosomal protein L19 16.0672836996 0.499999999999 -15.5672836996 +UniRef50_Q28MI3 4.89214787573 0.499999999999 -4.39214787573 +UniRef50_Q28MI2 1.22743439731 0.5 -0.727434397311 +UniRef50_UPI0004696A5C glyceraldehyde 3 phosphate dehydrogenase 0.924504998446 0.5 -0.424504998446 +UniRef50_Q03UP2 Aryl alcohol dehydrogenase family enzyme 0.96701047875 0.5 -0.46701047875 +UniRef50_D5ZLN9 Predicted protein 0.876598386924 0.5 -0.376598386924 +UniRef50_A5ULA0 Multidrug ABC transporter, ATPase component 1.86134113838 0.5 -1.36134113838 +UniRef50_F0YBG4 0.138670936283 0.5 0.361329063717 +UniRef50_P59495 Glutathione synthetase 2.80277408632 0.5 -2.30277408632 +UniRef50_UPI0003D30C55 sulfoxide reductase heme binding subunit yedz 1.72562014941 0.5 -1.22562014941 +UniRef50_N6Z631 Cytosine deaminase 0.816953989325 0.5 -0.316953989325 +UniRef50_Q9HZK8 Na translocating NADH quinone reductase subunit C 1.47073541753 0.5 -0.970735417531 +UniRef50_UPI0002B49D99 PREDICTED 0.194839298722 0.5 0.305160701278 +UniRef50_P0A8Z9 Esterase YqiA 0.842531363888 0.5 -0.342531363888 +UniRef50_UPI0003458FD8 hypothetical protein 0.194271104377 0.5 0.305728895623 +UniRef50_K0HFH6 0.02752417183 0.5 0.47247582817 +UniRef50_Q3J266 1.35865538141 0.5 -0.858655381412 +UniRef50_Q3J267 3.40493421659 0.500000000002 -2.90493421659 +UniRef50_M9VDE3 ABC transporter 0.0125800886833 0.5 0.487419911316 +UniRef50_Q8CU42 Carbamate kinase 2 1.06230479121 0.5 -0.562304791209 +UniRef50_F7YL25 Thiamine binding protein 3.50169839569 0.499999999997 -3.00169839569 +UniRef50_E8QNM4 0.0160370749901 0.5 0.48396292501 +UniRef50_H8L2K5 Phage tail sheath protein FI 0.483297115878 0.5 0.0167028841222 +UniRef50_A2RCF8 Ribonuclease P protein component 0.892209189975 0.5 -0.392209189975 +UniRef50_G7U4V3 Oxidoreductase, Gfo Idh MocA family protein 0.0108846707617 0.5 0.489115329238 +UniRef50_P39365 Putative permease IIC component 10.7897777654 0.500000000005 -10.2897777654 +UniRef50_UPI00034B692F hypothetical protein 1.07965586698 0.5 -0.579655866979 +UniRef50_UPI00047130C0 hypothetical protein 0.560803038353 0.5 -0.0608030383529 +UniRef50_X6KZ77 1.07771417 0.5 -0.577714170004 +UniRef50_UPI0004651C83 hypothetical protein 0.502294780401 0.5 -0.00229478040102 +UniRef50_UPI0003B2E3F6 DNA polymerase III subunit alpha 1.28399254064 0.5 -0.783992540644 +UniRef50_C1DRR2 3 phosphoshikimate 1 carboxyvinyltransferase 0.430721951257 0.5 0.0692780487428 +UniRef50_F0XXB3 0.269392046221 0.5 0.230607953779 +UniRef50_W0YJM1 Putative TonB dependent receptor 0.404757643269 0.5 0.0952423567313 +UniRef50_E2XUN1 Iron containing alcohol dehydrogenase 0.686458953067 0.5 -0.186458953067 +UniRef50_D8MEB7 Serine rich repeat protein 0.19877194664 0.5 0.30122805336 +UniRef50_Q8H3H1 5.38803046534 0.500000000003 -4.88803046534 +UniRef50_A1B945 Glutamate racemase 0.563708230605 0.5 -0.063708230605 +UniRef50_Q1IXY0 DNA polymerase of the X family containing C terminal PHP hydrolase domain 0.0061271346529 0.5 0.493872865347 +UniRef50_UPI000363D712 hypothetical protein 0.101972320294 0.5 0.398027679705 +UniRef50_A0A037W4W5 1.1974825404 0.5 -0.697482540399 +UniRef50_A6LQ35 Cyclase family protein 0.420728962309 0.5 0.0792710376905 +UniRef50_W1HHP3 Ribose ABC transporter, periplasmic ribose binding protein RbsB 3.27957165273 0.5 -2.77957165273 +UniRef50_B0UBE5 NAD dependent epimerase dehydratase 0.793791725712 0.5 -0.293791725712 +UniRef50_W0YRT6 Putative phosphatase 0.877964683615 0.5 -0.377964683615 +UniRef50_C9RRF6 von Willebrand factor type A 5.61833351837 0.499999999999 -5.11833351837 +UniRef50_UPI00036F1B6D hypothetical protein 1.22386723772 0.5 -0.723867237718 +UniRef50_Q4FRK9 N acetyl gamma glutamyl phosphate reductase 0.0273942862159 0.5 0.472605713784 +UniRef50_B5F4E2 Fatty acid metabolism regulator protein 0.411427744097 0.5 0.0885722559029 +UniRef50_A6QFE8 1.18624432425 0.499999999999 -0.686244324248 +UniRef50_O29388 Probable amidophosphoribosyltransferase 0.286131252909 0.5 0.213868747091 +UniRef50_UPI0002192A6F hypothetical protein, partial 0.361244311651 0.5 0.138755688349 +UniRef50_U5MW64 Diguanylate cyclase and metal dependent phosphohydrolase 0.212638842942 0.5 0.287361157058 +UniRef50_M7DL42 Type I restriction modification system, specificity determinant 1.21375624044 0.5 -0.713756240443 +UniRef50_B9KJA0 Acetyl CoA hydrolase 3.34463074883 0.5 -2.84463074883 +UniRef50_UPI0002003A9E L serine ammonia lyase, partial 0.0484659144843 0.5 0.451534085516 +UniRef50_UPI000469BD09 hypothetical protein 0.935245121121 0.5 -0.435245121121 +UniRef50_B5YJ32 Elongation factor P 0.138566435638 0.5 0.361433564362 +UniRef50_Q8P1D8 2.52296724159 0.5 -2.02296724159 +UniRef50_UPI0003B5C7ED histidine kinase, partial 0.00536555675751 0.5 0.494634443242 +UniRef50_Q8E7L9 Adapter protein MecA 0.391903765123 0.5 0.108096234877 +UniRef50_J0EKQ4 0.614220166313 0.5 -0.114220166313 +UniRef50_Q49YT7 Ferritin 2.19483570939 0.5 -1.69483570939 +UniRef50_R0ESP5 Replication initiation protein RepC 4.046382992 0.499999999999 -3.546382992 +UniRef50_Q2LUE0 Tryptophan synthase alpha chain 1.34240426422 0.5 -0.842404264224 +UniRef50_E8SIH2 Cysteine desulfurase 2.26127511894 0.499999999999 -1.76127511894 +UniRef50_U6LM07 Transportin, putative 0.001470749757 0.5 0.498529250243 +UniRef50_Q4L4T7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 2.21001807998 0.500000000003 -1.71001807998 +UniRef50_A8Z4C3 0.084716592493 0.5 0.415283407507 +UniRef50_Q8CNM7 Ser Asp rich fibrinogen binding protein 1.96009994975 0.5 -1.46009994975 +UniRef50_UPI000410849B hypothetical protein 1.48774685728 0.5 -0.987746857278 +UniRef50_K8EKX2 DNA 3 methylpurine glycosylase 0.0431136794064 0.5 0.456886320593 +UniRef50_UPI00031BCDF1 hypothetical protein 0.00823606139224 0.5 0.491763938608 +UniRef50_B0V5G5 0.0516751877242 0.5 0.448324812276 +UniRef50_Q98C73 Mll5269 protein 1.0349305003 0.5 -0.534930500296 +UniRef50_UPI0003AD207F hypothetical protein 0.0248325256145 0.5 0.475167474386 +UniRef50_M1N642 Transcriptional regulator, TetR family 0.0482382172064 0.5 0.451761782794 +UniRef50_UPI00037F1905 hypothetical protein 1.25659861659 0.499999999999 -0.756598616586 +UniRef50_G7M799 Signal transduction histidine kinase, LytS 0.325056985976 0.5 0.174943014024 +UniRef50_Q5FRT7 Peptidyl tRNA hydrolase 1.02418545091 0.5 -0.524185450907 +UniRef50_Q6ABX1 Replicative DNA helicase 0.00554872036811 0.5 0.494451279632 +UniRef50_A0KZD8 Glucose 1 phosphate adenylyltransferase 0.230491215855 0.5 0.269508784145 +UniRef50_B9KTQ6 TRAP T family transporter, large inner membrane subunit 6.21211374655 0.500000000003 -5.71211374656 +UniRef50_A1KKI2 Dihydroorotate dehydrogenase 0.417786629772 0.5 0.0822133702275 +UniRef50_UPI00030DA7F9 thioredoxin 0.816901203256 0.5 -0.316901203256 +UniRef50_K9ERP2 0.152162559916 0.5 0.347837440084 +UniRef50_A0A023RSC8 Diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.0307041172533 0.5 0.469295882746 +UniRef50_J7N582 0.00499084509054 0.5 0.49500915491 +UniRef50_Q6N6C1 Ribonuclease 3 0.607647075214 0.5 -0.107647075214 +UniRef50_Q8CR64 1.55226086769 0.5 -1.05226086769 +UniRef50_D5BRY1 Trimethylamine methyltransferase MttB like protein 1.40504620742 0.5 -0.905046207419 +UniRef50_B9KX93 ParB like nuclease 0.0851780113534 0.5 0.414821988646 +UniRef50_B6J667 Arginine tRNA ligase 0.200219099985 0.5 0.299780900015 +UniRef50_A0RJK0 Malate dehydrogenase 1.82770591189 0.5 -1.32770591189 +UniRef50_P9WHH0 Thioredoxin reductase 0.323434026121 0.5 0.176565973879 +UniRef50_G8S3A0 Zonadhesin 2.09973230723 0.5 -1.59973230723 +UniRef50_UPI0003B45B4C porphyrin biosynthesis protein HemD 0.176142311936 0.5 0.323857688064 +UniRef50_UPI0002D482D7 hypothetical protein 0.0736359761933 0.5 0.426364023807 +UniRef50_F4MZ90 0.453040115401 0.5 0.046959884599 +UniRef50_Q3IWQ9 0.4596499828 0.5 0.0403500172001 +UniRef50_B2TK25 Ribosomal protein alanine acetyltransferase 0.118659372768 0.5 0.381340627231 +UniRef50_UPI0002F7E60E hypothetical protein 0.509831843085 0.5 -0.00983184308452 +UniRef50_P37498 0.0220190689146 0.5 0.477980931085 +UniRef50_P37497 0.25997643102 0.5 0.24002356898 +UniRef50_M8Y264 Inner membrane transporter ygjI 0.303066872549 0.5 0.196933127451 +UniRef50_A3M617 0.0597845551466 0.5 0.440215444854 +UniRef50_Q3IXS5 0.448799900262 0.5 0.0512000997377 +UniRef50_Q98DN4 Non canonical purine NTP pyrophosphatase 1.71000173719 0.5 -1.21000173719 +UniRef50_Q8RFX8 tRNA N6 adenosine threonylcarbamoyltransferase 1.72642378943 0.5 -1.22642378943 +UniRef50_UPI0003642424 hypothetical protein 2.50196992607 0.500000000001 -2.00196992607 +UniRef50_P26208 Beta glucosidase A 0.187851662736 0.5 0.312148337264 +UniRef50_N0BCG1 Thioesterase superfamily protein 0.0126965767821 0.5 0.487303423218 +UniRef50_UPI0003B6024A amidohydrolase 0.291776682028 0.5 0.208223317972 +UniRef50_I0C5D3 2.5167042337 0.5 -2.0167042337 +UniRef50_P32444 MreB like protein 0.0206537037728 0.5 0.479346296227 +UniRef50_UPI0003B44D54 hypothetical protein, partial 0.10403617411 0.5 0.39596382589 +UniRef50_UPI00047E3099 antitermination protein NusG 0.0222445837145 0.5 0.477755416285 +UniRef50_O54479 DNA topoisomerase 4 subunit B 0.262419478748 0.5 0.237580521252 +UniRef50_A0A033LNC5 Plasmid recombination enzyme type 3 1.77507019536 0.5 -1.27507019536 +UniRef50_F9YWG0 0.102214732757 0.5 0.397785267243 +UniRef50_Q836B6 Membrane protein 0.00516857423704 0.5 0.494831425763 +UniRef50_F6E617 1.09768890896 0.5 -0.597688908956 +UniRef50_Q9JXS4 Membrane protein insertase YidC 0.0185933460355 0.5 0.481406653964 +UniRef50_S0ZBX9 FhuE receptor 1.07979069842 0.5 -0.579790698422 +UniRef50_V8FSB8 Chitinase 0.0384530874966 0.499999999999 0.461546912504 +UniRef50_F6BYP3 Soluble epoxide hydrolase 0.556525600274 0.5 -0.0565256002744 +UniRef50_N6YQC2 NAD specific glutamate dehydrogenase 0.620198238291 0.5 -0.120198238291 +UniRef50_M5EIH7 0.637292484461 0.5 -0.137292484461 +UniRef50_Q9F1K0 DNA polymerase III subunit alpha 2.51546705263 0.5 -2.01546705263 +UniRef50_Q3Z7J2 DNA methylase 0.230874201256 0.5 0.269125798744 +UniRef50_UPI000463CA0D hypothetical protein 3.54582382942 0.500000000001 -3.04582382942 +UniRef50_A6LXM6 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.0266566358228 0.499999999999 0.473343364178 +UniRef50_E6KS29 0.00690019271225 0.5 0.493099807288 +UniRef50_D6UC71 10.263623476 0.500000000002 -9.76362347597 +UniRef50_B8JAU2 Peptide chain release factor 1 0.0306086940133 0.5 0.469391305987 +UniRef50_UPI0003B32316 flagellar P ring protein FlgI 0.246903354916 0.5 0.253096645084 +UniRef50_P76594 1.23282274184 0.500000000001 -0.732822741836 +UniRef50_B7GV54 Probable allantoicase 0.0166219984011 0.5 0.483378001599 +UniRef50_K8E4H2 Transcription termination factor NusA 0.221466559437 0.5 0.278533440563 +UniRef50_Q8X958 0.920729624817 0.5 -0.420729624817 +UniRef50_M4D1J6 0.0461806414176 0.5 0.453819358582 +UniRef50_W1W4W6 Fibrinogen binding protein 0.755777518253 0.5 -0.255777518253 +UniRef50_UPI0003B49B6A aminoglycoside resistance protein 0.331489939261 0.5 0.168510060739 +UniRef50_M4IFW7 1.55535162245 0.500000000001 -1.05535162245 +UniRef50_W1IYA0 0.169094364327 0.5 0.330905635673 +UniRef50_A0A011NJ23 0.134535345963 0.5 0.365464654037 +UniRef50_D7GGE9 Glyoxalase bleomycin resistance protein dioxygenase 0.0112340477703 0.5 0.48876595223 +UniRef50_P94558 Non canonical purine NTP pyrophosphatase 2.01372829283 0.5 -1.51372829283 +UniRef50_C1DMW2 Apolipoprotein N acyltransferase 0.767773392232 0.5 -0.267773392232 +UniRef50_Q7U836 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta 0.321129156906 0.5 0.178870843094 +UniRef50_UPI0002893D0F integrase catalytic subunit 11.8540471823 0.499999999999 -11.3540471823 +UniRef50_Q47HX8 BRO, N terminal 1.75023233255 0.5 -1.25023233255 +UniRef50_Q9I122 0.539085372073 0.5 -0.0390853720728 +UniRef50_UPI000467C382 hypothetical protein, partial 0.297192217253 0.5 0.202807782747 +UniRef50_Q1QM99 Bifunctional enzyme IspD IspF 0.348877234199 0.5 0.151122765801 +UniRef50_H8GX99 Minor tail protein gp26 related protein 0.00257594406071 0.5 0.497424055939 +UniRef50_UPI0003150799 hypothetical protein 0.00337305920954 0.499999999999 0.496626940792 +UniRef50_A5UK29 Predicted DNA modification methylase 2.89264546773 0.500000000002 -2.39264546773 +UniRef50_U2FHG3 0.366839744455 0.5 0.133160255545 +UniRef50_A0A011QRD8 0.0313824174918 0.5 0.468617582508 +UniRef50_UPI00036BFACB hypothetical protein 5.62536001189 0.500000000001 -5.12536001189 +UniRef50_X7YZZ8 Secretory lipase family protein 0.574027192635 0.5 -0.0740271926349 +UniRef50_Q54800 UTP glucose 1 phosphate uridylyltransferase 1.32828599015 0.5 -0.82828599015 +UniRef50_R9SMD3 2.45451215023 0.500000000001 -1.95451215023 +UniRef50_UPI000470CD83 cell division protein FtsZ 0.400721990255 0.5 0.0992780097447 +UniRef50_Q28RD6 Ribosomal RNA small subunit methyltransferase A 0.540152446098 0.5 -0.0401524460979 +UniRef50_UPI0004750A2D gas vesicle protein 0.234120449869 0.5 0.265879550131 +UniRef50_UPI0002BA7CDC hypothetical protein, partial 1.97654394658 0.5 -1.47654394658 +UniRef50_UPI00047D5FC6 hypothetical protein 0.740500216961 0.5 -0.240500216961 +UniRef50_UPI0003AA219E hypothetical protein 0.34063373593 0.5 0.15936626407 +UniRef50_P22939 Farnesyl diphosphate synthase 0.54846811775 0.5 -0.04846811775 +UniRef50_D3QDI5 4.88934262818 0.5 -4.38934262818 +UniRef50_Q2RSB2 NAD transhydrogenase subunit alpha part 1 0.0098328580378 0.499999999999 0.490167141963 +UniRef50_R6EN42 Selenium dependent molybdenum hydroxylase 1 0.197514915125 0.5 0.302485084875 +UniRef50_D4HEA1 Hydrolase, NUDIX family 0.0325244630171 0.5 0.467475536983 +UniRef50_UPI00025560C0 dihydropyrimidine dehydrogenase subunit A 0.190011071316 0.5 0.309988928684 +UniRef50_Z6NTK4 0.0131167058941 0.5 0.486883294106 +UniRef50_P31672 NifS IcsS protein homolog 0.917445175664 0.5 -0.417445175664 +UniRef50_Q8CQ61 Mercuric reductase like protein 2.93918909619 0.499999999997 -2.43918909619 +UniRef50_Q1QE74 1 deoxy D xylulose 5 phosphate synthase 0.118849579362 0.5 0.381150420638 +UniRef50_UPI0002193BBE ribonucleotide diphosphate reductase subunit alpha, partial 0.0026584105707 0.5 0.497341589429 +UniRef50_C7MAW1 Ferritin like protein 0.0326279336667 0.5 0.467372066333 +UniRef50_Q6GCR4 FMN dependent NADH azoreductase 1.74589988488 0.5 -1.24589988488 +UniRef50_UPI0002000E25 3 hydroxybutyrate dehydrogenase 0.998925219483 0.5 -0.498925219483 +UniRef50_Q5HRI8 Hydrolase, haloacid dehalogenase like family 1.52780154325 0.500000000001 -1.02780154325 +UniRef50_UPI0003099509 hypothetical protein 0.689728456683 0.5 -0.189728456683 +UniRef50_U5MWZ3 HTH type transcriptional regulator GlvR 0.603433535433 0.5 -0.103433535433 +UniRef50_UPI00037E3C64 hypothetical protein 0.15455155062 0.5 0.34544844938 +UniRef50_UPI0003634D70 glutathione synthetase 0.674267518453 0.5 -0.174267518453 +UniRef50_A0A038FYY7 5.11618553707 0.499999999998 -4.61618553707 +UniRef50_C9SB93 Predicted protein 2.21298803171 0.5 -1.71298803171 +UniRef50_UPI000050F857 peptide ABC transporter ATPase 1.20959661508 0.5 -0.709596615081 +UniRef50_UPI000328D76F PREDICTED 0.169522644035 0.5 0.330477355965 +UniRef50_S6BC90 2.07740532073 0.5 -1.57740532073 +UniRef50_L6YLT0 Pheromone autoinducer 2 transporter 2.26387199287 0.5 -1.76387199287 +UniRef50_UPI0004077040 hypothetical protein 0.246453948048 0.5 0.253546051952 +UniRef50_A0A028CJ48 Type IV fimbrial assembly protein PilC 4.57815776202 0.499999999995 -4.07815776202 +UniRef50_Q6GJR0 UPF0355 protein MRSA252 2.53560581244 0.5 -2.03560581244 +UniRef50_G8RDK6 18.2354247106 0.50000000002 -17.7354247106 +UniRef50_Q14P38 Hypothetical glucose inhibited protein n terminal and c terminal truncated 0.305102258661 0.5 0.194897741339 +UniRef50_Q8CPD8 Cardiolipin synthase 1 1.37894253504 0.5 -0.878942535041 +UniRef50_F0PBS4 PTS system, IIC component 0.209566723593 0.5 0.290433276407 +UniRef50_D4HDK7 0.0116214378123 0.5 0.488378562188 +UniRef50_Q8CN46 Para nitrobenzyl esterase chain A 1.63485721209 0.500000000001 -1.13485721209 +UniRef50_A6LQ09 0.271427593441 0.5 0.228572406559 +UniRef50_Q50028 Amidophosphoribosyltransferase 0.0430787039867 0.5 0.456921296013 +UniRef50_R4QJK7 MFS transporter 0.0153984607114 0.5 0.484601539288 +UniRef50_Q87Q74 Imidazolonepropionase 0.00671936055396 0.5 0.493280639446 +UniRef50_P0C7I7 Succinyl CoA 0.897502688477 0.5 -0.397502688477 +UniRef50_X1Y946 Translation factor GUF1 homolog, mitochondrial 1.23636362997 0.5 -0.73636362997 +UniRef50_Q985R7 Mlr7559 protein 0.355793562019 0.5 0.144206437981 +UniRef50_P47691 UTP glucose 1 phosphate uridylyltransferase 1.35446861708 0.500000000001 -0.854468617079 +UniRef50_D8K235 DNA gyrase subunit A 0.251537352673 0.5 0.248462647327 +UniRef50_Q5ZY07 Tyrosine tRNA ligase 0.145861740955 0.5 0.354138259045 +UniRef50_Q8CP00 Truncated transposase 0.0130840467544 0.5 0.486915953245 +UniRef50_UPI0003B60438 ABC transporter 1.09677691707 0.5 -0.596776917065 +UniRef50_UPI00047C8194 PTS fructose transporter subunit IIC, partial 0.189186652327 0.5 0.310813347673 +UniRef50_UPI000370B249 hypothetical protein 1.6878801027 0.5 -1.1878801027 +UniRef50_P47203 Cell division protein FtsA 0.424758300451 0.5 0.0752416995487 +UniRef50_E2RPM1 0.058297765479 0.5 0.441702234521 +UniRef50_I0ETC3 0.0285191196608 0.5 0.471480880339 +UniRef50_S3ASG0 0.502037292971 0.5 -0.00203729297101 +UniRef50_U7QZ50 1.05089806554 0.5 -0.550898065541 +UniRef50_A0NWG0 0.183988711022 0.5 0.316011288978 +UniRef50_D6SE59 Transcriptional regulator, GntR family 2.85633710145 0.500000000002 -2.35633710145 +UniRef50_F4FR09 Succinate semialdehyde dehydrogenase (+)) 2.27334114889 0.5 -1.77334114889 +UniRef50_Q8XNK5 Tagatose 6 phosphate kinase 1.95620597406 0.5 -1.45620597406 +UniRef50_UPI000407C5D8 acyl CoA dehydrogenase 0.209534527174 0.5 0.290465472826 +UniRef50_UPI0003690E4C ATPase, partial 7.1927321303 0.499999999993 -6.69273213029 +UniRef50_B9AFH1 2.85995185266 0.5 -2.35995185266 +UniRef50_F6D286 Glycosyl transferase family 2 1.62983075357 0.499999999999 -1.12983075357 +UniRef50_A6LXN5 Methyl accepting chemotaxis sensory transducer 0.0836796973359 0.500000000001 0.416320302663 +UniRef50_P77316 0.885011798948 0.5 -0.385011798948 +UniRef50_P59626 Probable dihydroorotate dehydrogenase A 0.425347819979 0.5 0.0746521800209 +UniRef50_A6M2U8 Methyl accepting chemotaxis sensory transducer 0.0685919358856 0.5 0.431408064114 +UniRef50_P77318 1.96324380723 0.499999999997 -1.46324380723 +UniRef50_G2RMW8 Acetylxylan esterase enzyme 0.132278106698 0.499999999999 0.367721893303 +UniRef50_P60480 Isoprenyl transferase 1 0.018179296668 0.5 0.481820703332 +UniRef50_UPI0003808BDF hypothetical protein 0.00361111526404 0.5 0.496388884736 +UniRef50_R4XZE6 Integral membrane protein 2.08123603602 0.499999999999 -1.58123603602 +UniRef50_D7PDW2 RmlC 1.98867583498 0.5 -1.48867583498 +UniRef50_UPI00036788A9 hypothetical protein 0.970813088424 0.5 -0.470813088424 +UniRef50_Q2KZM3 Integration host factor subunit alpha 0.837671142701 0.5 -0.337671142701 +UniRef50_D1GN41 4.97001320285 0.499999999993 -4.47001320284 +UniRef50_K1ZZ76 1.68122074087 0.5 -1.18122074087 +UniRef50_UPI0003B64AAF hydrogenase nickel incorporation protein HypA 6.20749877362 0.499999999999 -5.70749877362 +UniRef50_UPI0004693869 hypothetical protein 0.501223742402 0.5 -0.00122374240191 +UniRef50_D9SVX2 Ion transport 2 domain protein 0.0798227001844 0.499999999999 0.420177299816 +UniRef50_M5DTK5 FMN oxidoreductase 0.00618437160862 0.5 0.493815628391 +UniRef50_D3E3M3 RNA binding protein 0.178341052603 0.5 0.321658947397 +UniRef50_A9KCU3 Aspartate aminotransferase 0.00832291371842 0.5 0.491677086282 +UniRef50_Q02JU1 Protein phosphatase CheZ 0.455809360107 0.5 0.0441906398931 +UniRef50_Q8CNS6 Secretory antigen SsaA like protein 1.06369099898 0.5 -0.563690998977 +UniRef50_UPI000402B9E3 methionyl tRNA formyltransferase 2.08054348501 0.5 -1.58054348501 +UniRef50_P80046 Isocitrate dehydrogenase [NADP] 1.55588715188 0.5 -1.05588715188 +UniRef50_Q9HHK0 Vng6359h 0.119231956607 0.5 0.380768043393 +UniRef50_H6U1K2 0.972379217032 0.5 -0.472379217032 +UniRef50_UPI0004676D4F hypothetical protein 0.00835224076797 0.5 0.491647759232 +UniRef50_A6LX18 0.252909807057 0.5 0.247090192943 +UniRef50_Q8R9W1 Acyl carrier protein 0.0814041067482 0.5 0.418595893252 +UniRef50_Q322I7 IS911 ORF2 0.254037281743 0.5 0.245962718257 +UniRef50_W7WXB1 0.103158907106 0.5 0.396841092894 +UniRef50_G8WN72 Tetratricopeptide TPR_4 0.352321256471 0.5 0.147678743529 +UniRef50_UPI00046660B8 cobinamide adenolsyltransferase 0.0386668399438 0.5 0.461333160056 +UniRef50_B5EZV0 Probable protein kinase UbiB 1.07237863267 0.5 -0.572378632669 +UniRef50_Q9RZR2 0.00765289145413 0.499999999999 0.492347108546 +UniRef50_UPI00047ADAC8 hypothetical protein 0.0178304300352 0.5 0.482169569964 +UniRef50_P0ABR8 Putative dioxygenase subunit alpha YeaW 0.212325086493 0.5 0.287674913507 +UniRef50_G4LKP1 AraC family transcriptional regulator 3.01256127702 0.5 -2.51256127702 +UniRef50_Q9RZR8 0.00357783379379 0.5 0.496422166207 +UniRef50_K0CFL0 0.376951753332 0.5 0.123048246668 +UniRef50_D4HCQ6 0.0598136953556 0.5 0.440186304645 +UniRef50_A6M372 SH3, type 3 domain protein 0.0456611597302 0.499999999999 0.454338840271 +UniRef50_I1EBV8 0.00395898131853 0.5 0.496041018681 +UniRef50_P0CE45 Glucuronide carrier protein 0.831100840701 0.5 -0.331100840701 +UniRef50_V7EQN7 1.78747941063 0.5 -1.28747941063 +UniRef50_A6W322 Transposase IS4 family protein 0.527126413672 0.5 -0.0271264136719 +UniRef50_I6TWA3 Integral membrane protein 4.52752126343 0.500000000001 -4.02752126343 +UniRef50_A0A022P2T6 1.59100459875 0.500000000002 -1.09100459875 +UniRef50_P75728 2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase 0.563773679962 0.5 -0.0637736799619 +UniRef50_UPI0002FBC2B3 hypothetical protein 0.347900693387 0.5 0.152099306613 +UniRef50_U5MLY8 Periplasmic metal binding protein 0.0840415808001 0.5 0.4159584192 +UniRef50_A4EN59 1.38828731226 0.5 -0.888287312257 +UniRef50_O30853 Pyruvate kinase I 0.304901085835 0.5 0.195098914165 +UniRef50_M9RKI9 Multidrug resistance protein 1.41074890936 0.5 -0.910748909364 +UniRef50_UPI0003A400F2 diaminohydroxyphosphoribosylaminopyrimidine deaminase 0.0858087729998 0.5 0.414191227 +UniRef50_D9PYH9 tRNA pseudouridine synthase Pus10 7.26502134714 0.500000000005 -6.76502134714 +UniRef50_UPI000444934A hypothetical protein STEHIDRAFT_148098 0.392720667501 0.5 0.107279332499 +UniRef50_D1DJ22 0.106976155726 0.5 0.393023844274 +UniRef50_F0K4V5 Proline glycine betaine ABC type transport system, ATPase component 0.708109984802 0.5 -0.208109984802 +UniRef50_UPI00016C406D methylcitrate synthase 0.231816754898 0.5 0.268183245102 +UniRef50_UPI0003B5D4F6 hypothetical protein 0.318753762043 0.5 0.181246237957 +UniRef50_UPI00036DB78E hypothetical protein 2.0158747664 0.499999999999 -1.5158747664 +UniRef50_Q2NAA1 0.319214773711 0.5 0.180785226289 +UniRef50_UPI00035ED814 hypothetical protein, partial 0.0433432049306 0.499999999999 0.45665679507 +UniRef50_UPI000373BE23 glyceraldehyde 3 phosphate dehydrogenase, partial 1.73331530715 0.499999999999 -1.23331530715 +UniRef50_M9VD52 Efflux ABC transporter permease 0.00374181194118 0.5 0.496258188059 +UniRef50_UPI00037FDD41 hypothetical protein 0.298318235899 0.5 0.201681764101 +UniRef50_I0GDF4 0.269702660429 0.5 0.230297339571 +UniRef50_S0AE89 Allophanate hydrolase AtzF 0.0231296735235 0.5 0.476870326476 +UniRef50_D1NC80 1.3172486871 0.5 -0.817248687104 +UniRef50_UPI000442239B PREDICTED 0.0124373045341 0.5 0.487562695466 +UniRef50_UPI0003FC0AD6 hypothetical protein 1.95737498248 0.500000000001 -1.45737498248 +UniRef50_A7FNV8 Pimeloyl [acyl carrier protein] methyl ester esterase 1.24992880282 0.5 -0.749928802819 +UniRef50_A3JZS3 0.315058230978 0.5 0.184941769022 +UniRef50_E5CPU2 2.27375125366 0.500000000002 -1.77375125366 +UniRef50_Q6GER3 Arginase 4.40996731714 0.500000000009 -3.90996731715 +UniRef50_UPI000375E276 hypothetical protein 0.0199161850563 0.5 0.480083814944 +UniRef50_D4HA59 Precorrin 6A synthase 0.0607307921538 0.5 0.439269207846 +UniRef50_Q8CMZ3 2 dehydropantoate 2 reductase 1.72568486203 0.5 -1.22568486203 +UniRef50_UPI000361337E 30S ribosomal protein S5 0.333791160752 0.5 0.166208839248 +UniRef50_Q7NFC3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.412882313366 0.5 0.0871176866337 +UniRef50_O34997 1.70247750597 0.5 -1.20247750597 +UniRef50_G9WGT8 dTDP 4 dehydrorhamnose reductase 1.55091999145 0.5 -1.05091999145 +UniRef50_A7FAW9 0.0191695412551 0.5 0.480830458745 +UniRef50_Q2FUW4 Accessory Sec system protein Asp2 1.40123137632 0.500000000001 -0.901231376321 +UniRef50_A7FAW6 0.00541637805813 0.499999999999 0.494583621943 +UniRef50_A7FAW0 0.0213552115583 0.5 0.478644788442 +UniRef50_A7FAW2 0.0214025935218 0.5 0.478597406478 +UniRef50_R9SHN0 ABC transporter ATP binding protein 4.12421410318 0.500000000001 -3.62421410318 +UniRef50_UPI00046352F2 hypothetical protein 0.393297867158 0.5 0.106702132842 +UniRef50_U3SSP8 3.4486537514 0.5 -2.9486537514 +UniRef50_UPI000366C569 hypothetical protein 2.35004986599 0.499999999999 -1.85004986599 +UniRef50_UPI0003C16BB8 PREDICTED 0.29491923354 0.5 0.20508076646 +UniRef50_UPI000376CC75 hypothetical protein 0.898633694584 0.5 -0.398633694584 +UniRef50_A6UV64 30S ribosomal protein S19 2.22629105573 0.500000000001 -1.72629105573 +UniRef50_Q9K0Q4 Beta hexosaminidase 0.000286209047954 0.5 0.499713790952 +UniRef50_P37669 Inner membrane protein YiaH 2.76411983583 0.500000000001 -2.26411983583 +UniRef50_U3SSP7 0.629204813968 0.5 -0.129204813968 +UniRef50_Q08QR2 ABC D methionine uptake transporter, substrate binding protein 0.900662520182 0.5 -0.400662520182 +UniRef50_X7F6B4 Membrane protein 0.240506363839 0.499999999999 0.259493636161 +UniRef50_Q9RS79 Dipeptidyl peptidase IV related protein 0.00277688063339 0.5 0.497223119366 +UniRef50_UPI000369B201 NADH 0.120669584821 0.5 0.379330415179 +UniRef50_UPI00036BA5B6 hypothetical protein 0.183108448129 0.5 0.316891551871 +UniRef50_A4A467 Type IV pilus biogenesis stability protein PilW 0.269184195391 0.5 0.230815804609 +UniRef50_D6SDK6 0.688877673798 0.5 -0.188877673798 +UniRef50_UPI00045E77FA MarR family transcriptional regulator 0.0766682744879 0.5 0.423331725512 +UniRef50_R7PVC1 DNA helicase UvrD REP helicase family 1.1434575964 0.5 -0.6434575964 +UniRef50_P57527 4.54416381515 0.499999999998 -4.04416381515 +UniRef50_P76219 TVP38 TMEM64 family membrane protein YdjX 3.27082421734 0.500000000001 -2.77082421734 +UniRef50_G8V0Z4 0.85022619637 0.5 -0.35022619637 +UniRef50_UPI000383F1E5 PREDICTED 0.493428413849 0.5 0.00657158615128 +UniRef50_UPI000328DEDF PREDICTED 0.282648222916 0.5 0.217351777084 +UniRef50_B3EH06 Polyribonucleotide nucleotidyltransferase 0.610748913949 0.5 -0.110748913949 +UniRef50_K7RKE8 Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR 0.0149240523902 0.5 0.48507594761 +UniRef50_Q57766 Formylmethanofuran tetrahydromethanopterin formyltransferase 6.4193888684 0.499999999994 -5.91938886839 +UniRef50_A6M1R7 Methyl accepting chemotaxis sensory transducer 0.240911050907 0.5 0.259088949093 +UniRef50_Q5HPB5 Glucose specific phosphotransferase enzyme IIA component 31.1017492963 0.499999999982 -30.6017492963 +UniRef50_A3SND6 ArsC family protein 0.725627459578 0.5 -0.225627459578 +UniRef50_A3PMB5 Large conductance mechanosensitive channel 2.68073815346 0.500000000001 -2.18073815346 +UniRef50_B6AX96 1.70616784113 0.5 -1.20616784113 +UniRef50_A1KU06 Sulfite reductase [NADPH] flavoprotein alpha component 0.0189317078158 0.5 0.481068292184 +UniRef50_M7E309 MDR permease 1.53173948578 0.5 -1.03173948578 +UniRef50_Q6F6V8 0.0283992783079 0.5 0.471600721692 +UniRef50_UPI000344EB03 hypothetical protein 0.141502765373 0.5 0.358497234627 +UniRef50_M4S586 Beta lactamase domain containing protein 0.148901163249 0.5 0.351098836751 +UniRef50_H6LL43 1.96933647248 0.500000000002 -1.46933647248 +UniRef50_F5XF11 Two component histidine kinase SenX3 0.0195224972697 0.5 0.48047750273 +UniRef50_Q8CU74 1.29603448345 0.5 -0.796034483451 +UniRef50_F5WYS0 ICESt1 ORFD ATP GTP binding protein 3.73255525967 0.499999999999 -3.23255525967 +UniRef50_UPI000360AFBD hypothetical protein 1.85306230038 0.499999999999 -1.35306230038 +UniRef50_K7RZE6 Transcription termination antitermination protein NusG 0.0179875935518 0.5 0.482012406448 +UniRef50_H8I846 Formate nitrite transporter 10.4467329526 0.499999999999 -9.94673295257 +UniRef50_B9KPG8 3.24279509128 0.500000000001 -2.74279509128 +UniRef50_J9D1K7 0.064297468392 0.5 0.435702531608 +UniRef50_A5VTC2 D isomer specific 2 hydroxyacid dehydrogenases family protein 3.87995765403 0.500000000002 -3.37995765403 +UniRef50_P52046 3 hydroxybutyryl CoA dehydratase 0.067342753188 0.5 0.432657246812 +UniRef50_Q0VRV2 Acetyl CoA C acetyltransferase 0.0227758556527 0.499999999999 0.477224144348 +UniRef50_Q9RR73 0.00995520702121 0.5 0.490044792979 +UniRef50_A5VNQ2 4.99743076084 0.500000000002 -4.49743076084 +UniRef50_A9M492 Adhesin MafA 3 0.00545343800288 0.499999999999 0.494546561998 +UniRef50_A6DYV3 Flagellar scaffolding protein FlgD 0.362192741845 0.5 0.137807258155 +UniRef50_W4U0B3 0.575166815949 0.5 -0.0751668159492 +UniRef50_Z5JZC3 0.0895382344098 0.5 0.41046176559 +UniRef50_K7RUT9 0.0133089171241 0.5 0.486691082876 +UniRef50_UPI00046E091D PilS cassette 0.192497972656 0.499999999999 0.307502027345 +UniRef50_M9R624 Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme 0.78032590997 0.5 -0.28032590997 +UniRef50_O07020 Lactate utilization protein A 2.63838525219 0.500000000001 -2.13838525219 +UniRef50_UPI0003759AA3 purine nucleoside phosphorylase 0.122452620962 0.5 0.377547379038 +UniRef50_T1Y5U5 ABC transporter permease protein 2.89002190876 0.499999999997 -2.39002190876 +UniRef50_C5BUP0 Urease subunit beta 1.15795259738 0.5 -0.657952597381 +UniRef50_D4W6Z6 Membrane family protein 0.103761060385 0.5 0.396238939615 +UniRef50_UPI0003C179AB PREDICTED 0.449467893357 0.5 0.050532106643 +UniRef50_Q5HGK2 3 oxoacyl [acyl carrier protein] reductase FabG 1.14843995226 0.5 -0.648439952261 +UniRef50_U6KAI1 0.378620696089 0.5 0.121379303911 +UniRef50_UPI0003B35B8E cupin 1.6515076001 0.5 -1.1515076001 +UniRef50_Q9EUS8 Polyphosphate kinase 0.0112406420174 0.5 0.488759357982 +UniRef50_G8VFL4 Cystathionine beta synthase 0.0162286233789 0.5 0.483771376621 +UniRef50_Q99YM5 Guanylate kinase 1.23163288278 0.5 -0.731632882784 +UniRef50_Q9CJJ1 DNA polymerase III subunit beta 0.517774710584 0.5 -0.0177747105842 +UniRef50_D8GNU7 Cell shape determining protein MreC 0.161436474087 0.5 0.338563525912 +UniRef50_UPI0001A44424 betaine aldehyde dehydrogenase, partial 0.111701249568 0.5 0.388298750432 +UniRef50_UPI0003F82984 damage inducible protein CinA 1.6064545434 0.499999999999 -1.1064545434 +UniRef50_H5Y5I7 ABC type multidrug transport system, ATPase and permease component 0.163802115523 0.5 0.336197884477 +UniRef50_B4TGE4 Succinylglutamate desuccinylase 1.74615755299 0.499999999998 -1.24615755299 +UniRef50_Q65RE8 7 cyano 7 deazaguanine synthase 0.00619037622985 0.5 0.49380962377 +UniRef50_Q3JJR8 0.025392284289 0.5 0.474607715711 +UniRef50_A5UMJ4 Type II restriction endonuclease 1.00104598017 0.5 -0.501045980165 +UniRef50_Q3JU21 3.66237855836 0.500000000003 -3.16237855836 +UniRef50_UPI00047AABBE fucose isomerase 0.109796602114 0.5 0.390203397886 +UniRef50_B7UNN6 ATP dependent 6 phosphofructokinase isozyme 1 2.05996415891 0.499999999999 -1.55996415891 +UniRef50_P46392 Acetyl propionyl coenzyme A carboxylase alpha chain 0.00678653321607 0.5 0.493213466784 +UniRef50_T0YVF7 Pyridine nucleotide transhydrogenase subunit alpha 0.273343134537 0.5 0.226656865463 +UniRef50_UPI00045E62A3 hypothetical protein 0.0484716290301 0.5 0.45152837097 +UniRef50_I2RL58 PF09994 domain protein 0.08050264418 0.5 0.41949735582 +UniRef50_UPI000472C37E PTS fructose transporter subunit IIC, partial 0.0196059568313 0.499999999999 0.480394043169 +UniRef50_C6SPS1 1.06171741399 0.500000000001 -0.561717413992 +UniRef50_UPI00037FA03F hypothetical protein 1.50468671494 0.5 -1.00468671494 +UniRef50_V4L8J8 2.39354507652 0.499999999999 -1.89354507652 +UniRef50_A1SWY4 Leucyl phenylalanyl tRNA protein transferase 0.286546562676 0.5 0.213453437324 +UniRef50_I4Y4D8 Thioesterase family protein 0.720624160207 0.5 -0.220624160207 +UniRef50_UPI000464BB09 glycine betaine ABC transporter ATP binding protein 5.73054541133 0.500000000001 -5.23054541133 +UniRef50_T5X6I4 Colicin I receptor 0.818660555745 0.5 -0.318660555745 +UniRef50_K9ZX93 Threonine tRNA ligase 0.0016346055921 0.5 0.498365394408 +UniRef50_D4Z4T4 Aminomethyltransferase 0.717175333967 0.5 -0.217175333967 +UniRef50_T0VCJ2 0.00173932101095 0.5 0.498260678989 +UniRef50_D7GTN9 Predicted phosphatase homologous to the C terminal domain of histone macroH2A1 0.0444040949675 0.5 0.455595905032 +UniRef50_P11502 Lactose specific phosphotransferase enzyme IIA component 0.0144305180539 0.5 0.485569481947 +UniRef50_UPI0004209A5E hypothetical protein 0.0408841586564 0.5 0.459115841343 +UniRef50_UPI0001FFECE5 modular polyketide synthase, partial 0.0890383188172 0.5 0.410961681183 +UniRef50_UPI00017449FD LuxR family transcriptional regulator 0.363817100342 0.5 0.136182899658 +UniRef50_UPI000378F680 hypothetical protein 0.421224127245 0.5 0.0787758727553 +UniRef50_Q8XA81 1.96198163863 0.499999999998 -1.46198163862 +UniRef50_A6LQJ4 Integral membrane sensor signal transduction histidine kinase 0.139421635614 0.5 0.360578364386 +UniRef50_Q6A662 Chaperone protein DnaJ 2 0.0519714834316 0.5 0.448028516569 +UniRef50_Q88RZ3 Putative ribose uptake protein RbsU 1.57598751655 0.500000000001 -1.07598751655 +UniRef50_A0A023RQK0 0.0205885033043 0.5 0.479411496696 +UniRef50_A6V0G0 0.745704514774 0.5 -0.245704514774 +UniRef50_Q9KD29 Manganese transport system membrane protein MntC 1.248046387 0.5 -0.748046387003 +UniRef50_Q2RX27 Dihydroorotate dehydrogenase 7.88212044226 0.499999999987 -7.38212044225 +UniRef50_M7D5Z8 Glucosyltransferase SI 5.59703629319 0.499999999998 -5.09703629319 +UniRef50_H6VUW6 Universal stress protein 0.0260652273969 0.5 0.473934772603 +UniRef50_O07641 Nitrogenase iron protein 0.803084515496 0.5 -0.303084515496 +UniRef50_X1BTL4 Marine sediment metagenome DNA, contig 2.56375999482 0.499999999996 -2.06375999481 +UniRef50_UPI0003B672DD serine threonine protein phosphatase 0.182283327783 0.5 0.317716672217 +UniRef50_UPI0004764F09 hypothetical protein 0.980642818479 0.5 -0.480642818479 +UniRef50_S9SME8 1.14045656045 0.5 -0.640456560453 +UniRef50_B7N3G5 Putative aminoacrylate hydrolase RutD 0.70552269643 0.5 -0.20552269643 +UniRef50_C1E2L9 Serine pyruvate aminotransferase and or alanine glyoxylate transaminase 0.446678220298 0.5 0.0533217797021 +UniRef50_UPI00034AE262 hypothetical protein 2.25865036445 0.500000000003 -1.75865036445 +UniRef50_R0WMM8 Dehydrogenase E1 component family protein 0.0128109574616 0.5 0.487189042539 +UniRef50_A0A025BQD1 Peptide ABC transporter permease 0.402270034541 0.5 0.0977299654592 +UniRef50_Q89AJ6 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.180018746894 0.5 0.319981253106 +UniRef50_UPI00037341E7 hypothetical protein 0.205860568356 0.5 0.294139431644 +UniRef50_UPI0003699727 hypothetical protein 0.141927493353 0.5 0.358072506647 +UniRef50_S2VYA1 1.27824123123 0.5 -0.778241231233 +UniRef50_Q98GP9 Phosphoadenosine phosphosulfate reductase 3.04330661223 0.5 -2.54330661223 +UniRef50_UPI0003737277 hypothetical protein 0.722028523537 0.5 -0.222028523537 +UniRef50_UPI00016C406B hypothetical protein 0.00307603574479 0.5 0.496923964255 +UniRef50_K9ZZM6 0.0352137152084 0.500000000001 0.464786284791 +UniRef50_Q8ZNB8 UPF0226 protein YfcJ 1.85949606187 0.500000000001 -1.35949606187 +UniRef50_UPI0003C17609 PREDICTED 0.39396663504 0.5 0.10603336496 +UniRef50_UPI000366A6AC molybdenum ABC transporter permease, partial 0.205452729719 0.5 0.294547270281 +UniRef50_UPI000361A0EC hypothetical protein 0.865199675058 0.5 -0.365199675058 +UniRef50_A1TJX6 Respiratory nitrate reductase alpha subunit apoprotein 1.74142823631 0.499999999999 -1.24142823631 +UniRef50_A6LQT2 Transcriptional antiterminator, BglG 0.342645868917 0.5 0.157354131083 +UniRef50_Q7W5I7 Acyl carrier protein 0.163893559611 0.5 0.336106440389 +UniRef50_P42592 Glucosidase YgjK 0.737921067726 0.5 -0.237921067726 +UniRef50_Q8DSD7 30S ribosomal protein S6 0.886482152869 0.5 -0.386482152869 +UniRef50_F5XFZ9 0.0115759684278 0.5 0.488424031572 +UniRef50_L7VWI6 0.0688363830402 0.5 0.43116361696 +UniRef50_Q3JWK6 0.90135559423 0.5 -0.40135559423 +UniRef50_Q2SVL7 Amino acid ABC transporter, permease protein 0.0491436185922 0.5 0.450856381408 +UniRef50_A8HTG7 Glycine rich protein 0.225013175308 0.5 0.274986824692 +UniRef50_V9WKD4 0.306846820429 0.5 0.193153179571 +UniRef50_UPI0002654825 PREDICTED 0.870999691217 0.5 -0.370999691217 +UniRef50_R9ZLH4 binding protein 0.371085316898 0.5 0.128914683102 +UniRef50_A7X4S8 Thiamine phosphate synthase 1.52709415149 0.499999999998 -1.02709415149 +UniRef50_S9TII9 0.245511676307 0.5 0.254488323693 +UniRef50_UPI00037C37FD hypothetical protein 0.171966439004 0.5 0.328033560996 +UniRef50_D2PYN9 0.0184927849795 0.5 0.48150721502 +UniRef50_A3PMH2 Chromosomal replication initiator, DnaA 0.41778722925 0.5 0.0822127707501 +UniRef50_Q9VC54 CG6695, isoform A 1.15129077805 0.499999999999 -0.651290778054 +UniRef50_Q9KXR1 Bifunctional protein PyrR 0.239335749888 0.5 0.260664250112 +UniRef50_R1HQL9 Putative thioesterase 0.000900949920135 0.5 0.49909905008 +UniRef50_UPI0003B6B26D heme ABC transporter ATP binding protein 0.411614457103 0.5 0.0883855428972 +UniRef50_U5VKS0 6 pyruvoyl tetrahydropterin synthase 0.885841007507 0.5 -0.385841007507 +UniRef50_G2PZY4 0.117577608376 0.5 0.382422391624 +UniRef50_UPI000380DC6B 50S ribosomal protein L6 0.29179595636 0.5 0.20820404364 +UniRef50_UPI00037713A6 hypothetical protein 0.144158916067 0.5 0.355841083933 +UniRef50_UPI00016C3B98 serine threonine protein kinase 0.384417292092 0.5 0.115582707908 +UniRef50_B9KTH1 Transcriptional regulator, TetR family 0.404471879726 0.5 0.0955281202735 +UniRef50_G2JGS2 ABC type dipeptide transport system, periplasmic component 0.0366462436837 0.5 0.463353756316 +UniRef50_P0A349 GTP sensing transcriptional pleiotropic repressor CodY 1.13309295313 0.5 -0.633092953129 +UniRef50_Q9CPL9 Probable uracil permease 0.167446014836 0.5 0.332553985164 +UniRef50_I0DAK7 UDP glucose GDP mannose dehydrogenase family protein 2.36260153292 0.5 -1.86260153292 +UniRef50_B3WA65 Probable potassium transport system protein kup 0.686354426667 0.5 -0.186354426667 +UniRef50_D2Q0P5 0.0982612725144 0.5 0.401738727486 +UniRef50_K2FFC0 0.117917237264 0.5 0.382082762736 +UniRef50_H0B2B9 1.77953998741 0.5 -1.27953998741 +UniRef50_Q117D2 Formamidopyrimidine DNA glycosylase 0.219037853547 0.5 0.280962146453 +UniRef50_UPI00039DBFBF MULTISPECIES 0.958535679077 0.5 -0.458535679077 +UniRef50_G2T8N1 2.53051680291 0.499999999999 -2.03051680291 +UniRef50_UPI0002557290 2,3 dihydroxybenzoate 2,3 dehydrogenase 0.329672038043 0.5 0.170327961957 +UniRef50_M9TV63 0.319560307808 0.5 0.180439692192 +UniRef50_A4EKM3 0.538493901556 0.5 -0.0384939015556 +UniRef50_Q3JMQ9 0.184939555967 0.5 0.315060444033 +UniRef50_U3T560 0.0195214274502 0.5 0.48047857255 +UniRef50_G6Y004 2.25703090078 0.499999999998 -1.75703090077 +UniRef50_A6LWZ4 Transcriptional regulator, XRE family 0.0238172326671 0.5 0.476182767333 +UniRef50_A8ALR8 Carnitine operon protein CaiE 0.396036985634 0.5 0.103963014366 +UniRef50_UPI0001FFE0D7 large conductance mechanosensitive channel protein 0.213828251442 0.5 0.286171748558 +UniRef50_UPI000262A240 polar amino acid ABC transporter permease 0.116074330607 0.5 0.383925669394 +UniRef50_P57011 Signal recognition particle receptor FtsY 0.0435910516343 0.5 0.456408948366 +UniRef50_J3XF98 Response regulator aspartate phosphatase 0.044407706835 0.500000000001 0.455592293164 +UniRef50_UPI00036D551C hypothetical protein 0.0447156068275 0.5 0.455284393173 +UniRef50_P20925 Frd operon probable iron sulfur subunit A 0.103127742646 0.5 0.396872257354 +UniRef50_B0V8H4 Outer membrane lipoprotein 0.142463150598 0.5 0.357536849401 +UniRef50_UPI0002F817F3 hypothetical protein 0.359110113378 0.5 0.140889886622 +UniRef50_UPI0003D0DACE 1.60940916111 0.5 -1.10940916111 +UniRef50_UPI0002628372 ABC transporter permease 0.0384780972186 0.5 0.461521902781 +UniRef50_UPI00046E6C82 hypothetical protein 3.71919511929 0.500000000004 -3.21919511929 +UniRef50_Q8TMA8 0.082706467029 0.5 0.417293532971 +UniRef50_UPI00030EAE4B hypothetical protein 0.0785654311034 0.5 0.421434568897 +UniRef50_Q5HNQ0 1.34179328379 0.5 -0.841793283791 +UniRef50_C5N6Q3 4.37893696801 0.500000000001 -3.87893696801 +UniRef50_B9KQJ6 Flagellar hook capping protein 1.009584518 0.5 -0.509584518 +UniRef50_C5N6Q5 1.10328977864 0.5 -0.603289778641 +UniRef50_UPI0002FA4ABF hypothetical protein 0.823281574486 0.5 -0.323281574486 +UniRef50_UPI0004628FA4 hypothetical protein 0.706737613919 0.5 -0.206737613919 +UniRef50_P32718 D allose kinase 2.77223866094 0.500000000001 -2.27223866094 +UniRef50_L7MJF8 0.533723727124 0.5 -0.0337237271244 +UniRef50_UPI0003639553 hypothetical protein, partial 0.0637624528317 0.5 0.436237547169 +UniRef50_G8B073 0.298174346712 0.5 0.201825653288 +UniRef50_P0A8Y3 Alpha D glucose 1 phosphate phosphatase YihX 10.5139573673 0.499999999998 -10.0139573673 +UniRef50_R9SMW4 Transporter ExbD Tol family 2.56447021214 0.500000000002 -2.06447021214 +UniRef50_V8G3J5 0.771956082994 0.5 -0.271956082994 +UniRef50_D4LWG1 ATPase components of various ABC type transport systems, contain duplicated ATPase 2.94758904898 0.500000000001 -2.44758904898 +UniRef50_Q07UN5 Leucine tRNA ligase 0.372099155341 0.5 0.127900844659 +UniRef50_P41441 Putative type II secretion system protein F 0.509124162949 0.5 -0.00912416294928 +UniRef50_Q8EPE6 Formamidopyrimidine DNA glycosylase 0.379836487957 0.5 0.120163512043 +UniRef50_Q87MG2 Ribonuclease HI 0.980467382574 0.5 -0.480467382574 +UniRef50_P0A2J8 Spermidine putrescine transport system permease protein PotB 1.51650662781 0.5 -1.01650662781 +UniRef50_F3WY50 0.54505857898 0.5 -0.0450585789805 +UniRef50_X7TVE6 1.05816749981 0.5 -0.558167499807 +UniRef50_A0A023WMY2 Amino acid transporter 0.76392254713 0.5 -0.26392254713 +UniRef50_B2SB84 Zinc containing alcohol dehydrogenase superfamily 1.09877204204 0.5 -0.598772042041 +UniRef50_UPI000471E251 hypothetical protein 0.488699000917 0.5 0.0113009990826 +UniRef50_UPI0004742581 hypothetical protein, partial 2.16681291087 0.5 -1.66681291087 +UniRef50_UPI000371C1F0 hypothetical protein 0.131408431214 0.5 0.368591568786 +UniRef50_L1JWK7 0.313047273885 0.5 0.186952726115 +UniRef50_M1X9S4 2.25061200165 0.499999999998 -1.75061200165 +UniRef50_Q98D52 Peptide deformylase 0.384742059174 0.5 0.115257940826 +UniRef50_B0VM85 0.0121019125888 0.5 0.487898087411 +UniRef50_Q9L0Q7 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.045328406527 0.5 0.454671593473 +UniRef50_A6LWL7 Glycosyl transferase, family 2 0.172628637776 0.5 0.327371362224 +UniRef50_Q98DM9 Ribosomal RNA small subunit methyltransferase I 1.32992898651 0.5 -0.829928986511 +UniRef50_Q3J1K3 Cellulose synthase like protein 5.66181960665 0.500000000001 -5.16181960665 +UniRef50_A7IBU8 LigA 2.20331912794 0.500000000001 -1.70331912794 +UniRef50_P0AGM1 UPF0118 inner membrane protein YhhT 1.27204014845 0.5 -0.772040148452 +UniRef50_I6WV66 Transcriptional regulator 0.183297579164 0.5 0.316702420836 +UniRef50_C1DCM4 Hydroxyethylthiazole kinase 0.598086290318 0.5 -0.0980862903182 +UniRef50_UPI00046F396F hypothetical protein 0.75658493425 0.5 -0.25658493425 +UniRef50_S3L5X6 0.109804854614 0.5 0.390195145386 +UniRef50_K8EUS8 0.00188200650491 0.5 0.498117993495 +UniRef50_Q8K7S6 Ribonuclease J 2 0.0548238569418 0.5 0.445176143058 +UniRef50_P45848 1.31223583993 0.5 -0.812235839931 +UniRef50_Q59650 UDP N acetylmuramoyl L alanyl D glutamate 2,6 diaminopimelate ligase 0.445810242209 0.5 0.0541897577913 +UniRef50_UPI000382C69D hypothetical protein 0.151206069493 0.5 0.348793930507 +UniRef50_Q9Z515 Sporulation transcription regulator WhiA 0.0129425693309 0.5 0.487057430669 +UniRef50_Q8X8Q3 2.8762691498 0.499999999999 -2.37626914979 +UniRef50_R6XPV2 0.356411163355 0.5 0.143588836645 +UniRef50_G7QNB5 ABC transporter permease protein 3.74816009488 0.500000000005 -3.24816009488 +UniRef50_A7Z7M0 Argininosuccinate synthase 1.81571544597 0.500000000001 -1.31571544597 +UniRef50_B2W926 Predicted protein 0.0646192407694 0.500000000001 0.43538075923 +UniRef50_W8N413 Lytic transglycosylase 1.23435789532 0.5 -0.734357895325 +UniRef50_A4CBF5 0.34016217402 0.5 0.15983782598 +UniRef50_UPI000237DF5D cobalamin adenosyltransferase family protein 0.985177062047 0.5 -0.485177062047 +UniRef50_P62221 Protein RecA 1.76399803777 0.5 -1.26399803777 +UniRef50_C8RX55 1.64259357304 0.500000000002 -1.14259357304 +UniRef50_T1JH80 0.627037321089 0.5 -0.127037321089 +UniRef50_A3DJK3 Energy coupling factor transporter ATP binding protein EcfA1 1.20283373795 0.5 -0.702833737947 +UniRef50_P0A9P7 ATP dependent RNA helicase DeaD 2.50793765214 0.5 -2.00793765214 +UniRef50_D6EHT9 Nitrate reductase subunit beta NarH2 1.06473585633 0.5 -0.564735856335 +UniRef50_M1MQI8 Monosaccharide ABC transporter substrate binding protein, CUT2 family 0.421177316712 0.5 0.0788226832883 +UniRef50_Q9CLL7 Bifunctional protein PyrR 0.0521607657076 0.5 0.447839234292 +UniRef50_S5CVX5 0.0131820269559 0.5 0.486817973044 +UniRef50_D9SR17 GCN5 related N acetyltransferase 0.408220002401 0.5 0.0917799975992 +UniRef50_C5MZ73 1.73216150269 0.5 -1.23216150269 +UniRef50_M9VQH6 MarR family transcriptional regulator 0.0375342890904 0.5 0.46246571091 +UniRef50_O25001 Beta lactamase HcpA 0.0269592175494 0.5 0.47304078245 +UniRef50_Q8FL94 DnaJ like protein DjlA 1.56865492149 0.5 -1.06865492149 +UniRef50_UPI0003B6B2AB nickel ABC transporter permease 0.332124068647 0.5 0.167875931353 +UniRef50_A6WVV0 AMP dependent synthetase and ligase 0.0349041712785 0.5 0.465095828722 +UniRef50_Q7VGP6 tRNA 2 methylthio N dimethylallyladenosine synthase 0.0110952990725 0.5 0.488904700928 +UniRef50_C5Y6L8 3.89534837681 0.500000000001 -3.39534837682 +UniRef50_D8LGM3 0.0802063820827 0.5 0.419793617918 +UniRef50_F0P516 Replication initiation protein, truncated 1.28766121008 0.500000000001 -0.787661210082 +UniRef50_Q895N8 Phosphopantetheine adenylyltransferase 2.76905185893 0.5 -2.26905185893 +UniRef50_E3EY08 Glutathionylspermidine synthase 4.38383233382 0.5 -3.88383233382 +UniRef50_E2XT92 Long chain fatty acid transporter 0.550855466618 0.5 -0.0508554666176 +UniRef50_P37338 HTH type transcriptional repressor CsiR 1.88573846824 0.500000000001 -1.38573846824 +UniRef50_Q52881 Chemotaxis protein CheW 1.69232409171 0.500000000002 -1.19232409171 +UniRef50_A8LLG1 0.624592346204 0.5 -0.124592346204 +UniRef50_UPI00047C9DA6 hypothetical protein 0.357376174524 0.5 0.142623825476 +UniRef50_P51057 Succinate dehydrogenase hydrophobic membrane anchor subunit 0.127378299848 0.5 0.372621700152 +UniRef50_D9PYS7 Predicted single stranded DNA specific exonuclease 10.7685871412 0.500000000004 -10.2685871412 +UniRef50_S9SJ05 2.85881565225 0.5 -2.35881565225 +UniRef50_E8TFR7 TRAP transporter, 4TM 12TM fusion protein 1.84266198598 0.5 -1.34266198598 +UniRef50_A6M215 ATPase, BadF BadG BcrA BcrD type 0.198069828502 0.5 0.301930171498 +UniRef50_J9P613 0.343444726693 0.5 0.156555273307 +UniRef50_K5P2M6 0.030664250962 0.5 0.469335749038 +UniRef50_D8GSG1 Predicted transcriptional regulator, AraC family 0.0930905140962 0.5 0.406909485903 +UniRef50_UPI0002F0964C hypothetical protein 0.333503130722 0.5 0.166496869278 +UniRef50_F2QGL2 Competence protein 0.00758851427461 0.5 0.492411485725 +UniRef50_F5X6K5 ABC transport system ATP binding protein 0.347674857721 0.5 0.152325142279 +UniRef50_Q1Q9B8 Single stranded DNA binding protein 0.0189019031325 0.5 0.481098096867 +UniRef50_A4WVV8 Ferrochelatase 2.9251495557 0.499999999999 -2.4251495557 +UniRef50_Q9RSX3 0.0240151752145 0.500000000001 0.475984824785 +UniRef50_Q9RSX2 0.00173752124804 0.5 0.498262478752 +UniRef50_UPI000376B804 hypothetical protein 1.50146768941 0.5 -1.00146768941 +UniRef50_A0A023X2K9 Nitroreductase family 0.00512679848045 0.5 0.494873201519 +UniRef50_UPI00036A2930 hypothetical protein 1.15745860056 0.5 -0.657458600558 +UniRef50_Q8Y213 Glycine tRNA ligase beta subunit 0.057789457293 0.500000000001 0.442210542706 +UniRef50_UPI000470A4B9 5 methyltetrahydrofolate homocysteine methyltransferase 5.46869953745 0.500000000007 -4.96869953746 +UniRef50_E3HK42 Lysine specific permease 2 0.291627059215 0.5 0.208372940785 +UniRef50_UPI0003B67722 30S ribosomal protein S15 1.02402353177 0.5 -0.524023531767 +UniRef50_A6LS13 Sugar isomerase 0.843296367541 0.5 -0.343296367541 +UniRef50_B8JF24 Cupin 2 conserved barrel domain protein 1.59780153888 0.5 -1.09780153888 +UniRef50_A5UL58 Putative DNA helicase II, UvrD 0.535055894888 0.5 -0.0350558948882 +UniRef50_I6SXV6 Transmembrane protein 1.71376240497 0.5 -1.21376240497 +UniRef50_Q7R6Y8 0.0256053870352 0.5 0.474394612965 +UniRef50_J0I3X2 Cag pathogenicity island protein Cagb 0.0157383657596 0.5 0.484261634241 +UniRef50_A3LE40 Glycerol kinase 2.46987654717 0.5 -1.96987654717 +UniRef50_M1CWM3 0.179271678475 0.5 0.320728321525 +UniRef50_A5UP04 Multimeric flavodoxin 0.509234842028 0.5 -0.00923484202807 +UniRef50_A6LYF1 1.2472334588 0.5 -0.747233458798 +UniRef50_B2TS40 Protein MurJ homolog 0.209428424989 0.5 0.290571575011 +UniRef50_A0A031I8F2 0.555907212833 0.5 -0.0559072128327 +UniRef50_UPI0003B74B63 aldolase 3.21857036774 0.500000000001 -2.71857036774 +UniRef50_UPI00047054F2 hypothetical protein, partial 0.648491545136 0.5 -0.148491545136 +UniRef50_B1Y0J8 Non canonical purine NTP pyrophosphatase 2.24874574827 0.5 -1.74874574827 +UniRef50_Q8K9W5 Phosphate acetyltransferase 0.261152310714 0.5 0.238847689286 +UniRef50_UPI0002486152 MerR family transcriptional regulator 4.14070054035 0.499999999999 -3.64070054035 +UniRef50_B9KUZ2 Phage portal protein, lambda family 14.262079794 0.49999999999 -13.762079794 +UniRef50_UPI0004745B47 RNA directed DNA polymerase, partial 0.0963840884746 0.5 0.403615911525 +UniRef50_UPI000387178C PREDICTED 0.383392683675 0.5 0.116607316325 +UniRef50_UPI000410CB45 chemotaxis protein 0.910861254244 0.5 -0.410861254244 +UniRef50_R4U7U8 Phosphoribosylglycinamide formyltransferase 0.0396750420357 0.5 0.460324957964 +UniRef50_V4I3S7 Integral membrane protein 0.110912926812 0.5 0.389087073188 +UniRef50_L8XYT3 0.309310736027 0.5 0.190689263973 +UniRef50_UPI000265943A PREDICTED 0.54112126545 0.5 -0.0411212654502 +UniRef50_A5VYM5 Outer membrane porin 2.63217085825 0.5 -2.13217085825 +UniRef50_P45867 Acyl CoA dehydrogenase 0.0251475969155 0.5 0.474852403084 +UniRef50_I1E8F4 1.84463197776 0.5 -1.34463197776 +UniRef50_P49323 Non heme chloroperoxidase 0.00189714899723 0.5 0.498102851003 +UniRef50_UPI00046F109B isoleucyl tRNA synthase 0.203058336696 0.5 0.296941663304 +UniRef50_B1IIB8 Sensor histidine kinase 0.0520018580869 0.5 0.447998141913 +UniRef50_B9KWJ6 Transcriptional regulator, GntR family 7.77054399453 0.5 -7.27054399453 +UniRef50_D1APR3 Deoxyribose phosphate aldolase 0.106441192866 0.5 0.393558807134 +UniRef50_A9ANN8 AMP nucleosidase 1.56337989619 0.5 -1.06337989619 +UniRef50_S5RJR0 2.58462807843 0.5 -2.08462807843 +UniRef50_UPI00037E9476 hypothetical protein 0.421654906422 0.5 0.0783450935779 +UniRef50_D5ALJ5 Phage integrase 1.37598361636 0.5 -0.875983616356 +UniRef50_A6LVF9 Response regulator receiver and SARP domain protein 0.767623334836 0.5 -0.267623334836 +UniRef50_A5UM43 Energy converting hydrogenase B, subunit K, EhbK 3.46463322556 0.5 -2.96463322556 +UniRef50_UPI00046FBB36 hypothetical protein, partial 0.449754523524 0.5 0.0502454764756 +UniRef50_X1UX68 Marine sediment metagenome DNA, contig 1.80067091672 0.5 -1.30067091672 +UniRef50_Q8CNT2 Phage phi PVL amidase like protein 0.0888031787512 0.5 0.411196821249 +UniRef50_O05100 Peptide deformylase 1 0.377730575965 0.5 0.122269424035 +UniRef50_UPI0004622CC9 hypothetical protein TRAVEDRAFT_74361 5.25177082396 0.500000000001 -4.75177082396 +UniRef50_UPI00047DE100 hypothetical protein 0.239466694725 0.5 0.260533305275 +UniRef50_UPI00037530DA hypothetical protein 0.49522387179 0.5 0.00477612821032 +UniRef50_D5AMF4 ABC transporter, periplasmic substrate binding protein 2.06096563624 0.5 -1.56096563624 +UniRef50_A6LZL2 0.191315584404 0.5 0.308684415596 +UniRef50_UPI000475B6F2 4 alpha glucanotransferase 0.00901638785476 0.5 0.490983612145 +UniRef50_I4B854 Pirin domain protein 0.189793311018 0.5 0.310206688982 +UniRef50_B9KW74 DMSO membrane protein 1.02110029705 0.5 -0.521100297048 +UniRef50_UPI00036F9198 DNA invertase, partial 0.505398309434 0.5 -0.00539830943413 +UniRef50_O66849 Anthranilate synthase component 1 0.599626639541 0.5 -0.0996266395408 +UniRef50_G2I7Y6 Transposase 1.41682997158 0.5 -0.916829971576 +UniRef50_UPI0003B53587 GntR family transcriptional regulator 1.43213436727 0.5 -0.932134367266 +UniRef50_F3SV61 0.414248328399 0.5 0.0857516716012 +UniRef50_F7YWV7 Phosphoribosylformylglycinamidine synthase, purS 0.475221940702 0.5 0.024778059298 +UniRef50_P63459 Malonyl CoA acyl carrier protein transacylase 0.176781660282 0.5 0.323218339718 +UniRef50_UPI000359C10F PREDICTED 0.208431565083 0.5 0.291568434918 +UniRef50_Q1IZN6 Membrane associated PIN like nuclease 0.0028193956196 0.499999999999 0.497180604381 +UniRef50_A3X2R1 7.26803503253 0.499999999996 -6.76803503252 +UniRef50_D9RH26 Site specific DNA methyltransferase 2.59609587334 0.500000000003 -2.09609587334 +UniRef50_UPI000226002C hypothetical protein 4.11932207716 0.5 -3.61932207716 +UniRef50_Q1WSV7 Redox sensing transcriptional repressor Rex 0.723258393868 0.5 -0.223258393868 +UniRef50_R5MZ93 0.0021062999616 0.5 0.497893700039 +UniRef50_A4XV16 TRAP dicarboxylate transporter, DctP subunit 1.20379728489 0.5 -0.703797284891 +UniRef50_A6LTW4 0.320337826803 0.5 0.179662173197 +UniRef50_A6LTW3 0.435483543868 0.5 0.0645164561321 +UniRef50_S2TB06 Protein chain release factor B 4.14139496264 0.5 -3.64139496264 +UniRef50_Q06801 4 alpha glucanotransferase, chloroplastic amyloplastic 0.00810966838462 0.5 0.491890331616 +UniRef50_A6LTW8 0.102098821009 0.5 0.39790117899 +UniRef50_B9E4P1 0.458674287925 0.5 0.041325712075 +UniRef50_F4DT19 Integral membrane sensor hybrid histidine kinase 0.783249081524 0.5 -0.283249081524 +UniRef50_UPI0001B469EF DNA recombination protein RecA, partial 0.309670567415 0.5 0.190329432585 +UniRef50_P03030 Transcriptional activator protein LysR 1.048861636 0.5 -0.548861635999 +UniRef50_P98008 Nitric oxide reductase subunit B 2.92374770633 0.5 -2.42374770633 +UniRef50_UPI000468BEB6 hypothetical protein 0.112798455895 0.5 0.387201544105 +UniRef50_P63353 Sulfate thiosulfate import ATP binding protein CysA 1.79452660448 0.5 -1.29452660448 +UniRef50_UPI000376EAD9 resolvase 0.895094862592 0.5 -0.395094862592 +UniRef50_Q7UE67 0.0400644637093 0.5 0.459935536291 +UniRef50_UPI00016C4079 sodium hydrogen exchanger family protein 0.63947944274 0.5 -0.13947944274 +UniRef50_P39356 0.936712742974 0.5 -0.436712742974 +UniRef50_P39357 3.00966221369 0.500000000002 -2.50966221369 +UniRef50_Q8D1Y6 Nucleoside diphosphate kinase 1.47825707188 0.5 -0.978257071882 +UniRef50_Q9USZ1 Elongation factor G, mitochondrial 1.16086863512 0.5 -0.660868635117 +UniRef50_P39353 0.122946279133 0.5 0.377053720867 +UniRef50_P39351 1.34898581835 0.5 -0.848985818352 +UniRef50_D5ARH0 Biotin transport ATP binding protein BioM 4.5433163781 0.499999999999 -4.0433163781 +UniRef50_C5WG38 1.40100720906 0.5 -0.901007209061 +UniRef50_Q8CU46 Alginate lyase 1.01257027984 0.5 -0.512570279845 +UniRef50_UPI0001912A18 adenylosuccinate lyase, partial 0.518263297863 0.5 -0.0182632978635 +UniRef50_Q8DVI5 0.268833909158 0.5 0.231166090842 +UniRef50_P53597 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.266785866574 0.5 0.233214133426 +UniRef50_Q8RCX1 K insensitive pyrophosphate energized proton pump 0.165495835283 0.5 0.334504164717 +UniRef50_A9DEP6 0.472910287235 0.5 0.0270897127647 +UniRef50_UPI0003AD3579 hypothetical protein 0.383649148633 0.5 0.116350851367 +UniRef50_F8JJ47 1.22001076641 0.5 -0.720010766411 +UniRef50_C3L318 Precorrin 2 C methyltransferase 0.116772754751 0.499999999999 0.38322724525 +UniRef50_P44421 Methionine aminopeptidase 0.00303758722302 0.5 0.496962412777 +UniRef50_E6MUY1 Amino acid carrier family protein 0.0273433765755 0.5 0.472656623425 +UniRef50_UPI0003B5FC66 ABC transporter ATP binding protein 2.87988315578 0.499999999998 -2.37988315578 +UniRef50_UPI00047BD4E4 hypothetical protein 0.556266329699 0.5 -0.0562663296993 +UniRef50_A0A059MR78 Nitrogen fixation protein NifU 0.137560684237 0.5 0.362439315763 +UniRef50_UPI0002E2A0B8 hypothetical protein 0.794014844027 0.5 -0.294014844027 +UniRef50_S5S0J3 DnaJ family heat shock protein 0.321798105696 0.5 0.178201894304 +UniRef50_B1IK08 Argininosuccinate synthase 0.0910288151479 0.5 0.408971184852 +UniRef50_O33407 Esterase EstA 1.72493228246 0.5 -1.22493228246 +UniRef50_UPI00047D5868 hypothetical protein 0.25220424995 0.5 0.24779575005 +UniRef50_UPI0004763C22 CREA protein 0.911026930303 0.5 -0.411026930303 +UniRef50_R7PWQ3 Minor teichoic acid biosynthesis protein GgaB 6.31887682507 0.500000000004 -5.81887682507 +UniRef50_K0WKW0 Putrescine binding periplasmic protein 3.85788166689 0.5 -3.35788166689 +UniRef50_D4HAV0 0.183989268132 0.5 0.316010731868 +UniRef50_I0C5C5 Peptidoglycan endo beta N acetylglucosaminidase 1.77289310991 0.500000000003 -1.27289310991 +UniRef50_X1M7F5 Marine sediment metagenome DNA, contig 0.291717242946 0.5 0.208282757054 +UniRef50_F9L838 Phenol soluble modulin beta 1 family protein 0.200948651872 0.5 0.299051348128 +UniRef50_E3ZCM1 Internalin A 0.86990319578 0.5 -0.36990319578 +UniRef50_R7AAF8 0.714753742298 0.5 -0.214753742298 +UniRef50_F7QQI7 N acetylneuraminate synthase 1.08452739529 0.5 -0.584527395292 +UniRef50_Q1YUP9 2.64380104581 0.5 -2.14380104581 +UniRef50_UPI000471DB3E hypothetical protein 0.461792374635 0.5 0.0382076253654 +UniRef50_V4JMQ3 0.552762309462 0.5 -0.0527623094621 +UniRef50_G7MAU3 Cobalt ABC transporter, inner membrane subunit CbiQ 0.154043212195 0.5 0.345956787805 +UniRef50_UPI000306B7B0 hypothetical protein 7.65943660998 0.499999999999 -7.15943660998 +UniRef50_F2ABZ8 2.14583920862 0.5 -1.64583920862 +UniRef50_R5XW73 Glycerol 3 phosphate cytidyltransferase 6.6112733898 0.499999999998 -6.1112733898 +UniRef50_Q039P7 tRNA specific 2 thiouridylase MnmA 0.29312941686 0.5 0.20687058314 +UniRef50_UPI0003AD23FF hypothetical protein 0.0258321437984 0.5 0.474167856202 +UniRef50_Q0VM47 Type II secretion system protein, putative 0.0132208837621 0.5 0.486779116238 +UniRef50_Q47BQ9 Tripartite ATP independent periplasmic transporter, DctQ component 1.30902223797 0.5 -0.809022237969 +UniRef50_P76630 Inner membrane protein YgaZ 0.983786921864 0.5 -0.483786921864 +UniRef50_Z5X8T7 Pyridine nucleotide transhydrogenase 0.644700919469 0.5 -0.144700919469 +UniRef50_G8RA57 Tandem lipo protein within Pathogenicity island 0.252804652871 0.5 0.247195347129 +UniRef50_E6JNN1 1.4782975983 0.5 -0.9782975983 +UniRef50_B7GZW3 Glycerol 3 phosphate dehydrogenase [NAD+] 0.00696849069063 0.5 0.493031509309 +UniRef50_UPI0003B3F639 thioredoxin 0.135732981529 0.5 0.364267018471 +UniRef50_B6ZQQ2 Inner membrane protein YicO 0.233636237128 0.5 0.266363762872 +UniRef50_T1U7S9 TrbL VirB6 plasmid conjugal transfer family protein 0.032861034158 0.5 0.467138965842 +UniRef50_P74309 Fructose bisphosphate aldolase class 1 0.959591432179 0.5 -0.459591432179 +UniRef50_Q5P706 Arginine biosynthesis bifunctional protein ArgJ 0.00622791796257 0.5 0.493772082037 +UniRef50_G8VD08 Amino acid carrier protein 0.013306507638 0.5 0.486693492362 +UniRef50_Q88PJ9 Type IV pili biogenesis protein PilF 0.0101222823458 0.5 0.489877717654 +UniRef50_B9KMF9 40.5969366889 0.499999999977 -40.0969366889 +UniRef50_UPI0004572EA5 PREDICTED 1.87705077508 0.5 -1.37705077508 +UniRef50_F5XQJ4 0.173892411934 0.5 0.326107588066 +UniRef50_C1D2J4 Putative Diguanylate cyclase with GAF sensor 0.000853522259564 0.5 0.49914647774 +UniRef50_B9KMF2 0.00332629650674 0.5 0.496673703493 +UniRef50_Q73WQ0 0.360282176066 0.5 0.139717823934 +UniRef50_O31605 Oligoendopeptidase F homolog 2.18712694648 0.500000000002 -1.68712694648 +UniRef50_Q04F01 Adenine phosphoribosyltransferase 2.87726323724 0.499999999999 -2.37726323724 +UniRef50_UPI0003346C39 PREDICTED 14.1769474485 0.500000000003 -13.6769474485 +UniRef50_UPI00034AF933 glycogen debranching protein 0.279639591104 0.5 0.220360408896 +UniRef50_Q9LAM9 Peptide methionine sulfoxide reductase MsrA MsrB 0.000970986462931 0.499999999999 0.499029013538 +UniRef50_Q3Z6G6 Anthranilate phosphoribosyltransferase 0.399911046071 0.5 0.100088953929 +UniRef50_P40510 D 3 phosphoglycerate dehydrogenase 2 0.48573841567 0.5 0.0142615843298 +UniRef50_X1MDH4 Marine sediment metagenome DNA, contig 0.156847108007 0.5 0.343152891993 +UniRef50_K7SNQ8 RfbX family protein involved in the export of O antigen and teichoic acid 0.00741524000421 0.5 0.492584759996 +UniRef50_A4EKV5 1.41255360355 0.5 -0.912553603548 +UniRef50_UPI0002E79C21 hypothetical protein 0.273603010863 0.5 0.226396989137 +UniRef50_R8XI05 Taurine binding periplasmic protein 0.445947760611 0.5 0.0540522393889 +UniRef50_Q9RYQ5 Resolvase, putative 0.000931686830708 0.5 0.499068313169 +UniRef50_Q3JXV9 5.19607716824 0.500000000007 -4.69607716824 +UniRef50_X1MF22 Marine sediment metagenome DNA, contig 0.0360867529721 0.5 0.463913247028 +UniRef50_V6EZW5 Putative chromosomal replication initiator, DnaA homolog protein 2.8845717084 0.5 -2.3845717084 +UniRef50_UPI0004701EC5 transcriptional regulator 4.11969384258 0.5 -3.61969384258 +UniRef50_UPI000370F20A DNA polymerase I, partial 0.0133450085859 0.5 0.486654991414 +UniRef50_UPI00039553CA PREDICTED 0.0593052451395 0.5 0.44069475486 +UniRef50_UPI000364FAD7 hypothetical protein 0.0661587685935 0.5 0.433841231406 +UniRef50_A0RGP9 DNA mismatch repair protein 0.224855356044 0.5 0.275144643956 +UniRef50_Q9P6J4 1.79431252929 0.499999999998 -1.29431252928 +UniRef50_UPI000369C449 aminotransferase, partial 10.8615195296 0.499999999998 -10.3615195296 +UniRef50_M9R9X0 3.14318508614 0.500000000003 -2.64318508614 +UniRef50_Q9PB92 1.29693027899 0.5 -0.796930278995 +UniRef50_Q9RYT4 Homoprotocatechuate 2,3 dioxygenase, putative 0.00268898672754 0.5 0.497311013272 +UniRef50_UPI00047C50D0 hypothetical protein 0.762323132574 0.5 -0.262323132574 +UniRef50_A0KKD3 Adenine phosphoribosyltransferase 0.658371977753 0.5 -0.158371977753 +UniRef50_P22255 3,5 bisphosphate nucleotidase CysQ 5.46834916893 0.499999999999 -4.96834916893 +UniRef50_UPI000288FCAE MULTISPECIES 1.28169821883 0.5 -0.781698218832 +UniRef50_UPI0003795D58 hypothetical protein 2.50887082559 0.500000000001 -2.00887082559 +UniRef50_S1U9Z1 NrdI protein 0.516553942479 0.5 -0.0165539424789 +UniRef50_C1L2U0 UPF0176 protein Lm4b_01393 0.430359576168 0.5 0.0696404238322 +UniRef50_X1HZW5 Marine sediment metagenome DNA, contig 0.219121780113 0.5 0.280878219887 +UniRef50_Q5E530 Permease 0.353317405892 0.5 0.146682594108 +UniRef50_L7WWR2 Anaerobic ribonucleoside triphosphate reductase activating protein 2.8935947971 0.499999999999 -2.3935947971 +UniRef50_UPI0003662A30 hypothetical protein 0.818405326704 0.5 -0.318405326704 +UniRef50_F0MTV5 MafB family protein 0.0368103298898 0.5 0.46318967011 +UniRef50_P0AC49 Fumarate reductase iron sulfur subunit 0.724365793506 0.5 -0.224365793506 +UniRef50_UPI00041436A6 hypothetical protein 0.412004530075 0.5 0.0879954699253 +UniRef50_A3K301 0.673616278539 0.5 -0.173616278539 +UniRef50_A7ZIA3 S formylglutathione hydrolase FrmB 1.77192500567 0.500000000001 -1.27192500567 +UniRef50_S9E849 Neutral zinc metallopeptidase 15.7012061949 0.499999999995 -15.2012061949 +UniRef50_UPI00035E2411 hypothetical protein 0.121655694866 0.5 0.378344305134 +UniRef50_H8GZZ4 Peptide ABC transporter, permease protein 0.0214840334828 0.5 0.478515966517 +UniRef50_UPI00047D0EF5 alcohol dehydrogenase, partial 0.063178420146 0.5 0.436821579854 +UniRef50_A4W0T4 GMP reductase 0.666912691802 0.5 -0.166912691802 +UniRef50_F2LNV1 0.507015558998 0.5 -0.00701555899847 +UniRef50_B5Z6V3 0.0174828482064 0.5 0.482517151793 +UniRef50_D3QCT2 0.835847792917 0.5 -0.335847792917 +UniRef50_P16679 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL 3.96673020455 0.5 -3.46673020455 +UniRef50_M5RF79 Magnesium protoporphyrin chelatase 0.0393718679448 0.500000000001 0.460628132054 +UniRef50_UPI0004069A6C hypothetical protein 0.36677824482 0.5 0.13322175518 +UniRef50_D7CRR2 Cytochrome c assembly protein 0.00331751631628 0.5 0.496682483684 +UniRef50_P76502 Phosphohistidine phosphatase SixA 2.68274306556 0.499999999999 -2.18274306556 +UniRef50_Q3IUV8 TrbC, sex pilus assembly and mating pair formation protein 1.3350928084 0.5 -0.835092808398 +UniRef50_A0A023LBQ7 1.43953228355 0.499999999998 -0.939532283552 +UniRef50_A5MYM8 0.107349321495 0.5 0.392650678505 +UniRef50_L1L1V6 3.41395282281 0.499999999999 -2.91395282281 +UniRef50_UPI0003A7F275 xanthine dehydrogenase 0.0161199104905 0.500000000001 0.483880089509 +UniRef50_UPI000470BD2F hypothetical protein 0.0381397345332 0.5 0.461860265467 +UniRef50_I0I1B3 0.0685431839943 0.5 0.431456816006 +UniRef50_Q5HP11 Shikimate kinase 5.78364923635 0.500000000002 -5.28364923635 +UniRef50_K0LNC6 Na+transporting ATP synthase 1.69806761705 0.499999999998 -1.19806761705 +UniRef50_F0YGA0 Expressed protein 0.785329544066 0.5 -0.285329544066 +UniRef50_UPI0004262E77 hypothetical protein 0.0139368587747 0.5 0.486063141225 +UniRef50_K3ZIS6 0.0635231854535 0.5 0.436476814546 +UniRef50_UPI0003B62EF2 hypothetical protein 0.385652767669 0.5 0.114347232331 +UniRef50_G2JE35 Lipid A core O antigen ligase 0.020759102235 0.5 0.479240897765 +UniRef50_Q98LT6 Glycine dehydrogenase 0.241796963277 0.5 0.258203036723 +UniRef50_B7KTM9 Phage cell wall peptidase, NlpC P60 family 2.19650316409 0.500000000001 -1.69650316409 +UniRef50_A5UMD8 1.68303390352 0.499999999999 -1.18303390352 +UniRef50_K0LRB0 Ferrous iron transport protein B 0.185768492188 0.5 0.314231507812 +UniRef50_UPI0004421582 PREDICTED 0.805896847979 0.5 -0.305896847979 +UniRef50_C4J1N8 2.01859002607 0.500000000004 -1.51859002608 +UniRef50_Q8XWR3 Prolipoprotein diacylglyceryl transferase 0.183697391292 0.5 0.316302608708 +UniRef50_C6SPD3 Putative potassium uptake system protein 1.37262006234 0.5 -0.87262006234 +UniRef50_UPI0003A9FA54 amino acid transporter 0.00613139125185 0.5 0.493868608748 +UniRef50_UPI000469E754 DNA repair protein RadA 0.0661126021006 0.5 0.433887397899 +UniRef50_P36938 Phosphoglucomutase 0.131186301818 0.5 0.368813698182 +UniRef50_UPI00046E8175 hypothetical protein 0.0340107272298 0.5 0.46598927277 +UniRef50_P32382 NADH oxidase 0.463429511588 0.5 0.036570488412 +UniRef50_B9KJE4 Flagellar biosynthetic protein FlhB 1.35567689957 0.5 -0.855676899574 +UniRef50_J9P7D1 0.511342104633 0.5 -0.0113421046327 +UniRef50_D7GE04 0.109426067683 0.5 0.390573932317 +UniRef50_Q9I6M4 5 aminovalerate aminotransferase DavT 0.0454455813045 0.5 0.454554418695 +UniRef50_UPI000262CACD citrate lyase subunit beta 1.25431866422 0.5 -0.754318664217 +UniRef50_Q48KB0 Acyl homoserine lactone acylase PvdQ 2.25985865838 0.499999999999 -1.75985865838 +UniRef50_UPI0002657863 PREDICTED 0.178355965864 0.5 0.321644034136 +UniRef50_UPI0003B7969B LysR family transcriptional regulator 0.0169284668902 0.5 0.48307153311 +UniRef50_C5X3K1 0.0478362044207 0.5 0.452163795579 +UniRef50_UPI0003EDCB7F PREDICTED 0.0346926591905 0.5 0.46530734081 +UniRef50_P76053 Probable DNA endonuclease SmrA 0.90592995326 0.5 -0.40592995326 +UniRef50_V4IVP0 0.520566440457 0.5 -0.0205664404569 +UniRef50_A2RNI8 Arginine tRNA ligase 0.000548462069218 0.5 0.499451537931 +UniRef50_A6LY18 Small acid soluble spore protein, alpha beta type 5.72429768773 0.5 -5.22429768773 +UniRef50_F8G289 Cro CI family transcriptional regulator 0.502784339126 0.5 -0.00278433912567 +UniRef50_K6M6J3 Transporter, major facilitator family protein 0.025173048331 0.5 0.474826951669 +UniRef50_F6CLL2 PSP1 domain protein 4.74294543556 0.500000000005 -4.24294543557 +UniRef50_J2DHS3 0.166135740503 0.5 0.333864259497 +UniRef50_P77297 0.946517329978 0.5 -0.446517329978 +UniRef50_P77296 6.94829533102 0.5 -6.44829533102 +UniRef50_L1K9E2 1.06445729461 0.5 -0.564457294613 +UniRef50_R9SJS7 Adenylate cyclase CyaA 1.77450228937 0.5 -1.27450228937 +UniRef50_E3J3H5 1.35735615014 0.5 -0.857356150144 +UniRef50_UPI0003B2F361 ribose phosphate pyrophosphokinase 1.28046654707 0.5 -0.780466547068 +UniRef50_D4HCR1 Hydrolase, alpha beta domain protein 0.0161687298759 0.5 0.483831270124 +UniRef50_UPI000410CB72 hypothetical protein 0.14609795215 0.5 0.35390204785 +UniRef50_UPI0003B62778 2 deoxy D gluconate 3 dehydrogenase 0.33423859788 0.5 0.16576140212 +UniRef50_D8JEW7 0.0294862356522 0.5 0.470513764348 +UniRef50_A1B817 Transposase IS66 0.798374230185 0.5 -0.298374230185 +UniRef50_A5UNB4 0.819402223194 0.5 -0.319402223194 +UniRef50_A0A024C317 3.6604180712 0.5 -3.1604180712 +UniRef50_UPI000370F732 hypothetical protein 0.627259908178 0.5 -0.127259908178 +UniRef50_L8M031 NAD dependent epimerase dehydratase family protein 5.82929684103 0.499999999996 -5.32929684102 +UniRef50_A7Q0V4 S adenosylmethionine synthase 5 0.20072104774 0.5 0.29927895226 +UniRef50_Q1IZH8 tRNA N6 adenosine threonylcarbamoyltransferase 0.0125203693375 0.5 0.487479630663 +UniRef50_E3G1M3 Ribose 1,5 bisphosphate phosphokinase PhnN 5.96817366478 0.500000000002 -5.46817366478 +UniRef50_UPI00046961B9 hypothetical protein 0.747617146469 0.5 -0.247617146469 +UniRef50_D3E3F0 4Fe 4S binding domain containing protein 1.35996163075 0.5 -0.85996163075 +UniRef50_Q6FYD4 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex 0.11483648753 0.5 0.38516351247 +UniRef50_UPI000477D162 iron ABC transporter permease 0.0559101645469 0.5 0.444089835453 +UniRef50_D7AQD0 NADH 0.113490351554 0.5 0.386509648446 +UniRef50_I7EMW2 13.3831221862 0.500000000003 -12.8831221862 +UniRef50_P28246 Bicyclomycin resistance protein 0.971942822371 0.5 -0.471942822371 +UniRef50_UPI00047BE7E7 hypothetical protein 1.50900627731 0.5 -1.00900627731 +UniRef50_Q02H49 0.826056909414 0.5 -0.326056909414 +UniRef50_K2F5A0 0.116254286592 0.5 0.383745713409 +UniRef50_S4B4H2 Accessory colonization factor AcfD 0.778523495957 0.5 -0.278523495957 +UniRef50_A6LYR9 Peptidoglycan binding domain 1 protein 0.10007320191 0.5 0.39992679809 +UniRef50_B9KM18 Pyruvate kinase 1.0184912503 0.5 -0.5184912503 +UniRef50_UPI000366947C hypothetical protein 8.49225123172 0.500000000001 -7.99225123172 +UniRef50_F9SJR5 Putative sulfate permease 1.16202093732 0.5 -0.662020937319 +UniRef50_Q4L4H7 1.42199941674 0.5 -0.921999416736 +UniRef50_D1FMX0 InlA 1.56724318564 0.5 -1.06724318564 +UniRef50_Q1C1V0 Regulator of sigma D 0.254597406299 0.5 0.245402593701 +UniRef50_A9B5I3 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.176706818828 0.5 0.323293181172 +UniRef50_P30363 L asparaginase 0.009000043231 0.5 0.490999956769 +UniRef50_Q92Q90 Bifunctional enzyme IspD IspF 0.380169476745 0.5 0.119830523255 +UniRef50_D0K261 Cbb3 type cytochrome c oxidase subunit CcoP 0.0598123378318 0.5 0.440187662168 +UniRef50_A0A011TPN1 1.890587046 0.5 -1.390587046 +UniRef50_UPI0004663F53 hypothetical protein 0.706886182081 0.5 -0.206886182081 +UniRef50_P46118 HTH type transcriptional regulator HexR 0.813908312137 0.5 -0.313908312137 +UniRef50_X7ED55 0.556328972227 0.5 -0.0563289722269 +UniRef50_UPI0004674A11 hypothetical protein, partial 0.130841548803 0.5 0.369158451197 +UniRef50_A0A022FVN3 Calcium transporter ChaC 0.585193985937 0.5 -0.0851939859372 +UniRef50_G3XDA3 Methyl accepting chemotaxis protein CtpH 0.329063960093 0.5 0.170936039907 +UniRef50_F1YSU2 Folylpolyglutamate Synthase 0.645092369498 0.5 -0.145092369498 +UniRef50_S5SLF3 sn glycerol 3 phosphate ABC transporter substrate binding protein UgpB 1 1.3395244716 0.5 -0.839524471604 +UniRef50_D8UC33 1.58602480795 0.5 -1.08602480795 +UniRef50_UPI0002628085 PTS system sucrose specific transporter subunit IIABC 0.361194695826 0.5 0.138805304174 +UniRef50_R6G0R0 Glutamine ABC transporter permease substrate binding protein 2.15122490305 0.5 -1.65122490305 +UniRef50_Q6F6W5 Two component sensor 0.0149342876483 0.5 0.485065712352 +UniRef50_UPI0001AF2CE2 aldehyde dehydrogenase 0.0042518298671 0.5 0.495748170133 +UniRef50_B8DVI9 Uracil phosphoribosyltransferase 0.000916530227227 0.5 0.499083469773 +UniRef50_Q0SAY4 Proline tRNA ligase 2 5.68577208874e-05 0.5 0.499943142279 +UniRef50_Q3IX83 2.01211508078 0.499999999999 -1.51211508078 +UniRef50_Q8Z7H3 Virulence sensor histidine kinase PhoQ 4.72892279642 0.499999999997 -4.22892279642 +UniRef50_Q6MS86 Uracil phosphoribosyltransferase 0.0054299712293 0.5 0.494570028771 +UniRef50_UPI000362A0E4 hypothetical protein 1.60798573299 0.5 -1.10798573299 +UniRef50_R1CV54 0.106452995005 0.5 0.393547004995 +UniRef50_UPI000273CDF3 1.97802046944 0.5 -1.47802046944 +UniRef50_UPI0002F1A5E0 hypothetical protein 1.94854491422 0.5 -1.44854491422 +UniRef50_I6CNQ8 Tail protein 0.458980022524 0.5 0.0410199774761 +UniRef50_F9Z2A5 0.0673822474608 0.500000000001 0.432617752539 +UniRef50_D2NS08 6 pyruvoyl tetrahydropterin synthase 0.0452357586886 0.499999999999 0.454764241312 +UniRef50_UPI00022CA8F3 PREDICTED 0.631502984436 0.5 -0.131502984436 +UniRef50_UPI0003B40293 hypothetical protein 0.689039180886 0.5 -0.189039180886 +UniRef50_D2ZQZ2 1.00231350897 0.5 -0.502313508968 +UniRef50_F5ZJC0 PpGpp synthetase 0.746909318031 0.5 -0.246909318031 +UniRef50_Q8DUK3 Probable thiol peroxidase 1.6755991869 0.5 -1.1755991869 +UniRef50_UPI0003EAABA8 PREDICTED 0.659547263896 0.5 -0.159547263896 +UniRef50_C4L7S9 30S ribosomal protein S10 0.0304001815872 0.5 0.469599818413 +UniRef50_B5YGX0 Phosphoglucosamine mutase 0.41109336619 0.5 0.0889066338104 +UniRef50_UPI00047DE500 ABC transporter ATP binding protein 0.263020852233 0.5 0.236979147767 +UniRef50_UPI000466389B hypothetical protein 0.181296542376 0.499999999999 0.318703457624 +UniRef50_Q92PK6 Anhydro N acetylmuramic acid kinase 0.0984167111529 0.5 0.401583288847 +UniRef50_UPI00035E7A12 hypothetical protein, partial 0.327915879399 0.5 0.172084120601 +UniRef50_Q5LKT8 Branched chain amino acid aminotransferase, putative 2.49066453766 0.5 -1.99066453766 +UniRef50_P0AF42 Inner membrane protein YijD 0.68276754328 0.5 -0.18276754328 +UniRef50_V4QDE8 0.112634268794 0.5 0.387365731205 +UniRef50_U8EUK5 1.28396114796 0.499999999999 -0.783961147955 +UniRef50_F6BNG0 Mov34 MPN PAD 1 family protein 0.735288442164 0.5 -0.235288442164 +UniRef50_UPI0003820CC8 hypothetical protein 0.351025790327 0.5 0.148974209673 +UniRef50_UPI0003C7BE7D MerR family transcriptional regulator 2.8651625658 0.5 -2.3651625658 +UniRef50_J3L9G7 1.93288653958 0.499999999999 -1.43288653958 +UniRef50_K7RLI9 Myo inositol catabolism protein 0.0780963263284 0.5 0.421903673672 +UniRef50_A7I8B8 Proteasome activating nucleotidase 7.18921937142 0.500000000007 -6.68921937142 +UniRef50_U7JTW3 0.0797575378406 0.5 0.420242462159 +UniRef50_UPI00036B2583 MULTISPECIES 0.22562393578 0.5 0.27437606422 +UniRef50_A0A022SAV9 Glucose Sorbosone dehydrogenase family protein 0.0504413970647 0.5 0.449558602935 +UniRef50_UPI00034D4ECA hypothetical protein 8.91159984286 0.499999999998 -8.41159984285 +UniRef50_D3HHR2 0.768668178859 0.5 -0.268668178859 +UniRef50_UPI00036B57D3 hypothetical protein, partial 1.31050510549 0.5 -0.810505105485 +UniRef50_W8YGK7 0.557845140255 0.5 -0.0578451402546 +UniRef50_J0D235 0.255291528226 0.5 0.244708471774 +UniRef50_UPI000464FCC9 resolvase, partial 1.3937122782 0.5 -0.893712278201 +UniRef50_A9WEB9 Thioesterase superfamily protein 0.00655890307184 0.5 0.493441096928 +UniRef50_B7LPQ4 N acetyl D glucosamine kinase 13.7935421647 0.499999999999 -13.2935421647 +UniRef50_Q8KWX4 DNA directed RNA polymerase subunit beta 0.930697770888 0.5 -0.430697770888 +UniRef50_D4JIJ4 Saccharopine dehydrogenase and related proteins 0.0250092522183 0.5 0.474990747782 +UniRef50_F2CTX8 Predicted protein 0.311390306052 0.5 0.188609693948 +UniRef50_A7A5J4 0.450544935762 0.5 0.0494550642378 +UniRef50_UPI0003609C50 MULTISPECIES 0.501542947685 0.5 -0.00154294768492 +UniRef50_UPI00042A54EF 2,5 diketo D gluconic acid reductase 1.39115339707 0.5 -0.891153397072 +UniRef50_Q5KX02 Deoxyribose phosphate aldolase 0.634937357563 0.5 -0.134937357563 +UniRef50_UPI0003657039 flagellar P ring protein FlgI 0.465201955741 0.5 0.0347980442595 +UniRef50_S5YTM5 Acetamidase formamidase 0.892984472216 0.5 -0.392984472216 +UniRef50_UPI0004704B80 hypothetical protein, partial 0.0799072944951 0.5 0.420092705505 +UniRef50_Q9FFE6 Probable acyl activating enzyme 5, peroxisomal 3.50480393218 0.499999999993 -3.00480393217 +UniRef50_I0B601 0.00724016881204 0.5 0.492759831188 +UniRef50_P36843 Arginine biosynthesis bifunctional protein ArgJ 1.72607597819 0.5 -1.22607597819 +UniRef50_P00644 Thermonuclease 6.44218561277 0.500000000001 -5.94218561277 +UniRef50_M1LU25 Ferredoxin NADP+ reductase 0.013981849395 0.5 0.486018150605 +UniRef50_UPI00039B2C8B hypothetical protein, partial 0.0425811555643 0.5 0.457418844436 +UniRef50_Q21E72 Phosphate import ATP binding protein PstB 1.38131175173 0.5 -0.881311751727 +UniRef50_A4WXS2 2.24149791735 0.499999999999 -1.74149791735 +UniRef50_A6QDJ4 3.12032906675 0.5 -2.62032906675 +UniRef50_Q6LLL9 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.00176805028751 0.5 0.498231949712 +UniRef50_F6F2F7 Sodium hydrogen exchanger 1.42405882395 0.5 -0.924058823953 +UniRef50_W9TLX8 Cytochrome C type biogenesis protein CcmF 0.606667036311 0.5 -0.106667036311 +UniRef50_U7J4M5 0.00656282372124 0.5 0.493437176279 +UniRef50_B8ENG6 Peptide deformylase 0.821687408684 0.5 -0.321687408684 +UniRef50_UPI00046F07FD chromosome partitioning protein ParB 0.0377407391046 0.5 0.462259260895 +UniRef50_E0VHF0 0.169945693642 0.5 0.330054306358 +UniRef50_L4XF07 D galactonate transporter 0.426219289297 0.5 0.0737807107027 +UniRef50_B2TRD7 Peptidase, M23 M37 family 0.239254995971 0.5 0.260745004029 +UniRef50_UPI00040D222C hypothetical protein 1.79819881647 0.500000000001 -1.29819881647 +UniRef50_M2LUA1 Myosin cross reactive antigen 4.02648937662 0.500000000004 -3.52648937662 +UniRef50_A8GM77 NADH quinone oxidoreductase subunit F 4.08362010544 0.5 -3.58362010544 +UniRef50_A3JRD5 0.247821017585 0.5 0.252178982415 +UniRef50_UPI0003684E03 hypothetical protein 0.919298654246 0.5 -0.419298654246 +UniRef50_Q2YVA6 0.930153594561 0.5 -0.430153594561 +UniRef50_A4WT37 Flagellin domain protein 1.55555498938 0.5 -1.05555498938 +UniRef50_A3CMD6 Cobalamin independent methionine synthase II, putative 1.09283271583 0.5 -0.592832715825 +UniRef50_UPI00037F264A hypothetical protein 0.24320508548 0.5 0.25679491452 +UniRef50_A3M7T3 0.0205781730724 0.5 0.479421826927 +UniRef50_Q3IVA4 DNA binding protein, H NS family 2.05214432186 0.499999999998 -1.55214432186 +UniRef50_A7C736 Cell shape determining protein 1.96988676297 0.500000000002 -1.46988676297 +UniRef50_P21639 Precorrin 2 C methyltransferase 1.15516519586 0.5 -0.655165195861 +UniRef50_UPI000370964C hypothetical protein 0.701634975377 0.5 -0.201634975377 +UniRef50_Q3IYL4 17.3863683847 0.500000000005 -16.8863683847 +UniRef50_I4D0J0 DNA repair protein radA 0.593616566432 0.5 -0.0936165664321 +UniRef50_W7WR28 Lactate utilization protein A 0.0747420790591 0.5 0.425257920941 +UniRef50_C5CNW9 Alkanesulfonate monooxygenase 0.0454799667153 0.5 0.454520033285 +UniRef50_Q182W3 Stage IV sporulation protein A 0.103347559964 0.5 0.396652440036 +UniRef50_V5BSI8 0.045596349025 0.5 0.454403650975 +UniRef50_L7WY01 2.5705727185 0.500000000001 -2.0705727185 +UniRef50_UPI00035E8B7E hypothetical protein 0.66870173894 0.5 -0.16870173894 +UniRef50_UPI00035057EC PREDICTED 0.31956030781 0.5 0.18043969219 +UniRef50_F5M5C7 XRE family transcriptional regulator 4.95139297613 0.5 -4.45139297613 +UniRef50_UPI000381892F hypothetical protein 0.493733828607 0.5 0.00626617139328 +UniRef50_Q5LN51 RmuC domain protein 2.62797751301 0.5 -2.12797751301 +UniRef50_Q7MT83 Ribose phosphate pyrophosphokinase 0.000679637652051 0.5 0.499320362348 +UniRef50_UPI00046FE313 hypothetical protein, partial 0.0614198192821 0.5 0.438580180718 +UniRef50_UPI0003610E12 hypothetical protein 0.176522591042 0.5 0.323477408958 +UniRef50_R9SMA2 Radical SAM domain containing protein 6.57304339149 0.499999999996 -6.07304339148 +UniRef50_F5XLU5 NADH quinone oxidoreductase subunit M 0.00892319857844 0.5 0.491076801421 +UniRef50_Q8X582 Laminin binding fimbrial subunit ElfA 0.55418046745 0.5 -0.0541804674498 +UniRef50_UPI0003943B89 PREDICTED 0.220046804204 0.5 0.279953195796 +UniRef50_R9YQF0 Alpha acetolactate decarboxylase 2.06879441156 0.499999999999 -1.56879441156 +UniRef50_P77416 Hydrogenase 4 component D 1.50889666114 0.5 -1.00889666114 +UniRef50_UPI000477B336 ABC transporter 1.72384699311 0.5 -1.22384699311 +UniRef50_Q02F98 NH dependent NAD(+) synthetase 0.505546062282 0.5 -0.00554606228242 +UniRef50_G2IZ95 FIST domain protein 0.342184086787 0.5 0.157815913213 +UniRef50_P77333 HTH type transcriptional regulator PgrR 0.47968640373 0.5 0.02031359627 +UniRef50_I4CYH2 Epoxide hydrolase 0.0861554585251 0.5 0.413844541475 +UniRef50_A3PI48 Glucose 1 phosphate adenylyltransferase 3.16016872397 0.5 -2.66016872397 +UniRef50_Q0ALN8 MotA TolQ ExbB proton channel 0.622618429639 0.5 -0.122618429639 +UniRef50_C3AI25 0.0187751199163 0.5 0.481224880084 +UniRef50_UPI00036C9A3E hypothetical protein 0.45824413732 0.5 0.04175586268 +UniRef50_UPI000474F64C hypothetical protein 0.381627572914 0.5 0.118372427086 +UniRef50_UPI0004778BE4 hypothetical protein 1.03513168216 0.5 -0.535131682163 +UniRef50_A0A023RZD3 0.00515920243784 0.5 0.494840797562 +UniRef50_D9SU99 Glycosyl transferase group 1 0.278643537643 0.5 0.221356462357 +UniRef50_UPI00037EBCF0 hypothetical protein 1.37335330076 0.5 -0.873353300757 +UniRef50_UPI00030C6615 ATPase AAA 0.229810458414 0.5 0.270189541586 +UniRef50_A3S801 17.6675009542 0.500000000004 -17.1675009542 +UniRef50_P49938 Iron hydroxamate import ATP binding protein FhuC 0.0376864720842 0.5 0.462313527916 +UniRef50_A4WQH4 4.05703493439 0.500000000001 -3.55703493439 +UniRef50_UPI0003B6A5DD serine threonine phosphatase 0.253060996772 0.5 0.246939003228 +UniRef50_C9D174 Recombinase 0.289333823191 0.5 0.210666176809 +UniRef50_UPI000464FB82 hypothetical protein 0.0507490783846 0.5 0.449250921615 +UniRef50_Q887Q9 Alginate biosynthesis protein AlgA 0.422910139175 0.5 0.0770898608246 +UniRef50_W8S5E9 ATP synthase protein I2 0.272806292566 0.5 0.227193707434 +UniRef50_Q8DSN0 Trans 2 decenoyl [acyl carrier protein] isomerase 0.475669303295 0.5 0.0243306967047 +UniRef50_X1B5W7 Marine sediment metagenome DNA, contig 0.804649986862 0.5 -0.304649986862 +UniRef50_P0ACV2 Protein Ddg 1.61505099328 0.5 -1.11505099328 +UniRef50_X2I2X2 Type I restriction enzyme, S subunit 0.14901544491 0.5 0.35098455509 +UniRef50_UPI0003743283 hypothetical protein 0.118723307837 0.5 0.381276692163 +UniRef50_UPI000376D2EE hypothetical protein 0.470497540703 0.5 0.0295024592969 +UniRef50_H8H3X9 0.013503656324 0.5 0.486496343676 +UniRef50_UPI00016C4EB2 CoA transferase 0.014548750353 0.5 0.485451249647 +UniRef50_R4KIZ1 0.0190984067019 0.500000000001 0.480901593297 +UniRef50_UPI00046550E0 ABC transporter permease 0.513564458237 0.5 -0.0135644582366 +UniRef50_P41443 Putative type II secretion system protein H 4.13217847223 0.500000000001 -3.63217847224 +UniRef50_Q6LUZ6 Glutamate ammonia ligase adenylyltransferase 1.26232363954 0.5 -0.762323639537 +UniRef50_A5UN96 Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA 3.90752563051 0.500000000003 -3.40752563051 +UniRef50_R1GH14 6 pyruvoyl tetrahydropterin synthase 0.0826783797258 0.5 0.417321620274 +UniRef50_Q2FME4 Transport system permease protein 3.09864535903 0.499999999999 -2.59864535903 +UniRef50_UPI000255A6BC hypothetical protein 1.65330805102 0.5 -1.15330805102 +UniRef50_D6SDT2 PTS system, glucose subfamily, IIA component 2.54259960328 0.5 -2.04259960328 +UniRef50_G0LQ60 3.38626851118 0.5 -2.88626851118 +UniRef50_X2MMA8 14.6171235644 0.500000000002 -14.1171235644 +UniRef50_V5IK03 Putative thyroid hormone receptor associated protein complex subunit 0.0254759523485 0.5 0.474524047651 +UniRef50_B8FK17 Putative flagellar rod assembly protein muramidase FlgJ 0.309001928477 0.5 0.190998071523 +UniRef50_R0J3J3 1.0527937763 0.5 -0.552793776304 +UniRef50_I1ZKX0 UDP N acetylmuramoyl tripeptide D alanyl D alanine ligase 0.508820261032 0.5 -0.00882026103165 +UniRef50_UPI0004059FEB methionine aminopeptidase 1.40786334891 0.5 -0.907863348908 +UniRef50_UPI0003C3A0E4 PREDICTED 1.97731169112 0.5 -1.47731169112 +UniRef50_UPI000366D9A0 hypothetical protein, partial 0.0335928632091 0.5 0.466407136791 +UniRef50_UPI0003B4B64F hypothetical protein 1.39407278183 0.5 -0.894072781826 +UniRef50_L1N290 TRAP transporter, DctM subunit 1.2673027918 0.5 -0.767302791802 +UniRef50_A5ULG2 Shikimate kinase 0.981677612112 0.5 -0.481677612112 +UniRef50_UPI0004202308 hypothetical protein 0.183825692332 0.5 0.316174307668 +UniRef50_UPI00040D932D DNA processing protein DprA 0.44121720179 0.5 0.0587827982099 +UniRef50_Q1CWT2 ATP synthase subunit alpha 0.126064300379 0.5 0.373935699621 +UniRef50_T0U356 ABC transporter, ATP binding permease protein 2.21714514304 0.5 -1.71714514304 +UniRef50_U2YP81 L proline glycine betaine binding ABC transporter protein ProX 1.73034751751 0.499999999999 -1.23034751751 +UniRef50_Q4L675 Anthranilate synthase component II 1.41662398495 0.5 -0.916623984953 +UniRef50_P06770 FeMo cofactor biosynthesis protein NifB 2.48947646183 0.5 -1.98947646183 +UniRef50_G7LYR7 Oligopeptide dipeptide ABC transporter, ATPase subunit 0.0981064766999 0.5 0.4018935233 +UniRef50_A0A059ECE9 0.469603326805 0.5 0.0303966731952 +UniRef50_UPI0002625F09 monosaccharide transporting ATPase 2.60614470332 0.499999999998 -2.10614470332 +UniRef50_A5UKX5 Phosphomannomutase, ManB 1.42020252309 0.500000000001 -0.920202523094 +UniRef50_UPI00036BA739 hypothetical protein 0.467292139771 0.5 0.0327078602294 +UniRef50_Q8XXJ7 5 hydroxyisourate hydrolase 0.4177355041 0.5 0.0822644959 +UniRef50_Q5HKE5 Serine protease 1.48314185792 0.5 -0.983141857917 +UniRef50_Q99335 Transposase for insertion sequence element IS232 0.230660093935 0.5 0.269339906065 +UniRef50_UPI0003EC0F26 PREDICTED 0.742566526501 0.5 -0.242566526501 +UniRef50_X8EYS2 0.0967785101202 0.5 0.40322148988 +UniRef50_F6D6R1 Polymorphic outer membrane protein 11.3967877068 0.499999999999 -10.8967877068 +UniRef50_UPI0003B67906 glycine cleavage system protein H 1.48768168258 0.5 -0.987681682578 +UniRef50_Q02000 Anthranilate phosphoribosyltransferase 0.701491178311 0.5 -0.201491178311 +UniRef50_Q2T960 Transposase 1.65463127546 0.5 -1.15463127546 +UniRef50_O05393 O acetylserine dependent cystathionine beta synthase 0.00113137903978 0.5 0.49886862096 +UniRef50_Q3JHP8 0.167798814512 0.5 0.332201185488 +UniRef50_Q3I510 EaeH 0.60515905661 0.5 -0.10515905661 +UniRef50_Q5HRF6 Octanoyl [GcvH] 1.64378343511 0.499999999998 -1.14378343511 +UniRef50_E6MUI1 Transposase for insertion sequence element IS4351 0.00917238554276 0.5 0.490827614457 +UniRef50_F0P3X1 Membrane protein, putative 2.18337482975 0.5 -1.68337482975 +UniRef50_A0A011PV93 NADH quinone oxidoreductase subunit M 1.19321780421 0.5 -0.693217804205 +UniRef50_M9VNY9 Trehalose 6 phosphate phosphatase 0.0823615271438 0.5 0.417638472856 +UniRef50_Q7VRS0 Probable malate 0.181983178622 0.5 0.318016821378 +UniRef50_S0AB89 FAD dependent pyridine nucleotide disulfide oxidoreductase 0.582963590433 0.5 -0.0829635904326 +UniRef50_Q725Q3 5 methyltetrahydropteroyltriglutamate homocysteine methyltransferase 2.13592939468 0.499999999997 -1.63592939468 +UniRef50_K5Z1T4 0.32101876577 0.5 0.17898123423 +UniRef50_E6UA31 IstB domain protein ATP binding protein 0.315690264623 0.5 0.184309735377 +UniRef50_Q5HP08 1.02313272368 0.5 -0.523132723679 +UniRef50_UPI000262C9F7 malonyl CoA ACP transacylase 0.198238755821 0.5 0.301761244179 +UniRef50_D3E006 1.05500688463 0.5 -0.555006884632 +UniRef50_Z6ILY0 2.75241808908 0.500000000001 -2.25241808908 +UniRef50_UPI000365DBB0 hypothetical protein 0.659319883915 0.5 -0.159319883915 +UniRef50_B1ZNE5 50S ribosomal protein L2 0.0202594383609 0.5 0.479740561639 +UniRef50_H0J5U8 Beta lactamase like protein 1.98847497117 0.5 -1.48847497117 +UniRef50_Q9CD72 ATP dependent DNA helicase UvrD1 0.77485285346 0.5 -0.27485285346 +UniRef50_Q2IQ01 Polyribonucleotide nucleotidyltransferase 0.233026340004 0.5 0.266973659996 +UniRef50_P13458 Nuclease SbcCD subunit C 0.676458484616 0.5 -0.176458484616 +UniRef50_A6LTD7 Regulatory protein, LacI 0.303968402768 0.5 0.196031597232 +UniRef50_UPI000471A07E hypothetical protein 0.0341243744599 0.5 0.46587562554 +UniRef50_Q9ZFV2 Ethanolamine utilization protein EutA 2.83719581956 0.5 -2.33719581956 +UniRef50_Q5HHC7 NAD specific glutamate dehydrogenase 1.73605681078 0.5 -1.23605681078 +UniRef50_Q8ZQZ8 Nicotinate nucleotide adenylyltransferase 0.236172799007 0.5 0.263827200993 +UniRef50_UPI00016C532F competence protein 1.23808340537 0.499999999999 -0.738083405367 +UniRef50_W8ESZ0 MFS transporter 0.0123586049594 0.5 0.487641395041 +UniRef50_Q18GT4 Ketol acid reductoisomerase 0.467846949734 0.5 0.0321530502656 +UniRef50_B2UX29 Probable tRNA sulfurtransferase 0.0591005832439 0.499999999999 0.440899416757 +UniRef50_L8P9Y5 0.724719536941 0.5 -0.224719536941 +UniRef50_UPI0003782695 hypothetical protein 0.0764295265941 0.5 0.423570473405 +UniRef50_UPI0004687CD1 hypothetical protein 0.119330781605 0.5 0.380669218395 +UniRef50_D4FA45 3.84668050396 0.5 -3.34668050396 +UniRef50_P77161 2 hydroxy 3 oxopropionate reductase 2.88570350283 0.499999999999 -2.38570350283 +UniRef50_P0AG22 GTP pyrophosphokinase 2.1548132764 0.5 -1.6548132764 +UniRef50_UPI000376960F hypothetical protein 0.37261148135 0.5 0.12738851865 +UniRef50_R6GAB3 0.0169232404933 0.5 0.483076759507 +UniRef50_V5TWY7 PTS system glucose specific transporter subunit IICBA 1.42739311857 0.5 -0.927393118572 +UniRef50_P0AAY8 4.51608376098 0.5 -4.01608376098 +UniRef50_B9DPU7 SpoU rRNA Methylase family protein 3.04168998796 0.500000000003 -2.54168998796 +UniRef50_Q9KT08 Phosphate acetyltransferase 0.0473585696491 0.5 0.452641430351 +UniRef50_E8RV78 Thioesterase superfamily protein 0.204648299664 0.5 0.295351700336 +UniRef50_R5QLK2 UPF0301 protein BN820_01713 0.335205144771 0.5 0.164794855229 +UniRef50_A6LR77 0.763436233057 0.5 -0.263436233057 +UniRef50_I0C756 Phage infection protein 2.16859299631 0.5 -1.66859299631 +UniRef50_UPI0003B7187B hypothetical protein 0.289957522501 0.5 0.210042477499 +UniRef50_Q8X5K0 2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase 1.11707139629 0.500000000001 -0.617071396287 +UniRef50_A3M2F6 TraB protein 0.011512946438 0.5 0.488487053562 +UniRef50_W9R3M0 F box LRR repeat protein 20 0.356944565919 0.5 0.143055434081 +UniRef50_P0A042 Penicillinase repressor 5.42784430012 0.5 -4.92784430012 +UniRef50_UPI000477F667 oligo 1,6 glucosidase 0.094878981614 0.5 0.405121018386 +UniRef50_D0Z4T1 Sex pilus assembly and synthesis protein TraW 2.59970115698 0.5 -2.09970115698 +UniRef50_UPI0003B35337 metallophosphatase 0.0701082751611 0.500000000001 0.429891724838 +UniRef50_E5AMJ1 5 methyltetrahydrofolate homocysteine methyltransferase homocysteine binding subunit 3.76364131537 0.499999999997 -3.26364131537 +UniRef50_A7N2P9 Oxygen dependent choline dehydrogenase 2.28643288405 0.500000000001 -1.78643288405 +UniRef50_Q02443 Protein PucC 2.40692133475 0.5 -1.90692133475 +UniRef50_UPI0003654508 hypothetical protein 0.0977369880828 0.5 0.402263011917 +UniRef50_A5ULF0 Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA 5.76939986869 0.500000000005 -5.26939986869 +UniRef50_A3M7N4 Chaperone protein 0.0121182185697 0.5 0.48788178143 +UniRef50_UPI00034630B7 hypothetical protein 3.23114881597 0.500000000001 -2.73114881597 +UniRef50_UPI0004666EB5 peptide ABC transporter permease 0.302771109368 0.5 0.197228890632 +UniRef50_E4RBH8 FolC 0.752766803575 0.5 -0.252766803575 +UniRef50_Q2YSR2 Probable transcriptional regulatory protein SAB0618 2.75666557454 0.499999999999 -2.25666557454 +UniRef50_G7M175 Regulatory protein MerR 0.0325039491706 0.5 0.467496050829 +UniRef50_C6A2X9 Protein TSIB_0916 0.898658862276 0.5 -0.398658862276 +UniRef50_A6LR78 0.289426331402 0.5 0.210573668598 +UniRef50_H6P8H2 0.407650460254 0.5 0.0923495397462 +UniRef50_F7S8I9 Integral membrane protein MviN 0.573345269304 0.5 -0.0733452693037 +UniRef50_S9S8H7 Enoyl [acyl carrier protein] reductase 0.280820096623 0.5 0.219179903377 +UniRef50_K8BPK1 TRAP type C4 dicarboxylate transport system,large permease component 0.784710768054 0.5 -0.284710768054 +UniRef50_A1AYY0 Phage portal protein, HK97 family 1.58286618859 0.5 -1.08286618859 +UniRef50_UPI00035D2BA5 hypothetical protein 2.63899793311 0.5 -2.13899793311 +UniRef50_UPI0003B75FCC SpeB arginase agmatinase formimionoglutamate hydrolase SpeB 0.133070088198 0.500000000001 0.366929911802 +UniRef50_Q72ZS2 0.104333308077 0.5 0.395666691923 +UniRef50_Q5HKE8 Accumulation associated protein 1.17811167481 0.5 -0.678111674805 +UniRef50_UPI0004726693 hypothetical protein 0.00580172278905 0.499999999999 0.494198277211 +UniRef50_Q9HWU3 Chaperone CupB2 1.12166342269 0.5 -0.621663422689 +UniRef50_B2FQX2 tRNA specific 2 thiouridylase MnmA 38.6499258008 0.5 -38.1499258008 +UniRef50_I0E539 Integral membrane protein 0.0280518969033 0.5 0.471948103097 +UniRef50_D9WMQ1 Linear gramicidin synthetase LgrC 0.28988630021 0.5 0.21011369979 +UniRef50_Q8CUF5 1.85030009534 0.5 -1.35030009534 +UniRef50_B2IUI4 S adenosylmethionine synthase 0.263769269322 0.5 0.236230730678 +UniRef50_C1CSL1 Transposase 3.9433545322 0.499999999999 -3.4433545322 +UniRef50_UPI000288C7BA 30S ribosomal protein S4 0.730294099796 0.5 -0.230294099796 +UniRef50_S2E7R7 GMP synthase , N terminal domain protein (Fragment) 0.545272952553 0.5 -0.045272952553 +UniRef50_UPI0003787C04 hypothetical protein 0.145663711527 0.5 0.354336288473 +UniRef50_Q8CUF8 1.52577555586 0.5 -1.02577555586 +UniRef50_P39434 Soluble lytic murein transglycosylase 5.42194346687 0.499999999997 -4.92194346687 +UniRef50_T1YBP6 0.897804439648 0.5 -0.397804439648 +UniRef50_D8LEF1 0.13699384162 0.5 0.36300615838 +UniRef50_UPI0001912679 hypothetical protein, partial 0.144482071399 0.5 0.355517928601 +UniRef50_C7RGN8 NusA antitermination factor 0.168803996715 0.5 0.331196003285 +UniRef50_UPI0004715BAF hypothetical protein 0.0150624832583 0.5 0.484937516742 +UniRef50_F0KKH9 0.00988114627541 0.5 0.490118853725 +UniRef50_A1KR53 Truncated pilin 0.405324655126 0.5 0.0946753448742 +UniRef50_C1FK14 Transcriptional regulator, PadR family 0.298320649891 0.5 0.201679350109 +UniRef50_C6DIM2 p hydroxybenzoic acid efflux pump subunit AaeA 0.75149569435 0.5 -0.25149569435 +UniRef50_UPI0003B3D425 hypothetical protein 1.21020150957 0.5 -0.710201509569 +UniRef50_W9UYG1 1.22820662438 0.5 -0.728206624379 +UniRef50_UPI00046605A2 ABC transporter permease, partial 3.24223716523 0.5 -2.74223716523 +UniRef50_UPI0003634E25 hypothetical protein 1.38054305683 0.5 -0.880543056833 +UniRef50_UPI0004779514 ABC transporter ATP binding protein 0.176813307034 0.5 0.323186692966 +UniRef50_UPI0002881118 ribosome biogenesis GTPase ObgE 0.00772444900094 0.499999999999 0.492275551 +UniRef50_UPI0003FA120A hypothetical protein 0.287436314263 0.5 0.212563685737 +UniRef50_A5UL98 Cobalt ABC transporter, permease component, CbiQ 2.55979695167 0.499999999998 -2.05979695167 +UniRef50_A4IK74 Phosphomethylpyrimidine synthase 0.134757008493 0.5 0.365242991507 +UniRef50_A9XTE3 Jhp0563 like glycosyltransferase 0.336656984694 0.5 0.163343015306 +UniRef50_W7X9E0 0.0871158194285 0.5 0.412884180572 +UniRef50_UPI00016A4104 Succinate semialdehyde dehydrogenase (+)) 0.336909652277 0.5 0.163090347723 +UniRef50_A6LY03 ABC transporter related 0.087646480004 0.500000000001 0.412353519995 +UniRef50_X1JM57 Marine sediment metagenome DNA, contig 0.909959364408 0.5 -0.409959364408 +UniRef50_UPI00046E044E 0.80999551224 0.5 -0.30999551224 +UniRef50_C5YVS6 0.0779594221566 0.5 0.422040577843 +UniRef50_UPI00047E12F0 hypothetical protein 0.0388470996491 0.5 0.461152900351 +UniRef50_A7FM33 Polyamine aminopropyl transferase 2.4999909585 0.500000000001 -1.99999095851 +UniRef50_D3D5C3 4.60892789755 0.500000000002 -4.10892789755 +UniRef50_F7Q1E0 Carbonic anhydrase Gamma family Zn dependent enzyme protein 0.554560081784 0.5 -0.0545600817844 +UniRef50_D5BS21 Surface presentation of antigens protein 2.66168403088 0.5 -2.16168403088 +UniRef50_UPI000363FFD6 hypothetical protein 0.189886048036 0.5 0.310113951964 +UniRef50_A0A017HJR6 Uracil DNA glycosylase, family 4 0.0223265109036 0.499999999999 0.477673489097 +UniRef50_UPI000363A8BB hypothetical protein 0.0349759078492 0.499999999999 0.465024092151 +UniRef50_W0F5U5 Spermidine putrescine ABC transporter permease protein 0.708587898757 0.5 -0.208587898757 +UniRef50_D9RGW2 SWIM zinc finger domain protein 4.56577376123 0.500000000006 -4.06577376124 +UniRef50_N8ZPV3 0.00269296069367 0.5 0.497307039306 +UniRef50_P28306 UPF0755 protein YceG 3.35547773071 0.499999999999 -2.85547773071 +UniRef50_UPI0003B40484 ABC transporter substrate binding protein 0.203322167906 0.5 0.296677832094 +UniRef50_A0A023LG84 0.568516385781 0.5 -0.0685163857807 +UniRef50_T2A0U3 1.10341346188 0.5 -0.603413461878 +UniRef50_M7DV55 ATP binding protein 1.75812078328 0.5 -1.25812078328 +UniRef50_O67260 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha 1.57509321423 0.5 -1.07509321423 +UniRef50_T2SKF0 0.0286270304398 0.5 0.47137296956 +UniRef50_R4MC14 Poly polymerase 0.0252451274705 0.5 0.47475487253 +UniRef50_N0C862 Histidine kinase 0.32475060561 0.5 0.17524939439 +UniRef50_Q4SDM4 Chromosome 10 SCAF14634, whole genome shotgun sequence 0.321064121026 0.5 0.178935878974 +UniRef50_UPI00047BEAD1 carnitine dehydratase 0.0261617695678 0.5 0.473838230433 +UniRef50_A4VS16 Predicted esterase of the alpha beta hydrolase superfamily 0.326081946743 0.5 0.173918053257 +UniRef50_R5N6D2 DNA repair protein radA 0.0707295985778 0.5 0.429270401422 +UniRef50_A0LT91 S malonyltransferase like protein 0.0197978106691 0.5 0.480202189331 +UniRef50_UPI00047DAB1B 3 ketoacyl ACP reductase 0.0593422725684 0.5 0.440657727432 +UniRef50_UPI000350AD27 PREDICTED 1.24525778491 0.500000000001 -0.74525778491 +UniRef50_UPI0003689445 hypothetical protein 2.07887654085 0.5 -1.57887654085 +UniRef50_A3XF72 1.39424140955 0.5 -0.89424140955 +UniRef50_UPI0003767FF8 MULTISPECIES 0.00406563564809 0.5 0.495934364352 +UniRef50_A6M2A6 0.149879921015 0.5 0.350120078985 +UniRef50_UPI0001AF2BB8 hypothetical protein 0.525232625943 0.5 -0.025232625943 +UniRef50_UPI00046AF737 iron transporter FeoB 0.0576601700704 0.5 0.442339829929 +UniRef50_UPI0003B74184 pyridine nucleotide disulfide oxidoreductase 0.0592666526899 0.5 0.44073334731 +UniRef50_Q1C306 Serine threonine transporter SstT 0.0434349297451 0.500000000001 0.456565070254 +UniRef50_UPI0004728704 dihydrofolate reductase 0.280302666806 0.5 0.219697333194 +UniRef50_O06745 Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase 0.298179983223 0.5 0.201820016777 +UniRef50_Q1BQE2 Oxygen dependent choline dehydrogenase 0.112564740768 0.5 0.387435259232 +UniRef50_Q17WJ2 Lipid A disaccharide synthase 0.0118544322817 0.5 0.488145567718 +UniRef50_Q8R9S4 Diaminopimelate epimerase 0.277838207096 0.5 0.222161792904 +UniRef50_Q67Q92 Queuine tRNA ribosyltransferase 0.477008234067 0.5 0.0229917659334 +UniRef50_UPI0001A64225 ubiquitin activating enzyme E1C 0.624909571922 0.5 -0.124909571922 +UniRef50_UPI0001B43C5C hypothetical protein 0.40077811333 0.5 0.0992218866697 +UniRef50_I6DSS5 Inner membrane transport YhaO domain protein 0.062237548124 0.5 0.437762451876 +UniRef50_UPI000328C4DC PREDICTED 0.410649196137 0.5 0.089350803863 +UniRef50_B2SSQ5 MazG family protein 0.752771226081 0.5 -0.252771226081 +UniRef50_P56468 Adenylosuccinate lyase 0.00281700335267 0.5 0.497182996647 +UniRef50_A4W496 Glutamate tRNA ligase 1.06501205562 0.5 -0.565012055622 +UniRef50_A3M472 Putative VGR related protein 0.0178346298689 0.5 0.482165370131 +UniRef50_L1ENB1 4Fe 4S binding domain protein 0.240332043478 0.5 0.259667956522 +UniRef50_UPI00035C121E hypothetical protein 0.655346236282 0.5 -0.155346236282 +UniRef50_A7ZV28 Elongation factor P beta lysine ligase 1.60345124702 0.499999999999 -1.10345124701 +UniRef50_D9WVR9 Putative PE PGRS family protein 0.0523455448026 0.5 0.447654455198 +UniRef50_P62410 Phosphoglycerate kinase 0.554872026521 0.5 -0.054872026521 +UniRef50_F2QFE8 ABC transporter, membrane spanning permease amino acid transport 1.18113119782 0.5 -0.681131197816 +UniRef50_UPI00038138EB hypothetical protein 0.726899440049 0.5 -0.226899440049 +UniRef50_A0A009ENE3 0.250314847332 0.5 0.249685152668 +UniRef50_R4YI13 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome 0.133533418118 0.5 0.366466581882 +UniRef50_B2JNG5 Response regulator receiver modulated diguanylate cyclase 0.229402353224 0.5 0.270597646776 +UniRef50_N6UYM2 0.247571675651 0.5 0.252428324349 +UniRef50_Q5HKC3 Membrane protein, putative 1.17153361777 0.5 -0.671533617765 +UniRef50_Q6F9M2 0.0269610800979 0.5 0.473038919902 +UniRef50_UPI0002F008CE hypothetical protein 0.521476347823 0.5 -0.0214763478229 +UniRef50_D6SFU4 6.89653348408 0.499999999999 -6.39653348408 +UniRef50_UPI00036F8D63 acriflavine resistance protein B, partial 1.06146330965 0.5 -0.561463309648 +UniRef50_E1SCF3 Protein CreA 0.726678749177 0.5 -0.226678749177 +UniRef50_Q09CY9 Glycerophosphoryl diester phosphodiesterase family protein 0.0242229211515 0.5 0.475777078849 +UniRef50_UPI0003B43E42 ferredoxin 0.0568769289988 0.5 0.443123071001 +UniRef50_Q5F9U6 Ferrochelatase 0.01667424658 0.5 0.48332575342 +UniRef50_B2UCS2 MJ0042 family finger like protein 7.55931163511 0.500000000002 -7.05931163511 +UniRef50_Q2SQX2 Methionyl tRNA formyltransferase 0.432984766876 0.5 0.0670152331244 +UniRef50_M2P9Q5 0.259467311919 0.5 0.240532688081 +UniRef50_Q0DG35 Glutamate synthase 2 [NADH], chloroplastic 0.076060727346 0.5 0.423939272654 +UniRef50_S5N4L1 Phosphodiesterase 0.397403291719 0.5 0.102596708281 +UniRef50_E2CN00 RNA binding region RNP 1 2.55985488062 0.500000000001 -2.05985488062 +UniRef50_M1LU43 ABC type multidrug transport system, permease component 0.0886847510268 0.5 0.411315248973 +UniRef50_Q73UD7 Uracil phosphoribosyltransferase 0.100551330203 0.5 0.399448669796 +UniRef50_G3VFK2 1.05028110634 0.5 -0.55028110634 +UniRef50_UPI00046F72B6 hypothetical protein 0.361986246423 0.5 0.138013753577 +UniRef50_M1MME7 Diguanylate cyclase with GAF sensor 0.284131381107 0.5 0.215868618893 +UniRef50_Q9RXG2 0.0365419820001 0.5 0.463458018 +UniRef50_Q492H7 NADH quinone oxidoreductase subunit B 0.40241413297 0.5 0.0975858670303 +UniRef50_Q9RU97 NADH quinone oxidoreductase subunit K 0.00160833895706 0.5 0.498391661043 +UniRef50_M4JWD8 Peptidase, M48 family protein 0.634143083597 0.5 -0.134143083597 +UniRef50_A7ZV66 3 keto L gulonate 6 phosphate decarboxylase UlaD 0.707899138638 0.5 -0.207899138638 +UniRef50_E0S0B7 HD domain containing protein 0.790920681493 0.5 -0.290920681493 +UniRef50_UPI00037812FE hypothetical protein 0.00584909587494 0.5 0.494150904125 +UniRef50_A0A016QQ81 Ferripyochelin binding protein 1.17685733403 0.5 -0.67685733403 +UniRef50_UPI0002481AAE ATP dependent DNA helicase 1.57537569597 0.5 -1.07537569597 +UniRef50_Q9HVI1 Cyclic diguanosine monophosphate binding protein PA4608 0.113488707446 0.5 0.386511292554 +UniRef50_C7NJL3 0.0605892585751 0.5 0.439410741425 +UniRef50_Q6GCB8 Probable acetyl CoA acyltransferase 2.24079542501 0.499999999998 -1.74079542501 +UniRef50_UPI0001744E0A heme oxygenase BphO 0.169771933506 0.499999999999 0.330228066494 +UniRef50_U3T6D3 0.0232954526512 0.5 0.476704547349 +UniRef50_Q9I5S3 0.311299594411 0.5 0.188700405589 +UniRef50_Q9I5S0 4.82128201896 0.500000000006 -4.32128201897 +UniRef50_G7ZR16 6 phospho beta glucosidase 4.11705566451 0.499999999998 -3.6170556645 +UniRef50_D9W5N7 Modular polyketide synthase 0.345449924222 0.5 0.154550075778 +UniRef50_A6LR15 Heavy metal transport detoxification protein 0.308493819513 0.5 0.191506180487 +UniRef50_F8TV67 1.67944129939 0.5 -1.17944129939 +UniRef50_UPI00039592BB PREDICTED 0.148439261627 0.5 0.351560738373 +UniRef50_C5C3V4 Dihydrodipicolinate synthetase 0.0163310756513 0.5 0.483668924349 +UniRef50_Q8VPM9 Putative minor silk ampullate protein 0.609981123409 0.5 -0.109981123409 +UniRef50_Q6A9K7 UvrABC system protein B 0.162483752276 0.5 0.337516247724 +UniRef50_M9VGK7 AsnC family transcriptional regulator 0.0130183275754 0.5 0.486981672424 +UniRef50_F0BGS2 0.0952152049807 0.5 0.404784795019 +UniRef50_A7X1H8 Probable dual specificity RNA methyltransferase RlmN 1.97276219054 0.499999999998 -1.47276219054 +UniRef50_I0C1J1 ABC transporter ATP binding protein 1.24253066979 0.5 -0.742530669793 +UniRef50_Q6A6A0 Putative N acetylmannosamine 6 phosphate 2 epimerase 0.101000300407 0.500000000001 0.398999699592 +UniRef50_B9KJF4 Flagellar protein FlgJ 0.317488673645 0.5 0.182511326355 +UniRef50_Q9KZ75 Urocanate hydratase 0.133729490927 0.5 0.366270509073 +UniRef50_A6LXE4 0.101001844737 0.5 0.398998155263 +UniRef50_Q4L666 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.52277298858 0.5 -1.02277298858 +UniRef50_C4Z005 Sex pilus assembly 6.40108153221 0.500000000001 -5.90108153222 +UniRef50_R6X9T8 HAD hydrolase family IIA 0.116410337328 0.5 0.383589662672 +UniRef50_UPI0002B45CA4 PREDICTED 1.10996351481 0.5 -0.60996351481 +UniRef50_X5A6R4 NMT1 THI5 like domain containing protein 0.0727578010707 0.5 0.42724219893 +UniRef50_UPI00036E0775 hypothetical protein 0.72266833484 0.5 -0.22266833484 +UniRef50_A6LY63 Restriction modification system DNA specificity domain 0.328167923057 0.5 0.171832076943 +UniRef50_A0A016QUC8 UvrABC system protein B 0.0015538090921 0.5 0.498446190908 +UniRef50_P64625 4.65803673053 0.499999999999 -4.15803673053 +UniRef50_A6M107 AzlC family protein 0.288594916491 0.5 0.211405083509 +UniRef50_UPI0003C16A5C PREDICTED 1.36659204702 0.499999999999 -0.866592047015 +UniRef50_UPI0002E46BCB hypothetical protein 0.0610402634408 0.5 0.438959736559 +UniRef50_A9FT06 Succinate dehydrogenase 1.26504124305 0.5 -0.765041243052 +UniRef50_B4EW02 Exoribonuclease 2 1.85837126862 0.500000000001 -1.35837126863 +UniRef50_D3QD55 Hydrolase 1.51629079129 0.5 -1.01629079129 +UniRef50_T0U7I8 0.218820145432 0.5 0.281179854568 +UniRef50_UPI0003B4922D aliphatic sulfonate ABC transporter ATP binding protein 0.836490819032 0.5 -0.336490819032 +UniRef50_UPI0002C44C85 0.484030623407 0.5 0.0159693765927 +UniRef50_UPI000479BB48 MerR family transcriptional regulator 0.693296712387 0.5 -0.193296712387 +UniRef50_L7X2B6 2.59086507753 0.5 -2.09086507753 +UniRef50_E1HW74 0.879715132722 0.5 -0.379715132722 +UniRef50_Q6GGX3 Extracellular matrix binding protein ebh 36.1841030255 0.499999999992 -35.6841030255 +UniRef50_M1VHC0 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide a dehydrogenase 0.923420705318 0.5 -0.423420705318 +UniRef50_A0A011PNT7 N acetylmuramoyl L alanine amidase AmiC 0.755731458591 0.5 -0.255731458591 +UniRef50_UPI00042B1EB5 Urease isoform 3 0.305092652286 0.5 0.194907347714 +UniRef50_B9JSW9 Altronate oxidoreductase 1.27076406968 0.5 -0.770764069678 +UniRef50_D4TSX0 0.00252411184786 0.5 0.497475888152 +UniRef50_UPI00022CADD1 PREDICTED 0.172297898757 0.5 0.327702101243 +UniRef50_U6HVE2 NADH dehydrogenase iron sulfur 0.248957785562 0.5 0.251042214438 +UniRef50_H4AYY9 0.319560307807 0.5 0.180439692193 +UniRef50_UPI000467CE02 hypothetical protein 0.646091890781 0.5 -0.146091890781 +UniRef50_F4QVG8 ABC transporter ATP binding protein 0.16259712954 0.5 0.33740287046 +UniRef50_C4LBT6 CreA family protein 0.886752166098 0.5 -0.386752166098 +UniRef50_P75713 0.60103068247 0.5 -0.10103068247 +UniRef50_Q9A5B6 Histidinol phosphate aminotransferase 2 0.345792883898 0.5 0.154207116102 +UniRef50_UPI00046D93F6 30S ribosomal protein S2 0.0993747174768 0.5 0.400625282523 +UniRef50_UPI00046FBC18 ribonucleoside diphosphate reductase, partial 0.18259739653 0.5 0.31740260347 +UniRef50_E5QQY5 Magnesium transporter 3.73071567834 0.499999999999 -3.23071567834 +UniRef50_E8SE09 1.2558577535 0.5 -0.755857753499 +UniRef50_B4V430 Secreted protein 1.31579233074 0.5 -0.815792330742 +UniRef50_UPI0001BF7CE0 hypothetical protein SMAC_11079 0.15477551345 0.5 0.34522448655 +UniRef50_Q04677 Acetyl CoA acetyltransferase IB 0.148728122705 0.5 0.351271877295 +UniRef50_G8VNQ8 L lactate dehydrogenase 0.0390587867613 0.5 0.460941213239 +UniRef50_UPI00037C43AF hypothetical protein 0.27149403104 0.5 0.22850596896 +UniRef50_UPI00037D4375 hypothetical protein 0.197945684173 0.5 0.302054315827 +UniRef50_Q88J90 Ribose import ATP binding protein RbsA 7.16976053243 0.499999999999 -6.66976053243 +UniRef50_U2ZG68 2.54144613847 0.5 -2.04144613847 +UniRef50_Q896G3 Glutamate 5 kinase 0.00154917440002 0.5 0.4984508256 +UniRef50_G7VUW1 0.497250578568 0.5 0.00274942143167 +UniRef50_D6XC51 Transcriptional regulator 0.687399057763 0.5 -0.187399057763 +UniRef50_P33655 DNA primase 0.0788313250451 0.5 0.421168674955 +UniRef50_A1SJN3 Putative spermidine synthase 0.0911326416792 0.5 0.408867358321 +UniRef50_A5ULC4 Archaeosine tRNA ribosyltransferase 0.399191853407 0.5 0.100808146593 +UniRef50_UPI00037F7E70 hypothetical protein 0.126626724763 0.5 0.373373275236 +UniRef50_UPI000155436C hypothetical protein ORF028 2.07133325002 0.5 -1.57133325002 +UniRef50_D6TC11 0.216322872203 0.5 0.283677127797 +UniRef50_H6MGY8 0.300045174509 0.5 0.199954825491 +UniRef50_UPI00029A30E6 DEAD DEAH box helicase 0.141801246212 0.5 0.358198753788 +UniRef50_D2AI68 44.3872492346 0.500000000007 -43.8872492346 +UniRef50_Q5HM66 1.66846046359 0.499999999998 -1.16846046359 +UniRef50_C1L1N4 Protease HtpX homolog 0.301817332743 0.5 0.198182667257 +UniRef50_R7IC53 0.206183109724 0.5 0.293816890276 +UniRef50_Q2LSL3 Chemotaxis response regulator protein glutamate methylesterase 2 4.6126279079 0.5 -4.1126279079 +UniRef50_UPI0004659E7D hypothetical protein 0.0455801527282 0.5 0.454419847272 +UniRef50_P48372 DNA gyrase subunit A 0.127749264791 0.5 0.37225073521 +UniRef50_Q89AT7 NADH quinone oxidoreductase subunit K 0.346187227358 0.5 0.153812772642 +UniRef50_UPI00041970DE hypothetical protein 0.0677850338151 0.5 0.432214966185 +UniRef50_UPI00016C51C4 hypothetical protein 1.28037232784 0.5 -0.780372327837 +UniRef50_M5Q8W3 Opacity protein 3.05303945565 0.500000000002 -2.55303945566 +UniRef50_UPI00046AB508 ABC transporter permease 0.649206005033 0.5 -0.149206005033 +UniRef50_C6S5R7 0.067182065563 0.5 0.432817934437 +UniRef50_Q28TI8 Chromosomal replication initiator DnaA 3.06089525285 0.5 -2.56089525285 +UniRef50_Q9I633 0.48736942749 0.5 0.0126305725101 +UniRef50_S5UJA4 1.30530563217 0.5 -0.805305632174 +UniRef50_UPI0003612EB0 hypothetical protein 0.45897823033 0.5 0.0410217696696 +UniRef50_A6QI12 1.2333946019 0.499999999999 -0.7333946019 +UniRef50_UPI0003C17432 PREDICTED 5.74424803906 0.500000000001 -5.24424803906 +UniRef50_F3ZDJ3 1.95067292128 0.500000000001 -1.45067292128 +UniRef50_U5NMQ2 Phage major tail protein 2 5.21054027205 0.499999999999 -4.71054027204 +UniRef50_C6D5Z2 Inosine uridine preferring nucleoside hydrolase 1.5595258086 0.500000000002 -1.0595258086 +UniRef50_A0A032VXU1 2.25453390215 0.500000000003 -1.75453390215 +UniRef50_J4TL27 0.940504011693 0.5 -0.440504011693 +UniRef50_P33517 Cytochrome c oxidase subunit 1 2.17442727882 0.499999999999 -1.67442727882 +UniRef50_UPI000363849B hypothetical protein 0.452049535838 0.5 0.0479504641618 +UniRef50_R7B083 0.173939147675 0.5 0.326060852325 +UniRef50_P05101 Modification methylase EcoRII 0.769255483339 0.5 -0.269255483339 +UniRef50_Q83EC8 Lipoprotein signal peptidase 0.345327449737 0.5 0.154672550263 +UniRef50_Q5PK75 N acetyl gamma glutamyl phosphate reductase 1.71573691733 0.500000000001 -1.21573691733 +UniRef50_E7HD27 EAL domain protein 0.956699897578 0.5 -0.456699897578 +UniRef50_F3U4M2 TRAP dicarboxylate family transporter DctQ subunit 32.7843391602 0.499999999992 -32.2843391602 +UniRef50_B3Q9Q6 Polyphosphate kinase 0.00384825917549 0.5 0.496151740824 +UniRef50_W5YF86 0.802918575256 0.5 -0.302918575256 +UniRef50_P30866 7.35647657367 0.500000000004 -6.85647657367 +UniRef50_M1FJM0 1.29522769682 0.5 -0.795227696821 +UniRef50_Q6F7D3 Septum formation, penicillin binding protein 3, peptidoglycan synthetase 0.0046619567441 0.5 0.495338043256 +UniRef50_UPI000382D7E4 hypothetical protein 0.296966549517 0.5 0.203033450483 +UniRef50_P37755 Phosphomannomutase 0.24706806194 0.5 0.25293193806 +UniRef50_F2J6H9 Bacteriophage related protein 9.92569289027 0.499999999997 -9.42569289027 +UniRef50_F4DMU6 1.59665058027 0.499999999999 -1.09665058027 +UniRef50_UPI00036D9AC5 hypothetical protein 0.414882796685 0.5 0.0851172033153 +UniRef50_Q2RYZ8 Glyoxalase family protein 0.209756891554 0.5 0.290243108446 +UniRef50_P39400 Putative L galactonate oxidoreductase 0.970232011023 0.5 -0.470232011023 +UniRef50_K6KS82 Thiamine biosynthesis protein ThiH 1.20419746928 0.5 -0.704197469278 +UniRef50_B8GCI5 SAF domain protein 1.36922257594 0.5 -0.869222575941 +UniRef50_F9YY04 N acetylgalactosaminoglycan deacetylase 0.0911552798152 0.5 0.408844720185 +UniRef50_P23842 1.44039035604 0.499999999999 -0.940390356042 +UniRef50_UPI0003781C48 hypothetical protein 0.833973759163 0.5 -0.333973759163 +UniRef50_Q7WJ90 Isoprenyl transferase 0.0335936665603 0.5 0.46640633344 +UniRef50_P21883 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 2.94488932509 0.5 -2.44488932509 +UniRef50_P11512 DNA directed RNA polymerase subunit A 4.3629287693 0.499999999999 -3.8629287693 +UniRef50_U5MVJ3 Isochorismatase hydrolase 0.362257300904 0.5 0.137742699096 +UniRef50_UPI000462F18D hypothetical protein 1.95313470069 0.5 -1.45313470069 +UniRef50_Q8KLH5 Cbb3 type cytochrome c oxidase subunit FixP 0.790437643994 0.5 -0.290437643994 +UniRef50_Q49YW6 3.25576237429 0.500000000003 -2.75576237429 +UniRef50_UPI0002880B99 putative tartrate dehydrogenase 0.35878980762 0.5 0.14121019238 +UniRef50_M1MKH3 Xylose transport system permease protein XylH 0.272692587097 0.5 0.227307412903 +UniRef50_W6IFL4 ABC transporter ATP binding protein uup 1.78780066786 0.500000000002 -1.28780066786 +UniRef50_Q2RPU1 UPF0301 protein Rru_A3059 0.362272899872 0.5 0.137727100128 +UniRef50_R5BPH7 0.0253502077039 0.5 0.474649792296 +UniRef50_V2PEB0 Virulence factor MviN 0.488188377515 0.5 0.0118116224848 +UniRef50_M1XJR0 0.2742426333 0.5 0.2257573667 +UniRef50_UPI0003B68FE0 MerR family transcriptional regulator 0.297174523489 0.5 0.202825476511 +UniRef50_Q9RVH4 Aspartate tRNA ligase 0.00243139740474 0.5 0.497568602595 +UniRef50_UPI000468F8E2 cystathionine beta lyase 0.128554547113 0.5 0.371445452887 +UniRef50_R9U1S9 RNA polymerase sigma factor 2.74035438765 0.5 -2.24035438765 +UniRef50_UPI0004687562 MerR family transcriptional regulator 1.11982620044 0.5 -0.619826200439 +UniRef50_O25534 Plasminogen binding protein PgbB 0.0136152755024 0.5 0.486384724498 +UniRef50_G7M904 Protein FdhD homolog 0.330172485491 0.5 0.169827514509 +UniRef50_K2EJ34 NADH dehydrogenase 1 alpha subcomplex subunit 9 4.86982198308 0.5 -4.36982198308 +UniRef50_UPI00036C5DD6 hypothetical protein 0.123763044748 0.5 0.376236955252 +UniRef50_M2IF34 0.788592372495 0.5 -0.288592372495 +UniRef50_Q163W1 Ferredoxin flavodoxin oxidoreductase family protein, putative 1.42169232612 0.5 -0.92169232612 +UniRef50_C5XYX3 2.6181042673 0.499999999998 -2.1181042673 +UniRef50_A3MMR3 6,7 dimethyl 8 ribityllumazine synthase 0.00122572872352 0.5 0.498774271276 +UniRef50_C6A0C0 0.151780545531 0.5 0.348219454468 +UniRef50_G8VCJ9 Thioredoxin 0.0544959090109 0.5 0.445504090989 +UniRef50_T3IDK7 Pyridoxal phosphate dependent enzyme family protein 0.0719910783773 0.5 0.428008921623 +UniRef50_UPI0003AA60F6 hypothetical protein 1.2369522464 0.5 -0.736952246396 +UniRef50_Q8XHI3 Probable cytosol aminopeptidase 0.112466473429 0.5 0.387533526571 +UniRef50_UPI000382BCA5 hypothetical protein 0.4926764415 0.5 0.0073235585 +UniRef50_D4HCP3 0.0247293201661 0.5 0.475270679834 +UniRef50_W5XBB1 Histidine ammonia lyase 0.0195005933074 0.5 0.480499406693 +UniRef50_C9ADA6 1.77159749594 0.500000000001 -1.27159749594 +UniRef50_C9ADA5 0.692038310835 0.5 -0.192038310835 +UniRef50_Q46858 1.43890299792 0.499999999999 -0.938902997924 +UniRef50_P77622 Probable D,D dipeptide transport ATP binding protein DdpF 0.55969763885 0.5 -0.0596976388502 +UniRef50_UPI00036F0C0F MULTISPECIES 0.259098782305 0.5 0.240901217695 +UniRef50_Q5HF07 Riboflavin biosynthesis protein RibBA 1.71478598731 0.5 -1.21478598731 +UniRef50_C4ZZR6 Phosphoadenosine phosphosulfate reductase 2.00538293267 0.500000000001 -1.50538293267 +UniRef50_B2VEQ1 Electron transport complex subunit A 6.72220831282 0.499999999998 -6.22220831282 +UniRef50_A8J087 Vasa intronic gene 0.332329093457 0.5 0.167670906543 +UniRef50_Q2RXH9 S methyl 5 thioadenosine phosphorylase 1.53135340058 0.5 -1.03135340058 +UniRef50_UPI0002626AF6 binding protein dependent transport systems inner membrane component 0.123551989361 0.5 0.376448010639 +UniRef50_P05165 Propionyl CoA carboxylase alpha chain, mitochondrial 2.49815543356 0.500000000002 -1.99815543356 +UniRef50_UPI0001CBB1BB PREDICTED 0.817419901764 0.5 -0.317419901764 +UniRef50_W4TUT3 Transglutaminase like enzymes 0.120569233567 0.5 0.379430766433 +UniRef50_K2BIT5 0.224582859588 0.5 0.275417140412 +UniRef50_A8IAB0 Amino acid ABC transporter permease protein 1.67323095248 0.5 -1.17323095248 +UniRef50_UPI0004708F04 hypothetical protein 0.128052209479 0.5 0.371947790521 +UniRef50_E2XPH3 0.420621255151 0.5 0.0793787448486 +UniRef50_Q39XE0 8 amino 7 oxononanoate synthase 0.124338463024 0.5 0.375661536976 +UniRef50_C6S4Z8 0.00607630529831 0.500000000001 0.493923694701 +UniRef50_U7DLP3 Glutathione S transferase 0.58783148712 0.5 -0.08783148712 +UniRef50_B7MUC3 Orotidine 5 phosphate decarboxylase 1.62788688803 0.5 -1.12788688803 +UniRef50_Q837G9 Probable potassium transport system protein kup 0.122965745791 0.5 0.377034254209 +UniRef50_Q3IW67 0.497043740623 0.5 0.00295625937673 +UniRef50_C4ZAX1 Chorismate synthase 0.198390430566 0.5 0.301609569434 +UniRef50_UPI00046B80C4 PREDICTED 0.0720030869298 0.5 0.42799691307 +UniRef50_H4FA07 Pirin domain protein 0.571806817367 0.5 -0.0718068173666 +UniRef50_F3MX46 0.343565675288 0.5 0.156434324712 +UniRef50_UPI0003B5EAE0 oxidoreductase 0.630362853322 0.5 -0.130362853322 +UniRef50_C6SS05 15.4105788242 0.499999999994 -14.9105788242 +UniRef50_C6SS04 1.30287222579 0.5 -0.802872225788 +UniRef50_S9QXJ6 CRISPR associated helicase Cas3 8.62936225192 0.500000000001 -8.12936225192 +UniRef50_I6FFI0 3.12954852092 0.499999999999 -2.62954852092 +UniRef50_F3ZKC2 Putative ADP ribosylation Crystallin J1 0.157806865193 0.5 0.342193134807 +UniRef50_Q9RX93 Trans aconitate 2 methyltransferase 0.00312478105951 0.5 0.496875218941 +UniRef50_A5UKU5 pH regulator (Monovalent cation 0.501451016989 0.5 -0.00145101698874 +UniRef50_S6GN96 Transporting ATPase 1.21473514612 0.5 -0.714735146117 +UniRef50_X8L2K3 Putative aldehyde alcohol dehydrogenase 2.09936956777 0.499999999999 -1.59936956777 +UniRef50_P55604 7.3715466932 0.500000000003 -6.8715466932 +UniRef50_D4H9L5 Cyclic nucleotide binding domain protein 0.0421163013908 0.5 0.457883698609 +UniRef50_A5EBW8 ATP synthase subunit a 2 1.49448077013 0.5 -0.994480770133 +UniRef50_Z9WHX3 1.48430899962 0.499999999999 -0.984308999623 +UniRef50_UPI000466F07F phosphogluconate dehydratase 0.109651725343 0.5 0.390348274657 +UniRef50_UPI0004768B65 3 oxoacyl ACP synthase 0.737625521923 0.5 -0.237625521923 +UniRef50_A6LU78 RNA polymerase, sigma 24 subunit, ECF subfamily 0.305264387124 0.5 0.194735612876 +UniRef50_D7GFP5 Iron sulfur protein 0.0208258742531 0.5 0.479174125747 +UniRef50_UPI00047E8C5B hypothetical protein 0.711468732016 0.5 -0.211468732016 +UniRef50_UPI00036C9333 hypothetical protein 0.408300324175 0.5 0.0916996758247 +UniRef50_F0YDM5 0.0266855614388 0.5 0.473314438561 +UniRef50_B4S8V9 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.327253685991 0.5 0.172746314009 +UniRef50_UPI0002631405 anaerobic dehydrogenase iron sulfur binding subunit 1, partial 0.31838799613 0.5 0.18161200387 +UniRef50_F8KPC2 Arginase 0.0290191746756 0.5 0.470980825325 +UniRef50_UPI00040E124F sodium 0.00220640832587 0.5 0.497793591674 +UniRef50_H3VVP7 Gram positive signal peptide protein, YSIRK family 1.97093600247 0.5 -1.47093600247 +UniRef50_UPI00037B942A hypothetical protein 0.0520367199001 0.5 0.4479632801 +UniRef50_X1YQR0 1.75917240926 0.5 -1.25917240926 +UniRef50_A6UIR4 Tripartite ATP independent periplasmic transporter DctQ component 1.69577076683 0.5 -1.19577076683 +UniRef50_X1TSL9 Marine sediment metagenome DNA, contig 0.265230050189 0.5 0.234769949811 +UniRef50_G4LLH9 0.572835864424 0.5 -0.0728358644236 +UniRef50_UPI0002376205 rtx family calcium binding cytotoxins and bacteriocins protein, partial 0.197697432428 0.5 0.302302567572 +UniRef50_UPI000263050C tryptophan synthase subunit alpha, partial 0.530134271537 0.5 -0.0301342715373 +UniRef50_E0TAZ2 Plasma membrane H+ transporting two sector ATPase, C subunit 1.2006878916 0.5 -0.700687891597 +UniRef50_U5MY05 SH3, type 3 domain protein 0.209684494162 0.5 0.290315505838 +UniRef50_H7CVA1 Iron chelate ABC transporter permease protein 0.121938040934 0.5 0.378061959066 +UniRef50_E3I0H1 L carnitine dehydratase bile acid inducible protein F 1.32708191837 0.5 -0.82708191837 +UniRef50_A0A037XJM6 0.93338652486 0.5 -0.43338652486 +UniRef50_V8HAI2 0.667318374166 0.5 -0.167318374166 +UniRef50_K2HT96 7.24949451661 0.5 -6.74949451661 +UniRef50_U4TIA1 Phage portal protein, HK97 family 0.278639236925 0.5 0.221360763075 +UniRef50_H5TPA6 Putative uracil permease 1.01971110912 0.5 -0.519711109121 +UniRef50_Q6FER0 Sec independent protein translocase protein TatB 0.127835249534 0.5 0.372164750467 +UniRef50_B7RPE0 0.524831671294 0.5 -0.0248316712936 +UniRef50_Q65I16 Glycerol 3 phosphate dehydrogenase [NAD+] 0.0770468787042 0.5 0.422953121296 +UniRef50_V4IFH3 0.16172864117 0.5 0.33827135883 +UniRef50_UPI000367658B hypothetical protein 2.85434612379 0.500000000001 -2.35434612379 +UniRef50_UPI00044077DF carboxymuconolactone decarboxylase 0.204924851528 0.5 0.295075148472 +UniRef50_UPI0003B3D63E DEAD DEAH box helicase 0.133166499395 0.5 0.366833500605 +UniRef50_C5N0Y3 2.50911415611 0.5 -2.00911415611 +UniRef50_UPI0003B528A9 ribonuclease D 2.70171240001 0.5 -2.20171240001 +UniRef50_C5N0Y1 1.21817362329 0.5 -0.718173623293 +UniRef50_B4U5D1 Pyruvate formate lyase activating enzyme 0.68203060528 0.5 -0.18203060528 +UniRef50_UPI0003B42040 phosphoenolpyruvate synthase 0.0114403587834 0.5 0.488559641217 +UniRef50_UPI00041405D4 hypothetical protein 0.255873993832 0.5 0.244126006168 +UniRef50_K0LAR2 APC family amino acid polyamine organocation transporter 0.945684954305 0.5 -0.445684954305 +UniRef50_UPI0003696CB7 hypothetical protein 2.83893584668 0.5 -2.33893584668 +UniRef50_P51362 Anthranilate synthase component 2 0.33888288359 0.5 0.16111711641 +UniRef50_L0KYG3 Methanol cobalamin methyltransferase B subunit 4.30371062559 0.499999999999 -3.80371062559 +UniRef50_UPI000476424B glycerol 3 phosphate ABC transporter ATPase 0.408307054544 0.5 0.0916929454565 +UniRef50_UPI000190A758 pyrroline 5 carboxylate reductase, partial 0.186472382078 0.5 0.313527617922 +UniRef50_P68898 HPr kinase phosphorylase 0.395673145301 0.5 0.104326854699 +UniRef50_B9KZY0 50S ribosomal protein L16 0.535614349002 0.5 -0.0356143490017 +UniRef50_UPI000366C8A8 calcium binding protein 0.262018468403 0.5 0.237981531597 +UniRef50_Q47QB9 0.0075663122952 0.5 0.492433687705 +UniRef50_UPI000364349F hypothetical protein 1.53165040728 0.500000000001 -1.03165040728 +UniRef50_D0K393 Lipoprotein 2.21749455288 0.5 -1.71749455288 +UniRef50_P0AE07 Multidrug efflux pump subunit AcrA 2.42044571916 0.499999999998 -1.92044571916 +UniRef50_K1QDX5 4.48130564926 0.499999999996 -3.98130564925 +UniRef50_UPI0003EF0A28 hypothetical protein 0.609092937033 0.5 -0.109092937033 +UniRef50_U5LCP0 0.00743914762783 0.5 0.492560852372 +UniRef50_M9VES2 0.119159303146 0.5 0.380840696854 +UniRef50_UPI0003677933 hypothetical protein 1.60298925106 0.5 -1.10298925106 +UniRef50_UPI000333F6F9 PREDICTED 0.013353691662 0.5 0.486646308338 +UniRef50_D3DZ41 Arginase agmatinase family protein 2.25431912236 0.5 -1.75431912236 +UniRef50_E4U2W7 0.638218361963 0.5 -0.138218361963 +UniRef50_UPI00047C1003 30S ribosomal protein S2 0.0493920409255 0.500000000001 0.450607959074 +UniRef50_Q57657 Probable amidophosphoribosyltransferase 0.0613024144086 0.5 0.438697585591 +UniRef50_UPI000373F66D hypothetical protein 1.43591429938 0.500000000001 -0.935914299377 +UniRef50_X1H0M2 Marine sediment metagenome DNA, contig 0.155288800483 0.5 0.344711199517 +UniRef50_G2JLL9 0.0148059904493 0.5 0.485194009551 +UniRef50_P71362 L 2,4 diaminobutyrate decarboxylase 0.0108594625458 0.5 0.489140537454 +UniRef50_A0A008Q9S3 0.275010206564 0.5 0.224989793436 +UniRef50_P0ACP3 Catabolite repressor activator 1.11833595309 0.5 -0.618335953088 +UniRef50_B7V6Q1 0.436976712528 0.5 0.0630232874718 +UniRef50_K0DWJ8 0.623217433562 0.5 -0.123217433562 +UniRef50_UPI000377E049 hypothetical protein 0.104040797292 0.5 0.395959202708 +UniRef50_UPI00037626C6 peptidase 0.551087357514 0.5 -0.0510873575137 +UniRef50_H4F7M3 0.152381089497 0.5 0.347618910503 +UniRef50_P75747 Protein AbrB 0.710402891058 0.5 -0.210402891058 +UniRef50_T1JYL1 0.342106373151 0.5 0.157893626849 +UniRef50_F3ZCA1 Putative glutamate binding periplasmic protein 0.666996478233 0.5 -0.166996478233 +UniRef50_Q9RYQ0 Catalase 0.00422544477346 0.5 0.495774555227 +UniRef50_Q97M68 Prolipoprotein diacylglyceryl transferase 0.0356307373118 0.5 0.464369262688 +UniRef50_P38021 Ornithine aminotransferase 4.70433242678 0.5 -4.20433242678 +UniRef50_A4Y017 Transcriptional regulator, TetR family 0.940087551663 0.5 -0.440087551663 +UniRef50_W4U293 0.119687716763 0.5 0.380312283236 +UniRef50_A3PNI0 2.27445457438 0.500000000002 -1.77445457439 +UniRef50_UPI00037C3547 hypothetical protein 0.274493414537 0.5 0.225506585463 +UniRef50_A0A023S1T5 Mutlidrug resistance protein 0.0110847699467 0.5 0.488915230053 +UniRef50_G5M3D2 Glucan biosynthesis protein MdoG 0.116371006349 0.5 0.383628993651 +UniRef50_UPI0003793B75 hypothetical protein, partial 6.1292888149 0.499999999998 -5.62928881489 +UniRef50_G7U887 0.101057801861 0.5 0.398942198139 +UniRef50_F4A797 Transferase hexapeptide repeat containing protein 0.070041797093 0.5 0.429958202907 +UniRef50_UPI00047EC165 hypothetical protein 0.878872278611 0.5 -0.378872278611 +UniRef50_UPI000225ABB3 Glycine cleavage system T protein 1.32643858787 0.499999999998 -0.826438587869 +UniRef50_Q1AT13 Lipoyl synthase 0.0713048158431 0.5 0.428695184157 +UniRef50_UPI000252BB02 PREDICTED 0.549331341526 0.5 -0.0493313415264 +UniRef50_M4MFI8 Oxidoreductase,likely required for utilization of stachydrine 1.56593577029 0.5 -1.06593577029 +UniRef50_A5URF1 Spermidine putrescine ABC transporter ATPase subunit 0.684638039625 0.5 -0.184638039625 +UniRef50_Q8KCS2 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.00169293382288 0.5 0.498307066177 +UniRef50_A0A035ZUD7 2.59898612632 0.5 -2.09898612632 +UniRef50_R6DSS9 Dihydroorotate dehydrogenase 9.31060008492 0.500000000001 -8.81060008492 +UniRef50_A3TG55 0.355335638919 0.5 0.144664361081 +UniRef50_UPI0003B6DC28 taurine pyruvate aminotransferase, partial 2.04830063985 0.499999999999 -1.54830063984 +UniRef50_I1ZMS2 Oxidoreductase, short chain dehydrogenase 0.620821718664 0.5 -0.120821718664 +UniRef50_F3U214 Binding protein dependent transport systems inner membrane component 4.84553829265 0.5 -4.34553829265 +UniRef50_D5D972 Small heat shock protein 0.102423175579 0.5 0.397576824421 +UniRef50_A6LYN9 D galactose binding periplasmic protein 0.171521328419 0.5 0.328478671581 +UniRef50_UPI0003B622F4 transcriptional regulator 1.31134808898 0.500000000001 -0.811348088976 +UniRef50_W4SPZ4 1.00658062647 0.5 -0.506580626466 +UniRef50_UPI0004709FDA molybdenum ABC transporter permease, partial 0.170659791135 0.5 0.329340208865 +UniRef50_Q92L73 Argininosuccinate synthase 0.0123024438576 0.5 0.487697556142 +UniRef50_UPI000425B71D hypothetical protein 2.14244203989 0.5 -1.64244203989 +UniRef50_A4WTW6 2.92206444371 0.499999999999 -2.42206444371 +UniRef50_G5SIY2 0.0524417783381 0.500000000001 0.447558221661 +UniRef50_K7SJ66 von Willebrand factor type A domain containing protein 0.035882757878 0.5 0.464117242122 +UniRef50_P45419 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase 0.132766101503 0.5 0.367233898497 +UniRef50_Q8XAR3 Poly beta 1,6 N acetyl D glucosamine N deacetylase 1.74953898628 0.500000000001 -1.24953898628 +UniRef50_W4TPM5 Phosphoglycerate mutase family protein 0.0162603564771 0.5 0.483739643523 +UniRef50_V5VCE3 Outer membrane protein assembly factor BamA 0.0183385982368 0.5 0.481661401764 +UniRef50_W4TKT8 Molybdopterin guanine dinucleotide biosynthesis protein 0.103239948874 0.5 0.396760051126 +UniRef50_UPI0003787FA8 hypothetical protein 2.51715887865 0.499999999999 -2.01715887865 +UniRef50_P18080 5 aminolevulinate synthase, erythroid specific, mitochondrial 1.0456346296 0.5 -0.545634629605 +UniRef50_UPI00046369B9 MULTISPECIES 0.350727073211 0.5 0.149272926789 +UniRef50_UPI0003B333D6 AsnC family transcriptional regulator, partial 1.01535603156 0.5 -0.51535603156 +UniRef50_F0KP66 Outer membrane usher protein 0.00743274435875 0.5 0.492567255641 +UniRef50_Q2IL11 NADH quinone oxidoreductase subunit A 0.133530508309 0.5 0.366469491691 +UniRef50_UPI0003B77D72 serine dehydratase subunit beta 0.0331167675079 0.5 0.466883232492 +UniRef50_Q92375 Thioredoxin reductase 1.74066601065 0.5 -1.24066601065 +UniRef50_S3BAZ0 0.0186314524173 0.5 0.481368547583 +UniRef50_K5JB68 Bacterial extracellular solute binding s, 3 family protein 2.12229654693 0.499999999999 -1.62229654693 +UniRef50_UPI000474C9A9 hypothetical protein 0.564298280184 0.5 -0.0642982801835 +UniRef50_UPI0002628E30 Sua5 YciO YrdC YwlC family protein 0.499028874171 0.5 0.000971125829176 +UniRef50_A6LYF6 Rubrerythrin 0.0483561335022 0.5 0.451643866498 +UniRef50_W0HD99 0.795161046194 0.5 -0.295161046194 +UniRef50_D9RK78 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter 2.47451456584 0.499999999998 -1.97451456583 +UniRef50_UPI00037C2AEE hypothetical protein 0.351745459347 0.5 0.148254540653 +UniRef50_P26280 Reaction center protein L chain 3.34326845362 0.5 -2.84326845362 +UniRef50_UPI0004686580 hypothetical protein 0.319560307809 0.5 0.180439692191 +UniRef50_UPI00037303BE hypothetical protein, partial 0.435005369293 0.5 0.0649946307072 +UniRef50_W8XZ85 0.192415666327 0.5 0.307584333673 +UniRef50_O22854 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 0.181158181731 0.5 0.318841818269 +UniRef50_P08401 Sensor protein CreC 2.24694212953 0.499999999999 -1.74694212953 +UniRef50_T2EES2 3 beta hydroxysteroid dehydrogenase isomerase family protein 1.34913973192 0.5 -0.849139731916 +UniRef50_A6LY79 Lysine exporter protein 0.859361058731 0.5 -0.359361058731 +UniRef50_UPI0003946175 PREDICTED 0.491173156163 0.5 0.00882684383674 +UniRef50_Q7UIA7 3 isopropylmalate dehydratase large subunit 0.13875507508 0.5 0.36124492492 +UniRef50_Q8Y8Q5 Calcium transporting ATPase lmo0841 0.00415293693394 0.5 0.495847063066 +UniRef50_K0YSF4 0.106787098553 0.5 0.393212901448 +UniRef50_G7M906 Molybdenum cofactor synthesis domain protein 0.164982440339 0.5 0.335017559661 +UniRef50_UPI00046F0789 multidrug MFS transporter 1.06112701382 0.5 -0.561127013817 +UniRef50_Q8XBQ1 Rare lipoprotein A 3.89120083342 0.5 -3.39120083342 +UniRef50_A6M2G0 Methyl accepting chemotaxis sensory transducer 0.154168533015 0.5 0.345831466985 +UniRef50_A6LWZ6 Response regulator receiver sensor signal transduction histidine kinase 0.0448477277169 0.5 0.455152272283 +UniRef50_UPI0000057DE0 50S ribosomal protein L4 0.102373782753 0.5 0.397626217247 +UniRef50_A9H7F9 0.294415551977 0.5 0.205584448023 +UniRef50_UPI00037D5622 hypothetical protein 0.672257675949 0.5 -0.172257675949 +UniRef50_R9SK92 Energy converting hydrogenase A subunit Q EhaQ 2.83670445065 0.499999999999 -2.33670445065 +UniRef50_UPI00036E2295 hypothetical protein, partial 0.27476353331 0.5 0.22523646669 +UniRef50_Q9RZL8 Protein NrdI 0.0136626760026 0.5 0.486337323997 +UniRef50_K1X086 0.661778958245 0.5 -0.161778958245 +UniRef50_G7MBG6 Glucokinase 0.0552787040397 0.5 0.44472129596 +UniRef50_UPI00037CC8E0 hypothetical protein 0.935717085753 0.5 -0.435717085753 +UniRef50_H8LBR4 Zeta toxin 0.2804831297 0.5 0.2195168703 +UniRef50_F2PQ83 0.560446540745 0.5 -0.0604465407448 +UniRef50_I6TQY8 Gramicidin S synthetase 1.97171967565 0.5 -1.47171967565 +UniRef50_U1FPP9 Serine dehydratase alpha chain domain protein 0.550610073201 0.5 -0.0506100732006 +UniRef50_UPI0002FF8C25 hypothetical protein 0.0887503279678 0.5 0.411249672033 +UniRef50_O34900 L cystine import ATP binding protein TcyN 0.171973044464 0.5 0.328026955536 +UniRef50_A5UJG8 Dephospho CoA kinase, CoaE 0.210471538494 0.5 0.289528461506 +UniRef50_UPI000376DDCE hypothetical protein, partial 0.173089815964 0.5 0.326910184036 +UniRef50_Q9KE44 BH1014 protein 0.0485807072532 0.5 0.451419292747 +UniRef50_Q9RXS7 Endoglucanase, putative 0.00178441790408 0.5 0.498215582096 +UniRef50_D5AV16 Cobalamin biosynthesis protein CobD 0.128296923161 0.5 0.371703076839 +UniRef50_UPI0003B61FEB amino acid transporter 0.173802322748 0.5 0.326197677252 +UniRef50_B5XSL3 0.328995060181 0.5 0.171004939819 +UniRef50_P50511 RNA polymerase sigma factor RpoH 0.060447762312 0.5 0.439552237688 +UniRef50_W5X4I3 Tyrosine recombinase XerC 0.244605410276 0.5 0.255394589724 +UniRef50_A0R8M9 Gluconate kinase, FGGY family 1.40904593538 0.5 -0.909045935382 +UniRef50_UPI000255F256 hypothetical protein 0.0674856290938 0.5 0.432514370906 +UniRef50_Q6GEF9 Molybdenum cofactor biosynthesis protein B 0.762728353113 0.5 -0.262728353113 +UniRef50_Q828A3 Acetylornithine aminotransferase 0.0389744022656 0.5 0.461025597734 +UniRef50_UPI0004418616 P loop containing nucleoside triphosphate hydrolase protein 1.12891745729 0.5 -0.62891745729 +UniRef50_Q47456 Transcriptional regulatory protein PcoR 0.252985243685 0.5 0.247014756315 +UniRef50_G0DX35 Beta D glucuronidase 0.0343732899664 0.5 0.465626710033 +UniRef50_Q822W9 Tryptophan synthase beta chain 1 0.629747415347 0.5 -0.129747415347 +UniRef50_B7UNM8 L rhamnose proton symporter 1.21732031632 0.5 -0.717320316317 +UniRef50_W7NL02 132.470192487 0.500000000066 -131.970192487 +UniRef50_P44431 DNA adenine methylase 1.89551089828 0.5 -1.39551089828 +UniRef50_UPI0004656CA8 ATPase AAA 3.95407375114 0.5 -3.45407375114 +UniRef50_Q2KX38 Cysteine tRNA ligase 0.126192749841 0.5 0.373807250159 +UniRef50_UPI0003304FE8 ABC transporter 0.0164058597123 0.5 0.483594140288 +UniRef50_B9DSF8 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 1.68037603248 0.5 -1.18037603248 +UniRef50_W5VLQ9 ABC transporter ATP binding protein 3.16059631405 0.500000000004 -2.66059631405 +UniRef50_UPI0003B78B56 acetolactate synthase 0.050764491568 0.5 0.449235508432 +UniRef50_Q4ZMZ5 2.48809912565 0.500000000002 -1.98809912566 +UniRef50_UPI00046F9C6C hypothetical protein, partial 0.282139163441 0.5 0.217860836559 +UniRef50_F0KJU7 Siderophore interacting protein 0.0312626304355 0.5 0.468737369564 +UniRef50_B4U3Z1 0.754751911875 0.5 -0.254751911875 +UniRef50_B0VQL7 0.0212820889279 0.5 0.478717911072 +UniRef50_Q83LB6 Gamma glutamyl gamma aminobutyrate hydrolase 0.83101734475 0.5 -0.33101734475 +UniRef50_J8UT53 Multidrug transport protein, mfs family 0.0293003921252 0.5 0.470699607875 +UniRef50_X5A2G4 Epoxide hydrolase domain containing protein 0.0609994004507 0.499999999999 0.43900059955 +UniRef50_Q9I163 Putative quercetin 2,3 dioxygenase PA2418 0.173337495402 0.5 0.326662504598 +UniRef50_D0W9Q2 Translation initiation factor IF 2 0.0263012768046 0.5 0.473698723195 +UniRef50_A3M0R3 RND type efflux pump 0.0475413310248 0.499999999999 0.452458668976 +UniRef50_UPI00047675B7 iron ABC transporter 0.00685455810852 0.5 0.493145441891 +UniRef50_S9QHG5 ABC type dipeptide transport system, periplasmic component 0.330437561117 0.5 0.169562438883 +UniRef50_P42371 Formamidopyrimidine DNA glycosylase 0.500752419066 0.5 -0.000752419066361 +UniRef50_UPI0003F5623F hypothetical protein 0.166999244417 0.5 0.333000755583 +UniRef50_Q8DTP8 6.47602901375 0.500000000002 -5.97602901376 +UniRef50_Q5HKT3 Transcriptional antiterminator, BglG family 1.1867695782 0.5 -0.686769578204 +UniRef50_Q9VDT6 Putative ribosomal RNA methyltransferase CG11447 0.492037525565 0.5 0.00796247443489 +UniRef50_Q1WV73 Ribosomal RNA small subunit methyltransferase A 0.80367145864 0.5 -0.30367145864 +UniRef50_Q79VG7 ATP synthase subunit alpha 0.0775359512575 0.5 0.422464048743 +UniRef50_M8LWS9 Amidohydrolase family protein 0.121269039886 0.499999999999 0.378730960115 +UniRef50_B2VBD6 0.507400861775 0.5 -0.00740086177477 +UniRef50_B6AY70 0.722561751781 0.5 -0.222561751781 +UniRef50_Q9ZCH1 3 oxoacyl [acyl carrier protein] synthase 3 5.68913907152 0.499999999993 -5.18913907151 +UniRef50_UPI00042C6A1E PREDICTED 0.0927363010315 0.5 0.407263698969 +UniRef50_A0LUZ1 LexA repressor 1.31123913081 0.5 -0.811239130807 +UniRef50_C9A6P4 0.0650520640976 0.5 0.434947935903 +UniRef50_X8DM60 0.0282161891531 0.5 0.471783810847 +UniRef50_W5X752 Aldo keto reductase 0.0647871886816 0.5 0.435212811318 +UniRef50_A0A058ZFV0 0.210949364731 0.5 0.289050635269 +UniRef50_UPI0003B55097 ABC transporter 6.85975902582 0.5 -6.35975902582 +UniRef50_UPI000466B8BE ATP dependent DNA helicase RecQ 1.65895908896 0.500000000002 -1.15895908897 +UniRef50_X0Z3F5 Marine sediment metagenome DNA, contig 1.51225279962 0.5 -1.01225279962 +UniRef50_UPI0003AB2F70 zinc transporter 0.192894482172 0.5 0.307105517828 +UniRef50_A8EWF0 3 oxoacyl [acyl carrier protein] synthase 2 0.0176291340992 0.5 0.4823708659 +UniRef50_P0ADP3 0.139809080167 0.5 0.360190919833 +UniRef50_R9SKB3 7.75665475327 0.499999999998 -7.25665475326 +UniRef50_I6L8Z7 1.17207706876 0.5 -0.672077068756 +UniRef50_UPI000377F0F1 50S ribosomal protein L15 0.210036303047 0.5 0.289963696953 +UniRef50_P00911 Indole 3 glycerol phosphate synthase 0.000676142944903 0.5 0.499323857055 +UniRef50_UPI00037E35A9 hypothetical protein 0.328290651938 0.5 0.171709348062 +UniRef50_J9QWN8 0.143770906917 0.5 0.356229093083 +UniRef50_UPI0003C13804 PREDICTED 3.01356075227 0.499999999999 -2.51356075227 +UniRef50_A5IXT6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.685598211677 0.5 -0.185598211677 +UniRef50_M9RBK8 2.78893157904 0.5 -2.28893157904 +UniRef50_P75969 Prophage lambda integrase 1.5836474492 0.5 -1.0836474492 +UniRef50_UPI000299D232 arginyl tRNA ligase 1.71789342247 0.500000000002 -1.21789342247 +UniRef50_Q9KD27 Polyphosphate kinase 0.0116261270243 0.5 0.488373872976 +UniRef50_Q5HLU4 Putative 2 hydroxyacid dehydrogenase SERP1888 1.35760673941 0.499999999999 -0.857606739411 +UniRef50_UPI00047D602E membrane protein 0.713978150815 0.5 -0.213978150815 +UniRef50_UPI00040C0EAB dipeptidase PepV 0.43966841468 0.5 0.0603315853198 +UniRef50_A3SGM5 0.247778548093 0.5 0.252221451907 +UniRef50_X5RWX0 1.88729079817 0.5 -1.38729079817 +UniRef50_B0V917 0.211539922071 0.5 0.288460077929 +UniRef50_L8NGN8 Sulfite oxidoreductase, molibdopterin binding subunit 1.48348631459 0.5 -0.983486314595 +UniRef50_Q5HM71 Lytic regulatory protein, putative 1.75159033166 0.5 -1.25159033166 +UniRef50_Q2SS11 S adenosylmethionine synthase 0.0914019547944 0.5 0.408598045205 +UniRef50_D2BQV2 NTPase, KAP P loop domain containing family 0.161576296629 0.5 0.338423703371 +UniRef50_UPI00046D1EDA hypothetical protein 4.55277622084 0.5 -4.05277622084 +UniRef50_M4VPY4 0.562278098851 0.5 -0.0622780988512 +UniRef50_O27101 Putative biopolymer transport protein ExbB homolog 1.93164374262 0.499999999999 -1.43164374262 +UniRef50_UPI000470CC65 hypothetical protein, partial 0.123860752205 0.5 0.376139247794 +UniRef50_UPI000362B8D4 hypothetical protein 0.267044663636 0.5 0.232955336364 +UniRef50_Q6FF14 0.0370602334078 0.5 0.462939766592 +UniRef50_F9Y8H3 1.88844566162 0.499999999999 -1.38844566162 +UniRef50_UPI00047C7174 GTPase CgtA 0.0102917212049 0.5 0.489708278795 +UniRef50_D0Z2G0 0.975258400315 0.5 -0.475258400315 +UniRef50_UPI00047E6697 hypothetical protein 0.0509237888378 0.5 0.449076211162 +UniRef50_O34374 Putative cytochrome P450 YjiB 0.0532828197244 0.5 0.446717180276 +UniRef50_A6M3B7 Phage minor structural protein 0.0694840449254 0.5 0.430515955074 +UniRef50_Q94IN5 Pyruvate dehydrogenase [NADP], mitochondrial 0.199333663348 0.5 0.300666336652 +UniRef50_B4RAW2 2.17183746976 0.5 -1.67183746976 +UniRef50_B5SGS2 Phosphoribosylaminoimidazole carboxylase atpase subunit protein 0.0325006390348 0.5 0.467499360965 +UniRef50_O32219 Cadmium, zinc and cobalt transporting ATPase 0.00166353324668 0.5 0.498336466753 +UniRef50_UPI0002DD1873 multidrug transporter 0.76303604154 0.5 -0.26303604154 +UniRef50_UPI000372E87D hypothetical protein 0.241162609799 0.5 0.258837390201 +UniRef50_Q5HPN2 Glutamine synthetase 1.12497760417 0.5 -0.624977604169 +UniRef50_A6M2W7 Helix turn helix domain containing protein, AraC type 0.0977868795793 0.500000000001 0.40221312042 +UniRef50_A6LZ11 Transcriptional regulator, LysR family 0.0511192955705 0.500000000001 0.448880704429 +UniRef50_F4A8L7 0.305979112522 0.5 0.194020887478 +UniRef50_UPI0004746BAC 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase, partial 0.49032095936 0.5 0.00967904064044 +UniRef50_UPI0003B6272C 30S ribosomal protein S2, partial 0.166590640862 0.5 0.333409359138 +UniRef50_G0LQ11 ABC transport system, ATP binding protein 1.65698023516 0.5 -1.15698023516 +UniRef50_Q1GE51 Cytochrome c oxidase assembly protein CtaG 5.06553949925 0.499999999996 -4.56553949925 +UniRef50_A6LSR5 Cell divisionFtsK SpoIIIE 0.0877891553064 0.5 0.412210844694 +UniRef50_UPI0003946AEB PREDICTED 0.2029584971 0.5 0.2970415029 +UniRef50_W1V573 0.0611556855364 0.5 0.438844314464 +UniRef50_A2WHS9 1.1585332372 0.5 -0.658533237202 +UniRef50_Q89W19 Partitioning protein 0.720344363155 0.5 -0.220344363155 +UniRef50_UPI00036C0568 hypothetical protein 0.478427672106 0.5 0.0215723278943 +UniRef50_Q28JJ0 Flagellar protein FlgJ putative 0.902071897921 0.5 -0.402071897921 +UniRef50_V9TVW8 Signal transduction histidine kinase CheA 0.589086318995 0.5 -0.0890863189948 +UniRef50_UPI00022CAC9E PREDICTED 0.0667225092387 0.5 0.433277490761 +UniRef50_V5VGK2 Universal bacterial protein YeaZ 0.0239530675127 0.5 0.476046932487 +UniRef50_UPI000380AFF0 hypothetical protein 1.63880897929 0.500000000001 -1.13880897929 +UniRef50_Q5M3F8 Polysaccharide biosynthesis protein 2.25322992194 0.5 -1.75322992194 +UniRef50_L0LMR9 ABC transporter, ATP binding protein 1.64185457862 0.5 -1.14185457862 +UniRef50_Q8DVD7 Cell division protein SepF 0.604841851206 0.5 -0.104841851206 +UniRef50_UPI0003B704ED hypothetical protein 3.08347817176 0.500000000001 -2.58347817176 +UniRef50_UPI00036F3039 hypothetical protein 1.96872513195 0.499999999999 -1.46872513195 +UniRef50_C5WTK0 0.328815596735 0.5 0.171184403265 +UniRef50_T1B3T8 Virulence factor MviN 0.411832787115 0.5 0.0881672128854 +UniRef50_Q11IP6 Phosphate transporter 3.06856305583 0.5 -2.56856305583 +UniRef50_A1URR2 sn glycerol 3 phosphate import ATP binding protein UgpC 1.07466685331 0.5 -0.574666853313 +UniRef50_P0A4S1 Fructose bisphosphate aldolase 0.0106358681006 0.5 0.489364131899 +UniRef50_Q48460 UDP glucose 1.13561209826 0.5 -0.635612098264 +UniRef50_F0QG73 SAM dependent methyltransferase 0.00649997667451 0.499999999999 0.493500023326 +UniRef50_UPI0003A87FEF hypothetical protein 0.136026291659 0.5 0.36397370834 +UniRef50_Q12R52 Hemin import ATP binding protein HmuV 0.00814432119829 0.5 0.491855678802 +UniRef50_UPI000376155F hypothetical protein 1.0544172476 0.5 -0.554417247599 +UniRef50_Y1HNL2 PTS system maltose and glucose specific EIICB component 1.1391207075 0.5 -0.639120707503 +UniRef50_A1AC10 Phosphoribosylglycinamide formyltransferase 2 1.22162606315 0.499999999999 -0.721626063151 +UniRef50_A0A011NL09 0.00121469577281 0.499999999999 0.498785304228 +UniRef50_UPI000467180A aldehyde activating protein 0.264998972514 0.5 0.235001027486 +UniRef50_B9KWD4 Periplasmic sensor diguanylate cyclase phosphodiesterase 1.76272379798 0.500000000001 -1.26272379798 +UniRef50_Q8RTQ0 Putative 1 deoxy D xylulose 5 phosphate synthase 0.818351577108 0.5 -0.318351577108 +UniRef50_D9WU07 Putative vgr related protein 0.531773618935 0.5 -0.0317736189349 +UniRef50_UPI00042AFC27 D aminoacid aminotransferase like PLP dependent enzymes superfamily protein isoform 3 0.167278900726 0.5 0.332721099274 +UniRef50_P58224 Putative outer membrane protein YiaT 2.53216434119 0.500000000002 -2.03216434119 +UniRef50_D4H950 YD repeat protein 0.0122707822369 0.5 0.487729217763 +UniRef50_P31078 HTH type transcriptional regulator PetP 12.077376594 0.499999999999 -11.577376594 +UniRef50_A6U9L1 1.2465106511 0.5 -0.746510651098 +UniRef50_G0DWF3 0.0237785358041 0.5 0.476221464196 +UniRef50_Q6GJE0 Serine acetyltransferase 1.62092398984 0.499999999999 -1.12092398984 +UniRef50_B1K1C0 Recombinase 2.05154219963 0.5 -1.55154219963 +UniRef50_UPI0004795AC6 hypothetical protein 0.428432295539 0.5 0.071567704461 +UniRef50_D0D0I6 GumN family protein 0.598335943772 0.5 -0.0983359437722 +UniRef50_UPI000362BAED hypothetical protein, partial 1.27888325774 0.5 -0.778883257742 +UniRef50_Q6A8I8 Alanine tRNA ligase 0.00569657960595 0.5 0.494303420394 +UniRef50_UPI00035CA936 hypothetical protein 1.31168374451 0.500000000001 -0.811683744507 +UniRef50_UPI0004759D2E magnesium transporter 0.0461311635055 0.5 0.453868836495 +UniRef50_UPI00036009B3 hypothetical protein 0.529972653343 0.5 -0.0299726533431 +UniRef50_C1MWX1 Predicted protein 0.00557657746351 0.500000000001 0.494423422536 +UniRef50_B6SHE9 Insect intestinal mucin IIM22 1.85864269908 0.5 -1.35864269908 +UniRef50_Q9R9Y4 Cell division protein FtsX 0.17961986592 0.5 0.32038013408 +UniRef50_UPI000420B7BC O acetylhomoserine aminocarboxypropyltransferase 1.26303397545 0.499999999999 -0.763033975449 +UniRef50_Q47147 Putative glutamine amidotransferase YafJ 0.959987800622 0.5 -0.459987800622 +UniRef50_P0A9M3 Hypoxanthine phosphoribosyltransferase 0.201551388538 0.5 0.298448611462 +UniRef50_UPI00041235F6 lysine transporter LysE 0.640119730835 0.5 -0.140119730835 +UniRef50_UPI00029AB95D phenylacetate CoA oxygenase reductase subunit PaaK 0.374341095877 0.5 0.125658904123 +UniRef50_A8JGS9 DnaJ like protein 0.320857751193 0.5 0.179142248807 +UniRef50_D5ARW9 Nif specific regulatory protein 0.898911874792 0.5 -0.398911874792 +UniRef50_U0B3S9 0.524123796304 0.5 -0.0241237963042 +UniRef50_P72525 DNA topoisomerase 4 subunit A 0.348421480921 0.5 0.151578519079 +UniRef50_Q9Z3R6 Alpha glucoside transport system permease protein AglF 1.8852870552 0.5 -1.3852870552 +UniRef50_Q0TPM3 ATP dependent DNA helicase RecG 0.0949693949443 0.5 0.405030605056 +UniRef50_Q7N9D9 PTS system N acetylmuramic acid specific EIIBC component 1.09304664083 0.500000000001 -0.593046640829 +UniRef50_D8QID1 0.680086489228 0.5 -0.180086489228 +UniRef50_X7XPI4 0.27129955825 0.5 0.22870044175 +UniRef50_B9KT83 Transport system permease protein 0.877347157639 0.5 -0.377347157639 +UniRef50_Q9SRW7 Adenylyl sulfate kinase 3 0.0111286341684 0.5 0.488871365832 +UniRef50_UPI000381376E hypothetical protein 1.70156122002 0.500000000002 -1.20156122002 +UniRef50_D3P3D0 D xylose transport system substrate binding protein 1.56964195017 0.5 -1.06964195017 +UniRef50_D9VWR6 Septum site determining protein 0.144112771041 0.5 0.355887228959 +UniRef50_E3A1I4 1.19077488713 0.499999999999 -0.690774887131 +UniRef50_A9WDZ1 Imidazoleglycerol phosphate dehydratase 4.86464275828 0.500000000002 -4.36464275828 +UniRef50_A6LUX7 Regulatory protein, LysR 0.0424935939094 0.5 0.457506406091 +UniRef50_F4A4S9 Transcriptional regulator, GntR family, putative 0.140484640556 0.5 0.359515359444 +UniRef50_B9KKN4 Transcriptional regulator, GntR family 0.228222553044 0.5 0.271777446956 +UniRef50_C7M5H1 5.71904766191 0.499999999999 -5.21904766191 +UniRef50_F9EIQ5 0.0847533921103 0.5 0.41524660789 +UniRef50_B2UFB1 Cyclohexanone monooxygenase 0.310732706733 0.5 0.189267293267 +UniRef50_V4ITY3 Sodium 0.553062669335 0.5 -0.0530626693355 +UniRef50_X4ZS10 Bacterial regulatory s, gntR family protein 0.0826146235977 0.5 0.417385376402 +UniRef50_R0MDF2 DNA mismatch repair protein MutS 1.58155058387 0.5 -1.08155058387 +UniRef50_Q0VTE2 Methionyl tRNA formyltransferase 0.0765735759405 0.5 0.42342642406 +UniRef50_S1PI08 0.616892859327 0.5 -0.116892859327 +UniRef50_A6LZ46 Response regulator receiver protein 0.126566206445 0.5 0.373433793555 +UniRef50_R5I1Z2 0.0204165252828 0.5 0.479583474717 +UniRef50_M3NMQ8 TonB dependent receptor plug domain protein 0.00511328510941 0.5 0.49488671489 +UniRef50_F0MSR5 0.0185730371425 0.5 0.481426962858 +UniRef50_D0IYV6 1.94280969438 0.5 -1.44280969438 +UniRef50_I1XGF6 Stringent starvation protein A 0.0369367024102 0.5 0.46306329759 +UniRef50_B7UY15 0.177405994919 0.5 0.322594005081 +UniRef50_A6LX91 0.126810807584 0.5 0.373189192416 +UniRef50_P0A0K1 1.19403012365 0.5 -0.694030123646 +UniRef50_UPI0003B6C3E5 6 phosphofructokinase 1.29799128262 0.500000000001 -0.797991282618 +UniRef50_G7M347 ABC transporter related protein 0.0644843590617 0.5 0.435515640938 +UniRef50_M9VKH9 Extracellular solute binding protein 0.0263160175521 0.5 0.473683982448 +UniRef50_K2FKB3 0.0534049229208 0.5 0.446595077079 +UniRef50_K4JSU1 0.84379157646 0.5 -0.34379157646 +UniRef50_U6BC07 Aconitate hydratase 1.67968772176 0.499999999998 -1.17968772176 +UniRef50_P16923 N anthranilate isomerase 0.00104698607574 0.5 0.498953013924 +UniRef50_I6SU46 Cell division protein DivIB 1.01131053683 0.5 -0.511310536835 +UniRef50_UPI00036BA80E hypothetical protein 0.383927258283 0.5 0.116072741717 +UniRef50_A6LX65 0.164691104037 0.5 0.335308895963 +UniRef50_D3SBH0 Riboflavin synthase, alpha subunit 5.03146847116 0.5 -4.53146847116 +UniRef50_U2YCQ7 0.135576718687 0.5 0.364423281313 +UniRef50_R7PTH2 0.826766637516 0.5 -0.326766637516 +UniRef50_Q2SCI9 0.38506625262 0.5 0.11493374738 +UniRef50_UPI0003691CE3 hypothetical protein 0.227878714005 0.5 0.272121285995 +UniRef50_F4FSV5 RelA SpoT domain protein 0.81661388518 0.5 -0.31661388518 +UniRef50_B9DZ64 0.2389106882 0.5 0.2610893118 +UniRef50_A7FBW9 0.0674622872852 0.5 0.432537712715 +UniRef50_A7FBW8 0.0942132414927 0.5 0.405786758507 +UniRef50_P76046 2.65416586483 0.500000000002 -2.15416586484 +UniRef50_P76044 1.12638428054 0.5 -0.62638428054 +UniRef50_C5N0D9 Glyoxalase family protein 4.3337006649 0.500000000005 -3.83370066491 +UniRef50_P03880 Intron encoded DNA endonuclease I AniI 1.32602662043 0.499999999998 -0.826026620428 +UniRef50_Q2K6L3 sn glycerol 3 phosphate import ATP binding protein UgpC 1 0.230605046609 0.5 0.269394953391 +UniRef50_C6STT6 1.34432119213 0.499999999999 -0.844321192131 +UniRef50_D2NPJ7 Protein containing PAS PAC domain 0.0065544990998 0.5 0.4934455009 +UniRef50_A5CPE6 Thymidine kinase 0.0204510569756 0.5 0.479548943025 +UniRef50_A5UK48 Glutamine amidotransferase subunit PdxT 0.311352299561 0.5 0.188647700439 +UniRef50_UPI000361F456 hypothetical protein 2.92185256698 0.5 -2.42185256698 +UniRef50_A6LQV8 Phosphomannomutase 0.113957242901 0.5 0.386042757099 +UniRef50_O50236 Carbamoyl phosphate synthase large chain 0.629766631276 0.5 -0.129766631276 +UniRef50_J8V402 0.421941102543 0.5 0.078058897457 +UniRef50_UPI000382615E hypothetical protein 0.0379338457414 0.5 0.462066154259 +UniRef50_D8TJQ5 0.142037655654 0.5 0.357962344346 +UniRef50_H3VMS8 3.03323253323 0.500000000001 -2.53323253323 +UniRef50_UPI0002484D08 glycerophosphoryl diester phosphodiesterase 0.000929697349985 0.5 0.49907030265 +UniRef50_R1FE37 1.99910290278 0.5 -1.49910290278 +UniRef50_UPI00039572EC molybdopterin guanine dinucleotide biosynthesis protein A 0.414063888658 0.5 0.0859361113417 +UniRef50_P31434 Alpha xylosidase 2.86344370141 0.5 -2.36344370141 +UniRef50_J8V5R5 2.77186310237 0.5 -2.27186310237 +UniRef50_UPI00016C54C0 histidinol dehydrogenase 0.151122729716 0.5 0.348877270284 +UniRef50_Q4DRG1 MaoC like dehydratase, putative 0.892985615549 0.5 -0.392985615549 +UniRef50_B3QY47 NADH quinone oxidoreductase subunit B 2 0.00192001169204 0.5 0.498079988308 +UniRef50_A3M2E1 DNA polymerase V component 0.0571998256387 0.500000000001 0.44280017436 +UniRef50_Q47CM9 Phenylalanine tRNA ligase beta subunit 0.0193369396639 0.5 0.480663060336 +UniRef50_P44704 CDP diacylglycerol serine O phosphatidyltransferase 4.04851870118 0.500000000001 -3.54851870118 +UniRef50_Q1CA93 Leucyl phenylalanyl tRNA protein transferase 1.06786741352 0.5 -0.567867413515 +UniRef50_UPI00037210F0 hypothetical protein, partial 0.434155852788 0.5 0.065844147212 +UniRef50_UPI0003114778 hypothetical protein 0.465336516588 0.5 0.0346634834124 +UniRef50_Q3BY50 0.0717999273469 0.5 0.428200072653 +UniRef50_N6D480 1.97579033019 0.5 -1.47579033019 +UniRef50_P0ADQ4 0.979623591556 0.5 -0.479623591556 +UniRef50_A3M418 0.0373546492858 0.5 0.462645350714 +UniRef50_UPI000255A3BD acetyl CoA acetyltransferase, partial 0.159698696449 0.5 0.340301303551 +UniRef50_D3QHV4 Transcription repressor of sporulation, septation and degradation PaiA 0.599091183128 0.5 -0.0990911831282 +UniRef50_F8I0C3 0.271193847615 0.5 0.228806152385 +UniRef50_UPI0002886B91 NAD dependent malic enzyme 1 0.582214639125 0.5 -0.0822146391254 +UniRef50_Q6CEK4 YALI0B14971p 0.0160859300586 0.5 0.483914069942 +UniRef50_S5XJ53 0.504243436672 0.5 -0.00424343667188 +UniRef50_G8VB45 Exonuclease V subunit alpha 0.00696831738231 0.5 0.493031682618 +UniRef50_A3L1C1 0.219293215232 0.5 0.280706784768 +UniRef50_UPI000477E357 hypothetical protein 0.298483713612 0.5 0.201516286388 +UniRef50_UPI0003DE7F24 PREDICTED 0.415858490419 0.5 0.0841415095808 +UniRef50_D2ZNL5 4.81771967115 0.499999999999 -4.31771967115 +UniRef50_R3B8E7 0.310760800228 0.5 0.189239199772 +UniRef50_UPI0003731F30 hypothetical protein 0.0072018112632 0.5 0.492798188737 +UniRef50_UPI00046581AB peptide ABC transporter permease 0.24485591342 0.5 0.25514408658 +UniRef50_UPI000470EA3B orotidine 5 phosphate decarboxylase, partial 0.661795283136 0.5 -0.161795283136 +UniRef50_UPI0003779D2C hypothetical protein 2.24106620703 0.5 -1.74106620703 +UniRef50_W1XGP9 Branched chain amino acid transport system 0.20893383218 0.5 0.29106616782 +UniRef50_H0PS77 0.291909902413 0.5 0.208090097587 +UniRef50_Q4L3C5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.38739873882 0.499999999999 -2.88739873882 +UniRef50_G0A952 Inner membrane translocator 0.0440079808684 0.5 0.455992019132 +UniRef50_A4XYG1 Protein RnfH 0.441117378197 0.5 0.0588826218031 +UniRef50_Q59801 Hyaluronate lyase 2.50864610226 0.500000000003 -2.00864610226 +UniRef50_P21507 ATP dependent RNA helicase SrmB 3.25819815071 0.500000000001 -2.75819815071 +UniRef50_UPI00046D65C0 hypothetical protein 0.654933430882 0.5 -0.154933430882 +UniRef50_D6U054 Short chain dehydrogenase reductase SDR 0.142446993611 0.499999999999 0.35755300639 +UniRef50_P50205 Acetoacetyl CoA reductase 1.11851474861 0.5 -0.618514748609 +UniRef50_P28721 Protein GltF 1.52539695563 0.5 -1.02539695563 +UniRef50_F2UKD5 0.167884951563 0.5 0.332115048438 +UniRef50_D3QJ79 Multimodular transpeptidase transglycosylase 2.21038188847 0.499999999998 -1.71038188847 +UniRef50_P72158 N5 carboxyaminoimidazole ribonucleotide synthase 77.2398742566 0.500000000016 -76.7398742566 +UniRef50_S3DKH9 15.3182631921 0.499999999982 -14.8182631921 +UniRef50_O85674 Anthranilate 1,2 dioxygenase small subunit 0.280552626603 0.5 0.219447373397 +UniRef50_Q7MYS8 Oligoribonuclease 0.521300398858 0.5 -0.021300398858 +UniRef50_UPI000369E32A single stranded DNA binding protein 0.0979853699017 0.5 0.402014630098 +UniRef50_Q168P4 GTP cyclohydrolase FolE2 2.09719526883 0.5 -1.59719526883 +UniRef50_E3I2H2 NADH ubiquinone oxidoreductase 20 kDa subunit 1.81637288123 0.500000000003 -1.31637288123 +UniRef50_A3M2G1 0.0399316409843 0.5 0.460068359016 +UniRef50_W9T9K1 Sulfate transporter 1.13621669384 0.5 -0.636216693837 +UniRef50_UPI000468F97A adenosylcobinamide kinase 1.0400583656 0.5 -0.540058365598 +UniRef50_H6VX70 Tyrosine recombinase XerC 0.0238592246949 0.5 0.476140775305 +UniRef50_K1E1R3 Exodeoxyribonuclease V subunit gamma 0.0919500173274 0.5 0.408049982673 +UniRef50_Q5GWV2 98.4451507785 0.499999999985 -97.9451507785 +UniRef50_Q1HTP5 X2R 0.98137251733 0.5 -0.48137251733 +UniRef50_A0A018ZXW4 Molybdopterin guanine dinucleotide biosynthesis protein MobA 0.42245104795 0.5 0.0775489520501 +UniRef50_C6BD53 MscS Mechanosensitive ion channel 1.67810044279 0.5 -1.17810044279 +UniRef50_Q9HZ76 UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase 0.0419494286549 0.5 0.458050571345 +UniRef50_UPI00036DC1D7 MULTISPECIES 0.637696276092 0.5 -0.137696276092 +UniRef50_P43505 Membrane fusion protein MtrC 0.21148689448 0.5 0.28851310552 +UniRef50_A1B1U3 Magnesium transporter 1.55879070175 0.5 -1.05879070175 +UniRef50_Q8DUY3 Putative two component membrane permease complex subunit SMU_747c 0.327476403185 0.5 0.172523596815 +UniRef50_O85786 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.450789682121 0.5 0.0492103178793 +UniRef50_A0A020CZ26 1.89502943078 0.5 -1.39502943078 +UniRef50_Q2CIE7 0.32149540947 0.5 0.17850459053 +UniRef50_UPI0003C88714 PREDICTED 0.209620360859 0.5 0.290379639141 +UniRef50_UPI00041F5BCB inositol monophosphatase 0.133118163782 0.5 0.366881836218 +UniRef50_T1BV79 Potassium transporting ATPase subunit B 0.00482115801291 0.5 0.495178841987 +UniRef50_F5M3E9 1.13173551762 0.5 -0.631735517624 +UniRef50_UPI0004725E16 hypothetical protein 1.34500024162 0.5 -0.845000241624 +UniRef50_E3IHD0 Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein 0.0691880911721 0.5 0.430811908828 +UniRef50_A4FA42 0.954656782217 0.5 -0.454656782217 +UniRef50_T6N9U5 2.4121624106 0.5 -1.9121624106 +UniRef50_M4YYU6 A G specific adenine glycosylase 1.58925015441 0.5 -1.08925015441 +UniRef50_B5R8Z8 D amino acid dehydrogenase Alanine racemase fusion protein 1.75792670179 0.500000000001 -1.25792670179 +UniRef50_G7ZH30 0.723246307501 0.5 -0.223246307501 +UniRef50_A4VT18 Mevalonate kinase 1.30976270853 0.5 -0.809762708525 +UniRef50_P0AF19 N acetylglucosamine 6 phosphate deacetylase 6.0151546559 0.499999999996 -5.51515465589 +UniRef50_B9KUF9 0.576965617528 0.5 -0.076965617528 +UniRef50_Q7UFS3 GMP synthase [glutamine hydrolyzing] 0.337985865281 0.5 0.162014134719 +UniRef50_H8FW24 0.656158314545 0.5 -0.156158314545 +UniRef50_A6LW90 0.0705230652358 0.5 0.429476934764 +UniRef50_M5ABS1 Antiholin like protein LrgB 1.07712690784 0.5 -0.577126907844 +UniRef50_G3Z6Q7 UPF0125 protein HMPREF1028_02272 0.102471552725 0.5 0.397528447275 +UniRef50_B0VLI0 0.0221012012152 0.5 0.477898798785 +UniRef50_N6W8Z6 Putative oxidoreductase 0.0558401982907 0.500000000001 0.444159801709 +UniRef50_A6WEM4 0.0429181786694 0.5 0.457081821331 +UniRef50_A5N6U5 Transcriptional regulator 0.633634601754 0.5 -0.133634601754 +UniRef50_Q8PNB5 Adenylosuccinate synthetase 1.29952816244 0.500000000001 -0.799528162436 +UniRef50_UPI00035FCD7D hypothetical protein 0.0818130170823 0.5 0.418186982918 +UniRef50_Q16D47 3,5 bisphosphate nucleotidase 2.17984022447 0.5 -1.67984022447 +UniRef50_G0DW29 Penicillin binding protein 0.0190597181747 0.5 0.480940281825 +UniRef50_Q5HNL5 Formamidopyrimidine DNA glycosylase 2.51746242096 0.500000000002 -2.01746242097 +UniRef50_C6E3P1 2.31362132033 0.5 -1.81362132033 +UniRef50_E1S7F7 Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase 0.0158481687321 0.5 0.484151831268 +UniRef50_UPI000379B136 hypothetical protein 0.388250598846 0.5 0.111749401154 +UniRef50_E5QW86 0.647826267962 0.5 -0.147826267962 +UniRef50_Q3IV65 Capsular polysaccharide biosynthesis protein, putative 2.51031299 0.5 -2.01031299 +UniRef50_T0K2V4 0.573294423673 0.5 -0.0732944236727 +UniRef50_Q56734 Aspartate semialdehyde dehydrogenase 3.13008909792 0.499999999995 -2.63008909792 +UniRef50_A0RKK5 Cell wall surface anchor family protein 0.00679902514752 0.5 0.493200974853 +UniRef50_T1ZLK9 DNA repair protein radA 1.05106283357 0.5 -0.551062833575 +UniRef50_UPI0004660A11 hypothetical protein 0.133402252486 0.5 0.366597747514 +UniRef50_Q2NI31 Methionine tRNA ligase 2.14780855269 0.5 -1.64780855269 +UniRef50_UPI00036BF67A hypothetical protein 3.98500965941 0.500000000002 -3.48500965941 +UniRef50_UPI0004249615 fructose 1,6 bisphosphatase 0.0264445543675 0.5 0.473555445632 +UniRef50_Q2RKK1 Xanthine phosphoribosyltransferase 0.365996901581 0.5 0.134003098419 +UniRef50_B8FB52 Sulfate adenylyltransferase 0.791129344925 0.5 -0.291129344925 +UniRef50_H9U2W8 Transposase 0.0283479142413 0.499999999999 0.471652085759 +UniRef50_W5XCI5 N acetyl gamma glutamyl phosphate reductase 0.434457054702 0.5 0.0655429452983 +UniRef50_U6ECP8 2.22196878788 0.499999999999 -1.72196878788 +UniRef50_Q3JPC5 0.00644347070514 0.5 0.493556529295 +UniRef50_UPI0004752042 formyltetrahydrofolate deformylase, partial 1.64550146979 0.5 -1.14550146979 +UniRef50_Q4ZWM4 DNA polymerase IV 0.152331737431 0.5 0.347668262569 +UniRef50_Q6A6W0 0.0110413277294 0.5 0.488958672271 +UniRef50_Q0BQG5 Nucleoside diphosphate kinase 0.493090337158 0.5 0.00690966284174 +UniRef50_J9QTZ5 Prophage antirepressor 0.274505794087 0.5 0.225494205913 +UniRef50_G8RG67 1.96217051518 0.499999999999 -1.46217051518 +UniRef50_A5UJT9 Desulfoferrodoxin 3.67076651791 0.500000000004 -3.17076651791 +UniRef50_I1F5H5 0.30344690223 0.5 0.19655309777 +UniRef50_D2VS44 Predicted protein 0.688780287769 0.5 -0.188780287769 +UniRef50_UPI0002002642 GAF domain GGDEF domain EAL domain containing protein 0.0203619130477 0.5 0.479638086952 +UniRef50_Q6A9G3 Conjugal transfer protein 0.260811186675 0.5 0.239188813325 +UniRef50_C4LJM5 Peptide chain release factor 1 0.029438704729 0.5 0.470561295271 +UniRef50_P56259 0.349016984234 0.5 0.150983015766 +UniRef50_W9H1I0 0.693153977177 0.5 -0.193153977177 +UniRef50_E3A0A4 2,4 dienoyl CoA reductase FadH2 0.145997723452 0.5 0.354002276548 +UniRef50_UPI0002EF5C1B accessory secretory protein Asp2 0.180472193556 0.5 0.319527806444 +UniRef50_H4F217 4.53427482607 0.499999999999 -4.03427482607 +UniRef50_UPI00030A8FAF membrane protein 1.14837144893 0.5 -0.648371448925 +UniRef50_A9WDI1 Dihydroorotate dehydrogenase 0.142482893377 0.500000000001 0.357517106622 +UniRef50_P37464 Serine tRNA ligase 0.915010336623 0.5 -0.415010336623 +UniRef50_UPI0003622EE4 hypothetical protein 0.89731278462 0.5 -0.39731278462 +UniRef50_UPI00047159CC hypothetical protein 1.68119350167 0.5 -1.18119350167 +UniRef50_A8WTI8 Elongation factor G, mitochondrial 0.280300220463 0.5 0.219699779537 +UniRef50_B0C079 Pyridoxine pyridoxamine 5 phosphate oxidase 0.010857528102 0.5 0.489142471898 +UniRef50_UPI0002DCCC59 hypothetical protein 2.55053336665 0.499999999999 -2.05053336665 +UniRef50_UPI000477E15D hypothetical protein 0.155829351987 0.5 0.344170648013 +UniRef50_F2RAT0 UDP galactose lipid carrier transferase 0.123110336049 0.5 0.376889663951 +UniRef50_Q2YYV8 Imidazolonepropionase 1.75160038469 0.500000000001 -1.25160038469 +UniRef50_M1MXQ5 Amylopullulanase AmyB 0.0806906683037 0.500000000001 0.419309331695 +UniRef50_Q9RRU0 Na+ H+ antiporter, putative 0.00472830217181 0.5 0.495271697829 +UniRef50_B9KNM4 Urea amidolyase related protein 7.82957520329 0.499999999995 -7.32957520329 +UniRef50_Q72NX7 Polyribonucleotide nucleotidyltransferase 0.0208975318294 0.5 0.479102468171 +UniRef50_B6ISK5 Acyl CoA dehydrogenase, putative 0.00398326452359 0.5 0.496016735476 +UniRef50_E3A0N8 Protease subunit HflC 0.700072172968 0.5 -0.200072172968 +UniRef50_A6LU25 0.340994656614 0.5 0.159005343386 +UniRef50_UPI00036B07DE hypothetical protein, partial 0.0444039841081 0.5 0.455596015892 +UniRef50_O25758 Probable chromosome partitioning protein ParB 0.023427150442 0.5 0.476572849558 +UniRef50_UPI00024850D8 hemolysin type calcium binding protein, partial 0.560825546147 0.5 -0.0608255461472 +UniRef50_UPI000466B878 potassium transporter KefB 0.174806282508 0.5 0.325193717492 +UniRef50_B0K1N2 N acetylmuramic acid 6 phosphate etherase 0.391995721372 0.5 0.108004278628 +UniRef50_UPI0003A7C1AD 30S ribosomal protein S15 1.97111653141 0.500000000001 -1.47111653141 +UniRef50_A1B7K4 TRAP dicarboxylate transporter DctP subunit 2.57969382958 0.499999999998 -2.07969382958 +UniRef50_X2MU03 Glutamate ammonia ligase adenylyltransferase 4.4712940543 0.499999999999 -3.9712940543 +UniRef50_A7HA47 LigA 0.04587361391 0.5 0.45412638609 +UniRef50_M9S6C0 0.36710072438 0.5 0.13289927562 +UniRef50_Q3JNY9 0.330641965608 0.5 0.169358034392 +UniRef50_UPI0003725615 hypothetical protein 0.90945764035 0.5 -0.40945764035 +UniRef50_P77588 1.58916175665 0.5 -1.08916175665 +UniRef50_B2TL20 [Fe] hydrogenase 2.411380759 0.5 -1.911380759 +UniRef50_UPI00047C43F4 hypothetical protein 0.325757529173 0.5 0.174242470827 +UniRef50_UPI0004719EA1 aminotransferase, partial 0.353626518214 0.5 0.146373481786 +UniRef50_UPI00038F9F8C Spermidine putrescine binding periplasmic protein 2 0.286027037456 0.5 0.213972962544 +UniRef50_B6IYF9 NAD dependent epimerase 2.1316620548 0.5 -1.6316620548 +UniRef50_P57260 NADH quinone oxidoreductase subunit J 0.233711273431 0.5 0.266288726569 +UniRef50_UPI00036191C4 hypothetical protein 0.43423647717 0.5 0.0657635228301 +UniRef50_J9P5P7 0.65770586621 0.5 -0.15770586621 +UniRef50_UPI0002D709E2 hypothetical protein 0.0265708445921 0.5 0.473429155408 +UniRef50_UPI00035DB1EC 50S ribosomal protein L3, partial 0.239269408338 0.5 0.260730591662 +UniRef50_F2MUA2 Metallo beta lactamase 1.3739665958 0.5 -0.873966595799 +UniRef50_UPI0004708144 hypothetical protein, partial 0.0488894741424 0.5 0.451110525858 +UniRef50_UPI0003AF4F98 PREDICTED 0.923844463115 0.5 -0.423844463115 +UniRef50_Q0HP98 Shikimate dehydrogenase 1.99725382043 0.500000000002 -1.49725382043 +UniRef50_UPI00026CDAF4 flagellar biosynthetic protein FliQ 8.86093756924 0.499999999998 -8.36093756924 +UniRef50_A3TWT0 1.68596610604 0.5 -1.18596610604 +UniRef50_B5E1P6 Aspartyl glutamyl tRNA amidotransferase subunit B 0.827279285219 0.5 -0.327279285219 +UniRef50_D5MJP7 0.277254238733 0.5 0.222745761267 +UniRef50_UPI00047D5D86 hypothetical protein 0.193760526847 0.5 0.306239473153 +UniRef50_A5FEC6 N acetyl gamma glutamyl phosphate reductase 0.00469414067551 0.5 0.495305859324 +UniRef50_UPI0003777642 hypothetical protein 0.119461280891 0.5 0.380538719109 +UniRef50_UPI0003B4B360 cation 0.259165634084 0.5 0.240834365916 +UniRef50_U3SQI4 Putative glutathione reductase 2.37103150518 0.5 -1.87103150518 +UniRef50_V8N2X3 Gar1 0.135257963321 0.5 0.364742036679 +UniRef50_Q8CR31 N succinyldiaminopimelate aminotransferase 1.44480198388 0.5 -0.944801983881 +UniRef50_UPI0003B58990 tRNA methyltransferase 0.698481017936 0.5 -0.198481017936 +UniRef50_UPI00042BDC6C PREDICTED 0.0343021632405 0.5 0.46569783676 +UniRef50_Q65U21 Lipid A export ATP binding permease protein MsbA 2.96674851341 0.500000000001 -2.46674851342 +UniRef50_C4UBB8 sn glycerol 3 phosphate binding periplasmic protein ugpB 0.967669028033 0.5 -0.467669028033 +UniRef50_M4X3Z5 Nitrous oxide reductase 0.935493232685 0.5 -0.435493232685 +UniRef50_Q9RXJ6 30S ribosomal protein S3 0.00748274282944 0.5 0.492517257171 +UniRef50_X1GQT1 Marine sediment metagenome DNA, contig 0.669109785215 0.5 -0.169109785215 +UniRef50_Q97KH7 Phosphoribosyl AMP cyclohydrolase 0.725481806148 0.5 -0.225481806148 +UniRef50_Q7URW6 DNA directed RNA polymerase subunit beta 0.509095517797 0.5 -0.00909551779694 +UniRef50_D9VIN0 Predicted protein 0.715930664711 0.5 -0.215930664711 +UniRef50_M8UUK1 0.444023610853 0.5 0.0559763891475 +UniRef50_UPI00042BD38E PREDICTED 0.692748946527 0.5 -0.192748946527 +UniRef50_Q9K005 Orotidine 5 phosphate decarboxylase 0.0804229680094 0.5 0.41957703199 +UniRef50_B4RNK3 TspB3 0.0111015465247 0.5 0.488898453475 +UniRef50_UPI00040ED66A riboflavin biosynthesis protein RibD 0.0625932173078 0.5 0.437406782692 +UniRef50_B0TFC9 Bifunctional protein FolD 0.603404559189 0.5 -0.103404559189 +UniRef50_A5UMF6 Shikimate dehydrogenase 0.840475532244 0.5 -0.340475532244 +UniRef50_UPI0003457810 hypothetical protein 1.22800011609 0.5 -0.728000116093 +UniRef50_UPI00016B2503 excinuclease ABC, B subunit, partial 2.38543715546 0.500000000003 -1.88543715547 +UniRef50_W4UC70 0.0595348599406 0.5 0.44046514006 +UniRef50_W1GWA4 GTP binding protein TypA BipA 0.460739195657 0.5 0.0392608043425 +UniRef50_UPI000372735A hypothetical protein, partial 0.253515879462 0.5 0.246484120538 +UniRef50_A0A059LBF3 0.865256689211 0.5 -0.365256689211 +UniRef50_B7V938 0.753153288959 0.5 -0.253153288959 +UniRef50_UPI00036DDC82 hypothetical protein 0.122016225149 0.5 0.377983774851 +UniRef50_P76542 Putative prophage CPZ 55 integrase 10.3295920114 0.500000000003 -9.8295920114 +UniRef50_A4WCP1 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.561010892788 0.5 -0.0610108927876 +UniRef50_A3SZC0 1.96229134464 0.5 -1.46229134464 +UniRef50_C4LEY6 Beta hexosaminidase 0.368506956988 0.5 0.131493043012 +UniRef50_UPI000366F960 hypothetical protein 0.310907615348 0.5 0.189092384652 +UniRef50_S2XRA0 Heme A synthase 1.51765006738 0.5 -1.01765006738 +UniRef50_A8HVZ9 Predicted protein 0.186547114315 0.5 0.313452885685 +UniRef50_X1CFP7 Marine sediment metagenome DNA, contig 0.306862470782 0.5 0.193137529218 +UniRef50_UPI0004778F7D hypothetical protein 0.935403735126 0.5 -0.435403735126 +UniRef50_Q3JR20 0.167530725296 0.5 0.332469274704 +UniRef50_UPI00041694C7 Rrf2 family transcriptional regulator 0.271245147092 0.5 0.228754852908 +UniRef50_A5FHP3 Malate dehydrogenase 0.310248516807 0.5 0.189751483193 +UniRef50_Q69PS6 Thioredoxin reductase NTRA 1.30850366207 0.5 -0.80850366207 +UniRef50_UPI0002628AE7 methionyl tRNA synthetase 0.0859170045312 0.500000000001 0.414082995468 +UniRef50_B0VUW8 Membrane bound lytic murein transglycosylase B 0.00786589387242 0.5 0.492134106128 +UniRef50_K9EE72 0.0956727458551 0.5 0.404327254145 +UniRef50_G1L4H7 0.447284567202 0.5 0.0527154327978 +UniRef50_K7RS07 Iojap like protein 0.022681907611 0.5 0.477318092389 +UniRef50_UPI000466C5B8 hypothetical protein, partial 2.83519419581 0.5 -2.33519419581 +UniRef50_F3U4V8 0.778157246449 0.5 -0.278157246449 +UniRef50_UPI000474972D hypothetical protein, partial 0.142770659484 0.5 0.357229340516 +UniRef50_I6ST97 Transcriptional regulator 0.947864839733 0.5 -0.447864839733 +UniRef50_UPI00037FD271 hypothetical protein 3.5459021972 0.5 -3.0459021972 +UniRef50_UPI0002378711 hypothetical protein 0.250916627355 0.5 0.249083372645 +UniRef50_O27273 L sulfolactate dehydrogenase 1.71554731146 0.499999999999 -1.21554731146 +UniRef50_G2MPZ1 2.34527181972 0.5 -1.84527181972 +UniRef50_R0LYS9 Excinuclease ABC subunit C 0.907103171938 0.5 -0.407103171938 +UniRef50_A6LX48 Beta lactamase domain protein 0.17046064547 0.5 0.32953935453 +UniRef50_Q4L686 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 4.3794490688 0.5 -3.8794490688 +UniRef50_M1MPJ0 0.140887629715 0.5 0.359112370285 +UniRef50_V1IJP0 Anaerobic C4 dicarboxylate transporter 1.00814782219 0.5 -0.508147822194 +UniRef50_B1I0S9 Bifunctional enzyme IspD IspF 0.143807655171 0.499999999999 0.35619234483 +UniRef50_UPI000376EAF4 hypothetical protein 0.245645608345 0.5 0.254354391655 +UniRef50_Q6MQ03 Aminomethyltransferase 0.991197192331 0.5 -0.491197192331 +UniRef50_X5KCP0 DNA binding response regulator VncR 0.0940513277881 0.5 0.405948672212 +UniRef50_M4EC72 0.186408572894 0.5 0.313591427106 +UniRef50_D0LWP0 ABC transporter related protein 0.345456317231 0.5 0.154543682769 +UniRef50_G7M0T0 NADPH dependent FMN reductase 0.409102495358 0.5 0.090897504642 +UniRef50_A0A024E7D7 Peptidase M42 0.480625651491 0.5 0.0193743485087 +UniRef50_UPI0003B54765 enoyl CoA hydratase 0.199268295192 0.499999999999 0.300731704809 +UniRef50_D5ALC3 0.21195426718 0.5 0.28804573282 +UniRef50_A0A059LAL0 3.38901292291 0.500000000002 -2.88901292292 +UniRef50_G5JVU3 GBS Bsp like repeat protein 0.445067869426 0.5 0.0549321305738 +UniRef50_A1WZ50 4 hydroxy tetrahydrodipicolinate synthase 34.736202435 0.500000000042 -34.2362024351 +UniRef50_Q8R7Y4 Energy coupling factor transporter ATP binding protein EcfA1 0.0398169751612 0.5 0.460183024839 +UniRef50_B4RP36 CadB 2.44938915887 0.5 -1.94938915887 +UniRef50_UPI00031DDA32 hypothetical protein 0.00184140627595 0.5 0.498158593724 +UniRef50_R9ZL92 0.443122454104 0.5 0.0568775458962 +UniRef50_D3QDJ7 Predicted ring cleavage extradiol dioxygenase 1.91774888758 0.499999999998 -1.41774888758 +UniRef50_F6CD95 Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific 1.4496491009 0.5 -0.949649100901 +UniRef50_D7CSB0 ABC transporter related protein 0.00348095212657 0.5 0.496519047873 +UniRef50_P52143 1.96916211629 0.500000000001 -1.46916211629 +UniRef50_UPI00036FBDE9 helicase SNF2 0.00523592308299 0.5 0.494764076917 +UniRef50_A0QX20 Aconitate hydratase 0.0731794071386 0.5 0.426820592861 +UniRef50_O59439 30S ribosomal protein S5 2.90881440504 0.499999999999 -2.40881440503 +UniRef50_UPI00036C31D6 succinylarginine dihydrolase, partial 0.151448229823 0.5 0.348551770177 +UniRef50_Q59086 Quinate shikimate dehydrogenase 0.00903653375254 0.5 0.490963466248 +UniRef50_UPI0003B4E02A HNH endonuclease 3.04883624772 0.500000000001 -2.54883624772 +UniRef50_V4ZHB5 0.0502620764653 0.5 0.449737923535 +UniRef50_Q9RZD4 0.0267402597678 0.5 0.473259740232 +UniRef50_V2VFK5 Methionine biosynthesis protein MetW 0.0140852529008 0.5 0.485914747099 +UniRef50_F6DMK6 0.332662378415 0.5 0.167337621585 +UniRef50_Q2G2M4 Mini ribonuclease 3 0.509370936047 0.5 -0.00937093604703 +UniRef50_A3JQ23 0.33035682916 0.5 0.16964317084 +UniRef50_C5AYY6 ABC family transporter, periplasmic protein 0.949837770461 0.5 -0.449837770461 +UniRef50_J1K243 0.323415873303 0.5 0.176584126697 +UniRef50_UPI000287B619 UBA THIF type NAD FAD binding protein 1.93592600493 0.5 -1.43592600493 +UniRef50_C5WHW2 Arginine repressor 2.71337516872 0.500000000001 -2.21337516872 +UniRef50_UPI0003F95C37 PTS system cellobiose specific transporter subunit IIA 0.668485652263 0.5 -0.168485652263 +UniRef50_U5MQ56 Serine threonine protein phosphatase 0.0350738175793 0.5 0.464926182421 +UniRef50_B0YLW6 Cysteine desulfurase, mitosomal 0.04577372493 0.499999999999 0.454226275071 +UniRef50_UPI000476C43C cell division protein FtsZ 0.222863785923 0.5 0.277136214077 +UniRef50_D3HAC9 Single stranded DNA specific exonuclease 0.491306149336 0.5 0.00869385066444 +UniRef50_U6HVX7 Heat shock 70 kDa protein, mitochondrial, putative 1.59238560431 0.5 -1.09238560431 +UniRef50_W5N2Q1 0.0402887261942 0.5 0.459711273806 +UniRef50_UPI00047E91BA ferredoxin 0.0523335785687 0.5 0.447666421431 +UniRef50_G7MC40 Methyl accepting chemotaxis sensory transducer with Cache sensor 0.151048078421 0.5 0.348951921579 +UniRef50_P15038 Helicase IV 2.29780609997 0.500000000001 -1.79780609997 +UniRef50_UPI0003787F1C hypothetical protein 0.041755156138 0.5 0.458244843862 +UniRef50_O26663 Succinyl CoA ligase [ADP forming] subunit alpha 0.235320766476 0.5 0.264679233524 +UniRef50_G0DVB6 Alpha galactosidase 0.0107007776579 0.5 0.489299222342 +UniRef50_UPI000472DA74 membrane protein 0.474183827395 0.5 0.0258161726046 +UniRef50_K0HCK8 ComE operon protein 3 0.0258656376877 0.5 0.474134362312 +UniRef50_UPI0003B6E09E ABC transporter 0.906507875382 0.5 -0.406507875382 +UniRef50_Q5P3C5 Crossover junction endodeoxyribonuclease RuvC 1.03712865268 0.5 -0.537128652681 +UniRef50_Q27580 Adenosylhomocysteinase 0.0837323106555 0.5 0.416267689345 +UniRef50_I5C553 Bacteriophage replication gene A protein 0.310589681376 0.5 0.189410318624 +UniRef50_UPI000248C2C2 electron transfer flavoprotein, alpha subunit FixB family protein 0.602049969425 0.5 -0.102049969425 +UniRef50_UPI0002E17ECF hypothetical protein 0.72333415712 0.5 -0.22333415712 +UniRef50_X7YY04 0.0353316972274 0.5 0.464668302773 +UniRef50_F3SAU0 1.15291619064 0.5 -0.65291619064 +UniRef50_Q44472 Putative hydroxypyruvate reductase 0.309253049481 0.5 0.190746950519 +UniRef50_Z4XCQ6 Putative cross wall targeting lipoprotein signal 1.46434968101 0.5 -0.964349681014 +UniRef50_A3PHP4 Putative ECF RNA polymerase sigma factor protein 0.512430643694 0.5 -0.012430643694 +UniRef50_Q6F2A0 Serine tRNA ligase 0.45411156205 0.5 0.0458884379497 +UniRef50_Q029K6 Queuine tRNA ribosyltransferase 0.0958387240124 0.5 0.404161275987 +UniRef50_A5UM57 Predicted deacylase 0.412594006166 0.5 0.0874059938342 +UniRef50_A6QBY0 3 oxoacyl [acyl carrier protein] synthase 3 0.0221920958183 0.5 0.477807904182 +UniRef50_A6LXB6 Methyl accepting chemotaxis sensory transducer 0.106686619566 0.499999999999 0.393313380434 +UniRef50_R7MK20 PTS system fructose specific IIABC component 0.00509882972261 0.5 0.494901170278 +UniRef50_Q5L925 GTP cyclohydrolase 1 0.413547450367 0.5 0.0864525496327 +UniRef50_P0AAE6 Putative arginine ornithine antiporter 1.35309798027 0.5 -0.853097980268 +UniRef50_A3PM57 OmpA domain protein 2.02623553245 0.5 -1.52623553245 +UniRef50_N8JY23 2.07847720296 0.5 -1.57847720296 +UniRef50_P0A201 Curli production assembly transport component CsgE 0.322056872711 0.5 0.177943127289 +UniRef50_UPI00047B3E5B hypothetical protein 0.373297736502 0.5 0.126702263498 +UniRef50_UPI00035D0534 hypothetical protein 0.0766004751154 0.5 0.423399524885 +UniRef50_A5UYT7 PUCC protein 1.69369652088 0.500000000002 -1.19369652088 +UniRef50_Q8XJR2 Putative zinc metalloprotease CPE1693 0.0303228044163 0.499999999999 0.469677195584 +UniRef50_Q9SEY5 Probable acyl activating enzyme 2 0.55127591579 0.5 -0.0512759157903 +UniRef50_W4SG00 0.311837344081 0.5 0.188162655919 +UniRef50_A5UNX6 Predicted universal stress protein, UspA 0.319560307807 0.5 0.180439692193 +UniRef50_D6EFB5 Regulatory protein 5.02472501472 0.499999999997 -4.52472501471 +UniRef50_Q94522 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial 0.540386566167 0.5 -0.040386566167 +UniRef50_Q8DX72 Transcriptional regulator, Cro CI family 0.897146985066 0.5 -0.397146985066 +UniRef50_Q53599 Protein map 2.73265039771 0.499999999999 -2.23265039771 +UniRef50_P06576 ATP synthase subunit beta, mitochondrial 1.60475492008 0.5 -1.10475492008 +UniRef50_UPI00021A56D7 PREDICTED 1.50915350344 0.500000000002 -1.00915350344 +UniRef50_P44910 GTP binding protein TypA BipA homolog 0.16074086355 0.5 0.33925913645 +UniRef50_T0IMD9 0.377327885189 0.5 0.122672114811 +UniRef50_A7HYI4 50S ribosomal protein L9 1.35290914574 0.5 -0.852909145737 +UniRef50_B9L2J1 Acetaldehyde dehydrogenase 1.86629215784 0.5 -1.36629215784 +UniRef50_UPI0003B61C67 50S ribosomal protein L4 0.0931912165228 0.5 0.406808783477 +UniRef50_A6LZH7 Transcriptional regulator, MarR family 0.125761779562 0.500000000001 0.374238220437 +UniRef50_Q2FF13 Low molecular weight protein tyrosine phosphatase PtpB 0.963644023828 0.5 -0.463644023828 +UniRef50_Q5HHD1 Putative peptidyl prolyl cis trans isomerase 0.0160059961938 0.5 0.483994003806 +UniRef50_UPI00040BC9E5 butanediol dehydrogenase 0.424456036342 0.5 0.0755439636583 +UniRef50_A1R669 Oxidoreductase family, NAD binding Rossmann fold domain protein 0.00900327342577 0.5 0.490996726574 +UniRef50_UPI00039B5846 hypothetical protein 0.347089055231 0.5 0.152910944769 +UniRef50_F2MM74 Cytidine deaminase 0.265390626185 0.5 0.234609373815 +UniRef50_UPI00022CE1AC 0.0484277079999 0.500000000001 0.451572292 +UniRef50_N9Z7F0 YhgE Pip domain containing protein 0.119754476754 0.5 0.380245523246 +UniRef50_F5YEL5 Nitrogenase 0.313397252663 0.5 0.186602747337 +UniRef50_F0RQS6 0.115667421526 0.5 0.384332578474 +UniRef50_P45799 ADP compounds hydrolase NudE 7.69104451961 0.499999999997 -7.1910445196 +UniRef50_O26664 1.88395930126 0.5 -1.38395930126 +UniRef50_UPI0000164CEE putative transposase 0.000298038172555 0.5 0.499701961828 +UniRef50_UPI0004415ED9 GTP binding protein Obg CgtA 0.010256151733 0.499999999999 0.489743848268 +UniRef50_UPI00038219EB hypothetical protein 0.269913898254 0.5 0.230086101746 +UniRef50_A0A023UVB3 MFS transporter 0.737062042608 0.5 -0.237062042608 +UniRef50_Q93PN3 Ferric hydroxamate receptor 1 2.44921324978 0.5 -1.94921324978 +UniRef50_UPI000466770B BCCT transporter 1.50900083231 0.5 -1.00900083231 +UniRef50_L2ZQX2 Melibiose carrier protein 1.2466401941 0.5 -0.7466401941 +UniRef50_P37746 Putative O antigen transporter 3.55202921311 0.5 -3.05202921311 +UniRef50_UPI0004718772 30S ribosomal protein S2 0.624822018497 0.5 -0.124822018497 +UniRef50_L1KZ53 0.021492470422 0.5 0.478507529578 +UniRef50_E1M0K4 N acetyl glucosamine matabolism 0.657065442811 0.5 -0.157065442811 +UniRef50_H8XGR9 3.68075297342 0.499999999995 -3.18075297341 +UniRef50_UPI0002064BBF PREDICTED 0.258220967289 0.5 0.241779032711 +UniRef50_U5UMZ1 N acetylglucosamine 6 phosphate deacetylase 3.23520727059 0.499999999997 -2.73520727059 +UniRef50_Q6A9W9 Cation transporting P type ATPase A 0.0101512604939 0.5 0.489848739506 +UniRef50_F4M600 1.14801094334 0.499999999999 -0.648010943338 +UniRef50_UPI00046BAD61 PREDICTED 0.463140317377 0.5 0.0368596826232 +UniRef50_UPI0003A27C90 hypothetical protein 2.93879404303 0.5 -2.43879404303 +UniRef50_UPI00037AE98E hypothetical protein 0.185037793053 0.5 0.314962206947 +UniRef50_P42778 Aminopeptidase T 0.864668299464 0.5 -0.364668299464 +UniRef50_M4YX89 Stage 0 sporulation protein 0.659957780984 0.5 -0.159957780984 +UniRef50_R9ZFL5 ABC transporter permease 0.349744923324 0.5 0.150255076676 +UniRef50_UPI000428106D hypothetical protein 0.741374841351 0.5 -0.241374841351 +UniRef50_A0A029PSG2 0.293334541591 0.5 0.206665458409 +UniRef50_A0A024IS11 Plasmid partitioning protein 2.97214083113 0.499999999996 -2.47214083113 +UniRef50_P9WQK2 0.0817716728309 0.5 0.418228327169 +UniRef50_Q7M8H7 Valine tRNA ligase 0.0143441075326 0.5 0.485655892468 +UniRef50_A6LZT7 0.324787977793 0.5 0.175212022207 +UniRef50_W7G027 1.17718279773 0.5 -0.677182797731 +UniRef50_D5AM27 Pseudouridine synthase 1.72573579673 0.5 -1.22573579673 +UniRef50_P76561 Esterase YpfH 0.951797182078 0.5 -0.451797182078 +UniRef50_UPI00021974F8 DeoR family transcriptional regulator 0.21290501328 0.5 0.28709498672 +UniRef50_D2QMM0 0.0780062179704 0.5 0.42199378203 +UniRef50_UPI00016C4288 CheA Signal Transduction Histidine Kinases , partial 0.092153022674 0.5 0.407846977326 +UniRef50_UPI00046451D1 polyamine ABC transporter ATPase 2.01596784359 0.5 -1.51596784359 +UniRef50_R5ELQ2 Topology modulation protein 0.286710312149 0.5 0.213289687851 +UniRef50_P25857 Glyceraldehyde 3 phosphate dehydrogenase GAPB, chloroplastic 1.18403009843 0.5 -0.684030098434 +UniRef50_Q67TG7 0.225304613639 0.5 0.274695386361 +UniRef50_W4UAM7 0.0512209949193 0.5 0.448779005081 +UniRef50_UPI0003B31F76 hypothetical protein 0.25948158272 0.5 0.24051841728 +UniRef50_E3CUZ5 NLPA lipoprotein 0.24933029659 0.5 0.25066970341 +UniRef50_UPI0004758E9D hypothetical protein, partial 1.12325912703 0.5 -0.623259127033 +UniRef50_G8V940 MutT Nudix family protein 0.0645812747235 0.5 0.435418725276 +UniRef50_UPI00045E611A cytidine deaminase 0.564143815383 0.5 -0.0641438153833 +UniRef50_UPI000349A3D9 hypothetical protein 0.112023326789 0.5 0.387976673211 +UniRef50_UPI0003B40D78 sugar ABC transporter, partial 2.55977312372 0.500000000002 -2.05977312373 +UniRef50_G2SQ27 Glycosyltransferase 1.12360637169 0.5 -0.623606371685 +UniRef50_X6L644 0.807859412141 0.5 -0.307859412141 +UniRef50_A5UHD3 Bifunctional protein GlmU 1.9200816743 0.5 -1.4200816743 +UniRef50_UPI00046B76DF PREDICTED 0.0101156537405 0.5 0.48988434626 +UniRef50_A7X6P6 Holin like protein CidA 1.29129748804 0.5 -0.791297488044 +UniRef50_P0A1J8 Flagella synthesis protein FlgN 0.334480954534 0.5 0.165519045466 +UniRef50_Q39NK6 Endoribonuclease L PSP 0.25274747685 0.5 0.24725252315 +UniRef50_UPI0001B44150 hypothetical protein 0.207672043571 0.5 0.292327956429 +UniRef50_P00490 Maltodextrin phosphorylase 1.4394706002 0.5 -0.939470600199 +UniRef50_A5UJI7 Asparagine synthetase, AsnB 3.12638955771 0.499999999998 -2.62638955771 +UniRef50_K2DSG6 0.625431495251 0.5 -0.125431495251 +UniRef50_UPI00046C2950 cytochrome b 1.30275754492 0.500000000001 -0.802757544923 +UniRef50_UPI0003B5555F MFS transporter 0.0881632113302 0.5 0.41183678867 +UniRef50_A6QHT5 14.0521276853 0.49999999999 -13.5521276853 +UniRef50_Q8DV31 0.103976482561 0.5 0.396023517438 +UniRef50_P0A3T3 31 kDa immunogenic protein 0.133574239622 0.5 0.366425760378 +UniRef50_D3NZU9 5.67698911749 0.499999999999 -5.17698911748 +UniRef50_Q9KPB3 GTPase Era 0.0980351850907 0.5 0.401964814909 +UniRef50_UPI00046411BA diaminopimelate decarboxylase, partial 0.406010867969 0.5 0.0939891320308 +UniRef50_UPI00037DE21F multidrug transporter 0.529830010814 0.5 -0.0298300108143 +UniRef50_Q839Y4 Adenylosuccinate synthetase 1.23325561148 0.5 -0.733255611481 +UniRef50_M9VFY2 0.0126056842671 0.5 0.487394315733 +UniRef50_W0E3L8 Flagellar hook capping protein 0.3649979784 0.5 0.1350020216 +UniRef50_Q5HKD7 Oxidoreductase, short chain dehydrogenase reductase family 1.32398382254 0.5 -0.823983822543 +UniRef50_UPI00036E9589 hypothetical protein, partial 1.20480283369 0.5 -0.704802833691 +UniRef50_M3F475 0.00729609447738 0.5 0.492703905523 +UniRef50_UPI000463B4EA carnitine dehydratase 0.0290265289188 0.500000000001 0.470973471081 +UniRef50_D6EJW5 Predicted protein 0.00297609188386 0.500000000001 0.497023908116 +UniRef50_H4XQD7 Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein 1.89412997447 0.5 -1.39412997447 +UniRef50_UPI0003A6E25E serine dehydratase 0.338779552949 0.5 0.161220447051 +UniRef50_UPI00039D719D DNA binding protein 1.07979567524 0.5 -0.579795675235 +UniRef50_G5RJ22 0.324659162782 0.5 0.175340837218 +UniRef50_W0YK09 1.8055157391 0.5 -1.30551573909 +UniRef50_I6B1F5 1.01413377273 0.5 -0.51413377273 +UniRef50_B9KLE9 Transcriptional regulator, AraC family 1.52459278569 0.499999999999 -1.02459278569 +UniRef50_UPI0004764017 peptide ABC transporter permease 1.54055348452 0.5 -1.04055348452 +UniRef50_UPI00037A033B hypothetical protein 0.114296112212 0.5 0.385703887788 +UniRef50_Q0K7G7 Acyl CoA synthetase 0.915326328343 0.5 -0.415326328343 +UniRef50_C2ZQ18 ABC transporter ATP binding protein yxdL 6.02806856069 0.500000000004 -5.52806856069 +UniRef50_Q6FDY0 Cell shape determining protein MreC 0.125164465488 0.5 0.374835534512 +UniRef50_C6CXW7 LmbE family protein 0.165390126167 0.500000000001 0.334609873832 +UniRef50_I0C3E8 Myo inositol 1 monophosphatase 0.956888981366 0.5 -0.456888981366 +UniRef50_Q3AHV1 Glutamyl Q tRNA synthetase 0.277312250238 0.5 0.222687749762 +UniRef50_A3M2F5 Conjugal transfer protein 0.00655913648169 0.500000000001 0.493440863517 +UniRef50_UPI00046744B6 ABC transporter permease, partial 0.983529667435 0.5 -0.483529667435 +UniRef50_UPI000362E5AE hypothetical protein 0.299906042262 0.5 0.200093957738 +UniRef50_D3SBY0 Ribonuclease, Rne Rng family 0.768277091837 0.5 -0.268277091837 +UniRef50_B1LM32 Fatty acid oxidation complex subunit alpha 0.122239448661 0.5 0.377760551339 +UniRef50_UPI0003FCFBC7 GTP binding protein Era 0.104323351742 0.5 0.395676648258 +UniRef50_UPI00036244E1 MULTISPECIES 0.297525092372 0.5 0.202474907628 +UniRef50_F4EDN7 Ribulose phosphate 3 epimerase 0.802788085212 0.5 -0.302788085212 +UniRef50_Q8CQF2 Capsular polysaccharide synthesis enzyme Cap5B 1.61633810258 0.5 -1.11633810258 +UniRef50_P08997 Malate synthase A 6.88545622268 0.500000000001 -6.38545622268 +UniRef50_A0A036W4K8 8.33403387263 0.499999999993 -7.83403387263 +UniRef50_UPI00047C7627 glutathione synthetase 0.255821352141 0.5 0.244178647859 +UniRef50_P32167 0.815499768278 0.5 -0.315499768278 +UniRef50_F7X4C7 Delta aminolevulinic acid dehydratase 0.312218994805 0.5 0.187781005195 +UniRef50_P65897 Phosphoribosylglycinamide formyltransferase 1.69832424319 0.5 -1.19832424319 +UniRef50_UPI000287C995 membrane protein 0.0937987917934 0.499999999999 0.406201208207 +UniRef50_M5DTI1 0.355537696343 0.5 0.144462303657 +UniRef50_B6ERK3 L allo threonine aldolase 3.517864508 0.500000000001 -3.017864508 +UniRef50_V8CW46 1.7849057177 0.499999999999 -1.2849057177 +UniRef50_H0UKG1 Urocanate hydratase 0.00341107243656 0.5 0.496588927563 +UniRef50_M7AG58 1.06622617965 0.5 -0.566226179646 +UniRef50_P37643 Inner membrane metabolite transport protein YhjE 0.197713249533 0.5 0.302286750467 +UniRef50_UPI000466C516 flagellar biosynthesis protein FlhB 3.70703236562 0.5 -3.20703236562 +UniRef50_UPI0003648093 hypothetical protein 0.309046382352 0.5 0.190953617648 +UniRef50_P43669 Tail specific protease 1.29458506009 0.5 -0.794585060089 +UniRef50_E6S4X2 Outer membrane protein 0.00314647266888 0.5 0.496853527331 +UniRef50_G4R850 Molybdopterin guanine dinucleotide biosynthesis protein MobA 0.188253504834 0.500000000001 0.311746495165 +UniRef50_B7H1A9 DNA polymerase III, subunits gamma and tau 0.0141971590486 0.5 0.485802840952 +UniRef50_K4L2S2 Flagellar motor rotation protein MotA 0.123957952688 0.5 0.376042047312 +UniRef50_G5M6M8 0.0655709585482 0.5 0.434429041451 +UniRef50_N6UCJ2 0.0323830213399 0.5 0.46761697866 +UniRef50_C5N315 12.2909545951 0.499999999989 -11.7909545951 +UniRef50_UPI000465C017 ferredoxin 0.0577378738347 0.500000000001 0.442262126165 +UniRef50_A0A022H1C7 DNA binding protein 0.372907705862 0.5 0.127092294138 +UniRef50_A1AZ02 0.964720784217 0.5 -0.464720784217 +UniRef50_UPI0002484134 hemolysin type calcium binding protein 1.11530737468 0.5 -0.615307374677 +UniRef50_A0A023S0A7 DcaP like protein 0.0158005278361 0.5 0.484199472164 +UniRef50_V4A4N8 0.278741855844 0.5 0.221258144156 +UniRef50_Q59977 Citrate synthase 0.0917623504505 0.5 0.40823764955 +UniRef50_V4YV07 0.319560307808 0.5 0.180439692192 +UniRef50_F3U350 1.65915630156 0.5 -1.15915630156 +UniRef50_R7BMM6 Glycerol 3 phosphate cytidyltransferase TagD 2.47668985418 0.5 -1.97668985418 +UniRef50_UPI0002B41A80 PREDICTED 0.316693758968 0.5 0.183306241032 +UniRef50_UPI0004762A43 iron ABC transporter 0.110186173468 0.5 0.389813826532 +UniRef50_P39142 Pyrimidine nucleoside phosphorylase 0.614240383293 0.5 -0.114240383293 +UniRef50_Q1R031 Uridylate kinase 0.0373567275011 0.5 0.462643272499 +UniRef50_A9NG27 Thymidylate synthase 0.0519801230318 0.5 0.448019876968 +UniRef50_A6UJH5 0.125623243721 0.5 0.374376756279 +UniRef50_H5LJB5 3.29772098087 0.500000000004 -2.79772098087 +UniRef50_D6K6K4 0.509631854578 0.5 -0.00963185457781 +UniRef50_B1TED8 0.311199447983 0.5 0.188800552017 +UniRef50_P0A5T7 Formyltetrahydrofolate deformylase 0.376927818911 0.5 0.123072181089 +UniRef50_X2GNK8 Arsenic transporter ATPase 0.0136933631937 0.5 0.486306636806 +UniRef50_G7M542 Two component transcriptional regulator, winged helix family 0.0305788392106 0.5 0.469421160789 +UniRef50_P55910 L lactate permease 4.19213704397 0.5 -3.69213704397 +UniRef50_A6LWU2 ABC transporter related 0.110239143059 0.5 0.389760856941 +UniRef50_B8ZUC1 Phosphoglucosamine mutase 0.047370880695 0.5 0.452629119305 +UniRef50_A0A024HWF4 0.027767198393 0.499999999999 0.472232801608 +UniRef50_G8V8M1 Membrane spanning protein 0.0263362232692 0.5 0.473663776731 +UniRef50_A8HYX7 ABC type branched chain amino acid transport ATPase component 2.76315799178 0.500000000003 -2.26315799178 +UniRef50_A6LZK9 Methyl accepting chemotaxis sensory transducer 0.193656599393 0.5 0.306343400607 +UniRef50_K2KCN1 0.671732252967 0.5 -0.171732252967 +UniRef50_P54933 ATP binding transport protein SmoK 0.622743316102 0.5 -0.122743316102 +UniRef50_UPI0004698811 DNA topoisomerase I 0.103411990166 0.5 0.396588009834 +UniRef50_P0AA51 0.572322423414 0.5 -0.0723224234136 +UniRef50_F8KLF6 6.58835539679 0.500000000002 -6.0883553968 +UniRef50_Q6B945 3 oxoacyl [acyl carrier protein] synthase 3 1.64518536677 0.5 -1.14518536677 +UniRef50_A0A024L5K6 Amino acid ABC transporter permease 0.15652934847 0.5 0.34347065153 +UniRef50_UPI000262D62D glucose 6 phosphate 1 dehydrogenase, partial 0.508574907482 0.5 -0.00857490748165 +UniRef50_Q9JZ77 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.0274685939638 0.5 0.472531406036 +UniRef50_Q08WZ7 1.31678340496 0.499999999999 -0.816783404955 +UniRef50_UPI0003B3DE24 multidrug ABC transporter ATP binding protein 1.08858839695 0.5 -0.588588396948 +UniRef50_UPI0004737AC7 hypothetical protein 0.134409441448 0.5 0.365590558552 +UniRef50_UPI0003B6AFA9 glycerol 3 phosphate dehydrogenase 1.56844150318 0.5 -1.06844150318 +UniRef50_Q9AF05 0.994199064614 0.5 -0.494199064614 +UniRef50_B6ITD9 0.180585322218 0.5 0.319414677782 +UniRef50_P69424 Sec independent protein translocase protein TatC 0.928997640131 0.5 -0.428997640131 +UniRef50_F0KHC4 Cell division protein ftsA 0.0323672347365 0.5 0.467632765263 +UniRef50_Q9RTP9 5.26394772841e-05 0.5 0.499947360522 +UniRef50_R0PW25 0.0328124262431 0.5 0.467187573756 +UniRef50_Q6A6H1 NADH quinone oxidoreductase subunit N 0.00831256475352 0.5 0.491687435246 +UniRef50_UPI00029A832E aspartyl glutamyl tRNA amidotransferase subunit B 1.97633271936 0.5 -1.47633271936 +UniRef50_Q9HA92 Radical S adenosyl methionine domain containing protein 1, mitochondrial 1.26697793245 0.500000000001 -0.766977932455 +UniRef50_UPI00045EA718 hypothetical protein 1.09375490321 0.5 -0.593754903212 +UniRef50_UPI00037A936B hypothetical protein 0.232070094755 0.5 0.267929905245 +UniRef50_A5CSI8 Argininosuccinate lyase 0.000377151042428 0.5 0.499622848958 +UniRef50_Q82Z40 DNA directed RNA polymerase subunit beta 0.615280063659 0.5 -0.115280063659 +UniRef50_I4YRS4 Replication protein C 2.79660713566 0.5 -2.29660713566 +UniRef50_A5HY11 Spore coat protein 0.106900263914 0.5 0.393099736085 +UniRef50_UPI0003680468 hypothetical protein 1.39562514648 0.5 -0.895625146481 +UniRef50_UPI000392E29D PREDICTED 0.793704289926 0.5 -0.293704289926 +UniRef50_P37487 Manganese dependent inorganic pyrophosphatase 0.267883993263 0.5 0.232116006737 +UniRef50_Q2NFD4 Flap endonuclease 1 5.12802916528 0.500000000001 -4.62802916528 +UniRef50_P43010 NAD transhydrogenase subunit beta 0.0141225764896 0.5 0.48587742351 +UniRef50_A0A037XJH2 Membrane protein 3.40247257686 0.5 -2.90247257686 +UniRef50_UPI000237ADAF branched chain amino acid ABC transporter ATP binding protein 4.11014379433 0.5 -3.61014379433 +UniRef50_R7PX51 Peptidase M50 1.93640346495 0.5 -1.43640346495 +UniRef50_UPI0003D2B83C catalase 0.415657691184 0.5 0.084342308816 +UniRef50_Q9AC07 NifU like domain protein 2.36103644433 0.5 -1.86103644433 +UniRef50_UPI0004785B50 hypothetical protein 1.78382307612 0.5 -1.28382307612 +UniRef50_I7EPM1 Gamma glutamyltranspeptidase Ggt 0.772819843908 0.5 -0.272819843908 +UniRef50_UPI0004785B1F LuxR family transcriptional regulator 0.0212214470022 0.5 0.478778552998 +UniRef50_C9JF41 Transcription cofactor HES 6 0.056671166352 0.5 0.443328833648 +UniRef50_P62423 Phosphoglycerate kinase 0.299353696005 0.5 0.200646303995 +UniRef50_L7WTC3 Lipoprotein 7.36326577937 0.499999999999 -6.86326577937 +UniRef50_G7MAA3 0.030261216404 0.5 0.469738783596 +UniRef50_UPI0003AE3085 PREDICTED 1.6351541024 0.5 -1.1351541024 +UniRef50_F7MME9 Radical SAM family protein 0.548671230379 0.5 -0.0486712303787 +UniRef50_UPI000367D5BE hypothetical protein 0.237827820948 0.5 0.262172179052 +UniRef50_T2K0U5 Plasmid replication protein 2.81191652221 0.500000000001 -2.31191652221 +UniRef50_D9QK96 FAD dependent oxidoreductase 1.89514294521 0.5 -1.39514294521 +UniRef50_O67262 Diaminopimelate decarboxylase 0.0773934430221 0.5 0.422606556978 +UniRef50_Q9XJJ6 Spanin, inner membrane subunit 0.0642257032477 0.5 0.435774296752 +UniRef50_C5IBJ2 RhsA 0.977883251481 0.5 -0.477883251481 +UniRef50_A5VCY9 Polyribonucleotide nucleotidyltransferase 0.246258146647 0.5 0.253741853353 +UniRef50_T1XSM0 Cell shape determinant MreD 0.720500860206 0.5 -0.220500860206 +UniRef50_Q07T82 Protease HtpX homolog 1.16682373438 0.5 -0.666823734378 +UniRef50_Q12A19 Histone deacetylase superfamily 2.45585919773 0.500000000001 -1.95585919773 +UniRef50_F2MQQ8 Tagatose 6 phosphate kinase 1.12457357321 0.5 -0.624573573208 +UniRef50_Q9K1M6 0.0151454012453 0.5 0.484854598755 +UniRef50_G9P654 0.42251481038 0.5 0.0774851896198 +UniRef50_A6LY61 AAA ATPase 0.199481579721 0.5 0.300518420279 +UniRef50_P77216 1.02411033824 0.5 -0.524110338243 +UniRef50_P22983 Pyruvate, phosphate dikinase 0.080820962964 0.5 0.419179037036 +UniRef50_UPI000289D44B AMP dependent synthetase ligase 0.569890343986 0.5 -0.0698903439855 +UniRef50_P43712 Malonyl CoA acyl carrier protein transacylase 0.325424547959 0.5 0.174575452041 +UniRef50_R3W3Z9 Regulatory protein BlaR1 1.3715291317 0.5 -0.871529131702 +UniRef50_G7M658 1.05983533209 0.5 -0.559835332095 +UniRef50_B9NM77 1.16674180932 0.5 -0.66674180932 +UniRef50_G9L997 GMP synthase 0.646536785005 0.5 -0.146536785005 +UniRef50_U5UNZ2 Cell division protein DivIB 1.28454901714 0.5 -0.784549017143 +UniRef50_UPI0003BCFABD PREDICTED 0.569688423188 0.5 -0.0696884231883 +UniRef50_H8GRZ1 0.0208930591221 0.5 0.479106940878 +UniRef50_UPI000252B988 PREDICTED 0.613868241964 0.5 -0.113868241964 +UniRef50_P0A9Q3 Aerobic respiration control protein ArcA 0.33404317277 0.5 0.16595682723 +UniRef50_Q62CS2 Conserved domain protein 0.92258188499 0.5 -0.42258188499 +UniRef50_I7BX60 0.788762099731 0.5 -0.288762099731 +UniRef50_N8WA96 0.0183222343795 0.5 0.48167776562 +UniRef50_Q9ZIG2 Thymidine kinase 0.830737074924 0.5 -0.330737074924 +UniRef50_H8GUV3 GTPase, G3E family 0.00432738044257 0.500000000001 0.495672619557 +UniRef50_K9BES8 Type I secretion C terminal target domain protein, VC_A0849 subclass family 0.0174507943508 0.5 0.482549205649 +UniRef50_U6H4I5 0.075785272863 0.5 0.424214727137 +UniRef50_Q8L7B5 Chaperonin CPN60 like 1, mitochondrial 0.268721631516 0.5 0.231278368484 +UniRef50_P37725 Uroporphyrinogen III C methyltransferase 0.424481624668 0.5 0.075518375332 +UniRef50_UPI00037CF2DE hypothetical protein 0.00366366458911 0.5 0.496336335411 +UniRef50_P76641 Guanine deaminase 0.0509405483533 0.5 0.449059451647 +UniRef50_U3TW22 Glycine betaine ABC transporter substrate binding protein 1.62722185818 0.499999999998 -1.12722185818 +UniRef50_UPI000368C576 hypothetical protein 2.97228428002 0.5 -2.47228428002 +UniRef50_Q8AAB1 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.154084121001 0.5 0.345915878999 +UniRef50_Q4L7J6 Sensor protein VraS 2.49258223794 0.499999999996 -1.99258223794 +UniRef50_P39366 Putative aminopeptidase SgcX 0.504950425542 0.5 -0.00495042554184 +UniRef50_UPI00036B883D hypothetical protein 0.775353649498 0.5 -0.275353649498 +UniRef50_Q9ZE99 Prolipoprotein diacylglyceryl transferase 0.57901945076 0.5 -0.0790194507601 +UniRef50_P48632 Ferripyoverdine receptor 1.01878865841 0.5 -0.518788658415 +UniRef50_UPI00037AF8F5 50S ribosomal protein L10 0.740829917208 0.5 -0.240829917208 +UniRef50_UPI00035D9CD4 hypothetical protein 0.23775581023 0.5 0.26224418977 +UniRef50_Q73DE0 Quinol oxidase subunit 2 0.0840261943387 0.5 0.415973805661 +UniRef50_G6XJ67 0.139632911703 0.5 0.360367088298 +UniRef50_UPI00016C3B3C autotransporter associated beta strand repeat protein, partial 4.78202898743 0.499999999998 -4.28202898743 +UniRef50_P56453 Glycine tRNA ligase alpha subunit 0.157109293 0.5 0.342890707 +UniRef50_A6M1U7 Transcriptional regulator, GntR family 0.20063174283 0.5 0.29936825717 +UniRef50_X5DX47 Bacterial regulatory s, tetR family protein 3.30346025745 0.5 -2.80346025745 +UniRef50_F8HGF9 0.174267500955 0.5 0.325732499045 +UniRef50_UPI0004719644 phosphoenolpyruvate carboxykinase 0.117324914683 0.5 0.382675085317 +UniRef50_UPI000255D4C6 ferredoxin NADP reductase subunit alpha 0.25178668515 0.5 0.24821331485 +UniRef50_UPI000262CC71 mannose 1 phosphate guanyltransferase 1.12783673914 0.5 -0.627836739136 +UniRef50_A4X0F9 1.26176649335 0.500000000001 -0.761766493352 +UniRef50_G7U4K0 Hydrolase, NUDIX family protein 0.0232570372964 0.5 0.476742962703 +UniRef50_W0T788 0.0600842017459 0.5 0.439915798254 +UniRef50_K1ER07 Major facilitator transporter 2.44596632561 0.500000000003 -1.94596632562 +UniRef50_A7X202 Nuclease SbcCD subunit D 2.15942381684 0.499999999999 -1.65942381684 +UniRef50_U6AXU2 ABC transporter, periplasmic spermidine putrescine binding protein PotD 0.741769843488 0.5 -0.241769843488 +UniRef50_Q1MRB9 ATP synthase subunit alpha 0.0511353950834 0.5 0.448864604916 +UniRef50_Q4L700 UPF0758 protein SH1266 3.6713447193 0.499999999997 -3.17134471929 +UniRef50_G7U594 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 0.00837542510349 0.5 0.491624574896 +UniRef50_UPI000479001A uridine kinase 0.0192985743893 0.5 0.48070142561 +UniRef50_F3KRZ8 1.43323483491 0.5 -0.933234834905 +UniRef50_R5Q800 1.65238203748 0.500000000001 -1.15238203749 +UniRef50_K0HYU5 0.0294229837482 0.499999999999 0.470577016253 +UniRef50_T9BKY3 Xanthine dehydrogenase accessory factor 2.78923922336 0.5 -2.28923922336 +UniRef50_A4WZ55 Heme A synthase 5.2271437484 0.500000000002 -4.7271437484 +UniRef50_F7XW34 30S ribosomal protein S1 1.2925855236 0.5 -0.792585523596 +UniRef50_V5WF15 Oligopeptide transport system permease protein OppB 0.328767308618 0.5 0.171232691382 +UniRef50_N3GRF4 Type VII secretion system , usher family protein 0.980167168869 0.5 -0.480167168869 +UniRef50_D0WC80 0.0364991929305 0.5 0.46350080707 +UniRef50_P0ACI5 Xylose operon regulatory protein 6.44768218541 0.500000000002 -5.94768218542 +UniRef50_Q60151 Glutathione reductase 0.506817306903 0.5 -0.00681730690346 +UniRef50_P20370 4 carboxymuconolactone decarboxylase 0.068380251263 0.5 0.431619748737 +UniRef50_A4XU74 Elongation factor P 6.52677580979 0.499999999991 -6.02677580978 +UniRef50_S5Y8U0 Glyoxalase bleomycin resistance protein dioxygenase 0.203183121084 0.5 0.296816878916 +UniRef50_A5FMG2 Leucine tRNA ligase 1.39284837011 0.5 -0.892848370112 +UniRef50_D4HCU9 Cysteine rich domain protein 0.0454554005559 0.5 0.454544599444 +UniRef50_Q75AN4 ADL112Wp 1.01406370257 0.5 -0.514063702568 +UniRef50_UPI00047A0692 hypothetical protein 0.28309444185 0.5 0.21690555815 +UniRef50_Q0TLW2 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.728326829981 0.5 -0.228326829981 +UniRef50_Q21Y74 Penicillin amidase 2.63959181787 0.5 -2.13959181787 +UniRef50_A4WV32 0.422228760905 0.5 0.0777712390955 +UniRef50_UPI0002489B60 hemolysin type calcium binding region 0.357355669174 0.5 0.142644330826 +UniRef50_I6SV43 0.277098943309 0.5 0.222901056691 +UniRef50_UPI00037DDE2A hypothetical protein 0.279505168122 0.5 0.220494831878 +UniRef50_A6M0W1 0.156600584201 0.5 0.343399415799 +UniRef50_Q9CHL8 Multidrug resistance ABC transporter ATP binding and permease protein 0.549416802803 0.5 -0.0494168028032 +UniRef50_A3M5M9 Aldehyde dehydrogenase 0.906035914473 0.5 -0.406035914473 +UniRef50_B7MT79 Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor] 0.921900657045 0.5 -0.421900657045 +UniRef50_Q8A2T6 S adenosylmethionine synthase 0.00553702083987 0.5 0.49446297916 +UniRef50_Q87ZG4 Non homologous end joining protein Ku 0.285499951786 0.5 0.214500048214 +UniRef50_A0A023S0C8 Long chain fatty acid transporter 0.0121706158651 0.5 0.487829384135 +UniRef50_Q1MPL2 Porphobilinogen deaminase 0.494368774491 0.5 0.00563122550853 +UniRef50_C2RB76 Glyoxalase 0.0186295228457 0.5 0.481370477154 +UniRef50_A6LTD1 0.501463867633 0.5 -0.00146386763263 +UniRef50_Q5HFS5 Tyrosine recombinase XerD 2.86784811431 0.5 -2.36784811431 +UniRef50_K8NEW5 0.301980089662 0.5 0.198019910338 +UniRef50_H6NGS7 Glutamine ABC transporter substrate binding protein 0.587285912328 0.5 -0.0872859123284 +UniRef50_Q5HKU1 Arginine repressor 0.844064683774 0.5 -0.344064683774 +UniRef50_E8QXQ6 Magnesium protoporphyrin chelatase, putative 0.0359547399811 0.5 0.464045260019 +UniRef50_D3D6E8 2.73533760159 0.5 -2.23533760159 +UniRef50_P12011 Gluconokinase 2.83254734464 0.500000000002 -2.33254734464 +UniRef50_UPI0004111510 hypothetical protein 0.193548394356 0.5 0.306451605644 +UniRef50_G7M433 Transglutaminase domain containing protein 0.412075446139 0.5 0.0879245538612 +UniRef50_UPI00042062D8 hypothetical protein 0.0854498793857 0.5 0.414550120614 +UniRef50_B0UDK8 Light independent protochlorophyllide reductase iron sulfur ATP binding protein 6.11515735584 0.499999999988 -5.61515735582 +UniRef50_C2ZDZ0 0.254087041122 0.5 0.245912958878 +UniRef50_Q8CWX8 Signal recognition particle receptor FtsY 0.91235911171 0.5 -0.41235911171 +UniRef50_Q6F9W0 DNA mismatch repair protein MutL 0.00337688226974 0.5 0.49662311773 +UniRef50_UPI000255B291 ribosomal large subunit pseudouridine synthase A 0.48104564126 0.5 0.0189543587401 +UniRef50_E6SIA9 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase 0.00418383765817 0.5 0.495816162342 +UniRef50_UPI00037DBD2E hypothetical protein 2.13286662552 0.499999999998 -1.63286662552 +UniRef50_UPI0002EC1AE8 hypothetical protein 0.0151940882276 0.5 0.484805911773 +UniRef50_UPI0003A0F247 30S ribosomal protein S13 0.0834767321938 0.5 0.416523267806 +UniRef50_G2ZGH2 Gyrase B 2.80952835694 0.500000000001 -2.30952835694 +UniRef50_UPI000465F37A ABC transporter 0.191094652287 0.5 0.308905347713 +UniRef50_Q8DV69 21.8621546895 0.499999999992 -21.3621546895 +UniRef50_D2N5G1 LysM domain protein 1.64007554077 0.5 -1.14007554077 +UniRef50_F9NYN4 Conserved domain protein 0.248169281231 0.5 0.251830718769 +UniRef50_Q219F8 Peptidyl tRNA hydrolase 1.07712443925 0.5 -0.577124439251 +UniRef50_A9LZL8 Type II restriction endonuclease 0.0258257242786 0.5 0.474174275722 +UniRef50_S4AF74 1.97560607181 0.5 -1.47560607181 +UniRef50_F4FDU4 0.076885690088 0.5 0.423114309912 +UniRef50_Q932N6 1.70842870855 0.5 -1.20842870855 +UniRef50_D2NSF8 0.0361009818333 0.5 0.463899018167 +UniRef50_M0TB60 0.104172418406 0.5 0.395827581594 +UniRef50_B4RCU4 Ribonuclease 3 0.664369785113 0.5 -0.164369785113 +UniRef50_A0A017HMU6 Secreted hemolysin type calcium binding protein bacteriocin, putative 0.217740102578 0.5 0.282259897422 +UniRef50_R1DNP7 0.657427014289 0.5 -0.157427014289 +UniRef50_UPI0003B5DB85 hypothetical protein, partial 0.403178850248 0.5 0.0968211497521 +UniRef50_W6IYR1 Auxin binding protein 0.110343678584 0.5 0.389656321416 +UniRef50_Q0TMI0 tRNA lysidine synthase 0.309543643499 0.5 0.190456356501 +UniRef50_B8GQB0 Flagellar hook capping protein 0.319805364282 0.5 0.180194635718 +UniRef50_UPI00039DC1E4 3 oxoadipate enol lactonase 0.128978326779 0.5 0.371021673221 +UniRef50_U5MQD6 TIGR03943 family protein 0.293506017406 0.5 0.206493982594 +UniRef50_P0A913 Peptidoglycan associated lipoprotein 0.918454466763 0.5 -0.418454466763 +UniRef50_B4TF25 Nitric oxide reductase FlRd NAD reductase 1.81163907349 0.5 -1.31163907349 +UniRef50_R9BBW4 HAE1 family hydrophobic amphiphilic exporter 1 0.0160537774908 0.5 0.483946222509 +UniRef50_L7WTZ4 2.02413277914 0.500000000002 -1.52413277914 +UniRef50_B4R909 1.25943562388 0.5 -0.759435623879 +UniRef50_UPI0003B6B13E ABC transporter permease 3.26636483922 0.499999999993 -2.76636483921 +UniRef50_V1XPG8 1.28076089468 0.5 -0.780760894677 +UniRef50_B9DXX3 0.0569696174236 0.5 0.443030382577 +UniRef50_P0A1Q3 Lactoylglutathione lyase 1.57912215432 0.5 -1.07912215432 +UniRef50_Q3HKI1 Possible replication protein C 2.10139062432 0.499999999999 -1.60139062432 +UniRef50_K9YB57 PUCC protein 1.25606701168 0.5 -0.756067011677 +UniRef50_UPI00036A764A hypothetical protein 0.469800163278 0.5 0.0301998367223 +UniRef50_W4KF41 0.639255297248 0.5 -0.139255297248 +UniRef50_Q13BG6 NADH quinone oxidoreductase subunit K 2.14228423755 0.5 -1.64228423755 +UniRef50_UPI00029CB7E1 hypothetical protein, partial 0.183828589195 0.5 0.316171410806 +UniRef50_UPI00037A794A hypothetical protein 0.316802809326 0.5 0.183197190674 +UniRef50_W4KF45 0.28621127528 0.5 0.21378872472 +UniRef50_UPI00037E1072 hypothetical protein 2.5900980886 0.499999999999 -2.09009808859 +UniRef50_D8NYU1 0.557344043746 0.5 -0.0573440437456 +UniRef50_V6L4N0 0.361808480192 0.5 0.138191519808 +UniRef50_O27710 Phosphosulfolactate synthase 1.5298485018 0.5 -1.0298485018 +UniRef50_A1BCD3 3.41128278958 0.499999999999 -2.91128278958 +UniRef50_UPI00047DD048 glucose 6 phosphate dehydrogenase 0.31985244862 0.5 0.18014755138 +UniRef50_G2TC10 ChaC like protein 0.279831590972 0.5 0.220168409028 +UniRef50_G8S496 Replication associated recombination protein A 0.00634607646985 0.5 0.49365392353 +UniRef50_D6YPZ0 47 kDa protein 0.427935806674 0.5 0.0720641933262 +UniRef50_UPI0004784B81 phosphoesterase 0.445182583262 0.5 0.0548174167382 +UniRef50_Q1IYN8 0.0273346846933 0.5 0.472665315307 +UniRef50_UPI00025577F3 hydrogenase nickel insertion protein HypA 2.22959419338 0.5 -1.72959419338 +UniRef50_UPI0003B54717 hydantoinase 0.279337793825 0.5 0.220662206175 +UniRef50_UPI000463C9AE carboxypeptidase 1.05127414488 0.5 -0.551274144883 +UniRef50_O43895 Xaa Pro aminopeptidase 2 0.083731756957 0.5 0.416268243043 +UniRef50_UPI00036806EE hypothetical protein 0.124576154648 0.500000000001 0.375423845351 +UniRef50_UPI000262636B DNA gyrase subunit A 0.37965275866 0.5 0.12034724134 +UniRef50_F4FTG4 Galactonate dehydratase 0.0359180145285 0.5 0.464081985471 +UniRef50_S5GEI0 Catecholate siderophore receptor CirA 2.48600756258 0.5 -1.98600756258 +UniRef50_A6LR14 Heavy metal translocating P type ATPase 0.15669145995 0.5 0.34330854005 +UniRef50_C4J951 0.0119614018209 0.5 0.488038598179 +UniRef50_D2Q478 Spermidine synthase like protein 0.128839690178 0.5 0.371160309822 +UniRef50_C6DEY0 RNA polymerase associated protein RapA 3.78443495632 0.499999999999 -3.28443495632 +UniRef50_UPI0004692C05 hydrogenase 0.777824888591 0.5 -0.277824888591 +UniRef50_Q3JT43 2.23527132541 0.500000000004 -1.73527132542 +UniRef50_B9KVR7 Transcriptional regulator, MerR family 2.02348832706 0.500000000002 -1.52348832706 +UniRef50_B2KEK1 Adenylate kinase 0.221688158253 0.5 0.278311841747 +UniRef50_Q46855 0.772182255603 0.5 -0.272182255603 +UniRef50_UPI0003A592DF transcriptional regulator 2.83493719394 0.499999999997 -2.33493719394 +UniRef50_P04816 Leucine specific binding protein 1.42973798626 0.5 -0.929737986264 +UniRef50_M3G6K7 Mg transport ATPase protein C 0.0597432483231 0.5 0.440256751677 +UniRef50_S6DCW1 0.422808369963 0.5 0.0771916300373 +UniRef50_B9KL47 Protein tyrosine phosphatase 4.32053951031 0.500000000005 -3.82053951032 +UniRef50_Q7VZ05 Tryptophan tRNA ligase 1.53488142173 0.5 -1.03488142173 +UniRef50_Q5HEB2 Cardiolipin synthase 2 1.46645075528 0.5 -0.966450755283 +UniRef50_X5K4N5 Membrane protein, putative 0.332020228082 0.5 0.167979771918 +UniRef50_W4TSQ7 0.405637258951 0.5 0.094362741049 +UniRef50_W4TSQ5 0.0320285100855 0.5 0.467971489914 +UniRef50_Q9I048 tRNA dihydrouridine synthase A 1.71162778784 0.5 -1.21162778784 +UniRef50_E0Q484 42.3545004552 0.499999999975 -41.8545004552 +UniRef50_UPI000375D23B hypothetical protein, partial 0.12942316128 0.5 0.37057683872 +UniRef50_Q83J60 HTH type transcriptional regulator DctR 0.638367219939 0.5 -0.138367219939 +UniRef50_B4EY85 DnaA regulatory inactivator Hda 2.86261314625 0.499999999999 -2.36261314625 +UniRef50_UPI000471D4BC hypothetical protein, partial 0.596884668028 0.5 -0.0968846680283 +UniRef50_M1MLW2 dTDP glucose 4,6 dehydratase 2 0.0788169915491 0.499999999999 0.421183008452 +UniRef50_UPI00047D17AA hypothetical protein 0.871412226794 0.5 -0.371412226794 +UniRef50_H8GSQ0 VanW like protein 0.00249259264163 0.499999999999 0.497507407359 +UniRef50_A5EY11 Ribosomal RNA small subunit methyltransferase H 0.847864422106 0.5 -0.347864422106 +UniRef50_UPI000470B3CF ribosome binding factor A 0.15525901798 0.5 0.34474098202 +UniRef50_A3PR72 Binding protein dependent transport systems inner membrane component 1.92920221043 0.500000000001 -1.42920221043 +UniRef50_Q1INX8 DGPFAETKE domain protein 0.575982933183 0.5 -0.0759829331825 +UniRef50_UPI000365E142 hypothetical protein 0.25057571802 0.5 0.24942428198 +UniRef50_UPI00037A3857 helicase 0.219198679633 0.5 0.280801320367 +UniRef50_UPI0003B7A6B2 branched chain amino acid ABC transporter ATP binding protein 0.378018583273 0.5 0.121981416727 +UniRef50_K0C423 MaoC like dehydratase 0.839481925671 0.5 -0.339481925671 +UniRef50_G8LZB4 0.492019710275 0.5 0.0079802897247 +UniRef50_A0A009XXP0 RecF RecN SMC N terminal domain protein 0.033350214236 0.5 0.466649785764 +UniRef50_P26266 Ferric enterobactin transport protein FepE 0.6170244486 0.5 -0.1170244486 +UniRef50_E9AEN0 Proteophosphoglycan ppg1 0.0371273536241 0.5 0.462872646376 +UniRef50_B2KCN5 Dihydroorotase 1.55173750965 0.5 -1.05173750965 +UniRef50_UPI00024929D9 putative N acylamino acid racemase 0.0137776009473 0.5 0.486222399053 +UniRef50_G4U7X4 0.482181651724 0.5 0.0178183482764 +UniRef50_UPI00039427DC phosphatase 0.208637706609 0.500000000001 0.29136229339 +UniRef50_UPI0003B3863F carboxynorspermidine decarboxylase 0.398434690358 0.5 0.101565309642 +UniRef50_UPI00047C82E1 hypothetical protein 0.00209622042362 0.5 0.497903779577 +UniRef50_X1KVA0 Marine sediment metagenome DNA, contig 0.122527395271 0.5 0.377472604729 +UniRef50_E3E7X0 Formate dehydrogenase, alpha subunit 0.101318267547 0.500000000001 0.398681732452 +UniRef50_N6V3N6 Sulfate transporter 1.61761849376 0.5 -1.11761849376 +UniRef50_R6HNH6 0.963573006887 0.5 -0.463573006887 +UniRef50_D3QF31 Phosphohydrolase, Icc family 3.09227738783 0.499999999997 -2.59227738782 +UniRef50_UPI0004163F11 quinone oxidoreductase 0.0477422664467 0.5 0.452257733553 +UniRef50_B1ZSZ2 Phosphate transporter 0.00602781404028 0.5 0.49397218596 +UniRef50_Q6A8L4 Histidinol phosphate aminotransferase 0.00777793367293 0.5 0.492222066327 +UniRef50_G9ZDV2 0.518197335255 0.5 -0.0181973352546 +UniRef50_V4I6Z5 Phenylacetate CoA oxygenase subunit PaaA 0.0125884818279 0.5 0.487411518172 +UniRef50_UPI00037394E3 hypothetical protein 1.70904265041 0.499999999999 -1.20904265041 +UniRef50_UPI00037AD4AC hypothetical protein 0.0956426531157 0.5 0.404357346884 +UniRef50_U5MNP0 0.0695507374466 0.500000000001 0.430449262553 +UniRef50_R9SMA4 Cell wall biosynthesis protein Mur ligase family 7.09435685567 0.499999999996 -6.59435685567 +UniRef50_UPI000376DBC0 hypothetical protein 2.3768325301 0.499999999996 -1.8768325301 +UniRef50_Q47083 HTH type transcriptional regulator cbl 1.63756654743 0.5 -1.13756654743 +UniRef50_U4TH79 4.39413892278 0.500000000001 -3.89413892278 +UniRef50_F4DVS4 Periplasmic binding protein 0.0890697273143 0.5 0.410930272686 +UniRef50_P0ABX0 Flagellar basal body rod protein FlgB 0.961013480411 0.5 -0.461013480411 +UniRef50_A0A059DWP9 0.766768414181 0.5 -0.266768414181 +UniRef50_Z8B9P7 2.49577013775 0.5 -1.99577013775 +UniRef50_UPI00037E3FD0 hypothetical protein 0.395019873592 0.5 0.104980126408 +UniRef50_A4GAA6 ABC transporter, permease component 2.73001587102 0.5 -2.23001587102 +UniRef50_P52642 UDP N acetylglucosamine 2 epimerase 0.0277996813997 0.5 0.4722003186 +UniRef50_UPI0004703E7C hypothetical protein, partial 0.0592919705812 0.5 0.440708029419 +UniRef50_UPI00029A41E2 hypothetical protein 0.432032358915 0.5 0.0679676410853 +UniRef50_UPI000375C1B4 hypothetical protein 0.183596700981 0.5 0.316403299019 +UniRef50_B5E972 NADH quinone oxidoreductase subunit B C D 0.140422836314 0.5 0.359577163686 +UniRef50_I3R6R8 Branched chain amino acids ABC transporter permease,azaleucine resistance protein 0.328463761972 0.5 0.171536238028 +UniRef50_N6UXN6 Putative secreted adhesin 0.979407087654 0.5 -0.479407087654 +UniRef50_Q28MM7 Phosphorylase 2.32315507661 0.5 -1.82315507661 +UniRef50_A3M6U7 CsuD 0.0226863637587 0.5 0.477313636241 +UniRef50_Q0FEW4 Cation transport protein ChaC, putative 0.111713873414 0.5 0.388286126586 +UniRef50_UPI0002C30275 PREDICTED 0.60455266047 0.5 -0.10455266047 +UniRef50_F3G839 0.592883221193 0.5 -0.092883221193 +UniRef50_B9J7K1 0.828741739437 0.5 -0.328741739437 +UniRef50_M4R0D2 Glycosyltransferase 0.0142379303252 0.5 0.485762069675 +UniRef50_U3TVU1 0.0563436092756 0.5 0.443656390725 +UniRef50_X3W353 Enterobactin synthase subunit F 1.5731035978 0.5 -1.0731035978 +UniRef50_U6BEE8 Cytochrome D ubiquinol oxidase subunit I 1.84174258999 0.499999999999 -1.34174258998 +UniRef50_Q15RL2 Electron transport complex subunit D 9.70009092099 0.500000000004 -9.200090921 +UniRef50_R4ZIA7 Cell surface protein 1.57683429301 0.5 -1.07683429301 +UniRef50_A5ULR0 Cobalamin synthase 3.37298312098 0.499999999999 -2.87298312097 +UniRef50_B9DY53 Transcription repair coupling factor 0.299923400923 0.5 0.200076599077 +UniRef50_Q48K36 Potassium transporting ATPase B chain 0.594221688765 0.5 -0.0942216887652 +UniRef50_Q2NG20 Predicted multimeric flavodoxin 5.9223095875 0.500000000001 -5.4223095875 +UniRef50_D2ZS60 4.04801799026 0.500000000001 -3.54801799026 +UniRef50_A5UM77 0.627593669641 0.5 -0.127593669641 +UniRef50_UPI0003B68375 50S ribosomal protein L22 0.170765655729 0.5 0.329234344271 +UniRef50_Q11H35 2.22592254568 0.5 -1.72592254568 +UniRef50_Q1QC36 Urease subunit alpha 2 0.162752671129 0.499999999999 0.337247328872 +UniRef50_J9NYD9 0.223078434444 0.5 0.276921565556 +UniRef50_L0A4U7 Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED 0.00219512505376 0.5 0.497804874946 +UniRef50_UPI00035D30E0 hypothetical protein 1.56792589757 0.500000000001 -1.06792589757 +UniRef50_Q8YNJ3 Phosphate import ATP binding protein PstB 3 0.0579774011854 0.5 0.442022598815 +UniRef50_UPI0003B49864 transporter 0.00414205677229 0.5 0.495857943228 +UniRef50_A9WS29 0.107786346497 0.5 0.392213653503 +UniRef50_UPI000363E420 hypothetical protein 0.359979610718 0.5 0.140020389282 +UniRef50_A0RKD1 Possible membrane protein 0.143827460139 0.5 0.356172539861 +UniRef50_Q9HX91 0.686285581986 0.5 -0.186285581986 +UniRef50_D9UD16 Predicted protein 0.0349286084606 0.5 0.465071391539 +UniRef50_P45428 Putative cryptic C4 dicarboxylate transporter DcuD 1.08209971083 0.5 -0.582099710832 +UniRef50_X6M7B3 0.258714724663 0.5 0.241285275337 +UniRef50_A1TZP8 Type IV pilus biogenesis stability protein PilW 0.275595744395 0.5 0.224404255605 +UniRef50_T1VWL4 Oligopeptide dipeptide ABC transporter ATPase subunit 0.0595675322424 0.5 0.440432467757 +UniRef50_Q2YW86 D specific D 2 hydroxyacid dehydrogenase 16.5407561078 0.500000000002 -16.0407561078 +UniRef50_T1Z3D7 0.579134773516 0.5 -0.0791347735159 +UniRef50_H2HHM8 0.0103675402335 0.5 0.489632459767 +UniRef50_UPI00040D05AB hypothetical protein 0.465208890274 0.5 0.0347911097257 +UniRef50_UPI0003A7F193 sulfate 0.294576148741 0.5 0.205423851259 +UniRef50_UPI000465E42E hypothetical protein 0.0483202913016 0.5 0.451679708699 +UniRef50_K9NK52 Putrescine binding periplasmic protein 1.0853556916 0.5 -0.585355691601 +UniRef50_T3GIH5 AAA domain family protein 0.499495629903 0.5 0.000504370096622 +UniRef50_UPI00040C7D51 hypothetical protein 2.69111436177 0.499999999999 -2.19111436177 +UniRef50_UPI0003634400 hypothetical protein 4.82098908992 0.500000000008 -4.32098908993 +UniRef50_Q1Q8K4 Phosphate import ATP binding protein PstB 0.0392911854075 0.5 0.460708814593 +UniRef50_A6LUQ8 Phosphotransferase system, EIIC 0.0313078277281 0.499999999999 0.468692172273 +UniRef50_Q01244 Yop proteins translocation protein C 2.31627341227 0.5 -1.81627341227 +UniRef50_X2HA66 Macrolide specific efflux protein MacA 0.0117884216128 0.5 0.488211578387 +UniRef50_D7JTM0 Predicted protein 0.19434942063 0.5 0.30565057937 +UniRef50_V9G8C1 Transketolase 0.553872914438 0.5 -0.0538729144379 +UniRef50_D1BYT2 Succinyl diaminopimelate desuccinylase 0.0162189028145 0.5 0.483781097185 +UniRef50_UPI0003803CC2 hypothetical protein 0.00245662533825 0.5 0.497543374662 +UniRef50_U7PWZ9 0.171583171879 0.5 0.328416828121 +UniRef50_I6F1W3 0.511166354948 0.5 -0.0111663549485 +UniRef50_L1J0A5 0.581360864967 0.5 -0.0813608649667 +UniRef50_K8F0R0 Internalin J 0.080426554723 0.5 0.419573445277 +UniRef50_B9E249 0.57023056571 0.5 -0.0702305657104 +UniRef50_D2UPM2 SdrD protein 0.653676581186 0.5 -0.153676581186 +UniRef50_Q9I2W4 Uroporphyrinogen III C methyltransferase 11.9389208304 0.500000000003 -11.4389208304 +UniRef50_E4QDT6 0.134237973376 0.5 0.365762026624 +UniRef50_P52086 Alpha ribazole phosphatase 1.27255569758 0.5 -0.772555697575 +UniRef50_UPI00047E8AFF hypothetical protein 0.125305397412 0.5 0.374694602588 +UniRef50_T0NEN1 Seg 0.260506592029 0.5 0.239493407971 +UniRef50_Q8Y4A9 Release factor glutamine methyltransferase 0.00216376230984 0.5 0.49783623769 +UniRef50_UPI0004711AD3 type II secretion system protein F 0.288670383162 0.5 0.211329616838 +UniRef50_C6XQ34 Prephenate dehydratase 0.259151957844 0.5 0.240848042156 +UniRef50_P27128 Lipopolysaccharide 1,3 galactosyltransferase 1.4999801769 0.5 -0.999980176905 +UniRef50_W0YR49 Acetoacetyl CoA synthetase 1.42367678801 0.499999999999 -0.92367678801 +UniRef50_UPI0004675627 molybdopterin guanine dinucleotide biosynthesis protein A 0.17240299451 0.5 0.32759700549 +UniRef50_UPI00046465E7 hypothetical protein 3.92019764539 0.500000000006 -3.4201976454 +UniRef50_S6AM82 0.40102878476 0.5 0.0989712152399 +UniRef50_Q54TC2 Alcohol dehydrogenase class 3 0.0431199820528 0.5 0.456880017947 +UniRef50_UPI0003B589A1 cell wall hydrolase 0.818922565825 0.5 -0.318922565825 +UniRef50_C1DMM9 Transcriptional regulator, LysR family 0.474289749479 0.5 0.0257102505211 +UniRef50_D3PTH4 0.159780153904 0.5 0.340219846096 +UniRef50_Q98457 0.275953842872 0.5 0.224046157128 +UniRef50_S9R6B1 Transcriptional regulator, LysR family 0.305699022333 0.5 0.194300977667 +UniRef50_UPI00047D5268 hypothetical protein 0.642190599404 0.5 -0.142190599404 +UniRef50_A7ZXV0 0.455670928781 0.5 0.0443290712192 +UniRef50_A2C536 Bifunctional pantoate ligase cytidylate kinase 0.116012200692 0.499999999999 0.383987799309 +UniRef50_Q83RZ7 Anaerobic dimethyl sulfoxide reductase chain B 3.12786953099 0.500000000001 -2.62786953099 +UniRef50_UPI0004785D8D hypothetical protein 0.434068759463 0.5 0.0659312405372 +UniRef50_UPI0003827A64 hypothetical protein 0.258661835612 0.5 0.241338164388 +UniRef50_Q9L646 Anaerobic ribonucleoside triphosphate reductase 0.70590730362 0.5 -0.20590730362 +UniRef50_V7ZGN6 Phosphatidylserine synthase 0.322151337324 0.5 0.177848662676 +UniRef50_UPI000315C43C hypothetical protein 1.36159366177 0.5 -0.861593661769 +UniRef50_S9SA83 0.0931693684356 0.5 0.406830631564 +UniRef50_UPI000467D8F5 hypothetical protein, partial 0.20166908115 0.5 0.298330918851 +UniRef50_UPI00037A985E hypothetical protein 0.794630101964 0.5 -0.294630101964 +UniRef50_UPI00035D529A hypothetical protein 1.37370626605 0.5 -0.873706266052 +UniRef50_S9SA88 0.20492784163 0.5 0.29507215837 +UniRef50_UPI0004661BBA hypothetical protein, partial 1.22984751873 0.5 -0.729847518725 +UniRef50_Q38854 1 deoxy D xylulose 5 phosphate synthase, chloroplastic 0.109134065508 0.5 0.390865934492 +UniRef50_Q6GI66 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 2.37401479841 0.5 -1.87401479841 +UniRef50_G2IIB3 UPF0301 protein SLG_23610 0.339632217187 0.5 0.160367782813 +UniRef50_P23905 D galactose binding periplasmic protein 4.26922618494 0.499999999999 -3.76922618494 +UniRef50_Q022D1 0.637678080417 0.5 -0.137678080417 +UniRef50_Q1J9N5 Para aminobenzoate synthetase component I 4 amino 4 deoxychorismate lyase 0.0133925415602 0.5 0.48660745844 +UniRef50_E6TY02 Binding protein dependent transport systems inner membrane component 2.33243635818 0.5 -1.83243635818 +UniRef50_V9UQ05 1.43419314784 0.5 -0.934193147839 +UniRef50_C8NMF6 0.271763067147 0.5 0.228236932853 +UniRef50_A3PKK7 0.596539985204 0.5 -0.0965399852042 +UniRef50_UPI00016C558B DNA gyrase subunit A 0.166160991546 0.5 0.333839008454 +UniRef50_Q5YWD4 NADH quinone oxidoreductase subunits H I 0.0348485607629 0.5 0.465151439237 +UniRef50_UPI00036E3130 hypothetical protein 0.158746737182 0.5 0.341253262818 +UniRef50_UPI0002558195 ABC transporter ATP binding protein, partial 3.95897740861 0.5 -3.45897740861 +UniRef50_H9JRN0 0.153301104352 0.5 0.346698895647 +UniRef50_P52276 Asparagine tRNA ligase 0.90743127603 0.5 -0.40743127603 +UniRef50_UPI00037E9004 hypothetical protein 0.0308026246753 0.5 0.469197375325 +UniRef50_X6F5A2 ABC transporter permease 0.297269242377 0.5 0.202730757623 +UniRef50_A9M1A6 Ribosomal RNA small subunit methyltransferase J 0.141291604692 0.5 0.358708395308 +UniRef50_W5HYZ3 0.314179716997 0.5 0.185820283003 +UniRef50_J9YT00 0.588451593848 0.5 -0.0884515938477 +UniRef50_P77790 D alanyl D alanine dipeptidase 10.5198722767 0.499999999996 -10.0198722767 +UniRef50_E3GEX1 Glyoxalase 0.318191741177 0.5 0.181808258823 +UniRef50_UPI0003723E28 hypothetical protein 0.348628384219 0.5 0.151371615781 +UniRef50_W6RE07 1.5844952101 0.5 -1.0844952101 +UniRef50_UPI0001913E60 hypothetical protein, partial 0.456277883815 0.5 0.0437221161846 +UniRef50_Q1Q8J3 Trigger factor 0.00527371158652 0.5 0.494726288413 +UniRef50_P19066 Nitrogenase molybdenum iron protein alpha chain 4.69202422763 0.499999999998 -4.19202422763 +UniRef50_UPI0002F6860E hypothetical protein 0.00830105544822 0.5 0.491698944552 +UniRef50_A6TT61 Biotin synthase 0.0826100842304 0.5 0.41738991577 +UniRef50_C1CRY7 S1 RNA binding domain protein 0.380898916528 0.5 0.119101083472 +UniRef50_X1MW22 Marine sediment metagenome DNA, contig 1.94212345866 0.499999999998 -1.44212345866 +UniRef50_UPI000470373F amidophosphoribosyltransferase, partial 0.0852159487715 0.5 0.414784051228 +UniRef50_J8WK23 Type III restriction modification system EcoPI enzyme, subunit res 0.0124749176328 0.5 0.487525082367 +UniRef50_E3F2Y8 Arsenate reductase like protein 0.850508358083 0.5 -0.350508358083 +UniRef50_UPI0003B7001D hypothetical protein 0.740193143454 0.5 -0.240193143454 +UniRef50_B9KXJ4 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.193897424419 0.5 0.306102575582 +UniRef50_UPI000379C639 hypothetical protein 0.282294570084 0.5 0.217705429916 +UniRef50_Q6FDX8 Maf like protein ACIAD0829 0.0104957233206 0.5 0.48950427668 +UniRef50_B1IMR8 Transposase C for 0.0789720395739 0.5 0.421027960426 +UniRef50_UPI0003716807 hypothetical protein 0.123267107194 0.5 0.376732892806 +UniRef50_A1B4U8 Rhs element Vgr protein 2.66879333237 0.500000000002 -2.16879333238 +UniRef50_F0RMF0 Aminomethyltransferase 0.00227809898302 0.5 0.497721901017 +UniRef50_G5JYJ7 Phosphatidate cytidylyltransferase like protein 6.71872591409 0.500000000004 -6.2187259141 +UniRef50_Q9I4X6 Chaperone CupC2 0.194768508772 0.5 0.305231491228 +UniRef50_UPI0004781EE1 NADH dehydrogenase 0.0264863335415 0.5 0.473513666459 +UniRef50_UPI00047C938B cold shock protein 0.805959316381 0.5 -0.305959316381 +UniRef50_UPI0003B3943C xanthine CO dehydrogenase maturation protein 0.117310507509 0.500000000001 0.38268949249 +UniRef50_Q13LM2 ABC putrescine transporter, inner membrane subunit PotI 0.0230578511464 0.5 0.476942148853 +UniRef50_UPI000289739C amino acid carrier protein, partial 0.00888033945185 0.5 0.491119660548 +UniRef50_Q4FMW6 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.154968661504 0.5 0.345031338496 +UniRef50_I4F4V3 1.83167551358 0.5 -1.33167551358 +UniRef50_A0A059ABD6 0.60010797785 0.5 -0.10010797785 +UniRef50_UPI00047AED65 hypothetical protein 0.0772033001166 0.5 0.422796699883 +UniRef50_F3ZC19 Putative 3 oxoacyl ACP synthase II 0.00354596418564 0.5 0.496454035814 +UniRef50_H3F275 0.157395546261 0.5 0.342604453739 +UniRef50_D9SKB5 0.374287805447 0.5 0.125712194553 +UniRef50_A0A023RVI8 Magnesium transporter 0.016389745 0.5 0.483610255 +UniRef50_F5M3S4 37.4985204838 0.499999999991 -36.9985204838 +UniRef50_B5F621 Mannonate dehydratase 2.07108068625 0.5 -1.57108068625 +UniRef50_M9VAU8 0.0219037780845 0.5 0.478096221916 +UniRef50_UPI000408DFD9 hypothetical protein 0.0057141324058 0.5 0.494285867594 +UniRef50_P0A130 0.942109010955 0.5 -0.442109010955 +UniRef50_Q3IZJ1 9.14319448774 0.499999999999 -8.64319448774 +UniRef50_B8EFC6 Lipoprotein signal peptidase 0.151446897496 0.5 0.348553102504 +UniRef50_Q8CPS1 Glucose 6 phosphate 1 dehydrogenase 3.81629483278 0.5 -3.31629483278 +UniRef50_UPI0004659DA3 glutamyl tRNA synthetase 0.828922997058 0.5 -0.328922997058 +UniRef50_A6QDY9 2.97263828977 0.5 -2.47263828977 +UniRef50_Q5HLX2 Molybdenum ABC transporter, ATP binding protein ModC 2.44361763463 0.499999999998 -1.94361763463 +UniRef50_F4T4M6 17.0969344802 0.499999999996 -16.5969344802 +UniRef50_M4YZ38 Mutator protein 0.645485176809 0.5 -0.145485176809 +UniRef50_UPI000473A889 hypothetical protein, partial 0.0483518484437 0.5 0.451648151556 +UniRef50_M9VKV2 Efflux ABC transporter permease 0.0200161670155 0.5 0.479983832985 +UniRef50_UPI000288B881 ABC transporter ATP binding protein 0.342110779965 0.5 0.157889220035 +UniRef50_M7A534 Tex like N terminal domain protein 0.0100970160518 0.5 0.489902983948 +UniRef50_UPI0002376558 ribose galactose ABC transporterpermease, partial 0.508296279357 0.5 -0.00829627935734 +UniRef50_Q02N09 0.318918620442 0.5 0.181081379558 +UniRef50_Q0K9Q9 Cation multidrug efflux pump 0.561550282208 0.5 -0.0615502822078 +UniRef50_F0SEF6 Transcriptional regulator, BadM Rrf2 family 0.318622116097 0.5 0.181377883903 +UniRef50_UPI0004788904 glucose 6 phosphate dehydrogenase 0.319577935613 0.5 0.180422064387 +UniRef50_UPI0004434C05 PREDICTED 0.188025014901 0.5 0.311974985099 +UniRef50_UPI0002DB754C hypothetical protein 0.321518933959 0.5 0.178481066041 +UniRef50_M4MUD1 0.0536778201536 0.5 0.446322179846 +UniRef50_Q4L9F7 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.56367535439 0.5 -1.06367535439 +UniRef50_G8V7N9 0.0182130222695 0.5 0.481786977731 +UniRef50_Q023V7 Chorismate synthase 0.0523651835513 0.5 0.447634816448 +UniRef50_A7BEJ6 LPXTG motif cell wall anchor domain protein 0.0533599346583 0.5 0.446640065341 +UniRef50_UPI0003B44F1F transcriptional regulator 2.09982763918 0.499999999999 -1.59982763918 +UniRef50_Q9HTE2 1.05764308304 0.5 -0.557643083039 +UniRef50_Q989G8 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2 6.86429162411 0.500000000007 -6.36429162412 +UniRef50_UPI0004715D8D alkane 1 monooxygenase 0.155330694255 0.500000000001 0.344669305744 +UniRef50_UPI000289EDA6 GAF sensor hybrid histidine kinase 0.0108514264508 0.5 0.489148573549 +UniRef50_Q6FCV5 Lipoprotein 0.0337708783085 0.5 0.466229121691 +UniRef50_UPI0003F7499C 3 oxoacyl ACP reductase 0.106577772869 0.5 0.393422227131 +UniRef50_UPI0003B3ACCD ABC transporter permease 0.800370469446 0.5 -0.300370469446 +UniRef50_P69799 PTS system mannose specific EIIAB component 8.27855535367 0.500000000005 -7.77855535367 +UniRef50_I7DNJ2 Pyruvate carboxylase 1.49552363627 0.5 -0.995523636271 +UniRef50_Q8FHG0 HTH type transcriptional regulator YdeO 5.45179308573 0.5 -4.95179308573 +UniRef50_Q8FBT8 Phosphate specific transport system accessory protein PhoU 0.956626574644 0.5 -0.456626574644 +UniRef50_Q8E4M4 2.37208101063 0.5 -1.87208101063 +UniRef50_UPI0003B6CE98 gas vesicle protein 0.825758831632 0.5 -0.325758831632 +UniRef50_Q9RVY3 0.00933903315322 0.5 0.490660966847 +UniRef50_P27238 0.47680036695 0.5 0.0231996330502 +UniRef50_F0XVM8 Expressed protein 5.66108663575 0.500000000003 -5.16108663575 +UniRef50_UPI00046666B3 maltooligosyl trehalose synthase 0.751755601819 0.5 -0.251755601819 +UniRef50_P11959 Dihydrolipoyl dehydrogenase 1.68912306042 0.5 -1.18912306042 +UniRef50_Q9ZH99 Isocitrate dehydrogenase [NADP] 0.176160368739 0.5 0.323839631261 +UniRef50_D4HEQ0 Phosphofructokinase 0.0306651417598 0.5 0.46933485824 +UniRef50_N6YIN7 1.04063466978 0.5 -0.540634669784 +UniRef50_D6M4Q7 0.0662730910577 0.5 0.433726908942 +UniRef50_E1V3L9 0.713323541869 0.5 -0.213323541869 +UniRef50_C6STB9 0.790687153663 0.5 -0.290687153663 +UniRef50_UPI000474260B DNA gyrase subunit B 0.370234336932 0.5 0.129765663068 +UniRef50_UPI00036EEE9D hypothetical protein 0.407854027522 0.5 0.0921459724776 +UniRef50_G7LZP2 SMC domain protein 0.0603118383352 0.5 0.439688161665 +UniRef50_M1WSJ3 Protein CreA 0.436975549509 0.5 0.0630244504914 +UniRef50_A6LR21 Binding protein dependent transport systems inner membrane component 0.049861352449 0.5 0.450138647551 +UniRef50_Q9WYT7 Probable transcriptional regulatory protein TM_0466 5.26463930685 0.500000000008 -4.76463930686 +UniRef50_J9P642 0.386663032478 0.5 0.113336967522 +UniRef50_O65396 Aminomethyltransferase, mitochondrial 1.32728368447 0.5 -0.827283684474 +UniRef50_I6U214 Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system 1.26406829421 0.5 -0.764068294208 +UniRef50_U6A7W2 Extracellular Matrix protein PelB 0.402856650193 0.5 0.0971433498068 +UniRef50_UPI0003652A76 hypothetical protein, partial 0.713850116888 0.5 -0.213850116888 +UniRef50_UPI0001FFEBC1 alpha dehydro beta deoxy D glucarate aldolase 0.0731456217883 0.5 0.426854378211 +UniRef50_UPI00047E6581 hypothetical protein 0.341708572319 0.5 0.158291427681 +UniRef50_A7MK41 Ribosomal RNA large subunit methyltransferase H 0.905410442406 0.5 -0.405410442406 +UniRef50_UPI00003793A9 hypothetical protein 2.72719367116 0.500000000003 -2.22719367116 +UniRef50_D9ST52 0.308025572704 0.5 0.191974427296 +UniRef50_R0XB61 3.17361916085 0.5 -2.67361916085 +UniRef50_Q4KEY4 Chitinase 0.153218075576 0.5 0.346781924424 +UniRef50_UPI00035CFB31 hypothetical protein 0.141226476157 0.5 0.358773523843 +UniRef50_A1BBC0 Dihydrodipicolinate synthetase 1.21523476468 0.5 -0.715234764678 +UniRef50_UPI0003606737 hypothetical protein, partial 0.0539181720671 0.5 0.446081827933 +UniRef50_P77555 Ureidoglycolate dehydrogenase ) 0.727213902822 0.5 -0.227213902822 +UniRef50_B0KQI9 Mammalian cell entry related domain protein 13.3219847549 0.499999999999 -12.8219847549 +UniRef50_Q5N7D3 2.27387213732 0.5 -1.77387213732 +UniRef50_Q6A5B4 0.0716536621231 0.500000000001 0.428346337876 +UniRef50_UPI0004729581 aminotransferase 0.0431454536852 0.5 0.456854546315 +UniRef50_Q1WSM8 1,4 alpha glucan branching enzyme GlgB 0.0909992954906 0.5 0.40900070451 +UniRef50_UPI0002196E5D biotin biosynthesis protein BioY 0.145260536805 0.5 0.354739463195 +UniRef50_O27236 Methyl coenzyme M reductase I subunit beta 0.999053186382 0.5 -0.499053186382 +UniRef50_A5VZ70 Permease YjgP YjgQ family protein 0.642613159901 0.5 -0.142613159901 +UniRef50_K2AI23 1.53545914405 0.5 -1.03545914405 +UniRef50_UPI0004758DC8 hypothetical protein 0.847567064842 0.5 -0.347567064842 +UniRef50_C8XBK0 Transcriptional regulator, Fis family 0.0670715624464 0.5 0.432928437553 +UniRef50_X1DSN1 Marine sediment metagenome DNA, contig 0.156367376799 0.5 0.343632623201 +UniRef50_A6LQD7 2 alkenal reductase 0.028261788139 0.5 0.471738211861 +UniRef50_P75828 1.38787038841 0.5 -0.887870388411 +UniRef50_Q96397 LRG5 0.711429479715 0.5 -0.211429479715 +UniRef50_Q979N7 Peroxiredoxin 0.00782165201658 0.5 0.492178347983 +UniRef50_UPI0002F0BE06 hypothetical protein 0.109103872017 0.5 0.390896127983 +UniRef50_UPI00045492E4 PREDICTED 0.06545471648 0.5 0.43454528352 +UniRef50_UPI00042548B2 hypothetical protein 0.353785992278 0.5 0.146214007722 +UniRef50_B8CXX9 Predicted nucleotide kinase 0.329484540965 0.5 0.170515459035 +UniRef50_F0C0C2 TRAP type C4 dicarboxylate transport system, large permease component 1.26911504034 0.5 -0.769115040344 +UniRef50_A5UMP3 Probable cobalamin biosynthesis protein CobD 5.00840802495 0.499999999995 -4.50840802495 +UniRef50_A0A015CJF0 DnaJ domain protein 0.15678390721 0.5 0.34321609279 +UniRef50_A6LQC6 Polysaccharide deacetylase 0.0189885728828 0.5 0.481011427117 +UniRef50_U2W2Q1 TIGR01906 family protein 0.685149789153 0.5 -0.185149789153 +UniRef50_U5MRU9 0.0951622952588 0.5 0.404837704741 +UniRef50_UPI0003B6A7C9 flagellar biosynthesis protein FlhA, partial 0.053831259257 0.5 0.446168740743 +UniRef50_B4WWC7 0.00420549821283 0.499999999999 0.495794501788 +UniRef50_I8QJJ6 0.458613013956 0.5 0.0413869860439 +UniRef50_UPI0001D61AB0 1.46512774852 0.5 -0.965127748518 +UniRef50_B9KKZ2 0.638940891928 0.5 -0.138940891928 +UniRef50_P39165 1.03471302148 0.5 -0.53471302148 +UniRef50_Q6GJA0 Glucosamine 6 phosphate deaminase 1.43304372426 0.5 -0.933043724255 +UniRef50_C1EN33 CCA adding enzyme 0.0149862461005 0.5 0.4850137539 +UniRef50_P37621 UPF0226 protein YhhS 2.80510127622 0.500000000002 -2.30510127622 +UniRef50_D2JDV7 Replication initiator protein 6.017160068 0.50000000001 -5.51716006801 +UniRef50_M8L412 Bacterial regulatory helix turn helix , lysR family protein 0.113108974928 0.5 0.386891025072 +UniRef50_UPI00037BFAD6 hypothetical protein 0.620805461313 0.5 -0.120805461313 +UniRef50_Q088F4 Drug resistance transporter, EmrB QacA subfamily 0.842636803717 0.5 -0.342636803717 +UniRef50_UPI0003B6C95A isoleucyl tRNA synthase 0.249122765399 0.5 0.250877234601 +UniRef50_P0AC99 Succinate acetate proton symporter SatP 0.146858321311 0.5 0.353141678689 +UniRef50_UPI00036D3FBE hypothetical protein 0.00505340980909 0.5 0.494946590191 +UniRef50_P0ACP6 HTH type transcriptional regulator GntR 4.20297641308 0.500000000002 -3.70297641308 +UniRef50_Q2NGT2 UvrABC system protein C 1.01022748735 0.5 -0.510227487349 +UniRef50_UPI00029AE452 hypothetical protein 0.0760482971983 0.5 0.423951702802 +UniRef50_Q9JUD9 Sulfite reductase [NADPH] hemoprotein beta component 0.594701288339 0.5 -0.0947012883386 +UniRef50_B9E1W5 Arginine tRNA ligase 0.361577846896 0.5 0.138422153104 +UniRef50_UPI000426EB18 hypothetical protein 6.51339503019 0.5 -6.01339503019 +UniRef50_Q9X1B8 Isoprenyl transferase 0.331121448781 0.5 0.168878551219 +UniRef50_G7M3S8 Dihydropyrimidinase 0.111499656309 0.5 0.388500343691 +UniRef50_H0YAA0 7.33625599623 0.500000000001 -6.83625599623 +UniRef50_X5ENC8 Fructose bisphosphate aldolase 0.0123697699239 0.5 0.487630230076 +UniRef50_A0A023LEN6 0.145983783683 0.5 0.354016216317 +UniRef50_UPI000368781F ferredoxin 0.131646204804 0.5 0.368353795196 +UniRef50_A6LQ12 Male sterility C terminal domain 0.0783530301046 0.5 0.421646969896 +UniRef50_UPI00046FDE0E hypothetical protein 0.185397897031 0.5 0.314602102969 +UniRef50_P14294 DNA topoisomerase 3 0.982370542817 0.5 -0.482370542817 +UniRef50_UPI000379CA00 hypothetical protein 0.620143318249 0.5 -0.120143318249 +UniRef50_A6QIC9 Aspartyl glutamyl tRNA amidotransferase subunit C 4.89944353735 0.499999999999 -4.39944353735 +UniRef50_L7WTC7 3.40335224734 0.499999999996 -2.90335224734 +UniRef50_UPI00037FDD54 hypothetical protein 0.81207963339 0.5 -0.31207963339 +UniRef50_P37648 Protein YhjJ 2.85170465833 0.5 -2.35170465833 +UniRef50_D4MIN1 Phage portal protein, HK97 family 0.241641511889 0.5 0.258358488111 +UniRef50_A7MLE5 Glucans biosynthesis protein D 2.80911494334 0.500000000002 -2.30911494335 +UniRef50_N6VC63 0.102483913691 0.5 0.397516086309 +UniRef50_UPI0002D4E509 diacylglyceryl transferase 0.153646537857 0.5 0.346353462143 +UniRef50_Q1QSC0 Ribosomal RNA small subunit methyltransferase G 0.494751434024 0.5 0.00524856597626 +UniRef50_P75791 1.5536748546 0.5 -1.0536748546 +UniRef50_UPI0004785E92 hypothetical protein 0.322010087465 0.5 0.177989912535 +UniRef50_Q3J6L2 1.96422940636 0.5 -1.46422940636 +UniRef50_Q5HQ32 Bacteriocin production protein, putative 1.31085046495 0.5 -0.810850464947 +UniRef50_B7RN53 3.52137570961 0.499999999998 -3.02137570961 +UniRef50_B2S1L1 Holliday junction ATP dependent DNA helicase RuvB 0.60283255306 0.5 -0.10283255306 +UniRef50_O32090 Nicotinate phosphoribosyltransferase 1.17951203004 0.5 -0.679512030041 +UniRef50_M5VMV2 0.264088911419 0.5 0.235911088581 +UniRef50_A5W827 2 C methyl D erythritol 4 phosphate cytidylyltransferase 8.39036458616 0.499999999998 -7.89036458615 +UniRef50_F0XWS4 Expressed protein 0.689264630841 0.5 -0.189264630841 +UniRef50_UPI0002ECD2DE hypothetical protein 0.022733810411 0.5 0.477266189589 +UniRef50_Q5FP95 Siroheme synthase 0.471715219652 0.5 0.0282847803484 +UniRef50_Q0SPB0 Triosephosphate isomerase 0.333557583399 0.5 0.166442416601 +UniRef50_UPI0004651951 chemotaxis protein CheY 0.515652985552 0.5 -0.0156529855519 +UniRef50_P74892 Sucrose operon repressor 2.73534228369 0.499999999998 -2.23534228369 +UniRef50_G8V9H7 Amino acid permease 0.00847638191369 0.5 0.491523618086 +UniRef50_Q7VN08 Cytochrome c type biogenesis protein CcmE 2.03463270559 0.500000000002 -1.53463270559 +UniRef50_UPI00035F3E28 hypothetical protein 0.0627025397182 0.5 0.437297460282 +UniRef50_C6SQA7 8.1306746337 0.500000000004 -7.6306746337 +UniRef50_Q12V31 NH dependent NAD(+) synthetase 1.94611003194 0.5 -1.44611003193 +UniRef50_UPI0004752D4B hypothetical protein 0.227427082496 0.5 0.272572917504 +UniRef50_Q6GI89 Tryptophan tRNA ligase 4.83712904648 0.5 -4.33712904648 +UniRef50_UPI000368C1C4 hypothetical protein 0.855404685071 0.5 -0.355404685071 +UniRef50_H5YKA6 ABC type metal ion transport system, periplasmic component surface antigen 1.12561803587 0.5 -0.625618035871 +UniRef50_F7CCI5 2.39741964508 0.5 -1.89741964508 +UniRef50_O02604 Bifunctional dihydrofolate reductase thymidylate synthase 1.00047581185 0.5 -0.500475811847 +UniRef50_F0QJF6 0.0849614003286 0.5 0.415038599671 +UniRef50_UPI0003725CB2 hypothetical protein 0.335145301812 0.5 0.164854698188 +UniRef50_B9E8W4 3.03438990561 0.500000000002 -2.53438990561 +UniRef50_UPI000374716A hypothetical protein 0.298587132607 0.5 0.201412867393 +UniRef50_UPI000364771D hypothetical protein 0.328870778802 0.5 0.171129221198 +UniRef50_K2JZV8 0.816977082821 0.5 -0.316977082821 +UniRef50_UPI0003F9070E hypothetical protein 0.729428023929 0.5 -0.229428023929 +UniRef50_C0Q1R0 Nicotinate nucleotide dimethylbenzimidazole phosphoribosyltransferase 3.42353057811 0.499999999999 -2.92353057811 +UniRef50_F0RPF4 Protoporphyrinogen oxidase 0.00957201316051 0.5 0.49042798684 +UniRef50_Q8K9C8 GTP binding protein TypA BipA homolog 0.0116914359004 0.5 0.4883085641 +UniRef50_F0GD65 Putative binding protein dependent transport system protein 0.132535855701 0.5 0.367464144299 +UniRef50_R6FYV1 0.15097843451 0.5 0.34902156549 +UniRef50_S5YQ77 YGGT family protein 10.2067238451 0.500000000013 -9.70672384512 +UniRef50_UPI000403B702 helicase UvrD 0.10095843981 0.5 0.39904156019 +UniRef50_UPI00036F2F3A hypothetical protein, partial 0.324677530921 0.5 0.175322469079 +UniRef50_UPI0001BF7409 hypothetical protein SMAC_09879, partial 0.41252349945 0.5 0.0874765005503 +UniRef50_F4VSV6 Putative ribosomal protein 0.319560307809 0.5 0.180439692191 +UniRef50_G7ZRG1 AraC family transcriptional regulator, putative 3.08971984667 0.5 -2.58971984667 +UniRef50_UPI0003B76C42 hypothetical protein, partial 0.338062905585 0.5 0.161937094415 +UniRef50_UPI000299D763 L serine dehydratase, beta subunit 0.0209090218584 0.5 0.479090978142 +UniRef50_Q031Z8 UPF0397 protein LACR_0367 1.06796192059 0.499999999999 -0.56796192059 +UniRef50_P57178 Flagellum specific ATP synthase 0.557402953442 0.5 -0.0574029534418 +UniRef50_U3SZ43 Acyl CoA thioesterase 0.0196543163754 0.5 0.480345683625 +UniRef50_UPI0004666EB7 sulfate ABC transporter ATP binding protein 0.358611873706 0.5 0.141388126294 +UniRef50_D4HA77 0.00797163879435 0.5 0.492028361206 +UniRef50_E6IF75 0.958775988223 0.5 -0.458775988223 +UniRef50_Q74D60 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.196310125653 0.5 0.303689874347 +UniRef50_UPI0000557724 COG1620 0.330359096028 0.5 0.169640903972 +UniRef50_O25515 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.0717277712032 0.5 0.428272228797 +UniRef50_UPI0001DCFDB5 200 kDa antigen p200, putative 0.320139656138 0.5 0.179860343862 +UniRef50_P69832 Galactitol permease IIC component 1.75364744847 0.5 -1.25364744847 +UniRef50_J5ICW8 Putative lysophospholipase 0.64171983877 0.5 -0.14171983877 +UniRef50_I6TY61 ABC transporter ATP binding protein 3.626366755 0.500000000001 -3.126366755 +UniRef50_UPI000475C521 deaminase reductase, partial 0.0512681155974 0.5 0.448731884402 +UniRef50_A5UM23 Pre mRNA splicing ribonucleoprotein PRP31 4.64455438046 0.500000000005 -4.14455438047 +UniRef50_J2X7R8 1.73479098759 0.5 -1.23479098759 +UniRef50_UPI000440E4B2 PREDICTED 0.0195784438854 0.499999999999 0.480421556115 +UniRef50_G7M114 Stage III sporulation protein AF 0.0638906576577 0.5 0.436109342343 +UniRef50_UPI00034B4D85 phosphoenolpyruvate synthase 0.00177106691217 0.5 0.498228933088 +UniRef50_X7UI62 PPE family protein 0.185143712546 0.5 0.314856287454 +UniRef50_F8KL74 1.80810617041 0.5 -1.30810617041 +UniRef50_Q8TZ14 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.36871948923 0.5 0.13128051077 +UniRef50_Q4KFA5 Glycerophosphodiester phosphodiesterase family protein 0.893457194301 0.5 -0.393457194301 +UniRef50_UPI00047B798B glycine cleavage system potein H 0.319534083739 0.5 0.180465916261 +UniRef50_E1SRN0 Type IV pilus biogenesis stability protein PilW 0.207021809297 0.5 0.292978190703 +UniRef50_J9NUS4 2.85757030139 0.499999999998 -2.35757030139 +UniRef50_J9NUS2 0.178650158306 0.5 0.321349841694 +UniRef50_UPI00034A41B8 hypothetical protein 0.00178567165277 0.5 0.498214328347 +UniRef50_UPI0003C7E91A GntR family transcriptional regulator, partial 0.319560307809 0.5 0.180439692191 +UniRef50_Q49174 Methyl coenzyme M reductase II subunit alpha 0.756416384345 0.5 -0.256416384345 +UniRef50_Q1JM47 Transporter 1.90993312197 0.5 -1.40993312197 +UniRef50_N3KST8 Trehalose 6 phosphate phosphatase 1.05758715425 0.5 -0.557587154251 +UniRef50_UPI000287F633 D amino acid dehydrogenase 0.941928621939 0.5 -0.441928621939 +UniRef50_A0A023LC15 0.356753012389 0.5 0.143246987611 +UniRef50_A5N1N7 Acyl protein synthetase related protein 0.0725422835046 0.5 0.427457716495 +UniRef50_W0YM34 Protein YqjC 0.75145090564 0.5 -0.25145090564 +UniRef50_Q3J8Q5 50S ribosomal protein L10 16.3577528912 0.500000000023 -15.8577528912 +UniRef50_UPI00037516DE O acetylhomoserine lyase, partial 0.612093400825 0.5 -0.112093400825 +UniRef50_Q8CRJ8 0.86672697394 0.5 -0.36672697394 +UniRef50_A6LQ15 BAAT Acyl CoA thioester hydrolase like protein 0.0551236720485 0.499999999999 0.444876327952 +UniRef50_UPI00022CA5D6 0.373073397357 0.5 0.126926602643 +UniRef50_UPI00036E56FD hypothetical protein 0.468103807563 0.5 0.0318961924366 +UniRef50_UPI0002D738C7 hypothetical protein 0.437116672243 0.5 0.0628833277569 +UniRef50_B9TD78 Circumsporozoite protein, putative 0.375988324192 0.5 0.124011675808 +UniRef50_Q9I1W8 Catalase HPII 2.07384899051 0.5 -1.57384899051 +UniRef50_K7U318 0.103939201265 0.5 0.396060798735 +UniRef50_Q9JWJ3 Cysteine tRNA ligase 0.00810691802283 0.5 0.491893081977 +UniRef50_UPI00047AB713 ferredoxin 0.305705241422 0.5 0.194294758578 +UniRef50_E0S112 Iron ABC transporter permease protein 0.159083611 0.499999999999 0.340916389 +UniRef50_UPI000477640E PTS mannose transporter subunit IIA 0.131013157057 0.5 0.368986842943 +UniRef50_A5UKG0 0.469032064684 0.5 0.030967935316 +UniRef50_A5IRE1 SNARE associated Golgi protein 0.875484498579 0.5 -0.375484498579 +UniRef50_A8LR27 0.0731045174645 0.5 0.426895482535 +UniRef50_UPI000381B84D hypothetical protein 0.620280055986 0.5 -0.120280055986 +UniRef50_D8GPH6 Conserved protein with a HD domain 0.0976223390172 0.5 0.402377660983 +UniRef50_Q5PJX5 Ribose import ATP binding protein RbsA 1.30283790421 0.5 -0.802837904206 +UniRef50_Q44532 Ferredoxin NADP reductase 1.81851300235 0.5 -1.31851300235 +UniRef50_C7IYC6 Os02g0235900 protein 0.259326532945 0.5 0.240673467055 +UniRef50_B9DTQ1 Replication initiation and membrane attachment protein 1.23661660846 0.5 -0.736616608463 +UniRef50_UPI0004754009 flagellar biosynthesis protein FliQ 2.64925419228 0.5 -2.14925419228 +UniRef50_Q42601 Carbamoyl phosphate synthase large chain, chloroplastic 0.0143130986618 0.5 0.485686901338 +UniRef50_UPI000476D67D peptide ABC transporter permease 1.66108943842 0.499999999999 -1.16108943842 +UniRef50_O33525 Malate dehydrogenase 1.70823295054 0.5 -1.20823295054 +UniRef50_Q0FSC8 Replication initiator RepC 0.15801904268 0.499999999999 0.34198095732 +UniRef50_G8VEZ7 Long chain fatty acid CoA ligase synthetase 0.0194769465951 0.5 0.480523053405 +UniRef50_A4QEG9 Riboflavin biosynthesis protein RibBA 0.0120452781105 0.5 0.487954721889 +UniRef50_UPI00047D89FD hypothetical protein 0.16469745449 0.5 0.335302545511 +UniRef50_Q0A4L8 Ribosomal RNA small subunit methyltransferase G 0.606454361288 0.5 -0.106454361288 +UniRef50_UPI0003782025 hypothetical protein 1.45113919074 0.5 -0.951139190744 +UniRef50_H0A863 0.145980328714 0.5 0.354019671286 +UniRef50_T1BAH6 Glutaredoxin family protein 0.186817614169 0.5 0.313182385831 +UniRef50_M4ZG23 Transcriptional regulator, MarR family 0.069727156896 0.500000000001 0.430272843103 +UniRef50_Q7N8S4 Amino acid acetyltransferase 1.82451063407 0.499999999999 -1.32451063407 +UniRef50_I5BUN0 NAD dependent dehydrogenase 1.95654063126 0.499999999999 -1.45654063126 +UniRef50_UPI00047AB05A ABC transporter substrate binding protein, partial 0.104710534032 0.5 0.395289465968 +UniRef50_Q4ZVS4 Glycosyl hydrolase, BNR repeat protein 0.820294476327 0.5 -0.320294476327 +UniRef50_Q8CQX8 0.658548500143 0.5 -0.158548500143 +UniRef50_P44428 2Fe 2S ferredoxin 0.471728235285 0.5 0.0282717647146 +UniRef50_P0ACK8 L fucose operon activator 0.837960312617 0.5 -0.337960312617 +UniRef50_UPI000310B4FE hypothetical protein 0.0369835610774 0.5 0.463016438923 +UniRef50_UPI00040DEDFB glycine cleavage system protein H 1.31553400042 0.5 -0.815534000419 +UniRef50_K0CDY8 0.0828284254795 0.5 0.41717157452 +UniRef50_D5HAF9 CobW P47K family protein 0.256048958042 0.5 0.243951041958 +UniRef50_X1PT48 Marine sediment metagenome DNA, contig 0.0998624670047 0.5 0.400137532995 +UniRef50_Q5F569 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.208114847234 0.5 0.291885152766 +UniRef50_G8V1X3 Citrate transporter family protein 1.19098725744 0.5 -0.690987257443 +UniRef50_R6M017 0.764674943137 0.5 -0.264674943137 +UniRef50_G5JW97 Competence specific sigma factor ComX 1.72552563071 0.5 -1.22552563071 +UniRef50_T9NAD2 2.97705826058 0.499999999999 -2.47705826058 +UniRef50_M9RZ40 Transport protein 1.14875462788 0.5 -0.648754627876 +UniRef50_F0KLI1 Phosphoribosyl dephospho CoA transferase 0.0242365049612 0.5 0.475763495039 +UniRef50_B9KSK9 Mammalian cell entry related domain protein 0.477175782886 0.5 0.022824217114 +UniRef50_Q46WX7 AMP dependent synthetase and ligase 0.0055636235081 0.500000000001 0.494436376491 +UniRef50_Q892J3 Chorismate synthase 0.0767115858941 0.5 0.423288414106 +UniRef50_F0A5S1 0.000582450227934 0.5 0.499417549773 +UniRef50_G4LSM0 0.804673914918 0.5 -0.304673914918 +UniRef50_Q06173 Periplasmic [NiFe] hydrogenase small subunit 1 1.96119655353 0.5 -1.46119655353 +UniRef50_Q1II76 Bifunctional protein FolD 3.51790118808 0.499999999996 -3.01790118808 +UniRef50_Q8ZM40 tRNA ) methyltransferase 0.476508406646 0.5 0.0234915933543 +UniRef50_Q8CNS2 Protoporphyrinogen oxidase 3.09010399946 0.499999999999 -2.59010399946 +UniRef50_X0UVH5 Marine sediment metagenome DNA, contig 0.0249547634564 0.5 0.475045236544 +UniRef50_I3V422 LysR family transcriptional regulator 0.120123350096 0.5 0.379876649904 +UniRef50_R9SK04 Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2 2.44383984756 0.499999999996 -1.94383984755 +UniRef50_UPI0003A45EE2 alkyl hydroperoxide reductase 0.00667854479105 0.5 0.493321455209 +UniRef50_UPI0003B56E34 dihydrolipoyllysine succinyltransferase 0.459526562108 0.5 0.0404734378924 +UniRef50_E8SI43 ABC transporter ATP binding protein 2.4457962725 0.5 -1.9457962725 +UniRef50_P69814 Galactitol specific phosphotransferase enzyme IIA component 2.47902681491 0.499999999999 -1.97902681491 +UniRef50_P19576 Maltose binding periplasmic protein 0.727177338847 0.5 -0.227177338847 +UniRef50_UPI0002002889 hypothetical protein 0.170235593976 0.5 0.329764406024 +UniRef50_A6LUN8 Mg2+ transporter protein, CorA family protein 0.212371181491 0.5 0.287628818509 +UniRef50_A5IRS3 DoxX family protein 0.842243796619 0.5 -0.342243796619 +UniRef50_W5V4L7 Membrane protein 0.6378638558 0.5 -0.1378638558 +UniRef50_U3SVR2 1.27755107655 0.5 -0.777551076553 +UniRef50_UPI0002378562 queuine tRNA ribosyltransferase, partial 0.0545473637531 0.5 0.445452636247 +UniRef50_UPI000473FB58 helicase DnaB, partial 0.012194163158 0.5 0.487805836842 +UniRef50_B7VMX2 Methionyl tRNA formyltransferase 0.2627176027 0.5 0.2372823973 +UniRef50_F4DWI2 Regulatory protein, LuxR 0.688605483295 0.5 -0.188605483295 +UniRef50_Q2GUA3 0.299858165553 0.5 0.200141834447 +UniRef50_UPI0002EEDC88 hypothetical protein 0.334238597866 0.5 0.165761402134 +UniRef50_Q8Y7N5 Non canonical purine NTP pyrophosphatase 0.0443467997168 0.5 0.455653200283 +UniRef50_R1D6J3 1.07136005378 0.5 -0.571360053785 +UniRef50_A2SNI4 Sex pilus assembly protein 5.87338977547 0.500000000001 -5.37338977547 +UniRef50_I3X709 Extracellular solute binding protein family 3 1.26491719206 0.499999999999 -0.764917192061 +UniRef50_UPI0001CE27CE PREDICTED 0.00910660348585 0.5 0.490893396514 +UniRef50_Q9I4D3 Putative quercetin 2,3 dioxygenase PA1205 0.458803294307 0.5 0.0411967056932 +UniRef50_H6MX85 Peptide methionine sulfoxide reductase MsrA 1.92669499293 0.5 -1.42669499293 +UniRef50_G2JLT4 0.000511071641984 0.499999999999 0.499488928359 +UniRef50_X6G7G7 1.34552892685 0.5 -0.845528926854 +UniRef50_P44123 6 carboxy 5,6,7,8 tetrahydropterin synthase 0.0048527690166 0.5 0.495147230983 +UniRef50_UPI000349B87B hypothetical protein 0.271725871141 0.5 0.228274128859 +UniRef50_P69829 Nitrogen regulatory protein 0.0555532253852 0.5 0.444446774615 +UniRef50_A8F8I3 Phosphoribosylformylglycinamidine synthase 2 2.09162005191 0.499999999997 -1.59162005191 +UniRef50_Q1NB30 1.93516051647 0.500000000001 -1.43516051647 +UniRef50_U3T7G4 Oligopeptide transport system permease protein 0.0244229161314 0.5 0.475577083869 +UniRef50_A0Q4T9 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.535794934788 0.5 -0.035794934788 +UniRef50_G8V7H1 ABC transporter ATP binding protein 0.0213149361712 0.5 0.478685063829 +UniRef50_F7TW27 Nickel transport system permease protein NikB 0.174649231025 0.5 0.325350768976 +UniRef50_F2I8E8 Branched chain amino acid ABC transporter, permease protein 0.824215920187 0.5 -0.324215920187 +UniRef50_UPI000328BD8B PREDICTED 0.168290063215 0.5 0.331709936785 +UniRef50_R9PHP0 Membrane protein related to purine degradation 2.74205541035 0.499999999999 -2.24205541034 +UniRef50_UPI0000E10DEA Mg chelatase, subunit ChlI 0.204605573049 0.5 0.295394426951 +UniRef50_D4GS06 Citrate synthase 0.214572947747 0.5 0.285427052253 +UniRef50_B2URB8 Ketol acid reductoisomerase 0.290653463982 0.5 0.209346536018 +UniRef50_A0A017HSW8 Cation transport protein chaC 0.533434962828 0.5 -0.0334349628276 +UniRef50_UPI00021979C2 oligo 1,6 glucosidase 0.304803286602 0.5 0.195196713398 +UniRef50_UPI0003507592 PREDICTED 0.224170544745 0.5 0.275829455255 +UniRef50_UPI0003AA57B2 sodium 0.00190053062194 0.5 0.498099469378 +UniRef50_UPI0003B38D86 chemotaxis protein CheR 1.98006458798 0.5 -1.48006458798 +UniRef50_C1C8T6 Alanine racemase 0.910962658846 0.5 -0.410962658846 +UniRef50_UPI00034AEEE6 hypothetical protein 0.604005076897 0.5 -0.104005076897 +UniRef50_Q6X7U6 2,3 diaminopropionate biosynthesis protein SbnB 3.46504078432 0.500000000006 -2.96504078433 +UniRef50_UPI00046E80FA hypothetical protein 0.195404593563 0.5 0.304595406437 +UniRef50_R6AVV6 0.0699644165128 0.5 0.430035583487 +UniRef50_I6TPH6 N acetylmuramoyl L alanine amidase 5.30914033463 0.499999999998 -4.80914033463 +UniRef50_A5VKT1 Peptide methionine sulfoxide reductase MsrA 7.13917799433 0.5 -6.63917799433 +UniRef50_G8VNH2 Cysteine synthase ornithine cyclodeaminase 0.0118505687967 0.5 0.488149431203 +UniRef50_B9KN38 UvrB protein 0.96937970623 0.5 -0.46937970623 +UniRef50_Q54XM6 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 0.255213052584 0.5 0.244786947416 +UniRef50_UPI0001FFDC47 5 nucleotidase ;exopolyphosphatase ;3 nucleotidase 0.109329505528 0.5 0.390670494473 +UniRef50_UPI00036C2D64 hypothetical protein 1.71099227478 0.5 -1.21099227478 +UniRef50_F7YPH9 ABC transporter ATP binding protein 0.025763901969 0.5 0.474236098031 +UniRef50_Q2CFL1 0.319560307808 0.5 0.180439692192 +UniRef50_H5YAU5 Spermidine putrescine binding periplasmic protein 2.660612742 0.499999999997 -2.16061274199 +UniRef50_Q7WJI7 Argininosuccinate lyase 0.0533263456134 0.5 0.446673654387 +UniRef50_Q8E0X1 Prophage LambdaSa1, pblA protein, internal deletion 0.291655411404 0.5 0.208344588596 +UniRef50_R4WZZ5 1.72134635132 0.5 -1.22134635132 +UniRef50_UPI0004135EFA ATP dependent DNA helicase RecQ 0.916841881378 0.5 -0.416841881378 +UniRef50_UPI00047C6850 hypothetical protein 0.0678590988577 0.5 0.432140901142 +UniRef50_A6QGQ2 0.755502109951 0.5 -0.255502109951 +UniRef50_UPI000379AA44 hypothetical protein 3.51744065215 0.499999999998 -3.01744065215 +UniRef50_UPI00034B0709 hypothetical protein 3.77247892035 0.499999999994 -3.27247892034 +UniRef50_A6V155 1.15319902942 0.5 -0.653199029418 +UniRef50_UPI000416D15E hypothetical protein 0.313415519187 0.5 0.186584480813 +UniRef50_C1KVB2 Endoribonuclease YbeY 2.93558997639 0.5 -2.43558997639 +UniRef50_P0ABV8 Protein TolR 4.88344824979 0.500000000001 -4.38344824979 +UniRef50_J9NZ26 0.168354450707 0.5 0.331645549293 +UniRef50_UPI0004637A95 MULTISPECIES 0.476126198986 0.5 0.0238738010138 +UniRef50_Q1R1E5 1 deoxy D xylulose 5 phosphate synthase 0.454634668231 0.5 0.0453653317692 +UniRef50_UPI00035C7334 hypothetical protein 2.11576783189 0.5 -1.61576783189 +UniRef50_UPI000367B022 hypothetical protein 0.312644137184 0.5 0.187355862816 +UniRef50_P32157 Protein YiiM 1.76562412303 0.5 -1.26562412303 +UniRef50_Q5LR99 Peptidase, M23 M37 family 2.955454797 0.5 -2.455454797 +UniRef50_UPI0001DD0925 bile acid 0.86599684285 0.5 -0.36599684285 +UniRef50_Q1IW67 PPC, peptidase containing PKD repeats 0.00310121729487 0.499999999999 0.496898782706 +UniRef50_L0A6E5 Phytoene desaturase 0.000917145265107 0.5 0.499082854735 +UniRef50_Q7VA47 Fumarate hydratase class II 0.660798648649 0.5 -0.160798648649 +UniRef50_Q9ZKW2 Probable iron chelatin transport system permease protein jhp_0822 0.0347996975711 0.5 0.465200302429 +UniRef50_R5AM14 Transketolase 0.146517490646 0.5 0.353482509354 +UniRef50_Q9HXC0 3.9578749753 0.500000000001 -3.4578749753 +UniRef50_UPI0004785DA5 hypothetical protein 0.00774279735983 0.5 0.49225720264 +UniRef50_UPI0001C4F400 sulfate ABC transporter permease 0.507005928433 0.5 -0.00700592843262 +UniRef50_W3MN34 0.0282094378517 0.5 0.471790562148 +UniRef50_U2YW33 CRISPR associated protein, Cas5h family 2.54853144103 0.500000000002 -2.04853144103 +UniRef50_Q9RT77 0.056223640296 0.5 0.443776359704 +UniRef50_Q9RT76 0.0426159286085 0.5 0.457384071391 +UniRef50_W8TN29 ACT domain containing protein 0.0104231848121 0.500000000001 0.489576815187 +UniRef50_P52986 Homoserine dehydrogenase 0.0321964937329 0.5 0.467803506267 +UniRef50_B2S5S6 Threonine tRNA ligase 0.856521984058 0.5 -0.356521984058 +UniRef50_D5AQ72 Glycine betaine L proline ABC transporter, permease protein ProW 1 5.8692074872 0.499999999995 -5.3692074872 +UniRef50_A3JTA0 Arsenate reductase 0.912857889478 0.5 -0.412857889478 +UniRef50_G4LDX4 0.283802078915 0.5 0.216197921085 +UniRef50_G2JZ44 Carnitine transport ATP binding protein OpuCA 1.32254838495 0.5 -0.822548384947 +UniRef50_A5USV3 Queuine tRNA ribosyltransferase 0.0812669234679 0.5 0.418733076532 +UniRef50_O52788 Tyrosine protein kinase ptk 0.0273556316099 0.5 0.47264436839 +UniRef50_E5QV38 4.43599913472 0.5 -3.93599913472 +UniRef50_UPI000472FBDB S formylglutathione hydrolase 0.370404045255 0.5 0.129595954745 +UniRef50_P52613 Flagellar FliJ protein 0.575604272993 0.5 -0.0756042729932 +UniRef50_UPI00035FA621 hypothetical protein 0.134563637436 0.5 0.365436362564 +UniRef50_UPI0002891631 HAD family hydrolase 0.161356075261 0.5 0.338643924739 +UniRef50_C1KVA9 GTPase Era 0.990777635644 0.5 -0.490777635644 +UniRef50_UPI00047412C9 hypothetical protein, partial 0.367125829331 0.5 0.132874170669 +UniRef50_T7XDH6 Cytochrome bd II oxidase subunit 2 0.990093240693 0.5 -0.490093240693 +UniRef50_A0A010ITK8 0.223348970435 0.5 0.276651029565 +UniRef50_Q5LVP8 Xanthine dehydrogenase accessory factor 0.0768893678379 0.5 0.423110632162 +UniRef50_F3U4A0 RND family efflux transporter MFP subunit 0.260105561241 0.5 0.239894438759 +UniRef50_B9DZY6 0.0285217228749 0.5 0.471478277125 +UniRef50_UPI0004701B61 hypothetical protein 0.384210064054 0.5 0.115789935946 +UniRef50_Q839H4 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 0.202894724665 0.5 0.297105275335 +UniRef50_UPI000362C020 hypothetical protein 0.00413189192685 0.5 0.495868108073 +UniRef50_UPI000455F0CE hypothetical protein CONPUDRAFT_85381 4.54787613423 0.5 -4.04787613423 +UniRef50_UPI000417B443 hypothetical protein 0.238631379224 0.5 0.261368620776 +UniRef50_A8FY28 Ribonuclease HII 0.463122687768 0.5 0.0368773122325 +UniRef50_F9ECL7 0.0103925183776 0.5 0.489607481622 +UniRef50_A3M1W3 0.0270490240101 0.5 0.47295097599 +UniRef50_UPI0004168D45 DEAD DEAH box helicase 0.0879417706496 0.5 0.41205822935 +UniRef50_Q87DC2 Fumarate hydratase class II 0.699911804798 0.5 -0.199911804798 +UniRef50_X1CXM9 Marine sediment metagenome DNA, contig 0.868410478604 0.5 -0.368410478604 +UniRef50_Q5VQ95 PE PGRS FAMILY PROTEIN like 1.23879453027 0.5 -0.738794530268 +UniRef50_Q0MQH9 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 0.568031442172 0.5 -0.0680314421724 +UniRef50_P05448 Putative L,D transpeptidase in ATP synthase subunits region ORF 5 1.25049111067 0.5 -0.750491110666 +UniRef50_UPI000364300D hypothetical protein 0.314847399841 0.5 0.185152600159 +UniRef50_UPI00046AFE1E fimbrial protein, partial 0.487862441247 0.5 0.0121375587533 +UniRef50_C1C8M1 Threonine tRNA ligase 1.47129256097 0.5 -0.971292560972 +UniRef50_Q9WY54 Aminomethyltransferase 0.605186092277 0.5 -0.105186092277 +UniRef50_UPI000478F558 hypothetical protein 0.043575826279 0.5 0.456424173721 +UniRef50_Z2DM67 0.995989810156 0.5 -0.495989810156 +UniRef50_Q59935 Mannose 6 phosphate isomerase 1.40776209008 0.5 -0.907762090082 +UniRef50_E0MU16 Putative replication protein A 1.54937924303 0.5 -1.04937924303 +UniRef50_A6LPF8 Transcriptional regulator, TrmB 2.6028210387 0.500000000002 -2.1028210387 +UniRef50_F1AX13 PP177 1.09676834158 0.5 -0.596768341576 +UniRef50_UPI0003771110 hypothetical protein 0.0299172109984 0.5 0.470082789001 +UniRef50_P52560 GTP pyrophosphokinase 0.0132296711183 0.5 0.486770328882 +UniRef50_P72871 S adenosylmethionine synthase 0.013940296638 0.5 0.486059703362 +UniRef50_UPI000380FDEA hypothetical protein 0.0837223516059 0.5 0.416277648394 +UniRef50_A7BLF8 Serine threonine protein phosphatase 0.0186868919268 0.499999999999 0.481313108074 +UniRef50_Q74NK6 0.0314598421709 0.5 0.468540157829 +UniRef50_P43319 9.13079264765 0.500000000005 -8.63079264766 +UniRef50_M8E6M3 0.0282943095742 0.5 0.471705690426 +UniRef50_A1B1I1 Leucyl phenylalanyl tRNA protein transferase 0.0684430046884 0.5 0.431556995311 +UniRef50_Q57847 3.07493011989 0.499999999999 -2.57493011989 +UniRef50_Q745F5 0.216988681959 0.5 0.283011318041 +UniRef50_UPI0003628FC3 hypothetical protein, partial 0.019250709817 0.499999999999 0.480749290184 +UniRef50_UPI000158478A hypothetical protein BC1G_06634 0.065873272609 0.5 0.434126727391 +UniRef50_G9EQ58 0.123519999852 0.5 0.376480000148 +UniRef50_F3YMS0 Permease 0.47821713439 0.5 0.0217828656099 +UniRef50_UPI0003651736 hypothetical protein, partial 0.320147543179 0.5 0.179852456821 +UniRef50_Q7VR76 Ribose phosphate pyrophosphokinase 0.233227055053 0.5 0.266772944947 +UniRef50_UPI0003B40518 ABC transporter ATP binding protein 0.0616553963302 0.5 0.43834460367 +UniRef50_UPI0004708F5B ABC transporter substrate binding protein, partial 0.0140187673841 0.5 0.485981232616 +UniRef50_Q9K107 L aspartate oxidase 0.0487374599117 0.5 0.451262540088 +UniRef50_Q6A6B1 BadF BadG BcrA BcrD ATPase family protein 0.011116772781 0.5 0.488883227219 +UniRef50_UPI0001CBF5BB macrolide ABC transporter ATP binding protein 0.125942987853 0.5 0.374057012147 +UniRef50_D8JDP8 Protein visC 0.0068716105711 0.5 0.493128389429 +UniRef50_UPI0003B5F778 iron ABC transporter 0.0860937603416 0.5 0.413906239658 +UniRef50_UPI000382A943 hypothetical protein 0.320913716728 0.5 0.179086283272 +UniRef50_U3T3A9 0.0164314120985 0.5 0.483568587901 +UniRef50_UPI000455D09C lamb YcsF family protein 2.07793680068 0.5 -1.57793680068 +UniRef50_Q9RWW8 0.00194774074998 0.5 0.49805225925 +UniRef50_C6ZBM7 0.405139865794 0.5 0.0948601342063 +UniRef50_A6LRH1 Response regulator receiver protein 0.274356791462 0.5 0.225643208538 +UniRef50_B3QI42 Phosphoribosylformylglycinamidine synthase, purS 0.237787203798 0.5 0.262212796202 +UniRef50_UPI0004712E3C hypothetical protein 0.640685353612 0.5 -0.140685353612 +UniRef50_C1N8X0 Predicted protein 1.84758848096 0.499999999998 -1.34758848095 +UniRef50_A5UNU8 Large terminase subunit 15.201835724 0.499999999994 -14.701835724 +UniRef50_N8WPF6 0.0131844799375 0.5 0.486815520062 +UniRef50_Q8TYX3 HSP70 class molecular chaperones involved in cell morphogenesis 5.35390612699 0.499999999997 -4.85390612699 +UniRef50_P94544 DNA polymerase 3 5 exonuclease PolX 1.32211319268 0.499999999998 -0.822113192683 +UniRef50_UPI0001745B7C iron sulfur cluster assembly accessory protein 3.00255101647 0.5 -2.50255101647 +UniRef50_Q13SP0 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 0.697077353869 0.5 -0.197077353869 +UniRef50_K0S5W4 0.272148709508 0.5 0.227851290492 +UniRef50_UPI0002FE110D Fosmidomycin resistance protein 0.462614759753 0.5 0.0373852402467 +UniRef50_A8A6H8 Inner membrane protein CbrB 1.05342357768 0.5 -0.553423577682 +UniRef50_B4G1R8 0.639120615618 0.5 -0.139120615618 +UniRef50_Q21TR5 Putative ribose galactose methyl galactoside import ATP binding protein 0.0231885253373 0.5 0.476811474663 +UniRef50_N0CFH5 L cystine ABC transporter substrate binding component 0.507517868946 0.5 -0.00751786894569 +UniRef50_M9VK56 Membrane associated protein 0.0226484766504 0.5 0.47735152335 +UniRef50_U5UTH9 0.612024091944 0.5 -0.112024091944 +UniRef50_K0S8Y4 0.67784081835 0.5 -0.17784081835 +UniRef50_F7Z9W9 Transposase 2.01857951755 0.5 -1.51857951755 +UniRef50_UPI00041D675E DNA primase 0.426557027744 0.5 0.073442972256 +UniRef50_Q6Z5U8 0.651747549773 0.5 -0.151747549773 +UniRef50_I3TMV8 Phosphoribosylformylglycinamidine synthase protein 0.974448607211 0.5 -0.474448607211 +UniRef50_UPI000406D548 hypothetical protein 0.699410994853 0.5 -0.199410994853 +UniRef50_Q8CNT0 Abortive phage resistance protein 1.2008360809 0.5 -0.700836080897 +UniRef50_UPI0003610508 hypothetical protein 1.56755391118 0.5 -1.06755391118 +UniRef50_A0A024IFX7 0.00689813062745 0.5 0.493101869372 +UniRef50_S4X548 O acetylserine dependent cystathionine beta synthase 1.58484345181 0.500000000001 -1.08484345181 +UniRef50_P0DC76 N utilization substance protein B homolog 0.0712128560161 0.5 0.428787143984 +UniRef50_A4X990 Cobalamin synthesis protein, P47K 0.22970624901 0.5 0.27029375099 +UniRef50_S9TDP6 Proteophosphoglycan ppg3 0.0822544409246 0.5 0.417745559075 +UniRef50_A9M1F1 Ferric enterobactin transporter binding protein 0.00470224290446 0.5 0.495297757095 +UniRef50_UPI0003B45A90 cytochrome C oxidase 0.0549953015471 0.5 0.445004698452 +UniRef50_B0VKG9 0.175050771403 0.5 0.324949228597 +UniRef50_A6M1U3 Response regulator receiver protein 0.43692071054 0.5 0.0630792894595 +UniRef50_M9R1A8 0.745989731525 0.5 -0.245989731525 +UniRef50_R4K891 rRNA methylase 0.327135070663 0.5 0.172864929337 +UniRef50_S9QSU8 DNA polymerase III, beta subunit 1.13416981283 0.5 -0.634169812831 +UniRef50_UPI0003825004 hypothetical protein 1.52605499387 0.500000000001 -1.02605499387 +UniRef50_A5VZZ2 Cyclic pyranopterin monophosphate synthase 0.373362998876 0.5 0.126637001124 +UniRef50_H3XB68 YhgE Pip C terminal domain protein 2.40219319399 0.499999999999 -1.90219319399 +UniRef50_D8HBY6 6.15035004724 0.500000000001 -5.65035004724 +UniRef50_A0A032VR07 5.90766312513 0.499999999998 -5.40766312513 +UniRef50_Q5HR98 UDP N acetyl D mannosamine transferase 2.04863271524 0.5 -1.54863271524 +UniRef50_M2I9S9 0.395873217137 0.5 0.104126782863 +UniRef50_R1D153 10.7532007846 0.500000000002 -10.2532007846 +UniRef50_Q07417 Short chain specific acyl CoA dehydrogenase, mitochondrial 0.131060607777 0.5 0.368939392223 +UniRef50_W4TL26 0.211142374144 0.5 0.288857625856 +UniRef50_A3NXX0 Cytidylate kinase 0.000937682679928 0.5 0.49906231732 +UniRef50_R7D247 Oxidoreductase short chain dehydrogenase reductase family protein 1.62013989107 0.5 -1.12013989107 +UniRef50_A8MH33 Phospho N acetylmuramoyl pentapeptide transferase 0.246690097026 0.5 0.253309902974 +UniRef50_UPI000464379E DNA mismatch repair protein Vsr 0.0800974508822 0.5 0.419902549118 +UniRef50_UPI00035EB80A hypothetical protein 0.613436974683 0.5 -0.113436974683 +UniRef50_K6EM35 DEAD DEAH box helicase 0.0165518048374 0.5 0.483448195163 +UniRef50_UPI00028A299B deoxyribonucleotide triphosphate pyrophosphatase 0.262523332264 0.5 0.237476667736 +UniRef50_I7HG53 Penicillin binding protein 0.0162877707722 0.5 0.483712229228 +UniRef50_E2X4D1 0.188323000064 0.5 0.311676999936 +UniRef50_Q02IQ8 0.642507671472 0.5 -0.142507671472 +UniRef50_R4RFT5 3 oxoacyl [acyl carrier protein] synthase 3 0.031666541239 0.5 0.468333458761 +UniRef50_M0SUV4 0.198001942452 0.5 0.301998057548 +UniRef50_O31776 L threonine 3 dehydrogenase 0.0602428673915 0.5 0.439757132609 +UniRef50_A8AW17 Cell division protein ftsA 1.19306551449 0.5 -0.693065514495 +UniRef50_UPI0003754678 hypothetical protein, partial 0.927925636693 0.5 -0.427925636693 +UniRef50_O86018 GroESL operon, partial sequence. 0.0841636714092 0.5 0.415836328591 +UniRef50_P9WGZ8 Ribonuclease J 0.0300968065022 0.5 0.469903193498 +UniRef50_X1R855 Marine sediment metagenome DNA, contig 0.205963637235 0.5 0.294036362765 +UniRef50_P33362 Putative osmoprotectant uptake system substrate binding protein OsmF 1.0016127761 0.5 -0.501612776104 +UniRef50_P50107 Lactoylglutathione lyase 0.226525936089 0.5 0.273474063911 +UniRef50_D4H934 DNA binding helix turn helix protein 0.0150612709178 0.5 0.484938729082 +UniRef50_UPI0004786584 hypothetical protein 0.00349037389766 0.5 0.496509626102 +UniRef50_P77319 Chaperone protein HscC 1.45864189706 0.5 -0.958641897058 +UniRef50_A8EWD3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.0422665009604 0.5 0.457733499039 +UniRef50_Q87VD5 Glutamate ammonia ligase adenylyltransferase 2.25325462734 0.5 -1.75325462734 +UniRef50_Q02ID7 7 carboxy 7 deazaguanine synthase 0.0912624167595 0.5 0.408737583241 +UniRef50_A9I0G7 Orotate phosphoribosyltransferase 4.51266064958 0.500000000001 -4.01266064958 +UniRef50_F8FNN8 YbaR 0.401389824974 0.5 0.0986101750256 +UniRef50_A6LZF6 Transcriptional regulator, XRE family 0.13473987515 0.5 0.36526012485 +UniRef50_H0HX43 Transposase 0.151508887797 0.5 0.348491112203 +UniRef50_V9AHX5 PF12266 family protein 0.024185677282 0.5 0.475814322718 +UniRef50_B9DW70 DNA mismatch repair protein MutL 1.13326535847 0.5 -0.633265358473 +UniRef50_M8SYD2 0.235802428892 0.5 0.264197571108 +UniRef50_UPI00045E6B47 Fis family transcriptional regulator 0.316630925037 0.5 0.183369074963 +UniRef50_A5UMR0 Thiamine monphosphate kinase, ThiL 1.47624372683 0.499999999999 -0.97624372683 +UniRef50_C1FHC6 Predicted protein 0.0104385425248 0.5 0.489561457475 +UniRef50_L7WU68 Precorrin 2 dehydrogenase 0.500480223288 0.5 -0.000480223287843 +UniRef50_UPI00037FCE7E hypothetical protein, partial 0.1497438469 0.5 0.3502561531 +UniRef50_J6MTI6 2.6688562203 0.5 -2.1688562203 +UniRef50_Q9KV18 Putative ribosome biogenesis GTPase RsgA 0.253105686154 0.5 0.246894313846 +UniRef50_UPI0003760B8C hypothetical protein 0.898634698757 0.5 -0.398634698757 +UniRef50_UPI0003FB1D7B hypothetical protein 0.0111748878935 0.5 0.488825112107 +UniRef50_UPI00047AC70D hypothetical protein 0.158168120938 0.5 0.341831879062 +UniRef50_A4XP48 Glutamate putrescine ligase 0.918691695344 0.5 -0.418691695344 +UniRef50_L1KHU2 1.24508744346 0.5 -0.74508744346 +UniRef50_UPI0004280637 5 nucleotidase 0.00561341504572 0.5 0.494386584954 +UniRef50_A1TL07 Phosphoribosyl AMP cyclohydrolase 0.558399071017 0.5 -0.0583990710169 +UniRef50_A0ALI9 NLP P60 family protein 0.0142825013734 0.500000000001 0.485717498626 +UniRef50_Q6A964 Glycine tRNA ligase 0.0297585214463 0.5 0.470241478554 +UniRef50_P75030 Urease subunit gamma 0.410830636845 0.5 0.0891693631553 +UniRef50_G0DXU0 0.0443689787715 0.5 0.455631021228 +UniRef50_UPI00036F5C26 hypothetical protein, partial 1.40490775706 0.5 -0.904907757061 +UniRef50_A0A017HQ29 0.979911678571 0.5 -0.479911678571 +UniRef50_R6TVK2 Aldehyde dehydrogenase A 2.290141305 0.500000000002 -1.79014130501 +UniRef50_P77522 FeS cluster assembly protein SufB 0.223982673085 0.5 0.276017326915 +UniRef50_UPI00029A24D2 acyl CoA dehydrogenase 0.313698989511 0.5 0.186301010489 +UniRef50_Q8ERS7 Bis tetraphosphatase PrpE [asymmetrical] 0.020623595074 0.5 0.479376404926 +UniRef50_Q55738 DNA gyrase subunit A 0.218497416989 0.5 0.281502583011 +UniRef50_UPI00046F2BB5 chromosomal replication initiation protein, partial 0.146674026181 0.5 0.35332597382 +UniRef50_A3PFT2 Sulfoxide reductase heme binding subunit YedZ 3.21029064958 0.5 -2.71029064958 +UniRef50_UPI00047E1D32 iron transporter FeoB 0.967207453528 0.5 -0.467207453528 +UniRef50_Q5X1A0 Ribosomal RNA large subunit methyltransferase E 0.285637821799 0.5 0.214362178201 +UniRef50_UPI0003113A1C hypothetical protein 0.281424259473 0.5 0.218575740527 +UniRef50_UPI000424F2DF hypothetical protein 0.886121000245 0.5 -0.386121000245 +UniRef50_P45527 1.73102307654 0.5 -1.23102307654 +UniRef50_UPI000344EADE thioredoxin 0.253248747106 0.5 0.246751252894 +UniRef50_E2ZZT1 Type I ferripyoverdine receptor, FpvB 1.85784949198 0.5 -1.35784949198 +UniRef50_UPI0004630EAC hypothetical protein 0.844803972257 0.5 -0.344803972257 +UniRef50_P46125 Inner membrane protein YedI 1.4287244982 0.5 -0.928724498196 +UniRef50_D4DXV5 Type III restriction enzyme, res subunit 1.78827251477 0.500000000002 -1.28827251478 +UniRef50_UPI00037CF6F9 nitrate ABC transporter ATP binding protein 1.68842905449 0.5 -1.18842905449 +UniRef50_M9VF54 5 formyltetrahydrofolate cyclo ligase 0.0658088830344 0.5 0.434191116965 +UniRef50_UPI00026CD1F6 transposase IS3 IS911 family protein 0.3281881808 0.5 0.1718118192 +UniRef50_B7GKM4 NADH dehydrogenase, FAD containing subunit 2.21494069034 0.5 -1.71494069034 +UniRef50_C6HWC8 Glutamate dehydrogenase 0.0681802204228 0.5 0.431819779577 +UniRef50_UPI00047D654A 8 amino 7 oxononanoate synthase 0.322560800144 0.5 0.177439199856 +UniRef50_A5UKW4 Dihydrolipoamide dehydrogenase 3.37695441584 0.500000000002 -2.87695441584 +UniRef50_Q832Z5 Ribose phosphate pyrophosphokinase 2 2.1396627122 0.5 -1.6396627122 +UniRef50_Q9RUT4 0.00139719264595 0.5 0.498602807354 +UniRef50_UPI00038FBDD6 UPF0135 protein BH1380 0.681072253267 0.5 -0.181072253267 +UniRef50_Q5L3C1 Heptaprenylglyceryl phosphate synthase 1.42050250611 0.5 -0.920502506111 +UniRef50_I4F0A8 1.42010461887 0.500000000002 -0.92010461887 +UniRef50_J9YQH5 PTS system transporter subunit IIBC 1.07888285838 0.5 -0.578882858377 +UniRef50_D3V6J7 0.0366741353657 0.5 0.463325864634 +UniRef50_A1SKT2 0.170141317192 0.5 0.329858682808 +UniRef50_UPI00047E9906 methionine aminopeptidase 0.906372583434 0.5 -0.406372583434 +UniRef50_UPI00021A445D PREDICTED 0.111281182584 0.5 0.388718817416 +UniRef50_A6M169 Transmembrane protein 0.128958570512 0.5 0.371041429488 +UniRef50_P58696 Asparagine tRNA ligase 0.00253853700837 0.5 0.497461462992 +UniRef50_F0PD68 Fructokinase 0.0937460800044 0.5 0.406253919996 +UniRef50_P24242 HTH type transcriptional regulator AscG 4.37199959404 0.500000000001 -3.87199959404 +UniRef50_G4E3T8 Putative solute symporter protein 0.177116482728 0.5 0.322883517272 +UniRef50_UPI00036ED55B hypothetical protein 3.5147807669 0.5 -3.0147807669 +UniRef50_I6SVK1 Putative transcriptional regulator 4.30370591611 0.499999999999 -3.80370591611 +UniRef50_UPI00032A2B8F 0.0304722498683 0.500000000001 0.469527750131 +UniRef50_A5UMS2 Predicted DNA binding protein 0.817795717158 0.5 -0.317795717158 +UniRef50_L7WZG7 BirA bifunctional protein 1.21638612347 0.499999999999 -0.716386123472 +UniRef50_Q9RZR4 0.00091648680917 0.5 0.49908351319 +UniRef50_UPI0003780887 hypothetical protein 0.260230341481 0.5 0.239769658519 +UniRef50_Q6F0T3 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 2 0.622540308737 0.5 -0.122540308737 +UniRef50_A2RF77 UPF0342 protein SpyM51181 5.6659681967 0.500000000001 -5.1659681967 +UniRef50_F1Z1C1 TIGR01906 family protein 0.654933807197 0.5 -0.154933807197 +UniRef50_P37426 Ribonucleoside diphosphate reductase 1 subunit alpha 1.56308858435 0.5 -1.06308858435 +UniRef50_D3QGY3 4.27376056946 0.499999999999 -3.77376056946 +UniRef50_UPI0003B78806 dihydrolipoamide dehydrogenase 0.233231678027 0.5 0.266768321973 +UniRef50_UPI00047995E8 potassium transporter 0.274277811254 0.5 0.225722188746 +UniRef50_UPI0000379B08 hypothetical protein 0.31717067374 0.5 0.18282932626 +UniRef50_W1UDI4 1.24816496697 0.499999999999 -0.748164966972 +UniRef50_Q88ZS6 Glucosamine 6 phosphate deaminase 0.403015257147 0.5 0.0969847428535 +UniRef50_A7HHV0 0.964077443001 0.5 -0.464077443001 +UniRef50_X0XC51 Marine sediment metagenome DNA, contig 0.106661108267 0.5 0.393338891733 +UniRef50_P0AEK2 3 oxoacyl [acyl carrier protein] reductase FabG 0.0457095101988 0.5 0.454290489801 +UniRef50_V8FZY5 Histidine kinase 0.0342647153022 0.5 0.465735284697 +UniRef50_Q9XAR5 NADH quinone oxidoreductase subunit L 0.00990265878655 0.5 0.490097341213 +UniRef50_Q53178 Cytochrome c type protein NapC 1.74855552532 0.499999999998 -1.24855552532 +UniRef50_U6I176 Nucleoside diphosphate kinase 0.293036949901 0.5 0.206963050099 +UniRef50_UPI0004726D5E amino acid permease 0.0796682688856 0.5 0.420331731115 +UniRef50_U3T2J2 S8 S53 family peptidase 0.0850871328861 0.5 0.414912867114 +UniRef50_B1IMN8 Exodeoxyribonuclease 7 large subunit 0.133951278741 0.5 0.366048721258 +UniRef50_C4TE51 Non ribosomal peptide synthetase 1.2400401607 0.5 -0.740040160704 +UniRef50_A6M093 0.349376243973 0.5 0.150623756027 +UniRef50_B9E104 1 deoxy D xylulose 5 phosphate synthase 0.0749487860608 0.499999999999 0.42505121394 +UniRef50_UPI000425BC50 tartrate dehydrogenase 0.604613137279 0.5 -0.104613137279 +UniRef50_D8JLT1 Cyanide insensitive terminal oxidase 0.00990798311288 0.5 0.490092016887 +UniRef50_UPI00044067F2 PREDICTED 1.43831210034 0.5 -0.938312100337 +UniRef50_V4RP20 0.964191875662 0.5 -0.464191875662 +UniRef50_Q3A9L0 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.503389996063 0.5 -0.00338999606303 +UniRef50_P35450 Elongation factor G, chloroplastic 0.14858543009 0.5 0.35141456991 +UniRef50_Q75JD5 Phosphoenolpyruvate carboxykinase [ATP] 0.0385830549918 0.5 0.461416945008 +UniRef50_Q2NBQ3 Acyl carrier protein 0.415206149595 0.5 0.0847938504046 +UniRef50_N9WEN9 0.666964017255 0.5 -0.166964017255 +UniRef50_R1DJF2 0.609313364865 0.5 -0.109313364865 +UniRef50_Q5QU71 0.745694305121 0.5 -0.245694305121 +UniRef50_B6IQY7 Potassium transporting ATPase C chain 0.00315841893394 0.5 0.496841581066 +UniRef50_Q5LMZ8 Lipoprotein, putative 0.500148364033 0.5 -0.000148364033492 +UniRef50_P76938 Elongation factor P hydroxylase 2.8971792264 0.5 -2.3971792264 +UniRef50_UPI0003801D4F hypothetical protein 0.0693064083043 0.5 0.430693591696 +UniRef50_F4A6Q6 Homoserine dehydrogenase 0.709255914057 0.5 -0.209255914057 +UniRef50_A3PR64 Transcriptional regulator, TetR family 5.2843750172 0.499999999998 -4.7843750172 +UniRef50_I6TVX8 1.30635850735 0.5 -0.806358507351 +UniRef50_UPI000174552F ribonuclease III 0.449520466731 0.5 0.0504795332689 +UniRef50_S1SWX2 Serine phosphatase RsbU, regulator of sigma subunit 0.807608364507 0.5 -0.307608364507 +UniRef50_A6LVE7 Multi sensor hybrid histidine kinase 0.249394433265 0.5 0.250605566735 +UniRef50_F7WGV5 0.0678421076483 0.5 0.432157892352 +UniRef50_E1VBD1 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase 2.65948981196 0.5 -2.15948981196 +UniRef50_P45148 Carbonic anhydrase 2 22.8931460808 0.499999999995 -22.3931460808 +UniRef50_P26410 Hydrogenase nickel incorporation protein HypB 2.80842179021 0.5 -2.30842179021 +UniRef50_Q8FD60 N acetylmannosamine kinase 8.94444462775 0.499999999998 -8.44444462775 +UniRef50_UPI0003945864 PREDICTED 0.526823227131 0.5 -0.0268232271314 +UniRef50_UPI0002D3C2A9 MULTISPECIES 0.450398182708 0.5 0.0496018172923 +UniRef50_UPI0004009643 triosephosphate isomerase 0.203706803433 0.5 0.296293196567 +UniRef50_U6HBJ2 2 amino 3 ketobutyrate coenzyme A ligase 4.12103103916 0.5 -3.62103103916 +UniRef50_F1ZDB1 1.07510153943 0.5 -0.575101539429 +UniRef50_Q5HFW6 CCA adding enzyme 1.83336347885 0.5 -1.33336347886 +UniRef50_I0C1Q8 Membrane lipoprotein 2.23713600623 0.5 -1.73713600623 +UniRef50_M9VIA3 0.00786954335472 0.5 0.492130456645 +UniRef50_P0A957 KHG KDPG aldolase 5.01487364037 0.500000000003 -4.51487364038 +UniRef50_I0EP41 Outer membrane protein P1 0.0240708190788 0.5 0.475929180921 +UniRef50_UPI00036E82C7 hypothetical protein 0.0143554210302 0.5 0.48564457897 +UniRef50_O07603 Putative aminopeptidase YhfE 0.722588565783 0.5 -0.222588565783 +UniRef50_D8TJY5 0.799720894923 0.5 -0.299720894923 +UniRef50_UPI0003AF1724 PREDICTED 0.155081801577 0.5 0.344918198423 +UniRef50_Q1QU74 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.0241028953383 0.5 0.475897104662 +UniRef50_Q6FCN6 tRNA ) methyltransferase 0.0150860123275 0.5 0.484913987672 +UniRef50_UPI00047DEB0D hypothetical protein 0.00366269636336 0.5 0.496337303637 +UniRef50_UPI0004785335 hypothetical protein 0.22502836561 0.5 0.27497163439 +UniRef50_UPI0003690A51 hypothetical protein 0.430450516134 0.5 0.0695494838665 +UniRef50_A0A035VZY3 0.952615172061 0.5 -0.452615172061 +UniRef50_A8FBX4 3 oxoacyl [acyl carrier protein] synthase 3 1.72739478327 0.5 -1.22739478327 +UniRef50_UPI00037C1BAA hypothetical protein 4.55582194045 0.500000000001 -4.05582194045 +UniRef50_B1M613 GntR domain protein 1.23906705135 0.5 -0.739067051348 +UniRef50_R7PTP8 4.01323528084 0.499999999995 -3.51323528083 +UniRef50_P0A0T2 Lactoylglutathione lyase 0.0247407775018 0.5 0.475259222498 +UniRef50_Q0FYC5 0.121427790817 0.5 0.378572209183 +UniRef50_UPI00036FE1F3 hypothetical protein 0.0852455019683 0.5 0.414754498032 +UniRef50_A3PL07 Isopentenyl diphosphate Delta isomerase 0.866343466614 0.5 -0.366343466614 +UniRef50_A3PRG0 0.424590961492 0.5 0.0754090385084 +UniRef50_A7ZM51 Voltage gated ClC type chloride channel ClcB 0.572938910426 0.5 -0.0729389104255 +UniRef50_O07631 GTP binding protein TypA BipA homolog 1.63444170555 0.500000000001 -1.13444170555 +UniRef50_V0KMQ9 Pyruvate 1.39490440266 0.5 -0.894904402661 +UniRef50_M4NGZ8 ATP dependent zinc metalloprotease FtsH 0.0947652750702 0.5 0.40523472493 +UniRef50_Q7VFS3 NADH quinone oxidoreductase subunit B 0.0716550226849 0.5 0.428344977315 +UniRef50_UPI0002F2BA6C phosphoglyceromutase 0.499505366417 0.5 0.000494633582893 +UniRef50_X1FPD3 Marine sediment metagenome DNA, contig 0.452620603345 0.5 0.0473793966548 +UniRef50_O27906 CoB CoM heterodisulfide reductase iron sulfur subunit C 5.85143855519 0.499999999997 -5.35143855519 +UniRef50_K2AN26 0.269204807976 0.5 0.230795192024 +UniRef50_I4GV48 0.371740860665 0.5 0.128259139335 +UniRef50_F0RC69 0.0406998348892 0.5 0.459300165111 +UniRef50_X5EHY0 Sodium hydrogen exchanger family protein 1.43659001853 0.499999999999 -0.936590018534 +UniRef50_A6LVZ4 Glycerol 1 phosphate dehydrogenase (+)) 0.488644916914 0.5 0.0113550830857 +UniRef50_A8ZUH7 Holliday junction ATP dependent DNA helicase RuvB 0.821408712694 0.5 -0.321408712694 +UniRef50_B9NXF6 Plasmid partitioning protein RepA 1.56851408998 0.5 -1.06851408998 +UniRef50_UPI0003F56407 hypothetical protein 0.240370622244 0.5 0.259629377756 +UniRef50_B9KYR9 Polyribonucleotide nucleotidyltransferase 0.0806518615027 0.5 0.419348138497 +UniRef50_Q7U9I1 Ribonuclease PH 0.180856013245 0.5 0.319143986754 +UniRef50_U5UJE9 2.31761543982 0.500000000002 -1.81761543982 +UniRef50_A6LVF8 Signal transduction histidine kinase, LytS 0.144435268398 0.5 0.355564731602 +UniRef50_C0Z7Z0 Formamidopyrimidine DNA glycosylase 0.00723195291236 0.5 0.492768047088 +UniRef50_W7Z395 Cold shock DEAD box protein A 0.391010764143 0.5 0.108989235857 +UniRef50_Q3ZXC2 1 deoxy D xylulose 5 phosphate synthase 0.0144152245283 0.5 0.485584775472 +UniRef50_I0KD42 1.53818005639 0.5 -1.03818005639 +UniRef50_Y3FJT1 7.01986178683 0.500000000003 -6.51986178683 +UniRef50_V4VCN9 25.2217657782 0.500000000032 -24.7217657782 +UniRef50_Q6AHE8 Glutamate 1 semialdehyde 2,1 aminomutase 0.097527857178 0.5 0.402472142822 +UniRef50_S1HH61 Cyclic di GMP binding protein 1.92188533393 0.5 -1.42188533393 +UniRef50_L5QQP7 Type I restriction modification DNA specificity domain protein 0.0558632262664 0.5 0.444136773733 +UniRef50_P55222 Cyclic AMP receptor like protein 0.687843073814 0.5 -0.187843073814 +UniRef50_C6SU58 Bacteriocin operon protein ScnE homolog 3.69833966107 0.499999999999 -3.19833966107 +UniRef50_Q1Q2Q1 0.364479898924 0.5 0.135520101076 +UniRef50_Q7VIT0 1 deoxy D xylulose 5 phosphate reductoisomerase 0.0340319528259 0.5 0.465968047174 +UniRef50_UPI0003AD0F18 hypothetical protein 0.249591670113 0.5 0.250408329887 +UniRef50_H2K2L5 Anti sigma factor 0.0102067571511 0.500000000001 0.489793242848 +UniRef50_B9E8P7 1.61797715233 0.5 -1.11797715233 +UniRef50_UPI00045E98AE hypothetical protein 0.248186197635 0.5 0.251813802365 +UniRef50_Q3IUW6 Putative conjugative transfer factor, TraB 2.11669183642 0.5 -1.61669183642 +UniRef50_A3JQQ6 0.791818054869 0.5 -0.291818054869 +UniRef50_B1JLB8 0.408389351365 0.5 0.091610648635 +UniRef50_A1B1W2 3.74538127236 0.499999999999 -3.24538127236 +UniRef50_P64543 0.486268110089 0.5 0.0137318899114 +UniRef50_B0KJ12 KAP P loop domain protein 0.00350187760783 0.5 0.496498122393 +UniRef50_J7MB46 Quinolone resistance protein 0.268388044504 0.5 0.231611955496 +UniRef50_A0A058ZI44 0.508881824545 0.5 -0.00888182454527 +UniRef50_UPI0004756747 6,7 dimethyl 8 ribityllumazine synthase 0.318719893433 0.5 0.181280106567 +UniRef50_E6MX89 0.00907558741456 0.5 0.490924412585 +UniRef50_Q38V64 Alanine racemase 0.00293835123492 0.5 0.497061648765 +UniRef50_Q8XV10 Elongation factor G 1 0.00951383358619 0.499999999999 0.490486166415 +UniRef50_E7IEY2 2.58845823775 0.499999999999 -2.08845823775 +UniRef50_K7SMY3 Phosphoglycerate mutase family protein 0.0420826248185 0.5 0.457917375181 +UniRef50_A5IPM4 1.4395991721 0.5 -0.939599172098 +UniRef50_UPI00039C12F7 hypothetical protein 2.05103173038 0.5 -1.55103173038 +UniRef50_UPI000373BCBB hypothetical protein 0.351596041753 0.5 0.148403958247 +UniRef50_H5M601 Beta galactosidase small chain family protein 3.11818594637 0.499999999999 -2.61818594637 +UniRef50_UPI0002374DEC ABC transporter, permease ATP binding protein 0.259819549968 0.5 0.240180450032 +UniRef50_B3CQC3 Phosphoglycerate kinase 0.49185703497 0.5 0.00814296503033 +UniRef50_Q2K5Z5 Leucine responsive transcriptional regulator protein, AsnC family 5.20713545724 0.500000000006 -4.70713545724 +UniRef50_Q2YZ71 Imidazole glycerol phosphate synthase subunit HisF 4.4639317415 0.499999999996 -3.9639317415 +UniRef50_B2SII2 Glycine tRNA ligase alpha subunit 0.420237316022 0.5 0.0797626839781 +UniRef50_UPI00039E6CDE 50S ribosomal protein L17 0.0776479969469 0.5 0.422352003053 +UniRef50_UPI0003F05D85 PREDICTED 0.0257813473983 0.5 0.474218652602 +UniRef50_Q28RK4 Orotate phosphoribosyltransferase 0.939398794762 0.5 -0.439398794762 +UniRef50_Q5HM44 Zinc type alcohol dehydrogenase like protein SERP1785 1.55473221229 0.5 -1.05473221229 +UniRef50_A3PRI0 Forkhead associated protein 2.63293165922 0.5 -2.13293165922 +UniRef50_UPI00047CBFD0 hypothetical protein 1.32451093333 0.5 -0.824510933329 +UniRef50_B5F731 Non specific ribonucleoside hydrolase RihC 3.84861028543 0.500000000002 -3.34861028544 +UniRef50_P0AFI1 Probable oxalyl CoA decarboxylase 1.33800977133 0.499999999998 -0.83800977133 +UniRef50_B4EX96 HTH type transcriptional regulator BetI 4.28837330082 0.500000000009 -3.78837330083 +UniRef50_B4RQ09 PglB 0.0199489529216 0.5 0.480051047079 +UniRef50_A0A023KRT9 3.27829225981 0.5 -2.77829225981 +UniRef50_A0A046SJ38 PE PGRS family protein PE_PGRS54 0.11717724793 0.5 0.382822752071 +UniRef50_UPI000360B5E8 hypothetical protein 0.306171050729 0.5 0.193828949271 +UniRef50_UPI0003C15BBB 1.63429937837 0.5 -1.13429937837 +UniRef50_A6LRJ1 Amino acid permease associated region 0.161241539621 0.5 0.338758460379 +UniRef50_UPI0004791D16 hypothetical protein 0.210159751135 0.5 0.289840248865 +UniRef50_Q49YA1 Uroporphyrinogen III synthase 3.25548269913 0.5 -2.75548269913 +UniRef50_Q89EB1 Bll7176 protein 1.70857164464 0.5 -1.20857164464 +UniRef50_Q6F885 0.02276748228 0.5 0.47723251772 +UniRef50_R9YS82 tRNA threonylcarbamoyl adenosine modification protein YeaZ 1.40387089648 0.499999999999 -0.903870896482 +UniRef50_X1ABS4 Marine sediment metagenome DNA, contig 0.549761621421 0.5 -0.0497616214209 +UniRef50_Q5HL89 1.34069701756 0.5 -0.840697017556 +UniRef50_W0NHL6 Branched chain amino acid ABC transporter ATP binding protein 1.81365141785 0.5 -1.31365141785 +UniRef50_Q9ZKU5 Acetate kinase 0.105023477153 0.5 0.394976522847 +UniRef50_A3PP96 TonB dependent siderophore receptor 2.70144774322 0.5 -2.20144774322 +UniRef50_UPI000349F59B hypothetical protein 0.219214514267 0.499999999999 0.280785485734 +UniRef50_B0KMS2 0.0629698066105 0.5 0.437030193389 +UniRef50_UPI000369906D hypothetical protein 2.27284948834 0.5 -1.77284948834 +UniRef50_X0ZTS5 Marine sediment metagenome DNA, contig 0.65180957012 0.5 -0.15180957012 +UniRef50_UPI00016A7F76 branched chain amino acid ABC transporter, ATP binding protein, putative, partial 1.48936443483 0.5 -0.989364434828 +UniRef50_Q28Q04 Phosphate ABC transporter membrane protein 2, PhoT family 4.08115849152 0.500000000001 -3.58115849152 +UniRef50_A5ULX2 Adhesin like protein 1.99160346555 0.5 -1.49160346555 +UniRef50_M9VA38 Anchored repeat type ABC transporter, ATP binding subunit 0.184760884934 0.5 0.315239115067 +UniRef50_UPI000350B839 PREDICTED 0.989427552365 0.5 -0.489427552365 +UniRef50_UPI000377C272 hypothetical protein 1.64577360047 0.5 -1.14577360047 +UniRef50_G0DVM2 ABC transporter ATP binding protein 0.0332639243988 0.5 0.466736075601 +UniRef50_UPI0003B35C64 MerR family transcriptional regulator 3.15269900485 0.500000000002 -2.65269900485 +UniRef50_Q8FMG3 GTP cyclohydrolase 1 0.773659607383 0.5 -0.273659607383 +UniRef50_UPI0002D62563 hypothetical protein 3.65185005109 0.5 -3.15185005109 +UniRef50_A5ULL0 PyrE like protein 1.35839299854 0.5 -0.858392998537 +UniRef50_F2AIM9 0.949302439756 0.5 -0.449302439756 +UniRef50_A5UNK0 N acetyltransferase, GNAT family 1.31348881681 0.5 -0.81348881681 +UniRef50_G2SIS1 Gamma glutamyltransferase 0.0138868542892 0.5 0.486113145711 +UniRef50_A6V4P3 Trans aconitate 2 methyltransferase 0.224329072584 0.5 0.275670927416 +UniRef50_UPI0002736FFE GntR family transcriptional regulator 0.205362756585 0.5 0.294637243415 +UniRef50_R4K9K7 0.0867827848652 0.5 0.413217215135 +UniRef50_B7A6L8 0.0315143943073 0.5 0.468485605693 +UniRef50_A6UW73 Argininosuccinate lyase 1.06988710934 0.5 -0.569887109337 +UniRef50_B0VLA1 0.0145408918509 0.5 0.485459108149 +UniRef50_Q46RL8 Trans feruloyl CoA synthase 0.0043866393307 0.5 0.495613360669 +UniRef50_UPI00037F929E hypothetical protein 0.148244050779 0.5 0.351755949221 +UniRef50_K5YBM6 0.428437826192 0.5 0.0715621738079 +UniRef50_R5ZXT3 0.307136283239 0.5 0.192863716761 +UniRef50_UPI0003F68FC8 hypothetical protein 0.0889904394133 0.5 0.411009560587 +UniRef50_A5UKD8 Adhesin like protein 1.53258261572 0.5 -1.03258261572 +UniRef50_G7M5R9 0.180095170903 0.5 0.319904829097 +UniRef50_R5VLQ7 Predicted acyltransferase 0.041424484346 0.5 0.458575515654 +UniRef50_B0TI92 S adenosylmethionine decarboxylase proenzyme 0.362343219518 0.5 0.137656780482 +UniRef50_P37251 Acetolactate synthase large subunit 0.190682161467 0.5 0.309317838533 +UniRef50_M1PXL5 Sensor histidine kinase 0.157067989692 0.5 0.342932010308 +UniRef50_C2Z7L9 0.0420878807324 0.5 0.457912119268 +UniRef50_E8SFE6 1.09473447939 0.5 -0.594734479389 +UniRef50_M4R5V1 0.0450625116271 0.5 0.454937488373 +UniRef50_Q9Z8R3 DNA gyrase subunit B 0.173560722318 0.5 0.326439277682 +UniRef50_Q8FCZ8 0.932007133043 0.5 -0.432007133043 +UniRef50_Q8FIB4 2.44145453442 0.500000000001 -1.94145453442 +UniRef50_W8T781 Enterobactin synthase 0.275982237705 0.5 0.224017762295 +UniRef50_A9GRJ8 0.00972724700594 0.5 0.490272752994 +UniRef50_Q9KD39 Putative GTP cyclohydrolase 1 type 2 0.0210527906291 0.5 0.47894720937 +UniRef50_UPI0002FB4076 hypothetical protein 0.332324130701 0.5 0.167675869299 +UniRef50_B9KTP9 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 0.886388107036 0.5 -0.386388107036 +UniRef50_UPI000350BA5C 0.364583464 0.5 0.135416536 +UniRef50_A8IG02 Phosphate starvation inducible protein 1.16699532453 0.5 -0.666995324526 +UniRef50_P77503 0.351648336804 0.5 0.148351663196 +UniRef50_Q8FK36 Cation efflux system protein CusA 1.70492454767 0.5 -1.20492454767 +UniRef50_K0C7J8 Glutathione S transferase domain protein 3.01377804321 0.500000000001 -2.51377804321 +UniRef50_UPI0003C7F072 DNA binding protein 0.0727994839862 0.5 0.427200516014 +UniRef50_Q9CJR2 0.0424816703663 0.499999999999 0.457518329635 +UniRef50_P77509 0.471830304428 0.5 0.0281696955716 +UniRef50_B9KPE8 8.77823956119 0.500000000001 -8.27823956119 +UniRef50_J9P5H2 0.176537330333 0.5 0.323462669667 +UniRef50_Q6FD84 Urease subunit beta 1.3264132078 0.5 -0.826413207803 +UniRef50_B9JTR3 ATP synthase gamma chain 5.17267389469 0.499999999998 -4.67267389469 +UniRef50_UPI00040C67E8 hypothetical protein 0.336430256207 0.5 0.163569743793 +UniRef50_UPI00047E5667 PTS fructose transporter subunit IIBC 0.00673890694832 0.5 0.493261093052 +UniRef50_A5UL83 30S ribosomal protein S3 0.970582002576 0.5 -0.470582002576 +UniRef50_C7N8H5 Lipoyltransferase and lipoate protein ligase 1.60148789651 0.5 -1.10148789651 +UniRef50_UPI00047C1EB1 hypothetical protein 0.234764488699 0.5 0.265235511301 +UniRef50_M1BG02 0.0256850044791 0.5 0.474314995521 +UniRef50_Q21Y67 ATP dependent Clp protease proteolytic subunit 0.0268831644235 0.500000000001 0.473116835576 +UniRef50_UPI0003C19464 PREDICTED 2.24895990003 0.5 -1.74895990003 +UniRef50_A5WGE7 1 deoxy D xylulose 5 phosphate reductoisomerase 0.0251895222519 0.5 0.474810477748 +UniRef50_UPI0004407D87 hypothetical protein FOMMEDRAFT_83654 0.13478324527 0.5 0.36521675473 +UniRef50_G8W4V0 Aromatic amino acid transporter 4.13896966013 0.499999999995 -3.63896966012 +UniRef50_Q04IT2 Segregation and condensation protein A 0.600960835153 0.5 -0.100960835153 +UniRef50_Q73YR0 FtsQ 0.427876810676 0.5 0.0721231893243 +UniRef50_UPI0003818A60 hypothetical protein 0.459722233926 0.5 0.0402777660736 +UniRef50_A0RRT8 Imidazole glycerol phosphate synthase subunit HisF 1.00872919521 0.5 -0.508729195208 +UniRef50_UPI000255E8B6 molybdopterin molybdochelatase 0.247925178482 0.5 0.252074821518 +UniRef50_A9W3A9 2.29111810918 0.5 -1.79111810918 +UniRef50_H4PDP4 Integrase core domain protein 0.833523474885 0.5 -0.333523474885 +UniRef50_I6TUC0 UDP glucose 6 dehydrogenase 0.231214919691 0.5 0.268785080309 +UniRef50_Q9JWJ7 Ribosomal RNA small subunit methyltransferase I 0.173532678507 0.5 0.326467321493 +UniRef50_UPI00046E904F allantoinase, partial 0.234184864665 0.5 0.265815135335 +UniRef50_Q0FVS1 1.17935416783 0.5 -0.679354167831 +UniRef50_D7GCL3 Cation transport protein 0.106253345576 0.5 0.393746654424 +UniRef50_F4BLG0 0.134111182397 0.5 0.365888817603 +UniRef50_D5C7M7 6 phospho alpha glucosidase 0.104313613982 0.5 0.395686386018 +UniRef50_X1Y8J9 0.250234819811 0.5 0.249765180189 +UniRef50_C1KVE4 Uridine kinase 0.69914391888 0.5 -0.19914391888 +UniRef50_W8RU50 GTA host specificity protein 0.530073366223 0.5 -0.0300733662227 +UniRef50_UPI0003EFB0C6 hypothetical protein, partial 9.83592791839 0.499999999997 -9.33592791838 +UniRef50_O34436 Probable low affinity inorganic phosphate transporter 1.82277209247 0.5 -1.32277209247 +UniRef50_R0ZXH9 0.166308706996 0.5 0.333691293004 +UniRef50_Q9L7S0 3 sulfolactaldehyde reductase 1.42759556922 0.5 -0.927595569224 +UniRef50_Q9CMC7 tRNA dimethylallyltransferase 2.30480207966 0.5 -1.80480207966 +UniRef50_A3PLQ2 Glycoside hydrolase, family 16 2.2996092301 0.499999999997 -1.7996092301 +UniRef50_Q9PMT4 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.0272907781825 0.5 0.472709221818 +UniRef50_UPI0002DDE806 hypothetical protein 1.40917250865 0.5 -0.909172508649 +UniRef50_A0A033NL01 2.87687492681 0.5 -2.37687492681 +UniRef50_Q5HRE0 UPF0272 protein SERP0253 2.02120067924 0.5 -1.52120067924 +UniRef50_Q5HNA8 2.38096561063 0.5 -1.88096561063 +UniRef50_R4REY2 0.225173320896 0.500000000001 0.274826679103 +UniRef50_A6M2K2 Methyl accepting chemotaxis sensory transducer 0.0781592217301 0.499999999999 0.421840778271 +UniRef50_Q89XS8 Branched chain amino acid transaminase 1.69575069979 0.5 -1.19575069979 +UniRef50_P0C2L2 Glutathione transport system permease protein GsiD 4.22376666754 0.500000000003 -3.72376666754 +UniRef50_I4F571 1.19733488276 0.5 -0.697334882762 +UniRef50_G7M5T5 0.454485819914 0.5 0.0455141800856 +UniRef50_E8XP36 Outer membrane protein assembly factor BamC 3.72936445748 0.500000000001 -3.22936445748 +UniRef50_UPI0003B65F02 3 hydroxyacyl CoA dehydrogenase 0.233715130037 0.5 0.266284869963 +UniRef50_UPI0003651249 hypothetical protein 0.936733206345 0.5 -0.436733206345 +UniRef50_D8JEK9 Phage related protein family protein 0.0224584406024 0.5 0.477541559398 +UniRef50_Q2W276 0.600555519407 0.5 -0.100555519407 +UniRef50_A6LX89 Elongation factor G, domain IV 0.596353580081 0.5 -0.0963535800806 +UniRef50_UPI0001FFE2B2 MarR family transcriptional regulator 0.0642085122479 0.499999999999 0.435791487753 +UniRef50_UPI0003B50DDF transposase 0.554415067108 0.5 -0.0544150671079 +UniRef50_P39396 Inner membrane protein YjiY 0.899300746048 0.5 -0.399300746048 +UniRef50_UPI00047720D7 mannitol ABC transporter permease 1.08602956713 0.5 -0.586029567134 +UniRef50_UPI0004059D26 hypothetical protein 0.106520102638 0.5 0.393479897362 +UniRef50_I2NDA2 PF06738 domain protein 0.645319288631 0.5 -0.145319288631 +UniRef50_H8HC20 Rhodanese like domain protein 1.36190488476 0.5 -0.86190488476 +UniRef50_A7MGP9 0.218112591046 0.5 0.281887408954 +UniRef50_W5X3Y6 50S ribosomal protein L1 0.056622415266 0.5 0.443377584734 +UniRef50_Q46814 Probable hypoxanthine oxidase XdhD 1.52576500872 0.500000000002 -1.02576500873 +UniRef50_UPI0003AF618D PREDICTED 0.0543142105253 0.5 0.445685789475 +UniRef50_B9T9T8 2.07861264773 0.499999999999 -1.57861264773 +UniRef50_P76369 4.64813642846 0.500000000003 -4.14813642846 +UniRef50_A0A023B4Y6 0.43495187552 0.5 0.0650481244804 +UniRef50_Q88PG8 Dipeptide ABC transporter, periplasmic dipeptide binding protein 0.990736902976 0.5 -0.490736902976 +UniRef50_A5F3J8 30S ribosomal protein S7 0.494745210386 0.5 0.00525478961422 +UniRef50_D4KTJ1 ABC type Fe3+ hydroxamate transport system, periplasmic component 0.0667999866171 0.5 0.433200013383 +UniRef50_UPI0002F2DA04 hypothetical protein 1.23573376677 0.5 -0.735733766767 +UniRef50_P10346 Glutamine transport ATP binding protein GlnQ 1.37987219671 0.5 -0.87987219671 +UniRef50_A0RA50 Alcohol dehydrogenase, zinc containing protein 2.80786870121 0.5 -2.30786870121 +UniRef50_Z4CKX6 1.93710796159 0.5 -1.43710796159 +UniRef50_A8Y0M2 Protein CBG21728 0.462432582419 0.5 0.0375674175814 +UniRef50_UPI00026573D2 PREDICTED 1.13967716043 0.5 -0.639677160426 +UniRef50_P27833 dTDP 4 amino 4,6 dideoxygalactose transaminase 3.01644386701 0.5 -2.51644386701 +UniRef50_D3E2C7 RNA binding protein 1.67453526573 0.499999999999 -1.17453526573 +UniRef50_UPI0003DEB96B PREDICTED 0.369045472882 0.5 0.130954527118 +UniRef50_UPI00027F4AD8 0.391455237831 0.5 0.108544762169 +UniRef50_N1M8P2 0.969635002119 0.5 -0.469635002119 +UniRef50_D3ZUH5 Protein RGD1566084 1.05376696392 0.5 -0.553766963922 +UniRef50_Q63NI4 Methionine import ATP binding protein MetN 2 12.4139225869 0.499999999996 -11.9139225869 +UniRef50_UPI000367D0D4 hypothetical protein 0.31749556475 0.5 0.18250443525 +UniRef50_C0DRQ8 1.15931894139 0.5 -0.659318941391 +UniRef50_UPI0003B3FD89 ribonuclease E 1.21851768337 0.5 -0.71851768337 +UniRef50_Q8CMU9 Protein translocase subunit SecA 2 2.35241701288 0.499999999999 -1.85241701288 +UniRef50_D5ALK5 1.36084508178 0.5 -0.86084508178 +UniRef50_P33234 HTH type transcriptional regulator AdiY 1.09774401117 0.5 -0.597744011174 +UniRef50_UPI0003B59851 alpha amylase 0.360597410954 0.5 0.139402589046 +UniRef50_UPI00037EDB2C hypothetical protein 0.0767380018134 0.5 0.423261998187 +UniRef50_Q8KE45 UPF0324 membrane protein CT0845 0.102186871113 0.5 0.397813128887 +UniRef50_G0DSM5 Phosphotransferase enzyme family protein 0.0357482812565 0.5 0.464251718743 +UniRef50_UPI00037A1055 hypothetical protein 0.0758992235107 0.5 0.424100776489 +UniRef50_A0A059DM35 0.0950741665612 0.5 0.404925833439 +UniRef50_O86810 DNA translocase FtsK 0.0190980163463 0.5 0.480901983654 +UniRef50_Q03PU9 DNA directed RNA polymerase subunit beta 0.688087325863 0.5 -0.188087325863 +UniRef50_UPI0003C10113 0.262462669138 0.5 0.237537330862 +UniRef50_W7WPQ3 0.209745377635 0.5 0.290254622365 +UniRef50_A7ZTX6 Ketol acid reductoisomerase 1.07457818535 0.5 -0.574578185355 +UniRef50_J4SMJ9 0.829707619014 0.5 -0.329707619014 +UniRef50_Q0SIB7 Hemin import ATP binding protein HmuV 0.0755423837366 0.5 0.424457616263 +UniRef50_O32176 Probable acyl CoA dehydrogenase 0.191574727917 0.5 0.308425272083 +UniRef50_A7ZKS4 Phosphatase NudJ 2.09997731492 0.5 -1.59997731492 +UniRef50_Q6GCC9 Efem EfeO family lipoprotein 2.18466774808 0.5 -1.68466774808 +UniRef50_A0A017HGM4 Putative outer membrane lipoprotein 0.811947748399 0.5 -0.311947748399 +UniRef50_UPI000476B824 CpxR 0.236495687846 0.5 0.263504312154 +UniRef50_UPI00046D7612 hypothetical protein 0.00691582951197 0.5 0.493084170488 +UniRef50_L8UE55 PTS system, galactitol specific IIC component 2.22736766741 0.500000000002 -1.72736766741 +UniRef50_Q9RTN2 Putative phosphoenolpyruvate synthase regulatory protein 0.00756435709707 0.5 0.492435642903 +UniRef50_UPI00036E3FCF phospholipase C, partial 0.16522187174 0.5 0.334778128261 +UniRef50_Q6XQN6 Nicotinate phosphoribosyltransferase 0.205450224665 0.5 0.294549775335 +UniRef50_G8T537 Transposase IS66 0.316182662541 0.5 0.183817337459 +UniRef50_A0A022H366 Transposase 0.00956241350665 0.5 0.490437586493 +UniRef50_D7DUK5 Tryptophan tRNA ligase 3.61018509787 0.499999999998 -3.11018509787 +UniRef50_A5UJH1 1.81568363188 0.500000000001 -1.31568363188 +UniRef50_UPI000365D184 hypothetical protein 0.0767146794196 0.5 0.423285320581 +UniRef50_A0A031Z188 Replication initiation protein 0.741622636512 0.5 -0.241622636512 +UniRef50_G8R9I8 Secretory antigen SsaA 10.520533214 0.499999999994 -10.020533214 +UniRef50_D3QGA7 Luciferase like monooxygenase 1.74978644086 0.500000000001 -1.24978644087 +UniRef50_H5IJ08 Putative phosphotransferase ydiA domain protein 1.48760832944 0.5 -0.987608329444 +UniRef50_UPI0002B461E9 PREDICTED 0.292913449805 0.5 0.207086550195 +UniRef50_UPI0003724D90 hypothetical protein, partial 0.333412213072 0.5 0.166587786928 +UniRef50_P07962 Methyl coenzyme M reductase subunit alpha 9.49906973035 0.499999999999 -8.99906973035 +UniRef50_A1SJB1 Adenine phosphoribosyltransferase 0.00822461814977 0.500000000001 0.491775381849 +UniRef50_UPI00036946A1 MULTISPECIES 0.533987431146 0.5 -0.033987431146 +UniRef50_UPI0003C7ADB6 hypothetical protein, partial 0.0288098106452 0.5 0.471190189355 +UniRef50_E6M7L3 2.09898628644 0.5 -1.59898628644 +UniRef50_B8ID11 Dihydroorotate dehydrogenase 0.388368132337 0.5 0.111631867663 +UniRef50_A0A058Z181 0.0231309573364 0.5 0.476869042664 +UniRef50_UPI000378D9D6 MULTISPECIES 0.532575482793 0.5 -0.032575482793 +UniRef50_A1V5P8 Nitrite extrusion protein 0.202849280461 0.5 0.297150719539 +UniRef50_A0A059MV07 3D trihydroxycyclohexane 1,2 dione hydrolase 0.00701857320759 0.5 0.492981426792 +UniRef50_Q2RS22 Nickel import ATP binding protein NikE 2.51703421082 0.499999999996 -2.01703421082 +UniRef50_UPI000475FACA phage tail protein 0.321229994467 0.5 0.178770005533 +UniRef50_I6U0Z2 Transcriptional regulator 1.20755438548 0.5 -0.707554385475 +UniRef50_B9KX94 ATPase, ParA type 2.14390979455 0.499999999997 -1.64390979455 +UniRef50_G0HAA3 Putative membrane protein 0.0523253624733 0.5 0.447674637527 +UniRef50_B1XW26 Lipoprotein signal peptidase 0.196762416843 0.5 0.303237583157 +UniRef50_B1KEG2 40 residue YVTN family beta propeller repeat protein 4.7505173771 0.5 -4.2505173771 +UniRef50_K7RRX2 Lipoprotein signal peptidase 0.0460134974862 0.5 0.453986502514 +UniRef50_G7M388 CoA disulfide reductase 0.0179794339348 0.5 0.482020566065 +UniRef50_E7C400 Fe S oxidoreductase 0.233720523243 0.5 0.266279476757 +UniRef50_D9SNP1 OmpA MotB domain protein 0.725884346942 0.5 -0.225884346942 +UniRef50_F2AJ88 1.28827567802 0.5 -0.788275678021 +UniRef50_UPI00046577D3 dihydroxy acid dehydratase 0.752499584457 0.5 -0.252499584457 +UniRef50_E3GX46 Triphosphoribosyl dephospho CoA protein 1.14342984045 0.5 -0.643429840448 +UniRef50_E6CES2 0.000166857849115 0.5 0.499833142151 +UniRef50_U3P882 0.00996420028595 0.5 0.490035799714 +UniRef50_L0WHQ4 Short chain dehydrogenase reductase SDR 0.0243577612547 0.5 0.475642238745 +UniRef50_Q0FGF7 Fe S metabolism associated family protein 3.94450476635 0.500000000004 -3.44450476635 +UniRef50_UPI0003B39369 hypothetical protein 2.39178879281 0.500000000001 -1.89178879281 +UniRef50_UPI0003840079 PREDICTED 0.105964977503 0.5 0.394035022497 +UniRef50_UPI00037D595A hypothetical protein 0.0572027676193 0.5 0.442797232381 +UniRef50_UPI0003B59F3E iron ABC transporter substrate binding protein 0.463427396548 0.5 0.0365726034523 +UniRef50_I1B3N6 1.15669423842 0.5 -0.65669423842 +UniRef50_A3CTF1 Nucleoside diphosphate kinase 0.435310827629 0.5 0.0646891723715 +UniRef50_O27714 Transcription elongation factor Spt5 0.1597801539 0.5 0.3402198461 +UniRef50_UPI00047C566A macrolide ABC transporter ATP binding protein 0.00331332956125 0.5 0.496686670439 +UniRef50_A3CMZ5 Dihydrolipoamide acetyl transferase, E2 component, putative 1.26628173367 0.5 -0.766281733675 +UniRef50_R7KL80 0.0548787532161 0.5 0.445121246784 +UniRef50_D0ZSY8 Anti sigma E factor RseA 0.990877760401 0.5 -0.490877760401 +UniRef50_UPI00026C6BF8 6 pyruvoyl tetrahydropterin synthase 0.223642194525 0.5 0.276357805475 +UniRef50_G2I067 DNA gyrase modulator 1.64558262665 0.5 -1.14558262665 +UniRef50_O33406 Uptake hydrogenase large subunit 2.36705875458 0.5 -1.86705875458 +UniRef50_S4MZL0 0.472445110053 0.5 0.0275548899467 +UniRef50_Q7A7M5 UPF0324 membrane protein SA0329 1.06797798824 0.5 -0.567977988239 +UniRef50_UPI0004778F57 hypothetical protein 0.0561663260691 0.5 0.443833673931 +UniRef50_R7PUY3 1.23030120797 0.5 -0.730301207966 +UniRef50_P0A960 Glutamate pyruvate aminotransferase AlaA 1.35270274411 0.5 -0.852702744115 +UniRef50_B9KJF9 Flagellar hook protein FlgE 1.30216837074 0.5 -0.802168370736 +UniRef50_B4F105 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.0539155563244 0.5 0.446084443676 +UniRef50_R0XQP3 0.312770255023 0.5 0.187229744977 +UniRef50_A8IEX2 0.125096562165 0.5 0.374903437835 +UniRef50_Q8DUY4 Putative two component membrane permease complex subunit SMU_746c 2.03452262516 0.5 -1.53452262516 +UniRef50_Q6FB27 Nitrate reductase, large subunit 0.00672194402243 0.5 0.493278055978 +UniRef50_P74104 Riboflavin biosynthesis protein RibBA 0.169515361359 0.5 0.330484638641 +UniRef50_UPI000262CBE2 tRNA 2 selenouridine synthase 0.666089525783 0.5 -0.166089525783 +UniRef50_K0HTN3 0.0250802525317 0.5 0.474919747468 +UniRef50_Q8XJE0 Geranyltranstransferase 0.958057805168 0.5 -0.458057805168 +UniRef50_UPI0002E69439 hypothetical protein 1.06779312649 0.5 -0.567793126495 +UniRef50_UPI0003B34D8A ribonuclease PH 2.03444400143 0.499999999999 -1.53444400143 +UniRef50_UPI00046F223A hypothetical protein, partial 0.110935526309 0.5 0.389064473691 +UniRef50_P30860 ABC transporter arginine binding protein 1 4.27765002378 0.500000000001 -3.77765002378 +UniRef50_W7VJ75 Fatty acid binding protein 0.583068385614 0.5 -0.0830683856139 +UniRef50_D1B150 CreA family protein 0.296622340272 0.5 0.203377659728 +UniRef50_B9KJQ4 4.44909810985 0.499999999998 -3.94909810984 +UniRef50_UPI00040C080C hypothetical protein 1.02178837449 0.5 -0.521788374491 +UniRef50_UPI0004448111 PREDICTED 0.411031667701 0.5 0.088968332299 +UniRef50_P32141 Sulfofructosephosphate aldolase 1.63802377621 0.5 -1.13802377621 +UniRef50_UPI000248C1C0 acyl CoA dehydrogenase domain containing protein 0.22531017639 0.5 0.27468982361 +UniRef50_B0V590 0.0338473722327 0.5 0.466152627767 +UniRef50_W0W629 0.360519028683 0.5 0.139480971317 +UniRef50_P96611 Thioredoxin like protein YdbP 1.16885732989 0.5 -0.668857329894 +UniRef50_C5N3Y4 XkdX family protein 0.273596153945 0.5 0.226403846055 +UniRef50_Q9RDF2 GTPase Era 0.0248735399446 0.5 0.475126460055 +UniRef50_B9KJN1 0.536557872164 0.5 -0.0365578721643 +UniRef50_A9BIZ6 Glutamate synthase, NADH NADPH, small subunit 1.5636326704 0.499999999999 -1.0636326704 +UniRef50_UPI000479919E phosphoribosylaminoimidazolecarboxamide formyltransferase 0.0465576100643 0.5 0.453442389935 +UniRef50_UPI00037E9975 30S ribosomal protein S2 0.378605142403 0.5 0.121394857597 +UniRef50_UPI00037F5062 hypothetical protein 2.01620336863 0.500000000001 -1.51620336863 +UniRef50_A3M5J5 0.0289452771049 0.5 0.471054722895 +UniRef50_A0A058ZCQ6 0.639120615616 0.5 -0.139120615616 +UniRef50_A0NWH9 0.668856993772 0.5 -0.168856993772 +UniRef50_E1VQ88 Transcriptional regulator 0.201360462115 0.5 0.298639537885 +UniRef50_H5YDF6 0.358033821583 0.5 0.141966178417 +UniRef50_UPI00037EF636 hypothetical protein 0.208761686922 0.5 0.291238313078 +UniRef50_UPI00025582F7 aldehyde dehydrogenase 1.06481340846 0.5 -0.56481340846 +UniRef50_C5Q4V1 3.67026025458 0.5 -3.17026025458 +UniRef50_UPI000474476C hypothetical protein 1.06132790478 0.5 -0.561327904777 +UniRef50_F0JCL8 5.13745167341 0.499999999991 -4.6374516734 +UniRef50_B7V9P7 RNA binding protein, putative 1.05711461918 0.5 -0.557114619183 +UniRef50_C3TQZ2 Thiamine import ATP binding protein ThiQ 2.11220800739 0.500000000002 -1.61220800739 +UniRef50_K9AHZ4 6 pyruvoyl tetrahydropterin synthase 0.105634964585 0.499999999999 0.394365035416 +UniRef50_P26239 Magnesium chelatase 38 kDa subunit 2.03012804583 0.499999999999 -1.53012804583 +UniRef50_L7WEC7 ATG13 multi domain protein 3.81269909383 0.499999999996 -3.31269909383 +UniRef50_L7WZ17 0.787504562737 0.5 -0.287504562737 +UniRef50_H6RCQ6 0.414888598391 0.5 0.0851114016087 +UniRef50_UPI0003C42A4B PREDICTED 0.00508028380633 0.5 0.494919716194 +UniRef50_UPI0002D92AB4 excinuclease ABC subunit A 0.0478933051752 0.5 0.452106694825 +UniRef50_C5N6A8 Primosomal protein DnaI 1.75157997214 0.5 -1.25157997214 +UniRef50_UPI0001D2E559 AraC family transcriptional regulator 1.91532717772 0.5 -1.41532717772 +UniRef50_I6XQ31 Major ampullate silk protein 1 1.28787023934 0.5 -0.787870239339 +UniRef50_UPI000466460D hypothetical protein 0.113043131446 0.5 0.386956868553 +UniRef50_UPI00046FD040 TetR family transcriptional regulator 0.174160544439 0.5 0.325839455561 +UniRef50_R7PSI9 Adhesin like protein 4.85777368834 0.499999999999 -4.35777368834 +UniRef50_Q99R75 Dehydrosqualene synthase 1.98251879135 0.5 -1.48251879135 +UniRef50_Q58730 Putative UTP glucose 1 phosphate uridylyltransferase 0.970967449485 0.5 -0.470967449485 +UniRef50_U7IYF3 0.209509787417 0.5 0.290490212583 +UniRef50_X0XJV9 Marine sediment metagenome DNA, contig 1.13097614938 0.5 -0.630976149379 +UniRef50_UPI0003753443 hypothetical protein 0.723435078076 0.5 -0.223435078076 +UniRef50_UPI000362D291 hypothetical protein 0.066363716577 0.499999999999 0.433636283424 +UniRef50_Q8P0D4 Superoxide dismutase [Mn] 0.156750501009 0.5 0.343249498991 +UniRef50_Q2YX92 High affinity heme uptake system protein IsdE 3.68888806487 0.5 -3.18888806487 +UniRef50_A0A059ITV9 0.0912806694252 0.5 0.408719330575 +UniRef50_O26254 Methyl coenzyme M reductase system, component A2 homolog 1.47221275535 0.500000000001 -0.972212755355 +UniRef50_UPI00047B06F8 glyoxylate reductase 0.760850782785 0.5 -0.260850782785 +UniRef50_UPI00023753A7 FAD dependent oxidoreductase, partial 1.00620413004 0.5 -0.506204130039 +UniRef50_T1XU32 Lipoprotein, putative 0.249865507625 0.5 0.250134492375 +UniRef50_L7TP46 0.674092055522 0.5 -0.174092055522 +UniRef50_UPI00037C0C48 hypothetical protein 0.00267684937366 0.5 0.497323150627 +UniRef50_UPI000466A942 hypothetical protein 1.56918089326 0.5 -1.06918089326 +UniRef50_X1XR73 1.20450906413 0.5 -0.704509064134 +UniRef50_UPI000382799A hypothetical protein, partial 6.84671186015 0.500000000006 -6.34671186015 +UniRef50_W1MW06 0.511148307293 0.5 -0.0111483072926 +UniRef50_E8SHT5 0.42107587134 0.5 0.0789241286601 +UniRef50_W0A6S5 0.821577320401 0.5 -0.321577320401 +UniRef50_D3QYX7 Leucine tRNA ligase 0.239081051293 0.5 0.260918948707 +UniRef50_Q9RXI9 Serine cycle enzyme, putative 0.00242065193334 0.5 0.497579348067 +UniRef50_UPI000469863D transcriptional regulator 1.52150119276 0.5 -1.02150119276 +UniRef50_X5DRL9 Nitroreductase family protein 1.70899172439 0.5 -1.20899172439 +UniRef50_S5E3S7 ABC transport protein permease component 3.67488376217 0.500000000001 -3.17488376217 +UniRef50_O27918 Phosphopantetheine adenylyltransferase 0.100566086182 0.5 0.399433913818 +UniRef50_R5TNC8 0.376683154913 0.5 0.123316845087 +UniRef50_UPI00036F39E5 hypothetical protein 0.104467079692 0.499999999999 0.395532920309 +UniRef50_C8S4K0 0.401334701958 0.5 0.0986652980416 +UniRef50_Q96RQ3 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 0.152049095905 0.5 0.347950904095 +UniRef50_UPI00046231D8 hypothetical protein, partial 0.614640816659 0.5 -0.114640816659 +UniRef50_H3V6W0 Ornithine cyclodeaminase domain protein 1.29876429676 0.5 -0.79876429676 +UniRef50_UPI000471846E hypothetical protein 1.45306989883 0.5 -0.953069898832 +UniRef50_UPI000372055F 50S ribosomal protein L6, partial 2.85879137133 0.499999999998 -2.35879137133 +UniRef50_D4GJK9 Protein CreA 0.63735558474 0.5 -0.13735558474 +UniRef50_F7XFL7 3.46711589115 0.499999999999 -2.96711589115 +UniRef50_Q2RZH4 Thymidine kinase 0.642659025868 0.5 -0.142659025868 +UniRef50_C6XKW1 Cytochrome c type biogenesis protein CcmB 0.18198324706 0.5 0.31801675294 +UniRef50_UPI0003503A2D PREDICTED 1.18755377205 0.5 -0.687553772053 +UniRef50_Q99707 Methionine synthase 0.240031685207 0.5 0.259968314793 +UniRef50_B0JUG8 Bifunctional protein PyrR 0.226636137579 0.5 0.273363862421 +UniRef50_Q81G11 3 isopropylmalate dehydrogenase 0.00540528553211 0.5 0.494594714468 +UniRef50_UPI0004730E10 50S ribosomal protein L22, partial 1.54557715566 0.5 -1.04557715566 +UniRef50_A0A050BZL5 PE PGRS family protein PE_PGRS6 0.0557990489664 0.5 0.444200951034 +UniRef50_A7ZRN9 UPF0114 protein YqhA 0.798742488617 0.5 -0.298742488617 +UniRef50_UPI000345BBD3 hypothetical protein 2.60333664845 0.500000000002 -2.10333664845 +UniRef50_UPI00036781FF hypothetical protein 0.485992667727 0.5 0.0140073322731 +UniRef50_UPI000470525C spore coat protein 3.01286836735 0.5 -2.51286836735 +UniRef50_U5L7I3 Topology modulation protein 0.0504488501161 0.5 0.449551149884 +UniRef50_UPI000475A3D2 dehydrogenase 0.636596323575 0.5 -0.136596323575 +UniRef50_R9VB07 0.664621700871 0.5 -0.164621700871 +UniRef50_UPI0003336D92 PREDICTED 0.161465434559 0.499999999999 0.338534565441 +UniRef50_A0A017HNY0 Dipeptide transport system permease protein DppC 0.312871830838 0.5 0.187128169162 +UniRef50_UPI0003771DAE hypothetical protein 0.212730969566 0.5 0.287269030434 +UniRef50_UPI00047A9CE7 luciferase 0.905431764107 0.5 -0.405431764107 +UniRef50_G7M9S8 UvrD REP helicase 0.339520532542 0.5 0.160479467458 +UniRef50_P06864 Evolved beta galactosidase subunit alpha 2.05811291077 0.5 -1.55811291077 +UniRef50_B7V1N9 Arylamine N acetyltransferase 0.306557532473 0.5 0.193442467527 +UniRef50_E8U3M5 0.0327199057063 0.5 0.467280094294 +UniRef50_C9XJX6 DeoR family transcriptional regulator 0.205776576652 0.5 0.294223423348 +UniRef50_P38105 Starvation sensing protein RspB 1.92118336308 0.5 -1.42118336308 +UniRef50_A4XE82 1.37137747898 0.500000000001 -0.87137747898 +UniRef50_A6DYV9 3.70152198242 0.499999999999 -3.20152198242 +UniRef50_W3E224 0.0197887333468 0.500000000001 0.480211266652 +UniRef50_P24270 Catalase 0.208473548277 0.5 0.291526451723 +UniRef50_UPI0003B51789 ABC transporter 0.273101251186 0.5 0.226898748814 +UniRef50_A3CNT7 Histidinol phosphate aminotransferase 5.01473927663 0.500000000001 -4.51473927663 +UniRef50_Q8EKI8 L seryl tRNA selenium transferase 1.44957816528 0.499999999999 -0.949578165276 +UniRef50_Q5KBM9 Chaperone, putative 0.431697735613 0.5 0.0683022643874 +UniRef50_A0PXA5 Glutamate 5 kinase 0.388027486639 0.5 0.111972513361 +UniRef50_B0S912 DNA gyrase subunit A 0.409705204313 0.5 0.0902947956869 +UniRef50_UPI0003B5B207 oxidoreductase 0.200523044286 0.5 0.299476955714 +UniRef50_UPI00037350A3 hypothetical protein 0.197286588178 0.5 0.302713411822 +UniRef50_UPI000225FBCC resolvase domain containing protein 0.835514721037 0.5 -0.335514721037 +UniRef50_Q9HZQ2 Protein CobW 3.58321956155 0.5 -3.08321956155 +UniRef50_I9CAP4 3 oxoadipate enol lactonase 0.0538477238731 0.5 0.446152276127 +UniRef50_S5CZX0 Site specific DNA methylase 0.0077247817425 0.5 0.492275218258 +UniRef50_A1U4W5 0.163053703665 0.499999999999 0.336946296336 +UniRef50_P76577 Penicillin binding protein 1C 2.84414132928 0.500000000002 -2.34414132929 +UniRef50_L7WU63 0.862051940459 0.5 -0.362051940459 +UniRef50_F0MRE3 Di tripeptide transporter 0.0153598566309 0.5 0.484640143369 +UniRef50_UPI000262D0B4 flagellin FliC 1.11581351878 0.5 -0.615813518779 +UniRef50_W5X9X7 Transcriptional regulator, LacI family 0.145707030541 0.5 0.354292969459 +UniRef50_P24395 Ribulose bisphosphate carboxylase small chain 3.69766226731 0.499999999999 -3.19766226731 +UniRef50_UPI0003346733 PREDICTED 0.649194453184 0.5 -0.149194453184 +UniRef50_Q3IW03 Carbohydrate ABC transporter membrane protein 2, CUT1 family 2.18323115669 0.5 -1.68323115669 +UniRef50_P45946 Arsenite resistance protein ArsB 0.0960757156347 0.5 0.403924284365 +UniRef50_U6N0Z9 0.644155363317 0.5 -0.144155363317 +UniRef50_A0A059II46 1.51650185242 0.5 -1.01650185242 +UniRef50_K0K2V8 0.0126001491148 0.5 0.487399850885 +UniRef50_B9J7R7 Biphenyl 2,3 diol 1,2 dioxygenase protein 0.396864052631 0.5 0.103135947369 +UniRef50_B6IN07 DNA directed RNA polymerase subunit omega 11.6801118957 0.499999999987 -11.1801118957 +UniRef50_Q2Y5B3 Transposase 1.49046664185 0.5 -0.990466641854 +UniRef50_P37682 0.554877157958 0.5 -0.0548771579583 +UniRef50_V5VC89 Phospho 2 dehydro 3 deoxyheptonate aldolase 0.00803291120756 0.5 0.491967088792 +UniRef50_UPI00047A404B hypothetical protein 0.411896450956 0.5 0.0881035490442 +UniRef50_A5UP62 9.71172490153 0.500000000002 -9.21172490153 +UniRef50_A5UP68 1.92133026691 0.5 -1.42133026691 +UniRef50_C0F8A8 0.157261513421 0.5 0.342738486579 +UniRef50_Q9K0Y0 D alanine D alanine ligase 0.0284622556375 0.5 0.471537744362 +UniRef50_C6CBJ2 Oligogalacturonide transporter 0.656517918589 0.5 -0.156517918589 +UniRef50_UPI00036B05F9 3 oxoacyl ACP synthase, partial 0.445061503977 0.5 0.0549384960228 +UniRef50_A5UND0 Glycosyltransferase, GT2 family 2.89984541243 0.500000000002 -2.39984541243 +UniRef50_E6MVK2 0.0297375246909 0.5 0.470262475309 +UniRef50_Q9JX72 Glutamate ammonia ligase adenylyltransferase 0.0234447678058 0.5 0.476555232194 +UniRef50_K4NHA2 0.00239844978437 0.5 0.497601550216 +UniRef50_A0A011QY25 Efflux pump membrane transporter BepE 0.0886071427367 0.500000000001 0.411392857263 +UniRef50_P09738 Superoxide dismutase [Mn Fe] 7.45151707185 0.499999999998 -6.95151707185 +UniRef50_UPI0003B50A76 amino acid ABC transporter substrate binding protein 0.0248388760441 0.5 0.475161123956 +UniRef50_UPI0004771768 hypothetical protein 1.84096456023 0.5 -1.34096456023 +UniRef50_UPI0004678EBB deoxyguanosinetriphosphate triphosphohydrolase 1.46132515637 0.5 -0.961325156367 +UniRef50_Q4L427 Transcriptional regulator, MerR family 1.2483389104 0.5 -0.7483389104 +UniRef50_X6LEJ6 TRAP transporter solute receptor TAXI family 4.46140627492 0.499999999998 -3.96140627492 +UniRef50_E1HGR2 0.362475306791 0.5 0.137524693209 +UniRef50_UPI0004630420 hypothetical protein 2.87196124949 0.499999999999 -2.37196124949 +UniRef50_L7ZH95 23S rRNA C(5)) methyltransferase RlmD 6.0633854005 0.499999999996 -5.56338540049 +UniRef50_Q3JXF7 0.574071582853 0.5 -0.0740715828525 +UniRef50_L0DDS9 1.12648910777 0.5 -0.626489107771 +UniRef50_UPI00036A6475 hypothetical protein 0.144578381047 0.5 0.355421618953 +UniRef50_Q6FMA3 FK506 binding protein 1 0.503194391169 0.5 -0.00319439116893 +UniRef50_Q8XIA9 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0018895644711 0.500000000001 0.498110435528 +UniRef50_S6NZ74 Glutamate synthase subunit alpha 2.42421165171 0.5 -1.92421165171 +UniRef50_Q9A311 UPF0301 protein CC_3395 0.33870237408 0.5 0.16129762592 +UniRef50_UPI0000E0EE96 pilus modification protein PilQ 0.312196754882 0.5 0.187803245118 +UniRef50_U5MRW2 NADP reducing hydrogenase subunit HndC 0.279084762772 0.5 0.220915237228 +UniRef50_R7YUC0 0.00258657605496 0.5 0.497413423945 +UniRef50_A7C4B4 Short chain dehydrogenase reductase SDR 0.148307067356 0.5 0.351692932644 +UniRef50_Q88VE3 Probable GTP binding protein EngB 0.879760871277 0.5 -0.379760871277 +UniRef50_I1W617 Metallo beta lactamase superfamily domain protein 2.41552444739 0.5 -1.91552444739 +UniRef50_UPI000414FA05 zinc iron permease 5.9375709491 0.5 -5.4375709491 +UniRef50_UPI00036EBE75 hypothetical protein 0.01425113651 0.5 0.48574886349 +UniRef50_X1Y0Y0 1.72595034736 0.5 -1.22595034736 +UniRef50_V2HBE7 Cupin 1.22091825699 0.5 -0.720918256992 +UniRef50_Q92CE4 Glutamate 5 kinase 0.53052654685 0.5 -0.0305265468498 +UniRef50_UPI00039CB03A acyltransferase 10.7399898138 0.500000000003 -10.2399898138 +UniRef50_D6AF37 0.537484476401 0.5 -0.0374844764009 +UniRef50_A6LRK6 Dephospho CoA kinase 0.668171749266 0.5 -0.168171749266 +UniRef50_C5YML5 0.245874099462 0.5 0.254125900538 +UniRef50_R7A629 Cell division ATP binding protein FtsE 2.26283426675 0.499999999999 -1.76283426675 +UniRef50_UPI00037DADC1 hypothetical protein 0.477574967941 0.5 0.0224250320591 +UniRef50_P29131 Cell division protein FtsN 8.46278936526 0.500000000003 -7.96278936526 +UniRef50_Q4KEZ9 N anthranilate isomerase 0.0333997232997 0.5 0.466600276701 +UniRef50_D2UBU1 0.329249036866 0.5 0.170750963134 +UniRef50_UPI000376D12A hypothetical protein 1.12915876994 0.5 -0.629158769939 +UniRef50_D3QIX9 1.5216659975 0.5 -1.0216659975 +UniRef50_UPI00039B183B helicase 0.00406315977995 0.5 0.49593684022 +UniRef50_UPI000374642A hypothetical protein 0.261271469773 0.5 0.238728530227 +UniRef50_R7YU19 5.644147534 0.499999999999 -5.144147534 +UniRef50_A0A028ILN1 0.0183659043255 0.5 0.481634095675 +UniRef50_F0RMH9 Thioredoxin reductase 0.00237220342828 0.5 0.497627796572 +UniRef50_Z1D1L3 Serine aspartate repeat containing protein D 8.04108538658 0.500000000001 -7.54108538658 +UniRef50_UPI0003B4CF71 30S ribosomal protein S3 0.248183555414 0.5 0.251816444586 +UniRef50_P43850 N5 carboxyaminoimidazole ribonucleotide synthase 0.991224079985 0.5 -0.491224079985 +UniRef50_P0AEB8 RutC family protein YoaB 1.6255893919 0.500000000002 -1.1255893919 +UniRef50_G8QQ16 Aminoacyl histidine dipeptidase 0.017700799912 0.5 0.482299200088 +UniRef50_K0F919 Phosphate transporter 0.0130178398315 0.5 0.486982160168 +UniRef50_Q9RSU4 0.00164651977651 0.5 0.498353480223 +UniRef50_R7NVL6 AICARFT IMPCHase bienzyme 0.0294379333321 0.5 0.470562066668 +UniRef50_E6N0K4 0.0110179257437 0.500000000001 0.488982074256 +UniRef50_Q4L628 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.5076336869 0.5 -3.0076336869 +UniRef50_K1YQK0 0.0968042156929 0.5 0.403195784307 +UniRef50_A4XID9 Type II secretion system protein E 0.141735749434 0.5 0.358264250566 +UniRef50_B9DL96 SirB protein 1.01893056831 0.5 -0.518930568306 +UniRef50_UPI0003B65A97 hypothetical protein 0.292134532625 0.5 0.207865467375 +UniRef50_A6LWV9 Transcription activator, effector binding 0.108804215623 0.5 0.391195784377 +UniRef50_UPI0003AD00EB ABC transporter permease 0.373212504081 0.5 0.126787495919 +UniRef50_UPI00029A0867 HNH endonuclease 0.704927052939 0.5 -0.204927052939 +UniRef50_A4WUM0 HAD superfamily hydrolase, subfamily IIA 7.4382224672 0.500000000002 -6.93822246721 +UniRef50_Q0JN66 Os01g0323600 protein 0.377239327112 0.5 0.122760672888 +UniRef50_UPI000425885C ABC transporter 0.578832668524 0.5 -0.0788326685239 +UniRef50_A6LPJ7 PpiC type peptidyl prolyl cis trans isomerase 0.0581336825646 0.5 0.441866317435 +UniRef50_UPI000376B01F hypothetical protein 2.81826515378 0.5 -2.31826515378 +UniRef50_P62904 Transposase from transposon Tn1545 3.27082670318 0.500000000001 -2.77082670318 +UniRef50_UPI00036D74AB hypothetical protein 1.5326573442 0.5 -1.0326573442 +UniRef50_P03740 Tail fiber assembly protein 1.79250126519 0.499999999998 -1.29250126518 +UniRef50_UPI00036AE08D hypothetical protein 3.72704171424 0.5 -3.22704171424 +UniRef50_UPI000349BBCB transcription factor WhiB 0.24392122468 0.5 0.25607877532 +UniRef50_UPI0003B720CE peptide ABC transporter permease 0.196929467648 0.5 0.303070532352 +UniRef50_Q8Z8G7 Apolipoprotein N acyltransferase 1.73657507609 0.499999999999 -1.23657507609 +UniRef50_A6LY96 0.189492310906 0.5 0.310507689095 +UniRef50_UPI00037F0E4A hypothetical protein 0.00137933327654 0.499999999999 0.498620666724 +UniRef50_Q0FWM3 1.94139379928 0.5 -1.44139379928 +UniRef50_UPI000372A004 30S ribosomal protein S11 0.123580184579 0.5 0.376419815421 +UniRef50_UPI000406AC71 hypothetical protein 0.105070598278 0.5 0.394929401722 +UniRef50_P44931 tRNA specific adenosine deaminase 0.151565242968 0.5 0.348434757032 +UniRef50_UPI00047200C5 hypothetical protein 2.49097993386 0.500000000001 -1.99097993386 +UniRef50_C5A6Q6 tRNA binding protein, putative 1.97697360977 0.5 -1.47697360977 +UniRef50_UPI000476F5C1 hypothetical protein 0.394271402525 0.5 0.105728597475 +UniRef50_F3SBC7 0.69307992744 0.5 -0.19307992744 +UniRef50_UPI000467C7DA hypothetical protein 2.39363535129 0.499999999999 -1.89363535129 +UniRef50_UPI000348A11C hypothetical protein 0.685293937138 0.5 -0.185293937138 +UniRef50_Q8Y3E7 Acetylglutamate kinase 1.33515854432 0.5 -0.835158544318 +UniRef50_P76162 0.882374257959 0.5 -0.382374257959 +UniRef50_UPI000316A923 hypothetical protein 0.0701679134106 0.5 0.42983208659 +UniRef50_T5D7P0 1 pyrroline 5 carboxylate dehydrogenase 0.0199817289302 0.5 0.48001827107 +UniRef50_D9SWK1 MmpL domain containing protein 0.173563216654 0.5 0.326436783346 +UniRef50_F3ZHY8 Putative lipoyl synthase 0.0284616984773 0.5 0.471538301523 +UniRef50_Q2P1U6 Lysine tRNA ligase 0.174517642707 0.5 0.325482357293 +UniRef50_UPI0001D2F0AE putrescine spermidine ABC transporter substrate binding protein 0.157541581041 0.5 0.342458418959 +UniRef50_S5XYD0 Type I secretion outer membrane protein, TolC 3.21895017061 0.500000000003 -2.71895017061 +UniRef50_P71242 Colanic acid biosynthesis protein WcaK 0.720113259725 0.5 -0.220113259725 +UniRef50_A6LXV6 Xylan 1,4 beta xylosidase 0.323108874223 0.5 0.176891125777 +UniRef50_K2CIP8 0.527364672115 0.5 -0.0273646721149 +UniRef50_F3Z911 Putative LysR family transcriptional regulator 0.374118305859 0.5 0.125881694141 +UniRef50_K0H1B5 0.0208210995785 0.5 0.479178900421 +UniRef50_UPI0003A37396 spermidine putrescine ABC transporter substrate binding protein 0.077927117747 0.5 0.422072882253 +UniRef50_UPI0003F726C9 5 methyltetrahydrofolate homocysteine methyltransferase 0.0136138092361 0.5 0.486386190764 +UniRef50_UPI00036FE7ED hypothetical protein 0.252809649841 0.5 0.247190350159 +UniRef50_P07738 Bisphosphoglycerate mutase 0.320436008454 0.5 0.179563991546 +UniRef50_UPI000365C798 Cro Cl family transcriptional regulator 3.96409808594 0.500000000005 -3.46409808594 +UniRef50_A7X393 Glutamyl tRNA reductase 1.4542400493 0.499999999999 -0.954240049296 +UniRef50_Q5JFN5 Phosphoribosylaminoimidazole succinocarboxamide synthase 0.505912589962 0.5 -0.00591258996161 +UniRef50_UPI0003B3B62E iron ABC transporter permease 0.364278086138 0.5 0.135721913862 +UniRef50_Q55498 N5 carboxyaminoimidazole ribonucleotide mutase 0.0265175253962 0.5 0.473482474604 +UniRef50_UPI000479DC3A hypothetical protein 0.322437360156 0.5 0.177562639844 +UniRef50_Q4K8R5 ErfK YbiS YcfS YnhG family protein 0.317264615942 0.5 0.182735384058 +UniRef50_UPI00047C9C40 hypothetical protein 1.58463558646 0.500000000001 -1.08463558646 +UniRef50_P13061 Periplasmic [NiFe] hydrogenase small subunit 2.03939239462 0.5 -1.53939239462 +UniRef50_B1J449 Peptidase M23B 0.141665974307 0.5 0.358334025693 +UniRef50_B9DQ98 Processive diacylglycerol beta glucosyltransferase 1.46804198092 0.499999999999 -0.968041980918 +UniRef50_R5FWD3 Ribokinase family Sugar kinase 0.0196884683344 0.5 0.480311531665 +UniRef50_A8YNI5 Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328 4.64342710584 0.5 -4.14342710584 +UniRef50_M7DS31 Surfactin synthetase 1.39606953933 0.5 -0.896069539335 +UniRef50_P0AFE2 NADH quinone oxidoreductase subunit J 0.74428035246 0.5 -0.24428035246 +UniRef50_P21649 Protein MrkE 4.49982856183 0.500000000005 -3.99982856183 +UniRef50_F1B2P1 0.232745368727 0.5 0.267254631273 +UniRef50_UPI00047188E0 hypothetical protein 0.0111928574802 0.5 0.48880714252 +UniRef50_Q59679 Superoxide dismutase [Mn] 0.0442062095141 0.5 0.455793790486 +UniRef50_UPI000466807B hypothetical protein 0.16570962721 0.5 0.33429037279 +UniRef50_E6NJW8 Poly E rich protein 0.0301064052257 0.5 0.469893594774 +UniRef50_Q9RRU7 Lipoprotein signal peptidase 0.00178801545233 0.5 0.498211984548 +UniRef50_I4CUQ3 0.23654448126 0.5 0.26345551874 +UniRef50_UPI00046AEF9B ABC transporter ATP binding protein 0.184633117474 0.5 0.315366882526 +UniRef50_E1ZBZ0 0.833634151915 0.5 -0.333634151915 +UniRef50_Q6BX45 FK506 binding protein 1 0.292985477855 0.5 0.207014522145 +UniRef50_A6LTL3 0.170798811073 0.5 0.329201188927 +UniRef50_F0YG09 Expressed protein 0.247295891906 0.5 0.252704108094 +UniRef50_UPI0001744DA7 translation initiation factor IF 3 0.328777050091 0.5 0.171222949909 +UniRef50_P76010 Flagellar brake protein YcgR 1.14768818138 0.5 -0.647688181379 +UniRef50_V4JQ05 1.35688546564 0.5 -0.856885465642 +UniRef50_Q5LX99 TPR domain protein 1.97016746249 0.5 -1.47016746249 +UniRef50_X5EHV6 1.10764622685 0.5 -0.607646226853 +UniRef50_E8QKL2 0.04524145299 0.5 0.45475854701 +UniRef50_UPI000329FDA5 0.459185693196 0.5 0.040814306804 +UniRef50_B9TMP8 0.227820433885 0.5 0.272179566115 +UniRef50_X2LS39 Ribonuclease E 0.991243541144 0.5 -0.491243541144 +UniRef50_W4HN66 4.02927953178 0.500000000001 -3.52927953178 +UniRef50_Q8DKV8 Tlr0743 protein 0.428948285774 0.5 0.0710517142265 +UniRef50_UPI0004795C04 hypothetical protein 0.201137549903 0.5 0.298862450097 +UniRef50_UPI00046D9877 hemolysin, partial 0.0364923021642 0.5 0.463507697836 +UniRef50_E6V9U6 0.0557186587443 0.5 0.444281341255 +UniRef50_Q6FFH7 0.01642823142 0.5 0.48357176858 +UniRef50_A6LW46 Ppx GppA phosphatase 0.292930656286 0.5 0.207069343714 +UniRef50_C4Z2C3 0.1457923829 0.5 0.3542076171 +UniRef50_UPI000471C2D7 hypothetical protein 0.512830531589 0.5 -0.012830531589 +UniRef50_F0RP65 Peptidase S41 0.00184144949776 0.5 0.498158550503 +UniRef50_S4XIK9 Iron ABC transport system substrate binding protein 0.149347219295 0.5 0.350652780705 +UniRef50_UPI0003013893 hypothetical protein 0.324645459333 0.5 0.175354540667 +UniRef50_A3PJZ0 LPS assembly protein LptD 1.03389798225 0.5 -0.53389798225 +UniRef50_UPI00036BEF36 hypothetical protein 0.0753373963857 0.5 0.424662603614 +UniRef50_Q8X7J5 Multidrug resistance protein MdtA 0.826854973891 0.5 -0.326854973891 +UniRef50_I3THN2 Dehydrogenase 0.83880490719 0.5 -0.33880490719 +UniRef50_P42463 Acetolactate synthase large subunit 0.00366718016757 0.5 0.496332819833 +UniRef50_UPI00047BA501 hypothetical protein 0.36109007176 0.5 0.13890992824 +UniRef50_UPI000328B2BB PREDICTED 0.430973162738 0.5 0.0690268372622 +UniRef50_UPI0003799127 hypothetical protein 6.71070884373 0.5 -6.21070884373 +UniRef50_A5UMH3 Predicted ATPase, AAA+ superfamily 1.36415231519 0.499999999998 -0.864152315192 +UniRef50_UPI0000164CF9 ferredoxin, putative, partial 0.00200232206601 0.5 0.497997677934 +UniRef50_UPI0003668456 hypothetical protein 0.17385654706 0.5 0.32614345294 +UniRef50_Q818I1 Superoxide dismutase [Mn] 1 0.115835964289 0.5 0.384164035711 +UniRef50_UPI00046F3B88 hypothetical protein 0.656809623805 0.5 -0.156809623805 +UniRef50_UPI00047E80CF hypothetical protein 0.790023037111 0.5 -0.290023037111 +UniRef50_P0AEN0 Cystine binding periplasmic protein 2.10764681579 0.500000000001 -1.60764681579 +UniRef50_B1JXE0 0.192263878566 0.500000000001 0.307736121433 +UniRef50_A4WSN3 Transcriptional regulator, TetR family 2.34491632706 0.5 -1.84491632706 +UniRef50_D9REU8 Poly alpha glucosyltransferase 1.16493744334 0.5 -0.66493744334 +UniRef50_R9ZGV6 ABC transporter substrate binding protein 0.91007598813 0.5 -0.41007598813 +UniRef50_O25046 Adenosine deaminase 0.0331887746524 0.5 0.466811225348 +UniRef50_P0AFU3 3.30026164244 0.499999999999 -2.80026164244 +UniRef50_G7M452 Integral membrane sensor signal transduction histidine kinase 0.208591827104 0.5 0.291408172896 +UniRef50_Q02LE1 7.92941474045 0.500000000004 -7.42941474045 +UniRef50_D4KM36 Dihydroxyacid dehydratase phosphogluconate dehydratase 0.0405071030472 0.5 0.459492896953 +UniRef50_Q17XN9 Aspartate carbamoyltransferase 0.0466842253839 0.5 0.453315774616 +UniRef50_G8NMF7 Oligopeptide ABC transporter, permease protein 2.67146648036 0.5 -2.17146648036 +UniRef50_B2UX24 Histidinol phosphate aminotransferase 0.104530693784 0.5 0.395469306216 +UniRef50_UPI00037E9746 hypothetical protein, partial 0.0221509701699 0.5 0.47784902983 +UniRef50_G8QIK2 Cysteine synthase 0.384360040201 0.5 0.115639959799 +UniRef50_W8S4A8 0.0758556601438 0.5 0.424144339856 +UniRef50_N2L427 CSS motif domain associated with EAL family protein 0.48452812906 0.5 0.0154718709401 +UniRef50_UPI0003B5F916 ABC transporter ATP binding protein 1.3791351005 0.5 -0.879135100495 +UniRef50_A7X5Y6 Heme sensor protein HssS 1.52183657493 0.500000000002 -1.02183657493 +UniRef50_M1VXV3 Related to ECM4 protein 3.352540483 0.5 -2.852540483 +UniRef50_H8H0N8 Diguanylate cyclase with GAF sensor 0.00173473751251 0.5 0.498265262488 +UniRef50_D5UF49 Zn dependent hydrolase, glyoxylase 0.0286987954931 0.5 0.471301204507 +UniRef50_Q1C8A9 N succinylglutamate 5 semialdehyde dehydrogenase 0.0146692378771 0.5 0.485330762123 +UniRef50_O67078 3 isopropylmalate dehydratase large subunit 0.455293116675 0.5 0.0447068833247 +UniRef50_A5WE51 Inner membrane peptidase, Serine peptidase, MEROPS family S49 0.0587701720957 0.5 0.441229827904 +UniRef50_Q8CP91 ABC transporter protein 1.3008309084 0.5 -0.800830908399 +UniRef50_Q2S5G4 Phosphoadenosine phosphosulfate reductase 0.320975791481 0.5 0.179024208519 +UniRef50_UPI000471DE1F indole 3 glycerol phosphate synthase 0.2818716242 0.5 0.2181283758 +UniRef50_Q9RUK2 Transcriptional regulator, TetR family 0.00293100293126 0.5 0.497068997068 +UniRef50_UPI00036055AD GTP cyclohydrolase I 0.1298708354 0.5 0.3701291646 +UniRef50_Q5HKY3 ABC transporter, ATP binding protein 2.31711716523 0.5 -1.81711716523 +UniRef50_G7M5B9 Type II secretion system protein E 0.0468459011333 0.5 0.453154098867 +UniRef50_W4K0D8 3.85678568323 0.500000000008 -3.35678568324 +UniRef50_C3BHS6 Aldehyde dehydrogenase 0.122865045284 0.5 0.377134954716 +UniRef50_K2D6N5 0.918099226787 0.5 -0.418099226787 +UniRef50_UPI00031C1838 hypothetical protein 5.28056307675 0.500000000003 -4.78056307676 +UniRef50_UPI000475EE77 histidine kinase 0.194590684443 0.5 0.305409315557 +UniRef50_P39156 Putative sugar phosphate isomerase YwlF 0.00561050374825 0.499999999999 0.494389496252 +UniRef50_G7U731 0.0471354292496 0.5 0.45286457075 +UniRef50_B9J3P1 3.51925425306 0.499999999998 -3.01925425306 +UniRef50_P32153 Putative aminopeptidase FrvX 1.18063445784 0.5 -0.680634457837 +UniRef50_Q03WF6 Pseudouridine synthase 1.95020391382 0.5 -1.45020391382 +UniRef50_C7CLY8 Pirin like protein 0.330882624117 0.5 0.169117375883 +UniRef50_W9H6Y5 Anti sigma regulatory factor 0.00634099193397 0.5 0.493659008066 +UniRef50_Q744M7 0.100314423222 0.5 0.399685576778 +UniRef50_A6FZQ4 0.309335550376 0.5 0.190664449624 +UniRef50_B9KU19 Proline racemase 3.39794604203 0.499999999999 -2.89794604203 +UniRef50_UPI000376B5E0 hypothetical protein 0.0839531920828 0.500000000001 0.416046807917 +UniRef50_X0NIS7 1.94024200917 0.500000000002 -1.44024200917 +UniRef50_P0AEQ0 Glycolate oxidase subunit GlcD 1.95933150246 0.5 -1.45933150246 +UniRef50_Q4ZLN0 0.225268278223 0.5 0.274731721777 +UniRef50_UPI0003C1B110 0.0686864909646 0.5 0.431313509036 +UniRef50_Q6A8L2 Imidazole glycerol phosphate synthase subunit HisH 0.0739501182631 0.5 0.426049881737 +UniRef50_Q1Q8B0 UvrABC system protein C 0.00525274055078 0.5 0.494747259449 +UniRef50_UPI00036C8E2B hypothetical protein 1.10388545884 0.5 -0.603885458838 +UniRef50_UPI0003C12083 PREDICTED 1.73711615354 0.500000000002 -1.23711615355 +UniRef50_J9YQK1 Cobyric acid synthase 1.45836515171 0.5 -0.958365151711 +UniRef50_A8AVW5 Competence protein ComFC 4.21261388383 0.5 -3.71261388383 +UniRef50_D4J129 0.310849173907 0.5 0.189150826093 +UniRef50_A5VGR7 Type F conjugative transfer system protein TraW 1.29596217756 0.5 -0.795962177556 +UniRef50_F5ZGN4 Membrane protein 0.256395119543 0.5 0.243604880457 +UniRef50_J0VQZ8 0.386316697156 0.5 0.113683302844 +UniRef50_UPI00036E2511 hypothetical protein 0.53415973387 0.5 -0.0341597338698 +UniRef50_UPI000372ECF2 hypothetical protein 0.558780006149 0.5 -0.0587800061492 +UniRef50_UPI00036BAEE5 hypothetical protein, partial 0.0808277085247 0.5 0.419172291475 +UniRef50_B9DKX8 Glutamine amidotransferase subunit PdxT 2.90569588897 0.499999999998 -2.40569588897 +UniRef50_J9YPK5 SorC family transcriptional regulator 0.0128905432408 0.5 0.487109456759 +UniRef50_R6U1L8 Glycosyltransferases involved in cell wall biogenesis 0.537244638515 0.5 -0.0372446385147 +UniRef50_U4VDJ5 Threonine dehydratase 0.32953863066 0.5 0.17046136934 +UniRef50_UPI0003BB97B6 PREDICTED 1.29052629127 0.5 -0.790526291274 +UniRef50_UPI00038069E1 hypothetical protein 0.0794139897665 0.499999999999 0.420586010234 +UniRef50_V4I3L2 DNA polymerase II large subunit 0.252385655504 0.5 0.247614344496 +UniRef50_D1AIE5 Selenate reductase YgfK 0.0909428928421 0.5 0.409057107157 +UniRef50_D3EVZ5 Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated 3.79737162476 0.5 -3.29737162476 +UniRef50_UPI000361B549 hypothetical protein 19.3489007271 0.499999999995 -18.8489007271 +UniRef50_G4B724 Transporting ATPase 1.16288132017 0.5 -0.662881320175 +UniRef50_K9ZWQ1 0.00824131700119 0.499999999999 0.491758682999 +UniRef50_UPI0002000114 hypothetical protein 7.02655065467 0.5 -6.52655065467 +UniRef50_Q3JRN2 0.208988197668 0.5 0.291011802332 +UniRef50_K9ZWQ8 0.00392533777854 0.5 0.496074662222 +UniRef50_P94462 Peptide deformylase 1 0.0503272348155 0.5 0.449672765185 +UniRef50_Q164M5 5,10 methylenetetrahydrofolate reductase, putative 2.82688178938 0.5 -2.32688178938 +UniRef50_UPI00037A0B76 hypothetical protein, partial 1.24023265316 0.5 -0.740232653159 +UniRef50_Q57981 Adenylosuccinate synthetase 2.10900909516 0.5 -1.60900909516 +UniRef50_UPI00041516F3 chemotaxis protein CheW 1.25323968252 0.5 -0.753239682519 +UniRef50_Q0AUL1 Energy coupling factor transporter ATP binding protein EcfA 0.182544151933 0.5 0.317455848067 +UniRef50_Q46841 Inner membrane protein YghQ 4.25244199284 0.499999999997 -3.75244199284 +UniRef50_K8DRW2 Phosphoribosylformylglycinamidine synthase,synthetase subunit Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit 1.94631587528 0.5 -1.44631587528 +UniRef50_V4JYH9 0.292967993846 0.5 0.207032006154 +UniRef50_UPI000395D985 PREDICTED 0.0829339328575 0.5 0.417066067143 +UniRef50_UPI0004445EDA PREDICTED 0.406432695909 0.5 0.0935673040907 +UniRef50_A6LU01 0.647600629571 0.5 -0.147600629571 +UniRef50_C5N580 2.80196210819 0.5 -2.30196210819 +UniRef50_M9S177 Oxidoreductase 0.304097712269 0.5 0.195902287731 +UniRef50_A4WZ24 0.188810793341 0.5 0.311189206659 +UniRef50_D0K9R4 13.3883423432 0.500000000017 -12.8883423432 +UniRef50_Q9ZHF6 DNA polymerase III PolC type 1.07634958364 0.5 -0.576349583639 +UniRef50_P39386 Multidrug resistance protein MdtM 0.652406277537 0.5 -0.152406277537 +UniRef50_I0C5I2 EcsB 2.87480131781 0.5 -2.37480131781 +UniRef50_S5CTA0 AraC type DNA binding domain containing protein 0.049423395792 0.5 0.450576604208 +UniRef50_UPI0003B4EBEF adenosylcobinamide kinase 0.228313910324 0.5 0.271686089676 +UniRef50_UPI0003F6C3B5 family 2 glycosyl transferase 2.13618813579 0.5 -1.63618813579 +UniRef50_R7E4L4 Hydrolase NUDIX family 1.26622275724 0.5 -0.766222757239 +UniRef50_B2S710 Oxygen dependent coproporphyrinogen III oxidase 0.824114277731 0.5 -0.324114277731 +UniRef50_UPI0003178DCE hypothetical protein 0.56519412542 0.5 -0.0651941254201 +UniRef50_P24207 Phenylalanine specific permease 0.205605255998 0.5 0.294394744002 +UniRef50_Q3J2Z9 1.0570944934 0.5 -0.557094493397 +UniRef50_T1CKZ6 Snf2 family protein 0.0107295119882 0.5 0.489270488012 +UniRef50_Q093G7 0.834676266922 0.5 -0.334676266922 +UniRef50_UPI0004719E67 hypothetical protein 0.294295690628 0.5 0.205704309372 +UniRef50_UPI000379C92D hypothetical protein 0.528170691067 0.5 -0.0281706910666 +UniRef50_D0D8I9 5.9368691007 0.499999999999 -5.4368691007 +UniRef50_D5V7X1 0.020756105079 0.500000000001 0.47924389492 +UniRef50_A0A017HKQ1 Mobile element protein 1.05114094696 0.5 -0.551140946956 +UniRef50_UPI00037AC60C hypothetical protein 1.87306092862 0.5 -1.37306092862 +UniRef50_Q080R9 Beta hexosaminidase 0.300881810325 0.5 0.199118189675 +UniRef50_I1F0Y4 2.40717672361 0.5 -1.90717672361 +UniRef50_X1GXU9 Marine sediment metagenome DNA, contig 0.458088992959 0.5 0.0419110070406 +UniRef50_O27502 Hydroxylamine reductase 7.30281992534 0.499999999998 -6.80281992533 +UniRef50_A0KQA4 DNA directed RNA polymerase subunit beta 0.869840760044 0.5 -0.369840760044 +UniRef50_K2SHY0 5.14158397215 0.499999999999 -4.64158397215 +UniRef50_Q46DD8 Acetyltransferase 0.967156655118 0.5 -0.467156655118 +UniRef50_A5VPU4 Transcriptional regulator, MarR family 9.94617980603 0.500000000007 -9.44617980603 +UniRef50_P07661 Citrate proton symporter 0.0119889323687 0.5 0.488011067631 +UniRef50_UPI00046F7539 hypothetical protein 0.584925540014 0.5 -0.0849255400138 +UniRef50_Q7UXF5 Glucose 1 phosphate adenylyltransferase 0.601692549804 0.5 -0.101692549804 +UniRef50_UPI000476E759 hypothetical protein 0.166484216617 0.5 0.333515783383 +UniRef50_UPI000478E93F hypothetical protein, partial 0.418298538277 0.5 0.0817014617231 +UniRef50_P77884 Dihydroorotase 0.319323555998 0.5 0.180676444002 +UniRef50_UPI0001850CBB hydrolase 13.5366439672 0.499999999991 -13.0366439672 +UniRef50_Y5FPX8 0.41829348052 0.5 0.0817065194801 +UniRef50_UPI0003F0DCE2 PREDICTED 0.111964155662 0.5 0.388035844338 +UniRef50_G8AE70 1.09556444377 0.5 -0.595564443768 +UniRef50_R0VSS0 Tetrapyrrole Methylases family protein (Fragment) 0.368154171288 0.5 0.131845828712 +UniRef50_Q9JLZ1-2 Isoform 2 of Glutaredoxin 3 0.652861684777 0.5 -0.152861684777 +UniRef50_UPI000365E816 hypothetical protein 0.184858031661 0.5 0.315141968339 +UniRef50_Q21NT4 2.44488671051 0.5 -1.94488671051 +UniRef50_UPI0003298B2A PREDICTED 0.380396759792 0.5 0.119603240208 +UniRef50_Q5HNZ4 Ferric uptake regulation protein 3.31691635446 0.500000000002 -2.81691635446 +UniRef50_UPI00037B54FA hypothetical protein 0.302948564309 0.5 0.197051435691 +UniRef50_U5MNS8 Permease 0.323768665133 0.5 0.176231334867 +UniRef50_A5VZX6 1.17755710514 0.5 -0.677557105145 +UniRef50_B2KCI5 Tryptophan synthase beta chain 2.87401220392 0.5 -2.37401220392 +UniRef50_D8JK92 LysR family transcriptional regulator 0.00897379509752 0.5 0.491026204903 +UniRef50_UPI00036EAD03 hypothetical protein 0.319388379537 0.5 0.180611620463 +UniRef50_J3JJ09 1.57999297457 0.5 -1.07999297457 +UniRef50_UPI00036EDC4E hypothetical protein 0.328761623283 0.5 0.171238376717 +UniRef50_D9VUJ1 Rim protein 0.00814563296041 0.5 0.49185436704 +UniRef50_A3PH50 2.30234947542 0.5 -1.80234947542 +UniRef50_Q3IV16 4.93970595366 0.500000000004 -4.43970595367 +UniRef50_A5UMF4 Replication factor C large subunit 1.81543973133 0.500000000002 -1.31543973133 +UniRef50_Q3IV10 0.998490917861 0.5 -0.498490917861 +UniRef50_UPI000372C9B6 MULTISPECIES 6.87353525954 0.499999999998 -6.37353525954 +UniRef50_UPI00038172EF hypothetical protein, partial 0.291813754172 0.5 0.208186245828 +UniRef50_UPI00046F18A1 oxidoreductase 0.143504883323 0.5 0.356495116677 +UniRef50_Q2NEJ8 Predicted Fe S oxidoreductase 3.31818619529 0.499999999998 -2.81818619529 +UniRef50_A6LSG6 Penicillin binding protein, transpeptidase 0.0910048789543 0.5 0.408995121046 +UniRef50_UPI0004790007 hypothetical protein 2.44833530798 0.500000000002 -1.94833530799 +UniRef50_UPI000365533E hypothetical protein 0.0135315792151 0.5 0.486468420785 +UniRef50_M8PZ54 PTS system, glucose like IIB component domain protein 3.49293372553 0.500000000002 -2.99293372553 +UniRef50_UPI0003775AE8 hypothetical protein 2.87694571674 0.5 -2.37694571674 +UniRef50_UPI000477A38C molybdopterin biosynthesis protein MoeB 0.315865861274 0.5 0.184134138726 +UniRef50_Q8ZNT5 Cellulose synthesis regulatory protein 2.41980728651 0.499999999997 -1.9198072865 +UniRef50_O27097 2 phospho L lactate transferase 0.73200993322 0.5 -0.23200993322 +UniRef50_A6LR83 Drug resistance transporter, EmrB QacA subfamily 0.0467396663454 0.5 0.453260333655 +UniRef50_UPI00036A9345 hypothetical protein 1.4268874534 0.5 -0.926887453404 +UniRef50_Q8FE40 0.0331075757586 0.5 0.466892424242 +UniRef50_K9VLK6 4.3167323198 0.499999999998 -3.8167323198 +UniRef50_G8UZK4 Replication protein Rep 2.74535725837 0.499999999999 -2.24535725837 +UniRef50_UPI00047CA240 hypothetical protein 0.0202076703803 0.5 0.47979232962 +UniRef50_Q5LY98 Probable dual specificity RNA methyltransferase RlmN 0.579337049553 0.5 -0.0793370495526 +UniRef50_X2N374 2.16773002937 0.499999999998 -1.66773002937 +UniRef50_G8PS78 0.297629595903 0.5 0.202370404097 +UniRef50_F0QDW1 Adenylate guanylate cyclase 0.00962860200859 0.5 0.490371397991 +UniRef50_UPI0003C1B148 PREDICTED 0.60529719819 0.5 -0.10529719819 +UniRef50_P77802 Probable outer membrane usher protein EcpC 0.285516576725 0.5 0.214483423275 +UniRef50_Q1J1F1 Diguanylate cyclase 0.00167005507792 0.5 0.498329944922 +UniRef50_E6N053 O succinylhomoserine sulfhydrylase 0.0480408939115 0.5 0.451959106088 +UniRef50_M9VKY5 Mannose 6 phosphate isomerase 0.0241083011332 0.5 0.475891698867 +UniRef50_U5NZ17 0.82275042088 0.5 -0.32275042088 +UniRef50_P46723 Delta aminolevulinic acid dehydratase 0.436716651163 0.5 0.0632833488368 +UniRef50_Z5R973 0.298850290565 0.5 0.201149709435 +UniRef50_D3E4F5 Archaea specific RecJ like exonuclease 9.20993847978 0.499999999997 -8.70993847978 +UniRef50_Q03CK3 Pyrrolidone carboxylate peptidase 0.170215765354 0.5 0.329784234646 +UniRef50_B7A2D4 Beta glucuronidase UidA 1.85192033593 0.500000000002 -1.35192033593 +UniRef50_Q88UE0 Imidazoleglycerol phosphate dehydratase 0.022830962252 0.5 0.477169037748 +UniRef50_UPI00047854CC hypothetical protein 0.210515917508 0.5 0.289484082492 +UniRef50_X5E185 1.14097704223 0.5 -0.640977042234 +UniRef50_UPI00036C176D hypothetical protein 0.0592160859062 0.500000000001 0.440783914093 +UniRef50_A1V6Q7 0.484795012571 0.5 0.015204987429 +UniRef50_P80651 Tetrahydromethanopterin S methyltransferase subunit E 0.809603342848 0.5 -0.309603342848 +UniRef50_Q83QI5 GTPase Era 0.852931600893 0.5 -0.352931600893 +UniRef50_A5UNW2 1.0440149075 0.5 -0.544014907497 +UniRef50_A5UNW3 3.72757394281 0.499999999998 -3.22757394281 +UniRef50_A5UNW4 2.44504212099 0.499999999999 -1.94504212099 +UniRef50_A5UNW5 1.70142142155 0.5 -1.20142142155 +UniRef50_A1WS37 NAD transhydrogenase, subunit alpha part 2 0.493130968883 0.5 0.00686903111723 +UniRef50_Q10216 0.338524715881 0.5 0.161475284119 +UniRef50_F2ZBV1 60 kDa chaperonin 0.141879526942 0.5 0.358120473058 +UniRef50_D6D7L5 Phage tail tape measure protein, TP901 family, core region 0.000764405193309 0.5 0.499235594807 +UniRef50_E4PGW6 L carnitine dehydratase bile acid inducible protein F 0.0103800453114 0.5 0.489619954689 +UniRef50_P76319 4.73763982366 0.5 -4.23763982366 +UniRef50_W8T2N2 Mannitol 1 phosphate 5 dehydrogenase 3.30339185032 0.5 -2.80339185032 +UniRef50_UPI000225A95D UDP N acetylglucosamine pyrophosphorylase 0.16823507284 0.5 0.33176492716 +UniRef50_UPI00037DA29D hypothetical protein 0.328751447837 0.5 0.171248552163 +UniRef50_P94909 0.937021741658 0.5 -0.437021741658 +UniRef50_D7GCK3 Mannose 1 phosphate guanylyltransferase 0.0260818971976 0.5 0.473918102802 +UniRef50_R7VTK3 Neurofilament heavy polypeptide 0.686302103296 0.5 -0.186302103296 +UniRef50_Q9XGI9 N carbamoylputrescine amidase 0.196895584177 0.5 0.303104415823 +UniRef50_U5T4K4 3.28694634908 0.499999999999 -2.78694634908 +UniRef50_Q9RW76 0.00904417913931 0.5 0.490955820861 +UniRef50_I6SVC2 0.704958074155 0.5 -0.204958074155 +UniRef50_UPI00040EFCE1 hypothetical protein 0.58921382953 0.5 -0.0892138295298 +UniRef50_D2N9E8 MAP domain protein 2.55283004541 0.5 -2.05283004541 +UniRef50_UPI0003C75CB7 hypothetical protein 0.633894542956 0.5 -0.133894542956 +UniRef50_B9NSA4 0.943873922352 0.5 -0.443873922352 +UniRef50_UPI000413A679 hypothetical protein 1.24033597533 0.5 -0.740335975329 +UniRef50_E7B190 Methyl viologen resistance protein smvA 0.0181519061056 0.5 0.481848093894 +UniRef50_UPI000361644F hypothetical protein 0.598248844737 0.5 -0.0982488447373 +UniRef50_G4T2X8 0.773606652973 0.5 -0.273606652973 +UniRef50_F9YYN2 0.270556327014 0.5 0.229443672986 +UniRef50_Q0AZJ3 Chorismate synthase 0.0745337954266 0.5 0.425466204573 +UniRef50_S5CTY8 0.00784237845503 0.5 0.492157621545 +UniRef50_P08660 Lysine sensitive aspartokinase 3 1.73206384739 0.5 -1.23206384739 +UniRef50_A6U596 Ribonuclease P protein component 7.55780998164 0.499999999999 -7.05780998164 +UniRef50_P45213 Peptide methionine sulfoxide reductase MsrA MsrB 2.77438513395 0.500000000002 -2.27438513396 +UniRef50_S3G9A5 1.45991738022 0.5 -0.959917380221 +UniRef50_W4KUQ3 Cytochrome C biogenesis protein CcmI 0.0306028114553 0.5 0.469397188545 +UniRef50_UPI0003A1B331 MFS transporter 8.11622231445 0.499999999999 -7.61622231445 +UniRef50_F3STZ2 Valine tRNA ligase 1.60165747206 0.5 -1.10165747206 +UniRef50_Q8CNH3 Repressor protein 2.92929237212 0.499999999998 -2.42929237212 +UniRef50_UPI0003B68F93 ABC transporter ATPase 0.0122883424859 0.5 0.487711657514 +UniRef50_A4U2D7 0.805577041587 0.5 -0.305577041587 +UniRef50_UPI0003DEC987 PREDICTED 0.190360533282 0.5 0.309639466718 +UniRef50_D3DZ44 Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase 1.83619485195 0.500000000001 -1.33619485195 +UniRef50_H8GUK3 Peptidase M20D, amidohydrolase 0.00252521726851 0.5 0.497474782731 +UniRef50_J3N2U1 13.0121428946 0.499999999972 -12.5121428946 +UniRef50_UPI0003B7917E DNA binding protein 0.00527135183475 0.5 0.494728648165 +UniRef50_A0Z0Z6 0.31407832108 0.5 0.18592167892 +UniRef50_UPI0003B5A232 ribosomal protein L36 0.0551475172222 0.5 0.444852482778 +UniRef50_Q7VKM9 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 2.18998424144 0.5 -1.68998424144 +UniRef50_UPI00036E6417 hypothetical protein 0.0442317710381 0.500000000001 0.455768228961 +UniRef50_UPI0003292B2A PREDICTED 0.126827924698 0.5 0.373172075302 +UniRef50_M1N3H4 Exopolysaccharide biosynthesis protein 0.13259331246 0.5 0.36740668754 +UniRef50_F0JXQ7 0.118124959994 0.5 0.381875040006 +UniRef50_UPI0002EF3F38 hypothetical protein 3.93962293001 0.499999999999 -3.43962293001 +UniRef50_Q8Z2V9 Superoxide dismutase [Mn] 0.377960264914 0.5 0.122039735086 +UniRef50_Q9RYV9 0.0189653781388 0.5 0.481034621861 +UniRef50_J3F9J8 Nicotinamide mononucleotide transporter 2.07781399834 0.5 -1.57781399834 +UniRef50_B5Y0Y6 Queuine tRNA ribosyltransferase 0.675903744008 0.5 -0.175903744008 +UniRef50_K7S0T6 5 Nucleotidase domain containing protein 0.057665441328 0.5 0.442334558672 +UniRef50_G7ZMN3 Iron transporting membrane protein, putative 5.62263884857 0.500000000001 -5.12263884858 +UniRef50_A0A031JAP0 Plasmid stabilization system 2.45424144276 0.500000000001 -1.95424144276 +UniRef50_Q0VT82 Monooxygenase, putative 0.00515392856938 0.5 0.49484607143 +UniRef50_G7U5S7 HAD hydrolase, family IIA 0.0369674962573 0.5 0.463032503743 +UniRef50_Q5HLV3 Transcriptional regulator, AraC family 2.22606661782 0.5 -1.72606661782 +UniRef50_F1UC42 0.120884045187 0.5 0.379115954813 +UniRef50_H7CSE8 GntR family transcriptional regulator 0.172145926811 0.5 0.327854073189 +UniRef50_UPI000479951F PTS glucose transporter subunit IIA 0.158477422037 0.5 0.341522577963 +UniRef50_C7ZSD0 GtrA family protein 5.69534957223 0.499999999989 -5.19534957222 +UniRef50_A3JMR3 2.48834318573 0.5 -1.98834318573 +UniRef50_UPI00046681A8 hypothetical protein 0.804309868444 0.5 -0.304309868444 +UniRef50_A6M2M1 0.0635490226889 0.5 0.436450977311 +UniRef50_UPI0004417C25 hypothetical protein PUNSTDRAFT_59595 0.147037219278 0.5 0.352962780722 +UniRef50_A6LPG6 Hydrolase, TatD family 0.505840227025 0.5 -0.00584022702501 +UniRef50_UPI0003FC161E hypothetical protein 0.723601848185 0.5 -0.223601848185 +UniRef50_G7M238 Transcriptional regulator, TetR family 0.65899670708 0.5 -0.15899670708 +UniRef50_Q8ZAX7 tRNA dihydrouridine synthase B 0.139996611039 0.5 0.360003388961 +UniRef50_Q47SC0 Aspartyl glutamyl tRNA amidotransferase subunit B 0.0125254891509 0.5 0.487474510849 +UniRef50_L8E1V7 Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG 1.46993455268 0.5 -0.969934552681 +UniRef50_UPI0003727421 hypothetical protein 0.241967644043 0.5 0.258032355957 +UniRef50_UPI0002D60E46 hypothetical protein 1.95098473171 0.5 -1.45098473171 +UniRef50_Q3HKG9 3.24690617393 0.499999999998 -2.74690617392 +UniRef50_W0LIC7 Branched chain amino acid transport 0.479354900516 0.5 0.0206450994841 +UniRef50_UPI0004702F9D hypothetical protein, partial 2.03532231876 0.500000000001 -1.53532231876 +UniRef50_UPI000473FCD3 hypothetical protein, partial 0.0603073562258 0.5 0.439692643774 +UniRef50_C4K578 UPF0145 protein HDEF_1024 0.105984900655 0.5 0.394015099345 +UniRef50_UPI0003621977 hypothetical protein 0.0325268221363 0.5 0.467473177864 +UniRef50_Q2NE86 Bifunctional enzyme Fae Hps 3.58248270527 0.500000000002 -3.08248270527 +UniRef50_Q6A9R8 Glycine dehydrogenase 0.0257771780485 0.5 0.474222821951 +UniRef50_A8A338 1.05699983136 0.5 -0.556999831364 +UniRef50_P45763 Putative type II secretion system protein L 2.09197761012 0.5 -1.59197761012 +UniRef50_M9VKX5 0.0412981749689 0.5 0.458701825031 +UniRef50_Q8A624 ATP dependent 6 phosphofructokinase 2 0.359563250673 0.5 0.140436749327 +UniRef50_V6PAD8 Putative peptidase, aminobenzoyl glutamate utilization protein 4.36754261851 0.500000000004 -3.86754261851 +UniRef50_UPI000471F071 cobinamide kinase 0.0361916973857 0.500000000001 0.463808302613 +UniRef50_C4ZVV8 HTH type transcriptional regulator MurR 1.35542778544 0.5 -0.855427785444 +UniRef50_K0SVQ3 0.184022610156 0.5 0.315977389844 +UniRef50_I0TP75 2.09281007707 0.5 -1.59281007707 +UniRef50_F8FB46 Iron ABC transporter permease 0.101861410864 0.5 0.398138589137 +UniRef50_Q8ZPN4 0.800467653077 0.5 -0.300467653077 +UniRef50_V5BVX1 2.48731131028 0.5 -1.98731131028 +UniRef50_G5ML36 Permease protein HisM 0.380353073876 0.5 0.119646926124 +UniRef50_UPI0003712D9F cold shock protein 0.63336014677 0.5 -0.13336014677 +UniRef50_P52614 Flagellar hook length control protein 3.50933310089 0.499999999999 -3.00933310089 +UniRef50_W9CKC5 0.5929503777 0.5 -0.0929503776998 +UniRef50_V8HF01 Transposase IS5 2.09207073188 0.5 -1.59207073188 +UniRef50_A4WVU4 Surface antigen 2.42566267613 0.499999999997 -1.92566267613 +UniRef50_I6TXF6 0.670938306884 0.5 -0.170938306884 +UniRef50_D4HD50 0.564319204995 0.5 -0.0643192049949 +UniRef50_UPI00046FE274 hypothetical protein 1.14537994273 0.5 -0.645379942727 +UniRef50_D4HD52 0.0117961682953 0.5 0.488203831705 +UniRef50_G4Q6N7 Inner membrane translocator 0.611349116122 0.5 -0.111349116122 +UniRef50_UPI00046D7550 hypothetical protein 0.452663060383 0.5 0.0473369396172 +UniRef50_S4YYU3 GntR family transcriptional regulator 0.0230253523638 0.5 0.476974647636 +UniRef50_P50045 Urease subunit beta 0.128798087349 0.5 0.371201912651 +UniRef50_L0WLU4 Apolipoprotein N acyltransferase 0.0105411465324 0.5 0.489458853468 +UniRef50_UPI0004659182 phosphoadenosine phosphosulfate reductase 0.33722313413 0.5 0.16277686587 +UniRef50_UPI000225A9BC bacteriophage replication gene A protein 0.442342058843 0.5 0.0576579411569 +UniRef50_E4PPI0 UPF0125 protein HP15_3087 0.246496721714 0.5 0.253503278286 +UniRef50_B7V3C6 1.6099838121 0.5 -1.1099838121 +UniRef50_UPI00047C25CC cytochrome D ubiquinol oxidase subunit II 0.355961214527 0.5 0.144038785473 +UniRef50_A6LSC2 3 oxoacyl [acyl carrier protein] synthase 3 1.43941977881 0.5 -0.939419778807 +UniRef50_UPI0004771F9A hypothetical protein 0.187128523789 0.5 0.312871476211 +UniRef50_A6LR66 Signal transduction histidine kinase regulating citrate malate metabolism 0.118560773876 0.5 0.381439226124 +UniRef50_A4XYX3 Lipoyl synthase 3.49822237741e-05 0.5 0.499965017776 +UniRef50_UPI000386F412 PREDICTED 0.319560307809 0.5 0.180439692191 +UniRef50_A0A058YZC5 0.0688163909242 0.5 0.431183609076 +UniRef50_UPI0004548432 PREDICTED 0.0916889262878 0.5 0.408311073712 +UniRef50_R8A9F1 0.8447655382 0.5 -0.3447655382 +UniRef50_F6II99 YVTN beta propeller repeat containing protein 5.47486300441 0.499999999998 -4.97486300441 +UniRef50_P0AFH0 Methylated DNA protein cysteine methyltransferase 5.41856003381 0.500000000003 -4.91856003381 +UniRef50_UPI000370022D hypothetical protein 1.3095855736 0.5 -0.809585573598 +UniRef50_P24205 Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase 1.7079478191 0.500000000001 -1.2079478191 +UniRef50_UPI000379C912 hypothetical protein 2.38762894513 0.499999999999 -1.88762894513 +UniRef50_UPI00035D44F9 hypothetical protein 0.0882330968887 0.499999999999 0.411766903112 +UniRef50_UPI0003B7A57E prolipoprotein diacylglyceryl transferase 6.85046718331 0.500000000012 -6.35046718332 +UniRef50_Q8CP86 Putative branched chain amino acid carrier protein SE_1090 1.62053086668 0.500000000002 -1.12053086668 +UniRef50_G8AFT7 36.3595348702 0.50000000007 -35.8595348703 +UniRef50_UPI00046E7A1E TonB dependent receptor 0.59600014728 0.5 -0.0960001472798 +UniRef50_U2RQ03 0.0645521353228 0.5 0.435447864677 +UniRef50_F5M4B6 0.213427638034 0.5 0.286572361966 +UniRef50_Q9I7A3 1.99542214639 0.5 -1.49542214639 +UniRef50_V5SRZ3 Aminoglycoside phosphotransferase 1.22198172888 0.5 -0.721981728879 +UniRef50_Q0T1Y1 3 phenylpropionate cinnamic acid dioxygenase subunit alpha 0.7926011825 0.5 -0.2926011825 +UniRef50_Q0TMN9 DNA directed RNA polymerase subunit beta 0.438519055613 0.5 0.0614809443873 +UniRef50_C5F4X4 Spermidine putrescine ABC transporter permease 1.08552962046 0.499999999999 -0.585529620461 +UniRef50_A6LQT7 Ribulose phosphate 3 epimerase 0.244208931329 0.5 0.255791068671 +UniRef50_Q7UKV0 Peptidyl tRNA hydrolase 0.305614630406 0.5 0.194385369594 +UniRef50_UPI000477C8DB alcohol dehydrogenase 0.337105995892 0.5 0.162894004108 +UniRef50_A2FBD4 Alanine dehydrogenase 2, putative 0.542327843968 0.5 -0.042327843968 +UniRef50_D5ALB3 3.1047893581 0.500000000001 -2.6047893581 +UniRef50_A4WQF1 Homocysteine S methyltransferase 0.859517910375 0.5 -0.359517910375 +UniRef50_Q9KL04 Maltose maltodextrin import ATP binding protein MalK 1.69463914865 0.5 -1.19463914865 +UniRef50_A9WP05 Dihydroxy acid dehydratase 0.52609615575 0.5 -0.0260961557498 +UniRef50_UPI0002FFECEA hypothetical protein 0.500508038362 0.5 -0.000508038361832 +UniRef50_Q3J7W9 0.130532258774 0.5 0.369467741226 +UniRef50_UPI0002192F2F putative nitrate transport ATP binding protein, partial 0.346729059256 0.5 0.153270940744 +UniRef50_UPI0002E83586 hypothetical protein 0.586995824534 0.5 -0.0869958245338 +UniRef50_UPI000367925C hypothetical protein 2.30519763878 0.5 -1.80519763878 +UniRef50_A8ZXR7 Phosphopantetheine adenylyltransferase 1.06855578935 0.5 -0.568555789354 +UniRef50_UPI00029A061A adenylosuccinate lyase 0.485845954754 0.5 0.0141540452461 +UniRef50_UPI000363D694 hypothetical protein 1.18417247123 0.5 -0.684172471227 +UniRef50_Q3HKJ2 1.24209232908 0.5 -0.742092329084 +UniRef50_UPI00036EA5DF hypothetical protein 7.14501984689 0.499999999998 -6.64501984689 +UniRef50_U6ZV82 0.586284824054 0.5 -0.0862848240543 +UniRef50_Q9HZJ5 DNA topoisomerase 1 0.364962856377 0.5 0.135037143623 +UniRef50_E8TEM3 2 oxo hepta 3 ene 1,7 dioic acid hydratase 0.368230133304 0.5 0.131769866696 +UniRef50_I0TLB8 Cupin domain protein 0.413767914237 0.5 0.0862320857632 +UniRef50_B2IPX4 ATP dependent helicase deoxyribonuclease subunit B 0.00156457187978 0.5 0.49843542812 +UniRef50_Q9RW95 General secretion pathway protein D, putative 0.0014531128602 0.5 0.49854688714 +UniRef50_A6LZ07 Abortive infection protein 0.0881440751665 0.5 0.411855924834 +UniRef50_W8RWR3 Isopropylmalate homocitrate citramalate synthase 1.16156333706 0.5 -0.661563337062 +UniRef50_E8P8P5 0.00832706332687 0.5 0.491672936673 +UniRef50_E8SK14 Teichoic acid export ATP binding protein TagH 1.67745433829 0.5 -1.17745433829 +UniRef50_E8P8P8 0.00561498769843 0.5 0.494385012301 +UniRef50_B9DKZ2 Protein containing tetrapyrrole methyltransferase domain and MazG like domain 1.74699721133 0.499999999999 -1.24699721133 +UniRef50_F5XQT8 LytR family regulatory protein 0.132251131633 0.5 0.367748868367 +UniRef50_UPI00047372AD hypothetical protein, partial 2.67038180764 0.5 -2.17038180764 +UniRef50_A4VGB2 0.00738586810315 0.5 0.492614131897 +UniRef50_Q7N1I3 Antitoxin HicB 1 4.95218927725 0.499999999999 -4.45218927724 +UniRef50_Q9X7L2 2 isopropylmalate synthase 0.0727915259591 0.5 0.427208474041 +UniRef50_D4BTI9 Cardiolipin synthetase 1.05145589721 0.5 -0.551455897212 +UniRef50_W9FRU9 0.0281054262398 0.5 0.47189457376 +UniRef50_K0SKL9 0.0207124843189 0.5 0.479287515681 +UniRef50_A3MKU1 Uridylate kinase 0.590909652395 0.5 -0.0909096523951 +UniRef50_Q6G726 0.141880116567 0.5 0.358119883433 +UniRef50_Q7V4J6 Acyl carrier protein 0.102244350491 0.5 0.397755649509 +UniRef50_UPI000346B698 hypothetical protein 1.59740035312 0.5 -1.09740035312 +UniRef50_UPI00036E5C3C hypothetical protein 0.061394023491 0.5 0.438605976509 +UniRef50_M7Y540 Dipeptide transporter permease DppB 0.64682839938 0.5 -0.14682839938 +UniRef50_F0RJ20 0.0488302545685 0.5 0.451169745431 +UniRef50_Q4K4P3 Permease, cytosine purine, uracil, thiamine, allantoin family 0.697234516711 0.5 -0.197234516711 +UniRef50_O31611 GTP pyrophosphokinase YjbM 0.640751682534 0.5 -0.140751682534 +UniRef50_A6W7I0 0.117465343394 0.5 0.382534656606 +UniRef50_G9A888 Multidrug resistance protein, AcrB family 9.51652872929 0.499999999997 -9.01652872928 +UniRef50_W0X4S5 0.109419466345 0.5 0.390580533655 +UniRef50_Q3IXT7 ABC peptide opine transporter, ATPase subunit 0.459780045097 0.5 0.0402199549025 +UniRef50_UPI00036250D8 hypothetical protein 9.4240110673 0.500000000003 -8.92401106731 +UniRef50_UPI000169B03B FKBP type peptidyl prolyl cis trans isomerase 2.28208386345 0.5 -1.78208386345 +UniRef50_UPI0000E11708 beta hexosaminidase 0.239707058295 0.5 0.260292941705 +UniRef50_A5UK53 Alcohol dehydrogenase , GroES like protein 1.51540011128 0.5 -1.01540011128 +UniRef50_P65239 Ribose phosphate pyrophosphokinase 1 0.000707901552474 0.499999999999 0.499292098448 +UniRef50_UPI0002F7DE76 hypothetical protein 0.0264500794315 0.5 0.473549920569 +UniRef50_A5IUX4 Choline carnitine betaine transporter 2.24307980033 0.5 -1.74307980033 +UniRef50_A4XP60 Acetylornithine deacetylase 0.501364183613 0.5 -0.00136418361264 +UniRef50_I0ELI9 DnaA initiator associating factor for replication initiation HobA 0.160673843898 0.5 0.339326156101 +UniRef50_B9MQ98 Phospho N acetylmuramoyl pentapeptide transferase 0.0968337329201 0.5 0.40316626708 +UniRef50_U3AIN5 0.375867090437 0.5 0.124132909563 +UniRef50_C5MYS8 Acyl coenzyme A 2.19115680835 0.500000000002 -1.69115680835 +UniRef50_A3V0X0 Membrane protein, putative 0.900338135555 0.5 -0.400338135555 +UniRef50_A6LUJ9 DegV family protein 1.06670533069 0.5 -0.566705330692 +UniRef50_Q1RIM1 DNA topoisomerase 1 1.56455879064 0.5 -1.06455879064 +UniRef50_F0VRX4 Autolysin 1.70915744053 0.5 -1.20915744053 +UniRef50_Q9FKK7 Xylose isomerase 0.0163897358074 0.5 0.483610264193 +UniRef50_UPI000468EE55 ATP dependent DNA helicase PcrA 2.23251764021 0.5 -1.73251764021 +UniRef50_P37617 Lead, cadmium, zinc and mercury transporting ATPase 1.88700332603 0.500000000001 -1.38700332603 +UniRef50_UPI0004669FC1 oxidoreductase 0.00863764553429 0.5 0.491362354466 +UniRef50_UPI000471FBF4 thioredoxin 0.416663870506 0.5 0.0833361294945 +UniRef50_UPI000467E3B3 transposase 0.265116842337 0.5 0.234883157663 +UniRef50_R9SIT6 1.48866822761 0.5 -0.98866822761 +UniRef50_UPI0004780904 cobinamide adenolsyltransferase 0.00157387873767 0.5 0.498426121262 +UniRef50_P30526 Anthranilate synthase component 1 0.9218246459 0.5 -0.4218246459 +UniRef50_Q2FFK2 Ferritin 8.46531548173 0.500000000004 -7.96531548173 +UniRef50_UPI00047870AD GTP pyrophosphokinase 1.16442579482 0.5 -0.664425794817 +UniRef50_Q99V46 Staphopain B 1.17616820876 0.5 -0.67616820876 +UniRef50_A5UMY4 Predicted RNA binding protein 0.369279201383 0.5 0.130720798617 +UniRef50_Q89UE3 Malate synthase G 2.5690592344 0.5 -2.0690592344 +UniRef50_Q9CEY4 Putrescine carbamoyltransferase 1.18340510106 0.5 -0.683405101062 +UniRef50_J9NSA1 0.809001966312 0.5 -0.309001966312 +UniRef50_UPI0003B73B69 glutaredoxin 0.0844861929885 0.5 0.415513807012 +UniRef50_F3SCH8 Thymocyte nuclear protein 1 0.706188003967 0.5 -0.206188003967 +UniRef50_A5MC69 0.00819429238186 0.5 0.491805707618 +UniRef50_M4AFD6 0.328862456217 0.5 0.171137543783 +UniRef50_UPI00034ACF0F hypothetical protein 0.0689464883193 0.500000000001 0.43105351168 +UniRef50_C8S1S6 Plasmid partitioning protein RepA 1.67887188802 0.500000000001 -1.17887188802 +UniRef50_A6LRW1 Phage portal protein 0.0572795458549 0.5 0.442720454145 +UniRef50_Q886P5 Bifunctional uridylyltransferase uridylyl removing enzyme 1.95639247437 0.5 -1.45639247437 +UniRef50_A1SWU5 Threonine tRNA ligase 0.476129026238 0.5 0.0238709737624 +UniRef50_R4PYA3 Ribonucleoside diphosphate reductase 0.431541329632 0.5 0.0684586703682 +UniRef50_O94634 Threonine dehydratase, mitochondrial 0.246466185542 0.5 0.253533814458 +UniRef50_Q4L5E4 Phenylalanine tRNA ligase beta subunit 1.36611920901 0.500000000001 -0.866119209009 +UniRef50_V6NXW6 0.230095770781 0.5 0.269904229219 +UniRef50_Q9RU25 Peptide ABC transporter, permease protein 0.002655931775 0.5 0.497344068225 +UniRef50_R4K2V5 Phosphatidate cytidylyltransferase 0.0779803045042 0.499999999999 0.422019695497 +UniRef50_UPI0002B41FFA PREDICTED 0.743786490837 0.5 -0.243786490837 +UniRef50_Q5H5P3 Integral membrane protein 6.63864794008e-05 0.5 0.499933613521 +UniRef50_UPI00046F521F ribonucleoside hydrolase, partial 0.0765752644345 0.5 0.423424735565 +UniRef50_UPI00036EE5B3 endonuclease 0.2680433817 0.5 0.2319566183 +UniRef50_UPI0003B7257B TetR family transcriptional regulator 0.503165423855 0.5 -0.00316542385477 +UniRef50_C4U4D5 0.45825663276 0.5 0.0417433672403 +UniRef50_A4X048 0.978491004359 0.5 -0.478491004359 +UniRef50_A7GMD4 2 oxoglutarate dehydrogenase E1 component 0.00637019716741 0.5 0.493629802833 +UniRef50_H8GVT2 Cytochrome P450 0.0010592124748 0.5 0.498940787525 +UniRef50_UPI00016C05CE glycogen starch alpha glucan phosphorylase 0.20598759346 0.5 0.29401240654 +UniRef50_UPI0003C13A7A PREDICTED 0.0574138882893 0.5 0.442586111711 +UniRef50_UPI00047D9051 hypothetical protein 1.46962858132 0.5 -0.96962858132 +UniRef50_UPI00046657E8 hypothetical protein 11.4664027911 0.500000000012 -10.9664027911 +UniRef50_S4MC93 0.572796886199 0.5 -0.0727968861993 +UniRef50_P52067 Fosmidomycin resistance protein 0.926470345471 0.5 -0.426470345471 +UniRef50_A0A059DRC5 1.31789288565 0.500000000001 -0.817892885647 +UniRef50_S5CP54 0.0119451828476 0.5 0.488054817152 +UniRef50_P12655 PTS system sucrose specific EIIBCA component 2.12523132081 0.5 -1.62523132081 +UniRef50_A3CNS7 0.513445370105 0.5 -0.0134453701049 +UniRef50_D3DZS9 ABC transporter ATP binding protein 1.51897147888 0.5 -1.01897147888 +UniRef50_Q00277 Glutathione peroxidase 2.08332526451 0.5 -1.58332526451 +UniRef50_UPI00046E9599 hypothetical protein 0.0957813921664 0.5 0.404218607834 +UniRef50_A6UGG8 0.0427929946633 0.5 0.457207005336 +UniRef50_UPI0003F4971B hypothetical protein TREMEDRAFT_28317 0.0775897057601 0.5 0.42241029424 +UniRef50_UPI00029A7679 histidine kinase 0.242677927127 0.5 0.257322072873 +UniRef50_Q5YRD1 Methionine import ATP binding protein MetN 1.40814645004 0.500000000001 -0.908146450037 +UniRef50_UPI0004561653 hypothetical protein PFL1_00418 0.426315223682 0.5 0.0736847763182 +UniRef50_C5MYZ4 2.70106818149 0.5 -2.20106818149 +UniRef50_A0A059IL85 0.609296143369 0.5 -0.109296143369 +UniRef50_P36674 HTH type transcriptional regulator TreR 0.418138770424 0.5 0.0818612295757 +UniRef50_UPI000360C55F hypothetical protein 0.086917272641 0.5 0.413082727359 +UniRef50_E2PIJ4 0.235984281794 0.5 0.264015718206 +UniRef50_Q99QS1 Protein map 4.05257697417 0.500000000001 -3.55257697418 +UniRef50_V6JB74 Thioesterase superfamily protein 0.0183256430436 0.5 0.481674356956 +UniRef50_UPI00030E967A hypothetical protein 0.233990797531 0.5 0.266009202469 +UniRef50_B5FD80 Type VI secretion protein, family 0.323827369217 0.5 0.176172630783 +UniRef50_Q67KF8 Phosphoribosylformylglycinamidine synthase 2 2.7414748892 0.499999999998 -2.24147488919 +UniRef50_Q5GVA4 Dehydrogenase 0.095090162737 0.5 0.404909837263 +UniRef50_A4EC20 0.641520480845 0.5 -0.141520480845 +UniRef50_C3M9I7 1.50341642727 0.499999999998 -1.00341642727 +UniRef50_Q7X1N2 Lfe103p1 0.198987843034 0.5 0.301012156966 +UniRef50_L7WUJ3 ABC transporter permease 0.912823588785 0.5 -0.412823588785 +UniRef50_P36672 PTS system trehalose specific EIIBC component 0.388307958851 0.5 0.111692041149 +UniRef50_UPI0003CFF16B SsrA binding protein 0.145095036758 0.5 0.354904963242 +UniRef50_Q9VQX4 Nicotinate phosphoribosyltransferase 0.17531496018 0.5 0.32468503982 +UniRef50_W0NF85 0.360727909417 0.5 0.139272090583 +UniRef50_UPI0003A03E70 FAD dependent oxidoreductase 1.36787526408 0.5 -0.867875264078 +UniRef50_O67642 Transketolase 0.27158206144 0.5 0.22841793856 +UniRef50_L7DMI2 3.81516159329 0.5 -3.31516159329 +UniRef50_P77263 Probable fimbrial chaperone EcpE 8.03257909094 0.500000000003 -7.53257909095 +UniRef50_UPI0003B721B0 ATPase P 0.0490069337106 0.5 0.45099306629 +UniRef50_Q11I48 ATP dependent Clp protease proteolytic subunit 2 0.0127406282309 0.5 0.487259371769 +UniRef50_A1B0S4 Transposase, IS5 family 1.19155986379 0.5 -0.69155986379 +UniRef50_P23840 DNA damage inducible protein D 0.550184986183 0.5 -0.0501849861828 +UniRef50_I1Y3Y4 Multidrug resistance efflux pump 0.049035921357 0.5 0.450964078643 +UniRef50_D4J6G0 Amino acid ABC transporter substrate binding protein, PAAT family 1.60896606415 0.499999999999 -1.10896606415 +UniRef50_UPI0003644DE3 hypothetical protein 2.7177097323 0.500000000001 -2.2177097323 +UniRef50_A8FNH9 Carboxynorspermidine carboxyspermidine decarboxylase 4.11009565354 0.5 -3.61009565354 +UniRef50_L7UHD0 DGPF domain containing protein 0.946436319126 0.5 -0.446436319126 +UniRef50_UPI00046ADB22 3 hydroxyisobutyrate dehydrogenase 0.443262707078 0.5 0.0567372929219 +UniRef50_A6LZ68 4Fe 4S ferredoxin, iron sulfur binding domain protein 0.42484049987 0.5 0.0751595001301 +UniRef50_P77154 0.732762024131 0.5 -0.232762024131 +UniRef50_UPI00029AD7C0 ribosomal large subunit pseudouridine synthase A, partial 2.64867535705 0.5 -2.14867535705 +UniRef50_A5UM01 Pheromone shutdown protein, TraB family 0.918898086414 0.5 -0.418898086414 +UniRef50_Q02RK7 1.87742900122 0.5 -1.37742900122 +UniRef50_Q9RVA9 Probable butyrate kinase 0.037323794616 0.5 0.462676205384 +UniRef50_Q8XMG8 Zinc transporter ZupT 0.111724172235 0.5 0.388275827765 +UniRef50_A1W1W9 3 isopropylmalate dehydratase small subunit 0.26337169982 0.5 0.23662830018 +UniRef50_E6MWH5 0.430467822696 0.5 0.0695321773035 +UniRef50_S5N5Q9 Ribulose phosphate 3 epimerase 0.199538948557 0.5 0.300461051443 +UniRef50_Q8XI79 Putative pyruvate, phosphate dikinase regulatory protein 0.102404975664 0.5 0.397595024336 +UniRef50_Q6ZKP4 1.1098621274 0.5 -0.609862127397 +UniRef50_UPI0003B52784 ATPase 0.795486146048 0.5 -0.295486146048 +UniRef50_Q87QK9 Histidine biosynthesis bifunctional protein HisB 1.28394462368 0.5 -0.783944623683 +UniRef50_D8LJV9 0.320064823602 0.5 0.179935176398 +UniRef50_UPI0003625364 alkaline phosphatase 0.873067434263 0.5 -0.373067434263 +UniRef50_H9UZ27 0.740252928129 0.5 -0.240252928129 +UniRef50_F3U4H9 1.41684127027 0.5 -0.916841270269 +UniRef50_A0A022NNU5 2.58885236406 0.5 -2.08885236406 +UniRef50_A5ULV6 Ribonuclease HII 5.27706689059 0.500000000003 -4.77706689059 +UniRef50_UPI00036D09DC hypothetical protein, partial 1.51343864239 0.5 -1.01343864239 +UniRef50_F9Z1I9 3 oxoacyl [acyl carrier protein] synthase 1 0.0483168423116 0.5 0.451683157688 +UniRef50_UPI0003B52617 transporter 2.82416283341 0.500000000002 -2.32416283341 +UniRef50_H5Y2B5 Cytosine deaminase like metal dependent hydrolase 0.0362855236482 0.5 0.463714476352 +UniRef50_P16678 Putative phosphonates utilization ATP binding protein PhnK 4.99612156525 0.500000000003 -4.49612156526 +UniRef50_B4RDA5 0.183681344511 0.5 0.316318655489 +UniRef50_UPI00015FC63D hypothetical protein 1.42122152286 0.5 -0.921221522865 +UniRef50_U6LWE1 0.45655741652 0.5 0.0434425834798 +UniRef50_Q8CTH6 Urea amidolyase 2.07414396869 0.500000000001 -1.57414396869 +UniRef50_Q9RRX1 Acyl CoA dehydrogenase, putative 0.00138591146455 0.5 0.498614088535 +UniRef50_UPI00035ED69A hypothetical protein 0.331373483609 0.5 0.168626516391 +UniRef50_Q8A1F7 Elongation factor P 0.00120942605515 0.5 0.498790573945 +UniRef50_A3PHK3 ComEC Rec2 related protein 2.22102812601 0.5 -1.72102812601 +UniRef50_P46920 Glycine betaine transport ATP binding protein OpuAA 0.513685718235 0.5 -0.0136857182351 +UniRef50_UPI00035CE6C9 hypothetical protein 2.66650813522 0.499999999998 -2.16650813522 +UniRef50_I7BZ98 0.0128884752423 0.5 0.487111524758 +UniRef50_U3T4G5 Pseudouridine synthase 0.0314364271603 0.5 0.46856357284 +UniRef50_D6M2H8 Fatty oxidation complex, alpha subunit 0.207722895603 0.5 0.292277104397 +UniRef50_UPI00047E1145 sugar ABC transporter permease 2.59557227476 0.500000000002 -2.09557227476 +UniRef50_P44468 Rod shape determining protein RodA 1.30826510433 0.5 -0.80826510433 +UniRef50_UPI0004255E92 adenylosuccinate synthetase 0.730610784276 0.5 -0.230610784276 +UniRef50_G8VQJ8 0.0185481192512 0.5 0.481451880749 +UniRef50_R9IVY1 0.00185614678925 0.5 0.498143853211 +UniRef50_UPI000346609E hypothetical protein 0.340176617777 0.5 0.159823382223 +UniRef50_UPI000478591D amino acid ABC transporter permease 0.242941064505 0.5 0.257058935495 +UniRef50_UPI000479F6B7 transporter 0.0676612611999 0.5 0.4323387388 +UniRef50_Q9RY77 Phosphate acetyltransferase 9.51373194556e-05 0.5 0.499904862681 +UniRef50_C9CZK5 0.689666226744 0.5 -0.189666226744 +UniRef50_Y5PA95 0.343898459216 0.5 0.156101540784 +UniRef50_A6M280 RelA SpoT domain protein 0.148908281182 0.5 0.351091718818 +UniRef50_O32035 3.8766876115 0.500000000004 -3.3766876115 +UniRef50_O32034 2.00626694102 0.499999999998 -1.50626694102 +UniRef50_UPI000467BFBE hypothetical protein 0.071202425629 0.5 0.428797574371 +UniRef50_UPI0002B4A544 0.00610260913426 0.5 0.493897390866 +UniRef50_B8J198 Lon protease 0.545665862821 0.5 -0.0456658628209 +UniRef50_A6M0E8 TPR repeat containing protein 0.192389723099 0.5 0.307610276901 +UniRef50_L8E534 Undefined function 1.32450978576 0.5 -0.824509785756 +UniRef50_Q03K84 Phosphoribosyl ATP pyrophosphatase 0.652456633799 0.5 -0.152456633799 +UniRef50_P34559 Probable enoyl CoA hydratase, mitochondrial 0.266569242982 0.5 0.233430757018 +UniRef50_U1EG57 0.128746512306 0.499999999999 0.371253487694 +UniRef50_A6M1X1 FMN binding domain protein 0.219079032184 0.5 0.280920967816 +UniRef50_UPI00035DE7E6 hypothetical protein 0.14110493793 0.5 0.35889506207 +UniRef50_A0A023S135 Ferrous iron transporter B 0.023768906233 0.500000000001 0.476231093766 +UniRef50_P33224 Putative acyl CoA dehydrogenase AidB 1.7270103364 0.5 -1.2270103364 +UniRef50_W5X8Z0 Ribose phosphate pyrophosphokinase 0.572029453176 0.5 -0.0720294531763 +UniRef50_UPI000378494C hypothetical protein 1.17069533164 0.5 -0.670695331641 +UniRef50_UPI0003B44A26 membrane protein 0.00249313021679 0.500000000001 0.497506869783 +UniRef50_N0AUD5 4.0794487009 0.499999999999 -3.5794487009 +UniRef50_M4WTT8 0.478636584375 0.5 0.0213634156249 +UniRef50_X6L243 1.9189821002 0.5 -1.4189821002 +UniRef50_UPI0003F95F23 phosphonate ABC transporter ATP binding protein 0.0443849249563 0.499999999999 0.455615075045 +UniRef50_R5G6K3 Histidinol phosphate phosphatase HisJ family 0.190071174516 0.5 0.309928825484 +UniRef50_UPI00047094F6 ABC transporter 0.145305750472 0.5 0.354694249528 +UniRef50_Q9RS47 Uracil permease 0.0056508282709 0.5 0.494349171729 +UniRef50_UPI000360D3DC hypothetical protein 0.0144981928225 0.5 0.485501807178 +UniRef50_W5X572 L aspartate aminotransferase 0.0344237036903 0.5 0.46557629631 +UniRef50_UPI0002ECDC1A hypothetical protein 0.337841353003 0.5 0.162158646997 +UniRef50_W6IAM9 Putative membrane spanning protein 0.282711661698 0.5 0.217288338302 +UniRef50_A5ULW0 2.09489886323 0.499999999999 -1.59489886323 +UniRef50_UPI0003B49F43 hypothetical protein 0.372634222551 0.5 0.127365777449 +UniRef50_Q9MUN1 Sulfate thiosulfate import ATP binding protein CysA 1.10364141206 0.5 -0.603641412061 +UniRef50_H5FVP6 Amidohydrolase family protein 1.76705526366 0.5 -1.26705526366 +UniRef50_A6LXR8 hydrogenase maturation protein HypF 0.274899750779 0.5 0.225100249221 +UniRef50_C0VQW3 0.0300968967827 0.499999999999 0.469903103218 +UniRef50_UPI000471077D hypothetical protein, partial 0.229098293798 0.5 0.270901706202 +UniRef50_Q5H2Q9 IS1478 transposase 0.641192900255 0.5 -0.141192900255 +UniRef50_G8AGV1 RepB plasmid partition 0.0865062986542 0.5 0.413493701346 +UniRef50_H2JWP6 Permease for cytosine purines uracil thiamine allantoin 0.00685759248691 0.5 0.493142407513 +UniRef50_W6K6P7 0.946124958988 0.5 -0.446124958988 +UniRef50_UPI00047DE1A1 spermidine putrescine ABC transporter substrate binding protein 0.0210152004486 0.5 0.478984799551 +UniRef50_E1Q026 Iron regulated outer membrane protein 0.0153694679054 0.5 0.484630532095 +UniRef50_D8GLI1 0.107012112315 0.5 0.392987887685 +UniRef50_UPI00046EAE05 2 amino 3 ketobutyrate CoA ligase 2.06703829839 0.499999999999 -1.56703829839 +UniRef50_C4ZA66 Xanthine phosphoribosyltransferase 0.285673642243 0.5 0.214326357757 +UniRef50_F0Y306 Expressed protein 0.117437293498 0.5 0.382562706502 +UniRef50_D8JG86 Sensor protein gacS 0.00856277144898 0.5 0.491437228551 +UniRef50_UPI00029A8D53 alpha amylase, catalytic subdomain 0.0873725656613 0.5 0.412627434339 +UniRef50_UPI0004785413 hypothetical protein 0.472474307215 0.5 0.0275256927849 +UniRef50_D3QI48 RND multidrug efflux transporter Acriflavin resistance protein 2.12617297525 0.5 -1.62617297525 +UniRef50_K0SH63 0.0750263414985 0.5 0.424973658501 +UniRef50_UPI00028A1721 3 oxoacyl ACP reductase 0.0395702231969 0.5 0.460429776803 +UniRef50_A6LZZ2 1.47932677504 0.500000000001 -0.979326775042 +UniRef50_UPI00037FAA98 hypothetical protein, partial 0.795119633968 0.5 -0.295119633968 +UniRef50_Q5F653 0.0181871469678 0.499999999999 0.481812853033 +UniRef50_Q0A911 Beta hexosaminidase 0.307851997585 0.5 0.192148002415 +UniRef50_D3NSC7 sn glycerol 3 phosphate transport system substrate binding protein 0.638251813648 0.5 -0.138251813648 +UniRef50_W6M4I0 0.0142886858847 0.5 0.485711314115 +UniRef50_UPI0002378B1B glutathione dependent formaldehyde activating protein 0.320127134493 0.5 0.179872865507 +UniRef50_E6U6T7 LemA family protein 0.779036705329 0.5 -0.279036705329 +UniRef50_Q1J1I0 O antigen polymerase 0.00326613749641 0.5 0.496733862503 +UniRef50_UPI00047AE469 hypothetical protein 0.178933010896 0.5 0.321066989104 +UniRef50_Z7T5S7 0.253511015759 0.5 0.246488984241 +UniRef50_P39160 D mannonate oxidoreductase 1.37102698235 0.5 -0.871026982353 +UniRef50_UPI0003594B33 PREDICTED 1.01255671522 0.5 -0.512556715215 +UniRef50_A6LZZ5 0.16657030294 0.5 0.33342969706 +UniRef50_UPI000255C6FB ADP ribose pyrophosphatase 0.0780219553136 0.5 0.421978044686 +UniRef50_P64555 7 carboxy 7 deazaguanine synthase 0.651532072178 0.5 -0.151532072178 +UniRef50_B9E3V1 0.93907154449 0.5 -0.43907154449 +UniRef50_UPI00036B19F3 hypothetical protein 0.00768698292438 0.5 0.492313017076 +UniRef50_A0A031MEU2 ATPase 1.33757922674 0.500000000002 -0.837579226742 +UniRef50_UPI0003ACEC40 hypothetical protein 1.6138801313 0.5 -1.1138801313 +UniRef50_B2TJ96 Nudix family hydrolase 0.23415216366 0.5 0.26584783634 +UniRef50_W5BNZ7 0.287613904763 0.5 0.212386095237 +UniRef50_A1U0K1 1,4 alpha glucan branching enzyme GlgB 0.256926014533 0.5 0.243073985467 +UniRef50_I6TPZ0 Permease 10.4397413009 0.500000000005 -9.93974130088 +UniRef50_A6LXJ6 Diguanylate cyclase 0.0830580927818 0.499999999999 0.416941907219 +UniRef50_G8V5E5 Coagulase family protein 2.28147778847 0.5 -1.78147778847 +UniRef50_Q5Z8R4 0.229120816212 0.5 0.270879183788 +UniRef50_H3FSC0 2.99436986045 0.5 -2.49436986045 +UniRef50_UPI0003B6DB9D anthranilate synthase subunit I 0.136795196328 0.5 0.363204803672 +UniRef50_A8AY72 Glycosyl transferase, family 8 SP1766 1.687873874 0.5 -1.187873874 +UniRef50_U4PWQ9 DNA gyrase subunit A 1.44086374855 0.5 -0.940863748553 +UniRef50_A0A011QMZ0 2.87492867841 0.500000000002 -2.37492867841 +UniRef50_UPI0003292DB3 PREDICTED 0.284833576772 0.5 0.215166423228 +UniRef50_Q8KDG0 Prolipoprotein diacylglyceryl transferase 0.238170361822 0.5 0.261829638178 +UniRef50_M4XH87 4.42398897083 0.500000000003 -3.92398897084 +UniRef50_UPI00047B1D04 DNA repair protein RadA 0.521334261484 0.5 -0.0213342614839 +UniRef50_UPI00037F4D6C hypothetical protein, partial 0.196057048071 0.5 0.303942951929 +UniRef50_UPI000463A207 glycoside hydrolase 0.810421706337 0.5 -0.310421706337 +UniRef50_UPI000462BEE8 hypothetical protein 0.00426842554769 0.499999999999 0.495731574453 +UniRef50_UPI0003C175AF 0.942241181076 0.5 -0.442241181076 +UniRef50_Q07637 Pyruvate kinase 0.597917742598 0.5 -0.0979177425982 +UniRef50_P60543 Phosphoribosyl AMP cyclohydrolase 0.387681218889 0.5 0.112318781111 +UniRef50_O03063 ATP synthase subunit beta, chloroplastic 0.804235270773 0.5 -0.304235270773 +UniRef50_Q1I6V1 1.17428673524 0.5 -0.674286735243 +UniRef50_M5Q933 Clumping factor 0.602630913816 0.5 -0.102630913816 +UniRef50_V6Q8F3 2.84181200926 0.499999999998 -2.34181200925 +UniRef50_Q1AU48 50S ribosomal protein L15 2.73163125376 0.499999999998 -2.23163125376 +UniRef50_O83675 DNA polymerase III subunit alpha 0.330031841677 0.5 0.169968158323 +UniRef50_T2DYY9 Bacterial type II and III secretion system family protein 1.25704388988 0.5 -0.757043889876 +UniRef50_A6U466 0.0583470889537 0.5 0.441652911046 +UniRef50_Q8GFD7 MobA 3.6498216068 0.500000000002 -3.1498216068 +UniRef50_F5XM79 0.0308590786844 0.5 0.469140921316 +UniRef50_B7UXA6 Flagellar L ring protein 0.339329888744 0.5 0.160670111256 +UniRef50_UPI0003789BA4 hypothetical protein 0.196298062218 0.5 0.303701937782 +UniRef50_UPI0003B325A0 short chain dehydrogenase 0.13180783239 0.5 0.36819216761 +UniRef50_Q06ZX9 0.100472602727 0.500000000001 0.399527397272 +UniRef50_D4KHH9 Alcohol dehydrogenase, class IV 0.0278460754303 0.5 0.47215392457 +UniRef50_UPI00046FD571 hypothetical protein, partial 0.0872750743042 0.5 0.412724925695 +UniRef50_E0IXG6 0.213466380985 0.5 0.286533619015 +UniRef50_Q2FYR1 Aminoacyltransferase FemB 2.52377014802 0.500000000003 -2.02377014802 +UniRef50_Q8PI35 0.411394372798 0.5 0.0886056272017 +UniRef50_R9SLG3 HD domain containing protein 3.76694670339 0.500000000002 -3.26694670339 +UniRef50_UPI000348EEAA RNA helicase 0.2899956886 0.5 0.2100043114 +UniRef50_F9CJM1 0.0647292629565 0.5 0.435270737044 +UniRef50_T0TL30 3.75270208639 0.499999999998 -3.25270208639 +UniRef50_O05956 Endonuclease III 3.71125150842 0.500000000001 -3.21125150842 +UniRef50_E4DG75 Helicase C terminal domain protein 0.0282556553176 0.5 0.471744344683 +UniRef50_UPI0003721D8E hypothetical protein 0.202728154965 0.5 0.297271845035 +UniRef50_F8ABT6 TRAP transporter solute receptor, TAXI family 0.52522856121 0.5 -0.0252285612097 +UniRef50_UPI000369C5C3 hypothetical protein 0.07338022055 0.5 0.42661977945 +UniRef50_Q48656 Aminopeptidase N 0.349173103471 0.5 0.150826896529 +UniRef50_UPI0004544631 PREDICTED 0.0527697922396 0.5 0.44723020776 +UniRef50_UPI0000D9989C PREDICTED 0.495946488545 0.5 0.00405351145511 +UniRef50_Q8YX97 Valine tRNA ligase 0.685780284096 0.5 -0.185780284096 +UniRef50_A3CRB9 Energy coupling factor transporter ATP binding protein EcfA1 0.332590783399 0.5 0.167409216601 +UniRef50_B6IXR1 Replication protein A, putative 1.79636489294 0.5 -1.29636489294 +UniRef50_UPI00047D3AFF hypothetical protein 0.313120528149 0.5 0.186879471851 +UniRef50_L5KY59 3.09530257503 0.5 -2.59530257503 +UniRef50_C5MZU4 Uroporphyrinogen III C methyltransferase 1.64839110694 0.5 -1.14839110694 +UniRef50_UPI0003809E92 hypothetical protein 0.795689450361 0.5 -0.295689450361 +UniRef50_UPI000411FAC5 hypothetical protein 0.072006101105 0.5 0.427993898895 +UniRef50_UPI0002B964D7 hypothetical protein 1.85313119917 0.500000000003 -1.35313119917 +UniRef50_Q5HKN0 UPF0312 protein SERP2314 7.71410108634 0.5 -7.21410108634 +UniRef50_M1MSQ2 Methyl accepting chemotaxis protein 0.359120446936 0.5 0.140879553064 +UniRef50_E0TB06 0.3190785987 0.5 0.1809214013 +UniRef50_M9R6I4 0.775075791021 0.5 -0.275075791021 +UniRef50_UPI000476DD64 acetolactate synthase catalytic subunit 0.562333960652 0.5 -0.0623339606518 +UniRef50_P09431 Nitrogen regulation protein NtrB 5.96975542822 0.500000000002 -5.46975542823 +UniRef50_E2QNK3 PTS system galactitol specific enzyme IIC component 0.00645353843801 0.5 0.493546461562 +UniRef50_E3DQN8 Lipoprotein 0.34643064368 0.5 0.15356935632 +UniRef50_C9U0N0 Acyl CoA dehydrogenase 0.386402664568 0.5 0.113597335432 +UniRef50_Q57QC3 Virulence transcriptional regulatory protein PhoP 1.36621866676 0.5 -0.866218666764 +UniRef50_K6UZ95 Benzoate transport porin BenP 0.0299649567339 0.5 0.470035043266 +UniRef50_UPI00036BFE12 hypothetical protein 0.00795336042607 0.5 0.492046639574 +UniRef50_F5LYA7 0.246834263021 0.5 0.253165736979 +UniRef50_B5YRT3 Transposase InsI for insertion sequence element IS30B C D 7.05917663064 0.500000000002 -6.55917663064 +UniRef50_UPI00039A65D3 MULTISPECIES 0.803281855505 0.5 -0.303281855505 +UniRef50_F0KEE0 Membrane flavodoxin oxidoreductase 0.412687300276 0.5 0.0873126997238 +UniRef50_L7WYV5 Dihydroxyacetone kinase subunit DhaK 3.38797437193 0.499999999999 -2.88797437192 +UniRef50_O26914 Probable threonylcarbamoyladenosine tRNA methylthiotransferase 9.12089944412 0.500000000005 -8.62089944413 +UniRef50_D4GIJ6 YyaJ 0.0118490005286 0.5 0.488150999471 +UniRef50_B2JED1 6,7 dimethyl 8 ribityllumazine synthase 0.11481570962 0.5 0.38518429038 +UniRef50_Q6AA35 NAD transhydrogenase subunit alpha 0.0176368684372 0.5 0.482363131563 +UniRef50_R4Q3R7 Tetratricopeptide repeat family protein 0.681492846185 0.5 -0.181492846185 +UniRef50_P33341 Outer membrane usher protein YehB 0.366492648328 0.5 0.133507351672 +UniRef50_P0A6B3 Acyl carrier protein 0.66988372346 0.5 -0.16988372346 +UniRef50_M9VIB3 Type III restriction enzyme, res subunit 0.00556919385201 0.5 0.494430806148 +UniRef50_D3EJ05 Cytochrome bd type ubiquinol oxidase subunit II 1.37938662886 0.500000000002 -0.879386628861 +UniRef50_Z4WXY4 1.46458012612 0.500000000001 -0.964580126116 +UniRef50_A0A011NRP5 Tellurite resistance protein TerB 1.70515652142 0.5 -1.20515652142 +UniRef50_Q39GU7 Transcriptional regulator, HxlR family 0.0049305743327 0.5 0.495069425667 +UniRef50_UPI0003822F5F hypothetical protein 0.67744610823 0.5 -0.17744610823 +UniRef50_B9DLQ3 TcaB protein 1.98812085135 0.500000000001 -1.48812085136 +UniRef50_Q3AC01 Dihydroorotase 0.239474320148 0.5 0.260525679852 +UniRef50_D1CTE1 Replication protein RepA 0.672730362311 0.5 -0.172730362311 +UniRef50_A9G7W0 Probable bifunctional SAT APS kinase 2 0.00834442961081 0.5 0.491655570389 +UniRef50_A6LQC9 0.107089857752 0.500000000001 0.392910142247 +UniRef50_D4HAA4 NlpC P60 family protein 0.0219868718894 0.5 0.478013128111 +UniRef50_Q2CCV7 0.85513114397 0.5 -0.35513114397 +UniRef50_P69743 Hydrogenase 2 small chain 2.14199243328 0.499999999999 -1.64199243328 +UniRef50_UPI0003B574AD hypothetical protein 1.01363325961 0.5 -0.513633259609 +UniRef50_V9VZ32 1.87860012081 0.5 -1.37860012081 +UniRef50_Q9X429 CylG 1.19790977943 0.5 -0.697909779429 +UniRef50_K0RNQ3 2.23692215466 0.5 -1.73692215466 +UniRef50_UPI00047375C6 XRE family transcriptional regulator, partial 1.05442206494 0.5 -0.554422064938 +UniRef50_P00914 Deoxyribodipyrimidine photo lyase 0.816529987736 0.5 -0.316529987736 +UniRef50_UPI000350AF0A PREDICTED 1.39758103423 0.5 -0.897581034232 +UniRef50_W7ST93 0.0471620657239 0.5 0.452837934276 +UniRef50_Q9RXT4 Phosphoribosylformylglycinamidine synthase 2 0.000224772263424 0.5 0.499775227736 +UniRef50_A0KFN8 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.69593061135 0.5 -1.19593061135 +UniRef50_B9L9J4 0.0386774009448 0.5 0.461322599055 +UniRef50_UPI0003C12600 0.26048518926 0.5 0.23951481074 +UniRef50_Q9I4U3 DNA recombination protein RmuC homolog 0.148194552386 0.5 0.351805447614 +UniRef50_UPI0003C176FD PREDICTED 0.0114532571001 0.5 0.4885467429 +UniRef50_UPI00022CAACE PREDICTED 0.708602419158 0.5 -0.208602419158 +UniRef50_A5UZW4 Triosephosphate isomerase 0.126438632375 0.5 0.373561367625 +UniRef50_UPI0002557ECE hypothetical protein 0.520548504049 0.5 -0.0205485040486 +UniRef50_W1PEW2 2.92415351364 0.500000000004 -2.42415351365 +UniRef50_UPI00026276DF cell division protein FtsZ 0.456864722257 0.5 0.0431352777431 +UniRef50_R4RK88 Ferrichrysobactin receptor 0.231314207157 0.5 0.268685792843 +UniRef50_UPI00035C5909 hypothetical protein 0.0399445125509 0.5 0.460055487449 +UniRef50_UPI0003819143 30S ribosomal protein S5 0.454434952334 0.5 0.045565047666 +UniRef50_H8L2T6 Flagellar hook capping protein 0.36741917285 0.5 0.13258082715 +UniRef50_UPI00037CA814 hypothetical protein 0.0759870055254 0.5 0.424012994474 +UniRef50_Q82S57 L sorbosone dehydrogenase 2.52791541471 0.5 -2.02791541471 +UniRef50_Q3JSM3 0.261374454757 0.5 0.238625545243 +UniRef50_H4Q189 HdhA domain protein 0.0571301418579 0.5 0.442869858142 +UniRef50_UPI0003B6CB71 sulfonate ABC transporter ATP binding protein 0.949788937028 0.5 -0.449788937028 +UniRef50_B0VPR5 0.0258837198804 0.5 0.474116280119 +UniRef50_B2HZL6 Cobalamin synthase 0.0134960028398 0.5 0.48650399716 +UniRef50_Q9HV71 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase 0.45160311748 0.5 0.0483968825196 +UniRef50_Q89VT1 Blr0964 protein 0.00889006880981 0.5 0.49110993119 +UniRef50_G0VM95 Inner membrane transport protein YhaO 0.411492541979 0.5 0.0885074580211 +UniRef50_S4X2L4 Mercury transport protein 2.07408725331 0.5 -1.57408725331 +UniRef50_M7XVH9 0.157981861484 0.5 0.342018138516 +UniRef50_A5UL22 DNA repair helicase 1.4093532164 0.500000000001 -0.909353216399 +UniRef50_Q8TI16 Energy coupling factor transporter ATP binding protein EcfA 0.38309077095 0.5 0.11690922905 +UniRef50_A4Y9D9 Peptidyl tRNA hydrolase 0.916727369003 0.5 -0.416727369003 +UniRef50_UPI000262C9FD ribonuclease, Rne Rng family protein 0.649659835593 0.5 -0.149659835593 +UniRef50_UPI00047C08EE short chain dehydrogenase 0.334238597136 0.5 0.165761402864 +UniRef50_UPI00026257AD inosine uridine preferring nucleoside hydrolase, partial 0.125043831808 0.5 0.374956168192 +UniRef50_D3QFZ0 Penicillin amidase V 1.04328840753 0.5 -0.543288407533 +UniRef50_UPI0003B42BB6 GntR family transcriptional regulator 0.224899655934 0.5 0.275100344066 +UniRef50_Q49XR9 1.63886229408 0.5 -1.13886229408 +UniRef50_M4R497 Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II 0.00831161582494 0.5 0.491688384175 +UniRef50_Q9RSH0 Amino acid ABC transporter, periplasmic amino acid binding protein 0.00362069549348 0.5 0.496379304506 +UniRef50_P0A0M5 Thymidylate synthase 0.951676430493 0.5 -0.451676430493 +UniRef50_A4VHG9 tRNA N6 adenosine threonylcarbamoyltransferase 0.143811422895 0.499999999999 0.356188577106 +UniRef50_Q8CQ28 ABC transporter 2.19582785259 0.500000000001 -1.69582785259 +UniRef50_UPI00046FA309 hypothetical protein 5.06095957396 0.500000000005 -4.56095957396 +UniRef50_Q1AS60 Glutamate tRNA ligase 2 0.434978557229 0.5 0.0650214427712 +UniRef50_UPI00037B162D MULTISPECIES 2.95665204897 0.5 -2.45665204897 +UniRef50_P52662 HTH type transcriptional regulator PecT 1.10821174035 0.5 -0.608211740348 +UniRef50_S9S860 1.12919856766 0.5 -0.629198567658 +UniRef50_UPI0003D719FF 0.133076449092 0.500000000001 0.366923550907 +UniRef50_UPI000467E030 calcium binding protein, partial 0.310838747802 0.5 0.189161252198 +UniRef50_A5UL93 Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA 3.39391445569 0.500000000003 -2.89391445569 +UniRef50_F4A673 Hydrogenase maturation factor 0.794984148534 0.5 -0.294984148534 +UniRef50_A5F3A7 Aldehyde dehydrogenase 1.15000717243 0.5 -0.650007172426 +UniRef50_Q8U1E4 Translation initiation factor 5A 0.426174013633 0.5 0.0738259863669 +UniRef50_Q5FPL0 GMP synthase [glutamine hydrolyzing] 0.945062769296 0.5 -0.445062769296 +UniRef50_D8K701 UPF0125 protein Nwat_1827 3.54440540038 0.500000000004 -3.04440540038 +UniRef50_P63811 Pantothenate kinase 0.00116466724885 0.5 0.498835332751 +UniRef50_F2L7R0 NAD NADP transhydrogenase alpha subunit like protein 0.434857553823 0.5 0.0651424461767 +UniRef50_D4H9R8 Triacylglycerol lipase 0.0787215415502 0.5 0.42127845845 +UniRef50_M7DU42 Transcriptional regulator 4.95820307604 0.500000000001 -4.45820307604 +UniRef50_Q2S3A7 Phosphoglycerate kinase 0.105146950795 0.5 0.394853049205 +UniRef50_UPI0003725ECA hypothetical protein 0.762948722478 0.5 -0.262948722478 +UniRef50_P0AFS7 UPF0118 inner membrane protein YdiK 3.13649997035 0.499999999999 -2.63649997035 +UniRef50_Q2RPW6 2.51276124329 0.500000000001 -2.01276124329 +UniRef50_A0A024E8U2 Mandelate racemase muconate lactonizing enzyme family protein 4.20458191552 0.500000000005 -3.70458191553 +UniRef50_I6U2V2 Transcriptional regulator 0.771182448908 0.5 -0.271182448908 +UniRef50_P45858 2 methylcitrate synthase 0.295994143776 0.5 0.204005856224 +UniRef50_Q6CBZ1 YALI0C14234p 0.865716232322 0.5 -0.365716232322 +UniRef50_W0YNG1 0.405893132901 0.5 0.0941068670986 +UniRef50_O26830 Putative phospho N acetylmuramoyl pentapeptide transferase 7.48288699133 0.500000000001 -6.98288699133 +UniRef50_P23878 Ferric enterobactin transport ATP binding protein FepC 4.51985183211 0.499999999999 -4.01985183211 +UniRef50_D9RDD4 4.11965368504 0.500000000007 -3.61965368504 +UniRef50_K0HJZ6 HTH domain protein 0.0258236082843 0.5 0.474176391716 +UniRef50_UPI00045603DB hypothetical protein PFL1_00982 0.807027022802 0.5 -0.307027022802 +UniRef50_A9NFP2 50S ribosomal protein L32 5.45151476746 0.499999999992 -4.95151476745 +UniRef50_UPI00024926A7 DNA 3 methyladenine glycosylase 0.541804241204 0.5 -0.0418042412035 +UniRef50_P28916 H repeat associated protein YbfD 2.35615723129 0.5 -1.85615723129 +UniRef50_UPI000262D669 FKBP type peptidyl prolyl cis trans isomerase 0.447683334381 0.5 0.0523166656191 +UniRef50_UPI0003B77EBB ABC transporter 0.217656903474 0.5 0.282343096526 +UniRef50_A6LQ88 Type II secretory pathway pseudopilin PulG like protein 0.0636209851596 0.5 0.43637901484 +UniRef50_O32197 Transcriptional regulatory protein LiaR 1.41759518419 0.5 -0.917595184188 +UniRef50_UPI00016BFC87 ribonuclease III 0.158714964097 0.5 0.341285035903 +UniRef50_G2JLA5 0.328517140367 0.5 0.171482859633 +UniRef50_A0A022GY86 0.840827733556 0.5 -0.340827733556 +UniRef50_L8EHD4 Major facilitator transporter 0.0147870822769 0.5 0.485212917723 +UniRef50_UPI000225F112 hypothetical protein 7.68155988997 0.499999999998 -7.18155988997 +UniRef50_O08385 ATP phosphoribosyltransferase 0.365985552771 0.5 0.134014447229 +UniRef50_Q3IVA5 Aldo keto reductase 1.71833695861 0.5 -1.21833695861 +UniRef50_UPI00037D4803 hypothetical protein 0.0649567038036 0.5 0.435043296196 +UniRef50_UPI0004015A16 MULTISPECIES 0.0648844366935 0.5 0.435115563307 +UniRef50_Q9AAA2 MaoC family protein 0.914271932125 0.5 -0.414271932125 +UniRef50_P42810 TPR repeat containing protein PA4667 0.401641170059 0.5 0.0983588299409 +UniRef50_Q3XXT3 Amino acid permease associated region 1.2048762982 0.5 -0.704876298195 +UniRef50_UPI000474EE1B hypothetical protein 0.248336327697 0.5 0.251663672303 +UniRef50_A8LKL8 AFG1 family ATPase 3.64315274722 0.5 -3.14315274722 +UniRef50_Q87XY9 Decarboxylase family protein 0.61275930075 0.5 -0.11275930075 +UniRef50_B1N5W5 Diaphanous protein, putative 0.551070507417 0.5 -0.0510705074171 +UniRef50_A4X0A4 HipA domain protein 2.53838199756 0.5 -2.03838199756 +UniRef50_UPI000364B97F hypothetical protein 3.54894795916 0.499999999999 -3.04894795916 +UniRef50_UPI0003B7A32E chromosome partitioning protein ParB 0.0186260233492 0.5 0.481373976651 +UniRef50_Q17058 Alpha glucosidase 0.659177624586 0.5 -0.159177624586 +UniRef50_G0HDD8 0.00493620580355 0.5 0.495063794197 +UniRef50_A4CMU2 0.604821145189 0.5 -0.104821145189 +UniRef50_I6RKC9 0.8920461291 0.5 -0.3920461291 +UniRef50_UPI00025588CA phage terminase, partial 6.43085642749 0.499999999999 -5.93085642749 +UniRef50_H3LAA4 0.625996758975 0.5 -0.125996758975 +UniRef50_D3E1C3 5.80467744793 0.499999999999 -5.30467744793 +UniRef50_B9KX02 2.80318548412 0.500000000003 -2.30318548412 +UniRef50_G4YDD7 0.189228533465 0.5 0.310771466535 +UniRef50_Q9HYT1 3.33564219872 0.499999999994 -2.83564219871 +UniRef50_UPI0003797423 hypothetical protein, partial 5.44162345589 0.5 -4.94162345589 +UniRef50_Q9HYT3 0.622371527183 0.5 -0.122371527183 +UniRef50_I6U0G5 ComB, accessory factor for ComA 1.12983400413 0.5 -0.629834004129 +UniRef50_W8KRF0 Flagellar hook capping protein 0.341541671786 0.5 0.158458328214 +UniRef50_K4PRA4 Phosphotransferase system, EIIC 0.241843662464 0.5 0.258156337536 +UniRef50_D0RWK6 8.10648018851 0.499999999999 -7.60648018851 +UniRef50_Q9RUL2 0.0116972504612 0.5 0.488302749539 +UniRef50_UPI000408C0D1 L threonine 3 dehydrogenase 0.0297052421918 0.5 0.470294757808 +UniRef50_Q67PA6 Proline tRNA ligase 0.0339042538587 0.5 0.466095746141 +UniRef50_C4UFH2 0.549803863768 0.5 -0.0498038637677 +UniRef50_B7I478 Transcriptional regulator, TetR family 0.0198975279764 0.500000000001 0.480102472023 +UniRef50_C5BM48 Ethanolamine ammonia lyase, large subunit 0.0636533044691 0.5 0.436346695531 +UniRef50_D2P376 0.0185884541616 0.5 0.481411545838 +UniRef50_Q9ZL96 tRNA ) methyltransferase 0.0116778603385 0.5 0.488322139661 +UniRef50_V0L6T7 Glycine dehydrogenase 1.02205214288 0.5 -0.522052142875 +UniRef50_UPI000470D224 sugar ABC transporter permease 0.95623691738 0.5 -0.45623691738 +UniRef50_A0A024HX03 0.321553933586 0.5 0.178446066414 +UniRef50_UPI0004691DC1 mechanosensitive ion channel protein MscL 2.52856681204 0.500000000001 -2.02856681204 +UniRef50_T7H4C9 Periplasmic endochitinase 3.08522593294 0.5 -2.58522593294 +UniRef50_G2JK97 0.0915152363972 0.5 0.408484763603 +UniRef50_UPI0003616A00 hypothetical protein 0.0217437727012 0.5 0.478256227299 +UniRef50_M4MLE9 10.5293494423 0.500000000003 -10.0293494423 +UniRef50_I3UFE6 Saccharopine dehydrogenase 1.39593155018 0.5 -0.895931550183 +UniRef50_UPI00046ED2B4 hypothetical protein 3.12826915194 0.500000000003 -2.62826915195 +UniRef50_UPI0002E5AE52 choline dehydrogenase 1.62450848403 0.5 -1.12450848403 +UniRef50_M4QZX1 0.0280319047348 0.5 0.471968095265 +UniRef50_P13512 Cobalt zinc cadmium resistance protein CzcD 0.0922501132766 0.5 0.407749886723 +UniRef50_V8R0S1 Deoxyribonuclease 0.0103689275609 0.5 0.489631072439 +UniRef50_UPI00036A5DE2 peptidase 0.165595011103 0.500000000001 0.334404988896 +UniRef50_X5DX77 1.40917691337 0.5 -0.909176913374 +UniRef50_D6ZZK2 Sulfate ABC transporter, periplasmic sulfate binding protein 2.67261907472 0.5 -2.17261907472 +UniRef50_UPI000472CD56 hypothetical protein 0.601069551929 0.5 -0.101069551929 +UniRef50_UPI000289BAA8 acetyl CoA 0.177256186393 0.5 0.322743813607 +UniRef50_UPI000474C455 hypothetical protein, partial 6.20757331033 0.499999999998 -5.70757331033 +UniRef50_B1GYQ3 3 phosphoshikimate 1 carboxyvinyltransferase 0.378122684566 0.5 0.121877315434 +UniRef50_Q7P3Y5 NagD protein 0.134714374536 0.5 0.365285625464 +UniRef50_UPI0001BF64A8 hypothetical protein SMAC_11040, partial 0.0156123457054 0.499999999999 0.484387654295 +UniRef50_D8GQL0 0.0539828228567 0.5 0.446017177143 +UniRef50_UPI0001C36D2D hypothetical protein 0.223983400844 0.5 0.276016599156 +UniRef50_Q5XE77 Single stranded DNA binding protein 1 0.646441201646 0.5 -0.146441201646 +UniRef50_P75788 Inner membrane protein YbiR 0.731520835097 0.5 -0.231520835097 +UniRef50_D4Z138 0.928291909689 0.5 -0.428291909689 +UniRef50_UPI000237EFA3 transposase IS3 family protein 1.64961808626 0.499999999999 -1.14961808626 +UniRef50_U3SWI7 1.63893482302 0.5 -1.13893482302 +UniRef50_X0PLV2 Excinuclease ABC 0.109529080908 0.499999999999 0.390470919092 +UniRef50_C7ZYL4 Phage major tail protein 2.06638874695 0.499999999998 -1.56638874694 +UniRef50_UPI0004713D66 hypothetical protein 0.320329566655 0.5 0.179670433345 +UniRef50_C5CT24 Polyribonucleotide nucleotidyltransferase 0.0135354764075 0.5 0.486464523592 +UniRef50_L7WT15 Glycosyltransferase stabilizing protein Gtf2 1.42825365408 0.5 -0.92825365408 +UniRef50_I6SK88 0.198463770111 0.5 0.301536229889 +UniRef50_UPI0001C39745 ABC type dipeptide transport system, periplasmic component, partial 0.115209219934 0.5 0.384790780066 +UniRef50_A3W978 0.00416898321255 0.5 0.495831016788 +UniRef50_A2FR65 Basic proline rich protein, putative 0.0331670794344 0.5 0.466832920566 +UniRef50_UPI000181656F hypothetical protein, partial 0.715579358003 0.5 -0.215579358003 +UniRef50_A0A011PGA8 Hydrogenase 2 maturation protease 0.719300995145 0.5 -0.219300995145 +UniRef50_O27051 D 3 phosphoglycerate dehydrogenase 5.05947137444 0.499999999996 -4.55947137444 +UniRef50_UPI000262927F GTPase Der 0.239638916096 0.5 0.260361083904 +UniRef50_K4HIZ1 DnaJ related protein 0.502790341161 0.5 -0.00279034116147 +UniRef50_UPI0003637E5A hypothetical protein, partial 0.177746659553 0.5 0.322253340447 +UniRef50_P76102 Putative transposase InsQ for insertion sequence element IS609 2.81304516714 0.499999999998 -2.31304516713 +UniRef50_F0KM17 Lipid A biosynthesis lauroyl acyltransferase 0.0168710449944 0.5 0.483128955006 +UniRef50_S5YHY9 Partition protein A 2.74894192417 0.500000000004 -2.24894192418 +UniRef50_Q3J218 0.89577674729 0.5 -0.39577674729 +UniRef50_K0TK24 2.56454166896 0.499999999999 -2.06454166896 +UniRef50_UPI000471D82C hypothetical protein 0.023704905099 0.5 0.476295094901 +UniRef50_UPI000363C207 hypothetical protein 0.0346408587276 0.5 0.465359141272 +UniRef50_D3E2Q4 Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family 5.82960373144 0.500000000001 -5.32960373144 +UniRef50_UPI0003B72DF0 GntR family transcriptional regulator 0.256991062305 0.5 0.243008937695 +UniRef50_Q3J215 0.0954097161335 0.5 0.404590283867 +UniRef50_UPI0003B5B026 zinc metalloprotease 0.596617181245 0.5 -0.0966171812452 +UniRef50_O14556 Glyceraldehyde 3 phosphate dehydrogenase, testis specific 0.278968529667 0.5 0.221031470333 +UniRef50_P65671 Sulfate adenylyltransferase subunit 2 0.0188900077037 0.5 0.481109992296 +UniRef50_F0QP46 Flavoprotein 0.0130250577655 0.5 0.486974942235 +UniRef50_D5UQ22 Cell envelope related transcriptional attenuator 0.146897973151 0.5 0.353102026849 +UniRef50_Q1IX28 Periplasmic YigE like protein 0.0157013194376 0.5 0.484298680562 +UniRef50_Q3JG98 Acyl CoA dehydrogenase, C terminal domain family 0.0101623765436 0.5 0.489837623456 +UniRef50_UPI00046FA5DF hypothetical protein 1.56642656201 0.5 -1.06642656201 +UniRef50_UPI00035D1933 glycine cleavage system protein H 1.3399336162 0.5 -0.839933616201 +UniRef50_V9T6E9 Sugar ABC transporter permease 0.660229143558 0.5 -0.160229143558 +UniRef50_UPI0003B3F1EE transposase 4.86625268942 0.499999999999 -4.36625268942 +UniRef50_B8EJI5 Holliday junction ATP dependent DNA helicase RuvA 1.0373849701 0.499999999999 -0.5373849701 +UniRef50_UPI00046E909F hypothetical protein 0.00763575469913 0.5 0.4923642453 +UniRef50_A1BAZ5 3.42103780503 0.5 -2.92103780503 +UniRef50_A5UML2 Predicted flavoprotein 3.03193100717 0.5 -2.53193100717 +UniRef50_UPI000349F337 hypothetical protein 0.622729121755 0.5 -0.122729121755 +UniRef50_UPI0004624C72 polymerase 0.962359774555 0.5 -0.462359774555 +UniRef50_Q3J4T5 Putative metal dependent protease of the PAD1 JAB1 superfamily 0.656024947983 0.5 -0.156024947983 +UniRef50_Q6GE10 6 carboxyhexanoate CoA ligase 2.2778689555 0.500000000001 -1.7778689555 +UniRef50_P07018 Methyl accepting chemotaxis protein IV 0.712129463467 0.5 -0.212129463467 +UniRef50_I3Y049 0.680340493152 0.5 -0.180340493152 +UniRef50_UPI0003476A90 hypothetical protein 4.98091867995 0.500000000001 -4.48091867995 +UniRef50_UPI0003F0CB72 PREDICTED 3.4081387272 0.5 -2.9081387272 +UniRef50_O68872 1.0126113647 0.5 -0.512611364696 +UniRef50_Q2GDJ8 NADH quinone oxidoreductase subunit D 0.247326052689 0.5 0.252673947311 +UniRef50_A1AJH6 N acetylneuraminate epimerase 0.630784960413 0.5 -0.130784960413 +UniRef50_F2J2D8 Putative HTH type transcriptional regulator rrf2 like protein 1.0677731261 0.5 -0.5677731261 +UniRef50_Q9RXY1 50S ribosomal protein L13 0.00235383381681 0.5 0.497646166183 +UniRef50_D3E348 1.09223789049 0.5 -0.592237890487 +UniRef50_K0C281 Flagellar hook capping protein 0.364975167818 0.5 0.135024832182 +UniRef50_UPI0003697B4B ABC transporter, partial 0.27159443134 0.5 0.22840556866 +UniRef50_A3WH30 0.449489654887 0.5 0.0505103451128 +UniRef50_UPI00036F7350 hypothetical protein 0.994465043469 0.5 -0.494465043469 +UniRef50_A0A011PL33 15.9581742307 0.499999999991 -15.4581742307 +UniRef50_Q9LUW5 DEAD box ATP dependent RNA helicase 53 0.0397730358914 0.5 0.460226964109 +UniRef50_UPI0003C14327 PREDICTED 1.53662286504 0.499999999998 -1.03662286504 +UniRef50_Q016E9 Glyoxalase bleomycin resistance protein dioxygenas 2.77756403131 0.5 -2.27756403131 +UniRef50_UPI0003B4F316 ABC transporter ATP binding protein 8.36393215106 0.500000000001 -7.86393215106 +UniRef50_C5AQC0 DNA helicase, ATP dependent resolution of Holliday junctions, branch migration 1.50280358421 0.5 -1.00280358421 +UniRef50_Q49Y17 1.78131480247 0.5 -1.28131480247 +UniRef50_A8AKZ3 7.19391976722 0.500000000001 -6.69391976722 +UniRef50_P0AE54 Putative peroxiredoxin bcp 6.32870169087 0.499999999998 -5.82870169087 +UniRef50_Q5HLM6 2.04697875085 0.499999999999 -1.54697875085 +UniRef50_W0IR18 C4 dicarboxylate ABC transporter 2.39062325043 0.5 -1.89062325043 +UniRef50_A4WSF9 5.34358554063 0.499999999993 -4.84358554062 +UniRef50_UPI00030293EE hypothetical protein 1.74377943795 0.500000000001 -1.24377943795 +UniRef50_W4U1X8 0.197922023646 0.5 0.302077976354 +UniRef50_B2T0E3 1.47425604336 0.5 -0.97425604336 +UniRef50_B0VUD5 High frequency lysogenization protein HflD homolog 0.030943923643 0.5 0.469056076357 +UniRef50_A0A029AVJ5 0.0710275110042 0.5 0.428972488996 +UniRef50_S6WIX2 Fosmidomycin resistance protein 1.86253588315 0.500000000002 -1.36253588315 +UniRef50_Q6LKZ5 ATP synthase epsilon chain 2 0.0518529152963 0.5 0.448147084704 +UniRef50_UPI00046E6D22 LysR family transcriptional regulator, partial 0.494471487831 0.5 0.00552851216884 +UniRef50_P33368 0.628539511334 0.5 -0.128539511334 +UniRef50_UPI000370601D hypothetical protein 0.139149562745 0.5 0.360850437255 +UniRef50_C3FDC0 0.118536128179 0.5 0.381463871821 +UniRef50_B9KUV4 1.13609103526 0.5 -0.636091035261 +UniRef50_C6STH9 5.61530648963 0.499999999999 -5.11530648963 +UniRef50_V5EUP7 0.00420258338316 0.5 0.495797416617 +UniRef50_UPI00029A0BC2 3 hydroxybutyryl CoA epimerase 0.153503382985 0.5 0.346496617015 +UniRef50_C9CS38 Rb142 1.23761591918 0.5 -0.737615919178 +UniRef50_UPI0003B6D51E DNA topoisomerase I 0.133848211531 0.5 0.366151788469 +UniRef50_UPI0003597373 PREDICTED 0.0387400269672 0.5 0.461259973033 +UniRef50_T1YC46 Integral membrane protein 1.79676338117 0.5 -1.29676338117 +UniRef50_P37460 Proline specific permease ProY 0.0475788301647 0.5 0.452421169835 +UniRef50_A9BFZ1 30S ribosomal protein S4 0.00394596157813 0.5 0.496054038422 +UniRef50_UPI00037C9C7B hypothetical protein 0.860622704097 0.5 -0.360622704097 +UniRef50_Q3KHK6 GntR family transcriptional regulator 0.388383198467 0.5 0.111616801533 +UniRef50_Q5H1Q0 Beta hexosaminidase 0.186865121094 0.5 0.313134878906 +UniRef50_UPI0002F5F4FB hypothetical protein 0.025373277043 0.5 0.474626722956 +UniRef50_P18179 Potential ATP binding protein 2.07576087004 0.5 -1.57576087004 +UniRef50_UPI00035C1F2F hypothetical protein 0.371617205816 0.5 0.128382794184 +UniRef50_Q1AR89 Aminomethyltransferase 0.448470086179 0.5 0.0515299138205 +UniRef50_UPI0002B48709 PREDICTED 0.644026365664 0.5 -0.144026365664 +UniRef50_UPI00037FBF9D hypothetical protein 9.05832738968 0.500000000005 -8.55832738969 +UniRef50_G7ZS60 27.3472648161 0.500000000008 -26.8472648161 +UniRef50_R5A691 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.54353238086 0.5 -0.0435323808603 +UniRef50_X4ZCF7 ABC transporter family protein 0.712388483391 0.5 -0.212388483391 +UniRef50_I3WXC9 Dissimilatory sulfite reductase 1.23917405308 0.5 -0.739174053076 +UniRef50_Q8DUY9 1.64530302239 0.5 -1.14530302239 +UniRef50_P0AGL8 Ribosomal RNA small subunit methyltransferase E 3.44671600813 0.500000000004 -2.94671600814 +UniRef50_Q9I2V5 Aconitate hydratase 2 0.103975020687 0.5 0.396024979313 +UniRef50_A6L1U8 Lipoyl synthase 0.00239264018484 0.5 0.497607359815 +UniRef50_UPI00046AA788 hypothetical protein 0.42551049087 0.5 0.0744895091297 +UniRef50_Q2SPQ1 Chemotaxis response regulator protein glutamate methylesterase 1 3.7858212466 0.500000000001 -3.2858212466 +UniRef50_Q51465 Flagellar motor switch protein FliM 1.15761044255 0.5 -0.657610442549 +UniRef50_UPI000479C05A malate 0.163313245009 0.5 0.336686754991 +UniRef50_I2FD14 UDP glucose 4 epimerase 0.0599325466231 0.5 0.440067453376 +UniRef50_Q2IFU3 Pantothenate synthetase 2.31896211598 0.500000000003 -1.81896211598 +UniRef50_Q1J0G9 Aminotransferase, class V 0.0140216026624 0.5 0.485978397338 +UniRef50_H8GYV6 0.00403985799528 0.5 0.495960142005 +UniRef50_A5X3K4 Polyphenol oxidase 1.94555529673 0.5 -1.44555529673 +UniRef50_P76555 Ethanolamine utilization protein EutQ 0.571577505711 0.5 -0.0715775057109 +UniRef50_Q83II9 Ascorbate specific permease IIC component UlaA 1.20329908909 0.5 -0.70329908909 +UniRef50_UPI0004688BBC flagellar motor switch protein 0.658730193371 0.5 -0.158730193371 +UniRef50_D8N1D9 0.328167827252 0.5 0.171832172748 +UniRef50_C5B779 Protein CreA 0.585008824343 0.5 -0.0850088243426 +UniRef50_K0HWI3 NADPH dependent FMN reductase 0.0230391944799 0.5 0.47696080552 +UniRef50_P75693 0.884114949003 0.5 -0.384114949003 +UniRef50_UPI00034B5B3B hypothetical protein 0.349214209934 0.5 0.150785790066 +UniRef50_E7B3D1 Metallo beta lactamase superfamily protein PA0057 19.6356444047 0.500000000006 -19.1356444047 +UniRef50_D8HDI6 Pyridoxal dependent decarboxylase 2.43788114528 0.499999999999 -1.93788114528 +UniRef50_X7FEK2 0.59075312271 0.5 -0.0907531227099 +UniRef50_UPI00047DFC44 hypothetical protein 0.0898501183459 0.5 0.410149881654 +UniRef50_B0VLY8 0.00563234808882 0.5 0.494367651911 +UniRef50_Q6A7P4 Riboflavin biosynthesis protein RibF 0.0235416984589 0.5 0.476458301541 +UniRef50_Q08052 Ribulose bisphosphate carboxylase small chain 3.79014427202 0.5 -3.29014427202 +UniRef50_D4HAX6 ROK family protein 0.01601698407 0.5 0.48398301593 +UniRef50_E0RV96 Rhamnulose 1 phosphate aldolase 0.422644278068 0.5 0.077355721932 +UniRef50_P69854 Tat proofreading chaperone DmsD 1.01932573026 0.5 -0.519325730258 +UniRef50_U6I0U9 Glutamyl tRNA amidotransferase subunit B, mitochondrial 0.563664980769 0.5 -0.0636649807695 +UniRef50_UPI00036CBFA7 hypothetical protein 0.315126838986 0.5 0.184873161014 +UniRef50_A3PIF9 PRC barrel domain protein 5.65229424189 0.500000000001 -5.15229424189 +UniRef50_Q8RD56 AAA superfamily ATPases with N terminal receiver domain 0.129914395338 0.5 0.370085604662 +UniRef50_P09384 Chemotaxis protein CheA 2.00907846523 0.499999999998 -1.50907846523 +UniRef50_A6QE42 0.724087980587 0.5 -0.224087980587 +UniRef50_Q6F806 0.0145717481613 0.5 0.485428251839 +UniRef50_I1ZNS6 Cation efflux protein 0.0650664548461 0.5 0.434933545154 +UniRef50_Q4SPJ4 Chromosome 16 SCAF14537, whole genome shotgun sequence. 4.86190892486 0.499999999999 -4.36190892486 +UniRef50_Q9LDF4 0.0294680977058 0.5 0.470531902294 +UniRef50_Q37370 Cytochrome c oxidase subunit 1+2 0.158453620236 0.5 0.341546379764 +UniRef50_B2S5Z1 Indole 3 glycerol phosphate synthase 3.35727760061 0.5 -2.85727760061 +UniRef50_A7MEJ4 Spermidine export protein MdtJ 0.411758326785 0.5 0.0882416732147 +UniRef50_R9YQ52 Sugar transporter family protein 1.58819208021 0.5 -1.08819208021 +UniRef50_UPI000476FBDE hypothetical protein 1.71551317511 0.5 -1.21551317511 +UniRef50_Q5HL84 Gamma glutamyltranspeptidase 1.0879877215 0.5 -0.587987721503 +UniRef50_UPI00041118D3 PTS beta glucoside transporter subunit IIABC 0.141845393252 0.5 0.358154606748 +UniRef50_Q58991 Homoisocitrate dehydrogenase 0.294358287234 0.5 0.205641712766 +UniRef50_D7I1Z9 Dienelactone hydrolase 0.0321725189436 0.5 0.467827481056 +UniRef50_UPI0003B77390 DNA directed RNA polymerase subunit alpha 0.667931361826 0.5 -0.167931361826 +UniRef50_F3ZLH7 2.52801336765 0.5 -2.02801336765 +UniRef50_Q8U8I2 Serine 3 dehydrogenase 0.560892121755 0.5 -0.0608921217549 +UniRef50_D6B8D3 Primosome assembly protein PriA 0.00484490782879 0.5 0.495155092171 +UniRef50_Q03IX4 Protein translocase subunit SecA 2.46536421142 0.5 -1.96536421142 +UniRef50_H8GTG2 Putative serine protease 0.0775338080827 0.5 0.422466191917 +UniRef50_H9UPI6 Porin thermoregulatory protein envY 2.84610039159 0.499999999998 -2.34610039159 +UniRef50_UPI00041B2F47 hypothetical protein 0.301287166086 0.5 0.198712833914 +UniRef50_B9KJW8 Methyl accepting chemotaxis sensory transducer 0.339587927346 0.5 0.160412072654 +UniRef50_J0MRE5 2.64585082149 0.500000000001 -2.14585082149 +UniRef50_UPI000373B743 hypothetical protein 1.06418351118 0.5 -0.564183511183 +UniRef50_A6LQ39 0.563551637171 0.5 -0.0635516371713 +UniRef50_UPI00037EEBFC hypothetical protein 0.313609766298 0.5 0.186390233702 +UniRef50_A6LXC6 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor 0.151182994779 0.5 0.348817005221 +UniRef50_T1ZMP3 Competence protein 0.107502071319 0.5 0.392497928681 +UniRef50_Q3JTH0 0.0565687091359 0.499999999999 0.443431290865 +UniRef50_D2NF85 1.12245221379 0.5 -0.622452213791 +UniRef50_B1ZB21 ABC transporter related 1.84692597846 0.5 -1.34692597846 +UniRef50_E6S7U2 Molybdopterin dehydrogenase FAD binding protein 0.00875221289828 0.5 0.491247787102 +UniRef50_UPI00046CF8F3 hypothetical protein, partial 1.08667408734 0.5 -0.586674087338 +UniRef50_G6CYT2 Arrestin domain containing 4 0.381445318325 0.5 0.118554681675 +UniRef50_Q2S026 2,3 bisphosphoglycerate independent phosphoglycerate mutase 1.57254284711 0.500000000002 -1.07254284712 +UniRef50_G2SQT2 ABC transporter, ATP binding protein 2.13496787534 0.5 -1.63496787534 +UniRef50_B3DTC2 Phosphoglucosamine mutase 0.00928852876166 0.5 0.490711471238 +UniRef50_I6TYE3 Transcription regulator 2.37369161398 0.499999999999 -1.87369161397 +UniRef50_P0AAA0 Putative L,D transpeptidase YafK 2.10499999244 0.5 -1.60499999244 +UniRef50_Q8L847 Biotin synthase Bio B 0.183926618183 0.5 0.316073381818 +UniRef50_F5M104 ABC transporter related protein 1.10378553655 0.5 -0.603785536553 +UniRef50_C5MZ72 2.14877184903 0.500000000002 -1.64877184903 +UniRef50_UPI0003C75BDD hypothetical protein 0.564561113603 0.5 -0.064561113603 +UniRef50_Q8CMX3 Phosphoadenosine phosphosulfate reductase 0.412894931431 0.5 0.0871050685691 +UniRef50_M9S1K0 Type III secretion protein PcrV 0.422181011907 0.5 0.0778189880931 +UniRef50_UPI000372BC15 hypothetical protein 0.287473073967 0.5 0.212526926033 +UniRef50_D4MD52 ABC type proline glycine betaine transport system, permease component 0.945741006878 0.5 -0.445741006878 +UniRef50_C6XQD6 Polygalacturonase 0.00122855413205 0.5 0.498771445868 +UniRef50_Q52666 Glutamate glutamine aspartate asparagine transport ATP binding protein BztD 1.46891134022 0.499999999999 -0.968911340219 +UniRef50_UPI000465B0D7 hypothetical protein 1.18193046288 0.5 -0.681930462877 +UniRef50_F6K0S0 Silk fibroin 1.24451598171 0.5 -0.744515981712 +UniRef50_H2WUA1 0.0510794976545 0.5 0.448920502345 +UniRef50_Q1RFT2 0.0310018029207 0.5 0.46899819708 +UniRef50_R1H4G9 Immunogenic protein 2.57031511661 0.5 -2.07031511661 +UniRef50_UPI00036D594A hypothetical protein 0.0131898781593 0.5 0.486810121841 +UniRef50_UPI0003C19FB7 PREDICTED 0.309600347439 0.5 0.190399652561 +UniRef50_UPI00035D526E hypothetical protein 1.78664260568 0.5 -1.28664260568 +UniRef50_UPI00046A043A hypothetical protein 2.48632459185 0.499999999999 -1.98632459185 +UniRef50_R4XQ21 Phage minor tail protein 0.121885342352 0.5 0.378114657649 +UniRef50_Q017S2 Probable membrane protein YCR013c yeast 0.310394294382 0.5 0.189605705618 +UniRef50_B5XJ20 Bifunctional purine biosynthesis protein PurH 0.706882532176 0.5 -0.206882532176 +UniRef50_P56117 0.0226112871142 0.5 0.477388712886 +UniRef50_UPI0002B49AD0 PREDICTED 0.545340632771 0.5 -0.0453406327709 +UniRef50_A6LTX3 0.956837306259 0.5 -0.456837306259 +UniRef50_UPI00046A5CCB PA phosphatase 1.08460880842 0.5 -0.584608808417 +UniRef50_Q3IW22 L alanine exporter AlaE 1.12919739452 0.5 -0.629197394523 +UniRef50_F9Z196 Oligopeptide binding protein OppA 0.00888995923209 0.5 0.491110040768 +UniRef50_O83940 Ribosomal RNA small subunit methyltransferase I 0.15680990473 0.5 0.343190095269 +UniRef50_UPI0002628324 arginine ABC transporter ATP binding protein 1.48314057558 0.500000000001 -0.983140575582 +UniRef50_D5APQ0 1.01581764014 0.5 -0.515817640135 +UniRef50_Q4EQ49 1.81229897166 0.5 -1.31229897166 +UniRef50_A8Z3H2 TetR family transcriptional regulator 1.75341908229 0.5 -1.25341908229 +UniRef50_Q5M103 ATP synthase epsilon chain 0.414508865521 0.5 0.0854911344794 +UniRef50_Q88LV4 GTP cyclohydrolase 1 1 0.569497686813 0.5 -0.0694976868126 +UniRef50_UPI0003775137 hypothetical protein 0.134858907642 0.5 0.365141092358 +UniRef50_Q8NM41 Peptide deformylase 2 0.0973720339073 0.5 0.402627966093 +UniRef50_Q99SN7 1.10254121099 0.5 -0.602541210989 +UniRef50_G0DRT9 Regulatory protein 0.00127694545087 0.5 0.498723054549 +UniRef50_Q8X7W7 Catecholate siderophore receptor Fiu 2.21198426499 0.499999999999 -1.71198426499 +UniRef50_S6BDB2 Methionine tRNA ligase 0.74994574467 0.5 -0.24994574467 +UniRef50_G0FNR8 1.85639812368 0.499999999999 -1.35639812368 +UniRef50_J5L0G3 Chaperone protein HscA 0.456542895704 0.5 0.0434571042961 +UniRef50_B9EUP4 1.66599499649 0.500000000001 -1.1659949965 +UniRef50_Q21WE1 Alcohol dehydrogenase, zinc binding 1.21212945334 0.5 -0.712129453343 +UniRef50_U6IF34 Heat shock protein 71 kDa protein 1.44022265996 0.5 -0.94022265996 +UniRef50_Q6LV34 RNA polymerase associated protein RapA 1.23920076772 0.499999999999 -0.739200767721 +UniRef50_H8GTZ6 0.00212514160934 0.5 0.49787485839 +UniRef50_UPI0003C7D07B hypothetical protein 0.884477391758 0.5 -0.384477391758 +UniRef50_B6EJ93 Imidazole glycerol phosphate synthase subunit HisF 0.0524254061732 0.5 0.447574593827 +UniRef50_Q8UBB7 sn glycerol 3 phosphate import ATP binding protein UgpC 2 0.86512221937 0.5 -0.36512221937 +UniRef50_A8F986 50S ribosomal protein L4 0.779969471673 0.5 -0.279969471673 +UniRef50_UPI0003B645FE protein pucC, partial 0.997665505137 0.5 -0.497665505137 +UniRef50_C8X890 Two component transcriptional regulator, LuxR family 0.0591434272491 0.5 0.440856572751 +UniRef50_K0ECU0 CreA protein 0.967537350929 0.5 -0.467537350929 +UniRef50_UPI00040FE389 O sialoglycoprotein endopeptidase 0.107336925819 0.5 0.392663074181 +UniRef50_R5FR54 0.00130830243661 0.5 0.498691697563 +UniRef50_UPI00036C9093 hypothetical protein 0.514453659397 0.5 -0.014453659397 +UniRef50_O13774 GTP cyclohydrolase 1 0.39745075833 0.5 0.10254924167 +UniRef50_G0DV83 HAD hydrolase, family IIB 0.132968083606 0.5 0.367031916394 +UniRef50_B0TH67 tRNA ) methyltransferase 1.4386698092 0.5 -0.938669809203 +UniRef50_D2TMN6 Proofreading thioesterase EntH 7.6618482406 0.5 -7.1618482406 +UniRef50_B2V2W5 Sensor histidine kinase 0.0904333504048 0.5 0.409566649595 +UniRef50_UPI0003671A9B hypothetical protein 0.89004615846 0.5 -0.39004615846 +UniRef50_UPI0004719C11 DNA topoisomerase III, partial 0.155781317428 0.5 0.344218682572 +UniRef50_Q7CQ37 Flagellar regulator flk 1.01172053321 0.5 -0.511720533214 +UniRef50_O84867 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.813229282854 0.5 -0.313229282854 +UniRef50_Q882G0 3,4 dihydroxy 2 butanone 4 phosphate synthase 0.0142786024443 0.5 0.485721397556 +UniRef50_Q8RDK3 2 isopropylmalate synthase 1 0.752945387063 0.5 -0.252945387063 +UniRef50_B2RIJ1 GTP cyclohydrolase 1 0.371777506479 0.5 0.128222493521 +UniRef50_UPI0002376FCC putative D amino acid dehydrogenase small subunit, partial 0.741526729617 0.5 -0.241526729617 +UniRef50_Q8DWE5 Tagatose 1,6 diphosphate aldolase 2 1.55119654157 0.500000000001 -1.05119654157 +UniRef50_N0A6X1 Pirin family protein 0.268882465067 0.5 0.231117534933 +UniRef50_D4H966 0.0120558746944 0.5 0.487944125306 +UniRef50_Q2NCT3 Peptide deformylase 0.329740995625 0.5 0.170259004375 +UniRef50_G7M922 GAF modulated sigma54 specific transcriptional regulator, Fis family 0.10185351111 0.5 0.39814648889 +UniRef50_D4DVN6 0.00371775166334 0.5 0.496282248336 +UniRef50_D9RE87 Superantigen like protein 5.77977304744 0.500000000011 -5.27977304745 +UniRef50_UPI0003781EF8 hypothetical protein 0.839329634458 0.5 -0.339329634458 +UniRef50_UPI000467DD39 hypothetical protein 1.95654279119 0.5 -1.45654279119 +UniRef50_U5MQB3 BglP 0.173795714437 0.5 0.326204285563 +UniRef50_W7YQJ5 L serine dehydratase 0.248039606217 0.5 0.251960393783 +UniRef50_Q3J213 Histone like nucleoid structuring protein H NS 0.108218061906 0.5 0.391781938094 +UniRef50_UPI0002481AA6 type II secretion system protein E 0.358518743021 0.5 0.141481256979 +UniRef50_UPI0002C431F7 PREDICTED 0.490239618065 0.5 0.00976038193493 +UniRef50_Q9RZQ5 0.00109980578593 0.5 0.498900194214 +UniRef50_UPI00036E554C hypothetical protein 0.533428927982 0.5 -0.0334289279817 +UniRef50_Q9RZQ2 0.000990402613975 0.5 0.499009597386 +UniRef50_D8JIG9 TetR family regulatory protein 0.0370316484625 0.499999999999 0.462968351538 +UniRef50_A3PMN1 2.41492348089 0.5 -1.91492348089 +UniRef50_UPI00041FCE8E 16S rRNA methyltransferase 0.431392746708 0.5 0.0686072532924 +UniRef50_U3AG04 4.06392431668 0.5 -3.56392431668 +UniRef50_Q4FQ57 tRNA dihydrouridine synthase 0.0144252414012 0.499999999999 0.4855747586 +UniRef50_F6B6L3 Biotin and thiamin synthesis associated 0.0206559404219 0.5 0.479344059578 +UniRef50_W8T306 0.327860575551 0.5 0.172139424449 +UniRef50_UPI0000E48B78 0.578404308699 0.5 -0.0784043086991 +UniRef50_G7U5D1 0.172953262456 0.5 0.327046737544 +UniRef50_UPI0003B78451 Fur family transcriptional regulator 0.222456565908 0.5 0.277543434092 +UniRef50_B7VBB6 0.666096737183 0.5 -0.166096737183 +UniRef50_Q9XAQ2 Peptide deformylase 3 0.288753372952 0.5 0.211246627048 +UniRef50_UPI0003F78D52 dihydrolipoamide dehydrogenase 4.36284707172 0.499999999999 -3.86284707172 +UniRef50_UPI000470E763 50S ribosomal protein L20 0.187398542498 0.5 0.312601457502 +UniRef50_P76097 1.67552547566 0.5 -1.17552547566 +UniRef50_P76091 1.97769174837 0.5 -1.47769174837 +UniRef50_P76092 1.51051062812 0.5 -1.01051062812 +UniRef50_P76093 0.728142478504 0.5 -0.228142478504 +UniRef50_UPI0004726B91 succinylglutamate desuccinylase 1.16742863635 0.5 -0.667428636348 +UniRef50_Q65WJ9 2,3 diketo L gulonate reductase 2.05373325369 0.5 -1.55373325369 +UniRef50_P37079 Sorbitol 6 phosphate 2 dehydrogenase 1.18744233635 0.5 -0.687442336345 +UniRef50_M4VE07 1.83450316885 0.5 -1.33450316885 +UniRef50_Q4L9T6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 4.4328803886 0.499999999997 -3.9328803886 +UniRef50_G0W8W8 0.687967239204 0.5 -0.187967239204 +UniRef50_H8E1H7 Rhamnan synthesis F 0.33345659188 0.5 0.16654340812 +UniRef50_K8BHL7 0.472408571251 0.5 0.0275914287487 +UniRef50_A0LK48 Cytidylate kinase 0.705068423713 0.5 -0.205068423713 +UniRef50_A3PN16 malyl CoA thioesterase 0.518390651625 0.5 -0.0183906516251 +UniRef50_W5XB80 0.37369191988 0.5 0.12630808012 +UniRef50_I7EVV9 Protease DegQ 1.27805725017 0.5 -0.778057250174 +UniRef50_UPI0003C16653 PREDICTED 0.937578134546 0.5 -0.437578134546 +UniRef50_UPI0003748772 hypothetical protein 0.196272525364 0.5 0.303727474636 +UniRef50_N2KX33 Permease family protein 4.09589200112 0.499999999999 -3.59589200112 +UniRef50_UPI000422BE1C hypothetical protein 2.85511000983 0.5 -2.35511000983 +UniRef50_A3PIC8 GumN family protein 2.35866356137 0.500000000002 -1.85866356137 +UniRef50_UPI000476E7CA hypothetical protein, partial 0.0450045933918 0.5 0.454995406608 +UniRef50_Q45388 Protein tex 0.156147176973 0.5 0.343852823027 +UniRef50_A3PKD8 Flagellar basal body associated protein FliL 0.42875096119 0.5 0.0712490388098 +UniRef50_UPI0004631839 hypothetical protein 0.0936004012991 0.5 0.406399598701 +UniRef50_P0AEU2 Histidine binding periplasmic protein 4.44444511717 0.499999999999 -3.94444511717 +UniRef50_D2N8C9 Membrane protein, putative 4.71438851186 0.499999999999 -4.21438851186 +UniRef50_W0RB11 0.00655176965565 0.5 0.493448230344 +UniRef50_A3PRR5 2.75063709071 0.5 -2.25063709071 +UniRef50_A4WV09 Heme NO binding domain protein 2.25241833831 0.500000000001 -1.75241833831 +UniRef50_Q8CN58 Beta lactamase 3.13161093904 0.5 -2.63161093904 +UniRef50_A0LG38 Non canonical purine NTP pyrophosphatase 0.0944018792698 0.5 0.40559812073 +UniRef50_E4BAZ7 0.0262168012794 0.5 0.47378319872 +UniRef50_M4R8Z6 Allophanate hydrolase subunit 1 and 2 0.00561119725595 0.5 0.494388802744 +UniRef50_B2A6S5 0.00519626899622 0.5 0.494803731004 +UniRef50_A6LQH2 ATP synthase subunit b 1.16214962236 0.499999999999 -0.662149622361 +UniRef50_A0A059IQJ7 0.386669396664 0.5 0.113330603336 +UniRef50_UPI00047A44A8 hypothetical protein 0.473206257699 0.5 0.0267937423008 +UniRef50_M1MIH5 Methionine tRNA ligase MetG 0.22968160041 0.5 0.27031839959 +UniRef50_Q2J3G4 ABC transporter related 0.319560307808 0.5 0.180439692192 +UniRef50_D5AR59 Long chain fatty acid CoA ligase 1.37234122151 0.5 -0.872341221509 +UniRef50_M1MSQ9 Glycosyltransferase 0.103158418002 0.5 0.396841581998 +UniRef50_U5MP56 ATP dependent DNA helicase PcrA 0.173611930547 0.5 0.326388069453 +UniRef50_UPI0000557635 COG1494 1.80011975598 0.5 -1.30011975598 +UniRef50_B4U3D2 Glycerol 3 phosphate acyltransferase 0.810629708758 0.5 -0.310629708758 +UniRef50_Q47151 Probable endopeptidase YafL 1.36101026649 0.5 -0.861010266491 +UniRef50_P34918 Glyceraldehyde 3 phosphate dehydrogenase 3 1.7683839655 0.5 -1.2683839655 +UniRef50_A9V0F3 Predicted protein 0.883973362183 0.5 -0.383973362183 +UniRef50_UPI00026C7458 uridylate kinase 0.0183327134204 0.5 0.481667286579 +UniRef50_UPI000466CCAB hypothetical protein 6.98666098777 0.5 -6.48666098777 +UniRef50_G4SV55 0.478464229577 0.5 0.0215357704227 +UniRef50_D0CPI8 Membrane bound lytic murein transglycosylase A 1.33469925548 0.5 -0.834699255483 +UniRef50_Q9HTX6 Glycine cleavage system H protein 2 0.010916017559 0.499999999999 0.489083982442 +UniRef50_UPI0002FE2DAD hypothetical protein 0.00347795076968 0.499999999999 0.496522049231 +UniRef50_A5V6A9 1 deoxy D xylulose 5 phosphate synthase 2.21305332234 0.500000000001 -1.71305332234 +UniRef50_P37051 Formyltetrahydrofolate deformylase 0.762635902507 0.5 -0.262635902507 +UniRef50_M1MN84 Transcriptional regulator, TetR family 0.0777700287867 0.5 0.422229971213 +UniRef50_UPI0003B5D266 RNA polymerase sigma70 factor 0.402124704987 0.5 0.0978752950133 +UniRef50_B2UC97 0.22329426855 0.5 0.27670573145 +UniRef50_Q89AM1 Enoyl [acyl carrier protein] reductase [NADH] FabI 0.099009894029 0.5 0.400990105971 +UniRef50_UPI000379D6F2 hypothetical protein 0.428749323173 0.5 0.0712506768268 +UniRef50_D6SDD7 1.7701530578 0.500000000001 -1.2701530578 +UniRef50_A6M2T4 Transcriptional regulator, RpiR family 0.254985830974 0.5 0.245014169026 +UniRef50_P0C0G7 Glyceraldehyde 3 phosphate dehydrogenase 0.594436898853 0.5 -0.0944368988534 +UniRef50_U5MXQ9 Neutral endopeptidase PepO 0.0647550447306 0.5 0.43524495527 +UniRef50_Q1YYL9 0.167863836974 0.5 0.332136163026 +UniRef50_UPI0003DE8BE2 PREDICTED 0.170590209648 0.5 0.329409790352 +UniRef50_B2TKY4 0.0459149973798 0.5 0.45408500262 +UniRef50_V4KU43 1.18715727353 0.5 -0.687157273526 +UniRef50_Q2S8X6 0.652387925986 0.5 -0.152387925986 +UniRef50_Q9RWK1 0.0028103656581 0.5 0.497189634342 +UniRef50_G7U9N4 Sugar kinase 0.0272086545627 0.5 0.472791345438 +UniRef50_P0AAF8 Arginine transport ATP binding protein ArtP 0.392714174808 0.5 0.107285825192 +UniRef50_Q5HNW5 Protein GrpE 2.37824297921 0.5 -1.87824297921 +UniRef50_D9RBB0 ABC 2 type transport system permease protein 2.35111418915 0.499999999998 -1.85111418915 +UniRef50_B2IX22 Nucleoside diphosphate kinase 0.120597717954 0.5 0.379402282046 +UniRef50_P51599 GTP cyclohydrolase 1 0.336458288235 0.5 0.163541711765 +UniRef50_P39211 Xylulose kinase 1.27322389647 0.5 -0.773223896468 +UniRef50_Q8TUT7 Carbamoyl phosphate synthase large chain, C terminal section 0.0926567660484 0.5 0.407343233952 +UniRef50_P42455 2 isopropylmalate synthase 0.0154789924171 0.5 0.484521007583 +UniRef50_Z5QLE0 1.2805861932 0.500000000001 -0.780586193199 +UniRef50_Q7UUJ7 Arginine biosynthesis bifunctional protein ArgJ 0.24356538015 0.5 0.25643461985 +UniRef50_P37640 Putative HTH type transcriptional regulator YhjB 0.750110170825 0.5 -0.250110170825 +UniRef50_Q6N6M8 Putative 3 methyladenine DNA glycosylase 0.571507728376 0.5 -0.071507728376 +UniRef50_Q9HWF5 Protein translocase subunit SecY 2.72008994534 0.5 -2.22008994534 +UniRef50_Q1H4S2 Transcriptional regulator, BolA protein family 0.171003523126 0.5 0.328996476874 +UniRef50_UPI00047D0941 ribonuclease J 0.290231638725 0.5 0.209768361275 +UniRef50_D6RK40 0.339709055908 0.5 0.160290944092 +UniRef50_UPI00037D2EDA Fis family transcriptional regulator 0.208465395948 0.5 0.291534604052 +UniRef50_B7H290 Bacterial regulatory helix turn helix protein, AraC family protein 0.0659180252599 0.5 0.43408197474 +UniRef50_D9SLQ3 0.044117457169 0.5 0.455882542831 +UniRef50_D1QZF9 1.03207204632 0.5 -0.53207204632 +UniRef50_UPI0003773794 hypothetical protein, partial 0.340296216411 0.5 0.159703783589 +UniRef50_M2SBT2 0.486167599252 0.5 0.0138324007484 +UniRef50_W4SVI6 1.03234774394 0.5 -0.53234774394 +UniRef50_T0U4L8 2.12996966114 0.499999999999 -1.62996966114 +UniRef50_UPI00037CC475 RNaseH ribonuclease 0.302006364053 0.5 0.197993635947 +UniRef50_J0G9L6 2.56012405412 0.499999999999 -2.06012405412 +UniRef50_R5WWI1 Sugar efflux transporter 0.194540007584 0.5 0.305459992416 +UniRef50_Q8CSQ8 Two component sensor histidine kinase 1.81112395429 0.5 -1.31112395429 +UniRef50_UPI00034B82F7 hypothetical protein 0.362921730648 0.5 0.137078269352 +UniRef50_Q3STT6 Ribosomal RNA small subunit methyltransferase H 0.307385958775 0.5 0.192614041225 +UniRef50_UPI00016C4B38 hypothetical protein 0.0161383596481 0.499999999999 0.483861640353 +UniRef50_M1XJ95 0.126226060812 0.5 0.373773939188 +UniRef50_S1SS99 0.329257159217 0.5 0.170742840783 +UniRef50_Q9MB35 Peroxiredoxin Q, chloroplastic 0.0217439046641 0.5 0.478256095336 +UniRef50_Q9RU52 Propionyl CoA carboxylase, beta subunit, putative 0.00326890058669 0.5 0.496731099413 +UniRef50_A6LSX6 Metal dependent phosphohydrolase 0.124555016129 0.5 0.375444983871 +UniRef50_UPI000380524A hypothetical protein 0.053558008268 0.5 0.446441991732 +UniRef50_A5UNL2 Adhesin like protein 3.42994446806 0.499999999997 -2.92994446806 +UniRef50_UPI00037DF1FA hypothetical protein, partial 0.309300189023 0.5 0.190699810977 +UniRef50_P45475 2.83910309783 0.5 -2.33910309783 +UniRef50_A3PQA6 Transcriptional activator, TenA family 1.44699741922 0.5 -0.946997419223 +UniRef50_Q1QVP5 Phosphoribosylformylglycinamidine cyclo ligase 0.329280137419 0.5 0.170719862581 +UniRef50_M8BCA5 0.414894720973 0.5 0.0851052790269 +UniRef50_UPI0003699F3D hypothetical protein 2.34912018512 0.499999999999 -1.84912018512 +UniRef50_P44990 Putative L ribulose 5 phosphate 3 epimerase SgbU 0.513843945376 0.5 -0.0138439453763 +UniRef50_U3NFX9 ABC transporter ATP binding protein 1.64752015089 0.5 -1.14752015089 +UniRef50_UPI00035F71CA hypothetical protein, partial 0.586290548941 0.5 -0.0862905489409 +UniRef50_I5C4V6 0.655693311772 0.5 -0.155693311772 +UniRef50_C6DH09 Dipeptide and tripeptide permease A 1.13688981528 0.5 -0.636889815283 +UniRef50_K6WI65 0.153597943038 0.5 0.346402056962 +UniRef50_Q6FWS8 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.326066284452 0.5 0.173933715548 +UniRef50_P39361 Putative sgc region transcriptional regulator 2.12423942649 0.499999999998 -1.62423942649 +UniRef50_UPI00046EB60D FAD dependent oxidoreductase 2.91824866415 0.500000000001 -2.41824866415 +UniRef50_A2C638 Holliday junction ATP dependent DNA helicase RuvB 0.435937538543 0.5 0.0640624614567 +UniRef50_I0C1C0 2.17107701305 0.499999999997 -1.67107701305 +UniRef50_UPI00041A4D89 ABC transporter 0.143082420035 0.5 0.356917579965 +UniRef50_C6SPV4 2.44088379443 0.5 -1.94088379443 +UniRef50_A9M100 Inner membrane protein 0.0118773264711 0.5 0.488122673529 +UniRef50_Q8DXA0 Membrane protein, putative 0.131499918873 0.5 0.368500081127 +UniRef50_I6TR24 Transcriptional regulator 1.43712743668 0.5 -0.93712743668 +UniRef50_X6L6D5 4.03448928494 0.5 -3.53448928494 +UniRef50_N6V1G3 1.60347635495 0.5 -1.10347635495 +UniRef50_P18005 UPF0380 protein YubP 2.03073067457 0.5 -1.53073067457 +UniRef50_P96704 0.445432826137 0.5 0.0545671738628 +UniRef50_K7RW82 Inositol monophosphatase family protein 0.0699376041356 0.5 0.430062395864 +UniRef50_D5AQI9 RNA polymerase sigma factor RpoD 2.75068538748 0.5 -2.25068538748 +UniRef50_UPI000476E737 16S rRNA methyltransferase 0.220146786652 0.5 0.279853213348 +UniRef50_A4WNN4 Succinate dehydrogenase subunit D 6.39064556475 0.5 -5.89064556475 +UniRef50_P18190 Uptake hydrogenase small subunit 2.18801367085 0.500000000002 -1.68801367085 +UniRef50_K2DSW0 0.100320149791 0.499999999999 0.399679850209 +UniRef50_G1XZ93 1.19621101711 0.5 -0.69621101711 +UniRef50_Q8S4Y1 Acetyl CoA acetyltransferase, cytosolic 1 0.503286993589 0.5 -0.00328699358859 +UniRef50_G7LY81 Multi sensor signal transduction histidine kinase 0.0782949817939 0.5 0.421705018206 +UniRef50_Q7NF44 Glutathione synthetase 0.260520518342 0.5 0.239479481658 +UniRef50_A0M0D8 30S ribosomal protein S18 1.17124560245 0.5 -0.671245602451 +UniRef50_P11290 1.61771116676 0.5 -1.11771116676 +UniRef50_I6U2C8 Transcriptional regulator 0.293410615174 0.5 0.206589384826 +UniRef50_A6V7V9 70.9535427275 0.499999999896 -70.4535427274 +UniRef50_A3M2U1 Chromosome partition protein Smc 0.0100978657353 0.5 0.489902134265 +UniRef50_P39762 Aminopeptidase AmpS 0.0396182752475 0.5 0.460381724752 +UniRef50_Q6A6Z0 0.0155625275533 0.5 0.484437472446 +UniRef50_F5M502 1.01895996133 0.5 -0.518959961327 +UniRef50_UPI000287F837 alpha beta hydrolase 1.469872296 0.5 -0.969872296001 +UniRef50_F5M500 4.27006820111 0.500000000001 -3.77006820111 +UniRef50_UPI0003AD3586 hypothetical protein 0.479146490369 0.5 0.0208535096306 +UniRef50_G7U769 Translocase subunit 0.0234894785568 0.5 0.476510521443 +UniRef50_P37387 D xylose binding periplasmic protein 10.0472552166 0.500000000006 -9.54725521663 +UniRef50_W0YQG2 NADH dependent enoyl ACP reductase 0.146392970638 0.5 0.353607029362 +UniRef50_B8DVQ6 30S ribosomal protein S16 0.698116364752 0.5 -0.198116364752 +UniRef50_UPI0003B54983 heme ABC transporter ATP binding protein 0.0736791018636 0.5 0.426320898136 +UniRef50_G8V7W6 Myo inositol catabolism protein 0.0180513335323 0.5 0.481948666468 +UniRef50_R8ZC75 Sensor response regulator hybrid 1.04263555887 0.5 -0.542635558869 +UniRef50_UPI000237926B polar amino acid ABC transporter, inner membrane subunit 0.276883809623 0.5 0.223116190377 +UniRef50_Q9ZMX5 Threonine synthase 0.00911632568231 0.5 0.490883674318 +UniRef50_E4ZD88 CobW related protein 0.123123778358 0.5 0.376876221643 +UniRef50_Q8DVW8 Ribonuclease M5 1.09324749071 0.5 -0.593247490712 +UniRef50_A0A023RUP9 0.0938658882273 0.5 0.406134111773 +UniRef50_A4YJX9 Argininosuccinate synthase 0.252632478704 0.5 0.247367521296 +UniRef50_B8A191 0.273605626704 0.5 0.226394373296 +UniRef50_E3I166 Response regulator receiver protein 2.41361443307 0.499999999996 -1.91361443307 +UniRef50_B2S5M8 Glutamate tRNA ligase 1 1.52356001938 0.5 -1.02356001938 +UniRef50_P68398 tRNA specific adenosine deaminase 0.0311128185917 0.5 0.468887181408 +UniRef50_D4HA24 0.00140813859539 0.5 0.498591861404 +UniRef50_P22610 Type 4 prepilin like proteins leader peptide processing enzyme 0.946864313443 0.5 -0.446864313443 +UniRef50_UPI00031B36EE hypothetical protein 0.271070420674 0.5 0.228929579326 +UniRef50_A7IKH6 Chitin deacetylase 3.93256145474 0.499999999999 -3.43256145474 +UniRef50_W1YCR6 DNA polymerase II protein 0.0148491012725 0.5 0.485150898728 +UniRef50_R4UR16 Cobalamin synthesis protein P47K 0.382968610328 0.5 0.117031389672 +UniRef50_J3UP44 2.55814016421 0.5 -2.05814016421 +UniRef50_P48925 NADH ubiquinone oxidoreductase chain 6 3.84135238342 0.5 -3.34135238342 +UniRef50_UPI0004727F6C major facilitator transporter 0.771094767682 0.5 -0.271094767682 +UniRef50_G7U931 Anaerobic glycerol 3 phosphate dehydrogenase subunit B 0.0538929251163 0.5 0.446107074884 +UniRef50_Q67QM2 Oligopeptide ABC transporter permease protein 0.187555779552 0.5 0.312444220448 +UniRef50_F9YZR2 0.113488578032 0.500000000001 0.386511421967 +UniRef50_E8ZNH1 Magnesium transporter 0.0871781572868 0.5 0.412821842713 +UniRef50_UPI0004707272 peptide ABC transporter substrate binding protein 6.35051194303 0.499999999999 -5.85051194302 +UniRef50_A4VMC4 Isocitrate dehydrogenase kinase phosphatase 0.490964962356 0.5 0.00903503764369 +UniRef50_F9YZR4 0.292123393398 0.5 0.207876606602 +UniRef50_Q81G03 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.998060971036 0.5 -0.498060971036 +UniRef50_UPI000185F617 GTP binding protein lepA, putative 0.832998814095 0.5 -0.332998814095 +UniRef50_UPI00035F1A33 hypothetical protein 1.17643630188 0.5 -0.67643630188 +UniRef50_UPI00038FD59B Leu Ile Val binding protein homolog 1 0.167129268915 0.5 0.332870731085 +UniRef50_Q796Y8 Putative peroxiredoxin YgaF 0.0182875077925 0.5 0.481712492207 +UniRef50_C0QKP4 Holliday junction ATP dependent DNA helicase RuvB 0.556874918915 0.5 -0.0568749189153 +UniRef50_Q1QUS4 Leucyl phenylalanyl tRNA protein transferase 39.840775273 0.500000000043 -39.3407752731 +UniRef50_Q9FEA2 Glutamate tRNA ligase, chloroplastic mitochondrial 0.309364085974 0.5 0.190635914026 +UniRef50_R0D1R5 0.512880955274 0.5 -0.0128809552743 +UniRef50_UPI0003C19684 13.4856474023 0.499999999996 -12.9856474022 +UniRef50_UPI00022B367A PREDICTED 0.540632122835 0.5 -0.0406321228348 +UniRef50_A3PJ06 0.251843739623 0.5 0.248156260377 +UniRef50_Q89IA9 Blr5730 protein 19.4230949732 0.499999999994 -18.9230949732 +UniRef50_UPI000395A40D hemin ABC transporter ATP binding protein 0.0247868357329 0.5 0.475213164267 +UniRef50_UPI0004737F0F 50S ribosomal protein L4, partial 0.0491805968023 0.5 0.450819403198 +UniRef50_P36645 Protein transport protein HofB homolog 2.15799353656 0.5 -1.65799353656 +UniRef50_UPI00036C1E72 hypothetical protein 0.249126145659 0.5 0.250873854341 +UniRef50_Q479B1 D amino acid dehydrogenase small subunit 0.766952461666 0.5 -0.266952461666 +UniRef50_R5BVY8 Adenylylsulfate reductase 0.619803522727 0.5 -0.119803522727 +UniRef50_H8XBT8 Recombinase A 0.436805943206 0.5 0.0631940567937 +UniRef50_A8LGN1 Thioesterase superfamily protein 0.175170790965 0.5 0.324829209035 +UniRef50_Q59643 Delta aminolevulinic acid dehydratase 1.98796626348 0.5 -1.48796626348 +UniRef50_UPI000367F7CA hypothetical protein 0.643408764429 0.5 -0.143408764429 +UniRef50_Q5HNG0 D alanine aminotransferase 1.68471502398 0.5 -1.18471502398 +UniRef50_Q2FZK3 Protein FmtA 1.72245335673 0.500000000001 -1.22245335673 +UniRef50_W0RCE0 CHAT domain protein 0.164454277934 0.5 0.335545722067 +UniRef50_C9XLF6 NUDIX family protein 0.132516080022 0.5 0.367483919978 +UniRef50_K2FFD1 0.26369350276 0.5 0.23630649724 +UniRef50_B4SL85 Phosphatidate cytidylyltransferase 0.138494163872 0.5 0.361505836128 +UniRef50_B9DKR8 Mevalonate kinase 1.7900483911 0.499999999999 -1.2900483911 +UniRef50_F0YFQ2 Expressed protein 1.81564435755 0.5 -1.31564435755 +UniRef50_UPI0003AD8CD3 PREDICTED 0.741763827433 0.5 -0.241763827433 +UniRef50_C1KYW0 Peptide chain release factor 1 0.800180721054 0.5 -0.300180721054 +UniRef50_A8EQZ6 Phosphate ABC transporter, periplasmic phosphate binding protein 0.291928566976 0.5 0.208071433024 +UniRef50_UPI0004720687 hypothetical protein 0.166173621946 0.5 0.333826378054 +UniRef50_UPI000380DC03 hypothetical protein 0.204225140711 0.5 0.295774859289 +UniRef50_Q989X4 Mlr6247 protein 3.34337183029 0.500000000005 -2.8433718303 +UniRef50_Q9RZ42 0.00345486285026 0.5 0.49654513715 +UniRef50_UPI0003646AAD alkaline phosphatase 2.11228111263 0.5 -1.61228111263 +UniRef50_Q9RZ45 0.00243918004393 0.5 0.497560819956 +UniRef50_Q9RZ47 0.00326624360996 0.5 0.49673375639 +UniRef50_Q9RZ48 0.00144086820155 0.499999999999 0.498559131799 +UniRef50_Q6GIG7 Probable nitronate monooxygenase 5.98376089471 0.499999999998 -5.48376089471 +UniRef50_D5GYN2 Transcriptional regulator, repressor of sugar transport operon 0.841699096881 0.5 -0.341699096881 +UniRef50_P63946 4 hydroxy tetrahydrodipicolinate synthase 0.0106872540592 0.5 0.489312745941 +UniRef50_D4GJL5 UPF0246 protein PANA_0658 0.377051385118 0.5 0.122948614882 +UniRef50_A0A021ZQ34 ThiC associated domain protein 0.122058671521 0.5 0.377941328479 +UniRef50_I6T523 1.35075448383 0.5 -0.850754483825 +UniRef50_UPI00037F2099 hypothetical protein 0.189051432193 0.5 0.310948567807 +UniRef50_UPI0002559CF1 sulfate ABC transporter ATPase 0.809352999655 0.5 -0.309352999655 +UniRef50_UPI0004768E22 hypothetical protein 0.0170593925253 0.499999999999 0.482940607476 +UniRef50_Q9PQU6 Methionine tRNA ligase 0.305432288113 0.5 0.194567711887 +UniRef50_B2N0Z3 Anaerobic dimethyl sulfoxide reductase chain A 1.44896863339 0.5 -0.948968633386 +UniRef50_C6DKE8 Altronate oxidoreductase 3.71996319964 0.500000000001 -3.21996319964 +UniRef50_Q8CQJ8 Penicillin binding protein 4 1.16448429284 0.5 -0.664484292843 +UniRef50_Q4A044 Histidinol dehydrogenase 2.76463756795 0.499999999999 -2.26463756794 +UniRef50_Z5YDT5 Replication initiator protein 3.26038628169 0.5 -2.76038628169 +UniRef50_V9FLN1 0.0123162824024 0.5 0.487683717598 +UniRef50_Q2VP64 0.347489372285 0.5 0.152510627715 +UniRef50_A9M916 Modification methylase BabI 1.33032702593 0.5 -0.830327025927 +UniRef50_D2NA34 1.53633955856 0.5 -1.03633955856 +UniRef50_P06202 Periplasmic oligopeptide binding protein 2.78498693133 0.499999999999 -2.28498693133 +UniRef50_UPI0002F32181 glycerophosphoryl diester phosphodiesterase 1.4179927652 0.5 -0.917992765199 +UniRef50_M9V9X8 6 phosphogluconolactonase 0.0474751270949 0.5 0.452524872905 +UniRef50_D5BS61 RNA polymerase, sigma 28 subunit, FliA WhiG 1.25817037058 0.5 -0.758170370582 +UniRef50_UPI0003AD846F PREDICTED 0.83159964509 0.5 -0.33159964509 +UniRef50_I0C6W8 Staphylococcal accessory regulator 7.05694351982 0.499999999999 -6.55694351981 +UniRef50_A6LWF3 Diguanylate cyclase phosphodiesterase 0.241698351755 0.5 0.258301648245 +UniRef50_UPI00041214C6 biotin attachment protein 0.573470807163 0.5 -0.0734708071627 +UniRef50_D3E6A1 Respiratory nitrate reductase, gamma subunit 1.15855908037 0.5 -0.65855908037 +UniRef50_Q21JR5 0.491493618213 0.5 0.00850638178666 +UniRef50_A0JXX3 D alanine D alanine ligase 0.032764207852 0.5 0.467235792148 +UniRef50_UPI00035DE730 hypothetical protein 0.0374516657922 0.5 0.462548334208 +UniRef50_B7KZS8 0.77557170693 0.5 -0.27557170693 +UniRef50_UPI000382DE8E MULTISPECIES 0.225389546154 0.5 0.274610453846 +UniRef50_UPI0000E116E2 two component LuxR family transcriptional regulator 0.31024876583 0.5 0.18975123417 +UniRef50_A4WNW4 Transposase, IS4 family 0.661242574923 0.5 -0.161242574923 +UniRef50_A1BF67 Bifunctional protein FolD 1.66024807441 0.5 -1.16024807441 +UniRef50_P0ABZ3 Flagellar motor switch protein FliG 2.12147706987 0.500000000002 -1.62147706987 +UniRef50_N5AMH8 Diacetyl reductase [ acetoin forming] 0.802617014371 0.5 -0.302617014371 +UniRef50_F0YAY5 0.847418500262 0.5 -0.347418500262 +UniRef50_A6KXK3 3 oxoacyl [acyl carrier protein] synthase 3 0.00429771419309 0.5 0.495702285807 +UniRef50_Q5NQ43 Adenylate kinase 0.288912283813 0.5 0.211087716187 +UniRef50_UPI00036D1E75 NADPH 0.056882955824 0.5 0.443117044176 +UniRef50_I0UU63 0.115350947969 0.5 0.384649052031 +UniRef50_Q5HQ74 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex 1.61915114181 0.5 -1.11915114181 +UniRef50_D3DYQ8 Isoleucine tRNA ligase 1.84893347938 0.499999999999 -1.34893347938 +UniRef50_UPI00046F3F36 hypothetical protein, partial 0.644124602666 0.5 -0.144124602666 +UniRef50_Q96528 Catalase 1 0.178218331006 0.5 0.321781668994 +UniRef50_K8DL52 Ribonuclease E 4.24739740446 0.5 -3.74739740446 +UniRef50_P30793 GTP cyclohydrolase 1 0.75983280483 0.5 -0.25983280483 +UniRef50_Q8X7L9 Tyrosine protein kinase wzc 2.08723676713 0.5 -1.58723676713 +UniRef50_UPI00036966F0 30S ribosomal protein S2 0.617661198633 0.5 -0.117661198633 +UniRef50_W1MMZ8 0.134672812921 0.5 0.365327187079 +UniRef50_UPI000377C983 phospholipase C 0.364071324024 0.5 0.135928675976 +UniRef50_P32151 1.97771439297 0.500000000001 -1.47771439297 +UniRef50_B4D0M3 3.78333482451 0.499999999999 -3.28333482451 +UniRef50_UPI0003B38626 hypothetical protein 0.0118468809081 0.499999999999 0.488153119092 +UniRef50_UPI00037E7CCD hypothetical protein 1.05079820034 0.5 -0.550798200337 +UniRef50_UPI0003B6D2EE diaminopimelate decarboxylase 0.0235746059582 0.5 0.476425394042 +UniRef50_E3D189 Adhesin MafB2 0.0438449312646 0.5 0.456155068735 +UniRef50_UPI0003B777B8 hypothetical protein, partial 1.61888005006 0.5 -1.11888005006 +UniRef50_V6F621 0.15794433788 0.5 0.34205566212 +UniRef50_UPI0003F4A07E hypothetical protein TREMEDRAFT_69682 0.270033686218 0.5 0.229966313782 +UniRef50_UPI0004772D62 hypothetical protein 0.066205316331 0.5 0.433794683669 +UniRef50_P51973 Competence protein ComA 0.0280602558073 0.5 0.471939744193 +UniRef50_R8HF68 0.00545647588401 0.5 0.494543524116 +UniRef50_UPI00034D0998 hypothetical protein 0.270409455376 0.5 0.229590544624 +UniRef50_UPI000470E01F transposase 0.00286738275178 0.5 0.497132617248 +UniRef50_R1CYW6 0.0760434464463 0.5 0.423956553554 +UniRef50_UPI0004753801 5 hydroxyisourate hydrolase 0.404850684013 0.5 0.0951493159872 +UniRef50_Q1QUQ7 Transcriptional regulator, LysR family 0.364689053567 0.5 0.135310946433 +UniRef50_UPI0002C376E7 0.508127576632 0.5 -0.00812757663166 +UniRef50_UPI00037266A5 MULTISPECIES 0.64927314695 0.5 -0.14927314695 +UniRef50_A5ISN2 0.266695162321 0.5 0.233304837679 +UniRef50_I4API8 Mg chelatase subunit ChlI 0.0777180224578 0.5 0.422281977542 +UniRef50_X6KUI6 0.0676834885749 0.5 0.432316511425 +UniRef50_Q849Z0 2.38067145705 0.499999999999 -1.88067145705 +UniRef50_G6A195 0.332238077411 0.5 0.167761922589 +UniRef50_P46331 2.35929712183 0.499999999999 -1.85929712183 +UniRef50_B6JCL5 0.0603860112419 0.5 0.439613988758 +UniRef50_F0P804 6.6931856924 0.500000000003 -6.19318569241 +UniRef50_W1YTI2 0.03337557263 0.5 0.46662442737 +UniRef50_P77279 Probable iron export ATP binding protein FetA 1.12904459461 0.5 -0.629044594608 +UniRef50_A3CKQ0 Malate permease, putative 0.969239817882 0.5 -0.469239817882 +UniRef50_UPI000288D813 hypothetical protein 4.22733725524 0.500000000001 -3.72733725524 +UniRef50_Q03LK9 ABC type amino acid transport system, permease component 1.461831755 0.5 -0.961831754999 +UniRef50_D5ASM5 Type I secretion membrane fusion protein, HlyD family 1.44488370746 0.5 -0.944883707455 +UniRef50_B8ZUE2 GMP synthase [glutamine hydrolyzing] 0.268233141684 0.5 0.231766858316 +UniRef50_A0PZM2 4 hydroxy tetrahydrodipicolinate reductase 0.125649616231 0.499999999999 0.37435038377 +UniRef50_UPI0004207E45 hypothetical protein 0.371263246904 0.5 0.128736753096 +UniRef50_G5JDC1 0.15144914717 0.5 0.34855085283 +UniRef50_H8HKL3 Acyl CoA dehydrogenase FadE23 2.56313569591 0.5 -2.06313569591 +UniRef50_UPI00022CA85D PREDICTED 0.0194641546047 0.5 0.480535845396 +UniRef50_UPI00016C57C9 lysyl tRNA synthetase 0.396037279009 0.5 0.103962720991 +UniRef50_P30852 Protein smf 1.80296720311 0.499999999999 -1.30296720311 +UniRef50_UPI0003A4112D cell division protein FtsZ 0.164795023088 0.5 0.335204976912 +UniRef50_A9WLY4 Cysteine tRNA ligase 0.190756948094 0.5 0.309243051906 +UniRef50_UPI00037650D9 hypothetical protein 0.181495972717 0.5 0.318504027283 +UniRef50_UPI0003C1696D PREDICTED 0.720242492567 0.5 -0.220242492567 +UniRef50_Q9RZG7 Transposase related 0.00049622105701 0.5 0.499503778943 +UniRef50_UPI0004726E09 porin 1.61268334415 0.5 -1.11268334415 +UniRef50_J6J4P6 0.520157631653 0.5 -0.0201576316527 +UniRef50_UPI0004785436 acetolactate synthase 0.0129659730795 0.5 0.48703402692 +UniRef50_A0A058ZLV2 Tim44 family protein 0.689066451821 0.5 -0.189066451821 +UniRef50_C5QYU7 5.16247591705 0.5 -4.66247591705 +UniRef50_M9KGL8 Alpha beta hydrolase family protein 1.64467187983 0.5 -1.14467187983 +UniRef50_L0WM00 NAD+ synthetase 0.0173357845527 0.5 0.482664215447 +UniRef50_UPI000314C40B hypothetical protein 0.378380663198 0.5 0.121619336802 +UniRef50_Q89FG2 Coenzyme PQQ synthesis protein D 0.723454062718 0.5 -0.223454062718 +UniRef50_U6JTT0 Beta tubulin cofactor d, putative 0.307601528034 0.5 0.192398471966 +UniRef50_UPI0003492D90 MULTISPECIES 0.00803006621047 0.5 0.49196993379 +UniRef50_Q57975 Putative aminopeptidase MJ0555 0.907077477414 0.5 -0.407077477414 +UniRef50_E3GPG2 Phage prohead protease 0.507187087539 0.5 -0.00718708753867 +UniRef50_I6TPD4 MutE 6.78118174119 0.500000000003 -6.28118174119 +UniRef50_UPI00047CC989 magnesium transporter 13.8694361916 0.499999999996 -13.3694361916 +UniRef50_UPI0003ACFD18 hypothetical protein 0.00261025178198 0.499999999999 0.497389748219 +UniRef50_UPI0001FFE023 cation diffusion facilitator family transporter 0.0929315089366 0.5 0.407068491063 +UniRef50_V7ABJ2 Branched chain amino acid transport family protein 0.431087743865 0.5 0.068912256135 +UniRef50_W4UL00 Secreted lipoprotein 0.245265965643 0.5 0.254734034357 +UniRef50_Q9ZMN9 Fumarate reductase cytochrome b subunit 0.00733562429978 0.5 0.4926643757 +UniRef50_A0A023Z2T1 1.86839895259 0.500000000002 -1.36839895259 +UniRef50_P30744 L serine dehydratase 2 1.28704084633 0.5 -0.78704084633 +UniRef50_Q30T29 Phosphoheptose isomerase 0.360953219156 0.5 0.139046780844 +UniRef50_UPI0002492490 L serine ammonia lyase beta subunit, partial 0.041184098304 0.499999999999 0.458815901697 +UniRef50_P33650 Ferrous iron transport protein B 0.93843323557 0.5 -0.43843323557 +UniRef50_Q98IW6 Mll2216 protein 1.36439484699 0.5 -0.864394846991 +UniRef50_Q8TYM1 Putative citramalate synthase CimA 2.88562583595 0.5 -2.38562583595 +UniRef50_G3NJA9 0.673493049931 0.5 -0.173493049931 +UniRef50_UPI0001744894 3 phosphoglycerate dehydrogenase 0.541869906243 0.5 -0.0418699062431 +UniRef50_T4EWY4 DEAD DEAH box helicase family protein 0.199010366399 0.5 0.300989633601 +UniRef50_UPI00035CD489 hypothetical protein 0.412542282192 0.5 0.0874577178078 +UniRef50_B1ZP50 4 deoxy L threo 5 hexosulose uronate ketol isomerase 0.369687050339 0.5 0.130312949661 +UniRef50_A7X235 N anthranilate isomerase 8.79398240198 0.499999999998 -8.29398240198 +UniRef50_Q6MMY0 Lipoprotein releasing system ATP binding protein LolD 0.487018007027 0.5 0.012981992973 +UniRef50_U5MQT2 Diguanylate cyclase 0.0626978410543 0.500000000001 0.437302158945 +UniRef50_A5D504 N acetyl gamma glutamyl phosphate reductase 0.345859130223 0.5 0.154140869777 +UniRef50_UPI00036A45EE hypothetical protein, partial 0.409571116162 0.5 0.090428883838 +UniRef50_A1VBW6 Methylenetetrahydrofolate tRNA methyltransferase TrmFO 0.627906824722 0.5 -0.127906824722 +UniRef50_UPI0003A8F6AB hypothetical protein 0.0192536204978 0.5 0.480746379502 +UniRef50_K0R3E3 0.213573851278 0.5 0.286426148722 +UniRef50_Q5LQ58 Translation initiation factor IF 3 1.8047807006 0.5 -1.3047807006 +UniRef50_UPI00037C5039 hypothetical protein 0.00614335995172 0.5 0.493856640049 +UniRef50_A6LSJ0 0.210618206319 0.5 0.289381793681 +UniRef50_Q4MH05 0.32101185271 0.5 0.17898814729 +UniRef50_A3M6B4 0.0278386674288 0.5 0.472161332571 +UniRef50_R0FJ43 0.886108547137 0.5 -0.386108547137 +UniRef50_P57371 DNA topoisomerase 1 0.186261902871 0.5 0.313738097129 +UniRef50_A3M6B3 0.0266219786178 0.5 0.473378021382 +UniRef50_A3M6B2 0.017738864821 0.5 0.482261135179 +UniRef50_P37469 Replicative DNA helicase 1.16717549324 0.5 -0.66717549324 +UniRef50_O06851 Valine tRNA ligase 0.987555583207 0.5 -0.487555583207 +UniRef50_UPI00036C4ADF hypothetical protein 0.101835609507 0.499999999999 0.398164390494 +UniRef50_G7DHM9 0.19073960945 0.5 0.30926039055 +UniRef50_UPI0003B33000 ABC transporter ATP binding protein, partial 2.69607817713 0.499999999999 -2.19607817713 +UniRef50_UPI0002198415 LysR family transcriptional regulator 0.943670642248 0.5 -0.443670642248 +UniRef50_F2DNI7 Predicted protein 0.302493842013 0.5 0.197506157987 +UniRef50_J4Q6B5 IS1167, transposase domain protein 0.136240930838 0.5 0.363759069162 +UniRef50_P67641 UPF0735 ACT domain containing protein SA1469 3.50772262179 0.5 -3.00772262179 +UniRef50_A6LZA0 0.53813488526 0.5 -0.0381348852597 +UniRef50_Q6F925 0.0234223697993 0.5 0.476577630201 +UniRef50_Q1RJH2 ATP dependent Clp protease proteolytic subunit 0.395075010776 0.5 0.104924989224 +UniRef50_G7LZU7 GerA spore germination protein 0.0678686967154 0.5 0.432131303284 +UniRef50_A5UP49 3.41067191979 0.499999999999 -2.91067191979 +UniRef50_A3PFM0 1.24769322906 0.499999999999 -0.747693229056 +UniRef50_Q1RB71 0.674114187386 0.5 -0.174114187386 +UniRef50_Q4L5M1 Antibacterial protein 3 homolog 4.02387907075 0.5 -3.52387907075 +UniRef50_U9FRQ4 0.156038477614 0.5 0.343961522386 +UniRef50_P37017 4.66572997436 0.5 -4.16572997436 +UniRef50_UPI0003B51420 ABC transporter ATP binding protein 0.219282238677 0.5 0.280717761323 +UniRef50_UPI000378DF42 hypothetical protein 0.0782395433806 0.5 0.421760456619 +UniRef50_T1XUW5 6.41894845324 0.500000000001 -5.91894845324 +UniRef50_P13039 Enterochelin esterase 2.01561947684 0.499999999999 -1.51561947684 +UniRef50_K0CJ28 Quinohemoprotein alcohol dehydrogenase protein 0.851259982977 0.5 -0.351259982977 +UniRef50_UPI0003611858 hypothetical protein 0.321101856958 0.5 0.178898143042 +UniRef50_UPI00047763D0 metal ABC transporter permease 0.102267150124 0.5 0.397732849876 +UniRef50_D1GS39 MarR family regulatory protein 3.92017838411 0.500000000003 -3.42017838411 +UniRef50_UPI0003594BA5 PREDICTED 0.0106231319681 0.5 0.489376868032 +UniRef50_Q8E035 58.9320658145 0.499999999904 -58.4320658144 +UniRef50_UPI0003F5F292 hypothetical protein 1.31754477008 0.5 -0.81754477008 +UniRef50_R9ZBZ3 3.27329041982 0.500000000003 -2.77329041982 +UniRef50_R5RCP3 0.00158802338589 0.5 0.498411976614 +UniRef50_UPI00037F2711 hypothetical protein, partial 0.889013573702 0.5 -0.389013573702 +UniRef50_E5ASL7 Folylpolyglutamate synthase Dihydrofolate synthase (EC 6.3.2.12) 0.0315681140504 0.5 0.468431885949 +UniRef50_B9EUD8 0.382916234292 0.5 0.117083765708 +UniRef50_Q3J1Y6 Diguanylate cyclase phosphodiesterase with PAS PAC sensor 2.71193364842 0.5 -2.21193364842 +UniRef50_Q92405 Catalase B 0.267119809888 0.5 0.232880190112 +UniRef50_UPI00017448C8 DEAD DEAH box helicase like protein 0.0282181317762 0.5 0.471781868224 +UniRef50_U7DNX2 TonB denpendent receptor 0.287623913955 0.5 0.212376086045 +UniRef50_A5ULE5 Predicted transcriptional regulator 1.60278305962 0.499999999999 -1.10278305962 +UniRef50_UPI00036B87E5 hypothetical protein 2.17722939405 0.5 -1.67722939405 +UniRef50_S1T170 0.335538323197 0.5 0.164461676803 +UniRef50_Q5H1A4 Transposase 0.468138369521 0.5 0.0318616304791 +UniRef50_F0Y5C9 Expressed protein 2.92031576299 0.5 -2.42031576299 +UniRef50_U3TBQ8 0.0414702023626 0.5 0.458529797637 +UniRef50_Q2FEJ8 HTH type transcriptional regulator SarR 3.66456870299 0.500000000001 -3.164568703 +UniRef50_I7FYE4 Ethanolamine permease 0.101753410184 0.5 0.398246589816 +UniRef50_UPI0002628848 short chain dehydrogenase 0.518203038578 0.5 -0.018203038578 +UniRef50_P39369 5.58381604259 0.500000000001 -5.0838160426 +UniRef50_Q8AA15 Phosphomethylpyrimidine synthase 0.000451113903511 0.5 0.499548886097 +UniRef50_UPI0003B3A510 MULTISPECIES 0.336159141407 0.5 0.163840858593 +UniRef50_UPI00029B3B69 guanosine 3,5 bis 3 pyrophosphohydrolase 0.400259501364 0.5 0.0997404986356 +UniRef50_Q5HQL5 Na H(+) antiporter subunit F1 0.720266238798 0.5 -0.220266238798 +UniRef50_P27127 Lipopolysaccharide 1,6 galactosyltransferase 1.00619138091 0.5 -0.50619138091 +UniRef50_UPI000465DD48 hypothetical protein 0.893166920341 0.5 -0.393166920341 +UniRef50_Q880Z2 Xylose import ATP binding protein XylG 0.977972662867 0.5 -0.477972662867 +UniRef50_I2AGX0 0.00630215214715 0.5 0.493697847853 +UniRef50_R6VPX6 Lipoprotein 0.34511766614 0.5 0.15488233386 +UniRef50_P23145 Probable serine acetyltransferase 0.180102248993 0.5 0.319897751007 +UniRef50_V0UHK4 0.745535379625 0.5 -0.245535379625 +UniRef50_Q6W109 Tartrate dehydrogenase 2.39767842088 0.499999999999 -1.89767842088 +UniRef50_D6AP01 0.0342127512127 0.5 0.465787248787 +UniRef50_UPI00037CB222 hypothetical protein 1.53431614405 0.5 -1.03431614405 +UniRef50_G8VN68 Glycosyl hydrolase, alpha L fucosidase 0.00871310906496 0.5 0.491286890935 +UniRef50_B9KTR8 Methyl accepting chemotaxis sensory transducer 0.955540968518 0.5 -0.455540968518 +UniRef50_V5PNN3 Hydrogenase expression protein HypA 1.05874505465 0.5 -0.558745054648 +UniRef50_UPI000382E44E hypothetical protein 0.983562607857 0.5 -0.483562607857 +UniRef50_UPI0002E512FA hypothetical protein 0.0903489907453 0.5 0.409651009255 +UniRef50_R5MTV1 1.53995407996 0.5 -1.03995407996 +UniRef50_K7SJY0 CoA substrate specific enzyme activase 0.0111791352285 0.5 0.488820864771 +UniRef50_R0FCW6 Replication initiation protein RepC 0.564599869901 0.5 -0.0645998699013 +UniRef50_Q8DGX5 Phosphoribosylformylglycinamidine synthase 1 0.081831437988 0.5 0.418168562012 +UniRef50_R9ZNN5 Potassium transporter 0.573496657076 0.5 -0.0734966570765 +UniRef50_UPI0003826E10 hypothetical protein 0.814378766043 0.5 -0.314378766043 +UniRef50_G7UAA4 Arginine ornithine antiporter ArcD 0.0240419618509 0.5 0.475958038149 +UniRef50_H6CP54 0.0576127323336 0.5 0.442387267666 +UniRef50_V9WDP4 MmoB DmpM family 6.96972917391 0.499999999997 -6.46972917391 +UniRef50_M1N619 0.229433667264 0.5 0.270566332736 +UniRef50_U3T2N9 0.0128299089763 0.5 0.487170091024 +UniRef50_B9DTE1 Major Facilitator Superfamily protein 0.635392615145 0.5 -0.135392615145 +UniRef50_UPI0002F7BEAC hypothetical protein 0.624203696597 0.5 -0.124203696597 +UniRef50_W5X9K0 Cell division protein FtsZ 0.0622146355114 0.5 0.437785364488 +UniRef50_UPI0003A0AA3D hypothetical protein 0.367724844379 0.5 0.132275155621 +UniRef50_A0A059IQN5 Membrane protein 2.09643916778 0.499999999999 -1.59643916778 +UniRef50_UPI00046FD731 hypothetical protein 0.50171713559 0.5 -0.0017171355896 +UniRef50_U6GJB3 JmjC domain containing protein, putative 0.59177721022 0.5 -0.0917772102197 +UniRef50_A1S9I7 NAD transhydrogenase subunit beta 1.83716533737 0.5 -1.33716533737 +UniRef50_UPI00039D9A64 membrane protein 0.053135538311 0.5 0.446864461689 +UniRef50_P38035 Transcriptional regulatory protein RtcR 0.780967033667 0.5 -0.280967033667 +UniRef50_D3E234 4.61592251641 0.499999999999 -4.1159225164 +UniRef50_E8SEX9 Staphylococcal secretory antigen SssA 8.85708108823 0.500000000004 -8.35708108824 +UniRef50_M9Y2Q0 TonB dependent vitamin B12 receptor 0.489867469491 0.5 0.0101325305088 +UniRef50_UPI00047539FF orotate phosphoribosyltransferase 0.109945217289 0.5 0.390054782711 +UniRef50_P77315 Probable ABC transporter permease protein YphD 6.62461173903 0.499999999998 -6.12461173903 +UniRef50_G7M256 Sporulation protein YtaF 0.71915875882 0.5 -0.21915875882 +UniRef50_UPI00046F04B8 hypothetical protein 0.399728609708 0.5 0.100271390292 +UniRef50_T2ES40 0.513928263386 0.5 -0.0139282633863 +UniRef50_P39587 Putative ribosomal RNA large subunit methyltransferase YwbD 0.215235755248 0.5 0.284764244752 +UniRef50_A0K5P1 Transcriptional regulator, AsnC family 0.032595382024 0.5 0.467404617976 +UniRef50_N1ZJ21 3.20688946373 0.499999999999 -2.70688946373 +UniRef50_UPI00046FF2AA succinate dehydrogenase 0.0993993802948 0.5 0.400600619705 +UniRef50_Q2W2A3 Holliday junction ATP dependent DNA helicase RuvA 0.074660015776 0.5 0.425339984224 +UniRef50_N6V8V2 21.5382298202 0.500000000014 -21.0382298202 +UniRef50_A3N3J7 2.76483158182 0.5 -2.26483158182 +UniRef50_Q887Q2 Alginate production protein AlgE 0.671242963189 0.5 -0.171242963189 +UniRef50_UPI000470382C response regulator receiver protein 0.308724372094 0.5 0.191275627906 +UniRef50_P38102 0.844288649213 0.5 -0.344288649213 +UniRef50_Q9V1I6 N acetyl gamma glutamyl phosphate N acetyl gamma aminoadipyl phosphate reductase 0.0306400884801 0.5 0.46935991152 +UniRef50_Q8U194 Sulfide dehydrogenase subunit beta 0.0662953324366 0.5 0.433704667564 +UniRef50_A6LU85 0.0798580110936 0.5 0.420141988906 +UniRef50_UPI00046CF004 hypothetical protein 0.282983010801 0.5 0.217016989199 +UniRef50_Q9HYB8 Electron transport complex subunit C 0.473534846233 0.5 0.0264651537675 +UniRef50_Q0BUN4 50S ribosomal protein L18 0.369770564951 0.5 0.130229435049 +UniRef50_UPI00037ECE30 hypothetical protein 0.0961859879555 0.500000000001 0.403814012044 +UniRef50_F3P4A4 Periplasmic binding protein 0.0503293794733 0.5 0.449670620527 +UniRef50_UPI0003B4D558 prephenate dehydrogenase 0.0191390888012 0.499999999999 0.480860911199 +UniRef50_UPI0003B57E0D flagellar biosynthesis protein FlhB 4.9679292133 0.499999999997 -4.46792921329 +UniRef50_Q51785 Acyl homoserine lactone synthase 0.31639767146 0.5 0.18360232854 +UniRef50_UPI00041DC25F hypothetical protein 10.9968734579 0.500000000002 -10.4968734579 +UniRef50_U6I036 GTP cyclohydrolase I 0.0883663912763 0.5 0.411633608724 +UniRef50_A0A017HMU3 3.72241492259 0.5 -3.22241492259 +UniRef50_E8TGI4 1.31300902612 0.499999999999 -0.813009026117 +UniRef50_P60776 Lipoate protein ligase A 0.626613338602 0.5 -0.126613338602 +UniRef50_F5LYA2 Glycosyltransferase 4.07128500979 0.500000000001 -3.57128500979 +UniRef50_A0RAL4 Serine protein kinase RsbW 0.0379453657181 0.5 0.462054634282 +UniRef50_K7S7B4 Phosphoribosylformylglycinamidine synthase 2 0.00472995140839 0.5 0.495270048592 +UniRef50_UPI0004767068 PTS lactose transporter subunit IIC 0.271538863073 0.5 0.228461136927 +UniRef50_D5VBA0 Ribosomal RNA small subunit methyltransferase E 0.0252733725767 0.5 0.474726627423 +UniRef50_E8U946 Methylenetetrahydrofolate reductase 0.00223380214872 0.5 0.497766197851 +UniRef50_UPI00046A6655 hypothetical protein 5.52802857828 0.500000000008 -5.02802857829 +UniRef50_F0KGP8 LysR family transcriptional regulatory protein 0.0205436086315 0.5 0.479456391369 +UniRef50_UPI0003B71411 ACP S malonyltransferase 0.0668465833407 0.5 0.433153416659 +UniRef50_A5UJE7 Purine NTPase involved in DNA repair, Rad50 6.64752119761 0.499999999995 -6.1475211976 +UniRef50_Q9RWR2 Acetyltransferase, putative 0.00293514435679 0.5 0.497064855643 +UniRef50_C9XDD0 Inner membrane protein 0.213387849223 0.5 0.286612150777 +UniRef50_W7D2J3 0.59433236863 0.5 -0.0943323686298 +UniRef50_I6WPK4 0.0820768856178 0.5 0.417923114382 +UniRef50_U4V0C7 3.97739573522 0.499999999994 -3.47739573522 +UniRef50_P65931 Uridylate kinase 0.0476980955448 0.5 0.452301904455 +UniRef50_UPI00036A819E hypothetical protein 1.35322184233 0.5 -0.85322184233 +UniRef50_UPI000362D7F9 hypothetical protein 0.284792356449 0.5 0.215207643551 +UniRef50_A8LNR0 Sulphur oxidation protein SoxZ 5.50591833901 0.500000000004 -5.00591833901 +UniRef50_UPI00046EDA6C transcriptional regulator, partial 0.975927678763 0.5 -0.475927678763 +UniRef50_V5SCF0 Membrane protein 1.6039042733 0.5 -1.1039042733 +UniRef50_A3M2C8 DNA mismatch repair enzyme 0.0114780527191 0.5 0.488521947281 +UniRef50_F4FMG8 Sulfite reductase flavoprotein alpha component 2.41919163245 0.5 -1.91919163245 +UniRef50_UPI00046D0275 hypothetical protein 9.68130270648 0.500000000002 -9.18130270648 +UniRef50_A6LRC8 Transposase IS116 IS110 IS902 family protein 0.0920548348372 0.5 0.407945165163 +UniRef50_UPI000462DF28 MFS transporter 0.342434586721 0.5 0.157565413279 +UniRef50_UPI000470E3CB hypothetical protein 0.0172074941185 0.5 0.482792505881 +UniRef50_UPI0004725AED hypothetical protein 2.63960367543 0.5 -2.13960367543 +UniRef50_O27587 7.4290959216 0.499999999995 -6.92909592159 +UniRef50_UPI0003482043 hypothetical protein 0.34715032195 0.5 0.15284967805 +UniRef50_A7X3Z2 Monofunctional glycosyltransferase 5.01818044586 0.499999999999 -4.51818044585 +UniRef50_UPI0003752A98 hypothetical protein 2.81260924647 0.499999999999 -2.31260924647 +UniRef50_A3N1B7 Beta hexosaminidase 1.88744965922 0.5 -1.38744965922 +UniRef50_UPI000255F2C8 serine threonine protein phosphatase 0.318693823059 0.5 0.181306176941 +UniRef50_J0JV07 0.309283444821 0.5 0.190716555179 +UniRef50_Q6A5V6 Calcineurin like phosphoesterase 0.0131005744821 0.5 0.486899425518 +UniRef50_Q9F9J0 Hypothetical CdoFa 0.916764676013 0.5 -0.416764676013 +UniRef50_E6WRK7 Inner membrane translocator 0.105010962394 0.5 0.394989037606 +UniRef50_Q19842 Propionyl CoA carboxylase alpha chain, mitochondrial 1.14221865228 0.5 -0.642218652283 +UniRef50_P77460 1.88217129778 0.499999999999 -1.38217129778 +UniRef50_A0A023S045 Metallophosphatase 0.013610462421 0.5 0.486389537579 +UniRef50_D3QDA3 Peptidase, M16 family 1.82873005006 0.499999999998 -1.32873005006 +UniRef50_F9JXI9 Conserved domain protein 0.576968227289 0.5 -0.0769682272887 +UniRef50_U6KFK3 Nuclease, putative 1.7072049227 0.500000000001 -1.2072049227 +UniRef50_G9E8D1 Protein fecR 0.289541318876 0.5 0.210458681124 +UniRef50_UPI0002629810 hypothetical protein 4.97945404914 0.5 -4.47945404914 +UniRef50_N0B0K5 ATP dependent RNA helicase 0.00155965644369 0.5 0.498440343556 +UniRef50_Q8CSL7 Signal transduction histidine protein kinase ArlS 3.43926690319 0.499999999997 -2.93926690318 +UniRef50_Q3IV94 12.5434788823 0.499999999995 -12.0434788823 +UniRef50_Q3IV95 6.79683355171 0.499999999997 -6.29683355171 +UniRef50_Q3IV96 1.10167385903 0.5 -0.601673859033 +UniRef50_Q3IUU5 1.75844928314 0.500000000002 -1.25844928314 +UniRef50_Q3IV90 2.24214760247 0.500000000002 -1.74214760247 +UniRef50_Q3IV91 5.30178247636 0.500000000007 -4.80178247637 +UniRef50_Q3IV92 1.45245077555 0.500000000001 -0.952450775547 +UniRef50_UPI000360ED21 hypothetical protein 0.0220885114023 0.5 0.477911488597 +UniRef50_J9NYT9 0.336757058242 0.5 0.163242941758 +UniRef50_M9RZ09 1.03609833088 0.5 -0.536098330878 +UniRef50_A7HTG1 1.01742976089 0.5 -0.517429760893 +UniRef50_Q3JGL0 0.450580650437 0.5 0.0494193495632 +UniRef50_UPI00046F01F9 mannose 1 phosphate guanylyltransferase, partial 1.59728465408 0.5 -1.09728465408 +UniRef50_W5YSI9 0.597461426162 0.5 -0.0974614261622 +UniRef50_Q3IUU4 2.79488182473 0.499999999998 -2.29488182473 +UniRef50_I0EQF7 0.0431127515337 0.5 0.456887248466 +UniRef50_UPI00047690D0 LuxR family transcriptional regulator 1.73519078512 0.5 -1.23519078512 +UniRef50_UPI0003B652E5 surfeit locus 1 family protein 0.296905109478 0.5 0.203094890522 +UniRef50_Q9KKL3 Chemotaxis protein methyltransferase 3 0.765628324235 0.5 -0.265628324235 +UniRef50_D3QHI5 7.0503708674 0.499999999999 -6.5503708674 +UniRef50_S1T9V9 Thiamine monophosphate kinase 0.0157143928361 0.5 0.484285607164 +UniRef50_P40320-2 Isoform 1 of S adenosylmethionine synthase 0.0851615148398 0.5 0.41483848516 +UniRef50_Q28VX1 Sigma 54 modulation protein SSU ribosomal protein S30P 4.9384996218 0.499999999995 -4.43849962179 +UniRef50_D3QHI9 1.38590534443 0.5 -0.885905344429 +UniRef50_P0A207 Ethanolamine utilization protein EutJ 4.42861394502 0.499999999998 -3.92861394502 +UniRef50_Q1GW94 2.10384331799 0.5 -1.60384331799 +UniRef50_Q5ZY26 Phosphopantetheine adenylyltransferase 28.8244275781 0.500000000009 -28.3244275782 +UniRef50_F0Y7E7 Expressed protein 0.312128087385 0.5 0.187871912615 +UniRef50_Q0VKW4 Ribosomal RNA small subunit methyltransferase G 0.46975733313 0.5 0.0302426668703 +UniRef50_Q89B37 DNA gyrase subunit B 0.487409743937 0.5 0.0125902560634 +UniRef50_P50487 Putative purine permease CPE0397 0.565894235476 0.5 -0.0658942354762 +UniRef50_J4UL42 1.49691286488 0.499999999999 -0.996912864882 +UniRef50_M1NX79 2.65078922777 0.500000000001 -2.15078922777 +UniRef50_G0DX90 Phosphatidylglycerophosphate synthase 0.0612011851101 0.5 0.43879881489 +UniRef50_Q2LR47 UDP N acetylmuramate L alanine ligase 0.610194374164 0.5 -0.110194374164 +UniRef50_A3VYM7 3.22366630353 0.500000000001 -2.72366630353 +UniRef50_Q02MT4 1.10194205713 0.5 -0.601942057125 +UniRef50_Q5FIJ4 Elongation factor P 1 0.286895079361 0.5 0.213104920639 +UniRef50_E8N7U3 Predicted Fe S cluster redox enzyme 0.00656862204532 0.5 0.493431377955 +UniRef50_D5AV34 Nonfunctional major facilitator superfamily MFS_1 6.87173115037 0.500000000001 -6.37173115037 +UniRef50_Q5LYI8 Tryptophan synthase alpha chain 0.8890709064 0.5 -0.3890709064 +UniRef50_Q9RX01 0.131155408501 0.5 0.368844591499 +UniRef50_UPI00047A3CEB hypothetical protein 0.0745282119079 0.5 0.425471788092 +UniRef50_Q65PC9 Serine acetyltransferase 0.0214404908618 0.5 0.478559509138 +UniRef50_UPI0004794B50 hypothetical protein 0.130285503175 0.5 0.369714496825 +UniRef50_Q9K7H6 Probable adenylyl sulfate kinase 0.245668498939 0.5 0.254331501061 +UniRef50_C0MBU0 50S ribosomal protein L11 0.0720170288799 0.5 0.42798297112 +UniRef50_UPI000410106E beta methylgalactoside transporter permease 0.669801552628 0.5 -0.169801552628 +UniRef50_Q8R966 Triosephosphate isomerase 0.0949218950961 0.5 0.405078104904 +UniRef50_Q1MYB0 0.0546477817107 0.5 0.445352218289 +UniRef50_R5H1H3 Zinc finger protein 0.393532601284 0.5 0.106467398716 +UniRef50_UPI0003AD21EA hypothetical protein 0.0307175159477 0.5 0.469282484052 +UniRef50_B9ADZ7 0.916544283449 0.5 -0.416544283449 +UniRef50_P38684 TorCAD operon transcriptional regulatory protein TorR 0.423325105739 0.5 0.0766748942607 +UniRef50_R1CDN5 0.564237650347 0.5 -0.0642376503467 +UniRef50_UPI00046252B9 adenine deaminase 0.016136622546 0.500000000001 0.483863377453 +UniRef50_O27089 Type 2 DNA topoisomerase 6 subunit A 1.63165252667 0.5 -1.13165252667 +UniRef50_UPI000158407C hypothetical protein BC1G_05447 0.0737980338245 0.5 0.426201966175 +UniRef50_P37349 PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM 3.70895404104 0.499999999999 -3.20895404104 +UniRef50_O59521 Elongation factor 2 4.31527268587 0.499999999998 -3.81527268587 +UniRef50_Q160Y9 Zinc import ATP binding protein ZnuC 0.654628183333 0.5 -0.154628183333 +UniRef50_UPI00031F41C2 hypothetical protein 0.532367561406 0.5 -0.0323675614058 +UniRef50_U5VFI8 Transcriptional regulator 0.143888818525 0.5 0.356111181475 +UniRef50_Q5M018 DNA topoisomerase 1 3.58195557536 0.5 -3.08195557536 +UniRef50_Q3JX48 0.346221576279 0.5 0.153778423721 +UniRef50_G1Y3U3 0.060490825006 0.5 0.439509174994 +UniRef50_Q5PCT4 Thymidine kinase 0.156587850446 0.5 0.343412149554 +UniRef50_UPI0004776C9C uracil phosphoribosyltransferase 0.0852546638997 0.5 0.4147453361 +UniRef50_B9KZP8 N acetyl gamma glutamyl phosphate reductase 0.0284047951769 0.5 0.471595204823 +UniRef50_G7M047 Enoyl CoA hydratase isomerase 0.11423626806 0.500000000001 0.385763731939 +UniRef50_UPI00047BE467 phosphoenolpyruvate protein phosphotransferase 0.00675039349075 0.5 0.493249606509 +UniRef50_UPI000378D9A5 hypothetical protein 0.53707596304 0.5 -0.0370759630396 +UniRef50_UPI00047C7B9C hypothetical protein, partial 0.538315368968 0.5 -0.0383153689676 +UniRef50_UPI0003C10252 5.17958888129 0.500000000002 -4.67958888129 +UniRef50_UPI00004C2470 COG1166 0.373569171912 0.5 0.126430828088 +UniRef50_P05379 Anthranilate synthase component 2 0.655858419329 0.5 -0.155858419329 +UniRef50_UPI000466FBB9 hypothetical protein 0.334238597594 0.5 0.165761402406 +UniRef50_E3BCS0 0.00385813270482 0.499999999999 0.496141867296 +UniRef50_L7WT69 5.32837567378 0.500000000001 -4.82837567378 +UniRef50_P54425 2.38763705894 0.500000000001 -1.88763705894 +UniRef50_F8DJ95 Tat pathway signal sequence domain protein 0.686754011736 0.5 -0.186754011736 +UniRef50_T0ZN95 0.0372160032463 0.500000000001 0.462783996753 +UniRef50_P32677 0.709217751819 0.5 -0.209217751819 +UniRef50_Q83JV1 IS911 ORF2 0.196445059097 0.5 0.303554940903 +UniRef50_Q042B4 Putative RNA 2 O) methyltransferase 0.0791355657855 0.5 0.420864434214 +UniRef50_A6LWX2 RNA polymerase, sigma 24 subunit, ECF subfamily 6.6084882405 0.499999999999 -6.1084882405 +UniRef50_A6W862 D isomer specific 2 hydroxyacid dehydrogenase NAD binding 0.0177088572638 0.5 0.482291142736 +UniRef50_P28638 DNA adenine methyltransferase YhdJ 0.934708433115 0.5 -0.434708433115 +UniRef50_D9PXD9 Predicted biotin biosynthesis protein 0.404654556603 0.5 0.0953454433968 +UniRef50_A4YZY5 Pyrroloquinoline quinone synthase 0.891119299456 0.5 -0.391119299456 +UniRef50_B2VCR3 Iron dicitrate sensor protein FecR 1.17822790171 0.5 -0.678227901712 +UniRef50_A5N275 FolC 0.186056936741 0.5 0.313943063259 +UniRef50_Q2NFU9 UPF0425 pyridoxal phosphate dependent protein Msp_0916 4.44453267915 0.500000000001 -3.94453267915 +UniRef50_F2MU09 Phospholipase carboxylesterase 0.0250402056207 0.5 0.474959794379 +UniRef50_Q5HLB6 Glycine oxidase, putative 1.92101937531 0.5 -1.42101937531 +UniRef50_P0CS91 Heat shock protein SSC1, mitochondrial 0.0210590343185 0.5 0.478940965682 +UniRef50_D6UDQ3 Tandem lipoprotein 13.4270057705 0.499999999996 -12.9270057705 +UniRef50_I6SXL7 Transcriptional regulator 0.647852659458 0.5 -0.147852659458 +UniRef50_Q1J5E1 Glycine tRNA ligase beta subunit 1.67526857797 0.5 -1.17526857797 +UniRef50_Q5FSM8 DNA polymerase IV 0.221818193233 0.5 0.278181806767 +UniRef50_UPI0003628E06 hypothetical protein 0.0391495505647 0.500000000001 0.460850449435 +UniRef50_I6T999 Putative DNA binding protein 0.353715314627 0.5 0.146284685373 +UniRef50_Q2G506 ATM1 type heavy metal exporter 1.61199346749 0.5 -1.11199346749 +UniRef50_Q92M99 Phosphoglucosamine mutase 0.752899145925 0.5 -0.252899145925 +UniRef50_UPI000474F1D7 GntR family transcriptional regulator 0.416505627792 0.5 0.0834943722083 +UniRef50_V9TEA7 Membrane protein 1.0911532976 0.5 -0.591153297605 +UniRef50_A6LWP9 0.082330604394 0.5 0.417669395606 +UniRef50_C8XAV6 1.39590681064 0.5 -0.89590681064 +UniRef50_B7GT76 2 isopropylmalate synthase 0.0794504580696 0.5 0.42054954193 +UniRef50_A1B1J8 Multisubunit potassium proton antiporter, PhaD subunit 3.24027835649 0.499999999999 -2.74027835649 +UniRef50_A6LWP5 0.0652378785121 0.5 0.434762121487 +UniRef50_A0A024E8N7 LysR family transcriptional regulator 0.207143358696 0.5 0.292856641304 +UniRef50_A1AT80 Glutamate 5 kinase 0.69022906353 0.5 -0.19022906353 +UniRef50_A1ZV16 0.00496191768132 0.5 0.495038082319 +UniRef50_F2K1C2 Cytochrome b 2.00008043754 0.5 -1.50008043754 +UniRef50_Q869Z4 Phosphoenolpyruvate carboxykinase [GTP], mitochondrial 0.0128436028877 0.5 0.487156397112 +UniRef50_Q8CN10 PTS enzyme II glucose specific factor IIABC component 0.908758330676 0.5 -0.408758330676 +UniRef50_Q6GC59 Exotoxin 3.1921221932 0.5 -2.6921221932 +UniRef50_Q8DWC2 Peptide deformylase 0.244432326993 0.5 0.255567673007 +UniRef50_A3W5J9 Flagellar protein FlgJ, putative 0.968333129581 0.5 -0.468333129581 +UniRef50_UPI00045E6DFA hypothetical protein 0.436216969731 0.5 0.0637830302695 +UniRef50_F2DJV5 Predicted protein 0.00210478889558 0.5 0.497895211105 +UniRef50_D8JDR1 0.0075549890652 0.5 0.492445010935 +UniRef50_A3PJK1 0.572028850775 0.5 -0.0720288507748 +UniRef50_O05389 0.0521702975207 0.5 0.44782970248 +UniRef50_A3PJK2 1.50270185585 0.5 -1.00270185585 +UniRef50_UPI00016C499F dimethyladenosine transferase, partial 0.132212967713 0.5 0.367787032287 +UniRef50_UPI0004749CAE ketodeoxygluconokinase 0.424416484406 0.5 0.0755835155944 +UniRef50_R6XMV8 2.5751250569 0.5 -2.0751250569 +UniRef50_Q7VEG3 Nucleoside diphosphate kinase 0.222077364196 0.5 0.277922635804 +UniRef50_E3I2G3 HupH hydrogenase expression protein 3.03927912654 0.499999999996 -2.53927912654 +UniRef50_W5XCB4 DegT DnrJ EryC1 StrS family protein 0.173992392153 0.5 0.326007607847 +UniRef50_Q8SDT3 Phi105 orf 44 like protein 2.00608665284 0.500000000001 -1.50608665284 +UniRef50_I6T631 ABC transporter substrate binding protein 1.63919556758 0.500000000001 -1.13919556758 +UniRef50_I4L8Z6 0.318123635099 0.5 0.181876364901 +UniRef50_UPI00047863ED hypothetical protein 1.42573686716 0.5 -0.925736867163 +UniRef50_B9KL61 Transporter, RhaT family, DMT superfamily 0.326104204903 0.5 0.173895795097 +UniRef50_R7PSP1 2.09723533207 0.5 -1.59723533207 +UniRef50_I3UXJ0 Homocysteine S methyltransferase 0.0245296037882 0.5 0.475470396212 +UniRef50_B3T1S1 0.150629799942 0.499999999999 0.349370200058 +UniRef50_UPI0003775D8A hypothetical protein 0.286664634317 0.5 0.213335365683 +UniRef50_UPI00035142FA PREDICTED 0.284634552089 0.5 0.215365447911 +UniRef50_F9Y4R9 0.32185661541 0.5 0.17814338459 +UniRef50_A5UJU3 Adhesin like protein 2.34355102351 0.499999999999 -1.8435510235 +UniRef50_U7XVU8 0.113005438001 0.5 0.386994561999 +UniRef50_Q7N964 Thiamine phosphate synthase 0.327781952591 0.5 0.172218047409 +UniRef50_Q6UXR0 GWSI6489 0.00756630107043 0.5 0.492433698929 +UniRef50_K1ZGG7 8.25144283857 0.500000000004 -7.75144283857 +UniRef50_B7UWX0 0.829927512692 0.5 -0.329927512692 +UniRef50_B3PNG9 Serine tRNA ligase 0.164027495745 0.5 0.335972504255 +UniRef50_UPI0003A2F50C hypothetical protein 1.23160163868 0.5 -0.731601638679 +UniRef50_A4WXV4 0.23609303698 0.5 0.26390696302 +UniRef50_UPI0003666757 hypothetical protein 0.0525719992007 0.5 0.447428000799 +UniRef50_M9VE13 LacI family transcriptional regulator 0.00702925124464 0.5 0.492970748755 +UniRef50_U5WUM2 Zinc binding dehydrogenase 0.0642632998074 0.5 0.435736700193 +UniRef50_A0B8A2 3.7051285699 0.5 -3.2051285699 +UniRef50_T8GQ95 Glyoxylate carboligase 2.4332140833 0.5 -1.9332140833 +UniRef50_C1FAE8 Aspartate tRNA ligase 0.168936056312 0.5 0.331063943688 +UniRef50_Q88MC6 3.01520711199 0.499999999998 -2.51520711198 +UniRef50_G8AMM6 0.792574477726 0.5 -0.292574477726 +UniRef50_UPI0003717327 hypothetical protein 0.305221317868 0.5 0.194778682132 +UniRef50_C6NS61 2 isopropylmalate synthase 0.790179333498 0.5 -0.290179333498 +UniRef50_Q57060 0.769013345863 0.5 -0.269013345863 +UniRef50_X5X5U8 7.8977457661 0.500000000006 -7.39774576611 +UniRef50_F3ZHT3 Putative transcriptional regulator, MerR family protein 0.0351704883292 0.5 0.464829511671 +UniRef50_UPI000372025C hypothetical protein 0.354424641028 0.5 0.145575358972 +UniRef50_UPI0003636A8B hypothetical protein 0.205385551055 0.5 0.294614448945 +UniRef50_UPI000380509C hypothetical protein 4.92950540169 0.499999999998 -4.42950540169 +UniRef50_A7IB90 1.02044072578 0.5 -0.520440725781 +UniRef50_UPI0003810DDB hypothetical protein 0.643953894208 0.5 -0.143953894208 +UniRef50_W4RTV0 0.335654565685 0.5 0.164345434315 +UniRef50_UPI00045DC04C PREDICTED 5.89138932807 0.499999999997 -5.39138932807 +UniRef50_D7GCK2 Cell envelope related transcriptional attenuator 0.142894907906 0.5 0.357105092093 +UniRef50_D5ANZ4 Cytochrome c1 1.53421496115 0.5 -1.03421496115 +UniRef50_A4FPJ2 DNA directed RNA polymerase subunit alpha 0.00126341918651 0.5 0.498736580813 +UniRef50_UPI0004730699 hypothetical protein, partial 0.409529180837 0.5 0.0904708191625 +UniRef50_UPI00047D1B9F hypothetical protein 0.614148315582 0.5 -0.114148315582 +UniRef50_E2QG11 Receptor protein 1.01385874571 0.5 -0.513858745713 +UniRef50_T1ADV2 Pyridine nucleotide transhydrogenase subunit alpha 0.285667512823 0.5 0.214332487177 +UniRef50_N0SZ54 Ribosomal RNA large subunit methyltransferase F 1.59393671233 0.5 -1.09393671233 +UniRef50_UPI0002379B91 glutamine ABC transporter ATP binding protein 0.603222428999 0.5 -0.103222428999 +UniRef50_U5MMN5 Sensor protein GtcS 0.137771413949 0.5 0.362228586051 +UniRef50_A8IMG6 0.323415873266 0.5 0.176584126734 +UniRef50_UPI0003B34E5F NADH quinone oxidoreductase subunit F 0.210827973128 0.5 0.289172026872 +UniRef50_A3CP57 5.25241325397 0.499999999999 -4.75241325397 +UniRef50_R7JSE9 Appr 1 p processing domain protein 0.0279716070867 0.5 0.472028392913 +UniRef50_A6U0P1 Bifunctional purine biosynthesis protein PurH 2.39177632935 0.500000000001 -1.89177632935 +UniRef50_D3DYR0 Molybdopterin biosynthesis protein MoeA1 3.59093677282 0.500000000001 -3.09093677282 +UniRef50_A6WXN2 Cysteine synthase A 0.011668529946 0.5 0.488331470054 +UniRef50_F9ZDK1 2.52544034973 0.499999999999 -2.02544034973 +UniRef50_Q2NUJ6 8 amino 7 oxononanoate synthase 0.592171853934 0.5 -0.0921718539339 +UniRef50_B0VSH8 0.0065392161364 0.5 0.493460783863 +UniRef50_D1WNS1 0.0115479119182 0.5 0.488452088082 +UniRef50_V9Y3L4 0.607444355274 0.5 -0.107444355274 +UniRef50_S9QX59 Asparagine synthetase A 0.698475841786 0.5 -0.198475841786 +UniRef50_I2NA66 Putative transposase 0.00389666306908 0.5 0.496103336931 +UniRef50_K7SNW3 Biotin requiring enzyme 0.0205751392144 0.5 0.479424860786 +UniRef50_Z3WPG1 Quinolone resistance protein norA 0.126904312008 0.5 0.373095687992 +UniRef50_U3JHG3 1.38770493034 0.5 -0.887704930335 +UniRef50_G8P8V7 Transcriptional regulator, TetR family 0.159780153903 0.5 0.340219846097 +UniRef50_M9VE40 DNA polymerase III subunit beta 0.0207604665072 0.5 0.479239533493 +UniRef50_UPI0003B45127 adenosylcobinamide amidohydrolase 0.350121384263 0.5 0.149878615737 +UniRef50_Q7VRJ3 3 octaprenyl 4 hydroxybenzoate carboxy lyase 0.0591525003073 0.5 0.440847499693 +UniRef50_E1ZM35 0.0557052854295 0.5 0.444294714571 +UniRef50_Q3IUW2 Sex pilus assembly protein 4.46312356501 0.500000000002 -3.96312356501 +UniRef50_A0A059LE43 0.126551054624 0.5 0.373448945376 +UniRef50_L7X117 4.2718999867 0.500000000004 -3.7718999867 +UniRef50_Q5HM49 Transporter, putative 2.14456414124 0.5 -1.64456414124 +UniRef50_E8ZPJ7 Flagellar motor rotation protein MotB 0.21576034771 0.5 0.28423965229 +UniRef50_Q8FDB4 Toxin YhaV 0.834095341445 0.5 -0.334095341445 +UniRef50_P31448 0.524753511782 0.5 -0.0247535117819 +UniRef50_A0A017IJ86 0.434976458318 0.5 0.0650235416816 +UniRef50_UPI000409D88E ABC transporter ATP binding protein 0.279319049652 0.5 0.220680950348 +UniRef50_U1GJH2 0.717987948877 0.5 -0.217987948877 +UniRef50_R5LKI5 1.00599879958 0.5 -0.505998799583 +UniRef50_UPI00047A834E hypothetical protein 3.90067433003 0.5 -3.40067433003 +UniRef50_I6T4P1 Peptidoglycan hydrolase 0.961483305477 0.5 -0.461483305477 +UniRef50_F8HDN7 GTPase HflX 0.734448195719 0.5 -0.234448195719 +UniRef50_S5CMF0 Lysine ornithine N monooxygenase 0.00641633660266 0.5 0.493583663397 +UniRef50_D9VIL0 Predicted protein 0.482939954326 0.5 0.0170600456737 +UniRef50_A5EJC6 3 dehydroquinate dehydratase 0.533919062972 0.5 -0.0339190629715 +UniRef50_R9SJV5 4.47847985201 0.500000000001 -3.97847985201 +UniRef50_X6L1Q7 1.99011817671 0.5 -1.49011817671 +UniRef50_A6LY84 RNA directed DNA polymerase 0.166529351915 0.5 0.333470648085 +UniRef50_P08395 Protease 4 0.706113310809 0.5 -0.206113310809 +UniRef50_P21881 Pyruvate dehydrogenase E1 component subunit alpha 1.04000769731 0.5 -0.540007697306 +UniRef50_C1F934 Glycine cleavage system H protein 4.69247837717 0.499999999998 -4.19247837716 +UniRef50_S5F6B6 Carbonic anhydrase 2.4653384614 0.5 -1.9653384614 +UniRef50_D4G4T6 0.821528907339 0.5 -0.321528907339 +UniRef50_A0A024HMN0 1.41558812209 0.5 -0.915588122087 +UniRef50_Q1GK69 Peptidyl tRNA hydrolase 1.00141855786 0.5 -0.501418557856 +UniRef50_A0KZ99 Ribosomal RNA large subunit methyltransferase M 1.17547196527 0.500000000001 -0.675471965275 +UniRef50_A4VKN0 DNA ligase 0.664023577534 0.5 -0.164023577534 +UniRef50_F0P455 Transcriptional regulator, LysR family 1.73237957647 0.5 -1.23237957647 +UniRef50_Q47208 Protein FdrA 1.35159388847 0.500000000001 -0.85159388847 +UniRef50_UPI000470719A hypothetical protein 1.07555566679 0.5 -0.575555666788 +UniRef50_Q98I23 Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2 3.12324213617 0.5 -2.62324213617 +UniRef50_A8MGM7 Histidine tRNA ligase 0.00150714863716 0.5 0.498492851363 +UniRef50_Q5HNS1 Histidine tRNA ligase 1.42284283504 0.5 -0.922842835039 +UniRef50_A8MHC4 tRNA ) methyltransferase 0.10742372339 0.5 0.39257627661 +UniRef50_Q6FAF0 0.457834650677 0.5 0.0421653493234 +UniRef50_B9KN35 Tyrosine recombinase 3.33200513138 0.5 -2.83200513138 +UniRef50_J8RT93 0.472356409438 0.5 0.0276435905625 +UniRef50_P31447 0.77225849577 0.5 -0.27225849577 +UniRef50_I4WA77 Cupin 0.792361956233 0.5 -0.292361956233 +UniRef50_A9NHF4 Tyrosine tRNA ligase 0.109373976573 0.5 0.390626023427 +UniRef50_UPI0002B46B6C PREDICTED 3.55853047613 0.5 -3.05853047613 +UniRef50_U5MSB6 Actin like ATPase involved in cell division 0.467688687175 0.5 0.0323113128253 +UniRef50_D9RE66 2.59457870528 0.500000000002 -2.09457870529 +UniRef50_A8G7C4 Lysine tRNA ligase 0.171799418079 0.5 0.328200581921 +UniRef50_W9GGB6 0.909214978814 0.5 -0.409214978814 +UniRef50_Q8CP80 Maltose maltodextrin transport permease like protein 1.24924004341 0.5 -0.749240043411 +UniRef50_B7H087 Acetate kinase 0.0180481920115 0.5 0.481951807989 +UniRef50_Q3IUU3 1.40948238724 0.500000000001 -0.909482387237 +UniRef50_Q3IUU2 3.22887101967 0.500000000003 -2.72887101968 +UniRef50_Q3IUU1 1.90884769346 0.5 -1.40884769346 +UniRef50_Q3IUU0 0.742463722389 0.5 -0.242463722389 +UniRef50_C7NTI4 Oxidoreductase 0.754639581197 0.5 -0.254639581197 +UniRef50_UPI0002E8C668 hypothetical protein 0.734801061153 0.5 -0.234801061153 +UniRef50_X9ZAP3 5.42242378817 0.499999999994 -4.92242378816 +UniRef50_C4REF2 0.295128703767 0.5 0.204871296233 +UniRef50_W8X9Y2 0.698155717744 0.5 -0.198155717744 +UniRef50_UPI000372F67C hypothetical protein 0.0912738749704 0.5 0.408726125029 +UniRef50_D5AN32 Na+ solute symporter histidine kinase 1.22009085005 0.5 -0.720090850049 +UniRef50_UPI0004686CF3 DNA processing protein 0.524055053271 0.5 -0.0240550532706 +UniRef50_UPI0003709489 hypothetical protein 0.258657912422 0.5 0.241342087578 +UniRef50_A0A021W377 2.38304503953 0.500000000001 -1.88304503953 +UniRef50_I0C6Z8 Transcriptional regulator, RpiR family 2.45887966529 0.500000000002 -1.9588796653 +UniRef50_A4FXY0 ATP phosphoribosyltransferase 1.96585959456 0.499999999999 -1.46585959456 +UniRef50_UPI0004793307 arginine ABC transporter ATP binding protein 0.488210484452 0.5 0.0117895155483 +UniRef50_UPI0003346A33 PREDICTED 0.459326063623 0.5 0.0406739363768 +UniRef50_UPI00037EBF8D hypothetical protein 0.47317474012 0.5 0.0268252598799 +UniRef50_UPI0004749A8E hypothetical protein, partial 0.336707096214 0.5 0.163292903786 +UniRef50_D3E438 Transcriptional regulator 0.312916642369 0.5 0.187083357631 +UniRef50_UPI00037D9D80 hypothetical protein 0.0996292857828 0.5 0.400370714217 +UniRef50_UPI00046F048D hypothetical protein 0.0803709955433 0.5 0.419629004457 +UniRef50_H8GSQ7 2 oxoisovalerate dehydrogenase, ODBB 0.00132227507008 0.5 0.49867772493 +UniRef50_UPI0002F0E78D hypothetical protein 2.07880145994 0.5 -1.57880145994 +UniRef50_S2EW51 0.761314097046 0.5 -0.261314097046 +UniRef50_X5EI43 0.054073529634 0.5 0.445926470366 +UniRef50_H3K0N4 ABC transporter ATP binding protein 3.80228404724 0.499999999997 -3.30228404723 +UniRef50_P33983 RNA polymerase sigma 54 factor 0.0177458127286 0.5 0.482254187272 +UniRef50_Q3JQY5 2.56284998895 0.5 -2.06284998895 +UniRef50_UPI0004679CCC 50S ribosomal protein L6, partial 0.500960836445 0.5 -0.000960836445475 +UniRef50_Q0A5K0 Succinyl CoA ligase [ADP forming] subunit beta 0.375101103041 0.5 0.124898896959 +UniRef50_G2JIW3 Enoyl CoA hydratase carnithine racemase 0.0238339996547 0.5 0.476166000345 +UniRef50_UPI00037A4F24 hypothetical protein, partial 0.481576346785 0.5 0.0184236532145 +UniRef50_P67371 DegV domain containing protein SA1258 2.53138651496 0.500000000003 -2.03138651496 +UniRef50_G8VAM5 Transferase 0.00736310582973 0.5 0.49263689417 +UniRef50_UPI00046527B9 diguanylate cyclase 0.389337382889 0.5 0.110662617111 +UniRef50_B9EB64 Bifunctional protein PyrR 0.244722545472 0.5 0.255277454528 +UniRef50_P45053 Oligopeptide transport system permease protein OppC 1.18381500616 0.5 -0.683815006158 +UniRef50_A5FG89 Lon protease 0.130455472852 0.5 0.369544527148 +UniRef50_P10768 S formylglutathione hydrolase 1.9802669513 0.5 -1.4802669513 +UniRef50_Q5LZ72 Phenylalanine tRNA ligase beta subunit 0.456831416919 0.5 0.0431685830808 +UniRef50_W1UDP7 Surface protective antigen SpaA 0.0494255160662 0.5 0.450574483934 +UniRef50_UPI00047EAA8B hypothetical protein 0.240865069364 0.5 0.259134930636 +UniRef50_D6M4Y7 Peptidase C14, caspase catalytic subunit p20 0.0617382893618 0.5 0.438261710638 +UniRef50_UPI0001E896F1 ATPase 0.257058777009 0.5 0.242941222991 +UniRef50_UPI00037DE191 hypothetical protein 0.00600366620221 0.5 0.493996333798 +UniRef50_UPI000467F219 type I secretion protein 0.752223615729 0.5 -0.252223615729 +UniRef50_I1ELJ8 1.0907610376 0.5 -0.590761037596 +UniRef50_UPI0001B41487 ATP dependent protease ATP binding subunit HslU 0.0964874074085 0.499999999999 0.403512592592 +UniRef50_B9IYP4 Formate tetrahydrofolate ligase 0.349921431859 0.5 0.150078568141 +UniRef50_UPI00046EB4AA hypothetical protein, partial 0.65060414965 0.5 -0.15060414965 +UniRef50_B0VBG2 0.0207146527719 0.5 0.479285347228 +UniRef50_Q9CMM8 Selenide, water dikinase 1.24862190506 0.5 -0.748621905056 +UniRef50_UPI0003B5EFE3 hypothetical protein 0.0252057316141 0.5 0.474794268386 +UniRef50_UPI00047CBC2F diacylglycerol kinase 0.130025968387 0.5 0.369974031613 +UniRef50_U1TXR6 0.728959788265 0.5 -0.228959788265 +UniRef50_D5AS82 SsrA binding protein 4.64167624548 0.499999999998 -4.14167624548 +UniRef50_UPI00037E7A93 hypothetical protein 0.171748386518 0.499999999999 0.328251613483 +UniRef50_B9NUC1 1.46799557853 0.499999999999 -0.96799557853 +UniRef50_P0ADH6 Type 1 fimbriae regulatory protein FimB 0.821282366791 0.5 -0.321282366791 +UniRef50_R7PU85 0.144971603805 0.5 0.355028396195 +UniRef50_P06134 Bifunctional transcriptional activator DNA repair enzyme Ada 1.21337932981 0.5 -0.713379329807 +UniRef50_W1XPX0 NADH quinone oxidoreductase subunit L 0.892362724242 0.5 -0.392362724242 +UniRef50_UPI0003C1934F 7.30649236446 0.5 -6.80649236446 +UniRef50_C7MB99 Methyltransferase family protein 1.63648015072 0.5 -1.13648015072 +UniRef50_UPI0002B4434D 0.0223865968194 0.5 0.477613403181 +UniRef50_E6JE24 Integral membrane protein 0.372288083676 0.5 0.127711916324 +UniRef50_R4R862 Sensor protein RstB 1.8523631297 0.5 -1.3523631297 +UniRef50_B9KTV5 Extracellular solute binding protein, family 3 4.14306429954 0.5 -3.64306429954 +UniRef50_Q7N772 Protein NrdI 0.0920771935958 0.5 0.407922806404 +UniRef50_P09162 0.0647543620403 0.5 0.43524563796 +UniRef50_G7M7A9 Transcriptional regulator, MarR family 0.198393172484 0.5 0.301606827516 +UniRef50_A6LW07 Periplasmic binding protein LacI transcriptional regulator 0.168963366167 0.5 0.331036633833 +UniRef50_G7U7C0 Transporter, major facilitator family protein 0.00770412958382 0.5 0.492295870416 +UniRef50_X7V429 HD domain protein 0.298276764144 0.5 0.201723235856 +UniRef50_B2V5D3 UV damage endonuclease UvdE 0.167109130096 0.5 0.332890869904 +UniRef50_P63590 3 dehydroquinate dehydratase 0.274923444731 0.5 0.225076555269 +UniRef50_Q51161 Dihydropteroate synthase 0.00120834064091 0.5 0.498791659359 +UniRef50_Q89376 0.185536660872 0.5 0.314463339128 +UniRef50_Q8CRZ8 0.745122983125 0.5 -0.245122983125 +UniRef50_Q8CRZ9 1.49110410596 0.5 -0.991104105957 +UniRef50_W8U6I9 AAA domain containing protein YrvN 0.0883646037876 0.500000000001 0.411635396212 +UniRef50_Q8CRZ1 0.709956660463 0.5 -0.209956660463 +UniRef50_Q8CRZ2 1.49860160548 0.5 -0.99860160548 +UniRef50_Q8CRZ3 0.992475476507 0.5 -0.492475476507 +UniRef50_Q8CRZ4 1.39650894619 0.5 -0.896508946191 +UniRef50_Q8CRZ7 1.40239320015 0.5 -0.902393200146 +UniRef50_A7ZQU2 Bifunctional protein Aas 3.48044148259 0.500000000001 -2.98044148259 +UniRef50_UPI00047B3496 molybdenum cofactor biosynthesis protein MoeB 0.187373989745 0.5 0.312626010255 +UniRef50_UPI0003A35158 hypothetical protein 0.337433338707 0.5 0.162566661293 +UniRef50_A5WHC3 4 hydroxy tetrahydrodipicolinate synthase 0.0137998976658 0.5 0.486200102334 +UniRef50_P65103 Isopentenyl diphosphate delta isomerase 0.50582157877 0.5 -0.00582157877022 +UniRef50_UPI0000557F47 hypothetical protein 0.489464920285 0.5 0.0105350797151 +UniRef50_Q6GHN9 Lipoprotein signal peptidase 2.51677711524 0.500000000001 -2.01677711524 +UniRef50_S4YB05 0.780839483045 0.5 -0.280839483045 +UniRef50_I0LGH2 ABC type transporter, periplasmic component 0.121179674971 0.5 0.378820325029 +UniRef50_UPI000471C41C spermidine putrescine ABC transporter ATPase 0.982592824278 0.5 -0.482592824278 +UniRef50_UPI00037D6690 hypothetical protein 0.0177854023303 0.5 0.48221459767 +UniRef50_UPI0003B79E24 inner membrane translocator 0.672530923248 0.5 -0.172530923248 +UniRef50_UPI00029ADD09 dehydrogenase E1 component 0.0164977960803 0.5 0.48350220392 +UniRef50_A0A023S2F8 Type I deoxyribonuclease HsdR 0.0101131765012 0.5 0.489886823499 +UniRef50_H4UHR1 K H(+) antiporter NhaP2 2.4255987301 0.5 -1.9255987301 +UniRef50_A6LYC9 ThiJ PfpI domain protein 0.114235843858 0.5 0.385764156141 +UniRef50_B9KL85 Transporter, RhaT family, DMT superfamily 3.57859948347 0.499999999999 -3.07859948346 +UniRef50_Q9XE67 0.792856711561 0.5 -0.292856711561 +UniRef50_F8FDJ3 0.0477626873639 0.500000000001 0.452237312635 +UniRef50_Q5H175 Dihydrolipoyl dehydrogenase 0.00650789793452 0.5 0.493492102066 +UniRef50_C6WVP9 DoxX family protein 0.434577042276 0.5 0.0654229577243 +UniRef50_UPI0003B7B25C alanine glycine permease 0.00562842771935 0.5 0.494371572281 +UniRef50_D3DZS4 3.67830859057 0.499999999998 -3.17830859057 +UniRef50_C0PAL9 1.64356462613 0.5 -1.14356462613 +UniRef50_UPI00038F99E9 hypothetical protein, partial 0.0581349171752 0.5 0.441865082825 +UniRef50_Q2RFS8 Energy coupling factor transporter ATP binding protein EcfA 0.106551186646 0.5 0.393448813354 +UniRef50_H1XUH5 Cysteine desulfurase 0.561865442925 0.5 -0.0618654429253 +UniRef50_X2M2B8 Multidrug transporter 1.56371408542 0.5 -1.06371408542 +UniRef50_UPI0003642FB6 hypothetical protein 1.54794672088 0.5 -1.04794672088 +UniRef50_Q42577 NADH dehydrogenase [ubiquinone] iron sulfur protein 7, mitochondrial 0.574606379429 0.5 -0.0746063794294 +UniRef50_M9VCQ3 UvrD REP helicase 0.0213543429139 0.5 0.478645657086 +UniRef50_A1YRL8 Cassette chromosome recombinase A 2.31709156401 0.5 -1.81709156401 +UniRef50_Q8L940 Pyridoxal biosynthesis protein PDX1.3 0.0034507965219 0.5 0.496549203478 +UniRef50_UPI00047114BD hypothetical protein 0.0598684408979 0.5 0.440131559102 +UniRef50_UPI00016C4C7D molecular chaperone GroEL 1.50825667555 0.5 -1.00825667555 +UniRef50_Q44058 Acyl homoserine lactone synthase 0.365209030109 0.5 0.134790969891 +UniRef50_B1FL99 RemN protein 0.881643044565 0.5 -0.381643044565 +UniRef50_UPI00045E9959 sarcosine oxidase subunit alpha 1.03072613658 0.5 -0.530726136575 +UniRef50_UPI00047E113B hypothetical protein 0.355649361005 0.5 0.144350638995 +UniRef50_A1B2B5 Polysaccharide export protein 3.10788912822 0.5 -2.60788912822 +UniRef50_UPI000225EB41 FAD dependent oxidoreductase 0.00468059040669 0.5 0.495319409593 +UniRef50_UPI0003B63FA5 hemolysin III 0.374623730524 0.5 0.125376269476 +UniRef50_Q67KN6 NADH quinone oxidoreductase subunit B 2 0.421024650766 0.5 0.0789753492338 +UniRef50_Q46901 CRISPR system Cascade subunit CasA 0.587570958673 0.5 -0.0875709586729 +UniRef50_UPI0003AB1459 hypothetical protein 0.127250977011 0.5 0.372749022989 +UniRef50_UPI000473BBBF ABC transporter, partial 0.0744889121511 0.5 0.425511087849 +UniRef50_P26647 1 acyl sn glycerol 3 phosphate acyltransferase 2.64564799616 0.500000000002 -2.14564799616 +UniRef50_A0A059E9X7 1.00476026986 0.5 -0.504760269865 +UniRef50_UPI000473AECE 4 alpha glucanotransferase 0.0125635519136 0.5 0.487436448086 +UniRef50_P24241 PTS system arbutin , cellobiose , and salicin specific EIIBC component 0.285783505471 0.5 0.214216494529 +UniRef50_I4KLQ2 Phosphate ABC transporter, permease protein 0.462989715071 0.5 0.0370102849294 +UniRef50_A7X4U8 ATP synthase subunit delta 2.59723881677 0.5 -2.09723881677 +UniRef50_X2NAF9 Glycerol 3 phosphate dehydrogenase 0.960151278781 0.5 -0.460151278781 +UniRef50_UPI000361DA3C hypothetical protein 3.35593584294 0.5 -2.85593584294 +UniRef50_B4RQ53 0.0460047707064 0.5 0.453995229294 +UniRef50_Q9FZ42 Glucose and ribitol dehydrogenase homolog 1 0.249739816788 0.5 0.250260183212 +UniRef50_A3PPH2 0.477029969469 0.5 0.0229700305315 +UniRef50_I4YVW1 TRAP type C4 dicarboxylate transport system, small permease component 0.772894802219 0.5 -0.272894802219 +UniRef50_Q9RRJ1 Nucleoside diphosphate kinase 0.00107933270734 0.5 0.498920667293 +UniRef50_S5N397 p6.9 3.15236692565 0.500000000002 -2.65236692566 +UniRef50_UPI000328C952 PREDICTED 0.353030627163 0.5 0.146969372837 +UniRef50_Q0BEA7 Fumarate reductase succinate dehydrogenase flavoprotein domain protein 0.476505021559 0.5 0.0234949784412 +UniRef50_A6M2L1 0.113605372712 0.5 0.386394627288 +UniRef50_UPI0004095AFD hypothetical protein 0.774757433057 0.5 -0.274757433057 +UniRef50_M1MFL6 ATP dependent DNA helicase Rep 0.0512350615644 0.5 0.448764938436 +UniRef50_B7K205 Peptide chain release factor 1 3.00073915034 0.499999999999 -2.50073915033 +UniRef50_S6AT82 0.166936662184 0.5 0.333063337816 +UniRef50_Q2J4N0 Phosphoribosylformylglycinamidine synthase 1 0.00993366482046 0.499999999999 0.490066335181 +UniRef50_P76657 Inner membrane protein YqiJ 1.04354265558 0.5 -0.543542655579 +UniRef50_UPI000474867C helicase 0.300271247643 0.5 0.199728752357 +UniRef50_W5X6U2 Glycoside hydrolase family 28 0.83917770872 0.5 -0.33917770872 +UniRef50_Q83MG9 Probable crotonobetaine carnitine CoA ligase 2.87406173808 0.5 -2.37406173808 +UniRef50_UPI000374E0DC hypothetical protein 0.0782816917648 0.5 0.421718308235 +UniRef50_UPI0003182F0E amino acid ABC transporter ATP binding protein 1.02596117687 0.5 -0.525961176874 +UniRef50_A1VXS2 GTP cyclohydrolase 1 0.00193832656828 0.5 0.498061673432 +UniRef50_A3NGW6 2 aminoethylphosphonate pyruvate transaminase 0.602264253574 0.5 -0.102264253574 +UniRef50_Q5F904 Cytidylate kinase 0.0831031649983 0.5 0.416896835002 +UniRef50_D2ZRU8 Transglutaminase like protein 2.07585983766 0.5 -1.57585983766 +UniRef50_D5QFG0 Oligopeptide dipeptide ABC transporter, ATP binding protein like protein 2.54923916601 0.5 -2.04923916601 +UniRef50_UPI0003B64D82 DNA topoisomerase III 0.369160509792 0.5 0.130839490208 +UniRef50_UPI00016AA13E hypothetical protein 0.204990306077 0.5 0.295009693923 +UniRef50_Q9CM13 Magnesium and cobalt efflux protein CorC 3.81840204751 0.499999999999 -3.31840204751 +UniRef50_A5UMG3 Potassium transport system, membrane component, KefB 3.35136197923 0.499999999998 -2.85136197923 +UniRef50_Q9HZP9 Precorrin 4 C methyltransferase 7.2021419378 0.499999999998 -6.7021419378 +UniRef50_Q9RVT2 0.007375604264 0.5 0.492624395736 +UniRef50_UPI000375E2EF hypothetical protein 1.74576621902 0.499999999999 -1.24576621902 +UniRef50_Q6GE66 Probable malate 3.87293818445 0.500000000002 -3.37293818445 +UniRef50_G7M706 Helix turn helix domain protein 0.394752689103 0.5 0.105247310897 +UniRef50_C5VY51 AzlC family protein 0.549773720424 0.5 -0.0497737204241 +UniRef50_G5JXL5 Rod shape determining protein MreD 5.96374542841 0.500000000001 -5.46374542841 +UniRef50_F3EJZ8 Nitrate reductase 0.970190597051 0.5 -0.470190597051 +UniRef50_X0YTR7 Marine sediment metagenome DNA, contig 0.15322316547 0.5 0.34677683453 +UniRef50_UPI000471CA6A hypothetical protein 0.195746199277 0.5 0.304253800723 +UniRef50_UPI0003637C6B hypothetical protein 0.313778592901 0.5 0.186221407099 +UniRef50_X2GN29 Metal ABC transporter permease 1.58938096899 0.499999999998 -1.08938096899 +UniRef50_UPI000423E6F5 hypothetical protein 0.214871437613 0.5 0.285128562387 +UniRef50_UPI00046990FD O acetylhomoserine aminocarboxypropyltransferase 0.403988401416 0.5 0.0960115985835 +UniRef50_F3U3H0 ABC peptide opine transporter, periplasmic substrate binding protein 1.2639337246 0.5 -0.763933724595 +UniRef50_UPI0003B4A86D ABC transporter ATP binding protein 0.0944410113444 0.5 0.405558988655 +UniRef50_B3PG87 Metallo beta lactamase superfamily domain protein 0.70937255995 0.5 -0.20937255995 +UniRef50_A0A023X460 HGPRTase 0.666760948689 0.5 -0.166760948689 +UniRef50_A0A059IPV7 0.294619248953 0.5 0.205380751047 +UniRef50_F9NYN7 Conserved domain protein 0.578219278195 0.5 -0.0782192781955 +UniRef50_UPI00046C8F06 50S ribosomal protein L1 0.0480729157312 0.5 0.451927084268 +UniRef50_H5T409 ABC transporter substrate binding protein 0.602735848005 0.5 -0.102735848005 +UniRef50_D8N394 0.00111645917697 0.5 0.498883540823 +UniRef50_E0MSL9 Thymocyte nuclear protein 1 1.39344643491 0.500000000001 -0.893446434907 +UniRef50_A6M2L8 Protein tyrosine phosphatase 0.478919949302 0.5 0.021080050698 +UniRef50_A6LYX8 ABC transporter related 0.0952582969281 0.500000000001 0.404741703071 +UniRef50_A8Z6F5 Chorismate synthase 0.100409001872 0.5 0.399590998128 +UniRef50_B5L3R8 WfeY 5.1699134731 0.500000000011 -4.66991347311 +UniRef50_UPI00047E8000 hypothetical protein 0.246571601242 0.5 0.253428398758 +UniRef50_M9V9W9 0.0478969891242 0.5 0.452103010876 +UniRef50_W5ENS0 0.282564021906 0.5 0.217435978094 +UniRef50_Q8CNA9 Phosphoglycolate phosphatase 2.18379314318 0.500000000002 -1.68379314318 +UniRef50_B9KMF0 3.89619178426 0.500000000001 -3.39619178426 +UniRef50_R8ZAQ7 Sarcosine oxidase subunit alpha 0.251077033732 0.5 0.248922966268 +UniRef50_UPI00023B2764 0.413757240387 0.5 0.0862427596128 +UniRef50_UPI0003C11580 PREDICTED 0.0273714839363 0.5 0.472628516064 +UniRef50_Q9K8U9 Oligo 1,6 glucosidase 0.272356265862 0.5 0.227643734138 +UniRef50_UPI0002557D02 hypothetical protein 1.78890847405 0.5 -1.28890847405 +UniRef50_G7M7C0 Cell wall binding repeat containing protein 0.150649132651 0.5 0.349350867348 +UniRef50_P0AAF0 Probable cadaverine lysine antiporter 0.628385297542 0.5 -0.128385297542 +UniRef50_X1BS27 Marine sediment metagenome DNA, contig 0.00503564754447 0.5 0.494964352455 +UniRef50_UPI000478AB20 ABC transporter ATP binding protein 0.112358732736 0.5 0.387641267264 +UniRef50_F0RJQ8 Acetolactate synthase 0.0018359585759 0.500000000001 0.498164041424 +UniRef50_A8IE40 Chromate transport protein 0.00994288444536 0.5 0.490057115554 +UniRef50_W1YMN4 0.700102208099 0.5 -0.200102208099 +UniRef50_UPI000403C5BD hypothetical protein 0.0963450449631 0.5 0.403654955037 +UniRef50_UPI000373B07D hypothetical protein 0.0107267680171 0.5 0.489273231983 +UniRef50_D4ZGG3 0.905954048923 0.5 -0.405954048923 +UniRef50_C7RB36 Acyl CoA dehydrogenase domain protein 0.0293520297961 0.5 0.470647970204 +UniRef50_P56904 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase 0.0957748464918 0.5 0.404225153508 +UniRef50_Q04760 Lactoylglutathione lyase 0.196303538194 0.5 0.303696461807 +UniRef50_Q8CNV0 Spore cortex protein like protein 1.73833774117 0.5 -1.23833774117 +UniRef50_UPI00029B28E4 hydrogenase nickel incorporation protein HypA 0.731008349516 0.5 -0.231008349516 +UniRef50_UPI0003B738BF O acetylhomoserine aminocarboxypropyltransferase 0.850767483597 0.5 -0.350767483597 +UniRef50_UPI00037956D5 hypothetical protein 0.329577872313 0.5 0.170422127687 +UniRef50_UPI00017458ED ATP binding transport protein; multicopy suppressor of HtrB 0.611511701137 0.5 -0.111511701137 +UniRef50_K1H2M5 Carbamoyl phosphate synthase small chain 1.11901001545 0.5 -0.619010015453 +UniRef50_Q59330 Phosphate acetyltransferase 0.00542122005745 0.5 0.494578779943 +UniRef50_Q5HQY7 Glycerate kinase family protein 1.53188653525 0.5 -1.03188653525 +UniRef50_B0S0R4 Transcriptional regulator PadR family 2.53639910954 0.499999999996 -2.03639910954 +UniRef50_A6LXB1 0.347811120057 0.5 0.152188879943 +UniRef50_P08194 Glycerol 3 phosphate transporter 0.800076689466 0.5 -0.300076689466 +UniRef50_UPI000471094A choline dehydrogenase 2.21861245852 0.499999999999 -1.71861245851 +UniRef50_M0E7L5 DRTGG domain protein 0.744421843853 0.5 -0.244421843853 +UniRef50_UPI0003EDAB70 hypothetical protein, partial 1.89397431088 0.5 -1.39397431088 +UniRef50_A9U7B4 Predicted protein 0.107812856122 0.5 0.392187143878 +UniRef50_A3PJJ0 Rhodanese domain protein 3.17624261449 0.500000000001 -2.67624261449 +UniRef50_UPI00035C57AE hypothetical protein 0.125526715542 0.5 0.374473284458 +UniRef50_UPI00046311A7 alpha beta hydrolase 0.171512486753 0.5 0.328487513247 +UniRef50_UPI00046F6433 hypothetical protein 0.330720531706 0.5 0.169279468294 +UniRef50_UPI000289D647 acetylglutamate kinase 1.36206699291 0.5 -0.862066992914 +UniRef50_R6BWJ5 Efflux ABC transporter permease ATP binding protein 1.53990447559 0.5 -1.03990447559 +UniRef50_H9UWH8 0.230685206649 0.5 0.269314793351 +UniRef50_Q4SXX9 Chromosome undetermined SCAF12296, whole genome shotgun sequence. 0.346248121466 0.5 0.153751878534 +UniRef50_F9YXR6 6 aminohexanoate dimer hydrolase 0.0144347039331 0.5 0.485565296067 +UniRef50_Q0A9A9 3 isopropylmalate dehydratase small subunit 0.816226766785 0.5 -0.316226766785 +UniRef50_Q88FY7 Porin like protein NicP 1.52461948595 0.5 -1.02461948595 +UniRef50_A4WTZ9 Glycoside hydrolase, family 16 3.23963410746 0.500000000003 -2.73963410746 +UniRef50_U4K6F1 Methylmalonate semialdehyde dehydrogenase [acylating] 0.0524102722307 0.5 0.447589727769 +UniRef50_A0A023RX61 Metal binding protein 0.013809564832 0.5 0.486190435168 +UniRef50_Q75JL2 Mitochondrial DNA repair protein recA homolog 1.19362680028 0.5 -0.693626800282 +UniRef50_Q03SY7 Dipeptide tripeptide permease 0.145692656021 0.5 0.354307343979 +UniRef50_Q1CBV8 Phosphoenolpyruvate carboxylase 3.21049183182 0.499999999999 -2.71049183182 +UniRef50_E9MXH2 Clumping factor A 0.358320851702 0.5 0.141679148298 +UniRef50_Q8GPI8 1.92787187429 0.5 -1.42787187429 +UniRef50_P0ACL3 Exu regulon transcriptional regulator 1.96585047913 0.5 -1.46585047913 +UniRef50_U1FCM2 0.159624668448 0.499999999999 0.340375331552 +UniRef50_S5XWF4 Transcriptional regulator, MerR family 19.0472623304 0.500000000005 -18.5472623304 +UniRef50_Q48QI5 Oxidoreductase alpha subunit, fusion 0.495456627717 0.5 0.0045433722826 +UniRef50_C5N6C7 DHHA1 domain protein 0.933186505891 0.5 -0.433186505891 +UniRef50_F5YTR0 1.15808566636 0.5 -0.65808566636 +UniRef50_G8VCG0 Acyltransferase 0.022862353813 0.5 0.477137646187 +UniRef50_P0AAN4 Hydrogenase isoenzymes nickel incorporation protein HypB 0.499840106497 0.5 0.000159893502597 +UniRef50_G3XD29 Na H(+) antiporter NhaP 1.91670092386 0.5 -1.41670092386 +UniRef50_G7U530 ABC transporter, ATP binding protein 0.02358151055 0.5 0.47641848945 +UniRef50_UPI0003B392E0 hypothetical protein 0.199187360381 0.5 0.300812639619 +UniRef50_M9V971 NADH quinone oxidoreductase subunit C 0.029345284581 0.5 0.470654715419 +UniRef50_Q2IMR8 0.0920685092733 0.5 0.407931490727 +UniRef50_K8AK15 Putative threonine efflux protein 0.445653244443 0.5 0.0543467555569 +UniRef50_Q7VFT4 Donor ubiquinone reductase I 0.0173503153435 0.5 0.482649684656 +UniRef50_C1DNP3 Short chain dehydrogenase reductase SDR 0.0855922492816 0.5 0.414407750718 +UniRef50_C7ZV90 Thioredoxin 1.5155589577 0.5 -1.0155589577 +UniRef50_K9RE57 GAF domain containing protein 0.00436222200334 0.5 0.495637777997 +UniRef50_L1AYN6 Inner membrane protein ybjJ 1.02224277274 0.5 -0.522242772745 +UniRef50_Q0B621 Sigma54 specific transcriptional regulator, Fis family 0.384803870631 0.5 0.115196129369 +UniRef50_UPI000371346A hypothetical protein 0.925562661714 0.5 -0.425562661714 +UniRef50_A3M4G7 Surface antigen 0.0416474373149 0.5 0.458352562685 +UniRef50_E2XNF0 Fatty acid oxidation complex subunit alpha 1.13744966176 0.5 -0.637449661758 +UniRef50_I0G4P6 1.5600223756 0.5 -1.0600223756 +UniRef50_Q9HJL5 Malate dehydrogenase 0.894985455996 0.5 -0.394985455996 +UniRef50_P0ACU3 HTH type transcriptional regulator RutR 0.338137056412 0.5 0.161862943588 +UniRef50_C1FT82 D alanyl D alanine carboxypeptidase family protein 0.592685182503 0.5 -0.0926851825028 +UniRef50_O32333 Glucitol sorbitol specific phosphotransferase enzyme IIB component 0.208206533762 0.5 0.291793466238 +UniRef50_UPI00037CE211 hypothetical protein 0.219626003715 0.5 0.280373996285 +UniRef50_G5LK96 Putative cytoplasmic protein 0.956979320731 0.5 -0.456979320731 +UniRef50_UPI0004694C70 glucosamine fructose 6 phosphate aminotransferase 0.290734827025 0.5 0.209265172975 +UniRef50_V5VA73 0.0100980698008 0.5 0.489901930199 +UniRef50_UPI0002491573 N acylamino acid racemase 0.0106867537778 0.5 0.489313246222 +UniRef50_UPI00046F1E63 spermidine putrescine ABC transporter ATP binding protein 1.72991265708 0.500000000001 -1.22991265708 +UniRef50_M9VHY4 DeoR family transcriptional regulator 0.0242039156263 0.5 0.475796084374 +UniRef50_UPI000345870C hypothetical protein 0.976541372246 0.5 -0.476541372246 +UniRef50_L8N0M9 0.000636613997096 0.5 0.499363386002 +UniRef50_P16684 Probable transcriptional regulator PhnF 1.75568434276 0.500000000001 -1.25568434277 +UniRef50_P63978 DNA polymerase III subunit alpha 0.000380236996427 0.5 0.499619763003 +UniRef50_D8IGU8 ABC superfamily ATP binding cassette transporter, ABC protein 0.659486255533 0.5 -0.159486255533 +UniRef50_Q604M0 tRNA pseudouridine synthase D 0.105227462467 0.5 0.394772537533 +UniRef50_M0EDY5 1.02287977307 0.5 -0.522879773071 +UniRef50_Y1FPC0 0.301865408004 0.5 0.198134591996 +UniRef50_UPI0000E48FF4 PREDICTED 0.395049561418 0.5 0.104950438582 +UniRef50_Q0S277 Probable dual specificity RNA methyltransferase RlmN 0.335159313041 0.5 0.164840686959 +UniRef50_Q3IVM7 1.67891881127 0.5 -1.17891881127 +UniRef50_A3V1R1 Flagellar protein FlgJ, putative 0.946510615343 0.5 -0.446510615343 +UniRef50_UPI000370C492 hypothetical protein 1.38859183868 0.5 -0.888591838684 +UniRef50_UPI0004647D08 hypothetical protein 0.369524111541 0.5 0.130475888459 +UniRef50_P58839 Glyceraldehyde 3 phosphate dehydrogenase 0.876436616722 0.5 -0.376436616722 +UniRef50_UPI0003B6456C ATP dependent Clp protease ClpS 1.28890964519 0.5 -0.78890964519 +UniRef50_H9V023 TRAP transporter, DctM subunit 2.49502173407 0.500000000001 -1.99502173407 +UniRef50_U7IWX4 0.239851755847 0.5 0.260148244153 +UniRef50_UPI0001746414 glycogen debranching protein 0.143376192467 0.5 0.356623807533 +UniRef50_F4CX14 FAD dependent oxidoreductase 0.00465777226013 0.5 0.49534222774 +UniRef50_N1MM41 0.494297085096 0.5 0.00570291490447 +UniRef50_UPI0003B5E825 ArsR family transcriptional regulator, partial 2.83617706456 0.499999999998 -2.33617706456 +UniRef50_UPI00039D6F74 ubiquinol cytochrome C oxidoreductase 0.179224342672 0.5 0.320775657328 +UniRef50_Q0E4C7 Os02g0125700 protein 0.777467299123 0.5 -0.277467299123 +UniRef50_UPI00036A48DC hypothetical protein 1.12208342585 0.5 -0.622083425845 +UniRef50_Q5WDJ2 Putative sporulation transcription regulator WhiA 1.59118841728 0.499999999999 -1.09118841728 +UniRef50_UPI00047AAA82 hypothetical protein 0.122825690415 0.5 0.377174309585 +UniRef50_Q0Q2J7 Putative antiporter subunit mnhD2 1.25233672799 0.500000000001 -0.752336727995 +UniRef50_P43948 UDP N acetylmuramate 0.0175320701633 0.5 0.482467929837 +UniRef50_Q28RG9 Transcriptional regulator, AsnC family 0.135939921487 0.5 0.364060078513 +UniRef50_B7L8J6 2 3 dephosphocoenzyme A synthase 1.70880494344 0.500000000001 -1.20880494345 +UniRef50_UPI0003AEE558 PREDICTED 2.21581310445 0.499999999999 -1.71581310445 +UniRef50_UPI00036ED489 hypothetical protein 0.127201795224 0.5 0.372798204776 +UniRef50_UPI0003B77D2D DNA repair protein RadA 0.730056909877 0.5 -0.230056909877 +UniRef50_H6LCQ4 Branched chain amino acid ABC transport system permease protein LivM2 0.154877570844 0.5 0.345122429156 +UniRef50_UPI0004663E52 hypothetical protein 2.32227894606 0.5 -1.82227894606 +UniRef50_D8HCQ5 Aminopeptidase 2.46524576594 0.5 -1.96524576594 +UniRef50_Q2YQI5 Adenylosuccinate synthetase 0.0674120032222 0.500000000001 0.432587996777 +UniRef50_UPI0003B6ABA5 sugar ABC transporter ATPase, partial 2.48600559403 0.5 -1.98600559403 +UniRef50_A1APQ8 Succinyl CoA ligase [ADP forming] subunit beta 0.775133014077 0.5 -0.275133014077 +UniRef50_K4MG34 Beta Ig H3 fasciclin 2.17825473836 0.499999999999 -1.67825473836 +UniRef50_P56145 Phenylalanine tRNA ligase beta subunit 0.0206094482094 0.5 0.47939055179 +UniRef50_Q1RH95 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ 0.460076360521 0.5 0.0399236394791 +UniRef50_D5WB27 Histidine ammonia lyase 0.0115734226735 0.5 0.488426577326 +UniRef50_J9NST0 0.165828814644 0.5 0.334171185356 +UniRef50_P00561 Bifunctional aspartokinase homoserine dehydrogenase 1 0.465047346026 0.5 0.034952653974 +UniRef50_UPI00047E7181 hypothetical protein 0.00616332368627 0.499999999999 0.493836676314 +UniRef50_UPI000421E015 hypothetical protein 0.0478975493689 0.5 0.452102450631 +UniRef50_UPI0003B5F4A9 hypothetical protein 0.409540116583 0.5 0.0904598834175 +UniRef50_P77615 0.453134989692 0.5 0.0468650103082 +UniRef50_P77616 3.1542421308 0.500000000003 -2.6542421308 +UniRef50_D5AQK3 Cache sensor protein 1.39460482287 0.5 -0.894604822874 +UniRef50_UPI0003B4A397 hypothetical protein, partial 0.571238669953 0.5 -0.0712386699533 +UniRef50_UPI00047E19A4 ABC transporter ATP binding protein 0.742980225992 0.5 -0.242980225992 +UniRef50_Q9V8M5 Probable 3 hydroxyisobutyrate dehydrogenase, mitochondrial 0.128870655797 0.5 0.371129344204 +UniRef50_I0KAK8 Major facilitator superfamily MFS_1 0.0082313633905 0.5 0.491768636609 +UniRef50_UPI00046328AB hypothetical protein 0.637796068453 0.5 -0.137796068453 +UniRef50_I6TSN2 Peptidase 0.961141115368 0.5 -0.461141115368 +UniRef50_UPI000463E283 ABC transporter substrate binding protein 0.0533860946518 0.5 0.446613905348 +UniRef50_G0AA04 Sulfate binding protein sbp 0.266922584891 0.5 0.233077415109 +UniRef50_I6TQ24 Folyl polyglutamate synthetase 0.738459109201 0.5 -0.238459109201 +UniRef50_UPI000366242D hypothetical protein 0.230997515908 0.5 0.269002484092 +UniRef50_S9RVB4 Gene Transfer Agent NlpC P60 family peptidase 0.0465092687975 0.5 0.453490731202 +UniRef50_M1MRW4 Haloacid dehalogenase superfamily enzyme, subfamily IA 0.145657511397 0.5 0.354342488603 +UniRef50_U6AND4 Transcriptional regulator, LysR family 0.313841168539 0.5 0.186158831461 +UniRef50_UPI0003809FBC gluconate transporter, partial 0.0178255405653 0.5 0.482174459435 +UniRef50_A9ANH6 Transcriptional regulator, AraC family 0.313812820262 0.5 0.186187179738 +UniRef50_UPI0004708F76 ABC transporter ATP binding protein 0.258154117258 0.5 0.241845882742 +UniRef50_UPI00036BF64F hypothetical protein 0.357511384201 0.5 0.142488615799 +UniRef50_Q8G5P8 Methionine import ATP binding protein MetN 0.732641887386 0.5 -0.232641887386 +UniRef50_D3E2P1 Bicarbonate ABC transporter ATP binding protein BtcA 1.75218762245 0.5 -1.25218762245 +UniRef50_I6TQK5 8.65070968869 0.5 -8.15070968869 +UniRef50_A1UAJ5 1.43922437029 0.5 -0.939224370288 +UniRef50_I6U427 Sugar binding periplasmic protein 1.64621085958 0.5 -1.14621085958 +UniRef50_C7D6Q8 Lipoprotein, putative 0.623936861569 0.5 -0.123936861569 +UniRef50_P36928 2.44970042283 0.499999999999 -1.94970042283 +UniRef50_Q5HLU9 2.50780024115 0.5 -2.00780024115 +UniRef50_A6UM37 1.47704871997 0.5 -0.977048719968 +UniRef50_W1MWT9 1.65035307467 0.5 -1.15035307467 +UniRef50_Q5HLU0 0.43724392677 0.5 0.0627560732304 +UniRef50_G7Z253 0.71736769362 0.5 -0.21736769362 +UniRef50_UPI0003784C38 hypothetical protein 0.109692488542 0.5 0.390307511458 +UniRef50_Q168A3 Holliday junction ATP dependent DNA helicase RuvA 1.04455630008 0.5 -0.544556300078 +UniRef50_Q9RSC3 UDP glucose 4 epimerase 0.00997457990996 0.5 0.49002542009 +UniRef50_A8AJ50 0.320757162895 0.5 0.179242837105 +UniRef50_UPI000465930A MULTISPECIES 0.385505243364 0.5 0.114494756636 +UniRef50_A7ZQY1 D phenylhydantoinase 1.62845622942 0.5 -1.12845622942 +UniRef50_Q8RGA3 Tryptophan tRNA ligase 0.242194513846 0.5 0.257805486154 +UniRef50_UPI000475AC4B lactate permease 0.0927330773344 0.5 0.407266922665 +UniRef50_UPI0000164CFE hypothetical protein DR_2417m 0.00673879277823 0.5 0.493261207222 +UniRef50_E4PYL2 Plasmid recombination protein, Mob family 3.02305325114 0.499999999998 -2.52305325114 +UniRef50_UPI0003614BF9 hypothetical protein 0.728389963294 0.5 -0.228389963294 +UniRef50_K0LK11 ABC transporter, ATP binding protein 1.49391809498 0.500000000002 -0.993918094984 +UniRef50_A5UME7 Arsenite transporting ATPase 1.93682532379 0.499999999999 -1.43682532379 +UniRef50_Q8CQM8 1.22915366902 0.5 -0.729153669022 +UniRef50_UPI0003A8604F DNA polymerase I 0.235711458085 0.5 0.264288541915 +UniRef50_Q9KVU3 Peptide deformylase 1 0.796820603231 0.5 -0.296820603231 +UniRef50_T1Y647 Ribitol 5 phosphate 2 dehydrogenase 1.14560046704 0.5 -0.645600467042 +UniRef50_A5ULT4 Adhesin like protein 1.46428682454 0.5 -0.964286824535 +UniRef50_B5F295 NAD kinase 0.35336911937 0.5 0.14663088063 +UniRef50_UPI0003796137 hypothetical protein 0.0547336937866 0.5 0.445266306214 +UniRef50_UPI00032895A1 PREDICTED 2.15549585482 0.499999999998 -1.65549585482 +UniRef50_A5KZG1 Sex pilus assembly and synthesis protein TraW 2.35956825499 0.500000000002 -1.85956825499 +UniRef50_UPI000377C2D0 hypothetical protein 1.49783256979 0.5 -0.997832569791 +UniRef50_P0AFB0 Nickel transport system permease protein NikC 1.57936592483 0.5 -1.07936592483 +UniRef50_D8JIG5 0.31779998805 0.5 0.18220001195 +UniRef50_UPI0002195926 spermidine putrescine ABC transporter substrate binding protein 0.118184727707 0.5 0.381815272293 +UniRef50_M1MNN2 0.113157037374 0.5 0.386842962626 +UniRef50_D8FZ53 0.0253735981293 0.5 0.47462640187 +UniRef50_J7LRM2 Gamma aminobutyraldehyde dehydrogenase 0.00553109320454 0.5 0.494468906796 +UniRef50_E6U6T5 Major facilitator superfamily MFS_1 0.329925544542 0.5 0.170074455458 +UniRef50_F2JM65 Alcohol dehydrogenase 0.191011836983 0.5 0.308988163017 +UniRef50_A5UKJ6 4.0026149533 0.499999999997 -3.5026149533 +UniRef50_P40924 Phosphoglycerate kinase 0.00128870621053 0.5 0.49871129379 +UniRef50_UPI0003804C63 hypothetical protein 0.510603487797 0.5 -0.0106034877968 +UniRef50_UPI000362831E hypothetical protein 0.00184657181353 0.5 0.498153428187 +UniRef50_W8RX73 Cytochrome C 0.412257008036 0.5 0.0877429919637 +UniRef50_P32014 Capsule polysaccharide export inner membrane protein CtrB 0.0497853887146 0.5 0.450214611286 +UniRef50_I7DUX8 ABC transporter ATP binding protein 2.20721171313 0.5 -1.70721171313 +UniRef50_G2L2K0 Penicillin binding protein 3A 0.144929253277 0.5 0.355070746723 +UniRef50_Q2LR78 Glutamate 5 kinase 0.344469554662 0.5 0.155530445338 +UniRef50_UPI000468E962 hypothetical protein 0.390396667272 0.5 0.109603332728 +UniRef50_Q5HRW9 2.58639479184 0.5 -2.08639479184 +UniRef50_Q5HKM6 1.85662974377 0.5 -1.35662974377 +UniRef50_UPI0002B8EE79 1.95043933476 0.5 -1.45043933476 +UniRef50_Q5HRW3 0.699239117452 0.5 -0.199239117452 +UniRef50_R6W4I9 Glycerol 3 phosphate dehydrogenase anaerobic B subunit 0.499976523973 0.5 2.34760267254e-05 +UniRef50_Q6DAT5 L threonine 3 dehydrogenase 0.417964605937 0.5 0.0820353940626 +UniRef50_D6DGD0 Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain 0.0646151898907 0.5 0.435384810109 +UniRef50_Q9FA54 Glucans biosynthesis protein G 1.06265563955 0.5 -0.562655639553 +UniRef50_UPI0002629408 riboflavin biosynthesis protein RibD 0.595642976245 0.5 -0.0956429762454 +UniRef50_UPI00037ECE7A hypothetical protein 0.30459916836 0.5 0.19540083164 +UniRef50_H3CIZ8 1.79698828695 0.500000000001 -1.29698828695 +UniRef50_C0ZDE1 ABC transporter substrate binding protein 1.20744081909 0.5 -0.707440819091 +UniRef50_P56891 Phosphoadenosine phosphosulfate reductase 0.485533287997 0.5 0.0144667120028 +UniRef50_J0WNU1 12.4869636021 0.500000000006 -11.9869636021 +UniRef50_UPI000467B474 integrase, partial 0.958680923441 0.5 -0.458680923441 +UniRef50_L9MX54 Phage like baseplate assembly protein 0.00849814248771 0.5 0.491501857512 +UniRef50_UPI000454729B PREDICTED 1.59658620555 0.5 -1.09658620555 +UniRef50_E8RQD7 Peptidase M15A 0.187329268764 0.5 0.312670731236 +UniRef50_D1GNQ1 Aldo keto reductase family protein 0.970397811394 0.5 -0.470397811394 +UniRef50_P75835 Inner membrane transporter YcaM 1.14253862124 0.5 -0.642538621244 +UniRef50_B4T6V0 Orotidine 5 phosphate decarboxylase 0.00843920111243 0.5 0.491560798887 +UniRef50_B9QX37 0.381258865295 0.5 0.118741134705 +UniRef50_UPI00046968BE hypothetical protein 0.306697940318 0.5 0.193302059682 +UniRef50_E6VT00 Periplasmic phosphate binding protein 0.353183444406 0.5 0.146816555594 +UniRef50_A6X6Y3 1.17607825779 0.5 -0.676078257791 +UniRef50_Q00UL4 WGS project CAID00000000 data, contig chromosome 16 3.52977355441 0.499999999998 -3.02977355441 +UniRef50_W5XBC0 30S ribosomal protein S3 0.244553790342 0.5 0.255446209658 +UniRef50_T1ZLX4 Transaldolase 4.41085523591 0.500000000001 -3.91085523591 +UniRef50_UPI00036712C2 hypothetical protein, partial 3.2348577083 0.499999999998 -2.7348577083 +UniRef50_A5UL05 Conserved hypothetical membrane protein Msm_0678 3.00190207905 0.500000000002 -2.50190207906 +UniRef50_C2THV2 0.17422059623 0.5 0.32577940377 +UniRef50_A6LQP6 0.528072070332 0.5 -0.0280720703322 +UniRef50_Q9RV37 0.0209910994576 0.5 0.479008900543 +UniRef50_F8JYV1 0.45903625965 0.5 0.0409637403504 +UniRef50_Q9RV33 0.00064875745755 0.5 0.499351242543 +UniRef50_A6LQP1 0.0365203675961 0.500000000001 0.463479632403 +UniRef50_P66936 DNA gyrase subunit B 1.63524359426 0.500000000002 -1.13524359426 +UniRef50_UPI00037BCD79 hypothetical protein, partial 0.143138927357 0.5 0.356861072643 +UniRef50_W5X9F8 Polyphosphate kinase 0.0101705399632 0.5 0.489829460037 +UniRef50_B2VFX0 Protein Syd 7.15962287371 0.499999999998 -6.65962287371 +UniRef50_Q5HLU5 SugE protein 1.08145571701 0.5 -0.581455717006 +UniRef50_Q88F38 Cation transporting P type ATPase 0.98934508177 0.5 -0.48934508177 +UniRef50_UPI0003B6672C 50S ribosomal protein L24, partial 0.10575278188 0.5 0.39424721812 +UniRef50_L5UXA6 Glycosyl transferase, group 2 family protein 0.106235282868 0.5 0.393764717132 +UniRef50_K4A3K7 1.0793231178 0.5 -0.5793231178 +UniRef50_UPI000475C24E phosphoribosylaminoimidazole carboxylase 0.504294947916 0.5 -0.00429494791557 +UniRef50_UPI0002F5CF5E hypothetical protein 0.400562850279 0.5 0.0994371497207 +UniRef50_A5FNF9 Lipoyl synthase 0.067019590456 0.5 0.432980409544 +UniRef50_Q1LTX5 Adenylate kinase 0.299111002112 0.5 0.200888997888 +UniRef50_B2GLQ7 Biotin synthase 0.0323082173784 0.5 0.467691782622 +UniRef50_B9KX84 0.36815932255 0.5 0.13184067745 +UniRef50_D2J7P9 Replication initiator protein 31.2129600347 0.500000000009 -30.7129600347 +UniRef50_UPI0003F8A6FF hypothetical protein 0.305243235045 0.5 0.194756764955 +UniRef50_G2T679 CRISPR associated helicase Cas3 family protein 3.0204318009 0.500000000001 -2.5204318009 +UniRef50_F4LK69 Regulatory protein TetR 0.848415261888 0.5 -0.348415261888 +UniRef50_Q8TWX0 Carbamoyl phosphate synthase large chain, N terminal section 1.36470863761 0.5 -0.864708637607 +UniRef50_D9PX81 FAD synthase 0.307945425825 0.5 0.192054574175 +UniRef50_X6N172 0.102381622344 0.5 0.397618377656 +UniRef50_X1SQS0 Marine sediment metagenome DNA, contig 0.0634688227044 0.5 0.436531177296 +UniRef50_UPI000406F11E permease 0.12158789968 0.5 0.37841210032 +UniRef50_Q3IWF1 AMP binding enzyme 1.03120398771 0.5 -0.531203987708 +UniRef50_UPI0003B50149 5 amino 6 uracil reductase 0.0502582671397 0.5 0.44974173286 +UniRef50_UPI0004787588 NAD dependent dehydratase 5.11030736673 0.500000000001 -4.61030736673 +UniRef50_UPI00036D4BC8 hypothetical protein, partial 0.553411243616 0.5 -0.0534112436156 +UniRef50_I6T8B1 0.209801178879 0.5 0.290198821121 +UniRef50_UPI00034FE692 PREDICTED 0.187873309239 0.5 0.312126690761 +UniRef50_Q9RUD9 0.00253044535944 0.5 0.49746955464 +UniRef50_M9S778 Two component sensor 1.54847117968 0.5 -1.04847117968 +UniRef50_UPI00037416F3 hypothetical protein 0.415805780944 0.5 0.0841942190561 +UniRef50_D4H976 Dihydrofolate reductase 0.278153582406 0.5 0.221846417594 +UniRef50_I3UPT4 AMP dependent synthetase and ligase 0.0131229637739 0.499999999999 0.486877036227 +UniRef50_A6LTP7 Multi sensor signal transduction histidine kinase 0.092583894108 0.500000000001 0.407416105891 +UniRef50_U5MZ96 Sulfate adenylyltransferase subunit 1 0.0779976627547 0.500000000001 0.422002337245 +UniRef50_UPI00039A293C amino acid ABC transporter permease 0.64802595438 0.5 -0.14802595438 +UniRef50_UPI000417C130 MerR family transcriptional regulator 0.436727739393 0.5 0.0632722606067 +UniRef50_B9KQ54 Phosphate starvation inducible E 0.762405550354 0.5 -0.262405550354 +UniRef50_K7UQK0 0.535056087353 0.5 -0.0350560873532 +UniRef50_UPI0003FD08E7 MULTISPECIES 0.415595457492 0.5 0.0844045425081 +UniRef50_P95907 Glycerol kinase 2 0.145170839765 0.5 0.354829160235 +UniRef50_B3PN30 DNA gyrase subunit A 0.309543285383 0.5 0.190456714617 +UniRef50_K0HFT9 0.00645670730408 0.5 0.493543292696 +UniRef50_UPI00046EC477 hypothetical protein, partial 0.696803283208 0.5 -0.196803283208 +UniRef50_UPI0004639765 hypothetical protein, partial 0.232297549952 0.5 0.267702450048 +UniRef50_UPI000225FA9E hypothetical protein 0.858657280206 0.5 -0.358657280206 +UniRef50_UPI0003041FF9 hypothetical protein 1.54653775961 0.500000000002 -1.04653775961 +UniRef50_P44450 Formate dehydrogenase iron sulfur subunit 2.36857951768 0.5 -1.86857951768 +UniRef50_D4MEH6 Hemolysins and related proteins containing CBS domains 0.892349956838 0.5 -0.392349956838 +UniRef50_W6KFD1 0.973638486441 0.5 -0.473638486441 +UniRef50_P0AFF4 Nucleoside permease NupG 4.20018723636 0.499999999999 -3.70018723636 +UniRef50_UPI0003B5C461 30S ribosomal protein S4 0.0589465488597 0.5 0.44105345114 +UniRef50_UPI00036F3F50 hypothetical protein 0.284483630412 0.5 0.215516369588 +UniRef50_P52078 1.65156723526 0.500000000002 -1.15156723527 +UniRef50_R7LL20 0.599550017885 0.5 -0.0995500178847 +UniRef50_Q6FD51 Aminopeptidase P 0.00827568414831 0.5 0.491724315852 +UniRef50_Q5GUU6 0.118140933638 0.5 0.381859066362 +UniRef50_A3K9P8 0.243062002218 0.5 0.256937997782 +UniRef50_Q2RVQ3 0.947398600086 0.5 -0.447398600086 +UniRef50_W4HQH1 0.426346573046 0.5 0.0736534269536 +UniRef50_P67051 Thymidylate synthase 0.467225712725 0.5 0.0327742872751 +UniRef50_UPI0002492BAD sugar ABC transporter ATPase 0.342538820427 0.5 0.157461179573 +UniRef50_Q57180 0.019738631213 0.5 0.480261368787 +UniRef50_D0LYV0 1.76925567058 0.500000000001 -1.26925567058 +UniRef50_UPI000478D57C hypothetical protein 0.130642857699 0.5 0.369357142301 +UniRef50_F9YXY3 Phosphate binding protein PstS 0.0261819873999 0.5 0.4738180126 +UniRef50_Q9RTB2 0.000775766366337 0.5 0.499224233634 +UniRef50_R6QEM9 Oxidoreductase short chain dehydrogenase reductase family protein 0.0406021991831 0.5 0.459397800817 +UniRef50_D8GL93 Adenine deaminase 0.0577048420683 0.5 0.442295157931 +UniRef50_V8UF34 1.01412040088 0.5 -0.514120400876 +UniRef50_P0ACL0 Glycerol 3 phosphate regulon repressor 1.97917315003 0.499999999999 -1.47917315003 +UniRef50_X5EPD5 Iron ascorbate oxidoreductase 0.22118611007 0.5 0.27881388993 +UniRef50_Q74RF9 Maltose transport system permease protein MalF 2.12722204573 0.500000000001 -1.62722204573 +UniRef50_A5IVI8 Protein disulfide isomerase like protein 15.6446846716 0.499999999998 -15.1446846716 +UniRef50_N5SB54 0.241176071589 0.5 0.258823928411 +UniRef50_UPI000371F13D hypothetical protein, partial 0.391127626739 0.5 0.108872373261 +UniRef50_UPI00037C627C hypothetical protein 0.514063961927 0.5 -0.0140639619268 +UniRef50_O05220 16.418200783 0.500000000001 -15.918200783 +UniRef50_UPI000418FC9B biotin attachment protein 0.158456362728 0.5 0.341543637272 +UniRef50_UPI00046AABC6 recombinase RecF 0.970381540071 0.5 -0.470381540071 +UniRef50_B4V9Q0 0.487785587707 0.5 0.0122144122928 +UniRef50_O06924 Acetyl S ACP 0.00863605102586 0.5 0.491363948974 +UniRef50_C6S5H1 Protein disulfide isomerase 0.0544517184353 0.500000000001 0.445548281564 +UniRef50_G7M244 Mannosyl glycoprotein endo beta N acetylglucosamidase 0.478757322448 0.5 0.0212426775523 +UniRef50_L0FRW3 1.06138281155 0.5 -0.561382811555 +UniRef50_G8V6G8 10.7965049095 0.500000000002 -10.2965049095 +UniRef50_U3H984 0.0673112795455 0.5 0.432688720454 +UniRef50_Q6G9J2 Anthranilate synthase component I 2.44694965965 0.500000000002 -1.94694965966 +UniRef50_C6SPU8 Glucan binding protein C 1.46120617177 0.5 -0.961206171767 +UniRef50_Q47S88 0.338046163383 0.5 0.161953836617 +UniRef50_UPI0001F2A777 hypothetical protein AOR_1_134104 0.420045219763 0.5 0.0799547802365 +UniRef50_W7VUT6 Alanine dehydrogenase 0.615319618736 0.5 -0.115319618736 +UniRef50_UPI0003615879 hypothetical protein 0.351870344834 0.5 0.148129655166 +UniRef50_UPI0002E18D8D hypothetical protein 0.268600472403 0.5 0.231399527597 +UniRef50_Q58899 UDP N acetylglucosamine 2 epimerase 1.12654315643 0.5 -0.626543156432 +UniRef50_A3DGC7 DNA integrity scanning protein DisA 0.142640496425 0.5 0.357359503575 +UniRef50_I1B4H1 0.915058529594 0.5 -0.415058529594 +UniRef50_UPI00037C4D1B hypothetical protein 1.18358283103 0.5 -0.683582831029 +UniRef50_L0A6W7 0.978943128688 0.5 -0.478943128688 +UniRef50_E5ASY5 DNA polymerase III subunit beta 0.015663006965 0.5 0.484336993035 +UniRef50_Q9RTT6 Cysteine tRNA ligase 0.00176359433467 0.5 0.498236405665 +UniRef50_Q2I2W2 Egg case silk protein 2 1.37358679102 0.5 -0.873586791017 +UniRef50_Q9WZ28 Carbamoyl phosphate synthase small chain 0.983102743874 0.5 -0.483102743874 +UniRef50_P52696 1.09653188832 0.5 -0.596531888324 +UniRef50_P56580 Glucitol sorbitol specific phosphotransferase enzyme IIB component 0.104876006787 0.499999999999 0.395123993213 +UniRef50_C1MVJ6 Predicted protein 2.80039457413 0.500000000001 -2.30039457413 +UniRef50_UPI0003EF10EB hypothetical protein 0.979379766784 0.5 -0.479379766784 +UniRef50_UPI0003780D4B hypothetical protein, partial 1.78256134152 0.5 -1.28256134152 +UniRef50_R7PQW4 0.0218828151471 0.5 0.478117184853 +UniRef50_UPI00016B142B F0F1 ATP synthase subunit beta, partial 0.228245111363 0.5 0.271754888637 +UniRef50_UPI000473C475 hypothetical protein, partial 0.647137374586 0.5 -0.147137374586 +UniRef50_W7J736 0.341873226991 0.5 0.158126773009 +UniRef50_O27739 Energy coupling factor transporter ATP binding protein EcfA 10.7892046393 0.500000000004 -10.2892046393 +UniRef50_A5UNK3 0.496861027983 0.5 0.00313897201738 +UniRef50_Q92210 Phosphoribosylaminoimidazole carboxylase 0.350714573257 0.5 0.149285426743 +UniRef50_Q1CJW8 Macrolide export ATP binding permease protein MacB 1 0.111385754589 0.5 0.388614245411 +UniRef50_UPI00042688B1 hypothetical protein 0.427895813877 0.5 0.0721041861235 +UniRef50_Q5LNV7 2.52903786449 0.5 -2.02903786449 +UniRef50_R1BQD4 0.231022209172 0.5 0.268977790828 +UniRef50_Q16762 Thiosulfate sulfurtransferase 1.26894204833 0.5 -0.768942048329 +UniRef50_Q5FA95 0.015910786441 0.499999999999 0.48408921356 +UniRef50_UPI0000167758 hypothetical protein 1.68352532846 0.5 -1.18352532846 +UniRef50_UPI0003EAFD31 PREDICTED 0.49794753673 0.5 0.00205246327046 +UniRef50_D0K910 1.77381859918 0.500000000002 -1.27381859918 +UniRef50_E1M6K4 Aldehyde alcohol dehydrogenase 2 1.72811478326 0.500000000001 -1.22811478326 +UniRef50_R7PUN2 Chlamydial polymorphic outer membrane protein repeat containing domain protein 1.53971741421 0.500000000001 -1.03971741421 +UniRef50_UPI0003738034 hypothetical protein 0.318256876186 0.5 0.181743123814 +UniRef50_UPI000377F542 universal stress protein A, partial 1.08653341278 0.5 -0.58653341278 +UniRef50_B1YLN1 Cyclic nucleotide binding protein 0.205816264336 0.5 0.294183735664 +UniRef50_UPI0004575D3A PREDICTED 0.353722398061 0.5 0.146277601939 +UniRef50_E1V7V8 Aspartate semialdehyde dehydrogenase 0.176912858656 0.5 0.323087141344 +UniRef50_W8QZ31 1.36837537688 0.5 -0.868375376877 +UniRef50_E0DRL2 Transcriptional regulator 2.39065520576 0.5 -1.89065520576 +UniRef50_G8AUU4 0.459332968512 0.5 0.0406670314883 +UniRef50_A2SME8 0.213179398416 0.5 0.286820601584 +UniRef50_UPI00029DABF0 PREDICTED 0.181482354731 0.5 0.318517645269 +UniRef50_B2S0D7 DNA gyrase subunit A 0.230425402788 0.5 0.269574597212 +UniRef50_Q3IVR0 2.32037180991 0.5 -1.82037180991 +UniRef50_Q3IVR4 0.467661190863 0.5 0.0323388091366 +UniRef50_Q3IVR7 32.9278951083 0.5 -32.4278951083 +UniRef50_Q5HKL3 RarD protein 0.945749910096 0.5 -0.445749910096 +UniRef50_T5YD38 0.600639531434 0.5 -0.100639531434 +UniRef50_F1SH72 0.207018334118 0.5 0.292981665882 +UniRef50_Q47RR4 tRNA dimethylallyltransferase 0.390460436292 0.5 0.109539563708 +UniRef50_UPI000364980E hypothetical protein 0.792313603975 0.5 -0.292313603975 +UniRef50_I6TW93 Transposase 0.0199960906831 0.5 0.480003909317 +UniRef50_K0L2R6 Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein 1.47219589775 0.5 -0.972195897748 +UniRef50_B3PGL6 Pyoverdine ABC transporter, permease ATP binding protein 1.95532407302 0.5 -1.45532407302 +UniRef50_R6TDY4 ATPase histidine kinase DNA gyrase B HSP90 domain protein 0.0197853639093 0.499999999999 0.480214636091 +UniRef50_UPI0002F6E2AD hypothetical protein 1.3816271226 0.5 -0.8816271226 +UniRef50_A4VRC8 Membrane protein, TIGR01666 1.09480951124 0.5 -0.594809511241 +UniRef50_E2XRI8 YcaO like fatty acid binding protein 3.13625225595 0.5 -2.63625225595 +UniRef50_W7SJH2 Transcriptional regulator 0.454411297201 0.5 0.0455887027991 +UniRef50_UPI00047CB349 DNA gyrase subunit B 0.377826960335 0.5 0.122173039665 +UniRef50_UPI000393D820 PREDICTED 0.144195087299 0.5 0.355804912701 +UniRef50_P35595 PTS system glucose specific EIICBA component 0.673285947248 0.5 -0.173285947248 +UniRef50_P11701 Levansucrase 2.72117086315 0.5 -2.22117086315 +UniRef50_Q4KEM3 Two component sensor histidine kinase PedS1 1.33699594935 0.5 -0.836995949349 +UniRef50_I4KPZ2 Choline ABC transporter, ATP binding protein 0.190892988399 0.5 0.309107011601 +UniRef50_D9RD76 MFS family major facilitator transporter, bicyclomycin 2.64813729677 0.499999999999 -2.14813729677 +UniRef50_B3EQY1 ABC type phosphate transport system periplasmic component like protein 0.281178211514 0.5 0.218821788486 +UniRef50_Q8FVT0 Putative ATP binding protein BRA0745 BS1330_II0738 1.07664884355 0.5 -0.576648843554 +UniRef50_G9PKM7 0.283030818424 0.5 0.216969181576 +UniRef50_B0VQI7 0.055483910462 0.5 0.444516089538 +UniRef50_A5F3F4 Vibriobactin specific isochorismatase 0.238473902231 0.5 0.261526097769 +UniRef50_W8S0N6 1.27165654389 0.5 -0.771656543886 +UniRef50_W8S6V4 0.844108349105 0.5 -0.344108349105 +UniRef50_F0YCB9 0.121262118589 0.5 0.378737881411 +UniRef50_UPI0001BF5B06 hypothetical protein SMAC_11105, partial 0.914252018537 0.5 -0.414252018537 +UniRef50_M5R665 0.101345160106 0.5 0.398654839894 +UniRef50_UPI00041E8F2C hypothetical protein 0.180616962175 0.5 0.319383037825 +UniRef50_N5FY18 P loop ATPase 3.32539780475 0.500000000003 -2.82539780476 +UniRef50_R1FJP7 0.386207352864 0.5 0.113792647136 +UniRef50_P54291 Acyl homoserine lactone synthase 1.27327938498 0.499999999999 -0.773279384975 +UniRef50_D8UHU1 0.127393182497 0.5 0.372606817503 +UniRef50_UPI00045E12F9 PREDICTED 0.0138210362593 0.5 0.486178963741 +UniRef50_Q12GA5 Dyp type peroxidase 0.290688329274 0.5 0.209311670726 +UniRef50_B9KSF4 27.0912345206 0.500000000017 -26.5912345206 +UniRef50_Q2YA20 NADH quinone oxidoreductase subunit H 2 0.000720859800809 0.5 0.4992791402 +UniRef50_A8AYH1 Glucose 1 phosphate adenylyltransferase, GlgD subunit 1.19042227302 0.5 -0.690422273019 +UniRef50_Q49WT2 Excinuclease ATPase subunit 1.87807945737 0.5 -1.37807945737 +UniRef50_D7A127 0.0724771717659 0.5 0.427522828234 +UniRef50_A5V6E6 0.140277929805 0.5 0.359722070195 +UniRef50_UPI0003B309A2 flagellin 1.52537253305 0.5 -1.02537253305 +UniRef50_UPI0003754A94 hypothetical protein 0.0191195410829 0.5 0.480880458917 +UniRef50_UPI0004785717 hypothetical protein 0.640151602949 0.5 -0.140151602949 +UniRef50_D8JJ99 Fatty acid desaturase 0.0108957803307 0.5 0.489104219669 +UniRef50_B2IML2 Ascorbate specific PTS system enzyme IIC 0.575772424856 0.5 -0.0757724248564 +UniRef50_UPI00046730B7 hypothetical protein 0.25030824221 0.5 0.24969175779 +UniRef50_Q8X524 Sensor protein QseC 2.8844441538 0.499999999998 -2.3844441538 +UniRef50_B8GNE7 Peptidase M24 0.434428732006 0.5 0.0655712679936 +UniRef50_D8GPC7 Regulatory protein 0.220973974806 0.5 0.279026025194 +UniRef50_UPI000379B182 hypothetical protein 1.00613514304 0.5 -0.506135143037 +UniRef50_E0XV83 0.61624353926 0.5 -0.11624353926 +UniRef50_A0A042PYY0 1.02332569361 0.5 -0.523325693615 +UniRef50_Q9I466 Bifunctional adenosylcobalamin biosynthesis protein CobP 0.357642971568 0.5 0.142357028432 +UniRef50_Q9I489 0.1894612281 0.5 0.3105387719 +UniRef50_Q47269 0.678768296471 0.5 -0.178768296471 +UniRef50_P37774 0.735771029638 0.5 -0.235771029638 +UniRef50_Q8A9K9 Isoleucine tRNA ligase 0.0899099091564 0.5 0.410090090844 +UniRef50_UPI0003670352 chemotaxis protein CheW 0.163463936897 0.5 0.336536063103 +UniRef50_K0T1C7 1.40579908073 0.499999999999 -0.905799080726 +UniRef50_V9T5G7 ATPase 0.571617823259 0.5 -0.0716178232594 +UniRef50_A4WS75 ATPase associated with various cellular activities, AAA_3 10.9495846466 0.500000000003 -10.4495846466 +UniRef50_UPI00046413C1 hypothetical protein 0.720130970954 0.5 -0.220130970954 +UniRef50_UPI0001CC0058 putative ISRSO12 transposase 0.160349611726 0.5 0.339650388275 +UniRef50_UPI00045EAD98 D amino acid aminotransferase 0.974509760743 0.5 -0.474509760743 +UniRef50_M9REZ0 2.70119987676 0.5 -2.20119987676 +UniRef50_P81140 Glutaryl CoA dehydrogenase, mitochondrial 0.049741731544 0.5 0.450258268456 +UniRef50_P44501 2 hydroxyacid dehydrogenase homolog 5.01879751089 0.5 -4.51879751089 +UniRef50_UPI000378023E catalase 0.148172539873 0.5 0.351827460127 +UniRef50_UPI000255D957 thioesterase 0.0531154398192 0.5 0.446884560181 +UniRef50_B0VCQ8 NADH dehydrogenase 0.016689444355 0.5 0.483310555645 +UniRef50_Q3IUV7 TraN 1.95689207871 0.5 -1.45689207871 +UniRef50_G0AKF2 2.01329758102 0.5 -1.51329758102 +UniRef50_Q8D1X9 Phosphoenolpyruvate carboxykinase [ATP] 0.000308595303775 0.5 0.499691404696 +UniRef50_Q0DGM2 Os05g0524100 protein 3.06701163493 0.499999999999 -2.56701163493 +UniRef50_UPI000361FC4E hypothetical protein 0.567978661013 0.5 -0.0679786610127 +UniRef50_UPI00046278DB long chain fatty acid CoA ligase, partial 0.254277028315 0.5 0.245722971685 +UniRef50_F4A5L9 PIS system, IIC component 0.254702459644 0.5 0.245297540356 +UniRef50_P37180 Probable Ni Fe hydrogenase 2 b type cytochrome subunit 2.14843270888 0.5 -1.64843270888 +UniRef50_Q9KNM2 Guanosine 3,5 bis 3 pyrophosphohydrolase 0.695296061136 0.5 -0.195296061136 +UniRef50_UPI0003EB0EAA hypothetical protein, partial 1.09259057605 0.5 -0.59259057605 +UniRef50_W6BIT8 ParB like nuclease domain protein 2.37448607426 0.499999999999 -1.87448607426 +UniRef50_X5DX57 1.18783862895 0.499999999999 -0.687838628949 +UniRef50_Q98A81 Serine hydroxymethyltransferase 2 0.153873289287 0.5 0.346126710713 +UniRef50_A6M258 Sensor histidine kinase like protein 0.143853229852 0.5 0.356146770148 +UniRef50_G8VH52 Aminotransferase 0.0320128640515 0.5 0.467987135948 +UniRef50_UPI0003FA6D6A serine dehydratase 0.0343836890551 0.5 0.465616310945 +UniRef50_P55045 Formamidopyrimidine DNA glycosylase 0.934334677925 0.5 -0.434334677925 +UniRef50_UPI000362483E hypothetical protein 0.502284776202 0.5 -0.00228477620151 +UniRef50_A5UNN3 Arylsulfatase regulator, AslB 2.35769063513 0.5 -1.85769063513 +UniRef50_A8AQ08 Threonine serine transporter TdcC 4.79262157077 0.500000000002 -4.29262157077 +UniRef50_Q09C64 0.163355283514 0.5 0.336644716486 +UniRef50_H8FWZ7 0.503193721142 0.5 -0.00319372114171 +UniRef50_UPI000477C548 alcohol dehydrogenase 0.272938671624 0.5 0.227061328376 +UniRef50_Q8CNS9 LtrC like protein 1.53076211933 0.5 -1.03076211933 +UniRef50_F6BYQ8 1.6449620608 0.499999999999 -1.1449620608 +UniRef50_UPI00037DF186 hypothetical protein 12.5533877367 0.499999999997 -12.0533877367 +UniRef50_UPI0002F6EC83 hypothetical protein 0.00160350688208 0.5 0.498396493118 +UniRef50_Q99R72 Glycosyl 4,4 diaponeurosporenoate acyltransferase 0.78097863521 0.5 -0.28097863521 +UniRef50_P76223 Protein YnjB 1.84683816053 0.5 -1.34683816053 +UniRef50_O59536 Triosephosphate isomerase 0.441840205925 0.5 0.0581597940754 +UniRef50_F0VQ97 0.920443233265 0.5 -0.420443233265 +UniRef50_B6IR83 0.902576632387 0.5 -0.402576632387 +UniRef50_U9YKK0 3.1745936495 0.500000000003 -2.67459364951 +UniRef50_Q5HQL1 Na H(+) antiporter subunit B1 0.49302493626 0.5 0.00697506374015 +UniRef50_M7E7M7 Integrase 0.702521717097 0.5 -0.202521717097 +UniRef50_F0LCG3 Cation transport protein chaC 0.21472718023 0.5 0.285272819769 +UniRef50_Q5HR27 3.31632824254 0.499999999997 -2.81632824253 +UniRef50_UPI00035FFCE6 hypothetical protein 0.220962697174 0.5 0.279037302826 +UniRef50_Q3JNN5 Gamma glutamyl phosphate reductase 5.06490826741 0.5 -4.56490826741 +UniRef50_E6V0C3 Nicotinamidase 0.126739795077 0.5 0.373260204923 +UniRef50_Q9I158 0.955296434009 0.5 -0.455296434009 +UniRef50_B8D0S4 Adenylyl sulfate kinase 0.026799781731 0.5 0.473200218269 +UniRef50_UPI000369E4B0 hypothetical protein 0.0620517485689 0.5 0.437948251431 +UniRef50_I0EQA8 Paralysed flagella protein 0.0270136308383 0.5 0.472986369162 +UniRef50_G7U4F0 Transcriptional regulator, LuxR family protein 0.0217151575413 0.5 0.478284842458 +UniRef50_W4JRF8 0.10280026379 0.5 0.39719973621 +UniRef50_T0T886 Guanine deaminase 0.103864599075 0.5 0.396135400925 +UniRef50_F7QRG4 Glyoxalase family protein 0.378854033802 0.5 0.121145966198 +UniRef50_UPI0003804921 hypothetical protein 0.560496442795 0.5 -0.0604964427949 +UniRef50_U9G1I6 1.59932410465 0.500000000001 -1.09932410466 +UniRef50_Q42523 Methylcrotonoyl CoA carboxylase subunit alpha, mitochondrial 0.267921247118 0.5 0.232078752882 +UniRef50_UPI000375CE36 hypothetical protein 0.00451136416262 0.5 0.495488635837 +UniRef50_P39409 1.01908271892 0.5 -0.519082718923 +UniRef50_UPI0002629A6E putative hydrolase 0.982282881205 0.5 -0.482282881205 +UniRef50_A0A011RU24 Putative L lactate dehydrogenase operon regulatory protein 0.291167591496 0.5 0.208832408504 +UniRef50_A9FGU9 0.313166015886 0.5 0.186833984114 +UniRef50_A8FH40 0.110601491442 0.5 0.389398508558 +UniRef50_A6M1K4 1.20726087363 0.5 -0.707260873628 +UniRef50_Q5PCT5 DNA binding protein H NS 1.37576891844 0.5 -0.875768918441 +UniRef50_F4DU26 0.116094750829 0.5 0.383905249171 +UniRef50_B3DX55 Predicted phosphatase, Macro Appr 1 family 0.0261660538097 0.5 0.47383394619 +UniRef50_T2SUX4 Cation transporter 0.0112579778845 0.5 0.488742022115 +UniRef50_K0WI88 Type VI secretion system protein 2.84983616505 0.5 -2.34983616505 +UniRef50_UPI000473E94E MULTISPECIES 1.88065745658 0.5 -1.38065745658 +UniRef50_A1TN83 Ribonuclease HII 0.685906375666 0.5 -0.185906375666 +UniRef50_R6ED70 3.79844520746 0.499999999999 -3.29844520746 +UniRef50_V4RKF1 1.3369180187 0.500000000001 -0.836918018696 +UniRef50_G7QBD3 SEC C motif domain protein 0.119073293271 0.5 0.380926706729 +UniRef50_W5V0V9 Diguanylate cyclase 1.01987079883 0.5 -0.51987079883 +UniRef50_Q87VK2 23S rRNA methyltransferase RlmB 0.536850042515 0.5 -0.0368500425152 +UniRef50_J3NBY7 0.0926246514812 0.5 0.407375348519 +UniRef50_A7HSL3 Cobyrinic acid ac diamide synthase 2.0361892017 0.499999999999 -1.5361892017 +UniRef50_Q5HRG3 UPF0382 membrane protein SERP0230 0.276591539197 0.5 0.223408460803 +UniRef50_K0WGN5 0.845594133519 0.5 -0.345594133519 +UniRef50_F2A341 0.278604322276 0.5 0.221395677724 +UniRef50_Q3IVE7 Transcriptional regulator, LysR family 0.207659166723 0.5 0.292340833277 +UniRef50_D1ABZ6 0.103794385347 0.5 0.396205614652 +UniRef50_Q8CTY1 0.74891096831 0.5 -0.24891096831 +UniRef50_N4DJP8 LysR substrate binding domain protein 0.95014152573 0.5 -0.45014152573 +UniRef50_UPI00046D6061 hypothetical protein 0.383023646053 0.5 0.116976353947 +UniRef50_UPI00031728D0 hypothetical protein 0.394534452267 0.5 0.105465547733 +UniRef50_A5MZF0 Predicted signal transduction protein 0.139656005841 0.5 0.360343994159 +UniRef50_UPI000478BE40 cell division protein FtsY 0.449872005646 0.5 0.0501279943539 +UniRef50_H3VHH5 6.11886110784 0.499999999996 -5.61886110784 +UniRef50_A1AZI3 0.648081479075 0.5 -0.148081479075 +UniRef50_P31777 Ribosomal RNA large subunit methyltransferase J 1.02930371505 0.5 -0.529303715047 +UniRef50_I0ETN8 0.082216411168 0.499999999999 0.417783588832 +UniRef50_C8S0X4 6.92952568925 0.500000000009 -6.42952568926 +UniRef50_P75966 Ribosomal large subunit pseudouridine synthase E 2.01393151531 0.499999999999 -1.5139315153 +UniRef50_E2QQW0 0.366160348458 0.5 0.133839651542 +UniRef50_UPI000378A4F9 hypothetical protein 0.00614958187089 0.5 0.493850418129 +UniRef50_A3PJC9 MgtC SapB transporter 4.42022274041 0.499999999999 -3.92022274041 +UniRef50_A8LHS0 Type II secretion system protein 2.76126040339 0.5 -2.26126040339 +UniRef50_N0AZ28 Short chain acyl CoA synthetase 3.83985208657 0.500000000002 -3.33985208657 +UniRef50_A0A018QNM9 Glucan biosynthesis protein G 0.340633735902 0.5 0.159366264098 +UniRef50_UPI000425424A leucyl tRNA synthetase 0.376140675903 0.5 0.123859324097 +UniRef50_UPI000361D7A6 hypothetical protein, partial 0.0528213378569 0.5 0.447178662143 +UniRef50_B5F095 UPF0194 membrane protein YbhG 1.31705183456 0.5 -0.817051834557 +UniRef50_A0A038GAC7 0.0857708606437 0.5 0.414229139356 +UniRef50_A7IGL7 Fructose 1,6 bisphosphatase class 1 1 0.501276732835 0.5 -0.00127673283538 +UniRef50_X0UWW1 Marine sediment metagenome DNA, contig 1.39413435405 0.5 -0.894134354053 +UniRef50_UPI00046D96F8 PREDICTED 0.499488917165 0.5 0.000511082835005 +UniRef50_UPI00047DA76B UTP glucose 1 phosphate uridylyltransferase 0.890789232496 0.5 -0.390789232496 +UniRef50_T1DQ54 Putative dosage compensation complex subunit mle 2.59171866196 0.500000000002 -2.09171866196 +UniRef50_Q60317 Probable aspartate aminotransferase 1 2.10411905367 0.5 -1.60411905367 +UniRef50_P57061 Lipoprotein releasing system transmembrane protein LolC 0.041805419552 0.5 0.458194580448 +UniRef50_I3U950 0.634263468884 0.5 -0.134263468884 +UniRef50_C0ZTQ3 0.0359667019568 0.5 0.464033298043 +UniRef50_S5VEZ7 Alpha galactosidase 0.224577661374 0.5 0.275422338626 +UniRef50_UPI00036308A8 hypothetical protein 0.635618497283 0.5 -0.135618497283 +UniRef50_B2S842 Porphobilinogen deaminase 1.86331979876 0.500000000002 -1.36331979876 +UniRef50_Q9RXS6 2 C methyl D erythritol 2,4 cyclodiphosphate synthase 0.00790902077875 0.5 0.492090979221 +UniRef50_Q9RUR7 0.00409144593256 0.5 0.495908554067 +UniRef50_D7BIR4 3.09842341936 0.499999999998 -2.59842341936 +UniRef50_Q5SI49 tRNA pseudouridine synthase D 0.13372045052 0.5 0.36627954948 +UniRef50_O07134 Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase 0.0471881065825 0.5 0.452811893418 +UniRef50_E3A1T0 0.764692885983 0.5 -0.264692885983 +UniRef50_J9YRE4 Permease 0.512383473609 0.5 -0.0123834736088 +UniRef50_N1NMR4 0.506208883406 0.5 -0.00620888340564 +UniRef50_UPI000273BF3C PREDICTED 0.00973988049054 0.499999999999 0.49026011951 +UniRef50_Q9A176 Protein NrdI 0.122077784199 0.5 0.377922215801 +UniRef50_A8LHW3 Aminotransferase class I and II 5.62996651368 0.5 -5.12996651368 +UniRef50_Q88XV1 Energy coupling factor transporter ATP binding protein EcfA2 0.655099629415 0.5 -0.155099629415 +UniRef50_J8W6V4 Putative phage associated protein 0.0818754157588 0.5 0.418124584241 +UniRef50_A6LX69 0.190398398374 0.5 0.309601601626 +UniRef50_UPI000479C5D4 hypothetical protein 3.82681913954 0.500000000003 -3.32681913954 +UniRef50_UPI000426B838 sulfate permease 1.57597856217 0.5 -1.07597856217 +UniRef50_I4DYV1 Branched chain amino acid ABC transporter permease protein 0.130840905669 0.5 0.369159094331 +UniRef50_E9C0U9 GTP binding protein TypA 1.57448004016 0.5 -1.07448004016 +UniRef50_S5XU71 0.642569550279 0.5 -0.142569550279 +UniRef50_UPI0004748AC6 aldolase 1.59509913261 0.5 -1.09509913261 +UniRef50_F6FQD2 Nicotinate phosphoribosyltransferase 0.0375060025047 0.5 0.462493997495 +UniRef50_Q92V09 4 deoxy L threo 5 hexosulose uronate ketol isomerase 2 0.39883112995 0.5 0.10116887005 +UniRef50_UPI000379F656 hypothetical protein 0.255830045072 0.5 0.244169954928 +UniRef50_A5G208 0.861125999057 0.5 -0.361125999057 +UniRef50_D5Z124 Phosphoribosylformylglycinamidine synthase subunit I 0.510102385234 0.5 -0.0101023852339 +UniRef50_D8JJB8 Riboflavin biosynthesis protein RibF 0.0182437730166 0.5 0.481756226983 +UniRef50_D9QJC6 Cysteine desulfurase 2.00950139726 0.5 -1.50950139726 +UniRef50_T0TC75 Poly D alaninet ransfer protein DltD 2.04347406626 0.5 -1.54347406626 +UniRef50_B5F7E7 Phosphoenolpyruvate synthase regulatory protein 3.08386750469 0.5 -2.58386750469 +UniRef50_Q52986 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI 1.64962733855 0.5 -1.14962733855 +UniRef50_Q8DUN5 Ferredoxin NADP reductase 2.27154265461 0.5 -1.77154265461 +UniRef50_UPI00047D9459 hypothetical protein 0.652497584068 0.5 -0.152497584068 +UniRef50_UPI000472033F hypothetical protein 0.00822109071398 0.5 0.491778909286 +UniRef50_R4RQA1 MFS type transporter 0.275189074914 0.5 0.224810925086 +UniRef50_UPI000377EFC4 hypothetical protein 0.327793415635 0.5 0.172206584365 +UniRef50_D3QJ40 Riboflavin biosynthesis protein RibD 2.39369780196 0.500000000002 -1.89369780197 +UniRef50_B0SGE9 Pyridoxine pyridoxamine 5 phosphate oxidase 0.0539566920625 0.5 0.446043307937 +UniRef50_T0TDK7 Chorismate mutase I 0.619130212969 0.5 -0.119130212969 +UniRef50_Q9RZG4 0.00493587426118 0.5 0.495064125738 +UniRef50_T1BKR4 DNA repair protein RadA 0.111434103461 0.5 0.388565896539 +UniRef50_O32232 Carboxylesterase 0.996351605584 0.5 -0.496351605584 +UniRef50_O25039 Exodeoxyribonuclease 7 large subunit 0.0193058770758 0.5 0.480694122924 +UniRef50_F5M463 4 alpha glucanotransferase 0.955801083334 0.5 -0.455801083334 +UniRef50_A7ILS7 1.66294190997 0.499999999998 -1.16294190997 +UniRef50_X1FUR4 Marine sediment metagenome DNA, contig 0.390700472824 0.5 0.109299527176 +UniRef50_J1C3T0 1.24420050709 0.5 -0.744200507087 +UniRef50_Q2NYV9 ATP dependent protease ATPase subunit HslU 1.84521843368 0.5 -1.34521843368 +UniRef50_C1DN07 Polysaccharide biosynthesis protein 2.43460039709 0.499999999999 -1.93460039708 +UniRef50_UPI0004758B17 NUDIX hydrolase 3.17209103706 0.499999999999 -2.67209103706 +UniRef50_H1SB32 0.111998778328 0.5 0.388001221672 +UniRef50_A5UXK1 NADH quinone oxidoreductase subunit B 1 0.0597172962943 0.499999999999 0.440282703706 +UniRef50_UPI000467AAFA hypothetical protein 0.932539725038 0.5 -0.432539725038 +UniRef50_Q9A0C6 Carbamoyl phosphate synthase large chain 0.190529795432 0.5 0.309470204568 +UniRef50_UPI0004722C63 hypothetical protein 0.298362757131 0.5 0.201637242869 +UniRef50_UPI000367B5A7 peptidase S14 0.288589231835 0.5 0.211410768165 +UniRef50_Q8XJ76 Phenylalanine tRNA ligase beta subunit 0.326553524626 0.5 0.173446475374 +UniRef50_P32689 2.24895407007 0.5 -1.74895407007 +UniRef50_P32688 2.52842761581 0.5 -2.02842761581 +UniRef50_A5UKK2 Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF 1.48782563441 0.5 -0.987825634411 +UniRef50_UPI0003B45101 recombinase RecF 0.467471534061 0.5 0.0325284659391 +UniRef50_P39651 1.7010388037 0.5 -1.2010388037 +UniRef50_UPI0004735386 hypothetical protein, partial 1.56873217839 0.5 -1.06873217839 +UniRef50_Q1ARM2 Biotin lipoyl attachment 0.415688637557 0.5 0.0843113624426 +UniRef50_C1F2D1 NAD specific glutamate dehydrogenase domain protein 0.236490113715 0.5 0.263509886285 +UniRef50_P32687 3.03505266017 0.5 -2.53505266017 +UniRef50_UPI00047736AE threonine aldolase 0.33312271584 0.5 0.16687728416 +UniRef50_Q9ZGN9 ABC transporter family protein 4.11049785821 0.500000000001 -3.61049785821 +UniRef50_UPI000011E309 transposase, pseudogene 0.00432050475026 0.500000000001 0.495679495249 +UniRef50_D4JCQ5 NADPH dependent glutamate synthase beta chain and related oxidoreductases 0.179931539262 0.5 0.320068460738 +UniRef50_Q18B68 1 deoxy D xylulose 5 phosphate synthase 0.130942027077 0.5 0.369057972923 +UniRef50_C5C7N2 0.123604281569 0.5 0.376395718432 +UniRef50_C7ZS00 2.53490704492 0.5 -2.03490704492 +UniRef50_M7N0H7 0.0515168840335 0.500000000001 0.448483115966 +UniRef50_A4WW43 1.09168032871 0.5 -0.591680328706 +UniRef50_R4K685 Fe S oxidoreductase 1.94518299442 0.500000000001 -1.44518299442 +UniRef50_UPI00036082CE hypothetical protein 0.0461392592847 0.5 0.453860740716 +UniRef50_M4WXK7 2.23834290231 0.500000000001 -1.73834290231 +UniRef50_A3PRJ1 0.906781315362 0.5 -0.406781315362 +UniRef50_A6M0J7 Methyl accepting chemotaxis sensory transducer 0.143562825387 0.5 0.356437174613 +UniRef50_O59778 Biotin synthase 0.693948907354 0.5 -0.193948907354 +UniRef50_A0A011NHA3 3.23265267624 0.500000000004 -2.73265267624 +UniRef50_I0JR51 TetR family transcription regulator 1.32430663208 0.5 -0.824306632077 +UniRef50_T2SYZ3 0.0013670945522 0.5 0.498632905448 +UniRef50_A6M003 Two component, sigma54 specific, transcriptional regulator, Fis family 0.25009141705 0.5 0.24990858295 +UniRef50_C9A997 Alpha acetolactate decarboxylase 1.53699420482 0.500000000001 -1.03699420482 +UniRef50_F3Y7S3 Low molecular weight protein tyrosine phosphatase 7.18355841822 0.499999999998 -6.68355841821 +UniRef50_W4TWJ0 GMP synthase 0.169173022749 0.5 0.330826977251 +UniRef50_UPI000304C6B6 hypothetical protein 0.244782126472 0.5 0.255217873528 +UniRef50_UPI00047969EC ferrichrome ABC transporter 0.234348465854 0.5 0.265651534146 +UniRef50_UPI00036BADB7 hypothetical protein 0.374722770492 0.5 0.125277229508 +UniRef50_UPI000476CE7F formyltetrahydrofolate deformylase 0.515195821902 0.5 -0.0151958219023 +UniRef50_E6X978 NADP dependent oxidoreductase domain protein 0.0463792308877 0.5 0.453620769113 +UniRef50_Q9I596 Neutral ceramidase 1.14415481891 0.5 -0.644154818909 +UniRef50_E2QM67 0.82288092903 0.5 -0.32288092903 +UniRef50_UPI0004756DAB chromosome partitioning protein 0.315289965498 0.5 0.184710034502 +UniRef50_K9IFC3 Purine nucleosidase 0.541605606361 0.5 -0.0416056063613 +UniRef50_U5MVL7 Low specificity L threonine aldolase LtaE 0.277228554043 0.5 0.222771445957 +UniRef50_UPI000467F4BE hypothetical protein 2.69434130086 0.500000000003 -2.19434130086 +UniRef50_Q4A072 Na+ H+ exchanger 1.32357341015 0.5 -0.823573410146 +UniRef50_A6LQ30 Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein 0.290420524055 0.5 0.209579475945 +UniRef50_Q6FAA9 Elongation factor P 0.0238840795692 0.5 0.476115920431 +UniRef50_UPI000287DA5E heavy metal transporting P type ATPase 0.0449813196132 0.5 0.455018680387 +UniRef50_F5M2C8 Inositol monophosphatase 5.13279628477 0.500000000001 -4.63279628478 +UniRef50_M1N6B4 Ribonuclease E 0.172736184119 0.5 0.32726381588 +UniRef50_S9RVU8 Mobile element protein 1.03319662055 0.5 -0.533196620547 +UniRef50_UPI0004768A02 hypothetical protein 0.00266563308295 0.5 0.497334366917 +UniRef50_UPI0003B4B8C4 rRNA methyltransferase 0.848956998742 0.5 -0.348956998742 +UniRef50_UPI0003827792 hypothetical protein 0.721916153775 0.5 -0.221916153775 +UniRef50_Q8UD63 2 isopropylmalate synthase 0.0945025224799 0.5 0.40549747752 +UniRef50_Q4FQ21 UDP N acetylmuramoylalanine D glutamate ligase 0.00693886931972 0.5 0.49306113068 +UniRef50_A3PS43 RepA 1.37135910915 0.5 -0.871359109147 +UniRef50_UPI000472BDAD hypothetical protein, partial 1.02887026056 0.5 -0.528870260563 +UniRef50_P00893 Acetolactate synthase isozyme 3 large subunit 0.575416170727 0.5 -0.075416170727 +UniRef50_Q16134 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial 0.209313205934 0.5 0.290686794066 +UniRef50_Q9RWS6 0.000504183008574 0.5 0.499495816992 +UniRef50_UPI000473521A glutamate synthase, partial 0.313268725923 0.5 0.186731274077 +UniRef50_D2Q2X8 Cell envelope related transcriptional attenuator 0.143521126152 0.5 0.356478873848 +UniRef50_Q1R8C8 3.20622661334 0.499999999997 -2.70622661333 +UniRef50_P31660 2 methylcitrate synthase 0.0874565626599 0.5 0.41254343734 +UniRef50_Q5M2Y8 Polar amino acid ABC uptake transporter membrane spanning protein 0.537346385178 0.5 -0.0373463851778 +UniRef50_Q2S1S3 Glutamate 1 semialdehyde 2,1 aminomutase 0.185100317154 0.5 0.314899682846 +UniRef50_M9RWZ9 RNA methyltransferase 0.41848204784 0.5 0.0815179521601 +UniRef50_B6JIZ7 Crossover junction endodeoxyribonuclease RuvC 0.826946641988 0.5 -0.326946641988 +UniRef50_Q0BQU0 0.0244980909374 0.5 0.475501909063 +UniRef50_U6I6D8 Dihydropyrimidine dehydrogenase 0.600923106377 0.5 -0.100923106377 +UniRef50_A3M2D6 0.0345565189215 0.5 0.465443481078 +UniRef50_A3M2D5 0.00711954789855 0.5 0.492880452101 +UniRef50_UPI00046DDB7F PREDICTED 9.59978921201 0.499999999998 -9.099789212 +UniRef50_A3M2D9 0.0142461836207 0.5 0.485753816379 +UniRef50_A3M2D8 0.00490997640872 0.5 0.495090023591 +UniRef50_Q5E727 Urease subunit beta 0.897303577821 0.5 -0.397303577821 +UniRef50_UPI0003C1B3D1 0.116153290503 0.500000000001 0.383846709497 +UniRef50_UPI00041EF0AD hypothetical protein 0.148899885894 0.5 0.351100114106 +UniRef50_UPI000369A5D7 hypothetical protein 0.331579659139 0.5 0.168420340861 +UniRef50_UPI000467E096 hypothetical protein 0.65060414954 0.5 -0.15060414954 +UniRef50_Q88WP5 tRNA dimethylallyltransferase 0.00433054477751 0.5 0.495669455223 +UniRef50_A8F961 Serine acetyltransferase 0.225436476367 0.5 0.274563523633 +UniRef50_P77968 Superoxide dismutase [Fe] 6.95581669741 0.500000000003 -6.45581669741 +UniRef50_E6S1Z5 Menaquinone biosynthesis protein, SCO4494 family 0.0205426136681 0.5 0.479457386331 +UniRef50_UPI00016C3B63 L aspartate oxidase, partial 0.270097087161 0.5 0.229902912839 +UniRef50_Q7NPZ7 UDP N acetylmuramoylalanine D glutamate ligase 0.0268244751334 0.5 0.473175524866 +UniRef50_A0A058VD88 Phosphoribosylaminoimidazolesuccinocarboxamide synthase like protein 0.51678553877 0.5 -0.0167855387703 +UniRef50_Q9I0I6 Methyl accepting chemotaxis protein PA2652 0.451854651542 0.5 0.0481453484576 +UniRef50_T1K2G0 4.59054753036 0.5 -4.09054753036 +UniRef50_D3P3A4 Transposase 48.4780010962 0.500000000016 -47.9780010962 +UniRef50_A3PLJ3 2.20090746409 0.500000000002 -1.70090746409 +UniRef50_UPI0003720E8F hypothetical protein 0.432512430798 0.5 0.0674875692022 +UniRef50_UPI00037E700F hypothetical protein 0.399763045496 0.5 0.100236954504 +UniRef50_Q05624 Phosphate butyryltransferase 0.0409181987551 0.5 0.459081801245 +UniRef50_A0A023RYG5 Hydrolase 0.0132433407703 0.5 0.48675665923 +UniRef50_A5IS38 Phosphodiesterase, MJ0936 family 7.27424324392 0.5 -6.77424324392 +UniRef50_Q6GI75 Enoyl [acyl carrier protein] reductase [NADPH] FabI 2.352639448 0.500000000003 -1.85263944801 +UniRef50_UPI00045E7AD4 2 polyprenylphenol hydroxylase 0.32865550934 0.5 0.17134449066 +UniRef50_P52308 DNA primase 0.0154171885297 0.5 0.484582811471 +UniRef50_A4WQE3 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 0.670607574954 0.5 -0.170607574954 +UniRef50_G7M2Z2 Acriflavin resistance protein 0.354361400992 0.5 0.145638599008 +UniRef50_UPI0003C4AE88 PREDICTED 1.25704160883 0.5 -0.757041608828 +UniRef50_N0B1P0 Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase 0.307304261747 0.5 0.192695738253 +UniRef50_J9Z1D2 Hypoxia induced family protein 0.420535187858 0.5 0.0794648121425 +UniRef50_UPI00037EB16F thymidylate synthase 0.0966679939992 0.5 0.403332006001 +UniRef50_F5RE08 0.80647598824 0.5 -0.30647598824 +UniRef50_R0EX71 TRAP C4 dicarboxylate transport system permease DctM subunit 0.679712472058 0.5 -0.179712472058 +UniRef50_UPI00046EE358 hypothetical protein, partial 0.0694918023212 0.5 0.430508197679 +UniRef50_G7LXD6 0.0422955086861 0.499999999999 0.457704491315 +UniRef50_B4VB07 Type I PKS 1.56473524262 0.500000000001 -1.06473524262 +UniRef50_P55189 Putative sulfate transporter YbaR 1.69814039992 0.500000000001 -1.19814039992 +UniRef50_B9EBL7 3.27296966687 0.500000000002 -2.77296966687 +UniRef50_E4NJ63 0.372288069221 0.5 0.127711930779 +UniRef50_A1B623 4.8326838187 0.5 -4.3326838187 +UniRef50_UPI00021954C2 thymidylate kinase 0.351354423867 0.5 0.148645576133 +UniRef50_Q4L540 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.90837770437 0.500000000002 -1.40837770438 +UniRef50_UPI00046E93BA Holliday junction resolvase 0.61886906863 0.5 -0.11886906863 +UniRef50_P39346 L idonate 5 dehydrogenase (+)) 2.08881866995 0.499999999998 -1.58881866995 +UniRef50_I6DGS5 Response regulator 0.338040447913 0.5 0.161959552087 +UniRef50_UPI000376418A xanthine phosphoribosyltransferase 0.326953926996 0.5 0.173046073004 +UniRef50_UPI00047230A9 carbamoyl phosphate synthase large subunit 0.155676808177 0.5 0.344323191823 +UniRef50_A6LT71 0.0300321476511 0.5 0.469967852349 +UniRef50_F4A863 0.301974748675 0.5 0.198025251325 +UniRef50_UPI00037C86FD hypothetical protein 0.296646438482 0.5 0.203353561518 +UniRef50_A3PGH0 Acyltransferase 3 1.24361861829 0.5 -0.743618618285 +UniRef50_A0A012LJX4 PTS system mannitol specific EIICB component 0.198266346721 0.5 0.301733653279 +UniRef50_UPI00047AF5BF hypothetical protein 0.454456732599 0.5 0.0455432674006 +UniRef50_UPI00047D7213 antitermination protein NusG 0.235443503034 0.5 0.264556496966 +UniRef50_J9NZJ3 0.12125405376 0.5 0.37874594624 +UniRef50_Q3JPN7 1.93541793724 0.5 -1.43541793724 +UniRef50_J9NZJ0 0.0277493438213 0.499999999999 0.472250656179 +UniRef50_UPI00006CADE3 Glutamate Leucine Phenylalanine Valine dehydrogenase family protein 0.0355710579862 0.5 0.464428942014 +UniRef50_K7S7N6 AXE1 multi domain protein 0.0137874814707 0.5 0.48621251853 +UniRef50_Q86ZM3 Catabolic 3 dehydroquinase 0.975798923859 0.5 -0.475798923859 +UniRef50_Q838A4 UDP N acetylmuramoyl L alanyl D glutamate L lysine ligase 0.394684663623 0.5 0.105315336377 +UniRef50_Q46904 Probable electron transfer flavoprotein quinone oxidoreductase YgcN 1.61877053789 0.5 -1.11877053789 +UniRef50_Q9ZLD6 UvrABC system protein A 0.00659292856879 0.5 0.493407071431 +UniRef50_Q2FRE6 Nucleoside diphosphate kinase 0.111990547875 0.5 0.388009452125 +UniRef50_P46859 Thermoresistant gluconokinase 0.130150436571 0.5 0.369849563429 +UniRef50_P0A9C3 Aldose 1 epimerase 0.988398811897 0.5 -0.488398811897 +UniRef50_UPI0003F77CB8 hypothetical protein 0.0304304813471 0.5 0.469569518653 +UniRef50_M9VF11 0.098829825817 0.5 0.401170174183 +UniRef50_A6LR82 Transposase 0.115451663181 0.5 0.384548336819 +UniRef50_V5VI78 Thiol 0.0198080376222 0.5 0.480191962378 +UniRef50_Q54433 Probable phosphopantothenoylcysteine decarboxylase 0.136000564029 0.5 0.363999435971 +UniRef50_B0VEJ2 0.00670565028696 0.5 0.493294349713 +UniRef50_Q5HP16 Octanoyltransferase LipM 0.690907679501 0.5 -0.190907679501 +UniRef50_C7J469 Os06g0328400 protein 0.137566152338 0.5 0.362433847662 +UniRef50_D3FFF2 ABC transporter related protein 1.76911960807 0.500000000001 -1.26911960807 +UniRef50_A6LTK9 Transcriptional regulator, GntR family 0.0590720788882 0.5 0.440927921112 +UniRef50_UPI0003B2EB2A glycerol kinase 1.17844416264 0.5 -0.678444162644 +UniRef50_E5CQ05 Replication initiation protein 0.440979405363 0.5 0.059020594637 +UniRef50_UPI000255E431 cystine transporter permease 0.304215307279 0.5 0.195784692721 +UniRef50_UPI00037539AF S adenosylmethionine synthetase 0.00560162827523 0.5 0.494398371725 +UniRef50_A6E1L3 2 hydroxyacid dehydrogenase 0.68351148786 0.5 -0.18351148786 +UniRef50_UPI0004672A57 hypothetical protein 3.57944649687 0.5 -3.07944649687 +UniRef50_M9RK54 UPF0717 family protein 0.637296008654 0.5 -0.137296008654 +UniRef50_UPI0004628C07 hypothetical protein 0.51788727068 0.5 -0.01788727068 +UniRef50_Q49VT5 0.347338112858 0.5 0.152661887142 +UniRef50_M1MBM4 0.128543388228 0.5 0.371456611773 +UniRef50_B6ISU5 1 deoxy D xylulose 5 phosphate reductoisomerase 0.878391393148 0.5 -0.378391393148 +UniRef50_A5IVI2 GCN5 related N acetyltransferase 1.62676900612 0.5 -1.12676900612 +UniRef50_G3A8C8 Putative transposase 1.40756124172 0.5 -0.907561241719 +UniRef50_V9G5F4 Iojap protein 0.0182281920272 0.5 0.481771807973 +UniRef50_UPI0004774299 aldehyde dehydrogenase, partial 0.0461100020333 0.499999999999 0.453889997967 +UniRef50_P50141 GTP cyclohydrolase 1 0.434693644774 0.5 0.0653063552265 +UniRef50_A0A037UUK8 1.26632823727 0.500000000001 -0.766328237267 +UniRef50_Q6A5P9 0.0292708128538 0.5 0.470729187146 +UniRef50_Q53074 UvrB protein 8.80815301476 0.5 -8.30815301476 +UniRef50_Q97PK0 Putative GTP cyclohydrolase 1 type 2 0.458013806193 0.5 0.0419861938072 +UniRef50_UPI0003707E4A hypothetical protein 3.84538495749 0.499999999997 -3.34538495749 +UniRef50_B4FZA3 0.308368889667 0.5 0.191631110333 +UniRef50_UPI000366285D ATPase AAA 0.0323553895502 0.5 0.46764461045 +UniRef50_V0V0Z7 0.354421432289 0.5 0.145578567711 +UniRef50_UPI000377C6CE hypothetical protein 0.0587689614772 0.499999999999 0.441231038523 +UniRef50_E3GXW6 CobB CobQ domain protein glutamine amidotransferase 0.741573010965 0.5 -0.241573010965 +UniRef50_A5UL08 2.39713374225 0.500000000001 -1.89713374225 +UniRef50_R4RG70 Cyclase family protein 1.64647716894 0.500000000002 -1.14647716894 +UniRef50_UPI00040EF0A5 hypothetical protein 0.0184727392226 0.5 0.481527260777 +UniRef50_F8TVB7 0.552995476832 0.5 -0.0529954768322 +UniRef50_V5YQU8 YycH protein 2.38086231758 0.499999999999 -1.88086231758 +UniRef50_UPI00047D67EB thioredoxin reductase 0.490258909821 0.5 0.00974109017929 +UniRef50_G7M4A9 Exonuclease RNase T and DNA polymerase III 0.315800774768 0.5 0.184199225232 +UniRef50_F1VZ41 2.99287295825 0.500000000002 -2.49287295825 +UniRef50_M1KV66 Mucin 17 like protein 0.157334894523 0.5 0.342665105477 +UniRef50_F2JM36 ABC type transporter, periplasmic subunit family 3 0.302787665973 0.5 0.197212334027 +UniRef50_UPI0003FD0BE2 D ribose transporter ATP binding protein 0.306408979782 0.5 0.193591020218 +UniRef50_J7R096 0.529432596312 0.5 -0.0294325963119 +UniRef50_M7RJM0 Mg chelatase, subunit ChlI 0.209770610922 0.5 0.290229389078 +UniRef50_A6M192 Flagellar hook capping protein 0.225372144954 0.5 0.274627855046 +UniRef50_B2IDX6 Signal recognition particle protein 1.97044427347 0.5 -1.47044427347 +UniRef50_A1JMA3 Formate tetrahydrofolate ligase 0.310074773269 0.5 0.189925226731 +UniRef50_Q6ZEM6 Arsenate reductase ArsI1 1.91254778309 0.5 -1.41254778309 +UniRef50_I4Z0I0 2.24871816534 0.499999999998 -1.74871816534 +UniRef50_UPI0004655B4D chemotaxis protein CheY 0.42239480286 0.5 0.0776051971395 +UniRef50_Q313L3 Protein translocase subunit SecA 0.12839719248 0.5 0.371602807519 +UniRef50_A0JSX3 Carbohydrate ABC transporter membrane protein 1, CUT1 family 0.0172994225429 0.5 0.482700577457 +UniRef50_A4SMY4 Serine threonine protein kinase, RI01 family 0.305944303244 0.5 0.194055696756 +UniRef50_UPI0003793F1D hypothetical protein 0.731409010076 0.5 -0.231409010076 +UniRef50_UPI0003C112FF PREDICTED 0.555638228259 0.5 -0.0556382282586 +UniRef50_P0ABM9 Cytochrome c type biogenesis protein CcmH 1.53294311825 0.5 -1.03294311825 +UniRef50_B3PGS4 Flagellar basal body rod protein FlgF 0.265772929268 0.5 0.234227070732 +UniRef50_F6BJB1 N acetylglucosamine 6 phosphate deacetylase 0.170744662182 0.5 0.329255337818 +UniRef50_Q9RW85 MutT nudix family protein 0.00326440603085 0.5 0.496735593969 +UniRef50_W5YET9 NADH quinone oxidoreductase, chain I 0.669907099503 0.5 -0.169907099503 +UniRef50_A6LVB6 Aspartyl glutamyl tRNA amidotransferase subunit B 0.0815277607358 0.500000000001 0.418472239264 +UniRef50_W0A553 0.045404961644 0.5 0.454595038356 +UniRef50_UPI00046278A4 hypothetical protein 1.4660188281 0.5 -0.9660188281 +UniRef50_Q3J4U6 0.396098107498 0.5 0.103901892502 +UniRef50_Q9ZM69 Copper transporting ATPase 0.00955171842871 0.5 0.490448281571 +UniRef50_T8TFL3 Exonuclease VIII 1.51349526374 0.5 -1.01349526374 +UniRef50_Q0SAE7 0.73397572727 0.5 -0.23397572727 +UniRef50_P55255 Glucose 1 phosphate thymidylyltransferase 0.166445484789 0.5 0.333554515211 +UniRef50_P40733 Deoxyguanosinetriphosphate triphosphohydrolase 1.15100475581 0.5 -0.651004755808 +UniRef50_R9SLI5 von Willebrand factor type A domain containing protein 2.31681705481 0.500000000002 -1.81681705482 +UniRef50_C6NYG2 Flagellar biosynthesis protein FlhB 1.46141150801 0.5 -0.961411508007 +UniRef50_UPI0004658BA2 ABC transporter ATP binding protein 1.62470450681 0.5 -1.12470450681 +UniRef50_J1L2V8 Beta Ig H3 fasciclin 2.15346217312 0.5 -1.65346217312 +UniRef50_Y8DDU0 13.5005286286 0.499999999997 -13.0005286286 +UniRef50_UPI000373827F peptidase 0.46782946252 0.5 0.0321705374796 +UniRef50_G8B089 0.267515381227 0.5 0.232484618773 +UniRef50_UPI0002DC68DF hypothetical protein 3.89603939507 0.499999999999 -3.39603939507 +UniRef50_Q9I1P5 0.201523849612 0.5 0.298476150388 +UniRef50_B8EMG0 0.687593349787 0.5 -0.187593349787 +UniRef50_UPI00005C8244 transposase 2.2744524487 0.5 -1.7744524487 +UniRef50_K4FFQ5 Lysine decarboxylase 0.0119856023003 0.5 0.4880143977 +UniRef50_Q8CSF5 11.5544281977 0.499999999979 -11.0544281977 +UniRef50_UPI0003798946 hypothetical protein 1.69385420499 0.499999999999 -1.19385420499 +UniRef50_Q9JW21 Amino acid acetyltransferase 0.0241052235949 0.5 0.475894776405 +UniRef50_UPI00046441BB hypothetical protein, partial 0.184324229856 0.5 0.315675770144 +UniRef50_A8IPV3 Acetylglutamate kinase 1.49396864368 0.5 -0.993968643681 +UniRef50_UPI0003823B10 hypothetical protein 4.31435593549 0.500000000005 -3.8143559355 +UniRef50_O29313 Glutamine synthetase 0.323213455155 0.5 0.176786544845 +UniRef50_P26503 UDP glucose 4 epimerase 2.41439610113 0.5 -1.91439610113 +UniRef50_H4EPB9 1.43614609692 0.5 -0.936146096924 +UniRef50_UPI00046D45A2 hypothetical protein 0.0166603774126 0.5 0.483339622587 +UniRef50_UPI00047D5506 hypothetical protein 2.1935603618 0.5 -1.6935603618 +UniRef50_W1MTL3 1.39934037472 0.5 -0.899340374724 +UniRef50_U5S0M7 Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein 0.468230166464 0.5 0.0317698335358 +UniRef50_W7VQA0 0.899793012839 0.5 -0.399793012839 +UniRef50_UPI000377C3F1 resolvase 2.17388042334 0.5 -1.67388042334 +UniRef50_Q9ZMY3 RNA polymerase sigma factor RpoD 0.0592006548263 0.5 0.440799345173 +UniRef50_P46450 Long chain fatty acid CoA ligase 0.0669742131028 0.5 0.433025786897 +UniRef50_A4JN97 1.04485394667 0.5 -0.544853946675 +UniRef50_A6FSV8 0.537322413712 0.5 -0.0373224137116 +UniRef50_UPI0004279983 hypothetical protein 0.253081729981 0.5 0.246918270019 +UniRef50_A7X0H4 Argininosuccinate lyase 2.34372239868 0.5 -1.84372239868 +UniRef50_Q9I1V0 Glycogen synthase 0.802070436578 0.5 -0.302070436578 +UniRef50_Q5HMZ9 1.31943586409 0.5 -0.819435864092 +UniRef50_W4U346 DeoR family transcriptional regulator 0.126377271811 0.5 0.373622728189 +UniRef50_R7AGH6 M42 glutamyl aminopeptidase 0.290356710887 0.5 0.209643289113 +UniRef50_G0P7V6 0.754010504081 0.5 -0.254010504081 +UniRef50_P14081 Selenocysteine specific elongation factor 1.42299584352 0.5 -0.92299584352 +UniRef50_I6TYL9 1.55003497358 0.5 -1.05003497358 +UniRef50_UPI0003D073EE PREDICTED 0.287801386442 0.5 0.212198613558 +UniRef50_P39755 Probable NADH quinone oxidoreductase subunit 5 1.9914136087 0.5 -1.4914136087 +UniRef50_UPI000347DE5C hypothetical protein 0.0373621557995 0.5 0.462637844201 +UniRef50_UPI0003D31A3C ABC type dipeptide oligopeptide nickel transport systems 2.38654945216 0.5 -1.88654945216 +UniRef50_U6A643 Nicotinamidase family protein YcaC 0.0453504652404 0.5 0.45464953476 +UniRef50_B2ILL9 Acetyl CoA carboxylase, biotin carboxylase 0.0164411187367 0.5 0.483558881263 +UniRef50_UPI0001E8EA99 phospho N acetylmuramoyl pentapeptide transferase 0.226913141587 0.5 0.273086858413 +UniRef50_Q02CU2 NADH quinone oxidoreductase subunit A 0.343457791306 0.5 0.156542208694 +UniRef50_Q2SKM8 ABC type multidrug transport system, permease component 2.28391156427 0.5 -1.78391156427 +UniRef50_A5WCU0 D alanine D alanine ligase 0.000534596664244 0.5 0.499465403336 +UniRef50_A0A024HNL0 Diguanylate cyclase 0.0590462950394 0.5 0.440953704961 +UniRef50_I1ZKL5 Pseudouridine synthase 0.315038433754 0.5 0.184961566246 +UniRef50_Z7MRV5 EAL domain protein 0.0533788685732 0.5 0.446621131427 +UniRef50_UPI000471D234 hypothetical protein 0.127910738476 0.5 0.372089261524 +UniRef50_UPI0003D05F43 hypothetical protein 0.0780148309342 0.5 0.421985169066 +UniRef50_Q5YYN2 Prolipoprotein diacylglyceryl transferase 0.124316346447 0.5 0.375683653553 +UniRef50_UPI00035D1759 DNA invertase 0.558188255166 0.5 -0.0581882551665 +UniRef50_P74193 Threonine synthase 0.577504770716 0.5 -0.0775047707163 +UniRef50_UPI000409380C orotidine 5 phosphate decarboxylase 0.19931475123 0.5 0.30068524877 +UniRef50_Q99WV0 Glycyl glycine endopeptidase LytM 3.26032004181 0.500000000005 -2.76032004182 +UniRef50_P64427 UPF0748 lipoprotein YddW 5.66471304657 0.500000000005 -5.16471304657 +UniRef50_Q5LLU6 50S ribosomal protein L3 1.09480650364 0.5 -0.594806503637 +UniRef50_P54452 1.43253576833 0.500000000001 -0.932535768335 +UniRef50_UPI000262729B diguanylate cyclase 0.710427532095 0.5 -0.210427532095 +UniRef50_UPI0003029904 hypothetical protein 0.234248658332 0.5 0.265751341668 +UniRef50_A0A022G9Q8 1.03898757892 0.5 -0.538987578919 +UniRef50_Q9ZLB9 Probable L asparaginase 0.037787541637 0.5 0.462212458363 +UniRef50_C3PF03 Bifunctional purine biosynthesis protein PurH 0.0791023259452 0.5 0.420897674055 +UniRef50_D9PXM6 Predicted serine threonine protein kinase 0.251825678786 0.5 0.248174321214 +UniRef50_P77735 1.37043531366 0.5 -0.870435313661 +UniRef50_G8VB53 Amino acid permease 0.043558971491 0.5 0.456441028509 +UniRef50_Q2P0U3 Tryptophan synthase alpha chain 0.226000610493 0.5 0.273999389507 +UniRef50_L1FI55 Citrate carrier 2.16460932667 0.500000000002 -1.66460932667 +UniRef50_Q0FMS9 0.8223826206 0.5 -0.3223826206 +UniRef50_T1Y8E9 2 oxoacid ferredoxin oxidoreductase, alpha subunit 3.02998677268 0.5 -2.52998677268 +UniRef50_A5UJE2 0.448594998155 0.5 0.0514050018447 +UniRef50_UPI000474A3E0 transcriptional regulator 0.0294751233491 0.5 0.470524876651 +UniRef50_W5VFG0 0.873045876333 0.5 -0.373045876333 +UniRef50_Q04661 Tyrosine protein phosphatase CpsB 0.0191486524215 0.5 0.480851347579 +UniRef50_J8RX83 Thioesterase family protein 3.00714771166 0.500000000002 -2.50714771166 +UniRef50_D3A297 0.182559290736 0.5 0.317440709264 +UniRef50_B9E8V3 Putative septation protein SpoVG 0.217412956048 0.5 0.282587043952 +UniRef50_X2M604 0.229950358131 0.5 0.270049641869 +UniRef50_UPI00046A9133 hypothetical protein 0.784364530078 0.5 -0.284364530078 +UniRef50_UPI000375D747 cold shock protein 0.77422835467 0.5 -0.27422835467 +UniRef50_R6JIT7 1.66170140807 0.500000000002 -1.16170140807 +UniRef50_UPI00036CC3FF hypothetical protein 0.350043728435 0.5 0.149956271565 +UniRef50_F6CST0 Peroxiredoxin 0.46547604727 0.5 0.0345239527304 +UniRef50_Q7MU77 Phosphoglycerate kinase 0.000545251034106 0.5 0.499454748966 +UniRef50_A5FWQ8 Fructose 1,6 bisphosphatase class 1 0.723671293016 0.5 -0.223671293016 +UniRef50_Q4L8W8 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.34618196145 0.499999999999 -0.846181961452 +UniRef50_Q8A883 Spermidine putrescine import ATP binding protein PotA 0.00696728899992 0.5 0.493032711 +UniRef50_UPI000409F09E hypothetical protein 0.378350111898 0.5 0.121649888102 +UniRef50_D2JLI1 Conjugal transfer protein, putative 1.97321591618 0.5 -1.47321591618 +UniRef50_M9SAS9 Transcriptional regulator 1.0176353811 0.5 -0.5176353811 +UniRef50_A0A011ME20 0.0330620974703 0.5 0.46693790253 +UniRef50_Q3J233 1.25202919026 0.5 -0.752029190258 +UniRef50_B7N3F3 Chaperone protein TorD 0.97914591403 0.5 -0.47914591403 +UniRef50_UPI00047D14F9 hypothetical protein 0.32415472266 0.5 0.17584527734 +UniRef50_Q63QK7 Arginine biosynthesis bifunctional protein ArgJ 0.010593173246 0.499999999999 0.489406826755 +UniRef50_D6T8U6 4.3573709438 0.5 -3.8573709438 +UniRef50_M4V953 0.281658228168 0.5 0.218341771832 +UniRef50_E8ZZL4 EtfB protein 0.03249049888 0.5 0.46750950112 +UniRef50_H1QUK8 0.61636993693 0.5 -0.11636993693 +UniRef50_UPI00036C1506 hypothetical protein 0.577547174648 0.5 -0.0775471746483 +UniRef50_UPI0003945D12 PREDICTED 0.810637653714 0.5 -0.310637653714 +UniRef50_G7DIA2 0.583314642329 0.5 -0.0833146423288 +UniRef50_Q2P4Y9 Coenzyme PQQ synthesis protein E 5.0487334665 0.500000000006 -4.5487334665 +UniRef50_UPI0004184600 GTP pyrophosphokinase 0.0749796090795 0.5 0.42502039092 +UniRef50_A6QIK9 1.1887842932 0.5 -0.688784293202 +UniRef50_P45627 Glutamine synthetase 0.00215971165449 0.500000000001 0.497840288345 +UniRef50_B2T5I0 Ribonuclease HII 1.1877862856 0.500000000001 -0.687786285603 +UniRef50_UPI00036856CA hypothetical protein 2.8519286692 0.499999999997 -2.3519286692 +UniRef50_R7M1V7 DEAD DEAH box helicase domain protein 0.140733798075 0.5 0.359266201924 +UniRef50_H1BUU0 Inner membrane metabolite transporter ygcS 0.950068863484 0.5 -0.450068863484 +UniRef50_J7QJW8 0.340057149294 0.5 0.159942850706 +UniRef50_K5GQ46 5.15774197788 0.5 -4.65774197788 +UniRef50_A6LYI1 0.733585815564 0.5 -0.233585815564 +UniRef50_UPI0003EC3EE0 PREDICTED 0.0584522861965 0.499999999999 0.441547713804 +UniRef50_A0A014I7A1 Pyridine nucleotide disulfide oxidoreductase family protein 0.192626190209 0.5 0.307373809791 +UniRef50_Q5HNI2 Aminotransferase, class V 1.40408492413 0.499999999998 -0.904084924127 +UniRef50_X2H2G3 RND efflux system, outer membrane lipoprotein CmeC 0.0402672924218 0.5 0.459732707578 +UniRef50_A0R5R7 Putative aminotransferase MSMEG_6286 MSMEI_6121 0.0277139701899 0.5 0.47228602981 +UniRef50_A6LWI0 GCN5 related N acetyltransferase 0.162505141803 0.5 0.337494858197 +UniRef50_A6LPV1 TPR repeat containing protein 0.870653614117 0.5 -0.370653614117 +UniRef50_Q8CWR9 30S Ribosomal protein S1 0.483730354184 0.5 0.0162696458156 +UniRef50_UPI0003A07669 hypothetical protein 0.0415030553673 0.5 0.458496944633 +UniRef50_D3E2P3 2 phospho L lactate guanylyltransferase 0.359925298121 0.5 0.140074701879 +UniRef50_B9KPQ3 6.40961959453 0.499999999997 -5.90961959452 +UniRef50_T0TBW3 Late competence protein ComGD 0.400293386259 0.5 0.0997066137408 +UniRef50_A7AK72 0.0864485953899 0.5 0.41355140461 +UniRef50_D4FM51 Plasmid recombination enzyme 1.81803390559 0.499999999998 -1.31803390559 +UniRef50_Q9RRA3 0.0449577826126 0.500000000001 0.455042217387 +UniRef50_B7H011 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.0372150862387 0.5 0.462784913761 +UniRef50_Q9Z3R5 Alpha glucosides binding periplasmic protein AglE 2.73608698569 0.500000000006 -2.2360869857 +UniRef50_UPI0002558932 hypothetical protein 1.05345499972 0.5 -0.553454999718 +UniRef50_UPI00036947AC hypothetical protein 0.554926440401 0.5 -0.0549264404008 +UniRef50_UPI000329BBE6 PREDICTED 3.95655852153 0.500000000001 -3.45655852153 +UniRef50_A4WS76 Multi sensor signal transduction histidine kinase 1.50664794791 0.5 -1.00664794791 +UniRef50_UPI000363EF1A hypothetical protein 0.493102569284 0.5 0.00689743071557 +UniRef50_A6CJT6 0.0589877941302 0.499999999999 0.441012205871 +UniRef50_UPI00028868C0 ribonucleotide diphosphate reductase subunit beta 0.0291430250118 0.5 0.470856974988 +UniRef50_Q39RR0 Peptidyl tRNA hydrolase 0.487383154398 0.5 0.0126168456022 +UniRef50_W4U5J7 Hypothetical radical SAM family enzyme 0.055441310326 0.5 0.444558689674 +UniRef50_Q3C148 DNA repair and recombination protein 0.492517637765 0.5 0.00748236223543 +UniRef50_UPI0002885658 3 hydroxyacyl CoA dehydrogenase 0.060776935562 0.5 0.439223064438 +UniRef50_Q46078 Pyruvate kinase 0.14016004299 0.5 0.359839957009 +UniRef50_Q2J2E9 sn glycerol 3 phosphate import ATP binding protein UgpC 0.534675870875 0.5 -0.0346758708754 +UniRef50_Q7WF76 Putative Holliday junction resolvase 0.727812990831 0.5 -0.227812990831 +UniRef50_M4YXX5 Glycosyl hydrolase, family 3 3.03982832157 0.5 -2.53982832157 +UniRef50_UPI00034F86F8 PREDICTED 1.3379199816 0.5 -0.837919981601 +UniRef50_Q58493 2.61901873839 0.499999999999 -2.11901873839 +UniRef50_A4WTJ0 1.01301619688 0.5 -0.513016196882 +UniRef50_P0A9T4 Protein tas 0.169316578522 0.5 0.330683421478 +UniRef50_U6FW85 0.41756467738 0.5 0.08243532262 +UniRef50_B7UZW2 Ecotin 1.8150805821 0.5 -1.3150805821 +UniRef50_UPI0004782022 peptide ABC transporter permease 0.526489493751 0.5 -0.0264894937513 +UniRef50_H8DHC5 ATP dependent OLD family endonuclease 0.753907726279 0.5 -0.253907726279 +UniRef50_I0HUP6 Diguanylate cyclase 0.0365596347738 0.5 0.463440365226 +UniRef50_D2BL86 Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase 0.847060689259 0.5 -0.347060689259 +UniRef50_Q8XP36 UPF0324 membrane protein CPE0129 0.11276313061 0.5 0.38723686939 +UniRef50_C6DHE2 UDP N acetyl D mannosaminuronic acid transferase 3.44160046964 0.499999999998 -2.94160046964 +UniRef50_J2FLN3 Alcohol dehydrogenase Adh4 0.10849850013 0.5 0.39150149987 +UniRef50_UPI000225FA9C ABC transporter related protein, partial 1.29928893944 0.5 -0.799288939436 +UniRef50_UPI0003B37CEF hypothetical protein 1.37126426952 0.5 -0.871264269522 +UniRef50_Q8DUK9 7 carboxy 7 deazaguanine synthase 1.61157152716 0.5 -1.11157152716 +UniRef50_Q0FEK0 2.33875262185 0.5 -1.83875262185 +UniRef50_Q1BY14 Methionine import ATP binding protein MetN 1 0.191503137749 0.5 0.308496862251 +UniRef50_UPI0003016AD5 hypothetical protein 0.86371601734 0.5 -0.36371601734 +UniRef50_K0B0R4 Para aminobenzoate synthase component 1 0.0544840079446 0.5 0.445515992056 +UniRef50_F0DCU8 1.22776076527 0.5 -0.727760765265 +UniRef50_A8LPC9 Endoribonuclease L PSP 1.0619275126 0.5 -0.561927512597 +UniRef50_T9QA68 Adhesin invasin 0.39589254673 0.5 0.10410745327 +UniRef50_Q9ZI33 Ribulose bisphosphate carboxylase small chain 7.01494730191 0.500000000002 -6.51494730191 +UniRef50_Q5H5Y6 Phenol hydroxylase 0.0326301184441 0.5 0.467369881556 +UniRef50_C6SPE5 2.05821001965 0.5 -1.55821001965 +UniRef50_I6Z3X6 30.7501561759 0.500000000038 -30.2501561759 +UniRef50_F3ZHG8 Putative zinc binding oxidoreductase 0.26961107353 0.5 0.23038892647 +UniRef50_Q9CIR1 tRNA N6 adenosine threonylcarbamoyltransferase 1.80858230094 0.500000000002 -1.30858230095 +UniRef50_A1WG08 Binding protein dependent transport systems inner membrane component 1.05044388489 0.5 -0.550443884893 +UniRef50_B7GYQ7 4 diphosphocytidyl 2 C methyl D erythritol kinase 0.0655872132705 0.5 0.434412786729 +UniRef50_C3KT41 D isomer specific 2 hydroxyacid dehydrogenase family protein 0.0548110744972 0.500000000001 0.445188925502 +UniRef50_D5ASZ5 Flagellar basal body associated protein FliL 2 10.0115949307 0.500000000003 -9.51159493066 +UniRef50_UPI0004636BA5 DNA repair protein 0.511069018143 0.5 -0.0110690181433 +UniRef50_N2UKS8 Electron transfer flavodomain protein 2.50563849152 0.499999999999 -2.00563849152 +UniRef50_G7VQ62 Dehydrogenase 0.138502101782 0.5 0.361497898218 +UniRef50_UPI0003AF9315 PREDICTED 0.0704870277807 0.5 0.429512972219 +UniRef50_Q03027 Alkaline protease secretion protein AprF 0.331479793103 0.5 0.168520206897 +UniRef50_P50939 NADH quinone oxidoreductase subunit L 2.22354309534 0.5 -1.72354309534 +UniRef50_F2KIT5 Glycine betaine ABC transporter, ATP binding component 1.05620933083 0.5 -0.556209330825 +UniRef50_Q89P06 Blr3677 protein 1.54911538543 0.5 -1.04911538543 +UniRef50_D6FNR4 11.4792977395 0.500000000004 -10.9792977395 +UniRef50_A8AY63 Membrane protein, putative 3.24030627668 0.5 -2.74030627668 +UniRef50_A0A023RYQ0 0.0270035037837 0.5 0.472996496216 +UniRef50_S6BF09 ATP dependent DNA helicase RecQ 5.22935109953 0.499999999999 -4.72935109953 +UniRef50_UPI00034547F6 hypothetical protein 0.292312975866 0.5 0.207687024134 +UniRef50_C4K0T2 Queuine tRNA ribosyltransferase 0.173241937308 0.499999999999 0.326758062693 +UniRef50_P76045 Outer membrane protein G 1.80045812233 0.5 -1.30045812233 +UniRef50_Q87WZ6 MutT nudix family protein 1.30190187526 0.5 -0.80190187526 +UniRef50_B2S8A9 Nicotinate phosphoribosyltransferase 1.73974285392 0.5 -1.23974285392 +UniRef50_F7X314 Phage major capsid protein, HK97 family 3.53552827226 0.5 -3.03552827226 +UniRef50_F0VY37 PTS system, beta glucosides specific IIA component 1.04690779228 0.5 -0.546907792277 +UniRef50_B8ZUM2 S adenosylmethionine synthase 0.0405874353943 0.5 0.459412564606 +UniRef50_B7LN16 Ribosomal protein S6 L glutamate ligase 0.622150508667 0.5 -0.122150508667 +UniRef50_B0VE73 0.0185870197868 0.5 0.481412980213 +UniRef50_U1FWN3 Putative glucoamylase S1 S2 0.0510813003579 0.5 0.448918699642 +UniRef50_G9AFA8 Sugar ABC transporter, ATP binding protein 2.98517352565 0.5 -2.48517352565 +UniRef50_UPI00041E0388 hypothetical protein 1.04780435796 0.499999999999 -0.547804357959 +UniRef50_B8J249 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.147811370248 0.5 0.352188629752 +UniRef50_Q9RV43 0.0128710525474 0.5 0.487128947453 +UniRef50_E4PJS6 0.210577686384 0.5 0.289422313616 +UniRef50_M1MMU0 Amino acid ABC transporter substrate binding protein, PAAT family 0.585181042795 0.5 -0.0851810427953 +UniRef50_P42407 Putative UTP glucose 1 phosphate uridylyltransferase 0.792756890161 0.5 -0.292756890161 +UniRef50_O86422 UDP glucose 6 dehydrogenase 0.00512520627318 0.5 0.494874793727 +UniRef50_H5YG53 N terminal double transmembrane domain containing protein 0.282162415916 0.5 0.217837584084 +UniRef50_Q1CXY2 19.8010283996 0.499999999983 -19.3010283996 +UniRef50_X4YWC2 0.189249285362 0.5 0.310750714638 +UniRef50_P07769 Benzoate 1,2 dioxygenase subunit alpha 0.0268793974723 0.5 0.473120602528 +UniRef50_O30826 Superoxide dismutase [Mn] 0.0908022870773 0.5 0.409197712923 +UniRef50_P58362 Trimethylamine N oxide reductase 2 1.49914195679 0.5 -0.999141956785 +UniRef50_A4VYI2 Transcription repair coupling factor 5.1345329909 0.5 -4.6345329909 +UniRef50_Q81QB6 Methylmalonate semialdehyde dehydrogenase [acylating] 2 0.00157774415233 0.5 0.498422255847 +UniRef50_F4GAH1 Transposase IS4 family protein 9.39515992374 0.500000000001 -8.89515992374 +UniRef50_K0S0E9 0.145916181099 0.5 0.354083818901 +UniRef50_J0YAZ5 4.19289899062 0.5 -3.69289899062 +UniRef50_P46561 ATP synthase subunit beta, mitochondrial 0.56519677177 0.5 -0.0651967717699 +UniRef50_W4TMC7 0.0185802760051 0.5 0.481419723995 +UniRef50_D3QC48 Glycerophosphoryl diester phosphodiesterase 1.30822533544 0.5 -0.808225335443 +UniRef50_UPI0003EC2A72 PREDICTED 0.942718453403 0.5 -0.442718453403 +UniRef50_V7ZEH0 ABC transporter permease and ATP binding protein 1.55116632207 0.5 -1.05116632207 +UniRef50_A0A017HVI0 Mobile element protein 1.75120554293 0.500000000001 -1.25120554293 +UniRef50_UPI00046E240D PREDICTED 0.0458935117248 0.5 0.454106488275 +UniRef50_A6LU76 0.0376533077208 0.5 0.462346692279 +UniRef50_T5XQY7 Membrane protein 5.96916964876 0.500000000009 -5.46916964877 +UniRef50_P0ADS0 LOG family protein YgdH 4.13163924002 0.499999999998 -3.63163924002 +UniRef50_Q9HI36 Major exported protein 0.696303872262 0.5 -0.196303872262 +UniRef50_D2NU09 0.0525859824044 0.5 0.447414017596 +UniRef50_D9RIX1 0.681695953326 0.5 -0.181695953326 +UniRef50_UPI000419A0DE hypothetical protein 0.256852230191 0.5 0.243147769809 +UniRef50_A6L050 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.00080217755479 0.5 0.499197822445 +UniRef50_UPI0002E5C3C1 hypothetical protein 0.228122959992 0.5 0.271877040008 +UniRef50_Q03KT7 Dihydroorotate dehydrogenase B ), electron transfer subunit 1.01763853434 0.5 -0.517638534336 +UniRef50_Q5HKN3 Acetyltransferase, GNAT family 1.71843115067 0.499999999998 -1.21843115067 +UniRef50_F2EDX4 Predicted protein 0.172166567548 0.5 0.327833432452 +UniRef50_UPI00036EAACB hypothetical protein 0.149634946412 0.5 0.350365053588 +UniRef50_UPI000441BADB PREDICTED 0.293223003083 0.5 0.206776996917 +UniRef50_P37631 0.390813587502 0.5 0.109186412498 +UniRef50_UPI00036F2919 hypothetical protein 0.474657701967 0.5 0.0253422980328 +UniRef50_P80521 Pyruvate synthase subunit PorA 1.40655709221 0.5 -0.90655709221 +UniRef50_G7U8S0 CoA transferase family III 0.0785968117399 0.5 0.42140318826 +UniRef50_Q6F964 0.0116870955801 0.5 0.48831290442 +UniRef50_F0P513 Replication initiation protein, truncated 1.18497115663 0.5 -0.684971156627 +UniRef50_Q2RN85 Uroporphyrinogen decarboxylase 0.154248536444 0.5 0.345751463556 +UniRef50_F3Z4V2 1.00097971321 0.5 -0.500979713207 +UniRef50_U5NRR7 2.05024001581 0.500000000001 -1.55024001581 +UniRef50_B2UNA2 Dihydroorotate dehydrogenase 0.000623612813263 0.5 0.499376387187 +UniRef50_A5V4D5 0.490896843112 0.5 0.00910315688828 +UniRef50_UPI00040B6C97 hypothetical protein 0.272148030532 0.5 0.227851969468 +UniRef50_Q4L7R6 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.41716252797 0.499999999997 -2.91716252797 +UniRef50_C8NS74 Formamidopyrimidine DNA glycosylase H2TH domain protein 0.012095715369 0.5 0.487904284631 +UniRef50_UPI0003B44FF8 N acetylglucosamine 1 phosphate uridyltransferase, partial 0.8301015595 0.5 -0.3301015595 +UniRef50_Q0FP15 ABC peptide transporter, inner membrane subunit 1.22372566711 0.5 -0.723725667105 +UniRef50_W8QUX6 Transcriptional regulator PdhR 0.739261533865 0.5 -0.239261533865 +UniRef50_V5ESH7 0.00783151949129 0.5 0.492168480509 +UniRef50_F9Y7Q5 Carbonic anhydrase 7.64940677537 0.5 -7.14940677537 +UniRef50_K0K6Y3 0.390960062412 0.5 0.109039937588 +UniRef50_P0AEX3 Alpha ketoglutarate permease 0.270280367746 0.5 0.229719632254 +UniRef50_M1XFP7 0.0973350930291 0.5 0.402664906971 +UniRef50_R4GHV6 0.295945926799 0.5 0.204054073201 +UniRef50_UPI000374C07B hypothetical protein, partial 1.06543738742 0.5 -0.565437387422 +UniRef50_A5IQH4 Phage integrase family protein 0.858272025262 0.5 -0.358272025262 +UniRef50_Q8DND7 3.92400084564 0.500000000001 -3.42400084564 +UniRef50_C3KNX2 0.805758136239 0.5 -0.305758136239 +UniRef50_UPI0003DEB94F PREDICTED 0.392267839068 0.5 0.107732160932 +UniRef50_D2VIA9 Predicted protein 0.238741174161 0.5 0.261258825839 +UniRef50_O34599 Putative cysteine desulfurase IscS 1 0.0055284354022 0.5 0.494471564598 +UniRef50_UPI0002558DCB heat shock protein HSP33 0.538681994503 0.5 -0.0386819945027 +UniRef50_B1XYL1 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 5.85321268061 0.5 -5.35321268061 +UniRef50_B1MLZ3 Ribonuclease PH 28.5952985637 0.500000000054 -28.0952985637 +UniRef50_A6LWJ3 Leucyl phenylalanyl tRNA protein transferase 0.956684736052 0.5 -0.456684736052 +UniRef50_Q9RU74 Ketol acid reductoisomerase 0.484580763294 0.5 0.0154192367057 +UniRef50_UPI00045E0C55 PREDICTED 0.120369642272 0.5 0.379630357728 +UniRef50_UPI0003B5B300 preprotein translocase subunit TatA 0.88577597396 0.5 -0.38577597396 +UniRef50_Q5HLM4 Acetyltransferase, GNAT family 4.61498546449 0.499999999994 -4.11498546448 +UniRef50_Q7VRS2 GMP synthase [glutamine hydrolyzing] 0.156156862141 0.499999999999 0.343843137859 +UniRef50_A7ZIS2 1.89674634136 0.500000000001 -1.39674634136 +UniRef50_UPI00035E4867 hypothetical protein 2.70343616583 0.5 -2.20343616583 +UniRef50_P72097 CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase 0.0159685510268 0.5 0.484031448973 +UniRef50_A6LXH9 NHL repeat containing protein 0.0532633800996 0.5 0.4467366199 +UniRef50_UPI0004721624 malate dehydrogenase, partial 0.954824246906 0.5 -0.454824246906 +UniRef50_Q7MUV7 Lysine tRNA ligase 0.0591490236291 0.5 0.440850976371 +UniRef50_Q8VNN2 Beta galactosidase 1.28728773207 0.5 -0.787287732074 +UniRef50_Q3IV38 3.01374416471 0.500000000003 -2.51374416472 +UniRef50_P63858 Capsular polysaccharide biosynthesis protein CapA 4.54773581265 0.5 -4.04773581265 +UniRef50_UPI000347E827 3 beta hydroxysteroid dehydrogenase 0.0833747715338 0.5 0.416625228466 +UniRef50_C2DDU8 Putative L xylulose 5 phosphate 3 epimerase 2.07129865795 0.5 -1.57129865795 +UniRef50_UPI000365187A chromosome partitioning protein ParA, partial 1.84058650077 0.5 -1.34058650077 +UniRef50_UPI00046F371B chorismate synthase 0.0446358626893 0.499999999999 0.455364137311 +UniRef50_B7GWT8 Ribosomal RNA small subunit methyltransferase C 0.0278612853521 0.5 0.472138714648 +UniRef50_UPI0003EE05C6 PREDICTED 0.346113855242 0.5 0.153886144758 +UniRef50_X3EN79 0.426769187016 0.5 0.0732308129836 +UniRef50_UPI00047A30AA hypothetical protein 2.2535057909 0.5 -1.7535057909 +UniRef50_Q1C1E1 Glucose 1 phosphate adenylyltransferase 2.60535278592 0.499999999997 -2.10535278592 +UniRef50_UPI00036C8CDE hypothetical protein 2.13488691279 0.499999999997 -1.63488691279 +UniRef50_UPI00037C3A9D hypothetical protein, partial 0.682108352665 0.5 -0.182108352665 +UniRef50_UPI0003C11566 PREDICTED 0.411558583284 0.5 0.0884414167162 +UniRef50_UPI00040E5729 ABC transporter 0.033070689832 0.500000000001 0.466929310167 +UniRef50_X1PNE8 Marine sediment metagenome DNA, contig 0.254954029697 0.5 0.245045970303 +UniRef50_G7MAQ1 Membrane bound O acyl transferase MBOAT family protein 0.0505269849281 0.5 0.449473015072 +UniRef50_Q7W8T4 Peptide chain release factor 2 0.139300904965 0.5 0.360699095035 +UniRef50_A7WYY0 Molecular chaperone Hsp31 and glyoxalase 3 0.550939280103 0.5 -0.0509392801025 +UniRef50_UPI000421D154 hypothetical protein 0.39169030293 0.5 0.10830969707 +UniRef50_UPI000412790F hypothetical protein 2.81154847542 0.499999999999 -2.31154847542 +UniRef50_U9X3Y3 Rhamnan synthesis protein F domain protein 0.270426767932 0.5 0.229573232068 +UniRef50_U5MVV7 HTH type transcriptional regulator YybE 0.0712226296514 0.5 0.428777370348 +UniRef50_A7IIB6 Dihydrodipicolinate synthetase 0.879454143252 0.5 -0.379454143252 +UniRef50_C5CFW2 UDP N acetylglucosamine 1 carboxyvinyltransferase 0.143851112656 0.5 0.356148887343 +UniRef50_UPI00042449ED hypothetical protein 0.405710071596 0.5 0.0942899284044 +UniRef50_C7C7I3 2.65193527796 0.5 -2.15193527796 +UniRef50_E8U7F9 Response regulator receiver protein 0.000966259134376 0.5 0.499033740866 +UniRef50_V0X9G6 dGTPase 2.36164295502 0.500000000001 -1.86164295502 +UniRef50_B4F298 Fructose 1,6 bisphosphatase class 1 0.601715934022 0.5 -0.101715934022 +UniRef50_Q831F7 Release factor glutamine methyltransferase 0.00804779346436 0.5 0.491952206536 +UniRef50_A3PFV7 Oligopeptide dipeptide ABC transporter, ATPase subunit 6.13033129232 0.499999999994 -5.63033129231 +UniRef50_UPI0004746084 hypothetical protein 0.22149995857 0.5 0.27850004143 +UniRef50_UPI0003608471 hypothetical protein 0.316046617247 0.5 0.183953382753 +UniRef50_Q5HH10 Phosphoribosylamine glycine ligase 1.59500567983 0.5 -1.09500567983 +UniRef50_A6WEY6 Carbamoyl phosphate synthase L chain ATP binding 0.00871024641623 0.5 0.491289753584 +UniRef50_UPI0003F48E6E hypothetical protein TREMEDRAFT_44294 0.264506775121 0.5 0.235493224879 +UniRef50_UPI00047B5729 hypothetical protein 0.428598097958 0.5 0.0714019020421 +UniRef50_P67129 UPF0053 inner membrane protein YgdQ 2.29033692699 0.500000000002 -1.790336927 +UniRef50_L2T6M0 Phenol hydroxylase 6.85543505679 0.500000000005 -6.35543505679 +UniRef50_Q49WG8 1,4 Dihydroxy 2 naphthoyl CoA synthase 1.15396391535 0.5 -0.653963915347 +UniRef50_P44316 Diaminopimelate decarboxylase 0.00170763338341 0.5 0.498292366617 +UniRef50_W4VJA0 PTS system 0.633600669374 0.5 -0.133600669374 +UniRef50_UPI00046A542B hypothetical protein 0.0789898480782 0.5 0.421010151922 +UniRef50_UPI00037E6930 hypothetical protein 0.448753172363 0.5 0.0512468276372 +UniRef50_C4L3Y8 Polyphosphate kinase 0.00758559209402 0.5 0.492414407906 +UniRef50_UPI0002002F71 hypothetical protein 2.88854694568 0.500000000001 -2.38854694568 +UniRef50_B9DKN5 Biotin synthase 1.92702287471 0.500000000001 -1.42702287471 +UniRef50_F4A413 Transcriptional regulator 1.2415976469 0.5 -0.741597646898 +UniRef50_E3I461 Arsenical resistance protein 0.00590944948778 0.499999999999 0.494090550513 +UniRef50_UPI0003A6D827 sulfite oxidase 0.0646453016649 0.5 0.435354698335 +UniRef50_C9SSZ1 Oxidoreductase FAD NAD binding 1.88948457312 0.5 -1.38948457312 +UniRef50_Q1GW15 0.890388410272 0.5 -0.390388410272 +UniRef50_I1F5A5 0.926354252108 0.5 -0.426354252108 +UniRef50_B8G5R5 Peptide deformylase 0.377730575638 0.5 0.122269424362 +UniRef50_C6T9B8 1.04821920796 0.5 -0.548219207965 +UniRef50_A6QEA3 2.53747976525 0.499999999996 -2.03747976525 +UniRef50_Q05098 Ferric enterobactin receptor 0.526212048427 0.5 -0.0262120484268 +UniRef50_UPI0004792802 transcription antiterminator NusG 0.251332222275 0.5 0.248667777725 +UniRef50_UPI0003F4A35E hypothetical protein TREMEDRAFT_74449 0.345278762061 0.5 0.154721237939 +UniRef50_Q7VIA9 Ribonuclease 3 0.00233890122601 0.500000000001 0.497661098773 +UniRef50_Q927P1 tRNA pseudouridine synthase A 0.00135418748829 0.5 0.498645812512 +UniRef50_UPI00035A1EA0 PREDICTED 0.520374645181 0.5 -0.0203746451812 +UniRef50_R2NN08 PemK family transcriptional regulator 0.342776065398 0.5 0.157223934602 +UniRef50_UPI00047C7F40 hypothetical protein 1.18949801647 0.5 -0.689498016475 +UniRef50_Q4JV62 4 hydroxy tetrahydrodipicolinate reductase 0.0264117138933 0.5 0.473588286107 +UniRef50_F0E145 Hydrophobe amphiphile efflux 1 family protein (Fragment) 0.999174342655 0.5 -0.499174342655 +UniRef50_D9SR21 0.318890370062 0.5 0.181109629938 +UniRef50_H5UVK0 0.757693822003 0.5 -0.257693822003 +UniRef50_I3GYQ4 0.31071974598 0.5 0.18928025402 +UniRef50_O31760 Ribonuclease J2 0.662912016658 0.5 -0.162912016658 +UniRef50_I1EYN0 3.23832928736 0.500000000001 -2.73832928736 +UniRef50_P00964 Glutamine synthetase 1.72093722847 0.5 -1.22093722847 +UniRef50_UPI0003490F7B hypothetical protein 0.926361083954 0.5 -0.426361083954 +UniRef50_P54745 Heat responsive suppressor HrsA 2.147539018 0.499999999998 -1.647539018 +UniRef50_Q9RVP6 Phosphoenolpyruvate carboxykinase [ATP] 0.000116609668446 0.5 0.499883390332 +UniRef50_A3PIK5 Putrescine binding periplasmic protein 2.39791439087 0.499999999996 -1.89791439087 +UniRef50_Q8XBV3 Enterobactin synthase component E 0.179174251345 0.5 0.320825748655 +UniRef50_UPI00035FD10F hypothetical protein 0.66871572125 0.5 -0.16871572125 +UniRef50_UPI0003743277 hypothetical protein 1.34136461769 0.499999999999 -0.841364617692 +UniRef50_U3QMM7 ABC transporter ATP binding protein 0.230793913012 0.5 0.269206086988 +UniRef50_A9IQ26 2.89641762697 0.5 -2.39641762697 +UniRef50_Q9RZE6 Succinate semialdehyde dehydrogenase 0.00199002148654 0.5 0.498009978513 +UniRef50_UPI00036FBC00 hypothetical protein 0.512882417774 0.5 -0.0128824177737 +UniRef50_H4HIB4 3.5949758119 0.5 -3.0949758119 +UniRef50_C8VZ79 Beta lactamase domain protein 0.0847571091191 0.5 0.415242890881 +UniRef50_E6SKM4 Electron transfer flavoprotein alpha subunit 0.360427999754 0.5 0.139572000246 +UniRef50_P93306 NADH dehydrogenase [ubiquinone] iron sulfur protein 2 0.622177988294 0.5 -0.122177988294 +UniRef50_Q9KTJ5 Methionine import ATP binding protein MetN 0.453539052853 0.5 0.0464609471471 +UniRef50_UPI0003769C5A hypothetical protein 0.250224758074 0.5 0.249775241926 +UniRef50_UPI00039A55CB hypothetical protein 0.70285376792 0.5 -0.20285376792 +UniRef50_W1FXV5 Iron uptake factor PiuC 0.933096649868 0.5 -0.433096649868 +UniRef50_UPI00042A0F4E hypothetical protein 2.2211758275 0.5 -1.7211758275 +UniRef50_F0MZJ7 Lipopolysaccharide N acetylglucosaminyltransferase 0.0386905395103 0.5 0.46130946049 +UniRef50_UPI0002BC466A hypothetical protein, partial 0.0385585455299 0.5 0.46144145447 +UniRef50_A7Z9P0 Cyclic pyranopterin monophosphate synthase 4.45926504798 0.499999999998 -3.95926504798 +UniRef50_UPI0003626443 hypothetical protein, partial 0.442053485895 0.5 0.0579465141051 +UniRef50_F4LW30 Galactitol specific enzyme IIC component of PTS 1.70031187179 0.499999999998 -1.20031187179 +UniRef50_UPI0004724E83 hypothetical protein 0.00253276165978 0.5 0.49746723834 +UniRef50_B5ZCH4 Sporulation domain protein 0.128035208037 0.5 0.371964791963 +UniRef50_Q4L9C4 Putative pyruvate, phosphate dikinase regulatory protein 1 1.67517911621 0.5 -1.17517911621 +UniRef50_Q8DSC8 Ribonuclease HIII 0.927692348176 0.5 -0.427692348176 +UniRef50_UPI00035C68B7 hypothetical protein 0.199330801468 0.5 0.300669198532 +UniRef50_R4VHN6 AzlC family protein 1.37977023642 0.5 -0.879770236422 +UniRef50_Q88F11 0.263438420072 0.5 0.236561579928 +UniRef50_F2N3V4 Peptide ABC transporter, periplasmic peptide binding protein 0.701581882195 0.5 -0.201581882195 +UniRef50_M1E792 Protein tyrosine phosphatase 0.108687400626 0.5 0.391312599374 +UniRef50_G0DVB5 Beta glucanase 0.0160286971254 0.5 0.483971302875 +UniRef50_N0APD1 0.326115649695 0.5 0.173884350305 +UniRef50_W6SQC5 0.524188790868 0.5 -0.0241887908679 +UniRef50_Q9RXH6 0.0199741334394 0.5 0.480025866561 +UniRef50_Q255E7 0.836538135318 0.5 -0.336538135318 +UniRef50_UPI00045E6D39 hypothetical protein 1.79194986603 0.5 -1.29194986603 +UniRef50_M5EG32 0.890121681115 0.5 -0.390121681115 +UniRef50_P0ADW7 2.5093483288 0.499999999998 -2.0093483288 +UniRef50_E6SFW3 Acyl CoA dehydrogenase domain containing protein 0.00254139585248 0.5 0.497458604147 +UniRef50_UPI000472D6AB arginine ABC transporter ATP binding protein 0.739223954953 0.5 -0.239223954953 +UniRef50_Q4FS54 Dihydroxy acid dehydratase 0.207060061165 0.5 0.292939938835 +UniRef50_Q5HNG2 tRNA ) methyltransferase 1.42238835107 0.5 -0.922388351068 +UniRef50_I3X570 Phosphotriesterase protein Php 4.4155050697 0.500000000002 -3.91550506971 +UniRef50_O31404 Acetoin 1.45315653539 0.499999999998 -0.953156535384 +UniRef50_X5Z2U4 0.180828485723 0.5 0.319171514277 +UniRef50_UPI0004752454 50S ribosomal protein L18, partial 0.0792583672148 0.5 0.420741632785 +UniRef50_T1XNC8 10.5612365209 0.500000000003 -10.0612365209 +UniRef50_UPI00047D8D50 PTS sugar transporter 0.399620956561 0.5 0.100379043439 +UniRef50_A3M7U1 Phosphopantetheinyl transferase component of siderophore synthetase 0.00820969428384 0.5 0.491790305716 +UniRef50_UPI0003694178 hypothetical protein 0.145548332953 0.5 0.354451667047 +UniRef50_A6TDX1 Membrane bound lytic murein transglycosylase C 1.52058326245 0.5 -1.02058326245 +UniRef50_Q1YML4 1.4665309431 0.5 -0.966530943098 +UniRef50_Q3IXU4 Transcriptional regulator, IclR family MhpR 4.245528264 0.499999999999 -3.745528264 +UniRef50_F9Z2J9 0.0259706520152 0.5 0.474029347985 +UniRef50_S9V0F9 Plectin 1.10055189693 0.5 -0.600551896934 +UniRef50_UPI000475D84B spermidine putrescine ABC transporter substrate binding protein 0.159882987887 0.5 0.340117012113 +UniRef50_F3U2V0 Gas vesicle operon protein 1.7011199717 0.5 -1.2011199717 +UniRef50_K7U3H6 0.0944882604428 0.5 0.405511739557 +UniRef50_W7WRB6 0.865410112398 0.5 -0.365410112398 +UniRef50_UPI000345BA64 hypothetical protein 1.7435772436 0.5 -1.2435772436 +UniRef50_Q5Z7E3 0.237774580298 0.5 0.262225419702 +UniRef50_E8SMG2 PetC 0.0466115857972 0.5 0.453388414203 +UniRef50_E4EZN9 0.0808366566916 0.5 0.419163343309 +UniRef50_UPI00042B0CC2 Non intrinsic ABC protein 7 isoform 6 0.92350130829 0.5 -0.42350130829 +UniRef50_K0EQ96 NADP dependent isocitrate dehydrogenase 1.25583867751 0.5 -0.755838677515 +UniRef50_A5UM19 Predicted permease 2.48138207976 0.499999999999 -1.98138207976 +UniRef50_U6K4H4 0.95614170207 0.5 -0.45614170207 +UniRef50_W8U7U4 ABC type transport system involved in resistance to organic solvents, periplasmic component 0.432071852032 0.5 0.0679281479682 +UniRef50_C3Z9G8 1.07993407662 0.5 -0.579934076619 +UniRef50_C4IYT1 0.0567237386653 0.5 0.443276261334 +UniRef50_UPI000470303C hypothetical protein 0.353124302147 0.5 0.146875697853 +UniRef50_Q8DU86 0.671793534536 0.5 -0.171793534536 +UniRef50_X1QUX5 Marine sediment metagenome DNA, contig 1.10967232947 0.5 -0.609672329474 +UniRef50_UPI00047A6123 transcriptional regulator 0.573049373771 0.5 -0.0730493737714 +UniRef50_D5CZH2 Pyrimidine monooxygenase RutA 3.4985623359 0.500000000001 -2.9985623359 +UniRef50_Q4L7G4 Peroxide responsive repressor PerR 2.57693325077 0.499999999997 -2.07693325077 +UniRef50_Q31EP3 ATP binding cassette superfamily transporter, ATP binding component 0.018412064005 0.5 0.481587935995 +UniRef50_UPI0002DB68C6 hypothetical protein 0.422051624362 0.5 0.077948375638 +UniRef50_B2TL50 CoA transferase, A subunit 0.228029560958 0.5 0.271970439042 +UniRef50_I7EE24 4.55575902481 0.500000000002 -4.05575902481 +UniRef50_UPI00046E59C8 30S ribosomal protein S5 0.284634334029 0.5 0.215365665971 +UniRef50_W9BYI7 Permease 1.83633469208 0.499999999999 -1.33633469208 +UniRef50_UPI0003F65C64 PTS beta glucoside transporter subunit IIA 0.230679882212 0.5 0.269320117788 +UniRef50_S9Q8L7 XdhC protein 0.483186847668 0.5 0.0168131523322 +UniRef50_A0A014NSW5 1.85310943224 0.499999999999 -1.35310943224 +UniRef50_W4HZ56 0.216412167225 0.5 0.283587832775 +UniRef50_B9KX06 Transcriptional regulator, GntR family 2.98872816924 0.5 -2.48872816924 +UniRef50_A0A038FVF0 2.74477133531 0.500000000001 -2.24477133531 +UniRef50_P55792 4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase 0.120566144886 0.5 0.379433855114 +UniRef50_UPI00040A1C88 glycerol 3 phosphate ABC transporter permease 0.0328105625597 0.5 0.46718943744 +UniRef50_Q62C32 0.260540991199 0.5 0.239459008801 +UniRef50_U5MNP4 Penicillin binding protein 1A 0.151177900179 0.5 0.348822099821 +UniRef50_UPI0003BD7FE7 0.331697450255 0.5 0.168302549745 +UniRef50_P0A0H1 rRNA adenine N 6 methyltransferase 2.33006279748 0.5 -1.83006279748 +UniRef50_Q46821 Uric acid transporter UacT 1.15765523896 0.499999999999 -0.657655238959 +UniRef50_Q8DV32 1.14128629435 0.5 -0.641286294353 +UniRef50_UPI00047156EA hypothetical protein 0.0890432747103 0.5 0.41095672529 +UniRef50_Q8G7H1 Ribonuclease 3 0.176980825807 0.5 0.323019174193 +UniRef50_P75989 HTH type transcriptional repressor YcgE 3.78347218157 0.499999999999 -3.28347218156 +UniRef50_B9KRF9 Electron transport protein SCO1 SenC 3.97046895508 0.5 -3.47046895508 +UniRef50_D5C9N5 IS911 transposase orfB 0.25737925159 0.5 0.24262074841 +UniRef50_C1AE27 Aminotransferase 1.37089124149 0.5 -0.870891241495 +UniRef50_P77212 Probable pyridine nucleotide disulfide oxidoreductase RclA 1.45071659801 0.500000000001 -0.950716598014 +UniRef50_U5WJX6 0.0696680348639 0.5 0.430331965136 +UniRef50_U1G994 Putative adhesion protein like protein 0.443002013638 0.5 0.0569979863622 +UniRef50_UPI00036FB1EC hypothetical protein 1.58289822111 0.5 -1.08289822111 +UniRef50_G6YS95 2.13693920574 0.500000000002 -1.63693920574 +UniRef50_A6LWX5 Acriflavin resistance protein 0.139980844136 0.5 0.360019155864 +UniRef50_UPI0002D36C87 hypothetical protein 0.17577059286 0.5 0.32422940714 +UniRef50_Q21LG2 tRNA ) methyltransferase 0.3737023002 0.5 0.1262976998 +UniRef50_U3T3T5 Lipid A biosynthesis lauroyl acyltransferase 0.00597980297195 0.5 0.494020197028 +UniRef50_F4QAU5 WH2 domain containing protein 0.0787582847534 0.5 0.421241715247 +UniRef50_A5UKD0 Putative HTH type transcriptional regulatory protein Msm_0453 2.0502701929 0.5 -1.5502701929 +UniRef50_UPI000376FFD8 hypothetical protein 0.288034828123 0.5 0.211965171877 +UniRef50_Q9RU03 0.0037374778472 0.5 0.496262522152 +UniRef50_Q9RU05 0.0142073700623 0.5 0.485792629938 +UniRef50_D5ARQ5 Methyltransferase small domain protein 2.58018693607 0.5 -2.08018693607 +UniRef50_B8FJP4 Phosphoglycerate kinase 0.313487854849 0.5 0.186512145151 +UniRef50_UPI000479F495 oxidoreductase 0.49730802183 0.5 0.00269197817025 +UniRef50_A0A011F836 TonB dependent Receptor Plug domain protein 0.0682667257571 0.500000000001 0.431733274242 +UniRef50_I6Q293 81.603665259 0.499999999983 -81.103665259 +UniRef50_O07575 1.03378965227 0.5 -0.533789652275 +UniRef50_UPI0002F93554 hypothetical protein 0.0813250039181 0.5 0.418674996082 +UniRef50_D4DM85 DNA gyrase, B subunit, C terminal domain protein 0.0329773702907 0.5 0.467022629709 +UniRef50_UPI00046EE6DC dTDP 4 dehydrorhamnose 3,5 epimerase 0.302630044955 0.5 0.197369955045 +UniRef50_Q8FRR3 Tryptophan tRNA ligase 0.00334398833872 0.500000000001 0.496656011661 +UniRef50_O69282 Malate 0.173118197149 0.5 0.326881802851 +UniRef50_F2AE05 0.304904714743 0.5 0.195095285257 +UniRef50_UPI0004717CFE hypothetical protein 0.698619884454 0.5 -0.198619884454 +UniRef50_Q87ST5 4 hydroxythreonine 4 phosphate dehydrogenase 0.26600607533 0.5 0.23399392467 +UniRef50_A5UMP7 Fuculose 1 phosphate aldolase, class II aldolase adducin family 1.92631840486 0.500000000002 -1.42631840486 +UniRef50_A6LXI3 Integral membrane sensor signal transduction histidine kinase 0.0954569552441 0.5 0.404543044756 +UniRef50_UPI000368FC1C hypothetical protein 0.13573075642 0.5 0.36426924358 +UniRef50_Q1IVY6 FAD dependent oxidoreductase 0.00311081948899 0.499999999999 0.496889180512 +UniRef50_UPI00041819DF glycine cleavage system protein T 0.64104889975 0.5 -0.14104889975 +UniRef50_B2TQB0 Amylovoran biosynthesis AmsK 0.0731359026826 0.5 0.426864097318 +UniRef50_A1IRV5 0.02245616578 0.5 0.47754383422 +UniRef50_Q2FD95 AdeI 0.0307504330899 0.5 0.46924956691 +UniRef50_R9SJQ0 Cell wall biosynthesis protein Mur ligase family 2.82779735944 0.499999999999 -2.32779735944 +UniRef50_UPI00047BD281 hypothetical protein 3.27041679355 0.500000000002 -2.77041679355 +UniRef50_UPI00035D739B hypothetical protein 9.31214270576 0.5 -8.81214270576 +UniRef50_UPI00047BB945 SAM dependent methyltransferase 0.929612423084 0.5 -0.429612423084 +UniRef50_A0A023Y271 Carbon nitrogen hydrolase 0.622060652418 0.5 -0.122060652418 +UniRef50_Z2DBY9 Glycolate oxidase 0.2877577425 0.5 0.2122422575 +UniRef50_Q67PR5 Peptide deformylase 0.521420060225 0.5 -0.0214200602249 +UniRef50_R7NQ15 Gluconate 5 dehydrogenase 0.00775747284783 0.5 0.492242527152 +UniRef50_UPI0003B557FA hydrolase 1.04598983893 0.5 -0.545989838934 +UniRef50_B7ELK9 cDNA clone 0.231952327364 0.5 0.268047672636 +UniRef50_Q1YMK1 N acetyl gamma glutamyl phosphate reductase 0.574996025263 0.5 -0.0749960252631 +UniRef50_H5DQ87 0.437863395659 0.5 0.0621366043409 +UniRef50_UPI00035E02BE hypothetical protein 2.86852123201 0.499999999999 -2.36852123201 +UniRef50_D6CMF6 Sulfite reductase 0.907124271919 0.5 -0.407124271919 +UniRef50_D5UQG6 0.12797183163 0.5 0.37202816837 +UniRef50_UPI0004690DDD pesticidal protein Cry5Ba 3.3479762296 0.499999999995 -2.84797622959 +UniRef50_A4WT11 Methyl accepting chemotaxis sensory transducer 1.53592954232 0.5 -1.03592954232 +UniRef50_I0JFL4 BioY family protein 1.09315819318 0.5 -0.593158193181 +UniRef50_W1FZE6 TRAP type C4 dicarboxylate transport system, large permease component 0.633396909038 0.5 -0.133396909038 +UniRef50_D4H9D0 Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II 0.0128728468603 0.5 0.48712715314 +UniRef50_Q8EXQ7 Adenosylcobalamin biosynthesis bifunctional protein CobDQ 0.0545935540345 0.5 0.445406445965 +UniRef50_D8JE40 Soluble lytic transglycosylase fused to an ABC type amino acid binding protein 0.146075825975 0.5 0.353924174025 +UniRef50_A1HQK7 0.206469759791 0.5 0.293530240209 +UniRef50_U7PXV4 3.78791937773 0.500000000001 -3.28791937773 +UniRef50_O27762 Phosphate transporter permease PstC 6.14428484641 0.500000000001 -5.64428484641 +UniRef50_Q1IXT2 Cysteine synthase 0.00727209875134 0.5 0.492727901249 +UniRef50_F0KPZ6 Oligopeptidase A 0.0212883188094 0.5 0.478711681191 +UniRef50_B2UVS5 Purine nucleoside phosphorylase 0.173630073033 0.5 0.326369926967 +UniRef50_F8X9S0 Ribonucleoside diphosphage reductase 1, beta subunit, B2 2.69379098719 0.500000000001 -2.19379098719 +UniRef50_Q9I0J7 NADH quinone oxidoreductase subunit F 0.252638362578 0.5 0.247361637422 +UniRef50_P0A3B9 4 phosphopantetheinyl transferase EntD 0.498937868657 0.5 0.0010621313426 +UniRef50_A6LP26 Adenine phosphoribosyltransferase 0.784972989907 0.5 -0.284972989907 +UniRef50_A9M1L0 Valine pyruvate aminotransferase 0.0100770698088 0.5 0.489922930191 +UniRef50_B7HEG4 HPr kinase phosphorylase 1.93785406347 0.5 -1.43785406347 +UniRef50_UPI00035EE4F1 hypothetical protein, partial 0.256835279965 0.5 0.243164720035 +UniRef50_UPI000371E3B5 hypothetical protein 0.228787263596 0.5 0.271212736404 +UniRef50_A4YBV8 DNA directed RNA polymerase subunit alpha 0.0524046215992 0.5 0.447595378401 +UniRef50_P07003 Pyruvate dehydrogenase [ubiquinone] 0.80944897669 0.5 -0.30944897669 +UniRef50_Q5ZT84 4 hydroxyphenylpyruvate dioxygenase 0.00960898882061 0.5 0.490391011179 +UniRef50_S4N129 0.0396043286173 0.5 0.460395671382 +UniRef50_A6LV69 Adenylosuccinate synthetase 0.0793111020558 0.500000000001 0.420688897944 +UniRef50_P37872 11.3322500153 0.500000000001 -10.8322500153 +UniRef50_K4KM08 Phosphatidylserine phosphatidylglycerophosphate cardiolipin synthase like protein 0.678255326955 0.5 -0.178255326955 +UniRef50_Q5FIF8 N acetylmuramic acid 6 phosphate etherase 0.320060023947 0.5 0.179939976053 +UniRef50_G7ZP06 0.98726531632 0.5 -0.48726531632 +UniRef50_UPI0004734490 hypothetical protein, partial 0.36122708405 0.5 0.13877291595 +UniRef50_UPI0003804668 hypothetical protein, partial 4.32378314893 0.499999999999 -3.82378314893 +UniRef50_A9KJX4 Two component transcriptional regulator, winged helix family 0.945828518714 0.5 -0.445828518714 +UniRef50_P39381 1.44454665809 0.500000000001 -0.944546658093 +UniRef50_UPI00036F79EF hypothetical protein 0.491269250147 0.5 0.00873074985268 +UniRef50_UPI00035C1F0F PhoB family transcriptional regulator 0.188101086538 0.5 0.311898913462 +UniRef50_Q2L1W2 Phosphonoacetaldehyde hydrolase 0.267981464151 0.5 0.232018535849 +UniRef50_Q9RYF4 Oxidoreductase, short chain dehydrogenase reductase family 0.00314732920137 0.5 0.496852670799 +UniRef50_S5K087 0.0445915050839 0.5 0.455408494916 +UniRef50_UPI00016B0FEC hypothetical protein 0.304965005278 0.5 0.195034994722 +UniRef50_A3PN29 5.63939278388 0.500000000002 -5.13939278388 +UniRef50_A3M3L2 Transcription regulator LysR family 0.0106119611088 0.5 0.489388038891 +UniRef50_UPI0003C27927 PREDICTED 0.48479501307 0.5 0.0152049869301 +UniRef50_Q0S2H3 Ketol acid reductoisomerase 0.290905259305 0.5 0.209094740695 +UniRef50_Q98BA9 Mll5655 protein 0.139867417647 0.5 0.360132582353 +UniRef50_B8DA95 Ggdef motif membrane protein 0.0722107394348 0.5 0.427789260565 +UniRef50_Q8VNM5 Orf513 protein 0.123843008361 0.5 0.376156991639 +UniRef50_A4W448 ATPases with chaperone activity, ATP binding subunit 0.66608034809 0.5 -0.16608034809 +UniRef50_R9SJ71 Type II secretion system protein E GspE 0.672603915731 0.5 -0.172603915731 +UniRef50_UPI000376BA8C hypothetical protein 2.86275596104 0.5 -2.36275596104 +UniRef50_A6M2J8 Glycerophosphoryl diester phosphodiesterase 0.338034555439 0.5 0.161965444561 +UniRef50_A0A017HNC7 0.0935532686792 0.5 0.406446731321 +UniRef50_A3QG19 Homoserine O succinyltransferase 0.203023847481 0.5 0.296976152519 +UniRef50_UPI0003B4CB27 MarR family transcriptional regulator 0.0915003150822 0.5 0.408499684918 +UniRef50_H9KGM6 0.230778911446 0.5 0.269221088554 +UniRef50_UPI00047DD55E electron transfer flavoprotein subunit alpha 0.373712009706 0.5 0.126287990294 +UniRef50_H3YNY8 Penicillin binding protein, transpeptidase domain protein 1.86017171022 0.499999999999 -1.36017171022 +UniRef50_A5UP25 Predicted type II restriction enzyme, methylase subunit 6.80037004713 0.500000000003 -6.30037004713 +UniRef50_G8MLW9 Binding protein dependent transport systems inner membrane component 0.159007451357 0.5 0.340992548644 +UniRef50_G2KXV7 0.00893745719453 0.5 0.491062542805 +UniRef50_UPI00035CE0CD hypothetical protein 0.543363927864 0.5 -0.0433639278639 +UniRef50_I0ESN6 Alanine dehydrogenase 0.0118592362729 0.5 0.488140763727 +UniRef50_P73002 Cobyrinic acid A,C diamide synthase 0.0148743974845 0.5 0.485125602515 +UniRef50_UPI0003645BA6 hypothetical protein 0.148961023501 0.5 0.351038976499 +UniRef50_A4WRS0 SAM dependent methyltransferase 0.319291769746 0.5 0.180708230254 +UniRef50_B9KQ53 0.66601916714 0.5 -0.16601916714 +UniRef50_UPI000465DFCD hypothetical protein 0.152802833177 0.5 0.347197166823 +UniRef50_UPI0003651ACE hypothetical protein 0.0556015362236 0.5 0.444398463777 +UniRef50_Q1IZ90 Drug resistance transporter EmrB QacA subfamily 0.00208735039659 0.5 0.497912649604 +UniRef50_UPI0003681123 hypothetical protein 0.15116662151 0.500000000001 0.348833378489 +UniRef50_UPI000419642D MULTISPECIES 1.49553576738 0.499999999999 -0.995535767377 +UniRef50_R7PVV2 0.852548484955 0.5 -0.352548484955 +UniRef50_J7RBB7 Fdhd protein 0.477217919582 0.5 0.0227820804184 +UniRef50_X8A316 2.22506754388 0.5 -1.72506754388 +UniRef50_I7L4T0 Phosphate import ATP binding protein pstB 0.0315096554536 0.5 0.468490344547 +UniRef50_M4WV43 Cis,cis muconate transporter MucK 0.159151174351 0.5 0.340848825649 +UniRef50_O26307 Hydrogenase expression formation protein HypE 1.52082143511 0.500000000001 -1.02082143512 +UniRef50_P0AD04 Inner membrane protein YebS 1.72367440571 0.500000000001 -1.22367440571 +UniRef50_Q3JHW2 0.0114076306731 0.5 0.488592369327 +UniRef50_K0L036 Formate dehydrogenase 4.13205867809 0.5 -3.63205867809 +UniRef50_Q2GPL7 Predicted protein 0.554237115156 0.5 -0.0542371151559 +UniRef50_P02929 Protein TonB 1.49912323104 0.5 -0.999123231035 +UniRef50_Y0BJC5 0.236880085364 0.5 0.263119914636 +UniRef50_Q3JEN4 Cytidylate kinase 0.571740671342 0.5 -0.0717406713415 +UniRef50_A6T1E5 60 kDa chaperonin 1.08737220508 0.5 -0.587372205079 +UniRef50_UPI00047C3395 hypothetical protein 0.866137963571 0.5 -0.366137963571 +UniRef50_UPI0003791B6C hypothetical protein 0.127379624923 0.5 0.372620375077 +UniRef50_UPI0003EB0A2B GTPase 0.00526672261197 0.5 0.494733277388 +UniRef50_B5F7X0 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase 2.16071114171 0.5 -1.66071114171 +UniRef50_UPI0001E892A8 probable mannose 1 phosphate guanyltransferase 4.39340338406 0.499999999999 -3.89340338406 +UniRef50_U5MUF8 1.03178217109 0.5 -0.531782171086 +UniRef50_G8PBV9 PTS system, lactose cellobiose IIC component family protein 0.0464484714321 0.499999999999 0.453551528569 +UniRef50_Q46863 Putative binding protein YgiS 6.77344428874 0.499999999999 -6.27344428874 +UniRef50_UPI0003C17ADD PREDICTED 0.00746454528858 0.5 0.492535454711 +UniRef50_P21912 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial 0.375313307212 0.5 0.124686692788 +UniRef50_P77726 Inner membrane transport protein YajR 6.09907401338 0.499999999997 -5.59907401337 +UniRef50_A9WS85 Leucine tRNA ligase 0.023974512138 0.5 0.476025487862 +UniRef50_D2RJ96 CRISPR associated protein Cas4 0.889769237858 0.5 -0.389769237858 +UniRef50_A6M3G8 Extracellular ligand binding receptor 0.152447045758 0.5 0.347552954242 +UniRef50_H8GYP5 0.0434241259116 0.5 0.456575874089 +UniRef50_G8VEM4 Glycosyl transferase 0.0262823216316 0.5 0.473717678368 +UniRef50_F0ME34 Sodium alanine symporter family protein 0.0383638747705 0.500000000001 0.461636125229 +UniRef50_F8JQP0 0.0290065852885 0.5 0.470993414712 +UniRef50_V5NK98 0.115995048763 0.5 0.384004951237 +UniRef50_P45856 Probable 3 hydroxybutyryl CoA dehydrogenase 0.0439554084823 0.5 0.456044591518 +UniRef50_I1HGX9 0.894492503429 0.5 -0.394492503429 +UniRef50_D6M5U2 Transcriptional regulator 0.63685147354 0.5 -0.13685147354 +UniRef50_UPI00047B87C7 resolvase 0.557586130317 0.5 -0.0575861303171 +UniRef50_P31471 0.566427241521 0.5 -0.0664272415212 +UniRef50_P31470 7.55939405349 0.499999999997 -7.05939405349 +UniRef50_B2V075 Ser Thr protein phosphatase family protein 0.0475938271023 0.5 0.452406172898 +UniRef50_Q5L7W2 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.000245909592612 0.5 0.499754090407 +UniRef50_M4U7I0 0.282899332136 0.5 0.217100667864 +UniRef50_U5NMY3 2.00007426671 0.500000000001 -1.50007426671 +UniRef50_UPI0002379CD5 IS5 family transposase OrfA 0.288580207109 0.5 0.211419792891 +UniRef50_Q73F23 Tn7 like transposition protein C 0.00698069221397 0.5 0.493019307786 +UniRef50_UPI000364A211 hypothetical protein 4.13120911641 0.499999999999 -3.63120911641 +UniRef50_Q53199 Probable glutamate dehydrogenase 0.760196731716 0.5 -0.260196731716 +UniRef50_UPI0003641B94 hypothetical protein, partial 1.04410260132 0.5 -0.544102601316 +UniRef50_Q1LDL8 0.217642066264 0.5 0.282357933736 +UniRef50_UPI0003B6B0F4 hypothetical protein 0.0791785268966 0.5 0.420821473104 +UniRef50_N9CNB8 0.161196641535 0.5 0.338803358464 +UniRef50_G2J0I7 0.156641514871 0.5 0.343358485129 +UniRef50_J0FRW1 3.18821075388 0.5 -2.68821075388 +UniRef50_UPI000411C2A5 hypothetical protein 1.04442946914 0.5 -0.544429469139 +UniRef50_UPI0003B57812 ABC transporter ATP binding protein 0.0844492624478 0.5 0.415550737552 +UniRef50_W5X841 Phage associated DNA primase 0.0122866262094 0.5 0.487713373791 +UniRef50_Q74L45 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2 3.06880645461 0.500000000001 -2.56880645461 +UniRef50_F0TCP3 1.40480705403 0.5 -0.904807054029 +UniRef50_Q5UBV9 Resuscitation promoting factor 0.376697360208 0.5 0.123302639792 +UniRef50_Q6GI36 Staphostatin B 1.35995346973 0.5 -0.859953469733 +UniRef50_D4HBN4 Trypsin 0.0649482263172 0.5 0.435051773683 +UniRef50_P76417 Putative nucleoside transporter YegT 5.19215061088 0.500000000002 -4.69215061089 +UniRef50_B7S018 Oxidoreductase, short chain dehydrogenase reductase family 0.0102881269369 0.5 0.489711873063 +UniRef50_T6VVX4 Galactitol 1 phosphate 5 dehydrogenase 0.884070538513 0.5 -0.384070538513 +UniRef50_A6LXN2 NLP P60 protein 0.0189749886717 0.5 0.481025011329 +UniRef50_UPI00037E23C1 hypothetical protein 0.434296833512 0.5 0.0657031664878 +UniRef50_B3HGM5 1.5846305239 0.5 -1.0846305239 +UniRef50_A6T6B5 tRNA 2 methylthio N dimethylallyladenosine synthase 0.115153302401 0.5 0.384846697599 +UniRef50_A0A009GFK1 0.0267592621687 0.5 0.473240737831 +UniRef50_Q04JY7 Homoserine kinase 0.052780947855 0.5 0.447219052145 +UniRef50_UPI00035FAAB9 hypothetical protein 0.25708833595 0.5 0.24291166405 +UniRef50_H3XMI1 Periplasmic binding domain protein 0.264936864389 0.5 0.235063135611 +UniRef50_Q4UMZ3 Putative export ATP binding permease protein RF_0214 0.410653168974 0.5 0.0893468310258 +UniRef50_UPI000361120A hypothetical protein 0.0353194332932 0.5 0.464680566707 +UniRef50_Q5WVI7 0.00651392183177 0.5 0.493486078168 +UniRef50_H3F815 0.0303216276884 0.5 0.469678372311 +UniRef50_B5EN70 NADH quinone oxidoreductase subunit B 2 0.126144696649 0.5 0.373855303351 +UniRef50_UPI00037A86DD hypothetical protein 0.436721247424 0.5 0.0632787525757 +UniRef50_D8TR27 0.639120615542 0.5 -0.139120615542 +UniRef50_UPI00042C3CC5 PREDICTED 0.605164730829 0.5 -0.105164730829 +UniRef50_K0HTI4 YD repeat protein 0.0130317723912 0.5 0.486968227609 +UniRef50_C5CI63 Adenine deaminase 1.48565681594 0.499999999999 -0.985656815941 +UniRef50_A6M0R7 ABC transporter, periplasmic substrate binding protein 0.042809020088 0.5 0.457190979912 +UniRef50_B9KWE3 Methyl accepting chemotaxis sensory transducer 1.34170434137 0.5 -0.841704341369 +UniRef50_Q48K66 Branched chain amino acid transport system II carrier protein 0.0210680603181 0.5 0.478931939682 +UniRef50_UPI0003780D5B hypothetical protein, partial 0.233373304816 0.5 0.266626695184 +UniRef50_B6JHG4 N acetyl gamma glutamyl phosphate reductase 0.629060054441 0.5 -0.129060054441 +UniRef50_A3PKL4 4.60527884955 0.500000000001 -4.10527884955 +UniRef50_UPI00047265F4 hypothetical protein 0.0691605268453 0.5 0.430839473155 +UniRef50_Q8RWV0 Transketolase 1, chloroplastic 1.18441916543 0.5 -0.684419165434 +UniRef50_Q1IRT8 Histidine ammonia lyase 0.043782413839 0.5 0.456217586161 +UniRef50_A6M3B4 0.128172656282 0.5 0.371827343718 +UniRef50_D0ISP2 Aminodeoxychorismate lyase 0.0186545107656 0.5 0.481345489234 +UniRef50_I4DZ43 1.91070013482 0.5 -1.41070013482 +UniRef50_I6T9F6 Transcriptional regulator 0.887024737421 0.5 -0.387024737421 +UniRef50_UPI00047B64CE hypothetical protein 0.138691345062 0.5 0.361308654938 +UniRef50_Q2YQE0 Urease subunit gamma 2 0.0101930452788 0.5 0.489806954722 +UniRef50_A8IHJ3 Altronate oxidoreductase 0.636938075904 0.5 -0.136938075904 +UniRef50_UPI000225ED80 DNA damage repair protein MutT 5.54364152111 0.499999999997 -5.04364152111 +UniRef50_A5WC44 Membrane protein like protein 0.148704971753 0.5 0.351295028247 +UniRef50_W0MF84 0.0179961491566 0.5 0.482003850843 +UniRef50_UPI0001FFF273 hypothetical protein, partial 0.0356944260458 0.5 0.464305573954 +UniRef50_D3QIV7 Immunodominant antigen B 2.07578597796 0.5 -1.57578597796 +UniRef50_A5UJ84 Adhesin like protein 5.4682009597 0.499999999996 -4.9682009597 +UniRef50_UPI00035E8644 hypothetical protein, partial 0.395366944228 0.5 0.104633055772 +UniRef50_UPI0003B6B470 hypothetical protein 2.81417019993 0.5 -2.31417019993 +UniRef50_UPI000362BA63 hypothetical protein 0.00133869584271 0.5 0.498661304157 +UniRef50_A9M2L0 Transcriptional regulator, Fnr family 0.153561559603 0.5 0.346438440397 +UniRef50_Q9M439 Branched chain amino acid aminotransferase 2, chloroplastic 0.167486560123 0.5 0.332513439876 +UniRef50_F4LTT4 DNA methylase N 4 N 6 domain protein 0.0174172222219 0.5 0.482582777778 +UniRef50_Q4L9Y1 PTS system mannitol specific EIICB component 1.22797395976 0.5 -0.727973959755 +UniRef50_UPI00047BEA91 hypothetical protein 0.0584130920101 0.5 0.44158690799 +UniRef50_A6LWG3 0.126391004013 0.5 0.373608995987 +UniRef50_B9KWP4 ABC sugar transporter, inner membrane subunit 1.31745032402 0.5 -0.817450324016 +UniRef50_UPI00026C8165 peptidase A8 0.337178850005 0.5 0.162821149995 +UniRef50_C3C2K9 0.13628198876 0.5 0.36371801124 +UniRef50_B5F445 Aspartate carbamoyltransferase regulatory chain 0.110765622277 0.5 0.389234377723 +UniRef50_UPI00037CE05A hypothetical protein 0.105049063745 0.5 0.394950936255 +UniRef50_P16682 Phosphonates binding periplasmic protein 2.57190278432 0.499999999999 -2.07190278432 +UniRef50_Q5FSJ7 Anhydro N acetylmuramic acid kinase 0.0871379665033 0.5 0.412862033496 +UniRef50_Q5HRD0 Endonuclease III 2.4824773197 0.499999999998 -1.9824773197 +UniRef50_E6MWX9 0.0644917844125 0.5 0.435508215588 +UniRef50_Q4L8H1 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 1.78794672049 0.5 -1.28794672049 +UniRef50_UPI00035DC37A hypothetical protein 0.399275304002 0.5 0.100724695998 +UniRef50_B2TR74 P type ATPase metal cation transport 0.0672946208631 0.5 0.432705379137 +UniRef50_Q9CPY0 Putative ribosomal RNA methyltransferase 2 0.23350112104 0.5 0.26649887896 +UniRef50_U2YLP5 Possible lipoprotein 0.71230787485 0.5 -0.21230787485 +UniRef50_UPI000376B5CE hypothetical protein 0.152388527396 0.5 0.347611472604 +UniRef50_E8U4R9 GAF domain protein 0.00156384395747 0.5 0.498436156042 +UniRef50_UPI00039595AE amino acid carrier protein 0.00492084898352 0.5 0.495079151017 +UniRef50_UPI00037DB88D hypothetical protein 0.0850324463947 0.5 0.414967553605 +UniRef50_UPI0003B53AEE hemolysin secretion protein D, partial 0.340929178772 0.5 0.159070821228 +UniRef50_UPI000465E12B hypothetical protein, partial 0.740183476105 0.5 -0.240183476105 +UniRef50_S1U9M8 Respiratory nitrate reductase 2 beta chain domain protein 0.131164164208 0.5 0.368835835792 +UniRef50_Q0RF16 Potassium transporting ATPase A chain 0.0013978310312 0.500000000001 0.498602168968 +UniRef50_X1GYM7 Marine sediment metagenome DNA, contig 0.326930675769 0.5 0.173069324231 +UniRef50_F2U6L8 SAM domain and HD domain containing protein 1 0.483702654923 0.5 0.0162973450773 +UniRef50_P23883 Aldehyde dehydrogenase PuuC 2.83263553535 0.499999999999 -2.33263553535 +UniRef50_UPI00037CF752 hypothetical protein 0.302678083136 0.5 0.197321916864 +UniRef50_UPI00037C0B53 50S ribosomal protein L3 0.00915334043649 0.5 0.490846659563 +UniRef50_A5UP78 Exoribonuclease VII, large subunit, XseA 2.7597699817 0.500000000002 -2.2597699817 +UniRef50_P31131 Protein YdeJ 0.660854391119 0.5 -0.160854391119 +UniRef50_D7AQ31 Transcriptional regulator, DeoR family 0.286485704204 0.5 0.213514295796 +UniRef50_E7PVM6 Streptococcal histidine triad protein 0.370582078398 0.5 0.129417921602 +UniRef50_Q56953 Chelated iron transport system membrane protein YfeB 2.72953122379 0.500000000001 -2.22953122379 +UniRef50_Q53CQ0 JM170 0.386767042166 0.5 0.113232957834 +UniRef50_Q98NF5 Threonine dehydratase 1.53588037746 0.5 -1.03588037746 +UniRef50_P76042 Putative ABC transporter periplasmic binding protein YcjN 0.435733721443 0.5 0.0642662785571 +UniRef50_Q9BYC2 Succinyl CoA 0.78381471643 0.5 -0.28381471643 +UniRef50_UPI0002E54E33 hypothetical protein 3.47638581479 0.5 -2.97638581479 +UniRef50_X5EK24 Integral membrane transporter 0.0113593062094 0.5 0.488640693791 +UniRef50_UPI00016A5F2C deoxyribodipyrimidine photolyase, partial 0.0437800214018 0.5 0.456219978598 +UniRef50_UPI000478533A ribose ABC transporter permease 1.02096151364 0.5 -0.520961513644 +UniRef50_Q8ZYR9 DNA repair and recombination protein RadA 1.01077837787 0.5 -0.510778377868 +UniRef50_UPI000382A2F1 hypothetical protein 3.87867331159 0.500000000001 -3.37867331159 +UniRef50_G7ZRL2 1.53167353605 0.500000000001 -1.03167353606 +UniRef50_S4YXA5 Meta pathway phenol degradation like protein 0.401717609025 0.5 0.0982823909745 +UniRef50_B2TNM6 DNA polymerase 0.0281474820046 0.5 0.471852517995 +UniRef50_Q5HNN0 Probable GTP binding protein EngB 1.16801731194 0.5 -0.668017311937 +UniRef50_A5IS41 1.20975287839 0.5 -0.709752878389 +UniRef50_T2HRY4 Transposase DDE domain protein 0.529282613519 0.5 -0.029282613519 +UniRef50_Q5HRQ4 50S ribosomal protein L25 1.42555955889 0.5 -0.925559558891 +UniRef50_C5ASM5 Enoyl CoA hydratase 0.424626875009 0.5 0.0753731249908 +UniRef50_A5VBZ8 DNA directed RNA polymerase subunit beta 2.54349868295 0.500000000004 -2.04349868295 +UniRef50_D2GMB8 15.1235859582 0.500000000021 -14.6235859583 +UniRef50_A3CNT1 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 1.46866421406 0.5 -0.96866421406 +UniRef50_UPI00031618D7 hypothetical protein 0.095984407293 0.5 0.404015592707 +UniRef50_UPI0003C8E1FD PREDICTED 2.04617109674 0.5 -1.54617109674 +UniRef50_M3X368 0.851618452928 0.5 -0.351618452928 +UniRef50_B7I751 NADH quinone oxidoreductase subunit N 0.0552187538269 0.5 0.444781246173 +UniRef50_UPI00037AC0F7 hypothetical protein 4.45219488345 0.500000000003 -3.95219488345 +UniRef50_W0NQ86 0.502625146146 0.5 -0.00262514614593 +UniRef50_UPI00040AFE18 DNA primase 0.124435846147 0.499999999999 0.375564153853 +UniRef50_R1DKY4 0.0807839760041 0.5 0.419216023996 +UniRef50_P0AFI5 D alanyl D alanine endopeptidase 1.52925884198 0.5 -1.02925884198 +UniRef50_Q54IJ8 29.4100200052 0.500000000004 -28.9100200052 +UniRef50_A0A059LB29 0.0637270430166 0.5 0.436272956983 +UniRef50_K9XNW0 0.000887428618499 0.499999999999 0.499112571382 +UniRef50_Q9AK82 DNA polymerase IV 0.00782214521331 0.5 0.492177854787 +UniRef50_U3SRM8 1.40421850443 0.5 -0.904218504429 +UniRef50_F7SKK4 Pirin like protein 0.695157665154 0.5 -0.195157665154 +UniRef50_Q49VP4 UTP glucose 1 phosphate uridylyltransferase 2 1.51768755032 0.5 -1.01768755032 +UniRef50_A7I262 DedA family protein 0.256052714674 0.5 0.243947285326 +UniRef50_A8AQ14 5 keto 4 deoxy D glucarate aldolase 4.02175029992 0.500000000002 -3.52175029992 +UniRef50_UPI0000F2F781 two component response regulator 0.352520816345 0.5 0.147479183655 +UniRef50_UPI00026CD75D rare lipoprotein A 0.091546358955 0.5 0.408453641045 +UniRef50_P37327 Inner membrane protein YfdC 3.23253642675 0.500000000001 -2.73253642675 +UniRef50_C5Z886 0.0410855862075 0.499999999999 0.458914413793 +UniRef50_B9TC98 Xanthosine phosphorylase, putative 2.8922876123 0.500000000005 -2.3922876123 +UniRef50_P39851 Putative tyrosine protein kinase CapB 3.27350641618 0.499999999998 -2.77350641618 +UniRef50_UPI00035DBD49 hypothetical protein 0.0312000586682 0.5 0.468799941332 +UniRef50_UPI000329916F PREDICTED 0.150649740125 0.5 0.349350259875 +UniRef50_U3U1E2 Alkyl hydroperoxide reductase subunit F 0.0789311598031 0.5 0.421068840197 +UniRef50_UPI000369BED8 hypothetical protein 0.47255438244 0.5 0.0274456175598 +UniRef50_U8KDA3 0.0896769958374 0.5 0.410323004163 +UniRef50_S6SYK4 Alkanesulfonate transporter substrate binding subunit 0.146320803508 0.5 0.353679196492 +UniRef50_UPI000415C161 phospholipase C 0.303363688855 0.5 0.196636311145 +UniRef50_G5KHM6 0.186179737654 0.5 0.313820262346 +UniRef50_UPI00046F982B hypothetical protein 0.548950414659 0.5 -0.0489504146589 +UniRef50_UPI00045E9E9F hypothetical protein 0.149328809439 0.5 0.350671190561 +UniRef50_R7PWF8 2.10314384053 0.499999999999 -1.60314384053 +UniRef50_UPI0004290598 luciferase 3.22198053708 0.499999999999 -2.72198053708 +UniRef50_Q8FEN7 Arabinose 5 phosphate isomerase GutQ 2.43221102666 0.499999999998 -1.93221102666 +UniRef50_O34133 Putative regulator AldR 0.017803139486 0.5 0.482196860514 +UniRef50_UPI00027F9D39 PREDICTED 3.62333661163 0.5 -3.12333661163 +UniRef50_A0NLI7 0.112745851878 0.5 0.387254148122 +UniRef50_A0A045UMF7 1.9631072851 0.5 -1.4631072851 +UniRef50_H0YQH9 1.60060496147 0.499999999999 -1.10060496147 +UniRef50_G7QF23 Peptide chain release factor 3 0.00240384835072 0.5 0.497596151649 +UniRef50_D9UK32 2.78844799531 0.500000000002 -2.28844799531 +UniRef50_UPI000456151B hypothetical protein PFL1_04047 0.0835943994707 0.5 0.416405600529 +UniRef50_I6TYU2 Peptide synthetase 2.15257865717 0.5 -1.65257865717 +UniRef50_D3QF29 ABC transporter 1.80303372017 0.5 -1.30303372017 +UniRef50_Q8D820 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase 1.49725550333 0.500000000001 -0.99725550333 +UniRef50_UPI0003B36CD8 metal dependent hydrolase 0.239263785113 0.5 0.260736214887 +UniRef50_UPI000470D6FC hypothetical protein 3.09748798687 0.499999999999 -2.59748798687 +UniRef50_S4X9L5 2 oxoglutarate ferredoxin oxidoreductase subunit beta 8.11960342002 0.500000000006 -7.61960342003 +UniRef50_Q97L63 Spore photoproduct lyase 0.123918242522 0.5 0.376081757478 +UniRef50_UPI000427F61C O acetylhomoserine aminocarboxypropyltransferase 3.55329125317 0.500000000002 -3.05329125317 +UniRef50_H9UVF1 Short chain dehydrogenase reductase SDR 1.27882010441 0.5 -0.778820104413 +UniRef50_V9R1Z5 Chemotaxis protein CheY 1.52779214779 0.5 -1.02779214779 +UniRef50_Q9RT22 3 oxoacyl [acyl carrier protein] synthase 3 protein 2 0.00208028254574 0.5 0.497919717455 +UniRef50_V4FVJ2 IS3 Spn1, transposase 4.6419971029 0.499999999998 -4.14199710289 +UniRef50_UPI0000167300 COG0174 0.293632893037 0.5 0.206367106963 +UniRef50_U3ST30 0.515215674217 0.5 -0.015215674217 +UniRef50_A6C7R0 0.449326760636 0.5 0.0506732393639 +UniRef50_Q07GL5 Pirin protein, putative 10.7004034045 0.499999999997 -10.2004034045 +UniRef50_A1B348 Cbb3 type cytochrome c oxidase subunit CcoP 1.34847211356 0.5 -0.848472113558 +UniRef50_M7M6N5 Transposase domain protein 0.189595083604 0.5 0.310404916396 +UniRef50_M1LYE3 Flagellar basal body protein FliL 0.703588600681 0.5 -0.203588600681 +UniRef50_Q9RXG4 Lon protease 0.00281362045732 0.5 0.497186379543 +UniRef50_UPI000287D648 multidrug efflux associated protein 0.580651009212 0.5 -0.0806510092119 +UniRef50_UPI0003B6CDE7 serine ammonia lyase 0.0609389426851 0.5 0.439061057315 +UniRef50_A4AEG2 0.199347344066 0.5 0.300652655934 +UniRef50_B9DLC6 Transcription repair coupling factor 1.41854228381 0.5 -0.918542283808 +UniRef50_UPI0003C808C2 PREDICTED 0.198888752473 0.5 0.301111247527 +UniRef50_UPI0003775EA0 30S ribosomal protein S4, partial 0.0387795894535 0.5 0.461220410546 +UniRef50_C5CV27 0.546967349362 0.5 -0.0469673493619 +UniRef50_P54978 Phytoene desaturase 0.278668786924 0.5 0.221331213076 +UniRef50_Q4L5Y5 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 0.332609629279 0.5 0.167390370721 +UniRef50_G8RAR9 Proline dehydrogenase 5.1772722518 0.500000000001 -4.6772722518 +UniRef50_Q2FWK2 3 isopropylmalate dehydrogenase 5.95905556372 0.500000000001 -5.45905556372 +UniRef50_R9YQ24 2.71858253321 0.5 -2.21858253321 +UniRef50_UPI0003626E85 PhoB family transcriptional regulator 1.68321562349 0.5 -1.18321562349 +UniRef50_UPI0003F822DA ABC transporter permease 0.145873204189 0.5 0.354126795811 +UniRef50_C5VTT8 tRNA specific adenosine deaminase 0.161587621709 0.5 0.338412378291 +UniRef50_K6U2B0 ABC type sugar transport system, periplasmic component 0.043036384845 0.5 0.456963615155 +UniRef50_A5ITW6 19.1972360599 0.500000000033 -18.69723606 +UniRef50_D8JKJ3 Transcription repair coupling factor 0.00301591126483 0.5 0.496984088735 +UniRef50_U6B4B7 Lipoprotein 1.70106976241 0.499999999999 -1.20106976241 +UniRef50_C3T922 Membrane associated protein 2.1446375727 0.500000000001 -1.6446375727 +UniRef50_B2JSF8 Major facilitator superfamily MFS_1 1.05028842808 0.5 -0.550288428079 +UniRef50_A7GWQ0 S ribosylhomocysteine lyase 0.00950235829189 0.5 0.490497641708 +UniRef50_UPI00046650D5 DNA recombination protein RecN 0.164815740065 0.5 0.335184259935 +UniRef50_UPI0000E0F611 UTP glucose 1 phosphate uridylyltransferase 1.64069718448 0.5 -1.14069718448 +UniRef50_D8HI13 NPQTN specific sortase B 12.9534119118 0.500000000006 -12.4534119118 +UniRef50_A5UK93 Mg dependent DNase, TatD related 0.90064341832 0.5 -0.40064341832 +UniRef50_Q9RSH5 Membrane protein insertase YidC 0.00299724047858 0.5 0.497002759521 +UniRef50_A0A059IP43 0.77105928522 0.5 -0.27105928522 +UniRef50_Q2FJ80 FMN dependent NADPH azoreductase 1.66473547622 0.5 -1.16473547622 +UniRef50_UPI00046F326D hypothetical protein 0.510349782394 0.5 -0.0103497823943 +UniRef50_C6SQB9 1.78943607868 0.5 -1.28943607868 +UniRef50_Q930I4 Histidinol dehydrogenase 2 2.03921302377 0.5 -1.53921302377 +UniRef50_A0A023VI11 Beta lactamase 2.26589231237 0.500000000001 -1.76589231237 +UniRef50_F5X3F3 HI0933 like oxidoreductase dehydrogenase 0.464635550246 0.5 0.0353644497544 +UniRef50_UPI00036BFC25 hypothetical protein 0.0914413091669 0.5 0.408558690833 +UniRef50_UPI00046A9281 glycine cleavage system protein H 0.861054970852 0.5 -0.361054970852 +UniRef50_W6JZG7 1.72146357006 0.499999999998 -1.22146357006 +UniRef50_B9KSX5 Sporulation domain protein 0.196099925211 0.5 0.303900074789 +UniRef50_UPI00037A69CE hypothetical protein 0.0102941813776 0.5 0.489705818623 +UniRef50_B9KUJ5 2.32993963536 0.499999999999 -1.82993963536 +UniRef50_L5N059 0.116740075948 0.5 0.383259924052 +UniRef50_Q8VVL8 ORF 5 0.762102745982 0.5 -0.262102745982 +UniRef50_UPI000441F366 2.5397827763 0.5 -2.0397827763 +UniRef50_UPI000363D669 hypothetical protein 0.0851415228049 0.5 0.414858477195 +UniRef50_T0MER8 0.335796024448 0.5 0.164203975552 +UniRef50_F1VLT2 0.452787332104 0.5 0.0472126678959 +UniRef50_A3M519 EsvK1 0.0970794220277 0.5 0.402920577972 +UniRef50_A6M0I4 Transcriptional regulatory protein 0.17117987086 0.5 0.32882012914 +UniRef50_UPI000372ED7A hypothetical protein 0.756394930242 0.5 -0.256394930242 +UniRef50_A7X766 Imidazoleglycerol phosphate dehydratase 0.599516907818 0.5 -0.0995169078176 +UniRef50_F3T6C6 Conserved domain protein 0.0886577114845 0.5 0.411342288515 +UniRef50_D3G1Y7 Cadmium resistance transporter, putative 0.964729488268 0.5 -0.464729488268 +UniRef50_A9FQ61 1.64421518789 0.5 -1.14421518789 +UniRef50_I0IJ24 0.24837452685 0.5 0.25162547315 +UniRef50_S5YT17 Transposase 8.50500891885 0.500000000013 -8.00500891886 +UniRef50_UPI00047ABD8A arginine tRNA ligase 0.144914846738 0.5 0.355085153262 +UniRef50_UPI00028A110F UrtA 0.0981242496613 0.5 0.401875750338 +UniRef50_Q2CDM2 2.07308915333 0.5 -1.57308915333 +UniRef50_F8CGQ9 1.49896046356 0.499999999999 -0.998960463555 +UniRef50_Q4L732 DNA polymerase 1.24517100248 0.5 -0.745171002481 +UniRef50_S5CN83 Outer membrane receptor for monomeric catechols 0.00693629456104 0.5 0.493063705439 +UniRef50_Q5LMC4 Peptidase, family S49 8.97452767871 0.500000000003 -8.47452767871 +UniRef50_W7J7H8 Basic proline rich protein 0.426046408822 0.5 0.0739535911781 +UniRef50_UPI00037AC687 hypothetical protein 0.920025047776 0.5 -0.420025047776 +UniRef50_G7M7P5 Aspartate semialdehyde dehydrogenase 1.36032767269 0.5 -0.860327672688 +UniRef50_P77280 1.21313891103 0.5 -0.713138911028 +UniRef50_UPI000472DE9D hypothetical protein, partial 0.142648552892 0.5 0.357351447107 +UniRef50_UPI00047A4340 hypothetical protein 2.43674852355 0.499999999997 -1.93674852354 +UniRef50_P35598 Putative ABC transporter ATP binding protein exp8 0.888064490357 0.5 -0.388064490357 +UniRef50_D2N3U7 Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative 8.09989201491 0.499999999991 -7.5998920149 +UniRef50_UPI000365A456 hypothetical protein 1.46893421379 0.5 -0.968934213791 +UniRef50_UPI0003676E73 hypothetical protein 0.516013669877 0.5 -0.0160136698775 +UniRef50_UPI0003A0CBF8 MULTISPECIES 0.403412156144 0.5 0.0965878438559 +UniRef50_P0AAG7 Multidrug resistance like ATP binding protein MdlB 1.30837693138 0.5 -0.808376931378 +UniRef50_J8RWM9 Sulfate ABC transporter permease 0.367970007294 0.5 0.132029992706 +UniRef50_UPI0003AD9F9E PREDICTED 0.0117341458794 0.5 0.48826585412 +UniRef50_UPI0004268641 50S ribosomal protein L21 0.163199952017 0.5 0.336800047983 +UniRef50_Q7MGT4 Phosphoribosylamine glycine ligase 0.705136417931 0.5 -0.205136417931 +UniRef50_F0YT45 0.152795011739 0.5 0.347204988261 +UniRef50_S4YSN2 NAD transhydrogenase subunit alpha 0.6156700399 0.5 -0.1156700399 +UniRef50_C3P7X7 3 dehydroquinate dehydratase 0.000878897547425 0.5 0.499121102452 +UniRef50_UPI00016B1721 pyrophosphatase, MutT nudix family protein 0.0889929615368 0.5 0.411007038463 +UniRef50_UPI0003B5F58F anthranilate synthase subunit I 0.486858823394 0.5 0.0131411766062 +UniRef50_Q4UV65 Lipid A export ATP binding permease protein MsbA 0.329725556814 0.5 0.170274443186 +UniRef50_I0C7F8 Aminobenzoyl glutamate transport protein 2.2496724233 0.5 -1.7496724233 +UniRef50_UPI00041D865E peptide ABC transporter permease 1.08966804235 0.5 -0.589668042355 +UniRef50_Q1LNK1 0.476785270992 0.5 0.0232147290083 +UniRef50_A6LQM0 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase 2.76020930822 0.499999999999 -2.26020930822 +UniRef50_A3PS70 YD repeat protein 2.2636797556 0.499999999998 -1.76367975559 +UniRef50_I6U2R2 1.24180765549 0.5 -0.74180765549 +UniRef50_UPI00038092FF hypothetical protein 0.367581111898 0.5 0.132418888102 +UniRef50_Q828X4 Putative cytochrome c oxidase subunit 1 beta 0.205042405501 0.5 0.294957594499 +UniRef50_T3I3Z9 Homocitrate synthase 0.0297465190336 0.5 0.470253480966 +UniRef50_Q3SFK0 Chromate transporter 0.00622293602303 0.5 0.493777063977 +UniRef50_U2BSH5 Glyoxalase family protein 0.935034409294 0.5 -0.435034409294 +UniRef50_G8RET5 D specific D 2 hydroxyacid dehydrogenase ddh like protein 1.08968789301 0.5 -0.589687893014 +UniRef50_UPI00046F8D3D hypothetical protein, partial 0.157727021962 0.5 0.342272978038 +UniRef50_S5Z097 2.52618082389 0.500000000001 -2.02618082389 +UniRef50_UPI0002557980 hemolysin type calcium binding protein 0.201778770745 0.5 0.298221229255 +UniRef50_X1M4K5 Marine sediment metagenome DNA, contig 0.00905198521736 0.5 0.490948014782 +UniRef50_K0NK11 MaoC domain protein dehydratase 0.517255588725 0.5 -0.0172555887255 +UniRef50_F0KIW4 0.00694875789699 0.5 0.493051242103 +UniRef50_UPI00036F6565 hypothetical protein 0.00337425664766 0.5 0.496625743352 +UniRef50_UPI0003735CF6 hypothetical protein 0.132189937496 0.5 0.367810062503 +UniRef50_A7GPF0 40 residue YVTN family beta propeller repeat protein 0.00512320557046 0.5 0.49487679443 +UniRef50_Q9V150 Tryptophan synthase beta chain 2 0.334951979549 0.5 0.165048020451 +UniRef50_UPI00047A278A hypothetical protein 5.48040133563 0.499999999998 -4.98040133563 +UniRef50_I0C7M3 Transporter, drug metabolite exporter family 3.35324881035 0.5 -2.85324881035 +UniRef50_A0A024HE97 Lon protease 2 0.544445694076 0.5 -0.0444456940757 +UniRef50_B2V4S9 Elongation factor P 0.149227731717 0.5 0.350772268283 +UniRef50_B7JB82 Bifunctional protein GlmU 0.309235680306 0.5 0.190764319694 +UniRef50_Q49XB9 0.268021644749 0.5 0.231978355251 +UniRef50_Q9JVD3 Ribonuclease 3 0.00148497201796 0.5 0.498515027982 +UniRef50_A4G9I7 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.00824058171326 0.500000000001 0.491759418286 +UniRef50_B7UT13 0.0237656273832 0.5 0.476234372616 +UniRef50_UPI00016A620A SsrA binding protein, partial 0.0932953284715 0.5 0.406704671529 +UniRef50_P02906 Sulfate binding protein 2.06077451407 0.499999999998 -1.56077451407 +UniRef50_C1D8I2 DUF1376 domain containing protein 0.16761250888 0.5 0.33238749112 +UniRef50_R7AXX0 0.00149997803279 0.5 0.498500021967 +UniRef50_X1YKE3 0.32129010991 0.5 0.17870989009 +UniRef50_Q820K4 tRNA ) methyltransferase 0.000967202110568 0.5 0.49903279789 +UniRef50_L7WWS4 2.45397725809 0.5 -1.95397725809 +UniRef50_D9STU2 Transcriptional antiterminator, BglG 0.178260829367 0.5 0.321739170633 +UniRef50_UPI00047C795E hypothetical protein 0.215417995521 0.5 0.284582004479 +UniRef50_M9VJN7 Isochorismate synthetase, enterochelin 0.0304121569072 0.5 0.469587843093 +UniRef50_Q0I781 Membrane protein, putative 3.31732487107 0.500000000002 -2.81732487107 +UniRef50_A0A029LEA3 Prepilin type N terminal cleavage methylation domain protein 0.679431384645 0.5 -0.179431384645 +UniRef50_A6LVZ7 Ribose 5 phosphate isomerase A 0.0285084541959 0.5 0.471491545804 +UniRef50_A0A031J2A8 Conjugative relaxase domain containing protein 5.36272865748 0.499999999999 -4.86272865747 +UniRef50_P77698 0.595060077243 0.5 -0.0950600772435 +UniRef50_B1FEG9 0.0262274659023 0.5 0.473772534098 +UniRef50_A3PRL8 WD 40 repeat protein 1.20641155037 0.500000000001 -0.706411550369 +UniRef50_A7X1Y2 Homoserine kinase 2.69756814003 0.499999999997 -2.19756814002 +UniRef50_W4HHB0 Lipoprotein 0.572471537598 0.5 -0.0724715375985 +UniRef50_U5P9W8 Haloacid dehalogenase 0.400798886948 0.5 0.0992011130517 +UniRef50_R7PUA8 1.18425714869 0.5 -0.684257148693 +UniRef50_P42454 Rubredoxin NAD reductase 0.00538942678587 0.5 0.494610573214 +UniRef50_Q46509 Aldehyde oxidoreductase 0.0935677295563 0.5 0.406432270444 +UniRef50_F8FKS7 YyzM 0.444325764486 0.5 0.0556742355138 +UniRef50_A1AHE9 2,3 bisphosphoglycerate independent phosphoglycerate mutase 0.238571022499 0.5 0.261428977501 +UniRef50_UPI00032A0F3F PREDICTED 0.864688901129 0.5 -0.364688901129 +UniRef50_B7MIX6 Thiazole synthase 2.25699654928 0.500000000001 -1.75699654928 +UniRef50_Q6MCC8 Leucine tRNA ligase 1.39544502343 0.5 -0.895445023427 +UniRef50_G7U922 0.01837804373 0.5 0.48162195627 +UniRef50_Q9HUG6 Putative lipopolysaccharide biosynthesis protein PA4999 1.03214514617 0.5 -0.532145146167 +UniRef50_UPI0003957ECC PREDICTED 2.27293367673 0.500000000001 -1.77293367673 +UniRef50_Q00673 Probable NADH ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial 0.658681705744 0.5 -0.158681705744 +UniRef50_T7R7U1 Cardiolipin synthase 2 0.615168218125 0.5 -0.115168218125 +UniRef50_L8A918 Glucitol operon activator protein 0.0214258634749 0.5 0.478574136525 +UniRef50_R6GV45 Relaxase Mobilisation nuclease domain 0.470376709484 0.5 0.029623290516 +UniRef50_UPI000467E284 transposase, partial 1.25440031732 0.5 -0.754400317324 +UniRef50_W1MJT1 0.113199216628 0.5 0.386800783372 +UniRef50_A3PPZ3 HNH endonuclease 1.40968736558 0.5 -0.909687365577 +UniRef50_UPI0002485FE8 4 hydroxy 3 methylbut 2 enyl diphosphate reductase 0.753883750604 0.5 -0.253883750604 +UniRef50_A4WUJ0 Membrane protein involved in aromatic hydrocarbon degradation 2.24020350565 0.500000000001 -1.74020350565 +UniRef50_G4LLE1 0.430386542214 0.5 0.0696134577861 +UniRef50_D3E1F7 Glycyl radical enzyme activating protein 5.41007054333 0.499999999996 -4.91007054333 +UniRef50_I1ZNG1 0.142818954405 0.5 0.357181045595 +UniRef50_W1S615 Transposase 0.191612655079 0.5 0.308387344921 +UniRef50_UPI0002BB9C7E hypothetical protein, partial 0.00103635165744 0.500000000001 0.498963648342 +UniRef50_UPI0003630D50 hypothetical protein 0.0747620926068 0.5 0.425237907393 +UniRef50_UPI000372EB1D hypothetical protein 0.33503328278 0.5 0.16496671722 +UniRef50_UPI0003C7B9A1 hypothetical protein 0.0562100350131 0.5 0.443789964987 +UniRef50_K0N5S7 ATP dependent DNA helicase recG 1.26299743599 0.5 -0.762997435991 +UniRef50_UPI000361113C hypothetical protein 0.734959171952 0.5 -0.234959171952 +UniRef50_A1B0G9 Permease YjgP YjgQ family protein 0.896323539529 0.5 -0.396323539529 +UniRef50_UPI0003704086 hypothetical protein 0.912753384743 0.5 -0.412753384743 +UniRef50_D8MD39 Histidine triad protein 13.9122913757 0.500000000004 -13.4122913757 +UniRef50_A6KYZ4 0.00177050399301 0.5 0.498229496007 +UniRef50_C0PBW7 0.106520102606 0.5 0.393479897394 +UniRef50_UPI00047AE4DE hypothetical protein 0.754465761064 0.5 -0.254465761064 +UniRef50_UPI0003B51919 LysR family transcriptional regulator 0.294564854605 0.5 0.205435145395 +UniRef50_UPI000362B9D7 hypothetical protein 0.729927325979 0.5 -0.229927325979 +UniRef50_Q8CQE3 1.85312252232 0.499999999999 -1.35312252232 +UniRef50_A6VWE9 Hemolysin type calcium binding region 2.13605544981 0.499999999999 -1.63605544981 +UniRef50_G0DXM7 0.0721009904357 0.5 0.427899009564 +UniRef50_O75600 2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial 2.04219250445 0.499999999999 -1.54219250445 +UniRef50_Y5VS88 8.19172069009 0.500000000008 -7.6917206901 +UniRef50_Q8ZAW9 Sulfoxide reductase catalytic subunit YedY 1.60437203844 0.5 -1.10437203844 +UniRef50_UPI0002B44272 PREDICTED 0.274377824014 0.5 0.225622175986 +UniRef50_I2FJ48 Type II R M system DNA modification enzyme 0.039181246649 0.5 0.460818753351 +UniRef50_UPI00021A4B49 PREDICTED 0.660441431005 0.5 -0.160441431005 +UniRef50_Z5X4K7 Peptide chain release factor 3 0.236320888071 0.5 0.263679111929 +UniRef50_X5EDT3 Transcriptional regulator 0.322201302087 0.5 0.177798697913 +UniRef50_C7C6J2 9.78926825296 0.500000000006 -9.28926825297 +UniRef50_R7Y8S1 Phenol hydroxylase 0.742532198626 0.5 -0.242532198626 +UniRef50_A6LPT1 Protein translocase subunit SecY 0.0219439436841 0.5 0.478056056316 +UniRef50_C5YXP4 0.324959938235 0.5 0.175040061765 +UniRef50_W8G3Q0 RNA helicase 0.36102346922 0.5 0.13897653078 +UniRef50_UPI0004743A90 hypothetical protein, partial 0.0740858955448 0.5 0.425914104455 +UniRef50_A7WY72 1.17153716012 0.5 -0.671537160119 +UniRef50_UPI0004710467 membrane protein 0.341505527113 0.5 0.158494472887 +UniRef50_Q3J0K0 PAS PAC sensor hybrid histidine kinase 0.318095468583 0.5 0.181904531417 +UniRef50_Q0C161 Methionine tRNA ligase 1.78617680305 0.5 -1.28617680305 +UniRef50_S4YUV8 ABC transporter 0.0119510546392 0.5 0.488048945361 +UniRef50_Q9RYR2 Extracellular solute binding protein, family 5 0.00236356390139 0.5 0.497636436099 +UniRef50_Q57I24 Small heat shock protein IbpA 1.15908320541 0.5 -0.659083205407 +UniRef50_A6M276 0.0861787615937 0.5 0.413821238406 +UniRef50_D3QC45 D 3 phosphoglycerate dehydrogenase 0.605944041578 0.5 -0.105944041578 +UniRef50_D3E414 Thioredoxin disulfide reductase TrxB 1.35658176229 0.500000000001 -0.856581762296 +UniRef50_G2DRR8 0.624439593583 0.5 -0.124439593583 +UniRef50_UPI000382579F hypothetical protein 0.108766465535 0.500000000001 0.391233534464 +UniRef50_W4ANY2 Diadenosine tetraphosphatase 0.407844292708 0.5 0.0921557072919 +UniRef50_UPI000441FCBD PREDICTED 0.309367445522 0.5 0.190632554478 +UniRef50_I6STV8 0.136767727786 0.5 0.363232272214 +UniRef50_UPI0003167C65 hypothetical protein 0.0865547866005 0.5 0.4134452134 +UniRef50_UPI0002D70FB9 hypothetical protein 0.315681898682 0.5 0.184318101318 +UniRef50_Q9FNM5 Translation factor GUF1 homolog, chloroplastic 0.0214673465577 0.5 0.478532653443 +UniRef50_Q17ZB6 30S ribosomal protein S11 0.161502850985 0.5 0.338497149015 +UniRef50_W5X7S1 FHA domain containing protein 0.00164631776352 0.5 0.498353682237 +UniRef50_Q06584 Pyocin S2 2.57484582562 0.500000000001 -2.07484582562 +UniRef50_P59339 Transcriptional regulatory protein DcuR 4.29265236735 0.500000000002 -3.79265236735 +UniRef50_M1N6P4 0.479800382008 0.5 0.0201996179917 +UniRef50_R1FSG8 0.716440748138 0.5 -0.216440748138 +UniRef50_UPI0002DB7074 hypothetical protein 1.21131861179 0.5 -0.711318611792 +UniRef50_Q5HF39 Acetoin utilization protein AcuC 3.47158333674 0.5 -2.97158333674 +UniRef50_E1VHW6 2.03011720137 0.5 -1.53011720137 +UniRef50_UPI0002555FE2 cobalamin adenolsyltransferase cobinamide ATP dependent adenolsyltransferase 0.0190787919995 0.5 0.480921208001 +UniRef50_A6M1L4 Putative cell wall binding repeat containing protein 0.431275494604 0.5 0.0687245053957 +UniRef50_UPI0003304489 50S ribosomal protein L21 1.99935033481 0.5 -1.49935033481 +UniRef50_UPI000470B9A7 hypothetical protein 0.616887232228 0.5 -0.116887232228 +UniRef50_Q5HHC0 Inactive signal peptidase IA 3.14557454503 0.499999999995 -2.64557454503 +UniRef50_UPI000225E6BE two component transcriptional regulator, winged helix family protein 1.64006743788 0.5 -1.14006743788 +UniRef50_UPI0002000266 preprotein translocase subunit SecF 0.228542251564 0.5 0.271457748436 +UniRef50_UPI00037E0BE4 hypothetical protein, partial 0.0421842153269 0.499999999999 0.457815784674 +UniRef50_P69789 Phosphotransferase enzyme IIB component GlvB 2.23018757429 0.5 -1.73018757429 +UniRef50_UPI0002236A65 PREDICTED 0.2460893759 0.5 0.2539106241 +UniRef50_W5X9J0 3 methyl 2 oxobutanoate hydroxymethyltransferase 0.278250267873 0.5 0.221749732127 +UniRef50_C4WZ51 Sugar ABC transport system permease component 1.60486216256 0.5 -1.10486216256 +UniRef50_G7M6K7 Phosphoglycerate mutase 0.0152812326095 0.5 0.484718767391 +UniRef50_U5MSL5 NADPH dependent FMN reductase 0.53549823174 0.5 -0.0354982317395 +UniRef50_E1VM94 0.358132814849 0.5 0.141867185151 +UniRef50_M9VFH2 ABC transporter associated permease 0.0196382894108 0.5 0.480361710589 +UniRef50_UPI000350CE44 PREDICTED 0.218785925626 0.5 0.281214074374 +UniRef50_UPI00037A0BCD hypothetical protein 0.857698598545 0.5 -0.357698598545 +UniRef50_UPI000366EF31 hypothetical protein 0.0193486186794 0.5 0.480651381321 +UniRef50_UPI00035CAB47 phosphoribosylglycinamide synthetase 1.96336946992 0.499999999999 -1.46336946992 +UniRef50_Q8A9V4 ATP synthase subunit beta 1.23955826701 0.5 -0.739558267006 +UniRef50_Q8DNY1 1 acyl sn glycerol 3 phosphate acyltransferase 0.95630405616 0.5 -0.45630405616 +UniRef50_Q8KG38 Glutamine fructose 6 phosphate aminotransferase [isomerizing] 0.273789661493 0.5 0.226210338507 +UniRef50_L0GWW9 2.26792214834 0.499999999999 -1.76792214834 +UniRef50_X1R6D7 Marine sediment metagenome DNA, contig 0.241114034748 0.5 0.258885965252 +UniRef50_UPI000288AE11 1 phosphofructokinase 0.451439631007 0.5 0.0485603689933 +UniRef50_B9DKC4 Haloacid dehalogenase like hydrolase family protein 1.6188287803 0.500000000003 -1.1188287803 +UniRef50_E2XJ48 1 acyl sn glycerol 3 phosphate acyltransferase 1.3651396585 0.5 -0.865139658503 +UniRef50_Q92Q22 Serine tRNA ligase 0.314568839167 0.5 0.185431160833 +UniRef50_M4VHL0 Glyoxalase family protein 0.222483161731 0.5 0.27751683827 +UniRef50_UPI0001744949 GNAT family acetyltransferase 0.161188607954 0.5 0.338811392046 +UniRef50_UPI000329B94F 0.855503787143 0.5 -0.355503787143 +UniRef50_UPI00037660D4 hypothetical protein 2.76441652462 0.5 -2.26441652462 +UniRef50_Q3AT37 Adenine phosphoribosyltransferase 0.00817702867434 0.5 0.491822971326 +UniRef50_K7S318 Proline dehydrogenase aldehyde dehydrogenase family protein 0.0187665088739 0.5 0.481233491126 +UniRef50_Q6ZTJ3 cDNA FLJ44595 fis, clone BLADE2004849 0.588266324244 0.5 -0.0882663242443 +UniRef50_A0A011PEW7 NAD specific glutamate dehydrogenase 0.790186340942 0.5 -0.290186340942 +UniRef50_A4WR24 IS66 Orf2 family protein 0.30226952865 0.5 0.19773047135 +UniRef50_Q1MR60 Glutamate tRNA ligase 0.913603465923 0.5 -0.413603465923 +UniRef50_UPI000372FBE5 hypothetical protein 0.0910578655656 0.5 0.408942134435 +UniRef50_R7PTD3 Chlamydial polymorphic outer membrane protein repeat containing domain protein 0.698264485889 0.5 -0.198264485889 +UniRef50_A6M0N3 Iron containing alcohol dehydrogenase 0.118913254155 0.5 0.381086745845 +UniRef50_E4BLL0 0.997419295769 0.5 -0.497419295769 +UniRef50_Q034H8 Ribose 5 phosphate isomerase A 1.76372155886 0.5 -1.26372155886 +UniRef50_P53607 L threonine dehydratase biosynthetic IlvA 0.0790114439491 0.5 0.420988556051 +UniRef50_A6LPD2 0.294146882311 0.5 0.205853117689 +UniRef50_G8AVE8 0.66896234686 0.5 -0.16896234686 +UniRef50_Q75V35 0.808714133146 0.5 -0.308714133146 +UniRef50_I6XYY5 Periplasmic binding protein 0.180502450225 0.5 0.319497549775 +UniRef50_UPI00026286B5 ABC type sugar transport system, ATPase component 0.179995246138 0.5 0.320004753862 +UniRef50_Q9AGG3 Rubrerythrin 0.00818822373362 0.5 0.491811776267 +UniRef50_T1YAJ7 Conserved membrane protein 1.62607682258 0.499999999999 -1.12607682257 +UniRef50_K0L607 Indigoidine systhesis protein 1.37857910676 0.5 -0.878579106756 +UniRef50_Q9RVK7 ATP dependent zinc metalloprotease FtsH 0.00193476275114 0.5 0.498065237249 +UniRef50_A3PHB5 Secretion protein HlyD family protein 1.93253904943 0.499999999999 -1.43253904943 +UniRef50_I1F0I8 0.0222127913907 0.5 0.477787208609 +UniRef50_B1M6B8 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB 0.216186192299 0.5 0.283813807701 +UniRef50_T0W257 0.0306228618955 0.5 0.469377138104 +UniRef50_P02921 Melibiose carrier protein 1.15720752201 0.5 -0.657207522015 +UniRef50_Q2CBB5 0.721187166371 0.5 -0.221187166371 +UniRef50_A3M2F1 IcmB protein 0.00156112129212 0.500000000001 0.498438878707 +UniRef50_Q0FPA9 1.0143304407 0.5 -0.5143304407 +UniRef50_U5UJV7 Aminopeptidase PepS 1.47459077084 0.5 -0.974590770842 +UniRef50_Q4L629 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 5.72179329361 0.5 -5.22179329361 +UniRef50_F3U1Z6 0.713699287915 0.5 -0.213699287915 +UniRef50_R0NVZ1 0.0479752312593 0.5 0.45202476874 +UniRef50_UPI00036593BA hypothetical protein 0.177914949056 0.5 0.322085050944 +UniRef50_W7VW27 0.0727421602004 0.5 0.4272578398 +UniRef50_F7ZK72 1.22023621949 0.5 -0.720236219493 +UniRef50_B3PB28 Membrane protein, PerM family 0.423481091662 0.5 0.0765189083381 +UniRef50_A4WNY6 ATP synthase subunit a 1.98134771094 0.499999999999 -1.48134771094 +UniRef50_UPI000376746B hypothetical protein 0.0914873650657 0.5 0.408512634935 +UniRef50_UPI00047040E8 hypothetical protein 0.0670134795841 0.5 0.432986520416 +UniRef50_UPI0001850BCC bis tetraphosphatase PrpE 0.015016606321 0.5 0.484983393679 +UniRef50_A1U0M3 Transposase, IS4 family 0.282505593876 0.5 0.217494406124 +UniRef50_UPI00047D0A7B DNA methyltransferase 0.410267889451 0.5 0.0897321105487 +UniRef50_Q9RSK3 Branched chain amino acid ABC transporter, permease protein 0.0090677592217 0.5 0.490932240778 +UniRef50_Q1AVI4 NADH quinone oxidoreductase subunit B 0.0297573531557 0.5 0.470242646844 +UniRef50_Q2YUT9 2.74826241131 0.5 -2.24826241131 +UniRef50_A8FEL7 Glycerol 3 phosphate dehydrogenase [NAD+] 0.0181303874829 0.5 0.481869612517 +UniRef50_Q9RS18 0.0119898302922 0.5 0.488010169708 +UniRef50_J9YPZ0 0.397490337165 0.5 0.102509662835 +UniRef50_B9DZV8 0.208125970565 0.5 0.291874029435 +UniRef50_Q9RS17 0.0030218152653 0.5 0.496978184735 +UniRef50_H8GVZ3 PPC, peptidase containing PKD repeats 0.00353517003956 0.499999999999 0.496464829961 +UniRef50_B1WUS6 Glutathione S transferase 0.0192347113907 0.5 0.480765288609 +UniRef50_Q9NZB8 Molybdenum cofactor biosynthesis protein 1 0.127061147449 0.5 0.372938852551 +UniRef50_U5MS35 0.317468690611 0.5 0.182531309389 +UniRef50_Q9KCM5 Diaminopimelate decarboxylase 0.0129461615683 0.5 0.487053838432 +UniRef50_Q9RX22 Formamidopyrimidine DNA glycosylase 0.012725679295 0.5 0.487274320705 +UniRef50_Q9L7R4 Putative sulfoquinovose importer 1.38941156138 0.500000000001 -0.889411561384 +UniRef50_E5G5K3 Putative conjugative transfer protein 0.43792591238 0.5 0.0620740876198 +UniRef50_Q1QCP2 tRNA 2 thiocytidine biosynthesis protein TtcA 0.0640430504588 0.5 0.435956949541 +UniRef50_Q4L842 Staphylococcus haemolyticus JCSC1435 DNA, complete genome 3.74295625687 0.5 -3.24295625687 +UniRef50_F9HIH2 Conserved domain protein 4.59769047935 0.500000000001 -4.09769047935 +UniRef50_A0A011QZ11 0.00345454329612 0.5 0.496545456704 +UniRef50_E2SFH7 0.13427814237 0.5 0.36572185763 +UniRef50_A6UYI4 6 aminohexanoate dimer hydrolase 0.240158120103 0.5 0.259841879897 +UniRef50_P67082 UPF0001 protein YggS 4.22302610885 0.500000000004 -3.72302610885 +UniRef50_P37745 dTDP 4 dehydrorhamnose 3,5 epimerase 0.144740750426 0.5 0.355259249574 +UniRef50_B9KLT3 1.52099568889 0.5 -1.02099568889 +UniRef50_P26973 DNA topoisomerase 4 subunit A 0.54642781131 0.5 -0.0464278113097 +UniRef50_UPI0003FC94D0 cysteinyl tRNA synthetase 0.192650253128 0.5 0.307349746872 +UniRef50_UPI000470A448 hypothetical protein 0.0184405977696 0.5 0.48155940223 +UniRef50_L5S037 ACT domain protein 0.0392366991103 0.5 0.46076330089 +UniRef50_UPI0003013AD2 hypothetical protein 0.25759390923 0.5 0.24240609077 +UniRef50_A6LV61 Histidine kinase 0.0618382325184 0.499999999999 0.438161767482 +UniRef50_UPI0002E3E4A1 hypothetical protein 2.73092666424 0.5 -2.23092666424 +UniRef50_Q28VZ9 Shikimate dehydrogenase 0.581838608839 0.5 -0.0818386088391 +UniRef50_G7M2K6 Phosphoesterase, HXTX 0.104953368682 0.5 0.395046631318 +UniRef50_D3UYE0 0.000679161017041 0.5 0.499320838983 +UniRef50_P0AB60 Lipopolysaccharide regulatory protein 1.81178788722 0.500000000001 -1.31178788723 +UniRef50_Q5HLQ3 Putative 3 methyladenine DNA glycosylase 1.96141686732 0.5 -1.46141686732 +UniRef50_B9MQ93 Ribosomal RNA small subunit methyltransferase H 1.16333570986 0.500000000001 -0.663335709859 +UniRef50_UPI0003667B7C hypothetical protein 0.243791826247 0.5 0.256208173753 +UniRef50_UPI00047095B2 hypothetical protein 2.30913683864 0.500000000001 -1.80913683864 +UniRef50_UPI0003189EE0 hypothetical protein 0.451151484377 0.5 0.0488485156231 +UniRef50_UPI00036C1384 hypothetical protein 0.300136805152 0.5 0.199863194848 +UniRef50_P47734 S glutathione dehydrogenase 6.9347374912e-05 0.5 0.499930652625 +UniRef50_Q1IZT5 Oligopeptidase A 0.00389735200205 0.5 0.496102647998 +UniRef50_P44742 0.274287573525 0.5 0.225712426475 +UniRef50_A0A023S121 Cation transporter 0.00994818621426 0.5 0.490051813786 +UniRef50_UPI000477260F sulfite oxidase 0.278040352324 0.5 0.221959647676 +UniRef50_UPI00047DFE8E phosphoribosylaminoimidazole carboxylase 0.236502356422 0.5 0.263497643578 +UniRef50_Q99J99 3 mercaptopyruvate sulfurtransferase 1.5545713405 0.5 -1.0545713405 +UniRef50_R9SLZ6 SAM dependent methyltransferase 5.26366196886 0.500000000004 -4.76366196887 +UniRef50_UPI00035E4699 hypothetical protein 0.182368034329 0.5 0.317631965671 +UniRef50_C5ZSV0 Transcriptional regulator, LuxR family 0.0432428656248 0.5 0.456757134375 +UniRef50_E9G921 0.00707873256185 0.5 0.492921267438 +UniRef50_V6Q9S0 1.50289816868 0.5 -1.00289816868 +UniRef50_G6DMD6 4.61568706869 0.499999999997 -4.11568706869 +UniRef50_UPI00046C8B78 hypothetical protein 0.0650167964241 0.5 0.434983203576 +UniRef50_UPI000476D6FD hypothetical protein 0.516412598419 0.5 -0.0164125984186 +UniRef50_UPI00035D082A hypothetical protein 0.0971124109279 0.5 0.402887589072 +UniRef50_I3X451 1.12473723181 0.5 -0.624737231809 +UniRef50_C8VYT7 dTDP 4 dehydrorhamnose reductase 0.787657548614 0.5 -0.287657548614 +UniRef50_K2J0W9 Cupin 1.04190673212 0.5 -0.54190673212 +UniRef50_UPI00034BFA99 hypothetical protein 0.386470773862 0.5 0.113529226138 +UniRef50_UPI000350BCA6 PREDICTED 0.00133789951893 0.5 0.498662100481 +UniRef50_UPI00046D05B1 hypothetical protein 0.437592038092 0.5 0.0624079619075 +UniRef50_F3RDV1 Amino acid ABC transporter permease 0.0751637184203 0.5 0.42483628158 +UniRef50_UPI00037F5AC8 hypothetical protein 0.523349236146 0.5 -0.0233492361458 +UniRef50_P45073 Lipopolysaccharide export system ATP binding protein LptB 1.08439930471 0.5 -0.584399304706 +UniRef50_B9KSN1 11.251640139 0.500000000001 -10.751640139 +UniRef50_UPI000023CA35 hypothetical protein FG01684.1 0.191170993205 0.5 0.308829006795 +UniRef50_UPI0003ACFD99 hypothetical protein 1.45194143792 0.5 -0.951941437919 +UniRef50_P38036 CRISPR associated endonuclease helicase Cas3 1.35052775469 0.500000000001 -0.850527754688 +UniRef50_V5SXK1 Histidine kinase 0.46568661629 0.5 0.0343133837103 +UniRef50_C1EGE2 Predicted protein 1.97349039244 0.500000000001 -1.47349039244 +UniRef50_C6STX0 1.23039103327 0.499999999999 -0.730391033266 +UniRef50_UPI0003615DBA hypothetical protein 0.542496015702 0.5 -0.0424960157021 +UniRef50_D3QHK9 Glycerate kinase 2.0402366242 0.5 -1.5402366242 +UniRef50_UPI0003B42182 DeoR family transcriptional regulator 0.457266990453 0.5 0.0427330095471 +UniRef50_I6U493 5.48161967543 0.5 -4.98161967543 +UniRef50_K2KBP7 0.278367177932 0.5 0.221632822068 +UniRef50_UPI00047AB8B0 high frequency lysogenization protein HflD 0.446485431992 0.5 0.053514568008 +UniRef50_S5Y296 Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB 2.06569367967 0.5 -1.56569367967 +UniRef50_P0ADU0 0.51328170275 0.5 -0.0132817027501 +UniRef50_A0K2M1 Chromosome segregation ATPase 0.019864944545 0.5 0.480135055455 +UniRef50_B7VQP3 NH dependent NAD(+) synthetase 0.383240248302 0.5 0.116759751698 +UniRef50_K9P9J8 LysM repeat containing protein 0.674200037295 0.5 -0.174200037295 +UniRef50_C4Z3J5 Aspartyl glutamyl tRNA amidotransferase subunit B 1.79935035893 0.500000000002 -1.29935035893 +UniRef50_Q8R5T0 Glucosamine 6 phosphate deaminase 0.192512771511 0.500000000001 0.307487228488 +UniRef50_M3E127 Cation transport ATPase 3.31670258446 0.5 -2.81670258446 +UniRef50_K0SY54 0.597506289502 0.5 -0.0975062895017 +UniRef50_X5EXI6 2.03572548635 0.5 -1.53572548635 +UniRef50_UPI0004643DB1 hypothetical protein 1.46279875025 0.5 -0.962798750245 +UniRef50_Q6D8D5 Outer membrane protein assembly factor BamA 0.79135123856 0.5 -0.29135123856 +UniRef50_Q4L4Z3 3 oxoacyl [acyl carrier protein] synthase 3 3.99404151827 0.499999999999 -3.49404151827 +UniRef50_Q6FD06 0.00930355321166 0.5 0.490696446788 +UniRef50_Q5HRT0 Acetyltransferase, GNAT family 4.61200654641 0.500000000001 -4.11200654641 +UniRef50_F4EG72 ABC type polar amino acid transport system, ATPase component 0.919522393523 0.5 -0.419522393523 +UniRef50_UPI0002559D42 non specific serine threonine protein kinase 0.00397123960968 0.5 0.49602876039 +UniRef50_Q1IZL1 Glutamyl Q tRNA synthetase 0.00872841123136 0.5 0.491271588769 +UniRef50_UPI000470F3D8 hypothetical protein 0.175071272683 0.5 0.324928727317 +UniRef50_D5ANE3 2.39061134449 0.500000000001 -1.89061134449 +UniRef50_P0A9J7 Ribokinase 3.25450589499 0.499999999997 -2.75450589498 +UniRef50_M1LZF7 Transcriptional antiterminator 0.321528279448 0.5 0.178471720552 +UniRef50_E0XU72 0.597174125608 0.5 -0.0971741256078 +UniRef50_P37443 1.69119686319 0.5 -1.19119686319 +UniRef50_UPI00036CABD5 hypothetical protein 0.651371800999 0.5 -0.151371800999 +UniRef50_B0V9N7 0.0100681581802 0.5 0.48993184182 +UniRef50_Q2GAK4 1.51285069912 0.5 -1.01285069912 +UniRef50_P55891 Motility protein A 0.832493073869 0.5 -0.332493073869 +UniRef50_G8P8U5 Transporter 1.02926340374 0.5 -0.529263403742 +UniRef50_G8LNB8 0.632418503763 0.5 -0.132418503763 +UniRef50_K0I6Y3 Tricarballylate dehydrogenase 0.0601309916348 0.5 0.439869008365 +UniRef50_B9MFW6 5 nucleotidase SurE 0.0803307826311 0.5 0.419669217369 +UniRef50_Q97JJ9 Germination protease 0.353580149434 0.5 0.146419850566 +UniRef50_UPI0004710C19 hypothetical protein 1.33862990565 0.5 -0.838629905648 +UniRef50_U0EEM2 0.134392131336 0.5 0.365607868664 +UniRef50_B9KX11 ABC branched chain amino acid transporter, inner membrane subunit 2.48575321216 0.500000000002 -1.98575321216 +UniRef50_Q8DUL1 0.35205220325 0.5 0.14794779675 +UniRef50_A5UK96 1.20026264793 0.5 -0.70026264793 +UniRef50_D8IV87 1,4 alpha glucan branching enzyme GlgB 0.729841449418 0.5 -0.229841449418 +UniRef50_D7BEZ9 ATP dependent DNA helicase RecG 0.000810124287847 0.5 0.499189875712 +UniRef50_UPI00047DE858 ABC transporter ATPase 0.612233845101 0.5 -0.112233845101 +UniRef50_D4DLY8 Primosomal protein N 0.00590695636171 0.5 0.494093043639 +UniRef50_UPI00047D2C54 DNA 3 methyladenine glycosylase 0.74205039158 0.5 -0.24205039158 +UniRef50_B2ACV0 Putative glutathione dependent formaldehyde activating enzyme 2.56010651432 0.5 -2.06010651432 +UniRef50_UPI00040EADB4 hypothetical protein 1.9878034158 0.5 -1.4878034158 +UniRef50_X4ZHJ1 Methionine import ATP binding protein MetN 0.053154989632 0.5 0.446845010368 +UniRef50_J7QS02 1.04774232246 0.5 -0.547742322464 +UniRef50_UPI0003C0FD3F 2.44042365794 0.5 -1.94042365794 +UniRef50_UPI00037837C4 hypothetical protein, partial 0.811269091501 0.5 -0.311269091501 +UniRef50_UPI00035A0C3F PREDICTED 0.217774172019 0.5 0.282225827981 +UniRef50_B9KLU7 GCN5 related N acetyltransferase 7.00446408421 0.499999999999 -6.50446408421 +UniRef50_UPI00037510F3 hypothetical protein, partial 0.250798720858 0.5 0.249201279142 +UniRef50_Q5NYZ2 Nitrate proton symporter 0.278448690672 0.5 0.221551309328 +UniRef50_S3BZ34 0.109195982374 0.5 0.390804017626 +UniRef50_S5XXA3 6.27479559324 0.500000000001 -5.77479559324 +UniRef50_M1N724 0.270512001144 0.5 0.229487998856 +UniRef50_A0A022G4G2 LysR family transcriptional regulator 0.687448671209 0.5 -0.187448671209 +UniRef50_UPI00026C800D sodium 0.375694192475 0.5 0.124305807525 +UniRef50_V7EQ63 Ribonuclease E 4.12397399322 0.499999999998 -3.62397399322 +UniRef50_UPI0003C45913 PREDICTED 0.254195080762 0.5 0.245804919238 +UniRef50_A3PS91 2.12530876818 0.5 -1.62530876818 +UniRef50_P22447 DNA gyrase subunit B 0.20645807742 0.5 0.29354192258 +UniRef50_Q97K30 Probable M18 family aminopeptidase 1 0.13321522453 0.5 0.36678477547 +UniRef50_B9MJR9 ATP phosphoribosyltransferase 0.154235525904 0.5 0.345764474096 +UniRef50_Q9JTQ0 Tryptophan tRNA ligase 0.0116454905766 0.5 0.488354509423 +UniRef50_E3GYA2 Phosphate uptake regulator, PhoU 1.29062145449 0.5 -0.79062145449 +UniRef50_R7PS35 0.426080410414 0.5 0.0739195895855 +UniRef50_UPI0003610FEF hypothetical protein 3.22229373379 0.5 -2.72229373379 +UniRef50_I9KTK5 Oligoendopeptidase F 2.34685515681 0.5 -1.84685515681 +UniRef50_A6LWM9 Collagen triple helix repeat 0.164267006616 0.5 0.335732993384 +UniRef50_Q37383 NADH ubiquinone oxidoreductase subunit 9 0.31129486564 0.5 0.18870513436 +UniRef50_A5UQY7 1.07012149239 0.5 -0.57012149239 +UniRef50_A1B5M1 5 nucleotidase SurE 0.222686657009 0.5 0.277313342991 +UniRef50_Q1R6G9 1.29552353603 0.5 -0.795523536025 +UniRef50_P48596 GTP cyclohydrolase 1 0.319367448686 0.5 0.180632551314 +UniRef50_UPI000464508F spermidine putrescine ABC transporter ATP binding protein 0.255035746245 0.5 0.244964253755 +UniRef50_UPI00047B2829 hypothetical protein 0.748026934391 0.5 -0.248026934391 +UniRef50_A1B894 Protein HflC 1.13459272749 0.5 -0.634592727492 +UniRef50_P59199 DNA polymerase I 0.691486868355 0.5 -0.191486868355 +UniRef50_Q3JTX2 0.243198098422 0.5 0.256801901578 +UniRef50_A8LJI8 Purine nucleoside phosphorylase DeoD type 0.046008684711 0.5 0.453991315289 +UniRef50_P52028 DNA polymerase I, thermostable 0.0107854575386 0.5 0.489214542461 +UniRef50_UPI000262577A single stranded DNA binding protein 0.00604195422806 0.5 0.493958045772 +UniRef50_E4GKY2 Membrane alanyl aminopeptidase 0.00916989223237 0.5 0.490830107768 +UniRef50_Q6A780 Error prone DNA polymerase 0.0218101427069 0.5 0.478189857293 +UniRef50_D7CX24 Peptidase M20 0.00117134293088 0.5 0.498828657069 +UniRef50_UPI0003694929 hypothetical protein 0.999409841424 0.5 -0.499409841424 +UniRef50_UPI000255571F ABC transporter 9.49355954542 0.499999999993 -8.99355954541 +UniRef50_A0A023VS51 0.374451001928 0.5 0.125548998072 +UniRef50_UPI000255A6AD transcriptional regulator 0.992940579566 0.5 -0.492940579566 +UniRef50_L0LNE1 SecY stabilizing membrane protein 1.65832865338 0.499999999998 -1.15832865338 +UniRef50_W1S564 Cupin 1.3342684543 0.5 -0.834268454295 +UniRef50_C7MNW3 Acyl CoA synthetase AMP acid ligase II 0.330535248691 0.5 0.169464751309 +UniRef50_Q9KA05 Ribonuclease 3 1.06824533998 0.5 -0.568245339977 +UniRef50_X1WZZ9 5.15698169803 0.500000000002 -4.65698169803 +UniRef50_UPI00014D324F ABC transporter permease 1.01262984779 0.5 -0.512629847789 +UniRef50_E8P8N2 Major facilitator superfamily permease 0.0126036371837 0.5 0.487396362816 +UniRef50_UPI0002E55EAF hypothetical protein 0.0457102781875 0.5 0.454289721813 +UniRef50_A4FQ90 Xaa Pro dipeptidase 0.244906924055 0.5 0.255093075945 +UniRef50_U7G8B2 Toxin PIN 0.0968268194266 0.5 0.403173180573 +UniRef50_B2K316 tRNA methyltransferase 2 3.35963934148 0.499999999999 -2.85963934147 +UniRef50_M1MIQ5 0.373231506196 0.5 0.126768493804 +UniRef50_F0YS51 Expressed protein 0.322127898528 0.5 0.177872101472 +UniRef50_D9RDU7 Glyoxalase bleomycin resistance protein dioxygenase superfamily protein 2.36183707086 0.499999999999 -1.86183707086 +UniRef50_Q3ILQ9 Siroheme synthase 0.593853845602 0.5 -0.0938538456018 +UniRef50_D3F1T9 1.47404410464 0.5 -0.97404410464 +UniRef50_Q28KF1 Acyl CoA dehydrogenase like protein 7.73888529671 0.500000000007 -7.23888529671 +UniRef50_D5RUB7 0.00955248357423 0.5 0.490447516426 +UniRef50_Q9K1R6 Glutamate tRNA ligase 0.0110465840805 0.5 0.488953415919 +UniRef50_R6YL47 0.0384799276127 0.5 0.461520072387 +UniRef50_Q8NYY1 1.27695497727 0.499999999999 -0.776954977266 +UniRef50_Q88PE3 RND efflux membrane fusion protein related protein 1.00781732478 0.5 -0.50781732478 +UniRef50_B5EZ88 LPS assembly lipoprotein LptE 0.365693599803 0.5 0.134306400197 +UniRef50_UPI0004634C4E hypothetical protein 1.25942732963 0.500000000001 -0.759427329628 +UniRef50_UPI0003827005 50S ribosomal protein L11 0.0339528973185 0.5 0.466047102681 +UniRef50_A1ADH3 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC 2.29697669169 0.499999999999 -1.79697669169 +UniRef50_V2D6G8 Putative cation 0.146917117404 0.5 0.353082882596 +UniRef50_UPI00047D8F91 PTS cellobiose transporter subunit IIC 0.63534157668 0.5 -0.13534157668 +UniRef50_D6A8A0 0.254829436769 0.5 0.245170563231 +UniRef50_D5AL25 Membrane protein, putative 0.0751964263261 0.5 0.424803573674 +UniRef50_A0KMY1 Dipeptide and tripeptide permease B 1.61342016196 0.5 -1.11342016196 +UniRef50_UPI000476AB7B membrane protein 0.97266044319 0.5 -0.47266044319 +UniRef50_A6QE85 Staphylococcal enterotoxin like toxin 4.90300989243 0.499999999999 -4.40300989242 +UniRef50_D4HAK8 Protoporphyrinogen oxidase 0.0143707179304 0.5 0.48562928207 +UniRef50_Q8F0X6 Hydroxyethylthiazole kinase 0.338645669765 0.5 0.161354330235 +UniRef50_UPI0001B434CE glyoxalase I 0.550410580435 0.5 -0.0504105804351 +UniRef50_Q9RTU9 0.0109139645234 0.5 0.489086035477 +UniRef50_Q9RTU8 0.00337879940708 0.5 0.496621200593 +UniRef50_M1MCZ5 0.878378915272 0.5 -0.378378915272 +UniRef50_S1H4E1 Outer membrane autotransporter barrel domain containing protein 0.445796553625 0.5 0.0542034463754 +UniRef50_UPI00035CEBAE hypothetical protein 0.300058352381 0.5 0.199941647619 +UniRef50_Q4L869 PTS system lactose specific EIICB component 2.02893873715 0.499999999999 -1.52893873715 +UniRef50_D9V5U8 Predicted protein 0.569503081685 0.5 -0.0695030816846 +UniRef50_UPI0002892C39 acetoacetyl CoA synthetase 1.7517385793 0.5 -1.2517385793 +UniRef50_R9I899 0.315326176576 0.5 0.184673823424 +UniRef50_UPI00023751B8 6 pyruvoyl tetrahydropterin synthase 0.397976990977 0.5 0.102023009023 +UniRef50_S5Y0M6 Transcriptional regulator, TetR family 0.142258018234 0.5 0.357741981766 +UniRef50_A9AST0 Isopentenyl diphosphate Delta isomerase 2.09887680801 0.5 -1.59887680801 +UniRef50_Q04D22 Cys tRNA Cys tRNA(Cys) deacylase 0.137483800094 0.5 0.362516199906 +UniRef50_J9P557 2.01204347685 0.5 -1.51204347685 +UniRef50_C5BV15 Mandelate racemase muconate lactonizing protein 1.89876116672 0.5 -1.39876116672 +UniRef50_J3L617 0.27910185141 0.5 0.22089814859 +UniRef50_D6SCW3 0.475555007691 0.5 0.0244449923087 +UniRef50_I7EWS3 2.72787376614 0.500000000001 -2.22787376614 +UniRef50_Q8FH89 Pyridoxamine kinase 1.23245522688 0.5 -0.732455226884 +UniRef50_UPI00037451EF hypothetical protein 0.54902240105 0.5 -0.0490224010503 +UniRef50_Q9RRP9 0.00345247847226 0.5 0.496547521528 +UniRef50_UPI0003767955 hypothetical protein, partial 0.238578234535 0.5 0.261421765465 +UniRef50_P44594 Queuine tRNA ribosyltransferase 0.622096885078 0.5 -0.122096885078 +UniRef50_A9MN50 0.84131039257 0.5 -0.34131039257 +UniRef50_UPI00036CE8A3 hypothetical protein 0.00281566961502 0.5 0.497184330385 +UniRef50_Q0VKZ2 Rubredoxin 2 3.03175372193 0.500000000002 -2.53175372193 +UniRef50_A6LZX0 Methyl accepting chemotaxis sensory transducer 0.554344120545 0.5 -0.0543441205448 +UniRef50_R9SHV3 NH dependent NAD(+) synthetase 2.7703019255 0.499999999998 -2.27030192549 +UniRef50_A6WJ89 PKHD type hydroxylase Shew185_0721 0.143212197833 0.5 0.356787802167 +UniRef50_D4HAH8 GDSL like protein 0.0606004827397 0.5 0.43939951726 +UniRef50_R5U1M5 Glycoside hydrolase family 3 domain containing protein 0.115970797517 0.5 0.384029202482 +UniRef50_A3PG26 12.8841422332 0.499999999996 -12.3841422332 +UniRef50_UPI0003B75FB1 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase 0.148841567121 0.5 0.351158432879 +UniRef50_UPI0004560989 hypothetical protein PFL1_01444 0.143004422475 0.500000000001 0.356995577524 +UniRef50_Q9S2L4 Probable proline iminopeptidase 1.82444295828 0.499999999999 -1.32444295828 +UniRef50_UPI00016C0749 hypothetical protein 0.227182706559 0.500000000001 0.272817293441 +UniRef50_I6ABZ2 Isrso9 transposase protein 3.15091753382 0.499999999999 -2.65091753382 +UniRef50_T1Y9Z4 0.67498435335 0.5 -0.17498435335 +UniRef50_R6MIG6 0.208348057919 0.5 0.291651942081 +UniRef50_UPI000348D44D hypothetical protein 0.793474000254 0.5 -0.293474000254 +UniRef50_UPI000370B19E hypothetical protein, partial 1.65467594997 0.5 -1.15467594997 +UniRef50_A3MML4 Ribonuclease PH 1.65406053496 0.5 -1.15406053496 +UniRef50_Q6GJN1 2.34630147084 0.5 -1.84630147084 +UniRef50_P62448 Imidazole glycerol phosphate synthase subunit HisH 1.19490790516 0.5 -0.694907905161 +UniRef50_J9P132 0.158208984135 0.5 0.341791015865 +UniRef50_Q8DS10 1.57442764003 0.5 -1.07442764003 +UniRef50_E4SGD8 Natural resistance associated macrophage protein 0.0739834408761 0.5 0.426016559124 +UniRef50_UPI000473AE7C hypothetical protein, partial 0.0654352292281 0.5 0.434564770772 +UniRef50_UPI000471B809 hypothetical protein 1.92316695828 0.499999999998 -1.42316695828 +UniRef50_B4RND3 Electron transfer flavoprotein ubiquinone oxidoreductase 0.00766458087279 0.5 0.492335419127 +UniRef50_A9KDE5 Phosphoenolpyruvate carboxykinase [ATP] 1.87946559979 0.5 -1.37946559979 +UniRef50_M9VP93 PTS system, sucrose specific IIBC component 0.00577240524339 0.5 0.494227594757 +UniRef50_B4TR32 Ethanolamine ammonia lyase light chain 0.266129546891 0.5 0.233870453109 +UniRef50_I1XWU0 Soluble lytic murein transglycosylase like protein 0.00535983111965 0.5 0.49464016888 +UniRef50_A5UMU4 Glycosyltransferase , GT1 family 2.1119469342 0.499999999999 -1.6119469342 +UniRef50_Q5F919 0.0278023356218 0.5 0.472197664378 +UniRef50_Q54VU7 Methionine aminopeptidase 1D, mitochondrial 1.62453744853 0.5 -1.12453744853 +UniRef50_G2I4C8 UTP glucose 1 phosphate uridylyltransferase 4.09420051384 0.500000000004 -3.59420051384 +UniRef50_L0WME5 N acetyl anhydromuranmyl L alanine amidase 0.15286820561 0.5 0.34713179439 +UniRef50_UPI0004689B76 ABC transporter ATP binding protein 1.81336607513 0.500000000001 -1.31336607513 +UniRef50_Q03I89 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG 1.15290225604 0.5 -0.652902256045 +UniRef50_G0DVW8 GntR family transcriptional regulator 0.0392593362532 0.5 0.460740663747 +UniRef50_Q2L004 Glycerol 3 phosphate acyltransferase 0.0012834233035 0.5 0.498716576697 +UniRef50_UPI00044124E5 PH domain like protein, partial 0.334548077728 0.5 0.165451922272 +UniRef50_F4DQW9 FAD dependent oxidoreductase 1.10026644659 0.5 -0.600266446593 +UniRef50_E6SMC9 AzlC family protein 1.10604642837 0.5 -0.606046428374 +UniRef50_Q9LC43 TagG homolog 4.2071805805 0.499999999999 -3.7071805805 +UniRef50_Q59695 Dihydrolipoyllysine residue acetyltransferase component of acetoin cleaving system 0.921092469529 0.5 -0.421092469529 +UniRef50_O83540 V type ATP synthase beta chain 2 0.0268269892736 0.5 0.473173010726 +UniRef50_Q04614 NADH ubiquinone oxidoreductase chain 4L 0.303093852389 0.5 0.196906147611 +UniRef50_E7ACI0 Na+ H+ Antiporter 0.0183288619085 0.5 0.481671138091 +UniRef50_P37642 Inner membrane protein YhjD 0.429215817318 0.5 0.0707841826823 +UniRef50_F2IUQ0 Integrase, catalytic region 0.954850184829 0.5 -0.454850184829 +UniRef50_UPI0003718EA8 5 keto 4 deoxyuronate isomerase 0.380059983166 0.5 0.119940016834 +UniRef50_UPI00047E791A saccharopine dehydrogenase 0.0577325862485 0.5 0.442267413752 +UniRef50_S5XU55 Arsenate reductase 0.657401902689 0.5 -0.157401902689 +UniRef50_F0P418 ABC transporter, substrate binding protein 1.88356564266 0.499999999999 -1.38356564266 +UniRef50_R4KAP5 Ribulose phosphate 3 epimerase 0.996543519143 0.5 -0.496543519143 +UniRef50_T2EFY2 Bacterial extracellular solute binding s, 3 family protein 0.0763293785178 0.5 0.423670621482 +UniRef50_UPI0001746A5A 2 dehydro 3 deoxyglucarate aldolase 0.301653187904 0.5 0.198346812096 +UniRef50_P9WQI2 Trehalose import ATP binding protein SugC 1.03754736316 0.5 -0.537547363163 +UniRef50_Q89XW5 Tyrosine recombinase XerD 0.622790464738 0.5 -0.122790464738 +UniRef50_UPI00044166F3 Metallo dependent phosphatase 2.66757791575 0.500000000001 -2.16757791575 +UniRef50_U5WTC2 Magnesium transporter 0.052243642805 0.5 0.447756357195 +UniRef50_A0A037Y901 Gluconate 0.005739544315 0.5 0.494260455685 +UniRef50_Q02430 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase 2.16465092426 0.499999999999 -1.66465092426 +UniRef50_UPI0003B555DD iron ABC transporter ATP binding protein 0.68132483545 0.5 -0.18132483545 +UniRef50_W8RSD6 LysR family transcriptional regulator 0.807363741725 0.5 -0.307363741725 +UniRef50_A6LS03 Glycoside hydrolase, family 46 0.0950796543756 0.5 0.404920345624 +UniRef50_P30844 Sensor protein BasS 1.50210292895 0.5 -1.00210292895 +UniRef50_A4WYB5 0.313219545271 0.5 0.186780454729 +UniRef50_A4WYB3 0.226314155101 0.5 0.273685844899 +UniRef50_V5LN28 0.874691303498 0.5 -0.374691303498 +UniRef50_M7D8T2 Glycosyltransferase 0.95101260506 0.5 -0.45101260506 +UniRef50_A3SEI8 Xanthine dehydrogenase accessory factor 0.334404421444 0.5 0.165595578556 +UniRef50_J3LXD1 1.4408397312 0.500000000002 -0.940839731201 +UniRef50_K2BFC0 5.41379760787 0.500000000001 -4.91379760787 +UniRef50_Q7D3Z9 Dihydrodipicolinate synthase 2.29432167712 0.5 -1.79432167712 +UniRef50_A7FAX6 0.0069720837709 0.499999999999 0.49302791623 +UniRef50_A7FAX1 0.0164416995604 0.5 0.483558300439 +UniRef50_A7FAX3 0.00987377782221 0.5 0.490126222178 +UniRef50_A4XW77 HAD superfamily hydrolase, subfamily IB 0.471764961018 0.5 0.028235038982 +UniRef50_E3D438 0.0969597853912 0.5 0.403040214609 +UniRef50_A7FAX8 0.0165206702083 0.500000000001 0.483479329791 +UniRef50_I0ENV0 Outer membrane protein HofB 0.029506506643 0.5 0.470493493357 +UniRef50_B1W4V9 NADH quinone oxidoreductase subunit B 2 0.0178227379516 0.5 0.482177262049 +UniRef50_Q8DTF8 1.9048716014 0.5 -1.4048716014 +UniRef50_Q8DTF4 1.37926496602 0.5 -0.87926496602 +UniRef50_UPI000360F750 hypothetical protein 2.70237463896 0.500000000002 -2.20237463897 +UniRef50_N1SEI4 EamA like transporter family protein 0.11372587425 0.5 0.38627412575 +UniRef50_B9KSS7 0.993980662177 0.5 -0.493980662177 +UniRef50_C0Z6P5 1 5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase 0.0928167232313 0.5 0.407183276769 +UniRef50_Q54UH8 D 3 phosphoglycerate dehydrogenase 0.458137258422 0.5 0.0418627415779 +UniRef50_P71349 L serine dehydratase 0.0258923636191 0.500000000001 0.47410763638 +UniRef50_V6KSS1 0.097239003245 0.5 0.402760996755 +UniRef50_D4GZ01 DNA gyrase subunit B 0.335306151213 0.5 0.164693848787 +UniRef50_D5HC82 DNA repair protein radA 1.35252628177 0.499999999999 -0.852526281768 +UniRef50_Q9RTR7 Glucose 1 phosphate adenylyltransferase 0.00447559388775 0.5 0.495524406112 +UniRef50_Q3IY01 Conserved hypoothetical protein 1.10311641262 0.5 -0.603116412616 +UniRef50_P19930 Hydrogenase 1 maturation protease 3.45588279153 0.499999999998 -2.95588279153 +UniRef50_B5GZL5 0.0359685601385 0.5 0.464031439861 +UniRef50_F0YEL0 31.4142431741 0.499999999995 -30.9142431741 +UniRef50_O30085 Copper exporting P type ATPase B 0.118417954277 0.500000000001 0.381582045722 +UniRef50_UPI0003A50805 translation initiation factor IF 3 0.0592694904996 0.5 0.4407305095 +UniRef50_UPI00019B35BE hypothetical protein 0.266423254779 0.5 0.233576745221 +UniRef50_P77455 Bifunctional protein PaaZ 0.0491241440655 0.5 0.450875855934 +UniRef50_UPI0003814B4D hypothetical protein 0.202029000445 0.5 0.297970999555 +UniRef50_A6LQ13 Peptidase U32 0.294949289181 0.5 0.205050710819 +UniRef50_S1MU41 0.298868377082 0.5 0.201131622918 +UniRef50_UPI00036AC04F hypothetical protein 9.68967852713 0.500000000002 -9.18967852713 +UniRef50_P57864 0.533991421936 0.5 -0.0339914219359 +UniRef50_UPI000361AD9C hypothetical protein 2.67897038156 0.500000000003 -2.17897038156 +UniRef50_UPI000469CEAC ribonucleotide diphosphate reductase subunit alpha, partial 0.000739074066667 0.5 0.499260925933 +UniRef50_Q3AMY6 Ribonuclease PH 0.351389257075 0.5 0.148610742925 +UniRef50_W7ZFA7 Serine threonine phosphatase 0.0744265291035 0.5 0.425573470897 +UniRef50_UPI00046D13E9 hypothetical protein 0.202034105913 0.5 0.297965894087 +UniRef50_Q9HTD7 Aspartate ammonia lyase 0.0828309785829 0.5 0.417169021417 +UniRef50_P9WLT0 0.0121680578344 0.5 0.487831942165 +UniRef50_M4QWY4 Acyl CoA dehydrogenase 0.00811110091871 0.5 0.491888899081 +UniRef50_Q8NXN8 MW0677 protein 3.29866393915 0.5 -2.79866393915 +UniRef50_P76613 12.2362402967 0.499999999993 -11.7362402967 +UniRef50_Q89WR0 Exodeoxyribonuclease III 2.39535446849 0.500000000005 -1.89535446849 +UniRef50_Q8DUL3 0.526966335967 0.5 -0.0269663359668 +UniRef50_A6LPZ2 Binding protein dependent transport systems inner membrane component 0.231578836086 0.5 0.268421163914 +UniRef50_Q9RYC4 Methyltransferase, putative 0.00675235949146 0.5 0.493247640508 +UniRef50_A9G3I5 Malate dehydrogenase (NADP(+)) 0.00107825576687 0.5 0.498921744233 +UniRef50_Q3JPF1 0.113360575944 0.5 0.386639424056 +UniRef50_UPI0001B4442A hypothetical protein 0.283563818297 0.5 0.216436181703 +UniRef50_A6TDP3 Isopentenyl diphosphate Delta isomerase 0.958680923424 0.5 -0.458680923424 +UniRef50_Q04K89 Phosphopantothenate cysteine ligase 1.31458016231 0.5 -0.814580162314 +UniRef50_UPI0004778BF4 nickel transporter permease NikB 0.2681366149 0.5 0.2318633851 +UniRef50_B0KRB8 Ribosomal RNA small subunit methyltransferase G 1.37376264601 0.5 -0.873762646005 +UniRef50_B1QWY3 0.16903314671 0.500000000001 0.330966853289 +UniRef50_P65631 Membrane protein insertase YidC 1 0.934186473255 0.5 -0.434186473255 +UniRef50_UPI0003B43DEF leucyl phenylalanyl tRNA protein transferase 0.150868831975 0.5 0.349131168025 +UniRef50_B2UZ33 Phosphodiesterase, family 0.389259897114 0.5 0.110740102886 +UniRef50_Q8XBY4 Sensor kinase CusS 0.992721029266 0.5 -0.492721029266 +UniRef50_E9AEM8 Proteophosphoglycan ppg4 0.241638326918 0.5 0.258361673082 +UniRef50_W8EKH5 Fatty acid CoA ligase 0.00746496894375 0.5 0.492535031056 +UniRef50_UPI00036DBE7B hypothetical protein 0.0112522871011 0.5 0.488747712899 +UniRef50_D8JKA9 Homoserine dehydrogenase 0.0382435720004 0.5 0.461756428 +UniRef50_UPI000367DF3F hypothetical protein 0.180714924681 0.5 0.319285075319 +UniRef50_UPI0003808AE5 hypothetical protein 0.176014539336 0.5 0.323985460664 +UniRef50_UPI0003B5E6AE peptidase M24 0.129256575594 0.499999999999 0.370743424406 +UniRef50_UPI0003B421A5 heme ABC transporter ATP binding protein 0.50161177798 0.5 -0.00161177797959 +UniRef50_UPI0003753359 hypothetical protein 2.34997515708 0.499999999999 -1.84997515708 +UniRef50_P0AB04 0.721765697833 0.5 -0.221765697833 +UniRef50_UPI0002A4C202 1.01990853107 0.5 -0.519908531066 +UniRef50_UPI00036E9616 alpha L fucosidase 0.163308706873 0.5 0.336691293127 +UniRef50_A0A017Y7E3 0.333579427591 0.5 0.166420572409 +UniRef50_Q97FA7 0.0699457283057 0.5 0.430054271694 +UniRef50_A6LTV0 Fibronectin, type III domain protein 0.119819776676 0.5 0.380180223324 +UniRef50_UPI000463D2BB oxidoreductase 0.162760117234 0.5 0.337239882766 +UniRef50_UPI000219711C branched chain amino acid transporter II carrier protein 0.629964896077 0.5 -0.129964896077 +UniRef50_K0S2S0 0.0286907088633 0.5 0.471309291137 +UniRef50_Q4L709 Porphobilinogen deaminase 3.17555622415 0.5 -2.67555622415 +UniRef50_P45174 Sodium proline symporter 0.064965857991 0.5 0.435034142009 +UniRef50_UPI0004294A5C hypothetical protein 0.0738225275962 0.5 0.426177472404 +UniRef50_UPI0004730D89 hypothetical protein 5.91511217888 0.500000000001 -5.41511217888 +UniRef50_K8Z2D7 0.280124450791 0.5 0.219875549209 +UniRef50_P67446 Xanthine permease XanQ 0.856234958746 0.5 -0.356234958746 +UniRef50_F3L0R4 UPF0246 protein YaaA 0.425153730163 0.5 0.0748462698373 +UniRef50_Q8XKT3 DegV domain containing protein CPE1310 0.255083455718 0.5 0.244916544282 +UniRef50_UPI0003B581A8 taurine pyruvate aminotransferase 1.43045123292 0.5 -0.93045123292 +UniRef50_UPI0004766D5E malyl CoA thiolesterase 1.1303067605 0.5 -0.630306760504 +UniRef50_E3D1E7 0.113031147596 0.5 0.386968852404 +UniRef50_UPI0004692352 peptide ABC transporter permease 0.110997771314 0.5 0.389002228685 +UniRef50_W3PE26 DnaK domain protein 0.743695319787 0.5 -0.243695319787 +UniRef50_UPI000371AEC6 hypothetical protein, partial 0.86139838912 0.5 -0.36139838912 +UniRef50_UPI000441DE45 PREDICTED 3.94407359294 0.500000000006 -3.44407359295 +UniRef50_M1MSX4 Phage infection protein Pip 0.188262750671 0.5 0.311737249329 +UniRef50_G7L1M9 50S ribosomal protein L22 0.133741736682 0.5 0.366258263319 +UniRef50_A8G2K7 0.0961340039535 0.5 0.403865996046 +UniRef50_V9U122 0.725417629356 0.5 -0.225417629356 +UniRef50_Q81WF1 Carbamoyl phosphate synthase small chain 0.0688006871333 0.5 0.431199312867 +UniRef50_Q64QH6 0.285779003326 0.5 0.214220996674 +UniRef50_UPI0003722F98 hypothetical protein 0.260508596911 0.5 0.239491403089 +UniRef50_V5VGJ6 Membrane fusion protein 0.00696219138307 0.5 0.493037808617 +UniRef50_R4REL3 Peptidase family M48 family 0.738401841856 0.5 -0.238401841856 +UniRef50_UPI0003B6D53E MarR family transcriptional regulator, partial 0.139933726483 0.5 0.360066273517 +UniRef50_UPI000371A422 hypothetical protein 1.98758439943 0.499999999999 -1.48758439943 +UniRef50_A6LRF3 Transcriptional regulator, RpiR family 0.101392362713 0.500000000001 0.398607637286 +UniRef50_A1TJ24 Potassium transporting ATPase A chain 0.331946063384 0.5 0.168053936616 +UniRef50_B9DNM2 Putative pyruvate, phosphate dikinase regulatory protein 2.76634175418 0.5 -2.26634175418